import turicreate
full_prod_data = turicreate.SFrame('amazon_baby.sframe')
full_prod_data
| name | review | rating |
|---|---|---|
| Planetwise Flannel Wipes | These flannel wipes are OK, but in my opinion ... |
3.0 |
| Planetwise Wipe Pouch | it came early and was not disappointed. i love ... |
5.0 |
| Annas Dream Full Quilt with 2 Shams ... |
Very soft and comfortable and warmer than it ... |
5.0 |
| Stop Pacifier Sucking without tears with ... |
This is a product well worth the purchase. I ... |
5.0 |
| Stop Pacifier Sucking without tears with ... |
All of my kids have cried non-stop when I tried to ... |
5.0 |
| Stop Pacifier Sucking without tears with ... |
When the Binky Fairy came to our house, we didn't ... |
5.0 |
| A Tale of Baby's Days with Peter Rabbit ... |
Lovely book, it's bound tightly so you may no ... |
4.0 |
| Baby Tracker® - Daily Childcare Journal, ... |
Perfect for new parents. We were able to keep ... |
5.0 |
| Baby Tracker® - Daily Childcare Journal, ... |
A friend of mine pinned this product on Pinte ... |
5.0 |
| Baby Tracker® - Daily Childcare Journal, ... |
This has been an easy way for my nanny to record ... |
4.0 |
selected_words = ['awesome', 'great', 'fantastic', 'amazing', 'love', 'horrible', 'bad', 'terrible', 'awful', 'wow', 'hate']
full_prod_data.groupby('name',operations={'count':turicreate.aggregate.COUNT()}).sort('count',ascending=False)
| name | count |
|---|---|
| Vulli Sophie the Giraffe Teether ... |
785 |
| Simple Wishes Hands-Free Breastpump Bra, Pink, ... |
562 |
| Infant Optics DXR-5 2.4 GHz Digital Video Baby ... |
561 |
| Baby Einstein Take Along Tunes ... |
547 |
| Cloud b Twilight Constellation Night ... |
520 |
| Fisher-Price Booster Seat, Blue/Green/Gray ... |
489 |
| Fisher-Price Rainforest Jumperoo ... |
450 |
| Graco Nautilus 3-in-1 Car Seat, Matrix ... |
419 |
| Leachco Snoogle Total Body Pillow ... |
388 |
| Regalo Easy Step Walk Thru Gate, White ... |
374 |
full_prod_data['word_count'] = turicreate.text_analytics.count_words(full_prod_data['review'])
full_prod_data
| name | review | rating | word_count |
|---|---|---|---|
| Planetwise Flannel Wipes | These flannel wipes are OK, but in my opinion ... |
3.0 | {'handles': 1.0, 'stripping': 1.0, ... |
| Planetwise Wipe Pouch | it came early and was not disappointed. i love ... |
5.0 | {'recommend': 1.0, 'disappointed': 1.0, ... |
| Annas Dream Full Quilt with 2 Shams ... |
Very soft and comfortable and warmer than it ... |
5.0 | {'quilt': 1.0, 'the': 1.0, 'than': 1.0, 'fu ... |
| Stop Pacifier Sucking without tears with ... |
This is a product well worth the purchase. I ... |
5.0 | {'tool': 1.0, 'clever': 1.0, 'binky': 2.0, ... |
| Stop Pacifier Sucking without tears with ... |
All of my kids have cried non-stop when I tried to ... |
5.0 | {'rock': 1.0, 'many': 1.0, 'headaches': 1.0, ... |
| Stop Pacifier Sucking without tears with ... |
When the Binky Fairy came to our house, we didn't ... |
5.0 | {'thumb': 1.0, 'or': 1.0, 'break': 1.0, 'trying': ... |
| A Tale of Baby's Days with Peter Rabbit ... |
Lovely book, it's bound tightly so you may no ... |
4.0 | {'for': 1.0, 'barnes': 1.0, 'at': 1.0, 'is': ... |
| Baby Tracker® - Daily Childcare Journal, ... |
Perfect for new parents. We were able to keep ... |
5.0 | {'right': 1.0, 'because': 1.0, 'questions': 1.0, ... |
| Baby Tracker® - Daily Childcare Journal, ... |
A friend of mine pinned this product on Pinte ... |
5.0 | {'like': 1.0, 'and': 1.0, 'changes': 1.0, 'the': ... |
| Baby Tracker® - Daily Childcare Journal, ... |
This has been an easy way for my nanny to record ... |
4.0 | {'in': 1.0, 'pages': 1.0, 'out': 1.0, 'run': 1.0, ... |
word_count_arr = full_prod_data['word_count']
#full_prod_data['count_word-awesome'] = turicreate.SArray.apply('word_count',turicreate.aggregate.COUNT())
#word_count_arr
for word_count_elem in word_count_arr:
print("Word element => {} ".format(word_count_elem))
Word element => {'handles': 1.0, 'stripping': 1.0, 'while': 1.0, 'stink': 1.0, 'issues': 1.0, 'rough': 1.0, 'get': 1.0, 'they': 1.0, 'replace': 1.0, 'to': 2.0, 'need': 1.0, 'now': 1.0, 'larger': 1.0, 'countwhich': 1.0, 'months': 1.0, 'vimse': 1.0, 'blue': 1.0, 'but': 1.0, 'ocean': 1.0, 'ordered': 1.0, 'worth': 1.0, 'also': 1.0, 'in': 1.0, 'them': 1.0, 'quality': 1.0, 'softer': 1.0, 'cloth': 2.0, 'keeping': 1.0, 'use': 1.0, 'these': 1.0, 'flannel': 1.0, 'wipes': 4.0, 'not': 1.0, 'just': 1.0, 'ok': 1.0, 'my': 1.0, '12': 1.0, 'had': 2.0, 'someimse': 1.0, 'a': 2.0, 'i': 2.0, 'texture': 1.0, 'starting': 1.0, 'and': 5.0, 'because': 1.0, 'boyfor': 1.0, 'seemed': 1.0, 'fab': 1.0, 'higher': 1.0, 'opinion': 1.0, 'for': 2.0, 'nicer': 1.0, 'are': 3.0, 'usingthirsties': 1.0, 'hands': 1.0, 'have': 2.0, 'pack': 1.0, 'longer': 1.0, '8': 1.0, 'that': 1.0, 'been': 1.0, '6': 1.0, 'no': 1.0, 'faces': 1.0, 'about': 1.0}
Word element => {'recommend': 1.0, 'disappointed': 1.0, 'wise': 1.0, 'love': 1.0, 'it': 3.0, 'planet': 1.0, 'and': 3.0, 'bags': 1.0, 'wipes': 1.0, 'highly': 1.0, 'not': 2.0, 'early': 1.0, 'came': 1.0, 'i': 1.0, 'does': 1.0, 'my': 2.0, 'was': 1.0, 'now': 1.0, 'wipe': 1.0, 'holder': 1.0, 'leak': 1.0, 'keps': 1.0, 'osocozy': 1.0, 'moist': 1.0}
Word element => {'quilt': 1.0, 'the': 1.0, 'than': 1.0, 'full': 1.0, 'fit': 1.0, 'warmer': 1.0, 'this': 1.0, 'it': 1.0, 'perfectly': 1.0, 'and': 2.0, 'very': 1.0, 'looks': 1.0, 'type': 1.0, 'soft': 1.0, 'size': 1.0, 'looking': 1.0, 'recommend': 1.0, 'of': 1.0, 'would': 1.0, 'to': 1.0, 'anyone': 1.0, 'comfortable': 1.0, 'bed': 1.0, 'for': 1.0}
Word element => {'tool': 1.0, 'clever': 1.0, 'binky': 2.0, 'approach': 2.0, 'positive': 1.0, 'and': 3.0, 'getting': 1.0, 'like': 1.0, 'to': 1.0, 'anything': 1.0, 'is': 4.0, 'back': 1.0, 'herself': 1.0, 'has': 1.0, 'well': 1.0, 'the': 7.0, 'else': 1.0, 'so': 1.0, 'not': 1.0, 'fairy': 1.0, 'worth': 1.0, 'this': 4.0, 'found': 1.0, 'ingenious': 1.0, 'most': 1.0, 'i': 3.0, 'have': 1.0, 'what': 1.0, 'chart': 1.0, 'her': 1.0, 'product': 2.0, 'love': 2.0, 'about': 1.0, 'how': 1.0, 'much': 1.0, 'ownership': 1.0, 'purchase': 1.0, 'my': 1.0, 'artwork': 1.0, 'daughter': 1.0, 'in': 2.0, 'rid': 1.0, 'of': 3.0, 'it': 1.0, 'she': 1.0, 'losing': 1.0, 'a': 2.0, 'proud': 1.0, 'loves': 1.0, 'little': 1.0}
Word element => {'rock': 1.0, 'many': 1.0, 'headaches': 1.0, 'soo': 1.0, 'will': 1.0, 'expecting': 1.0, 'gift': 1.0, 'parents': 1.0, 'way': 1.0, 'thumbuddy': 1.0, 'off': 1.0, 'pacifier': 2.0, 'their': 2.0, 'them': 4.0, 'ween': 1.0, 'to': 5.0, 'all': 2.0, 'of': 1.0, 'cried': 1.0, 'stop': 1.0, 'thanks': 1.0, 'you': 2.0, 'when': 1.0, 'for': 2.0, 'love': 1.0, 'where': 1.0, 'binky': 1.0, 'your': 1.0, 'non': 1.0, 'i': 2.0, 'tried': 1.0, 'buy': 1.0, 'save': 1.0, 'my': 1.0, 'fairy': 1.0, 'it': 2.0, 'with': 1.0, 'kids': 2.0, 'found': 1.0, 'this': 2.0, 'puppet': 1.0, 'is': 3.0, 'an': 1.0, 'work': 1.0, 'book': 2.0, 'easy': 1.0, 'allow': 1.0, 'and': 2.0, 'help': 1.0, 'understand': 1.0, 'part': 1.0, 'from': 1.0, 'have': 1.0, 'must': 1.0, 's': 1.0, 'going': 1.0, 'a': 2.0, 'until': 1.0, 'great': 1.0}
Word element => {'thumb': 1.0, 'or': 1.0, 'break': 1.0, 'trying': 1.0, 'recommend': 1.0, 'highly': 1.0, 'would': 1.0, 'i': 1.0, 'happens': 1.0, 'what': 1.0, 'daughter': 1.0, 'with': 1.0, 'important': 1.0, 'about': 2.0, 'lots': 1.0, 'help': 2.0, 'sucking': 1.0, 'book': 2.0, 'parent': 1.0, 'house': 1.0, 'telling': 1.0, 'gift': 1.0, 'special': 1.0, 'when': 2.0, 'great': 1.0, 'how': 1.0, 'her': 1.0, 'does': 1.0, 'your': 1.0, 'habit': 1.0, 'have': 1.0, 'and': 2.0, 'fairy': 3.0, 'came': 1.0, 'any': 2.0, 'prepare': 1.0, 'to': 6.0, 'our': 2.0, 'their': 1.0, 'didn': 1.0, 'cute': 1.0, 'stop': 1.0, 'it': 1.0, 'this': 2.0, 'comes': 1.0, 'explain': 1.0, 'is': 2.0, 'using': 1.0, 'product': 1.0, 'for': 2.0, 't': 1.0, 'we': 2.0, 'a': 2.0, 'pacifier': 2.0, 'the': 6.0, 'job': 1.0, 'binky': 3.0, 'child': 1.0, 'made': 1.0, 'loss': 1.0, 'of': 2.0, 'favorite': 1.0, 'item': 1.0, 'doll': 1.0, 'movies': 1.0, 'adorable': 1.0}
Word element => {'for': 1.0, 'barnes': 1.0, 'at': 1.0, 'is': 1.0, 'listed': 1.0, 'before': 1.0, 'around': 1.0, 'shop': 1.0, 'in': 1.0, 'to': 1.0, '29': 1.0, 'purchase': 1.0, 'bound': 1.0, 'not': 1.0, 'able': 1.0, 'so': 1.0, '95': 1.0, 'of': 1.0, 'noble': 1.0, 'you': 2.0, 's': 1.0, 'cards': 1.0, 'it': 2.0, 'book': 2.0, 'lovely': 1.0, 'spaces': 1.0, 'may': 1.0, 'add': 1.0, 'tightly': 1.0, 'aside': 1.0, 'alot': 1.0, 'photos': 1.0, 'as': 1.0, 'from': 1.0, 'currently': 1.0, 'the': 2.0, 'be': 1.0, 'designated': 1.0}
Word element => {'right': 1.0, 'because': 1.0, 'questions': 1.0, 'would': 1.0, 'when': 1.0, 'made': 1.0, 'life': 2.0, 'her': 1.0, 'months': 1.0, 'half': 1.0, 'there': 1.0, 'of': 2.0, 'habits': 1.0, 'keep': 1.0, 'track': 1.0, 'had': 1.0, 'to': 1.0, 'it': 1.0, 'first': 1.0, 'all': 1.0, 'able': 1.0, 'easier': 1.0, 'were': 1.0, 'we': 2.0, 's': 1.0, 'new': 1.0, 'two': 1.0, 'doctor': 1.0, 'parents': 1.0, 'for': 2.0, 'the': 2.0, 'schedule': 1.0, 'diaper': 1.0, 'perfect': 1.0, 'sleep': 1.0, 'about': 1.0, 'ask': 1.0, 'baby': 1.0, 'feeding': 1.0, 'and': 2.0, 'change': 1.0, 'a': 1.0}
Word element => {'like': 1.0, 'and': 1.0, 'changes': 1.0, 'the': 1.0, 'diaper': 1.0, 'feedings': 1.0, 'track': 1.0, 'will': 1.0, 'so': 1.0, 'i': 1.0, 'mine': 1.0, 'decided': 1.0, 'on': 1.0, 'is': 1.0, 'product': 1.0, 'to': 1.0, 'pinned': 1.0, 'of': 2.0, 'help': 1.0, 'friend': 1.0, 'whirl': 1.0, 'new': 1.0, 'a': 3.0, 'give': 1.0, 'fantastic': 1.0, 'keep': 1.0, 'if': 1.0, 'you': 2.0, 'pinterest': 1.0, 'this': 2.0, 'it': 2.0, 'parent': 1.0, 'are': 1.0}
Word element => {'in': 1.0, 'pages': 1.0, 'out': 1.0, 'run': 1.0, 'one': 1.0, 'ordering': 1.0, 'options': 1.0, 'pre': 1.0, 'standarad': 1.0, 'have': 1.0, 'there': 1.0, 'because': 1.0, '5': 1.0, 'm': 1.0, 'with': 1.0, 'this': 3.0, 'it': 1.0, 'only': 1.0, 'some': 1.0, 'happen': 1.0, 'events': 1.0, 'key': 1.0, 'reason': 1.0, 'has': 1.0, 'on': 1.0, 'think': 1.0, 'your': 1.0, 'isn': 1.0, 'journal': 1.0, 'for': 1.0, 'baby': 2.0, 'highly': 1.0, 'that': 1.0, 'been': 2.0, 'easy': 1.0, 'i': 3.0, 'record': 1.0, 'home': 2.0, 'recommend': 1.0, 'an': 1.0, 'all': 1.0, 'to': 4.0, 'way': 1.0, 'the': 2.0, 'another': 1.0, 'my': 2.0, 're': 1.0, 'nanny': 1.0, 'would': 1.0, 'when': 2.0, 'you': 1.0, 'someone': 1.0, 'at': 1.0, 'who': 1.0, 'not': 2.0, 'stay': 1.0, 'printed': 1.0, 'wants': 1.0, 'informed': 1.0, 'plan': 1.0, 'more': 1.0, 'is': 2.0, 'of': 2.0, 'up': 1.0, 'what': 1.0, 'while': 1.0, 'we': 1.0, 'could': 1.0, 't': 1.0, 'a': 1.0}
Word element => {'tracker': 1.0, 'now': 1.0, 'its': 1.0, 'stick': 1.0, 'morning': 1.0, 'tell': 1.0, 'out': 1.0, 'hot': 1.0, 'screen': 1.0, 'instructions': 1.0, 'just': 1.0, 'milk': 1.0, 'moved': 1.0, 'lunch': 1.0, 'ask': 1.0, 'eating': 1.0, 'e': 3.0, 'sometimes': 1.0, 'what': 1.0, 'had': 1.0, 'details': 2.0, 'post': 1.0, 'my': 3.0, 's': 5.0, 'we': 1.0, 't': 1.0, 'in': 5.0, 'today': 1.0, 'older': 1.0, 'it': 4.0, 'add': 1.0, 'easy': 1.0, 'very': 1.0, 'reply': 1.0, 'to': 11.0, 'our': 2.0, 'please': 1.0, 'everyday': 1.0, 'nap': 1.0, 'a': 1.0, 'specify': 1.0, 'nanny': 4.0, 'day': 1.0, 'etc': 2.0, 'for': 2.0, 'love': 2.0, 'track': 2.0, 'of': 4.0, 'the': 9.0, 'make': 1.0, 'amount': 1.0, 'on': 3.0, 'daughter': 1.0, 'all': 2.0, 'other': 2.0, 'sun': 1.0, 'design': 1.0, 'with': 1.0, 'highly': 1.0, 'this': 2.0, 'took': 1.0, 'layout': 1.0, 'real': 1.0, 'specifics': 1.0, 'uses': 1.0, 'time': 3.0, 'tummy': 1.0, 'recommend': 1.0, 'park': 1.0, 'no': 1.0, 'play': 1.0, 'walk': 1.0, 'about': 1.0, 'comments': 2.0, 'knowing': 1.0, 'she': 3.0, 'baby': 6.0, 'night': 1.0, 'also': 1.0, 'and': 6.0, 'schedule': 1.0, 'her': 2.0, 'use': 2.0, 'rash': 1.0, 'journal': 1.0, 'weekly': 1.0, 'overall': 1.0, 'changes': 1.0, 'gets': 1.0, 'has': 2.0, 'i': 10.0, 'well': 1.0, 'often': 1.0, 'naturally': 1.0, 'column': 1.0, 'want': 1.0, 'quickly': 1.0, 'only': 1.0, 'complaint': 1.0, 'patterns': 1.0, 'is': 2.0, 'that': 2.0, 'there': 1.0, 'rush': 1.0, 'forget': 1.0, 'space': 1.0, 'communicate': 1.0, 'sleep': 2.0, 'back': 1.0, 'food': 1.0, 'activities': 1.0, 'or': 3.0, 'as': 2.0, 'leave': 1.0, 'notes': 2.0, 'fill': 1.0, 'previous': 1.0, 'didn': 1.0}
Word element => {'throw': 1.0, 'that': 1.0, 's': 1.0, 'visits': 1.0, 'doctor': 1.0, 'for': 2.0, 'would': 1.0, 'definitely': 1.0, 'sleep': 1.0, 'time': 1.0, 'is': 1.0, 'to': 1.0, 'mom': 1.0, 'm': 1.0, 'i': 2.0, 'in': 1.0, 'perfect': 1.0, 'moms': 1.0, 'recommend': 1.0, 'easy': 1.0, 'enough': 1.0, 'new': 2.0, 'feedings': 1.0, 'a': 1.0, 'the': 1.0, 'diaper': 2.0, 'made': 1.0, 'back': 1.0, 'book': 2.0, 'track': 1.0, 'first': 1.0, 'this': 3.0, 'it': 2.0, 'and': 1.0, 'changes': 1.0, 'small': 1.0, 'so': 1.0, 'keep': 1.0, 'plus': 1.0, 'of': 1.0}
Word element => {'situation': 1.0, 'caregiver': 1.0, 'much': 1.0, 'big': 1.0, 'not': 1.0, 'suppose': 1.0, 'problem': 1.0, 'format': 1.0, 'time': 1.0, 'complain': 1.0, 'some': 2.0, 't': 1.0, 'fit': 1.0, 'provided': 1.0, 'difficult': 1.0, 's': 1.0, 'shorthand': 1.0, 'useful': 1.0, 'provide': 1.0, 'they': 1.0, 'space': 2.0, 'complaint': 1.0, 'only': 1.0, 'isn': 1.0, 'notebook': 1.0, 'real': 1.0, 'naps': 1.0, 'transfer': 1.0, 'something': 1.0, 'would': 2.0, 'inaccurate': 1.0, 'incomplete': 1.0, 'how': 2.0, 'track': 1.0, '6': 2.0, 'changes': 1.0, 'get': 1.0, 'getting': 2.0, 'info': 3.0, 'and': 5.0, 'could': 1.0, 'small': 1.0, 'a': 8.0, 'nanny': 3.0, 'reviews': 1.0, 'take': 2.0, 'leave': 1.0, 'diaper': 1.0, 'additional': 1.0, 'about': 1.0, 'behind': 1.0, 'of': 6.0, 'the': 15.0, 'each': 1.0, 'end': 1.0, 'works': 1.0, 'pages': 1.0, 'you': 2.0, 'starts': 1.0, 'when': 2.0, 'gave': 1.0, 'paper': 1.0, 'if': 1.0, 'section': 1.0, 'perfect': 2.0, 'wohld': 1.0, 'just': 1.0, 'wanted': 3.0, '6pm': 2.0, 'was': 2.0, 'pretty': 2.0, 'feedings': 1.0, 'to': 9.0, 'down': 1.0, 'but': 2.0, 'write': 1.0, 'originally': 1.0, 'i': 9.0, 'too': 1.0, 'try': 1.0, 'one': 1.0, 'for': 7.0, 'two': 1.0, 'little': 2.0, 'very': 1.0, 'have': 1.0, 'remember': 1.0, 'before': 1.0, 'home': 1.0, 'information': 4.0, 'goes': 1.0, 'deal': 1.0, 'baby': 1.0, 'she': 4.0, 'it': 3.0, 'him': 1.0, 'with': 2.0, 'also': 3.0, 'tracking': 1.0, 'way': 1.0, 'day': 2.0, 'pad': 2.0, 'control': 1.0, 'other': 1.0, 'all': 1.0, 'an': 2.0, 'reported': 1.0, 'daycare': 1.0, 'from': 2.0, 'now': 1.0, 'fill': 1.0, 'in': 1.0, 'm': 2.0, 'helpful': 1.0, 'better': 1.0, 'example': 1.0, 'out': 1.0, 'this': 5.0, 'page': 1.0, 'solution': 1.0, 'has': 1.0, 'park': 1.0, 'pouch': 1.0, 'front': 1.0, 'her': 1.0, 'use': 2.0, 'phone': 2.0, 'documents': 1.0, 'on': 1.0, '7': 2.0, 'up': 1.0, 'emergency': 1.0, 'there': 1.0, 'contact': 1.0, 'entire': 1.0, 'my': 4.0, 'me': 2.0, 'because': 1.0, 'at': 2.0, 'is': 3.0, '7am': 2.0, 'ends': 1.0, 'app': 1.0}
Word element => {'perverse': 1.0, 'purpose': 1.0, 'useful': 1.0, 'no': 1.0, 'serves': 1.0, 'last': 1.0, 'times': 1.0, '177': 1.0, 'nursed': 1.0, 'training': 1.0, 'about': 1.0, 'start': 1.0, 'as': 1.0, 'helpful': 1.0, 'been': 1.0, 'average': 1.0, 'how': 1.0, 'are': 2.0, 'keep': 1.0, 'but': 2.0, 'close': 1.0, 'your': 2.0, 'taking': 1.0, '3': 2.0, 'long': 1.0, 'on': 3.0, 'grab': 1.0, 'granted': 1.0, 'be': 1.0, 'here': 1.0, 'feedings': 1.0, 'to': 5.0, 'other': 1.0, 'all': 1.0, 'sleep': 2.0, 'least': 2.0, 'month': 1.0, 'same': 1.0, 'often': 2.0, 'by': 1.0, 're': 2.0, 'phone': 2.0, 'gives': 1.0, 'data': 1.0, 'that': 4.0, 'breastfeeding': 1.0, 'when': 1.0, 'what': 2.0, 'nice': 2.0, 'feeling': 1.0, '1': 1.0, 'either': 1.0, 'would': 1.0, 'you': 5.0, 'able': 1.0, 'morning': 1.0, 'have': 5.0, '2': 1.0, 'thing': 1.0, 'more': 1.0, 'entertained': 1.0, 'simple': 1.0, 'a': 5.0, 't': 2.0, 's': 2.0, 'we': 3.0, 'keeping': 1.0, 'can': 3.0, 'handwritten': 1.0, 'so': 2.0, 'time': 2.0, 'journal': 1.0, 'deprived': 1.0, 'for': 2.0, 'haven': 1.0, 'both': 1.0, 'used': 1.0, 'i': 10.0, 'him': 1.0, 'thought': 1.0, 'it': 4.0, 'this': 2.0, 'perfect': 1.0, 'and': 4.0, 'consistently': 1.0, 'd': 1.0, 'yourself': 1.0, 'just': 1.0, 'why': 1.0, 'pen': 1.0, 'm': 1.0, 'in': 2.0, 'satisfaction': 1.0, 'of': 1.0, 'the': 4.0, 'place': 1.0, 'than': 2.0, 'me': 5.0, 'not': 1.0, 'notebook': 1.0, 'don': 1.0, 'nurse': 1.0, 'if': 1.0, 'every': 1.0, 'really': 1.0, 'also': 1.0, 'forget': 1.0, 'at': 5.0, 'look': 1.0, 'button': 1.0, 'started': 2.0, 'baby': 1.0, 'skilled': 1.0, 'side': 2.0, 'or': 1.0, 'with': 1.0, 'app': 2.0, 'tell': 2.0, 'hit': 1.0, 'like': 1.0, 'connect': 1.0, 'think': 1.0, 'better': 1.0, 'mindlessly': 1.0, 'example': 1.0}
Word element => {'i': 1.0, 'it': 2.0, 'come': 1.0, 'space': 1.0, 'for': 1.0, 'photos': 1.0, 'is': 1.0, 'with': 1.0, 'info': 1.0, 'stickers': 1.0, 'what': 1.0, 'monthly': 1.0, 'wanted': 1.0, 'and': 1.0, 'a': 1.0, 'lot': 1.0, 'of': 1.0, 'exactly': 1.0, 'useful': 1.0}
Word element => {'useful': 1.0, 'friend': 1.0, 'day': 1.0, 'happened': 1.0, 'special': 1.0, 'whatever': 1.0, 'asterisks': 1.0, 'just': 1.0, 'but': 1.0, 'like': 1.0, 'many': 1.0, 'weight': 1.0, 'height': 1.0, 'baby': 1.0, 'boxes': 1.0, 'what': 1.0, 'does': 1.0, 'page': 2.0, 'would': 1.0, 'each': 2.0, 'before': 1.0, 'room': 3.0, 'very': 2.0, 'son': 1.0, 'to': 3.0, 'as': 4.0, 'i': 4.0, 'she': 1.0, 'colorful': 1.0, 'it': 3.0, 'found': 1.0, 'this': 1.0, 'do': 1.0, 'only': 1.0, 'one': 1.0, 'bought': 2.0, 'be': 1.0, 'my': 2.0, 'date': 1.0, 'for': 5.0, 'write': 1.0, 'second': 1.0, 'is': 3.0, 'fine': 1.0, 'put': 1.0, 'on': 2.0, 'well': 1.0, 'has': 1.0, 'likes': 1.0, 'stickers': 1.0, 'have': 2.0, 'there': 1.0, 'sticker': 1.0, 'event': 1.0, 'also': 1.0, 'a': 3.0, 'photo': 1.0, 'placed': 1.0, 'myself': 1.0, 'the': 1.0, 'some': 1.0, 'and': 3.0, 'writing': 1.0, 'complaint': 1.0, 'calender': 2.0, 'that': 2.0, 'not': 1.0}
Word element => {'too': 1.0, 'stickers': 1.0, 'illustrations': 1.0, 'and': 1.0, 'like': 1.0, 'firsts': 1.0, 's': 1.0, 'i': 2.0, 'you': 1.0, 'this': 1.0, 'baby': 1.0, 'little': 1.0, 'calender': 1.0, 'love': 1.0, 'can': 1.0, 'the': 2.0, 'track': 1.0, 'all': 1.0, 'keep': 1.0, 'of': 2.0}
Word element => {'him': 1.0, 'got': 1.0, 'than': 1.0, 'turn': 1.0, 'note': 1.0, 'things': 1.0, 'year': 2.0, 'could': 1.0, 'i': 3.0, 'for': 2.0, 'one': 3.0, 'calender': 1.0, '1': 1.0, 'and': 1.0, 'the': 4.0, 'still': 1.0, 'find': 1.0, 'are': 1.0, 'better': 1.0, 'did': 1.0, 'cause': 1.0, 'only': 1.0, 'this': 2.0, 'first': 2.0, 'wanted': 1.0, 'was': 2.0, 'to': 2.0, 'they': 1.0, 'continue': 1.0, 'there': 1.0, 'second': 1.0, 'many': 1.0, 'after': 1.0, 'so': 1.0}
Word element => {'something': 1.0, 'want': 1.0, 'you': 1.0, 'milestone': 1.0, 'so': 2.0, 'special': 2.0, 'stickers': 1.0, 'have': 1.0, 'tracking': 1.0, 'of': 2.0, 'second': 1.0, 'recording': 1.0, 'i': 3.0, 'that': 1.0, 'keep': 1.0, 'at': 1.0, 'since': 1.0, 'his': 1.0, 'year': 2.0, 'milestones': 1.0, 'day': 1.0, 'moments': 2.0, 'enjoyed': 1.0, 'doing': 1.0, 'layout': 1.0, 'first': 1.0, 'he': 1.0, 'it': 2.0, 'my': 1.0, 'and': 5.0, 's': 3.0, 'a': 1.0, 'might': 1.0, 'questions': 1.0, 'completed': 1.0, 'for': 1.0, 'least': 1.0, 'all': 3.0, 'to': 2.0, 'much': 1.0, 'continue': 1.0, 'in': 1.0, 'the': 4.0, 'son': 1.0, 'still': 1.0, 'really': 2.0, 'every': 1.0, 'amazing': 1.0, 'fun': 1.0, 'things': 1.0, 'like': 1.0, 'wanted': 1.0, 'simple': 1.0, 'while': 1.0, 'those': 1.0, 'calendar': 2.0, 'not': 1.0}
Word element => {'exactly': 1.0, 'what': 1.0, 'does': 1.0, 's': 1.0, 'out': 1.0, 'child': 1.0, 'cute': 1.0, 'aren': 1.0, 'keep': 1.0, 'our': 1.0, 'something': 1.0, 'to': 2.0, 'wanted': 2.0, 'and': 2.0, 'get': 1.0, 'milestones': 1.0, 'this': 2.0, 't': 1.0, 'choices': 1.0, 'we': 2.0, 'other': 1.0, 'a': 1.0, 'track': 1.0, 'option': 1.0, 'of': 1.0, 'there': 2.0, 'is': 1.0, 'many': 1.0}
Word element => {'reference': 1.0, 'have': 1.0, 'out': 1.0, 'fill': 1.0, 'way': 1.0, 'book': 2.0, 'baby': 2.0, 'find': 1.0, 'ones': 1.0, 'little': 1.0, 'milestones': 1.0, 'of': 1.0, 'keep': 1.0, 'down': 1.0, 'had': 1.0, 'enough': 1.0, 'big': 1.0, 'spot': 1.0, 'great': 2.0, 'the': 5.0, 'later': 1.0, 'hard': 1.0, 'this': 3.0, 'first': 1.0, 'vs': 1.0, 'came': 1.0, 'it': 2.0, 'month': 1.0, 'across': 1.0, 'and': 4.0, 'jot': 1.0, 'easier': 1.0, 'well': 1.0, 'has': 1.0, 'they': 1.0, 'is': 3.0, 'write': 1.0, 'second': 1.0, 'can': 2.0, 'change': 1.0, 'one': 1.0, 'finding': 1.0, 'time': 1.0, 'so': 3.0, 'everything': 1.0, 'track': 1.0, 'calendar': 2.0, 'year': 1.0, 'all': 1.0, 'to': 5.0, 'as': 2.0, 'in': 2.0, 'you': 1.0, 'squares': 1.0, 'on': 1.0, 'put': 1.0, 'that': 1.0, 'a': 6.0, 's': 1.0, 'picture': 1.0, 'some': 1.0, 'i': 5.0, 'two': 1.0, 'large': 1.0, 'memories': 1.0, 'years': 1.0, 'do': 2.0, 'only': 1.0, 'much': 1.0, 'like': 1.0}
Word element => {'purchasers': 1.0, 'future': 1.0, 'other': 1.0, 'some': 1.0, 'out': 1.0, 'come': 1.0, 'will': 1.0, 'looking': 1.0, 'pretty': 1.0, 'are': 1.0, 'and': 1.0, 'cute': 1.0, 'aren': 1.0, 'stickers': 1.0, 'available': 1.0, 'of': 2.0, 'disappointed': 1.0, 'in': 1.0, 'pens': 1.0, 'really': 1.0, 'fashioned': 1.0, 'is': 1.0, 'was': 2.0, 'to': 1.0, 'lack': 1.0, 'one': 3.0, 'for': 4.0, 'i': 4.0, 'with': 3.0, 'this': 1.0, 'it': 3.0, 'hard': 1.0, 'the': 6.0, 'ones': 1.0, 'hopefully': 1.0, 'my': 2.0, 'had': 1.0, 'purchased': 1.0, 'because': 2.0, 'just': 1.0, 'got': 1.0, 'okay': 1.0, 'they': 1.0, 'pages': 2.0, 'daughter': 1.0, 'calendar': 2.0, 'year': 2.0, 'son': 1.0, 'very': 1.0, 'calendars': 2.0, 'general': 1.0, 'so': 1.0, 't': 1.0, 'a': 1.0, 's': 1.0, 'an': 1.0, 'finish': 1.0, 'on': 2.0, 'glossy': 1.0, 'which': 1.0, 'old': 1.0, 'makes': 1.0, 'second': 2.0, 'selection': 1.0, 'write': 1.0, 'only': 2.0, 'certain': 1.0}
Word element => {'brat': 1.0, 'super': 1.0, 'it': 1.0, 'plus': 1.0, 'recommend': 1.0, 'own': 1.0, 'either': 1.0, 'thought': 1.0, 'milestones': 1.0, 'wonderful': 1.0, 'have': 1.0, 'stickers': 1.0, 'and': 4.0, 'baby': 1.0, '1st': 1.0, 'there': 2.0, 'of': 6.0, 'highly': 1.0, 'plenty': 1.0, 'second': 2.0, 'want': 1.0, 'is': 2.0, 'love': 1.0, 'for': 3.0, 'one': 1.0, 'events': 2.0, 'loved': 1.0, 'out': 1.0, 'keeping': 1.0, 'first': 1.0, 'he': 1.0, 'with': 1.0, 'daily': 1.0, 'calendars': 1.0, 'son': 1.0, 'not': 1.0, 'me': 1.0, 'calendar': 3.0, 'i': 4.0, 'record': 2.0, 'recording': 1.0, 'helped': 1.0, 'are': 2.0, 'my': 2.0, 'reocording': 1.0, 'year': 4.0, 'his': 1.0, 'didn': 1.0, 'might': 1.0, 's': 3.0, 't': 1.0, 'the': 1.0, 'to': 2.0, 'now': 1.0, 'life': 1.0, 'just': 1.0, 'cute': 1.0, 'stop': 1.0, 'gender': 1.0, 'nature': 1.0, 'that': 2.0, 'lullabies': 1.0, 'this': 2.0, 'perfect': 1.0, 'continuing': 1.0, 'think': 1.0, 'on': 2.0}
Word element => {'so': 1.0, 'disappointed': 1.0, 'just': 1.0, 'find': 1.0, 'the': 1.0, 'are': 1.0, 'cheap': 2.0, 'i': 2.0, 'described': 1.0, 'as': 1.0, 'very': 1.0, 'but': 1.0, 'use': 1.0, 'exactly': 1.0, 'be': 1.0, 'calendar': 1.0, 'looks': 1.0, 'is': 1.0, 'it': 2.0, 'of': 2.0, 'there': 1.0, 'lots': 1.0, 'nice': 1.0, 'stickers': 1.0, 'to': 2.0, 'look': 1.0, 'was': 1.0}
Word element => {'supplies': 1.0, 'scrapbook': 1.0, 'ton': 1.0, 'out': 1.0, 'well': 1.0, 'a': 3.0, 'haul': 1.0, 'photos': 2.0, 'includes': 1.0, 'etc': 1.0, 'the': 1.0, 'milestone': 1.0, 'mark': 1.0, 'firsts': 1.0, 'scrap': 1.0, 'options': 1.0, 'spaces': 1.0, 'wife': 1.0, 'with': 1.0, 'it': 1.0, 'to': 3.0, 'as': 1.0, 'very': 1.0, 'loves': 1.0, 'calender': 1.0, 'easy': 1.0, 'and': 2.0, 'moms': 1.0, 'of': 2.0, 'sticker': 1.0, 'borders': 1.0, 'comes': 1.0, 'is': 1.0, 'just': 1.0, 'use': 1.0, 'booking': 1.0, 'down': 1.0, 'especially': 1.0, 'new': 1.0, 'enough': 1.0, 'lot': 1.0, 'option': 1.0, 'who': 1.0, 'this': 1.0, 'dont': 1.0, 'stickers': 1.0, 'have': 1.0, 'sit': 1.0, 'time': 1.0, 'for': 3.0, 'actually': 1.0}
Word element => {'old': 1.0, 'one': 1.0, 'was': 3.0, 'had': 1.0, 'to': 4.0, 'son': 1.0, 'keepsake': 1.0, 'daughter': 1.0, 'first': 2.0, 'this': 1.0, 'fill': 2.0, 'and': 2.0, 'get': 1.0, 'receive': 1.0, 'my': 1.0, 'up': 1.0, 'over': 1.0, 'did': 1.0, 'her': 3.0, 'year': 4.0, 'his': 2.0, 'ago': 1.0, 'a': 6.0, 'calendar': 2.0, 'it': 1.0, 'she': 3.0, 'baby': 1.0, '1st': 1.0, 'gift': 1.0, 'sweet': 1.0, 'birthday': 1.0, 'nearing': 1.0, 'for': 3.0, 'art': 1.0, 'wonderful': 1.0, 'amazon': 1.0, 'looking': 1.0, 'milestones': 1.0, 'when': 1.0, 'thanks': 1.0, 'nice': 1.0, 'record': 1.0, 'i': 1.0, 'able': 1.0, 'loves': 1.0, 'second': 1.0, 'tender': 1.0, 'work': 1.0, 'helpful': 1.0, 'stickers': 1.0, 'unique': 1.0, 'pages': 1.0}
Word element => {'months': 1.0, 'two': 1.0, 'remembering': 1.0, 'a': 1.0, 'inexpedient': 1.0, 'definitely': 1.0, 'helped': 1.0, 'as': 1.0, 'tired': 1.0, 'mom': 1.0, 'not': 1.0, 'ago': 1.0, 'useful': 1.0, 'new': 1.0, 'through': 1.0, 'how': 1.0, 'extremely': 1.0, 'first': 1.0, 'this': 1.0, 'long': 1.0, 'ate': 1.0, 'baby': 1.0, 'and': 1.0, 'me': 1.0, 'the': 1.0}
Word element => {'around': 1.0, 'shakes': 1.0, 'through': 1.0, 'front': 1.0, 'end': 1.0, 'mirror': 1.0, 'just': 2.0, 'takes': 1.0, 'right': 1.0, 'flip': 2.0, 'now': 1.0, 'older': 1.0, 'his': 1.0, 'towards': 1.0, 'when': 2.0, 'so': 1.0, 'face': 1.0, 'however': 1.0, 'book': 4.0, 'doesn': 1.0, 'will': 1.0, 'seems': 1.0, 'also': 1.0, 'thought': 1.0, 'fan': 1.0, 'i': 4.0, 'flaps': 1.0, 'peekaboo': 1.0, 'months': 1.0, 'son': 1.0, 'my': 1.0, 'but': 1.0, 'peek': 1.0, 'most': 1.0, 'boo': 1.0, 'would': 1.0, 'engage': 1.0, 'be': 1.0, 'gestures': 1.0, 'him': 2.0, 'at': 2.0, 's': 1.0, 'a': 1.0, 't': 1.0, 'loves': 1.0, 'perfect': 1.0, 'this': 3.0, 'it': 2.0, 'he': 6.0, 'with': 1.0, 'of': 1.0, '9': 1.0, 'if': 2.0, 'make': 1.0, 'pretend': 1.0, 'though': 1.0, 'maybe': 1.0, 'does': 1.0, 'like': 1.0, 'blow': 1.0, 'enough': 1.0, 'cover': 2.0, 'age': 1.0, 'kisses': 1.0, 'and': 4.0, 'the': 10.0, 'hands': 1.0, 'show': 1.0, 'hair': 1.0, 'likes': 2.0}
Word element => {'typical': 1.0, 'your': 1.0, 'the': 1.0, 'family': 1.0, 'diversity': 1.0, 'some': 1.0, 'people': 1.0, 'is': 1.0, 'books': 1.0, 'than': 1.0, 'in': 1.0, 'perfect': 1.0, 'favorite': 1.0, 'of': 1.0, 'white': 1.0, 'washable': 1.0, 's': 1.0, '1': 1.0, 'and': 2.0, 'like': 1.0, 'baby': 1.0, 'just': 1.0, 'not': 1.0, 'because': 1.0, 'it': 1.0, 'first': 1.0, 'to': 1.0, 'one': 1.0, 'i': 2.0, 'gave': 1.0, 'less': 1.0, 'd': 1.0, 'star': 1.0, 'see': 1.0}
Word element => {'family': 1.0, 'to': 3.0, 'hook': 1.0, 'get': 1.0, 'a': 1.0, 'go': 1.0, 'attach': 1.0, 'seat': 1.0, 'members': 1.0, 'like': 1.0, 'it': 2.0, 'the': 1.0, 'great': 1.0, 'way': 1.0, 'i': 1.0, 'has': 1.0, 'your': 1.0, 'or': 1.0, 'lost': 1.0, 'book': 1.0, 'stroller': 1.0, 'car': 1.0, 'over': 1.0, 'how': 1.0, 'wont': 1.0}
Word element => {'interacting': 1.0, 'when': 1.0, 'with': 1.0, 'it': 2.0, 'to': 1.0, 'i': 1.0, 'beautiful': 1.0, 'saying': 1.0, 'of': 1.0, 'then': 1.0, 'love': 1.0, 'can': 1.0, 'a': 1.0, 'you': 2.0, 'attention': 1.0, 'short': 1.0, 'book': 1.0, 'little': 2.0, 'baby': 2.0, 'on': 1.0, 'story': 1.0, 'great': 1.0, 'the': 4.0, 'pages': 1.0, 'and': 2.0, 'are': 1.0, 'keeps': 1.0, 'actually': 1.0, 'finished': 1.0, 'turn': 1.0, 'hold': 1.0}
Word element => {'page': 1.0, 'flaps': 1.0, 'are': 1.0, 'open': 1.0, 'very': 1.0, 'and': 1.0, 's': 1.0, 'before': 1.0, 'every': 1.0, 'use': 1.0, 'try': 1.0, 'born': 1.0, '9': 1.0, 'can': 1.0, 'wait': 1.0, 'there': 1.0, 'says': 1.0, 'so': 2.0, 'my': 1.0, 'is': 1.0, 'months': 1.0, 'on': 2.0, 'cute': 1.0, 'worth': 1.0, 'money': 1.0, 'baby': 1.0, 'for': 1.0, 'it': 3.0, 'this': 1.0, 'the': 2.0, 't': 1.0, 'box': 1.0, 'book': 1.0, 'but': 1.0, 'i': 1.0, 'interactive': 1.0, 'to': 4.0, 'be': 1.0}
Word element => {'etc': 1.0, 'puppy': 1.0, 'out': 1.0, 'nice': 1.0, 'can': 3.0, 'this': 1.0, 'it': 8.0, 'she': 5.0, 'bite': 1.0, 'that': 2.0, 'loves': 2.0, 'or': 1.0, 'mommy': 1.0, 'simple': 1.0, 'just': 1.0, 'so': 1.0, 'paper': 1.0, 'got': 1.0, 'chew': 1.0, 'chunks': 1.0, 'the': 2.0, 'board': 1.0, 'year': 1.0, 'open': 1.0, 'book': 2.0, 'house': 1.0, 'love': 1.0, 'for': 1.0, 'one': 2.0, 'and': 3.0, 'old': 1.0, 'of': 1.0, 'daddy': 1.0, 'like': 3.0, 's': 1.0, 'we': 2.0, 't': 1.0, 'a': 2.0, 'rip': 1.0, 'on': 2.0, 'over': 1.0, 'pull': 1.0, 'carry': 1.0, 'our': 1.0, 'all': 1.0, 'little': 1.0, 'flaps': 1.0, 'is': 1.0, 'learning': 1.0, 'words': 1.0}
Word element => {'dry': 1.0, 'let': 1.0, 'overnight': 1.0, 'then': 1.0, 'thing': 1.0, 'smell': 1.0, 'material': 1.0, '6months': 1.0, 'for': 1.0, 'book': 2.0, 'in': 1.0, 'perfect': 1.0, 'didn': 1.0, 'older': 1.0, 'only': 1.0, 'and': 3.0, 'like': 1.0, 'was': 1.0, 'colorful': 1.0, 'the': 6.0, 't': 1.0, 'is': 2.0, 'i': 2.0, 'or': 1.0, 'pages': 1.0, 'strong': 1.0, 'of': 1.0, 'detergent': 1.0, 'dyes': 1.0, 'dunked': 1.0}
Word element => {'flaps': 1.0, 'hands': 1.0, 'to': 1.0, 'loves': 1.0, 'our': 1.0, 'that': 1.0, 'feelings': 1.0, 'hurt': 1.0, 'cause': 1.0, 'can': 1.0, 'huge': 1.0, 'and': 3.0, 'play': 1.0, 'we': 1.0, 'hair': 1.0, 'lamaze': 1.0, 'baby': 1.0, 'fans': 1.0, 'of': 1.0, 'some': 1.0, 'no': 1.0, 'cute': 1.0, 'book': 1.0, 'possibly': 1.0, 'family': 1.0, 'are': 1.0, 'the': 2.0, 'said': 1.0, 'is': 1.0, 'products': 1.0, 'however': 1.0, 'with': 1.0, 'this': 1.0, 'one': 1.0, 'members': 1.0, 'leaves': 1.0, 'out': 1.0, 'little': 1.0, 'brother': 1.0}
Word element => {'every': 1.0, 'on': 1.0, 'fun': 1.0, 'your': 1.0, 'interactive': 1.0, 'to': 1.0, 'perfect': 1.0, 'level': 1.0, 'baby': 1.0, 'another': 1.0, 'adds': 1.0, 'moving': 1.0, 'this': 2.0, 'options': 1.0, 'were': 1.0, 'or': 2.0, 'books': 2.0, 'been': 1.0, 'by': 1.0, 'usual': 1.0, 'babies': 1.0, 'for': 3.0, 'book': 4.0, 'so': 1.0, 'd': 1.0, 'page': 1.0, 'month': 1.0, 'a': 2.0, 'plastic': 1.0, 'looking': 1.0, 'part': 1.0, 'flap': 1.0, 'what': 1.0, 'couldn': 1.0, 'be': 1.0, 'cloth': 2.0, 'i': 1.0, 'old': 1.0, 'great': 1.0, 't': 1.0, 'damaged': 1.0, 'my': 3.0, 'which': 1.0, '10': 1.0, 's': 1.0, 'is': 1.0, 'drool': 1.0}
Word element => {'farm': 1.0, 'out': 1.0, 'say': 1.0, 'again': 1.0, 'enjoy': 1.0, 'look': 1.0, 'now': 2.0, 'well': 1.0, 'additional': 1.0, 'being': 1.0, 'with': 2.0, 'dog': 1.0, 'cat': 1.0, 'favorites': 1.0, 'reading': 1.0, 'like': 1.0, 'members': 1.0, 'names': 1.0, 'learn': 1.0, 'used': 1.0, 'lift': 1.0, 'about': 1.0, 'them': 1.0, 'nearly': 1.0, 'child': 1.0, 'discovery': 1.0, 'board': 1.0, 'his': 2.0, 'flap': 1.0, 'he': 4.0, 'it': 6.0, 'much': 1.0, 'only': 2.0, 'parent': 1.0, 'this': 4.0, 'perfect': 1.0, 'not': 2.0, 'family': 1.0, 'my': 3.0, 'series': 1.0, 'destroy': 1.0, 'on': 1.0, 'still': 1.0, 'son': 3.0, 'all': 1.0, 'to': 1.0, 'as': 3.0, 'teaching': 1.0, 'loved': 1.0, 'does': 1.0, 'sister': 1.0, 'because': 1.0, 'chew': 1.0, 'book': 3.0, 'an': 1.0, 'peek': 1.0, 'but': 4.0, 'and': 6.0, 'issue': 1.0, 'infant': 1.0, 'course': 1.0, 'books': 2.0, 'boo': 1.0, 'would': 1.0, 'doesn': 1.0, 'was': 3.0, 'one': 2.0, 'grandparents': 1.0, 'love': 1.0, 'for': 4.0, 'liked': 1.0, 'didn': 1.0, 'playing': 1.0, 'the': 5.0, 'have': 1.0, 'that': 3.0, 'two': 1.0, 'etc': 1.0, 'i': 3.0, 'they': 1.0, 'lamaze': 2.0, 'are': 2.0, 's': 1.0, 'we': 2.0, 't': 2.0, 'a': 3.0, 'at': 1.0, 'lot': 1.0, 'of': 3.0, 'd': 1.0, 'fun': 2.0}
Word element => {'own': 1.0, 'his': 1.0, 'a': 1.0, 'for': 1.0, 'book': 1.0, 'has': 1.0, 'loves': 1.0, 'loved': 1.0, 'while': 1.0, 'him': 1.0, 'baby': 1.0, 'playing': 1.0, 'our': 1.0, 'read': 1.0, 'he': 1.0, 'this': 1.0, 'it': 3.0, 'with': 1.0, 'on': 1.0, 'enjoys': 2.0, 'when': 1.0, 'i': 1.0, 'now': 1.0, 'to': 1.0, 'and': 1.0}
Word element => {}
Word element => {'haha': 1.0, 'play': 1.0, 'kids': 1.0, 'to': 1.0, 'book': 1.0, 'a': 1.0, 'the': 1.0, 'let': 1.0, 'my': 1.0, 'with': 1.0, 'son': 1.0, 'likes': 1.0, 'elmo': 1.0, 'of': 1.0, 'almost': 1.0, 'nice': 1.0, 'brushing': 1.0, 's': 1.0, 'teeth': 1.0, 'too': 1.0}
Word element => {'again': 1.0, 'are': 1.0, 'would': 1.0, 'pictures': 1.0, 'buy': 1.0, 'old': 1.0, 'through': 1.0, 'appeal': 1.0, 'year': 1.0, 'my': 1.0, 'grandchildren': 1.0, 'present': 1.0, 'a': 1.0, 'go': 1.0, 'to': 1.0, 'was': 1.0, 'the': 1.0, '2': 1.0, 'themselves': 1.0, 'birthday': 1.0, 'book': 1.0, 'will': 1.0, 'by': 1.0, 'imaginative': 1.0, 'they': 1.0, 'young': 1.0, 'for': 1.0, 'love': 1.0, 'children': 1.0, 'this': 2.0, 'it': 2.0, 'and': 3.0, 'page': 2.0, 'sit': 1.0}
Word element => {'granddaughter': 1.0, 'kenzie': 1.0, 'my': 1.0, 'down': 1.0, 'take': 1.0, 'gift': 1.0, 'disappointment': 1.0, 'such': 1.0, 'batteries': 1.0, 'find': 1.0, 'if': 2.0, 'have': 1.0, 'suppose': 1.0, 'giggled': 1.0, 'where': 1.0, 'actually': 1.0, '5': 1.0, 'this': 1.0, 'it': 8.0, 'now': 1.0, 'mail': 1.0, 'excited': 1.0, 'is': 1.0, 'was': 3.0, 'adorable': 1.0, 'day': 1.0, 'to': 4.0, 'as': 2.0, 'growled': 1.0, 'like': 1.0, 'and': 3.0, 'give': 1.0, 'or': 1.0, 'bear': 1.0, 'when': 1.0, 'i': 6.0, 'no': 1.0, 'battery': 1.0, 'absolutely': 1.0, 'cute': 1.0, 'just': 1.0, 'even': 1.0, 'got': 1.0, 'in': 1.0, 'place': 1.0, 'the': 3.0, 'rating': 1.0, 'other': 1.0, 'simple': 1.0, 'saw': 1.0, 'how': 1.0, 'going': 1.0, 'a': 4.0, 'could': 1.0, 't': 1.0, 's': 2.0, 'new': 1.0, 'would': 2.0, 'super': 1.0, 'something': 1.0, 'dead': 1.0, 'back': 1.0, 'star': 1.0, 'handle': 1.0, 'can': 1.0, 'but': 1.0}
Word element => {'a': 1.0, 'amazon': 1.0, 'available': 1.0, 'lovers': 1.0, 'interactive': 1.0, 'which': 2.0, 'featured': 1.0, 'also': 2.0, 'are': 1.0, 'characters': 1.0, 'twinkle': 2.0, 'recommend': 1.0, 'was': 1.0, 'character': 1.0, 'is': 5.0, 'say': 1.0, 'great': 2.0, 'nice': 1.0, 'seemed': 1.0, 'illustrated': 1.0, 'happy': 1.0, 'another': 1.0, 'my': 2.0, 'i': 3.0, 'her': 1.0, 'baby': 1.0, 'too': 1.0, 'and': 4.0, 'elmo': 5.0, 'for': 3.0, 'one': 1.0, 'price': 1.0, 'fun': 1.0, 'm': 1.0, 'absolutely': 1.0, 'street': 2.0, 'that': 1.0, 'loves': 1.0, 'soft': 1.0, 'perfect': 1.0, 'this': 2.0, 'it': 2.0, 'he': 1.0, 'beautifully': 1.0, 'right': 1.0, 'takes': 1.0, 'of': 2.0, 'little': 1.0, 'everywhere': 1.0, 'centric': 1.0, 'on': 2.0, 'reads': 1.0, 'hides': 1.0, 'to': 1.0, 'all': 1.0, 'the': 3.0, 'so': 2.0, 'time': 1.0, 'while': 1.0, 'main': 1.0, 'because': 1.0, 'would': 1.0, 'each': 1.0, 'page': 1.0, 'book': 3.0, 'other': 1.0, 'sesame': 2.0}
Word element => {'soft': 1.0, 'bright': 1.0, 'elmo': 1.0, 'love': 1.0, 'for': 2.0, 'is': 1.0, 'are': 1.0, 'showers': 1.0, 'i': 1.0, 'beautiful': 1.0, 'two': 1.0, 'bought': 1.0, 'recent': 1.0, 'and': 2.0, 'baby': 2.0, 'colors': 1.0, 'any': 1.0, 'lastly': 1.0, 'interactive': 1.0, 'who': 1.0, 'book': 1.0, 'doesn': 1.0, 'the': 2.0, 'great': 1.0, 't': 1.0}
Word element => {'creative': 1.0, 'has': 1.0, 'bird': 1.0, 'more': 2.0, 'the': 3.0, 'like': 1.0, 'variety': 1.0, 'friends': 1.0, 'birds': 1.0, 'is': 2.0, 'another': 1.0, 'softplay': 1.0, 'wanted': 1.0, 'to': 1.0, 'big': 2.0, 'and': 2.0, 'get': 1.0, 'we': 2.0, 'found': 1.0, 'one': 1.0, 'elmo': 1.0, 'books': 1.0, 'book': 3.0, 'but': 1.0, 'only': 1.0, 'this': 1.0, 'two': 1.0, 'fun': 1.0}
Word element => {'handle': 1.0, 'to': 1.0, 'and': 1.0, 'this': 1.0, 'is': 2.0, 'a': 2.0, 'for': 1.0, 'book': 1.0, 'baby': 1.0, 'little': 1.0, 'soft': 1.0, 'cute': 1.0, 'peek': 1.0, 'boo': 1.0, 'easy': 1.0, 'safe': 1.0, 'story': 1.0, 'it': 3.0, 's': 2.0}
Word element => {'sure': 1.0, 'so': 1.0, 'baby': 1.0, 'fun': 1.0, 'to': 1.0, 'colorful': 1.0, 'the': 1.0, 'is': 1.0, 'few': 1.0, 'a': 1.0, 'have': 1.0, 'read': 2.0, 'for': 1.0, 'elmo': 2.0, 'adores': 1.0, 'we': 3.0, 'stars': 1.0, 'soft': 1.0, '3': 1.0, 'book': 1.0, 'books': 1.0, 'loves': 1.0, 'son': 1.0, 'month': 1.0, 'my': 1.0, 'find': 1.0, 'over': 2.0, 'and': 7.0, 'this': 2.0, 'it': 2.0, 'he': 1.0, 'smiles': 1.0, 'time': 1.0, 'laughs': 1.0, 'most': 1.0, 'every': 1.0, '5': 1.0, 'different': 1.0, 'say': 1.0, '34': 2.0, 'old': 1.0, 'peekaboo': 1.0}
Word element => {'babies': 1.0, 'great': 1.0, 'illustrations': 1.0, 'very': 1.0, 'for': 1.0, 'book': 2.0, 'interactive': 1.0, 'toddlers': 1.0, 'son': 1.0, 'make': 1.0, 'my': 1.0, 'the': 1.0, 'cute': 1.0, 'bright': 1.0, 'loves': 1.0, 'this': 2.0, 'colorful': 1.0}
Word element => {'present': 1.0, 'buy': 1.0, 'when': 2.0, 'if': 1.0, '9': 1.0, 'soft': 1.0, 'fall': 1.0, 'a': 1.0, 'granddauchildren': 1.0, 'we': 1.0, 'reading': 1.0, 'kiss': 1.0, 'love': 2.0, 'for': 1.0, 'elmo': 2.0, 'bought': 1.0, 'play': 1.0, 'and': 2.0, 'now': 1.0, 'they': 8.0, 'so': 1.0, 'time': 1.0, 'are': 3.0, 'the': 4.0, 'on': 1.0, 'over': 1.0, 'with': 2.0, 'mos': 1.0, 'it': 1.0, 'baby': 1.0, 'them': 4.0, 'use': 1.0, 'got': 1.0, 'safe': 1.0, 'fun': 1.0, 'as': 1.0, 'to': 2.0, 'all': 1.0, 'book': 1.0, 'still': 1.0, 'having': 1.0, 'see': 1.0, 'how': 1.0, 'were': 1.0, 'high': 1.0, 'can': 1.0, 'stack': 1.0, 'before': 1.0, 'blocks': 1.0, 'falls': 1.0, 'two': 1.0, 'i': 1.0}
Word element => {'bank': 1.0, 'didn': 1.0, 'younger': 1.0, 'gift': 1.0, 'christmas': 1.0, 'encourage': 1.0, 'side': 1.0, 'to': 2.0, 'off': 1.0, 'for': 3.0, 'their': 1.0, 'were': 2.0, 'without': 1.0, 'crawling': 1.0, 'rolling': 1.0, 'letting': 1.0, 'over': 2.0, 'break': 1.0, 'and': 5.0, 'setting': 1.0, 'teething': 1.0, 'baby': 1.0, 'about': 1.0, 't': 1.0, 'the': 4.0, 'great': 3.0, 'these': 1.0, 'i': 1.0, 'them': 3.0, 'chew': 1.0, 'babies': 1.0, 'have': 1.0, 'all': 1.0, 'entertaining': 1.0, 'they': 1.0, 'droll': 1.0, 'worrying': 1.0, 'ruining': 1.0}
Word element => {'i': 1.0, 'recommend': 1.0, 'of': 1.0, 'waste': 1.0, 'book': 1.0, 'is': 2.0, 'not': 1.0, 'would': 1.0, 'granddaughter': 1.0, 'a': 1.0, 'this': 1.0, 'boring': 1.0, 'to': 1.0, 'nothing': 1.0, 'stimulate': 1.0, 'my': 1.0, 'money': 1.0, 'it': 2.0}
Word element => {'nothing': 1.0, 'of': 1.0, 'objects': 1.0, 'teach': 1.0, '1': 1.0, 'have': 1.0, 'them': 1.0, 'looks': 1.0, 'it': 1.0, 'hard': 1.0, 'with': 1.0, 'so': 2.0, 'unrealistic': 1.0, 'look': 1.0, 'find': 1.0, 'like': 2.0, 'cloth': 1.0, 'old': 1.0, 'books': 1.0, 'what': 3.0, 'many': 1.0, 'is': 3.0, 'want': 1.0, 'animals': 1.0, 'on': 1.0, 'portrayals': 1.0, 'this': 1.0, 'drawing': 1.0, 'images': 1.0, 'show': 1.0, 'but': 1.0, 'one': 1.0, 'for': 1.0, 'exactly': 1.0, 'lion': 3.0, 'him': 1.0, 'were': 1.0, 'to': 2.0, 'actual': 1.0, 'our': 1.0, 'that': 1.0, 'looking': 1.0, 'fantastic': 1.0, 'when': 1.0, 'year': 1.0, 'we': 3.0, 'a': 4.0, 'real': 2.0, 'not': 1.0}
Word element => {'can': 1.0, 'memories': 1.0, 'happy': 2.0, 'so': 1.0, 'cute': 1.0, 'very': 1.0, 'they': 1.0, 'read': 1.0, 'the': 1.0, 'something': 1.0, 'many': 1.0, 'is': 1.0, 'little': 1.0, 'no': 1.0, 'reading': 1.0, '34': 2.0, 'there': 1.0, 'of': 1.0, 'young': 1.0, 'for': 1.0, 'chance': 1.0, 'child': 1.0, 'them': 1.0, 'or': 1.0, 'destroying': 1.0}
Word element => {'cute': 1.0, 'anyway': 1.0, 'etc': 1.0, 'interactive': 1.0, 'mot': 1.0, 'not': 2.0, 'texture': 1.0, '1': 1.0, 'thought': 1.0, 'but': 2.0, 'as': 2.0, 'year': 1.0, 'interesting': 1.0, 'my': 1.0, 'to': 1.0, 'old': 1.0, 'bad': 1.0, 'i': 1.0}
Word element => {'be': 1.0, 'will': 1.0, 'and': 1.0, 'fun': 1.0, 'so': 1.0, 'momento': 1.0, 'great': 1.0, 'it': 2.0, 'love': 1.0, 'a': 2.0, 'friend': 1.0, 'bought': 1.0, 'me': 1.0, 'our': 1.0, 'this': 1.0, 'calendar': 1.0, 'daughter': 1.0, 'when': 1.0, 'was': 1.0, 's': 1.0, 'born': 1.0}
Word element => {'mom': 1.0, 'for': 1.0, 'busy': 1.0, 'one': 1.0, 'little': 1.0, 'a': 2.0, 'quick': 1.0, 'first': 2.0, 'to': 1.0, 'and': 1.0, 'up': 1.0, 'especially': 1.0, 'easy': 1.0, 'all': 1.0, 'milestones': 1.0, 'of': 1.0, 'keep': 1.0, 'time': 1.0, 'with': 1.0, 'the': 1.0}
Word element => {'pictures': 1.0, 'personalization': 1.0, 'has': 1.0, 'look': 1.0, 'to': 1.0, 'fun': 1.0, 'be': 1.0, 'back': 1.0, 'will': 1.0, 's': 1.0, 'baby': 1.0, 'remembering': 1.0, 'month': 1.0, 'calendar': 1.0, 'year': 1.0, 'throughout': 1.0, 'a': 1.0, 'down': 1.0, 'low': 1.0, 'and': 4.0, 'spots': 1.0, 'dates': 1.0, 'searched': 1.0, 'did': 1.0, 'jotting': 1.0, 'i': 3.0, 'for': 3.0, 'one': 1.0, 'on': 3.0, 'quick': 1.0, 'first': 1.0, 'this': 1.0, '34': 2.0, 'of': 1.0, 'settled': 1.0, 'based': 1.0, 'the': 2.0, 'reviews': 1.0, 'am': 1.0, 'firsts': 1.0, 'so': 1.0, 'memories': 1.0, 'high': 1.0, 'happy': 1.0, 'that': 1.0, 'also': 1.0, 'perfect': 1.0}
Word element => {'themselves': 1.0, 'now': 1.0, 'so': 1.0, 'firsts': 2.0, 'baby': 1.0, 'soon': 1.0, 'born': 1.0, 'parents': 2.0, 'for': 2.0, 'one': 1.0, 'the': 3.0, 'mother': 1.0, 'these': 1.0, 'it': 1.0, 'this': 1.0, 'give': 1.0, 'had': 1.0, 'is': 2.0, 'want': 1.0, 'a': 2.0, 'especially': 1.0, 'that': 1.0, 'their': 1.0, 'you': 1.0, 'to': 3.0, 'as': 3.0, 'from': 1.0, 'chart': 1.0, 'good': 1.0, 'enjoy': 1.0, 'children': 1.0, 'gift': 1.0, 'they': 3.0, 'can': 1.0, 'looking': 1.0, 'start': 1.0, 'beginning': 1.0, '34': 4.0, 'of': 2.0, 'up': 1.0, 'i': 1.0, 'very': 2.0, 'calendars': 1.0, 'new': 1.0, 'would': 1.0, 'each': 1.0, 'my': 1.0, 'five': 1.0, 'are': 1.0}
Word element => {}
Word element => {'again': 1.0, 'book': 1.0, 'same': 1.0, 'receive': 1.0, 'purchased': 1.0, 'in': 2.0, 'law': 1.0, 'scripture': 1.0, 'and': 2.0, 'i': 1.0, 'daughter': 1.0, 'when': 1.0, 'for': 1.0, 'love': 1.0, 'absolutely': 1.0, 'the': 3.0, 'my': 2.0, 'of': 1.0, 'thrilled': 1.0, 'it': 2.0, 'he': 1.0, 'baby': 1.0, 'boy': 1.0, 'version': 1.0, 'grandson': 1.0, 'to': 1.0, 'was': 2.0, 'all': 1.0, 'born': 1.0}
Word element => {'pages': 1.0, 'of': 1.0, 'bottom': 1.0, 'at': 1.0, 'in': 1.0, 'daughter': 1.0, 'for': 1.0, 'she': 1.0, 'gift': 1.0, 'bought': 1.0, 'law': 1.0, 'a': 2.0, 'down': 1.0, 'as': 1.0, 'loved': 2.0, 'the': 1.0, 'it': 1.0, 'simple': 1.0, 'place': 1.0, 'to': 1.0, 'but': 1.0, 'put': 1.0, 'important': 1.0, 'my': 1.0, 'memories': 1.0, 'i': 1.0, 'verses': 1.0}
Word element => {'keeping': 1.0, 'are': 1.0, 'we': 1.0, 'memories': 1.0, 'right': 1.0, 'has': 1.0, 'lifestyle': 1.0, 'out': 1.0, 'fir': 1.0, 'etc': 1.0, 'prayers': 1.0, 'wasn': 1.0, 'scripture': 1.0, 'sure': 1.0, 'favorite': 1.0, 'for': 3.0, 'ages': 1.0, 'baby': 1.0, 'ask': 1.0, 'a': 1.0, 'so': 2.0, 'was': 1.0, 'product': 1.0, 'religious': 1.0, 'all': 1.0, 'have': 1.0, 'almost': 1.0, 'didn': 1.0, 'against': 1.0, 'book': 1.0, 'but': 2.0, 'i': 3.0, 'returned': 1.0, 'with': 1.0, 'this': 1.0, 'it': 2.0, 'realize': 1.0, 'that': 3.0, 'anything': 1.0, 'some': 1.0, 'of': 1.0, 't': 2.0, 'the': 4.0, 'not': 1.0, 'pages': 1.0}
Word element => {'gift': 1.0, 'great': 1.0, 'so': 1.0, 'etc': 1.0, 'shower': 1.0, 'of': 1.0, 'gets': 1.0, 'keepsakes': 1.0, 'one': 2.0, 'for': 4.0, 'liked': 1.0, 'hair': 1.0, 'has': 1.0, 'places': 1.0, 'to': 2.0, 'had': 1.0, 'want': 1.0, 'is': 3.0, 'starts': 1.0, 'remember': 1.0, 'cute': 1.0, 'questions': 1.0, 'memories': 1.0, 'it': 2.0, 'first': 1.0, 'loved': 1.0, 'little': 2.0, 'baby': 3.0, 'this': 2.0, 'perfect': 1.0, 'reason': 1.0, 'also': 1.0, 'book': 1.0, 'your': 2.0, 'omg': 1.0, 'put': 1.0, 'and': 4.0, 'asking': 1.0, 'when': 2.0, 'you': 1.0, 'prints': 1.0, 'we': 2.0, 'a': 2.0, 'the': 2.0, 'place': 1.0, 'foot': 1.0, 'which': 1.0, 'hand': 1.0, 'bigger': 1.0, 'main': 1.0, 'born': 1.0, 'why': 1.0, 'even': 1.0, 'pockets': 1.0, 'locks': 1.0}
Word element => {'color': 1.0, 'pink': 1.0, 'pastel': 1.0, 'with': 1.0, 'life': 1.0, 'granddaughters': 1.0, 'record': 1.0, 'beautiful': 2.0, 'i': 1.0, 'great': 1.0, 'it': 1.0, 'love': 1.0, 'to': 1.0, 'cherished': 1.0, 'the': 1.0, 'my': 1.0, 'times': 1.0, 'book': 1.0, 'in': 1.0}
Word element => {'hair': 1.0, 'preserve': 1.0, 'mini': 1.0, 'maternity': 1.0, 'firsts': 1.0, 'family': 1.0, 'info': 1.0, 'an': 1.0, 'book': 1.0, 'fill': 1.0, 'looking': 1.0, 'pockets': 1.0, 'i': 2.0, 'purchase': 1.0, 'lot': 1.0, 'to': 2.0, 'was': 1.0, 'happy': 2.0, 'bracelet': 1.0, 'm': 1.0, 'for': 1.0, 'one': 1.0, 'english': 1.0, 'is': 2.0, 'really': 2.0, 'baby': 1.0, 'french': 1.0, 'and': 3.0, 'the': 2.0, 'of': 1.0, 'daddy': 1.0, 'with': 1.0, 'this': 2.0, 'flammish': 1.0, 'in': 1.0, 'perfect': 1.0}
Word element => {'with': 1.0, 'everyone': 1.0, 'a': 1.0, 's': 2.0, 'way': 1.0, 'in': 1.0, 'is': 1.0, 'it': 1.0, 'perfect': 1.0, 'this': 2.0, 'parent': 1.0, 'kindergartener': 1.0, 'one': 1.0, 'for': 2.0, 'record': 2.0, 'i': 2.0, 'entitled': 1.0, 'while': 1.0, 'recommend': 1.0, 'was': 1.0, 'to': 3.0, 'its': 1.0, 'purpose': 1.0, 'surprised': 1.0, 'book': 2.0, 'through': 1.0, 'receiving': 1.0, 'kindergarten': 2.0, 'memory': 1.0, 'are': 1.0, 'questions': 1.0, 'experience': 1.0, 'very': 1.0, 'the': 4.0, 'upon': 1.0, 'my': 1.0, 'pleasantly': 1.0, 'photographs': 1.0, 'and': 2.0, 'year': 1.0, 'detailed': 1.0, 'descriptions': 1.0, 'of': 1.0, 'important': 1.0, 'time': 1.0, 'your': 2.0, 'child': 2.0, 'life': 1.0, 'answer': 1.0, 'serving': 1.0, 'fun': 1.0, 'd': 1.0}
Word element => {'how': 1.0, 'later': 1.0, 'years': 1.0, 'look': 1.0, 'to': 2.0, 'my': 1.0, 'upon': 1.0, 'questions': 2.0, 'gem': 1.0, 'so': 1.0, 'has': 1.0, 'answering': 1.0, 'son': 1.0, 'glad': 1.0, 'started': 1.0, 'stumbled': 1.0, 'already': 1.0, 'memory': 1.0, 'm': 1.0, 'answered': 1.0, 'i': 3.0, 'and': 1.0, 'think': 1.0, 'he': 1.0, 'it': 1.0, 'the': 1.0, 'these': 1.0, 'great': 1.0, 'back': 1.0, 'will': 1.0, 'be': 1.0, 'see': 1.0, 'a': 1.0}
Word element => {'and': 1.0, 'toy': 1.0, 'realization': 1.0, 'neat': 1.0, 'when': 1.0, 'between': 1.0, 'so': 1.0, 'elephant': 1.0, 'have': 1.0, 'we': 1.0, 'character': 1.0, 'stuffed': 1.0, 'to': 3.0, 'old': 1.0, 'words': 1.0, 'the': 7.0, 'my': 1.0, 'it': 1.0, 'older': 1.0, 'he': 1.0, 'with': 1.0, 'is': 1.0, 'as': 1.0, 'son': 1.0, 'few': 2.0, 'pages': 1.0, 'just': 2.0, 'long': 1.0, 'will': 1.0, 'book': 2.0, 'see': 1.0, 'well': 1.0, 'a': 2.0, 's': 1.0, 'attention': 1.0, 'association': 1.0, 'each': 1.0, 'be': 1.0, 'short': 1.0, 'enough': 1.0, 'keep': 1.0, 'of': 2.0, '6': 1.0, 'page': 1.0, 'month': 1.0}
Word element => {'gift': 1.0, 'nice': 1.0, 'great': 1.0, 'and': 1.0, 'pretty': 1.0, 'used': 1.0, 'made': 1.0, 'very': 1.0, 'gives': 1.0, 'for': 1.0, 'highly': 1.0, 'years': 1.0, 'also': 1.0, 'light': 1.0, 'well': 1.0, 'a': 3.0, 'is': 1.0, 'it': 3.0, 'this': 1.0, 'will': 1.0, 'be': 1.0, 'i': 1.0, 'recommend': 1.0, 'makes': 1.0}
Word element => {'5': 1.0, 'room': 1.0, 'fine': 1.0, 'decals': 1.0, 'wall': 1.0, 'try': 1.0, 'for': 1.0, 'this': 1.0, 'out': 1.0, 'brightens': 1.0, 'a': 1.0, 'spring': 1.0, 'project': 1.0, 'fun': 1.0, 'easy': 1.0, 'any': 1.0, 'up': 1.0, 'quality': 1.0, 'and': 2.0, 'affordable': 1.0}
Word element => {'roll': 1.0, 'floor': 1.0, 'fell': 1.0, 'all': 1.0, 'a': 1.0, 'see': 1.0, 'day': 1.0, 'when': 1.0, 'second': 1.0, 'is': 1.0, 'most': 1.0, 'part': 1.0, 'you': 1.0, 'wall': 1.0, 'apply': 1.0, 'morning': 1.0, 'sizehard': 1.0, 'to': 1.0, 'will': 1.0, 'small': 1.0, 'the': 4.0, 'in': 2.0, 'reason': 1.0, 'of': 1.0, 'on': 2.0, 'waste': 1.0, 'flower': 1.0, 'because': 1.0, 'know': 1.0, 'one': 1.0, 'pieceyou': 1.0, 'how': 1.0, 'money': 1.0, 'flowers': 1.0, 'only': 1.0, 'it': 1.0}
Word element => {'peeling': 1.0, '5': 1.0, 'about': 1.0, 'for': 1.0, 'stuck': 1.0, 'literally': 1.0, 'recommend': 1.0, 'i': 1.0, 'were': 2.0, 'again': 1.0, 'the': 3.0, 'started': 1.0, 'not': 2.0, 'would': 2.0, 'wall': 1.0, 'was': 1.0, 'thick': 1.0, 'then': 1.0, 'purchase': 1.0, 'minutes': 1.0, 'plastic': 1.0, 'applying': 1.0, 'like': 1.0, 'and': 1.0, 'stick': 1.0, 'as': 1.0, 'coming': 1.0, 'almost': 1.0, 'decals': 1.0, 'or': 1.0, 'off': 2.0, 'stayed': 1.0, 'them': 1.0}
Word element => {'paintwork': 1.0, 'seamless': 1.0, 'professional': 1.0, 'all': 1.0, 'at': 1.0, '34': 2.0, 'don': 1.0, 'on': 3.0, 'fantastic': 1.0, 'easy': 1.0, 'they': 2.0, 'with': 1.0, 'look': 2.0, 'to': 1.0, 'was': 1.0, 'decor': 1.0, 'pooh': 1.0, 'themed': 1.0, 'i': 2.0, 'winnie': 1.0, 'option': 1.0, 't': 1.0, 'these': 2.0, 'the': 3.0, 'not': 1.0, 'wall': 2.0, 'like': 1.0, 'could': 1.0, 'in': 1.0, 'effective': 1.0, 'stickers': 2.0, 'new': 1.0, 'zealand': 1.0, 'impressed': 1.0, 'get': 1.0, 'and': 3.0, 'stick': 1.0, 'very': 4.0, 'that': 1.0, 'were': 2.0, 'a': 1.0, 'cost': 1.0}
Word element => {'buying': 1.0, 'on': 1.0, 'i': 2.0, 'said': 1.0, 'satisfied': 1.0, 'reccomend': 1.0, 'about': 1.0, 'follow': 1.0, 'it': 1.0, 'more': 1.0, 'the': 2.0, 'product': 2.0, 'grat': 1.0, 'design': 1.0, 'and': 1.0, 'highly': 1.0, 'page': 1.0, 'very': 1.0, 'as': 1.0, 'came': 1.0, 'ir': 1.0}
Word element => {'lives': 1.0, 'your': 1.0, 'in': 1.0, 'him': 1.0, 'you': 1.0, 'country': 1.0, 'our': 1.0, 'god': 1.0, 'around': 1.0, 'chain': 1.0, 'on': 1.0, 'jesus': 1.0, 'pendant': 1.0, 'very': 1.0, 'divine': 3.0, 'need': 1.0, 'nice': 1.0, 'mercy': 3.0, 'my': 1.0, 'of': 2.0, 'offers': 1.0, 'neck': 1.0, 'for': 1.0, 'love': 1.0, 'it': 1.0, 'jesuswho': 1.0, 'represents': 1.0, 'us': 1.0, 'an': 1.0, 'now': 1.0, 'to': 1.0, 'ocean': 1.0, 'pray': 1.0}
Word element => {'now': 1.0, 'right': 1.0, 'of': 1.0, 'ordering': 1.0, 'm': 1.0, 'uses': 1.0, 'find': 1.0, 'll': 1.0, 'our': 1.0, 'that': 1.0, 'know': 1.0, 'wipes': 2.0, 'days': 1.0, 'soft': 1.0, 'other': 1.0, 'during': 1.0, 'simple': 1.0, 'after': 1.0, 'so': 1.0, 'dry': 1.0, 'they': 3.0, 'a': 2.0, 'my': 1.0, 'i': 4.0, 'love': 1.0, 'for': 2.0, 'more': 1.0, 'these': 1.0, 'great': 1.0, 'diaper': 2.0, 'are': 3.0, 'actually': 1.0, 'done': 1.0, 'changes': 1.0, 'and': 4.0, 'reusable': 1.0, 'get': 1.0, 'price': 1.0, 'baby': 1.0, 'them': 2.0, 'million': 1.0, 'clean': 1.0}
Word element => {'than': 1.0, 'but': 1.0, 'was': 2.0, 'wall': 1.0, 'just': 1.0, 'not': 1.0, 'on': 1.0, 'is': 1.0, 'looks': 1.0, 'measurements': 1.0, 'bit': 1.0, 'the': 1.0, 'great': 1.0, 'it': 2.0, 'and': 2.0, 'nice': 1.0, 'a': 1.0, 'my': 2.0, 'smaller': 1.0, 'what': 1.0, 'i': 1.0, 'thought': 1.0, 'that': 1.0, 'fault': 1.0, 'taking': 1.0}
Word element => {'package': 1.0, 'size': 1.0, 'given': 1.0, 'though': 1.0, 'reasonable': 1.0, 'side': 1.0, 'high': 1.0, 'on': 1.0, 'than': 1.0, 'price': 1.0, 'that': 1.0, 'use': 1.0, 'needed': 1.0, 'or': 1.0, 'their': 1.0, 'open': 4.0, 'was': 2.0, 'as': 1.0, 'to': 4.0, 'able': 1.0, 'for': 1.0, 'recall': 1.0, 'safety': 1.0, 'pins': 3.0, 'one': 1.0, 'bought': 1.0, 'and': 2.0, 'my': 1.0, 'the': 4.0, 'these': 1.0, 'more': 2.0, 'a': 1.0, 'we': 2.0, 't': 1.0, 'sturdy': 1.0, 'year': 1.0, 'his': 1.0, 'i': 1.0, 'autistic': 1.0, 'bit': 1.0, 'time': 1.0, 'learned': 1.0, 'has': 1.0, 'shipping': 1.0, 'son': 1.0, 'seem': 1.0, 'new': 1.0, 'normal': 1.0, 'are': 1.0, 'significantly': 1.0, 'only': 1.0, 'old': 1.0, 'hasn': 1.0, '6': 1.0, 'he': 2.0, 'how': 1.0, 'night': 1.0, 'clothes': 1.0, 'them': 1.0, 'of': 2.0, 'once': 1.0, 'break': 1.0, 'broken': 1.0}
Word element => {'others': 1.0, 'my': 1.0, 'filled': 1.0, 'needed': 1.0, 'in': 1.0, 'used': 1.0, 'these': 1.0, 'way': 1.0, 'were': 1.0, 'no': 1.0, 'worked': 1.0, 'duty': 1.0, 'good': 1.0, 'as': 1.0, 'need': 1.0, 'and': 1.0, 'any': 1.0, 'quality': 1.0, 'fine': 1.0, 'heavy': 1.0, 'able': 1.0, 'to': 1.0, 'be': 1.0}
Word element => {'dozen': 1.0, 'and': 1.0, 'bright': 1.0, 'with': 1.0, 'find': 1.0, 'a': 3.0, 'for': 1.0, 'safety': 1.0, 'pin': 1.0, 'bargain': 1.0, 'that': 1.0, 'uses': 1.0, 'great': 2.0, 'colors': 1.0, 'lots': 1.0, 'has': 1.0, 'of': 1.0, 'easy': 1.0, 'to': 1.0}
Word element => {'little': 1.0, 'so': 1.0, 'baby': 1.0, 'no': 2.0, 'received': 1.0, 'stuck': 1.0, 'in': 1.0, 'used': 1.0, 'are': 2.0, 'diaper': 1.0, 'the': 4.0, 'attractive': 1.0, 'pins': 2.0, 'involved': 1.0, 'i': 2.0, 'and': 1.0, 'there': 1.0, 'metal': 1.0, 'up': 1.0, 'did': 1.0, 'while': 1.0, 'thick': 1.0, 'not': 1.0, 'hold': 1.0, 'was': 2.0, 'to': 1.0, 'fabric': 1.0, 'them': 1.0, 'on': 2.0, 'flimsy': 1.0, 'fortunately': 1.0}
Word element => {'appreciated': 1.0, 'pampers': 1.0, 'have': 1.0, 'do': 1.0, 'they': 2.0, 'age': 1.0, 'cloth': 1.0, 'hold': 1.0, 'honduras': 2.0, 'to': 3.0, 'diapers': 1.0, 'disposable': 1.0, 'pins': 2.0, 'we': 2.0, 'find': 1.0, 'went': 1.0, 'missionaries': 1.0, 'the': 3.0, 'diaper': 2.0, 'these': 1.0, 'our': 1.0, 'in': 2.0, 'also': 1.0, 'sent': 2.0, 'it': 1.0, 'with': 1.0, 'is': 1.0, 'not': 1.0, 'difficult': 1.0, 'kits': 1.0, '34': 4.0}
Word element => {'your': 1.0, 'idea': 1.0, 'course': 1.0, 'tricky': 1.0, 'little': 1.0, 'get': 1.0, 'of': 2.0, 'washing': 1.0, 'together': 2.0, 'the': 4.0, 'fact': 1.0, 'my': 2.0, 're': 1.0, 'pin': 1.0, 'do': 1.0, 'and': 3.0, 'perfectly': 1.0, 'staying': 1.0, 'to': 4.0, 'was': 2.0, 'i': 2.0, 'tried': 1.0, 'it': 1.0, 'socks': 2.0, 'diaper': 2.0, 'dressmaker': 1.0, 'needed': 1.0, 'thery': 1.0, 'recommended': 1.0, 'has': 1.0, 'brass': 1.0, 'they': 2.0, 'that': 1.0, 'been': 1.0, 'many': 1.0, 'through': 2.0, 'working': 1.0, 'keep': 1.0, 'since': 1.0, '34': 2.0, 'years': 1.0, 'can': 1.0, 'but': 3.0, 'a': 1.0, 'we': 2.0, 'during': 1.0, 'pins': 3.0, 'suggested': 1.0, 'have': 1.0, 'never': 1.0, 'lost': 1.0, 'one': 1.0, 'yet': 1.0, 'friended': 1.0, 'like': 1.0, 'using': 1.0, 'tended': 1.0, 'open': 2.0, 'wash': 2.0, 'up': 2.0, 'cycle': 1.0, 'matter': 1.0, 'wife': 1.0, 'them': 1.0}
Word element => {'done': 1.0, 'had': 1.0, 'whole': 1.0, 'about': 1.0, 'am': 1.0, 'idea': 1.0, 'or': 1.0, 'wish': 1.0, 'this': 2.0, 'lost': 1.0, 'problem': 1.0, 'don': 1.0, 'time': 1.0, 'lot': 1.0, 'has': 1.0, 'use': 1.0, 'here': 1.0, 'grab': 1.0, 'into': 1.0, 'shelf': 1.0, 't': 1.0, 'a': 3.0, 'saved': 1.0, 'i': 7.0, 'washer': 1.0, 'feet': 1.0, 'out': 1.0, 'them': 1.0, 'come': 1.0, 'with': 2.0, 'it': 2.0, 'of': 4.0, 'once': 1.0, 'washing': 1.0, 'to': 2.0, 'as': 2.0, 'open': 1.0, 'hamper': 2.0, 'for': 1.0, 'hang': 2.0, 'one': 1.0, 'my': 2.0, 'reviewer': 1.0, 'another': 1.0, 'great': 2.0, 'these': 1.0, 'sock': 1.0, 'noted': 1.0, 'are': 2.0, 'before': 1.0, 'pin': 2.0, 'glad': 1.0, 'socks': 6.0, 'each': 1.0, 'dry': 2.0, 'reviews': 1.0, 'dirty': 1.0, 'they': 2.0, 'now': 1.0, 'matching': 1.0, 'pins': 1.0, 'life': 1.0, 'just': 2.0, 'by': 1.0, 'still': 1.0, 'put': 1.0, 'on': 6.0, 'stay': 1.0, 'line': 2.0, 'the': 11.0, 'without': 1.0, 'read': 1.0, 'dried': 1.0, 'and': 4.0, 'clothespins': 1.0, 'side': 1.0, 'mismatched': 1.0, 'have': 1.0, 'leave': 1.0, 'after': 1.0}
Word element => {'recommend': 1.0, 'would': 1.0, 'unlike': 1.0, 'thicker': 1.0, 'a': 1.0, 'at': 1.0, 'part': 1.0, 'work': 1.0, 'not': 2.0, 'strong': 1.0, 'pins': 1.0, 'still': 1.0, 'to': 1.0, 'through': 1.0, 'steel': 1.0, 'which': 1.0, 'is': 1.0, 'diaper': 1.0, 'the': 2.0, 'old': 1.0, 'i': 1.0, 'fabric': 1.0, 'all': 1.0, 'have': 1.0, 'very': 1.0, 'it': 1.0, 'hard': 1.0}
Word element => {'be': 1.0, 'back': 1.0, 'will': 1.0, 'so': 1.0, 'crochet': 1.0, 'yarn': 1.0, 'mark': 1.0, 'use': 1.0, 'they': 1.0, 'think': 1.0, 'turns': 1.0, 'safety': 1.0, 'going': 1.0, 'when': 1.0, 'pins': 3.0, 'dozen': 1.0, 'as': 1.0, 'only': 2.0, 'should': 1.0, 'a': 1.0, 'and': 1.0, 'getting': 1.0, 'to': 2.0, 'was': 1.0, 'regular': 1.0, 'really': 1.0, '10': 1.0, 'counted': 1.0, 'that': 1.0, 'thought': 1.0, 'overpriced': 1.0, 'i': 8.0, 'picture': 1.0, 'have': 1.0, 'the': 2.0, 'are': 2.0, 'in': 1.0, 'there': 1.0, 'am': 1.0, 'them': 1.0, 'out': 1.0, 'sad': 1.0}
Word element => {'anymore': 1.0, 'because': 1.0, 'work': 1.0, 'doesn': 1.0, 'diapers': 2.0, 'my': 2.0, 't': 1.0, 'the': 2.0, 'velcro': 2.0, 'dislike': 1.0, 'older': 1.0, 'through': 2.0, 'pierce': 1.0, 'sharp': 1.0, 'like': 1.0, 'sides': 1.0, 'easier': 1.0, 'that': 2.0, 'pushing': 1.0, 'which': 1.0, 'a': 1.0, 'them': 1.0, 'on': 1.0, 'ends': 1.0, 'pain': 1.0, 'tabs': 1.0, 'is': 1.0, 'said': 1.0, 'bend': 1.0, 'i': 1.0, 'am': 1.0}
Word element => {'with': 1.0, 'dog': 1.0, 'a': 1.0, 'bed': 1.0, 'for': 1.0, 'am': 2.0, 'so': 1.0, 'i': 3.0, 'easily': 1.0, 'color': 1.0, 'happy': 1.0, 'steel': 1.0, 'right': 1.0, 'are': 1.0, 'diapers': 1.0, 'but': 1.0, 'the': 3.0, 'these': 2.0, 'on': 1.0, 'is': 1.0, 'needle': 1.0, 'bends': 1.0, 'and': 1.0, 'as': 2.0, 'pinning': 1.0, 'expected': 1.0, 'material': 1.0, 'not': 2.0, 'strong': 1.0}
Word element => {'purpose': 1.0, 'no': 1.0, 'matter': 1.0, 'diaper': 1.0, 'is': 1.0, 'a': 1.0, 'hard': 1.0, 'the': 1.0, 'are': 1.0, 'find': 1.0, 'pins': 1.0, 'locally': 1.0, 'have': 1.0, 'item': 1.0, 'this': 1.0, 'to': 2.0, 'useful': 1.0}
Word element => {'off': 1.0, '2': 1.0, 'far': 1.0, 'actually': 1.0, 'difference': 1.0, 'peeled': 1.0, 'compared': 1.0, 'aligned': 1.0, 'so': 1.0, 'the': 5.0, 'an': 4.0, 'it': 6.0, 'with': 2.0, 'be': 1.0, 'putting': 1.0, 'i': 4.0, 'at': 1.0, 'bigger': 1.0, 'put': 1.0, 'make': 2.0, 'my': 1.0, 'just': 1.0, 'design': 1.0, 'wish': 1.0, 'half': 1.0, 'pleased': 1.0, 'not': 1.0, 'give': 1.0, 'picture': 2.0, 'sense': 2.0, 'together': 1.0, 'doesn': 1.0, 'was': 1.0, 'had': 2.0, 'they': 1.0, 'weeks': 1.0, 'free': 1.0, 'seen': 1.0, 'am': 1.0, 'you': 2.0, 'way': 1.0, 'about': 1.0, 'wall': 1.0, 'all': 1.0, 'actual': 1.0, 'to': 3.0, 'any': 1.0, 'as': 3.0, 'instruction': 1.0, 'have': 1.0, 'sort': 1.0, 'of': 1.0, 'don': 1.0, 'up': 3.0, 'hold': 1.0, 'branches': 1.0, 'numbers': 1.0, 'hand': 1.0, 'start': 1.0, 'made': 1.0, 'ago': 1.0, 'could': 1.0, 't': 2.0, 'a': 1.0}
Word element => {'them': 1.0, 'you': 1.0, 'soon': 1.0, 'do': 1.0, 'these': 1.0, 'they': 1.0, 'stick': 2.0, 'to': 3.0, 'not': 1.0, 'wall': 2.0, 'the': 2.0, 'start': 1.0, 'peel': 1.0, 'as': 2.0}
Word element => {'on': 1.0, 'waste': 1.0, 'wall': 1.0, 'frustrating': 1.0, 'very': 3.0, 'having': 1.0, 'pieces': 1.0, 'of': 1.0, 'up': 2.0, 'picking': 1.0, 'or': 1.0, 'off': 1.0, 'into': 1.0, 'time': 2.0, 'my': 1.0, 't': 1.0, 'the': 5.0, 'floor': 1.0, 'product': 1.0, 'get': 1.0, 'girls': 1.0, 'for': 1.0, 'money': 1.0, 'ended': 1.0, 'baby': 1.0, 'sticky': 1.0, 'so': 1.0, 'every': 1.0, 'got': 1.0, 'to': 3.0, 'was': 2.0, 'walked': 1.0, 'not': 1.0, 'super': 1.0, 'at': 1.0, 'bedroom': 2.0, 'when': 1.0, 'i': 4.0, 'wouldn': 1.0, 'this': 1.0, 'excited': 1.0, 'it': 3.0, 'disappointing': 1.0, 'back': 1.0, 'glue': 1.0, 'is': 1.0, 'all': 1.0}
Word element => {'would': 1.0, 'buy': 1.0, 'definitely': 1.0, 'devotion': 1.0, 'strong': 1.0, 'has': 1.0, 'in': 3.0, 'not': 1.0, 'because': 1.0, 'francis': 2.0, 'looked': 1.0, 'with': 2.0, 'untier': 1.0, 'is': 2.0, 'photo': 1.0, 'of': 3.0, 'the': 3.0, 'i': 4.0, 'knots': 1.0, 'and': 3.0, 'giving': 1.0, 'blessed': 1.0, 'beat': 1.0, 'lovely': 1.0, 'for': 2.0, 'a': 4.0, 'pope': 2.0, 'novena': 1.0, 'friend': 2.0, 'just': 1.0, 'by': 1.0, 'rosary': 2.0, 'ordered': 1.0, 'recommend': 1.0, 'was': 1.0, 'beautiful': 1.0, 'again': 1.0, 'am': 1.0, 'disappointed': 1.0, 'made': 1.0, 'crystal': 1.0, 'knotted': 1.0, 'between': 1.0, 'fathers': 1.0, 'my': 1.0, 'heart': 1.0, 'it': 4.0, 'whom': 1.0, 'along': 1.0, 'this': 3.0, 'undoer': 1.0, 'lady': 1.0, 'to': 1.0, 'as': 1.0, 'our': 2.0, 'copy': 1.0, 'or': 1.0}
Word element => {'all': 1.0, 'wearing': 1.0, 'or': 1.0, 'item': 1.0, 'right': 1.0, 'to': 1.0, 'for': 2.0, 'price': 1.0, 'precious': 1.0, 'an': 1.0, 'quality': 1.0, 'scapular': 1.0, 'and': 2.0, 'value': 1.0, 'around': 1.0, 'blessing': 1.0, 'some': 1.0, 'just': 1.0, 'excellent': 1.0, 'brown': 1.0, 'neck': 1.0, 'orattaching': 1.0, 'a': 1.0, 'more': 1.0, 'the': 5.0, 'such': 1.0, 'makes': 1.0}
Word element => {'beware': 1.0, 'be': 1.0, 'still': 1.0, 'tell': 1.0, 'would': 2.0, 'down': 1.0, 'there': 2.0, 'if': 3.0, 'know': 1.0, 'slow': 1.0, 'excuse': 1.0, 'months': 1.0, '25': 1.0, 'had': 3.0, 'as': 2.0, 'to': 5.0, 'right': 1.0, 'look': 1.0, 'get': 1.0, 'is': 4.0, '00': 1.0, 'it': 4.0, 'great': 1.0, 'spend': 1.0, 'excited': 2.0, 'buyer': 1.0, 'wish': 1.0, 'this': 1.0, 'with': 1.0, 'so': 3.0, 'i': 10.0, 'watching': 1.0, 'love': 1.0, 'for': 1.0, 'finally': 1.0, 'an': 1.0, 'have': 1.0, 'box': 2.0, 'been': 2.0, 'was': 1.0, 'beautiful': 2.0, 'someone': 1.0, 'am': 3.0, 'fast': 1.0, 'very': 1.0, 'happy': 2.0, 'the': 7.0, 'a': 2.0, 't': 1.0, 'item': 1.0, 'me': 1.0, 'not': 3.0, 'about': 1.0, 'don': 1.0, 'but': 1.0, 'music': 4.0, 'nativity': 3.0, 'song': 2.0, 'way': 2.0, 'and': 3.0, 'play': 1.0, 'too': 1.0, 'through': 1.0, 'of': 1.0, 'once': 1.0, 'even': 1.0, 'recognize': 1.0}
Word element => {'shipping': 1.0, 'fast': 1.0, 'overall': 1.0, 'over': 1.0, 'satisfied': 1.0, 'wrist': 1.0, 'kid': 1.0, 'them': 1.0, 'i': 5.0, 'if': 1.0, 'like': 1.0, 'hand': 2.0, 'had': 1.0, 'to': 3.0, 'was': 1.0, 'bit': 1.0, 'am': 1.0, 'on': 3.0, 'fitting': 1.0, 'with': 3.0, 'pleased': 1.0, 'large': 1.0, 'however': 1.0, 'they': 4.0, 'these': 1.0, 'a': 3.0, 't': 1.0, 'are': 2.0, 'bangles': 1.0, 'adult': 1.0, 'slid': 1.0, 'size': 1.0, 'lotion': 1.0, 'bangle': 1.0, 'and': 2.0, 'tough': 2.0, 'but': 2.0, 'whew': 1.0, 'were': 1.0, 'get': 1.0, 'my': 1.0, 'hair': 1.0, 'bigger': 1.0, 'the': 3.0, 'hands': 1.0, 'snug': 1.0, 'small': 3.0, 'have': 2.0, 'product': 2.0, 'love': 1.0, 'for': 1.0, 'fit': 2.0, 'stay': 1.0, 'also': 1.0, 'wouldn': 1.0, 'got': 1.0}
Word element => {'cooking': 1.0, 'set': 1.0, 'fun': 1.0, 'lot': 1.0, 'a': 1.0, 'of': 1.0, 'has': 1.0, 'this': 1.0, 'pretend': 1.0, 'with': 1.0, '2': 1.0, 'playing': 1.0, 'for': 1.0, 'the': 1.0, 'my': 1.0, 'great': 1.0, 'and': 2.0, 'yr': 1.0, 'old': 1.0, 'was': 1.0, 'granddaughter': 1.0, 'she': 1.0}
Word element => {'them': 1.0, 'also': 1.0, 'awesome': 1.0, 'is': 1.0, 'i': 1.0, 'friends': 1.0, 'dry': 1.0, 'and': 1.0, 'very': 2.0, 'like': 2.0, 'price': 1.0, 'bibs': 1.0, 'easy': 1.0, 'they': 1.0, 'my': 1.0, 'the': 1.0, 'are': 1.0, 'much': 1.0, 'those': 1.0, 'to': 1.0, 'useful': 1.0, 'wash': 1.0}
Word element => {'easy': 1.0, 'mouth': 1.0, 'the': 2.0, 'wash': 1.0, 'in': 1.0, 'fall': 1.0, 'elbows': 1.0, 'loved': 1.0, 'too': 1.0, 'when': 1.0, 'daughter': 1.0, 'pasta': 2.0, 'marinara': 1.0, 'with': 1.0, 'this': 2.0, 'my': 2.0, 'pocket': 1.0, 'bibs': 2.0, 'messy': 1.0, 'missing': 1.0, 'for': 1.0, 'front': 1.0, 'a': 1.0, 'or': 1.0, 'loves': 1.0, 'good': 1.0, 'very': 1.0, 'provided': 1.0, 'is': 1.0, '20': 1.0, 'months': 1.0, 'protections': 1.0, 'old': 1.0, 'fingers': 1.0, 'to': 2.0, 'beautiful': 1.0, 'eaters': 1.0, 'boy': 1.0, 'eat': 1.0, 'curls': 1.0, 'grandson': 1.0, 'who': 1.0, 'his': 2.0}
Word element => {'to': 2.0, 'it': 1.0, 'wait': 1.0, 'can': 1.0, 'my': 2.0, 'perfect': 1.0, 't': 1.0, 'this': 2.0, 'tree': 1.0, 'collect': 1.0, 'add': 1.0, 'is': 2.0, 'such': 1.0, 'a': 1.0, 'cute': 1.0, 'collection': 1.0, 'ornaments': 1.0, 'i': 1.0, 'for': 1.0, 'nativity': 2.0, 'ornament': 1.0, 'and': 1.0}
Word element => {'baby': 1.0, 'sure': 1.0, 'enough': 1.0, 'make': 1.0, 'wet': 1.0, 'patterns': 1.0, 'feeding': 1.0, 'and': 2.0, 'of': 2.0, 'book': 1.0, 'diapers': 1.0, 'track': 2.0, 'to': 3.0, 'help': 1.0, 'us': 1.0, 'breastfeed': 1.0, 'pees': 1.0, 'used': 1.0, 'during': 1.0, 'we': 1.0, 'great': 1.0, 'poops': 1.0, 'that': 1.0, 'you': 1.0, 'month': 1.0, 'eating': 1.0, 'first': 1.0, 'this': 1.0, 'it': 1.0, 'helpful': 1.0, 'really': 1.0, 'is': 2.0, 'keep': 2.0, 'if': 1.0}
Word element => {'up': 1.0, 'fill': 1.0, 'after': 1.0, 'buying': 1.0, 'definitely': 1.0, 'home': 1.0, 'needed': 1.0, 'i': 5.0, 'adopting': 1.0, 'use': 1.0, 'travel': 1.0, 'be': 3.0, 'and': 3.0, 'complete': 1.0, 'this': 3.0, 'perfect': 2.0, 'emergency': 1.0, 'book': 3.0, 'track': 2.0, 'more': 1.0, 'is': 2.0, 'when': 1.0, 'traveling': 1.0, 'adoption': 1.0, 'the': 3.0, 'also': 1.0, 'will': 2.0, 'schedule': 2.0, 'memory': 1.0, 'to': 2.0, 'spot': 1.0, 'of': 2.0, 'there': 1.0, 'at': 2.0, 'keep': 1.0, 'are': 1.0, 'saver': 1.0, 'just': 1.0, 'life': 1.0, 'baby': 2.0, 'going': 1.0, 'we': 2.0, 'a': 4.0, 's': 2.0, 'have': 1.0, 'terrible': 1.0, 'for': 4.0, 'love': 1.0, 'keeping': 1.0, 'how': 1.0, 'beginning': 1.0, 'babysitter': 1.0, 'numbers': 1.0, 'important': 1.0, 'info': 1.0, 'or': 1.0}
Word element => {'be': 1.0, 'new': 1.0, 'get': 1.0, 'really': 1.0, 'communicate': 1.0, 'round': 1.0, 'for': 4.0, 'love': 3.0, 'used': 1.0, 'moms': 1.0, 'too': 1.0, 'soon': 1.0, 'baby': 3.0, 's': 1.0, 'a': 1.0, 'great': 2.0, 'daycare': 1.0, 'was': 1.0, 'provider': 1.0, 'the': 2.0, 'it': 5.0, 'first': 1.0, 'with': 1.0, 'so': 1.0, 'got': 2.0, 'another': 1.0, 'my': 1.0, 'tracker': 1.0, 'up': 1.0, 'sleep': 1.0, 'to': 2.0, 'as': 3.0, 'day': 1.0, 'one': 1.0, 'bought': 1.0, 'gift': 1.0, 'can': 1.0, 'your': 2.0, 'activities': 1.0, 'or': 1.0, 'also': 1.0, 'you': 2.0, 'when': 1.0, 'clock': 1.0, 'care': 1.0, 'about': 1.0, 'no': 1.0, 'need': 1.0, 'remember': 1.0, 'last': 1.0, 'ate': 1.0, 'how': 1.0, 'much': 1.0}
Word element => {'probably': 1.0, 'would': 1.0, 'things': 1.0, 'little': 1.0, 'funny': 1.0, 'saver': 1.0, 'life': 1.0, 'over': 1.0, 'everything': 1.0, 'forgotten': 1.0, 'transfer': 1.0, 'finally': 1.0, 'able': 1.0, 'because': 1.0, 'months': 1.0, 'after': 1.0, 'out': 1.0, 'enough': 1.0, 'beginning': 1.0, 'in': 1.0, 'book': 2.0, 'on': 1.0, '2': 1.0, 'work': 1.0, 'have': 2.0, 'even': 1.0, 'didn': 1.0, 'wouldn': 1.0, 'his': 3.0, 'had': 1.0, 'what': 1.0, 'down': 1.0, 'simple': 1.0, 'and': 3.0, 'me': 3.0, 'way': 2.0, 'let': 1.0, 'went': 1.0, 'get': 1.0, 'sure': 1.0, 'easy': 2.0, 'was': 2.0, 'course': 1.0, 'really': 1.0, 'is': 1.0, 'this': 2.0, 'it': 3.0, 'major': 1.0, 'of': 4.0, 'has': 1.0, 'they': 1.0, 'for': 3.0, 'love': 1.0, 'baby': 2.0, 'about': 1.0, 't': 2.0, 's': 1.0, 'a': 2.0, 'my': 1.0, 'jot': 1.0, 'until': 1.0, 'great': 1.0, 'the': 3.0, 'know': 1.0, 'how': 1.0, 'to': 5.0, 'all': 3.0, 'routines': 1.0, 'as': 1.0, 'record': 1.0, 'caregiver': 1.0, 'i': 6.0, 'though': 1.0, 'been': 2.0, 'that': 2.0, 'time': 1.0, 'so': 1.0, 'day': 1.0, 'milestones': 1.0, 'happened': 1.0, 'knew': 1.0}
Word element => {'at': 1.0, 'this': 1.0, 'first': 1.0, 'looks': 1.0, 'it': 5.0, 'with': 1.0, 'reviews': 1.0, 'a': 1.0, 'for': 1.0, 'looking': 1.0, 'was': 1.0, 'as': 1.0, 'to': 1.0, 'am': 2.0, 'the': 1.0, 'my': 1.0, 'happy': 1.0, 'baby': 1.0, 'and': 2.0, 'delivery': 1.0, 'i': 6.0, '4': 1.0, 'useful': 1.0, 'tracker': 1.0, 'ends': 1.0, 'weeks': 1.0, 'but': 1.0, 'remember': 1.0, 'looked': 1.0, 'from': 2.0, 'read': 1.0, 'very': 1.0, 'of': 1.0, 'up': 1.0, 'newborn': 1.0, 'like': 1.0, 'being': 1.0, 'everything': 1.0, 'needs': 1.0, 'so': 1.0, 'that': 1.0, 'write': 1.0, 'down': 1.0, 'used': 1.0, 'had': 1.0, 'what': 1.0, 'one': 2.0, 'bought': 1.0, 'have': 1.0, 'not': 1.0, 'saw': 1.0, 'hope': 1.0}
Word element => {'connected': 1.0, 'more': 1.0, 'feels': 1.0, 'has': 1.0, 'what': 1.0, 'see': 1.0, 'helps': 1.0, 'will': 1.0, 'also': 1.0, 'story': 1.0, 'some': 1.0, 'section': 1.0, 'notes': 1.0, 'use': 1.0, 'plus': 1.0, 'development': 1.0, 'buying': 1.0, 'with': 1.0, 'it': 3.0, 'the': 3.0, 'another': 2.0, 'family': 1.0, 'people': 1.0, 'about': 1.0, 'several': 1.0, 'especially': 1.0, 'day': 2.0, 'rummage': 1.0, 'so': 2.0, 'visiting': 1.0, 'book': 1.0, 'happened': 1.0, 'when': 1.0, 'this': 1.0, 'found': 2.0, 'at': 1.0, 'ex': 1.0, 'things': 1.0, 'soon': 1.0, 'too': 1.0, 'and': 4.0, 'baby': 2.0, 'helping': 1.0, 'are': 1.0, 'useful': 1.0, 'much': 1.0, 'room': 1.0, 'be': 2.0, 'write': 2.0, 'loved': 1.0, 'filled': 1.0, 'that': 3.0, 'to': 3.0, 'our': 1.0, 'etc': 2.0, 'i': 3.0, 've': 1.0, 'having': 1.0, 'bought': 1.0, 'one': 3.0, 'sale': 1.0, 'have': 1.0, 'almost': 1.0, 'dad': 1.0, 'like': 1.0, 'we': 2.0, 'a': 1.0, 's': 1.0}
Word element => {'starts': 1.0, '5': 1.0, 'friends': 1.0, 'all': 1.0, 'worth': 1.0, 'absolutely': 1.0, 'good': 1.0, 'media': 1.0, 'seen': 1.0, 'reason': 1.0, 've': 1.0, 'others': 1.0, 'new': 1.0, 'the': 2.0, 'my': 2.0, 'iparenting': 1.0, 'of': 1.0, 'baby': 1.0, 'am': 1.0, 'extremely': 1.0, 'for': 2.0, 'winner': 1.0, 'parents': 1.0, 'a': 1.0, 'well': 1.0, 'then': 1.0, 'got': 1.0, 'part': 1.0, 'an': 1.0, 'work': 1.0, 'expecting': 1.0, 'tracker': 1.0, 'much': 1.0, 'i': 3.0, 'package': 1.0, 'as': 1.0, 'from': 1.0, 'this': 2.0, 'it': 2.0, 'is': 2.0, 'getting': 1.0, 'and': 1.0, 'organized': 1.0, 'better': 1.0}
Word element => {'in': 1.0, 'pages': 1.0, 'out': 1.0, 'run': 1.0, 'months': 1.0, 'one': 1.0, 'ordering': 1.0, 'be': 1.0, 'will': 1.0, 'with': 1.0, 'extremely': 1.0, 'has': 2.0, 'this': 1.0, 'perfect': 1.0, 'is': 2.0, 'it': 4.0, 'daily': 1.0, 'baby': 2.0, 'another': 1.0, 'my': 1.0, 'feedings': 1.0, 'record': 1.0, 'i': 5.0, 'beyond': 1.0, 'm': 1.0, 'mom': 1.0, 's': 2.0, 'a': 3.0, 'happy': 1.0, 'activities': 1.0, 'and': 6.0, 'changes': 1.0, 'was': 1.0, 'to': 4.0, 'patterns': 2.0, 'book': 1.0, 'anything': 1.0, 'for': 3.0, 'new': 1.0, 'something': 1.0, 'that': 1.0, 'of': 2.0, 'lot': 1.0, 'space': 1.0, 'write': 2.0, 'down': 2.0, 'looking': 1.0, 'extra': 1.0, 'the': 1.0, 'diaper': 1.0, 'great': 1.0, 'sleeping': 1.0, 'like': 1.0, 'medications': 1.0, 'reminder': 1.0, 'an': 1.0, 'track': 1.0, 'area': 1.0, '3': 1.0, 'your': 1.0, 'dr': 1.0, 'appointments': 1.0, 'when': 1.0, 'am': 1.0}
Word element => {'mom': 1.0, 'time': 1.0, 'appts': 1.0, 'love': 1.0, 'helpful': 1.0, 'this': 2.0, 'for': 2.0, 'book': 1.0, 'especially': 1.0, 'easy': 1.0, 'pediatrician': 1.0, 'first': 1.0, 'to': 1.0, 'track': 1.0, 'keep': 1.0, 'super': 1.0, 'sooooooooo': 1.0, 'and': 1.0}
Word element => {'and': 1.0, 'she': 1.0, 'share': 1.0, 'appointments': 1.0, 'keep': 1.0, 'important': 1.0, 'the': 1.0, 'to': 3.0, 'was': 2.0, 'track': 1.0, 'book': 1.0, 'often': 1.0, 'doctor': 1.0, 'for': 1.0, 'year': 1.0, 'loved': 1.0, 'how': 2.0, 'of': 1.0, 'up': 1.0, 'set': 1.0, 'always': 1.0, 'took': 1.0, 'i': 3.0, 'everything': 2.0, 'about': 1.0, 'baby': 1.0, 'used': 1.0, 'eating': 1.0, 'first': 1.0, 'this': 1.0, 'it': 2.0}
Word element => {'schedule': 1.0, '34': 1.0, 'of': 1.0, 'keeping': 1.0, 'i': 2.0, 'way': 1.0, 'great': 1.0, 'it': 2.0, 's': 2.0, 've': 1.0, 'have': 1.0, 'baby': 1.0, 'been': 1.0, 'a': 1.0, 'using': 1.0, 'track': 1.0, 'my': 1.0, 'to': 1.0, 'newborn': 1.0, 'since': 1.0, 'and': 1.0}
Word element => {'long': 1.0, 'months': 1.0, 'run': 1.0, 'they': 1.0, '3': 1.0, 'buy': 1.0, 'will': 1.0, 'in': 1.0, 'interested': 1.0, 're': 1.0, 'out': 1.0, 'laid': 1.0, 'though': 1.0, 'well': 1.0, 'refer': 1.0, 'second': 1.0, 'is': 4.0, 'very': 1.0, 'son': 2.0, 'year': 3.0, 'need': 2.0, 'which': 1.0, 'nice': 1.0, '4': 1.0, 'i': 4.0, 'whole': 2.0, 'used': 1.0, 'my': 4.0, 'but': 2.0, 'back': 1.0, 'book': 1.0, 'didn': 1.0, 'to': 4.0, 'tracker': 3.0, 'first': 4.0, 'with': 3.0, 'much': 1.0, 'only': 1.0, 'it': 1.0, 'a': 2.0, 't': 1.0, 'the': 2.0, 'and': 1.0, 'so': 1.0, 'organized': 1.0, 'keeps': 1.0, 'this': 2.0, 'full': 1.0, 'things': 1.0, 'pretty': 1.0, 'did': 1.0, 'if': 1.0, 'complaint': 1.0, 'that': 1.0, 'not': 1.0, 'would': 1.0, 'tracking': 1.0, 'recommend': 1.0, 'you': 2.0}
Word element => {'gift': 1.0, 'and': 1.0, 'appt': 1.0, 'doc': 1.0, 'infant': 1.0, 'all': 1.0, 'took': 1.0, 'i': 1.0, 'on': 1.0, 'nursed': 1.0, 'which': 1.0, 'your': 1.0, 'of': 2.0, 'keep': 2.0, 'track': 2.0, 'to': 3.0, 'best': 1.0, 'side': 1.0, 'is': 1.0, 'bath': 1.0, 'it': 2.0, 'this': 2.0, 'baby': 2.0, 'sleeps': 1.0, 'eats': 1.0, 'the': 1.0, 'great': 2.0, 'poops': 1.0, 'etc': 1.0, 'when': 1.0, 'gets': 1.0, 'a': 3.0, 'way': 2.0, 's': 2.0, 'also': 1.0}
Word element => {'gift': 1.0, 'great': 1.0, 'will': 1.0, 'information': 1.0, 'must': 1.0, 'have': 2.0, 'husband': 1.0, 'allow': 1.0, 'chose': 1.0, 'thing': 1.0, 'same': 1.0, 'apps': 1.0, 'are': 1.0, 'there': 1.0, 'understand': 1.0, 'glance': 1.0, 'simple': 1.0, 'and': 4.0, 'feeding': 1.0, 'that': 1.0, 'been': 1.0, 'close': 1.0, 'ability': 1.0, 'anyones': 1.0, 'this': 3.0, 'quick': 1.0, 'with': 1.0, 'it': 1.0, 'can': 2.0, 'recall': 1.0, 'layout': 1.0, 'make': 1.0, 'deprivation': 1.0, 'journal': 4.0, 'however': 2.0, 'so': 1.0, 'rarely': 1.0, 'nanny': 1.0, 'last': 1.0, 'sleep': 2.0, 'to': 6.0, 'was': 1.0, 'write': 1.0, 'used': 1.0, 'i': 5.0, 'etc': 1.0, 'a': 5.0, 'easy': 1.0, 'lifesaver': 1.0, 'review': 1.0, 'has': 1.0, 'napping': 1.0, 'which': 1.0, 'phone': 1.0, 'use': 1.0, 'compromise': 1.0, 'breast': 1.0, 'soiled': 1.0, 'even': 1.0, 'diapers': 1.0, 'my': 2.0, 'at': 1.0, 'keep': 1.0, 'by': 1.0, 'do': 1.0, 'document': 1.0, 'is': 1.0, 'around': 1.0, 'times': 1.0, 'clock': 1.0, 'the': 4.0, 'of': 1.0, 'access': 1.0, 'very': 1.0}
Word element => {'wish': 1.0, '2': 2.0, 'for': 2.0, 'have': 2.0, 'all': 1.0, 'record': 1.0, 'been': 1.0, 'baby': 1.0, 'done': 1.0, 'and': 2.0, 'my': 2.0, 'information': 1.0, 'idea': 1.0, 'would': 2.0, 'wonderful': 1.0, 'has': 1.0, 'received': 2.0, 'first': 1.0, 'only': 1.0, 'children': 1.0, 'shower': 1.0, 'this': 3.0, 'it': 4.0, 'i': 5.0, 'kids': 1.0, 'when': 1.0, 'a': 1.0, 'gift': 1.0, 'what': 1.0, 'at': 1.0, 'no': 1.0, 'fun': 1.0, 'be': 1.0, 'now': 1.0, 'had': 2.0, 'to': 1.0}
Word element => {'really': 1.0, 'look': 1.0, 'his': 1.0, 'removed': 1.0, 'that': 1.0, 'easier': 1.0, 'house': 1.0, 'put': 1.0, 'cool': 2.0, 'very': 1.0, 'from': 1.0, 'i': 3.0, 'makes': 1.0, 'old': 1.0, 'be': 2.0, 'they': 3.0, 'these': 2.0, 'for': 1.0, 'love': 1.0, 'fact': 1.0, 'my': 1.0, '2': 1.0, 'can': 2.0, '7': 1.0, 'the': 2.0, 'without': 1.0, 'it': 1.0, 'month': 1.0, 'sons': 1.0, '1': 1.0, 'ordered': 1.0, 'get': 1.0, 'area': 2.0, 'wall': 2.0, 'and': 2.0, 'play': 2.0, 'moved': 2.0, 'to': 2.0, 'a': 1.0, 'room': 1.0, 'or': 1.0, 'decals': 1.0, 'if': 1.0, 'needed': 1.0, 'would': 1.0, 'instead': 1.0, 'of': 1.0, 'up': 1.0, 'are': 2.0, 'ruining': 1.0, 'because': 1.0, 'them': 1.0}
Word element => {'directed': 1.0, 'reviews': 1.0, 'positive': 1.0, 'other': 1.0, 'for': 1.0, 'got': 1.0, 'he': 1.0, 'christmas': 1.0, 'it': 3.0, 'him': 1.0, 'buy': 1.0, 'old': 1.0, 'to': 2.0, '2': 1.0, 'me': 1.0, 'and': 2.0, 'quality': 1.0, 'year': 1.0, 'very': 1.0, 'grandson': 1.0, 'good': 1.0, 'mommy': 1.0, 'loves': 1.0, 'my': 1.0, 'when': 1.0, 'his': 1.0, 'made': 1.0, 'reads': 1.0, 'well': 1.0}
Word element => {'him': 1.0, 'to': 1.0, 'an': 1.0, 'got': 1.0, 'even': 1.0, 'lot': 1.0, 'likes': 1.0, 'far': 1.0, 'so': 1.0, 'ooooooh': 1.0, 'a': 2.0, 'quiet': 1.0, 'month': 1.0, 'as': 1.0, 'son': 1.0, 'for': 1.0, 'in': 1.0, 'crib': 1.0, 'wakes': 1.0, 'entertainment': 1.0, 'my': 1.0, 'form': 1.0, 'handed': 1.0, 'bought': 1.0, '5am': 1.0, '17': 1.0, 'old': 1.0, 'i': 2.0, 'when': 2.0, 'up': 1.0, 'of': 1.0, 'first': 1.0, 'it': 2.0, 'this': 1.0, 'he': 2.0, 'at': 1.0}
Word element => {'making': 1.0, 'so': 1.0, 'kinda': 1.0, 'else': 1.0, 'his': 1.0, 'wall': 1.0, 'off': 1.0, 'good': 1.0, 'havent': 2.0, 'hung': 1.0, 'applied': 1.0, 'headboard': 1.0, 'they': 6.0, 'these': 1.0, 'the': 1.0, 'over': 1.0, 'a': 1.0, 'ago': 1.0, 'my': 3.0, 'week': 1.0, 'will': 2.0, 'but': 1.0, 'avoid': 1.0, 'fallen': 2.0, 'mistake': 1.0, 'seemed': 1.0, 'sond': 1.0, 'room': 1.0, 'i': 3.0, 'themed': 1.0, 'sure': 1.0, 'down': 1.0, 'thomas': 1.0, 'maybe': 1.0, 'anyone': 1.0, 'be': 2.0, 'okay': 1.0, 'made': 1.0, 'review': 1.0, 'do': 2.0, 'and': 1.0, 'cheaply': 1.0, 'look': 1.0, 'to': 2.0, 'as': 1.0, 'in': 1.0, 'said': 1.0, 'revise': 1.0, 'if': 1.0}
Word element => {'very': 1.0, 'result': 1.0, 'peaceful': 1.0, 'the': 1.0, 'around': 1.0, 'be': 2.0, 'with': 1.0, 'it': 3.0, 'can': 1.0, 'looks': 1.0, 'want': 1.0, 'a': 1.0, 'beautiful': 1.0, 'how': 1.0, 'if': 1.0, 'to': 1.0, 'comes': 1.0, 'little': 1.0, 'placed': 1.0, 'off': 1.0, 'know': 1.0, 'difficult': 1.0, 'easily': 1.0, 'on': 1.0, 'your': 1.0, 'you': 3.0, 'wall': 1.0, 'so': 2.0, 'creative': 1.0, 'dont': 1.0, 'play': 1.0}
Word element => {'happy': 1.0, 'still': 1.0, 'but': 1.0, 'larger': 1.0, 'was': 1.0, 'it': 2.0, 'granddaughters': 1.0, 'i': 1.0, 'think': 1.0, 'with': 1.0, 'is': 1.0, 'now': 1.0, 'though': 1.0, 'haning': 1.0, 'in': 1.0, 'my': 2.0, 'choice': 1.0, 'bedroom': 1.0, 'did': 1.0}
Word element => {'tall': 1.0, 'looking': 1.0, 'cute': 1.0, 'is': 2.0, 'about': 1.0, 'actually': 1.0, 'well': 1.0, 'its': 1.0, 'in': 1.0, 'one': 1.0, 'picture': 1.0, 'foot': 1.0, 'not': 1.0, 'the': 1.0, 'only': 1.0, 'as': 2.0, 'big': 1.0, 'awfully': 1.0, 'but': 1.0, 'it': 2.0, 'looks': 1.0}
Word element => {'pink': 1.0, 'purple': 1.0, 'of': 1.0, 'i': 2.0, 'look': 1.0, 'in': 1.0, 'flowers': 1.0, 't': 1.0, 'disappointed': 1.0, 'color': 1.0, 'put': 1.0, 'they': 1.0, 'haven': 1.0, 'these': 1.0, 'than': 1.0, 'but': 1.0, 'up': 1.0, 'more': 1.0, 'the': 2.0, 'yet': 1.0, 'was': 1.0}
Word element => {'walah': 1.0, 'and': 1.0, 'up': 1.0, 'of': 1.0, 'little': 1.0, 'coming': 1.0, 'glue': 1.0, 'really': 1.0, 'next': 1.0, 'has': 1.0, 'day': 1.0, 'howerver': 1.0, 'on': 1.0, 'instructions': 1.0, 'were': 1.0, 'it': 2.0, 'the': 3.0, 'my': 1.0, 'soooo': 1.0, 'decals': 1.0, 'off': 1.0, 'started': 1.0, 'because': 1.0, 's': 1.0, 'wall': 1.0, 'crazy': 1.0, 'ridges': 1.0, 'clear': 1.0, 'i': 1.0, 'added': 1.0, 'dab': 1.0, 'a': 1.0}
Word element => {'like': 1.0, 'peel': 1.0, 'while': 1.0, 'stick': 1.0, 'enough': 2.0, 'not': 1.0, 'just': 1.0, 'no': 1.0, 'apply': 1.0, 'wall': 1.0, 'designs': 1.0, 'easy': 1.0, 'to': 6.0, 'was': 3.0, 'cut': 1.0, 'again': 2.0, 'were': 1.0, 'it': 4.0, 'and': 3.0, 'sticky': 3.0, 'residue': 1.0, 'too': 1.0, 'when': 1.0, 'we': 2.0, 'off': 2.0, 'paint': 1.0, 'peeled': 1.0, 'readjust': 1.0, 'there': 1.0, 'redo': 1.0, 'the': 4.0, 'adjustment': 1.0, 'also': 1.0}
Word element => {'when': 1.0, 'to': 1.0, 'still': 1.0, 'them': 1.0, 'get': 1.0, 'and': 1.0, 'home': 2.0, 'got': 1.0, 'these': 1.0, 'they': 3.0, 'opened': 1.0, 'grandchildren': 1.0, 'everything': 1.0, 'stuck': 1.0, 'in': 1.0, 'my': 1.0, 'before': 1.0, 'even': 1.0, 'themselves': 1.0, 'on': 1.0, 'hope': 1.0, 'house': 1.0, 'will': 1.0, 'stick': 1.0, 'wall': 1.0}
Word element => {'bach': 1.0, 'favorite': 1.0, 'cartridge': 2.0, 'spent': 1.0, 'hours': 1.0, 'fun': 1.0, 'jive': 1.0, 'months': 2.0, 's': 1.0, 'a': 1.0, 'started': 1.0, 'making': 1.0, 'calmer': 1.0, 'now': 2.0, 'my': 1.0, 'blocks': 2.0, 'herself': 1.0, 'is': 1.0, 'want': 1.0, 'entertaining': 1.0, 'daughter': 1.0, 'you': 1.0, 'when': 2.0, 'with': 1.0, 'this': 1.0, 'her': 2.0, 'old': 2.0, 'i': 1.0, 'music': 2.0, 'just': 1.0, 'few': 1.0, 'it': 1.0, 'she': 4.0, 'was': 1.0, 'recommend': 1.0, 'and': 3.0, 'still': 1.0, 'loves': 1.0, 'set': 1.0, '18': 1.0, 'arrange': 1.0, 'has': 1.0, 'toy': 1.0, 'highly': 1.0, 'understands': 1.0, 'new': 1.0, 'how': 1.0, 'playing': 1.0, 'the': 3.0, 'musical': 1.0, 'to': 1.0, 'patterns': 1.0, 'great': 1.0, 'jumpin': 1.0, 'jazz': 1.0}
Word element => {'more': 1.0, 'even': 1.0, 'expands': 1.0, 'sets': 1.0, 'additional': 1.0, 'use': 2.0, 'interest': 2.0, 'before': 1.0, 'long': 1.0, 'steam': 1.0, 'out': 2.0, 'child': 1.0, 'yes': 1.0, 'variety': 1.0, 'incredible': 1.0, 'changes': 1.0, 'thus': 1.0, 'oh': 1.0, 'swapping': 1.0, 'horn': 1.0, 'such': 1.0, 'that': 1.0, 'you': 2.0, 'again': 1.0, 'will': 1.0, 'missing': 1.0, 'one': 1.0, 'or': 2.0, 'pre': 1.0, 'anyone': 1.0, 'turning': 1.0, 'in': 2.0, 'generates': 1.0, 'programmed': 1.0, 'piece': 1.0, 'with': 4.0, 'it': 1.0, 'blocks': 3.0, 'violin': 1.0, 'takes': 1.0, 'of': 6.0, 'a': 3.0, 'young': 1.0, 'spirit': 1.0, 'old': 1.0, 'as': 1.0, 'to': 4.0, 'youthful': 1.0, 'them': 1.0, 'inquiry': 1.0, 'fascination': 1.0, 'on': 1.0, 'may': 1.0, 'back': 1.0, 'music': 2.0, 'but': 1.0, 'interactive': 1.0, 'they': 1.0, 'off': 1.0, 're': 1.0, 'bravo': 1.0, 'revolution': 1.0, 'toys': 1.0, 'each': 2.0, 'too': 2.0, 'play': 3.0, 'and': 7.0, 'block': 3.0, 'represents': 2.0, 'part': 1.0, 'colored': 1.0, 'musical': 1.0, 'score': 1.0, 'run': 2.0, 'side': 1.0, 'the': 5.0, 'voice': 1.0, 'way': 1.0, 'played': 1.0, 'delivering': 1.0}
Word element => {'luck': 1.0, 'out': 1.0, 'are': 1.0, 'a': 1.0, 'so': 1.0, 'you': 2.0, 'but': 1.0, 'favorite': 1.0, 'toys': 1.0, 'there': 1.0, 'of': 3.0, 'no': 1.0, 'and': 1.0, 'company': 1.0, 'one': 1.0, 'buy': 1.0, 'beware': 1.0, 'i': 1.0, 'problem': 1.0, 'if': 2.0, 'was': 1.0, 'it': 1.0, 'with': 1.0, 'this': 2.0, 'my': 1.0, 'went': 1.0, 'through': 1.0, '3': 1.0, 'the': 1.0, 'these': 1.0, 'is': 1.0, 'longer': 1.0, 'exists': 1.0}
Word element => {'6': 1.0, 'old': 2.0, 'year': 2.0, '3': 1.0, 'have': 1.0, 'attracted': 1.0, 'so': 1.0, 'in': 1.0, 'plug': 1.0, 'would': 1.0, 'suggestion': 1.0, 'challenge': 1.0, 'durable': 1.0, 'of': 1.0, 'aren': 1.0, 'hide': 1.0, 'music': 2.0, 'quot': 6.0, 'constant': 1.0, 'months': 1.0, 'one': 1.0, 'bought': 1.0, 'be': 2.0, 'we': 1.0, 't': 1.0, 'a': 4.0, 'broke': 1.0, 'lasted': 1.0, 'toy': 2.0, 'to': 4.0, 'our': 1.0, 'that': 3.0, 'loved': 1.0, 'feel': 1.0, 'about': 1.0, 'whole': 1.0, 'i': 3.0, 'was': 3.0, 'unfortunately': 1.0, 'disk': 1.0, 'the': 6.0, 'replace': 1.0, 'more': 1.0, 'blocks': 1.0, 'easily': 1.0, 'mozart': 1.0, 'even': 1.0, 'expensive': 1.0, 'this': 1.0, 'kids': 2.0, 'chip': 2.0, 'from': 1.0, 'my': 1.0, 'another': 1.0, 'family': 1.0, 'destroying': 1.0, 'price': 1.0, 'delicate': 1.0, 'accessible': 1.0, 'finally': 1.0, 'too': 1.0, 'and': 2.0, 'it': 4.0, 'felt': 1.0, 'keep': 1.0, 'at': 1.0, 'should': 1.0}
Word element => {'mind': 1.0, 'of': 2.0, 'pull': 1.0, 'so': 1.0, 'be': 1.0, 'inclined': 1.0, 'would': 1.0, 'ones': 1.0, 'littler': 1.0, 'also': 1.0, 'in': 1.0, 'blocks': 1.0, 'while': 1.0, 'cartridge': 3.0, '2': 1.0, 'my': 1.0, 'pulling': 1.0, 'loved': 2.0, 'got': 1.0, 'every': 1.0, 'this': 1.0, 'she': 2.0, 'it': 3.0, 'is': 1.0, 'side': 1.0, 'and': 3.0, 'interesting': 1.0, 'couldn': 1.0, 'out': 3.0, 'sight': 1.0, 'the': 6.0, 'mixing': 1.0, 'old': 1.0, 'i': 3.0, 'an': 1.0, 'educational': 1.0, 'back': 3.0, 'placed': 1.0, 'toy': 1.0, 'up': 1.0, 'don': 1.0, 'year': 1.0, 'means': 1.0, 'for': 1.0, 'that': 1.0, 'were': 1.0, 'had': 1.0, 'to': 2.0, 't': 2.0, 'go': 1.0, '5': 1.0, 'minutes': 1.0, 'if': 1.0, 'or': 1.0, 'put': 2.0, 'on': 1.0, 'think': 1.0}
Word element => {'occur': 1.0, 'lawsuit': 1.0, 'class': 1.0, 'are': 1.0, 'when': 2.0, 'returning': 1.0, 'after': 1.0, 'know': 1.0, 'existant': 1.0, 'not': 2.0, 'idea': 1.0, 'it': 1.0, 'durable': 1.0, 'one': 2.0, 'for': 1.0, 'disappointment': 1.0, 'is': 3.0, 'someone': 1.0, 'service': 1.0, 'broken': 1.0, 'will': 1.0, 'but': 1.0, 'rude': 1.0, 'the': 3.0, 'great': 1.0, 'working': 1.0, 'toy': 2.0, 'another': 1.0, 'a': 1.0, 'they': 1.0, 'has': 1.0, 'action': 1.0, 'what': 1.0, 'let': 1.0, 'customer': 1.0, 'me': 1.0, 'and': 2.0, 'non': 1.0}
Word element => {'last': 1.0, 'did': 1.0, 'that': 1.0, 'toy': 1.0, 'a': 1.0, 'was': 1.0, 'work': 1.0, 'not': 2.0, 'still': 1.0, 'twice': 1.0, 'batteries': 1.0, 'for': 2.0, 'very': 1.0, 'year': 2.0, '6': 1.0, 'months': 1.0, '18': 1.0, 'cartridges': 1.0, 'working': 1.0, 'ago': 1.0, 'my': 1.0, 'replaced': 1.0, 'bought': 2.0, 'old': 2.0, 'i': 2.0, 'and': 2.0, 'the': 1.0, '2': 1.0, 'they': 1.0, 'long': 1.0, 'expensive': 1.0, 'does': 1.0, 'both': 1.0, 'this': 1.0, 'stopped': 1.0, 'it': 4.0, 'additional': 1.0, 'loved': 1.0, 'then': 1.0, 'we': 1.0}
Word element => {'lessons': 1.0, 'real': 1.0, 'got': 1.0, 'olds': 1.0, 'anything': 1.0, 'he': 1.0, 'supervised': 1.0, 'while': 1.0, 'mean': 1.0, 'chair': 1.0, 'high': 1.0, 'in': 1.0, 'returned': 1.0, 'sit': 1.0, 'for': 2.0, 'actually': 1.0, 'trouble': 1.0, 're': 1.0, 'why': 1.0, 'him': 1.0, 'be': 1.0, 'must': 1.0, 'box': 1.0, 'that': 1.0, 'around': 1.0, 'having': 2.0, 'because': 1.0, 'says': 1.0, 'just': 1.0, 'the': 3.0, 'defective': 1.0, 'sent': 2.0, 'not': 1.0, 'me': 1.0, 'out': 1.0, 'them': 1.0, 'it': 10.0, 'terribly': 1.0, 'doing': 1.0, 'this': 1.0, 'first': 1.0, 'save': 1.0, 'my': 2.0, 'company': 1.0, 'another': 1.0, 'sensitve': 1.0, 'back': 1.0, 'his': 1.0, 'year': 2.0, 'spent': 1.0, 'let': 1.0, 't': 2.0, 's': 2.0, 'a': 2.0, 'well': 1.0, 'lot': 1.0, 'worked': 2.0, 'very': 2.0, 'and': 4.0, 'toss': 1.0, 'of': 1.0, 'anyway': 1.0, 'up': 1.0, 'i': 8.0, 'you': 2.0, 'inconsistently': 1.0, 'when': 2.0, 'was': 4.0, 'to': 2.0, 'told': 1.0, 'thing': 1.0, 'came': 1.0, 'your': 1.0, 'on': 1.0, 'wouln': 1.0, 'shut': 1.0, 'one': 1.0, 'they': 1.0, 'called': 1.0, 'manufacturer': 1.0, 'computer': 1.0, 'music': 1.0, '2': 2.0, 'money': 3.0, 'can': 1.0}
Word element => {'month': 1.0, '8': 1.0, 'get': 1.0, 'will': 2.0, 'why': 1.0, 'did': 1.0, 'alot': 1.0, 'completely': 1.0, 'toy': 7.0, 'half': 1.0, 'display': 1.0, 'they': 2.0, 'educational': 1.0, 'out': 2.0, 'had': 7.0, 'purchased': 3.0, 'use': 1.0, 'her': 3.0, 'hard': 1.0, 'while': 1.0, 'it': 9.0, 'she': 6.0, 'this': 5.0, 'christmas': 2.0, 'on': 2.0, 'near': 1.0, 'store': 2.0, 'was': 2.0, 'time': 1.0, 'haought': 1.0, 'recently': 1.0, 'think': 2.0, 'sell': 1.0, 'as': 2.0, 'to': 5.0, 'lot': 1.0, 'too': 1.0, 'one': 1.0, 'bought': 1.0, 'for': 9.0, 'mozart': 1.0, 'ended': 1.0, 'very': 1.0, 'leaving': 1.0, 'blocks': 1.0, 'the': 10.0, 'of': 3.0, 'set': 1.0, 'have': 1.0, 'old': 3.0, 'well': 1.0, 'i': 11.0, 'two': 1.0, 'daughter': 3.0, 'us': 1.0, 'my': 4.0, 'musical': 1.0, 'me': 3.0, 'not': 1.0, 'and': 9.0, 'a': 6.0, 'is': 7.0, 'at': 2.0, 'department': 1.0, 'toys': 3.0, 'wanted': 1.0, 'continue': 1.0, 'only': 1.0, 'r': 1.0, 'do': 1.0, 'with': 2.0, 'although': 1.0, 'loved': 1.0, 'enough': 2.0, 'young': 1.0, 'because': 1.0, 'that': 6.0, 'even': 2.0, 'though': 1.0, 'available': 1.0, 'play': 1.0, 'about': 1.0, 'told': 1.0, 'forgotten': 1.0, 'complaint': 1.0, 'pay': 2.0, 'still': 1.0, 'but': 1.0, 'so': 1.0, 'can': 1.0, 'anyways': 1.0, 'knew': 1.0, 'online': 1.0, 'here': 1.0, 'yesterday': 1.0, 'be': 1.0, 'good': 1.0, 'gift': 1.0, 'which': 1.0, 'sale': 1.0, 'really': 1.0, 'year': 3.0, 'price': 3.0, 'right': 1.0, 'them': 1.0, 'other': 1.0, 'when': 2.0, 'cheaper': 1.0, 'liked': 1.0}
Word element => {'cute': 1.0, 'really': 1.0, 'out': 1.0, 'and': 1.0, 'himself': 1.0, 'in': 1.0, 'stones': 1.0, 'it': 1.0, 'he': 1.0, 'my': 1.0, 'the': 2.0, 'make': 1.0, '16': 1.0, 'time': 1.0, 'put': 1.0, 'helped': 1.0, 'stepping': 1.0, 'product': 1.0, 'easy': 1.0, 'use': 1.0, 'i': 1.0, 'son': 1.0, 'day': 1.0, 'very': 1.0, 'turned': 1.0, 'to': 1.0, 'was': 1.0, 'at': 1.0, 'father': 1.0, 'months': 1.0, 's': 1.0, 'a': 1.0, 'stone': 1.0, 'for': 1.0}
Word element => {'such': 1.0, 'make': 1.0, 'and': 1.0, 'design': 1.0, 'when': 1.0, 'they': 2.0, 'learned': 1.0, 'use': 1.0, 'inside': 1.0, 'placed': 1.0, 'house': 1.0, 'be': 1.0, 'of': 1.0, 'there': 1.0, 'girls': 1.0, 'the': 3.0, 'purchase': 1.0, 'eventually': 1.0, 'my': 2.0, 'are': 1.0, 'this': 1.0, 'durable': 1.0, 'sweet': 1.0, 'sesame': 2.0, 'fun': 1.0, 'street': 2.0, 'but': 1.0, 'can': 1.0, 'love': 1.0, 'for': 1.0, 'faces': 1.0, 'purse': 2.0, 'that': 1.0, 'items': 1.0, '5': 1.0, 'to': 3.0, 'was': 1.0, 'around': 1.0, 'go': 1.0, 'a': 2.0, 'bright': 1.0, 'tricky': 1.0, '18': 1.0, 'she': 1.0, 'it': 4.0, 'month': 1.0, 'old': 1.0, 'little': 1.0, 'figure': 1.0, 'shopping': 1.0, 'out': 1.0, 'how': 1.0, 'character': 1.0, 'open': 1.0, 'pretend': 1.0, 'colors': 1.0}
Word element => {'use': 1.0, 'really': 1.0, 'but': 1.0, 'will': 1.0, '8': 1.0, 'to': 1.0, 'all': 1.0, 'even': 1.0, 'old': 1.0, 'putting': 1.0, 'bowl': 2.0, 'the': 3.0, 'my': 2.0, 'this': 1.0, 'he': 5.0, 'for': 1.0, 'now': 1.0, 'doesn': 2.0, 'was': 1.0, 'animals': 1.0, 'active': 1.0, 'little': 1.0, 'very': 1.0, 'at': 1.0, 'when': 1.0, 'i': 1.0, '4': 1.0, 'bought': 1.0, 'months': 2.0, 'son': 2.0, 'seem': 1.0, 't': 2.0, 's': 1.0, 'why': 1.0, 'interested': 1.0, 'in': 3.0, 'them': 2.0, 'out': 1.0, 'fish': 1.0, 'however': 1.0, 'so': 1.0, 'take': 1.0, 'if': 1.0, 'they': 1.0, 'are': 1.0, 'there': 1.0, 'is': 1.0, 'maybe': 1.0, 'loves': 1.0, 'that': 1.0, 'contributing': 1.0}
Word element => {'back': 1.0, 'will': 1.0, 'toy': 1.0, 'lamaze': 1.0, 'is': 1.0, 'not': 1.0, 'because': 1.0, 'our': 1.0, 'that': 1.0, 'store': 1.0, 'crab': 1.0, 'purchased': 1.0, 'be': 2.0, 'was': 1.0, 'to': 4.0, 'its': 1.0, 'and': 3.0, 'cant': 1.0, 'my': 1.0, 'the': 5.0, 'son': 1.0, 'on': 2.0, 'liked': 1.0, 'for': 1.0, 'it': 2.0, 'he': 3.0, 'only': 1.0, 'this': 2.0, 'i': 1.0, 'going': 2.0, 'returned': 1.0, 'item': 1.0, 'can': 1.0, 'star': 1.0, 'fish': 2.0, 'favorite': 1.0, 'hold': 2.0, 'crinkled': 1.0, 'thing': 1.0}
Word element => {'challenge': 1.0, 'is': 1.0, 'together': 1.0, 'four': 1.0, 'all': 1.0, 'misplace': 1.0, 'are': 1.0, 'noise': 1.0, 'each': 1.0, 'so': 1.0, 'hear': 1.0, 'shake': 1.0, 'a': 2.0, 'keeping': 1.0, 'peek': 1.0, 'take': 1.0, 'its': 1.0, 'to': 5.0, 'old': 1.0, 'through': 2.0, 'easy': 1.0, 'she': 4.0, 'this': 1.0, 'loves': 4.0, 'toy': 1.0, 'baby': 1.0, 'transparent': 1.0, 'in': 2.0, 'one': 1.0, 'downside': 1.0, 'my': 1.0, 'the': 4.0, 'play': 1.0, 'fish': 3.0, 'squeeze': 1.0, 'and': 3.0, 'boo': 1.0, 'year': 1.0, 'as': 1.0, 'watch': 1.0, 'sides': 2.0, 'takes': 1.0, 'out': 2.0, 'them': 1.0}
Word element => {'watch': 1.0, 'fun': 1.0, 'so': 1.0, 'worth': 1.0, 'item': 1.0, 'great': 1.0, 'no': 1.0, 'had': 1.0, 'back': 1.0, 'out': 1.0, 'them': 2.0, 'immediately': 1.0, 'mail': 1.0, 'doing': 1.0, 'this': 1.0, 'with': 1.0, 'in': 2.0, 'development': 1.0, 's': 1.0, 'when': 1.0, 'by': 1.0, 'i': 3.0, 'old': 1.0, 'bought': 1.0, 'my': 1.0, 'opened': 1.0, 'help': 1.0, 'noise': 1.0, 'to': 4.0, 'stimulate': 1.0, 'the': 5.0, 'playing': 1.0, 'got': 1.0, 'eight': 1.0, 'take': 1.0, 'her': 2.0, 'crab': 1.0, 'toy': 1.0, 'has': 2.0, 'learned': 1.0, 'that': 1.0, 'into': 1.0, 'gave': 1.0, 'been': 1.0, 'since': 1.0, 'difficulty': 1.0, 'favorite': 1.0, 'is': 3.0, 'and': 3.0, 'crinkle': 1.0, 'because': 1.0, 'money': 1.0, 'can': 1.0, 'bowl': 1.0, 'put': 1.0, 'make': 2.0, 'him': 1.0, 'others': 1.0, 'it': 5.0, 'month': 1.0, 'she': 5.0, 'fascinated': 1.0, 'very': 1.0, 'quickly': 1.0, 'how': 1.0}
Word element => {'different': 1.0, 'jump': 1.0, 'made': 1.0, 'point': 1.0, 'toys': 2.0, 'knows': 1.0, 'lot': 1.0, 'some': 1.0, 'even': 1.0, 'hit': 1.0, 'i': 2.0, 'putting': 1.0, 'be': 1.0, 'chance': 1.0, 'however': 1.0, 'cribside': 1.0, 'decided': 1.0, 'crib': 1.0, 'got': 1.0, 'daughter': 1.0, 'my': 1.0, 'fights': 1.0, 'll': 1.0, 'right': 1.0, 'plastic': 1.0, 'walk': 1.0, 'can': 1.0, 'this': 3.0, 'hard': 1.0, 'compared': 1.0, 'fishy': 1.0, 'it': 7.0, 'she': 6.0, 'time': 1.0, 'those': 1.0, 'we': 2.0, 'a': 2.0, 'nap': 1.0, 'during': 1.0, 'everyday': 2.0, 'was': 1.0, 'everyone': 1.0, 'saw': 1.0, 'sometimes': 1.0, 'holding': 1.0, 'her': 5.0, 'although': 1.0, 'around': 1.0, 'more': 1.0, 'at': 1.0, 'is': 1.0, 'the': 3.0, 'unrealistic': 1.0, 'of': 4.0, 'away': 1.0, 'and': 4.0, 's': 2.0, 'sides': 1.0, 'had': 1.0, 'value': 1.0, 'stuffed': 1.0, 'tried': 1.0, 'animals': 1.0, 'other': 1.0, 'best': 1.0, 'he': 1.0, 'interactive': 1.0, 'with': 2.0, 'just': 1.0, 'soft': 1.0, 'works': 1.0, 'hugging': 1.0, 'teddy': 1.0, 'bear': 1.0, 'when': 1.0, 'plays': 1.0, 'also': 1.0, 'room': 1.0, 'occupies': 1.0, 'in': 1.0, 'morning': 1.0, 'plus': 1.0, 'first': 1.0, 'wakes': 1.0, 'into': 1.0, 'difficult': 1.0, 'loves': 1.0, 'there': 2.0, 'if': 1.0, 'rolls': 1.0, 'on': 1.0, 'night': 1.0, 'no': 1.0, 'hurting': 1.0, 'herself': 1.0, 'great': 1.0, 'something': 1.0, 'little': 1.0}
Word element => {'crinkle': 1.0, 'and': 2.0, 'very': 1.0, 'dexterity': 1.0, 'clam': 1.0, 'manual': 1.0, 'figures': 1.0, 'to': 1.0, 'loves': 1.0, 'good': 1.0, 'baby': 1.0, 'toy': 1.0, 'helps': 1.0, 'behind': 1.0, 'the': 4.0, 'ability': 1.0, 'my': 1.0, 'that': 1.0, 'a': 1.0, 'is': 1.0, 'this': 1.0, 'crab': 1.0, 'recognize': 1.0, 'clear': 1.0, 'plastic': 1.0, 'especially': 1.0, 'girl': 1.0}
Word element => {'little': 1.0, 'much': 1.0, 'enjoyed': 1.0, 'jar': 1.0, 'cookie': 1.0, 'ex': 1.0, 'lamaze': 1.0, 'not': 2.0, 'several': 1.0, 'have': 3.0, '2': 1.0, 'value': 1.0, 'daughter': 1.0, 'experience': 1.0, 'same': 1.0, 'had': 1.0, 'pieces': 1.0, 'big': 1.0, 'near': 1.0, 'feel': 1.0, 'anywhere': 1.0, 'toys': 2.0, 'with': 3.0, 'this': 2.0, 'of': 1.0, 'shower': 1.0, 'shape': 1.0, 'first': 1.0, 'beginning': 1.0, 'just': 2.0, 'new': 1.0, 'would': 1.0, 'was': 1.0, 'similar': 1.0, 'and': 7.0, 'play': 2.0, 'in': 2.0, 'for': 3.0, 'entertainment': 1.0, 'bought': 2.0, 'as': 1.0, 'to': 1.0, 'our': 2.0, 'it': 2.0, 'she': 3.0, 'other': 1.0, 'oldest': 1.0, 'parents': 1.0, 'sit': 2.0, 'up': 2.0, 'child': 1.0, 'out': 1.0, 'times': 1.0, 'when': 1.0, 'gave': 1.0, 'her': 1.0, 'crib': 1.0, 'we': 4.0, 'a': 3.0, 'also': 1.0, 'hour': 1.0, 'or': 1.0, 'mommy': 1.0, 'more': 1.0, 'putting': 1.0, 'clear': 1.0, 'sea': 1.0, 'received': 1.0, 'plastic': 1.0, 'girls': 1.0, 'toy': 2.0, 'creatures': 1.0, 'time': 1.0, 'the': 6.0, 'believe': 1.0, 'bowl': 1.0, 'make': 1.0, 'on': 1.0, 'loved': 1.0}
Word element => {'durable': 1.0, 'educational': 1.0, 'worth': 1.0, 's': 1.0, 'of': 1.0, 'out': 1.0, 'take': 1.0, 'learn': 1.0, 'excuse': 1.0, 'uses': 1.0, 'buy': 1.0, 'old': 1.0, 'the': 4.0, 'my': 1.0, 'she': 5.0, 'it': 6.0, 'this': 1.0, 'saw': 1.0, 'her': 1.0, 'cute': 2.0, 'after': 1.0, 'so': 2.0, 'best': 1.0, 'd': 1.0, 'was': 3.0, 'to': 2.0, 'had': 2.0, 'now': 1.0, 'toy': 1.0, 'quiet': 1.0, 'about': 1.0, 'daughter': 1.0, 'when': 1.0, 'though': 1.0, 'and': 4.0, 'months': 1.0, 'bought': 1.0, 'for': 1.0, 'chew': 1.0, 'little': 1.0, 'i': 5.0, 'clam': 1.0, 'heh': 1.0, 'loves': 1.0, 'that': 1.0, 'they': 1.0, 'before': 1.0, 'noise': 1.0, 'money': 1.0, 'pregnant': 1.0, 'can': 1.0, 'bowl': 1.0, 'on': 1.0, '3': 1.0, 'make': 1.0, 'put': 1.0, 'them': 2.0, 'in': 1.0}
Word element => {'products': 1.0, 'lamaze': 1.0, 'like': 1.0, 'crinkly': 1.0, 'enough': 1.0, 'crab': 1.0, 'i': 3.0, 'entertained': 1.0, 'for': 1.0, 'this': 1.0, 'with': 1.0, 'very': 1.0, 'don': 1.0, 't': 1.0, 's': 1.0, 'we': 1.0, 'a': 1.0, 'really': 2.0, 'fishbowl': 1.0, 'toys': 2.0, 'present': 1.0, 'sure': 1.0, 'far': 2.0, 'think': 1.0, 'put': 1.0, 'received': 1.0, '6': 1.0, 'the': 3.0, 'playing': 1.0, 'loves': 2.0, 'that': 1.0, 'she': 4.0, 'it': 1.0, 'month': 1.0, 'as': 1.0, 'our': 1.0, 'to': 1.0, 'in': 1.0, 'individual': 1.0, 've': 1.0, 'them': 1.0, 'old': 2.0, 'noticed': 1.0, 'but': 1.0, 'quot': 2.0, 'so': 3.0, 'kept': 1.0, 'likes': 1.0, 'has': 1.0, 'her': 1.0}
Word element => {'crab': 1.0, 'with': 1.0, '1': 1.0, 'hit': 1.0, 'out': 2.0, 'year': 1.0, 'kick': 1.0, 'enjoy': 1.0, 's': 1.0, 'a': 2.0, 'get': 1.0, 'play': 1.0, 'and': 5.0, 'think': 1.0, 'on': 1.0, 'sounds': 1.0, 'child': 1.0, 'anyway': 1.0, 'over': 2.0, 'love': 1.0, 'for': 3.0, 'of': 1.0, 'guaranteed': 1.0, 'toys': 1.0, 'really': 1.0, 'faces': 1.0, 'my': 2.0, 'i': 2.0, 'clear': 1.0, 'be': 1.0, 'putting': 1.0, 'one': 1.0, 'bought': 1.0, 'so': 1.0, 'friends': 1.0, 'the': 6.0, 'them': 3.0, 'baby': 1.0, 'creatures': 1.0, 'well': 1.0, 'toy': 1.0, 'loves': 1.0, 'babies': 2.0, 'it': 1.0, 'fascinated': 1.0, 'any': 1.0, 'to': 2.0, 'as': 1.0, 'different': 1.0, 'each': 1.0, 'old': 1.0, 'makes': 1.0, 'they': 1.0, 'looking': 1.0, 'plastic': 1.0, 'at': 1.0, 'through': 1.0, 'taking': 1.0, 'back': 1.0, 'in': 1.0, '2': 2.0, 'quot': 2.0, 'bound': 1.0, 'most': 1.0, 'this': 1.0, 'kids': 1.0, 'by': 1.0, 'still': 1.0, 'seem': 1.0, 'ocean': 1.0}
Word element => {'offers': 1.0, 'textures': 1.0, 'fabric': 1.0, 'different': 1.0, 'like': 1.0, 'teething': 1.0, 'an': 1.0, 'a': 1.0, 'feel': 1.0, 'great': 1.0, 'the': 5.0, 'it': 1.0, 'this': 3.0, 'thought': 1.0, 'immediately': 1.0, 'and': 2.0, 'his': 1.0, 'saw': 1.0, 'be': 1.0, 'that': 2.0, 'case': 1.0, 'toy': 4.0, 'about': 1.0, 'to': 1.0, 'was': 2.0, 'now': 1.0, 'not': 2.0, 'would': 1.0, 'lamaze': 1.0, 'grandmother': 1.0, 'given': 1.0, 'expensive': 1.0, 'for': 1.0, 'variety': 1.0, 'by': 1.0, 'when': 1.0, 'old': 1.0, 'my': 2.0, 'son': 2.0, 'of': 2.0, 'chews': 1.0, 'he': 3.0, 'received': 1.0, 'much': 1.0, 'fish': 1.0, 'other': 1.0, 'i': 3.0, '4': 1.0, 'color': 1.0, 'months': 2.0, 'bowl': 1.0, 'on': 1.0, 'is': 2.0, 'crab': 1.0, 'hours': 1.0, 'but': 1.0, 'than': 1.0, '9': 1.0, 'else': 1.0}
Word element => {'s': 1.0, 'not': 1.0, 'but': 1.0, 'toy': 1.0, 'developmental': 1.0, 'ignored': 1.0, 'sure': 1.0, 'road': 1.0, '5mos': 1.0, '1': 1.0, 'of': 1.0, 'was': 2.0, 'm': 1.0, 'when': 1.0, 'beyond': 1.0, 'i': 2.0, 'son': 1.0, 'for': 1.0, 'worth': 1.0, 'cute': 1.0, 'creatures': 1.0, 'loved': 1.0, '6mos': 1.0, 'my': 1.0, 'sea': 1.0, 'make': 1.0, 'bought': 1.0, 'path': 1.0, 'he': 3.0, 'this': 1.0, 'it': 5.0, 'the': 2.0, 'great': 1.0, 'his': 1.0, 'down': 1.0, 'what': 1.0, 'however': 1.0, 'totally': 1.0, 'little': 1.0, 'teethers': 1.0, 'each': 1.0}
Word element => {'has': 1.0, 'easy': 1.0, 'assembly': 1.0, 'was': 1.0, 'recommend': 1.0, 'would': 1.0, 'bad': 1.0, 'off': 1.0, 'come': 1.0, 'times': 1.0, 'causing': 1.0, 'farmer': 1.0, 'turned': 1.0, 'in': 1.0, 'lock': 1.0, 'not': 1.0, 'does': 1.0, 'negative': 1.0, 'only': 1.0, 'little': 2.0, 'toys': 1.0, 'with': 1.0, 'fill': 1.0, 'it': 7.0, 'addition': 1.0, 'he': 3.0, 'this': 2.0, 'durable': 1.0, 'hitch': 1.0, 'brother': 1.0, 'love': 1.0, 'for': 3.0, 'one': 1.0, 'old': 1.0, 'two': 1.0, 'at': 2.0, 'his': 1.0, 'year': 1.0, 'chose': 1.0, 'been': 1.0, 'that': 1.0, 'loves': 3.0, 'thrilled': 1.0, 'safest': 1.0, 'friends': 1.0, 'be': 3.0, 'still': 1.0, 'visiting': 1.0, 'son': 2.0, 'trailer': 4.0, 'is': 3.0, 'around': 1.0, 'yet': 1.0, 'or': 2.0, 'tractor': 2.0, 'a': 2.0, 'we': 3.0, 'family': 1.0, 'gift': 1.0, 'several': 1.0, 'others': 1.0, 'pedal': 1.0, 'will': 1.0, 'great': 1.0, 'seemed': 1.0, 'grow': 1.0, 'our': 3.0, 'to': 5.0, 'place': 1.0, 'the': 8.0, 'cannot': 1.0, 'push': 1.0, 'pushed': 1.0, 'looked': 1.0, 'while': 1.0, 'can': 1.0, 'but': 3.0, 'most': 1.0, 'sitting': 1.0, 'on': 1.0, 'tall': 1.0, 'too': 1.0, 'and': 7.0, 'soon': 1.0}
Word element => {'hills': 1.0, 'be': 1.0, 'so': 1.0, 'brake': 1.0, 'there': 1.0, 'mind': 1.0, 'in': 1.0, 'need': 1.0, 'no': 1.0, 'thing': 1.0, 'only': 1.0, 'anyway': 1.0, 'off': 1.0, 'stayed': 1.0, 'if': 1.0, 'even': 1.0, 'would': 2.0, 'turned': 1.0, 'to': 3.0, 'now': 2.0, 'was': 1.0, 'it': 5.0, 'this': 2.0, 'he': 4.0, 'break': 1.0, 'we': 1.0, 'old': 2.0, 'i': 2.0, 'bought': 1.0, 'keep': 1.0, 'handed': 1.0, 'my': 3.0, 'rough': 1.0, 'riding': 1.0, '2': 1.0, 'careful': 1.0, 'the': 3.0, 'is': 4.0, 'longer': 1.0, 'down': 2.0, '8': 2.0, 'younger': 1.0, 'have': 3.0, 'on': 1.0, 'think': 1.0, '3': 1.0, 'for': 1.0, 'both': 1.0, 'years': 2.0, 'after': 2.0, '5': 1.0, 'of': 2.0, 'just': 1.0, 'and': 3.0, 'tough': 1.0, 'starting': 1.0, 'lasted': 1.0, 'toy': 1.0, 'has': 1.0, 'that': 1.0, 'been': 1.0, 'an': 1.0, 'year': 1.0, 'awesome': 1.0, 'also': 1.0, 'had': 1.0, 'purchased': 1.0, 'loved': 1.0, 'son': 2.0, 'trailer': 1.0, 'you': 1.0, 'outgrown': 1.0, 'when': 2.0, 'boys': 1.0, 'them': 1.0}
Word element => {'cost': 1.0, 'worth': 1.0, 'busy': 1.0, 'every': 1.0, 'sturdy': 1.0, '3': 1.0, 'toy': 1.0, 'age': 1.0, 'toddlers': 1.0, 'pedals': 1.0, 'old': 1.0, 'accompany': 1.0, 'to': 3.0, 'are': 2.0, 'great': 1.0, 'the': 4.0, 'tractor': 1.0, 'our': 1.0, 'they': 1.0, 'durable': 1.0, 'it': 3.0, 'this': 1.0, 'working': 1.0, 'enough': 1.0, 'trailer': 2.0, 'grandsons': 1.0, 'bought': 1.0, 'penny': 1.0, 'those': 2.0, 'we': 1.0, 'very': 1.0, 'best': 1.0, 'big': 1.0, 'into': 1.0, 'is': 2.0, 'farm': 2.0, 'stuff': 1.0, 'load': 1.0, 'reach': 1.0, 'and': 5.0, 'up': 2.0, 'for': 2.0, 'love': 1.0, 'pretend': 1.0, 'preschoolers': 1.0, 'on': 1.0}
Word element => {'time': 1.0, 'periods': 1.0, 'long': 1.0, 'yard': 1.0, 'treasures': 1.0, 'into': 1.0, 'that': 1.0, 'made': 1.0, 'purchasing': 1.0, 'separately': 1.0, 'despite': 1.0, 'bought': 1.0, 'farms': 1.0, 'pedal': 1.0, 'able': 1.0, 'this': 5.0, 'old': 1.0, 'i': 1.0, 'a': 1.0, 'we': 1.0, 'other': 1.0, 'specifically': 1.0, 'very': 2.0, 'trailer': 2.0, 'son': 3.0, 'manuever': 1.0, 'is': 4.0, 'loads': 1.0, 'sold': 1.0, 'and': 5.0, 'but': 1.0, '2': 1.0, 'the': 4.0, 'all': 2.0, 'to': 2.0, 'our': 1.0, 'tractor': 4.0, 'yellow': 1.0, 'recommend': 1.0, 'for': 3.0, 'years': 1.0, 'deserted': 1.0, 'highly': 1.0, 'of': 4.0, '3': 1.0, 'year': 1.0, 'sturdy': 1.0, 'impossible': 1.0, 'tip': 1.0, 'nearly': 1.0, 'over': 1.0, 'vehicle': 1.0, 'my': 2.0, 'riding': 1.0, 'kinds': 1.0, 'well': 1.0, 'half': 1.0, 'recommended': 1.0, 'has': 1.0, 'toys': 1.0, 'age': 1.0, 'in': 1.0, 'he': 1.0, '6': 1.0, 'favor': 1.0}
Word element => {'recommend': 1.0, 'highly': 1.0, 'wear': 1.0, 'signs': 1.0, 'no': 1.0, 'show': 1.0, 'for': 2.0, 'loved': 1.0, 'and': 3.0, 'home': 1.0, 'playmate': 1.0, 'at': 1.0, 'c': 1.0, 'stepped': 1.0, 'them': 3.0, 'unlike': 1.0, 'b': 1.0, 's': 1.0, 'a': 1.0, 'we': 1.0, 'other': 1.0, 'bought': 1.0, 'the': 1.0, 'our': 1.0, 'very': 1.0, 'had': 1.0, 'turned': 1.0, 'thrown': 1.0, 'seen': 1.0, 'when': 1.0, 'he': 2.0, 'liked': 1.0, 'durable': 1.0, 'of': 2.0, 'there': 1.0, 'is': 1.0, 'some': 2.0, 'these': 1.0, 'learning': 1.0, 'value': 1.0, 'they': 2.0, 'are': 1.0, 'sale': 1.0, 'have': 1.0, 'been': 1.0, 'on': 1.0, 'two': 1.0, 'i': 1.0, 'etc': 1.0, 'cars': 1.0, 'son': 1.0, 'rolled': 1.0, 'still': 1.0}
Word element => {'bag': 1.0, 'for': 1.0, 'which': 1.0, 'other': 1.0, 'each': 1.0, 'nest': 1.0, 'toy': 2.0, 'to': 1.0, 'into': 1.0, 'loves': 2.0, 'recommended': 1.0, 'pushing': 1.0, 'friend': 1.0, 'a': 2.0, 'them': 1.0, 'so': 1.0, 'floor': 1.0, 'stacking': 1.0, 'cups': 1.0, 'son': 2.0, 'my': 2.0, 'diaper': 1.0, 'great': 1.0, 'nicely': 1.0, 'the': 2.0, 'me': 1.0, 'and': 1.0, 'this': 1.0, 'it': 2.0, 'he': 1.0, 'around': 1.0, 'enjoys': 1.0, 'makes': 1.0, 'they': 1.0}
Word element => {'wheels': 1.0, 'future': 1.0, 'the': 2.0, 'oh': 1.0, 'gift': 1.0, 'this': 1.0, 'not': 1.0, 'give': 1.0, 'do': 1.0, 'things': 1.0, 'down': 2.0, 'his': 1.0, 'them': 2.0, 'cameron': 1.0, 'enjoys': 1.0, 'my': 1.0, 'faces': 1.0, 'great': 4.0, 'roll': 1.0, 'such': 1.0, 'these': 1.0, 'as': 2.0, 'loves': 1.0, 'that': 2.0, 'stacking': 2.0, 'ladder': 1.0, 'quot': 2.0, 'they': 1.0, 'toy': 1.0, 'has': 4.0, 'son': 1.0, 'cars': 1.0, 'he': 1.0, 'police': 1.0, 'wasted': 1.0, 'it': 1.0, 'in': 1.0, 'fire': 1.0, 'each': 1.0, 'would': 1.0, 'truck': 1.0, 's': 1.0, 'a': 4.0, 'bar': 1.0, 'too': 1.0, 'and': 5.0, 'slapping': 1.0, 'clicks': 1.0, 'little': 4.0, 'brightly': 1.0, 'up': 1.0, 'car': 1.0, 'spinning': 1.0, 'just': 1.0, 'light': 1.0, 'so': 1.0, 'think': 1.0, 'on': 1.0, 'i': 2.0, 'colored': 1.0}
Word element => {'child': 1.0, 'trucks': 1.0, 'first': 1.0, 'recommend': 1.0, 'highly': 1.0, 'not': 1.0, 'loves': 1.0, 'with': 1.0, 'only': 1.0, 'helps': 1.0, 'colors': 1.0, 'price': 1.0, 'are': 4.0, 'my': 1.0, 'coordination': 1.0, 'one': 1.0, 'for': 2.0, 'son': 1.0, 'as': 2.0, 'he': 1.0, 'received': 1.0, 'each': 1.0, 'individual': 1.0, 'hand': 1.0, 'which': 1.0, 'they': 3.0, 'has': 1.0, 'these': 2.0, 'the': 2.0, 'nice': 1.0, 'great': 1.0, 'old': 1.0, 'buy': 1.0, 'i': 1.0, 'them': 2.0, 'a': 3.0, 'bright': 1.0, 'stackable': 1.0, 'eye': 1.0, 'although': 1.0, 'birthday': 1.0, 'gift': 1.0, 'but': 1.0, 'car': 1.0, 'moveable': 1.0, 'small': 2.0, 'got': 1.0, 'year': 1.0, 'features': 2.0, 'his': 1.0, 'attention': 1.0, 'also': 1.0}
Word element => {'grandmom': 1.0, 'gee': 2.0, 'first': 2.0, 'this': 2.0, 'christmas': 1.0, 'it': 1.0, 'he': 1.0, '6': 1.0, 'will': 2.0, 'i': 3.0, 'old': 1.0, 'months': 1.0, 'waiting': 1.0, 'you': 1.0, 'for': 4.0, 'purchased': 1.0, 'toy': 1.0, 'baby': 1.0, 'wait': 1.0, 'can': 1.0, 'great': 2.0, 'the': 4.0, 'grandson': 1.0, 'be': 2.0, 'him': 1.0, 'more': 1.0, 'is': 2.0, 'in': 1.0, 'my': 1.0, 'family': 2.0, '18': 1.0, 'play': 1.0, 'soon': 1.0, 'and': 1.0, 'to': 1.0, 'our': 1.0, 'all': 1.0, 'years': 1.0, 'fun': 1.0, 'ordering': 1.0, 's': 2.0, 't': 1.0, 'a': 1.0, 'with': 2.0, 'convenient': 1.0, 'lot': 1.0, 'thank': 1.0, 'shopping': 1.0, 'aj': 1.0}
Word element => {'also': 1.0, 'these': 1.0, 'parts': 1.0, 'their': 1.0, 'that': 1.0, 'few': 1.0, 'several': 1.0, 'this': 1.0, 'it': 2.0, 'come': 1.0, 'cars': 1.0, 'to': 1.0, 'love': 1.0, 'for': 1.0, 'one': 2.0, 'well': 1.0, 've': 1.0, 'set': 1.0, 'of': 3.0, 'i': 1.0, '4': 1.0, 'over': 1.0, 'playing': 1.0, 'the': 2.0, 'nesting': 1.0, 'owned': 1.0, 'my': 1.0, 'with': 3.0, 'stacking': 1.0, 'stores': 1.0, 'granddaughters': 1.0, 'numbers': 1.0, 'years': 1.0, 'moving': 1.0, 'mine': 1.0, 'lots': 1.0, 'colors': 1.0, 'is': 2.0, 'favorite': 1.0, 'toys': 1.0, 'when': 1.0, 'they': 2.0, 'learned': 1.0, 'play': 2.0, 'and': 2.0, 'definitely': 1.0, 'value': 1.0, 'very': 1.0, 'have': 1.0}
Word element => {'little': 1.0, 'for': 1.0, 'size': 1.0, 'perfect': 1.0, 'is': 1.0, 'rattles': 1.0, 'car': 1.0, 'smallest': 1.0, 'hands': 1.0, 'the': 2.0, 'nest': 1.0, 'take': 1.0, 'don': 1.0, 'up': 2.0, 'travel': 1.0, 'terrific': 1.0, 'make': 1.0, 'since': 1.0, 'space': 1.0, 'lot': 1.0, 'with': 3.0, 'first': 1.0, 'durable': 1.0, 'traveled': 1.0, 'born': 1.0, 'was': 2.0, 'gift': 1.0, 'he': 2.0, 'received': 1.0, 'toys': 1.0, 'simple': 1.0, 'to': 1.0, 'as': 2.0, 'still': 1.0, 'cars': 1.0, 'son': 3.0, 'year': 1.0, 'require': 1.0, 't': 1.0, 'we': 2.0, 'a': 4.0, 'not': 1.0, 'easily': 1.0, 'when': 2.0, 'interest': 1.0, 'these': 3.0, 'hit': 1.0, 'are': 3.0, 'taking': 1.0, 'real': 1.0, 'my': 3.0, 'old': 2.0, 'in': 1.0, 've': 1.0, 'started': 1.0, 'them': 2.0, 'clean': 1.0, 'about': 1.0, 'seven': 1.0, 'batteries': 1.0, 'huge': 1.0, 'one': 1.0, 'months': 1.0, 'and': 5.0, 'much': 1.0, 'pack': 1.0, 'do': 1.0, 'day': 1.0, 'plays': 1.0, 'every': 1.0, 'they': 3.0, 'easy': 1.0}
Word element => {'use': 1.0, 'not': 1.0, 'best': 1.0, 'colored': 1.0, 'are': 1.0, 'them': 1.0, 'all': 1.0, 'brightly': 1.0, 'have': 1.0, 'girl': 1.0, 'kids': 1.0, 'my': 1.0, 'of': 2.0, 'work': 1.0, 'toy': 1.0, 'played': 1.0, 'store': 1.0, 'do': 1.0, 'away': 1.0, 'and': 4.0, 'each': 1.0, 'these': 1.0, 'great': 1.0, 'the': 1.0, 'a': 2.0, 'packing': 1.0, 'on': 1.0, 'is': 1.0, 'really': 1.0, 'batteries': 1.0, 'wheels': 1.0, 'boy': 1.0, 'has': 1.0, 'they': 2.0, 'putting': 1.0, 'with': 1.0, 'this': 1.0, 'both': 1.0, 'trips': 1.0, 'car': 1.0, 'special': 1.0, 'feature': 1.0, 'easily': 1.0, 'for': 1.0}
Word element => {'not': 1.0, 'will': 1.0, 'toy': 1.0, 'this': 1.0, 'your': 1.0, 'for': 1.0, 'get': 1.0, 'should': 1.0, 'sit': 1.0, 'parents': 1.0, 'dust': 1.0, 'over': 1.0, '22': 1.0, 'with': 2.0, 'christmas': 1.0, 'now': 1.0, 'all': 1.0, 'to': 1.0, 'is': 2.0, 'along': 1.0, 'floor': 1.0, 'baby': 1.0, 'them': 3.0, 'run': 1.0, 'running': 1.0, 'my': 1.0, 'began': 1.0, 'these': 3.0, 't': 1.0, 'last': 1.0, 'play': 1.0, 'and': 6.0, 'break': 1.0, 'collect': 1.0, '11': 1.0, 'it': 1.0, 'month': 1.0, 'old': 1.0, 'i': 1.0, 'taught': 1.0, 'he': 3.0, 'received': 1.0, 'instantly': 1.0, 'an': 1.0, 'have': 1.0, 'him': 1.0, 'his': 1.0, 'colors': 1.0, 'using': 1.0, 'months': 1.0, 'one': 2.0, 'still': 1.0, 'that': 1.0, 'loves': 1.0, 'playing': 1.0, 'the': 2.0, 'scooter': 1.0, 'by': 1.0, 'electric': 1.0, 'even': 1.0, 'got': 1.0, 'didn': 1.0}
Word element => {'money': 1.0, 'worth': 1.0, 'well': 1.0, 'up': 1.0, 'hold': 1.0, 'diswasher': 1.0, 'son': 1.0, 'throw': 1.0, 'loves': 1.0, 'to': 3.0, 'month': 1.0, '14': 1.0, 'stack': 1.0, 'me': 1.0, 'and': 3.0, 'my': 1.0, 'are': 2.0, 'great': 1.0, 'the': 2.0, 'these': 1.0, 'play': 1.0, 'cars': 1.0, 'they': 3.0, 'little': 1.0, 'with': 1.0, 'durable': 1.0, 'in': 1.0, 'easy': 1.0, 'old': 1.0, 'i': 1.0, 'clean': 1.0, 'them': 1.0}
Word element => {'smooth': 1.0, 'as': 1.0, 'on': 1.0, 'are': 1.0, 'chewing': 1.0, 'him': 1.0, 'worry': 1.0, 'about': 1.0, 'don': 1.0, 'in': 1.0, 'at': 1.0, 'two': 1.0, 'one': 1.0, 'all': 1.0, 'pack': 1.0, 'i': 1.0, 'old': 1.0, 'to': 1.0, 'there': 1.0, 'always': 1.0, 'toys': 2.0, 'surfaces': 1.0, 'these': 1.0, 't': 1.0, 'diaper': 1.0, 'the': 1.0, 'great': 1.0, 'month': 1.0, 'bag': 1.0, 'or': 1.0, 'loves': 1.0, 'we': 1.0, 'play': 1.0, 'our': 1.0, '7': 1.0, 'only': 1.0, 'with': 1.0, 'them': 1.0, 'and': 1.0}
Word element => {'are': 1.0, 'but': 1.0, 'much': 1.0, 'don': 1.0, 'months': 2.0, 'played': 1.0, '6': 1.0, 'with': 1.0, 'from': 1.0, 'son': 1.0, 'to': 1.0, 'now': 1.0, 'is': 1.0, 'old': 1.0, 'cute': 1.0, 'still': 1.0, 'they': 2.0, 'has': 1.0, 'do': 1.0, 'and': 1.0, 'my': 1.0, 't': 1.0, 'these': 1.0, 'the': 1.0, 'shake': 1.0, 'small': 1.0, 'babies': 1.0, 'likes': 1.0, 'them': 1.0, 'occasionally': 1.0, '18': 1.0, 'car': 1.0, 'nice': 1.0, 'for': 1.0}
Word element => {'highly': 1.0, 'each': 1.0, 'moving': 1.0, 'other': 1.0, 'toy': 1.0, 'well': 1.0, 'move': 1.0, 'wheels': 1.0, 'out': 1.0, 'figuring': 1.0, '8': 1.0, 'is': 2.0, 'after': 1.0, 'so': 1.0, 'this': 3.0, 'knock': 1.0, 'with': 1.0, 'it': 1.0, 'noise': 1.0, 'air': 1.0, 'fresh': 1.0, 'son': 1.0, 'features': 1.0, 'require': 1.0, 'recommend': 1.0, 'was': 2.0, 'as': 2.0, 'to': 2.0, 'now': 1.0, 'much': 1.0, 'being': 1.0, 'i': 1.0, 'inundated': 1.0, 'loves': 3.0, 'that': 3.0, 'and': 3.0, 'of': 2.0, 'he': 5.0, '6': 1.0, 'toys': 1.0, 'batteries': 1.0, 'underneath': 1.0, 'vehicle': 2.0, 'my': 1.0, 'top': 1.0, 'some': 1.0, 'these': 1.0, 'the': 3.0, 'vehicles': 1.0, 'breath': 1.0, 'a': 1.0, 'we': 3.0, 'got': 1.0, 'when': 1.0, 'months': 2.0, 'make': 1.0, 'on': 2.0, 'over': 1.0, 'old': 2.0, 'stack': 1.0, 'them': 2.0, 'surprise': 1.0, 'nest': 1.0, 'find': 1.0}
Word element => {'recommended': 1.0, 'together': 1.0, 'engineering': 1.0, 'batteries': 1.0, 'need': 1.0, 'put': 1.0, 'an': 1.0, 'doesn': 1.0, 'that': 1.0, 'highly': 1.0, 'toy': 1.0, 'a': 1.0, 'find': 1.0, 'to': 2.0, 'is': 1.0, 'vrroomm': 1.0, 'it': 1.0, 'he': 1.0, 'for': 1.0, 'they': 1.0, 'cars': 1.0, '1': 2.0, 'and': 3.0, 'my': 1.0, 'degree': 1.0, 't': 1.0, 'great': 1.0, '2': 1.0, 'these': 1.0, 'the': 1.0, 'bought': 1.0, 'old': 2.0, 'i': 1.0, 'or': 1.0, 'loves': 1.0, 'them': 3.0, 'so': 1.0, 'hide': 1.0, '5': 1.0, 'require': 1.0, 'year': 2.0, 'brother': 1.0, 'does': 1.0, 'his': 1.0, 'stack': 1.0, 'both': 1.0}
Word element => {'aren': 1.0, 'first': 1.0, 'perfect': 2.0, 'tower': 1.0, 'of': 1.0, 'make': 1.0, 'top': 1.0, 'stack': 1.0, 'size': 1.0, 'can': 1.0, 'or': 1.0, 'find': 1.0, 'underneath': 1.0, 'too': 1.0, 'daughter': 2.0, 'trucks': 3.0, 'which': 1.0, 'old': 2.0, 'a': 2.0, '15': 1.0, 'and': 2.0, 'look': 1.0, 'to': 3.0, 'mo': 2.0, 'our': 2.0, 't': 1.0, 'the': 3.0, 'these': 1.0, 'next': 1.0, 'they': 3.0, 'bought': 1.0, 'other': 1.0, 'we': 2.0, 'on': 1.0, '4': 1.0, 'big': 1.0, 'son': 1.0, 'is': 1.0, 'one': 2.0, 'for': 2.0, 'love': 1.0, 'nesting': 1.0, 'them': 1.0, 'are': 1.0, 'fun': 1.0}
Word element => {'child': 1.0, 'for': 1.0, 'highly': 1.0, 'much': 1.0, 'while': 1.0, 'get': 1.0, 'so': 1.0, 'in': 1.0, 'not': 1.0, 'small': 1.0, 'have': 1.0, 'i': 2.0, 'many': 1.0, 'your': 1.0, 'on': 1.0, 'along': 1.0, 'being': 1.0, 'lots': 1.0, 'used': 1.0, 'taken': 1.0, 'set': 1.0, 'of': 2.0, 'months': 1.0, 'has': 1.0, 'toy': 3.0, 'trucks': 1.0, 'recommend': 1.0, 'store': 1.0, 'was': 1.0, 'look': 1.0, 'trips': 1.0, 'at': 1.0, 'able': 1.0, '6': 1.0, 'he': 1.0, 'this': 3.0, 'the': 2.0, 'can': 1.0, '2': 1.0, 'great': 1.0, 'my': 2.0, 'any': 1.0, 'to': 1.0, 'as': 3.0, 'with': 2.0, 'stacking': 1.0, 'here': 1.0, 'be': 1.0, 'we': 1.0, 'a': 2.0, 'gift': 1.0, 'son': 2.0, 'still': 2.0, 'play': 2.0, 'and': 3.0, 'they': 2.0, 'been': 1.0, 'next': 1.0, 'are': 1.0, 'overall': 1.0, 'played': 1.0, 'about': 1.0, 'today': 1.0, 'will': 1.0, 'it': 3.0, 'month': 1.0, 'durability': 1.0, 'truck': 1.0, 'after': 1.0, 'is': 1.0, 'good': 1.0, 'you': 1.0, 'seen': 1.0, 'when': 1.0, 'baby': 1.0, 'them': 1.0, 'got': 2.0, 'even': 1.0}
Word element => {'mostly': 1.0, 'vehicle': 1.0, 'for': 1.0, 'one': 1.0, 'than': 1.0, 'a': 1.0, 'since': 1.0, 'to': 2.0, 'store': 1.0, 'easy': 2.0, 'there': 1.0, 'plus': 1.0, 'trip': 1.0, 'because': 1.0, 'can': 1.0, 'cars': 2.0, 'more': 1.0, 'the': 1.0, 'bought': 1.0, 'i': 3.0, 'found': 1.0, 'what': 1.0, 'were': 2.0, 'that': 1.0, 'pack': 1.0, 'have': 1.0, 'many': 1.0, 'is': 2.0, 'are': 1.0, 'actually': 1.0, 'they': 3.0, 'places': 1.0, 'use': 1.0, 'then': 1.0, 'in': 1.0}
Word element => {'take': 1.0, 'toys': 1.0, 'fun': 1.0, 'wonderful': 1.0, 'are': 2.0, 'make': 1.0, 'on': 1.0, 'sounds': 1.0, 'they': 3.0, 'makes': 1.0, 'disappear': 1.0, 'watch': 1.0, 'you': 2.0, 'them': 4.0, 'to': 3.0, 'compact': 1.0, 'she': 3.0, 'vehicles': 1.0, 'with': 2.0, 'great': 1.0, 'the': 1.0, 'these': 1.0, 'loves': 2.0, 'cars': 1.0, 'other': 2.0, 'likes': 1.0, 'daughter': 1.0, 'my': 1.0, 'as': 2.0, 'and': 3.0, 'trips': 1.0, 'even': 1.0, 'stack': 2.0, 'inside': 1.0, 'each': 2.0, 'atop': 1.0, 'of': 1.0, 'then': 1.0, 'plays': 1.0}
Word element => {'purchase': 1.0, 'can': 1.0, 'you': 1.0, 'see': 1.0, 'to': 1.0, 'up': 1.0, 'always': 1.0, 'and': 1.0, 'group': 1.0, 'who': 1.0, 'boys': 1.0, 'at': 1.0, 'fun': 1.0, 'stacking': 1.0, 'is': 2.0, 'son': 1.0, 'about': 1.0, 'don': 1.0, 'baby': 1.0, 'toy': 2.0, 'loves': 1.0, 'babies': 1.0, 'all': 2.0, 'have': 2.0, 'my': 1.0, 't': 2.0, 'more': 1.0, 'the': 3.0, 'our': 1.0, 'that': 1.0, 'stackable': 1.0, 'wrong': 1.0, 'go': 1.0, 'than': 1.0, 'rings': 1.0, 'much': 1.0, 'though': 1.0, 'with': 1.0, 'come': 1.0, 'this': 2.0, 'it': 3.0, 'he': 1.0, 'what': 1.0, 'even': 1.0, 'does': 1.0, 'one': 1.0, 'too': 1.0}
Word element => {'pool': 1.0, 'tub': 1.0, 'toys': 1.0, 'other': 1.0, 'with': 1.0, 'ways': 1.0, 'different': 1.0, 'in': 2.0, 'use': 1.0, 'will': 1.0, 'me': 1.0, 'given': 1.0, 'if': 1.0, 'certainly': 1.0, 'buy': 1.0, 'would': 1.0, 'don': 1.0, 'used': 1.0, 'were': 2.0, 'because': 1.0, 'fairly': 1.0, 'are': 2.0, 'inside': 1.0, 'now': 1.0, 'as': 1.0, 'outside': 1.0, 'to': 2.0, 'intended': 1.0, 'doesn': 1.0, 'was': 1.0, 'look': 1.0, 'until': 1.0, 'worth': 1.0, 'or': 3.0, 'grows': 1.0, 'put': 1.0, 'think': 3.0, 'purpose': 1.0, 'interested': 1.0, 'hasn': 2.0, 'really': 3.0, 'take': 1.0, 'people': 1.0, 'even': 1.0, 'wouldn': 1.0, 'got': 1.0, 't': 5.0, 'the': 6.0, 'this': 1.0, 'toy': 1.0, 'loves': 1.0, 'been': 1.0, 'very': 2.0, 'little': 2.0, 'lets': 1.0, 'she': 7.0, 'my': 2.0, 'recently': 1.0, 'they': 4.0, 'cheap': 1.0, 'for': 2.0, 'daughter': 2.0, 'again': 1.0, 'when': 1.0, 'i': 6.0, 'play': 1.0, 'and': 2.0, 'at': 1.0, 'them': 7.0, 'through': 1.0, 'back': 1.0, 'top': 1.0, 'durable': 1.0, 'objects': 1.0, 'nest': 1.0, 'money': 1.0, 'but': 3.0, 'hide': 1.0, 'cars': 2.0, 'under': 1.0, 'extremely': 1.0, 'seek': 1.0, 'stack': 1.0, 'much': 1.0}
Word element => {'day': 1.0, 'flipping': 1.0, 'for': 1.0, 'minutes': 1.0, 'but': 1.0, 'quot': 2.0, 'on': 2.0, 'sunroof': 2.0, 'much': 2.0, 'put': 1.0, 'siren': 1.0, 'little': 1.0, 'figure': 1.0, 'there': 1.0, 'aspect': 1.0, 'my': 2.0, 'nesting': 1.0, 's': 1.0, 'go': 1.0, 'a': 2.0, 'point': 2.0, 'old': 1.0, 'love': 1.0, 'he': 3.0, 'this': 2.0, 'and': 5.0, 'too': 1.0, 'say': 1.0, 'really': 1.0, 'every': 1.0, 'loves': 1.0, 'that': 2.0, 'into': 1.0, 'son': 2.0, 'gets': 1.0, 't': 2.0, 'along': 1.0, 'don': 2.0, 'favorite': 1.0, 'up': 1.0, 'beep': 3.0, 'just': 1.0, 'okay': 1.0, 'understands': 1.0, 'of': 1.0, 'the': 5.0, 'once': 1.0, 'these': 3.0, 'toy': 1.0, '11': 1.0, 'sit': 1.0, 'roll': 1.0, 'when': 2.0, 'ten': 1.0, 'ladder': 1.0, 'is': 1.0, 'at': 2.0, 'space': 1.0, 'back': 1.0, 'forth': 1.0, 'are': 1.0, 'month': 1.0, 'super': 1.0, 'each': 1.0, 'they': 5.0, 'sturdy': 1.0, 'have': 1.0, 'taken': 1.0, 'quite': 1.0, 'beating': 1.0, 'tops': 1.0, 'grow': 1.0, 'our': 1.0, 'coffee': 2.0, 'table': 2.0, 'like': 1.0, 're': 2.0, 'in': 1.0, 'better': 2.0, 'shape': 1.0, 'than': 1.0, 'well': 1.0, 'i': 2.0, 'nest': 1.0, 'together': 1.0, 'can': 2.0, 'so': 1.0, 'we': 1.0, 'take': 1.0, 'away': 1.0, 'also': 1.0, 'cars': 2.0, 'them': 1.0, 'with': 1.0, 'part': 1.0, 'stacking': 1.0, 'great': 1.0, 'played': 1.0}
Word element => {'been': 1.0, 'toy': 1.0, 'fun': 2.0, 'roll': 1.0, 'new': 1.0, 'like': 1.0, 'stacking': 1.0, 'enjoyed': 1.0, 'one': 1.0, 'winner': 1.0, 'for': 1.0, 'that': 1.0, 'playing': 1.0, 'brilliantly': 1.0, 'clever': 1.0, 'and': 1.0, 'up': 1.0, 'my': 2.0, 'over': 1.0, 'year': 1.0, 'son': 2.0, 'he': 1.0, 'with': 2.0, 'since': 1.0, 'a': 2.0, 'well': 1.0, 'these': 1.0, 'cars': 1.0, 'has': 2.0, 'they': 2.0, 'have': 1.0, 'still': 1.0, 'held': 1.0, 'was': 1.0, 'look': 1.0, 'to': 3.0, 'stack': 1.0, 'his': 1.0, 'abuse': 1.0}
Word element => {'hit': 1.0, 'a': 1.0, 'is': 1.0, 'highly': 1.0, 'toy': 1.0, 'rattles': 1.0, 'her': 1.0, 'size': 1.0, 'in': 1.0, 'perfect': 1.0, 'tiny': 1.0, 's': 1.0, 'car': 1.0, 'recommend': 1.0, 'she': 2.0, 'daughter': 1.0, 'for': 1.0, 'i': 1.0, 'green': 1.0, 'old': 1.0, 'to': 2.0, 'month': 1.0, 'hand': 1.0, '9': 1.0, 'it': 3.0, 'this': 2.0, 'loves': 3.0, 'bought': 1.0, 'just': 1.0, 'fit': 1.0, 'especially': 1.0, 'the': 4.0, 'these': 1.0, 'we': 1.0, 'cars': 1.0, 'little': 1.0, 'wheels': 1.0, 'turn': 1.0, 'lookat': 1.0, 'and': 2.0, 'my': 1.0, 'faces': 1.0}
Word element => {'a': 1.0, 'it': 1.0, 'plays': 1.0, 'truck': 1.0, 'his': 1.0, 'cars': 1.0, 'fire': 1.0, 'and': 1.0, 'with': 1.0, 'is': 1.0, 'son': 1.0, 'for': 2.0, 'got': 1.0, 'christmas': 1.0, 'favorite': 1.0, 'he': 2.0, 'this': 1.0, 'loves': 1.0, 'while': 1.0, 'all': 1.0, 'my': 1.0, 'the': 2.0}
Word element => {'item': 1.0, 'would': 1.0, 'floor': 1.0, 'help': 1.0, 'explore': 1.0, 'car': 2.0, 'for': 3.0, 'inside': 1.0, 'nest': 1.0, 'top': 1.0, 'stack': 2.0, 'also': 3.0, 'enjoys': 1.0, 'banging': 2.0, 'will': 1.0, 'little': 2.0, 'very': 1.0, 'counting': 1.0, 'hands': 1.0, 'affordable': 1.0, 'g': 1.0, 'each': 4.0, 'learn': 1.0, 'neat': 1.0, 'my': 3.0, 'colors': 2.0, 'onto': 1.0, 'that': 1.0, 'been': 1.0, 'to': 5.0, 'as': 2.0, 'highly': 1.0, 'this': 3.0, '1': 1.0, 'are': 3.0, 's': 2.0, 'feature': 2.0, 'nesting': 1.0, '4': 1.0, 'etc': 1.0, 'other': 3.0, 'storage': 1.0, 'son': 3.0, 'and': 7.0, 'wonderful': 1.0, 'number': 1.0, 'different': 2.0, 'toy': 2.0, 'on': 2.0, 'child': 1.0, 'imagine': 1.0, 'a': 5.0, 'rattle': 1.0, 'small': 1.0, 'large': 1.0, 'by': 1.0, 'fire': 1.0, 'age': 1.0, 'in': 1.0, 'truck': 1.0, 'ladder': 1.0, 'of': 5.0, 'the': 8.0, 'moves': 1.0, 'they': 2.0, 'sturdy': 1.0, 'educational': 1.0, 'his': 1.0, 'toys': 1.0, 'repeatedly': 1.0, 'is': 4.0, 'at': 2.0, 'cars': 2.0, 'has': 3.0, 'them': 6.0, 'recommend': 1.0, 'together': 2.0, 'easy': 1.0, 'grab': 1.0, 'i': 2.0, 'putting': 1.0, '6': 1.0, 'he': 1.0, 'months': 1.0, 'ones': 1.0, 'too': 1.0, 'one': 2.0, 'really': 1.0, 'looking': 1.0, 'great': 1.0, 'passing': 1.0, 'fun': 2.0, 'from': 1.0, 'hand': 1.0, 'favorites': 1.0, 'e': 1.0, 'course': 1.0, 'proven': 1.0, 'mouth': 1.0, 'remain': 1.0, 'roll': 1.0, 'learns': 1.0}
Word element => {'friends': 1.0, 'parent': 1.0, 'gift': 1.0, 'minutes': 1.0, '10': 1.0, 'about': 1.0, 'sec': 1.0, '30': 1.0, 'standard': 1.0, 'than': 1.0, 'plays': 1.0, 'toy': 1.0, 'getting': 1.0, 'play': 1.0, 'and': 2.0, 'only': 1.0, 'do': 1.0, 'that': 1.0, 'been': 1.0, 'crib': 1.0, 'twin': 1.0, 'have': 1.0, 'each': 1.0, 'for': 5.0, 'law': 1.0, 'boys': 3.0, 'my': 1.0, 'mother': 1.0, 'these': 1.0, 'of': 2.0, 'they': 1.0, 'itself': 1.0, 'in': 2.0, 'somewhere': 1.0, 'will': 1.0, 'also': 1.0, 'one': 2.0, 'bought': 1.0, 'now': 1.0, 'by': 1.0, 'life': 1.0, 'settle': 1.0, 'down': 1.0, 'at': 2.0, 'night': 1.0, 'all': 1.0, 'our': 5.0, 'to': 2.0, 'least': 1.0, 'sleep': 2.0, 'not': 1.0, 'the': 1.0, 'without': 1.0, 'it': 4.0, 'with': 1.0, 'music': 1.0, '2': 1.0, 'anytime': 1.0, 'take': 1.0, 'saver': 1.0, 'are': 1.0, 's': 1.0, 'a': 1.0, 'go': 1.0, 'we': 2.0, 'going': 1.0, 'us': 1.0, 'overnight': 1.0, 'more': 1.0, 'is': 1.0}
Word element => {'very': 1.0, 'lasted': 1.0, 'quickly': 1.0, 'batteries': 1.0, 'adjustable': 1.0, 'is': 1.0, 'volume': 1.0, 'bright': 1.0, 'not': 1.0, 'with': 1.0, 'fussy': 1.0, 'get': 1.0, 'they': 2.0, 'infants': 1.0, 'facing': 1.0, 'rear': 1.0, 'car': 1.0, 'putting': 1.0, 'about': 1.0, 'never': 1.0, 'find': 1.0, 'had': 3.0, 'old': 1.0, 'i': 6.0, 'night': 3.0, 'got': 1.0, 'loved': 3.0, 'highly': 1.0, 'every': 2.0, 'daughter': 1.0, 'just': 1.0, 'by': 2.0, 'too': 1.0, 'and': 4.0, 'another': 1.0, 'my': 1.0, 'her': 2.0, 'used': 4.0, 'said': 1.0, 'turn': 2.0, 'in': 3.0, 'crib': 1.0, 'on': 2.0, 'but': 2.0, '2': 1.0, 'control': 1.0, 'until': 1.0, 'enough': 1.0, 'off': 1.0, 'to': 4.0, 'sleep': 1.0, 'it': 6.0, 'she': 5.0, 'recommend': 1.0, 'was': 1.0, 'store': 1.0, 'herself': 1.0, 'product': 1.0, 'where': 1.0, 'for': 3.0, 'one': 2.0, 'a': 1.0, 's': 1.0, 'could': 1.0, 'go': 1.0, 'the': 8.0, 'place': 1.0, 'that': 2.0, 'someone': 1.0, 'idea': 1.0, 'when': 2.0, 'you': 2.0, 'remote': 3.0, 'extra': 1.0, 'during': 1.0, 'long': 1.0, 'pacifiers': 1.0, 'time': 1.0, 'so': 1.0, 'eat': 1.0, 'if': 1.0, 'found': 1.0, 'this': 3.0, 'lost': 1.0, 'would': 1.0, 'know': 1.0}
Word element => {'naptime': 1.0, 'and': 2.0, 'when': 1.0, 'he': 1.0, 'this': 1.0, 'with': 2.0, 'it': 3.0, 'for': 1.0, 'product': 1.0, 'sleep': 1.0, 'to': 1.0, 'minutes': 1.0, 'was': 2.0, 'son': 2.0, 'still': 1.0, 'problems': 1.0, 'old': 1.0, 'i': 3.0, 'night': 1.0, 'at': 1.0, 'stopping': 1.0, 'relax': 1.0, 'having': 1.0, 'songs': 1.0, '10': 1.0, 'about': 1.0, 'ten': 1.0, 'bought': 1.0, 'months': 1.0, 'on': 1.0, 'sounds': 1.0, 'slumbertime': 1.0, 'great': 1.0, 'is': 1.0, 'really': 1.0, 'going': 1.0, 'sing': 1.0, 'sometimes': 1.0, 'nature': 1.0, 'without': 1.0, 'the': 4.0, 'turns': 1.0, 'him': 1.0, 'along': 1.0, 'himself': 1.0, 'plays': 2.0, 'soother': 1.0, 'just': 1.0, 'like': 1.0, 'my': 2.0, 'fact': 1.0, 'that': 1.0}
Word element => {'frustrating': 1.0, 'addition': 1.0, 'an': 1.0, 'toy': 1.0, 'anything': 1.0, 'for': 1.0, 'my': 1.0, 'make': 1.0, 'bought': 1.0, 's': 1.0, 'tried': 1.0, 'i': 2.0, 'this': 1.0, 'it': 3.0, 'would': 1.0, 'not': 1.0, 'to': 3.0, 'exerciser': 1.0, 'was': 1.0, 'however': 1.0, 'everything': 1.0, 'son': 1.0, 'stick': 2.0, 'very': 1.0}
Word element => {'you': 1.0, 'mind': 1.0, 'help': 1.0, 'cant': 1.0, 'of': 1.0, 'has': 1.0, 'lose': 1.0, 'enjoy': 1.0, 'variey': 1.0, 'also': 1.0, 'and': 2.0, 'husband': 1.0, 'hell': 1.0, 'loves': 1.0, 'colours': 1.0, 'other': 1.0, 'with': 1.0, 'it': 3.0, 'this': 1.0, 'working': 1.0, '5': 1.0, 'a': 1.0, 'well': 1.0, 'for': 1.0, 'bucks': 1.0, 'mart': 1.0, 'k': 1.0, 'beautie': 1.0, 'bought': 1.0, 'at': 1.0, 'not': 1.0, 'old': 1.0, 'i': 2.0, 'stimulate': 1.0, 'playing': 1.0, 'that': 2.0, 'suction': 1.0, 'the': 2.0, 'my': 2.0, 'cup': 1.0, 'shapes': 1.0, 'really': 1.0, 'out': 1.0, '3': 1.0, 'month': 1.0}
Word element => {'places': 1.0, 'other': 1.0, 'and': 1.0, 'in': 1.0, 'did': 1.0, 'min': 1.0, 'for': 1.0, 'enjoy': 1.0, 'never': 1.0, 'back': 1.0, 'but': 2.0, 'use': 1.0, 'chair': 1.0, 'on': 2.0, 'more': 1.0, 'the': 4.0, '2': 1.0, 'son': 1.0, 'car': 1.0, 'within': 1.0, 'bought': 1.0, 'went': 1.0, 'my': 1.0, 'high': 1.0, 'i': 1.0, 'days': 1.0, 'to': 2.0, 'had': 1.0, 'rattle': 1.0, 'part': 1.0, 'off': 1.0, 'base': 1.0, '5': 1.0, 'than': 1.0, 'needless': 1.0, 'say': 1.0, 'he': 1.0, 'this': 1.0, 'it': 2.0}
Word element => {'be': 1.0, 'see': 1.0, 'would': 1.0, 'attention': 1.0, 'cannot': 1.0, 'like': 1.0, 'hold': 1.0, 'not': 1.0, 'but': 1.0, 'i': 1.0, 'rattle': 1.0, 'enough': 1.0, 'that': 3.0, 'redesigned': 1.0, 'months': 1.0, 'at': 1.0, 'its': 2.0, 'his': 2.0, 'my': 1.0, 'highchair': 1.0, 'loved': 1.0, 'enjoyed': 1.0, 'this': 2.0, 'he': 6.0, 'it': 7.0, 'with': 3.0, 'well': 1.0, 'toy': 3.0, 'old': 1.0, 'point': 1.0, 'was': 2.0, 'anymore': 1.0, '10': 1.0, 'hard': 1.0, 'from': 2.0, 'pull': 1.0, 'smashed': 1.0, 'to': 2.0, 'as': 2.0, 'in': 3.0, 'playing': 1.0, 'the': 3.0, 'until': 1.0, 'pulled': 1.0, 'so': 2.0, 'experience': 1.0, 'base': 3.0, 'after': 1.0, 'upsetting': 1.0, 'face': 1.0, 'separated': 1.0, 'a': 1.0, 't': 1.0, 'we': 1.0, 'play': 1.0, 'didn': 1.0, 'strong': 1.0, 'put': 1.0, 'himself': 1.0, 'did': 2.0, 'son': 1.0, 'still': 1.0}
Word element => {'these': 1.0, 'get': 1.0, 'ordination': 1.0, 'co': 1.0, 'education': 1.0, 'amusement': 1.0, 'bright': 1.0, 'amusing': 1.0, 'restaurant': 1.0, 'love': 1.0, 'for': 1.0, 'toys': 1.0, 'chair': 1.0, 'both': 1.0, 'other': 1.0, '9': 1.0, 'on': 1.0, 'about': 1.0, 'toy': 1.0, 'and': 3.0, 'a': 2.0, 'we': 2.0, 'ago': 1.0, 'tile': 1.0, 'cup': 1.0, 'received': 1.0, 'son': 1.0, 'year': 1.0, 'stick': 1.0, 'is': 2.0, 'color': 1.0, 'reasons': 1.0, 'one': 2.0, 'months': 1.0, 'tray': 1.0, 'nearly': 1.0, 'sassy': 1.0, 'this': 2.0, 'it': 1.0, 'old': 1.0, 'car': 1.0, 'table': 1.0, 'my': 1.0, 'bathroom': 1.0, 'of': 2.0, 'high': 1.0, 'were': 1.0, 'disappointed': 1.0, 'in': 1.0, 'the': 2.0, 'life': 1.0, 'window': 1.0, 'suction': 1.0, 'but': 1.0, 'all': 1.0}
Word element => {'in': 1.0, 'beeping': 1.0, 'old': 1.0, '18month': 1.0, 'my': 2.0, 'all': 2.0, 'babies': 1.0, 'frusterating': 1.0, 'be': 1.0, 'can': 1.0, 'but': 1.0, 'nose': 2.0, 'face': 2.0, 'little': 1.0, 'two': 1.0, 'time': 1.0, 'beep': 1.0, 'wiggly': 1.0, 'has': 3.0, 'still': 1.0, 'cute': 2.0, 'hands': 1.0, 'son': 1.0, 'as': 1.0, 'very': 1.0, 'and': 2.0, 'on': 2.0, 'handles': 1.0, 'toy': 2.0, 'to': 2.0, 'durable': 1.0, 'hard': 1.0, 'it': 2.0, 'this': 1.0, 'eyes': 1.0, 'mirror': 1.0, 'other': 1.0, 'grasp': 1.0, 'for': 2.0, 'one': 1.0, 'is': 1.0, 'side': 1.0, 'the': 4.0, 'a': 4.0, 'smiley': 1.0}
Word element => {'photos': 1.0, 'important': 1.0, 'those': 1.0, 'smile': 1.0, 'them': 1.0, 'get': 1.0, 'will': 1.0, 'gift': 1.0, 'friends': 1.0, 'mommy': 1.0, 'of': 1.0, 'loved': 2.0, 'the': 1.0, '2': 1.0, 'is': 2.0, 'best': 1.0, 'son': 1.0, 'as': 2.0, 'who': 1.0, 'you': 1.0, 'yrs': 1.0, 'my': 2.0, 'a': 3.0, 'toy': 1.0, 'baby': 2.0, 'with': 1.0, 'this': 3.0, 'he': 1.0, 'it': 2.0, 'so': 1.0, 'much': 1.0, 'now': 1.0, 'to': 3.0, 'rattle': 1.0, 'that': 1.0, 'one': 1.0, 'young': 1.0, 'for': 2.0, 'given': 1.0, 'i': 1.0, 'have': 2.0, 'all': 2.0}
Word element => {'ask': 1.0, 'mom': 1.0, 'what': 1.0, 'away': 1.0, 'was': 1.0, 'its': 1.0, 'to': 3.0, 'when': 1.0, 'with': 2.0, 'found': 2.0, 'this': 2.0, 'he': 2.0, 'durable': 1.0, 'baby': 2.0, 'toy': 3.0, 'about': 1.0, 'of': 2.0, 'bottom': 1.0, 'my': 2.0, 'two': 1.0, 'sons': 1.0, 'at': 1.0, 'way': 1.0, 'his': 3.0, 'year': 1.0, 'for': 1.0, 'love': 1.0, 'brother': 2.0, 'big': 1.0, 'old': 2.0, 'tries': 1.0, 'played': 1.0, 'the': 1.0, 'began': 1.0, 'fun': 1.0, 'both': 1.0, 'granny': 1.0, 'could': 1.0, 'a': 2.0, 'ago': 1.0, 's': 1.0, 'we': 1.0, 'and': 4.0, 'too': 1.0, 'play': 1.0, 'it': 6.0, 'month': 2.0, '5': 1.0, 'suprise': 2.0, 'box': 1.0, 'loves': 1.0, 'steal': 1.0, 'more': 1.0, 'is': 1.0}
Word element => {'still': 1.0, 'even': 1.0, 'toddler': 2.0, 'interesting': 1.0, 'not': 1.0, 'just': 1.0, 'before': 1.0, 'getting': 1.0, '6': 1.0, 'who': 1.0, 'lot': 1.0, 'at': 1.0, 'house': 1.0, 'left': 1.0, 'when': 1.0, 'diaper': 1.0, 'always': 1.0, 'there': 1.0, 'buck': 1.0, '3': 1.0, 'your': 1.0, 'colors': 1.0, 'in': 1.0, 'appreciated': 1.0, 'was': 1.0, 'months': 2.0, 'nope': 1.0, 'also': 1.0, 'rings': 1.0, 'of': 2.0, 'textures': 1.0, 'would': 1.0, 'it': 3.0, 'she': 1.0, 'bpa': 2.0, 'contains': 1.0, 'watch': 1.0, 'bag': 1.0, 'beads': 1.0, 'baby': 2.0, 'about': 3.0, 'don': 1.0, 'daughter': 1.0, '12': 1.0, 'had': 1.0, 'thought': 1.0, 'what': 1.0, 'good': 1.0, 'her': 1.0, 'best': 1.0, 'both': 1.0, 'clear': 1.0, 'motion': 1.0, 'for': 2.0, 'where': 1.0, 'love': 1.0, 'with': 1.0, 'only': 1.0, 'is': 4.0, 'bright': 1.0, 'move': 1.0, 'however': 1.0, 'that': 1.0, 'i': 3.0, 'rattle': 1.0, 'the': 10.0, 'my': 1.0, 'this': 3.0, 'found': 1.0, 'we': 2.0, 't': 2.0, 'a': 6.0, 'toy': 1.0, 'comfort': 1.0, 'far': 1.0, 'teething': 2.0, 'and': 3.0, 'protruding': 1.0, 'see': 1.0, 'ball': 2.0, 'but': 1.0, 'can': 2.0, 'chewed': 1.0, 'big': 1.0, 'all': 1.0, 'to': 2.0, 'as': 2.0, 'bang': 1.0, 'part': 1.0, 'while': 2.0, 'from': 1.0, 'like': 1.0, 'which': 1.0, 'know': 1.0, 'free': 1.0, 'use': 1.0, 'pvc': 1.0}
Word element => {'hand': 1.0, 'when': 1.0, 'soon': 1.0, 'relief': 1.0, 'pvc': 1.0, 'our': 1.0, 'sigh': 1.0, 'breathe': 1.0, 'that': 1.0, 'got': 1.0, 'and': 2.0, 'can': 1.0, 'bpa': 1.0, 'plastic': 1.0, 'chemical': 1.0, 'phtalates': 1.0, 'mouth': 1.0, 'sassy': 1.0, 'saying': 1.0, 'in': 1.0, 'of': 2.0, 'the': 1.0, 'concerned': 1.0, 'to': 1.0, 'content': 1.0, 'was': 2.0, 'i': 4.0, 'since': 1.0, 'a': 3.0, 'about': 1.0, 'baby': 2.0, 'book': 1.0, 'will': 1.0, 'free': 1.0, 'undoubtedly': 1.0, 'emailed': 1.0, 'reply': 1.0, 'stick': 1.0, 'this': 3.0, 'it': 1.0, 'his': 1.0}
Word element => {'day': 1.0, 'every': 1.0, 'faces': 1.0, 'etc': 1.0, 'grandpa': 1.0, 'pages': 1.0, 'the': 2.0, 'great': 1.0, 'put': 1.0, 'book': 2.0, 'far': 1.0, 'is': 2.0, 'live': 1.0, 'that': 1.0, 'relatives': 1.0, 'of': 2.0, 'and': 3.0, 'quot': 2.0, 'very': 1.0, 'love': 1.0, 'for': 1.0, '5': 1.0, 'old': 1.0, 'this': 2.0, 'pictures': 1.0, 'sturdy': 1.0, 'has': 1.0, 'it': 1.0, 'month': 1.0, 'she': 1.0, 'plus': 1.0, 'colors': 1.0, 'chewable': 1.0, 'designs': 1.0, 'a': 1.0, 'we': 2.0, 's': 2.0, 'our': 1.0, 'to': 1.0, 'look': 1.0, 'away': 1.0, 'now': 1.0, 'lot': 1.0, 'at': 2.0, 'inside': 1.0, '8': 1.0, 'bought': 1.0, 'one': 1.0, 'months': 1.0, 'sees': 1.0, 'still': 1.0, 'her': 2.0, 'grandma': 1.0, 'favorites': 1.0}
Word element => {'little': 1.0, 'photo': 1.0, 'up': 1.0, 'when': 1.0, 'us': 1.0, 'way': 1.0, 'at': 1.0, 'carry': 2.0, 'can': 2.0, 'would': 1.0, 'pictures': 2.0, 'cleaning': 1.0, 'out': 1.0, 'and': 3.0, 'get': 1.0, 'not': 1.0, 'look': 1.0, 'to': 2.0, 'granddaughter': 1.0, 'around': 1.0, 'new': 1.0, 'another': 1.0, 'in': 1.0, 'it': 4.0, 'this': 3.0, 'book': 3.0, 'will': 1.0, 'easy': 1.0, 'show': 1.0, 'recognize': 1.0, 'she': 4.0, 'simple': 1.0, 'we': 1.0, 'lives': 1.0, 'bought': 1.0, 'i': 2.0, 'a': 3.0, 'see': 1.0, 'her': 1.0, 'state': 1.0, 'for': 2.0, 'often': 1.0, 'the': 1.0, 'great': 2.0, 'as': 2.0, 'is': 4.0}
Word element => {'just': 1.0, 'll': 1.0, 'sure': 1.0, 'm': 1.0, 'yet': 1.0, 'gotten': 1.0, 'inch': 1.0, 'sized': 1.0, 'durable': 1.0, 'foam': 1.0, 'material': 1.0, 'thin': 1.0, 'out': 2.0, 'made': 1.0, 'pages': 1.0, 'various': 1.0, 'identifying': 1.0, 'come': 1.0, 'pointing': 1.0, '3x5': 1.0, 'mom': 1.0, 'daughter': 1.0, 't': 1.0, 'we': 3.0, 'over': 1.0, 'soft': 1.0, 'pictures': 4.0, 'this': 1.0, 'much': 2.0, 'only': 1.0, 'of': 5.0, 'there': 1.0, 'he': 1.0, 'plastic': 1.0, '6': 1.0, 'has': 1.0, 'hasn': 1.0, 'old': 3.0, '4': 2.0, 'i': 2.0, 'took': 1.0, 'originally': 1.0, '20': 1.0, 'my': 3.0, 'still': 1.0, 'son': 1.0, 'loves': 1.0, 'filled': 2.0, 'pretty': 1.0, 'people': 2.0, 'and': 4.0, '17': 1.0, 'dad': 1.0, 'but': 4.0, '2': 1.0, 'the': 4.0, 'taken': 1.0, 'sets': 1.0, 'cousins': 1.0, 'love': 1.0, 'for': 3.0, 'grandparents': 1.0, 'it': 4.0, 'month': 3.0, 'she': 1.0, 'as': 1.0, 'to': 2.0, 'all': 2.0, 'have': 1.0, 'their': 1.0, 'are': 4.0, 'pics': 1.0, 'with': 3.0, 'slots': 2.0, 'so': 2.0, 'months': 1.0, 'bought': 1.0, 'entire': 1.0, 'families': 2.0, 'in': 2.0}
Word element => {'you': 1.0, 'the': 1.0, 'place': 1.0, 'to': 1.0, 'inside': 1.0, 'plastic': 1.0, 'pictures': 1.0, 'clear': 1.0, 'this': 1.0, 'is': 1.0, 'protect': 1.0, 'a': 1.0, 'sleeves': 1.0, 'photo': 1.0, 'nice': 1.0, 'babies': 1.0, 'book': 1.0, 'for': 1.0, 'has': 1.0, 'as': 1.0, 'it': 1.0}
Word element => {'album': 1.0, 'kind': 1.0, 'another': 1.0, 'should': 1.0, 'photos': 1.0, 'those': 1.0, 'but': 1.0, 'is': 1.0, 'with': 1.0, 'title': 1.0, 'or': 2.0, 'chemicals': 2.0, 'from': 1.0, 'word': 1.0, 'as': 1.0, 'to': 3.0, 'highly': 1.0, 'and': 2.0, 'tested': 1.0, 'plastic': 1.0, 'who': 1.0, 'toddlers': 1.0, 'contain': 2.0, 'was': 1.0, 'google': 1.0, 'are': 2.0, 'the': 5.0, 'of': 3.0, 'wonderful': 1.0, 'pvc': 1.0, 'have': 1.0, 'articles': 2.0, 'name': 1.0, 'share': 1.0, 'love': 1.0, 'for': 2.0, 'already': 1.0, 'on': 2.0, 'toxic': 4.0, 'bath': 1.0, 'books': 2.0, 'found': 2.0, 'based': 1.0, 'this': 4.0, 'children': 3.0, 'materials': 1.0, 'concept': 1.0, 'order': 1.0, 'that': 3.0, 'babies': 1.0, 'been': 2.0, 'banned': 1.0, 's': 2.0, 'toys': 1.0, 'in': 3.0, 'having': 1.0, 'europe': 1.0, 'dangers': 1.0, 'specifically': 1.0, 'read': 1.0, 'book': 5.0, 'dangerously': 1.0, 'many': 1.0, 'online': 1.0}
Word element => {'boy': 1.0, 'car': 1.0, 'church': 1.0, 'attraction': 1.0, 'never': 1.0, 'stopped': 1.0, 'kind': 1.0, 'was': 2.0, 'squeaker': 2.0, 'quiet': 2.0, 'great': 1.0, 'big': 1.0, 'nice': 1.0, 'washable': 1.0, 'that': 1.0, 'like': 1.0, 'i': 1.0, 'on': 2.0, 'gnaw': 1.0, 'drooly': 1.0, 'eleven': 1.0, 'good': 1.0, 'baby': 4.0, 'years': 1.0, 'chewy': 1.0, 'had': 1.0, 'first': 1.0, 'received': 1.0, 'he': 2.0, 'with': 3.0, 'an': 1.0, 'but': 2.0, 'shower': 1.0, 'of': 1.0, 'loveable': 1.0, 'toy': 1.0, 'has': 2.0, 'through': 1.0, 'then': 1.0, 'ours': 1.0, 'earl': 4.0, 'gift': 2.0, 'begin': 1.0, 'still': 1.0, 'fully': 1.0, 'e': 1.0, 'planes': 1.0, 'bird': 1.0, 'least': 1.0, 'to': 2.0, 'our': 2.0, 'as': 2.0, 'taking': 1.0, 'us': 1.0, 'seen': 1.0, 'when': 1.0, 'teething': 1.0, 'for': 5.0, 'at': 1.0, 'since': 3.0, 'three': 1.0, 'very': 1.0, 'textures': 1.0, 'faded': 1.0, 'little': 1.0, 'and': 4.0, 'girl': 1.0, 'edges': 1.0, 'squeaking': 1.0, 'difference': 1.0, 'around': 1.0, 'is': 2.0, 'in': 4.0, 'condition': 1.0, 'or': 3.0, 'fourth': 1.0, 'we': 2.0, 'ago': 1.0, 'a': 7.0, 's': 2.0, 'the': 5.0, 'just': 1.0, 'perfect': 2.0, 'kids': 1.0, 'soft': 1.0}
Word element => {'a': 1.0, 'sweet': 1.0, 'sound': 1.0, 'texture': 1.0, 'this': 1.0, 'little': 2.0, 'great': 1.0, 'pricey': 1.0, 'toy': 1.0, 'color': 1.0, 'is': 1.0, 'even': 1.0, 'safe': 1.0, 'though': 1.0, 'for': 1.0, 'offers': 1.0, 'very': 1.0, 'and': 2.0, 'infants': 1.0}
Word element => {'fabric': 1.0, 'colors': 1.0, 'different': 1.0, 'apart': 1.0, 'rip': 1.0, 'a': 1.0, 'loved': 1.0, 'grandson': 1.0, 'wonderful': 1.0, 'it': 1.0, 'learning': 1.0, 'the': 1.0, 'my': 1.0, 'made': 1.0, 'so': 1.0, 'little': 1.0, 'cant': 1.0, 'and': 2.0, 'very': 1.0, 'tool': 1.0, 'well': 1.0, 'hands': 1.0}
Word element => {'responded': 1.0, 'how': 1.0, 'and': 1.0, 'as': 1.0, 'very': 1.0, 't': 1.0, 'great': 1.0, 'my': 1.0, 'talked': 1.0, 'seemed': 1.0, 'gift': 1.0, 'see': 1.0, 'a': 1.0, 'them': 1.0, 'for': 1.0, 'given': 1.0, 'they': 1.0, 'grandson': 1.0, 'haven': 1.0, 'satisfied': 1.0, 'he': 1.0, 'this': 1.0, 'it': 2.0, 'with': 1.0, 'i': 1.0, 'was': 1.0, 'to': 3.0}
Word element => {'entertained': 1.0, 'him': 1.0, 'it': 2.0, 'keeps': 1.0, 'really': 1.0, 'this': 1.0, 'and': 1.0, 'like': 1.0, 'son': 1.0, 'is': 1.0, 'my': 1.0, 'the': 1.0, 'a': 1.0, 'exactly': 1.0, 'kid': 1.0, 'had': 1.0, 'enjoys': 1.0, 'one': 1.0, 'i': 2.0, 'when': 1.0, 'was': 1.0}
Word element => {'cute': 1.0, 'super': 1.0, 'of': 1.0, 'several': 1.0, 'with': 1.0, 'this': 1.0, 'he': 2.0, 'velcro': 1.0, 'struggles': 1.0, 'laces': 1.0, 'my': 1.0, 'memories': 1.0, '20': 1.0, 'back': 1.0, 'can': 1.0, 'but': 1.0, 'zipper': 1.0, 'an': 1.0, 'brings': 1.0, 'it': 3.0, 'month': 1.0, 'i': 1.0, 'old': 1.0, 'child': 1.0, 'had': 1.0, 'wonderful': 1.0, 'item': 1.0, 'grow': 1.0, 'to': 2.0, 'as': 2.0, 'similar': 1.0, 'and': 6.0, 'the': 5.0, 'such': 1.0, 'items': 1.0, 'shoe': 1.0, 'snaps': 1.0, 'into': 1.0, 'that': 1.0, 'loves': 1.0, 'great': 1.0, 'shapes': 1.0, 'book': 1.0, 'other': 1.0, 'pages': 1.0, 'give': 1.0, 'him': 1.0, 'way': 1.0, 'a': 3.0, 's': 2.0, 'learn': 1.0, 'practice': 1.0, 'overall': 1.0}
Word element => {'occupied': 1.0, 'her': 1.0, 'has': 1.0, 'kept': 1.0, 'a': 1.0, 'my': 1.0, 'more': 1.0, 'back': 1.0, 'daughter': 1.0, 'enjoys': 1.0, 'product': 1.0, 'taking': 1.0, 'great': 1.0, 'it': 3.0, 'flying': 1.0, 'while': 1.0, 'but': 1.0, 'than': 1.0, 'apart': 1.0, 'putting': 1.0, 'together': 1.0}
Word element => {'floor': 1.0, 'left': 1.0, 'minutes': 1.0, 'few': 1.0, 'done': 1.0, 'give': 1.0, 'up': 1.0, 'has': 1.0, 'each': 1.0, 'new': 1.0, 'him': 1.0, 'be': 1.0, 'time': 1.0, 'so': 1.0, 'flipping': 1.0, 'only': 1.0, 'pieces': 1.0, 'gets': 1.0, 'attached': 1.0, 'he': 6.0, 'hard': 1.0, 'this': 1.0, 'it': 9.0, 'and': 3.0, 'interesting': 1.0, 'snap': 1.0, 'to': 3.0, 'got': 1.0, 'in': 1.0, 'plane': 1.0, 'nice': 1.0, 'other': 1.0, 'shelf': 1.0, 'book': 1.0, 'will': 2.0, 'for': 4.0, 'which': 1.0, 'frustrated': 1.0, 'are': 2.0, 'the': 4.0, 'ride': 1.0, 'on': 2.0, '3': 1.0, 'months': 1.0, 'we': 3.0, 'ago': 1.0, 't': 1.0, 'a': 2.0, 'books': 1.0, 'thru': 2.0, 'snaps': 1.0, 'more': 1.0, 'is': 4.0, 'most': 1.0, 'but': 2.0, 'can': 1.0, 'asks': 1.0, 'seen': 1.0, 'when': 2.0, 'again': 1.0, 'lose': 1.0, 'them': 1.0, 'flips': 1.0, 'maybe': 1.0, 'find': 1.0, 'that': 1.0, 'about': 1.0, 'travel': 1.0, 'keep': 1.0, 'trips': 1.0}
Word element => {'toy': 1.0, 'neat': 1.0, 'such': 1.0, 'was': 1.0, 'saying': 1.0, 'a': 1.0, 'kept': 1.0, 'it': 2.0, 'my': 2.0, 'and': 1.0, 'loves': 1.0, 'this': 1.0, 'daughter': 1.0, 'for': 2.0, 'i': 1.0, 'grandbaby': 1.0, 'she': 1.0, 'bought': 1.0, 'christmas': 1.0}
Word element => {'price': 1.0, 'worth': 1.0, 'well': 1.0, 'activities': 1.0, 'stimulating': 1.0, 'mind': 1.0, 'the': 1.0, 'my': 1.0, 'toddler': 1.0, 'idea': 1.0, '8': 1.0, 'on': 1.0, 'with': 1.0, 'it': 1.0, 'month': 1.0, 'enjoys': 1.0, 'this': 1.0, 'for': 1.0, 'book': 1.0, 'page': 1.0, 'each': 1.0, 'very': 1.0, 'good': 1.0}
Word element => {'selection': 1.0, 'with': 1.0, 'everyone': 1.0, 'too': 1.0, 'was': 1.0, 'mom': 1.0, 'book': 1.0, 'well': 1.0, 'made': 1.0, 'and': 2.0, 'quite': 1.0, 'a': 1.0, 'different': 1.0, 'few': 1.0, 'happy': 1.0, 'approved': 1.0, 'toddler': 1.0, 'textures': 1.0, 'loved': 1.0, 'this': 2.0}
Word element => {'book': 1.0, 'playing': 1.0, 'granddaughter': 1.0, 'it': 1.0, 'love': 1.0, 'sew': 1.0, 'what': 1.0, 'to': 1.0, 'i': 1.0, 'wanted': 1.0, 'just': 2.0, 'but': 1.0, 'did': 1.0, 'wonderful': 1.0, 'this': 1.0, 'loves': 1.0, 'myself': 1.0, 'have': 1.0, 't': 1.0, 'my': 1.0, 'the': 1.0, 'with': 1.0, 'time': 1.0}
Word element => {'shoe': 1.0, 'your': 1.0, 'time': 3.0, 'tie': 1.0, 'i': 2.0, 'a': 2.0, 'see': 1.0, 'snaps': 1.0, 'use': 1.0, 'buttons': 1.0, 'her': 1.0, 'to': 2.0, 'show': 1.0, 'she': 1.0, 'really': 1.0, 'shapes': 1.0, 'is': 1.0, 'zipper': 1.0, 'book': 3.0, 'like': 1.0, 'how': 1.0, 'teach': 1.0, 'this': 4.0, 'with': 2.0, 'you': 1.0, 'most': 1.0, 'but': 1.0, 'can': 1.0, 'quality': 1.0, 'baby': 2.0, 'tell': 1.0, 'my': 1.0, 'and': 2.0, 'play': 1.0, 'too': 1.0, 'young': 1.0, 'for': 1.0, 'of': 2.0, 'already': 1.0, 'these': 1.0, 'the': 1.0, 'activities': 1.0, 'loves': 1.0, 'future': 1.0, 'lot': 1.0, 'at': 1.0, 'spent': 1.0, 'in': 1.0}
Word element => {'each': 1.0, 'overall': 1.0, 'snap': 1.0, 'button': 1.0, 'be': 1.0, 'activity': 1.0, 'under': 1.0, 'of': 1.0, 'kind': 1.0, 'get': 1.0, 'and': 1.0, 'fingers': 1.0, 'was': 1.0, 'to': 4.0, 'were': 1.0, 'a': 2.0, 'backing': 1.0, 'book': 1.0, 'daughter': 1.0, 'enjoy': 1.0, 'grand': 1.0, 'tight': 1.0, 'liked': 1.0, 'old': 1.0, 'her': 1.0, 'buttons': 1.0, 'able': 1.0, 'have': 1.0, 'my': 1.0, 'sewn': 1.0, '2': 1.0, 'the': 2.0, 'lot': 1.0, 'yr': 1.0, 'she': 2.0, 'this': 1.0, 'with': 1.0, 'hard': 2.0, 'pretty': 1.0, 'snaps': 1.0, 'did': 2.0, 'some': 1.0, 'or': 2.0, 'time': 1.0, 'they': 1.0}
Word element => {'somewhat': 1.0, 'if': 1.0, 'high': 1.0, 'very': 1.0, 'be': 1.0, 'seem': 1.0, 'toys': 1.0, 'worth': 1.0, 'make': 1.0, 'enough': 1.0, 'use': 1.0, 'will': 1.0, 'liam': 1.0, 'though': 1.0, 'pockets': 1.0, 'even': 1.0, 'because': 1.0, 'expecting': 1.0, 'was': 1.0, 'sure': 2.0, 'exactly': 1.0, 'not': 2.0, 'price': 1.0, 'm': 2.0, 'an': 1.0, 'book': 3.0, 'cute': 1.0, 'ordered': 1.0, 'birthday': 1.0, 'this': 1.0, 'with': 1.0, 'pricy': 1.0, 'etc': 1.0, 'i': 5.0, 'quality': 3.0, 'night': 1.0, 'grandson': 1.0, 'really': 1.0, 'of': 4.0, 'up': 1.0, 'for': 2.0, 'brush': 1.0, 'the': 6.0, 'learning': 1.0, 'such': 1.0, 'a': 5.0, 'is': 2.0, 'comes': 1.0, 'what': 1.0, 'excellent': 1.0, 'stuffed': 1.0, 'do': 1.0, 'that': 2.0, 'bear': 2.0, 'you': 1.0, 'can': 1.0, 'it': 5.0, 'remove': 1.0, 'from': 1.0, 'all': 1.0, 'to': 3.0, 'as': 1.0, 'each': 1.0, 'page': 1.0, 'toy': 1.0, 'has': 1.0, 'time': 1.0, 'paid': 1.0, 'different': 1.0, 'activity': 1.0, 'and': 1.0, 'milk': 1.0, 'small': 1.0, 'coming': 1.0, 'have': 1.0, 'glass': 1.0, 'his': 1.0, 'teeth': 1.0}
Word element => {'slept': 1.0, 'much': 1.0, 'seem': 1.0, 'on': 1.0, 'has': 1.0, 'they': 2.0, 'playing': 1.0, 'but': 1.0, 'put': 1.0, 'book': 1.0, 'also': 1.0, 'youngest': 1.0, 'take': 1.0, 'liked': 2.0, 'to': 3.0, 'boys': 1.0, 'a': 1.0, 'my': 2.0, 't': 1.0, 'pajamas': 1.0, 'the': 3.0, 'actually': 1.0, 'care': 1.0, 'are': 1.0, 'of': 1.0, 'hard': 1.0, 'with': 3.0, 'this': 1.0, 'play': 1.0, 'both': 1.0, 'didn': 1.0, 'little': 2.0, 'bear': 2.0, 'out': 1.0, 'and': 1.0, 'him': 1.0}
Word element => {'paying': 1.0, 'you': 1.0, 'price': 1.0, 'for': 1.0, 'enough': 1.0, 'have': 1.0, 'the': 1.0, 't': 1.0, 'that': 1.0, 'think': 1.0, 'on': 1.0, 'later': 1.0, 'maybe': 1.0, 'other': 1.0, 'and': 2.0, 'i': 2.0, 'is': 2.0, 'very': 1.0, 'son': 1.0, 'to': 1.0, 'despite': 1.0, 'be': 1.0, 'found': 1.0, 'cute': 1.0, 'though': 1.0, 'he': 1.0, 'this': 1.0, 'it': 2.0, 'well': 1.0, 'made': 1.0, 'interactivity': 1.0, 'my': 1.0, 'are': 1.0, 'comments': 1.0, 'real': 1.0, 'pages': 1.0, 'just': 1.0, 'not': 1.0, 'interested': 1.0, 'doesn': 1.0, 'will': 1.0, 'book': 1.0, 'but': 1.0}
Word element => {'family': 1.0, 'bought': 1.0, 'unfortunately': 1.0, 'an': 1.0, 'praying': 1.0, 'brush': 1.0, 'for': 2.0, 'drink': 1.0, '5': 1.0, 'you': 1.0, 'night': 1.0, 'clothes': 1.0, 'book': 1.0, 'this': 1.0, 'it': 2.0, 'routine': 1.0, 'i': 1.0, '4': 1.0, 'story': 1.0, 'out': 1.0, 'made': 1.0, 'bedtime': 1.0, '2': 1.0, 'agnostic': 1.0, 'the': 1.0, 'say': 1.0, 'prayer': 1.0, 'is': 1.0, 'walks': 1.0, 'pajamas': 1.0, 'a': 3.0, 'well': 1.0, 'cute': 1.0, 'though': 1.0, '1': 1.0, 'milk': 1.0, 'and': 1.0, 'of': 1.0, '6': 1.0, 'lullaby': 1.0, 'interactive': 1.0, 'fabric': 1.0, '8': 1.0, 'teeth': 1.0, 'people': 1.0, 'take': 2.0, 'off': 1.0, 'your': 3.0, 'put': 1.0, 'on': 1.0, '3': 1.0, 'bath': 1.0, '7': 1.0, 'goodnight': 1.0, 'works': 1.0}
Word element => {'affordable': 1.0, 'out': 1.0, 'unit': 1.0, 'beyond': 1.0, 'market': 1.0, 'spread': 1.0, 'digital': 1.0, '900': 1.0, 'there': 2.0, 'better': 1.0, 'earth': 1.0, 'why': 1.0, 'signal': 1.0, 'average': 1.0, 'roadblock': 1.0, 'no': 1.0, 'moderate': 1.0, 'so': 2.0, 'scanner': 1.0, 'cordless': 1.0, 'analog': 1.0, 'everyone': 1.0, 'least': 1.0, 'to': 3.0, 'at': 2.0, 'who': 1.0, '49': 1.0, 'sound': 1.0, 'compromises': 1.0, 'these': 1.0, 'the': 5.0, 'scrambled': 1.0, 'and': 2.0, 'monitor': 2.0, 'amazon': 1.0, 'phone': 1.0, 'mhz': 2.0, 'horrible': 1.0, 'baby': 2.0, 'quality': 1.0, 'doesn': 1.0, 'seems': 1.0, 'will': 1.0, 'however': 1.0, 'transmit': 1.0, 'days': 1.0, 'considering': 1.0, 'how': 1.0, 'one': 2.0, 'higher': 1.0, 'it': 2.0, '46': 1.0, 'choosing': 1.0, 'this': 2.0, 'is': 5.0, 'in': 1.0, 'regular': 1.0, 'amazingly': 1.0, 'selection': 1.0, 'voice': 1.0, 'duck': 1.0, 's': 1.0, 'radio': 1.0, 't': 1.0, 'a': 3.0, 'may': 1.0, 'spectrum': 1.0, 'anyone': 1.0, 'be': 2.0, 'me': 1.0, 'listening': 1.0, 'com': 1.0, 'for': 2.0, 'intentionally': 1.0, 'or': 3.0, 'that': 1.0, 'unintentionally': 1.0, 'interceptor': 1.0, 'of': 2.0, 'best': 1.0, 'choices': 1.0, 'like': 1.0, 'donald': 1.0, 'make': 1.0, 'your': 1.0, 'on': 4.0}
Word element => {'ear': 1.0, 'an': 1.0, 'just': 1.0, 'by': 1.0, 'family': 1.0, 'same': 1.0, 'the': 2.0, 'which': 1.0, 'washable': 1.0, 'on': 1.0, 'is': 1.0, 'no': 1.0, 'choke': 1.0, 'of': 1.0, 'gift': 2.0, 'baby': 1.0, 'parts': 1.0, 'and': 1.0, 'in': 1.0, 'perfect': 1.0, 'all': 2.0, 'monogramming': 1.0, 'give': 1.0, 'a': 1.0, 'children': 1.0, 'durable': 1.0, 'this': 1.0, 'to': 2.0, 'snuggly': 1.0, 'very': 1.0, 'best': 1.0, 'you': 1.0, 'can': 1.0}
Word element => {'children': 1.0, 'small': 1.0, 'for': 1.0, 'friend': 1.0, 'cozy': 1.0, 'and': 1.0, 'considering': 1.0, 'born': 1.0, 'was': 1.0, 'there': 1.0, 'he': 3.0, 'with': 2.0, 'soft': 1.0, 'this': 1.0, 'durable': 1.0, 'since': 1.0, 'one': 1.0, '6th': 1.0, 'old': 1.0, 'i': 1.0, 'amount': 1.0, 'the': 2.0, 'great': 2.0, 'my': 2.0, 'blue': 3.0, 'week': 1.0, 'hurt': 1.0, 'his': 1.0, 'year': 1.0, 'son': 2.0, 'is': 4.0, 'goes': 1.0, '3': 1.0, 'on': 1.0, 'a': 1.0, 'bunny': 2.0, 'they': 1.0, 'everywhere': 1.0, 'spends': 1.0, 'are': 1.0, 'probable': 1.0, 'pretty': 1.0, 'wash': 1.0, 'them': 1.0, 'thing': 1.0, 'about': 2.0, 'of': 1.0, 'once': 1.0, 'him': 1.0, 'nothing': 1.0, 'that': 1.0, 'can': 1.0, 'time': 1.0, 'so': 1.0}
Word element => {'all': 1.0, 'so': 1.0, 'matters': 1.0, 'well': 1.0, 's': 1.0, 'what': 1.0, 'that': 1.0, 'and': 1.0, 'it': 2.0, 'although': 1.0, 'old': 1.0, 'seen': 1.0, 'haven': 1.0, 'loves': 1.0, 't': 1.0, 'my': 1.0, 'is': 1.0, '2': 1.0, 'year': 1.0, 'i': 1.0, 'niece': 1.0}
Word element => {'for': 1.0, 'small': 1.0, 'so': 1.0, 'surprised': 1.0, 'was': 2.0, 'descriptions': 1.0, 'that': 1.0, 'were': 1.0, 'line': 1.0, 'it': 1.0, 'this': 1.0, 'saw': 1.0, 'on': 1.0, 'i': 2.0, 'pictures': 1.0, 'did': 1.0, 'the': 4.0, 'of': 2.0, 'some': 1.0, 'bigger': 1.0, 'than': 1.0, 'actual': 1.0, 'much': 1.0, 'measurements': 1.0, 'not': 1.0, 'notice': 1.0, 'price': 1.0, 'toy': 2.0, 'any': 1.0, 'and': 1.0, 'in': 1.0}
Word element => {'on': 1.0, 'boy': 1.0, 'as': 1.0, 'very': 1.0, '16th': 1.0, 'june': 1.0, 'due': 1.0, 'have': 1.0, 't': 1.0, 'given': 1.0, 'that': 1.0, 'i': 1.0, 'gift': 1.0, 'times': 1.0, 'intriguing': 1.0, 'to': 2.0, 'haba': 1.0, 'a': 3.0, 'many': 1.0, 'is': 2.0, 'first': 1.0, 'this': 1.0, 'it': 2.0, 'can': 1.0, 'wait': 1.0, 'toy': 2.0, 'baby': 1.0, 'give': 1.0, 'grandchild': 1.0, 'my': 1.0}
Word element => {'mouth': 1.0, 'in': 1.0, 'putting': 1.0, 'child': 1.0, 'dont': 1.0, 'you': 1.0, 'her': 1.0, 'phalate': 1.0, 'line': 1.0, 'worry': 1.0, 'sassy': 1.0, 'so': 1.0, 'understanding': 1.0, 'have': 1.0, 'pick': 1.0, 'a': 1.0, 'for': 1.0, 'your': 1.0, 'free': 1.0, 'manipulate': 1.0, 'has': 1.0, 'loved': 1.0, 'it': 1.0, 'this': 3.0, 'the': 2.0, 'from': 1.0, 'my': 2.0, 'annoying': 1.0, 'bpa': 1.0, 'iteresting': 1.0, 'that': 2.0, 'an': 1.0, 'to': 3.0, 'is': 5.0, 'toy': 1.0, 'pleasant': 1.0, 'baby': 2.0, 'about': 2.0, 'months': 2.0, 'up': 1.0, '6': 1.0, '18': 1.0, 'not': 1.0, 'ball': 2.0, 'and': 3.0, 'chime': 1.0, 'easy': 1.0}
Word element => {'year': 1.0, 'almost': 1.0, 'lasted': 1.0, 'has': 1.0, 'so': 1.0, 'them': 1.0, 'in': 1.0, 'great': 1.0, 'most': 1.0, 'love': 1.0, 'for': 1.0, 'bells': 1.0, 'than': 1.0, 'found': 1.0, 'i': 1.0, 'hardier': 1.0, 'far': 1.0, 'who': 1.0, 'middle': 1.0, 'a': 3.0, 'is': 2.0, 'toy': 4.0, 'now': 1.0, 'to': 1.0, 'play': 1.0, 'my': 1.0, 'sized': 1.0, 'it': 1.0, 'with': 2.0, 'this': 2.0, 'parrots': 1.0, 'balls': 1.0}
Word element => {'learned': 1.0, 'just': 1.0, 'this': 1.0, 'loves': 1.0, 'old': 1.0, 'its': 1.0, 'to': 1.0, 'skill': 1.0, 's': 1.0, 'months': 1.0, '4': 1.0, 'really': 1.0, 'is': 1.0, 'daughter': 1.0, 'for': 1.0, 'as': 1.0, 'very': 1.0, 'my': 1.0, 'and': 1.0, 'ball': 1.0, 'she': 2.0, 'easy': 1.0, 'her': 1.0, 'hold': 1.0, 'a': 1.0}
Word element => {'the': 1.0, 'good': 1.0, 'and': 1.0, 'children': 1.0, 'overall': 1.0, 'young': 1.0, 'for': 2.0, 'price': 1.0, 'quality': 1.0, 'perfect': 1.0}
Word element => {'durable': 1.0, 'sure': 1.0, 'wash': 1.0, 'haven': 1.0, 'stays': 1.0, 'room': 1.0, 'mostly': 1.0, 'so': 1.0, 'item': 1.0, 'sounds': 1.0, 'interested': 1.0, 'much': 1.0, 'obviously': 1.0, 'animals': 1.0, 'had': 1.0, 'stuffed': 1.0, 'light': 1.0, 'just': 2.0, 'chewing': 1.0, 'hugging': 1.0, 'he': 4.0, 'old': 1.0, '9': 1.0, 'at': 2.0, 'interact': 1.0, 'small': 1.0, 'dolls': 1.0, 'was': 1.0, 'and': 2.0, 'carrier': 1.0, 'his': 4.0, 'age': 1.0, 'in': 3.0, 'this': 2.0, 'it': 7.0, 'with': 5.0, 'are': 1.0, 'not': 2.0, 'because': 1.0, 'use': 1.0, 'amazon': 1.0, 'got': 1.0, 'is': 4.0, 'more': 3.0, 'make': 1.0, 'on': 1.0, 'playing': 1.0, 'the': 4.0, 'believe': 1.0, 'yet': 1.0, 'or': 1.0, 'everywhere': 1.0, 'i': 3.0, 'months': 1.0, 'one': 1.0, 'parents': 1.0, 'like': 1.0, 'which': 1.0, 'need': 1.0, 'toys': 3.0, 'some': 1.0, 'reason': 2.0, 'out': 1.0, 'newborn': 1.0, 'other': 1.0, 'opposed': 1.0, 'son': 1.0, 'still': 2.0, 'sometimes': 1.0, 'cute': 3.0, 'all': 1.0, 'as': 1.0, 'to': 3.0, 'that': 5.0, 'babies': 2.0, 'advertised': 1.0, 'babiesrus': 1.0, 'pooh': 2.0, 'but': 3.0, 'likes': 1.0, 'toy': 2.0, 'went': 2.0, 'my': 1.0, 't': 1.0, 's': 3.0, 'could': 1.0, 'a': 3.0, 'we': 2.0, 'where': 1.0, 'com': 1.0, 'actually': 1.0, 'for': 3.0, 'fit': 1.0, 'perfectly': 1.0, 'him': 1.0}
Word element => {'day': 1.0, 'saving': 1.0, 'or': 1.0, 'paint': 1.0, 'never': 1.0, 'children': 1.0, 'heavy': 1.0, 'with': 1.0, 'by': 1.0, 'passed': 1.0, 'toy': 1.0, 'her': 2.0, 'was': 2.0, 'same': 1.0, 'from': 1.0, 'clown': 1.0, 'little': 1.0, 'grandchildren': 1.0, 'daughter': 1.0, 'no': 1.0, 'old': 1.0, '1': 2.0, 'parts': 1.0, 'were': 1.0, 'at': 1.0, 'who': 1.0, 'triplets': 1.0, 'its': 2.0, 'playing': 1.0, 'the': 4.0, '2': 3.0, 'favorite': 1.0, 'waddle': 1.0, 'company': 1.0, 'my': 2.0, 'are': 1.0, 'push': 2.0, 'time': 1.0, 'they': 2.0, 'is': 1.0, 'lost': 1.0, 'this': 1.0, 'it': 5.0, 'all': 1.0, 'any': 2.0, 'brother': 1.0, 'for': 3.0, 'love': 1.0, 'toddler': 1.0, 'brothers': 1.0, 'duck': 1.0, 'feet': 1.0, 'have': 1.0, 'must': 1.0, 'onto': 1.0, 'years': 2.0, 'best': 1.0, 'one': 3.0, 'bought': 2.0, 'loved': 1.0, 'something': 1.0, 'would': 2.0, 'other': 1.0, 'chase': 1.0, 'after': 1.0, 'i': 2.0, 'watching': 1.0, 'we': 1.0, 's': 1.0, 'ago': 1.0, 'a': 2.0, 'go': 1.0, 'round': 2.0, 'fifteen': 1.0, 'of': 2.0, 'yaayyyy': 1.0, 'batteries': 1.0}
Word element => {'get': 1.0, 'whistles': 1.0, 'toys': 2.0, 'on': 1.0, 'do': 1.0, 'out': 1.0, 'keeping': 1.0, 'curiosities': 1.0, 'own': 1.0, 'incite': 1.0, 'maximizing': 1.0, 'buy': 1.0, 'definitely': 1.0, 'children': 2.0, 'those': 1.0, 'not': 2.0, 'm': 1.0, 'i': 1.0, 'toy': 1.0, 'with': 2.0, 'witness': 1.0, 'able': 1.0, 'trying': 1.0, 'be': 1.0, 'will': 1.0, 'he': 3.0, 'older': 1.0, 'it': 5.0, 'parent': 2.0, 'priority': 1.0, 'look': 1.0, 'couldn': 1.0, 'and': 3.0, 'until': 1.0, 'son': 1.0, 'to': 5.0, 'as': 1.0, 'is': 2.0, 'my': 2.0, 'high': 1.0, 'are': 2.0, 'one': 1.0, 'mobile': 1.0, 'for': 2.0, 'love': 1.0, 'drawn': 1.0, 'geniuses': 1.0, 'mo': 1.0, 'challenging': 1.0, 'their': 3.0, 'tv': 1.0, 'zoned': 1.0, 'into': 3.0, 'that': 2.0, 'observing': 1.0, 'the': 3.0, 'this': 3.0, 'eyes': 1.0, 'got': 2.0, 'didn': 1.0, 'like': 2.0, 'bells': 1.0, 'contrast': 1.0, 'process': 1.0, 'but': 2.0, '7': 1.0, 'appreciates': 1.0, 'you': 2.0, 't': 2.0, 'a': 3.0, 'at': 2.0, 'who': 2.0, 'small': 1.0, 'so': 1.0, 'nuances': 1.0, 'of': 1.0, 'others': 1.0, 'capabilities': 1.0, 'learning': 1.0, 'occur': 1.0, 'turn': 2.0, 'in': 1.0, 'want': 1.0, 'if': 1.0, 'development': 1.0}
Word element => {'newborn': 1.0, 'updated': 1.0, 'available': 1.0, 'something': 1.0, 'highly': 1.0, 'given': 1.0, 'would': 1.0, 'improved': 1.0, 'known': 1.0, 'had': 1.0, 'entertainment': 1.0, 'every': 1.0, 'play': 1.0, 'changing': 1.0, 'kept': 1.0, 'version': 3.0, 'ordered': 1.0, 'idea': 1.0, 'vivid': 1.0, 'other': 1.0, 'sees': 1.0, 'color': 1.0, 'red': 1.0, 'has': 2.0, 'last': 1.0, 'black': 1.0, 'stim': 1.0, 'some': 2.0, 'noticed': 1.0, 'month': 1.0, 'before': 1.0, 'item': 1.0, 'give': 1.0, 'explain': 1.0, 'now': 1.0, 'information': 1.0, 'child': 1.0, 'start': 1.0, 'basically': 1.0, 'coordination': 1.0, 'until': 1.0, 'eye': 1.0, 'hand': 1.0, 'well': 1.0, 'frequencies': 3.0, 'colors': 4.0, 'standard': 1.0, 'reverse': 1.0, 'use': 2.0, 'though': 1.0, 'after': 1.0, 'higher': 2.0, 'moderately': 1.0, 'same': 2.0, 'sides': 1.0, 'frequency': 4.0, 'low': 3.0, 'if': 2.0, 'recommend': 1.0, 'motion': 1.0, 'you': 9.0, 'things': 2.0, 'night': 1.0, 'n': 1.0, 'first': 4.0, 'background': 1.0, 'young': 1.0, 'that': 9.0, 'patterns': 1.0, 'because': 1.0, 'detailed': 3.0, 'stimulated': 1.0, 'going': 1.0, '2': 1.0, 'side': 3.0, 'white': 1.0, 'her': 3.0, 'tracking': 1.0, 'gradually': 1.0, 'was': 3.0, 'from': 5.0, 'feet': 1.0, '6': 1.0, 'setting': 1.0, 'fan': 1.0, 'on': 3.0, 'long': 1.0, 'put': 2.0, 'much': 2.0, 'moving': 1.0, 'we': 7.0, 'take': 1.0, 'movement': 4.0, 'enough': 2.0, 'my': 1.0, 'are': 4.0, 'room': 2.0, 'lowest': 1.0, 'here': 1.0, 'loves': 1.0, 'note': 1.0, 'wire': 1.0, 'do': 1.0, 'either': 1.0, 'blowing': 1.0, 'like': 1.0, 'sometiems': 1.0, 'babies': 1.0, 'more': 2.0, 'she': 5.0, 'baby': 9.0, 'be': 2.0, 'it': 16.0, 'small': 3.0, 'a': 19.0, 'object': 1.0, 'sale': 1.0, 'really': 2.0, 'conditioner': 1.0, 'the': 36.0, 'at': 8.0, 'ring': 1.0, 'showing': 1.0, 'summer': 1.0, 'wiggling': 1.0, 'crib': 3.0, 'air': 3.0, 'mobiles': 1.0, 'want': 4.0, 'garage': 1.0, 'wakes': 2.0, 'poster': 1.0, 'so': 7.0, 'is': 11.0, 'can': 7.0, 'stimulate': 1.0, 'trip': 1.0, 'this': 11.0, 'able': 1.0, 'however': 1.0, 'easy': 2.0, 'once': 1.0, 'mobile': 6.0, 'safe': 1.0, 'over': 2.0, 'still': 2.0, 'don': 2.0, 'cards': 1.0, 'months': 4.0, 'read': 1.0, 'lot': 1.0, '5': 2.0, 'one': 3.0, 'happy': 1.0, 'keep': 3.0, 'when': 2.0, 'what': 1.0, 'as': 2.0, 'sit': 1.0, 'and': 15.0, 'just': 1.0, 'tying': 1.0, 'life': 1.0, 'should': 2.0, 'page': 1.0, 'not': 7.0, 'does': 1.0, 'move': 4.0, 'then': 2.0, 'only': 3.0, 'its': 1.0, 'years': 1.0, 'our': 2.0, 'besides': 1.0, 'to': 17.0, 'staring': 1.0, 'better': 1.0, 'bought': 1.0, 'seemed': 1.0, 'table': 1.0, 'grab': 2.0, 'stimulation': 1.0, 'taping': 1.0, 'but': 8.0, 'improve': 1.0, 'in': 4.0, 's': 5.0, 'm': 1.0, 'while': 2.0, 'interesting': 2.0, 'ceiling': 1.0, '20': 1.0, 'all': 1.0, 'newest': 1.0, 'an': 2.0, 'few': 1.0, 'times': 1.0, 'best': 1.0, 'contrary': 1.0, 'stare': 1.0, 'actually': 1.0, 'us': 1.0, 'observe': 1.0, 'up': 3.0, 'about': 6.0, 'feed': 1.0, 'herself': 1.0, 'will': 1.0, 'did': 2.0, 'time': 2.0, 'uses': 2.0, 'since': 3.0, 'found': 1.0, 'have': 5.0, 'refined': 1.0, 'nightlight': 1.0, 'detect': 1.0, 'any': 2.0, 'see': 1.0, 'i': 11.0, 'simple': 4.0, 'guess': 1.0, 'for': 7.0, 'shapes': 3.0, 'shown': 1.0, 'product': 3.0, 'flip': 1.0, 'notice': 1.0, 'cardboard': 2.0, 'they': 3.0, 'even': 1.0, 'of': 6.0, 'old': 2.0, 'how': 1.0, 'remove': 1.0, 'traditional': 1.0, 'ours': 1.0, 'using': 1.0, 'picture': 1.0, 'with': 9.0, 'which': 2.0, 'objects': 3.0, 'math': 1.0, '4': 2.0, 'case': 1.0, 'travel': 1.0, 'somewhat': 1.0, 'delicate': 1.0, 'pack': 2.0, 'currents': 1.0, 'also': 2.0, 'need': 1.0, 'feature': 1.0, 'or': 2.0, '1990': 1.0, 'grabbing': 1.0, 'good': 1.0, 'track': 2.0, 'eating': 1.0, 'nice': 1.0, 'said': 1.0, 'came': 2.0, 'around': 2.0, 'least': 1.0, 'mount': 1.0, 'there': 2.0, 'hang': 1.0, '8': 1.0, 'plastic': 1.0, 'thing': 1.0, 'fishing': 1.0, 'inch': 1.0, 'circular': 1.0, 't': 3.0, 'hanging': 1.0, 'stars': 2.0, 'anywhere': 1.0, 'getting': 1.0, 'spatial': 5.0, 'string': 2.0, 'overhang': 1.0, 'amazing': 1.0, 'carrying': 1.0, 'why': 1.0, 'science': 1.0, 'very': 4.0, 'high': 2.0, 'thin': 1.0, 'already': 1.0, 'those': 1.0}
Word element => {'daughter': 1.0, 'i': 1.0, 'it': 1.0, 'm': 1.0, 'really': 1.0, 'this': 1.0, 'disappointed': 1.0, 'with': 1.0, 'toy': 1.0, 's': 1.0, 'never': 1.0, 'my': 1.0, 'attention': 1.0, 'kept': 1.0}
Word element => {'not': 1.0, 'trying': 1.0, 'exploration': 1.0, 'hands': 1.0, 'by': 1.0, 'b': 1.0, 'a': 3.0, 't': 1.0, 'as': 1.0, 'to': 9.0, 'yellow': 1.0, 'our': 1.0, 'how': 5.0, 'themselves': 1.0, 'they': 1.0, 'manipulate': 1.0, 'have': 1.0, 'toys': 1.0, 'broken': 1.0, 'bounce': 1.0, 'simple': 2.0, 'aim': 3.0, 'forth': 1.0, 'great': 2.0, 'just': 1.0, 'figure': 2.0, 'little': 2.0, 'say': 1.0, 'around': 2.0, 'sings': 1.0, 'ball': 3.0, 'floor': 1.0, 'and': 5.0, 'bouncy': 1.0, 'set': 1.0, 'up': 3.0, 'child': 1.0, 'don': 1.0, 'need': 1.0, 'or': 2.0, 'out': 2.0, 'nothing': 2.0, 'toy': 1.0, 'dances': 1.0, 'gets': 1.0, 'everything': 1.0, 'wobbly': 1.0, 'being': 1.0, 'roll': 1.0, 'what': 1.0, 'challenges': 1.0, 'kids': 3.0, 'this': 1.0, 'mentally': 1.0, 'talks': 1.0, 'find': 1.0, 'cute': 1.0, 'after': 1.0, 'truly': 1.0, 'it': 1.0, 'month': 1.0, 'that': 1.0, 'lights': 1.0, 'for': 4.0, 'over': 1.0, 'hard': 1.0, 'durable': 1.0, 'the': 6.0, 'counting': 1.0, 'c': 1.0, 'd': 1.0, 'knock': 1.0, 'red': 1.0, 'all': 1.0, 'pins': 1.0, 'down': 1.0, 'pick': 1.0, 'guys': 1.0, 'also': 1.0, 'you': 3.0, 'teh': 1.0, 'tell': 1.0, 'your': 1.0, 'spins': 1.0, 'on': 1.0, 'teaching': 1.0, 'basic': 1.0, 'colors': 1.0, 'forget': 1.0, 'has': 1.0, 'stimulation': 1.0, 'always': 1.0, 'wow': 1.0, 'knocked': 1.0, 'try': 1.0, 'too': 2.0, 'one': 1.0, 'can': 2.0, 'so': 2.0, 'is': 2.0, 'tossed': 1.0, 'clearly': 1.0, 'light': 1.0, 'using': 1.0, 'guy': 2.0, 'bashed': 1.0}
Word element => {'obvious': 1.0, 'your': 1.0, 'for': 2.0, 'cruel': 1.0, 'excellent': 1.0, 'what': 1.0, 'noticethe': 1.0, 'and': 1.0, 'them': 1.0, 'look': 1.0, 'they': 1.0, 'upwhen': 1.0, 'shake': 1.0, 'should': 1.0, 'which': 1.0, 'sound': 1.0, 'g': 1.0, 'r': 1.0, 'produce': 1.0, 'will': 1.0, 'driving': 1.0, 'first': 1.0, 'grand': 1.0, 'snakes': 1.0, 'the': 2.0, 'slight': 1.0, 'simple': 1.0, 'warning': 1.0, 'somebody': 1.0, 'these': 2.0, 'parents': 2.0, 'gag': 2.0, 'there': 1.0, 'of': 3.0, 't': 2.0, 's': 1.0, 'a': 5.0, 'prank': 1.0, 'called': 1.0, 'more': 2.0, 'is': 2.0, 'do': 1.0, 'away': 1.0, 'car': 1.0, 'eggsprank': 1.0, 'an': 2.0, 'rattlesnake': 1.0, 'backseat': 1.0, 'recommend': 1.0, 'it': 3.0, 'reasons': 1.0, 'one': 1.0, 'mechanism': 1.0, 'i': 3.0, 'putting': 1.0, 'behind': 1.0, 'envelopes': 1.0, 'or': 2.0, 'bump': 1.0, 'envelope': 1.0, 'someone': 2.0, 'n': 1.0, 'not': 2.0, 'therattlesnake': 1.0, 'would': 1.0, 'ever': 1.0, 'than': 2.0, 'nothing': 1.0, 'lt': 1.0, 'in': 2.0, 'eggs': 1.0, 'keep': 1.0, 'while': 1.0, 'hidden': 1.0, 'from': 1.0, 'snake': 1.0, 'to': 2.0, 'next': 1.0, 'that': 2.0, 'avoid': 1.0, 'hatching': 1.0, 'but': 1.0, 'can': 1.0, 'picture': 1.0, 'l': 1.0, 'says': 1.0, 'just': 2.0, 'heat': 1.0, 'few': 1.0}
Word element => {'distribute': 1.0, 'finally': 1.0, 'seems': 1.0, 'now': 1.0, 'us': 1.0, 'good': 1.0, 'have': 1.0, 'preschool': 1.0, 'toddler': 1.0, 'educational': 1.0, 'they': 2.0, 'interactive': 1.0, 'of': 1.0, 'selection': 1.0, 'not': 2.0, 'mouse': 1.0, 'did': 2.0, 'keyboard': 1.0, 'cds': 1.0, 'two': 1.0, 'skills': 1.0, 'got': 1.0, 'buttons': 1.0, 'then': 2.0, '100': 1.0, 'about': 1.0, 'distribution': 1.0, 'fao': 1.0, 'found': 1.0, 'developer': 1.0, 'rabbit': 1.0, 'this': 1.0, 'until': 1.0, 'that': 1.0, 'into': 1.0, 'at': 2.0, 'was': 4.0, 'daughter': 1.0, 'very': 4.0, 'worked': 1.0, 'innovative': 1.0, 'port': 1.0, 'visual': 1.0, 'introduced': 1.0, 'product': 1.0, 'for': 3.0, 'in': 1.0, '1997': 1.0, 'the': 7.0, 'we': 2.0, 'require': 1.0, 'board': 1.0, '8': 1.0, 'old': 1.0, 'israeli': 1.0, 'it': 6.0, 'month': 1.0, 'she': 2.0, 'our': 1.0, 'to': 2.0, 'sw': 1.0, 'least': 1.0, 'set': 1.0, '18': 1.0, 'key': 1.0, 'used': 1.0, 'on': 1.0, '3': 1.0, 'large': 1.0, 'just': 1.0, 'printer': 1.0, 'schwarts': 1.0, 'reader': 1.0, 'way': 1.0, 'someone': 1.0, 'when': 1.0, 'you': 1.0, 'sold': 1.0, 'moved': 1.0, 'and': 3.0, 'plugged': 1.0}
Word element => {'elmo': 1.0, 'pc': 1.0, 'comfy': 1.0, 'back': 1.0, 'much': 1.0, 'and': 4.0, 'daughter': 1.0, 'gets': 1.0, 'would': 1.0, 'was': 2.0, 'first': 1.0, 'with': 1.0, 'this': 2.0, 'send': 1.0, 'thought': 1.0, 'thinking': 1.0, 'i': 4.0, 'old': 1.0, 'played': 1.0, 'it': 8.0, 'she': 2.0, 'simple': 1.0, 'dud': 1.0, 'loves': 1.0, 'be': 1.0, 'turns': 1.0, 'the': 3.0, 'but': 1.0, '2': 1.0, 'have': 1.0, 'to': 3.0, 'all': 1.0, 'a': 3.0, 'going': 1.0, 'we': 1.0, 's': 2.0, 'very': 1.0, 'kick': 1.0, 'year': 1.0, 'not': 2.0, 'out': 2.0, 'my': 1.0, 'of': 1.0, 'time': 1.0, 'needs': 1.0, 'in': 1.0, 'toy': 2.0, 'say': 1.0, 'interaction': 1.0, 'is': 1.0}
Word element => {'up': 1.0, 'has': 1.0, '15': 1.0, 'now': 2.0, 'old': 1.0, 'months': 2.0, 'was': 1.0, 'started': 1.0, 'toddler': 1.0, 'a': 1.0, 'definitely': 1.0, 'would': 1.0, 'worry': 1.0, 'cord': 1.0, 'gone': 1.0, 'about': 1.0, 'no': 1.0, 'there': 1.0, '12': 1.0, 'what': 1.0, 'side': 1.0, 'using': 1.0, 'computer': 1.0, 'level': 1.0, 'more': 1.0, 'is': 4.0, 'herself': 1.0, 'i': 5.0, 'whenever': 1.0, 'the': 6.0, 'push': 1.0, 'daughter': 2.0, 'this': 4.0, 'with': 3.0, 'that': 1.0, 'loves': 3.0, 'lap': 1.0, 'in': 2.0, 'she': 7.0, 'it': 2.0, 'covers': 1.0, 'pc': 2.0, 'things': 1.0, 'at': 1.0, 'always': 1.0, 'of': 1.0, 'her': 4.0, 'favorite': 1.0, 'anyone': 1.0, 'trying': 1.0, 'keys': 1.0, 'least': 1.0, 'to': 4.0, 'whatever': 1.0, '2': 1.0, 'can': 2.0, 'but': 1.0, 'on': 3.0, 'put': 2.0, 'hour': 1.0, 'will': 1.0, 'an': 1.0, 'love': 1.0, 'product': 1.0, 'for': 1.0, 'highchair': 1.0, 'phone': 2.0, 'front': 1.0, 'when': 1.0, 'am': 1.0, 'entertain': 1.0, 'and': 5.0, 'espicially': 1.0, 'another': 1.0, 'reccommend': 1.0, 'my': 3.0, 'aspect': 1.0}
Word element => {'year': 1.0, 'a': 1.0, 'last': 1.0, 'in': 1.0, 'member': 1.0, 'family': 1.0, 'or': 1.0, 'experience': 1.0, 'our': 1.0, 'teethers': 1.0, 'had': 1.0, 'one': 2.0, 'for': 2.0, 'kids': 1.0, 'i': 1.0, 'buy': 1.0, '1': 1.0, 'and': 1.0, 'about': 1.0, 'any': 1.0, 'my': 1.0, '2': 1.0, 'these': 1.0, 'the': 2.0, 'of': 3.0, 'favorite': 1.0, 'batteries': 1.0, 'been': 1.0, 'three': 1.0, 'have': 1.0, 'all': 2.0, 'it': 1.0, 's': 1.0, 'them': 1.0, 'expectant': 1.0, 'friend': 1.0}
Word element => {'toy': 1.0, 'grosses': 1.0, 'dirt': 1.0, 'particular': 1.0, 'dirty': 1.0, 'maintenance': 1.0, 'always': 1.0, 'more': 1.0, 'comes': 1.0, 'is': 1.0, 'air': 1.0, 'out': 2.0, 'dust': 1.0, 'attracts': 1.0, 'this': 2.0, 'with': 1.0, 'to': 1.0, 'magnet': 1.0, 'our': 1.0, 'just': 2.0, 'me': 1.0, 'not': 2.0, 'it': 8.0, 'she': 1.0, 'and': 5.0, 'vibrating': 1.0, 'setting': 1.0, 'i': 3.0, 'tried': 1.0, 'of': 2.0, 'wire': 1.0, '6': 1.0, 'm': 1.0, 'points': 1.0, 'only': 1.0, 'try': 1.0, 'that': 2.0, 'into': 1.0, 'almost': 1.0, 'clean': 1.0, 'different': 1.0, 'yellow': 1.0, 'also': 2.0, 'at': 1.0, 'kid': 2.0, 'for': 3.0, 'bored': 1.0, 'teething': 1.0, 'fiber': 1.0, 'months': 1.0, 'stuff': 1.0, 'on': 2.0, 'really': 1.0, 'heavy': 1.0, 'the': 3.0, 's': 4.0, 'a': 4.0, 'baby': 2.0, 'when': 2.0, 've': 1.0, 'would': 3.0, 'like': 1.0, 'hold': 1.0, 'my': 1.0, 'high': 1.0, 'watch': 1.0, 'move': 1.0, 'so': 1.0, 'bit': 1.0, 'even': 1.0, 'part': 1.0, 'but': 2.0, 'seemed': 1.0}
Word element => {'money': 1.0, 'the': 1.0, 'worth': 1.0, 'opinion': 1.0, 'big': 1.0, 'in': 2.0, 'mouth': 1.0, 'clamp': 1.0, 'push': 1.0, 'my': 2.0, 'ridiculous': 1.0, 'not': 1.0, 'just': 1.0, 'started': 1.0, 'huge': 1.0, 'vibrating': 1.0, 'and': 2.0, 'awkward': 1.0, 's': 3.0, 'is': 1.0, 'on': 3.0, 'teether': 1.0, 'hard': 2.0, 'it': 4.0, 'this': 1.0, 'no': 1.0, 'idea': 1.0, 'to': 2.0, 'had': 1.0, 'was': 1.0, 'her': 1.0, 'down': 2.0, 'what': 1.0, 'too': 1.0, 'daughter': 1.0, 'going': 1.0, 'when': 1.0}
Word element => {'they': 1.0, 'lots': 1.0, 'have': 1.0, 'from': 1.0, 'stop': 1.0, 'that': 2.0, 'only': 1.0, 'this': 1.0, 'teething': 2.0, 'thing': 1.0, 'was': 3.0, 'had': 1.0, 'all': 1.0, 'to': 3.0, 'of': 2.0, 'her': 3.0, 'recommended': 2.0, 'love': 1.0, 'for': 2.0, 'one': 1.0, 'daughter': 1.0, 'when': 2.0, 'made': 2.0, 'the': 1.0, 'my': 3.0, 'happy': 1.0, 'and': 3.0, 'me': 1.0, 'it': 6.0, 'she': 2.0, 'i': 2.0, 'tried': 1.0, 'everything': 1.0, 'friends': 2.0, 'so': 1.0, 'imaginable': 1.0, 'hold': 1.0, 'far': 1.0, 'crying': 1.0, 'enough': 1.0, 'complaint': 1.0, 'vibrate': 1.0, 'make': 1.0, 'strong': 1.0, 'because': 1.0, 'mouth': 1.0, 'wasn': 1.0, 'but': 1.0, 'cuddly': 1.0, 'is': 1.0, 't': 1.0, 'a': 1.0}
Word element => {'baby': 1.0, 'gums': 1.0, 'the': 1.0, 'massages': 1.0, 'handle': 1.0, 'teether': 1.0, 'while': 1.0, 'easy': 1.0, 'to': 1.0, 'chewing': 1.0, 'and': 1.0, 'as': 1.0, 'great': 1.0, 'it': 2.0, 'a': 1.0, 'on': 1.0, 'is': 2.0, 'good': 1.0, 'has': 1.0, 'texture': 1.0}
Word element => {'hoped': 1.0, 'how': 1.0, 'exactly': 1.0, 'worked': 1.0, 'that': 1.0, 'a': 1.0, 'it': 6.0, 'since': 1.0, 'name': 1.0, 'daughter': 2.0, 'when': 1.0, 'washcloths': 1.0, 'rings': 1.0, 'also': 2.0, 'rubbed': 1.0, 'cubes': 1.0, 'to': 7.0, 'through': 1.0, 'took': 1.0, 'teething': 1.0, 'came': 1.0, 'cold': 1.0, 'just': 1.0, 'her': 10.0, 'could': 1.0, 'go': 2.0, 'all': 2.0, 'other': 2.0, 'tooth': 1.0, 'my': 3.0, 'purchase': 1.0, 'then': 1.0, 'we': 1.0, 'reviews': 1.0, 'mouth': 2.0, 'everything': 1.0, 'for': 1.0, '10': 1.0, 'd': 2.0, 'after': 1.0, 'the': 7.0, 'of': 1.0, 'reading': 1.0, 'like': 1.0, 'discovered': 1.0, 'vibration': 1.0, 'soothe': 1.0, 'was': 1.0, 'months': 1.0, 'product': 1.0, 'ordered': 1.0, 'tried': 1.0, 'old': 1.0, 'well': 1.0, 'i': 8.0, 'first': 2.0, 'this': 4.0, 'you': 1.0, 'gums': 2.0, 'pleased': 1.0, 'ice': 1.0, 'up': 2.0, 'wasn': 1.0, 'interested': 1.0, 'm': 1.0, 'terribly': 1.0, 'in': 4.0, 'become': 1.0, 'toy': 3.0, 'has': 1.0, 't': 1.0, 'likes': 1.0, 'but': 1.0, 'put': 2.0, 'make': 1.0, 'noticed': 1.0, 'on': 2.0, 'back': 2.0, 'harder': 1.0, 'bother': 1.0, 'at': 1.0, 'look': 1.0, 'is': 2.0, 'handle': 1.0, 'made': 1.0, 'side': 1.0, 'with': 1.0, 'vibrate': 1.0, 'squeezed': 1.0, 'face': 1.0, 'went': 1.0, 'and': 9.0, 'priceless': 1.0, 'eyebrows': 1.0, 'bit': 1.0, 'so': 1.0, 'down': 2.0, 'let': 1.0, 'seemed': 1.0, 'really': 2.0, 'handed': 1.0, 'seem': 1.0, 'have': 1.0, 'little': 1.0, 'she': 5.0, 'many': 1.0, 'roller': 1.0}
Word element => {'baby': 1.0, 'a': 2.0, 'daughter': 1.0, 'gums': 1.0, 'easily': 1.0, 'triggered': 1.0, 'and': 2.0, 'like': 1.0, 'vibration': 1.0, 'amount': 1.0, 'just': 1.0, 'the': 4.0, 'great': 1.0, 'my': 1.0, 'this': 1.0, 'she': 1.0, 'it': 4.0, 'with': 1.0, '5mth': 1.0, 'enough': 1.0, 'feels': 1.0, 'must': 1.0, 'have': 2.0, 'teething': 2.0, 'right': 1.0, 'effort': 1.0, 'old': 1.0, 'i': 1.0, 'ribbing': 1.0, 'can': 1.0, 'money': 1.0, 'of': 2.0, 'really': 1.0, 'likes': 1.0, 'toy': 1.0, 'has': 1.0, 'activate': 1.0, 'little': 1.0, 'that': 1.0, 'sides': 1.0, 'herself': 1.0, 'star': 1.0, 'so': 1.0, 'her': 1.0, 'different': 2.0, '3': 1.0, 'on': 1.0, 'where': 1.0, 'product': 1.0, 'for': 2.0}
Word element => {'massages': 1.0, 'him': 1.0, 'not': 1.0, 'because': 2.0, 'teether': 1.0, 'love': 1.0, 'out': 1.0, 'so': 2.0, 'pulls': 1.0, 'mouth': 1.0, 'toy': 1.0, 'i': 1.0, 'old': 1.0, 'grandson': 1.0, 'the': 1.0, 'happy': 1.0, 'my': 1.0, 'thought': 1.0, 'moves': 1.0, 'month': 1.0, 'of': 1.0, 'laugh': 1.0, 'this': 3.0, 'it': 5.0, 'he': 2.0, '10': 1.0, 'movement': 1.0, 'to': 1.0, 'was': 1.0, 'funny': 1.0, 'makes': 1.0, 'laughs': 1.0, 'when': 1.0, 'but': 1.0, 'put': 1.0, 'does': 1.0, 'his': 2.0, 'teeth': 1.0, 'saying': 1.0, 'in': 1.0}
Word element => {'couple': 1.0, 'maybe': 1.0, 'in': 2.0, 'hands': 1.0, 'using': 1.0, 'for': 1.0, 'all': 1.0, 'to': 3.0, 'skills': 1.0, 'impressive': 1.0, 'a': 2.0, 'pretty': 1.0, 'but': 1.0, 'four': 1.0, 'teether': 1.0, 'have': 1.0, 'he': 1.0, 'this': 2.0, 'it': 2.0, 'month': 1.0, 'teething': 2.0, 'old': 1.0, 'motor': 1.0, 'two': 2.0, 'apply': 1.0, 'no': 1.0, 'my': 2.0, 'started': 1.0, 'has': 1.0, 'his': 1.0, 'huge': 1.0, 'months': 2.0, 'more': 1.0, 'comes': 1.0, 'around': 1.0, 'is': 2.0, 'really': 1.0, 'and': 2.0, 'intrest': 1.0, 'when': 1.0, 'you': 1.0, 'quite': 1.0, 'bit': 1.0, 'of': 1.0, 'pressure': 1.0, 'vibrate': 1.0, 'other': 1.0, 'son': 1.0, 'at': 1.0, 'who': 1.0, 'also': 1.0, 'shows': 1.0, 'absolutely': 1.0}
Word element => {'hard': 1.0, 'bit': 1.0, 'it': 1.0, 'is': 3.0, 'down': 1.0, 'a': 1.0, 'good': 1.0, 'teether': 1.0, 'which': 1.0, 'required': 1.0, 'for': 2.0, 'ability': 1.0, 'the': 1.0, 'my': 2.0, 'to': 1.0, 'student': 2.0, 'handicapped': 1.0, 'but': 1.0}
Word element => {'son': 1.0, 'bother': 1.0, 'seem': 1.0, 'not': 1.0, 'does': 1.0, 'i': 1.0, 'play': 1.0, 'chew': 2.0, 'but': 2.0, 'than': 1.0, 'for': 2.0, 'toy': 1.0, 'them': 1.0, 'a': 4.0, 'vibration': 1.0, 'and': 1.0, 'is': 2.0, 'it': 3.0, 'with': 1.0, 'expecting': 1.0, 'on': 1.0, 'bit': 3.0, 'harder': 1.0, 'my': 1.0, 'smaller': 1.0, 'babies': 1.0, 'great': 1.0, 'the': 1.0, 'to': 3.0, 'was': 2.0, 'stronger': 1.0}
Word element => {'suck': 1.0, 'back': 1.0, 'there': 1.0, 'bit': 1.0, 'a': 1.0, 'favorite': 1.0, 'has': 1.0, 'yes': 1.0, 'vibrating': 1.0, 'theinfantino': 1.0, 'if': 2.0, 'strawberry': 1.0, 'points': 2.0, 'all': 1.0, 'to': 3.0, 'the': 3.0, 'and': 5.0, 'surfaces': 1.0, 'softer': 1.0, 'turn': 1.0, 'in': 1.0, 'seems': 1.0, 'will': 1.0, 'also': 1.0, 'cannot': 1.0, 'like': 1.0, 'is': 3.0, 'two': 1.0, 'no': 2.0, 'seem': 1.0, 'times': 1.0, 'you': 1.0, 'point': 2.0, 'months': 1.0, 'into': 1.0, 'loves': 1.0, 'cranky': 1.0, 'this': 3.0, 'she': 6.0, 'it': 3.0, 'daughter': 1.0, 'chew': 1.0, 'than': 1.0, 'mouth': 1.0, 'her': 4.0, 'different': 1.0, 'rubber': 1.0, 'teether': 1.0, 'my': 1.0, 'requires': 1.0, 'less': 1.0, 'pressure': 1.0, 'on': 1.0, 'make': 2.0, 'vibrate': 2.0, 'not': 1.0, 'vigorously': 1.0, 'teething': 1.0, 'yet': 2.0, 'for': 1.0, 'smiles': 1.0, 'but': 1.0, 'getting': 1.0, 'pinch': 1.0, 'their': 1.0, 'are': 2.0, 'at': 1.0, 'three': 1.0}
Word element => {'you': 1.0, 'like': 1.0, 'otherwise': 1.0, 'other': 1.0, 'the': 1.0, 'on': 1.0, 'chews': 2.0, 'corner': 1.0, 'good': 1.0, 'of': 1.0, 'takes': 1.0, 'teething': 1.0, 'month': 1.0, 'but': 1.0, 'idea': 1.0, 'pressure': 1.0, 'she': 2.0, 'lot': 1.0, 'a': 3.0, 'regular': 1.0, 'is': 1.0, 'squeeze': 1.0, 'it': 4.0, 'this': 1.0, 'one': 1.0, 'for': 1.0, 'while': 1.0, 'vibrate': 2.0, 'end': 1.0, 'my': 1.0, 'make': 2.0, 'can': 1.0, '7': 1.0, 'granddaughter': 1.0, 'to': 2.0, 'old': 1.0, 'i': 1.0}
Word element => {'go': 1.0, 'just': 1.0, 'or': 1.0, 'back': 1.0, 'work': 1.0, 'to': 2.0, 'folks': 1.0, 'my': 1.0, 'several': 1.0, 'you': 1.0, 'lasted': 2.0, 'need': 1.0, 'special': 1.0, 'the': 4.0, 'these': 1.0, 'of': 1.0, 'years': 1.0, 'style': 1.0, 'us': 1.0, 'daughter': 1.0, 'needs': 1.0, 'life': 1.0, '3': 1.0, 'who': 1.0, 'teether': 1.0, 'likes': 1.0, 'old': 1.0, 'battery': 2.0, 'vibration': 1.0, 'older': 1.0, 'this': 1.0, 'before': 1.0, 'on': 1.0, 'months': 1.0, 'one': 2.0, 'for': 1.0, 'died': 1.0}
Word element => {'lot': 1.0, 'into': 1.0, 'biting': 1.0, 'enjoy': 1.0, 'but': 1.0, 'massages': 1.0, 'next': 1.0, 'all': 1.0, 'to': 2.0, 'addition': 1.0, 'toys': 1.0, 'favorite': 1.0, 'is': 1.0, 'really': 1.0, 'in': 1.0, 'teething': 1.0, 'must': 1.0, 'a': 2.0, 'don': 1.0, 'vibration': 1.0, 'gums': 1.0, 'giraffe': 1.0, 'it': 1.0, 'he': 1.0, 'this': 1.0, 'sophie': 1.0, 'the': 3.0, 't': 1.0, 'does': 1.0, 'his': 2.0, 'i': 1.0, 'know': 1.0, 'if': 1.0}
Word element => {'introduce': 1.0, 'entertainment': 1.0, 'loves': 1.0, 'his': 1.0, 'too': 2.0, 's': 1.0, 'him': 2.0, 'star': 1.0, 'guy': 1.0, 'clean': 1.0, 'opposite': 1.0, 'little': 1.0, 'my': 1.0, 'great': 1.0, 'the': 1.0, 'for': 1.0, 'and': 2.0, 'it': 2.0, 'he': 1.0, 'teether': 1.0, 'likes': 1.0, 'side': 1.0, 'spinning': 1.0, 'to': 3.0, 'was': 1.0, 'easy': 2.0}
Word element => {'disappointing': 1.0, 'very': 1.0, 'enough': 1.0, 'things': 1.0, 'on': 1.0, 'chew': 1.0, 'vibrate': 1.0, 'while': 1.0, 'product': 1.0, 'boy': 1.0, 'little': 1.0, 'my': 1.0, 'sucks': 1.0, 'this': 2.0, 'hard': 2.0, 'he': 3.0, 'bites': 1.0, 's': 1.0, 'teething': 1.0, 'never': 1.0, 'get': 1.0, 'and': 1.0, 'dumb': 1.0, 'down': 1.0, 'to': 4.0, 'was': 1.0, 'thing': 1.0, 'able': 1.0, 'loves': 1.0, 'bite': 1.0}
Word element => {'while': 1.0, 'loved': 1.0, 'my': 1.0, 'teething': 1.0, 'bag': 1.0, 'a': 1.0, 'teeth': 1.0, 'it': 2.0, 'can': 1.0, 'on': 2.0, 'kids': 1.0, 'gums': 1.0, 'little': 1.0, 'once': 1.0, 'to': 3.0, 'vibrates': 1.0, 'both': 1.0, 'etc': 1.0, 'down': 1.0, 'part': 1.0, 'hold': 1.0, 'chomp': 1.0, 'carabiner': 1.0, 'easy': 1.0, 'diaper': 1.0, 'the': 1.0, 'easily': 1.0, 'hook': 1.0, 'yellow': 1.0, 'rings': 1.0, 'via': 1.0, 'or': 1.0}
Word element => {'love': 1.0, 'comfort': 1.0, 'helps': 1.0, 'naturally': 1.0, 'down': 1.0, 'they': 1.0, 'great': 1.0, 'the': 3.0, 'make': 1.0, 'it': 1.0, 'with': 1.0, 'this': 1.0, 'direction': 1.0, 'to': 2.0, 'bite': 1.0, 'quite': 1.0, 'vibration': 2.0, 'get': 1.0, 'and': 2.0, 'specific': 1.0, 'can': 1.0, 'months': 1.0, '4': 1.0, 'just': 1.0, 'not': 1.0, 'is': 2.0, 'son': 1.0, 'my': 1.0, 'a': 2.0, 'happen': 1.0, 'them': 1.0, 'teethers': 1.0, 'of': 2.0, 'some': 1.0, 'hang': 1.0, 'other': 1.0, 'teether': 1.0, 'have': 1.0, 'you': 1.0, 'i': 1.0, 'old': 1.0, 'bend': 1.0, 'in': 1.0}
Word element => {'teething': 1.0, 'while': 1.0, 'mouth': 1.0, 'his': 1.0, 'soothe': 1.0, 'really': 1.0, 'without': 1.0, 'after': 1.0, 'and': 2.0, 'bought': 1.0, 'lose': 1.0, 'i': 2.0, 'one': 2.0, 'next': 1.0, 'very': 1.0, 'day': 1.0, 'son': 1.0, 'the': 1.0, 'my': 1.0, 'arrived': 1.0, 'managed': 1.0, 'miserable': 1.0, 'he': 2.0, 'it': 3.0, 'this': 1.0, 'helped': 1.0, 'grateful': 1.0, 'other': 1.0, 'we': 1.0, 'that': 1.0, 'was': 3.0, 'had': 1.0, 'to': 1.0}
Word element => {'purposes': 1.0, 'doubles': 1.0, 'clearly': 1.0, 'which': 1.0, 'ring': 1.0, 'free': 1.0, 'extra': 1.0, 'smart': 1.0, 'between': 1.0, 'top': 1.0, 'star': 1.0, 'in': 1.0, 'also': 1.0, 'goes': 2.0, 'guy': 1.0, 'on': 2.0, 'my': 1.0, 'have': 2.0, 'these': 1.0, 'hanging': 1.0, 'the': 2.0, 'use': 1.0, 'i': 1.0, 'two': 1.0, 'he': 2.0, 'it': 2.0, 'this': 1.0, 'packaging': 1.0, 'kneeling': 1.0, 'of': 1.0, 'get': 1.0, 'see': 1.0, 'little': 1.0, 'through': 1.0, 'teethers': 1.0, 'both': 1.0, 'his': 1.0, 'or': 1.0, 'as': 3.0, 'to': 3.0, 'vibrate': 1.0, 'hurting': 1.0, 'sitting': 1.0, 'but': 1.0, 'and': 1.0, 'soon': 1.0, 'gums': 1.0, 'teething': 1.0, 'start': 1.0, 'spurts': 1.0, 'straight': 1.0, 'actually': 1.0, 'for': 2.0, 'likes': 1.0, 'variable': 1.0, 'toy': 1.0, 'a': 1.0, 's': 1.0}
Word element => {'as': 1.0, 'but': 2.0, 'and': 2.0, 'only': 1.0, 'do': 1.0, 'bottom': 1.0, 'of': 1.0, 'spinning': 1.0, 'my': 1.0, 'first': 1.0, 'with': 2.0, 'this': 2.0, 'he': 2.0, 'it': 2.0, 'fascinated': 1.0, 'son': 1.0, 'have': 1.0, 'must': 1.0, 'more': 1.0, 'is': 2.0, 'after': 1.0, 'part': 2.0, 'obsessed': 1.0, 'what': 1.0, 'was': 1.0, 'vibrating': 1.0, 'now': 1.0, 'having': 1.0, 'well': 1.0, 'toy': 1.0, 'has': 1.0, 'switched': 1.0, 'months': 1.0, 'one': 1.0, 'that': 1.0, 'loves': 1.0, 'on': 1.0, 'think': 1.0, 'chewing': 1.0, 'teether': 2.0, 'rubber': 1.0, 'would': 1.0, '4': 1.0, 'i': 3.0, 'don': 1.0, 'know': 1.0, 'not': 1.0, 'the': 2.0, 'without': 1.0, 't': 1.0, 'a': 3.0}
Word element => {'that': 1.0, 'her': 1.0, 'enough': 1.0, 'cracks': 1.0, 'on': 1.0, 'she': 1.0, 'fun': 1.0, 'we': 1.0, 'the': 1.0, 't': 1.0, 'it': 1.0, 'this': 2.0, 'teething': 1.0, 's': 1.0, 'seem': 1.0, 'for': 2.0, 'to': 1.0, 'me': 1.0, 'vibration': 1.0, 'and': 2.0, 'be': 1.0, 'bought': 1.0, 'still': 1.0, 'upcoming': 1.0, 'up': 1.0, 'there': 1.0, 'but': 1.0, 'bites': 1.0, 'just': 1.0, 'my': 1.0, 'don': 1.0, 'baby': 1.0, 'i': 1.0, 'thinks': 1.0, 'thing': 1.0, 'is': 1.0, 'good': 1.0}
Word element => {'giraffe': 1.0, 'sophie': 1.0, 'little': 1.0, 'keys': 1.0, 'fake': 1.0, 'sticking': 1.0, 're': 1.0, 'point': 1.0, 'return': 1.0, 'for': 1.0, 'actually': 1.0, 'teeth': 1.0, 'before': 1.0, 'again': 1.0, 'use': 1.0, 'we': 1.0, 't': 1.0, 'go': 1.0, 'mouth': 1.0, 'get': 1.0, 'and': 5.0, 'giving': 1.0, 'me': 1.0, 'now': 1.0, 'away': 1.0, 'this': 2.0, 'can': 2.0, 'but': 1.0, 'will': 1.0, 'her': 7.0, 'what': 1.0, 'to': 5.0, 'lo': 1.0, 'my': 1.0, 'definitely': 1.0, 'is': 2.0, 'it': 5.0, 'she': 4.0, 'looks': 1.0, 'heck': 1.0, 'the': 5.0, 'tried': 1.0, 'never': 1.0, 'teething': 1.0, 'press': 1.0, 'since': 1.0, 'at': 4.0, 've': 1.0, 'hoping': 1.0, 'in': 2.0, 'put': 1.0, 'on': 1.0, 'own': 1.0, 'have': 1.0, 'want': 1.0, 'same': 1.0, 'imagine': 1.0, 'time': 1.0, 'i': 5.0, 'thinking': 1.0, 'massager': 1.0, 'that': 1.0, 'come': 1.0, 'pulls': 1.0, 'face': 1.0, '34': 2.0, 'm': 1.0, 'll': 1.0}
Word element => {'away': 1.0, 'when': 1.0, 'cries': 1.0, 'didn': 1.0, 'has': 2.0, 'so': 1.0, 'time': 1.0, 'complaint': 1.0, 'off': 1.0, 'enough': 1.0, 'from': 1.0, 'hard': 2.0, 'with': 1.0, 'on': 2.0, '3': 1.0, 'at': 1.0, 'it': 4.0, 'she': 3.0, 'take': 1.0, 'activating': 1.0, 'of': 1.0, 't': 1.0, 'a': 1.0, 'early': 1.0, 'my': 2.0, 'switch': 1.0, 'biting': 1.0, 'the': 4.0, 'is': 2.0, 'old': 1.0, 'i': 4.0, 'an': 2.0, 'have': 2.0, 'reviews': 1.0, 'daughter': 1.0, 'try': 1.0, 'only': 2.0, 'do': 1.0, 'her': 4.0, 'to': 5.0, 'allot': 1.0, 'had': 1.0, 'age': 1.0, 'vibration': 2.0, 'hold': 2.0, 'months': 1.0, 'bought': 1.0, 'one': 1.0, 'actually': 1.0, 'for': 2.0, 'by': 1.0, 'corners': 1.0, 'teether': 1.0, 'activate': 1.0, 'that': 1.0, 'loves': 1.0, 'this': 2.0, 'based': 1.0, 'wish': 1.0}
Word element => {'product': 1.0, 'rattle': 1.0, 'a': 1.0, 'quality': 1.0, 'like': 1.0, 'baby': 1.0, 'this': 1.0, 'loves': 1.0, 'my': 1.0, 'the': 1.0, 'also': 1.0, 'vibrations': 1.0, 'is': 1.0, 'on': 1.0, 'his': 1.0, 'good': 1.0, 'he': 1.0, 'it': 1.0, 'teeth': 1.0, 'shakes': 1.0}
Word element => {'interesting': 1.0, 'also': 1.0, 'it': 1.0, 'discomfort': 1.0, 'ease': 1.0, 'vibration': 1.0, 'ones': 1.0, 've': 1.0, 'colors': 1.0, 'bought': 1.0, 'several': 1.0, 'very': 1.0, 'and': 2.0, 'teethers': 1.0, 'this': 1.0, 'i': 2.0, 'one': 1.0, 'of': 1.0, 'make': 1.0, 'helps': 1.0, 'the': 4.0, 'best': 1.0}
Word element => {'phased': 1.0, 'un': 1.0, 'relatively': 1.0, 'again': 1.0, 'themselves': 1.0, 'bonk': 1.0, 'they': 1.0, 'around': 1.0, 'swinging': 1.0, 'phase': 1.0, 'toy': 1.0, 'substantial': 1.0, 'toys': 1.0, 'chomp': 1.0, 'nibs': 1.0, 'end': 1.0, 'spinning': 1.0, 'really': 2.0, 'also': 1.0, 'tips': 1.0, 'plastic': 1.0, '34': 4.0, 'available': 1.0, 'by': 2.0, 'bite': 1.0, 'about': 1.0, 'better': 1.0, 'three': 1.0, 'learned': 1.0, 'chew': 1.0, 'if': 1.0, 'still': 1.0, 'go': 2.0, 'learn': 1.0, 'gnaws': 1.0, 'vibrate': 1.0, 'does': 1.0, 'even': 3.0, 'safety': 1.0, 'got': 2.0, 'out': 1.0, 'teething': 1.0, 'vigorously': 1.0, 'seemed': 3.0, 'big': 1.0, 'because': 2.0, 'that': 7.0, 'another': 1.0, 'and': 6.0, 'soon': 1.0, 'there': 1.0, 'actually': 1.0, 'for': 2.0, 'too': 2.0, 'one': 3.0, 'months': 1.0, 'unfortunate': 1.0, 'replaceable': 1.0, 'time': 1.0, 'worried': 1.0, 'just': 1.0, 'will': 2.0, 'but': 5.0, '2': 1.0, 'rattle': 1.0, 'a': 5.0, 's': 3.0, 'likes': 2.0, 't': 3.0, 'feature': 1.0, 'i': 5.0, 'buy': 1.0, 'sophie': 1.0, 'these': 1.0, 'hard': 3.0, 'over': 1.0, 'happen': 1.0, 'of': 3.0, 'the': 9.0, 'push': 1.0, 'little': 5.0, 'like': 3.0, 'vibration': 1.0, 'not': 2.0, 'may': 1.0, 'my': 1.0, 'me': 2.0, 'our': 1.0, 'how': 2.0, 'this': 4.0, 'other': 1.0, 'all': 1.0, 'to': 11.0, 'as': 1.0, 'have': 1.0, 'calms': 1.0, 'son': 1.0, 'hate': 1.0, 'has': 2.0, 'always': 1.0, 'your': 1.0, 'any': 1.0, 'probably': 1.0, 'had': 1.0, 'now': 2.0, 'away': 2.0, 'on': 5.0, 'rubber': 1.0, 'make': 2.0, 'star': 3.0, 'bother': 1.0, 'batteries': 1.0, 'shaped': 1.0, 'is': 6.0, 'at': 2.0, '1': 1.0, 'since': 1.0, 'chewing': 2.0, 'though': 2.0, 'part': 1.0, 'know': 1.0, 'bit': 2.0, 'can': 1.0, 'so': 2.0, 'when': 2.0, 'are': 1.0, 'first': 1.0, 'options': 1.0, 'hasn': 1.0, 'it': 16.0, 'him': 3.0, 'much': 1.0, 'love': 1.0, 'he': 10.0, 'far': 1.0, '5': 1.0, 'himself': 1.0, 'loves': 2.0, 'difficult': 1.0, 'down': 3.0, 'in': 2.0, 'm': 1.0, 'holding': 1.0, 'doesn': 1.0}
Word element => {'clean': 1.0, 'easy': 1.0, 'plus': 1.0, 'works': 1.0, 'found': 1.0, 'still': 2.0, '18': 1.0, 'carry': 1.0, 'too': 2.0, 'when': 1.0, 'i': 2.0, 'my': 1.0, 'the': 1.0, 'very': 1.0, 'son': 1.0, 'is': 1.0, 'to': 1.0, 'was': 1.0, 'now': 1.0, 'for': 1.0, 'loved': 1.0, 'got': 1.0, 'about': 1.0, 'on': 1.0, 'months': 2.0, 'over': 1.0, 'he': 5.0, 'this': 1.0, 'bitting': 1.0, 'it': 5.0, 'bits': 1.0, 'and': 2.0, '8': 1.0, 'all': 1.0, 'house': 1.0}
Word element => {'isn': 1.0, 'for': 1.0, 'turn': 1.0, 'and': 2.0, 'done': 1.0, 'help': 1.0, 'this': 1.0, 'it': 7.0, 'with': 1.0, 'sure': 2.0, 'likes': 1.0, 'translates': 1.0, 'really': 1.0, 'is': 2.0, 'on': 1.0, 'i': 3.0, 'when': 1.0, 'm': 1.0, 'does': 1.0, 'baby': 1.0, 'thing': 1.0, 'about': 1.0, 'sticky': 1.0, 'him': 1.0, 'can': 1.0, 't': 1.0, 'the': 1.0, 'grow': 1.0, 'to': 3.0, 'let': 1.0, 'me': 2.0, 'not': 1.0, 'hold': 1.0, 'know': 1.0, 'which': 1.0, 'into': 1.0, 'that': 1.0, 'he': 3.0, 'plastic': 1.0, 'how': 1.0, 'big': 1.0, 'feel': 1.0, 'feeling': 1.0, 'seems': 1.0, 'sticks': 1.0, 'unnecessary': 1.0, 'if': 1.0, 'everything': 1.0}
Word element => {'gift': 1.0, 'go': 1.0, 'house': 1.0, 'we': 1.0, 'hold': 1.0, 'is': 1.0, 'leave': 1.0, 'really': 1.0, 'expecting': 1.0, 'guy': 1.0, 'my': 2.0, 'off': 1.0, 'teething': 1.0, 'to': 4.0, 'friends': 1.0, 'be': 1.0, 'all': 1.0, 'thing': 1.0, 'teether': 1.0, 'handle': 1.0, 'for': 3.0, 'one': 2.0, 'your': 1.0, 'easy': 1.0, 'recommend': 1.0, 'without': 1.0, 'can': 1.0, 'took': 1.0, 'i': 2.0, 'buy': 1.0, 'fun': 1.0, 'if': 1.0, 'baby': 1.0, 'never': 1.0, 'him': 1.0, 'would': 1.0, 'it': 5.0, 'this': 2.0, 'give': 1.0, 'little': 1.0, 'edge': 1.0, 'the': 5.0, 'made': 2.0, 'shape': 1.0, 'vibration': 1.0, 'and': 2.0}
Word element => {'around': 1.0, 'thrown': 1.0, 'lasted': 1.0, 'and': 1.0, 'despite': 1.0, 'product': 1.0, 'handle': 1.0, 'has': 2.0, 'still': 1.0, 'being': 1.0, 'vibrate': 1.0, 'wants': 1.0, 'from': 1.0, 'out': 1.0, 'different': 1.0, 'with': 1.0, 'it': 2.0, 'this': 1.0, 'loves': 1.0, 'other': 1.0, 'to': 2.0, 'nice': 2.0, 'baby': 1.0, 'she': 2.0, 'fun': 1.0, 'no': 1.0, 'great': 1.0, 'the': 4.0, 'of': 1.0, 'there': 1.0, 'spins': 1.0, 'something': 1.0, 'teethers': 1.0, 'that': 1.0, 'have': 1.0, 'all': 2.0, 'teether': 1.0, 'thing': 1.0, 'longer': 1.0, 'is': 1.0, 'when': 1.0}
Word element => {'still': 1.0, 'grandkids': 1.0, 'damaged': 1.0, 'or': 1.0, 'parts': 1.0, 'little': 1.0, 'about': 1.0, 'worry': 1.0, 'don': 1.0, 'sturdy': 1.0, 'get': 1.0, 'with': 1.0, 'parent': 1.0, 'to': 2.0, 'any': 2.0, 'highly': 1.0, 'now': 1.0, 'recommend': 1.0, 'was': 1.0, 'had': 1.0, 'granddaughter': 1.0, 'teething': 2.0, '90': 1.0, 'daughter': 1.0, 'have': 1.0, 'coming': 2.0, 'i': 4.0, 'abused': 1.0, 't': 1.0, 's': 1.0, 'a': 2.0, 'front': 1.0, 'my': 4.0, 'is': 1.0, 'more': 1.0, 'pain': 1.0, 'this': 3.0, 'beating': 1.0, 'children': 1.0, 'she': 2.0, 'it': 4.0, 'has': 1.0, 'toy': 2.0, 'miserable': 1.0, 'and': 6.0, 'similar': 1.0, 'took': 1.0, 'then': 1.0, 'bought': 2.0, 'one': 2.0, 'product': 1.0, 'for': 4.0, 'love': 1.0, 'in': 1.0, 'like': 1.0, 'teeth': 1.0, 'theirs': 1.0, 'grandson': 1.0, 'babies': 3.0, 'sensation': 1.0, 'you': 1.0, 'when': 2.0, 'gives': 1.0, 'them': 4.0, 'loose': 1.0, 'out': 1.0, 'recently': 1.0, 'their': 2.0, 'are': 1.0, 'relieves': 1.0, 'making': 1.0, 'the': 3.0, 'believe': 1.0, 'of': 2.0, 'some': 1.0}
Word element => {'sooner': 1.0, 'come': 1.0, 'of': 1.0, 'lot': 1.0, 'had': 2.0, 'cheeks': 1.0, 'vibrate': 1.0, 'by': 1.0, 'with': 2.0, 'feet': 1.0, 'equally': 1.0, 'about': 1.0, 'uses': 1.0, 'making': 1.0, 'other': 1.0, 'for': 1.0, 'if': 1.0, 'very': 1.0, 'know': 1.0, 'like': 2.0, 'which': 1.0, 'great': 1.0, 'nice': 1.0, 'though': 1.0, 'much': 1.0, 'each': 1.0, 'some': 2.0, 'playing': 1.0, 'hands': 1.0, 'the': 3.0, 'favors': 1.0, 'are': 1.0, 'variancethis': 1.0, 'one': 5.0, 'find': 1.0, 'differences': 1.0, 'another': 1.0, 'vibrating': 1.0, 'pin': 1.0, 'teether': 1.0, 'have': 2.0, 'outside': 1.0, 'to': 4.0, 'there': 2.0, 'that': 3.0, 'say': 1.0, 'is': 4.0, 'them': 1.0, 'softer': 1.0, 'also': 1.0, 'will': 1.0, 'seems': 2.0, 'across': 1.0, 'and': 1.0, 'play': 1.0, 'similar': 1.0, 'fun': 1.0, 'both': 1.0, 'points': 1.0, 'use': 1.0, 'wish': 1.0, 'this': 3.0, 'be': 1.0, 'tender': 1.0, 'likes': 1.0, 'easier': 1.0, 'has': 2.0, 'don': 1.0, 'gums': 1.0, 'on': 3.0, '3': 1.0, 'it': 7.0, 'she': 4.0, 'ridges': 1.0, 'can': 1.0, 'point': 2.0, 'problem': 1.0, 'area': 1.0, 's': 1.0, 't': 1.0, 'we': 2.0, 'could': 1.0, 'a': 3.0, 'her': 1.0, 'different': 1.0, 'etc': 1.0, 'i': 3.0, 'texture': 1.0, 'activatei': 1.0, 'bumps': 1.0, 'so': 1.0}
Word element => {'when': 1.0, 'enjoys': 1.0, 'he': 2.0, 'hold': 1.0, 'to': 1.0, 'for': 1.0, 'the': 1.0, 'my': 1.0, 'and': 1.0, 'on': 1.0, 'is': 1.0, 'son': 1.0, 'this': 1.0, 'loves': 1.0, 'chews': 1.0, 'him': 1.0, 'great': 1.0, 'it': 3.0, 'vibrations': 1.0, 's': 1.0, 'pretty': 1.0, 'easy': 1.0}
Word element => {'our': 1.0, 'in': 1.0, 'favorite': 1.0, 'house': 1.0, 'a': 1.0}
Word element => {'be': 1.0, 'simple': 1.0, 'companies': 1.0, 'skeptical': 1.0, 'told': 1.0, 'representative': 1.0, 'them': 1.0, 'site': 1.0, 'someone': 1.0, 'dangerous': 1.0, 'anything': 1.0, 'suspected': 1.0, 'day': 1.0, 'with': 2.0, 'riddled': 1.0, 'sure': 1.0, 'their': 2.0, 'm': 2.0, 'in': 3.0, 'amount': 1.0, 'on': 5.0, 'does': 1.0, 'bpa': 9.0, 'proudly': 1.0, 'from': 1.0, 'allow': 1.0, 'lead': 3.0, 'is': 5.0, 'former': 1.0, 'acceptable': 1.0, 'such': 1.0, 'for': 3.0, 'confused': 1.0, 'package': 1.0, 'caution': 1.0, 'where': 1.0, 'heard': 1.0, 'new': 2.0, 'would': 1.0, 'stated': 1.0, 'i': 9.0, 'surprised': 1.0, 'gave': 1.0, 'same': 1.0, 'phthalates': 2.0, 'safety': 1.0, 'most': 1.0, 'perhaps': 1.0, 'wouldn': 1.0, 'contain': 1.0, 'arrived': 1.0, 'was': 3.0, 'strongly': 1.0, 'had': 2.0, 'boys': 2.0, 'when': 5.0, 'am': 1.0, 'twin': 1.0, 'not': 3.0, 'toys': 1.0, 'started': 1.0, 'language': 1.0, 'baby': 2.0, 'age': 1.0, 'plastic': 1.0, '8': 1.0, 'chew': 1.0, 'teether': 2.0, 'though': 1.0, 'anywhere': 1.0, 'devices': 1.0, 'may': 1.0, 'me': 1.0, 'my': 6.0, 'a': 2.0, 'ago': 2.0, 't': 1.0, 'loved': 1.0, 'indicated': 1.0, 'cannot': 2.0, 'being': 1.0, 'very': 2.0, 'specifically': 1.0, 'and': 10.0, 'one': 1.0, 'too': 1.0, 'state': 1.0, 'packaging': 1.0, 'the': 9.0, 'of': 6.0, 'rather': 1.0, 'free': 4.0, 'manner': 1.0, 'gives': 1.0, 'they': 2.0, 'out': 1.0, 'absolutely': 1.0, 'sought': 1.0, 'products': 1.0, 'product': 3.0, 'child': 1.0, 'this': 5.0, 'statements': 1.0, 'it': 9.0, 'mouths': 1.0, 'company': 3.0, 'simply': 1.0, 'teething': 1.0, 'conscience': 1.0, 'as': 3.0, 'to': 2.0, 'regulator': 1.0, 'labeling': 2.0, 'medical': 1.0, 'pause': 1.0, 'why': 2.0, 'so': 2.0, 'sensitive': 1.0, 'about': 1.0, 'years': 2.0, 'no': 1.0, 'put': 1.0, 'much': 1.0, 'but': 2.0, 'again': 1.0, 'err': 1.0, 'good': 1.0, 'side': 1.0, 'still': 1.0, 'if': 1.0, 'clear': 1.0, 'that': 6.0, 'concerned': 1.0, 'label': 3.0, 'lack': 1.0, 'test': 1.0, 'there': 1.0, 'all': 2.0, 'ever': 1.0, 'an': 1.0, 'tested': 1.0, 'allowed': 1.0, 'phthalate': 1.0, 'eight': 1.0, 'toy': 1.0, 'sons': 1.0}
Word element => {'price': 1.0, 'an': 1.0, 'overall': 1.0, 'eye': 1.0, 'baby': 1.0, 'definitely': 1.0, 'are': 1.0, 'that': 1.0, 'then': 1.0, 'other': 1.0, 'will': 1.0, 'way': 1.0, 'if': 1.0, 'pointy': 1.0, 'star': 1.0, 'great': 1.0, 'big': 1.0, 'end': 1.0, 'only': 1.0, 'different': 1.0, 'every': 1.0, 'hard': 1.0, 'understand': 1.0, 'sort': 1.0, 'or': 1.0, 'of': 1.0, 'rather': 1.0, 'would': 1.0, 'child': 1.0, 'up': 2.0, 'it': 6.0, 'this': 2.0, 'bead': 1.0, 'he': 6.0, 'car': 1.0, 'interested': 2.0, 'just': 1.0, 'wrong': 1.0, 'not': 1.0, 'catches': 1.0, 'i': 3.0, 'young': 1.0, 'old': 2.0, 'my': 3.0, 'very': 1.0, 'cry': 1.0, 'in': 4.0, 'which': 1.0, 'hold': 1.0, 'teeth': 2.0, 'ok': 1.0, 'pick': 2.0, 'reason': 1.0, 'stuffed': 1.0, 'thought': 1.0, 'had': 1.0, 'was': 3.0, 'now': 1.0, 'to': 1.0, 'because': 1.0, 'maybe': 1.0, 'catch': 1.0, 'sore': 1.0, 'teether': 2.0, 'coming': 1.0, 'have': 1.0, 'complaint': 1.0, '8': 1.0, 'since': 1.0, 'toy': 3.0, 'has': 1.0, 'isn': 1.0, 'on': 1.0, '3': 1.0, 'even': 1.0, 'for': 2.0, 'expensive': 1.0, 'colors': 1.0, 'though': 1.0, 'did': 1.0, '2': 1.0, 'a': 1.0, 's': 4.0, 't': 1.0, 'the': 6.0, 'some': 1.0, 'already': 1.0, 'is': 3.0, 'too': 1.0, 'and': 4.0, 'son': 2.0, 'still': 1.0, 'months': 2.0, 'bought': 1.0, 'easy': 1.0, 'him': 1.0}
Word element => {'they': 1.0, 'fun': 1.0, 'much': 1.0, 'amazing': 1.0, 'when': 1.0, 'for': 1.0, 'then': 1.0, 'head': 1.0, 'sit': 1.0, 'us': 1.0, 'simply': 1.0, 'game': 1.0, 'favorite': 1.0, '7': 1.0, 'other': 1.0, 'at': 1.0, 'including': 1.0, 'mth': 2.0, 'moves': 1.0, 'own': 1.0, 'such': 1.0, 'these': 1.0, 'can': 1.0, '2': 1.0, 'great': 1.0, 'teething': 2.0, 'of': 4.0, 'simple': 1.0, 'thinks': 1.0, 'wait': 1.0, 'toys': 2.0, 'store': 1.0, 'hands': 1.0, 'toy': 2.0, 'our': 3.0, 'least': 1.0, 'to': 5.0, 'rings': 1.0, 'mouth': 1.0, 'on': 1.0, '3': 1.0, 'a': 1.0, 's': 1.0, 'we': 1.0, 'this': 1.0, 'it': 6.0, 'have': 4.0, 'ring': 1.0, 'stick': 1.0, 'off': 1.0, 'enough': 1.0, 'fall': 1.0, 'is': 2.0, 'around': 1.0, 'probably': 1.0, 'too': 1.0, 'and': 2.0, 'being': 1.0, '10': 1.0, 'old': 2.0, 'loves': 2.0, 'or': 1.0, 'one': 3.0, 'baby': 1.0, 'them': 1.0, 'in': 1.0, 'his': 4.0, 'hold': 1.0, 'like': 1.0, 'just': 1.0, 'how': 1.0, 'he': 2.0, 'bead': 1.0, 'walk': 1.0, 'with': 3.0, 'crawl': 1.0, 'hestarical': 1.0, 'free': 1.0}
Word element => {'clean': 1.0, 'wash': 1.0, 'to': 2.0, 'easy': 1.0, 'well': 1.0, 'also': 1.0, 'is': 1.0, 'time': 1.0, 'long': 1.0, 'my': 1.0, 'as': 1.0, 'very': 1.0, 'and': 1.0, 'keep': 1.0, 'keeps': 1.0, 'it': 2.0, 'loves': 1.0, 'this': 1.0, 'her': 1.0, 'happy': 1.0, 'daughter': 1.0, 'for': 1.0, 'a': 1.0}
Word element => {'bite': 1.0, 'hold': 1.0, 'her': 1.0, 'for': 1.0, 'easy': 1.0, 's': 1.0, 'my': 1.0, 'baby': 1.0, 'it': 1.0, 'to': 2.0, 'loves': 1.0, 'play': 2.0, 'this': 1.0, 'and': 1.0, 'during': 1.0, 'bath': 1.0, 'with': 2.0, 'time': 1.0}
Word element => {'so': 1.0, 'buying': 1.0, 'ended': 1.0, 'what': 1.0, 'at': 1.0, 'material': 1.0, 'is': 3.0, 'maya': 1.0, 'would': 1.0, 'serious': 1.0, 'you': 1.0, 'ache': 1.0, 'back': 1.0, 'top': 1.0, 'on': 1.0, 'padding': 1.0, 'heavy': 1.0, 'the': 5.0, 'take': 1.0, 'me': 1.0, 'not': 3.0, 'choose': 1.0, 'because': 1.0, 'did': 2.0, 'and': 6.0, 'texas': 1.0, 'i': 6.0, 'makes': 1.0, 'old': 1.0, 'tried': 1.0, 'planning': 1.0, 'bought': 1.0, 'this': 1.0, 'do': 1.0, 'only': 1.0, '8': 1.0, 'to': 3.0, 'all': 4.0, 'a': 4.0, 'we': 1.0, 'week': 1.0, 'stroller': 1.0, 'for': 2.0, 'sling': 3.0, 'daughter': 2.0, 'my': 2.0, 'are': 2.0, 'her': 2.0, 'in': 2.0, 'it': 5.0, 'she': 3.0, 'got': 2.0, 'very': 1.0, 'hot': 1.0, 'of': 2.0, 'rash': 1.0, 'loves': 1.0, 'thinner': 1.0, 'gave': 1.0, 'that': 3.0, 'heat': 1.0, 'up': 1.0, 'over': 1.0, 'face': 1.0, 'neck': 1.0, 'bulky': 2.0, 'about': 2.0, 'if': 1.0, 'want': 1.0, '10': 1.0, 'was': 1.0, 'minutes': 1.0, 'trip': 1.0, 'like': 1.0}
Word element => {'buy': 1.0, 'time': 1.0, 'yourself': 1.0, 'skip': 1.0, 'want': 1.0, 'infant': 2.0, 'weight': 1.0, 'feather': 1.0, 'shoulders': 1.0, 'on': 1.0, 'strong': 1.0, 'wrong': 1.0, 'like': 2.0, 'and': 3.0, 'cumbersome': 1.0, 'money': 1.0, 'most': 1.0, 'feel': 1.0, 'wouldn': 1.0, 'got': 1.0, 'save': 1.0, 'my': 1.0, 'the': 3.0, 'son': 1.0, 'really': 1.0, 'i': 5.0, 'thought': 1.0, 'excellent': 1.0, 'this': 3.0, 'it': 3.0, 'he': 1.0, 'item': 1.0, 'have': 1.0, 'be': 1.0, 'own': 1.0, 'an': 1.0, 'carrier': 1.0, 'back': 1.0, 'to': 3.0, 'was': 1.0, 'crazy': 1.0, 'in': 1.0, 'would': 1.0, 've': 1.0, 'there': 1.0, 'always': 1.0, 'of': 1.0, 't': 1.0, 'might': 1.0, 'a': 1.0, 's': 3.0, 'again': 1.0, 'unless': 1.0, 'you': 2.0, 'support': 1.0, 'for': 1.0, 'sweats': 1.0, 'baby': 1.0, 'thing': 2.0, 'no': 1.0, 'about': 1.0, 'neck': 1.0, 'or': 2.0, 'completely': 1.0, 'is': 1.0, 'fall': 1.0, 'out': 1.0}
Word element => {'out': 1.0, 'in': 1.0, 'easier': 1.0, 'much': 2.0, 'its': 1.0, 'get': 2.0, 'quite': 1.0, 'because': 1.0, 'm': 1.0, 'now': 1.0, 'carriers': 2.0, 'awkward': 1.0, 'the': 4.0, 'you': 1.0, 'traditional': 1.0, 'small': 1.0, 'and': 4.0, 'too': 1.0, 'less': 1.0, 'extremely': 1.0, 'it': 3.0, 'first': 1.0, 'with': 1.0, 'frankly': 1.0, 'this': 1.0, 'i': 4.0, 'is': 1.0, 'a': 1.0, 'little': 1.0, 'premature': 1.0, '2': 1.0, 'but': 2.0, 'an': 1.0, 'was': 2.0, 'had': 1.0, 'of': 2.0, 'once': 2.0, 'for': 2.0, 'sling': 2.0, 'using': 1.0, 'back': 1.0, 'needed': 2.0, 'who': 1.0, 'at': 1.0, 'bigger': 1.0, 'be': 2.0, 'laundry': 1.0, 'held': 2.0, 'to': 4.0, 'all': 1.0, 'time': 1.0, 'lived': 1.0, 'cooked': 1.0, 'did': 1.0, 'slept': 1.0, 'ate': 1.0, 'hang': 1.0, 'months': 1.0, 'my': 1.0, 'baby': 3.0, 'started': 1.0, 'other': 1.0}
Word element => {'use': 1.0, 'information': 1.0, 'web': 1.0, 'had': 1.0, 'advertisement': 1.0, 'of': 1.0, 'about': 1.0, 'crys': 1.0, 'how': 1.0, 'he': 4.0, 'this': 2.0, 'it': 2.0, 'an': 1.0, 'doesn': 1.0, 'training': 1.0, 'baby': 1.0, 'every': 1.0, 'in': 1.0, 'newborn': 1.0, 'also': 1.0, 'site': 1.0, 'everytime': 1.0, 'for': 1.0, 'video': 1.0, 'sling': 1.0, 'liked': 1.0, 'put': 1.0, 'think': 1.0, 'i': 2.0, 'the': 4.0, 'great': 1.0, 'wants': 1.0, 'son': 1.0, 'more': 2.0, 'is': 5.0, 'idea': 1.0, 'hasn': 1.0, 'screams': 1.0, 'being': 1.0, 'or': 1.0, 'behind': 1.0, 'fellow': 1.0, 'held': 1.0, 'our': 1.0, 'to': 6.0, 'get': 1.0, 'easy': 1.0, 'closely': 1.0, 'his': 1.0, 'freedom': 2.0, 'promotional': 1.0, 'and': 1.0, 'not': 1.0, 'give': 1.0, 'much': 1.0, 'go': 1.0, 't': 2.0, 'going': 1.0, 'a': 2.0, 'but': 2.0, 'quot': 2.0}
Word element => {'of': 1.0, 'got': 1.0, 'amp': 1.0, 'just': 1.0, 'do': 1.0, 'not': 1.0, 'me': 1.0, 'get': 1.0, 'inch': 1.0, 'please': 1.0, '5': 2.0, 'are': 1.0, 'you': 2.0, 'if': 1.0, 'looked': 1.0, 'is': 2.0, 'below': 1.0, 'a': 2.0, 'big': 1.0, 'great': 1.0, 'quot': 1.0, 'but': 2.0, 'uncomfortable': 1.0, 'and': 2.0, 'too': 1.0, 'will': 1.0, 'sack': 1.0, 'terrified': 1.0, 'product': 1.0, 'for': 1.0, 'cause': 1.0, 'eventually': 1.0, 'my': 2.0, 'was': 1.0, 'using': 1.0, 'like': 1.0, 'put': 1.0, 'on': 1.0, 'tired': 1.0, 'baby': 2.0, 'in': 1.0, 'this': 3.0, 'perfect': 1.0, 'it': 3.0, 'she': 1.0, 'cried': 1.0, 'inside': 1.0, 'everytime': 1.0, 'i': 2.0, 'her': 1.0, 'look': 1.0, 'practice': 1.0, 'makes': 1.0}
Word element => {'this': 1.0, 'short': 1.0, 're': 1.0, 'if': 1.0, 'size': 1.0, 'not': 1.0, 'away': 1.0, 'and': 1.0, 'maybe': 1.0, 'because': 1.0, 'both': 1.0, 'm': 1.0, 'you': 1.0, 'when': 1.0, 'us': 1.0, 'gave': 1.0, 'try': 1.0, 'kept': 1.0, 'reviews': 1.0, '5': 1.0, 'reading': 1.0, 'up': 2.0, 'born': 1.0, 'hated': 1.0, 'giving': 1.0, 'trying': 1.0, 'all': 2.0, 'to': 2.0, 'was': 2.0, 'the': 2.0, '1': 1.0, 'great': 1.0, 'more': 1.0, 'it': 6.0, '6': 1.0, 'he': 1.0, 's': 1.0, 'we': 1.0, 'twice': 1.0, 'sling': 1.0, 'for': 1.0, 'months': 1.0, 'one': 2.0, 'decided': 1.0, 'difficult': 1.0, 'son': 1.0, 'pounds': 1.0, 'i': 5.0, 'fits': 1.0, 'my': 1.0, 'eleven': 1.0, 'made': 1.0, 'think': 1.0, 'on': 2.0, 'make': 1.0, 'work': 1.0, 'but': 1.0, 'after': 2.0, 'ended': 1.0}
Word element => {'pack': 1.0, 'don': 1.0, 'while': 1.0, 'carriers': 2.0, 'only': 1.0, 'unlike': 1.0, 'out': 1.0, 'll': 1.0, 'its': 1.0, 'use': 1.0, 'anyway': 1.0, 'close': 1.0, 'butt': 1.0, 'under': 1.0, 'arm': 1.0, 'having': 1.0, 's': 1.0, 'mimic': 1.0, 'position': 1.0, 'holds': 1.0, 'carry': 1.0, 'priced': 1.0, 'admit': 1.0, 'backpack': 2.0, 'say': 1.0, 'around': 1.0, 'in': 4.0, 'loved': 1.0, 'best': 2.0, 'both': 1.0, 'fact': 1.0, 'my': 4.0, 'back': 1.0, 'make': 1.0, '3': 1.0, 'long': 1.0, 'on': 3.0, 'your': 2.0, 'started': 1.0, 'folds': 1.0, 'baby': 1.0, 'them': 3.0, 'weight': 1.0, 'get': 1.0, 'months': 1.0, 'babies': 1.0, 'that': 5.0, 'kids': 2.0, 'liked': 1.0, '0': 1.0, 'style': 1.0, 'load': 1.0, 'hip': 2.0, 'into': 1.0, 'riding': 2.0, 'carrier': 1.0, 'sling': 2.0, 'up': 2.0, 'accessible': 1.0, 'mentioned': 1.0, 'reasonably': 2.0, 'good': 3.0, 'which': 3.0, 'like': 2.0, 'it': 4.0, 'ache': 1.0, 'for': 5.0, 't': 3.0, 'fit': 1.0, 'we': 1.0, 'a': 4.0, 'could': 1.0, 'go': 1.0, 'used': 1.0, 'i': 5.0, 'of': 4.0, 'the': 13.0, 'thing': 1.0, '2': 1.0, 'besides': 1.0, 'hand': 1.0, 'something': 1.0, '5yrs': 1.0, 'their': 2.0, 'front': 3.0, 'to': 2.0, 'had': 1.0, 'either': 1.0, 'was': 1.0, 'tired': 1.0, 'size': 1.0, 'with': 2.0, 'bundle': 1.0, 'heavy': 1.0, 'as': 2.0, 'diaper': 2.0, 'bag': 2.0, 'wanted': 1.0, 'can': 1.0, 'so': 3.0, 'this': 3.0, 'bottle': 1.0, 'bit': 1.0, 'aged': 1.0, 'very': 2.0, 'gt': 1.0, 'and': 3.0, 'toss': 1.0, 'about': 2.0, 'walk': 1.0, 'until': 1.0, 'own': 1.0, 'just': 1.0, 'when': 3.0, 'you': 5.0, 'aren': 2.0, 'they': 2.0, 'got': 1.0, 'also': 1.0, 'kid': 1.0, 'need': 1.0, 'food': 1.0, 'or': 3.0, 'are': 3.0, 'walking': 1.0, 'is': 1.0, 'at': 1.0, 'zoo': 1.0, 'must': 1.0}
Word element => {'product': 1.0, 'available': 1.0, 'still': 1.0, 'goodness': 1.0, 'thank': 1.0, 'just': 1.0, 'light': 1.0, 'for': 1.0, 'in': 2.0, 'own': 1.0, 'my': 3.0, 'great': 1.0, 'the': 2.0, 'grandson': 2.0, 'what': 1.0, 'used': 1.0, 'i': 2.0, 'no': 1.0, 'super': 1.0, 'longer': 1.0, 'is': 2.0, 'as': 1.0, 'womb': 1.0, 'son': 1.0, 'on': 1.0, 'and': 2.0, 'like': 2.0, 'fussy': 1.0, 'back': 1.0, 'put': 1.0, 'out': 1.0, 'it': 1.0, 'looked': 1.0, 'this': 3.0, 'he': 3.0, 'had': 1.0, 'turned': 1.0, 'vacuum': 1.0, 'was': 2.0, 'a': 2.0}
Word element => {'use': 1.0, 'easy': 1.0, 'are': 1.0, 'of': 1.0, 'ended': 1.0, 'baby': 2.0, 'not': 1.0, 'just': 1.0, 'was': 2.0, 'it': 3.0, 'parent': 1.0, 'come': 1.0, 'hated': 1.0, 'this': 1.0, 'pain': 1.0, 'up': 1.0, 'over': 1.0, 'every': 1.0, 'time': 1.0, 'they': 3.0, 'say': 1.0, 'or': 3.0, 'but': 1.0, 'shoulder': 1.0, 'i': 1.0, 'tried': 2.0, 'hear': 1.0, 'sling': 3.0, 'love': 1.0, 'a': 4.0, 'that': 1.0, 'their': 1.0, 'maya': 1.0, 'wrap': 1.0, 'the': 2.0, 'slings': 1.0, 'great': 1.0, 'who': 1.0, 'used': 1.0, 'holder': 1.0, 'new': 1.0, 'people': 1.0, 'native': 1.0, 'to': 1.0, 'all': 1.0, 'fabric': 1.0, 'using': 1.0, 'which': 1.0, 'in': 1.0, 'choices': 1.0, 'and': 1.0}
Word element => {'basis': 1.0, 'workhorse': 1.0, 'hand': 1.0, 'extra': 1.0, 'an': 1.0, 'sort': 1.0, 'nice': 1.0, 'outside': 1.0, 'looking': 1.0, 'loves': 1.0, 'position': 1.0, 'video': 1.0, 'wearer': 1.0, 'asleep': 1.0, 'falls': 1.0, 'one': 2.0, 'rocking': 1.0, 'wear': 1.0, 'gizmos': 1.0, 'investment': 2.0, 'best': 1.0, 'mostly': 1.0, 'ties': 1.0, 'arrived': 1.0, 'car': 1.0, 'million': 1.0, 'both': 1.0, 'cart': 1.0, 'seat': 2.0, 'push': 1.0, 'things': 1.0, 'laid': 1.0, 'carry': 1.0, 'short': 1.0, 'daily': 1.0, 'harder': 1.0, 'impediments': 1.0, 'around': 2.0, 'stroller': 1.0, 'mobile': 1.0, 'much': 1.0, 'gets': 1.0, 'carrying': 2.0, 'sometimes': 1.0, 'womb': 1.0, 'world': 1.0, 'happily': 1.0, 'curling': 1.0, 'really': 1.0, 'lbs': 1.0, 'bouncy': 2.0, '8': 1.0, 'supposed': 1.0, 'so': 3.0, 'doing': 1.0, 'hands': 1.0, 'your': 1.0, 'where': 4.0, 're': 2.0, 'unless': 1.0, 'space': 1.0, 'most': 2.0, 'hook': 1.0, 'instead': 1.0, 'pregnant': 1.0, 'light': 1.0, 'amount': 1.0, 'bought': 1.0, 'against': 1.0, 'humid': 1.0, 'newborns': 1.0, 'perspective': 1.0, 'germ': 1.0, 'good': 3.0, 'which': 3.0, 'grab': 1.0, 'away': 1.0, 'babysling': 1.0, 'strangers': 1.0, 'interested': 1.0, 'hard': 1.0, 'keeping': 1.0, 'positioning': 1.0, 'helpful': 2.0, 'cute': 1.0, 'her': 6.0, 'they': 4.0, 'watch': 1.0, 'without': 1.0, 'maybe': 1.0, 'reason': 1.0, 'that': 5.0, 'makes': 2.0, 'think': 3.0, 'summer': 1.0, 'earlier': 1.0, 'warmth': 1.0, 'go': 1.0, 'chapter': 1.0, 'porch': 1.0, 'favorite': 1.0, 'entire': 1.0, '7': 1.0, 'up': 3.0, 'this': 4.0, 'slips': 1.0, 'dresses': 1.0, 'now': 2.0, 'boy': 2.0, 'would': 4.0, 'see': 2.0, 'blanket': 1.0, 'until': 2.0, 'off': 3.0, 'movement': 1.0, 'weeks': 1.0, 'seems': 2.0, 'pinky': 1.0, 'walk': 2.0, 'about': 2.0, 'you': 9.0, 'baby': 18.0, 'bounce': 1.0, 'she': 9.0, 'husband': 1.0, 'lugging': 1.0, 'more': 4.0, 'give': 1.0, 'bumping': 1.0, 'me': 2.0, 'issues': 1.0, 'are': 6.0, 'my': 3.0, 'facing': 1.0, 'ball': 1.0, 'may': 1.0, 'for': 10.0, 'but': 5.0, 'blue': 2.0, 'doubts': 1.0, 'sleeps': 2.0, 'fact': 1.0, 'treatment': 1.0, 'what': 1.0, 'bed': 1.0, 'when': 6.0, 'had': 1.0, 'sitter': 3.0, 'book': 2.0, 'distance': 1.0, 'on': 10.0, 'well': 1.0, 'wants': 1.0, 'crib': 1.0, 'two': 1.0, 'won': 1.0, 'in': 20.0, 'uncomfortable': 1.0, 'week': 1.0, 'heavy': 2.0, 'completely': 1.0, 'can': 5.0, 'calming': 1.0, 'is': 14.0, 'at': 6.0, 'patterns': 1.0, 'just': 3.0, 'and': 18.0, 'arms': 1.0, 'getting': 3.0, 'lifesaver': 1.0, 'pounds': 1.0, 'flaring': 1.0, 'i': 14.0, 'few': 1.0, 'times': 3.0, 'adds': 2.0, 'provide': 2.0, 'napping': 1.0, 'am': 2.0, '14': 1.0, 'them': 1.0, 'regular': 1.0, 'spot': 1.0, 'chair': 2.0, 'comfortable': 3.0, 'finger': 1.0, 'the': 59.0, 'reflux': 1.0, 'hangs': 1.0, 'took': 1.0, 'being': 2.0, 'mother': 1.0, 'babies': 1.0, 'soft': 1.0, 'days': 2.0, 'anywhere': 1.0, 'elegant': 1.0, 'out': 3.0, 'during': 1.0, 'invaluable': 1.0, 'been': 4.0, 'chronic': 1.0, 'with': 8.0, 'using': 3.0, 'sleeping': 1.0, 'thing': 2.0, 'dr': 1.0, 'aren': 2.0, 'll': 1.0, 'reading': 1.0, 'wedding': 1.0, 'careful': 1.0, 'flexibility': 2.0, 'has': 4.0, 'sears': 1.0, 'cries': 1.0, 'did': 4.0, 'time': 2.0, 'was': 5.0, 'bring': 1.0, 'having': 2.0, 'or': 9.0, 'held': 1.0, 'shopping': 2.0, 'lot': 1.0, 'return': 1.0, 'ordered': 1.0, 'whack': 1.0, 'any': 1.0, 'pretty': 1.0, 'right': 1.0, 'to': 18.0, 'flat': 1.0, 'height': 1.0, 'exhausting': 1.0, 'less': 1.0, 'as': 6.0, 'all': 3.0, 'recently': 1.0, 'other': 3.0, 'tired': 1.0, 's': 9.0, 'nap': 1.0, 'a': 31.0, 'kangaroo': 1.0, 'reads': 1.0, 'small': 1.0, 'constant': 1.0, 'we': 6.0, 'like': 4.0, 'fine': 1.0, 'sling': 14.0, 'by': 2.0, 'after': 1.0, 'breasted': 1.0, 'will': 1.0, 'cover': 1.0, 'cooler': 1.0, 'ebay': 1.0, 'our': 4.0, 'jeans': 1.0, 'breastfeed': 1.0, 'carseat': 1.0, 'long': 1.0, 'although': 3.0, 'while': 3.0, 've': 1.0, 'last': 1.0, 'down': 2.0, 'do': 2.0, 'tightly': 1.0, 'these': 1.0, 'started': 2.0, 'feature': 1.0, 'couple': 1.0, 'waking': 1.0, 'public': 2.0, 'easily': 1.0, 'washable': 1.0, 'swing': 1.0, 'important': 2.0, 'sun': 1.0, 'those': 1.0, 'day': 1.0, 'since': 1.0, 'mishaps': 1.0, 'padding': 1.0, 'feel': 1.0, 'than': 2.0, 'bit': 2.0, 'often': 3.0, 'get': 1.0, 'able': 3.0, 'however': 1.0, 'be': 6.0, 'it': 23.0, 'sold': 1.0, 'old': 1.0, 'of': 15.0, 'protection': 1.0, 'mama': 1.0, 'large': 1.0, 'awkward': 1.0, 'colors': 1.0, 'case': 1.0, 'adjustable': 1.0, 'seen': 1.0, 'assumed': 1.0, 'size': 2.0, 'friend': 1.0, 'safety': 1.0, 'find': 1.0, 'very': 2.0, 'trips': 1.0, 'people': 2.0, 'free': 1.0, 'pull': 2.0, 'fabric': 6.0, 'through': 2.0, 'great': 3.0, 'if': 4.0, 'sits': 1.0, 'plus': 1.0, 'zippered': 1.0, 'hot': 2.0, 'have': 5.0, 'successfully': 1.0, 'smaller': 1.0, 'especially': 5.0, 'use': 5.0, 'anticipate': 1.0, 'chest': 1.0, 'nojo': 3.0, 'activities': 1.0, 'benefit': 1.0, 'stairs': 1.0, 'whenever': 1.0, 'who': 2.0, 'from': 3.0, 'some': 4.0, 'loose': 1.0, 'slight': 1.0, '2': 1.0, 'going': 2.0, 'end': 2.0, 'tendonitis': 1.0, 'head': 1.0, 'bjorn': 2.0, 'coverage': 1.0, 'irritated': 1.0, 'helps': 1.0, 'breastfeeding': 1.0, 'dangled': 1.0, 'piece': 1.0, 'plastic': 1.0, 't': 4.0, 'could': 1.0, 'need': 2.0, 'sitting': 1.0, 'also': 5.0, 'read': 1.0, 'stopper': 1.0, 'storage': 1.0, 'area': 1.0, 'slings': 1.0, 'plaid': 1.0, 'only': 1.0, 'different': 1.0, 'not': 3.0}
Word element => {'recommends': 1.0, 'experience': 1.0, 'enjoy': 1.0, 'able': 1.0, 'be': 1.0, 'highly': 1.0, 'really': 1.0, 'will': 1.0, 'body': 1.0, 'buy': 1.0, 'or': 1.0, 'other': 1.0, 'kitchen': 1.0, 'working': 1.0, 'whenever': 1.0, 'brings': 1.0, 'hip': 1.0, 'in': 3.0, 'sooner': 1.0, 'different': 1.0, 'tried': 1.0, 'hadn': 1.0, 'sears': 1.0, 'so': 2.0, 'made': 1.0, 'difference': 1.0, 'what': 1.0, 'the': 4.0, 'believe': 1.0, 'fits': 1.0, 'my': 4.0, 'size': 1.0, 'sizes': 1.0, 'slightly': 1.0, '6': 1.0, 'and': 3.0, 'too': 1.0, 'try': 1.0, 'much': 1.0, 'i': 6.0, 'framed': 1.0, 'brand': 1.0, 'old': 1.0, 'sear': 1.0, 'sling': 6.0, '5': 3.0, 't': 2.0, 'a': 5.0, 's': 1.0, 'am': 2.0, 'when': 1.0, 'you': 2.0, 'comes': 1.0, 'is': 1.0, 'woman': 1.0, 'fine': 1.0, 'your': 1.0, 'on': 1.0, 'dr': 2.0, 'sitting': 1.0, 'but': 2.0, 'work': 1.0, 'books': 1.0, 'this': 2.0, 'felt': 1.0, 'it': 4.0, 'baby': 2.0, 'husband': 1.0, 'any': 1.0, 'rosado': 1.0, 'to': 3.0, 'was': 1.0, 'wears': 1.0, 'large': 1.0, 'just': 1.0, 'small': 1.0, 'must': 1.0, 'son': 2.0, 'year': 1.0, 'sad': 1.0, 'love': 1.0, 'for': 2.0, 'fit': 2.0, 'wearing': 1.0, 'properly': 1.0, 'finally': 1.0, 'bought': 1.0, 'loves': 1.0, 'that': 5.0, 'me': 2.0, '1': 1.0, 'couldn': 1.0, 'over': 1.0}
Word element => {'than': 1.0, 'better': 1.0, 'there': 1.0, 'offer': 1.0, 'adjustable': 1.0, 'no': 1.0, 'with': 1.0, 'prefer': 1.0, 'small': 1.0, 'baby': 1.0, 'my': 1.0, 'adjust': 1.0, 'this': 3.0, 'found': 1.0, 'months': 1.0, 'few': 1.0, 'first': 2.0, 'to': 2.0, 'least': 1.0, 'at': 1.0, 'carrier': 1.0, 'back': 1.0, 'over': 1.0, 'while': 2.0, 'even': 1.0, 'long': 1.0, 'easy': 1.0, 'nojo': 1.0, 'was': 1.0, 'store': 1.0, 'recommend': 1.0, 'online': 1.0, 'items': 1.0, 'shop': 1.0, 'they': 1.0, 'sears': 2.0, 'so': 3.0, 'time': 1.0, 'that': 1.0, 'babies': 2.0, 'nursing': 1.0, 'i': 7.0, 'or': 3.0, 'on': 1.0, 'think': 1.0, 'make': 1.0, 'more': 1.0, 'around': 2.0, 'many': 2.0, 'native': 1.0, 'library': 1.0, 'the': 7.0, 'railings': 1.0, 'slings': 2.0, 'seemed': 1.0, 'great': 1.0, 'others': 1.0, 'some': 1.0, 'of': 1.0, 'are': 2.0, 'useful': 1.0, 'walking': 1.0, 'disappear': 1.0, 'street': 1.0, 'in': 2.0, 'most': 1.0, 'for': 4.0, 'love': 1.0, 'sling': 4.0, 'a': 4.0, 'use': 1.0, 'front': 1.0, 'thought': 1.0, 'new': 1.0, 'would': 3.0, 'be': 1.0, 'did': 1.0, 'month': 1.0, 'it': 2.0, 'and': 4.0, 'difficult': 1.0, 'busy': 1.0, 'still': 1.0}
Word element => {'customized': 1.0, 'might': 1.0, 'multiple': 1.0, 'come': 1.0, 'holder': 1.0, 'shoulder': 1.0, 'wrap': 1.0, 'slings': 1.0, 'brands': 1.0, 'petite': 1.0, 'remark': 1.0, 'help': 1.0, 'photos': 1.0, 'book': 2.0, 'around': 1.0, 'his': 1.0, 'brand': 1.0, 'just': 1.0, 'not': 1.0, 'on': 1.0, 'chapter': 1.0, 'whole': 1.0, 'also': 1.0, 'sears': 1.0, 'dr': 1.0, 'successfully': 1.0, 'used': 1.0, 'who': 2.0, 'have': 1.0, 'practice': 1.0, 'patient': 1.0, 'can': 1.0, 'ask': 1.0, 'occasionally': 1.0, 'if': 1.0, 'still': 1.0, 'day': 1.0, 'rough': 1.0, 'having': 1.0, 's': 2.0, 'friend': 2.0, 'find': 1.0, '1': 1.0, 'now': 1.0, 'is': 1.0, 'purchases': 1.0, 'toddler': 1.0, 'product': 1.0, '3': 1.0, 'sizes': 1.0, 'any': 1.0, 'your': 1.0, 'tried': 1.0, 'until': 1.0, 'comfortable': 1.0, 'great': 2.0, 'in': 8.0, 'this': 4.0, 'initially': 1.0, 'that': 5.0, 'and': 7.0, 'be': 4.0, 'calmed': 1.0, 'purchased': 1.0, 'for': 3.0, 'wasn': 1.0, 'will': 1.0, 'could': 1.0, 'fit': 1.0, 't': 1.0, 'a': 9.0, 'to': 11.0, 'body': 1.0, 'unable': 1.0, 'awkward': 1.0, 'as': 2.0, 'maya': 1.0, 'our': 3.0, 'other': 1.0, 'all': 1.0, 'lbs': 1.0, 'was': 9.0, 'babysling': 2.0, 'daughter': 3.0, 'when': 2.0, 'old': 2.0, '2': 4.0, 'best': 1.0, 'housework': 1.0, 'master': 1.0, 'quot': 4.0, 'myself': 1.0, 'hands': 1.0, 'without': 1.0, 'tight': 1.0, 'would': 1.0, 'either': 1.0, 'weeks': 1.0, 'free': 1.0, 'i': 5.0, 'involved': 1.0, 'with': 2.0, 'discreet': 1.0, 'using': 1.0, 'looking': 1.0, 'use': 1.0, 'her': 6.0, 'different': 1.0, 'send': 1.0, 'sling': 10.0, 'carrier': 2.0, 'found': 1.0, 'however': 1.0, 'went': 1.0, 'while': 1.0, 'allow': 1.0, 'from': 1.0, 'things': 1.0, 'you': 1.0, 'able': 4.0, 'nursing': 2.0, 'last': 1.0, 'beginning': 1.0, '30': 1.0, 'ways': 1.0, 'colicy': 1.0, 'very': 2.0, 'being': 2.0, 'put': 1.0, 'cozied': 1.0, 'up': 3.0, 'god': 1.0, 'more': 1.0, 'husband': 1.0, 'time': 1.0, 'we': 2.0, 'versatility': 1.0, 'the': 16.0, 'of': 4.0, 'by': 1.0, 'enabled': 1.0, 'my': 2.0, 'me': 1.0, 'months': 2.0, 'get': 3.0, 'done': 1.0, 'one': 3.0, 'crying': 1.0, 'picked': 1.0, 'it': 3.0, 'wear': 3.0, 'already': 1.0, 'over': 1.0, 'daily': 1.0, 'or': 1.0, 'activities': 1.0, '90': 1.0, 'way': 1.0, 'hang': 1.0, 'there': 3.0, 'are': 2.0, 'she': 4.0, 'baby': 6.0, 'many': 1.0, 'has': 3.0, 'made': 2.0}
Word element => {'buy': 1.0, 'now': 1.0, 'use': 1.0, 'continue': 1.0, 'with': 1.0, 'us': 1.0, 'other': 1.0, 'or': 2.0, 'shoulder': 1.0, 'develop': 1.0, 'old': 1.0, 'distributed': 1.0, '6': 1.0, 'he': 1.0, 'weight': 2.0, 'big': 1.0, 'feel': 1.0, 'even': 1.0, 'don': 2.0, 'gave': 1.0, 'that': 4.0, 'me': 1.0, 'husband': 1.0, 'both': 1.0, 'comfortably': 1.0, 'on': 1.0, 'carried': 1.0, 'his': 1.0, 'were': 2.0, 'lower': 1.0, 'products': 2.0, 'positions': 1.0, 'recommend': 1.0, 'was': 1.0, 'our': 1.0, 'to': 3.0, 'highly': 1.0, 'baby': 6.0, 'lived': 1.0, 'you': 1.0, 'when': 2.0, 'i': 1.0, 'two': 1.0, 'promoted': 1.0, 'first': 2.0, 'month': 1.0, 'it': 4.0, 'sling': 4.0, 'for': 2.0, 'son': 3.0, 'is': 3.0, 'newborn': 1.0, 'sway': 1.0, 'strain': 1.0, 'third': 1.0, 'the': 10.0, 'basically': 1.0, 'purchased': 2.0, 'back': 1.0, 'carrier': 1.0, 'needed': 1.0, 'who': 1.0, 'lot': 1.0, 'anyone': 1.0, 'be': 1.0, 'variety': 1.0, 'few': 1.0, 'uncomfortable': 1.0, 'months': 1.0, 'after': 1.0, 's': 1.0, 't': 2.0, 'a': 4.0, 'we': 4.0, 'in': 3.0, 'this': 3.0, 'perfect': 1.0, 'evenly': 1.0, 'so': 2.0, 'needs': 1.0, 'of': 3.0, 'would': 1.0, 'premature': 2.0, 'cozy': 1.0, 'too': 1.0, 'and': 3.0, 'fact': 1.0, 'my': 3.0, 'fits': 1.0}
Word element => {'mom': 1.0, 'every': 2.0, 'taken': 1.0, 'when': 1.0, 'get': 1.0, 'discretly': 1.0, 'handy': 1.0, 'teachers': 1.0, 'public': 1.0, 'greet': 1.0, 'because': 1.0, 'great': 1.0, 'also': 1.0, 'slept': 1.0, 'some': 1.0, 'womb': 1.0, 'easier': 1.0, 'so': 1.0, 'second': 1.0, 'ever': 1.0, 'both': 1.0, 'best': 1.0, 'comes': 1.0, 'is': 2.0, 'free': 1.0, 'away': 1.0, 'right': 1.0, 'which': 1.0, 'like': 1.0, 'brought': 1.0, 'went': 1.0, 'an': 1.0, 'down': 1.0, 'where': 1.0, 'for': 5.0, 'sling': 3.0, 'though': 1.0, 'schools': 1.0, 'just': 1.0, 'says': 1.0, 'meet': 1.0, 'up': 2.0, 'of': 2.0, 'would': 3.0, 'much': 1.0, 'its': 1.0, 'had': 3.0, 'recommend': 1.0, 'was': 3.0, 'bald': 1.0, 'baby': 6.0, 'sometimes': 1.0, 'ended': 1.0, 'out': 3.0, 'it': 9.0, 'newborns': 1.0, 'first': 1.0, 'even': 1.0, 'got': 2.0, 'could': 1.0, 'a': 3.0, 'hands': 1.0, 'myself': 1.0, 'the': 14.0, 'in': 5.0, 'regular': 1.0, 'must': 1.0, 'have': 2.0, 'attend': 1.0, 'carrier': 2.0, 'children': 1.0, 'gift': 1.0, 'to': 3.0, 'as': 1.0, 'hours': 1.0, 'open': 3.0, 'moms': 1.0, 'and': 7.0, 'me': 1.0, 'hated': 1.0, 'i': 9.0, 'two': 3.0, 'at': 1.0, 'whole': 1.0, 'thing': 1.0, 'about': 1.0, 'told': 1.0, 'other': 1.0, 'house': 3.0, 'different': 1.0, 'upset': 1.0, 'awful': 1.0, 'taking': 1.0, 'my': 2.0, 'breastfeeding': 2.0, 'slide': 1.0, 'consultant': 1.0}
Word element => {'other': 1.0, 'with': 1.0, 'really': 1.0, 'padding': 1.0, 'why': 1.0, 'don': 1.0, 'bulky': 1.0, 'that': 1.0, 'sling': 1.0, 'difference': 1.0, 'big': 1.0, 'makes': 2.0, 'think': 1.0, 'newborn': 1.0, 'prettier': 1.0, 'use': 3.0, 'lot': 1.0, 'petite': 1.0, 'm': 1.0, 'better': 1.0, 'not': 1.0, 'me': 1.0, 'fit': 1.0, 'slings': 2.0, 'babymoon': 1.0, 'compared': 1.0, 'hard': 1.0, 'from': 1.0, 'ordered': 1.0, 'followed': 1.0, 'here': 1.0, 'enough': 1.0, 'liked': 1.0, 'easier': 1.0, 'neighbor': 1.0, 'advice': 1.0, 'one': 2.0, 'the': 3.0, 'but': 2.0, 'back': 1.0, 'hers': 1.0, 'in': 3.0, 'get': 4.0, 'too': 2.0, 'and': 7.0, 'couldn': 1.0, 'was': 2.0, 'comes': 2.0, 'tried': 1.0, 'i': 9.0, 'tight': 1.0, 'my': 3.0, 'nojo': 2.0, 'read': 1.0, 'it': 7.0, 'much': 1.0, 'only': 1.0, 'so': 3.0, 'baby': 1.0, 'hung': 1.0, 'someone': 1.0, 'hurt': 1.0, 'down': 1.0, 'low': 1.0, 'which': 1.0, 'didn': 1.0, 'seem': 1.0, 'safe': 1.0, 'had': 1.0, 'thought': 1.0, 's': 2.0, 't': 3.0, 'going': 1.0, 'could': 1.0, 'a': 6.0, 'different': 1.0, 'sizes': 1.0, 'size': 2.0, 'found': 1.0, 'order': 1.0, 'then': 1.0, 'to': 5.0, 'all': 1.0, 'they': 1.0, 'reviews': 1.0}
Word element => {'recommend': 1.0, 'parenting': 1.0, 'upright': 1.0, 'now': 2.0, 'other': 1.0, 'than': 1.0, 'all': 2.0, 'way': 2.0, 'cover': 1.0, 'four': 1.0, 'part': 1.0, 'baby': 4.0, 'while': 6.0, 'still': 3.0, 'need': 1.0, 'or': 1.0, 'world': 1.0, 'house': 1.0, 'd': 1.0, 'theirs': 1.0, 'about': 2.0, 'driving': 1.0, 'busy': 1.0, 'raved': 1.0, 'me': 2.0, 'learning': 1.0, 'give': 1.0, 'decided': 1.0, 'child': 4.0, 'slip': 1.0, 'second': 1.0, 'keeping': 1.0, 'with': 5.0, 'afforded': 1.0, 'us': 2.0, 'coat': 1.0, 'an': 1.0, 'opportunity': 1.0, 'could': 2.0, 'disturbing': 1.0, 'a': 12.0, 'small': 1.0, 'privacy': 1.0, 'which': 1.0, 'asleep': 1.0, 'was': 6.0, 'pull': 1.0, 'free': 1.0, 'situations': 1.0, 'over': 1.0, 'sleeping': 1.0, 'know': 1.0, 'hand': 1.0, 'i': 18.0, 'much': 2.0, 'do': 4.0, 'too': 1.0, 'one': 1.0, 'pack': 1.0, 'had': 1.0, 'thought': 1.0, 'be': 1.0, 'it': 7.0, 'that': 2.0, 'varied': 1.0, 'enjoyed': 1.0, 'newborn': 2.0, 'both': 1.0, 'needed': 1.0, 'in': 8.0, 'tired': 1.0, 's': 2.0, 'm': 1.0, 'll': 1.0, 'first': 3.0, 'my': 8.0, 'are': 1.0, 'children': 1.0, 'hands': 1.0, 'right': 1.0, 'to': 14.0, 'as': 3.0, 'arms': 1.0, 'so': 3.0, 'found': 2.0, 'have': 3.0, 'the': 17.0, 'doing': 1.0, 'try': 1.0, 'such': 1.0, 'for': 5.0, 'can': 4.0, 'is': 3.0, 'at': 2.0, 'more': 2.0, 'another': 1.0, 'benefits': 1.0, 'if': 2.0, 'great': 2.0, 'seemed': 1.0, 'nursing': 1.0, 'conducive': 1.0, 'carrier': 2.0, 'sling': 11.0, 'quite': 1.0, 'lost': 2.0, 'arrival': 1.0, 'relax': 2.0, 'help': 1.0, 'area': 1.0, 'very': 3.0, 'being': 1.0, 'nearly': 1.0, 'exchanged': 1.0, 'supper': 1.0, 'seen': 1.0, 'you': 3.0, 'upside': 1.0, 'blanket': 1.0, 'highly': 1.0, 'cradle': 1.0, 'front': 1.0, 'securely': 1.0, 'after': 1.0, 'incorporate': 1.0, 'down': 3.0, 'turned': 1.0, 'he': 3.0, 'him': 7.0, 'necessary': 1.0, 'when': 1.0, 'bed': 1.0, 'third': 1.0, 'early': 1.0, 'since': 1.0, 'many': 1.0, 'your': 1.0, 'fabric': 1.0, 'into': 2.0, 'three': 1.0, 'next': 1.0, 'routine': 1.0, 'without': 2.0, 'remove': 1.0, 'wearing': 1.0, 'things': 2.0, 'myself': 1.0, 'fourth': 1.0, 'going': 1.0, 'our': 2.0, 'colicky': 1.0, 'start': 1.0, 'out': 3.0, 'quot': 2.0, 'insert': 1.0, 'nurse': 1.0, 'go': 1.0, 'lay': 1.0, 'method': 1.0, 'settle': 1.0, 'cook': 1.0, 'close': 2.0, 'cuddly': 1.0, 'moving': 1.0, 'only': 1.0, 'then': 1.0, 'key': 1.0, 'of': 7.0, 'even': 2.0, 'whatever': 1.0, 'sleep': 2.0, 'making': 1.0, 'learned': 1.0, 'most': 1.0, 'sorts': 1.0, 'has': 2.0, 'racket': 1.0, 'fall': 1.0, 'times': 1.0, 'tire': 1.0, 'around': 1.0, 'shoes': 1.0, 'carry': 1.0, 'his': 2.0, 'upstairs': 1.0, 'helped': 1.0, 'believe': 1.0, 'on': 1.0, 'this': 2.0, 'and': 18.0, 'just': 1.0, 'nice': 1.0, 'mom': 1.0, 'little': 1.0, 'time': 1.0, 'friends': 1.0, 't': 1.0, 'promise': 1.0, 'put': 1.0, 'miracles': 1.0, 'but': 1.0, 'been': 1.0, 'take': 1.0, 'crucial': 1.0}
Word element => {'different': 1.0, 'native': 1.0, 'if': 1.0, 'are': 2.0, 'slings': 1.0, 'baby': 2.0, 'alone': 1.0, 'try': 2.0, 'don': 1.0, 'tricky': 1.0, 'carrying': 1.0, 'support': 1.0, 'slight': 1.0, 'with': 1.0, 'carry': 1.0, 'comes': 1.0, 'is': 2.0, 'around': 1.0, 'use': 2.0, 'than': 1.0, 'because': 1.0, 's': 1.0, 't': 1.0, 'a': 2.0, 'carrier': 1.0, 'star': 1.0, 'back': 3.0, 'sizes': 1.0, 'nothing': 1.0, 'fussy': 1.0, 'and': 3.0, 'was': 3.0, 'old': 1.0, 'i': 8.0, 'hands': 1.0, 'the': 4.0, 'my': 5.0, 'types': 1.0, 'it': 7.0, 'found': 1.0, 'pain': 1.0, 'this': 3.0, 'so': 1.0, 'bit': 1.0, 'sears': 1.0, 'about': 1.0, 'height': 1.0, 'desperate': 1.0, 'of': 3.0, 'babysling': 2.0, 'slimmer': 2.0, 'after': 1.0, 'great': 1.0, 'seemed': 1.0, 'daughter': 2.0, 'gave': 1.0, 'adjustable': 1.0, 'book': 1.0, 'in': 2.0, 'rate': 1.0, 'reading': 1.0, 'body': 1.0, 'one': 3.0, 'months': 1.0, 'bought': 1.0, 'portable': 1.0, 'think': 1.0, 'on': 2.0, 'dr': 1.0, 'since': 1.0, 'torso': 1.0, 'alot': 1.0, 'thought': 1.0, 'new': 1.0, 'would': 1.0, 'for': 2.0, 'fit': 1.0, 'to': 2.0, 'all': 1.0, 'me': 2.0, 'not': 3.0, 'you': 1.0, 'tied': 1.0, 'am': 1.0, 'average': 2.0, 'side': 1.0, '2': 1.0, 'work': 1.0, 'but': 2.0, 'shoulder': 1.0}
Word element => {'baby': 1.0, 'has': 1.0, 'anyone': 1.0, 'book': 1.0, 'sears': 1.0, 'saver': 1.0, 'use': 1.0, 'no': 1.0, 'older': 1.0, 'now': 1.0, 'dr': 1.0, 'put': 1.0, 'slipped': 1.0, 'life': 1.0, 'just': 1.0, 'her': 2.0, 'very': 1.0, 'bring': 1.0, 'great': 2.0, 'up': 1.0, 'way': 1.0, 'sit': 2.0, 'who': 1.0, 'at': 1.0, 'longer': 1.0, 'down': 3.0, 'lie': 2.0, 'wanted': 1.0, 'then': 1.0, 'far': 1.0, 'off': 1.0, 'legs': 1.0, 'daughter': 1.0, 'or': 1.0, 'husbad': 1.0, 'too': 1.0, 'and': 4.0, 'only': 2.0, 'do': 1.0, 'fit': 1.0, 'not': 4.0, 'of': 2.0, '6': 1.0, 'with': 1.0, 'she': 4.0, 'it': 8.0, 'this': 2.0, 'small': 1.0, 'after': 1.0, 'my': 1.0, 'myself': 1.0, 'the': 4.0, 'adjustment': 1.0, 'disagree': 1.0, 'that': 2.0, 'is': 2.0, 'say': 1.0, '5': 1.0, '4': 1.0, 'i': 5.0, 'bought': 1.0, 'one': 1.0, 'rid': 1.0, 'fussy': 2.0, 'frame': 1.0, 'sleep': 1.0, 'all': 3.0, 'our': 1.0, 'to': 6.0, 'was': 7.0, 'size': 1.0, 'a': 2.0, 'could': 2.0, 'we': 3.0, 'times': 1.0, 'am': 1.0, 'when': 2.0, 'move': 1.0, 'quite': 1.0, 'get': 2.0, 'easy': 1.0, 'recomend': 1.0, 'because': 1.0, 'does': 1.0, 'having': 1.0, 'such': 1.0, 'switching': 1.0, 'others': 1.0, '2': 1.0, 'quot': 2.0, 'but': 3.0, 'reviews': 1.0, 'they': 1.0, 'had': 1.0, 'spread': 1.0}
Word element => {'suffocation': 1.0, 'without': 1.0, 'sleep': 1.0, 'fear': 1.0, 'much': 1.0, 'as': 2.0, 'read': 1.0, 'strongly': 1.0, 'you': 3.0, 'new': 1.0, 'while': 1.0, 'younger': 1.0, 'away': 1.0, 'keep': 1.0, 'wanted': 1.0, 'though': 1.0, 'great': 2.0, 'worked': 1.0, 'that': 1.0, 'is': 6.0, 'used': 2.0, 'haven': 1.0, 'co': 4.0, 'my': 3.0, 'now': 1.0, 'near': 1.0, 'on': 2.0, 'actually': 1.0, 'for': 3.0, 't': 4.0, 's': 3.0, 'we': 1.0, 'way': 1.0, 'reach': 3.0, 'assembly': 1.0, 'don': 1.0, 'some': 2.0, 'the': 9.0, 'of': 4.0, 've': 1.0, 'hasn': 1.0, 'companies': 1.0, 'old': 1.0, 'online': 1.0, 'idea': 1.0, 'seen': 1.0, 'happened': 1.0, 'right': 1.0, 'they': 2.0, 'love': 1.0, 'yet': 2.0, 'parenting': 2.0, 'ardent': 1.0, 'months': 1.0, 'boy': 1.0, 'sleepers': 1.0, 'slept': 1.0, 'i': 8.0, 'little': 2.0, 'two': 2.0, 'concept': 2.0, 'through': 1.0, 'older': 3.0, 'web': 1.0, 'follow': 1.0, 'one': 1.0, 'ones': 1.0, 'from': 1.0, 'designs': 1.0, 'by': 1.0, 'hope': 1.0, 'and': 3.0, 'it': 2.0, 'with': 3.0, 'arrived': 1.0, 'bed': 1.0, 'encourage': 1.0, 'has': 1.0, 'them': 2.0, 'other': 2.0, 'really': 1.0, 'arm': 3.0, 'confusing': 2.0, '15': 1.0, 'bit': 1.0, 'know': 1.0, 'when': 1.0, 'what': 1.0, 'to': 4.0, 'our': 1.0, 'ar': 1.0, 'instructions': 1.0, 'but': 3.0, 'so': 2.0, 'can': 2.0, 'monopoly': 1.0, 'find': 1.0, 'sleeper': 2.0, 'luckily': 1.0, 'are': 2.0, 'this': 2.0, 'page': 1.0, 'if': 1.0, 'still': 3.0, 'son': 1.0, 'those': 1.0, 'there': 1.0, 'give': 1.0, 'us': 4.0, 'who': 1.0, 'space': 1.0, 'paper': 1.0, 'attachment': 2.0, 'ideal': 1.0, 'in': 1.0, 'snuggle': 1.0, 'will': 1.0, 'extra': 1.0, 'nest': 1.0, 'was': 1.0, 'a': 5.0, 'small': 1.0, 'infant': 1.0}
Word element => {'worth': 1.0, 'unraveling': 1.0, 'recommend': 1.0, 'a': 1.0, 'money': 1.0, 'getting': 1.0, 'one': 1.0, 'i': 1.0, 'cheaper': 1.0, 'wash': 1.0, 'sheets': 1.0, 'not': 1.0, 'after': 1.0, 'would': 1.0, 'playpen': 1.0, 'the': 1.0, 'started': 1.0, 'made': 1.0, 'for': 1.0, 'these': 1.0}
Word element => {'one': 2.0, 'for': 2.0, 'little': 1.0, 'clean': 1.0, 'out': 1.0, 'finish': 1.0, 'easily': 1.0, 'you': 1.0, 'sheets': 1.0, 'and': 1.0, 'adds': 1.0, 'it': 2.0, 'sleeper': 2.0, 'this': 1.0, 'washing': 1.0, 'he': 1.0, 'a': 2.0, 'middle': 1.0, 'with': 1.0, 'buying': 1.0, 'is': 4.0, 'comes': 1.0, 'to': 3.0, 'switch': 1.0, 'sleeping': 1.0, 'surface': 1.0, 'anyone': 1.0, 'in': 1.0, 'who': 1.0, 'switching': 1.0, 'the': 6.0, 'your': 1.0, 'on': 1.0, 'buy': 1.0, 'night': 1.0, 'sheet': 1.0, 'co': 2.0, 'simply': 1.0, 'can': 1.0, 'but': 1.0, 'of': 1.0, 'much': 1.0, 'wait': 1.0, 'comfort': 1.0, 'easier': 1.0, 'than': 1.0, 'must': 1.0, 'have': 1.0, 'other': 1.0}
Word element => {'breast': 1.0, 'love': 1.0, 'having': 1.0, 'good': 1.0, 'reach': 1.0, 'feeding': 1.0, 'her': 1.0, 'so': 1.0, 'close': 1.0, 'allows': 1.0, 'for': 2.0, 'interaction': 1.0, 'easy': 1.0}
Word element => {'needs': 1.0, 'diapering': 1.0, 'of': 1.0, 'on': 1.0, 'pockets': 1.0, 'great': 1.0, 'the': 2.0, 'use': 1.0, 'stand': 1.0, 'sleeper': 2.0, 'to': 1.0, 'be': 1.0, 'all': 1.0, 'pack': 1.0, 'sized': 2.0, 'outside': 1.0, 'as': 2.0, 'our': 1.0, 'that': 1.0, 'for': 1.0, 'bed': 1.0, 'love': 1.0, 'can': 1.0, 'co': 2.0, 'are': 1.0, 'bassinet': 1.0, 'full': 2.0, 'attach': 1.0, 'play': 1.0, 'we': 2.0, 'alone': 1.0, 'your': 1.0, 'it': 1.0, 'this': 1.0, 'n': 1.0, 'a': 3.0, 'later': 1.0}
Word element => {'durable': 1.0, 'are': 1.0, 'and': 1.0, 'time': 1.0, 'long': 1.0, 'a': 1.0, 'last': 1.0, 'easy': 1.0, 'hope': 2.0, 'they': 1.0, 'these': 1.0, 'glad': 1.0, 'work': 1.0, 'not': 1.0, 'found': 1.0, 'task': 1.0, 'have': 1.0, 'this': 1.0, 'an': 1.0, 'to': 1.0, 'product': 1.0}
Word element => {'frustrated': 1.0, 'be': 1.0, 'will': 1.0, 'little': 1.0, 'you': 1.0, 'money': 1.0, 'on': 1.0, 'your': 2.0, 'don': 1.0, 'stroller': 1.0, 'doesn': 1.0, 'back': 1.0, 'it': 5.0, 'this': 2.0, 'with': 2.0, 'the': 5.0, 'product': 1.0, 'snacks': 1.0, 'inc': 1.0, 'just': 1.0, 'by': 1.0, 'daughter': 1.0, 'properly': 1.0, 'bar': 1.0, 'round': 1.0, 'sliding': 1.0, 'is': 3.0, 'horrible': 1.0, 'and': 3.0, 'because': 1.0, 'base': 3.0, 'keeps': 1.0, 'attach': 1.0, 'of': 1.0, 'there': 1.0, 'waste': 1.0, 'thus': 1.0, 'to': 2.0, 'all': 1.0, 'in': 1.0, 'flat': 2.0, 'or': 1.0, 'cup': 1.0, 'company': 1.0, 'my': 1.0, 'they': 1.0, 'has': 1.0, 'need': 1.0, 'forward': 1.0, 'kids11': 1.0, 'redesign': 1.0, 'one': 4.0, 'loves': 1.0, 'that': 1.0, 't': 2.0, 'a': 3.0, 'losing': 1.0, 's': 1.0, 'made': 1.0}
Word element => {'tossed': 1.0, 'twice': 1.0, 'about': 1.0, 'everytime': 1.0, 'have': 1.0, 'i': 3.0, 'brand': 1.0, 'oh': 1.0, 'up': 2.0, 'fold': 1.0, 'also': 1.0, 'than': 1.0, 'd': 1.0, 'too': 1.0, 'play': 1.0, 'and': 5.0, 'didn': 1.0, 'even': 1.0, 'stroller': 4.0, 'put': 2.0, 'on': 3.0, 'yea': 1.0, 'waste': 1.0, 'fit': 1.0, 'top': 1.0, 'this': 2.0, 'piece': 3.0, 'with': 3.0, 'did': 2.0, 'modification': 1.0, 'toy': 3.0, 't': 1.0, 'a': 4.0, 'was': 2.0, 'had': 1.0, 'to': 4.0, 'not': 4.0, 'stay': 2.0, 'then': 2.0, 'at': 1.0, 'rather': 1.0, 'of': 2.0, 'my': 6.0, 'the': 5.0, 'without': 1.0, 'would': 3.0, 'upright': 1.0, 'folded': 1.0, 'when': 1.0, 'name': 1.0, 'daughter': 2.0, 'played': 1.0, 'remove': 1.0, 'it': 9.0, 'she': 2.0, 'itself': 1.0, 'in': 3.0, 'money': 1.0, 'removable': 2.0, 'needless': 2.0, 'trash': 1.0, 'is': 1.0, 'say': 2.0, 'time': 1.0, 'some': 1.0, 'knew': 1.0, 'plastic': 1.0, 'how': 1.0, 'out': 1.0, 'that': 3.0, 'decided': 1.0}
Word element => {'kids': 1.0, 'please': 1.0, 'feed': 1.0, 'call': 1.0, 'if': 1.0, 'paint': 2.0, 'sassy': 1.0, 'have': 1.0, 'problems': 1.0, 'with': 1.0, 'on': 1.0, 'the': 1.0, 'let': 1.0, 's': 1.0, 'you': 1.0, 'our': 1.0, 'that': 1.0, 'companys': 1.0, 'of': 1.0, '800': 1.0, '638': 1.0, '2772': 1.0, '1': 1.0, 'get': 1.0, 'cpsc': 1.0, 'top': 1.0}
Word element => {'with': 1.0, 'happy': 1.0, 'very': 1.0, 'baby': 1.0, 'awhile': 1.0, 'every': 1.0, 'up': 1.0, 'just': 1.0, 'off': 1.0, 'have': 1.0, 'there': 1.0, 'anything': 1.0, 'wouldn': 1.0, 'snack': 1.0, 'no': 1.0, 'do': 2.0, 'empty': 1.0, 'pushing': 1.0, 'ladybug': 1.0, 'm': 2.0, 'while': 1.0, 'carrying': 1.0, 'anyone': 1.0, 'putting': 1.0, 'be': 2.0, 'mall': 1.0, 'reccomend': 1.0, 'comes': 1.0, 'around': 1.0, 'able': 1.0, '10': 1.0, 'daughter': 2.0, 'am': 1.0, 'idea': 1.0, 'when': 1.0, 'to': 2.0, 'now': 1.0, 'has': 1.0, 'toy': 4.0, 'had': 1.0, 'bar': 1.0, 'and': 3.0, 'not': 1.0, 'me': 1.0, 'friend': 1.0, 'once': 1.0, 'of': 1.0, 'walk': 1.0, '6': 1.0, 'a': 7.0, 's': 1.0, 't': 3.0, 'without': 1.0, 'the': 10.0, 'like': 1.0, 'using': 1.0, 'straightening': 1.0, 'stroller': 4.0, 'on': 3.0, 'put': 2.0, 'gave': 1.0, 'been': 1.0, 'it': 5.0, 'she': 2.0, 'my': 2.0, 'wasn': 1.0, 'straps': 1.0, 'birth': 1.0, 'tray': 2.0, 'months': 1.0, 'hasn': 1.0, 'old': 1.0, 'i': 10.0, 'her': 3.0, 'in': 3.0, 'this': 1.0, 'toys': 1.0, 'who': 1.0, 'since': 1.0, 'keep': 1.0, 'holder': 1.0, 'mine': 1.0, 'amused': 1.0, 'loosen': 1.0, 'stand': 1.0, 'longer': 1.0, 'than': 1.0, 'was': 1.0, 'anymore': 1.0, 'minutes': 1.0, 'but': 1.0, 'can': 1.0, 'so': 3.0, 'for': 1.0, 'actually': 1.0}
Word element => {'thing': 1.0, 'good': 1.0, 'only': 1.0, 'really': 1.0, 'thats': 1.0, 'with': 1.0, 'like': 1.0, 'did': 1.0, 'give': 1.0, 'weeks': 1.0, 'within': 1.0, 'bar': 1.0, 'off': 1.0, 'broke': 1.0, 'play': 1.0, 'and': 1.0, 'travel': 1.0, 'bought': 1.0, 'stroller': 1.0, 'his': 1.0, 'have': 2.0, 'reach': 1.0, 'the': 7.0, 'tighting': 1.0, 'my': 3.0, 'this': 2.0, 'he': 1.0, 'it': 4.0, 'velcro': 1.0, 'system': 1.0, '3': 1.0, 'make': 1.0, 'around': 1.0, 'to': 4.0, 'was': 1.0, 'toy': 2.0, 'because': 1.0, 'having': 1.0, 'quattro': 1.0, 'tour': 1.0, 'in': 1.0, 'also': 1.0, 'pieces': 1.0, 'stars': 1.0, 'product': 1.0, 'fit': 1.0, 'for': 1.0, 'son': 3.0, 'when': 1.0, 'by': 1.0, 'although': 1.0, 'but': 1.0, 'can': 2.0, 'i': 5.0, 'two': 2.0, 'never': 1.0, 'stays': 1.0, 'staps': 1.0, 'straight': 1.0, 'sit': 1.0, 'always': 1.0, 'of': 3.0, 'keep': 1.0, 'able': 1.0, 'spinning': 1.0, 'so': 1.0, 'toys': 1.0, 'already': 1.0}
Word element => {'12': 1.0, 'for': 1.0, 'must': 1.0, 'everyone': 1.0, 'hours': 1.0, 'few': 1.0, 'lasting': 1.0, 'sessions': 1.0, 'marathon': 1.0, 'tire': 1.0, 'ever': 1.0, 've': 1.0, 'would': 2.0, 'pushing': 1.0, 'while': 1.0, 'stroller': 2.0, 'recommend': 1.0, 'doesn': 1.0, 'his': 1.0, 'in': 1.0, 'my': 1.0, 'him': 2.0, 'be': 1.0, 'haves': 1.0, 'this': 3.0, 'he': 3.0, 'with': 2.0, 'on': 4.0, 'one': 1.0, 'bought': 1.0, 'months': 2.0, 'toy': 1.0, 'well': 1.0, 'shopping': 1.0, 'whim': 1.0, 'holding': 1.0, 'under': 1.0, 'seem': 1.0, 'still': 1.0, 'otherwise': 1.0, '4': 1.0, 'i': 4.0, 'as': 1.0, 'to': 3.0, 'keep': 1.0, '9': 1.0, 'it': 1.0, 'month': 1.0, 'the': 5.0, '2': 1.0, 'a': 2.0, 't': 1.0, 'is': 1.0, '1': 1.0, 'and': 3.0, 'been': 1.0, 'loves': 1.0, 'old': 2.0, 'bites': 1.0, 'happy': 1.0, 'wings': 1.0, 'bee': 1.0, 'of': 3.0, 'chews': 1.0, 'bug': 1.0, 'now': 1.0, 'attached': 1.0, 'fabric': 1.0}
Word element => {'would': 1.0, 'variety': 1.0, 'liked': 1.0, 'product': 1.0, 'for': 2.0, 'it': 4.0, 'this': 2.0, 'with': 3.0, 'he': 2.0, 'that': 1.0, 'son': 2.0, 'very': 1.0, 'enthused': 1.0, 'my': 2.0, 'now': 1.0, 'is': 3.0, 'because': 1.0, '11': 1.0, 'when': 1.0, 'interest': 1.0, 'i': 3.0, '4': 1.0, 'bought': 1.0, 'months': 2.0, 'of': 1.0, 'the': 3.0, 'bright': 1.0, 't': 1.0, 'a': 1.0, 'colors': 1.0, 'toy': 2.0, 'anyone': 1.0, 'him': 1.0, 'and': 2.0, 'play': 1.0, 'good': 1.0, 'but': 1.0, 'recommend': 1.0, 'was': 1.0, 'anymore': 1.0, 'doesn': 1.0, 'have': 1.0, 'to': 2.0, 'all': 1.0, 'much': 1.0, 'in': 1.0, 'nothing': 1.0, 'at': 1.0, 'not': 1.0, 'wrong': 1.0}
Word element => {'properly': 1.0, 'fit': 1.0, 'mention': 1.0, 'not': 2.0, 'mouth': 1.0, 'their': 1.0, 'hurt': 1.0, 'has': 1.0, 'face': 1.0, 'in': 1.0, 'my': 1.0, 'butterfly': 1.0, 'the': 2.0, 'sassy': 1.0, 'and': 2.0, 'products': 1.0, 'i': 2.0, 'cute': 1.0, 'found': 1.0, 'love': 1.0, 'is': 1.0, 'toy': 1.0, 'to': 2.0, 'be': 1.0, 'it': 1.0, 'children': 1.0, 'this': 2.0, 'first': 1.0, 'very': 1.0, 'as': 3.0, 'personally': 1.0, 'stroller': 1.0, 'hits': 1.0, 'but': 1.0, 'all': 1.0, 'well': 2.0, 'a': 3.0, 'does': 1.0, 'hazard': 1.0, 'on': 1.0, 'waste': 1.0, 'of': 1.0}
Word element => {'fun': 1.0, 'added': 1.0, 'some': 1.0, 'cute': 1.0, 'overall': 1.0, 'busy': 1.0, 'ever': 1.0, 'outings': 1.0, 'during': 1.0, 'of': 1.0, 'and': 3.0, 'babies': 1.0, 'that': 4.0, 'your': 2.0, 'baby': 2.0, 'has': 1.0, 'toy': 1.0, 'another': 1.0, 'my': 1.0, 'yet': 1.0, 'cup': 1.0, 'keep': 1.0, 'lot': 1.0, 'a': 3.0, 'was': 1.0, 'with': 1.0, 'this': 4.0, 'only': 1.0, 'it': 2.0, 'comes': 1.0, 'is': 4.0, 'gives': 1.0, 'idea': 1.0, 'you': 1.0, 'time': 1.0, 'so': 2.0, 'if': 2.0, 'even': 1.0, 'stroller': 2.0, 'use': 1.0, 'loved': 1.0, 'bugs': 1.0, 'have': 2.0, 'thing': 2.0, 'given': 1.0, 'for': 2.0, 'to': 2.0, 'as': 1.0, 'gift': 1.0, 'playing': 1.0, 'the': 4.0, 'nice': 1.0, 'great': 2.0, 'track': 1.0, 'not': 1.0, 'like': 1.0, 'legs': 1.0, 'out': 2.0, 'did': 1.0, 'cleaning': 1.0, 'takes': 1.0, 'but': 1.0, 'can': 1.0, 'i': 2.0, 'become': 1.0}
Word element => {'long': 1.0, 'child': 1.0, 'will': 1.0, 'other': 1.0, 'just': 1.0, 'so': 1.0, 'like': 1.0, 'product': 1.0, 'supposed': 1.0, 'an': 1.0, 'bug': 1.0, 'tends': 1.0, 'cup': 2.0, 'about': 1.0, 'complaint': 1.0, 'only': 1.0, 'old': 1.0, 'year': 1.0, 'fall': 1.0, 'comes': 1.0, 'is': 5.0, 'now': 1.0, 'occupy': 1.0, 'with': 2.0, 'i': 2.0, '4': 1.0, 'he': 2.0, 'touch': 1.0, 'never': 1.0, 'that': 5.0, 'loves': 1.0, 'been': 1.0, 'has': 1.0, 'toy': 3.0, 'system': 1.0, 'a': 1.0, 'we': 3.0, 'attach': 1.0, 'have': 3.0, 'this': 4.0, 'it': 9.0, 'velcro': 1.0, 'son': 2.0, 'bar': 2.0, 'insert': 1.0, 'stroller': 2.0, 'your': 1.0, 'on': 4.0, 'put': 1.0, 'closed': 1.0, 'play': 1.0, 'and': 6.0, 'great': 1.0, '1': 1.0, 'absolutely': 1.0, 'strollers': 1.0, 'out': 2.0, 'fits': 1.0, 'my': 2.0, 'the': 11.0, '2': 1.0, 'of': 2.0, 'look': 2.0, 'takes': 1.0, 'car': 1.0, 'carrier': 1.0, 'need': 2.0, 'during': 1.0, 'graco': 2.0, 'snack': 2.0, 'when': 2.0, 'again': 1.0, 'you': 2.0, 'seat': 1.0, 'to': 9.0, 'legs': 1.0, 'off': 2.0, 'section': 1.0, 'side': 1.0, 'one': 1.0, 'months': 1.0, 'tray': 1.0, 'loved': 1.0, 'took': 2.0, 'then': 2.0, 'slide': 1.0, 'trips': 1.0, 'at': 1.0, 'since': 1.0, 'main': 1.0, 'than': 1.0, 'tour': 1.0, 'quattro': 1.0, 'maybe': 1.0, 'was': 1.0, 'minutes': 1.0}
Word element => {'happened': 1.0, 'same': 1.0, 'and': 2.0, 'came': 1.0, 'buy': 1.0, 'i': 1.0, 'tie': 1.0, 'straps': 1.0, 'but': 1.0, 'stroller': 1.0, 'problem': 1.0, 'that': 1.0, 'is': 1.0, 'the': 4.0, 'again': 1.0, 'are': 1.0, 'thing': 1.0, 'due': 1.0, 'loved': 1.0, 'another': 1.0, 'un': 1.0, 'baby': 1.0, 'first': 1.0, 'this': 2.0, 'only': 1.0, 'it': 1.0, 'had': 1.0, 'to': 3.0, 'not': 1.0, 'big': 1.0, 'sewed': 1.0, 'some': 1.0, 'enough': 1.0, 'one': 2.0, 'for': 1.0, 'my': 1.0, 'trays': 1.0}
Word element => {'best': 1.0, '1': 1.0, 'than': 1.0, 'concerning': 1.0, 'too': 1.0, 'her': 1.0, 'used': 1.0, 'things': 1.0, 'this': 1.0, 'found': 1.0, 'when': 1.0, 'daughter': 1.0, 'have': 1.0, 'coming': 1.0, 'only': 2.0, 'higher': 1.0, 'it': 2.0, 'eating': 1.0, 'realized': 1.0, 'was': 1.0, 'paint': 2.0, 'that': 1.0, 'been': 1.0, 'teething': 1.0, 'risks': 1.0, 'off': 1.0, 'lip': 1.0, 'my': 1.0, 'started': 2.0, 'not': 1.0, 'the': 3.0, 'wishes': 1.0, 'some': 1.0, 'such': 1.0, 'on': 1.0, 'months': 1.0, 'since': 1.0, 'had': 1.0, 'bar': 1.0, 'we': 3.0, 'a': 1.0, 'rate': 1.0, 'using': 1.0, 'product': 1.0, 'for': 1.0, 'couple': 1.0, 'once': 1.0, 'of': 1.0, 'i': 1.0, 'worry': 1.0, 'amp': 3.0, 'about': 1.0, 'any': 1.0, 'to': 2.0, 'as': 1.0, 'consider': 1.0, 'possible': 1.0, 'be': 1.0}
Word element => {'convenient': 1.0, 'more': 1.0, 'trash': 1.0, 'regular': 1.0, 'so': 1.0, 'can': 1.0, 'fact': 1.0, 'however': 1.0, 'some': 1.0, 'gets': 1.0, 'frequently': 1.0, 'babysitters': 1.0, 'grandmothers': 1.0, 'intuitive': 1.0, 'isn': 1.0, 'star': 1.0, 'knocked': 1.0, 'pails': 1.0, 'different': 1.0, 'on': 1.0, 'many': 1.0, 'any': 1.0, 'according': 1.0, 'consensus': 1.0, 's': 1.0, 'but': 1.0, 'stinkier': 1.0, 'you': 1.0, 'starts': 1.0, 'things': 1.0, 'food': 1.0, 'solid': 1.0, 'least': 1.0, 'children': 1.0, 'friends': 1.0, 'couple': 1.0, 'before': 1.0, 'plastic': 1.0, 'tie': 1.0, 'mechanism': 1.0, 'action': 1.0, 'most': 1.0, 'days': 1.0, '3': 1.0, 'much': 2.0, 'put': 1.0, 'bag': 3.0, 'around': 1.0, '2': 1.0, 'getting': 1.0, 'solids': 1.0, 'after': 1.0, 'when': 2.0, 'about': 1.0, 'there': 2.0, 'pretty': 1.0, 'to': 3.0, 'pail': 4.0, 'immediately': 1.0, 'no': 1.0, 'years': 1.0, 'also': 1.0, 've': 2.0, 'would': 1.0, 'smell': 4.0, 'finally': 1.0, 'control': 1.0, 'small': 1.0, 'a': 7.0, 'at': 1.0, 'is': 3.0, 'notice': 1.0, 'smelly': 2.0, 'weekly': 1.0, 'issues': 1.0, 'mainly': 1.0, 'for': 3.0, 'cheap': 1.0, 'one': 5.0, 'months': 2.0, 'started': 3.0, 'just': 2.0, 'didn': 2.0, 'son': 1.0, 'year': 1.0, 'containment': 1.0, 'ok': 1.0, 'attic': 1.0, 'of': 1.0, 'the': 17.0, 'had': 1.0, 'was': 1.0, '22': 1.0, 'now': 1.0, '5': 1.0, 'full': 1.0, 'dirty': 1.0, 'were': 2.0, 'eating': 2.0, 'few': 1.0, 'this': 2.0, 'it': 2.0, 'plus': 1.0, 'diapers': 2.0, 'are': 2.0, 'first': 1.0, 'off': 1.0, 'until': 2.0, 'max': 1.0, 'big': 1.0, 'primary': 1.0, 'problems': 1.0, '20': 1.0, 'that': 4.0, 'and': 9.0, 'newsflash': 1.0, 'our': 3.0, 'shopping': 1.0, 'container': 1.0, 'be': 1.0, 'stuck': 1.0, 'champ': 1.0, 'have': 2.0, 'cheaper': 1.0, 'pleased': 1.0, 'change': 1.0, 'cheapo': 1.0, 'major': 1.0, 'less': 1.0, 'up': 1.0, 'got': 1.0, 'upstairs': 1.0, 'good': 1.0, 'which': 1.0, 'i': 1.0, 'putting': 1.0, 'broke': 1.0, 'reviews': 1.0, 'we': 6.0, 'difference': 1.0, 'them': 1.0, 'always': 1.0, 't': 3.0, 'ago': 1.0, 'stunk': 1.0, 'find': 1.0, 'since': 2.0, 'bags': 1.0, 'as': 3.0, 'diaper': 1.0, 'in': 3.0, 'use': 2.0, 'with': 2.0, 'twice': 1.0, 'flip': 1.0, 'helpful': 1.0, 'lid': 1.0, 'fits': 1.0, 'inside': 2.0, 'cabinet': 1.0}
Word element => {'bad': 1.0, 'smells': 1.0, 'effective': 1.0, 'not': 1.0, 'because': 1.0, 'this': 1.0, 'controlling': 1.0, 'gets': 1.0, 'daughter': 1.0, 'baby': 1.0, 'simply': 1.0, 'is': 4.0, 'my': 1.0, 'solid': 1.0, 'an': 1.0, 'but': 1.0, 'put': 1.0, 'diapers': 1.0, 'champ': 1.0, 'product': 1.0, 'odor': 1.0, 'older': 1.0, 'now': 1.0, 'had': 1.0, 'start': 1.0, 'pail': 1.0, 'to': 4.0, 'as': 2.0, 'foods': 1.0, 'very': 1.0, 'from': 1.0, 'too': 1.0, 'and': 3.0, 'easy': 1.0, 'use': 1.0, 'dirty': 1.0, 'nursery': 1.0, '10': 1.0, 'months': 1.0, 'it': 3.0, 'remove': 1.0, 'begins': 1.0, 'old': 1.0, 'a': 2.0, 'we': 1.0, 'place': 1.0, 'the': 1.0, 'diaper': 1.0, 'good': 1.0, 'her': 1.0}
Word element => {'system': 1.0, 'try': 1.0, 're': 1.0, 'still': 1.0, 'desired': 1.0, 'but': 1.0, 'frequently': 1.0, 'go': 1.0, 'disposal': 2.0, 'far': 1.0, 'going': 1.0, 'complaint': 1.0, 'primary': 1.0, 'frustrating': 1.0, 'super': 1.0, 'cleanser': 1.0, 'about': 1.0, 'scrubbing': 1.0, 'deodorized': 1.0, 'freshly': 1.0, 'even': 1.0, 'while': 1.0, 'occasionally': 1.0, 'after': 1.0, 'replaced': 1.0, 'or': 1.0, 'cannot': 1.0, 'retain': 1.0, 'really': 1.0, 'material': 1.0, 'soft': 1.0, 'some': 3.0, '3': 1.0, 'gross': 1.0, 'okay': 1.0, 'last': 1.0, 'any': 1.0, 'pretty': 1.0, 'to': 9.0, 'positive': 1.0, 'we': 1.0, 'reviews': 1.0, 'dirty': 3.0, 'were': 1.0, 'into': 2.0, 'next': 1.0, 'generally': 1.0, 'also': 1.0, 'seems': 2.0, 'less': 1.0, 'champ': 4.0, 'little': 1.0, 'a': 5.0, 't': 1.0, 'hole': 1.0, 'this': 3.0, 'moderately': 1.0, '8': 1.0, 'plastic': 2.0, 'it': 6.0, 'than': 1.0, 'that': 2.0, 'because': 1.0, 'empty': 1.0, 'mainly': 1.0, 'things': 1.0, 'you': 7.0, 'bag2': 1.0, 'seal': 2.0, 'when': 3.0, 'given': 1.0, 'smells': 2.0, 'trash': 3.0, 'husband': 1.0, 'more': 1.0, 'around': 1.0, 'comes': 1.0, 'of': 3.0, 'the': 21.0, 'positives': 1.0, 's': 1.0, 'refill': 2.0, 'my': 2.0, 'talking': 1.0, 'roped': 1.0, 'like': 2.0, 'product': 2.0, 'be': 3.0, 'another': 2.0, 'trying': 1.0, 'specialty': 1.0, 'systems': 1.0, 'as': 2.0, 'diaper': 7.0, 'bags': 2.0, 'washed': 2.0, '1': 2.0, 'seemed': 1.0, 'and': 8.0, 'priced': 1.0, '2': 1.0, 'disinfect': 1.0, 'negatives': 1.0, 'ordinary': 1.0, 'not': 1.0, 'was': 1.0, 'must': 2.0, 'doesn': 1.0, 'buying': 1.0, 'i': 3.0, 'knock': 1.0, 'with': 3.0, 'leaves': 1.0, 'easy': 1.0, 'wash': 1.0, 'use': 3.0, 'refillthe': 1.0, 'bag': 2.0, 'are': 3.0, 'diapers': 2.0, 'can': 3.0, 'so': 4.0, 'time': 2.0, 'clorox': 1.0, 'just': 1.0, 'opening': 1.0, 'regular': 1.0, 'm': 1.0, 'in': 3.0, 'air': 1.0, 'hosing': 1.0, 'out': 1.0, 'smell': 2.0, 'odor': 4.0, 'ie': 2.0, 'much': 1.0, 'put': 2.0, 'think': 1.0, 'flip': 2.0, 'outside': 1.0, 'dekor': 1.0, 'dump': 1.0, 'side': 1.0, 'is': 3.0, 'selected': 1.0, 'handle': 1.0, 'dumper': 1.0, 'thingie': 1.0, 'there': 1.0, 'contact': 1.0, 'down': 1.0, 'changer': 1.0, 'inside': 1.0, 'over': 1.0, 'dispose': 1.0}
Word element => {'nose': 1.0, 'for': 2.0, 'investment': 1.0, 'wise': 1.0, 'a': 1.0, 'conjunction': 1.0, 'used': 1.0, 'i': 2.0, 'in': 1.0, 'kitchen': 1.0, 'trash': 1.0, 'glad': 1.0, 'pocketbook': 1.0, 'excellent': 1.0, '3ply': 1.0, 'odor': 1.0, 'the': 2.0, 'diaper': 1.0, 'control': 1.0, 'am': 1.0, 'bags': 1.0, 'disposal': 1.0, 'scented': 1.0, 'soooo': 1.0, 'pleased': 1.0, 'it': 1.0, 'unit': 1.0, 'with': 3.0, 'this': 1.0, 'product': 1.0}
Word element => {'out': 1.0, 'pull': 1.0, 'open': 1.0, 'pail': 1.0, 'had': 1.0, 'before': 1.0, 'ones': 1.0, 'curious': 1.0, 'can': 1.0, 'most': 1.0, 'no': 3.0, 'over': 1.0, 'top': 1.0, 'the': 7.0, 'diaper': 4.0, 'new': 1.0, 'drop': 1.0, 'feature': 1.0, 'in': 3.0, 'into': 1.0, 'that': 2.0, 'champ': 2.0, 'longer': 1.0, 'inside': 1.0, 'an': 1.0, 'your': 1.0, 'put': 1.0, 'little': 1.0, 'very': 1.0, 'best': 1.0, 'love': 1.0, 'it': 3.0, 'need': 1.0, 'flip': 1.0, 'and': 3.0, 'problem': 1.0, 'odor': 1.0, 'just': 2.0, 'learned': 1.0, 'get': 1.0, 'easy': 1.0, 'use': 1.0, 'hint': 1.0, 'hand': 1.0, 'of': 2.0, 'is': 3.0, 'trash': 1.0, 'diapers': 2.0, 'even': 2.0, 'dipaer': 1.0, 'son': 1.0, 'gets': 1.0, 'when': 2.0, 'you': 1.0, 'are': 1.0, 'found': 1.0, 'full': 1.0, 'putting': 1.0, 'another': 2.0, 't': 1.0, 'we': 3.0, 'a': 2.0, 'stick': 1.0, 'bags': 1.0, 'our': 2.0, 'to': 3.0, 'all': 1.0}
Word element => {'winter': 1.0, 'outside': 1.0, 'day': 1.0, 'or': 1.0, 'than': 1.0, 'like': 1.0, 'more': 2.0, 'larger': 1.0, 'grows': 1.0, 'baby': 1.0, 'times': 2.0, '2': 2.0, '1': 1.0, 'change': 1.0, 'taking': 1.0, '3': 2.0, 'clean': 1.0, 'voila': 1.0, 'both': 1.0, 'them': 1.0, 'wipes': 1.0, 'garbage': 2.0, 'go': 1.0, 'tie': 1.0, 'secure': 1.0, 'odors': 1.0, 'stinky': 1.0, 'close': 1.0, 'before': 1.0, 'run': 1.0, 'oust': 1.0, 'hand': 1.0, 'your': 1.0, 'minnesota': 1.0, 'having': 1.0, 'without': 1.0, 'you': 1.0, 'will': 2.0, 'engaged': 1.0, 'back': 1.0, 'especially': 1.0, 'plop': 1.0, 't': 1.0, 'doesn': 1.0, 'place': 1.0, 'week': 2.0, 'locks': 1.0, 'lid': 1.0, 'top': 4.0, 'wall': 1.0, 'away': 2.0, 'be': 2.0, 'lift': 1.0, 'also': 1.0, 'within': 1.0, 'dog': 1.0, 'neither': 1.0, 'months': 1.0, 'get': 2.0, 'going': 1.0, 'nearby': 1.0, 'not': 1.0, 'view': 1.0, 'maybe': 1.0, 'sides': 1.0, 's': 5.0, 'toddler': 1.0, 'child': 1.0, 'from': 2.0, 'but': 2.0, 'about': 2.0, 'bit': 1.0, 'found': 1.0, 'this': 1.0, 'fall': 1.0, 'that': 4.0, 'into': 4.0, 'in': 5.0, 'needs': 1.0, 'turning': 1.0, 'out': 3.0, 'dirty': 3.0, 'they': 2.0, 'trash': 2.0, 'wet': 1.0, 'gravitic': 1.0, 'point': 1.0, 'started': 1.0, 'family': 2.0, 'neck': 1.0, 'orders': 1.0, 'cartridges': 1.0, 'better': 1.0, 'flip': 2.0, 'dg': 2.0, 'and': 12.0, 'with': 3.0, 'had': 2.0, 'onto': 2.0, 'put': 1.0, 'to': 6.0, 'pail': 1.0, 'members': 2.0, 'each': 1.0, 'antibacterial': 1.0, 'girlfriends': 1.0, 'of': 5.0, 'the': 21.0, 'drop': 1.0, 'smells': 1.0, 'costliness': 1.0, 'off': 1.0, 'access': 1.0, 'until': 1.0, 'tried': 1.0, 'genie': 1.0, 'champ': 1.0, 'eventual': 1.0, 'ease': 1.0, 'my': 1.0, 'me': 1.0, 'wow': 1.0, 'give': 1.0, 'use': 1.0, 'when': 1.0, 'what': 1.0, 'results': 1.0, 'gallon': 1.0, 'a': 16.0, 'eventually': 1.0, 'wrenching': 1.0, 'hole': 1.0, 'it': 16.0, 'seals': 1.0, 'twist': 2.0, 'leaving': 1.0, 'very': 1.0, 'two': 2.0, 'little': 4.0, 'well': 1.0, 'normal': 1.0, '8': 2.0, 'down': 2.0, 'no': 1.0, '13': 1.0, 'as': 1.0, 'diaper': 7.0, 'horrible': 1.0, 'bags': 1.0, 'open': 1.0, 'hard': 1.0, 'keep': 1.0, 'makes': 1.0, 'just': 1.0, 'economical': 1.0, 'take': 1.0, 'we': 4.0, 'difference': 1.0, 'fighting': 1.0, 'buying': 1.0, 'factor': 1.0, 'amazing': 1.0, 'grab': 2.0, 'at': 5.0, 'look': 1.0, 'is': 4.0, 'bringing': 1.0, 'handle': 1.0, 'on': 1.0, 'plunger': 2.0, 'pushes': 1.0, 'using': 1.0, 'bag': 4.0, 'around': 1.0, 'drops': 1.0, 'so': 2.0, 'can': 5.0, 'area': 1.0, 'help': 1.0, 'still': 1.0, 'stay': 1.0, 'every': 2.0, 'proprietary': 1.0, 'cartridge': 1.0, 'system': 1.0, 'opening': 2.0, 'spritz': 1.0, 'for': 1.0, 'diapers': 3.0, 'first': 1.0, 'time': 1.0, 'was': 1.0}
Word element => {'mom': 1.0, 'huge': 1.0, 'special': 1.0, 'good': 1.0, 'if': 1.0, 'leaks': 1.0, 'very': 1.0, 'little': 1.0, 'needing': 1.0, 'not': 2.0, 'because': 1.0, 'smell': 2.0, 'bad': 1.0, 'gave': 1.0, 'retaining': 1.0, 'bags': 1.0, 'from': 1.0, 'kept': 1.0, 'step': 1.0, 'second': 1.0, 'cleaner': 1.0, 'antibacterial': 1.0, 'for': 1.0, 'stars': 1.0, 'product': 2.0, 'or': 1.0, 'spray': 1.0, 'you': 1.0, 'time': 1.0, 'week': 1.0, 'at': 2.0, 'similar': 1.0, 'and': 5.0, 'out': 2.0, 'couple': 1.0, 'every': 1.0, 'really': 2.0, 'sometimes': 1.0, 'solids': 1.0, 'refill': 1.0, 'the': 3.0, 'diaper': 2.0, 'benefit': 1.0, 'is': 1.0, 'around': 1.0, 'more': 1.0, '4': 1.0, 'i': 4.0, 'waited': 1.0, 'it': 3.0, 'with': 3.0, 'full': 1.0, 'perfect': 1.0, 'this': 2.0, 'eating': 1.0, 'now': 1.0, '1': 2.0, 'until': 1.0, 'performed': 1.0, 'daughter': 1.0, 'plastic': 1.0, 'stage': 1.0, 'how': 1.0, 'year': 1.0, 'has': 1.0, 'review': 1.0, 'in': 1.0, 'stinky': 2.0, 'saw': 1.0, 'lots': 1.0, 'wipe': 1.0, 'baby': 1.0, 'lysol': 1.0, 'once': 1.0, 'of': 1.0, 'making': 1.0, 'diapers': 1.0, 'champ': 1.0, 'but': 1.0, '2': 1.0, 'can': 1.0, 'happily': 1.0, 'recommend': 1.0, 'all': 1.0, 'to': 1.0, 'as': 1.0, 'least': 1.0, 'suggestions': 1.0, 'a': 7.0, 's': 3.0, 'busy': 1.0, 'gets': 1.0, 'stinkier': 1.0, 'poop': 1.0, 'empty': 2.0, 'my': 1.0, 'often': 1.0}
Word element => {'yuck': 1.0, 'clean': 1.0, 'trash': 3.0, 'is': 3.0, 'using': 1.0, 'like': 1.0, 'does': 2.0, 'because': 1.0, 'on': 1.0, 'your': 3.0, 'not': 3.0, 'period': 1.0, 'save': 2.0, 'lid': 1.0, 'inside': 1.0, 'champ': 2.0, 'genie': 4.0, 'try': 1.0, 'empty': 1.0, 'd': 1.0, 'years': 1.0, 'had': 1.0, 'just': 2.0, 'almost': 1.0, 'and': 2.0, 'use': 1.0, 'since': 1.0, 'keep': 1.0, 'a': 7.0, 's': 1.0, 't': 3.0, 'for': 2.0, '4': 1.0, 'well': 2.0, 'i': 6.0, 'have': 4.0, 'suppose': 1.0, 'born': 1.0, 'waste': 1.0, 'much': 1.0, 'changing': 1.0, 'saver': 1.0, 'been': 1.0, 'into': 1.0, 'bags': 1.0, 'diaper': 3.0, 'as': 2.0, 'job': 1.0, 'to': 5.0, 'refills': 1.0, 'fancier': 1.0, 'all': 1.0, 'son': 1.0, 'odor': 1.0, 'was': 2.0, 'odorless': 1.0, 'first': 1.0, 'with': 2.0, 'thought': 1.0, 'it': 8.0, 'but': 1.0, 'constantly': 1.0, 'so': 1.0, 'can': 2.0, 'better': 1.0, 'longer': 1.0, 'the': 10.0, 'of': 1.0, 'hold': 1.0, 'keeping': 1.0, 'second': 1.0, 'smelling': 1.0, 'room': 2.0, 'before': 1.0, 'regular': 2.0, 'in': 2.0, 'don': 2.0, 'they': 2.0, 'dirty': 2.0, 'wouldn': 1.0, 'be': 1.0, 'you': 5.0, 'able': 1.0, 'get': 2.0, 'buy': 1.0, 'my': 2.0, 'looks': 1.0, 'nose': 1.0, 'could': 1.0, 'will': 1.0, 'also': 1.0, 'child': 1.0, 'thank': 1.0, 'if': 1.0, 'wipes': 1.0, 'enclosed': 1.0, 'this': 1.0, 'fresh': 1.0, 'thing': 1.0}
Word element => {'price': 1.0, 'suggestions': 1.0, 'never': 1.0, 'here': 1.0, 'disappear': 1.0, 'dirty': 2.0, 'full': 1.0, 'recommend': 1.0, 'very': 2.0, 'prevent': 1.0, 'how': 1.0, 'item': 1.0, 'changed': 1.0, 'week': 1.0, 'son': 1.0, 'month': 1.0, 'almost': 1.0, 'air': 1.0, 'worth': 1.0, 'been': 2.0, 'at': 1.0, 'is': 7.0, 'people': 1.0, 'house': 2.0, 'mind': 1.0, 'in': 7.0, 'problems': 1.0, 'because': 3.0, 'fact': 1.0, 'noticed': 1.0, 'on': 2.0, 'no': 2.0, 'problem': 2.0, 'odor': 4.0, 'an': 1.0, 'all': 4.0, 'other': 2.0, 'potent': 1.0, 'had': 1.0, 'have': 4.0, 'present': 1.0, 'originally': 1.0, 'lifesaver': 1.0, 'complain': 2.0, '10': 1.0, 'product': 2.0, 'diaper': 10.0, 'bags': 2.0, 'the': 20.0, 'old': 1.0, 'of': 7.0, 'more': 1.0, 'babies': 2.0, 'changes': 2.0, 'talking': 1.0, 'ever': 1.0, 's': 1.0, 'maybe': 1.0, 'go': 1.0, 'has': 1.0, 'recommended': 1.0, 'if': 1.0, 'still': 1.0, 'one': 2.0, 'amazed': 1.0, 'decided': 1.0, 'become': 2.0, 'mine': 2.0, 'hello': 1.0, 'costly': 1.0, 'useful': 1.0, 'well': 1.0, 'that': 7.0, 'experiencing': 1.0, 'toddlers': 1.0, 'use': 1.0, 'good': 1.0, 'like': 1.0, 'champ': 3.0, 'certainly': 1.0, 'stuck': 1.0, 'this': 4.0, 'highly': 1.0, 'with': 3.0, 'seems': 1.0, 'until': 1.0, 'too': 2.0, '3': 1.0, 'older': 2.0, 'put': 1.0, 'do': 1.0, 'are': 3.0, 'my': 3.0, 'me': 1.0, 'registry': 1.0, 'baby': 1.0, 'ask': 1.0, 'so': 2.0, 't': 2.0, 'friends': 1.0, 'once': 1.0, 'didn': 1.0, 'for': 4.0, 'seconds': 1.0, 'efficient': 1.0, 'than': 1.0, 'happening': 1.0, 'while': 1.0, 'lysol': 1.0, 'those': 3.0, 'genie': 1.0, 'not': 1.0, 'come': 1.0, 'idea': 1.0, 'indication': 1.0, 'consistency': 1.0, 'probably': 1.0, 'words': 1.0, 'you': 2.0, 'should': 1.0, 'some': 3.0, 'solve': 1.0, '1': 2.0, 'change': 2.0, 'takes': 1.0, 'as': 6.0, 'less': 2.0, 'frequently': 1.0, 'popular': 1.0, 'or': 2.0, '2': 2.0, 'thing': 1.0, 'times': 1.0, 'gets': 2.0, 'a': 5.0, 'bag': 1.0, 'getting': 1.0, 'same': 1.0, 'feedback': 1.0, 'also': 2.0, 'gradually': 1.0, 'making': 1.0, 'sure': 1.0, 'pail': 2.0, 'about': 2.0, 'tape': 1.0, 'secure': 1.0, 'wipe': 1.0, 'special': 1.0, 'spray': 1.0, 'will': 1.0, 'who': 3.0, 'from': 1.0, 'dispose': 1.0, 'clean': 1.0, 'which': 1.0, 'again': 1.0, 'it': 6.0, 'smell': 2.0, 'longer': 1.0, 'does': 3.0, 'down': 1.0, 'antibacterial': 1.0, 'wipes': 1.0, 'out': 1.0, 'two': 1.0, 'i': 10.0, 'simple': 1.0, 'works': 1.0, 'isn': 1.0, 'foods': 1.0, 'effective': 2.0, 'time': 1.0, 'passes': 1.0, 'keep': 1.0, 'following': 1.0, 'and': 10.0, 'pails': 1.0, 'just': 1.0, 'get': 3.0, 'diapers': 3.0, 'diets': 1.0, 'their': 4.0, 'buy': 1.0, 'having': 1.0, 'aka': 1.0, 'rather': 1.0, 'parents': 1.0, 'let': 1.0, 'they': 1.0, 'diet': 1.0, 'stool': 1.0, 'then': 1.0, 'minute': 1.0, 'stinkier': 1.0, 'solid': 1.0, 'definitely': 1.0, 'would': 1.0, 'to': 5.0, 'reasonable': 1.0}
Word element => {'best': 1.0, 'that': 1.0, 'will': 1.0, 'weeks': 1.0, 'in': 1.0, 's': 1.0, 'a': 2.0, 'bag': 2.0, 'baby': 1.0, 'pinch': 1.0, 'pretty': 1.0, 'can': 1.0, 'way': 1.0, 'i': 4.0, 'champ': 3.0, 'genie': 1.0, 'the': 7.0, 'glad': 1.0, 'diaper': 2.0, 'you': 3.0, 'am': 1.0, 'so': 1.0, 'use': 1.0, 'instead': 1.0, 'got': 1.0, 'even': 1.0, 'of': 1.0, 'grocery': 1.0, 'plastic': 1.0, '6': 1.0, 'much': 1.0, 'do': 1.0, 'and': 2.0, 'my': 1.0, 'is': 2.0, 'have': 1.0, 'any': 2.0, 'all': 1.0, 'never': 1.0, 'smelled': 1.0, 'odors': 1.0, 'just': 1.0, 'at': 1.0, 'from': 1.0, 'especially': 1.0, 'like': 1.0, 'definitely': 1.0, 'close': 1.0, 'it': 2.0, 'flip': 1.0, 'handle': 1.0}
Word element => {'no': 1.0, 'regular': 1.0, 'part': 1.0, 'important': 1.0, 'most': 1.0, 'replaced': 1.0, 'needs': 1.0, 'unless': 1.0, 'everyone': 1.0, 'recommend': 1.0, 'would': 1.0, 'product': 1.0, 'careful': 1.0, 'when': 2.0, 'baby': 1.0, 'your': 4.0, 'stuff': 1.0, 'on': 1.0, 'poopy': 1.0, 'like': 1.0, 'garbage': 1.0, 'hold': 1.0, 'done': 1.0, 'be': 2.0, 'have': 2.0, 'in': 2.0, 'if': 2.0, 'turn': 1.0, 'to': 10.0, 'also': 2.0, 'us': 1.0, 'decided': 1.0, 'smells': 1.0, 'given': 1.0, 's': 1.0, 'we': 3.0, 'a': 3.0, 'breath': 1.0, 'genie': 1.0, 'champ': 1.0, 'you': 10.0, 'everytime': 3.0, 'down': 1.0, 'even': 1.0, 'are': 3.0, 'diapers': 1.0, 'both': 1.0, 'holding': 1.0, 'messy': 1.0, 'but': 3.0, '2': 1.0, 'change': 1.0, 'since': 1.0, 'required': 1.0, 'gets': 1.0, 'use': 4.0, 'refills': 2.0, 'with': 2.0, 'hard': 1.0, 'it': 11.0, 'had': 1.0, 'was': 1.0, 'disposing': 1.0, 'bags': 1.0, 'as': 1.0, 'diaper': 5.0, 'plastic': 1.0, 'before': 1.0, 'top': 1.0, 'star': 1.0, 'the': 11.0, 'of': 1.0, 'that': 4.0, 'cannot': 1.0, 'very': 3.0, 'expensive': 2.0, 'for': 4.0, 'can': 3.0, 'so': 2.0, 'time': 1.0, 'hand': 2.0, 'buy': 1.0, 'and': 6.0, 'love': 2.0, 'far': 1.0, 'handle': 1.0, 'is': 3.0, 'easy': 2.0, 'i': 3.0, 'need': 1.0, 'feature': 1.0, '4': 1.0, 'acutally': 1.0, 'bag': 3.0, 'reason': 2.0, 'clean': 1.0, 'chute': 1.0, 'some': 1.0, 'does': 2.0, 'not': 2.0, 'smell': 2.0, 'off': 1.0, 'put': 1.0, 'much': 1.0, 'dispose': 2.0, 'only': 1.0, 'which': 1.0, 'gift': 1.0, 'side': 1.0, 'one': 2.0, 'rating': 1.0, 'this': 1.0}
Word element => {'fight': 1.0, 'be': 1.0, 'it': 1.0, 'bin': 1.0, 'recycle': 1.0, 'on': 1.0, 'stairs': 1.0, 'hall': 1.0, 'seeping': 1.0, 'back': 1.0, 'headache': 1.0, 'you': 1.0, 'reviews': 1.0, 'negative': 1.0, 'd': 2.0, '3': 1.0, 'about': 2.0, 'baby': 1.0, 'not': 1.0, 'give': 1.0, 'while': 1.0, 'from': 2.0, 'with': 2.0, 'quick': 1.0, 'chute': 2.0, 'hand': 1.0, 'returning': 1.0, 'easy': 1.0, 'store': 1.0, 'is': 4.0, 'around': 1.0, 'won': 1.0, 'regular': 1.0, 'm': 1.0, 'in': 1.0, 'a': 6.0, 't': 1.0, 'ago': 1.0, 's': 2.0, 'months': 2.0, 'for': 5.0, 'way': 1.0, 'inner': 1.0, 'and': 5.0, '1': 1.0, 'drawn': 1.0, 'genie': 1.0, 'strong': 1.0, 'champ': 3.0, 'i': 6.0, 'when': 2.0, 'dealing': 1.0, 'our': 1.0, 'shopping': 1.0, 'loose': 1.0, 'out': 1.0, '2': 2.0, 'bags': 1.0, 'diaper': 7.0, 'of': 1.0, 'the': 16.0, 'use': 1.0, 'to': 7.0, 'pail': 3.0, 'became': 1.0, 'now': 1.0, 'that': 3.0, 'into': 2.0, 'was': 2.0, 'filled': 1.0, 'each': 1.0, 'drop': 1.0, 'had': 2.0, 'plastic': 1.0, '8': 1.0, 'several': 1.0, 'stick': 1.0, 've': 1.0, 'down': 2.0, 'one': 1.0, 'lives': 1.0, 'up': 1.0, 'its': 2.0, 'only': 1.0, 'nursery': 1.0, 'idea': 1.0, 'name': 1.0, 'daughter': 1.0, 'began': 2.0, 'release': 1.0, 'unpleasant': 1.0, 'fumes': 1.0, 'heard': 1.0, 'time': 1.0, 'come': 2.0, 'diapers': 1.0, 'dropping': 1.0, 'grocery': 1.0, 'unbearable': 1.0, 'using': 1.0, 'looking': 1.0, 'bag': 1.0, 'preventing': 1.0, 'eventually': 1.0, 'squirming': 1.0, 'reasons': 1.0, 'my': 1.0, 'just': 1.0, 'fell': 1.0, 'smell': 2.0, 'lining': 2.0, 'odors': 1.0, 'loved': 1.0, 'enough': 1.0}
Word element => {'re': 1.0, 'if': 1.0, 'set': 1.0, 'some': 1.0, 'with': 1.0, 'below': 1.0, 'like': 1.0, 'diapers': 1.0, 'are': 1.0, 'there': 2.0, 'airfreshner': 1.0, 'not': 1.0, 'me': 1.0, 'excuse': 1.0, 'an': 1.0, 'smell': 1.0, 'regards': 1.0, 'picky': 1.0, 'product': 1.0, 'recommend': 1.0, 'highly': 1.0, 'that': 1.0, 'still': 1.0, 'middle': 1.0, 'go': 1.0, 'a': 7.0, 'refills': 1.0, 'never': 1.0, 'i': 3.0, 'genie': 3.0, 'buy': 2.0, 'it': 1.0, 'lady': 1.0, 'pain': 1.0, 'this': 2.0, 'loud': 1.0, 'doubt': 1.0, 'is': 3.0, 'the': 5.0, 'diaper': 4.0, 'matter': 1.0, 'and': 3.0, 'roses': 1.0, 'very': 1.0, 'best': 1.0, 'no': 2.0, 'about': 1.0, 'so': 2.0, 'garbage': 1.0, 'clorox': 1.0, 'than': 1.0, 'better': 1.0, 'lysol': 1.0, 'of': 3.0, 'fact': 1.0, 'your': 1.0, 'put': 2.0, 'wipe': 1.0, 'night': 1.0, 'them': 1.0, 'out': 1.0, 'putting': 1.0, 'quieter': 1.0, 'here': 1.0, 'would': 1.0, 'new': 1.0, 'when': 1.0, 'again': 1.0, 'you': 2.0, 'have': 1.0, 'as': 1.0, 'all': 1.0, 'to': 4.0, 'easier': 1.0, 'much': 2.0, 'empty': 1.0, 'said': 1.0, 'in': 6.0, 'bag': 1.0, 'lot': 2.0, 'threw': 1.0, 'cheaper': 1.0, 'most': 1.0}
Word element => {'good': 1.0, 'recommends': 1.0, 'even': 1.0, 'husband': 1.0, 'makes': 1.0, 'out': 1.0, '1': 2.0, 'with': 1.0, 'open': 1.0, 'held': 1.0, 'be': 2.0, 'so': 2.0, 'on': 1.0, 'stay': 1.0, 'not': 1.0, 'the': 6.0, 'used': 1.0, 'just': 1.0, 'says': 1.0, 'use': 1.0, 'have': 1.0, 'all': 2.0, 'to': 4.0, 'had': 1.0, 'lived': 1.0, 'up': 2.0, 'don': 1.0, 'akward': 1.0, 'scented': 1.0, 'leaving': 1.0, 'own': 1.0, 'hoped': 1.0, 'bags': 3.0, 'bought': 1.0, 'this': 1.0, 'it': 11.0, 'its': 1.0, 'only': 2.0, 'and': 2.0, 'get': 2.0, 'does': 3.0, 'because': 1.0, 'pail': 1.0, 'hand': 2.0, 'like': 1.0, 'regular': 1.0, 'thing': 1.0, 'no': 1.0, 'at': 1.0, 'trouble': 1.0, 'change': 2.0, 'but': 1.0, 'down': 1.0, 'inside': 1.0, 't': 1.0, 'we': 3.0, 'a': 1.0, 'little': 1.0, 'smelly': 1.0, 'when': 2.0, 'you': 2.0, 'bag': 3.0, 'that': 2.0, 'has': 2.0, 'expected': 1.0, 'my': 1.0, 'lid': 1.0, 'trash': 2.0, 'is': 2.0, 'holds': 1.0}
Word element => {'money': 1.0, 'spend': 1.0, 'extra': 2.0, 'afford': 1.0, 'can': 1.0, 'works': 1.0, 'around': 1.0, 'go': 1.0, 'budget': 1.0, 'would': 1.0, 'tight': 1.0, 'on': 1.0, 'definately': 1.0, 'different': 1.0, 'baby': 1.0, 'if': 2.0, 'expecting': 1.0, 'am': 2.0, 'waste': 1.0, 'like': 1.0, 'months': 2.0, 'keep': 1.0, 'empty': 1.0, 'only': 1.0, 'end': 1.0, 'difficult': 1.0, 'son': 2.0, 'is': 3.0, 'considering': 1.0, 'more': 1.0, 'trash': 1.0, 'comes': 1.0, 'than': 1.0, 'a': 4.0, 'refills': 2.0, 'use': 1.0, 'most': 1.0, 'pregnant': 1.0, 'but': 2.0, 'my': 3.0, 'often': 1.0, 'scrub': 1.0, 'pails': 1.0, 'while': 1.0, 'as': 1.0, 'diaper': 4.0, 'bags': 2.0, 'reviewed': 1.0, 'noticeable': 1.0, 'second': 1.0, 'reasonable': 1.0, 'old': 1.0, 'genie': 1.0, 'costly': 1.0, 'however': 2.0, 'easy': 1.0, 'found': 1.0, 'open': 1.0, 'it': 6.0, 'with': 3.0, 'odor': 1.0, 'was': 3.0, 'be': 1.0, 'couple': 1.0, 'and': 6.0, 'plugged': 1.0, 'do': 1.0, 'put': 1.0, 'idea': 1.0, 'you': 3.0, 'the': 17.0, 'of': 2.0, 'time': 1.0, 'territory': 1.0, '13': 1.0, 'no': 1.0, 'dollars': 2.0, 'wall': 1.0, 'even': 3.0, 'combat': 1.0, 'to': 7.0, 'pail': 2.0, 'itself': 1.0, 'now': 3.0, 'air': 1.0, 'seems': 1.0, 'regardless': 1.0, 'how': 1.0, 'champ': 2.0, 'scented': 1.0, 'together': 1.0, 'full': 1.0, 'dirty': 1.0, 'they': 1.0, 'have': 2.0, 'liked': 1.0, 'expect': 1.0, 'some': 1.0, 'all': 1.0, 'stinks': 1.0, 'an': 1.0, 'mean': 1.0, 'freshner': 1.0, 'into': 1.0, 'smell': 2.0, 'help': 1.0, 'having': 1.0, 'worked': 1.0, 'i': 10.0, 'well': 1.0, 'half': 1.0, 'for': 1.0, 'diapers': 1.0, 'are': 2.0, 'first': 2.0, 'this': 1.0, 'few': 2.0, 'change': 1.0, 'up': 1.0, 'before': 1.0, 'which': 1.0, 'really': 1.0}
Word element => {'problem': 1.0, 'wobble': 1.0, 'no': 1.0, 'newer': 1.0, 'purchased': 1.0, 'longer': 1.0, 'bottom': 1.0, 'first': 1.0, 'time': 1.0, 'model': 1.0, 'poor': 1.0, 'has': 1.0, 'every': 1.0, 'that': 3.0, 'gift': 1.0, 'this': 2.0, 'found': 1.0, 'a': 4.0, 'new': 1.0, 'inspection': 1.0, 'i': 5.0, 'not': 1.0, 'used': 1.0, 'unit': 1.0, 'online': 1.0, 'due': 1.0, 'item': 1.0, 'my': 1.0, 'with': 1.0, 'stores': 1.0, 'yet': 1.0, 'for': 2.0, 'top': 2.0, 'handle': 1.0, 'but': 1.0, 'diapers': 1.0, 'the': 8.0, 'at': 3.0, 'receiving': 1.0, 'some': 1.0, 'as': 2.0, 'to': 1.0, 'upon': 1.0, 'design': 2.0, 'large': 1.0, 'larger': 1.0, 'have': 2.0, 'wobbled': 1.0, 'small': 1.0, 'base': 2.0, 'noticed': 1.0, 'sell': 1.0, 'moved': 1.0, 'and': 2.0, 'improved': 1.0}
Word element => {'either': 1.0, 'be': 1.0, 't': 1.0, 'not': 1.0, 'if': 1.0, 'open': 1.0, 'special': 1.0, 'used': 1.0, 'trash': 3.0, 'say': 1.0, 'instead': 1.0, 'use': 3.0, 'dilemma': 1.0, 'can': 1.0, 'change': 1.0, 'but': 1.0, 'you': 2.0, 'am': 1.0, 's': 2.0, 'a': 4.0, 'far': 1.0, 'won': 1.0, 'regular': 1.0, 'said': 1.0, 'of': 2.0, 'the': 7.0, 'bags': 3.0, 'diaper': 3.0, 'catch': 1.0, 'glad': 2.0, 'born': 1.0, 'to': 5.0, 'all': 1.0, 'latch': 1.0, 'genie': 1.0, 'had': 1.0, 'when': 2.0, 'what': 1.0, 'was': 3.0, 'daycare': 1.0, 'recommend': 1.0, 'by': 1.0, 'any': 1.0, 'mom': 1.0, 'before': 1.0, 'opening': 1.0, 'best': 1.0, 'with': 2.0, 'for': 5.0, 'registering': 1.0, 'lucky': 1.0, 'and': 6.0, 'too': 1.0, 'my': 5.0, 'me': 4.0, 'went': 1.0, 'those': 1.0, 'she': 1.0, 'it': 6.0, 'runs': 1.0, 'appealing': 1.0, 'now': 1.0, '6': 1.0, 'months': 1.0, 'hang': 1.0, 'fact': 1.0, 'old': 1.0, 'makes': 1.0, 'must': 1.0, 'thing': 2.0, 'great': 1.0, 'only': 2.0, 'time': 2.0, 'smell': 1.0, 'is': 7.0, 'at': 1.0, 'champ': 2.0, 'scented': 1.0, 'son': 3.0, 'nail': 1.0, 'very': 2.0, 'prevent': 1.0, 'odors': 1.0, 'then': 1.0, 'difference': 1.0, 'i': 11.0, 'broke': 1.0, 'bit': 1.0, 'easy': 2.0, 'covenient': 1.0, 'this': 2.0, 'highly': 1.0, 'or': 1.0, 'gifts': 1.0, 'need': 1.0, 'cartridges': 1.0, 'watch': 1.0, 'tricky': 1.0, 'are': 1.0, 'first': 1.0, 'got': 1.0, 'though': 1.0, 'that': 5.0, 'because': 1.0}
Word element => {'sorry': 1.0, 'be': 1.0, 'will': 1.0, 'competitors': 1.0, 'reccomend': 1.0, 'should': 1.0, 'sent': 1.0, 'again': 2.0, 'great': 1.0, 'works': 1.0, 'over': 1.0, 'happen': 1.0, 'efficient': 1.0, 'however': 1.0, 'pail': 1.0, 'to': 4.0, 'phd': 1.0, 'super': 1.0, 'same': 2.0, 'bulk': 1.0, 'buy': 1.0, 'day': 1.0, 'trash': 1.0, 'is': 2.0, 'takes': 1.0, 'and': 6.0, 'darn': 1.0, 'received': 1.0, 'much': 1.0, 'only': 1.0, 'product': 1.0, 'for': 1.0, 'love': 3.0, 'use': 2.0, 'can': 2.0, 'so': 1.0, 'highly': 1.0, 'this': 3.0, 'it': 7.0, 'thing': 1.0, 'as': 2.0, 'bags': 1.0, 'diaper': 2.0, 'reason': 1.0, 'got': 1.0, 'foam': 1.0, 'any': 1.0, 'keeps': 1.0, 'stinky': 1.0, 'in': 3.0, 'i': 5.0, 'genie': 1.0, 'kitchen': 1.0, 'you': 2.0, 'need': 1.0, 'convenient': 1.0, 'with': 1.0, 'poopy': 2.0, 'replacing': 1.0, 'figure': 1.0, 'ripped': 1.0, 'very': 1.0, 'them': 1.0, 'out': 1.0, 'cost': 1.0, 'replacement': 1.0, 'gasket': 1.0, 'not': 2.0, 'my': 1.0, 'website': 1.0, 'me': 2.0, '5': 1.0, 'easier': 1.0, 'star': 1.0, 'back': 1.0, 'was': 2.0, 'that': 3.0, 'did': 1.0, 'how': 1.0, 'barrell': 1.0, 'shich': 1.0, 'have': 1.0, 'a': 3.0, 'small': 1.0, 'even': 2.0, 'contacted': 1.0, 'stating': 1.0, 'rating': 1.0, 'one': 1.0, 'which': 1.0, 'extras': 1.0, 'manufacturer': 1.0, 'smell': 1.0, 'an': 1.0, 'inside': 2.0, 'somehow': 1.0, 'unusual': 1.0, 'problem': 1.0, 'though': 1.0, 'their': 2.0, 'unit': 1.0, 'email': 1.0, 'gaskets': 1.0, 'were': 1.0, 'on': 1.0, 'than': 1.0, 'way': 1.0, 'they': 2.0, 'arrived': 1.0, 'the': 10.0, 'of': 1.0, 'week': 1.0, 'after': 1.0}
Word element => {'pleaser': 1.0, 'people': 1.0, 'definately': 1.0, 'refills': 1.0, 'will': 1.0, 'if': 1.0, 'worry': 1.0, 'have': 2.0, 'you': 1.0, 'so': 1.0, 'regular': 1.0, 'takes': 1.0, 'that': 1.0, 'about': 1.0, 'thing': 1.0, 'happy': 1.0, 'and': 1.0, 'out': 1.0, 'store': 1.0, 'was': 1.0, 'to': 2.0, 'registry': 1.0, 'items': 1.0, 'very': 2.0, 'best': 2.0, 'year': 1.0, 'this': 2.0, 'first': 1.0, 'it': 5.0, 'he': 1.0, 'received': 2.0, 'registered': 1.0, 'second': 1.0, 'trash': 1.0, 'is': 3.0, 't': 1.0, 'a': 3.0, 'champ': 1.0, 'genie': 1.0, 'makes': 1.0, 'old': 1.0, 'don': 1.0, 'child': 1.0, 'hated': 1.0, 'although': 1.0, 'for': 2.0, 'diaper': 3.0, 'the': 7.0, 'dad': 1.0, 'which': 2.0, 'my': 4.0, 'few': 1.0, 'by': 2.0, 'far': 2.0, 'gift': 1.0, 'mom': 1.0, 'overall': 1.0, 'keeps': 1.0, 'easy': 1.0, 'had': 1.0, 'operate': 1.0, 'feels': 1.0, 'i': 5.0, '4': 1.0, 'bags': 1.0, 'from': 2.0, 'part': 1.0, 'of': 1.0, 'changes': 1.0, 'because': 1.0, 'but': 2.0, 'work': 1.0, 'can': 1.0, 'smell': 1.0}
Word element => {'squirmy': 1.0, 'holding': 1.0, 'when': 1.0, 'must': 1.0, 'kind': 1.0, 'on': 1.0, 'over': 1.0, 'to': 2.0, 'its': 1.0, 'issue': 1.0, 'hard': 1.0, 'only': 1.0, 'my': 1.0, 'producing': 1.0, 'infant': 1.0, 'month': 1.0, 'can': 1.0, 'stinky': 1.0, 'flip': 1.0, '3': 1.0, 'than': 1.0, 'that': 1.0, 'our': 1.0, 'hand': 1.0, 'better': 1.0, 'isn': 1.0, 'old': 1.0, 'much': 1.0, 'granted': 1.0, 't': 1.0, 'the': 2.0, 'diapers': 1.0, 'but': 1.0, 'champ': 1.0, 'really': 1.0, 'is': 2.0, 'one': 1.0, 'handle': 1.0, 'yet': 1.0, 'using': 2.0, 'a': 3.0, 'of': 1.0, 'trash': 1.0}
Word element => {'pronto': 1.0, 'retire': 1.0, 'd': 1.0, 'babies': 1.0, 'older': 1.0, 'great': 1.0, 'using': 1.0, 'months': 1.0, 'get': 1.0, 'white': 1.0, 'portion': 1.0, 'really': 1.0, 'makes': 1.0, 'realized': 1.0, 'ingenius': 1.0, 'it': 8.0, 'slam': 1.0, 'irresistable': 1.0, 'before': 1.0, 'her': 2.0, 'flipping': 1.0, 'back': 1.0, 'big': 1.0, 'sure': 1.0, 'seemed': 1.0, 'been': 1.0, 'forth': 1.0, 'up': 1.0, 'center': 1.0, 'our': 1.0, 'daughter': 1.0, 'bags': 1.0, 'heavy': 1.0, 'first': 1.0, 'finger': 3.0, 'the': 7.0, 'caught': 1.0, 'll': 2.0, 'generally': 1.0, 'started': 3.0, 'was': 2.0, 'regular': 1.0, 'have': 1.0, 'appreciated': 1.0, 'in': 1.0, 'once': 2.0, 'total': 1.0, 'toddlers': 1.0, 'enough': 1.0, 'loved': 1.0, 'even': 1.0, 'took': 1.0, 'and': 6.0, 'play': 1.0, 'mechanism': 2.0, 'a': 3.0, 's': 2.0, 'handle': 2.0, 'is': 1.0, 'at': 1.0, 'notice': 1.0, 'this': 3.0, 'but': 2.0, 'can': 1.0, 'that': 5.0, 'she': 2.0, 'yowling': 1.0, 'not': 1.0, 'wrong': 1.0, 'an': 1.0, 'slide': 1.0, 'attempts': 1.0, 'incident': 1.0, 'fast': 1.0, 'i': 2.0, 'if': 1.0, 'you': 4.0, 'hurt': 1.0, 'with': 1.0, 'two': 1.0, 'little': 1.0, 'bit': 1.0, 'scary': 1.0, 'quickly': 1.0, 'see': 1.0, 'for': 2.0, 'worse': 1.0, 'yet': 1.0, 'trap': 1.0, 'they': 1.0, 'then': 1.0, 'we': 3.0, 'reviews': 1.0, 'say': 1.0, 'seriously': 1.0, 'their': 1.0, 'free': 1.0, 'by': 1.0, 'pushing': 1.0, 'way': 1.0, 'to': 3.0, 'pail': 2.0, 'pretty': 1.0, 'isolated': 1.0, 'positive': 1.0, 'here': 1.0, 'stand': 1.0, 've': 1.0}
Word element => {'recommend': 1.0, 'highly': 1.0, 'well': 1.0, 'yet': 1.0, 'pail': 1.0, 'diaper': 1.0, 'think': 1.0, 'bag': 1.0, 'is': 2.0, 'till': 1.0, 'first': 1.0, 'this': 3.0, 'it': 3.0, 'week': 1.0, 'use': 2.0, 'bad': 1.0, 'i': 4.0, 'garbage': 1.0, 'isn': 1.0, 'job': 1.0, 'the': 4.0, 'my': 1.0, 'not': 1.0, 'does': 1.0, 'because': 1.0, 'at': 1.0, 'home': 1.0, 'church': 1.0, 'know': 1.0, 'which': 1.0, 'opened': 1.0, 'years': 1.0, 'cheap': 1.0, 'product': 1.0, 'for': 2.0, 'bought': 1.0, 'one': 1.0, 'only': 1.0, 'nursery': 1.0, 'dirty': 1.0, 'room': 1.0, 'smell': 1.0, 'good': 1.0, 'there': 1.0, 'of': 1.0, 'are': 1.0, 't': 3.0, 'we': 1.0, 'a': 2.0, 'couple': 1.0, 'occasions': 1.0, 'that': 2.0, 'were': 1.0, 'left': 1.0, 'but': 2.0, 'change': 1.0, 'in': 1.0, 'diapers': 1.0, 'didn': 2.0, 'as': 2.0, 'to': 2.0}
Word element => {'friend': 1.0, 'again': 1.0, 'buy': 1.0, 'overall': 1.0, 'sometimes': 1.0, 'open': 1.0, 'tricky': 1.0, 'be': 1.0, 'still': 2.0, 'gross': 1.0, 'mention': 1.0, 'on': 1.0, 'definitely': 1.0, 'think': 1.0, 'up': 1.0, 'product': 1.0, 'child': 1.0, 'and': 5.0, 'expensive': 1.0, 'for': 2.0, 'garbage': 2.0, 'that': 6.0, 'gave': 2.0, 'recommend': 1.0, 'were': 2.0, 'created': 1.0, '1st': 1.0, 'third': 1.0, 'pretty': 3.0, 'to': 8.0, 'any': 1.0, 'had': 3.0, 'suggest': 1.0, 'recently': 1.0, 'years': 1.0, 'of': 3.0, 'the': 5.0, 'birth': 1.0, 'diapers': 1.0, 'got': 1.0, 'but': 2.0, 'so': 2.0, 'can': 1.0, 'when': 2.0, '11': 1.0, 'okay': 1.0, 'am': 1.0, 'you': 1.0, 'it': 9.0, 'my': 3.0, 'fact': 1.0, 'ago': 1.0, 'a': 9.0, 's': 2.0, 'use': 1.0, 'refills': 1.0, 'i': 12.0, 'genie': 1.0, 'not': 1.0, 'have': 1.0, 'them': 1.0, 'baby': 1.0, 'with': 2.0, 'buying': 1.0, 'this': 2.0, 'decided': 1.0, 'foul': 1.0, 'one': 2.0, 'try': 1.0, 'babies': 1.0, 'considering': 1.0, 'nursery': 1.0, 'empty': 1.0, 'dispose': 1.0, 'only': 1.0, 'in': 1.0, 'sausage': 1.0, 'minor': 1.0, 'church': 1.0, 'links': 1.0, 'other': 1.0, 'after': 1.0, 'worked': 1.0, 'having': 1.0, 'does': 1.0, 'from': 1.0, 'as': 1.0, 'diaper': 3.0, 'bags': 2.0, 'soon': 1.0, 'give': 1.0, 'there': 1.0, 'great': 1.0, 'agree': 1.0, 'reviews': 1.0, 'champ': 1.0, 'scented': 2.0, 'bag': 1.0, 'using': 1.0, 'awful': 1.0, 'little': 2.0, 'stupid': 1.0, 'would': 2.0, 'smell': 2.0, 'help': 1.0, 'love': 1.0, 'far': 1.0, 'complaint': 1.0, 'is': 1.0}
Word element => {'tolerable': 1.0, 'has': 1.0, 'inside': 1.0, 'up': 1.0, 'stinkiest': 1.0, 'close': 1.0, 'darn': 1.0, 'completely': 1.0, 'isn': 1.0, 'stink': 1.0, '3': 1.0, 'ouch': 1.0, 'backward': 1.0, 'shin': 1.0, 'from': 1.0, 'base': 1.0, 'your': 1.0, 'much': 1.0, 'put': 1.0, 'pulling': 1.0, 'one': 1.0, 'empty': 1.0, 'top': 1.0, 'unit': 1.0, '2': 1.0, 'ask': 1.0, 'call': 1.0, 'if': 1.0, 'sure': 2.0, 'make': 2.0, 'on': 2.0, 'stars': 1.0, 'made': 1.0, 'which': 1.0, 'seals': 1.0, 'be': 2.0, 'odor': 1.0, 'diapers': 1.0, 'are': 1.0, 'there': 1.0, 'found': 1.0, 'however': 1.0, 'born': 1.0, 'move': 1.0, 'grip': 1.0, 'value': 1.0, 'daughter': 1.0, 'pull': 2.0, 's': 3.0, 'a': 5.0, 'does': 1.0, 'pretty': 1.0, 'to': 6.0, 'emptying': 1.0, 'our': 1.0, 'was': 1.0, 'full': 2.0, 'recommend': 1.0, 'because': 1.0, 'that': 2.0, 'learned': 2.0, 'into': 1.0, '4': 1.0, 'putting': 1.0, 'i': 4.0, 'get': 1.0, 'months': 1.0, 'stick': 1.0, 've': 1.0, 'drop': 1.0, 'no': 1.0, '13': 1.0, 'it': 10.0, 'she': 1.0, 'since': 1.0, '1': 1.0, 'foot': 1.0, 'great': 1.0, 'and': 6.0, 'this': 1.0, 'few': 1.0, 'highly': 1.0, 'aware': 1.0, 'falls': 1.0, 'as': 1.0, 'heavy': 1.0, 'diaper': 4.0, 'of': 3.0, 'the': 22.0, 'dc': 1.0, 'ever': 1.0, 'old': 1.0, 'part': 2.0, 'hard': 2.0, 'not': 1.0, 'gave': 1.0, 'loose': 1.0, 'out': 2.0, 't': 3.0, 'replacement': 1.0, 'things': 1.0, 'you': 3.0, 'why': 1.0, 'placed': 1.0, 'in': 2.0, 'my': 1.0, 'more': 1.0, 'husband': 1.0, 'way': 2.0, 'affect': 1.0, 'grips': 2.0, 'champ': 1.0, 'stuck': 1.0, 'when': 3.0, 'seal': 2.0, 'only': 1.0, 'company': 1.0, 'slowly': 1.0, 'won': 1.0, 'using': 1.0, 'bag': 3.0, 'been': 1.0, 'forth': 1.0, 'trapped': 1.0, 'we': 1.0, 'then': 1.0, 'have': 1.0, 'away': 1.0, 'free': 1.0, 'didn': 1.0, 'seem': 1.0, 'difficult': 1.0, 'control': 1.0, 'banging': 1.0, 'but': 2.0, 'keep': 1.0, 'did': 1.0, 'is': 5.0, 'handle': 1.0, 'back': 1.0, 'shoot': 1.0, 'lid': 1.0, 'send': 1.0, 'instructions': 1.0}
Word element => {'using': 1.0, 'by': 1.0, 'money': 1.0, 'save': 1.0, 'll': 1.0, 'winner': 1.0, 'sure': 1.0, 'on': 1.0, 'go': 1.0, 'will': 1.0, 'in': 1.0, 'lot': 1.0, 'one': 3.0, 'mart': 1.0, 'no': 1.0, 'about': 1.0, 'around': 1.0, 'at': 1.0, 'is': 3.0, 'saver': 1.0, 'life': 1.0, 'just': 2.0, 'complete': 1.0, 'always': 1.0, 'way': 1.0, 'bottom': 1.0, 'love': 1.0, 'champ': 1.0, 'wrong': 1.0, 'genie': 1.0, 'disinfecting': 1.0, 'we': 1.0, 'going': 1.0, 'a': 13.0, 'until': 1.0, 'not': 2.0, 'give': 1.0, 'hassle': 1.0, 'garbage': 1.0, 'start': 1.0, 'spray': 2.0, 'regular': 1.0, 'get': 1.0, 'from': 1.0, 'that': 4.0, 'another': 1.0, 'my': 1.0, 'tip': 2.0, 'special': 2.0, 'heard': 1.0, 'assembled': 1.0, 'it': 6.0, 'month': 1.0, 'parent': 1.0, 'this': 3.0, 'bags': 2.0, 'diaper': 2.0, 'wk': 1.0, 'ups': 1.0, 'all': 2.0, 'pail': 2.0, 'to': 8.0, 'have': 2.0, 'must': 1.0, 'item': 1.0, 'voila': 1.0, 'cents': 1.0, 'husband': 1.0, 'had': 3.0, 'was': 2.0, 'buy': 2.0, 'i': 8.0, 'changing': 1.0, 'put': 1.0, 'together': 1.0, 'dishwashing': 1.0, 'almost': 1.0, 'box': 1.0, 'ready': 1.0, 'absolutely': 1.0, 'out': 3.0, 'wal': 1.0, 'couple': 1.0, '97': 1.0, 'the': 7.0, 'of': 5.0, 'lysol': 1.0, 'comes': 1.0, 'once': 1.0, 'attach': 1.0, 'base': 1.0, 'you': 3.0, 'times': 1.0, 'are': 1.0, 'hated': 1.0, 'diapers': 1.0, 'little': 2.0, 'keep': 1.0, 'stick': 2.0, 'down': 1.0, 'betting': 1.0, 'odor': 1.0, 'wipe': 1.0, 'with': 2.0, 'antibacterial': 1.0, 'wipes': 1.0, 'good': 1.0, 'use': 1.0, 'wash': 1.0, 'mild': 1.0, 'detergent': 1.0, 'smell': 1.0, '2': 1.0, 'received': 1.0, 'also': 1.0, 'pk': 1.0}
Word element => {'be': 1.0, 'can': 1.0, 'pails': 1.0, 'above': 1.0, 'start': 1.0, 'weeks': 1.0, 'wise': 1.0, 'once': 1.0, 'system': 1.0, 'competing': 1.0, 'lysol': 1.0, 'than': 1.0, 'know': 2.0, 'thoroughly': 1.0, 'does': 1.0, 'kitchen': 1.0, 's': 2.0, 'then': 1.0, 'we': 2.0, 'beat': 1.0, 't': 4.0, 'a': 3.0, 'going': 1.0, 'nursery': 1.0, 'makes': 1.0, 'old': 1.0, 'free': 1.0, 'now': 1.0, 'have': 1.0, 'dryer': 2.0, 'disposal': 1.0, 'holding': 1.0, 'after': 1.0, 'from': 1.0, 'very': 1.0, 'little': 1.0, 'price': 1.0, 'year': 1.0, 'too': 1.0, 'recommended': 1.0, 'and': 4.0, 'daughter': 1.0, 'how': 1.0, 'other': 1.0, 'all': 1.0, 'an': 2.0, 'control': 1.0, 'smell': 2.0, 'champ': 2.0, 'survived': 1.0, 'mom': 1.0, 'works': 1.0, 'without': 1.0, 'of': 1.0, 'the': 9.0, 'place': 1.0, '13': 1.0, 'few': 1.0, 'this': 1.0, 'it': 5.0, 'diapers': 2.0, 'first': 1.0, 'don': 3.0, 'regular': 1.0, 'in': 3.0, 'notice': 1.0, 'is': 1.0, 'more': 1.0, 'trash': 1.0, 'odor': 2.0, 'bags': 1.0, 'experienced': 1.0, 'diaper': 4.0, 'trick': 1.0, '2': 1.0, 'but': 1.0, 'change': 1.0, '1': 1.0, 'months': 1.0, 'quite': 1.0, 'efficient': 1.0, 'that': 1.0, 'was': 1.0, 'passed': 1.0, 'down': 1.0, 'bottom': 1.0, 'pail': 1.0, 'to': 4.0, 'my': 1.0, 'me': 1.0, 'again': 1.0, 'you': 1.0, 'yes': 1.0, 'put': 1.0, 'stinky': 1.0, 'bounce': 1.0, 'sheet': 2.0, 'before': 1.0, 'i': 4.0, 'putting': 1.0, 'using': 1.0, 'bag': 1.0, 'spray': 1.0, 'with': 1.0, 'each': 1.0, 'use': 1.0, 'just': 1.0, 'economical': 1.0, 'why': 1.0, 'every': 1.0, 'still': 1.0, 'if': 1.0, 'regularly': 1.0, 'out': 1.0, 'about': 1.0}
Word element => {'their': 1.0, 'stands': 1.0, 'company': 1.0, 'item': 1.0, 'great': 1.0, 'this': 1.0, 'week': 1.0, 'here': 1.0, 'them': 1.0, 'later': 2.0, '3': 1.0, 'almost': 1.0, 'now': 1.0, 'odor': 1.0, 'again': 3.0, 'charge': 2.0, 'free': 3.0, 'sponge': 1.0, 'they': 3.0, 'babytrend': 1.0, 'product': 1.0, 'child': 1.0, 'year': 1.0, 'behind': 1.0, 'about': 2.0, 'with': 1.0, 'problem': 1.0, 'times': 1.0, 'cleaning': 1.0, 'for': 2.0, 'once': 1.0, 'these': 1.0, 'comes': 1.0, 'chucked': 1.0, 'bag': 1.0, 'in': 4.0, 'eeeewwww': 1.0, 'regular': 1.0, 'shaped': 1.0, 'gaskets': 2.0, 'she': 1.0, 'appreciate': 1.0, 'just': 4.0, 'not': 1.0, 'those': 2.0, 'house': 1.0, 'see': 1.0, 'off': 1.0, 'on': 2.0, 'but': 1.0, 'sent': 1.0, 'expensive': 1.0, 'that': 2.0, 'into': 2.0, 'be': 3.0, 'a': 7.0, 'we': 7.0, 'replacement': 3.0, 't': 1.0, 'which': 1.0, 'to': 8.0, 'all': 2.0, 'any': 1.0, 'had': 6.0, 'of': 5.0, 'the': 13.0, 'odors': 2.0, 'originally': 1.0, 'found': 1.0, 'another': 2.0, 'me': 1.0, 'may': 1.0, 'my': 3.0, 'garbage': 3.0, 'smelly': 2.0, 'bye': 2.0, 'after': 2.0, 'top': 2.0, 'is': 1.0, 'handle': 1.0, 'flip': 1.0, 'twice': 1.0, 'get': 2.0, 'getting': 1.0, 'recommended': 1.0, 'and': 9.0, 'specialty': 1.0, 'out': 1.0, 'understand': 1.0, 'hole': 1.0, 'sausage': 1.0, 'mess': 1.0, 'buy': 2.0, 'genie': 2.0, 'champ': 2.0, 'sis': 1.0, 'broke': 1.0, 'i': 3.0, 'couldn': 1.0, 'apart': 1.0, 'ball': 1.0, 'even': 2.0, 'diapers': 1.0, 'were': 3.0, 'dirty': 1.0, 'around': 1.0, '3rd': 1.0, 'there': 2.0, 'controlling': 1.0, 'was': 2.0, 'years': 2.0, 'no': 2.0, 'smell': 1.0, 'called': 2.0, 'believe': 1.0, 'bought': 1.0, 'can': 1.0, 'so': 2.0, 'easier': 2.0, 'use': 2.0, 'what': 1.0, 'when': 1.0, 'roll': 1.0, 'it': 5.0, 'already': 1.0, 'little': 1.0, 'set': 1.0, 'law': 1.0, 'pain': 1.0, 'drop': 1.0, 'put': 1.0, 'much': 1.0, 'do': 1.0, '16': 1.0, 'old': 1.0, 'special': 1.0, 'become': 1.0, 'used': 1.0, 'month': 1.0, 'same': 1.0, 'kitchen': 1.0, 'diaper': 4.0, 'bags': 3.0, 'experienced': 1.0, 'parents': 1.0, 'will': 2.0}
Word element => {'open': 1.0, 'it': 2.0, 'figure': 1.0, 'some': 1.0, 'simple': 1.0, 'challenge': 1.0, 'highly': 1.0, 'initial': 1.0, 'an': 1.0, 'be': 1.0, 'in': 1.0, 'needed': 1.0, 'recommend': 1.0, 'doesn': 1.0, 'store': 1.0, 'uses': 1.0, 'i': 2.0, 'champ': 5.0, 'genie': 1.0, 'refills': 1.0, 'use': 2.0, 'didn': 1.0, 's': 1.0, 'could': 1.0, 't': 3.0, 'the': 9.0, 'diaper': 5.0, 'once': 1.0, 'of': 1.0, 'trash': 1.0, 'is': 1.0, 'because': 1.0, 'odors': 1.0, 'but': 2.0, 'can': 2.0, '13': 1.0, 'toddlers': 1.0, 'opening': 1.0, 'for': 1.0, 'expensive': 1.0, 'product': 1.0, 'to': 4.0, 'easy': 1.0, 'get': 3.0, 'and': 1.0, 'mechanism': 1.0, 'you': 3.0, 'bags': 2.0, 'recycle': 1.0, 'or': 2.0, 'let': 1.0, 'gallon': 1.0, 'larger': 1.0, 'out': 2.0, 'have': 1.0, 'into': 2.0, 'that': 1.0, '10': 1.0, 'want': 1.0, 'if': 1.0, 'everything': 1.0, 'they': 1.0}
Word element => {'trade': 1.0, 'smell': 1.0, 'in': 2.0, 'holds': 1.0, 'really': 1.0, 'choice': 1.0, 'my': 1.0, 'of': 1.0, 'wasn': 1.0, 'bags': 1.0, 'scented': 1.0, 'to': 1.0, 'anything': 1.0, 'which': 1.0, 'wouldn': 1.0, 'it': 3.0, 'this': 2.0, 'the': 3.0, 'diaper': 2.0, 't': 2.0, 'can': 1.0, 'for': 1.0, 'love': 2.0, 'one': 1.0, 'am': 1.0, 'between': 1.0, 'so': 1.0, 'sure': 1.0, 'glad': 1.0, 'that': 2.0, 'i': 6.0, 'genie': 1.0, 'buy': 1.0, 'horrible': 1.0, 'and': 2.0, 'get': 1.0, 'chose': 1.0}
Word element => {'reasonable': 1.0, 'model': 1.0, 'heard': 1.0, 'design': 1.0, 'improvement': 1.0, 'room': 1.0, 'although': 1.0, 'hold': 1.0, 'worth': 1.0, '5': 1.0, 'quite': 1.0, 's': 1.0, 'full': 2.0, 'removal': 1.0, 'and': 1.0, 'occasionally': 1.0, 'would': 1.0, 'hands': 1.0, 'which': 1.0, 'juttings': 1.0, 'bag': 2.0, 'haven': 1.0, 'stuffed': 1.0, 'scratched': 1.0, 'when': 2.0, 'nearly': 1.0, 'inconvenient': 1.0, 'makes': 1.0, 'degree': 1.0, 'opens': 1.0, 'way': 1.0, 'other': 1.0, 'all': 1.0, 't': 2.0, 'doesn': 1.0, 'pull': 1.0, 'trying': 2.0, 'bent': 1.0, 'uncared': 1.0, 'have': 1.0, 'even': 1.0, 'someone': 1.0, 'little': 2.0, 'also': 1.0, 'us': 1.0, 'do': 1.0, 'underside': 1.0, 'r': 1.0, 'odor': 1.0, 'able': 1.0, 'you': 4.0, 'angle': 1.0, 'like': 2.0, 'comment': 1.0, 'kinds': 1.0, 'them': 1.0, 'next': 1.0, 'has': 2.0, 'toys': 1.0, 'hot': 1.0, 'excretions': 1.0, 'larger': 1.0, 'diapers': 1.0, 'are': 3.0, 'from': 2.0, 'breath': 1.0, 'best': 1.0, 'own': 1.0, 'short': 1.0, 'control': 1.0, 'smell': 1.0, 'nails': 3.0, 'been': 1.0, 'their': 1.0, 'that': 3.0, 'because': 1.0, '75': 1.0, 'it': 3.0, 'accomodate': 1.0, 'open': 3.0, 'over': 1.0, 'work': 1.0, 'most': 1.0, 'money': 1.0, 'up': 1.0, 'change': 1.0, 'champ': 1.0, 'genie': 2.0, 'use': 1.0, 'one': 1.0, 'too': 1.0, 'ones': 1.0, 'as': 2.0, 'bags': 5.0, 'diaper': 2.0, 'dc': 1.0, 'get': 3.0, 'chose': 1.0, 'a': 7.0, 'small': 1.0, 'requires': 1.0, 'my': 2.0, 'lid': 4.0, 'there': 2.0, 'manicured': 1.0, 'summertime': 1.0, 'handles': 1.0, 'well': 1.0, 'i': 5.0, 'possibly': 1.0, 'or': 3.0, 'feature': 1.0, 'seen': 1.0, '4': 1.0, 'being': 1.0, 'its': 1.0, 'poop': 1.0, 'only': 1.0, 'job': 1.0, 'against': 1.0, 'to': 7.0, 'lighter': 1.0, 'consequence': 1.0, 'with': 1.0, 'ikea': 1.0, 'is': 5.0, 'more': 1.0, 'pride': 1.0, 'in': 2.0, 'regards': 1.0, 'successful': 1.0, 'for': 6.0, 'supermarket': 1.0, '3': 2.0, 'on': 2.0, 'any': 1.0, 'your': 3.0, 'price': 1.0, 'product': 1.0, 'year': 1.0, 'noticeable': 1.0, 'problem': 1.0, 'though': 1.0, 'during': 2.0, 'can': 1.0, 'ask': 1.0, 'so': 2.0, 'several': 1.0, 'cigarette': 1.0, 've': 2.0, 'suffering': 1.0, 'had': 2.0, 'frequently': 1.0, 'about': 2.0, 'remove': 1.0, 'saving': 1.0, 'days': 2.0, 'blast': 1.0, 'else': 2.0, 'face': 1.0, 'of': 12.0, 'the': 23.0, 'aroma': 1.0, 'baking': 1.0, 'sharp': 1.0, 'those': 1.0, 'negative': 1.0, 'few': 1.0, 'this': 5.0, 'plastic': 4.0, 'concerning': 1.0, 'who': 1.0, 'then': 1.0, 'take': 1.0, 'great': 1.0}
Word element => {'quickly': 1.0, 'gets': 1.0, 'everyone': 2.0, 'almost': 2.0, 'out': 1.0, 'parents': 1.0, 'general': 1.0, 'diaper': 1.0, 'given': 1.0, 've': 1.0, 'i': 2.0, 'inspection': 1.0, 'control': 1.0, 'them': 1.0, 'quality': 1.0, 'item': 1.0, 'one': 2.0, 'passed': 1.0, 'just': 1.0, 'open': 2.0, 'as': 1.0, 'to': 4.0, 're': 1.0, 'may': 1.0, 'my': 2.0, 'bag': 1.0, 'is': 1.0, 'up': 3.0, 'tilts': 1.0, 'and': 1.0, 'head': 1.0, 'husband': 1.0, 'issue': 1.0, 'tab': 1.0, 'get': 1.0, '1st': 1.0, 'main': 1.0, 'supposed': 1.0, 'found': 1.0, 'allows': 1.0, 'it': 4.0, 'only': 1.0, 'pails': 1.0, 'bad': 1.0, 'you': 1.0, 'when': 1.0, 'defective': 1.0, 'the': 5.0, 'assembled': 1.0, 'using': 1.0, 'which': 1.0, 'top': 3.0, 'back': 1.0, 'but': 3.0, 's': 3.0, 'a': 1.0, 'very': 1.0, 'construction': 1.0, 'little': 1.0, 'plastic': 1.0, 'stops': 1.0, 'opening': 1.0, 'changing': 1.0, 'that': 3.0, 'talking': 1.0, 'be': 1.0, 'suppused': 1.0, 'part': 1.0, 'slide': 1.0, 'in': 2.0, 'on': 1.0, 'your': 1.0, 'partially': 1.0, 'somehow': 1.0, 'there': 1.0, 'instead': 1.0, 'cought': 1.0, 'time': 1.0, 'so': 1.0}
Word element => {'different': 1.0, 'smell': 1.0, 'absolutely': 1.0, 'is': 1.0, 'there': 1.0, 'else': 1.0, 'house': 1.0, 'no': 1.0, 'whole': 1.0, 'went': 1.0, 'literally': 1.0, 'day': 1.0, 'out': 2.0, 'something': 1.0, 'letting': 1.0, 'it': 4.0, 'work': 1.0, 'not': 1.0, 'changing': 1.0, 'easy': 2.0, 'table': 1.0, 'garbage': 1.0, 'use': 1.0, 'loved': 1.0, 'anymore': 1.0, 'was': 3.0, 'being': 1.0, 'i': 2.0, 'putting': 1.0, 'and': 3.0, 'curb': 2.0, 'bags': 2.0, 'able': 1.0, 'have': 1.0, 'so': 1.0, 'time': 1.0, 'with': 2.0, 'this': 1.0, 'the': 9.0, 'diaper': 4.0, 'replace': 1.0, 'made': 1.0, 'champ': 2.0, 'got': 1.0, 'even': 1.0, 'diapers': 1.0, 'for': 2.0, 'gaskets': 1.0, 'long': 1.0, 'before': 1.0, 'w': 1.0, 'does': 1.0, 'empty': 1.0, 'to': 6.0, 'our': 1.0, 'simple': 1.0, 'a': 2.0, 'we': 1.0, 'air': 1.0, 'regular': 1.0, 'in': 1.0, 'cleaning': 1.0, 'did': 1.0, 'twice': 1.0, 'stink': 1.0, 'sponge': 1.0, 'once': 1.0, 'child': 1.0, 'put': 1.0, 'on': 1.0, 'very': 2.0, 'foods': 1.0, 'happy': 1.0, 'pail': 2.0}
Word element => {'world': 1.0, 'trade': 1.0, 'hours': 1.0, 'every': 1.0, 'it': 2.0, 'fill': 1.0, 't': 1.0, 'we': 1.0, 'you': 1.0, 'wouldn': 1.0, 'diapers': 1.0, 'still': 1.0, 'gets': 1.0, 'baby': 2.0, 'diaper': 1.0, 'has': 1.0, 'i': 5.0, 'ever': 1.0, 'buy': 1.0, 'super': 2.0, 'months': 2.0, 'on': 1.0, 'bedroom': 1.0, 'cheap': 1.0, 'for': 2.0, 'love': 1.0, 'in': 1.0, 'smelled': 1.0, 'odor': 1.0, 'about': 1.0, 'thing': 2.0, 'only': 1.0, 'more': 1.0, 'is': 3.0, 'this': 2.0, 'haves': 1.0, 'the': 6.0, 'often': 1.0, 'my': 2.0, '36': 1.0, '6': 2.0, 'once': 2.0, 'of': 2.0, 'with': 1.0, 'drawback': 1.0, 'list': 1.0, 'have': 2.0, 'must': 1.0, 'get': 1.0, 'kind': 1.0, 'just': 1.0, 'an': 1.0, 'been': 1.0, 'that': 2.0, 'but': 1.0, 'change': 1.0, 'can': 1.0, 'bigger': 2.0, 'flimsy': 1.0, 'pails': 1.0, 'size': 1.0, 'use': 1.0, 'our': 1.0, 'to': 1.0, 'all': 1.0, 'as': 2.0, 'any': 1.0, 'bag': 2.0, 'so': 1.0, 'garbage': 1.0, 'not': 1.0, 'those': 1.0, 'and': 2.0, 'tall': 1.0, 'from': 1.0, 'bags': 1.0}
Word element => {'new': 1.0, 'champ': 1.0, 'my': 1.0, 'throwing': 1.0, 'am': 1.0, 'up': 1.0, 'given': 1.0, 'persist': 1.0, 'oder': 1.0, 'which': 1.0, 'particularly': 1.0, 'after': 1.0, 'also': 1.0, 'in': 1.0, 'i': 1.0, 'jams': 1.0, 'something': 1.0, 'that': 1.0, 'dirty': 1.0, 'jam': 1.0, 'nasty': 1.0, '100': 1.0, 'have': 1.0, 'causes': 1.0, 'catches': 1.0, 'is': 3.0, 'such': 1.0, 'diaper': 3.0, 'the': 3.0, 'when': 1.0, 'it': 2.0, 'impossible': 1.0, 'clean': 1.0, 'now': 1.0, 'to': 2.0, 'getting': 1.0, 'away': 1.0, 'and': 4.0, 'get': 1.0, 'well': 1.0, 'a': 1.0}
Word element => {'effective': 1.0, 'differently': 1.0, 'way': 1.0, 'front': 1.0, 'think': 1.0, 'on': 1.0, 'mechanism': 1.0, 'be': 1.0, 'giving': 1.0, 'm': 1.0, 'reason': 1.0, 'science': 1.0, 'rocket': 1.0, 'this': 1.0, 'they': 2.0, 'clean': 2.0, 'overflowing': 1.0, 'that': 1.0, 'changing': 1.0, 've': 1.0, 'would': 2.0, 'week': 1.0, 'smell': 1.0, 'toilet': 1.0, 'too': 1.0, 'and': 3.0, 'get': 1.0, 'isn': 1.0, 'spray': 1.0, 'down': 1.0, 'could': 1.0, 's': 1.0, 't': 6.0, 'a': 3.0, 'like': 1.0, 'hand': 1.0, 'residual': 1.0, 'champ': 1.0, 'diaper': 2.0, 'flush': 1.0, 'the': 9.0, 'great': 1.0, 'didn': 1.0, 'got': 1.0, 'i': 5.0, 'buy': 1.0, 'stars': 1.0, 'for': 1.0, 'love': 1.0, 'my': 1.0, 'me': 1.0, 'not': 2.0, 'convenience': 1.0, 'there': 2.0, 'stink': 1.0, 'of': 2.0, 'lysol': 1.0, 'because': 1.0, 'having': 1.0, 'in': 2.0, 'special': 1.0, 'things': 1.0, 'odor': 2.0, 'from': 1.0, 'bags': 1.0, 'still': 1.0, 'it': 5.0, 'with': 1.0, 'is': 2.0, 'can': 1.0, 'but': 1.0, 'change': 1.0, 'relative': 1.0, 'no': 1.0, 'some': 1.0, 'any': 1.0, 'as': 2.0, 'to': 1.0, 'our': 1.0, 'only': 1.0, 'try': 1.0, 'works': 1.0, 'nursery': 1.0, 'when': 1.0, 'you': 3.0, 'done': 1.0, 'bag': 2.0, 'opening': 1.0, 'five': 1.0, 'before': 1.0, 'eliminate': 1.0, 'don': 3.0, 'germs': 1.0, 'if': 2.0, 'hello': 1.0}
Word element => {'put': 1.0, 'ours': 1.0, 'one': 1.0, 'no': 1.0, 'about': 2.0, 'confused': 2.0, 'have': 2.0, 'genie': 1.0, 'houses': 1.0, 'friends': 2.0, 'when': 1.0, 'had': 1.0, 'store': 1.0, 'how': 2.0, 'grocery': 2.0, 've': 3.0, 'in': 2.0, 'diaper': 2.0, 'ones': 1.0, 'scented': 1.0, 'son': 1.0, 'inexpensive': 1.0, 'ever': 1.0, 'buy': 1.0, 'i': 9.0, 'but': 1.0, '2': 2.0, 'can': 1.0, 'it': 4.0, 'this': 2.0, 'using': 1.0, 'that': 2.0, 'been': 3.0, '1': 1.0, 'and': 5.0, 'do': 2.0, 'pail': 1.0, 'm': 1.0, 'years': 1.0, 'just': 2.0, 'use': 3.0, 'flip': 1.0, 'poopie': 1.0, 'every': 1.0, 'love': 1.0, 'for': 1.0, 'recycled': 1.0, 'smelled': 1.0, 'the': 3.0, 'wrap': 1.0, 'up': 1.0, 'family': 1.0, 'my': 2.0, 'a': 1.0, 's': 2.0, 'room': 1.0, 'recommended': 1.0, 'has': 2.0, 'never': 1.0, 'at': 2.0, 'of': 1.0, 'lysol': 1.0, 'once': 1.0, 'to': 5.0, 'all': 3.0, 'bags': 2.0, 'from': 1.0, 'while': 1.0}
Word element => {'champ': 1.0, 'get': 1.0, 'are': 1.0, 'here': 1.0, 'is': 1.0, 'now': 1.0, 'third': 1.0, 'out': 1.0, 'first': 1.0, 'my': 1.0, 'for': 1.0, 'used': 1.0, 'cocoon': 1.0, 'own': 1.0, 'in': 1.0, 'mummified': 1.0, 'want': 1.0, 'cloth': 1.0, 'room': 1.0, 'bit': 1.0, 'threw': 1.0, 'don': 1.0, 'up': 1.0, 'of': 2.0, 'stinks': 1.0, 'but': 2.0, 'diaper': 3.0, 'the': 3.0, 'these': 1.0, 'duh': 1.0, 'think': 1.0, 'it': 4.0, 'with': 1.0, 'had': 1.0, 'me': 1.0, 'to': 2.0, 'all': 1.0, 'have': 1.0, 'much': 1.0, 'nursery': 1.0, 'that': 4.0, 'kids': 1.0, 'this': 2.0, 'full': 1.0, 'dirty': 1.0, 'reviews': 1.0, 'read': 1.0, 'pail': 2.0, 'suprises': 1.0, 'saying': 1.0, 'personally': 1.0, 'going': 1.0, 't': 1.0, 's': 2.0, 'a': 3.0, 'we': 6.0, 'never': 1.0, 'new': 1.0, 'each': 1.0, 'would': 1.0, 'problem': 1.0, 'moved': 1.0, 'and': 1.0, 'too': 1.0, 'when': 1.0, 'you': 1.0, 'smells': 1.0, 'sometimes': 1.0, 'two': 1.0, 'i': 2.0, 'every': 1.0, 'diapers': 2.0, 'got': 1.0, 'use': 1.0, 'one': 2.0, 'because': 1.0}
Word element => {'baby': 1.0, 'my': 1.0, 'of': 2.0, 'good': 1.0, 'be': 1.0, 'if': 1.0, 'smell': 2.0, 'tell': 1.0, 'containing': 2.0, 'can': 1.0, 'so': 1.0, 'formula': 2.0, 'to': 1.0, 'much': 1.0, 'breastfeeding': 1.0, 'and': 1.0, 'as': 3.0, 'that': 1.0, 's': 1.0, 'you': 2.0, 'excellent': 1.0, 'generated': 1.0, 'just': 1.0, 'know': 1.0, 'poop': 4.0, 'at': 2.0, 'let': 1.0, 'is': 1.0, 'i': 2.0, 've': 1.0, 'breastfed': 1.0, 'been': 1.0, 'it': 1.0, 'stink': 1.0, 'will': 1.0, 'but': 2.0, 'champ': 2.0, 'doesn': 1.0, 'great': 1.0, 'the': 3.0, 'diaper': 2.0, 't': 2.0}
Word element => {'regret': 1.0, 'not': 1.0, 'will': 1.0, 'highly': 1.0, 'even': 1.0, 'smelling': 1.0, 'bag': 1.0, 'everytime': 1.0, 'disinfectant': 1.0, 'lysol': 1.0, 'spray': 2.0, 'or': 1.0, 'some': 2.0, 'sprinkle': 1.0, 'buy': 1.0, 'bit': 1.0, 'so': 2.0, 'after': 1.0, 'is': 1.0, 'registered': 1.0, 'far': 1.0, 'odorless': 1.0, 'just': 2.0, 'it': 6.0, 'only': 1.0, 'with': 1.0, 'baby': 2.0, 'enough': 1.0, 'recommend': 1.0, 'talk': 1.0, 'i': 6.0, 'one': 3.0, 'diaper': 1.0, 'the': 5.0, 'live': 1.0, 'champ': 2.0, 'scented': 1.0, 'reviews': 1.0, 'little': 1.0, 'very': 2.0, 'and': 3.0, 'any': 1.0, 'to': 4.0, '13': 1.0, 'keep': 2.0, 'you': 3.0, 'a': 2.0, 's': 1.0, 'change': 2.0, 'can': 2.0, 'safely': 1.0, 'powder': 1.0, 'other': 1.0, 'on': 1.0, 'your': 1.0, 'from': 1.0, 'seeing': 1.0, 'bags': 1.0, 'cannot': 1.0, 'hand': 1.0, 'which': 1.0, 'easy': 2.0, 'gallons': 1.0, 'about': 1.0, 'no': 1.0, 'for': 1.0, 'expensive': 1.0, 'use': 2.0, 'refills': 1.0}
Word element => {'reviews': 1.0, 'negative': 1.0, 'ignored': 1.0, 'he': 1.0, 'thankful': 1.0, 'from': 1.0, 'week': 2.0, 'doesn': 1.0, 'airtight': 1.0, 'the': 2.0, 'diaper': 1.0, 'for': 1.0, 'vault': 1.0, 'well': 1.0, 'don': 1.0, 've': 1.0, 'unless': 1.0, 'you': 3.0, 't': 2.0, 'a': 4.0, 's': 3.0, 'concept': 1.0, 'no': 1.0, 'of': 1.0, 'once': 1.0, 'this': 2.0, 'it': 5.0, 'with': 1.0, 'an': 1.0, 'smell': 1.0, 'not': 2.0, 'really': 1.0, 'appreciate': 1.0, 'newborn': 1.0, 'out': 1.0, 'or': 1.0, 'until': 1.0, 'dad': 1.0, 'device': 1.0, 'used': 1.0, 'what': 1.0, 'but': 1.0, 'can': 1.0, 'designed': 1.0, 'to': 1.0, 'empty': 1.0, 'do': 1.0, 'very': 1.0, 'who': 2.0, 'take': 1.0, 'more': 2.0, 'trash': 1.0, 'does': 1.0, 'than': 1.0, 'same': 1.0, 'pail': 1.0}
Word element => {'be': 1.0, 'parents': 1.0, 'recommend': 1.0, 'highly': 1.0, 'that': 1.0, 'perfect': 1.0, 'this': 2.0, 'it': 2.0, 'of': 1.0, 'have': 1.0, 'would': 2.0, 'just': 2.0, 'cheaper': 1.0, 'bigger': 1.0, 'because': 1.0, 'than': 2.0, 'me': 1.0, 'and': 3.0, 'friend': 1.0, 'my': 1.0, 'the': 5.0, 'glad': 1.0, 'diaper': 2.0, 't': 1.0, 'product': 1.0, 'love': 1.0, 'for': 2.0, 'one': 1.0, 'also': 1.0, 'is': 3.0, 'in': 3.0, 'regular': 1.0, 'gone': 1.0, 'about': 1.0, 'told': 1.0, 'i': 2.0, 'otherwise': 1.0, 'genie': 3.0, 'champ': 1.0, 'works': 1.0, 'any': 1.0, 'to': 2.0, 'as': 1.0, 'best': 1.0, 'well': 1.0, 'terms': 1.0, 'trapping': 1.0, 'odor': 1.0, 'am': 1.0, 'you': 1.0, 'can': 1.0, 'use': 1.0, 'part': 1.0, 'bags': 1.0, 'them': 1.0, 'garbage': 1.0, 'isn': 1.0}
Word element => {'boy': 1.0, 'busy': 1.0, 'end': 1.0, 'from': 1.0, 'strung': 1.0, 'd': 1.0, 'recommend': 1.0, 'dirty': 1.0, 'were': 1.0, 'be': 1.0, 'will': 1.0, 'and': 7.0, 'open': 1.0, 'hard': 1.0, 'special': 1.0, 'hold': 1.0, 'hand': 2.0, 'reading': 1.0, 'sleeping': 1.0, 'changing': 2.0, 'been': 1.0, 'because': 1.0, 'that': 3.0, 'baby': 1.0, 'think': 1.0, 'not': 1.0, 'down': 2.0, 'easier': 1.0, 'table': 1.0, 'll': 1.0, 'odor': 2.0, 'to': 11.0, 'free': 3.0, 'a': 3.0, 's': 2.0, 'go': 2.0, 'purchase': 1.0, 'squirming': 1.0, 'my': 2.0, 'on': 2.0, 'plunger': 1.0, 'everything': 1.0, 'operate': 1.0, 'can': 2.0, 'but': 2.0, 'again': 1.0, 'when': 1.0, 'with': 2.0, 'it': 9.0, 'one': 2.0, 'love': 1.0, 'for': 1.0, 'say': 1.0, 'is': 1.0, 'room': 1.0, 'comes': 1.0, 'in': 2.0, 'lysol': 1.0, 'tie': 1.0, 'some': 1.0, 'of': 4.0, 'the': 13.0, 'all': 1.0, 'other': 2.0, 'playing': 1.0, 'bags': 1.0, 'diaper': 3.0, 'allowing': 1.0, 'actually': 1.0, 'guess': 1.0, 'we': 1.0, 'reviews': 1.0, 'anyway': 1.0, 'change': 1.0, 'up': 1.0, 'champ': 2.0, 'said': 1.0, 'yr': 1.0, 'top': 1.0, 'bag': 3.0, 'spraying': 1.0, 'highly': 1.0, 'few': 1.0, 'stay': 1.0, 'if': 2.0, 'every': 1.0, 'still': 1.0, 'under': 1.0, 'changes': 1.0, 'husband': 1.0, 'sun': 1.0, 'tend': 1.0, 'no': 1.0, 'let': 1.0, 'or': 1.0, 'get': 2.0, 'point': 1.0, 'old': 1.0, 'have': 3.0, 'must': 1.0, 'you': 4.0, 'push': 1.0, 'eats': 1.0, 'nursery': 1.0, 'admit': 2.0, '1': 1.0, 'who': 1.0, 'even': 1.0, 'time': 1.0, 'diapers': 1.0, 'bad': 1.0, 'i': 10.0, 'fast': 1.0, 're': 1.0, 'good': 1.0}
Word element => {'recommend': 1.0, 'size': 1.0, 'regular': 1.0, 'use': 1.0, 'trash': 1.0, 'could': 1.0, 'i': 1.0, 'it': 1.0, 'smell': 1.0, 'highly': 1.0, 'and': 1.0, 'bag': 1.0, 'loved': 1.0, 'this': 1.0, 'product': 1.0, 'to': 1.0, 'kept': 1.0, 'a': 2.0, 'minimum': 1.0}
Word element => {'please': 1.0, 'something': 1.0, 'somebody': 1.0, 'but': 1.0, 'champ': 1.0, 'a': 1.0, 'of': 1.0, 'concept': 1.0, 'it': 1.0, 'too': 1.0, 'm': 1.0, 'where': 1.0, 'airing': 1.0, '3': 1.0, 'can': 1.0, 'i': 4.0, 'about': 1.0, 'years': 1.0, 'love': 1.0, 'for': 1.0, 'half': 1.0, 'out': 2.0, 'outside': 1.0, 'leaving': 1.0, 'thats': 1.0, 'think': 1.0, 'do': 1.0, 'get': 1.0, 'and': 1.0, 'still': 1.0, 'diaper': 1.0, 'the': 3.0, 't': 1.0, '2': 1.0, 'after': 1.0, 'smell': 2.0, 'now': 1.0, 'its': 1.0, 'been': 1.0, 'sitting': 1.0, 'months': 1.0}
Word element => {'out': 1.0, 'emptying': 1.0, 'week': 1.0, 'uses': 1.0, 'keeps': 1.0, 'it': 4.0, 'this': 1.0, 'together': 1.0, 'is': 1.0, 'champ': 1.0, 'importantly': 1.0, 'day': 1.0, 'odors': 1.0, 'to': 1.0, 'all': 1.0, 'easy': 1.0, 'expectations': 1.0, 'my': 1.0, 'without': 1.0, 'the': 5.0, 'diaper': 1.0, 'most': 1.0, 'use': 1.0, 'container': 2.0, 'by': 1.0, 'regular': 1.0, 'in': 1.0, 'gallon': 1.0, 'bags': 1.0, 'way': 1.0, 'depending': 1.0, 'when': 1.0, 'you': 1.0, 'these': 1.0, 'roll': 1.0, 'meets': 1.0, 'of': 2.0, 'bottom': 1.0, 'up': 1.0, '13': 1.0, 'keep': 1.0, 'at': 1.0, 'product': 1.0, 'for': 2.0, 'that': 1.0, 'fills': 1.0, 'on': 1.0, 'put': 1.0, 'your': 1.0, 'go': 1.0, 'a': 2.0, 'could': 1.0}
Word element => {'not': 1.0, 'does': 1.0, 'well': 1.0, 'hopeful': 1.0, 'broke': 1.0, 'that': 2.0, 'less': 1.0, 'genie': 1.0, 'had': 1.0, 'dirty': 1.0, 'his': 1.0, 'did': 1.0, 'flip': 1.0, 'and': 4.0, 'system': 1.0, 'worst': 1.0, 'complicated': 1.0, 'i': 4.0, 'worse': 1.0, 'old': 1.0, 'began': 1.0, 'then': 2.0, 'try': 1.0, 'inside': 1.0, 'work': 1.0, 'but': 3.0, 'diapers': 2.0, 'was': 3.0, 'first': 2.0, 'this': 2.0, 'with': 3.0, 'is': 1.0, 'the': 8.0, 'great': 1.0, 'diaper': 4.0, 'cleaned': 1.0, 'figured': 1.0, 'ever': 1.0, '16': 1.0, 'smell': 2.0, 'as': 1.0, 'to': 4.0, 'outside': 1.0, 'weeks': 1.0, '409': 1.0, 'put': 3.0, 'make': 1.0, 'would': 2.0, 'way': 1.0, 'return': 1.0, 'in': 2.0, 'a': 1.0, 'hole': 1.0, 'pail': 1.0, 'matters': 1.0, 'my': 1.0, 'it': 5.0, 'month': 1.0, 'couple': 1.0, 'out': 1.0, 'fun': 1.0, 'toys': 1.0, 'disposal': 1.0, 'for': 1.0, 'where': 1.0, 'again': 2.0, 'you': 1.0}
Word element => {'emptied': 1.0, 'be': 1.0, 'get': 1.0, 'wet': 2.0, 'toys': 1.0, 'bag': 2.0, 'deposits': 2.0, 'control': 1.0, 'smell': 2.0, 'time': 1.0, 'makes': 1.0, 'old': 1.0, 'now': 2.0, 'away': 1.0, 'free': 1.0, 'garage': 1.0, 'own': 1.0, 'until': 1.0, '1': 2.0, 'his': 1.0, 'year': 2.0, 'used': 1.0, 'my': 3.0, 'lid': 1.0, 'smells': 1.0, 'you': 1.0, 'cat': 1.0, 'son': 1.0, 'gets': 1.0, 'storage': 1.0, 'for': 2.0, 'where': 1.0, 'box': 1.0, 'that': 3.0, 'a': 6.0, 'ago': 1.0, 't': 1.0, 'we': 1.0, 'out': 2.0, 'purchased': 1.0, 'garbage': 1.0, 'easy': 1.0, 'found': 3.0, 'this': 1.0, 'i': 3.0, 'can': 1.0, 'so': 2.0, 'strength': 1.0, 'about': 1.0, 'and': 5.0, 'too': 2.0, 'only': 1.0, 'lined': 1.0, 'it': 4.0, 'not': 1.0, 'those': 1.0, 'ordor': 1.0, 'the': 6.0, '2': 2.0, 'will': 1.0, 'up': 1.0, 'don': 1.0, 'oh': 1.0, 'with': 3.0, 'pail': 3.0, 'to': 2.0, 'our': 2.0, 'outside': 3.0, 'by': 2.0, 'pull': 1.0, 'if': 1.0, 'have': 2.0, 'sale': 1.0, 'right': 2.0, 'upper': 1.0, 'or': 1.0, 'basket': 1.0, 'lower': 1.0, 'back': 1.0, 'in': 1.0, 'fills': 1.0, 'unit': 1.0, 'wicker': 1.0, 'is': 4.0, 'sits': 1.0, 'at': 1.0, 'on': 1.0, 'deck': 1.0, 'sliding': 1.0, 'glass': 1.0, 'husband': 1.0, 'door': 1.0, 'awkward': 1.0, 'heavy': 1.0, 'body': 1.0, 'diaper': 1.0, 'diapers': 3.0, 'bad': 1.0, 'are': 1.0, 'good': 1.0, 'made': 1.0, 'fresher': 1.0, 'there': 1.0}
Word element => {'else': 1.0, 'anything': 1.0, 'on': 1.0, 'money': 1.0, 'kitchen': 1.0, 'other': 1.0, 'in': 3.0, 'that': 1.0, 'same': 1.0, 'bag': 5.0, 'simple': 1.0, 'open': 1.0, 'them': 1.0, 'baby': 2.0, 'gallon': 1.0, 'when': 3.0, 'you': 1.0, 'again': 1.0, 'smell': 1.0, 'and': 6.0, 'product': 1.0, 'this': 2.0, 'pails': 1.0, 'change': 1.0, 'but': 1.0, 'so': 2.0, 'can': 1.0, 'is': 3.0, 'trash': 2.0, 'now': 1.0, 'friendly': 1.0, 'away': 1.0, 'to': 4.0, 'pail': 1.0, 'her': 1.0, 'use': 2.0, 'stories': 1.0, 'user': 1.0, 'my': 3.0, 'first': 1.0, 'diapers': 1.0, 'six': 1.0, 'acts': 1.0, 'have': 2.0, 'stinky': 1.0, 'replace': 1.0, 'bags': 1.0, 'diaper': 2.0, 'whisks': 1.0, 'of': 2.0, 'the': 9.0, 'whatsoever': 1.0, 'old': 2.0, 'i': 7.0, 'months': 1.0, 'one': 1.0, 'horror': 1.0, 'it': 2.0, 's': 2.0, 'a': 3.0, 'go': 1.0, 'breath': 1.0, 't': 1.0, 'ridiculous': 1.0, 'nothing': 1.0, 'out': 1.0, 'put': 3.0, 'any': 1.0, 'your': 2.0, 'plastic': 1.0, 'compare': 1.0, 'grocery': 1.0, 'yard': 1.0, 'smells': 1.0, 'waste': 2.0, 'technical': 1.0, 'only': 1.0, 'whatever': 1.0, 'down': 1.0, 'difficulty': 1.0, 'top': 3.0, 're': 1.0, 'ready': 1.0, 'like': 1.0, 'garbage': 1.0, 'hold': 1.0, 'full': 1.0, 'dirty': 1.0, 'pull': 1.0, '13': 1.0, 'no': 2.0, 'time': 1.0, 'heard': 1.0, 'new': 1.0, 'jamming': 1.0, 'or': 1.0, 'chute': 1.0, 'pop': 1.0, 'kind': 1.0, 'leaking': 1.0, 'don': 1.0}
Word element => {'ll': 1.0, 'than': 1.0, 'more': 3.0, 'any': 1.0, 'your': 1.0, 'even': 1.0, 'highly': 1.0, 'smell': 1.0, 'give': 1.0, 've': 1.0, 'empty': 2.0, 'lid': 1.0, 'flip': 1.0, 'into': 1.0, 'you': 3.0, 'away': 1.0, 'loves': 1.0, '5': 1.0, 'ease': 1.0, 'needs': 1.0, 'who': 1.0, 'buying': 1.0, 're': 1.0, 'glad': 1.0, 'born': 1.0, 'recommend': 1.0, 'dirty': 1.0, 'were': 2.0, 'twins': 1.0, 'having': 2.0, 'by': 2.0, 'money': 2.0, 'saving': 2.0, 'and': 10.0, 'grandparents': 1.0, 'for': 5.0, 'if': 3.0, 'e': 1.0, 'family': 1.0, 'another': 2.0, 'neck': 1.0, 'in': 4.0, 'age': 1.0, 'drop': 1.0, 'pain': 1.0, 'going': 1.0, 'impressed': 1.0, 'long': 1.0, 'on': 2.0, 'of': 2.0, 'the': 15.0, 'refill': 3.0, 'throwing': 1.0, 'out': 2.0, 'decent': 1.0, 'genie': 5.0, 'scented': 1.0, 'champ': 5.0, '3': 1.0, 'refills': 1.0, 'older': 1.0, 'already': 2.0, 'it': 10.0, 'with': 4.0, 'quick': 1.0, 'g': 1.0, 'is': 5.0, 'at': 3.0, 'chamber': 1.0, '13': 1.0, 'told': 1.0, 'inside': 3.0, 'those': 2.0, 'my': 1.0, 'me': 3.0, 'not': 5.0, 'then': 1.0, 'we': 8.0, 'a': 11.0, 'additional': 1.0, 'time': 1.0, 'new': 1.0, 'each': 2.0, 'bags': 1.0, 'diaper': 4.0, 'as': 5.0, 'job': 2.0, 'to': 12.0, 'cartridges': 4.0, 'emptying': 2.0, 'our': 2.0, 'least': 1.0, 'when': 3.0, 'us': 1.0, 'parents': 1.0, 'showed': 1.0, 'too': 1.0, 'one': 1.0, 'decided': 1.0, 'get': 1.0, 'tons': 1.0, 'except': 1.0, 'months': 3.0, 'odors': 2.0, 'started': 1.0, 'ahead': 1.0, 'that': 3.0, 'because': 4.0, 'just': 1.0, 'lysol': 1.0, 'while': 2.0, 'was': 4.0, 'had': 2.0, 'everyone': 1.0, 'have': 3.0, 'did': 3.0, 'start': 1.0, 'up': 1.0, 'after': 3.0, 'friend': 1.0, 'all': 2.0, 'an': 1.0, 'super': 1.0, 'month': 2.0, 'same': 1.0, '6': 2.0, 'members': 1.0, 'mine': 1.0, 'use': 4.0, 'her': 1.0, 'i': 5.0, 'comparable': 1.0, 'only': 2.0, 'do': 2.0, 'spray': 1.0, 'extremely': 1.0, 'he': 1.0, 'found': 1.0, 'easy': 2.0, 'require': 1.0, 'child': 2.0, 'year': 2.0, 'garbage': 1.0, 'keeping': 2.0, 'spend': 2.0, 'add': 1.0, 'buy': 3.0, 'son': 2.0, 'run': 1.0, 'old': 2.0, 'go': 2.0, 'thoroughly': 1.0, 'figured': 1.0, 'd': 2.0, 'be': 4.0, 'bad': 1.0, 'diapers': 4.0, 'so': 2.0}
Word element => {'use': 1.0, 'now': 1.0, 'but': 1.0, 'diaper': 1.0, 'need': 1.0, 'perhaps': 1.0, 'is': 1.0, 'fingers': 1.0, 'on': 2.0, 'later': 1.0, 'hard': 1.0, 'son': 1.0, 'still': 1.0, 'was': 1.0, 'tried': 1.0, 'using': 1.0, 'for': 3.0, 'small': 1.0, 'right': 1.0, 'garbage': 2.0, 'find': 1.0, 'months': 1.0, 'mechanism': 1.0, 'space': 1.0, 'of': 2.0, 'windows': 1.0, 'took': 1.0, 'two': 2.0, 'i': 9.0, 'that': 1.0, 'only': 1.0, 'nails': 2.0, 'much': 1.0, 'found': 2.0, 'this': 3.0, 'it': 3.0, 'dislike': 1.0, 'am': 1.0, 'again': 1.0, 'when': 1.0, 'pail': 6.0, 'regular': 2.0, 'in': 1.0, 'be': 1.0, 'first': 1.0, 'heavy': 1.0, 'going': 1.0, 'a': 3.0, 't': 1.0, 'myself': 1.0, 'the': 3.0, 'without': 1.0, 'opening': 2.0, 'anything': 1.0, 'opened': 1.0, 'up': 1.0, 'don': 1.0, 'smell': 1.0, 'broke': 1.0, 'odors': 1.0, 'to': 2.0, 'any': 1.0, 'all': 1.0, 'my': 3.0, 'are': 1.0, 'too': 1.0, 'and': 5.0, 'closed': 1.0, 'time': 1.0}
Word element => {'models': 1.0, 'better': 1.0, 'any': 1.0, 'champ': 1.0, 'diaper': 1.0, 'can': 1.0, 'get': 1.0, 't': 1.0, 'of': 3.0, 'the': 3.0, 'rank': 1.0, 'smell': 1.0, 'diapers': 1.0, 'top': 1.0, 'out': 2.0, 'there': 1.0, 'cover': 1.0}
Word element => {'product': 1.0, 'wonderfully': 1.0, 'empty': 1.0, 'use': 1.0, 'easy': 1.0, 'a': 2.0, 'diaper': 2.0, 'the': 3.0, 'my': 1.0, 'own': 1.0, 'love': 1.0, 'it': 3.0, 'i': 1.0, 'uses': 1.0, 'designed': 1.0, 'your': 1.0, 'holds': 1.0, 'champ': 2.0, 'diapers': 1.0, 'garbage': 1.0, 'and': 3.0, 'bags': 1.0, 'nice': 1.0, 'amount': 1.0, 'of': 1.0, 'contains': 1.0, 'to': 2.0, 'husband': 1.0, 'odor': 1.0, 'really': 1.0, 'is': 2.0}
Word element => {'friends': 1.0, 'as': 1.0, 'all': 1.0, 'to': 1.0, 'can': 1.0, 'blue': 1.0, 'busy': 1.0, 'have': 1.0, 'the': 4.0, 'diaper': 2.0, 'this': 2.0, 'it': 2.0, 'with': 1.0, 'poops': 1.0, 'hint': 1.0, 'use': 1.0, 'worked': 1.0, 'never': 1.0, 'love': 1.0, 'for': 1.0, 'registered': 1.0, 'controlling': 1.0, 'really': 1.0, 'purchased': 1.0, 'disappointment': 1.0, 'what': 2.0, 'works': 1.0, 'latch': 1.0, 'into': 1.0, 'and': 5.0, 'get': 1.0, 'my': 2.0, 'safety': 1.0, 't': 1.0, 'we': 2.0, 'a': 2.0, '1st': 1.0, 'toddler': 1.0, 'originally': 1.0, 'wonder': 1.0, 'received': 1.0, 'pail': 4.0, 'they': 1.0, 'scented': 1.0, 'bags': 1.0, 'sacks': 1.0, 'garbage': 1.0, 'odor': 1.0, 'smelly': 1.0, 'little': 1.0, 'i': 1.0, 'well': 2.0, 'recommended': 1.0}
Word element => {'room': 1.0, 'baby': 1.0, 'week': 1.0, '10': 1.0, 'love': 1.0, 'for': 1.0, 'wonderful': 1.0, 'bags': 1.0, 'new': 1.0, 'read': 1.0, 'i': 4.0, 'what': 1.0, 'and': 2.0, 'couldn': 1.0, 'wiser': 1.0, 'diaper': 3.0, 'the': 3.0, 'didn': 1.0, 'because': 1.0, 'not': 2.0, 'pail': 2.0, 'finding': 1.0, 'it': 5.0, 'money': 2.0, 'was': 2.0, 'any': 1.0, 'to': 3.0, 'odor': 1.0, 'buying': 1.0, 'waste': 1.0, 'on': 1.0, 's': 1.0, 't': 2.0, 'a': 2.0, 'my': 3.0, 'told': 1.0, 'spent': 1.0, 'reviews': 1.0, 'this': 1.0, 'full': 1.0, 'of': 2.0, 'always': 1.0, 'genie': 1.0, 'champ': 2.0, 'an': 1.0, 'decided': 1.0, 'do': 2.0, 'try': 1.0, 'have': 1.0, 'their': 1.0, 'claimed': 1.0, 'completely': 1.0, 'is': 4.0, 'never': 1.0, 'out': 1.0, 'convenience': 1.0, 'wait': 1.0, 'great': 1.0, 'until': 1.0}
Word element => {'worth': 1.0, 'totally': 1.0, 'gives': 1.0, 'am': 1.0, 'baby': 1.0, 'free': 1.0, 'easy': 1.0, 'has': 1.0, 'hope': 1.0, 'just': 1.0, 'bags': 2.0, 'pleased': 1.0, 'special': 1.0, 'no': 1.0, 'sufficient': 1.0, 'holds': 1.0, 'leaving': 1.0, 'an': 1.0, 'smell': 1.0, 'pail': 1.0, 'this': 1.0, 'impossible': 1.0, 'it': 5.0, 'with': 4.0, 'doesn': 1.0, 'was': 2.0, 'wanted': 1.0, 'everyone': 2.0, 'at': 2.0, 'not': 1.0, 'better': 1.0, 'i': 6.0, 'second': 1.0, 'deposit': 1.0, 'child': 1.0, 'smelly': 1.0, 'amount': 1.0, 'after': 1.0, 'needs': 1.0, 'so': 1.0, 'and': 5.0, 'did': 1.0, 'enter': 1.0, 'to': 4.0, 'all': 3.0, 'than': 1.0, 'my': 1.0, 'the': 7.0, 'diaper': 4.0, 'something': 1.0, 't': 1.0, 'a': 3.0, 'action': 2.0, 'genie': 1.0, 'champ': 2.0, 'put': 1.0, 'diapers': 3.0, 'hold': 1.0, 'hand': 3.0, 'like': 1.0, 'which': 1.0, 'reading': 1.0, 'of': 2.0, 'dirty': 1.0, 'reviews': 1.0, 'here': 1.0, 'one': 3.0, 'decided': 1.0, 'its': 1.0, 'do': 1.0, 'try': 2.0, 'garbage': 1.0, 'right': 1.0, 'money': 1.0, 'can': 1.0, 'customer': 1.0, 'poopie': 1.0, 'regular': 1.0, 'in': 1.0}
Word element => {'friends': 1.0, 'feces': 1.0, 'tank': 1.0, 'holding': 1.0, 'your': 1.0, 'any': 1.0, 'with': 1.0, 'would': 1.0, 'disenfect': 1.0, 'odor': 1.0, 'fantastic': 1.0, 'great': 1.0, 'doesn': 1.0, 'but': 2.0, 'roses': 1.0, 'not': 1.0, 'does': 2.0, 'chute': 1.0, 'poop': 3.0, 'clean': 1.0, 'wipies': 1.0, 'like': 2.0, 'poopy': 1.0, 'wrap': 2.0, 'don': 1.0, 'trying': 1.0, 'while': 1.0, 'from': 2.0, 'spin': 1.0, 'days': 1.0, 'close': 1.0, 's': 2.0, 't': 3.0, 'refills': 1.0, 'constantly': 1.0, 'juggling': 1.0, 'over': 1.0, 'open': 1.0, 'product': 2.0, 'expensive': 1.0, 'love': 1.0, 'for': 2.0, 'it': 6.0, 'baby': 1.0, 'she': 1.0, 'this': 1.0, 'recommend': 1.0, 'dirty': 1.0, 'full': 1.0, 'say': 1.0, 'trash': 1.0, 'used': 2.0, 'just': 3.0, 'emptying': 1.0, 'shopping': 1.0, 'daughter': 2.0, 'bags': 1.0, 'diaper': 6.0, 'a': 3.0, 'confident': 1.0, 'of': 3.0, 'the': 17.0, 'let': 1.0, 'need': 1.0, 'or': 1.0, 'me': 1.0, 'my': 3.0, 'i': 9.0, 'genie': 3.0, 'duh': 1.0, 'made': 1.0, 'couple': 1.0, 'weight': 1.0, 'all': 1.0, 'job': 1.0, 'to': 6.0, 'born': 1.0, 'wiggly': 1.0, 'could': 1.0, 'will': 2.0, 'time': 2.0, 'buying': 1.0, 'was': 7.0, 'store': 1.0, 'because': 1.0, 'that': 3.0, 'babies': 1.0, 'recommended': 1.0, 'and': 3.0, 'one': 1.0, 'too': 3.0, 'do': 1.0, 'r': 1.0, '16': 1.0, 'changing': 1.0, 'much': 1.0, 'take': 1.0, 'then': 1.0, 'is': 3.0, 'at': 1.0, 'lift': 1.0, 'us': 1.0, 'in': 2.0, 'regular': 1.0, 'room': 2.0, 'sold': 1.0, 'easy': 1.0, 'disinfect': 1.0, 'months': 2.0, 'get': 1.0, 'didn': 1.0, 'smell': 3.0, 'after': 1.0, '2': 1.0, 'up': 2.0, 'change': 2.0, 'now': 1.0, 'toilets': 1.0, 'am': 1.0, 'when': 2.0, 'containing': 1.0, 'right': 1.0, 'push': 1.0, 'you': 6.0, 'choice': 1.0, 'every': 2.0, 'if': 1.0, 'until': 1.0, 'yes': 3.0, 'gets': 1.0, 'have': 4.0, 'using': 1.0, 'bag': 2.0, 'champ': 4.0, 'stuck': 1.0}
Word element => {'stools': 1.0, 'than': 1.0, 'bag': 1.0, 'champ': 1.0, 'open': 1.0, 'then': 1.0, 'i': 1.0, 'at': 1.0, 'no': 1.0, 'smell': 2.0, 'do': 1.0, 'we': 1.0, 'a': 1.0, 'well': 1.0, 'this': 1.0, 'with': 2.0, 'velcro': 1.0, 'amazing': 1.0, 'somehow': 1.0, 'there': 1.0, 'of': 1.0, 'tons': 1.0, 'days': 1.0, 'close': 1.0, 'can': 1.0, 'born': 1.0, 'able': 1.0, 'and': 2.0, 'toss': 3.0, 'diapers': 2.0, 'abouth': 1.0, '5': 1.0, 'occasionally': 1.0, 'recommend': 1.0, 'the': 6.0, 'replace': 1.0, 'diaper': 3.0, 'is': 3.0, 'more': 2.0, 'new': 1.0, 'following': 1.0, 'each': 1.0, 'teh': 1.0, 'when': 1.0, 'you': 3.0, 'll': 1.0, 'be': 1.0, 'all': 1.0, 'to': 2.0, 'diappers': 1.0, 'tube': 1.0, 'fit': 1.0, 'for': 1.0, 'where': 1.0, 'wipe': 1.0, 'baby': 1.0, 'clean': 1.0, 'wipes': 2.0}
Word element => {'continually': 1.0, 'be': 1.0, 'won': 1.0, 'better': 1.0, 'odors': 1.0, 'control': 1.0, 'middle': 1.0, 'champ': 1.0, 'wiggling': 1.0, 'thumping': 1.0, 'after': 1.0, 'close': 1.0, 'change': 2.0, 'before': 1.0, 'open': 1.0, 'need': 1.0, 'd': 1.0, 'latch': 2.0, 'appliance': 1.0, 'an': 1.0, 'attach': 1.0, 'chamber': 1.0, 'that': 2.0, 'gets': 2.0, 'which': 1.0, 'thoroughly': 1.0, 'outside': 2.0, 'to': 6.0, 'our': 2.0, 'on': 2.0, 'recommendation': 1.0, 'keep': 1.0, 'if': 1.0, 'bigger': 1.0, 'starting': 1.0, 'it': 4.0, 'easier': 1.0, 'table': 1.0, 'shake': 1.0, 'mechanism': 1.0, 'particularly': 1.0, 'but': 2.0, 'wipes': 2.0, 'caught': 1.0, 'is': 1.0, 'trash': 1.0, 'poop': 3.0, 'changing': 1.0, 'do': 2.0, 'locking': 1.0, 'handy': 1.0, 'appetite': 1.0, 'and': 9.0, 'too': 1.0, 'tall': 1.0, 'get': 2.0, 'laden': 1.0, 'bang': 1.0, 'while': 2.0, 'for': 2.0, 'in': 5.0, 'smears': 1.0, 'convenient': 2.0, 'with': 2.0, 'complain': 1.0, 'cured': 1.0, 'a': 8.0, 't': 2.0, 'we': 2.0, 's': 1.0, 'wanted': 1.0, 'receptable': 1.0, 'have': 4.0, 'of': 7.0, 'the': 14.0, 'toddler': 2.0, 'rotating': 1.0, 'lock': 1.0, 'diapers': 1.0, 'into': 1.0, 'bedroom': 1.0, 'aren': 1.0, 'they': 5.0, 'opinion': 1.0, 'trying': 1.0, 'you': 3.0, 'drum': 2.0, 'curious': 1.0, 'this': 1.0, 'often': 1.0, 'me': 1.0, 'my': 1.0, 'lever': 1.0, 're': 1.0, 'enough': 1.0, 'foot': 1.0, 'diaper': 2.0, 'than': 2.0, 'genies': 1.0, 'off': 1.0, 'seems': 1.0, 'yes': 1.0, 'not': 1.0, 'bleach': 1.0, 'source': 1.0, 'quite': 1.0, 'big': 2.0, 'smearing': 1.0, 'your': 1.0, 'probably': 1.0, 'problem': 1.0, 'smell': 2.0, 'baby': 2.0, 'wriggling': 1.0, 'others': 1.0, 'by': 1.0, 'keeping': 1.0, 'out': 1.0, 'container': 1.0, 'frequently': 1.0, 'full': 1.0, 'wiping': 2.0, 'when': 1.0, 'what': 1.0, 'hassle': 1.0, 'buy': 1.0, 'will': 1.0, 'barrel': 1.0}
Word element => {'pail': 1.0, 'convenient': 1.0, 'who': 1.0, 'anyone': 1.0, 'many': 1.0, 'has': 1.0, 'everyone': 1.0, 'grocery': 1.0, 'plastic': 1.0, 'bags': 2.0, 'don': 1.0, 'like': 1.0, 'takes': 1.0, 'right': 1.0, 'are': 1.0, 'diapers': 1.0, 'fact': 1.0, 'lid': 1.0, 'open': 1.0, 'anything': 2.0, 'smell': 2.0, 'time': 1.0, 'really': 1.0, 'odorless': 2.0, 'is': 3.0, 'say': 1.0, 'awesome': 1.0, 'wanted': 1.0, 'that': 3.0, 'recommend': 1.0, 'store': 1.0, 'was': 1.0, 'there': 2.0, 'needed': 1.0, 'dirty': 1.0, 'they': 2.0, 'your': 1.0, 'of': 2.0, 'plus': 2.0, 'things': 1.0, 'no': 1.0, 'baggy': 1.0, 'never': 1.0, 'saw': 1.0, 'sausage': 1.0, 'i': 5.0, 'refill': 1.0, 'the': 7.0, 'diaper': 3.0, 's': 3.0, 't': 2.0, 'a': 3.0, 'refills': 1.0, 'interested': 1.0, 'were': 1.0, 'did': 1.0, 'getting': 1.0, 'get': 1.0, 'closed': 1.0, 'too': 2.0, 'and': 5.0, 'empty': 1.0, 'only': 1.0, 'much': 1.0, 'those': 1.0, 'wasn': 1.0, 'in': 1.0, 'question': 1.0, 'because': 1.0, 'having': 1.0, 'this': 1.0, 'pain': 1.0, 'what': 2.0, 're': 1.0, 'all': 1.0, 'to': 4.0, 'can': 1.0, 'change': 1.0, 'baby': 1.0, '8': 1.0, 'have': 2.0, 'when': 5.0, 'you': 7.0, 'times': 1.0, 'looking': 1.0, 'ever': 1.0, 'buy': 2.0, 'day': 1.0, 'expensive': 1.0, 'for': 5.0, 'it': 11.0, 'first': 1.0, 'genie': 1.0, 'champ': 1.0, 'very': 1.0, 'read': 1.0}
Word element => {'even': 1.0, 'can': 1.0, 'for': 1.0, 'crack': 1.0, 'diapers': 1.0, 'exploding': 1.0, 'those': 1.0, 'use': 1.0, 'to': 1.0, 'systems': 1.0, 't': 1.0, 'great': 1.0, 'diaper': 1.0, 'the': 2.0, 'available': 1.0, 'of': 1.0, 'no': 2.0, 'all': 1.0, 'far': 1.0, 'easy': 1.0, 'newborns': 1.0, 'out': 1.0, 'checked': 1.0, 'is': 2.0, 'i': 1.0, 'by': 1.0, 'special': 1.0, 'it': 1.0, 'this': 2.0, 'stink': 1.0, 'refillable': 1.0, 'disposal': 1.0, 'bags': 1.0, 'and': 1.0, 'best': 1.0, 'very': 1.0}
Word element => {'diapers': 1.0, 'poopy': 1.0, 'any': 1.0, 'smell': 1.0, 'not': 1.0, 'you': 1.0, 'easy': 1.0, 'perfect': 1.0, 'use': 2.0, 'all': 1.0, 'do': 1.0, 'and': 2.0, 'bags': 1.0, 'very': 1.0, 'from': 1.0, 'target': 1.0, 'has': 1.0, 'pail': 1.0, 'is': 1.0, '10': 1.0, 'the': 1.0, 'diaper': 1.0, 'trash': 1.0, 'this': 1.0, 'i': 1.0, 'to': 1.0, 'odor': 1.0, 'normal': 1.0, 'no': 2.0, 'at': 1.0, 'seriously': 1.0, 'size': 1.0, 'gallon': 1.0, 'complaints': 1.0}
Word element => {'else': 1.0, 'anything': 1.0, 'there': 2.0, 'yet': 1.0, 'back': 1.0, 'gone': 1.0, 'still': 1.0, 'out': 2.0, 'cleaned': 1.0, 'use': 1.0, 'after': 1.0, 'special': 2.0, 'to': 3.0, 'with': 1.0, 'buying': 1.0, 'have': 3.0, 'the': 7.0, 'diaper': 3.0, 'doesn': 2.0, 'diapers': 1.0, 'don': 2.0, 'bags': 2.0, 'and': 3.0, 'spray': 1.0, 'i': 7.0, 'buy': 1.0, 'haven': 1.0, 'champ': 1.0, 'genie': 2.0, 'it': 6.0, 'love': 1.0, 'for': 2.0, 'how': 2.0, 'idea': 1.0, 'smells': 1.0, 'you': 1.0, 'many': 1.0, 'work': 1.0, 'but': 2.0, 'change': 1.0, 'every': 1.0, 'really': 1.0, 'is': 1.0, 'more': 1.0, 'holds': 1.0, 'bleach': 1.0, 'not': 2.0, 'odors': 1.0, 'keep': 1.0, 'in': 1.0, 'great': 1.0, 'feel': 1.0, 'know': 1.0, 'like': 1.0, 'pail': 1.0, 'bag': 1.0, 'so': 1.0, 'saving': 1.0, 'works': 1.0, 'much': 1.0, 'm': 1.0, 'just': 1.0, 'by': 1.0, 'that': 2.0, 't': 4.0, 'a': 1.0, 'fact': 1.0, 'often': 1.0, 'requires': 1.0}
Word element => {'bags': 1.0, 'uses': 1.0, 'plus': 1.0, 'at': 1.0, 'competitors': 1.0, 'better': 1.0, 'seems': 1.0, 'also': 1.0, 'it': 2.0, 'under': 1.0, 'little': 1.0, 'diapers': 1.0, 'capable': 1.0, 'but': 1.0, 'and': 1.0, 'the': 7.0, 'trash': 1.0, 'is': 1.0, 'more': 1.0, 'diaper': 3.0, 'smells': 2.0, 'tried': 1.0, 'was': 2.0, 'to': 4.0, 'its': 1.0, 'definately': 1.0, 'holding': 1.0, 'than': 1.0, 'find': 1.0, 'excited': 1.0, 'have': 2.0, 'no': 1.0, 'thing': 1.0, 'i': 6.0, 'two': 2.0, 'a': 1.0, 'could': 1.0, 'keeping': 2.0, 'of': 2.0, 'guess': 1.0, 'pail': 3.0, 'immediately': 1.0, 'up': 1.0, 'disapointed': 1.0, 'down': 1.0, 'everytime': 1.0, 'filp': 1.0, 'that': 2.0, 'into': 1.0, 'think': 1.0, 'regular': 1.0, 'age': 1.0, 'in': 2.0, 'entire': 1.0, 'design': 1.0, 'mine': 1.0, 'be': 2.0, 'ones': 1.0, 'opened': 1.0, 'broken': 1.0, 'just': 1.0, 'poor': 1.0}
Word element => {'child': 1.0, 'first': 1.0, 'about': 1.0, 'known': 1.0, 'wish': 1.0, 'this': 1.0, 'enjoy': 1.0, 'fresh': 1.0, 'every': 1.0, 'tossed': 1.0, 'gets': 2.0, 'in': 2.0, 'pail': 1.0, 'at': 1.0, 'put': 2.0, 'also': 1.0, 'hint': 1.0, 'problems': 1.0, 'day': 1.0, 'bottom': 1.0, 'everytime': 1.0, 'with': 3.0, 'wipes': 1.0, 'clean': 1.0, 'toddler': 1.0, 'champ': 2.0, 'diapers': 1.0, 'bag': 3.0, 'wait': 1.0, 'to': 3.0, 'openings': 1.0, 'now': 1.0, 'had': 3.0, 'wipe': 1.0, 'cannot': 1.0, 'out': 2.0, 'newborn': 1.0, 'my': 3.0, 'own': 1.0, 'if': 1.0, 'the': 10.0, 'diaper': 2.0, 'both': 1.0, 'years': 1.0, 'product': 1.0, 'for': 3.0, 'love': 1.0, 'two': 1.0, 'i': 10.0, 'dryer': 1.0, 'have': 3.0, 'once': 1.0, 'lysol': 2.0, 'of': 2.0, 'time': 1.0, 'sheet': 1.0, 'so': 3.0, 'spray': 1.0, 'garbage': 1.0, 'change': 2.0, '2': 1.0, 'quot': 4.0, 'can': 1.0, 'it': 6.0, 'one': 3.0, 'bought': 1.0, 'months': 1.0, 'get': 2.0, 'easy': 2.0, 'use': 2.0, 'and': 8.0, 'tall': 1.0, 'other': 2.0, 'kitchen': 1.0, 'bags': 1.0, 'odor': 1.0, 'rid': 1.0, 'emptying': 1.0, 'zero': 1.0, 'is': 1.0, 'a': 4.0, 'breeze': 1.0}
Word element => {'praises': 1.0, 'sing': 1.0, 'glad': 1.0, 'after': 1.0, 'everything': 1.0, 'close': 1.0, 'back': 1.0, 'directly': 1.0, 'there': 1.0, 'lysol': 2.0, 'spray': 2.0, 'empty': 1.0, 'smellier': 1.0, 'are': 2.0, 'diapers': 1.0, 'eating': 1.0, 'update': 1.0, 'good': 1.0, 't': 1.0, 'still': 3.0, 'now': 2.0, 'old': 2.0, 'months': 2.0, 'two': 1.0, 'she': 2.0, 'smells': 1.0, 'enough': 3.0, 'would': 1.0, 'but': 3.0, 'chose': 1.0, 'whether': 1.0, 'really': 1.0, 'born': 1.0, 'was': 1.0, 'daughter': 2.0, 'stuck': 2.0, 'champ': 7.0, 'problem': 1.0, 'things': 2.0, 'odor': 2.0, 'have': 3.0, 'is': 10.0, 'trash': 2.0, 'complain': 1.0, 'with': 3.0, 'once': 2.0, 'say': 2.0, 'worry': 1.0, 'before': 1.0, 'so': 2.0, 'sensitive': 2.0, 'can': 2.0, 'money': 1.0, 'up': 1.0, 'change': 1.0, 'about': 5.0, 'out': 1.0, 'absolutely': 1.0, 'effective': 1.0, 'best': 1.0, 'fun': 1.0, 'foods': 1.0, 'buy': 1.0, 'an': 1.0, 'ever': 1.0, 'by': 1.0, 'for': 3.0, 'such': 1.0, 'doing': 1.0, 'of': 2.0, 'the': 15.0, 'my': 3.0, 'solid': 1.0, 'love': 2.0, 'far': 1.0, 'usually': 1.0, 'only': 2.0, 'thing': 1.0, 'happens': 1.0, 'changing': 1.0, 'do': 2.0, 'much': 1.0, 'its': 2.0, 'this': 3.0, 'full': 1.0, 'never': 1.0, 'those': 1.0, 'not': 2.0, 'smell': 1.0, 'fine': 1.0, 'take': 1.0, 'then': 1.0, 'we': 14.0, 'a': 5.0, 'sense': 1.0, 's': 5.0, 'detect': 1.0, 'pail': 2.0, 'job': 2.0, 'to': 9.0, 'emptying': 1.0, 'our': 2.0, 'more': 1.0, 'husband': 2.0, 'just': 3.0, 'economical': 1.0, 'getting': 2.0, 'cleaning': 1.0, 'and': 8.0, 'cannot': 1.0, 'very': 2.0, 'needs': 1.0, 'they': 1.0, 'means': 1.0, 'has': 1.0, 'us': 3.0, 'when': 2.0, 'bag': 5.0, 'be': 2.0, 'because': 1.0, 'that': 3.0, '9': 1.0, 'it': 6.0, 'new': 1.0, 'worried': 1.0, 'time': 1.0, 'uses': 1.0, 'who': 1.0, 'regular': 1.0, 'kitchen': 1.0, 'leave': 1.0, 'diaper': 6.0, 'bags': 1.0, 'makes': 1.0, 'begins': 1.0, 'frequent': 1.0, 'need': 1.0, 'or': 1.0, 'yes': 1.0, 'until': 1.0, 'feel': 1.0, 'mechanism': 1.0, 'like': 1.0, 'quick': 1.0, 'changed': 1.0, 'week': 2.0, 'found': 1.0, 'easy': 1.0, 'insert': 1.0, 'kind': 1.0, 'use': 1.0}
Word element => {'pail': 1.0, 'this': 1.0, 'love': 1.0, 'i': 1.0, 'overall': 1.0, 'bag': 1.0, 'spray': 1.0, 'hearbeat': 1.0, 'one': 1.0, 'us': 1.0, 'r': 1.0, 'like': 1.0, 'shopping': 1.0, 'large': 1.0, 'well': 1.0, 'kitchen': 1.0, 'would': 1.0, 've': 1.0, 'bags': 3.0, 'used': 1.0, 'special': 1.0, 'bedroom': 1.0, 'his': 2.0, 'in': 2.0, 'diaper': 3.0, 'the': 5.0, 'great': 1.0, 'trash': 1.0, 'more': 1.0, 'have': 2.0, 'stinky': 1.0, 'son': 1.0, 'diapers': 2.0, 'weeks': 1.0, 'at': 2.0, 'lysol': 1.0, 'of': 1.0, 'once': 1.0, 'solid': 1.0, 'and': 5.0, 'dozen': 1.0, 'about': 1.0, 'don': 1.0, 'only': 1.0, 'it': 3.0, 'plastic': 1.0, 'he': 1.0, 'my': 1.0, 'champ': 2.0, 'goes': 1.0, 'recommendation': 1.0, '3': 1.0, 'old': 1.0, 'day': 1.0, 'buy': 2.0, 'see': 1.0, 't': 1.0, 'we': 3.0, 'a': 5.0, 's': 2.0, 'again': 1.0, 'when': 1.0, 'you': 3.0, 'babies': 1.0, 'been': 1.0, 'change': 1.0, 'can': 1.0, 'food': 1.0, 'through': 1.0, 'far': 1.0, 'down': 1.0, 'll': 1.0, 'bit': 1.0, 'so': 2.0, 'switches': 1.0, 'as': 2.0, 'to': 3.0, 'are': 1.0, 'get': 2.0, 'kind': 1.0, 'easy': 1.0, 'use': 1.0}
Word element => {'our': 1.0, 'very': 1.0, 'am': 1.0, 'overall': 1.0, '6': 1.0, 'after': 1.0, 'start': 1.0, 'ones': 1.0, 'when': 1.0, 'request': 1.0, 'told': 1.0, 'service': 1.0, 'times': 1.0, '3': 1.0, 'use': 1.0, 'box': 1.0, 'been': 1.0, 'months': 2.0, 'decided': 1.0, 'a': 6.0, 'ago': 1.0, 't': 1.0, 'plus': 1.0, 'trash': 2.0, 'notice': 1.0, 'is': 2.0, 'with': 5.0, 'thorough': 1.0, 'wear': 1.0, 'it': 2.0, 'about': 3.0, 'no': 2.0, 'that': 4.0, 'problems': 2.0, 'trend': 1.0, '2': 1.0, 'but': 1.0, 'of': 1.0, 'the': 11.0, 'whatsoever': 1.0, 'for': 3.0, 'manufacturer': 1.0, 'which': 1.0, '4': 1.0, 'i': 5.0, 'hefty': 1.0, 'two': 2.0, 'definite': 1.0, 'regular': 1.0, 've': 2.0, 'each': 1.0, 'in': 1.0, 'patch': 1.0, 'design': 1.0, 'champ': 5.0, 'fact': 1.0, 'to': 6.0, 'had': 2.0, 'now': 1.0, 'weeks': 1.0, 'free': 1.0, 'and': 9.0, 'have': 2.0, 'ingenious': 1.0, 'diaper': 2.0, 'bags': 2.0, 'week': 1.0, 'mentioned': 1.0, 'smell': 1.0, 'purchase': 1.0, 'usually': 2.0, 'clorox': 1.0, 'rep': 1.0, 'odor': 1.0, 'wipe': 2.0, 'off': 1.0, 'new': 3.0, 'time': 1.0, 'more': 1.0, 'husband': 1.0, 'we': 5.0, 'take': 1.0, 'apart': 1.0, 'few': 1.0, 'give': 1.0, 'bleach': 1.0, 'my': 1.0, 'me': 2.0, 'cleaning': 1.0, 'some': 1.0, 'pleased': 1.0, 'takes': 1.0, 'change': 2.0, 'water': 1.0, 'he': 1.0, 'baby': 1.0, 'gaskets': 3.0, 'customer': 1.0, 'were': 1.0, 'bag': 2.0, 'using': 1.0, 'looking': 1.0, 'sent': 1.0, 'worn': 1.0, 'absolutely': 1.0, 'out': 2.0, 'bought': 1.0, 'called': 1.0, 'they': 1.0, 'piston': 1.0, 'call': 1.0, 'rings': 2.0, 'didn': 1.0, 'even': 2.0, 'so': 1.0, 'ask': 1.0}
Word element => {'space': 1.0, 'of': 1.0, 'take': 1.0, 'alot': 2.0, 't': 1.0, 'up': 1.0, 'don': 1.0, 'if': 1.0, 'noise': 1.0, 'daughter': 1.0, 'even': 2.0, 'diapers': 1.0, 'i': 6.0, 'scented': 1.0, 'dirty': 1.0, 'noticed': 1.0, 'did': 3.0, 'this': 2.0, 'my': 1.0, 'and': 7.0, 'for': 1.0, 'was': 2.0, 'odor': 2.0, 'sleep': 1.0, 'to': 1.0, 'biggest': 1.0, 'would': 1.0, 'yes': 1.0, 'smell': 1.0, 'an': 1.0, 'control': 1.0, 'the': 4.0, 'it': 2.0, 'truly': 1.0, 'while': 1.0, 'soaked': 1.0, 'bags': 2.0, 'that': 1.0, 'only': 1.0, 'empty': 1.0, 'does': 1.0, 'because': 1.0, 'not': 2.0, 'close': 1.0, 'thelid': 1.0, 'time': 1.0, 'so': 1.0, 'when': 1.0, 'changed': 1.0, 'regular': 1.0, 'concern': 1.0, 'out': 1.0, 'diapes': 1.0, 'no': 3.0, 'bag': 1.0, 'need': 1.0, 'one': 1.0, 'deodorizers': 1.0, 'use': 2.0, 'kitchen': 1.0, 'holds': 1.0, 'is': 1.0, 'trash': 1.0, 'easy': 1.0}
Word element => {'of': 1.0, 'opinion': 1.0, 'my': 1.0, 'escapes': 1.0, 'odor': 1.0, 'little': 1.0, 'well': 1.0, 'a': 1.0, 'is': 1.0, 'stars': 1.0, 'not': 1.0, 'ease': 1.0, 'and': 1.0, 'goodness': 1.0, 'better': 1.0, '5': 1.0, 'than': 1.0, 'but': 1.0, 'diapers': 1.0, 'easier': 1.0, 'something': 1.0, 'thank': 1.0, 'reason': 1.0, 'in': 2.0, 'putting': 1.0, 'genie': 1.0, 'worth': 1.0, 'bags': 1.0, 'found': 1.0, 'for': 1.0, 'one': 1.0, 'or': 1.0, 'only': 1.0, 'this': 1.0, 'we': 1.0, 'works': 1.0, 'the': 1.0, 'great': 1.0, 'no': 1.0, 'use': 1.0, 'offsetting': 1.0, 'loading': 1.0, 'difficulty': 1.0}
Word element => {'people': 1.0, 'product': 1.0, 'would': 1.0, 'i': 1.0, 'anything': 1.0, 'time': 1.0, 'though': 1.0, 'recomend': 1.0, 'because': 1.0, 'plenty': 1.0, 'your': 1.0, 'has': 1.0, 'you': 1.0, 'when': 1.0, 'seems': 1.0, 'convient': 1.0, 'ultra': 1.0, 'day': 1.0, 'champ': 2.0, 'do': 1.0, 'wiggle': 1.0, 'diapers': 1.0, 'diaper': 2.0, 'my': 1.0, 'and': 4.0, '1': 2.0, 'with': 2.0, 'it': 2.0, 'month': 1.0, 'old': 1.0, 'is': 4.0, 's': 1.0, 'a': 2.0, 'we': 1.0, 'smell': 1.0, 'have': 2.0, 'any': 1.0, 'to': 2.0, 'as': 1.0, 'all': 2.0, 'babies': 1.0, 'been': 2.0, 'the': 2.0, 'hands': 1.0, 'baby': 1.0, 'kicking': 1.0, 'squirming': 1.0, 'now': 1.0, 'worm': 1.0, 'there': 2.0, 'of': 1.0, 'no': 2.0, 'since': 1.0, 'at': 1.0, 'dirty': 1.0, 'generous': 1.0, 'size': 1.0, 'this': 1.0, 'full': 1.0, 'allows': 1.0, 'using': 1.0, 'which': 1.0, 'important': 1.0}
Word element => {'issues': 1.0, 'minor': 1.0, 'even': 1.0, 'product': 1.0, 'recommend': 1.0, 'before': 1.0, 'sure': 1.0, 'just': 1.0, 'sleep': 2.0, 'back': 1.0, 'trying': 1.0, 'middle': 1.0, 'hours': 1.0, 'into': 1.0, 'down': 2.0, 'two': 1.0, 'little': 1.0, 'inside': 1.0, 'quiet': 1.0, 'really': 1.0, 'since': 1.0, 'great': 1.0, 'mechanism': 1.0, 'specialty': 1.0, 'from': 1.0, 'have': 2.0, 'no': 1.0, 'keep': 1.0, 'handed': 1.0, 't': 3.0, 's': 2.0, 'might': 1.0, 'these': 1.0, 'room': 1.0, 'bit': 1.0, 'after': 1.0, 'champ': 3.0, 'love': 1.0, 'for': 2.0, 'genie': 1.0, 'disposal': 1.0, 'your': 1.0, 'keeps': 1.0, 'online': 1.0, 'as': 1.0, 'bags': 1.0, 'diaper': 5.0, 'changed': 1.0, 'whatsoever': 1.0, 'tad': 1.0, 'odor': 2.0, 'our': 2.0, 'cradle': 1.0, 'registry': 1.0, 'is': 4.0, 'baby': 3.0, 'reading': 1.0, 'which': 2.0, 'squeeze': 1.0, 'night': 1.0, 'loud': 1.0, 'you': 2.0, 'when': 3.0, 'buy': 1.0, 'would': 1.0, 'springs': 1.0, 'putting': 1.0, 'i': 7.0, 'sharply': 1.0, 'are': 1.0, 'we': 1.0, 'reviews': 1.0, 'also': 2.0, 'us': 1.0, 'in': 4.0, 'm': 1.0, 'of': 2.0, 'the': 16.0, 'natural': 1.0, 'my': 1.0, 'job': 1.0, 'to': 9.0, 'pail': 3.0, 'very': 3.0, 'with': 4.0, 'it': 5.0, 'problems': 1.0, 'that': 1.0, 'this': 2.0, 'release': 1.0, 'dispose': 1.0, 'only': 1.0, 'there': 2.0, 'give': 1.0, 're': 1.0, 'especially': 1.0, 'caution': 1.0, 'moms': 1.0, 'long': 2.0, 'although': 1.0, 'or': 2.0, 'latch': 2.0, 'fake': 2.0, 'everyone': 1.0, 'doesn': 1.0, 'nails': 3.0, 'smoothly': 1.0, 'releasing': 1.0, 'wonderfully': 1.0, 'so': 1.0, 'can': 3.0, 'but': 1.0, 'slides': 1.0, 'be': 3.0, 'difficult': 1.0, 'open': 1.0, 'a': 3.0, 'imagine': 1.0, 'short': 1.0, 'snapped': 1.0, 'get': 2.0, 'broken': 1.0, 'happy': 1.0, 'one': 1.0, 'ones': 1.0, 'off': 1.0, 'if': 1.0, 'rather': 1.0, 'care': 1.0, 'opening': 2.0, 'don': 1.0, 'isn': 1.0, 'taken': 1.0, 'top': 1.0}
Word element => {'must': 1.0, 'a': 1.0, 'well': 1.0, 'smells': 1.0, 'have': 1.0, 'stinky': 1.0, 'and': 1.0, 'bag': 1.0, 'plastic': 1.0, 'contains': 1.0, 'sized': 1.0, 'with': 1.0, 'realized': 1.0, 'is': 1.0, 'appropriate': 1.0, 'quickly': 1.0, 'takes': 1.0, 'off': 1.0, 'special': 1.0, 'started': 1.0, 'genie': 2.0, 'i': 2.0, 'that': 1.0, 'pricey': 1.0, 'keep': 1.0, 'had': 1.0, 'to': 1.0, 'buying': 1.0, 'bags': 1.0, 'any': 1.0, 'but': 1.0, 'champ': 1.0, 'diaper': 1.0, 'the': 3.0, 'great': 1.0}
Word element => {'best': 1.0, 'is': 1.0, 'champ': 1.0, 'they': 1.0, 'kitchen': 1.0, 'you': 2.0, 'some': 1.0, 'of': 1.0, 'once': 1.0, 'get': 1.0, 'and': 2.0, 'perfectly': 1.0, 'the': 9.0, 'diaper': 3.0, 'with': 1.0, 'this': 1.0, 'only': 1.0, 'it': 3.0, 'byebye': 1.0, 'use': 1.0, 'bags': 1.0, 'ol': 1.0, 'those': 1.0, 'smell': 1.0, 'store': 1.0, 'any': 1.0, 'to': 2.0, 'fit': 1.0, 'put': 1.0, 'week': 1.0, 'dollar': 1.0, 'hold': 2.0, 'in': 2.0, 'turn': 1.0, 'top': 1.0, 'handle': 1.0, 'pop': 1.0, 'poopy': 1.0, 'quite': 1.0, 'we': 1.0, 'go': 1.0, 'a': 2.0, 'few': 1.0, 'bag': 2.0, 'need': 1.0, 'can': 2.0, 'hide': 1.0, 'change': 1.0, 'really': 1.0, 'does': 1.0}
Word element => {'there': 2.0, 'evils': 1.0, 'whether': 1.0, 'couldn': 1.0, 'bins': 1.0, 'other': 1.0, 'compared': 1.0, 'haven': 1.0, 'airtight': 1.0, 'an': 1.0, 'of': 2.0, 'purpose': 1.0, 'defeats': 1.0, 'unstuck': 1.0, 'wipes': 1.0, 'to': 2.0, 'had': 1.0, 'but': 2.0, 'm': 1.0, 'based': 1.0, 'with': 1.0, 'drawback': 1.0, 'poopy': 1.0, 'up': 1.0, 'bargains': 1.0, 'reviews': 1.0, 'wrench': 1.0, 'bin': 1.0, 'positive': 1.0, 'wet': 1.0, 'few': 1.0, 'ok': 1.0, 'better': 1.0, 'open': 1.0, 'i': 5.0, 'device': 1.0, 'it': 7.0, 'its': 1.0, 'works': 1.0, 'in': 2.0, 'stuck': 1.0, 'for': 2.0, 's': 2.0, 't': 2.0, 'going': 1.0, 'a': 2.0, 'baby': 1.0, 'months': 1.0, 'bought': 1.0, 'find': 1.0, 'that': 2.0, 'else': 1.0, 'after': 1.0, 'so': 2.0, 'job': 1.0, 'the': 5.0, 've': 1.0, 'something': 2.0, 'biggest': 1.0, 'say': 1.0, 'is': 1.0, 'on': 1.0, 'stuff': 1.0, 'out': 1.0, 'couple': 1.0, 'getting': 1.0, 'and': 1.0, 'days': 1.0, 'emptying': 1.0, 'hopefully': 1.0, 'starts': 1.0, 'you': 1.0, 'lesser': 1.0, 'have': 1.0}
Word element => {'use': 1.0, 'easy': 1.0, 'no': 1.0, 'to': 1.0, 'odor': 1.0, 'now': 1.0, 'diaper': 1.0, 'our': 2.0, 'for': 1.0, 'using': 1.0, 'expectations': 1.0, 'been': 1.0, '4': 1.0, 'newborns': 1.0, 'trust': 1.0, 'champ': 1.0, 'weeks': 1.0, 'diapers': 1.0, 'have': 1.0, 'all': 1.0, 'poopy': 1.0, 'has': 1.0, 'we': 1.0, 'smell': 1.0, 'me': 1.0, 'do': 1.0, 'and': 2.0, 'it': 1.0, 'met': 1.0}
Word element => {'well': 1.0, 'very': 1.0, 'seems': 1.0, 'prduct': 1.0, 'at': 1.0, 'be': 1.0, 'work': 1.0, 'but': 1.0, 'can': 1.0, 'trash': 1.0, 'use': 1.0, 'somewhat': 1.0, 'how': 1.0, 'apart': 1.0, 'having': 1.0, 'opening': 1.0, 'until': 1.0, 'good': 1.0, 'think': 1.0, 'ok': 2.0, 'worked': 1.0, 'wondering': 1.0, 'so': 3.0, 'after': 1.0, 'was': 1.0, 'to': 4.0, 'smelled': 1.0, 'far': 2.0, 'for': 1.0, 'of': 1.0, 'using': 1.0, 'device': 1.0, 'point': 1.0, 'old': 1.0, 'immune': 1.0, 'fell': 1.0, 'it': 2.0, 'the': 3.0, 'some': 1.0, 'these': 1.0, 'cheapie': 1.0, 'pail': 2.0, 'and': 2.0, 'me': 1.0, 'get': 1.0, 'reviewers': 1.0, 'are': 1.0, 'able': 1.0, 'probably': 1.0, 'bad': 1.0, 'have': 1.0, 'stand': 1.0, 'this': 2.0, 'kids': 1.0, 'a': 1.0, 'could': 1.0, 'hardly': 1.0, 'am': 1.0, 'you': 2.0, 'changed': 1.0, 'even': 1.0, 'diapers': 1.0, 'i': 4.0, '4': 1.0, 'years': 1.0}
Word element => {'item': 1.0, 'recommend': 1.0, 'would': 1.0, 'forget': 1.0, 'bags': 2.0, 'such': 1.0, 'diaper': 1.0, 'the': 3.0, 'great': 1.0, 'replacement': 1.0, 'very': 1.0, 'items': 1.0, 'else': 1.0, 'i': 5.0, 'buy': 1.0, 'chose': 1.0, 'hate': 1.0, 'squeeze': 1.0, 'and': 1.0, 'oder': 1.0, 's': 1.0, 'are': 1.0, 'this': 1.0, 'full': 2.0, 'champ': 1.0, 'difficult': 1.0, 'not': 1.0, 'able': 1.0, 'thing': 1.0, 'have': 1.0, 'standard': 1.0, 'because': 1.0, 'usually': 1.0, 'use': 1.0, 'works': 1.0, 'only': 1.0, 'it': 4.0, 'trash': 1.0, 'is': 4.0, 'you': 1.0, 'when': 1.0, 'anything': 1.0, 'lingering': 1.0, 'into': 1.0, 'noticed': 1.0, 'as': 1.0, 'to': 3.0, 'any': 1.0, 'baby': 1.0, 'in': 1.0, 'room': 1.0}
Word element => {'this': 1.0, 'smell': 1.0, 'few': 1.0, 'i': 1.0, 'bad': 1.0, 'you': 2.0, 'diaper': 1.0, 'the': 1.0, 't': 2.0, 'want': 1.0, 'changed': 1.0, 'stuff': 1.0, 'is': 1.0, 'to': 1.0, 'overrated': 1.0, 'odor': 1.0, 'locs': 1.0, 'if': 1.0, 'gallon': 2.0, 'can': 1.0, 'a': 2.0, 'don': 2.0, 'zip': 2.0, 'diapers': 1.0, 'in': 1.0, 'discard': 1.0, 'loc': 1.0, 'get': 1.0, 'and': 1.0}
Word element => {'out': 1.0, 'are': 1.0, 'they': 1.0, 'smell': 2.0, 'bag': 1.0, 'when': 1.0, 'while': 1.0, 'doesn': 1.0, 'champ': 1.0, 'diapers': 1.0, 'inside': 1.0, 'have': 1.0, 'thing': 1.0, 'lysol': 1.0, 'there': 1.0, 'really': 1.0, 'change': 1.0, 'is': 3.0, 'problem': 1.0, 'even': 2.0, 'use': 1.0, 'garbage': 1.0, 'never': 1.0, 'in': 1.0, 've': 1.0, 'i': 4.0, 'once': 2.0, 'no': 1.0, 'spray': 1.0, 'do': 1.0, 'and': 1.0, 'very': 1.0, 'with': 2.0, 'it': 2.0, 'only': 2.0, 'bags': 1.0, 'find': 1.0, 't': 1.0, 'diaper': 1.0, 'the': 6.0, 'a': 3.0, 'convenient': 1.0, 'had': 1.0, 'odor': 1.0, 'to': 1.0}
Word element => {'that': 1.0, 'always': 1.0, 'of': 1.0, 'ones': 1.0, 'diaper': 2.0, 'the': 4.0, 'these': 1.0, 'better': 1.0, 'times': 1.0, 'stay': 1.0, 'broke': 1.0, 'hundred': 1.0, 'and': 1.0, 't': 1.0, 'a': 2.0, 'we': 1.0, 'other': 1.0, 'three': 1.0, 'prior': 1.0, 'little': 1.0, 'to': 2.0, 'was': 1.0, 'more': 1.0, 'is': 2.0, 'regular': 1.0, 'pails': 1.0, 'extra': 1.0, 'springs': 1.0, 'had': 1.0, 'purchased': 1.0, 'use': 1.0, 'this': 2.0, 'wouldn': 1.0, 'it': 2.0, 'one': 2.0, 'shut': 1.0, 'worth': 1.0, 'or': 1.0, 'lid': 1.0, 'champ': 1.0, 'money': 1.0, 'but': 1.0, 'well': 1.0, 'has': 1.0, 'have': 1.0, 'none': 1.0, 'problems': 1.0, 'nice': 1.0, 'garbage': 1.0, 'bags': 1.0, 'expensive': 1.0}
Word element => {'have': 1.0, 'it': 1.0, 'problem': 1.0, 'smells': 1.0, 'your': 1.0, 'would': 1.0, 'must': 1.0, 'as': 1.0, 'empty': 1.0, 'glove': 1.0, 'like': 1.0, 'special': 1.0, 'no': 4.0, 'and': 2.0, 'bags': 2.0, 'a': 3.0, 'in': 1.0, 'mess': 1.0, 'great': 1.0, 'diaper': 1.0, 'the': 1.0, 'invention': 1.0, 'easy': 1.0, 'use': 1.0, 'just': 1.0, 'garbage': 2.0, 'fits': 1.0, 'was': 1.0, 'to': 1.0, 'one': 1.0, 'handed': 1.0, 's': 1.0, 'you': 2.0, 'champ': 1.0, 'put': 1.0, 'regular': 2.0}
Word element => {'recommend': 1.0, 'said': 1.0, 'would': 1.0, 'proof': 1.0, 'simple': 1.0, 'product': 1.0, 'child': 2.0, 'their': 1.0, 'alone': 1.0, 'retrieve': 1.0, 'who': 1.0, 'becasue': 1.0, 'again': 1.0, 'be': 2.0, 'into': 1.0, 'mechanism': 1.0, 'toy': 1.0, 'send': 1.0, 'play': 1.0, 'about': 1.0, 'was': 1.0, 'he': 1.0, 'close': 1.0, 'toys': 1.0, 'operation': 1.0, 'wants': 1.0, 'hand': 1.0, 'keeping': 1.0, 'push': 1.0, 'flip': 1.0, 'parent': 1.0, 'button': 1.0, 'never': 1.0, 'some': 2.0, 'have': 1.0, 'could': 1.0, 'people': 1.0, 'wish': 1.0, 'bag': 2.0, 'whole': 1.0, 'seen': 1.0, '4': 1.0, 'diapers': 1.0, 'even': 3.0, 'stinky': 1.0, 'pre': 2.0, 'blunting': 1.0, 'messy': 1.0, 'll': 1.0, 'especially': 1.0, 'target': 1.0, 'kitchen': 1.0, 'calls': 1.0, 'i': 6.0, 'entry': 1.0, 'lot': 1.0, 'when': 1.0, 'roll': 1.0, 's': 5.0, 'we': 4.0, 'handle': 1.0, 'at': 2.0, 'is': 3.0, 'olfactory': 1.0, 'more': 2.0, 'for': 3.0, 'several': 1.0, 've': 2.0, '3': 1.0, 'on': 1.0, 'that': 4.0, 'our': 1.0, 'pail': 2.0, 'to': 8.0, 'great': 1.0, 'improve': 1.0, 'anyone': 1.0, 'godsend': 1.0, 'and': 5.0, 'from': 1.0, 'son': 2.0, 'had': 2.0, 'now': 1.0, 'bags': 1.0, 'diaper': 5.0, '2': 2.0, 'can': 2.0, 'but': 1.0, 'it': 8.0, 'only': 1.0, 'empty': 1.0, 'performance': 1.0, 'nursery': 1.0, 'put': 1.0, 'do': 1.0, 'this': 2.0, 'use': 1.0, 'with': 2.0, 'bundle': 1.0, 'likes': 1.0, 't': 1.0, 'rest': 1.0, 'a': 8.0, 'small': 1.0, 'find': 1.0, 'washed': 1.0, '1': 2.0, '100': 1.0, 'seems': 1.0, 'dollar': 1.0, 'like': 1.0, 'opening': 1.0, 'the': 14.0, 'of': 2.0, 'while': 1.0, 'lysol': 1.0, 'scented': 2.0, 'champ': 6.0, 'haven': 1.0, 'my': 1.0, 'may': 1.0, 'presence': 1.0, 'trash': 1.0, 'bother': 1.0, 'not': 1.0, 'out': 1.0, 'or': 1.0, 'd': 2.0, 'let': 2.0, 'no': 1.0, 'years': 1.0, 'did': 1.0, 'really': 1.0, 'just': 1.0, 'way': 1.0, 'huge': 1.0, 'than': 1.0, 'admit': 1.0, '2x': 1.0, 'in': 5.0, 'tree': 1.0, 'per': 2.0, 'week': 2.0, 'average': 1.0, 'seem': 1.0, '1x': 1.0, 'if': 1.0, 'there': 1.0, 'ever': 1.0, 'smell': 1.0, 'dipaer': 1.0}
Word element => {'plastic': 1.0, 'in': 1.0, 'each': 1.0, 'wraps': 1.0, 'since': 1.0, 'wasteful': 1.0, 'special': 1.0, 'bags': 2.0, 'and': 2.0, 'is': 1.0, 'change': 1.0, 'regular': 1.0, 'it': 2.0, 'love': 1.0, 'works': 1.0, 'uses': 1.0, 'that': 2.0, 'smells': 1.0, 'so': 1.0, 'garbage': 1.0, 'easy': 1.0, 'option': 1.0, 'instead': 1.0, 'no': 1.0, 'keep': 1.0, 'of': 1.0, 'to': 1.0, 'requires': 1.0, 'clean': 1.0, 'great': 2.0, 'the': 1.0, 'diaper': 2.0, 'genie': 1.0}
Word element => {'space': 1.0, 'money': 1.0, 'even': 1.0, 'would': 1.0, 's': 1.0, 'has': 1.0, 'proof': 1.0, 'own': 2.0, 'also': 2.0, 'placewe': 1.0, '99': 1.0, 'genie': 1.0, 'wrong': 1.0, 'was': 1.0, 'if': 2.0, 'issue': 1.0, 'messy': 1.0, 'little': 1.0, 'open': 1.0, 'have': 1.0, 'isabella': 1.0, 'are': 2.0, 'quite': 1.0, 'immediately': 1.0, 'finding': 1.0, 'anything': 1.0, 'now': 2.0, 'items': 1.0, '10': 1.0, 'top': 1.0, 'into': 1.0, 'gave': 1.0, 'our': 1.0, 'to': 6.0, 'more': 1.0, 'up': 1.0, 'takes': 1.0, 'right': 1.0, 'and': 4.0, 'from': 2.0, 'which': 1.0, 'good': 1.0, 'gift': 1.0, 'everything': 1.0, 'else': 1.0, 'got': 1.0, 'sticking': 1.0, 'invented': 1.0, 'a': 3.0, 'we': 4.0, 'regular': 1.0, 'wish': 1.0, 'this': 5.0, 'were': 1.0, 'full': 1.0, 'had': 1.0, 'as': 2.0, 'bags': 1.0, 'diaper': 4.0, 'of': 2.0, 'the': 9.0, 'smell': 4.0, 'an': 2.0, 'introducing': 1.0, 'really': 1.0, 'foods': 1.0, 'buy': 2.0, '4': 1.0, 'love': 1.0, 'product': 1.0, 'stars': 1.0, 'one': 2.0, 'it': 9.0, 'with': 1.0, 'kitchen': 1.0, 'does': 1.0, 'than': 1.0, 'problems': 1.0, 'that': 5.0, 'because': 1.0, 'not': 2.0, 'me': 1.0, 'contain': 1.0, 'again': 1.0, 'smells': 1.0, 'when': 1.0, 'you': 1.0, 'i': 6.0, 'well': 1.0, 'but': 2.0, 'pregnant': 1.0, 'better': 1.0, 'use': 1.0, 'only': 2.0, 'happens': 1.0, 'run': 1.0, 'gets': 2.0, 'fell': 1.0, 'problem': 2.0, 'possible': 1.0, 'champ': 1.0, 'stuck': 3.0, 'on': 1.0, 'inside': 2.0, 'time': 2.0, 'needs': 1.0, 'can': 1.0, 'so': 1.0, 'is': 3.0, 'at': 1.0, 'worst': 1.0, 'about': 1.0, 'moment': 1.0, 'stinky': 1.0, 'trash': 1.0, 'disappear': 1.0, 'these': 1.0, 'get': 2.0, 'am': 1.0, 'tab': 2.0, 'in': 2.0, 'occasional': 1.0, 'sticky': 1.0}
Word element => {'plastic': 1.0, 'recycled': 1.0, 'garbage': 1.0, 'ordinary': 1.0, 'save': 1.0, 'your': 1.0, 'without': 1.0, 'germ': 1.0, 'be': 1.0, 'or': 2.0, 'rose': 1.0, 'still': 1.0, 'pails': 1.0, 'more': 1.0, 'even': 1.0, 'd': 2.0, 'nursery': 1.0, 'bleach': 1.0, 'sponge': 1.0, 'wipe': 1.0, 'periodically': 1.0, 'lysol': 1.0, 'inside': 1.0, 'easy': 1.0, 'which': 1.0, 'change': 1.0, 'will': 1.0, 'market': 1.0, 'unfortunately': 1.0, 'have': 3.0, 'spray': 1.0, 'recycle': 1.0, 'use': 1.0, 'babiesrus': 1.0, 'but': 3.0, 'into': 2.0, 'been': 1.0, 'like': 2.0, 'expect': 1.0, 'liked': 1.0, 'middle': 1.0, 'seem': 1.0, 'next': 1.0, 'them': 1.0, 'nothing': 1.0, 'out': 2.0, 'night': 1.0, 'you': 10.0, 'twins': 1.0, 'by': 2.0, 'just': 3.0, 'when': 3.0, 'what': 1.0, 'had': 1.0, 'money': 1.0, 'registry': 1.0, 'my': 1.0, 'run': 1.0, 'fact': 2.0, 'lid': 1.0, 'underneath': 1.0, 'on': 3.0, 'incredibly': 1.0, 'flip': 3.0, 'think': 1.0, 'expensive': 2.0, 'reviewers': 2.0, 'in': 5.0, 'regular': 1.0, 'itself': 1.0, 'having': 1.0, 'that': 4.0, 'because': 1.0, 'does': 1.0, 'other': 1.0, 'this': 3.0, 'bags': 6.0, 'diaper': 8.0, 't': 2.0, 'didn': 1.0, 'hole': 1.0, 's': 1.0, 'work': 1.0, 'special': 2.0, 'free': 2.0, 'frequently': 1.0, 'want': 1.0, 'happens': 1.0, 'do': 3.0, 'put': 2.0, 'much': 2.0, 'poop': 2.0, 'its': 1.0, 'only': 1.0, 'contains': 1.0, 'hassle': 1.0, 'empty': 2.0, 'the': 20.0, 'of': 2.0, 'a': 6.0, 'imagine': 1.0, 'pail': 5.0, 'to': 7.0, 'i': 9.0, 'little': 2.0, 'two': 1.0, 'something': 1.0, 'buy': 2.0, 'can': 5.0, 'so': 1.0, 'time': 1.0, 'how': 1.0, 'and': 7.0, 'part': 1.0, 'problem': 1.0, 'with': 5.0, 'goes': 1.0, 'smell': 3.0, 'it': 4.0, 'for': 3.0, 'now': 1.0, 'counterweight': 1.0, 'plain': 1.0, 'pushes': 1.0, 'using': 3.0, 'bag': 2.0, 've': 2.0, 'down': 1.0, 'ready': 1.0, 'then': 2.0, 'back': 1.0, 'is': 1.0, 'handle': 1.0, 'months': 1.0, 'get': 1.0, 'champ': 2.0, 'stuck': 1.0, 'sometimes': 1.0, 'never': 1.0, 'some': 2.0, 'should': 1.0}
Word element => {'so': 1.0, 'life': 1.0, 'costs': 1.0, 'yes': 1.0, 'what': 1.0, 'either': 1.0, 'over': 1.0, 'don': 1.0, 'house': 1.0, 'their': 2.0, 'think': 1.0, 'dog': 2.0, 'probably': 1.0, 'they': 1.0, 'them': 1.0, 'important': 2.0, 'if': 2.0, 'touts': 1.0, 'more': 1.0, 'is': 2.0, 'now': 1.0, 'months': 1.0, 'old': 1.0, 'tried': 1.0, 'and': 3.0, 'get': 2.0, 'genie': 3.0, 'champ': 3.0, 'have': 2.0, 'cost': 1.0, 've': 1.0, 'see': 1.0, 'the': 10.0, 'diaper': 8.0, 'a': 3.0, 'geniethe': 1.0, 't': 2.0, 'for': 1.0, 'i': 2.0, 'two': 2.0, 'at': 1.0, 'line': 1.0, 'it': 1.0, 'month': 1.0, 'bottom': 1.0, 'of': 3.0, 'both': 1.0, 'because': 2.0, 'does': 1.0, 'you': 3.0, 'champif': 1.0, 'smell': 4.0, 'design': 1.0, 'not': 1.0, 'prevent': 1.0, 'to': 2.0, 'as': 2.0, 'bags': 1.0, 'period': 1.0, 'doesn': 1.0, 'laugh': 1.0, 'well': 1.0, 'review': 1.0, 'here': 1.0, 'that': 3.0, 'then': 1.0}
Word element => {'great': 1.0, 'they': 1.0, 'trash': 1.0, 'kitchen': 1.0, 'use': 1.0, 'but': 1.0, 'saver': 1.0, 'only': 1.0, 'not': 1.0, 'bag': 1.0, 'install': 1.0, 'need': 2.0, 'done': 1.0, 're': 1.0, 'work': 1.0, 'special': 1.0, 'over': 1.0, 'flip': 1.0, 'push': 1.0, 'you': 2.0, 'all': 1.0, 'operate': 1.0, 'second': 1.0, 'taking': 1.0, 'odor': 1.0, 'problem': 1.0, 'a': 7.0, 'we': 4.0, 't': 1.0, 'go': 2.0, 's': 2.0, 'table': 1.0, 'hold': 1.0, 'out': 1.0, 'unload': 2.0, 'do': 2.0, 'changing': 1.0, 'neglected': 1.0, 'never': 2.0, 'less': 1.0, 'takes': 1.0, 'hand': 3.0, 'says': 1.0, 'stuff': 1.0, 'just': 3.0, 'on': 1.0, 'long': 1.0, 'had': 2.0, 'let': 1.0, 'no': 4.0, 'thing': 2.0, 'gross': 1.0, 'told': 1.0, 'that': 3.0, 'because': 1.0, 'unused': 1.0, 'daughter': 1.0, 'bags': 2.0, 'as': 2.0, 'diaper': 6.0, 'than': 1.0, 'matter': 1.0, 'period': 1.0, 'and': 9.0, 'money': 1.0, 'operable': 2.0, 'bought': 1.0, 'one': 3.0, 'outside': 1.0, 'was': 2.0, 'born': 1.0, 'what': 1.0, 'when': 3.0, 'genie': 2.0, 'champ': 1.0, 'well': 1.0, 'i': 8.0, 'it': 9.0, 'easy': 1.0, 'know': 1.0, 'found': 2.0, 'truely': 2.0, 'pain': 1.0, 'this': 2.0, 'another': 1.0, 'my': 1.0, 'in': 2.0, 'closet': 1.0, 'so': 3.0, 'for': 3.0, 'impractical': 1.0, 'rather': 1.0, 'shower': 1.0, 'the': 8.0, 'convert': 1.0, 'of': 1.0, 'longer': 1.0, 'also': 2.0, 'will': 1.0, 'didn': 1.0, 'are': 1.0, 'plus': 1.0, 'diapers': 1.0, 'even': 1.0, 'twist': 1.0, 'very': 2.0, 'she': 1.0, 'baby': 2.0, 'many': 1.0, 'would': 1.0, 'each': 1.0, 'time': 1.0, 'new': 2.0, 'about': 1.0, 'walk': 1.0, 'were': 1.0, 'pregnant': 1.0, 'with': 3.0, 'son': 1.0, 'husband': 1.0, 'your': 1.0, 'mom': 1.0, 'our': 4.0, 'shopping': 1.0, 'to': 10.0, 'became': 1.0, 'pail': 1.0, 'gravity': 1.0, 'now': 1.0, 'there': 1.0, 'soon': 1.0, 'give': 1.0, 'handle': 1.0, 'is': 5.0, 'at': 1.0, 'every': 1.0, 'if': 1.0, 'be': 1.0, 'has': 1.0, 'worry': 1.0, 'registered': 1.0, 'running': 1.0, 'have': 1.0}
Word element => {'worth': 1.0, 'think': 1.0, 'still': 1.0, 'was': 2.0, 'it': 3.0, 'did': 1.0, 'ones': 1.0, 'they': 2.0, 'company': 1.0, 'called': 1.0, 'luckily': 1.0, 'rank': 1.0, 'get': 1.0, 'in': 1.0, 'section': 1.0, 'pad': 1.0, 'washers': 1.0, 'just': 1.0, 'large': 1.0, 'has': 1.0, 'smell': 2.0, 'bags': 1.0, 'having': 1.0, 'foam': 2.0, 'reason': 1.0, 'heap': 1.0, 'is': 3.0, 'of': 2.0, '6': 1.0, 'top': 2.0, 'diaper': 1.0, 'the': 10.0, 'pail': 2.0, 'worry': 1.0, 'sent': 1.0, 'buy': 2.0, 'i': 2.0, 'genie': 1.0, 'rating': 1.0, 'we': 1.0, 'hole': 1.0, 't': 1.0, 'a': 5.0, 'had': 1.0, 'first': 1.0, 'pain': 1.0, 'this': 3.0, 'not': 1.0, 'one': 1.0, 'months': 1.0, 'huge': 1.0, 'after': 2.0, 'bit': 1.0, 'time': 1.0, 'so': 1.0, 'new': 1.0, 'would': 1.0, 'others': 1.0, 'factor': 1.0, 'special': 1.0, 'went': 1.0, 'certainly': 1.0, 'have': 2.0, 'advantage': 1.0, 'squish': 1.0, 'and': 5.0, 'larger': 1.0, 'been': 1.0, 'that': 3.0, 'when': 1.0, 'you': 1.0, 'don': 1.0, 'about': 1.0, 'but': 1.0, 'quot': 2.0, 'to': 3.0, 'as': 1.0, 'much': 1.0, 'problem': 2.0}
Word element => {'both': 1.0, 'on': 1.0, 'reviews': 1.0, 'is': 2.0, 'which': 1.0, 'be': 1.0, 'liner': 1.0, 'while': 1.0, 'have': 2.0, 'your': 1.0, 'continually': 1.0, 'purchased': 1.0, 'over': 1.0, 'purchasing': 1.0, 'champ': 3.0, 'for': 2.0, 'disposal': 1.0, 'refills': 1.0, 'use': 1.0, 'grow': 1.0, 'hassle': 1.0, 'very': 1.0, 'worked': 1.0, 'year': 1.0, 'reason': 1.0, 'grocery': 1.0, 'in': 2.0, 'small': 1.0, 'a': 6.0, 's': 1.0, 'by': 1.0, 'fact': 1.0, 'neat': 1.0, 'great': 2.0, 'as': 1.0, 'bags': 1.0, 'diaper': 6.0, 'of': 2.0, 'the': 9.0, 'used': 1.0, 'taken': 1.0, 'putting': 1.0, 'i': 8.0, 'little': 2.0, 'two': 1.0, 'otherwise': 1.0, 'odor': 1.0, 'smelly': 1.0, 'was': 1.0, 'controlling': 1.0, 'every': 2.0, 'children': 1.0, 'purchase': 1.0, 'only': 1.0, 'could': 1.0, 'will': 1.0, 'that': 1.0, 'instead': 3.0, 'to': 5.0, 'pail': 4.0, 'garbage': 1.0, 'constantly': 1.0, 'can': 1.0, 'up': 1.0, 'change': 1.0, 'but': 1.0, 'days': 1.0, 'reluctant': 1.0, 'sometimes': 1.0, 'due': 1.0, 'wrap': 1.0, 'into': 1.0, 'fails': 1.0, 'odors': 1.0, 'it': 3.0, 'day': 1.0, 'control': 1.0, 'help': 1.0, 'smell': 1.0, 'consider': 1.0, 'begun': 1.0, 'individually': 1.0, 'read': 1.0, 'each': 1.0, 'would': 1.0, 'new': 1.0, 've': 1.0, 'before': 1.0, 'room': 1.0, 'son': 1.0, 'am': 1.0, 'with': 1.0, 'this': 1.0, 'one': 1.0, 'dekor': 1.0, 'pushing': 1.0, 'my': 2.0, 'me': 1.0, 'sole': 1.0, 'or': 1.0, 'system': 1.0}
Word element => {'it': 1.0, 'baby': 1.0, 'when': 1.0, 'away': 1.0, 'and': 1.0, 'keeping': 1.0, 'most': 1.0, 'use': 1.0, 'at': 2.0, 'soy': 1.0, 'better': 1.0, 'where': 1.0, 'expensive': 1.0, 'odors': 1.0, 'importantly': 1.0, 'simply': 1.0, 'don': 1.0, 'impressed': 1.0, 'put': 1.0, 'even': 2.0, 'diapers': 1.0, 'my': 2.0, 'diaper': 2.0, 'the': 5.0, 'thoroughly': 1.0, 'is': 1.0, 'recommended': 1.0, 'easier': 1.0, 'those': 1.0, 'locked': 1.0, 'smell': 1.0, 'much': 2.0, 'to': 2.0, 'had': 1.0, 'compared': 1.0, 'less': 1.0, 'champ': 1.0, 'genie': 1.0, 'i': 2.0, 'of': 1.0, 'hospital': 1.0, 't': 1.0, 's': 1.0, 'seep': 1.0, 'this': 1.0, 'niece': 1.0, 'through': 1.0, 'have': 1.0, 'been': 1.0, 'nurses': 1.0}
Word element => {'clean': 1.0, 'recommed': 1.0, 'highly': 1.0, 'away': 1.0, 'germs': 1.0, 'keep': 1.0, 'water': 1.0, 'soak': 1.0, 'week': 1.0, 'use': 2.0, 'have': 1.0, 'i': 4.0, 'old': 1.0, 'had': 2.0, 'it': 4.0, 'convenient': 1.0, 'with': 2.0, 'this': 2.0, 'great': 1.0, 'diaper': 3.0, 'the': 1.0, 'product': 1.0, 'love': 1.0, 'experience': 1.0, 'that': 1.0, 'my': 2.0, 'and': 4.0, 'is': 3.0, 'if': 1.0, 'want': 2.0, 'people': 1.0, 'son': 1.0, '3': 1.0, 'a': 4.0, 't': 1.0, 'we': 1.0, 's': 1.0, 'months': 1.0, 'biggest': 1.0, 'cost': 1.0, 'problem': 1.0, 'efficient': 1.0, 'simple': 2.0, 'bag': 1.0, 'plus': 1.0, 'pail': 2.0, 'can': 1.0, 'plastic': 1.0, 'to': 3.0, 'as': 2.0, 'any': 1.0, 'far': 1.0, 'champ': 1.0, 'haven': 1.0, 'some': 1.0, 'lysol': 1.0, 'once': 1.0, 'saying': 1.0, 'you': 3.0, 'smells': 1.0}
Word element => {'instead': 1.0, 'gotten': 1.0, 'have': 1.0, 'or': 1.0, 'late': 1.0, 'babies': 1.0, 'bad': 1.0, 'at': 1.0, 'had': 1.0, 'r': 1.0, 'odor': 1.0, 'wanted': 1.0, 'this': 3.0, 'it': 3.0, 'product': 1.0, 'for': 1.0, 'when': 1.0, 'us': 2.0, 'i': 5.0, 'well': 2.0, 'we': 1.0, 's': 2.0, 'should': 1.0, 'better': 1.0, 'own': 1.0, 'too': 1.0, 'and': 2.0, 'impressed': 1.0, 'use': 4.0, 'but': 2.0, 'genie': 3.0, 'champ': 1.0, 'chance': 1.0, 'served': 1.0, 'good': 1.0, 'than': 1.0, 'agree': 1.0, 'so': 1.0, 'the': 5.0, 'was': 1.0, 'store': 1.0, 'get': 1.0, 'easy': 1.0, 'very': 1.0, 'seals': 1.0, 'still': 1.0, 'out': 1.0, 'to': 3.0, 'as': 1.0, 'our': 1.0, 'my': 1.0, 'is': 1.0, 'in': 1.0, 'came': 1.0}
Word element => {'simple': 1.0, 'use': 1.0, 'recommend': 1.0, 'easy': 1.0, 'very': 1.0, 'germs': 1.0, 'kill': 1.0, 'highly': 1.0, 'helps': 1.0, 'and': 2.0, 'bit': 1.0, 'a': 1.0, 'have': 1.0, 'odor': 1.0, 'to': 3.0, 'change': 1.0, 'is': 2.0, 'registered': 1.0, 'regular': 1.0, 'item': 1.0, 'diaper': 2.0, 'the': 3.0, 'this': 2.0, 'it': 3.0, 'because': 1.0, 'tends': 1.0, 'for': 1.0, 'love': 1.0, 'liked': 1.0, 'i': 4.0, 'when': 1.0, 'but': 1.0, 'an': 1.0, 'champ': 2.0, 'fact': 1.0, 'that': 2.0, 'lysol': 1.0, 'of': 2.0, 'takes': 2.0, 'garbage': 1.0, 'bags': 1.0, 's': 1.0, 'almost': 1.0, 'care': 1.0, 'full': 1.0}
Word element => {'diapers': 1.0, 'money': 1.0, 'use': 1.0, 'you': 2.0, 'never': 1.0, 'to': 2.0, 'its': 1.0, 'much': 1.0, 'contains': 1.0, 'product': 2.0, 'however': 1.0, 'garbage': 1.0, 'category': 1.0, 'best': 1.0, 'this': 2.0, 'it': 5.0, 'daily': 1.0, 'soiled': 1.0, 'which': 1.0, 'the': 6.0, 'diaper': 1.0, 'i': 1.0, 'smell': 1.0, 'bags': 1.0, 'and': 4.0, 'in': 3.0, 'regular': 2.0, 'makes': 1.0, 'so': 1.0, 'time': 1.0, 'easier': 1.0, 'tends': 1.0, 'throw': 2.0, 's': 1.0, 'we': 1.0, 'a': 1.0, 'bag': 1.0, 'take': 2.0, 'uses': 1.0, 'ours': 1.0, 'trash': 2.0, 'out': 2.0, 'save': 1.0, 'often': 1.0, 'lazy': 1.0, 'your': 2.0, 'make': 1.0, 'just': 2.0, 'by': 1.0, 'fill': 1.0, 'yuck': 1.0}
Word element => {'them': 1.0, 'putting': 1.0, 'before': 1.0, 'diapers': 1.0, 'even': 1.0, 'stock': 1.0, 'buy': 1.0, 'may': 1.0, 'is': 1.0, 'really': 1.0, 'change': 1.0, 'use': 2.0, 'our': 1.0, 'as': 1.0, 'to': 4.0, 'genie': 1.0, 'smelly': 1.0, 'tried': 1.0, '48': 1.0, 'i': 1.0, 'the': 2.0, 'diaper': 2.0, 'one': 2.0, 'bought': 1.0, 'floor': 1.0, 'handed': 1.0, '36': 1.0, 'and': 2.0, 'this': 3.0, 'while': 1.0, 'hard': 1.0, 'first': 1.0, 'it': 3.0, 'because': 1.0, 'just': 1.0, 'after': 1.0, 'd': 1.0, 'so': 2.0, 'bit': 1.0, 'fresheners': 1.0, 'needed': 1.0, 'easy': 1.0, 'was': 1.0, 'recommend': 1.0, 'we': 5.0, 'a': 2.0, 'well': 2.0, 'pail': 1.0, 'very': 2.0, 'hours': 1.0, 'oh': 1.0, 'bad': 1.0, 'have': 2.0, 'bag': 2.0, 'air': 1.0, 'in': 3.0, 'frequently': 1.0, 'still': 1.0, 'smells': 1.0, 'you': 1.0}
Word element => {'though': 1.0, 'solids': 1.0, 'way': 1.0, 'it': 2.0, 'love': 1.0, 'from': 1.0, 'on': 1.0, 'uses': 1.0, 'gets': 1.0, 'when': 1.0, 'cheaper': 1.0, 'store': 1.0, 'to': 1.0, 'grocery': 1.0, 'bags': 1.0, 'change': 1.0, 'because': 1.0, 'baby': 1.0, 'than': 1.0, 'the': 3.0, '2': 1.0, 'have': 1.0, 'regulary': 1.0, 'times': 1.0, 'others': 1.0, 'per': 1.0, 'week': 1.0}
Word element => {'anyone': 1.0, 'easy': 1.0, 'or': 1.0, 'bounce': 1.0, 'sheets': 1.0, 'would': 1.0, 'something': 1.0, 'drop': 1.0, 'change': 1.0, 'aren': 1.0, 'but': 1.0, 'absorbs': 1.0, 'since': 1.0, 'plastic': 2.0, 't': 1.0, 'a': 2.0, 'such': 1.0, 'in': 1.0, 'itself': 1.0, 'pail': 2.0, 'bottom': 1.0, 'inside': 1.0, 'had': 1.0, 'recommend': 1.0, 'was': 1.0, 'use': 2.0, 'far': 1.0, 'just': 1.0, 'odorless': 1.0, 'by': 1.0, 'completely': 1.0, 'is': 3.0, 'many': 1.0, 'this': 3.0, 'only': 1.0, 'different': 1.0, 'are': 1.0, 'reviews': 1.0, 'pails': 1.0, 'the': 11.0, 'product': 2.0, 'for': 2.0, 'champ': 2.0, 'reading': 1.0, 'of': 3.0, 'diaper': 5.0, 'leak': 1.0, 'after': 1.0, 'easiest': 1.0, 'thing': 1.0, 'several': 1.0, 'no': 3.0, 'i': 3.0, 'complicated': 1.0, 'having': 1.0, 'bag': 2.0, 'there': 2.0, 'systems': 1.0, 'similar': 1.0, 'oppressive': 1.0, 'and': 3.0, 'special': 1.0, 'hard': 1.0, 'bags': 2.0, 'dryer': 1.0, 'have': 1.0, 'not': 2.0, 'registered': 1.0, 'odors': 2.0, 'odor': 2.0, 'problem': 1.0, 'as': 1.0, 'actual': 1.0, 'to': 4.0, 'any': 1.0, 'disappears': 1.0, 'couple': 1.0, 'replacement': 1.0, 'out': 1.0, 'into': 2.0, 'room': 1.0}
Word element => {'prevent': 1.0, 'literature': 1.0, 'type': 1.0, 'is': 1.0, 'child': 1.0, 'happend': 1.0, 'just': 1.0, 'small': 1.0, 'suffocated': 1.0, 'this': 2.0, 'he': 1.0, 'home': 1.0, 'one': 1.0, 'my': 1.0, 'a': 1.0, 'lab': 1.0, 'was': 2.0, 'to': 3.0, 'tragedy': 1.0, 'old': 1.0, 'easily': 1.0, 'could': 1.0, 'head': 1.0, 'yellow': 1.0, 'have': 1.0, 'able': 1.0, '8': 1.0, 'as': 1.0, 'year': 1.0, 'warning': 1.0, 'the': 4.0, 'diaper': 1.0, 'top': 1.0, 'there': 1.0, 'of': 2.0, 'canistar': 1.0, 'no': 2.0, 'champ': 1.0, 'off': 1.0, 'horrible': 1.0, 'get': 2.0, 'and': 2.0, 'his': 1.0, 'in': 2.0, 'stuck': 1.0}
Word element => {'definitely': 1.0, 'any': 1.0, 'and': 1.0, 'bags': 1.0, 'regular': 1.0, 'use': 1.0, 'smell': 1.0, 'able': 1.0, 'be': 1.0, 'to': 2.0, 'i': 2.0, 'never': 1.0, 's': 1.0, 'have': 2.0, 'with': 2.0, 'recommend': 1.0, 'no': 1.0, 'my': 1.0, 'it': 1.0, 'great': 1.0, 'problems': 2.0, 'diaper': 2.0, 'champ': 1.0}
Word element => {'need': 1.0, 'means': 1.0, 'did': 1.0, 'top': 1.0, 'didn': 1.0, 'knew': 1.0, 'advice': 1.0, 'a': 3.0, 'going': 1.0, 'friends': 1.0, 'smells': 1.0, 'when': 1.0, 'someone': 1.0, 't': 2.0, 'spare': 1.0, 'stuck': 1.0, 'champ': 2.0, 'in': 5.0, 'who': 1.0, 'out': 2.0, 'run': 1.0, 'old': 1.0, 'parents': 1.0, 'this': 1.0, 'stink': 1.0, 'children': 1.0, 'else': 1.0, 'pail': 2.0, 'to': 5.0, 'house': 1.0, 'can': 1.0, 'so': 1.0, 'strangers': 1.0, 'no': 4.0, 'about': 1.0, 'doing': 1.0, 'of': 1.0, 'the': 10.0, 'diapers': 4.0, 'first': 2.0, 'are': 1.0, 'bad': 1.0, 'have': 3.0, 'but': 2.0, '2': 1.0, 'and': 5.0, 'get': 2.0, 'purchased': 1.0, 'one': 1.0, 'try': 1.0, 'bathroom': 1.0, 'you': 1.0, 'night': 1.0, 'started': 1.0, 'spending': 1.0, 'baby': 1.0, 'because': 1.0, 'young': 1.0, 'that': 4.0, 'been': 1.0, 'their': 1.0, 'product': 2.0, 'for': 2.0, 'couldn': 1.0, 'happier': 1.0, 'used': 1.0, 'it': 4.0, 'be': 1.0, 'disposable': 1.0, 'which': 1.0, 'worked': 1.0, 'we': 11.0, 'fine': 1.0, 'full': 1.0, 'were': 1.0, 'time': 1.0, 'worried': 1.0, 'our': 1.0, 'how': 1.0, 'was': 1.0, 'laundry': 1.0, 'up': 1.0, 'took': 1.0, 'cloth': 2.0, 'at': 2.0, 'is': 3.0, 'now': 1.0, 'weeks': 2.0, '3': 1.0, 'great': 1.0, 'smell': 1.0, 'empty': 1.0, 'hassle': 2.0, 'with': 1.0, 'diaper': 4.0, 'bags': 1.0, 'getting': 1.0, 'believed': 1.0, 'using': 2.0, 'bag': 1.0, 'once': 1.0, 'room': 1.0, 'always': 1.0, 'has': 1.0, 'wrote': 1.0, 'design': 1.0, 'hold': 1.0, 'flaw': 1.0}
Word element => {'bucks': 1.0, 'about': 1.0, 'baby': 1.0, 'and': 4.0, 'sure': 1.0, 'get': 1.0, 'worrying': 1.0, 'new': 1.0, 'system': 1.0, 'enough': 1.0, 'did': 1.0, 'knew': 1.0, 'twenty': 1.0, 'i': 6.0, 'wasn': 1.0, 'diaper': 2.0, 'the': 3.0, 'making': 1.0, 'not': 1.0, 'because': 1.0, 'to': 3.0, 'purchased': 1.0, 'had': 1.0, 'want': 1.0, 't': 1.0, 'going': 1.0, 'a': 2.0, 'well': 1.0, 'bags': 2.0, 'found': 1.0, 'proper': 1.0, 'garbage': 1.0, 'but': 1.0, 'champ': 1.0, 'disposal': 1.0, 'love': 1.0, 'for': 1.0, 'it': 2.0, 'works': 1.0, 'went': 1.0, 'high': 1.0, 'then': 1.0, 'costco': 1.0, 'last': 1.0, 'school': 1.0, 'until': 1.0, 'babies': 1.0, 'in': 1.0, 'under': 1.0}
Word element => {'everyone': 1.0, 'recommend': 1.0, 'would': 1.0, 'i': 1.0, 'champ': 1.0, 'solved': 1.0, 'it': 1.0, 'before': 1.0, 'will': 1.0, 'cents': 1.0, '35': 1.0, 'bag': 1.0, 'need': 1.0, 'special': 1.0, 'frequently': 1.0, 'not': 1.0, 'far': 1.0, 'is': 2.0, 'really': 1.0, 'the': 5.0, 'diaper': 3.0, 'just': 2.0, 'by': 1.0, 'usually': 2.0, 'system': 1.0, 'roll': 1.0, 'buy': 1.0, 'you': 3.0, 'best': 1.0, 'bags': 4.0, 'from': 1.0, 'a': 5.0, 't': 2.0, 'we': 2.0, 'found': 1.0, 'this': 2.0, 'have': 2.0, 'of': 1.0, '13': 1.0, 'in': 2.0, 'gallon': 1.0, 'grocery': 1.0, '99': 1.0, 'plastic': 1.0, 'target': 1.0, 'disposal': 1.0, 'for': 1.0, 'be': 1.0, 'throwing': 1.0, 'chance': 1.0, 'any': 1.0, 'to': 2.0, 'odor': 2.0, 'problem': 2.0, 'if': 2.0, 'change': 2.0, 'but': 1.0, 'your': 1.0, 'put': 1.0, 'don': 2.0, 'poopy': 1.0}
Word element => {'baby': 1.0, 'modern': 1.0, 'required': 1.0, 'paraphernalia': 1.0, 'among': 1.0, 'bargains': 1.0, 'best': 1.0, 'end': 1.0, 'there': 1.0, 'hung': 1.0, 'no': 1.0, 'years': 1.0, '2': 1.0, 'out': 1.0, '2005': 1.0, 'march': 1.0, 'update': 1.0, 'positive': 1.0, 'i': 1.0, 'but': 2.0, 'sound': 1.0, 'open': 1.0, 'difficult': 1.0, 'getting': 1.0, 'wipes': 1.0, 'loose': 1.0, 'bit': 1.0, 'easy': 4.0, 'most': 1.0, 'till': 1.0, 'install': 1.0, 'completely': 1.0, 'more': 1.0, 'them': 1.0, 'always': 1.0, 'has': 2.0, 'been': 2.0, 'wrap': 1.0, 'into': 1.0, 'damp': 1.0, 'handed': 1.0, 'space': 1.0, 'rife': 1.0, 'odors': 3.0, 'any': 2.0, 'our': 4.0, 'all': 3.0, 'to': 9.0, 'never': 2.0, 'walking': 1.0, 'live': 1.0, 'stuck': 1.0, 'champ': 2.0, '14': 1.0, 'get': 1.0, 'months': 2.0, 'generally': 1.0, 'in': 4.0, 'cylinder': 1.0, 'ordinary': 1.0, 'one': 2.0, 'happy': 1.0, 'where': 1.0, 'for': 4.0, 'trash': 1.0, 'corner': 1.0, 'like': 1.0, 'humid': 1.0, 'attribute': 1.0, 'have': 3.0, 'a': 5.0, 'advice': 1.0, 's': 1.0, 'had': 2.0, 'almost': 2.0, 'now': 4.0, 'and': 10.0, 'that': 3.0, 'problems': 3.0, 'very': 2.0, 'little': 1.0, 'bags': 1.0, 'as': 1.0, 'diaper': 5.0, 'insert': 1.0, 'with': 4.0, 'bathroom': 1.0, 'my': 1.0, 'may': 1.0, 'the': 17.0, 'of': 5.0, 'once': 1.0, 'consider': 1.0, 'exploring': 1.0, 'clean': 1.0, 'important': 1.0, 'use': 2.0, 'just': 1.0, 'folded': 1.0, 'you': 1.0, 'dirty': 2.0, 'they': 1.0, 'is': 4.0, 'at': 1.0, 'sits': 1.0, 'handle': 1.0, 'needed': 1.0, 'using': 1.0, 'bag': 2.0, 'or': 1.0, 'need': 1.0, 'unit': 1.0, 'fills': 1.0, 'anything': 1.0, 'flip': 2.0, 'twice': 2.0, 'ensure': 1.0, 'weighted': 1.0, 'pushed': 1.0, 'are': 3.0, 'diapers': 2.0, 'first': 1.0, 'it': 5.0, '9': 1.0, 'so': 1.0, 'slowly': 1.0, 'south': 1.0, 'only': 1.0, 'empty': 2.0, 'this': 2.0, 'kinds': 1.0, 'week': 2.0, 'son': 3.0, 'larger': 1.0, 'we': 8.0, 'take': 2.0, 'change': 1.0, 'up': 1.0}
Word element => {'have': 1.0, 'of': 1.0, 'up': 1.0, 'in': 1.0, 'mouth': 1.0, 'that': 2.0, 'fills': 1.0, 'piece': 1.0, 'made': 1.0, 'out': 1.0, '2': 2.0, 'perhaps': 1.0, 'about': 1.0, 'take': 1.0, 'full': 1.0, 'this': 2.0, 'remove': 1.0, 'it': 3.0, 'only': 1.0, 'wonderful': 1.0, 'gallon': 1.0, 'right': 1.0, 'trash': 1.0, 'completely': 1.0, 'holds': 1.0, 'is': 1.0, 'suggestion': 1.0, 'one': 1.0, 'manufacturer': 1.0, '3': 1.0, 'be': 1.0, 'the': 4.0, 'place': 1.0, 'to': 4.0, 'now': 1.0, 'blue': 1.0, 'an': 1.0, 'bigger': 1.0, 'so': 1.0, '8': 1.0, 'product': 1.0, 'actually': 1.0, 'before': 2.0, 'you': 1.0, 'we': 1.0, 'could': 1.0, 'a': 1.0, 's': 1.0, 'bag': 2.0, 'need': 1.0, '1': 1.0}
Word element => {'like': 1.0, 'no': 1.0, 'bags': 2.0, 'uses': 1.0, 'it': 1.0, 'and': 1.0, 'easily': 1.0, 'regular': 1.0, 'in': 1.0, 'drop': 1.0, 'systems': 1.0, 'there': 2.0, 'baby': 1.0, 'amazon': 1.0, 'lot': 1.0, 'friends': 1.0, 'product': 1.0, 'be': 1.0, 'system': 1.0, 'special': 1.0, 'guides': 1.0, 'did': 1.0, 'i': 2.0, 'etc': 1.0, 'before': 1.0, 'kitchen': 1.0, 'consulted': 1.0, 'other': 2.0, 'to': 1.0, 'diaper': 2.0, 'a': 3.0, 't': 1.0, 'the': 3.0, 'on': 2.0, 'is': 1.0, 'asked': 1.0, 'research': 1.0, 'buying': 1.0, 'with': 1.0, 'of': 1.0, 'stink': 1.0, 'been': 1.0, 'required': 1.0, 'seem': 1.0, 'consensus': 1.0, 'best': 1.0, 'read': 1.0, 'very': 1.0, 'one': 1.0, 'out': 1.0, 'however': 1.0, 'contained': 1.0, 'have': 1.0, 'happy': 1.0, 'purchase': 1.0, 'my': 1.0, 'champ': 1.0, 'didn': 1.0, 'diapers': 1.0, 'reviews': 1.0, 'dirty': 1.0}
Word element => {'over': 1.0, 'costs': 1.0, 'sister': 1.0, 'my': 1.0, 'thing': 1.0, 'clean': 1.0, 'have': 1.0, 'still': 1.0, 'reviews': 1.0, 'previous': 1.0, 'with': 1.0, 'help': 1.0, 'sticky': 1.0, 'agree': 1.0, 'did': 1.0, 'expect': 1.0, 'what': 1.0, 'stinky': 1.0, 'week': 1.0, 'less': 1.0, 'genie': 1.0, 'champ': 1.0, 'best': 1.0, 'worked': 1.0, 'pail': 2.0, 'nothing': 2.0, 's': 1.0, 'we': 2.0, 'a': 3.0, 'diaper': 5.0, 'the': 13.0, 'in': 3.0, 'put': 2.0, 'your': 1.0, 'has': 1.0, 'this': 2.0, 'remove': 1.0, 'it': 2.0, 'lifetime': 1.0, '1': 1.0, 'great': 1.0, 'investment': 1.0, 'below': 1.0, 'is': 3.0, 'makes': 1.0, 'type': 1.0, 'simpler': 1.0, 'when': 2.0, 'times': 1.0, 'you': 5.0, 'but': 1.0, '2': 1.0, 'change': 1.0, 'can': 1.0, 'one': 1.0, 'using': 1.0, 'handle': 1.0, 'i': 1.0, 'feature': 1.0, 'an': 1.0, 'own': 1.0, 'use': 2.0, 'garbage': 1.0, 'time': 1.0, 'so': 1.0, 'its': 1.0, 'much': 2.0, 'do': 1.0, 'works': 1.0, 'deodorant': 1.0, 'chute': 2.0, 'down': 1.0, 'by': 1.0, 'piston': 2.0, 'flip': 1.0, 'and': 2.0, 'yes': 1.0, 'break': 1.0, 'occurance': 1.0, 'bags': 2.0, 'slide': 1.0, 'that': 1.0, 'fancy': 1.0, 'into': 1.0, 'comparing': 1.0, 'bag': 2.0, 'to': 5.0, 'per': 1.0, 'far': 1.0}
Word element => {'cutting': 1.0, 'twisting': 1.0, 'no': 3.0, 'great': 1.0, 'bags': 1.0, 'used': 1.0, 'special': 1.0, 'not': 2.0, 'have': 1.0, 'out': 1.0, 'third': 1.0, 'and': 3.0, 'blades': 1.0, 'each': 1.0, 'has': 3.0, 'buying': 1.0, 'with': 2.0, 'wish': 1.0, 'this': 3.0, 'children': 1.0, 'it': 1.0, 'problem': 1.0, 'tried': 1.0, 'old': 1.0, 'of': 1.0, 'been': 3.0, 'eating': 1.0, 'us': 1.0, 'd': 1.0, 'm': 1.0, 'for': 1.0, 'the': 3.0, 'went': 1.0, 'solids': 1.0, 'fantastic': 1.0, 'i': 1.0, 'two': 2.0, 'pail': 1.0, 'a': 3.0, 'we': 3.0, 'time': 1.0, 'so': 1.0, 'diaper': 4.0, 'glad': 1.0, 'through': 1.0, 'far': 1.0, 'genie': 1.0, 'champ': 1.0, 'proven': 1.0, 'our': 3.0, 'to': 2.0, 'now': 1.0, 'be': 1.0, 'wear': 1.0, 'better': 1.0, 'than': 1.0, 'first': 2.0, 'genies': 1.0, 'baby': 1.0, 'is': 1.0, '7': 1.0, 'months': 1.0, 'odors': 1.0}
Word element => {'currently': 1.0, 'bottom': 1.0, 'managing': 1.0, 'person': 1.0, 'planet': 1.0, 'preserve': 1.0, 'help': 1.0, 'in': 1.0, 'part': 1.0, 'realizing': 1.0, 'contraption': 1.0, 'of': 1.0, 'reducing': 1.0, 'wonderful': 1.0, 'about': 1.0, 'so': 1.0, 'realize': 1.0, 'seem': 1.0, 'whose': 1.0, 'few': 1.0, 'little': 1.0, 'very': 1.0, 'contaminate': 1.0, 'many': 1.0, 'people': 2.0, 'take': 1.0, 'fabulous': 1.0, 'more': 1.0, 'is': 4.0, 'put': 1.0, 'your': 1.0, 'on': 1.0, 'factor': 1.0, 'i': 1.0, 'diapers': 1.0, 'champ': 1.0, 'precious': 1.0, 'it': 3.0, 'landfills': 1.0, 'reduced': 1.0, 'first': 1.0, 'hear': 1.0, 'groundwater': 1.0, 'when': 1.0, 'bacteria': 1.0, 'you': 4.0, 'without': 1.0, 'the': 7.0, 'diaper': 1.0, 'our': 1.0, 'soils': 1.0, 'as': 2.0, 'to': 4.0, 'all': 1.0, 'poop': 1.0, 'do': 1.0, 'much': 1.0, 'empty': 1.0, 'that': 3.0, 'into': 3.0, 'using': 1.0, 'which': 1.0, 'viruses': 1.0, 'can': 2.0, 'smell': 2.0, 'lavatory': 1.0, 'filter': 1.0, 'conscientious': 1.0, 'disconcerting': 1.0, 'what': 1.0, 'are': 4.0, 'for': 1.0, 'supposed': 1.0, 'be': 2.0, 'this': 3.0, 'doing': 1.0, 'trouble': 1.0, 'feces': 1.0, 'carry': 1.0, 'please': 1.0, 'should': 1.0, 'posting': 1.0, 'not': 1.0, 'power': 1.0, 'because': 1.0, 'pot': 1.0, 'go': 1.0, 'they': 2.0, 'greatly': 1.0, 'and': 6.0, 'incorrectly': 1.0, 'intestinal': 1.0}
Word element => {'around': 1.0, 'any': 1.0, 't': 1.0, 'isn': 1.0, 'work': 1.0, 'are': 1.0, 'bag': 2.0, 'pack': 1.0, 'nursery': 1.0, 'purchases': 1.0, 'one': 3.0, 'for': 2.0, 'product': 1.0, 'where': 1.0, 'needed': 1.0, 'really': 3.0, 'and': 6.0, 'play': 1.0, 'well': 1.0, 'i': 3.0, 'because': 1.0, 'that': 4.0, 'into': 2.0, 'changing': 1.0, 'wondered': 1.0, 'bassinet': 1.0, 'to': 3.0, 'all': 1.0, 'champ': 4.0, 'seconds': 1.0, 'less': 1.0, 'genie': 2.0, 'clean': 1.0, 'integrated': 1.0, 'bjorn': 1.0, 'in': 2.0, 'baby': 3.0, 'dirty': 1.0, 'what': 2.0, 'sealing': 1.0, 'hesitated': 1.0, 'use': 2.0, 'added': 1.0, 'a': 6.0, 's': 1.0, 'on': 1.0, 'comparison': 1.0, 'can': 1.0, 'flat': 1.0, 'have': 1.0, 'of': 2.0, 'the': 17.0, 'turns': 1.0, 'graco': 1.0, '3': 1.0, 'fluerville': 1.0, 'updatei': 1.0, 'time': 1.0, 'smelly': 1.0, 'odor': 1.0, 'smell': 2.0, 'edge': 1.0, 'friend': 1.0, 'than': 1.0, 'vie': 1.0, 'free': 1.0, 'purchase': 1.0, 'great': 1.0, 'eminating': 1.0, 'found': 1.0, 'easy': 2.0, 'economical': 1.0, 'best': 2.0, 'effective': 1.0, 'we': 2.0, 'absolutly': 2.0, 'knew': 1.0, 'loved': 1.0, 'is': 4.0, 'at': 1.0, 'handed': 1.0, 'house': 1.0, 'pad': 1.0, 'reinforced': 1.0, 'bulk': 1.0, 'there': 3.0, 'no': 1.0, 'tie': 1.0, 'this': 1.0, 'chanp': 1.0, 'was': 2.0, 'genieplus': 1.0, 'difficult': 1.0, 'made': 1.0, 'which': 1.0, 'vital': 1.0, 'garbage': 1.0, 'turn': 1.0, 'if': 1.0, 'you': 1.0, 'useing': 1.0, 'little': 1.0, 'deffinite': 1.0, 'fabulous': 1.0, 'from': 1.0, 'diaper': 7.0, 'bags': 1.0, 'luke': 1.0, 'quick': 1.0, 'ties': 1.0}
Word element => {'that': 1.0, 'once': 1.0, 'was': 1.0, 'it': 1.0, 'empty': 1.0, 'did': 1.0, 'poopies': 1.0, 'he': 1.0, 'how': 1.0, 'slider': 1.0, 'caught': 1.0, 'after': 1.0, 'sometimes': 1.0, 'wipe': 1.0, 'before': 1.0, 'in': 2.0, 'wipes': 1.0, 'used': 1.0, 'helpful': 1.0, 'often': 1.0, 'another': 1.0, 'using': 1.0, 'brilliant': 1.0, 'odor': 2.0, 'any': 1.0, 'to': 5.0, 'otherwise': 1.0, 'i': 1.0, 'operate': 1.0, 'the': 13.0, 'diaper': 6.0, 'but': 1.0, '2': 1.0, 'find': 1.0, 'leave': 1.0, 'have': 3.0, '0': 1.0, 'wk': 2.0, 'this': 1.0, 'with': 1.0, 'will': 3.0, 'folding': 2.0, 'get': 1.0, 'easy': 1.0, 'for': 2.0, 'product': 1.0, 'months': 1.0, 'one': 2.0, 'bought': 1.0, 'floor': 1.0, 'and': 3.0, 'away': 1.0, 'up': 3.0, 'pail': 2.0, 'tabs': 1.0, '3': 1.0, 'put': 1.0, 'on': 2.0, 'keep': 2.0, 'main': 1.0, 'twice': 1.0, 'help': 1.0, 'near': 1.0, 'crib': 1.0, 'diapers': 2.0, 'didn': 1.0, 'when': 1.0, 'you': 1.0, 'folded': 1.0, 'idea': 2.0, 'run': 1.0, 'sticky': 1.0, 'out': 1.0, 'a': 1.0, 't': 1.0, 'we': 2.0, 'stairs': 1.0, 'just': 1.0, 'throw': 1.0}
Word element => {'easy': 1.0, 'very': 1.0, 'bags': 2.0, 'is': 1.0, 'really': 1.0, 'regular': 1.0, 'decided': 1.0, 'didn': 1.0, 'it': 3.0, 'this': 1.0, 'with': 1.0, 'that': 1.0, 'doesn': 1.0, 'fact': 1.0, 'my': 1.0, 'the': 1.0, 'diaper': 1.0, 'i': 1.0, 'old': 1.0, 'weeks': 1.0, 'now': 1.0, 'register': 1.0, 'for': 1.0, 'happy': 1.0, 'pail': 1.0, 'mainly': 1.0, 'of': 1.0, '6': 1.0, 'baby': 1.0, 'special': 1.0, 'because': 1.0, 'require': 1.0, 'almost': 1.0, 'and': 2.0, 'smell': 1.0, 'are': 1.0, 'you': 1.0, 'kitchen': 1.0, 't': 2.0, 'we': 1.0, 's': 1.0, 'can': 1.0, 'use': 2.0, 'garbage': 1.0, 'nursery': 1.0, 'at': 1.0, 'our': 1.0, 'to': 2.0, 'all': 1.0}
Word element => {'will': 1.0, 'garbage': 1.0, 'buy': 1.0, 'with': 1.0, 'up': 1.0, 'have': 1.0, 'price': 1.0, 'worth': 2.0, 'not': 2.0, 'me': 1.0, 'is': 3.0, 'time': 1.0, 'empty': 1.0, 'only': 1.0, 'enough': 1.0, 'what': 1.0, 'had': 1.0, 'just': 2.0, 'by': 1.0, 'refills': 2.0, 'put': 1.0, 'on': 1.0, 'spend': 1.0, 'as': 2.0, 'to': 5.0, 'if': 1.0, '10': 1.0, 'want': 1.0, 'while': 1.0, 'well': 2.0, 'infant': 1.0, 'escapes': 1.0, 'was': 3.0, 'difference': 1.0, 'smelled': 1.0, 'it': 7.0, 'this': 1.0, 'my': 1.0, 'however': 1.0, 'went': 1.0, 'place': 1.0, 'the': 10.0, 'diaper': 2.0, 'regular': 1.0, 'believed': 1.0, 'i': 4.0, 'whole': 1.0, 'champ': 1.0, 'genie': 2.0, 'reviews': 1.0, 'worked': 1.0, 'very': 1.0, 'still': 2.0, 'product': 1.0, 'months': 1.0, 'bought': 2.0, 'you': 1.0, 'when': 3.0, 'of': 2.0, 'once': 1.0, 'a': 3.0, 't': 1.0, 'we': 4.0, 'finally': 1.0, 'an': 1.0, 'solid': 1.0, 'smell': 3.0, 'baby': 1.0, 'started': 1.0, 'because': 1.0, 'quot': 2.0, 'work': 1.0, 'can': 1.0, 'money': 1.0, 'but': 1.0, 'food': 1.0, 'pretty': 1.0, 'bad': 1.0, 'each': 1.0, 'room': 1.0, 'morning': 1.0, 'breastfeeding': 1.0, 'into': 1.0, 'his': 1.0, 'like': 1.0, 'and': 2.0, 'resisted': 1.0, 'diapers': 1.0, 'didn': 1.0}
Word element => {'for': 1.0, 'this': 1.0, 'all': 1.0, 'worry': 1.0, 'buying': 1.0, 'do': 1.0, 'if': 1.0, 'you': 2.0, 'the': 2.0, 'is': 1.0, 'time': 1.0, 'room': 1.0, 'bad': 1.0, 'want': 2.0, 'special': 1.0, 'dont': 1.0, 'baby': 1.0, 'bags': 1.0, 'and': 1.0, 'product': 1.0, 'to': 2.0, 'not': 1.0, 'smell': 1.0}
Word element => {'hand': 1.0, 'bagsone': 1.0, 'regular': 1.0, 'over': 1.0, 'topple': 1.0, 't': 1.0, 'use': 1.0, 'garbage': 1.0, 'easy': 1.0, 'to': 1.0, 'change': 1.0, 'bags': 2.0, 'stable': 1.0, 'when': 1.0, 'changing': 1.0, 'others': 1.0, 'are': 1.0, 'not': 1.0, 'won': 1.0}
Word element => {'easy': 1.0, 'how': 1.0, 'like': 1.0, 'on': 1.0, 'has': 1.0, 'cartridges': 1.0, 'expensive': 1.0, 'odor': 1.0, 'to': 2.0, 'have': 1.0, 'far': 1.0, 'dream': 1.0, 'of': 1.0, 'pale': 1.0, 'love': 1.0, 'this': 1.0, 'wouldn': 1.0, 'it': 3.0, 'the': 1.0, 't': 1.0, 'diaper': 1.0, 'great': 2.0, 'containing': 1.0, 'can': 1.0, 'buy': 1.0, 'i': 2.0, 'done': 1.0, 'and': 3.0, 'trashbags': 1.0, 'anything': 1.0, 'regular': 1.0, 'is': 2.0, 'so': 1.0, 'else': 1.0, 'not': 1.0, 'that': 1.0, 'trying': 1.0, 'you': 1.0, 'use': 2.0}
Word element => {'market': 1.0, 'on': 1.0, 'best': 1.0, 'well': 1.0, 'beat': 1.0, 't': 1.0, 'even': 1.0, 'diapers': 1.0, 'stinky': 1.0, 'virtually': 1.0, 'the': 3.0, 'diaper': 1.0, 'that': 2.0, 'empty': 1.0, 'was': 1.0, 'as': 1.0, 'to': 1.0, 'purchasing': 1.0, 'genie': 1.0, 'thinking': 1.0, 'i': 4.0, 'my': 3.0, 'worth': 1.0, 'from': 1.0, 'bags': 2.0, 'every': 2.0, 'mother': 1.0, 'then': 1.0, 'purchased': 1.0, 'instead': 1.0, 'use': 1.0, 'and': 2.0, 'single': 1.0, 'registered': 1.0, 'in': 1.0, 'famous': 1.0, 'for': 2.0, 'one': 3.0, 'upstairs': 1.0, 'so': 2.0, 'after': 1.0, 'penny': 1.0, 'thankful': 1.0, 'some': 2.0, 'no': 2.0, 'orginally': 1.0, 'law': 1.0, 'doing': 1.0, 'this': 1.0, 'research': 1.0, 'of': 2.0, 'trash': 1.0, 'her': 1.0, 'smell': 1.0, 'own': 1.0, 'special': 1.0, 'need': 1.0, 'needed': 1.0, 'but': 1.0, 'can': 2.0, 'definitely': 1.0, 'day': 1.0, 'kitchen': 1.0, 'am': 1.0, 'you': 1.0, 'when': 1.0}
Word element => {'highly': 1.0, 'yet': 1.0, 'try': 1.0, 'help': 1.0, 'bottom': 1.0, 'heard': 1.0, 'there': 1.0, 'get': 1.0, 'able': 1.0, 'anyone': 1.0, 'be': 1.0, 'more': 1.0, 'level': 1.0, 'shake': 1.0, 'some': 2.0, 'alittle': 1.0, 'getting': 1.0, 'would': 1.0, 've': 1.0, 'time': 1.0, 'at': 2.0, 'months': 1.0, 'about': 1.0, 'born': 1.0, 'recommend': 1.0, 'was': 2.0, 'baby': 1.0, 'litter': 1.0, 'kitty': 1.0, 'still': 1.0, 'diaper': 2.0, 'genie': 1.0, 'haven': 2.0, 'daughter': 1.0, 'ordors': 1.0, 'eliminate': 1.0, 'room': 1.0, 'her': 2.0, 'i': 9.0, 'put': 1.0, 'except': 1.0, 'think': 1.0, 'great': 1.0, 'the': 6.0, 'she': 2.0, 'it': 6.0, 'full': 1.0, 'found': 1.0, 'this': 4.0, 'when': 3.0, 'someone': 1.0, 'you': 3.0, 'diapers': 1.0, 'got': 1.0, 'use': 1.0, 'odors': 1.0, 'smelled': 1.0, 'had': 3.0, 'coming': 1.0, 'have': 2.0, 'to': 6.0, 'any': 1.0, 'and': 5.0, 'will': 1.0, 'also': 2.0, 'for': 2.0, 'love': 1.0, 'just': 3.0, 'know': 1.0, 'open': 1.0, 'up': 1.0, 'of': 3.0, 'people': 1.0, 'take': 1.0, 'bag': 2.0, 'out': 2.0, 'starts': 1.0, 'my': 1.0, 'fact': 1.0, 'that': 5.0, 'but': 1.0, '2': 1.0, 'can': 1.0, 'in': 3.0, 'regular': 1.0, 'from': 2.0, 'bags': 1.0, 'we': 1.0, 't': 2.0, 's': 1.0, 'a': 2.0}
Word element => {'hands': 1.0, 'two': 1.0, 'need': 1.0, 't': 1.0, 'genie': 1.0, 'than': 1.0, 'easier': 1.0, 'before': 1.0, 'don': 1.0, 'opening': 1.0, 'shutting': 1.0, 'plastic': 1.0, 'smelly': 1.0, 'odor': 1.0, 'a': 5.0, 'wrap': 1.0, 's': 3.0, 'advice': 2.0, 'on': 2.0, 'out': 1.0, 'quot': 2.0, 'best': 1.0, 'from': 1.0, 'baby': 2.0, 'instead': 1.0, 'm': 1.0, 'in': 4.0, 'one': 1.0, 'ones': 1.0, 'broken': 1.0, 'diaper': 3.0, 'like': 1.0, 'bag': 1.0, 'using': 1.0, 'otherwise': 1.0, 'say': 1.0, 'is': 2.0, 'room': 1.0, 'comes': 1.0, 'holds': 1.0, 'more': 1.0, 'smells': 1.0, 'when': 1.0, 'you': 1.0, 'loosens': 1.0, 'think': 1.0, 'exception': 1.0, 'definitely': 1.0, 'now': 1.0, 'free': 1.0, 'away': 1.0, 'weeks': 1.0, 'had': 3.0, 'hoping': 1.0, 'to': 7.0, 'word': 1.0, 'really': 2.0, 'stinky': 1.0, 'have': 2.0, 'few': 1.0, 'with': 2.0, 'it': 13.0, 'not': 1.0, 'seep': 1.0, 'will': 1.0, 'also': 1.0, 'diapers': 4.0, 'champ': 1.0, 'the': 8.0, 'of': 3.0, 'lysol': 1.0, 'bathroom': 1.0, 'another': 1.0, 'my': 2.0, 'i': 10.0, 'putting': 1.0, 'be': 1.0, 'keep': 1.0, 'them': 1.0, 'always': 1.0, 'next': 1.0, 'because': 1.0, 'that': 2.0, 'spray': 1.0, 'hard': 1.0, 'open': 1.0, 'new': 1.0, 've': 3.0, 'several': 1.0, 'been': 1.0, 'nails': 1.0, 'only': 1.0, 'put': 2.0, 'much': 1.0, 'for': 2.0, 'toddler': 1.0, 'until': 1.0, 'throw': 1.0, 'great': 1.0, 'and': 3.0, 'latch': 1.0, 'up': 1.0, 'bit': 1.0, 'can': 2.0, 'so': 1.0}
Word element => {'bags': 1.0, 'doesn': 1.0, 'ball': 1.0, 'tight': 1.0, 'up': 1.0, 'them': 1.0, 'open': 1.0, 'wad': 1.0, 'change': 1.0, 'can': 1.0, 'since': 1.0, 'great': 1.0, 'except': 1.0, 'think': 1.0, 'your': 1.0, 'use': 1.0, 'when': 1.0, 'you': 4.0, 'pail': 3.0, 'm': 1.0, 'closet': 1.0, 'is': 2.0, 'cover': 1.0, 'ripping': 1.0, 'takes': 1.0, 'garbage': 1.0, 'screwdriver': 1.0, 'with': 1.0, 'if': 2.0, 'apart': 1.0, 'take': 1.0, 'had': 1.0, 'unlike': 1.0, 'out': 1.0, 'smell': 1.0, 'other': 1.0, 'mine': 1.0, 'keeps': 1.0, 'are': 3.0, 'this': 2.0, 'full': 1.0, 'champ': 1.0, 'used': 1.0, 'not': 2.0, 'regular': 2.0, 'said': 1.0, 'in': 3.0, 'also': 1.0, 'stuck': 1.0, 'for': 2.0, 'diaper': 4.0, 'the': 6.0, 'users': 1.0, 'diapers': 2.0, 'got': 1.0, 'cloth': 4.0, 'disposables': 1.0, 'i': 3.0, 'and': 6.0, 'now': 1.0, 'attracked': 1.0, 'covers': 1.0, 'it': 8.0, 'were': 2.0, 'into': 1.0, 'avoid': 1.0, 'that': 1.0, 'liner': 1.0, 'be': 2.0, 'laundry': 1.0, 'our': 1.0, 'to': 6.0, 'pails': 1.0, 'would': 1.0, 'disapointed': 1.0, 'so': 1.0, 'does': 1.0, 'because': 1.0, 'find': 1.0, 'planning': 1.0, 'mechanism': 1.0, 'using': 2.0, 'hold': 1.0, 'load': 1.0, 'wipes': 1.0, 't': 1.0, 'we': 2.0, 'could': 1.0, 'a': 5.0, 'stink': 1.0, 'of': 2.0, 'some': 1.0}
Word element => {'recommend': 1.0, 'highly': 1.0, 'overall': 1.0, 'cleaning': 1.0, 'will': 1.0, 'still': 1.0, 'because': 1.0, 'not': 1.0, 't': 1.0, 'the': 5.0, 'diaper': 2.0, 'mainly': 1.0, 'week': 1.0, 'after': 1.0, 'reviews': 1.0, 'are': 1.0, 'it': 2.0, 'comparing': 1.0, 'with': 3.0, 'this': 1.0, 'went': 1.0, 'my': 1.0, 'and': 3.0, 'spray': 1.0, 'diapers': 1.0, 'didn': 1.0, 'require': 2.0, 'that': 1.0, 'changing': 1.0, 'love': 1.0, 'expensive': 1.0, 'reading': 1.0, 'trash': 1.0, 'lysol': 1.0, 'champ': 1.0, 'genie': 1.0, 'i': 5.0, 'refills': 1.0, 'use': 1.0, 'own': 1.0, 'bags': 3.0, '2': 1.0, 'can': 1.0, 'change': 1.0, 'about': 1.0, 'any': 1.0, 'have': 1.0, 'stinky': 1.0, 'noticed': 1.0, 'times': 1.0, 'smells': 1.0, 'when': 1.0, 'hello': 1.0}
Word element => {'others': 1.0, 'don': 1.0, 'bags': 1.0, 'own': 1.0, 'much': 1.0, 'to': 1.0, 'my': 1.0, 'waste': 1.0, 'uses': 1.0, 'geanie': 1.0, 'is': 1.0, 'mastered': 1.0, 'fought': 1.0, 't': 1.0, 'the': 3.0, 'diaper': 2.0, 'son': 1.0, 'year': 1.0, 'throughout': 1.0, 'it': 1.0, 'first': 1.0, 'with': 2.0, 'this': 1.0, 'champ': 1.0, 'love': 1.0, 'old': 1.0, 'i': 2.0, 'so': 1.0, 'three': 1.0, 'easier': 1.0, 'use': 1.0, 'time': 1.0, 'your': 1.0, 'has': 1.0}
Word element => {'recommend': 1.0, 'leaking': 1.0, 'unwanted': 1.0, 'decreases': 1.0, 'stuck': 1.0, 'tunnel': 1.0, 'though': 1.0, 'needed': 1.0, 'luck': 1.0, 'then': 1.0, 'out': 2.0, 'chance': 1.0, 'be': 1.0, 'one': 2.0, '5': 1.0, 'about': 1.0, 'from': 1.0, 'bags': 2.0, 'ct': 1.0, 'buying': 1.0, 'you': 1.0, 'good': 1.0, 'load': 1.0, 'more': 1.0, 'is': 1.0, 'son': 1.0, 'fresh': 1.0, 'it': 6.0, 'sister': 1.0, 'for': 2.0, 'garbage': 1.0, 'thank': 1.0, 'i': 2.0, 'received': 1.0, 'champ': 1.0, 'never': 1.0, 'the': 5.0, 'baby': 1.0, 'change': 1.0, 'can': 1.0, 'money': 1.0, 'and': 4.0, 'continue': 1.0, 'much': 1.0, 'do': 1.0, 'to': 4.0, 'gal': 1.0, 'almost': 1.0, 'in': 1.0, 'pail': 1.0, 'know': 1.0, 'like': 1.0, 'owning': 1.0, 'sooo': 1.0, 'a': 1.0, 'we': 2.0, 'would': 2.0, 'drop': 1.0, 'basic': 1.0, 'oders': 1.0, 'suggestion': 1.0, 'maintenance': 1.0, 'getting': 1.0, 'ofen': 1.0, 'cleaning': 1.0, 'highly': 1.0, 'really': 1.0, 'every': 1.0, '150': 1.0, 'so': 1.0, 'helps': 1.0, 'spraying': 1.0, 'of': 1.0, 'shower': 1.0, 'once': 1.0, 'lysol': 1.0, '13': 1.0, 'at': 1.0, 'keep': 2.0, 'often': 1.0, 'my': 4.0, 'save': 1.0}
Word element => {'out': 1.0, 'take': 1.0, 'guys': 1.0, 'needing': 1.0, 'no': 1.0, 'having': 2.0, 'is': 2.0, 'idea': 1.0, 'excellent': 1.0, 'lid': 1.0, 'daily': 1.0, 'this': 1.0, 'extremely': 1.0, 'helps': 1.0, 'an': 1.0, 'diapers': 1.0, 'easy': 1.0, 'dispose': 1.0, 'use': 1.0, 'trash': 1.0, 'of': 2.0, 'there': 1.0, 'to': 3.0, 'odor': 1.0, 'from': 1.0, 'and': 1.0, 'for': 1.0, 'one': 1.0, 'the': 3.0, 'these': 1.0}
Word element => {'from': 1.0, 'any': 2.0, 'and': 2.0, 'have': 2.0, 'cartridges': 1.0, 'bag': 1.0, 'never': 2.0, 'an': 1.0, 'easy': 1.0, 'use': 2.0, 'garbage': 1.0, 'so': 1.0, 'you': 2.0, 'change': 1.0, 'is': 1.0, 'it': 3.0, 'escape': 1.0, 'can': 1.0, 'love': 1.0, 'i': 1.0, 'to': 2.0, 'had': 1.0, 'ordinary': 1.0, 'we': 1.0, 'smell': 1.0}
Word element => {'keys': 1.0, 'good': 1.0, 'which': 1.0, 'something': 1.0, 'that': 1.0, 'amusing': 1.0, 'find': 1.0, 'they': 2.0, 'ones': 1.0, 'little': 1.0, 'is': 1.0, 'fascinates': 1.0, 'bad': 1.0, 'system': 1.0, 'handle': 1.0, 'long': 1.0, 'i': 1.0, 'for': 1.0, 'love': 1.0, 'regular': 1.0, 'in': 2.0, 'diaper': 2.0, 'the': 2.0, 'when': 2.0, 'you': 3.0, 'flip': 1.0, 'mon': 1.0, 'c': 1.0, 'bag': 1.0, 'it': 7.0, 'older': 1.0, 'children': 1.0, 'and': 3.0, 'too': 1.0, 'pail': 1.0, 'start': 1.0, 'yea': 1.0, 'basis': 1.0, 'let': 1.0, 'or': 1.0, 'sit': 1.0, 'have': 1.0, 'if': 2.0, 'watch': 1.0, 'diapers': 2.0, 'will': 1.0, 'can': 1.0, 'change': 1.0, 'but': 1.0, 'your': 1.0, 'put': 1.0, 'grows': 1.0, 'on': 1.0, 's': 2.0, 't': 1.0, 'a': 3.0, 'its': 1.0, 'bucket': 1.0, 'this': 1.0, 'full': 1.0, 'stink': 1.0, 'of': 1.0, 'to': 1.0, 'as': 1.0, 'don': 1.0, 'poopy': 2.0, 'child': 1.0, 'disappears': 1.0, 'out': 1.0}
Word element => {'independently': 1.0, 'helping': 1.0, 'old': 1.0, 'year': 1.0, 'hand': 1.0, 'others': 1.0, 'than': 1.0, 'better': 1.0, 'not': 1.0, 'if': 1.0, 'well': 1.0, 'can': 1.0, '2': 1.0, 'but': 1.0, 'away': 1.0, 'doesn': 1.0, 'first': 1.0, 'with': 1.0, 'it': 7.0, 'just': 2.0, 'odors': 2.0, 'have': 2.0, 'years': 1.0, 'child': 1.0, 'don': 1.0, 'operate': 1.0, 'had': 2.0, 'as': 1.0, 'to': 3.0, 'this': 1.0, 'wish': 1.0, 'diaper': 4.0, 'the': 5.0, 'great': 1.0, 'is': 4.0, 'regular': 1.0, 'my': 2.0, 'tried': 2.0, 'champ': 2.0, 'genie': 1.0, 'loves': 1.0, 'totally': 1.0, 'that': 2.0, 'pail': 1.0, 'out': 2.0, 'third': 1.0, 'i': 5.0, '4': 1.0, 'one': 2.0, 'very': 2.0, 'easy': 2.0, 'you': 2.0, 'special': 1.0, 'liners': 1.0, 'or': 1.0, 'use': 3.0, 'refills': 1.0, 't': 3.0, 'ago': 1.0, 'a': 1.0, 'fine': 1.0, 'garbage': 1.0, 'need': 2.0, 'bag': 1.0, 'only': 1.0, 'works': 2.0, 'and': 2.0, 'didn': 1.0, 'keep': 2.0}
Word element => {'enough': 1.0, 'long': 1.0, 'mine': 1.0, 'have': 1.0, 'had': 2.0, 'few': 1.0, 'get': 1.0, 'will': 2.0, 'it': 1.0, 'if': 1.0, 'pale': 1.0, 'side': 1.0, 'out': 1.0, 'be': 1.0, 'did': 1.0, 'i': 3.0, 'seal': 2.0, 'reviews': 2.0, 'are': 1.0, 'diaper': 1.0, 'great': 1.0, 'negative': 1.0, 'of': 2.0, 'comment': 1.0, 'like': 1.0, 'reading': 1.0, 'there': 1.0, 'this': 1.0, 'trash': 1.0, 'is': 2.0, 'many': 2.0, 'you': 1.0, 'folded': 1.0, 'probaly': 1.0, 'not': 4.0, 'retaing': 1.0, 'for': 1.0, 'disposal': 1.0, 'individuals': 1.0, 'system': 1.0, 'should': 1.0, 'can': 2.0, 'but': 1.0, 'blue': 1.0, 'on': 1.0, 'put': 1.0, 'think': 1.0, 'properly': 1.0, 'from': 1.0, 'ring': 2.0, 'bother': 1.0, 'the': 10.0, 'place': 2.0, 'any': 1.0, 'to': 1.0, 'read': 1.0, 'retaining': 1.0, 'instructions': 1.0, 'falure': 1.0, 'over': 1.0, 'bag': 3.0, 'goes': 1.0, 'a': 4.0, 'hole': 1.0, 'regular': 1.0, 'in': 3.0, 'through': 1.0, 'then': 1.0, 'gets': 1.0, 'and': 3.0, 'smell': 1.0, 'locked': 1.0, 'who': 2.0, 'at': 1.0, 'no': 1.0, 'point': 1.0}
Word element => {'be': 1.0, 'stick': 1.0, 'enough': 1.0, 'am': 2.0, 'like': 1.0, 'hand': 1.0, 'have': 4.0, 'that': 4.0, 'one': 2.0, 'visiting': 1.0, 'until': 2.0, 'on': 1.0, 'your': 1.0, 'except': 1.0, 'moments': 1.0, 'certain': 1.0, 'only': 1.0, 'put': 1.0, 'much': 1.0, 'and': 4.0, 'know': 1.0, 'sold': 1.0, 'with': 1.0, 'it': 3.0, 'to': 3.0, 'now': 2.0, 'was': 1.0, 'had': 3.0, 'when': 2.0, 'what': 2.0, 'hooked': 1.0, 'dirty': 1.0, 'glad': 1.0, 'more': 1.0, 'is': 2.0, 'trash': 1.0, 'the': 14.0, 'brother': 1.0, 'for': 1.0, 'read': 1.0, 'heard': 1.0, 'my': 1.0, 'me': 1.0, 'low': 1.0, 'even': 1.0, 'sausage': 1.0, 'didn': 1.0, 'both': 1.0, 'decided': 1.0, 'used': 4.0, 'about': 2.0, 'whole': 1.0, 'thing': 1.0, 'no': 1.0, 'i': 11.0, 'genie': 2.0, 'champ': 4.0, 'never': 1.0, 'lid': 3.0, 'disposals': 1.0, 'keep': 1.0, 'did': 1.0, 'but': 2.0, 'so': 1.0, 'can': 1.0, 'up': 1.0, 'change': 1.0, 'fine': 1.0, 'reviews': 1.0, 'then': 2.0, 't': 1.0, 'a': 3.0, 's': 1.0, 'yuck': 1.0, 'plus': 1.0, 'pain': 1.0, 'many': 1.0, 'baby': 1.0, 'm': 1.0, 'in': 4.0, 'who': 1.0, 'regular': 1.0, 'll': 1.0, 'easier': 1.0, 'flip': 1.0, 'from': 1.0, 'diaper': 10.0, 'bags': 1.0, 'side': 1.0, 'other': 1.0, 'very': 1.0, 'twist': 1.0, 'being': 1.0, 'you': 5.0, 'push': 1.0, 'able': 1.0, 'use': 1.0, 'there': 1.0, 'smell': 1.0, 'brief': 1.0, 'bag': 1.0, 'just': 1.0}
Word element => {'good': 1.0, 'which': 1.0, 'than': 1.0, 'in': 1.0, 'all': 2.0, 'thanks': 1.0, 'genie': 2.0, 'pop': 1.0, 'then': 1.0, 'five': 1.0, 'pain': 1.0, 'what': 1.0, 'when': 3.0, 'bucks': 1.0, 'you': 2.0, 'hurt': 1.0, 'stench': 1.0, 'would': 1.0, 'there': 1.0, 'bag': 2.0, 'i': 11.0, 'though': 1.0, 'often': 1.0, 'lid': 2.0, 'more': 1.0, 't': 2.0, 's': 2.0, 'a': 4.0, 'go': 1.0, 'if': 1.0, 'certainly': 1.0, 'face': 1.0, 'but': 3.0, 'change': 1.0, 'it': 7.0, 'this': 2.0, 'can': 1.0, 'so': 2.0, 'spray': 1.0, 'cannot': 1.0, 'spend': 1.0, 'garbage': 1.0, 'hold': 1.0, 'like': 2.0, 'trying': 1.0, 'designed': 1.0, 'free': 1.0, 'not': 3.0, 'my': 4.0, 'me': 2.0, 'champ': 1.0, 'human': 1.0, 'emptied': 1.0, 'will': 1.0, 'also': 2.0, 'am': 1.0, 'lazy': 1.0, 'mine': 1.0, 'alas': 1.0, 'step': 1.0, 'no': 1.0, 'let': 1.0, 'taller': 1.0, 'be': 2.0, 'feces': 1.0, 'expect': 1.0, 'fault': 2.0, 'odor': 1.0, 'that': 4.0, 'to': 10.0, 'bye': 2.0, 'works': 1.0, 'some': 1.0, 'lysol': 1.0, 'for': 4.0, 'product': 1.0, 'just': 1.0, 'remember': 1.0, 'have': 5.0, 'flip': 2.0, 'really': 2.0, 'first': 1.0, 'got': 1.0, 'the': 13.0, 'of': 1.0, 'finger': 1.0, 'thing': 1.0, 'own': 1.0, 'did': 1.0, 'on': 3.0, 'much': 1.0, 'do': 2.0, 'floor': 1.0, 'unit': 1.0, 'don': 1.0, 'isn': 1.0, 'opening': 1.0, 'stabilizer': 1.0, 'ring': 1.0, 'is': 3.0, 'handle': 1.0, 'at': 1.0, 'love': 1.0, 'bottom': 1.0, 'and': 2.0, 'specially': 1.0, 'one': 1.0, 'too': 1.0, 'was': 1.0, 'opens': 1.0, 'with': 1.0, 'ease': 1.0, 'buy': 2.0, 'over': 1.0, 'open': 1.0, 'special': 1.0, 'bend': 1.0, 'diaper': 2.0, 'bags': 2.0}
Word element => {'recommend': 1.0, 'totally': 1.0, 'child': 1.0, 'first': 1.0, 'with': 1.0, 'tell': 1.0, 'item': 1.0, 'get': 1.0, 'down': 1.0, 'push': 1.0, 'have': 2.0, 'besides': 1.0, 'items': 1.0, 'other': 1.0, 'about': 1.0, 'thing': 1.0, 'nice': 1.0, 'so': 2.0, 'bigger': 1.0, 'want': 1.0, 'in': 2.0, 'regular': 1.0, 'brand': 1.0, 'wonderful': 1.0, 'use': 2.0, 'wants': 1.0, 'whatever': 1.0, 'liked': 1.0, 'one': 1.0, 'love': 1.0, 'for': 2.0, 'you': 5.0, 'put': 1.0, 'on': 1.0, 'diaper': 5.0, 'trash': 1.0, 'is': 2.0, 'holds': 1.0, 'more': 1.0, 'the': 5.0, 'not': 1.0, 'just': 2.0, 'i': 3.0, 'smoush': 1.0, 'unlike': 1.0, 'buy': 1.0, 'does': 1.0, 'dont': 1.0, 'this': 1.0, 'it': 8.0, 'come': 1.0, 'he': 1.0, 'cause': 1.0, 'genie': 2.0, 'champ': 2.0, 'bags': 1.0, 'can': 2.0, 'money': 1.0, 'my': 2.0, 'save': 1.0, 'another': 2.0, 'and': 3.0, 'havent': 1.0, 'had': 1.0, 'husband': 1.0, 'as': 1.0, 'to': 3.0, 'a': 1.0, 'smell': 1.0, 'out': 1.0, 'of': 1.0, 'only': 1.0, 'much': 1.0, 'diapers': 1.0, 'den': 1.0}
Word element => {'price': 1.0, 'genie': 1.0, 'for': 1.0, 'diaper': 1.0, 'this': 1.0, 'item': 1.0, 'is': 2.0, 'you': 3.0, 'the': 2.0, 'it': 1.0, 'great': 2.0, 'can': 1.0, 'bags': 1.0, 'any': 1.0, 'want': 1.0, 'unlike': 1.0}
Word element => {'lysol': 1.0, 'good': 1.0, 'what': 1.0, 'bags': 1.0, 'constantly': 1.0, 'your': 1.0, 'but': 1.0, 'can': 1.0, 'that': 2.0, 'advantage': 1.0, 'only': 1.0, 'out': 1.0, 'down': 2.0, 'spraying': 1.0, 'there': 2.0, 'bring': 1.0, 'if': 2.0, 'pretty': 1.0, 'are': 2.0, 'the': 5.0, 'diaper': 2.0, 'after': 3.0, 'at': 1.0, 'two': 1.0, 'own': 1.0, 'smell': 1.0, 'not': 1.0, 'champ': 1.0, 'diapers': 1.0, 'handle': 1.0, 'have': 1.0, 'bad': 1.0, 'use': 2.0, 'all': 1.0, 'to': 4.0, 'and': 5.0, 'get': 1.0, 'more': 1.0, 'is': 4.0, 'does': 1.0, 'than': 1.0, 'a': 3.0, 'few': 2.0, 'air': 1.0, 'turn': 2.0, 'in': 1.0, 'stuck': 1.0, 'it': 7.0, 'this': 1.0, 'with': 1.0, 'difficult': 1.0, 'gets': 1.0, 'you': 4.0, 'contain': 1.0, 'times': 1.0, 'smells': 1.0, 'day': 1.0, 'pine': 1.0, 'or': 1.0, 'cleaning': 2.0, 'sol': 1.0, 'letting': 1.0}
Word element => {'way': 1.0, 'smell': 1.0, 'before': 1.0, 'sacks': 1.0, 'sturdy': 1.0, 'use': 1.0, 'parts': 1.0, 'into': 1.0, 'that': 2.0, 'very': 1.0, 'and': 2.0, 'break': 1.0, 'one': 1.0, 'love': 1.0, 'easy': 1.0, 'unlike': 1.0, 'best': 1.0, 'leading': 1.0, 'diaper': 3.0, 'great': 1.0, 'you': 1.0, 'a': 3.0, 's': 1.0, 'is': 3.0, 'can': 1.0, 'grocery': 1.0, 'plastic': 1.0, 'hand': 1.0, 'if': 1.0, 'champ': 2.0, 'diapers': 1.0, 'other': 1.0, 'brand': 1.0, 'it': 1.0, 'with': 1.0, 'does': 1.0, 'whatsoever': 1.0, 'the': 3.0, 'job': 1.0, 'pail': 1.0, 'blocking': 1.0, 'odors': 1.0, 'of': 1.0, 'compatible': 1.0, 'to': 2.0, 'all': 1.0, 'any': 1.0, 'depositing': 1.0, 'bag': 1.0, 'here': 1.0, 'tip': 1.0, 'no': 2.0, 'tie': 1.0, 'dirty': 1.0, 'in': 1.0}
Word element => {'house': 1.0, 'still': 1.0, 'is': 1.0, 'this': 1.0, 'later': 1.0, 'kids': 1.0, 'adding': 1.0, 'would': 2.0, 'mess': 1.0, 'something': 1.0, 'special': 1.0, 'open': 1.0, 'little': 1.0, 'size': 1.0, 'mouth': 1.0, 'than': 1.0, 'because': 1.0, 'better': 2.0, 'standard': 1.0, 'started': 1.0, 'squish': 1.0, 'baby': 1.0, 'making': 1.0, 'got': 1.0, 'cost': 2.0, 'fit': 3.0, 'for': 4.0, 'more': 2.0, 'my': 1.0, 'a': 5.0, 'sides': 1.0, 's': 1.0, 'we': 2.0, 'i': 3.0, 'well': 1.0, 'ten': 1.0, 'can': 1.0, 'so': 2.0, 'pull': 1.0, 'trash': 3.0, 'harder': 1.0, 'corner': 1.0, 'genie': 4.0, 'champ': 3.0, 'it': 6.0, 'diapers': 1.0, 'first': 2.0, 'born': 1.0, 'monthly': 1.0, 'old': 1.0, 'out': 5.0, 'the': 21.0, 'of': 3.0, '6': 1.0, 'worked': 1.0, 'pail': 1.0, 'to': 5.0, 'our': 3.0, 'purchased': 2.0, 'larger': 2.0, 'was': 3.0, 'bags': 2.0, 'diaper': 10.0, 'as': 1.0, 'horrible': 1.0, 'use': 1.0, 'months': 1.0, 'get': 1.0, 'up': 2.0, 'child': 1.0, 'with': 1.0, 'birth': 1.0, 'but': 1.0, 'pickup': 1.0, 'second': 1.0, 'refused': 1.0, 'in': 5.0, 'search': 1.0, 'not': 1.0, 'smelly': 1.0, 'garbage': 1.0, 'once': 1.0, 'room': 1.0, 'found': 1.0, 'one': 1.0, 'too': 1.0, 'and': 3.0, 'large': 1.0, 'top': 2.0, 'unit': 1.0, 'effective': 1.0, 'new': 1.0, 'wide': 1.0, 'uses': 1.0, 'sizes': 1.0, 'your': 1.0, 'on': 1.0, '3': 1.0, 'day': 1.0, 'bag': 1.0, 'tie': 1.0, 'throw': 1.0, 'performed': 1.0, 'years': 1.0}
Word element => {'second': 2.0, 'have': 1.0, 'are': 1.0, 'pull': 1.0, 'seal': 1.0, 'will': 1.0, 'so': 1.0, 'time': 1.0, 'after': 1.0, 'else': 1.0, 'or': 1.0, 'upcoming': 1.0, 'wipes': 2.0, 'throw': 1.0, 'not': 2.0, 'sure': 1.0, 'make': 1.0, 'however': 1.0, 'be': 1.0, 'want': 1.0, 'thing': 1.0, 'special': 1.0, 'and': 4.0, 'faithfully': 1.0, 'it': 1.0, 'stuck': 1.0, 'first': 1.0, 'much': 1.0, 'do': 1.0, 'only': 1.0, 'mechanism': 1.0, 'one': 2.0, 'months': 1.0, 'son': 2.0, 'ease': 1.0, 'day': 1.0, 'asked': 1.0, 'trash': 1.0, 'become': 1.0, 'i': 5.0, 'received': 1.0, 'use': 2.0, 'jammed': 1.0, 'flip': 1.0, 'every': 1.0, 'my': 6.0, 'purchase': 1.0, 'birth': 1.0, 'baby': 3.0, 'don': 1.0, 'to': 5.0, 'any': 1.0, 'expensive': 1.0, 'for': 4.0, 'love': 3.0, 'diaper': 3.0, 'careful': 1.0, 'the': 5.0, 'champ': 3.0, 'week': 1.0, 'at': 1.0, 'shower': 2.0, 'of': 3.0, 'once': 1.0, 'out': 1.0, 'loose': 1.0, 'convenience': 1.0, 'having': 2.0, 'regular': 1.0, 'might': 1.0, 'ago': 1.0, 't': 1.0, 'a': 2.0, 'into': 1.0, 'that': 2.0, '11': 1.0, 'you': 3.0, 'kitchen': 1.0, 'change': 1.0, 'can': 2.0, 'size': 1.0, 'properly': 1.0, 'bags': 2.0, 'due': 1.0, 'bag': 1.0, 'need': 1.0}
Word element => {'other': 1.0, 'your': 1.0, 'buy': 1.0, 'recommend': 1.0, 'in': 1.0, 'smelly': 1.0, 'bad': 1.0, 'short': 1.0, 'whiff': 1.0, 'do': 1.0, 'enough': 1.0, 'big': 1.0, 'maybe': 1.0, 'e': 1.0, 'up': 1.0, 'has': 1.0, 'feels': 1.0, 'sometimes': 1.0, 'it': 3.0, 'smell': 2.0, 'stinky': 1.0, 'smelling': 1.0, 'if': 1.0, 'energy': 1.0, 'quite': 1.0, 'not': 3.0, 'me': 1.0, 'too': 1.0, 'and': 7.0, 'no': 1.0, 'let': 1.0, 'first': 1.0, 'i': 3.0, 'quickly': 1.0, 'tell': 1.0, 's': 1.0, 'a': 3.0, 'diaper': 6.0, 'mother': 1.0, 'waste': 1.0, 'second': 1.0, 'around': 1.0, 'is': 4.0, 'money': 1.0, 'but': 1.0, 'change': 2.0, 'so': 1.0, 'bit': 1.0, 'time': 5.0, 'who': 1.0, 'used': 1.0, 'product': 1.0, 'expensive': 1.0, 'of': 3.0, 'would': 1.0, 'besides': 1.0, 'with': 1.0, 'frustrating': 1.0, 'when': 1.0, 'am': 1.0, 'you': 4.0, 'comparison': 2.0, 'everyday': 1.0, 'genie': 2.0, 'champ': 3.0, 'patience': 1.0, 'get': 1.0, 'easy': 2.0, 'as': 1.0, 'all': 1.0, 'to': 3.0, 'mom': 1.0, 'husband': 1.0, 'refills': 1.0, 'use': 2.0, 'there': 1.0, 'instead': 1.0, 'required': 1.0, 'rival': 1.0, 'uses': 1.0, 'garbage': 1.0, 'while': 1.0, 'bags': 3.0, 'strongly': 1.0, 'perfect': 1.0, 'found': 1.0, 'the': 12.0, 'myself': 1.0, 'my': 1.0, 'very': 2.0, 'filled': 1.0, 'that': 2.0, 'changing': 1.0}
Word element => {'of': 1.0, 'we': 2.0, 'other': 1.0, 'smell': 1.0, 'several': 2.0, 'flipping': 1.0, 'in': 1.0, 'kept': 2.0, 'after': 2.0, 'did': 2.0, 'keep': 1.0, 'points': 2.0, 'use': 2.0, 'good': 1.0, 'odor': 1.0, 'less': 1.0, 'operate': 1.0, 'touching': 1.0, 'to': 3.0, 'as': 1.0, 'and': 3.0, 'break': 1.0, 'change': 1.0, 'months': 1.0, 'products': 2.0, 'for': 1.0, 'where': 1.0, 'expensive': 1.0, 'easy': 1.0, 'than': 1.0, 'were': 1.0, 'it': 2.0, 'mos': 2.0, 'comperable': 1.0, '10': 1.0, 'unlike': 1.0, 'competitors': 1.0, 'unable': 1.0, 'bad': 1.0, 'toddler': 1.0, 'back': 1.0, 'put': 1.0, 'diapers': 1.0, 'forth': 1.0, 'the': 1.0, 'not': 1.0, 'room': 1.0, 'free': 1.0}
Word element => {'totally': 1.0, 'ready': 1.0, 'pleasent': 1.0, 'very': 1.0, 'day': 1.0, 'thats': 1.0, 'stuck': 1.0, 'get': 1.0, 'gets': 1.0, 'problem': 1.0, 'over': 1.0, 'top': 1.0, 'dirty': 1.0, 'swing': 1.0, 'diaper': 1.0, 'when': 1.0, 'you': 1.0, 'for': 1.0, 'love': 1.0, 'though': 1.0, 'getting': 1.0, 'like': 1.0, 'seals': 1.0, 'not': 1.0, 'bleach': 1.0, 'in': 2.0, 'it': 2.0, 'put': 1.0, 'washed': 1.0, 'just': 2.0, 'seep': 1.0, 'full': 1.0, 'this': 4.0, 'he': 1.0, 'with': 2.0, 'through': 1.0, 'smelling': 1.0, 'now': 1.0, 'the': 9.0, 'great': 1.0, 'size': 2.0, 'sooner': 1.0, '8': 2.0, 'must': 1.0, 'have': 2.0, 'smell': 1.0, 'change': 1.0, 'but': 2.0, 'week': 1.0, 'even': 1.0, 'diapers': 2.0, 'its': 2.0, 'nursery': 1.0, 'only': 1.0, 'much': 1.0, 'bedroom': 1.0, 'and': 3.0, 'too': 2.0, 'morning': 1.0, 'us': 1.0, 'after': 3.0, 'decided': 1.0, 'one': 2.0, 'months': 3.0, '5': 1.0, 'of': 1.0, 'today': 1.0, 'gone': 1.0, 'despite': 1.0, 'worse': 1.0, 'replaced': 1.0, 'i': 4.0, 'etc': 1.0, 'used': 1.0, 'if': 1.0, 'fact': 1.0, 'my': 1.0, 'started': 1.0, 'baby': 1.0, 'babyrus': 1.0, 'our': 1.0, 'all': 1.0, 'to': 2.0, 'as': 3.0, 'going': 1.0, 'we': 1.0, 'airfreshners': 1.0, 'a': 2.0, 'is': 3.0, 'sleeps': 1.0, 'new': 1.0, 'each': 1.0, 'would': 1.0}
Word element => {'pails': 1.0, 'look': 1.0, 'will': 1.0, 'baby': 1.0, 'on': 1.0, 'well': 1.0, 'gross': 1.0, 'there': 1.0, 'other': 1.0, 'jam': 1.0, 'to': 1.0, 'm': 1.0, 'd': 1.0, 'so': 1.0, 'properly': 1.0, 'soaked': 1.0, 're': 1.0, 'like': 1.0, 'sometimes': 1.0, 'plus': 1.0, 'out': 1.0, 'have': 1.0, 'coming': 1.0, 'kept': 1.0, 'just': 1.0, 'liner': 1.0, 'big': 1.0, 'great': 1.0, 'the': 9.0, 'diaper': 3.0, 'odors': 1.0, 'broke': 1.0, 'another': 1.0, '2': 1.0, 'pregnant': 1.0, 'but': 2.0, 'they': 1.0, 'seal': 1.0, 'heavy': 1.0, 'first': 1.0, 'it': 7.0, 'with': 2.0, 'smell': 1.0, 'at': 1.0, 'tape': 1.0, 'foam': 2.0, 'otherwise': 1.0, 'etc': 1.0, 'i': 3.0, 'turn': 1.0, 'in': 4.0, 'then': 1.0, 'really': 2.0, 'worked': 2.0, 'into': 1.0, 'babies': 1.0, 'r': 1.0, 'chamber': 1.0, 'morning': 1.0, 'us': 1.0, 'gratiously': 1.0, 'exchanged': 1.0, 'fit': 1.0, 'product': 1.0, 'for': 1.0, 'one': 1.0, 'diapers': 1.0, 'wouldn': 2.0, 'default': 1.0, 'when': 2.0, 'contain': 1.0, 'am': 1.0, 'happened': 1.0, 'again': 1.0, 'would': 1.0, 'say': 1.0, 't': 2.0, 'we': 2.0, 's': 1.0, 'a': 1.0, 'and': 6.0, 'tucked': 1.0, 'accepting': 1.0, 'always': 1.0, 'champ': 2.0, 'disappointed': 1.0, 'made': 1.0, 'sure': 1.0, 'was': 2.0}
Word element => {'ll': 1.0, 'baby': 1.0, 'recommended': 1.0, 've': 1.0, 'up': 1.0, 'open': 1.0, 'toddler': 1.0, 'strangers': 1.0, 'no': 1.0, 'but': 1.0, 'how': 3.0, 'husband': 1.0, 'show': 1.0, 'him': 1.0, 'chance': 1.0, 'have': 1.0, 'even': 1.0, 'didn': 1.0, 'use': 4.0, 'able': 2.0, 'while': 1.0, 'being': 2.0, 'of': 3.0, 'worries': 1.0, 'immediately': 1.0, 'is': 1.0, 'asked': 1.0, 'around': 1.0, 'shopped': 2.0, 'and': 2.0, 'get': 1.0, 'impressed': 1.0, 'ease': 1.0, 'daughter': 1.0, 'by': 1.0, 'love': 1.0, 'for': 1.0, 'bought': 1.0, 'one': 1.0, 'questions': 1.0, 'at': 1.0, 'lot': 2.0, 'my': 3.0, 'stores': 2.0, 'without': 1.0, 'the': 6.0, 'mother': 1.0, 'diaper': 1.0, 'so': 1.0, 'time': 1.0, 'i': 9.0, 'best': 1.0, 'figure': 1.0, 'very': 1.0, 'knows': 1.0, 'simple': 1.0, 'bag': 1.0, 'wanted': 1.0, 'any': 1.0, 'as': 1.0, 'to': 9.0, 'was': 2.0, 'it': 9.0, 'a': 5.0, 't': 2.0, 's': 1.0, 'house': 1.0, 'champ': 1.0, 'saw': 1.0, 'nephew': 1.0, 'that': 1.0, 'hadn': 1.0, 'you': 1.0, 'when': 1.0, 'someone': 1.0, 'seen': 1.0, 'much': 1.0, 'in': 3.0, 'first': 1.0, 'various': 1.0, 'out': 1.0, 'convenience': 1.0}
Word element => {'easy': 1.0, 'a': 1.0, 'what': 1.0, 'clean': 1.0, 'out': 1.0, 'pull': 1.0, 'open': 1.0, 'flipping': 1.0, 'sometimes': 1.0, 'to': 2.0, 'odor': 1.0, 'tube': 1.0, 'stuck': 1.0, 'in': 2.0, 'either': 1.0, 'then': 1.0, 'use': 1.0, 'can': 1.0, 'like': 1.0, 'bags': 1.0, 'get': 1.0, 'and': 3.0, 'shape': 1.0, 'that': 3.0, 'all': 1.0, 'have': 1.0, 'slim': 1.0, 'i': 1.0, 'tall': 1.0, 'you': 2.0, 'kitchen': 1.0, 'controlling': 1.0, 'it': 4.0, 'with': 1.0, 'diapers': 1.0, 'but': 1.0, 'champ': 1.0, 'regular': 1.0, 'really': 1.0, 'isn': 2.0, 'mess': 1.0, 'great': 1.0, 'the': 3.0, 'diaper': 1.0, 't': 2.0}
Word element => {'this': 1.0, 'overall': 1.0, 'dirty': 1.0, 'forth': 1.0, 'back': 1.0, 'harder': 1.0, 'is': 2.0, 'has': 1.0, 'plastic': 1.0, 'fabric': 1.0, 'part': 2.0, 'apart': 1.0, 'see': 1.0, 'parts': 1.0, 'start': 1.0, 'mold': 1.0, 'of': 3.0, 'often': 1.0, 'be': 1.0, 'grow': 1.0, 'to': 3.0, 'take': 1.0, 'pretty': 1.0, 'many': 1.0, 'and': 3.0, 'changes': 1.0, 'systems': 1.0, 'other': 1.0, 'smell': 1.0, 'disposable': 1.0, 'than': 1.0, 'environment': 1.0, 'better': 1.0, 'it': 10.0, 'product': 1.0, 'love': 1.0, 'for': 2.0, 'new': 1.0, 've': 1.0, 'in': 3.0, 'now': 1.0, 'had': 1.0, 'the': 4.0, 'diaper': 2.0, 'can': 1.0, '2': 1.0, 'year': 1.0, 'we': 4.0, 's': 1.0, 't': 3.0, 'a': 6.0, 'champ': 1.0, 'diapers': 2.0, 'cleaned': 1.0, 'week': 1.0, 'ripped': 1.0, 'little': 1.0, 'over': 1.0, 'i': 1.0, 'flip': 1.0, 'material': 1.0, 'really': 1.0, 'highly': 1.0, 'doesn': 2.0, 'recommend': 1.0, 'great': 1.0, 'until': 1.0, 'drawbacks': 1.0, 'put': 1.0, 'lastly': 1.0, 'on': 2.0, '3': 1.0, 'hold': 1.0, 'when': 1.0, 'you': 3.0, 'bacteria': 1.0, 'times': 1.0, 'that': 1.0, 'at': 1.0, 'have': 1.0, 'lots': 1.0, 'dapers': 1.0, 'or': 2.0, 'bit': 1.0, 'needs': 1.0, 'time': 1.0, 'so': 2.0}
Word element => {'superior': 1.0, 'use': 1.0, 'stars': 1.0, 'stinky': 1.0, 'reason': 1.0, 'plastic': 1.0, 'out': 1.0, 'terms': 1.0, 'in': 1.0, 'more': 1.0, 'is': 3.0, 'yes': 1.0, 'masking': 1.0, 'does': 1.0, 'toddler': 1.0, 'old': 1.0, 'year': 1.0, 'or': 1.0, 'cant': 1.0, 'one': 1.0, 'gave': 1.0, 'changing': 1.0, 'that': 2.0, 'new': 1.0, 'a': 3.0, 'odors': 1.0, 'broke': 1.0, 'baby': 1.0, 'it': 4.0, 'with': 5.0, 'this': 1.0, 'well': 1.0, 'recommended': 1.0, 'highly': 1.0, 'advised': 1.0, 'diapers': 2.0, 'job': 1.0, 'the': 9.0, 'diaper': 1.0, 'infants': 1.0, 'ease': 1.0, 'buy': 1.0, 'live': 2.0, 'champ': 2.0, 'genie': 2.0, 'two': 2.0, 'i': 4.0, 'better': 1.0, 'their': 2.0, 'by': 1.0, 'mom': 1.0, 'years': 1.0, 'd': 1.0, 'after': 2.0, 'simply': 1.0, 'so': 1.0, 'was': 2.0, 'infant': 1.0, 'our': 1.0, 'to': 1.0, 'as': 2.0, 'big': 1.0, 'mistake': 1.0, 'her': 1.0, 'can': 1.0, 'but': 2.0, '2': 1.0, 'most': 1.0, 'of': 6.0, 'cumbersome': 1.0, 'people': 1.0, 'reviewing': 1.0, 'positively': 1.0, 'much': 1.0, 'do': 1.0, 'are': 1.0, 'not': 1.0, 'an': 1.0, 'smell': 2.0, 'using': 1.0, 'like': 1.0}
Word element => {'hint': 1.0, 'far': 1.0, 'could': 1.0, 'gone': 1.0, 'people': 1.0, 'handle': 1.0, 'flip': 1.0, 'hole': 1.0, 'ignore': 1.0, 'turns': 1.0, 'only': 1.0, 'times': 1.0, 'few': 1.0, 'do': 2.0, 'once': 2.0, 'get': 1.0, 'difficult': 1.0, 'no': 1.0, 'simplest': 1.0, 'needed': 1.0, 'tiny': 1.0, 'way': 2.0, 'enough': 2.0, '120': 1.0, 're': 1.0, 'plastic': 2.0, 'you': 7.0, 'last': 1.0, 'probably': 1.0, 'any': 1.0, 'will': 1.0, 'us': 1.0, '2x': 1.0, 'bags': 4.0, 'annoying': 1.0, 'than': 1.0, 'drawstring': 2.0, 'took': 2.0, 'single': 1.0, 'club': 1.0, '1': 4.0, 'big': 1.0, 'member': 1.0, 'year': 1.0, 'box': 2.0, 'that': 7.0, 'say': 1.0, 'involves': 1.0, 'obvious': 1.0, 'liner': 1.0, 'side': 1.0, 'small': 1.0, 'conservative': 1.0, 'those': 1.0, 'impossible': 2.0, 'hold': 2.0, 'like': 2.0, 'ok': 1.0, 'weekly': 1.0, 'if': 1.0, 'happier': 1.0, 'don': 4.0, 'says': 1.0, 'diaper': 14.0, 'up': 1.0, 'change': 3.0, 'as': 2.0, 'less': 1.0, 'lot': 1.0, 'held': 1.0, 'couldn': 1.0, 'from': 1.0, 'who': 1.0, 'dial': 1.0, 'whenever': 1.0, 'were': 3.0, 'recommend': 1.0, 'dirty': 2.0, 'month': 2.0, 'even': 2.0, 'of': 8.0, 'the': 46.0, 'shower': 1.0, 'with': 5.0, 'this': 1.0, 'used': 4.0, 'baby': 1.0, 'champ': 10.0, 'stuck': 1.0, 'list': 2.0, 'wrong': 4.0, 'broke': 2.0, 'well': 1.0, 'cut': 2.0, 'so': 3.0, 'diapers': 3.0, 'but': 2.0, 'too': 1.0, '3': 2.0, 'put': 2.0, 'changing': 2.0, 'on': 7.0, 'for': 5.0, 'first': 1.0, 'show': 1.0, 'kitchen': 1.0, 'fed': 1.0, 'after': 3.0, 'years': 2.0, 'gotten': 1.0, 'd': 3.0, 'got': 1.0, 'grocery': 1.0, 'one': 2.0, '5': 3.0, 'a': 14.0, 'bag': 10.0, 'chance': 1.0, 'reason': 1.0, 'it': 16.0, 'be': 1.0, 'here': 1.0, 'we': 10.0, 't': 7.0, 'they': 4.0, 'refill': 4.0, 'at': 2.0, 'ring': 1.0, 'turn': 2.0, 'can': 4.0, 'is': 2.0, 'in': 7.0, 'main': 1.0, 'months': 2.0, 'are': 2.0, 'my': 1.0, 'expensive': 1.0, 's': 5.0, 'doesn': 1.0, 'was': 4.0, '150': 2.0, 'bought': 1.0, 'against': 1.0, 'right': 1.0, 'warehouse': 1.0, 'to': 18.0, 'straight': 1.0, 'use': 8.0, 'make': 1.0, 'goes': 2.0, 've': 1.0, 'while': 3.0, 'tie': 2.0, 'worth': 1.0, '4': 2.0, 'holds': 1.0, 'more': 2.0, 'frequent': 1.0, 'emptying': 2.0, 'babysitter': 1.0, 'how': 2.0, 'pain': 2.0, 'drop': 2.0, 'come': 1.0, 'empty': 1.0, 'work': 1.0, 'new': 1.0, 'tying': 1.0, 'tube': 1.0, 'runs': 1.0, 'and': 16.0, 'just': 3.0, 'find': 1.0, 'why': 1.0, 'off': 2.0, 'little': 2.0, 'restarting': 1.0, '2': 6.0, 'going': 1.0, 'end': 2.0, 'when': 2.0, 'prongs': 1.0, 'someone': 1.0, 'seal': 1.0, 'out': 1.0, 'there': 2.0, 'perfectly': 1.0, 'genie': 9.0, 'not': 3.0, 'holding': 1.0, 'an': 1.0, 'need': 2.0, 'or': 3.0, 'have': 1.0, 'think': 1.0, 'open': 3.0, 'another': 1.0, 'minutes': 1.0, 'refills': 4.0, 'string': 1.0, 'garbage': 1.0, 'through': 1.0, 'into': 2.0, 'anyone': 1.0, 'lid': 2.0, 'i': 6.0, 'simple': 1.0, 'short': 1.0, 'trash': 1.0, 'close': 1.0, 'helping': 1.0, 'tool': 1.0, 'about': 1.0, 'place': 1.0, 'sausage': 2.0, 'twist': 1.0, 'spring': 1.0, 'inside': 1.0, '15': 3.0, 'never': 1.0, 'again': 1.0, 'time': 2.0, 'top': 3.0, 'easy': 1.0, 'reasons': 1.0, 'had': 1.0, 'family': 1.0, 'most': 1.0, 'always': 1.0, 'them': 1.0, 'couple': 1.0, 'home': 1.0, 'every': 2.0, 'glad': 1.0, 'cutter': 2.0}
Word element => {'wish': 1.0, 'is': 1.0, 'stars': 1.0, 'gave': 1.0, 'special': 1.0, '4': 1.0, 'over': 1.0, 'have': 1.0, 'extra': 1.0, 'dont': 1.0, 'and': 1.0, 'from': 1.0, 'house': 1.0, 'diapers': 2.0, 'use': 1.0, 'keeps': 1.0, 'pail': 1.0, 'more': 1.0, 'the': 2.0, 'diaper': 1.0, 'kitchen': 1.0, 'for': 1.0, 'love': 2.0, 'this': 1.0, 'it': 3.0, 'can': 1.0, 'stinking': 1.0, 'your': 1.0, 'fork': 1.0, 'up': 1.0, 'held': 1.0, 'bucks': 1.0, 'bags': 2.0, 'room': 1.0, 'reason': 1.0, 'also': 1.0, 'that': 3.0, 'to': 1.0, 'regualer': 1.0, 'i': 5.0, 'old': 1.0}
Word element => {'highly': 1.0, 'diapers': 1.0, 'lot': 1.0, 'holds': 1.0, 'also': 1.0, 'me': 1.0, 'pop': 1.0, 'just': 1.0, 'because': 1.0, 'bags': 1.0, 'i': 4.0, 'genie': 1.0, 'chose': 1.0, 'changes': 1.0, 'have': 3.0, 'the': 1.0, 'diaper': 1.0, 'this': 3.0, 'it': 4.0, 'with': 1.0, 'replacement': 1.0, 'kitchen': 1.0, 'and': 2.0, 'tall': 1.0, 'you': 1.0, 'boys': 1.0, 'buy': 1.0, 'unlike': 1.0, 'garbage': 1.0, 'between': 1.0, 'bag': 2.0, 'which': 1.0, 't': 1.0, 'a': 2.0, 'we': 1.0, 'homes': 1.0, 'all': 1.0, 'to': 1.0, 'our': 1.0, 'spraying': 1.0, 'don': 1.0, 'anyway': 1.0, 'great': 1.0, 'twin': 1.0, 'works': 2.0, 'recommend': 2.0, 'of': 1.0, 'lysol': 1.0, 'letting': 1.0, 'in': 3.0, 'air': 1.0, 'dry': 1.0, 'product': 2.0, 'for': 1.0}
Word element => {'ll': 1.0, 'this': 1.0, 'compare': 1.0, 'any': 1.0, 'buying': 1.0, 'before': 1.0, 'new': 1.0, 'their': 1.0, 'wife': 1.0, 'his': 1.0, 'law': 1.0, 'one': 2.0, 'purchased': 1.0, 'just': 1.0, 'down': 1.0, 'use': 2.0, 'it': 4.0, 'easy': 2.0, 'get': 1.0, 'genie': 1.0, 'but': 1.0, 'change': 1.0, 'four': 1.0, 'pregnant': 1.0, 'folks': 1.0, 'for': 3.0, 'baby': 1.0, 'many': 1.0, 'and': 4.0, 'only': 1.0, 'was': 1.0, 'other': 1.0, 'all': 2.0, 'three': 1.0, 'champ': 2.0, 'sales': 1.0, 'babies': 1.0, 'were': 1.0, '18months': 1.0, 'we': 6.0, 'a': 4.0, 's': 1.0, 't': 1.0, 'how': 2.0, 'picking': 1.0, 'that': 1.0, 'associate': 2.0, 'glad': 1.0, 'as': 4.0, 'diaper': 7.0, 'amazed': 1.0, 'changed': 1.0, 'like': 1.0, 'which': 1.0, 'to': 7.0, 'pail': 2.0, 'so': 2.0, 'have': 2.0, 'i': 3.0, 'in': 1.0, 'm': 1.0, 'you': 2.0, 'do': 2.0, 'r': 1.0, 'problem': 1.0, 'is': 2.0, 'at': 2.0, 'handle': 1.0, 'showed': 1.0, 'the': 5.0, 'out': 1.0, 'there': 1.0, 'brother': 1.0, 'twisting': 1.0, 'got': 1.0, 'special': 1.0, 'long': 1.0, 'liners': 1.0, 'buy': 2.0, 'days': 1.0, 'far': 1.0, 'goes': 2.0, 'help': 1.0, 'smell': 2.0, 'pails': 1.0, 'will': 1.0, 'us': 2.0, 'also': 1.0, 'they': 2.0, 're': 1.0, 'enough': 1.0, 'not': 1.0, 'often': 1.0, 'my': 2.0, 'don': 1.0, 'product': 1.0, 'child': 1.0, 'with': 2.0, 'no': 3.0, 'ours': 1.0, 'turn': 1.0, 'asked': 1.0, 'if': 1.0, 'every': 1.0, 'should': 1.0, 'be': 2.0, 'going': 1.0, 'done': 1.0, 'apart': 1.0, 'matter': 1.0, 'when': 2.0, 'what': 1.0, 'smelling': 1.0, 'second': 2.0, 'first': 1.0, 'are': 1.0, 'bought': 1.0}
Word element => {'parents': 1.0, 'new': 1.0, 'recommended': 1.0, 'no': 1.0, 'then': 1.0, 'problem': 1.0, 'fingertips': 1.0, 'finger': 1.0, 'your': 2.0, 'side': 1.0, 'just': 1.0, 'that': 1.0, 'also': 1.0, 'out': 1.0, 'clean': 1.0, 'or': 1.0, 'instead': 1.0, 'course': 1.0, 'of': 3.0, 'diapers': 1.0, 'house': 1.0, 'the': 3.0, 'diaper': 1.0, 'unless': 1.0, 'you': 6.0, 'change': 1.0, 'but': 1.0, 'can': 2.0, 'love': 3.0, 'it': 6.0, 'found': 1.0, 'this': 3.0, 'smell': 1.0, 'don': 1.0, 'up': 1.0, 'lives': 1.0, 's': 1.0, 't': 1.0, 'we': 1.0, 'all': 1.0, 'any': 1.0, 'to': 3.0, 'use': 2.0, 'already': 1.0, 'purchased': 1.0, 'hard': 1.0, 'bags': 1.0, 'have': 4.0, 'is': 1.0, 'trash': 1.0, 'around': 1.0, 'cannot': 1.0, 'hype': 1.0, 'which': 1.0, 'why': 1.0, 'open': 1.0, 'particular': 1.0, 'pail': 1.0, 'be': 1.0, 'if': 2.0, 'long': 1.0, 'nails': 1.0, 'i': 2.0}
Word element => {'probably': 1.0, 'will': 1.0, 'getting': 1.0, 'and': 1.0, 'older': 1.0, 'daughter': 1.0, 'starts': 1.0, 'my': 1.0, 'although': 1.0, 'open': 1.0, 'gets': 1.0, 'difficult': 1.0, 'be': 2.0, 'minutes': 1.0, 'few': 1.0, 'stars': 1.0, 'rated': 1.0, 'reason': 1.0, 'second': 1.0, 'regular': 1.0, 'can': 1.0, 'change': 2.0, 'takes': 2.0, 'is': 2.0, 'trash': 1.0, '6': 1.0, 'it': 4.0, 'only': 2.0, 'with': 2.0, 'this': 2.0, '4': 1.0, 'i': 4.0, 'bags': 1.0, 'very': 1.0, '1': 1.0, 'operation': 1.0, 'greatest': 2.0, 'thing': 2.0, 'have': 2.0, 'into': 1.0, 'changing': 1.0, 'next': 1.0, 'been': 1.0, 'handed': 1.0, 'happy': 1.0, 'pail': 1.0, 'the': 7.0, 'awesome': 1.0, 'not': 2.0, 'because': 2.0, 'had': 1.0, 'things': 1.0, 'odor': 1.0, 'to': 2.0, 'any': 1.0, 'blessing': 1.0, 'issues': 1.0, 'every': 1.0, '5': 1.0, 'days': 1.0, 'or': 1.0, 'so': 1.0, 'if': 1.0, 'plunger': 1.0, 'down': 1.0, 'a': 3.0, 'going': 1.0, 's': 1.0, 'when': 1.0, 'you': 1.0, 'bag': 3.0, 'need': 1.0}
Word element => {'wet': 1.0, 'just': 1.0, 'pail': 1.0, 'to': 1.0, 'outside': 1.0, 'straight': 1.0, 'taking': 1.0, 'bags': 1.0, 'deodorant': 1.0, 'tell': 1.0, 'other': 2.0, 'smell': 1.0, 'genie': 1.0, 'i': 2.0, 'the': 4.0, 'diaper': 3.0, 'me': 1.0, 'and': 2.0, 'moms': 1.0, 'use': 1.0, 'try': 1.0, 'people': 1.0, 'trash': 2.0, 'around': 1.0, 'is': 1.0, 'tabs': 1.0, 've': 1.0, 'in': 1.0, 'anyone': 1.0, 'having': 1.0, 'after': 1.0, 'using': 3.0, 'for': 2.0, 'stunned': 1.0, 'still': 2.0, 'with': 1.0, 'your': 1.0, '3': 1.0, 'had': 1.0, 'c': 1.0, 'years': 1.0, 'that': 2.0, '2': 1.0, 'can': 1.0, 'they': 1.0, 'dirty': 2.0, 'even': 2.0, 'diapers': 3.0, 'house': 1.0, 'trouble': 1.0, 'b': 1.0, 'my': 1.0, 'this': 1.0, 'kids': 1.0, 'producing': 1.0, 'them': 1.0, 'if': 1.0, 'though': 1.0, 't': 1.0, 'a': 1.0, 'wrapping': 1.0, 'securely': 1.0}
Word element => {'on': 1.0, 'freshner': 1.0, 'a': 1.0, 'would': 1.0, 'is': 1.0, 'the': 2.0, 'less': 1.0, 'run': 1.0, 'its': 1.0, 'now': 1.0, 'to': 2.0, 'easier': 1.0, 'lol': 1.0, 'compared': 1.0, 'own': 1.0, 'if': 1.0, 'genie': 1.0, 'i': 1.0, 'spray': 1.0, 'and': 1.0, 'use': 1.0, 'loved': 1.0, 'thumbs': 1.0, 'up': 1.0, 'this': 1.0, 'it': 2.0, 'only': 1.0, 'costly': 1.0, 'in': 1.0, 'long': 1.0, 'two': 1.0}
Word element => {'pail': 1.0, 'odorless': 1.0, 'real': 1.0, 'trying': 1.0, 'process': 1.0, 'open': 1.0, 'pay': 1.0, 'and': 3.0, 'bags': 1.0, 'big': 1.0, 'mistake': 1.0, 'smart': 1.0, 'got': 1.0, 'refills': 1.0, 'use': 1.0, 'the': 3.0, 'diaper': 3.0, 'genie': 1.0, 'champ': 1.0, 'put': 1.0, 'stinks': 1.0, 'not': 2.0, 'garbage': 1.0, 'thought': 1.0, 'it': 2.0, 'this': 2.0, 'was': 1.0, 'odor': 1.0, 'its': 1.0, 'for': 1.0, 'product': 2.0, 'find': 1.0, 'because': 2.0, 'does': 1.0, 'keep': 1.0, 'regular': 1.0, 'in': 4.0, 'daughter': 1.0, 'when': 1.0, 'you': 1.0, 'a': 2.0, 'we': 3.0, 's': 1.0, 'of': 2.0, 'new': 1.0, 'bag': 1.0, 'to': 3.0, 'all': 1.0, 'up': 1.0, 'over': 1.0, 'my': 1.0, 'room': 1.0, 'are': 1.0}
Word element => {'stinky': 1.0, 'making': 1.0, 'guy': 1.0, 'little': 1.0, 'important': 1.0, 'especially': 1.0, 's': 1.0, 'bag': 1.0, 'wonderful': 1.0, 'diapers': 1.0, 'but': 1.0, 'food': 1.0, 'kept': 1.0, 'garbage': 1.0, 'now': 1.0, 'odor': 1.0, 'was': 1.0, 'our': 1.0, 'that': 3.0, 'given': 1.0, 'for': 1.0, 'more': 1.0, 'diaper': 1.0, 'the': 1.0, 'returned': 1.0, 'eating': 1.0, 'controlling': 1.0, 'this': 1.0, 'it': 1.0, 'i': 2.0, 'takes': 1.0, 'any': 1.0, 'refills': 1.0, 'and': 2.0, 'solid': 1.0, 'g': 1.0, 'no': 1.0, 'expensive': 1.0, 'is': 2.0}
Word element => {'better': 1.0, 'open': 1.0, 'infinitely': 1.0, 'top': 1.0, 'get': 1.0, 'lifting': 1.0, 'latch': 1.0, 'or': 1.0, 'broken': 1.0, 'is': 1.0, 'genie': 1.0, 'near': 1.0, 'floor': 1.0, 're': 1.0, 'carry': 1.0, 'not': 1.0, 'room': 1.0, 'but': 2.0, 'smell': 3.0, 'having': 1.0, 'than': 1.0, 'does': 1.0, 'because': 1.0, '8': 1.0, 'bottom': 1.0, 'them': 1.0, 'only': 2.0, 'do': 2.0, 'it': 3.0, 'first': 1.0, 'this': 1.0, 'now': 1.0, 'issue': 1.0, 'husband': 1.0, 'shower': 1.0, 'of': 2.0, 'cans': 1.0, 'for': 1.0, 'and': 3.0, 'too': 1.0, 'my': 3.0, 'two': 1.0, 'i': 2.0, 'buy': 1.0, 'freshener': 1.0, 'quite': 1.0, 'saw': 1.0, 'thing': 1.0, 'to': 3.0, 'all': 1.0, 'have': 1.0, 'after': 2.0, 'best': 1.0, 'loves': 1.0, 'that': 2.0, 'what': 1.0, 'when': 1.0, 'you': 2.0, 'don': 1.0, 'the': 10.0, 'specific': 1.0, 'from': 1.0, 'bags': 2.0, 'a': 1.0, 'going': 1.0, 's': 3.0, 't': 1.0, 'we': 2.0, 'use': 2.0, 'he': 1.0, 'grocery': 1.0, 've': 2.0, 'nail': 1.0, 'they': 1.0, 'well': 1.0, 'months': 1.0, 'bought': 1.0, 'some': 1.0, 'in': 1.0, 'said': 1.0, 'air': 1.0, 'on': 1.0, 'put': 1.0}
Word element => {'pail': 1.0, 'this': 1.0, 'eminate': 1.0, 'that': 1.0, 'odor': 1.0, 'have': 1.0, 'months': 2.0, 'on': 1.0, '5': 2.0, 'bouts': 1.0, 'smellier': 1.0, 'worked': 1.0, 'received': 1.0, 'baby': 1.0, 'started': 1.0, 'not': 1.0, 'occasionally': 1.0, 'odors': 1.0, 'of': 1.0, 'shower': 1.0, 'eating': 1.0, 'it': 2.0, 'diaper': 3.0, 'great': 1.0, 'for': 1.0, 'whatever': 1.0, 'we': 1.0, 'a': 1.0, 'champ': 2.0, 'diapers': 1.0, 'will': 1.0, 'and': 1.0, 'solids': 1.0, 'gift': 1.0, 'from': 1.0, 'bags': 1.0, 'having': 1.0, 'in': 1.0, 'did': 1.0, 'at': 1.0, '1st': 1.0, 'since': 1.0, 'keep': 1.0, 'hand': 1.0, 'anymore': 1.0, 'you': 2.0, 'completely': 1.0, 'is': 1.0, 'can': 1.0, 'use': 1.0, 'our': 1.0, 'as': 2.0, 'to': 1.0, 'the': 4.0, 'refill': 1.0, 'inexpensive': 1.0, 'however': 1.0}
Word element => {'buy': 1.0, 'out': 1.0, 'don': 1.0, 'you': 1.0, 'so': 1.0, 'highly': 1.0, 'couldn': 1.0, 'special': 1.0, 'used': 1.0, 'what': 1.0, 'i': 3.0, 'the': 3.0, 'diaper': 2.0, 'it': 6.0, 'this': 1.0, 'go': 1.0, 't': 2.0, 'a': 3.0, 'stand': 1.0, 'just': 2.0, 'recommend': 1.0, 'easy': 1.0, 'is': 1.0, 'broke': 1.0, 'difference': 1.0, 'odors': 1.0, 'registered': 1.0, 'item': 1.0, 'have': 1.0, 'must': 1.0, 'very': 1.0, 'week': 1.0, 'genie': 1.0, 'champ': 1.0, 'expensive': 1.0, 'for': 3.0, 'one': 1.0, 'are': 1.0, 'basic': 1.0, 'to': 3.0, 'install': 1.0, 'then': 1.0, 'got': 1.0, 'refills': 1.0, 'use': 1.0, 'hand': 1.0, 'about': 1.0, 'no': 1.0, 'uses': 1.0, 'your': 1.0, 'and': 5.0, 'tall': 1.0, 'garbage': 1.0, 'hard': 1.0, 'bags': 2.0}
Word element => {'at': 1.0, 'problem': 1.0, 'plus': 1.0, 'bags': 1.0, 'garbage': 1.0, 's': 2.0, 'you': 1.0, 'a': 2.0, 'refills': 1.0, 'use': 3.0, 'for': 1.0, 'great': 1.0, 't': 1.0, 'diaper': 3.0, 'the': 3.0, 'my': 1.0, 'champ': 1.0, 'but': 1.0, 'originally': 1.0, 'genie': 2.0, 'i': 1.0, 'when': 1.0, 'and': 1.0, 'haven': 1.0, 'minds': 1.0, 'with': 1.0, 'it': 2.0, 'only': 1.0, 'regular': 1.0, 'registered': 1.0, 'changed': 1.0, 'simple': 1.0, 'we': 4.0, 'considered': 1.0, 'our': 1.0, 'that': 1.0, 'would': 1.0, 'all': 1.0, 'able': 1.0, 'product': 1.0, 'allows': 1.0, 'be': 1.0, 'odor': 1.0, 'had': 1.0, 'husband': 1.0, 'to': 3.0}
Word element => {'sorry': 1.0, 'be': 1.0, 'you': 2.0, 'sell': 1.0, 'not': 2.0, 'several': 1.0, 'items': 1.0, 'if': 1.0, 'before': 1.0, 'room': 1.0, 'once': 1.0, 'lysol': 1.0, 'love': 2.0, 'share': 1.0, '10': 1.0, 'for': 1.0, 'it': 6.0, 'that': 4.0, 'into': 1.0, 'say': 1.0, 'brought': 2.0, 'like': 1.0, 'hand': 1.0, 's': 1.0, 'a': 7.0, 'going': 1.0, 't': 1.0, 'v': 1.0, 'of': 3.0, 'the': 6.0, 'bag': 2.0, 'son': 1.0, 'week': 1.0, 'champ': 3.0, 'genie': 1.0, '8': 1.0, 'have': 5.0, 'looked': 1.0, 'first': 1.0, 'month': 1.0, 'hear': 1.0, 'this': 3.0, 'kids': 1.0, 'hottest': 1.0, 'i': 14.0, 'truly': 1.0, 'daughter': 1.0, 'owner': 1.0, 'when': 1.0, 'am': 2.0, 'there': 4.0, 'to': 5.0, 'diaper': 2.0, 'as': 2.0, 'an': 1.0, 'all': 1.0, 'nj': 1.0, 'was': 2.0, 'australia': 1.0, 'store': 1.0, 'nothing': 1.0, 'old': 2.0, 'fact': 1.0, 'year': 1.0, 'child': 1.0, 'over': 1.0, 'change': 2.0, 'so': 3.0, 'can': 1.0, 'really': 1.0, 'appreciate': 1.0, 'smelly': 1.0, 'would': 1.0, 'time': 1.0, 'new': 1.0, 'about': 1.0, 'just': 2.0, 'spray': 1.0, 'with': 4.0, 'little': 1.0, 'is': 3.0, 'at': 1.0, 'since': 1.0, 'good': 1.0, 'had': 1.0, 'aside': 1.0, 'form': 1.0, 'and': 5.0, 'anyone': 1.0, 'easy': 1.0, 'get': 1.0, 'use': 1.0, 'too': 1.0, 'one': 3.0, 'wiggly': 1.0, 'will': 2.0, 'she': 1.0, 'baby': 2.0, 'them': 1.0, 'in': 2.0, 'take': 1.0, 'genies': 1.0, 'way': 1.0, 'my': 4.0, 'me': 1.0, 'do': 1.0, 'much': 1.0, 'niece': 1.0, 'used': 1.0}
Word element => {'special': 1.0, 'anything': 1.0, 'because': 1.0, 'your': 1.0, 'i': 1.0, 'money': 1.0, 'can': 1.0, 'suggest': 1.0, 'smelly': 1.0, 'saving': 1.0, 'easy': 1.0, 'horribly': 1.0, 'this': 2.0, 'do': 1.0, 'get': 1.0, 'and': 1.0, 'buying': 1.0, 'a': 1.0, 'is': 1.0, 'regular': 1.0, 'trash': 1.0, 'you': 1.0, 'doesn': 1.0, 'but': 1.0, 'will': 1.0, 'same': 1.0, 'effect': 1.0, 't': 1.0, 'the': 1.0}
Word element => {'design': 1.0, 'good': 1.0, 'great': 1.0, 'problem': 1.0, 'won': 1.0, 'removal': 1.0, 'before': 1.0, 'opening': 1.0, 'of': 1.0, 'procedure': 1.0, 'if': 1.0, 'according': 1.0, 'trash': 1.0, 'other': 1.0, 'kitchen': 1.0, 'pull': 1.0, 'standard': 1.0, 'instructions': 1.0, 'use': 2.0, 'just': 1.0, 'house': 1.0, 'law': 1.0, 'then': 1.0, 'mother': 1.0, 'third': 1.0, 'decent': 1.0, 'got': 1.0, 'diaper': 1.0, 'the': 6.0, 'was': 1.0, 'now': 1.0, 'at': 1.0, 'reveiws': 1.0, 'to': 1.0, 'any': 1.0, 'about': 1.0, 'this': 2.0, 'it': 3.0, 'and': 6.0, 'me': 1.0, 'words': 1.0, 'tell': 1.0, 'get': 1.0, 'sure': 1.0, 'i': 7.0, 'people': 1.0, 'string': 1.0, 'pail': 1.0, 'reviews': 1.0, 'read': 1.0, 'know': 1.0, 'why': 1.0, 'bought': 2.0, 'one': 3.0, 'product': 1.0, 'for': 3.0, 'follow': 1.0, 'liked': 1.0, 'bag': 2.0, 'downstairs': 1.0, 'that': 1.0, 'registery': 1.0, 'sinching': 1.0, 'time': 1.0, 'upstairs': 1.0, 'so': 1.0, 'works': 1.0, 'only': 1.0, 'much': 1.0, 'still': 1.0, 'have': 2.0, 'make': 1.0, 'on': 1.0, 'hoping': 1.0, 'in': 3.0, 'my': 2.0, 'you': 2.0, 'someone': 1.0, 'will': 1.0, 't': 1.0, 's': 1.0, 'a': 3.0}
Word element => {'could': 1.0, 'what': 1.0, 'ordourless': 1.0, 'easy': 1.0, 's': 1.0, 'baby': 1.0, 'more': 1.0, 'the': 1.0, 'new': 1.0, 'through': 1.0, 'survive': 1.0, 'we': 1.0, 'd': 1.0, 'on': 2.0, 'gift': 1.0, 'a': 3.0, 'few': 1.0, 'as': 1.0, 'it': 1.0, 'first': 1.0, 'this': 1.0, 'without': 1.0, 'can': 2.0, 'that': 1.0, 'their': 2.0, 'were': 1.0, 've': 1.0, 'parents': 1.0, 'given': 1.0, 'i': 1.0, 'once': 1.0, 'now': 1.0, 'was': 1.0, 'response': 1.0, 'to': 1.0, 'and': 1.0, 'couple': 1.0, 'times': 1.0, 'who': 1.0, 'second': 1.0, 'clean': 1.0, 'child': 1.0, 'how': 1.0}
Word element => {'bags': 1.0, 'reg': 1.0, 'uses': 1.0, 'it': 1.0, 'has': 1.0, 'in': 1.0, 'years': 1.0, '1': 1.0, 'and': 2.0, 'change': 1.0, 'easy': 1.0, 'use': 1.0, 'diapers': 1.0, 'champ': 1.0, 'that': 1.0, 'have': 1.0, 'i': 2.0, 'kids': 1.0, 'us': 1.0, 'been': 1.0, 'diaper': 1.0, 'the': 1.0, '2': 3.0, 'great': 1.0, 'for': 2.0, 'love': 1.0, 'to': 1.0}
Word element => {'worth': 1.0, 'used': 1.0, 'get': 1.0, 'you': 1.0, 'open': 1.0, 'agree': 1.0, 'although': 1.0, 'smell': 1.0, 'never': 1.0, 'them': 1.0, 'looking': 1.0, 'it': 6.0, 'with': 1.0, 'sister': 1.0, 'this': 1.0, 'happy': 1.0, 'nothing': 1.0, 'i': 9.0, 'tried': 1.0, 'diaper': 2.0, 'the': 7.0, 'for': 3.0, 'a': 1.0, 'go': 1.0, 't': 1.0, 's': 2.0, 'kitchen': 1.0, 'reading': 1.0, 'bottom': 1.0, 'of': 1.0, 've': 2.0, 'in': 1.0, 'after': 1.0, 'so': 1.0, 'registered': 1.0, 'is': 2.0, 'have': 1.0, 'leave': 1.0, 'reviews': 1.0, 'but': 1.0, 'genie': 1.0, 'champ': 3.0, 'my': 2.0, 'fact': 1.0, 'and': 4.0, 'do': 2.0, 'much': 2.0, 'easier': 2.0, 'been': 1.0, 'that': 3.0, 'use': 2.0, 'then': 1.0, 'same': 1.0, 'hard': 1.0, 'bags': 1.0, 'all': 1.0, 'to': 4.0, 'as': 1.0, 'noticed': 1.0, 'makes': 1.0, 'just': 1.0, 'some': 1.0, 'don': 1.0}
Word element => {'works': 1.0, 'overall': 1.0, 'of': 1.0, 't': 2.0, 'you': 1.0, 'room': 1.0, 'is': 1.0, 'living': 1.0, 'and': 2.0, 'our': 1.0, 'in': 1.0, 'ours': 1.0, 'can': 1.0, 'it': 3.0, 'lot': 1.0, 'we': 1.0, 'smell': 1.0, 'have': 1.0, 'thing': 1.0, 'hold': 1.0, 'well': 1.0, 'a': 3.0, 'but': 1.0, 'diapers': 1.0, 'doesn': 1.0, 'little': 1.0, 'difficult': 1.0, 'to': 1.0, 'open': 1.0}
Word element => {'anyone': 1.0, 'recommend': 1.0, 'would': 1.0, 'garbage': 1.0, 'and': 3.0, 'months': 1.0, 'no': 1.0, 'about': 1.0, 'been': 1.0, 'i': 3.0, '2': 1.0, 'great': 1.0, 'with': 1.0, 'it': 3.0, 'this': 1.0, 'using': 1.0, 'absolutely': 1.0, 'bags': 2.0, 'had': 2.0, 'any': 1.0, 'to': 2.0, 'experience': 1.0, 'odors': 1.0, 'not': 1.0, 'just': 1.0, 'have': 2.0, 'far': 1.0, 'so': 1.0, 'smelly': 1.0, 'nursery': 1.0, 'tiny': 1.0, 'a': 1.0, 's': 1.0, 'even': 1.0, 'does': 1.0, 'for': 1.0, 'product': 1.0, 'expensive': 1.0, 'when': 1.0, 'daughter': 1.0, 'my': 1.0, 'diarrhea': 1.0, 'very': 1.0, 'get': 1.0, 'easy': 1.0, 'use': 1.0, 'need': 1.0, 'the': 1.0, 'refill': 1.0, 'in': 1.0, 'regular': 1.0}
Word element => {'anything': 1.0, 'time': 1.0, 'perfect': 1.0, 'out': 1.0, 'nothing': 1.0, 'stars': 1.0, '4out': 1.0, 'that': 3.0, 'however': 1.0, 'admit': 1.0, 'room': 1.0, 'before': 1.0, 'noticed': 1.0, 'old': 1.0, 'never': 1.0, 'reason': 1.0, 'even': 1.0, 'in': 1.0, 'honestly': 1.0, 'deciding': 1.0, 'beginning': 1.0, 'remember': 1.0, 'have': 4.0, 'smell': 1.0, 'we': 4.0, 'a': 5.0, 'giving': 1.0, 's': 2.0, 't': 1.0, 'hard': 1.0, 'open': 1.0, 'year': 1.0, 'review': 1.0, 'odor': 1.0, 'had': 1.0, 'when': 2.0, 'what': 1.0, 'now': 1.0, 'is': 4.0, 'trash': 1.0, 'get': 1.0, 'and': 4.0, 'great': 1.0, 'nice': 1.0, 'of': 1.0, 'the': 8.0, 'into': 1.0, 'wrap': 1.0, 'it': 13.0, 'i': 5.0, 'reading': 1.0, 'squeeze': 1.0, 'good': 2.0, 'which': 1.0, 'about': 1.0, '1': 1.0, 'since': 1.0, 'inside': 1.0, 'contain': 1.0, 'empty': 2.0, 'do': 1.0, 'only': 1.0, 'to': 7.0, 'job': 1.0, 'pretty': 1.0, 'funky': 1.0, 'diapers': 1.0, 'bad': 1.0, 'are': 1.0, 'but': 1.0, 'so': 1.0, 'can': 1.0, 'expect': 1.0, 'if': 1.0, 'your': 1.0, 'think': 1.0, 'sized': 1.0, 'gets': 1.0, 'another': 1.0, 'will': 1.0, 'really': 1.0, 'highly': 1.0, 'be': 2.0, 'lot': 1.0, 'happy': 1.0, 'very': 2.0, 'you': 5.0, 'able': 1.0, 'used': 1.0, 'up': 2.0, 'pleased': 1.0, 'does': 2.0, 'kitchen': 1.0, 'diaper': 3.0, 'bags': 2.0, 'use': 1.0, 'champ': 3.0, 'scented': 1.0, '5': 2.0, 'helps': 1.0, 'overall': 1.0, 'with': 1.0, 'boy': 2.0, 'would': 1.0, 'full': 2.0, 'recommend': 1.0, 'regular': 1.0, 'rated': 1.0}
Word element => {'locking': 1.0, 'but': 1.0, 'hand': 1.0, 'use': 1.0, 's': 1.0, 'for': 2.0, 'would': 1.0, 'overall': 1.0, 'yuck': 1.0, 'wipes': 1.0, 'gets': 2.0, 'wrapped': 1.0, 'just': 1.0, 'if': 1.0, 'even': 1.0, 'diapers': 1.0, 'into': 1.0, 'been': 1.0, 'loves': 1.0, 'some': 1.0, 'grandmas': 1.0, 'up': 2.0, 'infants': 1.0, 'over': 1.0, 'can': 2.0, 'itself': 1.0, 'm': 1.0, 'in': 3.0, 'regular': 1.0, 'pick': 1.0, 'curious': 1.0, 'this': 1.0, 'you': 1.0, 'starts': 1.0, 'my': 1.0, 'lid': 2.0, 'isn': 1.0, 'garbage': 1.0, 'keeps': 1.0, 'your': 1.0, 'on': 1.0, 'great': 1.0, '1': 2.0, 'comes': 1.0, 'poop': 1.0, 'that': 3.0, 'because': 2.0, '14': 1.0, 'a': 5.0, 't': 1.0, 'we': 1.0, 'seem': 1.0, 'hands': 1.0, 'little': 1.0, 'very': 2.0, 'there': 2.0, 'contact': 1.0, 'padding': 1.0, 'came': 1.0, 'is': 1.0, 'handle': 3.0, 'play': 2.0, 'about': 1.0, 'think': 1.0, 'flip': 2.0, 'fingers': 1.0, 'pail': 1.0, 'to': 5.0, 'with': 6.0, 'flop': 1.0, 'looking': 1.0, 'bag': 1.0, 'using': 1.0, 'recommend': 1.0, 'were': 1.0, 'full': 1.0, 'dirty': 2.0, 'have': 4.0, 'trouble': 1.0, 'i': 6.0, 'too': 1.0, 'one': 1.0, 'happy': 1.0, 'simplicity': 1.0, 'the': 11.0, 'of': 1.0, 'stuck': 1.0, 'champ': 2.0, 'diaper': 1.0, 'bags': 1.0, 'now': 2.0, 'easy': 1.0, 'however': 1.0, 'it': 4.0, 'old': 1.0, 'germs': 1.0, 'cringe': 1.0, 'control': 1.0, 'when': 2.0, 'what': 1.0, 'had': 1.0, 'he': 1.0, 'nasty': 1.0, 'his': 1.0, 'toddler': 1.0, 'product': 1.0, 'year': 1.0, 'also': 1.0, 'until': 2.0, 'seems': 1.0, 'odor': 1.0, 'worn': 1.0, 'amp': 5.0, 'out': 2.0, 'under': 1.0, 'month': 1.0, 'loose': 1.0, 'after': 1.0, 'pull': 1.0}
Word element => {'it': 1.0, 'be': 1.0, 'won': 1.0, 'he': 1.0, 'mobile': 1.0, 'a': 2.0, 'once': 1.0, 'bag': 2.0, 'plunger': 3.0, 'on': 2.0, 'now': 1.0, 'have': 1.0, 'able': 1.0, 'you': 1.0, 'when': 2.0, 'low': 1.0, 'factor': 1.0, 'son': 1.0, 'gets': 1.0, 'difficult': 1.0, 'overall': 1.0, 'i': 9.0, 'money': 1.0, 'but': 1.0, 'is': 6.0, 'pail': 1.0, 'to': 4.0, 'yourself': 1.0, 'wasting': 1.0, 'do': 4.0, 't': 1.0, 'require': 1.0, 'this': 1.0, 'with': 1.0, 'and': 1.0, 'odor': 2.0, 'mo': 1.0, 'of': 2.0, 'the': 14.0, 'wrap': 1.0, 'bags': 1.0, 'as': 1.0, 'diaper': 2.0, 'week': 1.0, 'changed': 1.0, 'leak': 1.0, 'an': 1.0, 'will': 1.0, 'also': 1.0, 'would': 2.0, 'not': 5.0, 'recommend': 1.0, 'like': 1.0, 'my': 3.0, 'another': 1.0, 'lid': 2.0, 'think': 1.0, 'types': 1.0, 'about': 1.0, 'free': 1.0, 'frequently': 1.0, 'kid': 1.0, 'complaint': 1.0, 'possible': 1.0, 'though': 1.0, 'cylinder': 1.0, 'm': 1.0, 'in': 1.0, 'champ': 1.0, 'stuck': 2.0, 'that': 5.0, 'because': 4.0, 'having': 1.0, 'even': 1.0, '5': 1.0, 'stack': 1.0, 'top': 1.0, 'newly': 1.0, 'diapers': 2.0, 'are': 1.0, 'use': 1.0, 'for': 1.0, 'guy': 1.0, 'messy': 2.0, 'if': 1.0, 'more': 1.0, 'tabs': 2.0, 'nor': 1.0, 'rate': 1.0, 'fastened': 1.0, 'get': 1.0, 'change': 1.0, 'up': 2.0, 'happy': 1.0, 'one': 1.0, 'ones': 1.0, 'so': 1.0, 'bit': 1.0, 'begin': 1.0, 'thing': 2.0, 'wind': 1.0, 'special': 1.0, 'open': 3.0, 'little': 1.0}
Word element => {'product': 1.0, 'this': 1.0, 'from': 1.0, 'that': 1.0, 'which': 1.0, 'use': 1.0, 'can': 1.0, 'recommend': 1.0, 'fantastic': 1.0, 'champ': 2.0, 'absolutely': 2.0, 'bags': 2.0, 'you': 1.0, 'dirty': 1.0, 'regular': 1.0, 'is': 2.0, 'comes': 1.0, 'reduce': 1.0, 'diaper': 3.0, 'the': 3.0, 'helps': 1.0, 'cost': 1.0, 'trash': 1.0, 'there': 1.0, 'of': 1.0, 'no': 1.0, 'expensive': 1.0, 'specialty': 1.0, 'smell': 1.0}
Word element => {'recommend': 1.0, 'definitely': 1.0, 'diapers': 1.0, 'second': 1.0, '1': 1.0, 'gone': 1.0, 'no': 1.0, 'simple': 1.0, 'smell': 1.0, 'arm': 2.0, 'it': 5.0, 'this': 1.0, 'with': 2.0, 'flip': 1.0, 'too': 1.0, 'and': 3.0, 'does': 1.0, 'sooooo': 1.0, 'what': 1.0, 'mess': 1.0, 'i': 3.0, 'champ': 1.0, 'genie': 1.0, 'love': 1.0, 'handle': 1.0, 'the': 8.0, 'diaper': 4.0, 'hole': 1.0, 'in': 3.0, 'shove': 1.0, 'also': 1.0, 'needs': 1.0, 'lid': 2.0, 'more': 1.0, 'is': 2.0, 'holds': 2.0, 'off': 1.0, 'pail': 2.0, 'just': 1.0, 'not': 1.0, 'know': 1.0, 'drop': 1.0, 'garbage': 1.0, 'bags': 1.0, 'there': 1.0, 'mean': 1.0, 'have': 1.0, 'any': 1.0, 'cartridges': 1.0, 'to': 1.0, 'wipe': 1.0, 'open': 1.0, '3': 1.0, 'your': 2.0, 'twist': 1.0, 'you': 3.0, 'times': 1.0, 'then': 1.0, 'if': 1.0, 'special': 1.0}
Word element => {'chamber': 1.0, 'right': 1.0, 'under': 1.0, 'sprinkle': 1.0, 'keep': 1.0, 'in': 1.0, 'supermarket': 1.0, 'use': 1.0, 'bags': 2.0, 'on': 1.0, 'money': 1.0, 'spend': 1.0, 'order': 1.0, 'after': 1.0, 'at': 1.0, 'no': 1.0, 'geni': 1.0, 'baking': 1.0, 'and': 1.0, 'special': 1.0, 'need': 1.0, 'a': 2.0, 'given': 1.0, 'bottom': 1.0, 'of': 2.0, 'there': 1.0, 'i': 1.0, 'twisting': 1.0, 'soda': 1.0, 'smell': 1.0, 'ordinary': 1.0, 'extra': 1.0, 'we': 3.0, 'bought': 1.0, 'week': 1.0, 'champ': 1.0, 'this': 1.0, 'control': 1.0, 'diaper': 2.0, 'the': 5.0, 'great': 1.0, 'choice': 1.0, 'is': 1.0, 'was': 2.0, 'to': 2.0}
Word element => {'with': 1.0, 'then': 1.0, 'well': 2.0, 'of': 1.0, 'dispose': 1.0, 'handle': 1.0, 'flip': 1.0, 'before': 1.0, 'get': 1.0, 'probably': 1.0, 'would': 1.0, 'messy': 1.0, 'especially': 1.0, 'baby': 2.0, 'cleaning': 1.0, 'still': 1.0, 'garbage': 1.0, 'that': 1.0, 'as': 2.0, 'to': 5.0, 'doesn': 1.0, 'was': 1.0, 'now': 2.0, 'require': 1.0, 'their': 1.0, 'open': 1.0, 'i': 4.0, 'buy': 1.0, 'this': 1.0, 'bags': 1.0, 'hard': 1.0, 'use': 3.0, 'pail': 4.0, 'the': 8.0, 'replace': 1.0, 'end': 1.0, 'my': 1.0, 'because': 2.0, 'just': 1.0, 'clean': 1.0, 'good': 1.0, 'it': 10.0, 'felt': 1.0, 'more': 1.0, 'is': 3.0, 'at': 2.0, 'got': 1.0, 'didn': 2.0, 'and': 2.0, 't': 4.0, 's': 2.0, 'a': 3.0, 'need': 2.0, 'bag': 1.0, 'regular': 1.0, 'in': 2.0, 'reason': 1.0, 'basement': 1.0, 'child': 1.0, 'don': 1.0, 'up': 1.0, 'work': 1.0, '2': 1.0, 'but': 1.0, 'sitting': 1.0, 'can': 1.0, 'times': 1.0, 'you': 6.0, 'when': 2.0, 'are': 1.0, 'where': 1.0, 'actually': 1.0}
Word element => {'this': 1.0, 'unexpectedly': 1.0, 'shut': 1.0, 'if': 1.0, 'finger': 1.0, 'bag': 1.0, 'changing': 2.0, 'out': 1.0, 'watch': 1.0, 'smell': 1.0, 'cure': 1.0, 'won': 1.0, 'they': 1.0, 'scented': 1.0, 'second': 1.0, 'many': 1.0, 'lid': 1.0, 'may': 1.0, 'my': 1.0, 'clean': 1.0, 'wipes': 2.0, 'it': 4.0, 'of': 1.0, 'stink': 1.0, 'decor': 2.0, 'throwing': 1.0, 'years': 1.0, 'as': 2.0, 'soon': 1.0, 'and': 4.0, 'worst': 1.0, 'bags': 1.0, 'matter': 1.0, 'get': 1.0, 'pale': 2.0, 'lose': 1.0, 'you': 2.0, 'when': 2.0, 'times': 1.0, 'am': 1.0, 'how': 1.0, 'ever': 1.0, 'mine': 1.0, 'for': 2.0, 'i': 3.0, 'worse': 1.0, 'arrives': 1.0, 'in': 1.0, 'go': 1.0, 'a': 1.0, 't': 1.0, 'hole': 1.0, 'stuck': 1.0, 'away': 1.0, 'now': 1.0, 'had': 1.0, '2': 1.0, 'diaper': 1.0, 'slams': 1.0, 'the': 8.0, 'no': 1.0, 'chump': 2.0, 'still': 1.0, 'forget': 2.0, 'also': 1.0, 'stinks': 1.0, 'trash': 1.0, 'caught': 1.0, 've': 1.0, 'drop': 1.0, 'wet': 1.0, 'on': 1.0, 'make': 1.0, 'diapers': 1.0, 'even': 1.0}
Word element => {'if': 1.0, 'problem': 1.0, 'odor': 1.0, 'would': 1.0, 'through': 1.0, 'escape': 1.0, 'allowing': 1.0, 'trashbag': 1.0, 'into': 1.0, 'pushes': 1.0, 'canister': 1.0, 'until': 1.0, 'pail': 2.0, 'see': 1.0, 'never': 3.0, 'ft': 1.0, 'sealed': 1.0, 'this': 1.0, 'from': 1.0, 'complain': 1.0, 'people': 1.0, 'some': 1.0, 'how': 1.0, 'like': 1.0, 'know': 1.0, 'up': 1.0, 'don': 1.0, 'an': 1.0, 'smell': 1.0, 'coming': 1.0, 'have': 3.0, 'only': 1.0, 'empty': 2.0, 'try': 1.0, 'to': 4.0, 'had': 1.0, 'odors': 1.0, 'thus': 1.0, 'smelled': 1.0, 'opted': 1.0, 'so': 2.0, 'boy': 1.0, 'easy': 1.0, 'i': 4.0, 'problems': 1.0, 'old': 1.0, 'bad': 1.0, 'knox': 1.0, 'the': 9.0, 'may': 1.0, 'my': 2.0, 'constantly': 1.0, '9': 1.0, 'and': 3.0, 'trashbags': 1.0, 'since': 1.0, 'use': 2.0, 'refills': 1.0, 'she': 1.0, 'it': 6.0, 'genie': 2.0, 'champ': 1.0, 'way': 1.0, 'always': 1.0, 'thing': 1.0, 'no': 1.0, 'about': 2.0, 'gone': 1.0, 'of': 2.0, 'say': 1.0, 'is': 4.0, 'regular': 1.0, 'diaper': 4.0, 'glad': 1.0, 'inside': 1.0, 'especially': 1.0, 'smells': 1.0, 'complained': 1.0, 'am': 1.0, 'you': 5.0, 'can': 2.0, 'vs': 1.0, 'sister': 1.0, 'w': 1.0, 'really': 1.0, 'flip': 1.0, 'handle': 1.0, 'son': 1.0, 'months': 1.0, 's': 1.0, 't': 1.0, 'a': 3.0, 'we': 1.0}
Word element => {'recommend': 1.0, 'not': 1.0, 'neither': 1.0, 'do': 1.0, 'couldn': 1.0, 'hosed': 1.0, '5': 1.0, 'room': 1.0, 'outside': 1.0, 'adds': 1.0, 'for': 2.0, 'expensive': 1.0, '00': 1.0, 'is': 1.0, 'than': 2.0, 'hands': 1.0, 'that': 2.0, 'system': 2.0, 'through': 1.0, 'you': 2.0, 'smells': 1.0, 'when': 1.0, 'child': 1.0, 'up': 2.0, 'don': 1.0, 'always': 1.0, 'changed': 1.0, 'second': 1.0, 'smelled': 1.0, 'i': 5.0, 'disposal': 1.0, 'genie': 3.0, 'champ': 1.0, 'it': 9.0, 'my': 3.0, 'neat': 2.0, 'fact': 1.0, 'went': 1.0, 'love': 1.0, 'he': 1.0, 'clorox': 1.0, 'faster': 1.0, 'tried': 1.0, 'odor': 1.0, 'smelly': 1.0, 'hated': 1.0, 'first': 1.0, 'with': 5.0, 'highly': 1.0, 'this': 1.0, 'each': 1.0, 'regularly': 2.0, 'problem': 1.0, 'though': 1.0, 'and': 10.0, 'bleach': 1.0, 'nursery': 1.0, 'works': 1.0, 'empty': 1.0, 'down': 2.0, 'took': 1.0, 'even': 2.0, 'husband': 1.0, 'sprayed': 1.0, 'lysol': 1.0, 'the': 10.0, 'of': 2.0, 'no': 1.0, 'want': 1.0, 'avail': 1.0, 'we': 1.0, 'refill': 2.0, 's': 3.0, 'a': 2.0, 't': 2.0, 'also': 2.0, 'little': 1.0, 'think': 1.0, 'better': 1.0, 'but': 1.0, 'still': 1.0, 'wins': 1.0, 'one': 2.0, 'never': 1.0, 'had': 1.0, 'an': 1.0, 'easy': 3.0, 'her': 1.0, 'use': 1.0, 'dispose': 1.0, 'diaper': 6.0, 'annoying': 1.0, 'leave': 1.0, 'something': 1.0, 'hand': 1.0, 'especially': 1.0, 're': 1.0, 'holding': 1.0, 'infant': 1.0, 'out': 1.0, 'to': 5.0, 'pretty': 1.0, 'pail': 2.0}
Word element => {'long': 1.0, 'very': 1.0, 'for': 1.0, 'on': 1.0, 'second': 1.0, 'are': 1.0, 'that': 1.0, 'now': 1.0, 'did': 2.0, 'dipers': 1.0, 'her': 1.0, 'newborn': 1.0, 'was': 1.0, 'using': 2.0, 'easy': 1.0, 'she': 2.0, 'stopped': 1.0, 'it': 5.0, 'with': 3.0, 'first': 1.0, 'only': 1.0, 'other': 1.0, 'smell': 3.0, 'the': 4.0, 'is': 1.0, 'people': 1.0, 'really': 1.0, 'turned': 1.0, 'pregnant': 1.0, 'but': 1.0, 'diper': 1.0, 'use': 2.0, 'loved': 1.0, 'our': 2.0, 'to': 1.0, 'as': 1.0, 'child': 2.0, 'because': 1.0, 'does': 1.0, 'have': 1.0, 'stinky': 1.0, 'not': 4.0, 'walked': 1.0, 'keep': 1.0, 'said': 1.0, 'in': 3.0, 'and': 2.0, 'diperchamp': 2.0, 'there': 1.0, 'my': 1.0, 'daughter': 1.0, 'a': 1.0, 'we': 3.0, 's': 1.0, 'again': 1.0, 'am': 1.0, 'when': 1.0, 'you': 1.0, 'planning': 1.0, 'one': 2.0, 'bought': 1.0, 'entire': 1.0, 'before': 1.0, 'room': 1.0, 'would': 1.0, 'moment': 1.0, 'i': 2.0}
Word element => {'new': 1.0, 'after': 1.0, 'inside': 1.0, 'lysol': 1.0, 'times': 1.0, 'only': 1.0, 'thorough': 1.0, 'done': 1.0, 'actually': 1.0, 'myself': 1.0, 'born': 1.0, 'odors': 1.0, 'keeping': 1.0, 'completely': 1.0, 'does': 2.0, 'it': 3.0, 'baby': 1.0, 'that': 2.0, 'been': 1.0, 'changing': 2.0, 'bedroom': 1.0, 'into': 1.0, 'our': 1.0, 'any': 1.0, 'was': 1.0, 'now': 1.0, 'almost': 1.0, 'of': 3.0, 'the': 5.0, 'good': 2.0, 'clean': 1.0, 'twice': 1.0, 'think': 1.0, 'like': 1.0, 'hand': 1.0, 'advertises': 1.0, 'in': 5.0, 'year': 1.0, 'products': 1.0, 'some': 1.0, 'a': 6.0, 's': 1.0, 'we': 4.0, 't': 1.0, 'hole': 1.0, 'have': 1.0, 'considered': 1.0, 'since': 1.0, '1': 1.0, 'and': 5.0, 'babytrend': 1.0, 'i': 4.0, 'seriously': 1.0, 'live': 1.0, 'champ': 1.0, 'most': 1.0, 'trend': 1.0, 'there': 1.0, 'to': 4.0, 'job': 1.0, 'high': 1.0, 'also': 2.0, 've': 2.0, 'drop': 2.0, 'for': 2.0, 'condo': 1.0, 'can': 1.0, 'pros': 1.0, 'diaper': 1.0, 'heavy': 1.0, 'easy': 2.0, 'kind': 2.0, 'snapngo': 1.0, 'use': 2.0, 'one': 1.0, 'mechanism': 2.0, 'odor': 1.0, 'trapping': 1.0, 'just': 2.0, 'about': 1.0, 'bulky': 1.0, 'grocery': 1.0, 'plastic': 2.0, 'or': 1.0, 'using': 2.0, 'bag': 2.0, 'convenient': 1.0, 'is': 2.0, 'handle': 1.0, 'cons': 1.0, 'even': 1.0, 'what': 1.0, 'when': 1.0, 'you': 1.0, 'empty': 1.0, 'difficult': 1.0, 'open': 1.0, 'lid': 1.0, 'hint': 1.0, 'not': 1.0, 'chair': 1.0, 'watertight': 1.0, 'if': 1.0, 'spray': 3.0, 'cleaning': 2.0, 'don': 1.0, 'water': 2.0, 'll': 1.0, 'trap': 1.0}
Word element => {'lift': 1.0, 'nails': 1.0, 'three': 1.0, 'broke': 1.0, 'but': 1.0, 'smell': 1.0, 'room': 1.0, 'daughter': 1.0, 'my': 1.0, 'pail': 1.0, 'very': 1.0, 'the': 2.0, 'are': 1.0, 'reviews': 1.0, 'registered': 1.0, 'garbage': 1.0, 'after': 1.0, 'reading': 1.0, 'product': 1.0, 'was': 1.0, 'to': 2.0, 'only': 1.0, 'with': 1.0, 'this': 1.0, 'have': 1.0, 'finger': 1.0, 'tight': 1.0, 'for': 1.0, 'i': 4.0, 'say': 1.0, 'disappointed': 1.0, 'trying': 1.0, 's': 1.0, 'you': 1.0, 'did': 1.0, 'better': 1.0, 'lid': 2.0, 'off': 1.0, 'not': 1.0, 'just': 1.0, 'horrible': 1.0, 'and': 1.0, 'getting': 1.0, 'a': 2.0}
Word element => {'must': 1.0, 'absolute': 1.0, 'middle': 1.0, 'pile': 1.0, 'tend': 1.0, 'although': 1.0, 'up': 2.0, 'there': 1.0, 'buy': 1.0, 'you': 1.0, 'how': 1.0, 'in': 1.0, 'seems': 1.0, 'also': 1.0, 'expensive': 1.0, 'smell': 1.0, 'an': 1.0, 'diapers': 1.0, 'champ': 1.0, 'doesn': 1.0, 'are': 1.0, 't': 1.0, 'the': 2.0, 'diaper': 1.0, 'for': 1.0, 'quickly': 1.0, 'no': 1.0, 'bags': 2.0, 'to': 3.0, 'this': 1.0, 'it': 2.0, 'use': 1.0, 'fill': 1.0, 'wonderful': 1.0, 'can': 1.0, 'plastic': 1.0, 'is': 1.0, 'regular': 1.0}
Word element => {'plastic': 1.0, 'on': 1.0, 'works': 1.0, 'even': 1.0, 'gets': 1.0, 'inside': 1.0, '3': 2.0, 'trash': 1.0, 'who': 1.0, 'if': 1.0, 'still': 4.0, 'son': 4.0, 'approved': 1.0, 'do': 3.0, 'only': 1.0, 'a': 1.0, 't': 2.0, 'we': 4.0, 'reviews': 2.0, 'read': 1.0, 'and': 5.0, 'nightie': 1.0, 'lid': 1.0, 'odor': 2.0, 'for': 6.0, 'decided': 1.0, 'is': 4.0, 'handle': 2.0, 'now': 1.0, 'to': 9.0, 'bye': 2.0, 'can': 2.0, 'but': 2.0, 'the': 17.0, 'careful': 1.0, 'wrap': 1.0, 'enough': 1.0, 'placed': 1.0, 'years': 2.0, 'about': 1.0, 'old': 1.0, 'genie': 2.0, 'this': 1.0, 'it': 7.0, '2': 1.0, 'trick': 1.0, 'messy': 1.0, 'going': 1.0, 'finally': 1.0, 'an': 1.0, 'give': 1.0, 'my': 3.0, 'me': 1.0, 'didn': 1.0, 'first': 1.0, 'diapers': 1.0, 'getting': 1.0, 'strong': 2.0, 'champ': 1.0, 'potty': 1.0, 'time': 1.0, 'trained': 1.0, 'hold': 1.0, 'good': 1.0, 'which': 2.0, 'things': 1.0, 'night': 1.0, 'them': 1.0, 'magic': 1.0, 've': 1.0, 'been': 1.0, 'difficult': 1.0, 'loves': 1.0, 'mom': 1.0, 'according': 1.0, 'was': 2.0, 'before': 1.0, 'febreeze': 1.0, 'i': 7.0, 'putting': 1.0, 'dypes': 1.0, 'in': 2.0, 'use': 1.0, 'anyway': 1.0, 'change': 1.0, 'up': 1.0, 'really': 1.0, 'try': 2.0, 'too': 3.0, 'one': 1.0, 'ones': 1.0, 'strongly': 1.0, 'had': 2.0, 'flipped': 1.0, 'love': 1.0, 'he': 1.0, 'right': 1.0, 'using': 2.0, 'bag': 1.0, 'easy': 1.0, 'pull': 1.0, 'considers': 1.0, 'say': 2.0, 'experience': 1.0, 'what': 1.0, 'when': 1.0, 'diaper': 1.0, 'bags': 1.0}
Word element => {'clean': 1.0, 'time': 1.0, 'from': 1.0, 'odors': 1.0, 'champ': 1.0, 'strong': 1.0, 'if': 1.0, 'good': 1.0, 'all': 1.0, 'over': 1.0, 'thing': 1.0, 'same': 1.0, 'trying': 1.0, 'times': 1.0, 'many': 1.0, 'caught': 1.0, 'found': 1.0, 'extensive': 1.0, 'after': 1.0, 'missing': 1.0, 'out': 3.0, 'emptying': 1.0, 'full': 1.0, 'this': 1.0, 'you': 3.0, 'when': 2.0, 'smells': 1.0, 'am': 1.0, 's': 3.0, 'a': 4.0, 'then': 1.0, 'we': 1.0, 't': 2.0, 'going': 1.0, 'could': 1.0, 'did': 1.0, 'or': 1.0, 'until': 2.0, 'since': 1.0, '1': 1.0, 'wipe': 1.0, 'sippy': 2.0, 'and': 5.0, 'now': 2.0, 'pail': 1.0, 'to': 7.0, 'cup': 1.0, 'cups': 1.0, 'only': 2.0, 'empty': 2.0, 'lycol': 1.0, 'than': 1.0, 'does': 1.0, 'use': 2.0, 'diapers': 1.0, 'wouldn': 1.0, 'hole': 1.0, 'didn': 1.0, 'but': 1.0, 'can': 1.0, 'so': 1.0, 'product': 1.0, 'year': 2.0, 'the': 14.0, 're': 1.0, 'my': 2.0, 'old': 1.0, 'fact': 1.0, 'really': 1.0, 'think': 1.0, 'flip': 1.0, 'say': 1.0, 'trash': 1.0, 'coming': 1.0, 'i': 8.0, 'genie': 2.0, 'sister': 1.0, 'disinfecting': 1.0, 'him': 1.0, 'it': 12.0, 'has': 1.0, 'easier': 1.0, 'never': 1.0, 'some': 1.0, 'searching': 1.0, 'for': 2.0, 'such': 1.0, 'problems': 1.0, 'that': 2.0, 'loves': 1.0, 'into': 1.0, 'have': 3.0, 'smell': 3.0, 'saturate': 1.0, 've': 1.0, 'would': 1.0, 'used': 1.0, 'problem': 1.0, 'though': 1.0, 'whenever': 1.0, 'reason': 1.0, 'bag': 1.0, 'started': 1.0, 'generally': 1.0, 'toys': 1.0, 'regular': 1.0, 'in': 1.0, 'diaper': 4.0, 'bags': 1.0, 'went': 1.0, 'inside': 2.0, 'with': 1.0, 'why': 1.0, 'buy': 1.0, 'etc': 1.0, 'day': 1.0, 'much': 1.0, 'do': 2.0, 'put': 1.0, 'items': 1.0, 'top': 1.0, 'is': 3.0, 'handle': 1.0, 'realize': 1.0, 'love': 1.0, 'he': 1.0, 'one': 1.0}
Word element => {'friends': 1.0, 'require': 2.0, 'not': 3.0, 'picked': 1.0, 'it': 6.0, 'this': 1.0, 'we': 2.0, 'about': 1.0, 'much': 1.0, 'knowing': 1.0, 'refills': 2.0, 'and': 3.0, 'i': 2.0, 'husband': 1.0, 'had': 1.0, 'odor': 1.0, 'registered': 1.0, 'really': 3.0, 'my': 3.0, 'without': 1.0, 'the': 2.0, 'diaper': 3.0, 'for': 1.0, 'did': 2.0, 'genie': 1.0, 'purchasing': 1.0, 'champ': 2.0, 'which': 1.0, 'like': 3.0, 'regular': 1.0, 'in': 1.0, 'because': 2.0, 'sister': 1.0, 'does': 1.0, 'law': 1.0, 'uses': 1.0, 'kitchen': 1.0, 'trash': 1.0, 'completely': 1.0, 'recommending': 1.0, 'bags': 1.0, 'keeps': 1.0, 'out': 1.0, 'am': 1.0, 'to': 1.0, 'our': 1.0, 'all': 1.0, 'pregnant': 1.0}
Word element => {'great': 1.0, 'what': 1.0, 'buy': 1.0, 'list': 1.0, 'on': 1.0, 'else': 1.0, 'need': 1.0, 'toys': 1.0, 'invention': 1.0, 'buying': 1.0, 'with': 1.0, 'bags': 1.0, 'just': 1.0, 'love': 1.0, 'didn': 1.0, 'diapers': 1.0, 'got': 1.0, 'a': 1.0, 't': 1.0, 'we': 1.0, 'purchases': 1.0, 'it': 5.0, 'that': 3.0, 'favorite': 1.0, 'of': 1.0, 'champ': 1.0, 'house': 1.0, 'diaper': 1.0, 'the': 2.0, 'my': 3.0, 'and': 2.0, 'ok': 1.0, 'now': 1.0, 'our': 2.0, 'to': 3.0, 'was': 1.0, 'say': 1.0, 'is': 4.0, '18': 1.0, 'have': 2.0, 'can': 1.0, 'most': 1.0, 'but': 1.0, 'change': 1.0, 'pregnant': 1.0, 'thing': 1.0, 'months': 1.0, 'one': 1.0, 'i': 5.0, 'old': 1.0, 'in': 1.0, 'kroger': 1.0, 'use': 1.0, 'hopes': 1.0, 'something': 1.0, 'would': 1.0, 'pretty': 1.0, 'well': 2.0, 'does': 1.0, 'keep': 1.0, 'at': 1.0, 'when': 1.0, 'you': 1.0, 'son': 1.0, 'still': 1.0, 'smelling': 1.0, 'out': 1.0, 'everyday': 1.0, 'poop': 1.0, 'however': 1.0}
Word element => {'for': 1.0, 'a': 1.0, 'and': 1.0, 'garage': 1.0, 'product': 1.0, 'help': 1.0, 'didn': 1.0, 'purchased': 1.0, 'every': 1.0, 'bag': 1.0, 'even': 2.0, 'than': 1.0, 'plastic': 1.0, 'garbage': 1.0, 'pail': 1.0, 'to': 1.0, 'odor': 1.0, 'genie': 1.0, 'whole': 1.0, 'tried': 1.0, 'deal': 1.0, 'day': 1.0, 'from': 1.0, 'changing': 1.0, 'we': 2.0, 've': 1.0, 'grocery': 1.0, 'diaper': 1.0, 't': 1.0, 'the': 4.0, 'heavy': 1.0, 'nursery': 1.0, 'tall': 1.0, 'kitchen': 1.0, 'sacks': 1.0, 'bags': 2.0, 'moved': 1.0, 'this': 2.0, 'with': 1.0, 'duty': 1.0}
Word element => {'time': 1.0, 'due': 1.0, 'duty': 1.0, 'fails': 1.0, 'replace': 1.0, 'prepared': 1.0, 'not': 1.0, 'recommend': 1.0, 'd': 1.0, 'purchasing': 1.0, 'finances': 1.0, 'style': 1.0, 'any': 1.0, 'finding': 1.0, 'am': 1.0, 'another': 2.0, 'individually': 1.0, 'out': 1.0, 'each': 1.0, 'room': 1.0, 's': 2.0, 'son': 1.0, 'from': 1.0, 'been': 1.0, 'this': 2.0, 'term': 1.0, 'short': 1.0, 'our': 2.0, 'disappointed': 1.0, 'a': 4.0, 'you': 1.0, 'success': 1.0, 'things': 1.0, 'odor': 5.0, 'problem': 1.0, 'making': 1.0, 'began': 1.0, 'altogether': 1.0, 'do': 1.0, 'match': 1.0, 'removed': 2.0, 'week': 1.0, 'be': 2.0, 'experience': 1.0, 'liner': 1.0, 'tumbler': 1.0, 'empty': 1.0, 'loose': 1.0, 'deoderizers': 1.0, 'economical': 1.0, 'bit': 1.0, 'so': 1.0, 'sake': 1.0, 'trashbag': 1.0, 'expected': 1.0, 'taking': 1.0, 'deoderizing': 1.0, 'has': 2.0, 'my': 2.0, 'free': 1.0, 'diaper': 2.0, 'bags': 1.0, 'as': 1.0, 'all': 1.0, 'eventually': 1.0, 'sprinklings': 1.0, 'actual': 1.0, 'for': 5.0, 'product': 1.0, 'year': 1.0, 'manageable': 1.0, 'in': 6.0, 'regular': 2.0, 'resistant': 1.0, 'now': 3.0, 'air': 1.0, 'of': 8.0, 'the': 12.0, 'we': 4.0, 'then': 1.0, 'loved': 1.0, 'use': 2.0, 'i': 4.0, 'get': 1.0, 'and': 9.0, 'changes': 2.0, 'still': 1.0, 'quot': 2.0, 'kitchen': 1.0, 'baking': 1.0, 'ease': 1.0, 'had': 1.0, 'was': 1.0, 'cleanliness': 1.0, 'number': 1.0, 'come': 1.0, 'it': 5.0, 'with': 3.0, 'but': 2.0, 'less': 1.0, 'change': 1.0, 'light': 1.0, 'looking': 1.0, 'bag': 3.0, 'cleanings': 1.0, 'airings': 1.0, 'interested': 1.0, 'soda': 1.0, 'have': 2.0, 'is': 1.0, 'that': 2.0, 'no': 3.0, 'about': 1.0, 'amount': 1.0, 'unless': 1.0, 'after': 1.0, 'cleaning': 1.0, 'freshners': 1.0, 'twice': 1.0, 'us': 1.0, 'managed': 1.0, 'first': 1.0, 'are': 4.0, 'eliminate': 1.0, 'really': 1.0, 'disinfectants': 1.0, 'champ': 4.0, 'stuck': 1.0, 'strong': 1.0, 'tried': 1.0, 'seems': 1.0, 'clinging': 1.0, 'to': 8.0, 'pail': 3.0, 've': 1.0, 'they': 1.0, 'real': 1.0, 'offensive': 1.0, 'even': 1.0, 'when': 2.0, 'clean': 1.0}
Word element => {'close': 1.0, 'sticky': 1.0, 'tightly': 1.0, 'up': 2.0, 'roll': 1.0, 'sure': 1.0, 'when': 1.0, 'week': 1.0, 'used': 1.0, 'make': 1.0, 'on': 1.0, 'old': 1.0, 'months': 1.0, 'bought': 1.0, 'initially': 1.0, 'genie': 1.0, 'champ': 2.0, 'or': 1.0, 'first': 1.0, 'toddler': 1.0, 'loud': 1.0, 'have': 1.0, '9': 1.0, 'love': 2.0, 'for': 1.0, 'switched': 1.0, 'the': 5.0, 'diaper': 4.0, 'year': 1.0, 'it': 7.0, 'disliked': 1.0, 'i': 2.0, 'two': 1.0, 'once': 1.0, 'and': 6.0, 'so': 1.0, 'really': 1.0, 'fine': 1.0, 'but': 1.0, 'change': 2.0, 'was': 1.0, 'son': 1.0, 'difficult': 1.0, 'just': 1.0, 'use': 2.0, 'tabs': 1.0, 'then': 1.0, 'us': 1.0, 'odors': 1.0, 'broke': 1.0, 'contains': 1.0, 'to': 3.0, 'our': 1.0, 'we': 6.0, 'a': 4.0, 's': 1.0, 'bag': 1.0}
Word element => {'storing': 1.0, 'for': 1.0, 'diapers': 1.0, 'champ': 1.0, 'recommend': 1.0, 'expensive': 1.0, 'stinky': 1.0, 'have': 1.0, 'where': 1.0, 'versus': 1.0, 'bags': 1.0, 'gift': 1.0, 'bought': 1.0, 'their': 1.0, 'easier': 1.0, 'as': 1.0, 'highly': 1.0, 'any': 1.0, 'the': 2.0, 'diaper': 3.0, 'a': 2.0, 'being': 1.0, 'much': 1.0, 'to': 2.0, 'after': 1.0, 'with': 1.0, 'this': 3.0, 'bag': 1.0, 'genie': 2.0, 'i': 2.0, 'type': 1.0, 'is': 1.0, 'purchase': 1.0, 'use': 2.0, 'you': 2.0, 'gievn': 1.0, 'can': 1.0, 'trash': 1.0, 'of': 1.0}
Word element => {'know': 1.0, 'everyone': 1.0, 'to': 1.0, 'recommed': 1.0, 'still': 1.0, 'years': 1.0, '3': 1.0, 'champ': 1.0, 'my': 1.0, 'those': 1.0, 'product': 2.0, 'on': 1.0, 'is': 1.0, 'value': 1.0, 'good': 1.0, 'and': 2.0, 'changing': 1.0, 'for': 2.0, 'using': 1.0, 'it': 1.0, 'this': 2.0, 'budjet': 1.0, 'bag': 1.0, 'have': 1.0, 'lysol': 1.0, 'after': 1.0, 'diaper': 1.0, 'great': 1.0, 'the': 1.0, 'a': 3.0, 'well': 1.0, 'i': 3.0, 'works': 2.0, 'used': 1.0}
Word element => {'this': 1.0, 'recommend': 1.0, 'exaggeration': 1.0, 'no': 1.0, 'from': 1.0, 'just': 1.0, 'summer': 1.0, 'during': 1.0, 'her': 1.0, 'in': 1.0, 'keep': 2.0, 'had': 1.0, 'other': 1.0, 'per': 1.0, 'if': 1.0, 'regularly': 1.0, 'yes': 1.0, 'poopy': 1.0, 'd': 1.0, 'm': 1.0, 'daughter': 1.0, 'difficult': 1.0, 'choking': 1.0, 'because': 1.0, 'champ': 1.0, 'easy': 1.0, 'but': 1.0, 'change': 2.0, 'very': 1.0, 'open': 1.0, 'use': 1.0, 'refills': 1.0, 'to': 5.0, 'any': 2.0, 'fan': 1.0, 'i': 4.0, 'also': 1.0, 'wasn': 1.0, 'newborn': 1.0, 'it': 2.0, 'with': 1.0, 'do': 1.0, 'only': 1.0, 'opted': 1.0, 'the': 6.0, 'diaper': 2.0, 'smell': 2.0, 'control': 1.0, 'product': 1.0, 'afraid': 1.0, 'for': 1.0, 'one': 1.0, 'there': 2.0, 'of': 1.0, 'level': 1.0, 'is': 3.0, 'completely': 2.0, 'isn': 2.0, 'takes': 1.0, 'ripping': 1.0, 'off': 1.0, 'everytime': 1.0, 'bag': 2.0, 'my': 2.0, 'odor': 2.0, 'fingernail': 1.0, 'problem': 2.0, 'on': 1.0, 'constantly': 1.0, 'we': 2.0, 'a': 4.0, 't': 3.0, 's': 1.0, 'room': 2.0, 'posts': 1.0, 'smells': 1.0}
Word element => {'or': 1.0, 'fixed': 1.0, 'be': 1.0, 'special': 1.0, 'then': 1.0, 'no': 1.0, 'some': 2.0, 't': 1.0, 'diaper': 1.0, 'the': 1.0, 'necessary': 1.0, 'febreeze': 1.0, 'are': 1.0, 'better': 1.0, 'much': 1.0, 'so': 1.0, 'genie': 1.0, 's': 2.0, 'with': 1.0, 'it': 2.0, 'can': 1.0, 'bags': 1.0, 'occasionally': 1.0, 'lysol': 1.0, 'there': 1.0, 'that': 1.0, 'bad': 1.0, 'odors': 1.0, 'but': 1.0, 'nothing': 1.0}
Word element => {'away': 1.0, 'get': 1.0, 'you': 1.0, 'bag': 1.0, 'out': 1.0, 'odors': 1.0, 'change': 1.0, 'but': 2.0, 'sanitary': 1.0, 'keep': 1.0, 'at': 2.0, 'no': 3.0, 'full': 1.0, 'many': 1.0, 'days': 1.0, 'day': 1.0, 'diapers': 1.0, 'champ': 1.0, 'or': 1.0, 'leak': 1.0, 'diaper': 1.0, 'the': 5.0, 'chamber': 1.0, 'could': 1.0, 'we': 1.0, 'a': 1.0, 's': 2.0, 'with': 3.0, 'it': 3.0, 'daily': 2.0, 'room': 1.0, 'my': 1.0, 'absolutely': 1.0, 'bags': 1.0, 'has': 1.0, 'holds': 1.0, 'trash': 2.0, 'of': 1.0, 'lysol': 1.0, 'odor': 2.0, 'baby': 1.0, 'clorox': 1.0, 'because': 1.0, 'to': 1.0, 'least': 1.0, 'all': 1.0, 'two': 1.0, 'otherwise': 1.0, 'i': 2.0, 'also': 1.0, 'regular': 1.0, 'in': 1.0, 'love': 1.0, 'top': 1.0, 'handle': 1.0, 'that': 1.0, 'so': 1.0, 'economical': 1.0, 'takes': 1.0, 'spray': 1.0, 'and': 1.0, 'receptacle': 1.0, 'use': 1.0, 'wipes': 1.0}
Word element => {'key': 1.0, 'have': 1.0, 'pieces': 1.0, 'between': 1.0, 'cushioned': 1.0, 'piece': 1.0, 'take': 1.0, 'overloading': 1.0, 'be': 1.0, 'looking': 1.0, 're': 1.0, 'stinkiness': 1.0, 'retain': 1.0, 'now': 1.0, 'wonderful': 1.0, 'worked': 1.0, '16': 1.0, 'and': 3.0, 'months': 1.0, 've': 1.0, 'in': 1.0, 'us': 1.0, 'i': 3.0, 'experienced': 1.0, 'read': 1.0, 'easy': 1.0, 'for': 3.0, 'to': 2.0, 'has': 1.0, 'review': 1.0, 'keeping': 1.0, 'replacement': 1.0, 'out': 5.0, 'loner': 1.0, 'clean': 1.0, 'mistake': 1.0, 'big': 1.0, 'pulled': 1.0, 'it': 5.0, 'this': 1.0, 'is': 2.0, 'explain': 1.0, 'material': 1.0, 'exactly': 1.0, 'a': 4.0, 'we': 3.0, 'that': 4.0, 'had': 1.0, 'what': 1.0, 'part': 1.0, 'no': 2.0, 'smells': 1.0, 'can': 2.0, 'change': 1.0, 'figured': 1.0, 'week': 1.0, 'then': 1.0, 'snagged': 1.0, 'diaper': 1.0, 'careful': 1.0, 'the': 5.0, 'never': 1.0, 'foam': 3.0, 'head': 1.0, 'so': 1.0, 'below': 1.0, 'rest': 1.0, 'stink': 1.0, 'once': 1.0, 'of': 2.0}
Word element => {'them': 1.0, 'to': 1.0, 'listened': 1.0, 'have': 1.0, 'should': 1.0, 'me': 1.0, 'scented': 1.0, 'bags': 2.0, 'still': 1.0, 'used': 1.0, 'sprayed': 1.0, 'wipes': 1.0, 'days': 1.0, 'with': 2.0, 'this': 2.0, 'the': 5.0, 'and': 5.0, '1': 1.0, 'wiped': 1.0, 'lysol': 1.0, 'clorox': 1.0, 'trash': 1.0, 'told': 1.0, 'thing': 3.0, 'stinks': 2.0, 'diapers': 1.0, 'freakin': 1.0, 'literally': 1.0, 'through': 1.0, 'i': 4.0, 'changed': 1.0, 'bagsand': 1.0, 'smell': 2.0, 'every': 1.0, 'seeping': 1.0, 'anyway': 1.0, 'now': 2.0, 'just': 1.0, 'throw': 1.0, 'regular': 1.0, 'in': 1.0, 'since': 1.0, 't': 1.0, 'vanilla': 1.0, 'could': 1.0, 'we': 2.0, 'a': 1.0, 'everyday': 1.0, '2': 1.0, 'change': 1.0, 'can': 1.0, 'smells': 1.0, 'someone': 1.0, 'else': 1.0}
Word element => {'product': 1.0, 'recommend': 1.0, 'once': 1.0, 'this': 3.0, 'potentially': 1.0, 'could': 1.0, 'only': 3.0, 'empty': 1.0, 'flipping': 1.0, 'thing': 2.0, 'bought': 1.0, 'reason': 1.0, 'bag': 2.0, 'when': 3.0, 'noticed': 1.0, 'on': 4.0, 'walls': 2.0, 'keeps': 1.0, 'any': 1.0, 'to': 7.0, 'one': 1.0, 'vertical': 1.0, 'regular': 1.0, 'in': 4.0, 'cylinder': 1.0, 'so': 1.0, 'can': 1.0, 'nice': 1.0, 'far': 1.0, 'tabs': 1.0, 'flipper': 1.0, 'line': 1.0, 'genie': 1.0, 'goes': 1.0, 'you': 5.0, 'upside': 1.0, 'trash': 2.0, 'caught': 2.0, 'around': 1.0, 'a': 1.0, 'reviews': 1.0, 'then': 1.0, 'we': 4.0, 'glad': 1.0, 'might': 1.0, 'and': 4.0, 'diaper': 5.0, 'bags': 2.0, 'from': 1.0, 'out': 2.0, 'understand': 1.0, 'part': 1.0, 'almost': 1.0, 'of': 1.0, 'the': 18.0, 'place': 1.0, 'store': 1.0, 'read': 1.0, 'very': 1.0, 'easy': 3.0, 'except': 1.0, 'get': 3.0, 'use': 2.0, 'odor': 1.0, 'listened': 1.0, 'changing': 1.0, 'gave': 1.0, 'into': 1.0, 'hard': 1.0, 'open': 1.0, 'just': 1.0, 'stuff': 2.0, 'why': 1.0, 'it': 4.0, 'replace': 1.0, '4': 1.0, 'stars': 1.0, 'that': 4.0, 'because': 1.0, 'completely': 1.0, 'sometimes': 1.0, 'after': 1.0, 'between': 1.0, 'wipes': 1.0, 'even': 1.0, 'picture': 1.0, 'velcro': 1.0, 'space': 3.0, 'sides': 2.0, 'dump': 1.0, 'canister': 1.0, 'still': 1.0, 'if': 1.0, 'twice': 1.0, 'flip': 1.0, 'inside': 1.0, 've': 1.0, 'down': 1.0, 'or': 2.0, 'there': 1.0, 'bad': 1.0, 'are': 2.0, 'is': 4.0, 'at': 1.0, 'handle': 2.0, 'look': 1.0, 'snug': 1.0, 'round': 2.0, 'something': 1.0, 'flips': 1.0}
Word element => {'are': 1.0, 'or': 1.0, 'carefully': 1.0, 'check': 1.0, 'beware': 1.0, 'can': 1.0, 'but': 1.0, 'another': 1.0, 'fail': 1.0, 're': 1.0, 'is': 1.0, 'now': 1.0, 'through': 1.0, 'probably': 1.0, 'to': 3.0, 'had': 1.0, 'use': 1.0, 'got': 2.0, 'snagged': 1.0, 'sure': 1.0, 'get': 1.0, 'easy': 1.0, 'no': 3.0, 'these': 1.0, 'some': 1.0, 'worked': 1.0, 'very': 1.0, 'there': 1.0, 'somehow': 1.0, 've': 1.0, '18': 1.0, 'you': 1.0, 'smells': 1.0, 'the': 7.0, 'diaper': 3.0, 'visible': 1.0, 'teeniest': 1.0, 'recently': 1.0, 'for': 2.0, 'insulation': 1.0, 'champ': 4.0, 'months': 1.0, 'make': 1.0, 'on': 1.0, 'it': 3.0, 'overloaded': 1.0, 'once': 1.0, 'of': 1.0, 'and': 3.0, 'adhesive': 1.0, 'going': 1.0, 'we': 2.0, 'a': 1.0, 'until': 1.0, 'great': 1.0, 'pulled': 1.0, 'foam': 3.0, 'insulates': 1.0, 'head': 1.0, 'that': 3.0, 'hope': 1.0, 'just': 2.0, 'poop': 1.0, 'tiniest': 1.0, 'corner': 1.0, 'out': 1.0, 'mesh': 2.0, 'from': 1.0, 'soaked': 1.0}
Word element => {'easier': 1.0, 'first': 1.0, '100': 1.0, 'up': 1.0, 'over': 3.0, 'do': 1.0, 'only': 1.0, 'dollars': 1.0, 'hang': 1.0, 'ten': 1.0, 'than': 1.0, 'they': 1.0, 'kitchen': 1.0, 'target': 1.0, 'at': 2.0, 'hard': 1.0, 'bags': 3.0, 'of': 2.0, 'open': 1.0, 'should': 1.0, 'whenever': 1.0, 'are': 1.0, 'face': 1.0, 'let': 1.0, 'pail': 2.0, 'buying': 1.0, 'friend': 2.0, 'i': 7.0, 'had': 2.0, 'diaper': 5.0, 'quality': 1.0, 'less': 1.0, 'champ': 3.0, 'dekor': 1.0, 'recommend': 2.0, 'needed': 1.0, 'if': 2.0, 'want': 1.0, 'is': 4.0, 's': 1.0, 't': 1.0, 'a': 4.0, 'use': 1.0, 'refills': 2.0, 'gets': 1.0, 'still': 2.0, 'it': 11.0, 'change': 1.0, 'can': 1.0, 'but': 2.0, 'money': 2.0, 'my': 1.0, 'save': 2.0, 'another': 1.0, 'me': 1.0, 'get': 3.0, 'and': 5.0, 'couldn': 1.0, 'again': 1.0, 'loosens': 1.0, 'you': 5.0, 'when': 1.0, 'came': 1.0, 'complaint': 1.0, 'down': 1.0, 'think': 1.0, 'make': 1.0, 'the': 9.0, 'myself': 1.0, 'great': 1.0, 'spend': 1.0, 'buy': 4.0, 'extra': 1.0, 'product': 1.0, 'expensive': 3.0, 'for': 3.0, 'would': 1.0, 'cost': 1.0, 'new': 1.0, 'something': 1.0, 'box': 1.0, 'babies': 1.0, 'that': 3.0, 'really': 1.0, 'every': 1.0, 'time': 2.0, 'have': 1.0, 'almost': 1.0, 'to': 7.0, 'as': 3.0}
Word element => {'another': 1.0, 'than': 1.0, 'pails': 1.0, 'different': 1.0, 'his': 1.0, 'he': 2.0, 'genie': 1.0, 'brother': 1.0, 'much': 1.0, 'diaper': 2.0, 'any': 2.0, 'that': 2.0, 'dry': 1.0, 'figured': 1.0, 'least': 1.0, 'our': 2.0, 'keep': 1.0, 'from': 2.0, 'week': 1.0, 'slightest': 1.0, 'can': 2.0, '2': 1.0, 'but': 2.0, 'you': 3.0, 'odor': 2.0, 'tried': 2.0, 'rid': 1.0, 'out': 3.0, 'equally': 1.0, 'lysol': 1.0, 'girlfriend': 1.0, 'absorbed': 1.0, 'use': 1.0, 'now': 1.0, 'mos': 1.0, 'day': 1.0, 'kill': 1.0, 'both': 2.0, 'what': 1.0, 'standing': 1.0, 'detect': 2.0, 'in': 3.0, 'said': 1.0, 'and': 6.0, 'play': 1.0, 'nursery': 4.0, 'think': 1.0, 'better': 2.0, 'pack': 1.0, 'satellite': 1.0, 't': 4.0, 'we': 4.0, 'a': 4.0, 's': 1.0, 'of': 4.0, 'the': 12.0, 'my': 3.0, 'nearly': 1.0, 'change': 2.0, 'up': 1.0, 'don': 1.0, '3x': 1.0, 'sun': 1.0, 'alone': 1.0, 'for': 1.0, 'whiff': 1.0, 'lot': 1.0, 'one': 6.0, 'i': 5.0, 'call': 1.0, 'pail': 1.0, 'to': 2.0, 'pretty': 1.0, '8': 1.0, 'inside': 1.0, 'have': 1.0, 'at': 1.0, 'is': 5.0, 'cleaning': 1.0, 'getting': 2.0, 'daughter': 1.0, 'foam': 2.0, 'downstairs': 2.0, 'with': 1.0, 'letting': 1.0, 'would': 1.0, 'it': 6.0, 'hot': 1.0, 'says': 1.0, 'lv': 1.0, 'smelly': 2.0, 'whole': 1.0, 'no': 1.0, 'scorching': 1.0, 'soaked': 1.0, 'heat': 1.0, 'just': 1.0, 'anything': 1.0, 'stinks': 1.0, 'other': 1.0, 'all': 1.0, 'an': 1.0, 'doesn': 2.0, 'every': 1.0, 'still': 1.0, 'if': 1.0, 'stink': 2.0, 'being': 1.0, 'where': 1.0, 're': 1.0, 'right': 1.0, 'them': 2.0, 'has': 4.0, 'next': 1.0, 'get': 1.0, 'there': 2.0, 'few': 1.0, 'this': 1.0, 'however': 1.0, 'know': 1.0}
Word element => {'highly': 1.0, 'recommend': 1.0, 'with': 1.0, 'pleased': 1.0, 'very': 1.0, 'nursery': 1.0, 'permeating': 1.0, 'regular': 1.0, 'way': 1.0, 'kitchen': 1.0, 'it': 2.0, 'overall': 1.0, 'husband': 1.0, 'our': 1.0, 'to': 2.0, 'uses': 1.0, 'i': 1.0, 'buy': 1.0, 'and': 4.0, 'style': 1.0, 'vs': 1.0, 'genie': 2.0, 'less': 1.0, 'efficient': 1.0, 'because': 2.0, 'the': 5.0, 'diaper': 1.0, 'these': 1.0, 'purchase': 1.0, 'my': 1.0, 'wanted': 1.0, 'anywhere': 1.0, 'is': 1.0, 'more': 1.0, 'trash': 1.0, 'we': 1.0, 'a': 1.0, 'go': 1.0, 'both': 1.0, 'can': 1.0, 'they': 1.0, 'are': 2.0, 'from': 1.0, 'specialty': 1.0, 'bags': 3.0, 'compared': 1.0, 'expensive': 1.0, 'for': 1.0, 'one': 1.0, 'unique': 1.0, 'this': 2.0, 'allows': 1.0, 'handed': 1.0, 'hopper': 1.0, 'keeps': 1.0, 'design': 1.0, 'use': 1.0, 'you': 1.0, 'smells': 1.0}
Word element => {'recommend': 1.0, 'that': 1.0, 'so': 1.0, 'even': 1.0, 'days': 1.0, 'of': 2.0, 'couple': 1.0, 'bag': 1.0, 'in': 1.0, 'odors': 1.0, 'keep': 1.0, 'had': 1.0, 'to': 3.0, 'now': 1.0, 'smell': 1.0, 'buying': 1.0, 'with': 1.0, 'it': 5.0, 'don': 1.0, 'about': 1.0, 'is': 3.0, 'every': 1.0, 'really': 1.0, 'surprised': 1.0, 'change': 1.0, 'but': 1.0, 'i': 4.0, 'champ': 1.0, 'genie': 1.0, 'just': 2.0, 'disgusting': 1.0, 'not': 3.0, 'the': 6.0, 'great': 1.0, 'we': 1.0, 't': 1.0, 'diaper': 2.0, 'read': 1.0, 'very': 1.0, 'and': 2.0, 'problem': 1.0, 'people': 1.0, 'pretty': 2.0, 'when': 1.0, 'am': 2.0, 'hear': 1.0, 'else': 1.0, 'have': 3.0, 'product': 1.0, 'for': 1.0, 'effective': 1.0, '16': 1.0, 'months': 1.0, 'think': 1.0, 'compare': 1.0, 'full': 1.0, 'this': 1.0, 'frankly': 1.0, 'considering': 1.0, 'would': 1.0, 'cost': 1.0, 'something': 1.0, 'reviews': 1.0, 'cause': 1.0, 'because': 2.0, 'does': 1.0}
Word element => {'of': 1.0, 'bring': 1.0, 'sign': 1.0, 'gagging': 1.0, 'started': 1.0, 'law': 1.0, 'opinion': 1.0, 'for': 1.0, 'in': 3.0, 'us': 1.0, 'just': 1.0, 'nursery': 1.0, 'mother': 1.0, 'loved': 2.0, 'use': 1.0, 'and': 3.0, 'champs': 1.0, 'not': 2.0, 'maybe': 2.0, 'because': 1.0, 'the': 6.0, 'diaper': 3.0, 'called': 1.0, 'are': 2.0, 'reviews': 1.0, 'horrid': 1.0, 'reason': 1.0, 'masks': 1.0, 'their': 1.0, 'that': 2.0, 'were': 2.0, 'purchased': 1.0, 'thought': 2.0, 'she': 1.0, 'it': 3.0, 'equal': 1.0, 'mixed': 1.0, 'happy': 2.0, 'my': 1.0, 'champ': 2.0, 'really': 1.0, 'hee': 2.0, 'you': 1.0, 'gah': 1.0, 'is': 1.0, 'odors': 1.0, 'second': 2.0, 'toxic': 1.0, 'strong': 1.0, 'on': 1.0, 'created': 1.0, 'no': 1.0, 'rid': 1.0, 'odor': 1.0, 'was': 3.0, 'to': 1.0, 'smile': 1.0, 'all': 1.0, 'our': 2.0, 'any': 1.0, 'bag': 1.0, 'very': 1.0, 'so': 3.0, 'one': 2.0, 'bought': 1.0, 'gas': 1.0, 'we': 8.0, 'could': 1.0, 'a': 2.0, 'oh': 1.0}
Word element => {'recommend': 1.0, 'highly': 1.0, 'very': 1.0, 'year': 1.0, 'over': 1.0, 'and': 2.0, 'dg': 1.0, 'same': 1.0, 'about': 1.0, 'probably': 1.0, 'is': 2.0, '100': 1.0, 'price': 1.0, 'solids': 1.0, 'of': 1.0, 'once': 1.0, 'easy': 2.0, 'get': 1.0, 'also': 2.0, 'will': 2.0, 'they': 1.0, 'to': 3.0, 'as': 3.0, 'not': 1.0, 'are': 1.0, 'have': 2.0, 'pays': 1.0, 'champ': 2.0, 'control': 1.0, 'an': 1.0, 'diapers': 1.0, 'the': 5.0, 'glad': 1.0, 'diaper': 2.0, 'months': 1.0, 'on': 1.0, 'bottom': 1.0, 'change': 1.0, 'but': 1.0, 'money': 1.0, 'baby': 1.0, 'line': 1.0, 'saves': 1.0, 'rf': 1.0, 'other': 1.0, 'go': 1.0, 'we': 1.0, 'a': 4.0, 'for': 2.0, 'bags': 4.0, 'big': 1.0, 'saving': 1.0, 'so': 1.0, 'time': 1.0, 'itself': 1.0, 'regular': 1.0, 'in': 1.0, 'refills': 1.0, 'use': 3.0, 'by': 1.0, 'few': 1.0, 'just': 1.0, 'using': 1.0, 'know': 1.0, 'needed': 1.0, 'brands': 1.0, 'last': 1.0, 'her': 1.0, 'costly': 1.0, 'i': 5.0, 'old': 1.0, 'stinky': 1.0, 'never': 1.0, 'had': 1.0, 'now': 1.0, 'odor': 2.0, 'problem': 1.0, '5': 1.0, 'it': 1.0, 'month': 1.0, 'breastfed': 1.0}
Word element => {'priceless': 1.0, 'knows': 1.0, 'parent': 1.0, 'easy': 1.0, 'life': 1.0, 'makes': 1.0, 'duper': 1.0, '05': 1.0, 'at': 1.0, 'hand': 1.0, 'knowing': 1.0, 'go': 1.0, 'then': 2.0, 'reviews': 1.0, 'we': 1.0, 'works': 1.0, 'choose': 1.0, 'bit': 1.0, 'tricky': 1.0, 'yes': 2.0, 'registry': 1.0, 'came': 1.0, 'glad': 1.0, 'her': 1.0, 'uses': 1.0, 'new': 1.0, 'if': 6.0, 'e': 1.0, 'training': 1.0, 'swing': 1.0, 'begun': 1.0, 'now': 1.0, 'club': 1.0, 'attempt': 1.0, 'type': 1.0, 'lets': 1.0, 'see': 1.0, 'waste': 1.0, 'like': 3.0, 'while': 1.0, 'pee': 1.0, 'bags': 3.0, 'as': 3.0, 'using': 1.0, 'with': 2.0, 'put': 2.0, 'system': 1.0, 'do': 2.0, 'long': 1.0, 'gave': 1.0, 'costco': 1.0, 'perfectly': 1.0, 'reviewing': 1.0, 'smells': 1.0, 'any': 2.0, 'idea': 1.0, 'probably': 1.0, 'your': 1.0, 'to': 14.0, 'about': 1.0, 'pail': 1.0, 'are': 1.0, 'my': 8.0, 'me': 2.0, 'went': 1.0, 'the': 21.0, 'old': 1.0, 'of': 5.0, '99': 1.0, 'over': 1.0, 'open': 3.0, 'diaper': 10.0, 'up': 1.0, 'change': 2.0, 'takes': 1.0, 'something': 1.0, 'continually': 1.0, 'some': 1.0, 'never': 1.0, 'i': 14.0, 'amazon': 1.0, 'poor': 1.0, 'sister': 2.0, 'work': 1.0, 'left': 1.0, 'wipe': 1.0, 'has': 2.0, 'them': 2.0, 'review': 1.0, 'use': 3.0, 'shop': 2.0, 'purchase': 1.0, 'for': 7.0, 'is': 6.0, 'can': 2.0, 'personal': 1.0, 'pregnant': 1.0, 'way': 1.0, 'saw': 1.0, 'found': 1.0, 'have': 2.0, 'cents': 1.0, 'you': 7.0, 'things': 1.0, 'when': 5.0, 'having': 1.0, 'she': 3.0, 'baby': 1.0, 'be': 1.0, 'it': 12.0, 'lined': 1.0, 'he': 1.0, 'him': 1.0, '9': 1.0, 'got': 1.0, 'bag': 4.0, 'a': 12.0, 'small': 1.0, 'could': 2.0, 'genie': 2.0, 'not': 2.0, 'decide': 1.0, 'or': 2.0, 'on': 3.0, 'items': 1.0, 'nephew': 1.0, 'best': 1.0, 'both': 1.0, 'holding': 1.0, 'again': 2.0, 'clean': 1.0, 'hands': 1.0, 'want': 1.0, 'that': 4.0, 'register': 1.0, 'easily': 1.0, 'written': 1.0, 'wet': 1.0, 'months': 1.0, 'otherwise': 1.0, 'dirty': 3.0, 'but': 7.0, 'diapers': 3.0, 'true': 1.0, 'used': 1.0, 't': 4.0, 'hello': 1.0, 'two': 3.0, 'won': 1.0, 'sign': 1.0, 'potty': 1.0, 'in': 4.0, 'eventually': 2.0, 'didn': 1.0, 'tush': 1.0, 'start': 1.0, 'smell': 3.0, 'super': 1.0, 'still': 2.0, 'don': 2.0, 'add': 1.0, 'should': 1.0, 'regularly': 3.0, 'they': 3.0, 'safe': 1.0, 'sam': 1.0, 'after': 1.0, 'apartment': 1.0, 'carbon': 1.0, 'holds': 1.0, 'hold': 1.0, 'through': 1.0, 'into': 1.0, 'garbage': 1.0, 'kids': 2.0, 'box': 3.0, 'poop': 1.0, 'would': 1.0, 'emanate': 1.0, 'from': 1.0, 'out': 1.0, 'time': 2.0, 'mechanism': 1.0, 'realistically': 1.0, 'tip': 1.0, 'thing': 1.0, 'had': 1.0, 'yep': 1.0, 'going': 1.0, 'metal': 1.0, 'hey': 1.0, 'belong': 1.0, 'seemed': 1.0, 'wholesale': 1.0, 'bj': 2.0, 's': 3.0, 'check': 1.0, 'sometimes': 1.0, 'kitchen': 1.0, 'champ': 6.0, '200': 1.0, 'love': 1.0, 'overstuff': 1.0, 'get': 1.0, 'lazy': 1.0, 'disposal': 1.0, 'also': 1.0, 'and': 10.0, 'pails': 1.0, 'years': 1.0, 'stinky': 1.0, 'our': 1.0, 'wait': 1.0, 'sale': 1.0, 'coupon': 1.0, 'always': 1.0, 'most': 1.0}
Word element => {'chump': 1.0, 'don': 1.0, 'that': 1.0, 'nursery': 1.0, 'daughters': 1.0, 'registered': 1.0, 'i': 5.0, 'buy': 2.0, 'diaper': 4.0, 'the': 6.0, 'bags': 2.0, 'genie': 2.0, 'champ': 1.0, 'disappointment': 1.0, 'what': 1.0, 'reading': 1.0, 'gag': 1.0, 'strongly': 1.0, 'this': 1.0, 'smell': 1.0, 'to': 3.0, 'recommend': 1.0, 'was': 1.0, 'now': 1.0, 'for': 1.0, 'expensive': 2.0, 'product': 1.0, 'how': 1.0, 'you': 1.0, 'am': 1.0, 'having': 1.0, 'on': 1.0, 'those': 2.0, 'not': 1.0, 'shoudn': 1.0, 'after': 1.0, 'reflex': 1.0, 'convenience': 1.0, 'great': 1.0, 'big': 1.0, 'of': 1.0, 'horrifying': 1.0, 'but': 1.0, 'needless': 1.0, 'is': 1.0, 'say': 1.0, 't': 2.0, 'a': 1.0, 'going': 1.0, 'and': 1.0, 'have': 1.0, 'every': 1.0, 'time': 1.0, 'enter': 1.0, 'my': 1.0}
Word element => {'odor': 1.0, 'most': 1.0, 'to': 1.0, 'and': 1.0, 'bags': 1.0, 'importantly': 1.0, 'capacity': 1.0, 'this': 1.0, 'use': 1.0, 'easy': 1.0, 'far': 1.0, 'pail': 1.0, 'best': 1.0, 'is': 1.0, 'the': 1.0, 'high': 1.0, 'price': 1.0, 'great': 1.0, 'no': 2.0, 'by': 1.0, 'special': 1.0}
Word element => {'perfection': 1.0, 'else': 1.0, 'nothing': 1.0, 'so': 1.0, 'gets': 1.0, 'before': 1.0, 'chamber': 1.0, 'seperate': 1.0, 'anymore': 1.0, 'say': 1.0, 'is': 4.0, 'air': 1.0, 'said': 1.0, 'it': 6.0, 'to': 3.0, 'even': 1.0, 'down': 1.0, 'only': 2.0, 'empty': 1.0, 'get': 1.0, 'me': 1.0, 'seems': 1.0, 'diaper': 2.0, 'transfers': 1.0, 'hands': 1.0, 'the': 6.0, 'pail': 1.0, 'hold': 1.0, 'like': 2.0, 'bag': 1.0, 'need': 1.0, 'smells': 2.0, 'when': 2.0, 'i': 4.0, 'can': 1.0, 'change': 1.0, '2': 1.0, 'cheapies': 1.0, 'theres': 1.0, 'never': 3.0, 'reason': 2.0, 'mine': 1.0, 'cant': 1.0, 'one': 1.0, 'about': 1.0, 'every': 1.0, 'w': 1.0, 'because': 2.0, 'ever': 2.0, 'thats': 1.0, 'into': 1.0, 'weeks': 1.0, 'fill': 1.0, 'seriously': 1.0, 'this': 3.0, 'dont': 1.0, 'goes': 1.0, 'bother': 1.0, 'trust': 1.0, 'why': 1.0, 'a': 1.0}
Word element => {'sure': 1.0, 'task': 1.0, 'money': 1.0, 'spend': 1.0, 'don': 1.0, 'such': 1.0, 'for': 1.0, 'rejoice': 1.0, 'they': 1.0, 'you': 4.0, 'local': 1.0, 'once': 1.0, 'accomplish': 1.0, 'dissapear': 1.0, 'a': 3.0, 'go': 1.0, 'hole': 1.0, 's': 2.0, 'time': 2.0, 'during': 1.0, 'dirty': 1.0, 'were': 1.0, 'its': 1.0, 'fact': 1.0, 'too': 1.0, 'one': 4.0, 'i': 2.0, 'on': 1.0, 'playtex': 1.0, 'your': 3.0, 'champ': 2.0, 'make': 1.0, 'goes': 2.0, 'was': 2.0, 'genie': 2.0, 'father': 1.0, 'when': 3.0, 'roll': 1.0, 'top': 2.0, 'handle': 1.0, 'admit': 1.0, 'won': 2.0, 'of': 3.0, 'the': 12.0, 'glad': 1.0, 'mostly': 1.0, '5': 1.0, 'because': 1.0, 'does': 1.0, 'standard': 1.0, 'odors': 3.0, 'already': 1.0, 'it': 3.0, 'with': 2.0, 'this': 5.0, 'matter': 1.0, 'my': 1.0, 'me': 1.0, 'not': 1.0, 'supermarket': 1.0, 'much': 2.0, 'do': 1.0, 'put': 1.0, 'changing': 2.0, 'diaper': 8.0, 'bags': 2.0, 'as': 5.0, 'bye': 2.0, 'to': 4.0, 'an': 1.0, 'all': 1.0, 'anyone': 1.0, 'and': 2.0, 'odor': 1.0, 'expecting': 1.0, 'if': 1.0, 'throw': 1.0, 'great': 1.0, 'big': 1.0, 'product': 1.0, 'mundane': 1.0, 'costs': 1.0, 'compare': 1.0, 'biggest': 1.0, 'away': 1.0, 'competitor': 1.0, 'by': 1.0, 'sam': 1.0, 'although': 1.0, 'are': 1.0, 'plus': 1.0, 'first': 1.0, 'around': 1.0, 't': 3.0, 'cost': 1.0, 'require': 1.0, 'over': 1.0, 'special': 1.0, 'set': 1.0, 'which': 1.0, '15': 1.0, 'in': 5.0, 'per': 1.0, 'there': 1.0, 'costco': 1.0, 'takes': 1.0, 'so': 1.0, 'can': 1.0, 'get': 2.0, 'bjs': 1.0, 'concerns': 1.0, 'or': 1.0}
Word element => {'buy': 1.0, 'product': 1.0, 'recommend': 1.0, 'definatly': 1.0, 'but': 1.0, 'pails': 1.0, 'than': 1.0, 'little': 1.0, 'opened': 1.0, 'when': 1.0, 'out': 1.0, 'have': 3.0, 'holds': 2.0, 'more': 4.0, 'my': 1.0, 'fact': 1.0, 'same': 1.0, 'no': 1.0, 'in': 4.0, 'mine': 1.0, 'refills': 2.0, 'use': 2.0, 'a': 7.0, 'once': 1.0, 'its': 3.0, 'only': 1.0, 'empty': 1.0, 'garbage': 1.0, 'after': 1.0, 'other': 2.0, 'easiest': 1.0, 'pail': 3.0, 'to': 8.0, 'had': 1.0, 'for': 2.0, 'love': 1.0, 'decided': 1.0, 'months': 1.0, 'looove': 1.0, 'one': 1.0, 'refils': 1.0, 'bunch': 1.0, 'i': 11.0, 'genie': 3.0, 'uses': 1.0, 'pain': 1.0, 'dont': 1.0, 'of': 2.0, 'the': 14.0, 'place': 1.0, 'bags': 1.0, 'as': 2.0, 'diaper': 8.0, 'leak': 1.0, '2': 1.0, 'loooove': 1.0, 'rweek': 1.0, 'alot': 2.0, 'purchases': 1.0, 'it': 9.0, 'with': 4.0, 'enough': 1.0, 'spending': 1.0, 'anyone': 1.0, 'and': 7.0, 'toss': 1.0, 'how': 1.0, 'week': 1.0, 'oppsed': 1.0, 'bigger': 1.0, 'every': 2.0, 'flip': 1.0, 'day': 1.0, 'extra': 1.0, 'worth': 1.0, 'cant': 1.0, 'this': 4.0, 'few': 1.0, 'just': 1.0, 'buck': 1.0, '5': 1.0, 'you': 4.0, 'bucks': 1.0, 'arnt': 1.0, 'handed': 1.0, 'looking': 1.0, 'using': 1.0, 'othe': 1.0, 'like': 1.0, 'poopy': 1.0, 'open': 1.0, 'over': 1.0, 'diapers': 1.0, 'even': 1.0, 'smell': 2.0, 'them': 1.0, 'because': 1.0, 'that': 2.0, 'much': 1.0, 'do': 1.0, 'put': 1.0, 'can': 1.0, 'so': 1.0, 'top': 2.0, 'is': 3.0, 'handle': 1.0, 'kitchen': 1.0, 'sooo': 1.0, 'bit': 1.0, 'easy': 1.0, 'noticed': 1.0, 'would': 2.0}
Word element => {'buy': 1.0, 'have': 1.0, 'refils': 1.0, 'yes': 1.0, 'couldn': 1.0, 'till': 1.0, 'used': 1.0, 'use': 1.0, 'with': 1.0, 'sealing': 2.0, 'does': 1.0, 'maybe': 1.0, 'system': 1.0, 'nothing': 1.0, 'spray': 1.0, 'wash': 1.0, 'of': 1.0, 'perfect': 1.0, 'way': 1.0, 'it': 11.0, 'first': 1.0, 'anymore': 1.0, 'was': 2.0, 'last': 1.0, 'born': 1.0, 'but': 1.0, 'four': 1.0, 'great': 1.0, 'seemed': 1.0, 'girl': 1.0, 'year': 1.0, 'to': 6.0, 'as': 2.0, 'worked': 1.0, 'diaper': 3.0, 'job': 1.0, 'the': 6.0, 'ago': 1.0, 't': 1.0, 'a': 4.0, 'genie': 1.0, 'champ': 1.0, 'seal': 1.0, 'gift': 1.0, 'two': 1.0, 'i': 4.0, 'charm': 1.0, 'my': 1.0, 'at': 1.0, 'keep': 1.0, 'did': 1.0, 'properly': 1.0, 'you': 1.0, 'when': 1.0, 'smells': 2.0, 'fades': 1.0, 'within': 1.0, 'away': 1.0, 'five': 1.0, 'and': 2.0, 'scrub': 1.0, 'get': 1.0, 'like': 1.0, 'bought': 1.0, 'months': 2.0, 'on': 1.0, 'baby': 1.0, 'started': 1.0, 'not': 1.0, 'smell': 2.0, 'got': 1.0, 'impregnated': 1.0, 'received': 1.0, 'plastic': 1.0, 'impossible': 1.0, 'tried': 1.0, 'rid': 1.0}
Word element => {'champ': 1.0, 'diaper': 1.0, 'the': 1.0, 'however': 1.0, 'dissatisfied': 1.0, 'are': 1.0, 'my': 1.0, 'they': 3.0, 'used': 1.0, 'brand': 1.0, 'item': 1.0, 'law': 1.0, 'in': 1.0, 'daughter': 1.0, 'love': 1.0, 'for': 1.0, 'requested': 1.0, 'and': 3.0, 'son': 1.0, 'very': 1.0, 'pleased': 1.0, 'this': 1.0, 'with': 1.0, 'it': 1.0, 'were': 1.0, 'their': 1.0, 'last': 1.0, 'child': 1.0, 'another': 1.0}
Word element => {'love': 1.0, 'full': 1.0, 's': 1.0, 'away': 1.0, 'and': 1.0, 'justthrow': 1.0, 'bag': 1.0, 'plastic': 1.0, '3': 1.0, 'went': 1.0, 'saw': 1.0, 'it': 3.0, 'this': 1.0, 'amazon': 1.0, 'on': 1.0, 'poopy': 1.0, 'around': 1.0, 'through': 1.0, 'store': 1.0, 'bought': 1.0, 'when': 1.0, 'kids': 1.0, 'very': 1.0, 'never': 1.0, 'would': 1.0, 'smell': 1.0, 'diapers': 1.0, 'madenever': 1.0, 'just': 1.0, 'then': 1.0, 'use': 1.0, 'well': 1.0, 'a': 1.0}
Word element => {'just': 1.0, 'dirty': 1.0, 'enjoy': 1.0, 'doesn': 1.0, 'was': 1.0, 'point': 1.0, 'unless': 1.0, 'you': 2.0, 'baby': 2.0, 'don': 1.0, 'due': 1.0, 'stinky': 1.0, 'the': 8.0, 'diaper': 4.0, 'in': 1.0, 'having': 2.0, 'room': 1.0, 'is': 1.0, 'champ': 3.0, 'diapers': 3.0, 'system': 1.0, 'at': 1.0, 'to': 2.0, 'our': 1.0, 'were': 1.0, 'smelling': 2.0, 'keeping': 1.0, 'dispose': 1.0, 'container': 2.0, 'please': 1.0, 'terrible': 1.0, 'smelly': 1.0, 'constantly': 1.0, 'if': 1.0, 'empty': 1.0, 'only': 1.0, 'daily': 1.0, 'this': 1.0, 'from': 1.0, 'those': 1.0, 'not': 1.0, 'and': 1.0, 'almost': 1.0, 'what': 1.0, 'of': 2.0, 's': 2.0, 't': 3.0, 'we': 1.0, 'a': 1.0, 'product': 1.0, 'disposal': 1.0, 'work': 1.0, 'can': 1.0, 'efficiently': 1.0, 'buy': 1.0}
Word element => {'did': 1.0, 'glad': 1.0, 'whole': 1.0, 'stink': 1.0, 'friend': 1.0, 'best': 1.0, 'me': 1.0, 'my': 1.0, 'simple': 1.0, 'if': 1.0, 'would': 1.0, 'be': 1.0, 'should': 1.0, '3': 1.0, 'got': 1.0, 'when': 1.0, 'you': 9.0, 'in': 2.0, 'set': 1.0, 'drop': 1.0, 'has': 1.0, 'solution': 1.0, 'next': 1.0, 'box': 1.0, 'takes': 1.0, 'literally': 1.0, 'garbage': 1.0, 'thing': 2.0, 'tie': 1.0, 'no': 2.0, 'holds': 1.0, 'around': 1.0, 'use': 2.0, 'from': 2.0, 'to': 4.0, 'our': 1.0, 'and': 9.0, 'does': 1.0, 'ease': 1.0, 'buy': 1.0, 'only': 2.0, 'genie': 2.0, '30': 1.0, 'right': 1.0, 'table': 1.0, 'guy': 1.0, 'pails': 1.0, 'probably': 1.0, 'researched': 1.0, 'for': 2.0, 'hammer': 1.0, 'bags': 4.0, 'as': 1.0, 'diaper': 3.0, 'go': 1.0, 'a': 4.0, 't': 2.0, 'different': 1.0, 'phenomenal': 1.0, 'twice': 1.0, 'types': 1.0, 're': 1.0, 'off': 1.0, 'some': 2.0, 'but': 1.0, 'friends': 1.0, 'have': 3.0, 'try': 1.0, 'one': 3.0, 'the': 13.0, 'of': 6.0, 'so': 1.0, 'cake': 1.0, 'we': 3.0, 'take': 1.0, 'just': 4.0, 'irks': 1.0, 'not': 3.0, 'done': 2.0, 'brand': 1.0, '15': 1.0, 'looking': 1.0, 'including': 1.0, 'bag': 2.0, 'need': 2.0, 'pull': 1.0, 'line': 1.0, 'top': 1.0, 'which': 1.0, 'side': 1.0, 'arm': 1.0, 'all': 3.0, 'other': 1.0, 'am': 1.0, 'presto': 1.0, 'it': 6.0, 'that': 1.0, '20': 1.0, 'are': 2.0, 'bad': 1.0, 'diapers': 1.0, 'i': 5.0, 'changed': 1.0, 'week': 1.0, 'special': 2.0, 'open': 1.0, 'out': 1.0, 'changing': 1.0, 'do': 1.0, 'put': 1.0, 'sure': 1.0, 'get': 1.0, 'give': 1.0, 'there': 2.0, 'make': 1.0, 'smell': 2.0, 'eminating': 1.0, 'bottom': 1.0, 'scented': 2.0, 'is': 3.0, 'handle': 1.0, 'at': 1.0, 'this': 4.0, 'highly': 2.0, 'park': 1.0, 'recommend': 2.0, 'don': 2.0}
Word element => {'other': 1.0, 'receptacle': 1.0, 'the': 1.0, 'every': 1.0, 'clean': 1.0, 'empty': 1.0, 'simple': 1.0, 'experienced': 1.0, 'never': 1.0, 'any': 1.0, 'economical': 1.0, 'problems': 1.0, 'odor': 1.0, 'we': 1.0, 'day': 1.0, 'just': 1.0}
Word element => {'things': 1.0, 'week': 1.0, 'about': 2.0, 'out': 1.0, 'quite': 1.0, 'hold': 1.0, 'they': 1.0, 'bags': 2.0, 'your': 1.0, 'throw': 1.0, 'diapers': 2.0, 'champ': 2.0, 'few': 1.0, 'just': 1.0, 'not': 1.0, 'that': 2.0, 'once': 1.0, 'of': 1.0, 'waste': 1.0, 'well': 1.0, 'change': 1.0, 'can': 2.0, 'money': 1.0, 'this': 2.0, 'enough': 1.0, 'parent': 1.0, 'actually': 1.0, 'product': 1.0, 'laughed': 1.0, 'garage': 1.0, 'i': 3.0, 'was': 1.0, 'husband': 1.0, 'bag': 1.0, 'wanted': 1.0, 'only': 1.0, 'its': 1.0, 'to': 2.0, 'and': 4.0, 'the': 5.0, 'diaper': 2.0, 'great': 2.0, 'my': 1.0, 'it': 1.0, 'felt': 1.0, 'say': 1.0, 'is': 1.0, 'in': 1.0, 'needs': 1.0, 'thats': 1.0, 'good': 1.0, 'you': 2.0, 'when': 1.0, 'idea': 1.0, 'kitchen': 1.0, 'anything': 1.0, 't': 1.0, 'could': 1.0, 'a': 5.0, 'we': 3.0, 'own': 1.0, 'smell': 1.0, 'have': 2.0, 'never': 1.0, 'item': 1.0, 'every': 1.0, 'use': 3.0, 'easy': 1.0}
Word element => {'wonderfull': 1.0, 'bag': 1.0, 'change': 1.0, 'to': 1.0, 'for': 1.0, 'problem': 1.0, 'a': 2.0, 'and': 2.0, 'bags': 1.0, 'save': 1.0, 'it': 3.0, 'any': 1.0, 'money': 1.0, 'll': 1.0, 'week': 1.0, 'doesn': 1.0, 'much': 1.0, 'having': 1.0, 'cannot': 1.0, 'how': 1.0, 'imagine': 1.0, 'can': 1.0, 'without': 2.0, 'size': 1.0, 'the': 1.0, 't': 1.0, 'smell': 1.0, 'at': 1.0, 'all': 1.0, 'use': 2.0, 'garbage': 1.0, 's': 1.0, 'you': 3.0, 'kitchen': 1.0}
Word element => {'inexpensive': 1.0, 'helpful': 1.0, 'an': 1.0, 'with': 1.0, 'bag': 1.0, 'over': 1.0, 'after': 1.0, 'product': 1.0, 'for': 1.0, 'using': 1.0, 'junky': 1.0, 'thought': 1.0, 'their': 1.0, 'week': 1.0, 'diapers': 1.0, 'champ': 2.0, 'advantage': 1.0, 'room': 1.0, 'real': 1.0, 'keeps': 1.0, 'looked': 1.0, 'this': 1.0, 'trying': 1.0, 'one': 1.0, 'bought': 1.0, 'and': 5.0, 'all': 1.0, 'any': 1.0, 'to': 3.0, 'was': 1.0, 'save': 1.0, 'it': 6.0, 'felt': 1.0, 'around': 1.0, 'is': 2.0, 'dollars': 1.0, 'can': 1.0, '2': 1.0, 'the': 3.0, 'diaper': 1.0, 'great': 2.0, 'a': 2.0, 'few': 1.0, 'i': 6.0, 'when': 1.0, 'have': 2.0, 'that': 1.0, 'babies': 1.0, 'admit': 1.0, 'smelling': 1.0, 'wrong': 1.0, 'in': 1.0, 'plastic': 1.0, 'received': 1.0, 'extremely': 1.0, 'easy': 1.0, 'use': 2.0, 'added': 1.0, 'has': 1.0}
Word element => {'this': 1.0, 'specific': 1.0, 'down': 1.0, 'anyone': 1.0, 'be': 1.0, 'bags': 2.0, 'use': 1.0, 'can': 1.0, 'that': 1.0, 'in': 1.0, 'u': 1.0, 'refill': 1.0, 'the': 2.0, 'with': 1.0, 'weeks': 1.0, 'diapers': 1.0, 'couple': 1.0, 'and': 3.0, 'smell': 1.0, 'recommend': 1.0, 'k': 1.0, 'highly': 1.0, 'plenty': 1.0, 'of': 3.0, '9': 1.0, 'month': 1.0, 'tied': 1.0, 'twins': 1.0, 'after': 1.0, 'i': 3.0, 'brand': 1.0, 'old': 1.0, 're': 1.0, 'anywhere': 1.0, 'we': 4.0, 'a': 4.0, 'go': 1.0, 'had': 1.0, 'mother': 1.0, 'through': 1.0, 've': 1.0, 'new': 1.0, 'operation': 1.0, 'not': 2.0, 'being': 1.0, 'able': 1.0, 'choose': 1.0, 'having': 1.0, 'find': 1.0, 'product': 1.0, 'love': 1.0, 'overseas': 1.0, 'as': 1.0, 'to': 5.0, 'our': 1.0, 'm': 1.0, 'one': 1.0, 'problem': 1.0, 'shipped': 1.0, 'champ': 1.0, 'home': 1.0, 'moving': 1.0, 'never': 1.0, 'or': 1.0}
Word element => {'roses': 1.0, 'going': 1.0, 'not': 1.0, 'poop': 1.0, 'plastic': 1.0, 'expected': 1.0, 'occasion': 1.0, 'smell': 2.0, '4': 1.0, 'before': 1.0, 'noise': 1.0, 'makes': 1.0, 'which': 1.0, 'loose': 1.0, 'but': 2.0, 'fine': 1.0, 'works': 1.0, 'turn': 1.0, 'still': 1.0, 'out': 1.0, 'around': 1.0, 'tear': 1.0, 'was': 2.0, 'tab': 1.0, 'sticky': 1.0, 'seal': 2.0, 'when': 2.0, 'jammed': 1.0, 'continue': 1.0, 'back': 1.0, 'or': 1.0, 'pile': 1.0, 'adjust': 1.0, 'full': 2.0, 'however': 1.0, 'easy': 1.0, 'get': 3.0, 'filling': 1.0, 'left': 1.0, 's': 4.0, 'a': 7.0, 't': 3.0, 'standard': 1.0, 'way': 2.0, 'than': 2.0, 'funky': 1.0, 'glad': 1.0, 'c': 1.0, 'much': 1.0, 'changing': 1.0, 'stuck': 1.0, 'champ': 1.0, 'genie': 2.0, 'haven': 1.0, '2': 1.0, 'clogged': 1.0, 'never': 1.0, 'don': 1.0, 'b': 1.0, 'lid': 2.0, 'my': 1.0, 'it': 9.0, 'few': 1.0, 'this': 1.0, 'bangs': 1.0, 'fall': 1.0, 'because': 2.0, 'that': 4.0, 'easily': 1.0, 'idea': 1.0, 'as': 1.0, 'dislodge': 1.0, 'diaper': 3.0, 'bags': 1.0, '3': 1.0, 'refills': 1.0, 'use': 2.0, 'liked': 1.0, 'broken': 1.0, 'very': 1.0, 'being': 1.0, 'now': 2.0, 'wanted': 1.0, 'bag': 2.0, 'pail': 3.0, 'to': 12.0, 'i': 14.0, 'have': 4.0, 'you': 1.0, 'things': 1.0, 'able': 3.0, 'determined': 1.0, 'there': 2.0, 'instead': 1.0, 'trash': 2.0, 'more': 2.0, 'the': 25.0, 'of': 7.0, 'foam': 1.0, 'avoid': 1.0, 'got': 2.0, 'are': 1.0, 'plus': 1.0, 'diapers': 3.0, 'like': 2.0, 'hand': 1.0, 'about': 1.0, '1': 1.0, 'work': 1.0, 'over': 1.0, 'hard': 1.0, 'special': 1.0, 'open': 3.0, 'turned': 1.0, 'several': 1.0, 've': 1.0, 'forth': 1.0, 'rock': 1.0, 'been': 1.0, 'nails': 1.0, 'only': 2.0, 'and': 4.0, 'trying': 1.0, 'be': 1.0, 'pop': 1.0, 'hurt': 1.0, 'latch': 1.0, 'yet': 1.0, 'noticed': 1.0, 'plunger': 2.0, 'near': 1.0, 'on': 2.0, 'third': 1.0, 'inside': 1.0, 'purpose': 1.0, 'top': 1.0, 'ring': 1.0, 'is': 3.0, 'handle': 2.0, 'can': 3.0, 'so': 4.0, 'generally': 1.0, 'enough': 1.0, 'once': 1.0, 'room': 1.0, 'm': 1.0, 'in': 4.0, 'order': 1.0}
Word element => {'liners': 1.0, 'for': 1.0, 'something': 1.0, 'there': 1.0, 'but': 1.0, 'nice': 1.0, 'operation': 1.0, 'through': 1.0, 'features': 1.0, 'it': 3.0, 'he': 1.0, 'however': 1.0, 'that': 1.0, 'one': 1.0, 'i': 6.0, 'be': 1.0, 'putting': 1.0, 'thrown': 1.0, 'using': 1.0, 'like': 2.0, 'champ': 1.0, 'toddler': 1.0, 'diapers': 1.0, 'some': 1.0, 'handed': 1.0, 'at': 1.0, 'things': 1.0, 'of': 3.0, 'is': 4.0, 'trash': 1.0, 'my': 1.0, 'find': 1.0, 'paw': 1.0, 'bags': 1.0, 'the': 4.0, 'diaper': 1.0, 'odorless': 1.0, 'do': 2.0, 'and': 1.0, 'away': 1.0, 'not': 1.0, 'think': 1.0, 'constantly': 1.0, 'said': 1.0, 'regular': 1.0, 'in': 1.0, 'all': 1.0, 'to': 3.0, 'scented': 1.0, 'dirty': 1.0, 'see': 1.0, 'what': 1.0, 'before': 1.0, 's': 1.0, 'have': 1.0, 'dispose': 1.0, 'bag': 1.0}
Word element => {'happy': 1.0, 'are': 1.0, 'now': 1.0, 'new': 1.0, 'sending': 1.0, 'one': 1.0, 'for': 1.0, 'product': 1.0, 'redeemed': 1.0, 'used': 1.0, 'they': 1.0, 'sent': 1.0, 'amazon': 1.0, 'we': 2.0, 'some': 1.0, 'it': 1.0, 'first': 1.0, 'this': 1.0, 'with': 2.0, 'brand': 1.0, 'themselves': 1.0, 'poop': 1.0, 'a': 1.0, 'stains': 1.0, 'complete': 1.0, 'reason': 1.0, 'disappointed': 1.0, 'were': 1.0, 'very': 2.0, 'but': 1.0, 'us': 2.0, 'by': 1.0}
Word element => {'love': 1.0, 'expensive': 1.0, 'smells': 1.0, 'no': 2.0, 'a': 1.0, 'than': 1.0, 'minute': 1.0, 'genie': 1.0, 'bad': 1.0, 'born': 1.0, 'bought': 1.0, 'bags': 1.0, 'liners': 1.0, 'our': 2.0, 'takes': 1.0, 'of': 1.0, 'and': 2.0, 'away': 1.0, 'we': 1.0, '2': 1.0, 'these': 1.0, 'diaper': 1.0, 'it': 2.0, 'less': 1.0, 'gave': 1.0, 'when': 1.0, 'child': 1.0, 'to': 1.0, 'was': 1.0, 'you': 1.0, 'use': 1.0, 'garbage': 1.0, 'change': 1.0, 'second': 1.0, 'regular': 1.0}
Word element => {'change': 1.0, 'bag': 1.0, 'each': 1.0, 'after': 1.0, 'lysol': 1.0, 'recommend': 1.0, 'would': 1.0, 'hosing': 1.0, 'almost': 1.0, '5': 1.0, 'months': 1.0, 'diaper': 1.0, 'the': 3.0, 'inside': 1.0, 'champ': 1.0, 'been': 1.0, 've': 1.0, 'at': 1.0, 'we': 1.0, 'now': 1.0, 'and': 2.0, 'like': 1.0, 'for': 1.0, 'using': 1.0, 'love': 1.0, 'works': 1.0, 'with': 1.0, 'it': 2.0, 'advertised': 1.0, 'keeps': 1.0, 'odors': 1.0, 'bay': 1.0, 'i': 1.0}
Word element => {'for': 1.0, 'settle': 1.0, 'than': 1.0, 'five': 1.0, 'spend': 1.0, 'ours': 1.0, 'pleased': 1.0, 'very': 1.0, 'garbage': 1.0, 'smell': 1.0, 'no': 1.0, 'dollars': 1.0, 'works': 1.0, 'use': 2.0, 're': 1.0, 'house': 1.0, 'out': 1.0, 'extra': 1.0, 'day': 1.0, 'decided': 1.0, 'one': 1.0, 'champ': 2.0, 'genie': 2.0, 'i': 4.0, 'diaper': 4.0, 'this': 4.0, 'it': 4.0, 'with': 2.0, 'disposer': 1.0, 'on': 2.0, 'absolutely': 1.0, 'ton': 1.0, 'wow': 1.0, 'diapers': 1.0, 'didn': 1.0, 'escapes': 1.0, 'was': 1.0, 'to': 3.0, 'we': 2.0, 't': 1.0, 'go': 2.0, 'a': 4.0, 'toss': 1.0, 'and': 5.0, 'hundred': 1.0, 'get': 1.0, 'up': 1.0, 'rather': 1.0, 'stink': 1.0, 'of': 3.0, 'is': 1.0, 'trash': 1.0, 'fabulous': 1.0, 'between': 1.0, 'you': 1.0, 'twins': 1.0, 'need': 1.0, 'the': 9.0, 'refill': 1.0, 'from': 1.0, 'bags': 2.0, 'through': 1.0, 'have': 1.0, 'instead': 1.0, 'kitchen': 1.0, 'making': 1.0, 'since': 1.0, 'trips': 1.0, 'can': 2.0, 'plain': 1.0, 'poopie': 1.0, 'in': 2.0, 'garage': 1.0}
Word element => {'recommend': 1.0, 'would': 1.0, 'this': 1.0, 'definetely': 1.0, 'with': 1.0, 'special': 1.0, 'bags': 2.0, 'garbage': 1.0, 'leary': 1.0, 'the': 2.0, 'great': 1.0, 'little': 1.0, 'not': 1.0, 'give': 1.0, 'occasion': 1.0, 'your': 1.0, 'on': 1.0, 'were': 1.0, 'been': 1.0, 'that': 3.0, 'of': 2.0, 'i': 5.0, 'have': 3.0, 'pail': 2.0, 'husband': 1.0, 'had': 1.0, 'to': 4.0, 'own': 1.0, 'friend': 1.0, 'purchase': 1.0, 'my': 1.0, 'using': 1.0, 'for': 1.0, 'love': 1.0, 'and': 5.0, 'smelling': 1.0, 'can': 1.0, 'but': 1.0, 'genie': 1.0, 'purchasing': 1.0, 'champ': 1.0, 'decided': 1.0, 'do': 1.0, 'try': 1.0, 'use': 3.0, 'so': 3.0, 'diaper': 4.0, 'glad': 1.0, 'far': 1.0, 'a': 5.0, 'we': 2.0, 'did': 1.0, 'almost': 1.0, 'it': 4.0, 'month': 1.0, 'is': 2.0, 'easy': 1.0, 'never': 1.0, 'you': 1.0, 'complained': 1.0, 'am': 1.0, 'smells': 1.0}
Word element => {'emptied': 1.0, 'about': 1.0, 'will': 1.0, 'diapers': 1.0, 'hold': 1.0, 'dirty': 1.0, 'smell': 1.0, 'contained': 1.0, 'diaper': 1.0, 'keeps': 1.0, 'definatly': 1.0, 'and': 1.0, 'to': 2.0, '15': 1.0, 'we': 1.0, 't': 1.0, 'a': 1.0, 'liked': 1.0, 'it': 6.0, 'full': 1.0, 'this': 2.0, 'only': 1.0, 'bags': 1.0, 'be': 1.0, 'force': 1.0, 'uses': 1.0, 'won': 1.0, 'because': 1.0, 'just': 1.0, 'pail': 1.0, 'more': 1.0, 'is': 2.0, 'trash': 1.0, 'over': 1.0, 'up': 1.0, '20': 1.0, 'before': 1.0, 'gets': 1.0, 'when': 1.0, 'but': 1.0, 'clogged': 1.0, 'often': 1.0, 'lid': 1.0, 'regular': 1.0, 'turn': 1.0, 'the': 2.0, 'without': 1.0, 'some': 1.0, 'minor': 1.0, 'annoyance': 1.0, 'needs': 1.0}
Word element => {'money': 1.0, 'smell': 1.0, 'we': 1.0, 'save': 1.0, 'still': 1.0, 'closet': 1.0, 'in': 1.0, 'smells': 1.0, 'product': 1.0, 'well': 1.0, 'you': 1.0, 's': 1.0, 'yourself': 1.0, 'as': 2.0, 'and': 2.0, 'not': 2.0, 'diaper': 1.0, 'the': 3.0, 'contain': 1.0, 'genie': 1.0, 'i': 4.0, 'true': 1.0, 'have': 1.0, 'this': 1.0, 'it': 4.0, 'can': 1.0, 'am': 1.0, 'going': 1.0, 'put': 1.0, 'work': 1.0, 'back': 1.0, 'to': 1.0, 'that': 1.0, 'even': 1.0, 'does': 2.0, 'used': 1.0, 'both': 1.0, 'assure': 1.0}
Word element => {'buying': 1.0, 'different': 1.0, 'buy': 1.0, 'i': 4.0, 'spent': 1.0, 'the': 5.0, 'had': 1.0, 'to': 3.0, 'odor': 1.0, 'in': 1.0, 'stuck': 1.0, 'using': 1.0, 'on': 1.0, 'one': 1.0, 'months': 1.0, 'and': 1.0, 'get': 1.0, 'alot': 1.0, 't': 1.0, 'a': 3.0, 'pail': 2.0, 'spend': 1.0, 'because': 2.0, 'making': 1.0, 'difficult': 1.0, 'not': 1.0, 'want': 1.0, 'change': 1.0, 'more': 1.0, 'is': 1.0, 'didn': 1.0, 'this': 2.0, 'end': 1.0, 'only': 1.0, 'it': 2.0, 'chose': 1.0, 'after': 1.0, 'few': 1.0, 'of': 1.0, 'seal': 1.0, 'broke': 1.0, 'came': 1.0, 'bag': 1.0, 'daiper': 1.0, 'through': 1.0, 'worth': 1.0, 'latch': 1.0, 'would': 1.0, 'certainly': 1.0}
Word element => {'with': 1.0, 'can': 1.0, 'a': 2.0, 'off': 1.0, 'better': 1.0, 'are': 1.0, 'wet': 1.0, 'only': 1.0, 'buying': 1.0, 'may': 1.0, 'trash': 1.0, 'look': 1.0, 'does': 1.0, 'not': 1.0, 'you': 1.0, 'fancy': 1.0, 'lid': 1.0, 'this': 1.0, 'soiled': 1.0, 'odors': 2.0, 'control': 1.0, 'but': 1.0, 'diapers': 2.0}
Word element => {'did': 1.0, 'know': 1.0, 'unit': 1.0, 'r2d2': 1.0, 'toss': 1.0, 'and': 1.0, 'working': 1.0, 'means': 1.0, 'because': 1.0, 'or': 1.0, 'boy': 1.0, 'odors': 1.0, '5': 1.0, 'it': 4.0, 'mini': 1.0, 'sure': 1.0, 'who': 1.0, 'step': 1.0, 'ahh': 1.0, 'down': 1.0, 'even': 1.0, 'genies': 1.0, 'genie': 1.0, 'champ': 3.0, 'one': 1.0, 'absorbing': 1.0, 'right': 1.0, 'takes': 1.0, 'absorbs': 1.0, 'my': 1.0, 'the': 8.0, 'diaper': 4.0, 'street': 1.0, 'in': 1.0, 'beats': 1.0, 'this': 1.0, 'doing': 1.0, 'every': 1.0, 'from': 1.0, 'to': 2.0, 'as': 1.0, 'cake': 1.0, 'poops': 1.0, 'those': 1.0, 'extra': 1.0, 'girl': 1.0, 'twist': 1.0, 'into': 1.0, 'that': 2.0, 'steps': 1.0, 'a': 1.0, 'is': 3.0, 'do': 1.0, 'gets': 1.0, 'when': 3.0, 'you': 4.0, 'simplicity': 1.0, 'are': 1.0, 'their': 1.0, 'psyched': 1.0, 'enough': 1.0, 'everything': 1.0, 'want': 1.0, 'icing': 1.0, 'on': 1.0, 'odor': 1.0, 'mommy': 1.0}
Word element => {'at': 1.0, 'better': 1.0, 'genie': 2.0, 'diaper': 2.0, 'else': 1.0, 'something': 1.0, 'prepared': 1.0, 'and': 2.0, 'odor': 3.0, 'now': 2.0, 'was': 2.0, 'solids': 1.0, 'my': 1.0, 'eating': 1.0, 'first': 2.0, 'that': 1.0, 'is': 3.0, 'fine': 1.0, 'can': 1.0, 'but': 2.0, 'great': 1.0, 'the': 3.0, 'it': 2.0, 'she': 1.0, 'baby': 1.0, 'to': 1.0, 'our': 1.0, 'any': 1.0, 'for': 2.0, 'which': 1.0, 'using': 1.0, 'this': 2.0, 'escaping': 1.0, 'trap': 1.0, '5': 1.0, 'months': 2.0, 'i': 1.0, '4': 1.0, 'of': 1.0, 'bottom': 1.0, 'girl': 1.0, 'we': 2.0, 'smell': 1.0, 'are': 1.0, 'did': 1.0, 'if': 1.0, 'in': 1.0, 'out': 1.0, 'newborn': 1.0, 'bedroom': 1.0, 'airfreshner': 1.0, 'not': 1.0, 'even': 1.0, 'line': 1.0, 'am': 1.0, 'you': 1.0, 'looking': 1.0, 'buy': 2.0, 'constantly': 1.0, 'your': 1.0, 'be': 1.0}
Word element => {'an': 1.0, 'to': 2.0, 'no': 2.0, 'easy': 2.0, 'all': 1.0, 'use': 1.0, 'buy': 1.0, 'smells': 1.0, 'decision': 1.0, 'at': 1.0, 'very': 1.0, 'bags': 1.0, 'special': 1.0}
Word element => {'item': 1.0, 'easy': 1.0, 'oder': 1.0, 'no': 1.0, 'there': 1.0, 'realize': 1.0, 'genie': 1.0, 'i': 1.0, 'diaper': 1.0, 'easier': 1.0, 'that': 1.0, 'so': 1.0, 'it': 3.0, 'this': 1.0, 'with': 1.0, 'or': 1.0, 'run': 1.0, 'open': 1.0, 'should': 1.0, 'to': 5.0, 'empty': 1.0, 'much': 1.0, 'be': 1.0, 'use': 3.0, 'every': 1.0, 'staple': 1.0, 'other': 1.0, 'in': 1.0, 'regular': 1.0, 'and': 2.0, 'household': 1.0, 'fact': 1.0, 'when': 1.0, 'you': 5.0, 't': 2.0, 'a': 3.0, 's': 1.0, 'can': 1.0, 'is': 4.0, 'trash': 1.0, 'plus': 1.0, 'bags': 1.0, 'great': 1.0, 'until': 1.0, 'big': 1.0, 'than': 1.0, 'brands': 1.0, 'because': 1.0, 'child': 1.0, 'up': 2.0, 'don': 2.0, 'have': 2.0, 'stock': 1.0, 'think': 1.0, 'on': 1.0, 'the': 4.0, 'refill': 1.0, 'anymore': 1.0, 'store': 1.0}
Word element => {'purchase': 1.0, 'holds': 1.0, 'of': 2.0, 'easy': 1.0, 'recommend': 1.0, 'diapers': 2.0, 'week': 1.0, 'excellent': 1.0, 'a': 1.0, 'nearly': 1.0, 'without': 1.0, 'product': 1.0, 'release': 2.0, 'soiled': 2.0, 'any': 1.0, 'and': 1.0, 'unpleasant': 1.0, 'operate': 1.0, 'to': 2.0, 'odor': 1.0, 'discard': 1.0, 'that': 1.0, 'would': 1.0, 'others': 1.0}
Word element => {'be': 1.0, 'price': 1.0, 'unload': 1.0, 'beat': 1.0, 'to': 1.0, 'easy': 1.0, 'very': 1.0, 's': 1.0, 'load': 1.0, 'hold': 1.0, 'it': 2.0, 'love': 1.0, 'can': 2.0, 'wish': 1.0, 'could': 1.0, 'in': 1.0, 'just': 1.0, 'diapers': 1.0, 'champ': 1.0, 'smell': 1.0, 'we': 1.0, 'i': 1.0, 'more': 1.0, 'the': 3.0, 'diaper': 2.0, 't': 2.0, 'anything': 1.0, 'really': 1.0, 'is': 1.0, 'once': 1.0, 'plus': 1.0, 'there': 1.0, 'and': 2.0}
Word element => {'well': 1.0, 'as': 1.0, 'very': 1.0, 'the': 2.0, 'in': 1.0, 'before': 1.0, 'wrapping': 1.0, 'by': 1.0, 'make': 1.0, 'champ': 1.0, 'diapers': 1.0, 'but': 1.0, 'bag': 1.0, 'have': 1.0, 'affordable': 1.0, 'odors': 1.0, 'up': 1.0, 'trash': 1.0, 'price': 1.0, 'any': 1.0, 'use': 2.0, 'far': 1.0, 'last': 1.0, 'easy': 1.0, 'tightly': 1.0, 'somewhat': 1.0, 'can': 2.0, 'love': 1.0, 'this': 1.0, 'it': 3.0, 'fills': 1.0, 'product': 1.0, 'to': 1.0, 'you': 2.0, 'i': 1.0, 'so': 1.0, 'we': 1.0, 'noticed': 1.0, 'placing': 1.0, 'quickly': 1.0, 'no': 1.0, 'longer': 1.0, 'regular': 1.0, 'is': 2.0}
Word element => {'wonderful': 1.0, 'who': 1.0, 'this': 1.0, 'highly': 1.0, 'would': 1.0, 'take': 1.0, 'need': 1.0, 'how': 1.0, 'in': 3.0, 'know': 1.0, 'comment': 1.0, 'poop': 1.0, 'only': 1.0, 'do': 1.0, 's': 2.0, 'a': 9.0, 't': 1.0, 'needs': 1.0, 'shower': 1.0, 'once': 1.0, 'lysol': 1.0, 'if': 1.0, 'still': 2.0, 'pail': 1.0, 'to': 6.0, 'have': 6.0, 'go': 1.0, 'disinfectant': 1.0, 'issue': 2.0, 'great': 1.0, 'anyone': 1.0, 'and': 6.0, 'closed': 1.0, '1': 2.0, 'since': 1.0, 'don': 1.0, 'reccomend': 1.0, 'years': 1.0, 'baby': 1.0, 'been': 1.0, 'because': 1.0, 'that': 3.0, 'my': 3.0, 'champ': 3.0, 'made': 1.0, 'weight': 1.0, '2': 1.0, 'change': 1.0, 'of': 3.0, 'the': 8.0, 'glad': 1.0, 'i': 13.0, 'love': 1.0, 'for': 1.0, 'one': 1.0, 'first': 1.0, 'it': 10.0, 'day': 1.0, 'loved': 1.0, 'tabs': 1.0, 'got': 1.0, 'previous': 1.0, 'even': 1.0, 'now': 2.0, 'used': 1.0, 'when': 1.0, 'roll': 1.0, 'seal': 1.0, 'your': 1.0, 'condition': 1.0, 'with': 3.0, 'clorox': 1.0, 'just': 1.0, 'smearing': 1.0, 'gross': 1.0, 'sorry': 1.0, 'had': 5.0, 'there': 1.0, 'after': 1.0, 'plunger': 2.0, 'pushed': 1.0, 'down': 2.0, 'you': 2.0, 'everytime': 1.0, 'never': 4.0, 'mine': 2.0, 'at': 1.0, 'is': 2.0, 'week': 1.0, 'spray': 2.0, 'out': 1.0, 'reason': 1.0, 'using': 1.0, 'bag': 1.0, 'received': 1.0, 'also': 1.0, 'use': 1.0, 'wipe': 2.0, 'odor': 2.0, 'part': 2.0, 'problem': 1.0, 'dirty': 1.0, 'shield': 1.0, 'kitchen': 1.0, 'diaper': 6.0, 'bags': 1.0, 'all': 1.0, 'an': 1.0, 'cleaning': 1.0, 'broken': 1.0}
Word element => {'live': 1.0, 'can': 1.0, 'still': 1.0, 'bag': 1.0, 'forgot': 1.0, 'before': 1.0, 'room': 1.0, 'this': 1.0, 'convinced': 1.0, 'didn': 1.0, 'but': 2.0, 'change': 1.0, 'occasionally': 1.0, 'to': 2.0, 'our': 1.0, 'was': 2.0, 'do': 2.0, 'and': 5.0, 'couldn': 1.0, 'claimed': 1.0, 'trash': 2.0, 'more': 1.0, 'i': 5.0, 'genie': 1.0, 'home': 1.0, 'champ': 2.0, 'later': 1.0, 'skeptical': 1.0, 'shower': 1.0, 'best': 1.0, 'c': 1.0, 'that': 6.0, 'blocked': 1.0, 'bottom': 2.0, 'one': 1.0, 'no': 2.0, 'about': 1.0, 'things': 1.0, 'as': 2.0, 'bags': 2.0, 'diaper': 3.0, 'additional': 1.0, 'of': 4.0, 'the': 6.0, 'really': 2.0, 'regular': 1.0, 'in': 1.0, 'unlike': 1.0, 'requires': 1.0, 'we': 5.0, 'a': 6.0, 's': 2.0, 't': 3.0, 'all': 1.0, 'other': 1.0, 'without': 1.0, 'works': 1.0, 'anything': 1.0, 'full': 1.0, 'dirty': 1.0, 'odors': 1.0, 'present': 1.0, 'am': 1.0, 'it': 7.0, 'expense': 1.0, 'hot': 1.0, 'for': 1.0, 'week': 3.0, 'than': 2.0, 'vacation': 1.0, 'have': 1.0, 'remains': 1.0, 'got': 1.0, 'daughter': 1.0, 'line': 1.0, 'smell': 1.0, 'diapers': 1.0, 'bad': 1.0, 'is': 2.0, 'at': 1.0, 'keep': 1.0, 'use': 1.0, 'with': 2.0, 'guard': 1.0, 'something': 1.0, 'odor': 1.0, 'left': 1.0, 'wipe': 1.0, 'absolutely': 1.0, 'out': 1.0, 'keeping': 1.0, 'wipes': 1.0, 'clean': 1.0, 'drier': 1.0, 'glad': 1.0, 'came': 1.0, 'sheet': 1.0, 'clorox': 1.0, 'just': 1.0, 'ensure': 1.0, 'nice': 1.0, 'else': 1.0}
Word element => {'used': 1.0, 'that': 1.0, 'best': 1.0, 'pail': 1.0, 'no': 1.0, 'face': 1.0, 'let': 1.0, 'easy': 1.0, 'pails': 1.0, 'appeciate': 1.0, 'with': 2.0, 'it': 2.0, 'perfect': 1.0, 'this': 3.0, 'happiest': 1.0, 'uses': 1.0, 'one': 3.0, 'suggest': 1.0, 'using': 1.0, 'i': 4.0, 'two': 1.0, 'odor': 1.0, 'tried': 1.0, 'things': 1.0, 'popular': 1.0, 'after': 1.0, 'bag': 2.0, 'other': 2.0, 'diaper': 2.0, 'but': 1.0, 'change': 1.0, 'most': 1.0, 'these': 1.0, 'decent': 1.0, 'and': 2.0, 'really': 1.0, 'highly': 1.0, 'is': 3.0, 'trash': 1.0, 'of': 2.0, 'does': 1.0, 'brands': 1.0, 's': 1.0, 'a': 1.0, 'the': 5.0, 'job': 1.0, 'containing': 1.0, 'to': 1.0, 'any': 1.0, 'all': 1.0, 'am': 1.0, 'dealing': 1.0, 've': 2.0, 'would': 1.0, 'from': 1.0, 'very': 1.0, 'beginning': 1.0}
Word element => {'else': 1.0, 'something': 1.0, 'want': 1.0, 'you': 1.0, 'but': 1.0, 'infants': 1.0, 'great': 1.0, 'be': 1.0, 'must': 1.0, 'consider': 1.0, 'again': 1.0, 'getting': 1.0, 'back': 1.0, 'think': 1.0, 'don': 1.0, 'money': 1.0, 'saving': 1.0, 'times': 1.0, 'bag': 1.0, 'could': 1.0, 'ago': 1.0, 't': 3.0, 'a': 2.0, 's': 1.0, 'maybe': 1.0, 'smelled': 2.0, '14': 1.0, 'neat': 2.0, 'star': 1.0, 'for': 3.0, 'disposal': 1.0, 'stars': 1.0, 'absolutely': 1.0, 'someone': 1.0, 'weeks': 1.0, 'taking': 1.0, 'older': 2.0, 'champ': 3.0, 'shower': 1.0, 'really': 3.0, 'at': 1.0, 'handle': 1.0, 'is': 5.0, 'babies': 1.0, 'more': 1.0, 'thing': 2.0, '2': 1.0, 'diaper': 4.0, 'of': 3.0, 'the': 9.0, 'baby': 1.0, 'she': 1.0, 'gave': 2.0, 'just': 1.0, 'why': 2.0, 'changed': 1.0, 'week': 1.0, 'very': 1.0, 'ok': 1.0, 'purchase': 1.0, 'only': 1.0, 'poop': 1.0, 'loved': 1.0, 'to': 3.0, 'idea': 1.0, 'any': 1.0, 'stinks': 1.0, 'all': 1.0, 'it': 6.0, 'thought': 1.0, 'awesome': 1.0, '4': 2.0, 'so': 2.0, 'easy': 1.0, 'however': 2.0, 'come': 1.0, 'garbage': 1.0, 'literally': 1.0, '1': 1.0, 'since': 1.0, 'won': 1.0, 'broke': 1.0, 'i': 11.0, 'well': 1.0, 'have': 2.0, 'on': 1.0, 'liners': 1.0, 'was': 1.0, 'huge': 1.0, 'months': 1.0, 'may': 1.0, 'my': 2.0, 'me': 1.0, 'entire': 1.0, 'try': 1.0, 'one': 1.0, 'see': 1.0, 'mistake': 1.0, 'couldn': 1.0, 'few': 1.0, 'this': 1.0, 'bad': 1.0, 'plus': 1.0, 'diapers': 2.0, 'parents': 1.0, 'because': 1.0, 'that': 3.0, 'young': 1.0, 'old': 1.0, 'least': 1.0, 'children': 1.0, 'got': 1.0, 'daughter': 1.0, 'system': 1.0, 'guess': 1.0, 'use': 1.0, 'her': 3.0, 'with': 1.0, 'odor': 1.0, 'after': 1.0, 'these': 1.0, 'room': 2.0, 'stand': 1.0, 'm': 1.0, 'in': 1.0}
Word element => {'system': 1.0, 'probably': 1.0, 'new': 1.0, 'in': 1.0, 'child': 1.0, 'second': 1.0, 'now': 1.0, 'thing': 1.0, '5': 1.0, 'daughter': 1.0, 'her': 3.0, 'champ': 1.0, 'also': 1.0, 'same': 2.0, 'baby': 1.0, 'neighber': 1.0, '9': 1.0, 'throw': 1.0, 'had': 3.0, 'finally': 1.0, 'out': 2.0, 'loose': 1.0, 'happened': 1.0, 'when': 2.0, 'smells': 1.0, 'are': 2.0, 'helped': 1.0, 'foam': 1.0, 'the': 9.0, 'diaper': 1.0, 'well': 1.0, 'refills': 1.0, 'process': 1.0, '2': 1.0, 'work': 1.0, 'i': 1.0, 'costly': 1.0, 'for': 1.0, 'changing': 1.0, 'son': 2.0, 's': 1.0, 't': 1.0, 'a': 6.0, 'we': 4.0, 'because': 1.0, 'came': 1.0, 'guessing': 1.0, 'although': 1.0, 'first': 1.0, 'it': 5.0, 'buying': 1.0, 'piece': 1.0, 'with': 1.0, 'our': 1.0, 'to': 7.0, 'expecting': 1.0, 'was': 4.0, 'm': 1.0, 'register': 1.0, 'didn': 1.0, '1': 1.0, 'seemed': 1.0, 'pail': 3.0, 'require': 1.0, 'opted': 1.0, 'always': 1.0, 'stink': 1.0, 'of': 4.0, 'lysol': 1.0, 'from': 1.0, 'bags': 1.0, 'this': 2.0, 'pain': 1.0, 'months': 3.0, 'by': 1.0, 'bit': 1.0, 'time': 2.0, 'neat': 1.0, 'owned': 1.0, 'eventually': 1.0, 'my': 3.0, 'old': 3.0, 'who': 1.0, 'keep': 1.0, 'at': 2.0, 'lot': 1.0, 'began': 1.0, 'wiped': 1.0, 'toss': 1.0, 'and': 3.0, 'inside': 2.0, '8': 1.0, 'down': 1.0, 'sprayed': 1.0}
Word element => {'about': 1.0, 'so': 1.0, 'do': 1.0, 'getting': 2.0, 'replacing': 1.0, 've': 1.0, 'well': 1.0, 'isn': 1.0, 'very': 1.0, 'foods': 1.0, 'system': 1.0, 'bad': 1.0, 'adult': 1.0, 'on': 1.0, 'year': 1.0, 'is': 1.0, 'daughter': 1.0, 'however': 1.0, 'for': 1.0, 'disposal': 1.0, 'product': 1.0, 'pain': 1.0, 'this': 1.0, 'with': 1.0, 'm': 1.0, 'ton': 1.0, '6': 1.0, 'now': 2.0, 'older': 1.0, 'neice': 1.0, 'lots': 1.0, 'baby': 1.0, 'week': 1.0, 'the': 7.0, 'but': 1.0, 'money': 1.0, '2': 1.0, 'wonderful': 1.0, 'regular': 1.0, 'in': 2.0, 'from': 4.0, 'day': 2.0, 'of': 2.0, 'begining': 2.0, 'shower': 1.0, 'sister': 1.0, 'thinking': 1.0, 'saved': 1.0, 'i': 6.0, 'champ': 2.0, 'genie': 1.0, 'diapers': 1.0, 'didn': 1.0, 'got': 2.0, 'every': 2.0, 'then': 1.0, 'smell': 3.0, 'prevent': 1.0, 'other': 1.0, 'was': 3.0, 'had': 1.0, 'at': 3.0, 'held': 1.0, 'too': 1.0, 'and': 4.0, 'my': 4.0, 'used': 1.0, 'different': 1.0, 'her': 2.0, 'diaper': 4.0, 'replace': 1.0, 'glad': 1.0, 'holding': 1.0, 'after': 1.0, 'finding': 1.0, 'out': 1.0, 'been': 1.0, 'that': 2.0, 'it': 6.0, 'she': 1.0, 'all': 2.0, 'to': 3.0, 'least': 1.0, 'bag': 3.0, 's': 1.0, 't': 2.0, 'a': 7.0, 'times': 1.0, 'when': 1.0}
Word element => {'problems': 1.0, 'odor': 1.0, 'one': 1.0, 'hand': 1.0, 'quick': 1.0, 'dirty': 1.0, 'this': 1.0, 'is': 1.0, 'such': 1.0, 'operation': 1.0, 'diapers': 1.0, 'easy': 1.0, 'an': 1.0, 'to': 1.0, 'and': 1.0, 'way': 1.0, 'clean': 1.0, 'dispose': 1.0, 'no': 1.0, 'of': 1.0}
Word element => {'room': 1.0, 'entire': 1.0, 'bag': 2.0, 'take': 1.0, 'way': 1.0, 'of': 3.0, 'up': 2.0, 'there': 1.0, 'type': 1.0, 'a': 2.0, 'leak': 1.0, 'diaper': 1.0, 'great': 1.0, 'do': 2.0, 'soon': 1.0, 'champ': 1.0, 'diapers': 1.0, 'disposal': 2.0, 'smell': 1.0, 'satisfied': 1.0, 'was': 1.0, 'system': 3.0, 'out': 3.0, 'smelling': 1.0, 'as': 2.0, 'to': 1.0, 'all': 1.0, 'you': 1.0, 'smells': 1.0, 'am': 1.0, 'i': 3.0, 'but': 1.0, 'can': 1.0, 'the': 6.0, 'place': 1.0, 'without': 1.0, 'those': 1.0, 'not': 1.0, 'just': 1.0, 'is': 1.0, 'say': 1.0, 'that': 1.0, '100': 1.0, 'with': 1.0, 'wish': 1.0, 'this': 1.0, 'open': 1.0, 'better': 1.0, 'taking': 1.0}
Word element => {'recommend': 1.0, 'definitely': 1.0, 'in': 1.0, 'but': 1.0, 'you': 1.0, 'bag': 1.0, 'extremely': 1.0, 'simple': 1.0, 'i': 1.0, 'uses': 1.0, 'any': 2.0, 'and': 1.0, 'pail': 2.0, 'is': 1.0, 'it': 4.0, 'with': 1.0, 't': 1.0, 'great': 2.0, 'diaper': 2.0, 'open': 1.0, 'very': 1.0, 'problems': 1.0, 'haven': 1.0, 'at': 1.0, 'all': 3.0, 'until': 1.0, 'holds': 1.0, 'had': 1.0, 'odor': 1.0, 'a': 1.0, 'well': 1.0}
Word element => {'way': 1.0, 'better': 1.0, 'bags': 1.0, 'special': 1.0, 'don': 1.0, 'toddler': 1.0, 'with': 1.0, 'm': 1.0, 'trained': 1.0, 'so': 1.0, 'potty': 1.0, 'every': 1.0, 'out': 1.0, 'smelling': 1.0, 'few': 1.0, 'great': 2.0, 'these': 1.0, 'the': 6.0, 'of': 1.0, 'that': 1.0, 'been': 1.0, 'a': 2.0, 't': 2.0, 'we': 3.0, 'and': 4.0, 'get': 1.0, 'figure': 1.0, '3years': 1.0, 'is': 4.0, 'two': 1.0, 'i': 3.0, 'old': 3.0, 'day': 1.0, 'buy': 2.0, 'did': 1.0, 'wish': 1.0, 'this': 1.0, 'first': 2.0, 'other': 1.0, 'oldest': 1.0, 'else': 1.0, 'months': 1.0, 'one': 2.0, 'then': 1.0, 'through': 1.0, 'love': 1.0, 'for': 3.0, 'product': 1.0, 'year': 2.0, 'why': 1.0, 'change': 1.0, 'but': 2.0, 'they': 1.0, 'seal': 1.0, 'doesn': 1.0, 'fact': 1.0, 'starts': 1.0, 'my': 3.0, 'now': 1.0, 'to': 3.0, 'would': 1.0, 've': 1.0, 'new': 1.0, 'something': 1.0, 'need': 1.0, '15': 1.0, 'it': 5.0, 'month': 1.0, 'off': 1.0, 'cover': 1.0, '3': 1.0, 'on': 1.0, 'last': 1.0, 'long': 1.0, 'only': 1.0, 'works': 1.0, 'using': 1.0, 'which': 1.0, 'contain': 1.0, 'you': 1.0, 'smells': 2.0, 'when': 1.0}
Word element => {'far': 1.0, 'had': 1.0, 'son': 1.0, 'our': 1.0, 'pail': 1.0, 'to': 2.0, 'although': 1.0, 'there': 1.0, 'no': 2.0, 'two': 1.0, 'disposables': 1.0, 'have': 4.0, 'dispose': 2.0, 'system': 1.0, 'since': 2.0, 'breastfed': 1.0, 'a': 5.0, 't': 1.0, 'but': 1.0, 'and': 5.0, 'from': 1.0, 'without': 2.0, 'works': 1.0, 'ie': 1.0, 'both': 1.0, 'got': 1.0, 'used': 1.0, 'does': 1.0, 'or': 1.0, 'noticeable': 1.0, 'laundry': 1.0, 'disposable': 3.0, 'be': 1.0, 'bought': 1.0, 'one': 2.0, 'starting': 1.0, 'it': 3.0, 'this': 2.0, 'with': 2.0, 'we': 6.0, 'airtight': 1.0, 'shouldn': 1.0, 'regular': 1.0, 'in': 3.0, 'said': 1.0, 'turning': 1.0, 'garbage': 1.0, 'even': 1.0, 'cloth': 4.0, 'minimum': 1.0, 'cheap': 1.0, 'for': 1.0, 'bag': 1.0, 'using': 2.0, 'you': 2.0, 'baby': 1.0, 'them': 2.0, 'can': 2.0, 'so': 2.0, 'use': 1.0, 'anyway': 1.0, 'makes': 1.0, 'did': 1.0, 'problem': 1.0, 'the': 10.0, 'of': 3.0, 'problems': 1.0, 'because': 1.0, 'that': 4.0, 'lining': 1.0, 'come': 1.0, 'my': 1.0, 'loose': 3.0, 'often': 1.0, 'husband': 2.0, 'velcro': 2.0, 'as': 1.0, 'bags': 1.0, 'diaper': 4.0, 'stuck': 1.0, 'diapers': 3.0, 'are': 2.0, 'first': 1.0, 'on': 1.0, 'smell': 2.0, 'make': 2.0, 'your': 1.0, 'sure': 2.0, 'fastened': 1.0, 'i': 1.0, 'putting': 1.0, 'well': 1.0, 'before': 1.0, 'at': 1.0, 'is': 5.0, 'handle': 1.0, 'uses': 1.0, 'heard': 1.0, 'wipes': 2.0, 'great': 1.0, 'throw': 1.0}
Word element => {'real': 1.0, 'up': 1.0, 'use': 1.0, 'new': 1.0, 'before': 1.0, 'a': 2.0, 'times': 1.0, '3': 1.0, 'bag': 2.0, 'no': 2.0, 'good': 2.0, 'back': 1.0, 'put': 1.0, 'week': 1.0, 'champ': 1.0, 'hand': 1.0, 'odors': 1.0, 'not': 1.0, 'change': 1.0, 'really': 2.0, 'is': 2.0, '2': 1.0, 'diaper': 2.0, 'the': 2.0, 'it': 2.0, 'in': 1.0, 'perfect': 1.0, 'while': 1.0, 'easy': 2.0, 'special': 1.0, 'clean': 3.0, 'disposal': 1.0, 'bags': 1.0, 'and': 4.0, 'very': 1.0, 'to': 2.0, 'mr': 1.0, 'one': 1.0, 'buy': 1.0, 'i': 3.0}
Word element => {'diapers': 1.0, 'soiled': 1.0, 'if': 1.0, 'see': 1.0, 'll': 1.0, 'in': 1.0, 'keep': 1.0, 'from': 1.0, 'escapes': 1.0, 'smell': 1.0, 'no': 1.0, 'always': 1.0, 'finger': 1.0, 'remember': 1.0, 'squishing': 1.0, 'use': 1.0, 'easy': 1.0, 'so': 1.0, 'champ': 1.0, 'love': 2.0, 'still': 1.0, 'sausage': 1.0, 'poop': 1.0, 'dd': 1.0, 'diaper': 2.0, 'is': 1.0, 'more': 1.0, 'mother': 1.0, 'they': 1.0, 'out': 1.0, 'used': 1.0, 'nanny': 1.0, 'once': 1.0, 'imagine': 1.0, 'babysitter': 1.0, 'and': 4.0, 'worked': 1.0, 'open': 1.0, 'become': 1.0, 'i': 9.0, 've': 3.0, 'now': 1.0, 'with': 3.0, 'heavy': 1.0, 'genies': 1.0, 'first': 1.0, 'kids': 1.0, 'bathroom': 1.0, 'lid': 1.0, 'my': 5.0, 'it': 6.0, 'annoying': 1.0, 'because': 1.0, 'than': 1.0, 'half': 1.0, 'life': 1.0, 'really': 1.0, 'problem': 1.0, 'smelly': 1.0, 'stinky': 1.0, 'never': 2.0, 'the': 2.0, 'deal': 1.0, 'as': 2.0, 'to': 3.0, 'all': 1.0, 'cartridges': 1.0, 'but': 1.0, 'can': 1.0, 'stench': 1.0, 'how': 1.0, 'we': 1.0, 's': 2.0, 'a': 3.0, 'could': 1.0, 'be': 1.0, 'changing': 1.0, 'been': 1.0, 'filled': 1.0, 'that': 2.0, 'had': 2.0, 'object': 1.0, 'take': 1.0}
Word element => {'quite': 1.0, 'utilized': 1.0, 'getting': 1.0, 'children': 1.0, 'gets': 1.0, 'down': 1.0, 'especially': 1.0, 'smell': 1.0, 'best': 1.0, 'face': 1.0, 'let': 1.0, 'check': 1.0, 'even': 1.0, 'diapers': 1.0, 'is': 1.0, 'more': 1.0, 'holds': 1.0, 'bags': 1.0, 'can': 2.0, 'one': 1.0, 'takes': 1.0, 'better': 1.0, 'dekor': 3.0, 'odor': 2.0, 'older': 1.0, 'now': 2.0, 'had': 1.0, 'as': 1.0, 'to': 2.0, 'was': 1.0, 'your': 1.0, 'utilize': 1.0, 'not': 1.0, 'than': 1.0, 'does': 1.0, 'because': 2.0, 'only': 1.0, 'two': 1.0, 'i': 7.0, 'have': 2.0, 't': 1.0, 's': 1.0, 'go': 1.0, 'a': 4.0, 'use': 2.0, 'refills': 1.0, 'keep': 1.0, 'since': 1.0, 'beats': 1.0, 'regular': 1.0, 'in': 3.0, 'diaper': 7.0, 'hands': 1.0, 'the': 12.0, 'keeps': 2.0, 'again': 1.0, 'champ': 4.0, 'prefer': 1.0, 'and': 4.0, 'chose': 1.0, 'broke': 2.0, 'arm': 1.0, 'that': 3.0, 'competition': 1.0, 'it': 7.0, 'lifts': 1.0, 'owned': 1.0, 'lid': 1.0, 'off': 1.0, 'child': 1.0, 'up': 1.0, 'bit': 1.0, 'so': 2.0, 'model': 1.0, 'hand': 1.0, 'using': 1.0, 'new': 1.0, 'expensive': 1.0, 'for': 1.0, 'product': 1.0, 'searching': 1.0, 'they': 1.0, 'discontinued': 1.0}
Word element => {'price': 1.0, 'overall': 1.0, 'although': 1.0, 'bag': 1.0, 'of': 1.0, 'use': 1.0, 'too': 2.0, 'and': 2.0, 'like': 1.0, 'seems': 1.0, 'convient': 1.0, 'up': 1.0, 'fill': 1.0, 'baby': 2.0, 'one': 2.0, 'diapers': 1.0, 'twisting': 1.0, 'even': 1.0, 'really': 1.0, 'top': 1.0, 'gallon': 1.0, 'no': 1.0, 'about': 1.0, 'thing': 1.0, '33': 1.0, 'what': 1.0, 'have': 2.0, 'seemed': 1.0, 'great': 2.0, 'that': 1.0, 'not': 2.0, 'capacity': 2.0, 'is': 7.0, 'trash': 2.0, 'everytime': 1.0, 'especially': 1.0, 'bottom': 1.0, 'twins': 1.0, 'you': 3.0, 'way': 1.0, 'if': 2.0, 'better': 1.0, 'keep': 1.0, 'bad': 2.0, 'from': 1.0, 'pine': 1.0, 'the': 11.0, 'tear': 1.0, 'than': 1.0, 'pretty': 1.0, 'take': 1.0, 'genie': 2.0, '4': 1.0, 'i': 3.0, 'cloth': 1.0, 'it': 7.0, 'this': 2.0, 'complain': 1.0, 'with': 4.0, 'basis': 1.0, 'wet': 1.0, 's': 1.0, 'hole': 1.0, 't': 1.0, 'a': 4.0, 'doesn': 1.0, 'smell': 1.0, 'change': 1.0, 'but': 1.0, 'can': 3.0, 'out': 1.0, 'smelling': 1.0, 'sol': 1.0, 'any': 1.0, 'shoving': 1.0, 'as': 1.0, 'to': 4.0, 'turning': 1.0, 'regular': 1.0, 'in': 2.0, 'fast': 1.0, 'generally': 1.0, 'much': 1.0, 'only': 2.0, 'works': 1.0, 'for': 4.0, 'except': 1.0, 'your': 1.0, 'on': 1.0, 'put': 1.0, '3': 1.0, 'days': 1.0, 'or': 2.0, 'however': 1.0}
Word element => {'kept': 1.0, 'am': 1.0, 'take': 1.0, 'could': 1.0, 'times': 1.0, 'admit': 1.0, 'have': 2.0, 'great': 1.0, 'not': 2.0, 'bulky': 1.0, 'refills': 1.0, 'specific': 1.0, 'brand': 1.0, 'buy': 1.0, 'forced': 1.0, 'idea': 1.0, 'works': 1.0, 'how': 2.0, 'given': 1.0, 'minor': 1.0, 'does': 1.0, 'escape': 1.0, 'where': 1.0, 'opened': 1.0, 'below': 1.0, 'safer': 1.0, 'though': 1.0, 'more': 2.0, 'tough': 1.0, 'cons': 2.0, 'changesthe': 1.0, 'bag': 1.0, 'may': 1.0, 'my': 1.0, 'often': 1.0, 'so': 3.0, 'almost': 2.0, 'thing': 2.0, 'empty': 1.0, 'squirmy': 1.0, 'its': 2.0, 'you': 5.0, 'if': 2.0, 'that': 2.0, 'frequently': 1.0, 'free': 1.0, 'smell': 2.0, 'arm': 1.0, 'up': 1.0, 'baby': 1.0, 'soo': 1.0, 'and': 10.0, 'try': 1.0, 'one': 3.0, 'get': 1.0, 'months': 1.0, 'taped': 1.0, 'single': 1.0, 'snap': 1.0, 'cost': 1.0, 't': 1.0, 'small': 1.0, 'a': 5.0, 'glad': 2.0, 'researched': 1.0, 'available': 1.0, 'all': 1.0, 'which': 1.0, 'side': 1.0, 'made': 1.0, 'only': 4.0, 'options': 1.0, 'tricks': 1.0, 'the': 13.0, 'of': 3.0, 'well': 1.0, 'i': 12.0, 'were': 1.0, 'full': 1.0, 'with': 2.0, 'convenient': 1.0, 'it': 14.0, 'holding': 1.0, 'genie': 1.0, 'disposal': 2.0, 'for': 1.0, 'adept': 1.0, 'was': 5.0, 'instad': 1.0, 'disposing': 1.0, 'seem': 1.0, 'handed': 1.0, 'sidetable': 1.0, 'this': 3.0, 'few': 1.0, 'saw': 1.0, 'emptied': 2.0, 'to': 8.0, 'pretty': 2.0, 'decided': 1.0, 'used': 2.0, 'some': 1.0, 'simple': 1.0, 'being': 1.0, 'prevent': 1.0, 'leakage': 1.0, 'but': 2.0, 'rolled': 1.0, 'securely': 1.0, 'before': 1.0, 'lived': 1.0, 'don': 1.0, 'opening': 3.0, 'next': 1.0, 'always': 1.0, 'original': 1.0, 'effective': 1.0, 'aired': 1.0, 'look': 1.0, 'at': 3.0, 'is': 5.0, 'handle': 2.0, 'position': 1.0, 'hate': 1.0, 'returned': 2.0, 'stayed': 1.0, 'in': 1.0, 'there': 1.0, 'contact': 1.0, 'smelly': 1.0, 'odor': 2.0, 'll': 1.0, 'bit': 1.0, 'found': 1.0, 'know': 1.0, 'when': 6.0, 'what': 1.0, 'mean': 1.0, 'use': 1.0, 'champ': 3.0, 'scented': 1.0, 'tends': 1.0, 'large': 2.0, 'between': 1.0, 'are': 1.0, 'first': 1.0, 'diapers': 2.0, 'lock': 1.0, 'diaper': 4.0, 'bags': 1.0, 'out': 1.0}
Word element => {'can': 1.0, 'now': 1.0, 'months': 1.0, 'dirty': 2.0, 'wipes': 1.0, 'husband': 1.0, 'had': 1.0, 'to': 1.0, 'all': 1.0, 'up': 1.0, 'lysol': 1.0, 'and': 5.0, 'changes': 1.0, 'sure': 1.0, 'easy': 1.0, 'get': 1.0, 'spray': 1.0, 'i': 1.0, '3': 1.0, 'make': 1.0, 'my': 1.0, 'wrap': 1.0, 'the': 7.0, 'diaper': 3.0, 'replace': 1.0, 'in': 2.0, 'stuck': 1.0, 'complain': 1.0, 'quick': 1.0, 'it': 4.0, 'champ': 1.0, 'doesn': 1.0, 'inside': 1.0, 't': 2.0, 'we': 3.0, 'makes': 1.0, 'love': 1.0, 'for': 1.0, 'before': 1.0, 'time': 1.0, 'so': 1.0, 'shoot': 1.0, 've': 1.0, 'each': 1.0, 'depositing': 1.0, 'bag': 2.0, 'is': 1.0, 'full': 1.0, 'empty': 1.0, 'pail': 1.0, 'out': 1.0, 'almost': 1.0}
Word element => {'full': 1.0, 'pail': 1.0, 'that': 1.0, 'drum': 1.0, 'while': 1.0, 'a': 1.0, 'stuck': 1.0, 'in': 1.0, 'once': 1.0, 'space': 1.0, 'much': 1.0, 'when': 1.0, 'gets': 1.0, 'too': 2.0, 'not': 1.0, 'use': 1.0, 'easy': 1.0, 'holds': 1.0, 'but': 1.0, 'diapers': 1.0, 'to': 1.0, 'product': 2.0, 'kind': 1.0, 's': 2.0, 'plenty': 1.0, 'the': 2.0, 'great': 2.0, 'been': 1.0, 'has': 1.0, 'important': 1.0, 'only': 1.0, 'it': 1.0, 'this': 2.0, 'take': 1.0, 'bag': 1.0, 'dirty': 1.0, 'up': 1.0, 'of': 2.0, 'takes': 1.0, 'any': 1.0, 'and': 1.0, 'is': 2.0, 'does': 1.0}
Word element => {'chose': 1.0, 'big': 1.0, 'no': 1.0, 'be': 1.0, 'that': 1.0, 'glad': 1.0, 'insert': 1.0, 'blue': 1.0, 'close': 1.0, 'open': 1.0, 'tricky': 1.0, 'holds': 1.0, 'is': 1.0, 'addition': 1.0, 'things': 1.0, 'odor': 2.0, 'manipulate': 1.0, 'diapers': 1.0, 'wouldn': 1.0, 'with': 2.0, 'this': 3.0, 'greater': 1.0, 'it': 2.0, 'well': 1.0, 'can': 1.0, 'change': 2.0, 'really': 1.0, 'and': 3.0, 'difficult': 1.0, 'still': 2.0, 'bought': 1.0, 'considered': 1.0, 'have': 2.0, 'supposedly': 1.0, 'deal': 1.0, 'the': 8.0, 'baby': 1.0, 'kitchen': 1.0, 'am': 1.0, 'you': 3.0, 'point': 1.0, 'a': 4.0, 'we': 2.0, 't': 2.0, 'could': 1.0, 'over': 2.0, 'on': 1.0, 'less': 1.0, 'genie': 2.0, 'i': 2.0, 'because': 2.0, 'use': 1.0, 'little': 1.0, 'capacity': 1.0, 'breastmilk': 1.0, 'all': 1.0, 'to': 4.0, 'as': 2.0, 'bags': 1.0, 'from': 1.0, 'often': 2.0, 'wrong': 1.0, 'last': 1.0, 'was': 1.0, 'doesn': 1.0, 'regular': 1.0, 'in': 3.0, 'bag': 3.0, 'need': 1.0, 'bin': 1.0, 'mom': 1.0, 'keep': 1.0, 'breastfed': 1.0}
Word element => {'bad': 1.0, 'shocked': 1.0, 'pretty': 1.0, 'so': 1.0, 'else': 1.0, 'baby': 1.0, 'refund': 1.0, 'and': 1.0, 'i': 6.0, 'buy': 1.0, 'can': 1.0, 'quot': 2.0, 'cannot': 2.0, 'anyone': 1.0, 'that': 1.0, 'something': 1.0, 'trend': 1.0, 'am': 1.0, 'luck': 1.0, 'product': 1.0, 'for': 2.0, 'had': 1.0, 'has': 1.0, 'they': 1.0, 'it': 1.0, 'deodorizer': 1.0, 'her': 1.0, 'good': 1.0, 'emailed': 1.0, 'odorless': 1.0, 'with': 1.0, 'this': 1.0, 'have': 1.0, 'nursing': 1.0, 'my': 1.0, 'daughter': 1.0, 'm': 1.0, 'believe': 2.0, 'the': 1.0, 'go': 1.0, 'a': 3.0, 't': 1.0, 'how': 1.0, 'stench': 1.0, 'from': 1.0, 'pail': 1.0, 'is': 2.0, 'horrific': 1.0, 'even': 1.0, 'didn': 1.0, 'make': 1.0, 'at': 1.0, 'space': 1.0}
Word element => {'expectations': 1.0, 'but': 1.0, 'design': 1.0, 'cute': 1.0, 'not': 2.0, 'than': 1.0, 'containment': 1.0, 'smells': 1.0, 'honestly': 1.0, 'closing': 1.0, 'and': 2.0, 'opening': 1.0, 'everything': 1.0, 'higher': 1.0, 'did': 1.0, 'pail': 1.0, 'any': 1.0, 'don': 1.0, 'worthy': 1.0, 'a': 2.0, 'think': 1.0, 'i': 3.0, 'bin': 1.0, 'which': 1.0, 'of': 1.0, 'trash': 1.0, 'based': 1.0, 'greater': 1.0, 'it': 1.0, 'this': 1.0, 'hard': 1.0, 'expecting': 1.0, 'on': 2.0, 'really': 1.0, 'provided': 1.0, 't': 1.0, 'the': 2.0, 'normal': 1.0, 'was': 3.0, 'had': 1.0, 'content': 1.0, 'their': 1.0, 'time': 1.0, 'site': 1.0, 'they': 1.0}
Word element => {'won': 1.0, 'gift': 1.0, 'best': 1.0, 'far': 1.0, 'by': 1.0, 'baby': 1.0, 'this': 1.0, 'recommend': 1.0, 'way': 1.0, 'same': 1.0, 'pail': 1.0, 'aren': 1.0, 'can': 1.0, 'but': 1.0, 'change': 1.0, 'yes': 1.0, 'noticed': 1.0, 'have': 1.0, 'need': 1.0, 'hand': 1.0, 'one': 1.0, 'world': 1.0, 'thing': 2.0, 'easiet': 1.0, 'anyone': 1.0, 'be': 2.0, 'had': 1.0, 'truly': 1.0, 'it': 5.0, 'with': 2.0, 'received': 1.0, 'how': 1.0, 'impressed': 1.0, 'briefly': 1.0, 'and': 2.0, 'get': 1.0, 'worked': 1.0, 'highly': 1.0, 'really': 1.0, 'registered': 1.0, 'in': 2.0, 'regular': 1.0, 'the': 10.0, 'diaper': 2.0, 'i': 6.0, 'problem': 1.0, 'odor': 1.0, 'happier': 1.0, 'tried': 1.0, 'buy': 1.0, 'other': 1.0, 'kitchen': 1.0, 'out': 1.0, 'wasn': 1.0, 'primarily': 1.0, 'might': 1.0, 'we': 1.0, 't': 4.0, 's': 1.0, 'could': 2.0, 'a': 4.0, 'smell': 1.0, 'an': 1.0, 'friend': 1.0, 'house': 1.0, 'disappointed': 1.0, 'genie': 1.0, 'champ': 3.0, 'not': 3.0, 'at': 2.0, 'when': 1.0, 'you': 4.0, 'idea': 1.0, 'special': 1.0, 'mention': 1.0, 'seemed': 1.0, 'shower': 1.0, 'imagine': 1.0, 'of': 2.0, 'is': 3.0, 'trash': 1.0, 'because': 1.0, 'having': 2.0, 'for': 1.0, 'refills': 2.0, 'use': 2.0, 'systems': 1.0, 'instead': 1.0, 'bags': 1.0, 'as': 1.0, 'to': 5.0, 'all': 3.0, 'good': 1.0, 'reviews': 1.0}
Word element => {'my': 1.0, 'genie': 1.0, 'having': 1.0, 'money': 1.0, 'save': 1.0, 'than': 1.0, 'airing': 1.0, 'cleaning': 1.0, 'thing': 1.0, 'spend': 1.0, 'top': 1.0, 'surfaces': 1.0, 'all': 1.0, 'cost': 1.0, 't': 1.0, 'just': 1.0, 'back': 1.0, 'before': 1.0, 'day': 1.0, 'problem': 2.0, 'nursery': 1.0, 'here': 1.0, 'gives': 1.0, 'does': 1.0, 'stinky': 1.0, 'mine': 1.0, 'a': 5.0, 's': 6.0, 'going': 1.0, 'could': 1.0, 'their': 1.0, 'very': 1.0, 'darling': 1.0, 'little': 3.0, 'your': 2.0, 'on': 2.0, 'can': 1.0, 'constantly': 1.0, 'gets': 1.0, 'when': 1.0, 'seal': 1.0, 'but': 2.0, 'one': 3.0, 'buy': 1.0, 'foods': 1.0, 'mess': 1.0, 'i': 3.0, 'great': 1.0, 'place': 1.0, 'product': 2.0, 'for': 2.0, 'where': 2.0, 'and': 5.0, 'couple': 1.0, 'nothing': 1.0, 'out': 3.0, 'least': 2.0, 'it': 11.0, 'with': 4.0, 'first': 1.0, 'this': 5.0, 'easy': 1.0, 'months': 1.0, 'get': 2.0, 'her': 1.0, 'use': 1.0, 'there': 2.0, 'twisting': 1.0, 'even': 1.0, 'you': 4.0, 'starts': 1.0, 'lid': 2.0, 'tight': 1.0, 'special': 1.0, 'or': 1.0, 'struggling': 2.0, 'was': 1.0, 'opens': 1.0, 'worth': 1.0, 'air': 3.0, 'plastic': 2.0, 'stench': 1.0, 'pail': 4.0, 'job': 1.0, 'to': 6.0, 'against': 1.0, 'time': 2.0, 'that': 3.0, 'not': 3.0, 'remotely': 1.0, 'leaks': 1.0, 'the': 17.0, 'of': 4.0, 'room': 1.0, 'once': 1.0, 'lysol': 1.0, 'inside': 1.0, 'also': 1.0, 'let': 1.0, 'no': 2.0, 'chamber': 1.0, 'bags': 3.0, 'diaper': 4.0, 'waft': 1.0, 'each': 1.0, 'better': 1.0, 'flip': 1.0, 'in': 4.0, 'm': 1.0, 'more': 2.0, 'realistic': 2.0, 'goes': 1.0, 'smell': 2.0, 'do': 2.0, 'much': 1.0, 'contain': 1.0, 'empty': 1.0, 'is': 6.0, 'at': 2.0, 'odor': 1.0, 'wipe': 1.0, 'week': 1.0, 'disinfecting': 1.0, 'wipes': 1.0, 'spray': 1.0}
Word element => {'odor': 1.0, 'with': 1.0, 'has': 1.0, 'there': 1.0, 'be': 1.0, 'throwing': 1.0, 'although': 1.0, 'can': 1.0, 'm': 1.0, 'street': 1.0, 'out': 1.0, 'walk': 1.0, 'only': 1.0, 'wet': 1.0, 'had': 1.0, 'house': 2.0, 'better': 2.0, 'their': 1.0, 'ask': 1.0, 'reason': 1.0, 'in': 4.0, 'your': 1.0, 'think': 2.0, 'don': 1.0, 'poopy': 2.0, 'until': 1.0, 'the': 10.0, 'diaper': 2.0, 'have': 1.0, 'bad': 1.0, 'they': 2.0, 'and': 3.0, 'sure': 1.0, 'get': 1.0, 'parents': 2.0, 'one': 1.0, 'using': 2.0, 't': 1.0, 's': 1.0, 'nannied': 1.0, 'than': 1.0, 'because': 1.0, 'i': 5.0, 'two': 1.0, 'some': 2.0, 'control': 1.0, 'finally': 1.0, 'smell': 2.0, 'else': 1.0, 'so': 1.0, 'diapers': 5.0, 'champ': 2.0, 'home': 2.0, 'when': 1.0, 'this': 3.0, 'come': 1.0, 'it': 1.0, 'for': 2.0, 'product': 1.0, 'is': 2.0, 'garbage': 2.0, 'start': 1.0, 'fine': 1.0, 'used': 1.0, 'to': 4.0, 'smelled': 1.0, 'something': 1.0, 'would': 2.0, 'babies': 1.0, 'that': 2.0, 'were': 1.0, 'pail': 1.0, 'why': 1.0}
Word element => {'these': 1.0, 'complicated': 1.0, 'buy': 1.0, 'though': 1.0, 'drawbacks': 1.0, 'odor': 1.0, 't': 1.0, 'don': 1.0, 'ordinary': 1.0, 'waste': 1.0, 'simple': 1.0, 'essentially': 1.0, 'month': 1.0, 'better': 1.0, 'you': 2.0, 'gets': 1.0, 'your': 1.0, 'twisting': 1.0, 'via': 1.0, 'own': 1.0, '1': 1.0, 'control': 1.0, 'regards': 1.0, 'in': 3.0, 'over': 1.0, 'big': 1.0, '2': 2.0, 'worth': 1.0, 'litte': 1.0, 'now': 2.0, 'bought': 1.0, 'out': 1.0, 'went': 1.0, 'must': 1.0, 'lots': 1.0, 'eat': 1.0, 'when': 1.0, 'worse': 1.0, 'start': 1.0, 'poops': 2.0, 'really': 2.0, 'unbearable': 1.0, 'they': 3.0, 'no': 1.0, 'about': 4.0, 'also': 1.0, 'hood': 2.0, 'saying': 1.0, 'fancy': 1.0, 'odors': 2.0, 'just': 1.0, 'contained': 1.0, 'than': 2.0, 'fillers': 1.0, 'noticed': 1.0, 'on': 2.0, 'babies': 1.0, 'more': 2.0, 'trash': 2.0, 'smellier': 1.0, 'well': 2.0, 'champ': 8.0, 'genie': 7.0, 'their': 2.0, 'advantages': 1.0, 'that': 4.0, 'into': 1.0, 'our': 4.0, 'each': 1.0, 'read': 1.0, 'prevent': 1.0, 'stink': 1.0, 'very': 4.0, 'pails': 1.0, 'before': 1.0, 'true': 1.0, 'equal': 1.0, 'get': 2.0, 'tons': 1.0, 'months': 3.0, 'mechanism': 2.0, 'decided': 1.0, 'thicker': 1.0, 'few': 1.0, 'this': 1.0, '3': 1.0, 'older': 2.0, 'are': 3.0, 'first': 1.0, 'its': 1.0, 'research': 1.0, 'filler': 1.0, 'with': 7.0, 'dealing': 1.0, 'convenient': 1.0, 'the': 22.0, 'of': 5.0, 'did': 1.0, 'cheaper': 1.0, 'reviews': 2.0, 'fine': 1.0, 'we': 11.0, 'a': 6.0, 'could': 1.0, 's': 3.0, 'was': 2.0, 'thickness': 1.0, 'born': 1.0, 'knew': 1.0, 'child': 4.0, 'products': 2.0, 'go': 1.0, 'alot': 1.0, 'couples': 1.0, 'from': 1.0, 'has': 2.0, 'solution': 1.0, 'as': 1.0, 'diaper': 6.0, 'bags': 4.0, 'couple': 3.0, 'and': 9.0, 'liked': 2.0, 'mainly': 1.0, 'here': 1.0, 'amazon': 1.0, 'her': 1.0, 'use': 1.0, 'prevention': 1.0, 'both': 2.0, 'thought': 1.0, 'it': 2.0, 'seemed': 1.0, 'there': 1.0, 'pouch': 1.0, 'were': 4.0, 'baby': 1.0, 'many': 1.0, 'one': 1.0, 'happy': 3.0, 'customers': 1.0, 'can': 1.0, 'so': 3.0, 'if': 1.0, 'would': 1.0, 'for': 3.0, '4': 1.0, 'progress': 1.0, '6': 1.0, 'do': 1.0, 'changing': 2.0, 'much': 5.0, 'regular': 1.0, 'using': 1.0, 'bag': 2.0, 'easy': 1.0, 'but': 1.0, 'after': 2.0, 'solids': 2.0, 'eating': 1.0, 'is': 6.0, 'at': 1.0, 'pleased': 1.0, '7': 1.0, 'smell': 2.0, 'pail': 1.0, 'to': 5.0, 'pretty': 1.0, 'became': 1.0}
Word element => {'would': 1.0, 'i': 1.0, 'definitely': 1.0, 'days': 1.0, 'five': 1.0, 'every': 1.0, 'about': 1.0, 'when': 1.0, 'scented': 1.0, 'yet': 1.0, 'or': 1.0, 'not': 1.0, 'easy': 1.0, 'full': 1.0, 'found': 1.0, 'ruffies': 1.0, 'nursery': 1.0, 'church': 1.0, 'recommend': 1.0, 'store': 1.0, 'used': 1.0, 'dekor': 1.0, 'own': 1.0, 'and': 5.0, 't': 1.0, 'we': 5.0, 'registered': 1.0, 'is': 2.0, 'with': 2.0, 'bag': 1.0, 'comparing': 1.0, 'it': 4.0, 'bags': 1.0, 'while': 1.0, 'extremely': 1.0, 'the': 9.0, 'diaper': 6.0, 'in': 1.0, 'does': 1.0, 'having': 1.0, 'had': 1.0, 'now': 1.0, 'for': 1.0, 'diapers': 1.0, 'at': 3.0, 'after': 1.0, 'so': 1.0, 'home': 1.0, 'champ': 3.0, 'genie': 2.0, 'hasn': 1.0, 'old': 1.0, 'be': 1.0, 'difficult': 1.0, 'use': 3.0, 'working': 1.0, 'loved': 1.0, 'garbage': 1.0, 'number': 1.0, 'stink': 1.0, 'of': 1.0, 'there': 1.0, 'were': 1.0, 'least': 1.0, 'to': 3.0, 'our': 1.0, 'changing': 1.0, 'baby': 1.0, 'change': 1.0, 'four': 1.0, 'have': 1.0, 'months': 1.0}
Word element => {'some': 1.0, 'save': 1.0, 'refills': 1.0, 'expensive': 1.0, 'being': 1.0, 'forced': 1.0, 'of': 1.0, 'champ': 1.0, 'inside': 1.0, 'easy': 1.0, 'instead': 1.0, 'use': 2.0, 'so': 1.0, 'pail': 1.0, 'odors': 1.0, 'hassle': 1.0, 'bag': 1.0, 'more': 1.0, 'the': 3.0, 't': 1.0, 'diaper': 3.0, 'to': 2.0, 'had': 1.0, 'yourself': 1.0, 'problems': 1.0, 'for': 1.0, 'love': 2.0, 'can': 1.0, 'buy': 2.0, 'i': 3.0, 'and': 3.0, 'money': 1.0, 'any': 2.0, 'haven': 1.0, 'this': 1.0, 'it': 1.0, 'with': 1.0, 'that': 1.0, 's': 1.0, 'you': 1.0}
Word element => {'of': 1.0, 'operate': 1.0, 'easy': 1.0, 'good': 1.0, 'holds': 1.0, 'odorless': 1.0, 'our': 1.0, 'we': 2.0, 'diapers': 1.0, 'tied': 1.0, 'did': 1.0, 'be': 1.0, 'decision': 1.0, 'buy': 1.0, 'i': 1.0, 'to': 4.0, 'husband': 1.0, 'and': 2.0, 'any': 1.0, 'refills': 1.0, 'decided': 1.0, 'very': 1.0, 'are': 1.0, 'because': 1.0, 'not': 1.0, 'is': 1.0, 'want': 1.0, 'amount': 1.0, 'down': 1.0, 'expensive': 1.0, 'my': 1.0, 'happy': 1.0, 'it': 1.0, 'this': 1.0, 'with': 1.0}
Word element => {'hope': 1.0, 'helps': 2.0, 'bagging': 1.0, 'double': 1.0, 'diapers': 1.0, 'them': 2.0, 'laying': 1.0, 'grocery': 1.0, 'me': 1.0, 'box': 1.0, 'so': 2.0, 'and': 5.0, 'in': 3.0, 'regular': 1.0, 'days': 2.0, 'anything': 1.0, 'think': 1.0, 'put': 2.0, 'probably': 1.0, 'your': 1.0, 'let': 1.0, 'some': 2.0, 'keep': 1.0, 'did': 1.0, 'there': 1.0, 'use': 3.0, '3': 1.0, 'refills': 1.0, 'roll': 1.0, 'gallon': 1.0, 'sit': 1.0, 'straps': 2.0, 'have': 5.0, 'with': 1.0, 'buying': 1.0, 'few': 1.0, 'this': 3.0, 'poop': 1.0, 'that': 1.0, 'problems': 1.0, 'because': 1.0, 'don': 2.0, 'money': 1.0, 'but': 1.0, 'change': 1.0, '2': 1.0, 'handy': 1.0, 'clogged': 1.0, 'will': 3.0, 'champ': 2.0, 'genie': 1.0, 'you': 5.0, 'odor': 2.0, 'i': 3.0, 'otherwise': 1.0, 'poopy': 1.0, 'like': 3.0, 'hold': 1.0, 't': 2.0, 's': 2.0, 'a': 2.0, 'great': 1.0, '1': 1.0, 'bags': 3.0, 'leave': 1.0, 'diaper': 4.0, 'one': 1.0, 'waste': 1.0, 'expect': 1.0, 'uses': 1.0, 'caught': 1.0, 'inevitable': 1.0, 'nursery': 1.0, 'here': 1.0, 'tricks': 1.0, 'an': 1.0, 'expensive': 1.0, 'orders': 2.0, 'arm': 1.0, 'for': 3.0, '32': 1.0, 'hammer': 1.0, 'make': 1.0, 'anymore': 1.0, 'smell': 2.0, 'help': 1.0, 'baking': 1.0, 'couple': 1.0, 'soda': 1.0, 'is': 1.0, 'at': 1.0, 'bottom': 1.0, 'the': 16.0, 'of': 3.0, 'to': 7.0, 'pail': 1.0, 'side': 1.0, 'eliminate': 3.0, 'around': 1.0, 'obvious': 1.0, 'bag': 2.0, 'really': 1.0, 'it': 3.0, 'week': 1.0, 'roses': 1.0, 'tons': 1.0, 'get': 2.0, 'sure': 1.0, 'shoot': 2.0, 'tight': 1.0, 'together': 1.0, 'every': 1.0, 'if': 1.0, 're': 1.0}
Word element => {'so': 1.0, 'feed': 1.0, 'artificially': 1.0, 'you': 1.0, 'whether': 1.0, 'big': 1.0, 'makes': 1.0, 'also': 1.0, 'or': 2.0, 'think': 1.0, 'smell': 1.0, 'use': 1.0, 'diapers': 1.0, 'champ': 1.0, 'not': 1.0, 'just': 1.0, 'fuzzi': 1.0, 'breastfeed': 2.0, 'my': 2.0, 'diaper': 1.0, 'love': 1.0, 'that': 1.0, 'say': 1.0, 'had': 1.0, 'to': 1.0, 'wanted': 1.0, 'difference': 1.0, 'and': 1.0, 'cloth': 1.0, 'i': 7.0, 'only': 1.0, 'it': 2.0, 'with': 2.0, 'bunz': 1.0, 'have': 2.0, 'never': 2.0, 'a': 3.0, 'problem': 2.0}
Word element => {'do': 1.0, 'would': 1.0, 'can': 1.0, 'think': 1.0, 'i': 1.0, 'now': 1.0, 'right': 1.0, 'young': 1.0, 'are': 1.0, 'they': 1.0, 'good': 1.0, 'an': 1.0, 'closet': 1.0, 'this': 1.0, 'with': 4.0, 'it': 6.0, 'liked': 1.0, 'well': 1.0, 'priced': 1.0, 's': 2.0, 'could': 1.0, 'we': 5.0, 'others': 1.0, 'bought': 1.0, 'the': 5.0, 'diaper': 2.0, 'how': 1.0, 'champ': 1.0, 'because': 1.0, 'just': 1.0, 'started': 2.0, 'heard': 1.0, 'purchase': 1.0, 'where': 2.0, 'over': 1.0, 'refills': 1.0, 'use': 1.0, 'warmer': 1.0, 'trash': 2.0, 'while': 1.0, 'bags': 1.0, 'worked': 1.0, 'freshiner': 1.0, 'son': 2.0, 'and': 2.0, 'get': 1.0, 'pail': 1.0, 'espeically': 1.0, 'happy': 1.0, 'until': 1.0, 'any': 1.0, 'all': 1.0, 'our': 3.0, 'to': 2.0, 'out': 1.0, 'same': 1.0, 'eat': 1.0, 'very': 2.0, 'foods': 1.0, 'you': 1.0, 'smells': 1.0, 'keep': 1.0, 'air': 1.0, 'regular': 1.0, 'in': 2.0}
Word element => {'than': 1.0, 'dump': 1.0, 'there': 1.0, 'worst': 1.0, 'this': 1.0, 'basis': 1.0, 'every': 1.0, 'on': 1.0, 'started': 1.0, 'flies': 1.0, 'little': 1.0, 'ever': 1.0, 'day': 2.0, 'changing': 1.0, 'into': 1.0, 'by': 1.0, 'penetrated': 1.0, 'get': 1.0, 'an': 1.0, 'smell': 1.0, 'product': 1.0, 'for': 2.0, 'weeks': 1.0, 'far': 1.0, 'took': 1.0, 'dumpster': 1.0, 'walk': 2.0, 'room': 3.0, 'out': 3.0, 'take': 3.0, 'rather': 1.0, 'of': 2.0, 'once': 1.0, 'stinks': 1.0, 'her': 1.0, 'it': 4.0, 'with': 1.0, 'first': 1.0, 'eating': 1.0, 'pooh': 1.0, 'change': 2.0, 'say': 1.0, 'is': 3.0, 'open': 1.0, 'champ': 4.0, 'i': 8.0, 'the': 15.0, 'diaper': 5.0, 'a': 1.0, 't': 1.0, 'had': 1.0, 'word': 1.0, 'outside': 2.0, 'to': 9.0, 'was': 2.0, 'bag': 3.0, 'have': 3.0, 'other': 1.0, 'tell': 1.0, 'until': 1.0, 'mention': 2.0, 'at': 1.0, 'let': 1.0, 'inside': 1.0, 'everytime': 1.0, 'agree': 1.0, 'did': 1.0, 'my': 3.0, '19': 1.0, 'solids': 1.0, 'tiny': 1.0, 'nails': 1.0, 'each': 1.0, 'would': 1.0, 'ones': 1.0, 'break': 1.0, 'moms': 1.0, 'and': 5.0, 'not': 2.0, 'me': 1.0, 'don': 1.0, 'long': 1.0, 'daughter': 1.0, 'one': 1.0, 'decided': 1.0, 'months': 1.0, 'use': 1.0, 'breast': 1.0, 'difficult': 1.0, 'still': 2.0, 'growing': 1.0, 'feeding': 1.0, 'again': 1.0, 'when': 1.0, 'you': 1.0}
Word element => {'breath': 1.0, 'for': 1.0, 'prepared': 1.0, 'be': 1.0, 'warning': 1.0, 'word': 1.0, 'prevention': 1.0, 'odor': 2.0, 'said': 1.0, 'loosen': 1.0, 'when': 1.0, 'seal': 1.0, 'have': 1.0, 'he': 1.0, 'far': 1.0, 'free': 1.0, 'get': 1.0, 'months': 1.0, 'posted': 1.0, 'another': 2.0, 'marks': 1.0, 'issue': 1.0, 'an': 1.0, 've': 1.0, 'thing': 1.0, 'little': 1.0, 'were': 1.0, 'ones': 1.0, 'mentioned': 1.0, 'friends': 1.0, 'whiff': 1.0, 'opening': 1.0, 'found': 1.0, 'this': 4.0, 'hover': 1.0, 'has': 1.0, 'solution': 1.0, 'from': 2.0, 'as': 3.0, 'diaper': 4.0, 'bags': 1.0, 'anyone': 1.0, 'and': 5.0, 'heard': 1.0, 'not': 3.0, 'away': 1.0, 'now': 2.0, 'owned': 1.0, 'there': 1.0, 'only': 1.0, 'stopped': 1.0, 'month': 1.0, 'stink': 3.0, 'would': 1.0, 'boy': 1.0, 'd': 1.0, 'of': 4.0, 'the': 10.0, 'sceptical': 1.0, 't': 1.0, 'a': 6.0, 'will': 3.0, 'could': 1.0, 's': 1.0, 'reviewer': 2.0, 'inhale': 1.0, 'didn': 1.0, 'outside': 1.0, 'take': 1.0, 'never': 1.0, 'knew': 1.0, 'it': 7.0, 'stubborn': 1.0, 'to': 4.0, 'pail': 1.0, 'happily': 1.0, 'out': 2.0, 'nothing': 2.0, 'purchased': 2.0, 'had': 4.0, 'was': 2.0, 'kept': 1.0, 'wanted': 1.0, 'well': 2.0, 'i': 11.0, 'genie': 2.0, 'offer': 1.0, 'champ': 1.0, 'change': 1.0, 'less': 1.0, 'just': 2.0, 'affected': 1.0, 'am': 1.0, 'skid': 2.0, 'you': 6.0, '11': 2.0, 'bother': 1.0, 'right': 2.0, 'hold': 1.0, 'garbage': 1.0, 'bag': 1.0, 'looking': 2.0, 'no': 1.0, 'catch': 1.0, 'refills': 1.0, 'use': 1.0, 'thrilled': 1.0, 'that': 5.0, 'breast': 1.0, 'poo': 1.0, 'plus': 1.0, 'your': 2.0, 'does': 1.0, 'kitchen': 1.0, 'convenient': 1.0, 'with': 2.0, 'but': 3.0, 'open': 1.0, 'work': 2.0, 'swore': 1.0, 'deeply': 1.0, 'so': 4.0, 'can': 1.0, 'big': 1.0, 'everyone': 1.0, 'costly': 1.0, 'question': 1.0, 'is': 1.0, 'did': 3.0, 'keep': 1.0, 'definite': 1.0, 'regular': 1.0, 'who': 4.0, 'me': 1.0, 'my': 3.0, 'jealous': 1.0, 'baby': 2.0, 'room': 1.0, 'before': 1.0, 'glad': 1.0, 'formula': 1.0, 'son': 1.0, 'born': 1.0, 'went': 1.0, 'old': 1.0, 'works': 3.0, 'fed': 1.0, 'solids': 1.0, 'answer': 1.0, 'yes': 1.0, 'if': 1.0, 'above': 1.0}
Word element => {'would': 1.0, 'wasn': 1.0, 'tell': 1.0, 'smell': 1.0, 'bag': 1.0, 'when': 1.0, 'so': 2.0, 'inside': 1.0, 'placed': 1.0, 'also': 1.0, '4': 1.0, 'days': 1.0, '3': 1.0, 'every': 1.0, 'use': 1.0, 'easy': 1.0, 'no': 1.0, 'everyone': 1.0, 'to': 4.0, 'and': 3.0, 'need': 1.0, 'a': 2.0, 'refills': 1.0, 'definately': 1.0, 'bags': 1.0, 'ever': 1.0, 'stick': 1.0, 'best': 1.0, 'changed': 1.0, 'is': 2.0, 'it': 1.0, 'only': 1.0, 'this': 2.0, 'bad': 1.0, 'thing': 1.0, 'have': 1.0, 'expensive': 1.0, 'buy': 2.0, 'cheap': 1.0, 'i': 4.0, 'product': 1.0, 'bought': 2.0, 'up': 1.0, 'trash': 1.0, 't': 1.0, 'the': 3.0, 'replace': 1.0}
Word element => {'hope': 1.0, 'make': 1.0, 'slower': 1.0, 'little': 1.0, 'handle': 1.0, 'appreciate': 1.0, 'like': 1.0, 'smelling': 1.0, 'keeps': 1.0, 'effortless': 1.0, 'live': 1.0, 'scented': 1.0, 'button': 1.0, 'push': 2.0, 'you': 11.0, 'night': 1.0, 'had': 2.0, 'anyways': 1.0, 'off': 1.0, 'central': 1.0, 'easy': 2.0, 'perfectly': 1.0, 'there': 1.0, 'use': 5.0, 'shoppers': 1.0, 'bags': 2.0, 'bend': 1.0, 'the': 26.0, 'they': 1.0, 'refill': 1.0, 'narrower': 1.0, 'on': 1.0, 'decisions': 1.0, 'with': 3.0, 'effectively': 1.0, 'it': 17.0, 'effective': 1.0, 'change': 4.0, 'takes': 1.0, 'diaper': 7.0, 'up': 1.0, 'work': 1.0, 'over': 2.0, 'money': 1.0, 'thunk': 1.0, 'guesses': 1.0, 'foot': 1.0, 'tried': 4.0, 'just': 1.0, 'and': 12.0, 'well': 1.0, 'disposing': 1.0, 'difference': 1.0, 'helps': 1.0, 'lid': 1.0, 'room': 2.0, 'my': 1.0, 'nose': 1.0, 'then': 1.0, 'only': 1.0, 'dispose': 1.0, 'brand': 2.0, 'critical': 1.0, 'baby': 1.0, 'champ': 2.0, 'changings': 1.0, 'researches': 1.0, 'around': 1.0, 'your': 2.0, 'where': 1.0, 'love': 1.0, 'dirty': 1.0, 'bottom': 1.0, 'purchase': 2.0, 'for': 1.0, 'product': 2.0, 'this': 4.0, 'zero': 1.0, 'grocery': 1.0, 'one': 3.0, 'those': 1.0, '27': 1.0, 'satisfied': 1.0, 'flip': 2.0, 'really': 2.0, 'i': 16.0, 'pastic': 1.0, 'completely': 1.0, 'at': 1.0, 'look': 1.0, 'no': 1.0, 'from': 2.0, 'who': 1.0, 'everything': 1.0, 'small': 1.0, 'fun': 1.0, 't': 6.0, 'cost': 1.0, 'along': 1.0, 'about': 2.0, 'pail': 6.0, 'to': 11.0, 'high': 1.0, 'bought': 2.0, 'against': 1.0, 'open': 1.0, 'another': 1.0, 'spend': 2.0, 'incredibly': 1.0, 'hold': 1.0, 'store': 1.0, 'was': 3.0, 'but': 6.0, 'diapers': 3.0, 'first': 1.0, 'of': 7.0, 'even': 1.0, 'other': 1.0, 'our': 1.0, 'kind': 2.0, 'time': 3.0, 'new': 1.0, 'so': 5.0, 'is': 9.0, 'can': 1.0, 'upstairs': 1.0, 'perfect': 1.0, 'bedroom': 1.0, 'through': 1.0, 'into': 1.0, 'humid': 1.0, 'am': 1.0, 'hot': 1.0, 'found': 1.0, 'have': 6.0, 'frustrating': 1.0, 'air': 1.0, 'sensitive': 1.0, 'considerate': 1.0, 'smell': 2.0, 'containment': 1.0, 'important': 1.0, 'design': 2.0, 'if': 2.0, 'don': 4.0, 'super': 2.0, 'still': 1.0, 'every': 1.0, 'should': 1.0, 'regularly': 1.0, 'come': 1.0, 'empty': 2.0, 'works': 1.0, 'days': 1.0, 'makes': 4.0, 'nice': 1.0, 'turned': 1.0, 'down': 2.0, 'by': 1.0, 'its': 1.0, 'during': 2.0, 'out': 1.0, 'not': 1.0, 'different': 1.0, 'that': 3.0, 'few': 1.0, 'times': 1.0, 'fall': 1.0, 'taller': 1.0, 'means': 1.0, 'floor': 1.0, 'much': 1.0, 'space': 1.0, 'holds': 1.0, 'quite': 1.0, '2': 1.0, 'thing': 2.0, 'also': 1.0, 'which': 1.0, 'when': 4.0, 'day': 2.0, 'as': 1.0, 'less': 1.0, 'whole': 2.0, 'detail': 1.0, 'while': 1.0, 'a': 15.0, 'bag': 3.0, 'ones': 1.0, 'all': 1.0, '20': 1.0, 'way': 1.0, '3': 1.0, 'weight': 1.0, 'centered': 1.0, 'in': 1.0, 's': 2.0, 'doesn': 2.0, 'kept': 1.0, 'second': 2.0, 'falling': 1.0, 'would': 1.0, 'mention': 1.0, 'noise': 2.0, 'mind': 1.0, 'actually': 1.0}
Word element => {'without': 1.0, 'do': 1.0, 'time': 1.0, 'know': 2.0, 'because': 1.0, 'that': 1.0, 'expect': 1.0, 'you': 1.0, 'would': 2.0, 'else': 1.0, 'but': 1.0, 'full': 1.0, 'notice': 1.0, 'thing': 2.0, 'bag': 2.0, 'any': 1.0, 'don': 2.0, 'top': 2.0, 'like': 1.0, 'jam': 1.0, 'this': 2.0, 'it': 1.0, 'while': 1.0, 'then': 1.0, 'use': 1.0, 'i': 6.0, 'what': 2.0, 'does': 1.0, 'when': 1.0, 'love': 1.0, 'shut': 1.0, 'smell': 1.0, 'simple': 2.0, 'change': 1.0, 'is': 2.0, 'its': 1.0, 'to': 3.0, 'clean': 1.0, 't': 2.0, 'the': 3.0}
Word element => {'then': 1.0, 'out': 1.0, 'air': 1.0, 'with': 1.0, 'it': 3.0, 'let': 1.0, 'still': 1.0, 'cleaned': 1.0, 'hall': 1.0, 'down': 1.0, 'is': 2.0, 'smell': 1.0, 'time': 1.0, 'my': 1.0, 'smells': 1.0, 'linger': 1.0, 'in': 1.0, 'the': 7.0, 'diaper': 2.0, 'to': 1.0, 'had': 1.0, 'for': 1.0, 'room': 3.0, 'son': 1.0, 'sudden': 1.0, 's': 1.0, 'over': 1.0, 'starting': 1.0, 'months': 1.0, 'night': 1.0, 'i': 2.0, 'and': 3.0, 'like': 1.0, 'have': 1.0, 'all': 2.0, 'champ': 2.0, 'diapers': 1.0, 'up': 1.0, 'lysol': 1.0, '6': 1.0, 'of': 1.0, 'a': 1.0, 'stinking': 1.0, 'sprayed': 1.0, 'dirty': 1.0}
Word element => {'room': 1.0, 'daughter': 1.0, 'new': 1.0, 'rid': 1.0, 'odorless': 1.0, 'hope': 1.0, 'now': 1.0, 'son': 2.0, 'moved': 1.0, 'and': 3.0, 'has': 1.0, 'it': 2.0, 'have': 2.0, 'four': 1.0, 'born': 1.0, 'into': 1.0, 'been': 2.0, 'close': 1.0, 'very': 1.0, 'little': 1.0, 'got': 1.0, 'didn': 1.0, 'convenient': 1.0, 'champ': 3.0, 'using': 1.0, 'for': 2.0, 'use': 2.0, 'learned': 1.0, 'easy': 1.0, 'was': 1.0, 'store': 1.0, 'nearly': 1.0, 'different': 1.0, 'd': 1.0, 'years': 1.0, 'of': 1.0, 'reasonably': 1.0, 'one': 3.0, 'bought': 2.0, 'to': 3.0, 'as': 2.0, 'our': 1.0, 'were': 1.0, 'when': 2.0, 'his': 1.0, 'sister': 1.0, 'because': 1.0, 'the': 4.0, 's': 1.0, 'we': 5.0, 'a': 3.0, 'could': 1.0, 't': 1.0, 'in': 1.0, 'my': 2.0, 'toilet': 1.0}
Word element => {'in': 1.0, 'especially': 1.0, 'easy': 1.0, 'investment': 1.0, 'worth': 1.0, 'definitely': 1.0, 'bin': 1.0, 'walking': 1.0, 'smelly': 1.0, 'bring': 1.0, 'way': 1.0, 'my': 1.0, 'trash': 1.0, 'of': 3.0, 'and': 2.0, 'about': 1.0, 'to': 5.0, 'very': 1.0, 'outside': 1.0, 'decided': 1.0, 'bad': 1.0, 'use': 1.0, 'instead': 1.0, 'stories': 1.0, 'heard': 1.0, 'night': 1.0, 'genie': 1.0, 'i': 1.0, 'recommendation': 1.0, 'for': 1.0, 'diaper': 1.0, 'the': 7.0, 'are': 1.0, 'we': 3.0, 'go': 2.0, 'middle': 1.0, 'a': 1.0, 'on': 1.0, 'diapers': 1.0, 'champ': 2.0, 'boy': 1.0, 'glad': 1.0, 'listened': 1.0, 'them': 1.0, 'out': 1.0}
Word element => {'until': 1.0, 'just': 1.0, 'deal': 1.0, 'but': 1.0, 'the': 2.0, 'when': 1.0, 'and': 1.0, 'any': 1.0, 'to': 1.0, 'product': 1.0, 'big': 1.0, 'kind': 1.0, 'easy': 1.0, 'use': 2.0, 'so': 1.0, 'bag': 3.0, 'change': 1.0, 'course': 1.0, 'is': 4.0, 'love': 1.0, 'this': 1.0, 'it': 3.0, 'can': 1.0, 'tie': 1.0, 'i': 2.0, 'are': 1.0, 'no': 2.0, 'up': 1.0, 'there': 2.0, 'of': 2.0, 'you': 2.0, 'kitchen': 1.0, 'refills': 1.0, 'a': 1.0, 'smell': 1.0}
Word element => {'down': 1.0, 'also': 1.0, 'need': 1.0, 'but': 1.0, 'stink': 1.0, 'being': 1.0, 'biodegrade': 1.0, 'through': 1.0, 'locked': 1.0, 'go': 1.0, 'needs': 1.0, 'cloth': 1.0, 'away': 1.0, 'before': 1.0, 'toilet': 1.0, 'from': 1.0, 'parents': 2.0, 'for': 2.0, 'supposed': 1.0, 'taking': 1.0, 'lot': 1.0, 'one': 1.0, 'try': 1.0, 'half': 1.0, 'should': 1.0, 'lid': 1.0, 'more': 1.0, 'nifty': 1.0, 'plastic': 2.0, 'essentially': 1.0, 'worth': 1.0, 'don': 2.0, 'anything': 1.0, 'nasty': 1.0, 'worry': 1.0, 'cost': 1.0, 't': 4.0, 'didn': 1.0, 'least': 1.0, 'everything': 1.0, 'into': 3.0, 'getting': 2.0, 'started': 1.0, 'though': 1.0, 'know': 2.0, 'store': 1.0, 'sure': 1.0, 'those': 2.0, 'dirty': 3.0, 'we': 1.0, 'take': 1.0, 'reviews': 1.0, 'cut': 1.0, 'aren': 1.0, 'they': 1.0, 'help': 1.0, 'convenience': 1.0, 'smell': 2.0, 'said': 1.0, 'not': 5.0, 'cents': 1.0, 'will': 2.0, 'often': 1.0, 'totally': 1.0, 'them': 2.0, 'next': 1.0, 'that': 4.0, 'product': 4.0, 'system': 1.0, 'actually': 1.0, 'reading': 1.0, 'some': 1.0, 'yard': 1.0, 'time': 1.0, 'can': 1.0, 'so': 1.0, 'her': 2.0, 'pail': 1.0, 'to': 13.0, 'i': 9.0, 'nice': 1.0, 'two': 1.0, 'sewage': 1.0, 'about': 4.0, 'no': 2.0, 'want': 1.0, 'frequently': 1.0, 'realize': 1.0, 'on': 3.0, 'and': 4.0, 'gate': 1.0, 'thing': 1.0, '2': 1.0, 'bags': 1.0, 'diaper': 7.0, 'last': 1.0, 'am': 2.0, 'you': 7.0, 'adjoining': 1.0, 'after': 1.0, 'safety': 1.0, 'potty': 1.0, 'champ': 1.0, 'emptying': 1.0, 'our': 1.0, 'disappointed': 1.0, 'avoid': 1.0, 'daughter': 2.0, 'train': 1.0, 'starting': 1.0, 'it': 9.0, 'mixed': 1.0, 'my': 5.0, 'this': 9.0, 'll': 1.0, '30': 2.0, 'of': 8.0, 'the': 15.0, 'doing': 3.0, 'sale': 1.0, 'have': 2.0, 'think': 1.0, 'sell': 1.0, 'is': 8.0, 'at': 2.0, 'underground': 1.0, 'since': 2.0, 'wanted': 1.0, 'start': 2.0, 'garbage': 3.0, 'your': 1.0, 'keeps': 1.0, 'probably': 2.0, 'give': 1.0, 'there': 1.0, 'put': 1.0, 'do': 3.0, 'get': 2.0, 'odor': 1.0, 'something': 2.0, 'add': 1.0, 'toddlers': 1.0, 'buy': 1.0, 'forever': 1.0, 'using': 1.0, 'looking': 1.0, 'course': 1.0, 'turn': 1.0, 'if': 2.0, 'poo': 1.0, 'lock': 1.0, 'diapers': 6.0, 'are': 2.0, 'reviewers': 1.0, 'disposable': 2.0, 'be': 3.0, 'pile': 1.0, 'especially': 1.0, 'grocery': 1.0, 'costs': 1.0, 'room': 1.0, 'when': 1.0, 'what': 4.0, 'in': 6.0, 'm': 2.0, 'currently': 1.0, 'all': 1.0, 'an': 1.0, 'other': 2.0, 'does': 2.0, 'kitchen': 3.0, 'stuff': 1.0, 'just': 2.0, 'with': 4.0, 'gets': 1.0, 'kid': 1.0, 'taken': 1.0, 'throwing': 1.0, 'understand': 1.0, 'out': 4.0, 's': 2.0, 'a': 6.0, 'side': 1.0, 'takes': 1.0, 'up': 2.0, 'laundry': 1.0}
Word element => {'too': 1.0, 'cheaper': 1.0, 'and': 1.0, 'bag': 1.0, 'them': 1.0, 'throw': 1.0, 'is': 1.0, 'around': 1.0, 'up': 2.0, 'outside': 1.0, 'very': 1.0, 'smells': 1.0, 'a': 1.0, 'well': 1.0, 'grocery': 1.0, 'in': 1.0, 've': 1.0, 'not': 1.0, 'the': 2.0, 't': 1.0, 'thing': 1.0, 'have': 1.0, 'only': 1.0, 'this': 1.0, 'it': 4.0, 's': 1.0, 'way': 1.0, 'to': 2.0, 'room': 1.0, 'tie': 1.0, 'i': 1.0, 'still': 1.0, 'found': 1.0, 'smelly': 1.0, 'put': 1.0, 'work': 1.0, 'doesn': 1.0, 'diapers': 1.0}
Word element => {'garbage': 1.0, 'genie': 1.0, 'tried': 1.0, 'i': 2.0, 'like': 1.0, 'any': 1.0, 'use': 2.0, 'for': 1.0, 'can': 1.0, '7': 1.0, 'our': 2.0, 'used': 1.0, 'months': 1.0, 'have': 2.0, 'standard': 1.0, 'we': 1.0, 'and': 3.0, 'bags': 3.0, 'diaper': 2.0, 'the': 2.0, 't': 1.0, 'great': 1.0, 'change': 1.0, 'is': 2.0, 'champ': 1.0, 'doesn': 1.0, 'it': 4.0, 'stink': 1.0, 'last': 1.0, 'easy': 1.0, 'to': 1.0, 'hated': 1.0, 'kitchen': 1.0, 'you': 2.0}
Word element => {'a': 1.0, 'else': 1.0, 'buy': 1.0, 'save': 1.0, 'flow': 1.0, 'odors': 1.0, 'bag': 1.0, 'diaper': 1.0, 'months': 1.0, 'out': 1.0, 'several': 1.0, 'something': 1.0, 'lining': 1.0, 'people': 1.0, 'foam': 1.0, 'nothing': 1.0, 'the': 3.0, 'its': 1.0, 'odor': 1.0, 'chump': 1.0, 'up': 1.0, 'of': 1.0, 'there': 1.0, 'it': 1.0, 'be': 1.0, 'where': 1.0, 'product': 1.0, 'not': 1.0, 'know': 1.0, 'into': 1.0, 'that': 2.0, 'cracked': 1.0, 'nice': 1.0, 'in': 1.0, 'champs': 1.0, 'freely': 1.0, 'circulation': 1.0, 'this': 3.0, 'theory': 1.0, 'other': 1.0, 'after': 1.0, 'stop': 1.0, 'to': 3.0, 'all': 1.0, 'use': 1.0, 'your': 1.0, '3': 1.0, 'i': 1.0, 'too': 1.0, 'and': 2.0, 'does': 1.0, 'if': 1.0, 'happened': 1.0, 'you': 2.0, 'is': 2.0, 'comes': 1.0, 'around': 1.0, 'latch': 1.0, 'money': 1.0, 'but': 1.0, 'peek': 1.0, 'can': 1.0, 'see': 1.0, 'open': 1.0}
Word element => {'is': 1.0, 'product': 1.0, 'diapers': 1.0, 'dirty': 1.0, 'smell': 1.0, 'you': 1.0, 'and': 1.0, 'bags': 1.0, 'great': 1.0, 'the': 1.0, 'my': 1.0, 'any': 1.0, 'baby': 1.0, 'reading': 1.0, 'never': 2.0, 'all': 1.0, 'have': 1.0, 'reviews': 1.0, 'garbage': 1.0, 'after': 1.0, 'got': 1.0, 'problem': 1.0, 'i': 2.0, 'for': 1.0, 'mine': 1.0, 'uses': 1.0, 'a': 1.0, 'shower': 1.0, 'this': 2.0, 'with': 1.0, 'controlling': 1.0, 'had': 1.0, 'odor': 1.0}
Word element => {'that': 1.0, 'on': 1.0, 'money': 1.0, 'save': 1.0, 'manicures': 1.0, 'all': 1.0, 'will': 1.0, 'but': 1.0, 'plus': 1.0, 'of': 1.0, 'value': 1.0, 'most': 1.0, 'is': 1.0, 'the': 1.0, 'does': 1.0, 'your': 1.0, 'it': 3.0, 's': 1.0, 'you': 2.0, 'refills': 1.0, 'a': 2.0, 'odors': 1.0, 'not': 1.0, 'huge': 1.0, 'contain': 1.0, 'beware': 1.0, 'hassle': 1.0, 'to': 1.0, 'open': 1.0, 'if': 1.0, 'however': 1.0, 'so': 2.0}
Word element => {'satisfied': 1.0, 'extremely': 1.0, 'm': 1.0, 'system': 1.0, 'any': 1.0, 'when': 1.0, 'it': 6.0, 'crawling': 1.0, 'easily': 2.0, 'that': 2.0, 'been': 2.0, 'into': 2.0, 'bag': 1.0, 'than': 1.0, 'trash': 3.0, 'is': 4.0, 'more': 1.0, 'claimed': 1.0, 'holds': 1.0, 'also': 1.0, 'will': 1.0, 'outside': 1.0, 'dump': 1.0, 'run': 1.0, 'if': 1.0, 'don': 1.0, 'over': 1.0, 'she': 4.0, 'baby': 2.0, 's': 2.0, 'a': 1.0, 'but': 3.0, 'recommend': 1.0, 'dirty': 1.0, 'they': 2.0, 'sure': 1.0, 'months': 1.0, 'get': 2.0, 'are': 2.0, 'bad': 1.0, '8': 1.0, 'especially': 1.0, 'doubt': 1.0, 'has': 1.0, 'really': 2.0, 'my': 4.0, 'make': 1.0, 'think': 1.0, 'toxic': 1.0, 'do': 2.0, 'much': 1.0, 'empty': 1.0, 'recommended': 1.0, 'and': 5.0, 'soon': 1.0, 'other': 2.0, 'can': 5.0, 'so': 1.0, 'friends': 2.0, 'smelly': 1.0, 'entry': 1.0, 'i': 7.0, 'knock': 1.0, 'now': 2.0, 'older': 1.0, 'great': 2.0, 'the': 11.0, 'helpful': 1.0, 'heavier': 1.0, 'ones': 2.0, 'liked': 1.0, 'champ': 2.0, 'usually': 1.0, 'options': 2.0, 'hasn': 1.0, 'you': 1.0, 'choice': 1.0, 'able': 2.0, 'be': 1.0, 'even': 1.0, 'diaper': 2.0, 'bags': 1.0, 'disposal': 1.0, 'sealed': 1.0, 'replaceable': 1.0, 'affordable': 1.0, 'far': 1.0, 'which': 1.0, 'worked': 1.0, 'for': 1.0, 'awhile': 1.0, 't': 3.0, 'cost': 1.0, 'would': 1.0, 'with': 1.0, 'ineffective': 1.0, 'smelled': 1.0, 'have': 1.0, 'clean': 1.0, 'since': 1.0, 'some': 1.0, 'to': 5.0, 'against': 1.0, 'became': 1.0, 'pretty': 1.0}
Word element => {'too': 1.0, 'good': 1.0, 'much': 1.0, 'considerably': 1.0, 'one': 1.0, 'price': 1.0, 'baby': 1.0, 'genie': 1.0, 'used': 1.0, 'help': 1.0, 'may': 1.0, 'so': 1.0, 'and': 1.0, 'diaper': 1.0, 'the': 2.0, 'bathroom': 1.0, 'trash': 2.0, 'problems': 1.0, 'had': 1.0, 'in': 1.0, 'is': 1.0, 'regular': 1.0, 'use': 2.0, 'week': 1.0, 'but': 1.0, 'have': 1.0, 'no': 2.0, 'better': 1.0, 'keep': 1.0, 'we': 3.0, 'twice': 1.0, 'scented': 2.0, 'bags': 2.0, 'our': 1.0, 'that': 1.0, 'empty': 1.0, 'out': 1.0, 'a': 1.0, 'issues': 1.0, 'smells': 1.0, 'first': 1.0, 'this': 2.0, 'with': 3.0, 'it': 1.0}
Word element => {'me': 1.0, 'bags': 1.0, 'special': 1.0, 'of': 1.0, 'able': 1.0, 'great': 1.0, 'nice': 1.0, 'also': 1.0, 'days': 1.0, 'few': 1.0, 'garbage': 1.0, 'replaced': 1.0, 'is': 2.0, 'bag': 2.0, 'being': 1.0, 'if': 1.0, 'issue': 1.0, 'an': 1.0, 'be': 1.0, 'this': 2.0, 'think': 1.0, 'odors': 1.0, 'i': 9.0, 'complaints': 1.0, 'diapers': 1.0, 't': 1.0, 'a': 2.0, 'was': 2.0, 'had': 2.0, 'any': 1.0, 'to': 4.0, 'past': 1.0, 'genie': 2.0, 'champ': 1.0, 'home': 1.0, 'every': 2.0, 'use': 2.0, 'works': 1.0, 'try': 1.0, 'much': 1.0, 'don': 1.0, 'child': 2.0, 'over': 1.0, 'the': 4.0, 'different': 1.0, 'have': 3.0, 'babysat': 1.0, 'diaper': 2.0, 'glad': 1.0, 'families': 1.0, 'in': 2.0, 'years': 1.0, 'product': 1.0, 'where': 1.0, 'for': 2.0, 'instead': 2.0, 'there': 2.0, 'many': 1.0, 'should': 1.0, 'recently': 1.0, 'purchase': 1.0, 'my': 1.0, 'first': 1.0, 'it': 3.0, 'with': 1.0, 'and': 2.0, 'decided': 1.0, 'problems': 1.0, 'simpler': 1.0, 'am': 1.0, 'so': 1.0, 'that': 1.0, 'did': 1.0, 'having': 1.0, 'than': 1.0, 'find': 1.0, 'about': 1.0, 'several': 1.0, 'no': 2.0}
Word element => {'messy': 1.0, 'away': 1.0, 'throw': 1.0, 'hand': 1.0, 'speaking': 1.0, 'inside': 1.0, 'hands': 2.0, 'his': 1.0, 'need': 1.0, 'or': 1.0, 'not': 1.0, 'toddler': 1.0, 'prop': 1.0, 'doesn': 1.0, 'warnings': 1.0, 'did': 1.0, 'first': 1.0, 'stars': 1.0, 'five': 1.0, 'instead': 1.0, 'lid': 1.0, 'four': 1.0, 'highly': 1.0, 'few': 1.0, 'this': 2.0, 'gave': 1.0, 'be': 1.0, 'ugh': 1.0, 'babysitting': 1.0, 'recommend': 1.0, 'full': 1.0, 'was': 3.0, 'they': 1.0, 'watch': 1.0, 'never': 2.0, 'could': 1.0, 'had': 1.0, 'who': 2.0, 'easy': 1.0, 'bit': 1.0, 'don': 1.0, 'today': 1.0, 'refills': 1.0, 'buying': 2.0, 'but': 1.0, 'knots': 1.0, 'tying': 1.0, 'genie': 4.0, 'despite': 1.0, 'twisting': 1.0, 'suggested': 1.0, 'open': 4.0, 'special': 2.0, 'odors': 1.0, 'stay': 1.0, 'every': 2.0, 'really': 1.0, 'make': 1.0, 'keeps': 1.0, 'feel': 1.0, 'your': 3.0, 'like': 6.0, 'to': 10.0, 'babysitter': 1.0, 'our': 1.0, 'other': 1.0, 'and': 6.0, 'it': 8.0, 'a': 8.0, 's': 2.0, 'since': 1.0, 'plan': 1.0, 'mintues': 1.0, 'is': 2.0, 'trash': 1.0, 'champ': 4.0, 'on': 1.0, 'long': 1.0, 'changing': 1.0, 'do': 2.0, 'think': 1.0, 'pack': 1.0, 'only': 4.0, 'empty': 1.0, 'get': 2.0, 'sure': 1.0, 'm': 1.0, 'in': 5.0, 'someone': 2.0, 'n': 1.0, 'd': 1.0, 'when': 1.0, 'what': 2.0, 'roll': 1.0, 'replace': 2.0, 'too': 1.0, 'one': 6.0, 'reason': 1.0, 'bag': 4.0, 'such': 1.0, 'for': 6.0, 'love': 1.0, 'have': 3.0, 'baby': 3.0, 'able': 1.0, 'you': 9.0, 'comes': 1.0, 'room': 1.0, 'before': 1.0, 'people': 1.0, 'half': 1.0, 'out': 4.0, 'anyways': 1.0, 'couple': 1.0, 'break': 1.0, '11': 1.0, 'spray': 1.0, 'll': 1.0, 'table': 1.0, 'right': 1.0, 'trying': 1.0, 'another': 3.0, 'minutes': 1.0, 'take': 1.0, 'we': 1.0, 'then': 1.0, 'downstairs': 2.0, 'with': 1.0, 'time': 3.0, 'new': 1.0, 'each': 1.0, 't': 2.0, 'cost': 1.0, 'also': 1.0, 'next': 1.0, 'has': 1.0, 'always': 2.0, 'unless': 1.0, 'securely': 1.0, 'i': 17.0, 'putting': 1.0, 'darn': 1.0, 'play': 1.0, 'about': 1.0, 'ours': 1.0, 'no': 4.0, 'thing': 1.0, '2': 1.0, 'up': 3.0, 'change': 2.0, 'so': 1.0, 'can': 3.0, 'would': 1.0, 'weeks': 2.0, 'almost': 1.0, 'figure': 1.0, 'air': 2.0, 'now': 1.0, 'fact': 2.0, 'old': 1.0, 'easily': 1.0, 'that': 6.0, 'because': 2.0, 'the': 18.0, 'of': 5.0, 'her': 3.0, 'use': 1.0, 'see': 1.0, 'own': 1.0, 'as': 5.0, 'diaper': 8.0, 'bags': 3.0, 'nails': 1.0, 'saver': 1.0}
Word element => {'never': 1.0, 'house': 1.0, 'now': 1.0, 'garbage': 1.0, 'kitchen': 1.0, 'and': 1.0, 'stinks': 1.0, 'sack': 1.0, 'own': 1.0, 'its': 1.0, 'in': 2.0, 'still': 1.0, 'they': 1.0, 'dirty': 3.0, 'liked': 1.0, 'every': 1.0, 'really': 1.0, 'this': 2.0, 'however': 1.0, 'so': 3.0, 'that': 3.0, 'each': 1.0, 'something': 1.0, 'throw': 1.0, 'high': 1.0, 'were': 1.0, 'when': 1.0, 'daughter': 1.0, 'yanked': 1.0, 'i': 6.0, 'a': 1.0, 'go': 1.0, 's': 2.0, 'about': 1.0, 'love': 1.0, 'like': 1.0, 'using': 1.0, 'night': 1.0, 'them': 1.0, 'rated': 1.0, 'started': 1.0, 'the': 9.0, 'diaper': 4.0, 'why': 1.0, 'bags': 1.0, 'from': 1.0, 'having': 1.0, 'first': 1.0, 'stuck': 2.0, 'special': 1.0, 'to': 2.0, 'was': 2.0, 'worry': 1.0, 'velcro': 1.0, 'pail': 2.0, 'diapers': 4.0, 'inside': 1.0, 'getting': 3.0, 'put': 1.0, 'on': 2.0, 'my': 2.0, 'lid': 1.0, 'needless': 1.0, 'say': 1.0, 'unstuck': 1.0, 'not': 1.0, 'disgusting': 1.0, 'stink': 1.0, 'of': 1.0, 'once': 1.0, 'convenience': 1.0, 'out': 3.0, 'fabric': 1.0}
Word element => {'babies': 1.0, 'friends': 1.0, 'our': 1.0, 'buy': 1.0, 'would': 1.0, 'operate': 1.0, 'takes': 1.0, 'inferior': 1.0, 'contain': 1.0, 'contains': 1.0, 'much': 1.0, 'over': 1.0, 'don': 2.0, 'have': 1.0, 'manually': 1.0, 'enough': 1.0, 'tall': 1.0, 'and': 4.0, 'any': 2.0, 'single': 1.0, 'champ': 2.0, 'disposable': 1.0, 'use': 3.0, 'purchased': 1.0, 'want': 1.0, 'for': 3.0, 'stinkiest': 1.0, 'love': 1.0, 'found': 1.0, 'easy': 1.0, 'fisher': 1.0, 'pails': 1.0, 'to': 8.0, 'pail': 3.0, 'quite': 1.0, 'it': 5.0, 'different': 1.0, 'other': 3.0, 'fit': 1.0, 't': 4.0, 'a': 3.0, 'of': 1.0, 'the': 14.0, '2': 2.0, 'so': 2.0, 'can': 2.0, 'sitting': 1.0, 'but': 1.0, 'one': 2.0, 'lousy': 1.0, 'from': 1.0, 'product': 1.0, 'price': 1.0, 'leave': 1.0, 'diaper': 4.0, 'bend': 1.0, 'even': 1.0, 'cloth': 1.0, 'i': 3.0, 'well': 2.0, 'this': 1.0, 'few': 1.0, 'by': 2.0, 'just': 1.0, 'in': 1.0, 'if': 1.0, 'turn': 2.0, 'there': 1.0, 'short': 1.0, 'day': 1.0, 'close': 1.0, 'very': 2.0, 'being': 1.0, 'indicated': 1.0, 'having': 2.0, 'easily': 1.0, 'because': 1.0, 'diapers': 3.0, 'are': 1.0, 'down': 1.0, 'full': 1.0, 'dirty': 1.0, 'top': 2.0, 'is': 6.0, 'at': 1.0, 'handle': 1.0, 'trash': 1.0, 'bother': 1.0, 'smell': 1.0, 'make': 1.0, 'plunger': 2.0, 'on': 1.0, 'thud': 1.0, 'we': 4.0, 'take': 1.0, 'slowly': 1.0, 'quickly': 1.0, 'you': 2.0, 'push': 1.0, 'loud': 1.0, 'night': 1.0, 'baby': 2.0, 'until': 1.0, 'awake': 1.0, 'or': 1.0, 'really': 1.0, 'doesn': 2.0, 'hands': 1.0, 'handed': 1.0, 'seem': 1.0, 'chances': 1.0}
Word element => {'then': 1.0, 'gifts': 1.0, 'work': 1.0, 'the': 2.0, 'these': 1.0, 'diaper': 2.0, 'see': 1.0, 'a': 1.0, 'out': 1.0, 'them': 1.0, 'clean': 1.0, 'both': 1.0, 'try': 1.0, 'got': 1.0, 'refills': 1.0, 'use': 1.0, 'liked': 1.0, 'for': 1.0, 'love': 1.0, 'to': 3.0, 'completly': 1.0, 'champ': 1.0, 'genie': 2.0, 'i': 4.0, 'hides': 1.0, 'buy': 1.0, 'one': 1.0, 'decided': 1.0, 'very': 1.0, 'of': 1.0, 'better': 1.0, 'and': 4.0, 'which': 1.0, 'defintly': 1.0, 'won': 1.0, 'not': 1.0, 'just': 1.0, 'odors': 1.0, 'having': 1.0, 'also': 1.0, 'my': 1.0, 'regular': 1.0, 'fine': 1.0, 'more': 1.0, 'holds': 1.0, 'trash': 1.0, 'is': 1.0, 'bags': 1.0, 'it': 2.0, 'easy': 1.0}
Word element => {'yeah': 1.0, 'out': 1.0, 'empty': 1.0, 'just': 1.0, 'a': 1.0, 'holds': 1.0, 'and': 2.0, 'worth': 1.0, 'bags': 1.0, 'to': 3.0, 'goes': 1.0, 'we': 1.0, 'smell': 1.0, 'for': 1.0, 'one': 1.0, 'any': 1.0, 'pail': 1.0, 'champ': 1.0, 'week': 1.0, 'diapers': 2.0, 'easy': 1.0, 'use': 1.0, 'the': 2.0, 'great': 1.0, 'diaper': 2.0, 'cannot': 1.0, 'in': 2.0, 'of': 1.0, 'trash': 3.0, 'is': 1.0, 'day': 1.0, 'son': 1.0, 'room': 1.0, 'it': 3.0, 'this': 1.0, 'my': 1.0, 'i': 1.0, 'cheap': 1.0, 's': 3.0, 'keep': 1.0}
Word element => {'out': 1.0, 'empty': 1.0, 'to': 1.0, 'and': 1.0, 'smells': 1.0, 'problem': 1.0, 'with': 1.0, 'is': 2.0, 'a': 1.0, 'dirty': 1.0, 'love': 1.0, 'it': 2.0, 'great': 1.0, 'easy': 1.0, 'diapers': 1.0, 'for': 1.0, 'had': 1.0, 'i': 2.0, 'this': 1.0, 'have': 1.0, 'no': 1.0}
Word element => {'using': 1.0, 'than': 1.0, 'cheaper': 1.0, 'lot': 1.0, 'and': 1.0, 'smelling': 1.0, 'eucalyptus': 1.0, 'genie': 1.0, 'cheap': 1.0, 'keeps': 1.0, 'some': 1.0, 'tape': 1.0, 'up': 1.0, 'any': 1.0, 'bags': 3.0, 'with': 2.0, 'it': 2.0, 'can': 1.0, 'a': 1.0, 'wrap': 1.0, 'also': 1.0, 'diaper': 2.0, 'the': 5.0, 's': 1.0, 'you': 2.0, 'if': 1.0, 'champ': 1.0, 'out': 1.0, 'use': 1.0, 'fine': 1.0, 'just': 1.0, 'because': 1.0, 'smell': 1.0, 'we': 1.0, 'used': 1.0}
Word element => {'better': 1.0, 'way': 1.0, 'this': 1.0, 'clean': 1.0, 'breeze': 1.0, 'anything': 1.0, 'or': 1.0, 'buy': 1.0, 'off': 1.0, 'seal': 1.0, 'bag': 3.0, 'you': 2.0, 'when': 1.0, 'smells': 1.0, 'pail': 1.0, 'in': 1.0, 'odor': 1.0, 'with': 1.0, 'at': 2.0, 'have': 1.0, 'them': 1.0, 'sure': 1.0, 'easy': 1.0, 'tell': 1.0, 'smell': 1.0, 'friend': 1.0, 'that': 1.0, 'refills': 1.0, 'use': 1.0, 'carry': 1.0, 'user': 1.0, 'empty': 1.0, 'its': 2.0, 'try': 1.0, 'was': 4.0, 'thought': 1.0, 'had': 2.0, 'now': 1.0, 'problems': 1.0, 'old': 2.0, 'i': 2.0, 'hard': 1.0, 'it': 6.0, 'month': 1.0, 'years': 1.0, 'diaper': 5.0, 'job': 1.0, 'the': 11.0, 'but': 1.0, 'change': 1.0, '2': 1.0, 'and': 3.0, 'my': 1.0, 'great': 2.0, '1': 1.0, 'until': 1.0, 'almost': 1.0, 'son': 2.0, 'us': 2.0, 'genie': 2.0, 'champ': 3.0, 'gone': 1.0, 'no': 2.0, 'about': 3.0, 'told': 1.0, 'keeping': 1.0, 'out': 2.0, 'as': 1.0, 'our': 1.0, 'to': 6.0, 'all': 2.0, 'we': 3.0, 'a': 4.0, 'ago': 1.0, 's': 1.0, 'trash': 1.0, 'say': 1.0, 'is': 3.0, 'just': 4.0, 'than': 1.0, 'does': 1.0, 'because': 1.0, 'name': 1.0, 'quit': 1.0, 'using': 1.0, 'on': 1.0, '3': 1.0, 'months': 1.0}
Word element => {'recommend': 1.0, 'would': 1.0, 'with': 1.0, 'odors': 1.0, 'contained': 1.0, 'weather': 1.0, 'very': 2.0, 'hot': 1.0, 'has': 2.0, 'solids': 1.0, 'on': 1.0, 'he': 1.0, 'great': 2.0, 'such': 1.0, 'continue': 1.0, 'will': 1.0, 'champ': 1.0, 'breastfed': 1.0, 'still': 1.0, 'son': 1.0, 'out': 1.0, 'run': 1.0, 'thing': 1.0, 'am': 1.0, 'you': 4.0, 'bit': 1.0, 'so': 4.0, 'garbage': 1.0, 'it': 6.0, 'doing': 1.0, 'this': 1.0, 'than': 1.0, 'just': 2.0, 'tall': 1.0, 'and': 4.0, 'i': 4.0, 'exclusively': 1.0, 'my': 1.0, 'bend': 1.0, 'buy': 1.0, 'been': 2.0, 'gladly': 1.0, 'even': 1.0, 'didn': 1.0, 'one': 1.0, 'months': 1.0, 'kitchen': 1.0, 'other': 1.0, 'in': 1.0, 'regular': 1.0, 'if': 2.0, 'want': 1.0, 'now': 1.0, 'least': 1.0, 'all': 1.0, 'to': 4.0, 'diaper': 5.0, 'a': 1.0, 't': 3.0, 'job': 1.0, 'the': 4.0, 'is': 3.0, 'more': 2.0, 'taller': 1.0, 'happy': 1.0, 'pail': 1.0, 'pails': 1.0, '41': 1.0, 'don': 2.0, 'far': 2.0, 'especially': 1.0, 'down': 1.0, 'love': 1.0, 'for': 1.0, 'expensive': 1.0, 'have': 3.0, 'dispose': 1.0, 'use': 1.0, 'once': 1.0, 'of': 2.0, 'but': 1.0, '2': 1.0, 'can': 2.0, 'bags': 2.0, 'special': 1.0, 'know': 1.0, 'using': 1.0, 'which': 1.0, 'are': 2.0}
Word element => {'buy': 1.0, 'this': 1.0, 't': 1.0, 'don': 1.0, 'all': 1.0, 'one': 1.0, 'i': 1.0, 'smell': 1.0, 'star': 1.0, 'can': 1.0, 'say': 1.0, 'the': 1.0, '1': 1.0, 'is': 2.0, 'horrible': 1.0, 'please': 1.0}
Word element => {'a': 1.0, 'lot': 1.0, 'she': 1.0, 'room': 1.0, 'in': 1.0, 'to': 1.0, 'babies': 1.0, 'have': 2.0, 'special': 1.0, 'buy': 1.0, 'poops': 1.0, 't': 2.0, 'diaper': 1.0, 'our': 2.0, 'full': 1.0, 'champ': 1.0, 'like': 1.0, 'bags': 1.0, 'and': 2.0, 'because': 1.0, 'know': 1.0, 'don': 2.0, 'any': 1.0, 'it': 2.0, 'let': 1.0, 'you': 2.0, 's': 2.0, 'when': 1.0, 'we': 2.0, 'smell': 1.0}
Word element => {'re': 1.0, 'handle': 1.0, 'flip': 1.0, 'one': 1.0, 'that': 1.0, 'b': 1.0, 'genie': 2.0, 'old': 1.0, 'c': 1.0, 'no': 1.0, 'drop': 1.0, 'cost': 1.0, 'keep': 1.0, 'odor': 1.0, 'newbag': 1.0, 'the': 6.0, 'diaper': 2.0, 'great': 1.0, 'this': 1.0, 'it': 2.0, 'buying': 1.0, 'with': 1.0, 'effective': 1.0, 'in': 3.0, 'also': 2.0, 'and': 2.0, 'pail': 1.0, 'hand': 1.0, 'like': 1.0, 'only': 1.0, 'much': 1.0, 'easy': 1.0, 'use': 2.0, 'then': 1.0, 'loading': 1.0, 'user': 1.0, 'keeps': 1.0, 'you': 3.0, 'over': 1.0, 'don': 1.0, 'to': 2.0, 'any': 1.0, 'expensive': 1.0, 'done': 1.0, 'need': 2.0, 'bag': 2.0, 'inserts': 1.0, 'just': 2.0, 'more': 1.0, 'is': 4.0, 'trash': 1.0, 'there': 1.0, 't': 1.0, 'a': 2.0, 'messing': 1.0, 'very': 1.0, 'friendly': 1.0}
Word element => {'little': 1.0, 'a': 1.0, 'have': 1.0, 'and': 1.0, 'on': 1.0, 'for': 2.0, 'could': 1.0, 'in': 1.0, 'wish': 1.0, 'had': 1.0, 'paid': 1.0, '39': 1.0, 'bought': 1.0, 'amazon': 1.0, 'this': 1.0, 'it': 1.0, 'way': 1.0, 'i': 3.0, 'overpriced': 1.0, 'more': 1.0, '99': 2.0, 'the': 1.0, 'researched': 1.0, 'store': 1.0, '29': 1.0, 'too': 1.0}
Word element => {'with': 1.0, 'handle': 1.0, 'kid': 1.0, 'even': 1.0, 'take': 1.0, 'use': 1.0, 'easy': 1.0, 'while': 1.0, 'assembly': 1.0, 'some': 1.0, 'bag': 1.0, 'need': 1.0, 'can': 2.0, 'food': 1.0, 'stinky': 1.0, 'innovative': 1.0, 'had': 1.0, 'was': 1.0, 'any': 2.0, 'all': 1.0, 'to': 2.0, 'as': 2.0, 'when': 1.0, 'gives': 1.0, 'diaper': 2.0, 'however': 1.0, 'ease': 1.0, 'buy': 1.0, 'i': 2.0, 'daiper': 1.0, 'genie': 1.0, 'champ': 2.0, 'sick': 1.0, 'trash': 1.0, 'is': 2.0, 'true': 1.0, 'champion': 1.0, 'a': 3.0, 'planning': 1.0, 'out': 1.0, 'liked': 1.0, 'so': 1.0, 'friends': 1.0, 'were': 1.0, 'that': 1.0, 'and': 4.0, 'earlier': 1.0, 'of': 1.0, 'the': 1.0, 'refill': 1.0, 'my': 1.0, 'starts': 1.0, 'size': 1.0, 'system': 1.0, 'style': 1.0, 'not': 1.0, 'its': 2.0, 'only': 1.0, 'it': 3.0, 'grows': 1.0, 'eating': 1.0, 'also': 2.0, 'solid': 1.0, 'smell': 1.0, 'tired': 1.0, 'baby': 1.0}
Word element => {'product': 1.0, 'using': 1.0, 've': 1.0, 'highly': 1.0, 'any': 1.0, 'noticed': 1.0, 'haven': 1.0, 'and': 1.0, 'since': 1.0, 'a': 1.0, 'been': 1.0, 'little': 1.0, 'odors': 1.0, 'because': 1.0, 'i': 3.0, 'pail': 1.0, 'skeptical': 1.0, 'best': 1.0, 't': 1.0, 'diaper': 1.0, 'the': 1.0, 'of': 1.0, 'is': 2.0, 'really': 1.0, 'we': 1.0, 'design': 1.0, 'simple': 1.0, 'but': 1.0, 'recommend': 1.0, 'easy': 1.0, 'use': 1.0, 'this': 2.0, 'it': 2.0, 'so': 1.0, 'everyone': 1.0, 'its': 1.0, 'was': 1.0, 'to': 2.0}
Word element => {'out': 1.0, 'can': 1.0, 'daughter': 1.0, 'pull': 1.0, 'my': 1.0, 'get': 1.0, 'and': 2.0, 'best': 1.0, 'pail': 2.0, 'that': 1.0, 'just': 1.0, 'diapers': 1.0, 'but': 1.0, 'it': 1.0, 'this': 2.0, 'the': 2.0, 'diaper': 1.0, 't': 2.0, 'buy': 1.0, 'i': 2.0, 'bags': 1.0, 'found': 1.0, 'trash': 1.0, 'completely': 1.0, 'haven': 1.0, 'a': 1.0, 'love': 1.0, 'one': 1.0, 'yet': 1.0, 'kitchen': 1.0, 's': 1.0, 'into': 1.0, 'odorless': 1.0, 'regular': 1.0, 'is': 1.0}
Word element => {'product': 1.0, 'for': 1.0, 'value': 1.0, 'smells': 1.0, 'everything': 1.0, 'between': 1.0, 'lysol': 1.0, 'of': 1.0, 'and': 1.0, 'changes': 1.0, 'spray': 1.0, 'a': 2.0, 'what': 1.0, 'needed': 1.0, 'no': 2.0, 'keep': 1.0, 'experienced': 1.0, 'i': 2.0, 'bag': 1.0, 'issues': 1.0, 'is': 1.0, 'rosy': 1.0, 'have': 1.0, 'with': 1.0, 'this': 1.0, 'just': 1.0, 'excellent': 2.0, 'in': 3.0, 'great': 1.0, 'diaper': 1.0, 'the': 1.0, 'my': 1.0, 'are': 1.0, 'odor': 1.0, 'an': 1.0, 'champ': 1.0, 'fact': 1.0, 'baby': 1.0, 'special': 1.0, 's': 1.0, 'savings': 1.0, 'closet': 1.0, 'bags': 1.0}
Word element => {'w': 1.0, 'using': 1.0, 'of': 2.0, 'would': 1.0, 'savings': 1.0, 'cost': 1.0, 'with': 1.0, 'had': 1.0, 'if': 1.0, 'worse': 1.0, 'will': 1.0, 'even': 1.0, 'diapers': 1.0, '2': 1.0, 'older': 1.0, 'gets': 1.0, 'odor': 1.0, 'an': 1.0, 'type': 1.0, 'old': 1.0, 'do': 2.0, 'only': 2.0, 'daughter': 1.0, 'is': 2.0, 'addition': 1.0, 'bag': 1.0, 'forth': 1.0, 'back': 1.0, 'handle': 1.0, 'my': 1.0, 'purchase': 2.0, 'any': 1.0, 'as': 1.0, 'to': 4.0, 'concept': 1.0, 'that': 3.0, 'over': 1.0, 'don': 2.0, 'about': 1.0, 'fabulous': 1.0, 'use': 1.0, 'refills': 1.0, 'm': 2.0, 'odorless': 1.0, 'just': 1.0, 'kitchen': 1.0, 'making': 1.0, 'months': 1.0, 'one': 1.0, 'she': 1.0, 'it': 4.0, 'this': 1.0, 'again': 1.0, 'you': 1.0, 'idea': 1.0, 'times': 1.0, 'wipes': 1.0, 'have': 1.0, 'believe': 1.0, 'the': 9.0, 'diaper': 3.0, '4': 1.0, 'i': 7.0, 'turn': 1.0, 'in': 3.0, 'concerned': 1.0, 'stuck': 1.0, 'notice': 1.0, 'we': 1.0, 's': 1.0, 'a': 1.0, 't': 2.0, 'go': 2.0, 'store': 1.0, 'tall': 1.0, 'and': 4.0, 'hard': 1.0, 'bags': 1.0, 'expensive': 1.0, 'love': 1.0, 'for': 1.0, 'disposal': 1.0, 'not': 1.0, 'those': 1.0, 'genie': 1.0, 'champ': 1.0, 'cons': 1.0, 'at': 1.0, 'sure': 1.0, 'get': 2.0, 'area': 1.0}
Word element => {'through': 1.0, 'doesn': 1.0, 'newborn': 1.0, 'than': 1.0, 'go': 2.0, 'gets': 1.0, 'once': 1.0, 'room': 1.0, 'holds': 1.0, 'part': 1.0, 'ridiculous': 1.0, '15': 1.0, 'honestly': 1.0, 'sit': 1.0, 'recognize': 1.0, 'also': 1.0, 'about': 2.0, 'thing': 1.0, 'customer': 1.0, 'think': 1.0, 'again': 1.0, 'happened': 1.0, 'case': 1.0, 'extras': 1.0, 'free': 1.0, 'new': 1.0, 'sent': 1.0, 'promptly': 1.0, 'but': 2.0, 'very': 1.0, 'thingee': 1.0, 'gasket': 1.0, 'on': 2.0, 'adhesive': 1.0, 'etc': 1.0, 'day': 2.0, 'messy': 1.0, 'hasn': 1.0, 'only': 3.0, 'wet': 1.0, 'anyway': 1.0, 'use': 1.0, 'put': 1.0, 'contains': 1.0, 'empty': 1.0, 'contain': 1.0, 'probably': 1.0, 'any': 1.0, 'expect': 1.0, 'solids': 1.0, 'now': 2.0, 'often': 1.0, 'loose': 1.0, 'month': 1.0, 'week': 1.0, 'changed': 1.0, 'until': 1.0, 'escape': 1.0, 'our': 2.0, 'outside': 2.0, 'used': 1.0, 'smell': 2.0, 'make': 1.0, 'they': 4.0, 'point': 1.0, 'started': 1.0, 'good': 1.0, 'which': 3.0, 'like': 2.0, 'fisher': 1.0, 'don': 4.0, 'price': 1.0, 'another': 1.0, 'directly': 1.0, 'exclusively': 1.0, 'reasons': 1.0, 'me': 1.0, 'my': 2.0, 'and': 5.0, 'little': 2.0, 'two': 3.0, 'longer': 1.0, 'of': 1.0, 'the': 19.0, 'fairly': 1.0, 'along': 1.0, 't': 7.0, 'fine': 1.0, 'we': 3.0, 'emailed': 1.0, 'a': 10.0, 's': 3.0, 'as': 3.0, 'diaper': 5.0, 'for': 5.0, 'actually': 1.0, 'get': 1.0, 'trouble': 1.0, 'months': 1.0, 'service': 1.0, 'every': 1.0, 'if': 3.0, 'still': 2.0, 'three': 1.0, 'stinkier': 1.0, 'know': 2.0, 'easy': 1.0, 'found': 1.0, 'few': 1.0, 'this': 3.0, 'kids': 1.0, 'pain': 1.0, 'fact': 1.0, 'escaping': 1.0, 'pulled': 1.0, 'to': 5.0, 'pail': 2.0, 'baby': 2.0, 'others': 1.0, 'some': 1.0, 've': 1.0, 'would': 1.0, 'more': 4.0, 'babies': 1.0, 'diapers': 3.0, 'first': 1.0, 'with': 4.0, 'older': 3.0, 'by': 1.0, 'six': 1.0, 'genie': 1.0, 'personally': 3.0, 'had': 2.0, 'be': 3.0, 'coming': 1.0, 'i': 14.0, 'putting': 1.0, 'rank': 1.0, 'worked': 1.0, 'having': 2.0, 'he': 2.0, 'bottom': 1.0, 'solid': 1.0, 'all': 2.0, 'an': 1.0, 'or': 2.0, 'food': 1.0, 'takes': 1.0, 'up': 2.0, 'change': 2.0, 'because': 1.0, 'that': 7.0, 'breast': 1.0, 'days': 1.0, 'fed': 2.0, 'there': 2.0, 'dirty': 1.0, 'full': 1.0, 'were': 1.0, 'no': 1.0, 'odors': 2.0, 'is': 4.0, 'at': 2.0, 'sheet': 1.0, 'formula': 1.0, 'dryer': 1.0, 'have': 2.0, 'can': 2.0, 'so': 4.0, 'it': 15.0, 'in': 3.0, 'enjoyed': 1.0, 'out': 3.0, 'has': 2.0, 'them': 2.0, 'always': 1.0, 'heavier': 1.0, 'opened': 1.0, 'you': 3.0, 'ones': 2.0, 'one': 5.0, 'try': 1.0, 'efficient': 1.0, 'open': 1.0, 'inside': 1.0, 'will': 1.0, 'bag': 1.0, 'sprayed': 1.0, 'lysol': 1.0, 'kept': 1.0}
Word element => {'did': 1.0, 'works': 1.0, 'buy': 1.0, 'have': 1.0, 'another': 1.0, 'put': 1.0, 'better': 2.0, 'open': 1.0, 'didn': 2.0, 'refill': 1.0, 'the': 8.0, 'diaper': 5.0, 'for': 1.0, 'a': 2.0, 't': 4.0, 'we': 1.0, 'smell': 1.0, 'weeks': 1.0, 'champ': 2.0, 'genie': 2.0, 'i': 2.0, 'tried': 1.0, 'over': 1.0, 'it': 9.0, 'wasn': 1.0, '100': 1.0, 'bought': 2.0, 'decided': 1.0, 'us': 2.0, 'after': 1.0, 'garbage': 1.0, 'was': 1.0, 'recommended': 1.0, 'using': 2.0, 'hold': 1.0, 'in': 3.0, 'scented': 1.0, 'still': 2.0, 'and': 4.0, 'that': 1.0, 'to': 3.0, 'all': 1.0, 'our': 1.0, 'help': 1.0, 'before': 1.0, 'room': 2.0, 'lot': 2.0, 'keep': 1.0, 'at': 1.0, 'stunk': 1.0, 'bags': 2.0, 'while': 1.0, 'than': 2.0, 'because': 1.0, 'does': 1.0, 'when': 1.0, 'smells': 3.0, 'you': 3.0, '2': 1.0, 'can': 1.0}
Word element => {'friend': 1.0, 'drum': 1.0, 'apart': 5.0, 'assembly': 1.0, 'glad': 1.0, 'piston': 1.0, 'directions': 2.0, 'according': 1.0, 'your': 1.0, 'broke': 1.0, 'fine': 1.0, 'then': 1.0, 'if': 4.0, 'would': 4.0, 'area': 1.0, 'smell': 1.0, 'due': 1.0, 'further': 1.0, 't': 6.0, 'an': 1.0, 'open': 2.0, 'extra': 1.0, 'trying': 1.0, 'buy': 1.0, 'hand': 1.0, 'ridiculous': 1.0, 'minus': 1.0, 'have': 4.0, 'smaller': 1.0, 'use': 2.0, 'her': 1.0, 'so': 5.0, 'take': 4.0, 'inside': 3.0, 'came': 1.0, 'impossible': 1.0, 'bags': 2.0, 'experienced': 1.0, 'kitchen': 1.0, 'nor': 1.0, 'assumed': 1.0, 'seems': 1.0, 'see': 1.0, 'also': 1.0, 'us': 3.0, 'hoo': 1.0, 'picking': 1.0, 'throw': 1.0, 'of': 4.0, 'person': 1.0, 'still': 1.0, 'don': 2.0, 'diaper': 6.0, 'up': 2.0, 'as': 2.0, 'less': 1.0, 'at': 1.0, 'can': 3.0, 'is': 1.0, 'separated': 1.0, 'crowbar': 1.0, 'handle': 1.0, 'one': 4.0, 'price': 1.0, 'try': 1.0, 'bright': 1.0, 'spoke': 1.0, 'me': 2.0, 'the': 21.0, 'experience': 1.0, 'say': 1.0, 'away': 1.0, 'households': 1.0, 'that': 13.0, 'because': 1.0, 'babies': 1.0, 'husband': 1.0, 'easier': 1.0, 'recommended': 1.0, 'tried': 1.0, 'just': 2.0, 'and': 3.0, 'r': 1.0, 'much': 1.0, 'to': 23.0, 'recommend': 2.0, 'was': 7.0, 'for': 3.0, 'containment': 1.0, 'here': 1.0, 'example': 1.0, 'asile': 1.0, 'she': 3.0, 'working': 1.0, 'my': 3.0, 'are': 3.0, 'first': 1.0, 'box': 1.0, 'loved': 1.0, 'nanny': 1.0, 'customer': 3.0, 's': 3.0, 'maybe': 2.0, 'a': 9.0, 'in': 2.0, 'pluses': 1.0, 'harder': 1.0, 'champ': 1.0, 'offer': 1.0, 'you': 7.0, 'push': 1.0, 'wish': 1.0, 'thoroughly': 1.0, 'clean': 1.0, 'stay': 1.0, 'again': 1.0, 'previous': 1.0, 'when': 1.0, 'bought': 1.0, 'we': 2.0, 'called': 1.0, 'upraised': 1.0, 'could': 5.0, 'genie': 4.0, 'not': 3.0, 'often': 1.0, 'inflated': 1.0, 'get': 4.0, 'come': 2.0, 'lever': 1.0, 'thought': 1.0, 'budge': 1.0, 'time': 1.0, 'didn': 2.0, 'specifically': 1.0, 'mention': 1.0, 'it': 15.0, 'be': 1.0, 'built': 1.0, 'by': 1.0, 'after': 1.0, 'amount': 1.0, 'long': 1.0, 'on': 1.0, 'with': 5.0, 'using': 1.0, 'practically': 1.0, 'regular': 1.0, 'everything': 1.0, 'who': 1.0, 'from': 1.0, 'nails': 1.0, 'i': 12.0, 'finally': 1.0, 'down': 1.0, 'number': 1.0, 'missing': 1.0, 'key': 1.0, 'some': 1.0, 'button': 1.0, 'despite': 1.0, 'or': 2.0, 'anything': 1.0, 'out': 1.0, 'told': 1.0, 'way': 1.0, 'all': 2.0, 'call': 1.0, 'couldn': 1.0, 'product': 2.0, 'insert': 1.0, 'large': 1.0, 'pause': 1.0, 'eyebrows': 1.0, 'warped': 1.0, 'needless': 1.0, 'really': 1.0, 'than': 3.0, 'bit': 1.0, 'helpful': 1.0, 'they': 2.0, 'gamble': 1.0, 'back': 1.0, 'store': 1.0, 'assume': 1.0, 'side': 1.0, 'woo': 1.0, 'lot': 1.0, 'haven': 1.0, 'gotten': 1.0, 'itself': 1.0, 'trash': 2.0, 'should': 1.0, 'dirtier': 1.0, 'lysol': 1.0, 'service': 3.0, 'special': 1.0, 'wipe': 1.0, 'lack': 1.0, 'felt': 1.0, 'helpfulness': 1.0, 'folks': 1.0}
Word element => {'diapers': 1.0, 'those': 1.0, 'works': 1.0, 'really': 1.0, 'are': 1.0, 'up': 1.0, 'it': 1.0, 'will': 1.0, 'stinks': 1.0, 'something': 2.0, 'if': 1.0, 'house': 2.0, 'buying': 1.0, 'so': 2.0, 'friends': 1.0, 'stink': 1.0, 'of': 1.0, 'room': 1.0, '5': 1.0, 'husband': 1.0, 'by': 1.0, 'us': 2.0, 'instead': 1.0, 'already': 1.0, 'live': 1.0, 'champ': 1.0, 'genie': 1.0, 'buy': 1.0, 'i': 3.0, 'glad': 1.0, 'diaper': 2.0, 'the': 5.0, 'my': 2.0, 'went': 1.0, 'get': 1.0, 'intrigued': 1.0, 'see': 1.0, 'were': 1.0, 'that': 1.0, 'babies': 1.0, 'small': 1.0, 'have': 3.0, 'was': 1.0, 'store': 1.0, 'r': 1.0, 'out': 2.0, 'them': 2.0, 'to': 4.0, 'as': 2.0, 'why': 1.0, 'in': 2.0, 'said': 1.0, 'a': 2.0, 'we': 3.0, 'referred': 1.0, 'hold': 1.0, 'sold': 1.0, 'and': 2.0, 'soon': 1.0, 'entire': 1.0, 'one': 3.0, 'worker': 1.0, 'for': 2.0, 'because': 1.0, 'dirty': 1.0, 'they': 2.0, 'should': 1.0, 'sell': 1.0, 'on': 1.0, 'but': 1.0, 'can': 1.0, 'shelves': 1.0, 'about': 1.0}
Word element => {'have': 1.0, 'don': 1.0, 'intolerable': 1.0, 'better': 1.0, 'i': 1.0, 'genie': 1.0, 'first': 1.0, 'month': 1.0, 'it': 1.0, 'complain': 1.0, 'with': 1.0, 'keepscoming': 1.0, 'website': 1.0, 'the': 5.0, 'diaper': 1.0, 'three': 1.0, 'chamber': 1.0, 'well': 1.0, 'months': 1.0, 'watch': 1.0, 'were': 1.0, 'out': 2.0, 'clean': 1.0, 'odor': 2.0, 'was': 1.0, 'all': 1.0, 'to': 2.0, 'then': 1.0, 'free': 1.0, 'they': 1.0, 'the3rd': 1.0, 'after': 2.0, 'something': 1.0, 'charcoal': 1.0, 'back': 1.0, 'a': 1.0, 't': 1.0, 'going': 1.0, 'how': 2.0, 'tomorrow': 1.0, 'absorbed': 1.0, 'lysol': 1.0, 'or': 2.0, 'no': 1.0, 'matter': 1.0, 'spray': 1.0, 'too': 1.0, 'and': 1.0, 'much': 1.0, 'am': 1.0, 'you': 2.0, 'purchase': 1.0, 'often': 1.0, 'smell': 1.0}
Word element => {'saves': 1.0, 'which': 1.0, 'custom': 1.0, 'to': 1.0, 'money': 1.0, 'any': 1.0, 'don': 1.0, 'so': 1.0, 'liners': 2.0, '9': 1.0, 'captures': 1.0, 'can': 2.0, 'have': 2.0, 'odors': 1.0, 'easiest': 1.0, 'me': 1.0, 'and': 3.0, 'it': 2.0, 'this': 1.0, 'children': 1.0, 't': 1.0, 'mother': 1.0, 'the': 2.0, 'diaper': 1.0, 'of': 1.0, 'trash': 1.0, 'am': 1.0, 'time': 1.0, 'ever': 1.0, 'buy': 1.0, 'i': 3.0, 'uses': 1.0, 'pail': 1.0, 'is': 1.0, 'regular': 1.0, 'used': 1.0}
Word element => {'how': 1.0, 'out': 1.0, 'figure': 1.0, 'adult': 1.0, 'some': 1.0, 'infant': 1.0, 'after': 1.0, 'for': 1.0, 'handle': 1.0, 'old': 1.0, 'year': 1.0, 'bags': 1.0, 'buy': 1.0, 'having': 1.0, 'me': 1.0, 'not': 1.0, 'gift': 1.0, 'i': 8.0, 'recieved': 1.0, 'loves': 1.0, 'that': 1.0, 'something': 1.0, '3': 1.0, 'think': 1.0, 'genie': 2.0, 'champ': 2.0, 'off': 1.0, 'house': 1.0, 'my': 6.0, 't': 1.0, 'a': 2.0, 'ago': 1.0, 'decided': 1.0, 'comes': 1.0, 'as': 1.0, 'to': 6.0, 'had': 1.0, 'anyone': 1.0, 'turn': 2.0, 'in': 1.0, 'have': 1.0, 'diaper': 4.0, 'the': 4.0, 'great': 1.0, 'am': 2.0, 'when': 2.0, 'daughter': 1.0, 'three': 1.0, 'special': 1.0, 'tons': 1.0, 'years': 1.0, 'can': 1.0, 'change': 1.0, 'but': 1.0, 'pregnant': 1.0, 'money': 1.0, 'and': 2.0, 'hated': 1.0, 'it': 1.0, 'this': 1.0, 'even': 1.0, 'strange': 1.0, 'got': 1.0, 'friends': 2.0, 'time': 1.0, 'different': 1.0, 'try': 1.0, 'works': 1.0, 'show': 1.0, 'saving': 1.0, 'of': 2.0}
Word element => {'open': 1.0, 'before': 1.0, 'take': 1.0, 'diapers': 1.0, 'not': 1.0, 'about': 1.0, 'drawback': 1.0, 'one': 1.0, 'often': 1.0, 'odors': 1.0, 'don': 1.0, 'and': 2.0, 'trashbags': 1.0, 'break': 1.0, 'have': 2.0, 'the': 7.0, 'diaper': 1.0, 'right': 1.0, 'money': 1.0, 'can': 1.0, 'outside': 1.0, 'to': 5.0, 'trying': 1.0, 'when': 1.0, 'you': 5.0, 'best': 1.0, 'dirty': 1.0, 'means': 1.0, 'smelling': 1.0, 'out': 1.0, 'uses': 2.0, 'won': 1.0, 'less': 1.0, 'champ': 4.0, 'others': 1.0, 'bag': 2.0, 'simple': 1.0, 'design': 1.0, 'headaches': 1.0, 'saving': 1.0, 'unlike': 1.0, 'buy': 1.0, 'go': 1.0, 't': 2.0, 'a': 3.0, 'that': 2.0, 'it': 4.0, 'empty': 2.0, 'only': 1.0, 'works': 1.0, 'from': 1.0, 'part': 1.0, 'in': 1.0, 'wonderfully': 1.0, 'full': 1.0, 'keep': 1.0, 'is': 3.0, 'because': 1.0, 'find': 1.0, 'standard': 1.0, 'sized': 1.0, 'which': 1.0}
Word element => {'want': 1.0, 'wouldn': 1.0, 'items': 1.0, 'this': 1.0, 'so': 1.0, 'every': 1.0, 'clorox': 1.0, 'baby': 1.0, 'wipe': 1.0, 'smell': 1.0, 'problem': 1.0, 'how': 1.0, 'learn': 1.0, 'minutes': 1.0, 'just': 1.0, 'few': 1.0, 'those': 1.0, 'me': 1.0, 'took': 1.0, 'or': 1.0, 'arms': 1.0, 'make': 1.0, 'on': 1.0, 'your': 1.0, 'in': 1.0, 'infant': 1.0, 'with': 3.0, 'important': 1.0, 'is': 3.0, 'once': 1.0, 'of': 3.0, 'don': 2.0, 'out': 3.0, 'changing': 1.0, 'that': 4.0, 'bags': 1.0, 'reviews': 1.0, 'figure': 1.0, 'read': 1.0, 'headache': 1.0, 'after': 1.0, 'love': 2.0, 'one': 2.0, 'without': 1.0, 'the': 9.0, 'diaper': 4.0, 'change': 1.0, 'but': 3.0, 'haven': 1.0, 'champ': 3.0, 'genie': 1.0, 'i': 5.0, 'either': 1.0, 'had': 2.0, 'all': 1.0, 'any': 1.0, 'to': 7.0, 'planned': 1.0, 'sure': 1.0, 'easy': 2.0, 'get': 1.0, 'kind': 1.0, 'you': 2.0, 'way': 1.0, 'have': 1.0, 'often': 1.0, 'fact': 1.0, 'purchase': 1.0, 'use': 1.0, 'wipes': 1.0, 'accepts': 1.0, 'specific': 1.0, 'and': 2.0, 'too': 2.0, 'do': 2.0, 'squirmy': 1.0, 'much': 1.0, 'we': 2.0, 't': 4.0, 's': 2.0, 'a': 4.0, 'won': 1.0, 'expense': 1.0, 'bag': 2.0, 'need': 1.0, 'table': 1.0, 'which': 1.0, 'it': 4.0, 'also': 1.0, 'super': 1.0, 'at': 1.0, 'handed': 1.0}
Word element => {'originally': 1.0, 'what': 1.0, 'change': 1.0, 'pails': 1.0, 'am': 1.0, 'diapers': 2.0, 'block': 1.0, 'and': 2.0, 'didnt': 1.0, 'flip': 1.0, 'really': 1.0, 'just': 1.0, 's': 2.0, 't': 1.0, 'after': 1.0, 'etc': 1.0, 'two': 1.0, 'like': 1.0, 'smell': 2.0, 'room': 1.0, 'before': 1.0, 'baby': 1.0, 'started': 2.0, 'night': 1.0, 'outside': 1.0, 'not': 1.0, 'give': 1.0, 'making': 1.0, 'kitchen': 1.0, 'get': 1.0, 'sure': 1.0, 'can': 3.0, 'but': 2.0, 'urine': 1.0, 'recently': 1.0, 'mechanism': 1.0, 'one': 1.0, 'in': 4.0, 'wipes': 1.0, 'unable': 1.0, 'diaper': 5.0, 'to': 3.0, 'hoping': 1.0, 'job': 1.0, 'over': 1.0, 'days': 1.0, 'later': 1.0, 'edited': 1.0, 'stench': 1.0, 'few': 1.0, 'this': 3.0, 'of': 2.0, 'the': 8.0, 'doing': 1.0, 'it': 6.0, 'stopped': 1.0, 'put': 1.0, 'do': 1.0, 'such': 2.0, 'thing': 1.0, 'no': 1.0, 'if': 1.0, 'they': 1.0, 'item': 1.0, 'luck': 1.0, 'year': 1.0, 'product': 1.0, 'report': 1.0, 'stars': 1.0, 'onw': 1.0, 'i': 7.0, 'putting': 1.0, 'a': 3.0, 'ziploc': 1.0, 'each': 2.0, 'properly': 1.0, 'would': 2.0, 'using': 1.0, 'isnt': 1.0, 'bag': 1.0, 'away': 4.0, 'now': 1.0, 'stuck': 1.0, 'champ': 1.0, 'because': 1.0, 'that': 2.0, 'then': 1.0, 'take': 3.0, 'old': 1.0, 'with': 1.0, 'throw': 1.0, 'or': 2.0, 'main': 1.0, 'three': 1.0, 'trash': 1.0, 'gets': 1.0, 'taken': 1.0, 'throwing': 1.0, 'out': 1.0, 'me': 1.0, 'my': 1.0}
Word element => {'away': 1.0, 'than': 1.0, 'other': 1.0, 'will': 1.0, 'chute': 1.0, 'delivery': 1.0, 'or': 1.0, 'tightly': 1.0, 'diaper': 1.0, 'should': 1.0, 'you': 1.0, 'is': 1.0, 'get': 1.0, 'con': 1.0, 'did': 1.0, 'friend': 1.0, 'wrap': 1.0, 'the': 5.0, 'promised': 1.0, 'few': 1.0, 'genie': 2.0, 'haven': 1.0, 'odor': 1.0, 'had': 1.0, 'look': 1.0, 'accumulating': 1.0, 'gotta': 1.0, 'with': 1.0, 'vs': 1.0, 'picked': 1.0, 'that': 3.0, 'went': 1.0, 'great': 1.0, 'his': 1.0, 'to': 1.0, 'any': 1.0, 'as': 1.0, 'problems': 1.0, 'have': 1.0, 'who': 1.0, 'at': 1.0, 'and': 1.0, 'soiled': 1.0, 'up': 1.0, 'it': 9.0, 'felt': 1.0, 'ya': 1.0, 'like': 1.0, 'a': 2.0, 't': 1.0, 'weighed': 1.0, '50': 1.0, 'buy': 1.0, 'days': 1.0, 'blows': 1.0, 'i': 3.0, 'pounds': 1.0, 'product': 1.0, 'folks': 1.0, 'only': 2.0, 'empty': 1.0, 'works': 1.0, 'do': 1.0, 'much': 1.0, 'every': 1.0, 'but': 1.0, 'can': 1.0, 'against': 1.0, 'so': 1.0}
Word element => {'sure': 1.0, 'will': 1.0, 'babies': 1.0, 'who': 1.0, 'relatives': 1.0, 'kitchen': 1.0, 'than': 1.0, 'simple': 1.0, 'is': 1.0, 'extremely': 1.0, 'plastic': 1.0, 'clean': 1.0, 'last': 1.0, 'everything': 1.0, 'smelly': 2.0, 'problem': 1.0, 'easier': 1.0, 'table': 1.0, 'method': 1.0, 'dispenser': 1.0, 'little': 1.0, 'yellow': 1.0, 'because': 3.0, 'economical': 1.0, 'champ': 4.0, 'less': 1.0, 'while': 1.0, 'disposer': 1.0, '3': 1.0, 'blue': 2.0, 'register': 1.0, 'baby': 1.0, 'encourage': 1.0, 'them': 2.0, 'don': 1.0, 'poopy': 1.0, 'we': 6.0, 't': 1.0, 'maybe': 1.0, 's': 4.0, 'any': 1.0, 'keeps': 2.0, 'love': 1.0, 'for': 6.0, 'this': 2.0, 'full': 1.0, 'with': 4.0, 'it': 5.0, 'bags': 4.0, 'diaper': 6.0, 'a': 5.0, 'small': 1.0, 'odors': 1.0, 'keep': 1.0, 'the': 10.0, 'of': 3.0, 'changing': 3.0, 'put': 1.0, 'messes': 1.0, 'and': 6.0, '50': 1.0, 'price': 1.0, 'pay': 1.0, 'expecting': 1.0, 'still': 1.0, 'gets': 1.0, 'an': 1.0, 'almost': 1.0, 'diapers': 3.0, 'are': 3.0, 'first': 1.0, 'odorless': 1.0, 'wet': 1.0, 'to': 7.0, 'pail': 1.0, 'quite': 1.0, 'purchase': 1.0, 'only': 2.0, 'use': 1.0, 'nearby': 1.0, 'not': 2.0, 'they': 1.0, 'using': 1.0, 'bag': 4.0, 'duck': 1.0, 'since': 1.0, '1': 1.0, 'so': 2.0, 'can': 1.0, 'times': 1.0, 'roll': 2.0, 'when': 1.0, 'in': 3.0, 'per': 1.0, 'quick': 1.0, 'changed': 1.0, 'week': 1.0, 'also': 1.0, 'chamber': 1.0, 'plunger': 1.0, 'free': 1.0, 'be': 2.0, 'used': 1.0, 'garbage': 2.0, 'one': 1.0, '2': 1.0, 'thing': 1.0, 'have': 3.0, 'remember': 1.0, 'our': 2.0, 'shopping': 1.0}
Word element => {'makes': 1.0, 'occasionally': 1.0, 'a': 1.0, 'well': 1.0, 'in': 1.0, 'so': 1.0, 'twins': 1.0, 'new': 1.0, 'that': 1.0, 'our': 1.0, 'we': 1.0, '3': 1.0, 'bomb': 1.0, 'holds': 2.0, 'and': 1.0, 'champ': 1.0, 'herself': 1.0, 'is': 1.0, 'deposit': 1.0, 'now': 1.0, 'odors': 1.0, 'not': 1.0, 'using': 1.0, 'for': 2.0, 'bombs': 1.0, 'years': 1.0, 'diaper': 1.0, 'the': 3.0, 'are': 1.0, 'grandma': 1.0, 'even': 1.0, 'used': 1.0, 'child': 1.0, 'out': 1.0, 'it': 3.0, 'only': 1.0, 'first': 1.0, 'ago': 1.0}
Word element => {'recommend': 1.0, 'very': 1.0, 'back': 1.0, 'ready': 1.0, 'are': 1.0, 'garbage': 1.0, 'cloth': 1.0, 'wipe': 1.0, 'disenfectant': 1.0, 'with': 1.0, 'quick': 1.0, 'just': 1.0, 'quickly': 1.0, 'does': 1.0, 'own': 1.0, 'smell': 1.0, 'up': 1.0, 'open': 1.0, 'give': 1.0, 'not': 1.0, 'your': 1.0, 'put': 2.0, 'stuff': 1.0, 'am': 1.0, 'you': 3.0, 'and': 3.0, 'lots': 1.0, 'escape': 1.0, 'diapers': 1.0, 'champ': 1.0, 'is': 1.0, 'holds': 1.0, 'it': 7.0, 'i': 5.0, 'smelled': 1.0, 'odor': 1.0, 'bad': 1.0, 'been': 1.0, 'three': 1.0, 'change': 1.0, 'but': 2.0, 'can': 1.0, 'past': 1.0, 'have': 3.0, 'coming': 1.0, 'months': 1.0, 'using': 1.0, 'for': 1.0, 'suggest': 1.0, 'the': 5.0, 'diaper': 2.0, 'from': 1.0, 'son': 1.0, 'any': 1.0, 'to': 3.0, 'outside': 1.0, 'happy': 1.0, 'pail': 2.0, 'in': 3.0, 'my': 1.0, 'room': 2.0, 'easy': 1.0, 's': 1.0, 'a': 3.0, 'bag': 2.0, 'new': 1.0, 'would': 1.0, 'this': 1.0, 'full': 1.0, 'doing': 1.0, 'of': 1.0, 'once': 1.0}
Word element => {'d': 1.0, 'between': 1.0, 'trying': 1.0, 'throw': 1.0, 'just': 1.0, 'is': 1.0, 'use': 1.0, 'little': 1.0, 'if': 1.0, 'being': 1.0, 'remember': 1.0, 'two': 1.0, 'i': 2.0, 'days': 1.0, 'babysitting': 1.0, 'plus': 1.0, '99': 1.0, '1': 1.0, 'flip': 1.0, 'registry': 1.0, 'target': 1.0, 'put': 1.0, 'on': 2.0, 'champ': 3.0, 'genie': 1.0, 'had': 1.0, 'off': 1.0, 'us': 1.0, 'suggested': 1.0, 'tipped': 1.0, 'it': 2.0, 'this': 1.0, 'for': 2.0, 'love': 1.0, 'the': 5.0, 'are': 2.0, 'friend': 1.0, 'diaper': 4.0, 'glad': 1.0, 'that': 2.0, 'go': 1.0, 'we': 4.0, 'a': 3.0, 'and': 2.0, 'easy': 1.0, 'get': 1.0, 'garbage': 1.0, 'small': 1.0, 'sells': 1.0, 'diapergenie': 1.0, 'instead': 1.0, 'choose': 1.0, 'because': 1.0, 'would': 1.0, 'my': 1.0, 'save': 1.0, 'hard': 1.0, 'from': 1.0, 'bags': 1.0, 'someone': 1.0, 'local': 1.0, 'you': 2.0, 'but': 1.0, 'can': 1.0, 'size': 1.0, 'to': 3.0, 'our': 3.0, 'any': 1.0, 'bag': 1.0, 'so': 1.0, '90': 1.0, 'in': 2.0, 'empty': 1.0, 'pack': 1.0, 'of': 1.0}
Word element => {'special': 1.0, 'buy': 1.0, 'not': 1.0, 'changed': 1.0, 'it': 5.0, 'so': 2.0, 'needs': 1.0, 'from': 1.0, 'day': 1.0, 'poopy': 2.0, 'up': 2.0, 'don': 1.0, 'am': 1.0, 'when': 2.0, 'a': 3.0, 't': 2.0, 's': 2.0, 'they': 3.0, 'runny': 1.0, 'immediately': 1.0, 'my': 2.0, 'family': 1.0, 'using': 2.0, 'too': 1.0, 'one': 2.0, 'feed': 1.0, '3': 1.0, 'clorox': 1.0, 'stuff': 1.0, 'on': 1.0, 'there': 1.0, 'baby': 2.0, 'wipe': 1.0, 'remove': 1.0, 'works': 1.0, 'only': 2.0, 'few': 1.0, 'this': 2.0, 'formula': 1.0, 'born': 1.0, 'have': 4.0, 'disinfectant': 1.0, 'were': 1.0, 'our': 1.0, 'pail': 2.0, 'to': 5.0, 'outside': 1.0, 'other': 1.0, 'all': 1.0, 'want': 1.0, 'in': 2.0, 'cylinder': 1.0, 'if': 1.0, 'turn': 1.0, 'i': 4.0, 'thing': 1.0, '2': 2.0, 'most': 1.0, 'bags': 1.0, 'diaper': 7.0, 'of': 1.0, 'the': 8.0, 'wrap': 1.0, 'tight': 1.0, 'weeks': 3.0, 'cousins': 1.0, 'champ': 2.0, 'and': 5.0, 'both': 1.0, 'house': 1.0, 'enough': 1.0, 'theirs': 1.0, 'breastfed': 1.0, 'is': 3.0, 'at': 1.0, 'since': 1.0, 'them': 1.0, 'has': 2.0, 'quit': 1.0, 'diapers': 1.0, 'changes': 1.0, 'gets': 1.0, 'been': 1.0, 'because': 1.0, 'that': 1.0, 'then': 1.0, 'far': 1.0, 'he': 1.0, '8': 1.0, 'down': 2.0, 'old': 1.0, 'task': 1.0, 'know': 1.0, 'easy': 1.0, 'with': 1.0, 'sometimes': 1.0, 'nice': 1.0, 'little': 1.0, 'doesn': 1.0, 'smells': 1.0, 'drop': 1.0, 'genies': 1.0, 'apart': 1.0, 'way': 1.0}
Word element => {'run': 1.0, 'long': 1.0, 'in': 1.0, 'money': 1.0, 'saves': 1.0, 'additional': 1.0, 'are': 1.0, 'the': 2.0, 'pay': 1.0, 'no': 1.0, 'once': 1.0, 'all': 1.0, 'blocks': 1.0, 'easy': 1.0, 'there': 1.0, 'trash': 1.0, 'regular': 1.0, 'use': 2.0, 'can': 1.0, 'for': 1.0, 'love': 1.0, 'bags': 3.0, 'which': 1.0, 'need': 1.0, 'refill': 1.0, 'product': 1.0, 'to': 4.0, 'buy': 1.0, 'i': 1.0, 'and': 2.0, 'do': 1.0, 'it': 1.0, 'this': 2.0, 'unit': 2.0, 'odors': 1.0, 'because': 1.0, 'not': 1.0, 'order': 1.0, 'keep': 1.0, 'operational': 1.0, 'you': 4.0, 's': 1.0}
Word element => {'didnt': 1.0, 'overall': 1.0, 'cant': 1.0, 'one': 1.0, 'bud': 1.0, 'in': 1.0, 'things': 1.0, 'problem': 1.0, 'nips': 1.0, 'each': 1.0, 'disinfectant': 1.0, 'or': 1.0, 'w': 1.0, 'inside': 1.0, 'spray': 1.0, 'bag': 1.0, 'see': 1.0, 'had': 1.0, 'now': 1.0, 'its': 3.0, 'live': 1.0, 'champ': 1.0, 'also': 1.0, 'will': 1.0, 'during': 1.0, 'hadent': 1.0, 'when': 2.0, 'gets': 1.0, 'got': 2.0, 'i': 8.0, 'it': 7.0, 'lysol': 1.0, 'of': 3.0, 'shower': 1.0, 'love': 1.0, 'know': 1.0, 'using': 1.0, 'diaper': 1.0, 'without': 1.0, 'the': 5.0, 'until': 1.0, 'great': 1.0, 'a': 2.0, 'before': 1.0, 'tell': 1.0, 'other': 1.0, 'febreeze': 1.0, 'smell': 1.0, 'and': 3.0, 'from': 1.0, 'started': 1.0, 'those': 1.0, 'hint': 1.0, 'heard': 1.0, 'not': 1.0, 'gift': 2.0, 'to': 3.0, 'as': 3.0, 'all': 2.0, 'change': 2.0, 'but': 3.0, 'pregnant': 1.0, 'definatly': 1.0, 'bad': 1.0, 'my': 3.0, 'choice': 1.0, 'time': 1.0, 'friends': 2.0, 'be': 1.0, 'on': 1.0, 'reviews': 1.0, 'this': 2.0, 'full': 2.0, 'is': 1.0, 'say': 1.0, 'isnt': 1.0, 'that': 4.0}
Word element => {'genie': 1.0, 'over': 1.0, 'plus': 1.0, 'a': 1.0, 'by': 1.0, 'baby': 1.0, 'one': 2.0, 'makes': 1.0, 'your': 1.0, 'pail': 1.0, 'which': 1.0, '3rd': 2.0, 'my': 2.0, 'diaper': 2.0, 'the': 3.0, 'own': 1.0, 'far': 1.0, 'use': 2.0, 'it': 1.0, 'with': 1.0, 'this': 2.0, 'best': 1.0, 'easiest': 1.0, 'you': 1.0, 'and': 1.0, 'bags': 1.0, 'was': 2.0, 'to': 1.0, 'can': 1.0}
Word element => {'highly': 1.0, 'genies': 1.0, '12': 1.0, 'in': 1.0, 'throw': 1.0, 'exposed': 1.0, 'tape': 1.0, 'sure': 1.0, 'just': 1.0, 'good': 1.0, '2': 1.0, 'but': 1.0, 'out': 1.0, 'nothing': 1.0, 'probably': 1.0, 'there': 2.0, 'that': 2.0, 'with': 1.0, 'agree': 1.0, 'plus': 1.0, 'bags': 1.0, 'special': 1.0, 'does': 1.0, 'having': 1.0, 'very': 1.0, 'possible': 1.0, 'gets': 1.0, 'son': 3.0, 'so': 1.0, 'rid': 1.0, 'smelly': 1.0, 'turned': 1.0, 'recommend': 1.0, 'was': 1.0, 'as': 3.0, 'to': 3.0, 'switch': 1.0, 'he': 1.0, 'truly': 1.0, 'it': 4.0, 'now': 2.0, 'older': 1.0, 'became': 1.0, '9': 1.0, 'better': 1.0, 'originally': 1.0, 'onto': 1.0, 'often': 1.0, 'purchase': 1.0, 'another': 1.0, 'my': 3.0, 'after': 1.0, 'solids': 1.0, 'job': 1.0, 'the': 8.0, 'diaper': 6.0, 'i': 7.0, 'you': 1.0, 'when': 3.0, 'decided': 1.0, 'bought': 2.0, 'months': 2.0, 'however': 1.0, 'born': 1.0, 'others': 1.0, 'handling': 1.0, 'and': 6.0, 'genie': 3.0, 'champ': 5.0, 'got': 1.0, 'diapers': 1.0, 'your': 1.0, 'make': 1.0, 'think': 2.0, 'is': 4.0, 'holds': 1.0, 'empty': 1.0, 'try': 1.0, 'much': 1.0, 'broke': 1.0, 'odors': 2.0, 'not': 2.0, 'also': 1.0, 's': 1.0, 'a': 4.0, 'at': 1.0, 'lot': 1.0, 'of': 3.0}
Word element => {'spend': 1.0, 'are': 1.0, 'people': 1.0, 'dont': 1.0, 'this': 1.0, 'odors': 1.0, 'bad': 1.0, 'keeps': 1.0, 'use': 1.0, 'easy': 1.0, 'better': 1.0, 'rich': 1.0, 'have': 1.0, 'tried': 2.0, 'time': 1.0, 'so': 1.0, 'champ': 2.0, 'genie': 1.0, 'which': 1.0, 'know': 1.0, 'on': 2.0, 'sounds': 1.0, 'itself': 1.0, 'stench': 1.0, 'did': 2.0, 'who': 1.0, 'since': 1.0, '1st': 1.0, 'keep': 1.0, 'at': 1.0, 'not': 5.0, 'read': 1.0, 'i': 9.0, 'effort': 1.0, 'especially': 1.0, 'down': 2.0, 'for': 1.0, 'cheap': 1.0, 'expensive': 1.0, 't': 1.0, 'a': 2.0, 'deal': 1.0, 'the': 10.0, 'hmm': 1.0, 'diaper': 1.0, 'is': 2.0, 'say': 1.0, 'more': 1.0, 'all': 2.0, 'to': 3.0, 'with': 1.0, 'buying': 2.0, 'recommend': 1.0, 'was': 1.0, 'didn': 1.0, 'safety': 1.0, 'finding': 1.0, 'pail': 2.0, 'and': 8.0, 'hated': 1.0, 'it': 2.0, 'fell': 1.0, 'but': 1.0, 'can': 1.0, 'quot': 2.0, 'of': 1.0, 'dekor': 2.0, 'plus': 1.0, 'reviews': 1.0, 'had': 1.0, 'thought': 1.0, 'that': 1.0, 'ton': 1.0, 'best': 1.0, 'inexpensive': 1.0, 'however': 1.0, 'highly': 1.0, 'really': 2.0, 'apart': 1.0, 'want': 3.0, 'special': 2.0, 'bags': 2.0}
Word element => {'investment': 1.0, 'handle': 1.0, 'baby': 2.0, 'helping': 1.0, 'enjoys': 1.0, 'year': 1.0, 'bags': 1.0, 'kitchen': 1.0, 'use': 1.0, 'because': 2.0, 'best': 1.0, 'm': 1.0, 'at': 1.0, 'out': 1.0, 'running': 1.0, 'refils': 1.0, 'worry': 1.0, 'for': 1.0, 'love': 1.0, 'reviews': 1.0, 'dont': 1.0, 'this': 2.0, 'full': 1.0, 'are': 1.0, 'pail': 2.0, 'diaper': 2.0, 'the': 7.0, 'likes': 1.0, 'well': 1.0, 'have': 2.0, 'born': 1.0, 'flip': 1.0, 'didnt': 1.0, 'my': 4.0, 'tall': 1.0, 'and': 3.0, 'needing': 1.0, 'disgusting': 1.0, 'me': 2.0, 'son': 1.0, 'open': 1.0, 'forgetting': 1.0, 'fresh': 1.0, 'now': 1.0, 'was': 2.0, 'to': 4.0, 'is': 2.0, 'can': 1.0, 'change': 2.0, '3': 3.0, 'i': 5.0, 'old': 2.0, 'after': 2.0, 'reading': 1.0, 'there': 1.0, 'decided': 1.0, 'months': 1.0, 'he': 2.0, 'with': 2.0, 'its': 1.0, 'only': 1.0, 'it': 2.0, 'a': 3.0, 'go': 1.0, 'champ': 1.0, 'about': 2.0, 'no': 1.0, 'tell': 1.0, 'time': 1.0, 'when': 2.0, 'you': 2.0, 'smells': 2.0, 'let': 1.0, 'or': 1.0, 'bag': 2.0, 'that': 1.0}
Word element => {'off': 1.0, 'lid': 1.0, 'good': 1.0, 'better': 1.0, 'are': 1.0, '3': 1.0, 'any': 2.0, 'and': 2.0, 'get': 1.0, 'flip': 1.0, 'jammed': 1.0, 'stinks': 1.0, 'week': 1.0, 'diapers': 1.0, 'lysol': 1.0, '6': 1.0, 'it': 2.0, 'only': 1.0, 'buying': 1.0, 'with': 1.0, 'this': 1.0, 'ours': 1.0, 'bag': 1.0, 'diaper': 1.0, 'we': 2.0, 'hardly': 1.0, 'a': 2.0, 'look': 1.0, 'garbage': 2.0, '2': 1.0, 'can': 2.0, 'the': 3.0, 'without': 1.0, 'for': 1.0, 'one': 1.0, 'like': 1.0, 'pail': 1.0, 'bucks': 1.0, 'want': 1.0, 'same': 1.0, 'headache': 1.0, 'thing': 1.0, 'holds': 1.0, 'is': 1.0, 'times': 1.0, 'idea': 1.0, 'you': 2.0, 'use': 1.0}
Word element => {'genie': 1.0, 'better': 1.0, 'still': 1.0, 'its': 1.0, 'they': 1.0, 'bags': 2.0, 'garbage': 1.0, 'you': 1.0, 'odor': 1.0, 'perfectly': 1.0, 'll': 1.0, 'really': 1.0, 'that': 1.0, 'to': 2.0, 'our': 2.0, 'use': 3.0, 'got': 2.0, 'of': 2.0, 'groceries': 1.0, 'weeks': 1.0, 'this': 2.0, 'first': 1.0, 'fell': 1.0, 'it': 1.0, 'actually': 1.0, 'supposed': 1.0, 'for': 1.0, 'hang': 1.0, 'one': 2.0, 'regular': 1.0, 'in': 3.0, 'assume': 1.0, 'keep': 2.0, 'since': 1.0, 'and': 2.0, 'probably': 2.0, 'get': 2.0, 'liner': 1.0, 'within': 1.0, 'can': 1.0, 'but': 1.0, 'stickies': 1.0, 'deal': 1.0, 'the': 6.0, 'diaper': 1.0, 'we': 4.0, 'a': 2.0, 't': 1.0, 'i': 1.0, 'two': 1.0, 'newborn': 1.0, 'out': 1.0, 'than': 1.0, 'because': 2.0, 'is': 1.0, 'caught': 1.0, 'odors': 1.0, 'on': 2.0, 'pail': 1.0, 'doesn': 1.0, 'anymore': 1.0, 'have': 1.0, 'new': 1.0}
Word element => {'require': 1.0, 'packages': 1.0, 'loved': 1.0, 'didn': 1.0, 'plastic': 1.0, 'convienient': 1.0, 'it': 3.0, 'that': 2.0, 'i': 1.0, 'recieved': 1.0, 'pail': 1.0, 'wonderful': 1.0, 'use': 2.0, 'refills': 1.0, 'the': 2.0, 's': 3.0, 'a': 2.0, 't': 3.0, 'gift': 1.0, 'don': 1.0, 'price': 1.0, 'and': 2.0, 'specifc': 1.0, 'know': 1.0, 'garbage': 1.0, 'small': 1.0, 'bag': 1.0, 'easy': 1.0, 'as': 1.0, 'any': 2.0, 'to': 2.0, 'one': 1.0, 'handle': 1.0, 'product': 1.0, 'for': 1.0, 'minor': 1.0, 'detail': 1.0, 'more': 1.0, 'is': 1.0, 'you': 3.0, 'idea': 1.0, 'when': 1.0, 'this': 2.0, 'full': 1.0, 'until': 1.0, 'pay': 1.0, 'turn': 1.0, 'can': 2.0, 'but': 1.0}
Word element => {'champ': 1.0, 'money': 1.0, 'a': 1.0, 'wouldve': 1.0, 'diaper': 2.0, 'the': 1.0, 'been': 1.0, 'didnt': 1.0, 'one': 1.0, 'all': 1.0, 'recommend': 1.0, 'easy': 1.0, 'glad': 2.0, 'bags': 1.0, 'get': 1.0, 'and': 1.0, 'use': 1.0, 'thumbs': 1.0, 'waste': 1.0, 'on': 1.0, 'uses': 1.0, 'genie': 1.0, 'i': 5.0, 'bought': 1.0, 'am': 2.0, 'garbage': 1.0, 'so': 1.0, 'this': 3.0, 'it': 3.0, 'of': 1.0, 'up': 1.0, 'there': 1.0, 'regular': 1.0, 'is': 2.0, 'no': 1.0, 'at': 1.0, 'everyone': 1.0, 'odor': 1.0, 'to': 2.0}
Word element => {'well': 1.0, 'diapers': 1.0, 'just': 1.0, 'comes': 1.0, 'give': 1.0, '4': 1.0, 'i': 1.0, 'reason': 1.0, 'that': 2.0, 'dirty': 2.0, 'full': 1.0, 'be': 1.0, 'it': 3.0, 'diaper': 2.0, 'refillable': 1.0, 'genie': 1.0, 'doesn': 2.0, 'inside': 1.0, 'but': 1.0, 'capacity': 1.0, 'inexpensive': 1.0, 'however': 1.0, 'so': 2.0, 'd': 1.0, 'good': 2.0, 'the': 9.0, 'job': 1.0, 'because': 1.0, 'easy': 2.0, 'refills': 1.0, 'use': 2.0, 'like': 1.0, 'bags': 1.0, 'and': 2.0, 'only': 1.0, 'its': 3.0, 'do': 1.0, 'spray': 1.0, 'of': 3.0, 'lysol': 1.0, 'don': 1.0, 'up': 1.0, 'when': 1.0, 'you': 1.0, 'hiding': 1.0, 'mask': 1.0, 'smell': 3.0, 's': 1.0, 't': 3.0, 'a': 3.0, 'we': 2.0, 'with': 1.0, 'disenfectant': 1.0, 'if': 1.0, 'stars': 1.0, 'expensive': 1.0, 'product': 1.0, 'for': 1.0, 'need': 1.0, 'waited': 1.0, 'bag': 1.0, 'fill': 1.0, 'to': 5.0, 'our': 1.0, 'room': 1.0, 'would': 1.0}
Word element => {'no': 1.0, 'few': 1.0, 'nail': 1.0, 'broken': 1.0, 'lever': 1.0, 'push': 1.0, 'open': 1.0, 'prob': 1.0, 'that': 1.0, 'stuck': 1.0, 'biggie': 1.0, 'kind': 2.0, 'get': 1.0, 'occasionally': 1.0, 'diapers': 1.0, 'getting': 2.0, 'keeps': 1.0, 'home': 1.0, 'of': 3.0, 'floor': 1.0, 'odor': 1.0, 'hand': 1.0, 'if': 1.0, 'keep': 1.0, 'diapersyou': 1.0, 'with': 1.0, 'annoying': 1.0, 'it': 5.0, 'use': 1.0, 'the': 5.0, 'diaper': 3.0, 'is': 4.0, 'more': 1.0, 'each': 1.0, 'drop': 1.0, 'couple': 2.0, 'a': 5.0, 'usually': 1.0, 'than': 1.0, 'one': 2.0, 'my': 1.0, 'often': 1.0, 'from': 1.0, 'bags': 1.0, 'only': 1.0, 'works': 1.0, 'down': 1.0, 'before': 1.0, 'well': 1.0, 'easier': 1.0, 'in': 1.0, 'will': 1.0, 'also': 2.0, 'really': 1.0, 'but': 1.0, 'can': 2.0, 'change': 2.0, 'i': 4.0, 'gienie': 1.0, 'or': 1.0, 'poopy': 1.0, 'bag': 1.0, 'need': 1.0, 'difficult': 1.0, 'gets': 1.0, 'and': 3.0, 'too': 2.0, 'unlatch': 1.0, 'this': 1.0, 'found': 2.0, 'full': 2.0, 'when': 2.0, 'you': 2.0, 'times': 2.0, 'week': 1.0, 'dogs': 1.0, 'dispose': 1.0, 'have': 4.0, 'to': 5.0, 'any': 1.0, 'on': 3.0}
Word element => {'d': 1.0, 'i': 1.0, 'changed': 1.0, 'anyone': 1.0, 'be': 1.0, 'to': 2.0, 'big': 1.0, 'great': 1.0, 'ghosts': 1.0, 'trap': 1.0, 'put': 1.0, 'they': 1.0, 'know': 1.0, 'about': 1.0, 'thing': 1.0, 'week': 1.0, 'ghost': 1.0, 'kind': 2.0, 'do': 1.0, 'advise': 1.0, 'and': 3.0, 'away': 1.0, 'you': 3.0, 'way': 1.0, 'release': 1.0, 'this': 2.0, 'standalone': 1.0, 'should': 1.0, 'but': 1.0, 'diapers': 1.0, 'for': 1.0, 'where': 1.0, 'product': 2.0, 'buy': 1.0, 'unlike': 1.0, 'keeping': 1.0, 'out': 2.0, 'is': 2.0, 'ghostbusters': 1.0, 'it': 7.0, 'truly': 1.0, 'bags': 1.0, 'already': 1.0, 'others': 1.0, 'such': 1.0, 'garbage': 1.0, 'need': 2.0, 'refills': 1.0, 'made': 1.0, 'jail': 1.0, 'champ': 1.0, 'genie': 1.0, 'reminds': 1.0, 'have': 1.0, 'smell': 1.0, 'will': 1.0, 'also': 2.0, 'in': 3.0, 'does': 1.0, 'very': 1.0, 'good': 1.0, 'the': 7.0, 'job': 1.0, 'me': 1.0, 'those': 1.0, 'not': 2.0, 'stink': 1.0, 'of': 6.0, 'once': 1.0, 'well': 2.0, 'has': 1.0, 'came': 1.0, 'that': 1.0, 's': 3.0, 'a': 4.0, 'we': 1.0, 'notice': 1.0}
Word element => {'never': 1.0, 'day': 1.0, 'buy': 1.0, 'closed': 1.0, 'stays': 1.0, 'kinda': 1.0, 'had': 1.0, 'now': 1.0, 'genie': 1.0, 'replacing': 1.0, 'one': 1.0, 'he': 1.0, 'any': 1.0, 'probably': 1.0, 'your': 1.0, 'training': 1.0, 'good': 1.0, 'plan': 1.0, 'turns': 1.0, 'unless': 1.0, 'entire': 1.0, 'stinky': 2.0, 'normal': 1.0, 'talking': 2.0, 'but': 2.0, 'disinfected': 1.0, 'time': 1.0, 'proof': 1.0, 'comes': 1.0, 'stupid': 1.0, 'not': 2.0, 'extra': 1.0, 'them': 1.0, 'before': 2.0, 'single': 1.0, 'if': 1.0, 'every': 2.0, 'started': 1.0, 'finally': 1.0, 'days': 2.0, 'again': 1.0, 'backyard': 1.0, 'm': 3.0, 'in': 6.0, 'aired': 1.0, 'say': 1.0, 'much': 2.0, 'emptied': 2.0, 'combined': 1.0, 'for': 5.0, 'potty': 1.0, 'champ': 3.0, 'haven': 1.0, 'reek': 1.0, 'find': 1.0, 'while': 1.0, 'nothing': 2.0, 'out': 2.0, 'understand': 2.0, 'a': 6.0, 'ziplock': 1.0, 'maybe': 1.0, 's': 3.0, 'it': 18.0, 'everyone': 1.0, 'was': 2.0, 'pretty': 1.0, 'to': 9.0, 'luck': 1.0, 'our': 3.0, 'sleep': 1.0, 'who': 2.0, 'is': 2.0, 'at': 1.0, 'those': 1.0, 'there': 1.0, 'give': 1.0, 'bleach': 1.0, 'then': 1.0, 'we': 9.0, 'reviews': 1.0, 't': 4.0, 'rest': 1.0, 'you': 9.0, 'when': 5.0, 'champs': 1.0, 'bought': 2.0, 'money': 1.0, 've': 2.0, 'putting': 2.0, 'i': 9.0, 'us': 1.0, 'born': 1.0, 'have': 5.0, 'child': 1.0, 'year': 2.0, 'foul': 1.0, 'scrubbed': 1.0, 'just': 3.0, 'why': 1.0, 'longer': 1.0, 'of': 6.0, 'the': 13.0, 'and': 7.0, 'stinks': 1.0, 'helped': 1.0, 'all': 3.0, 'seperate': 2.0, 'll': 4.0, 'right': 1.0, 'up': 1.0, 'takes': 1.0, 'start': 1.0, 'don': 2.0, 'spend': 1.0, 'two': 2.0, 'little': 2.0, 'nice': 1.0, 'think': 1.0, 'son': 1.0, 'height': 1.0, 'years': 1.0, 'no': 2.0, 'ours': 1.0, 'constantly': 1.0, 'can': 1.0, 'so': 4.0, 'bags': 4.0, 'yours': 2.0, 'diaper': 9.0, 'bend': 1.0, 'really': 1.0, 'easy': 1.0, 'use': 1.0, 'about': 1.0, 'though': 1.0, 'world': 1.0, 'or': 1.0, 'even': 1.0, 'escape': 1.0, 'will': 2.0, 'are': 1.0, 'diapers': 1.0, 'first': 2.0, 'hated': 1.0, 'bad': 2.0, 'problems': 1.0, 'that': 4.0, 'want': 1.0, 'neighbors': 1.0, 'house': 1.0, 'loved': 1.0, 'enough': 1.0, 'smell': 6.0, 'used': 2.0, 'on': 2.0, 'long': 1.0, 'end': 2.0, 'read': 1.0, 'wait': 1.0, 'with': 2.0, 'open': 1.0, 'over': 2.0, 'happen': 1.0, 'daily': 1.0}
Word element => {'very': 1.0, 'told': 1.0, 'all': 1.0, 'goodies': 1.0, 'who': 1.0, 'dogs': 1.0, 'safe': 1.0, 'contents': 1.0, 'keeping': 1.0, 'feature': 1.0, 'seen': 1.0, 'can': 1.0, 'pop': 1.0, 'immediately': 1.0, 'lid': 1.0, 'fresh': 1.0, 'fingers': 1.0, 'poking': 1.0, 'hazardous': 1.0, 'without': 1.0, 'inside': 1.0, 'arc': 1.0, 'degree': 1.0, 'any': 1.0, 'probably': 1.0, 'another': 1.0, 'not': 2.0, 'and': 3.0, 'for': 2.0, 'passes': 1.0, 'yet': 1.0, 'bottom': 1.0, 'trash': 2.0, 'normal': 1.0, 'fairly': 1.0, 'are': 1.0, 'poo': 2.0, 'odor': 1.0, 'where': 1.0, 're': 1.0, 'trade': 1.0, 'think': 1.0, 'on': 2.0, 'locked': 1.0, 'smell': 1.0, 'stinkiness': 1.0, 'rude': 1.0, 'vicinity': 1.0, 'the': 18.0, 'of': 8.0, 'there': 1.0, 'expendables': 1.0, 'complaints': 1.0, 'you': 1.0, 'dealing': 1.0, 'a': 6.0, 'seems': 1.0, 'off': 2.0, 'see': 2.0, 'braun': 1.0, 'unit': 3.0, 'well': 1.0, 'knock': 1.0, 'i': 2.0, 'ability': 1.0, 'be': 3.0, 'gonna': 1.0, 'bag': 3.0, 'easy': 1.0, 'bit': 1.0, 'latch': 1.0, 'rotated': 1.0, 'sealing': 1.0, 'relies': 1.0, 'dark': 1.0, 'use': 1.0, '180': 1.0, 'but': 1.0, 'over': 1.0, 'open': 1.0, 'work': 2.0, 'this': 2.0, 'fair': 1.0, 'to': 6.0, 'regarding': 1.0, 'pretty': 1.0, 'cleaning': 1.0, 'seal': 2.0, 'between': 1.0, 'existent': 1.0, 'it': 2.0, 'fell': 1.0, 'swoop': 1.0, 'cartridges': 1.0, 'through': 2.0, 'blue': 1.0, 'plastic': 1.0, 'system': 1.0, 'holder': 1.0, 'design': 1.0, 'with': 1.0, 'funnel': 1.0, 'underside': 1.0, 'installation': 1.0, 'hermetic': 1.0, 'top': 1.0, 'is': 5.0, 'handle': 1.0, 'portion': 1.0, 'if': 1.0, 'etc': 1.0, 'short': 1.0, 'somewhat': 1.0, 'tight': 1.0, 'would': 1.0, 'from': 1.0, 'shaver': 1.0, 'lead': 1.0, 'piston': 1.0, 'poor': 1.0, 'into': 2.0, 'non': 1.0, 'said': 1.0, 'in': 2.0, 'clever': 1.0, 'gravity': 1.0, 'that': 3.0, 'deposit': 1.0, 'bags': 1.0, 'as': 2.0, 'diaper': 1.0, 'one': 1.0}
Word element => {'support': 1.0, 'enough': 1.0, 'side': 1.0, 'larger': 1.0, 'night': 1.0, 'tosses': 1.0, 'problem': 1.0, 'be': 1.0, 'how': 1.0, 'see': 1.0, 'complaints': 1.0, 'very': 1.0, 'is': 1.0, 'back': 2.0, 'from': 1.0, 'me': 1.0, 'or': 2.0, 'discomfort': 1.0, 'may': 1.0, 'my': 4.0, 'was': 1.0, 'any': 1.0, 'sleep': 1.0, 'to': 3.0, 'can': 1.0, 'pregnant': 1.0, 'have': 3.0, 'on': 4.0, '5': 1.0, 'under': 1.0, 'keeps': 1.0, 'woken': 1.0, 'someone': 2.0, 'am': 2.0, 'ever': 1.0, 'however': 1.0, 'cramping': 1.0, 'i': 9.0, 'months': 1.0, 'bought': 1.0, 'pillow': 4.0, 'for': 2.0, 'product': 2.0, 'and': 5.0, 'rolling': 1.0, 'using': 1.0, 'sleeping': 2.0, 'with': 3.0, 'pain': 1.0, 'this': 4.0, 'turns': 1.0, 'the': 2.0, 'ligaments': 1.0, 'it': 4.0, 'month': 1.0, 'regular': 2.0, 'been': 2.0, 'at': 1.0, 'who': 1.0, 'since': 2.0, 'petite': 1.0, 'had': 1.0, 'purchased': 1.0, 'comfortable': 1.0, 'great': 1.0, 'until': 1.0, 'feel': 1.0, 'so': 1.0, 'always': 1.0, 'set': 1.0, 'don': 1.0, 'up': 2.0, 'having': 1.0, 'belly': 2.0, 'lift': 1.0, 'ago': 1.0, 'a': 3.0, 't': 2.0, 'could': 2.0, 'round': 1.0, 'haven': 1.0}
Word element => {'long': 1.0, 'd': 1.0, 'use': 1.0, 'back': 2.0, 'will': 1.0, 'being': 1.0, 'belong': 1.0, 'tough': 1.0, 'it': 4.0, 'with': 1.0, 'amp': 1.0, 'where': 1.0, 'love': 1.0, 'stars': 1.0, 'gave': 1.0, 'that': 1.0, 'more': 1.0, 'is': 1.0, 'side': 1.0, 'on': 1.0, 'wish': 1.0, 'sleeper': 1.0, 'this': 1.0, 'pain': 1.0, 'pillow': 2.0, 'bought': 2.0, 'me': 1.0, 'only': 1.0, 'do': 1.0, 'just': 1.0, 'because': 1.0, 'i': 8.0, 'finding': 1.0, 'so': 1.0, 'ago': 1.0, 'a': 1.0, 't': 1.0, 'able': 1.0, 'but': 1.0, 'aren': 1.0, 'four': 1.0, 'have': 1.0, 'to': 1.0, 'still': 1.0, 'keeps': 1.0, 'lots': 1.0, 'of': 1.0, 'my': 1.0, 'hopefully': 1.0, 'am': 1.0, 'when': 1.0, 'you': 1.0, 'lose': 1.0}
Word element => {'their': 1.0, 'having': 1.0, 'who': 1.0, 'recommend': 1.0, 'would': 1.0, 'no': 1.0, 'almost': 1.0, 'had': 1.0, 'using': 1.0, 'started': 1.0, 'pain': 3.0, 'way': 1.0, 'staying': 1.0, 'found': 1.0, 'this': 5.0, 'sleeper': 2.0, 'picture': 1.0, 'a': 4.0, 't': 2.0, 'ago': 1.0, 'it': 4.0, 'nights': 2.0, 'normally': 2.0, 'been': 2.0, 'although': 1.0, 'was': 2.0, '4th': 1.0, 'so': 2.0, 'as': 2.0, 'wanted': 1.0, 'yet': 1.0, 'behind': 2.0, 'or': 2.0, 'couple': 2.0, 'wasn': 2.0, 'anyone': 1.0, 'and': 5.0, 'similar': 1.0, 'trouble': 1.0, 'get': 2.0, 'sure': 1.0, 'kind': 1.0, 'big': 1.0, 'comfortable': 2.0, 'sleeping': 3.0, 'suggested': 1.0, 'used': 2.0, 'but': 2.0, 'shoulder': 1.0, 'past': 1.0, 'back': 8.0, 'extremely': 1.0, 'tried': 2.0, 'i': 19.0, 'two': 1.0, 'could': 1.0, 'adding': 1.0, 'just': 3.0, 'by': 1.0, 'my': 8.0, 'me': 1.0, 'bought': 1.0, 'pillow': 3.0, 'try': 1.0, 'put': 1.0, 'much': 1.0, 'supposed': 1.0, 'for': 1.0, 'then': 1.0, 'took': 1.0, 'the': 8.0, 'of': 3.0, 'larger': 1.0, 'on': 4.0, 'wedges': 1.0, 'what': 1.0, 'side': 3.0, 'made': 1.0, 'extra': 1.0, 'an': 1.0, 'ever': 2.0, 'month': 2.0, 'under': 1.0, 'head': 1.0, 'since': 3.0, 'have': 2.0, 'in': 1.0, 'm': 4.0, 'wedge': 2.0, 'think': 1.0, 'better': 1.0, 'configuration': 1.0, 'is': 3.0, 'that': 2.0, 'because': 1.0, 'laid': 1.0, 'am': 1.0, 'feels': 1.0, 'with': 3.0, 'also': 1.0, 've': 1.0, 'not': 1.0, 'waking': 2.0, 'up': 2.0, 'to': 7.0, 'pretty': 1.0, 'first': 1.0, 'working': 1.0, 'bad': 1.0, 'lower': 1.0}
Word element => {'nothing': 1.0, 'better': 1.0, 'week': 1.0, 'then': 1.0, 'per': 1.0, '1': 1.0, 'only': 1.0, 'use': 1.0, 'now': 1.0, 'and': 1.0, 'doesn': 1.0, 'back': 4.0, '2': 2.0, 'but': 2.0, 'price': 1.0, 'best': 1.0, 'from': 1.0, 'at': 1.0, 'product': 1.0, 'for': 3.0, 'about': 2.0, 'belly': 1.0, 'the': 3.0, 'minimal': 1.0, 'is': 2.0, 'really': 1.0, 'left': 1.0, 'side': 1.0, 'pillow': 1.0, 'growing': 1.0, 'to': 3.0, 'had': 1.0, 'my': 5.0, 'helps': 1.0, 'support': 3.0, '3': 1.0, 'on': 1.0, 'months': 1.0, 'bought': 1.0, 'aching': 1.0, 'cushion': 1.0, 'i': 3.0, 'putting': 1.0, 'stop': 1.0, 'me': 1.0, 'rolling': 1.0, 'weight': 1.0, 'nights': 1.0, 'it': 4.0, 'nor': 1.0, 'provide': 1.0, 'tired': 1.0, 't': 1.0, 'a': 1.0, 'of': 2.0, 'lean': 1.0, 'over': 1.0, 'up': 1.0, 'against': 1.0, 'when': 1.0, 'am': 1.0, 'this': 2.0, 'full': 1.0, 'have': 1.0}
Word element => {'though': 1.0, 'early': 1.0, 'very': 1.0, 'buy': 1.0, 'be': 1.0, 'having': 1.0, 'sleeping': 2.0, 'side': 1.0, 'used': 1.0, 'already': 1.0, 'was': 2.0, 'wanted': 1.0, 'purchased': 1.0, 'had': 1.0, 'by': 3.0, 'i': 7.0, 'guess': 1.0, 'on': 2.0, 'time': 2.0, 'pain': 1.0, 'this': 2.0, 'with': 1.0, 'discomfort': 1.0, 'of': 1.0, 'around': 1.0, 'the': 3.0, 'my': 2.0, 'might': 1.0, 'eighth': 1.0, 'it': 4.0, 'month': 1.0, 'and': 2.0, 'were': 1.0, 'that': 1.0, 'not': 1.0, 'useful': 1.0, 'helped': 2.0, 'actually': 1.0, 'product': 1.0, 'if': 2.0, 'move': 2.0, 'at': 1.0, 'to': 4.0, 'all': 2.0, 'have': 1.0, 'wrestle': 1.0, 'nothing': 1.0, 'still': 1.0, 'you': 1.0, 'when': 1.0, 'hurt': 1.0, 'problems': 1.0, 'point': 1.0, 'basic': 1.0, 'would': 1.0}
Word element => {'great': 1.0, 'buy': 1.0, 'makes': 1.0, 'sooner': 1.0, 'this': 2.0, 'with': 1.0, 'first': 1.0, 'he': 1.0, 'regret': 1.0, 'must': 1.0, 'wedge': 1.0, 'head': 1.0, 'very': 1.0, 'deal': 1.0, 'the': 4.0, 'in': 1.0, 'complete': 1.0, 'body': 1.0, 'purchasing': 1.0, 'not': 1.0, 'difference': 2.0, 'and': 2.0, 'pregnancy': 1.0, 'slept': 1.0, 'ill': 1.0, 'diffently': 1.0, 'can': 1.0, 'need': 1.0, 'after': 1.0, 'night': 1.0, 'baby': 2.0, 'another': 1.0, 'is': 2.0, 'comes': 1.0, 'our': 2.0, 'sleep': 2.0, 'to': 1.0, 'a': 4.0, 'we': 1.0, 's': 1.0, 'wonderful': 1.0, 'use': 2.0, 'i': 3.0, 'prop': 1.0, 'you': 1.0, 'when': 1.0, 'up': 1.0, 'felt': 1.0, 'it': 2.0, 'truly': 1.0, 'she': 1.0}
Word element => {'recommend': 1.0, 'highly': 1.0, 'other': 1.0, 'are': 1.0, 'sheets': 1.0, 'many': 1.0, 'not': 1.0, 'places': 1.0, 'in': 2.0, 'bunch': 1.0, 'made': 1.0, 'together': 1.0, 'lay': 1.0, 'close': 1.0, 'were': 1.0, 'pieces': 1.0, 'than': 1.0, 'because': 1.0, 'however': 1.0, 'recently': 1.0, 'elastic': 1.0, 'with': 1.0, 'sewn': 2.0, 'mine': 1.0, 'never': 1.0, 'dangerous': 1.0, 'snaps': 1.0, 'stuck': 1.0, 'did': 1.0, 'agree': 1.0, 'getting': 1.0, 'of': 2.0, 'months': 1.0, 'year': 1.0, 'under': 1.0, 'son': 1.0, 'for': 3.0, 'way': 1.0, 'parents': 1.0, 'sheet': 6.0, 'my': 1.0, 'too': 1.0, 'and': 4.0, 'while': 1.0, 'matter': 1.0, '2': 1.0, 'the': 8.0, 'diaper': 1.0, 'now': 1.0, 'is': 3.0, '18': 1.0, 'item': 1.0, 'wonderful': 1.0, 'this': 6.0, 'problem': 1.0, 'fitted': 1.0, 'flat': 1.0, 'have': 6.0, 'to': 1.0, 'all': 1.0, 'that': 3.0, 'babies': 1.0, 'changing': 1.0, 'been': 1.0, 'crib': 3.0, 'noticed': 1.0, 'old': 1.0, 'i': 8.0, 'who': 1.0, 'up': 1.0, 'over': 1.0, 'don': 1.0, 'exchange': 1.0, 'them': 1.0, 'baby': 1.0, 'patience': 1.0, 'amp': 1.0, 'several': 1.0, 'about': 1.0, 'no': 1.0, 'warnings': 1.0, 'constantly': 1.0, 'when': 1.0, 't': 1.0, 'a': 5.0, 's': 1.0, 'we': 2.0, 'which': 1.0, 'using': 1.0, 'know': 1.0, 'do': 1.0, 'happens': 1.0, 'had': 1.0, 'leaks': 1.0, 'what': 1.0, 'very': 1.0, 'read': 1.0}
Word element => {'no': 1.0, 'in': 1.0, 'wrapped': 1.0, 'on': 1.0, 'put': 1.0, 'more': 1.0, 'little': 1.0, 'mattress': 1.0, 'the': 2.0, 'these': 1.0, 'can': 1.0, 'but': 1.0, '2': 1.0, 'who': 1.0, 'person': 1.0, 'much': 2.0, 'what': 1.0, 'sorry': 1.0, 'they': 3.0, 'got': 1.0, 'feel': 1.0, 'sheets': 2.0, 'matter': 1.0, 'wife': 1.0, 'stand': 1.0, 'washing': 1.0, 'of': 2.0, 'over': 1.0, 'up': 3.0, 'don': 1.0, 'them': 2.0, 'cases': 1.0, 'made': 1.0, 't': 2.0, 'we': 1.0, 'a': 1.0, 'entire': 1.0, 'bought': 1.0, 'trouble': 1.0, 'gift': 1.0, 'son': 1.0, 'still': 1.0, 'get': 1.0, 'kind': 1.0, 'safer': 1.0, 'and': 4.0, 'i': 2.0, 're': 2.0, 'my': 1.0, 'dangerous': 1.0, 'to': 2.0, 'any': 1.0, 'as': 1.0, 'our': 2.0, 'gave': 1.0, 'that': 2.0, 'finally': 1.0, 'pillow': 1.0, 'own': 1.0, 'are': 1.0, 'like': 1.0, 'larger': 1.0, 'for': 1.0, 'fit': 1.0}
Word element => {'removed': 1.0, 'issue': 1.0, 'realized': 1.0, 'until': 1.0, 'play': 1.0, 'n': 1.0, 'his': 3.0, 'from': 1.0, 'trouble': 1.0, 't': 1.0, 'wasn': 1.0, 'house': 2.0, 'air': 1.0, 'rails': 1.0, 'loose': 1.0, 'elastic': 2.0, 'little': 1.0, 'fits': 1.0, 'size': 1.0, 'content': 1.0, 'crib': 7.0, 'have': 3.0, 'snug': 1.0, 'just': 1.0, 'screaming': 1.0, 'not': 3.0, 'mattress': 1.0, 'this': 4.0, 'does': 1.0, 'pack': 1.0, 'standard': 2.0, 'find': 1.0, 'chew': 1.0, 'laying': 1.0, 'my': 2.0, 'reasons': 1.0, 'multiple': 1.0, 'be': 4.0, 'product': 2.0, 'which': 1.0, 'as': 2.0, 'body': 1.0, 'anything': 1.0, 'him': 1.0, 'it': 7.0, 'sweating': 1.0, 'loops': 1.0, 'however': 2.0, 'our': 2.0, 'in': 7.0, 'to': 6.0, 'high': 1.0, 'pieces': 1.0, 'attach': 2.0, 'too': 1.0, 'lives': 1.0, 'easier': 1.0, 'hot': 3.0, 'make': 1.0, 'on': 3.0, 'especially': 1.0, 'general': 1.0, 'do': 1.0, 'changes': 1.0, 'middle': 1.0, 'the': 9.0, 'of': 2.0, 'i': 3.0, 'baby': 2.0, 'a': 3.0, 'funny': 1.0, 's': 4.0, 'return': 1.0, 'than': 1.0, 'way': 2.0, 'correctly': 1.0, 'so': 3.0, 'perfectly': 1.0, 'soon': 1.0, 'there': 1.0, 'first': 1.0, 'are': 1.0, 'layer': 1.0, 'because': 2.0, 'that': 2.0, 'and': 1.0, 'across': 1.0, 'or': 1.0, 'stretch': 1.0, 'very': 1.0, 'leaving': 1.0, 'hopes': 1.0, 'lumps': 1.0, 'for': 5.0, 'fabric': 1.0, 'appropriate': 1.0, 'less': 1.0, 'second': 1.0, 'extremely': 1.0, 'he': 3.0, 'if': 1.0, 'night': 1.0, 'you': 1.0, 'had': 3.0, 'warm': 1.0, 'could': 2.0, 'will': 1.0, 'minutes': 2.0, 'was': 3.0, 'thing': 1.0, 'weeks': 1.0, 'properly': 1.0, 'either': 2.0, 'boy': 1.0, 'would': 1.0, 'five': 1.0, 'moving': 1.0, 'fine': 1.0, 'we': 4.0, 'then': 1.0, 'sleep': 1.0, 'central': 1.0}
Word element => {'pilling': 1.0, 'some': 1.0, 'had': 1.0, 'still': 1.0, 'second': 1.0, 'not': 1.0, 'first': 1.0, 'with': 2.0, 'or': 1.0, 'followed': 1.0, 'immediately': 1.0, 'sort': 1.0, 'case': 1.0, 'sheet': 5.0, 'wash': 1.0, 'up': 1.0, 'nighttime': 1.0, 'is': 1.0, 'protector': 1.0, 'ultimate': 3.0, 'have': 1.0, 'actually': 1.0, 'love': 1.0, 'one': 1.0, 'the': 2.0, 'washing': 1.0, 'deducted': 1.0, 'layers': 2.0, 'accidents': 1.0, 'of': 4.0, 'always': 1.0, 'then': 1.0, 'off': 1.0, 'pad': 1.0, 'since': 1.0, 'keep': 1.0, 'several': 1.0, 'on': 1.0, 'soft': 1.0, 'this': 1.0, 'mattress': 3.0, 'in': 1.0, 'directions': 1.0, 'bad': 1.0, 'crib': 4.0, 'i': 1.0, 'but': 1.0, 'can': 1.0, 'just': 1.0, 'pull': 1.0, 'ready': 1.0, 'we': 1.0, 'go': 1.0, 'another': 1.0, 'illness': 1.0, 'b': 1.0, 'and': 1.0, 'protected': 1.0, 'star': 1.0, 'balled': 1.0, 'both': 1.0, 'c': 1.0, 'as': 1.0, 'any': 1.0, 'to': 1.0, 'our': 1.0, 'sheets': 1.0}
Word element => {'fabric': 1.0, 'rough': 1.0, 'little': 1.0, 'seems': 1.0, 'material': 1.0, 'is': 1.0, 'dirty': 1.0, 'immediately': 1.0, 'out': 1.0, 'taking': 1.0, 'way': 1.0, 'in': 1.0, 'gets': 1.0, 'one': 1.0, 'mobile': 1.0, 'have': 3.0, 'given': 1.0, 'esp': 1.0, 'better': 1.0, 'the': 8.0, 'these': 2.0, 'than': 1.0, 'having': 1.0, 'and': 2.0, 'crib': 5.0, 'were': 1.0, 'easier': 1.0, 'it': 3.0, 'daily': 1.0, 'soft': 1.0, 'mattress': 1.0, 'this': 1.0, 'never': 1.0, 'of': 3.0, 'unsnap': 1.0, 'wash': 1.0, 'don': 1.0, 'replacing': 1.0, 'over': 1.0, '3': 1.0, 'your': 1.0, 'on': 1.0, 'change': 1.0, 'but': 2.0, 'weird': 1.0, 'i': 4.0, 'con': 1.0, 'lifesaver': 1.0, 'kind': 1.0, 'that': 2.0, 'changing': 1.0, 'as': 2.0, 'to': 4.0, 'putting': 1.0, 'be': 1.0, 't': 1.0, 's': 2.0, 'a': 5.0, 'after': 2.0, 'my': 1.0, 'daughter': 1.0, 'started': 1.0, 'only': 1.0, 'poop': 1.0, 'not': 3.0, 'like': 1.0, 'cover': 1.0, 'snap': 1.0, 'unfortunately': 1.0, 'leaking': 1.0, 'was': 1.0, 'crazy': 1.0, 'overnight': 1.0, 'got': 2.0, 'fun': 1.0, 'super': 1.0, 'so': 1.0, 'sheet': 5.0, 'bit': 1.0, 'fast': 1.0}
Word element => {'future': 1.0, 'again': 1.0, 'using': 1.0, 'be': 1.0, 'crib': 8.0, 'probably': 1.0, 'did': 1.0, 'while': 1.0, 'water': 1.0, 'case': 1.0, 'just': 2.0, 'my': 4.0, 'on': 7.0, 'it': 1.0, 'get': 1.0, 'first': 1.0, 'are': 2.0, 'blanket': 1.0, 'baby': 5.0, 'them': 1.0, 'backing': 1.0, 'our': 1.0, 'all': 2.0, 'as': 1.0, 'to': 2.0, 'basically': 1.0, 'great': 1.0, 'these': 2.0, 'beautifully': 1.0, 'happen': 1.0, 'mattress': 3.0, 'soft': 2.0, 'this': 1.0, 'used': 1.0, 'before': 2.0, 'the': 16.0, 'of': 3.0, 'broke': 1.0, 'i': 9.0, 'purchased': 1.0, 'had': 1.0, 'bed': 2.0, 'for': 5.0, 'product': 1.0, 'one': 6.0, 'was': 3.0, 'after': 1.0, 'born': 2.0, 'in': 5.0, 'also': 2.0, 'will': 1.0, 'sheets': 5.0, 's': 2.0, 'a': 6.0, 'bedding': 2.0, 'and': 4.0, 'tried': 1.0, 'myself': 3.0, 'fitted': 1.0, 'put': 1.0, 'floor': 2.0, 'unit': 1.0, 'when': 1.0, 'you': 1.0, 'easily': 1.0, 'plays': 1.0, 'protected': 1.0, 'top': 1.0, 'ultimate': 3.0, 'have': 1.0, 'sheet': 4.0, 'bit': 1.0, 'which': 1.0, 'side': 1.0, 'together': 1.0, 'recommend': 1.0, 'rubbery': 1.0, 'brightly': 1.0, 'two': 3.0, 'little': 1.0, 'with': 1.0, 'something': 1.0, 'between': 1.0, 'd': 2.0, 'but': 1.0, 'sew': 1.0, 'washes': 1.0, 'same': 1.0, 'under': 1.0, 'use': 2.0, 'wash': 1.0, 'give': 1.0, 'decorative': 1.0, 'is': 1.0, 'look': 1.0, 'friend': 1.0, 'colored': 1.0, 'since': 1.0, 'softer': 1.0, 'plain': 1.0, 'white': 1.0}
Word element => {'feel': 1.0, 'plastic': 1.0, 'waterproof': 1.0, 's': 1.0, 'when': 1.0, 'am': 1.0, 'old': 1.0, 'baby': 2.0, 'night': 1.0, 'mattress': 2.0, 'blowouts': 1.0, 'this': 1.0, 'soft': 2.0, 'using': 1.0, 'ultimate': 3.0, 'dryer': 2.0, 'have': 2.0, 'flat': 1.0, 'washable': 1.0, 'sheet': 3.0, 'bit': 1.0, 'time': 1.0, 'new': 1.0, 'machine': 1.0, 'to': 3.0, 'all': 1.0, 'switch': 2.0, 'but': 1.0, 'safe': 1.0, 'two': 1.0, 'sheets': 4.0, 'bottom': 1.0, 'love': 1.0, 'for': 2.0, 'fit': 1.0, 'leaks': 2.0, 'months': 1.0, 'crib': 4.0, 'size': 2.0, 'been': 1.0, 'leave': 1.0, 'diaper': 2.0, 'these': 2.0, 'multiple': 1.0, 'i': 6.0, 'putting': 1.0, 'cotton': 1.0, 'considering': 1.0, 'much': 1.0, 'a': 8.0, 'tiny': 1.0, 'or': 1.0, 'and': 3.0, 'month': 1.0, 'it': 2.0, 'sleeping': 1.0, 'they': 2.0, 'has': 2.0, 'while': 1.0, 'week': 1.0, 'regular': 2.0, 'in': 1.0, 'on': 4.0, 'mattresses': 1.0, 'hassle': 1.0, 'use': 1.0, 'help': 1.0, 'times': 1.0, 'middle': 1.0, 'doing': 1.0, 'the': 8.0, 'of': 3.0, 'my': 1.0, 'me': 1.0, 'not': 1.0, 'laundry': 1.0, 'change': 1.0, 'takes': 1.0, 'less': 1.0, 'out': 1.0, 'huge': 2.0, 'than': 1.0, 'breathable': 1.0, 'whole': 1.0, 'are': 1.0, 'cute': 1.0, 'top': 3.0, 'so': 1.0, 'can': 1.0, 'shrank': 1.0, 'both': 1.0, '6': 2.0, 'mine': 1.0, 'problem': 1.0, 'is': 4.0, 'at': 1.0, 'material': 1.0, 'which': 1.0, 'side': 2.0, 'easily': 1.0, 'layer': 1.0}
Word element => {'them': 1.0, 'that': 1.0, 'learn': 1.0, 'very': 1.0, 'was': 1.0, 'expensive': 1.0, 'are': 1.0, 'just': 1.0, 'sheets': 1.0, 'thread': 1.0, 'of': 3.0, 'use': 1.0, 'securing': 1.0, 'because': 1.0, 'limitations': 1.0, 'the': 3.0, 'great': 1.0, 'about': 1.0, 'certain': 1.0, 'and': 2.0, 'people': 2.0, 'is': 1.0, 'want': 2.0, 'placement': 1.0, 'this': 2.0, 'with': 2.0, 'these': 1.0, 'hi': 1.0, 'concept': 1.0, 'in': 1.0, 'know': 2.0, 'cannot': 1.0, 'sure': 2.0, 'am': 1.0, 'you': 1.0, 'idea': 1.0, 'but': 1.0, 'a': 3.0, 'straps': 1.0, 'sheet': 1.0, 'be': 2.0, 'used': 1.0, 'make': 2.0, 'on': 2.0, 'i': 3.0, '4': 1.0, 'convertible': 1.0, 'disappointed': 1.0, 'cribs': 1.0, 'solid': 1.0, 'headboard': 1.0, 'needle': 1.0, 'must': 1.0, 'have': 1.0, 'as': 1.0, 'to': 4.0, 'all': 1.0, 'slats': 1.0, 'unable': 1.0, 'crib': 1.0, 'handy': 1.0, 'sides': 1.0, 'or': 1.0}
Word element => {'less': 1.0, 'be': 1.0, 'would': 1.0, 'white': 1.0, 'with': 2.0, 'it': 7.0, 'this': 1.0, 'possible': 1.0, 'sheets': 3.0, 's': 2.0, 'a': 1.0, 'over': 2.0, 'the': 3.0, 'on': 1.0, 'put': 1.0, 'i': 5.0, 'straps': 2.0, 'thought': 2.0, 'boring': 2.0, 'although': 1.0, 'not': 2.0, 'just': 2.0, 'idea': 1.0, 'was': 2.0, 'wanted': 1.0, 'its': 1.0, 'so': 2.0, 'have': 1.0, 'and': 1.0, 'now': 1.0, 'attached': 1.0, 'never': 1.0, 'offered': 1.0, 'of': 1.0, 'leaving': 1.0, 'until': 1.0, 'my': 2.0, 'neat': 1.0, 'underneath': 1.0, 'show': 1.0, 'read': 1.0, 'through': 1.0, 'well': 2.0, 'review': 1.0, 'perhaps': 1.0, 'sides': 1.0, 'colors': 1.0, 'if': 1.0, 'in': 1.0, 'to': 2.0, 'as': 2.0}
Word element => {'too': 1.0, 'soft': 1.0, 'really': 1.0, 'on': 1.0, 'wash': 1.0, 'out': 1.0, 'them': 2.0, 'saver': 1.0, 'they': 1.0, 'dry': 1.0, 'time': 1.0, 'my': 1.0, 'are': 2.0, 'have': 1.0, 'these': 2.0, 't': 1.0, 'would': 1.0, 'without': 1.0, 'how': 1.0, 'wet': 1.0, 'snap': 2.0, 'like': 1.0, 'and': 2.0, 'just': 1.0, 'know': 1.0, 'huge': 1.0, 'don': 1.0, 'boys': 1.0, 'managed': 1.0, 'a': 1.0, 'i': 2.0, 'twin': 1.0, 'through': 1.0, 'crazy': 1.0, 'back': 1.0, 'diapers': 1.0, 'sheets': 1.0}
Word element => {'money': 1.0, 'for': 1.0, 'paid': 1.0, 'mind': 1.0, 'it': 2.0, 'without': 1.0, 'under': 1.0, 'sheets': 1.0, 'great': 1.0, 'the': 2.0, 'my': 1.0, 'recommended': 1.0, 'practical': 1.0, 'keep': 1.0, 'good': 2.0, 'and': 2.0, 'dry': 1.0, 'its': 1.0, 'to': 2.0, 'be': 1.0, 'also': 1.0, 'is': 1.0, 'enough': 1.0, 'works': 1.0, 'mattress': 1.0, 'used': 1.0, 'a': 1.0, 'doesnt': 1.0, 'cover': 1.0, 'daughter': 1.0}
Word element => {'need': 1.0, 'you': 1.0, 'when': 1.0, 'with': 2.0, 'wrestling': 1.0, 'midnight': 1.0, 'one': 1.0, 'mattress': 3.0, 'her': 2.0, 'wrestled': 1.0, 'save': 1.0, 'my': 1.0, 'husband': 1.0, 'had': 2.0, 'was': 1.0, 'say': 1.0, 'of': 3.0, 'ultimate': 2.0, 'the': 12.0, 'needless': 1.0, 'change': 3.0, '2': 1.0, 'these': 1.0, 'first': 1.0, 'he': 1.0, 'after': 1.0, 'night': 2.0, 'i': 1.0, 'least': 1.0, 'to': 4.0, 'our': 1.0, 'sleep': 1.0, 'out': 1.0, 'middle': 1.0, 'go': 1.0, 'we': 2.0, 'a': 1.0, 'daughter': 1.0, 'in': 2.0, 'beside': 1.0, 'sheet': 3.0, 'needs': 1.0, 'crib': 3.0, 'and': 3.0, 'himself': 1.0, 'match': 1.0, 'ordered': 1.0, 'sheets': 1.0, 'next': 1.0, 'they': 1.0, 'day': 1.0, 'are': 1.0, 'off': 1.0, 'snap': 1.0, 'literally': 1.0, 'every': 1.0, 'yourself': 1.0, 'nursery': 1.0, 'at': 1.0}
Word element => {'everyone': 1.0, 'recommend': 1.0, 'pull': 1.0, 'cannot': 1.0, 'securely': 1.0, 'snaps': 1.0, 'also': 1.0, 'it': 2.0, 'off': 2.0, 'out': 1.0, 'wrestle': 1.0, 'had': 1.0, 'since': 1.0, 'with': 1.0, 'only': 1.0, 'use': 1.0, 'plan': 1.0, 'a': 1.0, 'product': 1.0, 'for': 1.0, 'mine': 1.0, 'i': 4.0, 'baby': 1.0, 'night': 1.0, 'they': 1.0, 'next': 1.0, 'used': 2.0, 'this': 1.0, 'mattress': 2.0, 'some': 1.0, 'these': 1.0, 'the': 9.0, 'therefore': 1.0, 'make': 1.0, 'are': 1.0, 'purchase': 1.0, 'my': 2.0, 'and': 3.0, 'middle': 1.0, 'changes': 1.0, 'second': 1.0, 'change': 1.0, 'simple': 1.0, 'those': 1.0, 'so': 4.0, 'sheet': 3.0, 'to': 6.0, 'once': 1.0, 'of': 3.0, 'get': 1.0, 'easy': 1.0, 'inevitable': 1.0, 'top': 1.0, 'needed': 1.0, 'child': 2.0, 'over': 1.0, 'decorative': 2.0, 'would': 2.0, 'be': 1.0, 'crib': 1.0, 'covered': 1.0, 'regular': 1.0, 'in': 1.0, 'while': 1.0, 'very': 1.0, 'handy': 1.0}
Word element => {'really': 1.0, 'issues': 1.0, 'other': 1.0, 'has': 1.0, 'day': 1.0, 'during': 1.0, 'getting': 1.0, 'with': 1.0, 'fighting': 1.0, 'already': 1.0, 've': 1.0, 'proof': 1.0, 'leak': 1.0, 'got': 2.0, 'top': 1.0, 'unsnap': 1.0, 'do': 1.0, 'middle': 2.0, 'enough': 1.0, 'vomits': 1.0, 'poops': 1.0, 'rungs': 1.0, 'is': 4.0, 'around': 1.0, 'child': 2.0, 'over': 1.0, 'who': 1.0, 'of': 4.0, 'to': 2.0, 'all': 2.0, 'items': 1.0, 'like': 1.0, 'doing': 1.0, 'mattress': 2.0, 'this': 3.0, 'it': 4.0, 'fitted': 3.0, 'no': 1.0, 'about': 1.0, 'backing': 1.0, 'night': 2.0, 'baby': 2.0, 'babies': 1.0, 'that': 1.0, 'i': 2.0, 'sheet': 7.0, 'purchased': 1.0, 'then': 1.0, 'loved': 1.0, 'm': 1.0, 'underneath': 1.0, 'my': 2.0, 'the': 16.0, 'going': 1.0, 'go': 1.0, 's': 1.0, 'a': 6.0, 'have': 1.0, 'ultimate': 2.0, 'crib': 4.0, 'seven': 1.0, 'product': 1.0, 'for': 1.0, 'bed': 1.0, 'one': 2.0, 'gift': 2.0, 'are': 1.0, 'now': 1.0, 'crazy': 1.0, 'was': 1.0, 'nightmare': 1.0, 'ready': 1.0, 'almost': 2.0, 'if': 1.0, '10': 1.0, 'too': 1.0, 'and': 2.0, 'hard': 1.0, 'from': 1.0, 'friend': 1.0, 'when': 1.0, 'you': 3.0, 'favorite': 1.0, 'down': 1.0, 'put': 1.0, 'your': 4.0, 'on': 4.0, 'snaps': 1.0, 'pees': 1.0, 'regular': 2.0, 'in': 3.0}
Word element => {'time': 1.0, 'very': 1.0, 'on': 1.0, 'get': 1.0, 'and': 2.0, 'up': 1.0, 'works': 1.0, 'mattress': 1.0, 'lift': 1.0, 'saver': 1.0, 'constantly': 1.0, 'fight': 1.0, 've': 1.0, 'we': 1.0, 'been': 1.0, 'crib': 2.0, 'is': 1.0, 'ultimate': 1.0, 'don': 1.0, 'using': 1.0, 'love': 1.0, 'month': 1.0, 'sheet': 1.0, 'a': 1.0, 'well': 1.0, 'since': 1.0, 'our': 1.0, 'it': 2.0, '22': 1.0, 'i': 1.0, 'old': 1.0, 'was': 1.0, 'to': 2.0, 'sheets': 1.0, 'you': 1.0, 'great': 1.0, 'the': 2.0, 't': 1.0, 'born': 1.0, 'have': 1.0}
Word element => {'else': 1.0, 'what': 1.0, 'out': 1.0, 'concern': 1.0, 'are': 1.0, 'looks': 1.0, 'if': 1.0, 'pricey': 1.0, 'set': 1.0, 'need': 2.0, 'dirty': 1.0, 'they': 1.0, 'them': 1.0, 'never': 2.0, 'and': 3.0, '1': 2.0, 'things': 4.0, 'no': 1.0, 'write': 1.0, 'because': 1.0, 'usually': 1.0, 'laundry': 1.0, 'ready': 1.0, 'while': 1.0, 'these': 1.0, 'off': 1.0, 'of': 3.0, 'bottom': 1.0, 'change': 1.0, 'but': 1.0, '2': 2.0, 'can': 2.0, 'complaints': 1.0, 'have': 3.0, 'crib': 1.0, 'bad': 1.0, '4': 1.0, 'i': 2.0, 'you': 5.0, 'sheets': 2.0, 'a': 2.0, 'good': 3.0, 'clean': 1.0, 'one': 1.0, 'do': 2.0, 'only': 2.0, 'cotton': 1.0, 'sheet': 1.0, 'so': 3.0, 'time': 1.0, 'get': 2.0, 'easy': 1.0, 'to': 2.0, 'over': 1.0, 'this': 1.0, 'soft': 1.0, 'put': 1.0, 'your': 2.0, 'on': 1.0, '3': 1.0, 'top': 1.0, 'buy': 1.0, 'waterproof': 1.0, 'cute': 1.0, 'underneath': 1.0, 'really': 1.0}
Word element => {'parents': 1.0, 'use': 1.0, 'wonderful': 1.0, 'simple': 1.0, 'not': 1.0, 'bad': 1.0, 'little': 1.0, 'feel': 1.0, 'you': 1.0, 'first': 1.0, 'available': 1.0, 'many': 1.0, 'are': 2.0, 'there': 1.0, 'market': 1.0, 'in': 1.0, 'ray': 1.0, 'clean': 1.0, 'at': 1.0, 'mom': 1.0, 'by': 1.0, 'new': 1.0, 'would': 1.0, 'that': 2.0, 'easier': 1.0, 'where': 1.0, 'for': 2.0, 'one': 2.0, 'purchased': 1.0, 'this': 3.0, 'with': 1.0, 'far': 1.0, 'is': 2.0, 'two': 1.0, 'i': 1.0, 'these': 1.0, 'products': 3.0, 'them': 1.0, 'baby': 2.0, 'night': 1.0, 'obligated': 1.0, 'recommend': 1.0, 'of': 4.0, 'unsnap': 1.0, 'best': 1.0, 'sheets': 1.0, 'dirty': 1.0, 'they': 1.0, 'difficult': 1.0, 'middle': 1.0, 'we': 1.0, 'a': 4.0, 'buy': 2.0, 'accidents': 1.0, 'much': 1.0, 'all': 2.0, 'as': 1.0, 'any': 1.0, 'our': 1.0, 'least': 1.0, 'to': 4.0, 'sunshine': 1.0, 'the': 3.0, 'deal': 1.0, 'useless': 1.0, 'remove': 1.0, 'make': 1.0, 'on': 1.0, 'time': 1.0, 'simply': 1.0, 'so': 2.0, 'sheet': 1.0, 'too': 1.0, 'and': 4.0, 'parent': 1.0, 'snap': 1.0}
Word element => {'product': 1.0, 'invented': 1.0, 'bought': 1.0, 'day': 1.0, 'be': 1.0, 'never': 1.0, 'underneath': 1.0, 'expensive': 2.0, 'really': 1.0, 'around': 1.0, 'comes': 1.0, 'more': 1.0, 'am': 1.0, 'shrink': 1.0, 'you': 1.0, 'fumbling': 1.0, 'looks': 1.0, 'me': 1.0, 'is': 4.0, 'at': 1.0, 'relative': 1.0, 'about': 2.0, 'off': 3.0, 'saving': 1.0, 'what': 1.0, 'had': 3.0, 'for': 2.0, 'use': 2.0, 'time': 1.0, 'sheet': 5.0, 'so': 1.0, 'continuous': 1.0, 'trying': 1.0, 'sheets': 2.0, 'item': 1.0, 'also': 2.0, 'slipping': 1.0, 'have': 2.0, 'ultimate': 1.0, 'a': 7.0, 'we': 1.0, 'fit': 1.0, 't': 1.0, 'just': 1.0, 'over': 1.0, 'don': 1.0, 'expecting': 1.0, 'which': 2.0, 'know': 1.0, 'i': 8.0, 'beautiful': 1.0, 'thinking': 1.0, 'in': 4.0, 'who': 1.0, 'regular': 1.0, 'now': 1.0, 'to': 7.0, 'as': 3.0, 'all': 1.0, 'designer': 1.0, 'no': 1.0, 'years': 1.0, 'children': 1.0, 'with': 3.0, 'this': 4.0, 'it': 6.0, 'seconds': 1.0, 'realized': 1.0, 'easily': 1.0, 'that': 2.0, '2': 3.0, '7': 1.0, 'change': 2.0, 'same': 1.0, 'dirty': 1.0, 'they': 1.0, 'mattresses': 1.0, 'very': 2.0, 'snugly': 1.0, 'difficult': 1.0, 'has': 2.0, 'them': 1.0, 'baby': 1.0, 'especially': 1.0, 'bumper': 1.0, 'on': 2.0, 'think': 1.0, 'your': 1.0, 'washed': 2.0, 'real': 1.0, 'safety': 1.0, 'are': 1.0, 'recommended': 1.0, 'and': 3.0, 'tend': 1.0, 'crib': 6.0, 'slip': 1.0, 'hazard': 1.0, 'suffocation': 1.0, 'one': 1.0, 'top': 1.0, 'allowed': 1.0, 'device': 2.0, 'the': 3.0, 'of': 1.0, 'worry': 1.0, 'wish': 1.0, 'fitted': 1.0, 'buy': 1.0, 'only': 1.0}
Word element => {'half': 1.0, 'brand': 1.0, 'also': 2.0, 'for': 4.0, 'price': 1.0, 'child': 1.0, 'product': 1.0, 'cheap': 1.0, 'parents': 1.0, 'one': 2.0, 'definitely': 1.0, 'buy': 1.0, 'accidents': 1.0, 'wash': 1.0, 'use': 1.0, 'recommend': 1.0, 'easy': 1.0, 'sure': 1.0, 'great': 1.0, 'my': 2.0, 'when': 3.0, 'i': 5.0, 'son': 1.0, 'to': 3.0, 'our': 2.0, 'any': 1.0, 'as': 2.0, 'had': 1.0, 'wish': 1.0, 'this': 3.0, 'kids': 1.0, 'will': 1.0, 'could': 1.0, 'a': 4.0, 'we': 2.0, 'it': 2.0, 'same': 1.0, 'month': 1.0, 'second': 1.0, 'at': 1.0, 'is': 2.0, 'around': 1.0, 'really': 2.0, 'newborn': 1.0, 'tha': 1.0, 'have': 4.0, 'cya': 1.0, 'very': 1.0, 'midnight': 1.0, 'leakages': 1.0, 'and': 5.0, 'gongs': 1.0, 'crib': 1.0, 'amazon': 1.0, 'been': 2.0, 'that': 5.0, 'make': 1.0, 'on': 1.0, 'backup': 1.0, 'or': 2.0, 'was': 2.0, 'avoided': 1.0, 'teo': 1.0, 'tjmaxx': 1.0, 'potty': 1.0, 'late': 1.0, 'of': 2.0, 'the': 5.0, 'changings': 1.0, 'handy': 1.0, 'old': 1.0, 'glad': 1.0, 'came': 1.0, 'm': 1.0, 'in': 2.0, '18': 1.0, 'those': 2.0, 'went': 1.0, 'through': 1.0, 'training': 1.0, 'just': 1.0, 'marshalls': 1.0, 'all': 1.0, 'other': 1.0, 'sometimes': 1.0, 'only': 1.0, 'complaint': 1.0, 'these': 2.0, 'some': 1.0, 'would': 1.0, 'break': 1.0, 'off': 1.0, 'side': 1.0, 'note': 1.0, 'first': 1.0, 'are': 1.0, 'snaps': 1.0, 'from': 1.0, 'things': 1.0, 'you': 1.0, 'night': 1.0, 'able': 1.0, 'washed': 1.0, 'find': 1.0}
Word element => {'use': 1.0, 'cleaner': 1.0, 'anywhere': 1.0, 'simple': 1.0, 'makes': 1.0, 'crib': 1.0, 'they': 1.0, 'hard': 1.0, 'which': 1.0, 'trying': 1.0, 'against': 1.0, 'so': 2.0, 'sheet': 1.0, 'fitted': 2.0, 'with': 1.0, 'have': 1.0, 'comfortable': 1.0, 'top': 2.0, 'are': 1.0, 'blanket': 3.0, 'because': 1.0, 'little': 1.0, 'and': 6.0, 'since': 1.0, 'at': 2.0, 'newborn': 1.0, 'the': 5.0, 'tightly': 1.0, 'my': 1.0, 'of': 3.0, 'make': 1.0, 'put': 1.0, 'on': 2.0, 'months': 1.0, 'get': 1.0, 'kind': 1.0, 't': 1.0, 'a': 4.0, 'you': 1.0, 'easily': 1.0, 'when': 1.0, 'mess': 1.0, 'two': 1.0, 'i': 4.0, 'it': 9.0, 'he': 1.0, 'was': 2.0, 'to': 4.0, 'now': 1.0, 'able': 1.0, 'can': 1.0, 'four': 1.0, 'more': 1.0, 'is': 4.0, 'scratchy': 1.0, 'this': 1.0, 'mattress': 1.0, 'full': 1.0, 'in': 1.0, 'length': 1.0, 'fold': 1.0, 'son': 1.0, 'gets': 1.0, 'still': 1.0, 'whenever': 1.0, 'wash': 1.0, 'don': 1.0, 'life': 1.0, 'just': 1.0, 'wet': 1.0, 'take': 1.0, 'off': 1.0, 'placed': 1.0, 'cover': 1.0}
Word element => {'back': 1.0, 'need': 1.0, 'when': 1.0, 'especially': 1.0, 'those': 1.0, 'other': 1.0, 'use': 1.0, 'bed': 1.0, 'for': 1.0, 'one': 1.0, 'wash': 1.0, 'just': 2.0, 'two': 1.0, 'have': 1.0, 'my': 1.0, 'great': 1.0, 'the': 3.0, 'baby': 1.0, 'rest': 1.0, 'of': 1.0, 'keeps': 1.0, 'change': 1.0, 'leaks': 1.0, 'nighttime': 1.0, 'really': 1.0, 'like': 1.0, 'dry': 1.0, 'get': 1.0, 'and': 4.0, 'this': 1.0, 'it': 1.0, 'i': 3.0, 'son': 1.0, 'take': 1.0, 'crib': 1.0, 'you': 1.0, 's': 1.0, 'sheets': 1.0, 'so': 2.0, 'easy': 1.0, 'to': 3.0, 'off': 1.0, 'sheet': 2.0, 'clean': 1.0}
Word element => {'mattress': 1.0, 'one': 2.0, 'months': 1.0, 'decorative': 1.0, 'last': 1.0, 'her': 3.0, 'catches': 1.0, 'middle': 1.0, 'under': 1.0, 'adequate': 1.0, 'and': 2.0, 'around': 1.0, 'upper': 1.0, 'crib': 6.0, 'on': 3.0, '3': 2.0, 'soiled': 1.0, 'sheet': 2.0, 'enjoy': 1.0, 'daughter': 1.0, 'used': 2.0, 'another': 1.0, 'underneath': 1.0, 'wrestle': 1.0, 'my': 1.0, 'may': 1.0, 'covers': 1.0, 'it': 3.0, 'she': 1.0, 'these': 1.0, 'thoroughly': 1.0, 'in': 1.0, 'material': 1.0, 'this': 2.0, 'highly': 1.0, 'product': 1.0, 't': 1.0, 'fit': 1.0, 'an': 2.0, 'or': 1.0, 'love': 1.0, 'yet': 1.0, 'the': 7.0, 'of': 3.0, 'has': 1.0, 'i': 5.0, 'well': 1.0, '3am': 1.0, 'have': 1.0, 'give': 1.0, 'not': 3.0, 'excess': 1.0, 'take': 1.0, 'a': 3.0, 'small': 1.0, 'moisture': 1.0, 'with': 4.0, 'smooth': 1.0, 'appropriate': 1.0, 'absorption': 1.0, 'inch': 1.0, 'doubled': 1.0, 'playpen': 2.0, 'practical': 1.0, 'replace': 1.0, 'washed': 1.0, 'since': 1.0, 'is': 1.0, 'at': 1.0, 'surface': 1.0, 'pad': 1.0, 'so': 1.0, 'can': 1.0, 'most': 1.0, 'over': 2.0, 'work': 1.0, 'be': 1.0, 'posts': 1.0, 'third': 1.0, 'rails': 1.0, 'to': 3.0, 'any': 2.0, 'getting': 1.0, 'whichever': 1.0, 'top': 2.0, 'recently': 1.0, 'had': 1.0, 'that': 1.0, 'easily': 1.0, 'problems': 1.0, 'snaps': 1.0, 'they': 1.0, 'larger': 1.0, 'full': 1.0, 'recommend': 1.0, 'new': 1.0, 'soft': 1.0, 'mother': 1.0, 'having': 1.0}
Word element => {'idea': 1.0, 'her': 1.0, 'working': 1.0, 'been': 1.0, 'sheet': 1.0, 'birth': 1.0, 'gift': 2.0, 'this': 2.0, 'shower': 2.0, 'as': 1.0, 'baby': 2.0, 'she': 1.0, 'gave': 1.0, 'well': 1.0, 'since': 1.0, 'a': 4.0, 'attended': 1.0, 'had': 1.0, 'i': 1.0, 'requested': 1.0, 'and': 2.0, 'couple': 1.0, 'of': 1.0, 'then': 1.0, 'recently': 1.0, 'has': 2.0, 'great': 1.0, 'the': 1.0, 'mother': 1.0, 'these': 1.0, 'for': 2.0, 'given': 1.0}
Word element => {'has': 1.0, 'who': 1.0, 'anyone': 1.0, 'recommed': 1.0, 'highly': 1.0, 'just': 1.0, 'to': 2.0, 'one': 2.0, 'love': 1.0, 'for': 1.0, 'i': 2.0, 'baby': 1.0, 'night': 1.0, 'invention': 1.0, 'convenient': 1.0, 'on': 1.0, 'over': 1.0, 'is': 1.0, 'this': 3.0, 'it': 1.0, 'deal': 1.0, 'the': 2.0, 'absolutely': 1.0, 'great': 1.0, 'big': 1.0, 'another': 1.0, 'my': 2.0, 'changing': 1.0, 'babies': 1.0, 'have': 1.0, 'and': 2.0, 'middle': 1.0, 'still': 1.0, 'changes': 1.0, 'couple': 1.0, 'effortless': 1.0, 'snap': 2.0, 'off': 2.0, 'thanks': 1.0, 'fallen': 1.0, 'especially': 1.0, 'those': 1.0, 'of': 2.0, 'snaps': 1.0, 'so': 1.0, 'sheet': 4.0, 'time': 1.0, 'will': 1.0, 'but': 1.0, 'work': 1.0, 'a': 2.0, 's': 1.0, 'no': 1.0}
Word element => {'am': 1.0, 'tossing': 1.0, 'mattress': 1.0, 'cover': 1.0, 'bed': 1.0, 'on': 1.0, 'awful': 1.0, 'hold': 1.0, 'slats': 1.0, 'look': 1.0, 'to': 2.0, 'absolutely': 1.0, 'straps': 1.0, 'that': 1.0, 'washes': 1.0, 'several': 1.0, 'whole': 1.0, 'i': 2.0, 'they': 5.0, 'good': 1.0, 'washing': 1.0, 'because': 2.0, 'bunch': 1.0, 'reviews': 1.0, 'either': 1.0, 'got': 2.0, 'in': 1.0, 'apart': 1.0, 'wash': 1.0, 'sheets': 1.0, 'hated': 1.0, 'doesn': 1.0, 'elastic': 1.0, 'but': 1.0, 'all': 1.0, 'them': 2.0, 'don': 2.0, 'the': 5.0, 'these': 1.0, 't': 3.0, 'up': 3.0, 'and': 1.0, 'well': 2.0, 'we': 1.0, 'fall': 1.0, 'garbage': 1.0, 'after': 1.0}
Word element => {'though': 1.0, 'least': 1.0, 'gotta': 1.0, 'you': 1.0, 'under': 1.0, 'my': 1.0, 'shrinkage': 1.0, 'have': 2.0, '2': 1.0, 'the': 3.0, 'problems': 1.0, 'had': 1.0, 'for': 1.0, 'love': 1.0, 'at': 1.0, 'no': 4.0, 'of': 1.0, 'it': 1.0, 'with': 1.0, 'bunching': 1.0, 've': 1.0, 'i': 2.0, 'sheet': 1.0, 'etc': 1.0, 'ucs': 1.0, 'getting': 1.0, 'and': 1.0, 'friends': 1.0, 'product': 1.0, 'bought': 1.0, 'many': 1.0}
Word element => {'tucking': 1.0, 'each': 1.0, 'with': 1.0, 'cover': 1.0, 'trying': 1.0, 'fighting': 1.0, 'not': 1.0, 'are': 1.0, 'way': 1.0, 'that': 1.0, 'or': 1.0, 'dried': 1.0, 'wash': 1.0, 'in': 1.0, 'throw': 1.0, 'life': 1.0, 'just': 1.0, 'friend': 1.0, 'a': 3.0, 'see': 1.0, 'is': 2.0, 'have': 1.0, 'lifting': 1.0, 'replacement': 1.0, 'from': 1.0, 'im': 1.0, 'love': 1.0, 'for': 1.0, 'etc': 1.0, 'two': 1.0, 'i': 1.0, 'did': 1.0, 'buy': 1.0, 'ease': 1.0, 'and': 6.0, 'matching': 1.0, 'mattress': 1.0, 'this': 2.0, 'leaks': 1.0, 'had': 1.0, 'much': 1.0, 'happens': 1.0, 'its': 2.0, 'all': 1.0, 'to': 3.0, 'look': 1.0, 'crib': 1.0, 'side': 1.0, 'protection': 1.0, 'easier': 2.0, 'recommended': 1.0, 'removal': 1.0, 'you': 2.0, 'when': 2.0, 'of': 3.0, 'there': 1.0, 'set': 1.0, 'does': 1.0, 'because': 2.0, 'makes': 1.0, 'unsnap': 1.0, 'blowouts': 1.0, 'time': 1.0, 'against': 1.0, 'sheet': 4.0, 'so': 1.0, 'replace': 1.0, 'leak': 1.0, 'glad': 1.0, 'it': 5.0, 'she': 1.0, 'the': 6.0, 'which': 1.0, 'cannot': 1.0, 'sits': 1.0, 'even': 1.0, 'make': 1.0, 'on': 1.0, 'top': 1.0, 'nice': 2.0}
Word element => {'wasted': 1.0, 'hadn': 1.0, 'wished': 1.0, 'stay': 1.0, 'right': 1.0, 'worked': 1.0, 'never': 2.0, 'have': 1.0, 'to': 1.0, 'also': 1.0, 'layer': 1.0, 'w': 1.0, 'has': 1.0, 'who': 1.0, 'dried': 1.0, 'line': 1.0, 'handwashed': 1.0, 'are': 1.0, 'things': 1.0, 'apparently': 1.0, 'washing': 1.0, 'followed': 1.0, 'long': 1.0, 'used': 1.0, 'really': 1.0, 'young': 1.0, 'old': 1.0, 'only': 1.0, 'few': 1.0, 'were': 1.0, 'doesn': 1.0, 'was': 1.0, 'leaking': 1.0, 'is': 1.0, 'one': 1.0, 'months': 1.0, 'bought': 1.0, 'money': 1.0, 'but': 2.0, 'quot': 2.0, 'of': 3.0, 'snaps': 1.0, 'noticing': 1.0, 'up': 2.0, 'wonderful': 1.0, 'vinyl': 1.0, 'they': 2.0, 'i': 7.0, 'two': 1.0, 'thinking': 1.0, 'for': 1.0, 'product': 1.0, 'meant': 1.0, 'lower': 1.0, 'these': 4.0, 'the': 9.0, 'drying': 1.0, 'had': 1.0, 'what': 1.0, 't': 3.0, 'a': 3.0, 'timesaver': 1.0, 'been': 1.0, 'that': 4.0, 'changing': 1.0, 'through': 1.0, 'and': 4.0, 'getting': 1.0, 'moisture': 1.0, '3': 1.0, 'washed': 1.0, 'on': 3.0, 'directions': 1.0, 'crib': 3.0, 'time': 1.0, 'so': 2.0, 'sheet': 3.0, 'hold': 2.0, 'which': 1.0, 'after': 1.0, 'ended': 1.0, 'them': 1.0, 'started': 2.0, 'baby': 2.0, 'anyhow': 1.0, 'unless': 1.0, 'times': 1.0, 'am': 1.0, 'pretty': 1.0, 'haven': 1.0, 'disappointed': 1.0, 'in': 1.0, 'my': 1.0}
Word element => {'unnecessary': 1.0, 'slide': 1.0, 'making': 2.0, 'that': 1.0, 'crib': 2.0, 'have': 2.0, 'easily': 1.0, 'you': 1.0, 'if': 1.0, 'only': 1.0, 'would': 1.0, 'attractive': 1.0, 'easier': 2.0, 'get': 2.0, 'and': 3.0, 'difficult': 2.0, 'just': 1.0, 'unsnap': 1.0, 'of': 1.0, 'the': 4.0, 'they': 1.0, 'concept': 1.0, 'sheets': 1.0, 'with': 1.0, 'it': 3.0, 'therefore': 1.0, 'fitted': 1.0, 'more': 1.0, 'is': 1.0, 'maybe': 1.0, 'extremely': 2.0, 'fit': 1.0, 'product': 3.0, 'good': 1.0, 'most': 1.0, 'but': 2.0, 'i': 4.0, 't': 1.0, 'a': 3.0, 'see': 1.0, 'snaps': 1.0, 'mattresses': 1.0, 'little': 1.0, 'wear': 1.0, 'haven': 1.0, 'set': 1.0, 'used': 1.0, 'both': 1.0, 'this': 3.0, 'found': 2.0, 'mattress': 3.0, 'snap': 1.0, 'enough': 1.0, 'quicker': 1.0, 'together': 1.0, 'pretty': 2.0, 'take': 1.0, 'out': 3.0, 'to': 4.0, 'all': 1.0, 'use': 2.0, 'like': 1.0, 'which': 1.0, 'are': 1.0, 'seems': 1.0, 'also': 1.0}
Word element => {'benefits': 1.0, 'their': 1.0, 'enjoy': 1.0, 'danger': 1.0, 'see': 1.0, 'it': 1.0, 'this': 1.0, 'n': 1.0, 'one': 2.0, 'crib': 2.0, 'to': 1.0, 'any': 1.0, 'our': 2.0, 'comfy': 1.0, 'and': 2.0, 'play': 1.0, 'the': 4.0, 'feature': 1.0, 'i': 4.0, 'have': 1.0, 'continue': 1.0, 'only': 1.0, 'do': 1.0, 'pack': 1.0, 'for': 2.0, 'love': 1.0, 'product': 1.0, 'really': 2.0, 'of': 2.0, 'use': 1.0, 'postings': 1.0, 'dangers': 1.0, 'just': 1.0, 'but': 2.0, 'keep': 1.0, 'if': 1.0, 'will': 1.0, 'also': 1.0, 't': 1.0, 'we': 3.0, 's': 1.0, 'you': 1.0, 'bassinet': 1.0, 'cosleeper': 1.0, 'easy': 1.0, 'they': 1.0, 'on': 3.0, 'your': 1.0, 're': 1.0, 'maintenance': 1.0, 'provide': 1.0, 'saw': 1.0, 'lots': 1.0, 'supervision': 1.0, 'playtime': 1.0, 'don': 1.0, 'child': 1.0}
Word element => {'would': 1.0, 'they': 1.0, 'wish': 1.0, 'cribs': 1.0, 'work': 1.0, 'will': 1.0, 'that': 2.0, 'i': 1.0, 'guess': 1.0, 'my': 1.0, 'so': 1.0, 'for': 1.0, 'bed': 1.0, 'to': 2.0, 'sheet': 1.0, 'them': 1.0, 'worked': 1.0, 'from': 1.0, 'purchased': 1.0, 'corners': 1.0, 'bru': 1.0, 'crib': 3.0, 'lifestyle': 1.0, 'converts': 1.0, 'pinehurst': 1.0, 'straps': 1.0, 'a': 1.0, 'italia': 1.0, 'baby': 1.0, 'the': 4.0, 'convert': 1.0, 'full': 2.0, 'are': 1.0, 'have': 2.0, 'around': 1.0, 'fit': 2.0, 'we': 1.0, 'this': 2.0, 'it': 2.0, 'does': 1.0, '4': 1.0, 'not': 3.0, 'of': 1.0, 'thick': 1.0, 'and': 2.0, 'do': 1.0}
Word element => {'sheets': 1.0, 'highly': 1.0, 'normal': 1.0, 'my': 1.0, 'great': 1.0, 'up': 1.0, 'of': 1.0, 'changed': 1.0, 've': 1.0, 'through': 1.0, 'vinyl': 1.0, 'waterproof': 1.0, 'washes': 1.0, 'middle': 2.0, 'layer': 1.0, 'too': 1.0, 'and': 4.0, 'couple': 2.0, 'cute': 2.0, 'afterwards': 1.0, 'since': 1.0, 'to': 3.0, 'leaks': 1.0, 'thought': 1.0, 'had': 1.0, 'i': 6.0, 'attempted': 1.0, 'sheet': 3.0, 'so': 3.0, 'else': 1.0, 'recommend': 1.0, 'minutes': 1.0, 'store': 1.0, 'easy': 1.0, 'looked': 1.0, 'it': 4.0, 'with': 2.0, 'tops': 1.0, 'an': 1.0, 'registered': 1.0, 'change': 1.0, 'wonderful': 1.0, 'the': 6.0, 'such': 1.0, 'these': 2.0, 'nothing': 1.0, 'crib': 1.0, 'in': 5.0, 'laundry': 1.0, 'chore': 1.0, 'for': 1.0, 'using': 1.0, 'baby': 1.0, 'night': 1.0, 'started': 1.0, 'just': 1.0, 'not': 1.0, 'haven': 1.0, 'a': 6.0, 't': 1.0, 's': 3.0, 'pad': 1.0, 'snap': 1.0, 'absorbent': 1.0, 'put': 1.0, 'on': 2.0, 'fuss': 1.0, 'anything': 1.0, 'mattress': 1.0, 'this': 1.0, 'soft': 1.0, 'back': 1.0, 'top': 1.0}
Word element => {'their': 1.0, 'everyone': 1.0, 'buy': 1.0, 'sheets': 1.0, 'no': 1.0, 'had': 1.0, 'dry': 1.0, 'wash': 2.0, 'tear': 1.0, 'not': 1.0, 'will': 1.0, 'sewn': 1.0, 'gifts': 1.0, 'are': 1.0, 'six': 1.0, 'top': 1.0, 'at': 2.0, 'sure': 1.0, 'be': 1.0, 'washing': 1.0, 'baby': 1.0, 'them': 3.0, 'trouble': 1.0, 'grateful': 1.0, 'when': 1.0, 'am': 1.0, 'so': 2.0, 'sheet': 4.0, 'clean': 1.0, 'his': 1.0, 'to': 5.0, 'as': 1.0, 'son': 1.0, 'just': 1.0, 'normally': 1.0, 'it': 2.0, 'with': 2.0, 'dryer': 1.0, 'have': 4.0, 'bottom': 1.0, '8': 1.0, 'removeable': 1.0, 'these': 5.0, 'whatsoever': 1.0, 'the': 15.0, 'mattress': 1.0, 'pain': 1.0, 'that': 3.0, 'been': 1.0, 'crib': 3.0, 'a': 2.0, 'know': 1.0, 'washer': 1.0, 'using': 1.0, 'for': 4.0, 'huge': 1.0, 'months': 1.0, 'one': 4.0, 'ten': 1.0, 'fits': 1.0, 'my': 1.0, 'tightly': 1.0, 'change': 1.0, 'can': 1.0, 'was': 1.0, 'minutes': 1.0, 'unsnap': 1.0, 'shower': 1.0, 'of': 1.0, 'way': 1.0, 'straps': 4.0, 'plan': 1.0, 'connecting': 1.0, 'take': 2.0, 'dirty': 1.0, 'snap': 1.0, 'off': 2.0, 'or': 1.0, 'closed': 1.0, 'and': 5.0, 'on': 2.0, 'put': 1.0, 'in': 4.0, 'i': 10.0, 'two': 3.0, 'less': 1.0}
Word element => {'sids': 1.0, 'worry': 1.0, 'have': 1.0, 'about': 1.0, 'don': 1.0, 'so': 1.0, 'snaps': 1.0, 're': 1.0, 'to': 2.0, 'product': 2.0, 'pain': 1.0, 'off': 1.0, 'change': 2.0, 'done': 1.0, 'and': 2.0, 'a': 1.0, 'love': 1.0, 'take': 1.0, 'i': 1.0, 't': 1.0, 'such': 1.0, 'the': 2.0, 'crib': 1.0, 'attaches': 1.0, 'sheet': 1.0, 'bumper': 1.0, 'pads': 1.0, 'but': 1.0, 'just': 1.0, 'this': 3.0, 'it': 2.0, 'with': 2.0, 's': 1.0, 'you': 3.0}
Word element => {'happen': 1.0, 'let': 1.0, 'please': 1.0, 'using': 1.0, 'be': 2.0, 'not': 1.0, 'will': 1.0, 'removed': 1.0, 'needless': 1.0, 'but': 1.0, 'ok': 1.0, 'say': 1.0, 'is': 1.0, 'longer': 1.0, 'bottom': 1.0, 'rubber': 1.0, 'trapped': 1.0, 'snap': 1.0, 'on': 1.0, '9': 1.0, 'since': 1.0, 'saver': 1.0, 'managed': 1.0, 'you': 1.0, 'twins': 1.0, 'old': 1.0, 'i': 1.0, 'were': 1.0, 'pinned': 1.0, 't': 1.0, 'a': 2.0, 'we': 3.0, 'other': 1.0, 'they': 1.0, 'with': 1.0, 'have': 3.0, 'ultimate': 2.0, 'crib': 2.0, 'sheets': 2.0, 'and': 4.0, 'get': 1.0, 'beginning': 1.0, 'careful': 1.0, 'the': 7.0, 'used': 1.0, 'her': 2.0, 'them': 2.0, 'time': 1.0, 'sheet': 2.0, 'any': 1.0, 'our': 3.0, 'to': 4.0, 'had': 1.0, 'parents': 1.0, 'huge': 1.0, 'one': 1.0, 'morning': 1.0, 'tension': 1.0, 'this': 2.0, 'found': 1.0, 'of': 2.0, 'recommended': 1.0, 'girls': 1.0, 'month': 1.0, 'she': 2.0, 'facing': 1.0, 'under': 3.0, 'don': 1.0, 'nearly': 1.0, 'corner': 2.0, 'suffocating': 1.0, 'head': 2.0}
Word element => {'mess': 1.0, 'when': 1.0, 'mattress': 1.0, 'both': 1.0, 'protecting': 1.0, 'found': 1.0, 'product': 1.0, 'best': 1.0, 'this': 1.0, 'even': 1.0, 'sheet': 1.0, 'points': 1.0, 'fewer': 1.0, 'time': 1.0, 'off': 1.0, 'break': 1.0, 'change': 1.0, 'but': 1.0, 'make': 1.0, 'night': 1.0, 'keep': 1.0, 'a': 3.0, 'go': 1.0, 't': 1.0, 'downs': 1.0, 'can': 1.0, 'so': 1.0, 'after': 1.0, 'rather': 1.0, 'hours': 1.0, 'wee': 1.0, 'snaps': 1.0, 're': 1.0, 'forever': 1.0, 'trying': 1.0, 'throw': 1.0, 'containment': 1.0, 'than': 1.0, 'are': 3.0, 'in': 4.0, 'crib': 4.0, 'unsnap': 1.0, 'our': 1.0, 'to': 5.0, 'as': 1.0, 'diaper': 1.0, 'parents': 1.0, 'leak': 1.0, 'of': 6.0, 'the': 24.0, 'once': 1.0, 'these': 1.0, 'they': 2.0, 'down': 1.0, 'several': 2.0, 'tie': 1.0, 'because': 1.0, 'layer': 2.0, 'is': 2.0, 'at': 1.0, 'compromised': 1.0, 'have': 3.0, 'dryer': 1.0, 'entire': 1.0, 'one': 2.0, 'nice': 1.0, 'underside': 1.0, 'children': 1.0, 'with': 3.0, 'only': 1.0, 'hamper': 1.0, 'top': 1.0, 'sleep': 1.0, 'back': 1.0, 'it': 2.0, 'and': 3.0, 'semblance': 1.0, 'bed': 1.0, 'unfortunately': 1.0, 'hang': 1.0, 'there': 2.0, 'durability': 2.0, 'them': 2.0, 'has': 2.0, 'always': 1.0, 'machine': 1.0, 'issues': 2.0, 'used': 1.0, 'trust': 1.0, 'waterproof': 2.0, 'lining': 2.0, 'would': 1.0, 'will': 1.0, 'cycle': 1.0, 'also': 1.0, 'lost': 1.0, 'last': 1.0, 'wash': 1.0, 'don': 1.0, 'some': 2.0, 'gentle': 1.0, 'we': 7.0, 'then': 1.0, 'emergency': 1.0, 'not': 1.0, 'dry': 1.0, 'afraid': 1.0, 'for': 3.0, 'heat': 1.0, 'destroying': 1.0, 'still': 1.0, 'sheets': 1.0, 'hold': 2.0, 'leaving': 1.0, 'very': 1.0, 'on': 4.0, 'long': 1.0, '34': 4.0, 'plastic': 1.0}
Word element => {'on': 1.0, 'they': 1.0, 'to': 2.0, 'but': 1.0, 'easy': 1.0, 'very': 1.0, 'and': 2.0, 'i': 4.0, 'cheaper': 1.0, 'wash': 1.0, 'are': 1.0, 'disposable': 1.0, 'paid': 1.0, 'agree': 2.0, 'so': 1.0, 'the': 2.0, 'piece': 1.0, 'with': 1.0, 'this': 2.0, 'mom': 1.0, 'you': 1.0, 'when': 1.0, 'us': 1.0, 'have': 1.0, 'that': 1.0, 'babies': 1.0, 'use': 1.0, 'wonderful': 1.0, 'also': 1.0, 'item': 1.0, 'somewhat': 1.0, 'other': 1.0, 'is': 2.0, 'fall': 1.0, 'them': 3.0, 'snaps': 1.0, 'off': 1.0, 's': 1.0, 'a': 2.0, 'than': 1.0, 'what': 1.0, 'for': 1.0, 'mine': 1.0, 'bought': 1.0, 'r': 1.0, 'lot': 1.0, 'at': 1.0, 'spent': 1.0, '20': 1.0}
Word element => {'happily': 1.0, 'used': 1.0, 'fully': 1.0, 'either': 1.0, 'bars': 1.0, 'around': 1.0, 'pieces': 1.0, 'end': 2.0, 'pulls': 1.0, 'hazard': 1.0, 'choking': 1.0, 'underneath': 1.0, 'way': 1.0, 'their': 1.0, 'one': 1.0, 'suffocation': 1.0, 'about': 1.0, 'hazards': 1.0, 'concerned': 1.0, 'baby': 3.0, 'strong': 1.0, 'by': 1.0, 'or': 2.0, 'wiggles': 1.0, 'be': 2.0, 'pulled': 1.0, 'seemed': 1.0, 'at': 1.0, 'since': 1.0, 'wouldn': 1.0, 'mattresses': 1.0, 'limited': 1.0, 'snap': 1.0, 'off': 4.0, 'resistant': 1.0, 'positively': 1.0, 'and': 7.0, 'under': 2.0, 'negative': 1.0, 'specific': 1.0, 'can': 1.0, 'but': 2.0, 'zip': 3.0, 'an': 1.0, 'if': 2.0, 'layer': 1.0, 'loved': 1.0, 'use': 3.0, 'purpose': 1.0, 'it': 6.0, 'this': 2.0, 'that': 1.0, 'gave': 1.0, 'easily': 1.0, 'when': 1.0, 'go': 1.0, 'could': 2.0, 't': 1.0, 's': 1.0, 'we': 4.0, 'a': 8.0, 'review': 2.0, 'of': 3.0, 'over': 1.0, 'wash': 1.0, 'child': 1.0, 'up': 4.0, 'two': 1.0, 'bunched': 1.0, 'i': 4.0, 'the': 11.0, 'unzip': 1.0, 'top': 3.0, 'clouds': 1.0, 'for': 4.0, 'stars': 1.0, 'originally': 1.0, 'sheets': 2.0, 'using': 1.0, 'which': 3.0, 'd': 1.0, 'both': 1.0, 'years': 3.0, 'have': 3.0, 'ultimate': 2.0, 'urine': 1.0, 'crib': 3.0, 'sheet': 6.0, 'so': 1.0, 'as': 2.0, 'our': 2.0, 'would': 2.0, 'protected': 1.0, 'accident': 1.0, 'pull': 1.0}
Word element => {'saves': 1.0, 'chore': 1.0, 'them': 1.0, 'changing': 1.0, 'it': 2.0, 'only': 1.0, 'come': 1.0, 'with': 1.0, 'top': 1.0, 'the': 5.0, 'these': 1.0, 'over': 1.0, 'on': 1.0, 'real': 1.0, 'then': 1.0, 'loved': 1.0, 'use': 1.0, 'goes': 1.0, 'time': 1.0, 'needs': 1.0, 'sheet': 3.0, 'regular': 2.0, 'changed': 1.0, 'money': 1.0, 'change': 1.0, 'ultimate': 1.0, 'have': 5.0, 'and': 5.0, 'crib': 3.0, 'waterproof': 1.0, 'three': 1.0, 'all': 1.0, 'to': 4.0, 'comes': 1.0, 'when': 1.0, 'one': 1.0, 'for': 1.0, 'be': 2.0, 'a': 5.0, 'few': 1.0, 'snaps': 1.0, 'having': 1.0, 'does': 1.0, 'this': 1.0, 'mattress': 2.0, 'trick': 1.0, 'pad': 2.0, 'off': 2.0, 'i': 3.0, 'otherwise': 1.0, 'd': 1.0, 'would': 2.0, 'each': 1.0, 'sheets': 1.0, 'thick': 1.0}
Word element => {'handy': 1.0, '2': 1.0, 'getting': 1.0, 'buy': 1.0, 'great': 1.0, 'however': 1.0, 'just': 1.0, 'up': 1.0, 'ended': 1.0, 'have': 1.0, 'coming': 1.0, 'always': 2.0, 'out': 1.0, 'started': 1.0, 'you': 2.0, 'allow': 1.0, 'elastic': 1.0, 'snapped': 1.0, 'stayed': 1.0, 'snaps': 1.0, 'recommend': 1.0, 'thingies': 1.0, 'was': 2.0, 'before': 1.0, '5': 1.0, 'so': 2.0, 'sheet': 2.0, 'and': 2.0, 'fairly': 1.0, 'leak': 1.0, 'of': 1.0, 'is': 2.0, 'leaving': 1.0, 'unsnapped': 2.0, 'an': 1.0, 'on': 1.0, 'absorbent': 1.0, 'guards': 1.0, 'covers': 1.0, 'it': 4.0, 'truly': 1.0, 'get': 1.0, 'easy': 1.0, 'to': 4.0, 'all': 4.0, 'in': 2.0, 'secure': 1.0, 'also': 1.0, 'reason': 1.0, 'crib': 4.0, 'this': 2.0, 'soft': 1.0, 'stars': 1.0, 'one': 5.0, 'entire': 1.0, 'only': 2.0, 'much': 1.0, 'wear': 1.0, 'better': 1.0, 'than': 1.0, 'not': 1.0, 'those': 1.0, 'a': 1.0, 's': 1.0, 'we': 1.0, 'the': 6.0, 'itsy': 1.0, 'bitsy': 1.0, 'got': 1.0, 'instead': 1.0, 'snap': 1.0, 'off': 1.0, 'cover': 1.0, 'foot': 1.0, 'about': 1.0, 'square': 1.0, 'that': 3.0, 'gave': 1.0, '4': 1.0, 'i': 3.0}
Word element => {'returning': 1.0, 'm': 1.0, 'since': 1.0, 'know': 1.0, 'never': 1.0, 'says': 1.0, 'what': 1.0, 'does': 1.0, 'protecting': 1.0, 'line': 1.0, 'not': 2.0, 'on': 1.0, 'son': 1.0, 'isn': 1.0, '2004': 1.0, 'll': 1.0, 'down': 1.0, 'somewhere': 1.0, 'that': 2.0, 'agree': 1.0, 'sheet': 1.0, 'so': 1.0, 'the': 4.0, 'are': 1.0, 'they': 1.0, 'reviews': 2.0, 'is': 3.0, 'say': 1.0, 'soft': 2.0, 'recent': 1.0, 'this': 3.0, 'wouldn': 1.0, 'it': 3.0, 'old': 1.0, 'tried': 1.0, 'i': 3.0, 'for': 1.0, 'product': 3.0, 'must': 1.0, 'have': 1.0, 'pretty': 1.0, 'my': 1.0, 'save': 1.0, 'some': 1.0, 'but': 1.0, 'money': 1.0, 'and': 1.0, 'made': 1.0, 'as': 2.0, 'all': 2.0, 'to': 1.0, 'sleep': 1.0, 'will': 1.0, 'use': 1.0, 't': 1.0, 's': 1.0, 'probably': 1.0, 'crib': 1.0, '2002': 1.0, 'far': 1.0}
Word element => {'hazard': 1.0, 'huge': 1.0, 'a': 1.0, 'be': 1.0, '2yrs': 1.0, 'at': 1.0, 'he': 1.0, 'crib': 1.0, 'secure': 1.0, 'snaps': 1.0, 'easier': 1.0, 'that': 2.0, 'life': 1.0, 'already': 1.0, 'appears': 1.0, 'use': 1.0, 'makes': 1.0, 'sheet': 1.0, 'the': 6.0, '2': 1.0, 'change': 1.0, 'around': 1.0, 'is': 2.0, 'apart': 1.0, 'in': 1.0, 'when': 1.0, 'you': 2.0, 'sheets': 1.0, 'allbedding': 1.0, 'too': 1.0, 'and': 1.0, 'choking': 1.0, 'tear': 1.0, 'me': 1.0, 'not': 1.0, 'started': 2.0, 'mattress': 2.0, 'this': 3.0, 'great': 1.0, '1': 5.0, 'cracked': 1.0, 'have': 3.0, 'able': 1.0, 'product': 1.0, 'to': 7.0, 'was': 1.0, 'do': 2.0, 'much': 1.0, 'back': 1.0, 'of': 2.0, 'peeling': 1.0, 'concern': 1.0, 'after': 1.0, 'however': 1.0, 'about': 1.0, 'yr': 1.0, 'my': 2.0, 'biggest': 1.0, 'pull': 1.0, 'son': 1.0, 'off': 1.0}
Word element => {'brand': 1.0, 'try': 1.0, 'll': 1.0, 'an': 1.0, 'if': 1.0, 'and': 1.0, 'too': 1.0, 'find': 2.0, 'receipt': 1.0, 'harder': 1.0, 'suprise': 1.0, 'no': 1.0, 'bumpers': 1.0, 'putting': 1.0, 'i': 3.0, 'correctly': 1.0, 'tried': 1.0, 'immediately': 1.0, 'packaging': 1.0, 'of': 3.0, 'gift': 1.0, 'absolutely': 1.0, 'a': 2.0, 'italia': 1.0, 'one': 1.0, 'sheet': 2.0, 'it': 2.0, 'this': 3.0, 'come': 1.0, 'the': 7.0, 'in': 1.0, 'crib': 5.0, 'after': 1.0, 'as': 2.0, 'to': 4.0, 'receiving': 1.0, 'love': 1.0, 'for': 2.0, 'fit': 2.0, 'say': 1.0, 'is': 1.0, 'elastics': 1.0, 'around': 1.0, 'should': 1.0, 'keep': 1.0, 'since': 1.0, 'at': 1.0, 'also': 1.0, 'will': 1.0, 'needless': 1.0, 'work': 1.0, 'wide': 1.0, 'have': 4.0, 'not': 2.0, 'those': 1.0, 'idea': 1.0, 'posts': 1.0, 'you': 5.0, 'that': 3.0, 'corners': 1.0, 'italian': 2.0, 'made': 2.0, 'cribs': 1.0, 'baby': 1.0, 'another': 1.0, 'my': 2.0, 'may': 2.0, 'disappointment': 1.0, 'either': 1.0}
Word element => {'over': 1.0, 'worries': 1.0, 'fitted': 1.0, 'under': 1.0, 'or': 1.0, 'top': 1.0, 'lay': 1.0, 'soak': 1.0, 'bed': 1.0, 'break': 1.0, 'one': 1.0, 'pop': 1.0, 'where': 1.0, 'is': 2.0, 'sheets': 2.0, 'you': 1.0, 'are': 2.0, 'the': 3.0, 'sleeping': 1.0, 'which': 1.0, 'crib': 3.0, 'there': 1.0, 'of': 2.0, 'sheet': 3.0, 's': 2.0, 'a': 2.0, 'mattress': 1.0, 'pain': 1.0, 'this': 2.0, 'it': 3.0, 'washing': 1.0, 'he': 1.0, 'constant': 1.0, 'must': 1.0, 'have': 1.0, 'no': 2.0, 'off': 1.0, 'and': 4.0, 'matter': 1.0, 'throw': 1.0, 'water': 1.0, 'regular': 1.0, 'in': 2.0, 'machine': 1.0, 'change': 1.0, 'pregnant': 1.0, 'can': 1.0, 'also': 1.0, 'will': 1.0, 'underneath': 1.0, 'on': 1.0, 'portable': 1.0, 'put': 1.0, 'your': 5.0, 'baby': 1.0, 'just': 2.0, 'worried': 1.0, 'changing': 1.0, 'that': 1.0}
Word element => {'larger': 1.0, 'another': 1.0, 'choice': 1.0, 'only': 1.0, 'locally': 1.0, 'this': 1.0, 'could': 1.0, 'my': 1.0, 'find': 1.0, 'to': 2.0, 'product': 1.0, 'exactly': 1.0, 'town': 1.0, 'what': 1.0, 'needed': 1.0, 'was': 2.0, 'not': 1.0, 'drive': 1.0, 'i': 2.0, 'one': 1.0}
Word element => {'enjoy': 1.0, 'dribble': 1.0, 'so': 1.0, 'change': 1.0, 'and': 2.0, 'getting': 1.0, 'do': 1.0, 'waterproof': 1.0, 'crib': 2.0, 'are': 1.0, 'they': 1.0, 'these': 1.0, 't': 2.0, 'love': 1.0, 'for': 4.0, 'one': 2.0, 'i': 4.0, 'this': 1.0, 'want': 1.0, 'if': 1.0, 'doesn': 1.0, 'to': 3.0, 'least': 1.0, 'suggest': 1.0, 'what': 2.0, 'mom': 1.0, 'you': 1.0, 'when': 1.0, 'honestly': 1.0, 'in': 3.0, 'wash': 1.0, 'don': 1.0, 'know': 1.0, 'just': 1.0, 'something': 1.0, 'would': 1.0, 'the': 4.0, 'without': 1.0, 'baby': 1.0, 'them': 1.0, 'easy': 2.0, 'sure': 1.0, 'absolutely': 1.0, 'register': 1.0, 'at': 1.0, 'make': 1.0, '3': 1.0, 'on': 1.0, 'decides': 1.0}
Word element => {'should': 1.0, 'amount': 1.0, 'unimaginable': 1.0, 'an': 1.0, 'saves': 1.0, 'spare': 1.0, 'putting': 1.0, 'least': 1.0, 'to': 1.0, 'however': 1.0, 'by': 1.0, 'just': 1.0, 'heat': 1.0, 'low': 1.0, 'on': 2.0, 'you': 1.0, 'shrink': 1.0, 'shrinking': 1.0, 'dryer': 1.0, 'shrunk': 1.0, 'had': 1.0, 'energy': 1.0, 'if': 1.0, 'unsnapping': 1.0, 'different': 1.0, 'speaking': 1.0, 'order': 1.0, 'sheets': 1.0, 'sheet': 1.0, 'time': 2.0, 'they': 2.0, 'efficience': 1.0, 'couldn': 1.0, 'and': 6.0, 'lot': 1.0, 'at': 3.0, 'no': 1.0, 'i': 6.0, 'it': 4.0, 'try': 1.0, 'do': 1.0, 'only': 1.0, 'great': 1.0, 're': 1.0, 'snap': 1.0, 'in': 2.0, 'crib': 2.0, 'even': 1.0, 'didn': 1.0, 'one': 1.0, 'bought': 1.0, 's': 1.0, 't': 2.0, 'could': 1.0, 'a': 3.0, 'non': 1.0, 'unfortunately': 1.0, 'store': 1.0, 'standardized': 1.0, 'although': 1.0, 'having': 1.0, 'than': 1.0, 'find': 1.0, 'because': 1.0, 'them': 2.0, 'from': 1.0, 'know': 1.0, 'manufacturer': 1.0, 'once': 1.0, 'of': 5.0, 'bottom': 1.0, 'these': 1.0, 'decent': 1.0, 'price': 1.0, 'change': 1.0, 'can': 1.0, 'into': 1.0, 'the': 9.0, 'place': 1.0, 'exposed': 1.0, 'top': 1.0, 'this': 1.0, 'found': 1.0, 'mattress': 1.0, 'is': 1.0}
Word element => {'while': 1.0, 'bed': 1.0, 'buy': 1.0, 'product': 1.0, 'this': 1.0, 'going': 2.0, 'instead': 1.0, 'extra': 1.0, 'trying': 1.0, 'figures': 1.0, 'distracted': 1.0, 'gets': 1.0, 'my': 1.0, 'plain': 1.0, 'a': 2.0, 'ultimate': 1.0, 'also': 1.0, 'middle': 1.0, 'those': 1.0, 'etc': 1.0, 'having': 1.0, 'lifting': 1.0, 'bumpers': 1.0, 'about': 1.0, 'sheets': 3.0, 'said': 2.0, 'spends': 1.0, 'else': 2.0, 'everyone': 2.0, 'as': 2.0, 'same': 1.0, 'best': 1.0, 'mattress': 2.0, 'enough': 1.0, 'would': 1.0, 'tight': 1.0, 'stretches': 1.0, 'underneath': 2.0, 'stuck': 1.0, 'getting': 1.0, 'had': 1.0, 'never': 1.0, 'over': 1.0, 'after': 1.0, 'if': 1.0, 'still': 1.0, 'night': 1.0, 'you': 4.0, 'things': 1.0, 'pooped': 1.0, 'sheet': 1.0, 'peed': 1.0, 'too': 1.0, 'one': 1.0, 'since': 1.0, 'great': 1.0, 'transitioned': 1.0, 'could': 1.0, 'go': 2.0, 't': 5.0, 'using': 1.0, 'like': 1.0, 'loves': 1.0, 'solid': 1.0, 'he': 5.0, 'plastic': 1.0, 'have': 6.0, 'dryer': 1.0, 'definitely': 1.0, 'think': 1.0, 'on': 11.0, 'taking': 1.0, '3': 1.0, 'where': 1.0, 'color': 1.0, 'actually': 2.0, 'than': 1.0, 'cheaper': 1.0, 'use': 1.0, 'wash': 1.0, 'laundry': 1.0, 'change': 1.0, '7': 1.0, 'up': 1.0, 'don': 3.0, '11': 1.0, 'that': 2.0, 'because': 1.0, 'easily': 1.0, 'son': 3.0, 'get': 2.0, 'months': 3.0, 'before': 1.0, 'born': 1.0, 'look': 1.0, 'at': 2.0, 'is': 4.0, 'sleeps': 1.0, 'worry': 1.0, 'registered': 1.0, 'been': 1.0, 'amazon': 1.0, 'vomited': 1.0, 'and': 8.0, 'little': 1.0, 'two': 2.0, 'i': 4.0, '4': 1.0, 'our': 2.0, 'to': 8.0, 'sleep': 2.0, 'of': 5.0, 'the': 18.0, 'these': 3.0, 'other': 1.0, 'an': 1.0, 'ever': 1.0, 'bought': 1.0, 'waterproof': 1.0, 'time': 3.0, 'they': 7.0, 'washing': 1.0, 'shortly': 1.0, 'now': 1.0, 'old': 2.0, 'be': 2.0, 'was': 2.0, 'his': 5.0, 'around': 1.0, 'happier': 1.0, 'part': 1.0, 'problem': 2.0, 'has': 2.0, 'them': 3.0, 'baby': 1.0, 'not': 1.0, 'crib': 4.0, 'cute': 1.0, 'are': 5.0, 'incredible': 1.0, 'savers': 1.0, 'snap': 3.0, 'purchase': 1.0, 'quickly': 1.0, 'sale': 1.0, 'really': 2.0, 'easy': 1.0, 'we': 5.0, 'take': 1.0, 'just': 2.0, 'by': 1.0, 'pull': 1.0, 'him': 1.0, 'it': 5.0, 'pick': 1.0, 'wonderfully': 1.0, 'in': 4.0, 'machine': 1.0, 'so': 3.0, 'can': 3.0, 'but': 1.0, 'slats': 1.0, 'no': 1.0, 'very': 1.0, 'were': 2.0, 'rubbery': 1.0, 'soft': 1.0, 'for': 1.0, 'fabric': 1.0, 'idea': 1.0, 'feel': 2.0, 'off': 6.0, 'until': 1.0, 'or': 1.0, 'good': 1.0, 'side': 1.0, 'messes': 1.0, 'much': 1.0, 'regular': 1.0, 'won': 1.0}
Word element => {'pieces': 1.0, 'longer': 1.0, 'closures': 1.0, 'with': 1.0, 'elastic': 2.0, 'replace': 1.0, 'eventually': 1.0, 'convenience': 1.0, 'it': 1.0, 'worth': 1.0, 'are': 1.0, 'convertible': 1.0, 'inch': 1.0, 'a': 2.0, 'that': 1.0, 'plan': 1.0, 'is': 2.0, 'really': 1.0, 'problem': 1.0, 'i': 3.0, 'sheet': 3.0, 'have': 1.0, 'perfect': 1.0, 'full': 1.0, 'this': 1.0, 'secure': 1.0, 'only': 1.0, 'do': 1.0, 'the': 11.0, 'idea': 1.0, 'very': 1.0, 'big': 1.0, 'like': 1.0, 'snap': 1.0, 'bed': 1.0, 'fit': 1.0, 'for': 4.0, 'of': 2.0, 'and': 1.0, 'too': 1.0, 'corner': 1.0, 'corners': 1.0, 'by': 1.0, 'thick': 1.0, 'toddler': 1.0, 'staps': 1.0, 'space': 1.0, 'to': 4.0, 'now': 1.0, 'secured': 1.0, 'slat': 1.0, 'beside': 1.0, 'an': 1.0, 'leaving': 1.0, 'no': 1.0, 'about': 1.0, 'biggy': 1.0, 'not': 1.0, 'crib': 3.0, 'covered': 1.0}
Word element => {'gift': 1.0, 'say': 1.0, 'what': 1.0, 'off': 1.0, 'and': 1.0, 'get': 1.0, 'should': 1.0, 'around': 1.0, 'snap': 1.0, 'easier': 1.0, 'much': 1.0, 'else': 1.0, 'so': 1.0, 'who': 1.0, 'on': 2.0, 'they': 1.0, 'time': 1.0, 'is': 2.0, 'sheets': 1.0, 'yes': 1.0, 'perfect': 1.0, 'wash': 1.0, 'waterproof': 1.0, 'slats': 1.0, 'crib': 2.0, 'pretty': 1.0, 'but': 1.0, 'have': 1.0, 'this': 1.0, 'i': 2.0, 'answer': 1.0, 'mess': 1.0, 'the': 3.0, 'to': 2.0, 'them': 1.0, 'wants': 1.0, 'every': 1.0, 'there': 1.0, 'since': 1.0, 'a': 1.0, 'well': 1.0}
Word element => {'hazard': 1.0, 'of': 1.0, 'measured': 1.0, 'some': 1.0, 'it': 2.0, 'this': 1.0, 'choking': 1.0, 'standard': 1.0, 'snaps': 1.0, 'did': 1.0, 'since': 1.0, 'hood': 1.0, 'the': 2.0, 'but': 1.0, 'make': 1.0, 'before': 1.0, 'just': 1.0, 'was': 1.0, 'our': 1.0, 'to': 2.0, 'fit': 1.0, 'for': 1.0, 'purchasing': 1.0, 'feel': 1.0, 'comfortable': 1.0, 'lind': 1.0, 'been': 1.0, 'i': 1.0, 'potential': 1.0, 'a': 2.0, 'could': 2.0, 'enough': 1.0, 'snap': 1.0, 'stretch': 1.0, 'crib': 2.0, 'dangling': 1.0, 'far': 1.0, 'closed': 1.0, 'so': 1.0, 'they': 2.0, 'jenny': 1.0, 'hung': 1.0, 'elastic': 1.0, 'thee': 1.0, 'those': 1.0, 'not': 3.0, 'me': 1.0, 'have': 2.0, 'straps': 1.0}
Word element => {'of': 1.0, 'month': 1.0, 'last': 1.0, 'money': 1.0, 'waste': 1.0, 'don': 1.0, 'wrinkled': 1.0, 'washing': 2.0, 'dried': 1.0, 'like': 1.0, 'and': 4.0, 'padded': 1.0, 'vinyl': 1.0, 'they': 3.0, 'year': 1.0, 'all': 1.0, 'as': 1.0, 'were': 1.0, 'when': 2.0, 'daughter': 1.0, 'less': 1.0, 'one': 1.0, 'bought': 1.0, 'the': 2.0, 'these': 1.0, 'is': 1.0, 'more': 1.0, 'my': 2.0, 't': 2.0, 'a': 2.0, 'ago': 1.0, 'your': 1.0, 'washed': 1.0, 'best': 1.0, 'years': 1.0, 'for': 1.0, 'son': 1.0, 'still': 1.0, 'have': 1.0, 'backing': 1.0, 'thickly': 1.0, 'them': 1.0, 'use': 1.0, 'then': 2.0, 'got': 1.0, 'regularly': 1.0, 'after': 1.0, 'came': 1.0, 'two': 2.0, 'i': 3.0, 'junk': 1.0, 'along': 1.0, 'this': 1.0, 'only': 1.0, 'what': 1.0, 'are': 1.0, 'now': 1.0, 'dream': 1.0, 'than': 1.0, 'won': 1.0, 'half': 1.0, 'sheets': 1.0, 'thick': 1.0}
Word element => {'couple': 1.0, 'sure': 1.0, 'make': 1.0, 'either': 1.0, 'won': 1.0, 'basis': 1.0, 'on': 3.0, 'strong': 1.0, 'think': 1.0, 'short': 1.0, 't': 6.0, 's': 2.0, 'done': 1.0, 'going': 1.0, 'we': 1.0, 'mine': 1.0, 'bit': 1.0, 'sheet': 2.0, 'time': 2.0, 'underneath': 1.0, 'recently': 2.0, 'started': 1.0, 'son': 1.0, 'serious': 1.0, 'they': 2.0, 'means': 1.0, 'and': 4.0, 'life': 1.0, 'without': 1.0, 'so': 1.0, 'can': 1.0, 'but': 2.0, 'most': 1.0, 'he': 1.0, 'this': 1.0, 'mattress': 1.0, 'dirty': 1.0, 'overnight': 1.0, 'a': 3.0, 'imagine': 1.0, 'the': 7.0, 'of': 2.0, 'got': 1.0, 'are': 2.0, 'diapers': 1.0, 'sheets': 1.0, 'blankie': 1.0, 'have': 4.0, 'ultimate': 1.0, 'born': 1.0, 'still': 1.0, 'certainly': 1.0, 'thing': 1.0, 'about': 1.0, 'now': 1.0, 'was': 1.0, 'doesn': 2.0, 'although': 1.0, 'besides': 1.0, 've': 1.0, 'his': 3.0, 'some': 2.0, 'showing': 1.0, 'two': 1.0, 'i': 4.0, 'mths': 1.0, 'when': 1.0, 'unless': 1.0, 'you': 2.0, 'crib': 2.0, 'size': 1.0, 'ends': 1.0, 'bother': 1.0, 'my': 2.0, 'me': 1.0, 'bumper': 1.0, 'or': 1.0, 'wear': 1.0, 'it': 3.0, 'him': 1.0, 'changed': 1.0, 'bed': 1.0, 'don': 2.0, 'favorite': 2.0, 'up': 1.0, 'for': 2.0, 'six': 1.0, 'really': 1.0, 'months': 1.0, 'get': 2.0, 'leaking': 1.0, 'which': 1.0, 'had': 1.0, 'obviously': 1.0, 'to': 1.0, 'changing': 1.0, 'that': 1.0, 'taking': 1.0, 'way': 1.0, 'off': 1.0, 'out': 1.0, '18': 1.0, 'weekly': 1.0}
Word element => {'invented': 1.0, 'ever': 1.0, 'buying': 1.0, 'end': 1.0, '5': 1.0, 'having': 1.0, 'know': 1.0, 'everyone': 1.0, 'of': 2.0, 'all': 2.0, 'sheets': 1.0, 'that': 1.0, 'changing': 1.0, 'me': 1.0, 'their': 1.0, 'placing': 1.0, 'by': 1.0, 'saves': 1.0, 'sick': 1.0, 'from': 2.0, 'my': 1.0, 'telephone': 1.0, 'best': 1.0, 'years': 2.0, 'the': 4.0, 'is': 1.0, 'more': 2.0, 'up': 1.0, 'over': 1.0, '1': 1.0, 'and': 4.0, 'time': 1.0, 'sheet': 3.0, 'baby': 2.0, 'them': 3.0, '4': 1.0, 'i': 7.0, 'daughters': 1.0, 'was': 2.0, 'an': 1.0, 'past': 1.0, 'but': 1.0, 'had': 1.0, 'purchased': 3.0, 'use': 1.0, 'greatful': 1.0, 'crib': 2.0, 'little': 1.0, 'for': 4.0, 'ad': 1.0, 'have': 2.0, 'it': 2.0, 'now': 1.0, 'older': 1.0, 'after': 1.0, 'received': 1.0, '3': 1.0, 'this': 2.0, 'kids': 1.0, 'idea': 1.0, 'when': 1.0, 'called': 1.0, 'are': 2.0, 'ago': 1.0, 'a': 4.0, 'pillows': 1.0, 'several': 1.0, 'no': 1.0, 'longer': 1.0, 'in': 1.0, 'under': 1.0, 'beds': 1.0, 'still': 2.0, 'they': 2.0}
Word element => {'to': 1.0, 'having': 1.0, 'before': 1.0, 'way': 1.0, 'sent': 1.0, 'glad': 1.0, 'suffocating': 1.0, 'pad': 1.0, 'their': 1.0, 'find': 1.0, 'learn': 1.0, 'moms': 1.0, 'like': 1.0, 'back': 2.0, 'scratchy': 1.0, 'trap': 1.0, 'started': 1.0, 'the': 4.0, 'so': 1.0, 'after': 1.0, 'material': 1.0, 'many': 1.0, 'is': 1.0, 'felt': 1.0, 'realized': 1.0, 'and': 2.0, 'decision': 1.0, 'i': 4.0, 'death': 1.0, 'made': 1.0, 'sheet': 1.0, 'hard': 1.0, 'it': 3.0, 'this': 3.0, 'underneath': 1.0, 'received': 1.0, 'reviews': 1.0, 'reading': 1.0, 'babies': 1.0, 'thing': 1.0, 'all': 1.0, 'sounds': 1.0, 'on': 1.0, 'a': 2.0, 'by': 1.0, 'good': 1.0, 'sending': 1.0}
Word element => {'out': 1.0, 'more': 1.0, 'expected': 1.0, 'really': 1.0, 'but': 1.0, 'children': 1.0, 'future': 1.0, 'this': 1.0, 'first': 1.0, 'that': 2.0, 'however': 1.0, 'was': 3.0, 'had': 1.0, 'use': 1.0, 'wonderful': 1.0, 'than': 1.0, 'maybe': 1.0, 'months': 3.0, 'so': 1.0, 'time': 1.0, 'son': 1.0, 'i': 2.0, 'up': 1.0, 'he': 1.0, 'plastic': 1.0, '6': 3.0, 'of': 3.0, 'product': 2.0, 'for': 2.0, 'in': 2.0, 'the': 4.0, 'holes': 1.0, 'these': 1.0, 'such': 1.0, 'ones': 1.0, 'his': 1.0, 'sleep': 1.0, 'all': 1.0, 'ultimate': 1.0, 'crib': 1.0, 'sheets': 1.0, 'developed': 1.0, 'and': 1.0, 'new': 1.0, 'backs': 1.0, 'a': 2.0, 'by': 1.0, 'cracks': 1.0, 'life': 1.0, 'saver': 1.0, 'spit': 1.0, 'will': 1.0, 'my': 2.0, 'purchase': 1.0, 'different': 1.0, 'old': 1.0, 'brand': 1.0}
Word element => {'one': 1.0, 'on': 1.0, 'put': 1.0, 'can': 1.0, 'of': 1.0, 'those': 1.0, 'pushing': 1.0, 'kept': 1.0, 'that': 1.0, 'pretty': 1.0, 'handed': 1.0, 'keep': 1.0, 'over': 1.0, 'lay': 1.0, 'off': 1.0, 'snap': 1.0, 'just': 1.0, 'changes': 1.0, 'middle': 1.0, 'matches': 1.0, 'crib': 4.0, 'even': 1.0, 'didn': 2.0, 'no': 1.0, 'with': 1.0, 'fitted': 2.0, 'it': 4.0, 'sheet': 7.0, 's': 1.0, 'a': 4.0, 't': 2.0, 'bedding': 1.0, 'wrestling': 1.0, 'gift': 1.0, 'for': 3.0, 'both': 1.0, 'night': 1.0, 'baby': 1.0, 'moms': 1.0, 'moved': 1.0, 'and': 5.0, 'get': 1.0, 'mom': 2.0, 'less': 1.0, 'in': 3.0, 'the': 10.0, 'place': 2.0, 'while': 1.0, 'than': 1.0, 'perfect': 1.0, 'minute': 1.0, 'new': 1.0, 'more': 1.0, 'is': 2.0, 'around': 1.0, 'must': 1.0, 'ultimate': 3.0, 'have': 1.0, 'frustrated': 1.0, 'be': 2.0, 'trying': 1.0, 'matress': 1.0, 'bumper': 1.0, 'all': 1.0, 'to': 2.0, 'pads': 1.0}
Word element => {'plastic': 1.0, 'sheets': 2.0, 'crib': 1.0, 'been': 1.0, 'thank': 1.0, 'boy': 1.0, 'time': 1.0, 'dry': 1.0, 'him': 1.0, 'is': 2.0, 'these': 1.0, 'the': 4.0, 'our': 1.0, 'spraying': 1.0, 'newborn': 1.0, 'having': 1.0, 'really': 1.0, 'every': 1.0, 'baby': 1.0, 'i': 1.0, 'us': 1.0, 'we': 2.0, 't': 1.0, 'lined': 1.0, 'a': 1.0, 'has': 1.0, 'well': 1.0, 'since': 1.0, 'see': 1.0, 'ball': 1.0, 'and': 1.0, 'goodness': 1.0, 'underneath': 1.0, 'with': 1.0, 'it': 4.0, 'covers': 1.0, 'clean': 1.0, 'bought': 1.0, 'entire': 1.0, 'top': 2.0, 'of': 1.0, 'bottom': 1.0, 'change': 1.0, 'can': 1.0, 'but': 1.0, 'keeps': 1.0, 'soft': 1.0, 'while': 1.0}
Word element => {'on': 1.0, 'mattress': 1.0, 'cumbersome': 1.0, 'than': 1.0, 'rather': 1.0, 'snap': 1.0, 'simply': 1.0, 'night': 1.0, 'in': 1.0, 'when': 1.0, 'lifting': 1.0, 'better': 2.0, 'be': 1.0, 'to': 4.0, 'adorable': 1.0, 'much': 2.0, 'purchase': 1.0, 'and': 1.0, 'get': 2.0, 'printed': 1.0, 'smart': 1.0, 'yes': 1.0, 'you': 1.0, 'sheets': 2.0, 'so': 2.0, 'middle': 1.0, 'a': 2.0, 'regular': 1.0, 'change': 1.0, 'is': 3.0, 'sheet': 3.0, 'may': 1.0, 'it': 3.0, 'this': 3.0, 'fun': 1.0, 'have': 1.0, 'all': 1.0, 'but': 1.0, 'up': 1.0, 'unsnap': 1.0, 'of': 2.0, 'such': 1.0, 'the': 4.0}
Word element => {'than': 1.0, 'less': 1.0, 'me': 1.0, 'takes': 1.0, 'at': 1.0, 'clean': 1.0, 'times': 1.0, 'you': 1.0, 'have': 2.0, 'one': 1.0, 'huge': 1.0, 'that': 2.0, '3': 1.0, 'make': 1.0, 'think': 1.0, 'great': 1.0, 'the': 2.0, 'use': 1.0, 'these': 2.0, 'already': 1.0, 'then': 1.0, 'didn': 1.0, 'born': 1.0, 'had': 1.0, 'minutes': 1.0, 'was': 1.0, 'now': 1.0, 'daughter': 1.0, 'i': 5.0, 'received': 1.0, 'of': 2.0, 'up': 1.0, 'sheets': 3.0, 'would': 1.0, 'after': 1.0, 'so': 2.0, 'and': 2.0, 'all': 1.0, 'to': 2.0, 'as': 1.0, 'gift': 1.0, 'my': 1.0, 'them': 2.0, 't': 2.0, 'a': 1.0, 'bedding': 1.0, 'enough': 1.0, 'tried': 1.0, 'things': 1.0, 'several': 1.0, 'no': 1.0, 'about': 1.0, 'mattress': 1.0, 'this': 1.0, 'it': 2.0, 'product': 1.0, 'more': 1.0, 'say': 1.0, 'is': 1.0, '2': 2.0, 'can': 2.0, 'change': 2.0, 'sure': 1.0, 'easy': 1.0, 'lifting': 1.0}
Word element => {'worth': 1.0, 'don': 1.0, 'oh': 1.0, 'like': 1.0, 's': 1.0, 'seem': 1.0, 'how': 1.0, 'while': 1.0, 'to': 2.0, 'gagging': 1.0, 'my': 1.0, 't': 1.0, 'the': 4.0, 'woke': 1.0, 'hazzard': 1.0, 'chocking': 1.0, 'up': 1.0, '6': 1.0, 'a': 2.0, 'old': 1.0, 'i': 3.0, 'wonderful': 1.0, 'item': 1.0, 'it': 3.0, 'this': 1.0, 'elastic': 1.0, 'month': 1.0, 'on': 1.0, 'invention': 1.0, 'may': 1.0, 'strap': 1.0, 'miss': 1.0, 'that': 1.0, 'think': 1.0, 'holds': 1.0, 'sheet': 1.0, 'risk': 1.0, 'posses': 1.0, 'crib': 1.0}
Word element => {'runs': 1.0, 'laundry': 1.0, 'add': 1.0, 'task': 1.0, 'like': 1.0, 'difficult': 1.0, 'seem': 1.0, 'under': 1.0, 'get': 1.0, 'does': 1.0, 'baby': 1.0, 'if': 1.0, 'issue': 1.0, 'safety': 1.0, 'between': 1.0, 'slack': 1.0, 'doesn': 2.0, 'but': 1.0, 'inches': 1.0, 'couple': 1.0, 'offset': 1.0, 'side': 1.0, 'set': 1.0, 'far': 1.0, 'then': 1.0, 'and': 1.0, 'time': 1.0, 'sheet': 2.0, 'so': 2.0, 'hidden': 1.0, 'buying': 1.0, 'with': 1.0, 'll': 1.0, 'longer': 1.0, 'start': 1.0, 'fine': 1.0, 'seems': 1.0, 'not': 1.0, 'corner': 2.0, 'be': 2.0, 'rosa': 1.0, 'that': 1.0, 'more': 2.0, 'is': 1.0, 'hardware': 1.0, 'around': 3.0, 'enough': 2.0, 'on': 1.0, 'except': 1.0, 'long': 1.0, 'first': 1.0, 'snaps': 2.0, 'probably': 1.0, 'crib': 1.0, 'few': 1.0, 'by': 1.0, 'just': 4.0, 'corners': 2.0, 'have': 2.0, 'must': 1.0, 'big': 1.0, 'our': 3.0, 'to': 8.0, 'all': 1.0, 'outside': 1.0, 'as': 1.0, 't': 2.0, 'we': 3.0, 'a': 5.0, 'could': 1.0, 'go': 3.0, 'of': 2.0, 'no': 1.0, 'bars': 2.0, 'sorelle': 1.0, 'fit': 1.0, 'for': 2.0, 'allow': 1.0, 'each': 1.0, 'though': 1.0, 'appear': 1.0, 'straps': 1.0, 'strap': 1.0, 'are': 1.0, 'it': 1.0, 'effectively': 1.0, 'become': 1.0, 'two': 2.0, '4': 1.0, 'the': 8.0, 'deal': 1.0, 'extensions': 1.0, 'try': 1.0, 'do': 1.0}
Word element => {'them': 1.0, 'it': 1.0, 'time': 1.0, 'so': 1.0, 'there': 1.0, 'pinholes': 1.0, 'develop': 1.0, 'is': 1.0, 'shielding': 1.0, 'week': 1.0, 'through': 1.0, 'per': 1.0, 'washing': 1.0, 'now': 3.0, 'little': 2.0, '2009': 1.0, 'because': 1.0, '31': 1.0, 'year': 1.0, '01': 1.0, 'with': 2.0, 'went': 1.0, 'do': 1.0, 'of': 2.0, 'everything': 1.0, 'size': 5.0, 'below': 1.0, 'amount': 1.0, 'over': 1.0, 'up': 1.0, 'wash': 1.0, 'in': 1.0, 'great': 1.0, 'twin': 3.0, '4': 1.0, 'i': 5.0, 'times': 1.0, 'contain': 1.0, 'purchased': 1.0, 'wonderful': 1.0, 'use': 1.0, 'cracks': 1.0, 'worried': 1.0, 'they': 3.0, 'beautifully': 1.0, 'these': 2.0, '2': 2.0, 'the': 7.0, 'on': 1.0, 'son': 1.0, 'are': 3.0, 'mattress': 3.0, 'perfect': 1.0, 'full': 2.0, 'for': 3.0, 'opinion': 1.0, 'actually': 1.0, 'owned': 1.0, 'my': 2.0, 'small': 1.0, 'have': 2.0, 'update': 1.0, 'drastically': 1.0, 'starting': 2.0, 'and': 5.0, 'too': 1.0, 'both': 1.0, 'm': 1.0, 'waterproof': 1.0, 'decreased': 1.0, 'laundry': 1.0, 'here': 1.0, 'be': 1.0, 'been': 1.0, 'that': 2.0, 'was': 1.0, 'to': 5.0, 'pads': 4.0, 'we': 1.0, 's': 2.0, 'a': 3.0, 've': 2.0, 'would': 1.0, 'replace': 1.0, 'leak': 1.0, 'glad': 1.0}
Word element => {'recommended': 1.0, 'value': 1.0, 'seriously': 1.0, 'measurements': 1.0, 'been': 1.0, 'and': 3.0, 'offered': 1.0, 'would': 1.0, 'amazon': 1.0, 'is': 2.0, 'pleased': 1.0, 'large': 1.0, 'excellent': 1.0, 'what': 1.0, 'choose': 1.0, 'does': 1.0, 'one': 1.0, 'for': 2.0, 'bed': 1.0, 'comfortable': 1.0, 'i': 2.0, 'after': 1.0, 'was': 1.0, 'its': 1.0, 'absorbing': 1.0, 'a': 2.0, 'through': 1.0, 'an': 2.0, 'nightime': 1.0, 'have': 1.0, 'soft': 1.0, 'this': 2.0, 'with': 1.0, 'it': 3.0, 'pad': 1.0, 'keeping': 1.0, 'elderly': 1.0, 'waterproof': 1.0, 'looking': 2.0, 'person': 1.0, 'given': 1.0, 'terrific': 1.0, 'in': 1.0, 'also': 1.0, 'job': 1.0, 'the': 3.0, 'indicate': 1.0, 'dry': 1.0, 'very': 1.0, 'as': 2.0, 'not': 1.0, 'picture': 1.0, 'take': 1.0}
Word element => {'absorbs': 1.0, 'how': 1.0, 'don': 1.0, 'any': 1.0, 'has': 1.0, 't': 1.0, 'bulky': 1.0, 'know': 1.0, 'not': 2.0, 'traveling': 1.0, 'is': 2.0, 'too': 2.0, 'nice': 1.0, 'beds': 1.0, 'son': 2.0, 'in': 1.0, 'twin': 1.0, 'bought': 1.0, 'well': 1.0, 'since': 1.0, 'a': 1.0, 'accident': 1.0, 'my': 2.0, 'full': 1.0, 'are': 1.0, 'size': 1.0, 's': 1.0, 'i': 2.0, 'yet': 1.0, 'for': 2.0, 'bed': 1.0, 'of': 1.0, 'and': 2.0, 'other': 1.0, 'we': 1.0, 'had': 1.0, 'to': 1.0, 'pad': 1.0, 'use': 1.0, 'it': 4.0, 'able': 1.0, 'sizes': 1.0}
Word element => {'bed': 1.0, 'dealing': 1.0, 'parents': 1.0, 'child': 1.0, 'older': 1.0, 'wetting': 1.0, 'would': 1.0, 'am': 1.0, 'more': 1.0, 'recommend': 1.0, 'highly': 1.0, 'thus': 1.0, 'being': 1.0, 'mamma': 1.0, 'say': 1.0, 'well': 1.0, 'happen': 1.0, 'useful': 1.0, 'happy': 4.0, 'enough': 1.0, 'large': 1.0, 'aren': 1.0, 'know': 1.0, 'bladders': 1.0, 'toddlers': 1.0, 'read': 1.0, 'earlier': 1.0, 'give': 1.0, 'wanted': 1.0, 'husband': 1.0, 'stay': 1.0, 'course': 2.0, 'every': 3.0, 'let': 1.0, 'they': 2.0, 'maybe': 1.0, 'her': 4.0, 'huge': 1.0, 'pad': 4.0, 'new': 1.0, 'worried': 1.0, 'accomanied': 1.0, '6': 1.0, 'complained': 1.0, 'design': 1.0, 'never': 3.0, 'some': 1.0, 'princess': 1.0, 'blanket': 2.0, 'anyone': 1.0, 'helps': 1.0, 'does': 1.0, 'find': 2.0, 'since': 1.0, '1': 1.0, 'washed': 1.0, 'best': 1.0, 'both': 1.0, 'pajama': 1.0, 'finds': 1.0, 'add': 1.0, 'them': 2.0, 'regular': 1.0, 'these': 3.0, 'the': 18.0, 'there': 1.0, 'thru': 2.0, 'what': 1.0, 'securely': 1.0, 'sleeps': 1.0, 'with': 3.0, 'making': 1.0, 'sleep': 2.0, 'back': 1.0, 'encourage': 1.0, 'most': 2.0, 'going': 1.0, '2': 3.0, 's': 2.0, 'normally': 1.0, 'deal': 1.0, 'place': 1.0, 'road': 1.0, 'change': 1.0, 'comfortable': 1.0, 'if': 3.0, 'great': 1.0, 'throw': 1.0, 'night': 7.0, 'you': 3.0, 'bucks': 1.0, 'even': 2.0, 'of': 8.0, 'old': 1.0, 'number': 1.0, 'was': 7.0, 'avoided': 1.0, 'down': 2.0, 'to': 11.0, 'possible': 1.0, 'pads': 3.0, 'problem': 2.0, 'wasn': 2.0, 'this': 3.0, 'turned': 1.0, 'ups': 4.0, '4': 2.0, 'giving': 1.0, 'cups': 1.0, 'my': 3.0, 'may': 1.0, 'acceptance': 1.0, 'dripping': 1.0, 'is': 4.0, 'can': 1.0, 'comparison': 1.0, 'an': 1.0, 'other': 1.0, 'so': 3.0, 'invested': 1.0, 'i': 13.0, 'fast': 1.0, 'started': 1.0, 'feature': 1.0, 'or': 2.0, 'two': 1.0, 'mood': 1.0, 'made': 1.0, 'way': 1.0, 'sheets': 2.0, 'all': 1.0, 'yr': 1.0, 'nights': 1.0, 'a': 11.0, 't': 7.0, 'then': 1.0, 'used': 1.0, 'move': 1.0, 'as': 5.0, 'less': 1.0, 'pull': 5.0, 'after': 2.0, 'by': 1.0, 'waking': 1.0, 'tuck': 2.0, 'dry': 2.0, 'not': 1.0, 'that': 8.0, 'gave': 1.0, 'same': 1.0, 'says': 1.0, 'up': 4.0, 'washing': 1.0, 'weeks': 1.0, 'on': 1.0, 'she': 8.0, 'make': 2.0, 'fluke': 1.0, 'potty': 2.0, 'in': 12.0, 'been': 1.0, 'closet': 1.0, 'part': 1.0, 'accident': 1.0, 'quickly': 1.0, 'and': 7.0, 'just': 3.0, 'off': 2.0, 'any': 2.0, 'sheet': 3.0, 'might': 2.0, 'dryer': 1.0, 'anyway': 1.0, 'gotten': 1.0, 'no': 3.0, 'wet': 2.0, 'changing': 2.0, 'much': 2.0, 'few': 2.0, 'times': 1.0, 'for': 2.0, 'trained': 1.0, 'shortly': 1.0, 'fitted': 1.0, 'us': 1.0, 'also': 1.0, 'gets': 1.0, 'one': 1.0, 'got': 1.0, 'second': 1.0, 'about': 5.0, 'comforter': 1.0, 'sleeping': 1.0, 'over': 1.0, 'it': 12.0, 'own': 1.0, 'be': 2.0, 'underwear': 1.0, 'get': 1.0, 've': 5.0, 'while': 2.0, 'everyone': 3.0, 'come': 1.0, 'where': 1.0, 'during': 1.0, 'out': 1.0, 'shape': 1.0, 'follow': 1.0, 'sure': 2.0, 'instructions': 1.0, 'size': 1.0, 'absorbs': 1.0, 'urine': 1.0, 'generous': 1.0, 'but': 3.0, 'proper': 1.0, 'placement': 1.0, 'haven': 2.0, 'had': 2.0, 'tested': 1.0, 'bit': 1.0, 'soaked': 1.0, 'price': 2.0, 'isn': 1.0, 'whip': 1.0, 'we': 6.0, 'middle': 1.0, 'bad': 1.0, 'time': 1.0, 'top': 2.0, 'did': 1.0, 'side': 1.0, 'll': 1.0, 'naturally': 1.0, 'sides': 1.0, 'training': 1.0, 'have': 1.0, 'found': 2.0, 'cents': 1.0}
Word element => {'and': 1.0, 'beginning': 1.0, 'more': 1.0, 'the': 1.0, 'in': 1.0, 'bought': 1.0, 'easier': 1.0, 'much': 1.0, 'so': 1.0, 'life': 1.0, 'buying': 1.0, 'now': 1.0, 'to': 1.0, 'still': 1.0, 'm': 1.0, 'daughter': 1.0, 'year': 1.0, 'for': 1.0, 'three': 1.0, 'use': 1.0, 'got': 1.0, 'absorbant': 1.0, 'my': 2.0, 'old': 1.0, 'i': 3.0, 'night': 2.0, 'since': 1.0, 'she': 1.0, 'accidents': 1.0, 'makes': 1.0, 'has': 1.0, 'time': 1.0, 'this': 1.0, 'it': 1.0, 'works': 1.0, 'fabulous': 1.0, 'two': 2.0, 'at': 1.0, 'super': 1.0}
Word element => {'night': 1.0, 'sheets': 1.0, 'the': 2.0, 'more': 1.0, 'toddler': 1.0, 'product': 1.0, 'and': 1.0, 'highly': 1.0, 'middle': 1.0, 'in': 1.0, 'crib': 1.0, 'great': 1.0, 'changing': 1.0, 'of': 1.0, 'recommend': 1.0, 'no': 1.0, 'bed': 1.0}
Word element => {'to': 1.0, 'around': 1.0, 'almost': 1.0, 'job': 1.0, 'stay': 1.0, 'wrapped': 1.0, 's': 1.0, 'never': 1.0, 't': 1.0, 'the': 4.0, 'mattress': 1.0, 'does': 1.0, 'i': 1.0, 'but': 1.0, 'doesn': 1.0, 'it': 5.0, 'usally': 1.0, 'in': 1.0, 'morning': 1.0, 'up': 1.0, 'always': 1.0, 'where': 1.0, 'side': 1.0, 'left': 1.0, 'is': 1.0, 'bunched': 1.0}
Word element => {'washes': 1.0, 'all': 1.0, 'change': 1.0, 'having': 1.0, 'saves': 1.0, 'sheets': 2.0, 'usually': 1.0, 'covered': 1.0, 'pad': 1.0, 'purchase': 1.0, 'has': 1.0, 'of': 1.0, 'bed': 1.0, 'this': 2.0, 'from': 1.0, 'protects': 1.0, 'best': 1.0, 'put': 1.0, 'but': 1.0, 'will': 1.0, 'training': 1.0, 'our': 1.0, 'stays': 1.0, 'thats': 1.0, 'me': 1.0, 'and': 3.0, 'potty': 1.0, 'not': 1.0, 'started': 1.0, 'my': 1.0, 'been': 1.0, 'sleeper': 1.0, 'pee': 1.0, 'the': 3.0, 'rarely': 1.0, 'crazy': 1.0, 'to': 2.0, 'roll': 1.0, 'well': 1.0, 'a': 1.0, 'part': 1.0}
Word element => {}
Word element => {'will': 1.0, 'you': 2.0, 'toddler': 1.0, '2': 1.0, 'work': 1.0, 'would': 1.0, 'probably': 1.0, 'crib': 1.0, 'covered': 1.0, 'were': 1.0, 'make': 1.0, 'wanted': 1.0, 'and': 1.0, 'evening': 1.0, 'an': 1.0, 'course': 1.0, 'over': 1.0, 'is': 1.0, 'want': 1.0, 'if': 2.0, 'not': 2.0, 'worth': 1.0, 'tends': 1.0, 'hassle': 1.0, 'flaps': 1.0, 'lot': 1.0, 'since': 1.0, 'out': 1.0, 'them': 2.0, 'come': 1.0, 'she': 1.0, 'it': 2.0, 'sure': 2.0, 'bed': 3.0, 'for': 3.0, 'of': 3.0, 'under': 1.0, 'mattress': 2.0, 'though': 3.0, 'tucking': 1.0, 'sized': 1.0, 'does': 1.0, 'having': 1.0, 'in': 2.0, 'my': 1.0, 'daughter': 1.0, 'all': 1.0, 'to': 2.0, 'be': 2.0, 'bought': 1.0, 'wiggle': 1.0, 'worm': 1.0, 'have': 1.0, 'suppose': 1.0, 'the': 10.0, 'job': 1.0, 'without': 1.0, 'right': 1.0, 'morning': 1.0, 'protecting': 1.0, 'pad': 1.0, 'during': 1.0, 'remotely': 1.0, '1': 1.0, 'spot': 1.0, 'twin': 2.0, 's': 1.0, 'might': 1.0, 'a': 5.0, 'we': 2.0, 'i': 2.0, 'two': 1.0}
Word element => {'days': 1.0, 'fix': 1.0, 'have': 1.0, 'now': 1.0, 'side': 1.0, 'figure': 1.0, 'that': 1.0, 'is': 1.0, 'around': 1.0, 'wash': 1.0, 'in': 2.0, 'to': 3.0, 'this': 1.0, 'space': 1.0, 'a': 1.0, 's': 1.0, 'every': 1.0, 'plenty': 1.0, 'wall': 1.0, 'way': 1.0, 'deal': 1.0, 'the': 3.0, 'diaper': 1.0, 'and': 1.0, 'only': 1.0, 'works': 1.0, 'do': 1.0, 'my': 2.0, 'it': 3.0, 'covers': 1.0, 'couple': 1.0, 'out': 2.0, 'of': 1.0, 'daughter': 1.0, 'big': 1.0, 'great': 1.0, 'near': 1.0, 'keeps': 1.0, 'sliding': 1.0, 'presumably': 1.0, 'for': 1.0, 'because': 1.0, 'not': 2.0, 'just': 1.0, 'i': 4.0, 'tucking': 1.0, 'right': 1.0, 'time': 1.0, 'easy': 1.0, 'area': 1.0, 'sure': 1.0, 'complaint': 1.0, 'll': 1.0, 'm': 2.0, 'best': 1.0, 'but': 1.0}
Word element => {'anymore': 1.0, 'bed': 1.0, 'fit': 1.0, 'this': 1.0, 'item': 1.0, 'was': 1.0, 'so': 1.0, 'again': 1.0, 'buy': 1.0, 'terrible': 1.0, 'it': 2.0, 'shribled': 1.0, 'up': 1.0, 'doesnt': 1.0, 'much': 1.0, 'never': 1.0}
Word element => {'not': 1.0, 'how': 1.0, 'ideas': 1.0, 'creative': 1.0, 'with': 1.0, 'come': 1.0, 'down': 1.0, 'strip': 1.0, '3rd': 1.0, 'mattress': 1.0, 'this': 1.0, 'on': 2.0, 'mishap': 1.0, 'up': 1.0, 'child': 1.0, 'a': 3.0, 'have': 1.0, 'had': 2.0, 'was': 1.0, 'product': 1.0, 'daughter': 1.0, 'by': 1.0, 'bed': 2.0, 'of': 2.0, 'as': 1.0, 'to': 3.0, 'sleep': 1.0, 'job': 1.0, 'the': 6.0, 'done': 1.0, 'and': 2.0, 'couple': 1.0, 'but': 2.0, 'if': 1.0, 'only': 1.0, 'happens': 1.0, 'my': 1.0, 'accident': 1.0, 'an': 1.0, 'moves': 1.0, 'around': 1.0, 'whole': 1.0, 'fan': 1.0, 'i': 1.0, 'in': 1.0, 'clean': 1.0, 'her': 1.0, 'result': 1.0, 'gets': 1.0, 'still': 1.0, 'barely': 1.0, 'when': 1.0, 'times': 1.0, 'it': 3.0, 'covers': 1.0, 'she': 1.0, 'partially': 1.0, 'covered': 1.0, 'pad': 1.0}
Word element => {'keep': 1.0, 'another': 1.0, 'order': 1.0, 'around': 1.0, 'should': 1.0, 'wetness': 1.0, 'her': 1.0, 'all': 1.0, 'catches': 1.0, 'i': 2.0, 'wetter': 1.0, 'the': 1.0, 'great': 1.0, 'can': 1.0, 'one': 1.0, 'bed': 2.0, 'when': 1.0, 'daughter': 1.0, 'and': 2.0, 'travel': 1.0, 'my': 1.0, 'really': 2.0, 'is': 2.0, 'pad': 1.0, 'this': 2.0, 'stays': 1.0, 'or': 1.0, 'sleep': 1.0, 'soundly': 1.0, 'dry': 1.0, 'houses': 1.0, 'we': 1.0, 'to': 2.0, 'a': 1.0, 'relatives': 1.0, 'hotels': 1.0, 'because': 1.0}
Word element => {'year': 1.0, '5': 1.0, 'my': 1.0, 'fuzzy': 1.0, 'in': 1.0, 'it': 4.0, 'cheaper': 1.0, 'sides': 1.0, 'absorbs': 1.0, 'one': 1.0, 'tucks': 1.0, 'have': 3.0, 'protector': 1.0, 'wider': 1.0, 'i': 1.0, 'other': 3.0, 'than': 2.0, 'does': 1.0, 'and': 3.0, 'on': 1.0, 'is': 2.0, 'padding': 1.0, 'the': 5.0, 'a': 3.0, 't': 2.0, 'better': 1.0, 'old': 1.0, 'brand': 1.0, 'while': 1.0, 'son': 1.0, 'washes': 1.0, 'seem': 2.0, 'cushioning': 1.0, 'but': 1.0, 'doesn': 2.0, 'just': 1.0, 'leak': 1.0, 'of': 1.0, 'well': 2.0, 'has': 2.0, 'less': 1.0, 'smooth': 1.0, 'nice': 1.0, 'feel': 2.0, 'so': 1.0, 'sheet': 1.0, 'top': 2.0, 'preference': 1.0, 'to': 4.0, 'as': 1.0, 'our': 1.0, 'this': 1.0, 'mattress': 1.0, 'soft': 1.0}
Word element => {'there': 1.0, 'he': 1.0, 'moves': 1.0, 'son': 1.0, 'big': 1.0, 'from': 1.0, 'in': 3.0, 'does': 1.0, 'having': 1.0, 'look': 1.0, 'around': 1.0, 'not': 2.0, 'has': 1.0, 'these': 1.0, 'the': 3.0, 'very': 1.0, 'read': 1.0, 'my': 1.0, 'pull': 1.0, 'they': 3.0, 'reviews': 1.0, 'even': 1.0, 'picture': 1.0, 'them': 1.0, 'night': 1.0, 'are': 3.0, 'useful': 1.0, 'saved': 1.0, 'i': 1.0, 'two': 2.0, 'and': 3.0, 'shape': 1.0, 'bought': 1.0, 'notice': 1.0, 'a': 2.0, 'his': 2.0, 'washed': 1.0, 'on': 2.0, 'bed': 1.0, 'us': 1.0, 'when': 1.0, 'of': 1.0, 'trouble': 1.0, 'transition': 1.0, 'soft': 1.0, 'ups': 1.0, 'as': 3.0, 'to': 2.0, 'pads': 1.0, 'sleep': 2.0, 'underwear': 1.0, 'lot': 2.0, 'at': 1.0, 'keep': 1.0, 'their': 1.0}
Word element => {'daughters': 1.0, 'training': 1.0, 'toddler': 1.0, 'but': 1.0, 'perfect': 1.0, 'shows': 1.0, 'picture': 1.0, 'few': 1.0, 'pad': 1.0, 'saved': 1.0, 's': 2.0, 'it': 2.0, 'time': 1.0, 'isn': 1.0, 'times': 1.0, 'big': 1.0, 'as': 2.0, 't': 1.0, 'the': 2.0, 'my': 1.0, 'a': 2.0, 'fine': 1.0, 'size': 1.0, 'bed': 1.0, 'for': 1.0, 'night': 1.0}
Word element => {'2': 1.0, 'gotten': 1.0, 'wish': 1.0, 'out': 1.0, 'figuring': 1.0, 'should': 1.0, 'but': 1.0, 'sleeps': 2.0, 'this': 2.0, 'and': 4.0, 'd': 1.0, 'tough': 1.0, 'tuck': 1.0, 'is': 1.0, 'at': 1.0, 'had': 1.0, 'all': 2.0, 've': 1.0, 'way': 1.0, 'wake': 1.0, 'doesn': 1.0, 'was': 1.0, 'up': 2.0, 'nearly': 1.0, 'work': 1.0, 'over': 1.0, 'plus': 1.0, 'trained': 1.0, 'pad': 2.0, 'enough': 1.0, 'leaked': 1.0, 'been': 1.0, 'because': 1.0, 'that': 2.0, 'handy': 1.0, 'great': 1.0, 'while': 1.0, 'pee': 1.0, 'the': 11.0, 'place': 1.0, 't': 2.0, 'go': 1.0, 's': 5.0, 'a': 3.0, 'we': 2.0, 'could': 1.0, 'bought': 1.0, 'soundly': 1.0, 'i': 6.0, 'potty': 1.0, 'so': 2.0, 'to': 3.0, 'against': 1.0, 'has': 1.0, 'mind': 1.0, 'it': 8.0, 'bed': 2.0, 'for': 1.0, 'stars': 1.0, 'son': 3.0, 'year': 1.0, 'our': 1.0, 'how': 1.0, 'item': 1.0, 'on': 3.0, 'make': 1.0, 'top': 1.0, 'my': 2.0, 'doesnt': 1.0, 'like': 1.0, 'really': 1.0, 'with': 1.0, 'plenty': 1.0, 'soft': 1.0, 'works': 1.0, 'only': 2.0, 'changing': 1.0, 'do': 1.0, 'keeping': 1.0, 'time': 1.0, 'wide': 1.0, 'give': 2.0, 'dry': 1.0, 'not': 1.0, 'coverage': 1.0, 'never': 1.0, 'reason': 1.0, 'need': 1.0, 'through': 1.0, 'he': 2.0, 'far': 1.0, 'didn': 1.0, '5': 1.0, 'everyother': 1.0, 'side': 1.0, 'when': 1.0, 'night': 2.0, 'you': 1.0, 'have': 1.0, 'sheets': 2.0, 'wall': 1.0, 'in': 1.0, 'm': 1.0, 'sure': 1.0, 'sleeping': 1.0, 'they': 2.0, 'better': 1.0}
Word element => {'no': 1.0, 'to': 1.0, 'waterproofness': 1.0, 'charm': 1.0, 'one': 1.0, 'or': 1.0, 'start': 1.0, 'like': 1.0, 'a': 1.0, 'don': 1.0, 'longer': 1.0, 'second': 1.0, 'is': 2.0, 'on': 1.0, 'come': 1.0, 'it': 2.0, 'this': 1.0, 'the': 3.0, 't': 1.0, 'just': 1.0, 'apart': 1.0, 'in': 1.0, 'works': 1.0, 'dryer': 1.0, 'my': 1.0, 'high': 1.0, 'and': 2.0, 'setting': 1.0, 'will': 1.0, 'put': 1.0, 'backing': 1.0}
Word element => {'recommended': 1.0, 'well': 1.0, 'it': 3.0, 'works': 1.0, 'do': 1.0, 'goes': 1.0, 'always': 1.0, 'where': 1.0, 'good': 1.0, 'size': 1.0, 'big': 1.0, 'spend': 1.0, 'want': 1.0, 'on': 2.0, 'constantly': 1.0, 'my': 2.0, 'cleaning': 1.0, 'very': 2.0, 'didn': 1.0, 'got': 1.0, 'so': 1.0, 'back': 1.0, 'then': 1.0, 'up': 1.0, 'me': 1.0, 'small': 1.0, 'have': 1.0, 'nowhere': 1.0, 'i': 7.0, 'young': 1.0, 'old': 1.0, 'had': 1.0, 'was': 4.0, 'and': 6.0, 'price': 1.0, 'ton': 1.0, 'fun': 1.0, 'abandoned': 1.0, 'wish': 1.0, 'this': 1.0, 'full': 2.0, 'mattress': 2.0, 'found': 1.0, 'fostering': 1.0, 'bigger': 1.0, 'since': 2.0, 'at': 1.0, 'adorable': 1.0, 'definitely': 1.0, 'day': 2.0, 'sleep': 2.0, 'to': 7.0, 'outside': 1.0, 'waking': 1.0, 'tired': 1.0, 'night': 1.0, 'started': 1.0, 'because': 1.0, '5': 1.0, 'puppy': 2.0, 'week': 1.0, 'money': 1.0, 'blankets': 1.0, 'but': 3.0, 'is': 1.0, 'around': 1.0, 'washing': 1.0, 'he': 6.0, 'training': 1.0, 'during': 2.0, 'him': 2.0, 'besides': 1.0, 'would': 2.0, 'area': 1.0, 'get': 1.0, 'easy': 1.0, 'pretty': 1.0, 'take': 1.0, 'care': 1.0, 'of': 3.0, 't': 1.0, 'go': 3.0, 'a': 6.0, 's': 1.0, 'could': 1.0, 'enough': 1.0, 'cover': 3.0, 'off': 1.0, 'house': 1.0, 'pad': 1.0, 'or': 1.0, 'pee': 1.0, 'the': 3.0, 'without': 1.0}
Word element => {'potty': 1.0, 'learning': 1.0, 'are': 1.0, 'as': 1.0, 'girls': 1.0, 'our': 1.0, 'for': 1.0, 'like': 1.0, 'and': 1.0, 'some': 1.0, 'shift': 1.0, 'stay': 1.0, 'of': 1.0, 'leak': 1.0, 'have': 4.0, 'don': 1.0, 'them': 2.0, 'they': 3.0, 'used': 2.0, 'been': 1.0, 't': 1.0, 'these': 1.0, 'great': 1.0, 'the': 1.0, 'ones': 1.0, 'other': 1.0, 'we': 3.0, 'train': 1.0, 'toddler': 1.0, 'put': 1.0, 'never': 1.0, 'to': 1.0, 'had': 1.0}
Word element => {'mattress': 1.0, 'too': 1.0, 'into': 1.0, 'or': 1.0, 'sheet': 1.0, 'the': 2.0, 'on': 1.0, 'absorbs': 1.0, 'product': 1.0, 'really': 1.0, 'getting': 1.0, 'love': 1.0, 'it': 2.0, 'this': 1.0, 'saves': 1.0, 'urine': 1.0, 's': 1.0, 'well': 1.0, 'nicely': 1.0, 'and': 1.0, 'padded': 1.0, 'from': 1.0}
Word element => {'clean': 1.0, 'keep': 1.0, 'keeps': 1.0, 'i': 2.0, 'night': 1.0, 'very': 1.0, 'year': 1.0, 'sheets': 2.0, 'needed': 1.0, 'so': 1.0, 'am': 1.0, 'my': 3.0, 'happy': 1.0, 'we': 1.0, 'me': 1.0, 'those': 1.0, 'during': 1.0, 'most': 1.0, 'quick': 1.0, 'with': 2.0, 'this': 1.0, 'nights': 1.0, 'it': 3.0, 'something': 1.0, 'as': 1.0, 'to': 2.0, 'up': 1.0, 'sideways': 1.0, 'dry': 2.0, 'old': 1.0, 'makes': 1.0, 'in': 2.0, 'sleeps': 1.0, 'displayed': 1.0, 'is': 1.0, 'wide': 1.0, 'enough': 1.0, '3': 1.0, 'on': 1.0, 'the': 2.0, 'queen': 1.0, 'size': 1.0, 'bed': 1.0, 'product': 1.0, 'fit': 1.0, 'for': 1.0, 'ad': 1.0, 'accidents': 1.0, 'lay': 1.0, 'definitely': 1.0}
Word element => {'put': 1.0, 'on': 1.0, 'course': 1.0, 'of': 1.0, 'no': 1.0, 'accidents': 1.0, 'to': 1.0, 'purchased': 1.0, 'since': 1.0, 'the': 2.0, 'we': 1.0, 'easy': 2.0, 'but': 1.0, 'pad': 1.0, 'this': 1.0, 'was': 2.0, 'sale': 1.0}
Word element => {'cloth': 1.0, 'was': 1.0, 'be': 1.0, 'folding': 1.0, 'longer': 1.0, 'complaint': 1.0, 'only': 1.0, 'problem': 1.0, 'bed': 2.0, 'for': 2.0, 'many': 1.0, 'fine': 1.0, 'from': 1.0, 'year': 1.0, 'little': 1.0, 'very': 3.0, 'big': 1.0, 'using': 1.0, 'sleeping': 1.0, 'her': 1.0, 'mattress': 3.0, 'shift': 1.0, 'work': 1.0, 'thick': 1.0, 'toddler': 3.0, 'they': 1.0, 'bought': 1.0, 'underneath': 1.0, 'save': 1.0, 'my': 4.0, 'and': 6.0, 'i': 1.0, 'two': 2.0, 'turn': 1.0, 'have': 1.0, 'likes': 1.0, 'them': 1.0, 'position': 1.0, 'would': 1.0, 'wets': 1.0, 'however': 1.0, 'surface': 1.0, 'the': 8.0, 'hence': 1.0, 'area': 2.0, 'of': 1.0, 'pad': 1.0, 'not': 1.0, 'as': 1.0, 'pads': 3.0, 'to': 1.0, 'is': 4.0, 'around': 1.0, 'folded': 1.0, 'when': 1.0, 's': 1.0, 'could': 1.0, 'a': 1.0, 'we': 1.0, 'put': 1.0, 'on': 1.0, 'been': 1.0, 'that': 2.0, 'flip': 1.0, 'solves': 1.0}
Word element => {'so': 1.0, 'easier': 1.0, 'twins': 1.0, 'training': 1.0, 'night': 1.0, 'makes': 1.0, 'works': 1.0, 'great': 1.0, 'never': 1.0, 'stays': 1.0, 'much': 1.0, 'place': 1.0, 'on': 1.0, 'in': 1.0, 'had': 1.0, 'my': 1.0, 'the': 1.0, 'a': 1.0, 'leak': 1.0, 'bed': 1.0}
Word element => {'wash': 1.0, 'easy': 1.0, 'is': 1.0, 'daughters': 1.0, 'on': 2.0, 'about': 1.0, 'foam': 1.0, 'worry': 1.0, 'not': 1.0, 'potty': 1.0, 'finishing': 1.0, 'to': 2.0, 'was': 2.0, 'have': 2.0, 'thing': 2.0, 'concern': 1.0, 'saver': 1.0, 'a': 1.0, 'mattress': 1.0, 'what': 1.0, 'bed': 4.0, 'love': 2.0, 'the': 2.0, '2': 1.0, 'time': 1.0, 'it': 1.0, 'this': 3.0, 'with': 1.0, 'year': 1.0, 'i': 3.0, 'old': 1.0, 'my': 3.0, 'biggest': 1.0, 'back': 1.0, 'put': 1.0, 'training': 1.0, 'but': 1.0, 'and': 2.0, 'do': 1.0}
Word element => {'down': 1.0, 'upstairs': 1.0, 'have': 1.0, 'now': 1.0, 'in': 1.0, 'z': 1.0, 'e': 1.0, 'better': 1.0, 'worlds': 1.0, 'be': 1.0, 'one': 3.0, 'got': 1.0, 'surface': 1.0, 'plastic': 1.0, 'permanent': 1.0, 'called': 1.0, 'very': 2.0, 'from': 2.0, 'that': 2.0, 'changing': 4.0, 'contoured': 1.0, 'became': 1.0, 'girl': 1.0, 'a': 4.0, 'home': 1.0, 'it': 2.0, 'month': 1.0, 'she': 1.0, 'clean': 1.0, 'her': 1.0, 'two': 1.0, 'i': 5.0, 'hospital': 1.0, 'found': 1.0, 'allows': 1.0, 'this': 3.0, 'with': 1.0, 'than': 1.0, 'having': 2.0, 'soiled': 1.0, 'wash': 1.0, 'put': 1.0, 'on': 3.0, 'breast': 1.0, 'for': 5.0, 'website': 1.0, 'the': 5.0, 'strictly': 1.0, 'them': 1.0, 'wipe': 1.0, 'baby': 2.0, 'fact': 1.0, 'my': 4.0, 'another': 1.0, 'first': 1.0, 'unhappy': 1.0, 'stools': 1.0, 'born': 1.0, 'after': 1.0, 'kept': 1.0, 'cover': 2.0, 'pad': 5.0, 'registry': 1.0, 'every': 1.0, 'had': 1.0, 'to': 4.0, 'loose': 1.0, 'of': 1.0, 'diet': 1.0, 'has': 1.0, 'recommended': 1.0, 'milk': 1.0, 'and': 3.0, 'me': 1.0, 'close': 1.0, 'friend': 1.0, 'babiesrus': 1.0}
Word element => {'see': 1.0, 'really': 1.0, 'layers': 1.0, 'but': 1.0, 'comfy': 1.0, 'nice': 1.0, 'great': 1.0, 'other': 2.0, 'have': 1.0, 'downfall': 1.0, 'only': 1.0, 'be': 1.0, 'than': 1.0, 'way': 1.0, 'secure': 1.0, 'feels': 1.0, 'guess': 1.0, 'did': 1.0, 'lays': 1.0, 'dip': 2.0, 'different': 1.0, 'always': 1.0, 'has': 2.0, 'house': 1.0, 'feel': 1.0, 'mom': 1.0, 'they': 1.0, 'felt': 1.0, 'where': 2.0, 'given': 1.0, 'those': 2.0, 'flannel': 1.0, 'hugging': 1.0, 'without': 1.0, 'so': 1.0, 'can': 2.0, 'when': 1.0, 'me': 1.0, 'my': 2.0, 'underneath': 1.0, 'nicely': 1.0, 'there': 1.0, 'perfectly': 1.0, 'as': 3.0, 'to': 6.0, 'pads': 1.0, 'she': 1.0, 'baby': 3.0, 'a': 11.0, 'sides': 1.0, 's': 3.0, 'fit': 2.0, 't': 1.0, 'fine': 1.0, 'then': 1.0, 'pad': 5.0, 'cover': 4.0, 'legs': 1.0, 'got': 4.0, 'think': 2.0, 'do': 2.0, 'much': 1.0, 'changing': 4.0, 'put': 2.0, 'on': 4.0, 'cloth': 3.0, 'i': 13.0, 'just': 3.0, 'flail': 1.0, 'gift': 2.0, 'straps': 1.0, 'at': 1.0, 'is': 2.0, 'more': 4.0, 'also': 1.0, 'in': 2.0, 'you': 1.0, 'pees': 1.0, 'down': 2.0, 've': 3.0, 'would': 3.0, 'never': 3.0, 'used': 1.0, 'with': 2.0, 'terry': 3.0, 'if': 1.0, 'needs': 1.0, 'shower': 1.0, 'the': 12.0, 'of': 6.0, 'comes': 1.0, 'once': 1.0, 'this': 3.0, 'poops': 1.0, 'velcro': 1.0, 'right': 1.0, 'table': 4.0, 'covers': 1.0, 'like': 2.0, 'strap': 1.0, 'had': 1.0, 'scream': 1.0, 'one': 2.0, 'waterproof': 2.0, 'top': 3.0, 'back': 1.0, 'goes': 1.0, 'smaller': 1.0, 'wash': 1.0, 'don': 1.0, 'change': 2.0, 'up': 1.0, 'week': 1.0, 'that': 8.0, 'because': 1.0, 'bottom': 1.0, 'he': 7.0, 'falling': 1.0, 'need': 1.0, 'or': 1.0, 'middle': 1.0, 'out': 2.0, 'newborn': 1.0, 'though': 1.0, 'it': 8.0, 'him': 2.0, 'his': 1.0, 'and': 14.0, 'arms': 1.0, 'd': 1.0, 'was': 1.0}
Word element => {'will': 1.0, 'purchase': 1.0, 'and': 2.0, 'bucks': 1.0, 'extra': 1.0, 'few': 1.0, 'spend': 1.0, 'their': 1.0, 'has': 1.0, 'your': 2.0, 'safer': 1.0, 'replacement': 1.0, 'comfortable': 1.0, 'outgrown': 1.0, 'for': 2.0, 'adjuster': 2.0, 'in': 1.0, 'booster': 2.0, 'no': 1.0, 'adult': 1.0, 'car': 1.0, 'federally': 1.0, 'make': 1.0, 'system': 1.0, 'a': 2.0, 'positioning': 1.0, 'belt': 3.0, 'ride': 1.0, 'correctly': 1.0, 'is': 1.0, 'it': 1.0, 'this': 2.0, 'certified': 1.0, 'does': 1.0, 'seat': 4.0, 'not': 1.0, 'child': 3.0, 'keep': 1.0, 'if': 1.0, 'more': 1.0, 'the': 4.0, 'positioned': 1.0}
Word element => {'to': 1.0, 'use': 1.0, 'easy': 1.0, 'is': 1.0, 'safety': 1.0, 'as': 2.0, 'this': 1.0, 'item': 2.0, 'using': 1.0, 'a': 3.0, 'seat': 1.0, 'toddler': 2.0, 'also': 1.0, 'well': 1.0, 's': 2.0, 'increases': 2.0, 'when': 1.0, 'the': 1.0, 'comfort': 1.0, 'booster': 1.0}
Word element => {'them': 1.0, 'with': 1.0, 'about': 1.0, 'purchased': 1.0, 'commented': 1.0, 'cousins': 1.0, 'superior': 1.0, 'far': 1.0, 'more': 1.0, 'is': 1.0, 'one': 1.0, 'can': 1.0, 'but': 1.0, 'be': 2.0, 'short': 1.0, 'issues': 1.0, 'choked': 1.0, 'for': 1.0, 'love': 1.0, 'in': 1.0, 'if': 1.0, 'two': 1.0, 'i': 7.0, 'sent': 1.0, 'ever': 1.0, 'm': 1.0, 'over': 1.0, 'works': 1.0, 'certain': 1.0, 'and': 6.0, 'without': 1.0, 'the': 1.0, 'because': 1.0, 'just': 1.0, 'belt': 4.0, 'crosses': 1.0, 'this': 2.0, 'it': 4.0, 'item': 1.0, 'an': 1.0, 'solid': 1.0, 'new': 1.0, 'would': 1.0, 'position': 2.0, 'accident': 1.0, 'easy': 1.0, 'needed': 1.0, 'neck': 1.0, 'seller': 1.0, 'use': 2.0, 'seat': 4.0, 'to': 4.0, 'as': 1.0, 'from': 1.0, 'have': 1.0, 't': 1.0, 's': 2.0, 'a': 2.0, 'local': 1.0, 'were': 2.0, 'black': 1.0, 'wear': 1.0, 'their': 1.0, 'adjuster': 1.0, 'my': 2.0, 'another': 1.0, 'straps': 1.0, 'visiting': 1.0, 'difficult': 1.0, 'still': 1.0}
Word element => {'cars': 1.0, 'rental': 1.0, 'them': 1.0, 'leaving': 1.0, 'because': 1.0, 'extras': 1.0, 'some': 1.0, 'guess': 1.0, 'too': 1.0, 'and': 1.0, 'car': 1.0, 'cuts': 1.0, 'my': 2.0, 'although': 1.0, 'be': 1.0, 'am': 1.0, 'one': 2.0, 'people': 2.0, 'safe': 1.0, 'positioneri': 1.0, 'i': 6.0, 'auto': 1.0, 'those': 1.0, 'purchased': 1.0, 'of': 1.0, 'belt': 1.0, 'short': 2.0, 'gadget': 1.0, 'should': 1.0, 'adjuster': 1.0, 'seatbelt': 1.0, 'for': 3.0, 'fit': 1.0, 'this': 2.0, 'children': 1.0, 'wouldn': 1.0, 'the': 1.0, 'without': 1.0, 'myself': 1.0, 'neck': 1.0, 'that': 1.0, 'into': 1.0, 'little': 1.0, 'spare': 1.0, 'made': 1.0, 'works': 1.0, 'perfectly': 1.0, 'get': 2.0, 'us': 1.0, 'did': 1.0, 'keep': 2.0, 't': 1.0, 's': 1.0, 'a': 1.0, 'as': 1.0, 'seat': 1.0, 'to': 1.0, 'husband': 1.0, 'in': 2.0}
Word element => {'trash': 1.0, 'basic': 1.0, 'well': 1.0, 'serve': 1.0, 'waste': 1.0, 'complete': 1.0, 't': 1.0, 'a': 2.0, 'be': 1.0, 'genie': 1.0, 'cheaper': 1.0, 'as': 2.0, 'earned': 1.0, 'to': 3.0, 'sorry': 1.0, 'had': 2.0, 'odor': 1.0, 'boy': 1.0, 'time': 1.0, 'buy': 1.0, 'i': 5.0, 'contain': 1.0, 'price': 1.0, 'accompanies': 1.0, 'fisher': 1.0, 'of': 2.0, 'bought': 1.0, 'every': 1.0, 'found': 1.0, 'this': 2.0, 'fell': 1.0, 'it': 3.0, 'doesn': 1.0, 'was': 2.0, 'intended': 1.0, 'store': 1.0, 'out': 1.0, 'run': 1.0, 'originally': 1.0, 'the': 7.0, 'diaper': 4.0, 'than': 1.0, 'aside': 1.0, 'because': 1.0, 'not': 1.0, 'my': 1.0, 'fact': 1.0, 'even': 1.0, 'diapers': 1.0, 'apart': 1.0, 'pieces': 1.0, 'that': 2.0, 'into': 1.0, 'pail': 4.0, 'quite': 1.0, 'many': 1.0, 'can': 1.0, 'money': 1.0, 'change': 1.0, 'little': 1.0, 'went': 1.0, 'bag': 1.0, 'did': 1.0, 'pungent': 1.0, 'dirty': 1.0, 'hard': 1.0, 'from': 1.0, 'while': 1.0}
Word element => {'inexpensive': 1.0, 'pretty': 1.0, 'use': 1.0, 'clean': 1.0, 'easy': 1.0, 'freshness': 1.0, 'maintain': 1.0, 'so': 1.0, 'smell': 1.0, 'loses': 1.0, 'it': 3.0, 'with': 1.0, 'one': 1.0, 'the': 1.0, 'or': 2.0, 'worth': 1.0, 'when': 1.0, 'you': 2.0, 'local': 1.0, 'odors': 1.0, 'because': 1.0, 'this': 1.0, 'bin': 1.0, 'which': 1.0, 'need': 1.0, 'of': 1.0, 'keeps': 1.0, 'comes': 1.0, 'holds': 1.0, 'is': 2.0, 'replacement': 1.0, 'from': 1.0, 'diapers': 2.0, 'for': 1.0, 'love': 1.0, 'minimum': 1.0, 'vendors': 1.0, 'diaper': 1.0, 'ours': 1.0, 'and': 3.0, 'cloth': 2.0, 'two': 1.0, 'i': 1.0, 'day': 2.0, 'buy': 1.0, 's': 3.0, 'a': 2.0, 'we': 2.0, 'other': 1.0, 'that': 2.0, 'babies': 1.0, 'wash': 1.0, 'every': 1.0, 'to': 2.0, 'all': 1.0, 'our': 1.0, 'r': 1.0, 'us': 1.0, 'sells': 1.0, 'great': 1.0, 'deodisks': 1.0, 'can': 2.0, 'them': 1.0, 'online': 1.0}
Word element => {'type': 1.0, 'also': 1.0, 'different': 1.0, 'load': 1.0, 'bags': 2.0, 'and': 2.0, 'smell': 2.0, 'bought': 1.0, 'used': 1.0, 'his': 1.0, 'this': 1.0, 'first': 1.0, 'it': 4.0, 'regular': 1.0, 'pail': 2.0, 'for': 1.0, 'son': 1.0, 'great': 1.0, 'the': 2.0, 'diaper': 1.0, 'just': 1.0, 'not': 1.0, 'use': 1.0, 'easy': 2.0, 'was': 2.0, 'recommend': 1.0, 'kitchen': 1.0, 'trying': 1.0, 'trash': 1.0, 'of': 1.0, 'however': 1.0, 'walk': 1.0, 'did': 1.0, 'you': 1.0, 'contain': 1.0, 'diapers': 1.0, 'at': 1.0, 'our': 1.0, 'to': 2.0, 'all': 1.0, 'that': 1.0, 'into': 1.0, 'room': 1.0, 'new': 1.0, 'would': 1.0, 'we': 1.0, 'could': 1.0, 'hardly': 1.0, 'a': 1.0}
Word element => {'less': 1.0, 'kitchen': 1.0, 'pail': 1.0, 'a': 1.0, 'bag': 1.0, 'trash': 1.0, 'of': 1.0, 'idea': 1.0, 'not': 1.0, 'the': 2.0, 'using': 1.0, 'liked': 1.0, 'i': 1.0, 'bags': 1.0, 'however': 1.0, 'this': 1.0, 'it': 2.0, 'regular': 1.0, 'change': 1.0, 'is': 2.0, 'pain': 1.0, 'also': 1.0, 'to': 1.0, 'odor': 1.0}
Word element => {'dang': 1.0, 'smelly': 1.0, 'that': 1.0, 'way': 1.0, 'no': 2.0, 'about': 1.0, 'is': 1.0, 'other': 1.0, 'kitchen': 1.0, 'but': 1.0, 'change': 1.0, 'be': 1.0, 'also': 1.0, 'clean': 1.0, 'smell': 2.0, 'open': 1.0, 'investment': 1.0, 'great': 1.0, 'feel': 1.0, 'nice': 1.0, 'are': 1.0, 'my': 1.0, 'often': 1.0, 'time': 1.0, 'so': 1.0, 'really': 1.0, 'every': 1.0, 'won': 1.0, 'pail': 3.0, 'all': 1.0, 'to': 3.0, 'was': 3.0, '3': 1.0, 'on': 1.0, 'impressed': 1.0, 'and': 4.0, '4': 2.0, 'i': 9.0, 'genie': 3.0, 'refills': 2.0, 'which': 1.0, 'using': 1.0, 'at': 2.0, 'disks': 1.0, 'the': 8.0, 'diaper': 1.0, 'they': 1.0, 'shop': 1.0, 'threw': 1.0, 'up': 1.0, 'needing': 1.0, 'full': 1.0, 'this': 1.0, 'sale': 1.0, 'it': 3.0, 'nursery': 1.0, 'its': 1.0, 'do': 1.0, 'only': 3.0, 'taller': 1.0, 'pick': 1.0, 'saw': 1.0, 'bag': 2.0, 'need': 1.0, 'foul': 1.0, 'one': 1.0, 'bought': 1.0, 'from': 1.0, 'sent': 1.0, 'buy': 2.0, 'day': 1.0, 'fresh': 2.0, 'loved': 1.0, 'diapers': 1.0, 'got': 1.0, 'wasn': 1.0, 'out': 1.0, 'could': 1.0, 'a': 3.0, 't': 2.0, 'go': 1.0, 'back': 1.0, 'for': 1.0, 'stars': 1.0, 'than': 1.0, '14': 1.0, 'because': 2.0, 'when': 2.0, 'you': 4.0}
Word element => {'pulling': 1.0, 'they': 1.0, 'up': 1.0, 'child': 1.0, 'get': 1.0, 'easy': 1.0, 'very': 1.0, 'fail': 1.0, 'opens': 1.0, 'top': 1.0, 'also': 2.0, 'help': 1.0, 'start': 1.0, 'button': 1.0, 'spray': 1.0, 'soda': 1.0, 'baking': 1.0, 'once': 1.0, 'stink': 1.0, 'lysol': 1.0, 'of': 1.0, 'used': 1.0, 'bag': 1.0, 'have': 1.0, 'baby': 1.0, 'stinkier': 1.0, 'did': 1.0, 'well': 1.0, 'inside': 1.0, 'week': 1.0, 'things': 1.0, 'odor': 4.0, 'husband': 1.0, 'as': 1.0, 'to': 4.0, 'recommend': 1.0, 'was': 1.0, 'would': 2.0, 'bought': 1.0, 'a': 3.0, 'we': 1.0, 'could': 1.0, 'pail': 2.0, 'refills': 2.0, 'hopes': 1.0, 'become': 1.0, 'i': 3.0, 'escaped': 1.0, 'can': 1.0, 'change': 1.0, 'but': 1.0, 'money': 2.0, 'about': 1.0, 'it': 3.0, 'this': 2.0, 'with': 1.0, 'first': 1.0, 'grows': 1.0, 'on': 4.0, 'often': 1.0, 'save': 2.0, 'my': 1.0, 'the': 14.0, 'control': 2.0, 'into': 1.0, 'that': 3.0, 'not': 2.0, 'plastic': 1.0, 'disk': 1.0, 'more': 1.0, 'is': 2.0, 'included': 1.0, 'neutralize': 1.0, 'do': 1.0, 'works': 1.0, 'diapers': 1.0, 'even': 1.0, 'product': 1.0, 'for': 2.0, 'and': 4.0, 'closed': 1.0, 'easily': 1.0, 'when': 2.0, 'you': 2.0, 'lot': 1.0, 'keep': 1.0, 'at': 1.0}
Word element => {'old': 2.0, 'mth': 2.0, 'holding': 1.0, 'do': 1.0, 'simply': 1.0, 'very': 1.0, 'hitting': 1.0, 'tbny': 1.0, 'jus': 1.0, 'quick': 1.0, 'cause': 1.0, 'great': 1.0, 'just': 1.0, 'real': 1.0, 'are': 1.0, 'keeps': 1.0, 'it': 8.0, 'in': 3.0, 'of': 2.0, 'up': 1.0, 'bathroom': 1.0, '8': 1.0, 'this': 1.0, 'kids': 1.0, 'i': 2.0, '4': 2.0, '12': 1.0, 'product': 1.0, 'because': 1.0, 'usually': 1.0, 'them': 1.0, 'a': 5.0, 'closing': 1.0, 'easy': 3.0, 'diapers': 1.0, 'day': 1.0, 'and': 7.0, 'away': 1.0, 'is': 5.0, 'really': 1.0, 'babysit': 1.0, 'can': 2.0, 'but': 1.0, '2': 1.0, 'keep': 2.0, 'anywhere': 1.0, 'without': 1.0, 'the': 4.0, 'stinking': 1.0, 'everything': 1.0, 'button': 1.0, 'garbage': 1.0, 'to': 2.0, '22': 1.0, 'odor': 1.0, 'dispose': 1.0, 'while': 1.0, 'bags': 1.0, 'like': 1.0, 'you': 1.0, 'kitchen': 1.0, 'would': 1.0, 'or': 1.0}
Word element => {'pleased': 1.0, 'very': 1.0, 'special': 1.0, 'need': 1.0, 'to': 1.0, 'conveniently': 1.0, 'works': 1.0, 'provided': 1.0, 'seller': 1.0, 'locally': 1.0, 'bags': 1.0, 'find': 1.0, 'hard': 1.0, 'this': 2.0, 'item': 1.0, 'wonderful': 1.0, 'quickly': 1.0, 'at': 1.0, 'a': 1.0, 'don': 1.0, 'price': 1.0, 'great': 3.0, 'the': 1.0, 't': 1.0, 'diaper': 1.0, 'pail': 1.0, 'that': 1.0, 'you': 1.0}
Word element => {'difference': 1.0, 'will': 1.0, 'pail': 1.0, 'knocked': 1.0, 'trash': 1.0, 'shield': 1.0, 'odor': 1.0, 'stinky': 1.0, 'notice': 1.0, 'glad': 1.0, 'give': 1.0, 'if': 1.0, 'that': 1.0, 'bags': 1.0, 'found': 1.0, 'i': 2.0, 'the': 2.0, 'regular': 1.0, 'stuff': 1.0, 'is': 1.0, 'you': 1.0, 'way': 1.0, 'this': 1.0, 'with': 1.0, 'it': 1.0, 'down': 1.0, 'a': 1.0, 'use': 1.0, 'try': 1.0}
Word element => {'seen': 1.0, 'haven': 1.0, 'at': 1.0, 'replaced': 1.0, 'be': 1.0, 'diaper': 1.0, 'tie': 1.0, 'i': 2.0, 'placing': 1.0, 'sold': 1.0, 'and': 3.0, 'baggies': 1.0, 'deoderizing': 1.0, 'poopy': 1.0, 'smell': 1.0, 'before': 1.0, 'part': 1.0, 'this': 2.0, 'first': 1.0, 'with': 1.0, 'circumstances': 1.0, 'it': 1.0, 'in': 3.0, 'diapers': 1.0, 'week': 1.0, 'pail': 2.0, 'empty': 1.0, 'purchased': 1.0, 'under': 1.0, 'son': 1.0, 'anywhere': 1.0, 'wondering': 1.0, 'our': 2.0, 'all': 2.0, 'normal': 1.0, 'was': 1.0, 'would': 1.0, 'the': 3.0, 'without': 1.0, 'can': 1.0, 'nursury': 1.0, 'them': 3.0, 'baby': 1.0, 're': 1.0, 't': 1.0, 'we': 3.0, 'a': 2.0, 'going': 1.0, 'put': 1.0, 'on': 1.0, 'second': 1.0, 'shut': 1.0, 'if': 1.0, 'once': 1.0, 'of': 1.0}
Word element => {'friends': 1.0, 'one': 1.0, 'bought': 1.0, 'away': 1.0, 'top': 1.0, 'babys': 1.0, 'extreemly': 1.0, 'most': 1.0, 'but': 1.0, 'overfilling': 1.0, 'keeps': 1.0, 'lots': 1.0, 'after': 1.0, 'seem': 1.0, 'up': 1.0, 'that': 2.0, 'have': 1.0, 'inside': 1.0, 'complaint': 1.0, 'only': 1.0, 'odor': 1.0, 'rid': 1.0, 'pail': 1.0, 'get': 2.0, 'closed': 1.0, 'and': 3.0, 'keep': 1.0, 'at': 1.0, 'no': 1.0, 'not': 1.0, 'like': 1.0, 'trip': 1.0, 'function': 1.0, 'however': 1.0, 'use': 1.0, 'durabilty': 1.0, 'products': 1.0, 'become': 1.0, 'i': 7.0, 'springs': 1.0, 'buy': 2.0, 'baby': 2.0, 'before': 1.0, 'having': 1.0, 'does': 1.0, 'the': 10.0, 'diaper': 1.0, 'lid': 1.0, 'tight': 1.0, 'another': 1.0, 'my': 4.0, 'for': 2.0, 'had': 2.0, 'daughter': 1.0, 'a': 1.0, 'going': 1.0, 'on': 3.0, 'research': 1.0, 'of': 3.0, 'shower': 1.0, 'this': 1.0, 'it': 2.0, 'did': 2.0, 'smell': 1.0, 'own': 1.0, 'to': 4.0, 'all': 3.0, 'best': 2.0, 'is': 2.0, 'really': 1.0, 'loose': 1.0, 'out': 1.0, 'their': 2.0, 'are': 1.0, 'pleased': 1.0, 'special': 1.0, 'need': 1.0, 'bags': 1.0, 'you': 1.0, 'was': 2.0, 'store': 1.0}
Word element => {'brand': 1.0, 'try': 1.0, 'have': 1.0, 'springs': 1.0, 'break': 1.0, 'me': 1.0, '1': 1.0, 'the': 3.0, 'diaper': 1.0, 'uses': 1.0, 'diapers': 1.0, 'doesn': 1.0, 'stinks': 1.0, '2': 1.0, 'but': 1.0, 'many': 1.0, 'very': 1.0, 'hold': 1.0, 'it': 4.0, 'lot': 1.0, 'pail': 1.0, 'qualities': 1.0, 'has': 1.0, 'time': 1.0, 'of': 1.0, 'is': 1.0, 'trash': 1.0, 'this': 1.0, 'wish': 1.0, 'on': 1.0, '3': 1.0, 'negative': 1.0, 'different': 2.0, 'good': 1.0, 'regular': 1.0, 'in': 2.0, 'that': 1.0, 'liners': 1.0, 'i': 3.0, 'bought': 1.0, 'one': 1.0, 'beginning': 1.0, 'now': 1.0, 'all': 1.0, 'to': 2.0, 'd': 1.0, 'm': 1.0, 't': 1.0, 'a': 3.0, 'going': 1.0}
Word element => {'money': 1.0, 'of': 1.0, 'watse': 1.0, 'not': 1.0, 'hopefully': 1.0, 'expense': 1.0, 'newest': 1.0, 'baby': 1.0, 'them': 1.0, 'fixed': 2.0, 'odor': 2.0, 'finally': 1.0, 'so': 2.0, 'is': 2.0, 'broke': 2.0, 'put': 1.0, 'on': 1.0, 'the': 11.0, 'i': 4.0, 'regestered': 1.0, 'first': 1.0, 'inside': 3.0, 'everytime': 1.0, 'for': 2.0, 'liked': 1.0, 'bag': 1.0, 'at': 2.0, 'then': 3.0, 'daiper': 1.0, 'springs': 1.0, 'looking': 1.0, 'pail': 2.0, 'a': 1.0, 'we': 5.0, 'could': 1.0, 'drive': 1.0, 'this': 1.0, 'ups': 1.0, 'it': 2.0, 'fell': 1.0, 'apart': 1.0, 'best': 1.0, 'stick': 1.0, 'help': 1.0, 'changed': 1.0, 'insert': 1.0, 'gone': 1.0, 'am': 1.0, 'online': 1.0, 'before': 1.0, 'new': 1.0, 'pails': 1.0, 'store': 1.0, 'to': 2.0, 'insides': 1.0, 'our': 1.0}
Word element => {'inside': 1.0, 'keeps': 1.0, 'something': 1.0, 'uses': 1.0, 'months': 1.0, 'that': 2.0, 'and': 3.0, 'dollars': 1.0, 'do': 1.0, 'use': 1.0, 'of': 1.0, 'plus': 1.0, 'the': 5.0, 'diaper': 1.0, 'currently': 1.0, 'standard': 1.0, 'now': 1.0, 'odor': 2.0, 'used': 1.0, 'have': 1.0, 'this': 2.0, 'it': 1.0, 'few': 1.0, 'pail': 1.0, 'spend': 1.0, 'fills': 1.0, 'kitchen': 1.0, 'safety': 1.0, '1st': 1.0, '13': 1.0, 'size': 1.0, 'buy': 1.0, 'ease': 1.0, 'looking': 1.0, 'still': 1.0, 'more': 1.0, 'comes': 1.0, 'is': 1.0, 'we': 2.0, 'a': 2.0, 'through': 1.0, 'room': 1.0, 'are': 1.0, 'fact': 1.0, 'often': 1.0, 'another': 1.0, 'bags': 1.0, 'solution': 1.0, 'recommend': 1.0, 'i': 1.0, 'not': 1.0, 'actually': 1.0, 'for': 2.0, 'product': 1.0}
Word element => {'product': 1.0, 'recommend': 1.0, 'highly': 1.0, 'pricey': 1.0, 'whiff': 1.0, 'so': 1.0, 'refills': 1.0, 'a': 1.0, 'drawstring': 1.0, 'have': 1.0, 'this': 2.0, 'never': 2.0, 'other': 1.0, 'smell': 1.0, 'part': 1.0, 'dirty': 1.0, 'you': 1.0, 'i': 4.0, 'buy': 1.0, 'of': 2.0, 'trash': 1.0, 'to': 2.0, 'pail': 1.0, 'catch': 1.0, 'thanks': 1.0, 'diapers': 1.0, 'instead': 1.0, 'use': 1.0, 'diaper': 1.0, 'the': 3.0, 'regular': 1.0, 'is': 1.0, 'contents': 1.0, 'wonderful': 2.0, 'can': 1.0, 'bags': 1.0}
Word element => {'has': 1.0, 'time': 1.0, 'pail': 1.0, 'to': 4.0, 'now': 1.0, 'had': 2.0, 'was': 1.0, 'on': 1.0, 'it': 6.0, 'this': 1.0, 'with': 1.0, 'try': 1.0, 'only': 1.0, 'i': 4.0, 'genie': 1.0, 'smelly': 1.0, 'tried': 1.0, 'cheap': 1.0, 's': 1.0, 'trying': 1.0, 'broken': 2.0, 'll': 1.0, 'replaced': 1.0, 'mailing': 1.0, 'parts': 1.0, 'diaper': 3.0, 'the': 3.0, '1st': 1.0, 'worth': 2.0, 'send': 1.0, 'have': 3.0, 'and': 2.0, 'not': 2.0, 'me': 1.0, 'in': 2.0, 'pay': 1.0, 'new': 1.0, 'something': 1.0, 've': 1.0, 'cost': 1.0, 'part': 1.0, 'safety': 1.0, 'even': 1.0, 'but': 1.0, 'stinks': 1.0, 'loss': 1.0, 'of': 1.0, 'one': 1.0}
Word element => {'star': 1.0, 'product': 1.0, 'beware': 1.0, 'not': 1.0, 'away': 1.0, 'throw': 1.0, 'smell': 1.0, 'toilet': 1.0, 'from': 1.0, 'dump': 1.0, 'have': 1.0, 'in': 2.0, 'keeping': 1.0, 'about': 1.0, 'soiled': 1.0, 'poopy': 1.0, 'don': 1.0, 'urine': 1.0, 'deserve': 1.0, 'there': 1.0, 'reeks': 1.0, 'does': 1.0, 'because': 2.0, 'emptied': 1.0, 'be': 1.0, 'ready': 1.0, 'non': 1.0, 'making': 1.0, 'still': 1.0, 'this': 1.0, 'buyer': 1.0, 'found': 1.0, 'forget': 1.0, 'baby': 1.0, 'to': 2.0, 'our': 1.0, 'it': 5.0, 'with': 2.0, 'poop': 1.0, 'only': 1.0, '1': 1.0, 'near': 1.0, 'just': 1.0, 'by': 1.0, 'odorless': 1.0, 'few': 1.0, 'contain': 1.0, 'when': 2.0, 'less': 2.0, 'i': 1.0, 'nowhere': 1.0, 'doesn': 1.0, 'was': 2.0, 'smelly': 1.0, 'odor': 2.0, 'husband': 1.0, 've': 1.0, 'diaper': 4.0, 'the': 7.0, 'pee': 2.0, 'is': 3.0, 'that': 2.0, 'filled': 1.0, 'even': 1.0, 'okay': 1.0, 'diapers': 3.0, 'but': 1.0, 'inside': 1.0, 'pail': 3.0, 'kid': 1.0, 'think': 1.0, 'your': 1.0, 'on': 1.0, 'solids': 1.0, 'my': 1.0, 'empties': 1.0, 'every': 1.0, 'then': 2.0, 'days': 1.0, 'sprays': 1.0, 'a': 1.0, 'we': 1.0, 't': 2.0, 's': 1.0, 'of': 1.0, 'once': 1.0, 'lysol': 1.0, 'and': 2.0}
Word element => {'better': 1.0, 'get': 1.0, 'll': 1.0, 'not': 1.0, 'would': 1.0, 'have': 1.0, 'because': 1.0, 'use': 1.0, 'spend': 1.0, '1': 1.0, 'and': 3.0, '3': 1.0, 'is': 2.0, 'changed': 2.0, 'to': 1.0, 'as': 1.0, 'an': 1.0, 'i': 7.0, 'old': 1.0, 'excellent': 1.0, 'thought': 1.0, 'it': 4.0, 'this': 2.0, 'shower': 1.0, 'do': 1.0, 'only': 2.0, 'first': 1.0, 'got': 1.0, 'already': 1.0, 'reccommend': 1.0, 'my': 3.0, 'day': 1.0, 'springs': 1.0, 'quickly': 1.0, 'mind': 1.0, 'gift': 2.0, 'doesn': 1.0, 'was': 1.0, 'money': 1.0, 'but': 1.0, '2': 1.0, 'the': 7.0, 'one': 2.0, 'months': 1.0, 'smelling': 1.0, 'top': 1.0, 'up': 1.0, 'a': 2.0, 't': 1.0, 's': 2.0, 'room': 1.0, 'very': 1.0, 'little': 1.0, 'anyone': 1.0, 'deodarizer': 1.0, 'thing': 2.0, 'anything': 1.0, 'also': 1.0, 'time': 1.0, 'bag': 1.0, 'broke': 1.0, 'still': 1.0, 'son': 2.0, 'under': 1.0}
Word element => {'no': 1.0, 'had': 1.0, 'stores': 1.0, 'any': 2.0, 'chip': 1.0, 's': 1.0, 'months': 1.0, 'scented': 1.0, 'we': 1.0, 'problem': 1.0, 'the': 2.0, 'are': 1.0, 'but': 2.0, 'worked': 1.0, 'a': 1.0, 'few': 1.0, 'for': 1.0, 'one': 1.0, 'have': 1.0, 'luck': 2.0, 'i': 1.0, 'replacing': 1.0, 'looked': 1.0, 'only': 1.0, 'it': 1.0, 'in': 1.0, 'having': 1.0, 've': 1.0}
Word element => {'still': 1.0, 'months': 1.0, 'pricing': 1.0, 'beat': 1.0, '15': 1.0, 'only': 1.0, 'was': 1.0, 'm': 1.0, 'everything': 1.0, 'with': 1.0, 'quick': 1.0, 'blue': 1.0, 'won': 1.0, 'weeks': 1.0, 'inside': 1.0, 'proof': 1.0, 'odor': 1.0, 'to': 1.0, 'exactly': 1.0, 'smell': 1.0, 'diaper': 1.0, 'freshener': 1.0, 'it': 5.0, 'this': 1.0, 'love': 2.0, 'for': 1.0, 'is': 1.0, 'more': 1.0, 'trash': 1.0, 'of': 1.0, 'happy': 1.0, 'pail': 3.0, 'regular': 1.0, 'leave': 1.0, 'later': 1.0, 'part': 1.0, 'bags': 1.0, 'and': 5.0, 'fine': 1.0, 'takes': 1.0, 'spray': 2.0, 'get': 1.0, 'odors': 1.0, 'contains': 1.0, 'room': 1.0, 'anything': 1.0, 'than': 1.0, 'i': 5.0, 'two': 1.0, 'bucks': 1.0, 'since': 1.0, 'keep': 1.0, 's': 1.0, 't': 2.0, 'a': 3.0, 'but': 1.0, 'can': 2.0, 'next': 1.0, 'you': 3.0, 'unless': 1.0, 'when': 1.0, 'the': 6.0, 'stinking': 1.0, 'not': 1.0, 'give': 1.0, 'purchase': 1.0, 'lid': 1.0}
Word element => {'pails': 1.0, 'other': 1.0, 'with': 1.0, 'money': 1.0, 'their': 1.0, 'tell': 1.0, 'years': 1.0, '3': 1.0, 'almost': 1.0, 'and': 1.0, 'easy': 1.0, 'not': 1.0, 'wrong': 1.0, 'something': 1.0, 'be': 1.0, 'trouble': 1.0, 'had': 1.0, 'keeps': 1.0, 'are': 1.0, 'it': 4.0, 'first': 2.0, 'doing': 1.0, 'this': 1.0, 'of': 1.0, 'shower': 1.0, 'i': 5.0, 'unless': 1.0, 'you': 1.0, 'given': 1.0, 'for': 1.0, 'downstairs': 1.0, 'bag': 1.0, 'smell': 1.0, 'was': 1.0, 'now': 1.0, 'all': 1.0, 'as': 1.0, 'to': 3.0, 'pail': 1.0, 'baby': 1.0, 'the': 3.0, 'diaper': 2.0, 'my': 5.0, 'uses': 1.0, 'in': 1.0, 'regular': 1.0, 'waste': 1.0, 'second': 2.0, 'people': 1.0, 'is': 1.0, 'trash': 1.0, 'bags': 1.0, 'which': 1.0, 'friends': 1.0, 'so': 3.0, 'much': 2.0, 'child': 2.0, 'cheaper': 1.0, 'than': 1.0, 'use': 1.0, 'refills': 1.0, 's': 1.0, 'a': 1.0, 'lasted': 1.0, 'has': 1.0, 'well': 1.0, 'loved': 1.0, 'changing': 1.0, 'that': 1.0, 'must': 1.0, 'have': 3.0, 'gotten': 1.0, 'who': 1.0, 'at': 1.0, 'keep': 1.0}
Word element => {'to': 1.0, 'not': 1.0, 'do': 1.0, 'new': 1.0, 'a': 1.0, 'purchasing': 1.0, 'for': 1.0, 'anyone': 1.0, 'in': 1.0, 'process': 1.0, 'months': 1.0, 'two': 1.0, 'pail': 2.0, 'overwhelming': 1.0, 'odorless': 1.0, 'smell': 1.0, 'recommend': 1.0, 'nine': 1.0, 'product': 1.0, 'approximately': 1.0, 'after': 1.0, 'so': 1.0, 'am': 1.0, 'remained': 1.0, 'this': 2.0, 'weeks': 1.0, 'of': 2.0, 'use': 1.0, 'diaper': 1.0, 'the': 2.0, 'is': 1.0, 'that': 1.0, 'i': 2.0}
Word element => {'far': 1.0, 'least': 1.0, 'proof': 1.0, 'child': 1.0, 'bags': 1.0, 'so': 1.0, 'garbage': 1.0, 'uses': 1.0, 'too': 1.0, 'smell': 1.0, 'don': 2.0, 'regular': 1.0, 'is': 2.0, 'diapers': 1.0, 'but': 2.0, 'good': 1.0, 'was': 1.0, 'let': 1.0, 'at': 2.0, 'two': 1.0, 'upstairs': 1.0, 'all': 1.0, 'have': 1.0, 'the': 2.0, 'diaper': 1.0, 't': 3.0, 'pail': 1.0, 'like': 1.0, 'get': 1.0, 'and': 2.0, 'cost': 1.0, 'full': 1.0, 'are': 1.0, 'actually': 1.0, 'i': 4.0, 'useful': 2.0, 'one': 2.0, 'downstairs': 1.0, 'this': 1.0, 'it': 3.0, 'they': 1.0, 'isn': 1.0, 'perfect': 1.0}
Word element => {'use': 1.0, 'for': 2.0, 'ok': 1.0, 'anymore': 1.0, 's': 1.0, 'which': 1.0, 'and': 1.0, 'regular': 1.0, 'is': 2.0, 'in': 1.0, 'because': 1.0, 'poop': 2.0, 'off': 1.0, 'bags': 1.0, 'scented': 1.0, 'i': 2.0, 'disc': 1.0, 'haven': 1.0, 'garbage': 1.0, 'after': 1.0, 'pee': 1.0, 'lightweight': 1.0, 'the': 1.0, '2': 1.0, 't': 4.0, 'have': 1.0, 'replaced': 1.0, 'stink': 1.0, 'this': 1.0, 'it': 7.0, 'convenient': 1.0, 'a': 2.0, 'wore': 1.0, 'about': 1.0, 'don': 2.0, 'takes': 1.0, 'plus': 2.0, 'feeling': 1.0, 'months': 1.0, 'won': 1.0, 'help': 1.0, 'much': 1.0, 'will': 1.0, 'diapers': 3.0, 'but': 2.0, 'put': 1.0}
Word element => {'with': 1.0, 'spending': 1.0, 'will': 1.0, 'floor': 1.0, 'well': 1.0, 'thru': 1.0, 'tension': 1.0, 'far': 1.0, 'hold': 1.0, 'replace': 1.0, 'diaper': 1.0, 'the': 5.0, 'great': 1.0, 'smell': 1.0, 'waste': 1.0, 'throw': 1.0, 'more': 1.0, 'is': 2.0, 'door': 1.0, 'does': 1.0, 'it': 3.0, 'this': 2.0, 'a': 1.0, 's': 1.0, 'might': 1.0, 'pail': 1.0, 'diapers': 1.0, 'lives': 1.0, 'up': 2.0, 'as': 3.0, 'to': 3.0, 'odor': 1.0, 'trap': 1.0, 'not': 1.0, 'for': 1.0, 'one': 2.0, 'newborn': 1.0, 'too': 1.0, 'and': 1.0, 'end': 1.0, 'only': 1.0, 'do': 1.0, 'have': 1.0, 'push': 1.0, 'quality': 1.0, 'them': 1.0, 'you': 3.0, 'manually': 1.0, 'better': 1.0, 'containing': 1.0, 'please': 1.0, 'on': 2.0, 'your': 1.0, 'quot': 2.0, 'money': 2.0}
Word element => {'made': 1.0, 'good': 1.0, 'horrible': 1.0, 'throwing': 1.0, 'ended': 1.0, 'of': 1.0, 'bottom': 1.0, 'freshener': 1.0, 'even': 1.0, 'bad': 2.0, 'each': 1.0, 'just': 2.0, 'nasty': 1.0, 'bucket': 1.0, 'come': 1.0, 'stunk': 2.0, 'space': 1.0, 'which': 1.0, 'air': 1.0, 'in': 3.0, 'well': 1.0, 'with': 1.0, 'caring': 1.0, 'then': 1.0, 'every': 1.0, 'work': 1.0, 'smell': 1.0, 'an': 2.0, 'washed': 1.0, 'constantly': 1.0, 'put': 1.0, 'was': 6.0, 'to': 4.0, 'purchased': 2.0, 'had': 2.0, 'it': 12.0, 'this': 3.0, 'you': 1.0, 'tell': 1.0, 'a': 4.0, 'we': 5.0, 'i': 1.0, 'close': 1.0, 'springs': 1.0, 'buy': 1.0, 'out': 1.0, 'keeping': 1.0, 'newborn': 1.0, 'dumpster': 1.0, 'pail': 3.0, 'diaper': 2.0, 'more': 1.0, 'let': 1.0, 'no': 1.0, 'my': 1.0, 'up': 3.0, 'and': 6.0, 'poorly': 1.0, 'not': 1.0, 'me': 1.0, 'for': 3.0, 'product': 2.0, 'because': 1.0, 'were': 1.0, 'special': 1.0, 'soaked': 1.0, 'fix': 1.0, 'bags': 1.0, 'left': 1.0, 'area': 1.0, 'the': 8.0, 'place': 1.0, 'still': 1.0, 'son': 1.0, 'deoderizer': 1.0, 'popped': 1.0, 'there': 1.0, 'tablets': 2.0, 'spring': 1.0, 'off': 1.0, 'so': 3.0, 'time': 2.0}
Word element => {'plus': 1.0, 'each': 1.0, '50': 1.0, 'are': 1.0, '800': 1.0, 'and': 1.0, '1': 1.0, 'calling': 1.0, 'my': 1.0, 'they': 1.0, 'deodorizer': 1.0, 'the': 1.0, 'handling': 1.0, 'able': 1.0, 'not': 1.0, 'refills': 1.0, 'only': 1.0, 'was': 1.0, 'to': 1.0, 'being': 1.0, 'complaint': 1.0, 'i': 1.0, 'cents': 1.0, 'find': 1.0, 'found': 1.0, 'them': 2.0, '1108': 1.0, 'discs': 1.0, 'can': 1.0, 'order': 1.0, '544': 1.0, 'you': 1.0, 'directly': 1.0, 'shipping': 1.0, 'from': 1.0, 'by': 1.0, 'safety': 1.0, '1st': 1.0}
Word element => {'baby': 1.0, 'i': 1.0, 'bags': 1.0, 'another': 1.0, 'household': 1.0, 'with': 1.0, 'springs': 1.0, 'the': 3.0, 'diaper': 1.0, 'now': 1.0, 'is': 3.0, 'really': 1.0, 'son': 1.0, 'year': 1.0, 'one': 2.0, 'for': 3.0, 'us': 1.0, 'working': 1.0, 'pail': 2.0, 'have': 2.0, 'this': 1.0, 'it': 2.0, 'and': 4.0, 'to': 2.0, 'our': 1.0, 'fills': 1.0, 'filled': 1.0, 'that': 1.0, 'seems': 1.0, 'old': 1.0, 'never': 1.0, 'rather': 1.0, 'popped': 1.0, 't': 1.0, 'we': 1.0, 'a': 1.0, 'off': 1.0, 'registered': 1.0, 'odors': 1.0, 'are': 1.0, 'yes': 1.0, 'low': 1.0, 'very': 1.0, 'capacity': 1.0, 'up': 1.0, 'quickly': 1.0, 'fine': 2.0, 'isn': 1.0, 'problem': 1.0, 'easy': 1.0, 'use': 1.0, '2': 1.0, 'work': 1.0, 'but': 1.0, 'can': 1.0, 'be': 1.0}
Word element => {'center': 1.0, 'apart': 1.0, 'item': 1.0, 'sink': 1.0, 'never': 2.0, 'it': 8.0, 'month': 1.0, 'i': 6.0, 'neat': 1.0, 'my': 2.0, 'toothbrush': 1.0, '1': 1.0, 'electric': 1.0, 'taking': 1.0, 'are': 3.0, 'adhere': 1.0, 'bedroom': 1.0, 'bought': 1.0, 'love': 1.0, 'product': 1.0, 'and': 7.0, 'play': 1.0, 'cord': 3.0, 'isn': 1.0, 'they': 1.0, 'even': 1.0, 'move': 1.0, 'used': 1.0, '11': 1.0, 'twins': 3.0, 'when': 1.0, 'all': 2.0, 'have': 4.0, 'hiding': 1.0, 'wraps': 2.0, 'great': 1.0, 'shorteners': 1.0, 'so': 1.0, 'wall': 2.0, 'no': 1.0, 'put': 1.0, 'stuff': 1.0, 'up': 4.0, 'there': 1.0, 'mean': 1.0, 't': 1.0, 'a': 3.0, 'we': 1.0, 'to': 5.0, 'job': 1.0, 'place': 1.0, 'old': 1.0, 'own': 1.0, 'areas': 1.0, 'in': 6.0, 'itself': 1.0, 'also': 1.0, 'will': 1.0, 'thin': 1.0, 'cords': 2.0, 'together': 1.0, 'though': 1.0, 'thick': 1.0, 'by': 1.0, 'this': 1.0, 'kids': 1.0, 'them': 1.0, 'has': 1.0, 'easier': 1.0, 'made': 1.0, 'having': 1.0, 'does': 1.0, 'one': 1.0, 'lot': 1.0, 'is': 1.0, 'these': 4.0, 'comes': 2.0, 'around': 1.0, 'durable': 1.0, 'with': 2.0, 'sticky': 1.0, 'although': 1.0, 'patching': 1.0, 'easily': 1.0, 'repainting': 1.0, 'several': 1.0, 'stick': 1.0, 'but': 1.0, 'removal': 1.0, 'house': 1.0, 'of': 5.0, 'the': 10.0, 'longer': 1.0, 'interested': 1.0, 'two': 1.0, 'nice': 1.0, 'plugs': 1.0, 'push': 1.0, 'things': 1.0, 'if': 1.0, 'decide': 1.0, 'or': 1.0, 'need': 1.0}
Word element => {'knobs': 1.0, 'your': 2.0, 'easier': 1.0, 'said': 1.0, 'reviewer': 1.0, 'money': 1.0, 'don': 1.0, 'another': 1.0, 'use': 1.0, 'off': 1.0, 'broiler': 1.0, 'take': 1.0, 'problem': 1.0, 'so': 1.0, 'daughter': 1.0, 'in': 1.0, 'open': 1.0, 'my': 1.0, 'like': 1.0, 'could': 1.0, 'wasn': 1.0, 'waste': 1.0, 'remove': 1.0, 'pain': 1.0, 'a': 1.0, 'them': 2.0, 'just': 1.0, 'because': 1.0, 'interested': 1.0, 'no': 1.0, 'luckily': 1.0, 'what': 1.0, 's': 1.0, 'you': 1.0, 'it': 3.0, 'to': 3.0, 'was': 1.0, 'she': 1.0, 'easy': 1.0, 'the': 1.0, 't': 2.0, 'have': 1.0}
Word element => {'item': 1.0, 'this': 1.0, 'with': 1.0, 'board': 1.0, 'no': 1.0, 'has': 1.0, 'problem': 1.0, 'month': 1.0, '20': 1.0, 'needs': 1.0, 'thought': 1.0, 'old': 1.0, 'to': 2.0, 'pulling': 1.0, 'my': 1.0, 'the': 3.0, 'nice': 1.0, 'but': 1.0, 'back': 1.0, 'covers': 1.0, 'drawing': 1.0, 'go': 1.0, 'open': 1.0, 'knobs': 1.0, 'exposing': 1.0, 'and': 1.0, 'safety': 1.0, '1st': 1.0}
Word element => {'know': 1.0, 'open': 1.0, 'that': 2.0, 'another': 1.0, 'have': 1.0, 'we': 2.0, 'kids': 1.0, 'safety': 1.0, 'vs': 1.0, 'convenience': 1.0, 'trade': 1.0, 'provide': 1.0, 'can': 2.0, 'pain': 1.0, 'remove': 1.0, 'do': 1.0, 'get': 1.0, 'to': 2.0, 'up': 1.0, 'set': 1.0, 'of': 2.0, 'always': 1.0, 'fairly': 1.0, 'easy': 1.0, 'she': 1.0, 'off': 2.0, 'they': 1.0, 't': 1.0, 'the': 2.0, 'these': 3.0, 'basic': 1.0, 'are': 1.0, 'knobs': 1.0, 'a': 3.0, 'but': 2.0, 'toddler': 1.0, 'rear': 1.0, 'is': 2.0, 'in': 1.0, 'determined': 1.0, 'it': 3.0, 'he': 1.0, 'protection': 1.0, 's': 1.0}
Word element => {'work': 1.0, 'these': 1.0, 'on': 1.0, 'knobs': 1.0, 'turn': 1.0, 'accidently': 1.0, 'stove': 2.0, 'i': 3.0, 'bought': 1.0, 'everytime': 1.0, 'go': 1.0, 'this': 1.0, 'because': 1.0, 'cabinet': 1.0, 'to': 1.0, 'above': 1.0, 'my': 1.0, 'the': 2.0}
Word element => {'say': 1.0, 'they': 3.0, 'about': 1.0, 'do': 2.0, 'happy': 1.0, 'is': 1.0, 'what': 1.0, 'that': 1.0, 'stove': 1.0, 'daughter': 1.0, 'can': 1.0, 'get': 1.0, 'value': 1.0, 'good': 1.0, 'no': 1.0, 'exactly': 1.0, 'to': 1.0, 'my': 1.0, 'the': 1.0, 'knobs': 1.0, 'longer': 1.0, 'everyone': 1.0}
Word element => {'altogether': 1.0, 'interest': 1.0, 'deal': 1.0, 'lost': 1.0, 'curious': 1.0, 'being': 1.0, 'really': 1.0, 'her': 1.0, 'punish': 1.0, 'leaving': 1.0, 'now': 2.0, 'reaches': 1.0, 'still': 1.0, 'scary': 1.0, 'biggest': 1.0, 'child': 1.0, 'moments': 1.0, 'brief': 1.0, 'those': 1.0, 'some': 1.0, 'she': 4.0, 'we': 3.0, 'needed': 2.0, 'well': 1.0, 'i': 20.0, 'few': 1.0, 'this': 5.0, 'there': 1.0, 'profile': 1.0, 'knowing': 1.0, 'daughter': 1.0, 'explosion': 1.0, 'until': 2.0, 'yes': 2.0, 'risk': 1.0, 'list': 1.0, 'wish': 2.0, 'other': 3.0, 'kept': 1.0, 'located': 1.0, 'something': 1.0, 'hand': 1.0, 'so': 3.0, 'just': 1.0, 'tried': 1.0, 'and': 8.0, 'constantly': 1.0, 'use': 1.0, 'rated': 1.0, 'had': 4.0, 'what': 1.0, 'when': 1.0, 'from': 2.0, 'reluctant': 1.0, 'thankfully': 1.0, 'but': 4.0, 'opening': 2.0, 'work': 2.0, 'think': 1.0, 'ge': 4.0, 'open': 2.0, 'devices': 2.0, 'need': 1.0, 'also': 1.0, 'knobs': 8.0, 'highly': 1.0, 'arrived': 1.0, 'directly': 1.0, 'preserve': 1.0, 'because': 1.0, 'that': 6.0, 'up': 2.0, 'sized': 1.0, 'definitely': 2.0, 'pack': 1.0, 'the': 25.0, 'smell': 1.0, 'longer': 3.0, 'variety': 1.0, 'nor': 1.0, 'wide': 1.0, 'most': 1.0, 'learned': 1.0, 'reviews': 3.0, 'replace': 1.0, 'they': 7.0, 'must': 3.0, 'first': 2.0, 'fit': 4.0, 'range': 4.0, 'wandering': 1.0, 'how': 2.0, 'remove': 1.0, 'works': 1.0, 'worked': 1.0, 'break': 2.0, 'remember': 1.0, 'have': 3.0, 'not': 4.0, 'these': 11.0, 'spins': 1.0, 'reach': 1.0, 'caps': 1.0, 'believe': 1.0, 'could': 1.0, 'preferring': 1.0, 'knob': 6.0, 'gas': 6.0, 'a': 11.0, 'flame': 1.0, 's': 1.0, 'installing': 1.0, 'you': 7.0, 'your': 2.0, 'any': 1.0, 'on': 12.0, 'however': 1.0, 'get': 1.0, 'covers': 6.0, 'same': 2.0, 'will': 3.0, 'cover': 2.0, 'didn': 1.0, 'ordered': 1.0, 'convenience': 1.0, 'been': 1.0, 'safety': 2.0, 'amazon': 1.0, 'seem': 1.0, 'prime': 1.0, 'initially': 1.0, 'said': 1.0, 'are': 5.0, 'difficulty': 1.0, 'my': 8.0, 'cooking': 2.0, 'me': 1.0, 'suddenly': 1.0, 'to': 17.0, 'right': 1.0, 'closing': 1.0, 'away': 1.0, 'immediately': 1.0, 'all': 1.0, 'ones': 2.0, 'got': 1.0, 'one': 2.0, 'rating': 1.0, 'stay': 1.0, 'again': 1.0, 'which': 2.0, 'knew': 1.0, 'very': 1.0, 'quickly': 1.0, 'only': 1.0, 'thank': 1.0, 'toddler': 2.0, 'star': 1.0, 'them': 3.0, 'has': 2.0, 'installed': 1.0, 'standard': 1.0, 'blame': 2.0, 'main': 1.0, 'in': 2.0, 'about': 1.0, 'two': 1.0, 'minutes': 1.0, 'off': 2.0, 'neither': 1.0, 'wife': 2.0, 'types': 1.0, 'or': 5.0, 'with': 3.0, 'no': 3.0, 'negative': 1.0, 't': 1.0, 'above': 1.0, 'designed': 1.0, 'door': 3.0, 'agree': 1.0, 'protect': 1.0, 'here': 1.0, 'run': 1.0, 'tell': 1.0, '1': 1.0, 'since': 1.0, 'for': 6.0, 'snapping': 1.0, 'was': 2.0, 'may': 2.0, 'close': 1.0, 'ranges': 1.0, 'melting': 1.0, '2': 1.0, 'leave': 2.0, 'do': 3.0, 'changing': 1.0, 'imitate': 1.0, 'want': 1.0, 'consider': 1.0, 'merely': 1.0, 'design': 1.0, 'thanks': 1.0, 'love': 1.0, 'flaw': 1.0, 'would': 2.0, 'untouched': 1.0, 'of': 7.0, 'allowed': 1.0, 'breaking': 1.0, 'unattended': 1.0, '6': 2.0, 'drawer': 1.0, 'after': 1.0, 'though': 1.0, 'reason': 2.0, 'chide': 1.0, 'can': 1.0, 'turn': 4.0, 'is': 2.0, 'order': 1.0, '4': 1.0, 'bottom': 1.0, 'electric': 1.0, 'harder': 1.0, 'warming': 1.0, 'opted': 1.0, 'great': 1.0, 'occasionally': 1.0, 'if': 5.0, 'exposed': 1.0, 'instead': 1.0, 'snarky': 1.0, 'positive': 1.0, 'be': 1.0, 'it': 1.0, 'turning': 2.0, 'height': 1.0, 'oven': 3.0, 'stove': 1.0, 've': 1.0, 'everyone': 1.0, 'while': 1.0, 'were': 1.0, 'know': 1.0}
Word element => {'thumb': 1.0, 'easier': 1.0, 'for': 1.0, 'look': 1.0, 'more': 1.0, 'take': 1.0, 'permit': 1.0, 'sized': 1.0, 'manner': 1.0, 'use': 1.0, 'letting': 1.0, 'they': 1.0, 'but': 1.0, 'from': 1.0, 'fingers': 1.0, 'preventing': 1.0, 'good': 2.0, 'overall': 1.0, 'order': 1.0, 'turning': 1.0, 'in': 2.0, 'on': 1.0, 'cooking': 2.0, 'amount': 1.0, 'stop': 1.0, 'open': 5.0, 'little': 2.0, 'very': 3.0, 'and': 5.0, 'you': 1.0, 'barely': 1.0, 'time': 1.0, 'needs': 1.0, 'smaller': 1.0, 'concentrate': 1.0, 'pulling': 1.0, 'two': 1.0, 'not': 1.0, 'those': 1.0, 'a': 3.0, 'ago': 1.0, 'we': 2.0, 'other': 1.0, 'these': 3.0, 'will': 1.0, 'knob': 5.0, 'had': 1.0, 'purchased': 1.0, 'thought': 1.0, 'that': 3.0, 'apply': 1.0, 'were': 3.0, 'to': 6.0, 'our': 1.0, 'easy': 1.0, 'stove': 1.0, 'years': 1.0, 'safety': 2.0, 'us': 1.0, 'covers': 3.0, 'them': 3.0, 'covering': 1.0, 'same': 1.0, 'at': 2.0, '1st': 2.0, 'minimal': 1.0, 'larger': 2.0, 'impossible': 1.0, 'with': 3.0, 'one': 3.0, 'push': 1.0, 'are': 4.0, 'much': 1.0, 'force': 2.0, 'knobs': 2.0, 'proper': 1.0, 'nearly': 1.0, 'of': 3.0, 'using': 1.0, 'hand': 2.0, 'cannot': 1.0, 'the': 7.0, 'without': 1.0, 'pad': 1.0, 'cover': 1.0, 'off': 1.0}
Word element => {'out': 1.0, 'keeps': 1.0, 'but': 1.0, 'tight': 1.0, 'size': 1.0, 'standard': 1.0, 'than': 1.0, 'larger': 1.0, 'little': 4.0, 'use': 1.0, 's': 3.0, 'hard': 1.0, 'it': 5.0, 'works': 1.0, 'itself': 1.0, 'product': 1.0, 'to': 3.0, 'a': 3.0, 'great': 1.0, 'the': 4.0, 'just': 1.0, 'difficult': 1.0, 'sides': 1.0, 'open': 1.0, 'if': 1.0, 'squeezed': 1.0, 'get': 2.0, 'and': 1.0, 'your': 1.0, 'cord': 1.0, 'people': 1.0, 'is': 1.0}
Word element => {'parents': 1.0, 'it': 1.0, 'for': 1.0, 'this': 1.0, 'makes': 1.0, 'relief': 1.0, 'less': 1.0, 'one': 1.0, 'recommend': 1.0, 'anymore': 1.0, 'worry': 2.0, 'don': 1.0, 'but': 1.0, 'fast': 1.0, 'things': 1.0, 'manages': 1.0, 'still': 1.0, 'be': 1.0, 'him': 1.0, 'away': 1.0, 'far': 1.0, 'never': 1.0, 'am': 1.0, 'though': 1.0, 'even': 1.0, 'fatal': 1.0, 'house': 1.0, 'me': 1.0, 'explore': 1.0, 'letting': 1.0, 'safer': 1.0, 'isn': 1.0, 'they': 1.0, 'outlet': 1.0, 'bit': 1.0, 'so': 2.0, 'trouble': 1.0, 'an': 1.0, 'purchase': 1.0, 'my': 2.0, 'pull': 1.0, 'plugs': 1.0, 'that': 2.0, 'into': 3.0, 'loves': 1.0, 'is': 2.0, 'he': 3.0, 'stress': 1.0, 'shocked': 1.0, 'too': 1.0, 'plugged': 1.0, 'and': 5.0, 'items': 1.0, 'couldn': 1.0, 'little': 4.0, 'very': 2.0, 'have': 2.0, 'all': 1.0, 'our': 1.0, 'to': 6.0, 'could': 1.0, 'a': 2.0, 'we': 1.0, 't': 3.0, 'these': 1.0, 'distraction': 1.0, 'sight': 1.0, 'the': 5.0, 'active': 1.0, 'covered': 1.0, 'just': 2.0, 'by': 1.0, 'purchased': 1.0, 'feel': 1.0, 'i': 4.0, 'guy': 2.0, 'furniture': 1.0, 'make': 1.0, 'easy': 1.0, 'get': 3.0, 'sure': 1.0, 'let': 1.0, 'plug': 1.0, 'couple': 1.0, 'out': 2.0, 'of': 3.0, 'about': 1.0, 'wall': 1.0, 'are': 1.0, 'wonderful': 1.0, 'only': 1.0, 'much': 1.0}
Word element => {'sockets': 1.0, 'fingers': 1.0, 'these': 1.0, 'the': 1.0, 'are': 1.0, 'great': 1.0, 'and': 1.0, 'little': 1.0, 'easy': 1.0, 'to': 1.0, 'actually': 1.0, 'out': 1.0, 'install': 1.0, 'of': 1.0, 'keep': 1.0, 'prying': 1.0}
Word element => {'literally': 1.0, 'he': 1.0, 'life': 1.0, 'can': 1.0, '1': 1.0, 'clever': 1.0, 'yr': 1.0, 'old': 1.0, 'to': 1.0, 'not': 1.0, 'but': 1.0, 'work': 1.0, 'is': 1.0, 'my': 1.0, 'out': 1.0, 'how': 1.0, 'very': 1.0, 'open': 1.0, 'these': 1.0, 'they': 1.0, 'have': 1.0, 'been': 1.0, 'a': 1.0, 'saver': 1.0}
Word element => {'bummer': 1.0, 'fit': 1.0, 'clocks': 1.0, 'for': 1.0, 'in': 1.0, 'bar': 1.0, 'that': 1.0, 'power': 1.0, 'things': 1.0, 'have': 1.0, 'cables': 2.0, 'too': 1.0, 'lamps': 1.0, 'would': 1.0, 'etc': 1.0, 'like': 1.0, 'thin': 1.0, 'work': 1.0, 'but': 1.0, 'are': 1.0, 'thick': 1.0, 'to': 1.0, 'great': 1.0, 'these': 1.0}
Word element => {'things': 1.0, 'edges': 1.0, 'gap': 1.0, 'of': 2.0, 'bottom': 1.0, 'some': 2.0, 'plastic': 3.0, 'where': 1.0, 'fit': 2.0, 'would': 1.0, 'it': 2.0, 'kids': 1.0, 'this': 1.0, 'had': 1.0, 'our': 1.0, 'to': 3.0, 'so': 1.0, 'a': 3.0, 'are': 1.0, 'reach': 1.0, 'the': 8.0, 'around': 1.0, 'completely': 1.0, 'scrape': 1.0, 'cable': 2.0, 'can': 1.0, 'guide': 1.0, 'you': 1.0, 'if': 1.0, 'outlet': 2.0, 'i': 1.0, 'chisel': 2.0, 'use': 1.0, 'then': 1.0, 'willing': 1.0, 'solve': 1.0, 'cannot': 1.0, 'shaving': 1.0, 'will': 2.0, 'also': 1.0, 'handle': 1.0, 'at': 1.0, 'shielded': 1.0, 'that': 1.0, 'box': 1.0, 'from': 1.0, 'standard': 1.0, 'power': 1.0, 'insert': 1.0, 'strip': 1.0, 'entire': 1.0, 'may': 1.0, 'wires': 1.0, 'not': 1.0, 'cover': 1.0, 'and': 2.0, 'leave': 1.0}
Word element => {'great': 1.0, 'is': 1.0, 'and': 1.0, 'integrity': 1.0, 'surprised': 1.0, 'pleasantly': 1.0, 'was': 1.0, '2': 1.0, 'but': 1.0, 'bust': 1.0, 'little': 1.0, 'about': 2.0, 'able': 1.0, 'adults': 1.0, 'ones': 1.0, 'the': 3.0, 'not': 1.0, 'by': 1.0, 'just': 1.0, 'be': 1.0, 'covers': 2.0, 'concerned': 1.0, 'price': 1.0, 'm': 1.0, 'safety': 1.0, 'pack': 1.0, 'do': 1.0, 'they': 2.0, 'company': 1.0, 'my': 1.0, 'are': 2.0, 'what': 1.0, 'outlet': 1.0, 'being': 1.0, 'all': 1.0, 'to': 4.0, 'i': 3.0, 'into': 1.0, 'or': 1.0, 'hard': 1.0, 'with': 1.0, 'this': 1.0, 'enough': 1.0, 'supposed': 1.0, 'product': 1.0, 'for': 2.0, 'wasn': 1.0, 'sure': 1.0, 'them': 1.0, 'disconnect': 1.0, 'quality': 1.0, 'of': 2.0, 't': 1.0, 'a': 2.0, 'at': 1.0, '1st': 1.0, 'seems': 1.0, 'these': 2.0, 'hit': 1.0, 'miss': 1.0}
Word element => {'changed': 1.0, 'after': 1.0, 'are': 4.0, 'any': 3.0, 'to': 5.0, 'as': 2.0, 'all': 1.0, 'some': 2.0, 'others': 2.0, 'things': 1.0, 'and': 3.0, 'too': 1.0, 'middle': 1.0, 'throughout': 1.0, 'screw': 1.0, 'enclose': 1.0, 'have': 3.0, 'supposed': 1.0, 'with': 1.0, 'this': 1.0, 'said': 1.0, 'saying': 1.0, 'on': 2.0, 'regular': 1.0, 'won': 1.0, 'believe': 1.0, 'place': 1.0, 'portion': 1.0, 'existing': 1.0, 'the': 12.0, 'of': 1.0, 'these': 3.0, 'once': 1.0, 'house': 1.0, 'cover': 2.0, 'enough': 1.0, 're': 1.0, 'sockets': 2.0, 'doesn': 1.0, 'but': 1.0, 'most': 1.0, 'style': 1.0, 'not': 3.0, 'in': 4.0, 'm': 1.0, 'story': 1.0, 'that': 6.0, 'plugs': 1.0, 'holes': 1.0, 'they': 4.0, 'fit': 3.0, 't': 3.0, 'realized': 2.0, 'hole': 1.0, 'is': 1.0, 'even': 2.0, 'aggravation': 1.0, 'wall': 2.0, 'frequently': 1.0, 'covers': 2.0, 'part': 1.0, 'fell': 1.0, 'remove': 1.0, 'screws': 1.0, 'them': 1.0, 'socket': 2.0, 'it': 3.0, 'thought': 1.0, 'what': 1.0, 'well': 1.0, 'i': 5.0, 'outlet': 1.0, 'into': 2.0, 'designed': 1.0, 'hard': 1.0, 'over': 1.0, 'case': 1.0, 'replace': 1.0, 'do': 3.0, 'narrow': 1.0, 'only': 1.0, 'old': 1.0, 'fact': 1.0, 'save': 1.0, 'big': 1.0, 'plug': 4.0, 's': 1.0, 'maybe': 1.0, 'll': 1.0, 'frustration': 1.0, 'someone': 1.0, 'else': 1.0, 'good': 1.0, 'very': 1.0, 'can': 1.0, 'so': 1.0, 'use': 1.0, 'will': 1.0}
Word element => {'there': 1.0, 'out': 1.0, 'invest': 1.0, 'better': 1.0, 'anything': 1.0, 'see': 1.0, 'and': 1.0, 'well': 1.0, 'it': 1.0, 'three': 1.0, 'am': 1.0, 'cover': 1.0, 'of': 1.0, 'dislodged': 1.0, 'advice': 1.0, 'one': 1.0, 'stars': 1.0, 'for': 3.0, 'these': 1.0, 'place': 1.0, 'the': 3.0, 'heavy': 1.0, 'we': 2.0, 'finally': 1.0, 'have': 3.0, 'fairly': 1.0, 'are': 1.0, 'i': 2.0, 'two': 1.0, 'fine': 1.0, 'years': 1.0, 'ended': 1.0, 'in': 2.0, 'had': 1.0, 'thin': 2.0, 'like': 1.0, 'this': 1.0, 'kids': 1.0, 'that': 1.0, 'does': 1.0, 'because': 2.0, 'standard': 1.0, 'power': 2.0, 'giving': 1.0, 'trying': 1.0, 'despite': 1.0, 'wall': 1.0, 'work': 1.0, 'but': 1.0, 'will': 1.0, 'never': 1.0, 'duct': 2.0, 'they': 1.0, 'those': 2.0, 'cords': 4.0, 'not': 1.0, 'bars': 1.0, 'close': 1.0, 'up': 1.0, 'over': 1.0, 'my': 1.0, 'microwaves': 1.0, 'tape': 2.0, 'computers': 1.0, 'yet': 1.0, 'or': 1.0, 'to': 3.0, 'attaching': 1.0, 'thick': 1.0, 'ours': 1.0, 'with': 1.0}
Word element => {'adapters': 1.0, 'oversized': 1.0, 'with': 1.0, 'work': 1.0, 'not': 1.0, 'or': 1.0, 'your': 1.0, 'get': 1.0, 'to': 2.0, 'plugs': 2.0, 'adults': 1.0, 'a': 1.0, 'very': 1.0, 'and': 2.0, 'easy': 1.0, 'install': 1.0, 'secure': 1.0, 'children': 1.0, 'for': 2.0, 'will': 1.0, 'impossible': 1.0, 'clean': 1.0, 'hard': 1.0}
Word element => {'on': 1.0, 'but': 1.0, 'baby': 1.0, 'be': 1.0, 'suppose': 1.0, 's': 1.0, 'apart': 2.0, 'them': 3.0, 'even': 2.0, 'these': 1.0, 't': 2.0, 'i': 3.0, 'are': 1.0, 'my': 1.0, 'things': 1.0, 'awful': 1.0, 'can': 1.0, 'proof': 1.0, 'install': 1.0, 'husband': 1.0, 'to': 2.0, 'had': 1.0, 'either': 1.0, 'try': 1.0, 'know': 1.0, 'come': 1.0, 'it': 1.0, 'he': 1.0, 'get': 2.0, 'and': 1.0, 'couldn': 1.0}
Word element => {'hurt': 1.0, 't': 1.0, 'things': 3.0, 'once': 1.0, 'can': 1.0, 'monkey': 1.0, 'but': 1.0, 'unit': 1.0, 'this': 3.0, 'matter': 1.0, 'hard': 1.0, 'installed': 1.0, 'would': 1.0, 'thought': 1.0, 'unplug': 1.0, '5': 1.0, 'stars': 1.0, 'the': 3.0, 'much': 2.0, 'be': 1.0, 'as': 1.0, 'to': 3.0, 'doesn': 1.0, 'was': 1.0, 'are': 3.0, 'overall': 1.0, 'and': 2.0, 'plugged': 1.0, 'so': 1.0, 'that': 1.0, 'into': 1.0, 'my': 2.0, 'outlet': 1.0, 'me': 1.0, 'not': 1.0, 'two': 1.0, 'i': 3.0, 'move': 1.0, 'open': 1.0, 'better': 1.0, 'is': 2.0, 'around': 1.0, 'staying': 1.0, 'they': 1.0, 'in': 1.0, 'there': 1.0, 'get': 1.0, 'easy': 1.0, 'install': 1.0, 'feel': 1.0, 'cover': 1.0, 'knowing': 1.0, 'little': 1.0}
Word element => {'lol': 1.0, 'process': 1.0, 'during': 1.0, 'sound': 1.0, 'mentally': 1.0, 'words': 1.0, 'a': 1.0, 'needed': 1.0, 'hands': 1.0, 'install': 1.0, 'installed': 1.0, 'use': 1.0, 'once': 1.0, 'now': 1.0, 'to': 3.0, 'remain': 1.0, 'installation': 1.0, 'good': 1.0, 'almost': 1.0, 'open': 1.0, 'few': 1.0, 'impossible': 1.0, 'because': 1.0, 'little': 1.0, 'swear': 1.0, 'but': 1.0, 'will': 1.0, 'for': 1.0, 'im': 1.0, 'one': 1.0, '99': 1.0, '9': 1.0, 'sure': 1.0, 'my': 2.0, 'never': 1.0, 'and': 1.0, 'get': 1.0, 'hurt': 2.0}
Word element => {'found': 1.0, 'for': 1.0, 'yet': 1.0, 'in': 1.0, 'plug': 1.0, 'oversize': 1.0, 'has': 1.0, 'my': 1.0, 'of': 1.0, 'everything': 1.0, 'an': 1.0, 'but': 1.0, 'than': 1.0, 'wall': 1.0, 's': 1.0, 'you': 1.0, 'that': 2.0, 'a': 2.0, 'to': 1.0, 'was': 1.0, 'anything': 1.0, 'idea': 1.0, 'have': 2.0, 'the': 1.0, 't': 1.0, 'great': 1.0, 'can': 1.0, 'bought': 1.0, 'larger': 1.0, 'use': 2.0, 'feel': 1.0, 'thinking': 1.0, 'i': 2.0, 'children': 1.0, 'this': 1.0, 'it': 3.0, 'with': 1.0, 'goes': 1.0, 'standard': 1.0, 'any': 1.0, 'plugs': 2.0}
Word element => {'standard': 1.0, 'in': 1.0, 'fit': 1.0, 'plug': 1.0, 'easy': 1.0, 'gently': 1.0, 'i': 1.0, 'head': 1.0, 'box': 1.0, 'like': 2.0, 'did': 1.0, 'if': 1.0, 'how': 1.0, 'off': 3.0, 'little': 2.0, 'very': 1.0, 'and': 1.0, 'get': 1.0, 'getting': 1.0, 'does': 1.0, 'works': 1.0, 'not': 1.0, 'tricky': 1.0, 'just': 1.0, 'pop': 1.0, 'presure': 1.0, 'thing': 1.0, 'will': 2.0, 'but': 1.0, 'work': 2.0, 'only': 1.0, 'with': 1.0, 'come': 1.0, 'it': 5.0, 'this': 1.0, 'ones': 1.0, 'bulky': 1.0, 'discouraged': 1.0, 't': 1.0, 's': 1.0, 'you': 2.0, 'a': 4.0, 'don': 1.0, 'figure': 1.0, 'lamp': 1.0, 'out': 1.0}
Word element => {'access': 1.0, 'need': 1.0, 'outlet': 1.0, 'use': 1.0, 'don': 1.0, 'may': 1.0, 'prevents': 1.0, 'this': 1.0, 'it': 2.0, 'an': 1.0, 'work': 1.0, 'but': 2.0, 'away': 1.0, 'me': 1.0, 'permanently': 1.0, 'kids': 1.0, 'you': 2.0, 'to': 2.0, 'plugs': 2.0, 't': 1.0, 'great': 2.0, 'the': 1.0, 'for': 1.0, 'using': 1.0, 'from': 2.0, 'as': 1.0, 'well': 1.0, 'keep': 1.0, 'if': 1.0, 'have': 1.0, 'that': 1.0, 'something': 1.0, 'in': 1.0, 'is': 1.0, 'regularly': 1.0, 'plugged': 1.0}
Word element => {'up': 1.0, 'intention': 1.0, 'not': 1.0, 'needed': 1.0, 'need': 1.0, 'you': 1.0, 'time': 1.0, 'every': 1.0, 'it': 2.0, 'fixture': 1.0, 'permanent': 1.0, 'definitley': 1.0, 'pulling': 1.0, 'from': 1.0, 'nothing': 1.0, 's': 1.0, 'could': 1.0, 'a': 4.0, 'since': 1.0, 'side': 1.0, 'have': 1.0, 'leave': 1.0, 'plug': 1.0, 'held': 1.0, 'i': 7.0, 'would': 1.0, 'something': 2.0, 'each': 1.0, 'plugged': 1.0, 'too': 1.0, 'and': 3.0, 'get': 1.0, 'finally': 1.0, 'mom': 1.0, 'kids': 1.0, 'were': 1.0, 'that': 1.0, 'use': 1.0, 'hassle': 2.0, 'pulled': 1.0, 'install': 1.0, 'take': 2.0, 'what': 1.0, 'had': 2.0, 'purpose': 1.0, 'apart': 2.0, 'shove': 1.0, 'in': 4.0, 'seems': 1.0, 'them': 4.0, 'my': 1.0, 'switching': 1.0, 'these': 1.0, 'the': 5.0, 'but': 1.0, 'just': 1.0, 'pushed': 1.0, 'to': 10.0, 'latches': 2.0, 'as': 3.0, 'far': 1.0, 'be': 1.0, 'much': 1.0, 'only': 1.0, 'complete': 1.0, 'way': 1.0, 'defeating': 1.0, 'pry': 1.0, 'cover': 1.0, 'off': 3.0, 'of': 3.0, 'keeping': 1.0}
Word element => {'very': 1.0, 'decided': 1.0, 'able': 1.0, 'this': 2.0, 'it': 2.0, 'as': 1.0, 'to': 4.0, 'get': 1.0, 'come': 1.0, 'however': 1.0, 'there': 1.0, 'of': 1.0, 'or': 1.0, 'even': 1.0, 'way': 1.0, 'secure': 1.0, 'toddler': 1.0, 'an': 1.0, 'thing': 1.0, 'wall': 1.0, 'no': 1.0, 'some': 1.0, 'plugs': 1.0, 'is': 2.0, 'caught': 1.0, 'the': 3.0, 'mother': 1.0, 'a': 2.0, 'could': 1.0, 'stop': 1.0, 'using': 1.0, 'strangulation': 1.0, 'i': 1.0, 'cautious': 1.0, 'thinking': 1.0, 'if': 1.0, 'up': 1.0, 'over': 1.0, 'child': 1.0, 'under': 1.0, 'gets': 1.0, 'in': 1.0, 'cord': 1.0, 'adults': 1.0, 'prevent': 1.0, 'should': 1.0, 'be': 1.0, 'free': 1.0}
Word element => {'open': 1.0, 'pry': 1.0, 'minutes': 1.0, 'while': 1.0, 'in': 1.0, 'once': 1.0, 'use': 1.0, 'if': 1.0, 'off': 1.0, 'will': 1.0, 'to': 4.0, 'product': 1.0, 'so': 1.0, 'you': 3.0, 'that': 1.0, 'again': 1.0, 'took': 1.0, 'buy': 1.0, 'want': 1.0, 'is': 2.0, 'me': 1.0, 'outlets': 2.0, 'get': 2.0, 'thing': 1.0, 'not': 1.0, 'neither': 1.0, 'ever': 1.0, 'your': 3.0, 'nor': 1.0, 'should': 1.0, 'it': 2.0, 'hard': 1.0, 'this': 2.0, 'children': 1.0, '15': 1.0, 'a': 2.0}
Word element => {'buy': 1.0, 'they': 1.0, 'whatsoever': 1.0, 'my': 2.0, 'serves': 1.0, 'even': 1.0, 'in': 2.0, 'fingers': 2.0, 'purpose': 1.0, 'their': 1.0, 'that': 2.0, 'flip': 1.0, 'and': 2.0, 'huge': 1.0, 'not': 2.0, 'first': 1.0, '19': 1.0, 'can': 2.0, 'plastic': 1.0, 'product': 2.0, 'second': 1.0, 'right': 1.0, 'button': 1.0, 'i': 2.0, 'old': 1.0, 'your': 1.0, 'put': 2.0, 'this': 3.0, 'kids': 1.0, 'are': 1.0, 'much': 1.0, 'bigger': 1.0, 'than': 1.0, 'it': 1.0, 'month': 1.0, 'easily': 1.0, 'proofing': 1.0, 'child': 1.0, 'object': 1.0, 'a': 2.0, 's': 1.0, 'is': 2.0, 'more': 1.0, 'of': 2.0, 'big': 1.0, 'chunk': 1.0, 'no': 1.0, 'would': 1.0}
Word element => {'first': 1.0, 'with': 1.0, 'on': 1.0, 'unused': 1.0, 'covered': 1.0, 'were': 1.0, 'purchased': 1.0, 'had': 1.0, 'what': 1.0, 'sure': 1.0, 'no': 1.0, 'm': 1.0, 'so': 1.0, 'ours': 1.0, 'plenty': 1.0, 'was': 1.0, 'there': 1.0, 'sturdy': 1.0, 'sockets': 1.0, 'quite': 1.0, 'extra': 1.0, 'looking': 1.0, 'well': 2.0, 'inside': 2.0, 'far': 1.0, 'strip': 2.0, 'exceeds': 1.0, 'plugs': 1.0, 'helper': 2.0, 'the': 7.0, 'quality': 1.0, 'mommy': 2.0, 'safety': 4.0, 'and': 3.0, 'too': 1.0, 'other': 2.0, 'have': 1.0, 'wide': 1.0, 'house': 1.0, 'cover': 3.0, 'to': 1.0, 'as': 3.0, 'our': 1.0, 'one': 2.0, 'often': 1.0, 'for': 2.0, 'at': 1.0, '1st': 3.0, 'durability': 1.0, 'of': 2.0, 'by': 2.0, 'whose': 1.0, 'buckles': 1.0, 'looked': 1.0, 'covers': 1.0, 'it': 1.0, 'width': 1.0, 'like': 2.0, 'reviews': 1.0, 'they': 1.0, 'adjustability': 1.0, 's': 2.0, 'we': 2.0, 'might': 1.0, 'if': 1.0, 'break': 1.0, 'opened': 1.0, 'two': 1.0, 'i': 3.0, 'power': 1.0, 'because': 1.0, 'this': 1.0, 'wish': 1.0, 'allows': 1.0, 'length': 1.0, 'in': 1.0, 'is': 1.0, 'referring': 1.0, 'very': 1.0}
Word element => {'they': 1.0, 'safe': 1.0, 'sturdy': 1.0, 'how': 1.0, 'now': 1.0, 'order': 1.0, 'this': 1.0, 'with': 1.0, 'pleased': 1.0, 'very': 1.0, 'in': 1.0, 'every': 1.0, 'm': 1.0, 'protect': 1.0, 'on': 1.0, 'smart': 1.0, 'err': 1.0, 'desks': 1.0, 'computer': 1.0, 'from': 1.0, 'while': 1.0, 'getting': 2.0, 'old': 1.0, 'are': 1.0, 'strips': 1.0, 'these': 1.0, 'entirely': 1.0, 'strip': 2.0, 'usually': 1.0, 'power': 3.0, 'long': 1.0, 'she': 1.0, 'month': 1.0, 'it': 5.0, 'into': 1.0, 'that': 2.0, 'case': 1.0, 'see': 2.0, 'i': 3.0, 'bought': 1.0, 'one': 1.0, 'of': 2.0, 'caution': 1.0, 'product': 2.0, 'fit': 1.0, 'an': 2.0, 'our': 1.0, 'to': 3.0, 'everything': 1.0, 'if': 1.0, 'extra': 1.0, 'household': 1.0, 'would': 1.0, 'the': 7.0, 'turns': 1.0, 'description': 2.0, 'and': 4.0, 'over': 1.0, 'child': 1.0, 'more': 1.0, 'is': 1.0, 'versatile': 1.0, 'clear': 1.0, 'side': 2.0, 'who': 1.0, 'at': 1.0, 'small': 1.0, 'sliding': 1.0, 'can': 1.0, 'house': 1.0, 'cover': 1.0, 'wasn': 1.0, 'out': 1.0, 'proof': 1.0, 'larger': 1.0, 't': 1.0, 's': 4.0, 'will': 1.0, 'also': 1.0, 'remarkably': 1.0, 'has': 1.0, 'blocked': 1.0, '8': 1.0}
Word element => {'cord': 1.0, 'pull': 1.0, 'power': 1.0, 'or': 1.0, 'off': 1.0, 'cut': 1.0, 'still': 1.0, 'in': 1.0, 'inventive': 1.0, 'have': 1.0, 'just': 2.0, 'child': 1.0, 'very': 1.0, 'up': 1.0, 'i': 1.0, 'work': 1.0, 'product': 1.0, 'fingers': 1.0, 'to': 1.0, 'a': 2.0, 'the': 3.0, 'opening': 1.0, 'enough': 1.0, 'top': 1.0, 'is': 1.0, 'large': 1.0, 'for': 1.0, 'him': 1.0, 'and': 1.0, 'get': 1.0, 'does': 1.0, 'his': 1.0}
Word element => {'problem': 1.0, 'presented': 1.0, 'and': 1.0, 'itself': 1.0, 'in': 1.0, 'major': 1.0, 'openings': 1.0, 'need': 1.0, 'yet': 1.0, 'plug': 1.0, '3': 1.0, 'big': 1.0, 'get': 2.0, 'side': 1.0, 'one': 2.0, 'ready': 1.0, 'week': 2.0, 'got': 1.0, 'how': 1.0, 'of': 3.0, 'once': 1.0, 'these': 1.0, 'some': 1.0, 'was': 1.0, 'i': 8.0, 'hasn': 1.0, 'old': 1.0, 'out': 2.0, 'ordered': 1.0, 'protect': 1.0, 'this': 2.0, 'only': 2.0, 'using': 1.0, 'for': 1.0, 'finally': 1.0, 'so': 1.0, 'time': 1.0, 'has': 1.0, 'very': 1.0, 'figure': 1.0, 'cords': 1.0, 'difficult': 1.0, 'started': 1.0, 'another': 1.0, 'purchase': 1.0, 'my': 1.0, 'needed': 1.0, 'the': 2.0, 'use': 1.0, 'instructions': 1.0, 't': 1.0, 'ago': 1.0, 'a': 3.0, 'few': 1.0, 'prong': 1.0, 'times': 1.0, '8': 1.0, 'as': 1.0, 'to': 4.0, 'all': 1.0, 'it': 6.0, 'month': 1.0, 'electric': 1.0, 'would': 1.0, 'something': 1.0, 'last': 1.0, 'her': 1.0, '2': 1.0, 'can': 1.0, 'but': 1.0, 'past': 1.0, 'into': 1.0, 'loves': 1.0, 'been': 1.0, 'working': 1.0}
Word element => {'ve': 1.0, 'i': 1.0, 'best': 1.0, 'sizes': 1.0, 'different': 1.0, 'between': 1.0, 'slide': 1.0, 'side': 2.0, 'is': 5.0, 'really': 1.0, 'strips': 1.0, 'just': 1.0, 'for': 2.0, 'most': 1.0, 'it': 5.0, 'tool': 1.0, 'a': 4.0, 'hole': 1.0, 'allows': 1.0, 'this': 1.0, 'perfect': 1.0, 'in': 1.0, 'the': 6.0, 'baby': 1.0, 'also': 1.0, 'will': 1.0, 'seen': 1.0, 'you': 1.0, 'proofing': 1.0, 'connect': 1.0, 'strip': 3.0, 'plug': 1.0, 'easy': 2.0, 'there': 2.0, 'sized': 1.0, 'standard': 1.0, 'power': 3.0, 'together': 1.0, 'button': 1.0, 'that': 1.0, 'into': 2.0, 'shut': 1.0, 'outlet': 1.0, 'wide': 1.0, 'opening': 1.0, 'top': 1.0, 'devices': 1.0, 'and': 1.0, 'plugged': 1.0, 'cover': 3.0, 'snap': 1.0, 'on': 3.0, 'put': 1.0, '3': 1.0, 'overall': 1.0, 'places': 1.0, 'adjust': 1.0, 'to': 6.0, 'as': 1.0}
Word element => {'without': 1.0, 'room': 1.0, 'my': 1.0, 'sent': 1.0, 'being': 1.0, 'i': 1.0, 'your': 1.0, 'one': 1.0, 'could': 1.0, 'strip': 1.0, 'power': 1.0, 'what': 1.0, 'protect': 1.0, 'a': 2.0, 'idea': 1.0, 'had': 1.0, 'to': 2.0, 'prevented': 1.0, 'dinner': 1.0, 'wish': 1.0, 'growing': 1.0, 'great': 1.0, 'these': 1.0, 'of': 2.0, 'up': 1.0, 'and': 1.0, 'have': 1.0, 'lot': 1.0, 'nights': 1.0}
Word element => {'electrocution': 1.0, 'from': 1.0, 'safe': 1.0, 'keep': 1.0, 'be': 1.0, 'to': 3.0, 'fit': 1.0, 'has': 1.0, 'just': 1.0, 'huge': 1.0, 'like': 1.0, 's': 1.0, 'job': 1.0, 'someone': 1.0, 'this': 1.0, 'it': 2.0, 'the': 1.0, 'made': 1.0, 'does': 1.0, 'i': 1.0, 'everything': 1.0, 'in': 1.0, 'our': 1.0, 'something': 1.0, 'there': 1.0, 'kids': 1.0, 'm': 1.0, 'but': 1.0, 'grateful': 1.0}
Word element => {'a': 1.0, 'strip': 1.0, 'power': 1.0, 'from': 1.0, 'plugs': 1.0, 'my': 1.0, 'pull': 1.0, 'remove': 1.0, 'was': 1.0, 'or': 1.0, 'is': 1.0, 'unable': 1.0, 'and': 1.0, 'any': 1.0, 'product': 1.0, 'to': 2.0, 'great': 1.0, 'it': 2.0, 'baby': 1.0, 'off': 1.0}
Word element => {'bedroom': 1.0, 'plugs': 1.0, 'small': 1.0, 'are': 1.0, 'tv': 1.0, 'our': 2.0, 'computer': 1.0, 'strip': 1.0, 'have': 1.0, 'fit': 1.0, 'the': 1.0, 't': 1.0, 'we': 2.0, 'using': 1.0, 'in': 2.0, 'too': 1.0, 'it': 2.0, 'its': 1.0, 'to': 1.0, 'instead': 1.0, 'intended': 1.0, 'use': 1.0, 'doesn': 1.0, 'but': 1.0, 'there': 1.0}
Word element => {'is': 1.0, 'that': 1.0, 'than': 1.0, 'other': 1.0, 'long': 1.0, 'too': 1.0, 'use': 1.0, 'for': 1.0, 'one': 1.0, 'i': 3.0, 'another': 1.0, 'but': 1.0, 'will': 1.0, 'because': 1.0, 'probably': 1.0, 'and': 1.0, 'like': 1.0, 'so': 1.0, 'order': 1.0, 'strip': 2.0, 'was': 1.0, 'had': 1.0, 'wanted': 1.0, 'to': 2.0, 'switch': 1.0, 'out': 1.0, 'great': 1.0, 'the': 2.0, 'originally': 1.0, 'power': 1.0, 'this': 1.0, 'it': 2.0}
Word element => {'use': 1.0, 'to': 1.0, 'easy': 1.0}
Word element => {'up': 1.0, 'ended': 1.0, 'sizes': 1.0, 'we': 1.0, 'standard': 1.0, 'in': 1.0, 'are': 1.0, 'if': 1.0, 'warmer': 1.0, 'wipes': 1.0, 'great': 1.0, 'the': 1.0, 'example': 1.0, 'work': 1.0, 'inside': 1.0, 'should': 1.0, 'fit': 1.0, 'would': 1.0, 'room': 1.0, 'son': 1.0, 'my': 1.0, 'not': 2.0, 'plugs': 1.0, 'using': 1.0, 'for': 3.0, 'kid': 1.0, 'except': 1.0, 'most': 1.0, 'got': 1.0, 'only': 1.0, 'plugging': 1.0, 'this': 1.0, 'it': 3.0, 'you': 1.0, 's': 1.0, 'i': 1.0, 'be': 1.0, 'that': 2.0, 'fine': 1.0, 'stuff': 1.0, 'has': 1.0, 'larger': 1.0, 'and': 1.0, 'do': 1.0}
Word element => {'them': 1.0, 'with': 1.0, 'the': 5.0, 'bulky': 1.0, 'in': 1.0, 'when': 1.0, 'way': 1.0, 'it': 2.0, 'kids': 1.0, 'this': 2.0, 'single': 1.0, 'is': 5.0, 'seriously': 1.0, 'i': 1.0, 'cords': 2.0, 'not': 2.0, 'penny': 1.0, 'even': 1.0, 'got': 1.0, 'too': 1.0, 'play': 1.0, 'and': 3.0, 'setting': 1.0, 'on': 1.0, 'a': 2.0, 'worth': 1.0, 'gets': 1.0, 'still': 1.0, 'its': 1.0, 'to': 1.0, 'that': 1.0, 'can': 1.0, 'but': 2.0, 'opening': 1.0, 'unplug': 1.0, 'there': 1.0, 'just': 2.0, 'large': 1.0, 'at': 1.0, 'smallest': 1.0, 'top': 1.0, 'through': 1.0, 'product': 1.0, 'fit': 1.0, 'for': 1.0, 'gap': 1.0, 'so': 1.0, 'big': 1.0, 'my': 1.0}
Word element => {'advertised': 1.0, 'of': 1.0, 'fits': 1.0, 'all': 1.0, 'even': 1.0, 'my': 2.0, 'cords': 2.0, 'as': 1.0, 'apple': 1.0, 'works': 1.0, 'perfectly': 1.0, 'exactly': 1.0}
Word element => {'needed': 1.0, 'what': 1.0, 'for': 2.0, 'still': 1.0, 'but': 1.0, 'it': 1.0, 'this': 1.0, 'purchased': 1.0, 'mobile': 1.0, 'when': 1.0, 'kids': 1.0, 'ii': 1.0, 'you': 1.0, 'that': 1.0, 'have': 1.0, 'babies': 1.0, 'especially': 1.0, 'product': 1.0, 'kind': 1.0, 'a': 2.0, 'its': 2.0, 'buy': 1.0, 'i': 2.0, 'toddlers': 1.0, 'if': 1.0, 'keep': 1.0, 'of': 2.0, 'in': 1.0, 'mind': 1.0, 'didnt': 1.0, 'great': 1.0, 'bulky': 1.0, 'good': 1.0, 'or': 1.0, 'think': 1.0}
Word element => {'area': 1.0, 'or': 1.0, 'expected': 1.0, 'not': 2.0, 'would': 1.0, 'needed': 1.0, 'gave': 1.0, 'it': 2.0, 'bulky': 1.0, 'what': 1.0, 'that': 1.0, 'i': 2.0, 'buy': 1.0, 'to': 3.0, 'a': 2.0, 'say': 1.0, 'needless': 1.0, 'different': 1.0, 'again': 1.0, 'family': 1.0, 'member': 1.0, 'could': 1.0, 'in': 1.0, 'use': 1.0}
Word element => {'be': 1.0, 'not': 1.0, 'useless': 1.0, 'rendering': 1.0, 'figuring': 1.0, 'ie': 1.0, 'accessible': 1.0, 'readily': 1.0, 'more': 1.0, 'were': 1.0, 'about': 1.0, 'by': 1.0, 'up': 1.0, 'less': 1.0, 'most': 1.0, 'making': 1.0, 'thing': 1.0, 'objects': 1.0, 'foreign': 1.0, 'on': 1.0, 'turning': 1.0, 'happily': 1.0, 'move': 1.0, 'motivated': 1.0, 'outlets': 2.0, 'those': 1.0, 'furthermore': 1.0, 'reaching': 1.0, 'within': 1.0, 'problem': 3.0, 'had': 1.0, 'them': 1.0, 'location': 1.0, 'bare': 1.0, 'might': 1.0, 'attractive': 1.0, 'weakness': 1.0, 'its': 1.0, 'despite': 1.0, 'safe': 1.0, 'take': 1.0, 'entertainment': 2.0, 'wouldn': 1.0, 'critique': 1.0, 'am': 1.0, 'no': 2.0, 'extended': 5.0, 'my': 10.0, 'however': 1.0, 'bit': 1.0, 'succeeds': 1.0, 'a': 4.0, 'could': 2.0, 'because': 2.0, 'that': 3.0, 'into': 4.0, 'satsified': 1.0, 'is': 5.0, 'level': 1.0, 'out': 3.0, 'another': 1.0, 'electronics': 1.0, 'trying': 2.0, 'prevents': 1.0, 'hands': 1.0, 'need': 1.0, 'possibly': 1.0, 'matter': 1.0, 'reach': 3.0, 'smaller': 1.0, 'her': 4.0, 'for': 4.0, 'only': 1.0, 'flipping': 1.0, 'wiggle': 1.0, 'it': 11.0, 'she': 4.0, 'this': 7.0, 'device': 1.0, 'of': 4.0, 'the': 22.0, 'doing': 2.0, 'moments': 1.0, 'where': 1.0, 'fully': 4.0, 'plug': 4.0, 'power': 10.0, 'think': 1.0, 'better': 1.0, 'standard': 1.0, 'from': 3.0, 'center': 2.0, 'unplugging': 2.0, 'ins': 2.0, 'one': 1.0, 'electronic': 1.0, 'cover': 4.0, 'enough': 2.0, 'placed': 3.0, 'concentration': 1.0, 'figure': 1.0, 'seems': 1.0, 'off': 3.0, 'access': 1.0, 'product': 5.0, 'child': 2.0, 'position': 2.0, 'would': 4.0, 'things': 3.0, 'strip': 11.0, 'and': 13.0, 'pretty': 1.0, 'to': 13.0, 'length': 1.0, 'in': 5.0, 'seeing': 1.0, 'looooves': 1.0, 'size': 1.0, 'with': 3.0, 'so': 2.0, 'can': 1.0, 'wiggled': 1.0, 'item': 1.0, 'how': 2.0, 't': 1.0, 'likes': 1.0, 'separate': 1.0, 'plugs': 1.0, 'little': 2.0, 'two': 1.0, 'i': 4.0, 'daughter': 2.0, 'avoid': 1.0, 'pieces': 1.0, 'thus': 2.0, 'gaining': 1.0, 'all': 2.0, 'fits': 1.0, 'an': 1.0, 'effort': 1.0, 'scenario': 1.0, 'exact': 1.0, 'have': 4.0, 'far': 1.0, 'same': 2.0, 'under': 1.0, 'buttons': 1.0, 'covering': 1.0, 'if': 2.0, 'still': 1.0, 'really': 1.0, 'cords': 1.0, 'get': 1.0, 'flicking': 1.0, 'both': 2.0, 'devices': 1.0, 'open': 3.0, 'beyond': 1.0, 'when': 4.0, 'what': 1.0, 'keeps': 1.0, 'flimsy': 1.0, 'capable': 1.0}
Word element => {'price': 1.0, 'pretty': 1.0, 'of': 1.0, 'speak': 1.0, 'think': 1.0, 'on': 2.0, 'not': 1.0, 'me': 1.0, 'that': 1.0, 'next': 1.0, 'table': 1.0, 'up': 1.0, 'her': 1.0, 'worth': 1.0, 'yet': 1.0, 'or': 1.0, 'the': 3.0, 'use': 1.0, 'either': 1.0, 'with': 1.0, 'kitchen': 1.0, 'old': 1.0, 'i': 6.0, 'purpose': 1.0, 'compared': 1.0, 'to': 5.0, 'as': 1.0, 'very': 1.0, 'reason': 1.0, 'in': 2.0, 'seems': 1.0, 'so': 2.0, 'aspect': 1.0, 'my': 4.0, 'high': 1.0, 'serves': 1.0, 'space': 1.0, 'booster': 1.0, 'daughter': 2.0, 'purchasing': 1.0, 'for': 2.0, 'tray': 1.0, 'one': 1.0, 'chair': 2.0, 'far': 1.0, 'push': 1.0, 'saver': 1.0, 't': 1.0, 'go': 1.0, 's': 3.0, 'a': 2.0, 'is': 2.0, 'however': 1.0, 'efficient': 1.0, '16': 1.0, 'month': 1.0, 'it': 7.0, 'much': 1.0, 'its': 2.0, 'only': 1.0, 'this': 1.0, 'small': 1.0, 'have': 2.0, 'used': 2.0, 'comfortable': 1.0, '1': 1.0, '5': 1.0, 'weeks': 1.0, 'can': 1.0, 'but': 2.0, 'because': 1.0, 'find': 1.0, 'be': 2.0, 'quite': 1.0, 'dinner': 1.0, 'basic': 1.0}
Word element => {'how': 1.0, 'star': 1.0, 'me': 1.0, 'thing': 1.0, 'carrying': 1.0, 'easy': 1.0, 'folds': 1.0, 'adjustments': 1.0, 'height': 1.0, 'two': 1.0, 'also': 1.0, 'are': 1.0, 'mouth': 1.0, 'put': 1.0, 'on': 2.0, 'that': 2.0, 'anything': 1.0, 'beyond': 1.0, 'can': 2.0, 'off': 1.0, 'focal': 1.0, 'giving': 2.0, 'high': 1.0, 'my': 1.0, 'for': 2.0, 'fifth': 1.0, 'restaurant': 1.0, 'seats': 1.0, 'reach': 1.0, 'the': 8.0, 'small': 1.0, 'eat': 1.0, 'too': 2.0, 'and': 3.0, 'this': 2.0, 'out': 2.0, 'them': 1.0, '7': 1.0, 'right': 1.0, 'there': 1.0, 'chair': 2.0, 'far': 1.0, 'is': 4.0, 'tray': 4.0, 'terrific': 1.0, 'take': 1.0, 'pretty': 1.0, 'it': 3.0, 'month': 1.0, 'she': 2.0, 'well': 2.0, 't': 1.0, 'we': 1.0, 'a': 3.0, 'go': 2.0, 'still': 1.0, 'chairs': 1.0, 'or': 2.0, 'booster': 1.0, 'keeps': 3.0, 'of': 1.0, 'since': 1.0, 'lot': 1.0, 'three': 1.0, 'old': 1.0, 'point': 2.0, 'only': 1.0, 'much': 1.0, 'harness': 1.0, 'her': 4.0, 'slides': 1.0, 'in': 2.0, 'hard': 1.0, 'from': 2.0, 'to': 2.0, 'as': 2.0, 'goes': 1.0, 'leaning': 1.0, 'forward': 1.0}
Word element => {'earlier': 1.0, 'pitched': 1.0, 'they': 1.0, 'places': 1.0, 'two': 1.0, 'broken': 1.0, 'as': 1.0, 'their': 1.0, 'for': 1.0, 'parents': 1.0, 'brand': 1.0, 'different': 1.0, 'way': 1.0, 'use': 1.0, 'more': 1.0, 'even': 1.0, 'bought': 1.0, 'freecycling': 1.0, 'am': 1.0, 'live': 1.0, 'where': 1.0, 'minute': 1.0, 'someone': 2.0, 'd': 1.0, 'trunk': 1.0, 'just': 1.0, 'visiting': 1.0, 'go': 1.0, 'needed': 2.0, 'if': 1.0, 'over': 1.0, 'again': 1.0, 'clean': 1.0, 'up': 1.0, 'much': 2.0, 'do': 1.0, 'meant': 1.0, 'you': 1.0, 'setting': 1.0, 'before': 1.0, 'towel': 2.0, 'by': 2.0, 'under': 1.0, 'throw': 1.0, 'sort': 1.0, 'did': 1.0, 'upsided': 1.0, 'shake': 1.0, 'outside': 1.0, 'one': 2.0, 'meal': 1.0, 'place': 1.0, 'highchair': 2.0, 'been': 1.0, 'strapped': 1.0, 'chair': 7.0, 'loved': 1.0, 'enough': 1.0, 'kitchen': 4.0, 'all': 1.0, 'other': 1.0, 'seat': 2.0, 'in': 6.0, 'who': 1.0, 'won': 1.0, 'regular': 1.0, 'outlasted': 1.0, 'wherever': 1.0, 'having': 1.0, 'the': 16.0, 'of': 7.0, 'tired': 1.0, 'later': 1.0, 'no': 1.0, 'years': 1.0, 'half': 1.0, 'house': 1.0, 'both': 1.0, 'wanted': 1.0, 'solve': 1.0, 'was': 6.0, 'adjustable': 1.0, 'booster': 5.0, 'then': 2.0, 'take': 3.0, 'we': 9.0, 'a': 9.0, 'pretty': 1.0, 'to': 10.0, 'high': 1.0, 'my': 3.0, '2': 1.0, 'but': 2.0, 'so': 1.0, 'can': 2.0, 'big': 2.0, 'climb': 1.0, 'off': 2.0, 'until': 1.0, 'his': 2.0, 'almost': 1.0, 'son': 2.0, 'got': 2.0, 'old': 1.0, 'because': 2.0, 'that': 4.0, 'easily': 1.0, 'problems': 2.0, 'and': 7.0, 'underneath': 1.0, 'mostly': 1.0, 'decided': 1.0, 'used': 2.0, 'chairs': 1.0, 'fold': 1.0, 'he': 4.0, 'few': 1.0, 'this': 4.0, 'first': 1.0, 'it': 15.0, 'second': 1.0, 'when': 6.0, 'sit': 1.0, 'buy': 1.0, 'straps': 1.0, 'always': 1.0, 'born': 1.0, '3': 1.0, 'on': 3.0, 'think': 1.0, 'unlike': 1.0, 'dish': 1.0, 'reviewers': 1.0, 'have': 6.0, 'never': 1.0, 'had': 1.0, 'either': 1.0, 'with': 1.0, 'keeping': 1.0, 'out': 3.0, 'tray': 1.0, 'securely': 1.0, 'food': 2.0, 'or': 1.0, 'getting': 1.0, 'admit': 1.0, 'at': 1.0, 'is': 2.0, 'traveled': 1.0, 'kind': 1.0, 'months': 1.0, 'get': 2.0, 'funny': 1.0, 'year': 2.0, 'product': 1.0, 't': 1.0, 'ago': 1.0, 'fit': 1.0, 'these': 1.0, 'down': 1.0, 'several': 1.0, 'any': 1.0, 'sizes': 1.0, 'could': 1.0, 'will': 1.0, 'saves': 1.0, 'putting': 1.0, 'i': 7.0, 'well': 1.0, 'really': 1.0, 'issue': 1.0, 'messy': 1.0}
Word element => {'table': 1.0, 'can': 1.0, 'daughter': 1.0, 'our': 1.0, 'that': 1.0, 'like': 1.0, 'we': 1.0, 'underneath': 1.0, 'chair': 1.0, 'seat': 1.0, 'up': 1.0, 'unstrap': 1.0, 'sit': 1.0, 'have': 1.0, 'usually': 1.0, 'i': 1.0, 'clean': 2.0, 'from': 1.0, 'very': 1.0, 'do': 1.0, 'and': 2.0, 'saver': 1.0, 'a': 1.0, 'down': 1.0, 'is': 2.0, 'on': 1.0, 'dinnertime': 1.0, 'falls': 1.0, 'great': 1.0, 'the': 7.0, 'at': 1.0, 'booster': 1.0, 'space': 1.0, 'hard': 1.0, 'it': 2.0, 'this': 1.0, 'to': 3.0, 'food': 1.0, 'fact': 1.0, 'but': 1.0, 'back': 1.0, 'cracks': 1.0, 'sides': 1.0, 'in': 1.0}
Word element => {'paper': 1.0, 'crayongs': 1.0, 'apart': 1.0, 'also': 1.0, 'we': 2.0, 'but': 1.0, 'food': 1.0, 'this': 1.0, 'it': 3.0, 'only': 1.0, 'about': 1.0, 'up': 1.0, 'great': 1.0, 'the': 5.0, 'booster': 1.0, 'some': 1.0, 'holding': 1.0, 'take': 1.0, 'people': 1.0, 'tray': 1.0, 'i': 1.0, 'just': 1.0, 'cracks': 1.0, 'noticed': 1.0, 'and': 1.0, 'in': 2.0, 'dishwasher': 1.0, 'rub': 1.0, 'directions': 1.0, 'like': 1.0, 'using': 1.0, 'is': 2.0, 'say': 1.0, 'occasionally': 1.0, 'problem': 1.0, 'springs': 1.0, 'rust': 1.0, 'put': 1.0, 'on': 2.0, 'floor': 1.0, 'complained': 1.0, 'when': 1.0, 'seat': 1.0, 'to': 2.0, 'our': 1.0, 'fold': 1.0, 'son': 1.0, 'wants': 1.0, 'draw': 1.0}
Word element => {'better': 1.0, 'kind': 1.0, 'very': 2.0, 'if': 1.0, 'buckles': 1.0, 'room': 1.0, 'the': 3.0, 'well': 1.0, 'clip': 1.0, 'chairs': 1.0, 'low': 1.0, 'dining': 1.0, 'feel': 1.0, 'purchased': 1.0, 'that': 2.0, 'i': 3.0, 'returned': 1.0, 'daughter': 1.0, 'this': 2.0, 'and': 1.0, 'didn': 2.0, 'of': 1.0, 'on': 1.0, 'over': 1.0, 'in': 1.0, 'back': 1.0, 'secure': 1.0, 'was': 2.0, 'our': 1.0, 'seat': 2.0, 'to': 1.0, 'is': 1.0, 'much': 1.0, 'climber': 1.0, 'leaned': 1.0, 'fit': 1.0, 'afraid': 1.0, 'fits': 1.0, 'my': 1.0, 'another': 1.0, 'it': 2.0, 'she': 1.0, 'far': 1.0, 'would': 1.0, 'flip': 1.0, 't': 2.0, 'a': 2.0, 'we': 1.0, 'bought': 1.0, 'one': 1.0}
Word element => {'designed': 1.0, 'wish': 1.0, 'great': 1.0, 'years': 1.0, 'under': 1.0, 'down': 1.0, 'was': 1.0, 'didn': 1.0, 'condition': 1.0, 'your': 1.0, 'underneath': 1.0, 'positive': 1.0, 'meals': 1.0, 'hard': 1.0, 'bring': 1.0, 'want': 2.0, 'time': 1.0, 'scrub': 1.0, '1': 1.0, 'son': 1.0, 'switch': 1.0, 'house': 2.0, 'real': 1.0, 'put': 1.0, 'have': 3.0, 'those': 1.0, '2': 2.0, 'darned': 1.0, 'go': 2.0, 'when': 1.0, 'now': 3.0, 'just': 1.0, 'supervision': 1.0, 'use': 2.0, 'places': 1.0, 'going': 1.0, 'would': 2.0, 'but': 2.0, 'out': 1.0, 'booster': 4.0, 'up': 2.0, 'fold': 1.0, 'ground': 1.0, 'better': 2.0, 's': 3.0, 'there': 2.0, 'my': 2.0, 'fact': 1.0, 'for': 2.0, 'product': 1.0, 'our': 2.0, 'to': 13.0, 'i': 9.0, 'highchair': 3.0, 'saver': 1.0, 'strap': 1.0, 'are': 1.0, 'reviewers': 1.0, 'lasted': 1.0, 'one': 1.0, 'lot': 1.0, 'keep': 2.0, 'off': 3.0, 'enough': 1.0, 'side': 1.0, 'leaking': 1.0, 'good': 2.0, 'little': 1.0, 'bought': 1.0, 'is': 5.0, 'caught': 1.0, 'apartment': 1.0, 'space': 1.0, 'fasten': 2.0, 'seat': 7.0, 'in': 7.0, 'finish': 1.0, 'around': 1.0, 'dishwasher': 1.0, 'had': 1.0, 'because': 4.0, 'that': 3.0, 'easily': 1.0, 'you': 4.0, 'after': 1.0, 'somewhere': 1.0, 'tray': 3.0, 'unless': 2.0, 'like': 3.0, 'very': 2.0, 'cannot': 1.0, 'could': 1.0, 'fit': 1.0, 't': 5.0, 'does': 1.0, 'kitchen': 1.0, 'all': 1.0, 'other': 1.0, 'a': 14.0, 'small': 1.0, 'originally': 1.0, 'seriously': 1.0, 'onto': 1.0, 'lose': 1.0, 'and': 10.0, 'comes': 2.0, 'room': 2.0, 'chair': 4.0, 'backyard': 1.0, 'clean': 2.0, 'popped': 1.0, 'with': 3.0, 'durable': 1.0, 'this': 3.0, 'only': 3.0, 'certain': 1.0, 'it': 14.0, 'about': 1.0, 'merely': 1.0, 'pushed': 1.0, 'll': 1.0, 'right': 1.0, 'also': 1.0, 'on': 3.0, 'chairs': 2.0, 'get': 1.0, 'know': 2.0, 'however': 1.0, 'found': 1.0, 'easy': 2.0, 'area': 1.0, 'straps': 3.0, 'were': 1.0, 'recommend': 1.0, 'tighten': 1.0, 'can': 2.0, 'so': 2.0, 'still': 1.0, 'if': 3.0, 'apart': 1.0, 'lived': 1.0, 'don': 3.0, 'close': 2.0, '6': 1.0, 'track': 1.0, 'not': 1.0, 'the': 20.0, 'moves': 1.0, 'of': 2.0, 'has': 1.0, 'them': 1.0, 'some': 2.0, 'be': 2.0, 'or': 1.0, 'food': 3.0, 'storage': 1.0, 'gets': 1.0, 'daughter': 1.0, 'crevices': 1.0, 'then': 1.0, 'we': 10.0, 'take': 1.0}
Word element => {'down': 1.0, 'them': 1.0, 'year': 1.0, 'their': 2.0, 'passover': 1.0, 'had': 1.0, 'such': 1.0, 'short': 1.0, 'one': 1.0, 'are': 1.0, 'when': 2.0, 'old': 1.0, 'handy': 1.0, 'high': 3.0, 'functions': 1.0, 'along': 3.0, 'bring': 1.0, 'easier': 1.0, 'also': 2.0, 'coffee': 1.0, 'back': 1.0, 'attach': 1.0, 'just': 1.0, 'doh': 1.0, 'and': 1.0, 'play': 2.0, 'brought': 2.0, 'dad': 1.0, 'table': 2.0, 'friends': 1.0, 'so': 3.0, 'kitchen': 1.0, 'etc': 1.0, 'i': 8.0, 'instead': 1.0, 'chair': 5.0, 'there': 2.0, 'stable': 1.0, 'leg': 1.0, 'of': 3.0, 'that': 2.0, 'given': 1.0, 'for': 2.0, 'was': 2.0, 'house': 2.0, 'compared': 1.0, 'from': 1.0, 'this': 2.0, 'first': 1.0, 'it': 3.0, 'with': 2.0, 'no': 1.0, 'at': 2.0, 'room': 2.0, 'comes': 1.0, 'is': 3.0, 'really': 1.0, 'live': 1.0, 'as': 2.0, 'to': 4.0, 'seat': 3.0, 'lug': 1.0, 'friend': 1.0, 'in': 3.0, 'didn': 1.0, 's': 1.0, 'we': 2.0, 'a': 7.0, 't': 1.0, 'the': 6.0, 'think': 1.0, 'dinner': 1.0, 'draw': 1.0, 'would': 1.0, 'having': 1.0, 'because': 1.0, 'find': 1.0, 'use': 2.0, 'ever': 1.0, 'dry': 1.0, 'tiny': 2.0, 'much': 2.0, 'living': 1.0, 'my': 3.0, 'booster': 3.0, 'daughter': 1.0, '2': 1.0, 'can': 1.0, 'have': 1.0, 'snack': 1.0, 'wrong': 1.0, 'me': 1.0}
Word element => {'provided': 1.0, 'here': 1.0, 'grass': 1.0, 'on': 1.0, 'unless': 1.0, 'like': 1.0, 'needs': 1.0, 'who': 1.0, 'static': 1.0, 'due': 1.0, 'channel': 1.0, 'had': 1.0, 'even': 1.0, 'channels': 1.0, 'two': 2.0, 'has': 1.0, '4': 1.0, '3': 1.0, 've': 1.0, 'down': 1.0, 'set': 1.0, 'or': 2.0, 'need': 2.0, 'just': 1.0, 'why': 1.0, 'ear': 1.0, 'hissing': 2.0, 'old': 2.0, 'eg': 1.0, 'picked': 1.0, 'interfering': 1.0, 'around': 1.0, 'is': 6.0, 'say': 1.0, 'noise': 1.0, 'room': 1.0, 'far': 2.0, 'your': 1.0, 'idea': 1.0, 'when': 1.0, 'mowing': 1.0, 'though': 1.0, 'fussy': 1.0, 'a': 3.0, 's': 1.0, 'out': 2.0, 'constant': 1.0, 'sony': 1.0, 'to': 6.0, 'our': 3.0, 'being': 2.0, 'for': 1.0, '10': 1.0, 'compare': 1.0, 'outside': 1.0, 'apparent': 1.0, 'fisher': 2.0, 'this': 4.0, 'about': 2.0, 'windows': 1.0, 'no': 1.0, 'product': 1.0, 'price': 2.0, 'm': 1.0, 'both': 1.0, 'and': 7.0, 'interference': 2.0, 'monitor': 5.0, 'ultra': 1.0, 'packaging': 1.0, 'genuinely': 1.0, 'i': 5.0, 'try': 1.0, 'too': 1.0, 'one': 3.0, 'blowing': 1.0, 'so': 1.0, 'can': 2.0, 'past': 1.0, 'wind': 1.0, '2': 3.0, 'hear': 1.0, 'gave': 1.0, 'babies': 1.0, 'only': 5.0, 'crystal': 2.0, 'have': 1.0, 'of': 1.0, 'the': 14.0, 'without': 2.0, 'between': 1.0, 'graco': 2.0, '4ghz': 2.0, 'range': 2.0, 'difference': 1.0, 'an': 1.0, 'all': 1.0, 'microchip': 1.0, 'technology': 2.0, 'using': 1.0, 'plan': 1.0, 'which': 2.0, 'while': 2.0, 'are': 1.0, 'telephone': 1.0, 'however': 1.0, 'guess': 1.0, 'monitoring': 1.0, 'extra': 1.0, 'worth': 1.0, 'with': 4.0, 'volume': 2.0, 'it': 5.0, 'that': 1.0, 'because': 1.0, 'greater': 1.0, 'different': 1.0, 'definately': 1.0, 'picks': 1.0, 'sounds': 1.0, 'not': 3.0, 'up': 3.0, 'cordless': 1.0, 're': 1.0, 'confused': 1.0, 'phone': 1.0, 'advantage': 1.0, 'review': 1.0, 'says': 1.0, 'monitors': 2.0, 'you': 5.0, 'able': 1.0, 'loud': 1.0, 'clear': 4.0, 'turn': 1.0, 'way': 1.0, 'hum': 1.0, 'much': 1.0, 'put': 1.0}
Word element => {'what': 1.0, 'of': 1.0, 'completely': 1.0, 'from': 1.0, 'reader': 1.0, 'working': 1.0, 'like': 1.0, 'then': 1.0, 'waste': 1.0, 'months': 1.0, '3': 1.0, 'at': 1.0, 'just': 1.0, 'started': 1.0, 'thing': 1.0, 'we': 3.0, 'second': 1.0, 'a': 2.0, 'money': 1.0, 'years': 1.0, 'looking': 1.0, 'ma': 1.0, 'child': 2.0, 'getting': 1.0, 'monitor': 1.0, 'am': 1.0, 'i': 1.0, 'for': 3.0, 'one': 1.0, 'bought': 1.0, 'stopped': 1.0, 'it': 1.0, 'this': 2.0, 'first': 1.0, 'the': 1.0, 'more': 1.0, 'currently': 1.0, '2': 1.0, 'static': 1.0, 'ago': 1.0, 'our': 2.0, 'thought': 1.0, 'were': 1.0, 'buying': 1.0, 'but': 1.0, 'quality': 1.0}
Word element => {'highly': 1.0, 'glad': 1.0, 'boys': 1.0, 'ultra': 1.0, 'graco': 1.0, 'one': 1.0, 'bought': 1.0, 'left': 1.0, 'they': 1.0, 'gave': 1.0, 'that': 1.0, 'her': 1.0, 'whole': 1.0, 'kitchen': 1.0, 'don': 1.0, 'because': 1.0, 'building': 1.0, 'opposite': 1.0, 'impressed': 1.0, 'on': 1.0, 'unit': 1.0, 'away': 2.0, 'units': 1.0, 'recommend': 1.0, 'was': 2.0, 'worked': 1.0, 'friend': 1.0, 'pool': 2.0, 'with': 1.0, 'day': 1.0, 'monitor': 7.0, 'crib': 2.0, 'in': 4.0, 't': 1.0, 'a': 3.0, 'we': 6.0, 'complex': 1.0, 'failed': 1.0, 'move': 1.0, 'worry': 1.0, 'room': 2.0, 'state': 1.0, 'is': 2.0, 'kids': 1.0, 'this': 5.0, 'it': 1.0, 'of': 1.0, 'traveled': 1.0, 'the': 10.0, 'baby': 1.0, 'my': 3.0, 'another': 2.0, 'hear': 1.0, 'side': 1.0, 'clear': 2.0, 'two': 1.0, '4': 1.0, 'i': 1.0, 'took': 1.0, 'for': 1.0, 'love': 1.0, 'condo': 1.0, 'can': 1.0, 'and': 5.0, 'across': 1.0, 'after': 1.0, 'base': 1.0, 'his': 2.0, 'used': 1.0, 'sleeping': 1.0, 'which': 1.0, 'brought': 1.0, 'him': 1.0, 'never': 1.0, 'live': 1.0, 'home': 1.0, 'hospital': 1.0, 'there': 1.0, 'have': 2.0, 'has': 1.0, 'their': 3.0, 'recently': 1.0, 'us': 1.0, 'time': 1.0, 'so': 3.0, 'friends': 3.0, 'use': 2.0, 'from': 5.0, 'while': 1.0, 'visit': 1.0, 'were': 3.0, 'to': 4.0, 'our': 1.0}
Word element => {'either': 1.0, 'video': 1.0, 'or': 1.0, 'high': 1.0, 'by': 1.0, 'interrupted': 1.0, 'house': 1.0, 'there': 1.0, 'out': 1.0, 'if': 1.0, 'recommend': 1.0, 'doesn': 1.0, 'highly': 1.0, 'really': 1.0, 'in': 2.0, 'batteries': 1.0, 'll': 1.0, 'baby': 2.0, 'don': 1.0, 'my': 1.0, 'powered': 1.0, 'the': 6.0, 'phones': 1.0, 'base': 2.0, 'his': 2.0, 'even': 1.0, 'hear': 2.0, 'clear': 1.0, 'can': 1.0, 'wonderful': 1.0, 'tell': 1.0, 'else': 1.0, 'depending': 1.0, 'noise': 1.0, 'room': 3.0, 'with': 2.0, 'this': 1.0, 'preemie': 1.0, 'is': 3.0, 'prevent': 1.0, 'sucking': 1.0, 'how': 1.0, 't': 3.0, 's': 3.0, 'could': 1.0, 'pacifier': 1.0, 'be': 1.0, 'him': 1.0, 'electricity': 1.0, 'monitor': 2.0, 'across': 1.0, 'and': 2.0, 'hearing': 1.0, 'matter': 1.0, 'from': 3.0, 'nothing': 1.0, 'crib': 1.0, 'that': 2.0, 'cordless': 1.0, 'would': 1.0, 'something': 1.0, 'not': 3.0, 'it': 2.0, 'normally': 1.0, 'you': 2.0, 'when': 1.0, 'm': 1.0, 'where': 1.0, 'because': 1.0, 'having': 2.0, 'receivers': 1.0, 'i': 7.0, 'two': 1.0, 'have': 1.0, 'our': 1.0, 'to': 3.0, 'move': 1.0, 'one': 1.0, 'make': 1.0, 'on': 1.0}
Word element => {'product': 1.0, 'buy': 1.0, 'would': 1.0, 'at': 1.0, 'it': 2.0, 'finding': 1.0, 'did': 1.0, 'use': 1.0, 'also': 1.0, 'with': 3.0, 'found': 1.0, 'this': 5.0, 'trouble': 1.0, 'encountered': 1.0, 'breathing': 1.0, 'however': 1.0, 'after': 1.0, 'hear': 1.0, 'monitors': 1.0, 'and': 2.0, 'these': 1.0, 'the': 8.0, 'reviews': 2.0, 'i': 11.0, 'clear': 1.0, 'was': 1.0, 'all': 1.0, 'any': 1.0, 'battery': 1.0, 'about': 2.0, 'baby': 1.0, 'problems': 1.0, 'once': 1.0, 'of': 2.0, 'me': 1.0, 'not': 1.0, 'worried': 1.0, 'in': 3.0, 'way': 1.0, 'but': 1.0, 'can': 2.0, 'location': 1.0, 'even': 1.0, 'reading': 1.0, 'like': 1.0, 'again': 1.0, 'you': 1.0, 'stationary': 1.0, 'definitly': 1.0, 'have': 3.0, 'leave': 1.0, 'decided': 1.0, 'mobile': 1.0, 'one': 3.0, 'a': 2.0, 'target': 1.0, 'other': 1.0, 'carry': 1.0, 'comes': 1.0, 'around': 1.0, 'dual': 1.0, 'on': 2.0, 'monitor': 3.0, 'read': 2.0, 'very': 2.0, 'electricity': 1.0}
Word element => {'recommended': 1.0, 'electronics': 1.0, 'other': 1.0, 'or': 1.0, 'network': 1.0, 'computer': 1.0, 'cross': 1.0, 'get': 1.0, 'doesn': 2.0, 'that': 1.0, 've': 1.0, 'spot': 1.0, 'no': 1.0, 'there': 1.0, 'highly': 1.0, 'transmits': 1.0, 'of': 3.0, 'it': 1.0, 'found': 1.0, 'this': 1.0, 'so': 1.0, 'phones': 1.0, 'base': 1.0, 'the': 5.0, 'does': 1.0, 'even': 2.0, 'fan': 1.0, 'i': 2.0, 'products': 1.0, 'best': 1.0, 'm': 1.0, 'graco': 1.0, 'when': 1.0, 'and': 1.0, 'sq': 1.0, 'in': 2.0, 'receivers': 1.0, 'is': 1.0, 'level': 1.0, 'not': 1.0, 'general': 1.0, 'monitor': 1.0, 'very': 1.0, 'from': 2.0, 'smallest': 1.0, 'frequency': 1.0, 'sounds': 1.0, 'transmitter': 1.0, '400': 1.0, 'baby': 1.0, 't': 2.0, 'a': 1.0, 's': 2.0, 'sensitive': 1.0, 'room': 1.0, 'reception': 1.0, '2': 1.0, 'work': 1.0, 'disappoint': 1.0, 'house': 1.0, 'different': 1.0, 'floors': 1.0, 'ft': 1.0, 'any': 1.0, 'all': 1.0, 'our': 3.0, 'on': 1.0, 'your': 1.0, 'dual': 1.0, '3': 1.0}
Word element => {'product': 1.0, 'excellent': 1.0, '3': 1.0, 'basement': 1.0, 'on': 1.0, 'story': 1.0, 'a': 2.0, 'levels': 1.0, 'gets': 1.0, 'other': 1.0, 'is': 1.0, 'all': 1.0, 'have': 1.0, 'monitors': 1.0, 'one': 1.0, 'i': 2.0, 'with': 1.0, 'this': 1.0, 'it': 1.0, '2': 2.0, 'great': 1.0, 'wonderful': 1.0, 'can': 1.0, 'trying': 1.0, 'out': 1.0, 'after': 1.0, 'reception': 2.0, 'house': 1.0, 'work': 1.0, 'inside': 1.0, 'some': 1.0, 'yard': 1.0, 'and': 2.0, 'get': 2.0, 'done': 1.0}
Word element => {'why': 1.0, 'not': 1.0, 'install': 1.0, 'to': 1.0, 'still': 2.0, 'head': 1.0, 'pain': 1.0, 'model': 1.0, 'all': 3.0, 'a': 1.0, 'breaks': 1.0, 'new': 1.0, 'the': 6.0, 'then': 2.0, 'do': 1.0, 'and': 1.0, 'but': 2.0, 'work': 2.0, 'time': 3.0, 'dont': 1.0, 'other': 1.0, 'that': 1.0, 'better': 2.0, 'if': 1.0, 'it': 2.0, 'does': 1.0}
Word element => {'installing': 1.0, 'on': 1.0, 'up': 1.0, 'gave': 1.0, 'drawers': 1.0, 'once': 1.0, 'works': 1.0, 'right': 1.0, 'correctly': 1.0, 'so': 1.0, 'side': 2.0, 'alignment': 1.0, 'them': 1.0, 'out': 1.0, 'to': 4.0, 'installed': 1.0, 'cabinets': 1.0, 'install': 1.0, 'hassle': 1.0, 'a': 1.0, 'found': 1.0, 'i': 2.0, 'for': 1.0, 'directions': 1.0, 'make': 1.0, 'included': 1.0, 'great': 1.0, 'the': 2.0, 'these': 1.0, 'holes': 2.0, 'ignore': 1.0, 'personally': 1.0, 'break': 1.0, 'and': 1.0, 'pilot': 1.0, 'in': 1.0, 'drill': 2.0, 'also': 1.0, 'difficult': 1.0, 'your': 1.0, 'adjust': 1.0}
Word element => {'than': 1.0, 'better': 1.0, 'with': 1.0, 'hard': 1.0, 'you': 1.0, 'we': 1.0, 'to': 3.0, 'easy': 1.0, 'far': 2.0, 'install': 1.0, 'them': 1.0, 'out': 1.0, 'fairly': 1.0, 'baby': 1.0, 'as': 2.0, 'have': 1.0, 'these': 1.0, 'long': 1.0, 'used': 1.0, 'a': 1.0, 'drill': 1.0, 'so': 1.0, 'magnet': 1.0, 'locate': 1.0, 'locks': 1.0, 'purchased': 1.0, 'keeping': 1.0, 'by': 1.0, 'when': 1.0, 'tot': 1.0, 'were': 1.0}
Word element => {'oven': 1.0, 'put': 1.0, 'open': 1.0, 'daughter': 1.0, 'my': 1.0, 'deter': 1.0, 'on': 2.0, 'lock': 1.0, 'like': 1.0, 'hasn': 1.0, 'need': 1.0, 'sticky': 1.0, 'at': 1.0, 'tape': 2.0, 'some': 1.0, 'lease': 1.0, 'then': 1.0, 'that': 1.0, 'however': 1.0, 't': 1.0, 'the': 3.0, 'with': 1.0, 'it': 5.0, 'tried': 1.0, 'i': 3.0, 'does': 2.0, 'not': 1.0, 'stay': 1.0, 'hold': 1.0, 'since': 1.0, 'well': 1.0, 'comes': 1.0, 'to': 2.0, 'and': 2.0, 'get': 1.0, 'better': 2.0, 'she': 1.0, 'may': 1.0}
Word element => {'oven': 1.0, 'get': 1.0, 'manage': 1.0, 'because': 1.0, 'stove': 1.0, 'won': 2.0, 'a': 1.0, 'attach': 1.0, 'regular': 1.0, 'too': 1.0, 'easily': 1.0, 'the': 3.0, 't': 2.0, 'adhesive': 1.0, 'stick': 2.0, 'this': 1.0, 'it': 2.0, 'you': 1.0, 'unlocked': 1.0, 'item': 1.0, 'can': 1.0, 'sides': 1.0, 'if': 1.0, 'also': 1.0, 'to': 5.0, 'comes': 1.0}
Word element => {'out': 1.0, 'take': 1.0, 'burned': 1.0, 'getting': 1.0, 'cooking': 1.0, 'm': 1.0, 'locked': 1.0, 'have': 1.0, 'food': 1.0, 'can': 1.0, 'that': 1.0, 'so': 1.0, 'great': 1.0, 'on': 1.0, 'attach': 1.0, 'unlock': 1.0, 'while': 1.0, 'hard': 2.0, 'this': 1.0, 'it': 7.0, 'first': 1.0, 'with': 1.0, 'only': 1.0, 'i': 2.0, 'two': 1.0, 'seems': 1.0, 'pieces': 2.0, 'is': 3.0, 'extremely': 1.0, 'then': 1.0, 'working': 1.0, 'what': 1.0, 'oven': 2.0, 'was': 1.0, 'doesn': 1.0, 'get': 1.0, 'lock': 1.0, 'be': 1.0, 'does': 1.0, 'because': 1.0, 'there': 1.0, 'are': 1.0, 'at': 1.0, 'three': 1.0, 'without': 1.0, 'the': 4.0, 'hands': 1.0, 'which': 1.0, 'hold': 1.0, 'to': 7.0, 'all': 1.0, 'supposed': 1.0, 'love': 1.0, 'where': 1.0, 'adhesive': 1.0, 'and': 3.0, 'too': 1.0, 'when': 1.0, 'they': 1.0, 'need': 1.0, 'we': 1.0, 't': 1.0, 's': 1.0, 'go': 1.0, 'well': 1.0, 'hot': 1.0, 'touch': 1.0}
Word element => {'t': 1.0, 'ones': 1.0, 'little': 1.0, 'does': 1.0, 'is': 1.0, 'what': 1.0, 'to': 1.0, 'can': 1.0, 'it': 2.0, 'supposed': 1.0, 'and': 2.0, 'out': 1.0, 'basic': 1.0, 'figure': 1.0, 'too': 1.0, 'easy': 1.0, 'use': 1.0}
Word element => {'at': 1.0, 'not': 1.0, 'blinds': 1.0, 'lowering': 1.0, 'cords': 1.0, 'work': 1.0, 'will': 1.0, 'simply': 1.0, 'to': 1.0, 'using': 1.0, 're': 1.0, 'them': 1.0, 'out': 1.0, 'these': 1.0, 'the': 2.0, 'be': 2.0, 'll': 1.0, 'you': 2.0, 'however': 1.0, 'if': 2.0, 'of': 1.0, 'then': 2.0, 'all': 1.0, 'raising': 1.0, 'do': 1.0, 'and': 1.0, 'get': 1.0, 'reach': 1.0, 'they': 1.0, 'likely': 1.0, 'ok': 1.0, 'actually': 1.0}
Word element => {'them': 1.0, 'shorten': 1.0, 'our': 1.0, 'hold': 1.0, 'container': 1.0, 'not': 1.0, 'just': 2.0, 'but': 1.0, 'the': 1.0, 'a': 1.0, 'to': 2.0, 'it': 2.0, 'this': 1.0, 'works': 1.0, 'does': 1.0, 'wind': 1.0, 'and': 1.0, 'up': 1.0, 'is': 1.0, 'cords': 2.0, 'unwind': 1.0, 'without': 1.0, 'opening': 1.0, 'we': 1.0, 'ended': 1.0, 'cutting': 1.0}
Word element => {'than': 1.0, 'completely': 1.0, 'or': 1.0, 'these': 1.0, 'better': 1.0, 'your': 1.0, 'they': 1.0, 'time': 1.0, 'useless': 1.0, 'is': 1.0, 'anything': 1.0, 'money': 1.0, 'returned': 1.0, 'on': 1.0, 'waste': 1.0, 'not': 1.0, 'would': 1.0, 'work': 1.0, 'do': 1.0, 'this': 2.0, 'product': 1.0, 'being': 1.0, 'garbage': 1.0, 'are': 1.0}
Word element => {'windows': 1.0, 'next': 1.0, 'cleats': 1.0, 'replace': 1.0, 'loop': 1.0, 'because': 1.0, 'hazard': 1.0, 'create': 2.0, 'also': 1.0, 'on': 1.0, 'hard': 1.0, 'can': 1.0, 'pops': 1.0, 'within': 1.0, 'be': 1.0, 'short': 2.0, 'bought': 1.0, 'wind': 1.0, 'useful': 1.0, 'are': 2.0, 'very': 1.0, 'open': 1.0, 'if': 3.0, 'strangulation': 1.0, 'i': 5.0, 'plantation': 1.0, 'these': 2.0, 'my': 2.0, 'lightweight': 1.0, 'going': 1.0, 'a': 2.0, 'might': 1.0, 'this': 2.0, 'with': 2.0, 'it': 2.0, 'have': 1.0, 'thing': 1.0, 'actually': 1.0, 'for': 1.0, 'cords': 1.0, 'not': 1.0, 'child': 1.0, 'up': 1.0, 'of': 2.0, 'cord': 1.0, 'venetian': 1.0, 'to': 6.0, 'keep': 2.0, 'shorten': 1.0, 'out': 1.0, 'the': 2.0, 'reach': 2.0, 'and': 1.0, 'get': 1.0, 'blinds': 3.0, 'then': 1.0, 'do': 1.0, 'try': 1.0, 'am': 1.0, 'you': 1.0, 'when': 1.0, 'enough': 3.0, 'off': 1.0, 'they': 4.0}
Word element => {'would': 1.0, 'guess': 1.0, 'higher': 1.0, 'and': 5.0, 'that': 1.0, 'this': 1.0, 'wish': 1.0, 'dont': 1.0, 'blonde': 1.0, 'make': 1.0, 'a': 2.0, 'could': 1.0, 'just': 5.0, 'life': 1.0, 'i': 12.0, 'up': 5.0, 'out': 3.0, 'string': 1.0, 'too': 1.0, 'happy': 1.0, 'doing': 1.0, 'of': 2.0, 'the': 10.0, 'sure': 1.0, 'done': 2.0, 'put': 1.0, 'do': 1.0, '15': 1.0, 'low': 1.0, 'wall': 1.0, 'trick': 1.0, 'thing': 1.0, 'you': 1.0, 'son': 2.0, 'nail': 1.0, 'they': 2.0, 'are': 1.0, 'have': 1.0, 'these': 1.0, 'did': 1.0, 'keep': 1.0, 'still': 2.0, 'if': 2.0, 'really': 1.0, 'didnt': 1.0, 'my': 2.0, 'me': 2.0, 'not': 2.0, 'hang': 1.0, 'get': 1.0, 'cords': 1.0, 'months': 1.0, 'had': 2.0, 'what': 1.0, 'it': 8.0, 'thought': 1.0, 'correct': 1.0, 'job': 2.0, 'high': 1.0, 'pretty': 2.0, 'to': 3.0, 'before': 1.0, 'on': 2.0, 'long': 1.0, 'down': 1.0, 'but': 3.0, 'enough': 1.0, 'is': 2.0, 'so': 1.0, 'for': 2.0, 'figure': 1.0, 'very': 1.0, 'how': 1.0, 'dang': 1.0, 'recommend': 1.0, 'together': 1.0, 'ended': 1.0, 'money': 1.0, 'instructions': 2.0, 'even': 1.0, 'got': 1.0, 'looked': 2.0, 'horribly': 1.0, 'online': 1.0, 's': 2.0, 'sense': 1.0, 'maybe': 1.0, 'm': 3.0, 'bit': 1.0, 'know': 1.0, 'was': 2.0, 'package': 1.0, 'confused': 1.0, 'easier': 1.0, 'right': 1.0, 'worked': 1.0, 'reach': 1.0, 'way': 1.0, 'inexpensive': 1.0, 'went': 1.0, 'overall': 1.0, 'with': 1.0}
Word element => {'yeah': 1.0, 'issue': 1.0, 'an': 1.0, 'here': 1.0, 'be': 1.0, 'so': 2.0, 'his': 1.0, 'above': 1.0, 'wound': 1.0, 'cords': 1.0, 'measure': 1.0, 'complaints': 1.0, 'safety': 1.0, 'pretty': 1.0, 'off': 1.0, 'falling': 1.0, 've': 1.0, 'them': 3.0, 'keep': 1.0, 'at': 1.0, 'have': 1.0, 'i': 2.0, 'tried': 1.0, 'months': 1.0, 'no': 2.0, 'about': 1.0, 'price': 1.0, 'these': 1.0, 'reach': 1.0, 'the': 2.0, 'anything': 1.0, 'with': 1.0, 'now': 1.0, 'had': 2.0, 'to': 1.0, 'hasn': 1.0, 'problems': 1.0, 'son': 1.0, 'for': 2.0, 'or': 1.0, 'yet': 1.0, 'and': 2.0, 'anyway': 1.0, 'up': 3.0, 'windows': 1.0, 'hopefully': 1.0, 'my': 2.0, 'pull': 1.0, 'on': 2.0, '3': 1.0, 'if': 1.0, 'pulling': 1.0, 'definitely': 1.0, 'gold': 1.0, 'ever': 2.0, 'they': 3.0, 'does': 1.0, 'dont': 1.0, 'he': 1.0, 'how': 1.0, 'well': 1.0, 'wont': 1.0, 't': 1.0, 'a': 1.0, 'will': 1.0, 'but': 1.0, 'know': 1.0, 'hold': 1.0, 'are': 1.0}
Word element => {'instead': 1.0, 'coverings': 1.0, 'pieces': 1.0, 'council': 1.0, 'useless': 1.0, 'totally': 1.0, 'on': 1.0, 'together': 1.0, 'not': 1.0, 'you': 1.0, 'of': 1.0, 'at': 1.0, 'some': 1.0, '2': 1.0, 'the': 2.0, 'safety': 1.0, 'when': 1.0, 'will': 1.0, 'put': 1.0, 'any': 1.0, 'kind': 1.0, 'pressure': 1.0, 'stay': 1.0, 'cord': 1.0, 'get': 1.0, 'retrofits': 1.0, 'window': 1.0}
Word element => {'a': 1.0, 'spent': 1.0, 'have': 1.0, 'best': 1.0, 'product': 1.0, 'be': 1.0, 'hands': 1.0, 'tray': 1.0, 'the': 2.0, 'ever': 1.0, 'banging': 1.0, 'without': 1.0, 'happily': 1.0, 'restaurant': 1.0, 'dinner': 1.0, 'her': 1.0, 'used': 1.0, 'eat': 1.0, 'after': 1.0, 'little': 1.0, 'sat': 1.0, 'baby': 1.0, 'money': 1.0, 'wanting': 1.0, 'un': 1.0, 'interrupted': 1.0, 'month': 1.0, 'my': 2.0, 'with': 1.0, 'this': 1.0, 'first': 1.0, 'to': 1.0, 'watched': 1.0, 'had': 1.0, 'old': 1.0, 'i': 3.0, 'daughter': 1.0, 'us': 1.0, 'absolutely': 1.0, 'held': 1.0, 'hook': 1.0, 'on': 3.0, 'chair': 1.0, 'just': 1.0, '6': 1.0, 'there': 1.0}
Word element => {'me': 1.0, 'keep': 1.0, 'not': 1.0, 'definitely': 1.0, 'be': 1.0, 'problem': 1.0, 'had': 1.0, 'amp': 1.0, 'same': 2.0, 'company': 1.0, 'friends': 1.0, 't': 3.0, 'we': 3.0, 've': 1.0, 'dinner': 1.0, 'but': 4.0, 'so': 2.0, 'can': 5.0, 'item': 1.0, 'our': 1.0, 'as': 1.0, 'from': 1.0, 'center': 2.0, 'tables': 2.0, 'great': 1.0, 'things': 1.0, 'mainly': 1.0, 'or': 1.0, 'side': 2.0, 'good': 2.0, 'the': 12.0, 'of': 2.0, 'chair': 2.0, 'say': 1.0, 'at': 1.0, 'is': 7.0, 'comes': 1.0, 'holds': 1.0, 'frustrating': 1.0, 'have': 4.0, 'a': 6.0, 'small': 1.0, 'thing': 1.0, 'about': 1.0, 'wide': 1.0, 'enough': 2.0, 'tried': 1.0, 'off': 1.0, 'snap': 2.0, 'for': 1.0, 'far': 1.0, 'love': 1.0, 'with': 3.0, 'piece': 1.0, 'highly': 1.0, 'this': 4.0, 'it': 9.0, 'two': 1.0, 'really': 1.0, 'on': 5.0, 'bit': 2.0, 'easy': 1.0, 'folds': 1.0, 'get': 1.0, 'kind': 1.0, 'use': 4.0, 'travel': 1.0, 'i': 3.0, 'well': 1.0, 'bar': 1.0, 'family': 1.0, 'range': 1.0, 'recommending': 1.0, 'going': 1.0, 'complaint': 1.0, 'also': 2.0, 'in': 2.0, 'handy': 1.0, 'when': 1.0, 'having': 1.0, 'child': 3.0, 'up': 1.0, 'one': 4.0, 'and': 4.0, 'tough': 1.0, 'fits': 1.0, 'all': 1.0, 'other': 1.0, 'to': 6.0, 'regarding': 1.0, 'high': 1.0, 'easily': 2.0, 'that': 4.0, 'into': 1.0, 'probably': 1.0, 'fingers': 1.0, 'pinch': 1.0, 'their': 1.0, 'do': 1.0, 'strap': 1.0, 'straps': 1.0, 'has': 1.0, 'always': 1.0, 'tray': 1.0, 'securely': 1.0, 'doesn': 1.0, 'come': 1.0, 'unsnapped': 1.0, 'very': 1.0, 'graco': 1.0, 'swing': 1.0}
Word element => {'highly': 1.0, 'eat': 1.0, 'clean': 1.0, 'removed': 1.0, 'be': 1.0, 'own': 1.0, 'that': 1.0, 'another': 1.0, 'which': 1.0, 'table': 1.0, 'when': 1.0, 'i': 1.0, 'feature': 1.0, 'restaurants': 1.0, 'place': 1.0, 'the': 4.0, 'great': 1.0, 'take': 1.0, 'way': 1.0, 'always': 3.0, 'works': 1.0, 'this': 3.0, 'with': 2.0, 'he': 3.0, 'tray': 1.0, 'bought': 1.0, 'and': 3.0, 'get': 1.0, 'everywhere': 1.0, 'on': 2.0, 'chair': 1.0, 'now': 1.0, 'recommend': 1.0, 'was': 1.0, 'use': 3.0, 'can': 1.0, 'most': 1.0, 'his': 1.0, 'motorhome': 1.0, 'sturdy': 1.0, 'in': 1.0, 'also': 1.0, 'tables': 1.0, 'product': 1.0, 'love': 2.0, 'restaurant': 1.0, 'we': 6.0, 'a': 3.0, 'our': 2.0, 'to': 4.0, 'booth': 1.0, 'son': 1.0, 'us': 1.0, 'able': 1.0, 'earlier': 1.0, 'at': 1.0, 'chairs': 1.0, 'than': 1.0, 'because': 1.0, 'has': 3.0, 'it': 5.0, 'higher': 1.0, 'back': 1.0, 'level': 1.0, 'is': 2.0, 'right': 1.0}
Word element => {'recommend': 1.0, 'from': 1.0, 'across': 1.0, 'my': 2.0, 'plop': 1.0, 'like': 1.0, 'move': 1.0, 'our': 4.0, 'as': 1.0, 'need': 2.0, 'careful': 1.0, 'a': 5.0, 's': 2.0, 'in': 3.0, 'buckled': 1.0, 'always': 1.0, 'eating': 1.0, 'us': 2.0, 'know': 1.0, 'which': 1.0, 'clean': 1.0, 'surface': 1.0, 'eat': 1.0, 'time': 1.0, 'all': 1.0, 'fits': 1.0, 'son': 2.0, 'husband': 1.0, 'more': 1.0, 'room': 1.0, 'comes': 1.0, 'chair': 3.0, 'and': 5.0, 'tot': 1.0, 'is': 4.0, 'at': 1.0, 'lot': 1.0, 'flimsy': 1.0, 'graco': 1.0, 'he': 2.0, 'love': 2.0, 'about': 1.0, 'don': 1.0, 'germs': 1.0, 'money': 1.0, 'can': 2.0, 'sitting': 1.0, 'booth': 1.0, 'on': 2.0, 'months': 1.0, 'well': 1.0, 'i': 3.0, 'fact': 1.0, 'old': 1.0, 'have': 2.0, 'every': 2.0, 'certainly': 1.0, 'deluxe': 1.0, 'most': 1.0, 'connects': 1.0, 'some': 1.0, 'got': 1.0, 'relatives': 1.0, 'out': 1.0, 'absolutely': 1.0, 'restaurant': 1.0, 'suitcase': 1.0, 'into': 1.0, 'lock': 1.0, 'are': 1.0, 'to': 5.0, 'high': 1.0, 'visit': 1.0, 'chairs': 1.0, 'very': 1.0, 'single': 1.0, 'everywhere': 1.0, 'that': 5.0, 'easily': 2.0, 'sit': 1.0, 'when': 1.0, 'you': 1.0, 'definitely': 1.0, 'worry': 1.0, 'comfortable': 1.0, 'cases': 1.0, 'than': 1.0, 'we': 8.0, 'take': 2.0, 'highly': 1.0, 'this': 2.0, 'with': 3.0, 'fly': 1.0, 'do': 1.0, '9': 1.0, 'already': 1.0, 'it': 4.0, 'table': 2.0, 'right': 1.0, 't': 2.0, 'along': 1.0, 'must': 1.0, 'everyone': 1.0, 'doesn': 1.0, 'the': 2.0, 'of': 1.0, 'worth': 1.0, 'almost': 1.0, 'be': 2.0, 'tables': 1.0, 'they': 1.0}
Word element => {'breeze': 1.0, 'makes': 1.0, 'which': 1.0, 'from': 1.0, 'up': 1.0, 'set': 1.0, 's': 1.0, 'saver': 1.0, 'a': 2.0, 'is': 1.0, 'seat': 1.0, 'and': 2.0, 'away': 1.0, 'chair': 1.0, 'great': 1.0, 'the': 2.0, 'or': 1.0, 'visit': 1.0, 'eat': 1.0, 'cleaning': 1.0, 'out': 1.0, 'have': 1.0, 'grandma': 1.0, 'got': 1.0, 'we': 3.0, 'to': 2.0, 'now': 1.0, 'remove': 1.0, 'on': 1.0, 'high': 1.0, 'my': 1.0, 'insists': 1.0, 'when': 1.0, 'daughter': 1.0, 'in': 1.0, 'take': 1.0, 'sitting': 1.0, 'this': 2.0, 'it': 2.0, 'super': 1.0, 'space': 1.0, 'at': 1.0, 'table': 1.0, 'easy': 1.0, 'home': 1.0, 'put': 1.0}
Word element => {'up': 1.0, 'set': 1.0, 'problem': 1.0, 'i': 2.0, 'on': 2.0, 'your': 2.0, 'has': 1.0, 'makes': 1.0, 'one': 1.0, 'for': 2.0, 'properly': 1.0, 'from': 1.0, 'part': 1.0, 'family': 1.0, 'are': 1.0, 'it': 1.0, 'only': 1.0, 'this': 4.0, 'allows': 1.0, 'be': 3.0, 'of': 3.0, 'in': 1.0, 'the': 8.0, 'table': 4.0, 'like': 1.0, 'and': 1.0, 'unusable': 1.0, 'baby': 1.0, 'about': 2.0, 'underside': 2.0, 'seat': 1.0, 'to': 2.0, 'must': 1.0, 'flat': 2.0, 'have': 1.0, 'four': 1.0, 'we': 1.0, 'a': 1.0, 'intended': 1.0, 'that': 2.0, 'inches': 2.0, 'framing': 1.0, 'between': 1.0, 'legs': 1.0, 'three': 1.0, '7': 1.0, 'side': 1.0, 'chair': 2.0, 'you': 1.0, 'need': 1.0}
Word element => {'effort': 1.0, 'wonderful': 1.0, 'place': 1.0, 'me': 1.0, 'use': 1.0, 'time': 1.0, 'same': 1.0, 'bag': 1.0, 'carrying': 1.0, 'when': 2.0, 'hassle': 1.0, 'not': 1.0, 's': 1.0, 'help': 1.0, 'area': 1.0, 'diaper': 1.0, 'leave': 1.0, 'quote': 1.0, 'don': 1.0, 'x24': 1.0, 'quot': 2.0, 'flat': 1.0, 'worth': 1.0, 'almost': 1.0, 'even': 1.0, 'bulky': 1.0, 'second': 1.0, 'someone': 1.0, 'otherwise': 1.0, 'just': 2.0, 'baby': 1.0, 'folds': 2.0, 'she': 1.0, 'safely': 1.0, 'us': 1.0, 'plastic': 1.0, 'cargo': 1.0, 'sanitary': 1.0, 'that': 4.0, 'into': 2.0, 'been': 1.0, 'highchair': 1.0, 'family': 1.0, 'the': 15.0, 'of': 3.0, 'tightly': 1.0, 'once': 2.0, 'unbalanced': 1.0, 'though': 1.0, 'part': 2.0, 'while': 1.0, 'big': 1.0, 'level': 1.0, 'is': 6.0, 'at': 2.0, 'wipe': 1.0, 'again': 1.0, 'clean': 2.0, '12': 1.0, 'won': 1.0, 'they': 1.0, 'on': 3.0, 'do': 1.0, 'messes': 1.0, 'put': 2.0, 'maneuver': 1.0, 'easier': 1.0, 'table': 3.0, 'tray': 1.0, 'decided': 1.0, 'well': 1.0, 'i': 8.0, 'restaurants': 1.0, 'nice': 1.0, 'two': 1.0, 'get': 1.0, 'bit': 1.0, 'know': 1.0, 'easy': 1.0, 'and': 9.0, 'very': 2.0, 'to': 10.0, 'feel': 1.0, 'your': 2.0, 'any': 1.0, 'our': 1.0, 'guessing': 1.0, 'them': 1.0, 'has': 2.0, 'puts': 1.0, 'with': 1.0, 'complain': 1.0, 'it': 16.0, 'this': 2.0, 'wish': 1.0, 'a': 5.0, 't': 5.0, 'whim': 1.0, 'tip': 1.0, 'surface': 1.0, 'we': 3.0, 'take': 1.0, 'saw': 1.0, 'down': 1.0, 'but': 2.0, 'so': 5.0, 'can': 2.0, 'haven': 1.0, 'had': 1.0, 'really': 2.0, 'about': 2.0, 'suv': 1.0, '2': 1.0, 'thing': 1.0, 'love': 1.0, 'yet': 1.0, 'from': 2.0, 'feels': 1.0, 'secure': 1.0, 'attached': 1.0, 'purchase': 1.0, 'only': 2.0, 'watch': 1.0, 'were': 1.0, 'you': 1.0, 'things': 1.0, 'bad': 1.0, 'first': 1.0, 'depending': 1.0, 'thickness': 1.0, 'sometimes': 1.0, 'have': 2.0, 'browsing': 1.0, 'weight': 1.0, 'chair': 1.0, 'way': 1.0, 'crevices': 1.0, 'daughter': 1.0, 'seat': 2.0, 'in': 3.0, 'before': 1.0, 'am': 2.0, 'eating': 1.0, 'securing': 1.0, 'pleased': 1.0, 'takes': 1.0}
Word element => {'fantastic': 1.0, 'in': 1.0, 'once': 1.0, 'doors': 1.0, 'for': 3.0, 'install': 2.0, 'beyond': 1.0, 'and': 1.0, 'get': 1.0, 'nightmare': 1.0, 'curve': 1.0, 'works': 1.0, 'learning': 1.0, 'work': 1.0, 'but': 1.0, 'ready': 1.0, 'then': 1.0, 'to': 2.0, 'first': 1.0, 'well': 1.0, 'a': 2.0, '15': 1.0, 'rest': 1.0, 'perhaps': 1.0, '30mins': 1.0, 'great': 1.0, 'the': 3.0, 'by': 1.0, 'adjust': 1.0, 'time': 1.0, 'you': 1.0}
Word element => {'thing': 1.0, 'whole': 1.0, 'uninstalling': 1.0, 'keep': 2.0, 'latch': 1.0, 'there': 1.0, 'it': 3.0, 'unlocked': 2.0, 'extension': 1.0, 'through': 1.0, 'when': 1.0, 'you': 2.0, 'well': 2.0, 'front': 1.0, 'is': 1.0, 'comes': 1.0, 'used': 1.0, 'includes': 1.0, 'set': 1.0, 'of': 2.0, 'can': 1.0, 'but': 1.0, 'work': 1.0, 'weak': 1.0, 'suggest': 1.0, 'seemed': 1.0, 'even': 1.0, 'previous': 1.0, 'want': 1.0, 'if': 1.0, 'same': 1.0, 'problem': 1.0, 'experienced': 1.0, 'i': 2.0, 'installed': 1.0, 'these': 1.0, 'without': 2.0, 'the': 14.0, 'reviewer': 1.0, 'my': 1.0, 'too': 1.0, 'and': 3.0, 'drilled': 1.0, 'to': 5.0, 'magnet': 2.0, 'as': 1.0, 'works': 1.0, 'extensions': 1.0, 's': 1.0, 'going': 1.0, 'a': 2.0, 'hole': 3.0, 'putting': 1.0, 'be': 1.0, 'husband': 1.0, 'deep': 3.0, 'that': 2.0, 'drill': 1.0, 'close': 1.0, 'cabinet': 2.0, 'door': 2.0, 'piece': 1.0, 'make': 1.0, 'on': 1.0, 'enough': 3.0, 'masking': 1.0, 'needs': 1.0, 'so': 2.0, 'bit': 1.0, 'tape': 1.0}
Word element => {'helpful': 1.0, 'hope': 1.0, 'frugality': 1.0, 'unusual': 1.0, 'my': 1.0, 'wife': 1.0, 'thus': 1.0, 'used': 1.0, 'this': 2.0, 'side': 2.0, 'when': 1.0, 'pop': 1.0, 'store': 1.0, 'hardware': 1.0, 'latch': 1.0, 'other': 1.0, 'bolt': 1.0, 'surface': 1.0, 'sliding': 1.0, 'an': 1.0, 'place': 1.0, 'lok': 1.0, 'costs': 1.0, 'reduce': 1.0, 'middle': 1.0, 'reach': 1.0, 'meet': 1.0, 'but': 3.0, 'print': 1.0, 'then': 3.0, 'by': 1.0, 'after': 2.0, 'strike': 1.0, 'lesser': 1.0, 'enough': 1.0, 'clearly': 1.0, 'idea': 1.0, 'com': 1.0, 'any': 2.0, 'yes': 2.0, 'off': 1.0, 'see': 2.0, 'doh': 1.0, 'first': 3.0, 'lock': 4.0, 'over': 1.0, 'challenging': 1.0, 'plate': 1.0, 'eye': 1.0, 'safety': 1.0, 'instruction': 3.0, 'bit': 2.0, 'help': 1.0, 'full': 1.0, 'may': 2.0, 'even': 1.0, 'of': 11.0, 'disposal': 1.0, 'need': 2.0, 'or': 4.0, 'obviously': 1.0, 'which': 3.0, 'both': 1.0, 'sheet': 2.0, 'that': 5.0, 'because': 2.0, 'tips': 1.0, 'i': 7.0, 'hunting': 1.0, 'blows': 1.0, 'won': 1.0, 'two': 1.0, 'toddler': 2.0, 'will': 2.0, 'doors': 3.0, 'saver': 1.0, 'could': 1.0, 'at': 1.0, 'attaching': 1.0, 'get': 2.0, 'is': 1.0, 'can': 2.0, 'so': 1.0, 'work': 3.0, 'clearer': 1.0, 'size': 1.0, 'advertised': 1.0, 'using': 1.0, 'with': 2.0, 'you': 9.0, 'things': 1.0, 'energy': 1.0, 'much': 1.0, 'do': 2.0, 'rule': 1.0, 'more': 2.0, 'magnets': 1.0, 'try': 2.0, 'drilling': 2.0, 'too': 1.0, 'actual': 1.0, 'one': 4.0, 'supervising': 1.0, 'they': 1.0, 'diagrams': 2.0, 'impressed': 1.0, 'pdf': 1.0, 'some': 2.0, 'these': 2.0, 'garbage': 1.0, 'into': 1.0, 'considering': 1.0, 'evaluate': 1.0, 'through': 2.0, 'it': 6.0, 'be': 1.0, 'new': 1.0, 'cabinets': 1.0, 'post': 1.0, 'aforementioned': 1.0, 'a': 10.0, 'laser': 1.0, 'open': 2.0, 'another': 1.0, 'think': 1.0, 'if': 2.0, 'zoom': 1.0, 'inexpensive': 1.0, 'as': 3.0, 't': 4.0, 'door': 1.0, 'go': 2.0, 'to': 8.0, 'hurry': 1.0, 'and': 16.0, 'just': 4.0, 'stuff': 1.0, 'don': 2.0, 'in': 4.0, 'something': 1.0, 'install': 1.0, 'says': 1.0, 'buy': 1.0, 'well': 1.0, 'slow': 1.0, 'number': 1.0, 'everything': 1.0, 'them': 3.0, 'teach': 1.0, 'search': 1.0, 'for': 4.0, 'instructions': 2.0, 'money': 2.0, '71175': 1.0, 'found': 1.0, 'have': 4.0, 'drill': 2.0, 'break': 1.0, 'remember': 1.0, 'beer': 3.0, 'read': 1.0, 'em': 1.0, 'consider': 1.0, '4': 5.0, 'pre': 1.0, 'tot': 2.0, 'once': 1.0, 'loks': 1.0, 'before': 3.0, 'installation': 1.0, 'were': 1.0, 'website': 1.0, 'frame': 1.0, 'our': 1.0, 'your': 2.0, 'sink': 2.0, 'holes': 4.0, 'good': 1.0, 'cabinet': 5.0, 'save': 2.0, 're': 1.0, 'had': 1.0, '20': 1.0, 'all': 3.0, 'way': 1.0, 'common': 1.0, 'double': 3.0, 'from': 2.0, 'out': 1.0, 'magnet': 1.0, 'realized': 1.0, 'hole': 2.0, 'inside': 2.0, 'those': 1.0, 'bottom': 1.0, 'works': 1.0, 'thinking': 1.0, 'word': 1.0, 's': 1.0, 'doesn': 1.0, 'ignore': 1.0, 'edge': 1.0, 'best': 1.0, 'online': 1.0, 'the': 31.0, 'experience': 1.0, 'say': 1.0, 'avoid': 1.0, 'skip': 1.0, 'surgery': 1.0, 'groovy': 1.0, 'second': 3.0, 'part': 1.0, 'surfaces': 1.0, 'center': 3.0, '2': 1.0, 'interior': 1.0, 'mark': 2.0, 'plunger': 1.0, 'indeed': 1.0, 'on': 6.0, 'thingy': 1.0, 'test': 1.0, 'time': 3.0, 'top': 1.0, 'did': 2.0, 'was': 1.0, 'useless': 1.0, 'subsequent': 1.0, 'sense': 1.0, 'installs': 1.0, 'safety1st': 1.0, 'distracted': 1.0, 'would': 1.0, 'product': 1.0, 'insert': 1.0, 'use': 2.0, 'position': 1.0, 'attach': 1.0, 'fewer': 1.0}
Word element => {'looking': 1.0, 'otherwise': 1.0, 'ahead': 1.0, 'mind': 1.0, 'don': 1.0, 'great': 1.0, 'yes': 1.0, 'them': 2.0, 'find': 1.0, 'resulted': 1.0, 'even': 2.0, 'previous': 1.0, 'bought': 1.0, 'instructions': 1.0, 'front': 1.0, 'on': 4.0, 'loose': 1.0, 'locks': 1.0, 't': 2.0, 'replacement': 1.0, 'suggested': 1.0, 'drilling': 2.0, 'one': 1.0, 'too': 2.0, 'hassle': 1.0, 'drilled': 2.0, 'and': 3.0, 'through': 4.0, 'go': 2.0, 'a': 3.0, 'then': 2.0, 'we': 6.0, 'as': 1.0, 'to': 6.0, 'all': 1.0, 'doors': 3.0, 'reviewers': 1.0, 'size': 1.0, 'paneled': 1.0, 'right': 1.0, 'in': 4.0, 'buy': 1.0, 'thick': 1.0, 'though': 1.0, 'bit': 4.0, 'can': 1.0, 'so': 2.0, 'stated': 1.0, 'for': 1.0, 'mine': 1.0, 'measuring': 1.0, 'careful': 1.0, 'once': 1.0, 'these': 1.0, 'some': 1.0, 'have': 4.0, 'not': 2.0, 'give': 1.0, 'difficult': 1.0, 'install': 2.0, 'spot': 1.0, 'this': 3.0, 'it': 5.0, 'where': 1.0, 'cabinet': 2.0, 'come': 1.0, 'with': 2.0, 'drill': 2.0, 'stop': 3.0, 'work': 2.0, 'but': 1.0, 'was': 2.0, 'had': 1.0, 'second': 1.0, 'despite': 1.0, 'beveled': 1.0, 'very': 2.0, 'being': 1.0, 'still': 1.0, 'if': 2.0, 'my': 1.0, 'door': 3.0, 'husband': 1.0, 'came': 1.0, 'after': 1.0, 'realization': 1.0, 'been': 1.0, 'are': 1.0, 'lock': 3.0, 'would': 1.0, 'without': 1.0, 'works': 2.0, 'installed': 2.0, 'that': 2.0, 'because': 1.0, 'the': 18.0, 'of': 1.0, 'cut': 1.0, 'keep': 1.0, 'did': 2.0, 'makes': 1.0, 'only': 1.0, 'narrow': 1.0, 'way': 1.0, 'look': 1.0, 'is': 1.0, 'impossible': 1.0, 'i': 1.0, 'well': 1.0, 'you': 1.0, 'able': 1.0, 'get': 2.0, 'yet': 1.0}
Word element => {'or': 1.0, 'suggested': 1.0, 'down': 1.0, 'inside': 1.0, 'expecting': 1.0, 'ruining': 1.0, 'push': 1.0, 'you': 1.0, 'use': 1.0, 'front': 1.0, 'friends': 1.0, 'time': 1.0, 'some': 1.0, 'install': 1.0, 'great': 1.0, 'to': 7.0, 'smashing': 1.0, 'glue': 1.0, 'how': 1.0, 'our': 1.0, '30': 1.0, 'but': 2.0, '2': 2.0, 'so': 1.0, 'can': 1.0, 'systems': 1.0, 'there': 1.0, 'they': 3.0, 'drawers': 3.0, 'only': 2.0, 'magnets': 1.0, 'do': 1.0, 'get': 2.0, 'anyone': 1.0, 'and': 3.0, 'three': 1.0, 'since': 1.0, 'keep': 1.0, 'is': 1.0, 'locks': 5.0, 'than': 1.0, 'under': 1.0, '5': 1.0, 'worry': 2.0, 'took': 2.0, 'have': 6.0, 'arm': 1.0, 'all': 1.0, 'other': 1.0, 'cabinets': 1.0, 'we': 4.0, 'small': 1.0, 'a': 4.0, 't': 4.0, 'hole': 1.0, 'finger': 1.0, 'the': 16.0, 'of': 5.0, 'these': 1.0, 'once': 1.0, 'bathroom': 1.0, 'in': 2.0, 'door': 3.0, 'more': 1.0, 'protect': 1.0, 'tot': 1.0, 'loks': 1.0, 'work': 1.0, 'open': 2.0, 'their': 1.0, 'fingers': 1.0, 'chemicals': 1.0, 'that': 3.0, 'installation': 1.0, 'sink': 1.0, 'little': 1.0, 'them': 1.0, 'always': 1.0, 'complaining': 1.0, 'his': 1.0, 'minutes': 1.0, 'trying': 1.0, 'don': 3.0, 'about': 2.0, 'with': 2.0, 'also': 1.0, 'from': 1.0, 'adhesives': 1.0, 'state': 1.0, 'any': 1.0, 'your': 1.0, 'smashed': 1.0, 'on': 2.0, 'removed': 1.0, 'are': 3.0, 'lock': 1.0, 'not': 1.0, 'knives': 1.0, 'i': 1.0, 'well': 1.0, 'toddler': 2.0, 'product': 1.0}
Word element => {'anything': 1.0, 'won': 1.0, 'system': 1.0, 'safety': 1.0, 'with': 1.0, 'impressed': 1.0, 'from': 1.0, 'else': 1.0, 'fridge': 1.0, '3': 1.0, 'key': 4.0, 'an': 1.0, '99': 1.0, 'up': 1.0, '7': 1.0, 'pay': 1.0, 'packs': 1.0, 'couple': 1.0, 'buy': 1.0, 'like': 1.0, 'keys': 1.0, 'need': 1.0, 'if': 1.0, 'put': 2.0, 'just': 2.0, 'ordered': 1.0, 'know': 1.0, 'easy': 1.0, 'another': 1.0, 'extra': 2.0, 'minutes': 2.0, 'took': 1.0, 'directions': 1.0, 'read': 1.0, 'about': 2.0, 'awesome': 1.0, 'work': 2.0, 'will': 1.0, 'give': 1.0, 'little': 3.0, 'they': 3.0, 'he': 1.0, 'plastic': 1.0, 'being': 1.0, 'very': 2.0, 'slow': 1.0, 'it': 10.0, 'wart': 1.0, 'always': 1.0, 'them': 2.0, 'yes': 1.0, 'off': 1.0, 'holding': 2.0, 'm': 1.0, 'in': 3.0, 'turning': 1.0, 'only': 1.0, 'purchase': 1.0, 'but': 3.0, '2': 4.0, 'locks': 3.0, 'proof': 1.0, 'room': 1.0, 'these': 1.0, 'some': 1.0, 'careful': 2.0, 'your': 1.0, 'son': 1.0, 'super': 1.0, 'month': 1.0, 'under': 1.0, 'negative': 1.0, 'sink': 1.0, 'saw': 1.0, 'a': 1.0, 't': 2.0, 'maybe': 1.0, 's': 1.0, 'pack': 1.0, 'made': 1.0, 'reached': 1.0, 'cabinets': 1.0, 'be': 1.0, 'when': 1.0, 'traditional': 1.0, 'bucks': 1.0, 'you': 10.0, 'kitchen': 1.0, 'extenders': 1.0, 'my': 2.0, 'me': 3.0, 'where': 2.0, 'cabinet': 1.0, 'have': 3.0, 'hesitant': 1.0, 'fingers': 2.0, 'was': 4.0, 'doesn': 1.0, 'high': 1.0, 'to': 4.0, 'as': 4.0, 'out': 1.0, 'magnet': 1.0, 'i': 9.0, 'living': 1.0, 'old': 1.0, 'freeze': 1.0, 'and': 12.0, 'arms': 1.0, 'this': 1.0, 'few': 1.0, 'said': 1.0, '18': 1.0, 'came': 1.0, 'on': 6.0, 'long': 1.0, 'had': 1.0, 'child': 1.0, 'bought': 1.0, 'try': 1.0, 'one': 2.0, 'that': 4.0, 'because': 1.0, 'the': 18.0, 'of': 3.0, 'distracting': 1.0, 'drill': 3.0, 'tricky': 1.0, 'through': 1.0, 'is': 2.0, 'quite': 1.0, '30': 1.0, 'right': 2.0, 'true': 1.0, 'did': 3.0, 'lock': 1.0, 'first': 2.0, 'blame': 1.0, 'more': 5.0, 'husband': 1.0, '10': 1.0, 'such': 1.0, 'for': 4.0, 'we': 1.0, 'then': 1.0, 'reviews': 2.0, 'take': 1.0, 'consider': 2.0, 'can': 3.0, 'so': 2.0, 'speed': 1.0, 'stick': 1.0, 'down': 1.0, 'get': 3.0, 'away': 2.0, 'now': 1.0, 'figure': 1.0, 'almost': 1.0, 'worth': 1.0, 'use': 2.0}
Word element => {'good': 1.0, 'overall': 1.0, 'hooks': 1.0, 'used': 1.0, 'in': 1.0, 'chemicals': 1.0, 'sharp': 1.0, 'have': 1.0, 'so': 1.0, 'than': 1.0, 'more': 1.0, 'are': 1.0, 'drawers': 1.0, 'they': 1.0, 'can': 1.0, 'open': 2.0, 'them': 3.0, 'pry': 2.0, 'able': 1.0, 'kinds': 1.0, 'won': 1.0, 'daughter': 1.0, 'that': 2.0, 'confident': 1.0, 'effective': 1.0, 'inch': 1.0, 'don': 1.0, 'install': 2.0, 'other': 2.0, 'cabinets': 4.0, 'it': 1.0, 'were': 2.0, 'problem': 1.0, 'locks': 1.0, 'an': 1.0, 'consider': 1.0, 'i': 3.0, 'people': 1.0, 'fine': 1.0, 'who': 1.0, 'at': 1.0, 'm': 1.0, 'c': 1.0, 'handyman': 1.0, 'these': 3.0, 'heck': 1.0, 'the': 5.0, 'myself': 1.0, 'we': 2.0, 't': 6.0, 'a': 4.0, 'easy': 2.0, 'very': 3.0, 'read': 1.0, 'our': 2.0, 'to': 4.0, 'all': 1.0, 'and': 5.0, 'seems': 1.0, 'budge': 1.0, 'drill': 1.0, 'installing': 1.0, 'my': 1.0, 'b': 1.0, 'cheap': 1.0, 'for': 2.0, 'expensive': 1.0, 'afraid': 1.0, 'of': 1.0, 'got': 1.0, 'wouldn': 1.0, 'didn': 2.0, 'like': 1.0, 'know': 1.0, 'just': 3.0, 'plastic': 1.0, 'how': 1.0, 'thick': 1.0, 'had': 2.0, 'either': 1.0, 'abnormally': 1.0, 'or': 2.0, 'use': 1.0, 'instructions': 2.0, 'objects': 1.0, 'follow': 1.0, 'you': 1.0, 'll': 1.0, 'be': 2.0}
Word element => {'heartbeat': 1.0, 'in': 1.0, 'would': 1.0, 'of': 1.0, 'interfere': 1.0, 'recommend': 1.0, 'may': 1.0, 'to': 2.0, 'your': 1.0, 'they': 2.0, 'used': 1.0, 'cabinets': 1.0, 'install': 1.0, 'take': 1.0, 'easiest': 1.0, 'these': 1.0, 'the': 2.0, 'are': 1.0, 'not': 2.0, 'appearance': 1.0, 'love': 1.0, 'do': 1.0, 'and': 2.0, 'getting': 1.0, 'with': 1.0, 'it': 1.0, 'a': 2.0, 'little': 1.0, 'worth': 1.0, 'secure': 1.0, 'but': 1.0, 'so': 1.0, 'really': 1.0}
Word element => {'off': 1.0, 'end': 1.0, 'but': 1.0, 'study': 1.0, 'to': 1.0, 'drilling': 1.0, 'just': 1.0, 'cannot': 1.0, 'instructions': 1.0, 'on': 1.0, 'are': 1.0, 'way': 1.0, 'you': 3.0, 'then': 1.0, 'pictures': 1.0, 'organizing': 1.0, 'at': 1.0, 'some': 1.0, 'thinking': 1.0, 'myself': 1.0, 'installed': 1.0, 'this': 1.0, 'it': 3.0, 'by': 1.0, 'i': 2.0, 'have': 1.0, 'thing': 1.0, 'bad': 1.0, 'locks': 1.0, 'your': 1.0, 'ever': 1.0, 'and': 4.0, 'woman': 1.0, '5': 1.0, 'a': 1.0, 'being': 1.0, 'start': 1.0, 'wasn': 1.0, 't': 1.0, 'the': 4.0, 'that': 1.0, 'best': 1.0, 'pays': 1.0, 'is': 1.0, 'bought': 1.0, 'takes': 1.0}
Word element => {'very': 1.0, 'are': 1.0, 'returned': 1.0, 'it': 3.0, 'or': 1.0, 'of': 1.0, 'one': 1.0, 'work': 1.0, 'but': 1.0, 'past': 2.0, 'didn': 1.0, 'even': 1.0, 'safety': 1.0, 'the': 2.0, 'i': 2.0, 'these': 1.0, 'products': 1.0, 'guess': 2.0, 'buy': 1.0, 'five': 1.0, 'known': 1.0, 'that': 2.0, 'were': 1.0, 'experience': 1.0, 'have': 1.0, 'should': 1.0, 'dumbfounded': 1.0, 'with': 2.0, 'unhappy': 1.0, 'first': 1.0, 'this': 1.0, 'children': 1.0, 'installed': 1.0, 'having': 1.0, 'in': 1.0, 'poor': 1.0, 'system': 1.0, 'designed': 1.0, 'your': 2.0, 'experiences': 1.0, 'at': 1.0, 'had': 1.0, 'made': 1.0, 'cabinetry': 1.0, 'out': 1.0, 'poorly': 1.0, 'cheaply': 1.0, 'garbage': 1.0, 'is': 1.0, 'if': 1.0, 'you': 2.0, 'don': 2.0, 'love': 1.0, 'for': 1.0, 'and': 2.0, 'care': 1.0, 'beautiful': 1.0, 't': 3.0, 'we': 5.0, 'go': 1.0}
Word element => {'on': 1.0, 'life': 1.0, 'depended': 1.0, 'work': 1.0, 'not': 1.0, 'could': 1.0, 'my': 1.0, 'if': 1.0, 'own': 1.0, 'install': 1.0, 'ended': 1.0, 'them': 1.0, 'up': 1.0, 'get': 1.0, 'and': 1.0, 'impossible': 1.0, 'returning': 1.0, 'were': 1.0, 'we': 1.0, 'very': 1.0, 'builds': 1.0, 'to': 2.0, 'husband': 1.0, 'his': 2.0, 'furniture': 1.0, 'is': 1.0, 'handy': 1.0, 'these': 2.0, 'tools': 1.0, 'it': 1.0, 'with': 1.0, 'he': 1.0}
Word element => {'highly': 1.0, 'can': 1.0, 'installation': 1.0, 'they': 1.0, 'and': 2.0, 'tot': 1.0, 'locks': 1.0, 'plastic': 1.0, 'toddler': 1.0, 'traditional': 1.0, 'without': 1.0, 'the': 5.0, 'proper': 1.0, 'unopenable': 1.0, 'still': 1.0, 'be': 1.0, 'say': 1.0, 'is': 2.0, 'kept': 1.0, 't': 1.0, 'could': 1.0, 'a': 1.0, 'great': 1.0, 'pulled': 1.0, 'tried': 1.0, 'i': 2.0, 'breaking': 1.0, 'this': 2.0, 'it': 1.0, 'of': 2.0, 'plus': 1.0, 'or': 1.0, 'reccommended': 1.0, 'about': 1.0, 'several': 1.0, 'brands': 1.0, 'does': 1.0, 'cupboards': 1.0, 'open': 1.0, 'enough': 1.0, 'lok': 1.0, 'strong': 1.0, 'not': 1.0, 'key': 1.0, 'look': 1.0, 'to': 1.0, 'my': 1.0, 'either': 1.0, 'wonderful': 1.0, 'compromise': 1.0, 'instructions': 1.0, 'are': 1.0, 'easy': 1.0, 'follow': 1.0, 'product': 2.0, 'cupboard': 2.0, 'for': 1.0}
Word element => {'re': 1.0, 'pin': 1.0, 'long': 1.0, 'so': 1.0, '8': 1.0, 'locks': 1.0, '3': 1.0, 'strong': 1.0, 'lock': 2.0, 'with': 1.0, 'that': 1.0, 'however': 1.0, 'entirely': 2.0, 'than': 1.0, 'packs': 1.0, 'thicker': 1.0, 'drilling': 1.0, 'fully': 1.0, 'deter': 1.0, 'even': 1.0, 'stops': 1.0, 'before': 1.0, 'across': 1.0, 'consistently': 1.0, 'and': 4.0, 'get': 1.0, 'great': 1.0, '1': 3.0, 'working': 1.0, 'through': 1.0, 'concept': 1.0, 'in': 2.0, 'pieces': 1.0, 'activates': 1.0, 'year': 1.0, 'bought': 2.0, 'phenomenal': 1.0, 'my': 1.0, 'prying': 1.0, 'comes': 1.0, 'is': 4.0, 'holes': 1.0, 'non': 1.0, 'old': 1.0, 'using': 1.0, 'device': 2.0, 'i': 4.0, 'as': 1.0, 'magnet': 1.0, 'any': 1.0, 'to': 3.0, 'was': 1.0, 'functional': 2.0, 'this': 2.0, 'lost': 1.0, 'defeat': 1.0, 'the': 11.0, 'hands': 1.0, 'add': 2.0, 'once': 1.0, 'of': 4.0, 'did': 1.0, 'cabinet': 1.0, 'me': 1.0, 'not': 2.0, 'you': 3.0, '125': 2.0, 'able': 1.0, '2': 1.0, 'work': 1.0, 'extension': 4.0, 'slug': 3.0, 'fabulously': 1.0, 'for': 1.0, 'cabinets': 1.0, 'wood': 2.0, 'under': 1.0, 'thick': 1.0, 'sentence': 1.0, 'a': 1.0}
Word element => {'pass': 1.0, 'hang': 2.0, 'does': 1.0, 'install': 1.0, 'handyman': 1.0, 'lengthen': 1.0, 'effectively': 1.0, 'slugs': 1.0, 'extender': 1.0, 'really': 1.0, 'thick': 2.0, 's': 1.0, 'everything': 1.0, 'installed': 1.0, 'few': 1.0, 'quite': 1.0, 'have': 7.0, 'rest': 1.0, 'after': 1.0, 'than': 1.0, 'what': 2.0, 'far': 1.0, 'as': 2.0, 'relations': 1.0, 'making': 1.0, 'spacial': 1.0, 'some': 2.0, 'hurrying': 1.0, 'me': 1.0, 'was': 1.0, 'did': 1.0, 'ever': 1.0, 'screwed': 1.0, 'be': 3.0, 'note': 1.0, 'installing': 1.0, 'mile': 1.0, 'take': 1.0, 'we': 3.0, 'more': 1.0, 'depress': 1.0, 'like': 1.0, 'disengaged': 1.0, 'a': 6.0, 'small': 2.0, 'out': 1.0, 'sticky': 2.0, 'them': 2.0, 'is': 5.0, 'say': 1.0, 'drawer': 1.0, 'in': 3.0, 'bear': 1.0, 'helpful': 1.0, 'collect': 1.0, 'spot': 1.0, 'kids': 1.0, 're': 1.0, 'cabinet': 1.0, 'especially': 1.0, 'where': 2.0, 'for': 2.0, 'pretty': 1.0, 'to': 14.0, 'things': 1.0, 'direction': 1.0, 'you': 8.0, 'push': 1.0, 'if': 2.0, 'still': 1.0, 'went': 1.0, 'those': 1.0, 'gap': 2.0, 'get': 4.0, 'tab': 3.0, 'sure': 2.0, 'and': 10.0, 'even': 2.0, 'down': 1.0, 'kind': 1.0, 'loosen': 1.0, 'hands': 1.0, 'needed': 2.0, 'smoothly': 1.0, 'disengage': 2.0, 'screwing': 1.0, 'how': 1.0, 'with': 2.0, 'quick': 1.0, 'lined': 1.0, 'hardware': 1.0, 'it': 5.0, 'smashed': 1.0, 'hardwood': 1.0, 'but': 2.0, 'from': 1.0, 'allow': 1.0, 'read': 1.0, 'each': 1.0, 'your': 4.0, 'kid': 1.0, 'of': 4.0, 'the': 19.0, 'finger': 2.0, 'great': 1.0, 'tried': 1.0, 'until': 1.0, 'lots': 1.0, 'trial': 2.0, 'worth': 1.0, 'figure': 1.0, 'error': 2.0, 'they': 5.0, 'catch': 1.0, 'supposed': 2.0, 'firmly': 1.0, 'quickly': 1.0, 'usually': 1.0, 'tend': 1.0, 'no': 1.0, 'make': 1.0, 'help': 1.0, 'also': 1.0, 'magnetic': 2.0, 'doors': 3.0, 'will': 1.0, 'up': 4.0, 'over': 2.0, 'one': 2.0, 'lot': 1.0, 'wide': 1.0, 'time': 1.0, 'remain': 1.0, 'these': 3.0, 'shut': 1.0, 'bad': 1.0, 'first': 1.0, 'are': 3.0, 'lock': 3.0, 'key': 2.0, 'break': 1.0, 'directions': 1.0, 'which': 1.0, 'good': 1.0, 'drawers': 1.0, 'include': 1.0, 'hook': 2.0, 'templates': 2.0, 'template': 1.0, 'well': 1.0, 'grime': 1.0, 'i': 3.0, 'that': 3.0, 'or': 1.0, 'need': 1.0, 'instructions': 2.0}
Word element => {'out': 1.0, 'these': 1.0, 'things': 1.0, 'figure': 1.0, 'cat': 1.0, 'my': 1.0, 'money': 1.0, 'waste': 1.0, 'could': 1.0, 'assuming': 1.0, 'your': 2.0, 'was': 1.0, 'functioning': 1.0, 'born': 1.0, 'with': 1.0, '2': 1.0, 'child': 1.0, 'hands': 1.0, 'don': 1.0, 't': 1.0}
Word element => {'doors': 1.0, 'other': 1.0, 'can': 1.0, 'she': 1.0, 'stairs': 1.0, 'pantry': 1.0, 'old': 1.0, 'product': 1.0, 'to': 1.0, 'open': 1.0, 'as': 1.0, 'year': 1.0, 'two': 1.0, 'keeps': 1.0, 'out': 1.0, 'of': 1.0, 'basement': 2.0, 'with': 1.0, 'this': 1.0, 'the': 1.0, 'great': 1.0, 't': 1.0, 'all': 1.0, 'have': 1.0, 'ease': 1.0, 'and': 1.0, 'is': 1.0, 'door': 1.0, 'worry': 1.0, 'don': 1.0, 'about': 1.0, 'down': 1.0, 'her': 1.0, 'falling': 1.0}
Word element => {'parentproof': 1.0, 'be': 1.0, 'should': 1.0, 'needed': 1.0, 'i': 2.0, 'when': 1.0, 'successfully': 1.0, 'called': 1.0, 'however': 1.0, 'out': 1.0, 'covers': 1.0, 'design': 1.0, 'keep': 1.0, 'did': 1.0, 'manufacturers': 1.0, 'for': 1.0, 'a': 1.0, 'middle': 1.0, 'little': 1.0, 'just': 1.0, 'of': 1.0, 'immediately': 1.0, 'size': 1.0, 'right': 1.0, 'fingers': 1.0, 'to': 3.0, 'open': 1.0, 'son': 1.0, 'in': 2.0, 'hole': 1.0, 'more': 1.0, 'the': 5.0, 'my': 1.0, 'me': 1.0, 'clever': 1.0, 'get': 1.0, 'it': 1.0, 'therefore': 1.0, 'this': 1.0, 'they': 1.0, 'door': 1.0, 'realized': 1.0, 'is': 1.0, 'really': 1.0, 'need': 1.0, 'think': 2.0}
Word element => {'of': 1.0, 'time': 1.0, 'bit': 1.0, 'given': 1.0, 'break': 1.0, 'determined': 1.0, 'big': 1.0, 'doorknobs': 2.0, 'spin': 1.0, 'child': 1.0, 'don': 1.0, 'if': 2.0, 'long': 1.0, 'last': 1.0, 'though': 1.0, 'adequate': 1.0, 'knobs': 1.0, 'be': 1.0, 'it': 3.0, 'works': 1.0, 'much': 1.0, 'only': 1.0, 'is': 3.0, 'fine': 1.0, 'the': 4.0, 'could': 1.0, 'a': 2.0, 't': 2.0, 'knob': 1.0, 'i': 1.0, 'but': 2.0, 'plastic': 2.0, 'too': 2.0, 'and': 2.0, 'you': 1.0, 'think': 1.0, 'on': 2.0, 'have': 1.0, 'package': 1.0, 'this': 2.0, 'freely': 1.0, 'large': 1.0, 'says': 1.0, 'larger': 1.0, 'there': 1.0, 'should': 1.0, 'as': 1.0, 'our': 1.0, 'sags': 1.0, 'would': 1.0, 'product': 2.0, 'cheap': 1.0, 'for': 1.0, 'supervision': 1.0, 'won': 1.0, 'well': 1.0, 'because': 1.0}
Word element => {'even': 1.0, 'at': 1.0, 'she': 3.0, 'watering': 1.0, 'watched': 1.0, 'slow': 1.0, 'door': 2.0, 'is': 1.0, 'my': 1.0, 'the': 5.0, '2': 1.0, 'i': 5.0, 'flowers': 1.0, 'this': 1.0, 'with': 2.0, 'have': 1.0, 'thing': 1.0, 'year': 1.0, 'all': 1.0, 'to': 1.0, 'as': 3.0, 'on': 1.0, 'and': 3.0, 'me': 1.0, 'old': 1.0, 'laughing': 1.0, 'do': 1.0, 'up': 1.0, 'daddy': 1.0, 'walking': 1.0, 't': 2.0, 'driveway': 1.0, 'a': 1.0, 'down': 2.0, 'her': 3.0, 'in': 2.0, 'house': 2.0, 'back': 1.0, 'was': 2.0, 'doesn': 2.0, 'sissy': 1.0, 'that': 1.0, 'next': 2.0, 'standing': 1.0, 'know': 1.0, 'brought': 1.0, 'right': 1.0, 'opened': 1.0, 'quickly': 1.0, 'ended': 1.0, 'stop': 1.0}
Word element => {'get': 1.0, 'trying': 1.0, 'modest': 1.0, 'all': 2.0, 'for': 3.0, 'about': 1.0, 'knowing': 1.0, 'might': 1.0, 'glad': 1.0, 'without': 2.0, 'them': 2.0, 'leave': 1.0, 'heavy': 1.0, 'stiff': 1.0, 'outside': 1.0, 'go': 1.0, 'have': 1.0, 'triplets': 1.0, '5': 1.0, 'worth': 1.0, 'now': 1.0, 'areas': 1.0, 'until': 1.0, 'peace': 1.0, '1': 2.0, 'you': 1.0, 'able': 3.0, 'us': 2.0, 'taller': 1.0, 'be': 4.0, 'not': 1.0, 'it': 4.0, 'covers': 5.0, 'touches': 1.0, 'freely': 1.0, 'kids': 6.0, 'cover': 2.0, 'mind': 1.0, 'house': 2.0, 'enough': 3.0, 'can': 2.0, 'so': 2.0, 'loosely': 1.0, '4': 2.0, 'doesn': 1.0, 'was': 1.0, 'your': 2.0, 'they': 5.0, 'a': 5.0, 'going': 1.0, 'well': 1.0, 'at': 2.0, 'when': 4.0, 'work': 1.0, 'over': 2.0, 'open': 3.0, 'should': 1.0, 'from': 1.0, 'worked': 1.0, 'on': 5.0, 'spins': 1.0, 'our': 5.0, 'to': 10.0, 'their': 1.0, 'tallest': 1.0, 'could': 1.0, 'doors': 4.0, 'were': 4.0, 'and': 8.0, 'time': 1.0, 'tall': 1.0, 'these': 4.0, 'but': 2.0, 'most': 1.0, 'door': 2.0, 'more': 1.0, 'bad': 1.0, 'are': 6.0, 't': 5.0, 'fit': 1.0, 'still': 1.0, 'turn': 1.0, 'bigger': 1.0, 'buttons': 1.0, 'through': 1.0, 'we': 3.0, 'opposite': 1.0, 's': 2.0, 'sides': 1.0, 'the': 18.0, 'of': 3.0, 'same': 1.0, 'after': 1.0, 'knob': 6.0, 'stop': 1.0, 'price': 1.0, 'child': 3.0, 'year': 1.0, 'intended': 1.0, 'old': 2.0, 'replaced': 1.0, 'don': 1.0, 'isn': 1.0, '2': 1.0, 'unsafe': 1.0, 'few': 1.0, 'by': 1.0, 'that': 1.0, 'because': 1.0, 'hands': 1.0, 'gripped': 1.0, 'help': 1.0, 'rubber': 1.0, 'those': 1.0, 'inside': 1.0, 'turned': 1.0, 'down': 1.0, 'getting': 1.0, 'sticky': 1.0, 'much': 1.0, 'top': 1.0, 'til': 1.0, 'saying': 1.0, 'lot': 1.0, 'too': 2.0, 'one': 1.0, 'began': 1.0, 'with': 1.0, 'got': 1.0, 'difficult': 1.0, 'press': 2.0, 'years': 2.0, 'no': 1.0}
Word element => {'their': 1.0, 'around': 1.0, 'having': 1.0, 'not': 1.0, 'love': 1.0, 'will': 1.0, 'small': 1.0, 'except': 1.0, 'strap': 2.0, 'there': 1.0, 'get': 1.0, 'to': 2.0, 'way': 1.0, 'without': 1.0, 'off': 1.0, 'shoulder': 2.0, 'good': 1.0, 'fuss': 1.0, 'a': 1.0, 'is': 1.0, 'this': 1.0, 'person': 1.0, 'much': 1.0, 'neck': 2.0, 'the': 2.0, 'more': 2.0, 't': 1.0, 'any': 2.0, 'your': 2.0, 'isn': 1.0, 'too': 1.0, 'say': 1.0}
Word element => {'too': 1.0, 'them': 1.0, 'and': 1.0, 'gift': 1.0, 'several': 1.0, 'friends': 1.0, 'bought': 1.0, 'belt': 1.0, 'wear': 1.0, 'so': 1.0, 'much': 1.0, 'neck': 1.0, 'have': 1.0, 'all': 1.0, 'i': 2.0, 'shoulder': 1.0, 'love': 1.0, 'comfortable': 1.0, 'mine': 1.0, 'for': 2.0, 'used': 1.0, 'more': 1.0, 'these': 1.0, 'the': 3.0, 'are': 1.0, 'helps': 1.0, 'seat': 1.0, 'just': 1.0, 'not': 1.0, 'they': 1.0, 'time': 1.0, 'children': 1.0, 'it': 2.0, 'is': 1.0, 'really': 1.0, 'keep': 1.0, 'now': 1.0, 'to': 2.0, 'strap': 1.0, 'you': 1.0, 'as': 1.0, 'from': 1.0, 'a': 1.0, 'grabbing': 1.0, 'across': 1.0}
Word element => {'instead': 1.0, 'get': 1.0, 'towards': 1.0, 'would': 1.0, 'you': 1.0, 'pounds': 1.0, 'old': 1.0, '8': 1.0, 'at': 1.0, 'until': 1.0, 'just': 1.0, 'product': 1.0, 'for': 1.0, 'ready': 1.0, 'are': 2.0, 'children': 1.0, 'booster': 2.0, 'back': 1.0, 'injuries': 1.0, 'passenger': 1.0, 'take': 1.0, 'safe': 1.0, 'no': 2.0, 'thighs': 1.0, 'belt': 4.0, 'face': 1.0, 'ride': 1.0, 'money': 1.0, '80': 1.0, 'most': 1.0, 'shoulder': 1.0, 'can': 2.0, 'item': 1.0, 'hips': 1.0, 'rest': 1.0, 'they': 2.0, 'cause': 2.0, 'still': 1.0, 'serious': 1.0, 'their': 1.0, 'should': 2.0, 'soft': 1.0, 'this': 3.0, 'seatbelt': 2.0, 'it': 1.0, 'is': 2.0, 'not': 2.0, 'least': 1.0, 'to': 2.0, 'seat': 3.0, 'the': 10.0, 'neck': 1.0, 'behind': 1.0, 'lap': 2.0, 'in': 2.0, 'portion': 1.0, 'years': 1.0, 'onto': 1.0, 'devices': 1.0, 'short': 1.0, 'of': 3.0, 'child': 1.0, 'up': 1.0, 'internal': 1.0, 'abdomen': 1.0, 'like': 1.0, 'which': 1.0, 'a': 4.0, 'crash': 1.0, 'if': 1.0, 'part': 1.0, 'properly': 1.0, 'put': 1.0, 'on': 1.0, 'your': 1.0, 'across': 1.0, 'and': 3.0, 'too': 1.0, 'use': 1.0, 'be': 1.0, 'putting': 1.0}
Word element => {'am': 1.0, 'price': 1.0, 'product': 1.0, 'for': 1.0, 'especially': 1.0, 'with': 2.0, 'pleased': 2.0, 'used': 1.0, 'issue': 1.0, 'an': 1.0, 'even': 1.0, 'it': 8.0, 'this': 2.0, 'car': 1.0, 'every': 1.0, 'disabled': 1.0, 'in': 5.0, 'adjuster': 1.0, 'belt': 2.0, 'have': 2.0, 'i': 2.0, 'took': 1.0, 'ordered': 1.0, 'five': 2.0, 'and': 4.0, 'needs': 1.0, 'so': 1.0, 'not': 1.0, 'of': 1.0, 'rides': 1.0, 'these': 1.0, 'been': 1.0, 'that': 1.0, 'reccommend': 1.0, 'my': 2.0, 'is': 2.0, 'cars': 1.0, 'son': 2.0, 'would': 2.0, 'easy': 2.0, 'all': 2.0, 'seat': 2.0, 'to': 6.0, 'now': 1.0, 'he': 2.0, 'adjust': 2.0, 'install': 1.0, 'stays': 1.0, 'while': 1.0, 'has': 1.0, 'well': 1.0, '12': 1.0, 'anyone': 1.0, 'him': 2.0, 'be': 1.0, 'secured': 1.0, 'the': 2.0, 'place': 1.0, 'without': 1.0, 'choking': 1.0, 'we': 1.0, 'a': 1.0, 's': 1.0, 'very': 1.0, 'little': 1.0, 'but': 1.0}
Word element => {'be': 1.0, 'traveling': 1.0, 'excellent': 1.0, 'are': 1.0, 'yeah': 1.0, 'in': 2.0, 'themselves': 1.0, 'clip': 1.0, 'properly': 1.0, 'months': 1.0, 'on': 1.0, 'will': 1.0, 'work': 1.0, 'but': 1.0, 'put': 1.0, 'and': 2.0, 'them': 1.0, 'one': 1.0, 'yet': 1.0, 'using': 1.0, 'since': 1.0, 'a': 2.0, 'adjusters': 1.0, 'can': 1.0, 'minutes': 1.0, 'of': 1.0, 'been': 1.0, 'few': 2.0, 'two': 1.0, 'the': 1.0, 'these': 1.0, 'they': 3.0, 'have': 2.0, 'my': 1.0, 'when': 1.0, 'kids': 2.0, 'were': 1.0, '5': 1.0, 'take': 1.0, 'another': 1.0, 'years': 1.0, 'i': 2.0, 'old': 1.0, 'buying': 1.0, 'to': 1.0}
Word element => {'alternitives': 1.0, 'wife': 1.0, 'little': 1.0, 'is': 2.0, 'my': 1.0, 'more': 1.0, 'the': 1.0, 'one': 1.0, 'of': 1.0, 'people': 1.0, 'other': 1.0, 'this': 1.0, 'than': 1.0, 'confortable': 1.0}
Word element => {'well': 1.0, 'is': 2.0, 'for': 1.0, 'love': 2.0, 'away': 1.0, 'and': 2.0, 'that': 2.0, 'installation': 1.0, 'them': 1.0, 'stayed': 1.0, 'locks': 2.0, 'open': 1.0, 'comment': 1.0, 'husband': 1.0, 'as': 1.0, 'to': 2.0, 'unlock': 1.0, 'part': 1.0, 'finally': 1.0, 'installed': 1.0, 'believe': 1.0, 'the': 6.0, 'finger': 1.0, 'great': 1.0, 'item': 1.0, 'magnetic': 1.0, 'i': 5.0, 'price': 1.0, 'absolutely': 1.0, 'process': 1.0, 'can': 1.0, 'but': 1.0, 'work': 1.0, 'my': 1.0, 'fact': 1.0, 'you': 1.0, 'smash': 1.0, 'trying': 1.0, 'don': 1.0, 'have': 1.0, 't': 2.0, 'a': 1.0, 'drawer': 1.0, 'worth': 1.0, 'or': 1.0, 'door': 1.0, 'on': 1.0, 'your': 1.0, 'in': 1.0, 'of': 1.0, 'it': 1.0, 'this': 1.0}
Word element => {'back': 1.0, 'emergency': 1.0, 'not': 1.0, 'will': 1.0, 'enclosed': 1.0, 'if': 1.0, 'regular': 1.0, 'in': 1.0, 'get': 1.0, 'able': 1.0, 'won': 1.0, 'with': 1.0, 'key': 4.0, 'leave': 1.0, 'up': 1.0, 'child': 1.0, 'invisible': 1.0, 'was': 1.0, 'really': 2.0, 'refrigerator': 1.0, 'lose': 1.0, 'when': 1.0, 'unless': 1.0, 'you': 3.0, 'follow': 1.0, 'within': 1.0, 'be': 2.0, 'expect': 1.0, 'are': 3.0, 'my': 2.0, 'it': 3.0, 'this': 2.0, 'do': 1.0, 'only': 1.0, 'first': 1.0, 'hard': 2.0, 'd': 1.0, 'completely': 1.0, 'is': 2.0, 'we': 1.0, 't': 2.0, 's': 2.0, 'a': 5.0, 'does': 1.0, 'either': 1.0, 'what': 2.0, 'kit': 1.0, 'for': 1.0, 'product': 2.0, 'expensive': 1.0, 'very': 1.0, 'as': 1.0, 'magnet': 1.0, 'to': 4.0, 'exactly': 2.0, 'would': 1.0, 'true': 1.0, 'that': 1.0, 'reach': 1.0, 'possibly': 1.0, 'the': 7.0, 'work': 1.0, 'can': 1.0, '2': 1.0, 'one': 1.0, '1': 1.0, 'nice': 1.0, 'big': 1.0, 'install': 1.0, 'like': 1.0, 'version': 1.0, 'gripes': 1.0, 'instructions': 1.0, 'bit': 1.0, 'think': 1.0, 'an': 2.0, 'and': 4.0, 'adhesive': 1.0, 'or': 1.0, 'seller': 1.0, 'buy': 1.0, 'defeat': 1.0, 'looking': 1.0, 'extra': 2.0, 'kets': 1.0, 'two': 1.0, 'i': 3.0, 'otherwise': 1.0}
Word element => {'folks': 1.0, 'if': 1.0, 'am': 1.0, 'sure': 1.0, 'return': 1.0, 'designed': 1.0, 'learned': 1.0, 'bought': 1.0, 'part': 1.0, 'make': 1.0, 'there': 2.0, 'nada': 1.0, 'extra': 1.0, 'even': 2.0, 'ebay': 1.0, 'cover': 1.0, 'inch': 2.0, 'half': 2.0, 'for': 2.0, 'brother': 1.0, 'metal': 1.0, 'they': 4.0, 'drawers': 4.0, 'holes': 1.0, 'reviews': 1.0, 'not': 6.0, 'package': 1.0, 'cabinet': 1.0, 'magnetic': 1.0, 'reviewers': 1.0, 'bad': 1.0, 'are': 2.0, 'cheap': 1.0, 'like': 1.0, 'using': 1.0, 'line': 1.0, 'lesson': 1.0, 'skeptical': 1.0, 'point': 1.0, 'locking': 1.0, 'warned': 1.0, 'kitchen': 1.0, 'them': 4.0, 'bottom': 1.0, 'solid': 2.0, 'interior': 1.0, 'some': 1.0, 'these': 5.0, 'may': 1.0, 'my': 5.0, 'read': 1.0, 'cannot': 1.0, 'very': 1.0, 'law': 1.0, 'in': 4.0, 'sister': 1.0, 'wood': 2.0, 'placing': 1.0, 'those': 1.0, 'negative': 2.0, 'wish': 1.0, 'theory': 1.0, 'had': 1.0, 'purchased': 1.0, 'also': 1.0, 'outsides': 1.0, 'wanted': 1.0, 'do': 3.0, 'only': 1.0, 'drilled': 2.0, 'and': 8.0, 'too': 1.0, 'of': 10.0, 'the': 18.0, 'would': 2.0, 'have': 1.0, 'before': 1.0, 'plywood': 1.0, 'edge': 1.0, 'is': 7.0, 'many': 2.0, 'on': 3.0, 'will': 1.0, 'doors': 1.0, 'as': 1.0, 'nothing': 1.0, 'out': 1.0, 'magnet': 1.0, 'to': 4.0, 'slug': 1.0, 'experience': 1.0, 'cabinets': 1.0, 'be': 2.0, 'engage': 1.0, 'i': 10.0, 'well': 1.0, 'after': 1.0, 'unless': 1.0, 'idea': 1.0, 'really': 2.0, 'behind': 1.0, 'or': 1.0, 'work': 4.0, 'hard': 1.0, 'open': 1.0, 'by': 2.0, 'a': 3.0, 'going': 1.0, 'key': 1.0, 'that': 2.0, 'unlocks': 1.0, 'used': 1.0, 'mechanism': 2.0, 'front': 3.0, 'drawer': 4.0, 'door': 1.0, 'it': 1.0, 'powerful': 1.0, 'enough': 1.0, 'pass': 1.0, 'extender': 1.0, 'through': 3.0, 'drill': 1.0, 'however': 1.0, 'bit': 1.0, 'can': 1.0, 'included': 2.0, 'almost': 1.0}
Word element => {'first': 1.0, 'one': 1.0, 'do': 1.0, 'have': 1.0, 'stop': 1.0, 'know': 1.0, 'helps': 1.0, 'although': 1.0, 'through': 1.0, 'way': 1.0, 'before': 1.0, 'just': 1.0, 'stopping': 1.0, 'required': 1.0, 'part': 1.0, 'and': 2.0, 'that': 2.0, 'tried': 1.0, 'i': 2.0, 've': 1.0, 'in': 1.0, 'it': 4.0, 'piece': 1.0, 'with': 2.0, 'out': 3.0, 'drilling': 1.0, 'them': 1.0, 'screws': 1.0, 'tool': 1.0, 'be': 1.0, 'cabinet': 3.0, 'is': 1.0, 'comes': 2.0, 'your': 1.0, 'on': 1.0, 'cabinets': 1.0, 'great': 1.0, 'install': 2.0, 'all': 1.0, 'to': 6.0, 'latches': 1.0, 'main': 1.0, 'toddlers': 1.0, 'keep': 1.0, 'this': 3.0, 'found': 1.0, 'worth': 1.0, 'or': 1.0, 'harder': 1.0, 'once': 1.0, 'of': 1.0, 'rather': 1.0, 'tricky': 2.0, 'guide': 1.0, 'can': 1.0, 'but': 1.0, 'hole': 1.0, 'go': 2.0, 'a': 3.0, 's': 1.0, 'you': 4.0, 'drawers': 1.0, 'they': 1.0, 'are': 1.0, 'the': 6.0, 'place': 1.0, 'help': 1.0, 'figure': 2.0, 'product': 1.0, 'where': 2.0}
Word element => {'testing': 1.0, 'screws': 1.0, 'made': 1.0, 'child': 1.0, 'are': 1.0, 'holes': 1.0, 'because': 1.0, 'just': 1.0, 'not': 1.0, 'deep': 1.0, 'pilot': 1.0, 'good': 1.0, 'short': 1.0, 'be': 1.0, 'drill': 1.0, 'perfect': 1.0, 'so': 2.0, 'the': 4.0, 'careful': 1.0, 'after': 2.0, 'far': 1.0, 'was': 1.0, 'has': 1.0, 'well': 1.0, 'weeks': 1.0, 'but': 1.0, 'out': 1.0, 'couple': 1.0, 'and': 3.0, 'of': 1.0, 'mistake': 1.0, 'strong': 1.0, 'your': 1.0, 'on': 1.0, 'first': 1.0, 'one': 3.0, 'went': 1.0, 'pull': 1.0, 'smoothly': 1.0, 'been': 1.0, 'that': 1.0, 'templet': 1.0, 'a': 2.0, 's': 1.0, 'to': 2.0, 'all': 1.0, 'works': 1.0, 'tested': 1.0, 'it': 3.0, 'she': 1.0, 'is': 1.0}
Word element => {'just': 1.0, 'in': 1.0, 'touch': 1.0, 'several': 1.0, 'newer': 2.0, 'great': 1.0, '1': 1.0, 'our': 1.0, 'any': 1.0, 'when': 1.0, 'places': 1.0, 'gives': 1.0, 'they': 2.0, 'we': 2.0, 'hole': 2.0, 'use': 1.0, 'front': 1.0, 'purchased': 1.0, 'than': 1.0, 'installed': 1.0, 'even': 2.0, 'put': 1.0, 'strong': 1.0, '3': 1.0, 'near': 1.0, 'on': 1.0, 'inside': 2.0, 'but': 2.0, '2': 1.0, 'cabinet': 2.0, 'not': 1.0, 'don': 1.0, 'no': 1.0, 'years': 1.0, 'simply': 1.0, 'so': 1.0, 'these': 2.0, 'ones': 2.0, 'broken': 1.0, 'door': 2.0, 'sits': 1.0, 'is': 4.0, 'original': 1.0, 'there': 1.0, 'magnet': 1.0, 'nothing': 1.0, 'see': 1.0, 'work': 2.0, 'over': 1.0, 'open': 3.0, 'better': 1.0, 'from': 1.0, 'it': 2.0, 'few': 1.0, 'this': 2.0, 'love': 1.0, 'models': 1.0, 'piece': 1.0, 'easier': 2.0, 'tries': 1.0, 'has': 1.0, 'mind': 1.0, 'house': 1.0, 'and': 5.0, 'make': 1.0, 'convenience': 1.0, 'longer': 1.0, 'the': 12.0, 'of': 1.0, 'also': 1.0, 'pulled': 1.0, 'to': 6.0, 'pretty': 1.0, 'product': 1.0, 'year': 1.0, 'ago': 1.0, 't': 1.0, 'require': 1.0, 'old': 2.0, 'minutes': 1.0, 'pulls': 1.0, 'install': 1.0, 'sometimes': 1.0, 'need': 2.0, 'or': 1.0, 'drawer': 1.0, 'screwdriver': 1.0, 'note': 1.0, 'version': 1.0, 'like': 1.0, 'needed': 1.0, 'drill': 1.0, 'a': 5.0, 'small': 1.0, 'are': 2.0, 'lock': 1.0, 'easily': 1.0, 'that': 1.0, 'be': 1.0, 'which': 1.0, 'made': 1.0}
Word element => {'projects': 1.0, 'of': 1.0, 'just': 1.0, 'filler': 1.0, 'wood': 1.0, 'why': 1.0, 'guess': 1.0, 'well': 1.0, 'oh': 1.0, 'done': 1.0, 'try': 1.0, 'stronger': 1.0, 'stain': 1.0, 'look': 1.0, 'll': 1.0, 'since': 1.0, 'at': 1.0, 'make': 1.0, 'furniture': 1.0, 'in': 1.0, 'list': 1.0, 'through': 1.0, 'system': 1.0, 'enough': 1.0, 'm': 1.0, 'protect': 1.0, 'they': 1.0, 'loss': 1.0, 'holes': 1.0, 'the': 2.0, 'with': 1.0, 'is': 3.0, 'again': 1.0, 'idea': 1.0, 'great': 1.0, 'nice': 1.0, 'magnet': 1.0, 'to': 2.0, 'center': 1.0, 'will': 1.0, 'slug': 1.0, 'ended': 1.0, 'entertainment': 1.0, 'damage': 1.0, 'up': 1.0, 'child': 1.0, 'don': 1.0, 'so': 1.0, 'my': 5.0, 'add': 1.0, 'already': 1.0, 'such': 1.0, 'ridiculously': 1.0, 'difficult': 1.0, 'not': 1.0, 'know': 1.0, 'i': 6.0, 'and': 3.0, 'installation': 1.0, 'that': 4.0, 'extension': 1.0, 'suffered': 1.0, 'hardwood': 1.0, 'maybe': 2.0, 'million': 1.0, 'a': 7.0, 't': 2.0, 's': 2.0, 'factor': 1.0, 'cabinets': 1.0, 'but': 3.0, 'work': 1.0, 'aren': 1.0, 'thick': 1.0, 'for': 2.0}
Word element => {'house': 1.0, 'children': 1.0, 'no': 1.0, 'times': 1.0, 'for': 1.0, 'position': 1.0, 'in': 2.0, 'them': 1.0, 'unlocked': 1.0, 'so': 1.0, 'really': 1.0, 'extra': 1.0, 'add': 1.0, 'depth': 1.0, 'also': 1.0, 'quickly': 1.0, 'unlocks': 1.0, 'there': 1.0, 'soon': 1.0, 'locks': 2.0, 'now': 1.0, 'deeper': 1.0, 'might': 1.0, 'a': 4.0, 'completely': 1.0, 'up': 1.0, 'not': 3.0, 'cabinet': 4.0, 'beautifully': 1.0, 'like': 2.0, 'when': 2.0, 'click': 1.0, 'we': 4.0, 'representative': 1.0, 'problem': 1.0, 'slugs': 1.0, 'someone': 1.0, 'shish': 1.0, 'keep': 1.0, 'did': 1.0, 'being': 1.0, 'properly': 1.0, 'easily': 2.0, 'that': 2.0, 'into': 2.0, 'as': 4.0, 'to': 8.0, 'our': 1.0, 'recommended': 1.0, 'and': 7.0, 'out': 1.0, 'magnet': 1.0, 'asking': 1.0, 'drilled': 2.0, 'customer': 1.0, 'stronger': 1.0, 'it': 5.0, 'speak': 1.0, 'installing': 1.0, 'have': 1.0, 'works': 1.0, 'end': 1.0, 'before': 2.0, 'ensure': 1.0, 'trouble': 1.0, 'sure': 2.0, 'closing': 1.0, 'others': 1.0, 'these': 3.0, 'some': 1.0, 'knew': 1.0, 'said': 1.0, 'swipe': 1.0, 'had': 2.0, 'door': 4.0, 'husband': 1.0, 'locked': 1.0, 'finally': 1.0, 'should': 1.0, 'measure': 1.0, 'work': 1.0, 'over': 2.0, 'open': 2.0, 'area': 1.0, 'make': 2.0, 'of': 2.0, 'the': 19.0, 'key': 2.0, 'helpful': 1.0, 'suggested': 1.0, 'kabob': 1.0, 'called': 1.0, 'if': 1.0, 'service': 1.0, 'between': 1.0, 'were': 1.0, 'is': 1.0, 'at': 1.0, 'who': 2.0, 'are': 1.0, 'lock': 3.0, 'first': 1.0, 'me': 1.0, 'my': 1.0, 'spoke': 1.0, 'find': 1.0, 'kept': 1.0, 'with': 2.0, 'product': 1.0, 'fit': 1.0, 'i': 7.0, 'well': 1.0, 'wonderful': 1.0, 'told': 1.0, 'was': 2.0, 'probably': 1.0, 'far': 1.0, 'enough': 2.0, 'you': 2.0, 'able': 1.0, 'pull': 1.0, 'just': 1.0, 'slide': 1.0, 'thin': 1.0, 'they': 1.0, 'metal': 1.0, 'worked': 1.0, 'release': 2.0, 'skewer': 1.0, 'easy': 1.0, 'bit': 1.0}
Word element => {'which': 1.0, 'deactivated': 1.0, 'timely': 1.0, 'really': 1.0, 'is': 2.0, 'are': 1.0, 'great': 1.0, 'more': 1.0, 'the': 1.0, 'they': 1.0, 'bit': 1.0, 'needed': 1.0, 'convenient': 1.0, 'a': 3.0, 'them': 1.0, 'lock': 1.0, 'we': 1.0, 'just': 1.0, 'up': 1.0, 'set': 1.0, 'that': 1.0, 'be': 1.0, 'bought': 1.0, 'had': 1.0, 'few': 1.0, 'but': 1.0, 'house': 1.0, 'an': 1.0}
Word element => {'or': 1.0, 'directions': 1.0, 'with': 1.0, 'issues': 1.0, 'no': 1.0, 'had': 1.0, 'bedroom': 1.0, 'frequent': 1.0, 'easy': 1.0, 'kitchen': 1.0, 'in': 1.0, 'good': 1.0, 'are': 3.0, 'drawer': 1.0, 'pry': 1.0, 'spring': 2.0, 'budge': 1.0, 'up': 2.0, 'and': 3.0, 'do': 1.0, 'was': 1.0, 'all': 1.0, 'our': 1.0, 'to': 4.0, 'tried': 1.0, 'i': 4.0, 'the': 8.0, 'my': 1.0, 'open': 3.0, 'install': 2.0, 'big': 1.0, 'his': 1.0, 'reaction': 1.0, 'first': 1.0, 'he': 2.0, 've': 1.0, 'new': 1.0, 'they': 1.0, 'reviews': 1.0, 'drawers': 3.0, 'furniture': 1.0, 'locks': 4.0, 'can': 2.0, 'but': 2.0, 'at': 1.0, 'climb': 3.0, 'tot': 2.0, 'option': 1.0, 'difficult': 1.0, 'son': 1.0, 'still': 1.0, 'perfect': 1.0, 'found': 1.0, 'we': 1.0, 't': 1.0, 's': 2.0, 'a': 2.0, 'read': 1.0, 'access': 1.0, 'little': 1.0, 'boy': 1.0, 'bit': 1.0, 'that': 1.0, 'not': 1.0, 'you': 1.0, 'when': 1.0, 'unless': 1.0, 'key': 1.0, 'lesser': 1.0, 'have': 1.0, 'for': 2.0, 'expensive': 1.0, 'where': 2.0, 'love': 1.0}
Word element => {'secure': 1.0, 'and': 2.0, 'drawers': 1.0, 'her': 1.0, '18': 1.0, 'door': 1.0, 'is': 2.0, 'just': 2.0, 'time': 2.0, 'old': 1.0, 'makes': 1.0, 'inside': 1.0, 'down': 1.0, 'works': 1.0, 'press': 1.0, 'lok': 2.0, 'smash': 1.0, 'tried': 1.0, 'the': 6.0, 'you': 1.0, 'we': 2.0, 's': 1.0, 'tot': 2.0, '1st': 1.0, 'with': 1.0, 'month': 1.0, 'it': 4.0, 'safety': 1.0, 'alternative': 1.0, 'well': 1.0, 'our': 1.0, 'to': 2.0, 'as': 2.0, 'kind': 2.0, 'cabinet': 2.0, 'some': 1.0, 'of': 2.0, 'each': 1.0, 'fingers': 2.0, 'system': 1.0, 'vastly': 1.0, 'strong': 1.0, 'put': 1.0, 'your': 1.0, 'on': 1.0, 'various': 1.0, 'in': 2.0, 'cabinets': 2.0, 'other': 1.0, 'kitchen': 1.0, 'superior': 1.0, 'lock': 1.0, 'every': 1.0, 'impossible': 1.0, 'instead': 1.0, 'most': 1.0, 'for': 1.0}
Word element => {'getting': 1.0, 'one': 1.0, 'about': 1.0, 'worry': 1.0, 'switch': 1.0, 'unlock': 1.0, 'an': 1.0, 'have': 2.0, 'disengage': 1.0, 'the': 5.0, 'ones': 1.0, 'when': 1.0, 'you': 4.0, 'there': 1.0, 'to': 5.0, 'much': 1.0, 'included': 1.0, 'is': 1.0, 'require': 1.0, 'are': 2.0, 'holes': 2.0, 'they': 3.0, 'so': 1.0, 'time': 1.0, 'your': 2.0, 'little': 2.0, 'aren': 1.0, 'for': 3.0, 'then': 1.0, 'great': 1.0, 'install': 1.0, 'keeping': 1.0, 'out': 1.0, 'up': 1.0, 'don': 3.0, 'perfectly': 1.0, 'and': 2.0, 't': 4.0, 's': 1.0, 'a': 1.0, 'lined': 1.0, 'template': 1.0, 'first': 1.0, 'drill': 1.0, 'in': 1.0, 'correct': 1.0, 'space': 1.0, 'into': 1.0, 'that': 1.0, 'right': 1.0, 'everything': 1.0, 'want': 1.0, 'if': 1.0, 'these': 2.0, 'add': 1.0, 'cabinet': 2.0, 'get': 1.0, 'easy': 1.0}
Word element => {'of': 1.0, 'because': 1.0, 'in': 1.0, 'safe': 1.0, 'not': 1.0, 'everything': 1.0, 'our': 1.0, 'these': 2.0, 'love': 1.0, 'can': 1.0, 'my': 1.0, 'home': 1.0, 'open': 1.0, 'totally': 1.0, 'is': 1.0, 'son': 1.0, 'now': 2.0, 'anything': 1.0}
Word element => {'of': 1.0, 'and': 1.0, 'very': 1.0, 'best': 1.0, 'install': 1.0, 'to': 1.0, 'product': 1.0, 'system': 1.0, 'easy': 2.0, 'all': 1.0, 'but': 1.0, 'the': 1.0, 'is': 3.0, 'child': 1.0, 'kids': 1.0, 'magnetic': 1.0, 'safety': 1.0, 'locks': 1.0, 'this': 1.0, 'it': 1.0, 's': 1.0, 'for': 2.0, 'parents': 1.0, 'impossible': 1.0}
Word element => {'pilferage': 1.0, 'solve': 1.0, 'tha': 1.0, 'extended': 1.0, 'arm': 1.0, 'snack': 1.0, 'with': 1.0, 'a': 4.0, 'we': 3.0, 'magnetic': 1.0, 'unfound': 1.0, 'android': 1.0, 'them': 1.0, 'also': 1.0, 'hides': 1.0, 'old': 1.0, 'year': 1.0, 'cieling': 1.0, 'tried': 1.0, 'until': 2.0, 'some': 1.0, 'these': 1.0, 'sensors': 1.0, 'you': 4.0, 'chemical': 1.0, 'safey': 1.0, 'adults': 1.0, 'our': 2.0, 'to': 2.0, 'snake': 1.0, 'even': 1.0, 'cupboad': 1.0, 'peace': 1.0, 'key': 1.0, '2': 2.0, 'so': 1.0, 'can': 2.0, 'reach': 1.0, 'locks': 3.0, 'the': 6.0, 'of': 2.0, 'bathroom': 1.0, 'have': 2.0, '1st': 1.0, 'those': 1.0, 'unscrew': 1.0, 'on': 1.0, 'tot': 1.0, '4': 1.0, 'i': 4.0, 'magnets': 2.0, 'do': 1.0, 'using': 2.0, 'treat': 1.0, 'love': 1.0, 'and': 4.0, 'they': 2.0, 'hinge': 1.0, 'still': 1.0, 'if': 3.0, 'fully': 1.0, 'where': 1.0, 're': 2.0, 'lucky': 1.0, 'external': 1.0, 'ordered': 1.0, 'hook': 1.0, 'or': 1.0, 'cabinets': 1.0, 'arrm': 1.0, 'should': 2.0, 'drawer': 1.0, 'anyway': 1.0, 'in': 1.0, 'm': 2.0, 'mind': 1.0, 'thrgh': 1.0, 'both': 1.0, 'bpass': 1.0, 'one': 1.0, 'give': 1.0, 'hang': 1.0, 'guys': 1.0, 'used': 1.0, 'climbable': 1.0, 'that': 2.0, 'from': 1.0, 'hard': 1.0, 'drive': 1.0, 'kids': 1.0, 'magnnets': 1.0, 'around': 1.0, 'get': 1.0, 'just': 1.0, 'are': 1.0, 'your': 2.0, 'acrobats': 1.0, 'mounting': 1.0, 'away': 1.0, 'objects': 1.0, 'at': 1.0, 'look': 1.0, 'ring': 1.0, 'kees': 1.0, 'it': 1.0}
Word element => {'a': 1.0, 'original': 1.0, 'keep': 1.0, 'like': 1.0, 'authority': 1.0, 'magnetism': 1.0, 'came': 1.0, 'unlock': 1.0, 'that': 1.0, 'the': 5.0, 'more': 2.0, 'one': 1.0, 'than': 1.0, 'has': 1.0, 'of': 1.0, 'hold': 1.0, 'it': 1.0, 'with': 1.0, 'this': 1.0, 'will': 1.0, 'kit': 2.0, 'actually': 1.0, 'on': 1.0, 'as': 1.0, 'outside': 1.0, 'cabinet': 1.0, 'to': 1.0, 'spare': 1.0, 'door': 1.0, 'in': 1.0, 'key': 3.0, 'seems': 1.0, 'and': 1.0}
Word element => {'room': 1.0, 'multiple': 1.0, 'locking': 1.0, 'are': 1.0, 'need': 1.0, 'll': 1.0, 'however': 1.0, 'unless': 1.0, 'you': 2.0, 'contain': 1.0, 'moving': 1.0, 'via': 1.0, 'kept': 1.0, 'along': 1.0, 'drawer': 1.0, 'kits': 1.0, 'release': 1.0, 'magnetic': 1.0, 'interfaces': 1.0, 'mechanical': 1.0, 'same': 1.0, 'if': 1.0, 'in': 1.0, 'itself': 1.0, 'lock': 1.0, 'cabinet': 1.0, 'not': 2.0, 'closed': 1.0, 'and': 1.0, 'can': 1.0, 'alone': 2.0, 'several': 1.0, 'about': 1.0, 'over': 2.0, 'sour': 1.0, 'cabinets': 1.0, 'other': 1.0, 'i': 3.0, 'of': 1.0, 'grapes': 1.0, 'may': 1.0, 'reviewer': 1.0, 'price': 1.0, 'd': 1.0, 'so': 1.0, 'magnet': 5.0, 'to': 3.0, 'realize': 1.0, 'reasonable': 1.0, 'were': 1.0, 'misunderstanding': 1.0, 'the': 11.0, 'have': 1.0, 'figure': 1.0, 'is': 2.0, 'reviews': 1.0, 'suggest': 2.0, 'either': 1.0, 'locks': 2.0, 'out': 1.0, 'why': 1.0, 'compared': 1.0, 'with': 3.0, 'it': 1.0, 'magnets': 1.0, 'works': 1.0, 'much': 1.0, 'only': 1.0, 'interlock': 1.0, 'included': 1.0, 'or': 1.0, 'plastic': 1.0, 'how': 1.0, 'kit': 1.0, 'product': 1.0, 'who': 1.0, 'that': 4.0, 'downrated': 1.0, 'because': 1.0, 'might': 1.0, 't': 1.0, 'a': 5.0, 's': 1.0}
Word element => {'destruction': 1.0, 'path': 1.0, 'her': 1.0, 'hurricane': 1.0, 'lovely': 1.0, 'is': 1.0, 'youngest': 1.0, 'much': 1.0, 'life': 1.0, 'called': 1.0, 'so': 1.0, 'after': 1.0, 'easier': 1.0, 'our': 2.0, 'cookie': 1.0, 'replacement': 1.0, 'based': 1.0, 'of': 2.0, '34': 2.0, 'a': 3.0, 'one': 1.0, 'to': 1.0, 'had': 1.0, 'get': 1.0, 'we': 1.0, 'makes': 1.0, 'grabbed': 1.0, 'sheet': 1.0, 'on': 2.0, 'having': 1.0, 'the': 2.0, '2': 1.0, 'keys': 1.0, 'way': 1.0, 'into': 1.0, 'oven': 1.0}
Word element => {'from': 1.0, 'this': 1.0, 't': 1.0, 'don': 1.0, 'terrible': 1.0, 'but': 1.0, 'seller': 1.0, 'service': 1.0, 'is': 2.0, 'the': 4.0, 'tot': 2.0, 'similar': 1.0, 'lok': 2.0, 'not': 2.0, 'key': 2.0, 'buy': 1.0, 'customer': 1.0, 'shown': 1.0, 'in': 1.0, 'picture': 1.0, 'it': 1.0}
Word element => {'cupboards': 1.0, 'of': 1.0, 'out': 1.0, 'is': 1.0, 'son': 1.0, 'the': 1.0, 'my': 1.0, 'but': 1.0, 'magnet': 1.0, 'bought': 1.0, 'this': 1.0, 'as': 1.0, 'kept': 1.0, 'a': 3.0, 'bit': 1.0, 'spare': 1.0, 'least': 1.0, 'works': 1.0, 'at': 1.0, 'key': 1.0, 'for': 1.0, 'well': 1.0, 'expensive': 1.0}
Word element => {'product': 1.0, 'not': 1.0, 'anyone': 1.0, 'perfect': 1.0, 'worked': 1.0, 'standby': 1.0, 'the': 1.0, 'used': 1.0, 'finally': 1.0, 'times': 1.0, 'several': 1.0, 'awful': 1.0, 'husband': 1.0, 'to': 2.0, 'degrees': 1.0, 'tired': 1.0, 'old': 1.0, 'i': 3.0, 'or': 1.0, 'a': 1.0, 'is': 1.0, 'on': 1.0, 'below': 1.0, 'myself': 1.0, 'always': 1.0, 'reading': 1.0, 'do': 1.0, 'digital': 1.0, 'get': 1.0, 'and': 3.0, 'my': 1.0, 'this': 2.0, 'it': 2.0, 'recommend': 1.0, 'read': 1.0, 'thermometer': 2.0, '93': 1.0}
Word element => {'item': 1.0, 'is': 1.0, 'on': 1.0, 'easier': 1.0, 'were': 1.0, 'great': 1.0, 'the': 1.0, 'better': 1.0, 'little': 1.0, 'thermoscan': 1.0, 'but': 1.0, 'put': 1.0, 'trouble': 1.0, 'sure': 1.0, 'this': 1.0, 'only': 1.0, 'with': 1.0, 'it': 2.0, 'be': 1.0, 'last': 1.0, 'store': 2.0, 'why': 1.0, 'because': 1.0, 'not': 1.0, 'at': 1.0, 'having': 1.0, 'seems': 1.0, 'm': 1.0, 'had': 1.0, 'to': 2.0, 'everyone': 1.0, 'i': 4.0, 'finding': 1.0, 'still': 1.0, 'found': 1.0, 'liked': 1.0, 'mine': 1.0, 'child': 1.0, 'covers': 2.0, 'my': 2.0, 'a': 4.0, 'local': 1.0, 'and': 2.0, 'tiny': 1.0, 's': 1.0}
Word element => {'just': 1.0, 'plenty': 1.0, 'get': 1.0, 'eye': 1.0, 'yet': 1.0, 'or': 1.0, 'not': 1.0, 'poked': 1.0, 'getting': 1.0, 'up': 1.0, 'head': 1.0, 'in': 2.0, 'will': 2.0, 'also': 1.0, 'months': 1.0, 'think': 1.0, 'on': 3.0, '3': 1.0, 'daughter': 1.0, 'am': 1.0, 'when': 1.0, 'my': 1.0, 'infant': 1.0, 'use': 4.0, 'thermometer': 1.0, 'hesitant': 1.0, 'accurate': 1.0, 'this': 1.0, 'appear': 1.0, 'however': 1.0, 'an': 1.0, 'to': 4.0, 'now': 1.0, 'her': 3.0, 'before': 1.0, 'end': 1.0, 'much': 1.0, 'tested': 1.0, 'old': 1.0, 'i': 3.0, 'and': 3.0, 'done': 1.0, 'difficult': 2.0, 'still': 1.0, 'usually': 1.0, 'does': 1.0, 'ear': 2.0, 'find': 1.0, 'a': 1.0, 'very': 1.0, 'little': 1.0, 'so': 1.0, 'scary': 1.0, 'it': 5.0, 'she': 2.0, 'be': 1.0, 'wiggles': 1.0, 'fear': 1.0, 'is': 4.0, 'around': 1.0, 'jerk': 1.0, 'that': 2.0, 'myself': 1.0, 'the': 2.0, 'scanner': 1.0, 'out': 1.0, 'of': 2.0}
Word element => {'waste': 1.0, 'don': 1.0, 't': 1.0, 'more': 1.0, 'the': 1.0, 'at': 1.0, 'rectal': 1.0, 'a': 3.0, 'time': 1.0, 'has': 1.0, 'that': 1.0, 'accurate': 1.0, 'just': 1.0, 'know': 1.0, 'fact': 1.0, 'she': 2.0, 'its': 1.0, 'was': 1.0, 'buy': 1.0, 'i': 3.0, 'when': 2.0, 'daughter': 1.0, 'for': 1.0, 'gives': 2.0, 'thermometer': 2.0, 'bought': 2.0, 'pharmacy': 1.0, 'my': 1.0, '94': 1.0, 'strange': 1.0, 'born': 1.0, 'in': 1.0, 'readings': 2.0, '5': 1.0, 'first': 1.0, 'this': 2.0, 'it': 3.0, 'regular': 1.0, 'fever': 1.0, 'is': 1.0, 'awful': 1.0, 'like': 1.0, 'digital': 1.0, '1': 1.0, 'and': 3.0, 'of': 1.0, '95': 1.0}
Word element => {'good': 1.0, 'know': 1.0, 'are': 1.0, 'let': 1.0, 'well': 1.0, 'mart': 1.0, 'thermometer': 1.0, 'just': 1.0, 'worried': 1.0, 'luck': 1.0, 'then': 1.0, 'replacement': 2.0, 'packages': 1.0, 'having': 1.0, 'find': 1.0, 'this': 3.0, 'found': 2.0, 'all': 1.0, 'as': 1.0, 'to': 4.0, 'was': 1.0, 'look': 1.0, 'about': 1.0, 'i': 7.0, 'when': 1.0, 'it': 1.0, 'covers': 2.0, 'them': 1.0, 'a': 2.0, 'after': 1.0, 'so': 1.0, 'wanted': 1.0, 'wal': 1.0, 'us': 1.0, 'able': 1.0, 'those': 1.0, 'not': 1.0, 'already': 1.0, 'these': 1.0, 'received': 1.0, 'reviews': 1.0, 'went': 1.0, 'problem': 1.0, 'r': 1.0, 'very': 1.0, 'little': 1.0, 'read': 1.0, 'exchanging': 1.0, 'being': 1.0, '10': 1.0, 'and': 1.0, 'had': 1.0, '12': 1.0, 'of': 1.0, '20': 1.0, 'that': 1.0, 'babies': 1.0, 'into': 1.0, 'ea': 1.0, 'for': 1.0, 'model': 1.0, 'at': 1.0}
Word element => {'1': 1.0, 'so': 1.0, 'no': 1.0, 'but': 1.0, 'at': 1.0, 'readings': 1.0, 'digital': 2.0, 'and': 3.0, 'not': 1.0, 'give': 2.0, 'me': 1.0, 'out': 1.0, 'daughter': 1.0, 'when': 1.0, 'does': 1.0, 'used': 2.0, 'one': 2.0, 'had': 1.0, 'suggest': 1.0, 'i': 7.0, 'stars': 1.0, 'product': 1.0, 'for': 1.0, 'cheap': 2.0, 'got': 2.0, 'thermometer': 1.0, 'there': 1.0, 'instead': 1.0, '0': 2.0, 'this': 3.0, 'it': 3.0, 'going': 1.0, 'a': 4.0, 'baby': 1.0, 'ended': 1.0, 'gift': 1.0, 'up': 1.0, 'rate': 1.0, 'reading': 1.0, 'shower': 1.0, 'of': 1.0, 'buying': 2.0, 'to': 2.0, 'my': 1.0, 'read': 1.0, 'on': 1.0, '3': 1.0, 'that': 1.0, 'is': 2.0, '94': 1.0, 'pretty': 1.0, 'bad': 1.0, 'the': 2.0, 'ones': 1.0, 'rating': 1.0, 'other': 1.0, '98': 1.0, 'accurate': 1.0, 'would': 1.0}
Word element => {'waste': 1.0, 'not': 1.0, 'am': 1.0, 'target': 1.0, 'back': 1.0, 'have': 1.0, 'results': 1.0, 'had': 1.0, 'he': 1.0, 'wasn': 1.0, 'just': 1.0, 'maybe': 1.0, 'see': 1.0, 'do': 1.0, 'try': 1.0, 'thermometer': 1.0, 'directions': 1.0, 'husband': 2.0, 'daughter': 1.0, 'wait': 1.0, 'different': 1.0, 'her': 2.0, '5': 2.0, 'before': 1.0, 'sit': 1.0, 'sick': 1.0, 'arm': 1.0, '96': 1.0, 'etc': 1.0, 'i': 6.0, 'trying': 1.0, 'be': 1.0, 'my': 4.0, 'to': 9.0, 'doesn': 1.0, 'was': 3.0, 'correctly': 1.0, '98': 1.0, 'take': 1.0, 'infant': 1.0, 'a': 1.0, 's': 1.0, 't': 2.0, 'myself': 1.0, 'the': 4.0, 'money': 1.0, '2': 1.0, 'doing': 1.0, 'this': 2.0, 'taken': 2.0, 'she': 2.0, 'it': 7.0, 'first': 1.0, 'temperature': 2.0, 'and': 8.0, 'since': 1.0, 'bought': 1.0, 'decided': 1.0, 'under': 1.0, 'test': 1.0, 'your': 1.0, 'on': 2.0, 'make': 1.0, 'sure': 1.0, 'accurate': 1.0, 'never': 1.0, 'gave': 2.0, 'if': 1.0, 'same': 2.0, 'like': 1.0, 'reading': 1.0, 'product': 1.0, 'for': 1.0, '95': 1.0, 'twice': 1.0, 'brand': 1.0, 'tested': 1.0, 'then': 3.0}
Word element => {'way': 1.0, 'thermometer': 1.0, 'rectal': 1.0, 'would': 1.0, 'new': 1.0, 'preparation': 1.0, 'buy': 1.0, 'quite': 1.0, 'and': 1.0, 'follow': 1.0, 'figure': 1.0, 'very': 1.0, 'also': 1.0, 'directions': 1.0, 'print': 1.0, 'buried': 1.0, 'of': 2.0, 'packaging': 1.0, 'pediatrician': 1.0, 'trying': 1.0, 'be': 1.0, 'should': 1.0, 'fine': 1.0, 'acknowledged': 1.0, 'infants': 1.0, 'inaccurate': 1.0, 'thing': 1.0, 'did': 1.0, 'i': 1.0, 'old': 2.0, 'my': 1.0, 'not': 3.0, 'sick': 1.0, 'week': 1.0, 'this': 3.0, 'misleading': 1.0, 'quot': 1.0, 'probe': 1.0, 'but': 1.0, 'advertised': 1.0, 'covers': 1.0, 'wasted': 1.0, 'it': 8.0, 'find': 1.0, 'sister': 1.0, 'with': 1.0, 'until': 1.0, 'don': 1.0, 'attempting': 1.0, 'fashioned': 1.0, 'is': 6.0, 'fever': 1.0, 'that': 5.0, 'in': 3.0, 'for': 2.0, 'product': 1.0, 'out': 2.0, 'ages': 1.0, 'baby': 3.0, 'few': 1.0, 'says': 1.0, 'as': 2.0, 'all': 1.0, 'to': 4.0, 'instructions': 1.0, 'use': 1.0, 'every': 1.0, 'your': 1.0, 'fashion': 1.0, 'on': 2.0, 'what': 1.0, '12': 1.0, 'go': 1.0, 't': 1.0, 'we': 1.0, 'a': 4.0, 'doctor': 1.0, 's': 4.0, 'dealing': 1.0, 'you': 1.0, 'difficult': 1.0, 'visiting': 1.0, 'scary': 1.0, 'enough': 1.0, 'the': 7.0, 'without': 1.0, 'hearing': 1.0, 'from': 1.0, 'recommend': 1.0, 'unfortunately': 1.0, 'talk': 1.0}
Word element => {'save': 1.0, 'important': 1.0, 'manuals': 1.0, 'or': 1.0, 'show': 1.0, 'will': 1.0, 'buying': 1.0, 'with': 1.0, 'come': 1.0, 'shower': 1.0, 'only': 1.0, 'unit': 3.0, 'finding': 1.0, 'handy': 1.0, 'does': 1.0, 'i': 2.0, 'problem': 1.0, 'given': 1.0, 'for': 3.0, 'so': 1.0, 'boy': 1.0, 'was': 1.0, 'had': 1.0, 'have': 1.0, 'to': 4.0, 'all': 3.0, 'turn': 1.0, 'in': 2.0, 'the': 5.0, 'a': 1.0, 'thermometer': 1.0, 'gift': 1.0, 'and': 3.0, 'then': 1.0, 'far': 1.0, 'who': 1.0, 'is': 5.0, 'quot': 8.0, 'change': 2.0, 'really': 1.0, 'replacement': 1.0, 'wether': 1.0, 'from': 1.0, 'f': 2.0, 'sure': 1.0, 'easy': 1.0, 'it': 7.0, 'lens': 1.0, 'covers': 1.0, 'those': 2.0, 'this': 1.0, 'dont': 1.0, 'know': 1.0, 'extremely': 1.0, 'how': 1.0, 'm': 2.0, 'c': 2.0, 'on': 1.0, 'make': 1.0, 'off': 1.0, 'press': 2.0}
Word element => {'outstanding': 1.0, 'on': 1.0, 'with': 1.0, 'one': 1.0, 'thermometer': 1.0, 'this': 1.0, 'care': 1.0, 'but': 1.0, 'of': 1.0, 'bunch': 1.0, 'have': 2.0, 'will': 1.0, 'then': 1.0, 'thought': 1.0, 'purchased': 1.0, 'checking': 1.0, 'her': 1.0, 'don': 1.0, 'up': 1.0, 'it': 1.0, 'covers': 3.0, 'review': 1.0, 'walgreen': 1.0, 'them': 1.0, 'cvs': 3.0, 'i': 8.0, 'after': 1.0, 'so': 1.0, 'would': 1.0, 'reviewer': 1.0, 'product': 1.0, 'actually': 1.0, 'love': 1.0, 'com': 1.0, 'for': 1.0, 'from': 1.0, 'sure': 1.0, 'suggested': 1.0, 'as': 1.0, 'to': 1.0, 'brand': 1.0, '5': 1.0, 'the': 5.0, '99': 1.0, 'reading': 1.0, 'ditto': 1.0, 'like': 1.0, 'box': 1.0, 'soon': 1.0, 'and': 2.0, 'thank': 1.0, 'they': 1.0, 'price': 1.0, 'who': 1.0, 'at': 1.0, 'carry': 1.0, '40': 1.0, 'enough': 1.0, 'same': 1.0, 'light': 1.0, 'just': 2.0, 'picked': 1.0, 't': 1.0, 's': 1.0, 'a': 2.0, 'about': 1.0, 'today': 1.0}
Word element => {'one': 1.0, 'bad': 1.0, 'off': 1.0, 'brand': 1.0, 'with': 1.0, 'luck': 1.0, 'favor': 1.0, 'yourself': 1.0, 'do': 1.0, 'take': 1.0, 'be': 1.0, 'not': 2.0, 'and': 2.0, 'degrees': 1.0, 'sometimes': 2.0, 'either': 1.0, 'what': 1.0, 'have': 2.0, 'row': 1.0, 'regular': 1.0, 'in': 1.0, 'may': 1.0, 'save': 1.0, 'wanted': 1.0, 'store': 1.0, 'was': 2.0, 'as': 2.0, 'all': 1.0, 'any': 1.0, 'ourselves': 1.0, 'to': 4.0, 'ones': 1.0, 'varies': 1.0, 'of': 1.0, 'on': 2.0, 'the': 5.0, 'i': 2.0, 'such': 1.0, 'products': 1.0, 'alot': 1.0, 'couldn': 1.0, 'see': 2.0, 'don': 1.0, 'about': 1.0, 'ear': 1.0, 'usually': 1.0, 'digital': 1.0, 'back': 1.0, 'check': 1.0, 'bother': 1.0, 'waste': 1.0, 'complaining': 1.0, 'diffferent': 1.0, 'few': 1.0, 'by': 2.0, 'readings': 1.0, 'just': 2.0, 'reads': 1.0, 'but': 2.0, 'else': 1.0, 'trouble': 1.0, 'low': 1.0, 'thermometer': 2.0, 'aware': 1.0, 'every': 2.0, 'this': 3.0, 'it': 6.0, 'temperature': 2.0, 'are': 2.0, 'tried': 1.0, 'sooo': 1.0, 'didn': 1.0, 'even': 1.0, 'got': 1.0, 'inaccurate': 1.0, 'that': 1.0, 'so': 1.0, 'time': 2.0, 't': 3.0, 'a': 7.0, 'we': 5.0, 'temp': 1.0, 'is': 1.0, 'different': 2.0, 'if': 1.0, 'worked': 1.0, '8': 1.0, 'you': 1.0, 'someone': 1.0, 'times': 1.0}
Word element => {'better': 1.0, 'is': 1.0, 'sometimes': 1.0, 'product': 1.0, 'recommend': 1.0, 'would': 1.0, 'using': 1.0, 've': 1.0, 'trouble': 1.0, 'back': 1.0, 'go': 1.0, 'not': 1.0, 'just': 1.0, 'our': 1.0, 'that': 1.0, 'frustrated': 1.0, 'so': 1.0, 'therm': 1.0, 'on': 2.0, 'time': 1.0, 'husband': 1.0, 'had': 1.0, 'to': 2.0, 'have': 1.0, 'basic': 2.0, 'again': 1.0, 'my': 2.0, 'each': 1.0, 'very': 1.0, 'use': 1.0, 'thermometer': 1.0, 'old': 1.0, 'tried': 2.0, 'i': 5.0, '7': 1.0, 'month': 1.0, 'this': 3.0, 'it': 1.0, 'reads': 1.0, 'a': 1.0, 'even': 1.0, 'low': 1.0, 'digital': 1.0, 'temperature': 1.0, 'and': 2.0, 'get': 1.0}
Word element => {'reliable': 1.0, 'i': 1.0, 'in': 1.0, 's': 1.0, 'child': 1.0, 'want': 1.0, 'fine': 1.0, 'second': 1.0, 'a': 2.0, 'looking': 1.0, 'are': 1.0, 'reading': 1.0, 'as': 1.0, 'same': 1.0, 'one': 1.0, 'for': 3.0, 'often': 1.0, 'have': 1.0, 'go': 1.0, 'different': 2.0, 'we': 3.0, 'something': 1.0, 'our': 1.0, 'that': 1.0, 'found': 1.0, 'when': 1.0, 'shows': 1.0, 'thermometer': 1.0, 'isn': 1.0, 'pinch': 1.0, 'each': 1.0, 'more': 1.0, 'temperatures': 1.0, 't': 1.0, 'the': 3.0, 'but': 1.0, 'back': 1.0, 'to': 1.0, 'it': 2.0, 'this': 1.0, 'first': 2.0, 'ear': 2.0, 'even': 1.0}
Word element => {'much': 1.0, 'moves': 1.0, 'she': 1.0, 'far': 1.0, 'itin': 1.0, 'dont': 1.0, 'ears': 1.0, 'her': 1.0, 'use': 1.0, 'like1': 1.0, 'for': 2.0, 'month': 1.0, 'a': 2.0, 'want': 1.0, 'is': 1.0, 'great': 1.0, '2': 2.0, 'product': 1.0, 'have': 1.0, 'think': 1.0, 'newborns': 1.0, 'put': 1.0, 'but': 1.0, 'not': 1.0, 'and': 2.0, '1': 1.0, 'i': 2.0, 'oldand': 1.0, 'to': 5.0, 'its': 1.0, 'with': 1.0, 'older': 2.0, 'children': 1.0, 'this': 1.0, 'hard': 1.0}
Word element => {'looked': 1.0, 'everywhere': 1.0, 'almost': 1.0, 've': 2.0, 'example': 1.0, 'for': 1.0, 'brand': 1.0, 'buying': 1.0, 'recommend': 1.0, 'carry': 1.0, 'another': 1.0, 'don': 1.0, 'find': 1.0, 't': 1.0, 'the': 4.0, 'will': 2.0, 'thermoscan': 1.0, 'even': 1.0, 'works': 1.0, 'd': 1.0, 'function': 1.0, 'covers': 3.0, 'a': 1.0, 'seen': 1.0, 'without': 1.0, 'toysrus': 1.0, 'not': 2.0, 'you': 1.0, 'cover': 1.0, 'fine': 1.0, 'unfortunately': 1.0, 'my': 1.0, 'anywhere': 1.0, 'and': 2.0, 'i': 4.0, 'thermometer': 3.0, 'purchased': 1.0, 'replacement': 1.0, 'from': 1.0, 'they': 1.0}
Word element => {'item': 1.0, 'buy': 1.0, 'i': 1.0, 'get': 1.0, 'after': 1.0, 'keep': 1.0, 'this': 2.0, 'only': 1.0, 'use': 1.0, 'thermometer': 1.0, 'know': 1.0, 'using': 1.0, 'cannot': 1.0, 've': 1.0, 'in': 1.0, 'company': 1.0, 'to': 4.0, 'suggest': 1.0, 'had': 1.0, 'been': 1.0, 'can': 1.0, 'past': 1.0, 'you': 2.0, 'unless': 1.0, 'when': 1.0, 'find': 1.0, 'the': 3.0, 'finally': 1.0, 'why': 1.0, 'year': 2.0, 'replacement': 2.0, 'from': 1.0, 'unable': 1.0, 'not': 3.0, 'did': 1.0, 'have': 1.0, 'except': 1.0, 'online': 1.0, 'due': 1.0, 'anywhere': 1.0, 'with': 2.0, 'stores': 1.0, 'and': 1.0, 'order': 2.0, 'problem': 1.0, 'cancelled': 1.0, 'no': 1.0, 'where': 1.0, 'for': 1.0, 'product': 1.0, 'ours': 1.0, 'came': 1.0, 'we': 4.0, 'a': 2.0, 'hardly': 1.0, '10': 1.0, 'it': 1.0, 'covers': 3.0, 'lens': 1.0, 'enough': 1.0}
Word element => {'reality': 1.0, 'closer': 1.0, 'now': 1.0, 'use': 1.0, 'guess': 1.0, 'price': 1.0, 'best': 1.0, 'your': 2.0, 'digital': 1.0, 'bother': 1.0, 'don': 1.0, 'please': 1.0, 'complete': 1.0, 'more': 1.0, 'is': 2.0, 'and': 2.0, 'arm': 1.0, '7': 1.0, 'properly': 1.0, 'money': 1.0, 'change': 1.0, 'work': 1.0, 'thermometer': 1.0, 'registers': 1.0, 'half': 1.0, 'temperature': 2.0, 'usage': 1.0, 'waste': 1.0, 'second': 1.0, 'registered': 1.0, 'different': 1.0, 'got': 1.0, 'this': 2.0, 'much': 1.0, 'only': 1.0, 'for': 4.0, 'the': 1.0, 'drastically': 1.0, 'temperatures': 1.0, 'pit': 1.0, 'that': 1.0, 'baby': 4.0, 'since': 1.0, 't': 1.0, 's': 2.0, 'we': 2.0, 'accurately': 1.0, 'a': 3.0, 'gift': 1.0, 'within': 1.0, 'less': 1.0, 'seconds': 1.0, 'shower': 1.0, 'of': 2.0, 'reading': 1.0, 'twice': 1.0, 'plus': 1.0, '6': 1.0, 'wait': 1.0, 'she': 1.0, 'it': 2.0, 'covers': 1.0, 'are': 1.0, 'also': 1.0, 'impossible': 1.0, 'our': 1.0, 'as': 1.0, 'to': 4.0, 'was': 2.0, 'i': 2.0, 'no': 1.0, 'told': 1.0, 'basic': 1.0, 'accurate': 1.0, 'each': 1.0, 'would': 1.0, 'have': 1.0, 'until': 1.0, 'bought': 1.0, 'months': 2.0, 'an': 1.0, 'than': 1.0, 'find': 1.0, 'ear': 1.0}
Word element => {'completed': 1.0, 'approval': 1.0, 'before': 1.0, 'closed': 1.0, 'request': 1.0, 'write': 1.0, 'decided': 1.0, 's': 1.0, 'with': 1.0, 'irritated': 1.0, 'however': 1.0, 'response': 1.0, 'clip': 1.0, 'nail': 1.0, 'for': 1.0, 'addition': 1.0, 'from': 1.0, 'emails': 1.0, '1': 1.0, 'two': 1.0, 'wound': 1.0, 'week': 1.0, 'salt': 1.0, 'describe': 1.0, 'hurt': 1.0, 'you': 1.0, 'am': 2.0, 'separate': 1.0, 'have': 4.0, 'could': 1.0, 'small': 1.0, 'a': 12.0, 'fell': 1.0, 'seller': 4.0, 'add': 1.0, 'storing': 1.0, 'it': 1.0, 'already': 1.0, 'product': 3.0, 'seriously': 2.0, '7': 1.0, 'item': 5.0, 'in': 5.0, 'metal': 3.0, 'old': 1.0, 'attention': 1.0, 'the': 22.0, 'of': 8.0, 'sliver': 4.0, 'got': 1.0, 'picture': 5.0, 'lit': 1.0, 'use': 1.0, 'gotten': 1.0, 'this': 3.0, 'respond': 1.0, 'on': 1.0, 'process': 1.0, 'think': 1.0, '3': 2.0, 'room': 1.0, 'limited': 1.0, 'asked': 1.0, 'if': 3.0, 'same': 1.0, 'off': 1.0, 'tried': 1.0, 'to': 11.0, 'as': 3.0, 'was': 3.0, 'not': 3.0, 'looks': 1.0, 'my': 2.0, 'me': 2.0, 'return': 3.0, 'close': 1.0, 'original': 1.0, 'i': 12.0, 'well': 1.0, 'has': 1.0, 'and': 3.0, 'email': 6.0, 'responded': 1.0, 'asking': 1.0, 'paying': 1.0, 'defect': 2.0, 'after': 1.0, 'which': 1.0, 'like': 1.0, 'received': 1.0, 'second': 2.0, 'send': 1.0, 'do': 2.0, 'take': 1.0, '2': 1.0, 'first': 3.0, 'described': 1.0, 'would': 1.0, 'look': 1.0, 'denotes': 1.0, 'very': 1.0, 'piece': 1.0, 'so': 2.0, 'time': 2.0, 'what': 1.0, 'needed': 1.0, 'should': 1.0, 'been': 1.0, 'requested': 1.0, 'review': 1.0, 'shop': 1.0, 'online': 1.0, 'that': 1.0, 'because': 1.0, 'an': 1.0, 'trail': 1.0}
Word element => {'replaced': 1.0, 'ago': 1.0, 'before': 1.0, 'had': 1.0, 'years': 1.0, 'work': 1.0, 'and': 2.0, 'like': 1.0, 'complaints': 1.0, 'them': 1.0, 'have': 1.0, 'all': 1.0, 'just': 1.0, 'at': 1.0, 'no': 1.0, 'they': 1.0, 'we': 2.0, 'i': 1.0, 'lost': 1.0, 'that': 1.0, 'were': 1.0, 'ones': 1.0, 'these': 1.0, 'great': 1.0, 'the': 1.0, 'from': 1.0}
Word element => {'hand': 1.0, 'in': 1.0, 'easy': 1.0, 'nice': 1.0, 'already': 1.0, 'ordered': 1.0, 'before': 1.0, 'started': 1.0, 'the': 2.0, 'baby': 1.0, 'hold': 1.0, 'was': 1.0, 'cut': 1.0, 'born': 1.0, 'clippers': 1.0, 'now': 1.0, 'to': 2.0, 'nails': 1.0}
Word element => {'future': 1.0, 'in': 1.0, 'the': 1.0, 'more': 1.0, 'recommend': 1.0, 'very': 1.0, 'it': 2.0, 's': 1.0, 'i': 3.0, 'buying': 1.0, 'nice': 1.0, 'will': 2.0, 'be': 1.0, 'exactly': 1.0, 'was': 1.0, 'expected': 1.0, 'what': 1.0, 'defiantly': 1.0}
Word element => {'anyone': 1.0, 'would': 1.0, 'they': 1.0, 'recommend': 1.0, 'home': 1.0, 'brought': 1.0, 'them': 1.0, 'those': 1.0, 'tiny': 1.0, 'and': 2.0, 'baby': 1.0, 'daughter': 1.0, 'by': 1.0, 'been': 1.0, 'my': 2.0, 'are': 2.0, 'is': 1.0, 'clippers': 1.0, 'nails': 1.0, 'since': 1.0, 'a': 1.0, 'using': 1.0, 'first': 1.0, 'swore': 1.0, 'this': 1.0, 'have': 1.0, 'to': 1.0, 'was': 1.0, 'nervous': 1.0, 'i': 3.0, 'so': 1.0, 'friend': 1.0, 'great': 1.0, 'these': 1.0}
Word element => {'all': 1.0, 'problems': 1.0, 'at': 1.0, 'no': 1.0, 'and': 1.0, 'way': 1.0, 'accident': 1.0, 'so': 2.0, 'gotta': 1.0, 'his': 1.0, 'makes': 1.0, 'nails': 2.0, 'this': 1.0, 'control': 1.0, 'more': 1.0, 'clipping': 1.0, 'the': 2.0, 'much': 2.0, 'its': 1.0, 'now': 1.0, 'to': 1.0, 'be': 1.0, 'say': 1.0, 'that': 1.0, 'easier': 1.0, 'finger': 1.0, 'use': 1.0, 'hesitant': 1.0, 'better': 1.0, 'clip': 1.0, 'because': 1.0, 'clipped': 1.0, 'kids': 1.0, 'by': 1.0, 'i': 1.0}
Word element => {'it': 1.0, 'without': 1.0, 'my': 1.0, 'make': 1.0, 'are': 1.0, 'and': 1.0, 'clippers': 1.0, 'hold': 2.0, 'cut': 1.0, 'easy': 1.0, 'to': 3.0, 'comfortable': 1.0, 'the': 1.0, 'these': 1.0, 'baby': 1.0, 'tiny': 1.0, 's': 1.0, 'nails': 1.0, 'them': 1.0, 'struggling': 1.0, 'cutting': 1.0, 'too': 1.0, 'onto': 1.0, 'short': 1.0, 'or': 1.0}
Word element => {'have': 1.0, 'then': 1.0, 'right': 1.0, 'aaaaarrrrggghhhh': 1.0, 'positioned': 1.0, 'get': 1.0, 'finally': 1.0, 'also': 1.0, 'well': 1.0, 'of': 2.0, 'worked': 1.0, 'and': 2.0, 'for': 1.0, 'neither': 1.0, 'not': 1.0, 'those': 1.0, 'one': 1.0, 'clipper': 3.0, 'two': 2.0, 'came': 1.0, 'infant': 1.0, 'cut': 2.0, 'nails': 1.0, 'pack': 1.0, 'first': 2.0, 'frustrating': 1.0, 'with': 1.0, 'it': 3.0, 'the': 4.0, 'these': 2.0, 'clippers': 2.0, 'at': 1.0, 'who': 1.0, 'they': 1.0, 'larger': 2.0, 'summer': 1.0, 'time': 2.0, 'smaller': 1.0, 'had': 1.0, 'all': 1.0, 'to': 2.0, 'in': 1.0, 'didn': 1.0, 'safety': 1.0, 'every': 2.0, 'you': 2.0, 'a': 4.0, 'we': 1.0, 't': 1.0, 's': 1.0, 'know': 2.0, 'difficult': 1.0, 'how': 2.0, 'work': 2.0, 'can': 2.0, 'be': 2.0, 'clip': 1.0, 'baby': 1.0}
Word element => {'old': 1.0, '3': 1.0, 'is': 1.0, 'so': 1.0, 'yet': 1.0, 'little': 1.0, 'very': 1.0, 'amazon': 1.0, 'through': 1.0, 'just': 1.0, 'finally': 1.0, 'wrong': 1.0, 'month': 1.0, 'it': 2.0, 'this': 2.0, 'first': 1.0, 'wouldn': 1.0, 'her': 1.0, 'born': 1.0, 'my': 3.0, 'gift': 1.0, 've': 1.0, 'in': 1.0, 'was': 3.0, 'to': 2.0, 'cutter': 1.0, 'baby': 1.0, 'years': 1.0, 'nail': 1.0, 'care': 1.0, 'ordered': 1.0, 'originally': 1.0, 'pleased': 1.0, 'used': 1.0, 'set': 1.0, 'there': 1.0, 'came': 1.0, 'am': 1.0, 'again': 2.0, 'when': 1.0, 'us': 1.0, 'daughter': 1.0, 'for': 2.0, 'missing': 1.0, 'and': 4.0, 'difference': 1.0, 'son': 1.0, 'boston': 1.0, '5': 1.0, 'moving': 1.0, 'upon': 1.0, 'assuming': 1.0, 'others': 1.0, 'i': 3.0, 'tried': 1.0, 'about': 1.0, 'several': 1.0, 'we': 1.0, 'a': 1.0, 'discovered': 1.0, 't': 1.0, 'be': 1.0, 'much': 1.0, 'how': 1.0}
Word element => {'without': 1.0, 'ours': 1.0, 'have': 1.0, 'we': 1.0, 'made': 1.0, 'over': 1.0, 'process': 1.0, 'easier': 1.0, 'stressful': 1.0, 'of': 1.0, 'for': 1.0, 'using': 1.0, 'one': 1.0, 'been': 1.0, 'clipper': 1.0, 'things': 1.0, 'nail': 1.0, '2': 1.0, 'clipping': 1.0, 'the': 2.0, 'small': 1.0, 'make': 1.0, 'is': 2.0, 'nails': 1.0, 'most': 1.0, 'years': 1.0, 'baby': 1.0, 'handles': 2.0, 'problems': 1.0, 'very': 1.0, 'and': 1.0, 'well': 2.0, 'thicker': 1.0, 'this': 1.0, 'it': 1.0, 'but': 1.0, 'an': 1.0}
Word element => {'goodness': 1.0, 'thank': 1.0, 'here': 1.0, 'ends': 1.0, 'difficult': 1.0, 'really': 1.0, 'way': 1.0, 'about': 1.0, 'sharpness': 1.0, 'terms': 1.0, 'designed': 1.0, 'bad': 1.0, 'clip': 1.0, 'impossible': 1.0, 'worthless': 1.0, 'makes': 2.0, 'catch': 1.0, 'so': 1.0, 'plus': 1.0, 'ring': 1.0, 'wear': 1.0, 'almost': 1.0, 'board': 1.0, 'blunt': 1.0, 'but': 3.0, 'nuby': 1.0, 'boards': 1.0, 'emery': 2.0, 'for': 1.0, 'holder': 1.0, 'enough': 1.0, 'you': 3.0, 'useless': 1.0, 'it': 5.0, 'grip': 1.0, 'this': 1.0, 'skin': 1.0, 'first': 1.0, 'at': 1.0, '1st': 1.0, 'don': 1.0, 'over': 1.0, 'your': 1.0, 'therefore': 2.0, 'on': 2.0, '4': 1.0, 'not': 2.0, 'search': 2.0, 'actual': 1.0, 'to': 4.0, 'our': 1.0, 'that': 3.0, 'nail': 5.0, 'tried': 1.0, 'baby': 5.0, 'and': 4.0, 'clipper': 3.0, 'finally': 1.0, 'infant': 1.0, 'cut': 1.0, 'something': 1.0, 'guard': 1.0, 've': 1.0, 'in': 3.0, 'dubon': 1.0, 'the': 14.0, 'is': 5.0, 'more': 1.0, 'nails': 2.0, 'sharp': 2.0, 'do': 1.0, 'try': 1.0, 'white': 1.0, '49539': 1.0, 'bulb': 1.0, 'pretty': 1.0, 'finger': 1.0, 'comfortable': 2.0, 'get': 1.0, 'kind': 1.0, 'model': 1.0, 'like': 1.0, 'hold': 1.0, 'useful': 1.0, 'are': 1.0, 'clippers': 3.0, 'what': 1.0, 'losers': 1.0, 'need': 1.0, 't': 1.0, 's': 5.0, 'we': 1.0, 'a': 2.0, 'of': 2.0, 'pair': 1.0, 'safety': 2.0, 'has': 2.0}
Word element => {'little': 1.0, 'expecting': 1.0, 'my': 1.0, 'all': 1.0, 'sick': 1.0, 'getting': 1.0, 'must': 1.0, 'from': 1.0, 'infant': 2.0, 'pacifer': 1.0, 'difficult': 1.0, 'wonders': 1.0, 'thermometer': 1.0, 'of': 1.0, 'reading': 1.0, 'always': 1.0, 'a': 6.0, 'is': 2.0, 'it': 1.0, 'with': 1.0, 'this': 2.0, 'friends': 1.0, 'product': 1.0, 'be': 1.0, 'to': 1.0, 'one': 1.0, 'for': 2.0, 'given': 1.0, 'that': 1.0, 'the': 1.0, 'would': 1.0, 'works': 1.0, 'used': 1.0}
Word element => {'her': 1.0, 'of': 1.0, 'early': 1.0, 'life': 1.0, 'readings': 1.0, 'accurate': 2.0, 'check': 1.0, 'plus': 1.0, 'how': 1.0, '6': 1.0, 'larger': 1.0, 'the': 3.0, 'with': 1.0, 'convenient': 1.0, 'only': 1.0, 'this': 4.0, 'baby': 3.0, 'about': 2.0, 'doctor': 1.0, 'a': 4.0, 's': 3.0, 'way': 1.0, 'take': 2.0, 'our': 1.0, 'to': 3.0, 'weeks': 1.0, 'now': 1.0, 'when': 1.0, 'i': 3.0, 'use': 1.0, 'thermometer': 2.0, 'final': 1.0, 'thought': 1.0, 'that': 4.0, 'occasion': 1.0, 'said': 1.0, 'in': 1.0, 'bought': 1.0, 'rectal': 1.0, 'temperature': 2.0, 'clever': 1.0, 'getting': 1.0, 'also': 1.0, 'item': 1.0, 'was': 2.0, 'minutes': 1.0, 'accept': 1.0, 'really': 1.0, 'is': 2.0, 'most': 1.0, 'but': 1.0, 'before': 1.0, 'his': 1.0, 'pacifiers': 1.0, 'long': 1.0, 'pediatrician': 1.0, 'reached': 1.0, 'on': 2.0, '3': 1.0, 'your': 2.0, 'keep': 1.0, 'sized': 1.0, 'mouth': 1.0, 'for': 3.0, 'harder': 1.0, 'requires': 2.0, 'my': 1.0, 'pacifier': 1.0, 'month': 1.0, 'it': 5.0, 'she': 1.0}
Word element => {'useless': 1.0, 'battery': 2.0, 'already': 1.0, 'thermometer': 1.0, 'then': 1.0, 'worked': 1.0, 'months': 1.0, 'waste': 1.0, 'of': 1.0, 'time': 1.0, 'is': 2.0, 'five': 1.0, 'and': 3.0, 'you': 1.0, 'replace': 1.0, 'the': 3.0, 'cannot': 1.0, 'a': 1.0, 'money': 1.0, 'only': 2.0, 'this': 1.0, 'it': 2.0, 'we': 1.0, 'had': 1.0, 'died': 1.0, 'one': 1.0, 'for': 1.0}
Word element => {'can': 1.0, 'knees': 1.0, 'back': 1.0, 'bathing': 1.0, 'comfortable': 1.0, 'bulkier': 1.0, 'still': 1.0, 'bigger': 1.0, 'buying': 1.0, 'll': 1.0, 'think': 1.0, 'growing': 1.0, 'feel': 1.0, 'keeps': 1.0, 'just': 1.0, 'with': 1.0, 'begin': 1.0, 'tub': 3.0, 'or': 1.0, 'by': 1.0, 'too': 3.0, 'and': 10.0, 'have': 1.0, 'for': 3.0, 'the': 7.0, 'hanging': 1.0, 'fit': 1.0, 't': 5.0, 'small': 2.0, 'a': 5.0, 'store': 1.0, 'doesn': 3.0, 'was': 1.0, 'son': 1.0, 'however': 1.0, 'after': 1.0, 's': 2.0, 'sides': 1.0, 'fully': 1.0, 'house': 1.0, 'legs': 1.0, 'be': 1.0, 'granted': 1.0, 'work': 1.0, 'aren': 1.0, 'baby': 2.0, 'registering': 1.0, 'leave': 1.0, 'as': 3.0, 'to': 5.0, 'our': 2.0, 'had': 1.0, 'leaks': 1.0, 'what': 1.0, 'in': 5.0, 'said': 1.0, 'kitchen': 1.0, 'only': 2.0, 'this': 2.0, 'shower': 1.0, 'fold': 2.0, 'he': 2.0, 'gift': 1.0, 'seem': 1.0, 'children': 1.0, 'hoped': 1.0, 'mess': 1.0, 'take': 1.0, 'we': 1.0, 'then': 1.0, 'like': 1.0, 'hold': 1.0, 'another': 1.0, 'reviewer': 1.0, 'me': 1.0, 'my': 2.0, 'up': 2.0, 'water': 1.0, 'while': 1.0, 'understand': 1.0, 'young': 1.0, 'deep': 1.0, 'easily': 1.0, 'that': 1.0, 'babies': 1.0, 'tend': 1.0, 'bathtub': 1.0, 'make': 1.0, 'enough': 2.0, 'slippery': 2.0, 'much': 1.0, 'floor': 1.0, 'd': 1.0, 'prefer': 1.0, 'is': 2.0, 'at': 1.0, 'same': 1.0, 'time': 1.0, 'received': 1.0, 'also': 1.0, 'quite': 1.0, 'big': 1.0, '8': 1.0, 'would': 2.0, 'either': 1.0, 'weeks': 1.0, 'old': 1.0, 'soon': 1.0, 'there': 1.0, 'him': 1.0, 'it': 6.0, 'already': 1.0, 'not': 1.0, 'sink': 4.0, '3oz': 1.0, 'room': 1.0, 'his': 1.0, '9lbs': 1.0, 'putting': 1.0, 'well': 1.0, 'i': 5.0, 'feet': 1.0}
Word element => {'warm': 1.0, 'clean': 1.0, 'stream': 1.0, 'constant': 1.0, 'in': 1.0, 'head': 3.0, 'weeks': 1.0, '14': 1.0, 'now': 1.0, 'almost': 1.0, 'his': 3.0, 'bath': 2.0, 'on': 3.0, 'time': 3.0, 'by': 1.0, 'just': 1.0, 'and': 5.0, 'there': 1.0, 'the': 10.0, 'of': 5.0, 'don': 1.0, 'son': 2.0, 'a': 6.0, 'going': 1.0, 't': 2.0, 'run': 1.0, 'constantly': 1.0, 'so': 3.0, 'can': 1.0, 'rolled': 1.0, 'but': 1.0, 'pounds': 2.0, 'at': 1.0, 'is': 4.0, 'tub': 3.0, 'towel': 1.0, 'store': 1.0, 'was': 1.0, 'open': 1.0, 'over': 1.0, 'hard': 1.0, 'willl': 1.0, 'only': 2.0, 'plastic': 1.0, 'first': 1.0, 'this': 3.0, 'my': 2.0, 'dresser': 1.0, 'up': 1.0, '7': 1.0, 'water': 3.0, 'to': 2.0, 'has': 2.0, 'convenient': 1.0, 'big': 1.0, 's': 1.0, 'sides': 1.0, 'not': 1.0, 'been': 1.0, 'because': 1.0, 'that': 1.0, 'fun': 1.0, 'holding': 1.0, 'am': 1.0, 'start': 1.0, 'i': 4.0, 'well': 1.0, 'putting': 1.0, 'slides': 1.0, 'be': 2.0, 'experience': 1.0, 'liner': 1.0, 'wouldn': 1.0, 'they': 1.0, 'cushioned': 1.0, 'should': 1.0, 'have': 1.0, 'as': 2.0, 'leave': 1.0, 'him': 1.0, '9': 1.0, 'it': 2.0, 'thought': 1.0, 'side': 2.0, 'made': 1.0, 'cushion': 1.0, 'out': 1.0, 'foam': 1.0, 'know': 1.0, 'baby': 1.0, 'many': 1.0, 'tubs': 1.0, 'whole': 1.0, 'where': 1.0, 'under': 1.0, 'same': 1.0, 'problem': 1.0, 'fold': 1.0, 'he': 3.0, 'far': 1.0, 'little': 1.0, 'let': 1.0, 'drain': 1.0}
Word element => {'more': 1.0, 'able': 1.0, 'but': 1.0, 'secure': 1.0, 'still': 1.0, 'her': 4.0, 'big': 1.0, 'enjoy': 1.0, 'water': 1.0, 'some': 1.0, 'would': 1.0, 'older': 1.0, 'little': 1.0, 'sink': 1.0, 'set': 1.0, 'one': 1.0, 'along': 1.0, 'those': 1.0, 'were': 1.0, 'with': 4.0, 'this': 1.0, 'first': 1.0, 'put': 2.0, 'bath': 2.0, 'then': 2.0, 'was': 5.0, 'given': 2.0, 'happier': 1.0, 'when': 1.0, 'you': 1.0, 'kitchen': 1.0, 'to': 1.0, 'our': 3.0, 'as': 1.0, 'bathtub': 1.0, 'gift': 1.0, 'shallow': 1.0, 'tub': 4.0, 'sponges': 1.0, 'baby': 3.0, 'lay': 1.0, 'in': 4.0, 'the': 4.0, 'we': 3.0, 'a': 2.0, 't': 2.0, 'and': 3.0, 'couldn': 1.0, 'have': 1.0, 'into': 1.0, 'that': 2.0, 'been': 1.0, 'even': 1.0, 'didn': 1.0, 'enough': 1.0, 'for': 1.0, 'fit': 1.0, 'of': 1.0, 'sponge': 1.0, 'snuggled': 1.0, 'slide': 1.0, 'just': 1.0, 'right': 2.0, 'it': 5.0, 'she': 3.0, 'anywhere': 1.0, 'onto': 1.0}
Word element => {'no': 1.0, 'use': 1.0, 'water': 1.0, 'hot': 1.0, 'antibacterial': 1.0, 'rinse': 1.0, 'always': 1.0, 'just': 1.0, 'bacteria': 1.0, 'come': 1.0, 'have': 1.0, 'problem': 1.0, 'only': 1.0, 'out': 2.0, 'compares': 1.0, 'back': 1.0, 'unit': 1.0, 'storage': 1.0, 'husband': 1.0, 'sending': 1.0, 'one': 2.0, 'away': 1.0, 'anyone': 1.0, 'putting': 1.0, 'after': 1.0, 'ended': 1.0, 'yrs': 1.0, '2': 1.0, 'up': 1.0, 'child': 1.0, 'soap': 1.0, 'second': 1.0, 'also': 2.0, 'in': 2.0, 'with': 2.0, 'convenient': 1.0, 'could': 1.0, 'a': 1.0, 'every': 1.0, 'highly': 1.0, 'baby': 3.0, 'best': 1.0, 'perfect': 3.0, 'this': 4.0, 'it': 9.0, 'shower': 1.0, 'first': 1.0, 'got': 2.0, 'then': 1.0, 'bath': 1.0, 'on': 1.0, 'around': 1.0, 'is': 5.0, 'made': 3.0, 'sure': 1.0, 'harbor': 1.0, 'get': 1.0, 'tub': 4.0, 'reccommend': 1.0, 'another': 1.0, 'my': 5.0, 'the': 8.0, 'which': 1.0, 'other': 1.0, 'kitchen': 1.0, 'love': 1.0, 'opinion': 1.0, 'fit': 1.0, 'for': 4.0, 'that': 2.0, 'babies': 1.0, 'and': 4.0, 'sink': 1.0, 'foam': 2.0, 'size': 1.0, 'mat': 1.0, 'reclined': 1.0, 'gift': 1.0, 'perfectly': 1.0, 'inside': 1.0, 'time': 1.0, 'so': 2.0, 'does': 2.0, 'not': 2.0, 'later': 1.0, 'slide': 1.0, 'to': 5.0, 'keep': 1.0, 'would': 2.0, 'new': 1.0, 'position': 1.0, 'i': 6.0}
Word element => {'dads': 1.0, 'by': 1.0, 'just': 2.0, 'describe': 1.0, 'walk': 1.0, 'how': 1.0, 'room': 1.0, 'more': 1.0, 'because': 1.0, 'back': 1.0, 'forward': 1.0, 'her': 2.0, 'able': 1.0, 'not': 1.0, 'm': 1.0, 'see': 1.0, 'ball': 1.0, 'little': 1.0, 'their': 1.0, 'support': 1.0, 'sit': 2.0, 'have': 3.0, 'but': 1.0, 'can': 1.0, 'they': 1.0, 'has': 1.0, 'paddings': 1.0, 'curves': 1.0, 'i': 4.0, 'you': 1.0, 'when': 2.0, 'daughters': 1.0, 'especailly': 1.0, 'head': 2.0, 'tub': 5.0, 'store': 1.0, 'recommend': 1.0, 'doesn': 2.0, 'this': 2.0, 'a': 1.0, 's': 1.0, 't': 4.0, 'the': 7.0, 'sits': 1.0, 'don': 1.0, 'wash': 1.0, 'up': 1.0, 'of': 1.0, 'baby': 1.0, 'where': 2.0, 'for': 1.0, 'or': 1.0, 'yet': 1.0, 'own': 1.0, 'on': 1.0, 'constantly': 1.0, 'all': 1.0, 'any': 2.0, 'to': 8.0, 'anything': 1.0, 'prevent': 1.0, 'details': 1.0, 'bend': 1.0, 'my': 1.0, 'from': 1.0, 'falling': 1.0, 'in': 4.0, 'side': 1.0, 'know': 1.0, 'like': 1.0, 'hold': 1.0, 'which': 1.0, 'no': 1.0, 'moms': 1.0, 'too': 1.0, 'and': 3.0, 'it': 3.0, 'looks': 1.0, 'she': 3.0, 'much': 1.0}
Word element => {'great': 1.0, 'just': 1.0, 'works': 1.0, 'affordable': 1.0, 'their': 1.0, 'for': 1.0, 'parents': 1.0, 'this': 1.0, 'problems': 1.0, 'never': 1.0, '2nd': 1.0, 'use': 1.0, 'away': 1.0, 'and': 3.0, 'babies': 1.0, 'gave': 1.0, 'daughter': 2.0, 'first': 1.0, 'purchased': 2.0, 'had': 2.0, 'all': 1.0, 'any': 1.0, 'to': 2.0, 'then': 1.0, '2002': 1.0, 'born': 1.0, 'fold': 1.0, 'up': 1.0, 'of': 1.0, 'january': 1.0, 'back': 1.0, 'will': 1.0, 'outgrew': 1.0, 'tub': 2.0, 'in': 1.0, 'it': 4.0, 'she': 1.0, 'last': 1.0, '1st': 1.0, '1997': 1.0, 'the': 3.0, 'currently': 1.0, 'i': 9.0, 'purchase': 1.0, 'my': 3.0, 'another': 3.0, 'baby': 1.0, 'bought': 1.0, 'one': 2.0, 'ones': 1.0, 'satisfied': 1.0, 'when': 3.0, 'am': 1.0, 'recommend': 1.0, 'was': 2.0, 'store': 1.0, 'expecting': 1.0, 'part': 1.0, 'completely': 1.0, 'is': 2.0, 'so': 1.0, 'with': 2.0, 'convenient': 1.0}
Word element => {'well': 1.0, 'complaint': 1.0, 'single': 1.0, 'every': 1.0, 'beware': 1.0, 'after': 1.0, 'an': 1.0, 'reviews': 2.0, 'it': 2.0, 'founded': 1.0, 'that': 1.0, 'were': 1.0, 'try': 1.0, 'much': 1.0, 'slip': 1.0, 'tub': 2.0, 'made': 1.0, 'slid': 1.0, 'resitant': 1.0, 'bathtime': 1.0, '2': 1.0, 'place': 1.0, 'the': 4.0, 'is': 3.0, 'now': 1.0, 'happier': 1.0, 'use': 1.0, 'horrible': 1.0, 'and': 1.0, 'baby': 1.0, 'over': 1.0, 'don': 1.0, 'may': 1.0, 'my': 2.0, 'another': 1.0, 'pad': 1.0, 'arm': 1.0, 't': 2.0, 'we': 1.0, 'other': 1.0, 'even': 1.0, 'fit': 1.0, 'in': 2.0, 'doesn': 1.0, 'anymore': 1.0, 'this': 1.0, '0': 1.0, 'he': 2.0, '6': 1.0, 'reading': 1.0, 'i': 2.0, 'bath': 1.0, 'think': 1.0, 'so': 1.0, 'months': 2.0, 'bought': 1.0, 'seat': 1.0, 'to': 1.0, 'our': 1.0, 'all': 2.0, 'as': 2.0, 'son': 1.0}
Word element => {'waste': 1.0, 'tiny': 1.0, 'amount': 1.0, 'even': 1.0, 'thing': 1.0, 'same': 1.0, 'did': 1.0, 'again': 1.0, 'of': 1.0, 'hinges': 1.0, 'pouring': 1.0, 'started': 1.0, 'water': 2.0, 'horrible': 1.0, 'and': 2.0, 't': 1.0, 'the': 6.0, 'gift': 1.0, 'a': 2.0, 'from': 1.0, 'as': 1.0, 'at': 1.0, 'out': 1.0, 'tub': 2.0, 'was': 2.0, 'to': 1.0, 'recieved': 1.0, 'tried': 1.0, 'i': 5.0, 'your': 1.0, 'time': 1.0, 'my': 1.0, 'went': 1.0, 'shower': 1.0, 'this': 1.0, 'first': 1.0, 'with': 2.0, 'it': 4.0, 'please': 1.0, 'use': 1.0, 'money': 1.0, 'don': 1.0, 'alone': 1.0, 'baby': 2.0, 'put': 1.0, 'in': 1.0}
Word element => {'also': 1.0, 'and': 1.0, 'very': 1.0, 'big': 1.0, 'so': 1.0, 'are': 1.0, 'tubs': 1.0, 'sturdy': 1.0, 'bath': 1.0, 'other': 1.0, 'some': 1.0, 'still': 1.0, 'months': 2.0, 'is': 1.0, 'folded': 1.0, 'old': 1.0, 'i': 1.0, 'when': 1.0, 'daughter': 1.0, 'bulky': 1.0, 'the': 1.0, '2': 1.0, 'was': 1.0, 'now': 1.0, 'my': 1.0, 'bought': 1.0, '8': 1.0, 'liked': 1.0, 'for': 2.0, 'using': 1.0, 'this': 1.0, 'it': 3.0, 'that': 1.0, 'of': 1.0, 'up': 1.0, 'she': 1.0, 'easy': 1.0, 'baby': 1.0, 'storage': 1.0}
Word element => {'or': 1.0, 'wash': 1.0, 'soap': 1.0, 'some': 1.0, 'such': 1.0, 'items': 1.0, 'bathing': 1.0, 'little': 1.0, 'not': 2.0, 'it': 5.0, 'use': 2.0, 'as': 1.0, 'to': 3.0, 'good': 1.0, 'job': 1.0, 'the': 5.0, 'however': 1.0, 'headthe': 1.0, 'ok': 1.0, 'because': 1.0, 'does': 2.0, 'is': 3.0, 'so': 2.0, 'time': 1.0, 'has': 1.0, 'toys': 1.0, 'done': 1.0, 'short': 1.0, 'you': 2.0, 'am': 1.0, 'fast': 1.0, 'for': 3.0, 'actually': 1.0, 'going': 1.0, 'a': 2.0, 'lot': 1.0, 'area': 1.0, 'get': 1.0, 'folds': 1.0, 'easy': 1.0, 'of': 1.0, 'water': 2.0, 'cool': 1.0, 'cloth': 1.0, 'cusion': 1.0, 'this': 1.0, 'soft': 1.0, 'have': 1.0, 'that': 3.0, 'babies': 1.0, 'put': 2.0, 'my': 2.0, 'hold': 1.0, 'hand': 1.0, 'i': 2.0, 'news': 1.0, 'gets': 1.0, 'under': 1.0, 'still': 1.0, 'storage': 1.0}
Word element => {'trash': 1.0, 'going': 1.0, 'sale': 1.0, 'make': 1.0, 'even': 1.0, 'a': 4.0, 't': 2.0, 'brags': 1.0, 'saver': 2.0, 'over': 1.0, 'up': 1.0, 'don': 1.0, 'peeling': 1.0, 'whole': 1.0, 'cannot': 1.0, 'like': 1.0, 'won': 1.0, 'who': 1.0, 'keep': 1.0, 'space': 2.0, 'lastly': 1.0, 'as': 1.0, 'purpose': 1.0, 'from': 1.0, 'firstly': 1.0, 'fine': 1.0, 'some': 1.0, 'sit': 1.0, 'have': 1.0, 'basket': 1.0, 'and': 3.0, 'also': 1.0, 'hazard': 1.0, 'does': 2.0, 'than': 1.0, 'into': 1.0, 'advertising': 1.0, 'problems': 1.0, 'that': 3.0, 'because': 1.0, 'having': 1.0, 'to': 5.0, 'straight': 1.0, 'which': 1.0, 'side': 1.0, 'tub': 3.0, 'get': 1.0, 'be': 1.0, 'safty': 1.0, 'it': 10.0, 'this': 2.0, 'better': 2.0, 'replacing': 1.0, 'difficult': 1.0, 'awhile': 1.0, 'me': 1.0, 'just': 1.0, 'but': 3.0, 'removable': 1.0, 'can': 1.0, 'on': 1.0, 'puting': 1.0, 'or': 1.0, 'baby': 3.0, 'drooping': 1.0, 'after': 1.0, 'aware': 1.0, 'of': 1.0, 'the': 9.0, 'bicycle': 1.0, 'not': 2.0, 'itself': 1.0, 'in': 2.0, 'simply': 1.0, 'back': 1.0, 'is': 8.0, 'handle': 1.0, 'bars': 1.0, 'works': 1.0, 'anything': 1.0, 'other': 1.0, 'an': 1.0, 'exaggeration': 1.0, 'bottom': 1.0, 'stick': 1.0, 'down': 1.0, 'yellow': 1.0, 'pad': 1.0, 'off': 1.0, 'another': 1.0, 'starts': 1.0, 'you': 1.0, 'am': 1.0, 'i': 2.0, 'your': 1.0, 'any': 1.0, 'pose': 1.0, 'words': 1.0, 'feel': 1.0, 'garage': 1.0, 'ripped': 1.0, 'now': 1.0, 'with': 1.0, 'one': 2.0}
Word element => {'scrapped': 1.0, 'getting': 1.0, 'are': 1.0, 'keeps': 1.0, 'water': 1.0, 'on': 1.0, 'with': 1.0, 'it': 3.0, 'this': 1.0, 'hard': 1.0, 'fill': 1.0, 'i': 3.0, 'putting': 1.0, 'either': 1.0, 's': 1.0, 'side': 1.0, 'folded': 1.0, 'is': 2.0, 'bought': 1.0, 'there': 2.0, 'up': 1.0, 'however': 1.0, 'to': 1.0, 'folds': 1.0, 'tub': 2.0, 'because': 1.0, 'and': 2.0, 'hate': 1.0, 'were': 1.0, 'that': 1.0, 'my': 2.0, 'biggest': 1.0, 'trenchs': 1.0, 'baby': 2.0, 'gets': 1.0, 'where': 1.0, 'her': 2.0, 'foot': 1.0, 'stuck': 1.0, 'in': 1.0, 'the': 2.0, 'problem': 1.0, 'hand': 1.0, 'have': 1.0, 'an': 1.0, 'open': 1.0, 'space': 1.0, 'some': 1.0, 'how': 1.0}
Word element => {'pad': 1.0, 'decide': 1.0, 'you': 1.0, 'if': 1.0, 'guess': 2.0, 'time': 1.0, 'so': 1.0, 'mos': 1.0, '6': 1.0, 'get': 1.0, 'tub': 1.0, 'but': 1.0, 'out': 1.0, 'about': 1.0, 'purchase': 1.0, 'my': 4.0, 's': 1.0, 'a': 3.0, 'well': 1.0, 'of': 1.0, 'sponge': 1.0, 'buy': 1.0, 'had': 1.0, 'its': 1.0, 'was': 1.0, '25': 1.0, 'useful': 2.0, 'though': 1.0, 'while': 1.0, 'folding': 1.0, '0': 1.0, 'this': 1.0, 'it': 4.0, 'i': 4.0, 'feature': 1.0, 'bought': 1.0, 'son': 3.0, 'under': 1.0, 'size': 1.0, 'convienence': 1.0, 'put': 1.0, 'bath': 3.0, 'say': 1.0, 'is': 4.0, 'does': 1.0, 'because': 1.0, 'not': 1.0, 'the': 3.0, 'liner': 1.0, 'slip': 1.0, 'in': 1.0, 'resistant': 1.0, 'slides': 1.0, 'seat': 1.0, 'grow': 1.0, 'to': 4.0, 'all': 1.0, 'over': 1.0, 'did': 1.0, 'drain': 1.0, 'for': 2.0, 'fit': 1.0, 'foam': 1.0, 'sink': 1.0, 'very': 1.0, 'inches': 1.0, 'too': 1.0, 'and': 3.0, 'plug': 1.0, '6mos': 1.0}
Word element => {'spending': 1.0, 'own': 1.0, 'her': 1.0, 'his': 1.0, 'sit': 1.0, 'face': 1.0, 'priced': 1.0, 'well': 1.0, 'very': 1.0, 'buy': 1.0, 'just': 1.0, 'few': 2.0, 'are': 1.0, 'with': 1.0, 'will': 2.0, 'kept': 1.0, 'apartment': 1.0, 'fancy': 1.0, 'next': 1.0, 'that': 1.0, 'son': 1.0, 'then': 1.0, 'only': 1.0, 'try': 1.0, 'counter': 1.0, 'this': 4.0, 'first': 2.0, 'it': 6.0, 'the': 3.0, 'until': 1.0, 'big': 1.0, 'great': 2.0, 'bulky': 1.0, 'make': 1.0, 'your': 1.0, 'think': 1.0, 'bath': 1.0, 'on': 3.0, 'months': 2.0, 'bought': 1.0, 'be': 4.0, 'used': 2.0, 'and': 5.0, 'in': 3.0, 'for': 2.0, 'young': 1.0, 'up': 1.0, 'sound': 1.0, 'child': 4.0, 'later': 1.0, 'our': 4.0, 'to': 5.0, 'would': 1.0, 'so': 3.0, 'scary': 1.0, 'running': 1.0, 'sense': 1.0, 'water': 1.0, 'using': 3.0, 'which': 1.0, 'can': 2.0, 't': 3.0, 'we': 3.0, 'a': 7.0, 'is': 2.0, 'want': 1.0, 'bunch': 1.0, 'compact': 1.0, 'tub': 4.0, 'easy': 1.0, 'doesn': 1.0, 'expecting': 1.0, 'was': 1.0, 'store': 2.0, 'i': 4.0, 'didn': 1.0, 'you': 1.0, 'when': 1.0, 'wasn': 1.0}
Word element => {'begin': 1.0, 'just': 1.0, 'counts': 1.0, 'shallow': 1.0, 'on': 1.0, 'bath': 1.0, 'not': 2.0, 'those': 1.0, 'inside': 1.0, 'using': 1.0, 'like': 1.0, 'who': 1.0, 'does': 2.0, 'i': 3.0, 'buy': 2.0, 'sink': 1.0, 'our': 1.0, 'to': 6.0, 'folding': 1.0, 'in': 2.0, 'could': 1.0, 'tend': 1.0, 'into': 1.0, 'and': 6.0, 'too': 1.0, 'very': 3.0, 'little': 1.0, 'top': 1.0, 't': 1.0, 'fit': 1.0, 'for': 3.0, 'tub': 4.0, 'nook': 1.0, 'bathroom': 1.0, 'my': 2.0, 'splash': 1.0, 'save': 1.0, 'recommend': 1.0, 'was': 2.0, 'hinges': 1.0, 'leak': 1.0, 'don': 1.0, 'product': 1.0, 'child': 1.0, 'the': 4.0, 'of': 1.0, 'lover': 1.0, 'idea': 1.0, 'when': 1.0, 'you': 1.0, 'again': 1.0, 'apartment': 1.0, 'deeper': 1.0, 'a': 6.0, 'tiny': 1.0, 'much': 1.0, 'do': 1.0, 'dwellers': 1.0, 'nicely': 1.0, 'are': 1.0, 'first': 1.0, 'baths': 2.0, 'we': 2.0, 'attracted': 1.0, 'replaced': 1.0, 'also': 2.0, 'compact': 1.0, 'us': 2.0, 'counter': 1.0, 'this': 2.0, 'perfect': 1.0, 'really': 1.0, 'at': 1.0, 'is': 3.0, 'around': 1.0, 'more': 1.0, 'want': 1.0, 'bigger': 1.0, 'stay': 1.0, 'every': 1.0, 'if': 1.0, 'up': 1.0, 'water': 1.0, 'possibly': 1.0, 'or': 1.0, 'but': 1.0, 'money': 1.0, 'son': 1.0, 'before': 1.0, 'he': 1.0, '6': 1.0, 'even': 1.0, 'weeks': 1.0, 'old': 1.0, 'd': 2.0, 'with': 2.0, 'allow': 1.0, 'it': 7.0, 'him': 1.0, 'warmer': 1.0, 'bit': 1.0}
Word element => {'have': 1.0, 'buy': 1.0, 'does': 2.0, 'ones': 1.0, 'whistles': 1.0, 'lacks': 1.0, 'after': 1.0, 'out': 1.0, 'throwing': 1.0, 'did': 1.0, 'but': 2.0, 'discolor': 1.0, 'began': 1.0, 'would': 1.0, 'lining': 1.0, 'baby': 3.0, 'use': 1.0, 'able': 1.0, 'not': 2.0, 'item': 3.0, 'secure': 1.0, 'infant': 1.0, 'and': 4.0, 'old': 1.0, 'i': 6.0, 'one': 1.0, 'months': 1.0, 'on': 1.0, 'about': 1.0, 'price': 2.0, 'yellow': 1.0, 'was': 3.0, 'as': 1.0, 'to': 5.0, 'he': 2.0, 'it': 4.0, '10': 1.0, 'son': 1.0, 'very': 1.0, 'more': 1.0, 'is': 1.0, 'comfortable': 1.0, 'until': 1.0, 'great': 1.0, 'job': 1.0, 'the': 8.0, 'another': 1.0, 'save': 1.0, 'my': 2.0, 'mind': 1.0, 'with': 2.0, 'tun': 1.0, 'a': 3.0, 'could': 1.0, 'when': 1.0, 'again': 1.0, 'easily': 1.0, 'expensive': 1.0, 'for': 3.0, 'sit': 1.0, 'bells': 1.0, 'thereafter': 1.0, 'used': 1.0, 'his': 1.0, 'slippery': 1.0, 'up': 2.0, 'inside': 1.0, 'spong': 1.0, 'bottom': 1.0, 'of': 2.0, 'in': 1.0, 'using': 2.0, 'body': 1.0, 'made': 1.0, 'an': 1.0, 'own': 1.0, 'keep': 1.0, 'tub': 4.0, 'folds': 1.0, 'this': 6.0, 'found': 1.0, 'next': 1.0, 'that': 2.0, 'well': 1.0, 'easier': 1.0, 'line': 1.0, 'only': 1.0, 'much': 1.0}
Word element => {'different': 1.0, 'would': 2.0, 'that': 1.0, 'worried': 1.0, 'on': 1.0, 'ended': 1.0, 'side': 2.0, 'one': 1.0, 'always': 2.0, 'younger': 1.0, 'recommend': 1.0, 'was': 2.0, 'them': 1.0, 'buying': 1.0, 'with': 1.0, 'it': 3.0, 'this': 1.0, 'plastic': 1.0, 'he': 3.0, 'when': 1.0, 'you': 1.0, 'a': 1.0, 's': 1.0, 'if': 1.0, 'explore': 1.0, 'not': 2.0, 'up': 3.0, 'of': 3.0, 'down': 1.0, 'bottom': 1.0, 'i': 4.0, 'head': 1.0, 'husband': 1.0, 'slip': 1.0, 'registered': 1.0, 'is': 2.0, 'house': 1.0, 'limited': 1.0, 'fill': 1.0, 'out': 2.0, 'feet': 1.0, 'in': 2.0, 'also': 1.0, 'my': 3.0, 'high': 1.0, 'and': 3.0, 'too': 1.0, 'for': 1.0, 'where': 1.0, 'water': 5.0, 'to': 1.0, 'spilled': 1.0, 'sides': 1.0, 'resting': 1.0, 'tub': 4.0, 'folds': 1.0, 'so': 1.0, 'because': 2.0, 'does': 1.0, 'his': 2.0, 'cannot': 1.0, 'like': 1.0, 'hold': 1.0, 'very': 1.0, 'leaned': 1.0, 'storage': 1.0, 'son': 1.0, 'only': 1.0, 'do': 1.0, 'much': 1.0, 'the': 8.0, 'hands': 1.0, 'are': 1.0}
Word element => {'is': 1.0, '4': 1.0, 'i': 1.0, 'it': 3.0, 'this': 1.0, 'still': 1.0, 'old': 1.0, 'tub': 1.0, 'fits': 2.0, 'daughter': 1.0, 'in': 2.0, 'my': 2.0, 'sink': 1.0, 'months': 1.0, 'well': 1.0, 'and': 1.0, 'nicely': 1.0, 'up': 1.0, 'like': 1.0, 'folds': 1.0}
Word element => {'ready': 1.0, 'think': 1.0, 'alone': 1.0, 'using': 1.0, 'there': 1.0, 'unsafe': 1.0, 'level': 1.0, 'in': 6.0, 'dangerous': 1.0, 'would': 4.0, 'oz': 1.0, 'for': 1.0, 'not': 1.0, 'full': 2.0, 'this': 3.0, 'placing': 1.0, 'the': 13.0, 'hinges': 1.0, 'fit': 1.0, 't': 1.0, 'a': 4.0, 'we': 7.0, 'play': 1.0, 'about': 2.0, 'belly': 1.0, 'over': 2.0, 'tub': 4.0, 'i': 2.0, 'old': 1.0, 'warm': 3.0, 'big': 2.0, 'great': 1.0, 'from': 1.0, 'nothing': 1.0, 'understand': 1.0, 'while': 1.0, '20': 1.0, 'that': 3.0, 'our': 4.0, 'to': 6.0, 'used': 2.0, 'washcloth': 2.0, 'be': 4.0, 'birth': 2.0, 'daughter': 2.0, 'change': 1.0, 'comments': 1.0, 'water': 4.0, 'it': 9.0, 'baby': 2.0, 'she': 4.0, 'higher': 1.0, 'must': 1.0, 'leave': 1.0, '6': 2.0, '14': 1.0, 'and': 10.0, 'except': 1.0, 'months': 1.0, 'one': 2.0, 'was': 2.0, 'lbs': 2.0, 'meant': 1.0, 'you': 2.0, 'when': 1.0, 'traveling': 1.0, 'now': 3.0, 'is': 7.0, 'at': 3.0, 'keep': 3.0, 'since': 1.0, 'sitting': 1.0, 'their': 1.0, 'head': 1.0, 'have': 2.0, 'running': 1.0, 'leaking': 1.0, 'side': 1.0, 'little': 2.0, 'don': 1.0, 'reservoir': 1.0, 'end': 1.0, 'clean': 1.0, 'wash': 1.0, 'her': 3.0, 'refill': 1.0, 's': 3.0, 'plug': 2.0, 'can': 3.0, 'anytime': 1.0, 'turned': 1.0, 'down': 1.0, 'kitchen': 2.0, 'fits': 1.0, 'other': 1.0, 'sink': 2.0, 'sinks': 1.0, 'has': 2.0, 'hair': 1.0, 'if': 2.0, 'every': 1.0, 'drain': 1.0, 'during': 1.0, 'bath': 1.0, 'on': 1.0, 'pull': 2.0, 'by': 1.0, 'd': 1.0, 'wet': 1.0, 're': 1.0}
Word element => {'helps': 1.0, '10': 1.0, 'almost': 1.0, 'babies': 1.0, 'older': 1.0, 'work': 1.0, 'whole': 1.0, 'cold': 1.0, 'rinse': 1.0, 'room': 1.0, 'off': 1.0, 'enough': 1.0, 'small': 1.0, 'have': 1.0, 'hope': 1.0, 'just': 1.0, 'dump': 1.0, 'someone': 1.0, 'lbs': 1.0, 'you': 1.0, 'water': 2.0, 'stays': 1.0, 'comfortable': 1.0, 'out': 1.0, 'feet': 2.0, 'gets': 1.0, 'infant': 1.0, 'screams': 1.0, 'would': 3.0, 'sides': 1.0, 'i': 4.0, 'either': 1.0, 'thought': 1.0, 'well': 1.0, 'easier': 1.0, 'this': 2.0, 'bought': 1.0, 'be': 1.0, 'only': 1.0, 'end': 1.0, 'much': 2.0, 'time': 1.0, 'so': 1.0, 'against': 1.0, 'store': 1.0, 'it': 4.0, 'she': 3.0, 'for': 3.0, 'my': 1.0, 'her': 5.0, 'not': 3.0, 'convience': 1.0, 'does': 1.0, 'usually': 1.0, 'having': 2.0, 'folding': 1.0, 'also': 2.0, 'imagine': 1.0, 'of': 1.0, 'too': 1.0, 'and': 3.0, 'tub': 3.0, 'poor': 1.0, 'in': 1.0, 'slides': 1.0, 'to': 4.0, 'all': 1.0, 'up': 3.0, 'over': 1.0, 'ends': 1.0, 'the': 6.0, 'place': 1.0, 'head': 1.0, 'a': 1.0, 'propped': 1.0, 'hurts': 1.0, 'side': 1.0, 'caught': 1.0, 'is': 3.0, 'hold': 1.0, 'which': 1.0}
Word element => {'purchase': 1.0, 'great': 1.0, 'graduating': 1.0, 'just': 1.0, 'point': 1.0, 'until': 1.0, 'used': 1.0, 'pounds': 1.0, '16': 1.0, 'about': 1.0, 'old': 1.0, '8': 1.0, 'time': 1.0, 'loves': 1.0, 'several': 1.0, 'anticipate': 1.0, 'but': 1.0, 'months': 3.0, 'still': 1.0, 'getting': 1.0, 'from': 1.0, 'sponges': 1.0, 'bath': 2.0, 'on': 1.0, 'well': 1.0, 'easier': 1.0, 'hair': 1.0, 'home': 1.0, 'as': 2.0, 'our': 7.0, 'any': 1.0, 'to': 5.0, 'big': 2.0, 'small': 1.0, 'a': 6.0, 'we': 8.0, 'will': 1.0, 'could': 1.0, 's': 1.0, 'line': 1.0, 'stored': 1.0, 'bear': 1.0, 'be': 1.0, 'in': 5.0, 'one': 1.0, 'for': 4.0, 'the': 8.0, 'of': 2.0, 'once': 1.0, 'hospital': 1.0, 'positon': 1.0, 'water': 1.0, 'up': 4.0, 'mildew': 1.0, 'work': 1.0, 'over': 1.0, 'fold': 2.0, 'saw': 1.0, 'sink': 1.0, 'never': 1.0, 'torso': 1.0, 'nicu': 2.0, 'ours': 1.0, 'infant': 3.0, 'those': 1.0, 'weeks': 1.0, 'with': 2.0, 'this': 6.0, 'bit': 1.0, 'found': 1.0, 'unit': 1.0, 'easily': 1.0, 'that': 3.0, 'been': 1.0, 'backwards': 1.0, 'nurse': 1.0, 'was': 2.0, 'its': 1.0, 'tub': 8.0, 'stayed': 1.0, '4': 2.0, 'at': 1.0, 'is': 4.0, 'more': 2.0, 'recommended': 1.0, 'and': 6.0, 'shape': 1.0, 'head': 1.0, 'wash': 1.0, 'her': 4.0, 'use': 2.0, 'kitchen': 2.0, 'leaks': 1.0, 'likes': 1.0, 'pinches': 1.0, 'hold': 1.0, 'which': 1.0, 'have': 3.0, 'cold': 1.0, 'problem': 1.0, 'are': 1.0, 'plus': 1.0, 'first': 2.0, 'oddly': 1.0, 'enough': 1.0, 'where': 1.0, 're': 1.0, 'sit': 1.0, 'baby': 7.0, 'she': 1.0, 'it': 1.0, 'now': 2.0, 'upright': 1.0, 'place': 1.0, 'washcloth': 1.0, 'us': 1.0, 'also': 1.0, 'keep': 1.0, 'makes': 1.0, 'warm': 1.0, 'ability': 1.0, 'yellow': 1.0, 'low': 1.0, 'frequently': 1.0, 'sprayer': 1.0, 'wet': 1.0}
Word element => {'warm': 1.0, 'more': 1.0, 'by': 1.0, 'covered': 1.0, 'your': 1.0, 'would': 1.0, 'lining': 1.0, 'position': 1.0, 'allow': 1.0, 'thick': 1.0, 'proof': 1.0, 'slip': 1.0, 'soft': 1.0, 'this': 1.0, 'neither': 1.0, 'unfolds': 1.0, 'enough': 1.0, 'cover': 1.0, 'our': 3.0, 'the': 7.0, 'as': 2.0, 'body': 1.0, 'contoured': 1.0, 'is': 3.0, 'completely': 1.0, 'recommend': 1.0, 'was': 1.0, 'leaking': 1.0, 'i': 2.0, 'thing': 1.0, 'about': 3.0, 'no': 1.0, 'storage': 1.0, 'son': 1.0, 'purchase': 1.0, 'joy': 1.0, 'another': 1.0, 'grandma': 1.0, 'excellent': 1.0, 'purchasing': 2.0, 'family': 1.0, 'live': 1.0, 'one': 2.0, 'entire': 1.0, 'for': 3.0, 'neatly': 1.0, 'bathe': 1.0, 'sponge': 1.0, 'baby': 3.0, 'folds': 2.0, 'towel': 1.0, 'tub': 5.0, 'area': 1.0, 'lived': 1.0, 'don': 2.0, 'trip': 1.0, 'and': 4.0, 'nor': 1.0, 'you': 1.0, 'a': 7.0, 's': 1.0, 'we': 5.0, 't': 2.0, 'might': 1.0, 'quick': 1.0, 'inside': 1.0, 'an': 1.0, 'or': 1.0, 'also': 1.0, 'do': 1.0, 'have': 2.0, 'to': 5.0, 'job': 1.0, 'colder': 1.0, 'bathing': 1.0, 'house': 1.0, 'holding': 1.0, 'experience': 1.0, 'worry': 2.0, 'safe': 1.0, 'while': 1.0, 'it': 2.0, 'him': 1.0, 'has': 1.0, 'california': 1.0, 'not': 1.0, 'lay': 1.0, 'being': 1.0, 'if': 1.0, 'up': 1.0, 'water': 2.0, 'but': 1.0, 'so': 1.0, 'can': 1.0, 'in': 1.0, 'think': 1.0, 'easily': 2.0, 'problems': 1.0, 'deep': 1.0, 'that': 1.0, 'makes': 1.0, 'keep': 1.0}
Word element => {'portability': 1.0, 'nice': 1.0, 'warm': 1.0, 'keep': 1.0, 'baby': 1.0, 'because': 1.0, 'him': 1.0, 'it': 2.0, 'doesn': 1.0, 'folds': 1.0, 'up': 1.0, 'to': 2.0, 't': 1.0, 'hold': 1.0, 'enough': 1.0, 'water': 1.0, 'however': 1.0, 'cover': 1.0}
Word element => {'just': 1.0, 'looking': 1.0, 'anyone': 1.0, 'advice': 1.0, 'would': 1.0, 'down': 1.0, 'raise': 1.0, 'the': 4.0, '1': 1.0, 'great': 1.0, 'cushion': 1.0, 't': 1.0, 'a': 3.0, 'storage': 1.0, 'price': 1.0, 'baby': 1.0, 'in': 3.0, 'was': 3.0, 'any': 1.0, 'to': 2.0, 'for': 2.0, 'foam': 1.0, 'like': 1.0, 'i': 4.0, 'had': 1.0, 'thought': 1.0, 'that': 1.0, 'already': 1.0, 'she': 2.0, 'it': 4.0, 'this': 2.0, 'looked': 2.0, 'easy': 1.0, 'tub': 4.0, 'made': 1.0, 'plus': 1.0, 'there': 1.0, 'because': 2.0, 'and': 3.0, 'have': 1.0, 'purchase': 2.0, 'neat': 1.0, 'my': 1.0, 'can': 1.0, 'quot': 2.0, 'up': 2.0, 'sideways': 1.0, 'you': 1.0, 'folded': 2.0, 'when': 1.0, '3': 1.0, 'put': 1.0, 'her': 1.0, 'bathtub': 1.0, 'worst': 1.0, 'slid': 1.0, 'arent': 1.0, 'adjustments': 1.0, 'so': 1.0}
Word element => {'time': 1.0, 'others': 1.0, 'problems': 1.0, 'worked': 1.0, 'best': 1.0, 'mentioned': 1.0, 'there': 1.0, 'if': 1.0, 'did': 1.0, 'were': 1.0, 'have': 2.0, 'stuck': 1.0, 'in': 2.0, 'also': 1.0, 'this': 2.0, 'it': 2.0, 'gotten': 1.0, 'definitely': 1.0, 'w': 1.0, 'get': 1.0, 'tub': 2.0, 'made': 1.0, 'hinges': 1.0, 'the': 2.0, 'my': 2.0, 'baby': 2.0, 'feet': 1.0, 's': 1.0, 'you': 1.0, 'as': 1.0, 'to': 2.0, 'bath': 1.0, 'put': 1.0, 'try': 2.0, 'much': 1.0, 'water': 1.0, 'leaks': 1.0, 'shop': 1.0, 'around': 1.0, 'has': 1.0, 'since': 1.0, 'bigger': 1.0, 'bather': 1.0, 'stands': 1.0, 'little': 1.0, 'for': 1.0, 'us': 2.0, 'dread': 1.0}
Word element => {'time': 1.0, 'loves': 1.0, 'daughter': 1.0, 'my': 1.0, 'getting': 1.0, 'big': 1.0, 'shes': 1.0, 'is': 1.0, 'saves': 1.0, 'up': 1.0, 'problem': 1.0, 'if': 1.0, 'purchased': 1.0, 'to': 2.0, 'i': 2.0, 'in': 1.0, 'tub': 2.0, 'fits': 1.0, 'the': 1.0, 'great': 2.0, 'space': 1.0, 'slip': 1.0, 'for': 1.0, 'love': 1.0, 'a': 2.0, 'it': 1.0, 'only': 1.0, 'this': 1.0, 'sink': 1.0, 'that': 1.0, 'lay': 1.0, 'her': 2.0, 'on': 1.0, 'folds': 1.0, 'small': 1.0, 'sponge': 1.0, 'so': 1.0, 'she': 1.0, 'would': 1.0, 'not': 1.0}
Word element => {'different': 1.0, 'use': 1.0, 'space': 1.0, 'if': 1.0, 'and': 3.0, 'had': 1.0, 'warm': 1.0, 'week': 1.0, 'enough': 1.0, 'level': 1.0, 'benefit': 1.0, 'keep': 1.0, 'is': 3.0, 'at': 1.0, 'useful': 1.0, 'are': 3.0, 'bad': 2.0, 'pad': 1.0, 'etc': 1.0, 'for': 2.0, 'i': 2.0, 'feet': 1.0, 'out': 1.0, 'very': 1.0, 'baby': 2.0, 'unfortunately': 1.0, 'stores': 1.0, 'with': 1.0, 'his': 1.0, 'holding': 1.0, 'rest': 1.0, 'slouches': 1.0, 'only': 2.0, 'wet': 1.0, 'this': 2.0, 'few': 1.0, 'bottom': 1.0, 'child': 1.0, 'sponge': 2.0, 'slips': 1.0, 'erases': 1.0, 'water': 1.0, '7': 1.0, 'up': 1.0, 'takes': 1.0, 'tub': 5.0, 'area': 1.0, 'resting': 1.0, 'of': 4.0, 'the': 10.0, 'slippinghas': 1.0, 'again': 1.0, 'spacehas': 1.0, 'a': 5.0, 's': 2.0, 'we': 3.0, 'maximum': 1.0, 'little': 2.0, 'nice': 1.0, 'big': 1.0, 'pretty': 1.0, 'high': 1.0, 'to': 5.0, 'all': 1.0, 'any': 1.0, 'over': 1.0, 'reduce': 1.0, 'features': 2.0, 'soap': 1.0, 'hinges': 1.0, 'second': 1.0, 'waterit': 1.0, 'but': 1.0, 'not': 2.0, 'old': 1.0, 'contoured': 1.0, 'from': 1.0, 'so': 1.0, 'diagonally': 1.0, 'in': 1.0, 'said': 1.0, 'head': 1.0, 'on': 1.0, 'definitely': 1.0, 'parent': 1.0, 'think': 1.0, 'one': 1.0, 'easily': 1.0, 'that': 1.0, 'into': 1.0, 'using': 2.0, 'side': 2.0, 'good': 1.0, 'which': 1.0, 'already': 1.0, 'it': 3.0, 'will': 1.0, 'be': 1.0, 'would': 1.0, 'weeks': 1.0, 'placing': 1.0, 'there': 1.0, 'having': 1.0, 'bend': 1.0}
Word element => {'space': 1.0, 'especially': 1.0, 'would': 1.0, 'cleaned': 1.0, 'and': 1.0, 'do': 1.0, 'very': 1.0, 'in': 2.0, 'needs': 1.0, 'limited': 1.0, 'house': 1.0, 'twist': 1.0, 'special': 1.0, 'live': 1.0, 'with': 1.0, 'it': 4.0, 'folding': 1.0, 'bath': 3.0, 'i': 3.0, 'love': 1.0, 'for': 1.0, 'have': 1.0, 'small': 1.0, 'the': 3.0, 'a': 4.0, 'see': 1.0, 'recommend': 1.0, 'was': 2.0, 'thing': 1.0, 'due': 1.0, 'advantages': 1.0, 'baby': 1.0, 'as': 2.0, 'to': 2.0, 'all': 1.0, 'any': 2.0, 'perfect': 1.0, 'this': 2.0, 'full': 1.0, 'of': 1.0, 'hazards': 1.0, 'you': 1.0, 'easily': 2.0, 'porous': 1.0, 'my': 1.0, 'fits': 1.0, 'folds': 1.0, 'tub': 2.0, 'being': 1.0, 'if': 2.0, 'other': 1.0, 'not': 2.0, 'pinching': 1.0, 'size': 1.0, 'mat': 1.0, 'is': 2.0}
Word element => {'best': 1.0, 'grown': 1.0, 'has': 1.0, '7': 1.0, 'smelled': 1.0, 'yet': 1.0, 'or': 1.0, 'never': 1.0, 'mildew': 1.0, 'up': 1.0, 'then': 1.0, 'dry': 1.0, 'out': 2.0, 'have': 1.0, 'leave': 1.0, 'compact': 1.0, 'since': 1.0, 'used': 1.0, 'store': 1.0, 'was': 1.0, 'in': 2.0, 'i': 4.0, 'old': 2.0, 'months': 1.0, 'one': 2.0, 'for': 3.0, 'daughter': 2.0, 'closet': 1.0, 'the': 3.0, 'say': 1.0, 'is': 2.0, 'my': 2.0, 'looking': 1.0, 'right': 2.0, 'but': 1.0, 'stored': 1.0, '2': 1.0, 'can': 1.0, 'clean': 1.0, 'this': 4.0, 'now': 1.0, 'away': 1.0, 'weeks': 1.0, 'older': 1.0, 'she': 2.0, 'it': 8.0, 'got': 2.0, 'put': 1.0, 'bath': 1.0, 'to': 3.0, 'as': 1.0, 'our': 1.0, 'fills': 1.0, 'larger': 1.0, 'moms': 1.0, 'and': 6.0, 'a': 1.0, 's': 2.0, 'folded': 1.0, 'you': 1.0, 'easy': 4.0, 'tub': 5.0, 'folds': 1.0, 'drains': 1.0, 'after': 1.0, 've': 1.0, 'new': 1.0, 'each': 1.0, 'would': 1.0}
Word element => {'convenient': 1.0, 'safe': 1.0, 'handy': 1.0, 'so': 1.0, 'way': 1.0, 'under': 1.0, 'nicely': 1.0, 'really': 1.0, 'up': 1.0, 'from': 1.0, 'baby': 1.0, 'rubber': 1.0, 'his': 1.0, 'used': 1.0, 'long': 1.0, 'water': 2.0, 'below': 1.0, 'a': 3.0, 'keep': 1.0, 'since': 1.0, 'getting': 1.0, 'i': 5.0, 'sink': 1.0, 'keeps': 2.0, 'he': 1.0, 'full': 1.0, 'this': 3.0, 'it': 6.0, 'of': 2.0, 'hospital': 1.0, 'there': 1.0, 'have': 1.0, 'brought': 1.0, 'the': 2.0, 'neede': 1.0, 'my': 2.0, 'folds': 1.0, 'tub': 3.0, 'out': 2.0, 'newborn': 1.0, 'slipping': 1.0, 'also': 1.0, 'in': 1.0, 'bath': 1.0, 'fit': 1.0, 'for': 1.0, 'chance': 1.0, 'home': 1.0, 'less': 1.0, 'and': 3.0, 'too': 1.0, 'drowning': 1.0, 'to': 1.0, 'center': 1.0, 'waist': 1.0, 'as': 2.0, 'injury': 1.0, 'causing': 1.0, 'am': 1.0, 'right': 1.0, 'can': 2.0, 'fromthe': 1.0, 'has': 2.0, 'loves': 1.0, 'case': 1.0, 'that': 2.0, 'plug': 1.0, 'let': 1.0, 'if': 1.0, 'is': 2.0}
Word element => {'products': 1.0, 'of': 1.0, 'a': 1.0, 'because': 1.0, 'together': 1.0, 'act': 1.0, 'their': 2.0, 'it': 1.0, 'totally': 1.0, 'safety': 1.0, 'and': 1.0, 'lately': 1.0, 'this': 1.0, 'poorly': 2.0, 'to': 1.0, 'tub': 1.0, 'first': 1.0, 'lot': 1.0, 'get': 1.0, 'uncomfortable': 1.0, 'needs': 1.0, 'are': 1.0, 'made': 2.0}
Word element => {'really': 1.0, 'old': 1.0, 'while': 1.0, 'when': 3.0, 'you': 1.0, 'another': 2.0, 'the': 12.0, 'leak': 3.0, 'sides': 1.0, 'twice': 1.0, 'didn': 1.0, 'time': 3.0, 'so': 3.0, 'just': 1.0, 'screaming': 1.0, 'know': 1.0, 'hold': 1.0, 'put': 2.0, 'on': 3.0, 'catch': 1.0, '3': 1.0, 'will': 2.0, 'item': 1.0, 'also': 1.0, 'used': 2.0, 'factor': 1.0, 'hinges': 1.0, 'second': 1.0, 'overflow': 1.0, 'was': 5.0, 'to': 7.0, 'all': 3.0, 'be': 3.0, 'have': 3.0, 'plus': 1.0, 'bothered': 1.0, 'first': 2.0, 'this': 4.0, 'had': 2.0, 'strongly': 1.0, 'putting': 1.0, 'i': 10.0, '4': 1.0, 'otherwise': 1.0, 'mess': 1.0, 'out': 1.0, 'newborn': 1.0, 'review': 1.0, 'for': 2.0, 't': 2.0, 'a': 2.0, 'at': 1.0, 'is': 5.0, 'around': 1.0, 'over': 1.0, 'water': 6.0, 'up': 1.0, 'feel': 1.0, 'bring': 1.0, 'looking': 1.0, 'asap': 1.0, 'bather': 2.0, 'in': 3.0, 'it': 7.0, 'baby': 2.0, 'she': 3.0, 'difficult': 1.0, 'one': 1.0, 'try': 1.0, 'and': 2.0, 'onto': 1.0, 'use': 1.0, 'her': 2.0, 'good': 1.0, 'sop': 1.0, 'towel': 2.0, 'thing': 1.0, 'daddy': 1.0, 'my': 2.0, 'entire': 1.0, 'me': 1.0, 'aware': 1.0, 'because': 1.0, 'that': 2.0, 'don': 1.0, 'leaked': 1.0, 'write': 1.0, 'but': 2.0, 'managed': 1.0, 'ok': 1.0, 'bigger': 1.0, 'still': 1.0, 'if': 2.0, 'recommend': 1.0, 'planning': 1.0, 'were': 1.0, 'bathtub': 1.0, 'makes': 1.0, 'countertop': 1.0, 'shallow': 3.0, 'shivered': 1.0, 'would': 2.0, 'weeks': 1.0}
Word element => {'like': 1.0, 'really': 1.0, 'other': 1.0, 'with': 1.0, 'problems': 1.0, 'had': 1.0, 'never': 1.0, 'through': 1.0, 'nanny': 1.0, 'ordeal': 1.0, 'an': 1.0, 'is': 2.0, 'it': 2.0, 'he': 2.0, 'plastic': 1.0, 'horse': 1.0, 'mouth': 1.0, 'the': 6.0, 'temples': 1.0, 'gift': 1.0, 't': 1.0, 'a': 2.0, 'edges': 1.0, 'and': 4.0, 'terrible': 1.0, 'given': 1.0, 'one': 2.0, 'was': 2.0, 'look': 1.0, 'not': 1.0, 'these': 1.0, 'lower': 2.0, 'tubs': 1.0, 'whole': 1.0, 'out': 1.0, 'where': 1.0, 'am': 1.0, 'when': 1.0, 'tub': 2.0, 'folds': 1.0, 'stick': 1.0, 'college': 1.0, 'all': 1.0, 'to': 2.0, 'as': 1.0, 'my': 1.0, 'little': 1.0, 'in': 2.0, 'slides': 1.0, 'don': 1.0, 'poke': 1.0, 'sideways': 1.0, 'always': 1.0, 'slipping': 1.0, 'down': 1.0, 'this': 1.0, 'attempt': 1.0, 'him': 1.0, 'bathe': 1.0, 'but': 1.0, 'process': 1.0, 'quickly': 1.0, 'i': 4.0, 'becomes': 1.0}
Word element => {'features': 1.0, 'great': 1.0, 'spend': 1.0, 'by': 1.0, 'they': 1.0, 'for': 2.0, 'use': 1.0, 'because': 1.0, 'priced': 1.0, 'out': 1.0, 'wherever': 1.0, 'cabinet': 1.0, 'sink': 1.0, 'your': 1.0, 'don': 1.0, 'up': 2.0, 'stores': 1.0, 'convenient': 1.0, 'with': 1.0, 'short': 1.0, 'done': 1.0, 'll': 1.0, 'down': 1.0, 'rinse': 1.0, 'common': 1.0, 'time': 2.0, '100': 1.0, 'now': 2.0, 'born': 1.0, 'under': 1.0, 'begin': 1.0, 'have': 2.0, 'baths': 1.0, 'clean': 2.0, 'her': 3.0, 'it': 5.0, 'she': 1.0, 'minutes': 1.0, 'was': 1.0, 'recommend': 2.0, 'been': 1.0, 'outgrow': 1.0, 'in': 6.0, 'sense': 1.0, 'daughter': 1.0, 'i': 4.0, 'six': 2.0, 'has': 1.0, 'would': 1.0, 'new': 1.0, 'this': 7.0, 'off': 1.0, 'parent': 1.0, 'its': 1.0, 'only': 2.0, 'taking': 1.0, 'folds': 1.0, 'easy': 1.0, 'tub': 6.0, 't': 2.0, 'a': 4.0, 'bathing': 1.0, 'highly': 2.0, 'wipe': 1.0, 'baby': 1.0, 'my': 1.0, 'months': 2.0, 'and': 3.0, 'will': 2.0, 'isn': 1.0, 'start': 1.0, 'adult': 1.0, 'hold': 1.0, 'all': 1.0, 'to': 7.0, 'any': 1.0, 'seat': 1.0, 'is': 4.0, 'padding': 1.0, 'helps': 1.0, 'course': 1.0, 'safe': 1.0, 'lot': 1.0, 'since': 1.0, 'keep': 1.0, 'sight': 1.0, 'the': 2.0, 'place': 1.0, 'reasonably': 1.0, 'of': 3.0, 'am': 1.0, 'you': 3.0}
Word element => {'would': 1.0, 'days': 1.0, 'these': 1.0, 'what': 1.0, '1': 1.0, 'by': 1.0, 'own': 1.0, 'her': 1.0, 'on': 1.0, 'but': 2.0, '2': 2.0, 'sitting': 2.0, 'recommend': 1.0, 'was': 1.0, 'problem': 1.0, 'has': 1.0, 'early': 1.0, 'outgrowing': 1.0, 'are': 1.0, 'were': 1.0, 'children': 1.0, 'not': 3.0, 'am': 1.0, 'for': 2.0, 'experienced': 1.0, 'keep': 2.0, 'been': 1.0, 'babies': 1.0, 'that': 1.0, 'she': 1.0, 'it': 3.0, 'perfect': 1.0, 'this': 2.0, 'first': 2.0, 'now': 1.0, 'and': 5.0, 'do': 1.0, 'tub': 4.0, 'i': 4.0, 'about': 1.0, 'years': 1.0, 'baby': 1.0, 'months': 1.0, 'bought': 1.0, 'portion': 1.0, 'my': 3.0, 'running': 2.0, 'small': 1.0, 'have': 1.0, 'addition': 1.0, '6': 1.0, 'bottom': 1.0, 'always': 1.0, 'warm': 1.0, 'problems': 1.0, 'our': 1.0, 'any': 1.0, 'as': 2.0, 'loved': 1.0, 'far': 1.0, 'playing': 1.0, 'the': 9.0, 'daughter': 1.0, 'water': 4.0, 'still': 2.0, 'under': 1.0, 'a': 1.0, 'ago': 1.0, 'going': 1.0, 'newest': 1.0, 'child': 1.0, 'over': 1.0, 'though': 1.0, 'sides': 1.0, 'using': 1.0, 'which': 1.0, 'does': 1.0, 'in': 2.0, 'so': 2.0, 'around': 1.0, 'is': 2.0}
Word element => {'price': 1.0, 'room': 1.0, 'of': 1.0, 'has': 1.0, 'yet': 1.0, 'elevated': 1.0, 'less': 1.0, 'uses': 1.0, 'sit': 1.0, 'just': 1.0, 'give': 1.0, 'still': 1.0, 'though': 1.0, 'kitchen': 1.0, 'plenty': 1.0, 'really': 1.0, 'so': 1.0, 'her': 5.0, 'in': 6.0, 'great': 2.0, 'big': 1.0, 'comfortable': 1.0, 'little': 1.0, 'very': 1.0, 'is': 3.0, 'got': 1.0, 'use': 1.0, 'and': 5.0, 'away': 1.0, 'this': 1.0, 'daily': 1.0, 'used': 1.0, 'does': 2.0, 'take': 1.0, 'born': 2.0, 'have': 2.0, 'winter': 1.0, 'able': 1.0, 'water': 1.0, 'daughter': 2.0, 'head': 1.0, 'mom': 1.0, 'liked': 1.0, 'to': 1.0, 'was': 3.0, 'get': 1.0, 'tub': 4.0, 'right': 1.0, 'after': 1.0, 'higher': 1.0, 'it': 11.0, 'she': 6.0, 'months': 1.0, 'hasn': 1.0, 'warm': 1.0, 'old': 1.0, '4': 1.0, 'i': 6.0, 'gave': 1.0, 'that': 2.0, 't': 1.0, 'a': 5.0, 'we': 2.0, 's': 2.0, 'could': 2.0, 'be': 1.0, 'but': 1.0, 'bath': 3.0, 'put': 1.0, 'sink': 1.0, 'never': 1.0, 'fit': 1.0, 'for': 1.0, 'actually': 1.0, 'outgrown': 1.0, 'folded': 1.0, 'unless': 1.0, 'bathroom': 2.0, 'my': 3.0, 'company': 1.0, 'leak': 1.0, 'since': 3.0, 'at': 1.0, 'hinges': 1.0, 'the': 6.0}
Word element => {'lethargic': 1.0, 'for': 2.0, 'line': 1.0, 'bottom': 1.0, 'guess': 1.0, 'hand': 1.0, 'have': 1.0, 'around': 1.0, 'head': 1.0, 'when': 1.0, 'face': 1.0, 'sides': 1.0, 'always': 1.0, 'has': 2.0, 'my': 2.0, 'waive': 1.0, 'splashing': 1.0, 'leaking': 1.0, 'store': 1.0, 'bend': 1.0, 'as': 2.0, 'any': 1.0, 'to': 4.0, 'experience': 1.0, 'turns': 1.0, 'after': 1.0, 'ended': 1.0, 'how': 1.0, 'up': 3.0, 'hard': 1.0, 'over': 1.0, 'once': 1.0, 'freezing': 1.0, 'ease': 1.0, 'gotten': 1.0, 'bath': 1.0, 'musty': 1.0, 'stronger': 1.0, 'daughter': 2.0, 'got': 1.0, 'didn': 2.0, 'one': 1.0, 'money': 1.0, 'bought': 1.0, 'before': 1.0, 'despite': 1.0, 'machiene': 1.0, 'nicely': 1.0, 'small': 1.0, 'a': 3.0, 'we': 4.0, 'of': 1.0, 'the': 13.0, 'cloth': 1.0, 'that': 1.0, 'problems': 1.0, 'because': 1.0, 'smell': 1.0, 'catapolts': 1.0, 'than': 1.0, 'cleaning': 1.0, 'tub': 7.0, 'warm': 1.0, 'had': 1.0, 'with': 4.0, 'this': 2.0, 'it': 3.0, 'folds': 1.0, 'she': 5.0, 'every': 1.0, 'if': 1.0, 'you': 1.0, 'wash': 1.0, 'her': 8.0, 'and': 7.0, 'arms': 1.0, 'in': 1.0, 'fact': 1.0, 'old': 1.0, 'downside': 1.0, 'look': 1.0, 'is': 2.0, 'babies': 1.0, 'more': 1.0, 'plastic': 1.0, '8': 1.0, 'inside': 1.0, 'weeks': 1.0, '24': 1.0, 'on': 3.0, 'long': 1.0, 'inches': 1.0, 'get': 1.0, 'legs': 2.0, 'off': 1.0, 'ok': 1.0, 'drape': 1.0, 'i': 3.0, 'feet': 2.0, 'are': 1.0, 'during': 1.0, 'bathtime': 1.0, 'genetically': 1.0, 'likes': 1.0, 't': 2.0, 'eventhough': 1.0, 'keep': 1.0, 'heater': 1.0, 'blowing': 1.0, 'us': 1.0, 'whole': 1.0, 'time': 1.0, 'will': 1.0, 'knees': 1.0, 'where': 1.0, 'hitting': 1.0, 'only': 2.0, 'quickly': 1.0, 'pushes': 1.0, 'upslope': 1.0, 'liked': 1.0, 'nealy': 1.0, 'herself': 1.0, 'from': 1.0}
Word element => {'otherwise': 1.0, 'careful': 1.0, 'be': 1.0, 'should': 1.0, 'seams': 1.0, 'that': 2.0, 'faced': 1.0, 'problem': 1.0, 'like': 1.0, 'in': 1.0, 'also': 1.0, 'much': 1.0, 'useful': 1.0, 'son': 1.0, 'very': 4.0, 'time': 1.0, 'the': 3.0, 'tub': 5.0, 'still': 1.0, 'about': 1.0, 'baby': 1.0, 'been': 1.0, 'my': 2.0, 'since': 1.0, 'and': 1.0, 'comfortable': 2.0, 'using': 1.0, 'you': 1.0, 's': 1.0, 'water': 1.0, '5': 1.0, 'months': 1.0, 'old': 1.0, 'i': 2.0, 'leaks': 1.0, 'is': 5.0, 'now': 1.0, 'only': 1.0, 'with': 1.0, 'first': 1.0, 'this': 6.0, 'he': 2.0, 'we': 1.0, 'bath': 1.0, 'use': 1.0, 'have': 1.0, 'all': 1.0}
Word element => {'need': 1.0, 'month': 1.0, 'does': 1.0, 'much': 1.0, 'how': 1.0, 'but': 1.0, 'little': 1.0, 'fits': 1.0, 'tub': 2.0, 'to': 1.0, 'is': 1.0, 'fine': 1.0, 'this': 2.0, 'it': 2.0, 'sink': 1.0, 'our': 2.0, 'boy': 1.0, 'double': 1.0, 'for': 1.0, 'love': 1.0, 'comfortable': 1.0, 'money': 1.0, 'baby': 2.0, 'held': 1.0, 'seems': 2.0, 'in': 1.0, 'water': 2.0, 'wish': 1.0, 'quite': 1.0, 'great': 1.0, '2': 1.0, 'more': 1.0, 'the': 2.0, 'old': 1.0, 'i': 1.0, 'and': 1.0, 'do': 1.0, 'a': 3.0}
Word element => {'needed': 1.0, 'need': 1.0, 'or': 1.0, 'regressing': 1.0, 'blue': 1.0, 'number': 1.0, 'good': 1.0, 'see': 1.0, 'seconds': 1.0, 'dunking': 1.0, 'few': 1.0, 'by': 1.0, 'durable': 1.0, 'is': 5.0, 'it': 6.0, 'works': 2.0, 'baby': 2.0, 'alone': 1.0, 'about': 1.0, 'very': 1.0, 'little': 4.0, 'a': 7.0, 'friends': 2.0, 'one': 4.0, 'love': 3.0, 'afraid': 1.0, 'for': 2.0, 'numbers': 1.0, 'using': 1.0, 'i': 4.0, 'either': 1.0, 'purchased': 1.0, 'thermometer': 4.0, 'wonders': 1.0, 'on': 1.0, 'bath': 4.0, 'have': 2.0, 'kids': 2.0, 'this': 2.0, 'with': 2.0, 'item': 1.0, 'adjust': 1.0, 'progress': 1.0, 'the': 13.0, 'of': 4.0, 'way': 1.0, 'always': 2.0, 'progressing': 1.0, 'my': 3.0, 'from': 1.0, 'big': 1.0, 'bathtub': 1.0, 'if': 1.0, 'being': 1.0, 'as': 4.0, 'all': 2.0, 'to': 4.0, 'expecting': 1.0, 'was': 2.0, 'in': 3.0, 'tub': 1.0, 'multiple': 1.0, 'giving': 2.0, 'green': 1.0, 'play': 1.0, 'and': 3.0, 'well': 1.0, 'temperature': 2.0, 'hot': 1.0, 'water': 4.0, 'long': 1.0, 'cold': 1.0, 'you': 2.0, 'when': 1.0, 'times': 1.0, 'again': 1.0, 'never': 1.0, 'worry': 1.0}
Word element => {'buy': 1.0, 'have': 1.0, 'really': 1.0, 'combo': 1.0, 'carseat': 1.0, 'are': 1.0, 'for': 1.0, 'us': 1.0, 'stroller': 2.0, 'before': 1.0, 'any': 1.0, 'to': 2.0, 'grow': 1.0, 'obviously': 1.0, 'will': 3.0, 'height': 1.0, 'average': 1.0, 'exposed': 1.0, 'drenched': 1.0, 'old': 1.0, 'last': 1.0, 'with': 1.0, 'feet': 1.0, 'out': 2.0, 'were': 2.0, 'am': 1.0, 'when': 2.0, 'and': 2.0, 'front': 1.0, 'enough': 1.0, 'far': 1.0, 'not': 1.0, 'because': 1.0, 'does': 1.0, 'an': 1.0, 'but': 2.0, 'left': 2.0, 'side': 1.0, 'flaw': 1.0, 'disappointed': 1.0, 'live': 1.0, 'future': 1.0, 'since': 2.0, 's': 1.0, 'we': 4.0, 'a': 2.0, 'down': 1.0, 'perego': 1.0, 'them': 1.0, 'quality': 1.0, 'strollers': 1.0, 'hang': 1.0, 'bought': 1.0, 'is': 6.0, 'prince': 1.0, 'review': 1.0, 'vents': 1.0, 'useless': 1.0, 'month': 1.0, 'it': 6.0, 'this': 3.0, 'major': 1.0, 'shield': 6.0, 'of': 3.0, 'rain': 2.0, 'said': 1.0, 'in': 2.0, 'durable': 1.0, 'peg': 1.0, 'babies': 1.0, 'totally': 1.0, 'that': 2.0, 'after': 1.0, 'save': 1.0, 'my': 1.0, 'fits': 1.0, 'another': 2.0, 'absolute': 1.0, 'using': 1.0, '17': 1.0, 'reading': 1.0, 'trip': 1.0, 'had': 1.0, 'excellent': 1.0, 'essential': 1.0, 'lionheart': 1.0, 'nice': 1.0, 'nyc': 1.0, 'behind': 1.0, 'the': 6.0, 'heavy': 1.0, 'on': 1.0, 'he': 3.0, 'plastic': 1.0, 'i': 3.0, 'etc': 1.0}
Word element => {'if': 1.0, 'waste': 1.0, 'one': 1.0, 't': 1.0, 'a': 2.0, 'they': 1.0, 'you': 1.0, 'when': 1.0, 'returning': 1.0, 'uk': 1.0, 'will': 1.0, 'that': 1.0, 'gave': 1.0, 'else': 1.0, 'than': 1.0, 'chasing': 1.0, 'more': 1.0, 'balloon': 1.0, 'an': 1.0, 'cover': 1.0, 'off': 1.0, 'rain': 1.0, 'kept': 1.0, 'lot': 1.0, 'keep': 1.0, 'anything': 2.0, 'don': 1.0, 'up': 1.0, 'over': 3.0, 'i': 7.0, 'tried': 1.0, 'it': 7.0, 'this': 1.0, 'snaps': 1.0, 'first': 2.0, 'peg': 3.0, 'money': 1.0, 'can': 1.0, 'most': 1.0, 'had': 1.0, 'have': 2.0, 'the': 8.0, 'perfectly': 1.0, 'perego': 3.0, 'strollers': 1.0, 'baby': 1.0, 'sold': 1.0, 'across': 1.0, 'too': 1.0, 'and': 3.0, 'get': 2.0, 'to': 3.0, 'as': 1.0, 'last': 1.0, 'pliko': 2.0, 'list': 1.0, 'claims': 1.0, 'blowing': 1.0, 'stroller': 2.0, 'parking': 1.0, 'week': 1.0, 'your': 1.0, 'on': 1.0, 'put': 1.0, 'my': 1.0, 'fits': 1.0, 'like': 1.0, 'using': 1.0, 'where': 1.0, 'for': 1.0, 'time': 2.0, 'hah': 1.0, 'spent': 2.0, 'thing': 1.0, 'no': 1.0, '20': 1.0, 'was': 1.0, 'minutes': 1.0, 'in': 2.0, 'wind': 1.0, 'here': 1.0, 'be': 1.0, 'trying': 1.0, 'are': 1.0, 'darn': 1.0, 'stay': 1.0, 'there': 1.0, 'straps': 1.0, 'inflatable': 1.0, 'or': 2.0}
Word element => {'car': 1.0, 'even': 1.0, 'stroller': 1.0, 'fits': 1.0, 'nice': 1.0, 'out': 1.0, 'come': 1.0, 'then': 1.0, 'bag': 1.0, 'like': 1.0, 'somewhat': 1.0, 'way': 1.0, 'same': 1.0, 'also': 1.0, 'folding': 1.0, 'package': 1.0, 'open': 1.0, 'first': 1.0, 'cover': 1.0, 'take': 1.0, 'paper': 1.0, 'stroll': 1.0, 'days': 1.0, 'll': 1.0, 'especially': 1.0, 'just': 2.0, 'in': 2.0, 'with': 2.0, 'it': 6.0, 'entertainment': 1.0, 'on': 1.0, 'this': 1.0, 'pain': 1.0, 'is': 2.0, 'really': 2.0, 'that': 2.0, 'and': 1.0, 'living': 1.0, 'only': 1.0, 'do': 2.0, 'form': 1.0, 'of': 1.0, 'fold': 1.0, 'over': 1.0, 'up': 1.0, 'helps': 1.0, 'there': 1.0, 'a': 3.0, 'city': 1.0, 's': 2.0, 'seat': 1.0, 'to': 3.0, 'our': 1.0, 'outside': 1.0, 'from': 1.0, 'those': 1.0, 'sunny': 1.0, 'but': 3.0, 'the': 6.0, 'windy': 1.0, 'i': 1.0, 'agree': 1.0, 'others': 1.0, 'snapped': 1.0, 'able': 1.0, 'flat': 1.0, 'have': 1.0, 'keep': 1.0, 'creases': 1.0, 'you': 2.0, 'when': 1.0}
Word element => {'love': 1.0, 'jogger': 1.0, 'fit': 1.0, 'even': 1.0, 'good': 1.0, 'very': 1.0, 'baby': 1.0, 'tour': 1.0, 'military': 1.0, 'a': 1.0, 'is': 1.0, 'was': 1.0, 'to': 1.0, 'crazy': 1.0, 'just': 1.0, 'stroller': 1.0, 'but': 1.0, 'i': 1.0, 'hubsand': 1.0, 'on': 3.0, 'england': 1.0, 'and': 3.0, 'weather': 1.0, 'my': 1.0, 'rain': 1.0, 'cover': 1.0, 'the': 4.0, 'great': 1.0, 'fitted': 1.0, 'moved': 1.0, 'duty': 1.0, 'it': 3.0}
Word element => {'not': 1.0, 'has': 1.0, 'someone': 1.0, 'potty': 1.0, 'so': 2.0, 'after': 1.0, 'helped': 1.0, 'but': 1.0, 'dd': 1.0, 'and': 1.0, 'it': 5.0, 'seat': 1.0, 'to': 2.0, 'was': 1.0, 'how': 1.0, 'the': 2.0, 'aling': 1.0, 'i': 4.0, 'read': 1.0, 'little': 2.0, 'o': 1.0, 'use': 1.0, 'pinching': 1.0, 'or': 1.0, 'everywhere': 1.0, 'reviews': 2.0, 'also': 1.0, 'about': 3.0, 'don': 1.0, 'much': 1.0, 'works': 1.0, 'reading': 1.0, 'like': 2.0, 'worry': 1.0, 'charm': 1.0, 'having': 1.0, 'w': 1.0, 'because': 1.0, 'worried': 1.0, 'just': 1.0, 'bum': 1.0, 'that': 1.0, 'into': 1.0, 'would': 1.0, 'fall': 1.0, 't': 1.0, 'a': 3.0, 's': 1.0, 'we': 1.0, 'bowl': 1.0, 'bring': 1.0, 'if': 1.0, 'have': 1.0}
Word element => {'bag': 1.0, 'stroller': 1.0, 'diaper': 1.0, 'picking': 1.0, 'or': 1.0, 'shes': 1.0, 'purse': 1.0, 'about': 1.0, 'worry': 1.0, 'have': 1.0, 'up': 1.0, 'don': 1.0, 'puts': 1.0, 'been': 1.0, 'where': 1.0, 'her': 1.0, 'clean': 1.0, 'know': 2.0, 'help': 2.0, 'toilet': 1.0, 'normal': 1.0, 'herself': 1.0, 'back': 2.0, 'does': 1.0, 'because': 1.0, 'it': 4.0, 'this': 1.0, 'its': 2.0, 'do': 1.0, 'only': 1.0, 'what': 1.0, 'thought': 1.0, 'acutally': 1.0, 'saw': 1.0, 'when': 1.0, 'you': 3.0, 'idea': 1.0, 'hotel': 1.0, 'travel': 1.0, 'and': 4.0, 'old': 1.0, 'oblong': 1.0, 'i': 1.0, 'travels': 1.0, 'yr': 1.0, 'extra': 1.0, 'well': 2.0, 'so': 1.0, 'supported': 1.0, 'potty': 1.0, 'bit': 1.0, 'currently': 1.0, 'hands': 1.0, 'the': 6.0, 'great': 1.0, 'we': 2.0, 'a': 4.0, 't': 4.0, 'daughter': 1.0, 'in': 2.0, 'training': 1.0, 'doesn': 1.0, 'on': 3.0, 'lil': 1.0, 'of': 3.0, 'problem': 1.0, 'if': 1.0, 'is': 1.0, 'exactly': 1.0, 'isn': 2.0, 'right': 1.0, 'but': 1.0, '2': 1.0, 'work': 1.0, 'process': 1.0, 'can': 1.0, 'part': 1.0, 'slide': 1.0, 're': 1.0, 'off': 1.0, 'support': 1.0, 'some': 1.0, 'one': 1.0, 'toilets': 2.0, 'our': 1.0, 'seat': 2.0, 'to': 3.0, 'by': 1.0, 'large': 1.0}
Word element => {'clean': 1.0, 'know': 1.0, 'seats': 1.0, 'paper': 1.0, 'on': 1.0, 'better': 1.0, 'rely': 1.0, 'trained': 1.0, 'much': 1.0, 'potty': 1.0, 'is': 2.0, 'who': 1.0, 'new': 1.0, 'a': 1.0, 'purchase': 1.0, 'son': 1.0, 'year': 2.0, 'one': 1.0, 'for': 3.0, 'you': 1.0, 'protection': 1.0, 's': 2.0, 'her': 1.0, '6': 1.0, 'this': 1.0, 'sister': 1.0, 'it': 3.0, 'can': 1.0, 'my': 3.0, 'find': 1.0, 'now': 2.0, 'to': 2.0, 'was': 1.0, 'old': 2.0, 'i': 2.0, 'the': 1.0, '2': 1.0, 'great': 1.0, 't': 1.0, 'hate': 1.0, 'me': 1.0, 'and': 2.0, 'am': 1.0, 'daughter': 1.0, 'gave': 1.0, 'going': 1.0}
Word element => {'enjoy': 1.0, 'bag': 1.0, 'zipper': 1.0, 'with': 1.0, 'convenient': 1.0, 'does': 1.0, 'ends': 1.0, 'fold': 1.0, 'home': 1.0, 'easy': 1.0, 'from': 1.0, 'plastic': 1.0, 'catching': 1.0, 'away': 1.0, 'too': 1.0, 'sold': 1.0, 'and': 2.0, 'the': 4.0, 'clean': 1.0, 'not': 1.0, 'stay': 1.0, 'is': 5.0, 'for': 1.0, 'comfortable': 2.0, 'it': 6.0, 'skin': 1.0, 'wonderful': 1.0, 'toilet': 1.0, 'reinforces': 1.0, 't': 1.0, 'a': 3.0, 's': 1.0, 'when': 1.0, 'potty': 1.0, 'boy': 1.0, 'makes': 1.0, 'or': 1.0, 'girl': 1.0, 'to': 3.0, 'foldable': 1.0, 'using': 1.0, 'which': 2.0, 'carry': 1.0, 'safe': 1.0, 'in': 1.0, 'stable': 1.0, 'your': 2.0, 'on': 2.0, 'that': 1.0, 'way': 1.0, 'sit': 1.0, 'this': 1.0, 'freely': 1.0, 'child': 2.0, 'don': 1.0, 'purse': 1.0, 'about': 1.0, 'be': 1.0, 'worried': 1.0}
Word element => {'trouble': 1.0, 'save': 1.0, 'paper': 1.0, 'toilet': 1.0, 'wipes': 1.0, 'use': 1.0, 'do': 1.0, 'foldable': 1.0, 'ring': 1.0, 'potty': 1.0, 'take': 1.0, 'not': 1.0, 'me': 1.0, 'easy': 1.0, 'for': 1.0, 'where': 1.0, 'them': 1.0, 'child': 1.0, 'of': 1.0, 'stand': 1.0, 'myself': 1.0, 'the': 6.0, 'way': 1.0, 'back': 1.0, 'your': 1.0, 'or': 1.0, 'stupid': 1.0, 'less': 1.0, 'm': 1.0, 'if': 2.0, 'more': 1.0, 'is': 2.0, 'little': 1.0, 'work': 1.0, 'but': 1.0, 'can': 1.0, 'sanitary': 1.0, 'thought': 1.0, 'that': 2.0, 'to': 3.0, 'all': 1.0, 'thing': 1.0, 'slide': 1.0, 'public': 1.0, 'restroom': 1.0, 'touching': 1.0, 'then': 1.0, 'this': 2.0, 's': 1.0, 'a': 1.0, 't': 1.0, 'going': 1.0, 'might': 1.0, 'remember': 1.0, 'it': 1.0, 'fell': 1.0, 'regular': 1.0, 'in': 1.0, 'somewhere': 1.0, 'toilets': 1.0, 'you': 1.0, 'times': 1.0, 'than': 1.0, 'otherwise': 1.0, 'i': 4.0, 'care': 1.0, 'too': 1.0, 'and': 3.0}
Word element => {'now': 1.0, 'slip': 1.0, 'doesn': 1.0, 'top': 1.0, 'across': 1.0, 'goes': 1.0, 'for': 1.0, 'money': 1.0, 'bought': 1.0, 'just': 1.0, 'hate': 1.0, 'slippery': 1.0, 'wet': 1.0, 'with': 1.0, 'easy': 1.0, 'not': 1.0, 'her': 2.0, 'together': 2.0, 'daughter': 2.0, 'how': 1.0, 'even': 1.0, 'didn': 2.0, 'bottom': 1.0, 'down': 1.0, 'from': 1.0, 'slide': 1.0, 'was': 6.0, 'leaks': 1.0, 'follow': 1.0, 'meant': 1.0, 'everytime': 1.0, 'you': 1.0, 'when': 1.0, 'times': 1.0, 'has': 1.0, 'always': 1.0, 'on': 3.0, 'realize': 1.0, 'toddler': 1.0, 'if': 2.0, 'turn': 1.0, 'in': 2.0, 'poured': 1.0, 'out': 2.0, 'tub': 8.0, 'get': 2.0, 'be': 2.0, 'my': 5.0, 'another': 2.0, 'she': 2.0, 'baby': 2.0, 'that': 7.0, 'because': 1.0, 'bathtime': 1.0, 'into': 1.0, 'three': 1.0, 'to': 11.0, 'any': 1.0, 'would': 2.0, 'first': 1.0, 'pick': 1.0, 'shower': 1.0, 'this': 3.0, 'it': 15.0, 'annoying': 1.0, 'of': 1.0, 'the': 11.0, 'likes': 1.0, 't': 4.0, 'a': 7.0, 'great': 2.0, 'seemed': 1.0, 'until': 2.0, 'extremely': 1.0, 'directions': 1.0, 'i': 11.0, 'well': 1.0, 'big': 1.0, 'puddle': 1.0, 'which': 1.0, 'leaking': 1.0, 'gift': 1.0, 'sitting': 1.0, 'apart': 1.0, 'way': 2.0, 'huge': 1.0, 'decided': 1.0, 'had': 2.0, 'counter': 2.0, 'given': 1.0, 'drawback': 1.0, 'at': 3.0, 'is': 5.0, 'bathroom': 3.0, 'lifted': 1.0, 'constantly': 1.0, 'can': 1.0, 'so': 4.0, 'new': 2.0, 'time': 1.0, 'drain': 3.0, 'do': 1.0, 'put': 1.0, 'floor': 1.0, 'sink': 1.0, 'have': 2.0, 'carry': 1.0, 'work': 1.0, 'over': 2.0, 'less': 1.0, 'water': 2.0, 'up': 3.0, 'order': 1.0, 'supposed': 1.0, 'locked': 1.0, 'finally': 1.0, 'came': 1.0, 'readjust': 1.0, 'and': 4.0, 'all': 3.0, 'mop': 1.0, 'before': 1.0, 'there': 1.0, 'give': 1.0, 'thing': 1.0, 'net': 1.0, 'sling': 2.0}
Word element => {'replace': 1.0, 'very': 1.0, 'looking': 1.0, 'theory': 1.0, 'easier': 1.0, 'uses': 1.0, 'main': 1.0, 'toddler': 1.0, 'bathing': 1.0, 'idea': 1.0, 'like': 1.0, 'get': 1.0, 'only': 1.0, 'thrives': 1.0, 'still': 1.0, 'if': 2.0, 'likely': 1.0, 's': 1.0, 't': 2.0, 'a': 4.0, 'countertop': 1.0, 'plain': 1.0, 'leak': 1.0, 'once': 1.0, 'be': 2.0, 'bathtub': 1.0, 'full': 1.0, 'this': 4.0, 'found': 1.0, 'real': 1.0, 'aware': 1.0, 'of': 3.0, 'the': 9.0, 'seamless': 1.0, 'babies': 1.0, 'for': 4.0, 'you': 4.0, 'meant': 1.0, 'to': 9.0, 'all': 1.0, 'two': 1.0, 'one': 1.0, 'try': 1.0, 'too': 1.0, 'and': 3.0, 'is': 3.0, 'likewise': 1.0, 'now': 1.0, 'air': 1.0, 'figure': 1.0, 'move': 1.0, 'used': 1.0, 'doesn': 1.0, 'but': 2.0, 'work': 2.0, 'so': 3.0, 'can': 1.0, 'within': 2.0, 'part': 1.0, 'buy': 1.0, 'been': 1.0, 'blue': 1.0, 'sit': 2.0, 'have': 1.0, 'busy': 1.0, 'awhile': 1.0, 'it': 4.0, 'that': 5.0, 'because': 1.0, 've': 1.0, 'tub': 7.0, 'gunk': 1.0, 'out': 1.0, 'years': 1.0, 'another': 1.0, 'my': 2.0, 'i': 5.0, 'well': 3.0, 'on': 2.0, 'or': 1.0, 'do': 1.0, 'floor': 1.0, 'areas': 1.0, 'yes': 1.0, 'see': 1.0, 'sling': 1.0, 'type': 1.0, 'thing': 1.0, 'smaller': 1.0, 'use': 2.0, 'with': 3.0, 'newborns': 1.0, 'older': 1.0, 'less': 1.0, 'water': 2.0, 'major': 1.0, 'up': 1.0, 'crevices': 1.0, 'mildew': 1.0, 'don': 1.0, 'also': 1.0, 'will': 2.0, 'worked': 1.0, 'issue': 1.0, 'cracks': 1.0, 'are': 1.0, 'impossible': 1.0, 'clean': 2.0, 'in': 5.0, 'solution': 1.0, 'them': 1.0, 'before': 1.0, 'manage': 1.0, 'take': 1.0, 'project': 1.0, 'apart': 1.0, 'huge': 1.0, 'disgusting': 1.0}
Word element => {'tub': 1.0, 'even': 1.0, 'think': 1.0, 'about': 1.0, 'bath': 1.0, 'absolute': 1.0, 'it': 1.0, 'junk': 1.0, 'buying': 1.0, 't': 1.0, 'this': 1.0, 'don': 1.0, 'leaks': 1.0}
Word element => {'product': 1.0, 'during': 1.0, 'it': 4.0, 'shower': 1.0, 'counter': 1.0, 'this': 1.0, 'use': 1.0, 'back': 1.0, 'work': 1.0, 'baby': 1.0, 'tops': 1.0, 'set': 1.0, 'up': 1.0, 'inside': 2.0, 'bottom': 2.0, 'the': 5.0, '1': 1.0, 'and': 1.0, 'bath': 1.0, 'on': 3.0, 'we': 1.0, 'could': 1.0, 'in': 2.0, 'tub': 1.0, 'placed': 1.0, 'leaked': 2.0, 'occassions': 1.0, 'several': 1.0, 'only': 1.0, 'sharp': 1.0, 'difficult': 1.0, 'when': 2.0, 'or': 1.0, 'table': 1.0, 'is': 1.0, 'against': 1.0, 'babies': 1.0, 'because': 1.0, 'laying': 1.0, 'were': 1.0, 'cups': 1.0, 'to': 1.0, 'with': 2.0, 'buying': 1.0, '4': 1.0, 'i': 1.0, 'suction': 1.0, 'regret': 1.0}
Word element => {'messy': 1.0, 'less': 1.0, 'c': 1.0, 'baths': 2.0, 'sponge': 2.0, 'away': 1.0, 'wonderful': 1.0, 'life': 1.0, 'from': 1.0, 'allowed': 1.0, 'but': 1.0, 'pregnant': 1.0, 'beautifully': 1.0, 'lower': 1.0, 'during': 1.0, 'problem': 1.0, 'our': 3.0, 'bend': 2.0, 'as': 3.0, 'to': 4.0, 'once': 1.0, 'belly': 1.0, 'sure': 1.0, 'tub': 6.0, 'and': 8.0, 'over': 3.0, 'son': 2.0, 'saver': 1.0, 'befor': 2.0, 'post': 1.0, 'me': 1.0, 'my': 1.0, 'other': 2.0, 'absolutly': 1.0, 'we': 6.0, 'could': 2.0, 'a': 5.0, 'i': 8.0, 'two': 1.0, 'which': 1.0, 'made': 2.0, 'leaking': 1.0, 'was': 3.0, 'section': 1.0, 'still': 2.0, 'expecting': 1.0, 'others': 2.0, 'many': 1.0, 'intention': 1.0, 'second': 1.0, 'is': 1.0, 'bar': 1.0, 'buying': 1.0, 'now': 3.0, 'have': 4.0, 'born': 1.0, 'months': 1.0, 'healing': 1.0, 'than': 1.0, 'huge': 1.0, 'are': 1.0, 'first': 1.0, 'highly': 1.0, 'this': 6.0, 'with': 1.0, 'allows': 1.0, 'refrane': 1.0, 'it': 3.0, 'he': 1.0, 'got': 2.0, 'loved': 1.0, 'use': 3.0, 'fully': 1.0, 'soon': 1.0, 'there': 1.0, 'were': 1.0, 'because': 1.0, 'problems': 1.0, 'having': 1.0, 'worked': 2.0, 'sit': 1.0, 'on': 2.0, 'bath': 2.0, 'any': 1.0, 'your': 1.0, 'his': 1.0, 'until': 1.0, 'own': 1.0, 'recomend': 1.0, 'sling': 1.0, 'nanny': 1.0, '10': 1.0, 'for': 3.0, 'child': 2.0, 'product': 2.0, 'no': 3.0, 'extended': 1.0, '13': 1.0, 'years': 1.0, 'never': 1.0, 'seen': 1.0, 'you': 1.0, 'better': 1.0, 'discs': 1.0, 'also': 2.0, 'slipped': 1.0, 'in': 1.0, 'making': 1.0, 'back': 2.0, 'top': 2.0, 'had': 2.0, 'counter': 1.0, 'need': 1.0, 'or': 1.0, 'easier': 1.0, 'right': 1.0, 'table': 1.0, 'much': 2.0, 'the': 6.0, 'of': 1.0, 'longer': 1.0, 'time': 2.0, 'same': 1.0, 'green': 1.0, 'period': 1.0}
Word element => {'herself': 1.0, 'hasn': 1.0, 'with': 1.0, 'problem': 1.0, 'think': 1.0, 'on': 1.0, 'months': 2.0, 'her': 2.0, 'premature': 1.0, 'used': 1.0, 'down': 1.0, 'she': 4.0, 'it': 3.0, 'this': 1.0, 'only': 1.0, 'daughter': 1.0, 'hurt': 1.0, 'when': 1.0, 'sink': 1.0, 'at': 1.0, 'though': 1.0, 'sling': 3.0, 'where': 1.0, 'for': 2.0, 'i': 6.0, 'tub': 5.0, 'in': 2.0, 'have': 3.0, 'the': 8.0, 'a': 2.0, 't': 2.0, 'using': 1.0, 'like': 1.0, 'and': 4.0, 'couple': 1.0, 'now': 1.0, '5': 1.0, 'gave': 1.0, 'that': 1.0, 'been': 1.0, 'got': 1.0, 'enough': 1.0, 'great': 1.0, 'big': 1.0, 'stays': 1.0, 'arms': 1.0, 'is': 3.0, 'fall': 1.0, 'fine': 1.0, 'isn': 1.0, 'baths': 1.0, 'first': 1.0, 'plush': 1.0, 'supported': 1.0, 'against': 1.0}
Word element => {'stages': 1.0, 'early': 1.0, 'in': 1.0, 'buy': 1.0, 'will': 1.0, 'only': 1.0, 'consider': 1.0, 'negative': 1.0, 'highly': 1.0, 'ignore': 1.0, 'more': 1.0, 'he': 1.0, 'now': 1.0, 'please': 1.0, 'their': 1.0, 'that': 2.0, 'sink': 2.0, 'one': 1.0, 'sling': 1.0, 'it': 5.0, 'even': 1.0, 'wouldn': 1.0, 'shocked': 1.0, 'many': 1.0, 'for': 2.0, 'love': 1.0, 'product': 2.0, 'be': 2.0, 'particular': 1.0, 'i': 4.0, 'by': 1.0, 'm': 1.0, 'you': 2.0, 'when': 1.0, 'of': 1.0, 'small': 1.0, 'the': 5.0, 'on': 2.0, 'reviews': 2.0, 'child': 1.0, 'up': 1.0, 'anyway': 1.0, 'other': 2.0, 'want': 1.0, 'hello': 1.0, 'wasn': 1.0, 'made': 1.0, 'tub': 2.0, 's': 3.0, 't': 2.0, 'a': 1.0, 'buying': 1.0, 'complain': 1.0, 'convenient': 2.0, 'was': 1.0, 'all': 1.0, 'any': 1.0, 'to': 1.0, 'sitting': 1.0, 'most': 1.0, 'may': 1.0, 'my': 1.0, 'son': 1.0, 'needed': 1.0, 'this': 3.0, 'perfect': 1.0, 'too': 1.0, 'and': 2.0}
Word element => {'product': 1.0, 'recommend': 1.0, 'have': 1.0, 'we': 2.0, 'and': 2.0, 'problems': 1.0, 'son': 1.0, 'correctly': 1.0, 'been': 1.0, 'strongly': 1.0, 'hadn': 1.0, 'are': 1.0, 'leaked': 1.0, 'using': 1.0, 'for': 1.0, 'if': 1.0, 'got': 1.0, 't': 1.0, 'great': 1.0, 'a': 1.0, 'is': 2.0, 'tub': 1.0, 'shower': 1.0, 'it': 4.0, 'first': 1.0, 'this': 2.0, 'almost': 1.0, 'think': 1.0, 'i': 3.0, 'when': 1.0, 'still': 1.0, 'gift': 1.0, 'years': 1.0, 'about': 1.0, 'no': 1.0, 'two': 2.0, 'my': 2.0, 'ago': 1.0, 'had': 1.0, 'husband': 1.0, 'but': 1.0, 'put': 2.0, 'together': 2.0}
Word element => {'money': 1.0, 'worth': 1.0, 'any': 1.0, 'than': 1.0, 'perfect': 1.0, 'this': 4.0, 'once': 1.0, 'unable': 1.0, 'crib': 1.0, 'accomodating': 1.0, 'but': 2.0, 'space': 1.0, 'did': 1.0, 'agree': 1.0, 'instead': 1.0, 'there': 2.0, 'purchased': 1.0, 'had': 2.0, 'age': 1.0, 'another': 1.0, 'my': 3.0, 'his': 2.0, 'used': 1.0, 'glad': 1.0, 'leak': 1.0, 'haven': 1.0, 'given': 1.0, 'yet': 1.0, 'for': 4.0, 'bathroom': 1.0, 'stars': 1.0, 'was': 2.0, 'store': 2.0, 'overnight': 1.0, 'recommend': 1.0, 'son': 2.0, 'under': 1.0, 'tub': 7.0, 'it': 8.0, 'with': 3.0, 'first': 1.0, 'well': 1.0, 'i': 9.0, '4': 1.0, 't': 1.0, 'we': 1.0, 's': 1.0, 'large': 1.0, '3': 2.0, 'and': 5.0, 'one': 1.0, 'too': 1.0, 'to': 5.0, 'became': 1.0, 'in': 1.0, 'm': 1.0, 'a': 2.0, 'small': 1.0, 'have': 2.0, 'so': 5.0, 'simply': 1.0, 'friends': 1.0, '5': 1.0, 'does': 1.0, 'all': 1.0, 'other': 1.0, 'up': 1.0, 'comments': 1.0, 'at': 1.0, 'is': 4.0, 'completely': 1.0, 'problems': 1.0, 'that': 2.0, 'because': 1.0, 'easily': 1.0, 'months': 2.0, 'collapsible': 1.0, 'bulky': 1.0, 'extended': 1.0, 'let': 1.0, 'no': 1.0, 'not': 3.0, 'dry': 1.0, 'day': 1.0, 've': 1.0, 'turned': 1.0, 'out': 2.0, 'be': 1.0, 'much': 1.0, 'continue': 1.0, 'issues': 1.0, 'problem': 1.0, 'during': 1.0, 'though': 1.0, 'leaking': 1.0, 'good': 1.0, 'sit': 1.0, 'seal': 1.0, 'will': 1.0, 'of': 2.0, 'the': 6.0, 'longer': 1.0}
Word element => {'product': 1.0, 'recommend': 1.0, 'not': 1.0, 'kitchen': 1.0, 'in': 1.0, 'baths': 1.0, 'would': 1.0, 'him': 1.0, 'give': 1.0, 'box': 1.0, 'away': 1.0, 'threw': 1.0, 'but': 1.0, 'better': 1.0, 'the': 3.0, 'there': 1.0, 'of': 1.0, 'very': 1.0, 'as': 1.0, 'i': 4.0, 'one': 1.0, 'gift': 1.0, 'many': 1.0, 'realized': 1.0, 'leaking': 1.0, 'out': 1.0, 'tubs': 1.0, 'made': 1.0, 'tub': 1.0, 'now': 1.0, 'was': 2.0, 'wanted': 1.0, 'to': 1.0, 'received': 1.0, 'we': 3.0, 'a': 1.0, 'return': 1.0, 'purchase': 1.0, 'pleased': 1.0, 'sink': 1.0, 'that': 1.0, 'until': 1.0, 'this': 2.0, 'shower': 1.0, 'with': 1.0, 'it': 3.0}
Word element => {'nearly': 1.0, 'over': 1.0, 'up': 1.0, 'away': 1.0, 'perfect': 1.0, 'this': 2.0, 'impossible': 1.0, 'woman': 1.0, 'difficult': 2.0, 'storage': 1.0, 'strong': 1.0, 'on': 1.0, 'bath': 1.0, 'put': 1.0, 'possible': 1.0, 'though': 1.0, 'available': 1.0, 'even': 1.0, 'for': 2.0, 'to': 6.0, 'our': 1.0, 'least': 1.0, 'as': 1.0, 'collapse': 1.0, 'easily': 1.0, 'am': 1.0, 'unless': 1.0, 'when': 1.0, 'like': 1.0, 'place': 1.0, 'expand': 1.0, 'a': 3.0, 'small': 1.0, 'have': 1.0, 'cabinet': 2.0, 'not': 1.0, 'site': 1.0, 'solution': 1.0, 'looked': 1.0, 'in': 3.0, 'be': 1.0, 'bathtub': 3.0, 'areas': 1.0, 'i': 4.0, 'one': 1.0, 'uncomfortable': 1.0, 'house': 1.0, 'space': 1.0, 'and': 4.0, 'bottom': 2.0, 'collapsed': 1.0, 'fit': 1.0, 'fairly': 1.0, 'are': 1.0, 'bathroom': 2.0, 'entire': 1.0, 'my': 1.0, 'would': 2.0, 'tight': 1.0, 'little': 1.0, 'with': 1.0, 'only': 1.0, 'living': 1.0, 'thought': 1.0, 'it': 5.0, 'tub': 4.0, 'leak': 1.0, 'buttons': 1.0, 'still': 1.0, 'if': 2.0, 'correctly': 1.0, 'pressed': 1.0, 'tabs': 2.0, 'depress': 1.0, 'husband': 1.0, 'is': 5.0, 'say': 1.0, 'will': 1.0, 'disassemble': 1.0, 'directly': 1.0, 'use': 1.0, 'hunching': 1.0, 'taking': 1.0, 'edge': 1.0, 'the': 14.0, 'of': 2.0, 'monster': 1.0, 'almost': 1.0, 'an': 1.0, 'found': 1.0, 'however': 1.0, 'better': 1.0, 'assemble': 1.0, 'than': 1.0, 'into': 1.0, 'non': 1.0, 'collapsible': 1.0, 'out': 1.0}
Word element => {'her': 1.0, 'about': 1.0, 'was': 1.0, 'i': 1.0, 'gift': 1.0, 'bought': 1.0, 'baby': 1.0, 'this': 1.0, 'for': 1.0, 'a': 1.0, 'shower': 1.0, 'the': 1.0, 'enthusiastic': 1.0, 'mother': 1.0, 'to': 1.0, 'be': 1.0}
Word element => {'thing': 1.0, 'hammock': 1.0, 'sling': 1.0, 'never': 1.0, 'infant': 1.0, 'want': 1.0, 'would': 1.0, 'sure': 1.0, 'am': 1.0, 'is': 2.0, 'also': 1.0, 'tipping': 1.0, 'this': 4.0, 'get': 2.0, 'tub': 7.0, 'know': 1.0, 'not': 2.0, 'suctions': 1.0, 'from': 1.0, 'bath': 3.0, 'on': 2.0, 'then': 1.0, 'worry': 1.0, 'eventually': 1.0, 'didn': 1.0, 'babies': 1.0, 'have': 2.0, 'hard': 1.0, 'over': 1.0, 'use': 1.0, 'anyway': 1.0, 'its': 1.0, 'do': 1.0, 'put': 2.0, 'much': 1.0, 'idea': 2.0, 'sit': 2.0, 'when': 2.0, 'out': 1.0, 'keeping': 1.0, 'was': 2.0, 'doesn': 1.0, 'to': 7.0, 'as': 1.0, 'in': 4.0, 'seat': 2.0, 'our': 1.0, 'older': 1.0, 'wonderful': 1.0, 'small': 1.0, 'a': 9.0, 't': 2.0, 'i': 10.0, 'son': 2.0, 'play': 1.0, 'about': 1.0, 'baby': 1.0, 'them': 1.0, 'great': 1.0, 'works': 1.0, 'without': 1.0, 'transition': 1.0, 'adult': 2.0, 'bought': 1.0, 'my': 2.0, 'entire': 1.0, 'scraping': 1.0, 'regular': 1.0, 'knees': 1.0, 'starting': 1.0, 'it': 8.0, 'him': 3.0, 'within': 1.0, 'bathtub': 1.0, 'working': 1.0, 'first': 1.0, 'seats': 2.0, 'just': 2.0, 'clip': 1.0, 'used': 2.0, 'love': 1.0, 'he': 1.0, 'clips': 1.0, 'so': 2.0, 'can': 1.0, 'but': 1.0, 'with': 1.0, 'around': 1.0, 'his': 1.0, 'toys': 1.0, 'everything': 1.0, 'and': 3.0, 'arms': 1.0, 'think': 1.0, 'better': 1.0, 'matter': 1.0, 'reach': 1.0, 'than': 1.0, 'does': 1.0, 'filling': 1.0, 'an': 1.0, 'for': 3.0, 'such': 1.0, 'little': 2.0, 'the': 6.0, 'of': 2.0, 'person': 1.0, 'leak': 1.0, 'good': 1.0, 'they': 1.0}
Word element => {'ours': 1.0, 'getting': 1.0, 'of': 1.0, 'like': 1.0, 'headaches': 1.0, 'elsewhere': 1.0, 'leaked': 1.0, 'still': 1.0, 'was': 1.0, 'one': 2.0, 'locked': 1.0, '25': 1.0, 'snapped': 1.0, 'wasn': 1.0, 'that': 2.0, 'mentioned': 1.0, 'where': 1.0, 'won': 1.0, 'well': 1.0, 'review': 1.0, 'i': 1.0, 'maybe': 1.0, 'does': 1.0, 'aren': 1.0, 'but': 1.0, 'haven': 1.0, 'there': 1.0, 'leak': 2.0, 'trash': 1.0, 'is': 4.0, 'many': 1.0, 'people': 1.0, 'really': 1.0, 'look': 2.0, 'leaks': 1.0, 'had': 2.0, 'the': 9.0, 'have': 2.0, 'this': 2.0, 'looks': 1.0, 'it': 8.0, 'tub': 3.0, 'tubs': 1.0, 'at': 1.0, 'experiences': 1.0, 'some': 1.0, 'not': 1.0, 'just': 2.0, 'affordable': 1.0, 'how': 1.0, 'honestly': 1.0, 'bathtub': 2.0, 'if': 2.0, 'better': 1.0, 'awful': 1.0, 'good': 1.0, 'are': 1.0, 'on': 2.0, 'or': 1.0, 'worth': 2.0, 'everywhere': 1.0, 'market': 1.0, 'and': 1.0, 'too': 1.0, 'sling': 1.0, 'you': 1.0, 'someone': 1.0, 'seen': 1.0, 'alright': 1.0, 'would': 1.0, 'a': 1.0, 't': 5.0, 'we': 1.0, 'use': 1.0, 'regular': 1.0, 'itself': 1.0, 'in': 3.0, 'chance': 1.0, 'here': 1.0, 'be': 1.0, 'nice': 1.0, 'even': 1.0, 'didn': 1.0}
Word element => {'new': 1.0, 'trully': 1.0, 'cotton': 1.0, 'a': 2.0, 'ring': 1.0, 'happy': 1.0, 'you': 1.0, 'am': 1.0, 'bathtub': 1.0, 'because': 1.0, 'it': 4.0, 'looked': 1.0, 'clean': 1.0, 'good': 1.0, 'work': 1.0, 'but': 2.0, 'back': 2.0, 'my': 1.0, 'fact': 1.0, 'registry': 1.0, 'greatest': 1.0, 'place': 1.0, 'the': 9.0, 'great': 1.0, '1': 1.0, 'moms': 1.0, 'and': 1.0, 'bath': 1.0, 'think': 1.0, 'put': 2.0, 'your': 1.0, 'on': 1.0, 'say': 1.0, 'is': 4.0, 'in': 1.0, 'wash': 1.0, 'also': 1.0, '4': 1.0, 'i': 5.0, 'originally': 1.0, 'only': 1.0, 'works': 1.0, 'his': 1.0, 'wonderfully': 1.0, 'insert': 1.0, 'for': 2.0, 'where': 1.0, 'love': 1.0, 'that': 3.0, 'this': 1.0, 'allows': 1.0, 'baby': 2.0, 'lay': 1.0, 'little': 1.0, 'access': 1.0, 'like': 1.0, 'difficult': 1.0, 'changes': 2.0, 'still': 1.0, 'must': 1.0, 'have': 2.0, 'swabs': 1.0, 'easy': 1.0, 'seat': 1.0, 'to': 4.0, 'as': 1.0, 'drawback': 1.0}
Word element => {'helps': 1.0, 'terrific': 1.0, 'an': 1.0, 'for': 1.0, 'fix': 1.0, '5': 1.0, 'hope': 1.0, 'by': 1.0, 'perfectly': 1.0, 'boot': 1.0, 'issue': 1.0, 'leak': 1.0, 'was': 1.0, 'resolve': 1.0, 'did': 1.0, 'that': 1.0, 'loves': 1.0, 'and': 2.0, 'now': 1.0, 'great': 1.0, 'feel': 1.0, 'adjustable': 1.0, 'reviews': 1.0, 'they': 1.0, 'suppose': 1.0, 'has': 1.0, 'isn': 1.0, 'different': 1.0, 'gets': 1.0, 'under': 2.0, 'bit': 1.0, 'because': 3.0, 'little': 1.0, 'otherwise': 1.0, 'catches': 1.0, 'i': 6.0, 'this': 4.0, 'she': 1.0, 'it': 5.0, 'reading': 1.0, 'definately': 1.0, 'the': 7.0, 'without': 1.0, 'put': 1.0, 'bath': 1.0, 'make': 1.0, 'any': 1.0, 'to': 4.0, 'tub': 4.0, 'what': 1.0, 'leaks': 1.0, 'is': 1.0, 'in': 1.0, 'try': 1.0, 'much': 1.0, 'end': 1.0, 'went': 1.0, 'fits': 1.0, 'my': 1.0, 'back': 1.0, 'ring': 1.0, 'better': 1.0, '9': 1.0, 'leaked': 1.0, 'knowing': 1.0, 'baby': 1.0, 't': 1.0, 'a': 3.0, 'going': 1.0, 'water': 2.0, 'daughter': 1.0, 'slip': 1.0, 'tray': 1.0, 'bought': 2.0, 'one': 1.0, 'months': 1.0}
Word element => {'ours': 1.0, 'up': 1.0, 'box': 1.0, 'keep': 1.0, 'try': 1.0, 'buying': 1.0, 'with': 1.0, 'throwing': 1.0, 'anyone': 1.0, 'trouble': 1.0, 'push': 1.0, 'or': 1.0, 'size': 1.0, 'took': 1.0, 'effort': 1.0, 'ended': 1.0, 'amount': 1.0, 'bath': 1.0, 'lastly': 1.0, 'out': 1.0, 'figure': 1.0, 'couldn': 1.0, 'together': 1.0, 'pull': 1.0, 'water': 1.0, 'use': 1.0, 'way': 1.0, 'there': 1.0, 'want': 1.0, 'if': 2.0, 'and': 2.0, 'relatives': 1.0, 'other': 1.0, 'sink': 2.0, 'needs': 1.0, 'using': 1.0, 'sling': 1.0, 'for': 2.0, 'is': 1.0, 'more': 2.0, 'tried': 3.0, 'old': 1.0, 'in': 2.0, 'itself': 1.0, 'several': 1.0, 'about': 2.0, 'give': 1.0, 'wrong': 1.0, 'having': 1.0, 'than': 2.0, 'it': 9.0, 'full': 1.0, 'this': 2.0, 'excited': 1.0, 'he': 1.0, 'of': 3.0, 'really': 1.0, 'fullfil': 1.0, 'tub': 5.0, 'leaking': 1.0, 'was': 5.0, 'decide': 1.0, 'husband': 1.0, 'new': 1.0, 'would': 3.0, 't': 1.0, 'a': 3.0, 'go': 1.0, 'we': 3.0, 'you': 1.0, 'when': 1.0, 'my': 2.0, 'storage': 1.0, 'son': 1.0, 'our': 2.0, 'all': 1.0, 'to': 7.0, 'as': 3.0, 'mess': 1.0, 'i': 3.0, 'thinking': 1.0, '4': 1.0, 'away': 1.0, 'now': 1.0, 'weeks': 1.0, 'work': 1.0, 'slide': 1.0, 'right': 1.0, 'the': 6.0, 'without': 2.0, 'off': 1.0, 'just': 2.0, 'well': 1.0}
Word element => {'hogan': 1.0, 'snaps': 1.0, 'husband': 1.0, 'leak': 1.0, 'will': 1.0, 'of': 1.0, 'broken': 1.0, 'if': 1.0, 'self': 1.0, 'by': 1.0, 'use': 1.0, 'that': 1.0, 'angle': 1.0, 'waste': 1.0, 'mesh': 1.0, 'slanted': 1.0, 'part': 1.0, 'best': 1.0, 'probably': 1.0, 'what': 1.0, 'like': 1.0, 'know': 1.0, 'real': 1.0, 'hulk': 1.0, 'for': 1.0, 'good': 1.0, 'in': 3.0, 'don': 1.0, 'up': 1.0, 'damage': 1.0, 'complaints': 1.0, 'nail': 1.0, 'are': 1.0, 'i': 2.0, 'permanant': 1.0, 'haven': 1.0, 'upside': 1.0, 'still': 1.0, 'draining': 1.0, 'and': 5.0, 'thumb': 1.0, 'your': 3.0, 'make': 1.0, 'impressed': 1.0, '3': 2.0, 'my': 1.0, 'one': 1.0, 'bought': 1.0, 'you': 2.0, 'am': 1.0, 'fingernails': 1.0, 'this': 2.0, 'it': 5.0, 'get': 1.0, 'tub': 5.0, 'moist': 1.0, 'at': 1.0, 'not': 1.0, 'top': 1.0, 'spots': 1.0, 'trap': 1.0, 'despite': 1.0, 'thing': 2.0, 'together': 1.0, 'the': 5.0, 'hanging': 1.0, 'mold': 1.0, 'down': 1.0, 'letting': 1.0, 'infant': 1.0, 'dry': 1.0, 'until': 1.0, 'big': 1.0, '1': 1.0, 'stays': 1.0, 'more': 1.0, 'is': 2.0, 't': 2.0, 's': 1.0, 'a': 2.0, 'putting': 1.0, 'here': 1.0, 'suction': 1.0, 'our': 1.0, 'seat': 1.0, 'to': 1.0, 'all': 2.0, 'cups': 1.0, 'money': 1.0, '2': 1.0, 'work': 1.0, 'very': 1.0}
Word element => {'buy': 1.0, 'acceptable': 1.0, 'quality': 2.0, 'plastic': 1.0, 'although': 1.0, 'arrives': 1.0, 'new': 1.0, 'friendly': 1.0, 'away': 1.0, 'uneven': 1.0, 'give': 1.0, 's': 3.0, 'a': 4.0, 'could': 1.0, 't': 4.0, 'clipped': 1.0, 'be': 3.0, 'while': 1.0, 'part': 1.0, 'moveable': 1.0, 'does': 1.0, 'because': 1.0, 'between': 1.0, 'us': 1.0, 'also': 2.0, 'm': 2.0, 'in': 3.0, 'if': 3.0, 'want': 1.0, 'own': 1.0, 'an': 1.0, 'and': 3.0, 'up': 2.0, 'don': 4.0, 'set': 2.0, 'given': 1.0, 'fingers': 1.0, 'had': 1.0, 'to': 6.0, 'as': 3.0, 'fooled': 1.0, 'itself': 1.0, 'not': 3.0, 'skin': 1.0, 'stuck': 1.0, 'ideal': 1.0, 'tub': 8.0, 'sure': 1.0, 'just': 1.0, 'poor': 1.0, 'fullsize': 1.0, 'i': 8.0, 'hard': 1.0, 'open': 1.0, 'very': 1.0, 'newborns': 2.0, 'lousy': 1.0, 'claimed': 1.0, 'it': 10.0, 'few': 1.0, 'this': 6.0, 'try': 1.0, 'almost': 1.0, 'times': 1.0, 'when': 2.0, 'choice': 1.0, 'you': 2.0, 'am': 1.0, 'moves': 1.0, 'of': 4.0, 'the': 14.0, 'my': 2.0, 'may': 2.0, 'trying': 1.0, 'another': 1.0, 'instructions': 1.0, 'use': 1.0, 'were': 1.0, 'scratch': 1.0, 'baby': 2.0, 'flimsy': 1.0, 'since': 1.0, 'edge': 2.0, 'snap': 1.0, 'on': 1.0, 'better': 1.0, 'think': 2.0, 'bath': 1.0, 'simply': 1.0, 'base': 1.0, 'even': 1.0, 'slide': 4.0, 'overall': 1.0, 'have': 2.0, 'china': 1.0, 'fabric': 1.0, 'for': 2.0, 'product': 1.0, 'toddler': 1.0, 'has': 1.0, 'is': 7.0, 'at': 2.0, 'sits': 1.0, 'ring': 1.0, 'suitable': 1.0, 'with': 1.0, 'made': 2.0, 'gift': 1.0, 'thinking': 1.0, 'getting': 1.0}
Word element => {'options': 1.0, 'better': 1.0, 'much': 1.0, 'are': 1.0, 'there': 2.0, 'bother': 1.0, 'money': 1.0, 'of': 1.0, 'waste': 1.0, 'is': 1.0, 'new': 1.0, 'basement': 1.0, 'sit': 1.0, 'when': 1.0, 'digging': 1.0, 'plastic': 1.0, 'be': 1.0, 'seem': 1.0, 'design': 1.0, 'sling': 1.0, 'if': 1.0, 'product': 1.0, 'where': 1.0, 'for': 1.0, 'with': 1.0, 'buying': 1.0, 'had': 1.0, 'out': 1.0, 'wasn': 1.0, 'soak': 1.0, 'the': 11.0, 'read': 1.0, 'logical': 1.0, 'time': 1.0, 'who': 1.0, 'in': 4.0, 'also': 1.0, 'me': 1.0, 'tough': 1.0, 'and': 4.0, 'using': 1.0, 'before': 1.0, 'used': 1.0, 'this': 3.0, 'first': 1.0, 'she': 1.0, 'it': 5.0, 'after': 1.0, 'these': 2.0, 'wishes': 1.0, 'doesn': 1.0, 'was': 1.0, 'leaking': 1.0, 'tub': 5.0, 'towel': 1.0, 'they': 2.0, 'group': 1.0, 'reviews': 1.0, 'leaked': 1.0, 'collecting': 1.0, 'i': 2.0, 'two': 1.0, 'instructions': 1.0, 'every': 1.0, 'bits': 1.0, 'followed': 1.0, 'baby': 1.0, 'letter': 1.0, 'into': 1.0, 'gave': 2.0, 'don': 1.0, 'dust': 1.0, 'up': 3.0, 'on': 1.0, 'put': 2.0, 'bought': 1.0, 'months': 1.0, 'count': 1.0, 'uncomfortable': 1.0, 's': 1.0, 't': 3.0, 'we': 3.0, 'a': 3.0, 'our': 1.0, 'to': 3.0, 'all': 2.0, 'daughter': 1.0, 'quit': 1.0, 'water': 1.0}
Word element => {'hold': 1.0, 'didn': 1.0, 'gasket': 1.0, 'and': 1.0, 'engage': 1.0, 'impossible': 1.0, 'but': 1.0, 'idea': 1.0, 'almost': 1.0, 'good': 1.0, 'time': 1.0, 'tub': 2.0, 'tabs': 1.0, 'disappointment': 1.0, 'leaked': 1.0, 'big': 1.0, 't': 1.0, 'the': 4.0, 'locking': 1.0, 'a': 3.0, 'first': 1.0, 'it': 3.0, 'this': 1.0, 'used': 1.0, 'ended': 1.0, 'to': 1.0, 'was': 2.0, 'buying': 1.0, 'up': 2.0, 'sounded': 1.0, 'like': 1.0, 'one': 1.0, 'piece': 2.0, 'two': 1.0, 'we': 2.0, 'simple': 1.0, 'design': 1.0}
Word element => {'slipping': 1.0, 'enough': 1.0, 'stable': 1.0, 'be': 1.0, 'll': 1.0, 'need': 1.0, 'or': 1.0, 'also': 1.0, 'blast': 1.0, 'has': 1.0, 'crooks': 1.0, 'gets': 1.0, 'find': 1.0, 'bathe': 1.0, 'want': 1.0, 'don': 1.0, 'if': 2.0, '6': 1.0, 'they': 1.0, 'around': 2.0, 'skidding': 1.0, 'without': 2.0, 'sit': 2.0, 'so': 1.0, 'can': 1.0, 'thingies': 1.0, 'one': 1.0, 'bottomed': 1.0, 'you': 1.0, 'skid': 1.0, 'takes': 1.0, 'month': 2.0, 'recline': 1.0, 'it': 3.0, 'using': 1.0, 'bathtub': 1.0, 'which': 1.0, 'gift': 1.0, 'bathes': 1.0, '3': 1.0, 'much': 1.0, 'put': 1.0, 'bath': 2.0, 'kitchen': 1.0, 'in': 6.0, 'mommy': 3.0, 'age': 1.0, 'for': 6.0, 'sling': 3.0, 'about': 1.0, 'she': 4.0, 'baby': 8.0, 'before': 1.0, 'receive': 1.0, 'a': 6.0, 'go': 1.0, 'cleaner': 1.0, 's': 2.0, 'worked': 2.0, 'as': 2.0, 'to': 7.0, 'our': 4.0, 'and': 10.0, 'tub': 4.0, 'tried': 1.0, 'scrapped': 1.0, 't': 2.0, 'cost': 1.0, 'opt': 1.0, 'altogether': 1.0, 'have': 2.0, 'however': 1.0, 'now': 1.0, 'weeks': 2.0, 'was': 4.0, 'had': 2.0, 'bar': 1.0, 'that': 2.0, 'thrilled': 1.0, 'by': 1.0, 'this': 3.0, 'few': 1.0, 'sink': 1.0, 'we': 7.0, 'then': 2.0, 'moving': 1.0, 'were': 1.0, 'registry': 1.0, 'great': 2.0, 'with': 6.0, 'crevices': 1.0, 'foam': 1.0, 'got': 1.0, 'daughter': 1.0, 'is': 1.0, 'on': 3.0, 'long': 1.0, 'her': 6.0, 'support': 1.0, 'leaks': 1.0, 'clean': 1.0, 'time': 1.0, '4': 1.0, 'inexpensive': 1.0, 'old': 1.0, 'non': 1.0, 'trouble': 1.0, 'moved': 1.0, 'months': 2.0, 'legs': 1.0, 'feet': 1.0, 'newborn': 1.0, 'won': 1.0, 'knees': 1.0, 'onto': 1.0, 'sitting': 1.0, 'banging': 1.0, 'but': 1.0, 'position': 2.0, 'the': 11.0, 'of': 4.0, 'those': 1.0, '1st': 1.0, 'inside': 1.0, 'impossible': 1.0, 'never': 1.0, 'some': 1.0, 'front': 1.0, 'complained': 1.0, 'overall': 1.0, 'born': 1.0, 'skip': 1.0, 'safety': 1.0, 'size': 1.0, 'all': 2.0, 'an': 1.0, 'first': 1.0, 'your': 2.0, 'according': 1.0}
Word element => {'return': 1.0, 'still': 1.0, 'i': 1.0, 'water': 1.0, 'stuck': 1.0, 'try': 1.0, 'then': 1.0, 'sides': 1.0, 'everywhere': 1.0, 'on': 1.0, 'but': 1.0, 'leaked': 1.0, 'from': 1.0, 'counter': 1.0, 'it': 5.0, 'and': 3.0, 'twice': 1.0, 'times': 1.0, 'takes': 1.0, 'terrible': 1.0, 'going': 1.0, 'm': 1.0, 'cups': 1.0, 'where': 1.0, 'we': 1.0, 'mistakenly': 1.0, 'asap': 1.0, 'suction': 1.0, 'center': 1.0, 'leaky': 1.0, 'tub': 1.0, 'to': 5.0, 'not': 1.0, 'the': 4.0, 'went': 1.0, 'push': 1.0, 'both': 1.0, 'used': 1.0, 'muscles': 1.0, 'down': 1.0, 'properly': 1.0, 'snap': 1.0}
Word element => {'definitely': 1.0, '20': 1.0, 'overall': 1.0, 'lug': 1.0, 'want': 1.0, 'not': 1.0, 'home': 2.0, 'at': 2.0, 'so': 1.0, 'bulky': 1.0, 'had': 1.0, 'way': 1.0, 'sit': 1.0, 'enough': 2.0, 'old': 1.0, 'once': 1.0, 'guess': 1.0, 'already': 1.0, 'other': 1.0, 'awkwardly': 1.0, '24': 1.0, 'because': 1.0, 'though': 1.0, 'ring': 1.0, 'sling': 1.0, 'in': 5.0, 'like': 1.0, 'which': 1.0, 'you': 5.0, 'idea': 1.0, 'newborns': 1.0, 'get': 1.0, 'folds': 1.0, 'tub': 3.0, 'i': 5.0, 'money': 1.0, 'but': 1.0, 'work': 1.0, 'can': 3.0, 'travel': 1.0, 'use': 2.0, 'wonderful': 1.0, 'it': 11.0, 'this': 2.0, 'with': 5.0, 'do': 1.0, 'only': 3.0, 'the': 10.0, 'liked': 1.0, 'ones': 1.0, 's': 6.0, 't': 2.0, 'fit': 1.0, 'for': 2.0, 'product': 1.0, 'around': 1.0, 'is': 5.0, 'really': 3.0, 'worth': 1.0, 'behind': 1.0, 'or': 1.0, 'compactly': 1.0, 'sink': 1.0, 'that': 2.0, 'inches': 1.0, 'little': 1.0, 'problem': 2.0, 'up': 1.0, 'child': 2.0, 'don': 1.0, 'see': 1.0, 'he': 3.0, 'how': 1.0, 'will': 1.0, 'to': 4.0, 'grow': 1.0, 'may': 1.0, 'neat': 1.0, 'fact': 1.0, 'my': 1.0, 'son': 1.0, 'your': 1.0, 'grows': 1.0, '3': 1.0, 'months': 1.0, 'now': 1.0, 'too': 1.0, 'starting': 1.0, 'and': 2.0}
Word element => {'ever': 1.0, 'problems': 1.0, 'no': 2.0, 'next': 1.0, 'dry': 1.0, 'side': 1.0, 'placed': 1.0, 'up': 1.0, 'lifted': 1.0, 'snapped': 1.0, 'locks': 1.0, 'open': 1.0, 'of': 1.0, 'once': 1.0, 'sink': 1.0, 'graduated': 1.0, 'me': 1.0, 'and': 4.0, '1': 1.0, 'option': 1.0, 'for': 2.0, 'with': 1.0, 'suction': 1.0, 'be': 1.0, 'much': 1.0, 'only': 1.0, 'tiny': 1.0, 'enjoys': 1.0, 'cups': 1.0, 'all': 1.0, 'to': 5.0, 'was': 5.0, 'tub': 6.0, 'place': 1.0, 'the': 10.0, 'my': 1.0, 'this': 3.0, 'perfect': 1.0, 'daughter': 1.0, 'when': 1.0, 'born': 1.0, 'sit': 1.0, 'in': 4.0, 'itself': 1.0, 'against': 1.0, 'so': 2.0, 'it': 1.0, 'she': 5.0, 'needed': 1.0, 'by': 1.0, 'just': 2.0, '4lbs': 1.0, 'we': 1.0, 'weighed': 1.0, 'a': 1.0, 'bath': 3.0, 'enjoyed': 1.0, 'every': 1.0, 'then': 2.0, 'leaks': 1.0, 'what': 1.0, 'her': 2.0, 'saved': 1.0, 'i': 1.0, '4': 1.0, 'very': 1.0, 'sling': 2.0, 'ring': 1.0, 'help': 1.0, 'still': 1.0}
Word element => {'great': 1.0, 'than': 1.0, 'of': 1.0, 'size': 1.0, 'fold': 1.0, 'storage': 1.0, 'price': 1.0, 'down': 1.0, 'reasonable': 1.0, 'finally': 1.0, 'this': 1.0, 'it': 6.0, 'only': 1.0, 'i': 2.0, 'bathtub': 1.0, 'product': 1.0, 'for': 2.0, 'love': 1.0, 'in': 3.0, 'the': 7.0, 'a': 1.0, 'we': 2.0, 't': 1.0, 'thought': 1.0, 'that': 3.0, 'sling': 1.0, 'ring': 1.0, 'very': 3.0, 'bought': 1.0, 'with': 2.0, 'mind': 1.0, 'built': 1.0, 'helpful': 1.0, 'other': 1.0, 'care': 1.0, 'compacts': 1.0, 'extended': 1.0, 'came': 1.0, 'was': 3.0, 'to': 1.0, 'and': 2.0, 'too': 1.0, 'thing': 1.0, 'didn': 1.0, 'is': 2.0, 'tub': 2.0, 'easy': 2.0, 'left': 1.0, 'not': 1.0, 'just': 1.0, 'snap': 1.0, 'together': 1.0}
Word element => {'years': 1.0, 'been': 1.0, 'that': 1.0, 'stick': 1.0, 'terrible': 1.0, 'fill': 1.0, 'sprayer': 1.0, 'use': 1.0, 'pull': 1.0, 'floor': 1.0, 'it': 3.0, 'counter': 1.0, 'collapse': 1.0, 'tubs': 1.0, 'amp': 1.0, 'thing': 1.0, 'have': 3.0, 'not': 1.0, 'carrying': 1.0, 'would': 1.0, 'i': 3.0, 'expanding': 1.0, 'when': 2.0, 'for': 2.0, 'all': 1.0, 'to': 6.0, 'so': 1.0, 'time': 1.0, 'want': 1.0, 'every': 1.0, 'really': 1.0, 'is': 1.0, 'had': 1.0, 'leaks': 1.0, 'tub': 3.0, 'open': 2.0, 'near': 1.0, 'stays': 1.0, 'big': 1.0, 'bath': 1.0, 'extend': 1.0, 'put': 1.0, 'regular': 1.0, 'in': 1.0, 'job': 1.0, 'the': 10.0, 'a': 2.0, 't': 1.0, 'sink': 2.0, 'over': 2.0, 'don': 1.0, 'much': 1.0, 'space': 1.0, 'doing': 1.0, 'this': 2.0, 'full': 1.0, 'too': 2.0, 'tough': 1.0, 'and': 3.0, 'across': 1.0, 'kitchen': 1.0, 'table': 2.0}
Word element => {'old': 1.0, 'almost': 1.0, 'daughter': 1.0, 'way': 1.0, 'slidey': 1.0, 'like': 1.0, 'didn': 1.0, 'bottom': 1.0, 'just': 1.0, 'being': 1.0, 'gets': 1.0, 'out': 1.0, 'rinse': 1.0, 'fill': 1.0, 'really': 1.0, 'is': 1.0, 'use': 1.0, 'why': 1.0, 'bathtub': 2.0, 'real': 2.0, 'up': 1.0, 'child': 1.0, 'over': 2.0, 'buy': 1.0, 'definitely': 1.0, 'desire': 1.0, 'empty': 1.0, 'end': 1.0, 'your': 1.0, 'on': 1.0, 'put': 1.0, 'd': 1.0, 'c': 1.0, 'no': 2.0, 'sink': 2.0, 'that': 2.0, 'this': 2.0, 'first': 1.0, 'she': 1.0, 'it': 7.0, 'was': 4.0, 'outside': 1.0, 'to': 4.0, 'had': 1.0, '13': 1.0, 'since': 1.0, 'the': 16.0, 'until': 1.0, 'big': 1.0, 'great': 1.0, 'again': 1.0, 'when': 1.0, 'countertop': 1.0, 'fantastic': 1.0, 'easy': 1.0, 'tub': 5.0, 'in': 7.0, 'flat': 1.0, 'for': 3.0, 'months': 2.0, 'one': 2.0, 'plus': 1.0, 'sling': 3.0, 'us': 1.0, 'set': 1.0, 'used': 4.0, 'of': 3.0, 't': 1.0, 'a': 4.0, 'we': 4.0, 'other': 1.0, 'and': 4.0, 'photos': 1.0, 'me': 1.0, 'after': 1.0, 'mostly': 1.0, 'section': 1.0, 'so': 1.0, 'bathe': 1.0, 'baby': 3.0, 'prop': 1.0, 'two': 1.0, 'i': 2.0, 'my': 2.0, 'bathroom': 1.0, 'bend': 1.0, 'show': 1.0, 'side': 1.0}
Word element => {'at': 1.0, 'good': 1.0, 'not': 1.0, 'they': 1.0, 'my': 1.0, 'stuck': 1.0, 'suction': 1.0, 'it': 1.0, 'put': 1.0, 'an': 1.0, 'gush': 1.0, 'back': 1.0, 'cleaned': 1.0, 'week': 1.0, 'so': 2.0, 'or': 1.0, 'second': 1.0, 'if': 1.0, 'leak': 1.0, 'bottom': 1.0, 'the': 6.0, 'all': 1.0, 'cups': 1.0, 'sleep': 1.0, 'to': 4.0, 'how': 1.0, 'slow': 1.0, 'leaks': 1.0, 'had': 1.0, 'odor': 1.0, 'will': 1.0, 'hour': 1.0, 'you': 1.0, 'left': 2.0, 'tub': 4.0, 'going': 1.0, 'a': 5.0, 'funny': 1.0, 'very': 1.0, 'sometimes': 2.0, 'for': 1.0, 'sling': 1.0, 'in': 2.0, 'and': 4.0, 'marks': 1.0, 'getting': 1.0, 'hard': 1.0, 'while': 1.0, 'from': 2.0, 'matter': 1.0, 'baby': 1.0, 'come': 1.0, 'find': 1.0, 'empty': 1.0, 'by': 1.0, 'wet': 2.0, 'floor': 1.0, 'support': 1.0, 'no': 1.0, 'i': 1.0}
Word element => {'else': 1.0, 'recommend': 1.0, 'wouldn': 1.0, 'only': 1.0, 'item': 1.0, 'an': 1.0, 'spend': 1.0, 'refuse': 1.0, 'because': 1.0, 'this': 1.0, 'use': 1.0, 'again': 1.0, 'bruised': 1.0, 'getting': 1.0, 'from': 1.0, 'anyone': 1.0, 'him': 1.0, 'keep': 1.0, 'over': 1.0, 'used': 1.0, 'washcloth': 1.0, 'any': 1.0, 'to': 4.0, 'bruise': 1.0, 'tub': 1.0, 'area': 1.0, 'left': 1.0, 'snap': 1.0, 'back': 2.0, 'toddler': 1.0, 'it': 3.0, 'with': 1.0, 'he': 1.0, 'stay': 1.0, 'won': 1.0, 'i': 6.0, 'and': 1.0, 'too': 1.0, 'before': 1.0, 'slippery': 1.0, 'down': 1.0, 'his': 2.0, 'place': 2.0, 'the': 7.0, 'money': 1.0, 'but': 2.0, '2': 1.0, 'have': 3.0, 'snaps': 1.0, 'problem': 2.0, 'start': 1.0, 't': 2.0, 'a': 4.0, 'we': 1.0, 'months': 1.0, 'one': 1.0, 'on': 2.0, 'bath': 1.0, 'slides': 1.0, 'in': 2.0, 'problems': 1.0, 'still': 1.0, 'son': 1.0, 'sling': 3.0, 'ring': 1.0, 'sliding': 1.0, 'starts': 1.0, 'my': 2.0, 'second': 1.0, 'more': 1.0, 'around': 1.0, 'is': 3.0, 'into': 1.0, 'that': 4.0, 'hit': 1.0, 'few': 1.0, 'just': 1.0, 'slid': 1.0, 'time': 1.0, 'so': 1.0, 'quickly': 1.0, 'for': 1.0, 'actually': 1.0, 'grooves': 1.0}
Word element => {'helps': 1.0, 'line': 1.0, 'draws': 1.0, 'hope': 1.0, 'just': 1.0, 'leaking': 1.0, 'add': 1.0, 'lot': 1.0, 'time': 1.0, 'frustrating': 1.0, 'baby': 1.0, 'bath': 2.0, 'starts': 1.0, 'my': 1.0, 'itself': 1.0, 'in': 1.0, 'cry': 1.0, 'move': 1.0, 'bothers': 1.0, 'this': 3.0, 'is': 4.0, 'leaks': 2.0, 'what': 1.0, 'her': 2.0, 'good': 1.0, 'that': 2.0, 'into': 1.0, 'size': 1.0, 'now': 1.0, 'poor': 1.0, 'tub': 3.0, 'me': 1.0, 'and': 3.0, 'work': 1.0, 'most': 1.0, 'but': 1.0, 's': 1.0, 'a': 5.0, 'where': 1.0, 'because': 1.0, 'it': 4.0, 'she': 1.0, 'sudden': 1.0, 'cold': 1.0, 'you': 1.0, 'when': 2.0, 'again': 1.0, 'to': 3.0, 'all': 1.0, 'have': 1.0, 'of': 3.0, 'crap': 1.0, 'up': 1.0, 'warm': 1.0, 'refill': 1.0, 'the': 3.0, 'turns': 1.0, 'nightmare': 1.0, 'becomes': 1.0, 'i': 1.0}
Word element => {'if': 1.0, 'use': 1.0, 'will': 1.0, 'still': 1.0, 'loved': 1.0, 'turned': 1.0, 'until': 1.0, 'does': 1.0, 'off': 1.0, 'take': 1.0, 'have': 4.0, 'wash': 2.0, 'in': 2.0, 'anymore': 1.0, 'was': 1.0, 'had': 1.0, 'sling': 2.0, 'for': 3.0, 'one': 2.0, 'from': 1.0, 'to': 2.0, 'as': 1.0, 'used': 2.0, 'her': 4.0, 'it': 7.0, 'shower': 1.0, 'perfect': 1.0, 'this': 2.0, 'i': 8.0, 'ability': 1.0, 'cloth': 1.0, 'got': 1.0, 'my': 2.0, 'the': 6.0, 'again': 1.0, 'you': 1.0, 'when': 1.0, 'beginning': 1.0, 'a': 1.0, 'review': 1.0, 'hair': 1.0, 'well': 1.0, 'children': 1.0, 'gift': 1.0, 'registered': 1.0, 'let': 1.0, 'lay': 1.0, 'back': 1.0, 'and': 4.0, 'tub': 3.0, 'get': 1.0, 'not': 1.0, 'received': 1.0, 'washing': 1.0, 'daughter': 2.0, 'water': 1.0, 'face': 1.0, 'very': 1.0, 'read': 1.0, 'that': 2.0, 'bath': 1.0, 'on': 1.0, 'smelly': 1.0}
Word element => {'again': 1.0, 'buy': 1.0, 'would': 1.0, 'difficult': 1.0, 'agree': 1.0, 'sink': 1.0, 'under': 1.0, 'snap': 3.0, 'off': 1.0, 'sling': 3.0, 'not': 1.0, 'leakage': 1.0, 'fill': 1.0, 'now': 2.0, 'leaked': 1.0, 'don': 2.0, 'you': 1.0, 'times': 1.0, 'problem': 1.0, 'up': 1.0, 'water': 1.0, 'daughter': 2.0, 'one': 2.0, 'too': 2.0, 'and': 5.0, 'much': 1.0, 'do': 1.0, 'put': 1.0, 'on': 2.0, 'tub': 1.0, 'bit': 1.0, 'easy': 1.0, 'get': 1.0, 'been': 2.0, 'that': 3.0, 'into': 2.0, 'while': 1.0, 'have': 3.0, 'our': 3.0, 'high': 1.0, 'to': 3.0, 'old': 2.0, 'hasn': 1.0, 'i': 5.0, 'feature': 2.0, 'two': 1.0, 'this': 1.0, 'with': 1.0, 'it': 14.0, 'she': 2.0, 'has': 1.0, 'sinks': 2.0, 'necessary': 1.0, 'since': 1.0, 'makes': 1.0, 'keep': 2.0, 'a': 5.0, 'we': 6.0, 't': 3.0, 'couple': 1.0, 'out': 1.0, 'in': 4.0, 'reason': 1.0, 'satisfied': 1.0, 'of': 3.0, 'the': 10.0, 'was': 2.0, 'store': 1.0, 'made': 1.0, 'bathing': 1.0, 'so': 1.0, 'counter': 1.0, 'between': 1.0, 'bathroom': 1.0, 'all': 2.0, 'fits': 1.0, 'perfectly': 1.0, 'stand': 1.0, 'right': 1.0, 'year': 2.0, 'very': 1.0, 'twist': 1.0, 'but': 2.0, 'if': 1.0, 'turn': 1.0, 'still': 1.0, 'week': 1.0, 'rinsing': 1.0, 'drains': 1.0, 'her': 1.0, 'use': 2.0, 'just': 1.0, 'hope': 1.0, 'ring': 1.0, 'is': 4.0, 'sits': 1.0, 'another': 1.0, 'trying': 1.0, 'will': 1.0, 'probably': 1.0, 'used': 1.0, 'move': 1.0, 'bathtub': 1.0, 'where': 1.0, 'open': 1.0}
Word element => {'pass': 1.0, 'then': 1.0, 'mine': 1.0, 'like': 1.0, 'from': 1.0, 'out': 1.0, 'the': 3.0, 'my': 1.0, 'shoot': 1.0, 'right': 1.0, 'to': 2.0, 'sling': 1.0, '3': 1.0, 'son': 1.0, 'under': 1.0, '5': 1.0, 'so': 1.0, 'one': 1.0, 'months': 1.0, 'for': 1.0, 'afraid': 1.0, 'baby': 1.0, 'm': 1.0, 'is': 1.0, 'around': 1.0, 'i': 1.0, 'he': 1.0, 'this': 1.0, 'older': 1.0, 'pushes': 2.0, 'much': 1.0, 'heels': 1.0, 'his': 1.0, 'tub': 2.0, 'wild': 1.0, 'bottom': 1.0, 'of': 1.0, 'and': 1.0, 'into': 1.0, 'backwards': 1.0, 'him': 1.0, 'wiggles': 1.0, 'be': 1.0, 'an': 1.0, 'but': 1.0, 'want': 1.0, 'if': 1.0, 'alright': 1.0, 'you': 2.0, 'have': 1.0, 'going': 1.0, 'might': 2.0, 'a': 1.0}
Word element => {'bruised': 1.0, 'scratched': 1.0, 'towel': 1.0, 'knees': 1.0, 'a': 2.0, 'well': 1.0, 'since': 1.0, 'always': 1.0, 'up': 1.0, 'did': 1.0, 'sling': 1.0, 'on': 2.0, 'with': 2.0, 'piece': 1.0, 'worked': 1.0, 'i': 2.0, 'kicking': 1.0, 'night': 1.0, 'bruises': 1.0, 'when': 1.0, 'daughter': 1.0, 'was': 1.0, 'had': 2.0, 'to': 3.0, 'now': 1.0, 'my': 1.0, 'and': 2.0, 'the': 3.0, 'place': 1.0, 'sitter': 1.0, 'under': 1.0, 'leak': 1.0, 'changed': 1.0, 'is': 2.0, 'sitting': 1.0, 'position': 1.0, 'it': 3.0, 'she': 2.0, 'ended': 1.0, 'last': 1.0, 'good': 1.0, 'her': 4.0, 'lay': 1.0, 'blue': 1.0, 'plastic': 1.0, 'not': 1.0, 'this': 1.0, 'soft': 1.0, 'smaller': 1.0, 'so': 1.0}
Word element => {'different': 1.0, 'favor': 1.0, 'about': 1.0, 'after': 1.0, 'even': 1.0, 'instructions': 1.0, 'one': 1.0, 'for': 2.0, 'newborn': 1.0, 'to': 1.0, 'my': 1.0, 'the': 1.0, 'started': 1.0, 'bought': 1.0, 'it': 4.0, 'i': 2.0, 'purchase': 1.0, 'then': 1.0, 'reading': 1.0, 'leak': 1.0, 'yourself': 1.0, 'worked': 1.0, 'ok': 1.0, 'hate': 1.0, 'and': 3.0, 'do': 1.0, 'a': 2.0, 'week': 1.0}
Word element => {'this': 1.0, 'followed': 1.0, 'still': 1.0, 'tub': 2.0, 'is': 1.0, 'leaked': 1.0, 'annoying': 1.0, 'the': 2.0, 'so': 1.0, 'i': 1.0, 'instructions': 1.0, 'but': 1.0}
Word element => {'off': 1.0, 'product': 1.0, 'take': 1.0, 'these': 1.0, 'read': 1.0, 'will': 1.0, 'first': 1.0, 'hopefully': 1.0, 'return': 1.0, 'did': 1.0, 'safety': 1.0, 'even': 1.0, 'online': 1.0, 'the': 4.0, 'leaky': 1.0, 'tub': 1.0, 'it': 4.0, 'with': 1.0, 'this': 3.0, 'said': 1.0, 'tabs': 1.0, 'is': 1.0, 'leaks': 1.0, 'find': 1.0, 'please': 1.0, 'do': 1.0, 'not': 1.0, 'buy': 1.0, 'mess': 1.0, 'i': 2.0, 'and': 1.0, 'closed': 1.0, 'have': 3.0, 'shelf': 1.0, 'other': 1.0, 't': 1.0, 'a': 4.0, 'we': 1.0, 'counter': 1.0, 'reviews': 2.0, 'as': 3.0, 'to': 2.0, 'gift': 1.0, 'towels': 1.0, 'now': 1.0, 'bath': 1.0, 'put': 1.0, 'doesn': 1.0, 'few': 1.0, 'still': 1.0, 'under': 1.0, 'so': 1.0, 'that': 1.0, 'flood': 1.0, 'new': 1.0, 'one': 1.0, 'if': 1.0, 'am': 1.0, 'you': 1.0, 'received': 1.0}
Word element => {'away': 1.0, 'and': 1.0, 'gift': 1.0, 'the': 3.0, 'started': 1.0, 'not': 1.0, 'it': 4.0, 'this': 1.0, 'using': 1.0, 'sling': 1.0, 'one': 1.0, 't': 2.0, 'a': 1.0, 'elsewhere': 1.0, 'as': 1.0, 'ok': 1.0, 'open': 1.0, 'stage': 1.0, 'received': 1.0, 'really': 1.0, 'leaks': 1.0, 'take': 1.0, 'look': 1.0, 'right': 1.0, 'tub': 3.0, 'through': 1.0, 'for': 1.0, 'fit': 1.0, 'have': 1.0, 'you': 2.0, 'stages': 1.0, 'i': 1.0, 'just': 1.0, 'by': 1.0, 'money': 1.0, 'four': 1.0, 'but': 1.0, 'was': 1.0, 'doesn': 1.0, 'comfortably': 1.0, 'or': 1.0, 'does': 1.0, 'safely': 1.0, 'itself': 1.0, 'in': 1.0, 'shower': 1.0, 'once': 1.0, 'don': 1.0, 'waste': 1.0, 'your': 1.0}
Word element => {'terrible': 1.0, 'customer': 1.0, 'their': 1.0, 'again': 1.0, 'item': 1.0, 'buy': 1.0, 'going': 1.0, 'never': 1.0, 'am': 1.0, 'received': 1.0, 'haven': 1.0, 'when': 1.0, 'feature': 1.0, 'i': 11.0, 'because': 1.0, 'that': 7.0, 'been': 1.0, 'good': 1.0, 'enclosed': 1.0, 'think': 1.0, 'idea': 1.0, 'your': 1.0, 'service': 1.0, 'still': 1.0, 'if': 2.0, 'time': 1.0, 'difficult': 1.0, 'even': 1.0, 'safety': 2.0, 'and': 7.0, 'together': 1.0, 'so': 4.0, 'receipt': 1.0, 'home': 1.0, 'for': 1.0, 'you': 2.0, 'meant': 1.0, 'all': 2.0, 'to': 8.0, 'cups': 1.0, 'tub': 3.0, 'place': 1.0, 'with': 3.0, 'buying': 1.0, 'he': 1.0, 'first': 1.0, 'this': 3.0, 'wait': 1.0, 'a': 4.0, 't': 3.0, 'is': 2.0, 'mail': 2.0, 'waste': 1.0, 'the': 11.0, 'of': 1.0, 'water': 1.0, 'up': 2.0, 'over': 1.0, 'in': 3.0, 'said': 1.0, 'tabs': 1.0, 'husband': 1.0, 'filled': 1.0, 'was': 3.0, 'refund': 1.0, 'had': 2.0, 'come': 1.0, 're': 1.0, 'don': 1.0, 'leaked': 1.0, 'wrong': 1.0, 'not': 1.0, 'secondly': 1.0, 'directions': 1.0, 'put': 1.0, 'floor': 1.0, 'picked': 2.0, 'items': 1.0, 'two': 1.0, 'upset': 1.0, 'money': 3.0, 'called': 2.0, 'collapsable': 1.0, 'impossible': 1.0, '1st': 2.0, 'they': 5.0, 'told': 3.0, 'about': 1.0, 'be': 1.0, 'suction': 1.0, 'argued': 1.0, 'locking': 1.0, 'back': 1.0, 'needed': 1.0, 'them': 1.0, 'send': 1.0, 'letter': 3.0, 'wasn': 1.0, 'until': 1.0, 'it': 7.0, 'speak': 1.0, 'my': 5.0, 'me': 4.0, 'manager': 1.0, 'weeks': 1.0, 'would': 2.0, 'only': 1.0, 'return': 1.0, 's': 1.0, 'demanded': 2.0, 'plug': 1.0, 'after': 1.0, 'receive': 1.0}
Word element => {'of': 1.0, 'if': 1.0, 'depth': 1.0, 'good': 1.0, 'use': 1.0, 'means': 1.0, 'inorder': 1.0, 'get': 2.0, 'tub': 2.0, 'fill': 1.0, 'have': 2.0, 'you': 2.0, 'part': 1.0, 'deeper': 1.0, 'up': 1.0, 'over': 2.0, 'goes': 1.0, 'with': 2.0, 'thing': 1.0, 'separate': 1.0, 'other': 1.0, 'side': 2.0, 'one': 1.0, 'better': 2.0, 'into': 1.0, 'that': 6.0, 'in': 3.0, 'newborn': 1.0, 'the': 13.0, 'great': 2.0, 'opinion': 1.0, 'for': 4.0, 'which': 1.0, 'using': 1.0, 'more': 2.0, 'level': 1.0, 'is': 4.0, 'levels': 1.0, 'sink': 1.0, 'slope': 4.0, 'there': 1.0, 'set': 1.0, 'smaller': 1.0, 'time': 1.0, 'has': 2.0, 'a': 6.0, 'this': 4.0, 'first': 1.0, 'much': 1.0, 'end': 2.0, 'only': 1.0, 'would': 2.0, 'kick': 1.0, 'water': 2.0, 'enjoy': 1.0, 'mom': 1.0, 'recommend': 1.0, 'was': 3.0, 'to': 6.0, 'baby': 2.0, 'feature': 1.0, 'two': 1.0, 'i': 1.0, 'old': 1.0, 'herself': 1.0, 'back': 2.0, 'few': 1.0, 'higher': 2.0, 'she': 1.0, 'it': 2.0, 'month': 1.0, 'your': 1.0, 'bath': 1.0, 'able': 1.0, 'lie': 1.0, 'and': 4.0, 'my': 1.0, 'fits': 1.0, 'splash': 1.0, 'because': 1.0, 'be': 2.0, 'but': 1.0, 'can': 1.0, 'stored': 1.0}
Word element => {'ever': 1.0, 'what': 1.0, 'flip': 1.0, 'would': 1.0, 'drained': 1.0, 'little': 1.0, 'kids': 1.0, 'this': 1.0, 'found': 1.0, 'only': 1.0, 'fill': 1.0, 'come': 1.0, 'see': 1.0, 'used': 1.0, 'area': 1.0, 'get': 1.0, 'tub': 5.0, 'left': 2.0, 'while': 1.0, 'being': 1.0, 'same': 1.0, 'helps': 1.0, 'there': 2.0, 'was': 3.0, 'bonus': 1.0, 'dry': 1.0, 'removed': 1.0, 'own': 1.0, 'their': 2.0, 'adjusted': 1.0, 'out': 2.0, 'always': 1.0, 'sit': 3.0, 'able': 3.0, 'big': 1.0, 'great': 1.0, 'the': 15.0, 'infants': 1.0, 'it': 7.0, 'a': 2.0, 't': 1.0, 's': 1.0, 'at': 1.0, '1st': 1.0, 'for': 2.0, 'ring': 2.0, 'sling': 3.0, 'is': 1.0, 'son': 1.0, 'old': 1.0, 'loved': 1.0, 'took': 2.0, 'after': 2.0, 'time': 1.0, 'so': 2.0, 'leave': 1.0, 'have': 3.0, 'shower': 1.0, 'of': 2.0, 'over': 1.0, 'up': 2.0, 'when': 3.0, 'twins': 2.0, 'boys': 1.0, 'baby': 1.0, 'them': 3.0, 'my': 5.0, 'are': 1.0, 'i': 13.0, 'two': 1.0, 'received': 1.0, 'faucet': 1.0, 'they': 3.0, 'were': 3.0, 'sink': 1.0, 'just': 1.0, 'all': 2.0, 'as': 1.0, 'to': 11.0, 'months': 2.0, 'and': 4.0, 'on': 1.0, 'bath': 3.0, '3': 3.0, 'put': 3.0, 'inside': 2.0, 'in': 4.0, 'that': 1.0, 'into': 1.0, 'complaints': 1.0, 'didn': 1.0, 'worry': 1.0, 'water': 3.0, 'no': 1.0, 'thing': 1.0, 'about': 2.0, 'spills': 1.0}
Word element => {'crap': 1.0, 'piece': 1.0, 'yet': 1.0, 'positions': 1.0, 'other': 1.0, 'of': 2.0, 'upper': 1.0, 'lengthwise': 1.0, 'in': 1.0, 'even': 2.0, 'his': 1.0, 'what': 2.0, 'it': 2.0, 'this': 1.0, 'fit': 1.0, 'the': 2.0, 'great': 1.0, 'he': 4.0, 'adjust': 1.0, 'newborn': 1.0, 'ridiculous': 1.0, 'my': 1.0, 'and': 1.0, 'is': 2.0, 'still': 1.0, 'son': 1.0, 'any': 1.0, 'to': 1.0, 'tub': 2.0, 'old': 1.0, '4': 1.0, 'position': 1.0, 'at': 1.0, 'though': 2.0, 'because': 1.0, 'not': 1.0, 'that': 2.0, 'torso': 1.0, 'balancing': 1.0, 'so': 1.0, 'months': 1.0, 'bought': 1.0, 'we': 2.0, 't': 3.0, 's': 3.0, 'a': 3.0, 'already': 1.0, 'use': 1.0, 'gives': 1.0, 'barely': 1.0, 'outgrown': 1.0, 'can': 3.0, 'sitting': 1.0, 'but': 1.0}
Word element => {'new': 1.0, 'luck': 1.0, 'have': 1.0, 'today': 1.0, 'different': 1.0, 'out': 1.0, 'went': 1.0, 'right': 1.0, 'you': 1.0, 'if': 1.0, 'who': 1.0, 'exactly': 1.0, 'did': 1.0, 'put': 2.0, 'husband': 1.0, 'so': 1.0, 'time': 1.0, 'll': 1.0, 'down': 1.0, 'said': 2.0, 'slides': 1.0, 'doesn': 2.0, 'lock': 1.0, 'wrong': 1.0, 'not': 1.0, 'sling': 2.0, 'also': 2.0, 'very': 1.0, 'almost': 1.0, 'already': 1.0, 'supposed': 1.0, 'where': 1.0, 'fit': 1.0, 'for': 1.0, 'using': 1.0, 'worked': 1.0, 'son': 3.0, 'off': 2.0, 'into': 1.0, 'that': 2.0, 'after': 1.0, 'great': 1.0, 'place': 1.0, 'the': 9.0, 'fell': 1.0, 'it': 10.0, 'this': 1.0, 'shower': 1.0, 'disappointing': 1.0, 'first': 1.0, 'with': 2.0, 'do': 1.0, 'empty': 1.0, 'only': 1.0, 'received': 1.0, 't': 2.0, 's': 3.0, 'we': 3.0, 'a': 2.0, 'started': 2.0, 'gift': 1.0, 'does': 1.0, 'find': 1.0, 'and': 5.0, 'tub': 4.0, 'get': 1.0, 'few': 1.0, 'one': 1.0, 'bought': 1.0, 'months': 1.0, 'but': 1.0, 'better': 1.0, 'recently': 1.0, 'has': 1.0, 'all': 1.0, 'as': 2.0, 'our': 1.0, 'to': 5.0, 'diaper': 1.0, 'leak': 3.0, 'up': 1.0, 'cord': 1.0, 'bad': 1.0, 'i': 1.0, 'fill': 1.0, 'together': 2.0, 'water': 1.0, 'take': 1.0, 'hopefully': 1.0, 'reviewer': 1.0, 'bathroom': 1.0, 'my': 3.0, 'him': 1.0, 'is': 2.0}
Word element => {'one': 1.0, 'about': 1.0, 'forget': 1.0, 'non': 1.0, 'collapsable': 1.0, 'fill': 1.0, 'm': 1.0, 'baby': 1.0, 'with': 1.0, 'fills': 1.0, '10': 1.0, 'this': 5.0, 'shower': 1.0, 'bathtub': 1.0, 'gift': 1.0, 'worth': 1.0, 'it': 3.0, 'truly': 1.0, 'and': 3.0, 'buy': 1.0, 'day': 1.0, 'received': 1.0, 'room': 1.0, 'when': 2.0, 'i': 3.0, 's': 1.0, 'a': 1.0, 'leaks': 3.0, 'left': 1.0, 'tub': 5.0, 'effort': 1.0, 'undress': 1.0, 'bath': 1.0, 'on': 1.0, 'the': 4.0, 'more': 2.0, 'minutes': 1.0, 'was': 2.0, 'as': 1.0, 'to': 5.0, 'not': 2.0, 'filled': 1.0, 'box': 1.0, 'but': 1.0, 'back': 1.0, 'an': 1.0, 'sounds': 1.0, 'will': 1.0, 'my': 3.0, 'excited': 1.0, 'great': 1.0, 'submerged': 1.0, 'able': 1.0, 'trying': 1.0, 'be': 1.0, 'cheaper': 1.0, 'up': 1.0, 'her': 1.0, 'came': 1.0, 'empty': 1.0, 'hold': 1.0, 'daughter': 2.0, 'water': 2.0, 'than': 2.0, 'for': 2.0}
Word element => {'space': 1.0, 'having': 1.0, 'comfortable': 1.0, 'more': 2.0, 'plus': 1.0, 'instead': 1.0, 'tubs': 1.0, 'fill': 1.0, 'ton': 1.0, 'out': 1.0, 'hopefully': 1.0, 'into': 1.0, 'move': 1.0, 'anymore': 1.0, 'front': 1.0, 'doesn': 1.0, 'turn': 1.0, 'ready': 1.0, 'am': 1.0, 'for': 1.0, '10': 1.0, 'almost': 1.0, 'supported': 1.0, 'around': 1.0, 'spins': 1.0, 'didn': 1.0, 'tubside': 1.0, 'as': 1.0, 'to': 8.0, 'our': 3.0, 'why': 1.0, 'just': 3.0, 'by': 1.0, 'towel': 1.0, 'tub': 2.0, 'and': 5.0, 'down': 1.0, 'bottom': 1.0, 'under': 1.0, 'kept': 1.0, 'rated': 1.0, 'like': 1.0, 'euro': 2.0, 'about': 1.0, 'behind': 1.0, 'bought': 3.0, 'uncomfortable': 1.0, 'months': 1.0, 'get': 2.0, 'legs': 2.0, 'originally': 1.0, 'looked': 1.0, 'from': 1.0, 'it': 8.0, 'baby': 7.0, 'she': 3.0, 'tried': 1.0, '4': 1.0, 'seat': 2.0, 'in': 5.0, 'but': 2.0, 'aren': 1.0, 'back': 1.0, 'book': 1.0, 'confined': 1.0, 'few': 1.0, 'highly': 1.0, 'really': 1.0, 'very': 2.0, 'little': 1.0, 'big': 2.0, '1': 1.0, 'these': 1.0, 'once': 2.0, 'the': 11.0, 'of': 8.0, 'was': 3.0, 'have': 1.0, 'frustrating': 1.0, 'piece': 2.0, 'we': 1.0, 'then': 3.0, 'bath': 3.0, 'feel': 1.0, 'your': 2.0, 'her': 5.0, 'use': 5.0, 'that': 3.0, 'sliding': 1.0, 'bargains': 1.0, 'either': 1.0, 'putting': 1.0, 'i': 9.0, 'well': 1.0, 't': 3.0, 'likes': 1.0, 'has': 1.0, 'over': 1.0, 'an': 1.0, 'finally': 1.0, 'inch': 1.0, 'enough': 1.0, 'above': 1.0, 'can': 3.0, 'so': 4.0, 'however': 1.0, 'know': 1.0, 'bit': 1.0, 'you': 3.0, 'need': 1.0, 'up': 1.0, 'water': 3.0, 'supposed': 1.0, 'one': 1.0, 'too': 1.0, 'lot': 1.0, 'my': 1.0, 'circle': 1.0, 'splash': 1.0, 'girl': 1.0, 'had': 1.0, 'kick': 1.0, 'wish': 1.0, 'years': 1.0, 'gotten': 1.0, 'blue': 2.0, 'infancy': 1.0, 'quite': 1.0, 'sling': 1.0, 'sits': 1.0, 'is': 4.0, 'a': 8.0, 'tiny': 1.0, 'when': 3.0, 'sit': 1.0}
Word element => {'few': 1.0, 'use': 1.0, 'be': 1.0, 'll': 1.0, 'think': 1.0, 'months': 2.0, 'infant': 1.0, 'an': 1.0, 'size': 1.0, 'a': 2.0, 'is': 2.0, 'tub': 2.0, 'my': 2.0, 'bathtub': 1.0, 'old': 1.0, 'i': 3.0, 'it': 1.0, 'this': 2.0, 'for': 2.0, 'sling': 1.0, 'love': 1.0, 'absolutely': 1.0, 'when': 1.0, 'daughter': 2.0, 'perfect': 1.0, 'in': 1.0, 'used': 1.0, 'part': 1.0, 'able': 1.0, '8': 1.0, 'sit': 1.0, 'couldn': 1.0, 'and': 2.0, 'to': 1.0, 'now': 1.0, 'more': 1.0, 'the': 3.0, 't': 1.0, 'sits': 1.0, 'she': 2.0, 'ring': 1.0, 'up': 1.0, 'of': 1.0}
Word element => {'wrong': 1.0, 'great': 1.0, 'be': 1.0, 'thought': 1.0, 'husband': 1.0, 'more': 1.0, 'researched': 1.0, 'would': 2.0, 'part': 1.0, 'most': 1.0, 'were': 1.0, 'pieces': 1.0, 'water': 2.0, 'he': 1.0, 'im': 1.0, 'and': 2.0, 'for': 2.0, 'where': 1.0, 'two': 1.0, 'i': 10.0, 'it': 6.0, 'tap': 1.0, 'cloth': 1.0, 'bought': 1.0, 'started': 1.0, 'just': 1.0, 'my': 3.0, 'grow': 1.0, 'our': 1.0, 'hoave': 1.0, 'to': 2.0, 'was': 1.0, 'doesnt': 1.0, 'tub': 4.0, 'leaky': 1.0, 'son': 3.0, 'before': 1.0, 'using': 1.0, 'hold': 2.0, 'glad': 1.0, 'boy': 1.0, 'so': 1.0, 'bathe': 1.0, 'realized': 1.0, 'have': 2.0, 'leave': 1.0, 'born': 1.0, 'the': 7.0, 'keep': 1.0, 'if': 1.0, 'that': 3.0, 'filled': 1.0, 'into': 2.0, 'put': 1.0, 'stuff': 1.0, 'on': 1.0, 'bath': 1.0, 'wish': 1.0, 'this': 2.0, 'found': 1.0, 'when': 2.0, 'you': 1.0, 'could': 1.0, 'we': 2.0, 'a': 1.0, 'meet': 1.0, 'wash': 1.0, 'in': 2.0, 'bottom': 1.0}
Word element => {'forget': 1.0, 'smooth': 1.0, 'be': 1.0, 'clean': 2.0, 'impossible': 1.0, 'crevices': 1.0, 'corners': 1.0, 'many': 1.0, 'easier': 1.0, 'has': 1.0, 'would': 1.0, 'biggest': 1.0, 'my': 1.0, 'with': 1.0, 'sling': 1.0, 'better': 1.0, 'open': 1.0, 'such': 1.0, 'more': 1.0, 'is': 2.0, 'storage': 2.0, 'birth': 1.0, 'bought': 1.0, 'it': 8.0, 'pain': 1.0, 'this': 1.0, 'first': 2.0, 'counter': 1.0, 'received': 1.0, 'feature': 1.0, 'i': 6.0, 'have': 2.0, 'keep': 1.0, 'since': 2.0, 'very': 1.0, 'tub': 2.0, 'an': 1.0, 'complaint': 1.0, 'inside': 1.0, 'secure': 1.0, 'back': 1.0, 'used': 1.0, 'exchange': 1.0, 'hard': 1.0, 'later': 1.0, 'kitchen': 1.0, 'had': 2.0, 'as': 1.0, 'to': 8.0, 'for': 2.0, 'problem': 1.0, 'duplicate': 1.0, 'gift': 1.0, 'surfaces': 1.0, 'and': 6.0, 'make': 1.0, 'think': 1.0, 'on': 2.0, 'bath': 1.0, 'use': 1.0, 'so': 1.0, 'time': 1.0, 'a': 4.0, 'we': 1.0, 'liked': 1.0, 'opened': 1.0, 'confusing': 1.0, 'are': 1.0, 'push': 1.0, 'tabs': 1.0, 'was': 1.0, 'leaking': 1.0, 'that': 3.0, 'avoid': 1.0, 'into': 1.0, 'the': 7.0, 'place': 1.0, 'design': 1.0, 'never': 2.0, 'close': 2.0}
Word element => {'definitely': 1.0, 'would': 1.0, 'her': 1.0, 'having': 1.0, 'not': 1.0, 'important': 1.0, 'helped': 1.0, 'that': 1.0, 'with': 1.0, 'had': 1.0, 'instead': 1.0, 'bathtub': 2.0, 'us': 1.0, 'taking': 1.0, 'started': 1.0, '22': 1.0, 'is': 1.0, 'recently': 1.0, 'alone': 1.0, 'loved': 1.0, 'then': 1.0, 'kitchen': 1.0, 'early': 1.0, 'recommend': 1.0, 'was': 2.0, 'fill': 1.0, 'weeks': 1.0, 'an': 1.0, 'sling': 2.0, 'months': 2.0, 'one': 1.0, 'product': 1.0, 'for': 5.0, 'money': 1.0, 'about': 1.0, 'save': 1.0, 'fact': 1.0, 'my': 2.0, 'the': 11.0, 'counter': 1.0, 'item': 1.0, 'i': 2.0, 'problems': 1.0, 'old': 1.0, 'this': 4.0, 'found': 1.0, 'and': 3.0, 'too': 1.0, 'in': 7.0, 'amazing': 1.0, 'baths': 3.0, 'here': 1.0, 'be': 1.0, 'of': 2.0, 'up': 1.0, 'water': 1.0, 'daughter': 2.0, 'value': 1.0, 'by': 1.0, 'just': 3.0, 'life': 1.0, 'never': 1.0, 'sink': 1.0, 'sw': 1.0, 'any': 1.0, 'to': 3.0, 'our': 2.0, 'after': 1.0, 'it': 2.0, 'she': 3.0, 'enough': 1.0, 'easy': 1.0, 'tub': 5.0, 'a': 1.0, 's': 1.0, 'we': 3.0, 'put': 1.0, 'on': 1.0, 'access': 1.0, 'worked': 1.0, '18': 1.0, 'helpful': 1.0, 'used': 1.0, 'bathring': 1.0, 'big': 1.0, 'great': 1.0, 'until': 2.0}
Word element => {'different': 1.0, 'retured': 1.0, 'immediatly': 1.0, 'infant': 1.0, 'noticed': 1.0, 'also': 1.0, 'half': 1.0, 'ready': 1.0, 'water': 2.0, 'run': 1.0, 'locked': 1.0, 'sling': 1.0, 'fully': 1.0, 'kept': 1.0, 'by': 1.0, 'just': 1.0, 'making': 1.0, 'never': 1.0, 'leak': 1.0, 'started': 1.0, 'then': 1.0, 'sons': 1.0, '1st': 1.0, 'when': 1.0, 'him': 1.0, 'be': 2.0, 'time': 2.0, 'smaller': 1.0, 'so': 1.0, 'the': 12.0, '1': 2.0, 'great': 2.0, 'discouraged': 1.0, 'and': 6.0, 'were': 1.0, 'rusting': 1.0, 'thought': 1.0, 'that': 3.0, 'it': 12.0, 'this': 1.0, 'looked': 1.0, 'connected': 1.0, 'husband': 1.0, 'all': 1.0, 'our': 1.0, 'to': 7.0, 'thinking': 1.0, 'i': 7.0, 'pleased': 1.0, 'was': 4.0, 'store': 2.0, 'unlocked': 1.0, 'home': 1.0, 'tub': 2.0, 'in': 2.0, 'awhile': 1.0, 'son': 1.0, 'one': 1.0, 'months': 1.0, 'bought': 1.0, 'decided': 1.0, 'would': 2.0, 'able': 1.0, 'use': 1.0, 'got': 3.0, 'where': 1.0, 'for': 3.0, 'doubt': 1.0, 'my': 2.0, 'checked': 1.0, 'reviews': 1.0, 'put': 1.0, 'bath': 2.0, 'on': 1.0, 'going': 1.0, 'we': 5.0, 'a': 2.0, 'little': 1.0, 'give': 1.0, '2': 1.0, 'but': 1.0, 'benefit': 1.0, 'of': 1.0, 'gone': 1.0, 'about': 1.0}
Word element => {'better': 1.0, 'maybe': 1.0, '20': 1.0, 'waste': 1.0, '00': 1.0, 'more': 2.0, 'they': 1.0, 'me': 1.0, 'them': 1.0, 'take': 1.0, 'just': 1.0, 'wouldn': 1.0, 'got': 1.0, 'so': 1.0, 'time': 2.0, 'on': 1.0, 'bath': 1.0, 'cold': 1.0, 'getting': 1.0, 'be': 1.0, 'something': 1.0, 'would': 2.0, 'always': 1.0, 'way': 1.0, 'since': 2.0, 'little': 1.0, 'very': 1.0, 'm': 1.0, 'sink': 1.0, 'i': 5.0, 'my': 2.0, 's': 1.0, 'a': 2.0, 't': 3.0, 'the': 6.0, 'this': 3.0, 'with': 3.0, 'water': 2.0, 'get': 1.0, 'tub': 1.0, 'fed': 1.0, 'experience': 1.0, 'after': 1.0, 'it': 6.0, 'month': 1.0, 'doesn': 1.0, 'hold': 1.0, 'really': 1.0, 'and': 4.0, 'disappointed': 1.0, 'in': 2.0, 'also': 1.0, 'decided': 1.0, 'entire': 1.0, 'bought': 1.0, 'short': 1.0, 'spend': 1.0, '1': 1.0, 'twin': 1.0, 'into': 1.0, 'that': 2.0, 'been': 1.0, 'much': 2.0, 'outgrew': 1.0, 'tends': 1.0, 'all': 3.0, 'our': 1.0, 'to': 2.0, 'leak': 1.0, 'bottom': 1.0, 'there': 1.0, 'up': 2.0, 'shower': 1.0, 'once': 1.0, 'has': 1.0, 'love': 1.0, 'product': 1.0, 'spoil': 1.0, 'for': 1.0, 'from': 1.0, 'while': 1.0, 'effecient': 1.0, 'boys': 2.0, 'you': 2.0, '2': 2.0, 'can': 2.0, 'fill': 1.0}
Word element => {'which': 1.0, 'need': 1.0, 'be': 1.0, 'position': 1.0, 'new': 1.0, 'invest': 1.0, 'will': 2.0, 'll': 1.0, 'down': 1.0, 'definitely': 1.0, 'lay': 1.0, 'when': 1.0, 'likes': 1.0, 'ok': 1.0, 'being': 1.0, 'just': 1.0, 'large': 1.0, 'course': 1.0, 'use': 1.0, 'long': 1.0, 'almost': 1.0, 'getting': 1.0, 'he': 5.0, 'add': 1.0, 'already': 1.0, 'non': 1.0, 'old': 3.0, 'months': 1.0, 'sitting': 1.0, 'but': 2.0, 'back': 1.0, 'while': 1.0, 'bathtub': 1.0, 'might': 1.0, 'a': 6.0, 'for': 2.0, 'carry': 1.0, 'since': 1.0, 'at': 1.0, 'worked': 1.0, 'great': 1.0, 'the': 7.0, 'month': 1.0, 'it': 9.0, 'first': 2.0, 'with': 1.0, 'doing': 1.0, 'this': 1.0, 'too': 1.0, 'and': 3.0, 'on': 1.0, 'think': 1.0, '3': 2.0, 'carried': 1.0, 'used': 1.0, 'mess': 1.0, 'i': 7.0, 'tried': 1.0, 'into': 1.0, 'get': 1.0, 'tub': 2.0, 'out': 1.0, 'good': 1.0, 'clean': 1.0, 'skid': 1.0, 'husband': 1.0, 'had': 1.0, 'time': 2.0, 'bathe': 1.0, 'splash': 1.0, 'my': 3.0, 'bathroom': 1.0, 'of': 1.0, 'rather': 2.0, 'than': 1.0, 'only': 1.0, 'nursery': 1.0, 'empty': 1.0, 'enough': 1.0, 'leaked': 1.0, 'seat': 1.0, 'to': 10.0, 'all': 1.0, 'have': 3.0, 'bad': 1.0, 'over': 1.0, 'then': 1.0, 'in': 4.0, 'around': 1.0, 'is': 5.0, 'son': 2.0, 'difficult': 1.0}
Word element => {'do': 1.0, 'extra': 1.0, 'it': 3.0, 'counter': 2.0, 'first': 1.0, 'careful': 1.0, 'the': 4.0, 'his': 1.0, 'give': 1.0, 'assembling': 1.0, 'we': 2.0, 'set': 1.0, 'of': 2.0, 'exact': 1.0, 'there': 1.0, 'top': 1.0, 'min': 1.0, 'had': 1.0, 'son': 2.0, 'while': 1.0, 'from': 1.0, 'bath': 1.0, 'on': 1.0, 'up': 1.0, 'over': 1.0, 'directions': 1.0, 'bottom': 1.0, 'doubt': 1.0, 'tub': 2.0, 'out': 1.0, 'this': 2.0, 'carefully': 1.0, 'read': 1.0, 'thing': 1.0, 'about': 1.0, 'same': 1.0, 'everything': 1.0, 'being': 1.0, '10': 1.0, 'washing': 1.0, 'my': 2.0, 'junk': 1.0, 'i': 2.0, 'tried': 1.0, 'realized': 1.0, 'was': 1.0, 'leaking': 1.0, 'water': 1.0, 'to': 2.0, 'our': 2.0, 'all': 1.0, 'gave': 1.0, 'is': 1.0, 'benefit': 1.0, 'and': 1.0, 'again': 1.0}
Word element => {'as': 1.0, 'easy': 1.0, 'are': 1.0, 'suction': 1.0, 'those': 1.0, 'safe': 2.0, 'place': 1.0, 'ringis': 1.0, 'around': 1.0, 'or': 1.0, 'outgrew': 1.0, 'let': 1.0, 'move': 2.0, 'face': 1.0, 'be': 1.0, 'saver': 1.0, 'been': 1.0, 'that': 3.0, 'while': 2.0, 'slide': 1.0, 'looked': 1.0, 'would': 4.0, 'it': 12.0, 'so': 2.0, 'time': 3.0, 'hold': 1.0, 'old': 1.0, 'i': 6.0, 'shopped': 1.0, 'and': 7.0, 'sit': 1.0, 'when': 1.0, 'tub': 4.0, 'sure': 1.0, 'don': 1.0, 'in': 3.0, 'rings': 1.0, 'newborn': 1.0, 'liked': 1.0, 'worth': 1.0, 'now': 1.0, 'to': 3.0, 'keeps': 1.0, 'any': 1.0, 'she': 4.0, 'baby': 4.0, 'my': 3.0, 'save': 1.0, 'wash': 1.0, 'her': 2.0, 'keep': 1.0, 'several': 1.0, 'stand': 1.0, 'down': 1.0, 'bottom': 1.0, 'not': 6.0, 'is': 2.0, 'at': 1.0, 'ring': 1.0, 'months': 1.0, 'count': 1.0, 'too': 1.0, 'one': 2.0, 'on': 3.0, 'sound': 1.0, 'make': 2.0, 'this': 2.0, 'able': 1.0, 'also': 2.0, 'us': 1.0, 'have': 1.0, 'much': 1.0, 'do': 1.0, 'babys': 1.0, 'but': 2.0, 'always': 3.0, 'them': 1.0, 'privates': 1.0, 'stands': 1.0, 's': 5.0, 'then': 1.0, 'we': 2.0, 't': 2.0, 'a': 2.0, 'water': 2.0, 'change': 1.0, 'less': 2.0, 'made': 1.0, 'they': 3.0, 'difficult': 1.0, 'work': 1.0, 'open': 2.0, 'tubs': 1.0, 'close': 1.0, 'won': 1.0, 'leak': 1.0, 'leaks': 1.0, 'little': 1.0, 'the': 9.0, 'of': 2.0, '14': 1.0, 'locked': 1.0, 'alot': 1.0, 'if': 1.0, 'just': 1.0, 'size': 1.0, 'after': 1.0, 'for': 1.0, 'all': 2.0, 'other': 2.0}
Word element => {'useful': 1.0, 'spend': 1.0, 'product': 1.0, 'recommend': 1.0, 'help': 1.0, 'extra': 2.0, 'not': 1.0, 'give': 1.0, 'handtowel': 1.0, 'started': 1.0, 'well': 1.0, 'little': 1.0, 'very': 1.0, 'straight': 1.0, 'money': 1.0, 'can': 1.0, 'something': 1.0, 've': 1.0, 'would': 2.0, 'that': 1.0, 'apartment': 1.0, 'thought': 1.0, 'bar': 1.0, 'live': 1.0, 'tread': 1.0, 'latch': 1.0, 'and': 5.0, 'getting': 1.0, 'husband': 1.0, 'our': 3.0, 'to': 4.0, 'now': 1.0, 'i': 2.0, 'both': 1.0, 'this': 2.0, 'it': 3.0, 'riduculous': 1.0, 'convenient': 1.0, 'with': 1.0, 'small': 1.0, 'have': 1.0, 'parents': 1.0, 'sit': 2.0, 'slides': 1.0, 'in': 2.0, 'old': 1.0, 'problems': 1.0, 'son': 2.0, 'him': 2.0, 'putting': 1.0, 'be': 1.0, 'get': 1.0, 'tub': 1.0, 'takes': 1.0, 'up': 3.0, 'underneath': 1.0, 'my': 1.0, 'bathroom': 1.0, 'there': 1.0, 'bottom': 1.0, 'an': 1.0, 'entire': 1.0, 'other': 1.0, 'shelf': 1.0, 'more': 1.0, 'is': 1.0, 'enough': 1.0, 'the': 3.0, 't': 1.0, 'a': 3.0, 'we': 2.0, 's': 2.0, 'no': 1.0, 'continuously': 1.0, 'on': 1.0}
Word element => {'very': 1.0, 'picking': 1.0, 'sliding': 1.0, 'mat': 1.0, 'laying': 1.0, 'hard': 1.0, 'a': 2.0, 'has': 1.0, 'also': 1.0, 'daughter': 1.0, 'my': 1.0, 'tight': 1.0, 'keeps': 1.0, 'mine': 1.0, 'for': 2.0, 'time': 1.0, 'so': 1.0, 'suction': 1.0, 'back': 1.0, 'top': 1.0, 'are': 1.0, 'started': 1.0, 'the': 4.0, 'clear': 1.0, 'i': 2.0, 'stay': 1.0, 'of': 2.0, 'crevises': 1.0, 'this': 2.0, 'she': 1.0, 'it': 3.0, 'had': 1.0, 'in': 1.0, 'cannot': 1.0, 'dangerous': 1.0, 'cleaned': 1.0, 'and': 4.0, 'bathtub': 2.0, 'down': 1.0, 'mold': 1.0, 'cups': 1.0, 'grow': 1.0, 'to': 4.0, 'all': 1.0, 'have': 2.0, 'that': 1.0, 'apart': 1.0, 'if': 1.0, 'move': 1.0, 'keep': 2.0, 'you': 3.0, 'fill': 1.0, 'tub': 2.0, 'different': 1.0, 'her': 1.0, 'clean': 1.0, 'up': 3.0, 'child': 2.0, 'try': 1.0, 'every': 1.0, 'lift': 1.0, 'other': 1.0, 'buy': 1.0, 'day': 1.0, 'take': 1.0, 'safe': 1.0, 'on': 1.0, 'your': 2.0}
Word element => {'cracks': 1.0, 'saw': 1.0, 'day': 1.0, 'son': 1.0, 'tub': 1.0, 'grim': 1.0, 'dirt': 1.0, 'much': 1.0, 'so': 1.0, 'there': 1.0, 'didn': 1.0, 'all': 1.0, 'have': 1.0, 'looked': 1.0, 'it': 1.0, 'this': 1.0, 'money': 1.0, 'mortified': 1.0, 'if': 1.0, 'your': 1.0, 'i': 2.0, 'realize': 1.0, 'that': 1.0, 'on': 1.0, 'waste': 1.0, 'not': 1.0, 'and': 3.0, 'do': 1.0, 'bought': 1.0, 'my': 1.0, 'growning': 1.0, 't': 1.0, 'the': 3.0, 'into': 1.0, 'until': 1.0, 'creases': 1.0, 'bath': 3.0, 'already': 1.0, 'was': 2.0, 'look': 1.0, 'in': 2.0, 'one': 1.0, 'for': 1.0, 'floating': 1.0, 'bacteria': 1.0, 'you': 1.0, 's': 2.0}
Word element => {'pinchable': 1.0, 'without': 1.0, 'cheaper': 1.0, 'better': 1.0, 'you': 1.0, 'off': 1.0, 'good': 1.0, 'a': 1.0, 'nonsense': 1.0, 'isn': 1.0, 'just': 1.0, 'together': 2.0, 'snap': 2.0, 'to': 1.0, 'of': 1.0, 'big': 1.0, 'for': 1.0, 'bathtub': 1.0, 'feature': 1.0, 'found': 1.0, 'b': 1.0, 'buy': 1.0, 'i': 2.0, 'took': 1.0, 'are': 1.0, 'actually': 1.0, 'with': 1.0, 'hard': 1.0, 'this': 1.0, 'it': 4.0, 'ones': 1.0, 't': 1.0, 'bulky': 1.0, 'the': 3.0, 'c': 1.0, 'space': 1.0, 'saving': 1.0, 'registered': 1.0, 'is': 2.0, 'back': 1.0, 'but': 1.0, 'that': 1.0, 'and': 1.0}
Word element => {'recomend': 1.0, 'easier': 1.0, 'soooo': 1.0, 'very': 1.0, 'best': 1.0, 'bathe': 1.0, 'far': 1.0, 'is': 3.0, 'much': 1.0, 'each': 1.0, 'by': 1.0, 'kids': 1.0, 'have': 1.0, 'seconds': 1.0, 'different': 1.0, '5': 1.0, 'a': 2.0, 'three': 2.0, 'little': 1.0, 'bathtub': 1.0, 'i': 3.0, 'loved': 1.0, 'tubs': 1.0, 'tub': 3.0, 'with': 1.0, 'hard': 2.0, 'this': 4.0, 'it': 4.0, 'the': 2.0, 'my': 1.0, 'absolutly': 1.0, 'lock': 1.0, 'yet': 1.0, 'for': 2.0, 'newborn': 1.0, 'in': 1.0, 'and': 2.0, 'get': 1.0, 'me': 1.0, 'but': 2.0, 'was': 1.0, 'to': 3.0, 'husband': 1.0, 'did': 1.0, 'highly': 1.0, 'about': 1.0}
Word element => {'urge': 1.0, 'something': 1.0, 'down': 1.0, 'lock': 1.0, 'pushed': 1.0, 'finally': 1.0, 'product': 1.0, 'floor': 1.0, 'kitchen': 1.0, 'over': 1.0, 'thing': 1.0, 'all': 1.0, 'water': 1.0, 'leaked': 2.0, 'up': 1.0, 'baby': 1.0, 'the': 2.0, 'still': 1.0, 'gift': 1.0, 'a': 2.0, 'as': 1.0, 'and': 1.0, 'item': 1.0, 'for': 1.0, 'received': 1.0, 'but': 1.0, 'week': 1.0, 'my': 3.0, 'ago': 1.0, 'i': 3.0, 'when': 1.0, 'people': 1.0, 'is': 1.0, 'filled': 1.0, 'not': 1.0, 'started': 1.0, 'just': 1.0, 'purchase': 1.0, 'use': 1.0, 'husband': 1.0, 'to': 2.0, 'tub': 1.0, 'shower': 1.0, 'this': 2.0, 'it': 3.0}
Word element => {'looking': 1.0, 'is': 1.0, 'who': 1.0, 'simpler': 1.0, 'recommend': 1.0, 'would': 1.0, 'improved': 1.0, 'has': 1.0, 'product': 1.0, 'said': 1.0, 'grow': 1.0, 'did': 1.0, 'slipping': 1.0, 'suction': 1.0, 'needs': 1.0, 'shower': 1.0, 'to': 7.0, 'our': 1.0, 'be': 2.0, 'leaked': 1.0, 'snap': 1.0, 'actually': 1.0, 'for': 3.0, 'kept': 1.0, 'stars': 1.0, 'time': 3.0, 'so': 1.0, 'got': 1.0, 'bath': 1.0, 'on': 4.0, 'enjoyable': 1.0, 'bathtub': 1.0, 'lean': 1.0, 'a': 7.0, 'tub': 10.0, 'left': 1.0, 'do': 1.0, 'put': 1.0, 'floor': 1.0, 'recieved': 1.0, 'gave': 1.0, 'really': 3.0, 'anyone': 1.0, 'and': 5.0, 'great': 2.0, 'but': 2.0, 'ready': 1.0, 'around': 1.0, 'his': 1.0, 'going': 1.0, 'fom': 1.0, 'by': 1.0, 'screaming': 1.0, 'i': 8.0, 'cups': 1.0, '4': 1.0, 'mess': 1.0, 'feature': 1.0, 'two': 1.0, 'when': 2.0, 'what': 1.0, 'filled': 1.0, 'was': 10.0, 'happy': 1.0, 'with': 3.0, 'had': 2.0, 'counter': 1.0, 'him': 1.0, 'thought': 1.0, 'it': 6.0, 'supposed': 1.0, 'useless': 1.0, 'as': 2.0, 'annoying': 1.0, 'plus': 1.0, 'first': 2.0, 'this': 2.0, 'of': 2.0, 'the': 17.0, 'place': 1.0, 'kitchen': 2.0, 'we': 2.0, 'then': 1.0, 'son': 4.0, 'all': 1.0, 'an': 1.0, 'ended': 1.0, 'water': 2.0, 'up': 2.0, 'being': 1.0, 'shut': 1.0, 'disaster': 1.0, 'cold': 1.0, 'baby': 1.0, 'huge': 2.0, 'my': 6.0, 'me': 1.0, 'entire': 1.0, 'clean': 1.0, 'from': 2.0, 'inside': 1.0, 'back': 1.0, '1': 1.0, 'since': 2.0, 'concept': 2.0, 'over': 1.0, 'hard': 2.0, 'open': 2.0, 'used': 1.0, 'gift': 1.0, 'leaking': 1.0, 'which': 2.0, 'made': 1.0, 'compacting': 1.0, 'placed': 1.0, 'why': 1.0, 'in': 1.0, 'that': 2.0, 'because': 1.0}
Word element => {'herself': 1.0, 'by': 1.0, 'up': 1.0, 'able': 1.0, 'when': 1.0, 'especially': 1.0, 'safe': 1.0, 'was': 2.0, 'sit': 1.0, 'always': 1.0, 'her': 1.0, 'with': 2.0, 'this': 3.0, 'baths': 1.0, 'first': 1.0, 'shower': 1.0, 'counter': 1.0, 'have': 1.0, 'problem': 2.0, 'no': 1.0, 'daughter': 1.0, 'now': 1.0, 'i': 2.0, 'took': 1.0, 'old': 1.0, 'at': 4.0, '13': 1.0, 'in': 4.0, 'tub': 6.0, 'the': 4.0, 'my': 2.0, 'them': 1.0, 'baby': 1.0, 'months': 1.0, 'received': 1.0, 'that': 1.0, 'next': 1.0, 'all': 1.0, 'to': 2.0, 'any': 1.0, 'our': 1.0, 'year': 1.0, 'big': 1.0, 'it': 1.0, 'felt': 1.0, 'she': 3.0, 'still': 1.0, 'takes': 1.0, 'but': 1.0, 'on': 1.0, 'put': 1.0, 'ago': 1.0, 'a': 1.0, 'we': 3.0, 'little': 1.0, 'sink': 1.0, 'never': 1.0, 'had': 2.0, 'leaks': 1.0, 'and': 1.0}
Word element => {'problems': 1.0, 'no': 1.0, 'will': 1.0, 'you': 1.0, 'just': 1.0, 'relatively': 1.0, 'leaked': 1.0, 'splashes': 1.0, 'under': 1.0, 'bathtime': 1.0, 'has': 1.0, 'angle': 1.0, 'sling': 1.0, 'never': 1.0, 'alot': 1.0, 'sink': 1.0, 'make': 1.0, 'put': 2.0, 'on': 1.0, 'loves': 1.0, 'next': 1.0, 'that': 1.0, 'needed': 1.0, 'but': 2.0, 'leak': 1.0, 'not': 2.0, 'little': 1.0, 'recommend': 1.0, 'was': 2.0, 'bad': 1.0, 'i': 3.0, 'she': 1.0, 'it': 7.0, 'with': 1.0, 'perfect': 1.0, 'this': 1.0, 'for': 1.0, 'counter': 1.0, 'reviews': 1.0, 'registered': 1.0, 'is': 2.0, 'received': 1.0, 'the': 6.0, 'of': 2.0, 'shower': 1.0, 'skeptical': 1.0, 'we': 4.0, 'a': 7.0, 'at': 1.0, 'since': 1.0, 'sure': 1.0, 'towel': 1.0, 'easy': 2.0, 'tub': 3.0, 'bathroom': 1.0, 'fits': 1.0, 'clicks': 1.0, 'and': 4.0, 'end': 1.0, 'only': 1.0, 'do': 1.0, 'perfectly': 1.0, 'gift': 1.0, 'something': 1.0, 'would': 2.0, 'our': 2.0, 'to': 5.0, 'as': 1.0, 'grow': 1.0, 'together': 1.0, 'daughter': 2.0, 'anyone': 1.0, 'use': 1.0, 'usually': 1.0, 'because': 2.0, 'does': 1.0, 'have': 4.0, 'small': 1.0}
Word element => {'of': 1.0, 'have': 1.0, 'than': 1.0, 'complains': 1.0, 'other': 1.0, 'enough': 1.0, 'on': 1.0, 'doesn': 1.0, 'hang': 1.0, 'one': 1.0, 'at': 1.0, 'up': 1.0, 'can': 1.0, 'he': 1.0, 'slippery': 1.0, 'almost': 1.0, 'heap': 1.0, 'nothing': 1.0, 'there': 1.0, 'bottom': 1.0, 'down': 1.0, 'sliding': 1.0, 'also': 1.0, 'counter': 1.0, 'itself': 1.0, 'in': 3.0, 'kept': 1.0, 'problem': 1.0, 'no': 2.0, 'had': 1.0, 'husband': 1.0, 'it': 3.0, 'end': 1.0, 'its': 1.0, 'only': 2.0, 'him': 1.0, 'chance': 1.0, 'yet': 2.0, 'sling': 3.0, 'place': 1.0, 'the': 8.0, 'haven': 1.0, 'old': 1.0, 'a': 2.0, 't': 2.0, 'we': 2.0, 'attached': 1.0, 'weeks': 1.0, 'really': 3.0, 'is': 4.0, 'if': 1.0, 'want': 1.0, 'use': 1.0, 'even': 1.0, 'tho': 1.0, 'tight': 1.0, 'my': 3.0, 'not': 1.0, 'me': 1.0, 'hold': 1.0, 'like': 2.0, 'son': 2.0, 'tub': 3.0, 'newborns': 1.0, 'this': 1.0, 'full': 1.0, 'i': 2.0, 'two': 1.0, 'potential': 1.0, 'did': 1.0, 'recommended': 1.0, 'big': 1.0, 'mention': 1.0, 'keeps': 1.0, 'sink': 2.0, 'way': 1.0, 'and': 4.0, 'too': 2.0, 'for': 1.0, 'fit': 1.0, 'next': 1.0, 'that': 2.0, 'into': 1.0, 'to': 7.0, 'as': 2.0, 'any': 1.0}
Word element => {'enemy': 1.0, 'bad': 1.0, 'worst': 1.0, 'for': 1.0, 'even': 1.0, 'yourself': 1.0, 'do': 1.0, 'old': 1.0, '7': 1.0, 'favor': 1.0, 'he': 2.0, 'when': 1.0, 'ever': 2.0, 'be': 1.0, 'my': 2.0, 'years': 1.0, 'it': 4.0, 'fill': 1.0, 'at': 2.0, 'thing': 1.0, 'not': 1.0, 'they': 1.0, 'did': 1.0, 'recieved': 1.0, 'most': 1.0, 'can': 1.0, 'quot': 2.0, 'buying': 1.0, 'piece': 1.0, 'don': 1.0, 'over': 1.0, 'your': 1.0, 'think': 1.0, '3': 1.0, 'on': 1.0, 'this': 3.0, 'found': 1.0, 'same': 1.0, 'exact': 1.0, 'sell': 1.0, 'water': 1.0, 'shower': 1.0, 'of': 3.0, 'almost': 1.0, 'i': 4.0, 'junk': 1.0, 'was': 2.0, 'doesn': 1.0, 'believe': 1.0, 'the': 2.0, 'hold': 1.0, 'had': 1.0, 'months': 1.0, 'uncomfortable': 1.0, 'entire': 1.0, 'tub': 2.0, 'cry': 1.0, 'in': 2.0, 'order': 1.0, 'use': 1.0, 'all': 2.0, 'seat': 2.0, 'to': 3.0, 'as': 1.0, 'still': 1.0, 'son': 1.0, 's': 1.0, 'ago': 1.0, 't': 2.0, 'a': 2.0, 'top': 1.0, 'that': 2.0}
Word element => {'old': 1.0, 'good': 1.0, 'this': 1.0, 'use': 1.0, 'both': 1.0, 'were': 1.0, 'when': 1.0, 'knees': 1.0, 'sling': 1.0, 'small': 1.0, 'either': 1.0, 'bath': 2.0, 'husband': 1.0, 'togther': 1.0, 'to': 1.0, 'properly': 1.0, 'better': 1.0, 'the': 5.0, 'a': 1.0, 'gimicky': 1.0, 't': 2.0, 'we': 3.0, 'finally': 1.0, 'tub': 1.0, 'get': 1.0, 'couldn': 2.0, 'too': 1.0, 'and': 4.0, 'i': 3.0, 'really': 1.0, 'was': 4.0, 'recommend': 1.0, 'my': 3.0, 'another': 1.0, 'baby': 1.0, 'anything': 1.0, 'product': 1.0, 'be': 1.0, 'would': 1.0, 'gave': 1.0, 'over': 1.0, 'up': 1.0, 'just': 1.0, 'slipped': 1.0, 'pushed': 1.0, 'it': 2.0, 'he': 1.0, 'try': 1.0, 'its': 1.0, 'only': 1.0, 'together': 1.0, 'water': 1.0, 'limited': 1.0, 'leaked': 1.0, 'out': 1.0, 'very': 1.0, 'uncomfortable': 1.0, 'in': 2.0, 'fashioned': 1.0, 'is': 1.0, 'around': 1.0, 'alot': 1.0, 'so': 1.0, 'bit': 1.0, 'clip': 1.0, 'used': 1.0}
Word element => {'yet': 1.0, 'everyday': 1.0, 'out': 1.0, 'take': 1.0, 'problems': 2.0, 'no': 1.0, 'have': 3.0, 'big': 2.0, 'for': 1.0, 'room': 1.0, 'plenty': 1.0, 'using': 1.0, 'with': 3.0, 'red': 1.0, 'of': 3.0, 'much': 1.0, 'backside': 1.0, 'end': 1.0, 'am': 2.0, 'again': 1.0, 'slide': 1.0, 'up': 2.0, 'back': 2.0, 'her': 3.0, 'sitting': 1.0, 'but': 1.0, 'process': 1.0, 'support': 1.0, 'one': 1.0, 'entire': 2.0, 'stay': 1.0, 'a': 1.0, 't': 2.0, 'is': 1.0, 'more': 1.0, 'first': 1.0, 'by': 1.0, 'just': 1.0, 'difficult': 1.0, 'way': 1.0, 'i': 8.0, 'happier': 1.0, 'tried': 2.0, 'without': 1.0, 'the': 10.0, 'place': 1.0, 'sink': 1.0, 'that': 2.0, 'made': 1.0, 'tub': 4.0, 'stayed': 1.0, 'ring': 1.0, 'sling': 2.0, 'in': 3.0, 'play': 1.0, 'and': 6.0, 'leaking': 1.0, 'was': 3.0, 'purchased': 1.0, 'had': 1.0, 'any': 1.0, 'to': 6.0, 'my': 1.0, 'having': 1.0, 'than': 1.0, 'sliding': 1.0, 'be': 1.0, 'then': 2.0, 'fill': 1.0, 'now': 2.0, 'attached': 1.0, 'pull': 1.0, 'daughter': 1.0, 'time': 1.0, 'however': 1.0, 'wouldn': 1.0, 'didn': 1.0, 'this': 2.0, 'provided': 1.0, 'little': 1.0, 'very': 1.0, 'it': 8.0, 'useless': 1.0, 'she': 3.0, 'bath': 1.0, 'put': 1.0, 'constantly': 1.0, 'down': 3.0, 'new': 1.0, 'would': 2.0}
Word element => {'others': 1.0, 'it': 1.0, 'recommend': 1.0, 'definately': 1.0, 'would': 1.0, 'side': 1.0, 'by': 1.0, 'be': 1.0, 'dry': 1.0, 'used': 1.0, 'his': 4.0, 'works': 1.0, 'tub': 5.0, 'sling': 2.0, 'safe': 1.0, 'splashes': 1.0, 'he': 1.0, 'with': 1.0, 'first': 1.0, 'my': 1.0, 'went': 1.0, 'little': 4.0, 'very': 1.0, 'problems': 1.0, 'and': 6.0, 'six': 1.0, 'feels': 1.0, 'now': 1.0, 'i': 4.0, 'giggles': 1.0, 'had': 1.0, 'normal': 1.0, 'is': 1.0, 'one': 1.0, 'months': 1.0, 'in': 4.0, 'bathtime': 1.0, 'the': 6.0, 'comfortable': 1.0, 'big': 2.0, 'great': 1.0, 'never': 2.0, 'sink': 1.0, 'loves': 1.0, 'into': 1.0, 'that': 2.0, 'we': 2.0, 'right': 2.0, 'can': 1.0, 'have': 1.0, 'to': 1.0, 'any': 1.0, 'put': 1.0, 'way': 1.0, 'at': 1.0, 'climb': 1.0, 'stay': 1.0}
Word element => {}
Word element => {'d': 1.0, 'only': 1.0, 'after': 1.0, 'around': 1.0, 'plastic': 1.0, 'bottom': 1.0, 'got': 1.0, 'hole': 1.0, 'eventually': 1.0, 'our': 1.0, 'tricky': 1.0, 'little': 1.0, 'scoot': 1.0, 'front': 1.0, 'take': 1.0, 'then': 1.0, 'pop': 1.0, 'on': 1.0, 'empty': 1.0, 'strong': 2.0, 'cup': 1.0, 'cups': 2.0, 'suction': 2.0, 'locked': 1.0, 'thing': 1.0, 'without': 1.0, 'size': 1.0, 'full': 1.0, 'manufactured': 1.0, 'not': 3.0, 'just': 1.0, 'why': 1.0, 'don': 1.0, 'leaked': 1.0, 'back': 1.0, 'making': 1.0, 'locks': 1.0, 'get': 1.0, 'snapped': 1.0, 'fooled': 1.0, 'was': 2.0, 'but': 2.0, 'ok': 1.0, 'done': 1.0, 've': 1.0, 'you': 3.0, 'place': 2.0, 'into': 2.0, 'from': 2.0, 'center': 1.0, 'said': 1.0, 'have': 3.0, 'reviewers': 1.0, 'cons': 1.0, 'big': 1.0, 'time': 1.0, 'uses': 1.0, 'before': 1.0, 'step': 1.0, 'expansion': 1.0, 'cleaning': 1.0, 'day': 1.0, 'etc': 1.0, 'pulled': 1.0, 'to': 9.0, 'in': 3.0, 'used': 2.0, 'like': 3.0, 'hold': 1.0, 'hand': 1.0, 'counter': 2.0, 'had': 2.0, 'bar': 1.0, 'last': 1.0, 'threw': 1.0, 'child': 5.0, 'up': 3.0, 'over': 4.0, 'smaller': 1.0, 'wash': 1.0, 'pain': 2.0, 'this': 6.0, 'star': 1.0, 'easier': 1.0, 'a': 7.0, 's': 10.0, 'could': 1.0, 'ended': 1.0, 'years': 2.0, 'both': 1.0, 'all': 1.0, 'other': 2.0, 'playing': 1.0, 'difficult': 1.0, 'discard': 1.0, 'sling': 1.0, 'for': 4.0, 'away': 2.0, 'arms': 1.0, 'and': 11.0, 'entire': 1.0, 'my': 4.0, 'owned': 1.0, 'very': 1.0, 'being': 1.0, 'hence': 1.0, 'well': 2.0, 'i': 9.0, 'are': 2.0, 'lock': 1.0, 'first': 6.0, 'newborns': 1.0, 'pros': 1.0, 'with': 4.0, 'thought': 1.0, 'it': 27.0, 'she': 1.0, 'as': 3.0, 'cracked': 1.0, 'throw': 1.0, 'sort': 1.0, 'great': 2.0, 'total': 2.0, 'having': 1.0, 'tub': 10.0, 'easy': 1.0, 'understand': 1.0, 'out': 1.0, 'the': 24.0, 'of': 5.0, 'once': 2.0, 'really': 1.0, 'grew': 1.0, 'second': 1.0, 'be': 3.0, 'bought': 1.0, 'ones': 2.0, 'one': 5.0, 'any': 1.0, 'your': 5.0, 'bathed': 1.0, 'sink': 2.0, 'need': 1.0, 'or': 1.0, 'large': 1.0, 'also': 1.0, 'side': 1.0, 'leaking': 1.0, 'which': 2.0, 'good': 1.0, 'tummy': 1.0, 'at': 1.0, 'is': 2.0, 'when': 3.0, 'sit': 1.0, 't': 1.0, 'rest': 1.0, 'fairly': 1.0, 'babies': 1.0, 'because': 2.0, 'that': 4.0, 'leaned': 1.0, 'middle': 1.0, 'noise': 1.0, 'their': 1.0, 'bathtub': 1.0, 'goes': 1.0, 'enjoy': 1.0, 'purchased': 1.0, 'splashing': 1.0, 'toys': 1.0, 'removed': 1.0, 'while': 2.0, 'them': 2.0, 'again': 1.0, 'clean': 1.0, 'support': 2.0, 'keep': 2.0, 'makes': 1.0, 'comparison': 1.0, 'can': 4.0, 'so': 2.0, 'much': 2.0, 'where': 1.0, 'grabbing': 1.0, 'across': 1.0, 'shampoo': 1.0, 'base': 1.0, 'cloth': 1.0}
Word element => {'old': 1.0, 'years': 1.0, 'home': 1.0, 'brought': 1.0, 'day': 1.0, 'new': 1.0, 'one': 1.0, 'is': 1.0, 'from': 2.0, 'matter': 1.0, 'bathe': 1.0, 'was': 2.0, 'development': 1.0, 'varies': 1.0, 'either': 1.0, 'alone': 1.0, 'hospital': 1.0, 'course': 1.0, 'child': 1.0, 'up': 1.0, 'sit': 1.0, 'helpful': 1.0, 'used': 3.0, 'her': 7.0, 'though': 1.0, 'help': 1.0, 'sling': 2.0, 'for': 3.0, 'toddler': 1.0, 'newborn': 3.0, 'size': 1.0, 'use': 1.0, 'wonderful': 1.0, 'i': 2.0, '4': 1.0, '3': 1.0, 'bath': 3.0, 'through': 1.0, 'then': 1.0, 'perfect': 2.0, 'this': 2.0, 'with': 2.0, 'we': 3.0, 'a': 5.0, 's': 1.0, 'the': 10.0, 'station': 1.0, '1': 1.0, 'and': 2.0, 'has': 1.0, 'been': 1.0, 'have': 1.0, 'age': 1.0, 'in': 4.0, 'method': 1.0, 'itself': 1.0, 'never': 2.0, 'sink': 1.0, 'to': 6.0, 'our': 1.0, 'as': 2.0, 'few': 1.0, 'worried': 1.0, 'by': 2.0, 'just': 1.0, 'not': 1.0, 'various': 1.0, 'worry': 1.0, 'no': 1.0, 'about': 2.0, 'sponge': 1.0, 'of': 4.0, 'daughter': 1.0, 'water': 1.0, 'it': 3.0, 'she': 2.0, 'very': 1.0, 'grew': 2.0, 'left': 1.0, 'tub': 3.0, 'items': 1.0, 'progressed': 1.0, 'stages': 2.0}
Word element => {'risk': 1.0, 'own': 1.0, 'at': 1.0, 'solution': 1.0, 'buy': 1.0, 'looking': 1.0, 'should': 1.0, 'using': 1.0, 'before': 1.0, 'reviews': 1.0, 'didn': 1.0, 'received': 1.0, 'knees': 1.0, 'don': 1.0, 'be': 1.0, 'would': 2.0, 'this': 3.0, 'big': 1.0, 'in': 1.0, 'son': 1.0, 'and': 2.0, 'currently': 1.0, 'floor': 1.0, 'inside': 1.0, 'down': 1.0, 'your': 1.0, 'think': 1.0, 'on': 1.0, 'put': 1.0, 'check': 1.0, 'back': 1.0, 'have': 2.0, 'probably': 1.0, 'size': 1.0, 'the': 8.0, 'but': 2.0, 'can': 1.0, 'change': 1.0, 'leaks': 2.0, 'some': 1.0, 'if': 2.0, 'miracle': 1.0, 'of': 2.0, 'it': 7.0, 'piece': 1.0, 'with': 3.0, 'use': 1.0, 'appreciate': 1.0, 'every': 1.0, 'junk': 1.0, 'i': 9.0, 'snap': 1.0, 'bathe': 1.0, 'time': 1.0, 'impossible': 1.0, 'as': 1.0, 'all': 1.0, 'to': 6.0, 'gift': 1.0, 'towels': 1.0, 'out': 2.0, 'together': 1.0, 'water': 1.0, 'that': 1.0, 'for': 1.0, 'love': 1.0, 'you': 1.0, 'collect': 1.0, 'am': 2.0, 'tempted': 1.0, 't': 2.0, 's': 1.0, 'could': 1.0, 'a': 2.0, 'beat': 1.0, 'sling': 1.0, 'hammer': 1.0, 'another': 1.0, 'underneath': 1.0, 'my': 3.0, 'by': 1.0, 'just': 1.0, 'take': 1.0, 'easier': 1.0, 'frustrations': 1.0, 'tub': 4.0, 'get': 1.0}
Word element => {'best': 1.0, 'primmo': 1.0, 'standards': 1.0, 'those': 1.0, 'birth': 1.0, 'from': 2.0, 'comfortable': 1.0, 'durable': 1.0, 'be': 1.0, 'to': 3.0, 'has': 1.0, 'good': 1.0, 'dressed': 1.0, 'husband': 1.0, 'while': 1.0, 'surprise': 1.0, 'place': 1.0, 'same': 1.0, 'if': 1.0, 'snaped': 1.0, 'time': 2.0, 'on': 1.0, 'usefull': 1.0, 'bath': 2.0, 'put': 1.0, 'mark': 1.0, 'we': 5.0, 'review': 1.0, 'snap': 2.0, 'didn': 3.0, 'though': 2.0, 'part': 4.0, 'hard': 1.0, 'bottom': 3.0, 'don': 1.0, 'wash': 2.0, 'clean': 1.0, 'leaks': 3.0, 'had': 3.0, 'even': 2.0, 'cloth': 2.0, 'well': 2.0, 'i': 10.0, 'using': 2.0, 'for': 4.0, 'where': 3.0, 't': 5.0, 'fit': 1.0, 'stars': 1.0, 'gets': 2.0, 'storage': 1.0, 'what': 1.0, 'when': 4.0, 'you': 2.0, 'folded': 1.0, 'daughter': 3.0, 'tub': 10.0, 'in': 4.0, 'newborn': 3.0, 'our': 1.0, 'any': 1.0, 'now': 3.0, 'bought': 1.0, 'months': 2.0, 'very': 4.0, 'little': 1.0, 'dirty': 2.0, 'recommend': 1.0, 'was': 3.0, 'with': 1.0, 'this': 3.0, 'easy': 1.0, 'know': 1.0, 'leaves': 1.0, 'found': 2.0, 'it': 6.0, 'toodler': 1.0, 'baby': 3.0, 'she': 1.0, 'reviewers': 2.0, 'doesn': 1.0, 'useful': 2.0, 'of': 2.0, 'the': 25.0, 'that': 4.0, 'because': 4.0, 'not': 1.0, 'means': 1.0, 'will': 2.0, 'but': 3.0, 'after': 2.0, 'immediatly': 1.0, 'each': 1.0, 'properly': 1.0, 'would': 1.0, 'cleaning': 1.0, 'a': 8.0, 'q': 1.0, 'tip': 1.0, 'save': 1.0, 'details': 1.0, 'my': 3.0, 'just': 1.0, 'space': 1.0, 'meet': 1.0, 'ring': 5.0, 'at': 2.0, 'is': 2.0, 'unlike': 1.0, 'ever': 1.0, 'other': 2.0, 'fitted': 1.0, 'given': 1.0, 'and': 4.0, 'seemed': 1.0, 'install': 1.0, 'comfy': 1.0, 'are': 2.0, 'first': 2.0, 'wrote': 1.0, 'started': 1.0, 'point': 1.0, 'old': 1.0, 'eurobath': 2.0, 'have': 3.0, '5': 1.0, '6': 2.0}
Word element => {'as': 1.0, 'cant': 1.0, 'baby': 2.0, 'anyone': 1.0, 'product': 1.0, 'recommend': 1.0, 'would': 1.0, 'that': 1.0, 'a': 3.0, 'definitely': 1.0, 'breeze': 1.0, 'station': 1.0, 'the': 4.0, 'sailing': 1.0, 'adjusted': 1.0, 'transition': 1.0, 'prevent': 1.0, 'smooth': 1.0, 'bath': 3.0, 'time': 1.0, 'has': 1.0, 'love': 1.0, 'grows': 1.0, 'with': 1.0, 'this': 1.0, 'it': 3.0, 'i': 3.0, 'after': 1.0, 'wait': 1.0, 'bit': 1.0, 'difficult': 1.0, 'water': 1.0, 'was': 2.0, 'to': 4.0, 'get': 1.0, 'leaking': 1.0, 'made': 1.0, 'out': 1.0, 'but': 1.0}
Word element => {'herself': 1.0, 'pool': 1.0, 'summer': 1.0, 'its': 1.0, 'from': 1.0, 'use': 2.0, 'product': 1.0, 'highly': 1.0, 'best': 2.0, 'filled': 1.0, 'out': 1.0, 'leaks': 1.0, 'all': 1.0, 'you': 10.0, 'suction': 1.0, 'so': 3.0, 'big': 1.0, 'her': 12.0, 'lay': 1.0, 'would': 4.0, 'tiny': 1.0, 'recommend': 1.0, 'sensations': 1.0, 'these': 1.0, 'finding': 1.0, 'sit': 1.0, 'as': 5.0, 'body': 1.0, 'see': 1.0, 'months': 2.0, 'loved': 1.0, 'deep': 1.0, 'that': 10.0, 'fall': 1.0, 'because': 1.0, 'them': 1.0, 'has': 1.0, 'kicking': 2.0, 'half': 1.0, 'part': 1.0, 'baby': 5.0, 'she': 11.0, 'deal': 1.0, 'how': 2.0, 'for': 8.0, 'basin': 1.0, 'an': 1.0, 'hold': 2.0, 'which': 2.0, 'happily': 1.0, 'backward': 2.0, 'side': 4.0, 'birth': 1.0, 'like': 2.0, 'can': 5.0, 'is': 12.0, 'sits': 3.0, 'ring': 3.0, 'safety': 1.0, 'size': 1.0, 'float': 1.0, 'onto': 1.0, 'bathing': 2.0, 'came': 1.0, 'cannot': 4.0, 'thing': 1.0, 'most': 1.0, '1': 1.0, 'reaching': 1.0, 'off': 2.0, 'kick': 1.0, 'ordinary': 1.0, 'outside': 1.0, 'features': 1.0, 'let': 2.0, 'no': 1.0, 'm': 1.0, 's': 1.0, 'sides': 1.0, 'at': 1.0, 'drain': 1.0, 'was': 2.0, 'accross': 2.0, 'options': 2.0, 'legs': 3.0, 'only': 1.0, 'tub': 1.0, 'went': 1.0, '1st': 1.0, 'on': 1.0, 'once': 2.0, 'bath': 6.0, 'chair': 2.0, '3': 1.0, 'older': 1.0, 'i': 10.0, 'tabs': 1.0, 'through': 1.0, 'watch': 1.0, 'mostly': 1.0, 'before': 1.0, 'wonderful': 1.0, 'of': 6.0, 'covered': 1.0, 'old': 1.0, 'plays': 1.0, 'balance': 1.0, 'course': 1.0, 'if': 1.0, 'shaped': 3.0, 'soft': 1.0, 'downside': 1.0, 'this': 8.0, 'found': 1.0, 'loves': 1.0, 'could': 1.0, 'will': 1.0, 'forward': 3.0, 'the': 29.0, 'experience': 1.0, 'arms': 1.0, 'station': 1.0, 'learnt': 1.0, 'hands': 2.0, 'daughter': 2.0, 'water': 3.0, '7': 1.0, 'up': 4.0, 'room': 1.0, 'are': 2.0, 'my': 2.0, 'splash': 2.0, 'slope': 2.0, 'while': 2.0, 'lying': 1.0, 'but': 1.0, 'keeps': 1.0, 'many': 2.0, 'where': 2.0, 'your': 1.0, 'to': 5.0, 'right': 2.0, 'there': 2.0, 'nearly': 1.0, 'move': 1.0, 'absolutely': 2.0, 'one': 2.0, 'try': 1.0, 'going': 1.0, 'leave': 2.0, '2': 1.0, 'end': 1.0, 'goes': 1.0, 'bad': 1.0, 'middle': 2.0, 'plug': 1.0, 'between': 1.0, 'emphasize': 1.0, 'fun': 1.0, 'bathtubs': 1.0, 'immersed': 1.0, 't': 1.0, 'much': 1.0, 'do': 2.0, 'magical': 1.0, 'put': 1.0, 'a': 7.0, 'leaning': 1.0, 'floating': 1.0, 'plastic': 1.0, 'toys': 1.0, 'down': 1.0, 'also': 2.0, 'folds': 1.0, 'front': 1.0, 'should': 1.0, 'take': 3.0, 'never': 1.0, 'halves': 1.0, 'when': 1.0, 'baths': 2.0, 'with': 1.0, 'or': 2.0, 'nor': 1.0, 'rail': 2.0, 'head': 1.0, 'under': 1.0, 'get': 2.0, 'however': 1.0, 'often': 1.0, 'two': 2.0, 'in': 11.0, 'together': 1.0, 'were': 2.0, 'full': 1.0, 'don': 1.0, 'infant': 2.0, 'by': 2.0, 'though': 1.0, 'now': 1.0, 'slide': 2.0, 'problem': 1.0, 'fully': 1.0, 'it': 16.0, 'vigilant': 1.0, 'be': 1.0, 'useful': 1.0, 'join': 1.0, 'and': 17.0, 'just': 1.0, 'not': 3.0, 'different': 1.0, '4': 3.0, 'depths': 1.0, 'wish': 1.0, 'long': 1.0, 'deeper': 1.0, 'shallower': 1.0, 'newborns': 1.0, 'enough': 1.0, 'suggestion': 1.0}
Word element => {'too': 1.0, 'leak': 1.0, 'at': 1.0, 'not': 2.0, 'and': 2.0, 'baby': 1.0, 'u': 1.0, 'my': 2.0, 'our': 1.0, 'used': 1.0, 'son': 2.0, 'time': 1.0, 'for': 1.0, 'the': 1.0, 'great': 1.0, 'we': 2.0, 'hard': 1.0, 'shower': 1.0, 'it': 6.0, 'first': 1.0, 'was': 2.0, 'to': 1.0, 'loved': 1.0, 'got': 1.0, 'use': 1.0, 'did': 1.0}
Word element => {'my': 1.0, 'and': 1.0, 'kids': 1.0, 'convienant': 1.0, 'love': 1.0, 'this': 1.0, 'bath': 1.0, 'tub': 1.0, 'its': 1.0, 'me': 1.0, 'safe': 1.0, 'for': 2.0, 'them': 1.0}
Word element => {'far': 1.0, 'buy': 1.0, 'good': 1.0, 'a': 1.0, 'be': 1.0, 'used': 1.0, 'have': 1.0, 'this': 3.0, 'first': 1.0, 'not': 2.0, 'does': 1.0, 'because': 1.0, 'buying': 1.0, 'to': 2.0, 'turned': 1.0, 'my': 3.0, 'yet': 1.0, 'bought': 1.0, 'one': 1.0, 'the': 3.0, 'stage': 2.0, 'and': 2.0, 'years': 1.0, 'baby': 1.0, 'i': 5.0, '4': 1.0, 'out': 1.0, 'newborn': 1.0, 'elongates': 1.0, 'although': 1.0, 'tub': 3.0, 'after': 1.0, 'hating': 1.0, 'growing': 1.0, 'daughter': 1.0, 'that': 2.0, 'loves': 2.0, 'bath': 3.0, 'think': 1.0, 'sitting': 2.0, 'up': 2.0, 'of': 1.0, 'leak': 1.0, 'in': 2.0, 'turn': 1.0, 'it': 2.0, 'she': 2.0, 'so': 1.0, 'time': 1.0, 'like': 2.0, 'is': 1.0, 'secure': 1.0, 'ring': 1.0, 'fit': 1.0}
Word element => {'haven': 1.0, 'down': 1.0, 'read': 1.0, 'once': 1.0, 'but': 1.0, 'first': 1.0, 'problem': 2.0, 'had': 2.0, 'something': 1.0, 'or': 1.0, 'ready': 1.0, 'towel': 1.0, 'his': 1.0, 'overwhelmed': 1.0, 'since': 1.0, 'feeling': 1.0, 'without': 1.0, 'the': 10.0, 'place': 2.0, 'and': 6.0, 'nice': 1.0, 'until': 1.0, 'really': 1.0, 'newborn': 1.0, 'like': 2.0, 'could': 2.0, 'we': 6.0, 'a': 4.0, 'my': 1.0, 'our': 1.0, 'been': 1.0, 'loves': 1.0, 'decided': 1.0, 'instructions': 1.0, 'bought': 1.0, 'too': 2.0, 'one': 1.0, 'baby': 3.0, 'she': 1.0, 'didn': 1.0, 'owned': 1.0, 'contact': 1.0, 'necessity': 1.0, 'have': 3.0, 'lets': 1.0, 'helps': 1.0, 'sling': 1.0, 'for': 2.0, 'with': 3.0, 'this': 3.0, 'us': 1.0, 'mom': 1.0, 'wanted': 1.0, 'was': 1.0, 'not': 1.0, 'best': 1.0, 'explore': 1.0, 'enough': 1.0, 'bathtub': 1.0, 'chair': 1.0, 'bath': 5.0, 'leaking': 1.0, 'good': 1.0, 'time': 1.0, 'ever': 1.0, 'has': 1.0, 't': 3.0, 'likes': 1.0, 'bottom': 1.0, 'he': 3.0, 'sit': 1.0, 'way': 1.0, 'water': 2.0, 'up': 1.0, 'don': 1.0, 'pushed': 1.0, 'by': 1.0, 'himself': 1.0, 'keep': 1.0, 'point': 1.0, 'tub': 2.0, 'get': 1.0, 'to': 3.0, 'became': 1.0, 'secure': 1.0, 'slipping': 1.0, 'it': 3.0, 'already': 1.0, 'him': 2.0, 'safely': 1.0, 'after': 1.0, 'securely': 2.0, 'in': 2.0, 'away': 1.0, 'now': 1.0, 'almost': 1.0, 'that': 3.0, 'because': 2.0, '20': 1.0, 'worry': 1.0, 'mos': 1.0, 'under': 1.0, 'use': 1.0, 'better': 1.0, 'i': 3.0, 'especially': 1.0, 'about': 1.0, 'accidentally': 1.0, 'still': 1.0, 'if': 1.0, 'is': 2.0, 'ring': 2.0, 'at': 2.0, 'look': 1.0, 'second': 1.0}
Word element => {'list': 1.0, 'on': 1.0, 'definetly': 1.0, 'my': 2.0, 'registery': 1.0, 'one': 1.0, 'recommend': 1.0, 'i': 2.0, 'water': 1.0, 'bath': 1.0, 'do': 1.0, 'and': 2.0, 'ware': 1.0, 'the': 3.0, 'all': 1.0, 'begin': 1.0, 'expanded': 1.0, 'now': 1.0, 'to': 2.0, 'child': 1.0, 'out': 1.0, 'tub': 1.0, 'hold': 1.0, 'strip': 1.0, 'problem': 1.0, 'rubber': 1.0, 'second': 1.0, 'is': 4.0, 'having': 1.0, 'connect': 1.0, 'pieces': 1.0, 'there': 1.0, 'that': 1.0, 'expands': 1.0, 'not': 3.0, 'because': 1.0, 'will': 1.0, 'at': 1.0, 'once': 1.0, 'two': 1.0, 'this': 3.0, 'it': 1.0, 'after': 1.0, 'am': 1.0, 'while': 1.0, 'a': 2.0, 'stip': 1.0}
Word element => {'parents': 1.0, 'new': 1.0, 'highly': 1.0, 'dream': 1.0, 'works': 1.0, 'loves': 1.0, 'daughter': 1.0, 'mother': 1.0, 'delight': 1.0, 'keep': 1.0, 'three': 1.0, 'howver': 1.0, 'on': 1.0, 'not': 1.0, 'can': 1.0, 'of': 1.0, 'baths': 1.0, 'first': 1.0, 'so': 1.0, 'old': 1.0, 'legs': 1.0, 'after': 1.0, 'over': 1.0, 'begin': 1.0, 'research': 1.0, 'this': 3.0, 'i': 3.0, 'got': 1.0, 'girl': 1.0, 'previously': 1.0, 'stage': 2.0, '6': 2.0, 'second': 1.0, 'registered': 1.0, 'started': 1.0, 'baby': 1.0, 'reccommend': 1.0, 'another': 1.0, 'my': 2.0, 'had': 2.0, 'leaking': 1.0, 'was': 1.0, 'for': 3.0, 'like': 1.0, 'comment': 1.0, 'using': 1.0, 'rough': 1.0, 'though': 1.0, 'tub': 7.0, 'in': 2.0, 'the': 3.0, 'great': 1.0, 'her': 2.0, 'last': 1.0, 'it': 2.0, 'month': 2.0, 'she': 2.0, 'an': 1.0, 'incredible': 1.0, 'suction': 1.0, 'no': 2.0, 'amp': 4.0, 'parts': 1.0, 'all': 1.0, 'to': 2.0, 'our': 2.0, 'caught': 1.0, 'is': 2.0, 'scrape': 1.0, 'angel': 1.0, 'little': 1.0, 'a': 2.0, 'we': 2.0, 'when': 1.0}
Word element => {'right': 1.0, 'getting': 1.0, 'since': 1.0, 'with': 1.0, 'become': 1.0, 'bathtime': 1.0, 'him': 2.0, 'lift': 1.0, 'favorite': 1.0, 'down': 1.0, 'water': 1.0, 'into': 2.0, 'the': 6.0, 'designed': 1.0, 'slid': 1.0, 'much': 2.0, 'dump': 1.0, 'always': 1.0, 'found': 1.0, 'this': 2.0, 'he': 1.0, 'hard': 1.0, 'it': 2.0, 'was': 1.0, 'had': 1.0, 'get': 1.0, 'tub': 4.0, 'out': 1.0, 'fits': 1.0, 'sling': 2.0, 'for': 1.0, 'go': 1.0, 'a': 1.0, 'we': 4.0, 'back': 1.0, 'son': 1.0, 'to': 2.0, 'our': 1.0, 'better': 1.0, 'their': 1.0, 'position': 1.0, 'say': 1.0, 'is': 2.0, 'secure': 1.0, 'also': 1.0, 'sink': 1.0, 'bums': 1.0, 'your': 1.0, 'constantly': 1.0, 'on': 1.0, 'very': 1.0, 'little': 1.0, 'went': 1.0, 'uncomfortable': 2.0, 'bought': 1.0, 'evenflo': 1.0, 'snug': 1.0, 'has': 1.0, 'comfort': 2.0, 'over': 1.0, 'up': 1.0, 'cheaper': 1.0, 'and': 8.0, 'too': 1.0, 'baby': 1.0}
Word element => {'he': 1.0, 'almost': 1.0, 'bathe': 1.0, 'person': 1.0, 'value': 1.0, 'water': 1.0, 'great': 1.0, 'tubful': 1.0, 'waste': 1.0, 'having': 1.0, 'from': 1.0, 'us': 1.0, 'saves': 1.0, 'use': 1.0, 'problem': 1.0, 'one': 2.0, 'months': 1.0, 'on': 1.0, 'stuck': 1.0, 'tiny': 2.0, 'was': 1.0, 'sink': 1.0, 'outgrew': 1.0, 'if': 1.0, 'regular': 1.0, 'in': 3.0, 'out': 1.0, 'expanded': 1.0, 'bad': 1.0, '8': 1.0, 'the': 5.0, 'position': 1.0, 'of': 1.0, 'once': 1.0, 'at': 1.0, 'not': 1.0, 'issue': 1.0, 'tub': 5.0, 'sure': 1.0, 'this': 3.0, 'with': 2.0, 'it': 4.0, 'is': 2.0, 'figured': 1.0, 'why': 1.0, 'locking': 1.0, 'problems': 1.0, 'still': 1.0, 'son': 2.0, 'got': 1.0, 'reviews': 1.0, 'there': 1.0, 'leak': 1.0, 'don': 1.0, 'no': 2.0, 'about': 1.0, 'slight': 1.0, 'snap': 1.0, 'right': 2.0, 'will': 1.0, 'but': 2.0, 'now': 2.0, 'weeks': 1.0, 't': 1.0, 'a': 2.0, 'we': 5.0, 'loves': 1.0, 'that': 1.0, 'to': 2.0, 'our': 4.0, 'had': 1.0, 'used': 1.0, 'for': 3.0, 'product': 1.0, 'and': 3.0, 'too': 1.0, 'starting': 1.0, 'countertop': 1.0, 'you': 1.0, 'when': 1.0}
Word element => {'dont': 1.0, 'purchase': 1.0, 'bath': 1.0, 'a': 1.0, 'while': 1.0, 'daughter': 1.0, 'storage': 1.0, 'for': 2.0, 'together': 1.0, 'slide': 1.0, 'my': 1.0, 'push': 1.0, 'water': 1.0, 'pooped': 1.0, 'wish': 1.0, 'recommend': 1.0, 'read': 1.0, 'the': 4.0, 'even': 1.0, 'down': 1.0, 'before': 2.0, 'tub': 1.0, 'to': 2.0, 'bought': 1.0, 'i': 4.0, 'because': 1.0, 'reading': 1.0, 'bottom': 1.0, 'this': 2.0, 'it': 4.0, 'hard': 2.0, 'taking': 1.0, 'reviews': 1.0, 'leaked': 2.0, 'from': 1.0, 'day': 1.0, 'and': 1.0, '1': 1.0, 'lock': 1.0, 'on': 1.0, 'is': 2.0, 'so': 1.0}
Word element => {'now': 1.0, 'thing': 1.0, 'saying': 1.0, 'another': 1.0, 'item': 1.0, 'exchange': 1.0, 'not': 2.0, 'michigan': 1.0, 'sad': 1.0, 'some': 1.0, 'due': 1.0, 'bath': 1.0, 'many': 1.0, 'baby': 1.0, 'fill': 1.0, 'sitting': 1.0, 'comfortable': 1.0, 'don': 1.0, 'strong': 1.0, 'else': 1.0, 'dont': 1.0, 'larger': 1.0, 'as': 1.0, 'leave': 1.0, 'grim': 1.0, 'but': 3.0, 'think': 1.0, 'problem': 1.0, 'could': 1.0, 'here': 1.0, 'show': 1.0, 'have': 1.0, 'running': 2.0, 'seem': 1.0, 'they': 2.0, 'any': 1.0, 'sale': 1.0, 'brands': 1.0, 'move': 1.0, 'choices': 2.0, 'very': 1.0, 'these': 1.0, 'selling': 1.0, 'thinking': 1.0, 'well': 1.0, 'i': 10.0, 'contraption': 1.0, 'nice': 1.0, 'toys': 1.0, 'head': 1.0, 'husband': 1.0, 'him': 1.0, '9': 1.0, 'it': 7.0, 'knowing': 1.0, 'water': 2.0, 'up': 1.0, '7': 1.0, 'and': 4.0, 'the': 10.0, 'there': 1.0, 'contact': 1.0, 'went': 2.0, 'looks': 1.0, 'my': 2.0, 'grab': 1.0, 'company': 2.0, 'also': 1.0, 'us': 1.0, 'pressing': 1.0, 'was': 3.0, 'listen': 1.0, 'everyone': 1.0, 'doesn': 1.0, 'to': 8.0, 'stores': 1.0, 'cups': 2.0, 'center': 1.0, 'apparent': 1.0, 'tub': 5.0, 'area': 1.0, 'reason': 1.0, 'record': 1.0, 'ok': 1.0, 'release': 1.0, 'having': 1.0, 'siv': 1.0, 'after': 3.0, 'leaky': 1.0, 'are': 1.0, 'first': 1.0, 'know': 1.0, 'found': 1.0, 'be': 3.0, 'floor': 1.0, 'r': 1.0, 'believe': 1.0, 'bought': 2.0, 'too': 1.0, 'one': 1.0, 'few': 1.0, 'this': 6.0, 'cant': 1.0, 'play': 1.0, 'about': 2.0, 'let': 1.0, 'no': 3.0, 'forth': 1.0, 'blue': 1.0, 'small': 1.0, 'a': 2.0, 't': 3.0, 'month': 2.0, 'same': 2.0, 'gave': 1.0, 'way': 1.0, 'for': 6.0, 'people': 1.0, 'runs': 1.0, 'leaks': 1.0, 'would': 1.0, 'sliding': 1.0, 'either': 2.0, 'joke': 1.0, 'out': 2.0, 'new': 1.0, 'model': 1.0, 'time': 2.0, '1': 1.0, 'since': 1.0, 'use': 1.0, 'taking': 1.0, 'older': 1.0, '3': 2.0, 'on': 2.0, 'times': 2.0, 'what': 1.0, 'when': 2.0, 'or': 1.0, 'so': 1.0, 'can': 1.0, 'over': 1.0, 'work': 1.0, 'fix': 2.0, 'he': 2.0, 'messed': 1.0, 'with': 1.0, 'back': 2.0, 'locking': 1.0, 'in': 6.0, 'good': 1.0, 'which': 1.0, 'rather': 1.0, 'like': 1.0, 'ring': 1.0, 'is': 5.0, 'quite': 1.0, 'difficult': 1.0, 'if': 1.0, 'every': 1.0, 'still': 1.0, 'just': 1.0, 'going': 2.0, 'asap': 1.0, 'site': 1.0}
Word element => {'worth': 1.0, 'more': 1.0, 'is': 1.0, 'floor': 1.0, 'and': 1.0, 'out': 1.0, 'leaked': 1.0, 'always': 1.0, 'device': 1.0, 'middle': 1.0, 'how': 1.0, 'hard': 1.0, 'matter': 1.0, 'counter': 2.0, 'kitchen': 1.0, 'use': 2.0, 'in': 2.0, 'onto': 1.0, 'years': 1.0, 'for': 2.0, 'last': 1.0, 'home': 1.0, 'though': 1.0, 'most': 1.0, 'can': 1.0, 'it': 4.0, 'excited': 1.0, 'first': 1.0, 'this': 3.0, 'so': 1.0, 'surface': 1.0, 'thinking': 1.0, 'i': 4.0, 'you': 1.0, 'when': 1.0, 'well': 1.0, 's': 2.0, 'a': 1.0, 'recieved': 1.0, 'tub': 3.0, 'pressed': 1.0, 'no': 1.0, 'tubs': 1.0, 'not': 2.0, 'than': 1.0, 'because': 1.0, 'bumps': 1.0, 'was': 2.0, 'our': 1.0, 'cups': 1.0, 'to': 2.0, 'would': 1.0, 'trouble': 1.0, 'bathtub': 1.0, 'the': 4.0, 'suction': 1.0, 'will': 1.0, 'locking': 1.0, 'non': 2.0, 'slip': 2.0, 'adhere': 1.0, 'are': 2.0, 'that': 1.0, 'what': 1.0, 'little': 1.0, 'fine': 1.0, 'water': 1.0, 'planned': 1.0, 'your': 2.0, 'on': 2.0}
Word element => {'anyone': 1.0, 'recommend': 1.0, 'not': 1.0, 'marks': 1.0, 'scrap': 1.0, 'bottom': 1.0, 'would': 1.0, 'position': 1.0, 'that': 1.0, 'out': 1.0, 'take': 1.0, 'legs': 1.0, 'her': 3.0, 'between': 1.0, 'and': 2.0, 'bar': 2.0, 'red': 1.0, 'with': 1.0, 'have': 1.0, 'up': 1.0, 'sit': 2.0, 'terrible': 1.0, 'item': 1.0, 'can': 3.0, 'it': 4.0, 'rub': 1.0, 'hard': 1.0, 'gift': 1.0, 'this': 3.0, 'found': 1.0, 'around': 1.0, 'is': 3.0, 'registered': 1.0, 'very': 1.0, 'open': 1.0, 'received': 1.0, 'station': 1.0, 'the': 6.0, 'once': 2.0, 'shower': 1.0, 'of': 4.0, '1': 1.0, 'a': 1.0, 'for': 2.0, 'i': 6.0, '4': 1.0, 'in': 1.0, 'reason': 1.0, 'one': 1.0, 'reasons': 1.0, 'because': 2.0, 'them': 1.0, 'baby': 2.0, 'storage': 2.0, 'another': 1.0, 'you': 3.0, 'thighs': 1.0, 'compact': 1.0, 'defeated': 1.0, 'against': 1.0, 'so': 2.0, 'its': 1.0, 'as': 1.0, 'to': 2.0, 'leaves': 1.0, 'now': 1.0, 'why': 2.0, 'purpose': 1.0, 'keep': 2.0, 'which': 1.0, 'your': 1.0, 'bath': 1.0, 'make': 1.0, 'think': 1.0, 'easy': 2.0, 'closing': 1.0, 'tub': 2.0}
Word element => {'him': 1.0, 'have': 1.0, 'his': 1.0, 'smashes': 1.0, 'forward': 1.0, 'son': 1.0, 'my': 1.0, 'up': 1.0, 'over': 1.0, 'collapse': 1.0, 'roll': 1.0, 'enough': 1.0, 'fit': 1.0, 'used': 1.0, 'part': 1.0, 'that': 2.0, 'terrible': 1.0, 'our': 1.0, 'to': 2.0, 'old': 1.0, 'first': 1.0, 'it': 2.0, 'he': 1.0, 'let': 1.0, 'the': 8.0, 'me': 1.0, 'and': 3.0, 'mesh': 1.0, 'baby': 1.0, 'great': 1.0, 'comfortable': 1.0, 'until': 1.0, 'slides': 1.0, 'itself': 1.0, 'in': 2.0, 'cannot': 1.0, 'on': 2.0, 'bath': 2.0, 'sitting': 1.0, 'but': 1.0, 'crotch': 1.0, 'was': 2.0, 'doesn': 1.0, 'get': 1.0, 'tub': 2.0, 'say': 1.0, 'is': 2.0, 'just': 1.0, 'by': 1.0, 'spine': 1.0, 'you': 1.0, 't': 1.0, 'we': 2.0, 's': 1.0, 'push': 1.0, 'right': 2.0, 'sling': 1.0, 'ring': 1.0, 'so': 1.0}
Word element => {'hated': 1.0, 'people': 1.0, 'half': 1.0, 'product': 1.0, 'buy': 1.0, 'effort': 1.0, 'in': 3.0, 'is': 1.0, 'upright': 1.0, 'thing': 1.0, 'that': 1.0, 'just': 2.0, 'not': 1.0, 'plastic': 1.0, 'helps': 1.0, 'ended': 1.0, 'the': 3.0, 'reviewing': 1.0, 'and': 2.0, 'sit': 2.0, 'way': 1.0, 'it': 6.0, 'm': 1.0, 'you': 1.0, 'when': 2.0, 'i': 1.0, 'trying': 1.0, 'putting': 1.0, 'huge': 1.0, 'one': 1.0, 'tight': 1.0, 'of': 3.0, 'over': 1.0, 'don': 1.0, 'up': 1.0, 'baby': 1.0, 'them': 2.0, 'someplace': 1.0, 'water': 3.0, 're': 1.0, 'our': 1.0, 'to': 2.0, 'had': 1.0, 'put': 1.0, 'money': 1.0, 'but': 1.0, 'total': 1.0, 'bigger': 1.0, 'joke': 1.0, 't': 1.0, 's': 2.0, 'a': 5.0, 'we': 1.0, 'bathtub': 1.0, 'full': 1.0, 'so': 1.0, 'son': 1.0, 'waste': 1.0}
Word element => {'junk': 1.0, 'father': 1.0, 'did': 1.0, 'so': 1.0, 'and': 1.0, 'this': 1.0, 'it': 1.0, 'together': 1.0, 'pour': 1.0, 'two': 1.0, 'husband': 1.0, 'the': 3.0, 'my': 2.0, 'product': 1.0, 'be': 1.0, 'must': 1.0, 'water': 1.0, 'wrong': 1.0, 'something': 1.0, 'thought': 1.0, 'plastic': 1.0, 'tried': 1.0, 'i': 2.0, 'out': 1.0, 'bottom': 1.0, 'separate': 1.0, 'doing': 1.0, 'peices': 1.0, 'would': 1.0, 'never': 1.0, 'is': 1.0, 'really': 1.0, 'snapped': 1.0}
Word element => {'itself': 1.0, 'less': 1.0, 'lot': 1.0, 'buy': 1.0, 'you': 1.0, 'wonderful': 1.0, 'that': 2.0, 'sling': 1.0, 'shut': 1.0, 'even': 1.0, 'used': 3.0, 'his': 1.0, 'cause': 1.0, 'my': 2.0, 'sounded': 1.0, 'by': 1.0, 'just': 1.0, 'thrilled': 1.0, 'only': 2.0, 'hard': 1.0, 'it': 2.0, 'little': 2.0, 'gift': 1.0, 'babyshower': 1.0, 'for': 2.0, 'one': 1.0, 'didnt': 1.0, 'really': 1.0, 'is': 1.0, 'and': 3.0, 'son': 1.0, 'the': 5.0, 'was': 4.0, 'as': 1.0, 'to': 1.0, 'thing': 1.0, 'i': 5.0, 'insert': 3.0, 'leaked': 1.0, 'received': 1.0, 'how': 1.0, 'could': 1.0, 'we': 1.0, 'a': 2.0, 'going': 1.0, 'kicking': 1.0, 'stay': 1.0, 'money': 1.0, 'but': 2.0, 'slanted': 1.0, 'tub': 1.0, 'bathe': 1.0, 'so': 2.0, 'feet': 1.0, 'pounded': 1.0, 'think': 1.0, 'on': 1.0, 'this': 1.0, 'painful': 1.0, 'wouldnt': 1.0, 'clamped': 1.0}
Word element => {'price': 1.0, 'cause': 1.0, 'exchange': 1.0, 'so': 1.0, 'perfect': 1.0, 'worked': 1.0, 'end': 1.0, 'sat': 1.0, 'having': 1.0, 'with': 1.0, 'great': 1.0, 'comfortable': 1.0, 'more': 1.0, 'own': 1.0, 'work': 2.0, 'but': 1.0, 'sitting': 1.0, '2': 1.0, 'support': 1.0, 'some': 1.0, 'these': 1.0, 'wobbled': 1.0, 'mother': 1.0, 'on': 2.0, 'put': 1.0, 'felt': 1.0, 'she': 2.0, 'it': 6.0, 'total': 1.0, 'just': 1.0, 'frame': 2.0, 'and': 4.0, 'perfectly': 1.0, 'guite': 1.0, 'of': 2.0, 'you': 1.0, 'when': 2.0, 'together': 2.0, 'daughter': 1.0, 'bought': 1.0, 'one': 4.0, 'for': 4.0, 'sling': 3.0, 'i': 2.0, 'house': 1.0, 'leaked': 2.0, 'if': 1.0, 'dud': 1.0, 'our': 1.0, 'next': 1.0, 'into': 1.0, 'that': 2.0, 'grandma': 1.0, 'even': 1.0, 'used': 1.0, 'her': 3.0, 'doesn': 1.0, 'was': 5.0, 'bent': 1.0, 'my': 2.0, 'went': 1.0, 'right': 1.0, 'funny': 1.0, 'fine': 2.0, 'mine': 1.0, 'never': 1.0, 'snapped': 1.0, 'the': 8.0, 'place': 1.0, 'might': 1.0, 't': 1.0, 'a': 2.0, 's': 2.0, 'we': 1.0, 'after': 1.0, 'outgrew': 1.0, 'get': 1.0, 'tub': 2.0}
Word element => {'so': 1.0, 'care': 1.0, 'far': 1.0, 'wont': 1.0, 'how': 1.0, 'water': 2.0, 'basically': 1.0, 'the': 4.0, 'useless': 1.0, 'it': 3.0, 'dont': 2.0, 'this': 1.0, 'bough': 1.0, 'pouring': 1.0, 'i': 4.0, 'bath': 2.0, 'use': 1.0, 'didnt': 1.0, 'realize': 1.0, 'just': 1.0, 'know': 1.0, 'stay': 1.0, 'not': 1.0, 'before': 1.0, 'many': 1.0, 'leaking': 1.0, 'method': 1.0, 'in': 3.0, 'what': 2.0, 'had': 1.0, 'its': 2.0, 'problems': 1.0, 'from': 1.0, 'to': 1.0, 'as': 2.0, 'kind': 1.0, 'you': 1.0, 'impossible': 1.0, 'keep': 1.0, 'or': 1.0, 'out': 1.0, 'fitting': 1.0, 'of': 1.0, 'would': 1.0, 'actually': 2.0, 'fit': 1.0, 'but': 1.0, 'definately': 1.0, 'sink': 2.0, 'mine': 1.0}
Word element => {'rinsed': 1.0, 'his': 1.0, 'washed': 1.0, 'on': 1.0, 'lay': 1.0, 'old': 1.0, 'months': 1.0, 'he': 1.0, 'big': 1.0, 'and': 1.0, 'too': 1.0, 'is': 1.0, 'now': 1.0, 'that': 2.0, 'him': 2.0, 'in': 2.0, 'would': 1.0, 'not': 2.0, 'help': 1.0, 'sling': 2.0, 'for': 3.0, 'push': 1.0, 'my': 4.0, 'latch': 1.0, 'off': 1.0, '17': 1.0, 'which': 1.0, 'cannot': 1.0, 'like': 2.0, 'it': 6.0, 'with': 1.0, 'because': 3.0, 'does': 1.0, 'i': 4.0, 'end': 1.0, 'do': 2.0, 'to': 7.0, 'husband': 1.0, 'tub': 2.0, 'wash': 1.0, 'don': 1.0, 'prefers': 1.0, 'we': 1.0, 't': 1.0, 's': 3.0, 'a': 2.0, 'bar': 1.0, 'this': 1.0, 'pain': 1.0, 'support': 1.0, 'son': 3.0, 'fold': 1.0, 'storage': 1.0, 'still': 2.0, 'have': 3.0, 'way': 1.0, 'sit': 1.0, 'use': 2.0, 'sponge': 1.0, 'reach': 1.0, 'place': 1.0, 'the': 5.0, 'without': 1.0, 'toddler': 1.0, 'hair': 1.0, 'easier': 1.0}
Word element => {'couple': 1.0, 'gift': 1.0, 'i': 2.0, 'penny': 1.0, 'is': 1.0, 'he': 1.0, 'energy': 1.0, 'saving': 1.0, 'in': 1.0, 'regular': 1.0, 'have': 2.0, 'its': 1.0, 'says': 1.0, 'holding': 1.0, 'sling': 1.0, 'fine': 1.0, 'were': 1.0, 'economical': 1.0, 'husband': 2.0, 'family': 1.0, 'my': 3.0, 'friends': 1.0, 'so': 1.0, 'grew': 1.0, 'read': 2.0, 'when': 1.0, 'water': 1.0, 'daughter': 3.0, 'her': 1.0, 'used': 2.0, 'instructions': 2.0, 'use': 1.0, 'pincher': 1.0, 'loved': 1.0, 'then': 1.0, 'and': 3.0, 'fill': 1.0, 'now': 1.0, 'bar': 1.0, 'had': 6.0, 'with': 5.0, 'first': 2.0, 'this': 5.0, 'she': 1.0, 'it': 6.0, 'let': 1.0, 'outgrew': 1.0, 'nearly': 1.0, 'tub': 4.0, 'as': 1.0, 'actual': 1.0, 'outside': 1.0, 'to': 5.0, 'our': 4.0, 'for': 1.0, 'actually': 1.0, 'product': 1.0, 'love': 1.0, 'bought': 1.0, 'one': 1.0, 'toys': 1.0, 'buy': 1.0, 'we': 10.0, 'a': 5.0, 'since': 1.0, 'new': 2.0, 'night': 1.0, 'baby': 1.0, 'years': 1.0, 'problem': 1.0, 'the': 7.0, 'recommend': 1.0, 'was': 1.0, 'leaking': 1.0, 'type': 1.0, 'because': 2.0, 'that': 1.0, 'been': 1.0, 'highly': 1.0, 'didnt': 2.0, '3': 1.0, 'shower': 1.0, 'once': 1.0, 'of': 2.0, 'bother': 1.0}
Word element => {'followed': 1.0, 'lying': 1.0, 'huge': 1.0, 'total': 1.0, 'under': 1.0, 'wants': 1.0, 'hand': 1.0, 'keep': 1.0, 'who': 1.0, 'still': 1.0, 'if': 1.0, 'everything': 1.0, 'slipping': 1.0, 'waste': 1.0, 'exactly': 1.0, 'down': 2.0, 'fold': 1.0, 'bottom': 1.0, 'baby': 3.0, 'offers': 1.0, 'snapped': 1.0, 'also': 1.0, 'us': 1.0, 'purchasing': 1.0, 'tub': 7.0, 'sure': 1.0, 'have': 1.0, 'supposedly': 1.0, 'bath': 4.0, 'didn': 1.0, 'been': 1.0, 'that': 3.0, 'into': 1.0, 'babies': 1.0, 'versatility': 1.0, 'time': 1.0, 'registered': 1.0, 'it': 2.0, 'kept': 1.0, 'found': 1.0, 'easy': 1.0, 'however': 1.0, 'try': 1.0, 'and': 7.0, 't': 2.0, 'a': 3.0, 'the': 8.0, 'place': 1.0, 'directions': 1.0, 'for': 3.0, 'sling': 2.0, 'would': 1.0, 'summer': 1.0, 'not': 3.0, 'entire': 1.0, 'my': 4.0, 'me': 1.0, 'infants': 1.0, 'work': 1.0, 'but': 1.0, 'can': 1.0, 'i': 8.0, 'well': 1.0, 'was': 1.0, 'recommend': 1.0, 'at': 1.0, 'ring': 1.0, 'is': 1.0, 'which': 2.0, 'based': 1.0, 'made': 2.0, 'plan': 1.0, 'an': 1.0, 'thing': 1.0, 'hoping': 1.0, 'to': 2.0, 'isn': 1.0, 'leaked': 1.0, 'on': 2.0, 'amount': 1.0, 'ended': 1.0, 'less': 1.0, 'up': 3.0, 'infant': 1.0, 'do': 2.0, 'r': 1.0, 'this': 4.0, 'highly': 1.0, 'portion': 1.0, 'stressful': 1.0, 'both': 1.0, 'in': 1.0, 'seat': 1.0, 'm': 1.0, 'her': 1.0, 'use': 2.0, 'leaks': 1.0, 'again': 1.0, 'once': 1.0, 'sit': 1.0}
Word element => {'else': 1.0, 'buy': 1.0, 'mo': 1.0, 'was': 1.0, 'after': 1.0, 'months': 1.0, 'about': 1.0, 'born': 1.0, 'went': 1.0, 'self': 1.0, 'but': 1.0, 'few': 1.0, 'just': 1.0, 'in': 1.0, 'due': 1.0, '17': 1.0, 'using': 1.0, 'and': 2.0, 'new': 1.0, 'something': 2.0, 'that': 2.0, 'good': 1.0, 'off': 1.0, 'ago': 1.0, 'a': 4.0, 'have': 1.0, 'at': 1.0, 'not': 1.0, 'trash': 1.0, 'say': 1.0, 'i': 3.0, 'got': 1.0, 'daughter': 2.0, 'for': 4.0, 'love': 1.0, 'sling': 1.0, 'once': 1.0, 'shower': 1.0, 'with': 1.0, 'it': 1.0, 'my': 3.0, 'this': 1.0, 'pain': 2.0, '3': 1.0, 'on': 1.0, 'do': 1.0, 'empty': 1.0, 'its': 4.0, 'our': 1.0, 'all': 1.0, 'cups': 1.0, 'to': 5.0, 'baby': 2.0, 'newborn': 1.0, 'an': 1.0, 'will': 1.0, 'get': 1.0, 'tub': 3.0, 'weeks': 1.0, 'fill': 1.0, 'the': 5.0, 'be': 1.0, 'suction': 1.0, 'bottom': 1.0, 'are': 1.0, 'so': 1.0, 'they': 1.0, 'part': 1.0, 'hard': 1.0, 'stick': 1.0, 'big': 2.0, 'came': 1.0}
Word element => {'especially': 1.0, 'grow': 1.0, 'better': 2.0, 'probably': 1.0, '3': 1.0, 'i': 1.0, 'without': 1.0, 'bath': 1.0, 'easier': 1.0, 'worthless': 1.0, 'newborns': 1.0, 'just': 1.0, 'or': 1.0, 'when': 1.0, 'premies': 1.0, 'have': 1.0, 'you': 1.0, 'bathed': 1.0, 'at': 1.0, 'is': 3.0, 'not': 2.0, 'initially': 1.0, 'more': 1.0, 'babies': 2.0, 'position': 1.0, 'full': 1.0, 'this': 4.0, 'now': 1.0, 'almost': 1.0, 'attempt': 1.0, 'real': 1.0, 'and': 4.0, 'tub': 9.0, 'spot': 1.0, 'seemed': 1.0, 'pretty': 1.0, 'pulled': 1.0, 'to': 9.0, 'our': 4.0, 'all': 2.0, 'week': 1.0, 'infant': 1.0, 'on': 2.0, 'realize': 1.0, 'their': 1.0, 'also': 2.0, 'seems': 1.0, 'in': 2.0, 'sponge': 2.0, 'give': 1.0, 'there': 4.0, 'into': 3.0, 'hospital': 1.0, 'for': 6.0, 'using': 2.0, 'willing': 1.0, 'tiny': 1.0, 'small': 1.0, 'a': 7.0, 'them': 1.0, 'of': 2.0, 'the': 17.0, 'being': 1.0, 'get': 1.0, 'snapped': 2.0, 'currently': 1.0, 'place': 2.0, 'began': 1.0, 'after': 2.0, 'twins': 2.0, 'did': 1.0, 'premie': 1.0, 'baths': 1.0, 'it': 7.0, 'time': 1.0, 'countertop': 1.0, 'needs': 1.0, 'will': 2.0, 'bathe': 1.0, 'be': 3.0, 'trying': 1.0, 'down': 2.0, 'again': 1.0, 'leaks': 1.0, 'flood': 1.0, 'stars': 1.0, 'bathroom': 2.0, 'may': 1.0, 'had': 1.0, 'counter': 1.0, 'we': 5.0, 'moving': 1.0, 'was': 2.0, 'snapping': 1.0, 'that': 3.0, 'because': 2.0, 's': 1.0, 'maybe': 1.0, 'leakage': 1.0, 'gave': 1.0, 'month': 1.0, 'under': 1.0, 'control': 1.0, 'however': 3.0, 'boys': 3.0, 'first': 1.0, 'are': 3.0, 'try': 1.0, 'much': 1.0, 'floor': 1.0, 'do': 1.0, 'way': 1.0, 'made': 1.0, 'got': 1.0, 'pieces': 1.0, 'out': 2.0, 'inevitable': 1.0, 'use': 1.0, 'sling': 4.0, 'help': 1.0, 'slip': 1.0, 'slide': 1.0, 'two': 1.0, 'little': 2.0, 'if': 1.0, 'bigger': 1.0, 'over': 1.0, 'work': 2.0}
Word element => {'your': 1.0, 'waste': 1.0, 'problem': 1.0, 'have': 1.0, 'money': 1.0, 'don': 1.0, 'lots': 1.0, 'back': 1.0, 'this': 2.0, 'it': 4.0, 'get': 1.0, 'return': 1.0, 'out': 1.0, 'tub': 1.0, 'through': 1.0, 'store': 1.0, 'of': 2.0, 'use': 1.0, 'seam': 1.0, 'even': 1.0, 'took': 1.0, 'i': 3.0, 'when': 1.0, 'however': 1.0, 'to': 3.0, 'hoping': 1.0, 'was': 2.0, 'had': 1.0, 'people': 1.0, 'said': 1.0, 'leaks': 1.0, 't': 1.0, 'great': 1.0, 'the': 2.0, 'locked': 1.0}
Word element => {'else': 1.0, 'couldn': 1.0, 'after': 1.0, 'since': 1.0, 'especially': 1.0, 'invest': 1.0, 'are': 1.0, 'like': 1.0, 'return': 1.0, 'way': 1.0, 'on': 1.0, 'water': 1.0, 'before': 1.0, 'out': 2.0, 'leak': 2.0, 'hadn': 1.0, 'if': 1.0, 'buying': 1.0, 'with': 2.0, 'fine': 1.0, 'hard': 1.0, 'than': 1.0, 'because': 1.0, 'in': 4.0, 'also': 1.0, 'don': 1.0, 'up': 2.0, 'of': 2.0, 'tremendously': 1.0, 'but': 1.0, 'sitting': 1.0, 'looks': 1.0, 'month': 1.0, 'it': 9.0, 'this': 2.0, 'come': 1.0, 'do': 1.0, 'only': 1.0, '11': 1.0, 'i': 4.0, 'days': 1.0, 'buy': 1.0, '90': 1.0, 'so': 2.0, 'deal': 1.0, 'the': 7.0, 'been': 1.0, 'that': 4.0, 'loves': 1.0, 'have': 4.0, 'all': 2.0, 'to': 8.0, 'now': 2.0, 'something': 1.0, 'new': 1.0, 'would': 4.0, 'never': 1.0, 'her': 1.0, 'last': 1.0, 'even': 1.0, 'sudden': 1.0, 'be': 1.0, 'get': 1.0, 'tub': 3.0, 'too': 1.0, 'closed': 1.0, 'and': 3.0, 'm': 1.0, 'was': 2.0, 'expecting': 1.0, 'months': 1.0, 'reccommend': 1.0, 'my': 1.0, 'another': 2.0, 'started': 2.0, 'baby': 2.0, 'thrilled': 1.0, 'few': 1.0, 'sling': 1.0, 'old': 1.0, 'handy': 1.0, 'rush': 1.0, 'problem': 1.0, 'more': 1.0, 'is': 1.0, 'had': 1.0, 'leaks': 2.0, 'really': 1.0, 'going': 1.0, 't': 3.0, 'a': 2.0, 'we': 5.0}
Word element => {'nicer': 1.0, 'have': 1.0, 'and': 1.0, 'would': 2.0, 'kept': 1.0, 'recommend': 1.0, 'was': 4.0, 'to': 4.0, 'its': 1.0, 'infant': 1.0, 'box': 1.0, 'when': 1.0, 'unless': 1.0, 'way': 1.0, 'wouldn': 1.0, 'is': 2.0, 'it': 3.0, 'looks': 1.0, 'things': 1.0, 'the': 7.0, 'big': 1.0, 'of': 2.0, 'there': 1.0, 'an': 1.0, 'toddler': 1.0, 'tub': 5.0, 'out': 1.0, 'better': 1.0, 'sliding': 1.0, 'daughter': 1.0, 'water': 1.0, 'down': 1.0, 't': 1.0, 'a': 2.0, 'not': 1.0, 'those': 1.0, 'stay': 1.0, 'in': 2.0, 'length': 1.0, 'my': 1.0, 'extended': 1.0, 'wish': 1.0, 'this': 1.0, 'full': 1.0, 'which': 1.0, 'right': 1.0, 'i': 4.0, 'reasons': 1.0, 'one': 3.0, 'bought': 2.0, 'for': 2.0, 'supposed': 1.0, 'anyone': 1.0, 'be': 1.0, 'becase': 1.0, 'compact': 1.0}
Word element => {'ages': 1.0, 'various': 1.0, 'most': 1.0, 'nicest': 1.0, 'of': 1.0, 'to': 1.0, 'be': 1.0, 'useful': 1.0, 'bathtub': 1.0, 'does': 1.0, 'the': 2.0, 'ones': 1.0, 'but': 1.0, 'work': 1.0, 'on': 1.0, 'is': 1.0, 'and': 1.0, 'market': 1.0, 'this': 1.0, 'it': 1.0, 'has': 1.0, 'slightly': 1.0, 'large': 1.0, 'for': 1.0, 'one': 1.0, 'truely': 1.0}
Word element => {'spent': 1.0, 'ever': 1.0, '00': 1.0, 'at': 1.0, 'causing': 1.0, 'of': 1.0, 'price': 1.0, 'started': 2.0, 'the': 6.0, 'and': 1.0, 'time': 1.0, 'long': 1.0, 'reasonable': 1.0, 'worse': 1.0, 'it': 2.0, 'this': 2.0, 'first': 1.0, 'months': 1.0, 'bought': 1.0, 'last': 1.0, 'tub': 3.0, 'out': 1.0, 'that': 1.0, 'after': 2.0, 'wear': 1.0, 'to': 2.0, 'something': 1.0, 'would': 1.0, 'was': 2.0, 'leaking': 1.0, 'crease': 1.0, 'a': 2.0, 'we': 3.0, 'thoguht': 1.0, 'did': 1.0, 'me': 1.0, 'wrong': 1.0, 'but': 1.0, 'while': 1.0, 'two': 1.0, 'i': 2.0, 'thinking': 1.0, 'discoverd': 1.0, 'near': 1.0, 'leak': 1.0, 'strip': 1.0, 'far': 1.0, 'pruchase': 1.0, 'by': 1.0, '20': 1.0}
Word element => {'waste': 1.0, 'money': 1.0, 'don': 1.0, 'connecting': 1.0, 'to': 1.0, 'first': 1.0, 'in': 1.0, 'for': 1.0, 'water': 2.0, 'put': 1.0, 'two': 1.0, 'we': 1.0, 'your': 1.0, 'time': 1.0, 'sections': 1.0, 'bath': 1.0, 'pouring': 1.0, 'went': 1.0, 't': 1.0, 'the': 5.0, 'a': 1.0, 'between': 1.0, 'real': 1.0, 'tub': 1.0, 'out': 1.0, 'from': 1.0, 'thing': 1.0, 'started': 1.0, 'just': 1.0, 'bottom': 1.0}
Word element => {'long': 1.0, 'tabs': 1.0, 'locking': 1.0, 'be': 1.0, 'as': 2.0, 'to': 1.0, 'all': 1.0, 'besides': 1.0, 'no': 1.0, 'plug': 1.0, 'sink': 1.0, 'edge': 1.0, 'end': 1.0, 'done': 1.0, 're': 1.0, 'you': 1.0, 'when': 1.0, 'and': 3.0, 'counter': 1.0, 'kitchen': 2.0, 'over': 2.0, 'up': 1.0, 'on': 2.0, 'put': 1.0, 'water': 1.0, 'pull': 1.0, 'daughter': 2.0, 'typing': 1.0, 'with': 2.0, 'this': 1.0, 'time': 1.0, 'bit': 1.0, 'drag': 1.0, 'using': 2.0, 'assemble': 1.0, 'for': 1.0, 'love': 1.0, 'quite': 1.0, 'me': 1.0, '1': 1.0, 'have': 1.0, '8': 1.0, 'that': 1.0, 'loves': 1.0, 'been': 1.0, 'it': 3.0, 'she': 1.0, 'of': 2.0, 'he': 1.0, '6': 1.0, 'agree': 1.0, 'everything': 1.0, 'after': 1.0, 'the': 11.0, 's': 2.0, 'we': 3.0, 'a': 3.0, 'jrcaesar': 1.0, 'mess': 1.0, 'saved': 1.0, 'i': 4.0, 'easier': 1.0, 'expected': 1.0, 'review': 1.0, 'get': 1.0, 'tub': 3.0, 'regular': 1.0, 'kicks': 1.0, 'said': 1.0, 'in': 2.0, 'my': 2.0, 'fact': 1.0, 'basis': 1.0, 'week': 1.0, 'weeks': 1.0, 'now': 1.0, 'previous': 1.0, 'safety': 1.0, '1st': 1.0, 'space': 1.0, 'saver': 1.0, 'properly': 1.0, 'from': 1.0, 'til': 1.0, 'months': 1.0, 'what': 1.0, 'p': 1.0, '2': 1.0, 'can': 1.0, 'more': 1.0, 'say': 1.0}
Word element => {'recommend': 1.0, 'definitely': 1.0, 'awhile': 1.0, 'be': 1.0, 'll': 1.0, 'growth': 1.0, 'for': 3.0, 'room': 2.0, 'also': 1.0, 'need': 1.0, 'more': 1.0, 'fill': 1.0, 'having': 1.0, 'baths': 1.0, 'just': 1.0, 'not': 3.0, 'but': 3.0, 'take': 1.0, 'then': 1.0, 'leaks': 1.0, 'correctly': 1.0, 's': 3.0, 'a': 2.0, 'going': 1.0, 'able': 1.0, 'you': 4.0, 'if': 2.0, 've': 1.0, 'was': 1.0, 'minutes': 1.0, 'either': 1.0, 'would': 2.0, 'expanding': 1.0, 'hasn': 1.0, 'tub': 2.0, 'collapsing': 1.0, 'does': 1.0, 'have': 5.0, 'leave': 1.0, 'born': 1.0, 'used': 2.0, 'move': 1.0, 'i': 11.0, 'well': 1.0, 't': 4.0, 'likes': 1.0, 'get': 1.0, 'months': 1.0, 'on': 4.0, 'daughter': 3.0, 'pull': 1.0, 'couple': 1.0, 'wasn': 1.0, 'probably': 2.0, 'and': 7.0, 'since': 1.0, 'like': 2.0, 'me': 1.0, 'my': 4.0, 'bathroom': 1.0, 'old': 1.0, 'fact': 1.0, 'splash': 1.0, 'she': 1.0, 'it': 14.0, 'expand': 1.0, 'really': 2.0, 'this': 2.0, 'off': 1.0, 'enough': 1.0, 'mine': 1.0, 'expanded': 1.0, 'leaked': 1.0, 'don': 1.0, 'water': 1.0, '7': 1.0, 'up': 2.0, 'other': 1.0, 'bathtub': 2.0, 'so': 3.0, 'in': 4.0, 'won': 1.0, 'regular': 2.0, 'than': 1.0, 'way': 1.0, 'first': 1.0, 'stuck': 1.0, 'of': 3.0, 'the': 6.0, 'counter': 1.0, 'top': 1.0, 'suction': 1.0, 'cups': 1.0, 'to': 7.0, 'children': 1.0, 'least': 1.0, 'bottom': 1.0, 'great': 1.0, 'big': 1.0, 'because': 1.0, 'that': 1.0, 'loves': 1.0, 'has': 1.0, 'them': 2.0, 'knew': 1.0, 'now': 1.0, 'at': 2.0, 'is': 1.0, 'sits': 1.0, 'impossible': 1.0, 'bunch': 1.0, 'toys': 1.0, 'plenty': 1.0, 'with': 2.0, 'use': 2.0, 'her': 2.0}
Word element => {'with': 1.0, 'mart': 1.0, 'sure': 1.0, 'will': 2.0, 'can': 1.0, 'but': 4.0, 'a': 3.0, 's': 2.0, 'bar': 2.0, 'little': 4.0, 'regret': 1.0, 'months': 1.0, 'bought': 1.0, 'tray': 1.0, 'me': 1.0, 'my': 1.0, 'down': 2.0, 'his': 3.0, 'before': 1.0, 'tub': 5.0, 'returning': 1.0, 'easy': 2.0, 'kept': 1.0, 'wanted': 1.0, 'be': 3.0, 'smushing': 1.0, 'big': 2.0, 'all': 1.0, 'set': 1.0, '6': 1.0, 'he': 1.0, 'plastic': 1.0, 'reading': 1.0, 'like': 1.0, 'which': 1.0, 'reviews': 1.0, 'actually': 1.0, 'for': 1.0, 'where': 1.0, 'and': 1.0, 'only': 1.0, 'happy': 1.0, 'try': 1.0, 'this': 3.0, 'dont': 1.0, 'him': 1.0, 'recline': 1.0, 'it': 4.0, 'tried': 2.0, 'old': 1.0, 'i': 9.0, 'cannot': 2.0, 'lay': 2.0, 'snap': 3.0, 'is': 12.0, 'pee': 2.0, 'without': 2.0, 'place': 1.0, 'm': 1.0, 'in': 5.0, 'babies': 1.0, 'together': 3.0, 'up': 3.0, 'water': 1.0, 'not': 4.0, 'those': 1.0, 'baby': 5.0, 'or': 1.0, 'sitting': 3.0, 'rinse': 2.0, 'hair': 2.0, 'when': 1.0, 'things': 1.0, 'you': 3.0, 'against': 2.0, 'to': 5.0, 'straight': 1.0, 'way': 1.0, 'positioned': 1.0, 'pieces': 2.0, 'foam': 1.0, 'getting': 1.0, 'that': 5.0, 'because': 1.0, 'back': 2.0, 'the': 12.0, 'of': 1.0, 'wal': 1.0, 'bath': 1.0, 'do': 1.0, 'put': 1.0, '2': 2.0, 'thing': 2.0, 'really': 1.0, 'edge': 1.0, 'since': 1.0, 'there': 3.0, 'over': 1.0, 'hard': 1.0, 'middle': 1.0, 'if': 1.0, 'still': 1.0, 'sling': 1.0, 'just': 1.0, 'even': 1.0, 'lump': 1.0, 'would': 1.0}
Word element => {'constantly': 1.0, 'out': 1.0, 'should': 1.0, 'distracts': 1.0, 'leaking': 1.0, 'and': 4.0, 'kitchen': 1.0, 'attention': 1.0, 'the': 8.0, 'mother': 1.0, 'fix': 1.0, 'over': 1.0, 'hassle': 1.0, 'holes': 1.0, 'counter': 1.0, 'this': 1.0, 'it': 1.0, 'with': 1.0, 'you': 2.0, 'when': 2.0, 'floor': 1.0, 'be': 1.0, 'a': 1.0, 'tub': 1.0, 'i': 1.0, 'does': 1.0, 'paying': 1.0, 'buy': 1.0, 'extra': 1.0, 'all': 1.0, 'to': 2.0, 'leaks': 2.0, 'what': 1.0, 'had': 1.0, 'husband': 1.0, 'baby': 1.0, 'read': 1.0, 'directions': 1.0, 'sling': 1.0, 'also': 2.0, 'in': 1.0, 'my': 2.0, 'do': 1.0, 'try': 1.0, 'no': 1.0, 'success': 1.0, 'not': 2.0, 'stay': 1.0, 'pops': 1.0}
Word element => {'regular': 1.0, 'in': 1.0, 'stationed': 1.0, 'work': 1.0, 'may': 1.0, 'second': 1.0, 'give': 1.0, 'think': 1.0, 'toys': 1.0, 'adapt': 1.0, 'ability': 1.0, 'grows': 1.0, 'bath': 3.0, 'on': 1.0, 'leaks': 1.0, 'easy': 2.0, 'tub': 3.0, 'read': 1.0, 'very': 2.0, 'ours': 1.0, 'as': 4.0, 'to': 6.0, 'do': 2.0, 'its': 2.0, 'across': 1.0, 'reviews': 1.0, 'months': 1.0, 'one': 1.0, 'past': 1.0, '2': 1.0, 'but': 1.0, 'aren': 1.0, 'your': 4.0, 'surprised': 1.0, 'online': 1.0, 'use': 1.0, 'if': 1.0, 'every': 2.0, 'it': 8.0, 'this': 3.0, 'don': 1.0, 'leaked': 1.0, 'drawing': 1.0, 'about': 2.0, 'tubs': 1.0, 'another': 1.0, 'has': 1.0, 'watching': 1.0, 'recall': 1.0, 'love': 1.0, 'for': 5.0, 'than': 1.0, 'assemble': 1.0, 'chance': 1.0, 'using': 1.0, 'bathtub': 2.0, 'am': 1.0, 'night': 1.0, 'you': 4.0, 'after': 1.0, 'order': 1.0, 'was': 2.0, 'doesn': 1.0, 'the': 6.0, 'and': 3.0, 'lose': 1.0, '27': 1.0, 'excessive': 1.0, 'came': 1.0, 'that': 2.0, 'find': 1.0, 'required': 1.0, 'difficult': 1.0, 'never': 1.0, 'some': 1.0, 'time': 3.0, 'strength': 1.0, 'so': 1.0, 'i': 5.0, 'putting': 1.0, 'together': 1.0, 'not': 1.0, 'water': 1.0, 'up': 1.0, 'toddler': 2.0, 'products': 1.0, 'child': 2.0, 'spending': 1.0, 'baby': 4.0, 'many': 1.0, 'other': 1.0, 'is': 3.0, 'their': 1.0, 'fill': 1.0, 'quickly': 1.0, 't': 3.0, 'a': 3.0, 'like': 2.0, 'rather': 1.0, 'rounded': 1.0, 'plastic': 1.0, 'comfortable': 1.0, 'first': 1.0, 'plus': 1.0, 'leans': 1.0, 'nearly': 1.0, 'inflatable': 1.0, 'just': 1.0, 'right': 1.0, 'size': 1.0}
Word element => {'take': 1.0, 'could': 1.0, 'than': 1.0, 'work': 1.0, 'didn': 1.0, 'sleep': 1.0, 'deprived': 1.0, 'frustration': 1.0, 'save': 1.0, 'gift': 1.0, 'that': 1.0, 'a': 2.0, 'yourself': 1.0, 'as': 2.0, 'shower': 1.0, 'this': 2.0, 'tub': 2.0, 'the': 1.0, 'more': 1.0, 't': 1.0, 'mother': 1.0, 'was': 1.0, 'to': 2.0, 'got': 1.0, 'i': 3.0, 'directions': 1.0, 'for': 1.0, 'new': 1.0, 'of': 1.0, 'reading': 1.0, 'piece': 1.0, 'on': 1.0, 'register': 1.0, 'how': 1.0, 'get': 1.0}
Word element => {'leaking': 1.0, 'anything': 1.0, 'have': 1.0, 'seams': 1.0, 'that': 1.0, 'especially': 1.0, 'purchasing': 1.0, 'worry': 1.0, 'seriously': 1.0, 'd': 1.0, 'bathtime': 1.0, 'convenient': 1.0, 'very': 1.0, 'clean': 1.0, 'easy': 1.0, 'to': 6.0, 'our': 2.0, 'crazy': 1.0, 'as': 1.0, 'correct': 1.0, 'on': 1.0, 'suction': 1.0, 'when': 1.0, 'times': 1.0, 'you': 3.0, 'bathe': 1.0, 'so': 2.0, 'time': 1.0, 'about': 2.0, 'piece': 1.0, 'recommend': 1.0, 'together': 1.0, 'inside': 1.0, 'back': 1.0, 'and': 4.0, 'wherever': 1.0, 'we': 2.0, 'a': 2.0, 's': 2.0, 'another': 1.0, 'extra': 1.0, 'day': 1.0, 'in': 2.0, 'several': 1.0, 'down': 1.0, 've': 1.0, 'apart': 1.0, 'undressed': 1.0, 'or': 1.0, 'need': 1.0, 'water': 1.0, 'up': 1.0, 'drive': 1.0, 'over': 1.0, 'issues': 1.0, 'hassle': 1.0, 'pushing': 1.0, 'tub': 8.0, 'months': 1.0, 'get': 1.0, 'places': 1.0, 'husband': 2.0, 't': 2.0, 'likes': 1.0, 'don': 2.0, 'leaked': 3.0, 'from': 1.0, 'even': 2.0, 'counter': 1.0, 'with': 4.0, 'this': 2.0, 'taken': 1.0, 'help': 1.0, 'sling': 2.0, 'though': 1.0, 'us': 1.0, 'also': 1.0, 'does': 1.0, 'pop': 1.0, 'out': 4.0, 'i': 3.0, 'feet': 1.0, 'one': 4.0, 'lot': 1.0, 'my': 4.0, 'at': 1.0, 'is': 4.0, 'ready': 1.0, 'has': 2.0, 'puts': 1.0, 'his': 2.0, 'throw': 1.0, 'he': 3.0, 'bathing': 1.0, 'gets': 1.0, 'son': 2.0, 'little': 2.0, 'frustrated': 1.0, 'by': 1.0, 'fill': 1.0, 'baby': 1.0, 'stretches': 1.0, 'all': 1.0, 'an': 1.0, 'loves': 1.0, 'inch': 1.0, 'the': 15.0, 'of': 2.0, 'four': 1.0, 'but': 2.0, 'him': 1.0, 'it': 8.0, 'already': 2.0, 'end': 1.0, 'put': 2.0, 'do': 1.0, 'edge': 1.0, 'really': 1.0, 'both': 1.0, 'feel': 1.0, 'outgrowing': 1.0}
Word element => {'space': 1.0, 'still': 1.0, 'and': 1.0, 'much': 2.0, 'that': 1.0, 'seat': 1.0, 'different': 1.0, 'bought': 1.0, 'we': 1.0, 'own': 1.0, 'doesn': 1.0, 'but': 1.0, 'handful': 1.0, 'sling': 1.0, 'wore': 1.0, 'takes': 1.0, 'up': 2.0, 'fold': 1.0, 'plus': 1.0, 'of': 1.0, 'a': 2.0, 't': 1.0, 'the': 3.0, 'my': 1.0, 'times': 1.0, 'enough': 1.0, 'only': 1.0, 'old': 1.0, 'i': 1.0, 'daughter': 1.0, 'when': 1.0, 'tub': 3.0, 'out': 1.0, 'to': 1.0, 'was': 1.0, 'sit': 1.0, 'used': 1.0, 'her': 1.0, 'on': 1.0}
Word element => {'much': 1.0, 'doesn': 1.0, 'had': 2.0, 'to': 1.0, 'seemed': 1.0, 'nice': 1.0, 'kept': 2.0, 'however': 1.0, 'd': 1.0, 'like': 1.0, 'and': 2.0, 'it': 3.0, 'other': 2.0, 'returned': 1.0, 'received': 1.0, 'son': 1.0, '2': 1.0, 'the': 4.0, 'at': 1.0, 'one': 2.0, 'sling': 1.0, 'i': 7.0, 'get': 1.0, 'tub': 2.0, 'my': 1.0, 'because': 2.0, 'baby': 1.0, 'features': 1.0, 'more': 1.0, 'is': 2.0, 'this': 2.0, 'wish': 1.0, 'seems': 1.0, 'leak': 2.0, 'every': 1.0, 'use': 1.0, 'so': 1.0, 'time': 1.0, 'infant': 1.0, 'tubs': 1.0, 'thing': 1.0, 'itself': 1.0, 't': 1.0, 's': 1.0, 'a': 2.0, 'good': 1.0, 'think': 1.0, 'size': 1.0, 'shower': 1.0, 'rather': 1.0, 'that': 1.0}
Word element => {'now': 1.0, 'had': 2.0, 'gone': 1.0, 'water': 1.0, 'room': 1.0, 'in': 1.0, 'back': 1.0, 'time': 1.0, 'by': 1.0, 'for': 3.0, 'one': 1.0, 'registered': 2.0, 'is': 2.0, 'tuba': 1.0, 'with': 1.0, 'wish': 1.0, 'this': 2.0, 'least': 1.0, 'to': 1.0, 'all': 3.0, 'have': 2.0, 'satisfied': 1.0, 'been': 1.0, 'like': 1.0, 'got': 1.0, 'then': 1.0, 'not': 3.0, 'three': 1.0, 'at': 4.0, 'crazy': 1.0, 'of': 1.0, '6': 1.0, 'times': 1.0, 'when': 1.0, 'i': 9.0, 'old': 1.0, 'bath': 2.0, 'showers': 1.0, 'my': 2.0, 'saw': 1.0, 'almost': 1.0, 'ready': 1.0, 'different': 1.0, 'good': 1.0, 'reviews': 1.0, 'worth': 1.0, 'refill': 1.0, 'the': 7.0, 'but': 2.0, 'money': 1.0, 'leakes': 1.0, 'does': 1.0, 'sling': 1.0, 'help': 1.0, 'tub': 3.0, 'get': 2.0, 'and': 2.0, 'it': 3.0, 'month': 1.0, 'son': 1.0, 'a': 1.0, 'go': 1.0, 'nothing': 1.0, 'undress': 1.0, 'him': 1.0}
Word element => {'went': 1.0, 'clean': 1.0, 'buy': 1.0, 'up': 1.0, 'don': 1.0, 'hope': 1.0, 'just': 2.0, 'new': 1.0, 'less': 1.0, 'couldn': 1.0, 'work': 1.0, 'parents': 1.0, 'flooded': 1.0, 'water': 1.0, 'fill': 1.0, 'yourself': 1.0, 'end': 1.0, 'helpful': 1.0, 'evidence': 1.0, 'or': 1.0, 'snap': 1.0, 'seeing': 1.0, 'hearing': 1.0, 'thought': 1.0, 'had': 2.0, 'many': 2.0, 'save': 1.0, 'bathroom': 1.0, 'extended': 1.0, 'that': 4.0, 'manual': 1.0, 'with': 2.0, 'it': 9.0, 'first': 1.0, 'this': 2.0, 'time': 1.0, 'the': 7.0, 'tried': 4.0, 'mess': 1.0, 'i': 4.0, 't': 2.0, 'a': 2.0, 'could': 2.0, 'we': 3.0, 'disasterously': 1.0, 'back': 1.0, 'locked': 1.0, 'an': 1.0, 'designed': 2.0, 'forward': 1.0, 'absolutely': 1.0, 'newborn': 1.0, 'length': 1.0, 'in': 3.0, 'for': 1.0, 'product': 2.0, 'be': 2.0, 'taking': 1.0, 'instructions': 1.0, 'use': 1.0, 'through': 2.0, 'luck': 1.0, 'then': 1.0, 'bath': 2.0, 'no': 1.0, 'today': 1.0, 'poorly': 1.0, 'not': 2.0, 'vague': 2.0, 'push': 1.0, 'helps': 1.0, 'there': 1.0, 'of': 1.0, 'more': 2.0, 'is': 3.0, 'get': 1.0, 'area': 1.0, 'middle': 1.0, 'again': 1.0, 'times': 1.0, 'happened': 1.0, 'am': 1.0, 'buybuybaby': 1.0, 'you': 1.0, 'have': 1.0, 'any': 1.0, 'our': 2.0, 'to': 8.0, 'all': 1.0, 'lock': 2.0, 'did': 1.0, 'and': 7.0}
Word element => {'like': 1.0, 'water': 1.0, 'of': 1.0, 'here': 1.0, 'bulky': 1.0, 'loves': 1.0, 'that': 1.0, 'sink': 1.0, 'sml': 1.0, 'kitchen': 1.0, 'amount': 1.0, 'bathing': 2.0, 'so': 1.0, 'child': 1.0, 'up': 1.0, 'slippery': 3.0, 'awkward': 1.0, 'liking': 1.0, 'really': 1.0, 'position': 1.0, 'but': 1.0, 'sitting': 2.0, 'for': 1.0, 'just': 5.0, 'didn': 2.0, 'okay': 1.0, 'not': 2.0, 'still': 1.0, 'difficult': 2.0, 'around': 1.0, 'more': 1.0, 'level': 1.0, 'bath': 1.0, 'on': 2.0, 'secure': 2.0, 'also': 1.0, 'slipping': 1.0, 'has': 1.0, 'with': 3.0, 'this': 4.0, 'hard': 2.0, 'worked': 1.0, 'feel': 1.0, 'seemed': 2.0, 'big': 1.0, 'w': 1.0, '8': 1.0, 'down': 1.0, 'did': 3.0, 'if': 1.0, 'much': 1.0, 'tub': 5.0, 'her': 3.0, 'clean': 1.0, 'stopped': 1.0, 'it': 6.0, 'she': 3.0, 'felt': 2.0, 'deal': 1.0, 'the': 7.0, 'have': 2.0, 'small': 3.0, 'months': 1.0, 'one': 1.0, 'i': 8.0, 'problems': 1.0, 'old': 1.0, 'store': 2.0, 'was': 7.0, 'to': 4.0, 'akward': 1.0, 'enough': 2.0, 'and': 6.0, 't': 2.0, 'a': 3.0, 'little': 1.0, 'in': 3.0, 'crevaces': 1.0, 'leak': 1.0, 'when': 3.0, 'you': 1.0, 'push': 1.0, 'my': 1.0, 'started': 2.0, 'baby': 1.0}
Word element => {'registry': 1.0, 'them': 1.0, 've': 1.0, 'should': 1.0, 'b': 1.0, 'know': 1.0, 'couples': 1.0, 'put': 1.0, 'on': 2.0, 'two': 1.0, '4': 1.0, 'swear': 1.0, 'deluxe': 1.0, 'comfort': 1.0, 'years': 1.0, 'first': 1.0, 'out': 2.0, 'his': 1.0, 'got': 1.0, 'even': 1.0, 'into': 1.0, 'leaving': 1.0, 'of': 2.0, 'at': 1.0, 'thing': 1.0, 'and': 2.0, 'snap': 1.0, 'when': 1.0, 'this': 2.0, 'wk': 1.0, 'before': 1.0, '5': 3.0, 'digs': 1.0, 'stars': 1.0, 'fittingin': 1.0, 'ge': 1.0, 'old': 1.0, 'down': 1.0, 'bottom': 1.0, 'bruises': 1.0, 'is': 1.0, 'weekend': 1.0, 'the': 5.0, 'middle': 1.0, 'also': 2.0, 'sling': 1.0, 'in': 1.0, 'slides': 1.0, 'are': 1.0, 'he': 1.0, 'it': 4.0, 'come': 1.0, 'bac': 1.0, 'single': 1.0, 'very': 2.0, 'talked': 1.0, 'sure': 1.0, 'tub': 2.0, 'poor': 1.0, 'sink': 1.0, 'design': 1.0, 't': 1.0, 'we': 5.0, 'close': 1.0, 'our': 3.0, 'to': 4.0, 'kitchen': 1.0, 'refuse': 1.0, 'doesn': 1.0, 'anymore': 1.0, 'amazon': 1.0, 'use': 1.0, 'gong': 1.0}
Word element => {'item': 1.0, 'recommend': 1.0, 'properly': 1.0, 'sealed': 1.0, 'toddler': 1.0, 'used': 1.0, 'be': 1.0, 'eventually': 1.0, 'interchangeable': 1.0, 'bottom': 1.0, 'for': 1.0, 'one': 1.0, '4': 1.0, 'i': 2.0, 'in': 2.0, 'bath': 1.0, 'the': 3.0, 'station': 1.0, 'happy': 1.0, 'from': 1.0, 'very': 1.0, 'to': 1.0, 'was': 1.0, 'comes': 1.0, 'not': 2.0, 'because': 1.0, 'this': 2.0, 'with': 1.0, 'it': 3.0, 'way': 1.0, 'is': 3.0, 'leaks': 1.0, 'donot': 1.0, 'since': 1.0, 'a': 2.0, 'where': 1.0, 'water': 1.0, 'tub': 1.0, 'made': 1.0, 'out': 1.0}
Word element => {'since': 1.0, 'own': 1.0, 'up': 1.0, 'sit': 1.0, 'fine': 1.0, 'regular': 1.0, 'in': 3.0, 'just': 1.0, 'again': 1.0, 'hurt': 1.0, 'would': 1.0, 'and': 2.0, 'plan': 1.0, 'around': 1.0, 'is': 1.0, 'he': 3.0, 'using': 2.0, 'had': 1.0, '25': 1.0, 'middle': 1.0, 'son': 1.0, 'can': 1.0, 'but': 2.0, 'loves': 1.0, 'babies': 1.0, 'inches': 1.0, 'little': 1.0, 'feet': 1.0, 'out': 2.0, 'tub': 5.0, 'it': 10.0, 'with': 1.0, 'this': 1.0, 'husband': 1.0, 'locking': 1.0, 'problems': 1.0, 'worked': 1.0, 'i': 3.0, 'tabs': 1.0, 'took': 1.0, 'have': 1.0, 'did': 2.0, 'drain': 1.0, 'although': 1.0, 'figured': 1.0, 'the': 13.0, 'great': 2.0, 'baby': 1.0, 'splash': 1.0, 'my': 2.0, 'gift': 1.0, 'could': 1.0, 'a': 3.0, 'we': 3.0, 'reached': 1.0, 'suction': 1.0, 'emptying': 1.0, 'seat': 1.0, 'to': 2.0, 'as': 1.0, 'all': 1.0, 'cups': 1.0, 'off': 1.0, 'bottom': 1.0, 'shower': 1.0, 'once': 3.0, 'of': 2.0, 'because': 2.0, 'not': 1.0, 'they': 1.0, 'on': 2.0, 'put': 1.0, 'bath': 4.0, 'make': 1.0, 'his': 2.0, 'kick': 1.0, 'nightmare': 1.0, 'got': 1.0, 'even': 1.0, 'works': 2.0, 'ring': 1.0, 'sling': 1.0, 'though': 1.0, 'quit': 1.0, 'water': 2.0, 'has': 2.0, 'empties': 1.0, 'where': 1.0, 'for': 1.0}
Word element => {'in': 1.0, 'my': 1.0, 'either': 1.0, 'right': 1.0, 'quite': 1.0, 'into': 1.0, 'fit': 1.0, 'i': 1.0, 'took': 1.0, 'put': 1.0, 'back': 1.0, 'and': 1.0, 'tub': 2.0, 'wouldn': 1.0, 'it': 4.0, 'first': 1.0, 'this': 1.0, 'the': 3.0, 't': 2.0, 'registered': 1.0, 'we': 2.0, 'for': 1.0, 'sling': 1.0, 'time': 1.0, 'yes': 1.0, 'when': 1.0, 'baby': 1.0, 'assembled': 1.0, 'leak': 1.0, 'used': 1.0, 'does': 1.0, 'even': 1.0, 'didn': 1.0, 'correctly': 1.0}
Word element => {'they': 1.0, 'about': 1.0, 'them': 1.0, 'immediately': 1.0, 'carts': 1.0, 'shopping': 1.0, 'their': 1.0, 'when': 1.0, 'altogether': 1.0, 'people': 1.0, 'holding': 1.0, 'also': 1.0, 'not': 2.0, 'just': 1.0, 'into': 2.0, 'right': 1.0, 'water': 3.0, 'drain': 1.0, 'we': 1.0, 'out': 1.0, 'couple': 1.0, 'tub': 8.0, 'easy': 1.0, 'back': 1.0, 'locking': 2.0, 'as': 3.0, 'all': 1.0, 'and': 6.0, 'would': 1.0, 'position': 1.0, 'careless': 1.0, 'was': 4.0, 'tabs': 1.0, 'real': 1.0, 'really': 1.0, 'extending': 1.0, 'down': 1.0, 'several': 1.0, 't': 1.0, 'fit': 1.0, 'sink': 1.0, 'twisted': 1.0, 'two': 1.0, 'stopped': 1.0, 'fix': 1.0, 'thought': 2.0, 'it': 8.0, 'this': 5.0, 'release': 1.0, 'had': 2.0, 'counter': 2.0, 'between': 1.0, 'fully': 1.0, 'needed': 1.0, 'space': 1.0, 'tell': 1.0, 'saving': 1.0, 'get': 1.0, 'months': 1.0, 'on': 2.0, 'strong': 1.0, 'your': 1.0, 'put': 2.0, 'great': 1.0, 'kitchen': 1.0, 'be': 1.0, 'cabinets': 1.0, 'you': 1.0, 'times': 1.0, 'to': 6.0, 'pretty': 1.0, 'a': 3.0, 'thumbs': 1.0, 'after': 1.0, 'seam': 1.0, 'time': 1.0, 'can': 1.0, 'so': 1.0, 'hard': 1.0, 'over': 1.0, 'dripping': 1.0, 'problem': 1.0, 'with': 2.0, 'at': 1.0, 'is': 3.0, 'completely': 1.0, 'replace': 1.0, 'which': 2.0, 'leaking': 1.0, 'stripping': 1.0, 'halves': 1.0, 'the': 14.0, 'of': 1.0, 'fast': 1.0, 'well': 1.0, 'i': 7.0, 'coming': 1.0, 'see': 1.0, 'off': 1.0, 'enough': 2.0, 'perfectly': 1.0, 'there': 1.0, 'room': 1.0, 'fingers': 1.0, 'are': 1.0, 'lock': 1.0, 'bad': 1.0, 'in': 3.0, 'need': 1.0, 'or': 1.0, 'went': 1.0, 'rubber': 1.0, 'bathtub': 1.0, 'bathroom': 1.0, 'eventually': 1.0}
Word element => {'bad': 1.0, 'way': 1.0, 'fine': 1.0, 'everything': 1.0, 'were': 1.0, 'like': 1.0, 'leaked': 1.0, 'days': 1.0, 'within': 1.0, 'well': 1.0, 'few': 1.0, 'just': 2.0, 'locked': 1.0, 'finally': 1.0, 'so': 1.0, 'gives': 1.0, 'idea': 2.0, 'terms': 1.0, 'didn': 1.0, 'investment': 1.0, 'great': 2.0, 'figured': 1.0, 'place': 1.0, 'the': 6.0, 'it': 7.0, 'hard': 1.0, 'make': 1.0, 'in': 3.0, 'this': 2.0, 'perfect': 1.0, 'newborn': 1.0, 'also': 1.0, 'i': 4.0, 'shrinking': 1.0, 'bought': 1.0, 'despite': 1.0, 'leak': 2.0, 'of': 3.0, 'because': 1.0, 'difficult': 1.0, 'reviews': 1.0, 'that': 2.0, 'sling': 1.0, 'for': 1.0, 'leaking': 1.0, 'doesn': 1.0, 'was': 3.0, 'to': 4.0, 'starts': 1.0, 'my': 1.0, 'and': 1.0, 'sieve': 1.0, 'too': 1.0, 'quot': 2.0, 'but': 1.0, 'is': 1.0, 'tabs': 3.0, 'extremely': 1.0, 'break': 1.0, 'left': 1.0, 'sure': 1.0, 'tub': 3.0, 'poor': 1.0, 'get': 1.0, 'down': 1.0, 'a': 2.0, 's': 2.0, 't': 2.0, 'could': 1.0, 'go': 1.0, 'really': 1.0, 'lock': 1.0}
Word element => {'away': 1.0, 'leaks': 1.0, 'long': 1.0, 'used': 1.0, 'be': 1.0, 'certainly': 1.0, 'after': 1.0, 'ask': 1.0, 'design': 1.0, 'too': 1.0, 'and': 1.0, 'list': 1.0, 'when': 2.0, 'husband': 1.0, 'our': 1.0, 'any': 1.0, 'to': 2.0, 'liked': 1.0, 'cannot': 1.0, 'using': 1.0, 'parents': 1.0, 'this': 3.0, 'it': 2.0, 'do': 1.0, 'only': 1.0, 'my': 2.0, 'the': 2.0, 'in': 1.0, 'really': 1.0, 'is': 1.0, 'shower': 1.0, 'of': 1.0, 'i': 1.0, 'bathtub': 2.0, 'one': 1.0, 'decided': 1.0, 'months': 1.0, 'we': 2.0, 'could': 1.0, 'began': 1.0, 'not': 2.0, 'water': 1.0, 'daughter': 1.0, 'enjoy': 1.0, 'her': 1.0, 'bath': 1.0, 'three': 1.0, 'since': 1.0, 'leaking': 1.0, 'anymore': 1.0, 'recommend': 1.0, 'for': 3.0, 'product': 1.0, 'sure': 1.0, 'safe': 1.0, 'but': 1.0}
Word element => {'support': 1.0, 'infant': 1.0, 'plain': 1.0, '3': 1.0, 'even': 1.0, 'enough': 1.0, 'isn': 1.0, 'and': 2.0, 'there': 1.0, 'bottom': 1.0, 'smooth': 1.0, 'have': 1.0, 'for': 2.0, 'surface': 1.0, 'however': 1.0, 'to': 1.0, 'be': 1.0, 'room': 1.0, 'much': 1.0, 'an': 1.0, 'week': 1.0, 'doesn': 1.0, 'trouble': 1.0, 'bathtub': 1.0, 'adjustments': 1.0, 'a': 3.0, 'would': 2.0, 'item': 1.0, 'thought': 1.0, 'old': 1.0, 'buy': 2.0, 'i': 2.0, 'my': 2.0, 't': 2.0, 'great': 1.0, 'the': 1.0, 'regular': 1.0, 'second': 1.0, 's': 1.0, 'baby': 2.0, 'too': 1.0, 'it': 2.0, 'this': 1.0, 'with': 1.0}
Word element => {'even': 1.0, 'don': 1.0, 'slippery': 1.0, 'enough': 1.0, 'leak': 1.0, 'bath': 1.0, 'steady': 1.0, 'has': 1.0, 'removed': 1.0, 'caused': 1.0, 'becoming': 1.0, 'bottem': 1.0, 'or': 1.0, 'thing': 1.0, 'whole': 1.0, 'spliing': 1.0, 'in': 1.0, 'hate': 1.0, 'and': 1.0, 'placing': 1.0, 'months': 1.0, '5': 1.0, 'away': 1.0, 'now': 1.0, 'was': 3.0, 'many': 1.0, 'faucet': 1.0, 'still': 1.0, 'son': 2.0, 'leaks': 1.0, 'had': 1.0, 'thought': 1.0, 'that': 2.0, 'when': 2.0, 'splashing': 1.0, 'causes': 1.0, 't': 1.0, 's': 1.0, 'a': 2.0, 'we': 6.0, 'baby': 1.0, 'started': 2.0, 'choose': 1.0, 'because': 1.0, 'which': 1.0, 'using': 1.0, 'for': 1.0, 'this': 2.0, 'it': 6.0, 'stick': 1.0, 'from': 1.0, 'hard': 2.0, 'problems': 1.0, 'old': 1.0, 'tub': 4.0, 'but': 2.0, 'great': 1.0, 'without': 1.0, 'the': 8.0, 'trouble': 1.0, 'unsnappped': 1.0, 'bathtub': 1.0, 'first': 1.0, 'baths': 1.0, 'to': 3.0, 'our': 2.0, 'cups': 2.0, 'all': 1.0, 'more': 1.0, 'is': 1.0, 'around': 1.0, 'so': 2.0, 'suction': 2.0, 'would': 1.0, 'impossible': 1.0, 'move': 1.0}
Word element => {'in': 1.0, 'properly': 1.0, 'station': 2.0, 'so': 1.0, 'use': 1.0, 'to': 1.0, 'is': 1.0, 'bath': 1.0, 'difficult': 1.0, 'doesnot': 1.0, 'sling': 1.0, 'this': 1.0, 'fit': 1.0}
Word element => {'worthless': 1.0, 'waste': 1.0, 'my': 1.0, 'is': 1.0, 'first': 1.0, 'in': 1.0, 'things': 1.0, 'time': 1.0, 'so': 1.0, 'leaks': 1.0, 'now': 2.0, 'your': 1.0, 'on': 1.0, 'weight': 1.0, 'buy': 1.0, 'extra': 1.0, 'that': 1.0, 'picked': 1.0, 'you': 1.0, 'when': 1.0, 'pay': 1.0, 'awhile': 1.0, 'seal': 1.0, 'few': 1.0, 'just': 1.0, 'leak': 1.0, 'flood': 1.0, 'tub': 3.0, 'out': 1.0, 'read': 1.0, 'instructions': 1.0, 'cleaning': 1.0, 'did': 1.0, 'nightmares': 1.0, 'good': 1.0, 'properly': 1.0, 'looked': 1.0, 'this': 3.0, 'of': 3.0, 'begining': 1.0, 'shower': 1.0, 'piece': 1.0, 'buying': 1.0, 'with': 1.0, 'didn': 2.0, 'got': 1.0, 'then': 1.0, 'one': 2.0, 'for': 3.0, 'junk': 1.0, 'i': 4.0, 'about': 1.0, 'like': 2.0, 'worked': 1.0, 'and': 3.0, 'only': 1.0, 'end': 1.0, 'do': 1.0, 'place': 2.0, 'the': 7.0, 'go': 1.0, 'a': 5.0, 't': 5.0, 'bathtub': 1.0, 'gift': 1.0, 'fine': 1.0, 'it': 7.0, 'month': 1.0, 'money': 1.0, 'anyways': 1.0, 'but': 2.0, 'leaking': 1.0, 'doesn': 2.0, 'constiently': 1.0, 'baby': 2.0, 'started': 1.0, 'bad': 1.0, 'to': 4.0, 'as': 1.0, 'all': 1.0, 'have': 4.0, 'would': 1.0, 'new': 1.0, 'enough': 1.0, 'mom': 1.0, 'don': 1.0, 'over': 1.0, 'up': 2.0}
Word element => {'spaces': 1.0, 'approprate': 1.0, 'really': 1.0, 'properly': 1.0, 'get': 1.0, 'all': 1.0, 'love': 1.0, 'tubs': 1.0, 'older': 1.0, 'been': 1.0, 'back': 1.0, 'while': 1.0, 'problem': 1.0, 'did': 1.0, 'said': 1.0, 'immediately': 1.0, 'out': 1.0, 'shipped': 1.0, 'correctly': 1.0, 'done': 1.0, 'highly': 1.0, 'this': 6.0, 'bath': 1.0, 'portable': 1.0, 'your': 1.0, 'loved': 1.0, 'got': 1.0, 'felt': 1.0, 'it': 8.0, 'bigger': 1.0, 'service': 1.0, 'asked': 1.0, 'is': 1.0, 'ring': 1.0, 'sling': 1.0, 'as': 5.0, 'our': 1.0, 'to': 3.0, 'cups': 1.0, 'very': 1.0, 'that': 1.0, 'problems': 2.0, 'born': 1.0, 'twins': 2.0, 'you': 3.0, 'i': 10.0, 'feature': 1.0, 'etc': 1.0, 'tub': 7.0, 'recommend': 1.0, 'assured': 1.0, 'were': 2.0, 'with': 5.0, 'first': 2.0, 'don': 1.0, 'company': 1.0, 'another': 1.0, 'seal': 2.0, 'when': 2.0, 'enviroment': 1.0, 'had': 2.0, 'again': 3.0, 'leaks': 1.0, 'great': 5.0, '1': 1.0, 'works': 1.0, 'without': 1.0, 'one': 5.0, 'after': 3.0, 'experience': 1.0, 'and': 8.0, 'setting': 2.0, 'directions': 2.0, 'for': 4.0, 'like': 1.0, 'just': 1.0, 'following': 2.0, 'was': 6.0, 'leaking': 3.0, 'they': 7.0, 'new': 2.0, 'model': 1.0, 'time': 2.0, 'could': 1.0, 'bathe': 1.0, 'we': 1.0, 'fit': 1.0, 't': 2.0, 'press': 1.0, 'no': 3.0, 'whole': 1.0, 'told': 1.0, 'about': 1.0, 'approached': 1.0, 'child': 1.0, 'year': 1.0, 'previously': 1.0, 'wasn': 1.0, 'filling': 1.0, 'up': 4.0, 'water': 1.0, 'a': 6.0, 'tiny': 1.0, 'many': 1.0, 'baby': 2.0, 'trips': 1.0, 'them': 1.0, 'in': 2.0, 'suction': 1.0, 'hard': 1.0, 'over': 1.0, 'infants': 1.0, 'work': 1.0, 'on': 1.0, 'long': 1.0, 'have': 4.0, 'decals': 1.0, 'floor': 1.0, 'doing': 1.0, 'the': 17.0, 'of': 3.0, 'tightly': 1.0, 'once': 1.0, 'there': 1.0, '3rd': 1.0, 'bought': 2.0, 'called': 1.0, 'my': 3.0, 'me': 2.0, 'set': 2.0}
Word element => {'then': 1.0, 'leak': 1.0, 'about': 1.0, 'no': 1.0, 'frustrating': 1.0, 're': 1.0, 'pry': 1.0, 'yeah': 1.0, 'proof': 1.0, 'out': 1.0, 'turned': 1.0, 'so': 2.0, 'fill': 1.0, 'difficult': 1.0, 'in': 1.0, 'can': 1.0, 'but': 2.0, 'move': 1.0, 'daughter': 1.0, 'returned': 1.0, 'tested': 1.0, 'makes': 1.0, 'old': 1.0, 'etc': 1.0, 'i': 4.0, 'months': 1.0, '5': 1.0, 'though': 1.0, 'sling': 2.0, 'for': 7.0, 'already': 1.0, 'got': 1.0, 'instead': 1.0, 'big': 1.0, 'great': 1.0, 'my': 1.0, 'it': 10.0, 'this': 2.0, 'too': 2.0, 'and': 5.0, 'horrible': 1.0, 'getting': 1.0, 'tub': 2.0, 'get': 1.0, 'more': 1.0, 'is': 2.0, 'because': 2.0, 'worried': 1.0, 'few': 1.0, 'just': 1.0, 'me': 3.0, 'not': 1.0, 'to': 3.0, 'cups': 1.0, 'seat': 1.0, 'leaking': 1.0, 'was': 3.0, 'small': 1.0, 'ended': 1.0, 'up': 1.0, 'don': 1.0, 'only': 1.0, 'empty': 1.0, 'do': 1.0, 'eurobath': 1.0, 'want': 1.0, 'if': 2.0, 'couldn': 1.0, 'slippery': 1.0, 'good': 1.0, 'negative': 1.0, 'her': 1.0, 'right': 1.0, 'be': 1.0, 'suction': 1.0, 'definitely': 1.0, 'the': 7.0, 'job': 1.0, 'that': 3.0, 'a': 3.0, 't': 2.0, 's': 2.0, 'times': 1.0, 'you': 4.0}
Word element => {'over': 1.0, 'leaks': 1.0, 'absolutely': 1.0, 'perfectly': 1.0, 'and': 1.0, 'opened': 1.0, 'it': 2.0, 'all': 1.0, 'have': 1.0, 'the': 3.0, 'locked': 1.0, 'my': 1.0, 'minute': 1.0, 'i': 1.0, 'two': 1.0, 'or': 1.0, 'into': 1.0, 'water': 1.0, 'sling': 1.0, 'slides': 2.0, 'down': 2.0, 'her': 1.0, 'up': 1.0, 'as': 1.0, 'unless': 1.0, 'daughter': 1.0, 'every': 1.0, 'constantly': 1.0, 'lifting': 1.0, 'she': 1.0, 'place': 1.0, 'am': 1.0, 'back': 1.0, 'you': 1.0}
Word element => {'water': 1.0, 'under': 1.0, 'you': 5.0, 'your': 2.0, 'idea': 1.0, 'seems': 1.0, 'secondly': 1.0, 'no': 1.0, 'thing': 1.0, 'and': 4.0, 'soon': 1.0, 'from': 1.0, 'want': 1.0, 'we': 2.0, 'a': 3.0, 'could': 1.0, 's': 1.0, 't': 3.0, 'one': 2.0, 'life': 1.0, 'by': 1.0, 'leaked': 1.0, 'enough': 1.0, 'due': 1.0, 'all': 2.0, 'to': 6.0, 'least': 1.0, 'for': 4.0, 'i': 3.0, 'seemed': 1.0, 'nice': 1.0, 'registered': 1.0, 'realized': 1.0, 'stages': 1.0, 'old': 1.0, 'after': 2.0, 'forward': 1.0, 'not': 4.0, 'he': 1.0, 'good': 2.0, 'locked': 1.0, 'sounded': 1.0, 'be': 2.0, 'incline': 1.0, 'like': 4.0, 'tub': 5.0, 'months': 1.0, 'get': 1.0, 'was': 2.0, 'doesn': 1.0, 'make': 1.0, 'anymore': 1.0, 'first': 1.0, 'looks': 1.0, 'but': 4.0, 'him': 1.0, 'it': 13.0, 'thought': 1.0, 'when': 1.0, 'what': 1.0, 'that': 2.0, 'many': 1.0, 'baby': 3.0, 'really': 3.0, 'being': 1.0, 'relocked': 1.0, 'very': 1.0, 'long': 2.0, 'did': 2.0, 'keep': 1.0, 'us': 1.0, 'properly': 1.0, 'sliding': 1.0, 'of': 3.0, 'the': 6.0, 'only': 1.0, 'soft': 1.0, 'works': 1.0, 'seat': 1.0, 'in': 1.0, 'position': 1.0, 'use': 3.0, 'her': 1.0, 'smaller': 1.0, 'time': 1.0, 'can': 2.0, 'so': 2.0, 'gets': 1.0, 'move': 1.0, 'around': 1.0, 'at': 2.0, 'is': 2.0, 'few': 1.0, 'this': 3.0, 'confined': 1.0, 'with': 1.0, 'have': 1.0, 'watch': 1.0, 'down': 1.0}
Word element => {'difficult': 1.0, 'assemble': 1.0, 'sometimes': 1.0, 'also': 1.0, 've': 1.0, 'find': 1.0, 'gift': 1.0, 'and': 2.0, 'as': 1.0, 'baby': 1.0, 'been': 1.0, 'a': 2.0, 'tub': 3.0, 'i': 3.0, 'shower': 1.0, 'this': 3.0, 'it': 1.0, 'heavy': 1.0, 'great': 1.0, 'using': 1.0, 'for': 1.0, '8': 1.0, 'months': 1.0, 'to': 2.0, 'now': 1.0, 'is': 1.0, 'got': 1.0, 'use': 1.0, 'however': 1.0}
Word element => {'rid': 1.0, 'got': 1.0, 'c': 1.0, 'time': 1.0, 'second': 1.0, 'one': 2.0, 'buying': 1.0, 'and': 3.0, 'a': 1.0, 'we': 1.0, 'set': 1.0, 'of': 3.0, 'up': 1.0, 'their': 1.0, 'that': 1.0, 'own': 1.0, 'did': 3.0, '9': 1.0, 'b': 1.0, 'bathroom': 1.0, 'my': 2.0, 'i': 8.0, 'it': 4.0, 'first': 2.0, 'have': 1.0, 'pregnant': 1.0, 'took': 1.0, 'loved': 3.0, 'bath': 2.0, 'try': 1.0, 'left': 1.0, 'tub': 2.0, 'out': 1.0, 'just': 1.0, 'never': 1.0, 'the': 5.0, 'though': 1.0, 'sling': 1.0, 'ring': 1.0, 'attached': 1.0, 'free': 1.0, 'standing': 1.0, 'rings': 1.0, 'kids': 1.0, 'this': 1.0, 'found': 1.0, 'same': 1.0, 'apart': 1.0, '10': 1.0, 'not': 1.0, 'stay': 1.0, 'all': 1.0, 'as': 1.0, 'to': 1.0, 'again': 1.0, 'times': 1.0, 'am': 2.0, 'actually': 1.0}
Word element => {'very': 1.0, 'overall': 1.0, 'says': 1.0, 'leak': 1.0, 'together': 1.0, 'parts': 1.0, 'that': 2.0, 'have': 2.0, 'well': 1.0, 'directions': 1.0, 'size': 1.0, 'great': 1.0, 'expanded': 1.0, 'also': 1.0, 'slipping': 1.0, 'properly': 1.0, 'from': 1.0, 'him': 1.0, 'support': 1.0, 'teddy': 1.0, 'with': 3.0, 'help': 1.0, 'sling': 1.0, 'use': 1.0, 'latch': 1.0, 'yet': 1.0, 'don': 1.0, 'up': 1.0, 'sit': 1.0, 'didn': 1.0, 'it': 8.0, 'this': 3.0, 'he': 3.0, 'tall': 1.0, 'and': 3.0, 'leaks': 1.0, 'had': 1.0, 'doesn': 1.0, 'yellow': 1.0, 'was': 1.0, 'own': 1.0, 'friend': 1.0, 'belive': 1.0, 'any': 1.0, 'to': 2.0, 'our': 1.0, 'problem': 1.0, 'terrific': 1.0, 'other': 1.0, 'baby': 2.0, 'using': 2.0, 'for': 1.0, 'love': 1.0, 'sure': 1.0, 'tub': 4.0, 'tubs': 1.0, 'really': 2.0, 'is': 3.0, 'sponge': 1.0, 'of': 1.0, 'drains': 1.0, 'after': 2.0, 'however': 1.0, 'so': 3.0, 'problems': 1.0, 'old': 1.0, 'her': 1.0, 'my': 2.0, 'happy': 2.0, 'am': 1.0, 'you': 2.0, 'bear': 1.0, 'when': 1.0, 'still': 1.0, 'son': 1.0, 'gets': 1.0, 'make': 1.0, 'on': 1.0, 'bath': 1.0, 'i': 6.0, '4': 1.0, 'bought': 1.0, 'one': 1.0, 'months': 1.0, 'can': 2.0, 'feet': 1.0, 'the': 5.0, 'without': 1.0, 'his': 3.0, 'kick': 1.0, 'said': 1.0, 'in': 2.0, 'we': 1.0, 't': 4.0, 'a': 3.0}
Word element => {'your': 1.0, 'waste': 1.0, 't': 1.0, 'don': 1.0, 'water': 1.0, 'leak': 1.0, 'attachment': 1.0, 'once': 1.0, 'shower': 1.0, 'so': 1.0, 'time': 1.0, 'would': 1.0, 'to': 5.0, 'as': 1.0, 'expanded': 1.0, 'when': 2.0, 'try': 1.0, 'money': 1.0, 'registry': 1.0, 'my': 2.0, 'wanted': 1.0, 'was': 3.0, 'that': 2.0, 'because': 1.0, 'i': 10.0, 'junk': 2.0, 'and': 6.0, 'is': 2.0, 'imagine': 1.0, 'a': 4.0, 'could': 2.0, 'concept': 1.0, 'through': 1.0, 'item': 1.0, 'luck': 1.0, 'then': 1.0, 'tabs': 2.0, 'pressing': 1.0, 'great': 1.0, 'of': 2.0, 'the': 9.0, 'place': 1.0, 'hands': 1.0, 'this': 3.0, 'snapped': 1.0, 'get': 1.0, 'finished': 1.0, 'out': 2.0, 'stages': 1.0, 'gift': 1.0, 'center': 1.0, 'from': 2.0, 'took': 1.0, 'even': 1.0, 'baby': 1.0, 'skin': 1.0, 'tried': 2.0, 'everything': 1.0, 'originally': 1.0, 'snap': 1.0, 'chose': 1.0, 'but': 1.0, 'had': 2.0, 'it': 10.0, 'thought': 1.0, 'no': 1.0, 'never': 1.0, 'collapse': 1.0, 'tub': 2.0, 'pushing': 1.0, 'such': 1.0, 'difficulty': 1.0, 'down': 1.0, 'following': 1.0, 'just': 1.0, 'both': 1.0, 'were': 2.0, 'home': 1.0, 'by': 1.0, 'bright': 1.0, 'pinch': 1.0, 'purchased': 1.0, 'red': 1.0, 'with': 1.0, 'on': 2.0, 's': 1.0, 'sides': 1.0, 'impossible': 1.0, 'push': 1.0, 'very': 1.0, 'received': 1.0, 'poorly': 1.0, 'into': 1.0, 'designed': 1.0, 'child': 1.0, 'product': 2.0, 'perhaps': 1.0, 'back': 1.0, 'immediately': 1.0, 'regular': 1.0, 'an': 1.0, 'pulling': 1.0, 'infant': 1.0}
Word element => {'disappointed': 1.0, 'the': 5.0, 'suction': 1.0, 'storage': 1.0, 'chest': 1.0, 'of': 2.0, 'bottom': 1.0, '6': 1.0, 'feature': 1.0, 'i': 2.0, 'old': 1.0, 'have': 2.0, 'this': 2.0, 'red': 1.0, 'with': 1.0, 'our': 1.0, 'to': 2.0, 'was': 1.0, 'purchased': 1.0, 'already': 1.0, 'easy': 1.0, 'tub': 3.0, 'marks': 1.0, 'particularly': 1.0, 'great': 1.0, 'seemed': 1.0, 'underside': 1.0, 'it': 1.0, 'month': 1.0, 'not': 1.0, 'because': 1.0, 'toddler': 1.0, 'will': 1.0, 'ring': 2.0, 'very': 1.0, 'however': 1.0, 'inner': 1.0, 'has': 1.0, 'sharp': 1.0, 'arms': 1.0, 'features': 1.0, 'edges': 1.0, 'leaving': 1.0, 'my': 1.0, 'and': 2.0, 'across': 1.0, 'her': 1.0, 'returned': 1.0}
Word element => {'leak': 1.0, 'not': 1.0, 'on': 1.0, 'comfortably': 1.0, 'pray': 1.0, 'i': 1.0, 'old': 1.0, 'rested': 1.0, '5': 1.0, 'sink': 1.0, 'shaped': 1.0, 'baby': 1.0, 'daughter': 1.0, 'round': 1.0, 'does': 1.0, 'her': 1.0, 'even': 1.0, 'in': 1.0, 'weeks': 1.0, 'secure': 1.0, 'very': 1.0, 'me': 1.0, 'and': 3.0, 'a': 2.0, 'is': 1.0, 'provided': 1.0, 'it': 1.0, 'with': 1.0, 'enjoyed': 1.0, 'bath': 2.0, 'time': 1.0, 'my': 2.0, 'the': 2.0, 'more': 1.0, 'session': 1.0, 'much': 1.0, 'sling': 2.0, 'comfortable': 1.0}
Word element => {'just': 1.0, 'in': 1.0, 'sit': 1.0, 'was': 1.0, 'sling': 1.0, 'home': 1.0, 'he': 3.0, 'used': 1.0, 'time': 1.0, 'however': 1.0, 'loves': 1.0, 'been': 1.0, 'that': 2.0, 'since': 1.0, 'at': 1.0, 'some': 1.0, 'no': 1.0, 'reviews': 3.0, 'up': 1.0, 'anyway': 1.0, 'enough': 1.0, 'leaked': 1.0, 'read': 1.0, 'did': 1.0, 'i': 1.0, 'problem': 1.0, 'tried': 1.0, 'six': 1.0, 'old': 2.0, 'had': 3.0, 'now': 2.0, 'this': 2.0, 'it': 2.0, 'gotten': 1.0, 'and': 3.0, 'poor': 1.0, 'tub': 5.0, 'to': 1.0, 'as': 3.0, 'from': 2.0, 'inlaws': 1.0, 'son': 1.0, 'we': 4.0, 'a': 1.0, 'the': 9.0, 'gift': 1.0, 'love': 1.0, 'of': 1.0, 'hospital': 1.0, 'there': 1.0, 'most': 1.0, 'but': 1.0, 'came': 1.0, 'long': 1.0, 'complained': 1.0, 'you': 1.0, 'follow': 1.0, 'wonderful': 1.0, 'instructions': 1.0, 'months': 1.0, 'is': 3.0, 'my': 1.0, 'have': 1.0}
Word element => {'store': 1.0, 'find': 1.0, 'although': 1.0, 'onto': 1.0, 'bought': 1.0, 'eventually': 1.0, 'snap': 2.0, 'first': 1.0, 'fill': 1.0, 'bathtub': 1.0, 'put': 3.0, 'on': 2.0, 'just': 3.0, 'large': 1.0, 'somehow': 1.0, 'though': 1.0, 'sling': 2.0, 'issues': 1.0, 'seat': 1.0, 'in': 6.0, 'was': 3.0, 'and': 13.0, 'lots': 1.0, 'never': 2.0, 'any': 2.0, 'to': 6.0, 'cups': 1.0, 'place': 1.0, 'pads': 1.0, 't': 1.0, 'preferred': 1.0, 's': 3.0, 'great': 1.0, 'leak': 1.0, 'water': 1.0, 'up': 1.0, 'the': 15.0, 'of': 3.0, 'easier': 2.0, 'regular': 2.0, 'won': 1.0, 'hear': 1.0, 'gave': 1.0, 'foam': 1.0, 'got': 1.0, 'use': 3.0, 'i': 14.0, 'tub': 5.0, 'out': 1.0, 'because': 2.0, 'that': 5.0, 'problems': 1.0, 'had': 3.0, 'counter': 1.0, 'this': 3.0, 'found': 2.0, 'with': 3.0, 'together': 1.0, 'piece': 1.0, 'over': 1.0, 'hard': 1.0, 'still': 1.0, 'if': 1.0, 'did': 1.0, 'both': 2.0, 'suction': 1.0, 'be': 1.0, 'hooks': 1.0, 'thought': 2.0, 'it': 13.0, 'him': 1.0, 'bottom': 1.0, 'at': 2.0, 'properly': 1.0, 'would': 1.0, 'hieght': 1.0, 'little': 2.0, 'big': 1.0, 'confusing': 1.0, 'a': 5.0, 'slight': 1.0, 'then': 1.0, 'draped': 1.0, 'leaking': 1.0, 'side': 2.0, 'worked': 1.0, 'for': 1.0, 'you': 1.0, 'meant': 1.0, 'like': 3.0, 'angle': 1.0, 'cheap': 1.0, 'me': 1.0, 'not': 1.0, 'those': 1.0, 'suppose': 1.0, 'have': 1.0, 'how': 2.0, 'used': 2.0, 'one': 2.0, 'tubs': 2.0, 'them': 1.0, 'baby': 1.0, 'awkward': 1.0, 'difficult': 1.0, 'more': 1.0, 'weight': 1.0, 'size': 1.0}
Word element => {'helps': 1.0, 'hope': 1.0, 'revise': 1.0, 'faulty': 1.0, 'selling': 1.0, 'stop': 2.0, 'as': 1.0, 'writing': 1.0, 'sponge': 1.0, 'rigged': 1.0, 'plastic': 1.0, 'between': 1.0, 'hole': 1.0, 'there': 1.0, 'wrong': 1.0, 'in': 1.0, 'toddlers': 1.0, 'since': 1.0, '1st': 1.0, 'or': 3.0, 'babies': 1.0, 'been': 2.0, 'soaking': 1.0, 'began': 1.0, 'place': 2.0, 'collapse': 1.0, 'expand': 1.0, 'filled': 1.0, 'was': 1.0, 'plan': 1.0, 'which': 1.0, 'evident': 1.0, 'leaking': 3.0, 'piece': 1.0, 'recommend': 1.0, 'purchased': 1.0, 'to': 7.0, 'an': 1.0, 'all': 2.0, 'them': 1.0, 'encourage': 1.0, 'has': 2.0, 'a': 8.0, 'we': 1.0, 'the': 14.0, 'of': 5.0, 'orignally': 1.0, 'tub': 6.0, 'towel': 1.0, 'bath': 1.0, 'ability': 1.0, 'product': 3.0, 'for': 3.0, 'be': 1.0, 'because': 2.0, 'than': 1.0, 'just': 1.0, 'wet': 1.0, 'first': 2.0, 'few': 1.0, 'this': 5.0, 'thought': 1.0, 'it': 9.0, 'month': 1.0, 'great': 1.0, 'well': 1.0, 'i': 10.0, 'beneath': 1.0, 'two': 2.0, 'safety': 1.0, 'wouldn': 1.0, 'actual': 1.0, 'one': 2.0, 'anyone': 1.0, 'and': 8.0, 'either': 1.0, 'weeks': 1.0, 'boy': 1.0, 'would': 1.0, 'on': 1.0, 'long': 1.0, 'baby': 1.0, 'entire': 1.0, 'my': 2.0, 'underneath': 1.0, 'bathroom': 1.0, 'after': 1.0, 'using': 1.0, 'even': 1.0, 'took': 1.0, 'back': 2.0, 't': 1.0, 'replacement': 1.0, 'out': 1.0, 'very': 1.0, 'later': 1.0, 'again': 1.0, 'am': 1.0, 'starts': 1.0, 'you': 2.0, 'at': 1.0, 'is': 2.0, 'look': 1.0, 'leaked': 1.0, 'manufacturer': 1.0, 'towels': 1.0, 'before': 1.0, 'ineffective': 1.0, 'with': 2.0, 'up': 2.0, 'water': 3.0, 'term': 1.0, 'morning': 1.0, 'spewed': 1.0, 'bottom': 1.0, 'getting': 1.0, 'had': 4.0, 'counter': 1.0, 'absorb': 1.0, 'taking': 1.0, 'today': 1.0, 'finding': 1.0, 'better': 1.0, 'if': 1.0, 'parts': 1.0, 'worse': 1.0, 'construction': 1.0}
Word element => {'told': 1.0, 'no': 1.0, 'heed': 1.0, 'take': 1.0, 'tub': 1.0, 'empty': 1.0, 'an': 1.0, 'he': 1.0, 'his': 1.0, 'with': 1.0, 'time': 1.0, 'because': 1.0, 'not': 2.0, 'reviews': 1.0, 'for': 1.0, 'directions': 1.0, 'and': 4.0, 'say': 1.0, 'is': 1.0, 'ignored': 1.0, 'read': 1.0, 'cute': 1.0, 'anyway': 1.0, 'don': 1.0, 'can': 1.0, 'sitting': 1.0, 'money': 1.0, 'the': 5.0, 'registered': 1.0, 'waste': 1.0, 'instructions': 1.0, 'one': 1.0, 'months': 1.0, 'finish': 1.0, 'you': 3.0, 'follow': 1.0, 'i': 2.0, 'bath': 1.0, 'your': 1.0, 'if': 2.0, 'practical': 1.0, 'did': 1.0, 'leaks': 1.0, 'thought': 1.0, 'that': 3.0, 'even': 1.0, 'it': 3.0, 'was': 1.0, 'now': 1.0, 'in': 2.0, 'beginning': 1.0, 's': 1.0, 't': 2.0, 'we': 2.0, 'have': 1.0, 'any': 1.0, 'all': 1.0, 'old': 1.0, 'problems': 1.0, 'still': 1.0, 'son': 1.0, 'at': 1.0, 'my': 1.0, '5': 1.0, 'by': 1.0}
Word element => {'simple': 1.0, 'end': 1.0, 'drain': 1.0, 'buying': 1.0, 'with': 1.0, 'give': 1.0, 'everytime': 1.0, 'filling': 1.0, 'hassle': 1.0, 'other': 1.0, 'didn': 1.0, 'you': 3.0, 'if': 1.0, 'needed': 1.0, 'no': 1.0, 'purpose': 1.0, 'for': 1.0, 'worth': 1.0, 'seperately': 1.0, 'be': 2.0, 'made': 1.0, 'take': 1.0, 'water': 2.0, 'seemed': 1.0, 'great': 1.0, 'the': 12.0, 'emptying': 1.0, 'given': 1.0, 'can': 1.0, 'but': 1.0, 'leak': 1.0, 'of': 3.0, 'is': 1.0, 'others': 1.0, 'doesn': 1.0, 'was': 2.0, 'fill': 2.0, 'now': 1.0, 'have': 3.0, 'able': 1.0, 'this': 3.0, 'get': 1.0, 'easy': 2.0, 'tub': 8.0, 'out': 1.0, 't': 2.0, 'we': 1.0, 'a': 4.0, '4': 1.0, 'i': 2.0, 'old': 1.0, 'because': 1.0, 'does': 1.0, 'sling': 4.0, 'reclines': 1.0, 'his': 1.0, 'bathtub': 1.0, 'gift': 1.0, 'still': 1.0, 'using': 1.0, 'like': 2.0, 'head': 1.0, 'sold': 1.0, 'and': 6.0, 'just': 3.0, 'bathtubs': 1.0, 'bath': 5.0, 'in': 1.0, 'to': 6.0, 'as': 1.0, 'our': 3.0, 'baby': 3.0, 'needs': 1.0, 'time': 1.0, 'bathe': 1.0, 'it': 7.0, 'month': 1.0, 'that': 1.0, 'been': 1.0, 'written': 1.0, 'loves': 1.0, 'enough': 1.0, 'at': 1.0, 'lot': 1.0, 'indeed': 1.0, 'since': 1.0, 'keep': 1.0}
Word element => {'better': 1.0, 'something': 1.0, 'baby': 1.0, 'floors': 1.0, 'clean': 1.0, 'want': 1.0, 'if': 1.0, 'leak': 1.0, 'destined': 1.0, 'bottom': 1.0, 'in': 1.0, 'is': 2.0, 'realize': 1.0, 'about': 1.0, 'stupid': 1.0, 'everywhere': 1.0, 'water': 1.0, 'countertops': 1.0, 'not': 1.0, 'using': 1.0, 'for': 3.0, 'deceive': 1.0, 'spout': 1.0, 'of': 1.0, 'the': 6.0, 'such': 1.0, 'bath': 1.0, 'your': 1.0, 'make': 1.0, 'think': 1.0, 'on': 1.0, 'over': 3.0, 'crack': 1.0, 'at': 1.0, 'otherwise': 1.0, 'i': 7.0, 'high': 1.0, 'save': 1.0, 'neat': 1.0, 'my': 1.0, 'but': 2.0, 'can': 1.0, 'this': 2.0, 'with': 2.0, 'what': 1.0, 'had': 1.0, 'trouble': 1.0, 'towels': 1.0, 'still': 1.0, 'get': 2.0, 'tub': 4.0, 'out': 1.0, 'idea': 1.0, 'you': 5.0, 'when': 1.0, 'am': 1.0, 'leaking': 1.0, 'pulls': 1.0, 'it': 6.0, 'looks': 2.0, 'cuss': 1.0, 'every': 2.0, 'hopes': 1.0, 'use': 1.0, 'so': 2.0, 'time': 2.0, 'outside': 1.0, 'as': 1.0, 'to': 3.0, 'all': 2.0, 'have': 2.0, 'kitchen': 1.0, 'design': 1.0, 'sink': 1.0, 'box': 1.0, 'that': 1.0, 's': 1.0, 'a': 4.0, 'and': 3.0, 'yourself': 2.0, 'do': 1.0, 'surround': 1.0}
Word element => {'brandi': 1.0, 'gift': 1.0, 'in': 1.0, 'sister': 1.0, 'comfy': 1.0, 'be': 1.0, 'would': 2.0, 'just': 1.0, 'harmful': 1.0, 'isn': 1.0, 'padding': 1.0, 'foam': 1.0, 'expecting': 1.0, 'recommend': 1.0, 'was': 1.0, 'to': 3.0, 'first': 1.0, 'this': 1.0, 'only': 1.0, 'sit': 1.0, '8': 1.0, 'have': 2.0, 'good': 1.0, 'april': 1.0, 'her': 3.0, 'since': 2.0, 'enjoyed': 1.0, 'use': 1.0, 'my': 2.0, 'baby': 1.0, 'girl': 1.0, 'months': 1.0, 'plastic': 1.0, 'macy': 1.0, 'more': 1.0, 'around': 1.0, 'is': 2.0, 'thing': 1.0, 'amp': 2.0, 'i': 5.0, 'own': 1.0, 'the': 3.0, 'great': 2.0, 'though': 1.0, 'ring': 2.0, 'from': 1.0, 'has': 2.0, 'that': 1.0, 'been': 2.0, 'there': 1.0, 'prevent': 1.0, 'luck': 1.0, 'falling': 1.0, 'forward': 2.0, 'accidentally': 1.0, 'or': 1.0, 'bath': 1.0, 'on': 1.0, 'think': 2.0, 'it': 3.0, 'month': 1.0, 'she': 1.0, 'reaches': 1.0, 'when': 1.0, 'idea': 2.0, 't': 1.0, 'a': 1.0, 'could': 1.0, 'learning': 1.0, 'some': 1.0}
Word element => {'well': 1.0, 'very': 1.0, 'couldn': 1.0, 'sit': 1.0, 'fourth': 1.0, 'attachment': 2.0, 'yellow': 1.0, 'find': 1.0, 'upside': 1.0, 'resting': 1.0, 'tub': 1.0, 'would': 3.0, 'days': 1.0, 'every': 1.0, 'you': 1.0, 'her': 2.0, 'sunlight': 1.0, 'tried': 1.0, 'i': 4.0, 'be': 1.0, 'for': 1.0, 'supposed': 1.0, 'holder': 1.0, 'bouncer': 1.0, 'it': 6.0, 'this': 1.0, 'even': 1.0, 'wouldn': 1.0, 'is': 2.0, 'smelled': 1.0, 'second': 1.0, 'like': 1.0, 'using': 1.0, 'on': 1.0, 'put': 1.0, 'division': 1.0, 'of': 2.0, 'wash': 1.0, 'mildew': 2.0, 'up': 1.0, 'not': 2.0, 'give': 1.0, 'reach': 1.0, 'the': 12.0, 'tightly': 1.0, 'underneath': 1.0, 'my': 2.0, 'them': 1.0, 'baby': 4.0, 'too': 1.0, 'and': 5.0, 'bathtub': 2.0, 'drying': 1.0, 'leaks': 1.0, 'had': 1.0, 'hassle': 1.0, 'girl': 2.0, 'down': 1.0, '8': 1.0, 'have': 3.0, 'decided': 1.0, 'months': 1.0, 'makes': 1.0, 'old': 1.0, 'through': 2.0, 'in': 2.0, 'still': 2.0, 'middle': 1.0, 't': 3.0, 'ago': 1.0, 'we': 3.0, 'a': 1.0, 'at': 1.0, 'quickly': 1.0, 'first': 1.0, 'beginning': 1.0, 'cloth': 1.0, 'everyday': 1.0, 'third': 1.0, 'couple': 1.0, 'proof': 1.0, 'loose': 1.0, 'wasn': 1.0, 'work': 1.0, 'sitting': 2.0, 'but': 1.0, 'weird': 1.0, 'now': 1.0, 'weeks': 1.0, 'cracks': 1.0, 'by': 1.0, 'few': 1.0, 'to': 5.0, 'our': 1.0, 'bathe': 2.0, 'so': 1.0, 'water': 1.0}
Word element => {'baby': 1.0, 'better': 1.0, 'now': 1.0, 'day': 1.0, 'one': 1.0, 'sudden': 1.0, 'a': 2.0, 'bottom': 1.0, 'continued': 1.0, 'disgusting': 1.0, 'had': 1.0, 'thought': 1.0, 'tub': 1.0, 'get': 1.0, 'would': 1.0, 'dry': 1.0, 'clean': 1.0, 'worked': 1.0, 'began': 1.0, 'i': 7.0, 'with': 1.0, 'moldy': 1.0, 'it': 4.0, 'this': 1.0, 'chose': 1.0, 'and': 4.0, 'cracked': 1.0, 'until': 1.0, 'great': 1.0, 'the': 5.0, 'without': 1.0, 'pregnant': 1.0, 'but': 1.0, 'can': 1.0, 'loved': 1.0, 'for': 3.0, 'product': 1.0, 'immediately': 1.0, 'of': 2.0, 'there': 1.0, 'my': 3.0, 'registry': 1.0, 'searching': 1.0, 'cause': 1.0, 'reviews': 1.0, 'using': 2.0, 'reading': 1.0, 'which': 2.0, 'plug': 1.0, 'because': 1.0, 'difficult': 1.0, 'again': 1.0, 'am': 2.0, 'easily': 1.0, 'idea': 1.0, 'you': 1.0, 'only': 1.0, 'empty': 1.0, 'that': 2.0, 'throw': 1.0, 'were': 2.0, 'newborn': 1.0, 'out': 2.0, 'bad': 1.0, 'daughter': 1.0, 'water': 1.0, 'part': 1.0, 'was': 2.0, 'any': 1.0, 'all': 2.0, 'to': 4.0, 'pretty': 1.0, 'many': 1.0, 'just': 1.0, 'cracks': 1.0, 'keep': 2.0}
Word element => {'more': 1.0, 'just': 1.0, 'head': 1.0, 'hold': 1.0, 'now': 1.0, 'each': 1.0, 'during': 1.0, 'locking': 1.0, 'tub': 2.0, 'able': 2.0, 'turned': 1.0, 'in': 2.0, 'clipped': 1.0, 'grab': 1.0, 'enjoy': 1.0, 'stay': 1.0, 'up': 1.0, 'water': 1.0, 'pinched': 1.0, 'once': 1.0, 'shower': 1.0, 'breastfed': 1.0, 'active': 1.0, 'sit': 1.0, 'when': 3.0, 'so': 2.0, 'time': 1.0, 'bit': 1.0, 'however': 1.0, 'used': 2.0, 'son': 1.0, 'to': 7.0, 'gift': 1.0, 'a': 5.0, 't': 2.0, 'kick': 1.0, 'his': 6.0, 'would': 1.0, 'fabulous': 1.0, 'of': 3.0, 'the': 12.0, 'deal': 1.0, 'sharp': 1.0, 'he': 7.0, 'plastic': 1.0, 'anyway': 2.0, 'use': 5.0, 'much': 1.0, 'scratch': 1.0, 'actually': 2.0, 'for': 2.0, 'me': 1.0, 'my': 2.0, 'entire': 1.0, 'began': 3.0, 'was': 3.0, 'wouldn': 1.0, 'got': 1.0, 'this': 1.0, 'him': 1.0, 'thought': 1.0, 'it': 8.0, 'gave': 1.0, 'month': 1.0, 'first': 1.0, 'sling': 2.0, 'big': 1.0, 'ducky': 1.0, 'rough': 1.0, 'stomach': 2.0, 'and': 5.0, 'soon': 1.0, 'too': 1.0, 'bath': 1.0, 'couple': 1.0, 'wasn': 1.0, 'discontinued': 1.0, 'after': 1.0, 'cut': 1.0, 'over': 1.0, 'rubber': 1.0, 'at': 1.0, 'ring': 5.0, 'is': 3.0, 'being': 1.0, 'very': 2.0, 'underneath': 1.0, 'chunky': 1.0, 'that': 5.0, 'because': 1.0, '20': 1.0, '5': 1.0, 'lb': 1.0, 'old': 1.0, 'realized': 1.0, 'leaned': 1.0, 'think': 1.0, 'between': 1.0, 'months': 1.0, 'get': 1.0, 'legs': 1.0, 'leaked': 1.0, 'as': 2.0, 'body': 1.0, 'then': 1.0, 'until': 1.0, 'seems': 2.0, 'received': 1.0, 'also': 1.0, 'i': 10.0, 'well': 1.0, 'but': 1.0}
Word element => {'same': 1.0, 'at': 1.0, 'suck': 1.0, 'trying': 1.0, 'lifting': 1.0, 'of': 1.0, 'little': 1.0, 'suctions': 2.0, 'pretty': 1.0, 'up': 1.0, 'fill': 1.0, 'thing': 1.0, 'making': 1.0, 'anything': 1.0, 'mold': 1.0, 'with': 2.0, 'problem': 1.0, 'had': 1.0, 'time': 1.0, 'so': 2.0, 'after': 1.0, 'right': 1.0, 'good': 1.0, 'clean': 1.0, 'used': 1.0, 'his': 1.0, 'too': 1.0, 'and': 7.0, 'only': 1.0, 'do': 1.0, 'hate': 1.0, 'sit': 1.0, 'likes': 2.0, 'sling': 1.0, 'liked': 1.0, 'water': 3.0, 'or': 2.0, 'complicated': 1.0, 'i': 3.0, 'also': 1.0, 'this': 3.0, 'he': 3.0, 'it': 12.0, 'is': 1.0, 'tup': 1.0, 'around': 1.0, 'the': 9.0, 'splash': 1.0, 'extended': 1.0, 'my': 1.0, 'son': 1.0, 'lay': 1.0, 'to': 4.0, 'spill': 1.0, 'was': 1.0, 'heavy': 1.0, 'baths': 1.0, 'hassle': 1.0, 'work': 1.0, 'but': 2.0, 'when': 2.0, 'got': 1.0, 'loved': 1.0, 'put': 1.0, 'on': 4.0, 'bath': 1.0, 'every': 1.0, 'sink': 1.0, 'never': 2.0, 'leaked': 1.0, 'leave': 1.0, 'position': 1.0, 'because': 1.0, 's': 2.0, 'we': 4.0, 'a': 4.0, 'opening': 1.0, 'get': 1.0, 'kind': 1.0, 'tub': 2.0, 'closing': 1.0, 'not': 2.0, 'give': 1.0, 'night': 1.0, 'baby': 1.0}
Word element => {'easy': 1.0, 'much': 1.0, 'that': 1.0, 'stores': 1.0, 'in': 1.0, 'tubs': 1.0, 'to': 1.0, 'was': 2.0, 'than': 1.0, 'water': 1.0, 'but': 1.0, 'instructions': 1.0, 'me': 1.0, 'and': 1.0, 'the': 5.0, 'are': 2.0, 'assembly': 1.0, 'followed': 1.0, 'we': 1.0, 'use': 1.0, 'bath': 2.0, 'time': 2.0, 'since': 1.0, 'a': 1.0, 'this': 1.0, 'first': 1.0, 'hard': 1.0, 'handle': 1.0, 'for': 1.0, 'there': 1.0, 'leaking': 1.0, 'many': 1.0, 'so': 2.0}
Word element => {'properly': 1.0, 'dry': 1.0, 'can': 1.0, 'so': 1.0, 'under': 1.0, 'pieces': 1.0, 'in': 1.0, 'apart': 1.0, 'grown': 1.0, 'underneath': 1.0, 'each': 1.0, 'after': 2.0, 'blue': 1.0, 'where': 1.0, 'for': 1.0, 'it': 4.0, 'the': 3.0, 'place': 1.0, 'tub': 3.0, 'had': 1.0, 'to': 1.0, 'immediately': 1.0, 'unless': 1.0, '11': 1.0, 'plus': 1.0, 'ring': 1.0, 'snap': 2.0, 'this': 1.0, 'found': 1.0, 'two': 1.0, 'i': 2.0, 'mildew': 1.0, 'threw': 1.0, 'weeks': 1.0, 'away': 1.0, 'and': 2.0, 'do': 1.0, 'went': 1.0, 'bought': 1.0, 'using': 1.0, 'u': 1.0, 'we': 1.0, 'a': 1.0, 'plan': 1.0, 'that': 1.0, 'does': 1.0, 'not': 2.0, 'pull': 1.0, 'together': 1.0, 'recommend': 1.0, 'use': 1.0}
Word element => {'this': 1.0, 'one': 1.0, 'new': 1.0, 'buy': 2.0, 'and': 1.0, 'now': 1.0, 'sides': 1.0, 'sudden': 1.0, 'you': 1.0, 'times': 1.0, 'six': 1.0, 'about': 1.0, 'fine': 1.0, 'used': 1.0, 'have': 2.0, 'tub': 3.0, 'couple': 1.0, 'out': 1.0, 'had': 2.0, 'recommend': 1.0, 'leaking': 1.0, 'was': 3.0, 'registry': 1.0, 'the': 5.0, 'it': 5.0, 'of': 2.0, 'shower': 1.0, 'first': 1.0, 'thinking': 1.0, 'i': 7.0, 'then': 1.0, 'took': 1.0, 'use': 1.0, 'on': 1.0, 'bath': 2.0, 'put': 1.0, 'uses': 1.0, 'toddler': 1.0, 'all': 1.0, 'to': 6.0, 'as': 1.0, 'son': 1.0, 'gift': 1.0, 'since': 1.0, 'at': 2.0, 'after': 1.0, 'station': 2.0, 'my': 3.0, 'water': 1.0, 'together': 1.0, 'pull': 1.0, 'started': 1.0, 'baby': 1.0, 'years': 1.0, 'go': 1.0, 'a': 5.0, 'could': 1.0, 'great': 1.0, 'until': 1.0, 'reached': 1.0, 'which': 1.0, 'his': 1.0, 'received': 1.0, 'how': 1.0, 'from': 2.0, 'hard': 1.0, 'while': 1.0, 'product': 1.0, 'for': 1.0, 'assemble': 1.0, 'not': 1.0, 'me': 1.0, 'do': 2.0, 'figure': 1.0, 'little': 1.0, 'because': 1.0, 'so': 1.0}
Word element => {'bumpkiss': 1.0, 'piece': 1.0, 'replace': 1.0, 'going': 1.0, 'm': 1.0, 'hold': 2.0, 'to': 8.0, 'as': 1.0, 't': 2.0, 'a': 2.0, 'into': 2.0, 'digs': 1.0, 'back': 1.0, 'inside': 1.0, 'and': 3.0, 'where': 2.0, 'ever': 1.0, 'hand': 1.0, 'buy': 2.0, 'bathtub': 1.0, 'else': 1.0, 'even': 1.0, 'safety': 1.0, 'does': 1.0, 'that': 2.0, 'seams': 1.0, 'are': 1.0, 'least': 1.0, 'seem': 1.0, 'hands': 1.0, 'over': 1.0, 'lower': 1.0, 'on': 2.0, 'your': 2.0, 'think': 1.0, 'ridge': 1.0, 'it': 3.0, 'this': 4.0, 'not': 2.0, 'heard': 1.0, 'worst': 1.0, 'weak': 1.0, 'aren': 1.0, 'comfortable': 1.0, 'sling': 2.0, 'awful': 1.0, 'i': 3.0, 'well': 1.0, 'also': 1.0, 'slipping': 1.0, 'seems': 1.0, 'seam': 1.0, 'so': 1.0, 'o': 1.0, 'there': 1.0, 'the': 9.0, 'of': 1.0, 'tub': 1.0, 'only': 1.0, 'put': 1.0, 'do': 1.0, 'was': 1.0, 'lbs': 1.0, 'is': 5.0, 'at': 2.0, 'keep': 1.0, 'birth': 1.0, 'eurobath': 1.0, 'have': 2.0, 'use': 1.0, 'too': 2.0, 'one': 2.0, 's': 2.0, 'advice': 1.0, 'or': 2.0, 'from': 1.0, 'up': 2.0, 'water': 1.0, 'newborn': 1.0, 'hazard': 1.0, 'mine': 1.0, '6': 1.0, 'hello': 1.0, 'both': 1.0, 'free': 1.0, 'leaks': 1.0, 'support': 1.0, 'clean': 1.0, 'which': 1.0, 'good': 1.0, 'just': 1.0, 'take': 1.0, 'baby': 4.0, 'many': 1.0, 'me': 1.0, 'my': 1.0, 'doesn': 1.0, 'everyone': 1.0, 'registry': 1.0, 'however': 1.0, 'you': 1.0, 'things': 1.0, 'about': 1.0}
Word element => {'height': 1.0, 'decent': 1.0, 'few': 1.0, 'every': 1.0, 'her': 1.0, 'have': 1.0, 'in': 1.0, 'do': 1.0, 'splashing': 1.0, 'tub': 3.0, 'get': 1.0, 'supposed': 1.0, 'am': 1.0, 'baby': 2.0, 'that': 1.0, 'terrible': 1.0, 'wonderful': 1.0, 'use': 2.0, 'minutes': 1.0, 'was': 1.0, 'fill': 1.0, 'now': 2.0, 'thought': 1.0, 'had': 2.0, 'towels': 1.0, 'first': 1.0, 'it': 9.0, 'leaky': 1.0, 'directions': 1.0, 'i': 10.0, 'keep': 1.0, 'at': 2.0, 'okay': 1.0, 'often': 1.0, 'my': 2.0, 'place': 1.0, 'the': 6.0, 'll': 1.0, 'until': 1.0, 'admit': 1.0, 'well': 1.0, 'dedcided': 1.0, 'followed': 1.0, 'and': 1.0, 'set': 1.0, 'leak': 2.0, 'from': 1.0, 'soaked': 1.0, 'properly': 1.0, 'can': 1.0, 'but': 2.0, 'seal': 1.0, 'bath': 1.0, 'on': 2.0, 'up': 1.0, 'over': 1.0, 'more': 1.0, 'is': 1.0, 'not': 1.0, 'give': 1.0, 'countertops': 1.0, 'shove': 1.0, 'under': 1.0, 'before': 1.0, 'a': 3.0, 'could': 1.0, 'to': 5.0, 'all': 1.0}
Word element => {'worth': 1.0, 'absolutely': 1.0, 'price': 1.0, 'low': 1.0, 'a': 1.0, 's': 1.0, 'woods': 1.0, 'camping': 1.0, 'keeping': 1.0, 'bug': 1.0, 'it': 2.0, 'this': 1.0, 'was': 1.0, 'net': 1.0, 'so': 1.0, 'for': 2.0, 'love': 1.0, 'slept': 1.0, 'play': 1.0, 'we': 1.0, 'covering': 1.0, 'on': 1.0, 'over': 1.0, 'such': 1.0, 'great': 2.0, 'the': 3.0, 'pack': 1.0, 'and': 2.0, 'while': 2.0, 'walks': 1.0, 'stroller': 1.0, 'she': 1.0, 'in': 1.0, 'also': 1.0, 'out': 1.0}
Word element => {'use': 2.0, 'in': 1.0, 'not': 1.0, 'compactable': 1.0, 'when': 1.0, 'too': 1.0, 'easy': 1.0, 'she': 1.0, 'still': 1.0, 'can': 2.0, 'is': 2.0, 'part': 1.0, 'stroller': 1.0, 'playpen': 1.0, 'me': 1.0, 'and': 2.0, 'my': 2.0, 'the': 2.0, 'are': 1.0, 'definitely': 1.0, 'covers': 1.0, 'one': 1.0, 'love': 1.0, 'it': 4.0, 'see': 2.0, 'well': 1.0, 'i': 2.0, 'bugs': 1.0, 'that': 2.0, 'very': 3.0, 'best': 1.0, 'no': 1.0, 'there': 1.0, 'penetrate': 1.0, 'able': 1.0, 'have': 1.0, 'little': 1.0, 'been': 1.0, 'to': 2.0}
Word element => {'plays': 1.0, 'graco': 1.0, 'over': 1.0, 'also': 1.0, 'in': 1.0, 'easily': 2.0, 'so': 1.0, 'if': 1.0, 'bag': 1.0, 'light': 1.0, 'play': 2.0, 'can': 1.0, 'netting': 2.0, 'you': 2.0, 'bugs': 1.0, 'weight': 1.0, 'and': 3.0, 'have': 2.0, 'pack': 4.0, 'to': 1.0, 'a': 1.0, 'is': 2.0, 'diaper': 1.0, 'the': 4.0, 'ever': 1.0, 'your': 2.0, 'must': 1.0, 'very': 1.0, 'outside': 1.0, 'fits': 1.0, 'out': 1.0, 'keeps': 1.0, 'intend': 1.0, 'it': 3.0}
Word element => {'ours': 1.0, 'i': 1.0, 'lot': 1.0, 'use': 2.0, 'the': 2.0, 'and': 2.0, 'very': 1.0, 'wipes': 1.0, 'chairs': 1.0, 'high': 1.0, 'price': 1.0, 'if': 1.0, 'often': 1.0, 'restaurant': 1.0, 'attractive': 1.0, 'to': 2.0, 'clean': 1.0, 'forget': 1.0, 'adapted': 1.0, 'worth': 1.0, 'a': 1.0, 'well': 1.0, 'has': 1.0, 'carts': 1.0, 'material': 1.0, 'is': 1.0, 'this': 1.0, 'it': 2.0, 'easily': 1.0, 'you': 1.0}
Word element => {'what': 1.0, 'is': 1.0, 'car': 1.0, 'chewing': 1.0, 'about': 2.0, 'worry': 1.0, 'carts': 1.0, 'cart': 1.0, 'shopping': 2.0, 'have': 1.0, 'sit': 1.0, 'sides': 1.0, 'him': 2.0, 'in': 1.0, 'having': 1.0, 'months': 1.0, 'on': 2.0, 'to': 1.0, 'was': 2.0, 'when': 1.0, 'i': 2.0, 'seat': 1.0, 'only': 1.0, 'with': 1.0, 'this': 2.0, 'five': 1.0, 'and': 3.0, 'of': 1.0, 'up': 2.0, 'my': 2.0, 'complant': 1.0, 'the': 5.0, 'bought': 1.0, 'still': 1.0, 'bar': 1.0, 'a': 1.0, 'sitting': 1.0, 'belt': 1.0, 'didnt': 1.0, 'little': 1.0, 'son': 1.0, 'problems': 1.0, 'helped': 1.0}
Word element => {'every': 1.0, 'dirty': 1.0, 'directly': 1.0, 'him': 1.0, 'better': 1.0, 'but': 1.0, 'whole': 1.0, 'do': 1.0, 'cart': 1.0, 'shopping': 1.0, 'parts': 1.0, 'handle': 2.0, 'exposed': 1.0, 'not': 1.0, 'me': 1.0, 'is': 3.0, 'people': 1.0, 'ask': 1.0, 'it': 2.0, 'this': 5.0, 'cover': 2.0, 'parent': 2.0, 'absolutely': 1.0, 'son': 1.0, 'still': 1.0, 'must': 1.0, 'have': 1.0, 'item': 2.0, 'purchased': 1.0, 'recommend': 1.0, 'store': 1.0, 'travel': 1.0, 'everytime': 1.0, 'where': 1.0, 'love': 1.0, 'for': 1.0, 'stars': 1.0, 'and': 3.0, 'finds': 1.0, 'a': 4.0, 'go': 1.0, '5': 1.0, 'having': 1.0, 'because': 2.0, 'than': 2.0, 'mouth': 1.0, 'gave': 1.0, 'into': 1.0, 'or': 1.0, 'would': 1.0, 'new': 1.0, 'however': 1.0, 'i': 5.0, '4': 1.0, 'of': 1.0, 'rather': 1.0, 'my': 1.0, 'sit': 1.0, 'way': 1.0, 'any': 2.0, 'seat': 5.0, 'to': 2.0, 'on': 2.0, 'put': 1.0, 'his': 1.0, 'hands': 1.0, 'the': 4.0}
Word element => {'you': 3.0, 'spent': 1.0, 'ive': 1.0, 'any': 1.0, 'money': 1.0, 'problems': 1.0, 'son': 1.0, 'best': 1.0, 'the': 1.0, 'now': 1.0, 'to': 1.0, 'turned': 1.0, 'in': 2.0, 'rides': 1.0, 'for': 1.0, 'ride': 1.0, 'a': 2.0, 'not': 1.0, 'would': 1.0, 'out': 1.0, '8mo': 1.0, 'i': 1.0, 'old': 1.0, 'awhile': 1.0, 'my': 2.0, 'it': 1.0, 'this': 1.0, 'without': 1.0, 'item': 1.0, 'myself': 1.0, 'on': 1.0, 'and': 1.0, 'found': 1.0, 'gift': 1.0, 'be': 1.0, 'friends': 1.0, 'bought': 1.0, 'thank': 3.0, 'cart': 1.0, 'shopping': 1.0, 'registry': 1.0}
Word element => {'expected': 1.0, 'what': 1.0, 'together': 1.0, 'for': 2.0, 'use': 1.0, 'in': 2.0, 'much': 1.0, 'works': 1.0, 'do': 1.0, 'maybe': 1.0, 'material': 1.0, 'one': 1.0, 'bought': 1.0, 'feel': 1.0, 'foot': 1.0, 'or': 1.0, 'of': 4.0, 'mattress': 1.0, 'this': 2.0, 'fine': 1.0, 'isn': 1.0, 'made': 1.0, 'disappointed': 1.0, 'was': 2.0, 'guide': 1.0, 'but': 3.0, 'back': 1.0, 'sewn': 1.0, 'how': 2.0, 'sheet': 1.0, 'fits': 1.0, 'i': 6.0, 'put': 1.0, 'on': 1.0, 'is': 1.0, 'it': 8.0, 'looks': 1.0, 'wouldn': 1.0, 'okay': 1.0, 'pay': 1.0, 'washes': 1.0, 'gets': 1.0, 'by': 1.0, 'myself': 1.0, 'the': 6.0, 'job': 1.0, 'too': 1.0, 'and': 5.0, 'done': 1.0, 'not': 1.0, 'me': 1.0, 'if': 1.0, 'all': 2.0, 'to': 1.0, 'constructed': 1.0, 'any': 1.0, 'as': 2.0, 'kind': 1.0, 'like': 2.0, 'head': 1.0, 'have': 2.0, 't': 2.0, 'could': 2.0, 'a': 2.0, 'with': 1.0, 'elastic': 1.0, 'wit': 1.0, 'hthe': 1.0, 'pillow': 1.0, 'that': 1.0, 'been': 1.0, 'case': 1.0, 'opening': 1.0, 'll': 1.0, 'down': 1.0, 'there': 1.0, 'instead': 1.0, 'future': 1.0, 'at': 1.0}
Word element => {'recommend': 1.0, 'the': 1.0, 'fine': 1.0, 'thin': 1.0, 'really': 1.0, 'it': 5.0, 'skin': 1.0, 'too': 2.0, 'and': 1.0, 'beds': 1.0, 'also': 1.0, 'knit': 2.0, 'particular': 1.0, 'crib': 2.0, 'size': 1.0, 'sheets': 4.0, 'i': 5.0, 'old': 1.0, 'previouly': 1.0, 'sheet': 3.0, 'be': 1.0, 'thought': 2.0, 'purchased': 1.0, 'not': 5.0, 'jersey': 3.0, 'tight': 1.0, 'owned': 2.0, 'fit': 1.0, 'supposed': 1.0, 'for': 2.0, 'nice': 1.0, 'twin': 1.0, 'feel': 4.0, 'comfortable': 1.0, 'have': 2.0, 'loose': 1.0, 'newborn': 1.0, 'is': 1.0, 'more': 1.0, 't': 1.0, 'on': 2.0, 'her': 1.0, 'because': 1.0, 'does': 3.0, 'than': 1.0, 'would': 3.0, 'basic': 1.0, 'are': 1.0, 'like': 2.0, 'mattress': 1.0, 'this': 3.0, 'soft': 2.0, 'at': 1.0, 'our': 1.0, 'all': 1.0, 'to': 1.0, 'an': 1.0, 'other': 1.0, 'shirt': 1.0}
Word element => {'need': 1.0, 'problem': 1.0, 'an': 1.0, 'was': 1.0, 'sides': 1.0, 'over': 1.0, 'step': 1.0, 'you': 2.0, 'unless': 1.0, 'uncle': 2.0, 'cats': 1.0, 'which': 1.0, 'babysitter': 1.0, 'move': 1.0, 'to': 2.0, 'our': 1.0, 'babies': 1.0, 'that': 2.0, 'yourself': 1.0, 'only': 2.0, 'drawback': 1.0, 'with': 2.0, 'withstood': 1.0, 'husband': 1.0, 'free': 1.0, 'now': 1.0, 'potential': 1.0, 'two': 2.0, 'i': 1.0, 'olds': 1.0, 'both': 2.0, 'and': 3.0, 'play': 1.0, 'a': 3.0, 's': 3.0, 'we': 1.0, 'my': 2.0, 'passage': 1.0, 'it': 4.0, 'month': 1.0, '9': 1.0, 'can': 2.0, 'be': 1.0, 'leaning': 1.0, 'extension': 1.0, 'in': 1.0, 've': 1.0, 'hands': 1.0, 'the': 5.0, 'area': 1.0, 'clutzy': 1.0, 'stable': 1.0, 'open': 1.0, 'pen': 1.0, 'they': 1.0, 'has': 1.0, 'twin': 1.0, 'big': 1.0, 'very': 1.0, 're': 1.0, 'enough': 1.0, 'll': 1.0, 'especially': 1.0, 'kit': 1.0, 'for': 2.0, 'this': 1.0, 'found': 1.0, 'kids': 1.0, 'by': 1.0, 'mobile': 1.0, 'portable': 1.0, 'on': 1.0, 'several': 1.0, 'attempts': 1.0}
Word element => {'serve': 1.0, 'will': 1.0, 'find': 1.0, 'fairly': 1.0, 'some': 1.0, 'yard': 1.0, 'type': 1.0, 'pack': 1.0, 'than': 1.0, 'more': 1.0, 'them': 1.0, 'give': 1.0, 'play': 2.0, 'about': 1.0, 'a': 7.0, 'am': 1.0, 'meant': 1.0, 'you': 3.0, 'times': 1.0, 'but': 1.0, 'he': 1.0, 'far': 1.0, 'fold': 1.0, 'parts': 1.0, 'really': 1.0, 'said': 2.0, 'people': 1.0, 'antsy': 1.0, 'that': 4.0, 'because': 1.0, 'unattractive': 1.0, 'bit': 1.0, 'can': 2.0, 'so': 2.0, 'to': 6.0, 'and': 11.0, 'extremely': 2.0, 'break': 1.0, 'me': 1.0, 'not': 1.0, 'saying': 1.0, 'just': 1.0, 'space': 1.0, 'skeptical': 1.0, 'start': 1.0, 'the': 6.0, 'without': 2.0, 'let': 1.0, 'or': 1.0, 'off': 2.0, 're': 1.0, 'enough': 3.0, 'almost': 1.0, 'read': 2.0, 'reviews': 1.0, 'for': 3.0, 'price': 1.0, 'product': 2.0, 'before': 1.0, 'its': 2.0, '250': 1.0, 'only': 1.0, 'was': 1.0, 'superyard': 2.0, 'buy': 1.0, 'day': 1.0, 'with': 1.0, 'hard': 1.0, 'clunky': 1.0, 'few': 1.0, 'this': 2.0, 'month': 1.0, 'difficult': 1.0, 'position': 1.0, 'if': 2.0, 'strong': 2.0, 'on': 1.0, 'lift': 1.0, 'thing': 1.0, 'many': 1.0, 'baby': 1.0, 'pleased': 1.0, 'up': 3.0, 'unfold': 1.0, 'down': 2.0, '8': 1.0, 'thousand': 1.0, 'like': 1.0, 'have': 2.0, 'use': 2.0, 'common': 2.0, 'bouncy': 1.0, 'old': 1.0, 's': 3.0, 'sense': 2.0, 'by': 1.0, 'pull': 1.0, 'is': 5.0, 'around': 2.0, 'say': 1.0, 'great': 2.0, 'big': 2.0, 'all': 1.0, 'an': 1.0, 'lightning': 1.0, 'well': 1.0, 'i': 7.0, 'fast': 1.0, 'even': 1.0, 'extension': 1.0, 'decided': 1.0, 'move': 1.0, 'getting': 1.0, 'it': 7.0, 'him': 1.0, 'cruise': 1.0, 'negative': 1.0}
Word element => {'aka': 1.0, 'andrea': 1.0, 'keeper': 1.0, 'rid': 1.0, 'get': 1.0, 'just': 1.0, 'ourselves': 1.0, 'playyards': 1.0, 'them': 2.0, 'always': 1.0, 'there': 1.0, 'although': 1.0, 'someday': 1.0, 'puppy': 1.0, 'corral': 1.0, 'use': 1.0, 'we': 3.0, 'otherwise': 1.0, 'was': 1.0, 'doorway': 1.0, 'where': 1.0, 'gate': 1.0, 'used': 1.0, 'also': 1.0, 'past': 1.0, 'in': 2.0, 'tree': 1.0, 'using': 1.0, 'christmas': 1.0, 'place': 2.0, 'currently': 1.0, 'new': 1.0, 'wide': 1.0, 'uses': 1.0, 'collapsing': 1.0, 'sagging': 1.0, 'don': 1.0, 'you': 2.0, 'less': 1.0, 'up': 1.0, 'set': 1.0, 'endless': 1.0, 'whatever': 1.0, 'merribelle': 1.0, 'more': 1.0, 'fourth': 1.0, 'finally': 1.0, 'tried': 1.0, 'because': 1.0, 'that': 1.0, 'kids': 2.0, 'this': 4.0, 'field': 1.0, 'presents': 1.0, 'out': 1.0, 'third': 1.0, 't': 1.0, 'fit': 1.0, 'for': 5.0, 'first': 1.0, 've': 1.0, 'several': 1.0, 'no': 2.0, 'happens': 1.0, 'thing': 1.0, 'configured': 1.0, 'be': 4.0, 'rippable': 1.0, 'large': 1.0, 'as': 2.0, 'to': 5.0, 'our': 3.0, 'indoors': 1.0, 'purpose': 1.0, 'can': 1.0, 'average': 1.0, 'sides': 1.0, 'containment': 1.0, 'sturdy': 1.0, 'i': 3.0, 'many': 1.0, 'at': 1.0, 'is': 10.0, 'around': 1.0, 'anyone': 1.0, 'and': 8.0, 'a': 5.0, 'find': 3.0, 'spent': 1.0, 'yard': 6.0, 'than': 1.0, 'area': 1.0, 'goes': 1.0, 'it': 10.0, 'with': 2.0, 'children': 1.0, 'have': 4.0, 'safer': 1.0, 'different': 1.0, 'often': 1.0, 'super': 3.0, 'under': 1.0, 'carpet': 1.0, 'altogether': 1.0, 'bottom': 1.0, 'fold': 1.0, 'two': 1.0, 'little': 1.0, 'great': 1.0, 'padded': 2.0, 'ever': 1.0, 'other': 1.0, 'all': 1.0, 'an': 2.0, 'playing': 1.0, 'soft': 1.0, 'without': 1.0, 'too': 1.0, 'childproofing': 1.0, 'ones': 1.0, 'hour': 1.0, 'will': 5.0, 'made': 1.0, 'happily': 1.0, 'outlast': 1.0, 'living': 1.0, 'much': 2.0, 'definitely': 1.0, 'twice': 1.0, 'pack': 1.0, 'room': 1.0, 'necessary': 1.0, 'polyurethane': 1.0, 'second': 2.0, 'moment': 1.0, 'about': 2.0, 'play': 7.0, 'darn': 1.0, 'the': 12.0, 'of': 3.0, 'indestructible': 1.0, 'netting': 1.0, 'unlike': 1.0, 'worry': 1.0, 'comfortable': 1.0, 'yards': 1.0, 'thick': 1.0, 'doubt': 2.0, 'on': 2.0, 'near': 1.0, 'long': 1.0, 'conventional': 2.0, 'after': 1.0, 'boy': 1.0, 'safety': 1.0, 'outgrows': 1.0, 'your': 1.0, 'any': 2.0, 'probably': 1.0, 'may': 1.0, 'my': 1.0, 'me': 1.0, 'surrounding': 1.0, 'ways': 1.0, 'easier': 1.0, 'setup': 1.0, 'or': 1.0}
Word element => {'peace': 1.0, 'giving': 1.0, 'mind': 1.0, 'protected': 1.0, 'place': 1.0, 'without': 1.0, 'life': 1.0, 'imagine': 1.0, 'now': 1.0, 'money': 1.0, 'earned': 1.0, 'hard': 1.0, 'solely': 1.0, 'use': 1.0, 'seemed': 1.0, 'first': 1.0, 'its': 1.0, 'into': 1.0, 'playpen': 1.0, 'needs': 1.0, 'sturdy': 2.0, 'not': 2.0, 'strap': 1.0, 'position': 1.0, 'fold': 2.0, 'solid': 1.0, 'clean': 1.0, 'makes': 3.0, 'because': 4.0, 'fall': 1.0, 'with': 6.0, 'conditions': 1.0, 'this': 7.0, 'weather': 1.0, 'take': 1.0, 'inside': 2.0, 'harsh': 1.0, 'when': 4.0, 'during': 1.0, 'flat': 1.0, 'have': 5.0, 'i': 7.0, 'desires': 1.0, 'knock': 1.0, 'occupied': 1.0, 'their': 1.0, 'cannot': 3.0, 'isn': 1.0, 'still': 1.0, 'don': 1.0, 'job': 1.0, 'to': 15.0, 'straight': 2.0, 'the': 29.0, 'gate': 10.0, 'outside': 1.0, 'tiny': 1.0, 'a': 9.0, 'do': 2.0, 'much': 2.0, 'only': 3.0, 't': 3.0, 'completely': 1.0, 'pet': 1.0, 'can': 1.0, 'is': 8.0, 'at': 1.0, 'toys': 2.0, 'excellent': 1.0, 'an': 3.0, 'saw': 1.0, 'all': 2.0, 'other': 1.0, 'but': 4.0, 'child': 3.0, 'for': 5.0, 'one': 4.0, 'containment': 4.0, 'holds': 1.0, 'size': 1.0, 'some': 3.0, 'carrying': 1.0, 'providing': 1.0, 'older': 1.0, 'transport': 1.0, 'depending': 1.0, 'up': 2.0, 'outdoor': 1.0, 'covers': 2.0, 'like': 2.0, 'of': 11.0, 'protection': 1.0, 'even': 3.0, 'kids': 6.0, 'superyard': 7.0, 'no': 3.0, 'our': 1.0, 'years': 1.0, 'fit': 2.0, 'easy': 2.0, 'left': 1.0, 'area': 2.0, 'sound': 1.0, 'about': 2.0, 'play': 2.0, 'large': 2.0, 'offers': 2.0, 'impractical': 1.0, 'expect': 1.0, 'children': 1.0, 'parent': 1.0, 'two': 5.0, 'space': 5.0, 'medium': 1.0, 'properly': 1.0, 'or': 4.0, 'thickness': 2.0, 'need': 1.0, 'and': 10.0, 'manner': 1.0, 'folded': 1.0, 'on': 2.0, 'tall': 1.0, 'joints': 1.0, 'good': 2.0, 'toddlers': 1.0, 'age': 1.0, 'marketed': 1.0, 'as': 2.0, 'will': 3.0, 'own': 1.0, 'xt': 6.0, 'shorter': 1.0, 'fully': 1.0, 'it': 20.0, 'be': 6.0, 'device': 2.0, 'get': 2.0, 'able': 1.0, 'climb': 1.0, 'off': 1.0, 'six': 1.0, 'clear': 1.0, 'extended': 1.0, 'over': 3.0, 'another': 1.0, 'open': 1.0, 'problems': 2.0, 'possibly': 1.0, 'walls': 2.0, 'down': 1.0, 'making': 1.0, 'needed': 1.0, 'easier': 1.0, 'limited': 2.0, 'has': 2.0, 'panels': 6.0, 'keep': 1.0, 'advantage': 1.0, 'parents': 2.0, 'there': 1.0, 'product': 2.0, 'dissemble': 1.0, 'consumers': 1.0, 'must': 1.0, 'doesn': 1.0, 'careful': 1.0, 'that': 2.0, 'placed': 2.0, 'very': 4.0, 'why': 1.0, 'together': 2.0, 'in': 4.0, 'well': 2.0, 'line': 2.0, 'useless': 1.0, 'safely': 1.0, 'consists': 1.0, 'stepped': 1.0, 'design': 1.0, 'order': 1.0, 'used': 1.0, 'become': 1.0, 'least': 1.0, 'gates': 1.0, 'each': 1.0, 'recommend': 1.0, 'resist': 1.0, 'bent': 1.0, 'pressure': 1.0, 'slightest': 1.0, 'small': 1.0, 'complaint': 1.0, 'people': 1.0, 'may': 1.0, 'are': 3.0, 'difficulty': 1.0, 'diminishes': 1.0, 'fitting': 1.0, 'number': 1.0, 'where': 1.0, 'your': 1.0, 'accommodate': 1.0, 'push': 1.0, 'capable': 1.0, 'might': 1.0, 'enough': 2.0, 'strongly': 1.0, 'height': 1.0, 'purchasing': 1.0, 'effectiveness': 1.0, 'extension': 1.0, 'kit': 2.0, 'additional': 1.0, 'while': 1.0, 'closed': 1.0, 'increases': 1.0, 'so': 1.0, 'substantially': 1.0, 'exactly': 1.0, 'handling': 1.0, 'they': 3.0, 'overall': 1.0, 'brushed': 1.0}
Word element => {'helps': 1.0, 'safe': 1.0, 'think': 1.0, 'as': 2.0, 'buy': 1.0, 'walking': 1.0, 'practice': 1.0, 'wasn': 1.0, 'mommy': 1.0, 'age': 1.0, 'big': 1.0, 'nice': 1.0, 'sturdy': 1.0, 'so': 1.0, 'area': 3.0, 'loves': 1.0, 'mouth': 1.0, 'picking': 1.0, 'change': 1.0, 'up': 2.0, 'laundry': 1.0, 'dirty': 1.0, 'daughter': 1.0, 'with': 2.0, 'though': 1.0, 'during': 1.0, 'good': 1.0, 'which': 1.0, 'smaller': 1.0, 'her': 4.0, 'anyway': 2.0, 'don': 2.0, 'bad': 1.0, 'say': 1.0, 'around': 1.0, 'panel': 1.0, 'realized': 1.0, 'toys': 1.0, 'point': 1.0, 'felt': 1.0, 'it': 6.0, 's': 3.0, 't': 4.0, 'added': 1.0, 'a': 7.0, 'forth': 1.0, 'accomplished': 1.0, 'child': 1.0, 'product': 2.0, 'structure': 1.0, 'for': 2.0, 'be': 1.0, 'getting': 2.0, 'keep': 1.0, 'did': 1.0, 'sane': 1.0, 'and': 9.0, 'one': 1.0, 'too': 1.0, 'across': 1.0, 'back': 1.0, 'bored': 1.0, 'whether': 1.0, 'ahead': 1.0, 'should': 1.0, 'earth': 1.0, 'other': 1.0, 'playing': 1.0, 'of': 2.0, 'the': 4.0, 'anything': 1.0, 'computer': 1.0, 'without': 2.0, 'playpen': 1.0, 'into': 1.0, 'tv': 1.0, 'than': 1.0, 'that': 4.0, 'because': 1.0, 'go': 1.0, '14': 1.0, 'used': 1.0, 'decided': 1.0, 'baby': 3.0, 'she': 4.0, 'zone': 2.0, 'doesn': 1.0, 'outlets': 1.0, 'must': 1.0, 'bathroom': 1.0, 'worried': 1.0, 'putting': 1.0, 'i': 14.0, 'day': 1.0, 'etc': 1.0, 'sort': 2.0, 'or': 1.0, 'this': 8.0, 'really': 1.0, 'home': 1.0, 'not': 2.0, 'my': 6.0, 'me': 2.0, 'wrong': 1.0, 'stay': 1.0, 'wires': 1.0, 'to': 5.0, 'was': 6.0, 'curiosity': 1.0, 'would': 1.0, 'important': 1.0, 'months': 1.0, 'get': 2.0, 'in': 2.0, 'm': 1.0, 'fun': 2.0, 'is': 5.0, 'tossed': 1.0, 'at': 1.0, 'feel': 1.0, 'mom': 2.0, 'everything': 1.0, 'daily': 1.0, 'jail': 2.0, 'hard': 1.0, 'basis': 1.0, 'even': 1.0, 'purchase': 2.0, 'quickly': 1.0, 'run': 1.0, 'toddling': 1.0, 'before': 1.0, 'room': 2.0, 'hindering': 1.0, 'bolted': 1.0, 'on': 2.0, 'much': 1.0, 'do': 1.0, 'morning': 1.0, 'able': 1.0, 'when': 1.0, 'what': 1.0, 'sit': 1.0}
Word element => {'of': 1.0, 'will': 1.0, '2': 1.0, 'together': 1.0, 'connect': 1.0, 'tricky': 1.0, 'thing': 1.0, 'connector': 1.0, 'had': 1.0, 'downfall': 1.0, 'make': 1.0, 'think': 1.0, 'so': 2.0, 'pre': 1.0, 'need': 2.0, 'rate': 1.0, 'like': 1.0, 'hand': 2.0, 'buy': 1.0, 'extra': 2.0, 'an': 2.0, 'stage': 1.0, 'accident': 1.0, 'busy': 1.0, 'send': 1.0, 'stars': 1.0, 'for': 4.0, '1': 1.0, 'school': 1.0, 'big': 1.0, 'getting': 1.0, 'something': 1.0, 'bought': 1.0, 'r': 1.0, 'be': 1.0, 'us': 1.0, 'yard': 2.0, 'to': 5.0, 'becuase': 2.0, 'lot': 1.0, 'bigger': 1.0, 'at': 3.0, 'space': 1.0, 'stress': 1.0, 'safe': 1.0, 'kids': 1.0, 'this': 3.0, 'kinda': 1.0, 'me': 2.0, 'n': 1.0, 'o': 1.0, 'with': 1.0, 'and': 2.0, 'too': 2.0, 'play': 4.0, '4': 1.0, 'i': 9.0, '15th': 1.0, 'old': 1.0, 'playing': 1.0, 'the': 6.0, 'daycare': 1.0, 'was': 3.0, 'store': 1.0, 'attachment': 1.0, 'needed': 1.0, 'it': 9.0, 'month': 1.0, 'felt': 1.0, 'she': 2.0, 'only': 1.0, 'pack': 1.0, 'age': 1.0, 'in': 2.0, 'matter': 1.0, 'while': 1.0, 'you': 2.0, 'when': 2.0, 'gives': 1.0, 'cook': 1.0, 'save': 1.0, 'purchase': 1.0, 'god': 1.0, 'my': 2.0, 'bathroom': 1.0, 'clean': 1.0, 'prone': 1.0, 'or': 1.0, 'toy': 1.0, 'has': 1.0, 'that': 4.0, 'been': 1.0, 'might': 1.0, 's': 1.0, 'could': 1.0, 'go': 1.0, 'a': 2.0}
Word element => {'get': 1.0, 'able': 1.0, 'dog': 1.0, 'children': 1.0, 'bigger': 1.0, 'of': 1.0, 'tp': 1.0, 'worry': 1.0, 'or': 1.0, 'i': 1.0, 'is': 1.0, 'yard': 1.0, 'the': 2.0, 'my': 1.0, 'play': 2.0, 'grandson': 1.0, 'safe': 1.0, 'being': 1.0, 'to': 2.0, 'him': 1.0, 'love': 1.0, 'without': 1.0}
Word element => {'adjusting': 1.0, 'struggle': 1.0, 'solution': 1.0, 'always': 1.0, 'if': 1.0, 'certainly': 1.0, 'gates': 1.0, 'when': 2.0, 'you': 2.0, 'times': 1.0, 'safety': 1.0, 'resists': 1.0, 'a': 1.0, 's': 3.0, 'could': 1.0, 'we': 1.0, 'gate': 1.0, 'place': 1.0, 'comes': 1.0, 'plan': 1.0, 'part': 1.0, 'from': 1.0, 'my': 2.0, 'eventually': 1.0, 'often': 1.0, 'think': 1.0, 'and': 4.0, 'like': 1.0, 'making': 1.0, 'most': 1.0, 'light': 1.0, 'little': 1.0, 'versatile': 1.0, 'handy': 1.0, 'lower': 1.0, 'needs': 1.0, 'can': 1.0, 'so': 1.0, 'for': 1.0, 'left': 1.0, 'it': 9.0, 'hop': 1.0, 'without': 1.0, 'remove': 1.0, 'this': 1.0, 'lost': 1.0, 'weight': 1.0, 'that': 2.0, 'into': 1.0, 'however': 1.0, 'easy': 1.0, 'tv': 1.0, 'favorite': 1.0, 'up': 1.0, 'than': 1.0, 'having': 1.0, 'find': 1.0, 'different': 1.0, 'sure': 1.0, 'sections': 2.0, 'to': 6.0, 'our': 1.0, 'said': 1.0, 'scale': 1.0, 'i': 6.0, 'broke': 1.0, 'position': 1.0, 'the': 4.0, 'popping': 1.0, 'of': 1.0, 'husband': 1.0, 'alone': 1.0, 'one': 1.0, 'trying': 1.0, 'be': 1.0, 'love': 1.0, 'fold': 1.0, 'height': 1.0, 'son': 1.0, 'really': 1.0, 'is': 1.0, 'at': 1.0, 'keep': 1.0, 'in': 1.0, 'm': 1.0, 'best': 1.0, 'd': 2.0, 'not': 1.0, 'piece': 1.0, 'recommend': 1.0, 'over': 1.0, 'open': 1.0, 'close': 1.0, 'set': 1.0, 'away': 1.0, 'an': 1.0, 'easier': 1.0, 'prettier': 1.0}
Word element => {'apart': 1.0, 'friend': 1.0, 'saver': 1.0, 'sanity': 1.0, 'over': 1.0, 'never': 1.0, 'however': 1.0, 'room': 1.0, 'of': 1.0, 'beware': 1.0, 'thing': 1.0, 'together': 1.0, 'they': 1.0, 'with': 1.0, 'old': 1.0, 'safe': 1.0, 'year': 1.0, 'his': 2.0, 'time': 1.0, 'so': 1.0, 'in': 5.0, 'large': 2.0, '19': 1.0, 'sometimes': 2.0, 'toys': 1.0, 'need': 1.0, 'there': 1.0, 'confined': 1.0, 'wants': 1.0, 'gets': 1.0, 'busy': 1.0, 'son': 1.0, 'very': 1.0, 'tipped': 1.0, 'open': 1.0, 'as': 3.0, 'to': 8.0, 'months': 1.0, 'one': 1.0, 'extentions': 1.0, 'lightweight': 1.0, 'another': 1.0, 'my': 3.0, 'put': 1.0, 'make': 1.0, 'is': 4.0, 'around': 1.0, 'aware': 1.0, 'when': 1.0, 'you': 3.0, 'this': 3.0, 'it': 8.0, 'he': 9.0, 'playing': 1.0, 'the': 7.0, 'gate': 3.0, 'love': 1.0, '2': 1.0, 'can': 4.0, 'down': 1.0, 'favorite': 1.0, 'stand': 1.0, 'n': 1.0, 'not': 2.0, 'sent': 1.0, 'plays': 2.0, 'area': 2.0, 'alone': 1.0, '4': 1.0, 'playyard': 2.0, 'i': 3.0, 'or': 1.0, 'such': 1.0, 'add': 1.0, 'babies': 1.0, 'been': 1.0, 'that': 3.0, 'gated': 1.0, 'has': 6.0, 's': 1.0, 'a': 4.0, 'feel': 2.0, 'because': 1.0, 'does': 1.0, 'even': 1.0, 'have': 1.0, 'small': 1.0, 'who': 1.0, 'space': 1.0, 'drag': 1.0, 'like': 1.0, 'pack': 1.0, 'too': 1.0, 'and': 2.0, 'play': 2.0, 'boundries': 1.0, 'him': 2.0}
Word element => {'uses': 1.0, 'between': 1.0, 'closet': 1.0, 'in': 2.0, 'love': 1.0, 'one': 1.0, 'when': 1.0, 'i': 1.0, 'contain': 1.0, 'is': 1.0, 'to': 1.0, 'product': 1.0, 'great': 1.0, 'a': 2.0, 'go': 1.0, 'it': 4.0, 'this': 1.0, 'use': 1.0, 'then': 1.0, 'my': 1.0, 'dogs': 1.0, 'we': 1.0, 'out': 1.0, 'and': 2.0, 'of': 1.0, 'up': 1.0, 'fold': 1.0, 'put': 1.0}
Word element => {'reaches': 1.0, 'kits': 1.0, 'than': 1.0, 'unstable': 1.0, 'also': 1.0, 'worth': 1.0, 'chair': 1.0, 'out': 1.0, 'move': 2.0, 'we': 1.0, 'once': 1.0, 'room': 2.0, 'octagon': 2.0, 'shape': 2.0, 'safe': 1.0, 'rectangle': 1.0, 'make': 4.0, 'you': 1.0, 'hexagon': 1.0, 'kit': 2.0, 'such': 1.0, 'for': 2.0, 'big': 2.0, 'great': 2.0, 'be': 4.0, 'going': 1.0, 't': 2.0, 'ago': 1.0, 'a': 6.0, 'especially': 1.0, 'enough': 2.0, 'yards': 1.0, 'play': 3.0, 'and': 5.0, 'anything': 1.0, 'since': 1.0, 'is': 3.0, 'at': 1.0, 'on': 2.0, 'to': 4.0, 'must': 2.0, 'sure': 1.0, 'market': 1.0, 'have': 3.0, 'remember': 1.0, 'one': 2.0, 'rolling': 1.0, 'got': 1.0, 'even': 1.0, 'price': 1.0, 'xt': 1.0, 'safety': 1.0, 'month': 1.0, 'it': 9.0, 'weren': 1.0, 'with': 2.0, 'the': 8.0, 'hinges': 1.0, '6': 1.0, 'plastic': 2.0, 'two': 1.0, 'well': 1.0, 'i': 6.0, 'old': 1.0, 'common': 1.0, 'extension': 3.0, 'but': 1.0, 'weeks': 1.0, 'away': 1.0, 'had': 2.0, 'just': 4.0, 'not': 2.0, 'superyard': 3.0, 'my': 1.0, 'seen': 1.0, 'else': 1.0, 'can': 2.0, 'so': 3.0, 'don': 1.0, 'up': 2.0, 'this': 4.0, 'confined': 1.0, 'crawling': 1.0, 'get': 1.0, 'per': 1.0, 'in': 2.0, 'them': 1.0, 'feel': 1.0, 'your': 2.0, 'keeps': 1.0, 'more': 2.0, 'babies': 2.0, 'into': 1.0, 'from': 1.0, 'or': 2.0, 'no': 1.0, 'let': 1.0, 'molded': 1.0, 'danger': 1.0, 'they': 1.0, 'sturdy': 1.0, 'blanket': 1.0, 'are': 1.0, 'put': 1.0, 'floor': 1.0, 'although': 1.0, 'its': 1.0, 'as': 1.0, 'heavy': 1.0, 'e': 1.0, 'still': 1.0, 'use': 1.0, 'tool': 1.0, 's': 2.0, 'sense': 1.0, 'twins': 2.0, 'note': 1.0, 'other': 1.0, 'all': 2.0, 'an': 1.0, 'yard': 1.0, 'set': 2.0, 'like': 1.0, 'angle': 1.0}
Word element => {'yard': 1.0, 'stand': 1.0, 'hardly': 1.0, 's': 2.0, 'going': 1.0, 'we': 1.0, 'within': 1.0, 'be': 2.0, 'needed': 1.0, 'has': 1.0, 'how': 1.0, 'plastic': 1.0, 'enclosure': 1.0, 'even': 4.0, 'importantly': 1.0, 'seem': 1.0, 'it': 8.0, 'she': 6.0, 'up': 3.0, 'immediately': 1.0, 'kit': 1.0, 'fold': 1.0, 'love': 1.0, 'bought': 1.0, 'explore': 1.0, 'and': 8.0, 'happy': 1.0, 'too': 1.0, 'block': 1.0, 'play': 1.0, 'my': 2.0, 'family': 1.0, 'a': 2.0, 'small': 1.0, 'more': 3.0, 'around': 2.0, 'is': 3.0, 'week': 1.0, 'an': 1.0, 'extension': 1.0, 'made': 1.0, 'put': 1.0, 'make': 1.0, 'on': 2.0, 'think': 1.0, 'grows': 1.0, 'daughter': 2.0, 'loves': 1.0, 'taught': 1.0, 'i': 5.0, 'etc': 1.0, 'something': 1.0, 'crawl': 1.0, 'with': 1.0, 'safely': 1.0, 'playpen': 1.0, 'room': 1.0, 'wanted': 2.0, 'was': 1.0, 'to': 7.0, 'as': 2.0, 'can': 4.0, 'everything': 1.0, 'bigger': 1.0, 'still': 1.0, 'if': 1.0, 'rinsed': 1.0, 'could': 2.0, 'will': 1.0, 'useful': 1.0, 'when': 1.0, 'that': 4.0, 'easily': 1.0, 'her': 2.0, 'use': 1.0, 'own': 1.0, 'see': 1.0, 'off': 2.0, 'you': 1.0, 'things': 1.0, 'such': 1.0, 'fireplace': 1.0, 'realizes': 1.0, 'christmas': 1.0, 'in': 1.0, 'tree': 1.0, 'easy': 1.0, 'herself': 1.0, 'set': 1.0, 'bring': 1.0, 'extremely': 1.0, 'beach': 1.0, 'picnic': 1.0, 'am': 1.0, 'gathering': 1.0, 'the': 4.0, 'of': 1.0, 'hard': 1.0, 'this': 1.0}
Word element => {'great': 1.0, 'works': 1.0, 'leave': 1.0, 'up': 2.0, 'set': 1.0, 'was': 1.0, 'us': 1.0, 'scenario': 1.0, 'ideal': 1.0, 'best': 1.0, 'out': 1.0, 'changing': 1.0, 'springs': 1.0, 'strong': 1.0, 'make': 1.0, 'practice': 1.0, 'are': 1.0, 'such': 1.0, 'with': 2.0, 'for': 1.0, 'actually': 1.0, 'product': 1.0, 'place': 1.0, 'the': 7.0, 'hinges': 2.0, 'once': 1.0, 'of': 2.0, 'does': 1.0, 'it': 5.0, 'corral': 1.0, 'good': 1.0, 'quite': 1.0, 'is': 1.0, 'method': 1.0, 'in': 2.0, 'and': 5.0, 'pets': 1.0, 'probably': 1.0, 'however': 1.0, 'this': 1.0, 'kids': 1.0, 'angle': 1.0, 'corners': 1.0, 'challenge': 1.0, 'indeed': 1.0, 'at': 1.0, 'a': 3.0, 'we': 2.0, 'had': 1.0, 'as': 1.0, 'to': 2.0, 'difficulty': 1.0, 'one': 1.0, 'broke': 1.0, 'trying': 1.0, 'times': 1.0, 'you': 1.0, 'figure': 1.0, 'very': 1.0, 'little': 1.0, 'advertised': 1.0, 'change': 1.0, 'can': 1.0}
Word element => {'value': 1.0, 'price': 1.0, 'dime': 1.0, 'every': 1.0, 'size': 1.0, 'i': 3.0, 'any': 1.0, 'to': 1.0, 'was': 2.0, 'its': 1.0, 'the': 5.0, 'without': 1.0, 'gate': 2.0, 't': 1.0, 'a': 4.0, 'see': 1.0, 'well': 1.0, 'weight': 1.0, 'that': 1.0, 'box': 1.0, 'came': 1.0, 'easy': 1.0, 'problems': 1.0, 'very': 2.0, 'in': 2.0, 'good': 2.0, 'is': 1.0, 'holds': 1.0, 'playgate': 3.0, 'unpack': 1.0, 'up': 1.0, 'great': 2.0, 'nice': 1.0, 'use': 1.0, 'sturdy': 1.0, 'and': 3.0, 'play': 2.0, 'unfolded': 1.0, 'for': 2.0, 'my': 2.0, '2': 1.0, 'can': 2.0, 'puppies': 2.0, 'they': 1.0, 'us': 1.0, 'safety': 1.0, 'when': 1.0, 'still': 1.0, 'worth': 1.0, 'watch': 1.0, 'them': 1.0}
Word element => {'section': 1.0, 'classified': 1.0, 'newspaper': 1.0, 'local': 1.0, 'one': 1.0, 'in': 1.0, 'can': 1.0, 'size': 1.0, 'because': 1.0, 'is': 1.0, 'do': 1.0, 'up': 1.0, 'takes': 1.0, 'of': 2.0, 'it': 7.0, 'this': 1.0, 'i': 1.0, 'buy': 1.0, 'our': 1.0, 'to': 2.0, 'surprise': 1.0, 'attractive': 1.0, 'bit': 1.0, 'and': 1.0, 'sold': 1.0, 'was': 1.0, 'doesn': 1.0, 'back': 1.0, 'putting': 1.0, 'be': 1.0, 'three': 1.0, 'space': 1.0, 'see': 1.0, 'well': 1.0, 'plastic': 1.0, 'how': 1.0, 'an': 2.0, 'delivers': 1.0, 'supposed': 1.0, 'stars': 1.0, 'for': 2.0, 'what': 1.0, 'however': 1.0, 'ugly': 2.0, 'gate': 2.0, 'the': 1.0, 'we': 1.0, 'a': 1.0, 's': 2.0, 't': 1.0, 'sheer': 1.0, 'make': 1.0, '20': 1.0, 'just': 1.0, 'by': 1.0}
Word element => {'it': 1.0, 'and': 1.0, 'being': 1.0, 'twins': 1.0, 'playing': 1.0, 'our': 1.0, 'them': 1.0, 'a': 1.0, 'is': 1.0, 'family': 1.0, '3': 1.0, 'we': 1.0, 'sets': 1.0, 'little': 1.0, 'idea': 1.0, 'bought': 1.0, 'love': 1.0, 'for': 1.0, 'also': 1.0, 'in': 2.0, 'when': 1.0, 'you': 1.0, 'have': 1.0, 'buying': 1.0, 'to': 1.0, 'keep': 1.0, 'ones': 1.0, 'great': 1.0, 'the': 1.0, 'space': 1.0, 'safe': 1.0}
Word element => {'fun': 1.0, 'breaks': 1.0, 'hurts': 1.0, 'roam': 1.0, 'larger': 1.0, 'have': 3.0, 'recommend': 1.0, 'individual': 1.0, 'you': 1.0, 'great': 3.0, 'extra': 2.0, 'plays': 1.0, 'see': 1.0, 'or': 1.0, 'case': 1.0, 'that': 1.0, 'loves': 1.0, 'same': 1.0, 'parts': 1.0, 'pieces': 1.0, 'watch': 1.0, 'laundry': 1.0, 'do': 1.0, 'email': 1.0, 'check': 1.0, 'while': 1.0, 'toys': 1.0, 'buying': 1.0, 'crawl': 1.0, 'with': 1.0, 'of': 1.0, 'helped': 1.0, 'whilehe': 1.0, 'tremendously': 1.0, 'an': 1.0, 'for': 1.0, 'product': 2.0, 'i': 2.0, 'become': 1.0, 'it': 6.0, 'this': 2.0, 'broadened': 1.0, 'adjust': 1.0, 'he': 4.0, 'children': 1.0, '9': 1.0, 'time': 1.0, 'boy': 1.0, 'has': 3.0, 'little': 1.0, 'home': 1.0, 'area': 1.0, 'cruise': 1.0, 'lifesaver': 1.0, 'and': 2.0, 'play': 2.0, 'now': 1.0, 'is': 1.0, 'me': 1.0, 'stay': 1.0, 'moremobile': 1.0, 'mom': 1.0, 'together': 1.0, 'corner': 1.0, 'gets': 1.0, 'one': 1.0, 'months': 1.0, 'we': 2.0, 'a': 3.0, 's': 3.0, 'to': 3.0, 'as': 1.0, 'his': 4.0, 'world': 1.0, 'in': 6.0, 'enclosed': 1.0, 'yard': 1.0, 'him': 1.0, 'within': 2.0, 'playing': 1.0, 'the': 6.0, 'my': 2.0, 'superyard': 1.0, 'keep': 1.0, 'at': 2.0, 'space': 2.0, 'playroom': 1.0, 'never': 2.0, 'baby': 1.0, 'tired': 1.0, 'but': 1.0, 'can': 4.0}
Word element => {'with': 1.0, 'pleased': 1.0, 'very': 1.0, 'however': 1.0, 'overall': 1.0, 'area': 1.0, 'exiting': 1.0, 'entering': 1.0, 'difficult': 1.0, 'have': 1.0, 'brace': 1.0, 'ottoman': 1.0, 'an': 1.0, 'or': 2.0, 'wall': 1.0, 'up': 1.0, 'necessary': 1.0, 'something': 1.0, 'against': 1.0, 'so': 1.0, 'week': 1.0, 'also': 1.0, 'will': 1.0, 'visits': 1.0, 'caution': 1.0, 'for': 1.0, 'i': 3.0, 'old': 1.0, '2x': 1.0, '10': 1.0, 'need': 1.0, 'my': 2.0, 'wonderful': 1.0, 'the': 4.0, 'without': 1.0, 'grandson': 1.0, 'on': 1.0, 'put': 1.0, 'joined': 1.0, 'this': 1.0, 'criticism': 1.0, 'home': 1.0, 'support': 1.0, 'add': 1.0, 'since': 1.0, 'bigger': 1.0, 'bought': 1.0, 'is': 7.0, 'play': 1.0, 'and': 2.0, '1': 1.0, 'it': 6.0, 'month': 1.0, 'that': 2.0, 'am': 1.0, 'office': 1.0, 'superyards': 1.0, 'when': 2.0, 'you': 2.0, 'only': 2.0, 'extensions': 1.0, 'additional': 1.0, 'a': 2.0, 'we': 1.0, '5': 1.0, 'together': 1.0, 'most': 1.0, 'sturdy': 1.0, 'likely': 1.0, 'outside': 1.0, 'to': 4.0, 'as': 2.0, 'not': 2.0, 'enough': 1.0, 'disconnect': 1.0, 'them': 1.0}
Word element => {'open': 1.0, 'top': 1.0, 'safely': 1.0, 'collapse': 1.0, 'will': 1.0, 'falling': 1.0, 'adult': 1.0, 'an': 1.0, 'this': 1.0, 'worth': 1.0, 'use': 2.0, 'product': 1.0, 'for': 1.0, 'around': 1.0, 'your': 1.0, 'on': 1.0, 'put': 2.0, 'storage': 1.0, 'of': 1.0, 'reaching': 1.0, 'out': 1.0, 'pulled': 1.0, 'so': 1.0, 'alone': 2.0, 'tree': 2.0, 'leave': 1.0, 'christmas': 2.0, 'worked': 1.0, 'the': 7.0, 'were': 1.0, 'besides': 1.0, 'area': 1.0, 'get': 1.0, 'enough': 1.0, 'house': 1.0, 'wouldn': 1.0, 'didn': 2.0, 'little': 1.0, 'by': 1.0, 'just': 1.0, 't': 4.0, 'a': 1.0, 'we': 2.0, 'tall': 1.0, 'and': 5.0, 'play': 1.0, 'common': 1.0, 'old': 2.0, 'i': 1.0, 'penned': 1.0, 'daugher': 1.0, 'be': 1.0, '6': 1.0, 'over': 1.0, 'child': 1.0, 'up': 2.0, 'last': 1.0, 'her': 2.0, 'another': 1.0, 'fact': 1.0, 'my': 1.0, 'superyard': 2.0, 'has': 1.0, 'review': 1.0, 'well': 1.0, 'remodeling': 1.0, 'doesn': 1.0, 'was': 4.0, '12': 1.0, 'had': 1.0, 'our': 1.0, 'to': 4.0, 'when': 2.0, 'sense': 1.0, 'daughter': 1.0, 'one': 1.0, 'bought': 2.0, 'months': 2.0, 'that': 2.0, 'into': 1.0, 'anything': 1.0, 'confined': 1.0, 'crawling': 1.0, 'already': 1.0, 'using': 1.0, 'like': 3.0, 'if': 1.0, 'want': 1.0, 'being': 1.0, 'said': 1.0, 'in': 2.0, 'pack': 1.0, 'not': 1.0, 'n': 1.0, 'she': 3.0, 'it': 9.0, 'hated': 1.0}
Word element => {'ack': 1.0, 'form': 1.0, 'be': 1.0, 'tell': 1.0, 'we': 3.0, 'a': 1.0, 'basically': 1.0, 'four': 1.0, 'quot': 4.0, 'in': 2.0, 'fence': 1.0, 'itself': 1.0, 'not': 2.0, 'call': 1.0, 's': 5.0, 'sides': 1.0, 'smaller': 1.0, 'can': 1.0, 'so': 2.0, 'may': 1.0, 'superyard': 1.0, 'your': 1.0, 'make': 1.0, 'portable': 1.0, 'side': 2.0, 'while': 1.0, 'den': 1.0, 'got': 1.0, 'death': 1.0, 'even': 1.0, 'it': 9.0, 'far': 1.0, 'steel': 1.0, 'stable': 1.0, 'the': 9.0, 'of': 1.0, 'five': 1.0, 'once': 1.0, 'room': 1.0, 'opening': 1.0, 'sided': 1.0, 'and': 6.0, 'or': 2.0, 'cage': 1.0, 'experience': 1.0, 'our': 2.0, 'very': 2.0, 'yard': 1.0, 'i': 4.0, 'contain': 1.0, 'when': 1.0, 'you': 1.0, 'price': 1.0, 'toddler': 1.0, 'child': 1.0, 'major': 1.0, 'up': 3.0, 'downside': 1.0, 'vary': 1.0, 'living': 1.0, 'match': 1.0, 'much': 1.0, 'too': 1.0, 'try': 1.0, 'rage': 1.0, 'mileage': 1.0, 'attica': 2.0, 'taken': 1.0, 'apart': 1.0, 'robust': 1.0, 'areas': 1.0, 'minus': 1.0, 'folding': 1.0, 'also': 1.0, 'locking': 1.0, 'nearly': 1.0, 'mechanism': 1.0, 'stiff': 1.0, 'was': 3.0, 'afraid': 1.0, 'breaking': 1.0, 'is': 5.0, 'at': 1.0, 'keep': 1.0, 'plus': 1.0, 'are': 1.0, 'working': 1.0, 'first': 1.0, 'as': 3.0, 'heavy': 1.0, 'problem': 1.0, 'whole': 1.0, 'system': 1.0, 'against': 1.0, 'to': 3.0, 'pretty': 2.0, 'indestructable': 1.0, 'they': 1.0, 'this': 1.0, 'clunky': 1.0, 'large': 1.0}
Word element => {'point': 1.0, 'think': 1.0, 'try': 1.0, 'do': 1.0, 'and': 3.0, 'this': 2.0, 'he': 1.0, 'climb': 1.0, 'at': 1.0, 'some': 1.0, 'just': 1.0, 'not': 1.0, 'very': 1.0, 'son': 1.0, 'i': 3.0, 'buy': 1.0, 'small': 1.0, 'saving': 1.0, 'it': 6.0, 'useless': 1.0, 'posted': 1.0, 'another': 1.0, 'my': 1.0, 'is': 3.0, 'fine': 1.0, 'enclosure': 1.0, 'am': 1.0, 'to': 2.0, 'had': 1.0, 'that': 1.0, 'issue': 1.0, 'connected': 1.0, 'sturdy': 1.0, 'haven': 1.0, 'collapsing': 1.0, 's': 2.0, 'a': 1.0, 't': 1.0, 'the': 1.0, 'once': 1.0, 'of': 1.0, 'like': 1.0, '18': 1.0, 'one': 1.0, 'months': 1.0, 'contains': 1.0, 'him': 1.0, 'because': 1.0, 'does': 1.0}
Word element => {'would': 1.0, 'assemble': 1.0, 'recommend': 1.0, 'sturdy': 1.0, 'very': 1.0, 'toddler': 1.0, 'or': 1.0, 'this': 1.0, 'provides': 1.0, 'play': 1.0, 'to': 1.0, 'an': 1.0, 'a': 1.0, 'ideal': 1.0, 'easy': 1.0, 'safe': 1.0, 'for': 1.0, 'crawling': 1.0, 'space': 1.0, 'infant': 1.0}
Word element => {'be': 1.0, 'with': 1.0, 'pleased': 1.0, 'would': 1.0, 'fast': 1.0, 'outgrow': 1.0, 'also': 1.0, 'will': 2.0, 'sure': 1.0, 'you': 1.0, 'outgrown': 1.0, 'am': 2.0, 'like': 1.0, 'not': 2.0, 'because': 1.0, 'does': 1.0, 'yard': 2.0, 'inside': 1.0, 'she': 3.0, 'it': 7.0, 'this': 1.0, 'nothing': 1.0, 'great': 1.0, 'the': 3.0, 'of': 4.0, 'how': 2.0, '6': 1.0, 'such': 1.0, 'already': 1.0, 'everything': 1.0, 'children': 1.0, 'else': 1.0, 'so': 2.0, 'was': 1.0, 'purchase': 1.0, 'my': 5.0, 'i': 6.0, 'needed': 2.0, 'have': 3.0, 'as': 2.0, 'all': 2.0, 'for': 2.0, 'sorts': 1.0, 'son': 1.0, 'best': 1.0, 'is': 4.0, 'tools': 1.0, 'type': 1.0, 'that': 1.0, 'has': 2.0, 'a': 1.0, 'together': 1.0, 'daughter': 1.0, 'bought': 1.0, 'months': 1.0, 'at': 1.0, 'lot': 1.0, 'who': 1.0, 'mother': 1.0, 'far': 1.0, 'room': 1.0, '5': 1.0, 'put': 1.0, 'think': 1.0, 'spent': 1.0, 'other': 2.0, 'bet': 1.0, 'tall': 1.0, 'and': 4.0, 'play': 2.0}
Word element => {'couldn': 1.0, 'is': 1.0, 'neice': 1.0, 'contains': 1.0, 'like': 1.0, 'fun': 1.0, 'attach': 1.0, 'about': 2.0, 'rave': 1.0, 'for': 1.0, 'big': 1.0, 'be': 1.0, 'something': 1.0, 'would': 1.0, 'also': 1.0, 'set': 1.0, 'live': 1.0, 'extension': 1.0, 'my': 1.0, 'family': 1.0, 'enough': 2.0, 'house': 1.0, 'granddaddy': 1.0, 'really': 1.0, 'beach': 1.0, 'kids': 1.0, 'this': 2.0, 'with': 1.0, 'sides': 1.0, 'call': 1.0, 'well': 1.0, 'reunions': 1.0, 'has': 1.0, 'so': 1.0, 'boy': 1.0, 'they': 1.0, 'are': 2.0, 'old': 2.0, 'two': 2.0, 'i': 6.0, 'their': 1.0, 'case': 1.0, 'babies': 1.0, 'been': 1.0, 'that': 1.0, 'have': 1.0, 'she': 1.0, 'it': 7.0, 'corral': 2.0, 'very': 2.0, 'year': 2.0, 'girl': 1.0, 'take': 1.0, 'bought': 1.0, 'one': 1.0, 'active': 2.0, 'and': 5.0, 'lifesaver': 1.0, 'get': 1.0, 'do': 1.0, 'if': 1.0, 'keep': 1.0, 'watch': 1.0, 'wondering': 1.0, 'toys': 1.0, 'need': 1.0, 'visits': 1.0, 'anything': 1.0, 'as': 1.0, 'to': 5.0, 'or': 2.0, 'when': 1.0, 'you': 1.0, 'twins': 2.0, 'cook': 1.0, 'can': 2.0, 's': 1.0, 'we': 4.0, 'a': 5.0, 't': 3.0, 'without': 1.0, 'meme': 1.0, 'the': 6.0, 'older': 1.0, 'constant': 1.0, 'over': 1.0, 'put': 1.0, 'them': 1.0, 'in': 2.0, 'us': 1.0, 'of': 1.0, 'shower': 1.0, 'camping': 1.0}
Word element => {'helps': 1.0, 'review': 1.0, 'hope': 1.0, 'minutes': 1.0, 'mom': 1.0, 'must': 1.0, 'not': 1.0, 'do': 1.0, 'pull': 1.0, 'enough': 1.0, 'environment': 1.0, 'in': 2.0, 'walk': 1.0, 'play': 4.0, 'and': 7.0, 'them': 2.0, 'it': 3.0, 'month': 1.0, 'explore': 1.0, 'don': 1.0, 'discover': 1.0, 'up': 2.0, 'rigid': 1.0, 'allows': 2.0, 'with': 2.0, 'who': 2.0, 'be': 1.0, 'mobile': 1.0, 'safe': 1.0, 'to': 10.0, 'all': 1.0, 'as': 2.0, 'can': 1.0, 'product': 3.0, 'xt': 1.0, 'outgrown': 1.0, 'am': 1.0, 'they': 3.0, 'gives': 2.0, 'swings': 1.0, 'superyard': 2.0, 'bouncers': 1.0, 'have': 2.0, 'babies': 4.0, 'that': 1.0, 'into': 1.0, 'when': 1.0, 'sit': 1.0, 'a': 5.0, 'go': 1.0, 'want': 1.0, 'for': 5.0, '10': 1.0, 'at': 1.0, 'attaching': 1.0, 'is': 2.0, 'around': 1.0, 'great': 1.0, 'twin': 1.0, 'without': 1.0, 'gate': 1.0, 'start': 1.0, 'of': 1.0, 'the': 6.0, 'delighted': 1.0, 'reviews': 1.0, 'we': 1.0, 'fine': 1.0, 'their': 1.0, 'definate': 1.0, 'etc': 1.0, 'two': 1.0, 'astonished': 1.0, 'would': 1.0, 'crawl': 1.0, 'something': 1.0, 'breathe': 1.0, 'very': 1.0, 'this': 5.0, 'confined': 1.0, 'few': 2.0, 'just': 1.0, 'negative': 1.0, 'plus': 1.0, 'boys': 2.0, 'are': 1.0, 'enjoy': 1.0, 'every': 1.0, 'time': 1.0, 'us': 1.0, 'one': 1.0, 'average': 1.0, 'link': 1.0, 'sized': 1.0, 'safely': 1.0, 'adult': 1.0, 'once': 1.0, 'room': 1.0, 'fit': 1.0, 't': 1.0, 'spare': 1.0, 'extensions': 1.0, 'recommend': 1.0, 'cruise': 1.0, 'store': 1.0, 'dad': 1.0, 'doos': 1.0, 'i': 3.0, 'well': 1.0, 'wonderful': 1.0, 'old': 1.0, 'run': 1.0}
Word element => {'made': 1.0, 'to': 1.0, 'very': 1.0, 'if': 1.0, 'bother': 1.0, 'increase': 1.0, 'fast': 1.0, 'don': 1.0, 'another': 1.0, 'wanting': 1.0, 'one': 1.0, 'well': 1.0, 'size': 1.0, 'these': 1.0, 'the': 2.0, 't': 1.0, 'with': 1.0, 'extention': 1.0, 'kit': 1.0, 'just': 1.0, 'get': 1.0, 'up': 1.0, 'set': 1.0, 'of': 1.0}
Word element => {'keep': 1.0, 'them': 1.0, 'to': 1.0, 'grandchildren': 1.0, 'when': 1.0, 'for': 1.0, 'apart': 1.0, 'in': 1.0, 'great': 1.0, 'can': 1.0, 'my': 1.0, 'be': 1.0, 'bought': 1.0, 'taken': 1.0, 'it': 2.0, 'christmas': 1.0, 'worked': 1.0, 'from': 1.0, 'trees': 1.0, 'away': 1.0, 'and': 1.0, 'villages': 1.0, 'two': 1.0, 'used': 1.0, 'places': 1.0}
Word element => {'have': 1.0, 'clean': 1.0, 'to': 1.0, 's': 1.0, 'a': 1.0, 'has': 1.0, 'glad': 1.0, 'toys': 1.0, 'her': 1.0, 'plays': 1.0, 'easy': 1.0, 'lot': 1.0, 'she': 1.0, 'm': 1.0, 'daughter': 1.0, 'i': 1.0, 'old': 1.0, 'in': 1.0, 'also': 1.0, 'foam': 1.0, 'kit': 1.0, 'created': 1.0, 'me': 1.0, 'and': 4.0, 'very': 1.0, 'with': 1.0, 'it': 3.0, 'this': 1.0, 'got': 1.0, '9': 1.0, 'extension': 1.0, 'mats': 1.0, 'for': 2.0, 'of': 1.0, 'set': 1.0, 'along': 1.0, 'we': 2.0, 'moth': 1.0, '2': 2.0, 'playard': 1.0, 'space': 1.0, 'at': 1.0, 'nice': 1.0, 'toysrus': 1.0, 'feet': 1.0, '7': 1.0, 'our': 1.0}
Word element => {'pigs': 1.0, 'my': 1.0, 'raise': 1.0, 'not': 1.0, 'help': 1.0, 'miniature': 1.0, 'use': 1.0, 'to': 1.0, 'com': 1.0, 'actually': 1.0, 'with': 1.0, 'this': 1.0, 'it': 2.0, 'works': 1.0, 'ones': 1.0, 'the': 2.0, 'great': 1.0, 'i': 1.0, 'and': 1.0, 'like': 1.0, 'piglets': 1.0, 'can': 2.0, 'escape': 1.0, 'out': 1.0, 'reoranch': 1.0, 'metal': 1.0, 'of': 1.0, 'they': 1.0}
Word element => {'of': 1.0, 'yard': 1.0, 'safe': 1.0, 'kids': 1.0, 'for': 2.0, 'around': 1.0, 'move': 1.0, 'what': 1.0, 'lift': 1.0, 'trap': 1.0, 'easy': 1.0, 'outside': 1.0, 'as': 1.0, 'and': 4.0, 'equipement': 1.0, 'take': 2.0, 'to': 3.0, 'piece': 1.0, 'gate': 1.0, 'a': 1.0, 'bought': 1.0, 'this': 1.0, 'it': 4.0, 'i': 2.0, 'my': 1.0, 'great': 1.0, 'puppy': 1.0, 'the': 4.0, 'also': 1.0, 'apart': 1.0, 'in': 2.0, 'way': 1.0, 'kitchen': 1.0, 'off': 1.0, 'keeping': 1.0, 'intended': 1.0, 'use': 2.0, 'furniture': 1.0, 'is': 2.0}
Word element => {'room': 1.0, 'living': 1.0, 'our': 1.0, 'eyesore': 1.0, 'a': 2.0, 'total': 1.0, 'not': 1.0, 'up': 1.0, 'set': 1.0, 'easy': 1.0, 'be': 1.0, 'great': 1.0, 't': 1.0, 'in': 3.0, 'into': 1.0, 'too': 1.0, 'his': 1.0, 'all': 2.0, '8': 1.0, 'everything': 1.0, 'i': 1.0, 'old': 1.0, 'confined': 1.0, 'is': 3.0, 'very': 1.0, 'son': 1.0, 'couldn': 1.0, 'reach': 1.0, 'and': 2.0, 'my': 1.0, 'to': 1.0, 'happier': 1.0, 'was': 3.0, 'would': 1.0, 'afraid': 1.0, 'it': 2.0, 'with': 1.0, 'mos': 1.0, 'he': 2.0, 'favorite': 1.0, 'toys': 1.0, 'purchase': 1.0, 'already': 1.0, 'feel': 1.0, 'but': 1.0}
Word element => {'higher': 1.0, 'rate': 1.0, 'can': 1.0, 'i': 1.0, 'so': 1.0, 'haven': 1.0, 'kit': 1.0, 'placed': 1.0, 'larger': 1.0, 'gift': 1.0, 'to': 1.0, 'assembly': 1.0, 'the': 1.0, 't': 2.0, 'of': 1.0, 'delivery': 1.0, 'ease': 1.0, 'in': 1.0, 'yet': 1.0, 'for': 1.0, 'use': 1.0, 'as': 1.0, 'quick': 1.0, 'children': 1.0, 'it': 2.0, 'is': 1.0, 'a': 1.0, 'grand': 1.0}
Word element => {'that': 1.0, 'not': 1.0, 'would': 1.0, 'fee': 1.0, 'restocking': 1.0, '25': 1.0, 'very': 1.0, 'large': 1.0, 'later': 1.0, 'also': 1.0, 'in': 1.0, 'a': 1.0, 's': 1.0, 'nov': 1.0, 'section': 1.0, 'nor': 1.0, 'it': 5.0, 'with': 1.0, 'sells': 1.0, 'sale': 1.0, 'bought': 1.0, 'one': 1.0, 'for': 3.0, 'tried': 1.0, 'arrived': 1.0, 'yard': 2.0, 'grandson': 1.0, 'and': 1.0, 'play': 2.0, 'on': 2.0, '7': 1.0, 'location': 1.0, 'no': 1.0, 'i': 3.0, 'two': 1.0, 'at': 1.0, 'room': 2.0, 'people': 1.0, 'our': 1.0, 'to': 2.0, 'recommend': 1.0, 'chipped': 1.0, 'was': 1.0, 'wanted': 1.0, 'walk': 1.0, 'leaves': 1.0, 'weeks': 1.0, 'but': 1.0, 'company': 2.0, 'my': 1.0, 'family': 1.0, 'another': 1.0, 'this': 2.0, '30': 1.0, 'less': 1.0, 'return': 1.0, 'the': 2.0}
Word element => {'keepsafe': 1.0, 'far': 1.0, 'only': 1.0, '9': 1.0, 'else': 1.0, 'unsturdy': 1.0, 'very': 1.0, 'upright': 1.0, 'kept': 1.0, 'other': 2.0, 'decided': 1.0, 'one': 1.0, 'side': 2.0, 'on': 3.0, 'partial': 1.0, 'between': 1.0, 'sturdy': 1.0, 'mount': 1.0, 'wall': 1.0, 'no': 1.0, 'that': 2.0, 'is': 4.0, 'tried': 1.0, 'problem': 1.0, 'for': 2.0, 'be': 1.0, 'unfortunately': 1.0, 'was': 2.0, 'propping': 1.0, 'you': 2.0, 'return': 1.0, 'couch': 1.0, 'way': 3.0, 'great': 1.0, 'of': 3.0, 'large': 1.0, 'by': 1.0, 'says': 1.0, 'so': 2.0, 'walls': 1.0, 'simply': 1.0, 'our': 2.0, 'to': 8.0, 'any': 1.0, 'as': 1.0, 'using': 1.0, 'like': 2.0, 'straight': 1.0, 'designed': 1.0, 've': 1.0, 'something': 1.0, 'each': 1.0, 'position': 1.0, 'would': 1.0, 'but': 1.0, 'work': 2.0, 'will': 1.0, 'superyard': 1.0, 'however': 1.0, 'if': 1.0, 'looks': 1.0, 'it': 10.0, 'found': 1.0, 'this': 2.0, 'the': 10.0, 'gate': 5.0, 'space': 1.0, 'main': 1.0, 'who': 1.0, 'are': 1.0, 'looking': 1.0, 'feet': 1.0, 'look': 1.0, 'right': 1.0, 'expansion': 1.0, 'and': 2.0, 'block': 2.0, 'foot': 1.0, 'enough': 1.0, 're': 1.0, 'off': 1.0, 'we': 2.0, 's': 1.0, 'a': 2.0, 'there': 1.0, 'thru': 2.0, 'larger': 1.0, 'than': 1.0, '8': 1.0, 'thinking': 1.0, 'i': 2.0, 'not': 2.0, 'in': 2.0, 'instructions': 1.0, 'use': 1.0}
Word element => {'money': 1.0, 'barely': 1.0, 'can': 2.0, 'but': 1.0, '2': 1.0, 'regardless': 1.0, 'shape': 2.0, 'positive': 1.0, 'alone': 1.0, 'and': 4.0, 'play': 2.0, 'hexagon': 1.0, 'to': 5.0, 'tip': 1.0, 'used': 1.0, 'square': 1.0, 'mobile': 1.0, 'months': 2.0, 'one': 3.0, 'pulls': 1.0, 'another': 1.0, 'than': 1.0, 'yard': 2.0, 'system': 1.0, 'minimize': 1.0, 'very': 2.0, 'rectangle': 1.0, 'son': 1.0, 'difficult': 1.0, 'possible': 1.0, 'from': 1.0, 'who': 1.0, 'option': 1.0, 'crack': 1.0, 'have': 1.0, 'orientation': 1.0, 'parents': 2.0, 'reviews': 1.0, 'they': 1.0, 'is': 3.0, 'handed': 2.0, 'connecting': 1.0, 'hinges': 1.0, 'many': 1.0, 'or': 2.0, 'my': 1.0, 'calm': 1.0, 'coming': 1.0, 'i': 3.0, 'broke': 1.0, '8': 1.0, 'stand': 1.0, 'docile': 1.0, 'more': 1.0, 'babies': 1.0, 'designed': 1.0, 'into': 1.0, 'easily': 1.0, 'that': 1.0, 'yet': 1.0, 'he': 3.0, 'only': 1.0, 'waste': 1.0, 'flipping': 1.0, 'sharp': 1.0, 'with': 2.0, 'piece': 1.0, 'this': 2.0, 'total': 1.0, 'frankly': 1.0, 'not': 1.0, 'poorly': 1.0, 'it': 6.0, 'think': 1.0, 'flip': 1.0, 'are': 2.0, 'plus': 1.0, 's': 2.0, 'a': 3.0, 'just': 1.0, 'the': 4.0, 'of': 5.0, 'person': 1.0, 'let': 1.0, 'no': 1.0, 'today': 1.0, 'over': 1.0, 'open': 2.0, 'reconfigure': 1.0, 'if': 1.0, 'stupid': 1.0, 'would': 1.0, 'tried': 1.0, 'see': 1.0, 'off': 1.0, 'yes': 1.0, 'product': 1.0, 'item': 1.0}
Word element => {'they': 1.0, 'long': 1.0, 'excellent': 1.0, 'be': 1.0, 'you': 1.0, 'if': 1.0, 'bit': 1.0, 'up': 1.0, 'take': 1.0, 'hand': 1.0, 'other': 1.0, 'limited': 1.0, 'is': 1.0, 'offers': 1.0, 'them': 2.0, 'of': 2.0, 'buy': 1.0, 'two': 1.0, 'i': 2.0, 'would': 3.0, 'personally': 1.0, 'stick': 1.0, 'pen': 2.0, 'use': 1.0, 'inside': 1.0, 'can': 1.0, 'but': 1.0, 'also': 1.0, 'bunnies': 2.0, 'living': 1.0, 'its': 1.0, 'purpose': 1.0, 'dog': 1.0, 'children': 2.0, 'this': 1.0, 'wouldn': 1.0, 'it': 3.0, 'for': 4.0, 'one': 1.0, 'together': 1.0, 'as': 3.0, 'outside': 1.0, 'to': 1.0, 'our': 2.0, 'connect': 1.0, '8217': 2.0, 'in': 2.0, 'play': 1.0, 'and': 1.0, 'your': 1.0, 'on': 1.0, 'make': 1.0, 'or': 2.0, 'medium': 1.0, 'worth': 1.0, 'playing': 1.0, 'the': 3.0, 'we': 1.0, 'a': 3.0, 't': 2.0, 'an': 1.0, 'serves': 1.0, 'quite': 1.0, 'kid': 1.0, 'have': 1.0, 'dogs': 1.0, 'small': 1.0, 'climb': 1.0, 'three': 1.0, 'space': 2.0}
Word element => {'putting': 1.0, 'together': 1.0, 'any': 1.0, 'make': 1.0, 'the': 1.0, 'can': 1.0, 'folding': 1.0, 'it': 3.0, 'fold': 1.0, 'up': 1.0, 'of': 1.0, 'shape': 1.0, 'and': 1.0, 'away': 2.0, 'makes': 1.0, 'out': 1.0, 'put': 1.0, 'to': 2.0, 'easy': 1.0, 'note': 1.0, 'when': 2.0, 'snap': 1.0, 'a': 1.0, 'sound': 1.0, 'gates': 1.0}
Word element => {'recommend': 1.0, 'any': 1.0, 'highly': 1.0, 'would': 1.0, 'product': 1.0, 'amazingly': 1.0, 'an': 1.0, 'fenced': 1.0, 'versatile': 1.0, 'safely': 1.0, 'are': 1.0, 'and': 1.0, 'know': 1.0, 'of': 1.0, 'in': 1.0, 'area': 1.0, 'the': 5.0, 'is': 1.0, 'computer': 2.0, 'that': 1.0, 'our': 1.0, 'off': 2.0, 'while': 1.0, 'reign': 1.0, 'cordon': 1.0, 'over': 1.0, 'to': 2.0, 'ours': 1.0, 'bookshelves': 1.0, 'way': 1.0, 'living': 1.0, 'use': 1.0, 'all': 1.0, 'safe': 1.0, 'we': 2.0, 'room': 2.0, 'son': 1.0, 'parent': 1.0, 'it': 1.0, 'this': 1.0, 'has': 1.0, 'free': 1.0, 'i': 1.0, 'areas': 1.0}
Word element => {'be': 1.0, 'will': 1.0, 'panel': 1.0, 'get': 1.0, 'life': 1.0, 'but': 1.0, 'extra': 1.0, 'reinforcements': 1.0, 'while': 1.0, 'wood': 1.0, 'surfaces': 2.0, 'tile': 1.0, 'unsafe': 1.0, 'rubber': 1.0, 'make': 1.0, 'however': 1.0, 'move': 1.0, 'product': 4.0, 'child': 1.0, 'just': 2.0, 'linoleum': 1.0, 'on': 2.0, 'realize': 1.0, 'must': 1.0, 'children': 2.0, 'purchasing': 1.0, 'believe': 1.0, 'no': 1.0, 'telling': 1.0, 'two': 1.0, 'frustrated': 1.0, 'mention': 1.0, 'option': 1.0, 'when': 1.0, 'time': 1.0, 'considering': 1.0, 'more': 1.0, 'adults': 1.0, 'grass': 1.0, 'homes': 1.0, 's': 1.0, 'friend': 1.0, 'beach': 1.0, 'barbeques': 1.0, 'park': 1.0, 'taken': 1.0, 'changed': 2.0, 'kinds': 1.0, 'if': 2.0, 'still': 1.0, 'thrilled': 1.0, 'result': 1.0, 'because': 1.0, 'that': 5.0, 'distracted': 1.0, 'you': 4.0, 'things': 1.0, 'not': 7.0, 'home': 1.0, 'it': 12.0, 'me': 1.0, 'my': 5.0, 'superyard': 4.0, 'yard': 1.0, 'learn': 1.0, 'outdoors': 1.0, 'hour': 1.0, '14': 1.0, 'having': 1.0, 'without': 2.0, 'items': 1.0, 'own': 1.0, 'off': 1.0, 'see': 1.0, 'strength': 1.0, 'constantly': 1.0, 'so': 1.0, 'your': 2.0, 'feel': 1.0, 'use': 2.0, 'her': 6.0, 'clean': 1.0, 'call': 1.0, 'the': 13.0, 'of': 6.0, 'as': 5.0, 'to': 10.0, 'all': 2.0, 'confident': 1.0, 'a': 5.0, 'we': 2.0, 'have': 4.0, 'putting': 1.0, 'i': 12.0, 'intended': 1.0, 'vary': 1.0, 'old': 1.0, 'makes': 1.0, 'hexagon': 1.0, 'and': 13.0, 'play': 3.0, 'groove': 1.0, 'much': 2.0, 'do': 4.0, 'at': 2.0, 'is': 8.0, 'in': 5.0, 'does': 1.0, 'quot': 2.0, 'reads': 1.0, 'music': 1.0, 'too': 1.0, 'one': 1.0, 'limits': 1.0, 'allows': 1.0, 'with': 5.0, 'plenty': 1.0, 'really': 1.0, 'room': 2.0, 'their': 1.0, 'noise': 1.0, 'even': 1.0, 'took': 1.0, 'conquer': 1.0, 'are': 3.0, 'first': 1.0, 'month': 1.0, 'hear': 1.0, 'she': 5.0, 'baby': 4.0, 'others': 2.0, 'for': 5.0, 'such': 2.0, 'way': 1.0, 'than': 1.0, 'boundaries': 3.0, 'healthy': 1.0, 'cage': 1.0, 'saddens': 1.0, 'steps': 1.0, 'daughter': 2.0, 'books': 1.0, 'pleasant': 1.0, 'give': 1.0, 'there': 1.0, 'dolls': 1.0, 'confidence': 1.0, 'imaginative': 1.0, 'mature': 1.0, 'this': 5.0, 'he': 1.0, 'yet': 1.0, 'love': 1.0, 'incompatible': 1.0, 'where': 1.0, 'also': 1.0, 'criticize': 1.0, 'sneak': 1.0, 'less': 1.0, 'knowing': 1.0, 'favorite': 1.0, 'up': 2.0, 'watch': 1.0, 'am': 2.0, 'rather': 1.0, 'like': 1.0, 'everything': 2.0, 'has': 4.0, 'always': 2.0, 'fault': 1.0, 'proof': 1.0, 'plays': 2.0, 'very': 1.0, 'durable': 1.0, 'freedom': 1.0, 'reposition': 1.0, 'almost': 1.0, 'hard': 1.0, 'daily': 1.0}
Word element => {}
Word element => {'child': 1.0, 'of': 1.0, 'energy': 1.0, 'on': 1.0, 'depending': 1.0, 'sturdier': 1.0, 'have': 1.0, 'could': 1.0, 'the': 4.0, 'little': 1.0, 'been': 1.0, 'promised': 1.0, 'it': 1.0, 'love': 1.0, 'product': 1.0, 'was': 1.0, 'a': 1.0, 'delivered': 1.0, 'as': 1.0, 'playyard': 1.0, 'i': 2.0, 'think': 1.0, 'but': 1.0}
Word element => {'would': 1.0, 'product': 1.0, 's': 1.0, 'out': 1.0, 'child': 1.0, 'plastic': 1.0, 'patterns': 1.0, 'insane': 1.0, 'indents': 1.0, 'all': 1.0, 'of': 2.0, 'wipe': 1.0, 'to': 1.0, 'so': 1.0, 'twins': 1.0, 'gift': 1.0, 'for': 1.0, 'seems': 1.0, 'in': 2.0, 'the': 4.0, 'a': 2.0, 'and': 2.0, 'as': 1.0, 'very': 1.0, 'come': 1.0, 'it': 4.0, 'shower': 1.0, 'this': 1.0, 'down': 1.0, 'except': 1.0, 'got': 1.0, 'we': 1.0, 'little': 1.0, 'filthy': 2.0, 'is': 2.0, 'fine': 1.0, 'because': 1.0, 'difficult': 1.0, 'our': 1.0, 'that': 2.0, 'came': 1.0, 'straight': 1.0, 'box': 2.0}
Word element => {'pen': 1.0, 'have': 1.0, 'ensure': 1.0, 'is': 1.0, 'summer': 1.0, 'during': 1.0, 'used': 1.0, 'also': 1.0, 'lonely': 1.0, 'never': 1.0, 'her': 3.0, 'in': 1.0, 'liked': 1.0, 'oldest': 1.0, 'yet': 2.0, 'room': 1.0, 'campfires': 1.0, 'whole': 1.0, 'contained': 1.0, 'had': 1.0, 'purchased': 1.0, 'safety': 1.0, 'even': 2.0, 'days': 1.0, 'play': 2.0, 'and': 5.0, 'not': 1.0, 'me': 1.0, 'get': 2.0, 'extension': 1.0, 'home': 1.0, 'worked': 1.0, 'outdoors': 1.0, 'i': 5.0, 'kit': 1.0, 'for': 1.0, 'little': 1.0, 'working': 1.0, 'she': 5.0, 'it': 3.0, 'was': 7.0, 'son': 1.0, 'litter': 1.0, 'cookouts': 1.0, 'to': 6.0, 'big': 1.0, 'great': 3.0, 'basically': 1.0, 'the': 5.0, 'family': 1.0, 'my': 3.0, 'eye': 1.0, 'so': 2.0, 'upstairs': 1.0, 'quot': 2.0, 'most': 1.0, 'on': 3.0, 'with': 1.0, 'crawl': 1.0, 'lot': 1.0, 'keep': 1.0, 'an': 1.0, 'dangerous': 1.0, 'from': 1.0, 'while': 1.0, 'computer': 1.0, 'once': 1.0, 'helping': 1.0, 'started': 1.0, 'box': 1.0, 'plugs': 1.0, 'confined': 1.0, 'crawling': 1.0, 'toward': 1.0, 'you': 1.0, 'way': 2.0, 'everything': 1.0, 'name': 1.0, 'this': 4.0, 'found': 1.0, 'we': 1.0, 'could': 1.0, 'stairs': 1.0, 'a': 4.0, 'months': 1.0, 'one': 1.0, 'bought': 1.0}
Word element => {'owner': 1.0, 'this': 1.0, 'xt': 1.0, 'item': 4.0, 'is': 1.0, 'petyard': 2.0, 'me': 1.0, 'any': 1.0, 'to': 1.0, 'as': 1.0, 'from': 1.0, 'price': 1.0, 'baby': 1.0, '2x': 1.0, 'i': 3.0, 'it': 1.0, 'with': 1.0, 'pet': 1.0, 'bought': 1.0, 'the': 7.0, 'a': 3.0, 'exact': 2.0, 'same': 2.0, 'recommend': 1.0, 'store': 1.0, 'luckily': 1.0, 'girlfriend': 1.0, 'who': 1.0, 'has': 2.0, 'puppy': 2.0, 'they': 1.0, 'about': 1.0, 'told': 1.0, 'safe': 1.0, 'my': 4.0, 'company': 1.0, 'superyard': 2.0, 'have': 1.0, 'linked': 1.0, '100': 1.0, 'markets': 1.0, '50': 1.0, 'large': 1.0, 'for': 1.0, 'fit': 1.0, 'exactly': 1.0, 'new': 1.0, 'would': 1.0, 'and': 2.0, 'play': 1.0, 'area': 1.0, 'definitely': 1.0}
Word element => {'5': 1.0, 'give': 1.0, 'space': 1.0, 'will': 1.0, 'd': 1.0, 'phone': 1.0, 'doorbell': 1.0, 'getting': 1.0, 'worry': 1.0, 'enough': 1.0, 'not': 1.0, 'they': 1.0, 'pens': 1.0, 'son': 3.0, 'every': 1.0, 'enjoy': 1.0, 'certainly': 1.0, 'if': 2.0, 'bigger': 1.0, 'still': 1.0, 'just': 1.0, 'his': 2.0, 'get': 1.0, 'months': 1.0, 'huge': 2.0, 'believe': 1.0, 'without': 2.0, 'for': 2.0, 'purchased': 1.0, 'in': 5.0, 'penny': 1.0, 'up': 1.0, 'playtime': 1.0, 'the': 6.0, 'of': 2.0, 'out': 2.0, 'considering': 1.0, 'babies': 1.0, 'gave': 1.0, 'that': 1.0, 'when': 2.0, 'passed': 1.0, 'us': 1.0, 'you': 1.0, 'able': 1.0, 'recommend': 1.0, 'were': 2.0, 'quot': 2.0, '2': 1.0, 'having': 1.0, 'puppies': 1.0, 'climb': 2.0, 'tried': 1.0, 'wasnt': 1.0, 'problem': 1.0, 'as': 2.0, 'crazy': 1.0, 'playpen': 1.0, 'into': 1.0, 'talk': 1.0, 'worth': 1.0, 'almost': 1.0, 'now': 1.0, 'buying': 1.0, 'with': 4.0, 'to': 10.0, 'your': 2.0, 'any': 2.0, '19': 1.0, 'rang': 2.0, 'him': 4.0, 'it': 9.0, 'cant': 2.0, 'this': 3.0, 'dont': 1.0, 'noticed': 1.0, 'old': 1.0, 'handy': 1.0, 'finally': 1.0, 'we': 6.0, 'even': 2.0, 'or': 1.0, 'hubby': 2.0, 'really': 3.0, 'didnt': 1.0, 'well': 1.0, 'i': 13.0, 'look': 1.0, 'at': 2.0, 'sits': 1.0, 'is': 3.0, 'room': 1.0, 'once': 1.0, 'comes': 1.0, 'and': 8.0, 'walk': 1.0, 'play': 6.0, 'about': 2.0, 'our': 1.0, 'how': 1.0, 'enjoys': 1.0, 'has': 1.0, 'love': 1.0, 'he': 3.0, 'yet': 1.0, 'child': 1.0, 'product': 1.0, 'climbs': 1.0, 'one': 1.0, 'try': 1.0, 'extention': 2.0, 'its': 1.0, 'r': 1.0, 'do': 1.0, 'put': 1.0, 'stars': 1.0, 'wanted': 1.0, 'portable': 1.0, 'plays': 1.0, 'toys': 1.0, 'did': 1.0, 'mention': 1.0, 'other': 2.0, 'care': 1.0, 'my': 4.0, 'playpens': 1.0, 'have': 3.0, 'something': 1.0, 'dogs': 1.0, 'a': 3.0, 'small': 1.0, 'can': 1.0, 'so': 1.0, 'want': 1.0, 'disturb': 1.0, 'pen': 1.0}
Word element => {'again': 1.0, 'stand': 1.0, 'they': 1.0, 'big': 1.0, 'put': 1.0, 'just': 1.0, 'climb': 2.0, 'trying': 1.0, 'their': 1.0, 'worry': 1.0, 'on': 2.0, 'shoes': 1.0, 'month': 1.0, 'in': 4.0, 'to': 11.0, 'outside': 1.0, 'our': 1.0, 'toys': 1.0, 'who': 1.0, 'content': 1.0, 'active': 1.0, 'probably': 1.0, 't': 4.0, 'lots': 2.0, 'useful': 1.0, 'a': 1.0, 'added': 1.0, 'toes': 1.0, 'gates': 1.0, 'there': 2.0, 'chase': 1.0, 'bigger': 1.0, 'course': 1.0, 'this': 1.0, 'kids': 1.0, 'is': 1.0, 'more': 2.0, 'around': 1.0, 'she': 1.0, 'many': 1.0, 'that': 3.0, 'things': 1.0, 'you': 3.0, 'when': 1.0, 'makes': 1.0, 'common': 2.0, 'them': 1.0, 'next': 1.0, 'has': 2.0, 'superyard': 2.0, 'old': 1.0, 'fact': 1.0, 'uses': 1.0, '17': 1.0, 'buy': 1.0, 'day': 1.0, 'putting': 1.0, 'i': 6.0, 'different': 2.0, 'use': 2.0, 'her': 3.0, 'and': 9.0, 'love': 2.0, 'kit': 1.0, 'for': 1.0, 'absolutely': 1.0, 'with': 3.0, 'can': 2.0, 'versatile': 1.0, 'have': 8.0, 'even': 1.0, 'used': 1.0, 'extension': 3.0, 'inside': 1.0, 'very': 2.0, 'little': 1.0, 'the': 7.0, 'of': 3.0, 'freedom': 1.0, 'don': 4.0, 'up': 1.0, 'over': 1.0, 'about': 1.0, 'play': 2.0, 'walk': 1.0, 'we': 5.0, 'take': 1.0, 'reviews': 1.0, 'holes': 2.0, 's': 1.0, 'sense': 2.0, 'get': 1.0, 'trouble': 1.0, 'folding': 1.0, 'adding': 1.0, 'will': 2.0, 'it': 8.0, 'already': 1.0, 'all': 2.0, 'other': 1.0, 'an': 1.0, 'make': 1.0, 'agree': 1.0, 'great': 1.0, 'places': 1.0, 'definitely': 1.0, 'better': 1.0, 'kits': 2.0, 'way': 1.0, 'than': 1.0, 'mind': 1.0, 'house': 1.0, 'try': 1.0, 'one': 2.0, 'be': 1.0}
Word element => {'delivery': 1.0, 'cost': 1.0, 'great': 1.0, 'investment': 1.0, 'best': 1.0, 'was': 3.0, 'really': 1.0, 'worries': 1.0, 'no': 1.0, 'this': 2.0, 'it': 1.0, 'have': 2.0, 'take': 1.0, 'and': 4.0, 'up': 1.0, 'set': 1.0, 'that': 4.0, 'outside': 1.0, 'to': 2.0, 'system': 1.0, 'product': 1.0, 'love': 1.0, 'for': 3.0, 'time': 1.0, 'so': 1.0, 'down': 1.0, 'playing': 1.0, 'the': 8.0, 'gate': 3.0, 'i': 6.0, '4': 1.0, 'make': 1.0, 'on': 1.0, 'just': 1.0, 'get': 1.0, 'area': 1.0, 'easy': 1.0, 'made': 1.0, 'extension': 2.0, 'peurchaseing': 1.0, 'provide': 1.0, 'safety': 1.0, 'when': 2.0, 'need': 1.0, 'bigger': 1.0, 'toddlers': 1.0, 'indoors': 1.0, 'care': 1.0, 'are': 1.0, 'or': 1.0, 'sysyem': 1.0, 'out': 1.0, 'will': 1.0, 'also': 2.0, 'excellent': 1.0, 'purchased': 1.0, 'is': 1.0, 'plan': 1.0, 'we': 2.0, 'a': 1.0, 'superyard': 2.0, 'another': 1.0}
Word element => {'than': 1.0, 'better': 1.0, 'performed': 1.0, 'way': 1.0, 'this': 1.0, 'using': 1.0, 'pull': 1.0, 'when': 1.0, 'easily': 1.0, 'means': 1.0, 'that': 1.0, 'panels': 1.0, 'do': 1.0, 'overall': 1.0, 'shape': 1.0, 'effort': 1.0, 'able': 1.0, 'separate': 1.0, 'it': 5.0, 'also': 1.0, 'in': 1.0, 'takes': 1.0, 'some': 1.0, 'be': 1.0, 'to': 4.0, 'my': 2.0, 'designed': 1.0, 'expected': 1.0, 'won': 1.0, 'well': 1.0, 'has': 1.0, 'your': 1.0, 'hexagon': 1.0, 'product': 1.0, 'for': 2.0, 'but': 2.0, 'work': 1.0, 'most': 1.0, 'use': 1.0, 'i': 3.0, 'areas': 1.0, 'stability': 1.0, 'blocker': 1.0, 'over': 1.0, 'child': 3.0, 'don': 1.0, 'very': 1.0, 'access': 1.0, 't': 2.0, 'a': 3.0, 's': 1.0, 'go': 1.0, 'could': 1.0, 'want': 1.0, 'if': 1.0, 'not': 1.0, 'gate': 2.0, 'the': 4.0, 'careful': 1.0, 'small': 1.0}
Word element => {'far': 1.0, 'had': 1.0, 've': 1.0, 'problem': 1.0, 'really': 1.0, 'that': 1.0, 'room': 2.0, 'getting': 1.0, 'keeps': 1.0, 'store': 1.0, 'difficult': 1.0, 'which': 1.0, 'find': 1.0, 'yard': 1.0, 'use': 1.0, 'front': 1.0, 'also': 1.0, 'it': 7.0, 'this': 2.0, 'with': 2.0, 'baby': 3.0, 'legos': 1.0, 'older': 1.0, 'away': 1.0, 'only': 1.0, 'do': 1.0, 'playpen': 1.0, 'bit': 1.0, 'so': 2.0, 'child': 1.0, 'small': 1.0, 'have': 3.0, 'place': 1.0, 'the': 5.0, 'gate': 2.0, 'an': 1.0, 'are': 1.0, 'helped': 1.0, 'our': 2.0, 'as': 2.0, 'outside': 1.0, 'to': 6.0, 'toys': 1.0, 'keep': 1.0, 'helps': 2.0, 'there': 1.0, 'is': 3.0, 'in': 3.0, 'regular': 1.0, 'no': 2.0, 'way': 1.0, 'other': 1.0, 'kitchen': 1.0, 'moved': 1.0, 'and': 2.0, 'block': 1.0, 'house': 1.0, 'off': 1.0, 's': 1.0, 'we': 5.0, 'a': 4.0, 'used': 1.0, 'fence': 1.0, 'not': 2.0, 'well': 1.0, 'has': 2.0, 'but': 1.0, 'quot': 2.0, 'when': 1.0, 'contain': 1.0, 'from': 2.0, 'while': 1.0}
Word element => {'smooth': 1.0, 'inside': 1.0, 'forth': 1.0, 'back': 1.0, 'move': 1.0, 'up': 1.0, 'not': 1.0, 'me': 1.0, 'fluid': 1.0, 'from': 1.0, 'hard': 2.0, 'with': 1.0, 'struggle': 1.0, 'by': 2.0, 'just': 2.0, 'now': 1.0, 'fold': 2.0, 'difficult': 1.0, 'area': 1.0, 'bit': 2.0, 'expected': 1.0, 'specific': 1.0, 'somewhat': 1.0, '7': 1.0, 'links': 1.0, 'right': 1.0, 'little': 1.0, 's': 4.0, 'a': 5.0, 'lot': 1.0, 'this': 1.0, 'for': 1.0, 'love': 1.0, 'one': 1.0, 'limited': 1.0, 'may': 1.0, 'my': 2.0, 'the': 3.0, 'heavy': 1.0, 'is': 2.0, 'more': 1.0, 'such': 1.0, 'i': 5.0, 'movement': 1.0, 'guess': 1.0, 'old': 1.0, 'bulkier': 1.0, 'of': 1.0, 'but': 3.0, 'having': 1.0, 'than': 1.0, 'convenience': 1.0, 'bulky': 1.0, 'about': 1.0, 'outside': 1.0, 'to': 6.0, 'as': 2.0, 'clicks': 1.0, 'and': 6.0, 'challenging': 1.0, 'segments': 1.0, 'manuever': 1.0, 'when': 1.0, 'how': 1.0, 'adjust': 2.0, 'appreciate': 1.0, 'it': 7.0, 'month': 1.0, 'into': 1.0, 'big': 2.0, 'climbing': 1.0}
Word element => {'better': 1.0, 'perform': 1.0, 'that': 1.0, 'expect': 1.0, 't': 1.0, 'don': 1.0, 'read': 1.0, 'but': 1.0, 'evening': 1.0, 'sitting': 1.0, 'collapsed': 1.0, 'adjust': 1.0, 'he': 3.0, 'resembling': 1.0, 'would': 2.0, 'position': 1.0, 'box': 1.0, 'impossible': 1.0, 'up': 2.0, 'over': 2.0, 'set': 1.0, 'yesterday': 1.0, 'holding': 1.0, 'superyard': 1.0, 'year': 1.0, 'sibling': 1.0, 'virtually': 1.0, 'until': 1.0, 'stay': 1.0, 'not': 1.0, 'was': 5.0, 'to': 4.0, 'as': 1.0, 'outside': 2.0, 'our': 5.0, 'other': 1.0, 'all': 2.0, 'outdoors': 1.0, '14': 2.0, 'yard': 1.0, 'in': 4.0, 'stood': 1.0, 'derby': 1.0, 'also': 1.0, 'will': 3.0, 'bought': 2.0, 'try': 1.0, 'one': 1.0, 'something': 1.0, 'toddlers': 1.0, 'and': 5.0, 'hexagon': 1.0, 'another': 1.0, 'block': 1.0, 'months': 1.0, 'get': 1.0, 'moved': 1.0, 'whichever': 1.0, '3': 2.0, 'on': 5.0, 'much': 1.0, 'put': 1.0, 'porch': 1.0, 'joined': 1.0, 'into': 1.0, 'three': 1.0, 'playpen': 1.0, 'reviews': 1.0, 'we': 7.0, 'ages': 1.0, 'tot': 1.0, '4': 2.0, 'have': 2.0, 'for': 2.0, 'refuses': 1.0, 'living': 2.0, 'old': 1.0, 'this': 3.0, 'i': 2.0, 'well': 1.0, 'pop': 1.0, 'out': 1.0, 'the': 9.0, 'of': 1.0, 'room': 2.0, 'once': 1.0, 'finally': 1.0, 'got': 1.0, 'picture': 1.0, 'even': 1.0, 'olds': 1.0, 'vaguely': 1.0, 'son': 1.0, 'carpet': 1.0, 'demolition': 1.0, 'everytime': 1.0, 'able': 1.0, 'push': 1.0, 'whole': 1.0, 'his': 1.0, 'around': 1.0, 'at': 1.0, 'is': 1.0, 'when': 1.0, 'it': 8.0, 'him': 1.0, 'angle': 1.0, 'like': 1.0, 'they': 1.0, 'based': 1.0, 'side': 1.0, 'knocking': 1.0, 'month': 1.0, 'same': 1.0, 'place': 2.0, 'currently': 1.0}
Word element => {'park': 1.0, 'folds': 1.0, 'up': 1.0, 'and': 1.0, 'very': 1.0, 'or': 2.0, 'for': 1.0, 'play': 1.0, 'home': 1.0, 'easy': 1.0, 'use': 1.0, 'nice': 1.0, 'a': 1.0, 'camping': 1.0, 'kids': 1.0, 'makes': 1.0, 'area': 1.0, 'beach': 1.0, 'this': 1.0, 'it': 2.0, 'is': 1.0, 'transportable': 1.0, 'pets': 1.0, 'the': 1.0, 'safe': 1.0, 'at': 2.0}
Word element => {'ones': 1.0, 'anyone': 1.0, 'sugguest': 1.0, 'great': 1.0, 'toys': 1.0, 'that': 1.0, 'run': 1.0, 'my': 1.0, 'of': 2.0, 'there': 1.0, 'old': 1.0, 'i': 4.0, 'peace': 1.0, 'while': 1.0, 'leaving': 1.0, 'or': 1.0, 'just': 1.0, 'got': 1.0, 'already': 1.0, 'sturdy': 1.0, 'in': 3.0, 'having': 1.0, 'have': 1.0, '8': 1.0, 'has': 1.0, 'likes': 1.0, 'this': 2.0, 'n': 1.0, 'item': 2.0, 'can': 1.0, 'and': 5.0, 'for': 1.0, 'love': 1.0, 'a': 3.0, 'her': 1.0, 'load': 1.0, 'hold': 1.0, 'clothes': 1.0, 'the': 2.0, 'would': 1.0, 'something': 1.0, 'else': 1.0, 'its': 2.0, 'to': 2.0, 'little': 1.0, 'very': 1.0, 'who': 1.0, 'lot': 1.0, 'it': 2.0, 'month': 1.0, 'she': 1.0, 'wash': 1.0, 'freedom': 1.0, 'mind': 1.0, 'with': 2.0, 'crawl': 1.0, 'around': 1.0, 'is': 1.0, 'room': 1.0}
Word element => {'be': 1.0, 'independence': 1.0, 'some': 1.0, 'this': 1.0, 'one': 1.0, 'toys': 1.0, 'plus': 1.0, 'proof': 1.0, 'forgotten': 1.0, 'something': 1.0, 'getting': 1.0, 'about': 1.0, 'room': 1.0, 'worry': 1.0, 'area': 1.0, 'they': 3.0, 'product': 1.0, 'where': 1.0, 'safe': 2.0, 'in': 5.0, 'baby': 1.0, 'them': 2.0, 'keeps': 1.0, 'are': 2.0, 'not': 2.0, 'i': 3.0, 'old': 1.0, 'you': 1.0, 'twins': 2.0, 'may': 1.0, 'superyard': 1.0, 'have': 4.0, 'play': 1.0, 'and': 6.0, 'can': 1.0, 'it': 3.0, 'month': 1.0, 'great': 2.0, 'place': 2.0, 'the': 5.0, 'confined': 1.0, 'is': 4.0, 'crawl': 1.0, 'your': 1.0, 'on': 1.0, 'child': 1.0, 'don': 1.0, 'over': 2.0, 'want': 1.0, '10': 1.0, 'if': 2.0, 'their': 2.0, 'into': 1.0, 'that': 1.0, 'all': 1.0, 'to': 5.0, 't': 1.0, 'a': 1.0, 'go': 1.0, 'different': 1.0, 'directions': 1.0, 'stand': 1.0, 'range': 1.0, 'even': 1.0, 'both': 1.0, 'because': 1.0, 'choose': 1.0, 'does': 1.0, 'sturdy': 1.0, 'house': 1.0, 'limited': 1.0, 'enough': 1.0, 'lean': 1.0, 'fencing': 1.0, 'set': 1.0, 'tip': 1.0}
Word element => {'s': 1.0, 'crawl': 1.0, 'both': 1.0, 'area': 2.0, 'make': 1.0, 'on': 1.0, 'extension': 1.0, 'purchased': 1.0, 'had': 1.0, 'bigger': 1.0, 'it': 10.0, 'toys': 2.0, 'great': 1.0, 'gate': 1.0, 'more': 1.0, 'is': 4.0, 'around': 1.0, 'room': 2.0, 'much': 1.0, 'the': 3.0, 'of': 1.0, 'shower': 1.0, 'there': 1.0, 'and': 8.0, 'block': 2.0, 'indoor': 1.0, 'as': 3.0, 'any': 2.0, 'to': 7.0, 'our': 3.0, 'folds': 1.0, 'she': 2.0, 'baby': 1.0, 'plan': 1.0, 'gift': 1.0, 'my': 1.0, 'family': 1.0, 'a': 2.0, 'for': 4.0, 'stove': 1.0, 'began': 2.0, 'kitchen': 1.0, 'an': 1.0, 'other': 2.0, 'prevent': 1.0, 'outdoor': 1.0, 'up': 2.0, 'recieved': 1.0, 'this': 2.0, 'well': 2.0, 'i': 3.0, 'number': 1.0, 'when': 1.0, 'again': 1.0, 'complained': 1.0, 'daughter': 1.0, 'was': 2.0, 'better': 1.0, 'open': 1.0, 'than': 1.0, 'use': 1.0, 'also': 2.0, 'used': 1.0, 'set': 1.0, 'large': 2.0, 'between': 1.0, 'versatility': 1.0, 'we': 3.0, 'reviews': 1.0, 'easily': 1.0, 'because': 1.0, 'that': 3.0, 'no': 1.0, 'play': 1.0, 'about': 1.0, 'would': 1.0, 'be': 1.0, 'here': 1.0, 'enough': 1.0, 'cover': 1.0, 'worth': 1.0, 'now': 1.0, 'winter': 1.0, 'tree': 1.0, 'are': 1.0, 'wood': 1.0, 'pellet': 1.0, 'stores': 1.0, 'accidents': 1.0, 'using': 3.0, 'christmas': 1.0, 'year': 1.0, 'sturdy': 1.0, 'running': 1.0, 'have': 2.0, 'not': 1.0, 'or': 1.0, 'difficult': 1.0, 'yard': 1.0, 'never': 1.0, 'grew': 1.0, 'problem': 1.0}
Word element => {'you': 1.0, 'sure': 1.0, 'but': 1.0, 'hallway': 1.0, 'just': 1.0, 'stairway': 1.0, 'for': 1.0, 'not': 1.0, 'line': 1.0, 'bottom': 1.0, 'perfect': 1.0, 'are': 1.0, 'really': 1.0, 'came': 1.0, 'having': 1.0, 'find': 4.0, 'may': 1.0, 'my': 2.0, 'purchase': 1.0, 'fact': 1.0, 'm': 1.0, 'in': 5.0, 'short': 1.0, 'be': 4.0, 'mounted': 2.0, 'trying': 1.0, 'a': 8.0, 'we': 5.0, 'stairs': 1.0, 'gate': 6.0, 'flimsy': 1.0, 'keep': 1.0, 'one': 1.0, 'ones': 1.0, 'iron': 2.0, 'purchased': 1.0, 'screws': 1.0, 'had': 2.0, 'with': 1.0, 'conditions': 1.0, 'this': 3.0, 'would': 3.0, 'installed': 2.0, 'top': 3.0, 'wall': 1.0, 'these': 1.0, 'the': 11.0, 'of': 4.0, 'excited': 1.0, 'after': 1.0, 'new': 1.0, 'time': 1.0, 'between': 1.0, 'mount': 1.0, 'holes': 1.0, 'correctly': 1.0, 'husband': 1.0, 'all': 1.0, 'wrought': 1.0, 'if': 2.0, 'difficult': 1.0, 'recommend': 1.0, 'were': 3.0, 'because': 1.0, 'staircase': 1.0, 'that': 4.0, 'case': 1.0, 'stripped': 1.0, 'so': 1.0, 'can': 2.0, 'disappointing': 1.0, 'easy': 2.0, 'isn': 1.0, 'sturdy': 1.0, 'it': 8.0, 'she': 1.0, 'could': 2.0, 'railing': 2.0, 'will': 1.0, 'to': 7.0, 'pretty': 2.0, 'and': 3.0, 'at': 3.0, 'is': 1.0, 'i': 5.0, 'previous': 1.0, 'trust': 1.0, 'hold': 1.0, '17': 1.0, 'weight': 1.0, 'lb': 1.0, 'stand': 1.0, 'steps': 1.0, 'daughter': 1.0, 'up': 2.0, 'on': 1.0, 'better': 1.0, 'think': 1.0, 't': 3.0, 'replacement': 1.0, 'wasn': 1.0, 'wouldn': 1.0, 'ok': 2.0, 'someone': 1.0, 'lean': 1.0, 'mentioned': 1.0, 'review': 1.0, 'was': 1.0, 'climb': 1.0, 'until': 1.0, 'seems': 1.0, 'see': 1.0, 'our': 1.0, 'how': 1.0, 'little': 2.0}
Word element => {'bucks': 1.0, 'couple': 1.0, 'worth': 1.0, 'product': 1.0, 'sturdy': 1.0, 'a': 1.0, 'well': 1.0, 's': 1.0, 'buy': 2.0, 'you': 1.0, 'small': 1.0, 'the': 3.0, 'is': 1.0, 'if': 1.0, 'superyard': 1.0, 'extra': 1.0, 'xt': 1.0, 'this': 1.0, 'too': 1.0, 'yard': 1.0, 'great': 1.0, 'without': 1.0, 'it': 2.0}
Word element => {'shipping': 1.0, 'on': 1.0, 'bit': 1.0, 'quite': 1.0, 'save': 1.0, 'buy': 1.0, 'us': 1.0, 'if': 1.0, 'time': 1.0, 'shaded': 1.0, 'keep': 1.0, 'great': 1.0, 'think': 1.0, 'stand': 1.0, 'out': 1.0, 'wait': 1.0, 'first': 1.0, 'shot': 1.0, 'summer': 1.0, 'would': 2.0, 'extention': 1.0, 'because': 1.0, 'that': 4.0, 'impossible': 1.0, 'anything': 1.0, 'away': 1.0, 'now': 1.0, 'older': 1.0, 'there': 2.0, 'give': 2.0, 'clean': 1.0, 'when': 1.0, 'am': 2.0, 'felt': 1.0, 'undivided': 1.0, 'me': 1.0, 'my': 4.0, 'superyard': 1.0, 'for': 1.0, 'cry': 1.0, 'in': 4.0, 't': 3.0, 'a': 6.0, 'outdoors': 1.0, 'go': 1.0, 'have': 4.0, 'or': 1.0, 'enough': 1.0, 'knowing': 1.0, 'take': 2.0, 'safe': 2.0, 'another': 1.0, 'block': 1.0, 'and': 6.0, 'say': 1.0, 'good': 1.0, 'plan': 1.0, 'is': 3.0, 'but': 3.0, 'he': 4.0, 'confined': 1.0, 'this': 2.0, 'play': 3.0, 'about': 3.0, 'r': 1.0, 'babys': 1.0, 'do': 1.0, 'floor': 1.0, 'allow': 1.0, 'from': 1.0, 'being': 1.0, 'very': 1.0, 'can': 3.0, 'so': 1.0, 'had': 1.0, 'to': 9.0, 'an': 1.0, 'other': 1.0, 'all': 1.0, 'as': 1.0, 'was': 1.0, 'i': 13.0, 'until': 1.0, 'off': 1.0, 'areas': 1.0, 'always': 1.0, 'has': 2.0, 'space': 2.0, 'roam': 1.0, 'will': 3.0, 'work': 1.0, 'open': 1.0, 'daily': 1.0, 'kit': 1.0, 'routine': 1.0, 'happy': 1.0, 'environment': 1.0, 'don': 1.0, 'your': 1.0, 'feel': 1.0, 'though': 1.0, 'confining': 1.0, 'just': 1.0, 'guilty': 1.0, 'large': 1.0, 'keeping': 1.0, 'it': 3.0, 'thought': 1.0, 'him': 4.0, 'anymore': 1.0, 'area': 3.0, 'get': 1.0, 'you': 1.0, 'things': 2.0, 'able': 1.0, 'done': 1.0, 'yard': 1.0, 'some': 1.0, 'the': 1.0, 'attention': 1.0, 'buying': 1.0, 'toddler': 1.0, 'product': 1.0, 'child': 2.0, 'xt': 1.0, 'umbrella': 1.0, 'doubling': 1.0, 'his': 1.0}
Word element => {'for': 1.0, 'functional': 1.0, 'but': 1.0, 'to': 1.0, 'product': 1.0, 'useful': 1.0, 'up': 1.0, 'me': 1.0, 'and': 1.0, 'as': 1.0, 'good': 1.0, 'sturdy': 1.0, 'then': 1.0, 'about': 1.0, '14': 1.0, 'months': 1.0, 'enough': 1.0, 'not': 2.0, 'after': 1.0, 'is': 3.0, 'it': 2.0, 'this': 1.0, 'great': 1.0, 't': 1.0, 'that': 1.0, 'wasn': 1.0, 'concept': 1.0}
Word element => {'it': 1.0, 'love': 1.0, 'area': 1.0, 'a': 1.0, 'mat': 1.0, 'foam': 1.0, 'i': 1.0, 'twins': 1.0, 'bought': 1.0, 'and': 1.0, 'yard': 1.0, 'for': 1.0, 'in': 1.0, 'addition': 1.0, 'to': 2.0, 'large': 1.0, 'super': 1.0, 'my': 1.0, 'make': 1.0, 'the': 1.0, 'this': 1.0, 'play': 2.0}
Word element => {'pen': 1.0, 'smaller': 1.0, 'the': 1.0, 'extended': 1.0, 'and': 1.0, 'existing': 1.0, 'join': 1.0, 'already': 1.0, 'to': 2.0, 'on': 1.0, 'in': 1.0, 'extra': 1.0, 'together': 1.0, 'superyard': 1.0, 'it': 2.0, 'this': 1.0, 'used': 1.0, 'i': 1.0, 'takes': 1.0, 'a': 2.0, 'little': 1.0, 'strength': 1.0, 'an': 1.0, 'extension': 1.0, 'but': 1.0, 'size': 1.0, 'xt': 1.0, 'locks': 1.0, 'nice': 2.0}
Word element => {'bit': 1.0, 'pups': 1.0, 'where': 1.0, 'see': 1.0, 'gift': 1.0, 'two': 1.0, 'cheaper': 2.0, 'dollars': 1.0, 'though': 2.0, 'from': 1.0, 'just': 1.0, 'compare': 1.0, 'system': 1.0, 'doorway': 1.0, 'saying': 1.0, 'day': 1.0, 'all': 1.0, 'chasing': 1.0, 'be': 1.0, 'should': 1.0, 'everyone': 1.0, 'reccommend': 1.0, 'only': 1.0, 'us': 1.0, 'like': 1.0, 'better': 1.0, 'parent': 1.0, 'ground': 1.0, 'on': 1.0, 'than': 1.0, 'way': 1.0, 'learn': 1.0, 'child': 2.0, 'useless': 1.0, 'together': 1.0, 'piece': 1.0, 'were': 1.0, 'definately': 1.0, 'safe': 4.0, 'without': 2.0, 'of': 4.0, 'the': 9.0, 'been': 1.0, 'into': 1.0, 'written': 1.0, 'superyard': 1.0, 'never': 1.0, 'kit': 1.0, 'for': 3.0, 'gallon': 1.0, 'those': 1.0, 'impossible': 1.0, 'great': 1.0, 'online': 1.0, 'your': 1.0, 'keeps': 3.0, 'feel': 1.0, 'before': 1.0, 'yards': 1.0, 'worry': 2.0, 'ten': 1.0, 'gates': 1.0, 'thing': 3.0, 'no': 3.0, 'injured': 1.0, 'house': 2.0, 'have': 8.0, 'complain': 1.0, 'aquarium': 1.0, 'review': 1.0, 'has': 2.0, 'a': 8.0, 'we': 1.0, 'rest': 2.0, 't': 1.0, 'here': 2.0, 'new': 1.0, 'extension': 2.0, 'but': 3.0, 'learning': 1.0, 'my': 1.0, 'me': 1.0, 'kmart': 1.0, 'sane': 1.0, 'and': 8.0, 'actual': 1.0, 'one': 2.0, 'too': 2.0, 'walk': 1.0, 'about': 1.0, 'awesome': 1.0, 'play': 2.0, 'to': 11.0, 'our': 1.0, 'worth': 1.0, 'almost': 1.0, 'now': 5.0, 'felt': 1.0, 'ruined': 1.0, 'him': 2.0, 'it': 10.0, 'is': 13.0, 'things': 1.0, 'choice': 1.0, 'can': 1.0, 'so': 4.0, 'this': 7.0, 'right': 1.0, '30': 1.0, 'everything': 2.0, 'dont': 3.0, 'am': 2.0, 'stereo': 1.0, 'he': 7.0, 'well': 1.0, 'fast': 1.0, 'i': 16.0, 'compelled': 1.0, 'buy': 1.0, 'cage': 1.0, 'need': 1.0, 'get': 1.0, 'stand': 1.0, 'down': 1.0, 'that': 3.0, 'because': 1.0, 'terrified': 1.0, 'childproof': 1.0, 'pull': 1.0, 'speakers': 1.0, 'anymore': 1.0, 'pain': 1.0, 'rent': 1.0, 'cannot': 2.0, 'very': 1.0, 'living': 1.0, 'old': 1.0, 'certificate': 1.0, 'would': 3.0, 'properly': 1.0, 'cluttered': 1.0, 'son': 1.0, 'hate': 1.0, 'much': 1.0, 'do': 1.0, 'put': 2.0, 'in': 2.0, 'since': 1.0, 'space': 1.0, 'with': 1.0, 'plenty': 1.0, 'work': 1.0, 'open': 1.0, 'don': 1.0, 'bad': 1.0, 'live': 1.0, 'perfect': 1.0, 'pens': 1.0}
Word element => {'them': 1.0, 'ground': 1.0, 'head': 1.0, 'they': 1.0, 'hit': 1.0, 'learning': 1.0, 'if': 2.0, 'padded': 1.0, 'well': 1.0, 'on': 1.0, 'your': 2.0, 'side': 1.0, 'stand': 1.0, 'down': 1.0, 'one': 1.0, 'only': 1.0, 'for': 1.0, 'tiled': 1.0, 'out': 1.0, 'other': 1.0, 'dog': 2.0, 'part': 1.0, 'best': 1.0, 'floor': 1.0, 'see': 1.0, 'hurt': 1.0, 'when': 1.0, 'easily': 2.0, 'rug': 2.0, 'i': 1.0, 'needs': 1.0, 'so': 1.0, 'crawl': 1.0, 'child': 1.0, 'over': 2.0, 'item': 1.0, 'wonderful': 1.0, 'walk': 1.0, 'he': 2.0, 'this': 1.0, 'it': 6.0, 'through': 1.0, 'mother': 1.0, 'the': 6.0, 'their': 1.0, 'pen': 1.0, 'my': 3.0, 'in': 2.0, 'law': 1.0, 'suggested': 1.0, 'have': 1.0, 'playpens': 1.0, 'moved': 1.0, 'and': 3.0, 'too': 1.0, 'play': 1.0, 'room': 1.0, 'plus': 1.0, 'though': 1.0, 'son': 1.0, 'there': 1.0, 'larger': 2.0, 'thought': 1.0, 'to': 4.0, 'our': 2.0, 'would': 1.0, 'him': 1.0, 'be': 3.0, 'home': 1.0, 'can': 5.0, 'but': 1.0, 'even': 1.0, 'fall': 1.0, 'more': 1.0, 'is': 4.0, 'because': 1.0, 'standard': 1.0, 'than': 1.0, 'go': 1.0, 't': 1.0, 'a': 1.0, 'we': 3.0, 's': 1.0, 'large': 1.0, 'just': 2.0, 'keep': 1.0, 'get': 2.0, 'area': 3.0}
Word element => {'waste': 1.0, 'thing': 1.0, 'this': 1.0, 'return': 1.0, 'soon': 1.0, 'and': 1.0, 'worked': 1.0, 'directions': 1.0, 'nothing': 1.0, 'out': 2.0, 'it': 4.0, 'from': 1.0, 'onto': 1.0, 'extension': 2.0, 'an': 1.0, 'weeks': 1.0, 'supposed': 1.0, 'fit': 2.0, 'after': 1.0, 'was': 3.0, 'as': 4.0, 'to': 5.0, 'husband': 1.0, 'back': 1.0, 'needed': 1.0, 'yes': 1.0, 'waiting': 1.0, 'you': 1.0, 'extensions': 1.0, 'much': 1.0, 'got': 1.0, 'didn': 1.0, 'connect': 1.0, 'additional': 1.0, 'how': 3.0, 'tried': 2.0, 'i': 5.0, 'guess': 1.0, 'myself': 1.0, 'the': 9.0, 'can': 1.0, 'work': 1.0, 'but': 1.0, '2': 1.0, '3': 1.0, 'time': 1.0, 'they': 1.0, 'are': 1.0, 'get': 1.0, 'of': 1.0, 'still': 1.0, 'don': 1.0, 'see': 1.0, 'would': 1.0, 'neither': 1.0, 'or': 1.0, 'superyard': 4.0, 'my': 1.0, 'a': 1.0, 'going': 1.0, 's': 1.0, 'we': 2.0, 't': 2.0, 'could': 1.0, 'read': 1.0, 'figure': 2.0}
Word element => {'useful': 1.0, 'very': 1.0, 'everyone': 1.0, 'time': 1.0, 'long': 1.0, 'getting': 1.0, 'let': 1.0, 'or': 2.0, 'latest': 1.0, 'know': 1.0, 'using': 2.0, 'give': 1.0, 'fence': 1.0, 'room': 1.0, '5': 1.0, 'on': 1.0, 'extension': 1.0, 'live': 1.0, 'and': 2.0, 'inside': 2.0, 'house': 1.0, 'from': 1.0, 'them': 2.0, 'this': 2.0, 'month': 1.0, 'it': 7.0, 'with': 3.0, 'how': 1.0, 'addition': 1.0, 'he': 2.0, '6': 1.0, 'was': 1.0, 'now': 2.0, 'thought': 1.0, 'either': 1.0, 'animal': 1.0, 'had': 2.0, 'our': 1.0, 'outside': 2.0, 'to': 5.0, 'son': 1.0, 'worked': 1.0, 'year': 1.0, 'youngest': 1.0, 'contain': 1.0, 'when': 4.0, 'old': 2.0, 'just': 2.0, 'd': 1.0, 'm': 2.0, 'acres': 1.0, 'golden': 1.0, 'hopefully': 1.0, 'another': 1.0, 'destroying': 1.0, 'superyard': 2.0, 'my': 3.0, 'since': 2.0, 'keep': 1.0, 'retrievers': 1.0, 'the': 2.0, 'is': 1.0, 'more': 2.0, 'months': 1.0, 'bought': 1.0, 'great': 3.0, '1': 1.0, 'be': 1.0, 'him': 2.0, 'puppies': 1.0, '2': 3.0, 'but': 1.0, 'review': 1.0, 'has': 1.0, 'they': 1.0, 'dutch': 1.0, 'much': 1.0, 'use': 2.0, 'item': 1.0, 'will': 1.0, 'also': 2.0, 'used': 1.0, 'no': 1.0, 'about': 1.0, 'bunny': 1.0, 's': 2.0, 'ago': 1.0, 'we': 2.0, 'a': 3.0, 'product': 1.0, 'for': 3.0, 'i': 5.0, 'two': 1.0, 'were': 1.0}
Word element => {'and': 1.0, 'him': 1.0, 'silverware': 1.0, 'of': 1.0, 'grandson': 1.0, 'except': 1.0, 'my': 1.0, 'for': 2.0, 'also': 1.0, 'in': 1.0, 'loves': 2.0, 'off': 1.0, 'got': 2.0, 'he': 3.0, 'this': 1.0, 'it': 2.0, 's': 1.0, 'i': 1.0, 'fact': 1.0, 'we': 1.0, 'won': 1.0, 'eat': 1.0, 'anything': 1.0, 'the': 1.0, 't': 1.0, 'these': 1.0, 'birthday': 1.0, 'dishes': 1.0}
Word element => {'manner': 1.0, 'packaged': 1.0, 'item': 1.0, 'price': 1.0, 'and': 2.0, 'likes': 1.0, 'like': 1.0, 'will': 1.0, 'reasonable': 1.0, 'her': 1.0, 'sure': 1.0, 'm': 1.0, 'for': 1.0, 'gift': 1.0, 'thomas': 2.0, 'friend': 1.0, 'well': 1.0, 'since': 1.0, 'alot': 1.0, 'a': 5.0, 'timely': 1.0, 'son': 2.0, 'as': 1.0, 'good': 1.0, 'think': 1.0, 'loves': 1.0, 'because': 1.0, 'brought': 1.0, 'in': 1.0, 'seems': 1.0, 'pretty': 1.0, 's': 1.0, 'products': 1.0, 'i': 3.0, 'the': 2.0, 'this': 2.0, 'he': 2.0, 'it': 2.0, 'was': 3.0, 'character': 1.0, 'to': 1.0, 'be': 1.0, 'nice': 1.0, 'delivered': 1.0, 'most': 1.0, 'purchase': 2.0}
Word element => {'girf': 1.0, 's': 2.0, 'fan': 1.0, 'is': 1.0, 'anything': 1.0, 'my': 1.0, 'to': 1.0, 'thomas': 1.0, 'son': 1.0, 'as': 1.0, 'and': 1.0, 'loved': 1.0, 'present': 1.0, 'just': 1.0, 'a': 2.0, 'gave': 1.0, 'friend': 1.0, 'little': 1.0, 'boy': 1.0, 'it': 1.0, 'christmas': 1.0, 'this': 1.0, 'he': 1.0, 'of': 1.0}
Word element => {'use': 1.0, 'in': 1.0, 'many': 1.0, 'as': 1.0, 'floor': 1.0, 'off': 1.0, 'times': 1.0, 'bounced': 1.0, 'years': 1.0, 'for': 1.0, 'had': 1.0, 'going': 1.0, 'dishwasher': 1.0, 'least': 1.0, 'it': 2.0, 'this': 1.0, 'have': 1.0, 'of': 1.0, 'gone': 1.0, 'set': 1.0, 'we': 1.0, 'strong': 1.0, '1': 2.0, 'and': 3.0, 's': 2.0, 'still': 2.0, 'through': 1.0, '2': 1.0, 'the': 2.0, 'at': 1.0, 'hundreds': 1.0}
Word element => {'for': 1.0, 'that': 1.0, 'awesome': 1.0, 'in': 1.0, 'thomas': 1.0, 'the': 2.0, 'is': 1.0, 'eat': 1.0, 'll': 1.0, 'friends': 1.0, 'ware': 1.0, 'dining': 1.0, 'this': 1.0, 'dinner': 1.0, 'to': 2.0, 'family': 1.0, 'plate': 1.0, 'and': 1.0, 'get': 1.0, 'lover': 1.0, 'your': 1.0, 'they': 1.0, 'set': 1.0, 'bottom': 1.0, 'of': 1.0}
Word element => {'collecting': 1.0, 'thomas': 1.0, 'everthing': 1.0, 'loved': 1.0, 'grandson': 1.0, 'has': 2.0, 'trainspillows': 1.0, 'great': 1.0, 'for': 1.0, 'love': 1.0, 'friends': 1.0, 'and': 1.0, 'my': 1.0, 'also': 1.0, 's': 1.0, 'dvd': 1.0, 'silverware': 1.0, 'movies': 1.0, 'stuffed': 1.0, 'was': 1.0, 'his': 1.0, 'this': 1.0, 'he': 2.0, 'it': 1.0, 'first': 1.0}
Word element => {'set': 1.0, 'nice': 1.0, 'these': 1.0, 'from': 1.0, 'enjoys': 1.0, 'and': 1.0, 'train': 1.0, 'grandson': 1.0, 'really': 1.0, 'he': 1.0, '1': 1.0, '2': 2.0, 'is': 1.0, 'eating': 1.0, 'thomas': 1.0, 'my': 1.0, 'the': 1.0, 'yr': 1.0, 'old': 1.0, 'about': 1.0, 'all': 1.0}
Word element => {'fading': 1.0, 'been': 1.0, 'hasn': 1.0, 'durable': 1.0, 'any': 1.0, 'and': 1.0, 'very': 1.0, 'success': 1.0, 'a': 1.0, 'my': 1.0, 'it': 1.0, 't': 1.0, 'loves': 1.0, 'this': 1.0, '3': 1.0, 'niether': 1.0, 'piece': 1.0, 'was': 1.0, 'dinnerware': 1.0, 'there': 1.0, 'set': 1.0, 'son': 1.0, 'def': 1.0}
Word element => {'described': 1.0, 'were': 1.0, 'it': 1.0, 'he': 1.0, 'as': 1.0, 'big': 1.0, 'good': 1.0, 'absolutely': 1.0, 'thomas': 1.0, 'a': 1.0, 'fan': 1.0, 'is': 1.0, 'pieces': 1.0, 'loved': 1.0, 'grandson': 1.0, 'and': 2.0, 'quality': 1.0, 'my': 1.0, 'the': 1.0, 'just': 1.0, 'right': 1.0, 'for': 1.0, 'his': 1.0, 'little': 1.0, 'hands': 1.0}
Word element => {'that': 1.0, 'exchanges': 1.0, 'of': 1.0, 'fair': 1.0, 'to': 1.0, 'had': 1.0, 'mail': 1.0, 'it': 1.0, 'pecoware': 1.0, 'use': 1.0, 'for': 2.0, 'little': 1.0, 'fans': 1.0, 'broke': 1.0, '1st': 1.0, 'do': 1.0, 'me': 1.0, 'and': 1.0, 'i': 1.0, 'beware': 1.0, 'replace': 1.0, 'these': 1.0, 'are': 1.0, 'thomas': 1.0, 'dishes': 1.0, 'but': 2.0, 'fun': 1.0, 'you': 1.0, 'did': 1.0, 'pretty': 1.0, 'if': 1.0, 'have': 1.0, 'a': 2.0, 'before': 1.0, 'amount': 1.0, 'tile': 1.0, 'e': 1.0, 'floor': 1.0, 'though': 1.0, 'ceramic': 1.0, 'cup': 1.0, 'happened': 1.0, 'on': 1.0}
Word element => {'dishwasher': 1.0, 'rack': 1.0, 'top': 1.0, 'washing': 1.0, 'think': 1.0, 'don': 1.0, 'high': 1.0, 'recommends': 1.0, 't': 1.0, 'the': 1.0, 'to': 2.0, 'detailed': 1.0, 'each': 1.0, 'and': 1.0, 'very': 2.0, 'of': 1.0, 'set': 1.0, 'again': 1.0, 'are': 1.0, 'it': 1.0, 'nicer': 1.0, 'due': 1.0, 'on': 2.0, 'piece': 2.0, '3': 1.0, 'need': 1.0, 'nice': 1.0, 'than': 1.0, 'will': 1.0, 'quality': 2.0, 'but': 1.0, 'most': 1.0, 'childs': 1.0, 'sets': 1.0, 'buy': 1.0, 'i': 3.0, 'pictures': 1.0, 'would': 1.0}
Word element => {'3': 1.0, 'i': 1.0, 'them': 1.0, 'should': 1.0, 'always': 1.0, 'sets': 1.0, 'she': 1.0, 'it': 2.0, 's': 1.0, 'and': 1.0, 'quality': 1.0, 'bought': 1.0, 'wants': 1.0, 'isn': 1.0, 'thomas': 1.0, 'dishes': 1.0, 'so': 1.0, 'have': 1.0, 't': 1.0, 'obvious': 1.0, 'good': 1.0, 'plastic': 1.0}
Word element => {'dinnerware': 1.0, 'train': 1.0, 'on': 1.0, 'his': 2.0, 'have': 1.0, 'thing': 1.0, 'for': 1.0, 'thomas': 1.0, 'gift': 1.0, 'bought': 1.0, 'a': 1.0, 'days': 1.0, 'very': 1.0, 'as': 1.0, 'grandson': 1.0, 'my': 1.0, 'the': 3.0, 'i': 1.0, 'when': 1.0, 'set': 1.0, 'of': 1.0, 'to': 1.0, 'wanted': 1.0, 'was': 2.0, 'food': 1.0, 'so': 1.0, 'opened': 1.0, 'durable': 1.0, 'only': 1.0, 'this': 1.0, 'he': 3.0, 'excited': 1.0, 'it': 1.0, 'next': 1.0, 'and': 1.0, 'couple': 1.0}
Word element => {'mealtimes': 1.0, 'fussed': 1.0, 'otherwise': 1.0, 'have': 1.0, 'when': 1.0, 'eat': 1.0, 'to': 1.0, 'would': 1.0, 'him': 1.0, 'helped': 1.0, 'bit': 1.0, 'gift': 1.0, 'trains': 1.0, 'loved': 1.0, 'at': 1.0, 'nephew': 1.0, 'it': 1.0, 'this': 1.0, 'he': 2.0, 'around': 1.0, 'old': 1.0, 'set': 1.0, 'actual': 1.0, 'year': 1.0, 'than': 1.0, 'for': 2.0, 'one': 1.0, 'my': 1.0, 'more': 1.0, 'the': 2.0, 'motivate': 1.0, 'spoon': 1.0, 'carried': 1.0, 'his': 1.0, 'entire': 1.0, 'party': 1.0, 'a': 1.0}
Word element => {'time': 1.0, 'long': 1.0, 'last': 1.0, 'expect': 1.0, 'so': 1.0, 'good': 1.0, 'my': 1.0, 'for': 1.0, 'young': 1.0, 'i': 2.0, 'gift': 1.0, 'family': 1.0, 'member': 1.0, 'seems': 1.0, 'a': 3.0, 'as': 1.0, 'get': 1.0, 'and': 2.0, 'to': 1.0, 'be': 1.0, 'of': 2.0, 'this': 2.0, 'he': 1.0, 'it': 3.0, 'quality': 1.0, 'will': 2.0, 'ton': 1.0, 'loved': 1.0, 'purchased': 1.0, 'use': 1.0}
Word element => {'so': 1.0, 'fun': 1.0, 'meals': 1.0, 'and': 1.0, 'safe': 1.0, 'dishwasher': 1.0, 'more': 1.0, 'my': 1.0, 'grandson': 1.0, 'loved': 1.0, 'this': 1.0, 'for': 1.0, 'year': 1.0, 'much': 1.0, 'old': 1.0, 'him': 1.0, 'it': 1.0, 'thomas': 1.0, '2': 1.0, 'is': 1.0, 'makes': 1.0, 'loving': 1.0}
Word element => {'pile': 1.0, 'in': 1.0, 'frustrated': 1.0, 'out': 1.0, 'try': 1.0, 'even': 2.0, 'donate': 1.0, 'they': 1.0, 'ever': 1.0, 'playskool': 1.0, 'did': 1.0, 'scratched': 1.0, 'want': 1.0, 'is': 1.0, 'side': 1.0, 'on': 1.0, 'so': 1.0, 'drawn': 1.0, 'to': 2.0, 'all': 2.0, 'drags': 1.0, 't': 2.0, 'the': 4.0, 'are': 1.0, 'pull': 1.0, 'my': 1.0, 'love': 1.0, 'wouldn': 1.0, 'this': 2.0, 'it': 4.0, 's': 1.0, 'you': 1.0, 'get': 1.0, 'and': 2.0, 'idea': 1.0, 'trash': 1.0, 'up': 2.0, 'of': 1.0, 'stay': 1.0, 'toy': 1.0, 'dog': 1.0, 'but': 1.0, 'doesn': 1.0, 'kids': 1.0, 'walking': 1.0, 'when': 1.0}
Word element => {'get': 1.0, 'pulling': 1.0, 'of': 1.0, 'out': 1.0, 'only': 1.0, 'smooth': 1.0, 'hard': 1.0, 'pulls': 1.0, 'he': 2.0, 'surface': 1.0, 'if': 1.0, 'even': 1.0, 'that': 1.0, '20': 1.0, 'this': 3.0, 'it': 6.0, 'wanted': 1.0, 'had': 2.0, 'was': 1.0, 'noises': 1.0, 'to': 3.0, 'and': 3.0, 'like': 1.0, 'nothing': 1.0, 'dog': 2.0, 'years': 1.0, 'why': 1.0, 'year': 1.0, 'my': 1.0, 'pull': 2.0, 'the': 8.0, 'ago': 1.0, 'a': 3.0, 'gets': 1.0, 'enjoyment': 1.0, 'son': 1.0, 'middle': 1.0, 'big': 1.0, 'pulled': 1.0, 'digger': 1.0, 'original': 1.0, 'so': 2.0, 'over': 3.0, 'make': 1.0, 'on': 2.0, 'one': 3.0, 'for': 1.0, 'i': 3.0, 'old': 1.0, 'enough': 1.0, 'is': 6.0, 'around': 1.0, 'top': 1.0, 'anything': 1.0, 'little': 1.0, 'plus': 1.0, 'string': 2.0, 'when': 1.0, 'light': 1.0, 'by': 2.0, 'just': 1.0, 'through': 1.0, 'topples': 1.0}
Word element => {'favorite': 1.0, 'our': 1.0, 'being': 1.0, 'jazz': 1.0, 'use': 1.0, 'cartridge': 1.0, 'probably': 1.0, 'is': 1.0, 'toy': 1.0, 'other': 1.0, 'street': 1.0, 'children': 1.0, 'sesame': 1.0, 'prefer': 1.0, 'old': 1.0, 'i': 1.0, 'year': 1.0, 'that': 1.0, 'songs': 1.0, 'would': 2.0, 'e': 1.0, 'man': 2.0, 'orchestra': 1.0, 'immensely': 1.0, 'enjoys': 1.0, 'we': 2.0, 'city': 1.0, 's': 2.0, 'a': 1.0, 'this': 2.0, 'stereo': 1.0, 'doing': 1.0, 'the': 8.0, 'put': 1.0, 'think': 1.0, 'on': 1.0, 'animal': 1.0, 'and': 3.0, 'over': 1.0, 'vocal': 1.0, 'with': 2.0, 'thrilled': 1.0, 'most': 1.0, 'music': 1.0, 'but': 1.0, '2': 1.0, 'la': 1.0, 'singing': 2.0, 'who': 1.0, 'indeed': 1.0, 'donna': 1.0, 'she': 3.0, 'sounds': 2.0, 'also': 1.0, 'chuckle': 1.0, 'asks': 1.0, 'when': 1.0, 'mobile': 1.0, 'entire': 1.0, 'frequently': 1.0, 'second': 1.0, 'song': 1.0, 'still': 1.0, 'love': 1.0, 'for': 2.0, 'her': 2.0, 'was': 1.0}
Word element => {'far': 1.0, 'so': 1.0, 'is': 1.0, 'personal': 1.0, 'chuckle': 1.0, 'this': 2.0, 'favorite': 1.0, 'of': 1.0, 'some': 1.0, 'keeps': 1.0, 'part': 1.0, 'cracking': 1.0, 'one': 2.0, 'us': 1.0, 'two': 1.0, 'up': 1.0, 'the': 2.0, 'my': 2.0, 'song': 1.0, 'year': 1.0, 'mimics': 1.0, 'old': 1.0}
Word element => {'back': 1.0, 'shapes': 1.0, 'good': 2.0, 'since': 1.0, 'have': 1.0, 'were': 1.0, 'a': 1.0, 'we': 1.0, 'get': 1.0, 'accident': 1.0, 'yanked': 1.0, 'very': 1.0, 'off': 3.0, 'pull': 1.0, 'out': 2.0, 'taken': 2.0, 'this': 2.0, 'with': 2.0, 'first': 2.0, 'even': 1.0, 'before': 1.0, 'his': 1.0, 'i': 4.0, 'old': 1.0, 'play': 1.0, 'goes': 1.0, 'to': 3.0, 'now': 1.0, 'had': 1.0, 'purchased': 1.0, 'easier': 1.0, 'toy': 4.0, 'for': 3.0, 'playing': 1.0, 'the': 8.0, 'started': 1.0, 'does': 1.0, '14': 1.0, 'because': 2.0, 'my': 2.0, 'it': 7.0, 'month': 1.0, 'of': 1.0, 'up': 1.0, 'is': 4.0, 'he': 4.0, 'door': 1.0, 'box': 1.0, 'that': 1.0, 'in': 2.0, 'morning': 1.0, 'quot': 2.0, 'but': 1.0, 'can': 1.0, 'easily': 1.0, 'when': 2.0, 'busy': 1.0, 'son': 2.0, 'gets': 1.0, 'by': 2.0, 'favorite': 1.0, 'shape': 1.0, 'circle': 1.0, 'himself': 1.0, 'put': 1.0, 'on': 1.0, 'front': 1.0}
Word element => {'loves': 1.0, 'at': 1.0, 'so': 1.0, 'worried': 1.0, 'my': 1.0, 'and': 1.0, 'baby': 2.0, 'toy': 1.0, 'be': 1.0, 'much': 1.0, 'it': 1.0, 'older': 1.0, 'first': 1.0, 'this': 1.0, 't': 1.0, 'does': 1.0, 'i': 2.0, 'love': 1.0, 'there': 1.0, 'didn': 1.0, 'but': 1.0, 'seem': 1.0, 'interest': 1.0, 'was': 1.0, 'to': 1.0, 'now': 1.0}
Word element => {'recommended': 1.0, 'they': 1.0, 'what': 1.0, 'sure': 1.0, 'if': 1.0, 'you': 1.0, 'someone': 1.0, 'very': 1.0, 'seems': 1.0, 'shouldn': 1.0, 'repetitive': 1.0, 'the': 3.0, 'annoying': 1.0, 'it': 4.0, 'looked': 1.0, 'drive': 1.0, 'this': 2.0, 'first': 1.0, 'gave': 1.0, 'rated': 1.0, 'son': 1.0, 'highly': 1.0, 'soon': 1.0, 'and': 3.0, 'give': 1.0, 'me': 1.0, 'any': 1.0, 'noises': 1.0, 'to': 5.0, 'crazy': 1.0, 'was': 1.0, 'i': 2.0, 'looking': 1.0, 'kid': 1.0, 'gift': 2.0, 'birthday': 1.0, 'interested': 1.0, 'workers': 1.0, 'party': 1.0, 't': 3.0, 'a': 4.0, 's': 1.0, 'monday': 1.0, 'time': 1.0, 'so': 2.0, 'co': 2.0, 'safe': 1.0, 'take': 1.0, 'worker': 1.0, 'for': 2.0, 'on': 3.0, 'friday': 1.0, 'are': 1.0, 'saturday': 1.0, 'like': 1.0, 'know': 1.0, 'told': 1.0, 'or': 1.0, 'let': 1.0, 'super': 1.0, 'him': 2.0, 'he': 1.0, 'how': 1.0, 'goes': 1.0, 'in': 1.0, 'said': 1.0, 'his': 1.0, '20': 1.0, 'enjoyed': 1.0, 'far': 1.0, 'aren': 2.0}
Word element => {'ringer': 1.0, 'with': 1.0, 'phone': 1.0, 'pointed': 1.0, 'not': 1.0, 'though': 2.0, 'toy': 2.0, 'likes': 1.0, 'an': 1.0, 'musical': 2.0, 'old': 2.0, 'i': 6.0, '7': 1.0, 'can': 1.0, 'month': 1.0, 'it': 3.0, 'much': 1.0, 'only': 1.0, 'this': 1.0, 'based': 1.0, 'of': 2.0, 'as': 4.0, 'son': 1.0, 'very': 1.0, 'and': 1.0, 'cell': 1.0, 'am': 1.0, 'another': 1.0, 'my': 1.0, 'now': 1.0, 'expecting': 1.0, 'was': 3.0, 'think': 1.0, 'on': 1.0, 'reviews': 1.0, 'glad': 1.0, 'far': 1.0, 'did': 1.0, 'the': 1.0, 'see': 1.0, 'downside': 1.0, 'which': 1.0, 'also': 1.0, 'unnatural': 1.0, 'sound': 1.0, 'out': 1.0, 'by': 1.0, 'other': 1.0, 'reviewers': 1.0, 'is': 2.0, 'that': 1.0, 'surprised': 1.0, 'got': 1.0, 'even': 1.0}
Word element => {'are': 1.0, 'gadgets': 1.0, 'sound': 1.0, 'annoying': 1.0, 'too': 1.0, 's': 1.0, 'other': 1.0, 'lights': 1.0, 'an': 1.0, 'music': 1.0, 'like': 1.0, 'up': 1.0, 'and': 1.0, 'teaches': 1.0, 'early': 1.0, 'not': 1.0, 'at': 1.0, 'some': 1.0, 'fundamentals': 1.0, 'age': 1.0, 'it': 1.0}
Word element => {'toddlers': 1.0, 'i': 1.0, 'babies': 1.0, 'all': 2.0, 'use': 1.0, 'ages': 1.0, 'years': 1.0, 'toy': 1.0, 'birth': 1.0, 'musical': 1.0, 'our': 1.0, 'to': 2.0, 'granddaughter': 1.0, 'at': 2.0, 'a': 1.0, 'hers': 2.0, 'is': 1.0, 'great': 1.0, '2': 1.0, 'this': 3.0, 'loves': 1.0, 'recommend': 1.0, 'she': 1.0, 'for': 1.0, 'continues': 1.0, 'received': 1.0, 'and': 2.0}
Word element => {'year': 1.0, 'bored': 1.0, 'gets': 1.0, 'then': 1.0, 'interested': 1.0, 'seconds': 1.0, '5': 1.0, 'plays': 1.0, 'pleasant': 1.0, 'about': 1.0, 'baby': 1.0, 'is': 2.0, 'really': 1.0, 'maybe': 1.0, 'old': 2.0, 'be': 2.0, '8': 1.0, 'music': 1.0, 'better': 1.0, '9': 1.0, 'month': 1.0, 'my': 2.0, 'the': 2.0, 'and': 1.0, 'toybox': 1.0, 'young': 1.0, 'for': 3.0, 'in': 2.0, 'present': 1.0, 'a': 2.0, 'tucked': 1.0, 'to': 1.0, 'was': 2.0, '3': 1.0, 'later': 1.0, 'durable': 1.0, 'he': 1.0, 'with': 2.0, 'it': 4.0, 'christmas': 1.0, 'this': 2.0, 'months': 1.0, 'would': 1.0, 'never': 2.0, 'played': 1.0, 'stays': 1.0}
Word element => {'she': 2.0, 'but': 1.0, 'her': 1.0, 'cube': 1.0, 'too': 1.0, 'it': 1.0, 'that': 1.0, 'young': 1.0, 'i': 1.0, 'music': 1.0, 'be': 1.0, 'old': 1.0, 'bought': 1.0, 'my': 1.0, 'and': 2.0, 'loves': 2.0, 'might': 1.0, 'this': 2.0, '2': 1.0, 'for': 2.0, 'year': 1.0, 'was': 1.0, 'hesitant': 1.0}
Word element => {'both': 1.0, 'best': 1.0, 'sister': 1.0, 'one': 1.0, 'liked': 1.0, 'are': 2.0, 'up': 1.0, 'learn': 1.0, 'want': 1.0, 'blocks': 1.0, 'encourage': 1.0, 'will': 1.0, 'like': 1.0, 'friend': 1.0, 'influences': 1.0, 'musical': 1.0, 'enough': 1.0, 're': 1.0, 'other': 1.0, 'again': 1.0, 'when': 3.0, 'christmas': 1.0, 'he': 4.0, 'mos': 1.0, 'with': 1.0, 'instrument': 1.0, 'this': 3.0, 'it': 2.0, 'played': 1.0, 'my': 2.0, 'that': 1.0, 'loves': 1.0, 'since': 1.0, 'who': 2.0, 'toys': 1.0, 'son': 1.0, 'now': 1.0, 'our': 1.0, 'constructed': 1.0, 'to': 6.0, 'comes': 1.0, 'is': 2.0, '18': 1.0, 'well': 1.0, 'has': 1.0, 'toy': 1.0, 'old': 1.0, 'cube': 6.0, 'mozart': 3.0, 'lights': 1.0, 'for': 2.0, 'almost': 1.0, 'his': 3.0, 'got': 1.0, 'then': 1.0, 'him': 2.0, 'buy': 1.0, 'days': 1.0, 'll': 2.0, 'hoping': 1.0, 'in': 1.0, 'playing': 1.0, 'the': 4.0, 'living': 1.0, 'stops': 1.0, 'room': 1.0, 'play': 3.0, 'and': 3.0, 'we': 3.0, 'go': 1.0, 'on': 1.0, 'explore': 1.0, 'pregnant': 1.0, 'most': 1.0, 'music': 2.0, 'back': 1.0}
Word element => {'toddler': 1.0, 'abuses': 1.0, 'sturdy': 1.0, 'are': 1.0, 'instruments': 1.0, 'and': 2.0, 'in': 1.0, 'pieces': 1.0, 'different': 2.0, 'hear': 3.0, 'to': 4.0, 'removed': 1.0, 'toy': 1.0, 'much': 1.0, 'making': 1.0, 'lot': 1.0, 'button': 1.0, 'blend': 1.0, 'pleasure': 1.0, 'noise': 1.0, 'well': 1.0, 'a': 5.0, 'is': 4.0, 'play': 1.0, 'how': 1.0, 'while': 1.0, 'touch': 1.0, 'i': 1.0, 'holds': 1.0, 'or': 1.0, 'almost': 1.0, 'very': 1.0, 'as': 2.0, 'my': 1.0, 'the': 4.0, 'it': 4.0, 'with': 1.0, 'this': 1.0, 'children': 1.0, 'up': 1.0, 'of': 3.0, 'at': 1.0, 'fun': 1.0}
Word element => {'them': 1.0, 'song': 2.0, 'instruments': 1.0, 'plays': 1.0, 'find': 2.0, 'than': 1.0, 'subtract': 1.0, 'really': 1.0, 'way': 1.0, 'both': 1.0, 'this': 1.0, 'it': 2.0, 'like': 2.0, 'button': 1.0, 'start': 1.0, 'of': 2.0, 'the': 6.0, 'more': 1.0, 'my': 1.0, 'you': 1.0, 'twins': 1.0, 'introduce': 1.0, 'i': 3.0, 'music': 1.0, 'can': 1.0, 'love': 1.0, 'one': 1.0, 'toy': 1.0, 'did': 1.0, 'keep': 1.0, 'how': 1.0, 'interesting': 1.0, 'and': 1.0, 'that': 1.0, 'they': 2.0, 'pressing': 1.0, 'enjoy': 1.0, 'add': 1.0, 'others': 1.0, 'songs': 1.0, 'will': 1.0, 'orchestra': 1.0, 'until': 1.0, 'think': 1.0, 'different': 1.0, 'good': 1.0, 's': 1.0, 'a': 1.0, 'as': 1.0, 'to': 3.0}
Word element => {'play': 1.0, 'ages': 1.0, 'siblings': 1.0, 'his': 1.0, 'even': 1.0, 'of': 1.0, 'combinations': 1.0, '4': 1.0, 'sounds': 2.0, 'year': 1.0, 'grandson': 1.0, 'my': 1.0, '2': 1.0, 'more': 1.0, 'the': 1.0, 'various': 1.0, 'else': 1.0, 'wanted': 1.0, 'to': 2.0, 'was': 1.0, 'and': 1.0, '1': 1.0, 'old': 1.0, 'i': 1.0, 'at': 1.0, 'spent': 1.0, 'time': 1.0, 'anything': 1.0, 'than': 1.0, 'it': 1.0, 'older': 1.0, 'christmas': 1.0, 'this': 2.0, 'he': 2.0, 'with': 2.0, 'fasinated': 1.0, 'gave': 1.0, 'by': 1.0}
Word element => {'toys': 1.0, 'c': 1.0, 'for': 2.0, 'handle': 1.0, 'tell': 1.0, 'how': 1.0, 'working': 1.0, 'stops': 1.0, 'compartment': 1.0, 'touch': 1.0, 'you': 2.0, 'construction': 1.0, 'little': 1.0, 'determining': 1.0, 'it': 5.0, 'first': 1.0, 'gift': 1.0, 'birthday': 1.0, 'this': 2.0, 'found': 1.0, 'at': 1.0, 'two': 2.0, 'after': 1.0, 'so': 1.0, 'heard': 1.0, 'not': 5.0, 'would': 2.0, 'was': 4.0, 'now': 1.0, 'correctly': 1.0, 'given': 1.0, 'cube': 2.0, 'old': 2.0, 'battery': 2.0, 'the': 7.0, 'great': 1.0, 'tight': 1.0, 'my': 1.0, 'to': 3.0, 'as': 1.0, 'year': 2.0, 'a': 5.0, 'detective': 1.0, 'nephew': 1.0, 'that': 1.0, 'casing': 1.0, 'made': 1.0, 'if': 2.0, 'but': 1.0, 'work': 3.0, 'music': 1.0, 'screwed': 1.0, 'musical': 1.0, 'do': 1.0, 'works': 1.0, 'and': 4.0, 'in': 1.0, 'itself': 1.0, 'is': 1.0, 'batteries': 1.0, 'item': 2.0, 'intruments': 1.0}
Word element => {'also': 1.0, 'greatest': 1.0, 'husband': 1.0, 'highly': 1.0, 'would': 1.0, 'i': 1.0, 'land': 1.0, 'him': 1.0, 'finally': 1.0, 'what': 1.0, 'everynight': 1.0, 'with': 1.0, 'even': 1.0, 'his': 1.0, 'buttons': 1.0, 'been': 1.0, 'it': 6.0, 'this': 2.0, 'he': 7.0, 'months': 1.0, 'everywhere': 1.0, '17': 1.0, 'old': 1.0, 'turned': 1.0, 'recommend': 1.0, 'was': 1.0, 'now': 2.0, 'when': 1.0, 'given': 1.0, 'gift': 1.0, 'my': 2.0, 'gets': 1.0, 'son': 1.0, 'musician': 1.0, 'to': 3.0, 'as': 2.0, 'and': 4.0, '1': 1.0, 'has': 1.0, 'down': 1.0, 'favorite': 1.0, 'at': 1.0, 'sleeps': 1.0, 'is': 4.0, 'around': 1.0, 'the': 4.0, 'carried': 1.0, 'put': 1.0, 'back': 1.0, 'a': 2.0, 'hardly': 1.0, 'thinks': 1.0, 'press': 1.0, 'runs': 1.0, 'goes': 1.0, 'house': 1.0, 'off': 2.0, 'ever': 1.0, 'plays': 2.0, 'so': 1.0, 'first': 1.0, 'hear': 1.0, 'la': 2.0, 'but': 1.0, 'can': 1.0, 'music': 1.0}
Word element => {'priceless': 1.0, 'be': 1.0, 'find': 1.0, 'i': 1.0, 'son': 1.0, 'favorite': 1.0, 'fantasic': 1.0, 'appreciate': 1.0, 'your': 1.0, 'you': 1.0, 'move': 1.0, 'can': 1.0, 'music': 4.0, 'want': 1.0, 'if': 1.0, 'cube': 1.0, 'entertained': 1.0, 'combination': 1.0, 'he': 3.0, 'with': 1.0, 'some': 1.0, 'at': 1.0, 'keeps': 1.0, 'my': 4.0, 'are': 1.0, 'push': 1.0, 'baby': 2.0, 'toy': 3.0, 'quite': 1.0, 'that': 1.0, 'loves': 2.0, 'and': 5.0, 'this': 4.0, 'perfect': 1.0, 'in': 1.0, 'child': 1.0, 'sound': 1.0, 'time': 1.0, 'is': 3.0, 'a': 2.0, 'for': 2.0, 'lights': 2.0, 'any': 1.0, 'to': 4.0, 'his': 1.0, 'buttons': 1.0, 'without': 1.0, 'the': 4.0, 'hands': 1.0, 'easy': 1.0, 'help': 1.0, 'from': 1.0, 'mom': 1.0, 'activate': 1.0, 'light': 1.0, 'also': 1.0, 'will': 1.0, 'stare': 1.0, 'it': 1.0, 'fascinated': 1.0}
Word element => {'neat': 1.0, 'or': 1.0, 'seperate': 1.0, 'buttons': 1.0, 'the': 1.0, 'because': 1.0, 'can': 1.0, 'my': 2.0, 'son': 2.0, 'it': 4.0, 'this': 1.0, 'lights': 1.0, 'for': 1.0, 'liked': 1.0, 'music': 1.0, 'old': 1.0, 'i': 1.0, 'together': 2.0, 'plays': 2.0, 'couple': 1.0, 'and': 3.0, 'enjoys': 1.0, 's': 1.0, 'you': 1.0, 'also': 1.0, 'month': 1.0, 'press': 1.0, 'a': 1.0, '6': 1.0, 'up': 1.0, 'of': 1.0}
Word element => {'have': 1.0, 'would': 1.0, 'while': 1.0, 'french': 1.0, 'as': 1.0, 'doors': 1.0, 'our': 1.0, 'smash': 1.0, 'or': 1.0, 'foot': 1.0, 'that': 2.0, 'm': 1.0, 'person': 1.0, 'afraid': 1.0, 'for': 1.0, 'heavy': 1.0, 'thing': 1.0, 'be': 1.0, 'him': 1.0, 'throwing': 1.0, 'up': 1.0, 'hit': 1.0, 'some': 1.0, 'only': 1.0, 'll': 1.0, 'far': 1.0, 'through': 1.0, 'buttons': 1.0, 'then': 2.0, 'even': 1.0, 'me': 1.0, 'prompted': 1.0, 'but': 2.0, 'doesn': 2.0, 'i': 4.0, 'done': 1.0, 'press': 1.0, 'toys': 1.0, 'top': 1.0, 'starts': 1.0, 'my': 1.0, 'without': 1.0, 'the': 2.0, 'this': 2.0, 'it': 8.0, 'with': 1.0, 'take': 1.0, 'many': 1.0, 'is': 4.0, 'really': 1.0, 'hopes': 1.0, 'thought': 1.0, 'had': 1.0, 'older': 1.0, 'shortly': 1.0, 'now': 1.0, 'in': 1.0, 'unless': 1.0, 'high': 1.0, 'homepages': 1.0, 'seemed': 1.0, 'liked': 2.0, 'little': 3.0, 'very': 1.0, 'sounds': 1.0, 'ten': 1.0, 'months': 1.0, 'toy': 2.0, 'well': 1.0, 'recommended': 1.0, 'so': 1.0, 'boy': 1.0, 'by': 1.0, 'just': 2.0, 'interested': 2.0, 'early': 1.0, 'seem': 1.0, 'might': 1.0, 'could': 2.0, 'a': 2.0, 't': 2.0, 'we': 2.0, 'and': 7.0, 'play': 1.0, 'picking': 1.0, 'he': 6.0, 'received': 1.0, 'grows': 1.0, 'on': 2.0, 'think': 1.0, 'his': 1.0, 'almost': 1.0, 'of': 1.0, 'somewhat': 1.0, 'usually': 1.0, '14': 1.0}
Word element => {'thumbs': 1.0, 'overall': 1.0, 'on': 1.0, 'been': 1.0, 'annoying': 1.0, 'fast': 1.0, 'two': 1.0, 'solid': 1.0, 'super': 1.0, 'a': 1.0, 'in': 1.0, 'not': 1.0, 'i': 1.0, 'way': 2.0, 's': 2.0, 'many': 2.0, 'is': 1.0, 'that': 1.0, 'our': 1.0, 'different': 1.0, 'times': 1.0, 'toys': 1.0, 'favorite': 1.0, 'has': 2.0, 'baby': 1.0, 'toy': 2.0, 'floor': 1.0, 'musical': 1.0, 'corners': 1.0, 'like': 1.0, 'do': 1.0, 'and': 2.0, 'son': 1.0, 'very': 2.0, 'the': 3.0, 'nicely': 1.0, 'up': 2.0, 'dropped': 1.0, 'lights': 1.0, 'options': 1.0, 'this': 1.0, 'it': 3.0, 'so': 1.0, 'rounded': 1.0, 'quality': 1.0, 'an': 1.0, 'but': 1.0}
Word element => {'value': 1.0, 'last': 1.0, 'built': 1.0, 'not': 2.0, 'educational': 1.0, 'musical': 1.0, 'in': 1.0, 'much': 1.0, 'price': 1.0, 'wear': 1.0, 'short': 1.0, 'toys': 1.0, 'yes': 1.0, 'batteries': 1.0, 'with': 1.0, 'today': 1.0, 'great': 2.0, 'feel': 1.0, 'doesn': 1.0, 'tendency': 1.0, 'year': 1.0, 'more': 2.0, 'little': 1.0, 'after': 1.0, 'them': 1.0, 'hard': 1.0, 'really': 1.0, 'tried': 1.0, 'child': 1.0, 'generally': 1.0, 'even': 1.0, 'didn': 1.0, 'for': 5.0, 'one': 2.0, 'of': 2.0, 're': 1.0, 'to': 3.0, 'our': 3.0, 'make': 1.0, 'on': 1.0, 'first': 1.0, 'it': 2.0, 'this': 2.0, 'second': 1.0, 'button': 1.0, 'fine': 1.0, 'disappointment': 1.0, 'have': 1.0, 'older': 1.0, 'delight': 1.0, 'we': 3.0, 'a': 9.0, 't': 2.0, 'steep': 1.0, 'playing': 2.0, 'the': 6.0, 'new': 1.0, 'would': 1.0, 'but': 3.0, 'work': 1.0, 'toddler': 1.0, 'died': 1.0, 'than': 2.0, 'son': 1.0, 'out': 2.0, 'replacement': 1.0, 'letdown': 1.0, 'worked': 1.0, 'brand': 1.0, 'source': 1.0, 'salute': 1.0, 'family': 1.0, 'expected': 1.0, 'has': 5.0, 'toy': 4.0, 'that': 1.0, 'been': 2.0, 'box': 1.0, 'loves': 1.0, 'tough': 1.0, 'and': 4.0, 'too': 1.0, 'decide': 1.0, 'mom': 1.0, 'though': 1.0, 'become': 1.0, 'like': 1.0, 'which': 1.0, 'dad': 2.0, 'manufacturer': 1.0}
Word element => {'pay': 1.0, 'not': 1.0, 'were': 1.0, 'focus': 1.0, 'at': 1.0, 'recognize': 1.0, 'however': 1.0, 'terribly': 1.0, 'find': 1.0, 'own': 1.0, 'giving': 1.0, 'be': 2.0, 'i': 3.0, 'don': 1.0, 'loudness': 1.0, 'over': 1.0, 'order': 1.0, 'niece': 1.0, 'old': 1.0, '11': 1.0, 'needs': 1.0, 'so': 1.0, 'on': 2.0, 'edges': 1.0, 'certain': 1.0, 'sharp': 1.0, 'no': 1.0, 'have': 1.0, 'will': 1.0, 'also': 1.0, 'nice': 1.0, 'dropped': 1.0, 'they': 2.0, 'perfect': 1.0, 'songs': 1.0, 'in': 3.0, 'month': 1.0, 'she': 2.0, 'it': 10.0, 'loud': 1.0, 'christmas': 1.0, 'durable': 1.0, 'babies': 1.0, 'loves': 1.0, 'or': 1.0, 'very': 2.0, 'little': 1.0, 'instruments': 1.0, 'birthday': 1.0, 'enchanted': 1.0, 'gift': 1.0, 'might': 1.0, 't': 1.0, 'discovered': 1.0, 'a': 2.0, 'to': 8.0, 'as': 3.0, 'safe': 1.0, 'mozart': 1.0, 'cube': 2.0, 'given': 1.0, 'for': 5.0, 'one': 3.0, 'are': 2.0, 'hands': 1.0, 'the': 6.0, 'my': 2.0, 'infant': 1.0, 'daughter': 1.0, 'by': 2.0, 'add': 1.0, 'learning': 1.0, 'especially': 1.0, 'play': 1.0, 'and': 4.0, 'attention': 1.0, 'isolate': 1.0, 'motor': 1.0, 'fun': 1.0, 'skills': 1.0, 'level': 2.0, 'is': 2.0, 'was': 3.0, 'listen': 1.0, 'upcoming': 1.0, 'her': 3.0, 'different': 1.0, 'softer': 1.0, 'magic': 1.0, 'them': 1.0, 'back': 1.0, 'coordination': 1.0, 'rubber': 1.0, 'sides': 1.0, 'if': 2.0}
Word element => {'hit': 1.0, 'song': 1.0, 'rejoin': 1.0, 'or': 1.0, 'sound': 2.0, 'drum': 1.0, 'instance': 1.0, 'of': 1.0, 'was': 1.0, 'away': 1.0, 'now': 1.0, 'to': 2.0, 'at': 1.0, 'since': 1.0, 'intrigued': 1.0, 'makes': 1.0, 'old': 3.0, 'hits': 1.0, 'i': 2.0, 'six': 1.0, '14': 1.0, 'has': 1.0, 'he': 5.0, 'instrument': 1.0, 'this': 2.0, 'christmas': 1.0, 'it': 1.0, 'she': 1.0, 'mozart': 1.0, 'for': 3.0, 'is': 2.0, 'son': 2.0, 'months': 3.0, 'one': 2.0, 'bought': 2.0, 'thing': 1.0, 'about': 1.0, 'magic': 1.0, 'baby': 1.0, 'just': 1.0, 'in': 1.0, 'songs': 1.0, 'my': 4.0, 'another': 1.0, 'family': 1.0, 'house': 1.0, 'eight': 1.0, 'that': 1.0, 'loves': 1.0, 'quite': 1.0, 'smack': 1.0, 'the': 6.0, 'loved': 1.0, 'buttons': 2.0, 'make': 1.0, 'and': 2.0, 'play': 1.0, 'last': 1.0, 'different': 1.0, 'a': 1.0, 'go': 1.0, 's': 2.0, 'cube': 2.0, 'always': 1.0, 'piano': 1.0, 'when': 1.0}
Word element => {'down': 1.0, 'died': 1.0, 'each': 1.0, 'min': 1.0, '10': 1.0, 'day': 1.0, 'days': 1.0, 'used': 1.0, 'long': 1.0, 'last': 1.0, 'musical': 1.0, 'develop': 1.0, 'help': 1.0, 'show': 1.0, 'cons': 1.0, 'cube': 2.0, 'for': 3.0, 'liked': 1.0, 'played': 1.0, 'baby': 2.0, 'fussy': 1.0, 'mix': 1.0, 'very': 1.0, 'son': 1.0, 'best': 2.0, 'kind': 1.0, 'one': 2.0, 'bought': 1.0, 'believe': 1.0, 'the': 9.0, 'my': 2.0, 'old': 1.0, 'flute': 1.0, 'loved': 1.0, 'then': 1.0, 'final': 1.0, 'he': 3.0, 'i': 3.0, '4': 1.0, 'on': 1.0, 'will': 1.0, 'sounds': 1.0, 'it': 3.0, 'month': 1.0, 'is': 2.0, 'were': 1.0, 'that': 1.0, 'didn': 1.0, 'skills': 1.0, 'orchestra': 2.0, 'battery': 2.0, 'about': 2.0, 'thing': 1.0, 'piano': 1.0, 'when': 1.0, 'you': 1.0, 'but': 1.0, 'music': 3.0, 'can': 1.0, 'and': 3.0, 'play': 1.0, '30': 1.0, 'this': 3.0, 'instrument': 1.0, 'at': 1.0, 'we': 1.0, 't': 1.0, 's': 1.0, 'a': 1.0, 'time': 1.0, 'to': 1.0, 'of': 1.0}
Word element => {'instruments': 1.0, 'close': 1.0, 'very': 2.0, 'year': 1.0, 'not': 1.0, 'while': 1.0, 'it': 1.0, 'month': 1.0, 'loves': 1.0, 'her': 1.0, 'even': 1.0, 'actual': 1.0, 'to': 3.0, 'expecting': 1.0, 'was': 2.0, 'electronic': 1.0, 'lights': 1.0, 'right': 1.0, 'exactly': 1.0, 'music': 1.0, 'cube': 1.0, 'one': 1.0, 'my': 2.0, 'the': 3.0, 'have': 1.0, 'pick': 1.0, 'musical': 1.0, 'an': 1.0, 'surprised': 1.0, 'sounds': 1.0, 'will': 1.0, 'slightly': 1.0, 'robotic': 1.0, 'old': 2.0, 'pleasantly': 1.0, 'colors': 1.0, 'are': 1.0, 'engaging': 1.0, 'i': 2.0, '4': 1.0, 'two': 1.0, 'instrument': 1.0, 'this': 1.0, 'with': 1.0, 'sound': 2.0, 'up': 1.0, 'and': 3.0, 'play': 1.0}
Word element => {'by': 1.0, '1': 1.0, 'my': 1.0, 'amazed': 1.0, 'very': 1.0, 'seem': 1.0, 'even': 1.0, 'toy': 2.0, 'volume': 1.0, 'of': 1.0, 'liked': 1.0, 'have': 1.0, 'otherwise': 1.0, 'i': 2.0, 'reviewers': 1.0, 'other': 1.0, 'like': 1.0, 'toys': 1.0, 'control': 1.0, 'musical': 1.0, 'compared': 1.0, 'especially': 1.0, 'pleasure': 1.0, 'same': 1.0, '10': 2.0, 'mesmerized': 1.0, 'when': 1.0, 'surprise': 1.0, 'and': 2.0, 'play': 2.0, 'the': 6.0, 'can': 1.0, '2': 2.0, 'most': 1.0, 'music': 1.0, 'but': 2.0, 'batteries': 1.0, 'will': 1.0, 'last': 3.0, 'old': 4.0, '18': 1.0, 'to': 6.0, 'our': 2.0, 'real': 2.0, 'loved': 2.0, 'then': 1.0, 'christmas': 1.0, 'addition': 1.0, 'he': 2.0, 'year': 2.0, 'for': 5.0, 'bought': 1.0, 'be': 2.0, 'she': 1.0, 'it': 5.0, 'understatement': 1.0, 'month': 4.0, 'amazing': 1.0, 'something': 1.0, 'would': 2.0, 'discovered': 1.0, 'we': 1.0, 'a': 6.0, 'that': 2.0, 'loves': 1.0, 'with': 3.0, 'crawl': 1.0, 'is': 2.0, 'say': 1.0, 'around': 1.0, 'after': 1.0, 'perfect': 1.0, 'this': 2.0, '30': 1.0, 'listen': 1.0, 'was': 2.0, 'minutes': 1.0, 'at': 1.0, 'time': 2.0, 'baby': 2.0, 'long': 2.0}
Word element => {'instrument': 1.0, 'plays': 1.0, 'adorable': 1.0, 'toes': 1.0, 'fingers': 1.0, 'her': 1.0, 'recommend': 1.0, 'she': 2.0, 'i': 1.0, 'old': 1.0, 'musical': 1.0, 'highly': 1.0, 'toy': 2.0, 'months': 1.0, 'different': 1.0, '5': 1.0, 'half': 1.0, 'pushes': 1.0, 'a': 2.0, 'side': 1.0, 'is': 1.0, 'center': 1.0, 'grand': 1.0, 'and': 2.0, 'each': 2.0, 'our': 1.0, 'absolutely': 1.0, 'daughter': 1.0, 'square': 1.0, 'loves': 1.0, 'with': 1.0, 'this': 2.0, 'the': 1.0, 'of': 1.0}
Word element => {'great': 1.0, 'weeks': 1.0, 'which': 1.0, 'differentiate': 1.0, 'is': 1.0, 'nice': 1.0, 'and': 1.0, 'learned': 1.0, 'within': 1.0, 'wants': 1.0, 'sound': 2.0, 'one': 1.0, 'he': 1.0, 'sturdy': 1.0, 'has': 1.0, 'two': 1.0, 'yr': 1.0, 'to': 1.0, 'toy': 1.0, 'old': 1.0}
Word element => {'be': 1.0, 'can': 1.0, 'so': 1.0, 'like': 1.0, 'ups': 1.0, 'not': 1.0, 'wonderfully': 1.0, 'her': 1.0, 'annoying': 1.0, 'my': 1.0, 'of': 1.0, 'toys': 1.0, 'favorite': 1.0, 'has': 1.0, 'music': 2.0, 'been': 1.0, 'she': 1.0, 'toy': 1.0, 'baby': 1.0, 'to': 2.0, 'now': 1.0, 'grown': 1.0, 'the': 2.0, '2': 1.0, 'many': 1.0, 'is': 1.0, '5': 1.0, 'a': 2.0, 'since': 1.0, 'as': 1.0, 'and': 2.0, 'got': 1.0, 'this': 1.0, 'it': 1.0, 'soothing': 1.0, 'daughter': 1.0, 'engaging': 1.0}
Word element => {'toys': 1.0, 'some': 1.0, 'sound': 1.0, 'or': 1.0, 'quite': 1.0, 'button': 1.0, 'and': 2.0, 'each': 1.0, 'granddaughter': 1.0, 'was': 1.0, 'now': 1.0, 'are': 3.0, 'eight': 1.0, 'my': 1.0, 'the': 6.0, 'alone': 1.0, 'in': 1.0, 'age': 1.0, 'loves': 1.0, 'gave': 1.0, 'when': 1.0, 'seems': 1.0, 'sounds': 2.0, 'months': 2.0, 'this': 2.0, 'with': 2.0, 'of': 3.0, 'really': 1.0, 'is': 2.0, 'pleasing': 1.0, 'understand': 1.0, 'from': 1.0, 'functions': 1.0, 'buttons': 3.0, 'different': 3.0, 'her': 1.0, 'combination': 1.0, 'other': 1.0, 'i': 1.0, 'six': 1.0, 'old': 1.0, 'annoying': 1.0, 'she': 2.0, 'proficient': 1.0, 'as': 1.0, 'to': 2.0, 'all': 1.0, 'at': 1.0, 'not': 1.0, 'either': 1.0}
Word element => {'can': 1.0, 'drawback': 1.0, 'switch': 1.0, 'lights': 1.0, 'enjoys': 1.0, 'needs': 1.0, 'also': 1.0, 'instrument': 1.0, 'watching': 1.0, 'various': 1.0, 'panels': 1.0, 'and': 1.0, 'a': 1.0, 'see': 1.0, 'since': 1.0, 'toy': 1.0, 'i': 1.0, 'old': 1.0, 'musical': 1.0, 'loved': 1.0, 'pressing': 1.0, 'has': 1.0, 'by': 1.0, 'us': 1.0, 'daughter': 1.0, 'is': 1.0, 'herself': 1.0, 'month': 1.0, 'only': 1.0, 'this': 1.0, 'it': 2.0, 'we': 1.0, 'volume': 1.0, 'that': 1.0, 'our': 1.0, 'brought': 1.0, 'the': 4.0, '11': 1.0, 'day': 1.0, 'four': 1.0, 'months': 1.0, 'ago': 1.0, 'home': 1.0, 'she': 2.0, 'entertains': 1.0}
Word element => {'dances': 1.0, 'around': 1.0, 'the': 1.0, 'my': 1.0, 'mos': 1.0, 'loved': 1.0, 'music': 1.0, 'to': 1.0, 'old': 1.0, 'it': 3.0, '18': 1.0, 'granddaughter': 1.0, 'she': 1.0, 'figured': 1.0, 'carries': 1.0, 'out': 1.0, 'just': 1.0, 'immediately': 1.0}
Word element => {'than': 1.0, 'much': 1.0, 'for': 1.0, 'entertaining': 1.0, 'playing': 1.0, 'choose': 1.0, 'instruments': 1.0, 'child': 1.0, 'the': 3.0, 'to': 1.0, 'noisy': 1.0, 'can': 2.0, 'beautiful': 1.0, 'or': 1.0, 'plays': 1.0, 'also': 2.0, 'classical': 1.0, 'nicer': 1.0, 'it': 1.0, 'this': 1.0, 'adults': 1.0, 'have': 1.0, 'orchestra': 1.0, 'toys': 2.0, 'use': 1.0, 'which': 1.0, 'entire': 1.0, 'music': 1.0, 'pretty': 1.0, 'many': 1.0, 'is': 1.0}
Word element => {'nice': 1.0, 'toddler': 1.0, 'but': 1.0, 'lively': 1.0, 'also': 1.0, 'pieces': 1.0, 'muted': 1.0, 'are': 2.0, 'baby': 1.0, 'toy': 1.0, 'lovely': 1.0, 'colors': 1.0, 'his': 1.0, 'flinging': 1.0, 'babe': 1.0, 'the': 3.0, 'of': 1.0, 'extremely': 1.0, 'this': 1.0, 'it': 2.0, 'him': 1.0, 'maker': 1.0, 'easy': 1.0, 'music': 2.0, 'to': 1.0, 'has': 1.0, 'yet': 1.0, 'for': 2.0, 'crib': 1.0, 'little': 1.0, 'cub': 1.0, 'our': 1.0, 'operate': 1.0, 'interesting': 1.0, 'and': 3.0, 'from': 1.0, 'very': 2.0, 'adores': 1.0, 'episodes': 1.0, 'well': 1.0, 'made': 1.0, 'survived': 1.0, 'is': 1.0, 'many': 2.0}
Word element => {'am': 1.0, 'disappointed': 1.0, 'in': 1.0, 'music': 1.0, 'i': 1.0, 'old': 1.0, 'purchased': 1.0, 'product': 1.0, 'to': 1.0, 'son': 2.0, 'is': 1.0, 'uninterested': 1.0, 'loves': 1.0, 'gave': 1.0, 'and': 2.0, 'my': 2.0, 'because': 1.0, '16': 1.0, 'has': 1.0, 'month': 1.0, 'amazing': 1.0, 'this': 2.0, 'it': 2.0, 'he': 1.0, 'christmas': 1.0, 'reviews': 1.0, 'for': 1.0, 'completely': 1.0}
Word element => {'play': 1.0, 'on': 1.0, 'price': 1.0, 'laughs': 1.0, 'a': 1.0, 'at': 1.0, 'as': 1.0, 'and': 1.0, 'fun': 1.0, 'much': 1.0, 'here': 1.0, 'i': 3.0, 'baby': 2.0, 'pretty': 1.0, 'am': 1.0, 'so': 1.0, 'great': 1.0, 'it': 1.0, 'sure': 1.0, 'love': 1.0, 'more': 1.0, 'the': 1.0, 'than': 1.0}
Word element => {'end': 1.0, 'money': 1.0, 'much': 1.0, 'mentioned': 1.0, 'concise': 1.0, 'clear': 1.0, 'seem': 2.0, 'horn': 2.0, 'french': 2.0, 'discrepancy': 1.0, 'stars': 1.0, 'giving': 1.0, 'enjoys': 1.0, 'deal': 1.0, 'big': 1.0, 'care': 1.0, 'education': 1.0, 'music': 1.0, 'background': 1.0, 'had': 1.0, 'unless': 1.0, 'cases': 1.0, 'yet': 4.0, 'solid': 1.0, 'toys': 2.0, 'while': 2.0, 'violin': 1.0, 'months': 1.0, 'in': 7.0, 'pick': 1.0, 'then': 1.0, 'only': 2.0, 'son': 2.0, 'being': 1.0, 'differences': 1.0, 'himself': 1.0, 'fact': 1.0, 'what': 4.0, 'bad': 1.0, 'embryonics': 1.0, 'isn': 1.0, 'don': 2.0, 'hear': 3.0, 'listening': 1.0, 'sense': 1.0, 'sides': 1.0, 'makes': 1.0, 'made': 1.0, 'holds': 1.0, 'at': 2.0, 'instrument': 2.0, 'since': 1.0, 'honest': 1.0, 'problem': 1.0, 'have': 5.0, 'personally': 1.0, 'he': 6.0, 'lights': 1.0, 'but': 3.0, 'side': 1.0, 'doll': 1.0, 'sounds': 6.0, 'like': 6.0, 'contact': 1.0, 'by': 1.0, 'incredibly': 1.0, 'twice': 1.0, 'extremely': 1.0, 'brain': 1.0, 'most': 2.0, 'with': 4.0, 'tickle': 1.0, 'elitist': 2.0, 'sure': 1.0, 'listen': 1.0, 'could': 2.0, 'will': 1.0, 'adding': 1.0, 't': 7.0, 'a': 8.0, 'this': 8.0, 'colorful': 1.0, 'some': 3.0, 'oboe': 1.0, 'already': 1.0, 'away': 1.0, 'loud': 2.0, 'push': 2.0, 'weak': 1.0, 'you': 3.0, 'product': 4.0, 'remarkably': 1.0, 'for': 6.0, 'compared': 1.0, 'parents': 1.0, 'worth': 1.0, '4': 2.0, 'i': 14.0, 'example': 1.0, 'feet': 1.0, 'well': 2.0, 'really': 9.0, 'many': 1.0, 'people': 2.0, 'there': 1.0, 'represented': 1.0, 'longer': 1.0, 'the': 30.0, 'ultimately': 1.0, 'old': 1.0, 'even': 1.0, 'of': 10.0, 'me': 2.0, 'are': 2.0, 'my': 4.0, 'older': 1.0, 'elmo': 1.0, 'expected': 1.0, 'out': 1.0, 'strength': 1.0, 'included': 1.0, 'seems': 3.0, 'be': 5.0, 'it': 19.0, 'own': 1.0, 'see': 1.0, 'that': 11.0, 'because': 2.0, 'about': 3.0, 'play': 2.0, 'discern': 1.0, 'no': 1.0, 'they': 1.0, 'let': 1.0, 'these': 1.0, 'mile': 1.0, 'exists': 1.0, 'vs': 1.0, 'writing': 1.0, 'just': 2.0, 'and': 10.0, 'complaining': 1.0, 'turning': 1.0, 'suspiciously': 1.0, 'sound': 6.0, 'make': 2.0, 'batteries': 1.0, 'however': 2.0, 'fascination': 1.0, 'off': 2.0, 'kick': 1.0, 'far': 1.0, 'quality': 3.0, 'toy': 2.0, 'all': 1.0, 'create': 1.0, 'other': 4.0, 'to': 15.0, 'pretty': 1.0, 'close': 1.0, 'obnoxious': 1.0, 'cannot': 1.0, 'thing': 1.0, 'its': 1.0, 'noises': 1.0, 'were': 1.0, 'if': 5.0, 'is': 8.0, 'can': 3.0, 'turn': 1.0, 'very': 2.0, 'why': 1.0, 'enjoy': 2.0, 'course': 1.0, 'put': 1.0, 'buttons': 1.0, 'his': 2.0, 'on': 3.0, 's': 1.0, 'm': 1.0, 'doesn': 2.0, 'quite': 1.0, 'sounding': 1.0, 'enough': 2.0, 'would': 2.0, 'b': 1.0, 'almost': 1.0, 'kid': 2.0, 'complaint': 1.0, 'afraid': 1.0, 'item': 1.0, 'strong': 1.0, 'up': 3.0, 'came': 1.0, 'review': 1.0, 'installed': 1.0, 'option': 1.0, 'realize': 1.0, 'pushing': 1.0, '5': 1.0, 'one': 1.0, 'cube': 2.0, 'wouldn': 2.0, 'more': 1.0, 'or': 1.0, 'who': 1.0, 'from': 1.0, 'so': 6.0, 'cacophony': 1.0, 'also': 2.0, 'orchestra': 1.0, 'button': 2.0, 'turns': 1.0, 'particular': 1.0, 'than': 1.0, 'an': 1.0, 'instruments': 5.0, 'barely': 2.0, 'kind': 1.0, 'wish': 1.0, 'interested': 1.0, 'children': 1.0, 'expect': 1.0, 'lit': 2.0, 'as': 4.0, 'rooms': 1.0, 'perhaps': 1.0, 'anything': 1.0, 'matters': 1.0, 'should': 1.0, 'piano': 1.0, 'harpsichord': 1.0, 'construction': 1.0, 'am': 2.0, 'not': 4.0, 'different': 1.0, 'them': 1.0}
Word element => {'harsh': 1.0, 'rather': 1.0, 'quite': 1.0, 'd': 1.0, 'versatile': 1.0, 'as': 2.0, 'isn': 1.0, 'with': 1.0, 'again': 1.0, 'starts': 1.0, 'same': 2.0, 'limited': 1.0, 'is': 2.0, 'also': 1.0, 'sound': 1.0, 'stuck': 1.0, 'gets': 1.0, 'sometimes': 1.0, 'each': 1.0, 'though': 1.0, 'song': 1.0, 'toy': 1.0, 'pleasant': 1.0, 'music': 1.0, 'i': 1.0, 'old': 1.0, 'imagined': 1.0, 't': 1.0, 'the': 5.0, 'strike': 1.0, 'on': 1.0, 'piece': 1.0, 'over': 3.0, '7': 1.0, 'and': 1.0, 'to': 1.0, 'mo': 1.0, 'hit': 1.0, 'quality': 1.0, 'squares': 1.0, 'but': 1.0, 'just': 2.0, 'likes': 1.0}
Word element => {'i': 1.0, 'worry': 1.0, 'parts': 1.0, 'small': 1.0, 'about': 1.0, 'no': 1.0, 'are': 1.0, 'there': 1.0, 'manipulate': 1.0, 'using': 1.0, 'cube': 1.0, 'mozart': 1.0, 'for': 1.0, 'child': 1.0, 'sound': 1.0, 'him': 1.0, 'is': 2.0, 'highly': 1.0, 'really': 1.0, 'and': 3.0, '1': 1.0, 'very': 2.0, 'year': 1.0, 'the': 3.0, 'my': 1.0, 'change': 1.0, 'music': 1.0, 'better': 1.0, 'young': 1.0, 'old': 1.0, 'grandson': 1.0, 'he': 2.0, 'fond': 1.0, 'it': 1.0, 'of': 1.0, 'available': 1.0, 'already': 1.0, 'allows': 1.0, 'this': 3.0, 'doing': 1.0, 'to': 4.0, 'all': 1.0, 'different': 1.0, 'than': 1.0, 'combinations': 1.0, 'while': 1.0, 'on': 1.0, 'listening': 1.0, 'so': 1.0, 'recommend': 1.0, 'doesn': 1.0, 'much': 1.0, 'loves': 1.0, 'that': 1.0, 'get': 1.0, 'easy': 1.0, 't': 1.0, 's': 1.0, 'a': 1.0}
Word element => {'price': 1.0, 'a': 1.0, 'so': 2.0, 'does': 1.0, 'small': 1.0, 'my': 1.0, 'incredible': 1.0, 'me': 1.0, 'much': 1.0, 'toy': 1.0, 'to': 1.0, 'for': 1.0, 'daughter': 1.0, 'loves': 1.0, 'great': 1.0, 'it': 3.0, 'is': 1.0, 'that': 1.0}
Word element => {'from': 1.0, 'month': 1.0, '9': 1.0, 'it': 1.0, 'easy': 2.0, 'our': 1.0, 'and': 2.0, 'tunes': 1.0, 'esque': 1.0, 'enough': 1.0, '8': 1.0, 'for': 1.0, 'makes': 1.0, 'has': 1.0, 'keeps': 1.0, 'old': 1.0, 'to': 2.0, 'figure': 1.0, 'recognizable': 1.0, 'out': 1.0, 'sliding': 1.0, 'grip': 1.0, 'nice': 1.0, 'edging': 1.0, 'silicone': 1.0}
Word element => {'together': 1.0, 'a': 1.0, 'them': 1.0, 'also': 1.0, 'music': 1.0, 'old': 2.0, 'buttons': 1.0, 'to': 4.0, 'was': 1.0, 'enjoys': 1.0, 'chance': 1.0, 'cube': 1.0, 'one': 1.0, 'gives': 1.0, 'year': 2.0, 'son': 1.0, 'my': 2.0, 'the': 3.0, 'play': 3.0, 'it': 1.0, 'thrilled': 1.0, 'he': 1.0, 'with': 2.0, 'this': 1.0, 'sounds': 1.0, 'pushing': 1.0, 'hear': 1.0, 'likes': 1.0, 'all': 1.0, 'different': 1.0, '3': 1.0, 'plus': 1.0}
Word element => {'colors': 1.0, 'corners': 1.0, 'balls': 1.0, 'rubber': 1.0, 'the': 3.0, 'i': 1.0, 'now': 1.0, 'right': 1.0, 'maintained': 1.0, 'other': 1.0, 'not': 1.0, 'because': 1.0, 'interested': 1.0, 'so': 1.0, 'own': 1.0, 'on': 1.0, 'your': 1.0, 'has': 2.0, 'speak': 1.0, 'concept': 1.0, 'attention': 1.0, 'symphony': 1.0, 'present': 1.0, 'this': 1.0, 'christmas': 1.0, 's': 2.0, 'a': 2.0, 'bright': 2.0, 'and': 3.0, 'to': 1.0, 'was': 1.0, 'nice': 1.0, 'great': 1.0, 'is': 2.0, 'more': 1.0, 'one': 1.0, 'love': 1.0, 'for': 1.0, 'sturdy': 1.0, 'year': 1.0, 'very': 1.0, 'old': 1.0, 'daughter': 1.0, 'long': 1.0, 'music': 1.0, 'but': 1.0, 'that': 2.0, 'my': 1.0, 'may': 1.0, 'it': 3.0, 'she': 1.0, 'be': 1.0, 'there': 1.0, 'conducting': 1.0, 'are': 1.0, 'things': 1.0, 'in': 1.0}
Word element => {'pate': 1.0, 'carrying': 1.0, 'thank': 1.0, 'favorite': 1.0, 'with': 1.0, 'crib': 1.0, 'his': 2.0, 'now': 1.0, 'bigger': 1.0, 'even': 1.0, 'an': 1.0, 'turned': 1.0, 'have': 1.0, 'must': 1.0, 'up': 1.0, 'picked': 1.0, 'immediately': 1.0, 'received': 1.0, 'he': 3.0, 'stays': 1.0, 'presents': 1.0, 'christmas': 1.0, 'tunes': 1.0, 'this': 2.0, 'debby': 1.0, 'it': 3.0, 'mozart': 1.0, 'cube': 1.0, 'product': 1.0, 'for': 4.0, 'com': 1.0, 'reviews': 1.0, 'was': 2.0, 'smile': 1.0, 'to': 4.0, 'magic': 1.0, 'my': 2.0, 'in': 1.0, 'posted': 1.0, 'classical': 1.0, 'songs': 1.0, 'grandson': 1.0, 'present': 1.0, 'loves': 1.0, 'or': 1.0, 'while': 1.0, 'then': 1.0, 'religious': 1.0, 'can': 1.0, 'music': 2.0, 'smiled': 1.0, 'amazon': 2.0, 'shopping': 1.0, 'ran': 1.0, 'on': 2.0, 'listening': 1.0, 'so': 2.0, 'either': 1.0, 'purchased': 1.0, 'i': 5.0, 'you': 1.0, 'when': 2.0, 'daughter': 1.0, 'asleep': 2.0, 'the': 7.0, 'colors': 2.0, 'price': 1.0, 'listened': 1.0, 'across': 1.0, 'and': 3.0, 'read': 1.0, 'fall': 2.0, 'acceptable': 1.0, 'liked': 2.0, 'opened': 1.0, 'him': 3.0}
Word element => {'sound': 1.0, 'music': 1.0, 'really': 1.0, 'but': 1.0, 'students': 1.0, 'like': 1.0, 'working': 1.0, 'item': 1.0, 'with': 1.0, 'this': 1.0, 'have': 1.0, 'especially': 1.0, 'individual': 1.0, 'preschoolers': 1.0, 'interments': 1.0, 'm': 1.0, 'when': 1.0, 'i': 4.0, 'those': 1.0, 'to': 2.0, 'who': 1.0, 'are': 1.0, 'multi': 1.0, 'use': 1.0, 'disabled': 1.0, 'the': 1.0, 'assist': 1.0, 'them': 1.0, 'push': 1.0}
Word element => {'control': 1.0, 'volum': 1.0, 'there': 1.0, 'them': 1.0, 'replace': 1.0, 'batteries': 1.0, 'bigger': 1.0, 'together': 1.0, 'have': 2.0, 'during': 1.0, 'themselves': 1.0, 'off': 1.0, 'or': 3.0, 'but': 1.0, 'can': 2.0, 'by': 1.0, 'just': 1.0, 'ones': 1.0, 'horn': 1.0, 'only': 2.0, 'certain': 1.0, 'it': 5.0, 'with': 1.0, 'in': 1.0, 'settings': 1.0, 'songs': 1.0, 'wouldn': 1.0, 'orchestra': 1.0, 'didn': 1.0, 'often': 1.0, 'my': 2.0, 'push': 2.0, 'now': 1.0, 'was': 2.0, 'dance': 1.0, 'to': 6.0, 'great': 1.0, 'until': 1.0, 'loves': 2.0, 'son': 2.0, 'french': 1.0, 'from': 1.0, 'on': 1.0, '3': 1.0, 'he': 7.0, 'received': 1.0, 'room': 2.0, 'the': 4.0, 'although': 1.0, 'old': 3.0, 'two': 1.0, 'become': 1.0, 'i': 3.0, 'has': 2.0, 'toy': 2.0, 'whole': 1.0, 'about': 3.0, 'so': 2.0, 'interest': 1.0, '8': 1.0, 'a': 1.0, 't': 2.0, 's': 2.0, 'months': 3.0, '18': 1.0, 'wish': 1.0, 'this': 2.0, 'carries': 1.0, 'is': 1.0, 'around': 1.0, 'him': 1.0, 'wherever': 1.0, 'piano': 1.0, 'you': 1.0, 'when': 1.0, 'am': 1.0, 'and': 3.0, 'play': 3.0, 'song': 1.0, 'symphony': 1.0, 'for': 1.0, 'those': 1.0, 'me': 1.0, 'took': 1.0, 'buttons': 2.0, 'plays': 1.0, '7': 1.0, 'different': 1.0}
Word element => {'on': 1.0, 'just': 1.0, 'music': 1.0, 'adding': 1.0, 'cube': 1.0, 'cake': 1.0, 'son': 1.0, 'he': 1.0, 'with': 2.0, 'anything': 1.0, 'is': 2.0, 'loves': 1.0, 'lights': 1.0, 'experiments': 1.0, 'old': 1.0, 'his': 1.0, 'buttons': 1.0, 'icing': 1.0, 'month': 1.0, '18': 1.0, 'my': 1.0, 'the': 2.0, 'different': 1.0, 'instruments': 1.0, 'so': 1.0, 'and': 2.0, 'tunes': 1.0, 'a': 1.0, 'hit': 1.0}
Word element => {'off': 1.0, 't': 1.0, 'son': 1.0, 'month': 1.0, 'my': 1.0, '18': 1.0, 'complains': 1.0, 'just': 1.0, 'but': 1.0, 'doesn': 1.0, 'old': 1.0, 'much': 1.0, 'to': 1.0, 'neat': 1.0, 's': 1.0, 'actually': 1.0, 'turn': 1.0, 'sometimes': 1.0, 'about': 1.0, 'like': 1.0, 'me': 1.0, 'and': 1.0, 'it': 4.0, 'he': 1.0, 'wants': 1.0}
Word element => {'nice': 1.0, 'different': 1.0, 'something': 1.0}
Word element => {'wakes': 1.0, 'singing': 1.0, 'up': 1.0, 'and': 1.0, 'of': 1.0, 'grab': 1.0, 'because': 1.0, 'baby': 1.0, 'she': 1.0, 'best': 1.0, 'there': 1.0, 'is': 1.0, '6': 1.0, 'to': 1.0, 'toy': 1.0, 'old': 1.0, 'loves': 2.0, 'month': 1.0, 'it': 3.0}
Word element => {'made': 1.0, 'glad': 1.0, 'm': 1.0, 'with': 1.0, 'see': 1.0, 'interesting': 1.0, 'be': 1.0, 'next': 1.0, 'then': 1.0, 'up': 1.0, 'back': 1.0, 'until': 1.0, 'evolves': 1.0, 'tracks': 1.0, 'house': 1.0, 'off': 2.0, 'falls': 1.0, 'again': 1.0, 'when': 1.0, 'couple': 1.0, 's': 1.0, 'a': 2.0, 'son': 1.0, 'stops': 1.0, '5': 1.0, 'or': 1.0, 'spends': 1.0, 'reading': 1.0, 'of': 5.0, 'this': 3.0, 'how': 1.0, 'wonder': 1.0, 'he': 5.0, 'reviews': 1.0, 'several': 1.0, 'everyday': 1.0, 'i': 4.0, 'old': 1.0, 'pick': 1.0, 'touch': 1.0, 'it': 5.0, 'month': 1.0, 'toy': 2.0, 'either': 1.0, 'purchased': 1.0, 'hours': 1.0, 'for': 1.0, 'always': 1.0, 'cube': 3.0, 'after': 1.0, 'fixture': 1.0, 'in': 2.0, 'cries': 1.0, 'his': 5.0, 'walker': 2.0, 'wife': 1.0, 'while': 1.0, 'magic': 1.0, 'purchase': 1.0, 'my': 2.0, 'rooms': 1.0, 'interaction': 1.0, 'around': 1.0, 'is': 1.0, 'tray': 2.0, 'put': 1.0, 'make': 1.0, 'on': 3.0, 'the': 8.0, 'scooter': 1.0, 'investigating': 1.0, 'to': 2.0, 'scooting': 1.0, 'as': 1.0, 'all': 1.0, 'will': 2.0, 'instruments': 1.0, 'and': 3.0, 'play': 1.0}
Word element => {'recommend': 1.0, 'don': 1.0, 'and': 1.0, 'i': 1.0, 'old': 1.0, 'package': 1.0, 'improper': 1.0, 'of': 1.0, 'because': 1.0, 'be': 2.0, 'long': 2.0, 'used': 3.0, 'anyone': 1.0, 'seems': 2.0, 'item': 1.0, 'a': 3.0, 'time': 2.0, 'one': 1.0, 'for': 2.0, 'received': 1.0, 'new': 1.0, 'condition': 1.0, 'outward': 1.0, 'now': 1.0, 'to': 3.0, 'its': 2.0, 'was': 1.0, 'bad': 1.0, 'as': 1.0, 'if': 2.0, 'this': 1.0, 'it': 3.0, 'that': 1.0, 'were': 1.0, 's': 1.0, 't': 1.0, 'the': 1.0}
Word element => {'toy': 1.0, 'also': 1.0, 'it': 2.0, 'this': 2.0, 'only': 1.0, 'little': 1.0, 'than': 1.0, 'instruments': 1.0, 'easy': 1.0, 'music': 1.0, 'old': 1.0, 'i': 1.0, 'different': 1.0, 'good': 1.0, 'and': 2.0, 'must': 1.0, 'son': 1.0, 'year': 1.0, '1': 1.0, 'big': 1.0, 'is': 4.0, 'baby': 1.0, 'don': 1.0, 'the': 3.0, 's': 2.0, 'a': 2.0, 't': 1.0, 'my': 1.0, 'push': 1.0, 'one': 1.0, 'your': 1.0, 'all': 1.0, 'any': 1.0, 'to': 1.0, 'buttons': 1.0, 'like': 1.0, 'for': 2.0, 'product': 1.0, 'loves': 1.0, 'that': 2.0, 'volume': 1.0, 'there': 1.0, 'thing': 1.0, 'about': 1.0, 'no': 1.0, 'control': 1.0, 'solid': 1.0, 'other': 1.0}
Word element => {'us': 1.0, 'lift': 1.0, 'now': 1.0, 'strong': 2.0, 'started': 1.0, 'early': 1.0, 'christmas': 1.0, 'this': 1.0, 'first': 1.0, 'she': 7.0, 'it': 8.0, 'with': 1.0, 'months': 3.0, 'play': 1.0, 'too': 1.0, 'figures': 1.0, 'daughter': 1.0, 'was': 1.0, 'all': 1.0, 'to': 5.0, 'at': 2.0, 'my': 1.0, 'push': 1.0, 'like': 1.0, 'which': 1.0, 'for': 1.0, 'hands': 1.0, 'the': 5.0, 'liking': 1.0, 'gave': 1.0, 'loves': 1.0, 'or': 1.0, 's': 1.0, 't': 2.0, 'we': 1.0, 'her': 1.0, 'works': 1.0, 'enough': 2.0, 'more': 2.0, 'around': 1.0, 'button': 1.0, 'plays': 1.0, 'herself': 1.0, 'really': 1.0, 'time': 1.0, 'so': 3.0, 'didn': 1.0, '8': 1.0, 'toy': 1.0, 'likes': 1.0, 'wasn': 1.0, 'out': 1.0, '6': 1.0, 'how': 1.0, '11': 1.0}
Word element => {'sounds': 1.0, 'instrumental': 1.0, 'different': 1.0, 'what': 1.0, 'myself': 1.0, 'couldn': 1.0, 'to': 1.0, 'was': 1.0, 'gift': 1.0, 'song': 1.0, 'playing': 1.0, 'i': 1.0, 'or': 1.0, 'children': 1.0, 'it': 3.0, 'a': 2.0, 'for': 1.0, 'love': 1.0, 'using': 1.0, 'but': 1.0, 'while': 1.0, 'instruments': 1.0, 'totally': 1.0, 'show': 1.0, 'add': 1.0, 'stop': 1.0, 'great': 1.0, 't': 1.0, 'the': 2.0, 'keeps': 1.0, 'way': 1.0, 'you': 1.0, 'subtract': 1.0}
Word element => {'birthday': 2.0, 'will': 1.0, 'music': 1.0, 'but': 1.0, 'did': 1.0, 'so': 1.0, 'm': 1.0, 'daughter': 1.0, 'by': 1.0, 'instrumental': 1.0, 'i': 3.0, 'and': 2.0, 'me': 1.0, 'musically': 1.0, 'of': 3.0, 'the': 3.0, 'truly': 1.0, 'it': 1.0, 'incorporate': 1.0, 'this': 3.0, 'glad': 1.0, 'present': 1.0, 'sure': 1.0, 'reviews': 1.0, 'be': 1.0, 'toys': 1.0, 'wanted': 1.0, 'to': 3.0, 'all': 1.0, 'have': 2.0, 'encouraged': 1.0, 'product': 1.0, 'for': 2.0, 'purchase': 1.0, 'my': 1.0, 'way': 1.0, 'toy': 1.0, 'won': 1.0, 'her': 2.0, 'who': 1.0, '1st': 1.0, 'great': 2.0, 'until': 1.0, 'november': 1.0, 'elements': 1.0, 'is': 1.0, 'make': 1.0, 'that': 1.0, 'a': 2.0, 't': 1.0, 'we': 1.0, 'educational': 2.0, 'very': 1.0}
Word element => {'or': 1.0, 'll': 1.0, 'bit': 1.0, 'although': 1.0, 'song': 1.0, 'those': 1.0, 'combination': 1.0, 'parts': 2.0, 'do': 1.0, 'much': 2.0, 'horn': 1.0, 'each': 1.0, 'songs': 1.0, 'm': 1.0, 'numerous': 1.0, 'are': 1.0, 'there': 1.0, 'more': 1.0, 'is': 1.0, 'software': 1.0, 'flute': 1.0, 'old': 2.0, 'for': 1.0, 'cheap': 1.0, 'i': 3.0, '4': 1.0, 'studied': 1.0, 'french': 1.0, 'from': 2.0, 'who': 1.0, 'great': 1.0, 'any': 2.0, 'as': 2.0, 'to': 2.0, 'you': 1.0, 'piano': 1.0, 'harp': 1.0, 'fantastic': 1.0, 'idea': 1.0, 'someone': 1.0, 'thrilled': 1.0, 'with': 3.0, 'age': 1.0, 'toy': 1.0, 'has': 1.0, 'violin': 1.0, 'isn': 1.0, 'on': 1.0, 'think': 1.0, 'your': 1.0, 'of': 3.0, 'enjoy': 1.0, 'daughter': 1.0, 'can': 1.0, 'but': 1.0, 'music': 1.0, 'four': 2.0, 'she': 1.0, 'it': 4.0, 'month': 2.0, 'play': 1.0, 'and': 3.0, 'spent': 1.0, 'this': 1.0, '30': 1.0, 'listen': 1.0, 'was': 1.0, 'father': 1.0, 'minutes': 1.0, 'the': 4.0, 'playing': 1.0, 'myself': 1.0, 'over': 1.0, 'sound': 1.0, 'quality': 1.0, 't': 1.0, 'a': 3.0, 's': 2.0, 'true': 1.0, 'midi': 1.0, 'sure': 1.0, 'instruments': 1.0, 'than': 1.0, 'standard': 1.0, 'composition': 1.0}
Word element => {'musical': 1.0, 'combining': 1.0, 'experiment': 1.0, 'can': 1.0, 'different': 1.0, 'of': 1.0, 'she': 1.0, 'becomes': 1.0, 'child': 1.0, 'and': 2.0, 'very': 1.0, 'as': 1.0, 'various': 1.0, 'small': 1.0, 'aware': 1.0, 'more': 1.0, 'the': 1.0, 'an': 1.0, 'to': 1.0, 's': 1.0, 'instruments': 1.0, 'versatile': 1.0, 'is': 1.0, 'a': 1.0, 'he': 1.0, 'noises': 1.0, 'it': 1.0, 'with': 2.0, 'this': 1.0, 'simple': 1.0, 'play': 1.0, 'enough': 1.0, 'for': 1.0, 'infant': 1.0, 'toy': 1.0, 'ages': 1.0, 'then': 1.0}
Word element => {'he': 1.0, 'just': 1.0, 'very': 1.0, 'blanket': 1.0, 'security': 1.0, 'orchestra': 1.0, '8': 1.0, 'especially': 1.0, 'ways': 1.0, 'nephew': 1.0, 'loves': 2.0, 'amazing': 1.0, 'is': 2.0, 'happier': 1.0, 'be': 2.0, 'couldn': 1.0, 'new': 1.0, 'old': 1.0, 'brand': 1.0, 'much': 1.0, 'its': 2.0, 'along': 1.0, 'alcohol': 1.0, 'buying': 1.0, 'with': 1.0, 'will': 1.0, 'batteries': 1.0, 'cleaned': 1.0, 'removed': 1.0, 'song': 1.0, 'broke': 1.0, 'thought': 1.0, 'this': 3.0, 'month': 1.0, 'it': 8.0, 'she': 5.0, 'store': 2.0, 'because': 2.0, 'not': 1.0, 'like': 1.0, 'refused': 1.0, '18': 1.0, 'now': 1.0, 'to': 1.0, 'dropped': 1.0, 'i': 6.0, 'one': 1.0, 'months': 1.0, 'bought': 3.0, 'another': 1.0, 'my': 2.0, 'high': 1.0, 'saw': 1.0, 'then': 1.0, 'whos': 1.0, 'since': 1.0, 'bucks': 1.0, 'in': 2.0, 'for': 2.0, 'hearing': 1.0, 'from': 2.0, 'daughter': 1.0, 'and': 6.0, 'parted': 1.0, 'let': 1.0, 'year': 1.0, 'spent': 1.0, 'sing': 1.0, 't': 1.0, 'we': 1.0, 'a': 2.0, 'go': 1.0, 'once': 1.0, 'of': 2.0, 'the': 6.0, 'but': 1.0, 'music': 1.0, 'am': 1.0, 'glad': 1.0, 'instead': 1.0, 'chair': 1.0, '20': 1.0, 'out': 1.0, 'recommended': 1.0, 'jus': 1.0, 'well': 1.0, 'toy': 4.0, 'has': 1.0, '1': 1.0, 'until': 1.0, 'different': 1.0, 'her': 2.0}
Word element => {'entertained': 1.0, 'them': 1.0, 'so': 1.0, 'much': 1.0, 'keep': 1.0, 'music': 2.0, 'lights': 1.0, 'to': 1.0, 'that': 1.0, 'kids': 1.0, 'they': 1.0, 'my': 2.0, 'started': 1.0, 'the': 2.0, 'i': 1.0, 'or': 1.0, 'love': 2.0, 'cube': 1.0, 'for': 1.0, 'it': 1.0, 'this': 2.0, 'children': 1.0, 'product': 1.0, 'friends': 1.0, 'get': 1.0, 'and': 1.0, 'babies': 1.0}
Word element => {'value': 1.0, 'play': 1.0, 'recommend': 1.0, 'highly': 1.0, 'toys': 1.0, 'favorite': 1.0, 'grandson': 1.0, 'received': 1.0, 'his': 2.0, 'eli': 1.0, 'us': 1.0, 'i': 1.0, 'old': 1.0, 'from': 1.0, 'year': 1.0, 'one': 1.0, 'for': 1.0, 'playing': 1.0, 'its': 1.0, 'turned': 1.0, 'my': 1.0, 'just': 1.0, 'started': 1.0, 'birthday': 1.0, 'and': 1.0, 'this': 1.0, 'with': 1.0, 'it': 2.0, 's': 1.0, 'immediately': 1.0, 'of': 1.0}
Word element => {'toddlers': 1.0, 'babies': 1.0, 'classic': 1.0, 'really': 1.0, 'daughter': 1.0, '4': 1.0, 'abuse': 1.0, 'lots': 1.0, 'from': 1.0, 'of': 2.0, 'boy': 1.0, 'he': 3.0, 'with': 2.0, 'it': 4.0, 'month': 1.0, 'few': 1.0, 'very': 1.0, 'little': 1.0, 'take': 1.0, 'mozart': 1.0, 'always': 1.0, 'cube': 1.0, 'one': 1.0, 'for': 3.0, 'busy': 1.0, 'year': 1.0, 'awesome': 1.0, 'hit': 1.0, 'the': 3.0, 'magic': 1.0, 'as': 1.0, 'to': 2.0, 'my': 2.0, 'young': 1.0, 'old': 2.0, 'toys': 1.0, '15': 1.0, 's': 1.0, 'a': 2.0, 'an': 1.0, 'also': 1.0, 'will': 2.0, 'well': 1.0, 'has': 1.0, 'toy': 1.0, 'age': 1.0, 'stop': 1.0, 'play': 2.0, 'and': 3.0, 'can': 1.0, 'music': 1.0, 'like': 1.0, 'various': 1.0, 'have': 1.0, 'must': 1.0, 'small': 1.0, 'loved': 1.0, 'buttons': 1.0, 'enough': 1.0, 'is': 2.0, 'around': 1.0, 'him': 1.0, 'carry': 1.0}
Word element => {'them': 1.0, 'way': 1.0, 'be': 1.0, 'seems': 1.0, 'there': 2.0, 'hope': 1.0, 'are': 1.0, 'where': 1.0, 'just': 1.0, 'corners': 1.0, 'though': 1.0, 'packaging': 1.0, 'chew': 1.0, 'use': 1.0, 'gets': 1.0, 'noise': 1.0, '5': 1.0, 'five': 1.0, 'make': 1.0, 'on': 1.0, 'music': 1.0, 'four': 1.0, 'likes': 1.0, 'toy': 6.0, 'kinds': 1.0, 'difficult': 1.0, 'loves': 1.0, 'into': 1.0, 'is': 4.0, 'old': 1.0, 'because': 1.0, 'that': 2.0, 'young': 1.0, 'now': 1.0, 'older': 1.0, 'to': 10.0, 'as': 1.0, 'this': 3.0, 'it': 2.0, 'month': 1.0, 'remove': 2.0, 'different': 1.0, 'sounds': 2.0, '4': 1.0, 'i': 1.0, 'for': 1.0, 'colors': 1.0, 'stars': 1.0, 'actually': 1.0, 'babies': 1.0, 'cube': 2.0, 'about': 2.0, 'she': 3.0, 'baby': 1.0, 'my': 1.0, 'uncoordinated': 1.0, 'eventually': 1.0, 'playing': 1.0, 'very': 4.0, 'get': 1.0, 'easy': 1.0, 'and': 8.0, 'learn': 1.0, 'stay': 1.0, 'still': 1.0, 'buttons': 1.0, 'no': 1.0, 'press': 1.0, 'activate': 1.0, 'can': 2.0, 'so': 1.0, 'of': 4.0, 'the': 12.0, 'delighted': 1.0, 'whenever': 1.0, 'am': 1.0, 'maybe': 1.0, 'giving': 1.0, 'even': 1.0, 'instead': 1.0, 'impossible': 1.0, 'secured': 1.0, 'scratches': 1.0, 'eyes': 1.0, 'its': 1.0, 'raw': 1.0, 'with': 1.0, 'wire': 1.0, 'plastic': 2.0, 'like': 1.0, 'pieces': 2.0, 'protrude': 1.0, 'from': 2.0, 'these': 1.0, 'entirely': 2.0, 'presents': 1.0, 'a': 1.0, 'then': 1.0, 'we': 2.0, 'danger': 1.0, 'poked': 1.0, 'had': 1.0, 'they': 2.0, 'cut': 1.0, 'ties': 1.0, 'close': 1.0, 'starts': 1.0, 'push': 1.0, 'ends': 1.0}
Word element => {'enjoy': 1.0, 'they': 1.0, 'positive': 1.0, 'because': 1.0, 'other': 1.0, 'i': 2.0, 'damaged': 1.0, 'not': 1.0, 'am': 2.0, 'times': 1.0, 'several': 1.0, 'dancing': 2.0, 'him': 1.0, 'buying': 1.0, 'with': 1.0, 'first': 1.0, 'it': 8.0, 'stopped': 1.0, 'he': 5.0, 'started': 1.0, 'a': 1.0, 'going': 1.0, 't': 1.0, 'my': 1.0, 'and': 5.0, 'son': 1.0, 'the': 3.0, 'reach': 1.0, 'playing': 1.0, 'for': 4.0, 'was': 2.0, 'music': 2.0, 'thrown': 1.0, 'if': 1.0, 'babies': 1.0, 'that': 1.0, 'loves': 1.0, 'gift': 1.0, 'birthday': 1.0, 'his': 1.0, 'got': 1.0, 'even': 1.0, 'toy': 1.0, 'has': 2.0, 'as': 1.0, 'to': 4.0, 'all': 1.0, 'would': 1.0, 'songs': 1.0, 'nearby': 1.0, 'figure': 1.0, 'out': 2.0, 'of': 1.0, 'cube': 1.0, 'always': 1.0, 'also': 1.0, 'will': 1.0, 'hasn': 1.0, 'point': 1.0, 'toddlers': 1.0, 'at': 1.0, 'start': 2.0, 'so': 2.0, 'easy': 1.0, 'this': 2.0, 'carries': 1.0, 'is': 1.0, 'around': 1.0, 'room': 2.0}
Word element => {'with': 1.0, '8': 1.0, 'enjoy': 1.0, 'grandchildren': 1.0, 'from': 2.0, 'rain': 1.0, 'in': 1.0, 'spending': 1.0, 'new': 1.0, 'like': 1.0, 'continue': 1.0, 'works': 1.0, 'still': 1.0, 'making': 1.0, 'and': 3.0, 'us': 1.0, 'surprised': 1.0, 'little': 1.0, 'even': 1.0, 'didn': 1.0, 'of': 4.0, 'music': 1.0, 'past': 1.0, 'contingent': 1.0, 'home': 1.0, 'abuse': 1.0, 'ones': 1.0, 'playing': 1.0, 'the': 7.0, 'at': 1.0, 'no': 1.0, 'left': 1.0, 'summer': 1.0, 'looks': 1.0, 'it': 7.0, 'large': 1.0, 'few': 1.0, 'grandkids': 1.0, 'kids': 1.0, 'this': 2.0, 'found': 1.0, 'mozart': 1.0, 'cube': 2.0, 'for': 1.0, 'i': 3.0, 'months': 1.0, 'one': 1.0, 'bought': 1.0, 'thought': 1.0, '3': 2.0, 'completely': 1.0, 'finished': 1.0, 'young': 1.0, 'toybox': 1.0, 'night': 1.0, 'started': 1.0, 'magic': 1.0, 'was': 2.0, 'years': 3.0, 'day': 1.0, 'to': 2.0, 'our': 2.0, 'outside': 1.0, 'as': 1.0, 'why': 1.0, 'course': 1.0, 'silent': 1.0, 'a': 3.0, 't': 1.0, 'ago': 1.0, 'we': 2.0, 'babies': 1.0, 'rained': 1.0, 'next': 1.0, 'have': 1.0, 'again': 1.0, 'when': 1.0, 'idea': 1.0, 'throw': 1.0, 'out': 1.0, 'after': 3.0}
Word element => {'enjoy': 1.0, 'worth': 1.0, 'stars': 1.0, '5': 1.0, 'play': 1.0, 'give': 1.0, 'instruments': 1.0, 'various': 1.0, 'can': 1.0, 'way': 1.0, 'choose': 1.0, 'munchkin': 1.0, 'the': 5.0, 'was': 1.0, 'to': 1.0, 'magic': 1.0, 'my': 2.0, 'and': 2.0, 'up': 1.0, 'grandma': 1.0, 'purchased': 1.0, 'music': 1.0, 'm': 1.0, 'precious': 1.0, 'i': 4.0, 'grandbaby': 2.0, 'beautiful': 1.0, 'this': 1.0, 'it': 2.0, 'purchasing': 1.0, 'melody': 1.0, 'for': 1.0, 'cube': 1.0, 'mozart': 1.0, 'love': 1.0, 'is': 2.0, 'bright': 1.0, 'light': 1.0, 'toy': 1.0, 'colors': 1.0}
Word element => {'flashing': 1.0, 'colorsand': 1.0, 'bright': 1.0, 'sound': 1.0, 'lights': 1.0, 'this': 1.0, 'advertised': 1.0, 'just': 1.0, 'perfect': 1.0, 'withlovely': 1.0, 'forlittle': 1.0, 'was': 1.0, 'fingers': 1.0, 'toy': 1.0, 'and': 1.0, 'quality': 1.0, 'as': 1.0, 'quite': 1.0, 'nice': 1.0}
Word element => {'fun': 1.0, 'good': 2.0, 'or': 1.0, 'option': 1.0, 'liked': 1.0, '39': 1.0, 'their': 1.0, 'instruments': 2.0, 'the': 3.0, 'of': 2.0, 'understanding': 1.0, 'mix': 1.0, 'a': 1.0, 'to': 2.0, 'old': 1.0, 'dad': 1.0, 'toy': 1.0, 'dances': 1.0, 'grandson': 1.0, 'subtracting': 1.0, 'play': 1.0, 'month': 1.0, '9': 1.0, 'my': 1.0, 'greater': 1.0, 'this': 1.0, 'it': 2.0, 'with': 2.0, 'adding': 1.0, 'having': 1.0, 'tunes': 1.0, 'smiles': 1.0, 'all': 1.0, 'over': 1.0, 'his': 1.0, 'too': 1.0, 'from': 1.0, '11': 1.0, 'brother': 1.0, 'big': 1.0, 'loved': 1.0, 'wants': 1.0}
Word element => {'highly': 1.0, 'cribs': 1.0, 'their': 1.0, 'stepping': 1.0, 'you': 1.0, 'if': 1.0, 'setting': 1.0, 'cube': 2.0, 'with': 1.0, 'fun': 1.0, 'many': 1.0, 'have': 2.0, 'complaint': 1.0, 'll': 1.0, 'out': 2.0, 'figures': 1.0, 'so': 1.0, 'pleasant': 1.0, 'he': 4.0, 'this': 2.0, 'it': 3.0, 'infant': 1.0, 'my': 2.0, 'more': 1.0, 'is': 3.0, 'like': 1.0, 'transitional': 1.0, 'orchestra': 1.0, 'climb': 1.0, 'who': 1.0, 'toddlers': 1.0, 'since': 1.0, 'at': 2.0, 'recommend': 1.0, 'was': 1.0, 'word': 1.0, 'as': 1.0, 'to': 4.0, 'look': 1.0, 'stool': 1.0, 'had': 1.0, 'love': 1.0, 'for': 1.0, 'caution': 1.0, 'lights': 1.0, 've': 1.0, 'liked': 1.0, 'volume': 1.0, 'yet': 1.0, 'an': 1.0, 'climber': 1.0, 'only': 2.0, 'tiny': 1.0, 'has': 1.0, 'toy': 2.0, 'don': 1.0, 'great': 2.0, 'the': 8.0, 'a': 3.0, 'we': 3.0, 't': 1.0, 'and': 3.0, '18': 1.0, 'one': 2.0, 'months': 2.0, 'music': 4.0, 'that': 2.0, 'loves': 1.0, 'think': 1.0, 'pressing': 1.0, 'concept': 1.0, 'buttons': 1.0, 'adding': 1.0, 'i': 1.0, 'colors': 1.0, 'fully': 1.0, 'son': 1.0, 'dances': 1.0, 'gets': 1.0, 'once': 1.0, 'of': 4.0, 'makes': 1.0, 'removing': 1.0, 'instruments': 1.0}
Word element => {'song': 1.0, 'of': 1.0, 'the': 1.0, 'my': 1.0, 'each': 1.0, 'up': 1.0, 'and': 1.0, 'son': 1.0, 'i': 1.0, 'great': 1.0, 'tune': 1.0, 'it': 1.0, 'to': 1.0, 'toy': 2.0, 'so': 1.0, 'do': 1.0, 'loves': 1.0, 'this': 1.0, 'lights': 1.0}
Word element => {'much': 1.0, 'very': 1.0, 'it': 1.0, 'like': 1.0}
Word element => {'could': 1.0, 'wish': 1.0, 'just': 1.0, 'volume': 1.0, 'it': 1.0, 'love': 1.0, 'sometimes': 1.0, 'also': 1.0, 'i': 3.0, 'sits': 1.0, 'dancing': 1.0, 'my': 1.0, 'the': 2.0, 'loves': 1.0, 'this': 1.0, 'adjust': 1.0, 'she': 1.0, 'to': 1.0, 'music': 1.0, 'daugther': 1.0, 'there': 1.0}
Word element => {'love': 1.0, 'harpsichord': 1.0, 'me': 1.0, 'first': 1.0, 'with': 2.0, 'went': 1.0, 'face': 1.0, 'however': 1.0, 'time': 1.0, 'her': 3.0, 'different': 1.0, 'room': 1.0, 'and': 3.0, 'responded': 1.0, 'play': 1.0, 'gets': 1.0, 'recognizing': 1.0, 'obviously': 1.0, 'music': 3.0, 'on': 3.0, 'constantly': 2.0, 'will': 1.0, 'could': 1.0, 'a': 4.0, 's': 1.0, 'we': 3.0, 'source': 1.0, 'in': 2.0, 'age': 1.0, 'our': 1.0, 'to': 8.0, 'as': 3.0, 'friend': 1.0, 'herself': 1.0, 'given': 1.0, 'always': 2.0, 'mozart': 2.0, 'of': 5.0, 'the': 10.0, 'watched': 1.0, 'fascination': 1.0, 'was': 6.0, 'talk': 1.0, 'pleasure': 1.0, 'see': 1.0, 'floor': 1.0, 'drawn': 2.0, 'daughter': 1.0, 'when': 1.0, 'seen': 1.0, 'it': 2.0, 'infant': 1.0, 'fabulous': 1.0, 'from': 2.0, 'very': 1.0, 'toy': 1.0, 'there': 1.0, 'back': 1.0, 'limited': 1.0, 'assortment': 1.0, 'great': 1.0, 'words': 1.0, 'feel': 1.0, 'sounds': 2.0, 'toys': 2.0, 'for': 1.0, 'living': 1.0, 'magic': 2.0, 'certain': 1.0, 'loved': 1.0, 'played': 1.0, 'some': 1.0, 'changes': 1.0, 'cube': 2.0, 'more': 2.0, 'amazement': 1.0, 'is': 2.0, 'way': 1.0, 'than': 1.0, 'early': 1.0, 'selective': 1.0, 'this': 2.0, 'instruments': 1.0, 'develop': 1.0, 'older': 1.0, 'be': 1.0, 'delight': 1.0, 'now': 2.0, 'that': 2.0, 'handles': 1.0, 'munhkin': 1.0, 'munchkin': 1.0, 'she': 8.0, 'others': 1.0, 'becomes': 1.0, 'i': 1.0, 'get': 1.0, 'sophisticated': 1.0, 'one': 1.0, 'explore': 1.0, 'best': 1.0, 'have': 1.0, 'an': 1.0, 'ever': 1.0, 'beginning': 1.0}
Word element => {'strong': 1.0, 'it': 5.0, 'only': 1.0, '19': 1.0, 'christmas': 1.0, 'this': 1.0, 'mom': 1.0, 'us': 1.0, 'later': 1.0, 'year': 1.0, 'still': 3.0, 'son': 1.0, 'my': 1.0, 'and': 1.0, 'now': 1.0, 'last': 1.0, 'lot': 1.0, 'does': 1.0, 'for': 1.0, 'one': 1.0, 'months': 1.0, 'deal': 1.0, 'got': 1.0, 'enjoy': 2.0, 'dad': 1.0, 'he': 1.0, 'pleasant': 1.0, 'about': 1.0, 'that': 3.0, 'electronic': 1.0, 'enough': 1.0, 'doesn': 1.0, 'going': 1.0, 'a': 4.0, 's': 1.0, 't': 2.0, 'headache': 1.0, 'these': 1.0, 'not': 1.0, 'give': 1.0, 'music': 1.0, 'can': 1.0, 'is': 3.0, 'say': 1.0, 'of': 1.0, '15': 1.0, 'toys': 1.0, 'quite': 1.0}
Word element => {'overall': 1.0, 'resemblance': 1.0, 'that': 1.0, 'electronic': 1.0, 'shoddy': 1.0, 'clarinet': 1.0, 'french': 1.0, 'violin': 1.0, 'bear': 1.0, 'harp': 1.0, 'piano': 1.0, 'scratchy': 1.0, 'though': 1.0, 'tinny': 1.0, 'really': 1.0, 'are': 3.0, 'sounds': 1.0, 'of': 1.0, 'little': 1.0, 'awful': 1.0, 'pretty': 1.0, 'quality': 1.0, 'sound': 1.0, 'grandfather': 1.0, 'toy': 3.0, 'with': 2.0, 'horn': 1.0, 'only': 2.0, 'this': 1.0, 'first': 1.0, 'it': 4.0, 'durable': 1.0, 'and': 4.0, 'an': 2.0, 'awesome': 1.0, 'birthday': 1.0, 'reproductions': 1.0, 'daughter': 2.0, 'for': 2.0, 'but': 2.0, 'music': 1.0, 'her': 3.0, 'not': 1.0, 'was': 1.0, 'great': 2.0, 'the': 7.0, 's': 2.0, 'a': 2.0, 't': 1.0, 'song': 1.0, 'selection': 1.0, 'being': 1.0, 'extremely': 1.0, 'able': 1.0, 'decent': 1.0, 'hit': 1.0, 'add': 1.0, 'actual': 1.0, 'noises': 1.0, 'all': 2.0, 'our': 2.0, 'to': 3.0, 'least': 1.0, 'instruments': 2.0, 'even': 1.0, 'got': 1.0, 'didn': 1.0, 'interaction': 1.0, 'is': 3.0, 'feature': 1.0, 'kid': 1.0, 'immediately': 1.0, 'on': 1.0, 'downside': 1.0, 'dad': 1.0, 'instant': 1.0, 'which': 2.0, 'brilliant': 1.0, 'affect': 1.0, 'stood': 1.0, 'in': 1.0}
Word element => {'toy': 2.0, 'kid': 1.0, 'a': 1.0, 'fairly': 1.0, 'is': 1.0, 'pretty': 1.0, 'music': 1.0, 'also': 1.0, 'year': 1.0, 'from': 1.0, 'thing': 1.0, 'favorite': 1.0, 'now': 1.0, 'birthday': 2.0, 'she': 1.0, 'today': 1.0, 'will': 1.0, 'but': 1.0, 'her': 3.0, 'love': 1.0, 'for': 3.0, 'too': 1.0, 'daughter': 1.0, 'loves': 2.0, 'either': 1.0, 'got': 1.0, 'wear': 1.0, 'not': 2.0, 'because': 1.0, 'know': 1.0, 'annoying': 1.0, 'my': 2.0, 'great': 1.0, '2': 1.0, 'the': 2.0, 'loud': 1.0, 'first': 1.0, 'this': 1.0, 'it': 5.0, 'old': 1.0, 'i': 2.0, 's': 3.0, 'newness': 1.0, 'and': 3.0, 'probably': 2.0, 'out': 1.0, 'eventually': 1.0}
Word element => {'music': 1.0, 'complex': 1.0, 'can': 1.0, 'multiple': 1.0, 'different': 1.0, 'an': 1.0, 'synthetic': 1.0, 'bit': 1.0, 'sound': 1.0, 'a': 2.0, 'since': 1.0, 'do': 1.0, 'and': 2.0, 'toy': 2.0, 'old': 2.0, 'provides': 1.0, 'still': 2.0, 'played': 1.0, 'piece': 1.0, 'months': 1.0, 'son': 1.0, 'year': 1.0, 'create': 1.0, 'has': 1.0, 'my': 1.0, 'the': 2.0, 'to': 1.0, 'was': 1.0, 'one': 1.0, 'entertains': 1.0, '6': 1.0, 'this': 1.0, 'with': 1.0, 'he': 1.0, 'it': 1.0, 'him': 1.0, 'how': 1.0, 'while': 1.0, 'introduction': 1.0, 'instruments': 3.0}
Word element => {'terrific': 1.0, 'listening': 1.0, 'of': 1.0, 'so': 1.0, 'he': 1.0, 'it': 3.0, 'this': 1.0, 'with': 1.0, 'what': 1.0, 'does': 1.0, 'birthday': 1.0, '1st': 1.0, 'my': 1.0, 'husband': 1.0, 'our': 1.0, 'to': 2.0, 'son': 1.0, 'his': 2.0, 'year': 1.0, 'day': 2.0, 'from': 1.0, 'brother': 1.0, 'for': 1.0, 'rhymes': 1.0, '4': 1.0, 'i': 1.0, 'old': 1.0, 'the': 2.0, 'gave': 1.0, 'loves': 1.0, 'toy': 3.0, 'and': 3.0, 'play': 1.0, 'a': 4.0, 't': 1.0, 'we': 1.0, 'really': 1.0, 'every': 1.0, 'many': 1.0, 'is': 1.0, 'times': 1.0, 'nursery': 1.0, 'grown': 1.0, 'haven': 1.0, 'change': 1.0, 'music': 1.0, 'great': 1.0, 'nice': 1.0, 'they': 1.0, 'usual': 1.0, 'tired': 1.0}
Word element => {'old': 1.0, 'months': 1.0, '20': 1.0, 'play': 1.0, 'loves': 2.0, 'learn': 1.0, 'dance': 1.0, 'my': 1.0, 'music': 1.0, 'work': 1.0, 'an': 1.0, 'for': 1.0, 'instant': 1.0, 'received': 1.0, 'his': 1.0, 'son': 1.0, '1st': 1.0, 'still': 1.0, 'birthday': 1.0, 'and': 2.0, 'with': 1.0, 'this': 1.0, 'he': 3.0, 'it': 3.0, 'to': 4.0, 'now': 1.0, 'was': 1.0, 'hit': 1.0, 'at': 1.0, 'quickly': 1.0, 'how': 1.0}
Word element => {'now': 1.0, 'than': 1.0, 'let': 1.0, 't': 1.0, 'don': 1.0, 'but': 1.0, 'time': 1.0, 'little': 1.0, 'a': 1.0, 'buy': 1.0, 'anyhow': 1.0, 'myself': 1.0, '0': 1.0, 'ages': 1.0, '34': 2.0, 'designed': 1.0, 'especially': 1.0, 'be': 2.0, 'might': 1.0, 'on': 1.0, 'definitely': 1.0, 'its': 1.0, 'baby': 1.0, 'as': 1.0, 'to': 6.0, 'trying': 2.0, 'instead': 1.0, 'crib': 1.0, 'cld': 1.0, 'm': 1.0, 'in': 3.0, 'reading': 1.0, 'the': 11.0, 'of': 2.0, 'temporary': 1.0, 'wakes': 1.0, 'times': 1.0, 'when': 2.0, 'again': 1.0, 'toys': 2.0, '15': 1.0, 'for': 10.0, 'product': 2.0, 'son': 1.0, 'escape': 1.0, 'most': 1.0, 'love': 3.0, 'he': 3.0, 'this': 2.0, '30': 1.0, 'bit': 1.0, 'found': 1.0, 'design': 1.0, 'play': 3.0, 'and': 5.0, 'bought': 1.0, 'i': 8.0, 'higher': 1.0, 'corner': 1.0, 'morning': 2.0, 'stand': 1.0, 'turned': 1.0, 'using': 1.0, 'looking': 1.0, 'days': 1.0, 'day': 1.0, 'sat': 1.0, '5': 2.0, 'enjoyed': 1.0, 'that': 3.0, '20': 1.0, 'was': 3.0, 'mo': 1.0, 'good': 1.0, 'which': 1.0, 'side': 1.0, 'rounded': 1.0, 'infant': 2.0, 'after': 2.0, 'so': 1.0, 'would': 1.0, 'boy': 1.0, 'month': 1.0, 'totally': 2.0, 'hear': 1.0, 'first': 1.0, 'himself': 1.0, 'him': 2.0, 'it': 4.0, 'couple': 1.0, 'alternative': 1.0, 'could': 2.0, 's': 1.0, 'some': 1.0, 'played': 1.0, 'by': 1.0, 'min': 3.0, 'amazed': 1.0, 'not': 2.0, 'more': 1.0, 'cube': 3.0, 'still': 1.0, 'covering': 1.0, 'music': 1.0, 'his': 1.0, 'solution': 1.0, 'has': 1.0, 'ears': 1.0, 'all': 3.0, 'playing': 1.0, 'other': 1.0, 'until': 1.0, 'off': 1.0, 'too': 2.0, 'one': 2.0, 'happy': 1.0, 'reviews': 1.0, 'then': 1.0, 'realized': 1.0, 'loud': 1.0, 'up': 2.0, '7': 1.0, 'noisy': 1.0, 'different': 1.0, 'from': 1.0, 'my': 3.0, 'me': 1.0, 'musical': 1.0, 'have': 1.0, 'volume': 2.0, 'options': 1.0, 'does': 1.0}
Word element => {'enjoyed': 1.0, 'be': 1.0, 'course': 1.0, 'is': 1.0, 'you': 1.0, 'won': 1.0, 'like': 1.0, 'singing': 1.0, 'other': 1.0, 'with': 1.0, 'this': 1.0, 'it': 4.0, 'many': 1.0, 'mozart': 2.0, 'in': 1.0, 'the': 3.0, 'horrible': 1.0, 'wonderful': 1.0, 'will': 3.0, 'fact': 1.0, 'baby': 3.0, 'pleasant': 1.0, 'of': 2.0, 'up': 1.0, 'keep': 1.0, 'but': 1.0, 'music': 1.0, 's': 2.0, 't': 1.0, 'a': 1.0, 'interested': 1.0, 'toys': 1.0, 'that': 1.0, 'parts': 1.0, 'by': 1.0, 'light': 1.0, 'so': 1.0, 'not': 1.0, 'listening': 1.0, 'product': 1.0, 'annoy': 1.0, 'actually': 1.0, 'all': 1.0, 'to': 1.0, 'or': 1.0, 'songs': 1.0, 'individual': 1.0, 'instruments': 1.0, 'enjoyable': 1.0, 'make': 1.0, 'your': 1.0, 'play': 1.0, 'and': 4.0, 'smarter': 1.0}
Word element => {'priced': 1.0, 'together': 1.0, 'plays': 1.0, 'face': 1.0, 'orchestra': 2.0, '34': 4.0, 'play': 1.0, 'of': 1.0, 'this': 1.0, 'first': 1.0, 'since': 1.0, 'popular': 1.0, 'now': 1.0, 'was': 2.0, 'it': 2.0, 'colorful': 1.0, 'pressed': 2.0, 'faces': 1.0, 'no': 1.0, 'several': 1.0, 'w': 1.0, 'cube': 3.0, 'mailed': 1.0, 'nicer': 1.0, 'are': 1.0, 'granchild': 1.0, 'solos': 1.0, 'holiday': 1.0, 'gift': 1.0, 'grandkids': 1.0, 'broken': 1.0, 'as': 1.0, 'all': 1.0, 'to': 2.0, 'our': 1.0, 'munchkin': 1.0, 'toy': 2.0, 'longer': 1.0, 'is': 2.0, 'holds': 1.0, 'off': 1.0, 'interest': 1.0, 'local': 1.0, 'when': 3.0, 'the': 3.0, 'depicted': 1.0, 'button': 1.0, 'ceased': 1.0, 'decently': 1.0, 'working': 2.0, 'a': 2.0, 'we': 1.0, 'small': 1.0, 'have': 1.0, 'fix': 1.0, 'brightly': 1.0, 'been': 1.0, 'instruments': 2.0, 'unable': 1.0, 'on': 2.0, 'make': 1.0, 'permanent': 1.0, 'lit': 1.0}
Word element => {'in': 1.0, 'a': 1.0, 'on': 1.0, 'be': 1.0, 'without': 1.0, 'can': 1.0, 'instruments': 1.0, 'different': 1.0, 'the': 2.0, 'neat': 1.0, 'music': 2.0, 'how': 1.0, 'beautiful': 1.0, 'daughter': 1.0, 'for': 1.0, 'note': 1.0, 'which': 1.0, 'my': 1.0, 'she': 1.0, 'birthday': 1.0, 'toy': 1.0, 'turned': 1.0, 'its': 1.0, 'to': 1.0, 'received': 1.0, 'just': 1.0, 'hard': 1.0, 'first': 1.0, 'this': 1.0, 'it': 3.0, 'keeps': 1.0, 'skipping': 1.0, 'has': 1.0, 'her': 1.0, 's': 1.0, 'attention': 1.0, 'is': 1.0, 'off': 1.0, 'loves': 1.0, 'quite': 1.0, 'and': 2.0, 'do': 1.0}
Word element => {'great': 1.0, 'music': 1.0, 'loves': 1.0, 'so': 1.0, 'bang': 1.0, 'things': 1.0, 'lights': 1.0, 'to': 1.0, 'buy': 1.0, 'old': 1.0, 'month': 1.0, '8': 1.0, 'our': 1.0, 'is': 1.0, 'on': 1.0, 'perfect': 1.0, 'moves': 1.0, 'this': 1.0, 'it': 3.0, 'with': 1.0, 'he': 1.0, 'around': 1.0, 'bangs': 1.0, 'and': 1.0, '34': 2.0, 'up': 1.0}
Word element => {'interested': 1.0, 're': 1.0, 'turtle': 1.0, 'one': 1.0, 'as': 1.0, 'less': 1.0, 'having': 1.0, 'was': 1.0, 'go': 1.0, 'fun': 1.0, 'from': 1.0, 'away': 1.0, 'had': 1.0, 'loved': 1.0, 'off': 1.0, 'on': 2.0, 'with': 2.0, 'einstein': 1.0, 'by': 1.0, 'similar': 1.0, 'another': 1.0, 'fake': 1.0, 'sound': 1.0, 'over': 2.0, 'these': 1.0, 'them': 1.0, 'baby': 2.0, 'shower': 1.0, 'sounds': 4.0, 'also': 1.0, 'some': 1.0, 'none': 1.0, 'instrument': 2.0, 'this': 3.0, 'found': 2.0, 'biggest': 1.0, 'munchkin': 1.0, 'grating': 2.0, 'child': 1.0, 'year': 1.0, 'awful': 1.0, 'better': 1.0, 'much': 2.0, 'for': 6.0, 'could': 2.0, 'take': 1.0, 'we': 4.0, 't': 2.0, 'our': 3.0, 'to': 2.0, 'button': 1.0, 'isn': 1.0, 'funny': 1.0, 'toy': 4.0, 'recordings': 1.0, 'old': 1.0, 'called': 1.0, 'bought': 1.0, 'looks': 1.0, 'may': 2.0, 'musical': 1.0, 'be': 3.0, 'ok': 1.0, 'best': 1.0, 'not': 1.0, 'idea': 3.0, 'you': 3.0, 'worst': 1.0, '1': 1.0, 'great': 2.0, 'and': 6.0, 'violin': 1.0, 'while': 1.0, 'really': 1.0, 'if': 1.0, 'turn': 1.0, 'every': 1.0, 'of': 1.0, 'the': 12.0, 'terribly': 1.0, 'him': 1.0, 'it': 8.0, 'can': 1.0, 'so': 3.0, 'time': 1.0, 'a': 7.0, 'story': 1.0, 'have': 2.0, 'remember': 1.0, 'nasal': 1.0, 'that': 3.0, 'into': 1.0, 'same': 1.0, 'hear': 1.0, 'are': 2.0, 'first': 1.0, 'kid': 1.0, 'parents': 1.0, 'pushes': 1.0, 'well': 1.0, 'i': 1.0, 'no': 1.0, 'today': 1.0, 'didn': 1.0, 'why': 1.0, 'just': 2.0, 'use': 1.0, 'real': 1.0, 'like': 2.0, 'they': 2.0, 'but': 3.0, 'chose': 1.0, 'midi': 1.0, 'instruments': 2.0, 'day': 1.0, 'looking': 1.0, 'son': 2.0, 'he': 3.0, 'problem': 1.0, 'though': 1.0, 'were': 2.0, 'is': 4.0, 'at': 1.0, 'store': 1.0, 'gift': 1.0}
Word element => {'wrong': 1.0, 'go': 1.0, 'not': 1.0, 'can': 1.0, 'you': 1.0, 'or': 1.0, 'own': 1.0, 'music': 1.0, 'child': 1.0, 'them': 1.0, 'delight': 1.0, 'will': 1.0, 'ones': 1.0, 'fascinating': 1.0, 'is': 1.0, 'changed': 1.0, 'my': 1.0, 'small': 1.0, 'toy': 1.0, 'a': 2.0, 'and': 3.0, 'gift': 2.0, 'young': 1.0, 'for': 3.0, 'given': 1.0, 'were': 1.0, 'with': 1.0, 'first': 1.0, 'children': 1.0, 'only': 1.0, 'this': 1.0, 'it': 2.0, 'we': 1.0, 'changing': 1.0, 'as': 2.0, 'son': 1.0, 'your': 1.0, 'has': 1.0, 'survived': 1.0, 'needed': 1.0, 'lights': 1.0, 'its': 2.0, 'three': 1.0, 'batteries': 1.0}
Word element => {'preferential': 1.0, 'a': 1.0, 'inform': 1.0, 'have': 1.0, 'time': 1.0, 'next': 1.0, 'again': 1.0, 'it': 1.0, 'like': 1.0, 'very': 2.0, 'also': 1.0, 'to': 1.0, 'much': 1.0, 'for': 1.0, 'suitable': 1.0, 'me': 2.0, 'will': 1.0, 'activities': 1.0, 'come': 1.0}
Word element => {'christmas': 1.0, 'for': 1.0, 'things': 1.0, 'the': 1.0, 'morning': 1.0, 'she': 2.0, 'first': 1.0, 'toy': 1.0, 'went': 1.0, 'it': 1.0, 'loves': 1.0, 'this': 1.0, 'of': 1.0, 'keeps': 1.0, 'her': 1.0, 'was': 1.0, 'attention': 1.0, 'totally': 1.0, 'one': 1.0}
Word element => {'obviously': 1.0, 'instruments': 1.0, 'different': 1.0, 'of': 1.0, 'in': 1.0, 'songs': 1.0, 'classical': 1.0, 'plays': 1.0, 'enough': 1.0, 'can': 1.0, 'packages': 1.0, 'their': 1.0, 'open': 1.0, 'children': 1.0, 'other': 1.0, 'constructed': 1.0, 'to': 1.0, 'all': 1.0, 'while': 1.0, 'continued': 1.0, 'room': 1.0, 'gifts': 1.0, 'two': 1.0, 'giraffe': 1.0, 'with': 3.0, 'this': 2.0, 'went': 1.0, 'played': 2.0, 'it': 4.0, 'she': 1.0, 'additional': 1.0, 'across': 1.0, 'and': 5.0, 'siblings': 1.0, 'gave': 1.0, 'that': 1.0, 'finally': 1.0, 'along': 1.0, 'after': 1.0, 'small': 1.0, 'purchased': 1.0, 'recommend': 1.0, 'was': 1.0, 'several': 1.0, 'same': 1.0, 'mozart': 1.0, 'for': 2.0, 'years': 1.0, 'them': 1.0, 'magic': 1.0, 'baby': 1.0, 'well': 1.0, 'toy': 3.0, 'voices': 1.0, 'child': 2.0, 'up': 1.0, 'grandchild': 1.0, '6': 1.0, 'is': 3.0, 'year': 1.0, 'old': 1.0, 'took': 1.0, '3': 1.0, 'on': 1.0, 'the': 6.0, 'cube': 1.0, 'way': 1.0, 't': 1.0, 'we': 2.0, 'a': 4.0, 'ago': 1.0, 's': 1.0, 'bought': 1.0, 'another': 1.0, 'family': 1.0, 'cha': 2.0, 'favorite': 1.0}
Word element => {'would': 1.0, 'every': 1.0, 'most': 1.0, 'other': 1.0, 'simple': 1.0, 'definitely': 1.0, 'plays': 1.0, 'recommend': 1.0, 'she': 1.0, 'loves': 1.0, 'range': 1.0, 'ratings': 1.0, 'the': 1.0, 'more': 1.0, 'great': 2.0, 'month': 2.0, 'this': 3.0, 'it': 1.0, 'with': 3.0, '12': 1.0, 'on': 1.0, 'toys': 1.0, '6': 1.0, 'search': 1.0, 'daughter': 1.0, 'that': 1.0, 'playing': 1.0, 'is': 1.0, 'amazon': 1.0, 'cube': 1.0, 'often': 1.0, 'for': 2.0, 'one': 1.0, 'age': 1.0, 'toy': 1.0, 'another': 1.0, 'my': 1.0, '7': 1.0, 'i': 2.0, 'buy': 1.0, 'old': 1.0}
Word element => {'interested': 1.0, 'teething': 1.0, 'in': 1.0, 'also': 1.0, 'a': 1.0, 'toy': 2.0, 'was': 1.0, 'to': 2.0, 'i': 1.0, 'other': 1.0, 'has': 1.0, 'keep': 1.0, 'son': 1.0, 'on': 1.0, 'great': 1.0, 'him': 1.0, 'this': 1.0, 'it': 1.0, 'my': 1.0, 'liked': 1.0, 'for': 1.0, 'bite': 1.0, 'really': 2.0, 'many': 1.0, 'things': 1.0}
Word element => {'of': 1.0, 'out': 1.0, 'all': 1.0, 'now': 1.0, 'day': 1.0, 'within': 1.0, 'cool': 1.0, 'loves': 1.0, 'absolutely': 1.0, 'every': 1.0, 'sadly': 1.0, 'my': 1.0, 'the': 1.0, 'a': 1.0, 'baby': 1.0, 'toy': 1.0, 'at': 1.0, 'super': 1.0, 's': 2.0, 'but': 1.0, 'week': 1.0, 'replacing': 1.0, 'batteries': 2.0, 'need': 1.0, 'and': 1.0, 'it': 2.0, 'he': 2.0, 'not': 2.0, 'that': 1.0, 'playing': 2.0}
Word element => {'time': 1.0, 'grow': 1.0, 'over': 1.0, 'concept': 1.0, 'stars': 1.0, '5': 1.0, 'batteries': 1.0, 'install': 1.0, 'screwdriver': 1.0, 'need': 1.0, 'll': 1.0, 'you': 1.0, 'mention': 1.0, 'quick': 1.0, 'removing': 1.0, 'instructions': 1.0, 'no': 1.0, 'these': 1.0, 'comes': 1.0, 'opener': 1.0, 'around': 1.0, 'remainder': 1.0, 'wrapped': 1.0, 'stuck': 1.0, 'have': 1.0, 'first': 1.0, 'scissors': 1.0, 'cut': 1.0, 'holes': 1.0, 'through': 1.0, 'plastic': 1.0, 'with': 3.0, 'fastened': 1.0, 'was': 1.0, 'when': 1.0, 'in': 3.0, 'occasional': 1.0, 'for': 3.0, 'tunes': 1.0, 'this': 4.0, 'off': 1.0, 'an': 1.0, 'all': 2.0, 'pulled': 1.0, 'to': 8.0, 'from': 1.0, 'it': 9.0, 'find': 1.0, 'than': 1.0, 'piano': 1.0, 'that': 1.0, 'easily': 1.0, 'seen': 1.0, 'various': 1.0, 'as': 1.0, 'heavy': 1.0, 'thing': 1.0, 'tone': 1.0, 'soft': 1.0, 'remove': 1.0, 'works': 1.0, 'usually': 1.0, 'only': 2.0, 'my': 6.0, 'may': 1.0, 'often': 1.0, 'will': 1.0, 'adding': 1.0, 'subtracting': 1.0, 'great': 2.0, 'big': 1.0, 'at': 1.0, 'is': 5.0, 'favorite': 2.0, 'finally': 1.0, 'complaint': 1.0, 'discordant': 1.0, 'she': 2.0, 'baby': 2.0, 'wires': 2.0, 'them': 3.0, 'send': 1.0, 'ran': 1.0, 'the': 17.0, 'of': 4.0, 'packaging': 1.0, 'free': 1.0, 'jag': 1.0, 'think': 2.0, 'on': 2.0, 'toy': 5.0, 'rather': 1.0, 'like': 1.0, 'presses': 1.0, 'and': 6.0, 'coated': 1.0, 'i': 8.0, 'putting': 1.0, 'a': 6.0, 't': 1.0, 'giving': 1.0, 's': 2.0, 'instruments': 1.0, 'orchestration': 1.0, 'by': 1.0, 'end': 1.0, 'nibble': 1.0, 'we': 1.0, 'then': 1.0, 'real': 1.0, 'don': 1.0, 'child': 1.0, 'daughter': 3.0, 'got': 1.0, 'neat': 1.0, 'letter': 1.0, 'figured': 1.0, 'rounded': 1.0, 'out': 1.0, 'love': 2.0, 'yet': 1.0, 'corners': 1.0, 'but': 1.0, 'crying': 1.0, 'one': 1.0, 'her': 1.0, 'toys': 1.0, 'received': 1.0, 'also': 1.0, 've': 1.0, 'mildly': 1.0, 'now': 1.0, 'more': 2.0, 'cube': 5.0, 'durable': 1.0, 'pulls': 1.0, 'bit': 2.0, 'however': 1.0, 'shelf': 1.0, 'thudding': 1.0, 'do': 2.0, 'floor': 1.0, 'buttons': 1.0, 'still': 1.0, 'carry': 1.0}
Word element => {'instrument': 1.0, 'a': 1.0, '8': 1.0, 'mozart': 1.0, 'hear': 1.0, 'my': 1.0, 'the': 3.0, 'is': 2.0, 'can': 2.0, 'love': 1.0, 'music': 3.0, 'i': 1.0, '5': 1.0, 'also': 2.0, 'song': 1.0, 'daughter': 1.0, 'lovely': 1.0, 'very': 1.0, 'and': 2.0, 'play': 1.0, 'this': 1.0, 'you': 2.0, 'box': 1.0}
Word element => {'plus': 1.0, 'is': 1.0, 'which': 1.0, 'replace': 1.0, 'had': 1.0, 'haven': 1.0, 'favorite': 1.0, '16': 1.0, 'time': 1.0, 'and': 2.0, 'get': 1.0, 'now': 1.0, 'months': 1.0, 'definite': 1.0, 'over': 1.0, 'my': 1.0, 'first': 1.0, 'instrument': 1.0, 'this': 1.0, 'with': 1.0, 'absolutely': 1.0, 'birthday': 1.0, 'become': 1.0, 'received': 1.0, 'daughter': 1.0, 'for': 2.0, 'has': 1.0, 'toy': 2.0, 'old': 1.0, 'experiments': 1.0, 'batteries': 1.0, 'sounds': 1.0, 'will': 1.0, 'it': 4.0, 'she': 4.0, 'loves': 1.0, 'into': 1.0, 'box': 1.0, 'to': 3.0, 'all': 2.0, 'still': 1.0, 'busy': 1.0, 'other': 1.0, 'stuff': 1.0, 'keeps': 1.0, 't': 1.0, 'we': 1.0, 's': 1.0, 'a': 3.0, '20': 1.0, 'minutes': 1.0, 'climb': 1.0, 'at': 1.0, 'while': 1.0, 'the': 2.0, 'her': 5.0, 'good': 1.0, 'different': 1.0, 'songs': 1.0, 'musical': 1.0}
Word element => {'together': 1.0, 'use': 1.0, 'this': 1.0, 'first': 1.0, 'they': 2.0, 'ever': 1.0, 'birthday': 1.0, 'gift': 1.0, 'got': 1.0, 'enjoyed': 1.0, 'secondhand': 1.0, 'have': 1.0, 'and': 2.0, 'at': 1.0, 'since': 1.0, 'for': 1.0, 'store': 1.0, 'my': 1.0, 'push': 1.0, 'instantly': 1.0, 'twins': 1.0, 'so': 1.0, 'free': 1.0, 'now': 1.0, 'is': 1.0, '6': 1.0, 'it': 4.0, 'month': 1.0, 'old': 1.0, 'baby': 2.0, 'likes': 1.0, 'girls': 1.0, 'toy': 2.0, 'we': 1.0, 'a': 3.0, 's': 2.0, 'all': 1.0, 'as': 1.0, 'to': 2.0, 'our': 1.0, 'dance': 1.0, 'favorite': 1.0, 'the': 4.0, 'great': 1.0, 'loved': 1.0, 'buttons': 1.0, 'can': 1.0, 'music': 1.0, 'that': 1.0, 'been': 1.0}
Word element => {'little': 1.0, 'musical': 1.0, 'girl': 1.0, 'especially': 1.0, 'love': 1.0, 'is': 1.0, 'concept': 1.0, 'production': 1.0, 'future': 1.0, 'initially': 1.0, 'right': 1.0, 'cover': 4.0, 'off': 1.0, 'hope': 1.0, 'and': 4.0, 'we': 2.0, 'could': 1.0, 'a': 4.0, 'mention': 1.0, 'feel': 1.0, 'cracked': 1.0, '1': 2.0, 'to': 5.0, 'need': 1.0, 'purchased': 1.0, 'if': 1.0, 'our': 6.0, 'how': 1.0, '6': 1.0, 'for': 2.0, 'stars': 1.0, 'cube': 1.0, 'give': 2.0, 'not': 1.0, 'were': 2.0, 'mos': 1.0, 'adored': 2.0, 'first': 1.0, 'it': 5.0, 'few': 1.0, 'this': 3.0, 'wish': 2.0, 'based': 1.0, '5': 1.0, 'old': 1.0, 'i': 5.0, 'months': 1.0, 'huge': 1.0, 'on': 4.0, 'disappointment': 1.0, 'put': 1.0, 'much': 4.0, 'only': 1.0, 'decided': 1.0, 'toy': 4.0, 'next': 1.0, 'has': 1.0, 'however': 1.0, 'twins': 4.0, 'what': 1.0, 'when': 1.0, 'happened': 1.0, 'within': 1.0, 'better': 1.0, 'definitely': 1.0, 'would': 2.0, 'springs': 1.0, 'really': 1.0, 'excellent': 1.0, 'battery': 2.0, 'fixes': 1.0, 'one': 2.0, 'manufacturing': 1.0, 'rating': 1.0, 'switch': 1.0, 'very': 1.0, 'leaving': 1.0, 'munchkin': 1.0, 'accessible': 1.0, 'tape': 1.0, 'even': 1.0, 'did': 1.0, 'keep': 1.0, 'securely': 1.0, 'that': 2.0, 'easily': 1.0, 'because': 2.0, 'was': 1.0, 'same': 1.0, 'under': 1.0, 'batteries': 2.0, 'pressure': 1.0, 'from': 1.0, 'underneath': 1.0, 'thing': 1.0, '2': 1.0, 'so': 2.0, 'can': 1.0, 'christmas': 1.0, 'list': 1.0, 'they': 1.0, 'both': 1.0, 'dismay': 1.0, 'duct': 1.0, 'exact': 1.0, 'the': 15.0, 'of': 2.0, 'second': 1.0, 'obviously': 1.0, 'defect': 1.0}
Word element => {'have': 1.0, 'pull': 1.0, 'stiff': 1.0, 'plastic': 1.0, 'would': 1.0, 'just': 1.0, 'if': 1.0, 'stuck': 1.0, 'with': 1.0, 'put': 1.0, 'impressed': 1.0, 'string': 1.0, 'quite': 1.0, 'access': 2.0, 'them': 1.0, 'screws': 1.0, 'pushing': 1.0, 'that': 3.0, 'memo': 1.0, 'receive': 1.0, 'even': 1.0, 'didn': 1.0, 'which': 1.0, 'manufacturer': 1.0, 'obviously': 1.0, 'free': 2.0, 'shouldn': 1.0, 'seem': 1.0, 'son': 1.0, 'from': 2.0, 'yet': 2.0, 'my': 1.0, 'it': 2.0, 'i': 5.0, 'fine': 1.0, 'nice': 1.0, 'better': 1.0, 'sound': 1.0, 'regular': 1.0, 'hoping': 1.0, 'in': 2.0, 'as': 3.0, 'to': 6.0, 'well': 1.0, 'toy': 3.0, 'musical': 1.0, 'where': 1.0, 'for': 1.0, 'product': 1.0, 'pack': 1.0, 'its': 1.0, 'tiny': 1.0, 'much': 1.0, 'come': 1.0, 'pliers': 2.0, 'can': 2.0, 'most': 1.0, 'but': 2.0, 'frustration': 1.0, 'give': 1.0, 'wires': 3.0, 'manner': 1.0, 'than': 1.0, 'we': 1.0, 'a': 1.0, 't': 5.0, 'these': 3.0, 'the': 9.0, 'other': 1.0, 'need': 1.0, 'toys': 1.0, 'haven': 1.0, 'get': 2.0, 'too': 1.0, 'damned': 1.0, 'and': 1.0, 'out': 4.0, 'packaging': 3.0, 'of': 1.0, 'no': 1.0, 'battery': 1.0, 'gone': 1.0, 'holes': 1.0, 'they': 3.0, 'coated': 1.0, 'are': 4.0, 'threaded': 1.0, 'luck': 1.0, 'took': 1.0, 'through': 2.0, 'easily': 1.0, 'am': 1.0, 'you': 1.0, 'someone': 1.0, 'else': 1.0, 'used': 1.0, 'suggested': 1.0}
Word element => {'durable': 1.0, 'them': 1.0, 'kid': 2.0, 'want': 1.0, 'if': 1.0, 'you': 2.0, 'again': 1.0, 'company': 1.0, 'unrealistic': 1.0, 'anything': 1.0, 'never': 1.0, 'will': 1.0, 'i': 1.0, 'be': 1.0, 'would': 1.0, 'of': 1.0, 'under': 1.0, 'not': 2.0, 'distance': 1.0, 'can': 1.0, 'made': 1.0, 'toy': 1.0, 'bad': 1.0, 'fixed': 2.0, 'getting': 1.0, '12': 1.0, 'everywhere': 1.0, 'so': 1.0, 'time': 1.0, 'basically': 1.0, 'hands': 1.0, 'the': 3.0, 'make': 2.0, 'therefore': 1.0, 'carried': 1.0, 'wishlist': 1.0, 'her': 1.0, 'at': 1.0, 'told': 1.0, 'about': 1.0, 'no': 1.0, 'this': 2.0, 'were': 2.0, 'inches': 2.0, 'warranty': 1.0, 'loved': 1.0, '29': 1.0, 'cs': 1.0, 'department': 1.0, 'young': 1.0, 'old': 1.0, 'she': 3.0, 'it': 7.0, 'month': 1.0, 'fell': 2.0, 'given': 1.0, 'product': 1.0, 'for': 3.0, 'one': 1.0, 'daughter': 1.0, 'might': 1.0, 's': 1.0, 't': 1.0, 'we': 3.0, 'a': 3.0, 'toys': 1.0, '15': 1.0, 'see': 1.0, 'children': 1.0, 'gift': 1.0, 'buy': 1.0, 'day': 1.0, 'fall': 2.0, 'more': 1.0, 'around': 1.0, 'dropped': 1.0, 'was': 3.0, 'any': 1.0, 'our': 2.0, 'to': 2.0, 'too': 1.0, 'and': 4.0, 'tall': 1.0, 'in': 1.0, 'because': 1.0, 'than': 1.0, 'broke': 1.0, 'from': 2.0, 'saddened': 1.0, 'contacted': 1.0}
Word element => {'on': 1.0, 'wasted': 1.0, 'like': 1.0, 'feel': 1.0, 'because': 1.0, 'just': 2.0, 'not': 1.0, 'be': 1.0, 'i': 5.0, 'bought': 1.0, 'months': 1.0, 'about': 1.0, 'baby': 1.0, 'screechy': 1.0, 'loved': 1.0, 'every': 1.0, 'the': 2.0, 'my': 2.0, 'similar': 1.0, 'and': 3.0, 'einstein': 1.0, 'horrible': 1.0, 'toy': 2.0, 'has': 1.0, 'son': 1.0, 'year': 1.0, 'now': 1.0, 'is': 3.0, 'type': 1.0, 'a': 2.0, 'product': 1.0, 'for': 1.0, 'take': 1.0, 'along': 1.0, 'had': 1.0, 'thought': 1.0, 'would': 1.0, 'money': 1.0, 'but': 1.0, 'music': 1.0, 'if': 1.0, 'activity': 1.0, 'over': 1.0, 'sound': 2.0, 'this': 4.0, 'tunes': 1.0, 'instrument': 1.0, '6': 1.0, 'he': 1.0, 'extremely': 1.0, 'am': 1.0, 'sure': 1.0, 'have': 1.0, 'bad': 1.0}
Word element => {'that': 1.0, 'infancy': 1.0, 'toy': 2.0, 'about': 1.0, 'old': 1.0, 'i': 1.0, 's': 2.0, 'months': 2.0, 'bought': 1.0, 'floor': 1.0, 'the': 3.0, 'these': 1.0, 'loved': 1.0, 'then': 1.0, 'on': 2.0, 'furniture': 1.0, 'this': 1.0, 'with': 2.0, 'it': 2.0, 'only': 1.0, 'he': 5.0, '6': 1.0, 'for': 1.0, 'now': 2.0, 'was': 1.0, 'still': 3.0, 'son': 1.0, 'from': 1.0, 'when': 1.0, '18': 1.0, 'even': 1.0, 'his': 3.0, 'climbing': 1.0, 'though': 1.0, 'my': 1.0, 'absolute': 1.0, 'favorite': 1.0, 'toys': 1.0, 'activity': 1.0, 'plays': 1.0, 'days': 1.0, 'enjoys': 1.0, 'pushing': 1.0, 'is': 1.0, 'around': 1.0, 'will': 1.0, 'cube': 2.0, 'sit': 1.0, 'and': 3.0, 'play': 1.0}
Word element => {'hit': 1.0, 'huge': 1.0, 'not': 1.0, 'messing': 1.0, 's': 1.0, 'baby': 1.0, 'we': 1.0, 'down': 1.0, 'batteries': 1.0, 'run': 1.0, 'new': 1.0, 'enough': 1.0, 'on': 1.0, 'and': 2.0, 'i': 1.0, 'old': 2.0, 'month': 1.0, 'for': 1.0, 'year': 3.0, 'now': 1.0, 'to': 1.0, 'had': 1.0, '18': 1.0, 'some': 1.0, 'once': 1.0, 'at': 1.0, 'a': 5.0, 'have': 2.0, 'ago': 1.0, 'my': 1.0, 'the': 2.0, 'bought': 1.0, 'also': 1.0, 'played': 1.0, 'later': 1.0, '3': 1.0, 'he': 1.0, 'it': 2.0, 'this': 1.0, 'with': 2.0, 'time': 1.0, 'they': 1.0, 'off': 1.0}
Word element => {'pretty': 1.0, 'overall': 1.0, 'figures': 1.0, 'once': 1.0, 'this': 2.0, 'toy': 1.0, 'likes': 1.0, 'cool': 1.0, 'bought': 1.0, 'for': 2.0, 'yet': 1.0, 'which': 1.0, 'son': 2.0, 'is': 2.0, 'be': 1.0, 'him': 2.0, 'it': 2.0, 'month': 1.0, 'light': 1.0, 'own': 1.0, 'hasn': 1.0, 'old': 1.0, 'that': 1.0, 'loves': 1.0, 'things': 1.0, 'at': 1.0, 'play': 1.0, 'and': 1.0, 'up': 1.0, 'our': 1.0, 'to': 3.0, 'look': 1.0, 'music': 1.0, 'but': 1.0, 'will': 1.0, 'a': 1.0, 'we': 1.0, 't': 1.0, 'why': 1.0, 'figured': 1.0, 'the': 2.0, 'out': 2.0, 'he': 2.0, 'how': 1.0, 'buttons': 2.0, 'his': 1.0, 'on': 1.0, 'push': 2.0, 'are': 1.0, '5': 1.0, 'sensitive': 1.0, 'so': 1.0, 'they': 1.0, 'easy': 1.0}
Word element => {'me': 1.0, 'did': 1.0, 'for': 1.0, 'busy': 1.0, 'rat': 1.0, 'rug': 1.0, 'should': 1.0, 'combination': 1.0, 'in': 1.0, 'solo': 1.0, 'duet': 1.0, 'you': 1.0, 'trio': 1.0, 'of': 2.0, 'variety': 1.0, 'tool': 1.0, 'keep': 1.0, 'lot': 1.0, 'plays': 1.0, 'tunes': 1.0, 'this': 1.0, 'a': 4.0, 'quintet': 1.0, 'creative': 1.0, 'than': 1.0, 'ear': 1.0, 'made': 1.0, 'add': 1.0, 'learning': 1.0, 'is': 2.0, 'more': 1.0, 'around': 1.0, 'very': 2.0, 'and': 1.0, 'any': 1.0, 'to': 1.0, 'well': 2.0, 'toy': 1.0, 'five': 1.0, 'noise': 1.0, 'makes': 1.0, 'they': 1.0, 'make': 1.0, 'your': 2.0, 'genius': 1.0, 'instruments': 1.0, 'quartet': 1.0, 'however': 1.0, 'that': 2.0, 'the': 4.0, 'playing': 1.0, 'most': 1.0, 'can': 1.0, 'or': 2.0, 'it': 2.0, 'remove': 1.0, 'pleasing': 1.0, 'while': 2.0, 'are': 1.0, 'own': 1.0, 'combo': 1.0}
Word element => {'than': 1.0, 'expected': 1.0, 'much': 1.0, 'sound': 1.0, 'toys': 1.0, 'musical': 1.0, 'cool': 1.0, 'is': 1.0, 'really': 1.0, 'just': 1.0, 'are': 1.0, 'loves': 1.0, 'think': 1.0, 'magic': 1.0, 'these': 1.0, 'the': 3.0, 'my': 2.0, 'a': 2.0, 'them': 2.0, 'sing': 1.0, 'daughter': 2.0, 'year': 1.0, 'got': 1.0, 'am': 1.0, 'and': 4.0, 'both': 3.0, 'long': 1.0, 'we': 1.0, 'children': 1.0, 'christmas': 1.0, 'this': 1.0, 'young': 1.0, 'cube': 2.0, 'mozart': 1.0, 'for': 2.0, 'love': 1.0, 'i': 3.0, 'better': 1.0, 'music': 1.0, 'teacher': 1.0}
Word element => {'at': 1.0, '5': 1.0, 'age': 1.0, 'good': 1.0, 'attention': 1.0, 'instrument': 1.0, 'their': 1.0, 'that': 1.0, 'as': 1.0, 'keep': 1.0, 'flashes': 1.0, 'plays': 2.0, 'activate': 1.0, 'infant': 2.0, 'favorite': 1.0, 'of': 1.0, 'my': 1.0, 'are': 1.0, 'wonderful': 1.0, 'it': 1.0, 'this': 1.0, 'gifts': 1.0, 'classical': 1.0, 'pieces': 1.0, 'sides': 1.0, 'least': 1.0, 'easy': 1.0, 'one': 1.0, 'for': 2.0, 'the': 1.0, 'infants': 1.0, 'each': 1.0, 'to': 3.0, 'is': 1.0, 'side': 1.0}
Word element => {'pitch': 1.0, 'bad': 1.0, 'if': 1.0, 'fun': 1.0, 'musicians': 1.0, 'many': 1.0, 'room': 1.0, 'leave': 1.0, 'have': 1.0, 'almost': 1.0, 'i': 1.0, 'don': 1.0, 'over': 1.0, 'baby': 1.0, 'true': 1.0, 'in': 1.0, 'experience': 1.0, 'what': 1.0, 'drives': 1.0, 'old': 2.0, 'six': 1.0, 'control': 1.0, 'an': 1.0, 'it': 3.0, 'this': 2.0, 'with': 1.0, 'he': 6.0, 'too': 1.0, 'and': 3.0, 'me': 1.0, 'loves': 2.0, 'that': 1.0, 'lights': 1.0, 'for': 1.0, 'now': 1.0, 'our': 1.0, 'to': 2.0, 'gets': 1.0, 'still': 1.0, 'son': 1.0, 't': 1.0, 'going': 1.0, 'we': 1.0, 's': 2.0, 'you': 1.0, 'when': 3.0, 'intonation': 1.0, '18': 1.0, 'bought': 1.0, 'one': 1.0, 'months': 2.0, 'was': 1.0, 'crazy': 1.0, 'recognize': 1.0, 'buy': 1.0, 'plays': 1.0, 'can': 1.0, 'music': 2.0, 'but': 3.0, '2': 1.0, 'playing': 2.0, 'the': 6.0, 'having': 1.0, 'than': 1.0, 'once': 1.0, 'of': 1.0, 'enjoys': 1.0, 'unbearable': 1.0, 'instruments': 2.0, 'time': 1.0, 'toy': 1.0, 'has': 1.0, 'more': 1.0, 'is': 3.0, 'there': 1.0, 'among': 1.0, 'problem': 1.0, 'anyone': 1.0, 'at': 2.0, 'who': 1.0}
Word element => {'for': 1.0, 'parent': 1.0, 'enough': 1.0, 'of': 1.0, 'quality': 1.0, 'is': 2.0, 'good': 2.0, 'now': 1.0, 'turn': 1.0, 'cube': 1.0, 'sound': 1.0, 'over': 1.0, 'on': 1.0, 'and': 3.0, 'do': 1.0, '1': 1.0, 'another': 1.0, 'my': 1.0, 'will': 2.0, 'back': 1.0, 'ears': 1.0, 'other': 1.0, 'this': 3.0, 'walk': 1.0, 'he': 5.0, 'with': 3.0, 'it': 3.0, 'mos': 1.0, 'then': 1.0, 'some': 1.0, 'toys': 2.0, 'music': 2.0, 'was': 1.0, 'be': 1.0, 'bought': 1.0, 'the': 3.0, 'playing': 3.0, 'son': 1.0, 's': 1.0, 'a': 1.0, 'we': 1.0, 'go': 1.0, 'almost': 1.0, 'year': 1.0, 'his': 1.0, 'to': 2.0, 'as': 2.0, 'all': 1.0, 'since': 1.0, 'when': 1.0, 'point': 1.0, 'old': 1.0, 'toy': 2.0, 'well': 2.0, 'has': 1.0, 'buy': 1.0, 'day': 1.0, 'ever': 1.0, 'long': 1.0, '16': 1.0, 'that': 1.0, 'loves': 2.0, 'been': 1.0}
Word element => {'there': 1.0, 'loud': 1.0, 'little': 1.0, '5': 1.0, 'reason': 1.0, 'only': 1.0, 'constantly': 1.0, 'over': 1.0, 'twins': 1.0, 'giving': 1.0, 'be': 1.0, 'have': 2.0, 'long': 1.0, 'two': 1.0, 'i': 4.0, 'songs': 1.0, 'key': 1.0, 'also': 1.0, 'mozart': 1.0, 'stars': 1.0, 'for': 3.0, 'one': 2.0, 'several': 1.0, 'wish': 1.0, 'this': 2.0, 'fight': 1.0, 'with': 1.0, 'my': 2.0, 'may': 1.0, 'fact': 1.0, 'synthesized': 1.0, 'volume': 1.0, 'yet': 1.0, 'or': 2.0, 'off': 2.0, 'buy': 1.0, 'plays': 1.0, 'obnoxious': 1.0, 'looking': 1.0, 'play': 1.0, 'and': 1.0, 's': 1.0, 'could': 1.0, 'we': 1.0, 'discovered': 1.0, 'a': 6.0, 'that': 2.0, 'it': 4.0, 'annoying': 1.0, 'toy': 2.0, 'control': 1.0, 'musical': 1.0, 'after': 1.0, 'not': 3.0, 'listen': 1.0, 'was': 2.0, 'by': 3.0, 'song': 1.0, 'still': 1.0, 'to': 3.0, 'all': 1.0, 'bad': 1.0, 'instruments': 3.0, 'at': 3.0, 'of': 1.0, 'once': 1.0, 'pressing': 1.0, 'bit': 1.0, 'time': 3.0, 'orchestra': 1.0, 'in': 1.0, 'turn': 1.0, 'the': 2.0, 'periods': 1.0, 'are': 1.0, 'clearly': 1.0, 'can': 2.0, 'but': 1.0, 'baby': 2.0, 'quality': 1.0, 'annoyed': 1.0, 'is': 2.0}
Word element => {'play': 1.0, 'to': 1.0, 'brian': 1.0, 'easy': 1.0, 'and': 1.0, 'edges': 1.0, 'sharp': 1.0, 'no': 1.0, 'safe': 1.0, 'a': 1.0, 'i': 1.0, 'picks': 1.0, 's': 1.0, 'hope': 1.0, 'an': 1.0, 'music': 1.0, 'favorite': 1.0, 'grandson': 1.0, 'wonderful': 1.0, 'provides': 1.0, 'my': 1.0, 'the': 1.0, 'toy': 2.0, 'another': 1.0, 'is': 3.0, 'of': 1.0, 'up': 1.0, 'that': 1.0, 'appreciation': 1.0, 'for': 2.0, 'with': 2.0, 'he': 1.0, 'this': 1.0, 'it': 2.0}
Word element => {'ridiculously': 1.0, 'painfully': 1.0, 'because': 1.0, 'much': 1.0, 'toy': 1.0, 'of': 1.0, 'addition': 1.0, 'to': 2.0, 'had': 1.0, 'magic': 1.0, 'in': 1.0, 'songs': 1.0, 'version': 1.0, 'mozart': 1.0, 'cubethe': 1.0, 'so': 1.0, 'better': 1.0, 'enjoy': 1.0, 'and': 1.0, 'playing': 1.0, 'munchkin': 1.0, 'that': 1.0, 'loud': 2.0, 'with': 1.0, 'this': 2.0, 'older': 1.0, 'hard': 1.0, 'it': 2.0, 's': 2.0}
Word element => {'hear': 1.0, 'instruments': 1.0, 'various': 1.0, 'turning': 1.0, 'repeatedly': 1.0, 'the': 1.0, 'songs': 1.0, 'my': 1.0, 'and': 2.0, 'on': 1.0, 'son': 1.0, 'loves': 1.0, 'this': 1.0, 'has': 1.0, 'he': 1.0, 'thing': 1.0, 'sat': 1.0, 'effect': 1.0, 'off': 1.0, 'listened': 1.0, 'to': 2.0}
Word element => {'price': 1.0, '1': 1.0, 'substantially': 1.0, 'used': 1.0, 'given': 1.0, 'longer': 1.0, 'son': 1.0, 'purchase': 2.0, 'my': 1.0, 'unless': 1.0, 'again': 1.0, 'entertain': 1.0, 'of': 1.0, '14': 1.0, 'than': 1.0, 'yr': 1.0, 'less': 2.0, 'for': 1.0, 'tables': 1.0, 'would': 1.0, 'cost': 1.0, 've': 1.0, 'priced': 1.0, 'i': 3.0, 'think': 1.0, 'on': 1.0, 'up': 1.0, 'cheaper': 1.0, 'over': 1.0, 'also': 1.0, 'will': 2.0, 'concept': 1.0, 'the': 4.0, 'grasp': 1.0, 'nor': 1.0, 'it': 4.0, 'found': 1.0, 'this': 3.0, 'with': 1.0, 'heavy': 1.0, 'mos': 1.0, 'parents': 1.0, 'cube': 2.0, 'young': 2.0, 'bought': 1.0, 'one': 1.0, 'not': 2.0, 'is': 3.0, 'choice': 1.0, 'if': 1.0, 'want': 1.0, 'large': 2.0, 'trying': 1.0, 'be': 2.0, 'which': 1.0, 'hold': 1.0, 'manufacturer': 1.0, 'cannot': 1.0, 'that': 2.0, 'totally': 1.0, 'babies': 1.0, 'able': 1.0, 'we': 1.0, 's': 1.0, 'a': 1.0, 'in': 1.0, 'age': 2.0, 'means': 1.0, 'they': 2.0, 'so': 1.0, 'boy': 1.0, 'to': 3.0, 'or': 3.0, 'even': 1.0, 'too': 2.0, 'and': 3.0, 'play': 1.0, 'high': 1.0, 'independently': 1.0, 'toy': 2.0, 'recommended': 3.0, '99': 1.0, 'extremely': 1.0, 'addition': 1.0, '6': 1.0, 'are': 1.0, 'activity': 1.0, 'pull': 1.0}
Word element => {'too': 1.0, 'cousin': 1.0, 'nephew': 1.0, 'good': 1.0, 'very': 1.0, 'so': 1.0, 'not': 2.0, 'is': 2.0, 'definitely': 1.0, 'but': 3.0, 'it': 2.0, 'with': 1.0, 'this': 1.0, 'little': 1.0, 'she': 1.0, 'play': 1.0, 'lives': 1.0, 'annoying': 1.0, 'my': 2.0, 'for': 1.0, 'love': 1.0, 'tones': 1.0, 'one': 2.0, 'yet': 1.0, 'the': 1.0, 'bought': 2.0, 'enough': 1.0, 'i': 2.0, 'old': 1.0, 'to': 2.0, 'grasp': 1.0, 'concept': 1.0, 'there': 1.0, 'do': 1.0, 'getting': 1.0, 'and': 3.0}
Word element => {'added': 1.0, 'if': 1.0, 'would': 1.0, 'a': 1.0, 'return': 1.0, 'i': 3.0, 'it': 3.0, 'loud': 1.0, 'too': 1.0, 'but': 1.0, 'theory': 1.0, 'toy': 2.0, 'to': 3.0, 'be': 1.0, 'bought': 1.0, 'in': 1.0, 'sound': 1.0, 'and': 1.0, 'decided': 1.0, 'as': 2.0, 'soon': 1.0, 'realized': 1.0, 'volume': 1.0, 'that': 1.0, 'there': 1.0, 'way': 2.0, 's': 1.0, 'no': 1.0, 'great': 2.0, 'control': 2.0, 'the': 1.0}
Word element => {'things': 1.0, 'who': 1.0, 'throw': 1.0, 'toddlers': 1.0, 'not': 1.0, 'to': 1.0, 'music': 1.0, 'plays': 1.0, 'longer': 1.0, 'broke': 1.0, 'like': 1.0, 'and': 1.0, 'for': 2.0, 'about': 1.0, 'a': 1.0, 'great': 1.0, 'it': 1.0, 'month': 1.0, 'worked': 1.0, 'then': 1.0, 'no': 1.0}
Word element => {'owned': 1.0, 've': 1.0, 'in': 1.0, 'well': 1.0, 'held': 1.0, 'year': 1.0, '5': 1.0, 'actually': 1.0, 'his': 2.0, 'hold': 1.0, 'loves': 1.0, 'highly': 1.0, 'years': 1.0, 'toy': 1.0, 'i': 1.0, 'old': 2.0, 'now': 1.0, 'belonged': 1.0, 'lights': 1.0, 'to': 3.0, 'music': 2.0, 'we': 1.0, 'captivated': 1.0, 'by': 1.0, 'sister': 1.0, 'he': 1.0, 'this': 2.0, 'it': 3.0, 'sides': 1.0, 'him': 1.0, 'is': 1.0, 'up': 1.0, '6': 1.0, 'various': 1.0, 'hear': 1.0, 'my': 1.0, 'the': 5.0, 'five': 1.0, 'and': 3.0, 'attention': 1.0, 's': 2.0, 'recommend': 1.0, 'easy': 1.0, 'enough': 1.0, 'for': 1.0, 'month': 1.0, 'press': 1.0}
Word element => {'are': 1.0, 'that': 1.0, 'ones': 1.0, 'from': 1.0, 'activity': 1.0, 'daughter': 1.0, 'neat': 1.0, 'my': 1.0, 'disappointed': 1.0, 'was': 1.0, 'her': 1.0, 'different': 1.0, 'with': 1.0, 'on': 1.0, 'except': 1.0, 'notes': 1.0, 'same': 1.0, 'exactly': 1.0, 'i': 2.0, 'in': 1.0, 'the': 11.0, 'instrument': 2.0, 'they': 1.0, 'create': 1.0, 'toy': 2.0, 'sound': 2.0, 'don': 1.0, 'own': 1.0, 'musical': 1.0, 't': 1.0, 'a': 4.0, 'and': 1.0, 'play': 2.0, 'combine': 1.0, 'also': 1.0, 'sounds': 1.0, 'would': 4.0, 'each': 2.0, 'like': 2.0, 'true': 1.0, 'instruments': 2.0, 'thought': 1.0, 'just': 1.0, 'melody': 3.0, 'love': 1.0, 'cheap': 1.0, 'for': 1.0, 'how': 1.0, 'it': 1.0, 'orchestra': 2.0, 'example': 1.0, 'when': 1.0, 'tiny': 1.0, 'its': 1.0, 'horn': 1.0, 'flute': 1.0, 'lighter': 1.0, 'buttons': 1.0, 'real': 2.0, 'then': 1.0, 'center': 1.0, 'to': 1.0, 'all': 1.0, 'background': 1.0, 'button': 2.0, 'plays': 1.0, 'is': 1.0, 'pressed': 1.0, 'really': 3.0, 'music': 1.0, 'prefers': 1.0, 'but': 1.0}
Word element => {'touching': 1.0, 'within': 1.0, 'playing': 1.0, 'what': 1.0, 'comprehending': 1.0, 'entertained': 1.0, 'do': 1.0, 'issue': 1.0, 'and': 2.0, 'toy': 2.0, 'pseudo': 1.0, 'niece': 1.0, 'or': 1.0, 'minute': 1.0, 'old': 1.0, 'bought': 1.0, 'gift': 2.0, 'month': 1.0, 'of': 1.0, 'completely': 1.0, '6': 1.0, 'a': 3.0, 'for': 1.0, 'in': 2.0, 'no': 1.0, 'two': 1.0, 'hours': 1.0, 'was': 1.0, 'to': 1.0, 'had': 2.0, 'seemed': 1.0, 'first': 1.0, 'it': 1.0, 'with': 1.0, 'christmas': 1.0, 'this': 1.0, 'the': 4.0, 'so': 1.0, 'she': 3.0, 'as': 1.0, 'engrossed': 1.0}
Word element => {'tone': 1.0, 'produce': 1.0, 'key': 1.0, 'musicians': 1.0, 'makes': 2.0, 'are': 1.0, 'sounds': 1.0, 'item': 1.0, 'will': 2.0, 'months': 1.0, 'say': 1.0, 'perfect': 1.0, 'family': 1.0, 'just': 2.0, 'large': 1.0, 'sounding': 1.0, 'young': 1.0, 'that': 5.0, 'although': 1.0, 'jazz': 1.0, 'this': 5.0, 'be': 2.0, 'to': 7.0, 'electrical': 1.0, 'not': 1.0, 'give': 1.0, 'much': 1.0, 'found': 1.0, 'disappointing': 1.0, 'toy': 5.0, 'hair': 1.0, 'expected': 1.0, 'baby': 2.0, 'always': 1.0, 'them': 2.0, 'very': 1.0, 'heavy': 1.0, 'horrible': 1.0, 'issue': 1.0, 'and': 5.0, 'one': 1.0, 'too': 2.0, 'play': 1.0, '7': 1.0, 'up': 1.0, 'sound': 1.0, 'child': 3.0, 'with': 3.0, 'it': 4.0, 's': 3.0, 'a': 8.0, 'going': 1.0, 'for': 4.0, 'love': 1.0, 'at': 1.0, 'is': 4.0, 'handle': 1.0, 'create': 1.0, 'have': 2.0, 'i': 4.0, 'coming': 1.0, 'thing': 1.0, 'pick': 1.0, 'layered': 1.0, 'together': 1.0, 'jumbled': 1.0, 'want': 3.0, 'real': 1.0, 'benefit': 1.0, 'development': 1.0, 'if': 2.0, 'complex': 1.0, 'music': 3.0, 'tear': 1.0, 'xylophone': 1.0, 'the': 3.0, 'of': 2.0, 'off': 1.0, 'musically': 1.0, 'classical': 1.0, 'm': 1.0, 'from': 1.0, 'fun': 1.0, 'unpleasant': 1.0, 'offers': 1.0, 'out': 1.0, 'absolutely': 1.0, 'nothing': 1.0, 'my': 2.0, 'may': 1.0, 'me': 1.0, 'learning': 1.0, 'musical': 1.0, 'loud': 1.0, 'you': 2.0, 'your': 2.0, 'understanding': 1.0, 'listen': 1.0, 'or': 1.0, 'other': 1.0, 'simple': 1.0}
Word element => {'be': 1.0, 'to': 1.0, 'too': 1.0, 'find': 2.0, 'not': 1.0, 'quality': 1.0, 'but': 1.0, 'volume': 1.0, 'no': 1.0, 'month': 1.0, 'paper': 1.0, '8': 1.0, 'i': 2.0, 'old': 1.0, 'high': 1.0, 'my': 1.0, 'great': 1.0, 'the': 2.0, 'do': 1.0, 'and': 3.0, 'a': 1.0, 'is': 3.0, 'very': 2.0, 'son': 1.0, 'on': 1.0, 'other': 1.0, 'played': 1.0, 'durable': 1.0, 'loud': 1.0, 'it': 2.0, 'only': 1.0, 'with': 1.0, 'this': 1.0, 'christmas': 1.0, 'morning': 1.0, 'toy': 2.0, 'boxes': 1.0, 'than': 1.0, 'there': 1.0}
Word element => {'we': 1.0, 'baby': 1.0, 'many': 1.0, 'so': 1.0, 'opposed': 1.0, 'just': 1.0, 'toys': 1.0, 'of': 1.0, 'pleasant': 1.0, 'as': 1.0, 'and': 2.0, 'have': 1.0, 'lights': 1.0, 'the': 2.0, 'is': 1.0, 'enough': 1.0, 'stimulation': 1.0, 'colors': 1.0, 'to': 1.0, 'music': 2.0, 'actually': 1.0}
Word element => {'overall': 1.0, 'dying': 1.0, '3': 1.0, 'on': 1.0, 'between': 1.0, 'they': 1.0, 'playgroup': 1.0, 'for': 6.0, 'host': 1.0, 'wonderful': 3.0, 'but': 2.0, '2': 1.0, 'always': 1.0, 'months': 2.0, 'bought': 2.0, 'it': 7.0, 'sometime': 1.0, 'over': 1.0, 't': 1.0, 'a': 6.0, 'son': 1.0, 'second': 1.0, 'is': 4.0, 'music': 1.0, 'around': 1.0, 'toddlers': 2.0, 'in': 4.0, 'my': 2.0, 'owned': 1.0, 'wasn': 1.0, 'out': 1.0, 'times': 1.0, 'toy': 4.0, 'i': 8.0, 'well': 1.0, 'sixteen': 1.0, 'loves': 1.0, 'more': 1.0, 'babies': 2.0, '2008': 1.0, 'that': 2.0, 'young': 2.0, 'pushes': 1.0, 'november': 1.0, 'liked': 1.0, 'change': 1.0, '7': 1.0, 'children': 1.0, 'with': 2.0, 'this': 5.0, 'the': 8.0, 'doing': 1.0, 'love': 1.0, 'he': 2.0, 'to': 8.0, 'all': 1.0, 'as': 2.0, 'was': 1.0, 'and': 5.0, 'play': 1.0, 'probably': 1.0, '13': 1.0, 'years': 2.0, 'both': 1.0, 'product': 1.0, 'child': 1.0, 'toddler': 1.0, 'price': 1.0, 'd': 1.0, 'have': 3.0, 'sale': 1.0, 'buttons': 1.0, 'enjoy': 1.0, 'tend': 1.0, 'like': 2.0, 'come': 1.0, 'see': 1.0, 'when': 2.0, 'what': 1.0, 'purchased': 1.0, 'had': 1.0, 'are': 2.0, 'she': 2.0, 'baby': 1.0, 'shower': 1.0, 'once': 1.0, 'present': 1.0, 'dollars': 1.0, 'only': 1.0, 'think': 1.0, 'definitely': 2.0, 'now': 1.0, 'worth': 1.0, 'also': 1.0, 'dances': 1.0, 'batteries': 2.0, 'sounds': 1.0, 'note': 1.0, 'awful': 1.0}
Word element => {'music': 1.0, 'packed': 1.0, 'sure': 1.0, 'make': 1.0, 'have': 2.0, 'travel': 1.0, 'we': 1.0, 'wakes': 1.0, 'kids': 1.0, 'when': 2.0, 'is': 2.0, 'its': 1.0, 'now': 1.0, 'son': 1.0, 'up': 1.0, 'of': 1.0, 'toy': 1.0, 'i': 1.0, 'old': 1.0, 'nonstop': 1.0, 'played': 1.0, 'months': 1.0, 'my': 1.0, 'the': 2.0, 'has': 2.0, '16': 1.0, 'with': 1.0, 'he': 3.0, 'first': 1.0, 'this': 1.0, 'it': 1.0, 'reaches': 1.0, 'and': 1.0, 'blankets': 1.0, 'some': 1.0, 'things': 1.0, 'cube': 1.0, 'mine': 1.0, 'one': 1.0, 'for': 1.0}
Word element => {'at': 1.0, 'too': 1.0, 'flashing': 1.0, 'it': 1.0, 'with': 1.0, 'to': 1.0, 'lights': 1.0, 'play': 1.0, 'loves': 2.0, 'baby': 1.0, 'purchaed': 1.0, 'and': 1.0, 'as': 1.0, 'a': 1.0, 'member': 1.0, 'they': 1.0, 'the': 2.0, 'gift': 1.0, 'for': 1.0, 'lok': 1.0, 'family': 1.0, 'tell': 1.0, 'me': 1.0}
Word element => {'months': 1.0, '12': 1.0, 'every': 1.0, 'once': 1.0, 'only': 1.0, 'probably': 1.0, 'batteries': 1.0, 'changing': 1.0, 'tricky': 1.0, 'little': 1.0, 'worth': 1.0, 'even': 2.0, 'her': 2.0, 'both': 1.0, 'll': 1.0, 'favorite': 1.0, 'this': 2.0, 'them': 1.0, 'baby': 2.0, 'ages': 1.0, 'newborn': 1.0, 'my': 2.0, 'happy': 1.0, 'you': 1.0, 'when': 1.0, '6': 1.0, 'received': 1.0, 'though': 1.0, 'toddlerhood': 1.0, 'change': 1.0, 'but': 1.0, 'music': 1.0, 'and': 2.0, 'need': 1.0, '15': 1.0, 'toy': 3.0, 'well': 1.0, 'children': 1.0, 'gift': 1.0, 'still': 1.0, 'it': 5.0, 'she': 1.0, 'was': 2.0, 'all': 1.0, 'as': 1.0, 'to': 3.0, 'through': 1.0, 'took': 1.0, 'flight': 1.0, 'hr': 1.0, 'we': 1.0, 'a': 5.0, 's': 2.0, 'daughter': 1.0, 'enjoy': 1.0, 'listening': 1.0, 'international': 1.0, 'the': 1.0, 'keep': 1.0, 'at': 1.0, 'on': 1.0, '3': 1.0, 'infancy': 1.0, '5': 1.0, 'is': 1.0}
Word element => {'parent': 1.0, 'will': 1.0, 'time': 1.0, 'stop': 2.0, 'want': 1.0, 'particually': 1.0, 'nor': 1.0, 'continually': 1.0, 'fun': 1.0, 'from': 1.0, 'traveling': 1.0, 'useful': 1.0, 'switch': 1.0, 'off': 1.0, 'there': 1.0, 'batteries': 1.0, 'just': 2.0, 'complicated': 1.0, 'tune': 1.0, 'parents': 2.0, 'easy': 2.0, '3': 1.0, 'stand': 1.0, 'but': 1.0, 'only': 1.0, 'lean': 2.0, 'her': 1.0, 'use': 2.0, 'to': 8.0, 'weight': 1.0, 'bag': 1.0, 'light': 1.0, 'although': 1.0, 'tears': 1.0, 'two': 1.0, 'little': 2.0, 'recommend': 1.0, 'piece': 1.0, 'together': 2.0, 'corner': 1.0, 'prevent': 1.0, 'plays': 1.0, 'violin': 1.0, 'horn': 1.0, 'sharp': 1.0, 'piano': 1.0, 'harp': 1.0, 'seen': 1.0, 'loud': 1.0, 'you': 4.0, 'french': 1.0, 'sturdy': 1.0, 'metal': 1.0, 'instruments': 2.0, 'a': 4.0, 'sides': 1.0, 's': 2.0, 'than': 1.0, 'when': 2.0, 'what': 2.0, 'luggage': 1.0, 'playing': 2.0, 'an': 1.0, 'ever': 1.0, 'all': 1.0, 'our': 2.0, 'we': 1.0, 'then': 1.0, 'enough': 1.0, 'loved': 1.0, 'base': 1.0, 'took': 1.0, 'have': 1.0, 'six': 1.0, 'i': 3.0, 'by': 1.0, 'best': 1.0, 'at': 1.0, 'is': 10.0, 'the': 15.0, 'far': 1.0, 'love': 1.0, 'for': 7.0, 'more': 1.0, 'cube': 5.0, 'baby': 6.0, 'used': 1.0, 'toy': 3.0, 'educational': 3.0, 'music': 5.0, '2': 1.0, 'aa': 1.0, 'firm': 2.0, 'that': 3.0, 'into': 1.0, 'highly': 1.0, 'this': 2.0, 'it': 4.0, 'was': 1.0, 'orchestra': 1.0, 'planes': 1.0, 'and': 11.0, 'find': 1.0, '1': 1.0, 'side': 1.0, 'which': 4.0, 'good': 5.0, 'be': 1.0, 'played': 1.0, 'set': 1.0, 'five': 2.0, 'separately': 1.0, 'change': 1.0, 'takes': 1.0, 'up': 2.0, 'favorite': 1.0, 'smallish': 1.0, 'or': 2.0, 'depending': 1.0, 'on': 7.0, 'start': 1.0, 'portable': 1.0, 'any': 1.0, 'your': 4.0, 'touch': 2.0, 'ones': 1.0, 'one': 4.0, 'no': 4.0, 'press': 1.0, 'immediately': 1.0, 'second': 1.0, 'joins': 1.0, 'rides': 1.0, 'first': 1.0, 'annoying': 1.0, 'as': 1.0, 'flute': 1.0, 'falls': 1.0, 'heavy': 1.0, 'safe': 1.0, 'size': 1.0, 'covered': 1.0, 'with': 2.0, 'include': 1.0, 'car': 1.0, 'edges': 1.0, 'restaurants': 1.0, 'each': 1.0, 'in': 2.0, 'help': 1.0, 'rubber': 1.0, 'chewing': 1.0, 'us': 1.0, 'also': 3.0, 'not': 3.0, 'can': 2.0, 'so': 1.0, 'if': 2.0}
Word element => {'magic': 1.0, 'mozart': 1.0, 'advanced': 1.0, 'understand': 1.0, 'little': 1.0, 'mind': 1.0, 'with': 1.0, 'not': 1.0, 'sadly': 1.0, 'like': 1.0, 'i': 2.0, 'munchkin': 1.0, 'would': 1.0, 'he': 1.0, 'this': 4.0, 'what': 2.0, 'designed': 1.0, 'time': 1.0, 'broad': 1.0, 'appreciate': 1.0, 'child': 1.0, 'toy': 3.0, 'm': 1.0, 'years': 1.0, 'be': 1.0, 'small': 1.0, 'one': 1.0, 'cool': 1.0, 's': 1.0, 'a': 4.0, 't': 1.0, 'could': 1.0, 'product': 1.0, 'for': 4.0, 'cube': 1.0, 'parents': 1.0, 'is': 4.0, 'hopes': 1.0, 'it': 2.0, 'she': 1.0, 'musician': 1.0, 'least': 1.0, 'at': 1.0, 'patience': 1.0, 'teaches': 1.0, '5': 1.0, '10': 1.0, 'idea': 1.0, 'old': 1.0, 'too': 2.0, 'and': 2.0, 'possibly': 1.0, 'the': 7.0, 'reach': 1.0, 'then': 1.0, 'still': 2.0, 'by': 2.0, 'just': 3.0, 'good': 1.0, 'quite': 1.0, 'babies': 1.0, 'totally': 1.0, 'that': 1.0, 'but': 1.0, 'can': 2.0, 'my': 1.0, 'requires': 1.0, 'audience': 1.0}
Word element => {'lasted': 1.0, 'time': 1.0, 'that': 1.0, 'pricey': 1.0, 'just': 1.0, 'still': 1.0, 'i': 1.0, 'working': 1.0, 'batteries': 1.0, 'didn': 2.0, 'than': 1.0, 'for': 1.0, 'mozart': 1.0, 'cube': 1.0, 'my': 1.0, 'too': 1.0, 'less': 1.0, 'use': 1.0, 'enjoyed': 1.0, 'is': 1.0, 'changed': 1.0, 'really': 1.0, 'of': 2.0, 't': 2.0, 'the': 3.0, '2': 1.0, 'last': 1.0, 'son': 1.0, 'very': 1.0, 'amount': 1.0, 'long': 1.0, 'work': 1.0, 'but': 2.0, 'weeks': 1.0, 'it': 5.0, 'stopped': 1.0, 'after': 1.0}
Word element => {'plays': 1.0, 'mozart': 1.0, 'different': 1.0, 'several': 1.0, 'of': 1.0, 'tired': 1.0, 'get': 1.0, 'is': 1.0, 'benefit': 1.0, 'there': 1.0, 'with': 1.0, 'it': 5.0, 'don': 1.0, 'over': 3.0, 't': 1.0, 'we': 1.0, 's': 1.0, 'go': 1.0, 'll': 1.0, 'months': 1.0, 'on': 1.0, 'now': 1.0, 'for': 1.0, 'lights': 1.0, 'as': 1.0, 'to': 6.0, 'playing': 1.0, 'the': 7.0, 'd': 1.0, 'listen': 1.0, 'various': 1.0, 'listening': 1.0, 'loved': 1.0, 'this': 1.0, 'at': 1.0, '13': 1.0, 'added': 1.0, 'are': 1.0, 'flashing': 1.0, 'pleasant': 1.0, 'he': 1.0, 'how': 1.0, 'pieces': 1.0, 'were': 1.0, 'something': 1.0, 'if': 1.0, 'has': 1.0, 'well': 1.0, 'toy': 1.0, 'again': 1.0, 'twins': 1.0, 'when': 1.0, 'they': 3.0, 'play': 2.0, 'and': 7.0, 'stare': 1.0, 'old': 1.0, 'i': 2.0, 'changes': 1.0, 'son': 1.0, 'hearing': 1.0, 'from': 1.0, 'particular': 1.0, 'that': 2.0, 'loves': 1.0, 'off': 1.0, 'in': 1.0, 'turn': 1.0, 'sides': 1.0, 'him': 1.0, 'my': 2.0, 'often': 1.0, 'cube': 1.0, 'need': 1.0, 'adults': 1.0, 'distract': 1.0, 'music': 3.0, 'can': 1.0, 'right': 1.0, 'infants': 1.0, 'start': 2.0}
Word element => {'on': 1.0, 'your': 1.0, '34': 1.0, 'each': 1.0, '19': 1.0, 'only': 1.0, 'were': 1.0, 'they': 1.0, 'drum': 1.0, 'frog': 1.0, 'leap': 1.0, '21': 1.0, 'for': 1.0, 'nothing': 1.0, 'does': 1.0, 'is': 2.0, 'neat': 1.0, 'was': 1.0, 'it': 6.0, 'this': 2.0, 'went': 1.0, 'bought': 1.0, 'months': 2.0, 'about': 1.0, 'toy': 1.0, 'to': 2.0, 'our': 1.0, 'and': 6.0, 'out': 2.0, 'couple': 1.0, 'that': 1.0, 'loves': 2.0, 'anything': 1.0, 'old': 2.0, 'i': 2.0, '15': 1.0, 'spend': 1.0, 'bring': 1.0, 'plays': 1.0, 'pushed': 1.0, 'not': 1.0, 'heard': 1.0, 'every': 1.0, 'wouldn': 1.0, 'didn': 1.0, 'radio': 1.0, 'we': 2.0, 't': 2.0, 'the': 3.0, 'still': 1.0, 'son': 1.0, 'seem': 1.0, 'like': 1.0, 'then': 1.0, 'buttons': 1.0, 'afew': 1.0, 'mainly': 1.0, 'when': 1.0, 'times': 1.0, 'money': 1.0, 'music': 1.0, 'but': 1.0, 'now': 1.0, 'weeks': 1.0, 'just': 1.0, 'phonics': 1.0, 'of': 1.0, 'sat': 1.0, 'show': 1.0, 'him': 2.0, '99': 2.0, 'he': 4.0, 'how': 1.0}
Word element => {'her': 1.0, 'figure': 1.0, 'to': 1.0, 'colors': 1.0, 'toy': 1.0, 'month': 1.0, 'and': 2.0, 'most': 1.0, 'disabled': 1.0, 'work': 1.0, 'multiple': 1.0, 'fun': 1.0, 'children': 1.0, 'this': 2.0, 'with': 1.0, 'old': 1.0, 'i': 2.0, 'love': 1.0, 'for': 1.0, 'one': 1.0, 'trying': 1.0, 'niece': 1.0, 'bought': 1.0, 'my': 1.0, 'the': 1.0, '6': 1.0, 'they': 1.0, 'has': 1.0}
Word element => {'and': 1.0, 'diff': 1.0, 'push': 2.0, 'instruments': 1.0, 'with': 1.0, 'is': 3.0, 'if': 1.0, 'evolves': 1.0, 'music': 1.0, 'waaayy': 1.0, 'good': 1.0, 'carry': 1.0, 'sound': 1.0, 'way': 1.0, 'you': 1.0, 'them': 1.0, 'nice': 1.0, 'the': 2.0, 'heavy': 1.0, 'but': 1.0, 'to': 2.0, 'toooo': 1.0, 'for': 1.0, 'baby': 1.0}
Word element => {'down': 1.0, 'no': 1.0, 'there': 1.0, 'unfortunately': 1.0, 'living': 1.0, 'is': 3.0, 'whether': 1.0, 'have': 2.0, 'to': 1.0, 'all': 1.0, 'it': 5.0, 'loud': 2.0, 'this': 1.0, 'great': 1.0, 'idea': 1.0, 'too': 1.0, 'and': 2.0, 'baby': 1.0, 'toy': 1.0, 'safe': 1.0, 'fun': 1.0, 'at': 1.0, 'house': 2.0, 'actually': 1.0, 'for': 2.0, 'way': 3.0, 'parents': 1.0, 'my': 2.0, 'the': 4.0, 'playing': 1.0, 'upstairs': 1.0, 'so': 1.0, 'hear': 1.0, 'two': 1.0, 'i': 3.0, 'but': 1.0, 'can': 1.0, 'turn': 1.0, 'in': 2.0, 's': 2.0, 'a': 1.0, 'that': 1.0, 'totally': 1.0, 'different': 1.0, 'hearing': 1.0, 'part': 1.0, 'of': 1.0, 'child': 1.0, 'up': 1.0, 'if': 1.0, 'wondered': 1.0, 'room': 1.0, 'heard': 1.0, 'floors': 1.0}
Word element => {'gift': 1.0, 'baby': 1.0, 'choice': 1.0, 'excellent': 1.0, 'sturdy': 1.0, 'item': 1.0, 'designed': 1.0, 'incredibly': 1.0, 'an': 2.0, 'own': 1.0, 'her': 2.0, 'and': 7.0, 'beginning': 1.0, 'very': 2.0, 'from': 2.0, 'best': 1.0, 'changing': 1.0, 'this': 2.0, 'with': 1.0, 'well': 2.0, 'has': 3.0, 'pressing': 1.0, 'it': 4.0, 'she': 3.0, 'grandchild': 1.0, 'new': 1.0, 'select': 1.0, 'my': 1.0, 'purchase': 1.0, 'buttons': 1.0, 'far': 1.0, 'loved': 1.0, 'i': 1.0, 'thus': 1.0, 'have': 1.0, 'made': 1.0, 'for': 2.0, 'is': 4.0, 'interaction': 1.0, 'the': 5.0, 'stimulating': 1.0, 'gone': 1.0, 'herself': 1.0, 'begun': 1.0, 'just': 1.0, 'ever': 1.0, 'looking': 1.0, 'listening': 1.0, 'as': 3.0, 'to': 3.0, 'teether': 1.0, 'chewing': 1.0, 'grows': 1.0, 'on': 2.0, 'ends': 1.0, 'a': 2.0, 'music': 1.0, 'instruments': 1.0}
Word element => {'pliers': 1.0, 'else': 1.0, 'haven': 1.0, 'our': 1.0, 'used': 1.0, 'same': 1.0, 'a': 1.0, 'as': 2.0, 'gift': 1.0, 'baby': 1.0, 'toy': 1.0, 'everyone': 1.0, 'had': 1.0, 'received': 1.0, 'we': 2.0, 'for': 1.0, 'yet': 1.0, 't': 1.0, 'the': 2.0, 'work': 1.0, 'trouble': 1.0, 'but': 1.0, 'this': 1.0, 'it': 1.0, 'with': 1.0, 'packaging': 1.0}
Word element => {'listen': 1.0, 'to': 2.0, 'and': 1.0, 'unfortunately': 1.0, 'all': 1.0, 'idea': 1.0, 'at': 1.0, 'a': 2.0, 'is': 2.0, 'sound': 2.0, 'cube': 1.0, 'music': 1.0, 'hard': 1.0, 'it': 1.0, 'this': 1.0, 'tinny': 1.0, 'the': 2.0, 'great': 1.0, 't': 1.0, 'but': 1.0, 'doesn': 1.0, 'quality': 1.0, 'like': 1.0, 'very': 1.0, 'terrible': 1.0, 'violin': 2.0, 'overall': 1.0, 's': 1.0}
Word element => {'time': 1.0, 'long': 1.0, 'should': 1.0, 'top': 1.0, 'other': 1.0, 'then': 1.0, 'solo': 1.0, 'have': 1.0, 'built': 1.0, 'you': 1.0, 'song': 1.0, 'main': 1.0, 'the': 1.0, 'contributing': 1.0, 'while': 1.0, 'off': 1.0, 'and': 2.0, 'but': 1.0, 'cube': 2.0, 'piano': 1.0, 'be': 1.0, 'first': 1.0, 'this': 1.0, 'to': 1.0, 'turned': 1.0, 'was': 1.0, 'skeptical': 1.0, 'well': 1.0, 'a': 4.0, 'on': 3.0, 'i': 1.0, 'last': 1.0, 'add': 1.0, 'lot': 1.0, 'at': 1.0, 'fun': 1.0, 'of': 1.0, 'there': 1.0, 'that': 1.0, 'are': 1.0, 'little': 1.0, 'instruments': 2.0, 'each': 1.0, 'is': 1.0, 'side': 1.0, 'can': 2.0}
Word element => {'cube': 1.0, 'them': 1.0, 'on': 1.0, 'your': 1.0, 'want': 1.0, 'bucks': 1.0, 'expect': 1.0, 'time': 2.0, 'for': 1.0, 'passes': 2.0, 'and': 2.0, '20': 1.0, 'noise': 1.0, 'plastic': 1.0, 'many': 1.0, 'very': 1.0, 'son': 2.0, 'gets': 1.0, 'you': 1.0, 'when': 1.0, 'the': 6.0, 'me': 1.0, 'to': 1.0, 'all': 3.0, 'like': 1.0, 'these': 1.0, 'knew': 1.0, 'thing': 1.0, 'badly': 1.0, 'this': 1.0, 'makes': 1.0, 'tune': 1.0, 'piece': 1.0, 'with': 1.0, 'it': 1.0, 'music': 1.0, 'most': 1.0, 'can': 1.0, 'accept': 1.0, 'note': 1.0, 'child': 1.0, 'crap': 1.0, 'sound': 2.0, 'toys': 1.0, 'of': 4.0, 'good': 1.0, 'harmonica': 1.0, 'is': 2.0, 'holds': 1.0, 'what': 2.0, 'his': 1.0, 'into': 1.0, 'that': 2.0, 'violin': 1.0, 'ears': 1.0, 'other': 1.0, 'get': 2.0, 'kind': 1.0, 'sour': 1.0, 'out': 1.0, 'wouldnt': 1.0, 'insturments': 2.0, 'a': 2.0, 'plays': 2.0, 'together': 1.0, 'i': 2.0, 'otherwise': 1.0, 'do': 1.0, 'its': 1.0, 'my': 2.0, 'another': 1.0}
Word element => {'who': 1.0, 'babies': 1.0, 'love': 1.0, 'great': 1.0, 'a': 1.0, 'my': 1.0, 'and': 1.0, '1': 1.0, 'for': 1.0, 'year': 1.0, 'product': 1.0, 'toy': 1.0, 'music': 2.0, 'old': 1.0, 'son': 1.0, 'on': 2.0, 'turning': 1.0, 'loves': 1.0, 'this': 2.0, 'its': 1.0, 'off': 1.0}
Word element => {'sounds': 1.0, 'squeaking': 1.0, 'jingling': 1.0, 'nice': 1.0, 'makes': 1.0, 'which': 1.0, 'moose': 1.0, 'see': 1.0, 'was': 2.0, 'onto': 1.0, 'bought': 1.0, 'crinkling': 1.0, 'hung': 1.0, 'if': 2.0, 'her': 3.0, 'terrible': 1.0, 'thought': 1.0, 'my': 1.0, 'sounded': 1.0, 'baby': 1.0, 'daughter': 1.0, 'returned': 1.0, 'got': 1.0, 'worried': 1.0, 'have': 1.0, 'she': 3.0, 'it': 11.0, 'loud': 2.0, 'with': 1.0, 'gift': 1.0, 'holding': 1.0, 'i': 4.0, 'mortimer': 1.0, 'to': 2.0, 'as': 1.0, 'grow': 1.0, 'loves': 1.0, 'into': 1.0, 'this': 1.0, 'scared': 1.0, 'weren': 1.0, 'enough': 1.0, 'the': 1.0, 'so': 2.0, 'a': 1.0, 'might': 1.0, 't': 1.0, 's': 1.0, 'damage': 1.0, 'hearing': 1.0, 'while': 1.0, 'close': 1.0, 'and': 3.0, 'play': 1.0, 'would': 2.0, 'alamaze': 1.0}
Word element => {'with': 1.0, 'delighted': 1.0, 'been': 1.0, 'parents': 1.0, 'love': 1.0, 'also': 1.0, 'toy': 1.0, 'children': 1.0, 'toddler': 1.0, 'grew': 1.0, 'music': 1.0, 'about': 1.0, 'baby': 1.0, 'conducted': 1.0, 'born': 1.0, 'have': 3.0, 'was': 3.0, 'turned': 1.0, 'their': 2.0, 'grandchildren': 1.0, 'of': 2.0, 'child': 1.0, 'up': 1.0, 'is': 1.0, 'family': 2.0, 'a': 2.0, 'we': 2.0, 'this': 2.0, 'first': 2.0, 'whom': 1.0, 'it': 5.0, 'given': 3.0, 'i': 1.0, 'when': 4.0, 'by': 1.0, 'members': 1.0, 'learned': 2.0, 'present': 1.0, 'grandson': 1.0, 'one': 1.0, 'listened': 1.0, 'infant': 1.0, 'press': 1.0, 'on': 1.0, 'the': 3.0, 'age': 1.0, 'stood': 1.0, 'friend': 1.0, 'an': 1.0, 'musical': 1.0, 'components': 1.0, 'sides': 1.0, 'all': 1.0, 'to': 6.0, 'our': 3.0, 'as': 1.0, 'he': 3.0, 'how': 1.0, 'and': 3.0, 'then': 1.0}
Word element => {'likes': 1.0, 'how': 1.0, 'see': 1.0, 'will': 1.0, 'back': 1.0, 'get': 1.0, 'after': 1.0, 'update': 1.0, 'so': 1.0, 'opens': 1.0, 'she': 2.0, 'time': 1.0, 'of': 1.0, 'i': 3.0, 'plenty': 1.0, 'niece': 1.0, 'when': 1.0, 'playing': 2.0, 'for': 1.0, 'in': 2.0, 'wait': 1.0, 'though': 1.0, 'my': 1.0, 'till': 1.0, 'bought': 1.0, 'with': 2.0, 'it': 6.0, 'can': 2.0, 'came': 1.0, 'box': 1.0, 'even': 1.0, 'to': 1.0, 'was': 1.0, 'still': 1.0, 'blew': 1.0, 'the': 1.0, 't': 1.0}
Word element => {'eachother': 1.0, 'like': 1.0, 'lot': 1.0, 'down': 1.0, 'loveonly': 1.0, 'off': 1.0, 'turn': 1.0, 'stop': 1.0, 'dosn': 1.0, 'one': 1.0, 'touches': 1.0, 'your': 1.0, 'song': 1.0, 'second': 1.0, 'violin': 1.0, 'start': 1.0, 'i': 1.0, 'restarting': 1.0, 'mix': 1.0, 'instrament': 2.0, 'not': 1.0, 'things': 1.0, 'unless': 1.0, 'when': 1.0, 'you': 2.0, 'gift': 1.0, 't': 1.0, 'a': 5.0, 'this': 2.0, 'he': 1.0, 'it': 7.0, 'really': 1.0, 'is': 3.0, 'side': 2.0, 'year': 1.0, 'son': 1.0, 'touch': 1.0, 'ok': 1.0, 'now': 1.0, 'likes': 1.0, 'has': 2.0, 'toy': 1.0, 'as': 1.0, 'to': 4.0, 'any': 1.0, 'flute': 1.0, 'old': 1.0, 'until': 1.0, '1': 1.0, 'great': 1.0, 'playing': 1.0, 'without': 1.0, 'the': 6.0, 'throw': 1.0, '2nd': 1.0, 'got': 1.0, 'sound': 1.0, 'child': 1.0, 'damage': 1.0, 'music': 1.0, 'can': 1.0, 'yet': 1.0, 'love': 2.0, 'for': 1.0, 'hate': 1.0, 'cube': 1.0, 'rubber': 1.0, 'enjoys': 1.0, 'floors': 1.0, 'corners': 1.0, 'time': 1.0, 'so': 1.0, 'my': 1.0, 'are': 1.0, 'and': 4.0, 'too': 1.0, 'toys': 1.0, 'done': 2.0, 'press': 1.0, 'of': 1.0, 'will': 1.0, 'add': 1.0, 'each': 1.0, 'something': 1.0, 'new': 2.0}
Word element => {'older': 1.0, 'small': 1.0, 'toy': 1.0, 'recommend': 1.0, 'highly': 1.0, 'would': 1.0, 'big': 1.0, 'not': 1.0, 'children': 2.0, 'wheelchair': 1.0, 'from': 1.0, 'drops': 1.0, 'it': 4.0, 'he': 3.0, 'this': 3.0, 'with': 1.0, 'and': 4.0, 'difficult': 1.0, 'abilities': 1.0, 'perfectly': 1.0, 'sound': 1.0, 'up': 1.0, 'light': 1.0, 'toys': 1.0, 'who': 1.0, 'grandson': 1.0, 'to': 1.0, 'special': 2.0, 'purchased': 1.0, 'operate': 1.0, 'that': 2.0, 'loves': 1.0, 'good': 2.0, 'is': 4.0, 'limited': 1.0, 'i': 3.0, '4': 1.0, 'make': 1.0, 'on': 1.0, 'find': 1.0, 'durable': 1.0, 'ones': 1.0, 'deal': 1.0, 'the': 1.0, 'can': 1.0, 'got': 1.0, 'manipulate': 1.0, 'his': 3.0, 'my': 1.0, 'fits': 1.0, 'quality': 1.0, 'very': 1.0, 's': 1.0, 'a': 2.0, 'price': 1.0, 'for': 2.0, 'product': 1.0, 'needs': 3.0, 'so': 1.0, 'easily': 1.0, 'when': 1.0}
Word element => {'world': 1.0, 'in': 1.0, 'toy': 1.0, 'best': 1.0, 'the': 2.0, 'is': 1.0, 'on': 1.0, 'we': 1.0, 'third': 1.0, 're': 1.0, 'our': 1.0, 'grandchild': 1.0, 'second': 1.0, 'yep': 1.0, 'cube': 1.0, 'mozart': 1.0, 'this': 1.0}
Word element => {}
Word element => {'not': 1.0, 'special': 1.0, 'same': 1.0, 'at': 1.0, 's': 1.0, 'a': 3.0, 'nothing': 1.0, 'slightly': 1.0, 'with': 3.0, 'mos': 1.0, 'loud': 1.0, 'christmas': 1.0, 'this': 3.0, 'only': 1.0, 'ever': 1.0, 'plays': 2.0, 'about': 2.0, 'old': 1.0, 'my': 2.0, 'got': 1.0, 'moments': 1.0, 'daughter': 2.0, 'when': 3.0, 'time': 1.0, 'interest': 1.0, 'for': 2.0, 'liked': 1.0, 'recommend': 1.0, 'was': 2.0, 'now': 1.0, 'month': 1.0, 'it': 6.0, 'annoying': 1.0, 'she': 5.0, 'show': 1.0, 'rarely': 1.0, '6': 1.0, 'or': 1.0, 'two': 1.0, 'amused': 1.0, 'never': 1.0, 'would': 2.0, 'did': 1.0, 'music': 1.0, 'in': 1.0, 'toy': 2.0, 'lasted': 1.0, 'few': 1.0, 'the': 2.0, 'little': 1.0, 'get': 1.0, 'instruments': 1.0, 'does': 1.0, 'because': 1.0, 'all': 1.0, 'and': 1.0, 'play': 1.0}
Word element => {'teaching': 1.0, 'great': 1.0, 'fuller': 1.0, 'richer': 1.0, 'toy': 1.0, 'be': 1.0, 'and': 1.0, 'quality': 1.0, 'got': 1.0, 'family': 1.0, 'sound': 1.0, 'granddaughter': 1.0, 'less': 1.0, 'my': 1.0, 'the': 3.0, 'could': 1.0, 'for': 1.0, 'enjoyed': 1.0, 'none': 1.0, 'by': 1.0, 'griffiths': 1.0, 'this': 1.0, 'whole': 1.0}
Word element => {'cube': 1.0, 'bach': 1.0, 'a': 1.0, 'we': 1.0, 'review': 1.0, 'reading': 1.0, 'is': 1.0, 'would': 1.0, 'munchkin': 1.0, 'at': 1.0, 'anyone': 1.0, 'but': 1.0, 'instruments': 1.0, 'bleeps': 1.0, 'of': 2.0, 'understand': 1.0, 'plus': 1.0, 'love': 2.0, 'for': 2.0, 'twins': 1.0, 'they': 2.0, 'along': 1.0, 'adults': 1.0, 'other': 1.0, 'subtracting': 1.0, 'adding': 1.0, 'the': 4.0, 'are': 3.0, 'with': 1.0, 'functionality': 1.0, 'and': 3.0, 'too': 1.0, 'variety': 1.0, 'by': 1.0, 'less': 1.0, 'actual': 1.0, 'our': 1.0, 'to': 1.0, 'young': 1.0, 'old': 1.0, 'still': 1.0, 'seven': 1.0, 'sounds': 1.0, 'babble': 1.0, 'fascinated': 1.0, 'month': 1.0, 'annoying': 1.0, 'happily': 1.0, 'them': 1.0, 'this': 2.0, 'tunes': 1.0, 'melodies': 1.0, 'considerably': 1.0, 'than': 1.0, 'mozart': 1.0, 'many': 1.0, 'musical': 1.0, 'toys': 1.0, 'if': 1.0}
Word element => {'cube': 1.0, 'magic': 1.0, 'mozart': 1.0, 'about': 1.0, 'other': 1.0, 'themunchkin': 1.0, 'reading': 1.0, 'from': 1.0, 'what': 1.0, 'exactly': 1.0, 'gifted': 1.0, 'bright': 1.0, 'a': 2.0, 'expected': 1.0, 'toy': 2.0, 'age': 1.0, 'instrument': 2.0, 'this': 1.0, 'love': 1.0, 'for': 2.0, 'one': 1.0, '1': 1.0, 'i': 2.0, 'old': 1.0, 'you': 1.0, 'is': 3.0, 'will': 2.0, 'sounds': 2.0, 'it': 3.0, 'she': 1.0, 'colorful': 2.0, 'my': 1.0, 'the': 6.0, 'year': 1.0, 'keep': 1.0, 'at': 1.0, 'fun': 1.0, 'musically': 1.0, 'of': 1.0, 'are': 2.0, 'to': 3.0, 'actual': 1.0, 'and': 2.0, 'similar': 1.0, 'block': 2.0, 'press': 1.0, 'depicts': 1.0, 'be': 1.0, 'musical': 1.0, 'niece': 1.0, 'buttons': 1.0, 'hear': 1.0, 'reviews': 1.0, 'they': 1.0, 'think': 1.0, 'make': 1.0, 'if': 1.0, 'looking': 2.0, 'true': 1.0, 'tone': 1.0}
Word element => {'soul': 1.0, 'the': 1.0, 'food': 1.0, 'all': 1.0, 'relaxing': 1.0, 'very': 1.0, 'our': 1.0, 'music': 1.0, 'musical': 1.0, 'child': 1.0, 'it': 1.0, 'for': 1.0, 'playing': 1.0, 'loves': 1.0, 'this': 1.0, 'grand': 1.0, 'cube': 1.0, 'with': 1.0, 'is': 2.0}
Word element => {'about': 1.0, 'how': 1.0, 'pretty': 1.0, 'maestro': 1.0, 'but': 1.0, 'valid': 1.0, 'comments': 1.0, 'rating': 1.0, 'could': 1.0, 'priceless': 1.0, 'brings': 1.0, 'fun': 1.0, 'value': 1.0, 'fantastic': 1.0, 'price': 1.0, 'its': 1.0, 'continues': 1.0, 'bottom': 1.0, 'conductor': 1.0, 'orchestra': 1.0, 'foot': 1.0, '3': 1.0, 'will': 1.0, 'version': 1.0, 'along': 1.0, 'various': 1.0, 'deactivating': 1.0, 'like': 1.0, 'sounds': 1.0, 'change': 1.0, 'focuses': 1.0, 'when': 1.0, 'blocks': 1.0, 'plays': 1.0, 'winner': 2.0, 'music': 1.0, 'slap': 1.0, 'other': 1.0, 'give': 1.0, 'there': 1.0, 'apparently': 1.0, 'enticingly': 1.0, 'much': 1.0, 'rounded': 1.0, 'youngster': 1.0, 'remains': 1.0, 'double': 1.0, 'although': 1.0, 'or': 5.0, 'on': 2.0, 'a': 12.0, 'taste': 1.0, 'whether': 1.0, 'manufacturers': 1.0, 'press': 1.0, 'really': 3.0, 'battery': 1.0, 'than': 2.0, 'does': 1.0, 'off': 1.0, 'first': 2.0, 'chip': 1.0, 'this': 3.0, 'designing': 1.0, 'at': 1.0, 'activate': 1.0, 'determining': 1.0, '7': 1.0, 'favorite': 2.0, 'up': 2.0, 'relief': 1.0, 'panel': 4.0, 'get': 1.0, 'batteries': 1.0, 'feels': 1.0, 'safe': 1.0, 'attracted': 1.0, 'we': 2.0, 'baby': 2.0, 'rubber': 1.0, 'was': 2.0, 'moisture': 1.0, '100': 1.0, 'earlier': 2.0, 'mos': 1.0, 'with': 7.0, 'appendages': 1.0, 'of': 2.0, 'old': 1.0, 'the': 30.0, 'living': 1.0, 'reasons': 1.0, 'update': 3.0, 'months': 2.0, 'except': 1.0, 'i': 5.0, 'line': 1.0, 'well': 4.0, '4': 2.0, 'cacophony': 1.0, 'so': 1.0, 'sing': 1.0, 'included': 1.0, 'last': 1.0, 'delightful': 1.0, 'job': 1.0, 'straight': 1.0, 'these': 2.0, 'boom': 1.0, 'to': 14.0, 'right': 1.0, 'them': 1.0, 'star': 2.0, 'an': 3.0, 'way': 1.0, 'all': 2.0, 'control': 2.0, 'day': 2.0, 'stars': 2.0, 'download': 1.0, 'him': 1.0, 'pressure': 1.0, 'he': 9.0, 'lights': 1.0, 'lost': 1.0, 'tunes': 2.0, 'aimed': 1.0, 'gives': 1.0, '50': 1.0, 'tap': 1.0, 'who': 1.0, 'from': 4.0, 'slot': 1.0, 'as': 2.0, 'less': 1.0, 'grown': 1.0, 'panels': 3.0, 'fascinated': 1.0, 'if': 2.0, 'still': 4.0, 'itself': 1.0, 'only': 1.0, 'for': 6.0, 'purchase': 1.0, 'noise': 2.0, 'wife': 1.0, 'very': 2.0, 'flash': 2.0, 'errant': 1.0, 'have': 2.0, 'his': 4.0, 'around': 1.0, '8': 1.0, 'toy': 6.0, 'manipulate': 1.0, 'activating': 1.0, 'babies': 1.0, 'cube': 3.0, 'that': 4.0, 'can': 2.0, 'turn': 1.0, 'is': 12.0, 'corners': 1.0, 'and': 15.0, 'just': 2.0, 'power': 1.0, 'light': 1.0, 'fire': 1.0, 'making': 1.0, 'easily': 1.0, 'seep': 1.0, 'usb': 1.0, 'contacts': 1.0, 'destroy': 1.0, 'take': 1.0, 'inside': 1.0, 'been': 2.0, 'went': 1.0, 'keeping': 1.0, 'far': 1.0, 'stick': 1.0, '5': 3.0, 'one': 3.0, 'cars': 1.0, 'spit': 1.0, 'wetness': 1.0, 's': 4.0, 'are': 4.0, 'my': 2.0, 'hour': 1.0, 'hand': 2.0, 'in': 1.0, 'second': 1.0, 'chosen': 1.0, 've': 1.0, 'while': 2.0, 'eight': 1.0, 'songs': 1.0, 'solo': 1.0, 'would': 3.0, 'either': 2.0, 'casual': 1.0, 'it': 17.0, 'be': 4.0, 'nice': 2.0, 'little': 1.0, 'started': 2.0, 'excellent': 1.0, 'toys': 2.0, 'nearly': 2.0, 'additional': 1.0, 'dollars': 1.0, 'rechargeable': 1.0, 'operating': 1.0, 'tune': 1.0, 'rather': 1.0, 'parents': 1.0, 'port': 1.0, 'sound': 1.0, 'welcome': 1.0, 'set': 1.0, 'heard': 1.0, 'french': 1.0, 'horn': 1.0, 'before': 1.0, 'twinkle': 2.0, 'drags': 1.0, 'clear': 1.0, 'over': 2.0, 'six': 1.0, 'ability': 1.0, 'sips': 1.0, 'by': 2.0, 'after': 1.0, 'alkalines': 1.0, 'frown': 1.0, 'outset': 1.0, 'month': 1.0, '2': 1.0, 'going': 1.0, 'mentioned': 1.0, 'having': 1.0, 'failed': 1.0, 'use': 1.0, 'strong': 1.0, '6': 1.0, 'designed': 2.0, 'go': 1.0, 'needing': 1.0, 'has': 3.0, 'enjoys': 2.0, 'our': 4.0, 'replaced': 1.0, 'both': 1.0, 'son': 1.0, 'now': 1.0, 'box': 1.0}
Word element => {'great': 1.0, 'so': 1.0, 'itself': 1.0, 'visual': 1.0, 'brighter': 1.0, 'do': 1.0, 'becod': 1.0, 'boring': 1.0, 'on': 1.0, 'sounds': 1.0, 'although': 1.0, 'up': 2.0, 'quite': 1.0, 'good': 1.0, 'and': 4.0, 'he': 1.0, 'nephew': 1.0, 'becos': 1.0, 'we': 3.0, 't': 1.0, 'the': 4.0, 'his': 1.0, 'distract': 1.0, '5m': 1.0, 'sit': 1.0, 'cube': 3.0, 'product': 1.0, 'lights': 1.0, 'for': 2.0, 'love': 1.0, 'yet': 1.0, 'i': 2.0, 'absolutely': 1.0, 'still': 1.0, 'bought': 1.0, 'my': 1.0, 'colorful': 1.0, 'it': 3.0, 'annoying': 1.0, 'more': 1.0, 'is': 4.0, 'want': 1.0, 'own': 1.0, 'an': 1.0, 'were': 1.0, 'entertainer': 1.0, 'him': 2.0, 'but': 1.0, 'can': 2.0, 'anytime': 1.0, 'magic': 1.0, 'start': 1.0, 'subtract': 1.0, 'are': 1.0, 'not': 2.0, 'you': 1.0, 'add': 1.0, 'to': 1.0, 'any': 1.0, 'wish': 1.0, 'this': 2.0, 'instrument': 1.0}
Word element => {'working': 1.0, 'sure': 1.0, 'make': 1.0, 'should': 1.0, 'you': 1.0, 'before': 1.0, 'properly': 2.0, 'worked': 1.0, 'actually': 2.0, 'one': 1.0, 'disappointed': 1.0, 'extremely': 1.0, 'a': 1.0, 'definitely': 1.0, 'and': 2.0, 'send': 1.0, 'cute': 1.0, 'child': 1.0, 'was': 3.0, 'toy': 1.0, 'is': 1.0, 'people': 1.0, 'really': 1.0, 'of': 1.0, 'only': 1.0, 'this': 1.0, 'it': 2.0, 'with': 1.0, 'the': 4.0, 'something': 1.0, 'thought': 1.0, 'hit': 1.0, 'that': 2.0, 'however': 1.0, 'gave': 1.0, 'too': 1.0, 'two': 1.0, 'product': 1.0, 'bought': 1.0, 'i': 3.0, 'products': 1.0}
Word element => {'needed': 1.0, 'if': 1.0, 'three': 1.0, 'and': 2.0, 'daily': 1.0, 'with': 2.0, 'first': 2.0, 'played': 1.0, 'parents': 1.0, 'the': 1.0, 'now': 1.0, 'son': 1.0, 'for': 2.0, 'love': 1.0, 'brother': 1.0, 'our': 1.0, 'as': 1.0, 'toy': 1.0, 'years': 1.0, 'great': 1.0, 'grand': 1.0, 'would': 1.0, 'he': 1.0, 'received': 1.0, 'almost': 1.0, 'his': 3.0, 'b': 1.0, 'from': 1.0, 'later': 1.0, 'this': 1.0, 'soft': 1.0, 'younger': 1.0, 's': 1.0, 'relaxing': 1.0, 'not': 1.0, 'it': 4.0, 'annoying': 1.0, 'like': 1.0, 'many': 1.0, 'is': 1.0, 'toys': 1.0, 'sure': 1.0, 'be': 1.0, 'can': 1.0, 'music': 1.0, 'day': 1.0, 'plays': 1.0, 'buy': 1.0, 'again': 1.0}
Word element => {'fantastic': 1.0, 'shelf': 1.0, 'book': 1.0, 'agree': 1.0, 'do': 1.0, 'however': 1.0, 'appreciate': 1.0, 'older': 1.0, 'bit': 1.0, 'he': 2.0, 'think': 1.0, 'trying': 1.0, 'at': 2.0, 'looking': 2.0, '5': 1.0, 'to': 3.0, 'this': 1.0, 'loud': 1.0, 'me': 1.0, 'like': 1.0, 'inclined': 1.0, 'seems': 2.0, 'the': 5.0, 'great': 2.0, 'might': 1.0, 'a': 4.0, 't': 1.0, 'flashing': 1.0, 'looks': 1.0, 'it': 5.0, 'month': 1.0, 'baby': 1.0, 'likes': 1.0, 'toy': 2.0, 'tune': 1.0, 'old': 1.0, 'i': 2.0, 'my': 2.0, 'reviewer': 1.0, 'lights': 1.0, 'for': 2.0, 'love': 1.0, 'seem': 1.0, 'son': 1.0, 'eat': 1.0, 'music': 1.0, 'doesn': 1.0, 'and': 2.0, 'too': 2.0, 'or': 1.0, 'out': 1.0, 'once': 1.0, 'musically': 1.0, 'of': 1.0, 'that': 1.0, 'pushing': 1.0, 'more': 1.0, 'is': 3.0, 'defect': 1.0, 'perhaps': 1.0, 'previous': 1.0, 'buttons': 1.0}
Word element => {'and': 1.0, 'sounds': 1.0, 'my': 2.0, 'the': 2.0, 'son': 1.0, 'is': 1.0, 'last': 1.0, 'by': 1.0, 'lights': 1.0, 'aunt': 1.0, 'was': 1.0, 'to': 1.0, 'toy': 3.0, 'music': 1.0, 'loves': 1.0, 'favorite': 1.0, 'given': 1.0, 'for': 1.0, 'all': 1.0, 'different': 2.0, 'plays': 1.0, 'with': 1.0, 'christmas': 1.0, 'this': 3.0, 'he': 1.0, 'it': 1.0, 'his': 1.0}
Word element => {'it': 1.0, 'on': 1.0, 'pounding': 1.0, 'start': 1.0, 'didn': 1.0, 'babies': 1.0, 'to': 1.0, 'music': 1.0, 'cube': 1.0, 'our': 1.0, 'enjoy': 1.0, 'they': 1.0, 'take': 1.0, 'this': 1.0, 't': 1.0, 'long': 1.0}
Word element => {'button': 1.0, 'part': 1.0, 'each': 1.0, 'to': 2.0, 'going': 1.0, 'of': 1.0, 'he': 3.0, 'loved': 1.0, 'little': 1.0, 'it': 1.0, 'instead': 1.0, 'hopefully': 1.0, 'completely': 1.0, 'listen': 1.0, 'when': 1.0, 'next': 1.0, 'is': 1.0, 'a': 1.0, 'the': 1.0, 'older': 1.0, 'll': 1.0}
Word element => {'looking': 1.0, 'not': 1.0, 're': 1.0, 'house': 1.0, 'of': 1.0, 'on': 1.0, 'plan': 1.0, 'instruments': 1.0, 'music': 1.0, 'real': 2.0, 'hear': 1.0, 'prefer': 1.0, 'them': 1.0, 'quality': 1.0, 'they': 2.0, '16': 1.0, 'long': 1.0, 'd': 1.0, 'both': 1.0, 'durable': 1.0, 'it': 7.0, 'loud': 1.0, 'with': 2.0, 'for': 1.0, 'attention': 1.0, 'a': 1.0, 's': 2.0, 'volume': 1.0, 'that': 1.0, 'keeps': 1.0, 'my': 2.0, 'unfortunately': 1.0, 'adore': 1.0, 'when': 2.0, 'also': 2.0, 'sound': 1.0, 'this': 1.0, 'kids': 1.0, 'wish': 1.0, 'months': 1.0, 'smuggling': 1.0, 'extremely': 1.0, 'much': 1.0, '5': 1.0, 'room': 1.0, 'has': 1.0, 'toy': 1.0, 'to': 3.0, 'had': 1.0, 'chagrin': 1.0, 'no': 1.0, 'control': 1.0, 'the': 2.0, 'time': 1.0, 'so': 1.0, 'out': 1.0, 'obnoxiously': 1.0, 'i': 4.0, 'have': 1.0, 'leave': 1.0, 'and': 3.0, 'play': 1.0, 'their': 1.0, 'better': 1.0}
Word element => {'older': 1.0, 'he': 1.0, 'bit': 2.0, 'individual': 1.0, 'realistic': 1.0, 'really': 1.0, 'because': 1.0, 'just': 1.0, 'little': 2.0, 'of': 1.0, 'snob': 1.0, 'were': 1.0, 'great': 2.0, 'is': 1.0, 'more': 1.0, 'be': 1.0, 'musical': 1.0, 'toy': 2.0, 'i': 4.0, 'for': 2.0, 'instrument': 1.0, 'wish': 1.0, 'idea': 2.0, 'am': 1.0, 'teacher': 1.0, 'better': 1.0, 'music': 1.0, 'but': 1.0, 'it': 2.0, 'with': 1.0, 'sounds': 2.0, 'will': 1.0, 'seems': 1.0, 'like': 1.0, 'might': 1.0, 'a': 7.0, 'could': 1.0, 'they': 1.0, 'have': 1.0, 'done': 1.0, 'and': 1.0, 'believe': 1.0, 'the': 4.0, 'job': 1.0, 'my': 1.0, 'gets': 1.0, 'still': 1.0, 'son': 1.0, 'as': 1.0, 'enjoy': 1.0}
Word element => {'grands': 1.0, 'our': 1.0, 'together': 1.0, 'play': 1.0, 'them': 1.0, 'then': 1.0, 'toys': 1.0, 'all': 3.0, 'individual': 1.0, 'gift': 1.0, 'to': 4.0, 'musical': 1.0, 'toy': 1.0, 'baby': 1.0, 'go': 1.0, 'my': 1.0, 'the': 2.0, 'of': 1.0, '34': 2.0, 'best': 1.0, 'is': 1.0, 'this': 3.0, 'sounds': 1.0, 'i': 1.0, 'hear': 1.0, 'listen': 1.0, 'chance': 1.0, 'one': 1.0, 'love': 2.0, 'instruments': 1.0, 'and': 1.0}
Word element => {'again': 1.0, 'thing': 1.0, 'so': 1.0, 'bag': 1.0, 'packing': 1.0, 'points': 2.0, 'big': 2.0, 'after': 1.0, 'month': 1.0, 'undamaged': 1.0, 'final': 1.0, 'he': 1.0, 'wks': 1.0, 'tarnation': 1.0, 'about': 2.0, 'ordered': 1.0, 'present': 1.0, 'child': 1.0, 'by': 1.0, 'paid': 1.0, 'one': 2.0, 'sent': 1.0, 'think': 1.0, 's': 1.0, 'maybe': 1.0, 'least': 1.0, 'oversized': 1.0, 'ended': 1.0, 'back': 1.0, 'original': 1.0, 'getting': 1.0, 'without': 1.0, 'parts': 1.0, 'together': 1.0, 'were': 2.0, 'got': 2.0, 'pieces': 1.0, 'instrument': 1.0, 'allows': 1.0, 'this': 4.0, 'tunes': 1.0, 'particular': 1.0, 'assemble': 1.0, 'for': 3.0, 'brother': 1.0, 'them': 1.0, 'their': 1.0, 'quality': 1.0, 'on': 2.0, 'returned': 1.0, 'create': 1.0, 'pressing': 1.0, 'o': 1.0, 'y': 1.0, 'especially': 1.0, 'up': 1.0, '7': 1.0, 'first': 3.0, 'classical': 1.0, 'in': 4.0, 'to': 3.0, 'an': 1.0, 'all': 2.0, 'outer': 1.0, 'own': 1.0, 'toy': 2.0, 'great': 1.0, 'horrible': 1.0, 'as': 2.0, 'cracked': 1.0, 'but': 2.0, 'enjoys': 1.0, 'over': 1.0, 'concept': 1.0, 'course': 1.0, 'buttons': 1.0, 'a': 4.0, 't': 1.0, 'at': 1.0, 'is': 3.0, 'air': 1.0, 'now': 1.0, 'older': 1.0, 'thin': 1.0, 'my': 2.0, 'it': 4.0, 'infant': 1.0, 'plastic': 3.0, 'item': 1.0, 'our': 1.0, 'how': 1.0, 'even': 2.0, 'orchestra': 1.0, 'music': 1.0, 'his': 4.0, 'shipping': 1.0, 'box': 2.0, 'ready': 1.0, 'received': 1.0, 'song': 1.0, 'birthday': 4.0, 'and': 6.0, 'quick': 1.0, 'splinters': 1.0, 'very': 1.0, 'plays': 1.0, 'intended': 1.0, 'number': 1.0, 'banged': 1.0, 'fine': 1.0, 'right': 1.0, 'recognizable': 1.0, 'amazon': 4.0, 'sound': 1.0, 'don': 1.0, 'side': 1.0, 'good': 2.0, 'damaged': 1.0, 'however': 1.0, 'lovers': 1.0, 'toys': 1.0, 'cube': 2.0, 'babies': 1.0, 'arrived': 3.0, 'house': 1.0, 'before': 2.0, 'remember': 1.0, 'they': 1.0, 'that': 2.0, 'layer': 1.0, 'strip': 1.0, 'little': 1.0, 'two': 4.0, 'well': 1.0, 'i': 2.0, 'or': 3.0, 'three': 4.0, 'many': 1.0, 'of': 6.0, 'the': 12.0, 'splinter': 1.0, 'sharp': 1.0, 'not': 1.0, 'was': 5.0, 'ship': 1.0, 'replacements': 1.0}
Word element => {'learning': 1.0, 'effect': 1.0, 'and': 1.0, 'great': 1.0, 'sounds': 1.0, 'different': 2.0, 'knows': 1.0, 'keys': 1.0, 's': 1.0, 'cause': 2.0, 'my': 2.0, 'etc': 1.0, 'his': 1.0, 'own': 1.0, 'music': 3.0, 'lover': 1.0, 'toy': 1.0, 'toddler': 1.0, 'an': 1.0, 'loves': 1.0, 'myself': 1.0, 'he': 1.0, 'this': 1.0, 'pick': 1.0, 'as': 1.0, 'year': 1.0, 'son': 1.0, 'strings': 1.0, 'for': 2.0, 'love': 1.0, 'one': 1.0, 'old': 1.0, 'i': 1.0, 'well': 1.0, 'a': 1.0, 'feel': 1.0, 'now': 1.0, 'to': 2.0, 'was': 1.0, 'little': 1.0, 'instruments': 1.0, 'introduction': 1.0}
Word element => {'rhythms': 1.0, 'the': 1.0, 'sings': 1.0, 'and': 1.0, 'were': 1.0, 'great': 1.0, 'choice': 1.0, 'our': 1.0, 'she': 1.0, 'baby': 1.0, 'knew': 1.0, 'so': 1.0, 'dances': 1.0, 'we': 2.0, 'loves': 1.0, 'this': 1.0, 'would': 1.0, 'to': 1.0, 'right': 1.0, 'music': 1.0, 'be': 1.0, 'a': 1.0}
Word element => {'last': 1.0, 'that': 1.0, 'overall': 1.0, 'back': 1.0, 'pushing': 1.0, 'were': 1.0, 'they': 1.0, 'flute': 1.0, 'by': 1.0, 'will': 1.0, 'sounds': 1.0, 'show': 1.0, 'way': 1.0, 'music': 1.0, 'throwing': 1.0, 'playing': 1.0, 'the': 6.0, 'toddler': 1.0, 'a': 4.0, 'when': 1.0, 'together': 1.0, 'daughter': 1.0, 'baby': 1.0, 'toy': 2.0, 'years': 2.0, 'pounding': 1.0, 'lot': 1.0, 'home': 1.0, 'instrument': 2.0, 'kids': 2.0, 'this': 1.0, 'she': 3.0, 'stopped': 1.0, 'it': 9.0, 'with': 2.0, 'older': 1.0, 'children': 1.0, 'my': 2.0, 'went': 1.0, 'still': 2.0, 'how': 1.0, '6': 1.0, 'of': 2.0, 'got': 1.0, 'enjoyed': 1.0, 'room': 1.0, 'before': 1.0, 'had': 1.0, 'was': 3.0, 'for': 2.0, 'each': 2.0, 'would': 1.0, 'rolling': 1.0, 'finally': 1.0, 'starting': 1.0, 'across': 1.0, 'and': 8.0, 'play': 1.0, 'all': 2.0, 'to': 2.0, 'as': 1.0, 'worked': 1.0, 'adding': 1.0, 'i': 2.0, 'abuse': 1.0, 'until': 2.0, 'great': 3.0, 'babysit': 1.0, 'itself': 1.0, 'in': 1.0, 'so': 1.0, 'then': 2.0, 'buttons': 2.0, 'loved': 2.0, 'working': 1.0, 'took': 1.0, 'through': 1.0, 'around': 1.0, 'one': 1.0, 'dozens': 1.0, 'on': 1.0}
Word element => {'music': 1.0, 'appropriate': 1.0, 'age': 1.0, 'of': 1.0, 'effect': 1.0, 'even': 1.0, 'item': 1.0, '27': 1.0, 'daughter': 2.0, 'though': 1.0, 'for': 1.0, 'disabled': 1.0, 'is': 3.0, 'that': 1.0, 'a': 1.0, 'i': 1.0, 'this': 1.0, 'geared': 1.0, 'have': 1.0, 'able': 1.0, 'babies': 1.0, 'the': 2.0, 'to': 1.0, 'benefit': 1.0, 'from': 1.0, 'my': 1.0, 'cause': 1.0, 'and': 1.0}
Word element => {'mom': 1.0, 'means': 1.0, 'too': 2.0, 'my': 1.0, 'this': 1.0, 'loves': 2.0, 'month': 1.0, 'it': 2.0, 's': 1.0, '15': 1.0, 'old': 1.0, 'music': 1.0, 'box': 1.0, 'which': 1.0, 'durable': 1.0}
Word element => {'better': 1.0, 'falling': 1.0, 'far': 1.0, 'toys': 1.0, 'a': 1.0, 'loud': 1.0, 'usual': 1.0, 'adults': 1.0, 'studio': 1.0, 'not': 5.0, 'is': 6.0, 'entertaining': 1.0, 'the': 4.0, 'although': 1.0, 'that': 1.0, 'an': 1.0, 'quality': 2.0, 'toy': 2.0, 'sound': 3.0, 'in': 1.0, 'also': 1.0, 'of': 5.0, 'good': 2.0, 'or': 1.0, 'too': 3.0, 'and': 1.0, 'edges': 1.0, 'kind': 2.0, 'protects': 1.0, 'this': 1.0, 'found': 1.0, 'music': 1.0, 'most': 1.0, 'it': 4.0, 'annoying': 1.0, 'for': 1.0, 'size': 1.0, 'small': 1.0, 'are': 1.0, 'made': 1.0, 'some': 1.0, 'slip': 1.0, 'rubber': 1.0, 'material': 1.0, 'than': 1.0, 'does': 1.0, 'when': 1.0, 'easily': 1.0}
Word element => {'one': 1.0, 'regret': 1.0, 'also': 1.0, 'good': 2.0, 'quite': 1.0, 'won': 1.0, 'toy': 2.0, 'you': 1.0, 'fantastic': 1.0, 'is': 4.0, 'and': 1.0, 'selection': 1.0, 'i': 1.0, 'old': 1.0, 'this': 2.0, 'first': 1.0, 'with': 1.0, 'love': 1.0, 'cube': 1.0, 't': 1.0, 'a': 3.0, 'hands': 1.0, 'the': 5.0, 'tones': 1.0, 'figured': 1.0, 'baby': 1.0, 'quality': 1.0, 'magic': 1.0, 'was': 1.0, 'interactive': 1.0, 'to': 2.0, 'musical': 1.0, 'friend': 1.0, 'from': 1.0, 'gift': 1.0, 'my': 1.0, 'four': 1.0, 'it': 2.0, 'month': 1.0, 'feet': 1.0, 'out': 1.0, 'he': 1.0, 'how': 1.0, 'use': 1.0, 'tends': 1.0, 'hit': 1.0, 'though': 1.0, 'sides': 1.0, 'of': 1.0, 'rather': 1.0, 'his': 2.0, 'than': 1.0}
Word element => {'chuckling': 1.0, 'but': 1.0, 'so': 1.0, 'giggling': 1.0, 'looked': 1.0, 'with': 2.0, 'this': 2.0, 'at': 1.0, 'hours': 1.0, 'not': 1.0, 'because': 1.0, 'its': 1.0, 'all': 1.0, 'to': 1.0, 'was': 2.0, 'beautiful': 1.0, 'when': 1.0, 'm': 1.0, 'i': 3.0, 'old': 1.0, 'munchikin': 1.0, 'very': 1.0, 'son': 1.0, 'day': 1.0, 'and': 2.0, 'cube': 1.0, 'cheap': 1.0, 'love': 1.0, 'received': 1.0, 'tone': 1.0, 'disappointed': 1.0, 'in': 1.0, 'my': 1.0, '23': 1.0, 'magic': 1.0, 'baby': 1.0, 'toy': 1.0, 'happy': 1.0, 'immediately': 1.0, 'it': 1.0, 'month': 1.0, 'fell': 1.0, 'see': 1.0, 'a': 1.0, 'him': 1.0, 'playing': 1.0, 'mozart': 1.0, 'many': 1.0}
Word element => {'or': 1.0, 'musical': 1.0, 'highest': 1.0, 'they': 2.0, 'continue': 1.0, 'is': 3.0, 'really': 1.0, 'it': 6.0, 'he': 1.0, 'this': 2.0, 'blend': 1.0, 'children': 1.0, 'has': 1.0, 'toy': 1.0, 'quality': 1.0, 'baby': 1.0, 'music': 1.0, 'old': 1.0, 'i': 1.0, 'bought': 1.0, 'loved': 1.0, 'use': 1.0, 'when': 1.0, 'less': 1.0, 'was': 2.0, 'to': 5.0, 'uncoordinated': 1.0, 'select': 1.0, 'my': 1.0, 'from': 1.0, 'while': 1.0, 'than': 1.0, 'different': 1.0, 'a': 2.0, 'bright': 1.0, 'year': 1.0, 'that': 2.0, 'their': 1.0, 'lights': 1.0, 'meant': 1.0, 'for': 2.0, 'using': 1.0, 'and': 3.0, 'interesting': 1.0, 'seem': 1.0, 'together': 1.0, 'enjoy': 1.0, 'instruments': 1.0, 'easy': 1.0, 'the': 1.0, 'hands': 1.0, 'enough': 1.0, 'not': 1.0, 'explore': 1.0}
Word element => {'described': 1.0, 'and': 1.0, 'as': 1.0, 'from': 1.0, 'those': 1.0, 'keeping': 1.0, 'fine': 1.0, 'is': 1.0, 'cover': 1.0, 'screwdriver': 1.0, 'out': 1.0, 'requires': 1.0, 'installation': 1.0, 'durability': 1.0, 'on': 1.0, 'comment': 1.0, 'functioned': 1.0, 'good': 2.0, 'nephew': 1.0, 'of': 1.0, 'tiny': 1.0, 's': 1.0, 'played': 1.0, 'my': 1.0, 'the': 4.0, 'for': 3.0, 'fingers': 1.0, 'was': 2.0, 'gift': 1.0, 'birthday': 2.0, 'a': 4.0, 'party': 1.0, 'unit': 1.0, 'he': 1.0, 'this': 1.0, 'with': 1.0, 'it': 2.0, 'while': 1.0, 'all': 1.0, 'despite': 1.0, 'distractions': 1.0, 'sound': 1.0, 'cannot': 1.0, 'battery': 1.0, 'i': 1.0}
Word element => {'myself': 1.0, 'recommend': 1.0, 'lot': 1.0, 'a': 1.0, 'like': 1.0, 'to': 1.0, 'loves': 1.0, 'i': 2.0, 'old': 1.0, 'music': 1.0, 'month': 1.0, 'this': 2.0, 'it': 2.0, 'toy': 1.0, 'baby': 1.0, 'my': 2.0, 'kidding': 1.0, 'the': 1.0, 'few': 1.0, '18': 1.0, 'no': 1.0, 'of': 1.0, 'toys': 1.0, 'has': 1.0, 'is': 1.0, 'cube': 1.0, 'one': 1.0, 'that': 1.0, 'strongly': 1.0, 'kid': 1.0, 'payed': 1.0, 'attention': 1.0}
Word element => {'horn': 1.0, 'french': 1.0, 'mommy': 1.0, 'throughout': 1.0, 'hear': 1.0, 'sounds': 1.0, 'individual': 1.0, 'day': 1.0, 'recognize': 1.0, 'instruments': 2.0, 'in': 2.0, 'with': 1.0, 'this': 1.0, 'she': 1.0, 'it': 3.0, 'annoying': 1.0, 'my': 1.0, 'and': 4.0, 'difference': 1.0, 'pretty': 1.0, 'your': 1.0, 'understood': 1.0, 'is': 3.0, 'pull': 1.0, 'daughter': 1.0, 'for': 2.0, 'year': 1.0, 'been': 1.0, 'loves': 1.0, 'quite': 1.0, 'good': 1.0, 'own': 1.0, 'musical': 2.0, 'still': 1.0, 'years': 1.0, 'wanting': 1.0, 'we': 2.0, 'a': 3.0, 'since': 1.0, 'quality': 1.0, 'of': 2.0, 'sound': 1.0, 'you': 1.0, 'music': 2.0, '2': 1.0, 'can': 2.0, 'the': 8.0, 'playing': 1.0, 'without': 1.0, 'listen': 2.0, 'least': 1.0, 'to': 2.0, 'half': 1.0, 'has': 2.0, 'toy': 2.0, 'hair': 1.0, 'long': 1.0, 'out': 1.0}
Word element => {'nice': 1.0, 'very': 1.0, 'plays': 1.0, 'and': 1.0, 'up': 1.0, 'hear': 1.0, 'learning': 1.0, 'vs': 1.0, 'kids': 1.0, 'your': 1.0, 'push': 1.0, 'melodies': 1.0, 'sides': 1.0, 'standard': 1.0, 'play': 1.0, 'about': 1.0, 'children': 1.0, 'this': 1.0, 'it': 2.0, 'have': 1.0, 'thing': 1.0, 'for': 1.0, 'cube': 1.0, 'coolest': 1.0, 's': 2.0, 'you': 1.0, 'that': 2.0, 'type': 1.0, 'is': 1.0, 'great': 1.0, 'the': 4.0, 'different': 2.0, 'lights': 1.0, 'to': 2.0, 'classic': 1.0, 'can': 1.0, 'specific': 1.0, 'instrument': 1.0, 'also': 1.0, 'songs': 2.0, 'in': 1.0, 'song': 1.0}
Word element => {'eye': 1.0, 'keeping': 1.0, 'contact': 1.0, 'connections': 1.0, 'ground': 1.0, 'hazard': 1.0, 'melting': 1.0, 'causes': 1.0, 'boards': 1.0, 'circuit': 2.0, 'close': 1.0, 'solder': 1.0, 'surrounding': 1.0, 'pulls': 1.0, 'or': 1.0, 'moved': 1.0, 'breaks': 1.0, 'when': 1.0, 'problem': 1.0, 'cable': 2.0, 'wire': 1.0, 'ribbon': 3.0, 'severed': 2.0, 'has': 1.0, 'its': 1.0, 'into': 1.0, 'exposed': 1.0, 'placed': 1.0, 'fire': 1.0, 'never': 1.0, 'module': 2.0, 'speaker': 2.0, 'up': 1.0, 'opening': 1.0, 'find': 1.0, 'the': 22.0, 'of': 7.0, 'securely': 1.0, 'after': 3.0, 'come': 1.0, 'quite': 1.0, 'immediately': 1.0, 'are': 1.0, 'attractive': 1.0, 'socket': 1.0, 'play': 1.0, 'joint': 1.0, 'and': 6.0, 'my': 2.0, 'making': 1.0, 'connects': 1.0, 'most': 1.0, 'around': 1.0, 'obvious': 1.0, 'music': 1.0, 'can': 2.0, 'rolled': 1.0, 'but': 1.0, 'her': 1.0, 'use': 1.0, 'repeatedly': 1.0, 'purchased': 1.0, 'height': 1.0, 'simply': 1.0, 'colors': 1.0, 'move': 1.0, 'toy': 3.0, 'manufacturing': 1.0, 'one': 5.0, 'lasted': 1.0, 'money': 1.0, 'dropped': 2.0, 'functions': 1.0, 'was': 3.0, 'recommend': 1.0, 'to': 6.0, 'playing': 1.0, 'all': 2.0, 'with': 2.0, 'this': 4.0, 'kids': 1.0, 'covers': 1.0, 'great': 3.0, 'cables': 1.0, 'fun': 1.0, 'from': 2.0, 'year': 1.0, 'unscrewed': 1.0, 'however': 2.0, 'easy': 1.0, 'poor': 1.0, 'feet': 1.0, 'broke': 1.0, 'i': 6.0, 'power': 1.0, 'old': 1.0, 'ages': 1.0, 'at': 1.0, 'is': 5.0, 'a': 4.0, 'will': 1.0, 'could': 1.0, 'strong': 1.0, 'your': 1.0, 'update': 1.0, 'on': 3.0, 'correctly': 1.0, 'plastic': 2.0, 'it': 9.0, 'burning': 1.0, 'smell': 1.0, 'started': 1.0, 'quality': 2.0, 'cube': 5.0, 'eventually': 1.0, 'panel': 1.0, 'which': 3.0, 'made': 1.0, 'who': 1.0, 'batteries': 2.0, 'while': 1.0, 'removed': 1.0, 'now': 2.0, 'whenever': 1.0, 'loose': 1.0, 'hear': 1.0, 'toddlers': 1.0, 'something': 1.0, 'inside': 1.0, 'should': 1.0, 'not': 1.0, 'be': 2.0, 'for': 3.0, 'such': 1.0, 'clear': 1.0, 'if': 2.0, 'niece': 2.0, 'do': 1.0, 'sorts': 1.0, 'short': 1.0, 'day': 2.0, 'unimaginable': 1.0, 'terrible': 1.0, 'she': 1.0, 'spending': 1.0, 'result': 1.0, 'because': 2.0, 'that': 3.0, 'alternatives': 1.0, 'loud': 1.0, 'things': 1.0, 'you': 1.0}
Word element => {'months': 1.0, '6': 1.0, 'after': 1.0, 'strong': 1.0, 'going': 1.0, 'constructed': 1.0, 'clean': 1.0, 'is': 2.0, 'it': 2.0, 'loves': 1.0, 'to': 1.0, 'still': 1.0, 'well': 1.0, 'for': 1.0, 'one': 1.0, 'my': 1.0, 'sharp': 1.0, 'babies': 1.0, 'edges': 1.0, 'no': 1.0, 'safe': 1.0, 'easy': 1.0, 'son': 1.0, 'year': 1.0, 'very': 1.0, 'old': 1.0, 'battery': 1.0}
Word element => {'toys': 1.0, 'favorite': 1.0, 'plays': 1.0, 'of': 1.0, '6': 1.0, 's': 2.0, 'but': 1.0, 'one': 1.0, 'cube': 2.0, '3': 1.0, 'months': 2.0, 'ago': 1.0, 'my': 2.0, 'wasn': 1.0, 'time': 1.0, 'he': 2.0, 'it': 1.0, 'with': 2.0, 'this': 2.0, 'the': 1.0, '2': 1.0, 't': 1.0, 'play': 1.0, 'and': 3.0, 'bought': 1.0, 'i': 1.0, 'at': 1.0, 'able': 1.0, 'that': 1.0, 'about': 1.0, 'baby': 2.0, 'is': 1.0, 'longer': 2.0, 'really': 1.0, 'now': 2.0, 'magic': 1.0, 'to': 1.0}
Word element => {'item': 1.0, 'happy': 1.0, 'bothering': 1.0, 'are': 1.0, 'teeth': 1.0, 'his': 1.0, 'when': 1.0, 'of': 1.0, 'best': 1.0, 'he': 2.0, 'christmas': 1.0, 'bitting': 1.0, 'now': 1.0, 'and': 3.0, 'loves': 1.0, 'still': 1.0, 'old': 1.0, 'i': 2.0, '5th': 1.0, 'haver': 1.0, 'about': 1.0, 'months': 1.0, 'bought': 2.0, 'the': 2.0, 'my': 1.0, 'lights': 1.0, 'for': 3.0, 'love': 1.0, '9': 1.0, 'it': 6.0, 'annoying': 1.0, 'month': 1.0, 'part': 1.0, 'is': 1.0, 'not': 1.0, 'at': 1.0, 'to': 2.0, 'all': 1.0, 'score': 1.0, 'mom': 1.0, 'don': 1.0, 'up': 1.0, 'toy': 1.0, 'has': 1.0, 's': 2.0, 'we': 2.0, 't': 1.0, 'a': 1.0, 'very': 1.0, 'rubbery': 1.0, 'this': 2.0, 'grip': 1.0, 'so': 1.0, 'worry': 1.0, 'him': 2.0, 'sides': 1.0}
Word element => {'hazard': 1.0, 'is': 1.0, 'throw': 1.0, 'child': 1.0, 'poke': 1.0, 'my': 1.0, 'may': 1.0, 'stuck': 1.0, 'safety': 1.0, 'got': 1.0, 'one': 1.0, 'wire': 2.0, 'remnant': 1.0, 'did': 1.0, 'however': 1.0, 'so': 2.0, 'bad': 1.0, 'or': 1.0, 'combined': 1.0, 'the': 1.0, 'job': 1.0, 'others': 1.0, 'with': 2.0, 'think': 1.0, 'on': 1.0, 'it': 1.0, 'remove': 1.0, 'different': 1.0, 'own': 1.0, 'musical': 1.0, 'its': 1.0, 'as': 1.0, 'to': 6.0, 'shows': 1.0, 'into': 1.0, 'box': 1.0, 'a': 2.0, 'could': 1.0, 'baby': 1.0, 'package': 1.0, 'experience': 1.0, 'instruments': 1.0, 'can': 1.0, 'had': 2.0, 'either': 1.0, 'munchkin': 1.0, 'each': 1.0, 'instrument': 1.0, 'using': 1.0, 'cube': 3.0, 'will': 1.0, 'secure': 1.0, 'possible': 1.0, 'away': 1.0, 'attached': 1.0, 'internal': 1.0, 'packaging': 1.0, 'of': 1.0, 'part': 1.0, 'and': 2.0, 'wires': 2.0, 'not': 2.0, 'cut': 1.0, 'pull': 1.0, 'are': 1.0, 'push': 1.0, 'out': 1.0}
Word element => {'pop': 1.0, 'bucks': 1.0, 'twenty': 1.0, 'adore': 1.0, 'they': 1.0, 'boys': 1.0, 'am': 1.0, 'and': 3.0, 'buying': 1.0, 'class': 1.0, 'toy': 2.0, 'a': 3.0, 't': 1.0, 's': 2.0, 'terrific': 1.0, '22': 1.0, 'isn': 1.0, 'button': 1.0, 'but': 2.0, 'his': 2.0, 'music': 1.0, 'adult': 1.0, 'toys': 1.0, 'cubes': 2.0, 'to': 6.0, 'playing': 1.0, 'these': 1.0, 'no': 2.0, 'we': 1.0, 'take': 1.0, 'at': 1.0, 'is': 5.0, 'too': 1.0, 'one': 4.0, 'more': 1.0, 'cube': 1.0, 'luuuuuuuuuvvv': 1.0, 'so': 2.0, 'twins': 1.0, 'mozart': 2.0, 'causing': 1.0, 'old': 1.0, 'grating': 1.0, 'little': 3.0, 'very': 1.0, 'apart': 1.0, 'particular': 1.0, 'already': 1.0, 'it': 9.0, 'stopped': 1.0, 'musical': 1.0, 'my': 5.0, 'many': 1.0, 'unfortunately': 1.0, 'there': 2.0, 'the': 5.0, 'of': 2.0, 'this': 3.0, 'plastic': 2.0, 'has': 3.0, 'tries': 1.0, 'them': 2.0, 'ears': 1.0, 'up': 1.0, 'on': 1.0, 'sound': 2.0, 'goes': 1.0, 'guys': 1.0, 'in': 3.0, 'm': 1.0, 'sure': 1.0, 'good': 1.0, 'for': 2.0, 'opinion': 1.0, 'lights': 1.0, 'be': 1.0, 'month': 1.0, 'listening': 1.0, 'itself': 1.0, 'not': 2.0, 'world': 1.0, 'however': 1.0, 'second': 1.0, 'durable': 1.0, 'dies': 1.0, 've': 1.0, 'only': 1.0, 'works': 1.0, 'had': 1.0, 'wrap': 1.0, 'three': 1.0, 'would': 1.0, 'weeks': 1.0, 'though': 1.0, 'if': 1.0, 'still': 2.0, 'light': 1.0, 'he': 2.0, 'nephew': 1.0, 'because': 1.0, 'fall': 1.0, 'everywhere': 1.0, 'that': 3.0, 'mom': 1.0, 'well': 1.0, 'i': 2.0, 'pointed': 1.0, 'cover': 1.0, 'out': 1.0, 'although': 1.0, 'as': 2.0, 'cracked': 1.0, 'lower': 1.0, 'tape': 1.0}
Word element => {'pleased': 1.0, 'wonderful': 1.0, 'seems': 1.0, 'cube': 1.0, 'of': 1.0, 'is': 1.0, 'side': 1.0, 'touches': 1.0, 'very': 2.0, 'as': 3.0, 'month': 1.0, 'daughter': 1.0, 'gave': 1.0, 'my': 1.0, 'ten': 1.0, 'the': 2.0, 'colorful': 1.0, 'to': 1.0, 'musical': 1.0, 'durable': 1.0, 'it': 1.0, 'this': 2.0, 'well': 1.0, 'a': 2.0, 'responses': 1.0, 'old': 1.0, 'i': 2.0, 'enjoys': 1.0, 'gift': 1.0, 'she': 4.0, 'loves': 1.0, 'think': 1.0, 'different': 2.0, 'and': 2.0, 'get': 1.0}
Word element => {'investment': 1.0, 'great': 1.0, 'was': 1.0, 'concerned': 1.0, 'several': 1.0, 'with': 1.0, 'day': 2.0, 'plays': 1.0, 'melodies': 1.0, 'mozart': 1.0, 'adult': 1.0, 'times': 1.0, 'you': 1.0, 'where': 1.0, 'while': 1.0, 'background': 1.0, 'he': 3.0, 'it': 2.0, 'grating': 1.0, 'sort': 1.0, 'activities': 1.0, 'loves': 1.0, 'good': 1.0, 'uses': 1.0, 'toddler': 1.0, 'every': 1.0, 'appreciate': 1.0, 'highly': 1.0, 'jukebox': 1.0, 'we': 3.0, 'a': 3.0, 'call': 1.0, 'tendency': 1.0, 'this': 3.0, 'doing': 1.0, 'can': 1.0, 'music': 1.0, 'most': 1.0, 'what': 1.0, '34': 2.0, 'of': 2.0, 'toys': 2.0, 'toy': 2.0, 'well': 1.0, 'has': 1.0, 'far': 1.0, 'became': 1.0, 'quickly': 1.0, 'our': 2.0, 'as': 4.0, 'any': 1.0, 'to': 1.0, 'other': 1.0, 'ears': 1.0, 'in': 1.0, 'sound': 1.0, 'so': 2.0, 'quality': 1.0, 'rated': 1.0, 'an': 1.0, 'musical': 2.0, 'invested': 1.0, 'and': 1.0, 'the': 2.0, 'is': 1.0, 're': 1.0, 'enough': 1.0}
Word element => {'laugh': 1.0, 'at': 1.0, 'back': 1.0, 'yell': 1.0, 'husband': 1.0, 'mind': 1.0, 'baby': 1.0, 'toy': 1.0, 'for': 2.0, 'love': 1.0, 'one': 1.0, 'improvement': 1.0, 'best': 1.0, '8': 1.0, 'cube': 1.0, 'sit': 2.0, 'thing': 1.0, 'great': 2.0, 'the': 5.0, 'adjustable': 1.0, 'my': 2.0, 'sounds': 1.0, 'want': 1.0, 'any': 1.0, 'to': 5.0, 'old': 1.0, 'i': 3.0, 'music': 1.0, 'this': 2.0, 'only': 2.0, 'month': 1.0, 'it': 3.0, 'loud': 1.0, 'wonderful': 1.0, 'don': 1.0, 'up': 1.0, 'and': 4.0, 'play': 1.0, 'gift': 1.0, 'reason': 1.0, 'in': 1.0, 'is': 3.0, 'level': 1.0, 'would': 1.0, 'floor': 1.0, 'see': 1.0, 'your': 1.0, 'put': 1.0, 'on': 2.0, 'make': 1.0, 'tends': 1.0, 'volume': 1.0, 'which': 1.0, 't': 1.0, 's': 1.0}
Word element => {'send': 1.0, 'about': 1.0, 'have': 1.0, 'as': 1.0, 'were': 1.0, 'songs': 1.0, 'good': 1.0, 'think': 1.0, 'i': 1.0, 'power': 1.0, 'out': 1.0, 'back': 1.0, 'ready': 1.0, 'work': 1.0, 'when': 1.0, 'right': 1.0, 'was': 1.0, 'to': 2.0, 'ran': 1.0, 'away': 1.0, 'of': 1.0, 'for': 1.0, 'it': 2.0, 'older': 1.0, 'christmas': 1.0, 'harp': 1.0, 'opened': 1.0, 'compared': 1.0, 'been': 1.0, 'batteries': 1.0, 'didn': 2.0, 'the': 3.0, 't': 2.0, 'light': 1.0, 'version': 1.0}
Word element => {'my': 1.0, 'bonus': 1.0, 'wonderful': 1.0, 'mozart': 1.0, 'learning': 1.0, 'greatest': 1.0, 'in': 1.0, 'newest': 1.0, 'up': 1.0, 'slipped': 1.0, 'ever': 1.0, 'not': 1.0, 'grandma': 1.0, 'had': 1.0, 'never': 1.0, 'have': 1.0, 'piano': 1.0, 'times': 1.0, 'battery': 1.0, 'several': 1.0, 'dropped': 1.0, 'now': 2.0, 'its': 1.0, 'granddaughter': 1.0, 'was': 1.0, 'directing': 1.0, 'is': 3.0, 'at': 1.0, 'cube': 1.0, 'love': 1.0, 'for': 3.0, 'make': 1.0, 'the': 6.0, 'batted': 1.0, 'orchestra': 1.0, 'just': 1.0, 'change': 1.0, 'music': 1.0, 'owns': 1.0, 'sung': 1.0, 'old': 1.0, 'one': 1.0, 'bought': 1.0, 'year': 1.0, 'teacher': 1.0, 'from': 1.0, 'to': 5.0, 'our': 1.0, 'as': 1.0, 'nephew': 1.0, 'changing': 1.0, 'this': 3.0, 'buying': 1.0, 'with': 1.0, 'before': 1.0, 'it': 4.0, 'she': 7.0, 'and': 4.0, 'different': 1.0, 'toy': 1.0, 'half': 1.0, 'has': 2.0, 'progressed': 1.0, 'm': 1.0, 'random': 1.0, 'of': 1.0, 'sides': 1.0, 'went': 1.0, 'i': 1.0, 'two': 1.0, 'subtracting': 1.0, 'adding': 1.0, 'performance': 1.0, 'instruments': 1.0, 'song': 1.0, 'we': 2.0, 'a': 3.0, 'punching': 1.0, 's': 1.0, 'danced': 1.0}
Word element => {'get': 1.0, 'definitely': 1.0, 'child': 1.0, 'your': 1.0, 'if': 1.0, 'the': 2.0, 'off': 1.0, 'when': 1.0, 'stimulated': 1.0, 'so': 2.0, 'visually': 1.0, 'is': 2.0, 'realized': 1.0, 'my': 1.0, 'very': 1.0, 'son': 1.0, 'decided': 1.0, 'observant': 1.0, 'responded': 1.0, 'that': 1.0, 'i': 4.0, 'buy': 1.0, 'lights': 1.0, 'turned': 1.0, 'was': 2.0, 'to': 3.0, 'toy': 2.0, 'for': 1.0, 'him': 1.0, 'how': 1.0, 'quickly': 1.0, 'this': 2.0, 'it': 1.0, 'he': 1.0, 'amazed': 1.0, 'especially': 1.0}
Word element => {'hard': 1.0, 'will': 1.0, 'your': 1.0, 'keeps': 1.0, 'want': 1.0, 'makes': 1.0, 'old': 1.0, 'does': 1.0, 'steps': 1.0, 'beat': 1.0, 't': 1.0, 'a': 3.0, 'go': 1.0, 'throw': 1.0, 'yes': 1.0, 'hug': 1.0, 'was': 2.0, 'listen': 1.0, 'bored': 1.0, 'didn': 1.0, 'the': 10.0, 'of': 3.0, 'occaisonally': 1.0, 'and': 4.0, 'get': 1.0, 'months': 2.0, 'bought': 1.0, 'spend': 1.0, 'press': 1.0, 'toys': 1.0, 'month': 1.0, '8': 2.0, 'down': 1.0, 'favorite': 1.0, 'from': 2.0, 'son': 2.0, 'cube': 1.0, 'way': 1.0, 'for': 5.0, 'hours': 1.0, 'toy': 5.0, 'i': 4.0, 'by': 1.0, '18': 1.0, 'to': 9.0, 'would': 4.0, 'something': 1.0, 'then': 2.0, 'with': 1.0, 'few': 1.0, 'this': 4.0, 'far': 1.0, 'he': 5.0, 'when': 2.0, 'again': 1.0, 'bouncing': 1.0, 'need': 1.0, 'or': 1.0, 'step': 2.0, 'kid': 1.0, 'finally': 1.0, 'playing': 1.0, 'an': 1.0, 'managed': 1.0, 'you': 3.0, 'destroy': 1.0, 'bose': 1.0, 'first': 1.0, 'stuck': 1.0, 'purchase': 1.0, 'quickly': 1.0, 'purchased': 1.0, 'second': 1.0, '4': 1.0, 'replace': 1.0, 'best': 1.0, 'have': 2.0, 'which': 1.0, 'ipod': 1.0, 'made': 1.0, 'it': 5.0, 'him': 1.0, 'be': 2.0, 'his': 1.0, 'music': 1.0, 'but': 1.0, 'not': 3.0, 'my': 2.0, 'may': 1.0, 'me': 1.0, 'happy': 1.0, 'one': 3.0, 'greatest': 1.0, 'tinny': 1.0, 'is': 3.0, 'ring': 1.0, 'speakers': 1.0, 'because': 1.0, 'that': 1.0, 'buttons': 1.0, 'enjoy': 1.0, 'if': 2.0, 'concert': 1.0, 'noise': 1.0, 'quality': 1.0, 'sound': 1.0}
Word element => {'adults': 1.0, 'toys': 1.0, 's': 1.0, 'like': 1.0, 'annoying': 1.0, 'or': 1.0, 'not': 1.0, 'music': 1.0, 'the': 1.0, 'day': 1.0, 'too': 2.0, 'when': 1.0, 'daughter': 1.0, 'our': 1.0, 'musical': 1.0, 'bought': 1.0, 'she': 2.0, 'most': 1.0, 'every': 1.0, 'toy': 1.0, '15': 1.0, 'old': 2.0, 'still': 1.0, 'for': 1.0, 'love': 2.0, 'play': 2.0, 'we': 3.0, 'months': 2.0, 'is': 2.0, 'to': 1.0, 'was': 1.0, 'now': 1.0, 'children': 1.0, 'loud': 1.0, 'this': 2.0, 'it': 2.0, 'with': 2.0, '19': 1.0, 'and': 1.0}
Word element => {'1079': 1.0, '1097': 1.0, '1081': 2.0, '34': 2.0, '1053': 1.0, '9': 1.0, '1085': 14.0, '1052': 1.0, '1082': 4.0, '1083': 4.0, '1084': 5.0, '1103': 4.0, '1072': 10.0, '1100': 4.0, '1102': 1.0, '1089': 5.0, '1095': 2.0, '1075': 3.0, '1090': 11.0, '1088': 6.0, '1101': 2.0, '1091': 3.0, '1080': 7.0, '1077': 13.0, '1074': 4.0, '1047': 1.0, '1096': 1.0, '1099': 3.0, '1076': 4.0, '1044': 1.0, '1086': 15.0, '1078': 2.0}
Word element => {'year': 1.0, 'entirely': 1.0, 'working': 1.0, 'much': 1.0, 'but': 1.0, 'didn': 1.0, 'and': 2.0, 'use': 1.0, 'enjoyed': 1.0, 'a': 2.0, 'old': 1.0, 'i': 1.0, 'stopped': 1.0, 'it': 4.0, 'lovely': 1.0, 'baby': 1.0, 'was': 1.0, 'had': 1.0, 'its': 1.0, 'the': 1.0, 't': 1.0, 'have': 1.0, 'interest': 1.0, 'usually': 1.0, 'despite': 1.0, 'before': 1.0, 'low': 1.0, 'sound': 1.0, 'level': 1.0, 'of': 1.0}
Word element => {'other': 1.0, 'purchase': 1.0, 'needs': 1.0, 'the': 1.0, 'my': 1.0, 'to': 2.0, 'meet': 1.0, 'like': 1.0, 'as': 1.0, 'very': 2.0, 'product': 1.0, 'friends': 2.0, 'good': 1.0, 'recommend': 1.0, 'this': 2.0, 'it': 3.0, 'love': 1.0, 'i': 2.0, 'a': 1.0, 'gift': 1.0, 'really': 1.0, 'is': 1.0, 'thing': 1.0, 'will': 1.0}
Word element => {'don': 1.0, 'first': 1.0, 'test': 1.0, 'can': 1.0, 'returnable': 1.0, 'are': 1.0, 'grips': 1.0, 'secure': 1.0, 'some': 1.0, 'or': 1.0, 'comes': 1.0, 'is': 1.0, 'that': 1.0, 'sure': 1.0, 'adjustable': 1.0, 'making': 1.0, 'non': 1.0, 'bypassing': 1.0, 'either': 1.0, 'suggest': 1.0, 'with': 1.0, 'fitting': 1.0, 'seats': 1.0, 'come': 1.0, 'it': 4.0, 'he': 1.0, 'sit': 1.0, 'have': 1.0, 'not': 2.0, 'i': 3.0, 'and': 3.0, 'risk': 1.0, 'do': 1.0, 'snuggly': 1.0, 'unless': 1.0, 'you': 2.0, 'am': 1.0, 'in': 1.0, 'close': 1.0, 'little': 1.0, 't': 1.0, 'a': 2.0, 'your': 1.0, 'on': 3.0, 'find': 1.0, 'does': 2.0, 'standard': 1.0, 'toilet': 2.0, 'underneath': 1.0, 'my': 2.0, 'elongated': 1.0, 'one': 5.0, 'time': 1.0, 'potty': 2.0, 'so': 1.0, 'upstairs': 1.0, 'plus': 1.0, 'down': 1.0, 'bottom': 1.0, 'has': 1.0, 'no': 1.0, 'slips': 1.0, 'once': 1.0, 'rubber': 1.0, 'this': 3.0, 'grip': 1.0, 'every': 1.0, 'material': 1.0, 'to': 2.0, 'seat': 2.0, 'as': 2.0, 'many': 2.0, 'place': 1.0, 'the': 1.0, 'even': 1.0, 'sits': 1.0, 'keep': 1.0, 'disappointed': 1.0, 'result': 1.0}
Word element => {'toilet': 1.0, 'will': 1.0, 'need': 1.0, 'you': 1.0, 'stop': 1.0, 'to': 1.0, 'nothing': 1.0, 'on': 1.0, 'peeing': 1.0, 'if': 1.0, 'problem': 1.0, 'a': 3.0, 'be': 1.0, 'floor': 1.0, 'bought': 1.0, 'and': 2.0, 'don': 2.0, 'kids': 2.0, 'that': 2.0, 'my': 2.0, 'stopper': 1.0, 'pee': 2.0, 'the': 2.0, 't': 2.0, 'have': 2.0, 'cute': 1.0, 'love': 2.0, 'this': 2.0, 'with': 1.0, 'it': 5.0, 'fine': 1.0, 'is': 2.0, 'as': 1.0, 'why': 1.0, 'i': 2.0, 'guard': 1.0, 'much': 1.0, 'seat': 1.0, 'because': 1.0, 'not': 1.0, 'does': 2.0, 'part': 1.0, 'of': 1.0}
Word element => {'trapped': 1.0, 'piece': 1.0, 'one': 1.0, 'adjusts': 1.0, 'turtle': 1.0, 'price': 1.0, 'are': 1.0, 'won': 1.0, 'well': 1.0, 'reward': 1.0, 'his': 1.0, 'was': 1.0, 'kid': 1.0, 'first': 1.0, 'plastic': 1.0, 'between': 1.0, 'which': 1.0, 'budge': 1.0, 'ease': 1.0, 'fisher': 1.0, 'poor': 1.0, 'get': 2.0, 'imagined': 1.0, 'in': 2.0, 'holding': 1.0, 'happened': 1.0, 'you': 1.0, 'them': 1.0, 'urine': 2.0, 'nothing': 1.0, 'wedge': 1.0, 't': 1.0, 'we': 1.0, 'going': 2.0, 'could': 1.0, 'there': 2.0, 'bottom': 2.0, 'clamp': 1.0, 'will': 1.0, 'back': 3.0, 'this': 2.0, 'it': 8.0, 'i': 3.0, 'never': 1.0, 'tries': 1.0, 'dependent': 1.0, 'is': 5.0, 'would': 2.0, 'safe': 1.0, 'no': 2.0, 'not': 3.0, 'give': 2.0, 'stay': 1.0, 'and': 3.0, 'soon': 1.0, 'if': 1.0, 'into': 2.0, 'toilet': 1.0, 'leaving': 1.0, 'independence': 1.0, 'all': 1.0, 'to': 7.0, 'any': 1.0, 'seat': 7.0, 'as': 2.0, 'hard': 1.0, 'from': 1.0, 'child': 3.0, 'out': 1.0, 'sit': 1.0, 'place': 3.0, 'the': 10.0, 'so': 3.0, 'time': 1.0, 'potty': 2.0, 'pushes': 1.0, 'under': 1.0, 'their': 2.0, 'padded': 1.0, 'unsupported': 1.0, 'point': 1.0, 'for': 2.0, 'stars': 1.0, 'supposed': 1.0, 'be': 1.0, 'put': 1.0, 'on': 3.0, 'your': 2.0, 'make': 1.0}
Word element => {'all': 1.0, 'plastic': 1.0, 'perfect': 1.0, 'in': 1.0, 'collect': 1.0, 'to': 1.0, 'part': 1.0, 'used': 1.0, 'underneat': 1.0, 'old': 1.0, 'doesn': 1.0, 'bacteria': 1.0, 'of': 2.0, 'bunch': 1.0, 'harbor': 1.0, 'urine': 1.0, 'and': 1.0, 'rip': 1.0, 's': 3.0, 'is': 1.0, 'which': 1.0, 'a': 2.0, 'the': 1.0, 't': 2.0, 'much': 1.0, 'potty': 1.0, 'for': 1.0, 'one': 3.0, 'my': 2.0, 'open': 1.0, 'son': 2.0, 'as': 2.0, 'means': 1.0, 'replacement': 1.0, 'bought': 1.0, 'better': 1.0, 'seat': 1.0, 'not': 1.0, 'at': 1.0, 'padded': 1.0, 'first': 1.0, 'this': 3.0, 'it': 3.0, 'won': 1.0}
Word element => {'boy': 1.0, 'a': 1.0, 'all': 1.0, 'recommend': 1.0, 'would': 1.0, 'else': 1.0, 'at': 1.0, 'splashes': 1.0, 'every': 1.0, 'instead': 1.0, 'potty': 1.0, 'where': 1.0, 'going': 1.0, 'for': 3.0, '3': 1.0, 'from': 1.0, 'year': 1.0, 'son': 1.0, 'is': 1.0, 'not': 1.0, 'because': 2.0, 'seat': 3.0, 'of': 1.0, 'it': 1.0, 'he': 1.0, 'this': 3.0, 'into': 1.0, 'loves': 1.0, 'my': 1.0, 'bought': 1.0, 'old': 1.0, 'i': 2.0, 'awful': 1.0, 'spiderman': 1.0, 'boys': 1.0, 'area': 1.0, 'prevents': 1.0, 'plastic': 1.0, 'the': 3.0, 'pee': 1.0}
Word element => {'a': 1.0, 'big': 1.0, 'ring': 1.0, 'potty': 1.0, 'between': 1.0, 'so': 1.0, 'her': 1.0, 'scoot': 1.0, 'she': 2.0, 'enough': 1.0, 'and': 3.0, 'of': 1.0, 'because': 1.0, 'know': 1.0, 'seat': 3.0, 'makes': 1.0, 'has': 1.0, 'mess': 1.0, 'the': 3.0, 't': 1.0, 'have': 1.0, 'it': 1.0, 'with': 1.0, 'this': 1.0, 'whole': 1.0, 'tries': 1.0, 'i': 1.0, 'don': 1.0, 'sitting': 1.0, 'toilet': 2.0, 'goes': 1.0, 'we': 1.0, 'anyway': 1.0, 'elongated': 1.0, 'to': 2.0, 'place': 1.0, 'far': 1.0, 'hold': 1.0, 'in': 2.0, 'gets': 1.0, 'when': 2.0, 'daughter': 1.0, 'pees': 1.0, 'my': 1.0, 'back': 2.0, 'an': 1.0, 'trouble': 1.0}
Word element => {'moves': 1.0, 'toilet': 1.0, 'our': 1.0, 'on': 1.0, 'doesn': 1.0, 'ok': 1.0, 'and': 2.0, 'daughter': 1.0, 'fit': 1.0, 't': 1.0, 'loves': 1.0, 'well': 1.0, 's': 1.0, 'slips': 1.0, 'my': 1.0, 'dora': 1.0, 'the': 1.0, 'around': 1.0, 'seat': 1.0, 'because': 1.0, 'it': 3.0, 'works': 1.0}
Word element => {'it': 1.0, 'using': 1.0, 'not': 1.0, 'still': 1.0, 'clues': 1.0, 'delivery': 1.0, 'blues': 1.0, 'potty': 1.0, 'my': 1.0, 'seat': 1.0, 'timely': 1.0, 'son': 1.0, 'is': 2.0, 'fine': 1.0, 'however': 1.0}
Word element => {'amazon': 1.0, 'thanks': 1.0, 'that': 1.0, 'go': 1.0, 'book': 1.0, 'potty': 1.0, 'dora': 1.0, 'loves': 2.0, 'she': 2.0, 'with': 1.0, 'it': 1.0, 'this': 2.0, 'excited': 1.0, 'her': 1.0, 'so': 1.0, 'got': 1.0, 'to': 2.0, 'was': 1.0, 'too': 1.0, 'daughter': 1.0, 'my': 1.0, 'get': 1.0, 'and': 2.0, 'like': 1.0, 'feels': 1.0, 'the': 1.0, 'such': 1.0, 'a': 1.0, 'big': 1.0, 'girl': 1.0, 'i': 1.0, 'also': 1.0}
Word element => {'sides': 1.0, 'in': 1.0, 'however': 1.0, 'him': 1.0, 'for': 1.0, 'positioned': 1.0, 'choice': 1.0, 'my': 2.0, 'underneath': 1.0, 'is': 2.0, 'on': 3.0, 'big': 1.0, 'and': 3.0, 'getting': 2.0, 'urine': 2.0, 'wanted': 1.0, 'was': 1.0, 'thomas': 1.0, 'this': 1.0, 'he': 2.0, 'it': 1.0, 'not': 2.0, 'to': 1.0, 'seat': 2.0, 'trains': 1.0, 'because': 1.0, 'enough': 1.0, 'have': 1.0, 'so': 1.0, 'potty': 2.0, 'time': 1.0, 'loves': 1.0, 'that': 1.0, 'can': 1.0, 'the': 7.0, 'without': 1.0, 'hole': 1.0, 'a': 3.0, 'we': 1.0, 'go': 1.0, 'cusion': 1.0, 'easy': 1.0, 'keep': 1.0, 'good': 1.0, 'clean': 1.0, 'son': 2.0, 'difficult': 1.0, 'gets': 1.0, 'trapped': 1.0}
Word element => {'closet': 1.0, 'in': 1.0, 'another': 1.0, 'bought': 1.0, 'out': 1.0, 'toilet': 1.0, 'on': 1.0, 'wobbles': 1.0, 'that': 1.0, 'is': 1.0, 'said': 1.0, 'noticed': 1.0, 'which': 1.0, 'handles': 1.0, 'and': 3.0, 'get': 1.0, 'attached': 2.0, 'loves': 1.0, 'say': 1.0, 'needless': 1.0, 'naturally': 1.0, 'so': 1.0, 'i': 3.0, 'potty': 1.0, 'to': 2.0, 'had': 1.0, 'one': 1.0, 'for': 1.0, 'son': 1.0, 'later': 1.0, 'spongebob': 1.0, 'went': 1.0, 'my': 1.0, 'his': 1.0, 'it': 2.0, 'with': 1.0, 'this': 2.0, 'come': 1.0, 'seat': 2.0, 't': 2.0, 'the': 3.0, 'pee': 1.0, 'shield': 1.0, 'isn': 1.0, 'doesn': 1.0}
Word element => {'used': 1.0, 've': 1.0, 'about': 1.0, 'd': 1.0, 'toilets': 2.0, 'i': 2.0, 'it': 5.0, 'purchased': 1.0, 'keeping': 1.0, 'larger': 1.0, 'instead': 1.0, 'successful': 1.0, 'use': 1.0, 'amazon': 1.0, 'say': 1.0, 'around': 1.0, 'is': 2.0, 'padding': 2.0, 'presume': 1.0, 'fits': 1.0, 'my': 1.0, 'great': 1.0, 'other': 1.0, 'on': 2.0, '3': 1.0, '1st': 1.0, 'after': 1.0, 'was': 1.0, 'to': 2.0, 'of': 3.0, 'handles': 1.0, 'comfy': 2.0, 'and': 1.0, 'have': 1.0, 'busy': 1.0, 'subsequent': 1.0, 'squish': 1.0, 'gift': 1.0, 'quite': 1.0, 'thick': 1.0, 'slide': 1.0, 'from': 1.0, 'while': 1.0, '75': 1.0, 'well': 1.0, 'has': 1.0, 'these': 1.0, 'others': 1.0, 'some': 2.0, 'things': 1.0, 'are': 1.0, 'for': 1.0, 'daughter': 1.0, 'we': 2.0, 'a': 1.0, 's': 1.0, 'the': 2.0, 'hands': 1.0, 'touching': 1.0, 'does': 1.0}
Word element => {'plain': 1.0, 'used': 1.0, 'would': 1.0, 'thought': 1.0, 'so': 1.0, 'dora': 1.0, 'love': 1.0, 'nephews': 1.0, 'seat': 1.0, 'know': 1.0, 'staying': 1.0, 'are': 1.0, 'nieces': 1.0, 'train': 1.0, 'much': 1.0, 'potty': 2.0, 'my': 1.0, 'shelter': 1.0, 'have': 1.0, 'than': 1.0, 'wish': 1.0, 'this': 2.0, 'children': 1.0, 'a': 3.0, 'more': 1.0, 'the': 1.0, 'homeless': 1.0, 'from': 1.0, 'bought': 1.0, 'them': 1.0, 'living': 1.0, 'i': 5.0, 'they': 2.0, 'list': 1.0, 'where': 1.0, 'number': 1.0, 'how': 1.0, 'while': 1.0, 'live': 1.0, 'of': 3.0, 'there': 2.0, 'many': 1.0, 'get': 1.0, 'and': 2.0, 'imagine': 1.0}
Word element => {'helped': 1.0, 'thanks': 1.0, 'pictures': 1.0, 'look': 1.0, 'a': 1.0, 'take': 1.0, 'so': 2.0, 'got': 1.0, 'the': 3.0, 'my': 1.0, 'dora': 1.0, 'fits': 1.0, 'reading': 1.0, 'of': 2.0, 'at': 1.0, 'some': 1.0, 'seat': 1.0, 'someone': 1.0, 'hope': 1.0, 'loves': 1.0, 'good': 1.0, 'pics': 2.0, 'i': 5.0, 'potty': 1.0, 'size': 1.0, 'toilet': 1.0, 'uploaded': 2.0, 'with': 1.0, 'this': 2.0, 'it': 1.0, 'is': 1.0, 'daughter': 1.0, 'for': 2.0, 'her': 1.0}
Word element => {'coming': 1.0, 'to': 1.0, 'in': 1.0, 'click': 1.0, 'not': 1.0, 'you': 1.0, 'however': 1.0, 'patted': 2.0, 'carry': 1.0, 'seat': 1.0, 'does': 1.0, 'soft': 1.0, 'off': 2.0, 'the': 2.0, 'dora': 1.0, 'falls': 1.0, 'without': 1.0, 'can': 1.0, 'were': 1.0, 'affordable': 1.0, 'it': 1.0}
Word element => {'breeze': 1.0, 'a': 1.0, 'made': 1.0, 'looked': 1.0, 'it': 1.0, 'switched': 1.0, 'using': 1.0, 'loved': 1.0, 'over': 1.0, 'on': 1.0, 'the': 2.0, 'my': 1.0, 'was': 1.0, 'to': 2.0, 'wanted': 1.0, 'of': 1.0, 'as': 2.0, 'big': 2.0, 'seat': 1.0, 'daughter': 1.0, 'and': 2.0, 'scared': 1.0, 'potty': 3.0, 'go': 1.0, 'never': 2.0, 'right': 1.0, 'toilet': 1.0, 'back': 1.0, 'training': 1.0, 'but': 1.0, 'soon': 1.0, 'her': 2.0, 'she': 3.0, 'saw': 1.0, 'spongebob': 1.0, 'straight': 1.0, 'hopped': 1.0}
Word element => {'miss': 1.0, 'you': 1.0, 'everyone': 1.0, 'month': 1.0, '5': 1.0, 'gross': 1.0, 'kinda': 1.0, 'alones': 1.0, 'eww': 1.0, 'use': 2.0, 'start': 1.0, 'have': 1.0, 'wish': 1.0, 'up': 1.0, 'gets': 1.0, 'off': 1.0, 'wont': 2.0, 'sometimes': 1.0, 'sticks': 1.0, 'elmos': 1.0, 'show': 2.0, 'kids': 1.0, 'elmo': 2.0, 'only': 1.0, 'hard': 1.0, 'stores': 1.0, 'one': 2.0, 'amazon': 1.0, 'from': 2.0, 'purchasing': 2.0, 'em': 1.0, 'am': 1.0, 'annoy': 1.0, 'defiantly': 1.0, 'hurt': 1.0, 'recently': 1.0, 'reccomend': 1.0, 'ours': 1.0, 'cushy': 1.0, 'seats': 1.0, 'shaped': 1.0, 'are': 1.0, 'oddly': 1.0, 'all': 2.0, 'fits': 1.0, 'put': 1.0, 'right': 1.0, 'store': 1.0, 'vinyl': 1.0, 'or': 1.0, 'everything': 1.0, 'catch': 1.0, 'also': 2.0, 'enough': 1.0, 'removable': 1.0, 'sting': 1.0, 'ellapsed': 1.0, 'expensive': 1.0, 'for': 6.0, 'where': 1.0, 'spongebob': 6.0, 'they': 1.0, 'cannot': 1.0, 'himself': 1.0, 'overly': 1.0, 'purchased': 1.0, 'charecter': 1.0, 'we': 2.0, 'a': 12.0, 'ago': 1.0, 'will': 1.0, 'could': 2.0, 'go': 1.0, 'than': 1.0, 'loves': 2.0, 'because': 1.0, 'that': 1.0, 'this': 5.0, 'love': 1.0, 'bottom': 1.0, 'he': 8.0, 'get': 1.0, 'trouble': 1.0, 'but': 6.0, 'training': 1.0, 'old': 2.0, 'keep': 1.0, 'makes': 1.0, 'pros': 1.0, 'son': 4.0, 'still': 1.0, 'around': 1.0, 'his': 2.0, 'hes': 1.0, 'comfortable': 2.0, 'find': 3.0, '1': 1.0, 'big': 3.0, 'not': 2.0, 'in': 2.0, 'seat': 4.0, 'flimsy': 2.0, 'any': 1.0, 'high': 1.0, 'to': 18.0, 'stand': 3.0, 'started': 1.0, 'me': 2.0, 'my': 5.0, 'simple': 1.0, 'splash': 1.0, 'another': 4.0, 'more': 2.0, 'baby': 1.0, 'deal': 1.0, 'is': 5.0, 'novice': 1.0, 'year': 2.0, 'toddler': 1.0, 'alone': 2.0, 'potty': 7.0, 'time': 1.0, 'lightweight': 1.0, 'so': 3.0, 'when': 3.0, 'sit': 1.0, 'disstraction': 1.0, 'dump': 1.0, '2': 2.0, 'thing': 1.0, 'worth': 1.0, 'now': 2.0, 'tore': 1.0, 'attached': 1.0, 'thinks': 1.0, 'was': 3.0, 'little': 1.0, 'and': 12.0, 'on': 6.0, 'amount': 1.0, 'the': 19.0, 'of': 5.0, 'rather': 1.0, 'them': 1.0, 'has': 1.0, 'him': 2.0, 'it': 3.0, 'remove': 1.0, 'be': 3.0, 'want': 2.0, 'easy': 5.0, 'herself': 1.0, 'used': 1.0, 'trust': 1.0, 'with': 2.0, 'gaurd': 1.0, 'piece': 1.0, 'its': 7.0, 'contents': 1.0, 'never': 1.0, 'afraid': 1.0, 'three': 1.0, 'fails': 1.0, 'as': 1.0, 'leave': 1.0, 'wants': 1.0, 'mess': 2.0, 'well': 1.0, 'i': 7.0, 'velcro': 1.0, 'plan': 1.0, 'good': 1.0, 'which': 1.0, 'side': 2.0, 'boy': 2.0, 'would': 2.0, 'rips': 1.0, 'cons': 1.0, 'toilet': 1.0, 'carry': 1.0, 'guard': 1.0, 'possible': 1.0, 'touch': 1.0, 'part': 1.0, 'attaches': 1.0}
Word element => {'hold': 1.0, 'nothing': 1.0, 'one': 1.0, 'child': 1.0, 'has': 1.0, 'your': 1.0, 'place': 2.0, 'in': 2.0, 'keeps': 1.0, 'slide': 1.0, 'non': 1.0, 'to': 1.0, 'comes': 1.0, 'purchased': 1.0, 'when': 1.0, 'too': 2.0, 'but': 1.0, 'put': 1.0, 'moves': 2.0, 'around': 2.0, 'because': 1.0, 'seat': 6.0, 'recommend': 1.0, 'things': 1.0, 'no': 1.0, 'of': 1.0, 'sits': 1.0, 'the': 3.0, 't': 1.0, 'other': 1.0, 'what': 1.0, 'way': 1.0, 'you': 1.0, 'that': 3.0, 'come': 1.0, 'with': 2.0, 'this': 2.0, 'it': 3.0, 'i': 2.0, 'much': 2.0, 'kind': 1.0, 'and': 1.0, 'skid': 1.0, 'matter': 1.0, 'toilet': 1.0, 'won': 1.0, 'on': 2.0}
Word element => {'j': 1.0, 'pleased': 1.0, 'described': 1.0, 'very': 1.0, 'as': 1.0, 'colors': 1.0, 'any': 1.0, 'seems': 1.0, 'fanatic': 1.0, 'to': 1.0, 'was': 1.0, 'early': 1.0, 'just': 1.0, 'seat': 1.0, 'nice': 1.0, 'potty': 2.0, 'be': 1.0, 'tool': 1.0, 'made': 1.0, 'this': 2.0, 'backyardigans': 1.0, 'well': 1.0, 'a': 1.0, 'love': 1.0, 'great': 1.0, 'will': 1.0, 'training': 1.0}
Word element => {'potty': 1.0, 'go': 1.0, 'want': 1.0, 'makes': 1.0, 'my': 2.0, 'spongebob': 1.0, 'loves': 2.0, 'him': 1.0, 'it': 3.0, 'very': 1.0, 'son': 2.0, 'is': 1.0, 'to': 2.0, 'easy': 1.0, 'use': 1.0, 'so': 1.0}
Word element => {'else': 1.0, 'something': 1.0, 'it': 5.0, 'this': 1.0, 'he': 4.0, 'sit': 1.0, 'now': 2.0, 'refuses': 1.0, 'toilet': 1.0, 'bought': 1.0, 'because': 2.0, 'elongated': 1.0, 'on': 3.0, 'son': 1.0, 'big': 1.0, 'loves': 1.0, 'to': 3.0, 'seat': 1.0, 'our': 1.0, 'elmo': 1.0, 'admit': 1.0, 'the': 1.0, 'my': 1.0, 'unfortunately': 1.0, 'is': 2.0, 'around': 1.0, 'completely': 1.0, 'slips': 1.0, 'of': 1.0, 'won': 2.0, 'unstable': 1.0, 'and': 1.0, 'but': 1.0, 'back': 1.0, 'afraid': 1.0, 'baby': 1.0, 'bjorn': 1.0, 'so': 1.0, 'potty': 2.0, 'his': 1.0, 'chair': 1.0, 'i': 1.0, 'buy': 1.0, 'm': 1.0, 'we': 1.0, 't': 2.0, 's': 1.0, 'go': 1.0, 'going': 1.0}
Word element => {'like': 1.0, 'working': 1.0, 'to': 2.0, 'be': 1.0, 'seat': 1.0, 'really': 1.0, 'is': 1.0, 'take': 1.0, 'this': 1.0, 'charm': 1.0, 'daughter': 1.0, 'didn': 1.0, '2': 1.0, 't': 1.0, 'traditional': 1.0, 'and': 1.0, 'loves': 1.0, 'almost': 1.0, 'chair': 1.0, 'my': 1.0, 'dora': 1.0, 'a': 2.0, 'potty': 1.0, 'she': 1.0, 'so': 1.0, 'seems': 1.0}
Word element => {'someone': 1.0, 'but': 1.0, 'girls': 1.0, 'boys': 2.0, 'causing': 1.0, 'apart': 1.0, 'up': 1.0, 'our': 1.0, 'waist': 1.0, 'be': 2.0, 'however': 1.0, 'on': 3.0, 'fitting': 1.0, 'use': 4.0, 'decent': 1.0, 'clean': 2.0, 'support': 1.0, 'he': 4.0, 'him': 1.0, 'it': 4.0, 'this': 4.0, 'old': 1.0, 'problems': 1.0, 'upstairs': 1.0, 'potty': 2.0, 'time': 1.0, 'pee': 4.0, 'the': 5.0, 'is': 3.0, 'son': 1.0, 'gets': 1.0, 'month': 1.0, 'under': 1.0, 'has': 3.0, '5': 1.0, 'both': 1.0, 'about': 1.0, 'years': 1.0, 'no': 1.0, 'and': 3.0, 'prepared': 1.0, 'almost': 1.0, 'his': 1.0, 'my': 1.0, 'with': 3.0, 'downstairs': 1.0, 'for': 9.0, 'one': 4.0, 'training': 1.0, 'a': 3.0, 's': 2.0, 'have': 3.0, 'been': 1.0, 'aim': 2.0, 'two': 1.0, 'i': 4.0, 'mess': 1.0, 'when': 1.0, 'sit': 1.0, 'seats': 2.0, 'just': 2.0, 'easier': 1.0, 'right': 3.0, 'don': 1.0, 'isn': 1.0, 'seat': 3.0, 'in': 1.0, 'regular': 1.0, 'order': 1.0, 'down': 1.0, 'not': 1.0, 'toilet': 2.0, 'guard': 1.0, 'boy': 1.0, 'would': 1.0, 'to': 7.0, 'high': 1.0, 'enough': 1.0, 'off': 1.0, 'get': 3.0, 'legs': 1.0, 'also': 1.0, 'aims': 1.0, 'if': 2.0, 'every': 1.0, 'we': 2.0, 'take': 1.0, 't': 2.0, 'further': 1.0, 'elongated': 1.0, 'adult': 1.0, '2': 1.0, 'wearing': 1.0, 'anything': 1.0, 'below': 1.0, 'think': 2.0, 'better': 3.0, 'you': 1.0, 'able': 1.0, 'spread': 1.0}
Word element => {'guess': 1.0, 'i': 1.0, 'off': 1.0, 'good': 1.0, 'he': 3.0, 'his': 2.0, 'skin': 1.0, 'stuck': 1.0, 'complete': 1.0, 'pottys': 1.0, 'complains': 1.0, 'vinyl': 1.0, 'and': 5.0, 'topic': 1.0, 'visually': 1.0, 'up': 2.0, 'sore': 1.0, 'of': 1.0, 'him': 2.0, 'was': 2.0, 'seat': 2.0, 'to': 3.0, 'the': 6.0, 'red': 1.0, 'motivated': 1.0, 'hurts': 1.0, 'that': 1.0, 'appealing': 1.0, 'when': 1.0, 'ripped': 1.0, 'very': 1.0, 'until': 1.0, 'big': 2.0, 'thighs': 2.0, 'potty': 3.0, 'bit': 1.0, 'got': 1.0, 'result': 1.0, 'for': 1.0, 'discovered': 1.0, 'a': 1.0, '12': 1.0, 'hours': 1.0, 'comes': 1.0, 'fear': 1.0, 'if': 1.0, 'wimpers': 1.0, 'back': 1.0, 'bjorn': 1.0}
Word element => {'even': 1.0, 'opening': 1.0, 'without': 1.0, 'returning': 1.0, 'i': 1.0, 'harm': 1.0, 'am': 1.0, 'reproductive': 1.0, 'other': 1.0, 'defects': 1.0, 'package': 1.0, 'today': 2.0, 'saying': 1.0, 'there': 1.0, 'sticker': 1.0, 'of': 1.0, 'on': 1.0, 'a': 2.0, 'the': 3.0, 'arrived': 1.0, 'it': 2.0, 'this': 1.0, 'birth': 1.0, 'chemical': 1.0, 'product': 2.0, 'was': 1.0, 'to': 2.0, 'known': 1.0, 'california': 1.0, 'contains': 1.0, 'state': 1.0, 'cause': 1.0, 'cancer': 1.0, 'or': 2.0}
Word element => {'market': 1.0, 'if': 1.0, 'recommend': 1.0, 'due': 1.0, 'spills': 1.0, 'are': 2.0, 'there': 1.0, 'wakes': 1.0, 'annoyingly': 1.0, 'harder': 1.0, 'much': 1.0, 'expensive': 1.0, 'more': 2.0, 'hands': 1.0, 'clean': 2.0, 'as': 1.0, 'low': 1.0, 'tech': 1.0, 'great': 1.0, 'ducky': 1.0, 'basically': 1.0, 'flush': 1.0, 'pee': 5.0, 'basic': 1.0, 'easy': 1.0, 'enormous': 1.0, 'decrease': 1.0, 'cleanly': 1.0, 'down': 3.0, 'business': 1.0, 'guard': 4.0, 'toilet': 1.0, 'save': 1.0, 'making': 1.0, 'an': 1.0, 'other': 1.0, 'prevent': 1.0, 'in': 1.0, 'seat': 3.0, 'the': 13.0, 'of': 2.0, 'flaw': 1.0, 'head': 1.0, 'is': 6.0, 'really': 1.0, 'and': 7.0, 'duck': 1.0, '1': 1.0, 'design': 2.0, 'its': 1.0, '2': 1.0, 'for': 3.0, 'lot': 1.0, 'actual': 1.0, 'one': 1.0, 'my': 4.0, 'reasons': 1.0, 'how': 1.0, 'love': 1.0, 'he': 1.0, 'you': 1.0, 'loud': 1.0, 'things': 1.0, 'two': 2.0, 'daughters': 3.0, 'i': 3.0, 'it': 6.0, 'shooting': 1.0, 'purpose': 1.0, 'from': 2.0, 'soaked': 1.0, 'highly': 1.0, 'this': 3.0, 'can': 1.0, 'so': 1.0, 'twin': 1.0, 'potty': 4.0, 'boy': 1.0, 'fails': 1.0, 'be': 1.0, 'slides': 1.0, 'backwards': 1.0, 'on': 2.0, 'than': 1.0, 'real': 1.0, 'estate': 1.0, 'away': 1.0, 'go': 1.0, 's': 3.0, 't': 1.0, 'a': 2.0, 'not': 2.0, 'to': 9.0, 'high': 1.0, 'enough': 2.0, 'neither': 1.0, 'baby': 3.0, 'getting': 1.0, 'what': 1.0, 'sit': 1.0, 'when': 1.0, 'daughter': 1.0, 'with': 1.0, 'singing': 2.0, 'didn': 1.0, 'clamp': 1.0, 'unstable': 1.0, 'also': 1.0, 'her': 2.0, 'knees': 1.0, 'lack': 1.0, 'tightly': 1.0, 'these': 1.0, 'room': 1.0, 'shut': 1.0, 'hard': 2.0, 'over': 1.0, 'onto': 1.0, 'potties': 1.0, 'price': 1.0, 'was': 3.0, 'up': 1.0, 'favorite': 1.0, 'takes': 1.0, 'pleased': 1.0, 'have': 1.0, 'froggy': 3.0, 'mini': 1.0, 'fisher': 1.0}
Word element => {'loves': 1.0, 'she': 1.0, 'also': 1.0, 'perfect': 1.0, 'is': 1.0, 'so': 1.0, 'yet': 1.0, 'toilet': 1.0, 'potty': 2.0, 'everywhere': 1.0, 'this': 1.0, 'with': 1.0, 'design': 1.0, 'we': 1.0, 'goes': 1.0, 'go': 1.0, 'pretty': 1.0, 'dora': 1.0, 'my': 1.0, 'seat': 2.0, 'out': 1.0, 'when': 1.0, 'us': 1.0, 'daughter': 1.0, 'trained': 1.0, 'ready': 1.0, 'but': 1.0, 'use': 1.0, 'has': 1.0, 'recently': 1.0, 'isn': 1.0, 'the': 3.0, 't': 1.0, 'to': 1.0}
Word element => {'dora': 1.0, 'seeing': 1.0, 'enjoy': 1.0, 'she': 1.0, 'well': 1.0, 'up': 1.0, 'holds': 1.0, 'into': 1.0, 'are': 1.0, 'the': 1.0, 'they': 1.0, 'where': 1.0, 'seems': 2.0, 'anything': 1.0, 'is': 1.0, 'trick': 1.0, 'train': 1.0, 'to': 5.0, 'head': 1.0, 'potty': 1.0, 'i': 1.0, 'another': 1.0, 'child': 1.0, 'them': 1.0, 'go': 1.0, 'get': 1.0, 'and': 3.0, 'do': 1.0, 'this': 1.0, 'it': 1.0}
Word element => {'done': 1.0, 'gets': 1.0, 'biggie': 1.0, 'bowl': 1.0, 'toilet': 1.0, 'the': 2.0, 'in': 1.0, 'job': 1.0, 'no': 1.0, 'really': 1.0, 'colorful': 1.0, 'since': 1.0, 'and': 1.0, 'does': 2.0, 'a': 1.0, 'bit': 1.0, 'its': 1.0, 'purpose': 1.0, 'but': 1.0, 'it': 2.0, 'slide': 1.0}
Word element => {'does': 1.0, 'but': 2.0, 'toddler': 1.0, 'buy': 1.0, 'old': 1.0, 'i': 1.0, 'royal': 2.0, 'job': 1.0, 'the': 5.0, 'daughter': 1.0, 'who': 1.0, 'well': 1.0, 'on': 2.0, 'is': 2.0, 'not': 1.0, '20': 1.0, 'as': 1.0, 'seat': 2.0, 'to': 3.0, 'this': 3.0, 'with': 1.0, 'its': 2.0, 'only': 1.0, 'loves': 1.0, 'good': 1.0, 'decided': 1.0, 'bought': 1.0, 'months': 1.0, 'one': 2.0, 'my': 1.0, 'b': 1.0, 'c': 1.0, 'oversized': 1.0, 'it': 1.0, 'she': 2.0, 'refuses': 1.0, 'sit': 1.0, 'snug': 1.0, 'have': 1.0, 'rather': 1.0, 'travel': 1.0, 'use': 1.0, 'an': 1.0, 'toilet': 2.0, 'problem': 1.0, 'a': 1.0, 'we': 1.0, 'potty': 2.0, 'so': 1.0, 'fit': 1.0}
Word element => {'tushie': 1.0, 'contoured': 1.0, 'boos': 1.0, 'bought': 1.0, 'just': 1.0, 'i': 1.0, 'long': 1.0, 'for': 1.0, 'hurts': 1.0, 'mark': 1.0, 'complain': 1.0, 'red': 1.0, 'boo': 1.0, 'would': 3.0, 'on': 1.0, 'old': 1.0, 'yr': 1.0, 'pee': 1.0, 'the': 6.0, 'and': 4.0, 'plastic': 2.0, 'were': 1.0, 'helper': 1.0, 'that': 2.0, 'amazing': 1.0, 'crevices': 1.0, 'her': 1.0, 'clean': 2.0, 'this': 2.0, 'she': 1.0, 'it': 3.0, 'my': 1.0, 'another': 1.0, 'there': 2.0, 'don': 1.0, 'up': 1.0, 'fun': 1.0, '2': 1.0, 'can': 1.0, 'but': 1.0, 'inside': 1.0, 'stuck': 1.0, 'in': 1.0, 'leave': 1.0, 'have': 1.0, 'they': 2.0, 'are': 2.0, 'seat': 2.0, 'poo': 1.0, 'to': 3.0, 'easy': 1.0, 'get': 4.0, 'kind': 1.0, 'cushie': 1.0, 'hard': 1.0, 'designs': 1.0, 'main': 1.0, 'mommy': 1.0, 'problem': 1.0, 'dented': 1.0, 'no': 1.0, 'pressed': 1.0, 'is': 1.0, 'holds': 1.0, 'sits': 1.0, 'sticking': 1.0, 'sit': 1.0, 'cushion': 2.0, 'little': 1.0, 't': 1.0, 's': 3.0, 'a': 3.0, 'time': 1.0, 'potty': 2.0, 'bit': 1.0, 'molding': 2.0, 'circle': 1.0, 'when': 1.0, 'gets': 1.0, 'whenever': 1.0, 'buttocks': 2.0}
Word element => {'safely': 1.0, 'that': 1.0, 'something': 1.0, 'get': 1.0, 'about': 1.0, 'fit': 1.0, 'for': 1.0, 'hold': 1.0, 'cannot': 1.0, 'nothing': 1.0, 'really': 1.0, 'joke': 1.0, 'holds': 1.0, 'is': 1.0, 'over': 2.0, 'old': 1.0, 'i': 5.0, '1': 1.0, 'and': 3.0, 'son': 1.0, 'his': 1.0, 'year': 1.0, 'a': 1.0, 't': 1.0, 'another': 1.0, 'my': 2.0, 'cup': 1.0, 'recommend': 1.0, 'doesn': 1.0, '2': 2.0, 'but': 1.0, 'will': 2.0, 'secure': 1.0, 'it': 2.0, 'this': 2.0, 'he': 2.0, 'its': 3.0, 'well': 2.0, 'cause': 1.0, 'function': 1.0, 'between': 1.0, 'potty': 1.0, 'so': 2.0, 'everything': 1.0, 'bought': 1.0, 'cute': 2.0, 'have': 1.0, 'had': 1.0, 'thought': 1.0, 'the': 5.0, 'pee': 2.0, 'flush': 1.0, 'place': 1.0, 'not': 1.0, 'to': 2.0, 'all': 3.0, 'seat': 2.0, 'at': 2.0, 'am': 1.0, 'boys': 1.0, 'when': 1.0, 'goes': 1.0, 'even': 1.0, 'pees': 2.0, 'slides': 1.0, 'in': 2.0, 'clean': 1.0, 'toilet': 2.0, 'holder': 1.0}
Word element => {'prefer': 1.0, 'd': 1.0, 'diego': 1.0, 'loves': 2.0, 'into': 1.0, 'behind': 1.0, 'sit': 1.0, 'room': 1.0, 'don': 1.0, 'blame': 1.0, 'want': 2.0, 'doesn': 3.0, 'his': 1.0, 'saw': 1.0, 'never': 1.0, 'parts': 1.0, 'backyardigans': 1.0, 'no': 1.0, 'far': 1.0, 'dirty': 1.0, 'also': 2.0, 'seems': 1.0, 'it': 2.0, 'grabbing': 1.0, 'just': 2.0, 'of': 2.0, 'there': 1.0, 'instead': 1.0, 'be': 1.0, 'him': 1.0, 'grab': 1.0, 'use': 4.0, 'for': 3.0, 'which': 1.0, 'using': 1.0, 'without': 1.0, 'the': 12.0, '2': 1.0, 'sister': 1.0, 'having': 1.0, 'because': 1.0, 'started': 1.0, 'one': 3.0, 'bought': 1.0, 'months': 1.0, 'pictures': 1.0, 'this': 3.0, 'he': 6.0, 'first': 1.0, 'have': 3.0, 'big': 1.0, '1': 1.0, 'and': 5.0, 'either': 1.0, 'thought': 1.0, 'had': 2.0, 'daughter': 1.0, 'bumping': 1.0, 'who': 2.0, 'already': 1.0, 't': 5.0, 'a': 3.0, 'we': 5.0, 'other': 2.0, 'guards': 1.0, 'on': 1.0, '3': 1.0, 'is': 4.0, 'seem': 1.0, 'son': 4.0, 'seat': 1.0, 'our': 3.0, 'to': 7.0, 'as': 1.0, 'ring': 4.0, 'didn': 1.0, 'my': 1.0, 'splash': 3.0, 'upstairs': 1.0, 'so': 1.0, 'potty': 4.0, 'guard': 4.0, 'would': 1.0, 'need': 2.0, 'i': 3.0, '21': 1.0, 'handles': 3.0, 'miss': 1.0, 'when': 1.0, 'you': 2.0, 'people': 1.0, 'take': 1.0, 'enough': 1.0, 'off': 1.0}
Word element => {'for': 1.0, 'up': 1.0, 'cleared': 1.0, 'like': 1.0, 'worked': 1.0, 'year': 1.0, 'day': 1.0, 'spongebob': 2.0, 'it': 2.0, 'she': 1.0, 'me': 1.0, 'not': 1.0, 'poop': 1.0, 'this': 1.0, 'got': 1.0, 'use': 1.0, 'loves': 1.0, 'bob': 1.0, 'hear': 1.0, 'had': 1.0, 'now': 1.0, 'two': 1.0, 'i': 4.0, 'old': 1.0, 'so': 1.0, 'potty': 2.0, 'right': 1.0, 'wanting': 1.0, 'my': 1.0, 'regressed': 1.0, 'the': 1.0, 'a': 1.0, 't': 1.0, 'charm': 1.0, 'to': 2.0, 'all': 1.0, 'likes': 1.0, 'have': 1.0, 'anything': 1.0, 'lol': 1.0, 'if': 1.0, 'on': 1.0, 'your': 1.0, 'kid': 1.0, 'and': 1.0, 'you': 1.0, 'because': 1.0, 'having': 1.0, 'training': 1.0, 'can': 1.0, 'but': 1.0, 'issues': 1.0, 'promise': 1.0}
Word element => {'like': 1.0, 'she': 1.0, 'that': 1.0, 'me': 1.0, 'and': 2.0, 'very': 1.0, 'toilet': 1.0, 'stay': 1.0, 'seat': 2.0, 'use': 1.0, 'little': 1.0, 'isn': 1.0, 'put': 1.0, 'inside': 1.0, 'doesn': 2.0, 'often': 1.0, 'comfortable': 1.0, 'for': 1.0, 'my': 1.0, 't': 3.0, 'the': 1.0, 'ones': 1.0, 'child': 1.0, 'refuses': 1.0, 'to': 1.0, 'hard': 1.0, 'it': 2.0, 'reminds': 1.0}
Word element => {'who': 1.0, 'with': 1.0, 'obsessed': 1.0, 'is': 1.0, 'son': 1.0, 'for': 1.0, 'encouraging': 1.0, 'very': 1.0, 'wonderful': 1.0, 'lightweight': 1.0, 'my': 2.0, 'chair': 1.0, 'bob': 2.0, 'it': 1.0, 'fits': 1.0, 'even': 1.0, 'potty': 1.0, 'oblong': 1.0, 'toilet': 1.0, 'seat': 1.0}
Word element => {'spongebob': 1.0, 'at': 1.0, 'on': 1.0, 'look': 1.0, 'to': 1.0, 'sit': 1.0, 'likes': 1.0, 'and': 1.0, 'perfectly': 1.0, 's': 2.0, 'the': 1.0, 'my': 1.0, 'toilet': 1.0, 'also': 1.0, 'in': 1.0, 'still': 1.0, 'cute': 1.0, 'fits': 1.0, 'he': 1.0, 'it': 3.0, 'this': 1.0, 'but': 1.0, 'training': 1.0, 'what': 1.0, 'used': 1.0, 'son': 1.0, 'is': 1.0, 'a': 1.0, 'little': 1.0, 'considering': 1.0, 'too': 1.0, 'for': 2.0, 'young': 1.0, 'potty': 1.0}
Word element => {'logo': 1.0, 'thomas': 1.0, 'stool': 2.0, 'bought': 1.0, 'also': 1.0, 'step': 2.0, 'i': 1.0, 'working': 1.0, 'very': 1.0, 'and': 2.0, 'train': 1.0, 'house': 1.0, 'all': 2.0, 'to': 1.0, 'use': 1.0, 'purchased': 1.0, 'my': 2.0, 'the': 4.0, 'liked': 1.0, 'for': 1.0, 'at': 1.0, 'well': 2.0, 'it': 1.0, 'this': 1.0, 'he': 2.0, 'is': 1.0, 'really': 1.0, 'grandson': 1.0, 'spiderman': 1.0, 'on': 1.0, 'over': 1.0, 'potty': 1.0, 'works': 1.0, 'used': 1.0}
Word element => {'toilet': 1.0, 'the': 2.0, 'in': 1.0, 'perfect': 1.0, 'but': 1.0, 'handles': 1.0, 'anywhere': 1.0, 'love': 2.0, 'a': 1.0, 'pee': 1.0, 'ti': 1.0, 'front': 1.0, 'little': 1.0, 'cover': 1.0, 'so': 1.0, 'has': 1.0, 'he': 1.0, 'doesnt': 1.0}
Word element => {'likes': 1.0, 'left': 1.0, 'have': 1.0, 'cute': 1.0, 'print': 1.0, 'elmo': 2.0, 'plastic': 1.0, 'compresses': 1.0, 'padding': 1.0, 'wider': 1.0, 'spread': 1.0, 'thus': 1.0, 'ankles': 1.0, 'pants': 2.0, 'with': 1.0, 'on': 3.0, 'if': 2.0, 'a': 1.0, 's': 2.0, 'echo': 1.0, 'sits': 2.0, 'complaints': 1.0, 'toilet': 1.0, 'using': 1.0, 'for': 2.0, 'daughter': 4.0, 'when': 2.0, 'other': 1.0, 'flaws': 1.0, 'this': 1.0, 'but': 1.0, 'can': 1.0, 'removable': 1.0, '2': 1.0, 'without': 1.0, 'pee': 2.0, 'the': 11.0, 'old': 1.0, 'i': 1.0, 'design': 1.0, 'tries': 1.0, 'year': 1.0, 'so': 1.0, 'interest': 1.0, 'potty': 4.0, 'my': 4.0, 'new': 1.0, 'guard': 2.0, 'biggest': 1.0, 'ring': 1.0, 'cuts': 3.0, 'started': 1.0, 'search': 1.0, 'me': 1.0, 'not': 2.0, 'more': 1.0, 'around': 1.0, 'is': 5.0, 'loves': 1.0, 'that': 3.0, 'into': 3.0, 'elongated': 1.0, 'in': 2.0, 'slides': 1.0, 'back': 1.0, 'bought': 1.0, 'uncomfortable': 1.0, 'seat': 2.0, 'to': 1.0, 'sit': 1.0, 'good': 1.0, 'her': 6.0, 'seats': 1.0, 'however': 1.0, 'down': 1.0, 'complaint': 1.0, 'and': 4.0, 'showing': 1.0, 'it': 2.0, 'she': 4.0, 'backs': 1.0, 'of': 3.0, 'legs': 4.0}
Word element => {'much': 1.0, 'be': 1.0, 'larger': 1.0, 'better': 1.0, 'if': 1.0, 'toilet': 1.0, 'into': 1.0, 'would': 1.0, 'rather': 1.0, 'shooting': 1.0, 'up': 1.0, 'over': 1.0, 'ends': 1.0, 'about': 1.0, 'well': 1.0, 'than': 1.0, '5': 1.0, 's': 1.0, 'was': 1.0, 'son': 2.0, 'is': 1.0, 'the': 2.0, '2': 1.0, 'does': 1.0, 'my': 2.0, 'pees': 1.0, 'not': 1.0, 'seat': 2.0, 'this': 1.0, 'it': 5.0, 'excited': 1.0, 'he': 1.0, 'were': 1.0, 'although': 1.0, 'small': 1.0, 'function': 1.0, 'and': 1.0, 'when': 1.0, 'too': 1.0}
Word element => {'kids': 1.0, 'practical': 1.0, 'and': 1.0, 'very': 1.0, 'grandson': 1.0, 'for': 2.0, 'ginsey': 1.0, 'potty': 1.0, 'my': 1.0, 'the': 1.0, 'seat': 1.0, 'diego': 1.0, 'soft': 2.0, 'him': 1.0, 'love': 1.0, 'it': 2.0, 'wondeful': 1.0, 's': 2.0}
Word element => {'perfect': 1.0, 'but': 1.0, 'not': 1.0, 'are': 1.0, 'of': 1.0, 'lot': 1.0, 'found': 1.0, 'a': 1.0, 'front': 1.0, 'boys': 3.0, 'great': 1.0, 'the': 2.0, 'little': 3.0, 'ment': 1.0, 'son': 1.0, 'lip': 1.0, 'is': 3.0, 'on': 1.0, 'this': 3.0, 'before': 1.0, 'my': 1.0, 'went': 1.0, 'product': 1.0, 'especially': 1.0, 'through': 1.0, '3': 1.0, 'we': 2.0, 'potty': 2.0, 'for': 3.0, 'one': 2.0, 'seats': 2.0, 'wonderful': 1.0, 'toliets': 2.0, 'got': 1.0}
Word element => {'a': 1.0, 'with': 1.0, 'car': 1.0, 'peepee': 1.0, 'potty': 1.0, 'though': 1.0, 'handles': 1.0, 'like': 1.0, 'enough': 1.0, 'is': 1.0, 'into': 1.0, 'cushion': 1.0, 'twin': 1.0, 'for': 3.0, 'my': 1.0, 'the': 8.0, 'disney': 2.0, 'and': 3.0, 'big': 1.0, 'as': 1.0, 'diego': 2.0, 'recommend': 2.0, 'larger': 1.0, 'penis': 1.0, 'have': 1.0, 'i': 3.0, 'rather': 1.0, 'would': 2.0, 'seat': 3.0, 'not': 2.0, 'toilet': 3.0, 'makes': 1.0, 'cover': 3.0, 'that': 1.0, 'boys': 2.0, 'sure': 1.0, 'cars': 1.0, 'goes': 1.0}
Word element => {'stubborn': 1.0, 'highly': 1.0, 'eat': 1.0, 'tried': 1.0, 'for': 2.0, 'like': 1.0, 'little': 1.0, 'look': 1.0, 'it': 3.0, 'them': 1.0, 'pick': 1.0, 'up': 1.0, 'child': 1.0, 'mouth': 1.0, 'because': 2.0, 'with': 1.0, 'use': 1.0, 'not': 1.0, 'their': 1.0, 'should': 1.0, 'colors': 1.0, 'watch': 1.0, 'other': 1.0, 'recommend': 1.0, 'submarine': 1.0, 'of': 1.0, 'bathtime': 1.0, 'these': 4.0, 'candy': 1.0, 'the': 9.0, '2': 1.0, 'can': 1.0, 'change': 1.0, 'but': 1.0, 'dissolve': 2.0, 'they': 3.0, 'dissolving': 1.0, 'bathers': 1.0, 'he': 3.0, 'while': 1.0, 'hard': 1.0, 'younger': 2.0, 'have': 1.0, 'toys': 1.0, 'due': 1.0, 't': 1.0, 's': 1.0, 'might': 1.0, 'we': 2.0, 'a': 6.0, 'realizes': 1.0, 'runs': 1.0, 'take': 2.0, 'getting': 1.0, 'and': 9.0, 'all': 1.0, 'to': 7.0, 'tablets': 3.0, 'i': 2.0, 'watching': 1.0, 'children': 1.0, 'bedtime': 1.0, 'move': 1.0, 'mesmerizing': 1.0, 'color': 2.0, 'time': 1.0, 'put': 2.0, 'think': 1.0, 'make': 2.0, 'bath': 5.0, 'gets': 1.0, 'son': 2.0, 'wants': 1.0, 'fun': 1.0, 'you': 2.0, 'when': 1.0, 'ask': 1.0, 'what': 2.0, 'ready': 1.0, 'his': 1.0, 'hasn': 1.0, 'jump': 1.0, 'even': 2.0, 'him': 2.0, 'be': 1.0, 'that': 3.0, 'into': 1.0, 'fact': 1.0, 'my': 2.0, 'bathroom': 1.0, 'completely': 1.0, 'around': 1.0, 'is': 3.0, 'in': 4.0, 'water': 2.0}
Word element => {'teether': 1.0, 'young': 1.0, 'entertaining': 1.0, 'somehow': 1.0, 'plus': 1.0, 'toy': 1.0, 'other': 1.0, 'with': 1.0, 'in': 1.0, 'uninterested': 1.0, 'unable': 1.0, 'before': 1.0, 'seconds': 1.0, 'so': 1.0, 'objects': 1.0, 'days': 1.0, 'enough': 2.0, 'his': 2.0, 'finally': 1.0, 'control': 2.0, 'the': 4.0, 'was': 3.0, 'early': 1.0, 'started': 1.0, 'not': 1.0, 'finds': 1.0, 'and': 4.0, 'any': 1.0, 'to': 8.0, 'as': 1.0, 'or': 1.0, 'yet': 1.0, 'for': 5.0, 'months': 1.0, 'one': 1.0, 'handle': 1.0, 'my': 1.0, '3': 1.0, 'on': 2.0, 'movements': 1.0, 'he': 6.0, 'doing': 1.0, 'this': 2.0, 'loses': 1.0, 'it': 2.0, 'able': 3.0, 'pick': 1.0, 'still': 1.0, 'son': 1.0, 'wing': 1.0, 'teething': 3.0, 'few': 1.0, 'by': 1.0, 'butterfly': 2.0, 'light': 1.0, 'things': 1.0, 'get': 1.0, 'easy': 2.0, 'grab': 1.0, 'him': 3.0, 'up': 1.0, 'is': 3.0, 'like': 1.0, 'however': 1.0, 'move': 1.0, 'chew': 2.0, 'mouth': 1.0, 'a': 4.0, 'go': 1.0}
Word element => {'also': 1.0, 'vibrant': 1.0, 'where': 1.0, 'my': 1.0, 'the': 1.0, 'are': 1.0, 'out': 1.0, 'can': 1.0, 'without': 1.0, 'i': 1.0, 'thought': 1.0, 'see': 1.0, 'well': 1.0, 'is': 1.0, 'product': 1.0, 'be': 1.0, 'to': 1.0, 'this': 2.0, 'will': 1.0, 'able': 1.0, 'grandson': 1.0, 'hold': 1.0, 'problems': 1.0, 'any': 1.0, 'colors': 1.0}
Word element => {'accurate': 1.0, 'title': 1.0, 'in': 1.0, 'words': 1.0, 'but': 1.0, 'stands': 1.0, 'part': 1.0, 'for': 1.0, 'tinkle': 1.0, 'name': 1.0, 'daughter': 1.0, 'this': 1.0, 'with': 1.0, 'that': 2.0, 'know': 1.0, 'just': 2.0, 'not': 1.0, 'i': 2.0, 'did': 1.0, 'little': 1.0, 'm': 1.0, 'natural': 1.0, 'everywhere': 1.0, 'on': 1.0, 'my': 1.0, 'purchase': 1.0, 'wants': 1.0, 'worm': 1.0, 'is': 3.0, 'amazon': 1.0, 'so': 2.0, 'was': 2.0, 'be': 1.0, 'well': 1.0, 'toy': 1.0, 'one': 2.0, 'of': 2.0, 'there': 1.0, 'available': 1.0, 'her': 2.0, 'what': 1.0, 'going': 1.0, 'a': 2.0, 's': 3.0, 'go': 1.0, 'toys': 1.0, 'mini': 1.0, 'sure': 1.0, 'it': 3.0, 'she': 1.0, 'take': 1.0, 'to': 3.0, 'as': 2.0, 'and': 1.0, 'rest': 1.0, 'cute': 1.0, 'nickname': 1.0, 'the': 3.0}
Word element => {'began': 1.0, 'onto': 1.0, 'latched': 1.0, 'visited': 1.0, 'imagination': 1.0, 'niece': 1.0, 'with': 1.0, 'do': 1.0, 'interested': 1.0, 'll': 1.0, 'few': 1.0, 'next': 1.0, 'so': 1.0, 'be': 1.0, 'him': 1.0, 'still': 2.0, 'or': 1.0, 'see': 1.0, 'focus': 1.0, 'one': 1.0, 'months': 2.0, 'not': 1.0, 'more': 2.0, 'is': 4.0, 'old': 2.0, 'dimensions': 1.0, 'listed': 1.0, 'long': 2.0, 'now': 1.0, 'thin': 1.0, 'easily': 1.0, 'the': 3.0, 'are': 1.0, 'surprised': 1.0, 'big': 4.0, 'very': 1.0, 'some': 1.0, 'at': 1.0, 'reason': 1.0, 'for': 4.0, 'to': 3.0, 'stuffed': 1.0, 'animal': 1.0, '2': 1.0, 'but': 1.0, 'can': 4.0, 'play': 1.0, 'and': 7.0, 'area': 1.0, 'easy': 1.0, 'another': 1.0, 'caterpillar': 1.0, 'my': 2.0, 'pull': 1.0, 'i': 3.0, '4': 1.0, 'on': 2.0, 'it': 8.0, 'month': 1.0, 'was': 2.0, 'hug': 1.0, 'know': 1.0, 'like': 1.0, 'hold': 1.0, 'because': 2.0, 'mouth': 1.0, 'bite': 1.0, 'year': 1.0, 'his': 1.0, 'almost': 1.0, 'a': 1.0, 's': 1.0, 'he': 4.0, 'how': 2.0, '6': 1.0}
Word element => {'obnoxious': 1.0, 'because': 1.0, 'also': 1.0, 'sounds': 2.0, 'her': 1.0, 'nice': 1.0, 'big': 1.0, 'daughter': 1.0, 'or': 1.0, 'i': 1.0, 'old': 1.0, 'rating': 1.0, 'portfolio': 1.0, 'so': 1.0, 'first': 1.0, 'various': 1.0, 'at': 2.0, 'was': 1.0, 'now': 1.0, 'oppenheim': 1.0, 'shaking': 1.0, 'loves': 2.0, 'initially': 1.0, 'got': 1.0, 'well': 1.0, 'toy': 2.0, 'think': 1.0, 'on': 1.0, 'months': 1.0, 'as': 2.0, 'to': 1.0, 'our': 1.0, 'rediscovered': 1.0, 'this': 1.0, 'based': 1.0, 'for': 2.0, 'the': 4.0, 'aren': 1.0, 'antennae': 1.0, 'but': 1.0, 'eight': 1.0, 'it': 5.0, 'she': 3.0, 'month': 1.0, 't': 1.0, 'a': 1.0, 'we': 1.0, 's': 2.0, 'ago': 1.0, 'too': 1.0, 'and': 2.0, 'get': 1.0, 'picking': 1.0, 'squeezing': 1.0}
Word element => {'complaints': 1.0, 'real': 1.0, 'but': 1.0, 'little': 1.0, 'a': 1.0, 'did': 1.0, 'or': 1.0, 'up': 1.0, 'wish': 1.0, 'i': 1.0, 'teething': 1.0, 'while': 1.0, 'my': 1.0, 'xmas': 1.0, 's': 4.0, 'point': 1.0, 'infants': 1.0, 'more': 1.0, 'the': 1.0, 'great': 2.0, 'him': 1.0, 'and': 2.0, 'for': 4.0, 'on': 1.0, 'starting': 1.0, 'inspect': 1.0, 'not': 1.0, 'he': 3.0, 'it': 2.0, 'this': 1.0, 'chew': 1.0, 'got': 1.0, 'where': 1.0, 'grab': 1.0, 'to': 3.0, 'no': 1.0, 'nephew': 1.0, 'at': 1.0, 'things': 1.0, 'lit': 1.0, 'mention': 1.0}
Word element => {'well': 1.0, 'colored': 1.0, 'great': 1.0, 'the': 1.0, 'it': 1.0, 'with': 1.0, 'toddlers': 1.0, 'playing': 1.0, 'enjoys': 1.0, 'for': 1.0, 'one': 1.0, 'brightly': 1.0, 'and': 1.0, 'as': 1.0, 'toddler': 1.0, 'to': 1.0, 'clean': 1.0, 'gift': 1.0, 'idea': 1.0, 'easy': 1.0, 'certainly': 1.0, 'recommend': 1.0, 'my': 1.0, 'smaller': 1.0}
Word element => {'live': 1.0, 'without': 1.0, 'can': 1.0, 'isn': 1.0, 'must': 1.0, 'from': 1.0, 'comes': 1.0, 'part': 1.0, 'but': 2.0, 'any': 1.0, 'colors': 1.0, 'little': 1.0, 'our': 2.0, 'and': 2.0, 'really': 1.0, 'be': 1.0, 'product': 2.0, 'this': 1.0, 'one': 1.0, 'i': 1.0, 'received': 1.0, 'crinkle': 2.0, 'we': 2.0, 't': 1.0, 'defective': 1.0, 'the': 3.0, 'all': 1.0, 'likes': 1.0, 'squeaking': 1.0, 'noise': 1.0, 'sure': 1.0, 'where': 1.0, 'm': 1.0, 'because': 1.0, 'not': 1.0, 'there': 1.0, '34': 2.0}
Word element => {'quality': 1.0, 'pretty': 1.0, 'turn': 1.0, 'frequently': 1.0, 'also': 2.0, 'brother': 1.0, 'his': 1.0, 'i': 1.0, 'ordered': 1.0, 'it': 2.0, 'loves': 1.0, 'this': 1.0, 'good': 1.0, 'big': 1.0, 'nephew': 1.0, 'for': 1.0, 'a': 2.0, 'wants': 1.0, 'gift': 1.0, 'my': 1.0, 'little': 1.0}
Word element => {'we': 1.0, 'thing': 1.0, 'beats': 1.0, 'and': 1.0, 'takes': 1.0, 'he': 1.0, 'forever': 1.0, 'got': 1.0, 'it': 1.0, 'love': 1.0, 'month': 2.0, 'sticks': 1.0, 'this': 2.0, 'about': 1.0, 'old': 1.0, 'a': 1.0, 'his': 1.0, 'ago': 1.0, '7': 1.0, 'for': 1.0, 'on': 1.0, 'son': 1.0, 'my': 1.0}
Word element => {'mouth': 1.0, 'to': 1.0, 'old': 1.0, 'right': 1.0, 'likes': 1.0, '8': 1.0, 'away': 1.0, 'who': 1.0, 'grandson': 1.0, 'month': 1.0, 'sticks': 1.0, 'went': 1.0, 'my': 1.0, 'the': 2.0, 'hes': 1.0, 'older': 1.0, 'on': 1.0, 'bang': 1.0, 'for': 1.0, 'in': 1.0, 'thngs': 1.0, 'put': 1.0, 'till': 1.0, 'they': 1.0}
Word element => {'teething': 1.0, 'favorite': 1.0, 'became': 1.0, 'almost': 1.0, 'drumstick': 1.0, 'of': 1.0, 'end': 1.0, 'chewing': 1.0, 'owner': 1.0, 'old': 1.0, '1': 1.0, 'the': 3.0, 'rambunctious': 1.0, 'like': 1.0, 'glass': 1.0, 'tossed': 1.0, 'basic': 1.0, 'by': 1.0, 'being': 1.0, 'if': 1.0, 'simple': 1.0, 'it': 5.0, 'this': 1.0, 'can': 1.0, 'we': 1.0, 'a': 2.0, 's': 4.0, 'yr': 1.0, 'and': 3.0, 'across': 1.0, 'handle': 1.0, 'while': 1.0, 'bang': 1.0, 'child': 1.0, 'run': 1.0, 'toy': 1.0, 'well': 1.0, 'likes': 1.0, 'had': 1.0, 'room': 1.0, 'drum': 2.0, 'noise': 1.0, 'make': 1.0, 'your': 1.0, 'on': 2.0, 'things': 1.0, 'him': 1.0, 'also': 1.0, 'constructed': 1.0, 'to': 3.0, 'doors': 1.0, 'our': 1.0, 'son': 1.0, 'give': 1.0, 'not': 1.0, 'teach': 1.0, 'walk': 1.0}
Word element => {'it': 2.0, 'he': 2.0, 'this': 2.0, 'with': 1.0, 'beside': 1.0, 've': 1.0, 'right': 1.0, 'floor': 1.0, 'be': 1.0, 'drum': 3.0, 'we': 1.0, 'the': 4.0, 'sits': 1.0, 'my': 2.0, 'was': 1.0, 'its': 1.0, 'to': 1.0, 'on': 2.0, 'still': 1.0, 'son': 2.0, 'is': 1.0, 'and': 2.0, 'get': 1.0, 'since': 1.0, 'sounds': 1.0, 'scratched': 1.0, '8': 1.0, 'loves': 1.0, 'or': 1.0, 'had': 1.0, 'either': 1.0, 'drumsticks': 1.0, 'months': 2.0, 'one': 1.0, 'z': 1.0, 'both': 2.0, 'used': 1.0, 'does': 1.0, 'able': 1.0, 'included': 1.0, 'same': 1.0, 'surface': 2.0, 'sides': 1.0, 'of': 1.0, 'bangs': 1.0, 'wildly': 1.0, 'are': 1.0, 'pretty': 1.0, 'easily': 1.0, 'but': 1.0}
Word element => {'are': 1.0, 'colors': 1.0, 'around': 1.0, 'can': 1.0, 'so': 1.0, 'and': 3.0, 'made': 1.0, 'is': 1.0, 'bright': 1.0, 'well': 1.0, 'a': 1.0, 'easily': 1.0, 'like': 1.0, 'bangs': 1.0, 'loves': 1.0, 'grandson': 1.0, 'learn': 1.0, 'he': 2.0, 'this': 1.0, 'it': 4.0, 'sticks': 1.0, 'month': 1.0, 'him': 1.0, 'took': 1.0, 'old': 1.0, 'now': 1.0, 'to': 2.0, 'attractive': 1.0, 'drum': 1.0, 'very': 1.0, '11': 1.0, 'awhile': 1.0, 'my': 1.0, 'lightweight': 1.0, 'great': 1.0, 'the': 2.0, 'use': 1.0, 'instead': 1.0, 'champ': 1.0, 'but': 1.0, 'of': 1.0, 'lift': 1.0, 'his': 1.0, 'move': 1.0, 'hand': 1.0}
Word element => {'supports': 1.0, 'piece': 1.0, 's': 1.0, 'times': 2.0, 'myself': 1.0, 'pinch': 1.0, 'slide': 1.0, 'pop': 1.0, 'going': 1.0, 'way': 1.0, 'no': 1.0, 'up': 1.0, 'line': 1.0, 'even': 1.0, 'you': 1.0, 'things': 1.0, 'properly': 1.0, 'make': 2.0, 'just': 1.0, 'wrong': 1.0, 'if': 1.0, 'out': 2.0, 'pops': 1.0, 'said': 1.0, 'reviewers': 1.0, 'damage': 1.0, 'opening': 1.0, 'don': 1.0, 'wall': 1.0, 'about': 1.0, 'do': 1.0, 'floor': 1.0, 'off': 2.0, 'inches': 1.0, '3': 1.0, 'on': 2.0, 'so': 3.0, 'i': 8.0, 'two': 2.0, 'use': 1.0, 'measure': 2.0, 'swing': 2.0, 'for': 1.0, 'rails': 1.0, 'template': 2.0, 'fit': 1.0, 'replacement': 1.0, 't': 2.0, 'then': 1.0, 'we': 2.0, 'a': 7.0, 'of': 3.0, 'the': 20.0, 'gate': 3.0, 'crappy': 1.0, 'now': 1.0, 'get': 1.0, 'sure': 4.0, 'joint': 1.0, 'and': 10.0, 'closed': 1.0, 'simply': 1.0, 'only': 1.0, 'n': 1.0, 'not': 2.0, 'few': 2.0, 'rail': 4.0, 'this': 6.0, 'due': 2.0, 'folded': 1.0, 'is': 3.0, 'more': 1.0, 'bit': 1.0, 'easy': 1.0, 'however': 1.0, 'agree': 1.0, 'level': 1.0, 'marked': 2.0, 'lot': 2.0, 'was': 4.0, 'to': 11.0, 'first': 1.0, 'are': 1.0, 'lock': 1.0, 'couldn': 1.0, 'install': 1.0, 'since': 1.0, '1': 2.0, 'remember': 1.0, 'have': 4.0, 'baseboards': 1.0, 'fact': 1.0, 'into': 1.0, 'top': 1.0, 'installed': 2.0, 'that': 4.0, 'because': 1.0, 'holes': 2.0, 'w': 1.0, 'metal': 3.0, 'point': 1.0, 'did': 2.0, 'makes': 1.0, 'corner': 1.0, 'protectors': 1.0, 'under': 1.0, 'drywall': 1.0, 'drill': 1.0, 'compound': 1.0, 'problem': 1.0, 'fell': 1.0, 'it': 6.0, 'disturbing': 1.0, 'will': 2.0, 'secure': 1.0, 'fix': 2.0, 'later': 1.0, 'seat': 1.0, 'in': 2.0, 'm': 2.0, 'both': 1.0, 'upper': 2.0, 'll': 1.0, 'like': 1.0, 'has': 1.0, 'there': 2.0, 'contact': 1.0, 'locked': 1.0, 'inch': 1.0, 'position': 1.0, 'ouch': 1.0, 'lower': 2.0, 'gates': 1.0, '2': 1.0, 'other': 1.0}
Word element => {'securely': 1.0, 'correct': 1.0, 'pop': 1.0, 'have': 1.0, 'other': 1.0, 'top': 4.0, 'common': 1.0, 'they': 1.0, 'got': 1.0, 'then': 1.0, 'most': 1.0, '2': 1.0, 'these': 1.0, 'i': 3.0, 'just': 1.0, 'know': 1.0, 'is': 3.0, 'complaint': 1.0, 'bottom': 7.0, 'stairs': 1.0, 'held': 1.0, 'latch': 1.0, 'and': 4.0, 'pops': 1.0, 'out': 2.0, 'why': 1.0, 'rectangular': 1.0, 'if': 1.0, 'of': 4.0, 'steel': 1.0, 'boxes': 2.0, 'for': 3.0, 'one': 1.0, 'ends': 1.0, 'the': 18.0, 'gate': 2.0, 'think': 2.0, 'on': 2.0, 'that': 1.0, 'box': 3.0, 'reviewers': 1.0, 'are': 3.0, 'deeper': 1.0, 'than': 1.0, 'deep': 1.0, 'when': 1.0, 'easily': 1.0, 'you': 1.0, 'great': 1.0, 'install': 1.0, 'there': 1.0, 'shallow': 1.0, 'will': 1.0}
Word element => {'highly': 1.0, 'two': 1.0, 'open': 2.0, 'but': 1.0, 'of': 1.0, 'because': 1.0, 'not': 1.0, 'for': 1.0, 'one': 2.0, 'to': 3.0, 'recommend': 1.0, 'hands': 1.0, 'easy': 2.0, 'relatively': 1.0, 'hand': 1.0, 'pretty': 1.0, 'me': 1.0, 'and': 3.0, 'product': 1.0, 'bought': 1.0, 'old': 1.0, 'i': 2.0, 'are': 1.0, 'the': 2.0, 'my': 2.0, 'slats': 1.0, 'horizontal': 1.0, 'three': 1.0, 'gates': 2.0, 'scaled': 1.0, '20': 1.0, 'install': 1.0, 'month': 1.0, 'a': 1.0, 'can': 1.0, 'climber': 1.0, 'children': 1.0, 'older': 1.0, 'with': 2.0, 'it': 1.0, 'he': 1.0, 'this': 2.0, 'has': 1.0, 'is': 2.0, 'many': 1.0}
Word element => {'under': 1.0, 'little': 1.0, 'high': 1.0, 'if': 1.0, 'open': 1.0, 'squeeze': 1.0, 'and': 1.0, 'catch': 1.0, 'floor': 1.0, 'll': 1.0, 'low': 1.0, 'too': 2.0, 'difficult': 1.0, 'not': 1.0, 'sure': 1.0, 'for': 2.0, 'approved': 1.0, 've': 1.0, 'i': 1.0, 'that': 1.0, 'can': 1.0, 'seen': 1.0, 'ones': 1.0, 'the': 3.0, 'make': 1.0, 'gate': 1.0, 'a': 1.0, 'only': 1.0, 'this': 2.0, 'it': 5.0, 'is': 5.0, 'really': 1.0, 'stairs': 1.0, 'good': 1.0, 'sometimes': 1.0, 'you': 1.0, 'awkward': 1.0, 'purpose': 1.0, 'to': 4.0, 'install': 3.0, 'railing': 1.0}
Word element => {'babies': 1.0, 'over': 1.0, 'have': 1.0, 'when': 2.0, 'remove': 1.0, 'asleep': 1.0, 'banisters': 1.0, 'night': 1.0, 'at': 1.0, 'thing': 1.0, 'the': 2.0, 'with': 1.0, 'is': 1.0, 'guest': 1.0, 'you': 2.0, 'that': 1.0, 'well': 1.0, 'about': 1.0, 'can': 1.0, 'works': 1.0, 'great': 1.0, 'it': 2.0}
Word element => {'one': 1.0, 'right': 1.0, 'be': 1.0, 'not': 1.0, 'may': 1.0, 'screws': 1.0, 'don': 1.0, 'however': 1.0, 'wall': 2.0, 'bolted': 1.0, 'securely': 1.0, 'want': 1.0, 'if': 1.0, 'shut': 1.0, 'used': 1.0, 'is': 3.0, 'still': 1.0, 'like': 3.0, 'and': 2.0, 'for': 2.0, 'love': 1.0, 'had': 1.0, 'have': 1.0, 'this': 3.0, 'looks': 1.0, 'it': 6.0, 'great': 1.0, 'new': 1.0, 'of': 1.0, 'years': 1.0, 'natural': 1.0, 't': 1.0, 'we': 3.0, 'you': 2.0, 'finish': 1.0, 'wood': 1.0, 'i': 5.0, 'to': 5.0, 'our': 1.0, 'were': 1.0, 'spaniel': 1.0, 'in': 2.0, 'tiled': 1.0, 'house': 1.0, 'work': 1.0, 'part': 1.0, 'while': 1.0, '6': 1.0, 'cocker': 1.0, 'how': 2.0, 'keep': 1.0, 'at': 1.0, 'every': 1.0, 'use': 1.0, 'time': 1.0, 'your': 1.0, 'put': 1.0, 'think': 1.0, 'the': 5.0, 'gate': 2.0, 'myself': 1.0, 'much': 1.0, 'very': 1.0, 'open': 1.0, 'easy': 1.0}
Word element => {'one': 1.0, 'bad': 1.0, 'look': 1.0, 'even': 1.0, 'doesn': 1.0, 'store': 1.0, 'morning': 1.0, 'night': 1.0, 'at': 1.0, 'need': 1.0, 'i': 3.0, '4': 1.0, 'kids': 1.0, 'reinstall': 1.0, 'sans': 1.0, 'easy': 1.0, 'mentioned': 1.0, 'between': 1.0, 'in': 1.0, 'slides': 1.0, 'side': 1.0, 'other': 1.0, 'metal': 1.0, 'noticed': 1.0, 'husband': 1.0, 'had': 1.0, 'others': 1.0, 'beautifully': 1.0, 'of': 4.0, 'bottom': 3.0, 'only': 1.0, 'works': 1.0, 'away': 1.0, 'older': 1.0, 'and': 6.0, 'almost': 1.0, 'so': 2.0, 'walls': 1.0, 'top': 1.0, 'stop': 2.0, 'after': 1.0, 'small': 1.0, '5': 1.0, 'installing': 1.0, 'think': 1.0, '3': 1.0, 'on': 4.0, 'installation': 1.0, 'that': 2.0, 'for': 1.0, 'years': 1.0, 'fact': 1.0, 'my': 2.0, 'gate': 4.0, 'the': 12.0, 'if': 1.0, 'problem': 1.0, 'pushed': 1.0, 'each': 1.0, 've': 2.0, 'would': 1.0, 'pop': 2.0, 'by': 1.0, 'out': 1.0, 'to': 1.0, 'our': 3.0, 'as': 2.0, 'off': 1.0, 'bracket': 1.0, 'house': 1.0, 'hardware': 1.0, 'is': 2.0, 'he': 1.0, 'door': 2.0, 'gates': 1.0, 'nicer': 1.0, 'are': 2.0, 'uneven': 1.0, 'remove': 1.0, 'it': 8.0, 'solved': 1.0, 'seen': 1.0, 'when': 1.0, 'easily': 1.0, 't': 1.0, 's': 2.0, 'stairs': 1.0, 'we': 2.0, 'a': 1.0}
Word element => {'recommend': 1.0, 'would': 1.0, 'i': 1.0, 'directions': 1.0, 'open': 1.0, 'very': 2.0, 'good': 1.0, 'almost': 1.0, 'stairway': 1.0, 'that': 1.0, 'for': 1.0, 'both': 1.0, 'years': 1.0, 'about': 1.0, 'have': 1.0, 'an': 1.0, 'in': 1.0, 'top': 1.0, 'enough': 1.0, 'of': 1.0, 'things': 1.0, 'this': 3.0, 'it': 1.0, 'the': 3.0, 'gate': 5.0, 'bought': 1.0, 'living': 1.0, 'up': 1.0, 'child': 1.0, 'room': 1.0, 'our': 2.0, 'to': 2.0, 'lower': 1.0, 'strong': 1.0, 'level': 1.0, 'say': 1.0, 'is': 1.0, 'highly': 1.0, 'really': 1.0, 'stairs': 1.0, 'we': 4.0, 'go': 1.0, 'ago': 1.0, 'a': 1.0, 'and': 1.0, 'well': 1.0, 'has': 1.0, 'held': 1.0, 'torture': 1.0, 'cannot': 1.0, 'like': 1.0, 'four': 1.0, 'can': 1.0}
Word element => {'ll': 1.0, 'gates': 1.0, 'looking': 1.0, 'people': 1.0, 'see': 1.0, 'shopping': 1.0, 'store': 1.0, 'gave': 1.0, 'times': 1.0, 'you': 2.0, 'when': 1.0, 'after': 1.0, 'very': 1.0, 'had': 2.0, 'huge': 1.0, 'one': 1.0, 'at': 1.0, 'is': 5.0, 'comes': 1.0, 'two': 1.0, 'i': 5.0, 'additional': 1.0, 'which': 3.0, 'time': 1.0, 'boy': 1.0, 'gate': 3.0, 'myself': 1.0, 'up': 2.0, 'replacing': 1.0, 'metal': 1.0, 'old': 1.0, 'the': 7.0, 'of': 2.0, 'we': 4.0, 'a': 3.0, 's': 2.0, 't': 1.0, 'pricey': 1.0, 'awesome': 1.0, 'figure': 1.0, 'almost': 1.0, 'year': 1.0, 'three': 4.0, 'minutes': 2.0, 'recommend': 2.0, 'female': 1.0, 'closes': 1.0, 'installed': 1.0, 'that': 2.0, 'easily': 1.0, 'because': 1.0, 'have': 2.0, 'all': 1.0, 'to': 3.0, 'as': 2.0, 'plus': 1.0, 'first': 1.0, 'template': 1.0, 'this': 2.0, 'with': 3.0, 'hardware': 2.0, 'it': 11.0, 'and': 11.0, 'ease': 1.0, 'probably': 1.0, '15': 1.0, 'simple': 1.0, 'install': 1.0, 'long': 1.0, 'by': 1.0, 'bought': 1.0, 'instructions': 2.0, 'line': 1.0, 'plastic': 1.0, 'correctly': 1.0, 'explained': 1.0, 'opens': 1.0, 'quickly': 1.0, '10': 1.0, 'for': 1.0, 'love': 2.0, 'adults': 1.0, 'purchased': 2.0, 'oldest': 1.0, 'however': 1.0, 'me': 1.0, 'my': 2.0, 'children': 1.0, 'six': 1.0, 'can': 1.0, 'out': 3.0, 'saying': 1.0, 'buy': 1.0, 'something': 1.0, 'contraption': 1.0, 'them': 3.0, 'has': 1.0, 'figured': 1.0, 'every': 1.0, 'there': 1.0, 'step': 2.0, 'everyone': 1.0, 'took': 1.0, 'even': 1.0, 'in': 2.0, 'm': 1.0}
Word element => {'matters': 1.0, 'reasonably': 1.0, 'difficult': 1.0, 'buying': 1.0, 'before': 1.0, 'all': 2.0, 'other': 1.0, 'again': 1.0, 'home': 1.0, 'get': 1.0, 'really': 2.0, 'quite': 1.0, 'work': 2.0, 'using': 1.0, 'common': 1.0, 'wanted': 1.0, 'will': 2.0, 'going': 1.0, 'finally': 1.0, 'wide': 1.0, 'used': 1.0, 'situations': 1.0, 'bottom': 1.0, 'being': 1.0, 'about': 1.0, 'complained': 1.0, 'who': 2.0, 'third': 1.0, 'those': 2.0, 'that': 3.0, 'suspicion': 1.0, 'range': 1.0, 'widest': 1.0, 'its': 2.0, 'towards': 1.0, 'where': 1.0, 'especially': 1.0, 'anywhere': 1.0, 'stairway': 1.0, 'tell': 1.0, 'stairs': 2.0, 'top': 2.0, 'even': 1.0, 'think': 2.0, 'would': 3.0, 'but': 6.0, 'latch': 1.0, 'need': 2.0, 'or': 2.0, 'panel': 1.0, 'slide': 2.0, 'slatted': 1.0, 'nice': 2.0, 'two': 3.0, 'sturdy': 3.0, 'they': 2.0, 'has': 1.0, 'i': 12.0, 'well': 2.0, 'install': 2.0, 'too': 1.0, 'one': 3.0, 'situation': 1.0, 'terrible': 1.0, 'gates': 4.0, 'gate': 17.0, 'once': 1.0, 'these': 1.0, 'charm': 1.0, 'popping': 1.0, 'the': 20.0, 'of': 6.0, 'any': 1.0, 'probably': 1.0, 'your': 1.0, 'flimsy': 2.0, 'online': 1.0, 'good': 2.0, 'made': 3.0, 'which': 1.0, 'like': 1.0, 'suspect': 1.0, 'however': 1.0, 'know': 2.0, 'in': 9.0, 'wider': 1.0, 'unless': 1.0, 'mexico': 1.0, 'you': 13.0, 'not': 6.0, 'many': 1.0, 'becomes': 1.0, 'panels': 4.0, 'and': 14.0, 'put': 1.0, 'r': 1.0, 'do': 4.0, 'have': 5.0, 'babies': 1.0, 'if': 9.0, 'a': 10.0, 'fit': 1.0, 't': 4.0, 'was': 4.0, 'sure': 1.0, 'return': 2.0, 'store': 1.0, 'to': 14.0, 'it': 20.0, 'order': 1.0, 'doorway': 1.0, 'rail': 1.0, 'this': 6.0, 'as': 2.0, 'overlapping': 1.0, 'with': 1.0, 'something': 1.0, 'hand': 1.0, 'buy': 3.0, 'close': 2.0, 'three': 1.0, 'recommend': 2.0, 'were': 2.0, 'can': 4.0, 'so': 5.0, 'stiff': 1.0, 'had': 1.0, 'use': 3.0, 'checked': 1.0, 'stretched': 1.0, 'another': 1.0, 'looks': 1.0, 'my': 3.0, 'may': 1.0, 'only': 2.0, 'narrow': 3.0, 'purchase': 1.0, 'foot': 1.0, 'mexican': 1.0, 'until': 1.0, 'tried': 1.0, 'off': 1.0, 'obviously': 1.0, 'second': 1.0, 'unacceptable': 1.0, 'out': 3.0, 'take': 1.0, 'then': 1.0, 'fine': 1.0, 'worked': 1.0, 'opening': 3.0, 'don': 3.0, 'relevant': 1.0, 'attached': 1.0, 's': 4.0, 'maybe': 2.0, 'there': 2.0, 'are': 1.0, 'first': 2.0, 'bad': 1.0, 'just': 1.0, 'slides': 1.0, 'be': 5.0, 'china': 2.0, 'for': 3.0, 'aware': 1.0, 'batch': 1.0, 'us': 1.0, 'also': 3.0, 'than': 1.0, 'relatively': 1.0, 'specific': 1.0, 'mostly': 1.0, 'look': 1.0, 'at': 2.0, 'is': 4.0}
Word element => {'recalled': 1.0, 'have': 1.0, 'top': 1.0, 'on': 3.0, 'installing': 1.0, 'however': 1.0, 'after': 1.0, 'so': 2.0, 'should': 1.0, 'open': 1.0, 'day': 1.0, 'husband': 1.0, 'was': 2.0, 'easy': 1.0, 'sudden': 1.0, 'and': 2.0, 'good': 1.0, 'off': 1.0, 's': 1.0, 'stairs': 1.0, 'we': 2.0, 'bought': 1.0, 'at': 1.0, 'happy': 1.0, 'my': 1.0, 'lightweight': 1.0, 'the': 3.0, 'question': 1.0, 'because': 1.0, 'just': 1.0, 'ours': 1.0, 'spindle': 2.0, 'came': 1.0, 'were': 1.0, 'lowes': 1.0, 'shocked': 1.0, 'this': 1.0, 'it': 6.0, 'looks': 1.0, 'of': 2.0, 'i': 2.0, 'how': 1.0, 'swings': 1.0, 'returned': 1.0, 'then': 1.0, 'glued': 1.0, 'to': 1.0, 'our': 1.0, 'all': 1.0, 'been': 1.0, 'next': 1.0}
Word element => {'happy': 1.0, 'know': 1.0, 'extra': 1.0, 'worth': 1.0, 'think': 1.0, 'and': 1.0, 'handle': 1.0, 'is': 3.0, 'disappointment': 1.0, 'not': 1.0, 'i': 5.0, 'it': 4.0, 'this': 2.0, 'older': 1.0, 'you': 3.0, 'convenient': 1.0, 'to': 2.0, 'be': 3.0, 'love': 1.0, 'product': 1.0, 'use': 1.0, 'easy': 1.0, 'cheaper': 1.0, 'promise': 1.0, 'if': 1.0, 'children': 1.0, '9': 1.0, 'problem': 1.0, 'by': 1.0, 'will': 2.0, 'money': 1.0, 'but': 1.0, 'purchase': 2.0, 'may': 1.0, 'my': 1.0, 'gate': 2.0, 'the': 2.0, 'great': 1.0, 'have': 2.0, 'stairway': 1.0, 'that': 1.0, 'ages': 1.0, 'they': 1.0, 'thing': 1.0, 'amp': 1.0, 'no': 1.0, 'some': 1.0, '5': 1.0, 'opening': 1.0, 'there': 1.0, 'gates': 1.0, 'a': 1.0, 'could': 1.0}
Word element => {'would': 1.0, 'thought': 1.0, 'ship': 1.0, 'waiting': 1.0, 'than': 1.0, 'today': 1.0, 'up': 1.0, 'it': 2.0, 'pick': 1.0, 'and': 1.0, 'line': 1.0, 'be': 1.0, 'know': 1.0, 'like': 1.0, 'which': 1.0, 'called': 1.0, 'after': 1.0, 'i': 1.0, 'rather': 1.0, 'of': 1.0, 'this': 1.0, 'can': 2.0, 'four': 1.0, 'have': 1.0, 'especially': 1.0, 'just': 3.0, 'not': 1.0, 'them': 4.0, 'we': 1.0, 'a': 1.0, 'since': 1.0, 'see': 1.0, 'gate': 1.0, 'the': 4.0, 'tip': 1.0, 'very': 1.0, 'do': 1.0, 'best': 2.0, 'price': 2.0, 'looking': 1.0, 'web': 2.0, 'for': 4.0, 'my': 1.0, 'lo': 1.0, 'target': 1.0, 'searching': 1.0, 'they': 3.0, 'store': 1.0, 'as': 1.0, 'to': 5.0, 'carry': 1.0, 'need': 1.0, 'behold': 1.0, 'charge': 1.0, 'if': 1.0, 'same': 1.0, 'on': 2.0, 'except': 1.0, 'tax': 1.0, 'that': 1.0, 'someone': 1.0, 'local': 1.0, 'you': 3.0, 'shipping': 1.0, 'pay': 1.0}
Word element => {'but': 1.0, 'recommend': 1.0, 'would': 1.0, 'slot': 1.0, 'able': 1.0, 'have': 1.0, 'not': 5.0, 'and': 2.0, 'get': 1.0, 'everything': 1.0, 'decks': 1.0, 'so': 1.0, 'good': 2.0, 'been': 1.0, 'into': 2.0, 'that': 1.0, 'old': 1.0, 'i': 1.0, 'is': 2.0, 'pretty': 1.0, 'well': 1.0, 'has': 1.0, 'for': 3.0, 'or': 1.0, 'yet': 1.0, 'use': 3.0, 'indoor': 2.0, 'in': 1.0, 'this': 2.0, 'she': 1.0, 'month': 1.0, 'it': 1.0, 'to': 1.0, 'through': 1.0, 'gate': 3.0, 'the': 5.0, 'does': 2.0, 'over': 1.0, 'outdoor': 2.0, 'up': 1.0, 'bottom': 1.0, '21': 1.0, 'wood': 1.0, 'hold': 1.0, 'like': 1.0, 'go': 1.0, 'a': 1.0, 's': 1.0, 'very': 1.0, 'swells': 1.0, 'weather': 1.0, 'portion': 1.0}
Word element => {'value': 1.0, 'whatsoever': 1.0, 'in': 1.0, '2013': 1.0, 'july': 1.0, 'updated': 1.0, '2007': 1.0, 'date': 1.0, 'review': 1.0, 'place': 1.0, 'orig': 1.0, 'net': 1.0, 'safety': 1.0, 'but': 1.0, 'abuse': 1.0, 'toddler': 1.0, 'normal': 1.0, 'up': 1.0, 'would': 1.0, 'since': 1.0, 'area': 1.0, 'gave': 1.0, 'problems': 1.0, 'that': 4.0, 'been': 1.0, 'into': 1.0, 'what': 2.0, 'us': 1.0, 'imo': 1.0, 'previous': 1.0, 'still': 1.0, 'if': 2.0, 'like': 1.0, 'reading': 1.0, 'thanks': 1.0, 'idea': 1.0, 'able': 1.0, 'choice': 2.0, 'you': 1.0, 'seemed': 1.0, 'install': 1.0, 'getting': 2.0, 'armed': 1.0, 'a': 7.0, 'stairs': 1.0, 's': 3.0, 'gate': 5.0, 'lock': 1.0, 'how': 1.0, 'our': 1.0, 'high': 1.0, 'to': 7.0, 'pressure': 1.0, 'stand': 1.0, 've': 1.0, 'reviews': 1.0, 'we': 5.0, 'fighting': 1.0, 'this': 3.0, 'with': 5.0, 'mind': 1.0, '2': 1.0, 'can': 1.0, 'finally': 1.0, 'installation': 1.0, 'top': 1.0, 'good': 5.0, 'for': 4.0, 'no': 1.0, 'ours': 1.0, 'years': 1.0, 'know': 1.0, 'predicted': 1.0, 'd': 2.0, 'about': 1.0, 't': 4.0, 'replacement': 1.0, 'decided': 1.0, 'essentially': 1.0, 'now': 1.0, 'don': 1.0, 'isn': 1.0, 'little': 1.0, 'difficulty': 1.0, 'template': 1.0, 'at': 1.0, 'look': 1.0, 'is': 5.0, 'say': 1.0, 'traffic': 1.0, 'useless': 1.0, 'it': 5.0, 'have': 3.0, 'as': 4.0, 'falls': 1.0, 'molding': 1.0, 'liked': 1.0, 'my': 1.0, 'wood': 1.0, 'everyone': 1.0, 'doesn': 1.0, 'were': 2.0, 'recommend': 1.0, 'seem': 1.0, 'they': 1.0, 'sturdy': 1.0, 'i': 4.0, 'prevent': 1.0, 'accidental': 1.0, 'enough': 2.0, 'where': 1.0, 're': 1.0, 'not': 2.0, 'hard': 1.0, 'open': 1.0, 'or': 1.0, 'knowledge': 1.0, 'close': 1.0, 'and': 3.0, 'anyone': 1.0, 'fingers': 1.0, 'pinched': 1.0, 'paying': 1.0, 'the': 6.0, 'doing': 1.0, 'of': 1.0, 'attention': 1.0}
Word element => {'that': 1.0, 'beat': 1.0, 'can': 1.0, 'was': 1.0, 'now': 1.0, 'on': 1.0, 'works': 1.0, 'down': 1.0, 'i': 1.0, 'buy': 1.0, 'tried': 1.0, 'great': 1.0, 'gate': 1.0, 'the': 3.0, 'it': 4.0, 'looked': 1.0, 'counsmer': 1.0, 'this': 2.0, 'basement': 2.0, 'of': 1.0, 'top': 1.0, 'bought': 1.0, 'mounted': 1.0, 'to': 3.0, 'our': 2.0, 'com': 1.0, 'for': 2.0, 'love': 1.0, 'and': 4.0, 'reports': 1.0, 'safe': 2.0, 'leading': 1.0, 'best': 1.0, 'know': 1.0, 'because': 2.0, 'little': 1.0, 'also': 1.0, 'so': 1.0, 'easy': 1.0, 'use': 2.0, 'frequently': 1.0, 't': 1.0, 'we': 5.0, 'stairs': 2.0, 'a': 3.0, 'go': 1.0, 'have': 1.0, 'is': 2.0, 'finished': 1.0, 'eay': 1.0, 'you': 1.0}
Word element => {'latch': 1.0, 'open': 1.0, 'would': 1.0, 'kid': 1.0, 'side': 1.0, 'both': 1.0, 'use': 2.0, 'need': 1.0, 'sometimes': 1.0, 'in': 1.0, 'slide': 1.0, 'knocked': 1.0, 'way': 1.0, 'mounted': 1.0, 'not': 3.0, 'sounds': 1.0, 'will': 1.0, '4': 1.0, 'over': 1.0, 'positive': 1.0, 'overall': 1.0, 'unlatch': 1.0, 'this': 1.0, 'it': 7.0, 'only': 1.0, 'hardware': 1.0, 'is': 8.0, 'and': 3.0, 'very': 2.0, 'to': 3.0, 'as': 3.0, 'easy': 1.0, 'sure': 1.0, 'makes': 1.0, 'point': 1.0, 'you': 2.0, 'a': 2.0, 'bar': 1.0, 'wood': 1.0, 'hands': 1.0, 'gate': 2.0, 'the': 5.0, 'made': 1.0, 'pressure': 1.0, 'sturdy': 1.0, 'negative': 1.0, 'good': 1.0, 'of': 2.0, 'there': 2.0, 'bottom': 1.0, 'down': 1.0, 'does': 1.0, 'gates': 2.0, 'so': 1.0, 'have': 3.0, 'that': 6.0, 'some': 1.0, 'thing': 1.0, 'no': 2.0, 'be': 1.0, 'chance': 1.0, 'tripping': 1.0, 'opening': 1.0, 'mechanism': 1.0}
Word element => {'of': 1.0, 'bottom': 1.0, 'top': 1.0, 'gates': 1.0, 'that': 1.0, 'has': 1.0, 'placed': 1.0, 'swings': 1.0, 'will': 1.0, 'slides': 1.0, 'stood': 1.0, 'these': 1.0, 'function': 1.0, 'so': 3.0, 'shake': 1.0, 'this': 2.0, 'it': 9.0, 'the': 2.0, 'gate': 1.0, 'its': 1.0, 'baby': 2.0, 'to': 3.0, 'as': 3.0, 'awesome': 1.0, 'year': 2.0, 'too': 1.0, 'and': 5.0, 'far': 1.0, 'violently': 1.0, 'flawless': 1.0, 'is': 6.0, 'easy': 1.0, 'home': 1.0, 'great': 1.0, 'install': 1.0, '2': 1.0, 'can': 1.0, 'be': 1.0, 'both': 2.0, 'onto': 1.0, 'strong': 1.0, 'fact': 1.0, 'my': 1.0, 'makes': 1.0, 'old': 1.0, 'climb': 1.0, 'over': 1.0, 'up': 2.0, 'conditions': 1.0, 'where': 1.0, 'for': 2.0, 'stairs': 1.0, 'go': 1.0, 'a': 3.0, 'versatile': 1.0, 'run': 1.0}
Word element => {'highly': 1.0, 'would': 1.0, 'also': 1.0, 'plus': 1.0, 'out': 1.0, 'swing': 1.0, 'and': 4.0, 'works': 1.0, 'perfectly': 1.0, 'down': 1.0, 'it': 2.0, 'this': 2.0, 'of': 2.0, 'top': 1.0, 'installed': 1.0, 'i': 3.0, 'stairway': 1.0, 'son': 1.0, 'holds': 1.0, 'is': 3.0, 'if': 1.0, 'want': 1.0, 'baby': 1.0, 'you': 2.0, 'have': 2.0, 'adults': 1.0, 'likes': 1.0, 'well': 1.0, 'the': 10.0, 'gate': 5.0, 'grab': 1.0, 'to': 1.0, 'hold': 1.0, 'close': 1.0, 'bars': 1.0, 'he': 1.0, 'extremely': 1.0, 'quot': 2.0, 'shake': 1.0, 'so': 1.0, 'option': 1.0, 'at': 1.0, 'constructions': 1.0, 'recommend': 1.0, 'doesn': 1.0, 'open': 1.0, 'tumbling': 1.0, 'my': 2.0, 'fact': 1.0, 'stairs': 2.0, 't': 1.0, 'a': 1.0, 'go': 1.0, 'love': 1.0, 'for': 1.0, 'easy': 1.0}
Word element => {'my': 1.0, 'recommended': 1.0, 've': 1.0, 'i': 1.0, 'shutting': 1.0, 'quiet': 1.0, 'easy': 2.0, 'to': 4.0, 'and': 1.0, 'very': 2.0, 'child': 1.0, 'already': 1.0, 'use': 1.0, 'sturdy': 1.0, 'a': 1.0, 'gate': 3.0, 'room': 1.0, 'it': 1.0, 'this': 3.0, 'friends': 1.0, 'be': 1.0, 'handed': 1.0, 'one': 2.0, 'simple': 1.0, 'we': 1.0, 'put': 1.0, 'the': 2.0, 's': 2.0, 'at': 1.0, 'is': 1.0, 'second': 1.0, 'door': 1.0, 'our': 1.0}
Word element => {'recommend': 1.0, 'would': 1.0, 'won': 1.0, 'party': 1.0, 'operates': 1.0, 'granted': 1.0, 'enough': 1.0, 'off': 1.0, 'a': 6.0, 't': 1.0, 'we': 1.0, 'money': 1.0, 'but': 2.0, '2': 1.0, 'any': 1.0, 'cleaner': 1.0, 'ha': 1.0, 'out': 1.0, 'couple': 1.0, 'wood': 2.0, 'wasn': 1.0, 'inches': 1.0, 'and': 5.0, 'extra': 1.0, 'family': 1.0, 'screwed': 1.0, 'down': 1.0, 'more': 1.0, 'it': 5.0, 'hardware': 1.0, 'designer': 1.0, 'no': 1.0, 'wall': 3.0, 'lot': 1.0, 'gate': 5.0, 'of': 2.0, 'natural': 1.0, 'the': 11.0, 'hinges': 1.0, 'highly': 1.0, 'weekend': 1.0, 'this': 2.0, 'wider': 1.0, 'wide': 1.0, 'shell': 1.0, 'good': 1.0, 'easily': 2.0, 'teh': 1.0, 'you': 1.0, 'than': 1.0, 'blocks': 1.0, 'so': 1.0, 'to': 1.0, 'against': 1.0, 'got': 1.0, 'i': 5.0, 'quite': 1.0, 'into': 1.0, '2x4s': 1.0, 'installation': 1.0, 'for': 3.0, 'carry': 1.0, 'is': 3.0, 'at': 1.0, 'vaccum': 1.0, 'big': 1.0, 'install': 1.0, 'suitcases': 1.0, 'up': 1.0, 'wanted': 1.0, 'simple': 1.0, 'give': 1.0, 'my': 1.0, 'looks': 1.0, 'me': 1.0, 'large': 1.0, 'stairs': 2.0, 'threshold': 1.0, 'also': 1.0, 'rather': 1.0, 'like': 1.0, 'pops': 1.0, 'its': 1.0, 'town': 1.0, 'leaves': 1.0, 'in': 2.0, 'or': 1.0, 'when': 1.0, 'what': 1.0, 'have': 1.0, 'was': 2.0, 'with': 2.0, 'template': 1.0, 'bottom': 1.0, 'love': 1.0, 'solid': 1.0, 'sure': 1.0, 'tested': 1.0, 'old': 1.0, 'during': 1.0, 'year': 1.0, 'birthday': 1.0}
Word element => {'adult': 1.0, 'fingers': 2.0, 'little': 1.0, 'hazard': 1.0, 'presented': 1.0, 'between': 1.0, 'other': 1.0, 'from': 1.0, 'slide': 1.0, 'pieces': 2.0, 'open': 1.0, 'when': 1.0, 'poor': 1.0, 'be': 1.0, 'freely': 1.0, 'found': 1.0, 'also': 1.0, 'incompatibility': 1.0, 'an': 2.0, 'and': 3.0, 'product': 1.0, 'flaw': 1.0, 'design': 2.0, 'on': 2.0, 'off': 1.0, 'pinching': 1.0, 'got': 1.0, 'tell': 1.0, 'so': 1.0, 'look': 1.0, 'to': 6.0, 'what': 1.0, 'however': 1.0, 'obvious': 2.0, 'went': 2.0, 'my': 1.0, 'space': 1.0, 'at': 1.0, 'alike': 1.0, 'of': 3.0, 'once': 1.0, 'things': 1.0, 'not': 3.0, 'did': 1.0, 'lack': 1.0, 'out': 2.0, 'was': 1.0, 'store': 1.0, 'home': 1.0, 'have': 1.0, 'due': 2.0, 'two': 2.0, 'i': 6.0, 'one': 1.0, 'it': 4.0, 'first': 1.0, 'with': 1.0, 'stairs': 1.0, 'could': 1.0, 'a': 4.0, 'just': 1.0, 'few': 1.0, 'became': 1.0, 'each': 1.0, 'would': 2.0, 'babiesrus': 1.0, 'work': 1.0, 'stud': 1.0, 'in': 3.0, 'proper': 1.0, 'gate': 1.0, 'the': 11.0, 'place': 1.0, 'wall': 1.0, 'side': 1.0, 'is': 1.0, 'realize': 1.0, 'box': 2.0, 'that': 1.0}
Word element => {'same': 1.0, 'son': 1.0, 'how': 1.0, 'out': 1.0, 'it': 1.0, 'with': 1.0, 'took': 1.0, 'old': 1.0, '4': 1.0, 'i': 2.0, 'two': 1.0, 'was': 1.0, 'years': 2.0, 'own': 1.0, 'at': 1.0, 'keep': 1.0, 'gate': 3.0, 'the': 6.0, 'my': 1.0, 'until': 1.0, 'a': 1.0, 'stairs': 1.0, 'off': 2.0, 'one': 2.0, 'for': 2.0, 'purchasing': 1.0, 'his': 1.0, 'figure': 1.0, 'as': 1.0, 'to': 2.0, 'glue': 1.0, 'top': 1.0, 'of': 1.0, 'and': 1.0, 'repaired': 1.0, 'withstood': 1.0, 'kitchen': 1.0, 'slats': 2.0, 'open': 1.0, 'recently': 1.0, 'broken': 1.0, 'but': 2.0, 'on': 1.0, '3': 1.0, 'am': 1.0, 'boys': 1.0, '5': 1.0, 'replacment': 1.0, 'were': 1.0, 'have': 2.0, 'coming': 1.0}
Word element => {'beat': 1.0, 'be': 1.0, 'back': 1.0, 'just': 1.0, 'brackets': 1.0, 'metal': 1.0, 'home': 1.0, 'places': 1.0, 'one': 2.0, 'allowing': 1.0, 'pieces': 1.0, 'mounting': 1.0, 'extra': 1.0, 'buy': 2.0, 'can': 2.0, 'installed': 1.0, 'five': 1.0, 'there': 1.0, 'lasts': 1.0, 'pipe': 1.0, 'your': 1.0, 'on': 1.0, 'used': 1.0, 'works': 1.0, 'and': 6.0, 'are': 1.0, 'gates': 1.0, 'i': 2.0, 'found': 1.0, 'this': 2.0, 'with': 1.0, 'children': 1.0, 'it': 2.0, 'hard': 1.0, 'evenflo': 1.0, 'small': 1.0, 'have': 2.0, 'animals': 1.0, 'through': 1.0, 'expands': 1.0, 'at': 1.0, 'applications': 1.0, 'been': 1.0, 'that': 1.0, 'many': 1.0, 'house': 1.0, 'types': 1.0, 'of': 3.0, 've': 1.0, 'slides': 2.0, 'accordian': 1.0, 'in': 4.0, 'com': 1.0, 'fit': 1.0, 'for': 2.0, 'door': 1.0, 'plastic': 1.0, 'use': 2.0, 'years': 1.0, 'best': 1.0, 'easily': 2.0, 'you': 2.0, 'when': 1.0, 'mounted': 1.0, 'has': 1.0, 'several': 1.0, 'wall': 1.0, 'no': 1.0, 'some': 1.0, 'as': 1.0, 'our': 1.0, 'to': 4.0, 'trip': 1.0, 'doesn': 1.0, 't': 2.0, 'gate': 3.0, 'believe': 1.0, 'the': 3.0, 'around': 1.0, 'fall': 1.0, 'out': 2.0}
Word element => {'isse': 1.0, 'finger': 1.0, 'other': 1.0, 'if': 1.0, 'avoid': 1.0, 'would': 1.0, 'people': 1.0, 'is': 1.0, 'opening': 1.0, 'loaded': 1.0, 'or': 1.0, 'latch': 1.0, 'top': 1.0, 'use': 1.0, 'then': 2.0, 'on': 2.0, 'trouble': 1.0, 'it': 5.0, 'and': 1.0, 'arthritis': 1.0, 'very': 2.0, 'some': 1.0, 'of': 1.0, 'bottom': 1.0, 'so': 1.0, 'its': 2.0, 'to': 1.0, 'since': 1.0, 'sturdy': 1.0, 'awesome': 1.0, 'fit': 1.0, 'for': 1.0, 'have': 3.0, 'joint': 1.0, 'stairs': 1.0, 'a': 1.0, 'might': 1.0, 'closing': 1.0, 'well': 1.0, 'easier': 1.0, 'has': 1.0, 'childproof': 1.0, 'mechanism': 1.0, 'you': 2.0, 'press': 1.0, 'gate': 3.0, 'the': 4.0, 'although': 1.0, 'spring': 1.0, 'from': 1.0, 'slide': 1.0, 'out': 1.0, 'swing': 1.0, 'than': 1.0, 'seems': 1.0, 'i': 1.0}
Word element => {'will': 1.0, 'experience': 1.0, 'bedroom': 1.0, 'opperate': 1.0, 'pleased': 1.0, 'set': 1.0, 'having': 1.0, 'locking': 1.0, 'laundry': 1.0, 'take': 1.0, 'still': 1.0, 'minutes': 1.0, '20': 1.0, 'had': 1.0, 'purchased': 1.0, '8': 1.0, 'down': 2.0, 'basement': 1.0, 'needed': 1.0, 'top': 1.0, 'for': 2.0, 'replace': 1.0, 'additional': 2.0, 'from': 1.0, 'stick': 1.0, 'extreemly': 1.0, 'identical': 1.0, 'most': 1.0, 'can': 2.0, 'able': 3.0, 'tension': 2.0, 'wonderful': 2.0, 'open': 1.0, 'their': 1.0, 'mother': 1.0, 'with': 2.0, 'it': 7.0, 'neccesary': 1.0, 'without': 1.0, 'place': 1.0, 'the': 10.0, 'gate': 6.0, 'up': 3.0, 'over': 1.0, 'on': 1.0, 'have': 4.0, 'been': 2.0, 'that': 2.0, 'babies': 3.0, 'since': 1.0, 'climb': 4.0, 'both': 1.0, 'easily': 1.0, 'am': 2.0, 'toes': 1.0, 'and': 9.0, 'holes': 1.0, 'they': 3.0, 'has': 2.0, 'model': 1.0, 'learned': 1.0, 'of': 3.0, 'two': 2.0, 'i': 6.0, 'decided': 1.0, 'mechanism': 1.0, 'months': 1.0, 'one': 1.0, 'older': 1.0, 'leaves': 1.0, 'not': 1.0, 'those': 1.0, 't': 1.0, 'go': 1.0, 'stairs': 1.0, 'a': 1.0, 'we': 4.0, 'marks': 1.0, 'or': 2.0, 'doorframe': 1.0, 'our': 3.0, 'to': 11.0, 'useable': 1.0, 'drywall': 1.0, 'age': 1.0, 'in': 4.0, 'turn': 1.0, 'be': 1.0, 'knobs': 1.0, 'recent': 1.0, '30': 1.0, 'this': 2.0, 'found': 1.0, 'purchase': 3.0, 'an': 3.0}
Word element => {'while': 1.0, 'size': 1.0, 'set': 1.0, 'once': 1.0, 'retract': 1.0, 'eb': 2.0, 'that': 2.0, 'not': 2.0, 'its': 1.0, 'took': 1.0, 'then': 1.0, '10': 1.0, 'wood': 1.0, '2x4': 2.0, 'frame': 3.0, 'had': 2.0, 'at': 1.0, 'cut': 1.0, 'stays': 1.0, 'install': 2.0, 'baseboard': 1.0, 'i': 4.0, 'retracts': 1.0, '48': 1.0, 'baseboards': 1.0, 'a': 6.0, 'bauer': 1.0, 'have': 1.0, 'wide': 1.0, 'this': 3.0, 'it': 3.0, 'place': 1.0, 'the': 8.0, 'gate': 7.0, 'on': 2.0, 'sturdy': 1.0, 'did': 2.0, 'inch': 1.0, 'and': 2.0, 'to': 6.0, 'our': 1.0, 'inches': 1.0, 'notched': 1.0, 'installed': 2.0, 'because': 2.0, 'walls': 1.0, 'down': 1.0, 'bottom': 1.0, 'is': 3.0, 'around': 1.0, 'easy': 1.0, 'expands': 2.0, '42': 1.0, 'but': 2.0, 'an': 1.0, 'also': 1.0, 'in': 2.0, 'fit': 1.0, 'hallway': 2.0, 'by': 1.0, 'width': 1.0, 'using': 1.0, 'mounted': 1.0, '2x6': 1.0, 'realize': 1.0, 'originally': 1.0, 'minutes': 1.0, 'eddie': 1.0}
Word element => {'do': 1.0, 'open': 1.0, 'able': 1.0, 'being': 1.0, 'old': 1.0, 'year': 1.0, 'clever': 1.0, 'now': 1.0, 'keeps': 1.0, 'from': 1.0, 'hard': 2.0, 'really': 2.0, 'it': 5.0, 'this': 2.0, 'secure': 1.0, 'house': 1.0, 'trouble': 1.0, 'is': 2.0, 'i': 5.0, 'by': 1.0, 'you': 1.0, 'when': 1.0, 'far': 1.0, 'have': 5.0, 'sit': 1.0, 'of': 1.0, 'stable': 1.0, 'different': 1.0, 'important': 1.0, 'who': 1.0, 'at': 1.0, 'no': 1.0, 'gates': 1.0, 'top': 1.0, 'but': 1.0, 'four': 1.0, 'most': 2.0, 'feel': 1.0, 'in': 1.0, 'my': 3.0, 'and': 3.0, 'day': 1.0, 'budge': 1.0, 'squeeze': 2.0, 'like': 2.0, 'even': 1.0, '3': 1.0, 'therefore': 1.0, 'on': 1.0, 'the': 3.0, 'place': 1.0, 'gate': 1.0, 'child': 1.0, 'over': 1.0, 'that': 2.0, 'to': 4.0, 'a': 1.0, 's': 2.0, 'going': 1.0, 'stairs': 1.0, 'could': 1.0, 'we': 1.0, 'guests': 1.0, 'they': 1.0, '5': 1.0, 'opening': 1.0, 'because': 1.0}
Word element => {'gate': 1.0, 'excellent': 1.0, 'cost': 1.0, 'trouble': 1.0, 'no': 1.0, 'have': 1.0, 'very': 1.0, '11': 1.0, 'year': 2.0, 'way': 1.0, 'stair': 1.0, 'sturdy': 1.0, 'purchased': 1.0, 'top': 1.0, 'a': 2.0, 'closing': 1.0, 'the': 2.0, 'my': 1.0, 'love': 1.0, 'for': 2.0, 'it': 2.0, 'this': 1.0, 'old': 2.0, 'i': 2.0, 'was': 1.0, 'easy': 2.0, 'even': 1.0, 'opening': 1.0, 'and': 3.0, 'is': 2.0, 'installation': 1.0, 'so': 1.0, 'of': 1.0, '6': 1.0}
Word element => {'deal': 1.0, 'big': 1.0, 'a': 1.0, 'not': 1.0, 's': 1.0, 'that': 1.0, 'they': 1.0, 'bottom': 1.0, 'wish': 1.0, 'could': 1.0, 'in': 1.0, 'for': 2.0, 'one': 2.0, 'i': 1.0, 'the': 2.0, 'great': 1.0, 'only': 1.0, 'bought': 1.0, 'top': 1.0, 'we': 1.0, 'no': 1.0, 'complaints': 1.0, 'have': 1.0, 'and': 2.0, 'gotten': 1.0, 'them': 1.0, 'white': 1.0, 'work': 1.0, 'but': 1.0}
Word element => {'nice': 1.0, 'sturdy': 1.0, 'the': 1.0, 'looks': 1.0, 'minutes': 1.0, 'is': 1.0, 'gate': 1.0, 'took': 1.0, 'about': 1.0, 'it': 1.0, 'and': 1.0, 'very': 1.0, '15': 1.0, 'to': 1.0, 'install': 1.0}
Word element => {'hardware': 1.0, 'around': 1.0, 'right': 1.0, 'take': 1.0, 'can': 1.0, 'having': 1.0, 'because': 1.0, 'in': 2.0, 'extra': 1.0, 'few': 1.0, 'alone': 1.0, 'and': 1.0, 'chuck': 1.0, 'well': 1.0, 'wider': 1.0, 'have': 2.0, 'mentioned': 1.0, 'bottom': 2.0, 'of': 2.0, 'like': 1.0, 'mess': 1.0, 'i': 4.0, 'with': 4.0, 'it': 4.0, 'at': 1.0, 'was': 1.0, 'had': 1.0, 'wall': 3.0, 'to': 1.0, 'as': 1.0, 'word': 1.0, 'not': 2.0, 'fact': 1.0, 'another': 1.0, 'up': 1.0, 'don': 1.0, 'love': 1.0, 'caution': 1.0, 'holes': 2.0, 'template': 2.0, 'ones': 1.0, 'problem': 1.0, 'if': 1.0, 'use': 1.0, 'poster': 1.0, 'from': 1.0, 'very': 1.0, 'slightly': 1.0, 'wonder': 1.0, 'one': 1.0, 'out': 1.0, 'off': 1.0, 'house': 1.0, 'when': 1.0, 'you': 2.0, 'am': 1.0, 'noticed': 1.0, 'settling': 1.0, 'happy': 1.0, 'though': 1.0, 'go': 1.0, 'might': 1.0, 'a': 2.0, 't': 1.0, 'we': 2.0, 'that': 2.0, 'on': 2.0, 'without': 1.0, 'the': 13.0, 'gate': 1.0, 'line': 1.0, 'popping': 1.0, 'so': 1.0}
Word element => {'you': 1.0, 'make': 1.0, 'just': 1.0, 'had': 1.0, 'husband': 1.0, 'difficult': 1.0, 'mention': 1.0, 'some': 1.0, 'said': 1.0, 'in': 1.0, 'specifically': 1.0, 'looking': 1.0, 'he': 1.0, 'walk': 1.0, 'bump': 1.0, 'so': 1.0, 'touch': 1.0, 'beam': 1.0, 'was': 1.0, 'doesn': 1.0, 'themselves': 1.0, 'find': 2.0, 'sure': 1.0, 'easy': 1.0, 'were': 1.0, 'if': 1.0, 'no': 2.0, 'thing': 1.0, 'bad': 1.0, 'say': 1.0, 'too': 1.0, 'and': 1.0, 'hard': 1.0, 'sometimes': 1.0, 'it': 7.0, 'month': 1.0, 'five': 1.0, 'floor': 1.0, 'couldn': 2.0, 'do': 1.0, 'only': 1.0, 'open': 4.0, 'year': 1.0, 'i': 4.0, 'problems': 1.0, 'old': 2.0, 'bought': 1.0, 'have': 3.0, 'me': 2.0, 'not': 2.0, 'which': 1.0, 'over': 2.0, 'climbers': 1.0, 'for': 5.0, 'use': 1.0, 'are': 2.0, 'gate': 2.0, 'the': 3.0, 's': 4.0, 'stairs': 1.0, 'a': 6.0, 't': 3.0, 'basement': 1.0, 'defintely': 1.0, 'of': 1.0, 'way': 1.0, 'always': 1.0, 'top': 1.0, 'master': 1.0, 'all': 1.0, 'to': 8.0, 'screw': 1.0, 'look': 1.0, 'out': 1.0, '2': 2.0, 'but': 2.0, 'my': 2.0, 'fact': 1.0, 'also': 1.0, 'rambunctious': 1.0, 'there': 1.0, 'nephews': 1.0, 'climb': 1.0, 'at': 2.0, 'who': 1.0, 'd': 1.0, 'both': 1.0, 'even': 1.0, 'something': 1.0, 'besides': 1.0, 'into': 1.0, 'installation': 1.0, 'that': 2.0, 'reviews': 1.0, 'they': 3.0, 'this': 1.0, 'attempt': 1.0}
Word element => {'stars': 1.0, '4': 1.0, 'overall': 1.0, 'about': 1.0, 'good': 1.0, 'was': 3.0, 'thing': 1.0, 'on': 1.0, 'right': 1.0, 'toddler': 1.0, '5': 1.0, 'greater': 1.0, 'believe': 1.0, 'looking': 1.0, 'defense': 1.0, 'second': 1.0, 'hoped': 1.0, 'so': 1.0, 'unlocked': 1.0, 'she': 1.0, 'if': 1.0, 's': 1.0, 'block': 1.0, 'would': 2.0, 'reminder': 1.0, 'important': 1.0, 'mostly': 1.0, 'stairwell': 1.0, 'opening': 1.0, 'climb': 1.0, '13': 1.0, 'keep': 1.0, 'push': 3.0, 'able': 1.0, 'not': 4.0, 'could': 2.0, 'will': 2.0, 'also': 1.0, 'my': 2.0, 'locked': 2.0, 'in': 3.0, 'daughter': 1.0, 'what': 1.0, 'weak': 1.0, 'when': 3.0, 'am': 1.0, 'very': 3.0, 'sustain': 1.0, 'figure': 1.0, 'little': 2.0, 'be': 5.0, 'month': 1.0, 'it': 11.0, 'after': 1.0, 'chose': 1.0, 'safe': 1.0, 'position': 2.0, 'at': 1.0, 'is': 3.0, 'say': 1.0, 'comes': 1.0, 'like': 1.0, 'reading': 1.0, 'old': 1.0, 'i': 14.0, 'this': 2.0, 'and': 5.0, 'other': 2.0, 'as': 1.0, 'basement': 1.0, 'gate': 9.0, 'myself': 1.0, 'anyway': 1.0, 'reviews': 1.0, 'through': 2.0, 'installed': 1.0, 'top': 3.0, 'the': 22.0, 'of': 8.0, 'or': 3.0, 'yet': 1.0, 'stairs': 1.0, 'a': 6.0, 't': 2.0, 'against': 1.0, 'to': 12.0, 'fall': 1.0, 'that': 9.0, 'into': 3.0, 'reviewers': 1.0, 'pose': 1.0, 'feel': 2.0, 'most': 2.0, 'finished': 1.0, 'out': 1.0, 'over': 1.0, 'open': 2.0, '10': 1.0, 'for': 4.0, 'where': 1.0, 'force': 1.0, 'supposed': 1.0, 'quite': 1.0, 'while': 1.0, 'from': 1.0, 'didn': 1.0, 'have': 3.0, 'do': 1.0, 'much': 2.0, 'only': 2.0, 'trouble': 1.0, 'installing': 1.0, 'our': 1.0, 'how': 1.0, 'disappointed': 1.0, 'by': 1.0, 'although': 1.0, 'give': 1.0, 'contact': 1.0, 'secure': 1.0, 'break': 1.0, 'directions': 1.0, 'bit': 1.0, 'found': 2.0, 'however': 1.0, 'rated': 1.0, 'quality': 1.0, 'had': 1.0, 'screws': 1.0, 'stairwells': 1.0, 'examined': 1.0, 'try': 1.0, 'greatest': 1.0, 'one': 3.0, 'trust': 1.0, 'mechanism': 1.0, 'than': 1.0, 'way': 2.0, 'pounds': 1.0, 'swing': 1.0, 'line': 1.0, 'consists': 1.0, 'were': 1.0, 'piece': 1.0, 'weren': 1.0, 'with': 1.0, 'sturdy': 1.0, 'hinge': 1.0}
Word element => {'safe': 1.0, 'last': 1.0, 'will': 2.0, 'that': 1.0, 'top': 1.0, 'climbed': 1.0, 'little': 2.0, 'his': 1.0, 'feet': 1.0, 'out': 1.0, 'figured': 1.0, 'later': 1.0, 'weeks': 1.0, 'swayed': 1.0, 'pull': 1.0, 'when': 1.0, 'in': 2.0, 'noticed': 1.0, 'type': 1.0, 'quot': 2.0, 'but': 1.0, 'expensive': 1.0, 'bit': 2.0, 'climber': 1.0, 'much': 1.0, 'twisted': 1.0, 'standing': 1.0, 'had': 1.0, 'more': 1.0, 'gate': 2.0, 'the': 10.0, 'these': 2.0, 'heavy': 1.0, 'bought': 1.0, 'to': 8.0, 'our': 3.0, 'were': 2.0, 'keep': 1.0, 'climb': 2.0, 'large': 1.0, 'few': 2.0, 'impossible': 1.0, 'wooden': 1.0, 'price': 1.0, 'of': 3.0, 'other': 1.0, 'began': 2.0, 'well': 1.0, 'vitually': 1.0, 'after': 1.0, 'son': 2.0, 'worth': 1.0, 'holes': 2.0, 'they': 1.0, 'get': 2.0, 'easy': 1.0, 'duty': 1.0, 'with': 2.0, 'better': 1.0, 'are': 3.0, 'gates': 5.0, 'saver': 1.0, 'extra': 1.0, 'looking': 1.0, 'how': 1.0, 'he': 1.0, 'plastic': 2.0, 'and': 5.0, 'up': 1.0, 'over': 1.0, 'your': 1.0, 'on': 1.0, 'spend': 1.0, 'install': 1.0, 'feel': 1.0, 'them': 2.0, 'made': 1.0, 'a': 5.0, 'we': 4.0, 'stairs': 1.0, 'previous': 1.0}
Word element => {'buy': 1.0, 'way': 1.0, 'again': 1.0, 'you': 1.0, 'for': 1.0, 'supposed': 1.0, 'swing': 1.0, 'didn': 2.0, 'little': 1.0, 'that': 2.0, 'gate': 3.0, 'the': 5.0, 'cracking': 1.0, 'this': 2.0, 'only': 1.0, 'it': 3.0, 'piece': 2.0, 'with': 1.0, 'work': 1.0, 'to': 5.0, 'use': 2.0, 'easy': 2.0, 'was': 1.0, 'recommend': 1.0, 'is': 2.0, 'and': 2.0, 'latch': 1.0, 'us': 1.0, 'install': 2.0, 'seemed': 1.0, 'of': 1.0, 'pressure': 1.0, 'hear': 1.0, 'bit': 1.0, 'so': 1.0, 'correctly': 1.0, 'wood': 1.0, 't': 2.0, 'a': 1.0, 'could': 1.0, 'we': 2.0, 'just': 1.0, 'not': 1.0, 'one': 1.0, 'decided': 1.0, 'maybe': 1.0, 'i': 1.0, 'allow': 1.0, 'would': 1.0}
Word element => {'u': 1.0, 'litigious': 1.0, 'avoid': 1.0, 'perhaps': 1.0, 'baseboard': 1.0, 'kind': 1.0, 'some': 1.0, 'closer': 1.0, 'sued': 1.0, 'inch': 2.0, 'did': 2.0, 'angles': 1.0, 'width': 1.0, 'using': 1.0, 'manufacturer': 1.0, '3': 2.0, 'on': 2.0, 'guy': 1.0, 'secondly': 1.0, 'to': 5.0, 'screwing': 3.0, 'our': 1.0, 'mount': 1.0, 'happy': 1.0, 'ones': 1.0, 'needed': 1.0, 'encounter': 1.0, 'top': 2.0, 's': 2.0, 'a': 2.0, 'wall': 2.0, 'no': 1.0, 'i': 5.0, 'issues': 2.0, 'especially': 1.0, 'where': 1.0, 'meant': 1.0, 'when': 1.0, 'wanted': 1.0, 'tearing': 1.0, 'am': 1.0, '4': 2.0, 'seen': 1.0, 'plastic': 1.0, 'each': 1.0, 'would': 2.0, 've': 1.0, 'put': 1.0, 'much': 1.0, 'considering': 1.0, 'varieties': 1.0, 'being': 1.0, 'mounting': 2.0, 'side': 1.0, 'gate': 3.0, 'prevents': 1.0, 'baseboards': 1.0, 'washers': 1.0, 'it': 2.0, 'this': 2.0, 'than': 2.0, 'installing': 1.0, 'pressure': 1.0, 'better': 1.0, 'right': 1.0, 'bottom': 1.0, 'the': 17.0, 'of': 6.0, 'suprised': 1.0, 'there': 1.0, 'because': 1.0, 'that': 3.0, 'into': 1.0, 'bolting': 2.0, 'brackets': 3.0, 'studs': 3.0, 'in': 2.0, 'managed': 1.0, 'strips': 1.0, 'these': 1.0, 'by': 1.0, 'plywood': 1.0, 'include': 1.0, 'not': 2.0, 'firstly': 1.0, 'then': 1.0, 'ply': 2.0, 'solve': 1.0, 'was': 1.0, 'were': 2.0, 'sufficient': 1.0, 'two': 1.0, 'little': 1.0, 'be': 1.0, 'is': 1.0, 'at': 1.0, 'and': 1.0, 'from': 1.0, 'out': 1.0, 'alternative': 1.0, 'instructions': 1.0, 'every': 1.0, 'both': 1.0, 'house': 1.0, 'all': 1.0, 'an': 1.0, 'ever': 1.0, 'has': 1.0, 'had': 1.0}
Word element => {'need': 1.0, 'only': 1.0, 'hard': 1.0, 'confuse': 1.0, 'other': 1.0, 'me': 1.0, 'those': 1.0, 'visit': 1.0, 'you': 1.0, 'when': 1.0, 'no': 1.0, 'trying': 1.0, 'had': 1.0, 'was': 1.0, 'super': 1.0, 'safe': 1.0, 'use': 2.0, 'get': 1.0, 'easy': 2.0, 'friends': 1.0, 'so': 3.0, 'are': 1.0, 'gates': 3.0, 'have': 2.0, 'i': 5.0, '4': 1.0, 'these': 1.0, 'gate': 2.0, 'the': 2.0, 'recommends': 1.0, 'of': 1.0, 'will': 2.0, 'professional': 1.0, 'convince': 1.0, 'is': 3.0, 'said': 1.0, 'and': 7.0, 'we': 1.0, 'a': 1.0, 'well': 1.0, 'baby': 1.0, 'them': 2.0, 'love': 1.0, 'one': 1.0, 'truly': 1.0, 'looks': 1.0, 'it': 3.0, 'come': 1.0, 'proofer': 1.0, 'he': 2.0, 'this': 3.0, 'with': 1.0, 'my': 3.0, 'house': 1.0, 'saw': 1.0, 'install': 1.0, 'nice': 1.0, 'to': 6.0, 'as': 1.0, 'troubles': 1.0, 'open': 1.0, 'very': 1.0, 'can': 1.0, 'close': 1.0, 'hand': 1.0, 'keep': 1.0}
Word element => {'looking': 1.0, 'nice': 1.0, 'that': 1.0, 'all': 1.0, 'not': 1.0, 'nearly': 1.0, 'operation': 1.0, 'handed': 1.0, 'one': 1.0, 'a': 1.0, 'really': 1.0, 'is': 2.0, 'everytime': 1.0, 'impossible': 1.0, 'slide': 1.0, 'm': 1.0, 'open': 1.0, 'goes': 1.0, 'to': 3.0, 'afraid': 1.0, 'baby': 1.0, 'i': 3.0, 'close': 2.0, 'slots': 1.0, 'harder': 1.0, 'correctly': 1.0, 'even': 1.0, 'down': 1.0, 'hard': 1.0, 'it': 4.0, 'pain': 1.0, 'ends': 1.0, 'won': 1.0, 'there': 1.0, 'into': 1.0, 'stairs': 1.0, 'latch': 1.0, 'and': 2.0, 't': 1.0, 'the': 4.0, 's': 2.0, 'trying': 1.0}
Word element => {'stairs': 1.0, 'my': 1.0, 'of': 1.0, 'top': 1.0, 'the': 1.0, 'can': 1.0, 'you': 1.0, 'and': 2.0, 'install': 1.0, 'easy': 2.0, 'at': 1.0, 'carry': 1.0, 'safe': 1.0, 'your': 1.0, 'one': 1.0, 'i': 1.0, 'to': 2.0, 'was': 1.0, 'child': 1.0, 'arm': 1.0, 'open': 1.0, 'in': 1.0, 'it': 1.0, 'this': 2.0, 'with': 2.0, 'another': 1.0, 'gate': 1.0, 'use': 1.0, 'feel': 1.0}
Word element => {'recommend': 1.0, 'definately': 1.0, 'd': 1.0, 'hand': 1.0, 'opened': 1.0, 'can': 1.0, 'its': 1.0, 'for': 1.0, 'at': 1.0, 'quickly': 1.0, 'sturdy': 1.0, 'brackets': 1.0, 'one': 1.0, 'bought': 1.0, 'just': 2.0, 'two': 1.0, 'i': 2.0, 'with': 2.0, 'this': 1.0, 'happy': 1.0, 'so': 1.0, 'other': 1.0, 'top': 1.0, 'installed': 1.0, 'gate': 1.0, 'the': 3.0, 'are': 1.0, 'of': 2.0, 'installs': 1.0, 'closed': 1.0, 'and': 5.0, 'places': 1.0, 'has': 1.0, 'in': 1.0, 'off': 1.0, 'house': 1.0, 'more': 1.0, 'is': 1.0, 'easy': 1.0, 'our': 2.0, 'to': 2.0, 'use': 1.0, 'we': 1.0, 'stairs': 1.0, 'a': 1.0, 'low': 1.0, 'be': 1.0, 'profile': 1.0, 'have': 1.0, 'it': 5.0, 'lifts': 1.0, 'out': 1.0, 'want': 1.0, 'if': 1.0, 'you': 1.0, 'way': 1.0, 'that': 1.0, 'totally': 1.0}
Word element => {'our': 1.0, 'barrier': 1.0, 'are': 1.0, 'so': 1.0, 'gates': 1.0, 'too': 1.0, 'wood': 1.0, 'junky': 1.0, 'be': 2.0, 'some': 1.0, 'how': 1.0, 'hallway': 1.0, 'price': 1.0, 'don': 1.0, 'i': 1.0, 'choice': 1.0, 'for': 4.0, 'nice': 2.0, 't': 1.0, 'the': 3.0, 'openings': 1.0, 'made': 1.0, 'know': 1.0, 'not': 2.0, 'gate': 1.0, 'looks': 1.0, 'people': 1.0, 'door': 2.0, 'is': 2.0, 'opening': 1.0, 'best': 1.0, 'good': 1.0, 'stairway': 1.0, 'we': 2.0, 'found': 3.0, 'this': 3.0, 'it': 1.0, 'easy': 1.0, 'to': 4.0, 'install': 1.0, 'babysitter': 1.0, 'probably': 1.0, 'and': 1.0, 'a': 5.0, 'well': 1.0}
Word element => {'deal': 1.0, 'that': 1.0, 'are': 1.0, 'things': 1.0, 'those': 1.0, 'neither': 1.0, 'user': 1.0, 'little': 1.0, 'rugged': 1.0, 'lit': 1.0, 'a': 3.0, 'could': 2.0, 'friendly': 1.0, 'be': 3.0, 'should': 1.0, 'where': 1.0, 'keep': 1.0, 'them': 1.0, 'kiddo': 1.0, 'another': 1.0, 'of': 3.0, 'latch': 1.0, 'good': 1.0, 'he': 1.0, 'with': 1.0, 'gates': 1.0, 'has': 1.0, 'they': 2.0, 'pleased': 1.0, 'i': 1.0, 'big': 1.0, 'very': 1.0, 'and': 3.0, 'my': 2.0, 'but': 1.0, 'work': 1.0, 'house': 1.0, 'more': 2.0, 'the': 2.0, '2': 1.0, 'these': 1.0, 'mother': 1.0, 'have': 1.0, 'all': 1.0, 'in': 1.0, 'greatly': 1.0, 'help': 1.0}
Word element => {'fingers': 1.0, 'pinched': 1.0, 'has': 1.0, 'worth': 1.0, 'latch': 1.0, 'highly': 1.0, 'flip': 1.0, 'up': 1.0, 'use': 1.0, 'in': 1.0, 'open': 1.0, 'best': 1.0, 'is': 4.0, 'fine': 1.0, 'this': 3.0, 'love': 1.0, 'few': 1.0, 'just': 1.0, 'by': 1.0, 'feature': 1.0, 'i': 5.0, 'retracts': 1.0, 'have': 2.0, 'it': 4.0, 'remove': 1.0, 'not': 1.0, 'at': 2.0, 'prefer': 1.0, 'bottom': 1.0, 'of': 3.0, 'locking': 1.0, 'metal': 1.0, 'that': 1.0, 'hinges': 1.0, 'gate': 7.0, 'the': 7.0, 'my': 3.0, 'and': 5.0, 'so': 1.0, 'walk': 1.0, 'still': 1.0, 'stairs': 2.0, 'a': 3.0, '2': 1.0, 'can': 1.0, 'but': 2.0, 'put': 1.0, 'top': 1.0, 'back': 1.0, 'times': 1.0, 'when': 1.0, 'you': 1.0, 'easily': 1.0, 'am': 1.0, 'would': 1.0, 'be': 1.0, 'recommend': 1.0, 'was': 1.0, 'to': 2.0, 'sure': 1.0, 'easy': 2.0, 'install': 1.0}
Word element => {'permanent': 1.0, 'there': 2.0, 'i': 1.0, 'price': 1.0, 'problem': 1.0, 'run': 1.0, 'have': 1.0, 'not': 1.0, 'probably': 1.0, 'height': 1.0, '3': 1.0, 'better': 1.0, 'think': 1.0, 'ground': 2.0, 'off': 2.0, 'end': 1.0, 'otherwise': 1.0, 'in': 3.0, 'level': 1.0, 'high': 1.0, 'to': 5.0, 'our': 2.0, '90': 1.0, 'bit': 1.0, 'everything': 1.0, 'want': 1.0, 'if': 3.0, 'degrees': 1.0, 'you': 2.0, 'through': 1.0, 'tricky': 1.0, 'seemed': 1.0, '1': 2.0, 'alone': 1.0, 'floor': 1.0, '36': 1.0, 'gate': 7.0, 'law': 1.0, 'a': 5.0, 'stairs': 1.0, 'will': 1.0, 'could': 1.0, 't': 2.0, 'hole': 1.0, 'is': 4.0, 'at': 1.0, 'keep': 1.0, 'fortunately': 1.0, 'mounting': 4.0, 'don': 1.0, 'opening': 1.0, 'father': 1.0, 'installing': 3.0, 'across': 1.0, 'recommended': 1.0, 'and': 4.0, 'especially': 1.0, 'bottom': 1.0, 'installed': 2.0, 'top': 2.0, 'the': 21.0, 'of': 5.0, 'use': 1.0, 'sturdy': 1.0, 'hardware': 3.0, 'it': 1.0, 'this': 5.0, '30': 1.0, 'with': 2.0, 'get': 1.0, 'opens': 1.0, 'helped': 1.0, 'like': 2.0, 'hand': 1.0, 'for': 2.0, 'one': 1.0, 'my': 1.0, 'me': 1.0, 'out': 2.0, 'manufacturer': 1.0, 'ended': 1.0, 'up': 2.0, 'studs': 1.0, 'missed': 1.0, 'x': 2.0, 'wall': 2.0, 'mount': 1.0, 'w': 1.0, 'l': 1.0, 'wood': 2.0, 'mind': 1.0, 'both': 1.0, 'sides': 2.0, 'these': 1.0, 'piece': 1.0, 'were': 1.0, 'mounted': 1.0, 'into': 3.0, 'easily': 1.0, 'that': 2.0, '4': 1.0, 'case': 1.0, 'offset': 1.0, 'latching': 1.0, 'guarantee': 1.0, 'by': 1.0, 'screwed': 1.0, 'fyi': 1.0, 'would': 2.0, 'be': 1.0, 'lowest': 1.0, 'had': 2.0, 'screws': 1.0, 'stud': 1.0, 'due': 1.0, '2': 3.0, 'between': 1.0, 'maximum': 1.0, 'we': 6.0, 'swinging': 1.0, 'latch': 1.0, 'on': 1.0, 'molding': 3.0, 'screw': 3.0, 'side': 1.0, 'point': 1.0}
Word element => {'safety': 1.0, 'good': 1.0, 'baby': 2.0, 'with': 1.0, 'along': 1.0, 'right': 1.0, 'stuck': 1.0, 'shut': 1.0, 'forget': 1.0, 'was': 1.0, 'doesn': 1.0, 'daughter': 1.0, 'old': 1.0, 'year': 1.0, 'my': 2.0, 'still': 1.0, 'adults': 1.0, 'easy': 1.0, '3': 1.0, 'on': 1.0, 'taken': 1.0, 'she': 2.0, 'it': 8.0, 'this': 2.0, 'direction': 1.0, 'which': 1.0, 'like': 1.0, 'enough': 1.0, 'off': 1.0, 'latch': 1.0, 'of': 3.0, 'gate': 2.0, 'hinges': 1.0, 'the': 9.0, 'at': 2.0, 'installed': 1.0, 'about': 1.0, 'up': 1.0, 'don': 1.0, 'but': 1.0, 'can': 2.0, 'for': 3.0, 'love': 1.0, 'one': 1.0, 'i': 2.0, 'nothing': 1.0, 'bad': 1.0, 'have': 2.0, 'hard': 1.0, 'fix': 1.0, 'be': 1.0, 'to': 4.0, 'its': 1.0, 'back': 1.0, 'top': 2.0, 'is': 2.0, 'say': 1.0, 'and': 3.0, 'so': 3.0, 'investment': 1.0, 'nice': 2.0, 'need': 1.0, 'not': 1.0, 'swings': 1.0, 'easily': 1.0, 'when': 1.0, 'you': 2.0, 'that': 2.0, 'open': 3.0, 's': 1.0, 'stairs': 2.0, 't': 2.0, 'we': 1.0, 'a': 2.0, 'door': 1.0, 'in': 1.0}
Word element => {'expect': 1.0, 'come': 1.0, 'like': 1.0, 'again': 2.0, 'am': 1.0, '35': 1.0, 'old': 1.0, 'but': 1.0, '2': 1.0, 'how': 1.0, 'out': 2.0, 'swings': 1.0, 'wall': 2.0, 'yr': 1.0, 'attaches': 1.0, 'that': 2.0, 'part': 2.0, 'weeks': 1.0, 'sure': 1.0, 'get': 1.0, 'not': 2.0, 'months': 1.0, 'top': 1.0, 'on': 2.0, 'put': 2.0, 'screws': 1.0, 'quality': 1.0, 'wise': 1.0, 'larger': 1.0, 'course': 1.0, 'for': 2.0, 'directions': 1.0, 'do': 1.0, 'much': 2.0, 'price': 1.0, 'whenever': 1.0, 'two': 1.0, 'i': 4.0, 'and': 4.0, 'up': 2.0, 'of': 7.0, 'doing': 2.0, 'this': 4.0, 'looks': 1.0, 'she': 1.0, 'it': 4.0, 'with': 2.0, 'after': 1.0, 'stop': 1.0, '19': 1.0, 'at': 1.0, 'ripped': 1.0, 'landing': 1.0, 'being': 1.0, 'anchors': 1.0, 'my': 3.0, 'gate': 4.0, 'the': 12.0, 'is': 2.0, 'more': 2.0, 'followed': 1.0, 'upstairs': 1.0, 'expected': 1.0, 'well': 2.0, 'would': 2.0, 'be': 1.0, 'daughter': 1.0, 'stand': 1.0, 'shake': 1.0, 'our': 1.0, 'to': 4.0, 'all': 1.0, 'her': 2.0, 'going': 1.0, 'could': 2.0, 'stairs': 1.0, 't': 1.0, 'a': 2.0, 'we': 1.0, 'might': 1.0, 'husband': 2.0, 'stubborn': 1.0}
Word element => {'all': 1.0, 'up': 1.0, 'can': 1.0, 'under': 1.0, 'out': 1.0, 'to': 2.0, 't': 1.0, 'great': 3.0, 'holds': 1.0, 'or': 1.0, 'good': 1.0, 'figure': 1.0, 'looks': 2.0, 'year': 1.0, 'winner': 1.0, 'for': 1.0, 'pulls': 1.0, '104': 1.0, 'how': 1.0, 'cyclone': 1.0, 'she': 2.0, 'over': 1.0, 'gate': 2.0, 'get': 1.0, 'and': 4.0, 'it': 1.0, 'this': 2.0, 'only': 1.0, 'my': 1.0, 'bought': 1.0, 'be': 1.0, 'tries': 1.0, 'old': 2.0, 'i': 1.0, '18': 1.0, 'not': 1.0, 'month': 1.0, 'pushes': 1.0, 'keeps': 1.0, 'works': 1.0, 'her': 1.0, 'around': 2.0, 'should': 1.0, 'where': 1.0, 'house': 1.0, 'but': 2.0}
Word element => {'design': 1.0, 'simple': 1.0, 'like': 1.0, 'and': 1.0, 'inconspicuous': 1.0, 'wood': 1.0, 'up': 1.0, 'set': 1.0, 'how': 1.0, 'price': 1.0, 'for': 1.0, 'though': 1.0, 'great': 1.0, 'the': 4.0, 'are': 2.0, 'own': 1.0, 'a': 1.0, 'natural': 1.0, 'instructions': 1.0, 'gate': 1.0, 'on': 1.0, 'it': 2.0, 'this': 1.0, 'think': 1.0, 'out': 1.0, 'i': 2.0, 'makes': 1.0, 'your': 1.0, 'no': 1.0, 'help': 1.0, 'so': 1.0, 'you': 1.0, 'to': 2.0, 'really': 1.0, 'is': 1.0, 'figure': 1.0}
Word element => {'purchase': 1.0, 'worth': 1.0, 'they': 1.0, 'ended': 1.0, 'we': 1.0, 'kids': 1.0, 'the': 2.0, 'and': 2.0, 'open': 1.0, 'strong': 1.0, 'fit': 1.0, 'install': 1.0, 'out': 1.0, 'wide': 1.0, 'keeps': 1.0, 'actually': 1.0, 'easy': 2.0, 'two': 1.0, 'solid': 1.0, 'that': 1.0, 'stairs': 1.0, 'a': 1.0, 'gate': 1.0, 'is': 1.0, '45': 1.0, 're': 1.0, 'my': 1.0, 'wife': 1.0, 'buying': 1.0, 'to': 2.0, 'had': 1.0, 'in': 2.0, 'this': 1.0, 'it': 2.0, 'put': 1.0, 'up': 2.0, 'minutes': 1.0}
Word element => {'loved': 1.0, 'birthday': 1.0, 'his': 1.0, 'my': 1.0, 'it': 2.0, 'nice': 1.0, 'very': 1.0, 'quality': 1.0, 'and': 2.0, 'to': 1.0, 'product': 1.0, 'on': 1.0, 'is': 1.0, 'a': 1.0, 'he': 1.0, 'nephew': 1.0, 'good': 1.0, 'was': 1.0, 'gift': 1.0}
Word element => {'great': 1.0, 'all': 1.0, 'a': 1.0, 'them': 1.0, 'time': 1.0, 'with': 1.0, 'the': 1.0, 'my': 1.0, 'and': 1.0, 'loves': 1.0, 'dinosaurs': 2.0, 'his': 1.0, 'toy': 1.0, 'tub': 1.0, 'nephew': 1.0, 'of': 1.0, 'he': 1.0, 'big': 1.0, 'plays': 1.0}
Word element => {'that': 2.0, 'pay': 1.0, 'what': 1.0, 's': 1.0, 'you': 2.0, 'and': 1.0, 'get': 1.0, 'expectations': 1.0, 'smaller': 1.0, 'my': 2.0, 'meet': 1.0, 'matters': 1.0, 'not': 1.0, 'was': 1.0, 'did': 1.0, 'for': 1.0, 'year': 1.0, 'product': 1.0, 'guess': 1.0, 'i': 1.0, 'old': 1.0, 'than': 1.0, 'the': 1.0, '2': 1.0, 'all': 1.0, 'likes': 1.0, 'advertised': 1.0, 'it': 1.0}
Word element => {'overall': 1.0, 'have': 1.0, 'would': 1.0, 'dinos': 1.0, 'puzzles': 1.0, 'good': 1.0, 'different': 1.0, 'names': 1.0, 'last': 1.0, 'also': 1.0, 'will': 2.0, 'but': 2.0, 'do': 1.0, 'this': 2.0, 'background': 1.0, 'with': 3.0, 'it': 1.0, 'children': 1.0, 'floor': 1.0, 'grandsons': 1.0, 'dino': 1.0, 'nice': 1.0, 'seemed': 1.0, 'forever': 1.0, 'been': 1.0, 'that': 1.0, 'purchase': 1.0, 'my': 1.0, 'made': 1.0, 'are': 1.0, 'the': 2.0, 'a': 3.0, 's': 1.0, 'priced': 1.0, 'plastic': 1.0, 'use': 1.0, 'than': 1.0, 'comes': 1.0, 'as': 1.0, 'to': 1.0, 'well': 1.0, 'has': 1.0, 'bit': 1.0, 'time': 1.0, 'rather': 1.0, 'of': 2.0, 'high': 1.0, 'pieces': 1.0, 'product': 1.0, 'for': 1.0, 'several': 1.0, 'and': 2.0, 'play': 1.0, 'flimsy': 1.0, 'at': 1.0, 'i': 1.0, 'lots': 1.0, 'paper': 1.0}
Word element => {'good': 1.0, 'them': 1.0, 'back': 1.0, 'placed': 1.0, 'put': 1.0, 'tub': 2.0, 'child': 1.0, 'inside': 1.0, 'especially': 1.0, 'and': 2.0, 'done': 1.0, 'comes': 1.0, 'to': 1.0, 'like': 1.0, 'it': 2.0, 'this': 1.0, 'he': 1.0, 'i': 2.0, 'got': 1.0, 'decent': 1.0, 'in': 1.0, 'my': 1.0, 'rocks': 1.0, 'gift': 1.0, 'birthday': 1.0, 'little': 2.0, 'his': 1.0, 'that': 1.0, 'loves': 1.0, 'nephew': 1.0, 'playing': 1.0, 'the': 4.0, 'when': 1.0, 'for': 2.0, 'where': 1.0, 'they': 1.0, 'are': 2.0, 'dino': 1.0, 'a': 3.0, 's': 1.0, 'size': 1.0, 'but': 1.0, 'can': 1.0, 'not': 1.0, 'large': 1.0, 'goes': 1.0, 'trees': 1.0, 'be': 1.0, 'everything': 1.0, 'want': 1.0}
Word element => {'delightful': 1.0, 'be': 1.0, 'turned': 1.0, 'tub': 1.0, 's': 1.0, 'planet': 1.0, 'pretend': 1.0, 'seeing': 1.0, 'between': 1.0, 'love': 1.0, 'situations': 1.0, 'acts': 1.0, 'table': 1.0, 'on': 1.0, 'lines': 1.0, 'just': 1.0, 'd': 2.0, 'some': 1.0, 'room': 1.0, 'these': 1.0, 'have': 3.0, 'saw': 1.0, 'touch': 1.0, 'acting': 1.0, 'any': 1.0, 'to': 5.0, 'play': 2.0, 'about': 1.0, 'wasn': 1.0, 'out': 3.0, 'really': 1.0, 'so': 2.0, 'fun': 2.0, 'from': 1.0, 'year': 1.0, 'features': 1.0, 'for': 1.0, 'daughter': 1.0, '5': 1.0, 'then': 1.0, 'purchase': 1.0, 'my': 2.0, 'plays': 1.0, 'was': 1.0, 'more': 1.0, 'and': 6.0, 'dinosaurs': 3.0, 'is': 1.0, 't': 2.0, 'a': 6.0, 'ones': 1.0, 'she': 6.0, 'with': 5.0, 'including': 1.0, 'christmas': 1.0, 'time': 2.0, 'uses': 1.0, 'minute': 1.0, 'kids': 1.0, 'loves': 1.0, 'that': 1.0, 'living': 1.0, 'old': 1.0, 'animal': 1.0, 'who': 1.0, 'rocks': 1.0, 'last': 1.0, 'her': 4.0, 'this': 3.0, 'few': 1.0, 'variety': 1.0, 'has': 3.0, 'i': 4.0, 'karaoke': 1.0, 'well': 1.0, 'by': 1.0, 'coloring': 1.0, 'plastic': 1.0, 'coffee': 1.0, 'our': 1.0, 'item': 1.0, 'how': 1.0, 'it': 2.0, 'thought': 1.0, 'up': 1.0, 'favorite': 1.0, 'even': 1.0, 'beyond': 1.0, 'other': 2.0, 'getting': 1.0, 'thinking': 1.0, 'items': 1.0, 'thing': 1.0, 'surprise': 2.0, 'machine': 1.0, 'tablet': 1.0, 'stocked': 1.0, 'e': 1.0, 'books': 1.0, 'social': 1.0, 'games': 1.0, 'nice': 3.0, 'various': 2.0, 'family': 1.0, 'scenarios': 1.0, 'watch': 1.0, 'community': 1.0, 'dinos': 3.0, 'times': 1.0, 'imagined': 1.0, 'much': 1.0, 'of': 2.0, 'the': 4.0, 'are': 2.0, 'good': 1.0, 'made': 1.0, 'become': 1.0, 'trees': 1.0, 'big': 1.0, 'mat': 1.0, 'volcanoes': 1.0, 'couldn': 1.0, 'sometimes': 1.0}
Word element => {'getting': 1.0, 'be': 1.0, 'both': 1.0, 'will': 1.0, 'they': 1.0, 'friends': 1.0, 'january': 1.0, 'turning': 1.0, 'in': 1.0, 'each': 1.0, 'it': 1.0, 'this': 3.0, 'he': 1.0, 'christmas': 1.0, 'my': 1.0, 'the': 2.0, 'job': 1.0, 'of': 2.0, 'bottom': 1.0, 'endless': 1.0, 'set': 2.0, 'great': 1.0, '1': 1.0, 'get': 1.0, 'planet': 1.0, 'playset': 1.0, 'hours': 1.0, 'name': 1.0, 'dinosaur': 1.0, 'have': 1.0, 'to': 2.0, 'old': 1.0, 'two': 1.0, 'i': 1.0, 'his': 1.0, 'year': 1.0, 'challenge': 1.0, 'for': 2.0, 'got': 1.0, 'with': 1.0, 'mind': 1.0, 'are': 1.0, 'birthdays': 1.0, 'is': 1.0, 'son': 1.0, 'printed': 1.0, '3': 1.0, 'on': 1.0, '2': 2.0, 'can': 1.0, 'animal': 1.0, 'see': 1.0, 'loves': 1.0, 'that': 1.0, 'play': 1.0, 'we': 2.0, 'going': 1.0}
Word element => {'etc': 1.0, 'trees': 1.0, 'has': 1.0, 'of': 1.0, 'year': 1.0, 'for': 1.0, 'playing': 1.0, 'dinorsaurs': 1.0, 'grandson': 1.0, 'loves': 1.0, 'and': 1.0, 'my': 1.0, '2': 1.0, 'the': 1.0, 'bought': 1.0, 'old': 1.0, 'i': 1.0, 'absolutely': 1.0, 'he': 2.0, 'with': 1.0, 'this': 1.0, 'it': 1.0, 'hours': 1.0, 'spent': 1.0, 'all': 1.0}
Word element => {'kids': 1.0, 'so': 1.0, 'like': 1.0, 'thin': 1.0, 'wasn': 1.0, 'mat': 1.0, 'wish': 1.0, 'also': 1.0, 'i': 1.0, 'with': 1.0, 'it': 2.0, 'was': 1.0, 'of': 1.0, 'good': 1.0, 'my': 1.0, 'affect': 1.0, 'trees': 1.0, 'really': 1.0, 'is': 1.0, 'one': 1.0, 'concept': 1.0, 'they': 1.0, 'flimsy': 1.0, 'overall': 1.0, 'are': 2.0, 'broken': 1.0, 'as': 1.0, 'dinosaurs': 1.0, 'a': 1.0, 'bit': 1.0, 'but': 1.0, 'didn': 1.0, 'playing': 1.0, 'that': 1.0, 'great': 1.0, 'the': 4.0, 't': 2.0}
Word element => {'nice': 1.0, 'which': 1.0, 'outdoors': 1.0, 'played': 1.0, 'can': 1.0, 'so': 1.0, 'very': 1.0, 'to': 1.0, 'seem': 1.0, 'car': 1.0, 'summer': 1.0, 'traveling': 1.0, 'not': 1.0, 'they': 2.0, 'has': 1.0, 'be': 3.0, 'bought': 1.0, 'for': 2.0, 'playing': 1.0, 'grandson': 1.0, 'my': 1.0, 'these': 1.0, 'the': 3.0, 'i': 1.0, 'uses': 1.0, 'too': 1.0, 'when': 1.0, 'durable': 1.0, 'he': 2.0, 'christmas': 1.0, 'stopped': 1.0, 'with': 2.0, 'them': 2.0, 'since': 1.0, 'mat': 1.0, 'will': 2.0, 'but': 1.0, 'in': 2.0, 'also': 2.0, 'take': 1.0}
Word element => {'than': 1.0, 'attention': 1.0, 'closer': 1.0, 'photography': 1.0, 'there': 1.0, 'looking': 1.0, 'by': 1.0, 'nicely': 1.0, 'in': 1.0, 'that': 1.0, 'box': 1.0, 'tote': 1.0, 'own': 1.0, 'should': 1.0, 'their': 1.0, 'reviews': 1.0, 'they': 1.0, 'do': 1.0, 'little': 1.0, 'very': 1.0, 'are': 1.0, 'and': 2.0, 'hazard': 1.0, 'suffocation': 1.0, 'feel': 1.0, 'purchased': 1.0, '29': 1.0, 'don': 1.0, 'but': 1.0, 'will': 2.0, 'quality': 1.0, 'really': 1.0, 'say': 1.0, 'dinosaurs': 1.0, 'is': 1.0, 'it': 2.0, 'this': 2.0, 'sure': 1.0, 'toys': 1.0, 'i': 7.0, 'm': 1.0, 'have': 1.0, 'small': 1.0, 'reminds': 1.0, 'a': 2.0, 'we': 2.0, 's': 3.0, 't': 2.0, 'trick': 1.0, 'birthday': 1.0, 'used': 1.0, 'set': 1.0, 'rather': 1.0, 'of': 1.0, 'fit': 1.0, 'for': 2.0, 'son': 2.0, 'picture': 1.0, 'got': 1.0, '2nd': 1.0, 'details': 1.0, 'fact': 1.0, 'my': 2.0, 'paid': 2.0, 'mat': 1.0, 'paint': 1.0, 'the': 8.0, 'job': 1.0, 'on': 1.0, 'piece': 1.0, 'won': 1.0, 've': 1.0, 'each': 1.0, 'me': 1.0, 'like': 3.0, 'dollar': 1.0, 'store': 1.0, 'at': 1.0, 'flimsy': 1.0, 'he': 1.0, 'plastic': 1.0, 'giving': 1.0, 'be': 1.0, 'all': 1.0, 'as': 1.0, 'to': 2.0}
Word element => {'matching': 1.0, 'there': 1.0, 'handle': 1.0, 'carry': 1.0, 'has': 1.0, 'room': 1.0, 'no': 1.0, 'with': 1.0, 'everything': 1.0, 'ones': 1.0, 'compact': 1.0, 'tub': 1.0, 'outback': 1.0, 'important': 1.0, 'little': 2.0, 'very': 1.0, 'matches': 1.0, 'to': 2.0, 'all': 1.0, 'matter': 1.0, 'does': 1.0, 'plastic': 1.0, 'simple': 1.0, 'set': 1.0, 'up': 1.0, 'savanna': 1.0, 'and': 5.0, 'dynos': 1.0, 'necessary': 1.0, 'bea': 1.0, 'arrived': 1.0, 'it': 1.0, 'wish': 1.0, 'this': 2.0, 'spare': 1.0, 'home': 1.0, 'picture': 1.0, 'got': 1.0, 'gift': 1.0, 'when': 1.0, 'i': 1.0, '4': 1.0, 'holds': 1.0, 'is': 5.0, 'volcanoes': 1.0, 'a': 3.0, 'had': 1.0, 'works': 1.0, 'granddaughter': 1.0, 'was': 3.0, 'map': 2.0, 'at': 1.0, 'rocks': 1.0, 'crazed': 1.0, 'kitchen': 1.0, 'thanksgiving': 1.0, 'the': 10.0, 'great': 1.0, 'variety': 1.0, 'species': 1.0, 'actually': 1.0, 'for': 2.0, 'in': 2.0, 'dyno': 1.0, 'age': 1.0, 'different': 2.0, 'probably': 1.0, 'sizes': 1.0, 'are': 2.0, 'gradually': 1.0, 'not': 2.0, 'will': 1.0, 'but': 1.0, 'my': 1.0, 'fact': 2.0, '34': 4.0, 'disappear': 1.0, 'almost': 1.0, 'awesome': 1.0, 'box': 1.0, 'that': 3.0}
Word element => {'site': 1.0, 'on': 1.0, 'way': 1.0, 'substantially': 1.0, 'as': 1.0, 'but': 2.0, 'play': 1.0, 'item': 1.0, 'learning': 1.0, 'is': 1.0, 'fine': 1.0, 'a': 1.0, 'found': 1.0, 'i': 2.0, 'too': 1.0, 'us': 1.0, 'good': 1.0, 'think': 1.0, 'same': 1.0, 'thing': 1.0, 'at': 1.0, 'toys': 1.0, 'r': 1.0, 'price': 1.0, 'toy': 1.0, 'exact': 1.0, 'for': 1.0, 'this': 2.0, '19': 1.0, 'the': 3.0, '99': 1.0, 'high': 1.0, 'rate': 1.0}
Word element => {'playing': 1.0, 'if': 1.0, 'girls': 1.0, 'boys': 1.0, 'both': 1.0, 'extra': 1.0, 'will': 1.0, 'an': 1.0, 'son': 1.0, 'as': 2.0, 'kids': 1.0, 'my': 1.0, 'love': 2.0, 'neighbor': 1.0, 'for': 2.0, 'they': 1.0, 'makes': 1.0, 'get': 1.0, 'and': 2.0, 'comes': 1.0, 'little': 1.0, 'gift': 1.0, 'cute': 1.0, 'dinosaurs': 1.0, 'well': 1.0, 'a': 5.0, 's': 1.0, 'you': 1.0, 'coupld': 1.0, 'is': 1.0, 'in': 1.0, 'tub': 1.0, 'everything': 1.0, 'so': 1.0, 'storage': 1.0, 'great': 1.0, 'these': 1.0, 'i': 1.0, 'with': 1.0, 'this': 2.0, 'picked': 1.0, 'up': 1.0, 'set': 2.0, 'of': 1.0}
Word element => {'of': 1.0, 'gets': 1.0, 'after': 1.0, 'garbage': 1.0, 'who': 1.0, 'but': 1.0, 'ahold': 1.0, 'these': 1.0, 'the': 2.0, 'daughter': 1.0, 'for': 2.0, 'i': 2.0, 'my': 1.0, 'wasn': 1.0, 'expecting': 1.0, '4yo': 2.0, 'really': 2.0, 'kids': 1.0, 'this': 2.0, 'with': 1.0, 'daily': 1.0, 'has': 1.0, 'toy': 1.0, 'to': 1.0, 'be': 1.0, 'trees': 1.0, 't': 1.0, 'a': 3.0, 'is': 3.0, 'dinosaurs': 1.0, 'popular': 1.0, 'interest': 1.0, 'sheet': 1.0, 'in': 1.0, 'rubber': 1.0, 'it': 3.0, 'she': 1.0, 'loves': 1.0, 'and': 2.0, 'break': 1.0, 'days': 1.0, 'shown': 1.0, 'plays': 1.0, 'got': 1.0, 'complaints': 1.0, 'plastic': 2.0, 'very': 1.0, 'little': 1.0, 'mat': 1.0, 'pretty': 1.0, 'only': 1.0, 'much': 1.0}
Word element => {'though': 1.0, 'sharptooth': 1.0, 'littlefoot': 1.0, 'grandpa': 1.0, 'a': 1.0, 's': 1.0, 'park': 1.0, 'carseat': 1.0, 'five': 1.0, 'to': 2.0, 'old': 1.0, 'sarah': 1.0, 'there': 1.0, 'of': 1.0, 'keeps': 1.0, 'bed': 1.0, 'one': 1.0, 'bathtub': 1.0, 'he': 1.0, 'with': 1.0, 'son': 1.0, 'year': 1.0, 'my': 1.0, 'these': 1.0, 'the': 1.0, 'him': 1.0, 'no': 1.0, 'two': 1.0, 'at': 1.0, 'all': 1.0, 'times': 1.0, 'brings': 1.0, 'petri': 1.0, 'them': 1.0, 'dinner': 1.0, 'table': 1.0}
Word element => {'ever': 1.0, 'best': 1.0, '34': 1.0, 'response': 1.0, 'i': 1.0, 'who': 1.0, 'his': 1.0, 'into': 1.0, 'for': 1.0, 'the': 1.0, 'my': 1.0, 'this': 1.0, 'grandson': 1.0, 'now': 1.0, 'is': 2.0, 'dinosaurs': 1.0, 'really': 1.0, 'toy': 1.0, 'purchased': 1.0, 'right': 1.0}
Word element => {'loves': 1.0, 'grandson': 1.0, 'my': 1.0, 'the': 1.0, 'buy': 1.0, 'for': 2.0, 'gift': 1.0, 'grandchild': 1.0, 'heard': 1.0, 'money': 1.0, 'it': 2.0, 'quality': 1.0, 'is': 1.0, 'a': 1.0, 'nice': 1.0, 'really': 1.0, 'good': 2.0}
Word element => {'money': 1.0, 'and': 1.0, 'at': 1.0, 'was': 1.0, 'my': 1.0, 'outgrown': 1.0, 'for': 1.0, 'loved': 1.0, 'who': 1.0, 'grandson': 1.0, 'bought': 1.0, 'i': 1.0, 'time': 1.0, 'has': 2.0, 'them': 2.0, 'well': 1.0, 'dinosaurs': 1.0, 'a': 1.0, 'but': 1.0, 'worth': 1.0, 'gift': 1.0, 'still': 1.0, 'he': 1.0, 'it': 1.0, 'the': 2.0, 'these': 1.0, 'great': 1.0}
Word element => {'rather': 1.0, 'on': 1.0, 'bath': 1.0, 'will': 1.0, 'house': 1.0, 'off': 1.0, 'knock': 1.0, 'cant': 1.0, 'you': 1.0, 'pieces': 1.0, 'many': 1.0, 'price': 1.0, 'up': 2.0, 'growing': 1.0, 'because': 1.0, 'a': 2.0, 'got': 1.0, 'then': 1.0, 'loved': 1.0, 'they': 1.0, 'makes': 1.0, 'shes': 1.0, 'very': 1.0, 'this': 1.0, 'come': 2.0, 'durable': 1.0, 'in': 3.0, 'which': 1.0, 'spend': 1.0, 'big': 1.0, 'nice': 1.0, 'stars': 1.0, 'for': 4.0, 'love': 2.0, 'time': 1.0, '4th': 1.0, 'expecting': 1.0, 'was': 2.0, 'my': 1.0, 'i': 4.0, 'daughters': 1.0, 'developed': 1.0, 'not': 1.0, 'kinda': 1.0, 'them': 1.0, 'tote': 1.0, 'clean': 1.0, 'she': 1.0, 'tub': 1.0, 'get': 1.0, 'easy': 1.0, 'anyways': 1.0, 'but': 1.0, 'can': 1.0, 'flimsy': 1.0, 'carry': 1.0, 'more': 1.0, 'dinosaurs': 3.0, 'around': 2.0, 'too': 1.0, 'and': 5.0, 'bday': 1.0, 'the': 7.0, 'any': 1.0, 'as': 1.0, 'all': 1.0, 'seem': 1.0, 'probably': 1.0, 'sizes': 1.0, 'mat': 2.0, 'really': 1.0, 'what': 1.0}
Word element => {'toy': 1.0, 'round': 1.0, 'an': 1.0, 'faster': 1.0, 'was': 1.0, 'bigger': 1.0, 'who': 2.0, 'ate': 1.0, 'what': 1.0, 'learn': 1.0, 'atmosphere': 1.0, 'species': 1.0, 'life': 1.0, 'real': 1.0, 'imagination': 1.0, 'swim': 1.0, 'also': 1.0, 'the': 5.0, 'many': 1.0, 'with': 3.0, 'awsome': 1.0, 'bored': 1.0, 'could': 1.0, 's': 1.0, 'set': 1.0, 'of': 3.0, 'endless': 1.0, 'there': 1.0, 'fun': 2.0, 'about': 1.0, 'no': 1.0, 'add': 1.0, 'some': 1.0, 'playset': 1.0, 'this': 3.0, 'kids': 1.0, 'play': 1.0, 'have': 1.0, 'can': 2.0, 'favorite': 2.0, 'toys': 1.0, 'dino': 2.0, 'get': 1.0, 'they': 4.0, 'your': 2.0, 'etc': 2.0, 'out': 1.0, 'child': 1.0, 'how': 1.0, 'or': 1.0, 'young': 1.0, 'old': 1.0, 'accessories': 1.0, 'if': 1.0, 'which': 1.0, 'like': 1.0, 'is': 5.0, 'dinosaurs': 1.0, 'so': 1.0, 'different': 2.0, 'varities': 1.0, 'all': 1.0, 'grow': 1.0, 'to': 2.0, 'fly': 1.0, 'its': 1.0, 'choose': 2.0, 'that': 1.0, 'hard': 1.0, 'matter': 1.0, 'from': 1.0}
Word element => {'happy': 1.0, 'was': 1.0, 'still': 1.0, 'be': 1.0, 'gonna': 1.0, 'were': 1.0, 'my': 2.0, 'loved': 1.0, 'little': 1.0, 'son': 2.0, 'but': 1.0, 'thought': 1.0, 'than': 1.0, 'smaller': 1.0, 'they': 2.0, 're': 1.0, 'them': 1.0, 'a': 1.0, 'i': 1.0}
Word element => {'currently': 1.0, 'amazon': 1.0, 'something': 1.0, '60': 1.0, 'less': 1.0, 'much': 1.0, 'purchased': 1.0, 'like': 1.0, 'this': 1.0, 'but': 1.0, 'set': 1.0, 'of': 3.0, 'there': 1.0, 'for': 3.0, 'scene': 1.0, 'selling': 1.0, 'one': 1.0, 'great': 1.0, 'the': 4.0, 'my': 1.0, 'room': 1.0, 'buy': 1.0, 'day': 2.0, 'every': 1.0, 'plenty': 1.0, 'not': 1.0, 'lasting': 1.0, 'no': 1.0, 'about': 1.0, 'reason': 1.0, 'theres': 1.0, 'son': 1.0, 'cars': 1.0, 'kind': 1.0, 'tub': 1.0, 'world': 1.0, 'elsewhere': 1.0, 'to': 3.0, 'more': 1.0, 'is': 3.0, 'comes': 1.0, 'that': 1.0, 'loves': 1.0, 'just': 1.0, 'dino': 1.0, 'things': 1.0, 'keep': 1.0, 's': 1.0, 'we': 2.0, 'a': 2.0, 'bunch': 1.0, 'others': 1.0, 'storing': 1.0, 'add': 1.0, 'blocks': 1.0, 'play': 2.0, 'and': 2.0, 'small': 1.0, 'in': 1.0, 'tothe': 1.0, 'mat': 1.0, 'it': 2.0, 'creative': 1.0, 'with': 1.0, 'thise': 1.0, 'joke': 1.0, 'than': 1.0, 'maybe': 1.0}
Word element => {'old': 1.0, 'a': 1.0, 'durable': 1.0, 'looking': 1.0, 'super': 1.0, 'year': 1.0, 'almost': 1.0, 'd': 1.0, '4': 1.0, 'i': 1.0, 'desired': 1.0, 'be': 1.0, 'have': 1.0, 'leave': 1.0, 'come': 1.0, 'however': 2.0, 'mat': 2.0, 'son': 1.0, 'storage': 1.0, 'this': 2.0, 'hard': 1.0, 'much': 1.0, 'only': 1.0, 'it': 3.0, 'with': 4.0, 'smudging': 1.0, 'fixed': 1.0, 'all': 1.0, 'to': 3.0, 'was': 1.0, 'overall': 1.0, 'bin': 1.0, 'husband': 1.0, 'by': 1.0, 'that': 3.0, 'the': 8.0, 'great': 2.0, 'are': 3.0, 'about': 1.0, 'rather': 1.0, 'of': 1.0, 'names': 1.0, 'lightly': 1.0, 'good': 1.0, 'read': 1.0, 'very': 3.0, 'comes': 1.0, 'is': 4.0, 'dinosaurs': 2.0, 'complaint': 1.0, 'quality': 1.0, 'them': 2.0, 'not': 2.0, 'minor': 1.0, 'my': 2.0, 'at': 1.0, 'rocks': 1.0, 'some': 2.0, 'pernament': 1.0, 'contrast': 1.0, 'on': 1.0, 'greatly': 1.0, 'enjoying': 1.0, 'too': 1.0, 'and': 3.0, 'then': 1.0, 'whiping': 1.0, 'acetone': 1.0, 'create': 1.0, 'but': 1.0, 'letters': 1.0, 'product': 1.0, 'cheap': 1.0, 'love': 1.0, 'off': 1.0, 'volcanos': 1.0, 'marker': 1.0, 'trees': 1.0}
Word element => {'so': 1.0, 'face': 1.0, 'smile': 1.0, 'big': 1.0, 'playing': 1.0, 'picture': 1.0, 'think': 1.0, 'loves': 1.0, 'of': 1.0, 'met': 1.0, 've': 1.0, 'him': 1.0, 'never': 1.0, 'little': 1.0, 'because': 1.0, 'birthday': 1.0, 'dinosaurs': 1.0, 'a': 3.0, 'liked': 1.0, 'for': 1.0, 'was': 1.0, 'had': 2.0, 'wish': 1.0, 'purchased': 1.0, 'took': 1.0, 'i': 3.0, 'cancer': 1.0, 'boy': 1.0, 'has': 1.0, 'with': 1.0, 'this': 1.0, 'he': 5.0, 'it': 4.0, 'on': 2.0, 'his': 4.0, 'mom': 1.0, 'list': 1.0, 'and': 3.0}
Word element => {'slightly': 1.0, 'of': 1.0, 'quality': 1.0, 'but': 1.0, 'maybe': 1.0, 'plastic': 2.0, 'expecting': 1.0, 'to': 1.0, 'was': 1.0, 'too': 1.0, 'way': 1.0, 'bag': 1.0, 'came': 1.0, 'olds': 1.0, 'for': 1.0, '3': 1.0, 'year': 1.0, 'son': 1.0, 'is': 4.0, 'my': 1.0, 'the': 5.0, 'great': 1.0, 'thicker': 2.0, 'a': 3.0, 'be': 1.0, 'product': 1.0, 'with': 1.0, 'it': 4.0, 'this': 1.0, 'or': 1.0, 'loves': 1.0, 'play': 1.0, 'small': 1.0, 'however': 1.0, 'thing': 1.0, 'not': 1.0, 'i': 2.0, 'did': 1.0, 'like': 1.0, 'about': 1.0, 'mat': 3.0}
Word element => {'use': 1.0, 'rest': 1.0, 'attention': 1.0, 'not': 2.0, 'durable': 1.0, 'playmat': 1.0, 'daily': 1.0, 'an': 1.0, 'less': 1.0, 'played': 1.0, 'are': 2.0, 'toys': 1.0, 'somewhere': 1.0, 'when': 1.0, 'along': 1.0, 'choice': 1.0, 'once': 2.0, 'of': 3.0, 'bed': 1.0, 'they': 2.0, 'compared': 1.0, 'later': 1.0, 'is': 3.0, 'dinosaurs': 3.0, 'thing': 1.0, 'about': 2.0, 'toy': 2.0, 'month': 2.0, 'it': 2.0, 'torn': 1.0, 'ours': 1.0, 'christmas': 1.0, 'this': 2.0, 'children': 1.0, 'with': 4.0, 'last': 1.0, 'often': 1.0, 'my': 1.0, 're': 2.0, 'constant': 1.0, 'now': 2.0, 'but': 2.0, 'most': 1.0, '2': 1.0, 'the': 7.0, 'years': 1.0, '2001': 1.0, 'constantly': 1.0, 'bring': 1.0, '4': 1.0, 'almost': 1.0, 'year': 2.0, 'for': 2.0, 'one': 2.0, 'got': 2.0, 'gets': 1.0, 'visiting': 1.0, 'wants': 1.0, 'still': 1.0, 'old': 1.0, 'and': 2.0, 'play': 2.0, 'go': 1.0, 'a': 3.0, 's': 2.0, 'we': 2.0, 'set': 2.0, 'up': 1.0, 'plastic': 1.0, 'picking': 1.0, 'yet': 1.0, 'worth': 1.0, 'or': 3.0, 'our': 2.0, 'to': 3.0, 'sleep': 1.0, 'definitely': 1.0, 'looking': 1.0, 'because': 1.0, 'somebody': 1.0, 'in': 4.0, 'moneys': 1.0, 'car': 2.0, 'them': 1.0, 'sandbox': 1.0, 'their': 2.0}
Word element => {'worthless': 1.0, 'other': 1.0, 'this': 1.0, 'very': 1.0, 'engaging': 1.0, 'decent': 1.0, 'cool': 1.0, 'toys': 1.0, 'of': 1.0, 'set': 1.0, 'reasons': 1.0, 'box': 1.0, 'not': 1.0, 'is': 3.0, 'than': 1.0, 'the': 3.0, 'a': 1.0, 'dinosaurs': 1.0, 'look': 1.0, 'for': 1.0, 'storage': 1.0, 'good': 1.0, 'obvious': 1.0, 'mat': 1.0}
Word element => {'again': 1.0, 'purchase': 1.0, 'would': 1.0, 'time': 1.0, '3rd': 1.0, 'his': 1.0, 'for': 2.0, 'birthday': 1.0, 'hours': 1.0, 'nephew': 1.0, 'of': 1.0, 'bought': 1.0, 'product': 1.0, 'loves': 2.0, 'very': 1.0, 'my': 1.0, 'i': 2.0, 'durable': 1.0, 'he': 2.0, 'this': 1.0, 'it': 4.0, 'mom': 1.0, 'dad': 1.0, 'is': 1.0, 'play': 1.0, 'tell': 1.0, 'and': 2.0, 'me': 1.0}
Word element => {'overall': 1.0, 'satisfied': 1.0, 'quality': 1.0, 'very': 1.0, 'we': 1.0, 'this': 1.0, 'with': 1.0, 'is': 1.0, 'an': 1.0, 'awesome': 1.0, 'complete': 1.0, 'were': 1.0, 'great': 1.0, 'set': 1.0, 'of': 2.0, 'toys': 2.0, 'dinosaurs': 1.0, 'price': 1.0}
Word element => {'dinosaurs': 1.0, 'of': 1.0, 'plenty': 1.0, 'storage': 1.0, 'a': 1.0, 'more': 1.0, 'my': 1.0, '4': 1.0, 'for': 1.0, 'year': 1.0, 'box': 1.0, 'set': 1.0, 'room': 1.0, 'with': 2.0, 'old': 1.0, 'great': 1.0, 'it': 1.0, 'grandson': 1.0, 'loved': 1.0, 'this': 1.0, 'comes': 1.0}
Word element => {'matters': 1.0, 'so': 1.0, 'pretty': 1.0, 'is': 2.0, 'play': 1.0, 'set': 1.0, 'time': 1.0, 'son': 2.0, 'my': 2.0, 'a': 1.0, 'like': 1.0, 'the': 2.0, 'great': 1.0, 'this': 1.0, 'with': 1.0, 'only': 1.0, 'it': 4.0, 'tiny': 1.0, 'way': 1.0, 'all': 1.0, 'likes': 1.0, 'thing': 1.0, 'had': 1.0, 'was': 2.0, 'guess': 1.0, 'i': 3.0, 'didnt': 1.0, 'larger': 1.0, 'about': 1.0, 'still': 1.0, 'mat': 1.0, 'that': 2.0, 'thought': 1.0}
Word element => {'set': 1.0, 'highly': 1.0, 'would': 1.0, 'dinosaurs': 1.0, 'surprise': 1.0, 'live': 1.0, 'them': 1.0, 'to': 4.0, 'recommend': 1.0, 'was': 1.0, 'i': 3.0, 'according': 1.0, 'got': 1.0, 'loved': 1.0, 'then': 1.0, 'this': 2.0, 'sister': 1.0, 'it': 4.0, 'christmas': 1.0, 'in': 2.0, 'liked': 1.0, 'since': 1.0, 'a': 1.0, 'and': 5.0, 'east': 1.0, 'the': 3.0, 'nephews': 1.0, 'their': 1.0, 'ordering': 1.0, 'absolutely': 1.0, 'they': 5.0, 'time': 1.0, 'ended': 1.0, 'west': 1.0, 'coast': 2.0, 'shipped': 1.0, 'immediately': 1.0, 'for': 2.0, 'actually': 1.0, 'received': 1.0, 'right': 1.0, 'on': 1.0, 'my': 2.0, 'fact': 1.0, 'inside': 1.0, 'box': 1.0, 'that': 1.0, 'saw': 1.0, 'idea': 1.0, 'huge': 1.0, 'no': 1.0, 'ship': 1.0, 'had': 1.0, 'what': 1.0}
Word element => {'buy': 1.0, 'up': 1.0, 'light': 1.0, 'eyes': 1.0, 'life': 1.0, 'in': 1.0, 'really': 1.0, 'had': 2.0, 'on': 1.0, 'pieces': 1.0, 'not': 1.0, 'mouth': 1.0, 'set': 2.0, 'immediately': 1.0, 'uncles': 1.0, '34': 2.0, 'police': 1.0, 'tell': 1.0, 'enough': 1.0, 'can': 1.0, '2': 2.0, 'but': 1.0, 'were': 4.0, 'grand': 1.0, 'your': 1.0, 'words': 1.0, 'feel': 1.0, 'out': 2.0, 'presents': 1.0, 'table': 1.0, 'yr': 1.0, 'his': 2.0, 'aunts': 1.0, 'rave': 1.0, 'my': 1.0, 'a': 1.0, 'of': 4.0, 'the': 11.0, 'party': 3.0, 'place': 1.0, 'pizza': 1.0, 'to': 6.0, 'as': 2.0, 'hopeful': 1.0, 'how': 1.0, 'about': 1.0, 'walk': 1.0, 'it': 5.0, 'this': 1.0, 'old': 1.0, 'i': 6.0, 'birthday': 1.0, 'children': 1.0, 'held': 1.0, 'he': 1.0, 'nephew': 1.0, 'under': 1.0, 'gave': 1.0, 'that': 2.0, 'at': 1.0, '12': 1.0, 'who': 2.0, 'repeatedly': 1.0, 'was': 2.0, 'and': 5.0, 'whoa': 2.0, 'dinosaurs': 1.0, 'local': 1.0, 'you': 1.0, 'where': 2.0, 'for': 1.0, 'child': 2.0, 'part': 1.0, 'mothers': 1.0, 'from': 2.0, 'many': 1.0, 'started': 1.0, 'weren': 1.0, 'with': 2.0, 'ages': 1.0, 'tables': 1.0, 'playing': 1.0, 'other': 2.0, 'bought': 1.0, 'much': 1.0, 't': 2.0, 'cost': 1.0, 'spread': 1.0, 'some': 2.0, 'see': 1.0, 'tried': 1.0, 'away': 1.0, 'did': 1.0, 'first': 1.0, 'bad': 1.0, 'wow': 1.0, 'grandmothers': 1.0, 'friends': 1.0, 'just': 2.0, 'their': 1.0, 'enthralling': 1.0, 'sadly': 1.0, 'every': 1.0, 'if': 1.0, 'want': 1.0}
Word element => {'recommend': 1.0, 'would': 1.0, 'go': 1.0, 'imaginations': 1.0, 'let': 1.0, 'dinosaurs': 1.0, 'obsessed': 1.0, 'the': 1.0, '2': 1.0, 'is': 1.0, 'wild': 1.0, 'loves': 1.0, 'i': 1.0, 'old': 1.0, 'to': 1.0, 'year': 1.0, '3': 1.0, '1': 1.0, 'and': 2.0, 'definitely': 1.0, 'dinosaur': 1.0, 'my': 1.0, 'own': 1.0, 'set': 1.0, 'allows': 1.0, 'this': 1.0, 'it': 1.0, 'them': 1.0, 'create': 1.0, 'their': 2.0, 'little': 1.0, 'for': 1.0, 'valley': 1.0}
Word element => {'storage': 1.0, 'the': 1.0, 'help': 1.0, 'has': 1.0, 'keep': 1.0, '4': 1.0, 'big': 1.0, 'decided': 1.0, 'yrs': 1.0, 's': 1.0, 'hit': 1.0, 'and': 2.0, 'bags': 1.0, 'gift': 1.0, 'a': 2.0, 'mom': 1.0, 'with': 1.0, 'he': 1.0, 'it': 1.0, 'this': 1.0, 'loves': 1.0, 'old': 1.0, 'was': 2.0, 'to': 2.0, 'his': 1.0, 'in': 1.0, 'them': 2.0, 'ziplock': 1.0}
Word element => {'dinosaurs': 1.0, 'kid': 1.0, 'what': 1.0, 'doesn': 1.0, 'a': 1.0, 'it': 1.0, 'with': 1.0, 'my': 1.0, 'likes': 1.0, 't': 1.0, 'grandson': 1.0, 'this': 1.0, 'like': 1.0, 'very': 1.0, 'played': 1.0, 'toy': 1.0, 'much': 1.0, 'he': 1.0, 'has': 1.0, 'lot': 1.0, 'already': 1.0}
Word element => {'easily': 1.0, 'rips': 1.0, 'little': 1.0, 'thing': 1.0, 'kids': 1.0, 'map': 1.0, 'to': 2.0, 'cheap': 1.0, 'i': 1.0, 'does': 1.0, 'learning': 1.0, 'young': 1.0, 'for': 1.0, 'love': 1.0, 'learn': 1.0, 'tool': 1.0, 'about': 1.0, 'change': 1.0, 'is': 3.0, 'very': 1.0, 'son': 1.0, 'a': 1.0, 'dinosaurs': 1.0, 'and': 2.0, 'it': 2.0, 'this': 1.0, 'only': 1.0, 'so': 1.0, 'my': 1.0, 'great': 1.0, 'the': 2.0}
Word element => {'him': 1.0, 'special': 1.0, 'dinosaurs': 1.0, 'new': 1.0, 'doesn': 1.0, 'really': 1.0, 'want': 1.0, 'about': 1.0, 'grandson': 1.0, 't': 1.0, 'my': 1.0, 'are': 1.0, 'his': 2.0, 'even': 1.0, 'was': 1.0, 'to': 2.0, 'share': 1.0, 'little': 1.0, 'because': 1.0, 'excited': 1.0, 'he': 1.0, 'with': 1.0, 'sister': 1.0, 'they': 1.0, 'so': 1.0}
Word element => {'purchase': 1.0, 'i': 1.0, 'money': 1.0, 'for': 1.0, 'weight': 1.0, 'light': 1.0, 'that': 1.0, 'are': 1.0, 'almost': 1.0, 'plastic': 3.0, 'and': 3.0, 'thin': 1.0, 'like': 2.0, 'as': 1.0, 'very': 2.0, 'is': 3.0, 'the': 5.0, 'made': 2.0, 'was': 1.0, 'look': 1.0, 'in': 1.0, 'with': 2.0, 'it': 1.0, 'mat': 2.0, 'makes': 1.0, 'pattern': 1.0, 'large': 1.0, 'my': 1.0, 'happy': 1.0, 'reality': 1.0, 'not': 3.0, 'even': 1.0, 'printed': 1.0, 'picture': 1.0, 'same': 1.0, 'of': 1.0, 'detailed': 1.0, 'dinosaurs': 1.0, 'wrap': 1.0, 'well': 2.0, 'a': 1.0}
Word element => {'decilucion': 1.0, 'mira': 1.0, 'son': 1.0, 'es': 2.0, 'no': 1.0, 'que': 3.0, 'queria': 1.0, 'dinosaurios': 1.0, 'mas': 3.0, 'ama': 1.0, 'este': 1.0, 'hijo': 1.0, 'el': 1.0, 'se': 2.0, 'unos': 1.0, 'comprarle': 1.0, 'decidi': 1.0, 'set': 1.0, 'miran': 1.0, 'asi': 1.0, 'lo': 3.0, 'mi': 2.0, 'malo': 1.0, 'para': 1.0, 'en': 3.0, 'esque': 1.0, 'una': 1.0, 'la': 2.0, 'porque': 1.0, 'foto': 2.0, 'pequenos': 1.0, 'grandes': 2.0, 'cuando': 1.0, 'los': 1.0, 'realidad': 1.0}
Word element => {'not': 1.0, 'recommend': 1.0, 'him': 1.0, 'give': 1.0, 'want': 1.0, 'even': 1.0, 'price': 1.0, 'don': 2.0, 'small': 1.0, 'dinosaurs': 1.0, 'who': 1.0, 'cousin': 1.0, 'how': 1.0, 'lil': 1.0, 'for': 1.0, 'it': 3.0, 'excited': 1.0, 'with': 1.0, 'this': 2.0, 'loves': 1.0, 'my': 1.0, 'worth': 1.0, 'find': 1.0, 't': 2.0, 'ones': 1.0, 'the': 2.0, 'bought': 1.0, 'disappointed': 1.0, 'i': 6.0, 'very': 1.0, 'now': 1.0, 'was': 3.0, 'to': 3.0, 'but': 1.0, 'package': 1.0, 'got': 1.0}
Word element => {'gift': 1.0, 'a': 1.0, 'giving': 1.0, 'again': 1.0, 'buy': 1.0, 'would': 1.0, 'last': 1.0, 'out': 1.0, 'first': 1.0, 'are': 1.0, 'ago': 1.0, 'three': 1.0, 'purchased': 1.0, 'since': 1.0, 'day': 1.0, 'every': 1.0, 'dare': 1.0, 'i': 2.0, 'our': 1.0, 'rather': 1.0, 'apart': 1.0, 'play': 2.0, 'who': 1.0, 'on': 3.0, 'bath': 1.0, 'plastic': 1.0, 'he': 1.0, 'palm': 1.0, 'their': 2.0, 'opportunity': 1.0, 'bed': 1.0, 'tell': 1.0, 'scenery': 1.0, 'version': 1.0, 'rip': 1.0, 'managed': 1.0, 'brother': 1.0, 'for': 4.0, 'year': 1.0, 'her': 1.0, 'of': 4.0, 'the': 15.0, 'myself': 1.0, 'sorts': 1.0, 'we': 1.0, 'then': 1.0, 'real': 1.0, 'old': 1.0, 'fact': 1.0, 'tear': 1.0, 'or': 1.0, 'got': 1.0, 'daughter': 1.0, 'when': 1.0, 'they': 3.0, 'gives': 1.0, 'years': 2.0, 'bought': 1.0, 'too': 2.0, 'one': 2.0, 'playing': 1.0, 'jumping': 1.0, 'all': 3.0, 'almost': 1.0, 'now': 1.0, 'had': 1.0, 'stool': 1.0, 'was': 1.0, 'dolls': 1.0, '2': 2.0, 'names': 2.0, 'but': 1.0, 'back': 1.0, 'most': 1.0, 'look': 1.0, 'is': 2.0, 'and': 8.0, 'dinosaurs': 3.0, 'she': 2.0, 'it': 5.0, 'some': 1.0, 'played': 2.0, 'this': 2.0, 'with': 4.0, 'as': 2.0, 'cracked': 1.0, 'volcanoes': 1.0, 'home': 1.0, 'by': 1.0, 'off': 1.0, 'to': 5.0, 'straight': 1.0, 'have': 2.0, 'survived': 1.0, 'also': 2.0, 'arguing': 1.0, 'mishandling': 1.0, 'rough': 1.0, 'pretend': 1.0, 'miraculously': 1.0, 'whole': 1.0, 'say': 1.0, 'belly': 1.0, 'considering': 1.0, 'that': 2.0, 'been': 1.0, 'trees': 1.0, 'toy': 3.0, 'used': 2.0, 'step': 1.0, 'printed': 1.0, 'forward': 1.0, 'not': 1.0, 'my': 1.0, 'me': 1.0, 'easy': 1.0, 'read': 1.0, 'has': 2.0, 'them': 3.0, 'learn': 1.0, 'seat': 1.0, 'bucket': 1.0, 'in': 3.0}
Word element => {'worth': 1.0, 'loves': 1.0, 'product': 1.0, 'wait': 1.0, 'little': 1.0, 'edges': 1.0, 'sharp': 1.0, 'its': 1.0, 'with': 1.0, 'reorder': 1.0, 'bin': 1.0, 'away': 1.0, 'had': 1.0, 'sign': 1.0, 'return': 2.0, 'up': 1.0, 'want': 1.0, '3': 1.0, 'on': 2.0, 'some': 1.0, 'like': 1.0, 'more': 1.0, 'say': 1.0, 'figures': 1.0, 'printed': 1.0, 'son': 2.0, 'if': 1.0, 'still': 1.0, 'are': 1.0, 'mostly': 1.0, 'shattered': 1.0, 'were': 1.0, 'recommend': 2.0, 'was': 6.0, 'and': 7.0, 're': 1.0, 'obscure': 1.0, 'loved': 1.0, 'enough': 2.0, 'off': 1.0, 'me': 1.0, 'my': 2.0, 't': 3.0, 'a': 8.0, 'giving': 1.0, 'advance': 1.0, 's': 1.0, 'throw': 1.0, 'great': 2.0, 'of': 4.0, 'the': 15.0, 'cardboard': 1.0, 'deal': 1.0, 'as': 2.0, 'to': 7.0, 'bottoms': 1.0, 'would': 4.0, 'birthday': 1.0, 'he': 3.0, 'plastic': 1.0, 'how': 1.0, 'this': 3.0, 'know': 1.0, 'scored': 1.0, 'found': 1.0, 'him': 1.0, 'it': 12.0, 'i': 3.0, 'etc': 1.0, 'for': 2.0, 'triceratops': 1.0, 'dinosaur': 1.0, 'have': 3.0, 'definitely': 1.0, 'inconvenient': 1.0, 'toy': 4.0, 'able': 1.0, 'you': 2.0, 'condition': 2.0, 'arrived': 1.0, 'not': 2.0, 'itself': 1.0, 'ordering': 1.0, 'container': 1.0, 'because': 2.0, 'that': 4.0, 'shipping': 1.0, 'box': 3.0, 'talk': 1.0, 'into': 2.0, 'new': 1.0, 'time': 2.0, 'so': 3.0, 'big': 1.0, 'check': 1.0, 'is': 3.0, 'handle': 2.0, 'out': 1.0, 'before': 1.0, 'don': 1.0, 'opening': 1.0, 'didn': 2.0, 'after': 1.0, 'one': 1.0, 'broken': 2.0, 'looked': 1.0, 'open': 1.0, 'hard': 1.0, 'part': 1.0, 'give': 1.0, 'perfectly': 1.0, 'we': 2.0, 'fine': 1.0, 'which': 2.0, 'gift': 2.0, 'side': 1.0, 'made': 1.0, 'also': 1.0, 'missing': 1.0, 'in': 3.0, 'tree': 1.0, 'names': 2.0, 'but': 2.0}
Word element => {'great': 2.0, 'from': 1.0, 'house': 1.0, 'the': 1.0, 'caterpillar': 1.0, 'his': 1.0, 'older': 1.0, 'with': 2.0, 'in': 2.0, 'apart': 1.0, 'tigger': 2.0, 'it': 3.0, 'fell': 1.0, 'month': 1.0, 'uncommon': 1.0, 'an': 1.0, 'but': 1.0, 'old': 1.0, 'rolling': 1.0, 'version': 1.0, 'know': 1.0, 'not': 1.0, 'carrying': 1.0, 'price': 1.0, '34': 2.0, 'of': 2.0, 'that': 1.0, 'around': 1.0, 'is': 1.0, 'mode': 1.0, 'amazon': 1.0, 'see': 1.0, 'tore': 1.0, 'kitten': 1.0, 'at': 1.0, 'i': 3.0, 'rattle': 2.0, 'two': 1.0, 'one': 1.0, 'stopping': 1.0, '9': 1.0, 'play': 1.0, 'and': 2.0, 'over': 1.0, 'nearly': 1.0, 'ordering': 1.0, 'time': 2.0, 'so': 1.0, 'when': 1.0, 'this': 3.0, 'found': 1.0, 'on': 1.0, 'for': 1.0, 'product': 1.0, 'love': 1.0, 'com': 1.0, 'jumped': 1.0, 'baby': 1.0, 'them': 1.0, 'a': 2.0, 's': 1.0, 'our': 1.0, 'to': 2.0}
Word element => {'if': 1.0, 'though': 1.0, 'big': 1.0, 'for': 1.0, 'spring': 1.0, 'probably': 1.0, 'like': 1.0, 'still': 1.0, 'would': 2.0, 'buy': 1.0, 'looking': 1.0, 'own': 1.0, 'puny': 1.0, 'looked': 1.0, 'disappointing': 1.0, 'baby': 1.0, 'cute': 1.0, 'ended': 1.0, 'on': 1.0, 'think': 1.0, 'make': 1.0, 'too': 1.0, 'crinkle': 1.0, 'and': 2.0, 'get': 1.0, 'the': 2.0, 'this': 2.0, 'it': 10.0, 'next': 1.0, 'babies': 1.0, 'that': 2.0, 'were': 1.0, 'time': 1.0, 'so': 1.0, 'smaller': 1.0, 'rattle': 1.0, 'i': 5.0, 'give': 1.0, 'not': 1.0, 'was': 3.0, 'all': 1.0, 'as': 1.0, 'to': 4.0, 'toy': 1.0, 'expected': 1.0, 'much': 1.0, 'giving': 1.0, 'be': 1.0, 'one': 1.0, 'bought': 1.0, 'reason': 1.0, 'in': 1.0, 'because': 1.0, 'than': 1.0, 'does': 1.0, 'having': 1.0, 'another': 1.0, 'my': 1.0, 'party': 1.0, 'goodie': 1.0, 'bag': 1.0, 'main': 1.0, 'at': 2.0, 'daughter': 1.0, 'could': 1.0, 't': 1.0, 'we': 3.0, 'a': 3.0, 's': 4.0, 'birthday': 1.0, 'gift': 1.0, 'don': 1.0, 'up': 1.0}
Word element => {'ones': 1.0, 'little': 1.0, 'safe': 2.0, 'child': 1.0, 'i': 1.0, 'well': 1.0, 'actually': 1.0, 'buy': 1.0, 'toys': 1.0, 'for': 2.0, 'are': 2.0, 'chihuahuas': 1.0, 'my': 2.0, 'as': 2.0, 'since': 1.0, 'these': 1.0, 'they': 2.0}
Word element => {'alpaca': 1.0, 'by': 1.0, 'recently': 1.0, 'replaced': 1.0, 'friends': 1.0, 'nicknamed': 1.0, 'him': 1.0, 'the': 1.0, 'we': 1.0, 'object': 1.0, 'tinkle': 1.0, 'my': 2.0, 'unfortunately': 1.0, 'life': 1.0, 'better': 1.0, 'changed': 1.0, 'for': 1.0, 'mr': 2.0, 'his': 1.0, 'relationship': 1.0, 'he': 1.0, 'this': 1.0, 'with': 1.0, 'and': 2.0, 'me': 1.0, 'was': 2.0, 'unbreakable': 1.0}
Word element => {'play': 1.0, 'her': 1.0, 'watch': 1.0, 'has': 1.0, 'toy': 1.0, 'old': 1.0, 'to': 2.0, 'loves': 2.0, 'rattle': 2.0, 'playing': 1.0, 'for': 1.0, 's': 1.0, 'this': 2.0, 'with': 2.0, 'it': 2.0, 'month': 1.0, 'four': 1.0, 'my': 1.0, 'the': 3.0, 'wonderful': 1.0, 'size': 1.0, 'been': 1.0, 'little': 1.0, 'she': 1.0, 'hands': 1.0, 'grasp': 1.0, 'also': 1.0, 'perfect': 1.0, 'sound': 1.0, 'of': 1.0}
Word element => {'lovey': 1.0, 'favorite': 1.0, 'his': 1.0, 'still': 1.0, 'is': 1.0, 'and': 1.0, 'close': 1.0, 'version': 1.0, 'original': 1.0, 'worn': 1.0, 'purchased': 1.0, 'my': 1.0, 'replace': 1.0, 'the': 1.0, 'one': 1.0, 'for': 1.0, 'to': 2.0, 'had': 1.0, 'item': 1.0, 's': 2.0, 'a': 1.0, 'since': 1.0, 'son': 1.0, 'very': 1.0, 'faded': 1.0, 'birth': 1.0, 'this': 1.0, 'he': 1.0, 'it': 1.0}
Word element => {'you': 1.0, 'too': 1.0, 'kids': 1.0, 'glad': 1.0, 'grand': 1.0, 'pacifier': 1.0, 'nuk': 1.0, 'find': 1.0, 'my': 2.0, 'were': 2.0, 'raised': 1.0, 'carrying': 1.0, 'to': 1.0, 'so': 1.0, 'latex': 1.0, 'hard': 1.0, 'son': 1.0, 'really': 1.0, 'on': 1.0, 'dislikes': 1.0, 'clear': 1.0, 'these': 2.0, 'the': 1.0, 'ones': 1.0, 'and': 1.0}
Word element => {'worth': 1.0, 'but': 1.0, 'were': 1.0, 'wish': 1.0, 'babies': 1.0, 'shape': 1.0, 'and': 2.0, 'best': 1.0, '3': 1.0, 'i': 2.0, 'newborns': 1.0, 'search': 1.0, 'available': 1.0, 'of': 2.0, 'around': 1.0, 'good': 1.0, 'fed': 1.0, 'size': 1.0, 'am': 1.0, 'grandmother': 1.0, 'pacifier': 1.0, 'accepted': 1.0, 'is': 3.0, 'for': 1.0, 'most': 3.0, 'more': 1.0, 'these': 1.0, 'mother': 1.0, '2': 1.0, 'the': 2.0, 'natural': 1.0, 'breast': 1.0, '4': 1.0, 'months': 1.0, 'latex': 1.0, 'nuk': 1.0, 'easily': 1.0, 'by': 1.0}
Word element => {'described': 1.0, 'what': 1.0, 'receive': 1.0, 'was': 1.0, 'to': 1.0, 'disappointed': 1.0, 'am': 1.0, 'binky': 1.0, 'a': 1.0, 'or': 2.0, 'using': 1.0, 'nuks': 1.0, 'i': 3.0, 'white': 1.0, 'be': 1.0, 'says': 1.0, 'clearly': 1.0, 'and': 1.0, 'not': 1.0, 'description': 1.0, 'very': 1.0, 'pink': 2.0, 'son': 1.0, 'that': 1.0, 'my': 1.0, 'but': 1.0, 'will': 1.0, 'purple': 1.0, 'blue': 1.0, 'don': 1.0, 'received': 1.0, 'red': 1.0, 'the': 2.0, 't': 1.0, 'really': 1.0, 'mind': 1.0}
Word element => {'sanitizer': 1.0, 'in': 1.0, 'bottle': 1.0, 'or': 1.0, 'just': 1.0, 'easy': 1.0, 'the': 1.0, 'my': 1.0, 'clean': 1.0, 'baby': 1.0, 'every': 1.0, 'nuk': 1.0, 'throw': 1.0, 'is': 1.0, 'them': 1.0, 'pacy': 1.0, 'complaints': 1.0, 'a': 1.0, 'no': 1.0, 'good': 1.0, 'to': 1.0, 'product': 1.0, 'takes': 1.0}
Word element => {'sticky': 1.0, 'like': 1.0, 'stretch': 1.0, 'if': 1.0, 'down': 1.0, 'longer': 1.0, '8': 1.0, '6': 1.0, 'every': 1.0, 'need': 1.0, 'these': 1.0, 'them': 1.0, 'liking': 1.0, 'keeps': 1.0, 'long': 1.0, 'prefer': 1.0, 'or': 2.0, 'replacing': 1.0, 'don': 1.0, 'other': 1.0, 'mind': 1.0, 'pink': 1.0, 'color': 1.0, 'one': 1.0, 'of': 1.0, 'package': 1.0, 'you': 1.0, 'times': 2.0, '3': 1.0, 'ordered': 1.0, 've': 1.0, 'herself': 1.0, 'that': 1.0, 'weeks': 1.0, 'now': 2.0, 'blue': 1.0, 'gotten': 1.0, 'ever': 1.0, 'becomes': 1.0, 'two': 1.0, 'purple': 1.0, 'i': 2.0, 'old': 1.0, 'bigger': 1.0, 'keep': 1.0, 'this': 2.0, 'try': 1.0, 'do': 1.0, 'only': 1.0, 'taken': 1.0, 'slightly': 1.0, 'size': 2.0, 'the': 5.0, 'can': 1.0, '2': 1.0, 'wears': 1.0, '9': 1.0, 'nipple': 1.0, 'my': 1.0, 'absolutely': 1.0, 'is': 4.0, 'amazon': 1.0, 'store': 1.0, 'month': 1.0, 'it': 4.0, 'she': 4.0, 'settle': 1.0, 'in': 3.0, 'time': 1.0, 'so': 2.0, 'green': 1.0, 'and': 4.0, '1': 1.0, 'will': 1.0, 'me': 1.0, 'latex': 2.0, 'not': 1.0, 'product': 1.0, 'for': 1.0, 'newer': 1.0, 'larger': 1.0, 'silicone': 1.0, 'we': 1.0, 't': 2.0, 'a': 2.0, 'find': 1.0, 'than': 1.0, 'mouth': 1.0, 'binks': 1.0, 'able': 1.0, 'as': 3.0, 'any': 2.0, 'to': 2.0, 'her': 1.0, 'has': 2.0, 'bink': 1.0, 'easier': 1.0}
Word element => {'there': 1.0, 'surprise': 1.0, 'expected': 1.0, 'exactly': 1.0, 'designed': 1.0, 'as': 2.0, 'no': 1.0, 'works': 1.0}
Word element => {'use': 1.0, 'cannot': 1.0, 'which': 1.0, '6': 1.0, '0': 1.0, 'nearly': 1.0, 'my': 1.0, 'were': 1.0, 'that': 1.0, 'insists': 1.0, 'because': 1.0, 'nuks': 1.0, 'came': 1.0, 'month': 1.0, 'bedtime': 1.0, 'pacifiers': 1.0, '18': 1.0, 'the': 1.0, 'these': 1.0, '36': 1.0, 'pacifier': 1.0, 'specifically': 1.0, 'a': 1.0, 'at': 1.0, 'two': 1.0, 'year': 1.0, 'i': 2.0, 'old': 1.0, 'ordered': 1.0, 'still': 1.0, 'months': 1.0, 'on': 1.0}
Word element => {'quality': 1.0, 'how': 1.0, 'say': 1.0, 'can': 1.0, 'since': 1.0, 'have': 1.0, 'purchased': 1.0, 'use': 1.0, 'used': 2.0, 'never': 1.0, 'him': 1.0, 'really': 1.0, 'want': 1.0, 'didn': 1.0, 'one': 1.0, 'using': 1.0, 'to': 3.0, 'much': 1.0, 'of': 1.0, 'up': 1.0, 'ended': 1.0, 'i': 4.0, 'and': 1.0, 'get': 1.0, 'gigantic': 1.0, 'giving': 1.0, 'are': 3.0, 'my': 2.0, 'them': 2.0, 'pacifiers': 2.0, 'ones': 1.0, 't': 2.0, 'the': 3.0, 'these': 2.0, 'they': 1.0, 'just': 1.0, 'not': 2.0, 'because': 1.0, 'bigger': 1.0, 'so': 1.0, 'son': 2.0, 'from': 1.0, 'other': 2.0, 'this': 1.0, 'he': 1.0, 's': 1.0}
Word element => {'m': 1.0, 'overall': 1.0, 'quality': 1.0, 'good': 1.0, 'though': 2.0, 'as': 1.0, 'get': 1.0, 'didn': 1.0, 'anything': 1.0, 'pictured': 1.0, '3': 1.0, 'am': 1.0, 'else': 1.0, 'so': 1.0, 'anymore': 1.0, 'of': 1.0, 'size': 1.0, 'can': 1.0, 'i': 6.0, 'find': 1.0, 'found': 1.0, 'here': 1.0, 'all': 1.0, 'use': 1.0, 'the': 1.0, 't': 3.0, 'happy': 1.0, 'my': 1.0, 'anywhere': 1.0, 'first': 1.0, 'them': 1.0, 'glad': 1.0, 'did': 1.0, 'because': 1.0, 'colors': 1.0, 'baby': 1.0, 'won': 1.0}
Word element => {'bigger': 1.0, 'sturdy': 1.0, 'very': 1.0, 'just': 1.0, 'happen': 1.0, 'no': 1.0, 'was': 1.0, 'there': 1.0, 'weight': 1.0, '60': 1.0, 'this': 2.0, 'wouldn': 1.0, 'i': 3.0, 'my': 1.0, 'said': 1.0, 'in': 6.0, 'bought': 1.0, 'floor': 1.0, 'don': 1.0, 'whenever': 1.0, 'height': 1.0, 'get': 2.0, 'only': 1.0, 'do': 2.0, 'and': 1.0, 'it': 5.0, 'month': 1.0, 'legs': 1.0, 'would': 1.0, 'walker': 2.0, '7': 1.0, 'like': 3.0, 'groves': 1.0, 'wasn': 1.0, 'falling': 1.0, 'loved': 1.0, 'expecially': 1.0, 'we': 1.0, 't': 3.0, 'the': 6.0, 'except': 1.0, 'part': 1.0, 'babies': 1.0, 'that': 2.0, 'old': 1.0, 'makes': 1.0, 'reason': 1.0, 'taller': 1.0, 'not': 1.0, 'me': 1.0, 'wrong': 1.0, 'stay': 1.0, 'kept': 1.0, 'so': 1.0, 'he': 4.0, 'walk': 1.0, 'to': 3.0, 'able': 1.0, 'is': 1.0, 'for': 3.0, '95': 1.0, 'but': 2.0}
Word element => {'on': 1.0, 'bit': 1.0, 'a': 1.0, 'her': 1.0, 'loves': 2.0, 'old': 1.0, '5': 1.0, 'to': 2.0, 'mo': 1.0, 'my': 1.0, 'the': 2.0, 'fabulous': 1.0, 'daughter': 1.0, 'in': 1.0, 'carpet': 1.0, 'absolutely': 1.0, 'hard': 1.0, 'this': 1.0, 'it': 2.0, 'follow': 1.0, 'manuever': 1.0, 'is': 2.0, 'car': 1.0, 'me': 1.0, 'and': 1.0, 'speeds': 1.0, 'around': 2.0, 'house': 2.0, 'she': 1.0}
Word element => {'safely': 1.0, 'explore': 1.0, 'own': 1.0, 'his': 1.0, 'ready': 1.0, 'speeds': 1.0, '10': 1.0, 'at': 1.0, 'made': 1.0, 'very': 1.0, 'cheerios': 1.0, 'other': 1.0, 'house': 2.0, 'off': 1.0, 'around': 1.0, 'is': 2.0, 'comes': 1.0, 'that': 1.0, 'like': 1.0, 'really': 2.0, 'also': 1.0, 'was': 2.0, 'hesitant': 1.0, 'cruises': 1.0, 'reviews': 1.0, 'old': 1.0, 'safety': 1.0, 'when': 1.0, 'about': 3.0, 'fact': 1.0, 'my': 2.0, 'mixed': 1.0, 'the': 7.0, 'can': 1.0, '2': 1.0, 'stable': 1.0, 'of': 2.0, 'shower': 1.0, 'this': 3.0, 'it': 5.0, 'walk': 1.0, 'received': 1.0, 'he': 3.0, 'all': 1.0, 'to': 2.0, 'as': 1.0, 'son': 2.0, 'hearing': 1.0, 'or': 1.0, 'let': 2.0, 'walkers': 1.0, 'we': 4.0, 'a': 3.0, 'gift': 1.0, 'first': 1.0, 'walker': 2.0, 'after': 1.0, 'use': 1.0, 'loved': 1.0, 'record': 1.0, 'i': 1.0, '4': 1.0, 'great': 1.0, '1': 1.0, 'and': 4.0, 'on': 2.0, 'put': 2.0, 'him': 2.0, 'in': 1.0, 'love': 1.0, 'for': 1.0, 'time': 1.0, 'toy': 1.0, 'well': 1.0, 'has': 2.0, 'activity': 1.0, 'months': 2.0, 'tray': 2.0, 'just': 1.0, 'variety': 1.0, 'toys': 2.0}
Word element => {'find': 1.0, 'because': 1.0, 'walker': 2.0, 'another': 1.0, 'did': 1.0, 'what': 1.0, 'fall': 1.0, 'say': 1.0, 'is': 3.0, 'off': 2.0, 'the': 5.0, 'take': 1.0, 'good': 1.0, 'her': 1.0, 'used': 1.0, 'wheels': 2.0, 'daughter': 1.0, 'again': 1.0, 'stationary': 1.0, 'you': 1.0, 'when': 2.0, 'only': 1.0, 'mths': 1.0, 'm': 1.0, 'own': 1.0, 'or': 1.0, 'walkers': 1.0, 'them': 1.0, 'started': 1.0, 'not': 1.0, 'functional': 1.0, 'this': 2.0, 'walking': 1.0, 'liking': 1.0, 'can': 2.0, 'but': 2.0, '2': 1.0, 'took': 1.0, 'old': 1.0, 'i': 5.0, 'never': 1.0, 'was': 4.0, 't': 3.0, 'a': 3.0, 'we': 2.0, 'complaint': 1.0, '8': 1.0, 'mostly': 1.0, 'believer': 1.0, 'bought': 1.0, 'be': 1.0, 'all': 1.0, 'to': 3.0, 'our': 1.0, 'would': 2.0, 'something': 1.0, 'that': 3.0, 'product': 1.0, 'for': 2.0, 'which': 1.0, 'using': 1.0, 'it': 3.0, 'she': 3.0, 'think': 1.0, 'make': 1.0, 'on': 1.0, 'at': 1.0, 'entertaining': 1.0, '10': 1.0, 'need': 1.0, '1': 1.0, 'time': 1.0, 'so': 1.0, 'twice': 1.0, 'buy': 1.0, 'definitely': 1.0, 'didn': 1.0, 'moved': 1.0, 'play': 1.0, 'myabe': 1.0, 'purchaed': 1.0, 'in': 1.0, 'don': 2.0, 'anyway': 1.0}
Word element => {'much': 1.0, 'too': 1.0, 'get': 1.0, 'walk': 1.0, 'not': 1.0, 'me': 1.0, 'of': 2.0, 'gives': 1.0, 'dirt': 1.0, 'scattered': 1.0, 'keeps': 1.0, 'w': 2.0, 'walker': 1.0, 'use': 1.0, 'floor': 2.0, 'o': 1.0, 'with': 1.0, 'played': 1.0, 'old': 1.0, '4': 1.0, 'months': 1.0, 'was': 1.0, 'outside': 1.0, 'to': 1.0, 'into': 1.0, 'that': 1.0, 'been': 1.0, 'knowing': 1.0, 'off': 2.0, 'house': 1.0, 'enough': 1.0, 'top': 1.0, 'has': 1.0, 'around': 1.0, 'is': 3.0, 'constantly': 1.0, 'on': 3.0, 'stuff': 1.0, 'great': 1.0, 'the': 7.0, 'my': 1.0, 'security': 1.0, 'zipping': 1.0, 'bulky': 1.0, 'amp': 6.0, 'independence': 1.0, 'arm': 1.0, 'this': 1.0, 'she': 2.0, 'it': 3.0, 'item': 1.0, 'can': 2.0, 'have': 1.0, 'or': 1.0, 'tile': 1.0, 'her': 3.0, 'floors': 1.0, 'sense': 2.0, 'daughter': 1.0, 'rocks': 1.0, 'since': 1.0, 'keep': 1.0, 'at': 1.0, 'a': 2.0, 'we': 1.0, 's': 1.0, 'in': 1.0, 'length': 1.0, 'coffee': 1.0, 'tracked': 1.0, 'from': 2.0, 'harm': 1.0, 'which': 1.0, 'table': 1.0, 'like': 1.0, 'outlets': 1.0, 'noise': 2.0, 'trouble': 1.0, 'maker': 1.0, 'be': 1.0, 'removed': 1.0}
Word element => {'baby': 1.0, 'am': 1.0, '3': 1.0, 'outside': 1.0, '13': 1.0, 'away': 1.0, 'put': 1.0, 'price': 1.0, 'any': 1.0, 'worth': 1.0, 'would': 2.0, 'into': 1.0, 'backwards': 1.0, 'box': 1.0, 'kithchen': 1.0, 'only': 2.0, 'our': 3.0, 'to': 3.0, 'is': 1.0, 'at': 3.0, 'apartment': 1.0, 'go': 2.0, 'could': 5.0, 'finally': 1.0, 'going': 1.0, 'seat': 1.0, 'in': 3.0, 'lived': 1.0, 'loved': 1.0, 'tiny': 1.0, 'a': 3.0, 'small': 1.0, 'for': 2.0, '10': 1.0, 'very': 1.0, 'little': 1.0, 'carpet': 1.0, 'still': 2.0, 'new': 1.0, 'time': 3.0, 'walker': 4.0, 'bothered': 1.0, 'first': 1.0, 'when': 6.0, 'hurt': 1.0, 'bought': 1.0, 'after': 1.0, 'tray': 2.0, '4': 1.0, 'i': 2.0, 'we': 5.0, 'fine': 1.0, 'was': 6.0, 'my': 1.0, 'old': 3.0, 'tried': 1.0, 'problem': 1.0, 'legs': 1.0, 'months': 5.0, 'moved': 1.0, 'and': 9.0, 'this': 3.0, 'he': 12.0, 'adjust': 1.0, 'about': 1.0, 'play': 1.0, 'walk': 2.0, 'star': 1.0, 'right': 1.0, 'spoiler': 1.0, 'house': 1.0, 'rocket': 1.0, 'activity': 2.0, 'the': 14.0, 'of': 1.0, '5': 1.0, 'mostly': 1.0, 'out': 2.0, 'which': 1.0, 'stoppers': 1.0, 'tile': 1.0, 'easily': 1.0, 'everywhere': 1.0, 'or': 1.0, 'watch': 2.0, 'were': 1.0, 'giggling': 1.0, 'whole': 1.0, 'his': 1.0, 'got': 3.0, 'even': 2.0, 'stronger': 1.0, 'on': 1.0, 'played': 1.0, 'never': 3.0, 'had': 1.0, 'with': 3.0, 'saving': 1.0, 'remove': 1.0, 'wash': 1.0, 'next': 1.0, 'has': 1.0, 'always': 2.0, 'worked': 2.0, 'son': 1.0, 'height': 1.0, 'easy': 1.0, 'just': 1.0, 'push': 1.0, 'from': 2.0, 'eat': 1.0, 'front': 1.0, 'bored': 1.0, 'it': 6.0, 'him': 1.0, 'cats': 1.0}
Word element => {'roll': 1.0, 'can': 1.0, 'that': 1.0, 'easily': 1.0, 'frustrated': 1.0, 'and': 2.0, 'daughter': 1.0, 'likes': 1.0, 'my': 1.0, 'the': 2.0, 't': 1.0, 'sounds': 1.0, 'toy': 1.0, 'she': 1.0, 'interaction': 1.0, 'carpet': 1.0, 'on': 1.0, 'is': 1.0, 'with': 1.0, 'but': 1.0, 'trapped': 1.0, 'gets': 1.0}
Word element => {'worth': 1.0, 'well': 1.0, 'great': 1.0, 'toddle': 1.0, 'too': 1.0, 'and': 2.0, 'crawl': 1.0, 'when': 1.0, 'about': 1.0, 'used': 1.0, 'front': 1.0, 'in': 1.0, 'blanket': 1.0, 'rolled': 1.0, 'just': 1.0, 'sturdy': 1.0, 'head': 1.0, 'this': 2.0, 'christmas': 1.0, 'the': 5.0, 'clean': 1.0, 'her': 4.0, 'up': 2.0, 'freedom': 1.0, 'allowed': 1.0, 'bought': 1.0, 'months': 2.0, 'because': 1.0, 'started': 2.0, 'exasaucer': 1.0, 'move': 1.0, 'easy': 1.0, 'get': 1.0, 'chose': 1.0, 'unit': 1.0, 'floor': 1.0, 'couldn': 1.0, 'before': 1.0, 'room': 1.0, 'wait': 1.0, 'for': 2.0, 'hold': 1.0, 'using': 1.0, 'daughter': 1.0, 'around': 2.0, 'of': 1.0, 'instead': 1.0, 'try': 1.0, 'an': 1.0, 'money': 1.0, 'but': 2.0, 's': 1.0, 'propped': 1.0, 'could': 1.0, 't': 2.0, 'we': 4.0, 'a': 4.0, 'gift': 1.0, 'as': 1.0, 'our': 1.0, 'to': 5.0, 'any': 1.0, '8': 1.0, 'longer': 1.0, 'so': 2.0, 'it': 5.0, 'month': 1.0, 'she': 4.0, 'at': 1.0, 'three': 1.0, 'didn': 1.0, 'untul': 1.0, 'out': 1.0, 'feet': 1.0, 'touch': 1.0}
Word element => {'have': 1.0, 'over': 1.0, 'roll': 1.0, 'allow': 1.0, 'wheels': 1.0, 'better': 1.0, 'to': 1.0, 'larger': 1.0, 'the': 1.0, 'my': 1.0, 'love': 1.0, 'older': 1.0, 'it': 2.0, 'groves': 1.0, 'mortar': 1.0, 'we': 1.0, 'twins': 1.0, 'between': 1.0, 'floor': 1.0, 'walker': 1.0, 'of': 1.0, 'kitchen': 1.0, 'stones': 1.0, 'than': 1.0}
Word element => {'effect': 1.0, 'process': 1.0, 'entertained': 1.0, 'colors': 1.0, 'bright': 1.0, 'well': 1.0, 'a': 2.0, '10': 1.0, 'cause': 1.0, 'interactive': 1.0, 'center': 1.0, 'as': 2.0, 'to': 2.0, 'granddaughter': 1.0, 'activity': 1.0, 'wheels': 1.0, 'enjoy': 1.0, 'him': 1.0, 'of': 3.0, 'in': 1.0, 'age': 2.0, 'versitility': 1.0, 'is': 3.0, 'months': 2.0, 'gadgets': 1.0, 'grandson': 1.0, 'environment': 1.0, 'and': 3.0, 'starting': 1.0, 'similar': 1.0, 'learning': 1.0, 'already': 1.0, 'my': 1.0, 'the': 4.0, 'both': 1.0, 'his': 1.0, 'them': 1.0, '6': 1.0, 'teach': 1.0, 'how': 1.0, 'tot': 1.0, 'keep': 1.0, 'influence': 1.0, 'i': 1.0, 'old': 1.0, 'have': 2.0, 'also': 1.0, 'will': 1.0, 'experience': 1.0, 'she': 1.0, 'it': 1.0, 'safe': 1.0}
Word element => {'one': 1.0, 'entertaining': 1.0, 'sturdy': 1.0, 're': 1.0, 'you': 1.0, 'us': 1.0, 'by': 1.0, 'use': 1.0, 'won': 1.0, 'gets': 1.0, 'knows': 1.0, 'chair': 1.0, 'feeding': 1.0, 'as': 1.0, 'upset': 1.0, 'nice': 1.0, 'option': 1.0, 'enough': 1.0, 'isn': 1.0, 'just': 1.0, 'typical': 1.0, 'if': 3.0, 'across': 1.0, 'and': 7.0, 'his': 1.0, 'strong': 2.0, 'any': 1.0, 'probably': 1.0, 'your': 1.0, 'on': 4.0, 'think': 1.0, 'but': 1.0, 'get': 1.0, 'speeds': 1.0, 'months': 1.0, 'money': 1.0, 'bought': 1.0, 'lying': 1.0, '4': 1.0, 'well': 1.0, 'i': 1.0, 'kitchen': 1.0, 'all': 1.0, 'other': 1.0, 's': 2.0, 'a': 5.0, 'we': 3.0, 't': 4.0, 'loves': 1.0, 'been': 1.0, 'that': 3.0, 'month': 2.0, 'it': 9.0, 'walkers': 2.0, 'feature': 2.0, 'or': 2.0, 'saucers': 1.0, 'not': 2.0, 'between': 1.0, 'tray': 2.0, 'after': 1.0, 'base': 1.0, '2': 1.0, 'toes': 1.0, 'stationary': 3.0, 'cat': 1.0, 'when': 2.0, 'my': 1.0, 'another': 1.0, 'looking': 1.0, 'using': 1.0, 'for': 6.0, '1': 1.0, 'considering': 1.0, 'only': 2.0, 'yet': 1.0, 'he': 5.0, 'this': 2.0, 'put': 1.0, 'floor': 2.0, 'see': 1.0, 'our': 7.0, 'to': 4.0, 'very': 1.0, 'son': 6.0, 'carpet': 1.0, 'has': 2.0, 'age': 1.0, 'in': 2.0, 'play': 1.0, 'about': 1.0, 'whole': 1.0, 'the': 18.0, 'of': 3.0, 'makes': 2.0, 'impossible': 1.0, 'be': 2.0, 'tipped': 1.0, 'big': 1.0, 'arm': 1.0, 'making': 1.0, 'back': 1.0, 'however': 1.0, 'found': 1.0, 'easy': 1.0, 'sure': 1.0, 'used': 1.0, 'choices': 1.0, 'toy': 1.0, 'move': 4.0, 'from': 1.0, 'room': 2.0, 'baby': 1.0, 'is': 3.0, 'worth': 1.0, 'now': 1.0, 'toys': 1.0, 'watch': 1.0, 'through': 1.0, 'with': 1.0, 'drawback': 1.0, 'can': 4.0, 'so': 2.0, 'right': 1.0, 'll': 1.0, 'add': 1.0, 'activity': 1.0, 'will': 1.0, 'walker': 6.0, 'wide': 1.0, 'new': 1.0, 've': 1.0}
Word element => {'recomend': 1.0, 'have': 2.0, 'able': 1.0, 'be': 1.0, 'car': 1.0, 'walker': 2.0, 'always': 1.0, 'machine': 1.0, 'saver': 1.0, 'life': 1.0, 'just': 1.0, 'by': 1.0, 'a': 2.0, 'we': 2.0, 'could': 2.0, 'go': 1.0, 's': 2.0, 'his': 1.0, 'ready': 1.0, 'standing': 2.0, 'exhausted': 1.0, 'our': 3.0, 'was': 8.0, 'sit': 1.0, 'what': 2.0, 'when': 4.0, 'independance': 1.0, 'months': 2.0, '4': 2.0, 'i': 3.0, 'fun': 1.0, 'to': 5.0, 'high': 1.0, 'son': 2.0, 'for': 2.0, 'snacks': 1.0, 'actually': 1.0, 'realatively': 1.0, 'seat': 1.0, 'in': 6.0, 'mainly': 1.0, 'loved': 1.0, 'cushioned': 1.0, 'about': 2.0, 'play': 1.0, 'arms': 1.0, 'and': 3.0, 'arm': 1.0, 'old': 2.0, 'that': 2.0, 'because': 1.0, 'with': 1.0, 'he': 6.0, 'washing': 1.0, 'this': 3.0, 'only': 2.0, 'my': 1.0, 'another': 1.0, 'one': 1.0, 'too': 1.0, 'happy': 3.0, 'some': 1.0, 'position': 1.0, 've': 1.0, 'hanging': 1.0, 'toy': 1.0, 'part': 1.0, 'came': 1.0, 'off': 1.0, 'so': 2.0, 'on': 1.0, 'out': 1.0, 'the': 7.0, 'of': 1.0, 'meals': 1.0, 'were': 1.0, 'fidgety': 1.0, 'couple': 1.0, 'chair': 1.0, 'there': 1.0, 'deffinately': 1.0, 'is': 2.0, 'easy': 1.0, 'fed': 1.0, 'remove': 1.0, 'him': 2.0, 'it': 1.0, 'she': 1.0, 'an': 1.0, 'adult': 1.0, 'whenever': 1.0, 'needed': 1.0, 'thrown': 1.0, 'now': 1.0, 'got': 2.0, 'daughter': 1.0, 'start': 1.0, 'who': 1.0}
Word element => {'though': 1.0, 'down': 1.0, 'other': 2.0, 'have': 1.0, 'them': 1.0, 'letting': 1.0, 'while': 1.0, 'entertained': 1.0, 'child': 1.0, 'keeps': 1.0, 'top': 1.0, 'any': 1.0, 'still': 1.0, 'carpet': 2.0, 'great': 1.0, 'its': 1.0, 'only': 1.0, 'works': 1.0, 'highly': 1.0, 'plain': 1.0, 'my': 1.0, 'that': 2.0, 'old': 2.0, 'i': 4.0, 'those': 1.0, 'of': 2.0, 'got': 1.0, 'for': 1.0, 'love': 1.0, 'recommend': 1.0, 'was': 2.0, 'had': 2.0, 'it': 1.0, 'month': 1.0, 'absolutly': 1.0, 'or': 1.0, 'walkers': 1.0, 'better': 1.0, 'ago': 1.0, 'we': 3.0, 'a': 4.0, 'and': 5.0, 'toys': 2.0, 'done': 1.0, 'kind': 1.0, 'get': 1.0, 'saucer': 1.0, 'on': 2.0, 'your': 2.0, 'than': 4.0, 'this': 2.0, 'wish': 1.0, 'when': 1.0, 'side': 1.0, '7': 1.0, 'tray': 1.0, 'one': 3.0, 'bought': 2.0, 'months': 1.0, 'in': 1.0, 'the': 5.0, 'walker': 1.0, 'beginning': 1.0, 'daughter': 1.0, 'wheels': 1.0, 'little': 1.0, 'are': 1.0, 'bigger': 2.0, 'lot': 1.0, 'food': 1.0, 'most': 1.0, 'can': 1.0, 'work': 1.0, 'smaller': 1.0, 'so': 1.0, 'is': 1.0, 'around': 1.0}
Word element => {'away': 1.0, 'buy': 1.0, 'recomend': 1.0, 'release': 1.0, 'therefore': 1.0, 'neck': 1.0, 'could': 1.0, 'how': 1.0, 'said': 1.0, 'one': 1.0, 'edges': 1.0, 'stay': 1.0, 'turn': 1.0, 'spoiler': 3.0, 'he': 2.0, 'to': 10.0, 'grab': 1.0, 'it': 2.0, 'him': 2.0, 'daughter': 1.0, 'wheels': 1.0, 'activity': 2.0, 'old': 1.0, 'his': 3.0, 'around': 1.0, 'style': 1.0, 'occasions': 1.0, 'a': 3.0, 't': 2.0, 'on': 5.0, 'popping': 1.0, 'of': 6.0, 'the': 17.0, 'all': 1.0, 'playing': 1.0, 'but': 2.0, 'most': 1.0, 'head': 2.0, 'mentioned': 1.0, 'brought': 1.0, 'know': 1.0, 'for': 1.0, 'be': 1.0, 'ejected': 1.0, 'tot': 1.0, '5': 1.0, 'snapped': 1.0, 'get': 3.0, 'left': 1.0, 'couple': 1.0, 'nothing': 1.0, 'out': 3.0, 'anyone': 2.0, 'and': 7.0, 'me': 1.0, 'my': 7.0, 'family': 1.0, 'in': 2.0, 'seat': 1.0, 'headaches': 1.0, 'center': 1.0, 'from': 2.0, 'part': 2.0, 'son': 4.0, 'looking': 1.0, 'reason': 3.0, 'few': 1.0, 'this': 2.0, 'first': 1.0, 'time': 1.0, 'walker': 4.0, 'stuck': 2.0, 'would': 3.0, 'floor': 1.0, 'sonwas': 1.0, 'second': 1.0, 'wheel': 2.0, 'third': 1.0, 'sharp': 1.0, 'off': 1.0, 'being': 3.0, 'very': 1.0, 'broke': 1.0, 'i': 5.0, 'so': 1.0, 'strength': 1.0, 'play': 1.0, 'about': 1.0, 'no': 2.0, 'dont': 1.0, 'else': 1.0, 'was': 4.0, 'them': 2.0, 'has': 1.0, 'always': 1.0, 'particular': 1.0, 'way': 1.0, 'terrifing': 1.0, 'chewing': 1.0, 'parrimedics': 1.0, 'with': 1.0, 'when': 2.0, 'managed': 1.0, 'god': 1.0, 'between': 1.0, 'cut': 1.0, 'they': 1.0, 'tray': 2.0, 'there': 1.0, 'nervous': 1.0, 'didn': 2.0, 'have': 2.0, 'pop': 1.0, 'year': 1.0, 'thank': 1.0, 'because': 2.0, 'strongly': 1.0, 'had': 2.0, 'come': 1.0, 'came': 1.0}
Word element => {'time': 1.0, 'but': 1.0, 'was': 1.0, 'didn': 1.0, 'given': 1.0, 'swivel': 1.0, 'wheels': 1.0, 'front': 1.0, 'should': 1.0, 'also': 1.0, 'seems': 1.0, 'he': 1.0, 'plastic': 1.0, 'isolated': 1.0, 'from': 1.0, 'while': 1.0, 'position': 1.0, 'stay': 1.0, 'won': 1.0, 'back': 1.0, 'one': 1.0, 'direction': 1.0, 'hinder': 1.0, 'down': 1.0, 'i': 2.0, 'have': 2.0, 'any': 1.0, 'to': 3.0, 'system': 1.0, 'at': 1.0, 'flimsy': 1.0, 'keep': 1.0, 'toys': 1.0, 'this': 1.0, 'only': 2.0, 'with': 1.0, 'it': 6.0, 'walker': 2.0, 'bars': 1.0, 'issue': 2.0, 'tall': 1.0, 'and': 3.0, 'be': 2.0, 'him': 1.0, 'of': 1.0, 'rather': 1.0, 'big': 1.0, 'great': 1.0, 'deal': 1.0, 'the': 7.0, 'are': 1.0, 'my': 2.0, 'which': 1.0, 'like': 2.0, 'for': 2.0, 'more': 1.0, 'is': 3.0, 'wants': 1.0, 'seem': 1.0, 'busy': 1.0, 'son': 2.0, 'very': 1.0, 'x': 1.0, 'babies': 1.0, 'that': 1.0, 'enough': 1.0, 'legs': 2.0, 'different': 1.0, 'holding': 1.0, 'don': 1.0, 'up': 2.0, 'think': 1.0, 'strong': 1.0, 'on': 1.0, 'going': 1.0, 'could': 1.0, 'go': 1.0, 't': 3.0, 'a': 3.0, 's': 1.0, 'levels': 1.0, 'made': 1.0, 'in': 2.0, 'exersaucer': 1.0, 'an': 2.0, 'does': 1.0, 'than': 2.0, 'having': 1.0}
Word element => {'everyday': 1.0, 'him': 1.0, 'making': 1.0, 'well': 1.0, 'own': 1.0, 'sturdy': 1.0, 'his': 1.0, 'out': 1.0, 'more': 1.0, 'is': 3.0, 'feel': 1.0, 'excited': 1.0, 'great': 2.0, 'are': 1.0, 'sounds': 1.0, 'the': 3.0, 'of': 1.0, 'room': 1.0, 'very': 2.0, 'little': 1.0, 'liked': 1.0, 'for': 3.0, 'young': 1.0, 'old': 1.0, 'i': 2.0, 'over': 1.0, 'independent': 1.0, 'have': 1.0, 'how': 1.0, 'dining': 1.0, 'he': 6.0, 'this': 2.0, 'only': 1.0, 'purchase': 1.0, 'my': 2.0, 'figuring': 1.0, 'stand': 1.0, 'and': 5.0, 'months': 1.0, 'bought': 1.0, 'husband': 1.0, 'was': 3.0, 'our': 1.0, 'all': 2.0, 'to': 2.0, 'now': 1.0, 'gets': 1.0, 'son': 1.0, 'walker': 3.0, 'when': 1.0, 'you': 1.0, 'work': 1.0, 'but': 1.0, 'four': 1.0, 'can': 2.0, 'know': 1.0, 'hold': 1.0, 'them': 1.0, 'baby': 1.0, 'in': 1.0, 'had': 1.0, 'standing': 1.0, 'balanced': 1.0, 'position': 1.0, 'so': 1.0, 'long': 1.0, 'absolutely': 1.0, 'that': 1.0, 'loves': 1.0, 'it': 3.0, 'month': 1.0, 'on': 1.0, 'make': 2.0, 'a': 5.0, 'we': 1.0, 'go': 1.0}
Word element => {'redesigned': 1.0, 'helpful': 1.0, 'great': 1.0, 'be': 2.0, 'would': 2.0, 'button': 1.0, 'volume': 1.0, 'they': 2.0, 'tape': 1.0, 'of': 1.0, 'bottom': 1.0, 'walker': 3.0, 'was': 1.0, 'backwards': 1.0, 'that': 2.0, 'i': 3.0, 'loud': 2.0, 'this': 2.0, 'it': 5.0, 'so': 2.0, 'forwards': 1.0, 'my': 1.0, 'daughter': 1.0, 'just': 1.0, 'and': 2.0, 'to': 2.0, 'as': 1.0, 'how': 1.0, 'received': 1.0, 'pieces': 1.0, 'added': 1.0, 'speaker': 1.0, 'is': 1.0, 'side': 1.0, 'gift': 1.0, 'over': 1.0, 'turns': 1.0, 'cardboard': 1.0, 'place': 1.0, 'the': 3.0, 'also': 2.0, 'will': 2.0, 'but': 1.0, 'turn': 1.0, 'easily': 1.0, 'a': 3.0, 'go': 1.0, 'had': 1.0, 'either': 1.0, 'not': 2.0, 'heard': 1.0, 'have': 1.0, 'never': 1.0, 'baby': 1.0, 'toy': 1.0, 'on': 2.0, 'think': 1.0, 'if': 2.0}
Word element => {'beat': 1.0, 'flash': 1.0, 'reflects': 1.0, 'sometimes': 1.0, 'face': 1.0, 'reflect': 1.0, 'mirror': 1.0, 'back': 1.0, 'draw': 1.0, 'over': 1.0, 'go': 1.0, 'suck': 1.0, 'star': 1.0, 'reaching': 1.0, 'preventing': 1.0, 'by': 1.0, 'much': 1.0, 'into': 1.0, 'getting': 1.0, 'from': 2.0, 'keeps': 1.0, 'also': 3.0, 'first': 1.0, 'holes': 1.0, 'easy': 1.0, 'comfortable': 1.0, 'very': 1.0, 'be': 1.0, 'still': 1.0, 'cloth': 2.0, 'base': 2.0, 'wide': 2.0, 'nice': 1.0, 'has': 1.0, 'wheels': 2.0, 'feature': 1.0, 'activities': 1.0, 'have': 1.0, 'mega': 1.0, 'dogs': 2.0, 'big': 1.0, 'they': 1.0, 'is': 6.0, 'set': 1.0, 's': 1.0, 'well': 1.0, 'i': 3.0, 'maneuverable': 1.0, 'tot': 1.0, '4': 1.0, 'old': 1.0, 'month': 1.0, 'recommend': 1.0, 'heart': 2.0, 'on': 2.0, 'out': 2.0, 'originally': 1.0, 'chasing': 1.0, 'dump': 1.0, 'than': 1.0, 'way': 1.0, 'and': 4.0, 'returned': 1.0, 'son': 2.0, 'try': 2.0, 'too': 3.0, 'one': 2.0, 'bought': 2.0, 'backs': 2.0, 'for': 2.0, 'lever': 1.0, 're': 1.0, 'house': 1.0, 'my': 4.0, 'but': 2.0, '2': 1.0, 'this': 4.0, 'the': 15.0, 'of': 3.0, 'doing': 1.0, 'far': 1.0, 'yet': 1.0, 'he': 9.0, '6': 1.0, 'to': 7.0, 'had': 1.0, 'more': 1.0, 'husband': 2.0, 'swear': 1.0, 'was': 1.0, 'carpet': 1.0, 'yellow': 1.0, 'so': 2.0, 'saucers': 1.0, 'those': 1.0, 'what': 1.0, 'when': 3.0, 'a': 6.0, 'hilarious': 1.0, 'turned': 1.0, 'in': 5.0, 'seat': 1.0, 'm': 1.0, 'glad': 1.0, 'keep': 1.0, 'makes': 2.0, 'did': 1.0, 'seemed': 1.0, 'sure': 1.0, 'pics': 1.0, 'trouble': 1.0, 'legs': 1.0, 'months': 2.0, 'get': 2.0, 'take': 1.0, 'we': 1.0, 'difference': 1.0, 'loves': 2.0, 'because': 1.0, 'young': 1.0, 'that': 3.0, 'car': 2.0, 'seems': 2.0, 'zooms': 1.0, 'turns': 1.0, 'after': 1.0, 'many': 1.0, 'truck': 1.0, 'watch': 1.0, 'it': 9.0, 'him': 4.0, 'sound': 2.0, 'favorite': 1.0, 'up': 2.0, 'made': 1.0, 'which': 1.0, 'would': 2.0, 'knows': 1.0, 'you': 2.0, 'everytime': 1.0, 'pulls': 1.0, 'rather': 2.0, 'like': 1.0, 'signal': 1.0, 'quickly': 1.0, 'around': 3.0, 'his': 3.0}
Word element => {'well': 1.0, 'made': 1.0, 'very': 1.0, 'down': 1.0, 'pull': 1.0, 'babies': 1.0, 'supervision': 1.0, 'explore': 1.0, 'course': 1.0, 'there': 1.0, 'toys': 1.0, 'same': 1.0, 'sit': 1.0, 'exersaucers': 1.0, 'it': 1.0, 'and': 2.0, '5': 1.0, 'who': 1.0, 'at': 1.0, 'him': 1.0, 've': 1.0, 'following': 1.0, 'this': 3.0, 'knock': 1.0, 'with': 3.0, 'walker': 1.0, 'mos': 1.0, 'first': 1.0, 'third': 1.0, 'walkers': 2.0, 'fourth': 1.0, 'became': 1.0, 'in': 1.0, 'exersaucer': 1.0, 'an': 2.0, 'house': 1.0, 'placed': 1.0, 'etc': 1.0, '4': 1.0, 'i': 3.0, 'bored': 1.0, 'when': 1.0, 'seen': 1.0, 'boys': 1.0, 'easily': 1.0, 'you': 1.0, 'required': 1.0, 'exploring': 1.0, 'son': 2.0, 'put': 1.0, 'on': 1.0, 'which': 1.0, 'suggest': 1.0, 'purchased': 1.0, 'had': 1.0, 'for': 2.0, 'over': 2.0, 'newest': 1.0, 'my': 1.0, 'to': 1.0, 'all': 1.0, 'our': 3.0, 'registry': 1.0, 'time': 1.0, 'they': 1.0, 'entire': 1.0, 'bought': 1.0, 'hang': 1.0, 'is': 4.0, 'things': 3.0, 'quickly': 1.0, 'sturdy': 1.0, 'his': 1.0, 'baby': 1.0, 'brothers': 1.0, 'can': 2.0, 'having': 2.0, 'grand': 1.0, 'could': 1.0, 'we': 1.0, 'a': 1.0, 't': 1.0, 'extreme': 1.0, 'believe': 1.0, 'the': 2.0, 'he': 1.0, 'how': 1.0, 'get': 1.0, 'of': 2.0}
Word element => {'others': 1.0, 'bouncer': 1.0, 'longer': 1.0, 'lasts': 1.0, 'have': 1.0, 'mom': 1.0, 'seems': 1.0, 'also': 1.0, 'great': 1.0, 'babies': 1.0, 'loves': 1.0, 'back': 1.0, 'higher': 1.0, 'it': 5.0, 'this': 2.0, 'adjusts': 1.0, 'children': 1.0, 'with': 3.0, 'by': 1.0, 'average': 1.0, 'used': 1.0, 'you': 2.0, 'taller': 1.0, 'never': 2.0, 'holder': 1.0, 'who': 1.0, 'three': 1.0, 'little': 1.0, 'handy': 1.0, 'the': 7.0, 'one': 3.0, 'decided': 1.0, 'best': 1.0, 'from': 1.0, 'i': 2.0, 'recommend': 1.0, 'was': 1.0, 'walker': 1.0, 'than': 2.0, 'because': 1.0, 'having': 1.0, 'in': 1.0, 's': 3.0, 't': 2.0, 'go': 1.0, 'we': 1.0, 'to': 2.0, 'center': 1.0, 'think': 1.0, 'dr': 1.0, 'your': 1.0, 'has': 1.0, 'stoppers': 1.0, 'so': 1.0, 'don': 1.0, 'is': 1.0, 'fear': 1.0, 'move': 1.0, 'can': 2.0, 'pull': 1.0, 'push': 1.0, 'baby': 1.0, 'them': 2.0, 'out': 1.0, 'and': 2.0, 'before': 1.0, 'room': 2.0}
Word element => {'my': 1.0, 'limited': 1.0, 'another': 1.0, 'had': 1.0, '5': 1.0, 'been': 1.0, 'across': 1.0, 'come': 1.0, 'never': 1.0, 'mentioned': 1.0, 'enough': 1.0, 'above': 1.0, 'in': 1.0, 'prepared': 1.0, 'but': 2.0, 'stars': 1.0, 'onto': 1.0, 'hold': 1.0, 'parent': 1.0, 'kids': 1.0, 'convinced': 1.0, 'have': 3.0, 'star': 2.0, 'll': 1.0, 'help': 2.0, 'anymore': 1.0, 'away': 2.0, 'don': 1.0, 'said': 1.0, 'mention': 1.0, 'forward': 2.0, 'not': 1.0, 'overall': 1.0, 'steer': 4.0, 'them': 4.0, 'bulky': 1.0, 'big': 1.0, 'own': 1.0, 's': 4.0, 'learn': 1.0, 'go': 1.0, 'they': 4.0, 'price': 1.0, 've': 2.0, 'from': 1.0, 'center': 1.0, 'idea': 1.0, 'any': 3.0, 'to': 18.0, 'company': 1.0, 'only': 1.0, 'comparable': 1.0, 'as': 1.0, 'because': 1.0, 'easily': 1.0, 'that': 13.0, 'into': 1.0, 'others': 1.0, 'when': 1.0, 'what': 1.0, 'roll': 1.0, 'these': 1.0, 'over': 1.0, 'with': 4.0, 'this': 1.0, 'easy': 1.0, 'know': 1.0, 'found': 1.0, 'fact': 4.0, 'run': 1.0, 'cons': 1.0, 'imagine': 1.0, 'a': 6.0, 'take': 1.0, 'maximum': 1.0, 'we': 3.0, 'for': 10.0, 'pros': 1.0, 'first': 1.0, 'both': 1.0, 'activity': 1.0, 'their': 1.0, 'wheels': 1.0, 'very': 1.0, 'little': 3.0, 'or': 1.0, 'good': 2.0, 'tot': 1.0, 'time': 2.0, 'remain': 1.0, 'walker': 7.0, 'main': 1.0, 'really': 2.0, 'notice': 1.0, 'at': 2.0, 'is': 7.0, 'around': 1.0, 'money': 1.0, 'so': 1.0, 'can': 2.0, 'be': 2.0, 'difficulty': 1.0, 'than': 1.0, 'way': 2.0, 'particular': 1.0, 'getting': 1.0, 't': 3.0, 'along': 1.0, 'daughter': 1.0, 'got': 1.0, 'i': 3.0, 'daughters': 2.0, 'other': 2.0, 'of': 5.0, 'the': 22.0, 'walk': 4.0, 'about': 1.0, '1': 2.0, 'same': 1.0, 'often': 1.0, 'month': 1.0, 'it': 7.0, 'after': 1.0, 'bored': 1.0, 'and': 8.0, 'soon': 1.0, 'tough': 1.0, 'toys': 2.0, 'started': 1.0, 'tired': 1.0, 'before': 1.0, 'fussing': 1.0, 'get': 1.0, 'understand': 1.0, 'enjoyed': 1.0, 'out': 1.0, 'bulkiness': 1.0, 'our': 2.0, 'shopping': 1.0, 'realize': 1.0, 'on': 1.0, 'floor': 1.0, 'move': 1.0, 'used': 2.0, 'problem': 1.0, 'part': 1.0, 'almost': 1.0, 'week': 1.0, 'again': 1.0, 'push': 1.0, 'you': 2.0, 'lines': 1.0, 'just': 1.0, 'by': 1.0, 'ones': 1.0, 'too': 2.0, 'one': 2.0, 'steering': 1.0, 'control': 1.0, 'didn': 1.0, 'themselves': 1.0, 'if': 1.0, 'walkers': 1.0, 'pushing': 1.0, 'cart': 1.0, 'crawl': 1.0, 'something': 2.0, 'wants': 1.0}
Word element => {'bit': 1.0, 'though': 1.0, 'definitely': 1.0, 'still': 1.0, 'walking': 1.0, 'months': 1.0, 'spoiler': 1.0, 'would': 1.0, 'play': 1.0, 'walk': 1.0, 'chair': 1.0, 'serves': 1.0, 'occasions': 1.0, 'traveled': 1.0, 'even': 2.0, 'gate': 1.0, 'by': 2.0, 'pricey': 1.0, 'blocked': 1.0, 'first': 1.0, 'are': 1.0, 'stairs': 1.0, 'want': 1.0, 'blocks': 1.0, 'road': 1.0, 'all': 1.0, 'worth': 1.0, 'now': 2.0, 'wheels': 1.0, 'daughter': 8.0, 'one': 3.0, 'loves': 3.0, 'its': 1.0, 'wheel': 1.0, 'only': 1.0, 'in': 3.0, 'out': 2.0, 'enjoyed': 1.0, 'we': 3.0, 's': 3.0, 'likes': 1.0, 't': 1.0, 'going': 1.0, 'a': 6.0, 'friend': 1.0, 'originally': 1.0, 'thought': 1.0, 'it': 12.0, 'many': 1.0, 'she': 5.0, 'this': 1.0, 'tray': 1.0, 'turns': 2.0, 'wasn': 1.0, 'walker': 2.0, 'pinch': 1.0, 'shifter': 1.0, 'for': 3.0, 'tot': 1.0, 'but': 1.0, 'chose': 1.0, 'also': 1.0, 'us': 2.0, 'gear': 1.0, 'push': 1.0, 'able': 3.0, 'safety': 1.0, 'carpeted': 1.0, '13': 1.0, 'let': 1.0, 'no': 1.0, 'husband': 1.0, 'as': 2.0, 'noises': 1.0, 'our': 2.0, 'own': 1.0, 'areas': 1.0, 'tried': 1.0, 'i': 9.0, 'feature': 1.0, 'buy': 2.0, 'learning': 1.0, 'reasons': 1.0, 'my': 11.0, 'often': 1.0, 'grandma': 1.0, 'mostly': 1.0, 'underneath': 1.0, 're': 1.0, 'holding': 1.0, 'house': 3.0, 'borrowed': 1.0, 'they': 1.0, 'and': 6.0, 'recommended': 1.0, 'has': 2.0, 'expected': 1.0, 'the': 9.0, 'longer': 1.0, 'of': 3.0, 'features': 1.0, 'steering': 1.0, 'vice': 1.0, 'keep': 1.0, 'makes': 2.0, 'using': 1.0, 'like': 2.0, 'being': 1.0, 'removeable': 1.0, 'with': 2.0, 'snack': 1.0, 'at': 1.0, 'is': 3.0, 'around': 2.0, 'be': 1.0, 'her': 3.0, 'use': 2.0, 'kitchen': 1.0, 'surprise': 1.0, 'was': 3.0, 'decided': 1.0, 'toy': 1.0, 'move': 2.0, 'high': 1.0, 'to': 13.0, 'pretty': 1.0, 'that': 2.0, 'because': 3.0, 'borrow': 1.0, 'easily': 2.0, 'on': 4.0, 'buying': 1.0, 'carpet': 2.0, 'while': 1.0, 'removed': 1.0, 'rubber': 1.0, 'strips': 1.0, 'so': 5.0, 'can': 1.0, 'from': 1.0, 'put': 1.0, 'much': 2.0, 'do': 1.0, 'floor': 1.0, 'herself': 1.0, 'versa': 1.0}
Word element => {'non': 1.0, 'trunk': 1.0, 'won': 1.0, 'your': 1.0, 'any': 1.0, 'probably': 1.0, 'transportable': 1.0, 'more': 1.0, 'base': 1.0, 'be': 2.0, 'althoug': 1.0, 'great': 1.0, 'make': 1.0, 'sound': 1.0, 'less': 1.0, 'up': 1.0, 's': 1.0, 'giving': 1.0, 'growth': 2.0, 'right': 1.0, 'doesn': 1.0, 'step': 1.0, 'can': 2.0, 'if': 2.0, 'seats': 1.0, 'with': 1.0, 'problem': 1.0, 'wheels': 2.0, 'sitting': 1.0, 'when': 1.0, 'level': 1.0, 'heightest': 1.0, 'few': 1.0, 'room': 1.0, 'these': 1.0, 'luv': 1.0, 'trend': 1.0, 'others': 1.0, 'baby': 1.0, 'traditional': 1.0, 'no': 1.0, 'chicco': 1.0, 'liked': 1.0, '32': 1.0, 'for': 3.0, 'search': 1.0, 'looks': 2.0, 'my': 1.0, 'started': 1.0, 'tots': 3.0, 'had': 1.0, 'but': 3.0, '4': 1.0, 'seen': 1.0, 'am': 2.0, 'rooom': 1.0, 'in': 3.0, 'exersaucer': 1.0, 'activity': 1.0, 'growing': 1.0, 'not': 4.0, 'they': 1.0, 'between': 2.0, 'choose': 1.0, 'quot': 14.0, 'does': 1.0, 'length': 1.0, 'to': 6.0, 'out': 2.0, 'walkers': 1.0, 'bouncing': 2.0, 'floor': 1.0, 'do': 2.0, 'wheel': 1.0, 'until': 1.0, 'and': 3.0, 'he': 12.0, 'patrick': 1.0, 'center': 1.0, 'from': 2.0, 'while': 1.0, 'flat': 1.0, 'height': 2.0, 'son': 1.0, 'at': 1.0, 'is': 4.0, 'month': 1.0, 'a': 5.0, 'taxi': 1.0, 't': 4.0, 'we': 1.0, 'could': 2.0, 'standing': 1.0, 'wasn': 1.0, 'inches': 2.0, 'roomy': 1.0, 'have': 1.0, 'as': 11.0, 'leave': 1.0, 'six': 1.0, 'two': 1.0, 'overlooked': 1.0, 'around': 1.0, 'his': 5.0, 'on': 1.0, 'long': 1.0, 'rating': 1.0, 'lot': 1.0, '1st': 1.0, 'effects': 1.0, 'the': 21.0, 'of': 6.0, '95': 1.0, 'collaspe': 1.0, 'give': 1.0, 'there': 4.0, 'grandmother': 1.0, 'stars': 1.0, 'portable': 3.0, 'besides': 2.0, 'jet': 1.0, 'old': 1.0, 'fact': 1.0, 'because': 6.0, 'that': 4.0, 'loves': 1.0, 'been': 1.0, 'isn': 1.0, 'him': 3.0, 'it': 5.0, 'already': 1.0, 'them': 1.0, 'has': 3.0, 'feet': 1.0, 'i': 8.0, 'well': 4.0, 'an': 1.0, 'oversized': 1.0, 'spends': 1.0, 'entertainer': 1.0, '2': 1.0, 'saftey': 1.0, 'was': 1.0, 'buggy': 2.0, 'good': 1.0, 'which': 1.0, 'using': 1.0, 'know': 1.0, 'are': 5.0, 'working': 1.0, 'disassembled': 1.0, '28': 1.0, 'aunt': 1.0, 'move': 1.0, 'decided': 1.0, 'get': 1.0, 'tall': 1.0, 'time': 1.0, 'walker': 4.0, 'car': 1.0, '1': 1.0, 'transport': 1.0, 'did': 1.0, 'able': 1.0}
Word element => {'from': 1.0, 'common': 1.0, 'with': 1.0, 'know': 1.0, 'should': 1.0, 'course': 1.0, 'of': 1.0, 'also': 1.0, 'features': 1.0, 'years': 1.0, 'walkers': 1.0, '12': 1.0, 'had': 1.0, '9': 1.0, 'children': 1.0, 'stationary': 1.0, 'buy': 1.0, 'toy': 1.0, 'was': 1.0, 'recommend': 1.0, 'really': 1.0, 'and': 6.0, 'anybody': 1.0, 'get': 2.0, 'but': 2.0, 'away': 1.0, 'older': 1.0, 'now': 1.0, 'ok': 1.0, 'this': 2.0, 'liked': 2.0, 'actually': 1.0, 'for': 1.0, 'is': 2.0, 'more': 1.0, 'reach': 1.0, 'the': 6.0, 'fact': 1.0, 'my': 2.0, 'off': 1.0, 'keep': 1.0, 'tot': 1.0, 'at': 2.0, 'sense': 1.0, 'wheels': 1.0, 'daughter': 1.0, 'two': 1.0, 'i': 4.0, '4': 1.0, 'mobile': 1.0, 'bought': 1.0, 'months': 2.0, 'it': 5.0, 'she': 5.0, 'able': 1.0, 'to': 3.0, 'all': 1.0, 'whole': 1.0, 'thing': 1.0, 'five': 1.0, 'noise': 1.0, 'entertainer': 1.0, 'watch': 1.0, 'stairs': 1.0, 'ago': 1.0, 'a': 1.0, 'going': 1.0, 's': 2.0, 'makers': 1.0, 'could': 1.0, 'star': 2.0, 'if': 1.0, 'eat': 1.0, 'time': 1.0, 'so': 1.0, 'would': 1.0, 'funny': 1.0, 'her': 2.0, 'only': 1.0, 'do': 1.0, 'try': 1.0, 'loves': 1.0, 'that': 2.0, 'in': 1.0, 'because': 1.0, 'mouth': 1.0}
Word element => {'to': 1.0, 'being': 1.0, 'just': 1.0, 'me': 1.0, 'not': 1.0, 'happy': 1.0, 'my': 1.0, 'her': 2.0, 'on': 1.0, 'with': 1.0, 'this': 2.0, 'looked': 1.0, 'the': 3.0, 'great': 1.0, 'daughter': 1.0, 'toys': 1.0, 'really': 2.0, 'around': 1.0, 'top': 1.0, 'it': 2.0, 'she': 2.0, 'makes': 1.0, 'they': 1.0, 'get': 1.0, 'and': 1.0, 'pretty': 2.0, 'worth': 1.0, 'walkers': 1.0, 'easily': 1.0, 'which': 1.0, 'like': 1.0, 'are': 2.0, 'entertained': 1.0, 'other': 1.0, 'i': 1.0, 'cheap': 1.0, 'have': 1.0, 'keep': 1.0, 'at': 1.0, 'loves': 2.0, 'that': 1.0, 'seem': 1.0, 'made': 1.0, 'money': 1.0, 'can': 1.0, 'but': 1.0, 'mobile': 1.0, 'one': 1.0, 'seems': 1.0, 'very': 1.0, 'sturdy': 1.0}
Word element => {'now': 1.0, 'm': 1.0, 'bad': 1.0, 'they': 1.0, 'was': 1.0, 'about': 1.0, 'worried': 1.0, 'sounds': 2.0, 'makes': 1.0, 'of': 2.0, 'is': 1.0, 'age': 1.0, 'his': 1.0, 'small': 1.0, 'portable': 1.0, 'happy': 1.0, 'my': 1.0, '0': 1.0, 'this': 1.0, 'with': 3.0, 'i': 5.0, 'for': 2.0, 'product': 1.0, 'little': 1.0, 'very': 2.0, 'why': 1.0, 'son': 1.0, 'work': 1.0, 'can': 1.0, 'but': 1.0, 'assembly': 1.0, 'easy': 1.0, 'the': 5.0, 'stopper': 1.0, 'other': 1.0, 'annoying': 1.0, 'it': 2.0, 'colorful': 1.0, 'being': 1.0, 'entertaining': 1.0, 'getting': 1.0, 'himself': 1.0, 'agree': 1.0, 'reviewers': 1.0, 'are': 3.0, 'see': 1.0, 'easier': 1.0, 'well': 1.0, 'proud': 1.0, 's': 1.0, 't': 1.0, 'we': 1.0, 'a': 2.0, 'done': 1.0, 'need': 1.0, 'safe': 1.0, 'take': 1.0, 'those': 1.0, 'not': 2.0, 'me': 1.0, 'height': 1.0, 'so': 2.0, 'adjustments': 1.0, 'all': 1.0, 'as': 2.0, 'to': 1.0, 'brakes': 1.0, 'you': 1.0, 'when': 1.0, 'easily': 1.0, 'minipulated': 1.0, 'he': 1.0, '6': 1.0, 'lot': 1.0, 'at': 1.0, '5mos': 1.0, 'dishes': 1.0, 'born': 1.0, 'would': 1.0, 'premature': 1.0}
Word element => {'run': 1.0, 'me': 1.0, 'lets': 1.0, 'him': 1.0, 'boy': 1.0, 'take': 1.0, 'just': 1.0, 'then': 1.0, 'truck': 2.0, 'of': 2.0, 'back': 1.0, 'in': 3.0, 'throw': 1.0, 'to': 1.0, 'handy': 1.0, 'old': 1.0, 'mo': 1.0, 'dirty': 1.0, 'can': 1.0, 'hour': 1.0, 'batteries': 1.0, 'he': 2.0, 'aa': 1.0, 'for': 1.0, 'love': 2.0, 'when': 2.0, 'you': 1.0, 'out': 1.0, 'loose': 1.0, 'walker': 1.0, 'great': 1.0, 'the': 13.0, 'replace': 1.0, 'get': 2.0, 'too': 1.0, 'and': 5.0, 'move': 1.0, 'if': 1.0, 'did': 1.0, 'wheels': 2.0, 'thankfully': 1.0, 'this': 1.0, 'research': 1.0, 'it': 10.0, 'are': 1.0, 'very': 2.0, 'tray': 1.0, 'one': 2.0, 'decided': 1.0, 'put': 1.0, '3': 1.0, 'on': 6.0, 's': 1.0, 'go': 1.0, 'a': 1.0, '4': 1.0, 'i': 5.0, 'device': 2.0, 'call': 1.0, 'gym': 2.0, 'graco': 1.0, 'them': 1.0, 'have': 1.0, 'rolls': 1.0, 'switch': 1.0, 'son': 1.0, 'under': 1.0, 'carpet': 1.0, 'tile': 1.0, 'with': 1.0, 'pavement': 1.0, 'tight': 1.0, 'my': 2.0, 'fact': 1.0, 'an': 2.0, 'into': 1.0, 'loves': 1.0, 'that': 1.0, 'well': 1.0, 'has': 1.0, 'roll': 1.0, 'removeable': 1.0, 'treadmill': 1.0, 'right': 1.0, 'takes': 1.0, 'noise': 2.0, 'making': 1.0, 'off': 1.0}
Word element => {'as': 1.0, 'face': 1.0, 'her': 1.0, 'make': 1.0, 'across': 1.0, 'smiles': 1.0, 'all': 1.0, 'full': 1.0, 'is': 1.0, 'she': 2.0, 'in': 1.0, 'daughter': 1.0, 'month': 1.0, 'for': 1.0, 'center': 1.0, 'everytime': 1.0, 'makes': 1.0, 'has': 1.0, 'activity': 1.0, 'like': 1.0, 'because': 1.0, 'and': 1.0, 'tot': 1.0, 'joy': 1.0, 'my': 1.0, 'wheels': 2.0, 'come': 1.0, 'it': 3.0, 'old': 1.0, 'i': 2.0, 'a': 1.0, 'noise': 1.0, 'stopers': 1.0, 'so': 1.0, 'won': 1.0, 'the': 2.0, 't': 1.0, 'move': 1.0, 'walker': 2.0, 'place': 1.0, 'of': 1.0, '6': 1.0}
Word element => {'limiting': 1.0, 'be': 1.0, 'will': 1.0, 'twins': 1.0, 'boys': 2.0, 'toes': 1.0, 'we': 4.0, 's': 1.0, 'walks': 1.0, 'unfortunately': 1.0, 'was': 2.0, 'anywhere': 1.0, 'room': 1.0, 'kitchen': 1.0, 'apparently': 1.0, 'us': 1.0, 'able': 1.0, 'without': 1.0, 'use': 1.0, 'confirmed': 1.0, 'assistance': 1.0, 'continue': 1.0, 'but': 1.0, 'and': 3.0, 'much': 1.0, 'pediatric': 1.0, 'they': 5.0, 'our': 2.0, 'to': 5.0, 'all': 1.0, 'used': 2.0, 'month': 1.0, 'it': 6.0, 'this': 4.0, 'twin': 1.0, 'bought': 1.0, 'try': 1.0, 'one': 1.0, 'get': 2.0, 'months': 1.0, 'themselves': 1.0, 'being': 1.0, 've': 1.0, 'old': 3.0, 'type': 1.0, 'makes': 1.0, 'adult': 1.0, 'needing': 1.0, 'them': 2.0, '8': 1.0, 'll': 1.0, 'amount': 1.0, 'on': 1.0, 'who': 1.0, 'for': 2.0, 'occupational': 1.0, 'in': 1.0, 'seat': 1.0, 'therapist': 1.0, 'a': 1.0, 'promotes': 1.0, 'dogs': 1.0, 'says': 1.0, 'by': 1.0, 'should': 1.0, 'their': 1.0, 'limit': 1.0, 'now': 1.0, 'the': 8.0, 'of': 3.0, 'way': 1.0, 'positions': 1.0, 'absolutely': 1.0, 'out': 1.0, 'toe': 1.0, 'around': 2.0, 'his': 1.0, 'family': 1.0, 'walking': 1.0, 'difficult': 1.0, 'more': 1.0, 'babies': 1.0, 'go': 1.0, 'learn': 1.0, 'walk': 1.0, 'love': 2.0, 'nephew': 1.0, 'he': 1.0, '6': 1.0, 'properly': 1.0, '1': 1.0, 'since': 3.0, 'friend': 1.0, 'yr': 1.0, 'walker': 3.0, 'time': 2.0, 'can': 1.0, 'constantly': 1.0, 'so': 1.0, 'using': 1.0, 'stay': 1.0, 'chase': 1.0, 'enjoy': 1.0}
Word element => {'returning': 1.0, 'ended': 1.0, 'lie': 1.0, 'say': 1.0, 'couldn': 1.0, 'what': 1.0, 'guess': 1.0, 'better': 1.0, 'would': 2.0, 'instructions': 1.0, 'hopes': 1.0, 'model': 1.0, 'son': 1.0, 'another': 1.0, 'my': 1.0, 'worth': 1.0, 'returned': 1.0, 'way': 1.0, 'carrier': 6.0, 'this': 2.0, 'it': 6.0, 'first': 1.0, 'bike': 5.0, 'fit': 2.0, 'for': 3.0, 'install': 1.0, 'comfortable': 1.0, 'review': 1.0, 'up': 1.0, 'child': 2.0, 'i': 5.0, 'tried': 1.0, 'positive': 1.0, 'understand': 1.0, 'there': 1.0, 'how': 1.0, 'in': 2.0, 'got': 1.0, 'even': 2.0, 'both': 1.0, 'sat': 1.0, 'close': 1.0, 'at': 1.0, 'loss': 1.0, 'no': 1.0, '26': 1.0, 't': 1.0, 's': 4.0, 'a': 5.0, 'most': 1.0, 'can': 2.0, 'seat': 1.0, 'to': 3.0, 'was': 1.0, 'if': 1.0, 'am': 1.0, 'someone': 1.0, 'that': 4.0, 'gave': 1.0, 'and': 3.0, 'too': 1.0, 'free': 1.0, 'anyone': 1.0, 'be': 2.0, 'bikes': 1.0, 'the': 10.0, 'your': 1.0, 'on': 4.0, 'ride': 1.0, 'uncomfortable': 1.0, 'give': 1.0, 'not': 1.0, 'me': 1.0}
Word element => {'for': 1.0, 'point': 1.0, 'not': 1.0, 'but': 1.0, 'work': 1.0, 'it': 1.0, 'make': 1.0, 'hardware': 1.0, 'more': 1.0, 'little': 1.0, 'sure': 1.0, 'm': 1.0, 'in': 2.0, 'this': 2.0, 'with': 2.0, 'rear': 2.0, 'carrier': 1.0, 'then': 1.0, 'you': 1.0, 'bought': 2.0, 'come': 1.0, 'men': 1.0, 'garage': 1.0, 'the': 4.0, 'my': 1.0, 'walmart': 2.0, 'install': 1.0, 'forms': 1.0, 'that': 2.0, 'next': 1.0, 'power': 1.0, 'i': 2.0, 'don': 1.0, 'child': 1.0, 'x': 1.0, 'at': 3.0, 'bike': 3.0, 'brackets': 1.0, 'axle': 1.0, 'suspension': 2.0, 'have': 2.0, 't': 1.0, 'could': 1.0, 'we': 4.0, 's': 3.0, '26': 1.0, 'a': 2.0, 'these': 1.0, 'lower': 1.0, 'angle': 1.0, 'thick': 1.0, 'further': 1.0, 'approach': 1.0, 'of': 1.0, 'are': 1.0, 'and': 2.0, 'too': 1.0, 'as': 1.0, 'to': 1.0, 'spread': 1.0, 'had': 1.0, 'time': 1.0, 'so': 1.0, 'forever': 1.0}
Word element => {'lasted': 1.0, 'but': 1.0, 'using': 1.0, 'had': 1.0, 'feet': 1.0, 'good': 1.0, 'her': 1.0, 'with': 1.0, 'hit': 1.0, 'side': 1.0, 'is': 1.0, 'old': 1.0, 'relaxation': 1.0, 'excercise': 1.0, 'of': 1.0, 'got': 1.0, 'year': 1.0, 'bike': 1.0, 'first': 1.0, 'she': 1.0, 'it': 4.0, 'one': 1.0, 'taller': 1.0, 'mine': 1.0, 'for': 1.0, 'in': 1.0, 'took': 1.0, 'falling': 1.0, 'having': 1.0, 'installed': 1.0, 'came': 1.0, 'stop': 1.0, 'ended': 1.0, 'after': 1.0, 'however': 1.0, 'ride': 1.0, '3': 1.0, 'husbands': 1.0, 'on': 3.0, 'tires': 1.0, 'husband': 2.0, 'to': 2.0, 'was': 2.0, 'i': 2.0, 'two': 1.0, 'get': 1.0, 'across': 1.0, 'and': 7.0, 'another': 1.0, 'my': 4.0, 'trying': 1.0, 'active': 1.0, 'this': 1.0, 'kids': 2.0, 'again': 1.0, 'while': 2.0, 'from': 1.0, 'very': 1.0, 'asleep': 1.0, 'the': 4.0, 'great': 1.0, 'so': 1.0, 'bit': 1.0, 'time': 1.0, 'they': 1.0, 'set': 1.0, 'there': 1.0, 'up': 1.0, 'them': 1.0, 'could': 1.0, 'we': 3.0, 'a': 2.0, 'both': 1.0}
Word element => {'up': 1.0, 'call': 1.0, 't': 1.0, 'didn': 1.0, 'and': 1.0, 'came': 1.0, 'home': 1.0, 'was': 1.0, 'i': 1.0, 'for': 1.0, 'have': 1.0, 'needs': 1.0, 'also': 1.0, 'parts': 1.0, 'know': 1.0, 'not': 2.0, 'way': 1.0, 'when': 1.0, 'times': 1.0, 'you': 1.0, 'it': 4.0, 'bike': 1.0, 'with': 1.0, 'directly': 1.0, 'they': 3.0, 'or': 1.0, 'having': 1.0, 'does': 1.0, 'before': 1.0, 'related': 1.0, 'should': 1.0, 'there': 1.0, 'buzzed': 1.0, 'some': 1.0, 'ex': 1.0, 'fits': 1.0, 'all': 1.0, 'our': 1.0, 'seat': 1.0, 'to': 4.0, 'what': 2.0, 'had': 1.0, 'be': 1.0, 'buy': 1.0, 'work': 2.0, '2': 1.0, 'fed': 1.0, 'bikes': 2.0, 'the': 1.0, 'without': 1.0, 'is': 1.0, 'door': 1.0, 'horrible': 1.0, 'notes': 1.0, 'your': 1.0, 'put': 1.0, 'on': 1.0, 'us': 1.0}
Word element => {'serves': 1.0, '5': 1.0, 'having': 1.0, 'bike': 1.0, 'easy': 1.0, 'is': 2.0, 'suits': 1.0, 'my': 1.0, 'riding': 1.0, 'mountain': 1.0, 'the': 3.0, 'behind': 1.0, 'basic': 2.0, 'would': 2.0, 'enjoy': 1.0, 'ride': 1.0, '11': 1.0, 'son': 1.0, 'bought': 1.0, 'see': 1.0, 't': 2.0, 'we': 4.0, 'a': 4.0, 'this': 3.0, 'he': 2.0, 'month': 1.0, 'it': 2.0, 'fairly': 1.0, 'nicer': 1.0, 'purpose': 1.0, 'basis': 1.0, 'on': 3.0, 'point': 1.0, 'old': 1.0, 'our': 1.0, 'to': 3.0, 'husband': 1.0, 'just': 2.0, 'too': 1.0, 'and': 2.0, 'that': 1.0, 'loves': 1.0, 'didn': 1.0, 'really': 1.0, 'if': 2.0, 'want': 1.0, 'great': 1.0, 'install': 1.0, 'until': 1.0, 'spend': 1.0, 'which': 1.0, 'dollar': 1.0, 'like': 1.0, 'carrier': 3.0, 'top': 1.0, 'us': 1.0, 'determined': 1.0, 'product': 1.0, 'for': 1.0, 'amount': 1.0, 'of': 1.0, 'fine': 1.0, 'isn': 1.0, 'harness': 1.0, 'trial': 1.0, 'do': 1.0, 'much': 1.0}
Word element => {'off': 1.0, 'in': 1.0, 'get': 1.0, 'child': 1.0, 'over': 1.0, 'does': 1.0, 'hurt': 1.0, 'you': 2.0, 'also': 1.0, 'stuffed': 1.0, 'so': 1.0, 'did': 1.0, 'seat': 1.0, 'to': 1.0, 'was': 1.0, 'animals': 1.0, 'correctly': 1.0, 'happier': 1.0, 'your': 1.0, 'put': 1.0, 'not': 2.0, 'old': 1.0, 'returned': 2.0, 'fell': 1.0, 'it': 6.0, 'this': 2.0, 'bike': 2.0, 'children': 1.0, 'parts': 1.0, 'and': 5.0, 'difficult': 1.0, 'trailer': 3.0, 'the': 5.0, 'sitting': 1.0, '2': 1.0, 'if': 2.0, 'same': 1.0, 'tip': 1.0, '18': 1.0, 'even': 1.0, 'day': 1.0, 'daughter': 1.0, 'together': 1.0, 'with': 1.0, 'piece': 1.0, 'bought': 1.0, 'months': 1.0, 'of': 1.0, 'i': 1.0, 'junk': 1.0, 'could': 1.0, 'a': 2.0, 'we': 1.0, 'cheap': 1.0, 'fit': 1.0, 'for': 2.0, 'are': 1.0, 'much': 1.0, 'room': 1.0, 'my': 1.0, 'loves': 1.0, 'fall': 1.0, 'is': 1.0, 'holds': 1.0, 'books': 1.0, 'has': 1.0, 'some': 1.0}
Word element => {'max': 1.0, 'for': 2.0, 'safety': 1.0, 'trailers': 1.0, 'sure': 1.0, 'bike': 3.0, 'the': 3.0, 'careful': 1.0, 'pediatricians': 1.0, 'also': 1.0, 'spoken': 1.0, 'in': 1.0, 'i': 1.0, 'bicycle': 1.0, 'be': 1.0, 'weights': 1.0, 'using': 1.0, 'a': 2.0, 'work': 1.0, 'dangerous': 1.0, 'at': 1.0, 'no': 1.0, 'w': 2.0, 'before': 1.0, 'carier': 1.0, 'down': 1.0, 'and': 2.0, 'have': 1.0, 'when': 1.0, 'you': 2.0, 'protection': 1.0, 'doll': 1.0, 'behind': 3.0, 'or': 1.0, 'ut': 1.0, 'goes': 2.0, 'offer': 1.0, 'make': 1.0, 'your': 4.0, 'shop': 1.0, 'they': 1.0, 'child': 2.0, 'carrier': 1.0, 'into': 1.0, 'that': 1.0, 'are': 1.0, 'any': 2.0, 'seat': 1.0, 'to': 1.0, 'practice': 1.0, 'look': 1.0, 'if': 1.0}
Word element => {'looked': 1.0, 'and': 2.0, 'loves': 1.0, 'play': 1.0, 'other': 1.0, 'at': 1.0, 'things': 1.0, 'arrived': 1.0, 'condition': 1.0, 'she': 1.0, 'colors': 1.0, 'grandchild': 1.0, 'for': 1.0, 'than': 1.0, 'absolutely': 1.0, 'the': 1.0, 'great': 1.0, 'early': 1.0, 'much': 1.0, 'playards': 1.0, 'better': 1.0, 'i': 1.0, 'in': 1.0, 'perfect': 1.0, 've': 1.0}
Word element => {'shopped': 1.0, 'when': 1.0, 'we': 2.0, 'the': 1.0, 'that': 1.0, 'best': 1.0, 'baby': 1.0, 'our': 1.0, 'absoulutely': 1.0, 'is': 1.0, 'amazingly': 1.0, 'it': 2.0, 'nice': 1.0, 'and': 1.0, 'so': 1.0, 'saw': 1.0, 'loves': 1.0, 'colorful': 1.0, 'all': 2.0, 'of': 1.0, 'around': 2.0, 'playyards': 1.0, 'roomy': 1.0}
Word element => {'play': 1.0, 'n': 1.0, 'pak': 1.0, 'big': 1.0}
Word element => {'great': 1.0, 'got': 1.0, 'before': 1.0, 'myself': 1.0, 'by': 1.0, 'month': 1.0, 'he': 1.0, 'it': 1.0, 'did': 1.0, '9': 1.0, 'for': 1.0, 'which': 1.0, 'husband': 1.0, 'to': 2.0, 'and': 2.0, 'very': 2.0, 'my': 2.0, 'product': 1.0, 'bought': 1.0, 'affordable': 1.0, 'excellent': 1.0, 'loves': 1.0, 'play': 1.0, 'go': 1.0, 'in': 1.0, 'also': 2.0, 'home': 1.0, 'easy': 1.0, 'up': 1.0, 'set': 1.0, 'buy': 1.0, 'old': 1.0, 'i': 1.0}
Word element => {'winner': 1.0, 'real': 1.0, 'a': 1.0, 'view': 1.0, 'toddlers': 1.0, 'quite': 1.0, 'come': 1.0, 'pastels': 1.0, 'than': 1.0, 'take': 1.0, 'up': 1.0, 'which': 2.0, 'like': 1.0, 'even': 1.0, 'wouldn': 1.0, 'had': 1.0, 'make': 2.0, 'on': 2.0, 'so': 1.0, 'can': 1.0, 'just': 2.0, 'colors': 2.0, 'size': 1.0, 'nothing': 1.0, 'did': 1.0, 'makes': 1.0, 'for': 3.0, 'quilti': 1.0, 'this': 4.0, 'found': 1.0, 'that': 3.0, 'been': 1.0, 'loves': 1.0, 'extra': 1.0, 'primary': 1.0, 'ease': 1.0, 'play': 3.0, 'and': 5.0, 'with': 4.0, 'thought': 1.0, 'sometime': 1.0, 'it': 6.0, 'many': 1.0, 'she': 6.0, 'fascinated': 1.0, 'n': 1.0, 'bugs': 2.0, 'better': 1.0, 'pack': 1.0, 'put': 2.0, 'much': 2.0, 'more': 1.0, 'granddaughter': 1.0, 'you': 1.0, 'what': 1.0, 'when': 1.0, 'playard': 5.0, 'appealing': 2.0, 'graco': 1.0, 'in': 5.0, 'pens': 1.0, 'down': 1.0, 'inside': 2.0, 'love': 1.0, 'bottom': 2.0, 'best': 1.0, 'mirror': 1.0, 'part': 1.0, 'one': 1.0, 'gaze': 1.0, 'designs': 3.0, 'the': 14.0, 'of': 3.0, 'playing': 1.0, 'all': 2.0, 'playards': 1.0, 'as': 5.0, 'outside': 1.0, 'pretty': 1.0, 'to': 4.0, 'bright': 1.0, 'fooled': 1.0, 'shopping': 1.0, 'how': 1.0, 'me': 2.0, 'my': 1.0, 'but': 3.0, 'enjoys': 2.0, 'quilt': 1.0, 'different': 1.0, 'her': 1.0, 'sounds': 1.0, 'also': 1.0, 'until': 1.0, 'seems': 1.0, 'touched': 1.0, 'are': 2.0, 'i': 2.0, 'well': 2.0, 'has': 1.0, 'faces': 1.0, 'is': 4.0, 'at': 1.0, 't': 1.0, 'really': 1.0, 'enjoy': 1.0, 'time': 1.0, 'being': 1.0, 'very': 1.0, 'interesting': 1.0, 'seem': 1.0, 'children': 1.0}
Word element => {'asks': 1.0, 'great': 1.0, 'size': 1.0, 'easy': 1.0, 'to': 3.0, 'assemble': 1.0, 'would': 1.0, 'recommend': 1.0, 'that': 1.0, 'this': 1.0, 'playard': 1.0, 'anything': 1.0}
Word element => {'just': 1.0, 'modern': 1.0, 'more': 1.0, 'some': 1.0, 'update': 1.0, 'love': 1.0, 'first': 1.0, 'saw': 1.0, '90s': 1.0, '80s': 1.0, 'hand': 1.0, 'primary': 1.0, 'would': 1.0, 'either': 1.0, 'not': 1.0, 'mix': 1.0, 'heard': 1.0, 'from': 3.0, 'since': 1.0, 'back': 1.0, 've': 1.0, 'down': 2.0, 'need': 1.0, 'haven': 1.0, 'admit': 1.0, 'mom': 1.0, 'idea': 1.0, 'honestly': 2.0, 'enough': 1.0, 'lucky': 1.0, 'me': 3.0, 'my': 4.0, 'leave': 1.0, 'have': 2.0, 'worker': 1.0, 'for': 8.0, 'a': 3.0, 's': 5.0, 'take': 1.0, 'we': 3.0, 't': 2.0, 'but': 3.0, 'hard': 1.0, 'work': 1.0, 'had': 2.0, 'when': 2.0, 'what': 3.0, 'to': 13.0, 'our': 2.0, 'no': 1.0, 'is': 1.0, 'at': 3.0, 'who': 1.0, 'kudos': 1.0, 'playard': 2.0, 'give': 1.0, 'reviewers': 1.0, 'other': 1.0, 'all': 1.0, 'playing': 1.0, 'i': 10.0, 'two': 1.0, 'parents': 2.0, 'drawback': 1.0, 'naps': 1.0, 'given': 1.0, 'kids': 1.0, 'thought': 1.0, 'him': 1.0, 'it': 16.0, 'month': 1.0, 'by': 1.0, 'this': 3.0, 'few': 1.0, 'square': 1.0, 'put': 1.0, 'much': 1.0, 'do': 2.0, 'works': 1.0, 'shape': 1.0, 'half': 1.0, 'house': 2.0, 'co': 1.0, 'can': 2.0, 'so': 1.0, 'only': 1.0, 'amazing': 1.0, 'with': 3.0, 'plenty': 1.0, 'another': 1.0, 'extra': 1.0, 'were': 1.0, 'parts': 1.0, 'thrilled': 1.0, 'that': 3.0, 'inches': 1.0, 'expect': 1.0, 'opened': 1.0, 'was': 2.0, 'she': 3.0, 'unfortunately': 1.0, 'year': 3.0, 'old': 2.0, 'colors': 2.0, 'wanted': 1.0, 'in': 3.0, 'right': 1.0, 'away': 1.0, 'now': 1.0, 'and': 4.0, 'went': 1.0, 'movable': 1.0, 'didn': 1.0, 'want': 1.0, 'being': 1.0, 'sure': 1.0, 'out': 2.0, 'the': 5.0, 'of': 3.0, 'garish': 1.0, '28': 1.0, 'get': 2.0, 'months': 1.0, 'although': 1.0, 'still': 1.0, 'big': 1.0, 'be': 1.0, 'stays': 2.0, 'agree': 1.0, 'great': 2.0, 'her': 1.0, 'nap': 1.0, 'make': 1.0, 'up': 3.0, '7': 1.0, 'see': 2.0}
Word element => {'happier': 1.0, 'it': 1.0, 't': 1.0, 'loves': 1.0, 'she': 1.0, 'and': 1.0, 'child': 1.0, 'bought': 1.0, 'my': 1.0, 'be': 1.0, 'old': 1.0, '6mths': 1.0, 'i': 2.0, 'one': 1.0, 'for': 1.0, 'couldn': 1.0, 'god': 1.0, 'who': 1.0, 'is': 1.0}
Word element => {'will': 1.0, 'taken': 1.0, 'set': 1.0, 'easy': 2.0, 'was': 1.0, 'there': 1.0, 'when': 1.0, 'happy': 1.0, 'very': 1.0, 'so': 1.0, 'then': 1.0, 'in': 1.0, 'looks': 1.0, 'it': 3.0, 'up': 1.0, 'over': 1.0, 'haven': 1.0, 'goes': 1.0, 'parents': 1.0, 'for': 1.0, 'week': 1.0, 't': 1.0, 's': 1.0, 'a': 2.0, 'sometimes': 1.0, 'while': 1.0, 'me': 3.0, 'but': 1.0, 'can': 1.0, 'work': 1.0, '2': 1.0, 'playing': 1.0, 'turns': 1.0, 'the': 4.0, 'crinkly': 1.0, 'with': 1.0, 'this': 2.0, 'he': 5.0, 'old': 1.0, 'i': 3.0, 'one': 1.0, 'bought': 1.0, 'my': 1.0, 'days': 1.0, 'grandson': 1.0, 'toys': 1.0, 'playpen': 1.0, 'too': 1.0, 'asking': 1.0, 'and': 1.0, 'play': 2.0, 'yet': 1.0, 'or': 1.0, 'stays': 1.0, 'good': 1.0, 'that': 1.0, 'loves': 1.0, 'his': 1.0, 'year': 1.0, 'are': 1.0, 'who': 1.0, 'at': 1.0, 'is': 2.0, 'size': 1.0, 'be': 1.0, 'giving': 1.0, 'him': 2.0, 'sides': 1.0, 'plenty': 1.0, 'of': 2.0, 'room': 1.0, 'to': 5.0, 'think': 1.0, 'put': 1.0, '3': 1.0, 'on': 1.0, 'down': 1.0, 'inside': 2.0, 'especially': 1.0, 'butterfly': 1.0}
Word element => {'when': 1.0, 'in': 1.0, 's': 1.0, 'keep': 1.0, 'for': 1.0, 'one': 1.0, 'a': 1.0, 'that': 1.0, 'second': 1.0, 'herself': 1.0, 'at': 1.0, 'some': 1.0, 'have': 1.0, 'month': 1.0, '10': 1.0, 'to': 3.0, 'time': 1.0, 'pen': 1.0, 'happy': 1.0, 'my': 2.0, 'mother': 1.0, 'the': 1.0, 'we': 1.0, 'play': 1.0, 'it': 1.0, 'with': 1.0, 'this': 1.0, 'bought': 2.0, 'visit': 1.0, 'contain': 1.0, 'old': 1.0, 'i': 3.0, 'or': 2.0, 'am': 1.0, 'while': 1.0, 'chicago': 1.0, 'just': 1.0, 'cleaning': 1.0, 'around': 1.0, 'up': 1.0, 'cooking': 1.0, 'house': 1.0, 'so': 2.0, 'home': 1.0, 'she': 1.0, 'could': 1.0}
Word element => {'new': 1.0, 'than': 1.0, 'used': 1.0, 'with': 1.0, 'through': 1.0, 'trouble': 1.0, 'have': 1.0, 'i': 2.0, 'couple': 1.0, 'of': 2.0, 'plenty': 1.0, 'less': 1.0, 'goes': 1.0, 'expect': 1.0, 'second': 1.0, 'down': 2.0, 'take': 1.0, 'up': 2.0, 'after': 1.0, 'cute': 1.0, 'bright': 1.0, 'only': 1.0, 'this': 3.0, 'ever': 1.0, 'playpen': 2.0, 'sweetest': 1.0, 'on': 2.0, 'put': 1.0, 'your': 1.0, '3': 1.0, 'get': 1.0, 'searching': 1.0, 'sold': 1.0, 'too': 1.0, 'play': 1.0, 'and': 6.0, '10': 1.0, 'if': 1.0, 'bought': 1.0, 'months': 1.0, 'one': 2.0, 'for': 5.0, 'yet': 1.0, 'easily': 1.0, 'you': 1.0, 'no': 2.0, 'at': 1.0, 'look': 1.0, 'very': 1.0, 'playpens': 1.0, 'sleep': 1.0, 'to': 4.0, 'all': 1.0, 'my': 4.0, 'the': 3.0, 'is': 5.0, 'more': 1.0, 'go': 1.0, 'a': 3.0, 't': 1.0, 'are': 3.0, 'old': 2.0, 'sturdy': 1.0, 'year': 1.0, 'bugs': 2.0, 'babies': 1.0, 'loves': 1.0, 'even': 4.0, 'colors': 1.0, 'though': 1.0, 'it': 7.0, 'looks': 1.0, 'she': 3.0, 'ebay': 1.0, 'can': 2.0, '5': 1.0, 'reselling': 1.0, 'room': 1.0, 'talks': 1.0, 'in': 3.0, 'just': 1.0, 'lays': 1.0, 'there': 2.0, 'baby': 3.0, 'them': 1.0, 'so': 3.0}
Word element => {'com': 1.0, '3': 1.0, 'days': 1.0, 'great': 1.0, '2': 1.0, 'in': 2.0, 'shipped': 1.0, 'shaped': 1.0, 'm': 1.0, 'square': 1.0, 'and': 2.0, 'that': 1.0, 'playpens': 1.0, '8': 1.0, 'my': 1.0, 'now': 1.0, 'for': 1.0, 'month': 1.0, 'this': 1.0, 'it': 2.0, 'satisfied': 1.0, 'playpen': 1.0, 'most': 1.0, 'then': 1.0, 'got': 1.0, 'old': 1.0, 'i': 2.0, 'bigger': 1.0, 'lot': 1.0, 'she': 1.0, 'condition': 1.0, 'on': 1.0, 'everywhere': 1.0, 'nice': 1.0, 'has': 1.0, 'toys': 1.0, 'a': 1.0, 'bright': 1.0, 'highly': 1.0, 'colors': 1.0, 'amazon': 1.0, 'is': 1.0, 'side': 1.0, 'lt': 1.0, 'each': 1.0}
Word element => {'a': 1.0, 'better': 1.0, 'designed': 1.0, 'ever': 1.0, 'just': 1.0, 'fashioned': 1.0, 'who': 1.0, 'grandson': 2.0, 'have': 2.0, 'entertainment': 1.0, 'happy': 1.0, 'my': 1.0, 'are': 1.0, 'the': 2.0, 'playpen': 2.0, 'gotten': 1.0, 'for': 2.0, 'to': 1.0, 'had': 1.0, 'old': 1.0, 'i': 2.0, 'he': 1.0, 'this': 4.0, 'it': 1.0, 'loves': 1.0, 'walls': 1.0, 'enjoy': 1.0, 'him': 1.0, 'than': 1.0, 'different': 1.0, 'on': 1.0, 'is': 1.0, 'side': 1.0, 'something': 1.0, 'that': 1.0}
Word element => {'recommend': 1.0, 'recieved': 1.0, 'or': 1.0, 'loves': 1.0, 'by': 1.0, 'just': 1.0, 'son': 1.0, 'herself': 1.0, 'daughter': 1.0, 'side': 1.0, 'on': 1.0, 'bug': 1.0, 'roll': 1.0, 'talks': 1.0, 'room': 1.0, 'highly': 1.0, 'plenty': 1.0, 'toys': 2.0, 'with': 1.0, 'comfortably': 1.0, 'product': 1.0, 'love': 1.0, 'fit': 1.0, 'interactive': 1.0, 'they': 2.0, 'having': 1.0, 'yard': 1.0, 'my': 4.0, 'several': 1.0, 'about': 1.0, '8': 1.0, 'have': 2.0, 'pack': 1.0, 'n': 1.0, 'square': 1.0, 'it': 4.0, 'month': 2.0, 'couldn': 1.0, 'one': 2.0, 'i': 6.0, 'old': 2.0, 'had': 1.0, 'purchased': 2.0, 'use': 1.0, 'and': 6.0, 'play': 2.0, 'an': 1.0, 'work': 1.0, 'but': 1.0, 'wings': 1.0, 'cooking': 1.0, 'far': 1.0, 'loved': 1.0, 'mother': 1.0, 'the': 9.0, 'ones': 1.0, 'ago': 1.0, 'a': 1.0, 'we': 1.0, 't': 1.0, 'new': 1.0, 'rectangle': 1.0, 'time': 2.0, 'hold': 1.0, 'best': 1.0, 'mirror': 1.0, 'm': 1.0, 'both': 2.0, 'of': 2.0, 'at': 1.0, 'same': 1.0, 'is': 2.0, 'doing': 1.0, 'this': 2.0, 'kids': 1.0, 'perfect': 1.0, 'in': 3.0, 'kitchen': 1.0, 'while': 2.0, 'twins': 1.0, 'am': 1.0, 'all': 1.0, 'to': 2.0, 'outside': 1.0}
Word element => {'amazon': 1.0, 'thank': 1.0, 'baby': 1.0, 'her': 1.0, 'told': 1.0, 'of': 1.0, 'in': 1.0, 'smaller': 1.0, 'grandchild': 1.0, 'happy': 1.0, 'not': 2.0, 'did': 1.0, 'impressed': 1.0, 'i': 4.0, 'looked': 1.0, 'stores': 1.0, 'with': 1.0, 'versions': 1.0, 'this': 4.0, 'full': 2.0, 'stocking': 1.0, 'are': 1.0, 'is': 2.0, 'around': 1.0, 'most': 1.0, 'my': 2.0, 'purchase': 1.0, 'for': 3.0, 'a': 3.0, 'size': 3.0, 'the': 4.0, 'because': 1.0, 'yard': 1.0, 'find': 1.0, 'and': 4.0, 'play': 1.0, 'playpen': 1.0, 'one': 1.0, 'bought': 1.0, 'you': 1.0, 'when': 1.0, 'seen': 1.0, 'am': 1.0, 'very': 3.0, 'easy': 1.0, 'any': 1.0, 'to': 1.0, 'it': 1.0, 'she': 2.0, 'colorful': 1.0, 'was': 2.0, 'had': 2.0, 'many': 1.0, 'take': 1.0, 'up': 1.0, 'down': 1.0, 'item': 1.0, 'also': 1.0, 'daughter': 1.0, 'like': 1.0}
Word element => {'home': 1.0, 'her': 1.0, 'much': 1.0, 'liked': 1.0, 'law': 1.0, 'on': 1.0, 'go': 1.0, 'we': 1.0, 'un': 1.0, 'easy': 2.0, 'one': 1.0, 'bought': 1.0, 'color': 1.0, 'my': 3.0, 'eye': 1.0, 'when': 1.0, 'easily': 2.0, 'moves': 1.0, 'pen': 1.0, 'this': 3.0, 'she': 1.0, 'it': 4.0, 'as': 1.0, 'outside': 1.0, 'all': 1.0, 'to': 4.0, 'in': 4.0, 'also': 1.0, 'love': 1.0, 'for': 3.0, 'i': 1.0, 'mother': 1.0, 'loved': 1.0, 'and': 9.0, 'play': 2.0, 'playpen': 2.0, 'extra': 1.0, 'fold': 2.0, 'son': 2.0, 'vacation': 1.0, 'he': 2.0, 'catching': 1.0, 'very': 3.0, 'around': 1.0, 'is': 3.0, 'comfortable': 1.0, 'nice': 1.0, 'great': 1.0, 'the': 3.0, 'are': 1.0, 'transportation': 1.0, 'time': 1.0, 'so': 2.0, 'well': 1.0, 'has': 1.0, 'roomy': 1.0, 'likes': 1.0, 'schemes': 1.0, 'take': 2.0, 'his': 1.0, 'naps': 1.0, 'can': 1.0, 'inside': 1.0, 'stand': 1.0, 'toys': 1.0, 'amuse': 1.0, 'square': 1.0, 'built': 1.0, 'that': 1.0, 'into': 1.0, 'sides': 1.0, 'him': 1.0}
Word element => {'travel': 1.0, 'winter': 1.0, 'in': 1.0, 'down': 1.0, 'at': 1.0, 'blanket': 1.0, 'put': 1.0, 'lie': 1.0, 'need': 1.0, 'you': 1.0, 'around': 1.0, 'enough': 2.0, 'is': 2.0, 'do': 1.0, 'and': 1.0, 'to': 5.0, 'him': 3.0, 'got': 1.0, 'colors': 1.0, 'play': 2.0, 'i': 2.0, 'old': 1.0, 'activities': 1.0, 'playard': 1.0, 'big': 1.0, 'son': 1.0, 'graco': 1.0, 'the': 3.0, 'are': 1.0, 'with': 1.0, 'n': 1.0, 'it': 3.0, 'light': 1.0, 'month': 1.0, 'love': 1.0, 'for': 4.0, 'different': 1.0, '5': 1.0, 'crawl': 1.0, 'months': 1.0, 'a': 2.0, 'my': 1.0, 'ago': 1.0, 'bottom': 1.0, 'there': 1.0, 'pack': 1.0, 'four': 1.0}
Word element => {'recommend': 1.0, 'safe': 1.0, 'playing': 1.0, 'would': 1.0, 'him': 1.0, 'enjoy': 1.0, 'be': 1.0, 'll': 2.0, 'gets': 1.0, 'months': 1.0, '4': 1.0, 'place': 1.0, 'while': 1.0, 'spacious': 1.0, 'to': 1.0, 'its': 2.0, 'know': 1.0, 'because': 2.0, 'little': 1.0, 'play': 1.0, 'good': 1.0, 'think': 1.0, 'loves': 1.0, 'my': 1.0, 'the': 1.0, 'feel': 1.0, 'sooooooooooo': 1.0, 'pack': 1.0, 'can': 1.0, 'older': 1.0, 'he': 2.0, 'this': 1.0, 'n': 1.0, 'it': 2.0, 'as': 1.0, 'son': 1.0, 'old': 1.0, 'i': 4.0, 'bugs': 1.0, 'and': 2.0, 'lay': 1.0, 'in': 2.0, 'love': 1.0, 'for': 2.0, 'a': 2.0}
Word element => {'also': 1.0, 'sides': 1.0, 'loves': 1.0, 'toys': 2.0, 'with': 1.0, 'of': 1.0, 'plenty': 1.0, '10': 1.0, 'grandson': 1.0, 'now': 1.0, 'safe': 1.0, 'super': 1.0, 'baby': 1.0, 'room': 1.0, '5': 1.0, 'under': 1.0, 'needed': 1.0, 'well': 1.0, 'has': 1.0, 'on': 1.0, 'your': 1.0, 'i': 1.0, 'm': 1.0, 'enjoy': 1.0, 'daughter': 1.0, 'square': 1.0, 'three': 1.0, 'who': 2.0, 'grandma': 1.0, 'couldn': 1.0, 'months': 1.0, 'bought': 1.0, 'a': 3.0, 't': 2.0, 'my': 2.0, 'and': 1.0, 'play': 3.0, 'playpen': 1.0, 'children': 1.0, 'product': 1.0, 'for': 2.0, 'n': 1.0, 'not': 1.0, 'tiny': 1.0, 'pack': 1.0, 'have': 1.0, 'to': 3.0, 'our': 1.0, 'generation': 2.0, 'the': 5.0, 'without': 1.0, 'size': 1.0, 'large': 2.0, 'doesn': 1.0, 'is': 2.0, 'haven': 1.0, 'live': 1.0, 'made': 1.0, 'this': 2.0, 'perfect': 1.0}
Word element => {'money': 1.0, 'worth': 1.0, 'great': 1.0, 'mat': 1.0, 'by': 1.0, 'of': 1.0, 'side': 1.0, 'each': 1.0, 'toys': 1.0, 'able': 2.0, 'from': 1.0, 'problems': 1.0, 'her': 1.0, 'used': 1.0, 'well': 2.0, 'has': 1.0, 'move': 2.0, 'one': 1.0, 'for': 1.0, 'rectangular': 1.0, 'bed': 1.0, 'i': 1.0, 'took': 1.0, 'rolls': 1.0, 'as': 1.0, 'all': 2.0, 'to': 2.0, 'being': 1.0, 'purchased': 1.0, 'either': 1.0, 'this': 1.0, 'playard': 2.0, 'loves': 1.0, 'lot': 1.0, 'colorful': 1.0, 'it': 2.0, 'she': 4.0, 'kept': 1.0, 'c': 1.0, 'no': 1.0, 'place': 1.0, 'the': 6.0, 'purchase': 1.0, 'b': 1.0, 'my': 1.0, 'little': 1.0, 'girl': 1.0, 'around': 1.0, 'facinated': 1.0, 'much': 1.0, 'over': 1.0, 'on': 2.0, 'and': 4.0, 'too': 1.0, 'play': 1.0, 'a': 2.0, 's': 2.0, 'we': 1.0, 'also': 1.0, 'vacation': 1.0, 'there': 1.0}
Word element => {'thanks': 1.0, 'added': 1.0, 'them': 1.0, 'being': 1.0, 'an': 1.0, 'put': 1.0, 'fun': 2.0, 'down': 1.0, 'what': 1.0, 'bonus': 1.0, 'way': 1.0, 'a': 1.0, 'the': 2.0, 'my': 1.0, 'playpen': 1.0, 'in': 1.0, 'to': 1.0, 'wanted': 1.0, 'plus': 1.0, 'of': 1.0, 'up': 1.0, 'when': 1.0, 'grandchildren': 1.0, 'for': 2.0, 'one': 1.0, 'i': 3.0, 'visit': 1.0, 'this': 1.0, 'is': 2.0, 'away': 1.0, 'and': 2.0, 'chose': 1.0, 'researched': 1.0, 'easy': 3.0}
Word element => {'style': 1.0, 'age': 1.0, 'similar': 1.0, 'babies': 1.0, 'friends': 1.0, 'overall': 1.0, 'pen': 1.0, 'bought': 1.0, 'specifically': 1.0, 'room': 1.0, 'not': 2.0, 'we': 1.0, 'set': 2.0, 'opened': 1.0, 'woman': 1.0, 'recommend': 1.0, 'boy': 1.0, 'would': 1.0, 'an': 1.0, 'other': 2.0, 'taken': 2.0, 'crinkly': 1.0, 'purchase': 1.0, 'hasn': 1.0, 'only': 1.0, 'moved': 1.0, 'months': 1.0, 'one': 2.0, 'different': 1.0, '6': 1.0, 'completely': 1.0, 'around': 1.0, 'baby': 1.0, 'she': 5.0, 'bragged': 1.0, 'home': 1.0, 'is': 4.0, 'at': 1.0, 'keep': 1.0, 'but': 3.0, 'in': 3.0, 'very': 2.0, 'plays': 2.0, 'days': 1.0, '2': 1.0, 'thing': 1.0, 'gone': 1.0, 'pack': 1.0, 'butterfly': 1.0, 'her': 6.0, 'use': 1.0, 'smaller': 1.0, 'as': 2.0, 'to': 11.0, 'outside': 1.0, 'from': 1.0, 'nap': 1.0, 'about': 1.0, 'play': 4.0, 'anyone': 1.0, 'and': 7.0, 'olden': 1.0, 'playpen': 3.0, 'currently': 1.0, 'place': 1.0, 'square': 1.0, 'for': 2.0, 'girl': 1.0, 'where': 1.0, 'since': 1.0, '1': 1.0, 'perfectly': 1.0, 'down': 2.0, 'a': 9.0, 'sides': 1.0, 's': 1.0, 'fit': 1.0, 't': 2.0, 'i': 10.0, 'well': 1.0, 'n': 1.0, '30': 1.0, 'time': 2.0, 'new': 1.0, 'dinner': 1.0, 'first': 1.0, 'hated': 1.0, 'yard': 1.0, 'does': 1.0, 'few': 1.0, 'this': 6.0, 'confined': 1.0, 'criteria': 1.0, 'travel': 1.0, 'discover': 1.0, 'will': 1.0, 'living': 1.0, 'old': 2.0, 'that': 4.0, 'young': 1.0, '20': 1.0, 'before': 1.0, 'minutes': 2.0, 'doesn': 1.0, 'on': 4.0, 'own': 2.0, 'school': 1.0, 'span': 1.0, 'pleased': 1.0, 'up': 4.0, 'little': 1.0, 'or': 3.0, 'searched': 2.0, 'even': 2.0, 'just': 1.0, 'sit': 2.0, 'clean': 1.0, 'couch': 1.0, 'am': 1.0, 'relax': 1.0, 'my': 1.0, 'me': 1.0, 'may': 1.0, 'middle': 1.0, 'be': 1.0, 'move': 1.0, 'it': 6.0, 'already': 1.0, 'keeps': 1.0, 'big': 1.0, 'mat': 1.0, 'slope': 1.0, 'left': 1.0, 'have': 5.0, 'within': 1.0, 'problem': 1.0, 'allows': 1.0, 'with': 5.0, 'prepare': 1.0, 'still': 1.0, 'if': 1.0, 'attention': 1.0, 'the': 12.0, 'of': 1.0}
Word element => {'too': 1.0, 'them': 1.0, 'lot': 1.0, 'put': 1.0, 'more': 1.0, 't': 1.0, 'don': 1.0, 'you': 2.0, 'all': 1.0, 'can': 1.0, 'plastic': 1.0, 'want': 1.0, 'is': 1.0, 'on': 1.0, 'bag': 1.0, 'take': 1.0, 'time': 1.0, 'shopping': 1.0, 'that': 2.0, 'a': 2.0, 'go': 1.0, 'i': 2.0, 'saves': 1.0, 'those': 1.0, 'with': 1.0, 'it': 2.0, 'and': 1.0, 'me': 1.0, 'reusable': 1.0, 'getting': 1.0, 'sturdy': 1.0, 'every': 1.0, 'in': 1.0, 'grocery': 1.0, 'bags': 1.0}
Word element => {'top': 1.0, 'falling': 1.0, 'him': 1.0, 'way': 1.0, 'pull': 1.0, 'tries': 1.0, 'bumblebee': 1.0, 'interacting': 1.0, 'right': 1.0, 'side': 2.0, 'now': 1.0, 'attached': 1.0, 'from': 1.0, 'everything': 1.0, 'loves': 1.0, 'sure': 1.0, 'as': 1.0, 'to': 4.0, 'for': 1.0, 'firm': 1.0, 'with': 3.0, 'end': 1.0, 'my': 3.0, 'off': 1.0, 'images': 1.0, 'enough': 2.0, 're': 1.0, 'them': 1.0, 'baby': 4.0, 'toy': 1.0, 'at': 1.0, 'bigger': 1.0, 'mat': 2.0, 'slightly': 1.0, 'in': 2.0, 'he': 2.0, '6': 1.0, 'of': 2.0, 'on': 5.0, 'was': 2.0, 'without': 2.0, 'the': 10.0, 'between': 1.0, 'chose': 1.0, 'fall': 1.0, 'noted': 1.0, 'debating': 1.0, 'is': 4.0, 'safe': 1.0, 'people': 1.0, 'it': 3.0, 'room2': 1.0, 'soft': 1.0, 'joovy': 2.0, 'this': 3.0, 'and': 3.0, 'play': 2.0, 'yard': 1.0, 'because': 1.0, 'just': 1.0, 'odors': 1.0, 'built': 1.0, 'injury': 1.0, 'you': 1.0, 'done': 1.0, 'toys': 3.0, 'yelling': 1.0, 'sides': 1.0, 'assembly': 1.0, 'i': 2.0, 'two': 1.0, 'about': 1.0, 'no': 1.0, 'some': 1.0, 's': 1.0, 'steps': 1.0, 'a': 3.0, 'worrying': 1.0, 'each': 1.0, 'breeze': 1.0, 'let': 1.0, 'yet': 1.0, 'or': 2.0, 'months': 1.0, 'one': 2.0, 'foul': 1.0, 'strange': 1.0, 'which': 1.0, 'like': 1.0}
Word element => {'item': 1.0, 'highly': 1.0, 'would': 1.0, 'easily': 1.0, 'on': 1.0, 'this': 1.0, 'decorations': 1.0, 'lots': 1.0, 'sleeping': 1.0, 'very': 1.0, 'of': 2.0, 'bottom': 1.0, 'up': 1.0, 'has': 2.0, 'it': 2.0, 'i': 2.0, 'so': 1.0, 'set': 1.0, 'pleased': 1.0, 'to': 3.0, 'granddaughter': 1.0, 'was': 1.0, 'ones': 1.0, 'my': 1.0, 'squeak': 1.0, 'a': 2.0, 'bright': 1.0, 'space': 1.0, 'real': 1.0, 'are': 1.0, 'playpen': 1.0, 'both': 1.0, 'mirror': 1.0, 'the': 6.0, 'playing': 1.0, 'for': 2.0, 'attatched': 1.0, 'one': 1.0, 'sides': 2.0, 'find': 1.0, 'yard': 1.0, 'stored': 1.0, 'can': 1.0, 'either': 1.0, 'and': 4.0, 'play': 1.0, 'crinkle': 1.0, 'cheerful': 1.0, 'or': 1.0, 'reccomend': 1.0, 'is': 1.0, 'easy': 1.0, 'be': 1.0}
Word element => {'move': 1.0, 'to': 1.0, 'bit': 1.0, 'a': 1.0, 'in': 1.0, 'daughter': 1.0, 'built': 1.0, 'safe': 1.0, 'just': 1.0, 'around': 1.0, 'especially': 1.0, 'one': 2.0, 'heavy': 1.0, 'the': 4.0, 'keeps': 1.0, 'toys': 1.0, 'place': 1.0, 'right': 1.0, 'my': 1.0, 'happy': 1.0, 'loves': 1.0, 'into': 1.0, 'sides': 1.0, 'little': 1.0, 'minus': 1.0, 'is': 2.0, 'that': 1.0, 'only': 1.0, 'it': 1.0}
Word element => {'bright': 1.0, 'easily': 1.0, 'really': 1.0, 'naps': 1.0, 'his': 1.0, 'well': 1.0, 'slept': 1.0, 'him': 1.0, 'visit': 1.0, 'at': 1.0, 'night': 2.0, 'third': 1.0, 'by': 1.0, 'good': 1.0, 'so': 1.0, 'bassinet': 1.0, 'wanted': 1.0, 'was': 1.0, 'play': 2.0, 'and': 5.0, 'colors': 1.0, 'inserts': 1.0, 'limit': 1.0, 'old': 1.0, 'i': 3.0, '4': 1.0, 'up': 2.0, 'over': 1.0, 'piece': 1.0, 'on': 2.0, 'pack': 2.0, 'son': 2.0, 'that': 1.0, 'to': 3.0, 'our': 2.0, 'weight': 1.0, 'already': 1.0, 'added': 1.0, 'sets': 1.0, 'set': 1.0, 'overnight': 1.0, 'family': 1.0, 'another': 1.0, 'my': 2.0, 'asleep': 1.0, 'without': 1.0, 'the': 3.0, 'comfortable': 1.0, 'feel': 1.0, 'seemed': 1.0, 'great': 1.0, 'took': 1.0, 'mother': 1.0, 'sleeper': 1.0, 'this': 1.0, 'first': 1.0, 'he': 3.0, 'for': 2.0, 'product': 1.0, 'month': 1.0, 'it': 5.0, 'fell': 1.0, 'is': 1.0, 'like': 1.0, 'trip': 2.0, 'we': 1.0, 't': 1.0, 'a': 2.0, 's': 1.0, 'house': 1.0, 'in': 3.0, 'immediately': 1.0, 'while': 1.0, 'isn': 1.0}
Word element => {'invest': 1.0, 'every': 1.0, 'would': 1.0, 'satisfied': 1.0, 'spent': 1.0, 'money': 1.0, 'put': 1.0, 'on': 1.0, 'wings': 1.0, 'butterfly': 1.0, 'giggle': 1.0, 'look': 1.0, 'loves': 1.0, 'which': 1.0, 'mirror': 1.0, 'well': 1.0, 'likes': 1.0, 'has': 1.0, 'it': 1.0, 'of': 1.0, 'him': 1.0, 'this': 1.0, 'at': 2.0, 'tell': 1.0, 'quickly': 1.0, 'was': 2.0, 'content': 1.0, 'had': 1.0, 'he': 4.0, 'how': 1.0, 'while': 1.0, 'with': 1.0, 'date': 1.0, 'purchase': 1.0, 'my': 4.0, 'a': 1.0, 'i': 7.0, 'buy': 1.0, 'laundry': 1.0, 'teethe': 1.0, 'friend': 1.0, 'for': 2.0, 'bought': 1.0, 'one': 2.0, 'mom': 1.0, 'amazed': 1.0, 'son': 1.0, 'do': 2.0, 'pack': 1.0, 'have': 1.0, 'to': 6.0, 'as': 1.0, 'all': 1.0, 'and': 8.0, 'play': 2.0, 'watch': 1.0, 'visit': 1.0, 'playpen': 1.0, 'am': 2.0, 'when': 1.0, 'in': 3.0, 'playing': 1.0, 'the': 3.0, 'online': 2.0, 'home': 1.0, 'completely': 1.0, 'more': 1.0, 'is': 1.0, 'sweep': 1.0, 'course': 1.0, 'there': 1.0, 'now': 1.0, 'free': 1.0, 'simply': 1.0, 'time': 1.0, 'went': 2.0, 'dishes': 1.0}
Word element => {'think': 1.0, 'begining': 1.0, 'comes': 1.0, 'interlockinf': 1.0, 'recomend': 1.0, 'does': 1.0, 'say': 1.0, 'base': 1.0, 'would': 4.0, 'comment': 1.0, 'having': 1.0, 'safe': 1.0, 'eyes': 1.0, 'under': 2.0, 'things': 1.0, 'am': 1.0, 'while': 2.0, 'helpful': 2.0, 's': 2.0, 'house': 1.0, 'holding': 1.0, 'walks': 1.0, 'again': 1.0, 'cooking': 1.0, 'by': 1.0, 'very': 2.0, 'himself': 2.0, 'mat': 2.0, 'big': 1.0, 'idea': 1.0, 'sit': 1.0, 'when': 2.0, 'waited': 1.0, 'wanted': 1.0, 'and': 8.0, 'play': 5.0, 'enjoying': 1.0, 'legs': 1.0, 'months': 2.0, 'bought': 1.0, '2012': 1.0, '6': 1.0, 'he': 10.0, 'write': 1.0, 'but': 4.0, 'have': 3.0, 'shareholder': 1.0, 'with': 3.0, 'gracco': 2.0, 'to': 6.0, 'leave': 1.0, 'as': 1.0, 'here': 1.0, 'stays': 1.0, 'be': 2.0, 'a': 7.0, 'we': 1.0, 'going': 1.0, 'could': 1.0, 'fall': 1.0, 'that': 2.0, 'because': 2.0, 'some': 1.0, 'yard': 5.0, 'hurtful': 1.0, 'than': 1.0, 'found': 1.0, 'know': 3.0, 'hold': 1.0, 'in': 3.0, 'make': 1.0, 'sound': 1.0, 'product': 1.0, '10': 1.0, 'for': 2.0, 'extra': 1.0, 'opinion': 1.0, 'may': 1.0, 'my': 5.0, 'only': 1.0, 'usually': 1.0, 'purchase': 1.0, 'at': 1.0, 'is': 7.0, 'really': 4.0, 'january': 1.0, 'now': 2.0, 'was': 3.0, 'doing': 1.0, 'of': 5.0, 'the': 18.0, 'playing': 2.0, 'review': 1.0, 'good': 3.0, 'which': 1.0, 'made': 1.0, 'unconfortable': 1.0, 'ok': 1.0, 'best': 1.0, 'son': 3.0, 'this': 4.0, 'without': 1.0, 'soft': 1.0, 'him': 3.0, 'it': 6.0, 'decoration': 1.0, 'loves': 1.0, 'foam': 1.0, 'avoid': 1.0, 'april': 1.0, 'spends': 1.0, 'still': 1.0, 'bigger': 1.0, 'time': 4.0, 'there': 5.0, 'exercise': 1.0, 'put': 2.0, 'on': 3.0, 'around': 3.0, 'his': 3.0, 'inside': 1.0, 'stand': 2.0, 'try': 1.0, 'lot': 3.0, 'ones': 3.0, 'or': 1.0, 'falling': 1.0, 'over': 1.0, 'hard': 2.0, 'getting': 1.0, 'mats': 1.0, 'always': 1.0, 'them': 1.0, 'toys': 1.0, 'started': 1.0, 'hurt': 1.0, 'size': 1.0, 'until': 1.0, 'see': 1.0, 'cute': 1.0, 'bad': 1.0, 'plus': 1.0, 'first': 1.0, 'not': 2.0, 'standing': 1.0, 'i': 16.0, 'feet': 1.0, 'learned': 1.0}
Word element => {'daughter': 1.0, 'wants': 1.0, 'mirrors': 1.0, 'old': 1.0, 'to': 1.0, 'month': 1.0, 'love': 1.0, 'easy': 1.0, 'inside': 2.0, 'my': 1.0, 'great': 1.0, 'the': 1.0, 'and': 4.0, 'opens': 1.0, 'rattles': 1.0, 'sit': 1.0, '6': 1.0, 'of': 1.0, 'it': 1.0, 'this': 1.0, 'is': 1.0, 'playard': 1.0, 'closes': 1.0, 'a': 1.0}
Word element => {'exploring': 1.0, 'loves': 1.0, 'mat': 1.0, 'toys': 1.0, 'our': 1.0, 'another': 1.0, 'baby': 2.0, 'play': 1.0, 'and': 1.0, 'get': 1.0, 'pack': 1.0, 'much': 1.0, 'colorful': 1.0, 'to': 1.0, 'had': 1.0, 'so': 1.0, 'but': 1.0, 'this': 1.0, 'excited': 1.0, 'n': 1.0, 'it': 1.0, 'for': 1.0, 'love': 1.0, 'took': 1.0, 'up': 1.0, 'graco': 1.0, 'too': 1.0, 'space': 1.0, 'the': 1.0}
Word element => {'s': 1.0, 'time': 1.0, 'keep': 1.0, 'of': 1.0, 'amount': 1.0, 'just': 1.0, 'for': 1.0, 'attention': 1.0, 'a': 1.0, 'was': 1.0, 'worm': 1.0, 'plays': 1.0, 'glo': 1.0, 'baby': 2.0, 'the': 2.0, 'shower': 1.0, 'gift': 1.0, 'to': 1.0, 'right': 1.0, 'music': 1.0, 'it': 1.0}
Word element => {'place': 1.0, 'safe': 1.0, 'in': 1.0, 'contained': 1.0, 'baby': 1.0, 'know': 1.0, 'time': 1.0, 'short': 1.0, 'room': 1.0, 'is': 1.0, 'leave': 1.0, 'period': 1.0, 'it': 1.0, 'for': 2.0, 'crib': 1.0, 'play': 1.0, 'and': 1.0, 'gives': 1.0, 'as': 1.0, 'have': 1.0, 'pack': 1.0, 'works': 1.0, 'peace': 1.0, 'us': 1.0, 'when': 2.0, 'graco': 1.0, 'the': 3.0, 'to': 2.0, 'doubles': 1.0, 'well': 1.0, 'a': 3.0, 'needed': 1.0, 'if': 1.0, 'you': 2.0, 'plus': 1.0, 'of': 2.0, 'mind': 1.0}
Word element => {'very': 1.0, 'am': 1.0, 'colors': 1.0, 'and': 1.0, 'when': 1.0, 'i': 2.0, 'visit': 1.0, 'take': 1.0, 'satisfied': 1.0, 'play': 1.0, 'loves': 1.0, 'purchase': 1.0, 'bug': 1.0, 'anywhere': 1.0, 'grandchild': 1.0, 'my': 2.0, 'the': 3.0, 'comes': 1.0, 'to': 1.0, 'pack': 1.0, 'works': 1.0, 'can': 1.0, 'with': 1.0, 'n': 1.0, 'it': 1.0, 'he': 1.0, 'toys': 1.0, 'well': 1.0, 'bright': 1.0}
Word element => {'other': 1.0, 'save': 1.0, 'will': 1.0, 'two': 1.0, 'need': 1.0, 'packed': 1.0, 'when': 1.0, 'all': 1.0, 'to': 1.0, 'attachments': 1.0, '3': 1.0, 'd': 1.0, 'the': 7.0, 'paraphernalia': 1.0, 'is': 1.0, 'more': 1.0, 'a': 4.0, 'that': 1.0, 'quilt': 1.0, 'playpen': 1.0, 'wraps': 1.0, 'nap': 1.0, 'mesh': 1.0, 'no': 1.0, 'about': 1.0, 'sizable': 1.0, 'where': 1.0, 'for': 4.0, 'one': 2.0, 'bed': 1.0, 'unit': 2.0, 'colorful': 1.0, 'it': 1.0, 'play': 1.0, 'and': 1.0, 'its': 1.0, 'do': 2.0, 'up': 2.0, 'plus': 1.0, 'takes': 1.0, 'of': 1.0, 'siding': 1.0, 'amount': 1.0, 'are': 1.0, 'real': 1.0, 'lining': 1.0, 'would': 1.0, 'so': 2.0, 'neatly': 1.0, 'time': 1.0, 'while': 1.0, 'providing': 1.0, 'units': 1.0, 'space': 3.0, 'than': 1.0, 'usual': 1.0, 'port': 1.0, 'crib': 1.0, 'same': 1.0}
Word element => {'of': 1.0, 'out': 1.0, 'i': 3.0, 'in': 2.0, 'daughter': 1.0, 'for': 1.0, 'downstairs': 1.0, 'we': 1.0, 'a': 2.0, 'closet': 1.0, 'the': 2.0, '2': 1.0, 'is': 3.0, 'crawling': 1.0, 'size': 2.0, 'good': 2.0, 'our': 1.0, 'as': 1.0, 'to': 4.0, 'now': 1.0, 'am': 1.0, 'while': 1.0, 'solution': 1.0, 'get': 1.0, 'easy': 2.0, 'use': 1.0, 'she': 1.0, 'it': 4.0, 'with': 1.0, 'this': 1.0, 'wish': 1.0, 'rectangular': 1.0, '9': 1.0, 'and': 2.0, '1': 1.0, 'just': 3.0, 'wants': 1.0, 'fold': 1.0, 'up': 1.0, 'make': 1.0, 'put': 1.0, 'would': 1.0, 'dinner': 1.0, 'coat': 1.0, 'happy': 1.0, 'have': 1.0, 'before': 1.0, 'hang': 1.0, 'bought': 2.0, 'months': 1.0}
Word element => {'cindy': 1.0, 'perry': 1.0, 'prices': 1.0, 'markets': 1.0, 'avaible': 1.0, 'fair': 1.0, 'productes': 1.0, 'get': 1.0, 'ability': 1.0, 'hall': 1.0, 'cross': 1.0, 'not': 2.0, 'this': 1.0, 'foldes': 1.0, 'older': 1.0, 'it': 2.0, 'folding': 1.0, 'he': 1.0, 'in': 4.0, 'well': 1.0, 'a': 4.0, 'under': 1.0, 'having': 1.0, 'than': 1.0, 'fun': 1.0, 'plywood': 1.0, 'the': 10.0, 'great': 2.0, 'nicer': 1.0, 'are': 2.0, 'knows': 1.0, 'toys': 1.0, 'barrier': 1.0, 'is': 2.0, 'change': 1.0, 'on': 1.0, 'sides': 1.0, 'house': 1.0, 'workout': 1.0, 'sun': 1.0, 'christobal': 1.0, 'getting': 1.0, 'and': 3.0, 'to': 5.0, 'as': 3.0, 'floor': 1.0, 'travel': 1.0, 'cube': 1.0, 'models': 1.0, 'with': 1.0, 'stores': 1.0, 'at': 1.0, 'lot': 1.0, 'sheets': 1.0, 'local': 1.0, 'thanks': 1.0, 'again': 1.0, 'folded': 1.0, 'when': 1.0, 'up': 1.0, 'old': 1.0, 'makes': 1.0, 'into': 1.0, 'that': 2.0}
Word element => {'there': 1.0, 'right': 1.0, 'that': 1.0, 'baby': 2.0, 'this': 1.0, 'shower': 1.0, 'it': 3.0, 'with': 1.0, 'dad': 1.0, 'like': 1.0, 'nothing': 1.0, 'say': 1.0, 'is': 1.0, 'classic': 1.0, 'can': 1.0, 'eat': 1.0, 'timeless': 1.0, 'else': 1.0, 'years': 1.0, 'best': 2.0, 'buy': 1.0, 'mom': 1.0, 'anywhere': 1.0, 'a': 1.0, 't': 1.0, 'ago': 1.0, 'likes': 1.0, 'has': 1.0, 'room': 1.0, 'investment': 1.0, 'to': 2.0, 'had': 1.0, 'and': 3.0, 'play': 1.0, 'stay': 1.0, 'in': 2.0, 'the': 1.0, 'place': 1.0, 'safe': 2.0, 'take': 1.0, 'worth': 1.0, 'cent': 1.0, 'every': 1.0, '2008': 1.0, 'mobile': 1.0, 'one': 1.0, '23': 1.0, 'bought': 1.0, 'cook': 1.0, 'again': 1.0, 'doesn': 1.0}
Word element => {'would': 1.0, 'value': 1.0, 'to': 1.0, 'recommend': 1.0, 'easy': 1.0, 'down': 1.0, 'etc': 1.0, 'rattles': 1.0, 'bee': 1.0, 'that': 2.0, 'on': 1.0, 'fashion': 1.0, 'old': 1.0, 'pack': 1.0, 'great': 2.0, 'sun': 1.0, 'good': 1.0, 'of': 1.0, 'toys': 1.0, 'it': 1.0, 'this': 1.0, 'break': 1.0, 'and': 3.0, 'very': 3.0, 'side': 1.0, 'is': 3.0, 'each': 1.0, 'room': 1.0, 'stations': 1.0, 'mirror': 1.0, 'play': 2.0, 'playpen': 1.0, 'for': 1.0, 'highly': 1.0, 'setup': 1.0, 'lots': 1.0, 'colors': 1.0, 'baby': 1.0, 'a': 5.0, 'bright': 1.0, 'cute': 1.0}
Word element => {'of': 1.0, 'taking': 1.0, 'to': 1.0, 'don': 1.0, 'you': 1.0, 'just': 1.0, 'month': 1.0, '9': 1.0, 'in': 2.0, 'for': 1.0, 'comfortable': 1.0, 'and': 2.0, 'my': 2.0, 't': 1.0, 'great': 1.0, 'the': 2.0, 'a': 2.0, 'want': 1.0, 'fine': 1.0, 'is': 2.0, 'be': 1.0, 'product': 1.0, 'old': 1.0, 'it': 2.0, 'this': 1.0, 'but': 2.0, 'out': 1.0, 'fits': 1.0, 'carseat': 1.0, 'bit': 1.0, 'very': 1.0, 'big': 1.0, 'cumbersome': 1.0, 'definitely': 1.0, 'car': 2.0}
Word element => {'rating': 1.0, 'star': 1.0, '5': 1.0, 'give': 1.0, 'i': 1.0, 'together': 1.0, 'was': 1.0, 'the': 1.0, 'this': 2.0, 'it': 1.0, 'with': 1.0, 'toys': 1.0, 'has': 1.0, 'really': 1.0, 'more': 2.0, 'is': 2.0, 'a': 4.0, 'playpen': 3.0, 'and': 3.0, 'play': 1.0, 'little': 2.0, 'inside': 2.0, 'but': 1.0, 'than': 2.0, 'nice': 1.0, 'usual': 1.0, 'touch': 1.0, 'fine': 1.0, 'takes': 1.0, 'up': 1.0, 'there': 1.0, 'bigger': 1.0, 'space': 1.0, 'if': 1.0, 'good': 1.0, 'to': 2.0, 'outside': 1.0, 'still': 1.0, 'son': 1.0, 'also': 1.0, 'in': 1.0, 'my': 2.0, 'them': 1.0, 'baby': 1.0, 'babies': 1.0, 'that': 1.0, 'average': 1.0, 'built': 1.0, 'square': 1.0, 'used': 1.0, '18': 1.0, 'months': 1.0, 'for': 3.0, 'fit': 1.0}
Word element => {'escape': 1.0, 'and': 1.0, 'scale': 1.0, 'until': 1.0, 'handy': 1.0, 'come': 1.0, 'will': 1.0, 'sides': 1.0, 'though': 1.0, 'no': 1.0, 'order': 1.0, 'then': 1.0, 'compact': 1.0, 'wipeable': 1.0, 'easy': 1.0, 'up': 1.0, 'learns': 1.0, 'set': 1.0, 'matches': 1.0, 'fold': 1.0, 'bottom': 1.0, 'i': 4.0, 'but': 2.0, 'back': 1.0, 'the': 4.0, 'yet': 1.0, 'for': 2.0, 'more': 1.0, 'is': 4.0, 'in': 1.0, 'regular': 1.0, 'that': 2.0, 'girl': 1.0, 'baby': 2.0, 'isn': 1.0, 'she': 2.0, 'it': 4.0, 'this': 2.0, 'fitted': 2.0, 'much': 1.0, 'only': 1.0, 'have': 1.0, 'had': 1.0, 'our': 1.0, 'to': 4.0, 'as': 1.0, 's': 1.0, 't': 1.0, 'a': 4.0, 'know': 1.0, 'using': 1.0, 'like': 1.0, 'port': 1.0, 'crib': 1.0, 'draw': 1.0, 'there': 1.0, 'larger': 1.0, 'one': 1.0, 'bought': 1.0, 'some': 1.0, 'fleec': 1.0, 'make': 1.0, 'so': 1.0, 'sheet': 2.0}
Word element => {'children': 1.0, 'has': 1.0, 'even': 1.0, 'or': 1.0, 'into': 1.0, 'bonus': 1.0, 'you': 1.0, 'way': 1.0, 'up': 1.0, 'of': 2.0, 'folds': 1.0, 'carry': 1.0, 'sturdy': 2.0, 'toys': 1.0, 'bag': 1.0, 'non': 1.0, 'this': 2.0, 'it': 3.0, 'for': 1.0, 'product': 2.0, 'be': 1.0, 'is': 4.0, 'not': 2.0, 'seconds': 1.0, 'packs': 1.0, 'a': 4.0, 'the': 5.0, 'in': 3.0, 'on': 1.0, 'think': 1.0, 'portable': 3.0, 'stores': 1.0, 'out': 1.0, 'very': 1.0, 'big': 1.0, 'large': 1.0, 'compared': 1.0, 'as': 2.0, 'to': 2.0, 'what': 2.0, 'hazard': 1.0, 'they': 1.0, 'sell': 1.0, 'about': 2.0, 'sides': 1.0, 'twice': 1.0, 'change': 1.0, 'but': 1.0, 'and': 2.0, 'too': 1.0, 'each': 1.0, 'would': 1.0, 'i': 1.0, 'size': 1.0, 'nothing': 1.0}
Word element => {'experience': 1.0, 'whole': 1.0, 'with': 1.0, 'very': 1.0, 'arrived': 1.0, 'satisfied': 1.0, 'friday': 1.0, 'by': 1.0, 'tuesday': 1.0, 'bright': 1.0, 'see': 1.0, 'thank': 1.0, 'attracted': 1.0, 'the': 7.0, 'colors': 1.0, 'all': 1.0, 'to': 2.0, 'was': 1.0, 'old': 1.0, 'playpen': 2.0, 'mirror': 1.0, 'is': 2.0, 'herself': 1.0, 'she': 4.0, 'it': 2.0, 'month': 1.0, 'amazing': 1.0, 'a': 1.0, 's': 1.0, 'niece': 1.0, 'tiny': 1.0, 'bought': 1.0, 'be': 1.0, 'product': 1.0, 'for': 1.0, 'i': 3.0, '4': 1.0, 'on': 1.0, 'this': 1.0, 'found': 1.0, 'still': 1.0, 'ordered': 1.0, 'firefly': 1.0, 'up': 1.0, 'wings': 1.0, 'mushing': 1.0, 'baby': 2.0, 'started': 1.0, 'them': 1.0, 'and': 3.0, 'too': 1.0, 'in': 1.0, 'sitting': 1.0, 'but': 1.0, 'will': 1.0, 'purchase': 1.0, 'my': 1.0, 'starts': 1.0, 'you': 1.0, 'am': 1.0, 'when': 1.0, 'mesmerized': 1.0}
Word element => {'recommended': 1.0, 'highly': 1.0, 'in': 1.0, 'steps': 1.0, 'take': 1.0, 'actually': 1.0, 'town': 1.0, 'out': 1.0, 'my': 1.0, 'went': 1.0, 'daughter': 1.0, 'when': 1.0, 'a': 1.0, 'as': 1.0, 'games': 1.0, 'of': 1.0, 'up': 2.0, 'to': 2.0, 'easy': 1.0, 'her': 1.0, 'used': 1.0, 'is': 2.0, 'learned': 1.0, 'football': 1.0, 'transport': 1.0, 'pen': 2.0, 'great': 1.0, 'the': 1.0, 'first': 1.0, 'sooooo': 1.0, 'it': 1.0, 'this': 3.0, 'tailgating': 1.0, 'pick': 1.0, 'have': 1.0, 'put': 2.0, 'and': 2.0, 'away': 1.0, 'play': 1.0, 'we': 2.0, 'at': 1.0, 'park': 1.0, 'bed': 1.0, 'for': 1.0}
Word element => {'very': 1.0, 'great': 1.0, 'good': 1.0, 'loves': 1.0, 'stores': 1.0, 'my': 1.0, 'take': 1.0, 'granddaughter': 1.0, 'at': 1.0, 'is': 2.0, 'it': 4.0, 'this': 2.0, 'with': 1.0, 'camping': 1.0, 'us': 1.0, 'and': 3.0, 'up': 1.0, 'use': 1.0, 'home': 1.0, 'we': 1.0, 'playpen': 2.0, 'goes': 1.0, 'down': 1.0, 'a': 1.0, 'easily': 2.0}
Word element => {'out': 1.0, 'thought': 1.0, 'overall': 1.0, 'images': 1.0, 'grandson': 1.0, 'old': 1.0, 'item': 1.0, 'will': 1.0, 'during': 1.0, 'bag': 1.0, 'zipper': 1.0, 'been': 1.0, 'loves': 1.0, 'into': 1.0, 'compactly': 1.0, 'about': 1.0, 'thing': 1.0, 'whole': 1.0, 'great': 1.0, 'him': 1.0, 'be': 2.0, 'trip': 1.0, 'taking': 2.0, 'do': 1.0, 'can': 1.0, 'by': 1.0, 'easily': 1.0, 'when': 1.0, 'easy': 1.0, 'colorful': 1.0, 'month': 1.0, 'it': 3.0, 'older': 1.0, 'in': 1.0, 'beats': 1.0, 'this': 7.0, 'doing': 1.0, 'tried': 1.0, 'attract': 1.0, 'i': 3.0, 'at': 1.0, 'quickly': 1.0, 'because': 1.0, 'yard': 3.0, 'everything': 1.0, '10': 1.0, 'from': 1.0, 'compared': 1.0, 'around': 1.0, 'is': 3.0, 'wraps': 1.0, 'side': 3.0, '6': 1.0, 'extremely': 1.0, 'scooting': 1.0, 'outside': 1.0, 'least': 1.0, 'to': 5.0, 'fingers': 1.0, 'up': 4.0, 'pleased': 1.0, 'set': 2.0, 'summer': 1.0, 'plus': 1.0, 'there': 1.0, 'minutes': 1.0, 'doesn': 1.0, 'the': 4.0, 'with': 1.0, 'exhaust': 1.0, 'so': 2.0, 'me': 1.0, 'play': 3.0, 'and': 4.0, 'breeze': 1.0, 'would': 1.0, 've': 2.0, 'each': 1.0, 'snaps': 1.0, 't': 1.0, 'a': 5.0, 'months': 1.0, 'one': 1.0, 'mechanism': 2.0, 'push': 1.0, 'fits': 1.0, 'another': 1.0, 'my': 2.0, 'releasing': 1.0, 'on': 3.0, 'well': 1.0, 'easier': 1.0}
Word element => {'well': 1.0, 'very': 1.0, 'worked': 1.0, 'and': 1.0, 'bottom': 1.0, 'of': 3.0, 'in': 1.0, 'ready': 1.0, 'needed': 1.0, 'fantastic': 1.0, 'lot': 1.0, 'just': 1.0, 'not': 1.0, 'the': 4.0, 'sits': 1.0, 'out': 1.0, 'pad': 1.0, 'this': 2.0, 'it': 3.0, 'other': 1.0, 'than': 1.0, 'does': 1.0, 'do': 1.0, 'to': 3.0, 'what': 1.0, 'had': 1.0, 'box': 1.0, 'came': 1.0, 'supposed': 1.0, 'product': 1.0, 'baby': 1.0, 'put': 1.0, 'portable': 1.0, 'on': 1.0, 'directions': 1.0, 'model': 1.0, 'playpen': 1.0, 'were': 1.0, 'good': 2.0, 'which': 1.0, 'say': 1.0, 'is': 1.0, 'better': 1.0, 'go': 1.0, 'we': 1.0, 's': 1.0, 'a': 2.0, 'products': 1.0, 'but': 1.0, 'can': 1.0, 'prior': 1.0}
Word element => {'in': 1.0, 'but': 1.0, 'be': 1.0, 'well': 1.0, 'that': 1.0, 'better': 1.0, 'their': 1.0, 'parents': 1.0, 'busy': 1.0, 'this': 3.0, 'it': 1.0, 'for': 1.0, 'product': 1.0, 'now': 1.0, 'all': 2.0, 'to': 1.0, 'is': 1.0, 'everything': 1.0, 'new': 1.0, 'would': 1.0, 'little': 2.0, 'recommend': 1.0, 'easy': 1.0, 'break': 1.0, 'and': 6.0, 'my': 1.0, 'happy': 1.0, 'baby': 1.0, 'keeps': 1.0, 'lots': 1.0, 'claims': 1.0, 'then': 1.0, 'they': 1.0, 'item': 1.0, 'will': 1.0, 'secure': 1.0, 'back': 1.0, 'using': 1.0, 'know': 1.0, 'carrying': 1.0, 'great': 1.0, 'babyis': 1.0, 'of': 1.0, 'up': 1.0, 'room': 1.0, 'set': 1.0, 'built': 1.0, 'safe': 1.0, 'take': 1.0, 'need': 1.0, 'bag': 1.0, 'down': 1.0, 'a': 3.0, 'could': 1.0}
Word element => {'n': 1.0, 'totbloc': 1.0, 'graco': 1.0, 'highly': 1.0, 'grandparents': 1.0, 'his': 1.0, 'in': 4.0, 'it': 3.0, 'he': 2.0, 'perfect': 1.0, 'this': 1.0, 'shower': 1.0, 'attached': 1.0, 'pack': 1.0, 'considering': 1.0, 'frst': 1.0, 'or': 1.0, 'playpen': 1.0, 'entertained': 1.0, 'recommend': 1.0, 'minutes': 1.0, 'was': 2.0, 'had': 1.0, 'assembles': 1.0, 's': 1.0, 'we': 2.0, 'a': 2.0, 'neatly': 1.0, 'time': 1.0, 'to': 2.0, 'our': 1.0, 'the': 4.0, 'playing': 1.0, 'loves': 1.0, 'been': 1.0, 'at': 1.0, 'keep': 2.0, 'him': 1.0, 'while': 1.0, 'cooking': 1.0, 'would': 1.0, 'dinner': 1.0, 'are': 1.0, 'quickly': 1.0, 'play': 1.0, 'and': 2.0, 'with': 2.0, 'buying': 1.0, 'stores': 1.0, 'easily': 1.0, 'taking': 1.0, 'included': 1.0, 'son': 1.0, 'storage': 1.0, 'another': 1.0, 'toys': 1.0, 'short': 1.0, 'bag': 1.0}
Word element => {'too': 1.0, 'without': 1.0, 'room': 1.0, 'lots': 1.0, 'has': 1.0, 'things': 1.0, 'quickly': 1.0, 'safe': 1.0, 'is': 1.0, 'clean': 1.0, 'assemble': 1.0, 'easy': 1.0, 'she': 2.0, 'spacious': 1.0, 'feel': 1.0, 'every': 1.0, 'of': 1.0, '6': 1.0, 'my': 1.0, 'the': 1.0, 'play': 1.0, 'object': 1.0, 'colored': 1.0, 'done': 1.0, 'get': 1.0, 'getting': 1.0, 'and': 4.0, 'very': 1.0, 'to': 2.0, 'mo': 1.0, 'rolls': 1.0, 'bored': 1.0, 's': 1.0, 'loves': 1.0, 'i': 2.0, 'old': 1.0, 'while': 1.0, 'place': 1.0, 'around': 1.0, 'over': 1.0, 'plays': 1.0, 'it': 2.0, 'with': 1.0, 'all': 1.0, 'brightly': 1.0}
Word element => {'in': 1.0, 'him': 1.0, 'around': 1.0, 'roll': 1.0, 'enough': 1.0, 's': 1.0, 'loves': 1.0, 'can': 1.0, 'playpen': 1.0, 'my': 1.0, 'biggest': 1.0, 'probably': 1.0, 'is': 1.0, 'one': 2.0, 'for': 2.0, 'long': 1.0, 'but': 2.0, 'didn': 1.0, 'any': 1.0, 'price': 1.0, 'big': 1.0, 'son': 1.0, 'very': 1.0, 'shipping': 1.0, 'same': 1.0, 'out': 1.0, 'were': 1.0, 'arrive': 1.0, 'wait': 1.0, 'at': 1.0, 'wallyworld': 1.0, 'they': 1.0, 'free': 1.0, 'it': 3.0, 'this': 2.0, 'the': 3.0, 't': 1.0, 'stock': 1.0, 'have': 1.0, 'of': 1.0, 'i': 1.0, 'find': 1.0, 'still': 1.0, 'had': 1.0, 'was': 1.0, 'to': 3.0}
Word element => {'each': 1.0, 'there': 1.0, 'of': 1.0, 'baby': 1.0, 'with': 1.0, '4': 1.0, 'i': 1.0, 'the': 7.0, 'crib': 1.0, 'size': 1.0, 'so': 1.0, 'only': 1.0, 'much': 1.0, 'thus': 1.0, 'other': 1.0, 'perfect': 1.0, 'based': 1.0, 'this': 1.0, 'it': 1.0, 'just': 1.0, 'not': 1.0, 'touching': 1.0, 'far': 1.0, 'toys': 3.0, 'little': 2.0, 'very': 1.0, 'like': 2.0, 'is': 2.0, 'on': 2.0, 'customer': 1.0, 'dirty': 1.0, 'freak': 1.0, 'reviews': 1.0, 'are': 4.0, 'bought': 1.0, 'one': 1.0, 'enough': 1.0, 'longer': 1.0, 'especially': 1.0, 'outside': 1.0, 'to': 1.0, 'right': 1.0, 'cleanliness': 1.0, 'last': 1.0, 'we': 2.0, 'a': 2.0, 'because': 1.0, 'does': 1.0, 'than': 1.0, 'play': 1.0, 'and': 1.0, 'too': 1.0, 'similar': 1.0, 'products': 1.0, 'colors': 1.0, 'great': 1.0, 'big': 2.0, 'nice': 1.0, 'can': 1.0, 'but': 2.0, 'four': 1.0, 'if': 1.0, 'am': 1.0, 'you': 2.0}
Word element => {'something': 1.0, 'buy': 1.0, 'flying': 1.0, 're': 1.0, 'if': 1.0, 'car': 1.0, 'those': 1.0, 'getting': 1.0, 'are': 1.0, 'would': 1.0, 'not': 2.0, 'give': 1.0, 'n': 1.0, '4': 1.0, 'place': 1.0, 'smack': 1.0, 'in': 3.0, 'around': 3.0, 'cruise': 1.0, 'folds': 1.0, 'loves': 1.0, 'babies': 1.0, 'contained': 1.0, 'keep': 1.0, 'is': 4.0, 'at': 1.0, 'or': 1.0, 'need': 1.0, 'your': 1.0, 'put': 1.0, 'why': 1.0, 'stuff': 1.0, 'get': 1.0, 'months': 2.0, 'bought': 1.0, 'too': 1.0, 'one': 3.0, 'set': 1.0, 'you': 2.0, '11': 1.0, 'rattle': 1.0, 'a': 8.0, 'we': 3.0, 'fixed': 1.0, 'to': 4.0, 'all': 2.0, 'now': 1.0, 'lbs': 1.0, 'was': 1.0, 'my': 1.0, 'son': 1.0, 'and': 4.0, 'old': 1.0, 'few': 1.0, 'this': 2.0, '30': 1.0, 'only': 1.0, 'better': 1.0, 'think': 1.0, 'pack': 1.0, 'he': 2.0, 'playpen': 2.0, 'fair': 1.0, 'the': 8.0, 'of': 5.0, 'on': 2.0, 'amount': 1.0, 'when': 2.0, 'bug': 1.0, 'trips': 1.0, 'them': 1.0, 'child': 1.0, 'out': 1.0, 'great': 1.0, 'for': 4.0, 'portable': 1.0, 'stars': 1.0, 'sleeping': 1.0, 'though': 1.0, 's': 4.0, 'sides': 1.0, 'up': 2.0, 'noisy': 1.0, 'that': 2.0, 'because': 1.0, 'fabulous': 1.0, 'fun': 1.0, 'little': 2.0, 'critters': 1.0, 'four': 1.0, 'built': 1.0, 'be': 2.0, 'bit': 1.0, 'can': 1.0, 'so': 1.0, 'use': 1.0, 'smaller': 2.0, 'i': 2.0, 'fast': 1.0, 'as': 2.0, 'heavy': 1.0, 'which': 1.0, 'side': 1.0, 'ideal': 1.0, 'it': 8.0, 'already': 1.0, 'lug': 1.0, 'crib': 1.0, 'with': 1.0, 'breeze': 1.0, 'parents': 1.0, 'roomy': 1.0, 'have': 1.0, 'their': 1.0, 'plays': 1.0}
Word element => {'recommend': 1.0, 'definitely': 1.0, 'very': 1.0, 'in': 1.0, 'for': 1.0, 'colorful': 1.0, 'play': 1.0, 'wonderful': 1.0, 'beautiful': 1.0, 'would': 1.0, 'playpen': 1.0, 'baby': 1.0, 'hard': 1.0, 'to': 2.0, 'made': 1.0, 'find': 1.0, 'square': 1.0, 'is': 1.0, 'size': 1.0, 'perfect': 1.0, 'well': 1.0, 'roomy': 1.0}
Word element => {'down': 1.0, 'playpen': 1.0, 'daughter': 1.0, 'but': 1.0, 'was': 1.0, 'to': 2.0, 'items': 1.0, 'finding': 1.0, 'pack': 1.0, 'take': 1.0, 'many': 1.0, 'larger': 1.0, 'there': 1.0, 'square': 1.0, 'set': 1.0, 'up': 1.0, 'time': 1.0, 'pen': 1.0, 'they': 1.0, 'has': 1.0, 'for': 1.0, 'one': 1.0, 'hard': 1.0, 'n': 1.0, 'this': 1.0, 'with': 1.0, 'i': 3.0, 'grand': 1.0, 'exactly': 1.0, 'are': 1.0, 'my': 1.0, 'like': 1.0, 'made': 1.0, 'years': 1.0, 'had': 1.0, 'what': 1.0, 'it': 1.0, 'she': 1.0, 'easy': 1.0, 'room': 1.0, 'roll': 1.0, 'around': 1.0, 'play': 3.0, 'and': 3.0, 'wanted': 2.0, 'toys': 1.0, 'a': 3.0, 'ago': 1.0, 's': 1.0}
Word element => {'do': 1.0, 'says': 1.0, 'large': 1.0, 'heavy': 1.0, 'since': 2.0, 'open': 1.0, 'am': 1.0, 'when': 1.0, 'awkward': 1.0, 'happy': 1.0, 'quite': 1.0, 'size': 1.0, 'although': 1.0, 'back': 1.0, 'time': 1.0, 'then': 1.0, 'night': 1.0, 'still': 1.0, 'middle': 1.0, 'with': 2.0, 'want': 1.0, 'vacation': 1.0, 'be': 2.0, 'colors': 1.0, 'move': 1.0, 'however': 1.0, 'bright': 1.0, 'going': 1.0, 'a': 4.0, 'toys': 2.0, 'really': 1.0, 'around': 1.0, 'is': 5.0, 'must': 1.0, 'hard': 1.0, 'from': 1.0, 'like': 1.0, 'place': 1.0, 'the': 8.0, 'great': 1.0, 'worthy': 1.0, 'it': 7.0, 'this': 1.0, 'and': 6.0, 'play': 3.0, 'other': 1.0, '4': 1.0, 'lumpy': 1.0, 'i': 4.0, 'in': 2.0, 'will': 1.0, 'also': 1.0, 'of': 3.0, 'wake': 1.0, 'stars': 1.0, 'love': 1.0, 'for': 2.0, 'built': 1.0, 'sheets': 1.0, 'our': 1.0, 'as': 1.0, 'to': 5.0, 'sleep': 2.0, 'unfortunately': 1.0, 'cause': 1.0, 'company': 1.0, 'my': 1.0, 'pad': 2.0, 'what': 1.0, 'had': 1.0, 'purchased': 1.0, 'somewhat': 1.0, 'bought': 1.0, 'uncomfortable': 1.0, 'does': 1.0, 'than': 1.0, 'graco': 1.0, 'daughter': 1.0, 'little': 1.0, 'would': 1.0, 'up': 1.0}
Word element => {'up': 1.0, 'pack': 1.0, 'just': 2.0, 'bag': 1.0, 'with': 1.0, 'not': 1.0, 'playard': 1.0, 'average': 1.0, 'than': 1.0, 'bigger': 1.0, 'very': 1.0, 'attention': 1.0, 'months': 2.0, 'story': 1.0, 'baby': 1.0, 'colors': 1.0, 'traveling': 1.0, 'when': 3.0, 'i': 1.0, 'old': 1.0, 'like': 1.0, 'provide': 1.0, 'playpen': 1.0, 'too': 1.0, 'play': 1.0, 'this': 2.0, 'it': 5.0, '100': 1.0, 'he': 1.0, 'no': 1.0, 'comes': 1.0, 'around': 1.0, 'is': 4.0, 'the': 6.0, 'nice': 1.0, 'big': 1.0, 'great': 1.0, 'are': 4.0, 'family': 1.0, 'best': 1.0, 'was': 1.0, 'attached': 1.0, 'now': 1.0, 'purchased': 1.0, 'designs': 1.0, 'enjoys': 1.0, '3': 1.0, '9': 1.0, 'attachments': 1.0, 'still': 1.0, 'entertaining': 1.0, 'being': 1.0, 'in': 2.0, 'have': 1.0, 'we': 5.0, 't': 1.0, 'a': 2.0, 'house': 1.0, 'other': 1.0, 'naps': 1.0, 'graco': 1.0, 'kept': 1.0, 'room': 1.0, 'love': 1.0, 'for': 1.0, 'so': 2.0, 'time': 1.0, 'but': 1.0, '2': 1.0, 'can': 1.0}
Word element => {'3': 1.0, 'it': 6.0, 'in': 3.0, 'reach': 1.0, 'possibly': 1.0, 'place': 1.0, 'toys': 1.0, 'started': 1.0, 'she': 4.0, 'baby': 2.0, 'mouth': 1.0, 'and': 6.0, 'plain': 1.0, 'material': 1.0, 'a': 4.0, 't': 1.0, 'could': 1.0, 'we': 1.0, 'kept': 1.0, 'stars': 1.0, 'product': 3.0, 'used': 1.0, 'yard': 1.0, 'some': 1.0, '2': 2.0, 'but': 3.0, 'antlers': 5.0, 'time': 2.0, 'playing': 1.0, 'all': 2.0, 'to': 2.0, 'graco': 1.0, 'choking': 1.0, 'overstimulated': 1.0, 'have': 1.0, 'was': 2.0, 'mo': 1.0, 'purpose': 1.0, 'with': 4.0, 'first': 1.0, 'assued': 1.0, 'this': 4.0, 'wish': 1.0, 'joovy': 1.0, 'bugs': 3.0, 'puts': 1.0, 'old': 2.0, 'coming': 1.0, 'i': 7.0, 'took': 1.0, 'given': 1.0, 'problem': 1.0, 'worry': 1.0, 'serves': 1.0, 'reaching': 1.0, '1': 1.0, 'pass': 1.0, 'months': 1.0, 'get': 2.0, 'frustrated': 2.0, 'her': 2.0, 'when': 2.0, 'couldn': 1.0, 'at': 2.0, 'is': 3.0, 'now': 1.0, 'for': 3.0, '10': 1.0, 'no': 1.0, 'play': 2.0, 'about': 1.0, 'the': 10.0, 'longer': 1.0, 'bottom': 1.0, 'covering': 1.0, 'still': 2.0, 'on': 2.0, 'slowly': 1.0, 'they': 1.0, 'off': 1.0, 'cover': 1.0, 'be': 1.0, 'hazard': 1.0, 'up': 1.0, 'materials': 1.0, '5': 1.0, 'blanket': 1.0, 'bought': 1.0, 'called': 1.0, 'mirror': 1.0, 'would': 2.0, 'ladybug': 1.0, 'not': 2.0, 'my': 2.0, 'me': 1.0, 'received': 1.0, 'were': 1.0, 'safe': 1.0, 'just': 1.0}
Word element => {'association': 1.0, 'negative': 1.0, 'brought': 1.0, 'leaving': 1.0, 'grandma': 1.0, 'lot': 1.0, 'does': 1.0, 'think': 1.0, 'enough': 1.0, 'around': 2.0, 'adult': 1.0, 'there': 2.0, 'so': 1.0, 'can': 1.0, 'he': 1.0, 'with': 3.0, 'playpen': 2.0, 'son': 2.0, 'have': 2.0, '5': 1.0, 'modify': 1.0, 'is': 4.0, '2013my': 1.0, '4': 1.0, 'add': 1.0, 'received': 1.0, 'toys': 2.0, 'doesn': 1.0, 'sure': 1.0, 'each': 1.0, 'would': 1.0, 'when': 2.0, 'a': 7.0, 'likes': 2.0, 't': 2.0, 'we': 5.0, 'then': 1.0, 'some': 1.0, 'never': 1.0, 'spent': 2.0, 'her': 5.0, 'but': 1.0, '2': 2.0, 'most': 2.0, '3': 2.0, 'time': 3.0, 'like': 4.0, 'reading': 1.0, 'willing': 1.0, 'my': 6.0, 'overwhelmingly': 1.0, 'only': 1.0, 'put': 1.0, 'do': 2.0, 'after': 3.0, 'to': 5.0, 'outside': 1.0, 'as': 6.0, 'an': 1.0, 'all': 1.0, 'was': 1.0, 'minutes': 4.0, 'why': 1.0, 'just': 1.0, 'positive': 1.0, 'appeared': 1.0, 'product': 2.0, 'bought': 1.0, 'fact': 2.0, 'old': 3.0, 'in': 7.0, 'playyard': 1.0, 'daughter': 5.0, '7': 1.0, '9': 1.0, 'it': 16.0, 'many': 1.0, 'she': 8.0, 'ok': 1.0, 'wouldn': 1.0, 'are': 1.0, 'first': 1.0, 'few': 1.0, 'this': 5.0, 'minute': 1.0, 'kids': 1.0, 'out': 1.0, 'review': 4.0, 'i': 6.0, 'well': 1.0, 'arrived': 1.0, 'and': 5.0, 'about': 4.0, 'play': 1.0, 'spend': 2.0, 'feel': 1.0, 'more': 1.0, 'than': 1.0, 's': 2.0, 'maybe': 1.0, 'might': 1.0, 'entertaining': 1.0, '10': 1.0, 'wanted': 1.0, 'kept': 1.0, 'from': 1.0, 'peekaboo': 1.0, 'be': 2.0, 'here': 2.0, 'if': 2.0, 'stay': 1.0, 'not': 3.0, 'on': 3.0, 'long': 2.0, 'almost': 1.0, 'now': 2.0, 'away': 1.0, '18': 1.0, 'gave': 2.0, 'month': 3.0, 'total': 1.0, 'the': 8.0, 'of': 2.0, 'that': 5.0, 'because': 1.0, '20': 1.0, 'has': 1.0, 'tries': 1.0, 'good': 1.0, 'made': 1.0, 'based': 1.0, 'gift': 1.0, '1': 1.0, 'friend': 1.0, '30': 1.0, 'star': 2.0, 'times': 1.0, 'aware': 1.0, 'tried': 1.0, 'seems': 1.0, 'though': 2.0}
Word element => {'of': 1.0, 'same': 1.0, 'every': 1.0, 'little': 1.0, 'and': 1.0, 'soft': 1.0, 'enough': 1.0, 'colors': 1.0, 'best': 1.0, 'at': 1.0, 'really': 1.0, 'toys': 1.0, 'time': 1.0, 'kid': 1.0, 'wonderful': 1.0, 'the': 3.0, 'great': 1.0, 'for': 1.0, 'love': 1.0, 'hard': 1.0, 'it': 2.0, 'product': 1.0, 'till': 1.0, 'bit': 1.0}
Word element => {'washable': 1.0, 'up': 2.0, 'set': 1.0, 'by': 1.0, 'room': 3.0, 'from': 1.0, 'hard': 1.0, 'be': 2.0, 'would': 2.0, 'playpen': 1.0, 'will': 1.0, 'hour': 1.0, 'an': 1.0, 'no': 1.0, 'about': 2.0, 'his': 1.0, 'last': 1.0, 'move': 1.0, 'played': 2.0, 'my': 2.0, 'time': 1.0, 'naps': 1.0, 'where': 1.0, 'scooted': 1.0, 'for': 3.0, 'only': 1.0, 'do': 2.0, 'living': 1.0, 'much': 1.0, 'not': 3.0, 'i': 7.0, 'old': 2.0, 'a': 6.0, 'w': 1.0, 'than': 1.0, 'soft': 1.0, 'minute': 1.0, 'this': 3.0, 'with': 2.0, 'change': 1.0, 'but': 3.0, 'was': 2.0, 'to': 7.0, 'look': 1.0, 'able': 1.0, 'corner': 1.0, 'wheels': 1.0, 'together': 1.0, 'pull': 1.0, 'feet': 2.0, 'out': 1.0, 'baby': 1.0, 'night': 1.0, 'them': 1.0, 'toys': 3.0, 'cushioned': 1.0, 'of': 2.0, 'larger': 1.0, 'there': 4.0, '8': 1.0, 'bottom': 4.0, 'spits': 1.0, 'are': 1.0, 'noting': 1.0, 'less': 1.0, 'the': 10.0, 'like': 2.0, 'lay': 1.0, 'cute': 1.0, 'on': 1.0, 'think': 1.0, 'put': 1.0, '3': 3.0, 'box': 1.0, 'that': 5.0, 'very': 3.0, 'little': 1.0, 'have': 4.0, 'small': 1.0, 'and': 8.0, 'play': 2.0, 'it': 6.0, 'colorful': 1.0, 'month': 2.0, 'she': 1.0, 'in': 4.0, 'is': 7.0, 'around': 2.0, 'keep': 1.0, 'at': 1.0, 'luckily': 1.0, 'though': 1.0, 'colors': 1.0, 'cover': 1.0, 'enough': 1.0, 'pad': 1.0}
Word element => {'they': 2.0, 'bee': 1.0, 'surprise': 1.0, 'daugter': 1.0, 'nice': 1.0, 'was': 1.0, 'their': 1.0, 'with': 1.0, 'little': 4.0, 'embroidered': 1.0, 'middle': 1.0, 'highly': 1.0, 'rattles': 1.0, 'attachements': 1.0, 'sides': 1.0, 'colors': 1.0, 'sinks': 1.0, 'of': 1.0, 'wings': 1.0, 'slanted': 1.0, 'in': 4.0, 'when': 2.0, 'unless': 1.0, 'loves': 1.0, 'that': 3.0, 'kind': 1.0, 'have': 3.0, 'make': 1.0, 'on': 2.0, 'your': 1.0, 'hits': 1.0, '4': 1.0, 'i': 3.0, 'n': 2.0, 'pack': 2.0, 'only': 1.0, 'this': 2.0, 'she': 1.0, 'it': 2.0, 'the': 9.0, 'is': 3.0, 'so': 1.0, 'experienced': 1.0, 'sitter': 1.0, 'problem': 1.0, 'animals': 1.0, 'pleasing': 1.0, 'for': 1.0, 'baby': 2.0, 'them': 3.0, 'balance': 1.0, 'my': 1.0, 'b': 2.0, 'c': 2.0, 'a': 2.0, 't': 1.0, 's': 1.0, 'noise': 1.0, 'towards': 1.0, 'can': 1.0, 'but': 2.0, 'all': 1.0, 'to': 1.0, 'center': 1.0, 'are': 1.0, 'play': 3.0, 'tough': 1.0, 'and': 2.0, 'didn': 1.0, 'like': 1.0, 'know': 1.0, 'sun': 1.0}
Word element => {}
Word element => {}
Word element => {'penny': 1.0, 'single': 1.0, '4': 1.0, 'i': 1.0, 'd': 1.0, 'jump': 1.0, 'patches': 1.0, 'makes': 2.0, 'want': 1.0, 'colorful': 2.0, 'it': 6.0, 'beautiful': 2.0, 'recommend': 1.0, 'bright': 1.0, 'to': 2.0, 'crawls': 1.0, 'kids': 1.0, 'this': 3.0, 'strongly': 1.0, 'can': 1.0, 'but': 1.0, 'fit': 1.0, 'lady': 1.0, 'assemble': 1.0, 'for': 1.0, 'around': 2.0, 'squeezed': 1.0, 'great': 1.0, 'pan': 3.0, 'colors': 1.0, 'lots': 1.0, 'simple': 1.0, 'play': 2.0, 'arms': 1.0, 'and': 2.0, 'easy': 1.0, 'grandson': 2.0, 'inside': 1.0, 'quality': 1.0, 'sturdy': 1.0, 'the': 4.0, 'of': 3.0, 'do': 1.0, 'from': 1.0, 'very': 3.0, 'why': 1.0, 'with': 4.0, 'material': 1.0, 'every': 1.0, 'safe2': 1.0, '3': 2.0, 'looks': 1.0, 'my': 4.0, 'b': 1.0, 'another': 1.0, 'mirror': 1.0, 'large': 1.0, 'butterfly': 1.0, 'is': 3.0, 'at': 1.0, 'space': 1.0, 'are': 2.0, 'a': 7.0, 'wings': 2.0, 'that': 3.0, 'loves': 1.0, 'babies': 1.0, 'plastic': 1.0, 'love': 1.0, 'he': 1.0, 'catching': 1.0, 'make': 1.0, 'sound': 1.0, 'when': 1.0, 'bug': 1.0, 'toys': 2.0, 'sounds': 1.0, 'also': 1.0, 'alsoc': 1.0, 'sun': 1.0, 'safe': 1.0, '1': 1.0, 'bee': 1.0, 'playful': 1.0, 'which': 1.0, 'like': 1.0, 'two': 1.0, 'nice': 1.0, 'soundsi': 1.0, 'dried': 1.0, 'daughter': 1.0, 'has': 1.0, 'half': 1.0, 'one': 2.0, 'not': 2.0, 'graco': 1.0, 'size': 1.0, 'eye': 1.0, 'worth': 1.0}
Word element => {'38': 2.0, 'the': 1.0, 'is': 1.0, 'not': 1.0, 'playpen': 1.0, 'love': 1.0, 'it': 1.0, 'smaller': 1.0, '36': 2.0, 'but': 1.0, 'than': 1.0, 'described': 1.0, 'x': 2.0}
Word element => {'made': 1.0, 'smartest': 1.0, 'of': 1.0, 'grandchildren': 1.0, 'i': 2.0, 'three': 1.0, 'almost': 1.0, 'to': 1.0, 'be': 1.0, 'play': 1.0, 'pack': 1.0, 'have': 2.0, 'used': 1.0, 'purchases': 1.0, 'n': 1.0, 'this': 2.0, 'with': 1.0, 'is': 1.0, '5': 1.0, 'years': 1.0, 'and': 1.0, 'quality': 1.0, 'the': 2.0, 'one': 1.0, 'yet': 1.0, 'has': 1.0, 'compromised': 1.0}
Word element => {'playpen': 1.0, 'a': 1.0, 'that': 1.0, 'other': 1.0, 'amazon': 1.0, 'on': 1.0, 'source': 1.0, 'have': 1.0, 'you': 1.0, 'was': 1.0, 'to': 3.0, 'if': 1.0, 'in': 2.0, 'something': 1.0, 'my': 1.0, 'downside': 1.0, 'the': 6.0, 'pen': 1.0, 'locally': 1.0, 'is': 2.0, 'side': 1.0, 'with': 1.0, 'n': 1.0, 'he': 1.0, 'i': 2.0, 'bassinets': 1.0, 'dishes': 1.0, 'them': 1.0, 'baby': 1.0, 'mesh': 1.0, 'keep': 2.0, 'bigger': 1.0, 'hard': 1.0, 'while': 1.0, 'safe': 1.0, 'its': 2.0, 'only': 1.0, 'stitched': 1.0, 'pack': 1.0, 'busy': 1.0, 'plays': 1.0, 'cooking': 1.0, 'or': 1.0, 'can': 1.0, 'find': 1.0, 'than': 2.0, 'safely': 1.0, 'and': 2.0, 'play': 1.0, 'perfect': 1.0, 'this': 1.0, 'doing': 1.0, 'dont': 1.0, 'wanted': 1.0, 'toys': 2.0, 'onto': 1.0, 'playsheets': 1.0, 'him': 1.0, 'great': 1.0, 'occupied': 1.0, 'even': 1.0, 'his': 1.0}
Word element => {'play': 1.0, 'move': 1.0, 'crawling': 1.0, 'tall': 1.0, 'n': 2.0, 'them': 1.0, 'herself': 1.0, 'pulling': 1.0, 'holding': 1.0, 'are': 1.0, 'wings': 1.0, 'etc': 1.0, 'sleep': 1.0, 'wrangled': 1.0, 'great': 1.0, 'times': 1.0, 'several': 1.0, 'heaved': 1.0, 'being': 1.0, 'home': 1.0, 'weeks': 1.0, '21': 1.0, 'loving': 1.0, '12': 1.0, 'around': 4.0, 'tho': 2.0, 'nap': 1.0, '5': 1.0, 'room': 2.0, 'livingroom': 1.0, 'our': 4.0, 'swallowed': 1.0, '30': 1.0, 'dont': 1.0, 'seems': 1.0, 'will': 1.0, 'in': 5.0, 'alone': 1.0, 'issue': 1.0, 'up': 4.0, 'mo': 1.0, 'was': 2.0, 'still': 1.0, 'expecting': 1.0, 'thing': 1.0, 'no': 3.0, 'after': 1.0, 'is': 1.0, 'look': 1.0, 'at': 3.0, 'keep': 3.0, 'what': 1.0, 'had': 1.0, 'box': 2.0, 'that': 1.0, 'so': 3.0, 'sheet': 1.0, 'scoot': 1.0, 'old': 1.0, 'well': 1.0, 'i': 4.0, 'seconds': 1.0, 'haven': 2.0, 'made': 1.0, 'really': 2.0, '27': 1.0, 'and': 7.0, 'moved': 1.0, 'already': 1.0, 'it': 9.0, 'she': 1.0, 'looking': 1.0, 'waterproof': 1.0, 'a': 5.0, 'we': 4.0, 'likes': 1.0, 't': 2.0, 'big': 1.0, 'store': 1.0, 'seemed': 1.0, 'chose': 1.0, 'but': 1.0, 'long': 1.0, 'update': 1.0, 'on': 3.0, 'van': 1.0, 'sides': 2.0, 'this': 4.0, 'rattles': 1.0, 'help': 1.0, 'bugs': 2.0, 'issues': 2.0, 'squeeker': 1.0, 'stretch': 1.0, 'smaller': 1.0, 'her': 4.0, 'to': 9.0, 'pretty': 2.0, 'entertained': 2.0, 'vacation': 1.0, 'huge': 1.0, 'way': 1.0, 'an': 1.0, 'accident': 1.0, 'know': 1.0, 'easy': 1.0, 'or': 1.0, 'info': 1.0, 'broken': 2.0, 'cleaning': 1.0, '10': 1.0, 'for': 3.0, 'plenty': 1.0, 'with': 1.0, 'lining': 1.0, 'entertain': 1.0, 'hope': 1.0, 'its': 2.0, 'put': 1.0, 'much': 1.0, 'out': 3.0, 'the': 8.0, 'of': 3.0, 'traveled': 1.0, 'took': 1.0, 'even': 2.0, 'heavy': 1.0, 'w': 5.0, 'parts': 2.0, 'yet': 1.0, 'far': 1.0, 'girl': 1.0, 're': 1.0, 'one': 1.0, 'held': 1.0, 'ones': 1.0, 'happy': 1.0}
Word element => {'mat': 1.0, 'way': 1.0, 'want': 1.0, 'will': 1.0, 'away': 1.0, 'takes': 1.0, 'although': 1.0, 'sheets': 1.0, 'some': 1.0, 'getting': 1.0, 'her': 2.0, 'from': 1.0, 'while': 2.0, 'about': 2.0, 'lots': 1.0, 'wash': 1.0, 'don': 1.0, 'move': 1.0, 'keep': 1.0, 'recommend': 1.0, 'was': 2.0, 'of': 1.0, 'perfect': 1.0, 'this': 2.0, 'eating': 1.0, 'shouldn': 1.0, 'love': 1.0, 'one': 1.0, 'yard': 1.0, 'anything': 1.0, 'you': 1.0, 'cheeriness': 1.0, 'gives': 1.0, 'to': 4.0, 'outside': 1.0, 'i': 5.0, 'contained': 1.0, 'else': 1.0, 'my': 1.0, 're': 1.0, 'little': 1.0, 'didn': 1.0, 'play': 1.0, 'and': 1.0, 'grass': 1.0, 'a': 1.0, 'we': 2.0, 't': 3.0, 'the': 3.0, 'have': 1.0, 'pregnant': 1.0, 'room': 1.0, 'spacious': 1.0, 'worry': 1.0, 'or': 1.0, 'think': 1.0, 'it': 1.0, 'she': 1.0, 'needed': 1.0, 'be': 1.0, 'would': 1.0, 'something': 1.0, 'that': 2.0, 'wrong': 1.0}
Word element => {'however': 1.0, 'comfortable': 1.0, 'that': 1.0, 'isn': 1.0, 'mat': 1.0, 'padding': 1.0, 'dome': 1.0, 'down': 1.0, 'did': 1.0, 'recommend': 1.0, 'was': 2.0, 'had': 2.0, 'to': 1.0, 'definitely': 1.0, 'looking': 1.0, 'for': 2.0, 'love': 1.0, 'bed': 1.0, 'he': 1.0, 'it': 3.0, 'old': 1.0, 'regular': 1.0, 'amazon': 1.0, 'last': 1.0, 'my': 1.0, 'and': 2.0, 'play': 1.0, 'because': 1.0, 'does': 1.0, 'i': 6.0, 'two': 1.0, 'some': 1.0, 'would': 1.0, 'something': 1.0, 'were': 1.0, 'his': 1.0, 'year': 1.0, 'bought': 1.0, 'decided': 1.0, 'outgrown': 1.0, 'traveling': 2.0, 'when': 2.0, 'larger': 1.0, 'but': 2.0, 'still': 1.0, 'this': 3.0, 'found': 1.0, 'the': 2.0, 'summer': 1.0, 'sides': 1.0, 'put': 1.0, 'on': 1.0, 'give': 1.0, 't': 1.0, 'we': 1.0, 'a': 1.0, 'pack': 1.0, 'try': 1.0, 'take': 1.0, 'amazing': 1.0, 'up': 1.0, 'room': 1.0}
Word element => {'attention': 1.0, 'direct': 1.0, 'has': 1.0, 'home': 1.0, 'by': 1.0, 'daughter': 1.0, 'grandchildren': 1.0, 'that': 1.0, 'used': 1.0, 'it': 1.0, 'parent': 1.0, 'now': 1.0, 'elsewhere': 1.0, 'our': 1.0, 'to': 2.0, 'so': 1.0, 'church': 1.0, 'visits': 1.0, 'for': 2.0, 'liked': 1.0, 'bought': 2.0, 'one': 1.0, 'seven': 1.0, 'safely': 1.0, 'years': 1.0, 'my': 1.0, 'another': 1.0, 'nursery': 1.0, 'much': 1.0, 'being': 1.0, 'while': 1.0, 'their': 1.0, 'recently': 1.0, 'her': 1.0, 'good': 1.0, 'quality': 1.0, 'toddler': 1.0, 'play': 1.0, 'and': 1.0, 'construction': 1.0, 'i': 1.0, 'like': 1.0, 'the': 1.0, 'allows': 1.0, 'this': 1.0, 'full': 1.0, 'size': 1.0, 'space': 1.0, 'we': 1.0, 'ago': 1.0, 's': 1.0, 'a': 2.0}
Word element => {'sides': 1.0, 'netted': 1.0, 'on': 1.0, 'all': 1.0, 'items': 1.0, 'and': 1.0, 'up': 1.0, 'i': 1.0, 'setting': 1.0, 'rated': 1.0, 'loves': 1.0, 'this': 1.0, 'product': 1.0, '5': 1.0, 'stars': 1.0, 'baby': 1.0, 'because': 1.0, 'of': 2.0, 'the': 4.0, 'ease': 1.0}
Word element => {'arrives': 1.0, 'recieve': 1.0, 'don': 1.0, 'best': 1.0, 'fashioned': 1.0, 'your': 1.0, 'but': 1.0, 'loss': 2.0, 'yard': 1.0, 'grow': 1.0, 'though': 1.0, 'truth': 1.0, 'tell': 1.0, 'really': 2.0, 'nice': 1.0, 'little': 2.0, 'perfect': 1.0, 'bag': 1.0, 'traveling': 1.0, 'include': 1.0, 'as': 3.0, 'size': 1.0, 'same': 1.0, 'crib': 1.0, 'sure': 1.0, 'make': 2.0, 'hotels': 1.0, 'down': 2.0, 've': 1.0, 'does': 3.0, 'space': 2.0, 'most': 2.0, 'limited': 1.0, 'you': 2.0, 'where': 2.0, 'better': 1.0, 'benifits': 1.0, 'are': 2.0, 'thing': 1.0, 'usually': 1.0, 'only': 1.0, 'stealing': 1.0, 'mo': 1.0, '3': 1.0, 'was': 1.0, 'provide': 1.0, 'since': 1.0, 'dust': 1.0, 'collecting': 1.0, 'rectangular': 2.0, 'fashion': 1.0, 'graco': 1.0, 'by': 1.0, 'made': 1.0, 'large': 1.0, 'just': 2.0, 'place': 2.0, 'myself': 2.0, 'toys': 3.0, 'm': 1.0, 'in': 7.0, 'if': 1.0, 'still': 1.0, 'son': 2.0, 'get': 1.0, 'and': 8.0, 'try': 1.0, 'ones': 1.0, 'one': 3.0, 'too': 1.0, 'v': 1.0, 'more': 2.0, 'have': 7.0, 'gives': 1.0, 'they': 3.0, 'means': 1.0, 'kids': 1.0, 'toddler': 1.0, 'year': 2.0, 'his': 2.0, 'ago': 1.0, 't': 3.0, 'learned': 1.0, 'playpen': 5.0, 'watch': 1.0, 'would': 2.0, 'new': 3.0, 'call': 1.0, 'grandmother': 2.0, 'a': 11.0, 'added': 2.0, 'safe': 1.0, 'is': 7.0, 'at': 2.0, 'keep': 1.0, 'larger': 1.0, 'purchased': 1.0, 'worth': 1.0, 'now': 1.0, 'garage': 1.0, 'attached': 1.0, 'begging': 1.0, 'bassinet': 3.0, 'to': 11.0, 'our': 2.0, 'my': 7.0, 'old': 3.0, 'fact': 1.0, 'another': 1.0, 'smaller': 2.0, 'her': 2.0, 'house': 1.0, 'deep': 1.0, 'because': 1.0, 'that': 8.0, 'loves': 2.0, 'been': 2.0, 'came': 1.0, 'weigh': 1.0, 'although': 1.0, 'play': 6.0, 'about': 1.0, 'whenever': 1.0, 'over': 1.0, 'takes': 1.0, 'up': 2.0, 'feature': 4.0, 'or': 2.0, 'square': 1.0, 'sister': 1.0, 'than': 2.0, 'sis': 1.0, 'infant': 2.0, 'safely': 1.0, 'with': 3.0, 'grandma': 1.0, 'gently': 1.0, 'design': 2.0, 'this': 6.0, 'confined': 1.0, 'these': 1.0, 'room': 4.0, '2yrs': 1.0, 'for': 5.0, 'it': 9.0, 'him': 1.0, 'all': 5.0, 'other': 2.0, 'yards': 3.0, 'do': 2.0, 'much': 2.0, 'not': 2.0, 'soon': 1.0, 'there': 3.0, 'give': 1.0, 'trips': 1.0, 'them': 1.0, 'others': 2.0, 'baby': 3.0, 'fold': 1.0, 'love': 1.0, 'he': 3.0, 'the': 19.0, 'of': 8.0, 's': 3.0, 'sides': 2.0, 'well': 1.0, 'fast': 1.0, 'i': 9.0, 'approaching': 1.0, 'so': 3.0, 'can': 3.0, 'see': 3.0, 'out': 4.0, 'amount': 1.0, 'on': 1.0, 'also': 1.0, 'big': 1.0, 'while': 1.0, 'like': 1.0, 'registry': 1.0, 'won': 1.0, 'hers': 1.0}
Word element => {'inside': 1.0, 'to': 1.0, 'allowed': 1.0, 'only': 1.0, 'is': 1.0, 'now': 1.0, 'white': 1.0, 'noticed': 1.0, 'then': 1.0, 'but': 1.0, 'had': 1.0, 'his': 3.0, 'this': 1.0, 'skin': 1.0, 'first': 1.0, 'on': 5.0, 'was': 1.0, 'rough': 1.0, 'blood': 2.0, 'socks': 1.0, 'or': 1.0, 'against': 1.0, 'walls': 2.0, 'lines': 1.0, 'he': 3.0, 'shoes': 2.0, 'using': 1.0, 'netting': 2.0, 'be': 1.0, 'very': 2.0, 'scrubbed': 1.0, 'why': 1.0, 'wiggling': 1.0, 'in': 2.0, 'without': 1.0, 'careful': 1.0, 'playing': 1.0, 'the': 7.0, 'pen': 4.0, 'my': 2.0, 'baby': 1.0, 'off': 1.0, 'legs': 1.0, 'of': 1.0, 'from': 2.0, 'understand': 1.0, 'apparently': 1.0, 'plaing': 1.0, 'are': 2.0, 'made': 1.0, 'we': 1.0, 't': 1.0, 'a': 1.0, 'play': 5.0, 'and': 1.0, 'couldn': 1.0, 'loves': 1.0, 'babies': 1.0, 'when': 1.0, 'toes': 2.0, 'at': 1.0, 'i': 1.0}
Word element => {'easy': 1.0, 'sturdy': 1.0, 'note': 1.0, 'positive': 1.0, 'but': 1.0, 'ship': 1.0, 'find': 1.0, 'mat': 1.0, 'spacious': 1.0, 'puke': 1.0, 'problem': 1.0, 'gripe': 1.0, 'the': 6.0, 'were': 1.0, 'playpen': 3.0, 'roll': 1.0, 'purchase': 1.0, 'my': 1.0, 'on': 2.0, 'around': 1.0, 'is': 3.0, 'only': 1.0, 'hard': 1.0, 'play': 1.0, 'and': 5.0, 'baby': 1.0, 'this': 1.0, 'perfect': 1.0, 'in': 1.0, 'wash': 1.0, 'assemble': 1.0, 'expensive': 1.0, 'for': 1.0, 'babies': 1.0, 'to': 9.0, 'spot': 1.0, 'solve': 1.0, 'there': 1.0, 'a': 2.0, 's': 1.0, 'way': 1.0, 'sheets': 1.0, 'thing': 1.0, 'no': 1.0, 'one': 1.0, 'entire': 1.0, 'large': 1.0, 'just': 1.0, 'clean': 1.0, 'sheet': 1.0, 'has': 1.0, 'buy': 1.0, 'cover': 1.0, 'if': 1.0, 'covering': 1.0, 'surface': 1.0, 'are': 1.0}
Word element => {'that': 1.0, 'than': 1.0, 'heavy': 1.0, 'its': 2.0, 'i': 1.0, 'about': 1.0, 'great': 1.0, 'it': 1.0, 'love': 1.0, 'the': 1.0, 'everything': 1.0, 'size': 1.0, 'and': 1.0, 'of': 1.0, 'other': 1.0, 'except': 1.0, 'this': 1.0, 'product': 1.0, 'basically': 1.0}
Word element => {'than': 1.0, 'after': 1.0, 'get': 1.0, 'ordered': 1.0, 'thick': 1.0, 'came': 1.0, 'padding': 1.0, 'if': 1.0, 'way': 1.0, 'sit': 1.0, 'roll': 1.0, 'him': 2.0, 'of': 1.0, 'plenty': 1.0, '21': 1.0, 'about': 1.0, 'weighs': 1.0, 'old': 1.0, 'months': 1.0, '8': 1.0, 'babysit': 1.0, 'day': 1.0, 'grandson': 2.0, 'for': 3.0, 'this': 1.0, 'better': 1.0, 'pen': 1.0, 'not': 1.0, 'ask': 1.0, 'us': 1.0, 'with': 1.0, 'it': 2.0, 'he': 4.0, 'folding': 1.0, 'baby': 1.0, 't': 2.0, 'we': 2.0, 'a': 4.0, 'bright': 1.0, 'like': 1.0, 'which': 1.0, 'or': 1.0, 'hurt': 1.0, 'lbs': 1.0, 'easily': 1.0, 'when': 3.0, 'attached': 1.0, 'by': 1.0, 'butterfly': 1.0, 'doesn': 1.0, 'beautiful': 1.0, 'next': 1.0, 'loves': 1.0, 'that': 3.0, 'colors': 1.0, 'sides': 1.0, 'can': 1.0, 'but': 2.0, 'trouble': 1.0, 'interactive': 1.0, 'our': 2.0, 'to': 3.0, 'husband': 1.0, 'great': 1.0, 'nice': 1.0, 'big': 1.0, 'toys': 1.0, 'in': 2.0, 'kicks': 1.0, 'very': 1.0, 'little': 1.0, 'the': 6.0, 'his': 1.0, 'feet': 1.0, 'think': 1.0, 'make': 1.0, 'room': 1.0, 'noise': 1.0, 'there': 3.0, 'over': 1.0, 'up': 2.0, 'around': 1.0, 'is': 7.0, 'fun': 1.0, 'mirror': 1.0, 'enough': 1.0, 'unfolds': 1.0, 'purchase': 1.0, 'my': 1.0, 'play': 1.0, 'and': 4.0, 'hits': 1.0, 'i': 3.0, 'visiting': 1.0, 'seem': 1.0, 'falls': 1.0, 'have': 1.0}
Word element => {'waste': 1.0, 'wasn': 1.0, 'get': 1.0, 'away': 1.0, 'right': 1.0, 'use': 1.0, 'baby': 2.0, 'brief': 1.0, 'hopefully': 1.0, 'my': 1.0, 'need': 1.0, '10': 1.0, 'money': 1.0, '2': 1.0, 'but': 1.0, 're': 1.0, 'house': 1.0, 'sometimes': 1.0, 'wander': 1.0, 'or': 1.0, 'freedom': 2.0, 'i': 4.0, 'old': 1.0, 'to': 6.0, 'had': 1.0, 'bought': 1.0, 'the': 4.0, 'this': 2.0, 'for': 2.0, 'plan': 1.0, 'around': 1.0, 'has': 2.0, 'always': 1.0, 'shower': 1.0, 'of': 2.0, 'there': 1.0, 'it': 4.0, 'month': 1.0, 'she': 3.0, 'nap': 1.0, 'and': 3.0, 'prefer': 1.0, 'safe': 1.0, 'spent': 1.0, 'her': 1.0, '18': 1.0, 'used': 2.0, 'in': 2.0, 'really': 1.0, 'care': 1.0, 'because': 1.0, 'keep': 1.0, 'total': 1.0, 'a': 4.0, 't': 2.0, 'we': 1.0, 's': 1.0, 'expecting': 1.0, 'doesn': 1.0, 'minutes': 1.0}
Word element => {'might': 1.0, 'issue': 1.0, 'cheaper': 1.0, 'quot': 2.0, 'negative': 1.0, 'there': 1.0, 'safe': 1.0, 'grows': 1.0, 'perfect': 1.0, 'cramped': 1.0, 'deter': 1.0, 'gets': 1.0, 'once': 1.0, 'size': 1.0, 'its': 1.0, 'looked': 1.0, 'how': 1.0, 'or': 3.0, 'rated': 1.0, 'only': 2.0, 'were': 1.0, 'baby': 2.0, 'others': 1.0, 'years': 2.0, '3': 1.0, 'choice': 1.0, 'really': 1.0, 'cute': 1.0, 'are': 3.0, 'on': 2.0, 'environment': 1.0, 'toys': 1.0, 'bigger': 2.0, 'if': 1.0, 'and': 7.0, 'because': 1.0, 'that': 4.0, 'babies': 1.0, 'box': 1.0, 'toting': 1.0, 'wouldn': 1.0, 'rectangular': 2.0, 'bit': 2.0, 'easy': 1.0, 'feeling': 1.0, '1': 1.0, 'find': 1.0, '14': 1.0, 'particular': 1.0, 'than': 2.0, 'well': 1.0, 'i': 8.0, 'plan': 1.0, 'made': 1.0, 'side': 1.0, 'which': 2.0, 'like': 1.0, 'looking': 1.0, 'bag': 1.0, 'using': 1.0, 'very': 2.0, 'plays': 2.0, 've': 1.0, 'several': 1.0, 'play': 3.0, 'about': 1.0, 'just': 3.0, 'set': 1.0, 'have': 2.0, 'as': 3.0, 'leave': 1.0, '8': 1.0, 'travelling': 1.0, 'of': 4.0, 'the': 15.0, 'compare': 1.0, 'probably': 1.0, 'at': 1.0, 'is': 6.0, 'fine': 1.0, 'take': 1.0, 'we': 4.0, 'a': 7.0, 't': 6.0, 'playpen': 1.0, 'someone': 1.0, 'n': 5.0, 'stimulating': 1.0, 'explore': 1.0, 'children': 1.0, 'right': 1.0, '30': 1.0, 'with': 1.0, 'sets': 1.0, 'it': 8.0, 'some': 1.0, 'colorful': 3.0, 'when': 3.0, 'what': 2.0, 'had': 2.0, 'wanted': 1.0, 'for': 6.0, 'rating': 1.0, 'too': 1.0, 'one': 7.0, 'up': 3.0, 'carrying': 1.0, 'great': 1.0, 'sibling': 1.0, 'padded': 1.0, 'nice': 1.0, 'someplace': 1.0, 'in': 5.0, 'off': 1.0, 'to': 7.0, 'straight': 1.0, 'part': 2.0, 'was': 2.0, 'put': 2.0, 'standard': 2.0, 'pack': 5.0, 'think': 1.0, 'me': 2.0, 'my': 4.0, 'year': 2.0, 'wonderful': 1.0, 'old': 3.0, 'can': 1.0, 'so': 2.0, 'by': 1.0, 'bright': 2.0, 'come': 1.0, 'from': 2.0, 'fun': 3.0, 'house': 1.0, 'both': 1.0, 'needed': 1.0, 'newborn': 1.0, 'out': 1.0, 'don': 1.0, 'isn': 2.0, 'interested': 1.0, 'few': 1.0, 'this': 5.0, 'thicker': 1.0, 'bottom': 1.0, 'yet': 1.0, 'napping': 1.0, 'but': 3.0, '2': 2.0, 'seconds': 1.0, 'didn': 1.0, 'want': 2.0, 'use': 1.0, 'her': 1.0, 'sleeping': 1.0, 'they': 2.0, 'could': 1.0, 'will': 3.0, 'be': 4.0, 'an': 1.0, 'all': 1.0, 'playing': 2.0, 'other': 2.0, 'birth': 1.0, 'sponge': 1.0}
Word element => {'highly': 1.0, 'high': 1.0, 'research': 1.0, 'did': 1.0, 'i': 2.0, 'w': 1.0, 'issues': 1.0, 'safety': 1.0, 'no': 1.0, 'car': 1.0, 'carry': 1.0, 'with': 1.0, 'came': 1.0, 'still': 1.0, 'use': 1.0, 'alot': 2.0, 'held': 1.0, 'is': 1.0, 'height': 1.0, 'the': 6.0, 'meets': 1.0, 'of': 4.0, 'area': 1.0, 'easy': 4.0, 'very': 3.0, 'year': 2.0, 'from': 1.0, 'one': 2.0, 'size': 1.0, 'mat': 1.0, 'directions': 1.0, 'in': 2.0, 'age': 1.0, 'wipe': 1.0, 'baby': 1.0, 'up': 2.0, 'over': 2.0, 'make': 1.0, 'on': 2.0, 'choosing': 1.0, 'looks': 1.0, 'colorful': 1.0, 'it': 7.0, 'found': 1.0, 'perfect': 1.0, 'this': 6.0, 'reusable': 1.0, 'first': 1.0, 'only': 1.0, 'loves': 1.0, 'family': 1.0, 'a': 2.0, 'we': 2.0, 'pattern': 1.0, 'block': 1.0, 'and': 7.0, 'play': 2.0, 'to': 7.0, 'our': 2.0, 'set': 1.0, 'used': 1.0, 'inside': 1.0, 'down': 1.0, 'before': 1.0, 'infancy': 1.0, 'for': 2.0, 'assemble': 2.0, 'product': 5.0, 'time': 1.0, 'has': 2.0, 'pen': 1.0, 'follow': 1.0, 'recommend': 1.0, 'store': 1.0, 'was': 1.0, 'minutes': 1.0, 'clean': 1.0, 'fabric': 1.0, 'large': 1.0, 'just': 2.0, 'took': 1.0, 'loved': 1.0, 'bag': 1.0, 'toys': 1.0, 'standards': 1.0, 'new': 1.0, 'each': 1.0, 'side': 1.0, 'also': 2.0}
Word element => {'option': 1.0, 'can': 2.0, 'find': 1.0, 'the': 2.0, 'play': 1.0, 'loves': 1.0, 'you': 1.0, 'sturdy': 1.0, 'it': 2.0, 'he': 2.0, 'is': 2.0, 'best': 2.0, 'very': 1.0, 'yard': 1.0, 'colourful': 1.0, 'see': 1.0, 'and': 1.0, 'me': 1.0, 'while': 1.0, 'that': 1.0, 'playing': 1.0, 'my': 1.0, 'happy': 1.0, 'baby': 1.0, 'about': 1.0}
Word element => {'satisfied': 1.0, '100': 1.0, 'of': 1.0, 'what': 1.0, 'mat': 1.0, 'floor': 1.0, 'clean': 1.0, 'within': 1.0, 'are': 1.0, 'saver': 1.0, 'free': 1.0, 'and': 1.0, 'play': 2.0, 'highly': 1.0, 'attractive': 1.0, 'mirror': 1.0, 'with': 2.0, 'this': 2.0, 'came': 1.0, 'colorful': 1.0, 'month': 1.0, 'order': 1.0, 'purcahse': 1.0, 'the': 2.0, 'great': 1.0, 'else': 1.0, 'birthday': 1.0, 'ordered': 1.0, '4': 1.0, 'super': 1.0, 'unbreakable': 1.0, 'could': 1.0, 'we': 2.0, 's': 1.0, 'designs': 1.0, 'including': 1.0, 'dream': 1.0, 'standard': 1.0, 'yard': 2.0, 'shipping': 1.0, 'very': 1.0, 'in': 1.0, 'one': 2.0, 'daughter': 1.0, 'recommend': 1.0, 'comprehensive': 1.0, 'week': 1.0, 'quality': 1.0, 'an': 1.0, 'is': 1.0, 'easy': 2.0, 'for': 1.0, 'assemble': 1.0, 'colors': 1.0, 'instructions': 1.0, 'wonderful': 1.0, 'our': 1.0, 'to': 2.0, 'all': 1.0, 'four': 1.0, 'walls': 1.0, 'on': 1.0, 'steady': 1.0}
Word element => {'take': 1.0, 'put': 1.0, 'easy': 2.0, 'provide': 1.0, 'walls': 1.0, 'into': 1.0, 's': 1.0, 'built': 1.0, 'toys': 1.0, 'up': 1.0, 'there': 1.0, 'which': 1.0, 'compared': 1.0, 'bright': 1.0, 'rather': 1.0, 'large': 1.0, 'very': 2.0, 'and': 2.0, 'love': 1.0, 'refreshing': 1.0, 'it': 2.0, 'this': 1.0, 'n': 2.0, 'pack': 2.0, 'is': 1.0, 'play': 1.0, 'standard': 1.0, 'plays': 1.0, 'the': 3.0, 'are': 2.0, 'entertainment': 1.0, 'mesh': 1.0, 'colors': 2.0, 'than': 1.0, 'to': 2.0, 'normal': 1.0, 'down': 1.0, 'drab': 1.0}
Word element => {'their': 1.0, 'quickly': 1.0, 'close': 1.0, 'shade': 1.0, 'fun': 1.0, 'had': 1.0, 'while': 1.0, 'mornings': 1.0, 'reading': 1.0, 'sun': 1.0, 'enjoyed': 1.0, 'great': 1.0, 'legs': 1.0, 'start': 1.0, 'support': 1.0, 'used': 1.0, 'even': 1.0, 'sweet': 1.0, 'else': 1.0, 'immediately': 1.0, 'compact': 1.0, 'liked': 1.0, 'product': 1.0, 'for': 2.0, 'packed': 1.0, 'emergencies': 1.0, 'old': 1.0, 'i': 2.0, 'playpen': 1.0, 'unsure': 1.0, 'parts': 1.0, 'penning': 1.0, 'visit': 2.0, 'took': 1.0, 'bought': 1.0, 'assembled': 1.0, 'the': 7.0, 'my': 2.0, 'this': 2.0, 'with': 1.0, 'walk': 1.0, 'he': 1.0, 'in': 6.0, 'daughter': 2.0, 'by': 1.0, 'never': 1.0, 's': 2.0, 'wobbly': 1.0, 'sideways': 1.0, 'child': 1.0, 'her': 4.0, 'still': 1.0, 'son': 2.0, 'sitting': 1.0, 'but': 1.0, 'on': 1.0, 'think': 1.0, 'is': 1.0, 'of': 1.0, 'necessary': 1.0, 'and': 5.0, 'at': 1.0, 'easily': 1.0, 'idea': 1.0, '11': 1.0, 'times': 1.0, 'outside': 1.0, 'to': 5.0, 'away': 1.0, 'attached': 1.0, 'limit': 1.0, 'next': 1.0, 'case': 1.0, 'butterflies': 1.0, 'his': 2.0, 'mobility': 1.0, 'nothing': 1.0, 'if': 1.0, 'colorful': 1.0, 'she': 1.0, 'month': 1.0, 'it': 2.0, 'fascinated': 1.0, 'other': 1.0}
Word element => {'daughter': 1.0, 'than': 1.0, 'other': 1.0, 'shape': 1.0, 'rectangular': 1.0, 'average': 1.0, 'though': 1.0, 'pricey': 1.0, 'definitely': 1.0, 'loves': 1.0, 'that': 2.0, 'babies': 1.0, 'do': 1.0, 'pack': 1.0, 'have': 1.0, 'their': 1.0, 'fit': 1.0, 'for': 1.0, 'one': 1.0, 'my': 2.0, 'stores': 1.0, 'the': 3.0, 'ones': 1.0, 'nicely': 1.0, 'heavy': 1.0, 'chose': 1.0, 'so': 1.0, 'friends': 1.0, 'best': 1.0, 'got': 1.0, 'sturdy': 1.0, 'i': 6.0, 'not': 1.0, 'me': 1.0, 'n': 1.0, 'perfect': 1.0, 'this': 2.0, 'it': 7.0, 'thankful': 1.0, 'particular': 2.0, 'very': 1.0, 'little': 1.0, 'and': 4.0, 'play': 1.0, 've': 1.0, 'model': 1.0, 'folds': 1.0, 'up': 1.0, 'seen': 1.0, 'am': 1.0, 'easily': 1.0, 'is': 3.0, 's': 1.0, 'a': 1.0, 'but': 1.0, 'also': 1.0, 'will': 1.0, 'they': 1.0, 'are': 2.0, 'as': 1.0, 'all': 1.0, 'to': 1.0, 'think': 1.0, 'last': 1.0, 'sheets': 1.0}
Word element => {'needed': 1.0, 'if': 1.0, 'mats': 1.0, 'order': 1.0, 'colors': 1.0, 'babies': 1.0, 'so': 1.0, 'extra': 1.0, 'plays': 1.0, 'n': 2.0, 'this': 2.0, 'it': 2.0, 'with': 1.0, 'than': 1.0, 'bigger': 2.0, 'easy': 1.0, 'may': 1.0, 'are': 2.0, 'playpen': 2.0, 'market': 1.0, 'play': 1.0, 'and': 2.0, 'now': 1.0, 'crowded': 1.0, 'is': 2.0, 'comes': 1.0, 'pack': 3.0, 'much': 1.0, 'right': 1.0, 'aren': 1.0, 'can': 1.0, 'the': 5.0, 'stimulating': 1.0, 'happy': 1.0, 'built': 1.0, 'you': 1.0, 'in': 1.0, 'also': 2.0, 'toys': 1.0, 'best': 1.0, 'fun': 1.0, 'like': 1.0, 't': 1.0, 'a': 2.0, 'actually': 1.0, 'for': 1.0, 'portability': 1.0, 'i': 1.0, 'on': 1.0, 'think': 1.0, 'weigh': 1.0, 'less': 1.0}
Word element => {'on': 1.0, 'bugs': 1.0, 'of': 1.0, 'textures': 1.0, 'pack': 1.0, 'n': 1.0, 'sounds': 1.0, 'this': 1.0, 'colorful': 1.0, 'play': 2.0, 'like': 1.0, 'and': 2.0, 'very': 2.0, 'portable': 1.0, 'love': 1.0, 'pen': 1.0, 'the': 3.0, 'different': 1.0}
Word element => {'properly': 1.0, 'fit': 1.0, 'sheets': 1.0, 'finding': 1.0, 'time': 1.0, 'larger': 1.0, 'others': 1.0, 'padding': 1.0, 'perfectly': 1.0, 'seen': 2.0, 'bags': 1.0, 'made': 1.0, 'cheaply': 1.0, 'little': 1.0, 'bag': 1.0, 'true': 1.0, 'quickly': 1.0, 'unsnap': 1.0, 'parts': 1.0, 'minute': 1.0, 'minutes': 1.0, 'in': 3.0, 'bright': 1.0, 'toys': 3.0, 'done': 1.0, 'sides': 1.0, 'sleep': 2.0, 'to': 6.0, 'place': 2.0, 'of': 1.0, 'the': 16.0, 'both': 1.0, 'built': 1.0, 'be': 1.0, 'nephews': 1.0, 'its': 1.0, 'pack': 8.0, 'play': 7.0, 'and': 12.0, 'crinkle': 1.0, 'fits': 1.0, 'all': 5.0, 'playing': 1.0, 'other': 3.0, 'every': 1.0, 'lock': 1.0, 'frequently': 1.0, 'read': 1.0, 'loves': 1.0, 'very': 1.0, 'plays': 3.0, 'on': 4.0, 'do': 1.0, 'put': 2.0, 'but': 2.0, 'smiles': 1.0, 'watch': 1.0, 'prayed': 1.0, 'pieces': 1.0, 'my': 3.0, 'found': 1.0, 'thicker': 1.0, 'weekend': 1.0, 'this': 3.0, 'set': 1.0, 'pain': 1.0, 'i': 6.0, 'one': 1.0, 'with': 3.0, 'buying': 1.0, 'have': 3.0, 'something': 1.0, 'breeze': 1.0, 'great': 1.0, 'comfortable': 1.0, 'not': 2.0, 'n': 6.0, 'child': 1.0, 'hard': 1.0, 'over': 1.0, 'bottom': 1.0, 'nephew': 1.0, 'he': 5.0, 'is': 6.0, 'more': 1.0, 'so': 2.0, 'you': 5.0, 'tired': 1.0, 'a': 8.0, 'rattle': 1.0, 'brothers': 1.0, 'could': 1.0, 'will': 3.0, 'his': 1.0, 'head': 1.0, 've': 1.0, 'turned': 1.0, 'down': 2.0, 'butterfly': 2.0, 'was': 1.0, 'before': 2.0, 'that': 5.0, '20': 1.0, 'borrowed': 1.0, 'when': 1.0, 'what': 1.0, 'had': 1.0, 'were': 1.0, 'together': 1.0, 'we': 1.0, 'reviews': 2.0, 'then': 5.0, 'take': 3.0, 'apart': 2.0, 'face': 1.0, 'sometimes': 1.0, 'did': 1.0, 'wanted': 1.0, 'colors': 1.0, 'start': 2.0, 'bedding': 1.0, 'snap': 2.0, 'it': 5.0, 'takes': 1.0, 'up': 1.0, 'less': 1.0}
Word element => {'cover': 1.0, 'case': 1.0, 'too': 1.0, 'safe': 1.0, 'little': 1.0, 'will': 1.0, 'probably': 1.0, 'and': 1.0, 'heavy': 1.0, 'help': 1.0, 'need': 1.0, 'nice': 1.0, 'just': 1.0, 'carrying': 1.0, 'a': 1.0, 'sturdy': 1.0, 'is': 1.0, 'colorful': 1.0, 'to': 1.0, 'up': 1.0, 'fold': 1.0, 'for': 1.0, 'storage': 1.0, 'it': 2.0, 'moving': 1.0}
Word element => {'bought': 1.0, 'glad': 1.0, 'apart': 1.0, 'take': 1.0, 'together': 1.0, 'put': 1.0, 's': 1.0, 'does': 1.0, 'baby': 1.0, 'one': 1.0, 'than': 1.0, 'more': 1.0, 'accommodate': 1.0, 'on': 1.0, 'something': 2.0, 'we': 1.0, 'play': 1.0, 'east': 1.0, 'and': 3.0, 'sized': 1.0, 'each': 1.0, 'nice': 1.0, 'pack': 1.0, 'babies': 1.0, 'a': 1.0, 'enough': 1.0, 'occupy': 1.0, 'to': 4.0, 'its': 1.0, 'it': 2.0, 'with': 1.0, 'this': 2.0, 'hard': 1.0, 'nowadays': 1.0, 'is': 1.0, 'side': 1.0, 'really': 2.0, 'big': 1.0, 'find': 1.0}
Word element => {'recommend': 1.0, 'far': 1.0, 'toys': 1.0, 'by': 1.0, 'that': 1.0, 'also': 1.0, 'in': 1.0, 'after': 1.0, 'shopping': 1.0, 'one': 1.0, 'for': 2.0, 'provides': 1.0, 'rattle': 1.0, 'i': 2.0, 'is': 1.0, 'around': 1.0, 'found': 1.0, 'this': 1.0, 'it': 2.0, 'yard': 1.0, 'husband': 1.0, 'we': 1.0, 'a': 2.0, 'come': 1.0, 'bright': 1.0, 'great': 1.0, 'my': 1.0, 'largest': 1.0, 'colors': 1.0, 'baby': 1.0, 'little': 1.0, 'built': 1.0, 'play': 2.0, 'across': 1.0, 'and': 4.0, 'crinkle': 1.0, 'are': 1.0, 'good': 1.0, 'to': 1.0, 'sleep': 1.0, 'the': 2.0, 'place': 1.0, 'mirror': 1.0, 'both': 1.0, 've': 1.0, 'would': 1.0, 'squeeky': 1.0, 'definitely': 1.0}
Word element => {'while': 1.0, 'her': 2.0, 'long': 1.0, 'haven': 1.0, 'sure': 1.0, 'in': 2.0, 'was': 1.0, 'grandma': 1.0, 'had': 1.0, 'so': 1.0, 'my': 1.0, 'perfect': 1.0, 'this': 1.0, 'the': 2.0, 'large': 1.0, 'bought': 2.0, 'll': 2.0, 'be': 1.0, 'here': 1.0, 'daughter': 1.0, 'm': 1.0, 'when': 1.0, 'fit': 1.0, 'for': 3.0, 'love': 1.0, 'bed': 1.0, 'which': 1.0, 'enough': 1.0, 'knowing': 1.0, 'is': 3.0, 'second': 1.0, 'why': 1.0, 'day': 1.0, 'to': 1.0, 'as': 1.0, 'it': 4.0, 'she': 3.0, 'baby': 1.0, 'i': 4.0, 'during': 1.0, 'but': 1.0, 'cartoons': 1.0, 'printed': 1.0, 't': 1.0, 'a': 3.0, 's': 2.0, 'bigger': 1.0, 'at': 1.0, 'that': 1.0, 'able': 1.0}
Word element => {'easily': 1.0, 'room': 1.0, 'playpen': 1.0, 'to': 1.0, 'granddaughter': 1.0, 'can': 1.0, 'loves': 1.0, 'it': 1.0, 'this': 1.0, 'another': 1.0, 'baby': 1.0, 'the': 2.0, 'my': 1.0, 'a': 1.0, 'she': 1.0, 'lot': 1.0, 'of': 1.0, 'fun': 1.0, 'secure': 1.0, 'and': 1.0, 'bought': 1.0, 'be': 1.0, 'is': 2.0, 'transported': 1.0, 'from': 1.0, 'for': 1.0, 'one': 1.0}
Word element => {'playtime': 1.0, 'equals': 1.0, 'soft': 1.0, 'has': 1.0, 'one': 1.0, 'really': 1.0, 'mat': 1.0, 'whole': 1.0, 'under': 1.0, 'doesn': 1.0, 'rectangular': 1.0, 'others': 1.0, 'while': 1.0, 'square': 1.0, 'c': 1.0, 'b': 1.0, 'friends': 1.0, 'can': 1.0, 'so': 2.0, 'all': 2.0, 'to': 4.0, 'our': 1.0, 'as': 2.0, 'sheet': 2.0, 'glad': 2.0, 'am': 2.0, 'miss': 1.0, 'things': 1.0, 'you': 1.0, 'amp': 5.0, 'months': 1.0, 'tuck': 1.0, 'regular': 1.0, 'stares': 1.0, 'and': 13.0, 'play': 7.0, 'bright': 1.0, 'got': 1.0, 'when': 2.0, 'bug': 1.0, 'loved': 1.0, 'took': 1.0, 'old': 1.0, 'i': 9.0, 'giggles': 1.0, 'etc': 1.0, 'butterfly': 1.0, 'comfortable': 1.0, 'registered': 1.0, 'around': 1.0, 'sleeps': 1.0, 'more': 1.0, 'son': 1.0, 'trays': 1.0, 'liked': 1.0, 'compact': 1.0, 'just': 1.0, 'placed': 1.0, 'me': 1.0, 'my': 4.0, 'cushy': 1.0, 'of': 1.0, 'the': 8.0, 'in': 4.0, 'now': 1.0, 'yard': 3.0, 'colorful': 2.0, 'with': 2.0, 'this': 6.0, 'kids': 1.0, 'matter': 1.0, 'vacation': 1.0, 'is': 9.0, 'look': 2.0, 'at': 3.0, 'pack': 4.0, 'himself': 1.0, 'plays': 3.0, 'that': 4.0, 'put': 2.0, 'changing': 1.0, 'first': 1.0, 'are': 3.0, 'only': 1.0, 'narrow': 2.0, 'have': 1.0, 'great': 2.0, 'buttoned': 1.0, 'features': 1.0, 'like': 2.0, '9': 1.0, 'it': 8.0, 'thought': 1.0, 'would': 1.0, 'chose': 1.0, 'but': 1.0, 'don': 1.0, 'up': 2.0, 'likes': 1.0, 't': 2.0, 'then': 1.0, 'difference': 1.0, 'fine': 1.0, 'we': 1.0, 's': 1.0, 'a': 4.0, 'love': 1.0, 'he': 5.0, 'bottom': 1.0, 'perfectly': 1.0, 'there': 1.0, 'on': 2.0, 'colors': 1.0, 'portable': 1.0, 'was': 1.0, 'friend': 1.0, 'were': 1.0, 'not': 2.0, 'sleeptime': 1.0, 'drawback': 1.0, 'set': 1.0, 'mirror': 1.0, 'large': 1.0, 'pen': 1.0}
Word element => {'other': 1.0, 'thick': 1.0, 'forget': 1.0, 'sooner': 1.0, 'some': 2.0, 'colorful': 2.0, 'without': 1.0, 'its': 1.0, 'round': 1.0, 'buying': 1.0, 'very': 2.0, 'durable': 4.0, 'shape': 2.0, 'set': 1.0, 'so': 2.0, 'square': 1.0, 'dimensions': 1.0, 'comparison': 1.0, 'featuring': 1.0, 'but': 5.0, 'squared': 1.0, 'good': 1.0, 'side': 1.0, 'bit': 3.0, 'than': 3.0, 'feels': 4.0, 'goes': 1.0, 'lug': 1.0, 'pops': 1.0, 'i': 7.0, 'setup': 1.0, 'railings': 1.0, 'seems': 3.0, 'bright': 1.0, 'off': 1.0, 'novel': 1.0, 'inward': 1.0, 'place': 1.0, 'the': 40.0, 'even': 2.0, 'of': 6.0, 'graco': 11.0, 'same': 1.0, 'if': 4.0, 'still': 1.0, 'delta': 10.0, 'been': 1.0, 'up': 5.0, 'water': 1.0, 'them': 2.0, 'has': 7.0, 'when': 1.0, 'what': 1.0, 'lbs': 1.0, 'was': 1.0, 'you': 7.0, 'etc': 2.0, 're': 1.0, 'curves': 1.0, 'planning': 1.0, 'in': 11.0, 'together': 1.0, 'slightly': 2.0, 'daycare': 1.0, 'me': 1.0, 'are': 6.0, 'my': 1.0, 'may': 1.0, 'equally': 1.0, 'mesh': 5.0, 'like': 3.0, 'as': 4.0, 'all': 5.0, 'to': 10.0, 'ended': 1.0, 'gone': 1.0, 'about': 1.0, 'play': 2.0, 'time': 1.0, 'top': 2.0, 'back': 2.0, 'on': 9.0, 'put': 1.0, 'do': 1.0, 'tones': 1.0, 'forth': 1.0, 'much': 1.0, 'mattress': 3.0, 'this': 2.0, 'have': 3.0, 'house': 1.0, 'bottom': 1.0, 'down': 1.0, 'for': 6.0, 'here': 1.0, 'more': 7.0, 'can': 1.0, 'is': 10.0, 'at': 1.0, 'between': 1.0, 'push': 1.0, 'animals': 2.0, 'they': 5.0, 'sturdier': 3.0, 'flat': 1.0, 'take': 1.0, 'minute': 1.0, 'then': 1.0, 'a': 13.0, 'lighter': 2.0, 'stain': 1.0, 'go': 1.0, 'we': 1.0, 'middle': 3.0, 'both': 5.0, 'easier': 1.0, 'printed': 1.0, 'that': 2.0, 'because': 1.0, 'bugs': 1.0, 'decent': 1.0, 'padding': 2.0, 'ease': 1.0, 'terms': 1.0, 'baby': 3.0, 'it': 10.0, 'be': 3.0, 'built': 3.0, 'comfortable': 2.0, 'thickness': 1.0, 'also': 2.0, 'get': 1.0, 'dip': 2.0, 'by': 1.0, 'though': 2.0, 'after': 1.0, 'there': 2.0, 'while': 1.0, 'gentler': 1.0, 'pad': 4.0, 'color': 1.0, 'continued': 1.0, 'sides': 1.0, 'not': 2.0, 'itself': 1.0, 'feeling': 3.0, 'proof': 1.0, 'twins': 2.0, 'material': 1.0, 'padded': 1.0, 'no': 1.0, 'lays': 1.0, 'would': 2.0, 'feel': 1.0, 'your': 1.0, 'seem': 1.0, 'toys': 3.0, '3ft': 2.0, 'whereas': 1.0, 'price': 1.0, 'sturdiness': 1.0, 's': 4.0, 'expensive': 1.0, 'playard': 1.0, 'squares': 1.0, 'nice': 1.0, 'think': 2.0, '5': 1.0, 'one': 3.0, 'depends': 1.0, 'with': 6.0, 'using': 2.0, 'slight': 1.0, 'going': 1.0, 'or': 1.0, 'will': 1.0, 'daily': 1.0, 'use': 1.0, 'bring': 2.0, 'deck': 1.0, 'saving': 1.0, 'each': 2.0, 'around': 2.0, 'places': 1.0, 'hotel': 1.0, 'sturdy': 1.0, 'camping': 1.0, 'space': 1.0, 'grandma': 1.0, 'and': 12.0, 'just': 1.0, 'those': 1.0, 'weight': 2.0, 'departments': 1.0, 'size': 1.0, 'amazing': 1.0, 'wish': 1.0, 'had': 1.0, 'better': 2.0, 'bought': 1.0}
Word element => {'pleased': 1.0, 'once': 1.0, 'we': 1.0, 'real': 1.0, 'a': 2.0, 'down': 1.0, 'plus': 1.0, 'up': 1.0, 'to': 1.0, 'easy': 1.0, 'take': 1.0, 'wouldlove': 1.0, 'one': 1.0, 'i': 1.0, 'plays': 1.0, 'have': 1.0, 'pack': 1.0, 'very': 1.0, 'as': 1.0, 'adorable': 1.0, 'much': 1.0, 'that': 1.0, 'many': 1.0, 'is': 2.0, 'seen': 1.0, 'week': 1.0, 'put': 1.0, 'but': 1.0, 'and': 2.0, 'use': 1.0, 'added': 1.0, 'most': 1.0, 'functional': 1.0, 'only': 1.0, 'n': 1.0, 'this': 1.0, 'it': 4.0, 'has': 1.0, 'so': 2.0, 'color': 1.0, 'about': 1.0, 'any': 1.0, 'baby': 1.0}
Word element => {'optional': 1.0, 'one': 1.0, 'at': 1.0, 'or': 1.0, 'play': 1.0, 'pack': 1.0, 'with': 1.0, 'that': 2.0, 'mat': 1.0, 'cushioned': 1.0, 'his': 1.0, 'toddler': 1.0, 'but': 1.0, 'against': 1.0, 'safe': 1.0, 'was': 2.0, 'i': 2.0, 'for': 1.0, 'actually': 1.0, 'least': 1.0, 'to': 4.0, 'as': 1.0, 'head': 1.0, 'called': 1.0, 'ask': 1.0, 'up': 1.0, 'don': 1.0, 'about': 1.0, 'graco': 1.0, 'surface': 1.0, 'if': 1.0, 'move': 1.0, 'hard': 1.0, 'walk': 1.0, 'he': 1.0, 'it': 1.0, 'the': 3.0, 'a': 2.0, 't': 1.0, 's': 2.0, 'comes': 1.0, 'more': 1.0, 'around': 1.0, 'sell': 1.0, 'should': 1.0, 'they': 2.0, 'on': 1.0, 'think': 1.0, 'bump': 1.0, 'good': 1.0, 'leaving': 1.0, 'bottom': 1.0, 'perfectly': 1.0, 'fine': 1.0, 'unattended': 1.0, 'seemed': 1.0, 'feel': 1.0, 'either': 1.0, 'trying': 1.0, 'him': 1.0, 'have': 1.0}
Word element => {'great': 1.0, 'what': 1.0, 'a': 2.0, 'almost': 1.0, 'him': 1.0, 'keep': 1.0, 'buy': 1.0, 'i': 2.0, 'when': 1.0, 'it': 1.0, 'he': 1.0, 'with': 1.0, 'year': 1.0, 'son': 1.0, 'work': 1.0, 'here': 1.0, 'sleepy': 1.0, 'and': 1.0, 'me': 1.0, 'my': 1.0, 've': 1.0, 'in': 1.0, 'now': 1.0, 'to': 1.0, 'comes': 1.0, 'had': 1.0, 'for': 1.0, 's': 1.0, 'active': 1.0}
Word element => {'prepared': 1.0, 'be': 1.0, 'room': 1.0, 'your': 1.0, 'will': 1.0, 'large': 2.0, 'of': 1.0, 'rather': 1.0, 'that': 1.0, 'give': 2.0, 'have': 1.0, 'precaution': 1.0, 'living': 1.0, 'only': 1.0, 'clean': 1.0, 'importantly': 1.0, 'carry': 1.0, 'fun': 1.0, 'space': 1.0, 'at': 1.0, 'to': 5.0, 'some': 1.0, 'charm': 1.0, 'my': 1.0, 'happy': 2.0, 'take': 2.0, 'safe': 1.0, 'pens': 1.0, 'i': 5.0, 'larger': 1.0, 'playpen': 1.0, 'this': 3.0, 'than': 1.0, 'because': 1.0, 'chunk': 1.0, 'was': 2.0, 'looking': 2.0, 'the': 2.0, 'place': 1.0, 'without': 1.0, 'most': 1.0, 'anytime': 1.0, 'can': 1.0, 'where': 1.0, 'product': 1.0, 'for': 2.0, 'bought': 1.0, 'one': 1.0, 'something': 1.0, 's': 2.0, 'a': 4.0, 'could': 1.0, 'like': 1.0, 'daughter': 1.0, 'feeling': 1.0, 'set': 1.0, 'fold': 1.0, 'over': 1.0, 'up': 3.0, 'claustrophobic': 1.0, 'traditional': 1.0, 'am': 1.0, 'you': 1.0, 'or': 1.0, 'grandma': 1.0, 'contained': 1.0, 'bit': 1.0, 'so': 2.0, 'rectangular': 1.0, 'worked': 1.0, 'it': 4.0, 'she': 1.0, 'easy': 3.0, 'is': 3.0, 'play': 2.0, 'and': 4.0, 'has': 1.0}
Word element => {'in': 1.0, 'area': 1.0, 'guests': 1.0, 'square': 1.0, 'when': 1.0, 'easy': 1.0, 'play': 2.0, 'it': 2.0, 'this': 1.0, 'use': 1.0, 'loved': 1.0, 'still': 1.0, 'to': 2.0, 'and': 4.0, 'bring': 1.0, 'their': 1.0, 'have': 1.0, 'pack': 1.0, 'babies': 1.0, 'nice': 1.0, 'take': 1.0, 'assemble': 1.0, 'large': 1.0, 'down': 1.0, 'a': 1.0, 'has': 1.0}
Word element => {'family': 1.0, 'worth': 1.0, 'packs': 1.0, 'crawling': 1.0, 'very': 2.0, 'want': 1.0, 'don': 1.0, 'product': 1.0, 'child': 2.0, 'hand': 1.0, 'like': 1.0, 'out': 2.0, 'also': 1.0, 'in': 2.0, 'carry': 1.0, 'nap': 1.0, 'excellent': 1.0, 'your': 3.0, 'into': 2.0, 'stains': 1.0, 'been': 1.0, 's': 2.0, 'a': 2.0, 'place': 1.0, 'great': 1.0, 'born': 1.0, 'kind': 1.0, 'know': 1.0, 'easy': 1.0, 'after': 1.0, 'folds': 1.0, 'she': 1.0, 'it': 9.0, 'one': 1.0, 'money': 1.0, 'bought': 1.0, 'for': 5.0, 'this': 2.0, 'our': 1.0, 'to': 5.0, 'as': 1.0, 't': 1.0, 'along': 1.0, 'chores': 1.0, 'worked': 1.0, 'the': 6.0, 'of': 4.0, 'or': 1.0, 'need': 1.0, 'periods': 1.0, 'time': 2.0, 'daughter': 1.0, 'when': 2.0, 'friends': 1.0, 'folded': 1.0, 'seen': 1.0, 'was': 1.0, 'recommended': 1.0, 'and': 8.0, 'nicely': 1.0, 'we': 1.0, 'take': 1.0, 'with': 4.0, 'short': 1.0, 'day': 1.0, 'survive': 2.0, 'padding': 1.0, 'from': 2.0, 'things': 2.0, 'you': 4.0, 'blankets': 1.0, 'so': 2.0, 'can': 1.0, 'makes': 1.0, 'an': 1.0, 'be': 1.0, 'durable': 2.0, 'extra': 1.0, 'another': 1.0, 'proven': 1.0, 'spartan': 1.0, 'is': 2.0, 'still': 1.0, 'use': 2.0, 'looks': 1.0, 'my': 2.0, 'me': 2.0, 've': 1.0, 'down': 1.0, 'put': 1.0, 'do': 1.0, 'niece': 1.0, 'far': 1.0, 'thing': 1.0, 'has': 2.0, 'i': 1.0, 'well': 1.0, 'little': 3.0, 'two': 1.0, 'years': 1.0, 'enough': 1.0, 'constant': 1.0, 'aside': 1.0, 'oven': 1.0, 'some': 1.0}
Word element => {'came': 1.0, 'mirror': 1.0, 'and': 1.0, 'toys': 1.0, 'rough': 1.0, 'folded': 1.0, 'but': 1.0, 'always': 1.0, 'loves': 1.0, 'that': 3.0, 'comforter': 1.0, 'get': 1.0, 'would': 2.0, 'not': 2.0, 'because': 1.0, 'one': 1.0, 'otherwise': 1.0, 'texture': 1.0, 'i': 5.0, 'it': 3.0, 'with': 3.0, 'middle': 1.0, 'love': 1.0, 'fit': 1.0, 'product': 1.0, 'blanket': 1.0, 'which': 1.0, 'is': 1.0, 'comes': 1.0, 'had': 1.0, 'to': 1.0, 'so': 2.0, 'underneath': 1.0, 'my': 2.0, 'grandson': 2.0, 'padded': 1.0, 'feel': 1.0, 'the': 7.0, 'bump': 1.0, 'in': 1.0, 'also': 1.0, 'a': 4.0, 'could': 1.0, 's': 1.0, 'prints': 1.0, 'shame': 1.0, 'covered': 1.0, 'pad': 1.0, 'cover': 1.0, 'pretty': 1.0, 'put': 1.0, 'on': 1.0, 'mattress': 1.0, 'this': 1.0, 'wish': 1.0, 'soft': 1.0}
Word element => {'expensive': 1.0, 'money': 1.0, 'extra': 1.0, 'didn': 1.0, 'glad': 1.0, 'would': 1.0, 'clean': 1.0, 'more': 1.0, 'is': 1.0, 'noticing': 1.0, 'of': 1.0, 'on': 2.0, 'daughter': 2.0, 'when': 1.0, 'spend': 1.0, 'great': 1.0, '34': 2.0, 'price': 1.0, 'about': 1.0, 'recommend': 1.0, 'was': 2.0, 'bigger': 1.0, 'easy': 1.0, 'toys': 1.0, 'far': 1.0, 'my': 2.0, 'this': 1.0, 'come': 1.0, 'with': 1.0, 'she': 1.0, 'it': 1.0, 'saw': 1.0, 'yards': 2.0, 'months': 1.0, 'one': 3.0, 'starting': 1.0, 'play': 2.0, 'and': 1.0, 'side': 3.0, '7': 1.0, 'has': 1.0, 't': 1.0, 'a': 1.0, 'the': 8.0, 'playing': 1.0, 'sound': 1.0, 'seems': 1.0, 'butterfly': 1.0, 'so': 1.0, 'wings': 1.0, 'out': 1.0, 'i': 3.0, 'rattle': 1.0, 'etc': 1.0, 'that': 1.0, 'loves': 1.0, 'to': 1.0, 'all': 1.0, 'sides': 1.0}
Word element => {'time': 1.0, 'hate': 1.0, 'd': 1.0, 'us': 1.0, 'whole': 1.0, 'told': 1.0, 'everyone': 1.0, 'highly': 1.0, 'with': 1.0, 'alot': 1.0, 'plays': 1.0, 'loves': 1.0, 'been': 1.0, 'while': 1.0, 'cookies': 1.0, 'wrapped': 1.0, 'presents': 1.0, 'got': 1.0, 'even': 1.0, 'baked': 1.0, 'i': 1.0, 'hours': 1.0, 'up': 1.0, 'played': 1.0, 'recommended': 1.0, 'well': 1.0, 'has': 2.0, 'daughter': 1.0, 'she': 7.0, 'it': 6.0, 'this': 1.0, 'her': 1.0, 'grandma': 1.0, 'started': 1.0, 'old': 1.0, 'months': 2.0, 'attached': 1.0, 'now': 1.0, 'is': 1.0, 'being': 1.0, 'want': 1.0, 'when': 2.0, '11': 1.0, 'sleeping': 1.0, 'playpen': 2.0, 'addition': 1.0, 'received': 1.0, 'still': 1.0, 'to': 4.0, 'as': 2.0, 'outside': 1.0, 'our': 2.0, 'cry': 1.0, 'in': 7.0, 'gift': 1.0, '9': 1.0, 'and': 5.0, 'get': 1.0, 'toys': 2.0, 'done': 1.0, 'arsenal': 1.0, 'wonderful': 1.0, 'use': 1.0, 'who': 1.0, 'at': 1.0, 'some': 1.0, 'kitchen': 1.0, 'the': 4.0, 'we': 3.0, 'a': 3.0, 's': 1.0, 't': 1.0, 'was': 2.0, 'doesn': 1.0, '2': 1.0, 'work': 1.0, 'put': 1.0, 'putting': 1.0, 'be': 1.0, 'for': 3.0, 'highchair': 1.0, 'yard': 1.0}
Word element => {'5': 1.0, 'decor': 1.0, 'enjoys': 1.0, 'colors': 1.0, 'about': 2.0, 'admit': 1.0, 'have': 1.0, 'my': 3.0, 'playards': 1.0, 'rating': 1.0, 'other': 1.0, 'but': 1.0, 'can': 1.0, 'most': 1.0, 'of': 2.0, 'set': 1.0, 'up': 2.0, 'out': 1.0, 'it': 7.0, 'based': 1.0, 'this': 1.0, 'how': 1.0, 'was': 1.0, 'preference': 1.0, 'all': 1.0, 'to': 3.0, 'very': 2.0, 'read': 1.0, 'certainly': 1.0, 'bigger': 1.0, 'just': 1.0, 'and': 3.0, 'play': 1.0, 'right': 2.0, 'pack': 1.0, 'i': 8.0, 'impressed': 1.0, 'on': 1.0, 'the': 3.0, 'reviews': 1.0, 'like': 1.0, 'what': 1.0, 'purchased': 1.0, 'thought': 1.0, 'box': 1.0, 'that': 1.0, 'for': 2.0, 'wild': 1.0, 'get': 1.0, 'easy': 2.0, 'sure': 1.0, 'm': 1.0, 'd': 1.0, 'never': 1.0, 'star': 1.0, 'back': 2.0, 'longer': 1.0, 'down': 1.0, 'year': 1.0, 'proved': 1.0, 'give': 1.0, 'not': 2.0, 'n': 1.0, 'me': 1.0, 'wrong': 1.0, 'than': 1.0, 'is': 1.0, 'still': 1.0, 'son': 2.0, 'fold': 2.0, 'storage': 1.0, 'use': 1.0, 'travel': 1.0, 'a': 2.0, 's': 2.0}
Word element => {'nap': 1.0, 'enough': 1.0, 'yet': 1.0, 'very': 1.0, 'good': 1.0, 'far': 1.0, 'thus': 1.0, 'no': 1.0, 'really': 1.0, 'damage': 1.0, 'up': 1.0, 'holding': 1.0, 'on': 2.0, 'beat': 1.0, 'jump': 1.0, 'old': 2.0, 'sturdy': 1.0, 'year': 1.0, 'wear': 1.0, 'rather': 2.0, 'exactly': 1.0, 'be': 1.0, 'as': 2.0, 'all': 1.0, 'to': 6.0, 'was': 2.0, 'now': 1.0, 'try': 1.0, 'its': 2.0, 'well': 2.0, 'has': 1.0, 'use': 1.0, 'comfortable': 1.0, 'scratch': 1.0, 'great': 1.0, 'the': 3.0, 'looks': 1.0, 'month': 1.0, 'truly': 1.0, 'it': 9.0, 'this': 1.0, 'first': 1.0, 'children': 1.0, 'say': 1.0, 'is': 2.0, 'i': 6.0, 'for': 2.0, 'chew': 1.0, 'tear': 1.0, 'yard': 1.0, 'which': 1.0, 'and': 6.0, 'play': 1.0, 's': 1.0, 'a': 4.0, 'specs': 1.0, 'check': 1.0, 'few': 1.0, 'large': 1.0, 'what': 1.0, 'day': 2.0, 'looking': 1.0, '2': 2.0, 'but': 1.0, '10': 1.0, 'if': 1.0, 'at': 1.0, 'space': 1.0, 'times': 1.0, 'you': 1.0, 'are': 1.0, 'bought': 1.0, 'months': 1.0, 'planning': 1.0, 'said': 1.0, 'in': 3.0, 'have': 3.0, 'small': 1.0, 'both': 1.0, 'd': 1.0, 'takes': 1.0, 'purchase': 1.0, 'owned': 1.0, 'my': 1.0}
Word element => {'policy': 1.0, 'has': 1.0, 'luckily': 1.0, 'owner': 1.0, 'previous': 1.0, 'label': 1.0, 'still': 1.0, 'shipping': 1.0, 'item': 1.0, 'already': 1.0, 'immediately': 1.0, 'was': 2.0, 'which': 1.0, 'amazon': 2.0, 'back': 1.0, 'returned': 1.0, 'return': 2.0, 'before': 1.0, 'used': 1.0, 'else': 2.0, 'from': 1.0, 'looked': 1.0, 'unpacked': 1.0, 'someone': 2.0, 'when': 2.0, 'odor': 1.0, 'an': 2.0, 'had': 3.0, 'thought': 1.0, 'box': 1.0, 'that': 2.0, 'hates': 1.0, 'noticed': 1.0, 'old': 1.0, 'i': 7.0, 'worse': 1.0, 'it': 5.0, 'month': 1.0, 'ordered': 2.0, 'if': 2.0, 'better': 1.0, '7': 1.0, 'how': 1.0, 'vacation': 1.0, 'he': 1.0, 'odd': 1.0, 'bigger': 1.0, 'lot': 1.0, 'not': 1.0, 'awesome': 1.0, 'his': 1.0, 'long': 1.0, '30': 1.0, 'this': 2.0, 'mattress': 2.0, 'decided': 1.0, '23': 1.0, 'as': 1.0, 'to': 3.0, 'our': 1.0, 'sleep': 1.0, 'play': 3.0, 'and': 5.0, 'did': 1.0, 'inch': 1.0, 'something': 1.0, 'would': 1.0, 'on': 3.0, 'notice': 1.0, 'a': 2.0, 'thicker': 1.0, 'of': 1.0, 'lb': 1.0, 'bottom': 1.0, 'reviews': 1.0, 'maybe': 1.0, 'standard': 2.0, 'because': 2.0, 'than': 2.0, 'the': 5.0, 'say': 1.0, 'is': 1.0, 'pack': 3.0, 'its': 2.0, 'in': 1.0, 'my': 1.0, 'fact': 1.0}
Word element => {'entertaining': 1.0, 'on': 1.0, 'second': 1.0, 'well': 1.0, 'i': 1.0, 'it': 1.0, 'this': 1.0, 'and': 3.0, 'my': 1.0, 'bought': 1.0, 'another': 1.0, 'colors': 1.0, 'made': 1.0, 'child': 1.0, 'of': 1.0, 'hours': 1.0, 'fun': 1.0, 'easy': 1.0, 'use': 1.0, 'granddaughter': 1.0, 'to': 1.0, 'primary': 1.0, 'designs': 1.0, 'one': 1.0, 'for': 2.0, 'love': 1.0}
Word element => {'originally': 1.0, 'like': 1.0, 'joovy': 1.0, 'not': 1.0, 'n': 4.0, 'bottom': 2.0, 's': 1.0, 't': 2.0, 'crib': 2.0, 'size': 1.0, 'travel': 1.0, 'wonderful': 1.0, 'amazon': 1.0, 'or': 1.0, 'thin': 1.0, 'attached': 1.0, 'foam': 1.0, 'read': 1.0, 'as': 2.0, 'to': 5.0, 'sleep': 1.0, 'all': 1.0, 'stinks': 1.0, 'very': 1.0, 'being': 1.0, 'graco': 1.0, 'play': 5.0, 'no': 1.0, 'my': 1.0, 'solely': 1.0, 'night': 1.0, 'it': 5.0, 'baby': 3.0, 'she': 2.0, 'weekend': 1.0, 'this': 6.0, 'mattress': 1.0, 'i': 8.0, 'a': 6.0, 'rattle': 1.0, 'definitely': 1.0, 'pack': 4.0, 'do': 1.0, 'put': 1.0, 'make': 1.0, 'for': 5.0, 'actually': 1.0, 'in': 2.0, 'said': 1.0, 'reviews': 1.0, 'double': 1.0, 'is': 2.0, 'around': 1.0, 'registered': 1.0, 'gone': 1.0, 'something': 1.0, 'bulky': 1.0, 'would': 2.0, 'that': 2.0, 'delivers': 1.0, 'totbloc': 1.0, 'took': 1.0, 'wanted': 1.0, 'comfy': 1.0, 'large': 1.0, 'larger': 1.0, 'there': 2.0, 'option': 1.0, 'last': 1.0, 'her': 1.0, 'with': 2.0, 'blanket': 1.0, 'so': 1.0, 'time': 1.0, 'walls': 1.0, 'wasn': 1.0, 'planned': 1.0, 'uncomfortable': 1.0, 'if': 1.0, 'every': 1.0, 'napping': 2.0, 'rolled': 1.0, 'the': 9.0, 'of': 1.0, 'toy': 1.0, 'move': 1.0, 'woke': 1.0, 'up': 1.0, 'over': 1.0, 'was': 1.0, 'recommend': 1.0, 'on': 4.0, 'long': 1.0, 'wouldn': 1.0, 'and': 5.0, 'trip': 1.0, 'anyone': 1.0, 'wanting': 1.0, 'had': 1.0, 'again': 1.0, 'have': 1.0}
Word element => {'yet': 1.0, 'out': 1.0, 'that': 1.0, 'figured': 1.0, 't': 1.0, 'with': 1.0, 'hard': 1.0, 'it': 1.0, 'sun': 1.0, 'bee': 1.0, 'wall': 1.0, 'built': 1.0, 'butterfly': 1.0, 'baby': 3.0, 'haven': 1.0, 'made': 1.0, 'wings': 2.0, 'at': 1.0, 'the': 8.0, 'elements': 1.0, 'is': 1.0, 'padding': 1.0, 'reflection': 1.0, 'not': 1.0, 'on': 1.0, 'comfy': 1.0, 'collapse': 1.0, 'for': 1.0, 'in': 1.0, 'good': 1.0, 'fabric': 1.0, 'easier': 1.0, 'likes': 1.0, 'and': 1.0, 'crinkle': 1.0, 'mirror': 1.0, 'all': 1.0, 'to': 2.0, 'was': 1.0, 'lean': 1.0, 'walls': 1.0, 'against': 1.0, 'much': 1.0, 'floor': 1.0, 'size': 1.0, 'protected': 1.0, 'angles': 1.0, 'sides': 1.0, 'rattle': 1.0, 'i': 1.0, 'this': 1.0, 'soft': 1.0, 'wish': 1.0}
Word element => {'us': 1.0, 'visiting': 1.0, 'old': 1.0, 'were': 1.0, 'together': 1.0, 'great': 1.0, 'its': 1.0, 'beetle': 1.0, 'in': 3.0, 'press': 1.0, 'beeping': 1.0, 'butterfly': 1.0, 'crinkly': 1.0, 'mirror': 1.0, 'sun': 1.0, 'pens': 1.0, 'on': 3.0, 'wings': 1.0, 'activities': 1.0, 'the': 5.0, 'ones': 1.0, 'my': 2.0, '4': 2.0, 'i': 3.0, 'cramped': 1.0, 'it': 4.0, 'this': 2.0, 'roomier': 1.0, 'toy': 2.0, 'and': 5.0, 'play': 1.0, 'niece': 1.0, 'loved': 1.0, 'most': 1.0, 'slept': 1.0, 'also': 1.0, 'seems': 1.0, 'item': 1.0, 'twins': 1.0, 'traveling': 1.0, 'when': 2.0, 'seen': 1.0, 'sister': 1.0, 'because': 1.0, 'had': 1.0, 'sleep': 1.0, 'to': 2.0, 'for': 1.0, 'months': 1.0, 'bought': 1.0, 'one': 1.0, 'drab': 1.0, 'being': 1.0, 'are': 1.0, 'very': 1.0, 'compared': 1.0, 'is': 2.0, 'used': 1.0, 'square': 1.0, 'of': 2.0, 'nephews': 1.0, 'somehow': 1.0, 'instead': 1.0, 'there': 1.0, 'they': 1.0, 'usual': 1.0, 'rectangular': 1.0, 'each': 1.0, 'colors': 1.0, 'sides': 1.0, 's': 1.0, 'a': 1.0, 'different': 1.0}
Word element => {'arms': 1.0, 'not': 1.0, 'am': 1.0, 'if': 1.0, 'him': 1.0, 'keeps': 1.0, 'room': 1.0, 'yard': 1.0, 'play': 1.0, 'this': 1.0, 'house': 2.0, 'reach': 1.0, 'and': 2.0, 'my': 2.0, 'in': 1.0, 'for': 2.0, 'one': 2.0, 'of': 2.0, 'really': 1.0, 'safe': 1.0, 'two': 1.0, 'purchased': 1.0, 'i': 2.0, 'old': 1.0, 'have': 1.0, 'grandson': 2.0, 'loves': 1.0, 'plenty': 1.0, 's': 1.0, 'months': 1.0, '7': 1.0, 'colors': 1.0, 'within': 1.0, 'plays': 1.0, 'the': 1.0, 'these': 1.0, 'great': 1.0}
Word element => {'glad': 1.0, 'very': 1.0, 'nicely': 1.0, 'packs': 1.0, 'purchase': 1.0, 'another': 1.0, 'together': 1.0, 'can': 1.0, 'floor': 1.0, 'mat': 1.0, 'bottom': 1.0, 'out': 1.0, 'so': 1.0, 'time': 1.0, 'tummy': 1.0, 'great': 2.0, 'is': 2.0, 'during': 1.0, 'them': 1.0, 'on': 1.0, 'put': 1.0, 'also': 2.0, 'feature': 1.0, 'i': 3.0, 'things': 1.0, 'rattling': 1.0, 'day': 1.0, 'ever': 1.0, 'babies': 1.0, 'that': 3.0, 'travel': 1.0, 'use': 1.0, 'was': 2.0, 'now': 1.0, 'they': 3.0, 'interactive': 1.0, 'this': 2.0, 'only': 1.0, 'it': 5.0, 'for': 5.0, 'love': 1.0, 'find': 1.0, 'the': 7.0, 'came': 1.0, 'since': 1.0, 'preemies': 1.0, 'bright': 1.0, 'playpen': 1.0, 'could': 1.0, 'we': 5.0, 'm': 1.0, 'mirror': 1.0, 'large': 1.0, 'twins': 1.0, 'placed': 1.0, 'enough': 1.0, 'made': 1.0, 'hardwood': 1.0, 'home': 1.0, 'from': 1.0, 'all': 1.0, 'our': 2.0, 'to': 1.0, 'as': 1.0, 'hospital': 1.0, 'taken': 1.0, 'used': 1.0, 'set': 1.0, 'up': 2.0, 'have': 2.0, 'leave': 1.0, 'in': 2.0, 'naps': 1.0, 'kitchen': 1.0, 'are': 1.0, '5': 1.0, 'months': 1.0, 'old': 1.0, 'colors': 1.0, 'play': 1.0, 'and': 2.0, 'toys': 1.0}
Word element => {'purchased': 1.0, 'proper': 1.0, 'recommend': 1.0, 'really': 1.0, 'would': 1.0, 'short': 1.0, 'covered': 1.0, 'size': 2.0, 'over': 1.0, 'on': 2.0, 'toys': 1.0, 'having': 1.0, 'because': 1.0, 'than': 1.0, 'babe': 1.0, 'had': 1.0, 'flame': 2.0, 'small': 1.0, 'a': 4.0, 's': 1.0, 'we': 1.0, 'or': 1.0, 'mouth': 1.0, 'treated': 2.0, 'roomy': 1.0, 'babesafe': 1.0, 'are': 1.0, 'polyurethane': 1.0, 'yard': 1.0, 'colorful': 1.0, 'it': 4.0, 'solved': 1.0, 'my': 3.0, 'of': 1.0, 'the': 8.0, 'sturdy': 1.0, 'is': 7.0, 'kids': 2.0, 'this': 4.0, 'both': 1.0, 'c': 1.0, 'offgassing': 1.0, 'protect': 1.0, 'retardants': 2.0, 'all': 2.0, 'to': 2.0, 'love': 1.0, 'for': 1.0, 'fairly': 1.0, 'fit': 1.0, 'toddler': 1.0, 'product': 2.0, 'with': 3.0, 'only': 2.0, 'standard': 1.0, 'pack': 1.0, 'and': 3.0, 'about': 1.0, 'play': 2.0, 'padding': 1.0, 'issue': 1.0, 'polyester': 1.0, 'do': 1.0, 'floor': 2.0, 'concern': 1.0, 'out': 1.0, 'thin': 1.0, 'now': 1.0, 'foam': 2.0, 'in': 2.0, 'just': 1.0, 'by': 1.0, 'not': 2.0, 'n': 1.0, 'those': 1.0, 'something': 1.0, 'super': 1.0, 'well': 1.0, 'i': 4.0, 'eating': 1.0, 'am': 1.0, 'comfortable': 1.0, 'problem': 1.0, 'purchasing': 1.0, 'cover': 2.0, '40': 1.0, 'off': 1.0, 'crawling': 1.0, 'stars': 1.0, 'f': 1.0, 'order': 1.0, 'took': 1.0, 'if': 1.0, 'bigger': 1.0, 'which': 1.0, 'good': 1.0, 'shell': 1.0, 'happy': 1.0, 'personal': 1.0, 'but': 2.0, 'thing': 1.0, '2': 1.0, 'extra': 1.0, 'fun': 1.0, 'from': 1.0}
Word element => {'product': 1.0, 'very': 1.0, 'butterfly': 1.0, 'loves': 1.0, 'great': 1.0, 'are': 1.0, 'sides': 1.0, 'nap': 1.0, 'be': 1.0, 'comfy': 1.0, 'will': 1.0, 'seems': 1.0, 'pad': 1.0, 'area': 1.0, 'while': 1.0, 'her': 2.0, 'keep': 1.0, 'move': 1.0, 'does': 1.0, 'yard': 1.0, 'in': 3.0, 'am': 2.0, 'when': 1.0, 'i': 4.0, 'old': 1.0, 'happy': 1.0, 'cooking': 1.0, 'on': 1.0, 'put': 1.0, 'but': 1.0, 'bought': 1.0, 'contained': 1.0, 'small': 1.0, 'my': 1.0, 'perfect': 1.0, 'this': 2.0, 'with': 3.0, 'and': 4.0, 'play': 3.0, '8': 1.0, 'able': 2.0, 'safe': 1.0, 'take': 1.0, 'the': 6.0, 'size': 1.0, 'ideal': 1.0, 'it': 3.0, 'month': 1.0, 'she': 3.0, 'roll': 1.0, 'is': 3.0, 'around': 1.0, 'need': 1.0, 'toys': 2.0, 'not': 1.0, 'up': 1.0, 'of': 1.0, 'room': 1.0, 'to': 5.0, 'all': 1.0, 'as': 1.0, 'our': 1.0, 'living': 1.0}
Word element => {'same': 1.0, 'time': 1.0, 'adjust': 1.0, 'so': 1.0, 'person': 1.0, 'you': 1.0, 'form': 1.0, 'for': 1.0, 'need': 1.0, 'cushions': 1.0, 'to': 2.0, 'product': 1.0, 'pack': 1.0, 'being': 1.0, 'purchased': 1.0, 'compare': 1.0, 'is': 2.0, 'open': 1.0, 'big': 1.0, 'why': 1.0, 'this': 2.0, 'it': 2.0, 'absolutely': 1.0, 'a': 2.0, 'and': 2.0, 'great': 1.0, 'the': 3.0, 'flat': 1.0, 'softer': 1.0, 'reason': 1.0, 'other': 1.0, 'play': 1.0, 'we': 2.0, 'lever': 1.0, 'did': 1.0, 'will': 2.0, 'put': 1.0, 'at': 1.0, 'two': 2.0}
Word element => {'colors': 1.0, 'loves': 1.0, 'they': 1.0, 'side': 1.0, 'always': 1.0, 'mommy': 1.0, 'floor': 1.0, 'back': 1.0, 'lay': 1.0, 'but': 1.0, 'can': 2.0, 'inside': 1.0, 'nicely': 1.0, 'out': 1.0, 'are': 1.0, 'toys': 1.0, 'her': 5.0, 'this': 2.0, 'room': 1.0, 'yard': 1.0, 'safely': 1.0, 'sized': 1.0, 'daddy': 1.0, 'of': 2.0, 'able': 1.0, 'offers': 1.0, 'highly': 1.0, 'plenty': 1.0, 'watch': 1.0, 'playpen': 2.0, 'and': 10.0, 'play': 4.0, 'without': 1.0, 'reach': 1.0, 'the': 6.0, 't': 1.0, 's': 1.0, 'a': 3.0, 'law': 1.0, 'pack': 1.0, 'dogs': 2.0, 'have': 2.0, 'being': 1.0, 'if': 1.0, 'grows': 1.0, 'on': 2.0, 'constantly': 1.0, 'already': 1.0, 'use': 1.0, 'still': 1.0, 'son': 1.0, 'crib': 1.0, 'as': 1.0, 'to': 3.0, 'bright': 2.0, 'forget': 1.0, 'area': 1.0, 'easy': 1.0, 'recommend': 1.0, 'store': 1.0, 'it': 4.0, 'colorful': 1.0, 'she': 5.0, 'you': 1.0, 'gives': 1.0, 'when': 2.0, 'enjoy': 1.0, 'daughter': 1.0, 'by': 1.0, 'n': 1.0, 'not': 2.0, 'in': 2.0, 'fits': 1.0, 'my': 1.0, 'medium': 1.0, 'at': 1.0, 'space': 1.0, 'where': 1.0, 'for': 1.0, 'secure': 1.0, 'will': 3.0, 'baby': 2.0, 'licked': 1.0, 'be': 4.0}
Word element => {'do': 1.0, 'enjoy': 1.0, 'it': 2.0, 'durable': 1.0, 'this': 2.0, 'kids': 1.0, 'over': 1.0, 'condition': 1.0, 'two': 1.0, 'have': 1.0, 'able': 1.0, 'and': 3.0, 'play': 1.0, 'offer': 1.0, 'used': 2.0, 'view': 1.0, 'is': 2.0, 'my': 1.0, 'own': 1.0, 'pen': 1.0, '3': 1.0, 'your': 1.0, 'has': 1.0, 'the': 3.0, 'in': 1.0, 'years': 1.0, 'baby': 1.0, 'past': 1.0, 'most': 1.0, 'sturdy': 1.0, 'excellent': 1.0, 'from': 1.0, 'big': 1.0, 'very': 1.0, 'little': 1.0, 'one': 1.0, 'love': 1.0, 'item': 1.0, 'will': 2.0, '5': 1.0, 'room': 1.0, 'all': 1.0, 'to': 2.0, 'be': 1.0, 'out': 1.0, 'we': 2.0, 'a': 1.0, 'sides': 1.0, 'plus': 1.0}
Word element => {'review': 1.0, 'amazon': 1.0, 'later': 1.0, 'actually': 1.0, 't': 1.0, 'besides': 1.0, 'sides': 1.0, 'hanging': 1.0, 'secure': 1.0, 'a': 4.0, 'we': 2.0, 'can': 2.0, 'lot': 2.0, 'keep': 1.0, 'researched': 1.0, 'same': 2.0, 'month': 1.0, 'it': 2.0, '9': 2.0, 'climb': 1.0, 'areas': 1.0, 'fort': 1.0, 'babies': 1.0, 'and': 7.0, 'play': 1.0, 'end': 1.0, 'do': 1.0, 'they': 3.0, 'months': 2.0, 'thing': 3.0, 'years': 1.0, 'no': 1.0, 'have': 2.0, 'etc': 2.0, 'i': 6.0, 'm': 3.0, 'in': 1.0, 'hurling': 1.0, 'other': 1.0, 'buying': 2.0, 'with': 1.0, 'to': 2.0, 'had': 1.0, 'when': 1.0, 'what': 1.0, 'worth': 1.0, 'now': 2.0, 'his': 1.0, 'year': 1.0, 'btw': 1.0, 'believe': 2.0, 'jump': 1.0, 'old': 2.0, 'son': 1.0, '17': 1.0, 'flop': 1.0, 'up': 2.0, 'for': 1.0, 'shorter': 1.0, '6': 2.0, 'especially': 1.0, 'down': 1.0, 'the': 3.0, 'of': 4.0, 'longer': 1.0, 'safe': 2.0, 'will': 3.0, 'not': 1.0, 'my': 2.0, 'me': 1.0, 'still': 1.0, 'stay': 1.0, 'that': 3.0, 'fall': 1.0, 'at': 1.0, 'is': 1.0, 'but': 2.0, '8230': 1.0, 'two': 1.0, 'little': 4.0, 'guy': 2.0, 'your': 1.0, '14': 1.0, 'themselves': 1.0, 'this': 2.0, 'kids': 1.0, 'apart': 1.0, 'lady': 1.0, 'fun': 2.0, 'from': 2.0, 'out': 2.0, 'understand': 1.0, 'while': 1.0, 'others': 1.0, 'collapse': 1.0, 'some': 1.0, 'going': 1.0, 'done': 1.0, 'buy': 1.0, '5': 2.0, 'eye': 1.0, 'there': 1.0, 'sore': 1.0, 'say': 1.0, 'experience': 1.0, 'first': 1.0, 'are': 3.0, 'cute': 1.0, 'light': 1.0, 'looking': 1.0, 'occupied': 1.0, 'them': 1.0, 'things': 1.0, 'you': 1.0}
Word element => {'one': 1.0, 'least': 1.0, 'at': 1.0, 'bag': 3.0, 'carrying': 1.0, 'flight': 2.0, 'graco': 1.0, 'reconsider': 1.0, 'product': 1.0, 'first': 1.0, 'make': 1.0, 'should': 2.0, 'is': 1.0, 'of': 1.0, 'a': 1.0, 'but': 1.0, 'quality': 1.0, 'ok': 1.0, 'as': 1.0, 'and': 1.0, 'better': 1.0, 'survive': 1.0, 'were': 1.0, 'the': 6.0, 'interior': 1.0, 'damaged': 1.0}
Word element => {'up': 1.0, 'holding': 1.0, 'back': 1.0, 'from': 1.0, 'gone': 1.0, 'has': 1.0, '6': 1.0, 'very': 1.0, 'right': 1.0, 'have': 1.0, 'falls': 1.0, 'crib': 1.0, 'portable': 1.0, 'use': 1.0, 'sleeps': 1.0, 'is': 2.0, 'are': 1.0, 'they': 1.0, 'get': 1.0, 'and': 5.0, 'play': 3.0, 'playpen': 1.0, 'now': 2.0, 'sleep': 1.0, 'as': 1.0, 'all': 1.0, 'to': 3.0, 'ca': 1.0, 'was': 1.0, 'this': 1.0, 'pack': 1.0, 'only': 1.0, 'with': 1.0, 'i': 3.0, 'old': 1.0, 'for': 3.0, 'months': 1.0, 'one': 3.0, 'often': 1.0, 'been': 1.0, 'looking': 1.0, 'days': 1.0, 'you': 1.0, 'really': 1.0, 'plenty': 1.0, 'n': 1.0, 'not': 2.0, 'can': 1.0, 'but': 1.0, 'great': 1.0, 'comfortable': 1.0, 'big': 1.0, 'year': 1.0, 'tx': 1.0, 'enough': 1.0, 'in': 3.0, 'had': 2.0, 'purchased': 1.0, 'the': 1.0, 'biggest': 1.0, 'we': 2.0, 'a': 4.0, 'could': 1.0, 'because': 1.0, 'find': 1.0, 'does': 1.0, 'it': 6.0, 'she': 2.0, 'of': 1.0, 'room': 1.0}
Word element => {'activities': 1.0, 'sides': 1.0, 'cute': 1.0, 'has': 1.0, 'a': 1.0, 'larger': 1.0, 'and': 1.0, 'very': 2.0, 'all': 1.0, 'traditional': 1.0, 'than': 1.0, 'satisfied': 1.0, 'it': 2.0, 'am': 1.0, '4': 1.0, 'i': 1.0, 'n': 2.0, 'pack': 2.0, 'this': 1.0, 'play': 2.0, 'on': 1.0, 'with': 1.0, 'is': 1.0}
Word element => {'anybody': 1.0, 'very': 1.0, 'have': 1.0, 'their': 1.0, 'one': 1.0, 'had': 1.0, 'they': 1.0, 'wishes': 1.0, 'round': 2.0, 'comes': 1.0, 'around': 1.0, 'walk': 1.0, 'walking': 1.0, 'her': 2.0, 'look': 1.0, 'lay': 1.0, 'house': 1.0, 'pad': 1.0, 'also': 1.0, 'still': 1.0, 'now': 1.0, 'inside': 1.0, 'll': 1.0, 'down': 1.0, 'stand': 1.0, 'over': 1.0, 'up': 2.0, 'bugs': 1.0, 'year': 1.0, 'almost': 1.0, 'girl': 1.0, 'them': 1.0, 'baby': 3.0, 'lots': 1.0, 'in': 2.0, 'for': 5.0, 'love': 1.0, 'my': 2.0, 'find': 1.0, 'brush': 1.0, 'old': 2.0, 'trying': 1.0, 'this': 4.0, 'with': 4.0, 'research': 1.0, 'first': 1.0, 'mos': 1.0, 'pleased': 1.0, 'square': 1.0, 'when': 1.0, 'pull': 1.0, 'daughter': 1.0, 'we': 1.0, 's': 1.0, 'a': 5.0, 'at': 1.0, 'lot': 1.0, 'colorful': 1.0, 'it': 4.0, 'she': 6.0, 'playpen': 6.0, 'mirror': 1.0, 'did': 1.0, 'of': 6.0, 'room': 2.0, 'our': 1.0, 'to': 9.0, 'recommend': 1.0, 'was': 1.0, 'toy': 1.0, 'has': 3.0, 'on': 4.0, 'everyone': 1.0, 'side': 1.0, 'the': 7.0, 'butterfly': 2.0, 'wings': 2.0, 'been': 1.0, 'loves': 2.0, 'that': 2.0, 'i': 3.0, '4': 1.0, 'rattle': 1.0, 'etc': 1.0, 'skills': 1.0, 'got': 1.0, 'play': 3.0, 'and': 7.0, 'each': 1.0, 'would': 2.0, 'hold': 1.0}
Word element => {'yard': 1.0, 'use': 1.0, 'be': 1.0, 'will': 1.0, 'n': 1.0, 'pack': 1.0, 'this': 1.0, 'mobile': 1.0, 'on': 1.0, 'put': 1.0, 'is': 3.0, 'size': 1.0, '7': 1.0, 'just': 1.0, 'large': 1.0, 'simple': 1.0, 'both': 1.0, 'mirror': 1.0, 'looking': 1.0, 'grandson': 1.0, 'was': 2.0, 'old': 1.0, 'the': 7.0, 'it': 4.0, 'month': 1.0, 'to': 4.0, 'as': 2.0, 'very': 2.0, 'we': 1.0, 'a': 3.0, 'bright': 1.0, 'in': 3.0, 'love': 1.0, 'for': 2.0, 'safe': 1.0, 'at': 1.0, 'space': 1.0, 'my': 1.0, 'great': 1.0, 'squeak': 1.0, 'set': 1.0, 'up': 2.0, 'fold': 1.0, 'sturdy': 1.0, 'house': 1.0, 'off': 1.0, 'floor': 1.0, 'grandmother': 1.0, 'are': 2.0, 'entertaining': 1.0, 'has': 1.0, 'each': 1.0, 'an': 1.0, 'corner': 1.0, 'activity': 1.0, 'play': 2.0, 'and': 7.0, 'crinkle': 1.0, 'i': 2.0, 'rattle': 1.0, 'sides': 1.0, 'colors': 1.0, 'appealing': 1.0, 'able': 2.0}
Word element => {'squeaks': 1.0, 'somewhat': 1.0, 'sides': 1.0, 'rattles': 1.0, 'i': 1.0, 'it': 1.0, 'entertaining': 1.0, 'for': 1.0, 'with': 1.0, 'on': 1.0, 'are': 1.0, 'the': 3.0, 'size': 1.0, 'like': 1.0, 'and': 2.0, 'all': 1.0, 'colors': 1.0, 'bugs': 1.0}
Word element => {'or': 1.0, 'down': 1.0, 'able': 1.0, 'just': 1.0, 'instead': 1.0, 'so': 1.0, 'removable': 1.0, 'being': 1.0, 'if': 1.0, 'be': 2.0, 'would': 1.0, 'pad': 1.0, 'cover': 1.0, 'clean': 2.0, 'fabric': 1.0, 'about': 1.0, 'm': 1.0, 'adults': 1.0, 'washed': 1.0, 'on': 1.0, 'make': 1.0, 'toys': 1.0, 'to': 6.0, 'was': 2.0, 'for': 1.0, 'closest': 1.0, 'my': 1.0, 'better': 1.0, 'pen': 1.0, 'had': 1.0, 'spread': 1.0, 'cute': 1.0, 'the': 4.0, 'spot': 1.0, 'great': 1.0, 'concerned': 1.0, 'heavy': 1.0, 'haul': 1.0, 'bright': 1.0, 'one': 1.0, 'bought': 1.0, 'roomy': 1.0, 'little': 2.0, 'it': 8.0, 'find': 1.0, 'yard': 1.0, 'because': 1.0, 'i': 4.0, 'that': 1.0, 'babies': 2.0, 'gives': 1.0, 'wipe': 1.0, 'them': 1.0, 'keeping': 1.0, 'out': 1.0, 'attractive': 1.0, 'plenty': 1.0, 'could': 2.0, 'a': 3.0, 's': 1.0, 'of': 2.0, 'room': 1.0, 'crawl': 1.0, 'is': 1.0, 'around': 2.0, 'play': 2.0, 'and': 3.0, 'in': 1.0, 'easy': 1.0, 'setup': 1.0, 'though': 1.0, 'colors': 1.0, 'bug': 1.0, 'this': 3.0, 'pictures': 1.0}
Word element => {'cute': 1.0, 'toys': 1.0, 'cheerful': 1.0, 'bright': 1.0, 'are': 2.0, 'colors': 1.0, 'the': 2.0, 'down': 1.0, 'and': 4.0, 'attached': 1.0, 'when': 1.0, 'take': 1.0, 'month': 1.0, 'so': 2.0, 'for': 1.0, 'it': 2.0, 'this': 1.0, 'loves': 1.0, 'my': 1.0, 'bought': 1.0, 'comes': 1.0, 'granddaughter': 1.0, 'to': 2.0, 'i': 1.0, 'visit': 1.0, 's': 1.0, 'practical': 1.0, 'sturdy': 1.0, 'she': 2.0, 'nine': 1.0, 'easy': 1.0, '34': 3.0, 'up': 1.0, 'set': 1.0}
Word element => {'also': 1.0, 'a': 2.0, 'needs': 1.0, 'him': 1.0, 'it': 2.0, 'is': 2.0, 'sleep': 1.0, 'safe': 1.0, 'perfect': 1.0, 'to': 1.0, 'place': 1.0, 'old': 1.0, 'my': 1.0, 'nap': 1.0, 'loves': 1.0, 'this': 1.0, 'grandson': 1.0, 'for': 2.0, 'year': 1.0, 'when': 2.0, 'he': 3.0, 'visits': 1.0}
Word element => {'literally': 1.0, 'daughter': 2.0, 'easy': 1.0, 'get': 1.0, 'house': 1.0, 'month': 2.0, 'super': 1.0, 'would': 1.0, 'safe': 1.0, 'some': 1.0, 'done': 1.0, 'anywhere': 1.0, 'and': 5.0, 'it': 6.0, 'starting': 1.0, 'these': 1.0, 'clicks': 1.0, 'play': 1.0, 'bathroom': 1.0, 'my': 1.0, 'a': 5.0, 'take': 1.0, 'we': 1.0, 's': 1.0, 'go': 1.0, 'hour': 1.0, 'also': 2.0, 'on': 1.0, 'an': 1.0, 'likes': 1.0, 'could': 1.0, 'means': 1.0, 'double': 1.0, 'from': 1.0, 'who': 1.0, 'keep': 1.0, 'at': 1.0, 'is': 3.0, 'recently': 1.0, 'perfect': 1.0, 'minute': 1.0, 'put': 1.0, 'pictures': 1.0, 'bought': 2.0, '20minutes': 1.0, 'to': 6.0, 'as': 1.0, 'old': 1.0, 'i': 3.0, 'two': 2.0, 'just': 1.0, 'in': 1.0, 'development': 1.0, 'chores': 1.0, 'crawl': 1.0, 'with': 1.0, 'peace': 1.0, 'her': 1.0, 'place': 1.0, 'thing': 1.0, 'amused': 2.0, 'knowing': 1.0, 'takes': 1.0, '7': 2.0, 'less': 1.0, 'pull': 1.0, 'home': 1.0, 'than': 1.0, 'out': 1.0, 'the': 7.0, 'of': 4.0, 'box': 1.0, 'into': 1.0, 'unfold': 1.0, 'are': 1.0, 'quality': 1.0, 'them': 1.0, 'night': 1.0, 'she': 1.0, 'baby': 1.0, 'have': 1.0, 'can': 1.0, 'so': 1.0, 'time': 1.0, 'guess': 1.0, 'crib': 1.0, 'ie': 1.0, 'or': 1.0, 'this': 2.0, 'weekend': 2.0, 'highly': 1.0, 'together': 1.0, 'recommend': 1.0, 'for': 5.0, '10': 1.0, 'side': 1.0, 'good': 1.0, 'phase': 1.0}
Word element => {'floor': 1.0, 'her': 1.0, 'on': 1.0, 'having': 1.0, 'better': 1.0, 'then': 1.0, 'around': 1.0, 'move': 1.0, 'the': 2.0, 'baby': 1.0, 'it': 1.0, 's': 1.0, 'loves': 1.0, 'this': 1.0, 'easy': 1.0, 'much': 1.0, 'to': 1.0, 'and': 2.0, 'up': 1.0, 'set': 1.0}
Word element => {'too': 1.0, 'give': 1.0, 'pleased': 1.0, 'clean': 1.0, 'washed': 1.0, 'slipped': 1.0, 'removable': 1.0, 'appear': 1.0, 'yet': 1.0, 'soap': 1.0, 'easy': 1.0, 'while': 2.0, 'me': 1.0, 'learning': 1.0, 'which': 1.0, 'stay': 1.0, 'care': 1.0, 'description': 1.0, 'tab': 1.0, 'am': 2.0, 'lean': 1.0, 'reference': 1.0, 'tricky': 1.0, 'through': 2.0, 'little': 2.0, 'snap': 1.0, 'have': 4.0, 'must': 1.0, 'push': 2.0, 'you': 4.0, 'verify': 1.0, 'took': 1.0, 'sides': 1.0, 'm': 1.0, 'doesn': 2.0, 's': 1.0, 'that': 6.0, 'because': 1.0, 'easily': 1.0, 'fall': 1.0, 'the': 25.0, 'out': 2.0, 'enjoyed': 1.0, 'put': 1.0, 'watched': 1.0, 'underside': 2.0, 'do': 2.0, 'much': 1.0, 'pulled': 1.0, 'to': 19.0, 'pretty': 1.0, 'over': 2.0, 'slit': 1.0, 'hard': 1.0, 'fine': 1.0, 'mesh': 1.0, 'managed': 1.0, 'plastic': 1.0, 'with': 3.0, 'plenty': 1.0, 'crawl': 1.0, 'down': 1.0, 'stand': 1.0, 'more': 2.0, 'can': 2.0, 'is': 11.0, 'at': 2.0, 'sits': 1.0, 'feet': 1.0, 'of': 2.0, 'old': 1.0, 'seems': 1.0, 'off': 2.0, 'was': 5.0, '6': 2.0, 'infant': 1.0, 'grandchild': 1.0, 'mat': 6.0, 'playpen': 5.0, 'i': 14.0, 'simple': 1.0, 'he': 3.0, 'him': 2.0, 'month': 1.0, 'bought': 1.0, 'purchasing': 1.0, 'water': 1.0, 'loud': 1.0, 'grab': 1.0, 'then': 2.0, 'only': 1.0, 'own': 1.0, 'it': 16.0, 'be': 6.0, 'snapping': 1.0, 'for': 5.0, 'haven': 1.0, 'his': 2.0, 'around': 2.0, 'tear': 1.0, 'before': 1.0, 'probably': 2.0, 'crib': 1.0, 'really': 1.0, 'press': 1.0, 'lift': 1.0, 'about': 4.0, 'says': 1.0, 'up': 6.0, '29': 2.0, 'colorful': 1.0, 'worried': 1.0, 'tall': 3.0, 'new': 1.0, 'tried': 2.0, 'just': 2.0, 'and': 11.0, 'being': 1.0, 'himself': 1.0, 'on': 8.0, 'but': 6.0, 'myself': 1.0, 'pull': 2.0, 'in': 2.0, 'together': 1.0, 'whole': 1.0, 'as': 2.0, 'a': 10.0, 'go': 1.0, 'has': 2.0, 'guessing': 1.0, 'easier': 1.0, 'rattled': 1.0, 'than': 3.0, 'this': 4.0, 'joovy': 1.0, 'five': 1.0, 'minutes': 1.0, 'had': 2.0, 'baby': 4.0, 'scatter': 1.0, 'would': 3.0, 'toys': 1.0, 'if': 1.0, 'particularly': 1.0, '34': 9.0, 'crinkly': 1.0, 'four': 1.0, 'butterfly': 1.0, 'alone': 1.0, 'side': 1.0, 'good': 1.0, 'try': 1.0, '5': 1.0, 'one': 1.0, 'bee': 1.0, '1': 1.0, 'so': 3.0, 'lightweight': 1.0, 'child': 2.0, 'thumbs': 1.0, 'from': 2.0, 'who': 1.0, 'standing': 1.0, 'might': 1.0, 'make': 2.0, 'box': 1.0, 'sure': 1.0, 't': 4.0, 'set': 1.0, 'fairly': 1.0, 'away': 1.0, 'an': 2.0, 'think': 2.0, 'sound': 1.0, 'ground': 1.0, 'unexpectedly': 1.0, 'love': 1.0, 'scare': 1.0, 'snaps': 1.0, 'thick': 1.0, 'could': 1.0, 'entertain': 1.0, 'supposed': 1.0, 'note': 1.0, 'although': 1.0, '38': 1.0, 'older': 1.0, 'square': 2.0, 'will': 2.0, 'cover': 2.0, '36': 2.0, 'itself': 1.0, 'short': 1.0, 'should': 2.0, 'able': 1.0, 'get': 1.0, 'moved': 1.0, 'center': 1.0, 'cloth': 1.0, '2': 1.0, 'thing': 1.0, 'my': 1.0, 'room': 1.0, 'are': 2.0, 'wheels': 1.0, 'they': 1.0, 'approx': 1.0, 'there': 3.0, '23': 1.0, 'ladybug': 1.0, 'did': 1.0, 'top': 2.0, 'enough': 1.0, 'age': 1.0, 'chew': 1.0, 'half': 1.0, 'no': 2.0, 'inch': 1.0, 'soft': 1.0, 'purchased': 1.0, 'landing': 1.0, 'cleanup': 1.0}
Word element => {'transport': 1.0, 'product': 1.0, 'has': 1.0, 'fun': 1.0, 'great': 1.0, 'shapes': 1.0, 'inside': 1.0, 'easygoing': 1.0, 'and': 1.0, 'foods': 1.0, 'up': 1.0, 'super': 1.0}
Word element => {'young': 1.0, 'his': 1.0, 'roomy': 1.0, 'anyone': 1.0, '21': 1.0, '16': 1.0, 'mat': 1.0, 'else': 1.0, 'if': 1.0, 'cloth': 1.0, 'soapy': 1.0, 'with': 1.0, 'cleaned': 1.0, 'is': 1.0, 'transports': 1.0, 'folds': 1.0, 'busy': 1.0, 'replacement': 1.0, 'keeping': 1.0, 'great': 1.0, 'environment': 1.0, 'looking': 1.0, 'buy': 1.0, 'definitely': 1.0, 'are': 1.0, 'bag': 1.0, 'fails': 1.0, 'toys': 1.0, 'much': 1.0, 'so': 1.0, 'graco': 1.0, 'daughter': 2.0, 'preferred': 1.0, 'each': 1.0, 'basic': 1.0, 'home': 1.0, 'recommend': 1.0, 'daycare': 1.0, 'her': 4.0, 'love': 1.0, 'actually': 1.0, 'for': 3.0, 'wonder': 1.0, 'can': 2.0, 'but': 1.0, 'one': 3.0, 'bought': 1.0, 'my': 2.0, 'keep': 1.0, 'at': 3.0, 'or': 2.0, 'damp': 1.0, 'instantly': 1.0, 'let': 1.0, 'have': 1.0, 'decorations': 2.0, 'this': 3.0, 'colorful': 1.0, 'she': 2.0, 'it': 6.0, 'all': 1.0, 'any': 1.0, 'to': 4.0, 'use': 1.0, 'up': 1.0, 'over': 2.0, 'stimulating': 1.0, 'without': 1.0, 'the': 3.0, 'a': 5.0, 't': 1.0, 'highly': 1.0, 'affordably': 1.0, 'plain': 1.0, 'i': 3.0, 'watches': 1.0, 'in': 2.0, 'room': 1.0, 'easily': 2.0, 'you': 2.0, 'help': 1.0, 'take': 1.0, 'play': 4.0, 'across': 1.0, 'and': 6.0, 'from': 1.0, 'while': 1.0, 'yard': 3.0, 'because': 1.0, 'loves': 1.0}
Word element => {'them': 1.0, 'sides': 1.0, 'on': 1.0, 'is': 1.0, 'of': 1.0, 'granddaughter': 1.0, 'three': 1.0, 'so': 1.0, '1': 1.0, 'and': 2.0, 'daycare': 1.0, 'happy': 1.0, 'my': 2.0, '2': 1.0, 'these': 1.0, 'the': 3.0, 'keeps': 1.0, 'are': 1.0, 'bought': 1.0, 'i': 2.0, 'just': 2.0, 'for': 2.0, 'love': 2.0, 'it': 3.0, 'bright': 1.0, 'kids': 1.0, 'that': 1.0, 'toy': 1.0}
Word element => {'could': 1.0, 'i': 1.0, 'written': 1.0, 'better': 2.0, 'were': 1.0, 'hard': 1.0, 'right': 1.0, 'to': 2.0, 'find': 2.0, 'the': 2.0, 'maybe': 1.0, 'areas': 2.0, 'close': 1.0, 'instructions': 1.0, 'if': 1.0, 'open': 1.0, 'and': 1.0}
Word element => {'purchase': 1.0, 'happy': 1.0, 'm': 1.0, 'up': 1.0, 'set': 1.0, 'easy': 1.0, 'and': 1.0, 'your': 1.0, 'to': 3.0, 'place': 1.0, 'bed': 1.0, 'for': 2.0, 'baby': 1.0, 'great': 1.0, 'the': 2.0, 'i': 1.0, 'minute': 1.0, 'traveling': 1.0, 'is': 1.0, 'safe': 1.0, 'with': 1.0, 'this': 1.0, 'playpen': 1.0, 'play': 1.0, 'if': 2.0, 'works': 1.0, 'down': 1.0, 'her': 1.0, 'you': 1.0, 'need': 1.0, 'very': 2.0, 'as': 1.0, 'put': 1.0, 'also': 1.0, 'a': 3.0, 'well': 1.0}
Word element => {'time': 1.0, 'her': 1.0, 'enjoy': 1.0, 'our': 1.0, 'one': 1.0, 'n': 1.0, 'to': 1.0, 'pack': 1.0, 'loved': 1.0, 'this': 1.0, 'play': 1.0, 'it': 2.0, 'and': 1.0, 'up': 1.0, 'very': 1.0, 'little': 1.0, 'held': 1.0, 'well': 1.0, 'in': 1.0, 'seemed': 1.0, 'years': 1.0, 'for': 1.0}
Word element => {'fit': 1.0, 'to': 1.0, 'little': 1.0, 'hardly': 1.0, 'thanks': 1.0, 'again': 1.0, 'com': 1.0, 'budget': 1.0, 'us': 1.0, 'be': 1.0, 'r': 1.0, 'and': 1.0, 'me': 1.0, 'told': 1.0, 'about': 1.0, 'baby': 1.0, 'born': 1.0, 'babies': 1.0, 'due': 1.0, 'find': 1.0, 'wait': 1.0, 'much': 1.0, 'store': 1.0, 'with': 1.0, 'it': 1.0, 'this': 2.0, 'right': 1.0, 'can': 1.0, 'item': 1.0, 'not': 2.0, 'one': 1.0, 'for': 1.0, 'love': 1.0, 'very': 1.0, 'i': 3.0, '11th': 1.0, '2006': 1.0, 'could': 1.0, 'untill': 2.0, 'in': 2.0, 'my': 3.0, 'agust': 1.0, 'anywhere': 1.0, 'someone': 1.0, 'a': 1.0, 'is': 1.0, 'regular': 1.0}
Word element => {'they': 1.0, 'one': 2.0, '2': 1.0, 'seen': 1.0, 'two': 1.0, 'mattresses': 1.0, 'construction': 1.0, 'waterproof': 1.0, 'crib': 3.0, 'slightly': 1.0, 'than': 3.0, 'yard': 4.0, 'inch': 1.0, 'other': 1.0, 'fits': 2.0, 'my': 2.0, 'another': 1.0, 'longer': 1.0, 'of': 2.0, 'the': 6.0, 'more': 1.0, 'comes': 1.0, 'print': 1.0, 'eddie': 2.0, 'manchester': 1.0, 'are': 2.0, '24x38': 1.0, 'also': 2.0, 'seems': 1.0, 've': 1.0, 'in': 4.0, 'regular': 2.0, 'portable': 3.0, 'on': 1.0, 'bauer': 2.0, 'it': 1.0, 'thicker': 1.0, 'this': 4.0, 'mattress': 1.0, 'portion': 1.0, 'be': 2.0, 'travel': 4.0, 'anyway': 1.0, 'use': 2.0, 'used': 1.0, 'so': 1.0, 'can': 1.0, 'lightweight': 1.0, '00': 1.0, 'dimensions': 1.0, 'both': 2.0, 'perfectly': 1.0, 'and': 4.0, '1': 1.0, 'much': 1.0, 'only': 1.0, 'pack': 1.0, 'better': 1.0, 'should': 2.0, 'using': 1.0, 'which': 1.0, 'know': 1.0, 'just': 1.0, 'hard': 1.0, 'day': 1.0, 'pad': 1.0, 'moms': 1.0, 're': 1.0, 'with': 1.0, 'buy': 1.0, 'add': 1.0, 'graco': 1.0, 's': 1.0, 'aforementioned': 1.0, 'a': 1.0, 'fairly': 1.0, 't': 2.0, 'sheets': 2.0, 'bassinet': 1.0, 'to': 1.0, 'least': 1.0, 'any': 1.0, 'last': 1.0, 'is': 2.0, 'at': 1.0, 'hardy': 1.0, 'year': 2.0, 'need': 1.0, 'or': 2.0, 'if': 1.0, 'not': 1.0, 'i': 3.0, 'well': 1.0, 'that': 4.0, '20': 1.0, 'don': 1.0, 'play': 1.0, 'about': 1.0, 'cares': 1.0, 'wouldn': 1.0}
Word element => {'have': 1.0, 'clean': 1.0, 'easy': 1.0, 'must': 1.0, 'everyone': 1.0, 'better': 1.0, 'latched': 1.0, 'side': 1.0, '5': 1.0, 'put': 1.0, 'do': 1.0, 'engorgement': 1.0, 'quickly': 1.0, 'enough': 1.0, 'producing': 1.0, 'pumping': 1.0, 'never': 1.0, 'quot': 2.0, 'use': 1.0, 'comfortable': 2.0, 'very': 1.0, 'also': 2.0, 's': 2.0, 'breeze': 1.0, 'assembling': 1.0, 'used': 1.0, 'get': 1.0, 'as': 1.0, 'problem': 2.0, 'not': 2.0, 'efficient': 1.0, 'freezer': 1.0, 'but': 3.0, 'for': 8.0, 'actually': 1.0, 'without': 1.0, 'days': 1.0, '3': 1.0, 'on': 3.0, 'born': 1.0, 'had': 4.0, 'was': 5.0, 'instant': 1.0, 're': 2.0, 'me': 1.0, 'my': 1.0, 'save': 1.0, 'avent': 2.0, 'ways': 1.0, 'hospital': 2.0, 'always': 1.0, 'it': 7.0, 'each': 1.0, 'read': 1.0, 'prefer': 1.0, 'relief': 1.0, 'ice': 2.0, 'and': 9.0, 'mainly': 1.0, 'perfect': 1.0, 'because': 1.0, 'that': 3.0, 'together': 1.0, 'recommend': 2.0, 'were': 2.0, 'bought': 1.0, 'about': 2.0, 'jaundice': 2.0, 'packs': 2.0, 'la': 1.0, 'i': 9.0, 'out': 2.0, 'increase': 1.0, 'admitted': 1.0, 'am': 1.0, 'petals': 1.0, 'when': 2.0, 'pump': 5.0, 'go': 1.0, 'at': 2.0, 'keep': 2.0, 'mom': 1.0, 'to': 11.0, 'colder': 1.0, 'breat': 1.0, 'pumped': 1.0, 'whisper': 1.0, 'handy': 2.0, 'storage': 1.0, 'came': 2.0, 'baby': 1.0, 'she': 2.0, 'many': 1.0, 'pop': 1.0, 'in': 3.0, 'or': 3.0, 'min': 1.0, 'home': 1.0, 'bottles': 3.0, 'a': 6.0, 'worsen': 1.0, 'warmer': 1.0, 'can': 3.0, 'so': 2.0, 'highly': 1.0, 'this': 4.0, 'bottle': 2.0, 'reduced': 1.0, 'daughter': 1.0, 'got': 1.0, 'its': 1.0, 'cooler': 2.0, 'definatly': 1.0, 'bag': 2.0, 'frozen': 1.0, 'ok': 1.0, 'milk': 3.0, 'just': 2.0, 't': 1.0, 'along': 1.0, 'with': 5.0, 'quiet': 1.0, 'really': 1.0, 'all': 1.0, 'helped': 1.0, 'first': 1.0, 'plus': 1.0, 'are': 1.0, 'the': 11.0, 'of': 1.0, 'longer': 1.0, 'don': 1.0, 'feeding': 1.0, 'they': 1.0, 'stay': 1.0, 'if': 1.0, 'nipple': 1.0, 'you': 3.0, 'wha': 1.0, 'fridge': 1.0, 'ready': 1.0, 'feed': 1.0, 'once': 1.0, 'comes': 1.0, 'these': 1.0, 'from': 1.0}
Word element => {'way': 1.0, 'a': 11.0, 'going': 2.0, 'proucts': 1.0, 'and': 4.0, 'milk': 1.0, 'tough': 1.0, 'daughter': 2.0, 'line': 1.0, 'my': 2.0, 'i': 4.0, 'touch': 1.0, 'avent': 1.0, 'great': 1.0, 'etc': 1.0, 'stored': 1.0, 'can': 1.0, 'but': 1.0, 'variety': 1.0, 'be': 2.0, 'suction': 1.0, 'with': 1.0, 'that': 2.0, 'because': 1.0, 'clean': 1.0, 'which': 1.0, 'good': 3.0, 'doing': 1.0, 'the': 8.0, 'of': 3.0, 'occation': 2.0, 'there': 1.0, 'set': 2.0, 'used': 1.0, 'packs': 1.0, 'go': 2.0, 'pump': 5.0, 'easy': 1.0, 'freezer': 1.0, 'have': 2.0, 't': 3.0, 'likes': 1.0, 'all': 1.0, 'to': 6.0, 'bottles': 1.0, 'for': 2.0, 'get': 3.0, 'months': 1.0, 'had': 1.0, 'suggest': 1.0, '6': 1.0, '99': 1.0, 'breastfeed': 1.0, 'are': 3.0, 'first': 1.0, 'time': 2.0, 'this': 6.0, 'bottle': 1.0, 'on': 2.0, 'deal': 1.0, 'she': 1.0, 'it': 2.0, 'ice': 1.0, 'takes': 1.0, 'if': 3.0, 'you': 3.0, 'choice': 1.0, 'in': 3.0, 'm': 1.0, 'out': 1.0, 'store': 1.0, 'doesn': 2.0, 'emergencies': 1.0, 'using': 1.0, 'bag': 2.0, 'consuming': 1.0, 'nice': 1.0, 'little': 1.0, 'is': 9.0, 'at': 1.0, 'who': 1.0, 'one': 2.0, 'lot': 1.0, 'sometimes': 1.0, 'cause': 1.0, 'some': 1.0, 'letdown': 1.0, 'mom': 1.0, 'nipples': 1.0, 'only': 1.0, 'much': 1.0, 'use': 1.0, 'breastfeeding': 1.0, 'pumping': 1.0, 'wouldn': 1.0, 'something': 1.0, 'electric': 1.0, 'better': 1.0}
Word element => {'there': 1.0, 'out': 1.0, 'all': 1.0, 'definitely': 1.0, 'right': 1.0, 'just': 1.0, 'moms': 1.0, 'recommend': 1.0, 'easy': 1.0, 'and': 3.0, 'very': 1.0, 'price': 1.0, 'baby': 1.0, 'my': 1.0, 'the': 3.0, 'to': 2.0, 'had': 1.0, 'one': 1.0, 'comfortable': 1.0, 'love': 1.0, 'i': 4.0, 'breastpump': 1.0, 'pump': 1.0, 'on': 1.0, 'is': 2.0, 'a': 1.0, 'use': 2.0, 'basis': 1.0, 'first': 1.0, 'this': 2.0, 'it': 1.0, 'daily': 1.0, 'so': 1.0}
Word element => {'adjust': 1.0, 'liking': 1.0, '100': 1.0, 'much': 1.0, 'its': 1.0, 'laws': 1.0, 'leaking': 1.0, 'nurse': 1.0, 'second': 1.0, 'classes': 1.0, 'at': 3.0, 'home': 2.0, 'to': 11.0, 'once': 1.0, 'used': 2.0, 'have': 6.0, 'far': 1.0, 'student': 1.0, 'don': 1.0, 'of': 2.0, 'the': 9.0, 'happens': 1.0, '2': 1.0, 'but': 2.0, 't': 2.0, 'a': 4.0, 'it': 3.0, 'come': 2.0, 'sitting': 1.0, 'breastfeed': 1.0, 'with': 2.0, 'college': 1.0, 'this': 3.0, 'recommend': 1.0, 'full': 1.0, 'hurting': 1.0, 'didn': 1.0, 'am': 3.0, 'papertowel': 1.0, 'when': 1.0, 'between': 1.0, 'so': 2.0, 'bit': 1.0, 'i': 11.0, 'bought': 1.0, 'try': 1.0, 'too': 1.0, 'one': 1.0, 'in': 2.0, 'school': 1.0, 'pump': 7.0, 'get': 2.0, 'not': 2.0, 'my': 2.0, 'me': 1.0, 'just': 2.0, 'wet': 1.0, 'enough': 1.0, 'solve': 1.0, 'hold': 1.0, 'you': 4.0, 'everytime': 1.0, 'only': 1.0, 'grab': 1.0, 'suction': 3.0, 'be': 1.0, 'and': 7.0, 'anyone': 1.0, 'under': 1.0, 'cup': 1.0, 'suctioning': 1.0, 'catch': 1.0, 'leak': 1.0, 'for': 2.0, 'right': 1.0, 'position': 1.0, 'acustomed': 1.0, 'would': 1.0, 'stay': 1.0, 'if': 1.0, 'press': 1.0, 'on': 1.0, 'mom': 1.0, 'your': 2.0, 'that': 3.0, 'because': 1.0, 'breast': 1.0, 'will': 2.0, 'harder': 1.0, 'first': 1.0, 'are': 1.0, 'time': 2.0, 'engorged': 1.0, 'them': 1.0, 'before': 1.0, 'work': 1.0, 'hard': 1.0, 'inform': 1.0, 'how': 1.0, 'worked': 1.0}
Word element => {'breastfed': 1.0, 'mom': 1.0, 'important': 1.0, 'able': 1.0, 'full': 1.0, 'this': 2.0, 'am': 2.0, 'exclusively': 2.0, 'me': 1.0, 'my': 4.0, 'supply': 1.0, 'clean': 1.0, 'need': 1.0, 'simple': 1.0, 'see': 1.0, 'six': 1.0, 'during': 1.0, 'bathroom': 1.0, 'kept': 1.0, 'production': 1.0, 'breastfeed': 1.0, 'and': 8.0, 'milk': 2.0, 'isis': 1.0, '1': 2.0, 'big': 1.0, 'that': 1.0, 'breast': 2.0, 'hassle': 1.0, 'on': 4.0, '3': 2.0, 'time': 1.0, 'can': 1.0, 'so': 3.0, 'pump': 3.0, 'work': 2.0, '2': 2.0, 'four': 1.0, 'electric': 1.0, 'mo': 1.0, 'only': 1.0, 'imagine': 1.0, 'a': 4.0, 's': 1.0, 'to': 6.0, 'had': 1.0, 'for': 4.0, 'ended': 1.0, 'price': 1.0, 'planned': 1.0, 'daughter': 1.0, 'didn': 1.0, 'well': 1.0, 'i': 7.0, 'etc': 1.0, 'registered': 1.0, 'nurse': 1.0, 'as': 3.0, 'leave': 1.0, 'maternity': 1.0, 'while': 1.0, 'has': 1.0, 'trips': 1.0, 'realizes': 1.0, 'up': 1.0, 'takes': 1.0, '5': 2.0, 'bottles': 1.0, 'min': 1.0, 'working': 1.0, 'are': 1.0, 'week': 1.0, 'oz': 1.0, 'quick': 1.0, 'convenient': 1.0, 'breastfeeding': 1.0, 'pumping': 3.0, 'an': 1.0, 'ever': 1.0, 'each': 1.0, 'sessions': 1.0, 'continuing': 2.0, 'with': 1.0, 'discreet': 1.0, 'sustained': 1.0, 'still': 1.0, 'no': 2.0, 'one': 1.0, 'months': 1.0, 'in': 1.0, 'there': 1.0, 'at': 1.0, 'is': 4.0, 'plan': 1.0, 'now': 1.0, 'baby': 2.0, 'many': 1.0, 'come': 1.0, 'not': 1.0, 'it': 2.0, 't': 1.0, 'hoses': 1.0, 'little': 1.0, 'the': 1.0, 'of': 2.0}
Word element => {'had': 1.0, 'she': 2.0, 'was': 1.0, 'hers': 1.0, 'used': 1.0, 'while': 1.0, 'christine': 1.0, 'money': 1.0, 'absolute': 1.0, 'wonderful': 1.0, 'breastfeeding': 1.0, 'successful': 1.0, 'care': 1.0, 'manufacturers': 1.0, 'formula': 1.0, 'not': 2.0, 'into': 1.0, 'only': 1.0, 'biggest': 1.0, 'more': 1.0, 'recommend': 1.0, 'anything': 1.0, 'works': 1.0, 'do': 1.0, 'much': 1.0, 'my': 5.0, 'business': 1.0, 'breast': 1.0, 'that': 1.0, 'been': 1.0, 'electric': 2.0, 'double': 1.0, 'they': 2.0, 'between': 1.0, 'style': 2.0, 'n': 1.0, 'buy': 1.0, 'hand': 2.0, 'looking': 1.0, 'using': 1.0, 'as': 4.0, 'to': 7.0, 'all': 1.0, 'must': 1.0, 'have': 3.0, 'best': 2.0, 'isis': 2.0, 'both': 1.0, 'working': 1.0, 'are': 4.0, 'friend': 1.0, 'find': 1.0, 'pump': 9.0, 'market': 1.0, 'but': 2.0, '2': 1.0, 'alternate': 1.0, 'can': 3.0, 'medela': 2.0, 'pumps': 3.0, 'of': 4.0, 'the': 12.0, 'once': 1.0, 'these': 1.0, 'year': 2.0, 'products': 2.0, 'two': 1.0, 'it': 8.0, 'be': 2.0, 'suction': 1.0, 'great': 1.0, 'avent': 4.0, 'fantastic': 2.0, 'am': 1.0, 'sold': 1.0, 'easy': 2.0, 'office': 1.0, 'you': 2.0, 'use': 2.0, 'travel': 1.0, 'anyone': 1.0, 'and': 9.0, 'trip': 1.0, 'schedule': 1.0, 've': 1.0, 'i': 12.0, 'well': 1.0, 'small': 1.0, 'a': 5.0, 'going': 1.0, 't': 1.0, 'for': 5.0, 'on': 3.0, 'work': 1.0, 'efficient': 1.0, 'over': 3.0, 'pack': 1.0, 'types': 1.0, 'off': 1.0, 'depending': 1.0, 'did': 1.0, 'keep': 1.0, 'is': 6.0, 'at': 3.0, 'lot': 1.0, 'in': 1.0, 'just': 2.0, 'milk': 1.0, 'faster': 1.0, 'advice': 1.0, 'tradeshows': 1.0, 'sides': 1.0, 'by': 1.0, 'home': 1.0, 'weekends': 1.0, 'or': 3.0, 'if': 2.0, 'away': 1.0, 'from': 1.0, 'them': 1.0, 'site': 1.0, 'meetings': 1.0, 'also': 1.0, 'compact': 1.0, 'say': 1.0, 'comfortable': 1.0, 'etc': 1.0, 'day': 1.0, 'control': 1.0, 'express': 1.0, 'with': 3.0, 'highly': 1.0, 'this': 2.0}
Word element => {'little': 1.0, 'reviews': 1.0, 'of': 2.0, 'agree': 1.0, 'suppose': 1.0, 'habit': 1.0, 'have': 1.0, 'this': 1.0, 'would': 1.0, 'really': 1.0, 'bag': 1.0, 'on': 1.0, 'carry': 1.0, 'with': 2.0, 'set': 1.0, 'more': 1.0, 'well': 2.0, 'it': 7.0, 'first': 1.0, 'efficient': 1.0, 'come': 1.0, 'work': 4.0, 'but': 3.0, 'back': 1.0, 'at': 2.0, 'days': 1.0, '10': 1.0, 'electric': 3.0, 'i': 7.0, 'faster': 2.0, 'tried': 2.0, 'suction': 1.0, 'quieter': 1.0, 'putting': 1.0, 'had': 3.0, 'least': 1.0, 'to': 4.0, 'stars': 1.0, 'product': 1.0, 'for': 2.0, 'bottles': 1.0, 'yet': 1.0, 'using': 1.0, 'didn': 2.0, 'travel': 1.0, 'use': 1.0, 'then': 1.0, 'matter': 1.0, 'from': 1.0, 'tricky': 1.0, 'medela': 2.0, 'worked': 1.0, 'my': 1.0, 'avent': 1.0, 'the': 10.0, 'a': 2.0, 's': 2.0, 't': 2.0, 'than': 2.0, 'because': 1.0, 'give': 1.0, 'me': 1.0, 'not': 2.0, 'get': 1.0, 'pump': 4.0, 'hospital': 1.0, 'in': 1.0, 'that': 2.0, 'returning': 1.0, 'previously': 1.0, 'one': 1.0, 'insulated': 1.0, 'bought': 1.0, 'five': 1.0, 'before': 1.0, 'only': 1.0, 'works': 1.0, 'together': 1.0, 'again': 1.0, 'milk': 1.0, 'isis': 1.0, 'and': 4.0, 'better': 1.0}
Word element => {'way': 1.0, 'do': 1.0, 'dollars': 1.0, 'save': 1.0, 'll': 1.0, 'cheap': 1.0, 'thirty': 1.0, 'plain': 1.0, 'thing': 1.0, 'about': 2.0, 'whole': 1.0, 'several': 1.0, 'same': 1.0, 'them': 1.0, 'don': 1.0, 'in': 3.0, 'never': 1.0, 'touch': 1.0, 'cold': 3.0, 'came': 1.0, 'are': 1.0, 'packs': 7.0, 'week': 1.0, 'innovations': 1.0, 'product': 1.0, 'frozen': 3.0, 'love': 1.0, 'for': 3.0, 'and': 8.0, 'number': 1.0, 'going': 1.0, 'rest': 1.0, 't': 3.0, 'a': 3.0, 'good': 1.0, 'to': 4.0, 'was': 3.0, 'doesn': 1.0, 'were': 1.0, 'recommend': 2.0, 'this': 1.0, 'not': 1.0, 'if': 1.0, 'stay': 1.0, 'ice': 4.0, 'took': 1.0, 'then': 1.0, 'purchased': 1.0, 'baby': 2.0, 'many': 1.0, 'you': 2.0, 'night': 1.0, 'things': 1.0, 'they': 2.0, 'pump': 3.0, 'avent': 3.0, 'my': 1.0, 'one': 1.0, 'insulated': 1.0, 'of': 2.0, 'the': 21.0, 'milk': 2.0, 'placed': 3.0, 'stinks': 1.0, 'back': 1.0, 'over': 1.0, 'freezer': 2.0, 'work': 5.0, 'but': 3.0, 'got': 1.0, 'didn': 1.0, 'cooler': 2.0, 'by': 1.0, 'home': 1.0, 'pumped': 1.0, 'at': 3.0, 'heard': 1.0, 'time': 1.0, 'remain': 1.0, 'dollar': 1.0, 'yes': 1.0, 'switched': 1.0, 'mine': 1.0, 'breastmilk': 1.0, 'fridge': 1.0, 'hours': 1.0, 'bag': 2.0, 'i': 13.0, 'well': 1.0, 'with': 2.0, '15': 1.0, 'buying': 1.0, 'it': 2.0, 'would': 2.0, 'separately': 1.0, 'lukewarm': 1.0, 'set': 1.0, 'used': 1.0, '5': 1.0, 'so': 1.0, '00': 2.0, '3': 1.0, 'package': 1.0, 'especially': 1.0, 'reusable': 1.0, 'that': 1.0, 'because': 1.0, 'breast': 1.0, 'end': 1.0, 'day': 1.0, 'buy': 2.0}
Word element => {'more': 1.0, 'was': 1.0, 'wish': 1.0, 'is': 1.0, 'and': 1.0, 'loud': 1.0, 'i': 2.0, 'when': 1.0, 'sound': 1.0, 'funny': 1.0, 'nice': 1.0, 'will': 1.0, 'pump': 2.0, 'however': 1.0, 'recommend': 1.0, 'quiet': 1.0, 'a': 1.0, 'to': 1.0, 'all': 1.0, 'moms': 1.0, 'it': 3.0, 'makes': 1.0}
Word element => {'hang': 1.0, 'he': 1.0, 'we': 1.0, 'hard': 1.0, 'hold': 1.0, 'shaped': 1.0, 'nicely': 1.0, 'their': 3.0, 'committed': 1.0, 'you': 1.0, 'size': 1.0, 'substantially': 1.0, 'are': 3.0, 'system': 2.0, 'nipples': 2.0, 'only': 2.0, 'but': 1.0, 'past': 1.0, 'battery': 1.0, 'pumps': 1.0, 'off': 1.0, 'tried': 1.0, 've': 1.0, 'child': 1.0, '4th': 1.0, 'compare': 1.0, 'costs': 1.0, 'than': 2.0, 'standard': 1.0, 'better': 1.0, 'bigger': 1.0, 'if': 1.0, 'maintaining': 1.0, 'about': 2.0, 'uneasy': 1.0, 'stayed': 1.0, 'into': 1.0, 'hospital': 2.0, 'manual': 3.0, 'with': 4.0, 'maintained': 1.0, 'told': 1.0, 'none': 1.0, 'supply': 2.0, 'keep': 1.0, 'worked': 2.0, 'feeding': 2.0, 'double': 2.0, 'they': 1.0, 'hand': 1.0, 'using': 2.0, 'deluxe': 1.0, 'a': 6.0, 't': 4.0, 'for': 5.0, 'in': 4.0, 'be': 1.0, 'birth': 1.0, 'while': 2.0, 'exclusively': 1.0, 'went': 1.0, 'come': 1.0, 'so': 6.0, 'time': 4.0, 'after': 1.0, 'amount': 1.0, 'rental': 1.0, 'ended': 1.0, '5': 1.0, 'electric': 4.0, 'before': 1.0, 'milk': 4.0, 'and': 8.0, 'isis': 1.0, 'right': 1.0, 'was': 4.0, 'doesn': 1.0, 'another': 1.0, 'nicu': 1.0, 'minutes': 1.0, 'to': 13.0, 'as': 4.0, 'pour': 1.0, 'other': 1.0, 'all': 1.0, 'baby': 3.0, 'works': 1.0, 'days': 1.0, 'pumping': 1.0, 'well': 5.0, 'i': 12.0, 'bottles': 3.0, 'home': 3.0, 'rings': 1.0, 'needed': 1.0, 'couldn': 2.0, 'my': 9.0, 'me': 2.0, 'not': 2.0, 'get': 2.0, 'pump': 11.0, 'established': 2.0, 'provided': 1.0, 'bottle': 3.0, 'this': 6.0, 'contemplated': 1.0, 'qualm': 1.0, 'whether': 1.0, 'feed': 2.0, 'operated': 1.0, 'took': 1.0, 'or': 1.0, 'renting': 1.0, 'got': 1.0, 'didn': 1.0, 'type': 1.0, 'had': 4.0, 'him': 2.0, 'it': 4.0, 'thought': 1.0, 'when': 1.0, 'what': 1.0, 'received': 1.0, 'how': 1.0, 'shower': 1.0, 'the': 13.0, 'of': 3.0, 'which': 1.0, 'gift': 1.0, 'd': 1.0, 'much': 1.0, 'do': 1.0, 'deciding': 1.0, 'shocked': 1.0, 'at': 3.0, 'is': 3.0, 'comfortable': 1.0, 'use': 1.0, 'that': 1.0, 'breast': 2.0, 'feel': 1.0, 'tire': 1.0, 'your': 1.0, 'same': 2.0, 'brand': 1.0, 'nipple': 2.0, '15': 1.0, 'ones': 1.0, 'try': 1.0, 'one': 1.0, 'less': 1.0, 'up': 1.0, 'easy': 1.0, 'returning': 1.0}
Word element => {'quest': 1.0, 'review': 1.0, 'hope': 1.0, 'recommend': 1.0, 'this': 1.0, 'highly': 1.0, 'containters': 1.0, 'directly': 1.0, 'which': 1.0, 'kit': 1.0, 'conversion': 1.0, 'makes': 1.0, 'also': 1.0, 'useful': 2.0, 'still': 2.0, 's': 1.0, 'wrong': 1.0, 'style': 3.0, 'my': 3.0, 'me': 1.0, 'with': 3.0, 'close': 1.0, 'pumping': 1.0, 'had': 1.0, 'bottles': 1.0, 'home': 2.0, 'could': 1.0, 'a': 6.0, 't': 1.0, 'continued': 1.0, 'and': 8.0, 'isis': 3.0, 'description': 1.0, 'into': 1.0, 'hospital': 1.0, 'what': 1.0, 'when': 3.0, 'you': 3.0, 'via': 1.0, 'came': 1.0, 'since': 1.0, 'no': 1.0, 'pumps': 1.0, 'pattern': 1.0, 'electronic': 1.0, 'was': 2.0, 'to': 5.0, 'as': 5.0, 'nonetheless': 1.0, 'love': 2.0, 'for': 5.0, 'products': 1.0, 'product': 1.0, 'assemble': 2.0, 'using': 1.0, 'use': 5.0, 'medela': 6.0, 'other': 1.0, 'all': 1.0, 'an': 1.0, 'control': 1.0, 'go': 1.0, 'pump': 12.0, 'easy': 1.0, 'sure': 1.0, 'poor': 1.0, 'vary': 1.0, 'shopping': 1.0, 'nothing': 1.0, 'out': 1.0, 'especially': 1.0, 'come': 1.0, 'first': 1.0, 'thought': 2.0, 'it': 6.0, 'started': 1.0, 'baby': 1.0, 'works': 1.0, 'its': 2.0, 'milk': 1.0, 'just': 4.0, 'i': 13.0, 'well': 1.0, 'won': 1.0, 'avent': 6.0, 'great': 1.0, 'm': 2.0, 'in': 6.0, 'occasional': 1.0, 'little': 1.0, 'tiring': 1.0, 'sucking': 1.0, 'properly': 1.0, 'frequent': 1.0, 'but': 2.0, 'so': 1.0, 'speed': 1.0, 'can': 3.0, 'work': 1.0, 'at': 2.0, 'is': 2.0, 'effective': 1.0, 'sidenote': 1.0, 'rings': 1.0, 'right': 1.0, 'true': 1.0, 'new': 1.0, 'time': 2.0, 'roughly': 1.0, 'same': 1.0, 'on': 1.0, 'amount': 1.0, 'the': 14.0, 'of': 1.0, 'have': 1.0, 'be': 1.0, 'suction': 2.0, 'breast': 1.0, 'that': 1.0, 'correctly': 1.0, 'or': 1.0, 'manual': 2.0, 'else': 1.0, 'much': 1.0, 'match': 1.0, 'idea': 1.0, 'mom': 1.0, 'your': 2.0}
Word element => {'anything': 1.0, 't': 1.0, 'didn': 1.0, 'needless': 1.0, 'home': 1.0, 'going': 1.0, 'shopping': 1.0, '4': 1.0, 'two': 2.0, 'i': 11.0, 'so': 1.0, 'can': 1.0, 'but': 1.0, 'most': 1.0, 'oz': 1.0, 'out': 1.0, 'amp': 2.0, 'express': 1.0, 'get': 1.0, 'pump': 3.0, 'do': 1.0, 'gel': 1.0, 'electric': 1.0, 'used': 1.0, 'compare': 1.0, 'one': 1.0, 'cool': 1.0, 'the': 5.0, 'of': 3.0, 'tired': 1.0, 'baby': 2.0, 'them': 1.0, 'hand': 2.0, 'never': 1.0, 'letdown': 1.0, 'expressing': 1.0, 'whenever': 1.0, 'godsend': 1.0, 'got': 1.0, 'needed': 1.0, 'was': 2.0, 'store': 1.0, 'to': 5.0, 'if': 1.0, 'my': 3.0, 'quickly': 1.0, 'purchase': 2.0, 'say': 1.0, 'comfortable': 1.0, 'for': 3.0, 'kit': 3.0, 'time': 1.0, 'cant': 1.0, 'this': 3.0, 'bottle': 1.0, 'as': 1.0, 'leave': 1.0, 'a': 6.0, 'small': 1.0, 'hospitals': 1.0, 'have': 2.0, 'is': 4.0, 'that': 1.0, 'because': 1.0, 'silicone': 1.0, 'breast': 1.0, 'use': 1.0, 'travel': 1.0, 'in': 3.0, 'itself': 1.0, '3': 1.0, '7': 1.0, 'daily': 1.0, '9': 1.0, 'it': 2.0, 'very': 3.0, 'being': 1.0, 'later': 1.0, 'while': 1.0, 'petals': 1.0, 'thier': 1.0, 'expresses': 1.0, 'give': 1.0, 'produce': 1.0, 'room': 1.0, 'were': 1.0, 'nursing': 1.0, 'handy': 1.0, 'keep': 2.0, 'however': 1.0, 'know': 1.0, 'sanitizer': 1.0, 'milk': 3.0, 'just': 2.0, 'other': 1.0, 'short': 1.0, 'day': 1.0, 'pumping': 1.0, 'minutes': 1.0, 'extra': 2.0, 'dressing': 1.0, 'you': 1.0, 'packs': 1.0, 'away': 1.0, 'discreet': 1.0, 'with': 1.0}
Word element => {'don': 1.0, 'happy': 1.0, 'they': 1.0, 'an': 3.0, 'all': 4.0, 'has': 2.0, 'baby': 2.0, 'spending': 1.0, 'couch': 1.0, 'strapped': 1.0, 'breastfeed': 2.0, 'bought': 1.0, 'money': 1.0, 'essential': 1.0, 'needs': 1.0, 'bottle': 2.0, 'this': 5.0, 'time': 3.0, 'much': 2.0, 'do': 1.0, 'take': 1.0, 'reviews': 1.0, 'then': 1.0, 'obviously': 1.0, '200': 2.0, 'quite': 1.0, 'in': 3.0, 're': 1.0, 'more': 1.0, 'at': 2.0, 'bottles': 1.0, 'avent': 1.0, 'occasional': 1.0, 'week': 2.0, 'with': 4.0, 'frankly': 1.0, 'electric': 5.0, 'i': 12.0, 'line': 1.0, 'well': 1.0, 'it': 6.0, 'fully': 1.0, 'be': 3.0, 'work': 1.0, 'hand': 1.0, 'reading': 1.0, 'recommend': 1.0, 'will': 1.0, 'challenges': 2.0, 'was': 4.0, 'also': 1.0, 'need': 3.0, 'effort': 2.0, 'or': 3.0, 'short': 1.0, 'successfully': 2.0, 'operated': 1.0, 'wanted': 1.0, 'had': 2.0, 'after': 4.0, 'd': 2.0, 'someone': 1.0, 'many': 2.0, 'your': 3.0, 'very': 1.0, 'pumping': 1.0, 'use': 1.0, 'happen': 1.0, 'medella': 1.0, 'enough': 2.0, 'easy': 1.0, 'compatible': 1.0, 'does': 1.0, 'limited': 1.0, 'most': 1.0, 'making': 1.0, 'discrete': 1.0, 'expensive': 1.0, 'doesn': 1.0, 'online': 1.0, 'the': 9.0, 'even': 2.0, 'of': 3.0, 'a': 14.0, 'absences': 1.0, 'not': 2.0, 'try': 1.0, 'you': 9.0, 'what': 1.0, 'bottom': 1.0, 'supply': 3.0, 'invest': 1.0, 'gung': 1.0, 'building': 1.0, 'rave': 1.0, 'are': 2.0, 'my': 2.0, 'me': 2.0, 'quick': 1.0, 'than': 2.0, 'newborn': 1.0, 'hair': 1.0, 'successful': 1.0, 'to': 9.0, 'right': 1.0, 'pump': 10.0, 'go': 2.0, 'sure': 1.0, 'want': 3.0, 'if': 3.0, 'since': 1.0, 'that': 6.0, 'hold': 1.0, 'comfortable': 2.0, 'rent': 1.0, 'waste': 2.0, 'from': 1.0, 'hospital': 1.0, 'while': 2.0, 'give': 1.0, 'off': 1.0, 'and': 12.0, 'just': 3.0, 'tried': 1.0, 'on': 3.0, 'buying': 1.0, 'mistake': 1.0, 'continue': 1.0, 'when': 2.0, 'honestly': 1.0, 'away': 3.0, 'believe': 2.0, 'decide': 1.0, 'nursing': 4.0, 'two': 1.0, 'for': 7.0, 'purchase': 1.0, 'accept': 1.0, 'through': 1.0, 'wasn': 1.0, 'like': 1.0, 'nurser': 1.0, 'com': 1.0, 'but': 1.0, 'less': 1.0, 'up': 1.0, 'stores': 1.0, 'breastfeeding': 3.0, 'manual': 1.0, 'means': 1.0, 'else': 1.0, 'so': 1.0, 'unexpected': 1.0, '1': 1.0, 'medela': 1.0, 'tell': 1.0, 'how': 1.0, 'warn': 1.0, 't': 7.0, 'friends': 1.0, 'feed': 1.0, 'about': 1.0, 'didn': 2.0, 'really': 1.0, 'another': 1.0, 'spend': 1.0, 'think': 1.0, 'ho': 1.0, 'isn': 1.0, 'already': 1.0, 'those': 1.0, 'somewhere': 1.0, 'trip': 1.0, 'advice': 1.0, 'engorgement': 1.0, 'is': 7.0, 'can': 2.0, 'pumps': 1.0, 'momsmaternity': 1.0, 'have': 1.0, 'now': 1.0, 'worth': 1.0, 'been': 1.0, 'absolutely': 1.0, 'one': 2.0, '5': 1.0, 'true': 1.0, 'weeks': 1.0, 'relieving': 1.0, '2': 1.0, 'however': 2.0, 'get': 1.0, 'done': 1.0, 'frozen': 1.0, 'run': 1.0, 'errands': 1.0, 'necessarily': 1.0, 'mean': 1.0, 'extended': 1.0, 'business': 1.0, 'too': 1.0, '3': 1.0, '50': 2.0, 'breastmilk': 1.0}
Word element => {'this': 1.0, 'love': 1.0, 'absolutely': 1.0, '8': 1.0, '6': 1.0, '5': 1.0, 'confused': 1.0, 'nipple': 1.0, 'irreversibly': 1.0, 'was': 1.0, 'jaundice': 1.0, 'had': 1.0, 'baby': 1.0, 'mom': 1.0, 'at': 1.0, 'since': 1.0, 'day': 2.0, 'pumping': 2.0, 'quickly': 1.0, 'in': 1.0, 'stuck': 1.0, 'so': 1.0, 'cushion': 1.0, 'of': 1.0, 'because': 1.0, 'live': 1.0, 'aren': 1.0, 'but': 1.0, 'an': 2.0, 'currently': 1.0, 'see': 1.0, 'with': 1.0, 'convenient': 1.0, 'have': 1.0, 'ct': 1.0, 'better': 1.0, 'electric': 3.0, 'is': 2.0, 'more': 3.0, 'the': 3.0, 'it': 6.0, 'truly': 1.0, 'outlet': 1.0, 'pump': 3.0, 'md': 1.0, 'like': 2.0, 'almost': 1.0, 'mobility': 1.0, 'comfortable': 1.0, 'isis': 1.0, 'and': 6.0, 'use': 1.0, 'wonderful': 2.0, 'travel': 1.0, 'as': 2.0, 'to': 3.0, 'only': 1.0, 'works': 1.0, 'its': 1.0, 'ny': 1.0, 'my': 1.0, 'often': 1.0, 'family': 1.0, 'dual': 1.0, 'portable': 1.0, 'on': 1.0, 'a': 4.0, 't': 1.0, 's': 1.0, 'times': 1.0, 'am': 1.0, 'road': 1.0, 'you': 2.0, 'gives': 1.0, 'i': 6.0, 'etc': 1.0}
Word element => {'bag': 1.0, 'attractive': 1.0, 'case': 1.0, 'carrying': 1.0, 'easy': 1.0, 'how': 1.0, 'like': 2.0, 'without': 1.0, 'basis': 1.0, 'regular': 2.0, 'no': 1.0, 'problems': 1.0, 'that': 1.0, '2': 1.0, 'can': 3.0, '3': 1.0, 'on': 4.0, 'looks': 1.0, 'my': 2.0, 'son': 1.0, 'returned': 1.0, 'when': 1.0, 'use': 1.0, 'was': 4.0, 'to': 6.0, 'not': 2.0, 'n': 1.0, 'child': 1.0, 'up': 1.0, 'manual': 1.0, 'with': 3.0, 'take': 1.0, 'reviews': 2.0, 'pump': 4.0, 'kind': 1.0, 'once': 1.0, 'bought': 1.0, 'get': 1.0, 'months': 3.0, 'for': 3.0, 'lots': 1.0, 'about': 1.0, 'battery': 1.0, 'old': 1.0, 'invest': 1.0, 'i': 10.0, 'read': 1.0, 'single': 1.0, 'little': 1.0, 'before': 1.0, 'electric': 1.0, 'regimen': 1.0, 'until': 1.0, 'and': 6.0, 'pumps': 3.0, 'few': 1.0, 'this': 4.0, 'scared': 1.0, 'painful': 1.0, 'only': 2.0, 'want': 1.0, 'prepare': 1.0, 'if': 1.0, 'a': 7.0, 'is': 2.0, 'at': 1.0, 'did': 2.0, 'keep': 1.0, 'mimic': 1.0, 'one': 3.0, 'try': 1.0, 'lot': 1.0, 'sons': 1.0, 'in': 3.0, 'said': 1.0, 'morning': 1.0, 'having': 1.0, 'expensive': 1.0, 'planned': 1.0, '1': 1.0, 'since': 2.0, 'feeling': 1.0, 'breastfeeding': 2.0, '6': 1.0, 'he': 1.0, 'of': 4.0, 'the': 6.0, 'while': 1.0, 'nursed': 1.0, 'lunch': 1.0, 'plan': 1.0, 'side': 1.0, 'during': 2.0, 'day': 1.0, 'ease': 1.0, 'his': 2.0, 'you': 4.0, 'able': 1.0, 'night': 1.0, 'double': 1.0, 'feeding': 1.0, 'work': 2.0, 'daily': 1.0, 'it': 1.0, 'time': 1.0, 'general': 1.0, 'were': 1.0, 'sucking': 1.0, 'used': 1.0, 'action': 1.0, 'first': 2.0, 'bad': 1.0, 'through': 1.0, 'week': 1.0, 'different': 1.0}
Word element => {'hours': 1.0, 'few': 1.0, 'for': 1.0, 'bottles': 1.0, 'keeps': 1.0, 'case': 1.0, 'are': 1.0, 'with': 1.0, 'cold': 1.0, 'came': 1.0, 'extras': 1.0, 'side': 1.0, 'in': 1.0, 'great': 1.0, 'spend': 1.0, 'discreet': 1.0, 'appetite': 1.0, 'growing': 1.0, 'be': 1.0, 'd': 1.0, 'how': 1.0, 'up': 1.0, 'don': 1.0, 'baby': 1.0, 'because': 1.0, 'able': 1.0, 'electric': 1.0, 'would': 1.0, 'whole': 1.0, 'about': 1.0, 'takes': 1.0, 'however': 1.0, 'minutes': 2.0, 'average': 1.0, 'litle': 1.0, 'got': 1.0, 'every': 1.0, 'it': 3.0, '4': 1.0, 'i': 8.0, 'catch': 1.0, 'decision': 1.0, 'ounces': 2.0, 'plus': 1.0, 'luckily': 1.0, 'not': 1.0, 'me': 2.0, 'and': 4.0, 'as': 1.0, 'to': 5.0, 'all': 3.0, 'have': 1.0, '20': 2.0, 'boss': 1.0, 'reviews': 1.0, 'pump': 5.0, 'time': 2.0, 'bathroom': 1.0, 'purchase': 2.0, 'my': 3.0, 'the': 7.0, '2': 1.0, 'her': 1.0, 'good': 1.0, 'pumping': 1.0, 'day': 2.0, 'an': 2.0, 'awesome': 1.0, 'based': 2.0, 'this': 2.0, 'allows': 1.0, 'need': 1.0, 'using': 1.0, 'which': 1.0, 'grows': 1.0, 'on': 3.0, '3': 1.0, 'hour': 1.0, 'half': 1.0, 'who': 1.0, 'at': 2.0, 'is': 2.0, 'see': 1.0, 'rediculous': 1.0, 'if': 1.0, 't': 1.0, 'a': 3.0, 'could': 1.0}
Word element => {'expensive': 1.0, 'those': 1.0, 'needs': 1.0, 'reccommend': 1.0, 'use': 1.0, 'work': 1.0, 'using': 1.0, 'home': 1.0, 'would': 2.0, 'decided': 1.0, 'months': 1.0, 'bottle': 1.0, 'system': 1.0, 'than': 1.0, 'choose': 1.0, '250': 1.0, 'only': 3.0, 'costs': 2.0, 'electric': 4.0, 'us': 1.0, 'out': 1.0, 'wasn': 1.0, 'bit': 1.0, 'found': 1.0, 'pumps': 2.0, 'medela': 2.0, 'reccommendations': 1.0, 'for': 3.0, 'worried': 1.0, 'renting': 1.0, 'didn': 1.0, 'anyone': 1.0, 'and': 8.0, 'isis': 4.0, 'one': 1.0, 'too': 1.0, 'milk': 1.0, 'what': 2.0, 'when': 2.0, 'hurt': 1.0, 'sure': 1.0, 'pump': 7.0, 't': 2.0, 'a': 2.0, 's': 2.0, 'registered': 1.0, 'ladies': 1.0, 'avent': 4.0, 'will': 1.0, 'travel': 1.0, 'r': 1.0, 'to': 4.0, 'ever': 1.0, 'an': 2.0, 'all': 1.0, 'more': 1.0, 'babies': 1.0, '20': 1.0, 'breast': 3.0, 'that': 3.0, 'into': 1.0, 'feeding': 1.0, 'they': 1.0, 'many': 1.0, 'register': 1.0, 'was': 4.0, '60': 1.0, 'best': 1.0, 'm': 1.0, 'i': 14.0, 'outlet': 1.0, 'slow': 1.0, 'then': 1.0, 'took': 1.0, 'at': 4.0, 'is': 2.0, 'look': 1.0, 'class': 1.0, 'buying': 1.0, 'noisy': 1.0, 'pleased': 1.0, 'thought': 1.0, 'it': 4.0, 'my': 3.0, 'me': 1.0, 'mins': 1.0, 'who': 1.0, 'batteries': 1.0, 'the': 9.0, 'of': 2.0, 'so': 2.0, 'can': 1.0, 'express': 1.0, 'no': 2.0, 'anywhere': 1.0, 'or': 1.0, '9oz': 1.0, 'need': 1.0, 'there': 1.0, 'silent': 1.0, 'replace': 1.0, 'got': 1.0, 'daughter': 1.0, 'almost': 1.0, 'now': 1.0, 'six': 1.0, 'old': 1.0, 'asked': 1.0, 'if': 1.0, 'still': 1.0, 'nursing': 1.0}
Word element => {'you': 1.0, 'thank': 1.0, 'productive': 1.0, 'joy': 1.0, 'been': 1.0, 'couple': 1.0, 'after': 1.0, 'other': 1.0, 'sessions': 1.0, 'hoo': 3.0, 'while': 1.0, 'later': 1.0, 'pumping': 1.0, 'pulling': 1.0, 'cupboard': 1.0, 'love': 1.0, 'expensive': 1.0, 'out': 1.0, 'wasn': 1.0, 'one': 2.0, 'style': 1.0, 'not': 1.0, 'son': 1.0, 'big': 2.0, 'avent': 2.0, 'learning': 1.0, 'me': 1.0, 'my': 7.0, 'milk': 1.0, 'and': 3.0, 'isis': 2.0, 'than': 2.0, 'having': 1.0, 'of': 1.0, 'the': 5.0, 'believe': 1.0, 'more': 1.0, 'yeah': 2.0, 'is': 2.0, 'comfortable': 1.0, 'say': 1.0, 'in': 1.0, 'little': 2.0, 'much': 2.0, 'works': 1.0, 'free': 1.0, 'pump': 5.0, 'cords': 1.0, 'get': 1.0, 'sure': 1.0, 'have': 1.0, 'must': 1.0, 'that': 2.0, 'case': 1.0, 'use': 1.0, 'work': 1.0, 'but': 1.0, 'month': 1.0, 'it': 3.0, 'no': 2.0, 'power': 1.0, 'wonderful': 1.0, 'old': 1.0, 'i': 9.0, 'side': 1.0, 'such': 1.0, 'for': 1.0, '10': 1.0, 'can': 2.0, 'so': 2.0, 'tiny': 1.0, 'a': 5.0, 'going': 1.0, 'used': 1.0, 'or': 2.0, 's': 3.0, 'stealth': 1.0, 'like': 1.0, 'know': 1.0, 'mess': 1.0, 'hand': 1.0, 'to': 4.0, 'noises': 1.0, 'inside': 1.0, 've': 1.0, 'down': 1.0, 'bag': 1.0, 'feed': 1.0, 'took': 1.0, 'even': 1.0, 'hoses': 1.0, 't': 1.0, 'strange': 1.0, 'incredibly': 1.0, 'think': 1.0, 'better': 1.0, 'control': 1.0, 'pressure': 2.0, 'with': 2.0, 'black': 2.0, 'there': 1.0, 'errr': 1.0, 'err': 2.0, 'this': 2.0, 'few': 1.0, 'tries': 1.0, 'battery': 1.0, 'really': 1.0, 'how': 1.0}
Word element => {'children': 1.0, 'through': 1.0, 'so': 1.0, 'sessions': 1.0, 'multiple': 1.0, 'pumps': 1.0, 'their': 2.0, 'baby': 1.0, 'friends': 1.0, 'them': 2.0, 'enough': 1.0, 'first': 1.0, 'working': 2.0, 'provide': 1.0, 'even': 1.0, 'style': 1.0, 'did': 2.0, 'parts': 1.0, 'that': 3.0, 'been': 1.0, 'found': 2.0, 'this': 3.0, 'were': 1.0, 'full': 1.0, 'or': 2.0, 'once': 1.0, '6': 1.0, 'about': 1.0, 'delicate': 1.0, 'after': 1.0, 'ounces': 1.0, 'a': 4.0, 'use': 3.0, 'medela': 2.0, 'day': 3.0, 'pumping': 2.0, 'definitely': 1.0, 'well': 1.0, 'i': 10.0, 'one': 1.0, 'too': 2.0, 'and': 8.0, 'milk': 1.0, 'when': 2.0, 'last': 1.0, 'lost': 1.0, 'am': 1.0, 'for': 2.0, 'pump': 4.0, 'months': 2.0, 'get': 1.0, '3': 1.0, 'week': 1.0, 'able': 1.0, 'used': 1.0, 'pumped': 1.0, 'was': 3.0, 'home': 1.0, 'suction': 2.0, 'be': 1.0, 'of': 2.0, 'the': 5.0, 'not': 3.0, 'itself': 1.0, 'per': 1.0, 'occasional': 1.0, 'in': 4.0, 'it': 3.0, 'cracked': 1.0, 'have': 1.0, 'avent': 1.0, 'my': 3.0, 'listened': 1.0, 'put': 1.0, 'general': 1.0, 'do': 1.0, '7': 1.0, 'up': 2.0, 'year': 1.0, 'products': 1.0, 'child': 1.0, 'to': 4.0, 'long': 1.0, 'worked': 1.0, 'term': 1.0, 'time': 2.0, 'more': 1.0, 'dishwasher': 1.0, 'around': 1.0, 'than': 1.0, 'session': 1.0, 'due': 1.0, 'would': 1.0, 'stand': 1.0, 've': 2.0, 'repeated': 1.0, 'sustained': 1.0, 'never': 2.0, 'supply': 1.0, 'had': 1.0, 'with': 2.0, 'buying': 1.0, 'second': 2.0, '2': 1.0, 'will': 2.0, 'should': 1.0, 'ever': 1.0, 'other': 1.0, 'probably': 1.0, 'stood': 1.0, 'mom': 1.0}
Word element => {'instead': 1.0, 'their': 1.0, 'just': 1.0, 'took': 1.0, 'i': 1.0, 'nipples': 1.0, 'pump': 3.0, 'they': 1.0, 'of': 2.0, 'worked': 1.0, 'very': 3.0, 'amp': 3.0, 'my': 2.0, 'happy': 1.0, 'are': 1.0, '60': 1.0, 'the': 6.0, 'these': 1.0, 'was': 2.0, 'as': 3.0, 'to': 2.0, 'with': 1.0, 'useless': 1.0, 'it': 2.0, 'children': 1.0, 'wonderful': 2.0, 'though': 1.0, 'baby': 1.0, 'them': 1.0, 'bottles': 3.0, 'neck': 1.0, 'instantly': 1.0, 'other': 1.0, 'used': 1.0, 'now': 1.0, 'nursers': 1.0, 'platex': 1.0, 'is': 1.0, '00': 1.0, 'did': 1.0, 'those': 1.0, 'not': 1.0, 'take': 1.0, 'well': 1.0, 'kit': 1.0, 'for': 1.0, 'disappointed': 1.0, 'cracked': 1.0, 'until': 1.0, 'spend': 1.0, 'on': 1.0}
Word element => {'of': 1.0, 'me': 1.0, 'i': 1.0, 'to': 3.0, 'its': 1.0, 'been': 1.0, 'never': 1.0, 'a': 2.0, 's': 2.0, 'my': 1.0, 'use': 2.0, 'bought': 1.0, 'law': 1.0, 'christmas': 1.0, 'it': 3.0, 'this': 1.0, 'quick': 1.0, 'great': 1.0, 'the': 1.0, 'easy': 1.0, 'get': 2.0, 'pump': 2.0, 'in': 1.0, 'for': 1.0, 'sister': 1.0, 'having': 1.0, 'than': 1.0, 'hurt': 1.0, 'you': 2.0, 'when': 2.0, 'and': 3.0, 'milk': 1.0, 'too': 1.0, 'sterilizer': 1.0, 'lot': 1.0, 'keep': 1.0, 'better': 1.0, 'sleeping': 1.0, 'hand': 1.0, 'ready': 1.0, 'nothing': 1.0, 'is': 2.0, 'clean': 1.0, 'good': 1.0, 'on': 1.0, 'fairly': 1.0, 'are': 1.0, 'baby': 1.0, 'engorged': 1.0}
Word element => {'recommend': 1.0, 'up': 1.0, 'or': 1.0, 'if': 1.0, 'but': 1.0, 'working': 1.0, 'would': 1.0, 'day': 2.0, 'once': 3.0, 'mom': 2.0, 'home': 1.0, 'enough': 1.0, 'even': 1.0, 'didn': 1.0, 'at': 2.0, 'how': 1.0, '6': 1.0, 'attachment': 2.0, 'stock': 1.0, 'petal': 2.0, 'surgery': 1.0, 'you': 1.0, 'am': 4.0, 'while': 2.0, 'stay': 1.0, 'me': 1.0, 'not': 2.0, 'in': 4.0, 'also': 1.0, 'what': 1.0, 'massage': 1.0, 'had': 1.0, 'to': 5.0, 'that': 2.0, 'express': 1.0, 'hospital': 2.0, 'so': 1.0, 'time': 1.0, 'grade': 1.0, 'electric': 2.0, 'need': 3.0, '4': 1.0, 'i': 14.0, 'suction': 1.0, 'be': 2.0, 'already': 1.0, 'difficulty': 1.0, 't': 1.0, 'a': 8.0, 'go': 1.0, 'without': 1.0, 'the': 9.0, 'ounces': 1.0, 'after': 1.0, 'on': 2.0, 'with': 2.0, 'it': 4.0, 'avent': 2.0, 'may': 1.0, 'freezer': 1.0, 'sure': 1.0, 'get': 3.0, 'pump': 7.0, 'easy': 1.0, 'milk': 1.0, 'and': 1.0, 'for': 4.0, 'great': 1.0, 'comfortable': 1.0, 'bought': 1.0, 'one': 1.0, 'this': 1.0, 'found': 1.0, 'because': 1.0, 'having': 2.0, 'than': 1.0, 'find': 1.0, 'more': 1.0, 'is': 1.0, 'very': 1.0, 'did': 1.0, 'better': 1.0, 'only': 2.0, 'much': 1.0, 'works': 2.0}
Word element => {'hand': 1.0, 'fewer': 1.0, 'has': 1.0, 'as': 1.0, 'comfortable': 1.0, 'thorough': 1.0, 'if': 1.0, 'clear': 1.0, 'came': 1.0, 'definitely': 1.0, 'better': 1.0, 'times': 1.0, '1000': 1.0, 'manual': 1.0, 'medela': 2.0, 'bought': 1.0, 'thank': 1.0, 'different': 1.0, 'decided': 1.0, 's': 2.0, 'a': 7.0, 'could': 1.0, 'we': 1.0, 'ergonomical': 1.0, 'not': 1.0, 'wrong': 1.0, 'up': 1.0, 'way': 1.0, 'assembly': 1.0, 'my': 1.0, 'would': 1.0, 'squeaky': 1.0, 'was': 5.0, 'leaking': 1.0, 'also': 2.0, 'in': 1.0, 'and': 8.0, 'just': 1.0, 'milk': 1.0, 'couple': 1.0, 'out': 1.0, 'go': 1.0, 'pump': 4.0, 'have': 1.0, 'quieter': 1.0, 'get': 2.0, 'months': 1.0, 'messy': 1.0, 'been': 1.0, 'down': 1.0, 'far': 1.0, 'bottom': 1.0, 'looking': 1.0, 'using': 1.0, 'minutes': 1.0, 'seals': 1.0, 'for': 4.0, 'spare': 1.0, 't': 4.0, 'fit': 1.0, 'more': 1.0, 'husband': 1.0, 'had': 2.0, 'while': 1.0, 'pumping': 1.0, 'only': 1.0, 'harmony': 1.0, 'few': 2.0, 'this': 1.0, 'it': 10.0, 'you': 2.0, 'night': 1.0, 'very': 3.0, 'worked': 1.0, 'works': 1.0, 'tell': 1.0, 'did': 1.0, 'keep': 1.0, 'is': 2.0, 'at': 1.0, 'try': 1.0, 'too': 1.0, 'one': 1.0, 'lot': 1.0, 'bottles': 1.0, 'or': 1.0, 'however': 1.0, 're': 1.0, 'come': 1.0, 'can': 1.0, 'so': 3.0, 'put': 1.0, 'on': 1.0, 'shield': 1.0, 'together': 2.0, 'let': 1.0, 'collects': 1.0, 'under': 1.0, 'rubber': 2.0, 'drips': 1.0, 'problems': 1.0, 'with': 4.0, 'there': 1.0, 'are': 1.0, 'the': 8.0, 'of': 2.0, 'parts': 3.0, 'pretty': 2.0, 'to': 2.0, 'any': 2.0, 'clean': 1.0, 'last': 1.0, 'disassembly': 1.0, 'straw': 1.0, 'goodness': 1.0, 'what': 1.0, 'when': 1.0, 'cleaning': 2.0, 'well': 2.0, 'fast': 1.0, 'i': 10.0, 'putting': 1.0, 'back': 2.0, 'didn': 1.0, 'correctly': 1.0, 'wouldn': 1.0, 'directions': 2.0, 'ounces': 1.0, 'couldn': 1.0, 'd': 1.0, 'done': 1.0, 'apparently': 1.0}
Word element => {'anyone': 1.0, 'would': 1.0, 'cleaning': 1.0, 'mins': 1.0, '5': 1.0, 'only': 1.0, 'purse': 1.0, 'like': 2.0, 'is': 1.0, 'car': 1.0, 'the': 2.0, 'houses': 1.0, 'leery': 1.0, 'inexpensive': 1.0, 'little': 1.0, 'me': 1.0, 'give': 1.0, 'feeding': 1.0, 'recommend': 1.0, 'was': 4.0, 'bag': 1.0, 'wanted': 1.0, 'to': 5.0, 'had': 1.0, 'feed': 2.0, 'i': 8.0, 'wasn': 1.0, 'my': 2.0, 'breast': 2.0, 'on': 1.0, 'won': 1.0, 'everywhere': 1.0, 'and': 5.0, 'took': 2.0, 'loved': 1.0, 'instead': 1.0, 'this': 4.0, 'first': 1.0, 'with': 1.0, 'looks': 1.0, 'it': 4.0, 'easy': 1.0, 'pump': 4.0, 'but': 1.0, 'work': 1.0, 'past': 1.0, 'daughter': 1.0, 'latching': 1.0, 'her': 1.0, 'both': 1.0, 'correctly': 1.0, 'bit': 1.0, 'bottle': 1.0, 'so': 1.0, 'child': 1.0, 'up': 1.0, 'always': 1.0, 'discreet': 1.0, 'realitives': 1.0, 'pumped': 1.0, 'a': 3.0, 't': 1.0, 'we': 1.0, 'almost': 1.0, 'ready': 1.0, 'year': 1.0, 'awesome': 1.0}
Word element => {'happier': 1.0, 'much': 1.0, 'am': 1.0, 'purchase': 1.0, 'had': 1.0, 'medela': 1.0, 'product': 1.0, 'buy': 1.0, 'recommendation': 1.0, 'so': 1.0, 'time': 1.0, 'after': 1.0, 'in': 3.0, 'apart': 1.0, '10': 1.0, 'on': 2.0, 'there': 1.0, 'very': 1.0, 'be': 4.0, 'good': 1.0, 'a': 7.0, 't': 3.0, 'keep': 1.0, 'washed': 1.0, 'since': 1.0, 'at': 1.0, 'is': 2.0, 'but': 2.0, 'online': 1.0, 'are': 2.0, 'reviews': 1.0, 'they': 2.0, 'gentle': 1.0, 'course': 1.0, 'every': 1.0, 'use': 4.0, 'didn': 2.0, 'even': 1.0, 'of': 2.0, 'the': 6.0, 'mention': 1.0, 'great': 1.0, 'avent': 2.0, 'my': 2.0, 'go': 2.0, 'pump': 3.0, 'and': 8.0, 'lot': 1.0, 'too': 1.0, 'was': 2.0, 'to': 8.0, 'mimimal': 1.0, 'where': 1.0, 'kit': 1.0, 'needs': 1.0, 'parts': 2.0, 'got': 1.0, 'pieces': 1.0, 'with': 4.0, 'piece': 1.0, 'all': 1.0, 'dissatisfied': 1.0, 'used': 1.0, 'part': 1.0, 'it': 6.0, 'consuming': 1.0, 'goes': 1.0, 'taken': 1.0, 'finally': 2.0, 'suction': 1.0, 'rush': 2.0, 'broke': 2.0, 'i': 5.0, 'well': 1.0, 'don': 1.0, 'you': 1.0, 'frequent': 1.0, 'times': 1.0, 'will': 1.0, 'second': 1.0, 'immediately': 1.0, 'not': 2.0, 'frustrating': 2.0, 'remember': 1.0, 'before': 1.0, 'what': 1.0, 'plastic': 1.0, 'break': 1.0, 'broken': 1.0, 'must': 1.0, 'found': 1.0, 'know': 1.0, 'include': 2.0, 'this': 4.0, 'few': 1.0, 'trying': 1.0, 'researched': 1.0, 'extra': 1.0, 'because': 1.0, 'easily': 1.0, '20': 1.0, 'that': 1.0, 'mine': 1.0, 'hard': 2.0, 'over': 1.0, 'happen': 1.0, '7': 1.0, 'get': 1.0, 'months': 1.0}
Word element => {'brand': 1.0, 'another': 1.0, 'll': 1.0, 'second': 1.0, 'believe': 1.0, 'breast': 1.0, 'on': 1.0, 'suction': 1.0, 'good': 1.0, 'get': 1.0, 'enough': 1.0, 'long': 1.0, 'together': 1.0, 'not': 1.0, 'would': 1.0, 'my': 2.0, 'the': 3.0, 'gift': 1.0, 'a': 3.0, 'as': 1.0, 'received': 1.0, 'breastpump': 1.0, 'pump': 1.0, 'i': 4.0, 'thing': 1.0, 'to': 1.0, 'was': 1.0, 'try': 1.0, 'got': 1.0, 'child': 2.0, 'out': 1.0, 'of': 2.0, 'shower': 1.0, 'with': 2.0, 'only': 1.0, 'this': 1.0, 'first': 1.0, 'it': 1.0, 'lot': 1.0, 'stay': 1.0, 'aggravation': 1.0}
Word element => {'girl': 1.0, 'little': 1.0, 'interchangable': 1.0, 'bottles': 1.0, 'love': 1.0, 'need': 1.0, 'everything': 1.0, 'comes': 1.0, 'sanitize': 1.0, 'disassembles': 1.0, 'questions': 1.0, 'cups': 1.0, 'replace': 1.0, 'they': 1.0, 'product': 1.0, 'great': 1.0, 'avent': 1.0, '10': 1.0, 'for': 1.0, 'helps': 1.0, 'recommend': 1.0, 'asked': 1.0, 'if': 1.0, 'feeding': 1.0, 'any': 1.0, 'restroom': 1.0, 'in': 1.0, 'wiser': 1.0, 'finish': 1.0, 'no': 4.0, 'out': 1.0, 'flows': 1.0, 'problem': 1.0, 'part': 1.0, 'anywhere': 1.0, 'we': 1.0, 'take': 1.0, 'all': 2.0, 'kit': 1.0, 'wasn': 1.0, 'bleed': 1.0, 'whatever': 1.0, 'nipples': 1.0, 'sore': 1.0, 'have': 2.0, 'fact': 1.0, 'suppose': 2.0, 'had': 1.0, 'breasts': 1.0, '105': 1.0, 'nipple': 1.0, 'gerber': 1.0, 'using': 1.0, 'made': 1.0, 'which': 1.0, 'like': 1.0, 'spent': 1.0, 'at': 1.0, 'is': 10.0, 'are': 3.0, 'plus': 2.0, 'bad': 1.0, 'bottle': 1.0, 'this': 7.0, 'more': 5.0, 'painful': 1.0, 'thought': 1.0, 'it': 10.0, 'sippy': 1.0, 'takes': 1.0, 'up': 1.0, 'affordable': 1.0, 'months': 1.0, 'get': 1.0, 'pump': 12.0, 'know': 2.0, 'easy': 1.0, 'and': 12.0, 'people': 1.0, 'rented': 1.0, 'isis': 1.0, 'milk': 4.0, 'decided': 1.0, 'bought': 1.0, 'best': 3.0, 'expense': 1.0, 'felt': 1.0, 'totally': 1.0, 'been': 1.0, 'one': 2.0, 'actual': 1.0, 'to': 11.0, 'hand': 1.0, 'buy': 1.0, 'coming': 1.0, 'i': 13.0, 't': 3.0, 'small': 1.0, 'a': 6.0, 'will': 2.0, 'could': 1.0, 'without': 1.0, 'can': 2.0, 'so': 9.0, 'was': 8.0, 'natural': 1.0, 'of': 1.0, 'the': 22.0, 'cow': 1.0, 'experience': 2.0, 'comfortable': 1.0, 'but': 2.0, 'medela': 2.0, 'electric': 3.0, 'you': 6.0, 'able': 1.0, 'afford': 1.0, 'time': 2.0, 'new': 1.0, 'friend': 1.0, 'discreet': 1.0, 'oh': 1.0, 'weren': 1.0, 'with': 5.0, 'wash': 1.0, 'use': 1.0, 'her': 2.0, 'my': 4.0, 'me': 1.0, 'not': 1.0, 'produce': 1.0, 'hooked': 1.0, 'having': 2.0, 'specialist': 1.0, 'easily': 2.0, 'breast': 5.0, 'that': 5.0, 'thrilled': 1.0, 'problems': 3.0, 'producing': 1.0, 'feed': 1.0, 'miracle': 1.0, 'saw': 1.0, 'bonding': 2.0, 'tried': 1.0, 'off': 2.0, 'lactation': 1.0, 'much': 3.0, 'help': 1.0, 'when': 1.0, 'pieces': 1.0, 'got': 1.0, 'very': 1.0, 'quiet': 1.0, 'produced': 1.0, 'isn': 1.0, 'be': 2.0, 'she': 2.0, 'many': 1.0, 'baby': 2.0}
Word element => {'effective': 1.0, 'said': 1.0, 'work': 1.0, 'don': 1.0, 'even': 1.0, 'knows': 1.0, 'nobody': 1.0, 'handy': 2.0, 'while': 1.0, 'need': 1.0, 'cool': 1.0, 'transport': 1.0, 'set': 2.0, 'bottles': 1.0, 'home': 1.0, 'convenient': 1.0, 'its': 3.0, 'nipple': 1.0, 'do': 1.0, 'put': 1.0, 'reccommend': 1.0, 'heat': 1.0, 'store': 1.0, 'into': 1.0, 'right': 1.0, 'like': 2.0, 'feeding': 1.0, 'needed': 1.0, 'thats': 1.0, 'purse': 1.0, 'cause': 1.0, 'time': 1.0, '2oz': 1.0, 'pumping': 1.0, 'started': 1.0, 'them': 1.0, 'has': 1.0, 'can': 1.0, 'so': 1.0, 'which': 2.0, 'reading': 1.0, 'bag': 1.0, 'using': 3.0, 'easy': 2.0, 'know': 1.0, 'one': 2.0, 'didn': 1.0, 'mom': 1.0, 'any': 1.0, 'to': 7.0, 'all': 4.0, 'think': 1.0, 'but': 4.0, '2': 1.0, 'as': 1.0, 'awkward': 1.0, 'nice': 1.0, 'little': 2.0, 'very': 5.0, 'read': 1.0, 'a': 7.0, 't': 2.0, 'comes': 2.0, 'once': 1.0, 'after': 1.0, 'would': 3.0, 've': 1.0, 'supply': 1.0, 'some': 1.0, 'never': 1.0, 'alot': 1.0, 'pump': 4.0, 'months': 1.0, 'get': 2.0, 'then': 1.0, 'fine': 1.0, 'take': 2.0, 'reviews': 1.0, 'glad': 2.0, 'it': 18.0, 'highly': 1.0, 'bottle': 3.0, 'this': 4.0, 'peices': 1.0, 'with': 2.0, 'decided': 1.0, 'used': 2.0, 'am': 6.0, 'you': 5.0, 'what': 1.0, 'when': 3.0, 'getting': 1.0, 'keep': 1.0, 'did': 1.0, 'anyone': 1.0, 'and': 13.0, 'putting': 1.0, 'i': 21.0, 'she': 1.0, 'becomes': 1.0, '4': 1.0, 'of': 2.0, 'the': 10.0, 'have': 2.0, 'does': 1.0, 'before': 4.0, 'out': 1.0, 'enjoyed': 1.0, '5oz': 1.0, 'really': 5.0, 'was': 2.0, 'minutes': 1.0, 'also': 3.0, 'pick': 1.0, 'parts': 1.0, 'hang': 1.0, 'there': 1.0, 'plus': 1.0, 'first': 2.0, 'are': 2.0, 'instructions': 1.0, 'use': 4.0, 'second': 1.0, 'be': 1.0, 'nature': 1.0, 'increased': 1.0, 'intimidating': 1.0, 'taking': 1.0, 'particular': 1.0, 'apart': 1.0, 'stay': 1.0, 'if': 3.0, 'washing': 1.0, 'back': 1.0, 'full': 2.0, 'together': 1.0, 'got': 2.0, 'daughter': 1.0, 'in': 4.0, 'mornings': 1.0, 'on': 1.0, 'long': 1.0, 'noticed': 1.0, 'fact': 1.0, 'old': 1.0, 'because': 1.0, '20': 1.0, 'that': 4.0, 'goes': 1.0, 'just': 2.0, 'faster': 1.0, 'pleased': 1.0, 'takes': 1.0, 'about': 3.0, 'looks': 1.0, 'my': 2.0, 'at': 3.0, 'is': 2.0, 'now': 1.0, '21': 1.0}
Word element => {'comfortable': 1.0, 'also': 1.0, 'oh': 1.0, 'product': 1.0, 'clean': 1.0, 'efficiently': 1.0, 'as': 2.0, 'very': 3.0, 'just': 1.0, 'use': 3.0, 'this': 1.0, 'with': 3.0, 'can': 2.0, 'great': 1.0, 'i': 2.0, 'discreet': 1.0, 'to': 5.0, 'pump': 2.0, 'transport': 1.0, 'at': 1.0, 'medela': 1.0, 'work': 1.0, 'my': 2.0, 'anywhere': 1.0, 'avent': 1.0, 'easy': 3.0, 'bottles': 1.0}
Word element => {'incredibly': 1.0, 'and': 1.0, 'amazing': 1.0, 'bottles': 1.0, 'avent': 1.0, 'time': 1.0, 'is': 1.0, 'durable': 1.0, 'with': 1.0, 'this': 1.0, 'women': 2.0, 'or': 1.0, 'answer': 1.0, 'busted': 1.0, 'however': 1.0, 'small': 1.0, 'the': 2.0, 'full': 1.0, 'are': 2.0, 'definitely': 1.0, 'for': 1.0, 'not': 1.0, 'lowish': 1.0, 'especially': 1.0, 'if': 1.0, 'you': 1.0, 'supply': 1.0, 'going': 1.0, 'work': 1.0, 'back': 1.0, 'to': 1.0}
Word element => {'clean': 1.0, 'have': 1.0, 'always': 1.0, 'want': 1.0, 'paying': 1.0, 'just': 1.0, 'not': 1.0, 'child': 1.0, 'second': 2.0, 'buying': 1.0, 'with': 1.0, 'hour': 1.0, 'but': 1.0, 'pregnant': 1.0, '2': 1.0, 'in': 1.0, 'faster': 1.0, 'it': 8.0, 'because': 4.0, 'make': 1.0, '3': 1.0, 'am': 2.0, 'hurt': 1.0, 'barely': 1.0, 'i': 10.0, 'effective': 1.0, 'for': 1.0, 'love': 1.0, '1': 1.0, 'comfortable': 1.0, 'thought': 1.0, 'had': 2.0, 'now': 1.0, 'was': 3.0, 'electric': 1.0, 'bought': 2.0, 'suction': 1.0, 'be': 1.0, 'the': 2.0, 'company': 1.0, 'my': 3.0, 'an': 2.0, 'more': 1.0, 'is': 2.0, 'sure': 1.0, 'insurance': 1.0, 'get': 1.0, 'pump': 4.0, 'would': 1.0, 'never': 1.0, 'under': 1.0, 'son': 1.0, 'pumped': 1.0, 'after': 1.0, 'so': 1.0, 'who': 1.0, 'inexpensive': 1.0, 'awful': 1.0, 'right': 1.0, '8oz': 1.0, 'expressed': 1.0, 'could': 1.0, 'a': 3.0, 'to': 1.0, 'any': 1.0, 'and': 6.0, 'isis': 1.0, 'milk': 1.0, 'relatively': 1.0, 'sterilized': 1.0, 'fast': 1.0, 'extremely': 1.0, 'full': 1.0}
Word element => {'worth': 1.0, 'recommend': 1.0, 'money': 1.0, 'highly': 1.0, 'too': 1.0, 'also': 1.0, 'electric': 2.0, 'way': 1.0, 'double': 1.0, 'my': 2.0, 'than': 2.0, 'one': 1.0, 'breast': 1.0, 'on': 2.0, 'can': 2.0, 'manually': 1.0, 'little': 1.0, 'breasts': 1.0, 'hang': 1.0, 'difficult': 1.0, 'pump': 5.0, 'is': 1.0, 'figure': 1.0, 'both': 1.0, 'works': 1.0, 'well': 1.0, 'a': 1.0, 'although': 1.0, 'now': 1.0, 'was': 1.0, 'to': 2.0, 'gentle': 1.0, 'at': 1.0, 'once': 1.0, 'wonderfully': 1.0, 'with': 1.0, 'it': 4.0, 'first': 1.0, 'this': 2.0, 'out': 1.0, 'how': 1.0, 'i': 4.0, 'use': 1.0, 'got': 1.0, 'more': 2.0, 'the': 2.0, 'of': 1.0}
Word element => {'amount': 1.0, 'doing': 1.0, 'secured': 1.0, 'have': 4.0, 'order': 1.0, 'in': 3.0, 'temps': 1.0, 'm': 1.0, 'caps': 1.0, 'assembly': 1.0, 'screw': 1.0, 'avent': 4.0, 'carrying': 1.0, 'liked': 1.0, 'clean': 1.0, 'consider': 1.0, 'up': 1.0, 'or': 3.0, 'bottles': 2.0, 'home': 3.0, 'held': 1.0, 'happy': 1.0, 'lot': 2.0, 'make': 1.0, 'anymore': 1.0, 'items': 1.0, 'on': 2.0, 'lightweight': 1.0, 'so': 3.0, 'bought': 1.0, 'glad': 1.0, 'feedings': 1.0, 'to': 11.0, 'high': 1.0, 'longer': 1.0, 'the': 23.0, 'of': 14.0, 'more': 1.0, 'moderate': 1.0, 'babies': 1.0, 'can': 6.0, 'is': 5.0, 'at': 3.0, 'with': 3.0, 'this': 8.0, 'just': 1.0, 'and': 8.0, 'later': 1.0, 'worked': 1.0, 'store': 1.0, 'sure': 2.0, 'was': 3.0, 'between': 1.0, 'reviews': 1.0, 'i': 17.0, 'well': 4.0, 'get': 1.0, 'because': 6.0, 'that': 10.0, 'dishwasher': 2.0, 'making': 1.0, 'easily': 1.0, 'breast': 1.0, 'evening': 1.0, 'last': 1.0, 'down': 2.0, 'parts': 2.0, 'through': 1.0, 'directly': 1.0, 'garbage': 1.0, 'into': 2.0, 'freezer': 1.0, 'work': 1.0, 'sink': 1.0, 'provides': 1.0, 'damaged': 1.0, 'pump': 11.0, 'plus': 1.0, 'my': 1.0, 'are': 3.0, 'working': 1.0, 'first': 1.0, 'transport': 1.0, 'since': 1.0, 'money': 1.0, 'colored': 1.0, 'friend': 1.0, 'will': 3.0, 't': 3.0, 'replacement': 1.0, 'easy': 5.0, 'fit': 1.0, 'small': 1.0, 'has': 2.0, 'most': 1.0, 'always': 1.0, 'great': 2.0, 'if': 3.0, 'clear': 1.0, 'you': 9.0, 'when': 2.0, 'didn': 3.0, 'could': 1.0, 'seven': 1.0, 'am': 2.0, 'everyday': 1.0, 'by': 2.0, 'after': 2.0, 'product': 1.0, 'basket': 1.0, 'an': 2.0, 'couple': 1.0, 'still': 1.0, 'tinted': 1.0, 'out': 1.0, 'it': 8.0, 'be': 2.0, 'some': 3.0, 'reason': 1.0, 'a': 11.0, 'bag': 1.0, 'overall': 2.0, 'they': 2.0, 'need': 4.0, 'also': 2.0, 'disposal': 1.0, 'received': 1.0, 'light': 1.0, 'individual': 1.0, 'as': 4.0, 'happened': 1.0, 'but': 2.0, 'thankfully': 1.0, 'supplies': 1.0, 'doubles': 1.0, 'go': 2.0, 'primarily': 1.0, 'smaller': 1.0, 'mom': 3.0, 'her': 1.0, 'system': 1.0, 'do': 2.0, 'spend': 1.0, 'another': 2.0, 'think': 2.0, 'pack': 1.0, 'son': 1.0, 'needed': 1.0, 'easier': 1.0, 'very': 3.0, 'find': 1.0, 'required': 1.0, 'ways': 1.0, 'keep': 1.0, 'makes': 1.0, 'track': 1.0, 'gave': 1.0, 'only': 1.0, 'four': 1.0, 'stars': 1.0, 'there': 1.0, 'were': 1.0, 'use': 1.0, 'pumping': 4.0, 'me': 3.0, 'slightly': 1.0, 'uncomfortable': 1.0, 'comfortable': 1.0, 'say': 1.0, 'had': 2.0, 'been': 1.0, 'medical': 1.0, 'emergency': 1.0, 'follow': 1.0, 'stay': 3.0, 'which': 1.0, 'lunch': 1.0, 'few': 1.0, 'fall': 2.0, 'times': 2.0, 'consistent': 1.0, 'would': 1.0, 'preferred': 1.0, 'electric': 2.0, 'who': 3.0, 'swears': 1.0, 'feed': 1.0, 'pure': 1.0, 'ease': 1.0, 'for': 6.0, 'pieces': 3.0, 'moms': 1.0, 'should': 2.0, 'itself': 1.0, 'three': 1.0, 'directions': 1.0, 'case': 1.0, 'otherwise': 1.0, 'months': 1.0, 'storage': 1.0, 'snacks': 1.0, 'quality': 1.0}
Word element => {'worthless': 1.0, 'a': 3.0, 't': 4.0, 'going': 1.0, 'or': 1.0, 'latch': 1.0, 'up': 1.0, 'don': 1.0, 'reset': 1.0, 'engorged': 1.0, 'out': 3.0, 'stops': 1.0, 'another': 2.0, 'pull': 2.0, 'having': 1.0, 'am': 1.0, 'hurts': 1.0, 'either': 1.0, 'pad': 1.0, 'much': 1.0, 'certain': 1.0, 'only': 1.0, 'both': 1.0, 'to': 4.0, 'as': 1.0, 'but': 2.0, 'money': 1.0, '2': 1.0, 'comfort': 1.0, 'won': 1.0, 'has': 2.0, 'easier': 1.0, 'far': 1.0, 'constantly': 1.0, 'can': 3.0, 'so': 1.0, 'smaller': 1.0, 'dread': 1.0, 'once': 1.0, 'spent': 1.0, 'gentle': 1.0, 'of': 1.0, 'the': 5.0, 'more': 3.0, 'is': 5.0, 'and': 5.0, 'hate': 1.0, 'bottle': 1.0, 'this': 1.0, 'it': 12.0, 'baby': 2.0, 'she': 2.0, 'i': 8.0, 'two': 1.0, 'pumping': 2.0, 'spend': 1.0, 'want': 1.0, 'from': 1.0, 'on': 1.0, 'amount': 1.0, 'in': 1.0, 'hit': 1.0, 'even': 4.0, 'my': 1.0, 'me': 1.0, 'if': 2.0, 'still': 1.0, 'have': 3.0, '1': 1.0, 'friend': 2.0, 'recommeded': 1.0, 'figure': 1.0, 'milk': 1.0, 'why': 1.0, 'go': 1.0, 'pump': 2.0, 'figured': 1.0, 'point': 1.0, 'ineffective': 1.0, 'plenty': 1.0, 'with': 3.0, 'you': 3.0, 'things': 1.0, 'tried': 1.0, 'breast': 1.0, 'because': 1.0, 'problems': 1.0, 'that': 2.0, 'backs': 1.0, 'for': 1.0, 'than': 2.0, 'assemble': 1.0, 'where': 1.0, 'are': 2.0, 'one': 2.0, 'hand': 2.0, 'screaming': 1.0, 'other': 1.0}
Word element => {'are': 1.0, 'who': 1.0, 'start': 1.0, 'from': 1.0, 'plan': 1.0, 'is': 1.0, 'child': 1.0, 'second': 1.0, 'pumping': 1.0, 'know': 1.0, 'did': 1.0, 'people': 1.0, 'due': 1.0, 'anywhere': 1.0, 'use': 2.0, 'friends': 1.0, 'so': 1.0, 'time': 1.0, 'half': 1.0, 'in': 2.0, 'before': 1.0, 'of': 1.0, 'amount': 1.0, 'milk': 1.0, 'and': 6.0, 'it': 6.0, 'breastfeed': 1.0, 'first': 1.0, 'loud': 1.0, 'medela': 1.0, 'all': 1.0, 'as': 1.0, 'to': 5.0, 'for': 1.0, 'years': 1.0, 'quiet': 1.0, 'about': 3.0, 'the': 4.0, 'but': 1.0, '2': 1.0, 'could': 1.0, 'a': 2.0, 'ago': 1.0, 'lightweight': 1.0, 'my': 3.0, 'avent': 1.0, 'almost': 1.0, 'son': 1.0, 'planning': 1.0, 'one': 1.0, 'months': 2.0, '3': 1.0, 'on': 1.0, 'went': 1.0, 'born': 1.0, '8': 1.0, 'able': 1.0, 'electric': 1.0, 'same': 1.0, '10': 1.0, 'used': 1.0, 'her': 1.0, 'get': 1.0, 'pump': 4.0, 'when': 1.0, 'two': 1.0, 'i': 9.0, 'this': 1.0, 'painful': 1.0, 'min': 1.0, 'side': 2.0, 'oz': 1.0, 'each': 1.0, 'recommend': 1.0, 'was': 5.0, 'talk': 1.0, 'not': 1.0, 'me': 1.0, 'heard': 1.0, 'got': 1.0, 'took': 1.0, 'per': 1.0, 'loved': 1.0, 'friend': 1.0, 'out': 1.0}
Word element => {'cost': 1.0, 'be': 5.0, 'had': 1.0, 'assemble': 1.0, 'for': 1.0, 'clean': 1.0, 'big': 1.0, 'nice': 1.0, '1': 1.0, 'very': 3.0, 'from': 2.0, 'mothers': 1.0, 'medela': 1.0, 'carry': 1.0, 'not': 1.0, 'style': 1.0, 'situations': 1.0, 'a': 3.0, 'would': 3.0, 'manual': 1.0, 'with': 1.0, 'ideal': 1.0, 'as': 2.0, 'good': 1.0, 'which': 2.0, 'like': 1.0, 'pieces': 1.0, 'in': 3.0, 'go': 1.0, 'pump': 9.0, 'easy': 3.0, 'pain': 1.0, 'this': 3.0, 'think': 1.0, 'work': 2.0, 'can': 3.0, 'thought': 1.0, 'it': 4.0, 'irritating': 1.0, 'really': 1.0, 'her': 1.0, 'use': 3.0, 'wonderful': 1.0, 'and': 6.0, 'isis': 1.0, 'i': 10.0, '4': 1.0, 'into': 1.0, 'when': 1.0, 'am': 1.0, 'you': 1.0, 'me': 1.0, 'my': 1.0, 'avent': 1.0, 'also': 1.0, 'express': 1.0, 'thing': 1.0, 'much': 2.0, 'quickly': 1.0, 'only': 1.0, 'to': 7.0, 'pretty': 1.0, 'many': 1.0, 'gave': 1.0, 'same': 1.0, 'if': 1.0, 'cousin': 1.0, 'on': 1.0, 'amount': 1.0, 'the': 8.0, 'of': 2.0, 'skeptical': 1.0, 'heard': 1.0, 'time': 1.0, 'double': 1.0, 'back': 1.0, 'directly': 1.0, 'successful': 1.0, 'electric': 2.0, 'an': 1.0, 'other': 1.0, 'home': 1.0, 'bottles': 1.0, 'pumped': 1.0, 'one': 2.0, 'was': 1.0, 'is': 6.0, 'at': 2.0, 'are': 1.0, 'first': 1.0, 'that': 3.0, 'because': 1.0, 'order': 1.0, 'pumping': 1.0, 'must': 1.0, 'have': 1.0, 'milk': 1.0, 'just': 1.0}
Word element => {'though': 1.0, 'bottles': 1.0, 'avent': 1.0, 'on': 1.0, 'waste': 1.0, 'works': 1.0, 'style': 1.0, 'in': 1.0, 't': 1.0, 'great': 1.0, 'the': 2.0, 'use': 1.0, 'grade': 1.0, 'hospital': 1.0, 'rented': 1.0, 'hadnt': 1.0, 'bf': 1.0, 'few': 1.0, 'been': 1.0, 'a': 2.0, 'your': 1.0, 'pump': 4.0, 'have': 1.0, 'raved': 1.0, 'if': 2.0, 'and': 3.0, 'with': 1.0, 'this': 2.0, 'it': 3.0, 'helpful': 1.0, 'money': 1.0, 'don': 1.0, 'about': 1.0, 'never': 1.0, 'i': 6.0, 'nipples': 1.0, 'found': 1.0, 'now': 1.0, 'to': 1.0, 'friends': 1.0, 'bought': 1.0, 'be': 1.0, 'love': 1.0, 'wonder': 1.0, 'after': 1.0, 'd': 1.0, 'successful': 1.0}
Word element => {'market': 1.0, 'on': 1.0, 'best': 1.0, 'occasionally': 1.0, 'be': 1.0, 'whether': 1.0, 'everyone': 1.0, 'ones': 1.0, 'are': 1.0, 'know': 1.0, 'which': 1.0, 'or': 1.0, 'everywhere': 1.0, 'bottles': 1.0, 'need': 1.0, 'will': 2.0, 'also': 1.0, 'problem': 1.0, 'with': 3.0, 'every': 2.0, 'almost': 1.0, 'me': 1.0, 'the': 6.0, 'including': 1.0, 'no': 1.0, 'about': 1.0, 'takes': 1.0, 'newborn': 1.0, 'out': 1.0, 'pumps': 1.0, 'it': 8.0, 'only': 2.0, 'loud': 1.0, 'this': 3.0, 'thought': 1.0, 'that': 1.0, 'electric': 3.0, 'because': 1.0, 'medela': 1.0, 'can': 1.0, 'work': 3.0, 'back': 1.0, 'lot': 1.0, 'since': 1.0, 'pump': 5.0, 'pumping': 1.0, 'day': 2.0, 'ever': 1.0, '6': 1.0, 'of': 2.0, 'would': 1.0, 'recommend': 1.0, 'store': 1.0, 'was': 3.0, 'as': 1.0, 'to': 5.0, 'weeks': 1.0, 'now': 1.0, 'i': 10.0, 'easily': 1.0, 'you': 4.0, 'when': 2.0, 'daughter': 1.0, 'comes': 1.0, 'more': 1.0, 'a': 3.0, 'going': 1.0, 't': 2.0, 'my': 3.0, 'in': 1.0, 'take': 3.0, 'amount': 1.0, 'use': 2.0, 'home': 1.0, 'time': 2.0, 'so': 2.0, 'got': 1.0, 'didn': 1.0, 'everything': 1.0, 'same': 1.0, 'want': 1.0, 'specifically': 1.0, 'for': 2.0, 'bought': 2.0, 'one': 3.0, 'milk': 3.0, 'and': 4.0, 'shorter': 1.0, 'don': 1.0}
Word element => {'achieved': 1.0, 'is': 1.0, 'once': 1.0, 'finally': 1.0, 'works': 1.0, 'before': 1.0, 'together': 1.0, 'back': 1.0, 'apart': 1.0, 'suction': 2.0, 'any': 1.0, 'do': 1.0, 'and': 1.0, 'getting': 1.0, 'often': 1.0, 'lot': 2.0, 'well': 1.0, 'a': 2.0, 'had': 1.0, 'difficulty': 1.0, 'pump': 1.0, 'have': 1.0, 'it': 3.0, 'with': 2.0, 'this': 1.0, 'putting': 1.0, 'i': 2.0, 'or': 1.0, 'product': 1.0, 'taking': 1.0, 'of': 2.0, 'takes': 1.0, 'ten': 1.0, 'the': 1.0, 'minutes': 1.0, 'so': 1.0}
Word element => {'few': 1.0, 'your': 1.0, 'on': 1.0, 'only': 1.0, 'its': 1.0, '9': 1.0, 'getting': 1.0, 'taking': 1.0, 'medela': 1.0, 'buy': 1.0, 'plan': 1.0, 'finished': 1.0, 'wrist': 1.0, '20': 2.0, 'about': 1.0, 'back': 1.0, '4oz': 1.0, 'home': 1.0, 'money': 1.0, 'ozs': 1.0, 'work': 3.0, 'but': 2.0, 'minutes': 2.0, 'was': 3.0, '15': 1.0, 'wanted': 1.0, 'to': 7.0, 'fixed': 1.0, 'the': 2.0, 'great': 2.0, 'my': 2.0, 'went': 2.0, 'breastmilk': 1.0, 'i': 12.0, 'because': 1.0, '30': 2.0, 'this': 1.0, 'first': 1.0, 'it': 8.0, 'get': 1.0, 'easy': 1.0, 'pump': 3.0, 'started': 1.0, 'baby': 1.0, 'waste': 1.0, 'broke': 1.0, 'love': 1.0, 'for': 1.0, 'using': 1.0, 'which': 1.0, 'brought': 1.0, 'like': 1.0, 'something': 1.0, 'that': 1.0, 'from': 1.0, 'while': 2.0, 'give': 1.0, 'at': 1.0, 'three': 1.0, 'use': 1.0, 'working': 1.0, 'took': 1.0, 'then': 2.0, 'so': 1.0, 'after': 1.0, 'decided': 1.0, 'months': 1.0, 'and': 5.0, 'couple': 1.0, 'really': 1.0, 'leak': 1.0, 'of': 2.0, 'if': 2.0, '10': 2.0, 'apart': 1.0, 'used': 1.0, 'could': 1.0, 'a': 4.0, 'you': 1.0, 'hurt': 1.0, 'times': 2.0, 'when': 2.0}
Word element => {'problem': 1.0, 'between': 1.0, 'forth': 1.0, 'son': 1.0, 'used': 1.0, 'we': 1.0, 'ones': 1.0, 'recommend': 1.0, 'do': 1.0, 'avent': 2.0, 'stuck': 1.0, 'if': 1.0, 'pumped': 1.0, 'difficult': 2.0, 'bottles': 1.0, 'by': 2.0, 'milk': 1.0, 'moms': 1.0, 'and': 8.0, 'months': 1.0, 'get': 2.0, 'my': 1.0, 'me': 1.0, 'd': 1.0, 'frustration': 1.0, 'style': 1.0, 'out': 2.0, 'consuming': 1.0, 'pressure': 1.0, 'haven': 1.0, 'at': 2.0, 'bottle': 1.0, 'highly': 1.0, 'few': 1.0, 'this': 3.0, 'good': 1.0, 'for': 4.0, 'electric': 1.0, 'praise': 1.0, 'ounces': 1.0, 'a': 4.0, 't': 1.0, 'could': 1.0, 'go': 1.0, 'pump': 7.0, 'alot': 1.0, 'they': 1.0, 'enthusiastic': 1.0, 'it': 2.0, 'are': 1.0, 'working': 2.0, 'first': 1.0, 'baffled': 1.0, 'over': 1.0, 'am': 1.0, 'able': 2.0, 'night': 1.0, 'accompanies': 1.0, 'be': 2.0, 'very': 1.0, 'little': 1.0, 'best': 1.0, 'both': 1.0, 'to': 10.0, 'had': 1.0, 'what': 1.0, 'was': 5.0, 'more': 1.0, 'however': 1.0, 'found': 1.0, 'forking': 1.0, 'tears': 1.0, 'same': 1.0, 'the': 12.0, 'of': 3.0, 'about': 1.0, 'thing': 1.0, 'no': 2.0, 'but': 1.0, 'early': 1.0, 'on': 1.0, 'with': 5.0, 'tried': 1.0, 'relieve': 1.0, 'due': 1.0, 'lack': 1.0, 'breast': 1.0, 'that': 1.0, 'next': 1.0, 'time': 3.0, 'new': 1.0, 'leary': 1.0, 'mothers': 1.0, 'looked': 1.0, 'as': 1.0, 'unable': 1.0, 'in': 2.0, 'day': 1.0, 'relief': 1.0, 'engorgement': 1.0, 'went': 1.0, 'only': 1.0, 'purchase': 1.0, 'sleep': 1.0, 'back': 2.0, 's': 1.0, 'sides': 1.0, 'bought': 1.0, 'money': 1.0, 'effort': 1.0, 'correctly': 1.0, '8': 1.0, 'i': 12.0, 'involved': 1.0, 'there': 1.0, 'than': 1.0, 'assemble': 1.0, 'way': 1.0, 'have': 1.0, 'continued': 1.0, 'nurse': 1.0}
Word element => {'every': 1.0, 'this': 1.0, 'love': 1.0, 'enough': 1.0, 'penny': 1.0, 'up': 1.0, 'trying': 1.0, 'opposed': 1.0, 'as': 1.0, 'late': 1.0, 'storing': 1.0, 'great': 1.0, 'also': 1.0, 'her': 1.0, 'feed': 1.0, 'painless': 1.0, 'pressure': 1.0, 'designed': 1.0, 's': 2.0, 'pumping': 1.0, 'bought': 1.0, 'was': 4.0, 'actually': 3.0, 'easier': 1.0, 'right': 1.0, 'got': 1.0, 'daughter': 1.0, 'breasts': 1.0, 'baby': 1.0, 'started': 1.0, 'new': 1.0, 'put': 1.0, 'flow': 1.0, 'on': 1.0, 'a': 2.0, 'might': 1.0, 't': 3.0, 'that': 1.0, 'because': 1.0, 'worn': 1.0, 'not': 1.0, 'brought': 1.0, 'which': 1.0, 'and': 10.0, 'milk': 2.0, 'be': 1.0, 'i': 8.0, 'home': 1.0, '3': 1.0, 'today': 1.0, 'about': 2.0, 'no': 1.0, 'but': 2.0, 'can': 2.0, 'so': 5.0, 'am': 1.0, 'after': 1.0, 'unless': 1.0, 'year': 1.0, 'from': 1.0, 'hard': 1.0, 'confused': 1.0, 'kind': 1.0, 'pump': 4.0, 'get': 1.0, 'shouldn': 1.0, 'thought': 1.0, 'it': 12.0, 'sitting': 1.0, 'breastfeed': 2.0, 'stuck': 1.0, 'once': 1.0, 'really': 1.0, 'wake': 1.0, 'than': 1.0, 'huge': 1.0, 'assembly': 1.0, 'handle': 1.0, 'is': 2.0, 'at': 2.0, 'find': 1.0, 'since': 1.0, 'lol': 1.0, 'for': 2.0, '10': 1.0, 'of': 2.0, 'the': 10.0, '2nd': 1.0, 'too': 1.0, 'try': 1.0, 'empty': 1.0, 'feedings': 1.0, 'to': 10.0, 'all': 1.0, 'isis': 1.0, 'both': 1.0, 'out': 2.0, 'absolutely': 2.0, 'in': 1.0, '15': 1.0, 'mins': 1.0, 'old': 1.0, 'wonderful': 2.0, 'aren': 1.0, 'they': 3.0, 'together': 1.0, 'were': 1.0, 'full': 1.0, 'painful': 1.0, 'soft': 1.0, 'pain': 1.0, 'having': 1.0, 'release': 2.0, 'worth': 1.0, 'figure': 1.0, 'now': 1.0, 'first': 1.0, 'are': 1.0, 'night': 1.0, 'you': 2.0, 'able': 1.0, 'push': 1.0, 'me': 1.0, 'my': 1.0, 'there': 1.0, 'hang': 1.0, 'sore': 1.0, 'though': 1.0}
Word element => {'one': 1.0, 'tried': 1.0, 'not': 1.0, 'times': 1.0, 'that': 1.0, 'however': 1.0, 'only': 1.0, 'do': 1.0, 'break': 1.0, 'take': 1.0, 'doesn': 1.0, 'pumps': 1.0, 'it': 1.0, 'this': 3.0, 'long': 1.0, 'stow': 1.0, 'i': 5.0, 'clean': 1.0, 'find': 1.0, 'the': 1.0, 'and': 3.0, 'too': 1.0, 'is': 2.0, 'convenient': 1.0, 'notice': 1.0, 't': 2.0, 'a': 1.0, 'use': 1.0, 'common': 1.0, 'handy': 1.0, 'pump': 2.0, 'easy': 3.0, 'session': 1.0, 'need': 1.0, 'suction': 1.0, 're': 1.0, 'or': 1.0, 'latch': 1.0, 'few': 1.0, 'during': 1.0, 've': 1.0, 'each': 1.0, 'pumping': 1.0, 'order': 1.0, 'working': 1.0, 'in': 1.0, 'keep': 1.0, 'if': 1.0, 'don': 1.0, 'know': 1.0, 'for': 1.0, 'to': 6.0, 'all': 1.0}
Word element => {'highly': 1.0, 'love': 1.0, 'weeks': 1.0, 'started': 1.0, 'use': 1.0, 'breast': 1.0, 'both': 1.0, 'thank': 1.0, 'thriving': 1.0, 'is': 2.0, 'his': 1.0, 'with': 2.0, 'eating': 1.0, 'loves': 1.0, 'bottles': 1.0, 'adjusted': 1.0, 'up': 1.0, 'done': 1.0, 'quickly': 2.0, 'he': 1.0, 'how': 1.0, 'at': 3.0, 'did': 1.0, 'surprise': 1.0, 'it': 4.0, 'first': 2.0, 'easy': 1.0, 'pump': 4.0, 'bottle': 1.0, 'time': 2.0, 'reviews': 1.0, 'read': 1.0, 'ease': 1.0, 'pumping': 1.0, 'and': 5.0, 'this': 3.0, 'scared': 1.0, 'not': 1.0, 'me': 1.0, 'discreet': 1.0, 'son': 2.0, 'go': 1.0, 'we': 1.0, 'a': 2.0, 'the': 10.0, 'recommend': 1.0, 'was': 5.0, 'confusion': 1.0, 'on': 3.0, 'i': 9.0, 'tried': 1.0, 'got': 1.0, 'stories': 1.0, 'nervous': 1.0, '5': 1.0, 'before': 1.0, 'which': 1.0, 'amazed': 1.0, 'mom': 1.0, 'birth': 1.0, 'daddy': 1.0, 'of': 2.0, 'avent': 1.0, 'purchase': 1.0, 'my': 3.0, 'clean': 1.0, 'last': 1.0, 'good': 1.0, 'no': 1.0, 'whole': 1.0, 'about': 1.0, 'thing': 1.0, 'as': 1.0, 'to': 5.0, 'all': 2.0, 'because': 1.0, 'decided': 1.0, 'one': 1.0, 'would': 1.0, 'you': 1.0, 'idea': 1.0, 'hurt': 2.0, 'after': 1.0, 'horror': 1.0, 'people': 1.0, 'were': 1.0, 'nipple': 2.0, 'telling': 1.0}
Word element => {'comfortable': 1.0, 'minimal': 1.0, 'enjoyed': 1.0, 'they': 1.0, 'again': 1.0, 'never': 1.0, 'spit': 1.0, 'also': 1.0, 'will': 1.0, 'is': 3.0, 'it': 1.0, 'think': 1.0, 'teeth': 1.0, 'begining': 1.0, 'in': 1.0, 'spitting': 1.0, 'had': 1.0, 'and': 5.0, 'type': 1.0, 'problems': 1.0, 'my': 3.0, 'fact': 1.0, 'everthing': 1.0, 'helped': 1.0, 'easy': 2.0, 'pump': 3.0, 'caps': 1.0, 'soreness': 1.0, 'i': 3.0, 'didn': 1.0, 'e': 1.0, 'friends': 1.0, 'the': 2.0, 'have': 3.0, 'other': 1.0, 'anything': 1.0, 'with': 2.0, 'ups': 1.0, 'this': 1.0, 'daughter': 1.0, 't': 1.0, 'a': 1.0, 'gas': 2.0, 'problew': 1.0, 'wonderful': 1.0, 'use': 4.0, 'was': 1.0, 'leaking': 1.0, 'trying': 1.0, 'encourage': 1.0, 'clean': 1.0, 'her': 1.0, 'eat': 1.0, 'correctly': 1.0, 'me': 1.0, 'releive': 1.0, 'not': 1.0, 'all': 1.0, 'to': 6.0, 'as': 1.0, 'any': 2.0, 'up': 1.0, 'bottles': 1.0, 'or': 1.0, 'no': 1.0, 'colic': 2.0, 'that': 1.0, 'system': 1.0}
Word element => {'already': 1.0, 'if': 1.0, 'even': 1.0, 'manual': 1.0, 'recommend': 1.0, 'on': 2.0, 'nursing': 1.0, 'baby': 1.0, 'my': 1.0, 'side': 2.0, 'one': 1.0, 'ready': 1.0, 'quickly': 1.0, 'having': 1.0, 'find': 1.0, 'during': 1.0, 'an': 2.0, 'can': 1.0, 'but': 2.0, 'of': 1.0, 'set': 1.0, 'up': 1.0, 'nothing': 1.0, 'plan': 1.0, 'finished': 1.0, 'more': 1.0, 'is': 2.0, 'course': 1.0, 'results': 1.0, 'works': 1.0, 'electric': 2.0, 'able': 2.0, 'you': 1.0, 'am': 2.0, 'when': 1.0, 'beginners': 1.0, 'have': 2.0, 've': 1.0, 'also': 2.0, 'as': 2.0, 'to': 5.0, 'long': 1.0, 'although': 1.0, 'takes': 1.0, 'practice': 1.0, 'i': 8.0, 'very': 3.0, 'home': 1.0, 'prefer': 1.0, 'haven': 1.0, 'soon': 1.0, 'and': 3.0, 'that': 2.0, 'been': 2.0, 'like': 1.0, 'using': 1.0, 'fit': 1.0, 'for': 2.0, 'a': 1.0, 't': 1.0, 'great': 1.0, 'the': 4.0, 'this': 3.0, 'it': 3.0, 'get': 2.0, 'pump': 7.0, 'easy': 2.0, 'or': 1.0, 'bottles': 1.0, 'good': 1.0, 'clean': 2.0, 'other': 1.0, 'making': 1.0, 'take': 1.0, 'along': 1.0, 'definitely': 1.0, 'day': 1.0, 'pumping': 1.0, 'buy': 1.0, 'extra': 1.0, 'onto': 1.0}
Word element => {'use': 1.0, 'will': 1.0, 'kind': 1.0, 're': 1.0, 'they': 1.0, 'bottles': 1.0, 'also': 1.0, 'glad': 1.0, 'without': 1.0, 'letdown': 1.0, 'never': 1.0, 've': 1.0, 'stimulating': 1.0, 'cushion': 1.0, 'petal': 1.0, 'out': 1.0, 'luck': 1.0, 'better': 1.0, 'but': 1.0, 'sore': 1.0, 'both': 1.0, 'only': 1.0, 'purchase': 2.0, 'me': 1.0, 'my': 4.0, 't': 6.0, 'a': 5.0, 'past': 1.0, 'work': 2.0, 'style': 1.0, 'daughter': 1.0, 'together': 1.0, 'have': 2.0, 'nursing': 1.0, '8': 1.0, 'pump': 6.0, 'get': 2.0, 'first': 2.0, 'this': 4.0, 'with': 1.0, 'just': 2.0, 'started': 1.0, 'baby': 2.0, 'one': 2.0, 'love': 2.0, 'for': 2.0, 'afraid': 1.0, 'in': 5.0, 'whether': 1.0, 'decide': 1.0, 'am': 2.0, 'times': 1.0, 'all': 1.0, 'an': 1.0, 'bullet': 1.0, 'from': 1.0, 'medela': 1.0, 'sine': 1.0, 'back': 1.0, 'needed': 1.0, 'while': 1.0, 'bite': 1.0, 'after': 1.0, 'had': 3.0, '12': 1.0, 'pis': 1.0, 'week': 1.0, 'breasts': 1.0, 'to': 6.0, 'was': 6.0, 'minutes': 1.0, 'breast': 1.0, 'ounces': 1.0, 'couldn': 2.0, 'and': 5.0, 'electric': 3.0, 'comlicated': 1.0, 'ws': 1.0, 'problem': 2.0, 'anywhere': 1.0, 'continue': 1.0, '15': 1.0, 'the': 6.0, 'of': 1.0, 'need': 1.0, 'or': 1.0, 'dual': 1.0, 'on': 1.0, 'didn': 3.0, 'wouldn': 1.0, 'it': 4.0, 'constantly': 1.0, 'so': 3.0, 'noisy': 1.0, 'handle': 1.0, 'at': 3.0, 'since': 1.0, 'great': 1.0, 'suction': 1.0, 'leave': 1.0, 'as': 1.0, 'awkward': 1.0, 'breastfeeding': 1.0, 'good': 1.0, 'side': 1.0, 'maternity': 1.0, 'care': 1.0, 'like': 1.0, 'hand': 1.0, 'w': 1.0, 'prisoner': 1.0, 'everything': 1.0, 'move': 1.0, 'really': 1.0, 'quiet': 1.0, 'years': 1.0, 'no': 2.0, 'i': 13.0, 'outlet': 2.0, 'fast': 1.0, 'felt': 1.0, 'under': 1.0, 'would': 1.0}
Word element => {'convenience': 1.0, 'of': 1.0, 'because': 1.0, 'mostly': 1.0, 'happy': 1.0, 'have': 1.0, 'first': 1.0, 'electric': 1.0, 'dual': 1.0, 'used': 1.0, 'at': 1.0, 'one': 1.0, 'do': 1.0, 'only': 1.0, 'child': 1.0, 'wash': 1.0, 'parts': 1.0, 'everywhere': 1.0, 'that': 3.0, 'my': 3.0, 'fact': 1.0, 'control': 1.0, 'nipple': 1.0, 's': 1.0, 'a': 1.0, 't': 1.0, 'it': 4.0, 'this': 2.0, 'but': 1.0, 'can': 5.0, 'right': 1.0, 'love': 2.0, 'with': 3.0, 'convenient': 1.0, 'take': 1.0, 'many': 1.0, 'breast': 3.0, 'use': 3.0, 'pump': 5.0, 'easy': 2.0, 'to': 5.0, 'say': 1.0, 'completely': 1.0, 'is': 1.0, 'comes': 1.0, 'accessories': 1.0, 'anywhere': 1.0, 'need': 1.0, 'done': 1.0, 'i': 12.0, 'car': 1.0, 'and': 6.0, 'milk': 1.0, 'the': 7.0, 'place': 1.0, 'how': 1.0, 'onto': 1.0, 'time': 1.0, 'so': 3.0, 'bottle': 1.0, 'feed': 1.0, 'baby': 1.0, 'medela': 1.0, 'tell': 1.0, 'am': 1.0, 'you': 2.0, 'times': 1.0, 've': 1.0, 'there': 1.0, 'are': 1.0, 'including': 1.0, 'several': 1.0}
Word element => {'closet': 1.0, 'my': 1.0, 'in': 1.0, 'or': 1.0, 'your': 1.0, 'waste': 1.0, 'don': 1.0, 'efficient': 1.0, 'with': 1.0, 'quick': 1.0, 'electric': 1.0, 'an': 1.0, 'thats': 1.0, 'buy': 1.0, 'pumping': 1.0, 'still': 1.0, 'serious': 1.0, 're': 1.0, 'worked': 1.0, 'that': 1.0, 'couple': 1.0, 'help': 1.0, 'did': 1.0, 'hard': 1.0, 'good': 1.0, 'needed': 1.0, 'farthest': 1.0, 'pump': 6.0, 'so': 3.0, 'time': 2.0, 'school': 1.0, 'week': 1.0, 'sitting': 1.0, 'money': 1.0, 'work': 1.0, 'i': 5.0, 'tried': 1.0, 'about': 3.0, 'better': 1.0, 'expressing': 1.0, 'hours': 1.0, 'at': 1.0, 'had': 1.0, 'was': 2.0, 'me': 1.0, 'not': 1.0, 'started': 1.0, 's': 1.0, 't': 1.0, 'million': 1.0, 'a': 4.0, 'go': 1.0, 'and': 5.0, 'milk': 3.0, 'this': 2.0, 'full': 1.0, '30': 1.0, 'to': 4.0, 'all': 1.0, 'very': 1.0, 'use': 1.0, 'got': 1.0, 'many': 1.0, 'if': 1.0, 'drops': 1.0, 'it': 3.0, 'felt': 1.0, 'really': 1.0, 'the': 2.0, 'of': 1.0, 'takes': 1.0, 'awkward': 1.0, 'long': 1.0, 'you': 1.0, 'times': 2.0, 'manually': 1.0}
Word element => {'really': 1.0, 'decent': 1.0, 'this': 1.0, 'doing': 2.0, 'please': 1.0, 'want': 1.0, 'accessories': 1.0, 'husband': 1.0, 'intended': 1.0, 'was': 1.0, 'cannot': 1.0, 'but': 2.0, 'suction': 1.0, 'case': 1.0, 'the': 1.0, 'great': 1.0, 'with': 1.0, 'it': 2.0, 'mant': 1.0, 'tell': 1.0, 'reviews': 1.0, 'so': 1.0, 'i': 7.0, 'love': 2.0, 'me': 1.0, 'wrong': 2.0, 'and': 3.0, 'milk': 1.0, 'get': 1.0, 'pump': 2.0, 'sure': 2.0, 'something': 1.0, 'parts': 1.0, 'my': 1.0, 'have': 1.0, 'rechecked': 1.0, 'assembly': 1.0, 'make': 1.0, 'is': 1.0, 'working': 1.0, 'nothing': 1.0, 'to': 3.0, 'any': 1.0, 'all': 1.0, 'as': 1.0, 'still': 1.0, 'am': 2.0, 'someone': 1.0, 'what': 1.0, 'm': 1.0}
Word element => {'out': 1.0, 'help': 1.0, 'will': 1.0, 'but': 1.0, 'no': 1.0, 'save': 1.0, 'says': 1.0, 'there': 1.0, 'you': 2.0, 'warranty': 1.0, 'is': 1.0, 'on': 1.0, 'the': 3.0, 'contact': 1.0, 'it': 2.0, 'specs': 1.0, 'have': 1.0, 'in': 1.0, 'problems': 1.0, 'technical': 1.0, 'if': 1.0, 'packaging': 1.0, 'and': 2.0, 'any': 1.0, 'number': 1.0, 'they': 1.0}
Word element => {'type': 1.0, 'which': 1.0, 'check': 1.0, 'do': 1.0, 'off': 1.0, 'stimulate': 1.0, 'sucks': 1.0, 'baby': 1.0, 'valves': 1.0, 'your': 1.0, 'on': 2.0, 'before': 1.0, '34': 1.0, 'bad': 1.0, 'size': 1.0, 'used': 1.0, 'cup': 2.0, 'that': 2.0, 'letdown': 1.0, 'medela': 1.0, 'the': 7.0, 'with': 1.0, 'getting': 1.0, 'discovered': 1.0, 'a': 4.0, 'almost': 1.0, 'not': 3.0, 'me': 2.0, 'just': 1.0, 'smashed': 1.0, '3weeks': 1.0, 'got': 2.0, 'but': 1.0, '2': 2.0, 'as': 1.0, 'to': 5.0, 'was': 2.0, 'usally': 1.0, 'had': 1.0, 'first': 1.0, 'it': 6.0, 'harmony': 1.0, 'this': 1.0, 'faster': 1.0, 'i': 5.0, 'pregnancy': 1.0, 'pump': 4.0, 'loosing': 1.0, 'fits': 1.0, 'avent': 2.0, 'my': 1.0, 'solution': 1.0, 'later': 1.0, 'at': 1.0, 'hours': 1.0, 'expressing': 1.0, 'wonderful': 1.0, 'look': 1.0, 'number': 1.0, 'shower': 1.0, 'of': 3.0, 'kept': 1.0, 'nipple': 1.0, 'else': 1.0, 'fustrated': 1.0, 'ounces': 1.0, 'after': 1.0, 'big': 1.0, 'spend': 1.0, 'suction': 1.0, 'trying': 1.0, 'too': 1.0, 'and': 5.0, 'milk': 1.0, 'fit': 1.0, 'for': 4.0, 'actually': 1.0, 'then': 1.0, 'became': 1.0, 'times': 1.0, 'manually': 1.0, 'new': 1.0, 'would': 3.0, 'something': 1.0, 'write': 1.0, 'thus': 1.0, 'complaining': 1.0}
Word element => {'isis': 1.0, 'recommend': 1.0, 'just': 1.0, 'on': 1.0, 'consider': 1.0, 'going': 2.0, 'if': 2.0, 'parts': 1.0, 'replacement': 1.0, 'all': 3.0, 'utilize': 1.0, 's': 3.0, 'a': 10.0, 'about': 1.0, 'amp': 1.0, 'for': 5.0, 'actually': 1.0, 'stars': 1.0, 'effective': 2.0, 'packs': 1.0, 'cooling': 1.0, 'more': 1.0, 'nipples': 1.0, 'only': 3.0, 'very': 4.0, 'sealing': 1.0, 'pumps': 1.0, 'go': 1.0, 'pump': 8.0, 'backup': 1.0, 'lids': 1.0, 'get': 1.0, 'they': 1.0, 'double': 2.0, 'caps': 1.0, 'than': 1.0, 'because': 2.0, 'but': 4.0, 'needed': 1.0, 'back': 2.0, 'bottles': 1.0, 'need': 3.0, 'or': 3.0, 'fragile': 1.0, 'convenient': 1.0, 'discreet': 1.0, 'with': 2.0, 'week': 1.0, 'quick': 2.0, 'now': 1.0, 'was': 1.0, 'come': 1.0, 'this': 2.0, 'it': 7.0, 'included': 1.0, 'lightweight': 2.0, 'avent': 1.0, 'carrying': 1.0, 'great': 2.0, 'seemed': 1.0, 'patience': 1.0, 'bit': 2.0, 'thinking': 1.0, 'i': 7.0, 'used': 1.0, 'set': 3.0, 'manual': 2.0, 'everything': 1.0, 'in': 3.0, '4': 1.0, 'case': 1.0, 'month': 1.0, 'gave': 1.0, 'quot': 2.0, 'variety': 1.0, 'light': 1.0, 'the': 10.0, 'of': 3.0, 'once': 1.0, 'pumping': 1.0, 'think': 1.0, 'twice': 1.0, 'not': 3.0, 'hard': 1.0, 'work': 2.0, 'efficient': 1.0, 'daily': 2.0, 'to': 4.0, 'bought': 1.0, 'misnomer': 1.0, 'really': 1.0, 'enough': 2.0, 'durable': 1.0, 'frequent': 1.0, 'use': 3.0, 'as': 3.0, 'silent': 1.0, 'even': 1.0, 'when': 1.0, 'you': 3.0, 'good': 1.0, 'takes': 1.0, 'practice': 1.0, 'is': 4.0, 'at': 1.0, 'are': 2.0, 'first': 1.0, 'trip': 1.0, 'and': 6.0, 'sided': 2.0, 'electric': 2.0, 'also': 1.0, 'occasionally': 1.0, 'after': 1.0, 'had': 1.0}
Word element => {'list': 1.0, 'on': 1.0, 'old': 1.0, '1': 2.0, 'with': 1.0, 'm': 1.0, 'mothers': 1.0, 'while': 1.0, 'enough': 1.0, 'care': 1.0, 'of': 1.0, 'plenty': 1.0, 'take': 1.0, 'nipples': 3.0, 'jars': 1.0, 'storage': 1.0, 'bought': 2.0, 'way': 1.0, 'to': 2.0, 'all': 2.0, 'handle': 1.0, 'set': 1.0, 'used': 1.0, 'day': 1.0, 'extra': 1.0, 'pumping': 1.0, 'problem': 1.0, 'if': 1.0, 'at': 2.0, 'first': 1.0, 'month': 2.0, 'it': 2.0, 'for': 3.0, 'two': 1.0, '4': 1.0, 'i': 7.0, 'never': 1.0, 'expectant': 1.0, 'would': 1.0, 'the': 5.0, 't': 1.0, 'my': 3.0, 'just': 1.0, 'containers': 1.0, 'hospital': 1.0, 'must': 1.0, 'have': 3.0, 'pump': 2.0, 'tender': 1.0, 'ounces': 1.0, 'rented': 1.0, 'now': 1.0, 'depress': 1.0, 'in': 1.0, 'no': 1.0, 'about': 1.0, 'so': 1.0, 'grade': 1.0, 'time': 1.0, 'simply': 1.0, 'don': 1.0, '15': 1.0, 'recommend': 1.0, 'minutes': 1.0, 'suction': 2.0, 'locally': 1.0, 'comes': 1.0, 'more': 1.0, 'is': 2.0, 'very': 1.0, 'good': 1.0, 'milk': 1.0, 'and': 4.0, 'tough': 1.0, 'had': 1.0, 'breasts': 1.0, 'use': 1.0, 'this': 1.0, '0': 1.0, 'full': 1.0, 'are': 1.0, '2': 2.0, 'work': 1.0, 'can': 2.0, 'but': 1.0, 'you': 2.0}
Word element => {'minutes': 1.0, '15': 1.0, 'under': 1.0, 'produce': 1.0, 'compact': 1.0, 'unit': 1.0, 'leaks': 1.0, 'other': 1.0, 'noticed': 1.0, 'not': 1.0, '4': 1.0, 'i': 1.0, 'ounces': 1.0, 'amount': 1.0, 'have': 1.0, 'small': 2.0, 'puddle': 1.0, 'does': 1.0, 'one': 1.0, 'it': 4.0, 'far': 1.0, 'will': 1.0, 'but': 1.0, 'work': 1.0, 'back': 1.0, 'pumps': 1.0, 'put': 2.0, 'is': 4.0, 'probably': 1.0, 'and': 2.0, 'get': 1.0, 'hand': 1.0, 'want': 1.0, 'if': 4.0, 'pumping': 1.0, 'you': 5.0, 'are': 1.0, 'this': 2.0, 'full': 1.0, 'able': 1.0, 'electric': 1.0, 'suction': 2.0, 'time': 1.0, 'comfortable': 1.0, 'great': 2.0, 'the': 1.0, 'together': 1.0, 'right': 1.0, 'there': 1.0, 'go': 2.0, 'going': 1.0, 'a': 2.0, 'little': 2.0, 'piece': 1.0, 'that': 1.0, 'in': 3.0, 'upside': 1.0, 'down': 1.0, 'frustratingly': 1.0, 'at': 1.0, 'as': 2.0, 'to': 3.0, 'any': 2.0, 'all': 1.0, 'cup': 1.0, 'though': 1.0}
Word element => {'nursing': 1.0, 'every': 1.0, 'would': 1.0, 'mistakenly': 1.0, 'be': 1.0, 'well': 1.0, 'for': 1.0, 'big': 1.0, 'mother': 1.0, 'took': 1.0, 'silently': 1.0, 'care': 1.0, 'book': 1.0, 'read': 1.0, 'room': 1.0, 'unused': 1.0, 'that': 1.0, 'into': 1.0, 'process': 1.0, 'throughout': 1.0, 'fridge': 1.0, 'better': 1.0, 'it': 1.0, 'felt': 1.0, 'an': 1.0, 'lug': 1.0, 'me': 1.0, 'style': 1.0, 'm': 1.0, 'pump': 5.0, 'slightly': 1.0, 'lunchroom': 1.0, 'medela': 1.0, 'might': 1.0, 'could': 2.0, 'million': 1.0, 'a': 4.0, 'in': 3.0, 'had': 1.0, 'recommend': 1.0, 'store': 1.0, 'was': 2.0, 'any': 1.0, 'as': 1.0, 'to': 2.0, 'switch': 1.0, 'hated': 1.0, 'attention': 1.0, 'first': 1.0, 'this': 2.0, 'with': 2.0, 'i': 11.0, 'child': 1.0, 'less': 1.0, 'made': 1.0, 'bought': 1.0, 'without': 1.0, 'the': 11.0, 'business': 1.0, 'my': 1.0, 'used': 2.0, 'set': 1.0, 'of': 2.0, 'after': 1.0, 'second': 1.0, 'people': 1.0, 'sneak': 1.0, 'born': 1.0, 'thing': 1.0, 'fear': 1.0, 'around': 1.0, 'plus': 1.0, 'embarrassed': 1.0, 'at': 1.0, 'sounds': 1.0, 'times': 1.0, 'drew': 1.0, 'office': 1.0, 'portability': 1.0, 'glad': 1.0, 'from': 1.0, 'while': 2.0, 'did': 2.0, 'and': 4.0, 'milk': 2.0, 'having': 1.0, 'than': 1.0, 'electric': 1.0}
Word element => {'cost': 1.0, 'at': 1.0, 'best': 1.0, '60': 1.0, 'both': 1.0, 'pumps': 1.0, 'buy': 1.0, 'even': 1.0, 'over': 1.0, 'up': 1.0, 'down': 1.0, 'speed': 1.0, 'together': 1.0, 'transport': 1.0, 'more': 1.0, 'is': 1.0, 'full': 1.0, 'time': 2.0, 'than': 1.0, 'less': 1.0, 'in': 1.0, 'once': 1.0, 'of': 2.0, 'want': 1.0, 'if': 1.0, 'same': 1.0, 'options': 1.0, 'investigating': 1.0, 'other': 1.0, 'frustrated': 1.0, 'market': 1.0, 'before': 1.0, 'use': 3.0, 'breasts': 1.0, 'purchased': 1.0, 'still': 1.0, 'wonders': 1.0, 'trying': 1.0, 'getting': 1.0, 'research': 1.0, 'loud': 1.0, 'with': 1.0, 'it': 3.0, 'month': 1.0, 'given': 1.0, 'was': 4.0, 'to': 4.0, 'an': 1.0, 'pump': 5.0, 'easier': 1.0, 'half': 1.0, 'has': 1.0, 'two': 1.0, 'i': 5.0, 'you': 2.0, 'when': 1.0, 'spent': 1.0, 'inconvenient': 1.0, 'hands': 1.0, 'the': 10.0, 'save': 1.0, 'avent': 1.0, 'milk': 1.0, 'and': 7.0, 'isis': 3.0, 'put': 1.0, 'on': 2.0, 'a': 3.0, 'go': 1.0, 'amount': 1.0, 'after': 1.0, 'only': 1.0, 'much': 2.0, 'medela': 2.0, 'worked': 1.0, 'n': 1.0, 'style': 1.0, 'not': 1.0, 'electric': 1.0, 'will': 1.0, 'also': 1.0, 'slow': 1.0, 'extremely': 1.0, 'work': 1.0, 'pregnant': 1.0, 'process': 1.0, 'can': 1.0}
Word element => {'storage': 1.0, 'into': 1.0, 'dump': 1.0, 'having': 1.0, 'system': 1.0, 'drove': 1.0, 'using': 1.0, 'love': 1.0, 'noisy': 1.0, 'just': 2.0, 'was': 1.0, 'it': 2.0, 'not': 1.0, 'me': 1.0, 'husband': 1.0, 'deluxe': 1.0, 'nuts': 1.0, 'i': 4.0, 'whole': 1.0, 'really': 1.0, 'single': 1.0, 'have': 1.0, 'able': 1.0, 'pump': 3.0, 'is': 1.0, 'breastpump': 1.0, 'bottle': 1.0, 'time': 1.0, 'bought': 1.0, 'this': 1.0, 'allows': 1.0, 'another': 1.0, 'my': 1.0, 'avent': 2.0, 'without': 1.0, 'the': 7.0, 'great': 2.0, 'medela': 1.0, 'amount': 1.0, 'am': 1.0, 'to': 3.0, 'as': 1.0, 'works': 1.0, 'much': 1.0, 'and': 5.0, 'too': 1.0, 'isis': 1.0, 'milk': 2.0, 'in': 1.0, 'same': 1.0, 'enjoyed': 1.0, 'noise': 1.0, 'of': 1.0, 'anywhere': 1.0, 'bag': 1.0, 'take': 1.0}
Word element => {'300': 1.0, 'over': 1.0, 'recommend': 1.0, 'unfortunately': 1.0, 'electric': 1.0, 'medela': 1.0, 'does': 1.0, 'only': 1.0, 'gift': 1.0, 'that': 3.0, 'out': 2.0, 'and': 1.0, 'drip': 1.0, 'this': 2.0, 'come': 1.0, 'style': 1.0, 'not': 2.0, 'get': 2.0, 'pump': 5.0, 'poor': 1.0, 'reviews': 1.0, 'everyone': 1.0, 'which': 1.0, 'reading': 1.0, 'hour': 1.0, 'great': 1.0, 'the': 3.0, 'am': 2.0, 'register': 1.0, 'i': 6.0, 'decided': 1.0, 'a': 3.0, 's': 1.0, 'could': 1.0, 'sad': 1.0, 'for': 1.0, 'suction': 1.0, '00': 1.0, 'say': 1.0, 'is': 3.0, 'would': 3.0, 'have': 1.0, 'of': 1.0, 'imagine': 1.0, 'take': 1.0, 'very': 2.0, 'breastmilk': 1.0, 'good': 1.0, 'to': 5.0, 'any': 1.0, 'after': 1.0, 'amount': 1.0, 'if': 1.0, 'did': 1.0, 'work': 2.0, 'disappointed': 1.0, 'in': 2.0, 'it': 2.0, 'wasted': 1.0}
Word element => {'game': 1.0, 'part': 1.0, 'same': 1.0, 'but': 1.0, 'washing': 1.0, 'it': 4.0, 'this': 4.0, 'only': 1.0, 'think': 2.0, 'quite': 1.0, 'prefer': 1.0, 'so': 1.0, 'bit': 1.0, 'though': 1.0, 'i': 8.0, 'too': 1.0, 'and': 4.0, 'longer': 1.0, 'rented': 1.0, 'electric': 2.0, 'to': 1.0, 'an': 1.0, 'use': 1.0, 'feel': 1.0, 'get': 1.0, 'pump': 4.0, 'easy': 1.0, 'bottles': 1.0, 'lot': 1.0, 'even': 1.0, 'one': 2.0, 'bought': 1.0, 'with': 2.0, 'drawback': 1.0, 'containers': 1.0, 'there': 1.0, 'of': 3.0, 'using': 1.0, 'like': 2.0, 'is': 2.0, 'more': 1.0, 'the': 6.0, 'also': 1.0, 'storage': 1.0, 'that': 1.0, 'parts': 1.0, 'are': 1.0, 'just': 1.0, 'few': 1.0, 'takes': 1.0, 'interchangeable': 1.0, 'number': 1.0, 'times': 1.0, 'a': 3.0, 's': 3.0}
Word element => {'one': 1.0, 'find': 1.0, 'ok': 1.0, 'overall': 1.0, 're': 1.0, 'while': 1.0, 'anoying': 1.0, 'this': 1.0, 'screwed': 1.0, 'come': 1.0, 'together': 1.0, 'complaint': 1.0, 'other': 2.0, 'throughout': 1.0, 'how': 1.0, 'out': 1.0, 'figure': 1.0, 'about': 1.0, 'want': 1.0, 'really': 2.0, 'before': 1.0, 'think': 1.0, 'make': 1.0, 'on': 2.0, 'them': 1.0, 'took': 1.0, 'quantity': 1.0, 'then': 1.0, 'use': 1.0, 'myself': 1.0, 'the': 15.0, 'another': 1.0, 'my': 1.0, 'have': 2.0, 'just': 2.0, 'me': 2.0, 'milk': 1.0, 'and': 2.0, 'piece': 1.0, 'with': 2.0, 'only': 1.0, 'that': 1.0, 'gave': 1.0, 'her': 1.0, '4': 2.0, 'i': 5.0, 'was': 1.0, 'all': 1.0, 'to': 6.0, 'friend': 1.0, 'get': 2.0, 'pump': 8.0, 'it': 8.0, 'she': 1.0, 'parts': 2.0, 'complete': 1.0, 'boiled': 1.0, 'in': 2.0, 'dishwasher': 1.0, 'threw': 1.0, 'anyway': 1.0, 'finished': 1.0, 'is': 3.0, 'screw': 1.0, 'right': 1.0, 'fine': 1.0, 'for': 2.0, 'needs': 1.0, 'time': 2.0, 'bottle': 2.0, 'once': 1.0, 'unscrewed': 1.0, 'days': 1.0, 'pumping': 1.0, 'day': 1.0, 'can': 1.0, 'but': 2.0, 'will': 2.0, 'during': 1.0, 'a': 1.0, 's': 2.0, 'times': 1.0, 'when': 1.0, 'lose': 1.0, 'you': 3.0, 'trying': 1.0, 'be': 1.0, 'suction': 2.0, 'or': 1.0}
Word element => {'everyone': 1.0, 'getting': 1.0, 'sippy': 1.0, 'baby': 1.0, 'older': 1.0, 'now': 1.0, 'mine': 1.0, 'one': 1.0, 'complementary': 1.0, 'me': 1.0, 'sent': 1.0, 'directly': 1.0, 'they': 1.0, 'great': 1.0, 'service': 1.0, 'customer': 1.0, 'their': 1.0, 'hear': 1.0, 'couldn': 1.0, 'recommend': 1.0, 'was': 1.0, 'husband': 1.0, 'it': 3.0, 'lost': 1.0, 'this': 2.0, 'with': 1.0, 'plus': 1.0, 'noisy': 1.0, 'single': 1.0, 'is': 5.0, 'medela': 2.0, 'pump': 3.0, 'valves': 1.0, 'so': 1.0, 'time': 1.0, 'tried': 1.0, 'i': 6.0, 'the': 6.0, 'hands': 1.0, 't': 1.0, 'a': 1.0, 'down': 1.0, 'amount': 1.0, 'into': 1.0, 'tv': 1.0, 'that': 2.0, 'there': 1.0, 'of': 2.0, 'best': 1.0, 'cups': 1.0, 'to': 3.0, 'as': 2.0, 'my': 2.0, 'avent': 2.0, 'and': 2.0, 'isis': 1.0, 'or': 1.0, 'while': 1.0, 'fast': 1.0, 'when': 1.0, 'am': 2.0, 'using': 1.0, 'quiet': 1.0, 'would': 1.0, 'super': 1.0, 'inexpensive': 1.0, 'electric': 1.0, 'able': 2.0, 'just': 1.0, 'much': 1.0, 'in': 1.0, 'same': 1.0}
Word element => {'by': 1.0, 'them': 1.0, 'dishwasher': 1.0, 'in': 1.0, 'placed': 1.0, 'because': 1.0, 'leak': 1.0, 'bottle': 1.0, 'one': 1.0, 'wash': 1.0, 'child': 1.0, 'over': 1.0, 'do': 1.0, 'old': 1.0, 'i': 6.0, 'first': 1.0, 'with': 2.0, 'it': 4.0, 'the': 2.0, 'my': 2.0, 'anywhere': 1.0, 'now': 2.0, 'had': 1.0, 'medela': 1.0, 'pumps': 1.0, 'but': 2.0, 'been': 1.0, 'messy': 1.0, '3months': 1.0, 'used': 2.0, 'hand': 1.0, 'using': 1.0, 'for': 1.0, 'have': 3.0, 'pump': 1.0, '5': 1.0, 'and': 3.0, 'milk': 1.0, 'years': 1.0, 'nice': 1.0, 'pricey': 1.0, 'although': 1.0, 'discreetly': 1.0, 'recent': 1.0, 'this': 2.0, 'found': 1.0, 'everywhere': 1.0, 'worth': 1.0, 'is': 3.0, 'traveling': 1.0, 'sometimes': 1.0, 'petals': 1.0, 'keep': 1.0, 'some': 1.0, 'well': 1.0, 'pumping': 1.0, 'also': 1.0, 'compact': 1.0}
Word element => {'waste': 1.0, 'use': 1.0, 'using': 1.0, 'still': 1.0, 'came': 1.0, 'after': 2.0, 'less': 1.0, 'out': 1.0, 'even': 3.0, 'got': 1.0, 'expressed': 1.0, 'actually': 1.0, 'if': 1.0, 'ok': 1.0, 'loud': 1.0, 'oz': 1.0, 'would': 2.0, 'money': 1.0, 'can': 1.0, 'most': 1.0, '2': 1.0, 'but': 2.0, 'policy': 1.0, 'been': 1.0, 'that': 3.0, 'have': 2.0, 'they': 1.0, 'than': 1.0, 'usually': 1.0, 'because': 1.0, 'not': 3.0, 'wanted': 2.0, 'husband': 1.0, 'otherwise': 1.0, 'i': 5.0, 'baby': 2.0, 'clerks': 1.0, 'while': 2.0, 'local': 1.0, 'birth': 1.0, 'return': 1.0, 'to': 2.0, 'our': 1.0, 'keep': 1.0, 'since': 1.0, 'at': 2.0, 'no': 2.0, 'told': 1.0, 'hospital': 1.0, 'once': 1.0, 'of': 4.0, 'painful': 1.0, 'this': 3.0, 'certainly': 1.0, 'come': 1.0, 'wonder': 1.0, 'he': 1.0, 'was': 4.0, 'store': 2.0, 'month': 1.0, 'it': 8.0, 'she': 1.0, 'uncomfortable': 1.0, 'one': 2.0, 'bought': 1.0, 'is': 3.0, 'breastpump': 1.0, 'icu': 1.0, 'in': 4.0, 'also': 1.0, 'my': 5.0, 'breastfeed': 1.0, 'the': 7.0, 'recommendation': 1.0, 'on': 1.0, 'away': 1.0, 'clerk': 1.0, 'get': 1.0, 'pump': 1.0, 'sure': 1.0, 'and': 1.0, 'milk': 4.0, 'a': 2.0, 't': 1.0, 'could': 2.0, 'right': 1.0, 'be': 1.0, 'him': 1.0, 'absolutely': 1.0, 'opened': 1.0}
Word element => {'diamondbacks': 1.0, 'room': 1.0, 'usually': 1.0, 'again': 1.0, 'doesn': 1.0, 'child': 1.0, 're': 1.0, 'performs': 1.0, 'feel': 1.0, 'home': 1.0, 'our': 2.0, 'week': 1.0, 'quiet': 1.0, 'both': 1.0, 'features': 1.0, 'second': 1.0, 'durable': 1.0, 'much': 1.0, 'uses': 1.0, 'model': 1.0, 'course': 1.0, 'same': 1.0, 'seemed': 1.0, 'then': 1.0, 'we': 7.0, 'a': 4.0, 's': 2.0, 'expensive': 2.0, 'for': 3.0, 'than': 1.0, 'noisy': 1.0, 'frequency': 1.0, 'available': 1.0, 'own': 1.0, 'yes': 1.0, 'broken': 1.0, 'her': 1.0, 'watching': 1.0, 'has': 1.0, 'pump': 6.0, 'did': 1.0, 'seem': 1.0, 'hands': 1.0, 'experience': 1.0, 'on': 3.0, 'pumps': 2.0, 'but': 5.0, 'money': 1.0, 'other': 1.0, 'all': 3.0, 'pretty': 1.0, 'to': 4.0, 'ones': 1.0, 'one': 2.0, 'actual': 1.0, 'research': 1.0, 'have': 2.0, 'few': 1.0, 'this': 3.0, 'don': 1.0, 'well': 2.0, 'i': 3.0, 'strength': 1.0, 'so': 2.0, 'houston': 1.0, 'rate': 1.0, 'privacy': 1.0, 'good': 1.0, 'based': 1.0, 'which': 1.0, 'okay': 1.0, 'the': 19.0, 'of': 5.0, 'more': 4.0, 'was': 5.0, 'me': 1.0, 'my': 3.0, 'may': 1.0, 'and': 8.0, 'just': 1.0, 'milk': 1.0, 'wife': 3.0, 'from': 1.0, 'point': 1.0, 'it': 6.0, 'thought': 1.0, 'had': 2.0, 'when': 1.0, 'what': 1.0, 'loud': 1.0, 'success': 1.0, 'able': 2.0, 'turned': 1.0, 'many': 1.0, 'determined': 1.0, 'because': 1.0, 'that': 4.0, 'witnessed': 1.0, 'borrow': 1.0, 'm': 1.0, 'in': 5.0, 'style': 2.0, 'those': 1.0, 'itself': 1.0, 'not': 1.0, 'very': 2.0, 'know': 1.0, 'industrial': 1.0, 'three': 3.0, 'hospital': 2.0, 'were': 2.0, 'parts': 1.0, 'compare': 1.0, 'out': 1.0, 't': 2.0, 'spare': 1.0, 'part': 1.0, 'problem': 1.0, 'plastic': 1.0, 'suction': 1.0, 'be': 2.0, 'cup': 1.0, 'with': 3.0, 'volume': 1.0, 'at': 2.0, 'tracy': 1.0, 'as': 2.0, 'experienced': 1.0, 'times': 1.0, 'reveiw': 1.0, 'been': 1.0, 'comparing': 1.0, 'extracted': 1.0}
Word element => {'eat': 1.0, 'remember': 1.0, 'there': 1.0, 'luck': 1.0, 'do': 1.0, 'can': 1.0, 'you': 2.0, 'each': 1.0, '4months': 1.0, 'them': 1.0, 'demanding': 1.0, 'their': 1.0, '3': 2.0, 'successfully': 1.0, 'more': 1.0, 'necessarily': 1.0, 'occasionally': 1.0, 'talk': 1.0, 'wouldn': 1.0, 'supply': 1.0, 'enough': 1.0, 'helpful': 1.0, 'requires': 1.0, 'maintaining': 1.0, 'means': 1.0, 'no': 2.0, 'than': 1.0, 'way': 2.0, 't': 2.0, 'all': 1.0, 'other': 1.0, 'pumping': 1.0, 'good': 1.0, 'which': 1.0, 'side': 1.0, 'one': 1.0, 'on': 3.0, 'nursing': 2.0, 'raves': 1.0, 'need': 1.0, 'or': 1.0, 'periodically': 1.0, 'think': 2.0, 'going': 1.0, 'a': 7.0, 'when': 3.0, 'while': 2.0, 'double': 4.0, 'entire': 1.0, 'me': 1.0, 'my': 1.0, 'time': 4.0, 'go': 1.0, 'pump': 5.0, 'wasn': 1.0, 'mini': 3.0, 'differently': 1.0, 'breasts': 2.0, 'had': 1.0, 'used': 1.0, 'limited': 1.0, 'most': 1.0, 'back': 1.0, 'lugging': 1.0, 'work': 6.0, '2': 1.0, 'but': 2.0, 'mom': 2.0, 'surprised': 1.0, 'out': 5.0, 'really': 1.0, 'baby': 2.0, 'many': 1.0, 'we': 1.0, 'reviews': 1.0, 'take': 1.0, 'that': 3.0, 'initially': 1.0, 'year': 1.0, 'child': 1.0, 'product': 1.0, 'for': 6.0, 'lukewarm': 1.0, 'everyone': 1.0, 'job': 1.0, 'to': 12.0, 'engine': 1.0, 'was': 7.0, 'affordable': 1.0, 'quicker': 1.0, 'children': 1.0, 'hands': 1.0, 'thereafter': 1.0, 'place': 1.0, 'yes': 1.0, 'see': 1.0, 'until': 1.0, '1': 1.0, 'otherwise': 1.0, 'bothered': 1.0, 'first': 3.0, 'this': 3.0, 'returning': 2.0, 'bit': 1.0, 'found': 1.0, 'it': 6.0, 'efficiency': 1.0, 'points': 1.0, 'people': 1.0, 'both': 1.0, 'negative': 1.0, 'woman': 1.0, 'getting': 1.0, 'best': 1.0, 'effective': 1.0, 'and': 12.0, 'jet': 1.0, 'about': 1.0, 'same': 1.0, 'enjoy': 1.0, 'every': 1.0, 'if': 1.0, 'free': 1.0, 'hold': 1.0, 'in': 5.0, 'quieter': 1.0, 'nursed': 1.0, 'acrobatics': 1.0, 'talking': 1.0, 'little': 2.0, 'very': 4.0, 'tired': 1.0, 'the': 16.0, 'of': 3.0, 'car': 2.0, 'adequate': 1.0, 'would': 1.0, 'usually': 1.0, 's': 3.0, 'cleaner': 1.0, 'maybe': 1.0, 'awkward': 1.0, 'as': 2.0, 'leave': 1.0, 'with': 5.0, 'continuing': 1.0, 'her': 1.0, 'use': 1.0, 'by': 4.0, 'bottles': 1.0, 'home': 1.0, 'worked': 1.0, 'i': 11.0, 'well': 1.0, 'moms': 1.0, 'phone': 1.0, 're': 1.0, 'is': 2.0, 'at': 8.0, 'vaccum': 1.0, 'not': 2.0, 'louder': 1.0, 'even': 1.0}
Word element => {'baby': 1.0, 'luck': 1.0, 'batteries': 1.0, 'how': 1.0, 'option': 1.0, 'thing': 1.0, 'battery': 1.0, 'although': 1.0, 'one': 1.0, 'use': 1.0, 'breast': 1.0, 'good': 2.0, 'need': 1.0, 'of': 1.0, 'off': 1.0, 'disappoint': 1.0, 'yet': 1.0, 'you': 2.0, 'times': 1.0, 'pumps': 1.0, 'back': 1.0, 'such': 1.0, 'the': 4.0, 'work': 1.0, '2': 1.0, 'those': 1.0, 'me': 1.0, 'not': 4.0, 'be': 1.0, 'weeks': 1.0, 'now': 1.0, 'loud': 2.0, 'it': 5.0, 'i': 8.0, 'best': 1.0, 'absolutely': 1.0, 'love': 1.0, 'for': 4.0, 'works': 1.0, 'do': 4.0, 'and': 2.0, 'have': 4.0, 'because': 1.0, 'find': 1.0, 'maybe': 1.0, 'other': 2.0, 'pump': 2.0, 'reviews': 1.0, 'to': 5.0, 'all': 1.0, 'as': 1.0, 'used': 1.0, 'evenflow': 1.0, 'awful': 1.0, 'pretty': 1.0, 'well': 1.0, 'has': 1.0, 'recommended': 1.0, 'know': 1.0, 'which': 1.0, 'my': 1.0, 'is': 4.0, 'plan': 1.0, 'a': 2.0, 'go': 1.0, '3': 1.0, 'on': 1.0, 'this': 3.0, 'doing': 1.0, 'friends': 1.0, 'so': 2.0, 'breastfeeding': 1.0, 'that': 1.0, 'been': 2.0, 'day': 1.0, 'buy': 1.0, 'unlike': 1.0, 'pumping': 1.0}
Word element => {'exclusively': 1.0, 'happier': 1.0, 'hand': 1.0, 'switched': 1.0, 'wanted': 1.0, 'increase': 1.0, 'way': 1.0, 'enough': 1.0, 'wasn': 1.0, 'there': 1.0, 'express': 1.0, 'letting': 1.0, 'from': 1.0, 'with': 1.0, 'like': 2.0, 'alter': 1.0, 'release': 1.0, 'brief': 1.0, 'suck': 1.0, 'through': 1.0, 'goes': 1.0, 'suction': 3.0, 'much': 2.0, 'didn': 2.0, 'feeble': 1.0, 'seemed': 1.0, 'power': 2.0, 'milk': 2.0, 'all': 1.0, 'spilled': 1.0, 'whole': 1.0, 'as': 1.0, 'heavy': 1.0, 'plus': 1.0, 'tv': 1.0, 'but': 1.0, 'watching': 1.0, 'while': 2.0, 'using': 2.0, 'tried': 1.0, 'being': 1.0, 'very': 2.0, 'any': 1.0, 'feel': 1.0, 'surprised': 1.0, 'no': 1.0, 'unpleasantly': 1.0, 'electric': 1.0, 'to': 8.0, 'baby': 1.0, 'unfortunately': 1.0, 'minutes': 1.0, 'was': 4.0, 'wrong': 1.0, 'not': 1.0, 'thing': 1.0, 'begin': 1.0, 'son': 1.0, 'still': 1.0, 'have': 2.0, 'be': 1.0, 'w': 1.0, 'compare': 1.0, 'system': 1.0, 'news': 1.0, 'would': 1.0, 'nursed': 1.0, 'down': 2.0, 'evening': 1.0, 'tubing': 1.0, 'they': 2.0, 'little': 2.0, 'employed': 1.0, 'use': 2.0, 'manufacturer': 1.0, 'and': 12.0, 'since': 2.0, 'is': 3.0, 'at': 3.0, 'so': 1.0, 'can': 2.0, 'lactina': 3.0, 'over': 1.0, 'work': 1.0, 'money': 1.0, 'originally': 1.0, 'does': 1.0, 'home': 1.0, 'by': 1.0, 'pulses': 1.0, 'hear': 1.0, 'gave': 1.0, 'same': 2.0, 'more': 1.0, 't': 8.0, 'a': 4.0, 'could': 1.0, 'bottle': 2.0, 'this': 5.0, 'prevented': 1.0, 'got': 1.0, 'used': 3.0, 'pump': 7.0, 'get': 1.0, 'purchased': 1.0, 'had': 1.0, 'three': 1.0, 'hospital': 2.0, 'mean': 1.0, 'motor': 5.0, 'medela': 1.0, 'were': 1.0, 'ounce': 1.0, 'thought': 2.0, 'it': 6.0, 'works': 1.0, 'comparable': 2.0, 'biggest': 1.0, 'only': 2.0, 'i': 20.0, 'well': 1.0, 'isis': 2.0, 'half': 1.0, 'mimic': 1.0, 'one': 2.0, 'grade': 1.0, 'after': 2.0, 'classic': 2.0, 'pumping': 1.0, 'for': 4.0, 'that': 1.0, 'because': 1.0, '20': 1.0, 'middle': 1.0, 'times': 2.0, 'results': 1.0, 'when': 5.0, 'then': 1.0, 'up': 2.0, 'set': 1.0, 'waste': 1.0, 'the': 26.0, 'of': 4.0, 'how': 1.0, 'shopping': 1.0, 'been': 1.0, 'reliable': 1.0, 'planned': 1.0, 'in': 2.0, 'able': 1.0, 'you': 1.0, 'loud': 1.0, 'night': 1.0, 'me': 1.0, 'my': 1.0, 'amount': 1.0, 'on': 2.0, 'made': 2.0, 'side': 1.0, 'even': 2.0, 'feed': 1.0, 'time': 1.0, 'toppled': 1.0, 'remain': 1.0, 'pumps': 3.0, 'awake': 1.0, 'big': 1.0, 'couldn': 3.0, 'completely': 1.0, 'mistake': 1.0}
Word element => {'star': 1.0, 'give': 1.0, 'strong': 1.0, 'is': 1.0, 'motor': 1.0, 'the': 1.0, 'suction': 1.0, 'problem': 1.0, 'work': 1.0, 'back': 1.0, 'would': 1.0, 'never': 1.0, 'pumped': 1.0, 'still': 2.0, 'product': 1.0, 'had': 1.0, 'to': 3.0, 'have': 3.0, 'overused': 1.0, 's': 1.0, 'with': 1.0, 'this': 2.0, 'it': 1.0, 'month': 1.0, 'i': 5.0, 'five': 1.0, 'and': 3.0, 'probably': 1.0, 'twice': 1.0, 'rating': 1.0, 'a': 6.0, 'create': 1.0, 'day': 1.0, 'freezer': 1.0, 'for': 2.0, 'in': 1.0, 'go': 1.0, 'half': 1.0, 'when': 1.0, 'going': 2.0, 'supply': 1.0, 'my': 1.0}
Word element => {'piece': 1.0, 'it': 1.0, 'luck': 1.0, 'no': 1.0, 'down': 1.0, 'let': 1.0, 'encourage': 1.0, 'crap': 1.0, 'over': 1.0, 'better': 1.0, 'if': 2.0, 'in': 1.0, 'having': 1.0, 'for': 1.0, 'one': 1.0, 'around': 1.0, 'lucky': 1.0, 'enough': 1.0, 'looked': 1.0, 'this': 1.0, 'of': 1.0, 'shower': 2.0, 'he': 2.0, 'first': 1.0, 'i': 6.0, 'two': 2.0, 'at': 2.0, 'and': 1.0, 'getting': 1.0, 'pump': 2.0, 'get': 1.0, 'ounce': 1.0, 'my': 2.0, 'regret': 1.0, 'still': 1.0, 'son': 1.0, 'gained': 1.0, 'm': 1.0, 'not': 1.0, 'know': 1.0, 'weeks': 1.0, '2': 1.0, 'but': 1.0, 'so': 1.0, 'a': 3.0, 's': 2.0, 'nurses': 1.0, 'struggle': 1.0, 'lbs': 1.0, 'when': 1.0, 'times': 1.0, 'to': 2.0, 'sometimes': 1.0, 'got': 1.0, 'even': 1.0, 'take': 1.0, 'hot': 1.0}
Word element => {'supplemental': 1.0, 'workhorse': 1.0, 'day': 1.0, 'give': 1.0, 'great': 1.0, 'hours': 1.0, '2': 1.0, 'didn': 1.0, 'car': 1.0, 'from': 1.0, 'pumped': 1.0, 'adapter': 1.0, 'old': 1.0, 'daughter': 1.0, 'my': 2.0, 'driving': 1.0, 'wants': 1.0, 'buy': 1.0, 'cross': 1.0, 'isn': 1.0, 'basically': 1.0, 'nipple': 1.0, 'stimulating': 1.0, 'home': 1.0, 'pull': 1.0, 'bottles': 1.0, 'by': 1.0, 'worth': 1.0, 'am': 2.0, 'relax': 2.0, 't': 5.0, 'tring': 1.0, 'their': 1.0, 'pumps': 1.0, 'with': 2.0, 'women': 1.0, 's': 1.0, 'recommend': 1.0, 'full': 1.0, 'hindmilk': 1.0, 'rich': 1.0, 'out': 3.0, 'four': 1.0, 'but': 1.0, 'back': 1.0, 'most': 2.0, 'comfort': 2.0, 'two': 1.0, 'county': 1.0, 'suction': 1.0, 'be': 3.0, 'meant': 1.0, 'able': 3.0, 'you': 13.0, 'twins': 1.0, 'what': 2.0, 'when': 3.0, 'set': 1.0, 'used': 2.0, 'minimum': 1.0, 'a': 7.0, 'as': 2.0, 'to': 16.0, 'twice': 2.0, 'ounces': 2.0, 'works': 1.0, 'without': 1.0, 'fed': 2.0, 'her': 1.0, 'use': 2.0, 'easy': 1.0, 'months': 1.0, 'conditioned': 1.0, 'get': 2.0, 'pump': 7.0, 'was': 3.0, 'trip': 1.0, 'and': 9.0, 'come': 1.0, 'moms': 2.0, 'finally': 1.0, 'practical': 1.0, 'once': 1.0, 'successfully': 1.0, 'at': 1.0, 'is': 7.0, 'convenience': 1.0, 'help': 1.0, 'make': 1.0, '3': 2.0, 'on': 3.0, 'gets': 1.0, 'adjust': 1.0, 'over': 1.0, 'work': 1.0, 'hard': 1.0, 'while': 2.0, 'it': 8.0, 'bottle': 1.0, 'this': 4.0, 'for': 7.0, 'hurt': 1.0, 'pregnancies': 1.0, 'we': 1.0, 'fine': 2.0, 'of': 2.0, 'the': 11.0, 'than': 1.0, 'way': 1.0, 'assembly': 1.0, 'motor': 1.0, 'own': 1.0, 'tried': 1.0, 'simple': 1.0, 'need': 1.0, 'i': 9.0, 'broke': 1.0, 'nurse': 2.0, 'are': 1.0, 'first': 1.0, 'say': 1.0, 'experience': 1.0, 'foremilk': 1.0, 'time': 1.0, 'can': 3.0, 'strength': 1.0, 'levels': 2.0, 'so': 3.0, 'won': 2.0, 'who': 2.0, 'keep': 1.0, 'have': 4.0, 'just': 1.0, 'massaging': 1.0, 'milk': 3.0, 'exposed': 1.0, 'formula': 1.0, 'more': 2.0, 'babies': 2.0, 'problems': 1.0, 'breast': 3.0, 'that': 3.0, 'occasional': 2.0, 'seat': 1.0, 'per': 2.0, 'in': 2.0, 'mind': 1.0, 'front': 1.0, 'inducing': 1.0, 'eat': 1.0, 'stay': 1.0, 'every': 1.0, 'if': 2.0, 'less': 1.0, 'feeding': 1.0, 'frequently': 1.0, 'passed': 1.0, 'also': 1.0, 'will': 5.0, 'mom': 3.0, 'keeps': 1.0, 'your': 5.0, 'condition': 1.0, 'yourself': 1.0, 'much': 1.0, 'do': 2.0, 'only': 1.0, 'no': 1.0, 'let': 5.0, 'down': 5.0, 'not': 2.0, 'likely': 1.0, 'suggest': 1.0, 'previously': 1.0, 'pumping': 2.0, 'happy': 1.0, 'one': 1.0, 'which': 1.0, 'side': 2.0, 'many': 1.0, 'baby': 5.0, 'all': 1.0, 'other': 1.0}
Word element => {'works': 1.0, 'children': 1.0, 'expect': 1.0, 'going': 1.0, 'while': 1.0, 'mine': 2.0, 'working': 1.0, 's': 1.0, 'their': 1.0, 'mentioning': 1.0, 'someone': 1.0, 'noticed': 1.0, 'day': 1.0, 'future': 1.0, 'times': 1.0, 'hand': 2.0, 'by': 1.0, 'all': 1.0, 'full': 1.0, 'not': 1.0, 'used': 1.0, 'special': 1.0, 'option': 2.0, 'only': 1.0, 'containers': 1.0, 'hospital': 1.0, 'and': 3.0, 'anywhere': 1.0, 't': 3.0, 'a': 9.0, 'the': 13.0, 'onto': 1.0, 'both': 1.0, 'screws': 1.0, 'your': 1.0, 'any': 1.0, 'annoying': 1.0, 'as': 4.0, 'don': 3.0, 'else': 1.0, 'manual': 1.0, 'slap': 1.0, 'motor': 2.0, 'bottom': 1.0, 'models': 2.0, 'with': 1.0, 'been': 1.0, 'breastfeeding': 1.0, 'one': 1.0, 'get': 2.0, 'months': 1.0, 'for': 6.0, 'expensive': 1.0, 'using': 1.0, 'which': 1.0, 'see': 1.0, 'have': 7.0, 'stopped': 2.0, 'bottle': 2.0, 'this': 3.0, 'pain': 1.0, 'right': 1.0, 'ask': 1.0, 'so': 1.0, 'can': 2.0, 'but': 1.0, 'wash': 1.0, 'use': 6.0, 'that': 2.0, 'breast': 5.0, 'because': 2.0, 'why': 1.0, 'milk': 3.0, 'just': 1.0, 'you': 7.0, 'when': 1.0, 'pump': 6.0, 'time': 3.0, 'model': 1.0, 'them': 1.0, 'has': 3.0, 'i': 9.0, 'two': 3.0, 'really': 1.0, 'battery': 1.0, 'against': 1.0, 'to': 13.0, 'preemie': 1.0, 'at': 3.0, 'is': 2.0, 'me': 1.0, 'my': 3.0, 'may': 1.0, 'was': 2.0, 'quicker': 1.0, 'store': 1.0, 'in': 3.0, 'around': 1.0, 'dishwasher': 2.0, '9': 1.0, 'it': 7.0, 'thought': 1.0, 'breasts': 2.0, 'much': 1.0, 'butt': 1.0, 'baby': 2.0, 'many': 3.0, 'parts': 2.0, 'daughter': 1.0, 'pieces': 2.0, 'clean': 2.0, 'be': 2.0, 'once': 2.0, 'then': 2.0, 'twice': 1.0, 'more': 1.0, 'cleaned': 1.0, 'after': 1.0, 'prefer': 1.0, 'wait': 1.0, 'each': 1.0, 'still': 2.0, 'if': 2.0, 'same': 2.0, 'feed': 1.0, 'compare': 1.0, 'eight': 1.0, 'run': 1.0, 'need': 1.0, 'or': 1.0}
Word element => {'frequent': 1.0, 'style': 1.0, 'not': 1.0, 'that': 1.0, 'box': 1.0, 'says': 1.0, 'very': 1.0, 'is': 2.0, 'side': 1.0, 'plus': 1.0, 'on': 2.0, 'hear': 1.0, 'be': 1.0, 'will': 1.0, 'even': 1.0, 'out': 1.0, 'home': 3.0, 'made': 1.0, 'noise': 2.0, 'imagine': 1.0, 'it': 5.0, 'carry': 1.0, 'motor': 1.0, 'at': 2.0, 'this': 3.0, 'harmony': 1.0, 'go': 1.0, 't': 1.0, 'terrific': 1.0, 'tried': 1.0, 'i': 3.0, 'buy': 2.0, 'works': 1.0, 'only': 2.0, 'much': 1.0, 'bought': 1.0, 'originally': 1.0, 'easy': 2.0, 'sure': 1.0, 'pump': 5.0, 'battery': 1.0, 'express': 1.0, 'however': 1.0, 'and': 2.0, 'too': 1.0, 'milk': 1.0, 'work': 2.0, 'medela': 1.0, 'assemble': 1.0, 'for': 5.0, 'which': 1.0, 'like': 1.0, 'using': 1.0, 'suggest': 1.0, 'instead': 1.0, 'to': 5.0, 'outside': 1.0, 'when': 1.0, 'you': 2.0, 'others': 1.0, 'use': 4.0, 'breast': 1.0, 'in': 2.0, 'the': 8.0, 'place': 1.0, 'occasional': 1.0, 'electric': 1.0, 'if': 1.0, 'don': 1.0, 'manual': 1.0, 'mind': 1.0, 'because': 1.0}
Word element => {'first': 1.0, 'just': 1.0, 'should': 1.0, 'difference': 1.0, 'for': 1.0, 'medela': 2.0, 'loving': 1.0, 'am': 1.0, 'price': 1.0, 'both': 1.0, 'takes': 1.0, 'unlike': 1.0, 'baby': 1.0, 'minutes': 2.0, 'item': 2.0, 'noisy': 1.0, 'a': 3.0, '15': 1.0, 'or': 2.0, 'i': 4.0, 'to': 3.0, 'had': 1.0, 'system': 1.0, 'it': 2.0, '30': 1.0, 'this': 1.0, 'purchasing': 1.0, 'bought': 1.0, 'selling': 1.0, 'one': 1.0, 'disposable': 1.0, 'couple': 1.0, 'get': 1.0, 'getting': 1.0, 'matter': 1.0, 'avent': 3.0, 'and': 2.0, 'isis': 1.0, 'take': 1.0, 'ounces': 1.0, 'after': 1.0, 'sometimes': 1.0, 'have': 2.0, 'that': 1.0, 'been': 1.0, 'little': 1.0, 'successfully': 1.0, '6': 1.0, 'of': 2.0, 'would': 1.0, 'oz': 1.0, 'in': 1.0, 'about': 1.0, 'more': 2.0, 'is': 1.0, 'work': 1.0, 'but': 1.0, 'make': 1.0, 'your': 1.0, 'leaves': 1.0, 'free': 1.0, 'entertaining': 1.0, 'the': 8.0, 'hands': 2.0, 'keep': 1.0}
Word element => {'friend': 1.0, 'not': 1.0, 'for': 1.0, 'week': 1.0, 'wanting': 1.0, 'are': 1.0, 'very': 1.0, 'if': 1.0, 'different': 1.0, 'everyone': 1.0, 'review': 1.0, 'bad': 1.0, 'lot': 1.0, 'small': 1.0, 'have': 2.0, 'lanisoah': 1.0, 'the': 2.0, 'getting': 1.0, 'quality': 1.0, 'towards': 1.0, '60': 1.0, 'buying': 1.0, 'to': 3.0, 'researched': 1.0, 'rough': 1.0, 'and': 7.0, 'ounce': 1.0, 'times': 1.0, 'you': 2.0, 'am': 2.0, 'double': 1.0, 'error': 1.0, 'also': 1.0, 'up': 1.0, 'of': 2.0, 'cant': 1.0, 'months': 1.0, 'put': 1.0, 'your': 1.0, 'on': 2.0, 'medela': 1.0, 'i': 8.0, 'after': 2.0, 'really': 1.0, 'is': 4.0, 'find': 2.0, 'get': 1.0, 'pump': 8.0, 'pumping': 1.0, '1': 1.0, 'excited': 1.0, 'loud': 1.0, 'truly': 1.0, 'it': 5.0, 'could': 1.0, 'a': 8.0, 'only': 3.0, 'trial': 1.0, 'would': 1.0, 'afford': 1.0, 'new': 1.0, 'may': 1.0, 'save': 1.0, 'my': 1.0, 'breasts': 2.0, 'this': 2.0, '30': 1.0, 'recommend': 1.0, 'was': 1.0, 'minutes': 1.0, 'work': 1.0, 'but': 2.0, '2': 1.0, 'can': 1.0, 'couple': 1.0, 'out': 1.0, 'or': 1.0, 'less': 1.0, 'already': 1.0, 'loosing': 1.0, 'giving': 1.0, 'suction': 1.0}
Word element => {'registering': 1.0, 're': 1.0, 'you': 1.0, 'if': 1.0, 'mind': 1.0, 'keep': 1.0, 'storage': 1.0, 'then': 1.0, 'similar': 1.0, 'and': 2.0, 'reviewers': 1.0, 'comes': 1.0, 'once': 1.0, 'shower': 1.0, 'some': 1.0, 'switched': 1.0, 'yes': 1.0, 'gaskets': 1.0, 'came': 1.0, 'wide': 1.0, 'had': 1.0, 'was': 3.0, 'gasket': 2.0, 'rubber': 1.0, 'used': 1.0, 'set': 2.0, 'hold': 1.0, 'like': 1.0, 'using': 1.0, 'haven': 1.0, 'any': 1.0, 'to': 3.0, 'bags': 1.0, 'as': 1.0, 'admit': 1.0, 'must': 1.0, 'have': 2.0, 'milk': 1.0, 'just': 1.0, 'pump': 5.0, 'inconvenience': 1.0, 'i': 11.0, 'after': 1.0, 'small': 1.0, 'a': 3.0, 'replacement': 1.0, 't': 3.0, 's': 1.0, 'business': 1.0, 'avent': 3.0, 'my': 1.0, 'with': 2.0, 'sets': 1.0, 'it': 5.0, 'stopped': 1.0, 'didn': 1.0, 'got': 1.0, 'little': 1.0, 'check': 1.0, 'seal': 1.0, 'back': 1.0, 'directly': 1.0, 'but': 3.0, '2': 2.0, 'can': 1.0, 'weeks': 1.0, 'now': 1.0, 'of': 1.0, 'the': 14.0, 'suction': 1.0, 'been': 1.0, 'into': 3.0, 'that': 2.0, 'problems': 1.0, 'their': 1.0, 'motor': 1.0, 'starter': 1.0, 'first': 1.0, 've': 1.0, 'mine': 1.0, 'for': 4.0, 'months': 1.0, 'or': 1.0, 'gerber': 1.0, 'bottles': 1.0, 'twice': 1.0, 'noisy': 1.0, 'in': 2.0, 'per': 1.0, 'day': 1.0, 'kinda': 1.0, 'again': 1.0, 'out': 1.0, 'nothing': 1.0, 'compare': 1.0, 'size': 1.0, 'also': 1.0, 'which': 1.0, 'connection': 1.0, 'noticed': 2.0, 'on': 1.0, 'warped': 1.0, 'is': 1.0, 'same': 1.0, 'pour': 1.0, 'other': 2.0, 'an': 1.0, 'few': 1.0, 'this': 2.0, 'bottle': 4.0, 'has': 1.0, 'mouth': 1.0, 'medela': 1.0}
Word element => {'doubt': 1.0, 'not': 2.0, 'style': 1.0, 'am': 2.0, 'when': 1.0, 'as': 4.0, 'to': 3.0, 'must': 1.0, 'have': 2.0, 'a': 6.0, 't': 1.0, 's': 1.0, 'an': 1.0, 'electric': 1.0, 'everyday': 1.0, 'save': 1.0, 'carry': 1.0, 'on': 2.0, 'the': 9.0, 'muscles': 1.0, 'works': 1.0, 'end': 1.0, 'used': 1.0, 'full': 1.0, 'this': 4.0, 'having': 1.0, 'time': 3.0, 'bit': 1.0, 'after': 1.0, 'ended': 1.0, 'pump': 7.0, 'same': 1.0, 'several': 2.0, 'no': 2.0, 'express': 1.0, 'with': 5.0, 'went': 1.0, 'efficient': 1.0, 'me': 1.0, 'my': 1.0, 'isis': 4.0, 'and': 4.0, 'bought': 1.0, 'one': 2.0, 'i': 10.0, 'was': 1.0, 'for': 1.0, 'times': 1.0, 'hours': 1.0, 'convinced': 1.0, 'better': 1.0, 'getting': 2.0, 'did': 1.0, 'clearly': 1.0, 'up': 2.0, 'don': 1.0, 'spending': 1.0, 'baby': 1.0, 'it': 3.0, 'at': 1.0, 'is': 5.0, 'more': 1.0, 'point': 2.0, 'that': 2.0, 'expressing': 1.0, 'using': 1.0, 'good': 1.0, 'plan': 1.0, 'which': 1.0, 'free': 1.0, 'bad': 1.0, 'probably': 1.0, 'spend': 1.0, 'avent': 3.0, 'great': 1.0, 'would': 1.0, 'everybody': 1.0, 'need': 1.0, 'really': 1.0, 'you': 1.0, 'loud': 1.0, 'sore': 1.0, 'there': 1.0, 'than': 1.0, 'way': 1.0, 'so': 2.0, 'can': 1.0, 'watch': 1.0, 'dvd': 1.0, 'while': 1.0, 'expression': 1.0, 'day': 1.0, 'pumping': 1.0, 'medela': 1.0, 'per': 1.0, 'in': 1.0, 'hand': 1.0, 'says': 1.0, 'double': 1.0, 'will': 1.0}
Word element => {'unlike': 1.0, 'when': 1.0, 'else': 1.0, 'sold': 1.0, 'by': 1.0, 'used': 1.0, 'so': 1.0, 'can': 1.0, 'worth': 1.0, 'also': 1.0, 'emergency': 1.0, 'case': 1.0, 'safely': 1.0, 'breastmilk': 1.0, 'build': 1.0, 'could': 2.0, 'quality': 1.0, 'opposed': 1.0, 'times': 1.0, 'three': 1.0, 'than': 1.0, 'low': 1.0, 'medium': 1.0, 'is': 1.0, 'style': 1.0, 'those': 1.0, 'and': 2.0, 'getting': 1.0, 'get': 1.0, 'model': 2.0, 'took': 1.0, 'even': 1.0, 'wouldn': 1.0, 'forever': 1.0, 're': 3.0, 'a': 6.0, 'pump': 5.0, 'go': 1.0, 't': 1.0, 'done': 1.0, 'going': 1.0, 'someone': 1.0, 'd': 2.0, 'realized': 1.0, 'medela': 1.0, 'started': 1.0, 'baby': 2.0, 'ended': 1.0, 'but': 1.0, 'cheaper': 1.0, 'work': 1.0, 'over': 1.0, 'up': 2.0, 'or': 4.0, 'it': 3.0, 'month': 2.0, 'higher': 2.0, 'with': 2.0, 'models': 2.0, 'people': 1.0, 'mind': 1.0, 'this': 6.0, 'ounce': 1.0, 'wish': 1.0, 'money': 3.0, 'effort': 1.0, 'reserve': 1.0, 'i': 7.0, 'two': 2.0, 'high': 1.0, 'straight': 2.0, 'to': 14.0, 'other': 1.0, 'ever': 1.0, 'an': 3.0, 'agonized': 1.0, 'more': 3.0, 'made': 1.0, 'plan': 2.0, 'of': 5.0, 'the': 4.0, '250': 1.0, 'one': 8.0, 'try': 1.0, 'quickly': 1.0, 'only': 1.0, 'per': 1.0, 'in': 4.0, 'mistake': 1.0, 'save': 1.0, 'my': 2.0, 'extended': 1.0, 'milk': 3.0, 'just': 1.0, 'saved': 1.0, 'buy': 1.0, 'gone': 1.0, 'that': 2.0, 'on': 1.0, 'any': 1.0, 'your': 3.0, 'for': 2.0, 'expensive': 2.0, 'you': 10.0, 'who': 1.0, 'are': 3.0, 'trying': 1.0, 'here': 1.0, 's': 1.0, 'giving': 2.0, 'be': 3.0, 'noting': 1.0, 'whether': 1.0, 'decide': 1.0, 'between': 1.0, 'periodinvest': 1.0, 'loved': 1.0, 'cents': 1.0, 'if': 3.0, 'have': 2.0, 'very': 1.0, 'end': 2.0, 'abundant': 1.0, 'supply': 2.0, 'her': 1.0, 'twice': 1.0, 'formula': 2.0, 'had': 1.0, 'away': 1.0, 'from': 1.0, 'most': 1.0, 'back': 1.0}
Word element => {'breastfeed': 1.0, 'quite': 1.0, 'production': 1.0, 'comfort': 1.0, 'difference': 1.0, 'all': 1.0, 'make': 2.0, 'proper': 1.0, 'business': 1.0, 'mashed': 1.0, 'very': 2.0, 'room': 1.0, 'across': 1.0, 'threw': 1.0, 'don': 1.0, 'about': 1.0, 'battery': 1.0, 'you': 1.0, 'loud': 1.0, 'first': 1.0, 'stopped': 1.0, 'this': 4.0, 'painful': 1.0, 'use': 3.0, 'got': 1.0, 'wanted': 1.0, 'is': 3.0, 'at': 1.0, 'since': 1.0, 'style': 2.0, 'stop': 1.0, 'after': 1.0, 'just': 3.0, 'sort': 1.0, 'carrying': 1.0, 'starting': 1.0, 'it': 7.0, 'already': 1.0, 'will': 2.0, 'could': 1.0, 'a': 4.0, 't': 3.0, 'longer': 1.0, 'of': 3.0, 'the': 7.0, 'both': 1.0, 'forth': 1.0, 'concluded': 1.0, 'been': 3.0, 'time': 2.0, 'so': 1.0, 'pump': 5.0, 'weak': 1.0, 'work': 2.0, 'money': 1.0, 'one': 3.0, 'for': 3.0, 'product': 1.0, 'using': 3.0, 'and': 9.0, 'trip': 1.0, 'know': 2.0, 'have': 3.0, 'tried': 1.0, 'i': 13.0, 'to': 5.0, 'home': 2.0, 'back': 1.0, 'larger': 1.0, 'even': 1.0, 'instead': 1.0, 'in': 4.0, 'hadn': 1.0, 'occasional': 1.0, 'waste': 1.0, 'breasts': 1.0, 'had': 2.0, 'has': 1.0, 'my': 2.0, 'miserable': 1.0, 'away': 1.0, 'with': 2.0, 'tissue': 1.0, 'but': 2.0, 'ac': 1.0, 'crap': 1.0, 'piece': 1.0, 'adapter': 1.0, 'started': 1.0, 'twinges': 1.0, 'wimpier': 1.0, 'on': 2.0, 'probably': 1.0, 'your': 2.0, 'was': 1.0, 'doesn': 1.0, 'if': 1.0, 'would': 1.0, 'pumping': 1.0, 'gone': 1.0, 'buy': 1.0, 'luckily': 1.0, 'think': 1.0, 'better': 1.0, 'possible': 1.0, 'please': 1.0, 'or': 1.0, 'breast': 1.0, 'that': 5.0, 'borrow': 1.0}
Word element => {'faster': 1.0, 'think': 1.0, 'pumped': 1.0, 'worth': 1.0, 'one': 1.0, 'at': 2.0, 'outings': 1.0, 'in': 1.0, 'some': 1.0, 'always': 1.0, 'my': 1.0, 'specifically': 1.0, 'baby': 1.0, 'easily': 1.0, 'times': 1.0, 'am': 2.0, 'ensure': 1.0, 'increase': 1.0, 'established': 1.0, 'well': 1.0, 'course': 1.0, 'of': 2.0, 'whole': 2.0, 'thing': 1.0, 'post': 1.0, 'less': 1.0, 'consuming': 1.0, 'get': 1.0, 'freezer': 1.0, 'pump': 6.0, 'bottle': 1.0, 'time': 3.0, 'so': 4.0, 'engorgement': 1.0, 'it': 5.0, 'stopped': 1.0, 'painful': 1.0, 'this': 1.0, 'day': 2.0, 'pumping': 1.0, 'definitely': 1.0, 'too': 1.0, 'milk': 2.0, 'and': 6.0, 'out': 1.0, 'couple': 2.0, 'weeks': 3.0, 'can': 1.0, 'but': 1.0, 'i': 9.0, 'was': 1.0, 'least': 1.0, 'as': 1.0, 'to': 5.0, 'few': 1.0, 'just': 1.0, 'me': 1.0, 'not': 3.0, 'that': 2.0, 'been': 1.0, 'hand': 5.0, 'using': 2.0, 'for': 5.0, 'effective': 2.0, 's': 1.0, 'a': 9.0, 'basically': 1.0, 'the': 5.0, 'sore': 1.0, 'supply': 2.0, 'last': 1.0, '6': 2.0, 'labor': 1.0, 'every': 1.0, 'intensive': 1.0, 'arm': 1.0, 'got': 1.0, 'ounces': 1.0, 'yesterday': 1.0, 'because': 1.0, 'than': 3.0, 'more': 1.0, 'is': 3.0, 've': 1.0, 'super': 1.0, 'try': 1.0, 'its': 2.0, 'much': 2.0, 'squeezing': 1.0, 'nice': 1.0, 'have': 4.0, 'be': 1.0}
Word element => {'anyone': 1.0, 'd': 1.0, 'great': 1.0, 'still': 1.0, 'now': 1.0, 'had': 1.0, 'occasional': 1.0, 'morning': 1.0, 'every': 1.0, 'use': 1.0, 'pumping': 1.0, 'thats': 1.0, 'then': 1.0, 'problem': 1.0, 'public': 1.0, 'on': 1.0, 'a': 3.0, 't': 1.0, 'who': 1.0, 'lactation': 1.0, 'needs': 1.0, 'so': 1.0, 'the': 2.0, 'switch': 1.0, 'mins': 2.0, 've': 1.0, 'would': 1.0, 'manual': 1.0, 'take': 1.0, 'i': 7.0, 'month': 1.0, 'it': 7.0, 'this': 3.0, 'loud': 1.0, 'my': 1.0, 'avent': 2.0, 'and': 4.0, 'isis': 1.0, 'started': 1.0, 'me': 1.0, 'not': 2.0, 'out': 1.0, 'using': 2.0, 'for': 2.0, 'love': 1.0, 'get': 1.0, 'pump': 7.0, 'to': 3.0, 'as': 2.0, 'in': 2.0, 'that': 1.0, 'don': 1.0, 'over': 2.0, '20': 1.0, '5': 1.0, 'less': 1.0, 'specialist': 1.0, 'than': 1.0, 'does': 1.0, 'works': 1.0, 'much': 1.0, 'reccomended': 1.0, 'did': 1.0, '10': 1.0, 'if': 1.0, 'reccomend': 1.0, 'plan': 1.0, 'is': 1.0, '2': 1.0, 'ozs': 2.0, 'can': 1.0, 'but': 1.0, 'hurt': 1.0, 'you': 1.0}
Word element => {'given': 1.0, 'bought': 1.0, 'have': 3.0, 'don': 1.0, 'since': 2.0, 'better': 1.0, 'buy': 1.0, 'good': 1.0, 'pretty': 1.0, 'lanolin': 1.0, 'some': 1.0, 'plus': 1.0, 'smaller': 1.0, 'glad': 1.0, 'sore': 1.0, 'nipples': 2.0, 'insert': 1.0, 'hard': 1.0, 'from': 1.0, 'very': 1.0, 'any': 1.0, 'to': 5.0, 'as': 2.0, 'free': 1.0, 'get': 1.0, 'pump': 2.0, 'attachment': 1.0, 'myself': 1.0, 'the': 4.0, 'use': 2.0, 'loading': 1.0, 'great': 1.0, 'feel': 1.0, 'electric': 1.0, 'i': 7.0, 'it': 11.0, 'this': 2.0, 'containers': 1.0, 'hospital': 1.0, 'there': 1.0, 'storage': 1.0, 'difficult': 1.0, 'just': 2.0, 'me': 1.0, 'not': 1.0, 'received': 1.0, 'like': 2.0, 'convenient': 1.0, 'with': 3.0, 'manual': 3.0, 't': 3.0, 'a': 4.0, 'more': 1.0, 'incase': 1.0, 'comes': 2.0, 'is': 4.0, 'nipple': 1.0, 'gift': 1.0, 'wouldn': 1.0, 'got': 1.0, 'even': 1.0, 'down': 1.0, 'works': 1.0, 'spring': 1.0, 'for': 2.0, 'was': 1.0, 'doesn': 1.0, 'recommend': 1.0, 'avent': 1.0, 'and': 3.0, 'isis': 1.0, 'however': 1.0, 'are': 1.0, 'but': 2.0, 'work': 2.0, 'sitting': 1.0, 'than': 1.0, 'because': 1.0, 'having': 1.0, 'am': 1.0, 'you': 2.0, 'times': 1.0, 'when': 1.0, 'manually': 1.0}
Word element => {'free': 1.0, 'pain': 1.0, 'natural': 1.0, 'uses': 1.0, 'of': 1.0, 'such': 2.0, 'great': 1.0, 'the': 1.0, 'more': 1.0, 'suprise': 1.0, 'babiesrus': 1.0, 'but': 2.0, 'find': 2.0, 'still': 1.0, 'cheap': 1.0, 'i': 5.0, 'first': 2.0, 'to': 3.0, 'was': 2.0, 'its': 2.0, 'have': 1.0, 'a': 5.0, 'easy': 1.0, 'pump': 2.0, 'new': 1.0, '10': 2.0, 'it': 1.0, 'month': 1.0, 'quality': 1.0, 'baby': 1.0, 'buy': 1.0, 'day': 1.0, 'invesment': 1.0, 'and': 3.0, 'replacement': 1.0, 'couple': 1.0, 'since': 2.0, 'at': 3.0, 'decide': 1.0, 'mom': 1.0, 'parts': 1.0, 'low': 1.0, 'amazon': 1.0, 'use': 1.0, 'times': 1.0, 'or': 2.0, 'working': 1.0, 'months': 1.0, '3': 1.0, 'portable': 1.0, 'hurts': 1.0, 'very': 1.0, 'little': 1.0, 'are': 2.0, 'nipples': 1.0, 'sore': 1.0, 'after': 1.0}
Word element => {'disappointed': 1.0, 'not': 1.0, 'you': 1.0, 'will': 1.0, 'quality': 1.0, 'great': 2.0, 'price': 1.0, 'years': 1.0, 'one': 1.0, 'for': 1.0, 'recently': 1.0, '12': 1.0, 'child': 1.0, 'ago': 1.0, 'my': 2.0, 'brands': 1.0, 'used': 1.0, 'tried': 1.0, 'i': 2.0, 'have': 1.0, 'and': 3.0, 'as': 1.0, 'be': 1.0, 'product': 1.0, 'bought': 1.0, 'gift': 1.0, 'sister': 1.0, 'first': 1.0, 'with': 1.0, 'this': 2.0, 'it': 1.0, 'a': 1.0, 'is': 1.0, 'many': 1.0}
Word element => {'instead': 1.0, 'for': 1.0, 'definitely': 1.0, 'used': 1.0, 'm': 1.0, 'quality': 1.0, 'carry': 1.0, 'thought': 1.0, 'in': 1.0, 'from': 1.0, 'pumps': 1.0, 'end': 1.0, 'borrowed': 1.0, 'standards': 1.0, 'would': 1.0, 've': 1.0, 'at': 1.0, 'side': 1.0, 'high': 1.0, 'ounce': 1.0, 'friend': 1.0, 'an': 1.0, 'with': 2.0, 'down': 1.0, 'don': 1.0, 'unnatural': 1.0, 'your': 1.0, 'on': 2.0, 'waste': 2.0, 'was': 1.0, 'to': 2.0, 'like': 1.0, 'out': 1.0, 'wasn': 1.0, 'working': 1.0, 'let': 2.0, 'the': 4.0, 'another': 1.0, 'company': 1.0, 'my': 3.0, 'went': 1.0, 'just': 2.0, 'does': 1.0, 'than': 1.0, 'because': 1.0, 'not': 1.0, 'me': 1.0, 'and': 6.0, 's': 4.0, 't': 3.0, 'a': 4.0, 'i': 5.0, 'old': 1.0, 'that': 2.0, 'gave': 1.0, 'fritz': 1.0, 'barely': 1.0, 'local': 1.0, 'when': 2.0, 'office': 1.0, 'look': 1.0, 'right': 1.0, 'higher': 1.0, 'it': 5.0, 'this': 4.0, 'first': 1.0, 'get': 2.0, 'poor': 1.0, 'pump': 4.0, 'time': 3.0, 'wic': 1.0, 'seemed': 1.0, 'suction': 1.0, 'year': 1.0, 'medela': 1.0, 'worked': 1.0, 'back': 1.0, 'still': 1.0, 'better': 1.0, 'huge': 1.0, 'one': 4.0, 'even': 2.0, 'around': 1.0, 'say': 1.0, 'is': 2.0, 'of': 3.0, 'but': 1.0, 'past': 1.0, 'can': 2.0, 'money': 2.0}
Word element => {'for': 1.0, 'adapter': 1.0, 'make': 1.0, 'medela': 1.0, 'replace': 1.0, 'ordered': 1.0, 'doesn': 1.0, 'was': 2.0, 'to': 3.0, 'storing': 1.0, 'some': 1.0, 'things': 1.0, 'he': 1.0, 'only': 1.0, 'this': 3.0, 'start': 2.0, 'my': 1.0, 'went': 1.0, 'milk': 1.0, 'and': 5.0, 'even': 2.0, 'didn': 1.0, 'the': 2.0, 'spend': 1.0, 'until': 1.0, 'good': 1.0, 'son': 1.0, 'is': 1.0, 'one': 1.0, 'months': 2.0, 'usually': 1.0, 'old': 2.0, 'i': 4.0, 'pump': 6.0, 'today': 1.0, 'no': 1.0, 'about': 2.0, 'four': 2.0, '2': 1.0, 'money': 1.0, 'whisper': 1.0, 'times': 1.0, 't': 2.0, 'a': 4.0, 'car': 1.0, 'week': 1.0, 'morning': 1.0, 'there': 1.0, 'of': 2.0, 'suction': 1.0, 'pumping': 1.0, 'buy': 1.0, 'extra': 1.0, 'wear': 1.0, 'better': 1.0, 've': 1.0, 'those': 1.0, 'heard': 1.0, 'lot': 1.0}
Word element => {'anyone': 1.0, 'never': 1.0, 'noise': 1.0, 'white': 1.0, 'medela': 1.0, 'her': 1.0, 'than': 1.0, 'friend': 1.0, 'highly': 1.0, 'bit': 1.0, 'bottle': 1.0, 'noisier': 1.0, 'transferring': 1.0, 'just': 1.0, 'want': 1.0, 'if': 1.0, 'attach': 1.0, 'one': 1.0, 'with': 1.0, 'interchangeable': 1.0, 'are': 1.0, 'gerber': 1.0, 'bottles': 2.0, 'efficient': 1.0, 'that': 2.0, 'been': 1.0, 'use': 4.0, 'home': 1.0, 'to': 4.0, 'recommend': 1.0, 'was': 1.0, 'makes': 1.0, 'old': 1.0, 'i': 8.0, 'normally': 1.0, 'month': 1.0, 'it': 3.0, 'found': 1.0, 'this': 3.0, 'don': 1.0, 'used': 1.0, 'easy': 2.0, 'pump': 6.0, 'has': 1.0, '1': 1.0, 'do': 1.0, 'and': 3.0, 'freezing': 1.0, 'little': 1.0, 'breastmilk': 1.0, 'very': 2.0, 'another': 1.0, 'avent': 1.0, 'my': 1.0, 'daughter': 1.0, 'm': 2.0, 'mom': 1.0, 've': 2.0, 'for': 3.0, 's': 1.0, 'go': 1.0, 'a': 5.0, 't': 1.0, 'without': 1.0, 'the': 5.0, 'everyday': 1.0, 'hurt': 1.0, 'you': 2.0, 'when': 1.0, 'times': 1.0, 'since': 2.0, 'at': 1.0, 'but': 2.0, 'week': 1.0, 'told': 1.0, 'about': 1.0, 'several': 1.0, 'style': 1.0, 'n': 1.0, 'me': 2.0, 'stay': 1.0, 'not': 1.0, 'is': 1.0, 'around': 1.0, 'bags': 1.0, 'although': 1.0}
Word element => {'months': 1.0, 'motor': 1.0, 'comments': 1.0, 'people': 1.0, 'comment': 1.0, 'week': 1.0, 'had': 1.0, 'comfortable': 1.0, 'on': 1.0, 'depending': 1.0, 'minutes': 1.0, '15': 1.0, 'in': 1.0, 'each': 1.0, 'oz': 1.0, '6': 1.0, 'other': 2.0, 'some': 1.0, 'than': 1.0, 'for': 4.0, 'are': 1.0, 'and': 6.0, 'hears': 1.0, 'sure': 1.0, 'pump': 5.0, 'don': 1.0, 'baby': 1.0, 'bottles': 2.0, 'home': 1.0, 'stops': 1.0, '5': 1.0, 'worry': 1.0, 'true': 1.0, 'person': 1.0, 'pumping': 1.0, 'to': 5.0, 'it': 3.0, 'more': 1.0, 'is': 5.0, 'stay': 1.0, 'not': 1.0, 'have': 4.0, 'the': 3.0, 'however': 1.0, 'so': 2.0, '10': 1.0, 'if': 1.0, 'about': 6.0, 'quiet': 1.0, 'use': 1.0, 'convienence': 1.0, 'this': 3.0, 'perfect': 1.0, 'out': 1.0, 'working': 1.0, 'then': 1.0, 'supply': 1.0, 'good': 1.0, 'etc': 1.0, 'i': 6.0, 'you': 3.0, 'am': 2.0, 's': 2.0, 't': 2.0, 'a': 2.0, 'who': 1.0, 'at': 1.0, 'economical': 1.0, 'mom': 1.0, 'outings': 1.0, '2': 1.0, 'can': 3.0, 'daddy': 1.0, 'varies': 1.0, 'ones': 1.0, 'feed': 1.0, 'after': 1.0, 'sometimes': 1.0, 'that': 2.0, 'only': 2.0, 'works': 1.0, 'much': 1.0}
Word element => {'phone': 1.0, 'one': 1.0, 'could': 1.0, 'pumping': 1.0, 'gotten': 1.0, 'nurse': 2.0, 'maternity': 1.0, 'worked': 1.0, 'has': 1.0, 'lifestyle': 1.0, 'medela': 1.0, '250': 1.0, 'would': 1.0, 'breast': 1.0, 'that': 3.0, 'reccommended': 1.0, 'been': 1.0, 'but': 3.0, 'work': 1.0, 'ready': 1.0, 'out': 1.0, 'am': 1.0, 'when': 2.0, 'road': 1.0, 'going': 2.0, 'a': 4.0, 'ago': 1.0, 't': 1.0, 's': 1.0, 'invest': 1.0, 'supply': 1.0, 'establish': 1.0, 'now': 2.0, 'slower': 1.0, 'as': 1.0, 'same': 1.0, 'month': 1.0, 'it': 9.0, 'to': 5.0, 'job': 1.0, 'very': 2.0, 'little': 1.0, 'day': 1.0, 'from': 1.0, 'matter': 1.0, 'say': 1.0, 'milk': 1.0, 'plugged': 1.0, 'half': 1.0, 'left': 1.0, 'talk': 1.0, 'into': 1.0, 'hospital': 1.0, 'have': 5.0, 'for': 3.0, 'using': 1.0, 'and': 5.0, 'trip': 1.0, 'so': 2.0, 'bit': 1.0, 'time': 2.0, 'baby': 2.0, 'use': 2.0, 'privacy': 1.0, 'moment': 1.0, '3': 1.0, 'on': 3.0, '4': 1.0, 'months': 1.0, 'used': 2.0, 'loud': 2.0, 'only': 1.0, 'bottle': 1.0, 'this': 3.0, 'with': 2.0, 'does': 1.0, 'in': 4.0, 'the': 13.0, 'of': 1.0, 'home': 1.0, 'doesn': 1.0, 'minutes': 1.0, 'babysitter': 1.0, 'how': 1.0, 'recently': 1.0, 'went': 1.0, '7': 1.0, 'pump': 6.0, 'hour': 1.0, 'car': 1.0, 'not': 2.0, 'my': 6.0, 'me': 2.0, 'electric': 1.0, 'well': 3.0, 'i': 12.0, 'outlet': 1.0, 'every': 1.0, 'if': 1.0, 'still': 1.0, 'other': 1.0, 'all': 1.0, 'an': 1.0, 'helped': 1.0, 'double': 1.0, 'excrete': 1.0, 'ounces': 1.0, '15': 1.0, 'battery': 1.0, 'option': 1.0, 'is': 3.0, 'at': 3.0, 'first': 1.0, 'bad': 1.0, 'full': 1.0, 'were': 1.0, 'back': 1.0}
Word element => {'remove': 1.0, 'simply': 1.0, 'or': 1.0, 'relieve': 1.0, 'work': 1.0, 'will': 1.0, 'and': 1.0, 'to': 5.0, 'right': 1.0, 'if': 1.0, 'buy': 1.0, 'that': 1.0, 'are': 1.0, 'll': 1.0, 'engorgement': 1.0, 'not': 1.0, 'fine': 1.0, 'is': 2.0, 'this': 2.0, 'hospital': 1.0, 'you': 2.0, 'trying': 1.0, 'milk': 1.0, 'rent': 1.0, 'increase': 1.0, 'a': 1.0, 'supply': 1.0, 'need': 1.0, 'the': 1.0, 'nicely': 1.0, 'for': 1.0, 'pump': 3.0, 'designed': 1.0}
Word element => {'old': 1.0, 'is': 1.0, 'years': 1.0, 'delicate': 1.0, 'realiable': 1.0, 'such': 2.0, 'needed': 1.0, 'and': 2.0, 'me': 2.0, 'with': 3.0, 'this': 1.0, 'sister': 2.0, 'first': 4.0, 'about': 1.0, 'help': 2.0, 'at': 1.0, 'sons': 1.0, '1st': 1.0, 'used': 1.0, 'her': 4.0, 'happy': 1.0, 'nervous': 1.0, 'it': 3.0, 'she': 3.0, 'home': 1.0, 'after': 2.0, 'my': 4.0, 'child': 2.0, 'in': 2.0, 'out': 1.0, 'newborn': 1.0, 'law': 2.0, 'a': 4.0, 'product': 1.0, 'for': 2.0, 'helping': 1.0, 'to': 8.0, 'now': 1.0, 'was': 2.0, 'nurse': 1.0, 'second': 1.0, 'two': 1.0, 'i': 2.0, 'other': 1.0, 'time': 4.0, 'pump': 3.0, 'that': 1.0, 'gave': 2.0, 'next': 1.0, 'mother': 1.0, 'the': 1.0, 'nursing': 1.0, 'able': 1.0, 'think': 1.0, '3': 1.0, 'oz': 2.0, 'ever': 1.0, 'day': 1.0, 'use': 2.0, '6': 2.0}
Word element => {'isn': 1.0, 'anything': 1.0, 'won': 1.0, 'even': 1.0, 'what': 1.0, 'getting': 1.0, 'they': 1.0, 'hurts': 1.0, 'why': 2.0, 'that': 2.0, 'their': 1.0, 'be': 1.0, 'trying': 1.0, 'are': 1.0, 'many': 1.0, 'nicu': 1.0, 'mothers': 1.0, 'while': 1.0, 'used': 1.0, 'established': 1.0, 'loud': 1.0, 'any': 1.0, 'to': 3.0, 'as': 2.0, 'nearly': 1.0, 'me': 1.0, 'not': 1.0, 'obviously': 1.0, 'than': 1.0, 'much': 1.0, 'one': 1.0, 'how': 2.0, 'ready': 1.0, 'nightmare': 1.0, 'days': 1.0, 'your': 1.0, 'think': 1.0, '3': 1.0, 'couldn': 1.0, 'milk': 4.0, 'and': 3.0, 'comfortable': 1.0, '1': 1.0, 'it': 4.0, 'this': 2.0, 'tried': 2.0, 'i': 7.0, 'old': 1.0, 'the': 4.0, 'believe': 1.0, 'get': 1.0, 'pump': 6.0, 'a': 4.0, 't': 4.0, 'such': 1.0, 'aren': 1.0, 'but': 1.0, 'advertised': 1.0, '2': 1.0, '5': 1.0, 'before': 2.0, 'amount': 1.0, 'ounces': 1.0, 'hospital': 4.0, 'of': 1.0, 'highly': 1.0, 'night': 1.0, 'baby': 2.0, 'with': 1.0, 'manual': 2.0, 'louder': 1.0, 'pumped': 3.0, 'grade': 1.0, 'time': 1.0, 'so': 1.0, 'effortlessly': 1.0, 'in': 4.0, 'short': 1.0, 'my': 3.0, 'is': 5.0, 'you': 1.0, 'happened': 1.0, 'when': 1.0, '11': 1.0, 'supply': 1.0, 'last': 1.0, 'if': 1.0, '10': 1.0, 'was': 3.0, 'minutes': 1.0}
Word element => {'over': 1.0, 'daily': 1.0, 'stopped': 1.0, 'out': 1.0, 'times': 1.0, 'when': 2.0, '2': 1.0, 'but': 1.0, 'having': 1.0, 'morning': 1.0, 'eating': 1.0, 'each': 5.0, 'oz': 1.0, 'solids': 1.0, 'sometimes': 1.0, 'ounces': 1.0, 'build': 1.0, 'at': 1.0, 'bought': 1.0, 'start': 1.0, 'portable': 1.0, 'breastmilk': 2.0, '6': 1.0, 'began': 1.0, 'could': 1.0, 'pumped': 1.0, 'manual': 1.0, 'life': 1.0, 'time': 3.0, 'go': 1.0, 'pump': 7.0, 'months': 1.0, 'get': 1.0, 'home': 1.0, 'up': 2.0, 'less': 2.0, 'my': 8.0, 'to': 7.0, 'one': 1.0, 'too': 1.0, 'and': 6.0, 'just': 1.0, 'milk': 1.0, 'daughter': 3.0, 'brought': 1.0, 'i': 12.0, 'took': 2.0, 'then': 1.0, 'become': 1.0, 'used': 7.0, 'on': 2.0, 'long': 1.0, '16': 1.0, '1': 1.0, 'until': 2.0, 'first': 2.0, 'few': 1.0, 'this': 3.0, 'during': 1.0, 'able': 1.0, 'night': 1.0, 'started': 2.0, 'her': 1.0, 'the': 5.0, 'of': 4.0, 'once': 1.0, 'she': 2.0, 'it': 2.0, 'using': 1.0, 'weening': 1.0, 'total': 1.0, 'naturally': 1.0, 'for': 4.0, '10': 1.0, 'herself': 1.0, 'however': 1.0, 'stored': 2.0, 'day': 1.0, 'pumping': 2.0, 'was': 2.0, 'recommend': 1.0, 'minutes': 1.0, 'attribute': 1.0, 'have': 1.0, 'a': 4.0, 'small': 1.0, 'old': 1.0, 'breast': 2.0, 'that': 2.0, 'because': 1.0, 'size': 1.0, 'year': 2.0, 'price': 1.0, 'convenience': 1.0, 'about': 1.0, '5': 1.0, 'only': 1.0, 'session': 1.0, 'plug': 1.0, 'supply': 1.0, 'never': 1.0, 'batteries': 1.0, 'motor': 1.0, 'did': 1.0, 'not': 1.0}
Word element => {'buy': 1.0, 'service': 1.0, 'customer': 1.0, 'terrible': 1.0, 'has': 1.0, 'shoot': 1.0, 'used': 2.0, 'later': 1.0, 'from': 1.0, 'charge': 1.0, 'through': 1.0, 'working': 1.0, 'then': 1.0, 'per': 1.0, 'warranty': 2.0, 'again': 2.0, 'times': 2.0, 'able': 1.0, 'initially': 1.0, 'madela': 2.0, 'troubleshooting': 3.0, 'offer': 1.0, 'could': 3.0, 't': 1.0, 'a': 4.0, 'wasn': 1.0, 'which': 1.0, 'i': 8.0, '4': 1.0, 'fail': 1.0, 'pump': 2.0, 'and': 6.0, 'produce': 1.0, 'trouble': 1.0, 'get': 2.0, 'months': 3.0, 'it': 6.0, 'maybe': 2.0, 'that': 3.0, '20': 1.0, 'because': 1.0, 'not': 2.0, 'started': 2.0, 'just': 1.0, 'this': 2.0, 'few': 3.0, 'to': 5.0, 'all': 1.0, 'as': 1.0, 'was': 3.0, 'use': 1.0, 'amazon': 1.0, 'purchased': 1.0, 'what': 1.0, 'company': 1.0, 'purchase': 2.0, 'another': 2.0, 'me': 3.0, 'my': 1.0, 'after': 3.0, 'so': 3.0, 'told': 2.0, 'about': 1.0, 'woman': 1.0, '1st': 1.0, 'who': 1.0, 'troubleshoot': 1.0, 'needed': 1.0, 'call': 1.0, 'motor': 2.0, 'down': 1.0, 'now': 2.0, 'up': 1.0, 'breaking': 1.0, 'method': 1.0, '6': 1.0, 'they': 2.0, 'do': 2.0, 'is': 2.0, 'discount': 1.0, 'com': 1.0, 'would': 1.0, 'make': 1.0, 'on': 2.0, 'product': 1.0, 'price': 1.0, 'month': 1.0, 'same': 1.0, 'buying': 1.0, 'device': 2.0, 'the': 15.0, 'of': 2.0, 'person': 1.0, 'did': 1.0, 'overused': 1.0, 'should': 1.0, 'have': 2.0, 'problem': 1.0, 'within': 1.0, 'spend': 1.0, 'called': 2.0, 'money': 1.0, 'unreliable': 1.0}
Word element => {'happy': 1.0, 'also': 1.0, 'frequently': 1.0, 'one': 1.0, 'my': 1.0, 'pleased': 1.0, 'well': 1.0, 'a': 2.0, 'works': 1.0, 'it': 2.0, 'this': 1.0, 'daily': 1.0, 'uses': 1.0, 'loud': 1.0, 'friend': 1.0, 'ideal': 1.0, 'makes': 1.0, 'time': 1.0, 'so': 1.0, 'that': 1.0, 'same': 2.0, 'if': 2.0, 'i': 2.0, 'm': 2.0, 'to': 2.0, 'not': 1.0, 'because': 1.0, 'then': 1.0, '1': 1.0, 'and': 4.0, 'overall': 1.0, 'pumpings': 1.0, 'very': 5.0, 'need': 1.0, 'which': 1.0, 'in': 1.0, 'for': 1.0, 'the': 3.0, 'pump': 3.0, 'easy': 1.0, 'was': 1.0, 'store': 1.0, 'clean': 1.0, 'there': 1.0, 'more': 2.0, 'is': 2.0, 'motor': 1.0, 'at': 1.0, 'humming': 1.0, 'noise': 1.0, '2': 1.0, 'can': 1.0, 'distracting': 1.0, 'feed': 1.0, 'you': 1.0, 'be': 1.0, 'trying': 1.0, 're': 1.0}
Word element => {'by': 1.0, 'them': 1.0, 'made': 1.0, 'bought': 1.0, 'deluxe': 1.0, 'use': 1.0, 'power': 1.0, 'little': 1.0, 'a': 1.0, 'pump': 1.0, 'your': 1.0, 'so': 2.0, 'i': 2.0, 'battery': 1.0, 'have': 1.0, 'more': 1.0, 'the': 2.0, 'is': 1.0, 'and': 2.0, 'everyday': 1.0, 'nice': 1.0, 'need': 1.0, 'breast': 1.0, 'to': 1.0, 'with': 1.0, 'it': 2.0, 'not': 1.0, 'trapped': 1.0, 'in': 1.0, 'something': 2.0, 'one': 1.0, 'for': 2.0, 'location': 1.0, 'but': 1.0, 'works': 1.0, 'both': 1.0}
Word element => {'bad': 1.0, 'loud': 1.0, 'of': 1.0, 'people': 1.0, 'let': 1.0, 'my': 1.0, 'use': 1.0, 'works': 1.0, 'still': 1.0, 'on': 1.0, '300': 1.0, '200': 1.0, 'didn': 1.0, 'glad': 1.0, 'little': 1.0, 'very': 1.0, 'are': 1.0, 'back': 1.0, 'will': 1.0, 'work': 2.0, 'but': 2.0, 'less': 1.0, 'if': 1.0, 'not': 4.0, 'just': 1.0, 'hospital': 2.0, 'don': 1.0, 'child': 1.0, 'up': 1.0, '15': 1.0, 'tries': 1.0, '4': 1.0, 'i': 8.0, 'am': 1.0, 'you': 3.0, 'needs': 1.0, 'grade': 2.0, 'time': 1.0, 'pump': 2.0, 'convince': 1.0, 'plan': 1.0, 'breastpump': 2.0, 'is': 1.0, 'fine': 1.0, 'everyone': 2.0, 'thought': 1.0, 'had': 1.0, 'ended': 1.0, 'because': 1.0, 'than': 1.0, 'full': 1.0, 'found': 1.0, 'this': 2.0, 'it': 4.0, 'one': 2.0, 'for': 3.0, 'tell': 1.0, 'worked': 2.0, 'day': 1.0, 'to': 3.0, 'any': 2.0, 'as': 2.0, 't': 2.0, 'going': 1.0, 'a': 6.0, 'could': 1.0, 'was': 1.0, 'minutes': 1.0, 'twice': 1.0, 'too': 1.0, 'and': 3.0, 'spend': 1.0, 'great': 2.0, 'gave': 1.0, 'next': 1.0, 'that': 4.0, 'breastfeeding': 1.0, 'long': 1.0}
Word element => {'pump': 1.0, 'a': 1.0, 'for': 1.0, 'expected': 1.0, 'then': 1.0, 'spend': 1.0, 'have': 1.0, 'i': 1.0, 'my': 1.0, 'didn': 1.0, 'to': 1.0, 'now': 1.0, 'was': 2.0, 'not': 1.0, 'suction': 1.0, 'even': 1.0, 'low': 2.0, 'what': 1.0, 'you': 1.0, 'more': 1.0, 't': 1.0, 'the': 2.0, 'milk': 1.0, '5': 1.0, 'money': 1.0, 'about': 1.0, 'it': 3.0, 'matter': 1.0, 'setting': 1.0, 'placed': 1.0, 'breast': 2.0, 'uses': 1.0, 'on': 1.0, 'engorged': 1.0, 'after': 1.0, 'so': 1.0, 'were': 1.0, 'express': 1.0, 'if': 1.0, 'did': 1.0, 'from': 1.0}
Word element => {'very': 1.0, 's': 2.0, 'perfect': 1.0, 'for': 1.0, 'it': 2.0, 'without': 1.0, 'extra': 1.0, 'people': 1.0, 'a': 1.0, 'lot': 1.0, 'room': 1.0, 'sturdy': 1.0, 'of': 1.0}
Word element => {'would': 1.0, 'rough': 1.0, 'call': 1.0, 'though': 1.0, 'use': 3.0, 'repeated': 1.0, 'because': 1.0, 'frame': 1.0, 'between': 1.0, 'out': 1.0, 'sliding': 1.0, 'no': 1.0, 'at': 1.0, 'i': 1.0, 'two': 2.0, 'with': 1.0, 'it': 4.0, 'this': 1.0, 'last': 2.0, 'used': 1.0, 'but': 2.0, 'dangerous': 1.0, 'week': 1.0, 'do': 1.0, 'too': 1.0, 'and': 3.0, 'not': 2.0, 'slipped': 1.0, 'possibly': 1.0, 'the': 8.0, 'when': 1.0, 'somewhere': 1.0, 'in': 1.0, 'recall': 1.0, 'we': 2.0, 'other': 1.0, 'board': 2.0, 'one': 1.0, 'bought': 1.0, 'for': 1.0, 'product': 1.0, 'floor': 1.0, 'metal': 1.0, 'problems': 1.0, 'years': 1.0, 'baby': 1.0, 'ended': 1.0, 'to': 1.0, 'as': 1.0, 'least': 1.0, 'our': 2.0, 'is': 2.0, 'weeks': 1.0, 'now': 1.0, '10': 1.0, 'within': 1.0, 'or': 1.0, '3': 1.0, 'on': 2.0, 'occasions': 1.0, 'of': 3.0, 'child': 2.0, 'up': 1.0, 'crib': 1.0, 'while': 1.0}
Word element => {'size': 1.0, 'space': 1.0, 'have': 1.0, 'don': 1.0, 'second': 1.0, 'll': 1.0, 'priced': 1.0, 'all': 2.0, 'cushion': 1.0, 'did': 1.0, 'head': 1.0, 'use': 1.0, 'her': 1.0, 'hit': 1.0, 'bumped': 1.0, 'from': 1.0, 'little': 1.0, 'enough': 1.0, 'come': 1.0, 'fit': 1.0, 't': 2.0, 'lots': 1.0, 'doesn': 1.0, 'better': 1.0, 'twice': 1.0, 'standard': 1.0, 'not': 1.0, 'too': 1.0, 'baby': 4.0, 'child': 1.0, 'year': 1.0, 'later': 1.0, 'friendly': 1.0, 'used': 1.0, 'be': 1.0, 'which': 2.0, 'blow': 1.0, 'comfortable': 2.0, 'in': 4.0, 'and': 9.0, 'loads': 1.0, 'play': 1.0, 'apart': 1.0, 'huge': 1.0, 'bedding': 2.0, 'doorways': 1.0, 'stars': 1.0, 'portable': 2.0, 'my': 1.0, '2': 1.0, 'can': 2.0, 'protect': 1.0, 'husband': 1.0, 'more': 1.0, 'assembled': 1.0, 'heatwave': 1.0, 'faced': 1.0, 'well': 1.0, 'i': 2.0, 'complicated': 1.0, 'old': 1.0, 'sturdy': 1.0, 'metal': 1.0, 'also': 1.0, 'disassembling': 1.0, 'middle': 1.0, 'crib': 5.0, 'directions': 1.0, 'a': 4.0, 's': 2.0, 'summer': 1.0, 'either': 2.0, 'purchased': 1.0, 'already': 1.0, 'it': 6.0, 'or': 2.0, 'far': 1.0, 'yet': 1.0, 'most': 1.0, 'sleep': 2.0, 'item': 1.0, 'our': 4.0, 'high': 1.0, 'to': 4.0, 'any': 1.0, 'under': 1.0, 'month': 1.0, 'felt': 1.0, 'gave': 1.0, 'with': 2.0, 'full': 1.0, 'were': 2.0, 'get': 1.0, 'conditioned': 1.0, 'are': 2.0, 'up': 1.0, '7': 1.0, 'due': 1.0, 'this': 2.0, 'the': 7.0, 'of': 4.0, 'delighted': 1.0, 'for': 3.0, '10': 1.0, 'another': 1.0, 'minutes': 1.0, 'unusual': 1.0, 'since': 3.0, 'bedroom': 1.0, 'into': 1.0, 'three': 1.0, 'getting': 2.0, 'items': 1.0, 'fine': 1.0, 'we': 4.0, 'moving': 1.0, 'take': 1.0, 'people': 1.0, 'several': 1.0, 'no': 1.0, 'patience': 1.0, 'air': 1.0, 'figure': 1.0, 'nothing': 1.0, 'out': 2.0, 'light': 1.0, 'weight': 1.0, 'nicely': 1.0, 'compliments': 1.0, 'comes': 1.0, 'room': 1.0, 'daughter': 1.0, 'handles': 1.0, 'when': 2.0, 'roll': 1.0, 'between': 1.0, 'problem': 1.0, 'only': 1.0, 'heads': 1.0, 'easily': 1.0, 'because': 1.0, 'is': 4.0, 'bars': 1.0, 'spaced': 1.0}
Word element => {'happy': 1.0, 'looking': 1.0, 'after': 1.0, 'at': 2.0, 'looked': 1.0, 'other': 1.0, 'much': 1.0, 'of': 1.0, 'was': 1.0, 'with': 3.0, 'came': 2.0, 'same': 1.0, 'about': 1.0, 'lower': 1.0, 'quality': 1.0, 'them': 1.0, 'one': 1.0, 'mobile': 1.0, 'are': 1.0, 'older': 1.0, 'more': 1.0, 'level': 3.0, 'is': 1.0, 'many': 2.0, 'wise': 1.0, 'features': 1.0, 'has': 2.0, 'higher': 1.0, 'it': 2.0, 'better': 2.0, 'price': 1.0, 'can': 1.0, '2': 1.0, 'i': 5.0, 'mattress': 1.0, 'this': 3.0, 'found': 2.0, 'than': 1.0, 'wooden': 1.0, 'find': 1.0, 'mattresses': 1.0, 'very': 2.0, 'for': 4.0, 'crib': 4.0, 'different': 1.0, 'porta': 2.0, 'investment': 1.0, 'as': 1.0, 'to': 2.0, 'be': 1.0, 't': 1.0, 'could': 1.0, 'a': 4.0, 'babies': 2.0, 'that': 6.0, 'am': 1.0, 'you': 2.0, 'just': 1.0, 'not': 1.0, 'would': 1.0, 'sides': 1.0, 'regular': 1.0, 'in': 2.0, 'cribs': 3.0, 'storage': 1.0, 'fold': 1.0, 'there': 1.0, 'easy': 1.0, 'and': 1.0, 'levels': 1.0, 'the': 7.0, 'place': 2.0, 'don': 1.0, 'child': 1.0, 'your': 1.0, 'think': 1.0, 'on': 2.0, 'have': 1.0, 'younger': 1.0}
Word element => {'a': 1.0, 'which': 1.0, 'when': 1.0, 'too': 1.0, 'at': 1.0, 'two': 1.0, 'space': 2.0, 'fit': 1.0, 'like': 1.0, 'time': 1.0, 'over': 1.0, 'worn': 1.0, 'not': 1.0, 'does': 1.0, 'three': 1.0, 'crib': 1.0, 'in': 2.0, 'wood': 1.0, 'cribs': 4.0, 'premium': 1.0, 'this': 1.0, 'only': 1.0, 'get': 1.0, 'and': 2.0, 'full': 1.0, 'are': 1.0, 'of': 2.0, 'metal': 1.0, 'is': 4.0, 'keep': 1.0, 'size': 1.0, 'sanitary': 1.0, 'we': 1.0, 'great': 2.0, 'the': 3.0, 'these': 2.0, 'our': 1.0, 'sturdy': 1.0, 'use': 1.0, 'church': 1.0, 'easy': 1.0, 'nursery': 1.0, 'to': 1.0, 'out': 1.0, 'clean': 1.0}
Word element => {'years': 1.0, '3': 1.0, 'for': 1.0, 'own': 1.0, 'are': 2.0, 'i': 2.0, 'up': 1.0, 'and': 1.0, 'hold': 1.0, 'daily': 1.0, 'cribs': 1.0, 'well': 1.0, 'a': 2.0, 'that': 1.0, 'sturdy': 1.0, 'some': 1.0, 'these': 2.0, 'daycare': 1.0, 'used': 1.0, 'they': 1.0, 'lot': 1.0, 'still': 1.0, 'look': 1.0, 'had': 1.0, 'new': 1.0, 'have': 1.0}
Word element => {'apart': 1.0, 'taking': 1.0, 'from': 1.0, 'best': 1.0, 'overall': 1.0, 'of': 1.0, 'out': 1.0, 'yr': 1.0, 'happy': 1.0, 'move': 1.0, 'rush': 1.0, 'no': 1.0, 'there': 1.0, 'and': 2.0, 'portability': 1.0, 'will': 1.0, 'room': 2.0, '20': 1.0, 'his': 1.0, 'almost': 1.0, 'into': 2.0, 'who': 1.0, 'son': 1.0, 'arrived': 1.0, 'my': 2.0, 'fits': 1.0, 'crib': 2.0, 'was': 1.0, 'to': 4.0, 'had': 1.0, 'pretty': 1.0, 'sure': 1.0, 'easy': 1.0, 'love': 1.0, 'fit': 1.0, 'assemble': 1.0, 'metal': 1.0, 'old': 2.0, 'its': 2.0, 'much': 1.0, 'feature': 1.0, 'i': 4.0, 'pounds': 1.0, 'feel': 1.0, 'great': 1.0, 'month': 1.0, 'it': 7.0, 'wouldn': 1.0, 'well': 1.0, 'without': 1.0, 'assembled': 1.0, 'the': 1.0, 'wrap': 1.0, 't': 1.0, 'a': 1.0, 'in': 1.0, 'can': 1.0, '2': 1.0, 'but': 2.0, 'double': 1.0, 'bumper': 1.0, 'pad': 1.0, 'is': 3.0, 'around': 1.0, 'roll': 2.0, 'so': 1.0, 'long': 1.0, 'cold': 1.0, 'you': 1.0, 'when': 1.0, 'am': 1.0, '6': 1.0, 'he': 2.0, 'how': 3.0, 'not': 1.0}
Word element => {'worm': 1.0, 'wiggle': 1.0, 'little': 1.0, 'does': 1.0, 'mine': 1.0, 'kick': 1.0, 'babies': 1.0, 'great': 1.0, 'would': 1.0, 'peace': 1.0, 'worth': 1.0, 'so': 1.0, 'be': 2.0, 'keep': 1.0, 'while': 1.0, 'through': 1.0, 'loved': 1.0, 'yard': 2.0, 'mind': 1.0, 'kicking': 1.0, 'a': 6.0, 's': 2.0, 'going': 1.0, 'ago': 1.0, 't': 3.0, 'laying': 1.0, 'perfect': 1.0, 'like': 2.0, 'seemed': 1.0, 'crib': 2.0, 'size': 1.0, 'our': 1.0, 'as': 4.0, 'drousy': 1.0, 'for': 2.0, 'afraid': 1.0, 'my': 1.0, 'another': 1.0, 'portable': 2.0, 'old': 1.0, 'on': 1.0, 'noticed': 1.0, 'baby': 1.0, 'she': 4.0, 'with': 1.0, 'pad': 1.0, 'bumper': 1.0, 'up': 1.0, 'don': 2.0, 'any': 1.0, 'keeps': 1.0, 'have': 2.0, 'of': 2.0, 'the': 4.0, 'getting': 1.0, 'and': 5.0, 'one': 1.0, 'crying': 1.0, 'too': 1.0, 'play': 2.0, 'sturdiness': 1.0, '4': 1.0, 'i': 8.0, 'step': 1.0, 'eye': 1.0, 'at': 1.0, 'look': 1.0, 'is': 1.0, 'around': 1.0, 'large': 1.0, 'this': 4.0, 'rail': 1.0, 'few': 1.0, 'even': 1.0, 'didn': 1.0, 'her': 7.0, 'sharp': 1.0, 'put': 1.0, 'much': 1.0, 'quickly': 1.0, 'only': 1.0, 'that': 2.0, 'sticking': 1.0, 'will': 2.0, 'break': 1.0, 'first': 1.0, 'problem': 1.0, 'days': 1.0, 'was': 2.0, 'center': 1.0, 'daycare': 1.0, 'when': 2.0, 'down': 1.0, 'turned': 1.0, 'out': 1.0, 'to': 5.0, 'bassinet': 1.0, 'pretty': 1.0, 'leg': 3.0, 'we': 1.0, 'take': 2.0, 'm': 2.0, 'in': 1.0, 'month': 1.0, 'super': 1.0, 'but': 2.0, 'back': 1.0, 'get': 2.0, 'want': 2.0, 'chances': 1.0, 'it': 3.0, 'already': 1.0}
Word element => {'children': 1.0, 'piece': 1.0, 'by': 1.0, 'bed': 1.0, 'than': 1.0, 'in': 2.0, 'room': 1.0, 'plenty': 1.0, 'has': 1.0, 'he': 1.0, 'storage': 1.0, 'out': 1.0, 'pulling': 1.0, 'intention': 1.0, 'approaching': 1.0, '2': 1.0, 'anytime': 1.0, 'but': 1.0, 'between': 2.0, 'would': 2.0, 'at': 1.0, 'space': 1.0, 'knowing': 1.0, 'need': 1.0, 'furniture': 1.0, 'guy': 1.0, 'on': 1.0, 'move': 2.0, 'we': 2.0, 'soon': 1.0, 'and': 2.0, 'little': 1.0, 'very': 1.0, 'absolutely': 1.0, 'best': 2.0, 'assumed': 1.0, 'full': 1.0, 'this': 1.0, 'only': 1.0, 'my': 1.0, 'fact': 1.0, 'save': 1.0, 'rooms': 1.0, 'have': 3.0, 'rolls': 1.0, '12': 1.0, 'purchased': 2.0, 'sturdy': 1.0, 'use': 1.0, 'primary': 1.0, 'the': 5.0, 'great': 1.0, 'size': 1.0, 'crib': 4.0, 'for': 2.0, 'love': 1.0, 'second': 1.0, 'more': 1.0, 'around': 1.0, 'is': 2.0, 'it': 3.0, 'looks': 1.0, 'child': 1.0, 'i': 7.0, 'of': 5.0, 'as': 2.0, 'to': 4.0, 'our': 2.0, 'all': 1.0, 'gear': 1.0, 'able': 1.0, 'far': 2.0, 'through': 1.0, 'months': 2.0, 'doorways': 1.0, 'be': 1.0, 'no': 1.0, 'several': 1.0, 'puchased': 1.0, 'times': 1.0, 'when': 1.0}
Word element => {'outside': 1.0, 'carry': 1.0, 'so': 1.0, 'smaller': 1.0, 'something': 1.0, 'use': 1.0, 'got': 1.0, 'wish': 1.0, 'handles': 1.0, 'months': 1.0, 'to': 1.0, 'comes': 1.0, 'bulky': 1.0, 'the': 2.0, 'bring': 1.0, 'and': 1.0, 'temperature': 1.0, 'this': 1.0, 'for': 1.0, 'out': 1.0, 'inconsistency': 1.0, 'off': 1.0, 'too': 1.0, 'past': 1.0, 'when': 1.0, 'i': 3.0, 'everyday': 1.0, 'used': 1.0, 'carried': 1.0, 'in': 1.0, 've': 1.0, 'can': 1.0, '7': 1.0}
Word element => {'a': 1.0, 'out': 1.0, 'putting': 1.0, 'be': 1.0, 'should': 1.0, 'recall': 1.0, 'first': 1.0, 'not': 1.0, 'years': 1.0, 'm': 1.0, 'up': 1.0, 'of': 3.0, 'inside': 1.0, 'instead': 1.0, 'that': 3.0, 'wife': 1.0, 'had': 1.0, 'was': 4.0, 'product': 1.0, 'for': 1.0, 'i': 6.0, 'this': 2.0, 'unit': 1.0, 'only': 1.0, 'item': 2.0, 'plastic': 1.0, 'almost': 1.0, 'hope': 1.0, 'sort': 1.0, 'orange': 2.0, 'the': 7.0, 'my': 1.0, 'lighting': 1.0, 'button': 1.0, 'entire': 1.0, 'one': 2.0, 'months': 1.0, '3': 1.0, 'on': 1.0, 'warmer': 1.0, 'noticed': 1.0, 'realized': 1.0, 'really': 1.0, 'turning': 1.0, 'fire': 1.0, 'to': 2.0, 'as': 2.0, 'melting': 1.0, 'night': 1.0, 'started': 1.0, 'smell': 1.0, 'bottle': 1.0, 'convenient': 1.0, 'soon': 1.0, 'and': 1.0, 'issue': 1.0, 'have': 1.0, 'if': 1.0}
Word element => {'the': 1.0, '2': 1.0, 'we': 1.0, 'freeze': 1.0, 'came': 1.0, 'up': 1.0, 'of': 1.0, 'there': 1.0, 'packs': 1.0, 'a': 1.0, 'wish': 1.0, 'just': 1.0, 'with': 1.0, 'it': 1.0, 'i': 1.0, 'when': 1.0, 'one': 1.0, 'ice': 1.0, 'so': 1.0, 'forget': 1.0, 'to': 1.0, 'be': 1.0, 'would': 1.0, 'back': 1.0}
Word element => {'great': 1.0, 'practical': 1.0, 're': 1.0, 'they': 2.0, 'sitter': 1.0, 'friend': 1.0, 'paying': 1.0, 'my': 3.0, 'for': 2.0, 'she': 2.0, 'lot': 1.0, 'baby': 2.0, 'buying': 3.0, 'was': 2.0, 'had': 1.0, 'am': 2.0, 'while': 1.0, 'how': 1.0, 'i': 8.0, 'products': 2.0, 'used': 2.0, 'nanny': 1.0, 'her': 2.0, 'and': 5.0, 'as': 1.0, 'to': 2.0, 'college': 1.0, 'work': 2.0, 'back': 1.0, 'of': 3.0, 'years': 1.0, 'best': 1.0, '34': 2.0, 'm': 1.0, 'during': 1.0, 'loan': 1.0, 'experience': 1.0, 'a': 1.0, 'going': 1.0, 's': 1.0, 'the': 2.0, 'taking': 1.0, 'care': 1.0, 'are': 1.0, 'know': 2.0, 'student': 1.0, 'anyway': 1.0, 'over': 1.0, '7': 1.0, 'y': 1.0, 'that': 1.0, 'babies': 1.0, 'items': 1.0, 'things': 1.0}
Word element => {'deal': 1.0, 'easier': 1.0, 'morning': 1.0, 'early': 1.0, 'makes': 1.0, 'so': 1.0, 'bottles': 1.0, 'browns': 1.0, 'to': 1.0, 'much': 1.0, 'purchased': 1.0, 'child': 1.0, 'exclusively': 1.0, 'perfect': 1.0, 'the': 1.0, 'my': 2.0, 'started': 1.0, 'when': 1.0, 'doctor': 1.0, 'formula': 1.0, 'works': 1.0, 'with': 2.0}
Word element => {'be': 1.0, 'always': 1.0, 'best': 1.0, 'old': 1.0, 'sometimes': 1.0, 'money': 1.0, 'not': 3.0, 'save': 1.0, 'hazard': 1.0, 'dangerous': 1.0, 'electrical': 1.0, 'me': 2.0, 's': 2.0, 'inside': 1.0, 'see': 1.0, 'off': 2.0, 'go': 1.0, 'd': 1.0, 'what': 1.0, 'when': 1.0, 'things': 1.0, 'you': 6.0, 'am': 1.0, 'so': 1.0, 'and': 7.0, 'too': 1.0, 'oz': 2.0, 'into': 1.0, 'afraid': 1.0, 'for': 1.0, 'hot': 2.0, 'bottles': 2.0, 'would': 4.0, 'stupid': 1.0, 'thing': 1.0, 'heats': 1.0, 'over': 1.0, 'worth': 1.0, 'almost': 1.0, 'got': 1.0, 'looking': 1.0, 'pan': 2.0, 'film': 1.0, 'job': 1.0, 'itsy': 1.0, 'to': 7.0, 'as': 1.0, 'an': 1.0, 'ever': 1.0, 'all': 1.0, 'sorry': 1.0, 'was': 1.0, 'a': 7.0, 'countertop': 1.0, 'shower': 1.0, 'doing': 1.0, 'the': 9.0, 'of': 4.0, 'bottle': 1.0, 'this': 7.0, 'i': 6.0, '4': 1.0, 'w': 3.0, 'does': 2.0, 'way': 2.0, 'than': 2.0, 'will': 2.0, 'melt': 1.0, 'registered': 1.0, 'up': 3.0, 'water': 6.0, '6': 1.0, 'how': 1.0, 'had': 2.0, 'warm': 1.0, 'crap': 2.0, 'piece': 2.0, 'on': 4.0, 'your': 2.0, 'stove': 2.0, 'heat': 1.0, 'clicker': 1.0, 'just': 1.0, 'thought': 1.0, 'flicker': 1.0, 'it': 11.0, 'better': 2.0, 'twice': 1.0, 'plus': 1.0, 'but': 2.0, 'add': 2.0, 'these': 1.0, 'please': 3.0, 'cold': 1.0, 'we': 1.0, 'then': 2.0, 'drain': 1.0, 'unit': 1.0, 'before': 1.0, 'in': 2.0, 'waste': 1.0, 'spitfulls': 1.0, 'camera': 1.0, 'back': 1.0, 'time': 1.0, 'bitsy': 1.0, 'turn': 2.0, 'if': 2.0, 'do': 1.0, 'put': 4.0, 'much': 1.0, 'there': 2.0, 'also': 1.0, 'containers': 1.0, 'gift': 1.0, 'which': 1.0, 'have': 1.0, 'more': 1.0, 'is': 3.0, 'two': 1.0, 'little': 2.0, 'they': 1.0, 'works': 1.0, 'tell': 1.0, 'leak': 2.0, 'bottom': 1.0, 'discharge': 1.0, 'fashioned': 1.0, 'tap': 1.0, 'allow': 1.0, 'from': 1.0, 'fun': 1.0, 'that': 2.0}
Word element => {'worth': 1.0, 'that': 1.0, 'works': 1.0, 'd': 1.0, 'takes': 1.0, 'counter': 1.0, 'faucet': 1.0, 'from': 1.0, 'of': 1.0, 'portion': 1.0, 'than': 1.0, 'usually': 1.0, 'adjusting': 1.0, 'never': 2.0, 'but': 2.0, 'up': 1.0, 'don': 1.0, 'cooler': 1.0, 'heated': 1.0, 'use': 2.0, 'warmer': 3.0, 'munchkin': 1.0, 'returning': 1.0, 'enough': 1.0, 'have': 1.0, 'we': 3.0, 't': 2.0, 'the': 7.0, 'great': 1.0, 'it': 5.0, 'he': 1.0, 'after': 1.0, 'product': 1.0, 'for': 2.0, 'bought': 1.0, 'one': 1.0, 'like': 1.0, 'which': 1.0, 'hot': 1.0, 'has': 2.0, 'worked': 1.0, 'makes': 1.0, 'brand': 1.0, 'hasn': 1.0, 'problems': 1.0, 'my': 1.0, 'running': 1.0, 'husband': 1.0, 'any': 1.0, 'to': 3.0, 'had': 2.0, 'space': 1.0, 'who': 1.0, 'water': 2.0, 'under': 1.0, 'more': 1.0, 'is': 1.0, 'level': 1.0, 'and': 2.0, 'this': 2.0, 'resort': 1.0, 'bottle': 1.0}
Word element => {'sided': 1.0, 'never': 1.0, 've': 1.0, 'warm': 1.0, 'say': 2.0, 'hazard': 1.0, 'fire': 1.0, 'said': 1.0, 'even': 1.0, 'reviewer': 1.0, 'read': 1.0, 'awful': 1.0, 'then': 2.0, 'and': 3.0, 'star': 4.0, 'combined': 1.0, 'starthe': 1.0, 'stars72': 1.0, 'on': 1.0, '3': 1.0, 'different': 1.0, 'star28': 1.0, 'follow': 1.0, 'options': 1.0, 'the': 4.0, '1': 2.0, 'great': 2.0, 'of': 1.0, 'doesn': 1.0, 'was': 1.0, 'all': 1.0, 'to': 4.0, 'instructions': 1.0, 'warms': 1.0, 'warmer': 2.0, 'sounds': 1.0, 'one': 3.0, 'im': 1.0, 'bottle': 2.0, 'rating': 1.0, 'other': 1.0, 'have': 1.0, 'discourage': 1.0, 'this': 2.0, 'it': 3.0, 'them': 1.0, '56': 1.0, 'encourage': 1.0, 'decide': 1.0, 'you': 1.0, 'am': 1.0, 'how': 1.0, 'extremely': 2.0, 'trying': 1.0, '2': 2.0, 'but': 2.0, 'people': 1.0, 'many': 1.0, 'what': 1.0, 'its': 2.0, 'works': 1.0, 'choose': 1.0, 'star35': 1.0, 'does': 1.0, 'gift': 1.0, 'get': 1.0, 'off': 1.0, 'an': 1.0, 'amway': 1.0, 'bottles': 1.0, 'or': 1.0, 'such': 1.0, 'others': 1.0, 'products': 1.0, 'ratings': 1.0, '4': 2.0, 'i': 2.0, 't': 1.0, 'a': 2.0, 'if': 3.0, 'however': 1.0, 'product': 2.0, 'supposed': 1.0, 'know': 1.0, 'me': 2.0, 'not': 1.0, 'they': 1.0, 'reviews': 2.0, 'card': 1.0, 'are': 1.0, 'mixed': 1.0, '5': 2.0, 'at': 1.0, 'star62': 1.0}
Word element => {'glad': 1.0, 'holder': 1.0, 'under': 1.0, 'forms': 1.0, 'brown': 1.0, 'weird': 1.0, 'clean': 1.0, 'freezer': 1.0, 'put': 1.0, 'forget': 1.0, 'you': 1.0, 'when': 1.0, 'enough': 1.0, 'a': 3.0, 't': 1.0, 'isn': 1.0, 'really': 1.0, 'bought': 1.0, 'one': 1.0, 'plastic': 1.0, '99': 1.0, '1': 1.0, 'week': 1.0, 'packs': 1.0, 'definitely': 1.0, 'extra': 1.0, 'ordering': 1.0, 'also': 2.0, 'very': 1.0, 'they': 2.0, 'amount': 2.0, 'what': 1.0, 'suggest': 2.0, 'i': 7.0, 'night': 3.0, 'with': 1.0, 'it': 1.0, 'once': 1.0, 'of': 2.0, 'bottles': 2.0, 'back': 1.0, 'needed': 2.0, 'cheap': 1.0, 'for': 2.0, 'product': 1.0, 'around': 1.0, 'is': 2.0, 'more': 1.0, 'quickly': 2.0, 'at': 1.0, 'must': 2.0, 'have': 2.0, 'told': 1.0, 'thing': 2.0, 'formula': 1.0, 'the': 5.0, 'playing': 1.0, 'into': 1.0, 'that': 1.0, 'residue': 1.0, 'only': 1.0, 'amounts': 1.0, 'water': 2.0, 'as': 1.0, 'to': 2.0, 'was': 1.0, 'warm': 1.0, 'would': 1.0, 'each': 1.0, 'so': 1.0, 'bottle': 2.0, 'suggested': 1.0, 'feedings': 2.0, 'are': 2.0, 'heat': 1.0, 'just': 1.0, 'ice': 1.0, 'because': 2.0, 'up': 2.0, 'suggestions': 1.0, 'this': 2.0, 'found': 1.0, 'then': 1.0, 'warms': 1.0, 'use': 1.0, 'glass': 1.0}
Word element => {'until': 1.0, 'takes': 1.0, 'better': 1.0, 'couple': 1.0, 'out': 1.0, 'figured': 1.0, 'get': 1.0, 'with': 1.0, 'need': 2.0, 'only': 1.0, 'do': 1.0, 'unless': 1.0, 'you': 4.0, 'ready': 1.0, 'little': 1.0, 'talk': 1.0, 'diaper': 1.0, 'her': 3.0, 'then': 2.0, 'kitchen': 1.0, 'instead': 1.0, 'middle': 1.0, 'of': 5.0, 'water': 2.0, 'fill': 1.0, 'change': 1.0, '2': 1.0, 'saves': 1.0, 'bed': 1.0, 'to': 5.0, 'feedings': 1.0, 'early': 1.0, 'r': 1.0, 'winner': 1.0, 'cant': 2.0, 'bought': 1.0, 'one': 2.0, 'for': 1.0, 'around': 1.0, 'is': 3.0, 'have': 2.0, 'that': 2.0, 'babies': 1.0, 'wide': 1.0, 'it': 3.0, 'first': 2.0, 'play': 1.0, 'and': 3.0, 'perfectly': 1.0, 'every': 3.0, 'trying': 1.0, 'returning': 1.0, 'would': 1.0, 'cooler': 2.0, 'amount': 1.0, 'after': 2.0, 'i': 5.0, 'morning': 1.0, 'us': 1.0, 'warmer': 4.0, 'warms': 1.0, 'my': 1.0, 'your': 1.0, 'dr': 1.0, 'bottles': 3.0, 'neck': 1.0, 'before': 1.0, 'room': 3.0, 'live': 1.0, 'seconds': 1.0, '4oz': 1.0, 'so': 1.0, 'bottle': 3.0, 'time': 3.0, 'going': 1.0, 'go': 2.0, 'a': 5.0, 's': 3.0, 'we': 2.0, 'lot': 1.0, 'at': 2.0, 'keep': 1.0, 'late': 1.0, 'brown': 1.0, 'in': 4.0, 'found': 1.0, 'holders': 1.0, 'wish': 1.0, 'this': 3.0, 'perfect': 2.0, 'without': 1.0, 'place': 2.0, 'the': 12.0, 'night': 2.0, 'baby': 2.0, 'part': 1.0}
Word element => {'running': 1.0, 'under': 1.0, 'my': 1.0, 'using': 1.0, 'faster': 1.0, 'given': 1.0, 'also': 1.0, 'down': 1.0, 'cool': 1.0, 'for': 1.0, 'hot': 2.0, 'put': 1.0, 'make': 1.0, 'instructions': 1.0, 'warmer': 2.0, 'up': 1.0, 'over': 1.0, 'the': 5.0, 'can': 2.0, 'minutes': 1.0, 'you': 4.0, 'then': 3.0, 'every': 1.0, 'get': 1.0, 'ok': 1.0, 'to': 9.0, 'as': 3.0, 'received': 1.0, 'wait': 2.0, 'have': 5.0, 'it': 4.0, 'with': 2.0, 'i': 2.0, 'bottle': 3.0, 'read': 1.0, 'little': 1.0, 'a': 3.0, 'gift': 1.0, 'much': 1.0, 'its': 1.0, 'do': 1.0, 'works': 1.0, 'even': 1.0, 'carefully': 1.0, 'this': 1.0, 'perfect': 1.0, 'of': 2.0, 'water': 3.0, 'and': 1.0, 'milk': 2.0, 'now': 1.0, 'leaves': 1.0, 'be': 1.0, 'cold': 1.0, 'if': 1.0, '10': 1.0, 'right': 1.0, 'start': 1.0, 'not': 2.0, 'fun': 2.0, 'screaming': 1.0, 'baby': 1.0, 'amount': 2.0, 'sometimes': 1.0}
Word element => {'don': 1.0, 'too': 1.0, 'mouth': 1.0, 'burn': 2.0, 'junk': 1.0, 'of': 2.0, 'not': 1.0, 'you': 1.0, 's': 1.0, 'a': 1.0, 'is': 1.0, 'waste': 1.0, 'piece': 1.0, 'warmer': 2.0, 'only': 1.0, 'it': 1.0, 'this': 1.0, 'yourself': 1.0, 't': 1.0, 'the': 2.0, 'taking': 1.0, 'little': 1.0, 'bottle': 1.0, 'your': 2.0, 'one': 1.0, 'out': 1.0, 'will': 2.0, 'but': 1.0}
Word element => {'much': 1.0, 'worked': 1.0, 'were': 1.0, 'still': 1.0, 'ok': 1.0, 'understood': 1.0, 'he': 1.0, 'nightlight': 1.0, 'even': 1.0, 'back': 1.0, 'needed': 1.0, 'diaper': 1.0, 'but': 1.0, 'change': 1.0, 'then': 1.0, 'are': 1.0, 'done': 1.0, 'bassinet': 1.0, 'and': 6.0, 'get': 1.0, 'woke': 1.0, 'night': 1.0, 'baby': 1.0, 'love': 1.0, 'for': 1.0, 'going': 1.0, 'we': 1.0, 'go': 2.0, 'a': 3.0, 'they': 1.0, 'everyone': 1.0, 'was': 7.0, 'now': 1.0, 'grab': 2.0, 'bottles': 1.0, 'eat': 2.0, 'thrilled': 1.0, 'it': 6.0, 'this': 4.0, 'with': 1.0, 'barely': 1.0, 'when': 3.0, 'i': 7.0, 'time': 1.0, 'so': 2.0, 'bottle': 3.0, 'little': 3.0, 'that': 2.0, 'sleep': 1.0, 'all': 1.0, 'to': 5.0, 'our': 1.0, 'have': 1.0, 'warmer': 1.0, 'wonderful': 1.0, 'my': 2.0, 'newborn': 1.0, 'way': 1.0, 'dump': 1.0, 'using': 1.0, 'sleeping': 1.0, 'ready': 1.0, 'his': 3.0, 'room': 1.0, 'up': 2.0, 'of': 1.0, 'would': 2.0, 'the': 2.0, 'water': 1.0, 'on': 1.0, 'guy': 2.0, 'put': 1.0, 'warmed': 1.0, 'cylinder': 1.0, 'in': 4.0, 'turn': 1.0}
Word element => {'run': 1.0, 'forget': 1.0, 'each': 1.0, 'be': 1.0, 'diaper': 1.0, 'my': 1.0, 'by': 1.0, 'help': 1.0, 'about': 1.0, 'swirling': 1.0, 'milk': 1.0, 'and': 3.0, 'taking': 1.0, 'seems': 1.0, 'also': 1.0, 'bottles': 1.0, '4oz': 1.0, 'less': 1.0, 'very': 1.0, 'little': 1.0, 'warmer': 1.0, 'use': 1.0, 'won': 1.0, 'half': 2.0, 'temperature': 1.0, 'great': 1.0, 'awhile': 1.0, 'middle': 1.0, 'in': 3.0, 'through': 2.0, 'falling': 1.0, 'time': 2.0, 'bottle': 2.0, 'warm': 2.0, 'wait': 1.0, 'done': 1.0, 'downstairs': 1.0, 'not': 1.0, 'is': 4.0, 'i': 2.0, 'two': 1.0, 'add': 1.0, 'some': 1.0, 'again': 1.0, 'you': 7.0, 'house': 1.0, 'it': 6.0, 'this': 1.0, 'want': 1.0, 'if': 3.0, 'have': 2.0, 'for': 1.0, 'product': 1.0, 'deprived': 1.0, 'way': 2.0, 'story': 1.0, 'condition': 1.0, 'of': 1.0, 'baby': 1.0, 'night': 1.0, 'changing': 1.0, 'that': 1.0, 'can': 1.0, 'the': 8.0, 'without': 1.0, 'practice': 1.0, 'usually': 1.0, 'does': 1.0, 'try': 1.0, 'much': 2.0, 'works': 1.0, 't': 1.0, 's': 1.0, 'a': 3.0, 'going': 1.0, 'stairs': 1.0, 'to': 5.0, 'sleep': 1.0, 'make': 1.0, 'your': 1.0, 'take': 1.0, 'down': 1.0, 'figuring': 1.0, 'out': 2.0, 'how': 1.0, 'water': 3.0, 'm': 1.0, 'fun': 1.0, 'best': 1.0, 'sure': 1.0, 'get': 2.0}
Word element => {'loves': 1.0, 'daughter': 1.0, 'my': 1.0, 'bottles': 1.0, 'recommend': 1.0, 'gift': 1.0, 'as': 1.0, 'warmer': 1.0, 'love': 1.0, 'sure': 1.0, 'can': 1.0, 'a': 3.0, 'bottle': 2.0, 'i': 3.0, 'warm': 1.0, 'heats': 1.0, 'received': 1.0, 'has': 1.0, 'of': 1.0, 'made': 1.0, 'the': 3.0, 'difference': 1.0, 'it': 3.0, 'this': 2.0, 'faster': 1.0, 'water': 1.0, 'than': 1.0, 'pot': 1.0, 'boil': 1.0}
Word element => {'i': 1.0, 'torture': 1.0, 'for': 1.0, 'colic': 1.0, 'to': 1.0, 'was': 1.0, 'had': 1.0, 'my': 1.0, 'no': 1.0, 'bottles': 3.0, 'water': 1.0, 'oz': 1.0, 'enough': 1.0, 'gave': 1.0, 'too': 1.0, 'gets': 1.0, 'always': 1.0, 'how': 1.0, '4': 1.0, 'warmer': 1.0, 'unit': 1.0, 'this': 1.0, 'it': 1.0, 'warm': 2.0, 'much': 1.0, 'waiting': 1.0, 'you': 1.0, 'out': 1.0, 'larger': 1.0, 'sometimes': 1.0, 'charity': 1.0, 'baby': 1.0, 'don': 1.0, 'the': 3.0, 't': 1.0, 'and': 1.0, 'matter': 1.0, 'get': 1.0}
Word element => {'always': 1.0, 'will': 1.0, 'water': 1.0, 'much': 1.0, 'how': 1.0, 'matter': 1.0, 'no': 1.0, 'time': 1.0, 'single': 1.0, 'every': 1.0, 'shut': 1.0, 'at': 2.0, 'safe': 1.0, 'all': 1.0, 'babies': 1.0, 'a': 4.0, 'we': 1.0, 'tell': 1.0, 'of': 1.0, 'dont': 1.0, 'this': 2.0, 'it': 5.0, 'mother': 1.0, 'the': 3.0, 'hated': 1.0, 'sputter': 1.0, 'doesnt': 1.0, 'for': 1.0, 'product': 1.0, 'be': 1.0, 'mess': 1.0, 'i': 1.0, 'find': 1.0, 'are': 1.0, 'is': 1.0, 'cabinet': 1.0, 'not': 1.0, 'good': 1.0, 'bottles': 1.0, 'or': 1.0, 'you': 2.0, 'when': 1.0, 'twins': 1.0, 'idea': 1.0, 'nice': 1.0, 'on': 1.0, 'make': 1.0, 'put': 1.0, '3': 1.0, 'in': 2.0, 'morning': 1.0, 'off': 1.0, 'crying': 1.0, 'hungry': 1.0, 'with': 1.0, 'timer': 1.0, 'button': 1.0, 'would': 1.0, 'ready': 1.0, 'boils': 1.0, 'and': 2.0, 'up': 1.0, 'over': 1.0}
Word element => {'formula': 1.0, 'i': 1.0, 'breastmilk': 1.0, 'easy': 1.0, 'it': 1.0, 'love': 1.0, 'works': 1.0, 'for': 1.0, 'in': 1.0, 'on': 1.0, 'button': 1.0, 'seconds': 1.0, 'the': 2.0, 'light': 1.0, 'nights': 1.0, 'makes': 1.0, 'and': 2.0, 'very': 1.0}
Word element => {'such': 1.0, 'delighted': 1.0, 'great': 1.0, 'size': 1.0, 'different': 1.0, 'if': 1.0, 'like': 1.0, 'm': 1.0, 'd': 1.0, 'they': 1.0, 'glass': 1.0, 'room': 1.0, 'held': 1.0, 'bottles': 2.0, 'or': 1.0, 'kitchen': 1.0, 'run': 1.0, 'have': 2.0, 'hot': 1.0, 'expected': 1.0, 'exactly': 1.0, 'works': 1.0, 'the': 6.0, 'said': 1.0, 'in': 3.0, 'really': 1.0, 'every': 1.0, 'too': 1.0, 'milk': 1.0, 'and': 7.0, 'necessary': 1.0, 'he': 8.0, 'this': 2.0, 'nights': 1.0, 'it': 8.0, 'bought': 1.0, 'another': 1.0, 'my': 1.0, 'bedroom': 1.0, 'went': 1.0, 'back': 1.0, 'but': 1.0, 'work': 3.0, 'love': 1.0, 'product': 2.0, 'for': 2.0, 'i': 5.0, 'when': 1.0, 'me': 3.0, 'not': 1.0, 'doesn': 1.0, 'was': 1.0, 'thinks': 1.0, 'wanted': 1.0, 'told': 1.0, 'telling': 1.0, 'silly': 1.0, 'scoffed': 1.0, 'help': 1.0, 'though': 2.0, 'all': 2.0, 'to': 6.0, 'as': 4.0, 'get': 2.0, 'easy': 1.0, 'be': 2.0, 'him': 2.0, 'keep': 1.0, 'at': 1.0, 'since': 1.0, 't': 2.0, 'we': 1.0, 'could': 1.0, 's': 3.0, 'a': 3.0, 'fabulous': 1.0, 'apologized': 1.0, 'been': 1.0, 'that': 4.0, 'is': 1.0, 'uses': 1.0, 'bottle': 1.0, 'time': 1.0, 'warms': 1.0, 'don': 1.0, 'up': 1.0, 'cooler': 3.0, 'partner': 1.0, 'even': 1.0}
Word element => {'kitchen': 1.0, 'running': 1.0, 'day': 1.0, 'time': 1.0, 'next': 2.0, '3': 1.0, 'we': 3.0, 's': 4.0, 'a': 5.0, 't': 1.0, 'fridge': 1.0, 'is': 2.0, 'baby': 1.0, 'my': 4.0, 'fed': 1.0, 'item': 1.0, 'will': 1.0, 'don': 1.0, 'formula': 2.0, '5': 1.0, 'four': 1.0, 'most': 1.0, 'but': 4.0, 'for': 4.0, 'was': 2.0, 'heats': 1.0, 'store': 1.0, 'make': 1.0, 'anymore': 1.0, 'in': 4.0, 'evening': 1.0, 've': 1.0, 'used': 1.0, 'part': 1.0, 'while': 1.0, 'hard': 1.0, 'wish': 1.0, 'use': 2.0, 'guess': 1.0, 'i': 3.0, 'there': 1.0, 'perfectly': 1.0, 'and': 4.0, 'do': 1.0, 'much': 1.0, 'bottles': 2.0, 'cup': 1.0, 'great': 2.0, 'of': 1.0, 'the': 13.0, 'hands': 1.0, 'reach': 1.0, 'it': 9.0, 'right': 1.0, 'daughter': 2.0, 'up': 2.0, 'change': 1.0, 'takes': 1.0, 'water': 1.0, 'line': 1.0, 'diaper': 1.0, 'instead': 1.0, 'took': 1.0, 'us': 1.0, 'this': 1.0, 'few': 1.0, 'heat': 1.0, 'steam': 2.0, 'burned': 1.0, 'figure': 1.0, 'very': 1.0, 'out': 3.0, 'timing': 1.0, 'overheat': 1.0, 'simply': 1.0, 'only': 1.0, 'quickly': 1.0, 'bed': 1.0, 'watch': 1.0, 'really': 1.0, 'hot': 1.0, 'so': 1.0, 'can': 1.0, 'measurement': 1.0, 'creates': 1.0, 'not': 1.0, 'you': 2.0, 'when': 2.0, 'fill': 1.0, 'good': 1.0, 'side': 1.0, 'pour': 1.0, 're': 1.0, 'ready': 1.0, 'cooler': 1.0, 'stars': 1.0, 'kept': 1.0, 'to': 7.0, 'bassinet': 1.0, 'quick': 1.0}
Word element => {'up': 1.0, 'takes': 1.0, 'how': 1.0, 'approximately': 1.0, 'know': 1.0, 'to': 2.0, 'chart': 1.0, 'add': 1.0, 'compartment': 1.0, 'bottles': 1.0, '2': 1.0, 'the': 3.0, 'my': 2.0, 'heat': 1.0, 'just': 1.0, 'life': 1.0, 'a': 6.0, 'store': 2.0, 'was': 1.0, 'purchased': 1.0, 'this': 2.0, 'it': 3.0, 'stores': 1.0, 'with': 2.0, 'i': 3.0, 'use': 1.0, 'warmer': 1.0, 'in': 1.0, 'daughter': 1.0, 'for': 4.0, 'freezer': 1.0, 'not': 2.0, 'baby': 1.0, 'second': 1.0, 'more': 1.0, 'comes': 1.0, 'is': 1.0, 'small': 2.0, 'much': 1.0, 'do': 1.0, 'pack': 4.0, 'and': 3.0, 'milk': 2.0, 'eight': 1.0, 'hours': 1.0, 'at': 1.0, 'saver': 1.0, 'fairly': 1.0, 'because': 1.0, 'ice': 2.0, 'than': 1.0, 'does': 1.0, 'long': 1.0, 'one': 1.0, 'cool': 1.0, 'bottle': 3.0, 'time': 3.0, 'would': 1.0}
Word element => {'issues': 1.0, 'experienced': 1.0, 'buy': 1.0, 'i': 3.0, 'any': 1.0, 'to': 2.0, 'now': 1.0, 'comes': 1.0, 'm': 1.0, 'mom': 1.0, 'too': 2.0, 'and': 1.0, 'going': 1.0, 's': 3.0, 'you': 2.0, 'months': 1.0, 'warmer': 1.0, 'instructions': 1.0, 'there': 1.0, 'this': 1.0, 'it': 6.0, 'with': 2.0, 'my': 1.0, 'another': 1.0, 'using': 1.0, 'love': 1.0, 'for': 2.0, 've': 2.0, 'in': 1.0, 'bottle': 2.0, 'been': 1.0, 'great': 1.0, 'the': 1.0, 'house': 1.0, 'will': 1.0, 'but': 1.0, 'have': 1.0, 'watch': 1.0, 'if': 1.0, '6': 1.0, 'how': 1.0, 'do': 1.0, 'much': 2.0, 'water': 1.0, 'put': 1.0, 'make': 1.0, 'hot': 1.0, 'very': 1.0, 'easy': 1.0, 'never': 1.0}
Word element => {'way': 1.0, 'that': 1.0, 'bottles': 1.0, 'microwave': 1.0, 'warm': 2.0, 'buy': 1.0, 'do': 1.0, 'take': 1.0, 'down': 1.0, 'get': 1.0, 'wait': 1.0, 'temperature': 1.0, 'hot': 1.0, 'minutes': 1.0, 'was': 1.0, 'to': 5.0, 'our': 1.0, 'were': 1.0, 'did': 1.0, 'unreliable': 1.0, 'since': 1.0, 'spend': 1.0, 'is': 1.0, 'more': 1.0, 'the': 3.0, 'my': 2.0, 'unsafe': 1.0, 'cuts': 1.0, 'water': 1.0, 'daughter': 1.0, 'wife': 1.0, 'so': 1.0, 'bottle': 2.0, 'i': 1.0, 'milk': 2.0, 'and': 4.0, 'a': 2.0, 'we': 5.0, 'warmer': 2.0, 'your': 1.0, 'on': 2.0, 'than': 1.0, 'having': 1.0, 'reason': 1.0, 'born': 1.0, 'have': 2.0, 'advice': 1.0, 'decided': 1.0, 'bought': 1.0, 'be': 1.0, 'it': 3.0, 'first': 1.0, 'this': 2.0, 'found': 1.0, 'even': 2.0, 'drinkable': 1.0, 'scalding': 1.0, 'sometimes': 2.0, 'in': 1.0, 'turn': 1.0, 'off': 1.0, 'product': 1.0, 'for': 2.0, 'will': 1.0, 'not': 2.0, 'no': 1.0, 'several': 1.0, 'when': 1.0, 'twins': 1.0, 'times': 1.0}
Word element => {'instead': 1.0, 'smaller': 1.0, 'find': 1.0, 'for': 1.0, 'product': 1.0, 'kitchen': 1.0, 'your': 1.0, 'make': 1.0, 'refrigeration': 1.0, 'bottles': 1.0, 'or': 1.0, 'water': 1.0, 'running': 1.0, 'somewhere': 1.0, 'lived': 1.0, 'if': 2.0, 'this': 2.0, 'of': 2.0, 'takes': 1.0, 'up': 1.0, '7': 1.0, 'caps': 1.0, 'after': 1.0, 'floor': 1.0, 'style': 1.0, 'not': 1.0, 'poorly': 1.0, 'you': 2.0, 'again': 1.0, 'easily': 1.0, 'that': 1.0, 'parts': 1.0, 'tubes': 1.0, 'designed': 1.0, 'the': 8.0, 'no': 1.0, 'bulky': 1.0, 'warmer': 4.0, 'with': 2.0, 'awkward': 1.0, 'a': 1.0, 's': 1.0, 'would': 1.0, 'is': 2.0, 'fall': 1.0, 'never': 1.0, 'measuring': 1.0, 'finally': 1.0, 'to': 1.0, 'fewer': 1.0, 'and': 4.0, 'compartment': 1.0, 'i': 3.0, 'using': 1.0, 'device': 1.0, 'buy': 1.0, 'cylinder': 1.0, 'in': 2.0, 'half': 2.0, 'sawed': 1.0, 'removed': 1.0, 'months': 1.0, 'insulated': 1.0, 'entire': 1.0, 'back': 1.0, 'only': 1.0, 'much': 1.0, 'night': 1.0, 'improved': 1.0, 'it': 1.0, 'useless': 1.0, 'at': 1.0, 'space': 1.0}
Word element => {'bottom': 1.0, 'aire': 1.0, 'playtex': 1.0, 'using': 1.0, 'off': 1.0, 'top': 1.0, 'about': 1.0, 'when': 1.0, 'the': 3.0, 'this': 1.0, 'great': 2.0, 'excited': 1.0, 'first': 2.0, 'it': 8.0, 'stopped': 1.0, 'only': 1.0, 'do': 1.0, 'in': 1.0, 'took': 1.0, 'working': 1.0, 'them': 1.0, 'own': 1.0, 'bottles': 2.0, 'two': 1.0, 'i': 3.0, 'very': 1.0, 'worked': 1.0, 'quickly': 1.0, 'melted': 1.0, 'three': 1.0, 'keep': 1.0, 'at': 2.0, 'cool': 1.0, 'ten': 1.0, 'bought': 1.0, 'be': 1.0, 'that': 1.0, 'heat': 2.0, 'would': 1.0, 'all': 1.0, 'to': 6.0, 'minutes': 1.0, 'was': 2.0, 'comfort': 1.0, 'and': 2.0, 'soon': 1.0, 'of': 2.0, 'up': 1.0, 'my': 1.0, 'room': 1.0, 'instead': 1.0, 'trotting': 1.0, 'kitchen': 1.0, 'but': 1.0, 'week': 1.0, 'vent': 1.0, 'bottle': 1.0, 'so': 1.0, 'could': 1.0, 'a': 2.0, 'later': 1.0, 'able': 1.0, 'taking': 1.0}
Word element => {'perfectthis': 1.0, 'diaper': 1.0, 'then': 1.0, 'into': 1.0, 'knocked': 1.0, 'chill': 1.0, 'long': 1.0, 'with': 1.0, 'fine': 1.0, 'me': 1.0, 'bother': 1.0, 'doesn': 1.0, 'people': 1.0, 'other': 1.0, 'some': 1.0, 'problem': 1.0, 'steam': 1.0, 'amount': 1.0, 'dark': 1.0, 'turn': 1.0, 'in': 1.0, 'is': 3.0, 'using': 1.0, 'ready': 2.0, 'it': 4.0, 'cinch': 1.0, 'getting': 1.0, 'water': 1.0, 'together': 1.0, 'down': 1.0, 'carry': 1.0, 'twice': 1.0, 'morning': 1.0, 'without': 1.0, 'the': 7.0, 'i': 3.0, 'baby': 1.0, 'them': 1.0, 'night': 2.0, 'old': 1.0, 'for': 2.0, 'couldn': 1.0, 'and': 3.0, 'pack': 1.0, 'story': 1.0, 'wakes': 1.0, 'warmer': 2.0, 'freeze': 1.0, 'live': 1.0, 's': 1.0, 'go': 1.0, 't': 2.0, 'a': 5.0, 'we': 1.0, 'on': 1.0, '3': 1.0, 'week': 1.0, 'change': 1.0, '2': 1.0, 'but': 1.0, 'rocks': 1.0, 'at': 1.0, 'since': 1.0, 'who': 1.0, 'of': 1.0, 'once': 1.0, 'this': 1.0, 'time': 1.0, 'bottle': 3.0, 'even': 1.0, 'got': 2.0, 'cooler': 1.0, 'true': 1.0, 'when': 1.0, 'you': 2.0, 'have': 2.0, 'must': 1.0, 'room': 1.0, 'formula': 1.0, 'remember': 1.0, 'easy': 2.0, 'or': 1.0, 'bottles': 1.0, 'as': 2.0, 'all': 2.0, 'to': 2.0, 'ice': 1.0, 'off': 1.0, 'enough': 2.0, 'clean': 1.0, 'up': 1.0, 'used': 1.0, 've': 2.0, 'each': 1.0, 'just': 1.0}
Word element => {'kitchen': 1.0, 'going': 1.0, 'from': 1.0, 'us': 1.0, 'saves': 1.0, 'cooler': 1.0, 'which': 1.0, 'hot': 1.0, 'been': 1.0, 'never': 1.0, 'temeprature': 1.0, 'always': 1.0, 'way': 1.0, 'and': 5.0, 'too': 2.0, 'have': 1.0, 'nightime': 1.0, 'our': 2.0, 'least': 1.0, 'those': 1.0, 'did': 1.0, 'really': 1.0, 'at': 3.0, 'is': 5.0, 'sleeps': 1.0, 'daughter': 1.0, 'in': 4.0, 'not': 2.0, 'itself': 1.0, 'for': 2.0, 'middle': 2.0, 'still': 2.0, 'while': 2.0, 'much': 2.0, 'do': 1.0, 'bedroom': 1.0, 'wonderful': 2.0, 'purchased': 1.0, 'find': 1.0, 'fit': 1.0, 't': 1.0, 'a': 2.0, 'use': 4.0, 'her': 3.0, 'are': 2.0, 'to': 6.0, 'pretty': 1.0, 'feedings': 2.0, 'bassinet': 1.0, 'feature': 1.0, 'or': 1.0, 'need': 1.0, 'it': 8.0, 'many': 1.0, 'she': 1.0, 'warming': 2.0, 'of': 2.0, 'the': 13.0, 'night': 3.0, 'same': 1.0, 'shuts': 1.0, 'often': 1.0, 'avent': 1.0, 'great': 1.0, 'bottles': 3.0, 'by': 2.0, 'they': 1.0, 'there': 1.0, 'we': 5.0, 'fine': 1.0, 'now': 1.0, 'weeks': 1.0, '2': 1.0, 'but': 2.0, 'through': 1.0, 'so': 2.0, 'this': 1.0, 'few': 1.0, 'bottle': 1.0, 'don': 1.0, 'takes': 1.0, 'change': 1.0, 'up': 1.0, 'hard': 1.0, 'work': 1.0, 'over': 1.0, 'quite': 1.0, 'anymore': 1.0, 'minutes': 1.0, 'cold': 1.0, 'during': 1.0, 'day': 1.0, 'warm': 2.0, 'well': 2.0, 'i': 1.0, 'as': 1.0, 'units': 1.0, 'diaper': 1.0, 'cycle': 1.0, 'out': 1.0, 'seems': 1.0, 'off': 1.0, 'after': 1.0, 'all': 1.0, 'other': 1.0}
Word element => {'support': 1.0, 'of': 1.0, '1st': 1.0, 'safety': 1.0, 'as': 1.0, 'to': 3.0, 'you': 4.0, 'it': 3.0, 'dawn': 1.0, 'only': 1.0, '4': 1.0, 'love': 1.0, 'for': 1.0, 'will': 1.0, 'doesn': 1.0, 'may': 1.0, 'avent': 4.0, 'my': 1.0, 'super': 1.0, 'oz': 2.0, 'late': 1.0, '9': 1.0, 'those': 1.0, 'feedings': 1.0, 'are': 2.0, 'the': 6.0, 's': 1.0, 't': 1.0, 'does': 1.0, 'standard': 1.0, 'sized': 1.0, 'smaller': 1.0, 'bottle': 1.0, 'bottles': 4.0, 'or': 1.0, 'warmer': 2.0, 'use': 1.0, 'and': 1.0, 'storage': 1.0, 'easy': 1.0, 'area': 1.0, 'dusk': 1.0, 'is': 2.0, 'if': 2.0, 'want': 1.0, 'this': 2.0, 'perfect': 1.0, 'night': 1.0, 'complaint': 1.0, 'system': 1.0, 'version': 1.0, 'using': 2.0, 'hold': 1.0, 'larger': 2.0, 'check': 1.0, 'out': 1.0}
Word element => {'worked': 1.0, 'had': 1.0, 'though': 1.0, 'us': 1.0, 'bottles': 1.0, 'heater': 1.0, 'you': 1.0, 'that': 1.0, 'is': 1.0, 'for': 2.0, 'still': 1.0, 'gift': 1.0, 'great': 1.0, 'traditional': 1.0, 'the': 3.0, 'years': 1.0, 'baby': 3.0, 'plastic': 1.0, 'can': 1.0, 'morning': 1.0, 'ago': 1.0, 'a': 3.0, 'not': 1.0, 'early': 1.0, 'i': 1.0, 'three': 1.0, 'bottle': 1.0, '2nd': 1.0, 'problem': 2.0, 'slept': 1.0, 'used': 1.0, 'even': 1.0, 'after': 1.0, 'through': 1.0, 'use': 1.0, 'got': 1.0, 'nights': 1.0, 'with': 1.0, 'shower': 1.0, 'this': 2.0, 'it': 1.0, 'only': 2.0}
Word element => {'its': 1.0, 'down': 1.0, 'go': 1.0, 'slowly': 1.0, 'in': 2.0, 'are': 1.0, 'instructions': 1.0, 'on': 1.0, '3': 1.0, 'a': 3.0, 's': 1.0, 'could': 1.0, 'was': 3.0, 'brown': 1.0, 'for': 3.0, 'capabilities': 1.0, 'product': 1.0, 'fit': 1.0, 'using': 2.0, 'all': 3.0, 'to': 4.0, 'ourselves': 1.0, 'formula': 1.0, 'before': 1.0, 'have': 2.0, 'smell': 1.0, 'is': 2.0, 'that': 1.0, 'into': 1.0, 'works': 2.0, 'awhile': 1.0, 'basically': 1.0, 'wonders': 1.0, 'avent': 1.0, 'another': 1.0, 'from': 2.0, 'mixing': 1.0, 'longer': 2.0, 'the': 6.0, 'or': 1.0, 'possibly': 1.0, 'got': 1.0, 'loved': 1.0, 'hill': 1.0, 'i': 5.0, 'two': 1.0, 'it': 11.0, 'ourdr': 1.0, 'this': 2.0, 'minute': 1.0, 'with': 2.0, 'five': 1.0, 'drop': 1.0, 'can': 2.0, 'but': 2.0, 'four': 1.0, 'most': 1.0, 'sitting': 1.0, 'saver': 1.0, 'been': 2.0, 'ins': 1.0, 'and': 6.0, 'nonexistent': 1.0, 'milk': 2.0, 'change': 1.0, 'up': 2.0, 'over': 1.0, 'life': 1.0, 'bottles': 2.0, 'by': 1.0, 'sometimes': 1.0, 'burnt': 1.0, 'nicely': 1.0, 'heating': 2.0, 'time': 1.0, 'am': 1.0, 'times': 1.0, 'not': 1.0, 'quite': 1.0, 'sure': 1.0, 'our': 1.0, 'how': 1.0, 'be': 1.0, 'getting': 1.0, 'start': 1.0, 'onto': 1.0, 'does': 1.0, 'find': 1.0, 'apparently': 1.0, 'moment': 1.0, 'about': 1.0, 'months': 1.0, 'now': 4.0, 'almost': 1.0, 'still': 1.0, 'every': 1.0, 'plate': 1.0, 'day': 2.0, 'has': 1.0, 'finish': 1.0, 'considerably': 1.0, 'pitcherand': 1.0, 'started': 1.0, 'we': 3.0, 'take': 1.0, 'heat': 2.0, 'done': 1.0, 'cooled': 1.0, 'see': 1.0, 'off': 1.0, 'diaper': 1.0, 'waiting': 1.0}
Word element => {'different': 1.0, 'buy': 1.0, 'your': 1.0, 'meantime': 1.0, 'in': 1.0, 'do': 1.0, 'are': 1.0, 'what': 1.0, 'bottles': 1.0, 'or': 1.0, 'if': 1.0, 'their': 1.0, 'option': 1.0, 'at': 1.0, 'decide': 1.0, 'will': 2.0, 'they': 2.0, 'and': 2.0, 'reason': 1.0, 'supposed': 1.0, 'for': 1.0, 'born': 1.0, 'no': 1.0, 'of': 1.0, 'be': 1.0, 'save': 1.0, 'repair': 1.0, 'my': 1.0, 'this': 1.0, 'it': 3.0, 'stopped': 1.0, 'two': 1.0, 'i': 1.0, 'bottle': 1.0, 'sudden': 1.0, 'didn': 1.0, 'shipped': 1.0, 'warmer': 4.0, 'one': 1.0, 'bought': 1.0, 'months': 1.0, 'shortly': 1.0, 'all': 1.0, 'to': 6.0, 'after': 1.0, 'heat': 1.0, 'just': 2.0, 'the': 5.0, 'a': 2.0, 'ago': 1.0, 't': 1.0, 'button': 1.0, 'you': 2.0, 'was': 1.0, 'anymore': 1.0, 'replace': 1.0, 'states': 1.0, 'activate': 1.0, 'need': 2.0, 'press': 1.0, 'money': 1.0, 'but': 1.0, 'work': 1.0, 'back': 1.0, 'year': 1.0, 'limited': 1.0, 'then': 1.0, 'working': 1.0, 'warranty': 1.0, 'that': 1.0, 'baby': 1.0, 'them': 1.0}
Word element => {'maintenance': 1.0, 'expect': 1.0, 'better': 1.0, 'get': 1.0, 'otherwise': 1.0, 'i': 3.0, 'remove': 1.0, 'it': 3.0, 'warming': 1.0, 'need': 1.0, 'off': 1.0, 'crying': 1.0, 'turns': 1.0, 'that': 2.0, 'light': 3.0, 'just': 1.0, 'am': 1.0, 'miss': 1.0, 'moisture': 1.0, 'a': 3.0, 'once': 2.0, 'there': 1.0, 'what': 1.0, 'when': 1.0, 'sit': 1.0, 'timer': 1.0, 'red': 1.0, 'time': 1.0, 'the': 15.0, 'of': 4.0, 'popping': 1.0, 'indicator': 1.0, 'let': 1.0, 'bottles': 2.0, 'and': 3.0, 'my': 1.0, 'may': 1.0, 'accumulates': 1.0, 'as': 1.0, 'from': 1.0, 'part': 1.0, 'gift': 1.0, 'item': 1.0, 'will': 1.0, 'received': 1.0, 'past': 1.0, 'but': 1.0, 'to': 6.0, 'pretty': 1.0, 'satisfied': 1.0, 'pop': 1.0, 'only': 1.0, 'bottle': 4.0, 'this': 4.0, 'was': 1.0, 'onto': 1.0, 'steam': 1.0, 'warmer': 2.0, 'finishes': 1.0, 'registry': 1.0, 'instructions': 1.0, 'itself': 1.0, 'with': 2.0, 'continuing': 2.0, 'create': 1.0, 'back': 1.0, 'thus': 1.0, 'warm': 1.0, 's': 1.0, 'advice': 1.0, 'potentially': 1.0, 'for': 2.0, 'product': 1.0, 'bottom': 1.0, 'love': 1.0, 'would': 1.0, 'be': 1.0, 'make': 1.0, 'idea': 1.0, 'overheated': 1.0, 'your': 1.0, 'word': 1.0, 'button': 2.0, 'especially': 1.0, 'fully': 1.0, 'currently': 1.0, 'drip': 1.0, 'hear': 1.0, 'out': 1.0, 'if': 1.0, 'baby': 1.0, 'you': 3.0, 'night': 2.0, 'at': 2.0, 'ring': 1.0, 'is': 2.0, 'noise': 1.0, 'overheat': 1.0, 'cooler': 1.0, 'makers': 1.0, 'very': 1.0, 'read': 1.0, 'helpful': 1.0}
Word element => {'me': 1.0, 'better': 1.0, 'much': 1.0, 'worked': 1.0, 'pan': 1.0, 'poor': 1.0, 'problems': 1.0, 'have': 1.0, 'same': 2.0, 'bunch': 1.0, 'bad': 1.0, 'got': 1.0, 'just': 1.0, 'that': 2.0, 'either': 1.0, 'could': 1.0, 't': 1.0, 'a': 3.0, 'within': 1.0, 'hot': 1.0, 'out': 1.0, 'burnt': 1.0, 'or': 1.0, 'use': 1.0, 'warmer': 1.0, 'cold': 1.0, 'heating': 1.0, 'doesn': 1.0, 'was': 2.0, 'element': 1.0, 'of': 3.0, 'this': 2.0, 'two': 2.0, 'i': 3.0, 'your': 1.0, 'think': 1.0, 'on': 1.0, 'showers': 1.0, 'bottle': 2.0, 'it': 4.0, 'month': 1.0, 'product': 2.0, 'for': 2.0, 'manufacturing': 1.0, 'one': 2.0, 'purchasing': 1.0, 'the': 9.0, 'both': 1.0, 'second': 1.0, 'hazard': 1.0, 'baby': 1.0, 'right': 1.0, 'thank': 1.0, 'smoked': 1.0, 'is': 1.0, 'say': 1.0, 'caught': 1.0, 'save': 1.0, 'my': 1.0, 'goodness': 1.0, 'fire': 2.0, 'in': 3.0, 'room': 1.0, 'you': 2.0, 'causing': 1.0, 'when': 4.0, 'and': 1.0, 'too': 2.0, 'recieved': 1.0, 'did': 2.0, 'money': 1.0, 'but': 1.0, 'work': 2.0, 'sometimes': 1.0}
Word element => {'not': 1.0, 'that': 1.0, 'nice': 1.0, 'formula': 1.0, 'have': 1.0, 'it': 1.0, 'this': 1.0, 'necessary': 1.0, 'and': 1.0, 'd': 1.0, 'wake': 1.0, 'in': 1.0, 'middle': 1.0, 'm': 1.0, 'when': 1.0, 'daughter': 1.0, 'pumping': 1.0, 'i': 3.0, 'night': 1.0, 'the': 2.0, 'my': 1.0, 'up': 2.0, 'of': 1.0, 'feeding': 1.0, 'bottle': 1.0, 'heat': 1.0, 's': 2.0, 'to': 1.0, 'was': 2.0, 'now': 1.0}
Word element => {'level': 1.0, 'easy': 1.0, 'very': 1.0, 'after': 1.0, 'amounts': 1.0, 'different': 1.0, 'tried': 1.0, 'cold': 1.0, 'some': 1.0, 'tested': 1.0, 'enough': 1.0, 'use': 2.0, 'how': 1.0, 'out': 2.0, 'test': 1.0, 'took': 1.0, 'not': 1.0, 'runs': 1.0, 'big': 1.0, 'vials': 2.0, 'fill': 1.0, 'downside': 1.0, 'cooling': 1.0, 'without': 1.0, 'multi': 1.0, 'but': 2.0, 'buy': 1.0, 'wanting': 1.0, 'figure': 2.0, 'now': 1.0, 'before': 1.0, 'ways': 1.0, 'other': 1.0, 'than': 1.0, 'just': 1.0, 'faster': 1.0, 'product': 3.0, 'day': 1.0, 'people': 1.0, 'would': 2.0, 'techniques': 1.0, 'it': 7.0, 'anyone': 1.0, 'and': 6.0, 'forever': 1.0, 'stove': 1.0, 'get': 2.0, 'pot': 1.0, 't': 1.0, 'm': 1.0, 'in': 6.0, 'or': 1.0, 'you': 2.0, 'night': 1.0, 'them': 6.0, 'has': 1.0, 'my': 2.0, 'heat': 1.0, 'heard': 1.0, 'putting': 1.0, 'i': 13.0, 'two': 1.0, 'only': 1.0, 'usually': 1.0, 'for': 3.0, 'while': 1.0, 'deal': 1.0, 'many': 1.0, 'baby': 1.0, 'register': 1.0, 'running': 1.0, 'have': 4.0, 'didn': 1.0, 'say': 1.0, 'they': 2.0, 'are': 1.0, 'these': 1.0, 'on': 2.0, 'make': 1.0, 'over': 1.0, 'water': 5.0, 'up': 4.0, 'so': 4.0, 'warmer': 3.0, 'second': 2.0, 'warm': 1.0, 'had': 1.0, 'screamed': 1.0, 'was': 4.0, 'heats': 1.0, 'store': 1.0, 'heating': 2.0, 'doing': 1.0, 'the': 17.0, 'of': 2.0, 'bedrooms': 1.0, 'cried': 1.0, 'especially': 1.0, 'where': 1.0, 'come': 1.0, 'also': 3.0, 'a': 12.0, 'small': 1.0, 'story': 1.0, 'bottles': 5.0, 'by': 1.0, 'home': 2.0, 'much': 3.0, 'floor': 1.0, 'take': 1.0, 'we': 1.0, 'then': 1.0, 'waste': 1.0, 'real': 1.0, 'pain': 1.0, 'few': 1.0, 'bottle': 5.0, 'this': 4.0, 'to': 12.0, 'as': 2.0, 'with': 3.0, 'downstairs': 2.0, 'middle': 1.0, 'ready': 1.0, 'decided': 1.0, 'money': 1.0, 'bought': 1.0, 'one': 1.0, 'cool': 1.0, 'is': 3.0, 'look': 1.0, 'like': 2.0, 'which': 2.0, 'because': 2.0, 'that': 5.0, 'compartment': 2.0, 'keeps': 2.0, 'chilled': 1.0, 'if': 2.0, 'recommend': 1.0, 'were': 1.0, 'refrigerator': 1.0, 'keep': 1.0, 'several': 1.0, 'fridge': 1.0, 'hot': 1.0, 'throughout': 1.0}
Word element => {'recommend': 1.0, 'wake': 1.0, 'baby': 1.0, 'its': 1.0, 'at': 1.0, 'not': 1.0, 'silent': 1.0, 'night': 2.0, 'it': 1.0, 'great': 1.0, 'warmer': 1.0, 'does': 1.0, 'i': 1.0, 'convenient': 1.0, 'highly': 1.0, 'up': 1.0, 'very': 1.0, 'during': 1.0, 'like': 1.0, 'the': 1.0, 'that': 1.0, 'feedings': 1.0}
Word element => {'out': 1.0, 'figure': 1.0, 'yourself': 1.0, 'the': 2.0, 'dislike': 1.0, 'you': 1.0, 'measurements': 2.0, 'however': 1.0, 'compartment': 1.0, 'cold': 1.0, 'it': 1.0, 'have': 1.0, 'this': 1.0, 'like': 1.0, 'since': 1.0, 'to': 1.0, 'product': 1.0, 'place': 1.0, 'i': 2.0, 'your': 1.0, 'breastmilk': 1.0, 'had': 1.0, 'in': 1.0}
Word element => {'to': 1.0, 'recommend': 1.0, 'too': 1.0, 'like': 1.0, 'i': 2.0, 'of': 1.0, 'for': 1.0, 'color': 1.0, 'my': 2.0, 'and': 1.0, 'me': 1.0, 'just': 1.0, 'friends': 1.0, 'product': 1.0, 'will': 1.0, 'helped': 1.0, 'during': 1.0, 'right': 1.0, 'item': 1.0, 'really': 2.0, 'is': 2.0, 'on': 1.0, 'time': 1.0, 'the': 4.0, 'great': 1.0, 'first': 1.0, 'this': 3.0, 'it': 1.0, 'years': 1.0, 'baby': 1.0, 'price': 1.0, 'arrived': 1.0}
Word element => {'recommend': 1.0, 'wouldn': 1.0, 'mixing': 1.0, 'heating': 1.0, 'easy': 1.0, 'say': 1.0, 'needless': 1.0, 'went': 1.0, 'using': 1.0, 'bother': 1.0, 'time': 1.0, 'both': 1.0, 'capsule': 1.0, 'little': 1.0, 'more': 1.0, 'way': 1.0, 'than': 1.0, 'additional': 1.0, 'said': 1.0, 'instructions': 1.0, 'had': 1.0, 'warm': 1.0, 'very': 1.0, 'being': 1.0, 'ready': 1.0, 'didn': 1.0, 'seconds': 2.0, 'beside': 1.0, 'made': 1.0, 'formula': 3.0, 'for': 5.0, 'product': 1.0, 'times': 1.0, 'dispensed': 1.0, 'into': 1.0, '20': 1.0, 'that': 2.0, 'been': 1.0, 'bottles': 3.0, '3': 3.0, 'put': 2.0, 'near': 1.0, 'on': 1.0, 'holds': 1.0, 'is': 2.0, 'microwave': 3.0, 'trick': 1.0, 'caddy': 1.0, 'used': 1.0, 'back': 1.0, 'daugher': 1.0, 'never': 1.0, 'months': 2.0, '4': 2.0, 'i': 16.0, 'warmer': 1.0, 'so': 6.0, 'just': 1.0, 'add': 1.0, 'says': 1.0, 'of': 1.0, 'the': 19.0, 'use': 1.0, 'anyone': 1.0, 'and': 7.0, 'entire': 1.0, 'my': 5.0, 'me': 1.0, '3rd': 1.0, 'give': 1.0, 'have': 2.0, 'powder': 1.0, 'dump': 1.0, 'hate': 1.0, 'm': 1.0, 'closet': 1.0, 'in': 6.0, 'old': 1.0, 'taught': 1.0, 'law': 1.0, 'a': 3.0, 'go': 1.0, 't': 4.0, 's': 1.0, 'with': 2.0, 'bottle': 5.0, 'this': 4.0, 'shake': 1.0, '30': 2.0, 'she': 1.0, 'straight': 1.0, 'to': 10.0, 'second': 1.0, 'process': 1.0, 'but': 1.0, 'already': 2.0, 'it': 10.0, 'thought': 1.0, 'bar': 2.0, 'would': 1.0, 'quick': 2.0, 'sister': 1.0, 'oz': 2.0, 'shot': 1.0, 'since': 1.0, 'next': 1.0, 'them': 2.0, 'has': 1.0, 'water': 4.0, 'up': 1.0, 'fridge': 1.0, 'after': 1.0, 'first': 1.0, 'too': 2.0, 'try': 1.0, 'only': 1.0, 'couldn': 1.0, 'wait': 1.0, 'heat': 1.0, 'done': 2.0, 'until': 1.0, 'am': 1.0, 'last': 1.0, 'filled': 3.0, 'was': 2.0, 'other': 1.0, 'an': 1.0, '8': 1.0, 'sitting': 1.0, 'fill': 1.0, 'top': 2.0, 'even': 2.0, 'cold': 2.0, 'anywhere': 1.0, 'though': 1.0, 'method': 1.0, '6': 1.0, 'if': 1.0, 'still': 2.0, 'wasn': 1.0}
Word element => {'s': 1.0, 'seconds': 1.0, 'roughly': 1.0, 'for': 1.0, 'oz': 1.0, '4': 1.0, 'set': 1.0, 'overnight': 1.0, 'warm': 1.0, 'keep': 1.0, 'chrome': 1.0, 'ounce': 1.0, '16': 1.0, 'ofcrock': 1.0, 'same': 3.0, 'still': 1.0, 'if': 3.0, 'runs': 1.0, 'take': 1.0, 'else': 1.0, 'someone': 1.0, 'you': 4.0, 'refrigerator': 1.0, 'pot': 1.0, 'thrown': 1.0, 'don': 1.0, 'baby': 1.0, 'landfill': 1.0, 'to': 4.0, 'little': 1.0, 'two': 1.0, 'i': 1.0, 'years': 1.0, 'let': 1.0, 'no': 1.0, '32041': 1.0, 'thing': 1.0, 'pass': 1.0, 'sequential': 1.0, 'ready': 1.0, 'spot': 2.0, 'box': 2.0, 'that': 1.0, 'identical': 2.0, 'remove': 1.0, 'it': 6.0, 'your': 3.0, 'is': 3.0, 'more': 1.0, 'uni': 1.0, 'follow': 1.0, 'opened': 2.0, 'product': 3.0, 'purchased': 1.0, 'with': 1.0, 'item': 1.0, 'wails': 1.0, 'frustrating': 1.0, 'have': 3.0, 'registry': 1.0, 'problem': 1.0, 'rid': 1.0, 'received': 1.0, 'lines': 1.0, 'not': 1.0, 'but': 1.0, 'goodwill': 1.0, 'beyond': 1.0, 'away': 1.0, 'now': 1.0, 'and': 6.0, 'small': 1.0, 'a': 4.0, 'currently': 1.0, 'of': 3.0, 'the': 12.0, 'on': 3.0, 'amount': 1.0, 'dipper': 1.0, 'magma': 1.0, 'after': 1.0, 'from': 1.0, 'removed': 1.0, 'while': 1.0, 'in': 3.0, 'timeframe': 1.0, 'useful': 1.0, 'quantities': 1.0, 'tasker': 1.0, 'water': 2.0, 'got': 1.0, 'return': 1.0, 'radically': 1.0, 'mammary': 1.0, 'different': 1.0, 'when': 1.0, 'results': 1.0, 'there': 2.0, 'first': 1.0, 'this': 5.0, 'bottle': 5.0, 'boy': 1.0, 'filled': 1.0, 'was': 2.0, 'second': 1.0, 'like': 1.0, 'nothing': 1.0, '90': 1.0, 'than': 1.0, 'trying': 1.0, 'inept': 1.0, 'cool': 1.0, 'down': 1.0, 've': 1.0, 'done': 1.0, 'c': 1.0, 'sensible': 2.0, 'bottles': 1.0, 'home': 1.0, 'purchase': 1.0, 'why': 1.0, 'crockpot': 1.0, 't': 1.0, 'along': 1.0}
Word element => {'works': 1.0, 'actually': 1.0, 'drawing': 1.0, 'back': 1.0, 'go': 1.0, 'gettin': 1.0, 'would': 1.0, 'come': 1.0, 'where': 1.0, 'returning': 1.0, 'months': 1.0, '2': 1.0, 'than': 1.0, 'having': 1.0, 'didn': 1.0, 'instructions': 1.0, 'usage': 1.0, 'recommended': 1.0, 'and': 6.0, 'one': 1.0, 'too': 1.0, 'loved': 1.0, 'bottles': 5.0, 'or': 2.0, 'over': 1.0, 'browns': 1.0, 'use': 2.0, 'tool': 1.0, '4': 1.0, 'overheated': 1.0, 'thinking': 1.0, '3': 1.0, 'help': 1.0, 'make': 1.0, 'dr': 1.0, 'much': 1.0, 'put': 1.0, 'after': 2.0, 'board': 1.0, 'but': 2.0, 'month': 2.0, 'it': 6.0, 'warming': 1.0, 'a': 4.0, 'vendor': 1.0, 't': 2.0, 'going': 1.0, 'day': 1.0, 'as': 1.0, 'hands': 1.0, 'night': 2.0, 'them': 1.0, 'following': 1.0, 'milk': 1.0, 'just': 1.0, 'variety': 1.0, 'that': 2.0, 'because': 1.0, 'for': 3.0, 'the': 18.0, 'of': 8.0, 'about': 1.0, 'purchsed': 2.0, 'are': 1.0, 'first': 3.0, 'perfect': 1.0, 'this': 4.0, 'bottle': 2.0, 'warmer': 2.0, 'so': 1.0, 'heating': 1.0, 'had': 1.0, 'product': 4.0, 'capabilities': 1.0, 'was': 3.0, 'minutes': 1.0, 'per': 1.0, 'in': 4.0, 'needs': 1.0, 'cooled': 1.0, 'cooling': 1.0, 'more': 1.0, 'running': 1.0, 'to': 6.0, 'feedings': 1.0, 'pouring': 1.0, 'middle': 1.0, 'out': 3.0, 'top': 1.0, 'types': 1.0, 'specifically': 1.0, 'years': 2.0, 'breastflow': 1.0, 'recommend': 1.0, 'were': 5.0, 'sent': 1.0, 'thus': 2.0, 'even': 1.0, 'instead': 1.0, 'overflow': 1.0, 'did': 1.0, 'not': 3.0, 'started': 1.0, 'hot': 1.0, 'though': 1.0, 'touch': 1.0, 'couldn': 1.0, 'we': 7.0, 'overflowed': 1.0, 'take': 1.0, 'downstairs': 1.0, 'with': 3.0, 'my': 2.0, 'bare': 1.0, 'on': 1.0, 'amount': 1.0, 'near': 1.0, 'until': 1.0, 'advent': 1.0, 'infant': 1.0, 'down': 1.0, 'which': 1.0, 'using': 1.0, '5': 1.0, 'played': 1.0, 'less': 1.0, 'water': 2.0, 'i': 4.0, 'putting': 1.0}
Word element => {'be': 1.0, 'mostly': 1.0, 'room': 1.0, 'formula': 1.0, 'powdered': 1.0, 'one': 1.0, 'mix': 1.0, 'water': 2.0, 'run': 1.0, 'faster': 1.0, 'of': 1.0, 'in': 1.0, 'night': 1.0, 'baby': 1.0, 'long': 1.0, 'screaming': 1.0, 'heat': 1.0, 'size': 1.0, 'useless': 1.0, 'it': 3.0, 'first': 2.0, 'that': 2.0, 'minutes': 1.0, 'was': 4.0, 'too': 1.0, 'milk': 1.0, 'and': 2.0, 'hot': 1.0, 'temperature': 2.0, 'matter': 1.0, 'warm': 1.0, 'tested': 1.0, 'then': 1.0, 'liked': 1.0, 'for': 3.0, 'product': 2.0, 'enough': 1.0, 'granted': 1.0, 'heated': 1.0, 'a': 6.0, 'this': 2.0, 'found': 2.0, 'bottle': 5.0, 'drink': 1.0, 'until': 1.0, 'or': 2.0, 'under': 1.0, 'middle': 1.0, 'son': 2.0, 'the': 5.0, 'my': 3.0, 'takes': 1.0, 'burn': 1.0, 'making': 1.0, 'me': 1.0, 'not': 1.0, 'using': 1.0, 'which': 2.0, 'is': 3.0, 'to': 6.0, 'all': 1.0, '8': 1.0, 'new': 1.0, 'oz': 2.0, 'would': 1.0, 'at': 1.0, 'several': 1.0, 'no': 2.0, '2': 1.0, 'change': 1.0, 'but': 1.0, 'there': 1.0, 'way': 2.0, 'i': 4.0, '4': 1.0}
Word element => {'the': 1.0, 'warm': 1.0, 'order': 1.0, 'and': 1.0, 'put': 1.0, 'water': 2.0, 'measure': 1.0, 'to': 2.0, 'hassle': 1.0, 'we': 1.0, 'bought': 1.0, 'this': 1.0, 'in': 2.0, 'for': 1.0, 'night': 1.0, 'at': 1.0, 'milk': 2.0, 'warming': 1.0, 'it': 2.0, 'is': 1.0, 'a': 1.0}
Word element => {'as': 1.0, 'warm': 1.0, 'and': 2.0, 'in': 1.0, 've': 1.0, 'at': 1.0, 'night': 1.0, 'i': 3.0, 'great': 1.0, 'the': 1.0, '2': 1.0, 'to': 2.0, 'well': 1.0, 'cooler': 2.0, 'cap': 1.0, 'use': 2.0, 'store': 2.0, 'easy': 1.0, 'bottles': 2.0, 'so': 1.0, 'works': 2.0, 'it': 4.0, 'been': 1.0, 'medela': 1.0, 'using': 1.0, 'for': 1.0, '5': 1.0, 'oz': 1.0, 'pump': 1.0}
Word element => {'also': 1.0, 'use': 2.0, 'at': 1.0, 'because': 1.0, 'heat': 1.0, 'very': 1.0, 'best': 1.0, 'the': 1.0, 'keep': 1.0, 'ready': 1.0, 'gifts': 1.0, 'so': 1.0, 'one': 1.0, 'night': 1.0, 'i': 1.0, 'it': 1.0, 'this': 1.0, 'comes': 1.0, 'was': 3.0, 'to': 4.0, 'easy': 2.0, 'bottles': 1.0, 'needed': 1.0, 'store': 1.0, 'and': 2.0, 'of': 1.0, 'up': 1.0, 'them': 2.0, 'cool': 1.0, 'until': 1.0}
Word element => {'consuming': 1.0, 'time': 1.0, 'and': 1.0, 'mor': 1.0, 'worth': 1.0, 'found': 1.0, 'warmed': 1.0, 'of': 1.0, 'liquid': 1.0, 'amount': 1.0, 'the': 1.0, 'for': 1.0, 'being': 1.0, 'how': 1.0, 'knew': 1.0, 'never': 1.0, 'i': 2.0, 'bottles': 1.0, 'hot': 1.0, 'on': 1.0, 'a': 1.0, 'warming': 1.0, 'finished': 1.0, 'gadget': 1.0, 'in': 1.0, 'to': 1.0, 'was': 2.0, 'steam': 1.0, 'stand': 1.0, 'early': 1.0, 'not': 1.0, 'so': 1.0, 'after': 1.0, 'it': 2.0, 'this': 1.0, 'trouble': 1.0, 'but': 1.0, 'much': 2.0, 'we': 1.0, 'bought': 1.0, 'helpful': 1.0, 'cold': 1.0, 'than': 1.0, 'half': 1.0, 'water': 2.0, 'bottle': 1.0}
Word element => {'gets': 1.0, 'because': 1.0, 'hot': 1.0, 'very': 1.0, 'but': 1.0, 'website': 1.0, 'the': 2.0, 'dangerous': 1.0, 'not': 1.0, 'box': 1.0, 'buy': 1.0, 'do': 1.0, 'nothing': 1.0, 'for': 1.0, 'on': 2.0, 'about': 1.0, 'so': 1.0, 'bottles': 1.0, 'says': 1.0, 'glass': 1.0, 'this': 1.0}
Word element => {'mindspring': 1.0, 'me': 1.0, 'point': 1.0, 'should': 1.0, 'know': 1.0, 'which': 1.0, 'replacement': 1.0, 'be': 1.0, 'anyone': 1.0, 'others': 1.0, 'many': 1.0, 'this': 2.0, 'in': 1.0, 'ideas': 1.0, 'flaw': 1.0, 'clearly': 1.0, 'utz': 1.0, 'happening': 1.0, 'if': 1.0, 'same': 2.0, 'only': 1.0, 'has': 2.0, 'times': 1.0, 'with': 1.0, 'eats': 1.0, 'daily': 1.0, 'need': 1.0, 'major': 1.0, 'now': 1.0, 'day': 1.0, 'extra': 1.0, 'baby': 2.0, 'largest': 1.0, 'born': 1.0, 'have': 2.0, 'one': 1.0, 'months': 2.0, '3': 1.0, 'on': 1.0, 'com': 1.0, 'product': 1.0, 'for': 1.0, 'problem': 1.0, 'given': 2.0, 'it': 4.0, 'cereal': 1.0, 'first': 1.0, 'two': 1.0, 'i': 7.0, 'an': 1.0, 'my': 4.0, 'used': 1.0, 'part': 2.0, 'girl': 1.0, 'how': 1.0, '6': 1.0, 'shower': 1.0, 'of': 1.0, 'get': 1.0, 'pump': 3.0, 'after': 1.0, 'was': 3.0, 'as': 1.0, 'to': 3.0, 'lot': 1.0, 'crack': 1.0, 'at': 3.0, 'thing': 1.0, 'no': 1.0, 'milk': 1.0, 'isis': 1.0, 'and': 4.0, 'careful': 2.0, 'the': 7.0, 'is': 2.0, 'more': 1.0, 'loved': 1.0, 'complaints': 1.0, 'because': 1.0, 'maybe': 1.0, 'until': 1.0, 'let': 1.0, 'neck': 1.0, 'so': 1.0, 'bit': 1.0, 'began': 1.0, 'a': 5.0, 'could': 1.0, 'had': 2.0, 'purchased': 1.0, 'thought': 1.0, 'been': 2.0, 'second': 1.0}
Word element => {'out': 1.0, 'avent': 1.0, 'anything': 1.0, 'recommend': 1.0, 'confidently': 1.0, 'durable': 1.0, 'very': 1.0, 'found': 1.0, 'his': 1.0, 'pumping': 1.0, 'engorgement': 1.0, 'born': 1.0, 'bad': 1.0, 'first': 1.0, 'was': 1.0, 'he': 1.0, 'when': 1.0, 'feed': 2.0, 'preparing': 1.0, 'used': 1.0, 'whose': 1.0, 've': 2.0, 'solids': 1.0, 'point': 1.0, 'started': 1.0, 'not': 2.0, 'also': 1.0, 'plugged': 1.0, 'and': 8.0, 'in': 2.0, 'm': 5.0, 'both': 1.0, 'electric': 1.0, 'done': 1.0, 'my': 3.0, 'since': 1.0, 'quickly': 1.0, 'relieve': 1.0, 'medela': 1.0, 'but': 3.0, 'work': 2.0, 'lightweight': 1.0, 'can': 3.0, 'most': 2.0, '2': 1.0, 'mom': 1.0, 'any': 1.0, 'does': 1.0, 'than': 1.0, 'whether': 1.0, 'cereal': 1.0, 'use': 2.0, 'although': 1.0, 'milk': 2.0, 'just': 2.0, 'means': 1.0, 'need': 1.0, 'or': 2.0, 'i': 11.0, 'at': 4.0, 'is': 3.0, 'more': 1.0, 'claimed': 1.0, 'mini': 1.0, 'sure': 1.0, 'a': 5.0, 'pump': 10.0, 'go': 1.0, 'you': 2.0, 'someone': 1.0, 'reusable': 1.0, 'hear': 1.0, 'do': 1.0, 'much': 1.0, 'him': 1.0, 'it': 2.0, 'with': 5.0, 'else': 1.0, 'manual': 1.0, 'bottle': 1.0, 'this': 5.0, 'never': 1.0, 'bottles': 1.0, 'home': 1.0, 'sites': 1.0, 'saw': 1.0, 'must': 1.0, 'lots': 1.0, 'expected': 1.0, 'puts': 1.0, 'has': 1.0, 'problems': 1.0, 'breast': 1.0, 'that': 2.0, 'to': 10.0, 'pretty': 1.0, 'room': 1.0, 'stay': 1.0, 'if': 1.0, 'coordinated': 1.0, 'important': 1.0, 'cracked': 1.0, 'as': 2.0, 'silent': 1.0, 'disposable': 1.0, 'be': 2.0, 'lot': 1.0, 'greatest': 1.0, 'one': 3.0, 'months': 1.0, 'hand': 2.0, 'which': 1.0, 'other': 3.0, 'dad': 1.0, 'others': 1.0, 'have': 3.0, 'while': 1.0, 'nursing': 2.0, 'quite': 1.0, 'sorry': 1.0, 'had': 3.0, 'durability': 1.0, 'daughter': 1.0, 'now': 2.0, 'nursed': 1.0, 'for': 3.0, 'year': 1.0, 'anywhere': 2.0, 'problem': 1.0, 'during': 1.0, 'mix': 1.0, 'time': 1.0, 'person': 1.0, 'the': 6.0, 'of': 2.0, 'son': 1.0, '6': 1.0}
Word element => {'me': 1.0, 'for': 1.0, 'has': 1.0, 'don': 1.0, 'with': 1.0, 'often': 1.0, 'avent': 1.0, 'my': 1.0, 'wic': 1.0, 'and': 3.0, 'away': 1.0, 'from': 2.0, 'best': 1.0, 'comes': 1.0, 'is': 1.0, 'the': 6.0, 'one': 2.0, 'liked': 1.0, 'using': 1.0, 'i': 5.0, 'received': 1.0, 'had': 1.0, 'as': 1.0, 'to': 2.0, 'containers': 1.0, 'hospital': 1.0, 'perfect': 1.0, 'this': 1.0, 'shower': 1.0, 'it': 5.0, 'lot': 1.0, 'at': 1.0, 'pumps': 1.0, 'still': 1.0, 'baby': 1.0, 'been': 1.0, 'that': 1.0, 'collapsible': 1.0, 't': 1.0, 'a': 3.0, 's': 2.0, 'am': 1.0, 'you': 1.0, 'have': 1.0, 'small': 1.0, 'pump': 2.0, 'easy': 1.0, 'use': 2.0, 'also': 1.0, '1': 1.0, 'nice': 1.0, 'because': 1.0, '2': 1.0, 'can': 1.0, 'gift': 1.0, 'attach': 1.0, 'so': 1.0, 'bottle': 1.0, 'liners': 1.0, 'or': 3.0, 'throw': 1.0}
Word element => {'really': 1.0, 'has': 1.0, 'great': 1.0, 'avent': 1.0, 'sometimes': 1.0, 'leak': 1.0, 'nipple': 1.0, 'around': 1.0, 'disks': 1.0, 'on': 1.0, 'interchangeable': 1.0, 'wonderful': 1.0, 'also': 2.0, 'its': 2.0, 'soft': 1.0, 'works': 1.0, 'days': 1.0, 'interested': 1.0, 'breastmilk': 1.0, 'free': 1.0, 'insulated': 1.0, 'carry': 2.0, 'put': 1.0, 'ahead': 2.0, 'keep': 1.0, 'push': 1.0, 'or': 1.0, 'day': 1.0, 'eats': 1.0, 'for': 1.0, '10': 3.0, 'regularly': 1.0, 'in': 9.0, '4': 2.0, 'soon': 1.0, 'and': 7.0, 'isis': 1.0, 'month': 1.0, 'she': 6.0, 'started': 1.0, 'developed': 1.0, 'than': 2.0, 'oz': 4.0, 'pumping': 2.0, 'could': 1.0, 'small': 1.0, 'a': 7.0, 't': 1.0, 'system': 3.0, 'be': 1.0, 'disposable': 2.0, 'all': 1.0, 'an': 1.0, 'pour': 1.0, 'happy': 1.0, 'try': 2.0, 'freeze': 1.0, 'while': 1.0, 'got': 3.0, 'getting': 2.0, '1': 1.0, 'fresh': 1.0, '2': 2.0, 'ozs': 1.0, 'that': 6.0, 'hospital': 1.0, 'tote': 1.0, 'into': 2.0, 'the': 26.0, 'my': 2.0, 'each': 1.0, 'read': 1.0, 'two': 1.0, 'little': 3.0, 'very': 1.0, 'pregnant': 1.0, 'hoped': 1.0, 'about': 3.0, 'working': 1.0, 'first': 2.0, 'with': 3.0, 'manual': 1.0, 'can': 2.0, 'so': 10.0, 'weekend': 1.0, 'few': 1.0, 'bottle': 6.0, 'was': 3.0, 'doesn': 1.0, 'had': 2.0, 'regular': 1.0, '12': 1.0, 'more': 1.0, 'husband': 1.0, 'pump': 5.0, 'work': 3.0, 'freezer': 1.0, 'lids': 2.0, 'get': 2.0, 'skeptical': 1.0, 'i': 18.0, 'well': 4.0, 'still': 3.0, 'nursing': 1.0, 'gets': 1.0, 'stash': 1.0, 'older': 1.0, 'taking': 1.0, 'morning': 2.0, 'sealing': 1.0, 'am': 3.0, 'went': 1.0, 'back': 1.0, 'would': 2.0, 'weeks': 2.0, 'now': 2.0, 'from': 1.0, 'addition': 1.0, 'to': 7.0, 'least': 1.0, 'used': 1.0, 'trying': 2.0, 'at': 6.0, 'is': 5.0, 'like': 2.0, 'nipples': 2.0, 'it': 4.0, '9': 1.0, 'min': 2.0, 'bottles': 2.0, 'they': 1.0, 'milk': 5.0, 'just': 4.0, 'using': 1.0, 'bag': 3.0, 'we': 2.0, 'take': 2.0, 'then': 1.0, 'nurse': 1.0, 'use': 1.0, 'her': 2.0, 'what': 1.0, 'when': 2.0, 'breaks': 1.0, 're': 1.0, 'girl': 1.0, 'where': 1.0, 'sippy': 1.0, 'less': 2.0, '7': 1.0}
Word element => {'use': 1.0, 'able': 1.0, 'to': 1.0, 'was': 1.0, 'well': 1.0, 'pretty': 1.0, 'it': 1.0, 'only': 1.0, 'actually': 1.0, 'are': 1.0, 'other': 1.0, 'expensive': 1.0, 'through': 1.0, 'new': 1.0, 'is': 1.0, 'time': 1.0, 'pump': 3.0, 'your': 1.0, 'not': 1.0, 'making': 1.0, 'fits': 1.0, 'manufacturer': 1.0, 'soft': 1.0, 'for': 1.0, 'comfortable': 1.0, 'you': 1.0, 'i': 1.0, 'buy': 1.0, 'breast': 1.0, 'on': 1.0, 'silicone': 1.0, 'piece': 1.0, 'the': 6.0, 'replaceable': 1.0, 'an': 1.0, 'worked': 1.0, 'must': 1.0, 'kind': 1.0, 'parts': 1.0, 'that': 1.0, 'entirely': 1.0, 'available': 1.0, 'of': 1.0}
Word element => {'highly': 1.0, 'very': 1.0, 'truth': 1.0, 'tell': 1.0, 'but': 1.0, 'returned': 1.0, 'needed': 1.0, 'suction': 1.0, 'reduced': 1.0, 'flow': 1.0, 'pedal': 1.0, 'use': 1.0, 'dust': 1.0, 'up': 1.0, 'set': 1.0, 'of': 1.0, 'found': 1.0, 'this': 1.0, 'it': 6.0, 'happy': 2.0, 'eventually': 1.0, 'purchase': 1.0, 'my': 4.0, 'never': 1.0, 'with': 3.0, 'manual': 2.0, 'other': 2.0, 'have': 1.0, 'to': 3.0, 'any': 1.0, 'them': 1.0, 'baby': 1.0, 'isis': 2.0, 'and': 5.0, 'pumps': 4.0, 'an': 1.0, 'recommend': 1.0, 'was': 1.0, 'doesn': 1.0, 'being': 1.0, '3rd': 1.0, 'through': 1.0, 'did': 1.0, 'cylinder': 1.0, 'get': 1.0, 'pump': 4.0, 'they': 1.0, 'battery': 1.0, 'collecting': 1.0, 'i': 5.0, '4th': 1.0, 'that': 1.0, 'been': 1.0, 'electric': 2.0, 'expensive': 1.0, 'for': 1.0, 'son': 1.0, 'however': 1.0, 'borrowed': 1.0, 'cannot': 1.0, 'like': 1.0, 'not': 1.0, 'find': 1.0, 'the': 6.0, 'am': 1.0, 'someone': 1.0, 'hurt': 1.0, 'comes': 1.0, 'is': 2.0, 'going': 1.0, 'could': 1.0, 't': 1.0, 'a': 1.0, 'breeze': 1.0}
Word element => {'arrives': 1.0, 'second': 1.0, 'when': 1.0, 'month': 1.0, 'again': 1.0, 'using': 1.0, 'be': 1.0, 'll': 1.0, 'having': 1.0, 'cups': 1.0, 'to': 5.0, 'as': 1.0, 'and': 4.0, 'talked': 1.0, 'was': 4.0, 'minutes': 1.0, 'bottles': 1.0, 'use': 3.0, 'would': 1.0, 've': 2.0, 'expensive': 1.0, 'say': 1.0, 'comfortable': 1.0, 'bought': 2.0, 's': 1.0, 'along': 1.0, 't': 3.0, 'a': 4.0, 'pump': 5.0, 'go': 2.0, 'could': 1.0, 'babies': 1.0, 'pregnant': 1.0, 'but': 2.0, 'name': 1.0, 'recommend': 1.0, 'together': 1.0, 'everyone': 1.0, 'now': 1.0, 'baby': 2.0, 'is': 2.0, 'at': 1.0, 'time': 1.0, 'friends': 1.0, 'so': 2.0, 'only': 1.0, 'much': 1.0, 'it': 6.0, 'first': 2.0, 'with': 3.0, 'manual': 1.0, 'this': 5.0, 'while': 1.0, 'hard': 1.0, 'didn': 2.0, 'price': 1.0, 'of': 3.0, 'the': 9.0, 'easy': 1.0, 'know': 2.0, 'my': 4.0, 'great': 3.0, 'avent': 1.0, 'have': 1.0, 'through': 1.0, 'bunch': 1.0, 'pumps': 2.0, 'never': 1.0, 'used': 1.0, 'all': 3.0, 'an': 1.0, 'electric': 2.0, 'don': 1.0, 'washing': 1.0, 'compares': 1.0, 'back': 1.0, 'people': 1.0, 'better': 1.0, 'on': 1.0, 'market': 1.0, '5': 2.0, 'very': 2.0, 'too': 1.0, 'one': 2.0, 'lot': 1.0, 'happy': 1.0, 'needs': 1.0, 'met': 1.0, 'for': 2.0, '10': 1.0, 'than': 2.0, 'apart': 1.0, 'ounces': 1.0, 'in': 2.0, 'sippy': 1.0, 'less': 1.0, 'travels': 1.0, 'pieces': 1.0, 'come': 1.0, 'because': 1.0, 'easily': 2.0, 'i': 13.0, 'well': 2.0, 'how': 1.0, 'item': 1.0}
Word element => {'now': 1.0, 'market': 1.0, 'there': 1.0, 'would': 1.0, 'still': 1.0, 'nurser': 1.0, 'because': 2.0, 'recomend': 1.0, 'than': 1.0, 'that': 1.0, 'regular': 1.0, 'of': 1.0, 'out': 1.0, 'ran': 1.0, 'when': 1.0, 'just': 2.0, 'are': 1.0, 'better': 1.0, 'joke': 1.0, 'should': 1.0, 'on': 1.0, 'playtex': 1.0, 'pump': 5.0, 'every': 1.0, 'convienient': 1.0, 'nipples': 1.0, 'hurts': 1.0, 'ok': 1.0, 'must': 1.0, 'disposables': 1.0, 'i': 8.0, 'right': 1.0, 'worse': 1.0, 'it': 5.0, 'painful': 1.0, 'this': 2.0, 'complain': 1.0, 'with': 1.0, 'bought': 2.0, 'be': 1.0, 'not': 2.0, 'after': 2.0, 'bottle': 1.0, 'time': 1.0, 'so': 2.0, 'nothing': 1.0, 'probably': 1.0, 'and': 1.0, 'reviews': 1.0, 'disposable': 2.0, 'but': 2.0, 'all': 1.0, 'fits': 1.0, 'avent': 2.0, 'my': 1.0, 'the': 6.0, 'ones': 1.0, 'is': 1.0, 'more': 2.0, 'a': 1.0, 's': 2.0, 't': 1.0, 'wonderful': 1.0, 'since': 1.0, 'cilicone': 1.0, 'other': 1.0, 'works': 1.0, 'only': 1.0, 'much': 2.0, 'also': 1.0, 'didn': 1.0, 'cup': 1.0, 'liners': 3.0, 'reading': 1.0, 'like': 2.0, 'using': 1.0}
Word element => {'how': 1.0, 'knows': 1.0, 'who': 1.0, 'now': 1.0, 'long': 1.0, 'on': 1.0, 'stock': 1.0, 'purchasing': 1.0, 'state': 1.0, 'make': 1.0, 'do': 1.0, 'they': 2.0, 'support': 1.0, 'claims': 1.0, 'anytime': 1.0, 'replacement': 2.0, 'reviews': 1.0, 'reading': 1.0, 'after': 1.0, 'through': 1.0, 'directly': 1.0, 'forget': 1.0, 'went': 1.0, 'pump': 5.0, 'also': 1.0, 'missing': 1.0, 'cream': 1.0, 'inconvenienced': 1.0, 'hand': 1.0, 'however': 1.0, 'easy': 2.0, 'know': 1.0, 'will': 2.0, 'could': 1.0, 'but': 1.0, 'advertised': 1.0, 'work': 2.0, 'as': 4.0, 'least': 1.0, 'quiet': 1.0, 'about': 1.0, 'up': 1.0, 'pleased': 1.0, 'frustrated': 1.0, 'little': 1.0, 'been': 1.0, 'that': 4.0, 'breastfeeding': 2.0, 'not': 7.0, 'my': 4.0, 'me': 1.0, 'and': 4.0, 'lose': 1.0, 'when': 2.0, 'local': 1.0, 'you': 2.0, 'for': 4.0, 'can': 1.0, 'so': 2.0, 'fix': 1.0, 'mothers': 1.0, 'part': 1.0, 'while': 1.0, 'have': 5.0, 'confident': 1.0, 'a': 6.0, 'small': 1.0, 'reviewed': 1.0, 'current': 1.0, 'product': 2.0, 'year': 1.0, 'rather': 1.0, 'necessary': 1.0, 'other': 1.0, 'online': 1.0, 'feel': 2.0, 'until': 1.0, 'this': 2.0, 'am': 4.0, 'lost': 1.0, 'troubles': 1.0, 'recently': 1.0, 'with': 3.0, 'stores': 1.0, 'it': 5.0, 'important': 2.0, 'many': 1.0, 'of': 2.0, 'the': 5.0, 'parts': 4.0, 'i': 10.0, 'involved': 1.0, 'even': 1.0, 'tiniest': 1.0, 'are': 1.0, 'working': 1.0, 'mother': 1.0, 'trying': 1.0, 'continue': 1.0, 'son': 1.0, 'is': 6.0, 'at': 2.0, 'avent': 2.0, 'option': 1.0, 'one': 1.0, 'age': 1.0, 'before': 1.0, 'electric': 1.0, 'to': 9.0, 'realist': 1.0, 'white': 1.0, 'soon': 1.0, 'disk': 1.0, 'feeling': 1.0, 'find': 1.0, 'company': 1.0, 'purchase': 2.0, 'only': 2.0, 'function': 1.0, 'immediately': 1.0, 'never': 1.0, 'some': 1.0, 'replacements': 1.0, 'nothing': 1.0, 'out': 1.0}
Word element => {'easier': 1.0, 'makes': 1.0, 'wonderful': 1.0, 'clean': 1.0, 'disassemble': 1.0, 'position': 1.0, 'once': 1.0, 'but': 1.0, 'carpal': 1.0, 'up': 1.0, 'as': 1.0, 'crazy': 1.0, 'breastfeeding': 1.0, 'pumping': 1.0, 'would': 1.0, 'efficient': 1.0, 'be': 2.0, 'find': 3.0, 'expense': 1.0, 'has': 1.0, 'begin': 1.0, 'thing': 2.0, 'whole': 1.0, 'undue': 1.0, 'express': 2.0, 'about': 1.0, 'pumps': 1.0, 'pain': 2.0, 'kids': 1.0, 'this': 2.0, 'soft': 1.0, 'use': 1.0, 'on': 4.0, 'think': 2.0, 'is': 6.0, 'say': 1.0, 'time': 1.0, 'pump': 4.0, '11': 1.0, 'you': 3.0, 'between': 1.0, 'hold': 1.0, 'experiences': 1.0, 'nice': 1.0, 'two': 1.0, 'avent': 1.0, 'besides': 1.0, 'of': 6.0, 'the': 9.0, 'lots': 1.0, 'cushion': 1.0, 'best': 1.0, 'price': 1.0, 'both': 1.0, 'with': 2.0, 'to': 5.0, 'back': 1.0, 'sleep': 1.0, 'least': 1.0, 'other': 1.0, 'all': 2.0, 'marvel': 1.0, 'or': 1.0, 'years': 1.0, 'let': 1.0, 'and': 5.0, 'difference': 1.0, 'tunnel': 1.0, 'tender': 1.0, 'a': 4.0, 's': 1.0, 'breast': 2.0, 'that': 5.0, 'well': 2.0, 'i': 12.0, 'involved': 1.0, 'just': 2.0, 'why': 1.0, 'didn': 1.0, 'even': 1.0, 'technology': 1.0, 'easy': 3.0, 'know': 1.0, 'hand': 1.0, 'working': 1.0, 'first': 1.0, 'super': 1.0, 'hear': 1.0, 'like': 2.0, 'cheap': 1.0, 'for': 1.0, 'really': 1.0, 'can': 3.0, 't': 2.0, 'beat': 1.0, 'especially': 1.0, 'down': 1.0, 'if': 1.0, 'free': 1.0, 'want': 1.0, 'my': 3.0, 'me': 2.0, 'those': 1.0, 'biggest': 1.0, 'only': 1.0, 'closed': 1.0, 'case': 1.0, 'occaisional': 1.0, 'massage': 1.0, 'changed': 1.0, 'quick': 1.0, 'breasts': 2.0, 'it': 6.0, 'thought': 1.0, 'very': 1.0, 'lot': 1.0, 'one': 1.0, 'in': 2.0, 'continue': 1.0, '15': 1.0, 'girls': 1.0, 'minutes': 1.0}
Word element => {'very': 1.0, 'with': 1.0, 'comes': 1.0, 'that': 1.0, 'case': 1.0, 'carrying': 1.0, 'love': 1.0, 'on': 2.0, 'right': 1.0, 'wanted': 1.0, 'collect': 1.0, 'child': 1.0, 'descreet': 1.0, 'the': 5.0, 'my': 2.0, 'stikk': 1.0, 'nipples': 1.0, 'berasrtfeed': 1.0, 'couldn': 1.0, 'and': 2.0, 'great': 1.0, 'cracked': 1.0, 'this': 1.0, 'it': 3.0, 'first': 1.0, 'to': 4.0, 'as': 2.0, 'worked': 1.0, 'latch': 1.0, 'shortly': 1.0, 'because': 1.0, 'but': 1.0, 'way': 1.0, 'birth': 1.0, 'went': 1.0, 'cheapest': 1.0, 'so': 1.0, 'i': 6.0, 'long': 1.0, 'after': 1.0, 'ounces': 1.0, 't': 1.0, 'could': 1.0, 'minutes': 1.0, 'was': 2.0, 'store': 1.0, 'purchased': 1.0, 'try': 1.0, 'get': 1.0, 'pump': 1.0, 'able': 1.0, '10': 2.0, 'in': 1.0, 'also': 1.0, 'about': 1.0}
Word element => {'enough': 1.0, 'stressed': 1.0, 'directions': 1.0, 'listed': 1.0, 'entire': 1.0, 'if': 1.0, 'together': 1.0, 'do': 1.0, 'and': 2.0, 'breast': 1.0, 'use': 1.0, 'easy': 1.0, 'but': 1.0, 'crack': 1.0, 'will': 1.0, 'put': 1.0, 'an': 1.0, 'be': 1.0, 'assemble': 1.0, 'to': 3.0, 'adapter': 1.0, 'pump': 4.0, 'must': 1.0, 'outstanding': 1.0, 'it': 1.0, 'this': 2.0, 'clean': 1.0, 'careful': 1.0, 'is': 2.0, 'overtighten': 1.0, 'just': 1.0, 'not': 2.0, 'replace': 1.0, 'the': 5.0, 'in': 1.0, 'body': 2.0, 'bottle': 1.0, 'when': 1.0, 'you': 3.0}
Word element => {'he': 1.0, 'ones': 1.0, 'tried': 1.0, 'untill': 1.0, 'take': 1.0, 'my': 1.0, 'good': 2.0, 'really': 2.0, 'nipples': 2.0, 'just': 1.0, 'thing': 1.0, 'puchashing': 1.0, 'playtex': 1.0, 'on': 1.0, 'have': 2.0, 'recently': 1.0, 'pump': 2.0, 'they': 1.0, 'becasue': 1.0, 'baby': 1.0, 'them': 1.0, 'i': 4.0, 'this': 5.0, 'it': 3.0, 'did': 2.0, 'in': 1.0, 'the': 3.0, 'who': 1.0, 'at': 1.0, 'let': 1.0, 'pumps': 1.0, 'me': 1.0, 'not': 4.0, 'work': 1.0, 'past': 1.0, 'refused': 1.0, 'like': 1.0, 'gotten': 1.0, 'pumping': 1.0, 'breast': 1.0, 'tell': 1.0, 'other': 1.0, 'hurt': 2.0, 'when': 1.0, 'you': 1.0, 'a': 1.0, 'one': 4.0, 'bought': 1.0, 'planning': 1.0, 'goddes': 1.0, 'more': 1.0, 'reccomend': 1.0, 'is': 2.0, 'comes': 1.0, 'any': 1.0, 'all': 1.0, 'to': 3.0, 'works': 1.0, 'does': 1.0, 'awesome': 1.0, 'would': 2.0, 'and': 4.0, 'isis': 1.0, 'moms': 1.0, 'aven': 1.0, 'are': 2.0}
Word element => {'used': 1.0, 'be': 1.0, 'more': 2.0, 'will': 1.0, 'time': 1.0, 'buy': 2.0, 'to': 1.0, 'want': 1.0, 'on': 1.0, 'price': 1.0, 'don': 1.0, 'one': 1.0, 'months': 1.0, 'bought': 1.0, 'i': 6.0, 'substantial': 1.0, 'weighs': 1.0, 'next': 1.0, 'been': 1.0, 'that': 3.0, 'it': 2.0, 'this': 1.0, 'with': 1.0, 'he': 1.0, 'the': 4.0, 'another': 1.0, 'my': 2.0, 'product': 1.0, 'for': 4.0, 'son': 2.0, 'problems': 1.0, 'was': 2.0, 'thought': 1.0, 'had': 1.0, 't': 1.0, 'a': 5.0, 'has': 1.0, 'fair': 1.0, 'good': 1.0, 'almost': 1.0, 'no': 1.0, 'can': 1.0, 'money': 1.0, 'past': 1.0, 'but': 1.0, 'surprised': 1.0, 'just': 1.0, 'yesterday': 1.0, 'saw': 1.0, 'sticker': 1.0, 'of': 1.0, 'side': 1.0, 'said': 1.0, 'strap': 1.0, 'using': 1.0, 'table': 2.0, '20': 1.0, 'longer': 1.0, '8': 1.0, 'lb': 1.0, 'now': 1.0, 'limit': 1.0, 'weight': 1.0, 'and': 1.0}
Word element => {'used': 1.0, 'with': 1.0, 'had': 1.0, 'though': 1.0, 'pad': 1.0, 'thicker': 1.0, 'get': 1.0, 'may': 1.0, 'rash': 1.0, 'of': 2.0, 'want': 1.0, 'everything': 1.0, 'you': 3.0, 'diapers': 1.0, 'problems': 1.0, 'handy': 1.0, 'powder': 1.0, 'problem': 1.0, 'things': 1.0, 'space': 1.0, 'have': 2.0, 'two': 1.0, 'i': 3.0, 'kids': 1.0, 'this': 3.0, 'it': 2.0, 'dress': 1.0, 'shelves': 1.0, 'love': 1.0, 'for': 3.0, 'one': 1.0, 'ointment': 1.0, 'like': 1.0, 'table': 2.0, 'never': 1.0, 'lots': 1.0, 'baby': 1.0, 'has': 2.0, 'ample': 1.0, 'keeping': 1.0, 'wipes': 1.0, 'need': 1.0, 'toys': 1.0, 'babies': 1.0, 'changing': 3.0, 'tee': 1.0, 'shirts': 1.0, 'burp': 1.0, 'cloths': 1.0, 'put': 1.0, 'on': 1.0, 'without': 1.0, 'the': 2.0, 'and': 3.0, 'still': 1.0, 'room': 2.0, 'a': 3.0, 'few': 1.0, 'any': 1.0, 'to': 2.0, 'can': 1.0, 'change': 1.0}
Word element => {'long': 1.0, 'extra': 1.0, 'spend': 1.0, 'priced': 1.0, 'moderately': 1.0, 'problem': 1.0, 'have': 1.0, 'monitored': 1.0, 'be': 1.0, 'need': 1.0, 'loosen': 1.0, 'of': 1.0, 'with': 1.0, 'piece': 1.0, 'sturdy': 1.0, 'not': 1.0, 'safety': 1.0, 'quality': 1.0, 'screws': 1.0, 'baby': 2.0, 'about': 1.0, 'concerned': 1.0, '20': 1.0, 'still': 1.0, 'out': 1.0, 'a': 4.0, 's': 1.0, 'we': 3.0, 'pounds': 2.0, 'periodically': 1.0, 'furniture': 1.0, 'on': 2.0, 'this': 3.0, 'it': 3.0, 'item': 1.0, 'point': 1.0, 'you': 3.0, 'plan': 1.0, 'is': 4.0, 'tightening': 1.0, 'the': 7.0, 'diaper': 1.0, 'better': 2.0, 'same': 1.0, 'if': 2.0, 'used': 1.0, 'works': 1.0, 'to': 2.0, 'as': 1.0, 'our': 1.0, 'weight': 2.0, 'time': 2.0, 'smaller': 1.0, 're': 2.0, 'changing': 2.0, 'that': 1.0, 'babies': 1.0, 'safely': 1.0, 'limits': 1.0, 'instructions': 1.0, 'use': 3.0, 'instead': 1.0, 'glider': 1.0, 'daughter': 1.0, '27': 1.0, 'limit': 1.0, 'now': 1.0, 'and': 3.0, 'table': 3.0, 'using': 1.0, 'often': 1.0, 'bed': 1.0, 'for': 2.0, 'money': 1.0, 'can': 1.0, 'but': 2.0, 'well': 1.0, 'storing': 1.0, 'supplies': 1.0}
Word element => {'son': 1.0, 'part': 1.0, 'pad': 1.0, 'did': 1.0, 'speak': 1.0, 'belt': 1.0, 'issues': 1.0, 'other': 1.0, 'loosening': 1.0, 'screws': 1.0, 'years': 1.0, 'comfortable': 1.0, 'padded': 1.0, 'spend': 1.0, 'had': 1.0, 'wanted': 1.0, 'in': 1.0, 'of': 1.0, 'i': 8.0, 'haven': 1.0, 'table': 2.0, 'hold': 1.0, 'something': 1.0, 'for': 4.0, 'problems': 1.0, 'that': 3.0, 'changing': 3.0, 'w': 3.0, 'set': 1.0, 'used': 2.0, 'to': 3.0, 'any': 1.0, 'a': 2.0, 't': 3.0, 'the': 3.0, 'nicely': 1.0, 'can': 1.0, 'but': 2.0, 'money': 1.0, '2': 1.0, 'this': 2.0, 'covers': 1.0, 'it': 2.0, 'never': 1.0, 'reason': 1.0, 'saw': 1.0, 'durable': 1.0, 'yes': 1.0, 'no': 2.0, 'shelves': 1.0, 'won': 1.0, 'over': 1.0, 'britannica': 1.0, 'more': 1.0, 'comes': 1.0, 'holds': 1.0, 'or': 1.0, 'encyclopedia': 1.0, 'supplies': 1.0, 'purchase': 1.0, 'my': 2.0, 'lot': 1.0, 'keep': 1.0, 'make': 1.0, 'stuff': 1.0, 'so': 1.0, 'baskets': 1.0, 'have': 2.0, 'organizational': 1.0, 'purposes': 1.0}
Word element => {'guidelines': 1.0, 'other': 2.0, 'suggest': 1.0, 'wonderful': 1.0, 'instructions': 1.0, 'by': 1.0, 'putting': 1.0, 'that': 1.0, 'changing': 2.0, 'together': 2.0, 'at': 1.0, 'you': 1.0, 'again': 1.0, 'am': 1.0, 'but': 1.0, 'furnishings': 1.0, 'instruction': 1.0, 'wood': 1.0, 'look': 1.0, 'would': 2.0, 'sure': 1.0, 'wasn': 1.0, 'buckling': 1.0, 'alternatives': 1.0, 'supplies': 1.0, 'baby': 1.0, 'clothes': 1.0, 'her': 1.0, 'highly': 1.0, 'registry': 1.0, 'with': 1.0, 'of': 1.0, 'shower': 1.0, 'this': 4.0, 'placed': 1.0, 'design': 1.0, 'on': 1.0, 'impressed': 2.0, 'cherry': 1.0, 'and': 5.0, 'i': 11.0, 'how': 2.0, 'received': 1.0, 'try': 1.0, 'considering': 1.0, 'much': 1.0, 'ever': 1.0, 'person': 1.0, 'purchase': 1.0, 'underneath': 1.0, 'my': 1.0, 'without': 2.0, 'the': 6.0, 'woodwork': 1.0, 'well': 1.0, 'dressing': 1.0, 't': 2.0, 'a': 2.0, 'nicer': 1.0, 'managed': 1.0, 'honestly': 1.0, 'gift': 1.0, 'protect': 1.0, 'very': 1.0, 'have': 1.0, 'must': 2.0, 'downside': 1.0, 'hold': 1.0, 'table': 3.0, 'was': 2.0, 'from': 1.0, 'seeing': 1.0, 'is': 1.0, 'say': 2.0, 'it': 8.0, 'looks': 2.0, 'in': 1.0, 'than': 1.0, 'installed': 1.0, 'even': 1.0, 'safety': 1.0, 'brackets': 1.0, 'haven': 1.0, 'weight': 1.0, 'up': 1.0, 'as': 1.0, 'to': 4.0, 'all': 2.0}
Word element => {'it': 1.0, 'looks': 1.0, 'with': 1.0, 'sturdier': 1.0, 'against': 1.0, 'anyone': 1.0, 'product': 1.0, 'caution': 1.0, 'would': 1.0, 'hurt': 1.0, 'wasn': 1.0, 'thankfully': 1.0, 'problem': 1.0, 'to': 1.0, 'greatly': 1.0, 'see': 1.0, 'that': 3.0, 'changing': 1.0, 'very': 1.0, 'son': 2.0, 'looking': 1.0, 'cheaply': 1.0, 'i': 4.0, 'about': 1.0, 'thing': 2.0, 'whole': 1.0, 'makes': 1.0, 'old': 1.0, 'm': 1.0, 'surprised': 1.0, 'can': 1.0, 'but': 2.0, 'these': 1.0, 's': 1.0, 'a': 2.0, 't': 3.0, 'changed': 1.0, 'model': 2.0, 'reviews': 1.0, 'they': 2.0, 'through': 1.0, 'updated': 1.0, 'this': 3.0, 'terribly': 1.0, 'using': 1.0, 'table': 1.0, 'nice': 1.0, 'until': 1.0, 'mention': 1.0, 'was': 3.0, 'unsturdy': 1.0, 'heavier': 1.0, 'the': 4.0, 'tightening': 1.0, 'constantly': 1.0, 'screws': 1.0, 'haven': 2.0, 'made': 1.0, 'let': 1.0, 'contributed': 1.0, 'me': 1.0, 'also': 1.0, '8': 1.0, 'collapsed': 1.0, 'before': 1.0, 'even': 1.0, 'company': 1.0, 'my': 2.0, 'months': 1.0, 'wood': 2.0}
Word element => {'supplies': 1.0, 'holding': 1.0, 'convenient': 1.0, 'quite': 1.0, 'point': 1.0, 'placed': 1.0, 'focal': 1.0, 'really': 1.0, 'crib': 1.0, 'opted': 1.0, 'instead': 1.0, 'needed': 1.0, 'fancy': 1.0, 'that': 2.0, 'baskets': 1.0, 'so': 1.0, 'nursery': 1.0, 'consignment': 1.0, 'expensive': 1.0, 'for': 2.0, 'etc': 1.0, 'two': 1.0, 'i': 2.0, 'regarding': 1.0, 'shop': 1.0, 'in': 1.0, 'purchase': 1.0, 'my': 1.0, 'solid': 1.0, 'serves': 1.0, 'the': 5.0, 'found': 1.0, 'this': 1.0, 'it': 2.0, 'more': 1.0, 'is': 3.0, 'want': 1.0, 'laws': 1.0, 'good': 2.0, 'because': 1.0, 'concerns': 1.0, 'hold': 1.0, 'which': 1.0, 'comment': 1.0, 'table': 5.0, 'received': 1.0, 'has': 1.0, 'dressing': 4.0, 'are': 1.0, 'reviewers': 1.0, 'value': 1.0, 't': 3.0, 'a': 7.0, 'we': 3.0, 'other': 1.0, 'those': 2.0, 'shelves': 2.0, 'about': 1.0, 'assembly': 1.0, 'don': 1.0, 'can': 1.0, 'money': 1.0, 'purpose': 1.0, 'to': 3.0, 'and': 2.0, 'at': 1.0, 'lot': 1.0, 'who': 1.0, 'of': 2.0, 'on': 2.0, 'diapers': 1.0, 'didn': 1.0, 'spend': 1.0, 'feel': 1.0}
Word element => {'available': 1.0, 'cheapest': 1.0, 'used': 1.0, 'obviously': 1.0, 'quality': 1.0, 'with': 1.0, 'were': 1.0, 'overall': 1.0, 'together': 1.0, 'not': 1.0, 'board': 1.0, 'fiber': 1.0, 'of': 1.0, 'out': 1.0, 'disappointed': 1.0, 'weight': 1.0, 'made': 1.0, 'shelves': 2.0, 'consider': 1.0, 'changing': 1.0, 'and': 2.0, 'hold': 1.0, 'table': 1.0, 'using': 1.0, 'this': 1.0, 'it': 3.0, 'for': 4.0, 'cheap': 1.0, 'putting': 1.0, 'heavier': 1.0, 'the': 6.0, 'nicer': 1.0, 'are': 1.0, 'do': 2.0, 'much': 1.0, 'awhile': 1.0, 'but': 3.0, 'frame': 1.0, 'to': 1.0, 'is': 2.0, 'really': 1.0, 'nice': 1.0, 'confusing': 1.0, 'need': 1.0, 'price': 1.0, 'materials': 1.0, 'don': 1.0, 'they': 3.0, 'something': 1.0, 'we': 1.0, 'might': 1.0, 't': 1.0, 'a': 1.0, 'very': 1.0, 'little': 1.0, 'will': 1.0, 'also': 1.0, 'have': 1.0, 'last': 1.0, 'good': 1.0, 'instructions': 1.0}
Word element => {'highly': 1.0, 'would': 1.0, 'than': 1.0, 'other': 1.0, 'up': 1.0, 'pick': 1.0, 'you': 1.0, 'when': 1.0, 'be': 1.0, 'rungs': 1.0, 'between': 1.0, 'in': 1.0, 'feet': 1.0, 'will': 1.0, 'just': 1.0, 'use': 1.0, 'sturdy': 1.0, 'his': 1.0, 'even': 1.0, 'didn': 1.0, 'together': 1.0, 'was': 1.0, 'to': 3.0, 'i': 5.0, 'gret': 1.0, 'put': 1.0, 'think': 1.0, 'good': 1.0, 'price': 1.0, 'storage': 1.0, 'helps': 1.0, 'them': 1.0, 'baby': 1.0, 'it': 2.0, 'this': 2.0, 'looked': 1.0, 'only': 1.0, 'careful': 1.0, 'hands': 1.0, 'the': 6.0, 'for': 1.0, 'love': 1.0, 'product': 2.0, 'go': 1.0, 't': 1.0, 'a': 2.0, 'underneath': 1.0, 'at': 1.0, 'keep': 1.0, 'everything': 1.0, 'so': 1.0, 'organized': 1.0, 'easy': 1.0, 'get': 1.0, 'and': 1.0, 'very': 1.0, 'directions': 1.0, 'bad': 1.0, 'thing': 1.0, 'can': 1.0, 'reccomend': 1.0, 'is': 2.0, 'say': 1.0, 'box': 1.0, 'that': 2.0}
Word element => {'all': 1.0, 'have': 1.0, 'pad': 1.0, 'item': 1.0, 'shelves': 1.0, 'for': 1.0, 'love': 1.0, 'the': 3.0, 'great': 1.0, 'must': 1.0, 'changing': 1.0, 'a': 1.0, 'nurseries': 1.0, 'nursery': 1.0, 'on': 1.0, 'it': 1.0, 'with': 1.0, 'easy': 1.0, 'table': 1.0, 'and': 1.0, 'comes': 1.0, 'to': 1.0, 'clean': 1.0, 'that': 1.0}
Word element => {'again': 1.0, 'lynd': 1.0, 'would': 1.0, 'penny': 1.0, 'worth': 1.0, 'is': 1.0, 'her': 1.0, 'to': 1.0, 'purchase': 1.0, 'every': 1.0, 'sturdy': 1.0, 'purchased': 1.0, 'daughter': 1.0, 'for': 1.0, 'crib': 1.0, 'in': 1.0, 'my': 1.0, 'and': 2.0, 'changing': 2.0, 'match': 1.0, 'jenny': 1.0, 'it': 4.0, 'this': 2.0, 'i': 2.0, 'arrived': 1.0, 'on': 1.0, 'flaws': 1.0, 'condition': 1.0, 'loves': 1.0, 'good': 1.0, 'has': 1.0, 'spent': 1.0, 'quickly': 1.0, 'no': 1.0, 'table': 2.0, 'she': 1.0}
Word element => {'time': 1.0, 'did': 1.0, 'last': 1.0, 'didnt': 1.0, 'comming': 1.0, 'cradle': 1.0, 'especially': 1.0, 'crib': 1.0, 'jenny': 1.0, 'don': 1.0, 'due': 1.0, 'may': 1.0, 'my': 1.0, 'money': 1.0, 'purchasing': 1.0, 'definately': 1.0, 'will': 1.0, 'stacked': 1.0, 'we': 5.0, 'a': 4.0, 'should': 1.0, 'you': 1.0, 'great': 2.0, 'big': 2.0, '1': 1.0, 'been': 1.0, 'that': 2.0, 'has': 2.0, 'have': 5.0, 'all': 6.0, 'with': 3.0, 'it': 3.0, 'this': 1.0, 'kids': 5.0, 'in': 3.0, 'said': 1.0, 'complaining': 1.0, 'home': 1.0, 'long': 1.0, 'near': 1.0, 'on': 1.0, 'stuff': 1.0, '12': 1.0, 'lind': 1.0, 'infant': 1.0, '6': 1.0, 'there': 2.0, 'spaces': 1.0, 'confidence': 1.0, 'people': 1.0, 'baby': 1.0, 'many': 1.0, 'to': 1.0, 'pretty': 1.0, 'really': 1.0, 'every': 2.0, 'sturdy': 1.0, 'products': 1.0, 'year': 1.0, 'not': 1.0, 'diapers': 1.0, 'are': 1.0, 'run': 1.0, 'i': 5.0, 'little': 1.0, 'two': 1.0, '4': 2.0, 'being': 1.0, 'loose': 1.0, 'same': 1.0, 'tipping': 1.0, 'middle': 1.0, 'see': 1.0, 'surprised': 1.0, 'licensed': 1.0, 'single': 1.0, 'group': 1.0, 'daycare': 2.0, 'and': 7.0, 'front': 1.0, 'clothes': 2.0, 'screws': 1.0, 'for': 5.0, 'im': 1.0, 'each': 1.0, 'the': 18.0, 'of': 2.0, 'these': 1.0, 'about': 1.0, 'behind': 1.0, 'world': 1.0, 'or': 1.0, 'bottom': 1.0, 'but': 2.0, 'thing': 1.0, '2': 2.0, 'change': 1.0, 'only': 1.0, 'too': 1.0, 'one': 3.0, 't': 1.0, 'spare': 2.0, 'tightened': 1.0, 'rest': 1.0, 'space': 1.0, 'trisha': 1.0, 'toddlers': 1.0, 'at': 1.0, 'is': 2.0, 'used': 1.0, 'also': 1.0, 'using': 1.0, 'like': 1.0, 'get': 1.0, 'changed': 1.0, 'day': 1.0, 'some': 1.0, 'never': 2.0, 'olds': 1.0, 'shelf': 2.0, 'needed': 1.0, 'be': 2.0, 'here': 1.0, 'infants': 1.0, 'weekday': 1.0, 'though': 1.0, 'condone': 1.0, 'problem': 2.0, 'anyway': 1.0}
Word element => {'complaints': 1.0, 'have': 1.0, 'stay': 1.0, 'they': 1.0, 'are': 1.0, 'long': 1.0, 'mattress': 2.0, 'nurse': 1.0, 'fits': 1.0, 'my': 1.0, 'love': 1.0, 'it': 3.0, 'no': 1.0, 'safe': 1.0, 'slip': 1.0, 'as': 2.0, 'very': 1.0, 'and': 1.0, 'snug': 1.0, 'i': 2.0, 'is': 1.0, 'said': 1.0, 'on': 2.0, 'won': 1.0, 'the': 1.0, 't': 1.0, 'hospital': 1.0, 'off': 1.0, 'a': 1.0, 'in': 1.0, 'soft': 1.0, 'pads': 1.0}
Word element => {'washings': 1.0, 'mean': 1.0, 'to': 1.0, 'the': 1.0, 'using': 1.0, 'messes': 1.0, 'pad': 1.0, 'saved': 1.0, 'crib': 1.0, 'been': 1.0, 'it': 2.0, 'i': 2.0, 'has': 1.0, 'up': 1.0, 'of': 1.0, 'and': 3.0, 'me': 1.0, 'have': 1.0, 'all': 1.0, 'holds': 1.0, 'matress': 1.0, 'from': 1.0, 'sorts': 1.0, 'many': 2.0, 'is': 1.0, 'ultrasoft': 1.0, 'absorbent': 1.0}
Word element => {'d': 1.0, 'wish': 1.0, 'recommend': 1.0, 'highly': 1.0, 'anyway': 1.0, 'start': 1.0, 'corners': 1.0, 'fit': 1.0, 'trying': 1.0, 'on': 1.0, 'off': 1.0, 'tug': 1.0, 'pull': 1.0, 'had': 1.0, 'to': 4.0, 'one': 1.0, 'yet': 1.0, 'the': 4.0, 'get': 1.0, 'and': 1.0, 'perfectly': 1.0, 'i': 4.0, 'pad': 1.0, 'only': 1.0, 'it': 4.0, 'this': 3.0, 'mattress': 2.0, 'from': 1.0, 'best': 2.0, 'without': 1.0, 'seen': 1.0, 'is': 2.0, 've': 1.0, 'having': 1.0, 'thick': 1.0, 'soft': 1.0, 'pop': 1.0, 'washes': 1.0, 'but': 1.0, 'have': 1.0, 'all': 1.0, 'fits': 1.0, 'beautifully': 1.0, 'of': 2.0, 'crib': 1.0}
Word element => {'little': 1.0, 'my': 1.0, 'going': 1.0, 'later': 1.0, 'years': 1.0, 'ones': 1.0, '2': 1.0, 'update': 1.0, 'i': 1.0, 'mine': 1.0, 'love': 1.0, 'bed': 2.0, 'used': 1.0, 'be': 1.0, 'to': 1.0, 'on': 3.0, 'pretty': 1.0, 'or': 1.0, 'still': 1.0, 'cute': 1.0, 'go': 1.0, 'strong': 1.0, 'just': 1.0, 'not': 1.0, 's': 1.0, 'it': 1.0, 'notch': 1.0, 'quaility': 1.0, 'item': 2.0, 'can': 1.0, 'no': 1.0, 'top': 1.0, 'that': 1.0, 'glamorous': 1.0, 'a': 3.0, 'thru': 1.0, 'many': 1.0, 'an': 1.0, 'toddler': 2.0, 'but': 1.0, 'will': 1.0, 'last': 1.0, 'washings': 1.0, 'and': 2.0}
Word element => {'crib': 1.0, 'great': 1.0, 'fine': 1.0, 'be': 1.0, 'll': 1.0, 'instructions': 1.0, 'addition': 1.0, 'washing': 1.0, 'follow': 1.0, 'problem': 1.0, 'never': 1.0, 've': 1.0, 'together': 1.0, 'melting': 1.0, 'with': 1.0, 'issues': 1.0, 'in': 1.0, 'said': 1.0, 'reviews': 1.0, 'because': 1.0, 'safely': 1.0, 'little': 1.0, 'risk': 1.0, 'hard': 1.0, 'quot': 2.0, 'can': 1.0, 'cushi': 1.0, 'or': 1.0, 'yet': 1.0, 'well': 1.0, 'has': 1.0, 'i': 4.0, 'a': 5.0, 's': 5.0, 'not': 3.0, 'man': 1.0, 'back': 1.0, 'dryer': 1.0, 'have': 1.0, 'your': 1.0, 'put': 1.0, 'on': 2.0, 'the': 4.0, 'my': 1.0, 'bed': 2.0, 'est': 1.0, 'baby': 3.0, 'about': 2.0, 'it': 4.0, 'she': 1.0, 'and': 4.0, 'too': 1.0, 'whatever': 1.0, 'm': 2.0, 'this': 1.0, 'mattress': 1.0, 'soft': 1.0, 'so': 1.0, 'that': 2.0, 'just': 1.0, 'sids': 1.0, 'worried': 1.0, 'had': 2.0, 'either': 1.0, 'washes': 1.0, 'possible': 1.0, 'to': 1.0, 'as': 1.0, 'rock': 1.0, 'comes': 1.0, 'off': 1.0, 'goes': 1.0, 'other': 1.0, 'you': 1.0, 'easily': 1.0, 'sure': 1.0}
Word element => {'spit': 1.0, 'be': 1.0, 'although': 1.0, 'easily': 1.0, 'roll': 1.0, 'able': 1.0, 'is': 2.0, 'baby': 2.0, 'your': 2.0, 'newborn': 1.0, 'buying': 1.0, 'bought': 1.0, 'have': 1.0, 'would': 4.0, 'easy': 1.0, 'but': 1.0, 'an': 1.0, 'of': 2.0, '6': 1.0, 'thin': 2.0, 'a': 5.0, 'fitted': 1.0, 'not': 2.0, 'excellent': 1.0, 'cushion': 2.0, 'crib': 1.0, 'by': 1.0, 'heat': 1.0, 'was': 2.0, 'to': 4.0, 'that': 1.0, 'buy': 1.0, 'old': 1.0, 'becomes': 1.0, 'i': 5.0, 'safety': 1.0, 'if': 2.0, 'layer': 1.0, 'pooling': 1.0, 'use': 3.0, 'caution': 1.0, 'for': 2.0, 'much': 1.0, 'adds': 1.0, 'it': 6.0, 'month': 1.0, 'hazard': 1.0, 'scared': 1.0, 'wish': 1.0, 'this': 1.0, 'mattress': 1.0, 'were': 1.0, 'low': 1.0, 'my': 1.0, 'fits': 2.0, 'sheet': 1.0, 'mouth': 1.0, 'standard': 1.0, 'sooner': 1.0, 'perfectly': 1.0, 'too': 1.0, 'and': 1.0, 'until': 1.0, 'great': 1.0, 'the': 3.0, 'diaper': 1.0, 'under': 1.0, 'up': 1.0, 'over': 1.0, 'wash': 1.0, 'after': 1.0, 'malfunction': 1.0, 'dry': 1.0}
Word element => {'recommend': 1.0, 'definitely': 1.0, 'soon': 1.0, 'due': 1.0, 'that': 1.0, 'baby': 1.0, 'my': 1.0, 'will': 1.0, 'is': 1.0, 'repel': 1.0, 'mattress': 1.0, 'covers': 1.0, 'make': 1.0, 'top': 1.0, 'follow': 1.0, 'gift': 1.0, 'the': 3.0, 'a': 1.0, 'and': 2.0, 'as': 1.0, 'very': 2.0, 'did': 1.0, 'tightly': 1.0, 'item': 2.0, 'it': 3.0, 'shower': 1.0, 'this': 3.0, 'received': 1.0, 'liquids': 1.0, 'i': 3.0, 'for': 1.0, 'comfortable': 1.0, 'bed': 1.0, 'adequately': 1.0, 'directions': 1.0, 'buying': 1.0, 'to': 2.0, 'appears': 1.0, 'up': 1.0, 'washed': 1.0, 'beautifully': 1.0, 'also': 1.0, 'wash': 1.0, 'seems': 1.0, 'plush': 1.0, 'on': 1.0}
Word element => {'need': 1.0, 'you': 1.0, 's': 1.0, 'that': 1.0, 'if': 1.0, 'cover': 1.0, 'quality': 1.0, 'be': 1.0, 'ordering': 1.0, 'my': 1.0, 'foam': 1.0, 'wasn': 1.0, 'this': 2.0, 'great': 1.0, 't': 1.0, 'thick': 1.0, 'looking': 1.0, 'seems': 1.0, 'softer': 1.0, 'and': 1.0, 'up': 1.0, 'since': 1.0, 'a': 4.0, 'what': 1.0, 'mattress': 2.0, 'help': 1.0, 'ended': 1.0, 'i': 2.0, 'pad': 2.0, 'wants': 1.0, 'topper': 1.0, 'for': 1.0, 'bed': 1.0, 'daughter': 1.0, 'going': 1.0, 'was': 1.0, 'to': 2.0}
Word element => {'am': 1.0, 'normal': 1.0, 'evens': 1.0, 'time': 3.0, 'so': 1.0, '30': 1.0, 'right': 1.0, '59': 1.0, 'happy': 1.0, '6': 1.0, 'arise': 1.0, 'c': 2.0, 'have': 2.0, 'but': 2.0, 'reviews': 1.0, 'between': 1.0, 'softness': 1.0, 'out': 2.0, 'bedding': 1.0, 's': 2.0, 'a': 3.0, 'ultrasoft': 1.0, 'with': 3.0, 'crib': 3.0, 'transitioning': 1.0, '7am': 1.0, 'is': 2.0, 'different': 1.0, 'her': 4.0, 'purchase': 2.0, 'fits': 1.0, 'my': 1.0, 'even': 1.0, 'pad': 4.0, 'purchased': 1.0, 'be': 1.0, 'sealy': 1.0, 'first': 2.0, 'month': 1.0, 'many': 1.0, 'she': 2.0, 'this': 2.0, 'nervous': 1.0, 'mattress': 4.0, 'whole': 1.0, 'about': 1.0, 'no': 1.0, 'without': 1.0, '99': 1.0, 'moms': 1.0, 'couldn': 1.0, 'mom': 1.0, 'online': 1.0, 'sleep': 1.0, 'bru': 1.0, 'happier': 2.0, 'was': 1.0, 'say': 1.0, 'comfortable': 1.0, 'of': 4.0, 'the': 15.0, 'finger': 1.0, 'b': 2.0, 'until': 1.0, 'bed': 1.0, 'that': 1.0, 'would': 1.0, 'for': 2.0, 't': 1.0, 'fit': 1.0, 'on': 1.0, 'perfectly': 1.0, 'better': 1.0, 'overprotective': 1.0, 'who': 1.0, 'space': 1.0, 'avail': 1.0, 'want': 1.0, 'room': 2.0, 'sheets': 1.0, 'theme': 1.0, 'love': 1.0, 'yet': 1.0, 'i': 9.0, 'slept': 1.0, 'like': 1.0, 'and': 7.0, 'glove': 1.0, 'it': 2.0, '9': 1.0, 'old': 1.0, 'got': 1.0, 'daughter': 1.0, 'to': 4.0, 'bassinet': 1.0, 'also': 1.0, 'sneak': 1.0, 'm': 1.0, 'in': 1.0, 'not': 1.0, 'used': 1.0, 'firmness': 1.0, 'extra': 1.0, '8am': 1.0}
Word element => {'worth': 1.0, 'but': 1.0, 'other': 1.0, 'that': 1.0, 'is': 2.0, 'it': 3.0, 'simmons': 1.0, 'over': 1.0, 'wash': 1.0, 'in': 2.0, 'hold': 1.0, 'them': 1.0, 'well': 1.0, 'a': 2.0, 'they': 2.0, 'more': 1.0, 'great': 1.0, 'the': 1.0, 'these': 1.0, 'and': 2.0, 'pads': 2.0, 'expensive': 1.0, 'mattress': 4.0, 'help': 1.0, 'up': 1.0, 'of': 1.0, 'two': 1.0, 'cozier': 1.0, 'own': 1.0, 'fit': 1.0, 'make': 1.0, 'my': 4.0, 'i': 2.0, 'to': 1.0, 'extremely': 1.0, 'firm': 1.0, 'love': 1.0, 'for': 1.0, 'crib': 1.0, 'little': 2.0, 'opinion': 1.0, 'very': 1.0, 'son': 1.0}
Word element => {'fits': 1.0, 'crib': 1.0, 'a': 1.0, 'love': 1.0, 'for': 1.0, 'we': 1.0, 'standard': 2.0, 'babee': 2.0, 'because': 1.0, 'matress': 5.0, 'specifically': 1.0, 'cover': 1.0, 'tenda': 2.0, 'our': 2.0, 'bought': 1.0, 'i': 1.0, 'is': 1.0, 'longer': 1.0, 'said': 1.0, 'than': 1.0, 'all': 1.0, 'the': 2.0, 'perfectly': 1.0, 'and': 1.0, 'reviews': 1.0, 'too': 1.0, 'this': 1.0, 'it': 3.0, 'was': 1.0, 'large': 1.0}
Word element => {'little': 1.0, 'be': 1.0, 'mattress': 1.0, 's': 1.0, 'very': 2.0, 'appears': 1.0, 'up': 1.0, 'other': 1.0, 'perfectly': 1.0, 'and': 2.0, 'market': 1.0, 'on': 1.0, 'my': 2.0, 'washing': 1.0, 'is': 1.0, 'many': 1.0, 'for': 1.0, 'one': 2.0, 'cozy': 1.0, 'pads': 1.0, 'soft': 1.0, 'this': 1.0, 'durable': 1.0, 'it': 1.0, 'the': 1.0, 'great': 1.0, 'holds': 1.0, 'unlike': 1.0, 'fits': 1.0, 'to': 2.0, 'baby': 1.0}
Word element => {'dourable': 1.0, 'over': 1.0, 'anything': 1.0, 'family': 1.0, 'my': 1.0, 'fact': 1.0, 'lasted': 1.0, 'well': 1.0, 'did': 1.0, 'maybe': 1.0, 'didnt': 1.0, 'ends': 1.0, 'for': 1.0, 'came': 1.0, 'better': 1.0, 'back': 1.0, 'buy': 1.0, 'normol': 1.0, 'fixes': 1.0, 'plug': 1.0, 'or': 1.0, 'like': 2.0, 'there': 1.0, 'makes': 1.0, 'noticed': 1.0, 'creaks': 1.0, 'floor': 1.0, 'fuzz': 1.0, 'hear': 1.0, 'can': 1.0, 'bedroom': 1.0, 'in': 3.0, 'years': 1.0, 'both': 1.0, 'im': 1.0, 'if': 3.0, 'so': 1.0, 'is': 2.0, 'problem': 1.0, 'livingroom': 1.0, '50': 1.0, 'her': 1.0, 'planes': 1.0, 'down': 1.0, 'was': 1.0, 'with': 3.0, 'interfearence': 1.0, 'she': 1.0, 'it': 10.0, 'kids': 1.0, 'this': 1.0, 'its': 1.0, 'only': 1.0, 'eating': 1.0, '4': 1.0, 'i': 7.0, 'phone': 1.0, 'use': 1.0, 'monitor': 1.0, 'me': 2.0, 'now': 1.0, 'away': 1.0, 'from': 1.0, 'since': 1.0, 'who': 1.0, 'handed': 1.0, 'battery': 1.0, 'no': 1.0, 'amp': 1.0, 'told': 1.0, 'relative': 1.0, 'kept': 1.0, 'that': 4.0, 'got': 1.0, 'default': 1.0, 'sounds': 1.0, 'batteries': 1.0, 'take': 1.0, 'feet': 1.0, 'calls': 1.0, 'to': 4.0, 'any': 2.0, 'sensative': 1.0, 'a': 4.0, 'go': 1.0, 'super': 1.0, 'would': 1.0, 'new': 1.0, 'cordless': 1.0, 'without': 1.0, 'squeeling': 1.0, 'the': 4.0, 'porch': 1.0, '3': 2.0, 'on': 2.0, 'make': 1.0}
Word element => {'child': 1.0, 'with': 1.0, 'sure': 1.0, 'be': 1.0, 'son': 1.0, 'bottles': 1.0, 'other': 1.0, 'used': 1.0, 'works': 1.0, 'about': 1.0, 'baby': 1.0, 'breast': 1.0, 'use': 2.0, 'this': 2.0, 'therefore': 1.0, 'our': 2.0, 'to': 3.0, 'will': 1.0, 'unique': 1.0, 'is': 3.0, 'we': 1.0, 'gas': 1.0, 'a': 4.0, 'than': 2.0, 'breastfed': 2.0, 'so': 1.0, 'bottle': 2.0, 'little': 1.0, 'it': 1.0, 'month': 1.0, 'non': 1.0, 'supply': 1.0, 'preventing': 1.0, 'great': 1.0, 'without': 1.0, 'the': 3.0, 'favorite': 1.0, 'doubt': 1.0, 'nursing': 1.0, 'next': 1.0, 'babies': 2.0, 'milk': 1.0, 'and': 3.0, 'product': 1.0, 'for': 3.0, 'suggest': 1.0, 'established': 1.0, 'system': 1.0, 'both': 1.0, 'best': 1.0, 'from': 1.0, 'after': 1.0, 'eliminating': 1.0, 'larger': 1.0, 'excessive': 2.0, 'air': 1.0, 'nipples': 1.0, 'are': 2.0, 'some': 1.0, 'prefer': 1.0, 'my': 1.0, 'may': 1.0, 'most': 1.0, 'but': 1.0, 'closer': 1.0}
Word element => {'of': 1.0, 'anyone': 1.0, 'product': 1.0, 'highly': 1.0, 'thinking': 1.0, 'i': 1.0, 'their': 1.0, 'better': 1.0, 'out': 1.0, 'seem': 1.0, 'other': 2.0, 'use': 1.0, 'well': 1.0, 'easier': 1.0, 'would': 1.0, 'drop': 1.0, 'gassiness': 1.0, 'who': 1.0, 'lot': 1.0, 'feeding': 2.0, 'recommend': 1.0, 'occuring': 1.0, 'was': 2.0, 'had': 2.0, 'baby': 2.0, 'also': 1.0, 'in': 3.0, 'air': 1.0, 'much': 1.0, 'during': 2.0, 'getting': 2.0, 'were': 1.0, 'as': 1.0, 'to': 6.0, 'our': 1.0, 'using': 1.0, 'switched': 1.0, 'forming': 1.0, 'this': 1.0, 'bubbles': 1.0, 'are': 1.0, 'feedings': 2.0, 'the': 9.0, 'is': 1.0, 'more': 1.0, 'how': 1.0, 'problems': 1.0, 'noticed': 1.0, 'liners': 3.0, 'bottles': 1.0, 'she': 1.0, 'got': 1.0, 'single': 1.0, 'hospital': 1.0, 'we': 5.0, 'a': 3.0, 'law': 1.0, 'from': 3.0, 'hard': 1.0, 'than': 2.0, 'w': 1.0, 'sister': 1.0, 'bottle': 2.0, 'time': 1.0, 'her': 1.0, 'eat': 1.0, 'after': 1.0, 'and': 4.0, 'starting': 1.0, 'over': 1.0, 'lose': 1.0, 'measure': 1.0, 'less': 1.0, 'weight': 1.0, 'system': 1.0, 'playtex': 1.0, 'recommendation': 1.0, 'have': 1.0}
Word element => {'compaints': 1.0, 'no': 1.0, 'this': 1.0, 'doing': 1.0, 'happy': 1.0, 'premium': 1.0, 'new': 2.0, 'made': 1.0, 'it': 1.0, 'plastic': 1.0, 'because': 1.0, 'original': 1.0, 'start': 1.0, 'at': 1.0, 'who': 1.0, 'advice': 1.0, 'mother': 1.0, 'took': 1.0, 'them': 1.0, 'with': 5.0, 'not': 1.0, 'system': 1.0, 'of': 3.0, 'from': 2.0, 'part': 1.0, 'best': 1.0, 'nurser': 1.0, 'son': 2.0, 'worked': 1.0, 'little': 1.0, 'very': 1.0, 'bottom': 1.0, 'complaint': 1.0, 'and': 5.0, 'bottle': 3.0, 'time': 1.0, 'so': 2.0, 'bottles': 4.0, 'easy': 1.0, 'needed': 1.0, 'have': 3.0, 'edges': 1.0, 'almost': 1.0, 'any': 1.0, 'all': 1.0, 'to': 3.0, 'husband': 2.0, 'had': 2.0, 'was': 1.0, 'more': 1.0, 'is': 2.0, 'browns': 1.0, 'are': 3.0, 'playtex': 3.0, 'on': 1.0, 'dr': 1.0, 'they': 1.0, 'evey': 1.0, 'deal': 1.0, 'the': 18.0, 'these': 2.0, 'my': 5.0, 'i': 2.0, 'agrees': 1.0, 'tried': 1.0, 'old': 1.0, '9': 1.0, 's': 1.0, 'could': 1.0, 'we': 5.0, 'extra': 1.0, 'now': 1.0, 'weeks': 1.0, 'change': 1.0, 'sugested': 1.0, 'but': 1.0, 'use': 1.0, 'personally': 1.0, 'clean': 2.0, 'even': 1.0, 'market': 1.0, 'before': 1.0, 'like': 1.0, 'venting': 1.0, 'using': 1.0, 'seems': 1.0, 'also': 1.0, 'well': 2.0, 'sharp': 1.0, 'only': 1.0}
Word element => {'every': 1.0, 'mean': 1.0, 'doesn': 1.0, 'develop': 1.0, 'ideasmd': 1.0, 'just': 1.0, 'work': 1.0, 'but': 1.0, 'bought': 1.0, 'affordable': 1.0, 'they': 4.0, 'with': 1.0, 'buying': 1.0, 'cuz': 1.0, 'remember': 1.0, 'go': 1.0, 't': 2.0, 's': 1.0, 'a': 1.0, 'playtex': 1.0, 'on': 1.0, 'having': 1.0, 'in': 1.0, 'new': 1.0, 'well': 1.0, 'has': 1.0, 'and': 3.0, 'do': 1.0, 'done': 1.0, 'not': 1.0, 'prevent': 1.0, 'ever': 2.0, 'grandson': 1.0, 'the': 5.0, 'more': 1.0, 'others': 1.0, 'these': 2.0, 'my': 3.0, 'don': 1.0, 'child': 1.0, 'cleaning': 1.0, 'time': 1.0, 'bottle': 1.0, 'i': 4.0, 'be': 1.0, 'as': 1.0, 'to': 2.0, 'colic': 1.0, 'even': 1.0, 'used': 1.0, 'inserts': 1.0, 'babydid': 1.0, 'very': 1.0, 'd': 1.0, 'best': 1.0, 'less': 1.0, 'nothing': 1.0, 'else': 1.0, 'better': 1.0, 'since': 1.0, '1st': 1.0, 'keep': 1.0, 'helped': 1.0, 'are': 3.0, 'hassle': 1.0, 'easy': 1.0, 'stomach': 1.0, 'area': 1.0, 'while': 1.0, 'when': 1.0, 'you': 1.0, 'colicky': 1.0, 'have': 1.0}
Word element => {'present': 1.0, 'baby': 1.0, 'a': 1.0, 'make': 1.0, 'would': 1.0, 'it': 1.0, 'everyone': 1.0, 'this': 1.0, 'likes': 1.0, 'able': 1.0, 'babies': 1.0, 'ease': 1.0, 'latex': 1.0, '5': 1.0, 'and': 1.0, 'milk': 1.0, 'the': 2.0, 'these': 1.0, 'my': 2.0, 'choice': 1.0, 'his': 1.0, 'even': 1.0, 'shower': 1.0, 'of': 1.0, 'week': 1.0, 'old': 1.0, 'i': 3.0, 'nipples': 1.0, 'bottles': 1.0, 'came': 1.0, 'flow': 1.0, 'had': 1.0, 'husband': 1.0, 'to': 2.0, 'great': 1.0, 'until': 1.0, 'in': 1.0, 'with': 1.0, 'best': 1.0, 'is': 1.0, 'store': 1.0, 'recommend': 1.0, 'unfinished': 1.0, 'hated': 1.0, 'feed': 1.0, 'him': 1.0, 'breastfed': 1.0, 'are': 1.0, 'picky': 1.0, 'love': 1.0, '6': 1.0, 'slow': 1.0, 'he': 1.0, 'how': 1.0, 'easily': 1.0, 'can': 1.0, 'breast': 1.0}
Word element => {'like': 1.0, 'will': 1.0, 'your': 1.0, 'one': 1.0, 'can': 1.0, 'find': 1.0, 'choose': 1.0, 'nipples': 1.0, 'that': 2.0, 'from': 3.0, 'very': 1.0, 'i': 2.0, 'took': 1.0, 'me': 1.0, 'and': 4.0, 'fed': 1.0, 'bottles': 1.0, 'last': 1.0, 'she': 1.0, 'the': 4.0, 'are': 1.0, 'my': 4.0, 'baby': 2.0, 'these': 2.0, 'knew': 1.0, 'with': 2.0, 'children': 1.0, 'is': 2.0, 'mom': 1.0, 'daughter': 1.0, 'breastfed': 1.0, 'still': 1.0, 'began': 1.0, 'you': 1.0, 'easily': 1.0, 'first': 1.0, 'beginning': 1.0, 'daycare': 1.0, 'week': 1.0, 'wanted': 1.0, 'to': 2.0, 'had': 1.0, 'now': 1.0, 'well': 1.0, 'a': 1.0, 'so': 1.0, 'bottle': 3.0, 'switches': 1.0, 'addition': 1.0, 'between': 1.0, 'use': 1.0, 'breast': 1.0, 'in': 1.0, 'there': 1.0, 'of': 1.0, 'wide': 1.0, 'variety': 1.0}
Word element => {'luck': 1.0, 'helps': 1.0, 'review': 1.0, 'hope': 1.0, 'same': 1.0, 'switch': 1.0, 'months': 1.0, '6': 1.0, 'age': 1.0, 'around': 1.0, 'prefers': 1.0, 'he': 1.0, 'material': 2.0, 'typle': 1.0, 'stick': 1.0, 've': 1.0, 'be': 1.0, 'should': 1.0, 'at': 1.0, 'do': 1.0, 'latching': 1.0, 'box': 2.0, 'all': 1.0, 'helped': 1.0, 'newer': 1.0, 'and': 7.0, 'each': 1.0, 'either': 1.0, 'would': 2.0, 'oz': 2.0, 'rubber': 3.0, 'kit': 3.0, 'for': 7.0, 'actually': 1.0, 'older': 2.0, 'with': 8.0, 'sample': 1.0, 'this': 3.0, 'a': 4.0, 'go': 1.0, 'everything': 1.0, 'if': 2.0, 'in': 3.0, 'registered': 1.0, 'teething': 1.0, 'mistaken': 1.0, 'come': 1.0, 're': 1.0, 'you': 5.0, '4': 3.0, 'was': 3.0, 'recommend': 1.0, 'just': 1.0, 'not': 4.0, 'once': 1.0, 'these': 1.0, 'of': 5.0, 'the': 11.0, 'my': 1.0, 'nipples': 11.0, 'purchase': 1.0, 'first': 2.0, 'various': 1.0, 'born': 1.0, 'resembled': 1.0, 'bottles': 4.0, 'when': 2.0, 'seperately': 1.0, 'latch': 1.0, 'did': 1.0, 'it': 2.0, 'thought': 1.0, 'suggest': 1.0, 'plain': 1.0, 'new': 2.0, 'time': 1.0, 'baby': 4.0, 'she': 2.0, 'register': 1.0, 'also': 1.0, 'could': 1.0, 'will': 1.0, 'pick': 1.0, 'out': 1.0, 'being': 1.0, 'slow': 3.0, 'breast': 2.0, 'that': 7.0, 'silicone': 4.0, 'younger': 3.0, 'test': 1.0, 'flow': 3.0, 'realize': 1.0, 'on': 4.0, 'mom': 2.0, 'your': 5.0, 'two': 2.0, 'little': 2.0, 'does': 2.0, 'like': 1.0, 'found': 1.0, 'however': 1.0, 'know': 1.0, 'good': 1.0, 'which': 1.0, 'i': 7.0, 'well': 1.0, 'them': 1.0, 'encourage': 1.0, 'has': 1.0, 'problem': 1.0, 'one': 3.0, 'try': 1.0, 'use': 2.0, 'her': 1.0, 'after': 1.0, 'rest': 1.0, 'll': 1.0, 'or': 2.0, 'need': 1.0, 'can': 1.0, 'babies': 6.0, 'more': 1.0, 'to': 2.0}
Word element => {'natural': 1.0, 'used': 1.0, 'night': 1.0, 'every': 1.0, 'run': 1.0, '3': 1.0, 'was': 1.0, 'he': 3.0, 'this': 1.0, 'other': 1.0, 'to': 3.0, 'nursings': 1.0, 'all': 2.0, 'nursing': 1.0, 'have': 1.0, 'my': 1.0, 'feeding': 1.0, 'bottle': 2.0, 'very': 2.0, 'busy': 1.0, 'son': 1.0, 'from': 1.0, 'for': 3.0, 'months': 1.0, 'one': 1.0, 'nipple': 1.0, 'drank': 1.0, 'around': 1.0, 'till': 1.0, 'easily': 2.0, 'brown': 1.0, 'dishwasher': 1.0, 'regular': 1.0, 'old': 1.0, 'i': 1.0, 'took': 1.0, 'then': 1.0, 'of': 1.0, 'sudden': 1.0, 'and': 3.0, 'moms': 1.0, 'prefer': 1.0, 'the': 4.0, 'seemed': 1.0, 'great': 1.0, 'we': 1.0, 'a': 2.0, 't': 1.0, 'it': 1.0, 'solved': 1.0, 'that': 1.0, 'latch': 1.0, 'liners': 1.0, 'problem': 1.0, 'feedings': 1.0, 'are': 1.0, 'don': 1.0}
Word element => {'breastfeed': 1.0, 'want': 3.0, 'line': 1.0, 'be': 1.0, 'least': 1.0, 'seem': 1.0, 'new': 1.0, 'or': 1.0, 'like': 1.0, 'avent': 1.0, 'example': 1.0, 'for': 1.0, 'supplement': 1.0, 'wish': 1.0, 'soft': 1.0, 'mother': 1.0, 'recommend': 1.0, 'good': 2.0, 'use': 2.0, 'her': 5.0, 'have': 2.0, 'breastfeeding': 2.0, 'simulate': 1.0, 'an': 1.0, 'how': 3.0, 'shaped': 3.0, 'who': 1.0, 'in': 4.0, 'using': 1.0, 'lips': 1.0, 'formed': 1.0, 'it': 2.0, 'knows': 1.0, 'bottom': 4.0, 'nursing': 3.0, 'effort': 1.0, 'at': 3.0, 'is': 6.0, 'around': 1.0, 'lip': 3.0, 'caused': 2.0, 'did': 1.0, 'way': 2.0, 'to': 14.0, 'curl': 2.0, 'a': 7.0, 's': 1.0, 'she': 4.0, 'baby': 3.0, 'introduced': 1.0, 'anyone': 1.0, 'and': 8.0, 'same': 1.0, 'under': 1.0, 'orthondontic': 1.0, 'get': 1.0, 'months': 2.0, 'one': 1.0, 'natural': 1.0, 'the': 8.0, 'tried': 3.0, 'i': 6.0, 'needs': 1.0, 'take': 2.0, 'am': 1.0, 'when': 1.0, 'you': 4.0, 'nipple': 5.0, 'brand': 1.0, 'experienced': 1.0, 'playtex': 3.0, 'on': 4.0, 'mom': 1.0, 'your': 2.0, 'system': 1.0, 'order': 1.0, 'considerable': 1.0, 'however': 1.0, 'latch': 3.0, 'silicone': 1.0, 'that': 2.0, 'breast': 1.0, 'not': 3.0, 'may': 1.0, 'my': 1.0, 'me': 1.0, 'highly': 1.0, 'bottle': 3.0, 'this': 3.0, 'nipples': 4.0, 'was': 1.0, 'sore': 2.0, 'there': 1.0, 'out': 1.0, 'nothing': 1.0, 'designed': 2.0, 'can': 1.0, 'up': 1.0, 'change': 1.0, 'four': 1.0, 'do': 2.0, 'sucks': 1.0, 'they': 2.0, 'breastfeeder': 1.0, 'are': 2.0, 'always': 1.0, 'has': 1.0, 'finally': 1.0, 'taken': 2.0, 'if': 2.0, 'turn': 2.0, 'still': 2.0, 'every': 1.0, 'reteach': 1.0, 'had': 2.0, 'even': 1.0, 'now': 1.0, 'after': 1.0, 'occasionally': 1.0, 'will': 1.0, 'while': 1.0, 'from': 1.0, 'five': 1.0, 'day': 1.0}
Word element => {'a': 1.0, 'had': 1.0, 'clean': 1.0, 'to': 3.0, 'easy': 1.0, 'everywhere': 1.0, 'bottles': 2.0, 'liners': 2.0, 'that': 1.0, 'were': 1.0, 'extremely': 1.0, 'but': 1.0, 'mess': 1.0, 'i': 4.0, 'in': 1.0, 'they': 1.0, 'add': 1.0, 'these': 2.0, 'the': 4.0, 'used': 1.0, 'and': 2.0, 'getting': 1.0, 'do': 1.0, 'born': 1.0, 'formula': 4.0, 'very': 1.0, 'sons': 1.0, 'since': 1.0, 'convenient': 1.0, 'are': 3.0, 'fact': 1.0, 'my': 1.0, 'expensive': 1.0, 'love': 1.0, 'use': 2.0, 'up': 1.0, 'of': 3.0, 'until': 1.0, 'you': 3.0, 'need': 1.0, 'make': 1.0, '8oz': 2.0, 'if': 1.0, 'powder': 1.0, 've': 1.0, 'would': 1.0, 'drop': 1.0, 'not': 1.0, 'hold': 1.0, 'water': 1.0, 'it': 1.0}
Word element => {'great': 1.0, 'baby': 1.0, 'law': 1.0, 'needs': 1.0, 'is': 2.0, 'who': 1.0, 'i': 2.0, 'open': 1.0, 'shipping': 1.0, 'my': 1.0, 'the': 9.0, 'damaged': 1.0, 'these': 2.0, 'box': 2.0, 'bag': 2.0, 'having': 1.0, 'sister': 1.0, 'using': 1.0, 'bottles': 3.0, 'read': 1.0, 'got': 2.0, 'most': 1.0, 'during': 1.0, 'a': 2.0, 'we': 1.0, 'and': 3.0, 'get': 1.0, 'was': 1.0, 'of': 3.0, 'away': 1.0, 'weeks': 1.0, 'different': 1.0, 'throw': 1.0, 'reviews': 1.0, 'came': 1.0, 'disposable': 2.0, 'think': 1.0, 'for': 1.0, 'fit': 1.0, 'newborns': 1.0, 'couple': 1.0, 'out': 1.0, 'ability': 1.0, 'to': 1.0, 'all': 1.0, 'in': 3.0, 'air': 1.0, 'after': 1.0}
Word element => {'need': 1.0, 'll': 1.0, 'sure': 1.0, 'm': 1.0, 'equipment': 1.0, 'enough': 1.0, 'more': 1.0, 'than': 2.0, 'course': 1.0, 'of': 2.0, 've': 1.0, 'out': 1.0, 'only': 1.0, 'try': 1.0, 'liked': 1.0, 'regular': 1.0, 'but': 2.0, 'prefers': 1.0, 'one': 1.0, 'bought': 2.0, 'older': 1.0, 'nursers': 1.0, 'fussing': 1.0, 'liners': 1.0, 'bottles': 3.0, 'it': 1.0, 'she': 1.0, 'burping': 1.0, 'all': 2.0, 'that': 4.0, 'terrible': 1.0, 'has': 1.0, 'recommended': 1.0, 'breastfeed': 1.0, 'purchase': 1.0, 'my': 4.0, 'the': 4.0, 'luck': 1.0, 'took': 1.0, 'mother': 1.0, 'nipple': 2.0, 'highly': 1.0, 'them': 1.0, 'started': 1.0, 'baby': 2.0, 'and': 6.0, 'me': 2.0, 'playtex': 1.0, 'recently': 2.0, 'extra': 1.0, 'ever': 1.0, 'nipples': 1.0, 'supplementing': 1.0, 'son': 2.0, 'with': 6.0, 'provided': 1.0, 'found': 1.0, 'this': 3.0, 'used': 1.0, 'set': 3.0, 'up': 1.0, 'after': 2.0, 'had': 1.0, 'no': 1.0, 'other': 3.0, 'shaped': 1.0, 'breastfed': 1.0, 'bottle': 1.0, 'some': 2.0, 'readily': 1.0, 'shapes': 1.0, 'virtually': 1.0, 'less': 1.0, 'could': 1.0, 's': 2.0, 'gas': 1.0, 'spitting': 1.0, 'i': 8.0, 'experimenting': 1.0}
Word element => {'bottles': 1.0, 'best': 1.0, 'are': 1.0, 'really': 1.0, 'theses': 1.0, 'has': 1.0, 'so': 1.0, 'used': 1.0, 'i': 2.0, 'but': 1.0, 'my': 1.0, 'mother': 1.0, 'these': 1.0, 'the': 3.0, 'only': 1.0, 'not': 1.0, 'all': 1.0, 'have': 1.0, 'babies': 2.0, 'one': 1.0, 'love': 2.0, 'out': 1.0, 'them': 3.0, 'there': 1.0, 'of': 2.0, '6': 1.0, 'plus': 1.0, '3': 1.0, 'that': 1.0, 'watch': 1.0, 'also': 1.0}
Word element => {'away': 1.0, 'takes': 1.0, 'bags': 1.0, 'take': 1.0, 'also': 1.0, 'definately': 1.0, 'most': 1.0, 'can': 2.0, 'it': 3.0, 'this': 1.0, 'he': 1.0, 'son': 2.0, 'and': 1.0, 'me': 1.0, 'good': 1.0, 'i': 3.0, 'choke': 1.0, 'on': 1.0, 'put': 1.0, 'have': 1.0, 'came': 2.0, 'set': 1.0, 'of': 3.0, 'hospital': 1.0, 'these': 2.0, 'believe': 1.0, 'the': 4.0, 'my': 3.0, 'registry': 1.0, 'bottles': 1.0, 'reputation': 1.0, 'choking': 1.0, 'because': 1.0, 'started': 1.0, 'particular': 1.0, 'handy': 1.0, 'you': 1.0, 'when': 2.0, 'avoid': 1.0, 'loves': 1.0, 'that': 1.0, 'out': 2.0, 'as': 1.0, 'to': 1.0, 'air': 1.0, 'in': 2.0, 'regular': 1.0, 'nipples': 1.0, 'don': 1.0, 'gas': 1.0, 'discovered': 1.0, 'a': 1.0, 't': 1.0, 'go': 1.0, 'especially': 1.0, 'down': 1.0, 'his': 1.0, 'throat': 1.0, 'much': 1.0, 'so': 2.0}
Word element => {'would': 1.0, 'only': 2.0, 'pack': 1.0, '3': 1.0, 'hatedthe': 1.0, 'from': 1.0, 'preference': 1.0, 'likewise': 1.0, 'reduced': 1.0, 'next': 1.0, 'gas': 1.0, 'reducing': 1.0, 'came': 1.0, 'when': 1.0, 'any': 1.0, 'difference': 1.0, 'quickly': 1.0, 'nipples': 3.0, 'see': 1.0, 'off': 1.0, 'gradations': 1.0, 'after': 1.0, 'viscous': 1.0, 'these': 4.0, 'up': 1.0, 'comments': 1.0, 'measure': 1.0, 'committing': 1.0, 'concept': 1.0, 'breastflow': 1.0, 'work': 1.0, 'over': 1.0, 'challenging': 1.0, 'always': 1.0, 'target': 1.0, 'them': 3.0, 'some': 4.0, 'never': 3.0, 'milk': 3.0, 'tried': 1.0, 'and': 8.0, 'just': 2.0, 'brands': 1.0, 'of': 11.0, 'the': 31.0, 'natural': 1.0, 'out': 3.0, 'among': 1.0, 'throwing': 1.0, 'is': 7.0, 'variations': 1.0, 'material': 1.0, 'design': 2.0, 'their': 1.0, 'due': 1.0, 'than': 1.0, 'months': 1.0, 'assemble': 1.0, 'nine': 1.0, 'because': 1.0, 'that': 5.0, 'hard': 3.0, 'breast': 2.0, 'stopped': 1.0, 'numbers': 1.0, 'once': 1.0, 'formula': 1.0, 'might': 1.0, 'like': 3.0, 'did': 1.0, 'very': 4.0, 'classic': 1.0, 'harder': 1.0, 'using': 3.0, 'with': 5.0, 'unfounded': 1.0, 'avent': 6.0, '4': 2.0, 'although': 3.0, 'feeding': 1.0, 'wide': 1.0, 'not': 5.0, 'are': 8.0, 'plus': 1.0, 'on': 2.0, 'flow': 1.0, 'dr': 3.0, 'yourself': 1.0, 'first': 1.0, 'n': 1.0, 'i': 2.0, 'coming': 1.0, 'you': 3.0, 'get': 1.0, 'able': 1.0, 'complaints': 1.0, 'what': 1.0, 'several': 1.0, 'neck': 1.0, 'ring': 2.0, 'bottles': 10.0, 'theseplaytex': 1.0, 'were': 1.0, 'exact': 1.0, 'have': 3.0, 'systems': 2.0, 'less': 1.0, 'as': 3.0, 'arrival': 1.0, 's': 5.0, 'we': 12.0, 'markings': 1.0, 'advanced': 1.0, 'gets': 1.0, 'will': 2.0, 'also': 4.0, 'an': 1.0, 'years': 1.0, 'our': 2.0, 'to': 17.0, 'buying': 1.0, 'brand': 1.0, 'version': 1.0, 'preparation': 1.0, 'great': 1.0, 'if': 3.0, 'wasted': 1.0, 'call': 1.0, 'all': 6.0, 'ones': 1.0, 'philips': 1.0, 'lot': 3.0, 'polypropylene': 1.0, 'ended': 1.0, 'he': 1.0, 'necessary': 1.0, 'brown': 3.0, 'last': 1.0, 'specific': 1.0, 'year': 1.0, 'try': 1.0, 'price': 1.0, 'dropins': 2.0, 'child': 1.0, 'bottle': 5.0, 'so': 4.0, 'ridiculesly': 1.0, 'free': 3.0, 'but': 2.0, 'amounts': 1.0, 'bought': 1.0, 'better': 1.0, 'standard': 1.0, 'main': 1.0, 'in': 8.0, 'people': 2.0, 'son': 2.0, 'both': 2.0, 'it': 7.0, 'be': 4.0, 'much': 1.0, 'put': 1.0, 'accessories': 1.0, 'sells': 1.0, 'a': 6.0, 'store': 1.0, 'which': 1.0, 'leading': 1.0, 'good': 1.0, 'vs': 1.0, 'absolutely': 1.0, 'one': 2.0, '5': 1.0, 'purchased': 1.0, 'larger': 2.0, 'pump': 3.0, 'conversion': 1.0, 'kitto': 1.0, 'overwhelming': 1.0, 'use': 2.0, 'overpricedphilips': 1.0, 'smaller': 2.0, 'wash': 1.0, 'bpa': 3.0, 'withmedela': 1.0, 'helps': 1.0, 'lid': 1.0, 'setup': 1.0, 'works': 1.0, 'without': 1.0, 'slightly': 1.0, 'problem': 1.0, 'forget': 1.0, 'little': 1.0, 'leak': 3.0, 'your': 1.0, 'style': 1.0, 'probably': 1.0, 'had': 5.0, 'used': 2.0, 'above': 3.0, 'apply': 1.0, 'best': 1.0, 'three': 1.0, '1': 1.0, 'its': 1.0, 'pieces': 1.0, 'they': 2.0, 'issue': 1.0, 'dishwasher': 1.0, 'about': 1.0, 'big': 1.0, 'deal': 1.0, 'number': 1.0, 'chose': 1.0, 'parts': 1.0, '6': 1.0, 'counting': 1.0, 'here': 1.0, 'pick': 1.0, 'appealing': 1.0, 'generally': 1.0, 'claim': 1.0, 'there': 1.0, 'seem': 1.0, 'no': 2.0}
Word element => {'gotten': 1.0, 'is': 1.0, 'feeding': 1.0, 'us': 1.0, 'burps': 1.0, 'getting': 1.0, 'old': 1.0, 'problems': 1.0, 'had': 1.0, 'are': 1.0, 'she': 2.0, 'it': 1.0, 'lot': 1.0, 'at': 1.0, 'who': 1.0, 'out': 1.0, 'my': 1.0, 'for': 3.0, 'baby': 1.0, 'brothers': 1.0, 'them': 1.0, 'months': 1.0, 'sisters': 1.0, 'me': 2.0, 'no': 1.0, 'about': 1.0, 'else': 1.0, 'i': 5.0, 'to': 3.0, 'thinks': 1.0, 'wanted': 1.0, 'too': 1.0, 'and': 1.0, 'remembered': 1.0, 'they': 3.0, 'so': 2.0, 'time': 1.0, 'was': 1.0, 'recommend': 1.0, 'already': 1.0, 'knew': 1.0, 'these': 2.0, 'figured': 1.0, 'the': 7.0, 'great': 2.0, 'use': 2.0, 'much': 2.0, 'try': 1.0, '2': 1.0, 'but': 1.0, 'didn': 1.0, 'using': 2.0, 'know': 1.0, 'sees': 1.0, 'have': 3.0, 'test': 1.0, 'of': 2.0, 'this': 1.0, 'with': 2.0, 'we': 1.0, 't': 1.0, 'a': 2.0, 'way': 1.0, 'different': 1.0, 'selections': 1.0, 'every': 1.0, 'really': 1.0, 'everyone': 1.0, 'side': 1.0, 'air': 2.0, 'stood': 1.0, 'slides': 1.0, 'on': 1.0, 'bottles': 3.0, 'let': 1.0}
Word element => {'are': 1.0, 'have': 1.0, 'probably': 1.0, 'but': 1.0, '11': 1.0, 'up': 1.0, 'ended': 1.0, 'us': 1.0, 'r': 1.0, 'babies': 1.0, 'sale': 1.0, 'waited': 1.0, 'set': 1.0, 'drop': 1.0, 'liking': 1.0, 'from': 1.0, 'coupon': 1.0, '2': 1.0, 'find': 1.0, 'ins': 1.0, 'playtex': 2.0, 'if': 1.0, 'like': 1.0, 'soft': 1.0, 'the': 2.0, 'loves': 1.0, '4': 1.0, 'spent': 1.0, 'be': 1.0, '100': 1.0, 'trying': 1.0, 'weeks': 1.0, 'would': 2.0, 'something': 1.0, 'over': 2.0, 'google': 1.0, 'work': 2.0, 'pregnant': 2.0, 'four': 1.0, 'back': 1.0, 't': 4.0, 'a': 5.0, 'breath': 1.0, 'go': 1.0, 'don': 1.0, 'in': 1.0, 'having': 1.0, 'not': 4.0, 'heard': 1.0, 'just': 1.0, 'screaming': 1.0, 'my': 6.0, 'get': 5.0, 'and': 12.0, 'girl': 2.0, 'moms': 2.0, 'used': 1.0, 'nearly': 1.0, 'decided': 1.0, 's': 1.0, 'advice': 1.0, 'as': 2.0, 'latex': 1.0, 'they': 4.0, 'getting': 1.0, 'thinking': 2.0, 'i': 13.0, 'how': 1.0, 'introduce': 1.0, 'to': 9.0, 'pretty': 1.0, 'for': 5.0, 'off': 2.0, 'tried': 1.0, 'you': 2.0, 'able': 1.0, 'had': 1.0, 'was': 5.0, 'them': 5.0, 'about': 3.0, 'while': 1.0, 'breast': 1.0, 'because': 2.0, 'that': 3.0, 'breastfeeding': 1.0, 'tears': 1.0, 'gave': 1.0, 'were': 1.0, 'eat': 2.0, 'everything': 1.0, 'else': 1.0, 'nipple': 1.0, 'honestly': 2.0, 'facebook': 1.0, 'essentials': 1.0, 'eyes': 1.0, 'these': 3.0, 'all': 2.0, 'other': 2.0, 'hours': 1.0, 'day': 1.0, 'wash': 1.0, 'her': 1.0, 'weren': 1.0, 'with': 1.0, 'can': 1.0, 'so': 1.0, 'delay': 1.0, 'this': 2.0, 'bottle': 1.0, 'frustrated': 1.0, 'worn': 1.0, 'early': 1.0, 'out': 2.0, 'emotional': 1.0, 'going': 1.0, 'finally': 1.0, 'got': 2.0, 'wait': 1.0, 'bottles': 3.0, 'home': 1.0, 'held': 1.0, 'try': 2.0, 'amazing': 1.0, 'paid': 1.0, 'only': 1.0, 'it': 2.0, 'baby': 3.0, 'she': 3.0, 'believe': 1.0, 'murder': 1.0, 'loved': 1.0, 'bloody': 1.0, 'then': 2.0, 'ate': 1.0, '30': 1.0, 'coupons': 1.0, 'right': 1.0, 'couldn': 2.0, 'ounces': 1.0, 'nursing': 1.0, 'at': 1.0, 'is': 2.0, 'around': 1.0, 'on': 2.0}
Word element => {'very': 1.0, 'in': 1.0, 'him': 1.0, 'small': 1.0, 'it': 1.0, 'happy': 1.0, '8oz': 1.0, 'than': 1.0, 'is': 1.0, 'more': 1.0, 'was': 1.0, 'why': 1.0, 'only': 1.0, 'the': 1.0, 'reason': 1.0, 'never': 2.0, 'loved': 1.0, 'kids': 2.0, 'daughter': 1.0, 'that': 1.0, 'gave': 1.0, 'up': 2.0, 'and': 1.0, 'my': 5.0, 'avent': 2.0, 'using': 2.0, 'for': 2.0, 'son': 3.0, 'problems': 1.0, 'day': 1.0, 'from': 1.0, 'now': 1.0, 'had': 2.0, 'with': 2.0, 'he': 1.0, 'i': 5.0, '4': 1.0, 'spit': 1.0, 'breast': 1.0, 'am': 1.0, 'them': 3.0, 'started': 2.0, 'both': 2.0, 'years': 1.0, 'all': 2.0, 'to': 1.0, 'any': 2.0, 'bottles': 1.0, 'or': 1.0, 'spitting': 1.0, 'were': 1.0, 'breastfed': 1.0, 'so': 1.0, 'needs': 1.0, 'bottle': 2.0, 'but': 2.0, 'formula': 1.0, 'of': 1.0, 'once': 1.0, 'gas': 1.0, 'ago': 1.0, 'a': 1.0, 'they': 1.0, 'tried': 2.0, 'problem': 1.0, 'these': 1.0, 'switching': 1.0}
Word element => {'variety': 1.0, 'a': 1.0, 'nipples': 1.0, 'great': 1.0, 'sizes': 1.0, 'assorted': 1.0, 'bottles': 1.0, 'give': 1.0, 'disposable': 1.0, 'on': 1.0, 'this': 1.0, 'has': 1.0, 'everything': 1.0, 'that': 1.0, 'you': 2.0, 'and': 2.0, 'need': 1.0, 'to': 1.0, 'start': 1.0, 'your': 2.0, 'kit': 1.0, 'off': 1.0, 'baby': 2.0}
Word element => {'highly': 1.0, 'confident': 1.0, 'pleased': 1.0, 'very': 1.0, 'mom': 1.0, 'first': 1.0, 'have': 1.0, 'feeding': 1.0, 'before': 1.0, 'disposable': 1.0, 'from': 1.0, 'air': 1.0, 'this': 1.0, 'release': 1.0, 'am': 1.0, 'you': 1.0, 'that': 1.0, 'him': 1.0, 'had': 1.0, 'flow': 1.0, 'leaked': 1.0, 'because': 1.0, 'at': 3.0, 'suggestion': 1.0, 'no': 2.0, 'recommend': 1.0, 'leaking': 1.0, 'was': 1.0, 'slow': 1.0, 'disappointed': 1.0, 'seems': 1.0, 'also': 1.0, 'trouble': 1.0, 'nipple': 1.0, 'gift': 1.0, 'a': 3.0, 'son': 1.0, 'can': 1.0, 'work': 1.0, 'but': 1.0, 'weeks': 1.0, 'and': 4.0, 'clear': 1.0, 'product': 1.0, 'for': 1.0, 'love': 1.0, 'shower': 1.0, 'with': 3.0, 'the': 4.0, 'these': 2.0, 'they': 1.0, 'has': 1.0, 'old': 1.0, 'brand': 1.0, 'avent': 1.0, 'my': 1.0, 'liners': 1.0, 'bottles': 3.0, 'like': 1.0, 'which': 1.0, 'were': 1.0, 'time': 1.0, 'friends': 1.0, 'playtex': 1.0, 'them': 1.0, 'is': 1.0, 'i': 6.0, 'disposables': 1.0, '4': 1.0, 'best': 1.0, 'natural': 1.0, 'silicone': 1.0, 'tried': 2.0, 'given': 1.0, 'problem': 1.0, 'to': 2.0, 'as': 2.0, 'all': 2.0, 'me': 1.0, 'style': 1.0}
Word element => {'months': 1.0, 'formula': 1.0, 'now': 1.0, 'we': 2.0, 'feeding': 1.0, 'breastmilk': 1.0, 'system': 1.0, 'loved': 1.0, 'huband': 1.0, 'my': 1.0, 'line': 1.0, 'at': 1.0, 'is': 2.0, 'around': 1.0, 'feature': 1.0, '9': 1.0, 'it': 3.0, 'up': 1.0, 'switched': 1.0, 'cheaper': 1.0, 'isn': 1.0, 'don': 1.0, 'storage': 2.0, 'gets': 1.0, 'just': 2.0, 'milk': 2.0, 'and': 5.0, 'than': 1.0, 'its': 1.0, 'much': 1.0, 'do': 2.0, 'transferred': 1.0, 'from': 2.0, 'freeze': 1.0, 'think': 2.0, 'playtex': 2.0, 'any': 1.0, 'your': 1.0, 'on': 3.0, 'but': 2.0, 'can': 1.0, 'either': 1.0, 'feed': 1.0, 'liked': 1.0, 'like': 1.0, 'bottom': 1.0, 'love': 1.0, 'kit': 1.0, 'for': 3.0, 'when': 1.0, 'traveling': 1.0, 'clean': 2.0, 'again': 1.0, 'i': 6.0, 'well': 1.0, 'because': 1.0, 'that': 6.0, 'buy': 1.0, 'throw': 1.0, 'great': 1.0, 'until': 1.0, 't': 5.0, 'a': 3.0, 'the': 6.0, 'same': 1.0, 'being': 1.0, 'still': 2.0, 'if': 2.0, 'pump': 2.0, 'stays': 1.0, 'be': 2.0, 'all': 1.0, 'bags': 1.0, 'as': 1.0, 'adapter': 1.0, 'have': 3.0, 'you': 4.0, 'able': 2.0, 'away': 1.0, 'couldn': 1.0, 'liner': 3.0, 'worry': 1.0, 'about': 1.0, 'use': 2.0, 'happens': 1.0, 'fresh': 1.0, 'there': 1.0, 'baby': 2.0, 'getting': 1.0, 'did': 1.0, 'few': 1.0, 'bottle': 3.0, 'to': 9.0, 'against': 1.0, 'using': 1.0, 'bag': 1.0, 'also': 1.0, 'vacuum': 1.0, 'was': 1.0, 'leaking': 1.0, 'not': 2.0, 'itself': 1.0, 'didn': 1.0, 'fight': 1.0, 'collapse': 1.0, 'some': 1.0, 'issues': 1.0, 'they': 1.0, 'with': 1.0, 'weren': 1.0, 'bottles': 3.0, 'screwed': 2.0, 'easier': 1.0, 'right': 2.0}
Word element => {'extensions': 1.0, 'despite': 1.0, 'bought': 1.0, 'it': 3.0, 'was': 1.0, 'had': 1.0, 'i': 5.0, 'have': 2.0, 'to': 3.0, 'all': 1.0, 'instructions': 1.0, 'like': 1.0, 'reading': 1.0, 'measured': 1.0, 'plus': 1.0, 'positive': 1.0, 'together': 1.0, 'of': 1.0, 'stable': 1.0, 'after': 1.0, 'agree': 1.0, 'order': 1.0, 'an': 1.0, 'reviews': 1.0, 'easy': 1.0, 'really': 1.0, '24': 1.0, 'gate': 2.0, 'the': 2.0, 'having': 1.0, 'also': 1.0, 'in': 1.0, 'and': 2.0, 'feels': 1.0, 'very': 2.0, 'extension': 1.0, 'measure': 1.0, 'put': 1.0, 'your': 1.0, 'this': 1.0, 'carefully': 1.0, 'not': 1.0, 'wrong': 1.0, 'extra': 1.0, 'total': 1.0, 'three': 1.0, 'space': 1.0, 'main': 1.0}
Word element => {'again': 1.0, 'value': 1.0, 'this': 1.0, '3': 1.0, 'about': 1.0, 'was': 1.0, 'he': 1.0, 'us': 1.0, 'able': 1.0, 'old': 1.0, 'year': 1.0, 'dogs': 1.0, 'access': 1.0, 'controlling': 1.0, 'cycles': 1.0, 'definitely': 1.0, 'close': 1.0, 'open': 2.0, 'of': 1.0, 'thousands': 1.0, 'stood': 1.0, 'in': 1.0, 'broken': 1.0, 'worn': 1.0, 'noticeably': 1.0, 'loose': 1.0, 'i': 1.0, '4': 1.0, 'become': 1.0, 'nothing': 1.0, 'however': 1.0, 'issue': 1.0, 'outstanding': 1.0, 'lone': 1.0, 'from': 1.0, 'or': 1.0, 'latch': 1.0, 'as': 2.0, 'to': 3.0, 'our': 3.0, 'holding': 1.0, 'mechanism': 1.0, 'son': 1.0, 'still': 1.0, 'it': 6.0, 'only': 1.0, 'during': 1.0, 'and': 4.0, 'is': 1.0, 'want': 1.0, 'cords': 1.0, 'now': 2.0, 'had': 1.0, '5': 1.0, 'choose': 1.0, 'aside': 1.0, 'than': 1.0, 'would': 1.0, 've': 1.0, 'basic': 1.0, 'are': 2.0, 'up': 2.0, 'over': 1.0, 'terrific': 1.0, 'setup': 1.0, 'years': 1.0, 'for': 7.0, 'needs': 1.0, 'time': 2.0, 'well': 2.0, 'has': 6.0, 'they': 1.0, 'that': 4.0, 'been': 4.0, 'will': 1.0, 'work': 1.0, 'but': 1.0, 'automatic': 1.0, 'closing': 1.0, 'less': 1.0, 'an': 2.0, 'ideal': 1.0, 'who': 1.0, 'since': 2.0, 'we': 1.0, 'a': 1.0, 'corralling': 1.0, 'bungee': 1.0, 'the': 1.0, 'gate': 1.0, 'tad': 1.0, 'unsightly': 1.0, 'beautifully': 1.0, 'somebody': 1.0}
Word element => {'before': 1.0, 'gates': 1.0, 'other': 1.0, 'house': 1.0, 'my': 2.0, 'cheaper': 1.0, 'easy': 1.0, 'safe': 1.0, 'and': 1.0, 'on': 1.0, 'wasted': 1.0, 'gate': 2.0, 'well': 1.0, 'a': 1.0, 'would': 1.0, 'sucessfully': 1.0, 'many': 1.0, 'is': 3.0, 'one': 1.0, 'study': 1.0, 'love': 1.0, 'worth': 1.0, 'absolutely': 1.0, 'only': 1.0, 'this': 2.0, 'it': 3.0, 'i': 2.0, 'buying': 1.0, 'to': 1.0, 'money': 2.0, 'hallway': 1.0, 'opporate': 1.0, 'the': 2.0, 'that': 1.0, 'block': 1.0, 'off': 1.0, 'in': 1.0}
Word element => {'one': 1.0, 'worth': 1.0, 'models': 1.0, 'tried': 1.0, 've': 1.0, 'necessary': 1.0, 'take': 1.0, 'only': 1.0, 'own': 1.0, 'their': 1.0, 'open': 1.0, 'able': 1.0, 'ones': 1.0, 'on': 1.0, 'your': 1.0, 'so': 1.0, 'not': 2.0, 'little': 2.0, 'very': 1.0, 'imaginable': 1.0, 'angle': 1.0, 'positioned': 1.0, 'extra': 1.0, 'plus': 1.0, 'such': 1.0, 'install': 1.0, 'great': 1.0, 'aware': 1.0, 'areas': 1.0, 'step': 1.0, 'i': 2.0, 'low': 1.0, 'what': 1.0, 'good': 1.0, 'off': 1.0, 'down': 1.0, 'especially': 1.0, 'this': 2.0, 'get': 1.0, 'easy': 4.0, 'optional': 1.0, 'area': 2.0, 'three': 1.0, 'toddlers': 1.0, 'but': 2.0, 'can': 2.0, 'more': 1.0, 'traffic': 2.0, 'is': 7.0, 'the': 4.0, 'gate': 2.0, 'cheaper': 1.0, 'over': 1.0, 'a': 5.0, 'see': 1.0, 'fit': 1.0, 'for': 2.0, 'using': 1.0, 'making': 1.0, 'and': 3.0, 'fireplace': 1.0, 'to': 8.0, 'as': 1.0, 'any': 2.0, 'use': 1.0, 'limits': 1.0, 'reinstall': 1.0, 'surrounding': 1.0, 'if': 2.0, 'it': 6.0, 'higher': 1.0, 'itself': 1.0, 'in': 2.0, 'be': 3.0, 'babies': 1.0, 'that': 3.0, 'small': 1.0, 'base': 1.0, 'segments': 2.0, 'you': 2.0, 'also': 1.0, 'will': 2.0, 'paying': 1.0, 'need': 1.0, 'there': 1.0, 'mean': 1.0, 'picture': 1.0}
Word element => {'on': 1.0, 'you': 1.0, 'unless': 1.0, 'engage': 1.0, 'doesn': 2.0, 'open': 1.0, 'bought': 1.0, 'have': 1.0, 'these': 1.0, 'gate': 3.0, 'the': 8.0, 'great': 1.0, 'i': 2.0, 'two': 1.0, 'at': 2.0, 'of': 1.0, 'down': 1.0, 'bottom': 1.0, 'well': 1.0, 'amazon': 1.0, 'is': 2.0, 'door': 1.0, 'stay': 1.0, 'not': 2.0, 'push': 1.0, 'gates': 1.0, 'which': 1.0, 'noticeably': 1.0, 'unlike': 1.0, 'made': 1.0, 'less': 2.0, 'number': 1.0, 'first': 1.0, 'it': 2.0, 'and': 2.0, 'other': 1.0, 'model': 1.0, 'same': 1.0, 'shut': 1.0, 'latches': 1.0, 'top': 2.0, 't': 2.0, 's': 1.0, 'second': 1.0, 'thus': 1.0, 'only': 1.0, 'much': 1.0, 'will': 1.0, 'secure': 1.0, 'also': 1.0, 'from': 1.0, 'properly': 1.0, 'latch': 1.0}
Word element => {'out': 1.0, 'can': 1.0, 'not': 1.0, 'close': 1.0, 'open': 1.0, 'family': 1.0, 'we': 1.0, 'that': 1.0, 'our': 2.0, 'so': 1.0, 'between': 1.0, 'gate': 3.0, 'a': 2.0, 'toddler': 1.0, 'but': 1.0, 'doesn': 1.0, 'wide': 1.0, 'space': 1.0, 'for': 1.0, 'kitchen': 1.0, 'to': 1.0, 'look': 1.0, 'figure': 1.0, 'is': 1.0, 'really': 1.0, 'easy': 2.0, 'needed': 1.0, 'room': 1.0, 'the': 1.0, 't': 1.0, 'works': 1.0, 'and': 3.0, 'perfectly': 1.0, 'terribly': 1.0, 'this': 1.0, 'it': 2.0, 'cheesy': 1.0}
Word element => {'really': 1.0, 'is': 3.0, 'an': 1.0, 'only': 1.0, 'older': 1.0, 'can': 1.0, 'work': 1.0, 'but': 1.0, '2': 1.0, 'ones': 1.0, 'without': 1.0, 'the': 3.0, 'gate': 4.0, 'a': 1.0, 'unusually': 1.0, 'i': 2.0, 'have': 1.0, 'you': 1.0, 'way': 1.0, 'been': 1.0, 'that': 2.0, 'baby': 1.0, 'any': 1.0, 'to': 3.0, 'fit': 2.0, 'for': 4.0, 'little': 2.0, 'enough': 2.0, 'foot': 1.0, 'section': 1.0, 'which': 1.0, 'put': 1.0, 'your': 1.0, 'needs': 1.0, 'also': 1.0, 'would': 2.0, 'each': 1.0, 've': 1.0, 'hard': 1.0, 'part': 1.0, 'area': 1.0, 'easy': 1.0, 'bend': 1.0, 'my': 1.0, 'lost': 1.0, 'this': 2.0, 'kids': 1.0, 'difficult': 1.0, 'me': 1.0, 'stay': 1.0}
Word element => {'everyone': 1.0, 'recommend': 1.0, 'slips': 1.0, 'if': 1.0, 'down': 1.0, 'even': 1.0, 'the': 3.0, 'gate': 2.0, 'take': 1.0, 'installed': 1.0, 'can': 1.0, 'right': 1.0, 'wall': 1.0, 'don': 1.0, 'up': 1.0, 'install': 1.0, 'nice': 1.0, 'need': 1.0, 'and': 1.0, 'sturdy': 1.0, 'fairly': 1.0, 'are': 1.0, 'product': 1.0, 'grooves': 1.0, 'for': 1.0, 'easy': 1.0, 'area': 1.0, 'wide': 1.0, 'to': 2.0, 'our': 1.0, 'all': 1.0, 'it': 2.0, 'with': 1.0, 'perfect': 1.0, 'this': 2.0, 'at': 1.0, 'you': 2.0, 'times': 1.0, 'just': 1.0, 'that': 1.0, 'into': 2.0, 'hardware': 1.0, 'is': 1.0, 't': 1.0, 'we': 1.0, 'very': 1.0, 'pleased': 1.0, 'conveniently': 1.0, 'i': 1.0, 'would': 1.0}
Word element => {'mounts': 1.0, 'because': 1.0, 'of': 2.0, 'each': 1.0, 'in': 1.0, 'other': 1.0, 'worry': 1.0, 'have': 2.0, 'you': 2.0, 'much': 1.0, 'makes': 1.0, 'on': 2.0, 'up': 1.0, 'set': 1.0, 'mounting': 1.0, 'fact': 1.0, 'wall': 1.0, 'about': 2.0, 'researched': 1.0, 'easy': 3.0, 'these': 1.0, 'add': 1.0, 'started': 1.0, 'fireplace': 1.0, 'son': 1.0, 'numerous': 1.0, 'best': 1.0, 'little': 1.0, 'very': 2.0, 'open': 1.0, 'low': 1.0, 'were': 1.0, 'higher': 1.0, 'it': 2.0, 'around': 1.0, 'is': 6.0, '24': 1.0, 'really': 1.0, 'deal': 1.0, 'the': 11.0, 'gate': 5.0, 'with': 1.0, 'baseboards': 1.0, 'crawl': 1.0, 'easier': 1.0, 'well': 1.0, 'stairs': 1.0, 'a': 3.0, 'go': 1.0, 'we': 4.0, 'and': 4.0, 'soon': 1.0, 'as': 4.0, 'our': 3.0, 'to': 12.0, 'was': 2.0, 'for': 2.0, 'one': 1.0, 'liked': 1.0, 'dont': 1.0, 'this': 5.0, 'found': 1.0, 'be': 1.0, 'gates': 2.0, 'fairly': 1.0, 'great': 1.0, 'install': 3.0, 'sturdy': 1.0, 'inch': 1.0, 'looking': 1.0, 'buy': 1.0, 'baseboard': 1.0, 'two': 1.0, 'i': 1.0, 'extension': 1.0, 'had': 2.0, 'what': 1.0}
Word element => {'dimensions': 1.0, 'with': 1.0, 'fickle': 1.0, 'stuck': 1.0, 'anyone': 1.0, 'straight': 1.0, 'then': 1.0, 'you': 1.0, 'when': 1.0, 'highly': 1.0, 'stronger': 1.0, 'strong': 1.0, 'sturdy': 1.0, 'studs': 1.0, 'next': 1.0, 'that': 1.0, 'wanted': 1.0, 'i': 3.0, 'it': 3.0, 'walked': 1.0, 'this': 2.0, 'wouldn': 1.0, 'for': 1.0, 'love': 1.0, 'house': 1.0, 'recommend': 1.0, 'doesn': 1.0, 'have': 3.0, 'front': 4.0, 'curved': 1.0, 'the': 8.0, 'gate': 5.0, 'live': 1.0, 'in': 6.0, 'also': 2.0, 'much': 1.0, 'town': 1.0, 'staircase': 1.0, 'so': 2.0, 'our': 1.0, 'to': 3.0, 'any': 1.0, 'located': 1.0, 'wall': 1.0, 'about': 1.0, 'getting': 1.0, 't': 2.0, 'a': 4.0, 'we': 2.0, 'stairs': 3.0, 'would': 3.0, 'move': 1.0, 'from': 1.0, 'pressured': 1.0, 'son': 1.0, 'door': 3.0, 'rather': 1.0, 'of': 2.0, 'daddy': 1.0, 'and': 4.0, 'block': 2.0, 'very': 1.0, 'access': 1.0, 'worry': 1.0, 'my': 1.0, 'is': 3.0, 'incase': 1.0}
Word element => {'i': 1.0, 'sturdy': 1.0, 'bend': 2.0, 'in': 6.0, 'extension': 5.0, 'very': 2.0, 'not': 3.0, 'give': 1.0, 'overlap': 1.0, 'have': 1.0, 'actually': 1.0, 'for': 1.0, 'bows': 1.0, 'fit': 1.0, 'are': 2.0, 'gates': 2.0, 's': 1.0, 'stairs': 2.0, 'across': 2.0, 'and': 11.0, 'highly': 1.0, 'this': 2.0, 'it': 10.0, 'purchase': 1.0, 'only': 1.0, 'living': 1.0, 'opening': 2.0, 'room': 1.0, 'but': 1.0, 'bought': 3.0, 'kinds': 1.0, 'has': 1.0, 'cover': 1.0, 'snap': 2.0, 'can': 3.0, 'so': 3.0, 'time': 1.0, 'plate': 1.0, 'different': 3.0, 'two': 3.0, 'screwed': 1.0, 'wished': 1.0, 'area': 3.0, 'easy': 1.0, 'of': 3.0, 'the': 24.0, 'gate': 7.0, 'elongate': 3.0, 'disappointed': 1.0, 'our': 2.0, 'straight': 2.0, 'against': 1.0, 'to': 9.0, 'kidco': 2.0, '84': 1.0, 'was': 4.0, 'an': 4.0, 'configure': 4.0, 'had': 1.0, 'took': 2.0, 'we': 6.0, 'then': 4.0, 'screw': 4.0, 'us': 2.0, 'mark': 2.0, 'pricey': 1.0, 'supports': 1.0, 'wall': 3.0, 'on': 6.0, 'over': 1.0, 'less': 1.0, 'up': 1.0, 'go': 1.0, 'hour': 1.0, 'side': 1.0, 'almost': 1.0, 'did': 1.0, 'add': 2.0, 'buy': 1.0, 'size': 1.0, 'pieces': 1.0, 'you': 6.0, 'space': 1.0, 'is': 3.0, 'at': 1.0, 'need': 1.0, 'use': 1.0, 'bottom': 1.0, 'out': 2.0, '20': 1.0, 'that': 1.0, 'recommend': 1.0, 'together': 1.0, 'piece': 2.0, 'just': 2.0, 'some': 1.0, 'pole': 1.0, 'ways': 1.0, 'mount': 1.0, 'holes': 1.0, 'minutes': 1.0, 'mounted': 1.0}
Word element => {'ends': 1.0, 'of': 1.0, 'just': 1.0, 'get': 1.0, 'if': 1.0, 'or': 1.0, 'middle': 1.0, 'you': 2.0, 'exact': 1.0, 'screw': 1.0, 'must': 1.0, 'have': 1.0, 'some': 1.0, 'gates': 1.0, 'are': 1.0, 'with': 1.0, 'quibbles': 1.0, 'end': 1.0, 'only': 2.0, 'fact': 1.0, 'my': 1.0, 'm': 1.0, 'i': 1.0, '2': 1.0, 'but': 1.0, 'mudroom': 1.0, 'bottom': 1.0, 'had': 2.0, 'our': 2.0, 'to': 6.0, 'was': 1.0, 'point': 2.0, 'that': 3.0, 'into': 1.0, 'be': 1.0, 'served': 1.0, 'plastic': 1.0, 'feet': 1.0, 'adjustable': 1.0, 'kitchen': 1.0, 'entry': 2.0, 'one': 2.0, 'cheesey': 1.0, 'sliding': 1.0, 'not': 1.0, 'wow': 1.0, 'previously': 1.0, 'never': 1.0, 'were': 1.0, 'unbelievably': 1.0, 'extenders': 1.0, 'and': 1.0, 'block': 2.0, 'evenflow': 2.0, 's': 1.0, 'we': 3.0, 'a': 4.0, 'stabilize': 1.0, 'the': 10.0, 'gate': 5.0, 'make': 1.0, 'on': 1.0, '64': 1.0, 'wide': 1.0, 'thing': 1.0, 'slide': 1.0, 'from': 3.0, 'in': 1.0, 'method': 1.0, 'pivot': 1.0, 'at': 3.0, 'an': 2.0, 'solid': 1.0, 'cannot': 1.0, 'using': 1.0, 'which': 1.0, 'mount': 1.0, 'opened': 1.0, 'it': 4.0, 'this': 3.0, 'kept': 1.0, 'so': 1.0, 'glad': 1.0, 'rubber': 1.0, 'changed': 2.0, 'fit': 1.0, 'actually': 1.0, 'expensive': 1.0}
Word element => {'daughter': 1.0, 'about': 1.0, 'wish': 1.0, 'recommend': 1.0, 'absolutely': 1.0, 'had': 1.0, 'to': 1.0, 'walls': 1.0, 'stairway': 1.0, 'haven': 1.0, 'actually': 1.0, 'is': 3.0, 'known': 1.0, 'versatile': 1.0, 'my': 1.0, 'accomodates': 1.0, 'mounted': 1.0, 'gate': 2.0, 'with': 1.0, 'it': 4.0, 'first': 1.0, 'this': 2.0, 'adjustable': 1.0, 'the': 3.0, 't': 1.0, 'and': 1.0, 'oldest': 1.0, 'so': 1.0, 'sturdy': 1.0, 'irregular': 1.0, 'enough': 1.0, 'our': 1.0, 'that': 1.0, 'i': 4.0, 'even': 1.0}
Word element => {'thing': 1.0, 'entertaiment': 1.0, 'treadmill': 1.0, 'like': 1.0, 'area': 1.0, 'out': 1.0, 'work': 1.0, 'opening': 1.0, 'large': 1.0, 'anything': 1.0, 'center': 1.0, 'need': 1.0, 'this': 1.0, 'it': 3.0, 'price': 1.0, 'tell': 1.0, 'simple': 1.0, 'in': 1.0, 'one': 1.0, 'for': 4.0, 'works': 1.0, 'what': 1.0, 'lemme': 1.0, 'buy': 1.0, 'or': 2.0, 'pay': 1.0, 'stairs': 1.0, 'fireplace': 1.0, 'and': 1.0, 'get': 1.0, 'you': 4.0, 's': 1.0, 'amazing': 1.0, 'regret': 1.0, 'wont': 1.0, 'a': 3.0, 'gate': 1.0}
Word element => {'there': 1.0, 'secure': 1.0, 'safe': 1.0, 'stress': 1.0, 'such': 1.0, 'was': 2.0, 'configure': 2.0, 'penny': 1.0, 'every': 1.0, 'had': 1.0, 'purchased': 1.0, 'worth': 1.0, 'we': 2.0, 's': 1.0, 'it': 5.0, 'this': 3.0, 'is': 3.0, 'the': 5.0, 'gate': 6.0, 'cannot': 1.0, 'love': 1.0, 'for': 1.0, 'fit': 1.0, 'how': 1.0, 'wonderful': 1.0, 'opening': 1.0, 'enough': 1.0, 'spending': 1.0, 'and': 6.0, '80': 1.0, 'to': 2.0, 'our': 1.0, 'that': 1.0, 'returning': 1.0, 'easy': 2.0, 'because': 1.0, 'than': 1.0, 'i': 2.0, 'junk': 1.0, 'install': 1.0, 'ended': 1.0, 'cheaper': 1.0, 'up': 1.0, 'open': 1.0, 'best': 1.0, 'extra': 1.0, 'close': 1.0, 'out': 1.0}
Word element => {'penny': 1.0, 'attach': 1.0, 'didn': 1.0, 'worth': 1.0, 'or': 1.0, 'wrong': 1.0, 'poorly': 1.0, 'those': 1.0, 'guess': 1.0, 'my': 1.0, 'places': 1.0, 'right': 1.0, 'in': 1.0, 'studs': 2.0, 'have': 1.0, 'you': 1.0, 'if': 1.0, 'great': 1.0, 'install': 1.0, 'and': 2.0, 'rated': 1.0, 'quality': 1.0, 'anticipated': 1.0, 'either': 1.0, 'had': 1.0, 'every': 1.0, 'attractive': 1.0, 'safe': 1.0, 'him': 1.0, 'will': 1.0, 'know': 1.0, 'installed': 1.0, 'power': 1.0, 'than': 1.0, 'because': 1.0, 'now': 1.0, 'is': 1.0, 'more': 2.0, 'but': 1.0, 'were': 1.0, 'online': 1.0, 'old': 1.0, 'took': 1.0, 'anything': 1.0, 'with': 2.0, 'first': 2.0, 'this': 1.0, 'to': 2.0, 'our': 2.0, 'as': 2.0, 'has': 1.0, 'skeptical': 1.0, 'of': 2.0, 'who': 1.0, 'keep': 1.0, 'at': 1.0, 'simple': 1.0, 'drill': 1.0, 'relaxed': 1.0, 'buy': 1.0, 'extra': 1.0, 'very': 3.0, 'little': 1.0, 'tumble': 1.0, 't': 1.0, 'we': 6.0, 'a': 3.0, 's': 3.0, 'about': 1.0, 'awesome': 1.0, 'his': 1.0, 'sturdy': 2.0, 'easy': 2.0, 'mechanics': 1.0, 'bought': 1.0, 'product': 1.0, 'for': 2.0, 'gate': 3.0, 'the': 4.0, 'top': 1.0, 'wide': 1.0, 'that': 1.0, 'been': 1.0, 'stairway': 1.0, '5': 1.0, 'minutes': 1.0, '7': 1.0, 'after': 1.0, 'so': 1.0, 'it': 8.0, 'month': 1.0, 'are': 1.0, 'much': 1.0}
Word element => {'phenomenal': 1.0, 'is': 1.0, 'and': 2.0, 'our': 1.0, 'these': 1.0, 'the': 3.0, 'at': 2.0, 'stairs': 1.0, 'one': 2.0, 'use': 1.0, 'around': 1.0, 'top': 1.0, 'railing': 1.0, 'of': 2.0, 'bottom': 1.0, 'all': 1.0, 'have': 1.0, 'a': 1.0, 'wrought': 1.0, 'iron': 1.0, 'we': 2.0, 'goes': 1.0, 'way': 1.0, 'this': 1.0, 'it': 2.0}
Word element => {'install': 1.0, 'it': 1.0, 'how': 1.0, 'at': 1.0, 'suprised': 1.0, 'and': 2.0, 'use': 1.0, 'purchased': 1.0, 'we': 1.0, 'i': 1.0, 'others': 1.0, 'is': 1.0, 'many': 1.0, 'so': 1.0, 'else': 1.0, 'everything': 1.0, 'however': 1.0, 'very': 2.0, 'worked': 1.0, 'son': 1.0, 'as': 1.0, 'were': 1.0, 'kidco': 1.0, 'hesitant': 1.0, 'on': 1.0, 'gate': 3.0, 'well': 1.0, 'a': 2.0, 'down': 1.0, 'to': 2.0, 'was': 1.0, 'the': 2.0, 'my': 1.0, 'in': 1.0, 'knocked': 1.0, 'wonderful': 1.0, 'spending': 1.0, 'easy': 2.0, 'lot': 1.0, 'of': 1.0, 'money': 1.0}
Word element => {'sturdy': 1.0, 'attached': 1.0, 'that': 3.0, 'angles': 1.0, 'would': 2.0, 'this': 1.0, 'it': 4.0, 'he': 1.0, 'wall': 1.0, 'not': 2.0, 'our': 1.0, 'to': 3.0, 'wanted': 1.0, 'product': 1.0, 'him': 1.0, 'be': 2.0, 'and': 2.0, 'very': 1.0, 'from': 1.0, 'helpful': 1.0, 'push': 1.0, 'are': 3.0, 'but': 2.0, 'secure': 1.0, 'will': 2.0, 'bent': 1.0, 'doesn': 1.0, 'bars': 1.0, 'the': 5.0, 'gate': 1.0, 'keep': 2.0, 'better': 1.0, 'watch': 1.0, 'falling': 1.0, 'down': 2.0, 'a': 1.0, 'we': 3.0, 't': 1.0, 'stairs': 1.0, 'fall': 1.0, 'is': 1.0, 'because': 1.0, 'than': 1.0, 'nothing': 1.0, 'son': 1.0, 'still': 1.0, 'have': 1.0, 'closely': 1.0, 'so': 1.0}
Word element => {'opening': 1.0, 'problem': 1.0, 'not': 1.0, 'fence': 1.0, 'setting': 1.0, 'while': 1.0, 'hand': 1.0, 'moderately': 1.0, 'position': 1.0, 'would': 1.0, 'complaint': 1.0, 'other': 1.0, 'hazards': 1.0, 'but': 1.0, 'can': 1.0, 'now': 1.0, 'so': 1.0, 'made': 1.0, 'easier': 1.0, 'has': 1.0, 'holding': 1.0, 'up': 2.0, 'daily': 1.0, 'enjoys': 1.0, 'she': 1.0, 'it': 1.0, 'month': 1.0, '9': 1.0, 'design': 1.0, 'touch': 1.0, 'i': 3.0, 'was': 1.0, 'standing': 1.0, 'had': 1.0, 'is': 5.0, 'on': 3.0, 'coating': 1.0, 'wall': 2.0, 'do': 1.0, 'certain': 1.0, 'much': 1.0, 'only': 3.0, 'adjusting': 1.0, 'with': 1.0, 'life': 1.0, 'by': 2.0, 'great': 1.0, 'nice': 1.0, 'to': 7.0, 'attaching': 1.0, 'old': 1.0, 'pleasantly': 1.0, 'metal': 1.0, 'necessary': 1.0, 'of': 4.0, 'gate': 4.0, 'hinges': 2.0, 'the': 16.0, 'surprised': 1.0, 'bars': 2.0, 'am': 1.0, 'figure': 1.0, 'construction': 1.0, 'very': 2.0, 'too': 1.0, 'and': 4.0, 'side': 1.0, 'fireplace': 1.0, 'get': 1.0, 'easy': 1.0, 'a': 2.0, 't': 1.0, 'might': 1.0, 'sections': 1.0, 'needed': 1.0, 'out': 1.0, 'painful': 1.0, 'this': 3.0, 'wish': 1.0, 'between': 1.0, 'they': 1.0, 'drywall': 1.0, 'into': 1.0, 'that': 4.0, 'kidco': 1.0, 'my': 3.0, 'anchors': 1.0, 'be': 2.0, 'mechanism': 2.0, 'bought': 1.0, 'secure': 1.0, 'also': 2.0, 'black': 1.0, 'suggested': 1.0, 'pleased': 1.0}
Word element => {'on': 1.0, 'installing': 1.0, 'them': 2.0, 'to': 1.0, 'wall': 1.0, 'mount': 1.0, 'was': 1.0, 'together': 1.0, 'tough': 1.0, 'but': 1.0, 'i': 1.0, 'pretty': 1.0, 'manage': 1.0, 'the': 1.0, 'somehow': 1.0}
Word element => {'kidco': 1.0, 'another': 1.0, 'buy': 1.0, 'support': 1.0, 'lack': 1.0, 'and': 1.0, 'design': 1.0, 'poor': 1.0, 'based': 1.0, 'broken': 1.0, 'cent': 1.0, 'from': 1.0, 'part': 2.0, 'they': 2.0, 'product': 1.0, 'for': 2.0, 'parts': 2.0, 'that': 3.0, 'replacement': 1.0, 'sell': 2.0, 'retail': 1.0, 'longer': 1.0, 'more': 1.0, 'is': 4.0, 'warranty': 1.0, 'i': 2.0, 'purchased': 1.0, 'instead': 1.0, 'a': 5.0, 'configurgate': 1.0, 'now': 1.0, 'outside': 1.0, 'to': 1.0, 'of': 2.0, 'the': 3.0, 'gate': 2.0, 'on': 2.0, 'near': 1.0, 'hinge': 1.0, 'point': 1.0, '50': 1.0, 'offered': 1.0, 'designed': 1.0, 'probably': 1.0, 'would': 1.0, 'new': 2.0, 'almost': 1.0, 'price': 2.0, 'plastic': 1.0, 'door': 1.0, '100': 1.0, 'gouging': 1.0, 'supports': 1.0, 'whereas': 1.0, 'whole': 1.0, 'no': 1.0, 'about': 1.0, 'poorly': 1.0, 'me': 1.0, 'not': 2.0, 'much': 1.0, 'it': 1.0}
Word element => {'penny': 1.0, 'worth': 1.0, 'anyone': 1.0, 'every': 1.0, 'highly': 1.0, 'worse': 1.0, '3': 1.0, 'about': 2.0, 'enough': 1.0, 'for': 2.0, 'fit': 1.0, 'cannot': 1.0, 'in': 2.0, 'i': 2.0, 'feature': 1.0, 'daughters': 1.0, 'nice': 1.0, 'ways': 1.0, 'we': 1.0, 'a': 2.0, 'this': 5.0, 'only': 1.0, 'it': 2.0, 'years': 1.0, 'both': 1.0, 'say': 1.0, 'is': 5.0, 'door': 1.0, 'triplet': 1.0, 'last': 1.0, 'good': 1.0, 'sturdy': 1.0, 'gate': 3.0, 'the': 5.0, 'such': 1.0, 'that': 2.0, 'very': 1.0, 'and': 3.0, 'swings': 1.0, 'things': 1.0, 'none': 1.0, 'have': 1.0, 'able': 1.0, 'home': 1.0, 'wear': 1.0, 'open': 1.0, 'entryway': 1.0, 'one': 1.0, 'would': 2.0, 'large': 1.0, 'opening': 1.0, 'recommend': 1.0, 'was': 1.0, 'floorplan': 1.0, 'our': 2.0, 'to': 3.0, 'withstand': 1.0, 'everything': 1.0, 'my': 1.0, 'did': 1.0}
Word element => {'others': 1.0, 'pick': 1.0, 'used': 1.0, 'they': 1.0, 'after': 1.0, 'about': 1.0, 'parents': 1.0, 'also': 1.0, 'are': 1.0, 'friends': 1.0, 'from': 1.0, 'compliments': 1.0, 'many': 1.0, 'had': 2.0, 'at': 1.0, 'who': 2.0, 'anyone': 1.0, 'i': 1.0, 'again': 1.0, 'easy': 1.0, 'move': 1.0, 'us': 1.0, 'with': 1.0, 'on': 1.0, '3': 1.0, 'and': 2.0, 'block': 1.0, 'recommend': 1.0, 'was': 2.0, 'openings': 1.0, 'now': 2.0, 'my': 2.0, 'baby': 1.0, 'for': 5.0, 'hallway': 2.0, 'don': 1.0, 'over': 1.0, 'this': 4.0, 'it': 7.0, 'only': 1.0, 'son': 2.0, 'years': 1.0, 'best': 1.0, 'bring': 1.0, 'install': 2.0, 'big': 1.0, 'very': 1.0, 'year': 1.0, 'open': 1.0, 'gate': 5.0, 'the': 4.0, 'is': 4.0, 'second': 1.0, 'one': 2.0, 'bought': 1.0, 't': 1.0, 'ago': 1.0, 'a': 3.0, 'we': 4.0, 'wanted': 1.0, 'simple': 2.0, 'looking': 1.0, 'ever': 1.0, 'been': 1.0, 'initially': 1.0, 'have': 1.0, 'in': 1.0, 'different': 1.0, 'off': 1.0, 'enough': 1.0, 'house': 2.0, 'any': 1.0, 'to': 5.0, 'our': 3.0, 'old': 1.0, '2': 1.0, 'can': 1.0, 'large': 2.0, 'by': 1.0, 'himself': 1.0, 'which': 1.0}
Word element => {'pets': 1.0, 'for': 1.0, 'highly': 1.0, 'get': 1.0, 're': 1.0, 'useful': 1.0, 'everyday': 1.0, 'abuse': 1.0, 'his': 1.0, 'up': 2.0, 'of': 1.0, 'holding': 1.0, 'old': 1.0, 'step': 1.0, 'got': 1.0, 'now': 1.0, 'constant': 1.0, 'be': 1.0, 'kids': 1.0, 'this': 2.0, 'he': 1.0, 'it': 2.0, '1': 1.0, 'soon': 1.0, 'and': 2.0, 'planning': 1.0, 'months': 2.0, 'back': 1.0, 'will': 1.0, 'my': 1.0, 'when': 1.0, 'but': 1.0, '2': 3.0, 'gate': 1.0, 'the': 1.0, 'a': 1.0, 'we': 1.0, 't': 1.0, 'these': 1.0, 'dog': 1.0, '9': 1.0, 'recommended': 1.0, 'likes': 1.0, 'as': 1.0, 'to': 6.0, 'all': 1.0, 'have': 1.0, 'rattle': 1.0, 'which': 1.0, 'like': 1.0, 'was': 1.0, 'doesn': 1.0, 'crazy': 1.0, 'still': 1.0, 'son': 1.0, 'seem': 1.0, 'budge': 1.0, 'at': 1.0, 'happens': 1.0, 'its': 1.0, 'continue': 1.0}
Word element => {'on': 1.0, 'there': 1.0, 'tubes': 1.0, 'fast': 1.0, 'one': 1.0, 'climb': 1.0, 'are': 1.0, 'gates': 1.0, 'other': 1.0, 'many': 1.0, 'unlike': 1.0, 'ease': 1.0, 'from': 1.0, 'need': 1.0, 'if': 1.0, 'secure': 1.0, 'install': 1.0, 'mounting': 2.0, 'no': 1.0, 'wall': 1.0, 'boy': 1.0, 'consoles': 1.0, 'game': 1.0, 'husband': 1.0, 'was': 2.0, 'originally': 1.0, 'not': 2.0, 'front': 1.0, 'off': 1.0, 'tv': 3.0, 'into': 2.0, 'corner': 1.0, 'us': 1.0, 'remove': 1.0, 'it': 3.0, 'kids': 1.0, 'this': 2.0, 'with': 2.0, 'as': 1.0, 'to': 6.0, 'latches': 1.0, 'our': 2.0, 'ledges': 1.0, 'used': 1.0, 'i': 1.0, 'along': 1.0, 'step': 1.0, '24': 1.0, 'extension': 1.0, 'an': 1.0, 'can': 1.0, 'but': 2.0, 'my': 1.0, 'another': 1.0, 'them': 1.0, 'baby': 2.0, 'and': 5.0, 'easy': 1.0, 'get': 2.0, 'purchased': 1.0, 'because': 2.0, 'having': 1.0, 'in': 1.0, 'screen': 1.0, 'of': 4.0, 'direction': 1.0, 'stand': 1.0, '8': 1.0, 'bottom': 1.0, 'a': 1.0, 't': 2.0, 'might': 1.0, 'detaches': 1.0, 'obstruct': 1.0, 'the': 12.0, 'gate': 3.0, 'didn': 1.0, 'you': 1.0, 'easily': 1.0, 'very': 1.0, 'little': 1.0, 'access': 1.0, 'for': 3.0}
Word element => {'first': 1.0, 'climbed': 1.0, '12': 1.0, 'taller': 1.0, 'also': 1.0, 'couldn': 1.0, 'pillows': 1.0, 'told': 1.0, 'when': 1.0, 'understood': 1.0, 'however': 1.0, 'of': 1.0, 'open': 1.0, 'why': 1.0, 'figured': 1.0, 'daughter': 1.0, 'that': 2.0, 'issue': 1.0, 'climber': 1.0, 'only': 1.0, 'oldest': 1.0, 'other': 1.0, 'with': 1.0, 'm': 1.0, 'which': 1.0, 'like': 2.0, 'feel': 1.0, 'over': 1.0, 'don': 1.0, 've': 1.0, 'age': 1.0, 'in': 7.0, 'installed': 1.0, 'than': 1.0, 'having': 1.0, 'favorite': 1.0, 'this': 2.0, 'children': 3.0, 'old': 1.0, 'young': 1.0, 'love': 1.0, 'for': 2.0, 'through': 1.0, 'then': 1.0, 'far': 1.0, 'surround': 1.0, 'absolute': 1.0, 'my': 5.0, 'how': 1.0, 'addition': 1.0, 'the': 10.0, 'gate': 8.0, 'i': 8.0, '4': 1.0, 'home': 2.0, 'daycare': 1.0, 'average': 1.0, 'used': 2.0, 'townhouse': 1.0, 'by': 2.0, 'large': 1.0, 'is': 5.0, 'obeyed': 1.0, 'own': 1.0, 'an': 1.0, '2': 1.0, 'but': 1.0, 'to': 3.0, 'now': 1.0, 'run': 1.0, 'fireplace': 1.0, 'have': 2.0, 'at': 1.0, 'playroom': 1.0, 'her': 1.0, 'different': 1.0, 'baby': 2.0, 'gates': 2.0, 'go': 1.0, 't': 2.0, 'sturdiest': 1.0, 'a': 3.0, 'we': 1.0, 'attractive': 1.0, 'stacked': 1.0, 'trapped': 1.0, 'previous': 1.0, 'use': 1.0, 'out': 1.0, 'keeping': 2.0, 'too': 1.0, 'and': 3.0, 'across': 1.0, 'month': 1.0, 'she': 3.0, 'it': 3.0, 'doorway': 2.0}
Word element => {'product': 1.0, 'places': 1.0, 'definately': 1.0, 'limit': 1.0, 'off': 1.0, 'expensive': 1.0, 'which': 1.0, 'them': 1.0, 'two': 1.0, 'i': 1.0, 'buy': 1.0, 'after': 1.0, 'however': 1.0, 'gates': 1.0, 'recommend': 1.0, 'cheaper': 1.0, 'needed': 2.0, 'other': 2.0, 'we': 3.0, 'display': 1.0, 'was': 1.0, 'to': 4.0, 'the': 1.0, 'great': 1.0, 'plan': 1.0, 'a': 2.0, 'gate': 2.0, 'is': 1.0, 'around': 2.0, 'worked': 1.0, 'of': 2.0, 'but': 1.0, 'put': 1.0, 'our': 2.0, 'tree': 1.0, 'fireplace': 1.0, 'perfectly': 1.0, 'and': 2.0, 'this': 4.0, 'it': 1.0, 'christmas': 2.0, 'looked': 1.0, 'nicer': 1.0, 'than': 1.0, 'use': 1.0, 'most': 1.0}
Word element => {'heartbeat': 1.0, 'same': 1.0, 'would': 1.0, 'i': 1.0, 'own': 1.0, 'old': 1.0, 'his': 1.0, 'year': 1.0, '5': 1.0, 'ones': 1.0, 'but': 1.0, 'easy': 1.0, 'or': 1.0, 'open': 3.0, 'in': 2.0, 'with': 1.0, 'stair': 1.0, 'balance': 1.0, 'you': 1.0, 'functioning': 1.0, 'still': 3.0, 'later': 1.0, 'child': 1.0, 'arms': 1.0, 'years': 1.0, 'my': 1.0, 'another': 1.0, 'now': 1.0, 'have': 3.0, 'this': 4.0, 'looks': 1.0, 'it': 3.0, 'moving': 1.0, 'picked': 1.0, 'your': 1.0, '3': 2.0, 'on': 3.0, 'is': 2.0, 'around': 1.0, 'top': 3.0, 'and': 2.0, 'well': 1.0, 'baby': 1.0, 'started': 1.0, 'not': 2.0, '1': 1.0, 'great': 1.0, 'gate': 3.0, 'the': 4.0, 'other': 1.0, 'oldest': 1.0, 'so': 1.0, 'gates': 1.0, 'used': 1.0, 'works': 1.0, 'to': 3.0, 'our': 2.0, 'as': 2.0, 'buy': 1.0, 'close': 1.0, 'day': 1.0, 'of': 1.0, 'we': 4.0, 'a': 3.0, 'stairs': 1.0, 'could': 1.0, 'cannot': 1.0, 'like': 1.0, 'little': 1.0, 'landing': 1.0, 'since': 1.0, 'at': 1.0, 'did': 1.0, 'for': 2.0, 'where': 1.0}
Word element => {'by': 1.0, 'market': 1.0, 'the': 1.0, 'on': 1.0, 'enough': 1.0, 't': 1.0, 'landslide': 1.0, 'say': 1.0, 'good': 1.0, 'things': 1.0, 'about': 1.0, 'can': 1.0, 'it': 1.0, 'system': 1.0, 'best': 1.0, 'a': 1.0, 'gate': 1.0}
Word element => {'use': 1.0, 'flexibility': 1.0, 'sold': 1.0, 'expensive': 1.0, 'jump': 1.0, 'cats': 1.0, 'his': 1.0, 'baby': 1.0, 'freely': 1.0, 'roam': 1.0, 'be': 1.0, 'want': 1.0, 'who': 1.0, 'doors': 1.0, 'when': 2.0, 'cannot': 1.0, 'himself': 1.0, 'worth': 1.0, 'figure': 1.0, 'month': 1.0, '13': 1.0, 'secure': 1.0, 'yet': 2.0, 'your': 1.0, 'automatically': 1.0, 'carrying': 1.0, 'while': 1.0, 'for': 2.0, 'well': 2.0, 'ease': 1.0, 'equally': 1.0, 'degree': 1.0, '90': 1.0, 'opened': 1.0, 'below': 1.0, 'my': 1.0, 'foyer': 1.0, 'to': 8.0, 'how': 1.0, 'our': 3.0, 'space': 1.0, 'main': 1.0, 'since': 1.0, 'old': 1.0, 'living': 1.0, 'only': 1.0, 'floor': 1.0, 'do': 3.0, 'would': 1.0, 'operation': 1.0, 'each': 1.0, 'gate': 3.0, 'out': 1.0, 'finished': 1.0, 'pic': 1.0, 'at': 2.0, 'is': 3.0, 'completely': 1.0, 'level': 1.0, 'crib': 1.0, 'line': 1.0, 'enough': 1.0, 'above': 1.0, 'open': 2.0, 'work': 1.0, 'but': 2.0, 'most': 2.0, 'people': 1.0, 'house': 1.0, 'see': 1.0, 'off': 1.0, 'easily': 2.0, 'that': 7.0, 'stairway': 2.0, 'case': 1.0, 'in': 6.0, 't': 2.0, 'swinging': 1.0, 'we': 4.0, 'whom': 2.0, 's': 2.0, 'a': 2.0, 'walls': 2.0, 'can': 3.0, 'so': 2.0, 'customize': 1.0, 'staircases': 1.0, 'weird': 1.0, 'delivered': 1.0, 'bedroom': 1.0, 'have': 5.0, 'terms': 1.0, 'handful': 1.0, 'with': 2.0, 'this': 1.0, 'standard': 1.0, 'having': 1.0, 'isn': 1.0, 'don': 1.0, 'up': 2.0, 'as': 1.0, 'basement': 1.0, 'and': 5.0, 'allow': 1.0, 'lead': 1.0, 'from': 2.0, 'sealing': 1.0, 'make': 2.0, 'hand': 1.0, 'furniture': 1.0, 'on': 1.0, 'gates': 5.0, 'are': 1.0, 'impossible': 2.0, 'able': 1.0, 'you': 4.0, 'angle': 2.0, 'them': 1.0, 'pets': 1.0, 'has': 2.0, 'asleep': 1.0, 'good': 1.0, 'which': 1.0, 'say': 1.0, 'extends': 1.0, 'mount': 1.0, 'course': 1.0, 'stay': 1.0, 'banisters': 1.0, 'if': 2.0, 'or': 1.0, 'need': 1.0, 'without': 1.0, 'works': 1.0, 'stairs': 1.0, 'remove': 1.0, 'hardware': 2.0, 'it': 7.0, 'home': 1.0, 'by': 1.0, 'pressing': 1.0, 'tabs': 1.0, 'similar': 1.0, 'top': 1.0, 'wall': 1.0, '2nd': 1.0, 'one': 6.0, 'the': 16.0, 'joints': 1.0, 'of': 8.0, 'person': 1.0, 'actually': 1.0, 'little': 1.0, 'two': 2.0, 'shut': 1.0, 'these': 1.0, 'issues': 1.0, 'mounted': 2.0, 'configured': 1.0}
Word element => {'use': 1.0, 'sturdy': 1.0, 'attractive': 1.0, 'brands': 1.0, 'got': 1.0, 'door': 1.0, 'a': 2.0, 'well': 1.0, 'high': 1.0, 'if': 1.0, 'hand': 1.0, 'but': 1.0, 'money': 1.0, 'was': 2.0, 'had': 1.0, 'is': 4.0, 'traffic': 1.0, 'you': 1.0, 'hour': 1.0, 'that': 1.0, 'with': 3.0, 'this': 2.0, 'it': 5.0, 'agree': 1.0, 'so': 1.0, 'have': 3.0, 'able': 1.0, 'expensive': 1.0, 'actually': 1.0, 'large': 1.0, 'other': 1.0, 'instal': 1.0, 'to': 3.0, 'as': 1.0, 'very': 1.0, 'me': 1.0, 'panels': 1.0, 'and': 2.0, 'especially': 1.0, 'down': 1.0, 'luck': 1.0, 'i': 4.0, 'two': 1.0, 'less': 1.0, 'extension': 1.0, 'an': 1.0, 'the': 1.0, 'gate': 1.0, 'myself': 1.0, 'in': 1.0, 'worth': 2.0, 'or': 1.0, 'area': 1.0, 'easy': 2.0}
Word element => {'planning': 1.0, 're': 1.0, 'boundaries': 1.0, 'safety': 1.0, 'more': 1.0, 'the': 2.0, 'within': 1.0, 'twin': 1.0, 'buy': 1.0, 'old': 1.0, 'months': 1.0, '14': 1.0, 'has': 1.0, 'it': 1.0, 'expensive': 1.0, 'a': 1.0, 'and': 1.0, 'every': 1.0, 'purchase': 1.0, 'researching': 1.0, 'stairways': 1.0, 'family': 1.0, 'configure': 1.0, 'to': 2.0, 'spending': 1.0, 'girls': 1.0, 'cabinet': 1.0, 'decided': 1.0, 'for': 1.0, 'one': 2.0, 'two': 2.0, 'hours': 1.0, 'in': 1.0, 'kept': 1.0, 'after': 1.0, 'gates': 1.0, 'penny': 1.0, 'we': 2.0, 'china': 1.0, 'around': 1.0, 'although': 1.0, 'kidco': 1.0, 'our': 3.0, 'crystal': 1.0, 'bit': 1.0, 'room': 1.0, 'worth': 1.0}
Word element => {'dusting': 1.0, 'furniture': 1.0, 'except': 1.0, 'useless': 1.0, 'll': 1.0, 'my': 1.0, 'be': 1.0, 'newborn': 1.0, 'couple': 1.0, 'soaks': 1.0, 'for': 1.0, 'in': 2.0, 'a': 2.0, 'single': 1.0, 'they': 1.0, 'these': 1.0, 'shot': 1.0, 'duty': 1.0, 'of': 1.0, 'months': 1.0}
Word element => {'with': 1.0, 'hoping': 1.0, 'm': 1.0, 'chinese': 1.0, 'some': 1.0, 'though': 1.0, 'rags': 1.0, 'burp': 1.0, 'good': 1.0, 'covers': 1.0, 'diaper': 1.0, 'be': 1.0, 'all': 1.0, 'to': 2.0, 'they': 3.0, 'of': 4.0, 'growing': 1.0, 'wick': 1.0, 'than': 1.0, 'were': 1.0, 'cloth': 1.0, 'when': 1.0, 'mom': 1.0, 'back': 1.0, 'me': 1.0, 'and': 5.0, 'ones': 1.0, 'prefolds': 1.0, 'believe': 1.0, 'the': 4.0, '2': 1.0, 'son': 1.0, 'seem': 1.0, 'siblings': 1.0, 'been': 1.0, 'used': 1.0, '12': 1.0, 'what': 1.0, 'made': 1.0, 'clothes': 1.0, 'quality': 1.0, 'them': 2.0, 'my': 3.0, 'gerber': 1.0, 'during': 1.0, 'make': 1.0, 'absorbent': 1.0, 'on': 1.0, '3': 1.0, 'luck': 1.0, 'through': 1.0, 'then': 1.0, 'diapers': 1.0, 'got': 1.0, 'must': 1.0, 'have': 2.0, 'do': 1.0, 'pack': 1.0, 'their': 1.0, 'better': 2.0, 've': 1.0, 'don': 1.0, 'up': 1.0, 'wash': 1.0, 'today': 1.0, 'bought': 2.0, 's': 1.0, 't': 1.0, 'we': 1.0, 'a': 1.0, 'very': 1.0, 'ripped': 1.0, 'at': 2.0, 'i': 5.0, 'seams': 1.0, 'first': 1.0}
Word element => {'what': 1.0, 'diapers': 1.0, 'surprised': 1.0, 'be': 1.0, 'have': 1.0, 'can': 1.0, 'size': 1.0, 'they': 1.0, 'perfect': 1.0, 'cloths': 1.0, 'burp': 1.0, 'recommended': 1.0, 'let': 1.0, 'absorbant': 1.0, 'my': 1.0, 't': 1.0, 'these': 2.0, 'the': 2.0, 'made': 1.0, 'are': 2.0, 'girlfriend': 1.0, 'yet': 1.0, 'using': 1.0, 'for': 1.0, 'after': 1.0, 'to': 1.0, 'was': 1.0, 'do': 1.0, 'and': 1.0, 'searching': 1.0, 'me': 1.0, 'tell': 1.0, 'you': 1.0, 'very': 1.0, 'best': 1.0, 'with': 1.0, 'it': 1.0, 'purchase': 1.0, 'i': 2.0}
Word element => {'durable': 1.0, 'and': 1.0, 'absorbant': 1.0, 'which': 1.0, 'brand': 1.0, 'cloths': 1.0, 'packaging': 1.0, 'descriptive': 1.0, 'more': 1.0, 'need': 1.0, 'package': 1.0, 'grades': 1.0, 'in': 2.0, 'would': 2.0, 'prefered': 1.0, 'be': 2.0, 'giving': 1.0, 'it': 2.0, 'premium': 2.0, 'reason': 1.0, 'alone': 2.0, 'let': 2.0, 'gerber': 1.0, 'to': 4.0, 'all': 1.0, 'not': 3.0, 'there': 1.0, 'give': 1.0, 'use': 1.0, 'me': 2.0, 'peek': 1.0, 'work': 2.0, 'levels': 1.0, 'can': 1.0, 'so': 2.0, 'thin': 1.0, 'burp': 3.0, 'baby': 2.0, 'thick': 1.0, 'gauzy': 1.0, 'extremely': 1.0, 'our': 1.0, 'how': 1.0, 'were': 2.0, 'touted': 1.0, 'won': 1.0, 'absorbing': 1.0, 'they': 6.0, 'as': 3.0, 'diaper': 2.0, 't': 4.0, 'a': 6.0, 'boo': 1.0, 'dish': 1.0, 'accurately': 1.0, 'these': 4.0, 'product': 1.0, 'products': 1.0, 'you': 4.0, 'kooshie': 1.0, 'local': 1.0, 'see': 1.0, 'enough': 1.0, 'house': 1.0, 'through': 1.0, 'cloth': 2.0, 'even': 3.0, 'didn': 1.0, 'for': 3.0, 'game': 1.0, 'the': 5.0, 'of': 4.0, 'type': 1.0, 'says': 1.0, 'mess': 1.0, 'well': 1.0, 'i': 3.0, 'only': 2.0, 'single': 1.0, 'very': 3.0, 'star': 1.0, 'that': 2.0, 'because': 1.0, 'soft': 1.0, 'choose': 1.0, 'clothes': 1.0, 'was': 1.0, 'refund': 1.0, 'store': 1.0, 'nice': 1.0, 'about': 1.0, 'on': 2.0, '3': 1.0, 'any': 1.0, 'your': 1.0, 'them': 1.0, 'guarantee': 1.0, 'know': 1.0, 'however': 1.0, 'quality': 1.0, 'their': 2.0, 'just': 1.0, 'don': 2.0, 'are': 5.0, 'diapers': 2.0, 'described': 1.0, 'when': 1.0, 'what': 1.0, 'getting': 1.0, 'think': 1.0, 'definitely': 1.0, 'if': 1.0, 'service': 1.0, 'have': 1.0, 'different': 2.0, 'from': 1.0, 'is': 2.0, 'at': 1.0}
Word element => {'passing': 1.0, 'package': 1.0, 'the': 1.0, 'open': 1.0, 'how': 1.0, 'tell': 1.0, 'hard': 1.0, 'is': 1.0, 'best': 1.0, 'at': 1.0, 'maybe': 1.0, 'worth': 1.0, 'load': 1.0, 'even': 1.0, 'do': 1.0, 'each': 1.0, 'would': 2.0, 'second': 1.0, 'so': 2.0, 'pregnancy': 1.0, 'with': 1.0, 'it': 3.0, 'my': 3.0, 'to': 5.0, 'suggest': 1.0, 'disappointment': 1.0, 'what': 1.0, 'had': 1.0, 'thin': 1.0, 'now': 1.0, 'dime': 1.0, 'buy': 1.0, 'i': 7.0, 'made': 1.0, 'figured': 1.0, '08': 1.0, 'these': 2.0, 'burp': 1.0, 'exact': 1.0, 'same': 1.0, 'birth': 1.0, 'them': 3.0, 'clothes': 2.0, 'gave': 1.0, 'in': 2.0, 'are': 3.0, 'big': 1.0, 'mistake': 1.0, 'they': 4.0, 'up': 1.0, 'wash': 1.0, 'cheaper': 1.0, 'can': 1.0, 'right': 1.0, 'see': 1.0, 'through': 3.0, 'unless': 1.0, 'you': 2.0, 'when': 1.0, 'again': 1.0, 'am': 1.0, 'have': 1.0, 'son': 1.0, 'fold': 1.0, 'half': 1.0, 'a': 3.0, 'going': 1.0, 'go': 1.0, 'just': 1.0, 'kinda': 1.0, 'not': 2.0, 'will': 2.0, 'make': 1.0, 'think': 1.0, 'on': 1.0}
Word element => {'we': 1.0, 'months': 1.0, 'piece': 1.0, 'for': 1.0, 'center': 1.0, 'fabric': 1.0, 'i': 2.0, 'then': 1.0, 'washed': 1.0, 'used': 1.0, 'these': 1.0, 'purchased': 1.0, 'to': 3.0, 'burp': 2.0, 'cloths': 2.0, 'them': 2.0, 'customize': 1.0, 'the': 2.0, 'make': 1.0, 'sewed': 1.0}
Word element => {'must': 1.0, 'if': 1.0, 'plastic': 1.0, 'that': 1.0, 'better': 1.0, 'did': 1.0, 'let': 1.0, 'use': 1.0, 'rash': 2.0, 'completely': 1.0, 'however': 1.0, 'disposable': 1.0, 'saver': 1.0, 'are': 2.0, 'two': 1.0, 'disposables': 1.0, 'i': 2.0, 'cloth': 2.0, 'used': 1.0, 'diapers': 2.0, 'will': 1.0, 'the': 3.0, 'mother': 1.0, 'some': 1.0, 'these': 3.0, 'diaper': 2.0, 'purchase': 1.0, 'my': 2.0, 'of': 1.0, 'breaths': 1.0, 'children': 1.0, 'with': 1.0, 'first': 1.0, 'and': 1.0, 'nude': 1.0, 'persistance': 1.0, 'your': 1.0, 'on': 1.0, 'were': 1.0, 'life': 1.0, 'excellent': 1.0, 'has': 2.0, 'again': 1.0, 'when': 1.0, 'you': 1.0, 'but': 1.0, 'can': 1.0, 'baby': 2.0, 'them': 1.0, 't': 1.0, 'a': 2.0, 'go': 1.0, 'much': 1.0}
Word element => {'recommend': 1.0, 'highly': 1.0, 'would': 1.0, 'up': 1.0, 'they': 1.0, 'care': 1.0, 'to': 1.0, 'them': 2.0, 'mostly': 1.0, 'burp': 1.0, 'wash': 1.0, 'newborn': 1.0, 'cloths': 1.0, 'everyday': 1.0, 'diapers': 2.0, 'i': 4.0, 'cloth': 2.0, 'changes': 1.0, 'and': 1.0, 'for': 2.0, 'love': 1.0, 'protection': 1.0, 'as': 2.0, 'changing': 1.0, 'my': 1.0, 'great': 1.0, 'diaper': 1.0, 'these': 2.0, 'the': 1.0, 'during': 1.0, 'extra': 1.0, 'use': 2.0, 'pad': 1.0}
Word element => {'chinese': 1.0, 'instead': 1.0, 'would': 1.0, 'good': 1.0, 'one': 2.0, 'if': 1.0, 'two': 1.0, 'soil': 1.0, 'liners': 1.0, 'when': 1.0, 'buy': 1.0, 'i': 1.0, 'used': 1.0, 'they': 1.0, 'my': 1.0, 'diaper': 1.0, 'these': 1.0, 'the': 1.0, 'are': 3.0, 'and': 1.0, 'only': 1.0, 'prefolds': 1.0, 'why': 1.0, 'as': 1.0, 'suffice': 1.0, 'not': 1.0, 'was': 1.0, 'child': 1.0, 'but': 1.0, 'back': 1.0, 'diapers': 2.0, 'an': 1.0, 'useful': 1.0, 'non': 1.0, 'infant': 1.0, 'like': 1.0, 'absorbent': 1.0, 'thin': 1.0}
Word element => {'again': 1.0, 'would': 1.0, 'last': 1.0, 'are': 1.0, 'fraying': 1.0, 'these': 1.0, 'cloths': 1.0, 'edges': 1.0, 'wash': 1.0, 'through': 1.0, 'one': 1.0, 'time': 1.0, 'so': 1.0, 'small': 1.0, 'they': 1.0, 'made': 1.0, 'disappointed': 1.0, 'of': 4.0, 'cheaply': 1.0, 'couple': 1.0, 'and': 2.0, 'very': 1.0, 'from': 1.0, 'son': 1.0, 'was': 2.0, 'had': 1.0, 'to': 4.0, 'were': 2.0, 'that': 1.0, 'great': 1.0, 'prefolds': 1.0, 'the': 4.0, 'sewn': 1.0, 'gerbers': 1.0, 'could': 1.0, 'a': 2.0, 'ago': 1.0, 'purchase': 1.0, 'my': 1.0, 'received': 1.0, 'not': 3.0, 'use': 1.0, 'quality': 1.0, 'them': 4.0, 'individually': 1.0, 'for': 1.0, 'sew': 1.0, 'i': 6.0, 'two': 1.0, 'excpecting': 1.0, 'together': 1.0, 'even': 1.0, 'after': 1.0, 'amount': 1.0, 'liquid': 1.0, 'make': 1.0, 'enough': 1.0, 'thick': 1.0, 'weeks': 1.0, 'thin': 1.0, 'absorb': 1.0}
Word element => {'photo': 1.0, 'current': 1.0, 'in': 1.0, 'see': 1.0, 'thicker': 1.0, 'stitching': 1.0, 'be': 1.0, 'got': 2.0, 'diapers': 3.0, 'blue': 1.0, 'completleydifferent': 1.0, 'these': 2.0, 'the': 4.0, 'diaper': 3.0, 'of': 1.0, 'a': 1.0, 'pakcages': 1.0, 'ordered': 1.0, 'are': 1.0, 'service': 2.0, 'is': 1.0, 'not': 2.0, 'you': 3.0, 'will': 2.0, 'item': 2.0, 'recieve': 1.0, 'pictured': 1.0, 'and': 5.0, 'get': 1.0, 'described': 1.0, 'on': 1.0, '4': 1.0, 'i': 2.0, 'beware': 1.0, 'distinquish': 1.0, 'better': 1.0, 'have': 1.0, 'gerber': 1.0, 'stamp': 2.0, 'quality': 1.0, 'them': 2.0, 'white': 1.0, 'thinner': 1.0, 'that': 1.0, 'were': 1.0, 'to': 1.0, 'plain': 1.0, 'no': 1.0, 'this': 1.0, 'buyer': 1.0, 'had': 1.0, 'what': 1.0}
Word element => {'replacement': 1.0, 'plastic': 1.0, 'holder': 1.0, 'wipes': 1.0, 'hard': 1.0, 'bags': 1.0, 'messenger': 1.0, 'bought': 1.0, 'one': 2.0, 'result': 1.0, 'navy': 1.0, 'smaller': 1.0, 'much': 1.0, 'up': 1.0, 'ended': 1.0, 'bathroom': 1.0, 'diaper': 2.0, 'take': 1.0, 'as': 1.0, 'to': 1.0, 'and': 2.0, 'it': 5.0, 'grab': 1.0, 'just': 1.0, 'compact': 1.0, 'into': 1.0, 'that': 3.0, 'standard': 1.0, 'having': 1.0, 'because': 1.0, 'with': 1.0, 'old': 1.0, 'handy': 1.0, 'can': 1.0, '2': 3.0, 'the': 8.0, 'is': 7.0, 'really': 1.0, 'padding': 1.0, 'stepped': 1.0, 'me': 1.0, 'like': 1.0, 'which': 1.0, 'squeeze': 1.0, 'bag': 2.0, 'need': 1.0, 'wanted': 1.0, 'unfortunately': 1.0, 'was': 1.0, 'had': 1.0, 'little': 1.0, 'very': 1.0, 'there': 1.0, 'of': 2.0, 'under': 1.0, 'okay': 1.0, 'diapers': 2.0, 'on': 1.0, '3': 1.0, 'put': 1.0, 'actually': 1.0, 'fit': 1.0, 'comfortably': 1.0, 'in': 3.0, 'netting': 1.0, 'mat': 1.0, 'size': 2.0, 'i': 4.0, '4': 1.0, 'cracked': 1.0, 'great': 1.0, 'nice': 1.0, 'you': 1.0, 'when': 1.0, 'this': 2.0, 'kids': 1.0, 'we': 3.0, 'go': 1.0, 's': 1.0, 'a': 4.0, 'could': 1.0, 'pocket': 1.0, 'something': 1.0, 'each': 1.0, 'bulky': 1.0, 'whole': 1.0, 'thing': 2.0, 'no': 3.0, 'about': 1.0}
Word element => {'go': 1.0, 'next': 1.0, 'always': 1.0, 'what': 1.0, 'product': 1.0, 'was': 1.0, 'to': 2.0, 'shower': 1.0, 'it': 1.0, 'this': 2.0, 'bag': 1.0, 'buy': 1.0, 'i': 3.0, 'will': 1.0, 'a': 3.0, 'haul': 1.0, 'huge': 1.0, 'around': 1.0, 'love': 1.0, 'for': 1.0, 'deal': 1.0, 'pain': 1.0, 'everywhere': 1.0, 'great': 1.0, 'diaper': 1.0, 'the': 1.0}
Word element => {'could': 1.0, 'if': 1.0, 'perfect': 1.0, 'would': 1.0, 'heart': 1.0, 'it': 8.0, 'own': 1.0, 'teaching': 1.0, 'pacifier': 2.0, 'out': 2.0, 'no': 1.0, 'let': 1.0, 'or': 1.0, 'have': 2.0, 'didn': 1.0, 'product': 1.0, 'a': 3.0, 't': 1.0, 'we': 3.0, 'go': 3.0, 'player': 3.0, 'on': 3.0, 'months': 2.0, 'bought': 1.0, 'one': 1.0, 'well': 1.0, 'i': 3.0, 'she': 2.0, 'baby': 2.0, 'our': 2.0, 'to': 8.0, 'sleep': 1.0, 'as': 2.0, 'helped': 1.0, 'all': 1.0, 'least': 1.0, 'for': 2.0, 'cry': 1.0, 'in': 3.0, 'longer': 1.0, 'the': 9.0, 'turns': 1.0, '4': 2.0, 'replace': 2.0, 'thing': 2.0, '2': 1.0, 'but': 2.0, 'room': 2.0, 'noise': 1.0, 'wonderful': 1.0, 'this': 2.0, '1': 1.0, 'and': 2.0, 'soon': 1.0, 'turned': 1.0, 'several': 1.0, 've': 1.0, 'had': 1.0, 'use': 1.0, 'her': 7.0, 'times': 1.0, 'crib': 1.0, 'bad': 2.0, 'wanted': 1.0, 'plugged': 1.0, 'us': 1.0, 'rainfall': 1.0, 'lullaby': 3.0, 'activiation': 1.0, 'ocean': 1.0, 'better': 1.0, 'sounds': 1.0, 'batteries': 2.0, 'white': 1.0, 'liked': 1.0, 'setting': 1.0, 'voice': 2.0, 'works': 1.0, 'only': 1.0, 'can': 1.0, 'so': 3.0, 'has': 3.0, 'them': 1.0, 'rarely': 1.0, 'is': 4.0, 'at': 2.0, 'now': 1.0, 'because': 2.0, 'night': 3.0, 'cries': 1.0, 'ready': 1.0, 'really': 1.0, 'why': 2.0, 'just': 1.0, 'assume': 1.0, 'inhales': 1.0, 'uses': 1.0, 'week': 1.0, 'quick': 1.0, 'be': 4.0, 'into': 2.0, 'activation': 1.0}
Word element => {'return': 1.0, 'far': 1.0, 'turn': 1.0, 'for': 1.0, 'so': 1.0, 'order': 1.0, 'in': 1.0, 'almost': 1.0, 'screaming': 1.0, 'baby': 1.0, 'required': 1.0, 'activation': 1.0, 'fit': 1.0, 'on': 2.0, 'sounds': 1.0, 'have': 1.0, 'thing': 1.0, 'all': 1.0, 'expected': 1.0, 'not': 2.0, 'had': 1.0, 'to': 3.0, 'was': 2.0, 'at': 1.0, 'voice': 1.0, 'only': 1.0, 'this': 2.0, 'it': 2.0, 'were': 1.0, 'i': 2.0, 'be': 1.0, 'product': 1.0, 't': 1.0, 'the': 5.0, 'my': 1.0, 'is': 1.0, 'side': 1.0, 'of': 1.0, 'didn': 1.0, 'crib': 1.0, 'nice': 1.0, 'and': 1.0}
Word element => {'need': 1.0, 'just': 1.0, 'helpful': 1.0, 'its': 1.0, 'despite': 1.0, 'room': 1.0, 'easier': 1.0, 'find': 1.0, 'check': 1.0, 'practical': 1.0, 'far': 1.0, 'on': 3.0, 'stays': 1.0, 'mine': 1.0, 'some': 1.0, 'for': 2.0, 'after': 1.0, '15': 1.0, 'ability': 1.0, 'supposedly': 1.0, 's': 2.0, 'minutes': 1.0, 'another': 1.0, 'how': 2.0, 'out': 2.0, 'figured': 1.0, 'haven': 1.0, 'get': 2.0, 'it': 4.0, 'light': 2.0, 'reason': 1.0, 'using': 1.0, 'when': 4.0, 'day': 1.0, 'off': 2.0, 'unit': 3.0, 'into': 2.0, 'problems': 1.0, 'that': 4.0, 'been': 2.0, 'snap': 1.0, 'to': 11.0, 'i': 8.0, 'found': 2.0, 'bit': 1.0, 'a': 7.0, 'we': 5.0, 'noises': 1.0, 'heart': 1.0, 'offers': 1.0, 'lullably': 1.0, 'about': 1.0, 'quot': 2.0, 'neighboring': 1.0, 'thing': 1.0, '2': 1.0, 'us': 1.0, 'also': 2.0, 'sounds': 3.0, 'batteries': 4.0, 'wake': 1.0, 'still': 1.0, 'section': 2.0, 'turn': 3.0, 'live': 1.0, 'those': 2.0, 'all': 1.0, 'an': 1.0, 'relaxing': 1.0, 'crib': 1.0, 'urban': 1.0, 'handy': 1.0, 'bar': 1.0, 'tune': 1.0, 'isn': 1.0, 'don': 2.0, 'change': 3.0, 'lullaby': 1.0, 'up': 4.0, 'baby': 4.0, 'has': 2.0, 'at': 1.0, 'is': 3.0, 'battery': 2.0, 'really': 4.0, 'gadget': 1.0, 'noise': 1.0, 'sounding': 1.0, 'sure': 1.0, 'in': 2.0, 'm': 1.0, 'best': 1.0, 'so': 2.0, 'constantly': 1.0, 'think': 1.0, 'itself': 1.0, 'not': 1.0, 'waking': 1.0, 'of': 3.0, 'the': 19.0, 'without': 1.0, 'difficult': 1.0, 'position': 1.0, 'figure': 1.0, 'upright': 1.0, 'now': 2.0, 'dimmer': 1.0, 'either': 1.0, 'weeks': 1.0, 're': 1.0, 'where': 1.0, 'girl': 1.0, 'player': 1.0, 'this': 4.0, 'few': 1.0, 'used': 1.0, 'choices': 1.0, 'covers': 1.0, 'like': 1.0, 'did': 1.0, 'makes': 1.0, 'ocean': 1.0, 'rain': 1.0, 'sound': 1.0, 'area': 1.0, 'make': 1.0, 'storm': 1.0, 'little': 2.0, 'nice': 1.0, 'and': 4.0, 'lot': 1.0, 'lasted': 1.0, 'too': 1.0, 't': 6.0, 'waves': 1.0, 'startling': 1.0, 'beat': 1.0, 'are': 1.0, 'they': 2.0, 'mechanical': 1.0, 'my': 1.0, 'calm': 1.0, 'down': 1.0, 'didn': 1.0, 'have': 3.0, 'though': 2.0, 'during': 1.0, 'problem': 3.0, 'rigid': 1.0, 'with': 2.0, 'very': 2.0, 'being': 1.0, 'hasn': 1.0, 'quickly': 1.0, 'night': 3.0, 'able': 1.0, 'you': 2.0}
Word element => {'children': 1.0, 'your': 1.0, 'option': 1.0, 'safer': 1.0, 'pick': 1.0, 'this': 1.0, 'in': 1.0, 'last': 1.0, 'do': 1.0, 'fix': 1.0, 'buyers': 1.0, 'not': 2.0, 'beware': 1.0, 'long': 1.0, 'player': 1.0, 'day': 1.0, 'loud': 1.0, 'it': 3.0, 'there': 1.0, 'up': 1.0, 'however': 1.0, 'so': 1.0, 'says': 1.0, 'light': 1.0, 'cover': 1.0, 'problem': 1.0, 'night': 1.0, 've': 1.0, 'company': 1.0, 'owned': 1.0, 'the': 7.0, 'daughter': 1.0, 'pop': 1.0, 'when': 1.0, 'battery': 1.0, 'about': 2.0, '5': 1.0, 'under': 1.0, 'one': 1.0, 'months': 1.0, 'and': 4.0, 'our': 1.0, 'were': 1.0, 'opened': 1.0, 'will': 1.0, 'batteries': 2.0, 'loved': 1.0, 'warranty': 1.0, 'a': 2.0, 'we': 2.0, 't': 1.0, 's': 1.0, 'was': 1.0, 'leaking': 1.0, 'doesn': 1.0, 'music': 1.0, 'but': 1.0, 'for': 2.0, 'product': 2.0, 'leakage': 1.0, 'they': 2.0, 'know': 1.0}
Word element => {'invest': 1.0, 'sleeper': 1.0, 'problem': 1.0, 'have': 1.0, 'could': 1.0, 'and': 5.0, 'i': 2.0, '4': 1.0, '5': 1.0, 'product': 3.0, 'for': 2.0, 'that': 6.0, 'plugs': 2.0, 'out': 1.0, 'time': 2.0, 'my': 3.0, 'block': 2.0, 'another': 1.0, 'purchase': 1.0, 'only': 2.0, 'reading': 1.0, 'sleeping': 2.0, 'be': 2.0, 'bonus': 1.0, 'like': 1.0, 'we': 4.0, 'reviews': 1.0, 'after': 1.0, 'to': 9.0, 'try': 1.0, 'actual': 1.0, 'was': 3.0, 'once': 1.0, 'hours': 3.0, 'those': 1.0, 'mth': 1.0, 'him': 1.0, 'it': 6.0, 'effectively': 1.0, 'this': 4.0, 'figured': 1.0, 'of': 1.0, 'the': 7.0, 'but': 1.0, 'not': 2.0, 'street': 2.0, 'waking': 1.0, 'fan': 1.0, 'must': 1.0, 'a': 6.0, 'small': 1.0, 'decided': 3.0, 'son': 2.0, '1': 1.0, 'great': 2.0, 'noise': 4.0, 'quality': 1.0, 'attaches': 1.0, 'crib': 2.0, 'worked': 1.0, 'at': 3.0, 'is': 4.0, 'does': 1.0, 'eat': 1.0, 'being': 1.0, 'rechargable': 1.0, 'if': 1.0, 'who': 1.0, 'batteries': 2.0, 'sounds': 2.0, 'especially': 2.0, 'old': 1.0, 'run': 1.0, 'tried': 1.0, 'husband': 1.0, 'marpac': 1.0, 'noises': 1.0, 'were': 1.0, 'drained': 1.0, 'in': 4.0, 'return': 1.0, '2': 1.0, 'machine': 2.0, 'purchased': 1.0, 'all': 1.0, 'an': 1.0, 'white': 2.0, 'rain': 1.0, 'by': 1.0, 'just': 1.0, 'enough': 2.0, 'close': 1.0, 'real': 1.0, 'drawback': 1.0, 'are': 1.0, 'lullabies': 1.0, 'tolerable': 1.0, 'sound': 1.0, 'static': 1.0, 'night': 2.0, 'loud': 1.0, 'you': 1.0}
Word element => {'in': 1.0, 'dead': 1.0, 'find': 1.0, 'or': 2.0, 'to': 1.0, 'son': 1.0, 'my': 1.0, 'do': 1.0, 'and': 1.0, 'idea': 1.0, 'plan': 1.0, 'a': 1.0, 'dying': 1.0, 'thing': 1.0, 'batteries': 2.0, 'will': 1.0, 'but': 2.0, 'not': 1.0, 'just': 1.0, 'were': 1.0, 'morning': 1.0, 'item': 1.0, 'wouldn': 1.0, 'it': 4.0, 'this': 2.0, 'nights': 1.0, 'use': 1.0, 'loved': 2.0, 'great': 1.0, 'the': 4.0, 't': 1.0, 'night': 1.0, 'whole': 1.0, 'i': 1.0, 'sucks': 1.0, 'life': 1.0, 'always': 1.0, 'of': 1.0, 'out': 1.0, 'like': 1.0, 'you': 2.0, 'imagine': 1.0, 'many': 1.0, 'is': 1.0}
Word element => {'waves': 1.0, 'use': 1.0, 'little': 1.0, 'sounds': 1.0, 'but': 1.0, 'week': 1.0, '10': 1.0, 'to': 1.0, 'help': 1.0, 'it': 1.0, 'this': 2.0, 'wierd': 1.0, 'have': 1.0, 'heartbeat': 1.0, 'baby': 1.0, 'she': 1.0, 'sleeps': 1.0, 'my': 1.0, 'started': 1.0, 'the': 2.0, 'bought': 1.0, 'longer': 1.0, 'sleep': 1.0, 'old': 1.0, 'i': 3.0, 'better': 2.0, 'and': 3.0, 'a': 1.0, 'since': 1.0, 'ever': 1.0, 'for': 1.0, 'using': 1.0, 'mode': 1.0, 'lullaby': 1.0}
Word element => {'batteries': 1.0, 'eating': 1.0, 'with': 1.0, 'problems': 1.0, 'had': 1.0, 'havent': 1.0, 'you': 1.0, 'in': 1.0, 'waking': 1.0, 'shutoff': 1.0, 'on': 1.0, 'reason': 1.0, 'up': 1.0, 'sound': 1.0, 'only': 1.0, 'perfect': 1.0, 'this': 2.0, 'it': 2.0, 'nightlight': 1.0, 'other': 1.0, '4': 1.0, 'i': 2.0, 'feature': 1.0, 'attached': 1.0, 'by': 1.0, 'nice': 2.0, 'great': 1.0, 'is': 5.0, 'more': 1.0, 'than': 1.0, 'but': 1.0, 'options': 1.0, 'would': 1.0, 'next': 1.0, 'gave': 1.0, 'that': 1.0, 'automatic': 1.0, 'very': 1.0, 'son': 1.0, 'which': 2.0, 'sleeping': 2.0, 'at': 1.0, 'keep': 1.0, 'all': 1.0, 'any': 1.0, 'our': 2.0, 'to': 2.0, 'we': 1.0, 'a': 2.0, 's': 1.0, 'bassinet': 1.0, 'anyone': 1.0, 'be': 1.0, 'checking': 1.0, 'bed': 2.0, 'stars': 1.0, 'product': 1.0, 'for': 1.0, 'absolutely': 1.0, 'baby': 1.0, 'the': 4.0, 'without': 1.0}
Word element => {'monitor': 1.0, 'through': 1.0, 'listening': 1.0, 'times': 1.0, 'extra': 1.0, 'myself': 1.0, 'liked': 1.0, 'just': 1.0, 'dresser': 1.0, 'mess': 1.0, 'daughter': 1.0, 'got': 1.0, 'even': 1.0, 'there': 1.0, 'up': 1.0, 'wake': 1.0, 'should': 1.0, 'i': 8.0, 'well': 1.0, 'sleep': 3.0, 'all': 1.0, 'as': 3.0, 'and': 8.0, 'too': 1.0, 'on': 5.0, 'months': 1.0, 'sleeps': 1.0, '15': 1.0, 'to': 9.0, 'bassinet': 1.0, 'since': 2.0, 'has': 1.0, 'trips': 1.0, 'with': 2.0, 'it': 8.0, 'baby': 1.0, 'she': 8.0, 'few': 1.0, 'this': 2.0, 'perfect': 1.0, 'use': 2.0, 'her': 7.0, 'used': 1.0, 'taken': 1.0, 'from': 2.0, 'now': 2.0, '3': 1.0, 'older': 1.0, 'was': 3.0, 'night': 1.0, 'old': 2.0, 'crib': 1.0, 'been': 1.0, 'have': 4.0, 'born': 1.0, '8': 1.0, 'put': 3.0, 'much': 1.0, 'my': 2.0, 'me': 1.0, 'not': 1.0, 'road': 1.0, 'of': 1.0, 'the': 3.0, 'sounds': 2.0, 'favorites': 1.0, 'batteries': 1.0, 'home': 1.0, 'goes': 1.0, 'love': 1.0, 'product': 1.0, 'had': 1.0, 'what': 2.0, 'pick': 1.0, 'mine': 1.0, '5': 1.0, 'noise': 1.0, 'weeks': 2.0, 'would': 1.0, 'be': 1.0, 'top': 1.0, 'sits': 1.0, 'is': 1.0, 'at': 1.0, 'yeah': 1.0, 'eats': 1.0, 'are': 1.0, '4': 1.0, 'replace': 1.0, 'about': 1.0, 'but': 1.0, 'work': 1.0, 'quot': 2.0, 'so': 2.0, 'own': 1.0, 'if': 4.0, 'still': 1.0, 'every': 1.0, 'clarity': 1.0, 'comfort': 2.0, 'sleeping': 1.0, 'they': 1.0, 'great': 1.0, 'white': 1.0, 'a': 1.0}
Word element => {'newborn': 1.0, 'for': 1.0, 'every': 1.0, 'and': 1.0, 'that': 2.0, 'quietly': 1.0, 'this': 1.0, 'soft': 2.0, 'turn': 1.0, 'player': 1.0, 'it': 3.0, 'with': 1.0, 'or': 1.0, 'off': 2.0, 'on': 1.0, 'sounds': 1.0, 'the': 4.0, 'turns': 1.0, 'is': 1.0, 'you': 1.0, 'easy': 1.0, 'attach': 1.0, 'a': 5.0, 's': 2.0, 'we': 2.0, 'our': 1.0, 'to': 3.0, 'bassinet': 1.0, 'night': 1.0, 'baby': 1.0, 'lullaby': 1.0, 'of': 2.0, 'nature': 1.0, 'offers': 1.0, 'set': 1.0, 'crib': 1.0, 'push': 1.0, 'button': 1.0, 'like': 1.0, 'rainfall': 1.0, 'almost': 1.0, 'features': 1.0, 'provides': 1.0, 'automatically': 1.0, 'white': 1.0, 'noise': 1.0, 'light': 1.0, 'few': 1.0, 'four': 1.0, 'quot': 2.0, 'can': 1.0, 'minutes': 1.0, 'after': 1.0, 'use': 1.0}
Word element => {'every': 1.0, 'penny': 1.0, 'extra': 1.0, 'of': 1.0, 'bit': 1.0, 'that': 1.0, 'to': 1.0, 'get': 1.0, 'if': 1.0, 'item': 1.0, 'great': 1.0, 'the': 3.0, 'a': 1.0, 'is': 2.0, 'on': 1.0, 'sleep': 2.0, 'think': 2.0, 'i': 4.0, 'love': 2.0, 'one': 1.0, 'baby': 1.0, 'back': 1.0, 'fact': 1.0, 'will': 2.0, 'little': 2.0, 'crying': 1.0, 'it': 1.0, 'this': 2.0, 'come': 1.0, 'worth': 1.0, 'automatically': 1.0, 'starts': 1.0, 'which': 1.0, 'help': 1.0}
Word element => {'over': 1.0, 'cds': 1.0, 'some': 1.0, 'definitely': 1.0, 'would': 1.0, 'i': 1.0, 'cd': 2.0, 'crib': 2.0, 'now': 1.0, 'realize': 1.0, 'loves': 1.0, 'that': 2.0, '7th': 1.0, 'recommend': 1.0, 'was': 2.0, 'this': 2.0, 'it': 2.0, 'month': 1.0, 'baby': 1.0, 'started': 1.0, 'the': 8.0, 'my': 1.0, 'sounds': 2.0, 'months': 1.0, 'from': 1.0, 'loved': 1.0, 'son': 1.0, 'wonders': 1.0, 'he': 5.0, '6': 1.0, 'on': 1.0, '3': 1.0, 'lullaby': 2.0, 'about': 1.0, 'age': 1.0, 'player': 5.0, 'but': 1.0, 'bedtime': 1.0, 'too': 1.0, 'and': 4.0, 'get': 1.0, 'fight': 1.0, 'him': 1.0, 'einstein': 1.0, 'our': 1.0, 'to': 3.0, 'sleep': 1.0, 'after': 1.0, 'd': 1.0, 'classical': 1.0, 'hear': 1.0, 'we': 2.0, 's': 1.0, 'at': 1.0, 'really': 1.0, 'horrid': 1.0, 'fights': 1.0, 'meant': 1.0, 'where': 1.0, 'love': 1.0, 'ocean': 1.0, 'have': 1.0, 'aquarium': 1.0}
Word element => {'womb': 1.0, 'console': 1.0, 'a': 4.0, 'could': 1.0, 't': 1.0, 'wimpers': 1.0, 'twice': 1.0, 'little': 2.0, 'his': 1.0, '5': 1.0, 'so': 1.0, 'sobbing': 1.0, 'after': 2.0, 'to': 6.0, 'very': 1.0, 'himself': 1.0, 'only': 2.0, 'cry': 1.0, 'in': 1.0, '2': 1.0, 'but': 2.0, 'month': 1.0, 'nights': 2.0, 'my': 3.0, 'have': 2.0, 'minutes': 1.0, 'was': 2.0, 'must': 1.0, 'doesn': 1.0, 's': 1.0, 'maybe': 1.0, 'wimper': 1.0, 'does': 1.0, 'times': 1.0, 'when': 1.0, 'i': 2.0, '3': 2.0, 'put': 1.0, 'it': 5.0, 'him': 4.0, 'would': 6.0, 'old': 1.0, 'night': 2.0, 'softer': 1.0, 'gets': 1.0, 'son': 1.0, 'sleep': 2.0, 'back': 2.0, 'still': 1.0, 'startled': 1.0, 'get': 3.0, 'husband': 1.0, 'sounding': 1.0, 'wails': 1.0, 'and': 7.0, 'startle': 1.0, 'batteries': 1.0, 'definite': 1.0, 'sound': 1.0, 'once': 1.0, 'several': 1.0, 'let': 1.0, 'no': 1.0, 'wake': 1.0, 'way': 1.0, 'saw': 1.0, 'be': 1.0, 'nature': 1.0, 'player': 2.0, 'came': 1.0, 'become': 1.0, 'decided': 1.0, 'out': 1.0, 'first': 1.0, 'this': 2.0, 'few': 1.0, 'he': 2.0, 'now': 1.0, 'we': 2.0, 'then': 2.0, 'yes': 1.0, 'of': 1.0, 'the': 6.0, 'longer': 1.0, 'complaint': 1.0, 'or': 1.0, 'need': 1.0, 'with': 1.0, 'is': 1.0, 'easily': 1.0, 'that': 1.0, 'up': 4.0, 'lullaby': 2.0, 'takes': 1.0, 'try': 2.0, 'lot': 1.0, 'heartbeat': 1.0, 'like': 1.0}
Word element => {'out': 1.0, 'quite': 1.0, 'will': 1.0, 'mothers': 2.0, 'new': 1.0, 'give': 1.0, 'did': 1.0, 'with': 1.0, 'problem': 1.0, 'durable': 1.0, 'especially': 1.0, 'i': 1.0, 'husband': 1.0, 'life': 1.0, 'definitely': 1.0, 'was': 1.0, 'never': 1.0, 'yard': 1.0, 'onto': 1.0, 'clips': 1.0, 'buy': 1.0, 'when': 3.0, 'very': 1.0, 'himself': 1.0, 'getting': 1.0, 'turns': 1.0, 'of': 3.0, 'the': 12.0, 'is': 8.0, 'looks': 1.0, 'my': 2.0, 'middle': 1.0, 'son': 2.0, '13': 1.0, 'wonderful': 1.0, 'old': 1.0, 'problems': 1.0, 'night': 3.0, 'tired': 1.0, 'baby': 3.0, 'bassinet': 1.0, 'to': 12.0, 'our': 1.0, 'sleep': 1.0, 'now': 1.0, 'had': 2.0, 'first': 3.0, 'spouse': 1.0, 'and': 8.0, 'too': 3.0, 'seems': 1.0, 'also': 2.0, 'in': 3.0, '3': 1.0, 'on': 6.0, 'probably': 1.0, 'idea': 1.0, 'your': 3.0, 'goes': 1.0, 'we': 4.0, 'a': 6.0, 's': 6.0, 'go': 1.0, 'wakes': 1.0, 'use': 2.0, '4': 2.0, 'falling': 1.0, 'or': 5.0, 'feature': 2.0, 'etc': 1.0, 'get': 1.0, 'months': 3.0, 'bought': 2.0, 'luckily': 1.0, 'be': 2.0, 'product': 2.0, 'such': 1.0, 'for': 2.0, 'he': 2.0, 'extremely': 1.0, 'him': 1.0, 'it': 14.0, 'this': 7.0, 'have': 3.0, 'saver': 1.0, 'been': 1.0, 'staying': 1.0, 'bed': 1.0, 'they': 1.0, 'sleeping': 1.0, 'his': 1.0, 'play': 1.0, 'awesome': 1.0, 'crib': 2.0, 'used': 1.0, 'toy': 1.0, 'works': 1.0, 'only': 1.0, 'not': 4.0, 'gift': 1.0, 'asleep': 2.0, 'good': 3.0, 'voice': 1.0, 'wake': 1.0, 'way': 1.0, 'three': 1.0, 'activation': 1.0, 'still': 2.0, 'every': 1.0, 'turn': 2.0, 'if': 1.0, 'great': 2.0, 'using': 1.0, 'light': 1.0, 'just': 1.0, 'all': 1.0, 'an': 1.0, 'fussy': 1.0, 'bright': 2.0, 'dark': 2.0, 'button': 1.0, 'bit': 1.0, 'easy': 1.0, 'since': 1.0, 'feeling': 1.0, 'find': 1.0, 'wonders': 1.0, 'check': 1.0, 'up': 1.0, 'favorite': 1.0, 'change': 1.0, 'as': 2.0, 'diaper': 1.0, 'room': 1.0}
Word element => {'need': 1.0, 'if': 1.0, 'again': 1.0, 'this': 1.0, 'would': 1.0, 'matches': 1.0, 'but': 1.0, 'times': 1.0, 'several': 1.0, 'washing': 1.0, 'bit': 1.0, 'crisp': 1.0, 'crib': 4.0, 'color': 2.0, 'portable': 2.0, 'product': 1.0, 'faded': 1.0, 'koala': 1.0, 'sheets': 2.0, 'in': 1.0, 'wash': 1.0, 'baby': 1.0, 'pink': 1.0, 'still': 1.0, 'drying': 1.0, 'held': 1.0, 'the': 7.0, 'tightly': 1.0, 'two': 1.0, 'purchase': 1.0, 'purchased': 1.0, 'have': 1.0, 'through': 1.0, 'fit': 1.0, 'i': 2.0, 'one': 1.0, 'and': 3.0, 'of': 1.0, 'up': 1.0, 'after': 1.0, 'skirt': 2.0, 'mattress': 1.0, 'a': 1.0, 'well': 2.0}
Word element => {'like': 1.0, 'why': 1.0, 'reminded': 1.0, 'house': 1.0, 'relative': 1.0, 'another': 1.0, 'necessity': 1.0, 'neck': 1.0, 'their': 1.0, 'effectively': 1.0, 'be': 1.0, 'so': 1.0, 'can': 1.0, 'clean': 1.0, 'easy': 1.0, 'also': 1.0, 'corrected': 1.0, 'immediately': 1.0, 'today': 1.0, 'hungry': 1.0, 'hard': 1.0, 'suck': 1.0, 'mine': 1.0, 'relieve': 1.0, 'stop': 1.0, 'having': 1.0, 'without': 1.0, 'feed': 1.0, 'continuously': 1.0, 'inside': 2.0, 'from': 1.0, 'wooshing': 1.0, 'dishwasher': 1.0, 'swallow': 1.0, 'causing': 1.0, 'during': 1.0, 'into': 1.0, 'am': 1.0, 'when': 4.0, 'for': 3.0, 's': 2.0, 'a': 5.0, 'going': 1.0, 'avent': 1.0, 'transitioned': 1.0, 'wide': 1.0, 'time': 1.0, 'new': 1.0, 'swallowing': 1.0, 'size': 2.0, 'screwing': 1.0, 'ready': 1.0, 'will': 1.0, '9oz': 1.0, 'graduated': 1.0, 'have': 4.0, 'out': 1.0, 'absolutely': 1.0, 'brand': 1.0, 'buying': 1.0, 'reader': 1.0, 'leak': 1.0, 'newborn': 2.0, 'regular': 1.0, 'pressure': 1.0, 'who': 1.0, 'girlfriend': 1.0, 'started': 1.0, 'thing': 1.0, '2': 1.0, 'but': 1.0, 'these': 2.0, 'baby': 4.0, 'she': 3.0, 'it': 2.0, 'used': 2.0, 'set': 1.0, 'her': 3.0, 'use': 1.0, 'only': 1.0, 'nipples': 4.0, 'simply': 1.0, 'this': 1.0, 'bottle': 5.0, 'step': 1.0, 'prevents': 1.0, 'buy': 1.0, 'i': 10.0, 'sworn': 1.0, 'pretty': 1.0, 'to': 9.0, 'any': 3.0, 'good': 2.0, 'leaking': 1.0, 'had': 5.0, 'allows': 1.0, 'with': 8.0, 'washed': 1.0, '1': 1.0, 'recommended': 1.0, 'and': 10.0, '4oz': 1.0, 'up': 2.0, 'the': 14.0, 'of': 4.0, 'ever': 1.0, 'an': 1.0, 'own': 1.0, 'in': 2.0, 'occasional': 1.0, 'at': 1.0, 'is': 2.0, 'next': 3.0, 'them': 3.0, 'always': 1.0, 'way': 1.0, 'my': 2.0, 'lid': 1.0, 'would': 1.0, 'either': 1.0, 'tight': 1.0, 'fault': 1.0, 'correctly': 1.0, 'not': 2.0, 'on': 1.0, 'much': 2.0, 'do': 1.0, 'put': 1.0, 'enough': 1.0, 'because': 1.0, 'breast': 1.0, 'thrilled': 1.0, 'problems': 2.0, 'old': 1.0, 'developing': 1.0, 'they': 2.0, 'between': 1.0, 'together': 1.0, 'were': 1.0, 're': 1.0, 'especially': 1.0, 'back': 1.0, 'smoothly': 1.0, 'forth': 1.0, 'outgrown': 1.0, 'feeding': 4.0, '4mos': 1.0, 'vacuum': 1.0, 'was': 5.0, 'difficulties': 1.0, 'too': 1.0, 'try': 1.0, 'one': 1.0, 'never': 1.0, 'referred': 1.0, 'now': 2.0, 'air': 4.0, 'cannot': 1.0, 'very': 3.0, 'being': 1.0, 'bottles': 6.0, 'by': 3.0, 'pushed': 1.0}
Word element => {'and': 1.0, 'isis': 1.0, 'with': 1.0, 'can': 1.0, 'like': 2.0, 'it': 1.0, 'reason': 1.0, 'feed': 1.0, 'ready': 1.0, 'nipple': 1.0, 'switch': 1.0, 'then': 1.0, 'is': 3.0, 'leaking': 1.0, 'had': 1.0, 'system': 1.0, 'should': 1.0, 'essential': 1.0, 'cups': 1.0, 'to': 5.0, 'chosen': 1.0, 'other': 1.0, 'have': 2.0, 'formula': 1.0, 'if': 1.0, 'two': 1.0, 'i': 5.0, 'buy': 1.0, 'when': 1.0, 'you': 4.0, 'way': 1.0, 'terrible': 1.0, 'given': 1.0, 'for': 1.0, 'would': 1.0, 'give': 1.0, 'not': 1.0, 'because': 2.0, 'a': 2.0, 'mix': 1.0, 'into': 1.0, 'that': 1.0, 'been': 1.0, 'bottle': 2.0, 'some': 1.0, 'of': 1.0, 'avent': 1.0, 'the': 11.0, 'disks': 2.0, 'separately': 1.0, 'in': 2.0, 'pump': 2.0, 'get': 1.0, 'sippy': 1.0, 'them': 1.0, 'free': 1.0, 'directly': 1.0, 'they': 1.0, 'are': 2.0, 'ton': 1.0, 'absolutely': 1.0, 'do': 1.0, 'only': 2.0, 'bottles': 1.0, 'or': 1.0, 'liquid': 1.0, 'breast': 1.0, 'use': 1.0, 'transport': 1.0, 'ring': 1.0}
Word element => {'worked': 1.0, 'breastflow': 1.0, 'buy': 1.0, 'bottles': 2.0, '3pk': 1.0, 'first': 2.0, 'curve': 1.0, 'you': 1.0, 'flow': 1.0, 'a': 2.0, 'me': 1.0, 'get': 1.0, 'to': 1.0, '5oz': 1.0, 'much': 2.0, 'seal': 1.0, 'learning': 1.0, 'especially': 1.0, 'instead': 1.0, 'use': 1.0, 'while': 1.0, 'difficult': 1.0, 'for': 1.0, 'tight': 1.0, 'one': 1.0, 'holding': 1.0, 'years': 2.0, 'baby': 1.0, 'if': 1.0, 'hand': 1.0, 'better': 2.0, 'design': 1.0, 'leaks': 1.0, 'is': 1.0, 'these': 1.0, 'the': 2.0, 'breast': 1.0}
Word element => {'part': 1.0, 'those': 1.0, 'especially': 1.0, 'parent': 1.0, 'this': 1.0, 'would': 1.0, 'have': 4.0, 'satisfied': 1.0, 'other': 1.0, 'and': 5.0, 'old': 1.0, 'six': 1.0, 'i': 4.0, 'any': 1.0, 'to': 2.0, 'had': 2.0, 'an': 2.0, 'weeks': 1.0, 'four': 1.0, 'but': 1.0, 'introduced': 1.0, 'has': 1.0, 'system': 2.0, 'babies': 1.0, 'been': 2.0, 'time': 1.0, 'bottle': 5.0, 'at': 2.0, 'breastfed': 2.0, 'receives': 1.0, 'for': 1.0, 'months': 1.0, 'breast': 1.0, 'my': 1.0, 'avent': 3.0, 'consumers': 1.0, 'the': 2.0, 'leak': 1.0, 'of': 2.0, 'daughter': 1.0, 'she': 2.0, 'complained': 1.0, 'easily': 1.0, 'between': 1.0, 'completely': 1.0, 'is': 1.0, 'still': 1.0, 'in': 1.0, 'morning': 1.0, 'evenings': 1.0, 'recommend': 1.0, 'daycare': 1.0, 'never': 2.0, 'transitioned': 1.0, 'a': 2.0, 'problem': 1.0, 'using': 1.0, 'which': 1.0}
Word element => {'more': 1.0, 'registering': 1.0, 'm': 1.0, 'second': 1.0, 'girl': 1.0, 'milk': 2.0, 'and': 4.0, 'too': 1.0, 'got': 1.0, 'give': 1.0, 'not': 2.0, 'bottle': 4.0, 'time': 2.0, 'problem': 2.0, 'child': 1.0, 'grandpa': 1.0, 'avents': 1.0, 'a': 4.0, 'then': 2.0, 'we': 1.0, 't': 2.0, 'never': 2.0, 'nurse': 1.0, 'rare': 1.0, 'had': 1.0, 'grandma': 1.0, 'to': 6.0, 'as': 1.0, 'an': 1.0, 'all': 2.0, 'was': 6.0, 'when': 3.0, 'complained': 1.0, 'again': 1.0, 'son': 1.0, 'on': 3.0, 'home': 1.0, 'bottles': 2.0, 'or': 1.0, 'wasn': 1.0, 'newborn': 1.0, 'me': 1.0, 'my': 5.0, 'avent': 2.0, 'perhaps': 1.0, 'back': 1.0, 'weeks': 1.0, 'now': 2.0, 'available': 1.0, 'involved': 1.0, 'i': 6.0, 'old': 1.0, 'working': 1.0, 'funeral': 1.0, 'first': 1.0, 'occasion': 1.0, 'he': 5.0, 'how': 1.0, 'with': 1.0, 'only': 1.0, 'much': 1.0, 'them': 1.0, 'expressing': 1.0, 'latching': 1.0, 'used': 3.0, 'recall': 1.0, 'having': 1.0, 's': 2.0, 'maybe': 1.0, 'brand': 2.0, 'nipple': 3.0, 'two': 1.0, 'nice': 1.0, 'seemed': 1.0, 'for': 2.0, 'everyone': 1.0, 'can': 1.0, 'but': 2.0, 'single': 1.0, 'leaked': 1.0, 'she': 1.0, 'dad': 1.0, 'others': 1.0, 'him': 2.0, 'it': 2.0, 'individual': 1.0, 'also': 1.0, 'harder': 1.0, 'is': 1.0, 'at': 1.0, 'that': 3.0, 'breast': 1.0, 'get': 2.0, 'loaned': 1.0, 'from': 1.0, 'hard': 1.0, 'no': 1.0, 'whole': 1.0, 'sucked': 1.0, 'way': 2.0, 'matter': 1.0, 'particular': 1.0, 'anyway': 1.0, 'the': 10.0, 'of': 1.0, 'friend': 1.0, 'adopted': 1.0}
Word element => {'them': 1.0, 'of': 1.0, 'all': 1.0, 'these': 1.0, 'bottles': 1.0, 'are': 1.0, 'the': 1.0, 'tried': 1.0, 'simply': 1.0, 'out': 1.0, 'know': 1.0, 'best': 1.0, 'there': 1.0, 'i': 2.0}
Word element => {'his': 1.0, 'on': 1.0, 'nipples': 1.0, 'and': 1.0, 'from': 1.0, 'as': 1.0, 'them': 1.0, 'refill': 1.0, 'to': 1.0, 'have': 1.0, 'drinks': 1.0, 'older': 1.0, 'avent': 1.0, 'trainer': 1.0, 'my': 1.0, 'because': 1.0, 'often': 1.0, 'for': 2.0, 'bottles': 1.0, 'who': 1.0, 'purchased': 1.0, 'cups': 1.0, 'us': 1.0, '9': 1.0, 'than': 1.0, 'oz': 1.0, 'sippy': 1.0, 'at': 1.0, 'i': 1.0, 'night': 1.0, 'work': 2.0, 'well': 1.0, 'we': 1.0, 'baby': 1.0, 'don': 1.0, 'the': 1.0, 'more': 1.0, 'these': 2.0, 't': 1.0}
Word element => {'had': 1.0, 'ive': 1.0, 'leakage': 1.0, 'also': 1.0, 'screwing': 1.0, 'that': 1.0, 'read': 1.0, 'review': 1.0, 'problem': 2.0, 'solves': 1.0, 'another': 1.0, 'tight': 2.0, 'said': 1.0, 'in': 2.0, 'heater': 1.0, 'way': 1.0, 'from': 1.0, 'personally': 1.0, 'heating': 1.0, 'to': 2.0, 'its': 1.0, 'started': 1.0, 'wipe': 1.0, 'it': 2.0, 'causes': 1.0, 'a': 2.0, 'after': 3.0, 'fridge': 1.0, 'reviews': 1.0, 'reading': 1.0, 'of': 2.0, 'leaking': 3.0, 'the': 10.0, 'these': 1.0, 'since': 1.0, 'keep': 1.0, 'bottle': 2.0, 'when': 1.0, 'i': 5.0, 'express': 1.0, 'whole': 1.0, 'snug': 1.0, 'this': 1.0, 'doing': 1.0, 'found': 1.0, 'being': 1.0, 'top': 2.0, 'bottles': 1.0, 'let': 1.0, 'pressure': 1.0, 'out': 2.0, 'ready': 1.0, 'loosen': 1.0, 'inside': 1.0, 'real': 1.0, 'then': 2.0, 'take': 1.0, 'but': 1.0, 'rim': 1.0, 'off': 2.0, 'condensation': 1.0, 'on': 3.0, 'too': 1.0, 'and': 1.0, 'screw': 1.0, 'not': 2.0}
Word element => {'shame': 1.0, 'are': 1.0, 'they': 2.0, 'because': 1.0, 'bottles': 1.0, 'to': 1.0, 'wanted': 1.0, 'like': 1.0, 'and': 2.0, 'parts': 1.0, 'really': 1.0, 'leak': 2.0, 'i': 1.0, 'any': 1.0, 'don': 1.0, 'these': 2.0, 't': 1.0, 'wide': 1.0, 'have': 1.0, 'a': 1.0, 'funny': 1.0, 'but': 1.0, 'things': 1.0, 'what': 1.0}
Word element => {'ones': 1.0, 'at': 1.0, 'handles': 1.0, 'with': 1.0, 'couple': 1.0, 'packs': 1.0, '1': 1.0, 'great': 1.0, 'magic': 1.0, 'them': 1.0, 'fit': 1.0, 'some': 1.0, 'these': 2.0, 'pals': 1.0, 'extra': 1.0, 'buy': 1.0, 'getting': 1.0, 'did': 1.0, 'holder': 1.0, 'design': 1.0, 'wish': 1.0, 'thing': 1.0, 'cool': 1.0, 'one': 2.0, 'child': 1.0, 'white': 1.0, 'fast': 1.0, 'how': 1.0, 'your': 1.0, 'on': 2.0, 'would': 1.0, 'oz': 1.0, 'something': 1.0, 'cost': 1.0, 'if': 2.0, 'truth': 1.0, 'only': 1.0, 'do': 1.0, 'green': 1.0, 'and': 3.0, 'they': 4.0, 'see': 1.0, 'has': 1.0, 'well': 1.0, 'drinks': 1.0, 'mostly': 1.0, 'avent': 3.0, 'my': 1.0, 'or': 1.0, 'bottles': 1.0, 'cup': 2.0, '2': 2.0, 'most': 1.0, 'spouts': 1.0, 'midst': 1.0, 'testing': 1.0, 'interchangeable': 1.0, 'evenflo': 1.0, 'have': 2.0, 'find': 1.0, 'because': 1.0, 'than': 1.0, 'of': 4.0, 'more': 2.0, 'the': 5.0, 'bit': 1.0, 'against': 1.0, 'bottle': 3.0, 'i': 6.0, 'was': 3.0, 'least': 1.0, 'cups': 1.0, 'all': 2.0, 'to': 1.0, 'suggest': 1.0, 'thought': 1.0, 'that': 2.0, 'parts': 1.0, 'were': 1.0, 'a': 3.0, 'could': 1.0, 'test': 1.0, 'really': 1.0, 'in': 2.0, 'said': 1.0, 'you': 1.0, 'when': 1.0, 'are': 1.0, 'also': 1.0, 'selections': 1.0, '9': 1.0, 'nipple': 1.0, 'telling': 1.0, 'depending': 1.0}
Word element => {'well': 1.0, 'as': 1.0, 'avent': 1.0, 'bottles': 3.0, 'called': 1.0, 'with': 1.0, 'told': 1.0, 'these': 2.0, 'the': 1.0, 'then': 1.0, 'contain': 1.0, 'i': 3.0, 'tempo': 1.0, 'and': 2.0, 'me': 1.0, 'started': 1.0, 'just': 1.0, 'bpa': 1.0, 'switched': 1.0, 'had': 1.0, 'to': 1.0, 'they': 2.0, 'liner': 1.0, 'work': 1.0}
Word element => {'an': 1.0, 'is': 1.0, 'this': 1.0, 'you': 1.0, 'of': 1.0, 'various': 1.0, 'like': 1.0, 'homemade': 1.0, 'freeze': 1.0, 'tote': 1.0, 'bottles': 1.0, 'at': 2.0, 'sippy': 1.0, 'month': 1.0, 'experienced': 1.0, 'and': 3.0, 'issue': 1.0, 'bottle': 2.0, 'great': 1.0, 'nipple': 1.0, 'these': 1.0, 'never': 2.0, 'excellent': 1.0, 'had': 1.0, 'system': 1.0, 'works': 1.0, 'used': 1.0, 'daughter': 1.0, 'our': 1.0, 'to': 4.0, 'cups': 1.0, 'air': 1.0, 'issues': 1.0, 'inserts': 1.0, 'avent': 1.0, 'went': 1.0, 'hole': 1.0, 'gas': 1.0, 'we': 2.0, 'have': 1.0, 'has': 2.0, 'buy': 1.0, 'days': 1.0, 'old': 1.0, 'introduce': 1.0, 'i': 2.0, 'back': 1.0, 'confusion': 1.0, 'on': 1.0, 'one': 1.0, 'the': 7.0, 'without': 1.0, 'food': 2.0, 'four': 1.0, 'can': 3.0, 'nipples': 3.0, 'be': 2.0, 'number': 1.0, 'replaced': 1.0, 'with': 1.0, 'storage': 1.0, 'breast': 1.0, 'use': 1.0}
Word element => {'down': 1.0, 'screw': 1.0, 'just': 1.0, 'tried': 1.0, 'home': 1.0, 'away': 1.0, 'are': 1.0, 'helpful': 1.0, 'very': 1.0, 'this': 1.0, 'run': 1.0, 'and': 1.0, 'work': 1.0, 'can': 1.0, 'but': 2.0, 'is': 2.0, 'imagine': 1.0, 'of': 2.0, 'leak': 1.0, 'it': 2.0, 'she': 1.0, 'born': 1.0, 'have': 4.0, 'from': 1.0, 'fix': 1.0, 'doesn': 1.0, 'leaking': 1.0, 'was': 1.0, 'leaks': 1.0, 'had': 2.0, 'as': 2.0, 'to': 3.0, 'i': 6.0, 'tight': 1.0, 'my': 2.0, 'these': 1.0, 'the': 4.0, 'trouble': 1.0, 'nipple': 1.0, 'other': 1.0, 'for': 2.0, 'water': 1.0, 'daughter': 1.0, 't': 1.0, 'we': 1.0, 'a': 1.0, 'lot': 1.0, 'since': 1.0, 'them': 4.0, 'over': 1.0, 'child': 1.0, 'out': 1.0, 'using': 2.0, 'like': 1.0, 'with': 2.0, 'considering': 1.0, 'only': 1.0, 'so': 1.0, 'problems': 1.0, 'ring': 1.0, 'when': 1.0, 'you': 1.0, 'am': 1.0, 'not': 3.0, 'been': 1.0, 'that': 1.0, 'next': 1.0, 'bought': 1.0, 'sometime': 1.0, 'always': 1.0, 'way': 1.0, 'people': 1.0, 'many': 1.0, 'take': 1.0}
Word element => {'longer': 1.0, 'milk': 1.0, 'baby': 2.0, 'relaxed': 1.0, 'whole': 1.0, 'soaked': 1.0, 'no': 1.0, 'once': 1.0, 'terrible': 2.0, 'these': 1.0, 'they': 1.0, 'you': 2.0, 'are': 2.0, 'start': 1.0, 'bottles': 1.0, 'with': 1.0, 'and': 3.0, 'comfy': 1.0, 'get': 1.0, 'feeding': 1.0, 'leak': 1.0, 'then': 1.0, 'all': 1.0, 'especially': 1.0, 'on': 1.0, 'over': 1.0, 'smelly': 1.0, 'when': 1.0}
Word element => {'surface': 1.0, 'hard': 1.0, 'over': 1.0, 'dropping': 1.0, 'am': 1.0, 'rigid': 1.0, 'concern': 1.0, 'one': 1.0, 'him': 1.0, 'easier': 1.0, 'it': 1.0, 'but': 1.0, 'thing': 1.0, 'real': 1.0, 'like': 1.0, 'pumping': 1.0, 'did': 1.0, 'instead': 1.0, 'goes': 1.0, 'prefer': 1.0, 'found': 1.0, 'still': 1.0, 'bottle': 4.0, 'at': 1.0, 'breastfed': 1.0, 'i': 2.0, 'had': 2.0, 'afraid': 2.0, 'been': 1.0, 'that': 6.0, 'not': 1.0, 'baby': 1.0, 'started': 1.0, 'would': 2.0, 'sample': 1.0, 'with': 2.0, 'my': 3.0, 'avent': 2.0, 'the': 10.0, 'nipple': 1.0, 'is': 2.0, 'more': 2.0, 'to': 1.0, 'all': 1.0, 'nursing': 1.0, 'plastic': 1.0, 'he': 3.0, 'received': 1.0, 'much': 4.0, 'free': 1.0, 'get': 1.0, 'pump': 1.0, 'daddy': 1.0, 'rather': 1.0, 'once': 1.0, 'of': 3.0, 'set': 2.0, 'finds': 1.0, 'and': 1.0, 'we': 2.0, 'a': 1.0, 'discovered': 1.0, 'feed': 1.0, 'ones': 1.0, 'liked': 1.0, 'than': 2.0, 'on': 1.0, 'breast': 1.0, 'medela': 2.0}
Word element => {'york': 1.0, 'new': 1.0, 'soto': 1.0, 'kids': 1.0, 'for': 1.0, 'they': 1.0, 'great': 1.0, 'the': 5.0, 'it': 2.0, 'children': 1.0, 'only': 1.0, 'quanity': 1.0, 'nipples': 1.0, 'my': 1.0, 'avent': 4.0, 'thanksana': 1.0, 'bottles': 2.0, 'pump': 1.0, 'easy': 1.0, 'are': 3.0, 'closest': 1.0, 'is': 2.0, 'holds': 1.0, 'into': 1.0, 'mother': 1.0, 'far': 1.0, 'milk': 1.0, 'and': 3.0, 's': 1.0, 'very': 1.0, 'best': 1.0, 'use': 1.0, 'breast': 2.0, 'on': 1.0, 'i': 2.0, 'tried': 1.0, 'to': 4.0, 'as': 2.0, 'all': 2.0, 'superior': 1.0, 'other': 1.0, 'back': 1.0, 'will': 1.0, 'keep': 1.0, 'have': 1.0, 'coming': 1.0, 'shape': 1.0, 'mom': 1.0, 'products': 1.0, 'others': 1.0, 'of': 1.0, 'one': 1.0, '2': 1.0, 'but': 1.0, 'wayi': 1.0}
Word element => {'through': 1.0, 'fully': 1.0, 'nipple': 1.0, 'you': 2.0, 'also': 1.0, 'will': 1.0, 'at': 1.0, 'wet': 1.0, 'there': 1.0, 'putting': 1.0, 'before': 1.0, 'generally': 1.0, 'air': 1.0, 'too': 1.0, 'm': 1.0, 'are': 3.0, 'cap': 1.0, 'my': 1.0, 'not': 2.0, 'a': 1.0, 's': 1.0, 'i': 4.0, 'fan': 1.0, 'they': 5.0, 'dry': 1.0, 'these': 1.0, 'the': 3.0, 'pulled': 1.0, 'big': 1.0, 'stick': 1.0, 'of': 1.0, 'over': 1.0, 'up': 1.0, 'leak': 2.0, 'is': 1.0, 'completely': 1.0, 'let': 1.0, 'bottles': 1.0, 'however': 1.0, 'correctly': 1.0, 'much': 1.0, 'do': 2.0, 'have': 3.0, 'belly': 1.0, 'thing': 1.0, 'all': 1.0, 'to': 3.0, 'for': 1.0, 'baby': 1.0, 'rated': 1.0, 'them': 2.0, 'if': 2.0, 'together': 2.0, 'most': 1.0, 'important': 1.0, 'think': 2.0, 'put': 1.0, 'make': 2.0, 'sure': 2.0, 'into': 1.0, 'that': 1.0}
Word element => {'them': 1.0, 'breast': 1.0, 'sterilizer': 1.0, 'had': 1.0, 'leakage': 1.0, 'love': 3.0, 'other': 2.0, 'all': 1.0, 'have': 1.0, 'any': 1.0, 'problems': 1.0, 'as': 1.0, 'and': 3.0, 'haven': 1.0, 'the': 2.0, 't': 1.0, 'these': 1.0, 'bottles': 2.0, 'with': 2.0, 'did': 1.0, 'brands': 1.0, 'how': 1.0, 'just': 1.0, 'avent': 1.0, 'pump': 1.0, 'makes': 1.0, 'i': 6.0, 'products': 1.0, 'too': 1.0}
Word element => {'made': 1.0, 'well': 1.0, 'very': 1.0, 'sterilizer': 1.0, 'cups': 1.0, 'to': 2.0, 'from': 1.0, 'system': 1.0, 'there': 1.0, 'really': 1.0, 'feeding': 2.0, 'enjoyed': 1.0, 'before': 1.0, 'check': 1.0, 'then': 1.0, 'loved': 1.0, 'sippy': 1.0, 'them': 2.0, 'child': 1.0, 'white': 1.0, 'using': 1.0, 'like': 1.0, 'i': 4.0, 'are': 1.0, 'yes': 1.0, 'they': 2.0, 'products': 1.0, 'these': 1.0, 'bottles': 2.0, 'she': 1.0, 'still': 2.0, 'newborn': 1.0, 'breastfeed': 1.0, 'first': 1.0, 'with': 1.0, 'now': 1.0, 'for': 1.0, 'love': 1.0, 'entire': 1.0, 'bought': 1.0, 'one': 1.0, 'years': 1.0, 've': 1.0, 'new': 1.0, 'her': 1.0, 'will': 1.0, 'takes': 1.0, 'leak': 1.0, 'simply': 1.0, 'bottle': 1.0, 'ago': 1.0, 'a': 2.0, 'day': 1.0, 'the': 1.0, 'without': 1.0, 'my': 2.0, 'tightly': 1.0, 'problem': 1.0, 'if': 1.0, '2': 1.0, 'but': 1.0, 'rim': 1.0, 'is': 1.0, 'screwed': 1.0, 'on': 1.0, 'and': 2.0, 'too': 1.0}
Word element => {'not': 1.0, 'with': 1.0, '10': 1.0, 'do': 1.0, 'only': 1.0, 'while': 1.0, '4oz': 1.0, 'though': 1.0, '25min': 1.0, 'almost': 1.0, 'took': 2.0, '2': 1.0, 'fast': 1.0, 'a': 3.0, 'alot': 1.0, 'was': 3.0, 'stage': 2.0, 'slow': 1.0, 'starge': 1.0, 'easy': 2.0, 'or': 1.0, 'bottles': 2.0, '1': 1.0, 'great': 1.0, 'were': 1.0, 'pumping': 1.0, 'so': 1.0, 'bottle': 4.0, 'i': 3.0, 'finish': 1.0, 'when': 1.0, 'daughter': 1.0, 'conversion': 2.0, 'for': 5.0, 'however': 1.0, 'born': 1.0, 'as': 1.0, 'to': 4.0, 'all': 1.0, 'storage': 1.0, 'ended': 1.0, 'my': 1.0, 'another': 1.0, 'they': 1.0, 'used': 1.0, 'her': 3.0, 'too': 2.0, 'and': 6.0, 'milk': 2.0, 'recomend': 1.0, 'standard': 1.0, 'mouth': 1.0, 'leaked': 1.0, 'newborn': 1.0, 'out': 1.0, 'of': 1.0, 'up': 1.0, 'over': 1.0, 'breast': 1.0, '3': 1.0, 'on': 2.0, 'the': 4.0, 'place': 1.0, 'is': 1.0, 'it': 2.0, 'she': 1.0, 'wasted': 1.0, 'precious': 1.0, 'these': 2.0, 'switching': 1.0, 'also': 1.0, 'flow': 1.0}
Word element => {'leaked': 1.0, 'have': 1.0, 'many': 1.0, 'up': 1.0, 'now': 1.0, 'i': 2.0, 'each': 1.0, 'treasures': 1.0, 'little': 1.0, 'feed': 1.0, 'hassles': 1.0, 'leaky': 1.0, 'uncaring': 1.0, 'these': 1.0, 'of': 1.0, 'institute': 1.0, 'use': 1.0, 'wrench': 1.0, 'need': 1.0, 'll': 1.0, 'into': 1.0, 'seep': 1.0, 'out': 1.0, 'be': 1.0, 'gonna': 1.0, 'what': 1.0, 'cold': 1.0, 'similar': 1.0, 'and': 1.0, 'milk': 2.0, 'swearing': 1.0, 'warm': 1.0, 'them': 1.0, 'night': 1.0, 'complaints': 1.0, 'got': 1.0, 'end': 1.0, 'its': 1.0, 'try': 1.0, 'only': 1.0, 'it': 4.0, 'this': 1.0, 'can': 1.0, 'but': 1.0, 'four': 1.0, 'they': 2.0, 'screw': 1.0, 'right': 1.0, 'folds': 1.0, 'get': 1.0, 'drank': 1.0, 'because': 1.0, 'neck': 1.0, 'or': 2.0, 'how': 2.0, 'you': 7.0, 'in': 1.0, 'turn': 1.0, 'measures': 1.0, 'thing': 1.0, 'no': 2.0, 'the': 5.0, 'less': 1.0, 'avent': 1.0, 'cap': 1.0, 'tight': 1.0, 'below': 1.0, 'their': 3.0, 'at': 1.0, 'three': 1.0, 'who': 2.0, 'from': 1.0, 'matter': 2.0, 'aggravation': 1.0, '3': 1.0, 'think': 1.0, 'make': 1.0, 'mouths': 1.0, 'on': 1.0, 'leaking': 1.0, 'holds': 1.0, 'is': 1.0, 'spree': 1.0, 'calibrated': 1.0, 'leak': 2.0, 'to': 2.0, 'as': 1.0, 'wont': 1.0, 's': 1.0, 'going': 1.0, 'a': 2.0, 'might': 1.0, 'so': 1.0, 'time': 1.0, 'bottle': 1.0, 'needs': 2.0}
Word element => {'someone': 1.0, 'plus': 1.0, 'always': 1.0, 'a': 1.0, 's': 1.0, 'very': 1.0, 'shape': 1.0, '1': 1.0, 'of': 1.0, '2': 1.0, 'for': 1.0, 'stars': 1.0, 'product': 1.0, 'this': 1.0, 'thing': 1.0, 'no': 1.0, 'real': 1.0, 'far': 1.0, 'traditions': 1.0, 'has': 1.0, 'wants': 1.0, 'son': 2.0, '3': 1.0, 'switched': 1.0, 'feed': 1.0, 'have': 3.0, 'worse': 1.0, 'cloth': 1.0, 'i': 5.0, '4': 1.0, 'over': 1.0, 'stopped': 1.0, 'month': 1.0, 'nipple': 2.0, '9': 1.0, 'tried': 1.0, 'problem': 2.0, 'seems': 1.0, 'used': 1.0, 'his': 1.0, 'loosening': 1.0, 'are': 1.0, 'my': 2.0, 'tightening': 1.0, 'the': 10.0, 'new': 1.0, 'oz': 2.0, 'similar': 1.0, 'and': 7.0, 'collar': 1.0, 'gotten': 1.0, 'gerber': 1.0, 'or': 1.0, 'bottles': 3.0, 'to': 6.0, 'now': 1.0, 'nothing': 1.0, 'leaky': 1.0, 'progressively': 1.0, 'old': 1.0, 'point': 1.0, 'bottle': 1.0, 'so': 2.0, 'time': 1.0, 'they': 1.0, 'because': 2.0, 'not': 1.0, 'leak': 1.0, 'ingesting': 1.0, 'leakage': 1.0, 'both': 1.0, 'm': 1.0, 'sure': 1.0, 'how': 2.0, 'much': 2.0, 'is': 3.0, 'breastfeeding': 1.0, 'gave': 1.0, 'that': 2.0, 'soaking': 1.0, 'with': 1.0, 'adjusting': 1.0, 'combine': 1.0, 'who': 1.0, 'bib': 1.0, 'instead': 1.0, 'burp': 1.0}
Word element => {'same': 1.0, 'will': 1.0, 'hope': 1.0, 'their': 1.0, 'use': 1.0, 'fan': 1.0, 'die': 1.0, 'am': 1.0, 'said': 1.0, 'hard': 1.0, 'work': 1.0, 'more': 1.0, 'for': 1.0, 'people': 1.0, 'think': 1.0, 'into': 1.0, 'hungry': 1.0, 'ring': 1.0, 'is': 1.0, 'at': 1.0, 'no': 1.0, 'about': 3.0, 'uses': 1.0, 'do': 1.0, 'put': 2.0, 'washed': 1.0, 'with': 2.0, 'some': 1.0, 'never': 1.0, 'avent': 3.0, 'exclusively': 1.0, 'loves': 1.0, 'been': 1.0, '5': 1.0, 'as': 1.0, 'paci': 1.0, 'to': 5.0, 'any': 1.0, 'have': 5.0, 'four': 1.0, 'but': 1.0, 'everything': 1.0, 'if': 1.0, 'i': 11.0, 'woes': 1.0, 'old': 1.0, 'that': 1.0, 'breast': 1.0, 'problems': 1.0, 'nipple': 2.0, 'mother': 1.0, 'confusion': 1.0, 'a': 4.0, 'going': 1.0, 's': 1.0, 'from': 2.0, 'issue': 1.0, 'posters': 1.0, 'asking': 1.0, 'understand': 1.0, 'out': 1.0, 'the': 10.0, 'of': 3.0, 'there': 1.0, 'also': 1.0, 'in': 1.0, 'daughter': 1.0, 'way': 1.0, 'hate': 1.0, 'it': 1.0, 'bottles': 3.0, 'binky': 1.0, 'or': 1.0, 'had': 1.0, 'flow': 1.0, 'now': 2.0, 'week': 1.0, 'just': 2.0, 'why': 1.0, 'all': 2.0, 'an': 1.0, 'other': 1.0, 'being': 1.0, 'posts': 1.0, 'leaking': 1.0, 'not': 2.0, 'getting': 1.0, 'did': 1.0, 'nipples': 1.0, 'say': 1.0, 'completely': 1.0, 'these': 1.0, 'child': 1.0, 'products': 2.0, 'many': 1.0, 'baby': 1.0, 'she': 2.0, 'others': 2.0, 'are': 2.0, 'using': 1.0, 'like': 1.0, 'together': 1.0, 'were': 1.0, 'feeding': 1.0, 'bottle': 3.0, 'this': 1.0, 'properly': 1.0, 'would': 3.0, '3am': 1.0, 'however': 1.0, 'simple': 1.0, 'read': 1.0, 'wait': 1.0, 'be': 1.0, 'and': 2.0, 'anyone': 1.0, 'sleepy': 1.0, 'them': 1.0, 'after': 1.0, 'remedy': 1.0, 'they': 1.0, 'tried': 1.0, 'until': 1.0}
Word element => {'had': 1.0, 'never': 1.0, 'baby': 1.0, 'work': 1.0, 'times': 1.0, '5': 1.0, 'mine': 1.0, '3': 1.0, 'dr': 4.0, 'on': 2.0, 'his': 4.0, 'but': 1.0, 'washing': 1.0, 'he': 2.0, 'sticking': 1.0, 'ended': 1.0, 'after': 1.0, 'or': 1.0, 'and': 5.0, 'couple': 1.0, 'out': 1.0, 's': 4.0, 'a': 5.0, 'we': 1.0, 'bottles': 5.0, 'gas': 2.0, 't': 4.0, 'ongoing': 1.0, 'son': 2.0, 'our': 1.0, 'any': 1.0, 'as': 2.0, 'have': 3.0, 'so': 2.0, 'brown': 4.0, 'in': 2.0, 'the': 4.0, 'of': 5.0, 'reflux': 1.0, 'house': 1.0, 'didn': 3.0, 'eventually': 1.0, 'avent': 1.0, 'they': 5.0, 'are': 3.0, 'all': 1.0, 'helped': 1.0, 'an': 1.0, 'day': 1.0, 'battle': 1.0, 'control': 1.0, 'up': 5.0, 'decided': 1.0, 'spit': 3.0, 'when': 1.0, 'tried': 1.0, 'problem': 2.0, 'i': 7.0, 'with': 4.0, 'stopped': 1.0, 'it': 1.0, 'feeding': 1.0, 'different': 1.0, 'switch': 1.0, 'spitting': 1.0, 'because': 2.0, 'breast': 1.0, 'that': 1.0, 'latching': 1.0, 'try': 1.0, 'changing': 1.0, 'much': 1.0, 'like': 1.0, 'leaking': 1.0, 'good': 2.0, 'which': 1.0, 'made': 2.0, 'quality': 1.0, 'has': 1.0, 'them': 2.0, 'material': 1.0, 'really': 1.0, 'forced': 1.0, 'however': 1.0, 'easy': 1.0, 'months': 1.0, 'get': 1.0, 'for': 2.0, 'my': 3.0, 'me': 1.0, 'wide': 1.0, 'mix': 1.0, 'formula': 1.0, 'anything': 1.0, 'began': 1.0, 'parts': 1.0, 'worse': 1.0, 'pretty': 1.0, 'to': 4.0, 'became': 1.0, 'types': 1.0, 'twice': 1.0, 'did': 1.0, 'clothes': 1.0, 'was': 1.0, 'most': 1.0, 'back': 1.0, 'handle': 1.0, 'just': 2.0, 'couldn': 1.0}
Word element => {'wide': 1.0, 'because': 1.0, 'star': 1.0, 'only': 1.0, 'method': 1.0, 'number': 1.0, 'course': 1.0, 'newborn': 1.0, 'their': 1.0, 'is': 2.0, 'comes': 1.0, 'best': 1.0, 'wants': 1.0, 'mother': 1.0, 'product': 3.0, 'this': 2.0, 'one': 1.0, 'sterilize': 1.0, 'them': 1.0, 'makes': 1.0, 'system': 1.0, 'clean': 1.0, 'unusually': 1.0, 'easier': 2.0, 'are': 2.0, 'wider': 1.0, 'great': 1.0, 'the': 10.0, 'nipple': 1.0, 'received': 1.0, 'born': 1.0, 'nursing': 2.0, 'daughter': 2.0, 'my': 2.0, 'avent': 4.0, 'neck': 1.0, 'bottles': 5.0, 'researching': 1.0, 'who': 1.0, 'since': 1.0, 't': 2.0, 'a': 2.0, 'i': 6.0, 'knew': 1.0, 'began': 1.0, 'didn': 1.0, 'even': 1.0, 'wouldn': 1.0, 'with': 1.0, '5': 1.0, 'before': 1.0, 'next': 1.0, 'breastfeeding': 1.0, 'returning': 1.0, 'any': 1.0, 'to': 8.0, 'recommend': 1.0, 'was': 2.0, 'now': 1.0, 'be': 1.0, 'after': 1.0, 'work': 1.0, 'and': 3.0, 'rate': 1.0, 'know': 1.0, 'why': 2.0, 'from': 2.0, 'transition': 1.0, 'breeze': 1.0, 'when': 1.0, 'thanks': 1.0, 'reviews': 1.0, 'patented': 1.0, 'nipples': 1.0, 'reason': 1.0, 'design': 1.0, 'developed': 1.0, 'never': 2.0, 'confusion': 1.0, 'feeding': 2.0, 'bottle': 1.0, 'whats': 1.0, 'of': 2.0, 'once': 1.0, 'it': 1.0, 'sterilizing': 1.0, 'rejected': 1.0}
Word element => {'on': 1.0, 'top': 1.0, 've': 1.0, 'newborn': 1.0, 'daughter': 1.0, 'of': 2.0, 'sometimes': 1.0, 'my': 2.0, 'are': 1.0, 'the': 6.0, 'nipple': 2.0, 'great': 1.0, 'is': 1.0, 'tall': 1.0, 'too': 1.0, 'and': 1.0, 'getting': 1.0, 'do': 1.0, 'only': 1.0, 'she': 1.0, 'it': 2.0, 'older': 2.0, 'drawback': 1.0, 'with': 2.0, 'i': 2.0, 'leak': 1.0, 'nipples': 2.0, 'seen': 1.0, 'they': 1.0, 'bottles': 1.0, 'recommend': 1.0, 'bottle': 1.0, 'fit': 1.0, 'for': 1.0, 'in': 1.0, 'dishwasher': 1.0, 'other': 1.0, 'washer': 1.0, 'frustrated': 1.0, 'than': 1.0, 'that': 1.0, 'these': 1.0, 'some': 1.0, 'quot': 2.0, 'to': 2.0, 'as': 2.0, 'got': 2.0, 's': 1.0, 'a': 1.0}
Word element => {'since': 1.0, 'painful': 1.0, 'hasn': 1.0, 'switched': 1.0, 'not': 1.0, 'wanted': 1.0, 'drops': 1.0, 'of': 1.0, 'awful': 1.0, 'screams': 1.0, 'blush': 1.0, 'husband': 1.0, 'brown': 1.0, 'in': 1.0, 'up': 2.0, 'build': 2.0, 'now': 1.0, 'the': 8.0, 'evenings': 1.0, 'these': 1.0, 'didn': 1.0, 'bottle': 1.0, 'daughter': 1.0, 'took': 1.0, 'prior': 1.0, 'i': 5.0, 'my': 2.0, 'baby': 1.0, 'started': 1.0, 'wet': 1.0, 'just': 1.0, 'know': 1.0, 'using': 2.0, 'no': 1.0, 'terrible': 1.0, 'problem': 3.0, 'bottles': 2.0, 'everyone': 1.0, 'back': 1.0, 'but': 1.0, 'work': 1.0, 'have': 2.0, 'quick': 1.0, 'with': 3.0, 'she': 1.0, 'it': 2.0, 'had': 2.0, 'leaks': 1.0, 'lightly': 1.0, 'noises': 1.0, 'to': 4.0, 'all': 1.0, 'as': 1.0, 'ring': 2.0, 'nipple': 3.0, 'else': 1.0, 'however': 1.0, 'noted': 1.0, 'you': 2.0, 'gas': 5.0, 't': 2.0, 'going': 1.0, 'a': 6.0, 's': 3.0, 'dr': 1.0, 'make': 1.0, 'on': 1.0, 'moms': 1.0, 'similar': 1.0, 'and': 5.0, 'do': 1.0, 'assemble': 1.0, 'fix': 1.0, 'solution': 1.0, 'while': 1.0, 'been': 1.0, 'that': 2.0, 'wanting': 1.0, 'screw': 1.0, 'takes': 1.0}
Word element => {'leak': 1.0, 'worth': 1.0, 'because': 1.0, 'not': 1.0, 'money': 1.0, 'baby': 1.0, 'cost': 1.0, 'nice': 1.0, 'over': 1.0, 'bottles': 1.0, 'size': 1.0, 'but': 1.0, 'and': 1.0, 'appearance': 1.0, 'are': 3.0, 'these': 1.0, 'the': 2.0, 'much': 2.0, 'to': 2.0, 'all': 1.0, 'have': 1.0, 'them': 1.0, 'leaking': 1.0, 'too': 2.0, 'when': 1.0, 'they': 2.0, 'your': 1.0, 'way': 1.0, 'you': 2.0, 'trying': 1.0, 'feed': 1.0}
Word element => {'wrong': 1.0, 'go': 1.0, 'wont': 1.0, 'you': 1.0, 'buy': 1.0, 'lol': 1.0, 'tight': 1.0, 'soooo': 1.0, 'em': 2.0, 'screw': 1.0, 'dont': 1.0, 'second': 1.0, 'sometimes': 1.0, 'to': 2.0, 'first': 1.0, 'easy': 2.0, 'but': 1.0, 'do': 1.0, 'ok': 1.0, 'nipples': 1.0, 'they': 3.0, 'the': 1.0, 'are': 1.0, 'bubbles': 1.0, 'clean': 1.0, 'not': 1.0, 'cut': 1.0, 'thats': 1.0, 'cure': 1.0, 'third': 1.0, 'down': 1.0, 'collapse': 1.0, 'on': 2.0, 'leak': 1.0}
Word element => {'does': 1.0, 'now': 1.0, 'then': 1.0, 'never': 1.0, 'years': 1.0, 'use': 1.0, 'used': 1.0, 'friend': 1.0, 'according': 1.0, 'defect': 1.0, 'purchasing': 1.0, 'didn': 1.0, 'even': 1.0, 'happened': 1.0, 'if': 1.0, 'seem': 1.0, 'middle': 1.0, 'in': 2.0, 'anyone': 1.0, 'up': 1.0, 'of': 1.0, 'nipples': 1.0, 'leak': 1.0, 'enough': 1.0, 'matter': 1.0, 'hard': 1.0, 'it': 5.0, 'terribly': 1.0, 'this': 2.0, 'people': 1.0, 'buying': 1.0, 'the': 5.0, 'ago': 1.0, 'a': 2.0, 'we': 1.0, 't': 2.0, 'waking': 1.0, 'avent': 1.0, 'bottles': 2.0, 'was': 1.0, 'recommend': 1.0, 'add': 1.0, 'thinking': 1.0, 'i': 3.0, 'new': 1.0, 've': 1.0, 'would': 1.0, 'feed': 1.0, 'but': 2.0, 'getting': 1.0, 'not': 1.0, 'me': 2.0, 'and': 4.0, 'to': 6.0, 'all': 1.0, 'have': 2.0, 'just': 1.0, 'wet': 1.0, 'them': 3.0, 'night': 1.0, 'baby': 1.0, 'isn': 1.0, 'has': 3.0, 'who': 2.0, 'tried': 1.0, 'problem': 2.0, 'which': 1.0, 'that': 1.0, 'initially': 1.0, 'had': 2.0, 'thought': 1.0, 'is': 1.0, 'asked': 1.0, 'several': 1.0}
Word element => {'alternate': 1.0, 'find': 1.0, 'money': 1.0, 'save': 1.0, 'now': 1.0, 'registering': 1.0, 'who': 1.0, 'after': 1.0, 'would': 1.0, 'extremely': 1.0, 'addition': 1.0, 'dolls': 1.0, 'their': 2.0, 'were': 1.0, 'us': 1.0, 'much': 1.0, 'r': 1.0, 'babies': 1.0, 'son': 1.0, 'returned': 1.0, '99': 1.0, 'in': 2.0, 'buy': 1.0, 'enough': 1.0, 'before': 1.0, 'tell': 1.0, 'didn': 1.0, 'when': 3.0, 'eating': 1.0, 'am': 1.0, 'off': 1.0, 'don': 1.0, 'leaked': 1.0, 'smaller': 1.0, 'bottle': 3.0, 'time': 1.0, 'so': 2.0, 'friends': 2.0, 'store': 1.0, 'return': 1.0, 'luckily': 1.0, 'issues': 2.0, 'none': 1.0, 'contacted': 1.0, 'have': 6.0, 'stop': 1.0, 'stuck': 1.0, 'oddly': 1.0, 'bad': 1.0, 'are': 3.0, 'first': 1.0, 'gassy': 1.0, 'company': 1.0, 'lip': 1.0, 'hungry': 1.0, 'returns': 1.0, 'or': 2.0, 'cry': 1.0, 'for': 2.0, 'deprived': 1.0, 'cheap': 1.0, 'eight': 1.0, 'tips': 1.0, 'worked': 1.0, 'was': 2.0, 'to': 10.0, 'an': 1.0, 'other': 1.0, 'all': 3.0, 'sleep': 1.0, 'as': 2.0, 'had': 1.0, 'leakage': 3.0, 'these': 5.0, 'they': 2.0, 'cause': 1.0, 'with': 3.0, 'told': 2.0, 'let': 1.0, 'no': 1.0, 'play': 1.0, 'about': 1.0, 'but': 1.0, 'needless': 1.0, 'nothing': 1.0, 'my': 3.0, 'me': 4.0, 'not': 1.0, 'and': 4.0, 'lot': 1.0, 'ones': 2.0, 'too': 1.0, 'is': 1.0, 'shouldn': 1.0, 'different': 1.0, 'larger': 2.0, 'give': 1.0, 'there': 3.0, 'assembling': 1.0, 'although': 1.0, 'the': 9.0, 'of': 4.0, 'problems': 1.0, 'that': 5.0, 'should': 1.0, 'dont': 1.0, 'want': 1.0, 'if': 3.0, 'be': 2.0, 'drop': 1.0, 'them': 1.0, 'has': 1.0, 'daughters': 1.0, 'i': 10.0, 'well': 2.0, 'a': 4.0, 'water': 1.0, 'noticed': 1.0, 'on': 1.0, 'it': 2.0, 'will': 2.0, 'leak': 1.0, 'over': 1.0, 'worrying': 1.0, 't': 3.0, 'tightened': 2.0, 'under': 1.0, 'registered': 1.0, 'say': 2.0, 'worry': 1.0, 'cent': 1.0, 'little': 1.0, 'you': 6.0, 'able': 1.0, 'things': 1.0, 'screaming': 1.0, 'bottles': 4.0, 'by': 1.0, 'far': 1.0, 'baby': 1.0, 'many': 2.0, 'said': 1.0, 'theirs': 1.0}
Word element => {'anything': 1.0, 'wouldn': 1.0, 'probably': 1.0, 'happy': 1.0, 'very': 1.0, 'are': 1.0, 't': 1.0, 'we': 1.0, 'but': 1.0, 'were': 1.0, 'have': 1.0, 'if': 2.0, 'better': 1.0, 'something': 1.0, 'would': 1.0, 'not': 1.0, 'm': 1.0, 'that': 1.0, 'gave': 1.0, 'these': 1.0, 'the': 7.0, 'else': 1.0, 'nipple': 1.0, 'sure': 1.0, 'tighten': 1.0, 'only': 2.0, 'loud': 1.0, 'avent': 1.0, 'tight': 1.0, 'cap': 1.0, 'my': 1.0, 'she': 3.0, 'bottles': 2.0, 'so': 1.0, 'buy': 1.0, 'ever': 1.0, 'they': 1.0, 'liked': 1.0, 'to': 3.0, 'now': 1.0, 'i': 3.0, 'seems': 1.0, 'really': 1.0, 'is': 1.0, 'like': 2.0, 'baby': 1.0, 'them': 1.0, 'out': 1.0, 'does': 1.0, 'seem': 1.0, 'you': 1.0, 'overall': 1.0, 'shape': 1.0, 'too': 1.0, 'and': 3.0, 'air': 1.0, 'squeak': 1.0, 'stays': 1.0, 'of': 1.0, 'with': 1.0, 'drawback': 1.0, 'nipples': 1.0, 'leak': 1.0, 'tip': 1.0}
Word element => {'wig': 1.0, 'really': 1.0, 'enough': 1.0, 'frequently': 1.0, 's': 1.0, 'seem': 1.0, 'it': 2.0, 'no': 1.0, 'big': 1.0, 'to': 3.0, 'be': 1.0, 'me': 2.0, 'do': 1.0, 'they': 1.0, 'deal': 1.0, 'leak': 1.0, 'there': 1.0, 'yes': 1.0, 'again': 1.0, 'but': 2.0, 'doesn': 2.0, 'a': 1.0, 'out': 1.0, 'happen': 1.0, 't': 2.0, 'sometimes': 1.0, 'yeah': 1.0, 'pattern': 1.0}
Word element => {'assembling': 1.0, 'not': 1.0, 'tops': 1.0, 'ladies': 1.0, 'breastfeed': 1.0, 'about': 1.0, 'we': 1.0, 'i': 5.0, 'correctly': 1.0, 'tried': 1.0, 'given': 1.0, 'wonder': 1.0, 'love': 1.0, 'for': 1.0, 'one': 1.0, 'talking': 1.0, 'am': 1.0, 'these': 2.0, 'the': 7.0, 'read': 1.0, 'yet': 1.0, 'bottles': 5.0, 'are': 2.0, 'reviews': 1.0, 'dr': 1.0, 'if': 1.0, 'same': 1.0, 'few': 1.0, 'evenflo': 1.0, 'have': 3.0, 'none': 1.0, 'pump': 1.0, 'brown': 1.0, 'ventair': 1.0, 'to': 3.0, 'say': 1.0, 'and': 4.0, 'too': 1.0, 'drip': 1.0, 'milk': 1.0, 'that': 1.0, 'of': 3.0, 'them': 2.0, 'out': 1.0, 'past': 1.0, 'can': 1.0, 'maybe': 1.0, 'even': 1.0, 'come': 1.0, 'close': 1.0, 'bottle': 2.0, 'see': 1.0, 'drop': 1.0}
Word element => {'instead': 1.0, 'for': 1.0, 'registered': 1.0, 'had': 1.0, 'wish': 1.0, 'empties': 1.0, 'package': 1.0, 'after': 1.0, 'have': 1.0, 'use': 1.0, '2': 1.0, 'anytime': 1.0, 'bottle': 1.0, 'so': 1.0, 'old': 1.0, 'weeks': 1.0, '9': 2.0, 'recommend': 1.0, 'however': 1.0, 'contempated': 1.0, 'never': 1.0, 'happy': 1.0, 'pretty': 1.0, 'been': 1.0, 'oz': 7.0, 've': 2.0, 'overall': 1.0, 'first': 1.0, 'dry': 1.0, 'not': 1.0, 'completely': 1.0, 'is': 3.0, 'of': 3.0, 'wide': 1.0, 'formula': 1.0, 'taking': 1.0, 'skipping': 1.0, 'able': 1.0, 'it': 1.0, 'buying': 1.0, 'with': 2.0, '6': 1.0, 'he': 2.0, 'getting': 1.0, 'and': 3.0, 'do': 2.0, 'in': 1.0, 'white': 1.0, 'generally': 1.0, 'inside': 1.0, 'be': 1.0, 'all': 2.0, 'to': 5.0, '4': 3.0, 'i': 7.0, 'like': 1.0, 'mix': 1.0, 'without': 1.0, 'the': 9.0, 'already': 1.0, 'switching': 1.0, 'these': 1.0, 'are': 2.0, 'bottles': 6.0, 'another': 1.0, 'avent': 1.0, 'my': 2.0, 'an': 1.0, 'tops': 1.0, 'over': 1.0, 'don': 1.0, 'them': 1.0, 'baby': 1.0, 'extra': 1.0, 'make': 1.0, '3': 1.0, 'put': 1.0, 'think': 1.0, 'though': 1.0, 'ring': 1.0, 'help': 1.0, 'seem': 1.0, 'son': 2.0, 'we': 2.0, 'a': 2.0, 't': 1.0, 's': 1.0, 'gas': 1.0, 'just': 4.0, 'counter': 1.0, 'they': 1.0, 'lot': 1.0, 'gassy': 1.0, 'tend': 1.0, 'additional': 1.0, 'leak': 1.0, 'if': 1.0}
Word element => {'see': 1.0, 'trip': 1.0, 'making': 1.0, 'be': 1.0, 'll': 1.0, 'today': 1.0, 'pain': 1.0, 'brown': 1.0, 'in': 1.0, 'cried': 1.0, 'much': 1.0, 'caused': 1.0, 'formula': 1.0, 'with': 1.0, 'week': 1.0, 'work': 1.0, 'but': 1.0, 'i': 2.0, 'tried': 1.0, 'them': 1.0, 'out': 1.0, 'registered': 1.0, 'these': 2.0, 'the': 4.0, 'nipple': 1.0, 'daughter': 1.0, 'for': 2.0, 'bottles': 3.0, 'she': 3.0, 'just': 1.0, 'old': 1.0, 'pours': 1.0, 'they': 3.0, 'of': 2.0, 'purchase': 1.0, 'my': 2.0, 'friends': 1.0, 'sides': 1.0, 'her': 2.0, 'difficutly': 1.0, 'used': 1.0, 'because': 2.0, 'mouth': 1.0, 'how': 1.0, 'stage': 1.0, '1': 1.0, 'too': 2.0, 'and': 1.0, 'are': 1.0, 'fast': 1.0, 's': 1.0, 'a': 1.0, 'gas': 1.0, 'we': 1.0, 'those': 1.0, 'ventaire': 1.0, 'latched': 1.0, 'dr': 1.0, '3': 1.0, 'playtex': 1.0, 'on': 1.0, 'has': 1.0, 'recommended': 1.0, 'well': 1.0, 'all': 1.0, 'to': 3.0}
Word element => {'before': 1.0, 'house': 1.0, 'washable': 1.0, 'ceral': 1.0, 'babies': 1.0, 'able': 1.0, 'because': 1.0, 'was': 2.0, 'leaking': 1.0, 'is': 1.0, 'the': 3.0, 'about': 1.0, 'just': 1.0, 'life': 1.0, 'are': 1.0, 'saver': 1.0, 'i': 3.0, 'put': 2.0, 'think': 1.0, 'her': 1.0, 'good': 1.0, 'to': 1.0, 'sleep': 1.0, 'this': 2.0, 'in': 2.0, 'bed': 1.0, 'bottle': 4.0, 'time': 1.0, 'has': 1.0, 'and': 3.0, 'didn': 1.0, 'got': 1.0, 'it': 1.0, 'nights': 1.0, 'my': 1.0, 'happy': 1.0, 'daughter': 1.0, 'less': 1.0, 'when': 1.0, 'wonderful': 1.0, 'fruit': 1.0, 't': 1.0, 'a': 3.0, 'hole': 1.0, 'gas': 1.0, 's': 1.0, 'anything': 1.0, 'other': 1.0, 'things': 1.0}
Word element => {'more': 1.0, 'be': 1.0, 'having': 1.0, 'nice': 1.0, 'air': 1.0, 'system': 1.0, 'numbered': 1.0, 'their': 1.0, 'control': 1.0, 'able': 1.0, 'he': 2.0, 'but': 1.0, 'wind': 1.0, 'pleased': 1.0, 'takes': 1.0, 'nowhere': 2.0, 'up': 1.0, 'is': 1.0, 'bringing': 1.0, 'flow': 2.0, 'near': 2.0, 'on': 1.0, 'did': 1.0, 'under': 1.0, 'over': 1.0, 'slow': 1.0, 'very': 1.0, 'nipple': 2.0, 'real': 1.0, 'simulate': 1.0, 'excellent': 1.0, 'quickly': 1.0, 'nipples': 2.0, 'onto': 1.0, 'before': 1.0, 'breastfed': 1.0, 'who': 1.0, 'dishwasher': 1.0, 'feed': 2.0, 'else': 1.0, 'week': 1.0, 'a': 5.0, 's': 2.0, 't': 4.0, 'times': 1.0, 'sit': 1.0, 'when': 2.0, 'am': 1.0, 'no': 1.0, 'baby': 5.0, 'used': 1.0, 'leakage': 2.0, 'where': 1.0, 'for': 3.0, 'm': 2.0, 'in': 4.0, 'pump': 1.0, 'became': 1.0, 'to': 5.0, 'any': 1.0, 'was': 1.0, 'australia': 1.0, 'doesn': 1.0, 'just': 1.0, 'milk': 2.0, 'and': 7.0, '5': 1.0, 'formula': 2.0, 'instructions': 1.0, 'trouble': 1.0, 'months': 3.0, 'too': 1.0, 'one': 1.0, 'gulp': 1.0, 'from': 4.0, 'they': 2.0, 'my': 7.0, 'avent': 4.0, 'lips': 1.0, 'using': 2.0, 'unaware': 1.0, 'u': 1.0, 'reading': 1.0, 'know': 1.0, 'prevents': 1.0, 'hand': 1.0, 'like': 1.0, 'been': 3.0, 'breast': 4.0, 'problems': 2.0, 'that': 1.0, 'pack': 1.0, 'have': 3.0, 'well': 1.0, 'putting': 1.0, 'i': 14.0, '4': 2.0, 'ineffective': 1.0, 'with': 4.0, 'until': 1.0, 'needed': 1.0, 'bottles': 6.0, 'read': 1.0, 'purchased': 2.0, 'had': 1.0, 'these': 1.0, 'of': 3.0, 'the': 12.0, 'after': 2.0, 'couldn': 1.0, 'sometimes': 2.0, 'so': 2.0, 'uses': 1.0, 'assembled': 1.0, 'time': 1.0, 'full': 1.0, 'still': 2.0, 'never': 1.0, 'mine': 1.0, 'as': 5.0, 'experienced': 1.0, 'several': 1.0, 've': 2.0, 'also': 2.0, 'performance': 1.0, 'here': 1.0, 'll': 1.0, 'dry': 1.0, 'not': 1.0, 'admit': 1.0, 'sterilising': 1.0, 'don': 1.0, 'bad': 1.0, 'are': 1.0, 'someone': 2.0, 'wet': 1.0, 'didn': 1.0, 'him': 1.0, 'it': 2.0, 'rounded': 1.0, 'good': 1.0, 'made': 1.0, 'reviews': 1.0, 'difference': 1.0, 'obviously': 1.0, 'has': 1.0, 'them': 2.0, 'always': 1.0, 'find': 1.0, 'washed': 1.0, 'much': 1.0, 'put': 1.0, 'problem': 1.0, 'part': 1.0, 'though': 1.0}
Word element => {'brands': 1.0, 'trying': 1.0, 'currently': 1.0, 'are': 1.0, 'over': 1.0, 'it': 1.0, 'were': 1.0, 'several': 1.0, 'my': 1.0, 'the': 4.0, 'ones': 1.0, 'diaper': 1.0, 'terrible': 1.0, 'tried': 1.0, 'i': 2.0, 've': 1.0, 'different': 2.0, 'half': 1.0, 'abottle': 1.0, 'take': 1.0, 'bag': 2.0, 'have': 2.0, 'nursing': 1.0, 'been': 1.0, 'and': 3.0, 'me': 1.0, 'bottles': 1.0, 'now': 1.0, 'all': 1.0, 'our': 1.0, 'to': 2.0, 'its': 1.0, 'these': 1.0, 'switching': 1.0, 'pull': 1.0, 'daughter': 2.0, 'again': 1.0, 'am': 1.0, 'when': 1.0, 'will': 1.0, 'we': 3.0, 'a': 1.0, 'bottle': 1.0, 'time': 1.0, 'frustrating': 1.0, 'with': 2.0, 'them': 1.0, 'out': 1.0, 'leaking': 1.0, 'is': 1.0, 'like': 1.0, 'gold': 1.0, 'breastmilk': 1.0, 'very': 1.0, 'of': 2.0}
Word element => {'dr': 1.0, 'buy': 1.0, '54avent': 1.0, 'browns': 1.0, 'course': 1.0, '1800': 1.0, 'even': 1.0, 'knows': 1.0, 'call': 1.0, 'assemble': 2.0, 'how': 1.0, 'if': 2.0, 'instead': 1.0, 'wet': 1.0, 'you': 3.0, 'also': 1.0, 'in': 2.0, 'cave': 1.0, 'will': 1.0, 'doesn': 1.0, 'leaky': 1.0, 'them': 2.0, 'a': 1.0, 'with': 1.0, 'terribly': 1.0, 'it': 3.0, 'bottles': 2.0, 'of': 1.0, 'leak': 3.0, 'ones': 1.0, 'the': 1.0, 'replace': 2.0, 't': 1.0, 'these': 1.0, 'or': 4.0, 'your': 1.0, 'they': 3.0, 'dry': 1.0, 'matter': 1.0, 'and': 1.0, 'space': 1.0, 'avent': 1.0}
Word element => {'brand': 1.0, 'but': 1.0, 'from': 1.0, 'figured': 1.0, 'have': 1.0, 'post': 1.0, 'online': 1.0, 'get': 1.0, 'inspired': 1.0, 'that': 1.0, 'review': 1.0, 'has': 1.0, 'didn': 1.0, 'another': 1.0, 'my': 1.0, 'kept': 1.0, 'used': 1.0, 'would': 2.0, 'cost': 1.0, 've': 1.0, 'so': 2.0, 'time': 2.0, 'the': 2.0, 'annoyed': 1.0, 'is': 1.0, 'happens': 1.0, 'much': 3.0, 'how': 2.0, 'awhile': 1.0, 'after': 2.0, 'strongly': 1.0, 'this': 4.0, 'because': 1.0, 'than': 1.0, 'want': 1.0, 'dribbles': 1.0, 'recommend': 1.0, 'was': 1.0, 'leaking': 3.0, 'really': 1.0, 'milk': 1.0, 'and': 4.0, 'or': 1.0, 'bottles': 3.0, 'keep': 1.0, 'since': 1.0, 'lot': 2.0, 'by': 1.0, 'just': 2.0, 'me': 1.0, 'not': 1.0, 'again': 1.0, 'when': 2.0, 'you': 4.0, 'i': 7.0, 'second': 2.0, 'expect': 1.0, 'no': 3.0, 'of': 1.0, 'replace': 1.0, 'leak': 3.0, 'cheap': 1.0, 'for': 2.0, 'forget': 1.0, 'obvious': 1.0, 'lap': 1.0, 'these': 3.0, 'out': 2.0, 'them': 4.0, 'think': 2.0, 'your': 3.0, 'they': 3.0, 'arm': 1.0, 'reason': 2.0, 'design': 1.0, 'to': 4.0, 'least': 1.0, 'all': 2.0, 'child': 1.0, 'over': 1.0, 'there': 1.0, 'mean': 1.0, 'chair': 1.0, 'it': 4.0, 'annoying': 1.0, 'down': 1.0, 'especially': 1.0, 'rhyme': 1.0, 'bam': 1.0, 'are': 1.0, 'onto': 1.0, 'd': 2.0, 't': 1.0, 'a': 2.0, 's': 2.0, 'could': 1.0, 'better': 1.0}
Word element => {'bother': 1.0, 'are': 1.0, 'botto': 1.0, 'expensive': 1.0, 'etc': 1.0, 'very': 1.0, 'don': 1.0, 'any': 1.0, 'situation': 1.0, 'ake': 1.0, 'dont': 1.0, 'line': 1.0, 'call': 1.0, 'when': 1.0, 't': 1.0, 'these': 1.0, 'the': 1.0, 'they': 3.0, 'better': 1.0, 'leaky': 1.0, 'say': 1.0, 'bacterial': 1.0, 'and': 1.0, 'do': 1.0, 'to': 1.0, 'you': 1.0, 's': 1.0, 'soap': 1.0, 'washing': 1.0, 'bottles': 2.0, 'stink': 1.0, 'it': 1.0, 'with': 1.0, 'anti': 1.0}
Word element => {'perfectly': 1.0, 'bought': 1.0, 'went': 1.0, 'back': 1.0, 'could': 1.0, 'wish': 1.0, 'always': 1.0, 'feedin': 1.0, 'to': 2.0, 'was': 2.0, 'breastpump': 1.0, 'they': 2.0, 'feed': 1.0, 'phenominal': 1.0, 'whether': 2.0, 'avent': 1.0, 'my': 3.0, 'trying': 1.0, 'from': 3.0, 'son': 1.0, 'i': 5.0, 'these': 2.0, 'the': 5.0, 'breast': 1.0, 'with': 1.0, 'manual': 1.0, 'because': 1.0, 'by': 1.0, 'just': 1.0, 'got': 2.0, 'work': 1.0, 'money': 1.0, 'but': 1.0, 'clogged': 1.0, 'every': 1.0, 'registered': 1.0, 'gerber': 1.0, 'bottles': 3.0, 'or': 2.0, 'formula': 2.0, 'impossible': 1.0, 'saking': 1.0, 'nipples': 1.0, 'pump': 1.0, 'get': 2.0, 'and': 2.0, 'which': 1.0, 'using': 1.0, 'frustrated': 1.0, 'sucking': 1.0, 'so': 1.0, 'much': 1.0, 'also': 1.0, 'leaked': 2.0, 'for': 1.0, 'where': 1.0, 'baby': 2.0, 'them': 1.0, 'breastmilk': 1.0, 'mix': 1.0}
Word element => {'they': 1.0, 'easy': 1.0, 'how': 1.0, 'use': 1.0, 'ease': 1.0, 'pleased': 1.0, 'fed': 1.0, 've': 1.0, 'baby': 1.0, 'first': 1.0, 'youngest': 1.0, '22': 1.0, '9': 1.0, 'are': 2.0, 'ones': 2.0, 'clean': 1.0, 'adopted': 1.0, 'off': 1.0, 're': 1.0, 'onesare': 1.0, 'test': 1.0, 'do': 1.0, 'especially': 1.0, 'loosen': 1.0, 'recently': 1.0, 'should': 1.0, 'mouth': 1.0, 'very': 1.0, 'little': 3.0, 'months': 2.0, 'one': 1.0, 'bottles': 2.0, 'lot': 1.0, 'solution': 1.0, 'can': 1.0, 'dealt': 1.0, 'child': 1.0, 'have': 2.0, 'screw': 2.0, 'provider': 1.0, 'the': 6.0, 'care': 1.0, 'old': 1.0, 'come': 1.0, 'with': 4.0, 'it': 5.0, 'mom': 1.0, 'and': 5.0, 'too': 1.0, 'two': 1.0, 'i': 4.0, '4': 1.0, 'older': 1.0, 'now': 1.0, 'we': 1.0, 's': 1.0, 'going': 1.0, 'a': 4.0, 'well': 1.0, 'of': 4.0, 'leak': 2.0, 'ladies': 1.0, 'former': 1.0, 'is': 2.0, '41': 1.0, 'years': 1.0, 'to': 2.0, 'as': 1.0, 'any': 1.0, 'tell': 1.0, '11': 1.0, 'again': 1.0, 'you': 3.0, 'if': 2.0, 'been': 1.0, 'that': 1.0, 'into': 1.0, 'popping': 1.0, 'bottle': 3.0, 'avent': 1.0, 'exclusively': 1.0, 'my': 2.0, 'lid': 1.0, 'tight': 1.0, 'shake': 2.0, '5': 1.0, 'before': 1.0, 'on': 3.0, 'your': 1.0, 'dear': 1.0}
Word element => {'recomend': 1.0, 'highly': 1.0, 'would': 1.0, 'these': 1.0, 'best': 1.0, 'im': 1.0, 'far': 1.0, 'problem': 1.0, 'never': 1.0, 'timeregarding': 1.0, 'good': 1.0, 'are': 2.0, 'in': 1.0, 'daily': 1.0, 'later': 1.0, '5': 1.0, 'even': 1.0, 'for': 1.0, 'well': 1.0, 'whith': 1.0, 'also': 1.0, 'due': 1.0, 'bottles': 1.0, 'boiling': 1.0, 'crushed': 1.0, 'enoughas': 1.0, 'avent': 3.0, 'my': 1.0, 'happy': 1.0, 'leeaking': 1.0, 'nipples': 2.0, 'when': 2.0, 'inverted': 1.0, 'mom': 1.0, 'daughter': 1.0, '4': 1.0, 'i': 5.0, 'old': 1.0, 'cant': 1.0, 'pot': 1.0, 'a': 5.0, 'could': 1.0, 'pump': 1.0, 'now': 1.0, 'away': 1.0, '1': 1.0, 'moms': 1.0, 'and': 4.0, 'all': 1.0, 'as': 4.0, 'to': 2.0, 'was': 4.0, 'had': 2.0, 'thank': 1.0, 'right': 1.0, 'after': 1.0, 'fed': 1.0, 'concerned': 1.0, 'breastfeed': 1.0, 'first': 2.0, 'not': 1.0, 'brought': 1.0, 'about': 1.0, 'the': 5.0, 'started': 1.0, 'baby': 1.0, 'them': 2.0, 'out': 1.0, 'simply': 1.0, 'time': 1.0, 'bit': 1.0, 'month': 3.0, 'she': 2.0, 'that': 1.0, 'totally': 1.0, 'breastfeeding': 1.0, 'transition': 1.0, 'smooth': 1.0, 'breast': 1.0}
Word element => {'back': 1.0, 'see': 1.0, 'bad': 1.0, 'nothing': 1.0, 'a': 2.0, 't': 2.0, 'going': 1.0, 's': 2.0, 'maybe': 1.0, 'than': 1.0, 'they': 2.0, 'we': 1.0, 'reviews': 1.0, 'batch': 1.0, 'about': 2.0, 'no': 1.0, 'one': 2.0, 'arrived': 1.0, 'research': 1.0, 'even': 1.0, 'just': 1.0, 'early': 1.0, 'weeks': 1.0, '3': 1.0, 'dr': 3.0, 'think': 1.0, 'them': 3.0, 'baby': 3.0, 'leaked': 3.0, 'these': 3.0, 'knew': 1.0, 'had': 1.0, 'our': 1.0, 'to': 4.0, 'all': 2.0, 'wish': 1.0, 'pain': 1.0, 'when': 2.0, 'you': 1.0, 'there': 1.0, 'the': 9.0, 'of': 3.0, 'simple': 1.0, 'get': 2.0, 'and': 9.0, 'read': 1.0, 'very': 1.0, 'having': 1.0, 'aggravating': 1.0, 'bottles': 7.0, 'time': 1.0, 'leak': 2.0, 'plain': 1.0, 'if': 1.0, 'every': 1.0, 'before': 1.0, 'formula': 1.0, 'was': 1.0, 'husband': 1.0, 'buying': 1.0, 'with': 2.0, 'complain': 1.0, 'my': 3.0, 'avent': 3.0, 'didn': 1.0, 'eventually': 1.0, 'brown': 3.0, 'removed': 1.0, 'thought': 1.0, 'it': 2.0, 'from': 1.0, 'rotation': 1.0, 'i': 10.0, 'well': 1.0, 'so': 2.0, 'can': 2.0, 'several': 1.0, 'stand': 1.0, 've': 1.0, 'since': 1.0, 'quickly': 1.0, 'gassy': 1.0, 'have': 1.0, 'is': 1.0, 'money': 1.0, 'bought': 3.0, 'spits': 1.0, 'less': 3.0, 'up': 1.0, 'over': 1.0, 'people': 1.0, 'extra': 1.0, 'parts': 1.0, 'clean': 1.0, 'problems': 1.0, 'that': 1.0, 'wasting': 1.0, 'in': 1.0, 'm': 1.0, 'but': 1.0, 'write': 1.0}
Word element => {'try': 1.0, 'as': 1.0, 'on': 1.0, 'comfortable': 1.0, 'very': 1.0, 'avent': 1.0, 'scoops': 1.0, 'trying': 1.0, 'was': 1.0, 'necked': 1.0, 'makes': 1.0, 'opening': 1.0, 'wide': 1.0, 'is': 1.0, 'money': 1.0, 'but': 2.0, 'suits': 2.0, 'child': 1.0, 'wash': 2.0, 'use': 1.0, 'times': 1.0, 'you': 5.0, 'think': 2.0, '3': 1.0, 'certainly': 1.0, 'if': 1.0, 'everything': 1.0, 'they': 5.0, 'are': 3.0, 'see': 1.0, 'yes': 1.0, 'babysafe': 1.0, 'hold': 1.0, 'canon': 1.0, 'expensive': 1.0, 'for': 3.0, 'previously': 2.0, 'find': 3.0, 'brands': 1.0, 'birth': 2.0, 'and': 11.0, 'had': 4.0, 'leaks': 1.0, 'when': 1.0, 'seal': 1.0, 'what': 3.0, 'suit': 1.0, 'spilling': 1.0, 'could': 1.0, 'take': 1.0, 'we': 1.0, 's': 3.0, 't': 1.0, 'a': 2.0, 'from': 2.0, 'formula': 4.0, 'all': 1.0, 'your': 2.0, 'any': 1.0, 'to': 9.0, 'have': 3.0, 'mainly': 1.0, 'used': 3.0, 'narrow': 1.0, 'only': 2.0, 'put': 2.0, 'do': 1.0, 'grip': 1.0, 'trial': 1.0, 'children': 1.0, 'get': 1.0, 'trouble': 1.0, 'this': 3.0, 'with': 6.0, 'how': 1.0, '6': 1.0, 'brand': 2.0, 'switch': 1.0, 'them': 4.0, 'many': 1.0, 'baby': 3.0, 'not': 2.0, 'error': 1.0, 'worth': 1.0, 'bottles': 3.0, 'also': 1.0, 'us': 2.0, 'give': 1.0, '3rd': 1.0, 'perfectly': 2.0, 'quite': 1.0, 'guess': 1.0, 'i': 10.0, 'well': 2.0, 'outings': 1.0, 'nappy': 1.0, 'me': 1.0, 'my': 3.0, 'forever': 1.0, 'bag': 1.0, 'took': 1.0, 'fed': 1.0, 'mother': 1.0, 'in': 3.0, 'teat': 2.0, 'no': 1.0, 'about': 1.0, 'easy': 3.0, 'know': 1.0, 'like': 1.0, 'some': 1.0, 'who': 1.0, 'more': 1.0, 'babies': 2.0, 'because': 1.0, 'problems': 1.0, 'that': 2.0, 'case': 1.0, 'just': 1.0, 'extremely': 1.0, 'wouldn': 1.0, 'it': 1.0, 'the': 9.0, 'of': 1.0}
Word element => {'problem': 1.0, 'mystery': 1.0, 'could': 1.0, 'what': 1.0, 'gets': 1.0, 'always': 1.0, 'sock': 1.0, 'like': 1.0, 's': 1.0, 'end': 1.0, 'ours': 1.0, 'uses': 1.0, 'didn': 1.0, 'bag': 1.0, 'inside': 1.0, 'be': 3.0, 'avents': 3.0, 'leak': 1.0, 'insert': 1.0, 'my': 3.0, 'may': 1.0, 'avent': 1.0, 'a': 3.0, 'we': 4.0, 't': 1.0, 'realize': 1.0, 'on': 2.0, 'dr': 1.0, 'think': 1.0, 'make': 1.0, 'properly': 1.0, 'diaper': 1.0, 'experienced': 1.0, 'and': 5.0, 'down': 1.0, 've': 2.0, 'difficult': 1.0, 'still': 1.0, 'not': 3.0, 'really': 3.0, 'leaks': 1.0, 'had': 1.0, 'fully': 1.0, 'is': 4.0, 'ring': 2.0, 'to': 4.0, 'dryer': 1.0, 'have': 3.0, 'thinking': 1.0, 'until': 1.0, 'tried': 1.0, 'yes': 1.0, 'one': 1.0, 'too': 1.0, 'ones': 2.0, 'these': 1.0, 'should': 1.0, 'chin': 1.0, 'of': 3.0, 'the': 12.0, 'nipple': 2.0, 'with': 1.0, 'it': 9.0, 'screwed': 2.0, 'out': 1.0, 'things': 1.0, 'you': 1.0, 'plastic': 1.0, 'smelled': 1.0, 'waste': 1.0, 'sour': 1.0, 'sure': 1.0, 'formula': 1.0, 'sons': 1.0, 'neck': 1.0, 'over': 1.0, 'faulty': 2.0, 'up': 1.0, 'browns': 1.0, 'floor': 1.0, 'use': 2.0, 'that': 2.0, 'because': 1.0, 'hate': 1.0, 'inserted': 1.0, 'money': 1.0, 'but': 2.0, 'thrown': 1.0, 'being': 1.0, 'this': 1.0, 'few': 1.0, 'away': 1.0, 'figure': 1.0, 'now': 1.0, 'they': 1.0, 'double': 1.0, 'were': 1.0, 'crop': 1.0, 'only': 2.0, 'combo': 2.0, 'all': 4.0, 'other': 1.0, 'husband': 1.0, 'lost': 1.0, 'sealing': 1.0, 'refuses': 1.0, 'i': 4.0, 'well': 1.0, 'right': 1.0, 'check': 2.0, 'in': 2.0}
Word element => {'them': 1.0, 'using': 1.0, 'just': 1.0, 'refunds': 1.0, 'you': 2.0, 'for': 1.0, 'nothing': 1.0, 'is': 2.0, 'there': 1.0, 'and': 1.0, 'got': 1.0, 'i': 4.0, 'buy': 1.0, 'said': 1.0, 'explained': 1.0, 'had': 1.0, 'daughter': 1.0, 'time': 1.0, 'they': 1.0, 'politely': 1.0, 'find': 1.0, 'get': 1.0, 'give': 1.0, 'frustration': 1.0, 'me': 2.0, 'not': 4.0, 'save': 1.0, 'avent': 2.0, 'my': 2.0, 'lot': 2.0, 'bottles': 4.0, 'the': 4.0, 'these': 1.0, 'rude': 2.0, 'do': 3.0, 'yourself': 1.0, 'properly': 1.0, 'from': 1.0, 'very': 1.0, 'leaked': 1.0, 'to': 2.0, 'all': 1.0, 'our': 3.0, 'were': 1.0, 'tone': 1.0, 'customer': 2.0, 'of': 2.0, 'immediately': 1.0, 'are': 1.0, 'called': 1.0, 'stress': 1.0, 'service': 2.0, 'out': 1.0, 'how': 1.0, 'extremely': 1.0, 'we': 1.0, 'gas': 1.0, 'a': 3.0, 'could': 1.0, 'can': 1.0, 'money': 1.0, 'back': 1.0, 'representative': 1.0, 'problem': 2.0, 'with': 3.0}
Word element => {'recomend': 1.0, 'highly': 1.0, 'work': 1.0, 'extra': 1.0, 'works': 1.0, 'need': 1.0, 'they': 1.0, 'them': 1.0, 'baby': 1.0, 'breast': 1.0, 'use': 1.0, 'size': 1.0, 'which': 1.0, 'clean': 1.0, 'easy': 2.0, 'wide': 1.0, 'these': 2.0, 'love': 1.0, 'absolutly': 1.0, 'feeding': 1.0, 'feels': 1.0, 'first': 1.0, 'until': 1.0, 'tighten': 1.0, 'figured': 1.0, 'since': 1.0, 'once': 1.0, 'leaked': 1.0, 'would': 2.0, 'from': 1.0, 'outgrows': 1.0, 'prevent': 1.0, 'so': 2.0, 'all': 1.0, 'as': 3.0, 'to': 5.0, 'and': 5.0, 'too': 2.0, 'your': 1.0, 'on': 2.0, 'people': 1.0, 'many': 1.0, 'leaking': 2.0, 'figure': 2.0, 'is': 2.0, 'just': 2.0, 'few': 1.0, 'with': 1.0, 'complain': 1.0, 'admit': 1.0, 'saying': 1.0, 'top': 2.0, 'that': 4.0, 'no': 1.0, 'about': 1.0, 'i': 7.0, 'right': 1.0, 'screw': 2.0, 'must': 1.0, 'have': 2.0, 'it': 10.0, 'mounth': 1.0, 'this': 2.0, 'the': 5.0, 'im': 1.0, 'true': 1.0, 'still': 1.0, 'nipples': 1.0, 'leak': 3.0, 'a': 1.0, 'could': 1.0, 's': 2.0, 'times': 1.0, 'when': 1.0, 'happened': 1.0, 'you': 3.0, 'out': 3.0, 'everything': 1.0, 'if': 2.0, 'will': 2.0, 'telling': 1.0, 'tight': 3.0, 'my': 1.0, 'bottles': 3.0, 'me': 1.0, 'not': 2.0}
Word element => {'for': 1.0, 'good': 1.0, 'aren': 1.0, 's': 1.0, 'when': 1.0, 'use': 1.0, 'to': 1.0, 'newborns': 1.0, 'them': 1.0, 'keep': 1.0, 'fed': 1.0, 'after': 1.0, 'stomach': 1.0, 'i': 1.0, 'old': 1.0, 'months': 1.0, 'never': 1.0, 'have': 1.0, 'born': 1.0, 't': 1.0, 'the': 1.0, '2': 2.0, 'is': 1.0, 'problems': 2.0, 'son': 1.0, 'older': 1.0, 'with': 2.0, 'he': 2.0, 'avent': 1.0, 'my': 1.0, 'they': 1.0, 'has': 1.0, 'free': 1.0, 'bottles': 2.0, 'we': 1.0, 'cries': 1.0, 'will': 1.0, 'but': 2.0, 'being': 1.0, 'noticed': 1.0, 'our': 1.0, 'that': 1.0, '1': 1.0, 'and': 1.0}
Word element => {'great': 1.0, 'no': 1.0, 'on': 1.0, 'over': 1.0, 'caps': 1.0, 'from': 1.0, 'be': 1.0, 'out': 1.0, 'turned': 1.0, 'first': 1.0, 'was': 1.0, 'leaking': 1.0, 'problems': 2.0, 'one': 1.0, 'than': 1.0, 'did': 1.0, 'cleaning': 1.0, 'wide': 1.0, 'have': 3.0, 'frustrating': 1.0, 'with': 2.0, 'it': 1.0, 'happiest': 1.0, 'bottle': 1.0, 'feeding': 1.0, 'i': 6.0, 've': 1.0, 'allows': 1.0, 'kids': 1.0, 'when': 2.0, 'used': 2.0, 'had': 1.0, 'what': 1.0, 'avent': 1.0, 'my': 1.0, 'tightening': 1.0, 'the': 4.0, 'is': 2.0, 'more': 2.0, 'and': 1.0, 'neck': 1.0, 'bottles': 3.0, 'easy': 1.0, 'for': 2.0, 'incredibly': 1.0, 'nurse': 1.0, 'started': 1.0, 'them': 3.0, 'baby': 1.0, 'fixed': 1.0, 'pleasant': 1.0, 'important': 1.0, 'been': 1.0, 'that': 4.0, 'experience': 1.0, 'can': 1.0, 'using': 1.0, 'which': 2.0, 'like': 2.0, 'know': 1.0, 'making': 1.0, 'they': 2.0, 'we': 1.0, 't': 1.0, 'a': 3.0, 'shaped': 1.0, 'are': 1.0, 'all': 1.0, 'to': 2.0, 'once': 1.0, 'rather': 1.0}
Word element => {'thing': 1.0, 'about': 2.0, 'bagged': 1.0, 'double': 1.0, 'even': 1.0, 'layers': 1.0, 'both': 1.0, 'through': 1.0, 'their': 1.0, 'permanently': 1.0, 'juts': 1.0, 'unlike': 1.0, 'sucks': 1.0, 'weak': 1.0, 'when': 2.0, 'sticks': 1.0, 'soft': 1.0, 'more': 1.0, 'advertising': 2.0, 'great': 2.0, 'avent': 4.0, 'drop': 1.0, 'with': 1.0, 'pliable': 1.0, 'ins': 1.0, 'playtex': 2.0, 'contrary': 1.0, 'got': 1.0, 'design': 1.0, 'a': 2.0, 'overall': 1.0, 'than': 1.0, 'way': 1.0, 'mouth': 1.0, 'happier': 1.0, 'his': 3.0, 'not': 1.0, 'give': 2.0, 'to': 3.0, 'is': 6.0, 'comes': 1.0, 'size': 2.0, 'system': 2.0, 'are': 4.0, 'bad': 1.0, 'in': 3.0, 'air': 2.0, 'newborn': 2.0, 'out': 4.0, 'let': 1.0, 'bottles': 1.0, 'me': 1.0, 'my': 3.0, 'better': 2.0, 'stay': 1.0, 'if': 1.0, 'very': 1.0, 'being': 1.0, 'everything': 1.0, 'and': 9.0, 'much': 3.0, 'conform': 1.0, 'too': 1.0, 'large': 1.0, 'stars': 1.0, 'for': 1.0, 'disposable': 1.0, 'be': 1.0, 'within': 1.0, 'giving': 1.0, 'would': 4.0, '0': 1.0, 'him': 3.0, 'it': 7.0, 'stopped': 1.0, 'milk': 3.0, 'pacifiers': 3.0, 'came': 1.0, 'bubbles': 1.0, 'enough': 1.0, 'gags': 2.0, 'have': 1.0, 'name': 1.0, 'hates': 1.0, 'whole': 1.0, 'they': 4.0, 'has': 1.0, 'them': 2.0, 'next': 1.0, 'seams': 1.0, 'that': 4.0, 'pump': 1.0, 'you': 1.0, 'son': 2.0, 'face': 1.0, 'only': 2.0, 'nipples': 2.0, 'nurser': 3.0, 'like': 2.0, 'using': 1.0, 'bags': 1.0, 'as': 1.0, 'horrible': 1.0, 'crazy': 1.0, 'the': 16.0, 'of': 3.0, 'i': 2.0, 'fast': 2.0, 'substantial': 1.0, 'long': 1.0, 'gulps': 1.0, 'on': 4.0, 'hard': 1.0, 'nipple': 5.0, 'we': 2.0, 'then': 1.0, 'he': 6.0, 'down': 1.0, 'throat': 1.0, 'warmer': 1.0, 'so': 1.0, 'nuk': 1.0, 'this': 1.0, 'bottle': 1.0, 'drenched': 1.0, 'seconds': 1.0, 'also': 2.0, 'sprayed': 1.0, 'ends': 1.0, 'spitting': 1.0, 'softer': 1.0, 'leak': 3.0, 'portion': 1.0, 'up': 2.0, 'takes': 1.0}
Word element => {'helps': 1.0, 'leaks': 1.0, 'going': 1.0, 'lid': 1.0, 'screw': 1.0, 'a': 3.0, 't': 1.0, 'and': 6.0, 'herself': 1.0, 'liquid': 1.0, 'hold': 1.0, 'found': 2.0, 'wish': 1.0, 'bottle': 1.0, 'this': 2.0, 'my': 2.0, 'may': 1.0, 'for': 2.0, 're': 1.0, 'where': 1.0, 'easier': 1.0, 'but': 1.0, 'rim': 1.0, 'other': 1.0, 'compared': 1.0, 'from': 1.0, 'to': 5.0, 'squeaks': 1.0, 'any': 2.0, 'outside': 1.0, 'had': 1.0, 'on': 1.0, 'liners': 1.0, 'flow': 1.0, 'than': 1.0, 'choose': 1.0, 'in': 2.0, 'be': 2.0, 'daugher': 1.0, 'bought': 1.0, 'rag': 1.0, 'you': 3.0, 'complaints': 1.0, 'daughter': 1.0, 'got': 1.0, 'zero': 1.0, 'more': 1.0, 'hope': 1.0, 'holds': 1.0, 'have': 4.0, 'don': 1.0, 'about': 2.0, 'buy': 1.0, 'pricy': 1.0, 'they': 1.0, 'when': 1.0, 'what': 1.0, 'seal': 1.0, 'nurser': 1.0, 'ones': 1.0, 'these': 5.0, 'some': 1.0, 'place': 1.0, 'started': 1.0, 'them': 2.0, 'baby': 1.0, 'playtex': 3.0, 'much': 2.0, 'put': 1.0, 'system': 1.0, 'out': 1.0, 'first': 1.0, 'with': 3.0, 'complain': 1.0, 'the': 11.0, 'of': 4.0, 'nipple': 2.0, 'besides': 1.0, 'slow': 2.0, 'i': 5.0, 'fast': 2.0, 'really': 1.0, 'just': 1.0, 'bottles': 4.0, 'by': 1.0, 'dry': 1.0, 'not': 2.0, 'can': 1.0, 'so': 2.0, 'away': 1.0, 'selection': 1.0, 'was': 1.0, 'leaking': 1.0, 'happier': 1.0, 'problem': 1.0, 'people': 1.0, 'bigger': 1.0, 'if': 2.0, 'there': 1.0, 'it': 2.0, 'solved': 1.0, 'means': 1.0, 'will': 1.0, 'leak': 1.0, 'wiping': 1.0, 'inside': 1.0, 'is': 1.0, 'ring': 1.0, 'easily': 1.0, 'that': 1.0}
Word element => {'not': 1.0, 'months': 1.0, 'but': 1.0, '2': 1.0, 'babies': 1.0, 'older': 1.0, 'problems': 1.0, 'very': 1.0, 'this': 1.0, 'with': 1.0, 'having': 1.0, 'special': 1.0, 'nipples': 1.0, 'big': 1.0, 'mistake': 1.0, 'these': 1.0, 'the': 2.0, 'premie': 1.0, 'feeding': 1.0, 'breast': 1.0, 'over': 1.0, 'bottles': 1.0, 'my': 1.0, 'may': 1.0, 'got': 1.0, 'bottle': 1.0, 'so': 1.0, 'am': 1.0, 'was': 3.0, 'early': 1.0, '3': 1.0, 'strong': 1.0, 'a': 4.0, 'month': 1.0, 'daughter': 1.0, 'and': 3.0, 'too': 2.0, 'i': 2.0, 'flow': 1.0, 'be': 1.0, 'is': 1.0, 'way': 1.0, 'for': 3.0, 'baby': 1.0, 'pouring': 1.0, 'newborn': 2.0, 'out': 1.0, 'made': 1.0, 'of': 1.0, 'all': 1.0, 'they': 2.0, 'gassy': 1.0, 'her': 2.0, 'good': 1.0}
Word element => {'size': 1.0, 'bottle': 1.0, 'smaller': 1.0, 'version': 1.0, 'like': 1.0, 'also': 1.0, 'ventilated': 1.0, 'easiest': 1.0, 'of': 2.0, 'one': 1.0, 'through': 1.0, 'quiet': 1.0, 'very': 1.0, 'occasion': 1.0, 'has': 1.0, 'noise': 1.0, 'unexpected': 1.0, 'together': 1.0, 'with': 1.0, 'loud': 1.0, 'when': 1.0, 'simpler': 1.0, 'have': 1.0, 'scared': 1.0, 'this': 2.0, 'found': 1.0, 'ventaire': 1.0, 's': 1.0, 'these': 1.0, 'the': 6.0, 'squeaky': 1.0, 'my': 1.0, 'avent': 3.0, 'are': 2.0, 'feedings': 1.0, 'bottles': 4.0, 'on': 1.0, 'put': 1.0, 'dr': 1.0, 'playtex': 1.0, 'make': 1.0, 'noises': 1.0, 'as': 1.0, 'to': 5.0, 'comparable': 1.0, 'for': 2.0, 'assemble': 1.0, 'ventilation': 1.0, 'sometimes': 1.0, 'and': 1.0, 'fewer': 1.0, 'however': 1.0, 'ounce': 1.0, 'parts': 1.0, 'try': 1.0, 'use': 2.0, 'not': 1.0, 'because': 1.0, 'baby': 1.0, 'quality': 1.0, 'night': 2.0, 'them': 1.0, 'vents': 1.0, 'they': 1.0, 'brown': 1.0, 'in': 2.0, 'air': 1.0, '4': 1.0, 'otherwise': 1.0, 'i': 3.0, 'flows': 1.0, 'into': 1.0}
Word element => {'spares': 1.0, 'kept': 1.0, 'feed': 1.0, 'mothers': 1.0, 'me': 1.0, 'and': 3.0, 'get': 1.0, 'just': 1.0, 'wasn': 1.0, 'like': 1.0, 'it': 1.0, 'with': 1.0, 'doing': 1.0, 'this': 1.0, 'bottle': 2.0, 'i': 6.0, 'leaking': 1.0, 'was': 1.0, 'had': 1.0, 'happy': 1.0, 'avent': 1.0, 'bottles': 2.0, 'that': 1.0, 've': 1.0, 'something': 1.0, 'without': 1.0, 'the': 2.0, 'other': 1.0, 'have': 1.0, 'problems': 1.0, 'to': 2.0, 'as': 2.0, 'decided': 1.0, 'read': 1.0, 'very': 1.0, 'incorrectly': 1.0, 'recieved': 1.0, 't': 3.0, 'a': 3.0, 'free': 1.0, 'they': 1.0, 'promotion': 1.0, 'don': 1.0, 'them': 1.0, 'when': 1.0, 'leak': 2.0, 'try': 1.0, 'much': 1.0, 'sometimes': 2.0, '2': 1.0, 'can': 2.0, 'through': 1.0}
Word element => {'be': 1.0, 'like': 1.0, 'think': 1.0, 'fix': 1.0, 'my': 1.0, 'agree': 1.0, 'beginning': 1.0, 'and': 1.0, 'from': 1.0, 'them': 1.0, 'out': 1.0, 'messy': 1.0, 'bottle': 1.0, 'guess': 1.0, 'i': 2.0, 'terribly': 1.0, 'don': 1.0, 'leak': 1.0, 'they': 2.0, 'to': 1.0, 'husband': 1.0, 'its': 1.0, 'simple': 1.0, 'engineering': 1.0, 'flaw': 1.0, 'mothers': 1.0, 'kindof': 1.0, 'appalling': 1.0, 'the': 2.0, 'these': 1.0, 'figured': 1.0, 't': 1.0}
Word element => {'flaw': 1.0, 'design': 1.0, 'major': 1.0, 'one': 1.0, 'system': 1.0, 'buy': 1.0, 'aggrevation': 1.0, 'yourself': 1.0, 'save': 1.0, 'leaks': 2.0, 'purchased': 1.0, 'in': 1.0, 'but': 1.0, 'onto': 1.0, 'cap': 2.0, 'hungry': 1.0, 'formula': 2.0, 'have': 3.0, 'majority': 1.0, 'screw': 1.0, 'they': 1.0, 'a': 5.0, 's': 4.0, 't': 1.0, 'safe': 1.0, 'would': 1.0, 'think': 2.0, 'playtex': 1.0, 'constantly': 1.0, 'it': 6.0, 'wouldn': 1.0, 'leak': 2.0, 'like': 1.0, 'know': 1.0, 'bottles': 3.0, 'after': 1.0, 'holding': 1.0, 'not': 3.0, 'my': 2.0, 'me': 1.0, 'i': 4.0, 'two': 1.0, 'ventaire': 1.0, 'and': 8.0, 'same': 1.0, 'drip': 1.0, 'did': 2.0, 'this': 1.0, 'bottle': 6.0, 'time': 3.0, 'lookout': 1.0, 'feeding': 1.0, 'while': 1.0, 'from': 1.0, 'to': 4.0, 'as': 3.0, 'of': 2.0, 'the': 18.0, 'myself': 1.0, 'baby': 3.0, 'upside': 1.0, 'you': 4.0, 'when': 2.0, 'another': 1.0, 'trying': 1.0, 'nipple': 1.0, 'encountered': 1.0, 'these': 2.0, 'was': 2.0, 'which': 1.0, 'leaking': 1.0, 'much': 1.0, 'do': 1.0, 'he': 1.0, 'dreaded': 1.0, 'now': 1.0, 'find': 1.0, 'screwing': 3.0, 'moms': 1.0, 're': 2.0, 'surgeon': 1.0, 'down': 1.0, 'reduce': 1.0, 'over': 1.0, 'sink': 1.0, 'gassiness': 1.0, 'test': 1.0, 'see': 2.0, 'if': 2.0, 'want': 1.0, 'take': 1.0, 'then': 1.0, 'just': 2.0, 'screaming': 1.0, 'is': 2.0, 'brain': 1.0, 'back': 1.0, 'beginning': 1.0, 'eating': 1.0, 'testing': 1.0, 'last': 1.0, 'wearing': 1.0, 'thing': 1.0, 'waste': 1.0, 'who': 2.0, 'has': 2.0, 'problem': 2.0, 'with': 1.0, 'other': 1.0}
Word element => {'to': 1.0, 'bottles': 1.0, 'of': 1.0, 'types': 1.0, 'waste': 1.0, 'go': 1.0, 'different': 1.0, 'have': 1.0, 'the': 1.0, 'these': 1.0, 't': 1.0, 'tried': 1.0, 'i': 1.0, 'your': 1.0, 'and': 1.0, 'five': 1.0, 'horrible': 1.0, 'is': 1.0, 'don': 1.0, 'money': 1.0, 'are': 1.0, 'dr': 1.0, 'brown': 1.0, 'way': 1.0, 's': 1.0}
Word element => {'avent': 1.0, '5': 2.0, 'it': 1.0, 'with': 1.0, 'parts': 1.0, 'll': 1.0, 'money': 1.0, 'a': 1.0, 'them': 1.0, 'all': 1.0, 'have': 1.0, 'lid': 1.0, 'of': 1.0, 'which': 1.0, 'in': 1.0, 'for': 3.0, 'one': 1.0, 'stars': 2.0, '3': 1.0, 'didn': 1.0, 'get': 1.0, 'me': 1.0, 'just': 1.0, 'you': 1.0, 'sent': 1.0, 'more': 1.0, 't': 1.0, 'control': 1.0, 'the': 3.0, 'box': 1.0, 'buy': 1.0, 'quality': 1.0, 'crappy': 1.0, 'at': 2.0, 'seller': 1.0, 'least': 1.0, 'bottles': 1.0, 'store': 1.0}
Word element => {'baby': 1.0, 'healthy': 1.0, 'for': 1.0, 'working': 1.0, 'both': 2.0, 'sterilize': 1.0, 'behold': 1.0, 'without': 1.0, 's': 4.0, 'we': 4.0, 'gas': 4.0, 'a': 2.0, 't': 1.0, 'just': 1.0, 'ususal': 1.0, 'avent': 2.0, 'no': 3.0, 'some': 1.0, 'did': 1.0, 'admit': 1.0, 'got': 1.0, 'figured': 1.0, 'johnson': 1.0, 'even': 1.0, 'took': 1.0, 'tried': 2.0, 'fault': 1.0, 'system': 1.0, 'playtex': 1.0, '3': 1.0, 'on': 2.0, 'bottle': 3.0, 'work': 1.0, 'but': 1.0, 'clogged': 1.0, 'properly': 1.0, 'weeks': 1.0, 'after': 3.0, 'the': 13.0, 'of': 3.0, 'research': 1.0, 'he': 3.0, 'slow': 1.0, 'son': 1.0, 'have': 3.0, 'i': 3.0, 'burping': 1.0, 'coming': 1.0, 're': 1.0, 'feeding': 4.0, 'nipple': 1.0, 'brand': 2.0, 'low': 1.0, 'fussing': 1.0, 'though': 1.0, 'to': 6.0, 'our': 1.0, 'had': 1.0, 'problems': 1.0, 'that': 3.0, 'burped': 2.0, 'and': 6.0, 'happy': 1.0, 'crying': 2.0, 'too': 1.0, 'it': 6.0, 'him': 3.0, 'still': 2.0, 'course': 1.0, 'there': 2.0, 'was': 1.0, 'afterward': 1.0, 'thanks': 1.0, 'when': 1.0, 'you': 5.0, 'those': 2.0, 'not': 3.0, 'wrong': 1.0, 'time': 1.0, 'heard': 1.0, 'out': 3.0, 'keeping': 1.0, 'who': 2.0, 'at': 1.0, 'say': 3.0, 'aren': 1.0, 'they': 1.0, 'get': 2.0, 'dribble': 1.0, 'clean': 2.0, 'with': 1.0, 'might': 1.0, 'formula': 1.0, 'need': 1.0, 'or': 1.0, 'hello': 1.0, 'all': 1.0, 'ever': 1.0, 'using': 1.0, 'know': 1.0, 'sterilized': 1.0, 'needle': 1.0, 'nipples': 1.0, 'bum': 2.0, 'do': 1.0, 'manufactures': 1.0, 'remeber': 1.0}
Word element => {'expensive': 1.0, 'is': 1.0, 'price': 1.0, 'these': 1.0, 'excellent': 1.0, 'colic': 1.0, 'bottles': 2.0, 'to': 2.0, 'are': 1.0, 'the': 1.0, 'prevent': 1.0, 'for': 1.0, 'in': 1.0, 'babies': 1.0}
Word element => {'drain': 1.0, 'down': 1.0, 'money': 1.0, '9oz': 1.0, '4oz': 1.0, '12': 1.0, 'come': 1.0, 'parents': 1.0, 'not': 1.0, 'their': 1.0, 'problem': 2.0, 'fix': 2.0, 'should': 1.0, 'they': 1.0, 's': 2.0, 'than': 1.0, 'baby': 1.0, 'your': 1.0, 'milk': 1.0, 'want': 1.0, 'unless': 1.0, 'what': 1.0, 't': 2.0, 'don': 2.0, 'says': 1.0, 'wants': 1.0, 'accept': 1.0, 'about': 1.0, 'market': 1.0, 'formula': 1.0, '5': 2.0, 'but': 1.0, '2': 1.0, 'change': 1.0, 'easier': 1.0, 'these': 3.0, 'care': 1.0, 'drinks': 1.0, 'like': 1.0, 'using': 1.0, 'know': 1.0, 'much': 2.0, 'between': 1.0, '3': 1.0, 'on': 4.0, 'think': 1.0, 'we': 1.0, 'a': 6.0, 'go': 1.0, 'was': 2.0, 'crazy': 3.0, 'made': 1.0, 'leaking': 1.0, 'use': 1.0, 'wks': 1.0, 'son': 1.0, 'pay': 1.0, 'at': 2.0, 'is': 6.0, 'so': 2.0, '00': 3.0, 'more': 2.0, 'learning': 1.0, 'my': 3.0, 'bottles': 5.0, 'liked': 1.0, 'lot': 1.0, 'one': 1.0, 'every': 1.0, 'of': 1.0, 'the': 11.0, 'anyone': 1.0, 'and': 9.0, 'all': 3.0, 'to': 10.0, 'have': 5.0, 'he': 4.0, 'how': 1.0, '8oz': 1.0, 'bottle': 6.0, 'this': 2.0, 'been': 1.0, 'tried': 1.0, 'i': 8.0, '4': 1.0, 'old': 1.0, 'makes': 1.0, 'in': 2.0, 'morning': 1.0, 'stop': 2.0, 'everything': 1.0, 'be': 1.0, 'trying': 1.0, 'even': 1.0, 'upset': 1.0, 'top': 1.0, 'things': 1.0, 'you': 4.0, 'am': 1.0, 'now': 4.0, 'almost': 1.0, 'through': 1.0, 'has': 1.0, 'them': 1.0, 'hard': 1.0, 'also': 1.0, 'from': 2.0, 'acid': 1.0, 'reflux': 1.0, 'avent': 1.0, 'screw': 1.0, 'great': 1.0, '9': 1.0, 'it': 7.0, 'him': 3.0, 'thought': 1.0, 'would': 1.0, 'time': 2.0, 'new': 1.0, 'help': 1.0, 'with': 1.0, 'since': 1.0, 'mistakes': 1.0, 'were': 1.0, 'switching': 1.0, 'get': 1.0, 'breast': 1.0, 'that': 6.0, 'because': 1.0}
IOPub data rate exceeded. The notebook server will temporarily stop sending output to the client in order to avoid crashing it. To change this limit, set the config variable `--NotebookApp.iopub_data_rate_limit`. Current values: NotebookApp.iopub_data_rate_limit=1000000.0 (bytes/sec) NotebookApp.rate_limit_window=3.0 (secs)
Word element => {'anything': 1.0, 'smell': 1.0, 'dried': 1.0, 'bag': 1.0, 'top': 1.0, 'zip': 1.0, 'it': 1.0, 'kept': 1.0, 'uses': 1.0, 'many': 1.0, 'lasted': 1.0, 'one': 1.0, 'soap': 1.0, 'water': 1.0, 'drove': 1.0, 'while': 1.0, 'car': 1.0, 'my': 3.0, 'without': 1.0, 'the': 3.0, 'some': 1.0, 'these': 1.0, 'such': 1.0, 'running': 1.0, 'husband': 1.0, 'to': 7.0, 'wipe': 2.0, 'get': 1.0, 'pump': 3.0, '16': 1.0, 'they': 1.0, 'would': 1.0, 'using': 1.0, 'know': 1.0, 'trip': 1.0, 'just': 1.0, 'this': 1.0, 'didn': 1.0, 'wouldn': 1.0, 'i': 6.0, 'have': 1.0, 'able': 1.0, 'in': 2.0, 'wash': 1.0, 'could': 1.0, 't': 2.0, 'a': 3.0, 'with': 1.0, 'convenient': 1.0, 'road': 1.0, 'clean': 1.0, 'wipes': 2.0, 'drying': 1.0, 'purchased': 1.0, 'every': 1.0, 'for': 1.0, 'product': 1.0, 'be': 1.0, 'also': 1.0, 'hour': 1.0, 'and': 3.0, 'stop': 1.0, 'after': 2.0, 'wedding': 1.0, 'so': 1.0, 'or': 1.0, 'supplies': 2.0, 'great': 1.0, 'until': 1.0, 'quickly': 1.0, 'worked': 1.0, 'were': 1.0, 'out': 2.0, 'flanges': 1.0}
Word element => {'much': 1.0, 'pretty': 1.0, 'tried': 1.0, 'now': 1.0, 'a': 1.0, 's': 1.0, 'expense': 1.0, 'of': 4.0, 'other': 1.0, 'i': 4.0, 'are': 1.0, 'castile': 1.0, 'am': 1.0, 'how': 1.0, 'they': 1.0, 'between': 1.0, 'wipes': 2.0, 'and': 2.0, 'waste': 1.0, 'soap': 1.0, 'difference': 1.0, 'made': 1.0, 'cleaning': 1.0, 'these': 4.0, 'with': 2.0, 'it': 3.0, 'rinsing': 1.0, 'is': 1.0, 'that': 2.0, 'what': 1.0, 'not': 3.0, 'seems': 2.0, 'pieces': 1.0, 'thoroughly': 1.0, 'like': 1.0, 've': 1.0, 'would': 1.0, 'money': 1.0, 'work': 1.0, 'but': 1.0, 'better': 1.0, 'was': 1.0, 'comfortable': 1.0, 'enough': 1.0, 'than': 1.0, 'power': 1.0, 'use': 1.0, 'the': 3.0, 'without': 1.0, 'outside': 1.0, 'to': 1.0, 'all': 1.0, 'my': 1.0, 'see': 1.0, 'sure': 1.0, 'pump': 1.0, 'easy': 1.0}
Word element => {'down': 1.0, 'wipe': 1.0, 'in': 1.0, 'flanges': 1.0, 'from': 1.0, 'lanolin': 1.0, 'removing': 1.0, 'for': 1.0, 'wonderfully': 1.0, 'always': 1.0, 'of': 1.0, 'waste': 1.0, 'since': 1.0, 'a': 2.0, 'kept': 1.0, 'them': 2.0, 'be': 1.0, 'pack': 1.0, 'would': 1.0, 'fact': 1.0, 'work': 1.0, 'but': 1.0, 'thought': 1.0, 'these': 2.0, 'highly': 1.0, 'money': 1.0, 'i': 3.0, 'came': 1.0, 'with': 2.0, 're': 1.0, 'my': 1.0, 'your': 1.0, 'free': 1.0, 'they': 2.0, 'pump': 1.0, 'recommend': 1.0, 'fantastic': 1.0}
Word element => {'though': 1.0, 'much': 1.0, 'not': 1.0, 'per': 1.0, 'expensive': 1.0, 'i': 2.0, 'wipes': 1.0, 'and': 1.0, 'individually': 2.0, 'that': 1.0, 'find': 1.0, 'are': 2.0, 'piece': 1.0, 'wrapped': 2.0, 'also': 1.0, 'using': 1.0, 'after': 1.0, 'more': 1.0, 'the': 2.0, 'these': 2.0, 'ones': 1.0, 'idea': 1.0, 'prefer': 1.0, 'no': 1.0, 'they': 2.0, 'slightly': 1.0, 'thicker': 1.0, 'than': 1.0, 'but': 1.0, 'why': 1.0}
Word element => {'sanitary': 1.0, 'more': 1.0, 'sink': 1.0, 'access': 1.0, 'have': 1.0, 'real': 1.0, 'don': 1.0, 'wash': 1.0, 'repack': 1.0, 'just': 1.0, 'pumps': 1.0, 'other': 2.0, 'after': 1.0, 'dry': 1.0, 'that': 2.0, 'evening': 1.0, 'honestly': 1.0, 'later': 1.0, 'reuse': 1.0, 'me': 1.0, 'so': 1.0, 'larger': 1.0, 'half': 1.0, 'ziploc': 1.0, 'in': 4.0, 'they': 2.0, 'wipe': 1.0, 'them': 1.0, 'wipes': 1.0, 'clean': 1.0, 't': 1.0, 'a': 6.0, 'find': 1.0, 'than': 3.0, 'because': 2.0, 'precut': 1.0, 'to': 6.0, 'pump': 2.0, 'lifesaver': 1.0, 'allow': 1.0, 'cost': 1.0, 'but': 3.0, 'work': 1.0, 'bunch': 1.0, 'recommend': 1.0, 'store': 1.0, 'really': 1.0, 'of': 3.0, 'are': 2.0, 'the': 7.0, 'these': 3.0, 'for': 2.0, 'one': 1.0, 'bathroom': 1.0, 'my': 1.0, 'need': 1.0, 'bag': 1.0, 'and': 4.0, 'cutting': 1.0, 'hesitated': 1.0, 'use': 3.0, 'buy': 1.0, 'day': 2.0, 'parts': 3.0, 'you': 1.0, 'times': 1.0, 'option': 1.0, 'three': 1.0, 'at': 1.0, 'carry': 1.0, 'i': 7.0, 'two': 2.0, 'much': 1.0, 'only': 1.0, 'set': 1.0, 'sets': 1.0}
Word element => {'home': 1.0, 'from': 1.0, 'away': 1.0, 'pumps': 1.0, 'in': 1.0, 'anyone': 1.0, 'sanitary': 1.0, 'it': 2.0, 'only': 1.0, 'rinsing': 1.0, 'with': 1.0, 'this': 1.0, 'think': 1.0, 'wash': 2.0, 'don': 1.0, 'highly': 1.0, 'is': 3.0, 'to': 4.0, 'i': 6.0, 'wipe': 1.0, 'night': 1.0, 'at': 2.0, 'work': 1.0, 'ready': 1.0, 'parts': 3.0, 'sink': 2.0, 'and': 3.0, 'bathroom': 2.0, 'my': 2.0, 'without': 1.0, 'the': 6.0, 't': 1.0, 'these': 1.0, 'access': 1.0, 'pump': 3.0, 'that': 3.0, 'next': 1.0, 'have': 1.0, 'so': 1.0, 'one': 1.0, 'wipes': 1.0, 'cleans': 1.0, 'use': 1.0, 'just': 1.0, 'soap': 1.0, 'water': 1.0, 'would': 1.0, 'recommend': 1.0, 'love': 1.0, 'for': 1.0, 'product': 1.0}
Word element => {'save': 1.0, 'half': 1.0, 'cut': 1.0, 'score': 1.0, 'room': 1.0, 'pumping': 1.0, 'between': 1.0, 'them': 1.0, 'clean': 1.0, 'me': 1.0, 'allow': 1.0, 'of': 2.0, 'yay': 1.0, 'in': 3.0, 'wash': 1.0, 'to': 3.0, 'want': 1.0, 'money': 1.0, 'personal': 1.0, 'pump': 2.0, 'not': 2.0, 'embarrassed': 1.0, 'did': 1.0, 'a': 1.0, 'front': 1.0, 'm': 1.0, 'decision': 1.0, 'i': 2.0, 'anyways': 1.0, 'my': 1.0, 'the': 1.0, 'these': 1.0, 'more': 1.0, 'sessions': 1.0, 'parts': 2.0, 'coworkers': 1.0, 'it': 1.0, 'male': 1.0, 's': 1.0}
Word element => {'residue': 1.0, 'leave': 1.0, 'seems': 1.0, 'it': 1.0, 'because': 1.0, 'a': 1.0, 'using': 1.0, 'the': 2.0, 'rinse': 1.0, 'handy': 1.0, 'do': 1.0, 'to': 2.0, 'have': 1.0, 'for': 1.0, 'wipes': 1.0, 'parts': 1.0, 'very': 1.0, 'travel': 1.0, 'i': 1.0, 'or': 1.0, 'after': 1.0, 'work': 1.0, 'however': 1.0}
Word element => {'breast': 1.0, 'real': 1.0, 'you': 2.0, 'if': 1.0, 'problem': 1.0, 'come': 1.0, 'it': 1.0, 'this': 2.0, 'first': 1.0, 'with': 2.0, 'and': 2.0, 'interesting': 1.0, 'do': 1.0, 'parts': 1.0, 'even': 1.0, 'part': 1.0, 'have': 2.0, 'easy': 1.0, 'bought': 1.0, 'the': 2.0, 'my': 1.0, 'clean': 3.0, 'baby': 1.0, 'i': 2.0, 'is': 1.0, 'bumps': 1.0, 'leaking': 1.0, 'for': 1.0, 'like': 1.0, 'using': 1.0, 'all': 1.0, 'to': 2.0, 'had': 1.0, 'bottle': 1.0, 'so': 1.0, 'are': 3.0, 'well': 1.0, 'a': 3.0, 'could': 1.0, 'really': 1.0, 'every': 1.0, 'sponge': 1.0, 'of': 1.0, 'system': 1.0, 'never': 1.0, 'nipples': 1.0, 'also': 1.0, 'off': 1.0, 'texured': 1.0, 'little': 1.0, 'very': 1.0, 'they': 1.0}
Word element => {'6mo': 1.0, 'about': 1.0, 'perfectly': 1.0, 'come': 1.0, 'time': 1.0, 'new': 1.0, 'wow': 3.0, 'received': 1.0, 'returned': 1.0, 'three': 1.0, 'through': 1.0, 'fuller': 1.0, 'i': 6.0, 'oz': 1.0, 'would': 2.0, 've': 1.0, 'silly': 1.0, 'you': 1.0, 'sure': 1.0, 'not': 2.0, '12months': 1.0, 'just': 2.0, 'why': 1.0, 'as': 1.0, 'an': 1.0, 'other': 1.0, 'all': 1.0, 'any': 1.0, 'our': 1.0, 'and': 4.0, '8': 1.0, 'have': 1.0, 'them': 1.0, 'm': 1.0, 'so': 3.0, 'didn': 1.0, 'sounded': 1.0, 'even': 1.0, 'been': 1.0, 'problems': 1.0, 'that': 1.0, 'by': 2.0, 'bottles': 4.0, 'then': 1.0, 'we': 3.0, 'cost': 1.0, 't': 1.0, 'these': 1.0, 'of': 2.0, 'the': 8.0, 'person': 1.0, 'buy': 1.0, 'extra': 1.0, 'for': 2.0, 'bottom': 1.0, 'love': 1.0, 'using': 1.0, 'it': 1.0, 'leaked': 1.0, 'thing': 1.0, 'had': 1.0, 'get': 1.0, 'trouble': 1.0, 'with': 1.0, 'are': 1.0, 'described': 1.0, 'first': 1.0, 'getting': 1.0, 'did': 1.0, 'sending': 1.0, 'clean': 2.0, 'emailed': 1.0, 'nipples': 1.0, 'only': 2.0, 'company': 2.0, 'my': 3.0, 'they': 3.0, 'were': 1.0, 'old': 1.0, 'stages': 1.0, 'wonderful': 1.0, 'nine': 1.0, 'lady': 1.0, '8oz': 1.0, 'bottle': 2.0, 'this': 1.0, 'based': 1.0, 'was': 1.0, 'at': 1.0, 'is': 1.0, 'polite': 1.0, 'completely': 1.0, 'prompt': 1.0, 'curtious': 1.0, 'from': 1.0, 'extras': 1.0, 'on': 1.0, 'fill': 1.0, 'customer': 1.0, 'didnt': 1.0, 'every': 1.0, 'course': 1.0, 'service': 1.0, 'baby': 1.0, 'many': 1.0, 'experience': 1.0, 'replaced': 1.0, 'reimbursed': 1.0, 'disc': 1.0, 'shipping': 1.0, 'open': 1.0}
Word element => {'again': 1.0, 'expectations': 1.0, 'price': 1.0, 'for': 1.0, 'connecting': 1.0, 'sets': 1.0, 'beep': 1.0, 'handsets': 2.0, 'problems': 1.0, 'in': 2.0, 'the': 2.0, 'and': 2.0, 'would': 1.0, 'enjoy': 1.0, 'buy': 1.0, 'device': 1.0, 'to': 2.0, 'with': 1.0, 'talk': 1.0, 'room': 1.0, 'able': 1.0, 'two': 1.0, 'no': 1.0, 'when': 2.0, 'going': 1.0, 'child': 1.0, 'without': 1.0, 'being': 1.0, 'talking': 1.0, 'between': 1.0, 'my': 1.0, 'annoying': 1.0}
Word element => {'time': 1.0, 'want': 1.0, 'if': 1.0, 'them': 1.0, 'need': 1.0, 'long': 2.0, 'monitor': 1.0, 'very': 1.0, 'their': 1.0, 'hold': 1.0, 'she': 1.0, 'home': 1.0, 'what': 1.0, 'her': 4.0, 'out': 1.0, 'house': 1.0, 'the': 2.0, '2': 1.0, 'daughter': 1.0, 'or': 1.0, 'teen': 1.0, 'that': 1.0, 'is': 2.0, '5': 1.0, 'find': 1.0, 'than': 1.0, 'cordless': 1.0, 'for': 4.0, 'years': 2.0, 'don': 1.0, 'of': 1.0, 'gripe': 1.0, 'rather': 1.0, 'old': 1.0, 'yelling': 1.0, 'periods': 1.0, 'push': 1.0, 'my': 1.0, 't': 1.0, 's': 1.0, 'we': 4.0, 'a': 1.0, 'button': 1.0, 'plugged': 1.0, 'across': 1.0, 'and': 1.0, 'our': 2.0, 'to': 3.0, 'chat': 1.0, 'with': 1.0, 'doing': 1.0, 'this': 1.0, 'only': 1.0, 'charge': 1.0, 'from': 1.0, 'locations': 1.0, 'in': 2.0, 'walking': 1.0, 'attention': 1.0, 'receivers': 1.0, 'll': 1.0, 'keep': 2.0}
Word element => {'months': 1.0, 'three': 1.0, 'us': 1.0, 'worked': 1.0, 'factors': 1.0, 'become': 1.0, 'yet': 1.0, 'over': 1.0, 'devices': 1.0, 'haven': 1.0, 'any': 1.0, 'were': 1.0, 'sure': 1.0, 'although': 1.0, 'for': 1.0, '10': 1.0, 'had': 2.0, 'channels': 3.0, 'there': 1.0, 'rather': 1.0, 'theoretical': 1.0, 'those': 2.0, 'third': 1.0, 'off': 1.0, 'after': 1.0, 'before': 1.0, 'bed': 2.0, 'case': 2.0, 'something': 1.0, 'listening': 1.0, 'someone': 1.0, 'let': 1.0, 'suppose': 1.0, 'beep': 1.0, 'out': 1.0, 'gives': 1.0, 'me': 1.0, 'may': 2.0, 'my': 4.0, 'darn': 1.0, 'keep': 1.0, 'much': 1.0, 'so': 2.0, 'can': 1.0, 'but': 2.0, 'works': 1.0, 'without': 1.0, 'the': 16.0, 'disturb': 1.0, 'goes': 1.0, 'sound': 1.0, 'up': 2.0, 'don': 1.0, 'just': 2.0, 'by': 1.0, 'picking': 1.0, 'down': 1.0, 'transmiting': 1.0, 'got': 1.0, 'hype': 1.0, 'when': 2.0, 'whisper': 1.0, 'monitors': 1.0, 'loud': 1.0, 'you': 2.0, 'here': 1.0, 'new': 1.0, 'each': 1.0, 'a': 6.0, 'died': 1.0, 'we': 4.0, 's': 4.0, 'brand': 1.0, 'and': 7.0, 'interference': 1.0, 'effective': 1.0, 'monitor': 5.0, 'means': 1.0, 'only': 1.0, 'usually': 1.0, 'function': 1.0, 'past': 1.0, 'issues': 1.0, 'accidentally': 1.0, 'as': 2.0, 'marketing': 1.0, 'our': 2.0, 'to': 7.0, 'fairly': 1.0, 't': 2.0, 'replacement': 1.0, 'concern': 1.0, 'few': 1.0, 'distortion': 1.0, 'page': 2.0, 'this': 4.0, 'shower': 1.0, 'than': 2.0, 'wake': 1.0, 'bought': 1.0, 'actual': 1.0, 'too': 1.0, 'one': 4.0, 'good': 1.0, 'which': 2.0, 'gift': 1.0, 'evenflo': 1.0, 'have': 2.0, 'be': 1.0, 'suddenly': 1.0, 'fisher': 1.0, 'office': 1.0, 'know': 1.0, 'however': 1.0, 'easy': 1.0, 'product': 1.0, 'price': 1.0, 'with': 1.0, 'volume': 1.0, 'that': 2.0, 'has': 1.0, 'puts': 1.0, 'next': 1.0, 'not': 3.0, 'wrong': 1.0, 'sets': 1.0, 'sometime': 1.0, 'it': 4.0, 'already': 1.0, 'are': 3.0, 'first': 2.0, 'walkie': 1.0, 'talkie': 1.0, 'notice': 1.0, 'is': 6.0, 'two': 1.0, 'nice': 1.0, 'mistake': 1.0, 'button': 2.0, 'll': 2.0, 'right': 1.0, 'issue': 2.0, 'station': 2.0, 'm': 1.0, 'in': 6.0, 'if': 3.0, 'still': 1.0, 'turn': 2.0, 'she': 1.0, 'unfortunately': 1.0, 'others': 1.0, 'baby': 2.0, 'room': 1.0, 'an': 1.0, 'other': 5.0, 'well': 2.0, 'i': 6.0, 'or': 5.0, 'need': 1.0, 'calling': 1.0, 'wife': 3.0, 'practical': 1.0, 'hit': 1.0, 'base': 2.0, 'instead': 1.0, 'second': 2.0, 'on': 4.0}
Word element => {'he': 1.0, 'gets': 1.0, 'son': 1.0, 'one': 1.0, 'another': 1.0, 'i': 1.0, 'clear': 1.0, 'quite': 1.0, 'and': 3.0, 'are': 1.0, 'whenever': 1.0, 'receivers': 1.0, 'both': 1.0, 'so': 1.0, 'rechargeable': 1.0, 'also': 1.0, 'like': 1.0, 'static': 1.0, 'background': 1.0, 'battery': 1.0, 'no': 1.0, 'plan': 1.0, 'is': 1.0, 'there': 1.0, 'brands': 1.0, 'on': 1.0, '3': 1.0, 'different': 1.0, 'her': 4.0, 'has': 1.0, 'likes': 1.0, 'since': 1.0, 'by': 1.0, 'daughter': 1.0, 'able': 1.0, 'us': 1.0, 'you': 1.0, 'when': 2.0, 'were': 2.0, 'that': 1.0, 'communicate': 1.0, 'this': 3.0, 'buying': 1.0, 'with': 2.0, 'come': 1.0, 'noise': 1.0, 'room': 3.0, '2': 1.0, 'little': 1.0, 'very': 1.0, 'wherever': 1.0, 'monitor': 3.0, 'easy': 1.0, 'get': 1.0, 'use': 3.0, 'charged': 1.0, 'had': 1.0, 'purchased': 1.0, 'only': 1.0, 'try': 1.0, 'ready': 1.0, 'intrigued': 1.0, 'year': 1.0, 'in': 1.0, 'reason': 1.0, 'for': 1.0, 'product': 1.0, 'older': 1.0, 'now': 1.0, 'old': 2.0, 'buy': 1.0, 'without': 1.0, 'it': 4.0, 'she': 2.0, 'was': 1.0, 'doesn': 1.0, 'want': 2.0, 'a': 2.0, 'going': 1.0, 's': 3.0, 'we': 4.0, 't': 1.0, 'go': 2.0, 'our': 4.0, 'to': 13.0, 'sleep': 1.0, 'favorite': 1.0, 'out': 1.0, 'of': 1.0}
Word element => {'crashing': 1.0, 'either': 1.0, 'anything': 1.0, 'have': 1.0, 'bonk': 1.0, 'which': 1.0, 'feet': 1.0, 'while': 1.0, 'at': 1.0, 'watch': 1.0, 'easily': 1.0, 'times': 1.0, 'you': 1.0, 'smaller': 1.0, 'time': 1.0, 'long': 1.0, 'down': 1.0, 'especially': 1.0, 'stand': 1.0, 'likes': 1.0, 'than': 1.0, 'because': 3.0, 'though': 1.0, 'off': 1.0, 'foot': 1.0, 'two': 1.0, 'come': 1.0, 'jumper': 2.0, 'bucket': 1.0, 'great': 1.0, 'hanging': 1.0, 'the': 7.0, 'nail': 1.0, 'they': 1.0, 'holes': 1.0, 'with': 1.0, 'this': 4.0, 'doorway': 2.0, 'she': 1.0, 'it': 2.0, 'wiggle': 1.0, 'only': 1.0, 'far': 1.0, 'could': 1.0, 't': 1.0, 'a': 3.0, 'over': 1.0, 'don': 1.0, 'child': 1.0, 'up': 2.0, 'chin': 1.0, 'of': 3.0, 'leg': 1.0, 'five': 1.0, 'edge': 1.0, 'even': 1.0, 'weird': 1.0, 'her': 1.0, 'can': 1.0, 'most': 1.0, 'but': 1.0, 'very': 2.0, 'little': 2.0, 'construction': 1.0, 'on': 1.0, 'your': 3.0, 'make': 1.0, 'head': 1.0, 'deep': 1.0, 'overall': 1.0, 'periods': 1.0, 'are': 2.0, 'in': 2.0, 'if': 1.0, 'apart': 1.0, 'seems': 1.0, 'is': 5.0, 'comes': 1.0, 'should': 1.0, 'their': 2.0, 'all': 1.0, 'to': 3.0, 'our': 1.0, 'across': 1.0, 'and': 2.0, 'tall': 1.0, 'too': 1.0, 'awkward': 1.0, 'product': 1.0, 'for': 2.0, 'sometimes': 1.0, 'thing': 1.0, 'kid': 3.0, 'happy': 1.0}
Word element => {'dangerous': 1.0, 'uncomfortable': 1.0, 'makes': 1.0, 'daughter': 1.0, 'seat': 2.0, 'not': 2.0, 'wide': 1.0, 'for': 1.0, 'designed': 1.0, 'it': 2.0, 'will': 1.0, 'but': 2.0, 'work': 1.0, 'back': 1.0, 'think': 1.0, 'child': 1.0, 'jumper': 1.0, 'too': 1.0, 'and': 1.0, 'shape': 1.0, 'bottom': 1.0, 'bigger': 1.0, 'better': 1.0, 'the': 5.0, 'my': 2.0, 'purple': 1.0, 'i': 1.0, 'is': 4.0, 'time': 1.0, 'so': 1.0, 'after': 1.0, 'legs': 1.0, 'were': 1.0, 'babies': 1.0, 'that': 1.0, 'this': 1.0, 'circulation': 1.0, 's': 1.0, 'losing': 1.0, 'a': 1.0, 'bar': 1.0, 'well': 1.0, 'front': 1.0, 'short': 1.0, 'when': 1.0, 'gives': 1.0, 'padded': 1.0, 'turning': 1.0, 'in': 1.0, 'which': 1.0}
Word element => {'play': 1.0, 'wants': 1.0, 'of': 1.0, 'because': 1.0, 'out': 1.0, 'arms': 1.0, 'has': 1.0, 'freely': 1.0, 'head': 1.0, 'keep': 1.0, 'move': 1.0, 'to': 3.0, 'barely': 1.0, 'months': 1.0, 'eight': 1.0, 'baby': 1.0, 'by': 1.0, 'my': 1.0, 'the': 2.0, 'but': 1.0, 'tries': 1.0, 'around': 1.0, 'distracted': 1.0, 'can': 1.0, 'his': 2.0, 'jump': 1.0, 'really': 1.0, 'fine': 1.0, 'is': 1.0, 'cannot': 1.0, 'also': 1.0, 'in': 2.0, 'jumper': 1.0, 'and': 3.0, 'a': 1.0, 'rope': 2.0, 'it': 1.0, 'this': 2.0, 'he': 3.0}
Word element => {'bounds': 1.0, 'leaps': 1.0, 'growing': 1.0, 'about': 1.0, 'the': 2.0, 'my': 1.0, 'a': 1.0, 'at': 1.0, 'just': 1.0, 'not': 1.0, 'in': 1.0, 'unsure': 1.0, 'little': 1.0, 'she': 4.0, 'it': 1.0, 'first': 1.0, 'jumping': 1.0, 'was': 1.0, 'now': 1.0, 'is': 3.0, 'up': 2.0, 'and': 3.0, 'but': 1.0, 'jump': 2.0, 'even': 1.0, 'loves': 1.0, 'by': 1.0, 'daughter': 1.0, 'when': 1.0}
Word element => {'that': 1.0, 'swing': 1.0, 'then': 1.0, 'bounce': 1.0, 'with': 1.0, 'sit': 1.0, 'much': 1.0, 'd': 1.0, 'their': 1.0, 'thought': 1.0, 'hangs': 1.0, 'he': 5.0, 'this': 1.0, 'for': 2.0, 'no': 1.0, 'thing': 1.0, 'contraption': 1.0, 'would': 1.0, 'my': 1.0, 'five': 1.0, 'play': 1.0, 'and': 3.0, 'so': 2.0, 'toys': 1.0, 'bouncer': 1.0, 'wrong': 1.0, 'pathetically': 1.0, 'great': 1.0, 'it': 4.0, 'month': 1.0, 'him': 2.0, 'be': 1.0, 'i': 1.0, 'never': 1.0, 'tries': 1.0, 'just': 2.0, 'son': 1.0, 'a': 3.0, 'amusement': 1.0, 'twirls': 1.0, 'is': 1.0, 'around': 3.0, 'uses': 1.0, 'flops': 1.0, 'on': 1.0, 'support': 1.0, 'his': 3.0, 'bouncy': 1.0, 'old': 1.0, 'jump': 1.0, 'offers': 2.0, 'materials': 1.0, 'up': 1.0, 'rather': 1.0, 'of': 1.0, 'little': 2.0, 'in': 3.0, 'toes': 1.0, 'when': 1.0, 'seat': 1.0, 'to': 1.0, 'was': 1.0, 'made': 1.0, 'good': 1.0, 'but': 1.0}
Word element => {'annoyance': 1.0, 'hand': 1.0, 'other': 1.0, 'waste': 1.0, 'on': 1.0, 'months': 1.0, '4': 1.0, 'that': 1.0, 'jumperoo': 1.0, 'has': 2.0, 'old': 1.0, 'bounce': 1.0, 'doesn': 1.0, 'complete': 1.0, 'also': 1.0, 'in': 1.0, 'money': 1.0, 'baby': 1.0, 'my': 1.0, 'grabs': 1.0, 't': 1.0, 'the': 2.0, 'hassle': 1.0, 'was': 2.0, 'to': 2.0, 'too': 1.0, 'really': 1.0, 'is': 1.0, 'and': 4.0, 'get': 1.0, 'jumper': 1.0, 'out': 1.0, 'of': 2.0, 'straps': 1.0, 'just': 1.0, 'loved': 1.0, 'use': 1.0, 'hard': 1.0, 'this': 2.0, 'he': 3.0, 'it': 2.0, 's': 1.0, 'since': 1.0, 'a': 4.0}
Word element => {'hook': 1.0, 'to': 1.0, 'light': 1.0, 'the': 1.0, 'mobile': 1.0, 'her': 1.0, 'months': 1.0, '10': 1.0, 'really': 1.0, 'easy': 1.0, 'she': 3.0, 'at': 1.0, 'swinging': 1.0, 'few': 1.0, 'walking': 1.0, 'daughter': 1.0, 'in': 2.0, 'didnt': 1.0, 'times': 1.0, 'interested': 1.0, 'started': 1.0, 'just': 1.0, 'jumper': 1.0, 'and': 3.0, 'me': 1.0, 'but': 2.0, 'or': 1.0, 'think': 1.0, 'i': 2.0, 'ok': 1.0, 's': 3.0, 'it': 5.0, 'wasnt': 1.0, 'like': 2.0, 'being': 1.0, 'unhook': 1.0, 'liked': 1.0, 'cause': 1.0, 'my': 1.0, 'locked': 1.0, 'up': 1.0, 'there': 1.0}
Word element => {'price': 1.0, 'period': 1.0, 'relevant': 1.0, 'though': 1.0, 'even': 1.0, 'laugh': 1.0, 'was': 4.0, 'had': 1.0, 'short': 1.0, 'wanted': 1.0, 'home': 1.0, 'between': 1.0, 'so': 2.0, 'time': 2.0, 'the': 4.0, 'my': 2.0, 'and': 3.0, 'babysitter': 1.0, 'loved': 2.0, 'use': 1.0, 'of': 2.0, 'first': 1.0, 'only': 1.0, 'for': 4.0, 'bought': 2.0, 'one': 2.0, 'enjoy': 1.0, 'daughter': 2.0, 'when': 2.0, 'walking': 1.0, 'watching': 1.0, 'i': 1.0, 'bounce': 2.0, 'to': 4.0, 'our': 1.0, 'brace': 1.0, 'able': 1.0, 'thing': 1.0, 'have': 1.0, 'on': 3.0, 'her': 3.0, 'own': 2.0, 'worth': 1.0, 'bouncing': 1.0, 'moulding': 1.0, 'in': 1.0, 'a': 1.0, 's': 1.0, 'we': 3.0, 'this': 1.0, 'dont': 1.0, 'she': 3.0, 'it': 4.0, 'doorway': 1.0, 'installed': 1.0, 'these': 1.0, 'some': 1.0, 'wood': 1.0}
Word element => {'happy': 1.0, 'buy': 1.0, 'are': 1.0, 'helped': 1.0, 'loops': 1.0, 'from': 1.0, 'some': 1.0, 'did': 1.0, 'bored': 1.0, 'get': 1.0, 'toys': 2.0, 'her': 1.0, 'in': 1.0, 'tank': 1.0, 'daughter': 1.0, 'when': 1.0, '34': 2.0, 'is': 2.0, 'over': 1.0, 'condition': 1.0, 'uses': 1.0, 'and': 5.0, 'the': 3.0, '2': 1.0, 'my': 1.0, 'still': 1.0, 'we': 3.0, 'a': 2.0, 'nick': 1.0, 'hang': 1.0, 'tray': 1.0, 'frank': 1.0, 'had': 1.0, 'rough': 1.0, 'was': 1.0, 'now': 1.0, 'year': 1.0, 'named': 1.0, 'survived': 1.0, 'tho': 1.0, 'this': 1.0, 'she': 4.0, 'it': 3.0, 'has': 1.0, 'so': 1.0, 'time': 1.0, 'as': 1.0, 'to': 2.0, 'all': 2.0, 'younger': 1.0, 'have': 2.0, '5': 1.0, 've': 1.0, 'new': 1.0, 'would': 1.0, 'that': 1.0, 'loves': 1.0, 'been': 1.0, 'seemed': 1.0, 'great': 2.0, 'nice': 1.0, 'for': 1.0}
Word element => {'gilmer': 1.0, 'price': 1.0, 'the': 1.0, 'a': 1.0, 'week': 1.0, 'tx': 1.0, 'after': 1.0, 'for': 1.0, 'in': 2.0, 'i': 2.0, 'it': 1.0, 'bought': 1.0, 'saw': 1.0, 'this': 1.0, 'item': 1.0, 'half': 1.0, 'wallmart': 1.0}
Word element => {'sucks': 1.0, 'spring': 1.0, 'barely': 1.0, 'arms': 1.0, 'jump': 1.0, 'even': 1.0, 'her': 1.0, 'rub': 1.0, 'place': 1.0, 'awkward': 1.0, 'an': 1.0, 'are': 1.0, 'straps': 1.0, 'daughter': 1.0, 'for': 1.0, 'my': 1.0, '5': 1.0, 'she': 1.0, 'today': 1.0, 'because': 1.0, 'just': 1.0, 'month': 1.0, 'it': 5.0, 'got': 1.0, 'can': 1.0, 'minutes': 1.0, 'cheap': 1.0, 'old': 1.0, 'i': 1.0, 'is': 1.0, 'and': 3.0, 'had': 1.0, 'was': 1.0, 'in': 3.0, 'disappointed': 1.0, 'they': 1.0, 'isn': 1.0, 'the': 2.0, '2': 1.0, 't': 2.0, 'against': 1.0, 'springy': 1.0}
Word element => {'would': 1.0, 'stars': 1.0, 'give': 1.0, 'review': 1.0, 'gave': 1.0, 'anyone': 1.0, 'second': 1.0, 'enough': 1.0, 'big': 1.0, 'get': 1.0, 'you': 2.0, 'good': 2.0, 'door': 1.0, 'designed': 1.0, 'purpose': 1.0, 'item': 1.0, 'tuck': 1.0, 'useless': 2.0, 'supposed': 2.0, 'made': 1.0, 'at': 1.0, 'literally': 1.0, 'sags': 1.0, 'bounced': 1.0, 'a': 14.0, 's': 2.0, 'armpits': 1.0, 'tube': 1.0, 'products': 2.0, 'child': 3.0, 'product': 2.0, 'year': 1.0, 'anytime': 1.0, 'doubts': 1.0, 'external': 1.0, 'point': 1.0, 'who': 1.0, 'from': 3.0, '2000': 1.0, 'ups': 1.0, 'encased': 1.0, 'r': 1.0, 'reference': 1.0, 'terrific': 1.0, 'well': 3.0, 'i': 12.0, 'purchased': 1.0, 'had': 5.0, 'all': 1.0, 'to': 12.0, 'high': 1.0, 'grown': 1.0, 'as': 4.0, 'completely': 1.0, 'heavy': 1.0, 'up': 3.0, 'the': 20.0, 'enjoying': 1.0, '80': 1.0, 'ground': 1.0, 'didn': 1.0, 'four': 2.0, 'just': 4.0, 'and': 13.0, 'tried': 1.0, 'see': 1.0, 'grader': 1.0, 'small': 1.0, 'eldest': 1.0, 'could': 4.0, 'entertain': 1.0, 'father': 1.0, 'in': 7.0, 'non': 1.0, 'three': 1.0, 'into': 3.0, 'spring': 3.0, 'metal': 3.0, 'they': 3.0, 'jump': 3.0, 'bought': 1.0, 'boot': 1.0, 'first': 3.0, 'sheathed': 1.0, 'while': 1.0, 'skills': 1.0, 'with': 4.0, 'facimile': 1.0, '2003': 1.0, '90': 1.0, 'siblings': 2.0, 'that': 5.0, 'low': 1.0, 'two': 3.0, 'toys': 1.0, 'johny': 2.0, 'things': 2.0, 'myself': 1.0, 'am': 1.0, 'these': 2.0, 'others': 1.0, 'are': 1.0, 'my': 9.0, 'parents': 2.0, 'conclusion': 1.0, 'freely': 1.0, 'for': 7.0, 'months': 2.0, 'comfortably': 1.0, 'bouncer': 3.0, 'tray': 2.0, 'after': 1.0, 'trampoline': 1.0, 'qualify': 1.0, 'use': 3.0, 'have': 2.0, 'frame': 2.0, 'were': 3.0, 'younger': 2.0, 'quality': 2.0, 'consumer': 1.0, 'design': 1.0, 'on': 4.0, 'near': 1.0, 'back': 1.0, 'huge': 1.0, 'brain': 1.0, 'like': 2.0, 'know': 1.0, 'throat': 1.0, 'several': 1.0, 'about': 1.0, 'walk': 2.0, 'them': 3.0, 'might': 1.0, 'surrounding': 1.0, 'function': 1.0, 'sat': 1.0, 'legs': 1.0, 'only': 2.0, 'zero': 1.0, 'this': 4.0, 'suspended': 1.0, 'walked': 1.0, 'duty': 1.0, 'rebounding': 1.0, 'kids': 2.0, 'friction': 1.0, 'resize': 1.0, 'his': 5.0, 'age': 1.0, 'sheath': 1.0, 'basket': 3.0, 'no': 2.0, 'hang': 1.0, 'food': 1.0, 'or': 1.0, 'soon': 1.0, 'took': 1.0, 'of': 7.0, 'old': 3.0, 'even': 2.0, 'percentile': 1.0, 'it': 10.0, 'plastic': 1.0, 'package': 1.0, 'but': 2.0, 'still': 2.0, 'if': 6.0, 'was': 3.0, 'actually': 1.0, 'us': 1.0, 'underestimating': 1.0, 'slightly': 1.0, 'worse': 1.0, 'how': 1.0, 'poor': 1.0, 'does': 1.0, 'rim': 2.0, 'not': 3.0, 'aids': 1.0, 'bounce': 3.0, 'make': 1.0, 'matters': 1.0, 'mean': 1.0, 'toy': 1.0, 'school': 1.0, 'serving': 1.0, 'train': 1.0, 'fit': 2.0, 'friends': 1.0, 't': 1.0, 'leg': 2.0, 'untill': 1.0, 'holes': 2.0, 'arms': 1.0, 'nose': 1.0, '6': 1.0, '90th': 1.0, 'ridiculously': 1.0, 'sons': 1.0, 'off': 3.0, 'causing': 2.0, 'smash': 1.0, 'face': 1.0, 'him': 2.0, 'he': 3.0, 'bruising': 1.0, 'top': 1.0, 'did': 1.0, 'your': 2.0, 'out': 2.0, 'strength': 1.0, 'is': 8.0, 'can': 2.0, 'what': 2.0, 'style': 1.0, 'before': 1.0, 'needed': 1.0, 'son': 1.0, 'do': 1.0, 'walking': 1.0, 'level': 1.0, 'came': 2.0, 'period': 1.0, 'choked': 1.0, 'downward': 1.0, 'stroke': 1.0, 'jammed': 1.0}
Word element => {'much': 1.0, 'expecting': 1.0, 'maybe': 1.0, 'freely': 1.0, 'move': 1.0, 'prefer': 1.0, 'till': 1.0, 'head': 1.0, 'good': 1.0, 'they': 2.0, 'time': 3.0, 'window': 1.0, 'tolerates': 1.0, 'giggling': 1.0, 'efficient': 1.0, 'amazon': 1.0, 'on': 1.0, 'long': 1.0, 'item': 1.0, 'throw': 1.0, 'spring': 3.0, 'unusually': 1.0, 'you': 7.0, 'moulding': 1.0, 'things': 1.0, '20': 2.0, 'concerned': 1.0, 'that': 5.0, '1': 2.0, 'since': 1.0, 'here': 2.0, 'he': 1.0, 'in': 3.0, 'seat': 2.0, 'about': 2.0, 'those': 1.0, 'does': 1.0, 'spurts': 1.0, 'beacuse': 1.0, 'short': 1.0, 'assist': 1.0, 'for': 7.0, 'none': 1.0, 'interior': 2.0, 'some': 1.0, 'have': 4.0, 'becoming': 1.0, 'more': 1.0, 'at': 3.0, 'see': 2.0, 'there': 1.0, 'hang': 1.0, 'the': 17.0, 'thing': 1.0, 'is': 3.0, 'can': 3.0, 'so': 3.0, 'but': 6.0, 'immobile': 1.0, 'why': 1.0, 'and': 10.0, 'just': 3.0, 'tube': 1.0, 'week': 1.0, 'like': 1.0, 'know': 1.0, 'first': 1.0, 'i': 8.0, 'well': 1.0, 'control': 1.0, 'minutes': 1.0, 'was': 5.0, 'free': 1.0, 'been': 1.0, 'jenny': 1.0, '7': 2.0, 'dangled': 1.0, 'up': 3.0, 'everyone': 1.0, 'smear': 1.0, 'pretty': 1.0, 'fixed': 1.0, 'may': 1.0, 'are': 3.0, 'my': 3.0, 'another': 1.0, 'jumping': 2.0, 'an': 1.0, 'fits': 1.0, 'daughter': 2.0, '5': 1.0, 'got': 1.0, 'able': 1.0, 'inconvenience': 1.0, 'shipping': 1.0, 'gets': 2.0, 'has': 2.0, 'of': 3.0, 'old': 1.0, 'jump': 2.0, 'injuries': 1.0, 'her': 2.0, 'qualify': 1.0, 'use': 1.0, '9': 1.0, 'baby': 2.0, 'or': 2.0, 'door': 3.0, 'go': 1.0, 'm': 1.0, 's': 4.0, 'a': 11.0, 'small': 1.0, 't': 2.0, 'mobile': 1.0, 'only': 3.0, 'legs': 1.0, 'damage': 1.0, 'blast': 1.0, 'willing': 1.0, 'nearly': 1.0, 'toy': 1.0, 'space': 1.0, 'travels': 1.0, 'bigger': 1.0, 'don': 1.0, 'still': 1.0, 'great': 1.0, 'if': 1.0, 'from': 1.0, 'who': 2.0, 'jams': 1.0, 'kick': 1.0, 'safeness': 1.0, 'had': 1.0, 'out': 2.0, 'as': 2.0, 'unable': 1.0, 'aiming': 1.0, 'place': 1.0, 'using': 1.0, 'with': 3.0, 'width': 1.0, 'to': 11.0, 'right': 1.0, 'size': 1.0, 'trim': 2.0, 'we': 1.0, 'q': 1.0, 'no': 1.0, 'after': 1.0, 'though': 1.0, 'now': 2.0, 'problem': 2.0, 'not': 2.0, 'acrobatic': 1.0, 'typical': 1.0, 'jumper': 1.0, '4': 3.0, 'keep': 1.0, 'when': 3.0, 'wanted': 1.0, 'stars': 1.0, 'stand': 1.0, 'few': 1.0, 'note': 1.0, 'reviewers': 1.0, 'jelly': 1.0, 'far': 2.0, 'complain': 1.0, 'occupied': 1.0, '3': 2.0, 'too': 3.0, '2': 2.0, 'going': 1.0, 'stiff': 1.0, 'actually': 1.0, 'friction': 1.0, 'around': 2.0, 'rubs': 1.0, 'plastic': 2.0, 'encases': 1.0, 'petroleum': 1.0, 'chosen': 1.0, 'between': 1.0, 'she': 7.0, 'make': 1.0, 'sure': 1.0, 'wrong': 1.0, 'jam': 1.0, 'specified': 1.0, 'months': 2.0, 'otherwise': 1.0, 'will': 1.0, 'it': 15.0, 'be': 3.0, 'pain': 1.0, 'getting': 1.0, 'child': 2.0, 'used': 2.0, 'squirmy': 1.0, 'two': 1.0, 'holes': 1.0, 'dangling': 1.0, 'back': 1.0, 'tip': 1.0, 'pick': 1.0, 'against': 1.0, 'casing': 1.0, 'comes': 1.0, 'put': 1.0, 'minor': 1.0, 'its': 1.0, 'gave': 1.0}
Word element => {'can': 1.0, 'have': 1.0, 'houses': 1.0, 'newer': 1.0, 'in': 1.0, 'some': 1.0, 'a': 1.0, 'doorways': 1.0, 'be': 1.0, 'could': 1.0, 'to': 1.0, 'trim': 1.0, 'toys': 1.0, 'but': 2.0, 'little': 1.0, 'didn': 1.0, 'just': 1.0, 'know': 1.0, 'jump': 1.0, 'as': 1.0, 'jaws': 2.0, 'son': 1.0, 'other': 1.0, 'these': 1.0, 't': 2.0, 'the': 2.0, 'i': 3.0, 'enjoyed': 1.0, 'handle': 1.0, 'clamping': 1.0, 'for': 1.0, 'johnny': 1.0, 'safety': 1.0, 'attaching': 1.0, 'better': 2.0, 'it': 2.0, 'that': 1.0, 'our': 1.0, 'were': 1.0, 's': 1.0, 'wished': 1.0, 'ways': 1.0, 'up': 1.0, 'there': 1.0, 'of': 1.0}
Word element => {'all': 1.0, 'information': 1.0, 'this': 1.0, 'will': 1.0, 'more': 1.0, 'any': 1.0, 'parents': 1.0, 'portion': 1.0, 'face': 1.0, 'back': 1.0, 'fell': 1.0, 'her': 1.0, 'smaller': 1.0, 'about': 1.0, 'web': 1.0, 'know': 1.0, 'found': 1.0, 'right': 1.0, 'morning': 1.0, 'until': 1.0, 'them': 1.0, 'contact': 1.0, 'night': 1.0, 'able': 1.0, 'who': 1.0, 'won': 2.0, 'passing': 1.0, 'spring': 3.0, 'adjust': 1.0, 'received': 1.0, 'he': 2.0, 'plastic': 1.0, 'was': 2.0, 'another': 1.0, 'minutes': 1.0, 'to': 7.0, 'our': 1.0, 'as': 1.0, 'had': 1.0, 'wasn': 1.0, 'standing': 1.0, 'into': 3.0, 'that': 4.0, 'twenty': 1.0, 'old': 1.0, 'metal': 1.0, 'seven': 1.0, 'but': 4.0, 'floor': 2.0, 'put': 1.0, 'by': 2.0, 'she': 1.0, 'baby': 3.0, 'wore': 1.0, 'stiff': 1.0, 'kosh': 1.0, 'so': 1.0, 'plate': 1.0, 'a': 3.0, 'then': 1.0, 'we': 6.0, 'giving': 1.0, 's': 2.0, 'of': 2.0, 'the': 19.0, 'happening': 1.0, 'reach': 1.0, 'on': 3.0, 'pound': 1.0, 'model': 1.0, 'present': 1.0, 'complaint': 1.0, 'osh': 1.0, 'saw': 1.0, 'shower': 1.0, 'girl': 1.0, 'swaying': 1.0, 'd': 1.0, 'sunday': 1.0, 'son': 1.0, 'still': 1.0, 'and': 10.0, 'used': 1.0, 'up': 2.0, 'would': 1.0, 'business': 1.0, 'his': 1.0, 'enjoyed': 1.0, 'room': 1.0, 'given': 1.0, 'set': 1.0, 'five': 1.0, 'seat': 1.0, 'in': 3.0, 'friend': 1.0, 'encouraged': 1.0, 'it': 10.0, 'him': 2.0, 'here': 1.0, 'be': 4.0, 'bounce': 1.0, 'got': 1.0, 'along': 1.0, 't': 3.0, 'fairly': 1.0, 'strap': 2.0, 'bounces': 1.0, 'sat': 1.0, 'down': 1.0, 'month': 1.0, 'same': 2.0, 'with': 2.0, 'very': 1.0, 'later': 1.0, 'which': 1.0, 'feeds': 1.0, 'for': 1.0, 'thing': 1.0, 'adjustment': 1.0, 'through': 1.0, 'never': 1.0, 'gentle': 1.0, 'nylon': 1.0, 'feet': 1.0, 'i': 4.0, 'broke': 1.0, 'contains': 1.0, 'were': 1.0, 'dumping': 1.0, 'website': 1.0, 'my': 1.0, 'hit': 3.0, 'head': 2.0, 'now': 1.0, 'shaft': 1.0, 'went': 1.0, 'exact': 1.0, 'evenflo': 2.0}
Word element => {'loves': 1.0, 'product': 1.0, 'but': 2.0, 'so': 2.0, 'could': 1.0, 'slide': 1.0, 'newer': 1.0, 'thing': 1.0, 'clamps': 1.0, 'especially': 1.0, 'better': 1.0, 'think': 1.0, 'guy': 1.0, 'on': 1.0, 'written': 1.0, 'my': 3.0, 'model': 1.0, 'for': 2.0, 'be': 1.0, 'tends': 1.0, 'or': 1.0, 'kids': 1.0, 'ups': 1.0, 'this': 3.0, 'when': 1.0, 'that': 3.0, 'because': 1.0, 'easily': 1.0, 'someone': 1.0, 'great': 1.0, 'fantastic': 1.0, 'than': 1.0, 'johnny': 1.0, 'wrapping': 1.0, 'are': 1.0, 'little': 3.0, 'things': 1.0, 'to': 2.0, 'as': 2.0, 'non': 1.0, 'door': 2.0, 'is': 4.0, 'around': 1.0, 'putting': 2.0, 'i': 2.0, 'heck': 1.0, 'over': 1.0, 'and': 2.0, 'grandson': 1.0, 'bit': 1.0, 'writing': 1.0, 'listening': 1.0, 'went': 1.0, 'those': 1.0, 'entertained': 1.0, 'stopped': 1.0, 'him': 1.0, 'it': 3.0, 'older': 1.0, 'laugh': 1.0, 'love': 1.0, 'models': 1.0, 'keeps': 1.0, 'carpets': 1.0, 'with': 1.0, 'they': 2.0, 'by': 2.0, 'just': 1.0, 'rubber': 1.0, 'slip': 1.0, 'second': 1.0, 'material': 1.0, 'either': 1.0, 'grandma': 1.0, 'above': 1.0, 'both': 1.0, 'sides': 1.0, 'each': 1.0, 'made': 3.0, 'side': 1.0, 'english': 1.0, 'the': 8.0, 'of': 1.0, 'clamp': 1.0, 'also': 1.0, 'jump': 1.0, 'instructions': 1.0, 'were': 3.0, 'together': 1.0, 'confusing': 1.0, 'eyes': 1.0, 'its': 1.0, 'frame': 2.0, 'almost': 1.0, 'like': 1.0, 'language': 1.0, 'a': 4.0, 'tiny': 1.0, 'small': 1.0, 'other': 1.0}
Word element => {'with': 1.0, 'happy': 1.0, 'not': 1.0, 'better': 1.0, 'much': 1.0, 'it': 2.0, 'this': 1.0, 'now': 1.0, 'to': 4.0, 'sooooo': 1.0, 'had': 1.0, 'on': 1.0, 'door': 2.0, 'is': 1.0, 'really': 2.0, 'inches': 1.0, 'that': 1.0, 'new': 1.0, 'something': 1.0, 'three': 1.0, 'about': 1.0, 'jam': 2.0, 'goes': 1.0, 'design': 1.0, 'longer': 1.0, 'apparatus': 1.0, 'use': 1.0, 'of': 2.0, 'up': 1.0, 'the': 7.0, 'these': 1.0, 'we': 2.0, 't': 1.0, 'they': 1.0, 'length': 1.0, 'one': 2.0, 'attach': 1.0, 'scissor': 1.0, 'where': 1.0, 'for': 1.0, 'fit': 1.0, 'arms': 1.0, 'onto': 1.0, 'have': 1.0, 'small': 1.0, 'so': 1.0, 'too': 1.0, 'and': 1.0, 'was': 2.0, 'doesn': 1.0, 'work': 1.0, 'rig': 1.0, 'old': 1.0}
Word element => {'though': 1.0, 'noisy': 1.0, 'a': 1.0, 'is': 1.0, 'bit': 1.0, 'spring': 1.0, 'simple': 1.0, 'assemble': 1.0, 'and': 1.0, 'the': 1.0, 'my': 1.0, '7': 1.0, 'to': 1.0, 'old': 1.0, 'loves': 1.0, 'month': 1.0, 'it': 1.0, 'just': 1.0}
Word element => {'too': 1.0, 'and': 1.0, 'it': 2.0, 'you': 1.0, 'versions': 1.0, 'them': 1.0, 'baby': 2.0, 'these': 1.0, 'without': 1.0, 'the': 3.0, 'around': 1.0, 'more': 1.0, 'get': 1.0, 'wanted': 1.0, 'had': 1.0, 'grandbaby': 1.0, 'one': 1.0, 'love': 1.0, 'for': 1.0, 'i': 2.0, 'my': 2.0, 'to': 4.0, 'all': 1.0, 'newer': 1.0, 'thing': 1.0, 'so': 2.0, 'a': 1.0, 'are': 2.0, 'johnny': 1.0, 'old': 1.0, 'jump': 1.0, 'course': 1.0, 'padding': 1.0, 'really': 1.0, 'much': 1.0, 'safer': 1.0, 'having': 1.0, 'than': 1.0, 'of': 1.0, 'leg': 1.0, 'muscles': 1.0, 'good': 1.0, 'centering': 1.0, 'loves': 1.0, 'babies': 1.0, 'avoid': 1.0, 'constant': 1.0, 'newest': 1.0, 'up': 1.0, 'sideways': 1.0, 'nice': 1.0, 'slumping': 1.0, 'they': 1.0, 'chase': 1.0, 'wonderful': 1.0, 'ways': 1.0, 'house': 1.0, 'build': 1.0, 'those': 1.0}
Word element => {'immensely': 1.0, 'are': 1.0, 'sense': 1.0, 'common': 1.0, 'labels': 1.0, 'warning': 1.0, 'safety': 1.0, 'bunch': 1.0, 'amazing': 1.0, 'did': 1.0, 'an': 1.0, 'legal': 1.0, 'with': 1.0, 'liability': 1.0, 'happy': 2.0, 'the': 1.0, 'promised': 1.0, 'arrived': 1.0, 'that': 1.0, 'next': 1.0, 'get': 3.0, 'attached': 1.0, 'now': 1.0, 'what': 1.0, 'had': 2.0, 'wanted': 1.0, 'stuff': 1.0, 'on': 1.0, 'they': 2.0, 'it': 5.0, 'day': 1.0, 'extra': 1.0, 'grandson': 2.0, 'boys': 1.0, 'loved': 1.0, 'one': 4.0, 'for': 2.0, 'of': 2.0, 'issues': 1.0, 'available': 2.0, 'modern': 1.0, 'search': 1.0, 'm': 1.0, 'years': 1.0, 'these': 1.0, 'all': 2.0, 'as': 1.0, 'to': 3.0, 'our': 2.0, 're': 1.0, 'i': 2.0, 'two': 1.0, 'delivery': 1.0, 'see': 2.0, '30': 1.0, 'visit': 1.0, 'if': 1.0, 'still': 3.0, 's': 1.0, 'we': 4.0, 'ago': 1.0, 'a': 2.0, 'could': 3.0, 'enjoying': 1.0, 'and': 4.0, 'finds': 1.0, 'them': 1.0, 'locally': 1.0, 'but': 2.0, 'rolls': 1.0, 'have': 2.0, 'coming': 1.0, 'none': 1.0, 'in': 2.0, 'was': 1.0, 'google': 1.0, 'store': 1.0, 'amazon': 1.0, 'paid': 1.0, 'time': 2.0, 'so': 2.0, 'bit': 1.0}
Word element => {'ll': 1.0, 'door': 1.0, 'frames': 1.0, 'clips': 1.0, 'old': 1.0, 'very': 1.0, 'wonderful': 1.0, 'this': 1.0, 'your': 1.0, 'make': 1.0, 'they': 1.0, 'glad': 2.0, 'i': 2.0, 'now': 1.0, 'so': 4.0, 'paratrooper': 1.0, 'oops': 1.0, 'phrase': 1.0, 'buying': 1.0, 'with': 1.0, 'child': 1.0, 'lives': 1.0, 'up': 1.0, 'ever': 1.0, 'toy': 1.0, 'dog': 2.0, 'favorites': 1.0, 'device': 1.0, 'dad': 1.0, 'years': 1.0, 'best': 1.0, 'was': 1.0, 'had': 2.0, 'it': 4.0, '33': 1.0, 'too': 1.0, 'bet': 1.0, 'and': 4.0, 'get': 1.0, 'these': 1.0, 'the': 5.0, 'one': 3.0, 'fit': 1.0, 'for': 2.0, 'of': 3.0, 'business': 1.0, 'often': 1.0, 'my': 4.0, 'push': 1.0, 'large': 1.0, 'partner': 1.0, 'will': 2.0, 'also': 1.0, 'in': 2.0, 'loved': 1.0, 'still': 1.0, 'son': 5.0, 'under': 1.0, 'his': 2.0, 'am': 1.0, 'again': 1.0, 'toes': 1.0, 'let': 1.0, 'who': 1.0, 'at': 1.0, 'be': 1.0, 'him': 1.0, 'position': 1.0, 'dead': 1.0, 'would': 1.0, 'house': 1.0, 'off': 1.0, 'to': 2.0, 'sleep': 1.0, 'a': 2.0, 'we': 3.0, 'ago': 1.0, 'go': 1.0, 's': 4.0, 'head': 1.0, 'kept': 1.0, 'work': 1.0, 'came': 1.0}
Word element => {'bang': 1.0, 'incredible': 1.0, 'room': 1.0, 'but': 1.0, 'can': 1.0, 'travel': 1.0, 'with': 1.0, 'awesome': 1.0, 'of': 1.0, 'currently': 1.0, '05': 1.0, 'child': 1.0, 'buck': 1.0, 'having': 1.0, 'at': 1.0, 'who': 1.0, 'friend': 1.0, 'buy': 1.0, 'here': 1.0, 'back': 1.0, '16': 1.0, 'came': 1.0, 'just': 1.0, 'so': 3.0, 'is': 4.0, 'week': 1.0, 'compact': 2.0, 'florida': 1.0, 'and': 3.0, 'bouncer': 1.0, 'done': 1.0, 'all': 1.0, 'to': 2.0, 'purchased': 1.0, '12': 1.0, 'had': 1.0, 'was': 1.0, 'your': 2.0, 'on': 3.0, 'bring': 2.0, 'until': 1.0, 'that': 1.0, 'loves': 2.0, 'bargain': 1.0, 'independence': 1.0, 'reading': 1.0, 'trip': 1.0, 'those': 1.0, 'not': 1.0, 'used': 1.0, 'muscles': 1.0, 'last': 1.0, 'her': 1.0, 'living': 1.0, 'works': 1.0, 'i': 6.0, 'old': 1.0, 'my': 4.0, '19th': 1.0, 'this': 6.0, 'huge': 1.0, 'one': 1.0, 'bought': 2.0, 'daughter': 1.0, 'for': 4.0, 'brother': 1.0, 'closeout': 1.0, 'little': 1.0, 'very': 1.0, 'best': 2.0, 'when': 1.0, 'you': 4.0, 'gives': 1.0, 'after': 1.0, 'went': 1.0, 'packed': 1.0, 'recommended': 1.0, 'toy': 2.0, 'in': 2.0, 'item': 1.0, 'luggage': 1.0, 'the': 2.0, 'thing': 2.0, 'march': 1.0, 'have': 2.0, 't': 1.0, 'a': 5.0, 'we': 1.0, 'could': 1.0, '6': 1.0, 'it': 7.0, 'month': 1.0, 'truly': 1.0}
Word element => {'legs': 1.0, 'will': 1.0, 'houses': 1.0, 'for': 1.0, 'one': 1.0, 'bought': 1.0, 'grandmother': 1.0, 'she': 2.0, 'each': 1.0, 'much': 1.0, 'as': 2.0, 'and': 2.0, 'have': 1.0, 'all': 1.0, 'johnny': 1.0, 'jump': 1.0, 'her': 5.0, 'loves': 1.0, 'loved': 1.0, 'was': 1.0, 'granddaughter': 1.0, 'after': 1.0, 'it': 1.0, 'their': 1.0, 'our': 1.0, 'strong': 1.0, 'just': 1.0, 'seeing': 1.0, 'mother': 2.0, 'great': 1.0, 'the': 1.0, 'having': 1.0, 'hers': 1.0, 'in': 1.0, 'up': 1.0, 'of': 1.0, 'fun': 1.0}
Word element => {'well': 1.0, 'this': 1.0, 'buying': 1.0, 'measurement': 1.0, '25': 1.0, 'taking': 1.0, 'have': 1.0, 'you': 1.0, 'if': 1.0, 'these': 1.0, 'was': 1.0, 'recommend': 1.0, 'doesn': 1.0, 'jumper': 1.0, 'very': 2.0, 'frames': 3.0, 'downstairs': 1.0, 'building': 1.0, 'an': 1.0, 'live': 1.0, 'problem': 1.0, 'use': 2.0, 'while': 1.0, 'out': 1.0, 'are': 1.0, 'johnny': 1.0, 'believe': 1.0, 'the': 4.0, 'door': 3.0, 'how': 1.0, 'he': 3.0, 'dollars': 1.0, 'works': 1.0, 'only': 2.0, 'it': 4.0, 'before': 2.0, 'my': 1.0, 'up': 1.0, 'there': 1.0, 'of': 1.0, 'son': 1.0, 'day': 1.0, 'is': 2.0, '7': 1.0, 'took': 1.0, 'jump': 2.0, 'old': 2.0, 'tries': 1.0, 'otherwise': 1.0, 'i': 5.0, 'months': 1.0, 'now': 1.0, 'him': 2.0, 'tall': 2.0, 'and': 4.0, 'get': 1.0, '3': 1.0, 'put': 1.0, 'spent': 1.0, 'ready': 1.0, 'but': 1.0, 'work': 1.0, 'in': 3.0, 'figured': 1.0, 'poses': 1.0, 'fit': 1.0, 'for': 1.0, 'better': 1.0, 'upstairs': 1.0, 'bathe': 1.0, 'time': 1.0, 't': 1.0, 'a': 3.0, 's': 1.0, 'could': 1.0, 'to': 1.0, 'all': 1.0, 'no': 1.0, 'thing': 1.0, 'loves': 1.0, 'that': 2.0}
Word element => {'mommy': 1.0, 'meals': 1.0, 'safe': 1.0, 'me': 1.0, 'while': 2.0, 'will': 1.0, 'make': 1.0, 'put': 1.0, 'who': 1.0, 'fold': 1.0, 'bathroom': 1.0, 'gives': 1.0, 'fantastic': 1.0, 'cook': 1.0, 'helper': 1.0, 'loves': 3.0, 'or': 1.0, 'hope': 1.0, 'have': 1.0, 'jenny': 1.0, 'this': 1.0, 'she': 1.0, 'it': 2.0, 'month': 1.0, 'her': 5.0, 'to': 2.0, 'old': 1.0, 'jump': 2.0, 'laundry': 1.0, 'run': 1.0, 'place': 1.0, 'the': 1.0, 'chair': 1.0, 'helps': 1.0, 'build': 1.0, 'i': 4.0, '4': 1.0, 'strength': 1.0, 'in': 1.0, 'body': 1.0, 'some': 1.0, 'lower': 1.0, 'up': 1.0, 'preparing': 1.0, 'for': 2.0, 'walking': 1.0, '20': 1.0, 'a': 3.0, 's': 1.0}
Word element => {'tricky': 1.0, 'also': 1.0, 'at': 1.0, 'keep': 1.0, 'or': 1.0, 'get': 1.0, 'area': 1.0, 'well': 1.0, 'has': 1.0, 'tray': 1.0, 'one': 1.0, 'for': 1.0, 'returning': 1.0, 'be': 1.0, 'bumper': 1.0, 'll': 1.0, 'an': 1.0, 'forward': 1.0, 'put': 1.0, 'made': 1.0, 'leans': 1.0, 'spring': 1.0, 'wide': 1.0, 'smaller': 1.0, 'so': 2.0, 'spinning': 1.0, 'is': 1.0, 'really': 1.0, 'as': 1.0, 'seat': 1.0, 'all': 2.0, 'to': 3.0, 'recommend': 1.0, 'was': 2.0, 'i': 5.0, 'old': 1.0, 'from': 1.0, 'while': 1.0, 'far': 1.0, 'loved': 1.0, 'feel': 1.0, 'either': 1.0, 'this': 3.0, 'the': 2.0, 'a': 3.0, 't': 3.0, 'jumping': 1.0, 'my': 2.0, 'bucket': 1.0, 'door': 1.0, '6': 1.0, 'don': 1.0, 'sound': 1.0, 'nearly': 1.0, 'up': 1.0, 'and': 5.0, 'block': 1.0, 'in': 2.0, 'hitting': 1.0, 'smacked': 1.0, 'annoying': 1.0, 'it': 4.0, 'month': 1.0, 'she': 2.0, 'her': 5.0, 'both': 1.0, 'head': 2.0, 'frames': 1.0, 'if': 1.0, 'hand': 1.0, 'hadn': 1.0, 'didn': 1.0, 'sticking': 1.0, 'into': 1.0, 'been': 1.0, 'that': 2.0, 'jumpy': 1.0}
Word element => {'jumperoo': 1.0, '100': 1.0, 'spend': 1.0, 'to': 1.0, 'have': 1.0, 'b': 1.0, 'around': 1.0, 'much': 1.0, 'didn': 1.0, 'lets': 1.0, 'a': 1.0, 'upset': 1.0, 'so': 2.0, 'she': 1.0, 'in': 1.0, 'c': 1.0, 'hours': 1.0, 'house': 1.0, 'will': 1.0, 'end': 1.0, 'my': 1.0, 't': 1.0, 'more': 1.0, 'the': 2.0, 'on': 2.0, 'done': 1.0, 'get': 1.0, 'me': 1.0, 'and': 1.0, 'stay': 1.0, 'for': 1.0, 'love': 2.0, 'jenny': 1.0, 'it': 3.0, 'i': 4.0, 'gets': 1.0, 'daughter': 1.0, 'when': 1.0, 'up': 1.0, 'of': 1.0, 'there': 1.0, 'take': 1.0, 'even': 1.0, 'jump': 1.0, 'her': 1.0, 'out': 1.0}
Word element => {'time': 1.0, 'has': 1.0, 'started': 1.0, 'in': 1.0, 'her': 1.0, 'moment': 1.0, 'great': 1.0, 'the': 1.0, 'sturdy': 1.0, 'is': 1.0, 'surprise': 1.0, 'recommend': 1.0, 'she': 2.0, 'daughter': 1.0, 'for': 1.0, 'month': 1.0, '6': 1.0, 'it': 3.0, 'this': 2.0, 'loves': 1.0, 'and': 2.0, 'hanging': 1.0, 'my': 3.0, 'product': 1.0, 'bought': 1.0, 'old': 1.0, 'i': 4.0, 'jumping': 1.0, 'to': 1.0, 'was': 1.0, 'a': 3.0, 'bit': 1.0, 'highly': 1.0, 'about': 1.0, 'child': 1.0, 'very': 1.0, 'skeptical': 1.0, 'from': 2.0, 'doorway': 1.0, 'put': 1.0, 'but': 1.0}
Word element => {'want': 1.0, 'else': 1.0, 'let': 1.0, 'close': 1.0, 'day': 1.0, 'be': 2.0, 'usually': 1.0, 'out': 4.0, 'minutes': 2.0, 'was': 1.0, '10': 1.0, 'for': 3.0, 'product': 2.0, 'where': 1.0, 'and': 3.0, 'will': 3.0, 'before': 1.0, 'worry': 2.0, 'jump': 1.0, 'old': 1.0, 'it': 8.0, 'doorway': 1.0, 'jenny': 1.0, 'worth': 1.0, 'now': 1.0, 'immediately': 1.0, 'up': 1.0, 'don': 2.0, 'over': 1.0, 's': 1.0, 'a': 3.0, 'place': 1.0, 'my': 1.0, 'in': 3.0, 'from': 1.0, 'while': 1.0, 'she': 6.0, 'baby': 3.0, 'play': 2.0, 'about': 2.0, 'chore': 1.0, 'months': 1.0, '4': 1.0, 'i': 5.0, 'pretty': 1.0, 'to': 7.0, 'as': 1.0, 'have': 2.0, 't': 2.0, 'likes': 1.0, 'wants': 2.0, 'if': 1.0, 'every': 2.0, 'then': 1.0, 'or': 3.0, 'need': 1.0, 'falling': 2.0, 'her': 2.0, 'use': 2.0, 'most': 1.0, 'so': 1.0, 'can': 1.0, 'time': 1.0, 'crawling': 1.0, 'around': 1.0, 'is': 1.0, 'safety': 1.0, 'sturdy': 1.0, 'like': 1.0, 'would': 1.0, 'down': 1.0, 'sometimes': 1.0, 'do': 2.0, 'because': 1.0, 'that': 1.0, 'into': 1.0, 'swing': 1.0, 'herself': 1.0, 'side': 1.0, 'of': 6.0, 'the': 6.0, 'doing': 1.0, '15': 1.0, 'buying': 1.0, 'able': 1.0, 'you': 2.0, 'feel': 1.0, 'your': 1.0, 'on': 1.0, 'confined': 1.0, 'this': 1.0, 'few': 1.0, 'dishes': 1.0, 'keep': 1.0, 'playing': 1.0, 'all': 1.0, 'an': 1.0, 'eye': 1.0}
Word element => {'instead': 1.0, 'walker': 1.0, 'her': 1.0, 'decided': 1.0, 'tries': 1.0, 'after': 1.0, 'of': 2.0, 'she': 1.0, 'around': 1.0, 'bump': 1.0, 'moves': 1.0, 'you': 1.0, 'unless': 1.0, 'sits': 1.0, 'the': 3.0, 'my': 1.0, 'door': 3.0, 'on': 2.0, 'frame': 3.0, 'to': 3.0, 'bought': 2.0, 'couple': 1.0, 'and': 2.0, 'jumper': 1.0, 'it': 3.0, 'this': 1.0, 'hang': 1.0, 'we': 2.0, 'extra': 2.0, 'sides': 1.0, 'would': 1.0, 'not': 1.0, 'will': 1.0, 'an': 1.0, 'work': 1.0, 'have': 1.0, 'wide': 1.0, 'return': 1.0, 'a': 2.0, 'well': 1.0, 'daughter': 1.0, 'when': 1.0}
Word element => {'easily': 1.0, 'hands': 1.0, 'about': 1.0, 'spend': 1.0, 'can': 3.0, 'happily': 1.0, 'it': 3.0, 'he': 4.0, 'this': 2.0, 'move': 1.0, 'come': 1.0, 'also': 1.0, 'hour': 1.0, 'an': 1.0, 'still': 1.0, 'march': 1.0, 'jumping': 1.0, 'to': 1.0, 'our': 1.0, 'that': 3.0, 'very': 1.0, 'little': 1.0, 'and': 2.0, 'fun': 1.0, 'in': 1.0, 'christmas': 1.0, 'uses': 1.0, 'needs': 1.0, 'time': 1.0, 'learned': 1.0, 'makes': 1.0, 'now': 1.0, 'free': 1.0, 'one': 1.0, 'bought': 1.0, 'love': 1.0, 'for': 2.0, 'product': 1.0, 'there': 1.0, 'daily': 1.0, 'spin': 1.0, 'we': 2.0, 's': 1.0, 'a': 1.0, 'recommend': 1.0, 'around': 1.0, 'more': 1.0, 'anyone': 1.0, 'him': 1.0, 'i': 1.0, 'definitely': 1.0, 'at': 1.0, 'lot': 1.0, 'who': 1.0}
Word element => {'market': 1.0, 'taken': 1.0, 'be': 1.0, 'should': 1.0, 'this': 1.0, 'injured': 1.0, 'off': 2.0, 'head': 2.0, 'but': 1.0, 'dangerous': 1.0, 'and': 5.0, 'do': 2.0, 'horrible': 2.0, 'very': 1.0, 'up': 1.0, 'of': 1.0, 'my': 2.0, 'order': 1.0, 'star': 1.0, 'harmful': 1.0, 'babies': 1.0, 'not': 2.0, 'go': 1.0, 'a': 1.0, 'rating': 1.0, 'well': 1.0, '15': 1.0, 'rope': 1.0, 'buy': 1.0, 'i': 1.0, 'to': 2.0, 'had': 1.0, 'was': 1.0, 'safety': 1.0, 'daughter': 1.0, 'for': 2.0, 'arm': 1.0, 'warning': 1.0, 'the': 3.0, 'in': 1.0, 'flat': 1.0, 'being': 1.0, 'is': 2.0, 'lbs': 1.0, 'put': 1.0, 'on': 1.0, 'main': 1.0, 'snapped': 1.0, 'it': 1.0, 'she': 1.0, 'fell': 1.0, 'floor': 1.0, 'right': 1.0, 'tile': 1.0, 'her': 3.0, 'hit': 1.0, 'screammmming': 1.0}
Word element => {'item': 1.0, 'handy': 1.0, 'so': 1.0, 'opened': 1.0, 'squealed': 1.0, 'room': 1.0, 'receiving': 1.0, 'she': 2.0, 'that': 1.0, 'happy': 2.0, 'not': 1.0, 'together': 1.0, 'but': 1.0, 'back': 1.0, 'about': 2.0, 'baby': 1.0, 'the': 2.0, 'for': 1.0, 'gift': 1.0, 'friend': 1.0, 'arrived': 1.0, 'a': 3.0, 'busted': 1.0, 'as': 1.0, 'up': 1.0, 'and': 3.0, 'got': 1.0, 's': 2.0, 'guess': 1.0, 'i': 2.0, 'when': 2.0, 'shower': 1.0, 'this': 1.0, 'it': 4.0, 'box': 1.0, 'to': 1.0, 'everyone': 1.0, 'was': 2.0, 'have': 1.0, 'all': 1.0, 'torn': 1.0, 'in': 1.0, 'taped': 1.0}
Word element => {'development': 1.0, 'for': 1.0, 'great': 1.0, 'than': 1.0, 'other': 1.0, 'loves': 1.0, 'baby': 1.0, 'few': 1.0, 'she': 1.0, 'that': 1.0, 'our': 1.0, 'restrictions': 1.0, 'is': 4.0, 'classic': 1.0, 'a': 5.0, 'product': 2.0, 'this': 1.0, 'with': 1.0, 'it': 4.0, 'when': 1.0, 'in': 2.0, 'challenge': 1.0, 'but': 1.0, 'her': 1.0, 'getting': 1.0, 'and': 1.0, 'child': 1.0, 'out': 1.0, 'of': 2.0, 'bit': 1.0}
Word element => {'20': 1.0, 'and': 1.0, 'at': 2.0, 'bounce': 1.0, 'make': 1.0, 'too': 1.0, 'put': 1.0, 's': 2.0, 'never': 1.0, 'it': 3.0, 'stiff': 1.0, 'springy': 1.0, 'thing': 1.0, 'just': 1.0, 'not': 3.0, 'is': 1.0, 'son': 1.0, 'the': 2.0, 'my': 1.0, 'a': 1.0, 'lbs': 1.0, '12': 1.0, 'pain': 1.0, 'to': 1.0, 'also': 1.0, 'in': 1.0, 'could': 1.0, 'or': 1.0, 'child': 1.0, 'out': 1.0}
Word element => {'house': 1.0, 'my': 1.0, 'minded': 1.0, 'have': 1.0, 'but': 1.0, 'gave': 1.0, 'wood': 1.0, 'rubber': 1.0, 'attached': 1.0, 'great': 1.0, 'the': 2.0, 'it': 7.0, 'bang': 1.0, 'hard': 1.0, 'amazon': 1.0, 'many': 1.0, 'around': 1.0, 'is': 1.0, 'really': 1.0, 'options': 1.0, 'how': 1.0, 'shop': 1.0, 'gently': 1.0, 'amazed': 1.0, 'so': 1.0, 'time': 1.0, 't': 2.0, 'a': 5.0, 'at': 2.0, 'was': 2.0, 'grandma': 1.0, 'had': 2.0, 'to': 2.0, 'this': 2.0, 'found': 2.0, 'i': 7.0, 'finding': 1.0, 'after': 1.0, 'in': 1.0, 'with': 1.0, 'stores': 1.0, 'for': 3.0, 'only': 1.0, 'consignment': 1.0, 'price': 1.0, 'about': 1.0, 'easy': 1.0, 'think': 1.0, 'on': 1.0, 'put': 1.0, 'week': 1.0, 'edging': 1.0, 'together': 1.0, 'and': 3.0, 'too': 1.0, 'tray': 1.0, 'one': 1.0, 'bought': 1.0, 'used': 1.0, 'wouldn': 2.0, 'even': 1.0, '10': 1.0, 'toys': 1.0}
Word element => {'this': 1.0, 'would': 1.0, 'suspension': 1.0, 'two': 1.0, 'a': 1.0, 'door': 1.0, 'jamb': 1.0, 'to': 1.0, 'single': 1.0, 'strap': 2.0, 'allows': 1.0, 'baby': 1.0, 'severe': 1.0, 'twisting': 1.0, 'and': 1.0, 'vertical': 1.0, 'swaying': 1.0, 'hit': 1.0, 'sideways': 1.0, 'causing': 1.0, 'prevent': 1.0, 'the': 2.0}
Word element => {'good': 1.0, 'spend': 1.0, 'jumping': 1.0, '15': 1.0, 'a': 2.0, 'time': 1.0, 'has': 1.0, 'works': 1.0, 'brands': 1.0, 'that': 1.0, 'different': 1.0, 'we': 1.0, 'smooth': 1.0, 'one': 3.0, 'jumps': 1.0, 'not': 1.0, 'of': 1.0, 'at': 1.0, 'two': 2.0, 'this': 1.0, 'get': 1.0, 'perfectly': 1.0, 'and': 2.0, 'more': 1.0, 'the': 1.0, 'harder': 1.0, 'inner': 1.0, 'spring': 1.0, 'door': 1.0, 'is': 1.0, 'have': 1.0, 'all': 1.0, 'baby': 1.0}
Word element => {'weight': 1.0, 'for': 1.0, 'intended': 1.0, 'limitation': 1.0, 'use': 1.0, 'was': 1.0, 'unable': 1.0, 'brammall': 1.0, 'to': 1.0, 'the': 3.0, 'exceeded': 1.0, 'johnny': 1.0, 'jumper': 1.0, 'as': 1.0, 'infant': 1.0, 'richsrd': 1.0, 'iwas': 1.0, 'it': 1.0}
Word element => {'working': 1.0, 'little': 1.0, 'in': 1.0, 'another': 2.0, 'my': 1.0, 'eventually': 1.0, 'its': 1.0, 'much': 1.0, 'might': 1.0, 'a': 4.0, 'happier': 1.0, 'his': 2.0, 'awkward': 1.0, 'on': 2.0, 'make': 1.0, '3': 1.0, 'rub': 1.0, 'part': 1.0, 'hard': 1.0, 'straps': 2.0, 'should': 1.0, 'here': 1.0, 'be': 1.0, 'is': 2.0, 'so': 1.0, 'worked': 1.0, 'leg': 1.0, 'us': 1.0, 'not': 1.0, 'why': 1.0, 'just': 4.0, 'hang': 1.0, 'tray': 1.0, 'for': 3.0, 'product': 1.0, 'out': 2.0, 'i': 4.0, 'old': 1.0, 'longer': 1.0, 'of': 2.0, 'the': 6.0, 'basically': 1.0, 'bungee': 1.0, '7': 1.0, 'month': 1.0, 'him': 2.0, 'it': 6.0, 'doorway': 1.0, 't': 2.0, 'farther': 2.0, 'this': 2.0, 'wish': 1.0, 'but': 2.0, '2': 1.0, 'will': 3.0, 'head': 1.0, 'somehow': 1.0, 'instead': 1.0, 'arms': 1.0, 'and': 3.0, 'try': 3.0, 'one': 3.0, 'too': 1.0, 'they': 1.0, 'between': 1.0, 'has': 3.0, 'that': 1.0, 'which': 2.0, 'to': 4.0, 'jumping': 1.0, 'all': 1.0, 's': 2.0, 'maybe': 1.0, 'sides': 1.0, 'issues': 1.0, 'middle': 1.0, 'cords': 1.0, 'get': 2.0, 'legs': 1.0, 'house': 1.0, 'wide': 1.0, 'spring': 1.0, 'motion': 1.0, 'or': 1.0, 'sit': 1.0, 'when': 1.0, 'bear': 1.0, 'far': 1.0, 'he': 2.0, 'weight': 1.0, 'addressed': 1.0, 'isn': 2.0, 'very': 1.0, 'springy': 1.0, 'used': 1.0, 'went': 1.0, 'jumper': 1.0, '1': 1.0, 'friend': 1.0, 'had': 1.0, 'these': 1.0, 'was': 1.0}
Word element => {'useless': 1.0, 'well': 1.0, 'jumper': 1.0, 'kid': 1.0, 'they': 1.0, 'greenbacks': 1.0, 'legitimate': 1.0, 'no': 3.0, 'back': 1.0, 'response': 2.0, 'get': 2.0, 'for': 6.0, 'product': 2.0, 'year': 1.0, 'detailing': 1.0, 'first': 1.0, 'paid': 1.0, 'only': 1.0, 'wrote': 1.0, 'important': 1.0, 'home': 1.0, 'we': 1.0, 'upper': 1.0, 'days': 3.0, 'rubbed': 1.0, 'amount': 1.0, 'was': 1.0, 'fabric': 2.0, 'into': 1.0, 'does': 1.0, 'don': 1.0, 'over': 1.0, 'work': 2.0, 'think': 1.0, 'open': 1.0, 'evenflo': 2.0, 'have': 1.0, 'phone': 1.0, 'package': 1.0, 'where': 1.0, 're': 1.0, 'horrible': 1.0, 'as': 2.0, 'diaper': 1.0, 'annoying': 1.0, 'functioning': 1.0, 'arms': 1.0, 'which': 1.0, 'gift': 1.0, 'side': 1.0, 'made': 1.0, 'in': 3.0, 'based': 1.0, 'fine': 1.0, 'like': 2.0, 'bouncing': 1.0, 'octopus': 1.0, 'the': 16.0, 'lubricating': 1.0, 'this': 5.0, 'spring': 2.0, 'wound': 1.0, 'agree': 1.0, 'you': 5.0, 'second': 1.0, 'more': 2.0, 'changes': 1.0, 'babies': 1.0, 'out': 2.0, 'off': 2.0, 'junk': 1.0, 'i': 6.0, 'makes': 1.0, 'brand': 2.0, 'properly': 1.0, 'purpose': 1.0, 'talk': 1.0, 'while': 1.0, 'received': 1.0, 'sitting': 1.0, 'also': 1.0, 'new': 2.0, 'time': 2.0, 'didn': 1.0, 'squeak': 1.0, 'my': 3.0, 'me': 1.0, 'american': 1.0, 'daughter': 2.0, 'loud': 2.0, 'kicks': 1.0, 'at': 1.0, 'groan': 1.0, 'their': 1.0, 'actual': 1.0, 'anything': 1.0, 'scream': 1.0, 'box': 1.0, 'next': 1.0, 'that': 9.0, 'because': 1.0, 'layer': 1.0, 'so': 2.0, 'is': 10.0, 'can': 2.0, 'yell': 1.0, 'louuuuuud': 1.0, 'hear': 1.0, 'totally': 1.0, 'when': 2.0, 'not': 6.0, 'all': 1.0, 'an': 1.0, 'other': 1.0, 'right': 2.0, 'to': 9.0, 'worth': 1.0, 'dab': 1.0, 'or': 2.0, 't': 5.0, 'a': 14.0, 'complaint': 1.0, 'squirming': 1.0, 'small': 1.0, 'but': 2.0, 'developed': 1.0, 'sores': 1.0, 'had': 1.0, 'and': 8.0, 'respond': 1.0, 'just': 4.0, 'redness': 1.0, 'temporary': 1.0, 'doesn': 1.0, 'm': 1.0, 's': 8.0, 'talking': 1.0, 'with': 4.0, 'using': 2.0, 'swings': 1.0, 'thing': 3.0, 'each': 1.0, 'her': 4.0, 'thigh': 1.0, 'wipes': 1.0, 'awkward': 1.0, 'large': 1.0, 'person': 1.0, 'quotes': 1.0, 'high': 1.0, 'thin': 1.0, 'padding': 2.0, 'raw': 1.0, 'placement': 1.0, 'happen': 1.0, 'barely': 1.0, 'she': 1.0, 'baby': 2.0, 'd': 1.0, 'very': 1.0, 'jump': 1.0, 'involves': 1.0, 'friction': 1.0, 'there': 1.0, 'needs': 1.0, 'it': 15.0, 'be': 1.0, 'reviewers': 1.0, 'from': 4.0, 'who': 1.0, 'angry': 1.0, 'came': 1.0, 'period': 1.0, 'said': 1.0, 'painful': 1.0, 'wildly': 1.0, 'straps': 1.0, 'inside': 1.0, 'woman': 1.0, 'really': 1.0, 'could': 1.0, 'easiest': 1.0, 'seat': 4.0, 'accommodate': 1.0, 'too': 1.0, '3': 1.0, 'even': 1.0, 'of': 7.0, 'old': 1.0, 'trying': 2.0, 'place': 1.0, 'position': 1.0, 'doorway': 1.0, 'problem': 1.0, 'clamp': 1.0, 'if': 1.0, 'skin': 1.0, 'myself': 1.0, 'accidents': 1.0, 'half': 1.0, 'on': 4.0, 'indeed': 1.0, 'quite': 1.0, 'stiff': 1.0}
Word element => {'ten': 1.0, 'of': 1.0, 'spends': 1.0, 'she': 1.0, 'pounds': 1.0, 'my': 1.0, 'kids': 1.0, 'older': 1.0, 'for': 1.0, 'every': 1.0, 'baby': 1.0, 'very': 1.0, 'mind': 1.0, 'complicated': 1.0, 'in': 3.0, 'mo': 1.0, 'had': 1.0, 'time': 1.0, 'is': 4.0, 'we': 1.0, 'and': 1.0, 'get': 1.0, 'you': 1.0, 'not': 1.0, 'the': 2.0, 'or': 2.0, 'out': 2.0, 'face': 1.0, 'bumping': 1.0, 'what': 1.0, 'w': 1.0, 'her': 1.0, 'neck': 1.0, 'minutes': 1.0, 'average': 1.0, '21': 1.0, '7': 1.0, 'kid': 1.0, 'maybe': 1.0}
Word element => {'by': 1.0, 'also': 1.0, 'comfort': 1.0, 'select': 1.0, 'works': 1.0, 'system': 1.0, 'otherwise': 1.0, 'love': 1.0, 'one': 2.0, 'each': 1.0, 'because': 1.0, 'sets': 1.0, 'can': 1.0, 'evenflo': 1.0, 'i': 1.0, 'ameda': 1.0, 'so': 1.0, 'has': 1.0, 'pump': 3.0, 'into': 1.0, 'my': 1.0, '2': 1.0, 'the': 5.0, 'are': 1.0, 'fits': 1.0, 'adapter': 2.0, 'piece': 2.0, 'is': 1.0, 'containers': 1.0, 'get': 1.0, 'and': 1.0, 'with': 1.0, 'it': 1.0, 'only': 2.0, 'store': 1.0, 'drawback': 1.0, 'if': 1.0, 'directly': 1.0, 'you': 1.0, 'double': 1.0, 'pumping': 1.0}
Word element => {'learn': 1.0, 'quit': 1.0, 'adjusters': 1.0, 'still': 1.0, 'receivers': 1.0, 'the': 3.0, 'great': 1.0, 'clicking': 1.0, 'first': 1.0, 'this': 1.0, 'it': 1.0, 'is': 1.0, '800': 1.0, 'all': 1.0, '8': 1.0, 'later': 1.0, 'call': 1.0, 'for': 1.0, 'when': 1.0, 'number': 1.0, 'of': 1.0, 'worked': 1.0, 'problems': 1.0, 'get': 1.0, 'monitor': 1.0, 'and': 3.0, 'volume': 1.0, 'that': 1.0, 'one': 2.0, 'bought': 2.0, 'months': 1.0, 'working': 1.0, 'they': 1.0, 'has': 1.0, 'recommend': 1.0, 'over': 1.0, 'replacing': 1.0, 'batteries': 1.0, 'did': 1.0, '20': 1.0, 'same': 1.0, 'should': 1.0, 've': 1.0, 'new': 1.0, 'just': 1.0, 'we': 2.0, 'a': 1.0, 'live': 1.0}
Word element => {'occasional': 1.0, 'an': 1.0, 'need': 1.0, 're': 1.0, 'if': 2.0, 'is': 1.0, 'bottom': 1.0, 'guess': 1.0, 'worth': 1.0, 'well': 1.0, 'pisa': 1.0, 'medela': 1.0, 'investing': 1.0, 'don': 1.0, 'up': 1.0, 'ended': 1.0, 'disappointed': 1.0, 'very': 1.0, 'work': 1.0, 'can': 1.0, 'but': 1.0, 'out': 1.0, 'wasn': 1.0, 'at': 1.0, 'one': 1.0, 'huge': 1.0, 'months': 1.0, 'on': 2.0, 'might': 1.0, 't': 2.0, 'a': 8.0, 'that': 1.0, 'box': 1.0, 'began': 1.0, 'you': 3.0, 'when': 1.0, 'line': 1.0, 'daughter': 1.0, 'old': 1.0, 'this': 3.0, 'get': 1.0, 'pump': 3.0, 'before': 1.0, 'depend': 1.0, 'my': 2.0, 'without': 1.0, 'deal': 1.0, 'the': 7.0, 'for': 3.0, 'in': 3.0, 'purchased': 1.0, 'had': 2.0, 'was': 5.0, 'to': 3.0, 'just': 2.0, 'few': 3.0, 'night': 1.0, 'started': 1.0, 'baby': 2.0, 'time': 1.0, 'so': 2.0, 'however': 1.0, 'sat': 1.0, 'looking': 1.0, 'pumping': 2.0, 'days': 2.0, 'later': 1.0, 'and': 3.0, 'within': 1.0, 'week': 1.0, 'rep': 1.0, 'motor': 3.0, 'kudos': 1.0, 'i': 8.0, 'two': 1.0, 'service': 1.0, 'it': 5.0, 'stopped': 1.0, 'she': 1.0, 'weeks': 1.0, 'friendly': 1.0, 'something': 1.0, 'new': 2.0, 'stutter': 1.0, 'still': 1.0, 'leave': 1.0}
Word element => {'lemon': 1.0, 'mine': 1.0, 'like': 1.0, 'seemed': 1.0, 'shame': 1.0, 'maybe': 1.0, 's': 1.0, 'leaked': 1.0, 'through': 1.0, 'hard': 1.0, 'were': 1.0, 'nipples': 1.0, 'again': 1.0, 'you': 1.0, 'long': 1.0, 'before': 1.0, 'unplug': 1.0, 'formula': 1.0, 'and': 3.0, 'out': 3.0, 'wasn': 2.0, 'feeding': 1.0, 'up': 3.0, 'off': 1.0, 'enough': 1.0, 'using': 1.0, 'shut': 1.0, 'if': 1.0, 'happens': 1.0, 'tubing': 1.0, 'going': 2.0, 'a': 6.0, 't': 4.0, 'could': 2.0, 'ring': 1.0, 'is': 1.0, 'immediately': 1.0, 'said': 1.0, 'in': 1.0, 'features': 1.0, 'little': 1.0, 'nice': 2.0, 'manual': 3.0, 'with': 2.0, 'would': 1.0, 'alot': 1.0, 'pump': 6.0, 'must': 1.0, 'have': 2.0, 'very': 2.0, 'dried': 1.0, 'i': 8.0, 'however': 1.0, 'had': 1.0, 'been': 1.0, 'of': 2.0, 'the': 15.0, 'place': 1.0, 'pumping': 2.0, 'gotten': 1.0, 'extra': 1.0, 'start': 1.0, 'during': 1.0, 'problem': 3.0, 'was': 4.0, 'unfortunately': 1.0, 'therefore': 1.0, 'elan': 1.0, 'thought': 1.0, 'it': 2.0, 'wouldn': 1.0, 'completely': 1.0, 'couldn': 1.0, 'wash': 1.0, 'use': 1.0, 'to': 3.0, 'great': 1.0, 'avent': 1.0, 'milk': 2.0, 'tube': 4.0, 'just': 2.0, 'easily': 1.0, 'that': 3.0, 'because': 2.0, 'thrilled': 1.0, 'such': 1.0, 'for': 1.0, 'my': 2.0, 'me': 1.0, 'dry': 2.0, 'not': 2.0, 'maintain': 1.0, 'supply': 1.0, 'so': 1.0, 'this': 4.0, 'bottle': 1.0, 'ended': 1.0, 'disappointed': 1.0, 'probably': 1.0, 'used': 1.0, 'while': 1.0, 'an': 1.0, 'other': 1.0, 'one': 1.0, 'but': 1.0, 'there': 1.0, 'should': 1.0, 'back': 1.0, 'plus': 1.0, 'first': 1.0, 'also': 1.0, 'pull': 1.0, 'resorted': 1.0, 'bottles': 2.0}
Word element => {'nice': 1.0, 'value': 1.0, 'mode': 1.0, 'look': 1.0, 'right': 1.0, 'falls': 1.0, 'rides': 1.0, 'subway': 1.0, 'multiple': 1.0, 'trips': 1.0, 'at': 1.0, 'sand': 1.0, 'over': 1.0, 'ride': 1.0, 'excellent': 1.0, 'purchased': 1.0, 'playground': 1.0, 'pleased': 1.0, 'stroll': 1.0, 'am': 1.0, 'months': 1.0, 'i': 4.0, 'old': 1.0, 'tried': 1.0, 'recline': 1.0, 'this': 1.0, 'grocery': 1.0, 'he': 1.0, 'with': 1.0, 'models': 1.0, 'it': 1.0, 'four': 1.0, 'for': 1.0, 'asleep': 1.0, 'the': 6.0, 'purchase': 1.0, 'my': 2.0, 'shopping': 1.0, 'newborn': 1.0, 'seems': 1.0, 'in': 3.0, 'numerous': 1.0, 'very': 4.0, 'and': 7.0, 'stroller': 4.0, 'withstood': 1.0, 'now': 1.0, 'to': 1.0, 'is': 3.0, 'durable': 1.0, 'compact': 1.0, 'light': 1.0, 'smooth': 1.0, 'weight': 1.0, 'compared': 1.0, 'other': 1.0, 'of': 1.0, 'baby': 1.0, 'strollers': 1.0, 'that': 1.0, 'has': 1.0, 'clean': 1.0, 'cobblestone': 1.0, 'think': 1.0, 'on': 1.0, 'streets': 1.0, 'walks': 1.0, 'a': 2.0}
Word element => {'why': 1.0, 'another': 1.0, '150': 1.0, 'stuck': 1.0, 'am': 2.0, 'back': 1.0, 'call': 1.0, 'named': 1.0, 'somebody': 1.0, 'tells': 1.0, 'nice': 1.0, 'once': 1.0, 'returned': 1.0, 'disregarded': 1.0, 'phone': 1.0, 'off': 1.0, 'piece': 1.0, 'have': 2.0, 'support': 1.0, 'lot': 1.0, 'who': 1.0, 'girly': 1.0, 'you': 1.0, 'irresponsible': 1.0, 'so': 1.0, 'friends': 1.0, 'upstairs': 1.0, 'wide': 1.0, 'is': 6.0, 'asked': 1.0, 'if': 1.0, 'though': 1.0, 'problem': 1.0, 'close': 1.0, 'buy': 2.0, 'aisles': 1.0, 'basket': 1.0, 'even': 2.0, 'of': 1.0, 'the': 5.0, 'believe': 1.0, 'not': 8.0, 'that': 3.0, 'because': 2.0, 'does': 1.0, 'be': 1.0, 'with': 2.0, 'me': 3.0, 'my': 2.0, 'company': 1.0, 'best': 1.0, 'to': 4.0, 'being': 1.0, 'very': 5.0, 'voice': 1.0, 'from': 1.0, 'matter': 1.0, 'probably': 1.0, 'feel': 1.0, '1': 1.0, 'bring': 1.0, 'small': 2.0, 'a': 7.0, 'uncomfortable': 1.0, 'and': 3.0, 'shop': 1.0, 'definitely': 1.0, 'standard': 1.0, 'beloved': 1.0, 'received': 1.0, 'found': 1.0, 'this': 2.0, 'calls': 1.0, 'broke': 1.0, 'i': 8.0, 'stores': 1.0, 'cups': 1.0, '4': 1.0, 'for': 4.0, 'now': 2.0, 'weird': 1.0, 'first': 1.0, 'are': 2.0, 'aspect': 1.0, 'you2': 1.0, 'live': 1.0, 'jin': 1.0, 'gift': 2.0, 'made': 1.0, 'on': 1.0, '3': 1.0, 'second': 1.0, 'floor': 1.0, 'happened': 1.0, 'bothersome': 1.0, 'them': 1.0, 'has': 1.0, 'under': 1.0, 'middle': 1.0, 'they': 1.0, 'metal': 1.0, 'runs': 1.0, 'discontinued': 1.0, 'right': 1.0, 'item': 1.0, 'disappointed': 1.0, 'stroller': 4.0, 'trough': 1.0, 'no': 1.0, 'parents': 1.0, 'or': 1.0, 'price': 1.0, 'child': 1.0, 'travel': 1.0, 'as': 1.0, 'heavy': 1.0, 'horrible': 1.0, 'it': 9.0, 'thought': 1.0, 'would': 2.0, 'but': 2.0, '5': 1.0, 'by': 1.0, 'fisher': 1.0, 'pole': 1.0, 'some': 1.0, 'had': 1.0, 'dreamer': 1.0, 'important': 1.0, 'design': 1.0, 'customer': 1.0}
Word element => {'tomorrow': 1.0, 'like': 1.0, 'they': 1.0, 'in': 1.0, 'especially': 1.0, 'over': 1.0, 'running': 1.0, 'stores': 1.0, 'hard': 1.0, 'out': 1.0, 'arms': 1.0, 'and': 1.0, 'lean': 1.0, 'has': 1.0, 'such': 1.0, 'are': 2.0, 'really': 1.0, 'ny': 1.0, 'one': 1.0, 'together': 1.0, 'need': 1.0, 'no': 1.0, 'thing': 1.0, 'bulky': 1.0, 'into': 1.0, 'that': 3.0, 'safety': 1.0, 'got': 1.0, 'his': 1.0, 'sturdy': 1.0, 'smooth': 1.0, 'pack': 1.0, 'do': 1.0, 'its': 2.0, 'look': 1.0, 'was': 1.0, 'flimsy': 1.0, 'at': 1.0, 'this': 1.0, 'recline': 1.0, 'my': 2.0, 'going': 1.0, 'a': 1.0, 'nice': 1.0, 'seen': 1.0, 'you': 1.0, 'possitives': 1.0, 'when': 1.0, 'two': 1.0, 'i': 7.0, 'where': 1.0, 'love': 2.0, 'so': 2.0, 'it': 4.0, 'heavy': 1.0, 'first': 1.0, 'theres': 1.0, 'never': 1.0, 'lots': 1.0, 'of': 1.0, 'get': 1.0, 'son': 2.0, 'very': 2.0, 'have': 1.0, 'falls': 1.0, 'can': 2.0, 'him': 3.0, 'to': 3.0, 'all': 2.0, 'forward': 1.0, 'bad': 1.0, 'straps': 2.0, 'hate': 1.0, 'way': 1.0, 'back': 1.0, 'compliments': 1.0, 'towards': 1.0, 'isle': 1.0, 'also': 1.0, 'stuff': 1.0, 'put': 1.0, 'on': 2.0, 'without': 1.0, 'hands': 1.0, 'asleep': 1.0, 'the': 5.0, 'windy': 1.0, 'ever': 1.0, 'days': 1.0, 'ride': 1.0, 'face': 1.0, 'wind': 1.0, 'those': 1.0, 'me': 1.0, 'not': 1.0, 'negatives': 1.0, 'is': 4.0}
Word element => {'position': 1.0, 'success': 1.0, 'problem': 1.0, 'fix': 1.0, 'keep': 1.0, 'three': 1.0, 'there': 1.0, 'of': 1.0, 'finishing': 1.0, 'materials': 1.0, 'long': 1.0, 'his': 2.0, 'nevertheless': 1.0, 'and': 1.0, 'specially': 1.0, 'to': 3.0, 'vertical': 1.0, 'as': 2.0, 'son': 1.0, 'very': 1.0, 'i': 3.0, 'evenflo': 1.0, 'without': 1.0, 'the': 9.0, 'my': 3.0, 'based': 1.0, 'this': 1.0, 'with': 2.0, 'it': 1.0, 'uncomfortable': 1.0, 'bought': 1.0, 'design': 1.0, 'tryed': 1.0, 'experience': 1.0, 'prevoius': 1.0, 'is': 2.0, 'on': 1.0, 'troublesome': 1.0, 'quality': 1.0, 'baby': 2.0, 'when': 1.0, 'product': 1.0, 'for': 2.0, 'seated': 1.0, 'only': 1.0, 'harness': 1.0, 'him': 1.0, 'adjustments': 1.0, 'against': 2.0, 'back': 1.0, 'top': 1.0, 'edge': 1.0, 'products': 1.0, 'carrying': 1.0, 'chest': 1.0, 'making': 1.0, 'was': 2.0, 'face': 3.0}
Word element => {'made': 1.0, 'have': 1.0, 'today': 1.0, 'possible': 1.0, 'be': 1.0, 'would': 1.0, 'never': 1.0, 'thought': 1.0, 'something': 1.0, 'which': 1.0, 'creates': 1.0, 'the': 2.0, 'can': 1.0, 'i': 2.0, 'kids': 1.0, 'when': 1.0, 'toy': 1.0, 'music': 2.0, 'is': 2.0, 'on': 1.0, 'interesting': 1.0, 'love': 1.0, 'one': 1.0, 'for': 1.0, 'it': 4.0, 'this': 1.0, 've': 1.0, 'floats': 1.0, 'top': 1.0, 'of': 1.0, 'water': 1.0, 'way': 1.0, 'you': 1.0, 'even': 1.0, 'create': 1.0}
Word element => {'add': 1.0, 'your': 1.0, 'easily': 1.0, 'could': 1.0, 'own': 1.0, 'music': 1.0, 'with': 1.0, 'shower': 1.0, 'stick': 1.0, 'make': 1.0, 'around': 1.0, 'some': 1.0, 'let': 1.0, 'things': 1.0, 'or': 2.0, 'kids': 1.0, 'collection': 1.0, 'sheets': 1.0, 'wall': 1.0, 'you': 4.0, 'xylophone': 1.0, 'don': 1.0, 'tub': 1.0, 'them': 3.0, 'water': 1.0, 'play': 1.0, 'have': 1.0, 'comes': 1.0, 'switch': 1.0, 'to': 5.0, 'be': 1.0, 'are': 1.0, 'float': 1.0, 't': 1.0, 'the': 4.0, 'my': 1.0, 'love': 1.0, 'can': 3.0, 'and': 1.0, 'laminated': 1.0, 'notes': 1.0, 'but': 1.0, 'hook': 1.0, 'hooked': 1.0, 'in': 1.0, 'interlocking': 1.0, 'order': 1.0}
Word element => {'else': 1.0, 'down': 1.0, 'cancel': 1.0, 'today': 1.0, 'may': 1.0, 'other': 1.0, 'placed': 1.0, 'because': 1.0, 'know': 1.0, 'just': 1.0, 'on': 1.0, 'is': 3.0, '24': 1.0, 'toy': 2.0, 'recourse': 1.0, 'actually': 1.0, 'and': 2.0, 'we': 2.0, 't': 1.0, 'the': 1.0, '30': 1.0, 'this': 2.0, 'wouldn': 1.0, 'it': 1.0, 'misleading': 1.0, 'only': 1.0, 'i': 1.0, 'or': 1.0, 'order': 2.0, 'june': 1.0, 'have': 2.0, 'someplace': 1.0, '28': 1.0, 'within': 1.0, 'multiple': 1.0, 'how': 1.0, 'extremely': 1.0, 'received': 1.0, 'hours': 1.0, 'statement': 1.0, 'track': 1.0, 'not': 2.0, 'approved': 1.0, 'still': 1.0, 'shipping': 1.0, 'so': 3.0, 'ships': 1.0, 'delay': 1.0, 'great': 2.0, 'emails': 1.0, 'our': 3.0, 'to': 1.0}
Word element => {'won': 1.0, 'another': 1.0, 'decide': 1.0, 'ratings': 1.0, 'saftey': 1.0, 'cheaper': 1.0, 'use': 1.0, 'equal': 1.0, 'easier': 1.0, 'snugride': 1.0, 'graco': 1.0, 'gone': 1.0, 'should': 1.0, '8': 1.0, 'up': 1.0, 'time': 1.0, 'gets': 1.0, 'wait': 1.0, 'since': 1.0, 'move': 2.0, 'born': 1.0, 'reviews': 1.0, 'we': 4.0, 'go': 1.0, 's': 3.0, 'or': 2.0, 'until': 1.0, 'on': 1.0, 'i': 4.0, 'if': 1.0, 'still': 1.0, 'bigger': 1.0, 'every': 1.0, 'safety': 1.0, 'month': 1.0, 'him': 1.0, 'it': 5.0, 'so': 1.0, 'can': 2.0, 'and': 5.0, 'to': 8.0, 'any': 1.0, 'he': 2.0, 'few': 1.0, 'this': 2.0, 'retrospect': 1.0, 'release': 1.0, 'the': 9.0, 'using': 2.0, 'squeeze': 1.0, 'like': 1.0, 'been': 1.0, 'into': 1.0, 'pounds': 1.0, 'stuck': 1.0, 'pros': 1.0, 'down': 1.0, 'stand': 1.0, 've': 2.0, 'was': 1.0, 'sunshade': 1.0, 'also': 2.0, 'you': 3.0, 'when': 1.0, 'a': 4.0, 'small': 2.0, 'old': 1.0, 'suppose': 1.0, 'have': 2.0, 'handle': 3.0, 'is': 3.0, 'level': 1.0, 'little': 1.0, 'nice': 1.0, 'two': 1.0, 'akward': 2.0, 'gives': 1.0, 'they': 1.0, 'very': 2.0, 'hard': 2.0, 'buckle': 3.0, 'get': 2.0, 'easy': 1.0, 'buckled': 1.0, 'with': 2.0, 'definitely': 1.0, 'better': 1.0, 'squirmy': 1.0, 'do': 1.0, 'many': 1.0, 'baby': 2.0, 'although': 1.0, 'especially': 1.0, 're': 1.0, 'my': 1.0, 'squirming': 1.0, 'not': 1.0, 't': 3.0, 'fit': 1.0, 'together': 1.0, 'got': 2.0, 'pieces': 1.0, 'simultaneously': 1.0, 'triangular': 1.0, 'carrying': 1.0, 'only': 1.0, 'options': 1.0, 'fabric': 1.0, 'good': 1.0, 'be': 1.0, 'clipped': 1.0, 'built': 1.0, 'seat': 4.0, 'in': 2.0, 'them': 1.0, 'has': 1.0, 'gotten': 1.0}
Word element => {'looking': 1.0, 'what': 1.0, 'for': 1.0, 'could': 1.0, 'was': 1.0, 'not': 1.0, 'is': 1.0, 'this': 1.0, 'have': 1.0, 'exactly': 1.0, 'perfect': 1.0, 'i': 1.0, 'found': 1.0, 'one': 1.0, 'better': 1.0, 'and': 1.0}
Word element => {'strollers': 1.0, 'value': 1.0, 'far': 2.0, 'meets': 1.0, 'point': 1.0, 'price': 1.0, 'hope': 1.0, 'like': 1.0, 'reputation': 1.0, 'peg': 1.0, 'when': 1.0, 'entry': 1.0, 'other': 1.0, 'sturdy': 1.0, 'small': 1.0, 'between': 1.0, 'very': 1.0, 'chance': 1.0, 'be': 1.0, 'found': 1.0, 'this': 3.0, 'hack': 1.0, 'feel': 1.0, 'great': 4.0, 'the': 6.0, 'lightweight': 2.0, 'system': 1.0, 'cumbersome': 1.0, 'level': 1.0, 'is': 3.0, 'it': 6.0, 'looks': 1.0, 'so': 3.0, '4th': 1.0, 'expectation': 1.0, 'recommend': 1.0, 'was': 3.0, 'as': 3.0, 'to': 4.0, 'love': 1.0, 'combi': 1.0, 'for': 3.0, 'stroller': 1.0, 'but': 1.0, 've': 1.0, 'in': 1.0, 'i': 8.0, 'only': 1.0, 'tiny': 1.0, 'had': 2.0, 'purchased': 1.0, 'travel': 2.0, 'use': 1.0, 'moms': 1.0, 'and': 4.0, 'balance': 1.0, '40': 1.0, 'lasting': 1.0, 'not': 1.0, 'difficult': 1.0, 'go': 1.0, 's': 1.0, 'a': 3.0, 'going': 1.0, 'everyday': 1.0, 'larger': 1.0, 'stoller': 1.0, 'load': 1.0, 'stores': 1.0, 'that': 3.0, 'into': 1.0, 'has': 1.0, 'trunk': 1.0, 'aria': 1.0, 'get': 1.0, 'folds': 1.0, 'easy': 1.0}
Word element => {'ect': 1.0, 'bottle': 1.0, 'water': 1.0, 'g': 1.0, 'attach': 1.0, 'stuff': 1.0, 'bar': 1.0, 'push': 1.0, 'off': 1.0, 'hangs': 1.0, 'holder': 1.0, 'cup': 1.0, 'adult': 1.0, 'one': 1.0, 'there': 1.0, 'also': 1.0, 'get': 2.0, 'shade': 1.0, 'canopy': 1.0, 'negatives': 1.0, '2': 1.0, 'works': 1.0, 'only': 2.0, 'shopping': 1.0, 'out': 1.0, 'both': 1.0, 'her': 1.0, 'kit': 1.0, 'for': 2.0, 'rides': 1.0, 'bag': 1.0, 'short': 1.0, 'pushes': 1.0, 'light': 1.0, 'pros': 1.0, 'is': 8.0, 'my': 2.0, 'own': 1.0, 'better': 1.0, 'it': 3.0, 'higher': 1.0, 'the': 7.0, 'comfortable': 1.0, 'great': 1.0, 'kinds': 1.0, 'has': 1.0, 'well': 1.0, 'we': 1.0, 'a': 4.0, '5': 1.0, 'than': 2.0, 'fixable': 1.0, 'and': 3.0, 'stroller': 2.0, 'naps': 1.0, 'even': 1.0, 'diapers': 1.0, 'strollers': 1.0, 'holders': 1.0, 'this': 1.0, 'kids': 1.0, '4yr': 1.0, 'little': 1.0, 'old': 1.0, 'still': 1.0, 'in': 2.0, 'of': 4.0, 'once': 1.0, 'extender': 1.0, 'while': 2.0, 'e': 1.0, 'reclines': 1.0, 'though': 1.0, 'head': 1.0, 'to': 1.0, 'any': 1.0, 'seat': 2.0, 'all': 2.0, 'cons': 1.0, 'way': 1.0, 'accessory': 1.0, 'which': 1.0, 'that': 3.0, 'changing': 1.0}
Word element => {'should': 1.0, 'in': 1.0, 'otherwise': 1.0, 'sunshad': 1.0, 'checking': 1.0, 'consider': 1.0, 'not': 2.0, 'coverage': 1.0, 'does': 2.0, 'bad': 1.0, 'good': 2.0, 'harnessupdated': 1.0, 'adequate': 1.0, 'would': 1.0, 'gave': 1.0, 'than': 1.0, 'having': 1.0, 'important': 1.0, 'underneath': 1.0, 'sun': 1.0, 'told': 1.0, 'an': 1.0, 'to': 3.0, 'buying': 1.0, 'with': 1.0, 'was': 1.0, 'had': 1.0, 'on': 2.0, '3': 1.0, 'miles': 1.0, 'a': 7.0, 's': 1.0, 'down': 1.0, 'perego': 1.0, 'hand': 2.0, 'accessory': 1.0, '07the': 1.0, 'after': 1.0, 'get': 1.0, 'my': 1.0, 'me': 2.0, 'stroller': 5.0, 'but': 2.0, 'guide': 1.0, '2': 1.0, 'reality': 1.0, 'use': 1.0, 'loved': 1.0, 'purchasing': 1.0, 'money': 1.0, 'bought': 1.0, 'one': 4.0, 'ones': 1.0, 'the': 6.0, 'rather': 1.0, 'like': 2.0, 'cheap': 1.0, 'for': 2.0, 'i': 8.0, 'etc': 2.0, 'old': 1.0, 'last': 1.0, 'am': 1.0, 'you': 2.0, 'that': 1.0, 'easily': 1.0, 'thousand': 1.0, 'this': 4.0, 'shade': 2.0, 'it': 10.0, 'looked': 1.0, 'as': 1.0, 'bags': 1.0, 'very': 1.0, 'lightweight': 1.0, 'so': 1.0, 'can': 2.0, 'sensitive': 1.0, '5': 1.0, 'five': 1.0, 'shop': 1.0, 'point': 1.0, 'consignment': 1.0, 'shops': 1.0, 'and': 5.0, 'bigger': 1.0, 'if': 2.0, 'still': 2.0, 'any': 1.0, 'mom': 1.0, 'feel': 1.0, 'provide': 2.0, 'friend': 1.0, '1': 1.0, 'spot': 1.0, 'knew': 1.0, 'spent': 1.0, 'at': 1.0, 'is': 5.0, 'worth': 1.0, '4': 1.0, 'closed': 1.0, 'cup': 1.0, 'reason': 1.0, 'holder': 1.0, 'there': 1.0, 'mommy': 1.0, 'price': 1.0, 'child': 1.0, 'extra': 1.0, 'pop': 1.0, 'open': 1.0, '7': 1.0, 'peg': 1.0, '18': 1.0}
Word element => {'reuse': 1.0, 't': 1.0, 'it': 1.0, 'can': 1.0, 'flimsy': 1.0, 'the': 2.0, 'is': 2.0, 'not': 1.0, 'a': 1.0, 'cotton': 1.0, 'good': 1.0, 'very': 1.0, 'quality': 1.0, 'and': 1.0, 'you': 1.0, 'that': 1.0, 'box': 1.0, 'so': 1.0}
Word element => {'them': 1.0, 'giraffes': 1.0, 'we': 1.0, 'love': 1.0, 'gave': 1.0, 'and': 1.0, 'each': 1.0, 'of': 1.0, 'they': 1.0, 'monkeys': 1.0, 'our': 1.0, 'bunnies': 1.0, 'this': 1.0, 'grandkids': 1.0, 'christmas': 1.0, 'one': 1.0, 'year': 1.0, 'for': 1.0}
Word element => {'quality': 1.0, 'poor': 1.0, 'a': 1.0, 'than': 1.0, 'less': 1.0, 'was': 1.0, 'loved': 1.0, 'working': 1.0, 'design': 1.0, 'glowed': 1.0, 'month': 1.0, 'light': 2.0, 'the': 3.0, 'of': 3.0, 'cute': 1.0, 'absolutely': 1.0, 'night': 1.0, 'i': 1.0, 'and': 1.0, 'just': 1.0, 'in': 1.0, 'perfect': 1.0, 'amount': 1.0, 'problem': 1.0, 'really': 1.0, 'is': 2.0, 'that': 1.0, 'this': 1.0, 'it': 3.0, 'stopped': 1.0}
Word element => {'well': 1.0, 'weight': 1.0, 'safe': 1.0, 'ages': 1.0, 'old': 1.0, 'year': 1.0, 'enough': 1.0, 'easy': 1.0, 'control': 1.0, 'touch': 1.0, 'adjust': 1.0, 'up': 2.0, 'reading': 1.0, 'night': 2.0, 'use': 1.0, 'rechargable': 1.0, 'money': 1.0, 'work': 1.0, '2': 2.0, 'can': 1.0, 'but': 1.0, 'will': 1.0, 'charge': 1.0, 'in': 1.0, 'lighting': 1.0, 'is': 4.0, 'a': 5.0, 'check': 1.0, 'bright': 1.0, 'light': 2.0, 'the': 4.0, 'myself': 1.0, '5': 1.0, 'room': 1.0, 'it': 8.0, 'with': 2.0, 'designed': 1.0, 'for': 3.0, 'love': 2.0, 'product': 1.0, 'be': 1.0, 'to': 4.0, 'brightness': 1.0, 'at': 1.0, 'hours': 1.0, 'on': 1.0, '12': 1.0, 'my': 2.0, 'i': 1.0, 'etc': 1.0, 'down': 1.0, 'and': 4.0, 'gives': 1.0, 'you': 3.0, 'about': 1.0, 'per': 1.0, 'give': 1.0, 'kids': 3.0, 'this': 1.0, 'soft': 1.0, 'glow': 1.0, 'worth': 1.0, 'or': 1.0, 'dark': 1.0, 'head': 1.0}
Word element => {'better': 1.0, 'easier': 1.0, 'so': 3.0, 'small': 1.0, '20': 1.0, 'extra': 1.0, 'buy': 1.0, 'i': 1.0, 'for': 2.0, 'cheap': 1.0, 'umbrella': 1.0, 'strollers': 1.0, 'cheapy': 1.0, 'it': 2.0, 'is': 5.0, 'people': 1.0, 'consider': 1.0, 'spend': 1.0, 'great': 3.0, 'the': 5.0, 'adjustable': 1.0, 'a': 2.0, 't': 1.0, 'portable': 2.0, 'money': 1.0, 'can': 1.0, 'but': 2.0, 'stroller': 2.0, 'seat': 1.0, 'as': 4.0, 'to': 2.0, 'much': 2.0, 'ones': 1.0, 'compact': 1.0, 'easy': 1.0, 'doesn': 1.0, 'recommend': 1.0, 'not': 1.0, 'those': 2.0, 'use': 1.0, 'wheels': 1.0, 'roll': 1.0, 'storage': 1.0, 'this': 3.0, 'recline': 1.0, 'or': 1.0, 'incline': 1.0, 'you': 1.0, 'again': 1.0, 'would': 1.0, 'collapse': 1.0}
Word element => {'funny': 1.0, 'other': 1.0, 'piggie': 1.0, 'cuddly': 1.0, 'just': 1.0, 'right': 1.0, 'purchased': 1.0, 'is': 1.0, 'side': 1.0, 'amazon': 1.0, 'on': 1.0, 'i': 2.0, 'found': 2.0, 'born': 1.0, 'never': 1.0, 'she': 3.0, 'soooo': 1.0, 'blankets': 1.0, 'at': 1.0, 'when': 1.0, 'one': 3.0, 'of': 3.0, 'received': 1.0, 'girl': 1.0, 'infant': 1.0, 'these': 2.0, 'the': 5.0, 'think': 1.0, 'loves': 2.0, 'my': 1.0, 'snuggle': 1.0, 'this': 1.0, 'with': 1.0, 'it': 3.0, 'day': 1.0, 'blanket': 1.0, 'park': 1.0, 'was': 2.0, 'to': 1.0, 'dropped': 1.0, 'butt': 1.0, 'away': 1.0, 'and': 2.0}
Word element => {'frequently': 1.0, 'more': 1.0, 'well': 1.0, 'usually': 1.0, 'to': 2.0, 'day': 1.0, 'test': 1.0, 'easy': 1.0, 'read': 1.0, 'are': 1.0, 'tests': 2.0, 'i': 3.0, 'baby': 2.0, 'use': 1.0, 'hopes': 1.0, 'ensured': 1.0, 'that': 2.0, 'includes': 1.0, 'purchase': 1.0, 'my': 1.0, 'tested': 1.0, 'priced': 1.0, 'with': 2.0, 'this': 1.0, 'wouldn': 1.0, 'dust': 1.0, 'surge': 1.0, 'it': 1.0, 'these': 1.0, 'a': 1.0, 't': 1.0, 'the': 1.0, 'and': 3.0, 'me': 1.0, 'each': 1.0, 'between': 1.0, 'enjoy': 1.0, 'sense': 1.0, '8': 2.0, '11': 1.0, 'again': 1.0, 'miss': 1.0, 'am': 1.0, 'being': 1.0, '10': 1.0, 'twice': 1.0, 'pm': 1.0, 'lh': 1.0, 'made': 1.0}
Word element => {'process': 1.0, 'conceive': 1.0, 'use': 1.0, 'easy': 1.0, 'to': 2.0, 'very': 1.0, 'me': 1.0, 'and': 2.0, 'know': 1.0, 'ovulating': 1.0, 'these': 1.0, 'the': 1.0, 'help': 1.0, 'were': 1.0, 'it': 1.0, 'helpful': 1.0, 'when': 1.0, 'cheap': 1.0, 'i': 1.0, 'am': 1.0, 'they': 1.0, 'has': 1.0, 'been': 1.0, 'in': 1.0, 'trying': 1.0}
Word element => {'toys': 1.0, 'shape': 1.0, 'other': 1.0, 'prefer': 1.0, 'but': 1.0, 'colored': 1.0, 'bright': 1.0, 'nicely': 1.0, 'toy': 1.0, 'find': 1.0, 'because': 1.0, 'hard': 2.0, 'it': 5.0, 'this': 3.0, 'really': 2.0, 'shapes': 1.0, 'correct': 1.0, 'had': 1.0, 'anymore': 1.0, 'didn': 1.0, 'little': 1.0, 'my': 2.0, 'pull': 1.0, 'i': 7.0, 'open': 1.0, 'out': 1.0, 'for': 1.0, 'liking': 1.0, 'the': 4.0, 'durable': 1.0, 'ones': 1.0, 'remember': 1.0, 'and': 3.0, 'get': 1.0, 'much': 1.0, 'do': 1.0, 'ball': 1.0, 'bought': 1.0, 'when': 1.0, 'though': 1.0, 'sides': 1.0, 'apart': 1.0, 'also': 1.0, 'have': 1.0, 'to': 5.0, 'as': 1.0, 'all': 1.0, 'shake': 1.0, 'is': 3.0, 'around': 1.0, 'fall': 1.0, 'never': 1.0, 'design': 1.0, 'hole': 1.0, 't': 2.0, 'a': 1.0, 'could': 1.0, 'know': 1.0, 'like': 1.0, 'child': 2.0, 'don': 1.0}
Word element => {'thank': 1.0, '34': 2.0, 'educational': 1.0, 'discuss': 1.0, 'color': 1.0, 'say': 1.0, 'plan': 1.0, 'inside': 1.0, 'them': 1.0, 'puts': 1.0, 'after': 1.0, 'church': 1.0, 'learn': 1.0, 'pre': 1.0, 'that': 2.0, 'primary': 1.0, 'in': 1.0, 'i': 6.0, 'and': 5.0, 'very': 1.0, 'by': 1.0, 'amazon': 2.0, 'shapes': 3.0, 'would': 1.0, 'offered': 1.0, 'get': 1.0, 'patience': 1.0, 'our': 1.0, 'to': 5.0, 'carrying': 1.0, 'knew': 1.0, 'toddler': 1.0, 'surprised': 1.0, 'an': 1.0, 'blue': 1.0, 'be': 1.0, 'see': 1.0, 'working': 1.0, 'could': 1.0, 'you': 1.0, 'am': 1.0, 'easily': 1.0, 'release': 1.0, 'this': 2.0, 'it': 2.0, 'excellent': 1.0, 'way': 1.0, 'the': 6.0, 'red': 1.0, 'help': 1.0, 'colors': 1.0, 'at': 1.0, 'toddlers': 1.0, 'who': 1.0, 'toys': 1.0, 'knows': 1.0, 'was': 1.0, 'yellow': 1.0, 'even': 1.0, 'for': 1.0, 'love': 2.0, 'combination': 1.0, 'opens': 1.0}
Word element => {'style': 1.0, 'never': 1.0, 'things': 1.0, 'did': 1.0, 'see': 1.0, 'had': 1.0, 'i': 2.0, 'one': 1.0, 'many': 1.0, 'small': 1.0, 'have': 1.0, 'others': 1.0, 'vs': 1.0, 'learn': 1.0, 'shapes': 1.0, 'different': 1.0, 'that': 2.0, 'in': 1.0, 'durable': 1.0, 'it': 4.0, 'with': 2.0, 'educatonal': 1.0, 'out': 2.0, 'is': 3.0, 'same': 2.0, '10': 1.0, 'thrown': 1.0, 'sorter': 1.0, 'half': 1.0, 'has': 2.0, 'they': 1.0, 'sturdy': 1.0, 'shape': 1.0, 'play': 1.0, 'and': 3.0, 'so': 3.0, 'organized': 1.0, 'the': 6.0, 'go': 1.0, 'ago': 1.0, 's': 1.0, 'a': 2.0, 't': 1.0, 'years': 1.0, 'absolutely': 1.0, 'best': 2.0, 'very': 2.0, 'there': 1.0, 'of': 2.0, 'thick': 1.0, 'plastic': 1.0, '30': 1.0, 'this': 2.0, 'lost': 1.0, 'easily': 2.0, 'times': 1.0, 'thing': 1.0, 'several': 1.0, 'no': 1.0, 'my': 2.0, 'neat': 2.0, 'also': 2.0, 'pieces': 2.0, 'fit': 1.0, 'inside': 1.0, 'get': 1.0, 'easy': 1.0, 'as': 1.0, 'all': 3.0, 'to': 3.0, 'at': 1.0, 'since': 1.0, 'keep': 1.0, 'daughter': 2.0, 'together': 1.0, 'child': 1.0, 'washable': 1.0, 'damage': 1.0, 'don': 1.0}
Word element => {'toys': 1.0, 'educational': 1.0, 'advanced': 1.0, 'time': 1.0, 'by': 1.0, 'can': 1.0, 'past': 1.0, 'are': 1.0, 'impossible': 1.0, 'ball': 1.0, 'months': 1.0, '6': 1.0, 'of': 1.0, 'other': 1.0, 'no': 1.0, 'appropriate': 1.0, 'goes': 1.0, 'operate': 1.0, 'able': 1.0, 'children': 1.0, 'this': 3.0, 'piece': 2.0, 'with': 2.0, 'parent': 1.0, 'it': 3.0, 'much': 1.0, 'developmentally': 1.0, 'only': 1.0, 'open': 2.0, 'should': 3.0, 'their': 3.0, 'that': 1.0, 'involved': 1.0, 'more': 1.0, 'is': 5.0, 'many': 2.0, 'child': 5.0, 'magic': 1.0, 'them': 1.0, 'own': 2.0, 'problem': 1.0, 'the': 9.0, 'sorter': 2.0, 'find': 1.0, 'while': 1.0, 'starter': 1.0, 'shape': 2.0, 'get': 1.0, 'parents': 1.0, 'where': 1.0, 'for': 3.0, 'in': 1.0, 'age': 2.0, 'to': 3.0, 'until': 1.0, 'spot': 1.0, 'be': 3.0, 'toy': 2.0, 'has': 1.0, 'designed': 1.0, 'on': 3.0, 'constantly': 1.0, 'your': 1.0, 'they': 5.0, 'and': 3.0, 'too': 2.0, 'pieces': 2.0, 'at': 1.0, 'a': 5.0, 's': 1.0, 'give': 2.0, 'will': 2.0, 'like': 1.0, 'frustrated': 1.0, 'circle': 1.0}
Word element => {'most': 1.0, 'than': 1.0, 'how': 1.0, 'lost': 1.0, 'be': 1.0, 'solid': 1.0, 'very': 1.0, 'differnt': 1.0, 'built': 1.0, 'but': 2.0, 'for': 1.0, 'little': 1.0, 'learning': 1.0, 'well': 2.0, 'a': 4.0, 'are': 2.0, 'value': 1.0, 'just': 1.0, 'teaches': 1.0, 'toys': 2.0, 'times': 1.0, 'gripe': 1.0, 'the': 2.0, 'these': 1.0, 'toy': 2.0, 'any': 1.0, 'ball': 1.0, 'and': 2.0, 'only': 1.0, 'it': 1.0, 'this': 1.0, 'shapes': 1.0, 'many': 1.0, 'is': 4.0, 'can': 1.0, 'plastic': 1.0, 'without': 1.0, 'classic': 1.0, 'spendy': 1.0, 'principles': 1.0, 'in': 1.0, 'lasts': 1.0, 'that': 3.0, 'forever': 1.0, 'other': 1.0, 'simple': 1.0}
Word element => {'his': 1.0, 'how': 1.0, 'learn': 1.0, 'crayon': 1.0, 'with': 1.0, 'pieces': 1.0, 'favorite': 1.0, 'inside': 1.0, 'so': 1.0, 'ball': 1.0, 'toy': 1.0, 'from': 1.0, 'to': 2.0, 'as': 4.0, 'son': 2.0, 'very': 1.0, 'also': 1.0, 'was': 1.0, 'now': 1.0, 'purpose': 1.0, 'the': 4.0, 'like': 1.0, 'just': 1.0, 'because': 1.0, 'self': 1.0, 'young': 1.0, 'one': 2.0, 'seen': 1.0, 'when': 1.0, 'trapezoid': 1.0, 'rattle': 1.0, 'i': 4.0, 'shakes': 1.0, 'others': 1.0, 'chose': 1.0, 'shape': 3.0, 'and': 3.0, 'we': 1.0, 'a': 3.0, 't': 1.0, 's': 2.0, 'this': 2.0, 'it': 5.0, 'ones': 1.0, 'durable': 1.0, 'used': 1.0, 'factor': 1.0, 'remember': 1.0, 'retro': 1.0, 'contained': 1.0, 'sorter': 2.0, 'up': 1.0, 'don': 1.0, 'rolls': 1.0, 'have': 1.0, 'many': 1.0, 'shapes': 3.0, 'around': 2.0, 'is': 1.0, 'my': 2.0, 'portable': 1.0, 'toys': 1.0, 'trace': 1.0, 'knows': 1.0, 'of': 2.0, 'multi': 1.0, 'draw': 1.0, 've': 1.0, 'besides': 1.0, 'being': 1.0}
Word element => {'did': 1.0, 'one': 1.0, 'year': 1.0, 'handicapped': 1.0, '39': 1.0, 'isn': 1.0, 'this': 1.0, 't': 1.0, 'a': 2.0, 'you': 1.0, 'that': 1.0, 'it': 2.0, 'often': 1.0, 'can': 1.0, 'captivates': 1.0, 'totally': 1.0, 'find': 1.0, 'old': 1.0, 'toy': 1.0}
Word element => {'genius': 1.0, 'up': 1.0, 'child': 1.0, 'mastered': 1.0, 'will': 1.0, 'voila': 1.0, 'reason': 2.0, 'pure': 2.0, 'just': 1.0, 'by': 1.0, 'unknowable': 1.0, 'noumenal': 1.0, 'comprehended': 1.0, 'able': 1.0, 'phenomenal': 1.0, 'whatever': 2.0, 'become': 1.0, 'of': 2.0, 'structures': 1.0, 'your': 1.0, 'make': 1.0, 'ball': 1.0, 'the': 11.0, 'holes': 1.0, 'let': 3.0, 'space': 2.0, 'if': 1.0, 'categories': 2.0, 'fits': 1.0, 'absolute': 1.0, 'not': 1.0, 'she': 1.0, 'it': 5.0, 'only': 1.0, 'necessity': 1.0, 'students': 1.0, 'an': 1.0, 'can': 2.0, 'but': 1.0, 'blue': 1.0, 'kant': 2.0, 'ready': 1.0, 'is': 3.0, 'shapes': 1.0, 't': 1.0, 'go': 1.0, 's': 1.0, 'a': 2.0, 'wonderful': 1.0, 'has': 2.0, 'toy': 2.0, 'represent': 1.0, 'philosophy': 1.0, 'part': 2.0, 'fit': 1.0, 'for': 4.0, 'this': 2.0, 'kids': 1.0, 'with': 1.0, 'red': 1.0, 'mind': 2.0, 'time': 2.0, 'be': 4.0, 'yellow': 1.0, 'sense': 1.0, 'through': 4.0, 'teaching': 1.0, 'order': 1.0, 'critique': 1.0, 'you': 3.0, 'data': 1.0, 'now': 1.0, 'grow': 1.0, 'intelligible': 1.0, 'to': 7.0, 're': 1.0, 'and': 7.0, 'play': 2.0, 'in': 2.0, 've': 1.0, 'something': 1.0, 'before': 1.0, 'known': 1.0}
Word element => {'of': 1.0, 'provides': 1.0, 'was': 1.0, 'this': 2.0, 'first': 1.0, 'christmas': 1.0, 'still': 1.0, 'the': 1.0, 'great': 1.0, 'my': 2.0, 'grandchild': 1.0, 'o': 1.0, 'shape': 1.0, 'ball': 1.0, 'tupperware': 1.0, 'get': 1.0, 'and': 1.0, 'daughter': 2.0, 'in': 1.0, 'for': 3.0, 'fun': 1.0, 'years': 1.0, 'it': 3.0, 'she': 2.0, 'has': 2.0, 'i': 3.0, 'parties': 1.0, 'one': 1.0, 'bought': 2.0, 'be': 1.0, 'friends': 1.0, '1969': 1.0, 'always': 1.0, 's': 1.0, 'a': 1.0, 'products': 1.0, 'hit': 1.0, 'hours': 1.0, 'their': 1.0, 'to': 2.0, 'our': 1.0, 'at': 1.0, 'been': 1.0, 'durabal': 1.0, 'loves': 1.0, 'around': 1.0, 'is': 2.0, 'amazon': 1.0, 'able': 1.0, 'think': 1.0, 'on': 1.0}
Word element => {'still': 1.0, 'simple': 1.0, 'how': 1.0, 'recall': 1.0, 'some': 1.0, 'years': 1.0, '40': 1.0, 'of': 2.0, 'upwards': 1.0, 'have': 2.0, 'else': 1.0, 'proof': 1.0, 'sort': 1.0, 'kid': 1.0, 'been': 1.0, 'that': 1.0, 'totally': 1.0, 'tried': 1.0, 'be': 1.0, 'they': 1.0, 'way': 1.0, 'teething': 1.0, 'mean': 1.0, 'swallowed': 1.0, 'there': 3.0, 'want': 1.0, 'if': 1.0, 'lights': 1.0, 'for': 1.0, 'where': 1.0, 'brother': 2.0, 'it': 9.0, 'considering': 1.0, 'only': 1.0, 'with': 3.0, 'child': 1.0, 'tupperware': 1.0, 'break': 1.0, 'has': 1.0, 'toy': 2.0, 'me': 1.0, 'not': 2.0, 'grandmother': 1.0, 'you': 1.0, 'lose': 1.0, 'whistles': 1.0, 'back': 1.0, 'swear': 1.0, 'had': 1.0, 'as': 1.0, 'to': 2.0, 'now': 2.0, 'in': 1.0, 'pieces': 2.0, 'my': 3.0, 'believe': 1.0, 'the': 4.0, 'great': 1.0, 'didn': 1.0, 'a': 2.0, 't': 1.0, 's': 2.0, 'i': 5.0, 'so': 1.0, 'manage': 1.0, 'played': 1.0, 'or': 1.0, 'on': 2.0, '3': 1.0, 'other': 1.0, 'and': 7.0, 'sold': 1.0, 'play': 2.0, 'loved': 1.0, '70': 1.0, 'indestructible': 1.0, 'grandchildren': 2.0, 'no': 2.0, 'thing': 1.0, 'around': 1.0, 'is': 4.0, 'this': 2.0, 'kids': 2.0, 'but': 2.0, 'can': 3.0, 'mouth': 1.0}
Word element => {'durable': 1.0, 'batteries': 1.0, 'not': 1.0, 'does': 1.0, 'opening': 1.0, 'each': 1.0, 'they': 1.0, 'require': 1.0, 'edges': 1.0, 'no': 1.0, 'requested': 1.0, 'my': 2.0, 'eye': 1.0, '40': 1.0, 'nearly': 1.0, 'over': 1.0, 'months': 1.0, 'perfect': 1.0, 'this': 1.0, 'o': 1.0, 'with': 2.0, 'children': 1.0, 'sharp': 1.0, 'only': 2.0, 'it': 2.0, 'is': 4.0, 'very': 1.0, 'specifically': 1.0, 't': 1.0, 'ago': 1.0, 'a': 2.0, 'talk': 1.0, 'doesn': 1.0, 'acquainted': 1.0, 'primary': 1.0, 'that': 1.0, 'ball': 1.0, 'shape': 1.0, 'getting': 1.0, 'in': 1.0, 'tactile': 1.0, 'played': 1.0, 'learning': 1.0, 'toy': 2.0, '34': 2.0, 'years': 1.0, 'colors': 1.0, 'the': 4.0, 'daughter': 2.0, 'and': 4.0, 'too': 1.0, 'fit': 1.0, 'for': 1.0, 'have': 1.0, 'vivid': 1.0, 'specific': 1.0, 'her': 1.0, 'who': 1.0, '7': 1.0, 'old': 1.0, 'swallow': 1.0, 'but': 1.0, 'now': 1.0, 'to': 1.0, 'are': 2.0, 'catching': 1.0, 'shapes': 1.0, 'big': 1.0}
Word element => {'has': 1.0, 'quality': 1.0, 'that': 2.0, 'have': 1.0, 't': 1.0, 'don': 1.0, 'ones': 1.0, 'you': 2.0, 'at': 1.0, 'out': 2.0, 'get': 1.0, 'and': 1.0, 'shape': 1.0, 'open': 1.0, 'best': 1.0, 'the': 5.0, 'tried': 1.0, 'i': 2.0, 'to': 2.0, 'had': 1.0, 'first': 1.0, 'he': 1.0, 'it': 3.0, 'this': 1.0, 'help': 1.0, 'days': 1.0, 'of': 2.0, 'try': 1.0, 'played': 1.0, 'course': 1.0, 'shapes': 1.0, 'is': 1.0, 'pieces': 1.0, 'in': 2.0, 've': 1.0, 'tupperware': 1.0, 'everyday': 1.0, 'can': 1.0, 'but': 1.0, 'put': 1.0, 'your': 1.0, 'with': 2.0, 'mind': 2.0, 'putting': 1.0, 'him': 1.0, 'few': 1.0, 'by': 1.0, 'loved': 1.0, 'far': 1.0, '15': 1.0, 'toys': 1.0, 'months': 1.0, 'one': 1.0, 'anything': 1.0, 'other': 1.0}
Word element => {'last': 1.0, 'because': 1.0, 'like': 1.0, 'know': 1.0, 'it': 5.0, 'this': 2.0, 'wanted': 1.0, 'granddaughter': 1.0, 'to': 1.0, 'had': 1.0, 'ball': 1.0, 'and': 2.0, 'of': 2.0, '6': 1.0, 'however': 1.0, 'so': 1.0, 'durability': 1.0, 'i': 3.0, 'wouldn': 1.0, 'didn': 1.0, 'want': 1.0, 'is': 1.0, 'old': 1.0, 'type': 1.0, 'great': 1.0, '1': 1.0, 'shapes': 1.0, 'spend': 1.0, 'the': 4.0, 'ones': 1.0, 'my': 1.0, 'product': 1.0, 'for': 1.0, 'one': 2.0, 'sizes': 1.0, 'have': 1.0, 't': 2.0, 'we': 1.0, 'has': 2.0, 'mother': 1.0, 'through': 1.0, 'grandkids': 1.0, 'been': 1.0, 'that': 1.0, 'year': 1.0, 'awesome': 1.0, 'walmart': 1.0, 'cheaper': 1.0, 'but': 1.0, 'price': 1.0, 'm': 1.0, 'sure': 1.0}
Word element => {'days': 1.0, 'hot': 1.0, 'on': 1.0, 'restaurants': 1.0, 'conditioned': 1.0, 'air': 1.0, 'to': 1.0, 'taking': 1.0, 'as': 1.0, 'up': 1.0, 'overly': 1.0, 'got': 1.0, 'so': 1.0, 'much': 1.0, 'first': 1.0, 'when': 1.0, 'a': 2.0, 'the': 3.0, 'back': 1.0, 'baby': 1.0, 'whenever': 1.0, 'liked': 1.0, 'one': 1.0, 'for': 2.0, 'we': 2.0, 'other': 1.0, 'second': 1.0, 'is': 1.0, 'wash': 1.0, 'in': 1.0, 'perfect': 1.0, 'temperature': 1.0, 'changes': 1.0}
Word element => {'for': 1.0, 'short': 1.0, 'too': 1.0, 'it': 2.0, 'seat': 1.0, 'product': 1.0, 'is': 2.0, 'narrow': 1.0, 'does': 1.0, 'not': 1.0, 'the': 1.0, 'and': 1.0, 'as': 1.0, 'very': 1.0, 'safe': 1.0, 'but': 1.0, 'this': 1.0, 'fit': 1.0, 'pretty': 1.0, 'graco': 1.0}
Word element => {'climes': 1.0, 'similar': 1.0, 'up': 1.0, 'very': 1.0, 'local': 1.0, 'can': 1.0, 'it': 1.0, 'items': 1.0, 'however': 1.0, 'you': 1.0, 'me': 1.0, 'bundle': 1.0, 'fine': 1.0, 'is': 2.0, 'lightweight': 1.0, 'the': 1.0, 'for': 2.0, 'cheaper': 1.0, 'at': 1.0, 'not': 1.0, 'stores': 1.0, 'pick': 1.0, 'suitable': 1.0, 'colder': 1.0}
Word element => {'anymore': 1.0, 'floor': 1.0, 'use': 1.0, 'solution': 1.0, 'stroller': 1.0, 'but': 1.0, 'graco': 1.0, 'my': 1.0, 'for': 2.0, 'it': 3.0, 'perfectly': 1.0, 'i': 2.0, 'practical': 1.0, 'very': 1.0, 'a': 1.0, 'don': 1.0, 'search': 1.0, 'of': 1.0, 'course': 1.0, 'on': 1.0, 'won': 1.0, 'the': 1.0, 't': 2.0, 'fit': 1.0, 'have': 1.0, 'to': 1.0, 'blanket': 1.0}
Word element => {'for': 1.0, 'product': 1.0, 'great': 2.0, 'get': 1.0, 'lite': 2.0, 'original': 1.0, 'minnesota': 1.0, 'also': 1.0, 'live': 1.0, 'bundle': 3.0, 'over': 1.0, 'i': 3.0, 'buy': 1.0, 'would': 1.0, 'him': 1.0, 'very': 1.0, 'and': 1.0, 'advise': 1.0, 'highly': 1.0, 'baby': 2.0, 'you': 1.0, 'own': 1.0, 'did': 1.0, 'problem': 1.0, 'the': 7.0, 'both': 1.0, 'in': 2.0, 'regular': 1.0, 'cold': 1.0, 'winters': 1.0, 'my': 1.0, 'got': 1.0, 'most': 1.0, 'hot': 1.0, 'car': 1.0, 'of': 1.0, 'so': 1.0, 'time': 1.0, 'with': 3.0, 'this': 1.0, 'put': 1.0, 'bunle': 1.0, 'blanket': 1.0, 'to': 2.0, 'seat': 1.0, 'me': 4.0, 'not': 1.0, 'a': 2.0, 'we': 1.0, 'must': 1.0, 'have': 2.0}
Word element => {'the': 1.0, 'times': 1.0, 'will': 1.0, 'few': 1.0, 'used': 1.0, 'this': 1.0, 'trick': 1.0, 'is': 1.0, 'a': 3.0, 'do': 1.0, 'blanket': 1.0, 'nice': 1.0, 'it': 1.0, 'great': 1.0, 'idea': 1.0, 'and': 1.0, 'only': 1.0, 'quality': 1.0, 'i': 1.0, 'stroller': 1.0, 'but': 1.0}
Word element => {'my': 1.0, 'of': 1.0, 'out': 1.0, 'blanket': 1.0, 'worry': 1.0, 'to': 1.0, 'have': 1.0, 'loves': 1.0, 'or': 1.0, 'evening': 1.0, 'stroller': 1.0, 'walks': 1.0, 'one': 1.0, 'for': 1.0, 'falling': 1.0, 'perfect': 1.0, 'regular': 1.0, 'is': 1.0, 'bundle': 1.0, 'it': 3.0, 'this': 1.0, 'isn': 1.0, 'about': 1.0, 'don': 1.0, 'bunlde': 1.0, 'son': 1.0, 'as': 2.0, 'events': 1.0, 'me': 2.0, 'and': 1.0, 'since': 1.0, 't': 2.0, 'heavy': 1.0, 'the': 4.0, 's': 1.0, 'you': 1.0}
Word element => {'read': 1.0, 'durable': 1.0, 'with': 1.0, 'i': 1.0, 'prices': 1.0, 'market': 1.0, 'available': 1.0, 'there': 1.0, 'weather': 1.0, 'more': 1.0, 'is': 1.0, 'it': 1.0, 'at': 1.0, 'since': 1.0, 'are': 1.0, 'improve': 1.0, 'to': 1.0, 'continue': 1.0, 'they': 1.0, 'few': 1.0, 'large': 1.0, 'essential': 1.0, 'be': 1.0, 'winter': 3.0, 'everyday': 1.0, 'in': 2.0, 'replace': 1.0, 'stroller': 1.0, 'reasonable': 1.0, 'toddler': 2.0, 'also': 1.0, 'will': 3.0, 'keeping': 1.0, 'of': 1.0, 'entire': 1.0, 'months': 1.0, 'season': 1.0, 'expensive': 1.0, 'product': 2.0, 'for': 1.0, 'so': 1.0, 'time': 1.0, 'live': 1.0, 'bundle': 1.0, 'on': 2.0, 'therefore': 1.0, 'paris': 1.0, 'too': 1.0, 'and': 3.0, 'me': 1.0, 'hopefully': 1.0, 'my': 1.0, 'was': 1.0, 'unfortunately': 1.0, 'perfect': 1.0, 'this': 3.0, 'cole': 2.0, 'great': 1.0, 'deal': 1.0, 'the': 6.0, 'spends': 1.0, 'we': 1.0, 't': 1.0, 'a': 4.0, 'brand': 1.0, 'warm': 1.0, 'through': 1.0, 'cold': 1.0, 'didn': 1.0, 'her': 2.0, 'last': 1.0, 'jj': 2.0, 'if': 1.0, 'you': 1.0, 'zipper': 1.0, 'quilting': 1.0, 'have': 1.0, 'maclaren': 1.0}
Word element => {'product': 1.0, 'quickly': 1.0, 'dries': 1.0, 'but': 1.0, 'out': 1.0, 'whip': 1.0, 'through': 1.0, 'could': 1.0, 'walks': 2.0, 't': 2.0, 'a': 3.0, 'rained': 1.0, 'if': 1.0, 'air': 2.0, 'bundleme': 1.0, 'cranky': 1.0, 'this': 2.0, 'on': 1.0, 'get': 2.0, 'and': 6.0, 'reading': 1.0, 'which': 1.0, '5': 1.0, 'five': 1.0, 'then': 1.0, 'we': 4.0, 'reviews': 1.0, 'both': 2.0, 'his': 2.0, 'after': 1.0, 'is': 4.0, 'my': 1.0, 'opening': 1.0, 'don': 1.0, 'up': 1.0, 'wash': 1.0, 'baby': 2.0, 'lot': 1.0, 'one': 1.0, 'recently': 1.0, 'should': 1.0, 'laughs': 1.0, 'secure': 1.0, 'easy': 2.0, 'talks': 1.0, 'bit': 1.0, 'fresh': 1.0, 'very': 2.0, 'big': 1.0, 'pass': 1.0, 'month': 1.0, 'daily': 1.0, 'love': 1.0, 'he': 3.0, 'light': 1.0, 'old': 1.0, 'point': 1.0, 'as': 1.0, 'to': 5.0, 'bought': 1.0, 'waterproof': 1.0, 'windproof': 1.0, 'weather': 1.0, 'didn': 1.0, 'dried': 1.0, 'got': 1.0, 'bother': 1.0, 'it': 7.0, 'him': 1.0, 'be': 2.0, 'was': 1.0, 'zipped': 1.0, 'am': 1.0, 'you': 1.0, 'glad': 1.0, 'our': 1.0, 'stroller': 2.0, 'works': 1.0, 'harness': 1.0, 'i': 3.0, 'well': 1.0, 'has': 2.0, 'with': 1.0, 'seeing': 1.0, 'size': 1.0, 'regulate': 1.0, 'velcro': 2.0, 'tight': 1.0, 'boy': 1.0, 'enables': 1.0, 'what': 1.0, 'loves': 1.0, 'strap': 1.0, 'the': 6.0, 'of': 1.0, 'so': 1.0, 'can': 1.0, 'used': 1.0, 'loosen': 1.0, 'allow': 1.0, 'for': 1.0, 'toddlers': 1.0, 'straps': 1.0}
Word element => {'season': 1.0, 'toddlers': 1.0, 'w': 1.0, 'friends': 1.0, 'holiday': 1.0, 'gift': 1.0, 'of': 1.0, 'stock': 1.0, 'have': 1.0, 'always': 1.0, 'they': 1.0, 'big': 1.0, 'now': 1.0, 'store': 1.0, 'was': 1.0, 'to': 2.0, 'love': 1.0, 'for': 2.0, 'i': 3.0, 'my': 3.0, 'went': 1.0, 'own': 1.0, 'bought': 1.0, 'one': 1.0, 'fuss': 1.0, 'little': 1.0, 'didn': 1.0, 'bundle': 1.0, 'me': 1.0, 'don': 1.0, 'outlets': 1.0, 'daughter': 1.0, 'and': 6.0, 'too': 1.0, 'that': 2.0, 'babies': 1.0, 'this': 5.0, 'perfect': 1.0, 'in': 3.0, 'just': 1.0, 'strolling': 1.0, 'the': 2.0, 'we': 1.0, 's': 2.0, 'a': 4.0, 't': 2.0, 'it': 2.0, 'month': 1.0, 'she': 1.0, 'warm': 1.0, 'cozy': 1.0, 'make': 1.0, 'price': 1.0, 'vegas': 1.0, 'is': 2.0, 'really': 1.0, 'good': 1.0, 'compared': 1.0, 'target': 1.0, 'babiesrus': 1.0}
Word element => {'addition': 1.0, 'nursery': 1.0, 'our': 1.0, 'nice': 1.0, 'nightlight': 1.0, 'turtle': 1.0, 'part': 1.0, 'as': 1.0, 'and': 1.0, 'theme': 1.0, 'makes': 1.0, 'of': 1.0, 'good': 1.0, 'froggy': 1.0, 'got': 1.0, 'looks': 1.0, 'this': 1.0, 'it': 1.0, 'great': 2.0, 'we': 1.0, 'subtle': 1.0, 'a': 1.0, 'light': 1.0, 'buy': 1.0}
Word element => {'lover': 1.0, 'frog': 1.0, 'any': 1.0, 'recommend': 1.0, 'would': 1.0, 'just': 1.0, 'light': 1.0, 'made': 1.0, 'the': 1.0, 'enough': 1.0, 'beautiful': 1.0, 'is': 2.0, 'on': 1.0, 'and': 2.0, 'i': 1.0, 'night': 2.0, 'durable': 1.0, 'this': 1.0, 'late': 1.0, 'for': 1.0, 'feedings': 1.0, 'to': 1.0, 'spot': 1.0, 'switch': 1.0, 'bright': 1.0, 'well': 1.0, 'a': 1.0, 'off': 1.0, 'good': 1.0, 'in': 1.0, 'seems': 1.0}
Word element => {'with': 1.0, 'stuck': 1.0, 'm': 1.0, 'return': 1.0, 'day': 1.0, '30': 1.0, 'so': 1.0, 'window': 1.0, 'after': 1.0, 'until': 1.0, 'music': 1.0, 'are': 1.0, 'broken': 1.0, 'and': 2.0, 'they': 2.0, 'boxes': 1.0, 'both': 1.0, 'of': 2.0, 'two': 1.0, 'find': 1.0, 'ordered': 1.0, 'i': 3.0, 'on': 1.0, 'out': 1.0, 'them': 2.0, 'were': 2.0, 'intended': 1.0, 'defective': 1.0, 'the': 2.0, 'these': 1.0, 't': 1.0, 'for': 1.0, 'argh': 1.0, 'gifts': 1.0, 'didn': 1.0}
Word element => {'cars': 1.0, 'with': 1.0, 'i': 1.0, 'to': 1.0, 'old': 1.0, 'got': 1.0, '12': 1.0, 'month': 1.0, 'play': 1.0, 'loves': 1.0, 'this': 1.0, 'for': 1.0, 'the': 1.0, 'my': 1.0, 'and': 1.0, 'he': 1.0}
Word element => {'toy': 1.0, 'newborn': 1.0, 'little': 1.0, 's': 1.0, 'really': 1.0, 'type': 1.0, 'move': 1.0, 'music': 1.0, 'raggae': 1.0, 'plays': 1.0, 'claws': 1.0, 'for': 1.0, 'daughter': 1.0, 'toys': 1.0, 'i': 2.0, 'but': 1.0, 'crab': 1.0, 'so': 1.0, 'there': 1.0, 'product': 1.0, 'buttons': 1.0, 'to': 1.0, 'had': 1.0, 'image': 1.0, 'collect': 1.0, 'was': 2.0, 'push': 1.0, 'my': 1.0, 'went': 1.0, 'ahead': 1.0, 'it': 3.0, 'and': 2.0, 'cute': 1.0, 'ordered': 1.0, 'fun': 1.0, 'no': 1.0, 'super': 1.0}
Word element => {'another': 1.0, 'still': 1.0, 'is': 1.0, 'find': 1.0, 'ones': 1.0, 'old': 1.0, 'haven': 1.0, 'cleaning': 1.0, 'off': 1.0, 'take': 1.0, 'grows': 1.0, 'on': 1.0, 'put': 1.0, 'am': 1.0, 'easily': 1.0, 'you': 1.0, 'found': 1.0, 'allows': 1.0, 'velcro': 1.0, 'searched': 1.0, 'have': 2.0, 'will': 2.0, 'i': 5.0, 'now': 1.0, 'buy': 1.0, 'definitely': 1.0, 'day': 1.0, 'that': 1.0, 'next': 1.0, 'carrier': 1.0, 'infant': 1.0, 'those': 1.0, 'not': 1.0, 'trap': 1.0, 'harness': 1.0, 'do': 1.0, 'and': 4.0, 'so': 1.0, 'boy': 2.0, 'supported': 1.0, 'them': 2.0, 'baby': 3.0, 'allow': 1.0, 'heat': 1.0, 'head': 2.0, 'like': 1.0, 'charleston': 1.0, 'other': 1.0, 'they': 2.0, 'yet': 1.0, 'for': 5.0, 'are': 1.0, 'supports': 2.0, 'the': 5.0, 'carrying': 1.0, 'these': 2.0, 'be': 1.0, 'here': 1.0, 'crown': 1.0, 'years': 1.0, 'absolutely': 1.0, 'relieved': 1.0, 'frantically': 1.0, 'wonderful': 1.0, 'in': 1.0, 'weather': 1.0, 'hot': 1.0, 'especially': 1.0, 'down': 1.0, 'set': 1.0, 'used': 1.0, 'three': 1.0, 'at': 1.0, 'babiesrus': 1.0, 'stored': 1.0, 'most': 2.0, 'adjusting': 1.0, 'with': 1.0, 'first': 1.0, 'as': 1.0, 'any': 1.0, 'to': 3.0, 'our': 3.0, 'born': 1.0, 't': 1.0, 'a': 1.0, 's': 1.0, 'we': 2.0, 'ago': 1.0, 'after': 1.0, 'she': 1.0, 'little': 1.0, 'grew': 1.0, 'out': 1.0, 'of': 2.0}
Word element => {'do': 1.0, 'doesn': 1.0, 'i': 1.0, 'user': 1.0, 'but': 1.0, 'use': 1.0, 'collected': 1.0, 'after': 1.0, 'sometimes': 1.0, 'there': 1.0, 'part': 1.0, 'easiest': 1.0, 'it': 2.0, 'children': 1.0, 'even': 1.0, 'hands': 1.0, 'the': 3.0, 'pee': 2.0, 'private': 1.0, 'another': 1.0, 'my': 3.0, 'forgot': 1.0, 'clean': 1.0, 'that': 3.0, 'been': 1.0, 'three': 1.0, 't': 2.0, 'a': 2.0, 'we': 1.0, 'is': 2.0, 'some': 1.0, 'others': 1.0, 'haven': 1.0, 'weight': 1.0, 'never': 1.0, 'have': 1.0, 'used': 1.0, '100th': 1.0, 'potty': 1.0, 'though': 1.0, 'and': 2.0, 'spray': 1.0, 'had': 1.0, 'through': 1.0, 'down': 2.0, 'favorite': 1.0, 'hold': 1.0, 'they': 2.0, 'as': 1.0, 'all': 2.0, 'to': 2.0, 'seat': 3.0, 'found': 1.0, 'this': 3.0, 'kids': 1.0, 'are': 2.0, 'comfortable': 1.0, 'on': 1.0, 'everywhere': 1.0, 'said': 1.0, 'in': 1.0, 'boys': 2.0, 'unless': 1.0, 'has': 3.0, 'percentile': 1.0, 'height': 1.0, 'their': 1.0}
Word element => {'with': 1.0, 'issues': 1.0, 'haven': 1.0, '99': 1.0, '15': 1.0, 'was': 1.0, 'rating': 1.0, 't': 1.0, 'a': 2.0, 'such': 1.0, 'the': 3.0, 'more': 1.0, 'mine': 1.0, 'one': 2.0, 'it': 2.0, 'this': 1.0, 'not': 1.0, 'bad': 1.0, 'i': 5.0, 'old': 1.0, 'buy': 2.0, 'do': 1.0, 'and': 2.0, 'sure': 1.0, 'get': 1.0, 'why': 1.0, 'from': 1.0, '5': 1.0, 'year': 1.0, 'girl': 1.0, 'loves': 1.0, 'has': 1.0, 'they': 1.0, 'so': 1.0, 'cushion': 1.0, 'handles': 1.0, 'had': 1.0, 'purchased': 2.0, 'got': 1.0, 'baby': 1.0, 'on': 1.0, 'amazon': 1.0, 'second': 1.0, 'any': 1.0, 'seat': 2.0, 'to': 1.0, 'my': 1.0, 'another': 1.0, 'bathroom': 1.0, '2': 1.0, 'but': 1.0, 'are': 1.0, 'love': 1.0, 'for': 1.0, 'expensive': 1.0, 'here': 1.0}
Word element => {'house': 1.0, 'but': 1.0, 'need': 1.0, 'when': 1.0, 'forward': 1.0, 'day': 1.0, 'looking': 1.0, 'really': 1.0, 'm': 1.0, 'removed': 1.0, 'don': 1.0, 'up': 1.0, 'clean': 1.0, 'wipes': 1.0, 'disinfecting': 1.0, 'kept': 1.0, 'from': 1.0, 'while': 1.0, 'i': 3.0, 'mess': 1.0, 'it': 1.0, 'this': 2.0, 'only': 1.0, 'he': 2.0, 'with': 1.0, 'toilet': 1.0, 'are': 1.0, 'the': 9.0, 'one': 3.0, 'for': 2.0, 'will': 2.0, 'awesome': 1.0, 'that': 1.0, 'which': 1.0, 'on': 2.0, 'son': 1.0, 'very': 2.0, 'until': 1.0, 'big': 1.0, 'is': 3.0, 'these': 1.0, 'learning': 1.0, 'deflectors': 1.0, 'and': 4.0, 'handles': 1.0, 'thing': 1.0, 'no': 1.0, 'about': 1.0, 'potty': 2.0, 'simply': 2.0, 'rugs': 1.0, 'particular': 1.0, 'sat': 1.0, 'use': 2.0, 'bathroom': 1.0, 'my': 2.0, 'fits': 1.0, 'of': 3.0, 'stable': 1.0, 'had': 2.0, 'as': 1.0, 'to': 3.0, 'chairs': 1.0, 'floor': 1.0, 't': 1.0, 'we': 3.0, 'a': 2.0, 'perfectly': 1.0, 'deflector': 1.0, 'then': 1.0, 'taught': 1.0, 'him': 1.0, 'handy': 1.0, 'problems': 1.0, 'point': 1.0, 'before': 1.0, 'course': 1.0, 'peeing': 1.0, 'have': 1.0}
Word element => {'messy': 1.0, 'less': 1.0, 'back': 1.0, 'seems': 1.0, 'that': 1.0, 'point': 1.0, 'trips': 1.0, 'since': 1.0, 'have': 1.0, 'girl': 1.0, 'better': 1.0, 'anything': 1.0, 'potty': 2.0, 'much': 1.0, 'deflect': 1.0, 'taught': 1.0, 'luck': 1.0, 'a': 3.0, 'we': 3.0, 'be': 2.0, 'thought': 1.0, 'purchased': 1.0, 'perhaps': 1.0, 'got': 1.0, 'this': 3.0, 'with': 1.0, 'he': 2.0, 'it': 2.0, 'for': 2.0, 'in': 1.0, 'son': 2.0, 'choice': 1.0, 'not': 2.0, 'does': 1.0, 'having': 1.0, 'because': 1.0, 'biggest': 1.0, 'would': 2.0, 'after': 1.0, 'was': 1.0, 'our': 2.0, 'seat': 3.0, 'to': 5.0, 'sit': 1.0, 'on': 2.0, 'the': 4.0, 'toilet': 2.0, 'another': 1.0, 'my': 1.0, 'fits': 1.0, 'good': 1.0, 'clean': 1.0, 'big': 1.0, 'nice': 1.0, 'and': 1.0, 'is': 2.0, 'easy': 1.0, 'but': 1.0, 'concern': 1.0, 'built': 1.0, 'down': 1.0, 'deflector': 1.0}
Word element => {'away': 1.0, 'mine': 1.0, 'hope': 1.0, 'shape': 1.0, 'right': 1.0, 'exact': 1.0, 'from': 1.0, 'further': 1.0, 'guys': 1.0, 'very': 1.0, 'little': 2.0, 'pushing': 1.0, 'anything': 1.0, 'bump': 1.0, 'raised': 1.0, 'slightly': 1.0, 'built': 1.0, 'him': 1.0, 'someone': 1.0, 'when': 1.0, 'since': 1.0, 'deflector': 1.0, 'down': 1.0, 'girl': 1.0, 'his': 2.0, 'point': 1.0, 'always': 1.0, 'way': 2.0, 'potty': 1.0, 'boy': 2.0, '2yo': 1.0, 'my': 1.0, 'poop': 1.0, 'end': 1.0, 'might': 1.0, 'a': 3.0, 't': 1.0, 'hole': 2.0, 'pee': 1.0, 'the': 10.0, 'for': 2.0, 'fit': 1.0, 'give': 1.0, 'not': 2.0, 'find': 1.0, 'does': 1.0, 'because': 1.0, 'able': 1.0, 'small': 2.0, 'have': 2.0, 'mentions': 1.0, 'this': 5.0, 'useless': 1.0, 'it': 1.0, 'he': 2.0, 'completely': 1.0, 'around': 1.0, 'is': 4.0, 'rear': 1.0, 'stuff': 1.0, 'on': 3.0, 'over': 1.0, 'to': 5.0, 'seat': 4.0, 'our': 1.0, 'parts': 1.0, 'description': 1.0, 'too': 1.0, 'and': 4.0, 'get': 1.0, 'toilet': 2.0, 'work': 1.0, 'but': 1.0, 'can': 3.0, 'pees': 1.0, 'in': 3.0, 'slides': 1.0, 'are': 1.0, 'into': 1.0, 'if': 1.0, 'correct': 1.0, 'pooping': 1.0, 'position': 1.0, 'no': 1.0, 'above': 1.0, 'front': 1.0, 'see': 1.0, 'of': 2.0, 'i': 4.0}
Word element => {'them': 2.0, 'out': 3.0, 'be': 1.0, 'trying': 1.0, 'every': 1.0, 'been': 1.0, 'back': 2.0, 'gets': 1.0, 'son': 1.0, 'when': 1.0, 'attached': 1.0, 'absorb': 1.0, 'now': 2.0, 'scolding': 1.0, 'chime': 1.0, 'ends': 1.0, 'single': 1.0, 'upset': 1.0, 'read': 1.0, 'said': 1.0, 'one': 1.0, 'have': 7.0, 'him': 3.0, 'it': 2.0, 'this': 1.0, 'others': 1.0, 'pieces': 2.0, 'problem': 1.0, 'though': 1.0, 'even': 2.0, 'no': 1.0, 'to': 8.0, 'can': 1.0, 'so': 1.0, 'time': 2.0, 'boy': 1.0, 'potty': 1.0, 'else': 2.0, 'drips': 1.0, 'everyone': 1.0, 'bottom': 1.0, 'up': 1.0, 'threw': 2.0, 'and': 8.0, 'buying': 1.0, 'piece': 2.0, 'front': 2.0, 'a': 2.0, 't': 1.0, 'they': 1.0, 'reviews': 1.0, 'doing': 1.0, 'of': 3.0, 'the': 15.0, 'pours': 1.0, 'is': 3.0, 'pouring': 1.0, 'trash': 1.0, 'apologize': 1.0, 'there': 1.0, 'for': 2.0, 'long': 1.0, 'stand': 1.0, 'stick': 1.0, 'removed': 2.0, 'pee': 4.0, 'while': 1.0, 'from': 2.0, 'over': 1.0, 'hard': 1.0, 'edge': 1.0, 'toilet': 2.0, 'paper': 1.0, 'in': 2.0, 'seat': 3.0, 'm': 1.0, 'clean': 1.0, 'handles': 1.0, 'just': 1.0, 'my': 1.0, 'his': 1.0, 'feel': 1.0, 'are': 1.0, 'boys': 1.0, 'bad': 1.0, 'that': 4.0, 'because': 1.0, 'not': 1.0, 'aiming': 1.0, 'i': 10.0, 'well': 1.0, 'enough': 1.0, 'had': 1.0, 'tell': 1.0, 'all': 2.0, 'other': 1.0, 'under': 2.0, 'same': 1.0}
Word element => {'know': 1.0, 'glad': 1.0, 'really': 1.0, 'was': 1.0, 'idea': 1.0, 'had': 1.0, 'luckily': 1.0, 'reviews': 2.0, 'poor': 1.0, 'majority': 1.0, 'items': 1.0, 'buy': 2.0, 'points': 1.0, 'about': 1.0, 'not': 1.0, 'over': 1.0, 'wall': 1.0, 'but': 2.0, 'easier': 1.0, 'right': 1.0, 'just': 1.0, 'them': 1.0, 'little': 1.0, 'useless': 1.0, 'supposed': 1.0, 'pegs': 1.0, 'potty': 1.0, 'scoot': 1.0, 'boy': 1.0, 'padded': 1.0, 'store': 1.0, 'seemed': 1.0, 'check': 1.0, 'big': 1.0, 'function': 1.0, 'amazing': 1.0, 'against': 1.0, 'to': 7.0, 'as': 2.0, 'otherwise': 1.0, 'd': 1.0, 'badly': 1.0, 'none': 1.0, 's': 3.0, 'small': 2.0, 'a': 9.0, 'which': 1.0, 'care': 1.0, 'like': 1.0, 'do': 1.0, 'put': 2.0, 'back': 2.0, 'necessary': 1.0, 'and': 7.0, 'have': 6.0, 'remember': 1.0, 'leaning': 1.0, 'he': 2.0, 'this': 4.0, 'all': 1.0, 'other': 1.0, 'adults': 1.0, 'old': 1.0, 'clicks': 1.0, 'lack': 1.0, 'super': 1.0, 'year': 1.0, 'will': 1.0, 'means': 1.0, 'they': 1.0, 'likely': 1.0, 'issues': 1.0, 'help': 1.0, 'edge': 1.0, 'since': 1.0, 'at': 2.0, 'is': 5.0, 'reviewers': 1.0, 'mentioned': 1.0, 'figured': 1.0, 'normally': 1.0, '2': 1.0, 'so': 5.0, 'can': 1.0, 'pregnant': 1.0, 'of': 3.0, 'the': 12.0, 'pee': 1.0, 'amazon': 1.0, 'flush': 1.0, 'guard': 1.0, 'toilet': 1.0, 'sit': 1.0, 'are': 2.0, 'plus': 1.0, 'first': 1.0, 'dock': 1.0, 'him': 1.0, 'it': 8.0, 'didn': 3.0, 't': 7.0, 'fit': 1.0, 'for': 2.0, 'wanted': 1.0, 'bathroom': 1.0, 'husband': 1.0, 'out': 1.0, 'fall': 1.0, 'that': 3.0, 'every': 3.0, 'if': 2.0, 'push': 1.0, 'you': 2.0, 'stand': 2.0, 'down': 1.0, '8': 1.0, 'i': 12.0, 'well': 1.0, 'rated': 1.0, 'won': 3.0, 'half': 1.0, 'seat': 7.0, 'm': 2.0, 'in': 3.0, 'time': 2.0, 'budge': 1.0, 'secure': 1.0, 'with': 1.0, 'let': 1.0, 'no': 2.0, 'movement': 1.0, 'on': 6.0, 'long': 1.0, 'after': 1.0, 'opening': 1.0, 'don': 1.0, 'less': 1.0, 'up': 2.0, 'son': 1.0, 'get': 1.0, 'months': 1.0, 'my': 2.0, 'me': 1.0}
Word element => {'five': 1.0, 'give': 1.0, 'would': 1.0, 'adjust': 1.0, 'relief': 1.0, 'right': 1.0, 'with': 1.0, 'wish': 1.0, 'this': 3.0, 'just': 1.0, 'thrilled': 1.0, 'is': 3.0, 'into': 1.0, 'that': 5.0, 'problem': 1.0, 'better': 2.0, 'you': 1.0, 'am': 1.0, 'else': 1.0, 'if': 1.0, 'everything': 1.0, 'i': 6.0, 'so': 3.0, 'potty': 1.0, 'do': 1.0, 'only': 1.0, 'much': 1.0, 'daughter': 1.0, 'about': 1.0, 'my': 2.0, 'it': 2.0, 'annoying': 1.0, 'the': 5.0, 'have': 2.0, 'had': 1.0, 'any': 1.0, 'to': 3.0, 'seat': 3.0, 'took': 1.0, 'then': 1.0, 'doesn': 1.0, 'but': 1.0, 'stars': 1.0, 'product': 1.0, 'fit': 2.0, 'perfectly': 1.0, 'urine': 1.0, 'onto': 2.0, 'toilet': 3.0, 'moves': 1.0, 'occasionally': 1.0, 'which': 1.0, 'anything': 1.0, 'could': 2.0, 't': 1.0, 'a': 2.0, 'little': 1.0, 'never': 1.0, 'clean': 1.0, 'up': 1.0, 'or': 1.0, 'goes': 1.0}
Word element => {'visit': 1.0, 'expect': 1.0, 'or': 1.0, 'if': 1.0, 'review': 1.0, 'spoken': 1.0, 'spoke': 1.0, 'heard': 1.0, 'should': 1.0, 'luck': 1.0, 'out': 1.0, 'reasons': 1.0, 'sanitary': 1.0, 'back': 1.0, 'take': 1.0, 'can': 1.0, 'ever': 1.0, 'person': 2.0, 'day': 1.0, 'an': 1.0, 'don': 2.0, 'since': 1.0, 'exact': 1.0, 'there': 1.0, 'munchkin': 1.0, 'such': 1.0, 'happen': 1.0, 'accident': 1.0, 'just': 1.0, 'are': 1.0, 'this': 1.0, 'he': 2.0, 'it': 6.0, 'stop': 1.0, 'of': 3.0, 'was': 1.0, 'now': 1.0, 'husband': 1.0, 'daughter': 1.0, 'sharp': 1.0, 'have': 5.0, 'contacted': 1.0, 'touched': 1.0, 'boy': 2.0, 'seam': 1.0, 'to': 7.0, 'seat': 1.0, 'is': 4.0, 'said': 2.0, 'on': 1.0, 'rude': 1.0, 'serious': 1.0, 'son': 2.0, 'ring': 1.0, 'worked': 1.0, 'purchased': 1.0, 'use': 1.0, 'asking': 1.0, 'and': 5.0, 'the': 6.0, 'aware': 1.0, 'purchase': 2.0, 'bathroom': 1.0, 'my': 5.0, 'inner': 1.0, 'for': 3.0, 'using': 1.0, 'today': 1.0, 'about': 1.0, 't': 3.0, 'we': 2.0, 'going': 1.0, 'ago': 1.0, 'a': 5.0, 'that': 1.0, 'year': 1.0, 'ready': 1.0, 'never': 1.0, 'ok': 1.0, 'examined': 1.0, 'i': 6.0, 'you': 2.0, 'when': 2.0, 'hurt': 1.0, 'am': 2.0, 'problem': 1.0, 'response': 1.0, 'need': 1.0, 'they': 2.0}
Word element => {'stars': 1.0, 'five': 1.0, 'precious': 1.0, 'rattle': 1.0, 'pictures': 1.0, 'the': 2.0, 'like': 1.0, 'i': 2.0, 'received': 1.0, 'my': 1.0, 'one': 1.0, 'for': 2.0, 'when': 1.0, 'daughter': 1.0, 'item': 1.0, 'another': 1.0, 'baby': 1.0, 'ln': 1.0, 'bought': 1.0, 'was': 2.0, 'a': 1.0, 'law': 1.0, 'gorgeous': 1.0, 'so': 2.0, 'ordered': 1.0, 'shower': 1.0, 'this': 1.0, 'it': 2.0, 'looked': 1.0, 'just': 1.0}
Word element => {'great': 1.0, 'back': 2.0, 'an': 1.0, 'week': 1.0, 'longer': 1.0, 'is': 2.0, 'i': 1.0, 'hand': 1.0, 'accessible': 1.0, 'in': 2.0, 'easily': 1.0, 'order': 1.0, 'have': 1.0, 'this': 2.0, 'with': 1.0, 'item': 1.0, 'kid': 1.0, 'helpful': 1.0, 'accessories': 1.0, 'get': 1.0, 'very': 1.0, 'a': 1.0, 's': 2.0, 'no': 1.0, 'juice': 1.0, 'and': 1.0, 'tuck': 1.0, 'pouches': 1.0, 'keeping': 1.0, 'my': 1.0, 'cup': 1.0, 'or': 2.0, 'books': 1.0, 'into': 1.0, 'empty': 1.0, 'dolly': 1.0, 'snack': 1.0, 'bag': 1.0, 'blanky': 1.0, 'reach': 1.0, 'the': 2.0, 'along': 1.0, 'other': 1.0, 'to': 2.0, 'any': 1.0, 'toy': 1.0, 'of': 1.0, 'product': 1.0}
Word element => {'legs': 1.0, 'into': 1.0, 'and': 1.0, 'attached': 1.0, 'didn': 1.0, 'stay': 1.0, 'like': 1.0, 'wasn': 1.0, 'worth': 1.0, 'the': 1.0, 't': 2.0, 'money': 1.0, 'it': 5.0, 'supposed': 1.0, 'was': 1.0, 'to': 1.0, 'if': 1.0, 'passengers': 1.0, 'funny': 1.0, 'you': 1.0, 'put': 1.0, 'sag': 1.0, 'anything': 1.0, 'in': 1.0, 'hangs': 1.0, 'does': 1.0}
Word element => {'little': 1.0, 'than': 1.0, 'other': 1.0, 'empty': 1.0, 'sure': 1.0, 'make': 1.0, 'cracks': 1.0, 'inbetween': 1.0, 'crumbs': 1.0, 'broke': 1.0, 'never': 1.0, 'day': 1.0, 'buy': 1.0, 'dofall': 1.0, 'with': 1.0, 'did': 1.0, 'knew': 1.0, 'have': 2.0, 'now': 1.0, 'out': 2.0, 'use': 1.0, 'm': 1.0, 'years': 1.0, 'food': 1.0, 'but': 2.0, '2': 1.0, 'got': 1.0, 'looks': 1.0, 'it': 7.0, 'wish': 1.0, 'this': 1.0, 'he': 2.0, 'that': 3.0, 'and': 5.0, 'chair': 2.0, 'high': 1.0, 'another': 2.0, 'my': 1.0, 'son': 2.0, 'once': 1.0, 'stable': 1.0, 'of': 2.0, 'up': 1.0, 'bacame': 1.0, 'be': 1.0, 'one': 1.0, 'bought': 1.0, 'old': 1.0, 'sick': 1.0, 'you': 1.0, 'when': 1.0, 'would': 1.0, 'was': 4.0, 'bc': 1.0, 'i': 5.0, 'restaurants': 1.0, 's': 1.0, 'going': 1.0, 'we': 2.0, 'a': 4.0, 'thought': 1.0, 'what': 2.0, 'year': 1.0, 'ready': 1.0, 'his': 1.0, 'used': 1.0, 'ended': 1.0, 'happening': 1.0, 'is': 1.0, 'booster': 2.0, 'at': 1.0, 'our': 1.0, 'to': 5.0, 'seat': 4.0, 'like': 1.0, 'table': 1.0, 'great': 1.0, '1': 2.0, 'big': 1.0, 'nice': 1.0, 'bring': 1.0, 'until': 1.0, 'sit': 1.0, 'in': 1.0, 'the': 4.0, 'without': 1.0, 'so': 2.0}
Word element => {'or': 1.0, 'out': 1.0, 'house': 1.0, 'restaurants': 1.0, 'grandparents': 1.0, 'take': 1.0, 'also': 1.0, 'enough': 1.0, 'so': 1.0, 'use': 2.0, 'easy': 1.0, 'to': 4.0, 'we': 1.0, 'portable': 1.0, 'ours': 1.0, 'dinner': 1.0, 'very': 1.0, 'table': 1.0, 'at': 1.0, 'the': 1.0, 'high': 1.0}
Word element => {'course': 1.0, 'after': 1.0, 'through': 1.0, 'thread': 1.0, 'back': 1.0, 'has': 1.0, 'looking': 1.0, 'now': 1.0, 'am': 1.0, 'will': 1.0, 'ties': 1.0, 'simple': 1.0, 'harness': 1.0, 'much': 2.0, 'so': 1.0, 'wriggle': 1.0, 'squirm': 1.0, 'in': 2.0, 'itself': 1.0, 'longer': 1.0, 'belted': 1.0, 'what': 1.0, 'from': 1.0, 'came': 1.0, 'holes': 1.0, 'carts': 1.0, 'even': 1.0, 'on': 1.0, 'little': 1.0, 'that': 4.0, 'gift': 1.0, 'still': 1.0, 'my': 2.0, 'she': 1.0, 'it': 4.0, 'this': 1.0, 'i': 6.0, 'most': 1.0, 'monkey': 1.0, 'can': 2.0, 'average': 1.0, 'hold': 1.0, 'frustrated': 1.0, 'registered': 1.0, 'target': 2.0, 'worries': 1.0, 'cart': 5.0, 'where': 2.0, 'fit': 1.0, 'for': 2.0, 'product': 1.0, 'recieved': 1.0, 'onto': 1.0, 'at': 3.0, 'cloth': 1.0, 'carry': 1.0, 'starting': 1.0, 'and': 5.0, 'get': 1.0, 'belt': 1.0, 'doesn': 1.0, 'was': 1.0, 'store': 1.0, 'is': 3.0, 'around': 1.0, 'hands': 1.0, 'the': 11.0, 'cover': 3.0, 'child': 1.0, 'nearly': 1.0, 's': 1.0, 't': 1.0, 'a': 2.0, 'go': 1.0, 'every': 1.0, 'use': 1.0, 'me': 1.0, 'not': 3.0, 'seat': 2.0, 'to': 5.0, 'as': 1.0, 'all': 1.0, 'have': 1.0, 'shower': 1.0, 'of': 2.0, 'own': 1.0, 'an': 1.0, 'find': 1.0, 'does': 1.0, 'sized': 1.0, 'clean': 1.0, 'her': 2.0, 'wipes': 1.0}
Word element => {}
Word element => {'way': 1.0, 'good': 1.0, 'pretty': 1.0, 'comfy': 1.0, 'done': 1.0, 'get': 1.0, 'and': 4.0, 'play': 1.0, 'n': 1.0, 'with': 1.0, 'pack': 1.0, 'hardest': 1.0, 'making': 1.0, 'washing': 1.0, 'we': 1.0, 'a': 2.0, 'well': 1.0, 'bauer': 1.0, 'durable': 1.0, 'yes': 1.0, 'cardboard': 1.0, 'the': 2.0, 'is': 1.0, 'in': 1.0, 'regular': 1.0, 'it': 1.0, 'looks': 1.0, 'but': 1.0, 'quality': 1.0, 'little': 1.0, 'very': 2.0, 'amazing': 1.0, 'ours': 1.0, 'thick': 1.0, 'mattress': 1.0, 'soft': 1.0, '3': 1.0, 'what': 1.0, 'had': 1.0, 'expensive': 1.0, 'for': 2.0, 'over': 1.0, '34': 2.0, 'years': 1.0, 'use': 1.0, 'pay': 1.0, 'still': 1.0, 'like': 1.0, 've': 1.0, 'new': 1.0, 'eddie': 1.0, 'you': 2.0}
Word element => {'couldn': 1.0, 'winter': 1.0, 'back': 2.0, 'them': 1.0, 'took': 1.0, 'lot': 1.0, 'whole': 1.0, 'up': 1.0, 'packed': 1.0, 'with': 2.0, 'so': 1.0, 'australia': 2.0, 'was': 1.0, 'daughter': 1.0, 'water': 1.0, 'cold': 1.0, 'perfectly': 1.0, 'heat': 1.0, 'life': 1.0, 'weeks': 1.0, 'first': 1.0, 'his': 1.0, 'grandma': 1.0, 'had': 1.0, 'he': 1.0, 'yard': 1.0, 'than': 1.0, 'better': 1.0, 'mitchell': 1.0, 'little': 1.0, 'combination': 1.0, 'pleased': 1.0, 'beige': 1.0, 'as': 1.0, 'sleep': 1.0, 'to': 3.0, 'wondered': 1.0, 'of': 3.0, 'soooo': 1.0, 'still': 1.0, 'visiting': 1.0, 'have': 1.0, 'dryer': 1.0, 'southern': 1.0, 'for': 1.0, 'tree': 1.0, 'sage': 1.0, 'but': 1.0, '11': 1.0, 'when': 1.0, 'two': 1.0, 'i': 4.0, 'one': 2.0, 'bought': 2.0, 'here': 1.0, 'be': 1.0, 'products': 1.0, 'these': 2.0, 'the': 6.0, 'seemed': 1.0, 'snoozy': 1.0, 'grandson': 1.0, 'snuggly': 1.0, 'sheets': 3.0, 'happier': 1.0, 'yardgraco': 1.0, 'my': 2.0, 'family': 1.0, 'are': 2.0, 'july': 1.0, 'washed': 1.0, 'put': 1.0, 'on': 2.0, 'she': 1.0, 'it': 2.0, 'if': 1.0, 'they': 4.0, 't': 1.0, 's': 1.0, 'a': 2.0, 'might': 1.0, 'warm': 1.0, 'in': 4.0, 'yardin': 1.0, 'graco': 1.0, 'california': 1.0, 'summer': 1.0, 'low': 1.0, 'were': 1.0, 'been': 1.0, 'that': 2.0, 'perfect': 2.0, 'soft': 1.0, 'too': 1.0, 'play': 3.0, 'and': 5.0}
Word element => {'perfect': 1.0, 'what': 1.0, 'made': 1.0, 'which': 1.0, 'was': 1.0, 'if': 1.0, 'but': 1.0, 'so': 1.0, 'complaint': 1.0, 'preferring': 1.0, 'safe': 1.0, 'be': 2.0, 'air': 1.0, 'shrink': 1.0, 'did': 1.0, 'given': 1.0, 've': 1.0, 'new': 1.0, 'picture': 1.0, 'just': 1.0, 'green': 1.0, 'nice': 1.0, 'not': 1.0, 'skin': 1.0, 'your': 1.0, 'cotton': 2.0, 'you': 1.0, 'those': 1.0, 'however': 1.0, 'some': 1.0, 'like': 2.0, 'although': 3.0, 'originally': 1.0, 'sheets': 2.0, 'cold': 1.0, 'thick': 1.0, 'that': 4.0, 'been': 1.0, 'thin': 1.0, 'love': 1.0, 's': 5.0, 'a': 6.0, 'we': 1.0, 'fit': 4.0, 't': 2.0, 'for': 3.0, '38x26x3': 1.0, 'hold': 1.0, 'close': 1.0, 'using': 2.0, 'looking': 1.0, 'besides': 1.0, 'our': 1.0, 'purchased': 1.0, 'had': 1.0, 'carter': 2.0, 'recently': 1.0, 'whitewhich': 1.0, 'should': 1.0, 'sagewe': 1.0, 'fits': 1.0, 'with': 2.0, 'brand': 1.0, 'thecarters': 1.0, 'come': 1.0, 'fitted': 1.0, 'columbia': 1.0, 'wishing': 1.0, 'y': 1.0, 'playard': 8.0, 'on': 2.0, '3': 1.0, 'does': 2.0, 'than': 2.0, 'mattress': 10.0, 'this': 2.0, 'soft': 1.0, 'have': 3.0, 'woven': 2.0, 'of': 3.0, 'the': 16.0, 'cardboard': 1.0, 'came': 2.0, 'might': 1.0, 'sheet': 6.0, 'to': 6.0, 'length': 1.0, 'against': 2.0, 'and': 7.0, 'my': 1.0, 'looks': 1.0, 'me': 1.0, 'perfectly': 1.0, 'give': 1.0, 'better': 2.0, 'quilted': 1.0, 'it': 13.0, 'snug': 1.0, 'is': 7.0, 'very': 3.0, 'compressed': 1.0, 'after': 3.0, 'one': 1.0, 'lot': 2.0, 'who': 1.0, 'fitting': 1.0, 'hopes': 1.0, 'i': 6.0, 'thinking': 1.0, 'in': 4.0, 'm': 2.0, 'only': 2.0, 'whatever': 1.0, '100': 2.0, 'trying': 1.0, 'specifics': 1.0, 'help': 1.0, 'baby': 2.0, 'others': 1.0, 'are': 1.0, 'they': 1.0, 'wash': 1.0, 'use': 2.0, 'anyway': 1.0, 'up': 1.0, 'inchdream': 1.0, 'bought': 1.0, 'tight': 3.0, 'would': 2.0, 'polyester': 1.0, 'compress': 1.0, 'get': 1.0, 'dried': 1.0, 'foam': 2.0, 'doesn': 2.0, 'lots': 1.0, 'trend': 1.0, 'sectioned': 1.0, 'really': 1.0}
Word element => {'from': 1.0, 'effect': 1.0, 'residual': 1.0, 'be': 1.0, 'may': 1.0, 'easily': 1.0, 'has': 1.0, 'mattress': 2.0, 'my': 1.0, 'shrunk': 1.0, 'itself': 1.0, 'pack': 1.0, 'play': 1.0, 'fits': 1.0, 'far': 1.0, 'but': 1.0, 'not': 1.0, 'is': 2.0, 'a': 1.0, 'middle': 1.0, 'in': 2.0, 'wash': 1.0, 'so': 1.0, 'this': 1.0, 'n': 1.0, 'it': 1.0, 'actual': 1.0, 'functional': 1.0, 'little': 1.0, 'bunchy': 1.0, 'the': 1.0}
Word element => {'for': 1.0, 'baby': 1.0, 'little': 1.0, 'padding': 1.0, 'a': 1.0, 'thicker': 1.0, 'leaving': 1.0, 'fits': 1.0, 'are': 1.0, 'my': 2.0, 'n': 1.0, 'and': 1.0, 'pack': 1.0, 'play': 1.0, 'great': 1.0, 'love': 1.0, 'graco': 1.0, 'they': 1.0, 'how': 1.0}
Word element => {'sleep': 1.0, 'my': 1.0, 'not': 1.0, 'bump': 1.0, 'big': 1.0, 'well': 1.0, 'a': 1.0, 'creates': 1.0, 'when': 1.0, 'cozy': 1.0, 'soft': 1.0, 'disappointing': 1.0, 'doesn': 1.0, 'but': 2.0, 'being': 1.0, 'won': 1.0, 'that': 1.0, 'mattress': 2.0, 'times': 1.0, 'pulls': 1.0, 'so': 2.0, 'in': 1.0, 'flat': 1.0, 'is': 2.0, 'sheet': 1.0, 'it': 5.0, 'this': 2.0, 'the': 2.0, 't': 3.0, 'like': 1.0, 'lay': 1.0, 'now': 1.0, 'its': 3.0, 'been': 1.0, 'always': 1.0, 'washed': 1.0, 'several': 1.0, 'comfy': 1.0, 'and': 3.0, 'snug': 1.0, 'i': 1.0, 'baby': 1.0, 'don': 1.0, 'remember': 1.0}
Word element => {'sleeping': 1.0, 'very': 1.0, 'laundered': 1.0, 'being': 1.0, 'plush': 1.0, 'soft': 1.0, 'makes': 1.0, 'has': 1.0, 'far': 1.0, 'pack': 1.0, 'velboa': 1.0, 'purchased': 1.0, 'graco': 2.0, 'my': 2.0, 'a': 1.0, 'bauer': 1.0, 'play': 1.0, 'eddie': 1.0, 'i': 1.0, 'playard': 2.0, 'reversible': 1.0, 'comfortable': 1.0, 'for': 2.0, 'napper': 1.0, 'this': 1.0, 'n': 1.0, 'with': 1.0, 'it': 3.0, 'and': 3.0, 'perfectly': 1.0, 'stayed': 1.0, 'sheet': 1.0, 'changer': 1.0, 'fits': 1.0, 'surface': 1.0, 'after': 1.0, 'so': 1.0}
Word element => {'months': 1.0, 'warmer': 1.0, 'sweat': 1.0, 'daughter': 1.0, 'pack': 1.0, 'should': 1.0, 'soft': 1.0, 'play': 1.0, 'bauer': 1.0, 'it': 2.0, 'but': 1.0, 'eddie': 1.0, 'was': 1.0, 'and': 2.0, 'my': 2.0, 'the': 2.0, 'fits': 1.0, 'made': 1.0, 'used': 1.0, 'perfect': 1.0, 'in': 2.0, 'though': 1.0, 'be': 1.0, 'winter': 1.0, 'because': 1.0, 'really': 1.0, 'nice': 1.0}
Word element => {'bauer': 1.0, 'eddie': 1.0, 'find': 1.0, 'the': 2.0, 't': 1.0, 'play': 2.0, 'match': 2.0, 'much': 1.0, 'granted': 1.0, 'product': 1.0, 'bought': 1.0, 'this': 1.0, 'wouldn': 1.0, 'it': 2.0, 'i': 4.0, 'one': 1.0, 'knowing': 1.0, 'yard': 2.0, 'blue': 1.0, 'but': 1.0, 'popular': 1.0, 'so': 1.0, 'that': 2.0, 'wish': 1.0, 'like': 1.0, 'could': 1.0, 'actually': 1.0}
Word element => {'playards': 1.0, 'will': 1.0, 'ones': 1.0, 'thing': 1.0, 'sizes': 1.0, 'important': 1.0, 'than': 1.0, 'graco': 1.0, 'matches': 1.0, 'perfectly': 1.0, 'green': 1.0, 'and': 3.0, 'playard': 3.0, 'almost': 1.0, 'is': 2.0, 'color': 1.0, 'all': 1.0, 'as': 1.0, 'baby': 1.0, 'quilted': 1.0, 'plush': 1.0, 'nice': 2.0, 'which': 1.0, 'scrunch': 1.0, 'most': 1.0, 'fit': 1.0, 'for': 1.0, 'the': 8.0, 'larger': 2.0, 'though': 1.0, 'that': 2.0, 'are': 2.0, 'sheets': 1.0, 'you': 1.0, 'go': 1.0, 't': 1.0, 'we': 1.0, 'mattress': 2.0, 'soft': 1.0, 'found': 1.0, 'won': 1.0, 'up': 1.0, 'of': 2.0, 'sure': 1.0, 'very': 1.0, 'read': 1.0, 'make': 2.0, 'your': 1.0, 'these': 2.0, 'some': 1.0, 'only': 1.0}
Word element => {'s': 1.0, 'a': 1.0, 'at': 1.0, 'ideal': 1.0, 'would': 1.0, 'house': 1.0, 'but': 1.0, 'is': 1.0, 'comfy': 1.0, 'feel': 1.0, 'grandparent': 1.0, 'needed': 1.0, 'cushioning': 1.0, 'son': 1.0, 'plays': 1.0, 'room': 1.0, 'extra': 1.0, 'we': 1.0, 'standard': 1.0, 'hotel': 1.0, 'for': 1.0, 'to': 3.0, 'pack': 1.0, 'have': 2.0, 'i': 1.0, 'be': 1.0, 'bought': 1.0, 'that': 1.0, 'bulky': 1.0, 'the': 2.0, 'my': 1.0, 'it': 1.0, 'he': 1.0, 'with': 1.0, 'this': 2.0, 'n': 1.0, 'only': 1.0, 'come': 1.0, 'hard': 1.0, 'mattress': 1.0, 'think': 1.0, 'too': 1.0, 'gave': 1.0}
Word element => {'her': 1.0, 'she': 1.0, 'fantastic': 1.0, 'slept': 1.0, 'so': 1.0, 'am': 1.0, 'i': 2.0, 'for': 2.0, 'pads': 1.0, 'plastic': 1.0, 'cover': 1.0, 'the': 1.0, 'great': 1.0, 'that': 3.0, 'happy': 1.0, 'my': 2.0, 'are': 2.0, 'daughters': 1.0, 'play': 1.0, 'all': 1.0, 'pack': 1.0, 'had': 1.0, 'to': 3.0, 'sheet': 2.0, 'also': 1.0, 'in': 1.0, 'which': 1.0, 'p': 6.0, 'use': 1.0, 'most': 2.0, 'got': 2.0, 'n': 1.0, 'this': 2.0, 'it': 3.0, 'when': 1.0, 'daughter': 1.0, 'us': 1.0, 'considering': 1.0, 'is': 4.0, 'not': 1.0, 'excellent': 1.0, 'sleeping': 1.0, 'outstanding': 1.0, 'very': 1.0, 'padded': 2.0, 's': 2.0}
Word element => {'bunched': 1.0, 'all': 1.0, 'the': 1.0, 'pads': 1.0, 'one': 1.0, 'under': 1.0, 'than': 1.0, 'much': 1.0, 'i': 1.0, 'easier': 1.0, 'that': 2.0, 'no': 1.0, 've': 1.0, 'wash': 1.0, 'easy': 1.0, 'overnight': 1.0, 'to': 2.0, 'baby': 1.0, 'little': 1.0, 'sleeps': 1.0, 'shrinkage': 1.0, 'my': 1.0, 'up': 1.0, 'of': 1.0, '34': 2.0, 'there': 1.0, 'a': 1.0, 'noticed': 1.0, 'adds': 1.0, 'fits': 1.0, 'sheet': 2.0, 's': 3.0, 'is': 1.0, 'which': 1.0, 'playard': 1.0, 'good': 1.0, 'it': 2.0, 'this': 1.0, 'he': 1.0, 'gets': 1.0, 'when': 1.0, 'those': 1.0, 'extra': 1.0, 'we': 1.0, 'plush': 1.0, 'travel': 1.0, 'and': 3.0}
Word element => {'people': 1.0, 'sure': 1.0, 'board': 1.0, 'up': 1.0, 'use': 1.0, 'still': 1.0, 'buy': 1.0, 'am': 1.0, 'you': 1.0, 'measure': 1.0, 'there': 1.0, 'out': 1.0, 'absolutely': 1.0, 'best': 1.0, 'before': 1.0, '5': 1.0, 'i': 2.0, 'just': 1.0, 'of': 3.0, 'new': 2.0, 'received': 1.0, 'please': 1.0, 'recently': 1.0, 'but': 3.0, 'bassinet': 2.0, 'has': 1.0, 'bottom': 1.0, 'bunches': 1.0, 'perfectly': 1.0, 'baby': 1.0, 'even': 1.0, 'in': 1.0, 'warm': 1.0, 'annoying': 1.0, 'it': 4.0, 'newborns': 1.0, 'first': 1.0, 'perfect': 1.0, 'soft': 1.0, 'this': 4.0, 'older': 1.0, 'give': 1.0, 'n': 3.0, 'with': 2.0, 'issue': 1.0, 'stars': 1.0, 'product': 1.0, 'for': 3.0, 'one': 2.0, 'daughter': 1.0, 'gracco': 1.0, 'our': 2.0, 'that': 2.0, 'really': 3.0, 'is': 6.0, 'or': 1.0, 'will': 1.0, 'item': 1.0, 'size': 1.0, 'have': 2.0, 'only': 1.0, 'pack': 3.0, 'terrific': 1.0, 'a': 9.0, 'we': 4.0, 'too': 1.0, 'and': 3.0, 'play': 7.0, 'some': 1.0, 'already': 1.0, 'from': 1.0, 'sheets': 1.0, 'toddler': 1.0, 'an': 1.0, 'find': 1.0, 'because': 1.0, 'yard': 4.0, 'version': 2.0, 'sleeping': 1.0, 'which': 2.0, 'the': 7.0, 'little': 1.0, 'depending': 1.0, 'on': 1.0, 'your': 2.0, 'so': 1.0, 'sheet': 2.0, 'tight': 2.0, 'fits': 1.0}
Word element => {'has': 1.0, 'any': 1.0, 'want': 1.0, 'could': 1.0, 'to': 1.0, 'of': 1.0, 'sleeping': 1.0, 'use': 1.0, 'then': 1.0, 'cushion': 1.0, 'little': 1.0, 'maybe': 1.0, 'bit': 1.0, 'than': 1.0, 'under': 1.0, 'a': 2.0, 'using': 1.0, 't': 1.0, 'more': 2.0, 'are': 1.0, 'unless': 1.0, 'you': 2.0, 'but': 1.0, 'back': 1.0, 'infant': 1.0, 'it': 3.0, 'wouldn': 1.0}
Word element => {'good': 1.0, 'either': 1.0, 'buckle': 1.0, 'make': 1.0, 'it': 1.0, 'struggling': 1.0, 'tugging': 1.0, 'or': 2.0, 'pulling': 1.0, 'no': 1.0, 'perfectly': 1.0, 'sheets': 1.0, 'do': 1.0, 'only': 1.0, 'pack': 1.0, 'have': 1.0, 'graco': 2.0, 'just': 1.0, 'by': 1.0, 'the': 4.0, 'and': 4.0, 'play': 1.0, 'finally': 1.0, 'standard': 1.0, 'n': 1.0, 'not': 4.0, 'carter': 1.0, 'cushiony': 1.0, 'quality': 1.0, 'work': 1.0, 'but': 1.0, 't': 1.0, 's': 1.0, 'we': 1.0, 'a': 2.0, 'bauer': 2.0, 'well': 1.0, 'that': 2.0, 'fall': 1.0, 'is': 2.0, 'playard': 1.0, 'fits': 2.0, 'sheet': 2.0, 'made': 1.0, 'high': 1.0, 'shot': 1.0, 'fit': 2.0, 'also': 2.0, 'apart': 1.0, 'in': 1.0, 'wash': 1.0, 'then': 1.0, 'i': 1.0, 'tried': 1.0, 'which': 1.0, 'did': 1.0, 'long': 1.0, 'doesn': 1.0, 'eddie': 2.0, 'mattress': 1.0, 'this': 1.0, 'soft': 1.0, 'padded': 1.0}
Word element => {'regret': 1.0, 'buy': 1.0, 'quality': 1.0, 'better': 1.0, 'much': 1.0, 'one': 1.0, 'you': 1.0, 's': 1.0, 'carter': 1.0, 'have': 1.0, 'also': 1.0, 'cycle': 1.0, 'delicate': 1.0, 'won': 1.0, 'on': 1.0, 'washings': 1.0, 'it': 2.0, 'this': 1.0, 'with': 1.0, 'fits': 1.0, 't': 1.0, 'the': 2.0, '2': 2.0, 'great': 1.0, 'is': 1.0, 'padding': 1.0, 'even': 1.0, 'amount': 1.0, 'mattress': 1.0, 'good': 1.0, 'has': 1.0, 'soft': 1.0, 'very': 1.0, '1': 1.0, 'and': 2.0, 'of': 1.0, 'up': 1.0, '34': 1.0, 'purchased': 1.0, 'to': 1.0, 'we': 2.0, 'extra': 1.0, 'held': 1.0}
Word element => {'did': 1.0, 'my': 1.0, 'dryer': 1.0, 'in': 1.0, 'fits': 1.0, 'just': 1.0, 'pack': 2.0, 'husband': 1.0, 'to': 1.0, 'for': 1.0, 'and': 4.0, 'adds': 1.0, 'is': 1.0, 'melted': 1.0, 'play': 2.0, 'pad': 1.0, 'great': 1.0, 'the': 4.0, 't': 1.0, 'well': 1.0, 'a': 1.0, 'don': 1.0, 'bit': 1.0, 'of': 2.0, 'cushion': 1.0, 'it': 2.0, 'this': 1.0, 'hard': 1.0, 'surface': 1.0, 'put': 1.0}
Word element => {'like': 1.0, 'where': 1.0, 'on': 1.0, 'up': 1.0, 'really': 1.0, 'is': 1.0, 'no': 1.0, 'soft': 1.0, 'sheet': 1.0, 'and': 1.0, 'son': 1.0, 'very': 1.0, 'quality': 1.0, 'didn': 1.0, 'crib': 2.0, 'a': 1.0, 'have': 1.0, 'softness': 1.0, 'i': 1.0, 'bought': 1.0, 'mattress': 1.0, 'before': 1.0, 'even': 1.0, 'he': 1.0, 'it': 1.0, 'this': 1.0, 'come': 1.0, 'to': 1.0, 't': 1.0, 'the': 2.0, 'portable': 1.0, 'my': 1.0, 'others': 1.0, 'lose': 1.0, 'cuddles': 1.0}
Word element => {'after': 1.0, 'wash': 2.0, 'looks': 1.0, 's': 1.0, 'fits': 1.0, 'great': 2.0, 'it': 2.0, 'soft': 1.0, 'sheet': 1.0, 'bought': 1.0, 'my': 1.0, 'i': 1.0, 'n': 1.0, 'very': 1.0, 'and': 2.0, 'for': 1.0, 'graco': 1.0, 'pack': 1.0, 'this': 1.0, 'play': 1.0}
Word element => {'perfect': 1.0, 'its': 1.0, 'after': 1.0, 'sheet': 1.0, 'rather': 1.0, 'soft': 1.0, 's': 1.0, 'reading': 1.0, 'graco': 2.0, 'than': 1.0, 'yard': 2.0, 'reviews': 1.0, 'this': 2.0, 'play': 2.0, 'fit': 1.0, 'is': 1.0, 'and': 2.0, 'a': 1.0, '2': 1.0, 'great': 1.0, 'for': 1.0, 'my': 1.0, 'i': 1.0, 'purchase': 1.0, 'purchased': 1.0}
Word element => {'use': 1.0, 'ever': 1.0, 'll': 1.0, 'ones': 1.0, 'are': 1.0, 'they': 1.0, 'ivory': 1.0, 'beautifully': 1.0, 'dries': 1.0, 'money': 1.0, 'had': 1.0, 'was': 2.0, 'to': 1.0, 'that': 1.0, 'piling': 1.0, 'disappointed': 1.0, 'i': 6.0, 'tried': 1.0, 'shrinking': 1.0, 'sheets': 1.0, 'another': 1.0, 'my': 1.0, 'both': 2.0, 'washes': 1.0, 'graco': 1.0, 'horribly': 1.0, 'only': 1.0, 'pack': 2.0, 'have': 1.0, 'with': 1.0, 'wasted': 1.0, 'it': 1.0, 'carter': 1.0, 'and': 10.0, 'play': 2.0, 'back': 1.0, 'sage': 1.0, 'no': 2.0, 'annoyed': 1.0, 'is': 1.0, 'really': 1.0, 'perfect': 1.0, 'this': 1.0, 'soft': 1.0, 'pleased': 1.0, 'again': 1.0, 'gives': 1.0, 's': 1.0, 'a': 2.0, 'fit': 1.0, 'for': 1.0, 'color': 1.0, 'one': 1.0, 'so': 1.0, 'order': 1.0, 'came': 1.0, 'the': 3.0}
Word element => {'have': 1.0, 'let': 1.0, 'happen': 1.0, 'help': 1.0, 'way': 1.0, 'sweet': 1.0, 'safe': 1.0, 'mean': 1.0, 'not': 1.0, 's': 1.0, 'i': 1.0, 'wore': 1.0, 'part': 1.0, 'tail': 1.0, 'tucked': 1.0, 'rides': 1.0, 'being': 1.0, 'mind': 1.0, 'didn': 1.0, 'overall': 1.0, 'be': 2.0, 'for': 1.0, 'when': 1.0, 'times': 1.0, 'that': 3.0, 'hurt': 1.0, 'idea': 1.0, 'get': 2.0, 'backpack': 3.0, 'and': 8.0, 'play': 1.0, 'would': 1.0, 'today': 1.0, 'taking': 1.0, 'us': 2.0, 'who': 2.0, 'amusement': 1.0, 'into': 1.0, 'afraid': 1.0, 'where': 1.0, 'take': 1.0, 'we': 9.0, 'go': 1.0, 'a': 8.0, 't': 2.0, 'on': 4.0, 'leash': 1.0, 'bit': 2.0, 'he': 8.0, 'think': 1.0, 'definitely': 1.0, 'parent': 2.0, 'indicative': 1.0, 'knowing': 1.0, 'my': 1.0, 'another': 2.0, 'family': 1.0, 'to': 6.0, 'how': 1.0, 'our': 1.0, 'as': 3.0, 'was': 6.0, 'husband': 1.0, 'asked': 2.0, 'fact': 1.0, 'old': 1.0, 'gave': 1.0, 'felt': 1.0, 'simply': 1.0, 'cruel': 1.0, 'just': 2.0, 'they': 1.0, '2': 1.0, 'but': 1.0, 'always': 1.0, 'the': 6.0, 'of': 3.0, 'park': 2.0, 'were': 6.0, 'or': 2.0, 'almost': 1.0, 'his': 1.0, 'son': 1.0, 'worse': 1.0, 'this': 2.0, 'toy': 1.0, 'with': 1.0, 'before': 1.0, 'using': 2.0, 'version': 1.0, 'loved': 1.0, 'getting': 1.0, 'did': 1.0, 'hoped': 1.0, 'worked': 1.0, 'exactly': 1.0, 'type': 1.0, 'had': 2.0, 'product': 1.0, 'year': 1.0, 'commented': 1.0, 'him': 3.0, 'it': 9.0, 'thought': 1.0, 'while': 3.0, 'fun': 2.0, 'from': 1.0, 'out': 1.0, 'independence': 1.0, 'at': 2.0, 'is': 2.0, 'comforted': 1.0, 'inadequate': 1.0, 'couldn': 1.0, 'off': 2.0, 'own': 1.0, 'see': 1.0, 'away': 1.0, 'other': 1.0, 'really': 1.0, 'families': 1.0, 'in': 1.0, 'cute': 1.0, 'too': 2.0, 'one': 1.0, 'find': 1.0, 'great': 1.0, 'there': 1.0}
Word element => {'use': 1.0, 'that': 1.0, 'notices': 1.0, 'to': 1.0, 'barely': 1.0, 'him': 1.0, 'can': 1.0, 'it': 2.0, 'my': 1.0, 'i': 1.0, 'wearing': 1.0, 'uses': 1.0, 'close': 1.0, 'a': 1.0, 'as': 1.0, 'animal': 1.0, 'son': 1.0, 'cuddling': 1.0, 'stuffed': 1.0, 'keep': 1.0, 'he': 2.0, 'this': 1.0, 'loves': 1.0}
Word element => {'backpack': 1.0, 'paying': 1.0, 'just': 1.0, 'because': 1.0, 'harness': 1.0, 'attention': 2.0, 'pay': 1.0, 'even': 1.0, 'doesn': 1.0, 'likes': 1.0, 'really': 1.0, 'friend': 1.0, 'best': 1.0, 'away': 1.0, 'run': 1.0, 'her': 1.0, 'actually': 1.0, 'for': 1.0, 'been': 1.0, 'little': 1.0, 'would': 1.0, 'wow': 1.0, 'had': 1.0, 'hadn': 1.0, 'if': 1.0, 'long': 1.0, 'teddy': 1.0, 'used': 1.0, 'stressed': 1.0, 'were': 1.0, 'have': 1.0, 'go': 1.0, 'a': 2.0, 'we': 5.0, 't': 2.0, 'the': 3.0, 'with': 1.0, 'when': 1.0, 'traveling': 1.0, 'is': 3.0, 'people': 1.0, 'and': 3.0, 'layover': 1.0, 'of': 2.0, 'this': 4.0, 'perfect': 1.0, 'in': 2.0, 'during': 1.0, 'kept': 1.0, 'one': 1.0, 'opportunity': 1.0, 'part': 1.0, 'looked': 1.0, 'from': 1.0, 'running': 1.0, 'off': 1.0, 'it': 3.0, 'she': 4.0, 'since': 1.0, 'lot': 1.0, 'cute': 1.0, 'process': 1.0, 'then': 1.0, 'to': 3.0, 'our': 2.0, 'any': 1.0, 'time': 1.0, 'public': 1.0}
Word element => {'him': 1.0, 'chasing': 1.0, 'after': 1.0, 'so': 1.0, 'before': 1.0, 'works': 1.0, 'great': 1.0, 'gave': 1.0, 'i': 1.0, 'idea': 1.0, 'and': 2.0, 'cute': 1.0, 'wherever': 1.0, 'a': 1.0, 'exhausted': 1.0, 'is': 1.0, 'son': 1.0, 'can': 1.0, 'leash': 1.0, 'he': 1.0, 'it': 2.0, 'this': 1.0, 'now': 1.0, 'to': 1.0, 'my': 1.0, 'track': 1.0, 'friend': 1.0, 'they': 2.0, 'were': 1.0, 'their': 1.0, 'goes': 1.0, 'energetic': 1.0}
Word element => {'young': 1.0, 'pretty': 1.0, 'straps': 1.0, 'slip': 1.0, 'although': 1.0, 'through': 1.0, 'adventurous': 1.0, 'recommend': 1.0, 'overall': 1.0, 'things': 1.0, 'other': 1.0, 'me': 1.0, 'parent': 1.0, 'legs': 1.0, 'or': 2.0, 'yet': 1.0, 'stroller': 1.0, 'in': 1.0, 'be': 1.0, 'refuses': 1.0, 'person': 1.0, 'missing': 1.0, 'panic': 1.0, 'have': 2.0, 'view': 1.0, 'of': 4.0, 'for': 1.0, 'where': 1.0, 'daughter': 3.0, 'that': 4.0, 'course': 1.0, 'back': 1.0, 'herself': 2.0, 'put': 1.0, 'on': 3.0, 'wander': 1.0, 'complicates': 1.0, 'ends': 1.0, 'feel': 1.0, 'excited': 1.0, 'ground': 1.0, 'mos': 1.0, 'full': 1.0, 'this': 1.0, 'my': 7.0, 'the': 7.0, 'maybe': 1.0, 'because': 2.0, 'does': 1.0, 'her': 2.0, 'arms': 2.0, 'both': 1.0, 'it': 5.0, 'she': 6.0, 'easily': 1.0, 'when': 1.0, 'bear': 1.0, 'simplifies': 1.0, 'a': 2.0, 'could': 1.0, 't': 1.0, 's': 4.0, 'like': 1.0, 'hold': 1.0, 'and': 3.0, 'soon': 1.0, 'winds': 1.0, '18': 1.0, 'leash': 1.0, 'so': 2.0, 'throws': 2.0, 'floor': 1.0, 'to': 4.0, 'as': 2.0, 'trips': 1.0, 'realizes': 1.0, 'out': 1.0, 'keeping': 1.0, 'become': 1.0, 'i': 4.0, 'shoulder': 1.0, 'but': 2.0, 'can': 2.0, 'honestly': 1.0, 'around': 1.0, 'is': 1.0, 'say': 1.0, 'only': 1.0, 'harness': 1.0, 'life': 1.0, 'wandering': 1.0, 'finally': 1.0, 'up': 1.0, 'child': 2.0, 'don': 1.0}
Word element => {'a': 1.0, 's': 1.0, 'word': 1.0, 'in': 1.0, 'although': 1.0, 'back': 1.0, 'on': 1.0, 'anything': 1.0, 'like': 1.0, 'her': 1.0, 'his': 1.0, 'does': 1.0, 'safety': 1.0, 'daughter': 1.0, 'm': 1.0, 'not': 1.0, 'carrying': 1.0, 'didn': 1.0, 'twin': 1.0, 'yr': 2.0, 'glad': 1.0, 'and': 2.0, 'sons': 2.0, '1': 1.0, '6': 1.0, 'of': 1.0, 'around': 1.0, 'have': 1.0, 'loves': 2.0, 'other': 1.0, 'simply': 1.0, 'cute': 1.0, 'found': 1.0, 'for': 1.0, 'one': 2.0, 'buy': 1.0, 'i': 4.0, 'old': 2.0, 'product': 2.0, 'my': 2.0, 't': 1.0, 'the': 1.0, 'this': 1.0, 'it': 4.0}
Word element => {'would': 1.0, 'leash': 1.0, 'out': 2.0, 'loose': 1.0, 'shopping': 1.0, 'enough': 2.0, 'were': 1.0, 'we': 4.0, 's': 2.0, 'flash': 1.0, 'ones': 1.0, 'the': 4.0, 'store': 2.0, 'all': 2.0, 'home': 1.0, 'goes': 1.0, 'tried': 1.0, 'checkout': 1.0, 'click': 1.0, 'old': 1.0, 'i': 5.0, 'two': 1.0, 'while': 1.0, 'year': 1.0, 'awesome': 1.0, 'in': 4.0, 'place': 1.0, 'search': 1.0, 'not': 1.0, 'this': 1.0, 'and': 6.0, '1': 1.0, 'great': 1.0, 'have': 1.0, 'running': 1.0, 'went': 1.0, 'me': 1.0, 'my': 1.0, 'puppy': 1.0, 'bought': 2.0, 'harness': 2.0, 'soft': 1.0, 'works': 1.0, 'do': 1.0, 'he': 3.0, 'there': 1.0, 'it': 9.0, 'him': 3.0, 'a': 8.0, 'small': 1.0, 'after': 1.0, 'no': 1.0, 'thing': 1.0, 'set': 1.0, 'luckily': 1.0, 're': 1.0, 'fully': 1.0, 'down': 1.0, 'only': 2.0, 'paid': 1.0, 'comes': 1.0, 'at': 3.0, 'is': 1.0, 'his': 1.0, 'around': 1.0, 'you': 1.0, 'belts': 1.0, 'into': 1.0, 'like': 2.0, 'from': 1.0, 'scared': 1.0, 'accessory': 1.0, 'on': 3.0, 'vest': 1.0, 'wears': 1.0, 'light': 1.0, 'bother': 1.0, 'backpack': 1.0, 'sparingly': 1.0, 'wild': 1.0, 'was': 1.0, 'thinks': 1.0, 'crawling': 1.0, 'wanted': 1.0, 'to': 4.0, 'straight': 1.0, 'pretty': 1.0, 'with': 1.0, 'assembled': 1.0, 'new': 1.0, 'use': 2.0, 'are': 1.0, 'gone': 1.0, 'carts': 1.0, 'for': 1.0, 'when': 1.0, 'sit': 1.0, 'but': 1.0, 'though': 1.0, 'please': 1.0, 'if': 1.0}
Word element => {'though': 1.0, 'recommend': 1.0, 'don': 1.0, 'i': 1.0, 'parks': 1.0, 'at': 1.0, 'notice': 1.0, 'was': 1.0, 'to': 2.0, 'moments': 1.0, 'a': 1.0, 't': 1.0, 'the': 2.0, 'theme': 1.0, 'find': 1.0, 'type': 1.0, 'is': 1.0, 'take': 1.0, '2yo': 1.0, 'our': 1.0, 'so': 1.0, 'nice': 1.0, 'overusing': 1.0, 'it': 2.0, 'this': 1.0, 'in': 1.0, 'airport': 1.0, 'mall': 1.0, 'off': 1.0, 'indespensible': 1.0, 'or': 1.0}
Word element => {'spent': 1.0, 'language': 1.0, 'same': 1.0, 'place': 1.0, 'lost': 1.0, 'than': 1.0, 'way': 1.0, 'them': 1.0, 'my': 1.0, 'using': 1.0, 'negatively': 1.0, 'comment': 1.0, 'a': 7.0, 't': 3.0, 'hunting': 1.0, 'we': 2.0, 'go': 1.0, 'bear': 1.0, 'when': 1.0, 'in': 3.0, 'mind': 1.0, 'ignore': 1.0, 'this': 2.0, 'truely': 1.0, 'home': 1.0, 'panic': 1.0, 'who': 3.0, 'keep': 1.0, 'here': 1.0, 'be': 3.0, 'around': 2.0, 'at': 4.0, 'is': 4.0, 'annoyed': 1.0, 'to': 6.0, 'as': 1.0, 'our': 1.0, 'thinks': 1.0, 'old': 1.0, 'fact': 1.0, 'eventually': 1.0, 'doesn': 1.0, 'all': 2.0, 'an': 1.0, 'great': 1.0, 'of': 5.0, 'the': 10.0, '2': 2.0, 'malls': 1.0, 'for': 5.0, 'overseas': 1.0, 'where': 2.0, 'control': 1.0, 'grandparents': 1.0, 'openly': 1.0, 'speak': 1.0, 'him': 2.0, 'it': 7.0, 'have': 3.0, 'used': 1.0, 'independent': 1.0, 'exceptionally': 1.0, 'strong': 1.0, 'better': 1.0, 'think': 1.0, 'money': 1.0, 'bought': 1.0, 'willed': 1.0, 'foreign': 1.0, 'parents': 1.0, 'been': 1.0, 'that': 1.0, 'trip': 1.0, 'and': 6.0, 'getting': 1.0, 'would': 1.0, 'flipside': 1.0, 'new': 1.0, 'time': 1.0, 'coin': 1.0, 'does': 1.0, 'not': 1.0, 'those': 1.0, 'being': 1.0, 'you': 3.0, 'able': 2.0, 'wants': 1.0, 'found': 1.0, 'however': 1.0, 'friend': 1.0, '1': 1.0, 'outweigh': 1.0, 'get': 1.0, 'bonuses': 1.0, 'negatives': 1.0, 'well': 2.0, 'i': 1.0, 'undo': 1.0, 'don': 2.0, 'over': 1.0, 'year': 1.0, 'child': 2.0, 'will': 1.0, 'on': 1.0, 'long': 2.0, 'he': 4.0, 'yet': 1.0, 'tail': 1.0, 'worst': 1.0, 'definately': 1.0, 'follows': 1.0, 'enough': 1.0, 'touch': 1.0, 'part': 1.0, 'mainly': 1.0, 'advice': 1.0, 'sense': 1.0, 'nosey': 1.0}
Word element => {'intelligently': 1.0, 'designed': 1.0, 'but': 1.0, 'idea': 1.0, 'fasteners': 1.0, 'no': 1.0, 'their': 1.0, 'wear': 1.0, 'loved': 1.0, 'cousin': 1.0, 'keep': 1.0, 'version': 1.0, 'have': 1.0, 'pregnant': 1.0, 'open': 1.0, 'work': 1.0, 'having': 1.0, 's': 2.0, 'we': 4.0, 'a': 2.0, 'than': 1.0, 'way': 2.0, 'really': 1.0, 'at': 1.0, 'is': 2.0, 'and': 4.0, 'bear': 1.0, 'when': 2.0, 'son': 2.0, 'under': 1.0, 'from': 1.0, 'help': 1.0, 'up': 1.0, 'stay': 1.0, 'not': 2.0, 'those': 1.0, 'us': 2.0, 'able': 1.0, 'taking': 1.0, 'of': 4.0, 'the': 10.0, 're': 1.0, 'parent': 1.0, 'my': 5.0, 'product': 3.0, 'for': 1.0, 'bought': 1.0, 'too': 2.0, 'one': 1.0, 'nice': 1.0, 'little': 3.0, 'access': 1.0, 'would': 3.0, 'boy': 1.0, 'can': 3.0, 'so': 1.0, 'excited': 1.0, 'faster': 1.0, 'this': 2.0, 'he': 3.0, 'with': 4.0, 'was': 2.0, 'husband': 1.0, 'to': 5.0, 'backpacks': 1.0, 'body': 1.0, 'as': 1.0, 'stroller': 1.0, 'how': 1.0, 'our': 1.0, 'now': 1.0, 'out': 2.0, 'escape': 2.0, 'got': 1.0, 'his': 1.0, 'however': 1.0, 'harness': 2.0, 'only': 1.0, 'home': 1.0, 'i': 3.0, 'looking': 1.0, 'design': 2.0, 'realized': 1.0, 'easily': 2.0, 'that': 3.0, 'buckles': 3.0, 'front': 2.0, 'knows': 1.0, 'kinds': 1.0, 'be': 2.0, 'many': 1.0, 'other': 1.0, 'flash': 1.0, 'children': 1.0, 'in': 4.0, 'm': 1.0, 'sure': 1.0, 'backpack': 1.0, 'there': 1.0, 'back': 2.0, 'them': 1.0, 'boys': 1.0, 'are': 1.0, 'getting': 1.0}
Word element => {'pocket': 1.0, 'information': 1.0, 'back': 2.0, 'feeling': 1.0, 'like': 1.0, 'pillow': 1.0, 'stuffy': 1.0, 'the': 1.0, 'without': 1.0, 'sit': 1.0, 'mind': 1.0, 'of': 1.0, 'once': 1.0, 'can': 1.0, 'but': 1.0, 'thing': 1.0, 'in': 1.0, 'me': 1.0, 'and': 1.0, 'get': 1.0, 'chair': 1.0, 'strapped': 1.0, 'helps': 1.0, 'keeping': 1.0, 'then': 1.0, 'if': 1.0, 'buy': 1.0, 'i': 3.0, 'you': 2.0, 't': 1.0, 'a': 4.0, 'mine': 1.0, 'chance': 1.0, 'roller': 1.0, 'have': 1.0, 'toddler': 1.0, 'it': 3.0, 'she': 4.0, 'off': 1.0, 'wander': 1.0, 'any': 1.0, 'to': 5.0, 'had': 2.0, 'doesn': 1.0, 'was': 1.0, 'this': 2.0, 'getss': 1.0, 'keep': 1.0, 'who': 1.0, 'lot': 1.0, 'at': 1.0, 'carry': 1.0, 'identification': 1.0, 'blessing': 1.0, 'airports': 1.0, 'by': 1.0, 'my': 2.0, 'side': 1.0, 'is': 2.0, 'travel': 1.0, 'should': 1.0, 'recently': 1.0, 'bag': 1.0, 'her': 4.0, 'carseat': 1.0, 'harness': 2.0, 'likes': 1.0, 'buddy': 2.0, 'on': 4.0, 'seem': 1.0, 'difficult': 1.0}
Word element => {'first': 1.0, 'in': 1.0, 'harnessing': 1.0, 'nutcase': 1.0, 'of': 1.0, 'some': 1.0, 'm': 1.0, 'like': 1.0, 'me': 1.0, 'at': 1.0, 'most': 1.0, 'bear': 1.0, 'year': 1.0, 'almost': 1.0, 'a': 1.0, 'stairs': 1.0, 'visit': 1.0, 'two': 1.0, 'i': 3.0, 'one': 1.0, 'sprints': 1.0, 'mall': 1.0, 'keeps': 1.0, 'design': 1.0, 'versus': 1.0, 'difference': 1.0, 'and': 1.0, 'with': 1.0, 'my': 1.0, 'place': 1.0, 'the': 6.0, 'an': 1.0, 'quality': 1.0, 'dangerous': 1.0, 'old': 1.0, 'makes': 2.0, 'time': 1.0, 'between': 1.0, 'from': 1.0, 'wearing': 1.0, 'enjoyable': 1.0, 'passersby': 1.0, 'objects': 1.0, 'this': 1.0, 'soft': 1.0, 'folks': 1.0, 'love': 1.0, 'for': 2.0, 'product': 1.0, 'where': 1.0, 'as': 1.0, 'to': 1.0, 'our': 1.0, 'toddler': 1.0, 'chasing': 1.0, 'her': 2.0, 'it': 1.0, 'she': 1.0, 'staring': 1.0, 'comfortable': 1.0, 'spend': 1.0, 'pass': 1.0, 'kind': 1.0, 'backpack': 1.0, 'granddaughter': 1.0, 'harness': 1.0, 'darling': 1.0}
Word element => {'of': 1.0, 'couple': 1.0, 'us': 1.0, 'taking': 1.0, 're': 1.0, 'vacation': 1.0, 'he': 1.0, 'recieving': 1.0, 'then': 1.0, 'on': 1.0, 'put': 1.0, 'desired': 1.0, 'him': 1.0, 'be': 1.0, 'sheet': 1.0, 'so': 3.0, 'd': 1.0, 'folds': 1.0, 'small': 1.0, 'we': 2.0, 'a': 6.0, '15': 1.0, 'awesome': 1.0, 'loves': 1.0, 'that': 2.0, 'and': 4.0, 'bedroom': 1.0, 'room': 1.0, 'apart': 1.0, 'in': 2.0, 'when': 1.0, 'baby': 1.0, 'first': 1.0, 'weeks': 1.0, 'leaves': 1.0, 'older': 1.0, 'thick': 1.0, 'loud': 1.0, 'it': 3.0, 'much': 1.0, 'only': 1.0, 'bed': 2.0, 'months': 1.0, 'one': 2.0, 'share': 1.0, 'for': 1.0, 'naptime': 1.0, 'around': 1.0, 'is': 4.0, 'padding': 1.0, 'blanket': 2.0, 'are': 1.0, 'tight': 1.0, 'my': 4.0, 'i': 3.0, 'kids': 1.0, 'this': 2.0, 'wish': 1.0, 'had': 1.0, 'at': 1.0, 'set': 1.0, 'up': 2.0, 'with': 1.0, 'drawback': 1.0, 'under': 1.0, 'son': 1.0, 'has': 1.0, 'quiet': 1.0, 'the': 3.0, 'place': 1.0, 'as': 1.0, 'to': 2.0, 'sleep': 1.0, 'wrapped': 1.0, 'light': 1.0}
Word element => {'laptop': 1.0, 'widescreen': 1.0, 'room': 1.0, 'up': 1.0, 'my': 2.0, 'we': 1.0, 'nap': 1.0, 'her': 2.0, 'soccer': 1.0, 'even': 1.0, 'less': 1.0, 'home': 1.0, 'at': 1.0, 'bed': 1.0, 'she': 2.0, 'it': 3.0, 'this': 1.0, 'just': 1.0, 'use': 1.0, 'games': 1.0, 'i': 1.0, 'took': 2.0, 'that': 1.0, 'vacation': 1.0, 'take': 2.0, 'suitcase': 1.0, 'the': 2.0, 'have': 1.0, 'everywhere': 1.0, 'on': 1.0, 'naps': 1.0, 'tent': 1.0, 'beach': 1.0, 'and': 2.0, 'get': 1.0, 'sun': 1.0, 'stick': 1.0, 'now': 1.0, 'to': 1.0, 'can': 1.0, 'willing': 1.0, 'right': 1.0, 'out': 1.0, 'more': 1.0, 'is': 1.0, 'than': 2.0, 'in': 2.0, 'there': 1.0, 'inside': 1.0, 'bottom': 1.0, 'camping': 1.0, 'of': 1.0, 'for': 2.0, 'fit': 1.0}
Word element => {'lot': 1.0, 'use': 1.0, 'will': 1.0, 'we': 1.0, 'sure': 1.0, 'm': 1.0, 'out': 1.0, 'and': 1.0, 'came': 1.0, 'box': 1.0, 'have': 1.0, 'item': 1.0, 'misunderstood': 1.0, 'big': 1.0, 'must': 1.0, 'bed': 1.0, 'quickly': 1.0, 'no': 2.0, 'travel': 1.0, 'that': 1.0, 'is': 1.0, 'this': 1.0, 'it': 3.0, 'with': 1.0, 'figured': 1.0, 'great': 1.0, 'the': 1.0, 'was': 1.0, 'a': 3.0, 'used': 1.0, 'in': 1.0, 'though': 2.0, 'received': 1.0, 'i': 4.0, 'packaging': 1.0, 'instructions': 1.0}
Word element => {'need': 1.0, 'what': 1.0, 'exactly': 1.0, 'does': 1.0, 'useful': 1.0, 'great': 1.0, 'under': 1.0, 'pocket': 1.0, 'goes': 1.0, 'front': 1.0, 'is': 2.0, 'put': 1.0, 'stuff': 1.0, 'second': 1.0, 'that': 2.0, 'protector': 1.0, 'has': 1.0, 'i': 3.0, 'and': 4.0, 'getting': 1.0, 'very': 2.0, 'from': 2.0, 'leather': 1.0, 'my': 1.0, 'hangs': 1.0, 'seats': 1.0, 'this': 2.0, 'it': 2.0, 'durable': 1.0, 'seat': 4.0, 'to': 3.0, 'booster': 1.0, 'over': 1.0, 'bought': 1.0, 'one': 1.0, 'a': 3.0, 's': 1.0, 'thick': 1.0, 'the': 5.0, 'place': 1.0, 'keeps': 1.0, 'wide': 1.0, 'carseat': 2.0, 'flap': 1.0, 'sliding': 1.0, 'there': 1.0, 'in': 1.0, 'through': 1.0, 'for': 1.0, 'where': 1.0, 'price': 1.0, 'protect': 1.0, 'm': 1.0, 'folds': 1.0, 'also': 1.0, 'secure': 1.0}
Word element => {'all': 1.0, 'at': 1.0, 'recommend': 1.0, 'baby': 1.0, 'not': 1.0, 'seat': 1.0, 'way': 1.0, 'product': 1.0, 'it': 2.0, 'this': 1.0, 'with': 1.0, 'in': 1.0, 'disappointed': 1.0, 'thin': 1.0, 'considering': 1.0, 'too': 1.0, 'to': 1.0, 'was': 1.0, 'protect': 1.0, 'found': 1.0, 'i': 2.0, 'and': 2.0, 'flimsy': 1.0, 'really': 1.0, 'of': 1.0, 'my': 1.0, 'the': 3.0, 'backseat': 1.0, 'would': 1.0, 'weight': 1.0, 'car': 1.0}
Word element => {'great': 1.0, 'held': 1.0, 'to': 1.0, 'out': 1.0, 'have': 1.0, 'pull': 1.0, 'then': 1.0, 'up': 1.0, 'dry': 1.0, 'and': 2.0, 'they': 1.0, 'these': 1.0, 'bibs': 1.0, 'them': 2.0, 'are': 1.0, 'especially': 1.0, 'air': 1.0, 'awesome': 1.0, 'for': 1.0, 'teething': 1.0, 'wash': 1.0, 'babies': 1.0, 'i': 1.0}
Word element => {'wash': 1.0, 'make': 1.0, 'are': 1.0, 'reviewers': 1.0, 'the': 3.0, 'these': 1.0, 'said': 1.0, 'before': 1.0, 'sure': 1.0, 'stick': 1.0, 'other': 2.0, 'during': 1.0, 'awesome': 1.0, 'like': 1.0, 'bibs': 1.0, 'otherwise': 1.0, 'you': 1.0, 'it': 1.0, 'velcro': 1.0, 'close': 1.0, 'washing': 1.0, 'will': 1.0, 'to': 1.0, 'clothing': 1.0}
Word element => {'matches': 1.0, 'house': 1.0, 'take': 1.0, 'we': 1.0, 'when': 1.0, 'light': 1.0, 'out': 1.0, 'wardrobe': 1.0, 'wild': 1.0, 'those': 1.0, 'girl': 1.0, 'but': 1.0, 'outfits': 1.0, 'think': 1.0, 'might': 1.0, 'able': 1.0, 'you': 2.0, 'great': 1.0, 'only': 1.0, 'last': 1.0, 'good': 1.0, 'her': 4.0, 'pink': 1.0, 'aren': 1.0, 'they': 4.0, 'to': 7.0, 'all': 2.0, 'now': 2.0, 'tips': 1.0, 'know': 1.0, 'like': 2.0, 'just': 2.0, 'by': 1.0, 'on': 3.0, 'under': 1.0, 'match': 1.0, 'much': 1.0, 'do': 1.0, 'neck': 2.0, 'my': 3.0, 'another': 1.0, 'around': 2.0, 'is': 4.0, 'way': 1.0, 'can': 1.0, 'so': 5.0, 'problem': 1.0, 'for': 2.0, 'bibs': 3.0, 'colors': 2.0, 'white': 1.0, 'rough': 1.0, 'clash': 1.0, 'product': 1.0, 'price': 1.0, 'value': 1.0, 'a': 3.0, 't': 3.0, 'going': 2.0, 'go': 1.0, 'newborns': 1.0, 'them': 3.0, 'clothes': 1.0, 'she': 1.0, 'many': 1.0, 'm': 2.0, 'in': 2.0, 'having': 1.0, 'mouth': 1.0, 'does': 2.0, 'velcro': 1.0, 'this': 1.0, 'wish': 1.0, 'of': 6.0, 'longer': 2.0, 'the': 9.0, 'reserve': 1.0, 'i': 9.0, 'also': 1.0, 'us': 1.0, 'these': 2.0, 'some': 1.0, 'trouble': 1.0, 'get': 1.0, 'getting': 1.0, 'would': 3.0, 'skin': 2.0, 'not': 5.0, 'have': 4.0, 'and': 4.0, 'lot': 1.0, 'too': 1.0, 'straps': 1.0, 'buy': 1.0, 'bought': 1.0, 'waterproof': 1.0, 'set': 1.0, 'additionally': 1.0, 'are': 1.0, 'very': 1.0, 'don': 1.0, 'make': 1.0, 'sound': 1.0, 'personally': 1.0, 'even': 1.0, 'wouldn': 1.0, 'were': 1.0, 'wiping': 1.0, 'with': 1.0, 'already': 1.0, 'it': 5.0, 'seems': 1.0, 'soft': 1.0, 'rubbed': 1.0, 'be': 3.0, 'want': 1.0, 'still': 1.0, 'turn': 1.0, 'if': 1.0, 'll': 1.0, 'right': 1.0, 'true': 1.0, 'because': 2.0, 'that': 3.0, 'liquid': 1.0, 'crinkly': 1.0, 'through': 1.0, 'little': 1.0, 'nice': 1.0}
Word element => {'older': 1.0, 'gets': 1.0, 'more': 1.0, 'will': 1.0, 'enough': 1.0, 'like': 1.0, 'rest': 1.0, 'size': 2.0, 'same': 1.0, 'are': 1.0, 'use': 1.0, 'stained': 1.0, 'learns': 1.0, 'she': 3.0, 'certainly': 1.0, 'baby': 1.0, 'them': 1.0, 'sippy': 1.0, 'clothes': 1.0, 'my': 1.0, 'cup': 1.0, 'well': 2.0, 'protect': 1.0, 'i': 4.0, 'daughter': 1.0, 'for': 1.0, 'buy': 1.0, 'looking': 1.0, 'bibs': 3.0, 'absorbent': 1.0, 'soft': 1.0, 'larger': 2.0, 'into': 1.0, 'that': 2.0, 'was': 2.0, 'in': 1.0, 'hoping': 1.0, 'would': 2.0, 'be': 2.0, 'very': 1.0, 'from': 1.0, 'and': 2.0, 'do': 1.0, 'these': 3.0, 'could': 1.0, 's': 1.0, 'a': 1.0, 't': 1.0, 'the': 4.0, 'job': 1.0, 'they': 2.0, 'wash': 1.0, 'haven': 1.0, 'grow': 1.0, 'to': 1.0, 'as': 3.0, 'any': 1.0, 'of': 2.0, 'her': 3.0, 'but': 2.0, 'food': 1.0, 'so': 1.0, 'spills': 1.0, 'than': 1.0, 'current': 1.0}
Word element => {'a': 1.0, 'quality': 1.0, 'match': 1.0, 'price': 1.0, 'colors': 1.0, 'variety': 1.0, '3': 1.0, 'i': 1.0, 'absorbant': 1.0, 'clothing': 1.0, 'outfit': 1.0, 'is': 2.0, 'really': 1.0, 'nice': 1.0, 'protecting': 1.0, 'are': 2.0, 'that': 1.0, 'of': 2.0, '34': 2.0, 'bibs': 2.0, 'great': 2.0, '2': 1.0, 'the': 1.0, 'these': 2.0, 'every': 1.0, 'layer': 1.0, 'quiet': 1.0, 'just': 1.0, 'size': 1.0, 'right': 1.0, 'love': 1.0, 'for': 2.0, '1': 1.0, 'and': 1.0}
Word element => {'my': 1.0, 'on': 1.0, 'lie': 1.0, 'so': 1.0, 'dryer': 1.0, 'shrink': 1.0, 'outside': 1.0, 'flat': 1.0, 'in': 1.0, 'wash': 1.0, 'also': 1.0, 'to': 1.0, 'thick': 1.0, 'being': 1.0, 'bibs': 1.0, 'have': 1.0, 't': 1.0, 'the': 2.0, 'great': 1.0, 'these': 1.0, 'piping': 1.0, 'they': 3.0, 'set': 1.0, 'of': 2.0, 'stiff': 1.0, 'second': 1.0, 'a': 1.0, 'them': 1.0, 'ordered': 1.0, 'i': 1.0, 'monogrammed': 1.0, 'for': 1.0, 'baby': 2.0, 'just': 1.0, 'because': 1.0, 'doesn': 1.0, 'gifts': 1.0, 'are': 1.0, 'waterproof': 1.0, 'plastic': 1.0, 'without': 1.0}
Word element => {'exact': 1.0, 'carter': 1.0, 'match': 2.0, 'find': 1.0, 'i': 2.0, 'standpoint': 1.0, 'other': 1.0, 'so': 1.0, 'washing': 1.0, 'before': 1.0, 'fasten': 1.0, 'sure': 1.0, 'from': 2.0, 'my': 1.0, 'save': 1.0, 'completely': 1.0, 'is': 1.0, 'you': 1.0, '11': 1.0, 'collect': 1.0, 'colors': 2.0, 'help': 1.0, 'the': 6.0, 'these': 1.0, 'all': 1.0, 'to': 3.0, 'our': 1.0, 'can': 1.0, 'but': 1.0, 'an': 2.0, 'been': 1.0, 'old': 1.0, 'daughter': 2.0, 'washes': 1.0, 'has': 1.0, 'they': 3.0, 'using': 1.0, 'love': 1.0, 'for': 1.0, 'them': 1.0, 'clothes': 3.0, 'her': 1.0, 'really': 1.0, 'bibs': 1.0, 'stuff': 1.0, 'your': 1.0, 'make': 1.0, 'strong': 1.0, 'absorbent': 1.0, 'thin': 1.0, 'and': 2.0, 'comfy': 1.0, 'beginning': 1.0, 'bib': 1.0, 'since': 1.0, 's': 2.0, 't': 1.0, 'going': 1.0, 'a': 3.0, 'occasional': 1.0, 'also': 1.0, 'spit': 1.0, 'ton': 1.0, 'don': 1.0, 'nearly': 3.0, 'up': 1.0, 'of': 2.0, 'are': 3.0, 'superficial': 1.0, 'enough': 1.0, 'especially': 2.0, 'be': 1.0, 'week': 1.0, 'infant': 1.0, 'wreck': 1.0, 'soft': 1.0, 'drool': 1.0, 'after': 1.0, 'velcro': 1.0}
Word element => {'again': 1.0, 'get': 1.0, 'would': 1.0, 'i': 1.0, 'overall': 1.0, 'course': 1.0, 'tried': 1.0, 'the': 1.0, 'than': 1.0, 'are': 1.0, 'spits': 1.0, 'other': 1.0, 'runs': 1.0, 'better': 1.0, 'they': 3.0, 'needed': 1.0, 'but': 1.0, 'aren': 1.0, 'definitely': 1.0, 'waterproof': 1.0, 'perfect': 1.0, 'soft': 1.0, 'really': 1.0, 'bibs': 2.0, 'stuff': 1.0, 'absorbent': 1.0, 'that': 1.0, 'were': 1.0, 'still': 3.0, 'do': 1.0, 'soak': 2.0, 'our': 1.0, 'to': 1.0, 'up': 2.0, 'absorbed': 1.0, 'of': 1.0, 't': 1.0, 'we': 2.0, 'a': 2.0, 'just': 1.0, 'lot': 2.0, 'at': 1.0, 'these': 2.0, 'some': 1.0, 'point': 1.0, 'though': 1.0, 'through': 1.0, 'down': 1.0, 'baby': 1.0, 'them': 1.0, 'and': 2.0, 'too': 1.0, 'fast': 1.0, 'be': 1.0}
Word element => {'scratches': 1.0, 'have': 1.0, 'longer': 1.0, 'no': 1.0, 'however': 1.0, 'few': 2.0, 'bib': 1.0, 'wears': 1.0, 'waterproof': 1.0, 'of': 2.0, 'up': 1.0, 'snap': 1.0, 'portion': 1.0, 'bibs': 1.0, 'the': 6.0, 'great': 1.0, 'these': 1.0, 'are': 2.0, 'actually': 1.0, 'they': 1.0, 'washes': 1.0, 'and': 5.0, 'vibrant': 1.0, 'velcro': 1.0, 'skin': 1.0, 'covers': 1.0, 'it': 2.0, 'stopped': 1.0, 'that': 1.0, 'colors': 1.0, 'anais': 1.0, 'after': 2.0, 'ends': 1.0, 'months': 1.0, 'scratching': 1.0, 'back': 1.0, 'my': 1.0, 'we': 1.0, 'a': 2.0, 'rubs': 1.0, 's': 1.0, 'neck': 1.0, 'against': 1.0, 'as': 1.0, 'fabric': 1.0, 'her': 1.0, 'i': 1.0, 'using': 2.0, 'baby': 1.0, 'started': 1.0, 'thin': 1.0, 'aden': 1.0}
Word element => {'purchased': 1.0, 'have': 1.0, 'cause': 1.0, 'bibs': 1.0, 'of': 1.0, 'through': 1.0, 'to': 1.0, 'back': 1.0, 'and': 1.0, 'worst': 1.0, 'product': 2.0, 'material': 1.0, 'on': 1.0, 'harm': 1.0, 'is': 1.0, 'that': 1.0, 'the': 5.0, 'ever': 1.0, 'your': 1.0, 'i': 1.0, 'baby': 1.0, 's': 1.0, 'neck': 1.0, 'come': 1.0, 'velcro': 1.0, 'this': 1.0}
Word element => {'bigger': 1.0, 'little': 1.0, 'a': 1.0, 'was': 1.0, 'part': 1.0, 'my': 1.0, 'the': 3.0, 'bibs': 1.0, 'did': 1.0, 'job': 1.0, 'pretty': 1.0, 'bit': 1.0, 'wash': 1.0, 'well': 1.0, 'but': 1.0, 'i': 1.0, 'neck': 1.0, 'daughter': 1.0, 'for': 1.0, 'wish': 1.0}
Word element => {'purchase': 1.0, 'step': 1.0, 'take': 1.0, 'comparing': 1.0, 'just': 1.0, 'in': 1.0, 'scenario': 1.0, 'same': 1.0, 'currently': 1.0, 'are': 1.0, 'you': 1.0, 'if': 1.0, 'and': 4.0, 'don': 1.0, 'sound': 1.0, 'wash': 1.0, 'price': 1.0, 'baby': 1.0, 'them': 1.0, 'my': 3.0, 'enough': 1.0, 'definitely': 1.0, 'types': 1.0, 'did': 2.0, 'ability': 1.0, 'held': 1.0, 'reasonably': 1.0, 'decent': 1.0, 'these': 2.0, 's': 3.0, 'a': 7.0, 't': 1.0, 'go': 1.0, 'stain': 1.0, 'where': 1.0, 'for': 2.0, 'washes': 1.0, 'were': 1.0, 'but': 1.0, 'soft': 1.0, 'without': 1.0, 'of': 3.0, 'the': 5.0, 'looking': 1.0, 'to': 4.0, 'fasting': 1.0, 'as': 1.0, 'was': 2.0, 'meaning': 1.0, 'met': 1.0, 'over': 1.0, 'daily': 1.0, 'more': 1.0, 'it': 3.0, 'velcro': 1.0, 'quite': 1.0, 'durable': 1.0, 'with': 1.0, 'i': 6.0, '4': 1.0, 'share': 1.0, 'shrinking': 1.0, 'skin': 2.0, 'not': 2.0, 'stand': 1.0, 'owned': 1.0, 'irritate': 1.0, 'at': 1.0, 'this': 1.0, 'few': 1.0, 'layer': 1.0, 'that': 4.0, 'easily': 1.0, 'times': 1.0, 'on': 1.0, '3': 1.0, 'so': 1.0, 'can': 1.0, 'sensitive': 1.0, 'constantly': 1.0, 'or': 1.0, 'protective': 1.0, 'like': 2.0, 'all': 1.0, 'an': 1.0, 'infomercial': 1.0, 'experiencing': 1.0, 'really': 1.0, 'bibs': 4.0, 'expectations': 1.0, 'inner': 1.0, 'absorbent': 1.0, 'drooled': 1.0, 'have': 3.0, 'pulling': 1.0, 'bib': 4.0, '6': 1.0, 'months': 1.0, 'good': 1.0, 'different': 2.0, 'new': 1.0, 'through': 1.0, 'bit': 1.0, 'basis': 1.0, 'week': 1.0, 'had': 1.0, 'fair': 1.0, 'also': 1.0, 'least': 1.0, 'children': 1.0, 'faucet': 1.0, 'want': 1.0, 'tugging': 1.0}
Word element => {'choice': 1.0, 'every': 1.0, 'found': 1.0, 'i': 1.0, 'of': 1.0, 'in': 1.0, 'for': 1.0, 'colors': 1.0, 'great': 1.0, 'the': 1.0, 'are': 1.0, 'outfit': 1.0, 'is': 1.0, 'this': 1.0, 'fit': 1.0, 'bib': 1.0, 'best': 1.0, 'match': 1.0, 'very': 1.0, 'assortmant': 1.0, 'and': 1.0, 'pack': 1.0, 'girl': 1.0, 'they': 1.0, 'a': 3.0, 'well': 1.0, 'soft': 1.0}
Word element => {'also': 1.0, 'to': 1.0, 'through': 1.0, 'gets': 1.0, 'lined': 1.0, 're': 1.0, 'how': 1.0, 'times': 1.0, 'nothing': 1.0, 'bibs': 1.0, 'cute': 2.0, 'fade': 1.0, 'her': 2.0, 'clothes': 2.0, 'really': 1.0, 'change': 1.0, 'and': 2.0, 'we': 1.0, 'so': 2.0, 'out': 1.0, 'reflux': 1.0, 'are': 2.0, 'they': 1.0, 'dry': 1.0, 'has': 1.0, 'keep': 1.0, 'several': 1.0, 'don': 1.0, 'colors': 1.0, 'baby': 1.0, 'our': 1.0, 't': 1.0, 'the': 1.0, 'these': 1.0, 'a': 1.0, 'day': 1.0, 'i': 1.0, 'love': 1.0}
Word element => {'says': 1.0, 'them': 2.0, 'loved': 1.0, 'day': 1.0, 'perfect': 1.0, 'uses': 1.0, 'i': 1.0, 'every': 1.0, 'she': 1.0, 'baby': 1.0, 'and': 2.0, 'the': 1.0, 'my': 1.0, 'shower': 1.0, 'for': 1.0, 'bought': 1.0, 'gift': 1.0, 'these': 1.0, 'cousin': 1.0}
Word element => {'same': 1.0, 'options': 1.0, 'better': 1.0, 'so': 3.0, 'seem': 1.0, 'velcro': 3.0, 'with': 2.0, 'it': 1.0, 'instead': 1.0, 'snaps': 1.0, 'neck': 1.0, 'these': 1.0, 'more': 1.0, 'great': 1.0, 'much': 5.0, 'do': 3.0, 'and': 2.0, 'we': 1.0, 'were': 1.0, 'in': 1.0, 'irritates': 1.0, 'need': 1.0, 'prefer': 1.0, 'the': 8.0, 'job': 2.0, 'off': 1.0, 'of': 3.0, 'cant': 1.0, 'bibs': 2.0, 'like': 1.0, 'i': 4.0, 'ordered': 1.0, 'find': 1.0, 'they': 4.0, 'to': 2.0, 'had': 1.0, 'for': 1.0, 'expensive': 1.0, 'her': 1.0, 'price': 2.0, 'harder': 1.0, 'pull': 1.0, 'but': 2.0, 'work': 1.0, 'can': 1.0, 'back': 1.0, 'needed': 1.0, 'baby': 1.0, 'them': 1.0, 'just': 1.0, 'wish': 1.0}
Word element => {'to': 1.0, 'future': 1.0, 'in': 1.0, 'purchase': 1.0, 'definately': 1.0, 'the': 3.0, 'love': 1.0, 'others': 1.0, 'is': 1.0, 'fit': 1.0, 'excellent': 1.0, 'would': 1.0, 'was': 1.0, 'i': 1.0, 'quality': 1.0, 'and': 2.0, 'very': 1.0, 'colors': 1.0, 'recommend': 1.0, 'good': 1.0, 'of': 1.0}
Word element => {'line': 1.0, 'meant': 1.0, 'for': 2.0, 'product': 1.0, 'inferior': 1.0, 'disappointed': 1.0, 'incredibly': 1.0, '7': 1.0, '10': 1.0, 'they': 1.0, 'felt': 1.0, 'be': 1.0, 'like': 1.0, 'cannot': 1.0, 'transparent': 1.0, 'babies': 2.0, 'have': 2.0, 'seen': 1.0, 'causing': 1.0, 'at': 1.0, 'thought': 1.0, 'seems': 1.0, 'our': 2.0, 'to': 1.0, 'through': 1.0, 'scratches': 2.0, 'velcro': 1.0, 'sharp': 1.0, 'only': 2.0, 'with': 2.0, 'threads': 2.0, 'cuts': 2.0, 'course': 1.0, 'the': 8.0, 'these': 1.0, 'few': 1.0, 'months': 1.0, 'poked': 1.0, 'minor': 2.0, 'after': 1.0, 'provider': 1.0, 'daycare': 1.0, 'discussed': 1.0, 'of': 2.0, 'over': 1.0, 'up': 1.0, 'perplexed': 1.0, 'neck': 1.0, 'a': 2.0, 't': 1.0, 'we': 5.0, 'wasn': 1.0, 'bibs': 1.0, 'matching': 1.0, 'and': 3.0, 'looked': 1.0, 'from': 1.0, 'part': 1.0, 'properly': 1.0, 'quality': 1.0, 'them': 1.0, 'length': 1.0, 'this': 1.0, 'carefully': 1.0, 'fastener': 1.0, 'are': 4.0}
Word element => {'worth': 1.0, 'greens': 1.0, 'blues': 1.0, 'in': 1.0, 'too': 1.0, 'price': 1.0, 'colors': 1.0, 'have': 1.0, 'my': 1.0, 'pretty': 1.0, 'boy': 1.0, 'they': 3.0, 'the': 1.0, 'these': 2.0, 'only': 1.0, 'and': 2.0, 'do': 2.0, 'not': 1.0, 'are': 2.0, 'bibs': 1.0, 'absorb': 1.0, 'but': 1.0, 'well': 2.0, 'personalize': 1.0, 'you': 1.0, 'wonderful': 1.0, 'can': 1.0, 'embroider': 1.0, 'on': 1.0, 'them': 2.0, 'granddaughter': 1.0, 'to': 1.0, 'i': 1.0, 'got': 1.0, 'for': 1.0}
Word element => {'one': 1.0, 'change': 1.0, 'wouldn': 1.0, 'i': 1.0, 'have': 2.0, 'her': 1.0, 'different': 1.0, 'brands': 2.0, 'than': 2.0, '20': 1.0, '30': 1.0, 'goes': 1.0, 'shirt': 1.0, 'other': 2.0, 'my': 2.0, 're': 1.0, 'several': 1.0, 'and': 2.0, 'daughter': 1.0, 'when': 1.0, 'teething': 1.0, 'lot': 1.0, 'bib': 1.0, 'at': 1.0, 'was': 2.0, 'machine': 1.0, 'favorite': 1.0, 'down': 1.0, 't': 1.0, 'we': 1.0, 'a': 3.0, 'after': 1.0, 'drool': 1.0, 'were': 1.0, 'typical': 1.0, 'some': 1.0, 'these': 2.0, 'ones': 1.0, 'hands': 1.0, 'the': 1.0, 'more': 1.0, 'to': 1.0, 'least': 1.0, 'as': 1.0, 'unlike': 1.0, 'day': 1.0, 'through': 1.0, 'makes': 1.0, 'larger': 1.0, 'of': 2.0, 'wore': 1.0, 'baby': 1.0, 'significantly': 1.0, 'bibs': 1.0, 'absorbent': 1.0, 'they': 1.0, 'double': 1.0, 'layer': 1.0, 'she': 3.0, 'it': 1.0}
Word element => {'bled': 1.0, 'careful': 1.0, 'onto': 1.0, 'be': 1.0, 'buy': 1.0, 'i': 2.0, 'price': 1.0, 'one': 1.0, 'for': 1.0, 'deal': 1.0, 'a': 1.0, 'other': 2.0, 'things': 1.0, 'some': 1.0, 'at': 1.0, 'wide': 1.0, 'wash': 1.0, 'soaks': 1.0, 'and': 1.0, 'washed': 1.0, 'up': 1.0, 'first': 1.0, 'with': 1.0, 'it': 3.0, 'time': 1.0, 'they': 4.0, 'again': 1.0, 'are': 3.0, 'bibs': 1.0, 'red': 1.0, 'such': 1.0, 'nicely': 1.0, 'great': 2.0, 'these': 2.0, 'the': 5.0, 't': 1.0, 'aren': 1.0, 'waterproof': 1.0, 'side': 1.0, 'really': 1.0, 'but': 1.0, 'would': 1.0, 'never': 1.0, 'top': 1.0, 'through': 1.0, 'to': 1.0}
Word element => {'too': 1.0, 'fast': 1.0, 'baby': 1.0, 'clothes': 1.0, 'look': 1.0, 'still': 1.0, 'free': 1.0, 'dry': 1.0, 'they': 2.0, 'times': 1.0, 'several': 1.0, 'rash': 1.0, 'washed': 1.0, 'on': 1.0, 'material': 1.0, 'cloth': 1.0, 'very': 1.0, 'and': 3.0, 'mail': 1.0, 'with': 1.0, 'terry': 1.0, 'came': 1.0, 'amazing': 1.0, 'back': 1.0, 'keeps': 1.0, 'are': 1.0, 'absorbent': 1.0, 'bibs': 1.0, 'great': 1.0, 'the': 2.0, 'these': 1.0, 'moisture': 2.0, 'been': 1.0, 'guard': 1.0, 'mine': 1.0, 'in': 2.0, 'front': 1.0, 'a': 1.0, 'middle': 1.0, 'have': 1.0}
Word element => {'thin': 1.0, 'kinda': 1.0, 'give': 1.0, 'getting': 1.0, 'that': 1.0, 'is': 2.0, 'at': 1.0, 'lot': 1.0, 's': 1.0, 'a': 2.0, 't': 3.0, 'the': 5.0, 'these': 2.0, 'aren': 1.0, 'but': 1.0, '2': 1.0, 'old': 1.0, 'month': 1.0, 'bought': 1.0, 'get': 1.0, 'my': 2.0, 'i': 3.0, '4': 2.0, 'weren': 1.0, 'bibs': 4.0, 'like': 1.0, 'stars': 1.0, 'for': 1.0, 'was': 1.0, 'soak': 2.0, 'least': 1.0, 'to': 1.0, 'feeding': 1.0, 'switch': 1.0, 'formula': 1.0, 'have': 1.0, 'because': 3.0, 'lining': 1.0, 'would': 1.0, 'through': 2.0, 'then': 1.0, 'wet': 2.0, 'fabric': 2.0, 'her': 1.0, 'baby': 1.0, 'clothes': 2.0, 'and': 2.0, 'too': 2.0, 'don': 1.0, 'regular': 1.0, 'in': 1.0, 'drooling': 1.0, 'between': 1.0, 'still': 1.0, '3': 1.0, 'times': 1.0, 'waterproof': 2.0, 'day': 1.0}
Word element => {'too': 1.0, 'olds': 1.0, '0': 1.0, 'is': 1.0, 'size': 1.0, 'month': 1.0, 'proof': 1.0, 'water': 1.0, 'washing': 1.0, 'but': 1.0, 'on': 1.0, 'spills': 1.0, 'colors': 1.0, 'baby': 1.0, 'you': 1.0, 'great': 1.0, 'the': 3.0, 'drying': 1.0, 'though': 1.0, 'in': 1.0, 'wash': 2.0, '3': 1.0, 'soft': 2.0, '100': 1.0, 'bibs': 1.0, 'if': 1.0, 'have': 1.0, 'get': 3.0, 'are': 2.0, 'again': 1.0, 'basic': 1.0, 'good': 2.0, 'them': 2.0, 'a': 1.0, 'after': 3.0, 'to': 1.0, 'rough': 1.0, 'for': 1.0, 'one': 1.0, 'use': 1.0, 'as': 1.0, 'they': 2.0, 'little': 1.0}
Word element => {'outfits': 1.0, 'color': 1.0, 'even': 1.0, 'return': 1.0, 'didn': 1.0, 'parents': 1.0, 'cubby': 1.0, 's': 1.0, 'another': 1.0, 'aka': 1.0, 'daycare': 1.0, 'misplaced': 1.0, 'gotten': 1.0, 'few': 1.0, 'more': 2.0, 'only': 1.0, 'swear': 1.0, 'i': 1.0, 'material': 1.0, 'bib': 1.0, 'tethers': 1.0, 'using': 1.0, 'thickness': 1.0, 'perfext': 1.0, 'marring': 1.0, 'decorative': 1.0, 'wimpy': 1.0, 'does': 1.0, 'like': 1.0, 'off': 1.0, 'rip': 1.0, 'in': 3.0, 'colors': 3.0, 'she': 1.0, 'others': 1.0, 'these': 4.0, 'over': 1.0, 'don': 2.0, 'up': 1.0, 'exclusively': 1.0, 'seem': 1.0, 'coordinated': 1.0, 'want': 2.0, 'with': 3.0, 'bibs': 3.0, 'still': 1.0, 'every': 1.0, 'used': 1.0, 'her': 2.0, 'buy': 1.0, 'hand': 1.0, 'good': 1.0, 'which': 1.0, 'out': 1.0, 'wardrobe': 1.0, 'wearing': 1.0, 'matter': 1.0, 'too': 1.0, 'ones': 1.0, 'one': 2.0, 'hang': 1.0, 'playtex': 1.0, 'been': 1.0, 'stains': 1.0, 'because': 2.0, 'easily': 2.0, 'that': 2.0, 'bunch': 1.0, 'who': 1.0, 'since': 2.0, 'original': 1.0, 'clip': 1.0, 'packaging': 1.0, 'has': 1.0, 'always': 1.0, 'them': 3.0, 'of': 2.0, 'the': 15.0, 'remove': 1.0, 'without': 2.0, 'as': 3.0, 'to': 3.0, 'our': 1.0, 'usual': 1.0, 'pink': 2.0, 'they': 4.0, 'have': 3.0, 'dryer': 1.0, 'we': 2.0, 'tiny': 1.0, 'a': 4.0, 'potential': 1.0, 'downs': 1.0, 'along': 1.0, 't': 3.0, 'put': 1.0, 'much': 1.0, 'match': 2.0, 'year': 1.0, '8th': 1.0, 'outfit': 1.0, 'shade': 1.0, 'week': 1.0, 'dry': 1.0, 'daughter': 1.0, 'got': 2.0, 'anyone': 1.0, 'recommended': 1.0, 'and': 7.0, 'may': 1.0, 'me': 1.0, 'when': 1.0, 'you': 1.0, 'tossing': 1.0, 'can': 1.0, 'so': 1.0, 're': 1.0, 'come': 1.0, 'knee': 1.0, 'right': 1.0, 'shout': 1.0, 'get': 1.0, 'such': 1.0, 'for': 3.0, 'binky': 1.0, 'food': 1.0, 'never': 2.0, 'had': 1.0, 'matching': 1.0, 'all': 1.0, 'other': 2.0, 'an': 1.0, 'issue': 1.0, 'buying': 1.0, 'low': 1.0, 'were': 1.0, 'kid': 1.0, 'heat': 1.0, 'on': 2.0, 'long': 1.0, 'matched': 1.0, 'velcro': 2.0, 'needs': 1.0, 'ends': 1.0, 'boys': 1.0, 'are': 3.0, 'strong': 1.0, 'stuck': 1.0, 'items': 1.0, 'at': 1.0, 'is': 1.0, 'great': 1.0}
Word element => {'12': 1.0, 'remember': 1.0, 'always': 1.0, 'works': 1.0, 'bright': 1.0, 'use': 1.0, 'months': 2.0, 'never': 1.0, 'happened': 1.0, 'when': 2.0, 'stuck': 1.0, 'get': 1.0, 'new': 1.0, 'would': 2.0, 'was': 1.0, 'crawl': 1.0, 'as': 2.0, 'to': 2.0, 'got': 1.0, '2': 1.0, 'most': 1.0, 'i': 2.0, 'wearing': 1.0, 'has': 1.0, 'they': 2.0, 'dry': 1.0, 'girl': 1.0, 'fit': 1.0, 'afraid': 1.0, 'love': 2.0, 'for': 3.0, 'every': 1.0, 'bibs': 2.0, 'washing': 1.0, '100': 1.0, 'babies': 1.0, 'totally': 1.0, 'been': 1.0, 'close': 1.0, 'day': 2.0, 'waterproof': 1.0, 'is': 5.0, 'those': 1.0, 'and': 5.0, 'after': 1.0, 'solids': 1.0, 'it': 1.0, 'she': 2.0, 'them': 1.0, 'baby': 2.0, 'colors': 2.0, 'lovely': 1.0, 'good': 1.0, 'fabric': 1.0, 'tummy': 1.0, 'nice': 1.0, 'my': 1.0, 'starts': 1.0, 'are': 3.0, 'the': 4.0, 'said': 1.0, 'air': 1.0, 'velcro': 1.0, 'dribbling': 1.0, 'quite': 1.0, 'quickly': 1.0, 'size': 1.0, 'spending': 1.0, 'perfect': 1.0, 'bib': 1.0, 'since': 1.0, 'who': 1.0, 'thoses': 1.0, 'rolling': 2.0, 'packaging': 1.0, 'of': 2.0, '3': 1.0, 'constantly': 1.0, 'on': 1.0}
Word element => {'love': 1.0, 'yet': 1.0, 'babies': 1.0, 'them': 1.0, 'unlike': 1.0, 'a': 1.0, 'keep': 1.0, 'my': 1.0, 'are': 1.0, 'has': 1.0, 'they': 1.0, 'absorbent': 1.0, 'thin': 1.0, 'bibs': 1.0, 'their': 1.0, 'the': 1.0, 'these': 1.0, 'great': 1.0, 'ones': 1.0, 'us': 1.0, 'daughter': 1.0, 'very': 2.0, 'shape': 1.0, 'and': 1.0, 'r': 1.0, 'short': 1.0, 'neck': 1.0}
Word element => {'match': 1.0, 'colors': 1.0, 'love': 1.0, 'can': 1.0, 'it': 2.0, 'very': 1.0, 'to': 1.0, 'you': 1.0, 'that': 1.0, 'many': 1.0, 'easy': 1.0, 'use': 1.0, 'so': 1.0, 'clothes': 1.0, 'soft': 1.0, 'come': 1.0, 'is': 1.0, 'with': 2.0}
Word element => {'how': 1.0, 'shocked': 1.0, 'single': 1.0, 'throw': 1.0, 'had': 1.0, 'low': 1.0, 'pilled': 1.0, 't': 2.0, 'terrycloth': 1.0, 'bright': 1.0, 'look': 1.0, 'super': 1.0, 'still': 4.0, 'years': 1.0, '2009': 1.0, 'november': 1.0, 'constant': 1.0, 'daughter': 1.0, 'same': 1.0, 'materials': 1.0, 'there': 1.0, 'monkey': 1.0, 'irritate': 1.0, 'possible': 1.0, 'stays': 1.0, 'out': 3.0, '18': 1.0, 'over': 2.0, 'heat': 1.0, 'truly': 1.0, 'water': 1.0, 'whatever': 1.0, 'pieces': 1.0, 'for': 2.0, '10': 3.0, 'been': 2.0, 'has': 1.0, 'them': 3.0, 'always': 1.0, 'power': 1.0, 'month': 2.0, 'pleasantly': 1.0, 'put': 1.0, 'me': 1.0, 'waterproof': 2.0, 'etc': 1.0, 'obnoxious': 1.0, 'size': 1.0, 'part': 1.0, 'baby': 4.0, 'washings': 2.0, 'soft': 2.0, 'cutesy': 1.0, 'designs': 1.0, 'intact': 1.0, 'from': 2.0, 'amazing': 1.0, 'wearing': 2.0, 'at': 2.0, 'patterns': 1.0, 'layer': 2.0, 'that': 2.0, 'want': 1.0, 'sets': 1.0, 'or': 5.0, 'outfit': 1.0, 'fully': 1.0, 'be': 1.0, 'it': 2.0, 'purchased': 1.0, 'have': 6.0, 'dryer': 3.0, 'match': 3.0, 'pack': 2.0, 'others': 2.0, 'absorbent': 1.0, 'catch': 1.0, 'edit': 1.0, 'sandwiched': 1.0, 'the': 21.0, 'about': 1.0, 'colors': 4.0, 'stars': 1.0, 'bib': 2.0, 'these': 2.0, 'fastened': 2.0, 've': 2.0, 'resistant': 1.0, 'in': 5.0, 'every': 1.0, 'm': 1.0, 'tired': 1.0, 'repeated': 3.0, 'distracting': 1.0, 'bibs': 5.0, 'my': 5.0, 'are': 4.0, 'than': 1.0, '2013': 1.0, 'i': 10.0, 'well': 3.0, 'big': 2.0, 'far': 1.0, 'he': 1.0, 'so': 2.0, 'is': 8.0, 'can': 2.0, 'sensitive': 1.0, 'boy': 2.0, 'tried': 1.0, 'and': 9.0, '27': 1.0, 'haven': 1.0, 'his': 1.0, 'do': 1.0, 'drooler': 1.0, 'price': 1.0, 'year': 1.0, 'product': 2.0, 'perfectly': 1.0, 'girl': 1.0, 'flat': 2.0, 'beautiful': 1.0, 'getting': 1.0, 'inconspicuous': 1.0, 'as': 2.0, 'overlapping': 1.0, 'variety': 1.0, 'color': 1.0, '3': 3.0, 'too': 2.0, 'rating': 1.0, 'both': 2.0, 'half': 2.0, 'best': 1.0, 'old': 2.0, 'of': 12.0, 'brands': 1.0, 'very': 4.0, '16': 1.0, 'find': 1.0, 'day': 2.0, 'since': 3.0, 'small': 1.0, 'all': 3.0, 'other': 1.0, 'least': 1.0, 'to': 9.0, 'between': 2.0, 'two': 3.0, 'layers': 2.0, 'delicate': 2.0, 'terry': 2.0, 'cloth': 1.0, '6': 1.0, 'strong': 5.0, 'velcro': 11.0, 'after': 2.0, 'like': 3.0, 'buckling': 1.0, 'you': 6.0, 'curling': 1.0, 'gone': 2.0, 'satin': 1.0, 'fabric': 1.0, 'through': 2.0, 'different': 1.0, 'hence': 1.0, 'not': 6.0, 'fast': 1.0, 'skin': 2.0, 'held': 1.0, 'weaker': 1.0, 'make': 3.0, 'seeing': 1.0, 'use': 2.0, 'pros': 1.0, 'wash': 1.0, 'also': 2.0, 'perfect': 1.0, 'really': 2.0, 'decent': 1.0, 'up': 3.0, 'opinionconsiderations': 1.0, 'must': 1.0, 'sure': 3.0, 'closed': 1.0, 'scratchy': 3.0, 'when': 4.0, 'fabrics': 1.0, 'essentially': 1.0, 'quickly': 1.0, 'feel': 1.0, 'many': 2.0, 'your': 1.0, 'blanket': 1.0, 'got': 1.0, 'one': 2.0, '5': 1.0, 'will': 1.0, 'wardrobe': 1.0, 'those': 1.0, 'this': 1.0, 'absent': 1.0, 'common': 3.0, 'with': 3.0, 'using': 1.0, 'sense': 3.0, 'hasn': 1.0, 'laundering': 1.0, 'curled': 1.0, 'they': 3.0, 'issue': 2.0, 'exposure': 1.0, 'flaw': 2.0, 'no': 2.0, 'on': 3.0, 'opened': 1.0, 'stay': 1.0, 'again': 2.0, 'rather': 1.0, 'halves': 1.0, 'a': 11.0, 'fasten': 1.0, 'then': 1.0, 'parts': 1.0, 'sticky': 1.0, 'great': 1.0, 'exposed': 1.0, 'come': 1.0, 'opinion': 1.0, 'am': 1.0, 'now': 1.0}
Word element => {'new': 1.0, 'as': 1.0, 'pack': 1.0, 'do': 1.0, 'end': 1.0, 'started': 1.0, 'and': 4.0, 'get': 1.0, 'sure': 1.0, 'is': 1.0, 'lining': 1.0, 've': 1.0, 'proof': 1.0, 'with': 2.0, 'garment': 1.0, 'but': 2.0, 'ten': 1.0, 'hang': 1.0, 'enough': 1.0, 'that': 4.0, 'our': 1.0, 'any': 1.0, 't': 1.0, 'a': 3.0, 'pretty': 1.0, 'to': 3.0, 'job': 1.0, 'these': 1.0, 'setting': 1.0, 'wet': 1.0, 'just': 1.0, 'says': 1.0, 'out': 1.0, 'wardrobe': 1.0, 'cutting': 1.0, 'thin': 1.0, 'bibs': 1.0, 'bib': 1.0, 'since': 1.0, 'bad': 1.0, 'are': 2.0, 'for': 2.0, 'price': 1.0, 'teeth': 1.0, 'washer': 1.0, 'the': 9.0, 'of': 2.0, 'dry': 2.0, 'they': 7.0, 'reviews': 1.0, 'love': 1.0, 'mood': 1.0, 'become': 1.0, 'don': 1.0, 'damage': 1.0, 'water': 1.0, 'up': 1.0, 'use': 1.0, 'wash': 1.0, 'her': 2.0, 'tag': 1.0, 'everyday': 1.0, 'part': 1.0, 'right': 1.0, 'other': 1.0, 'anything': 1.0, 'said': 1.0, 'in': 4.0, 'velcro': 3.0, 'clothes': 1.0, 'was': 1.0, 'my': 2.0, 'experience': 1.0, 'before': 1.0, 'i': 3.0, 'putting': 2.0, 'them': 1.0, 'has': 3.0, 'always': 1.0, 'good': 1.0, 'made': 1.0, 'daughter': 1.0, 'pieces': 1.0, 'together': 1.0, 'were': 1.0, 'practically': 1.0, 'low': 1.0, 'stuck': 1.0, 'ensure': 1.0, 'no': 1.0, 'dryer': 2.0, 'although': 1.0, 'prefect': 1.0, 'noticed': 1.0, 'on': 1.0, 'sun': 1.0, 'quickly': 1.0, 'usually': 1.0, 'depending': 1.0, 'come': 1.0}
Word element => {'from': 1.0, 'check': 1.0, 'better': 1.0, 'want': 1.0, 'if': 2.0, 'tag': 1.0, 'choked': 1.0, 'it': 1.0, 'she': 1.0, 'choking': 1.0, 'anais': 1.0, 'mouth': 1.0, 'near': 1.0, 'other': 1.0, 'thread': 1.0, 'to': 2.0, 'have': 2.0, 'bibs': 2.0, 'away': 1.0, 'aden': 1.0, 'thin': 2.0, 'stay': 1.0, 'not': 2.0, 'constantly': 1.0, 'absorbent': 1.0, 'on': 3.0, 'hazards': 1.0, 'pros': 1.0, 'is': 3.0, 'of': 3.0, 'they': 1.0, 'these': 2.0, 'hanging': 1.0, 'the': 7.0, 'list': 1.0, 'easily': 1.0, 'you': 2.0, 'into': 1.0, 'that': 2.0, 'are': 2.0, 'ends': 1.0, 'cute': 1.0, 'this': 1.0, 'found': 1.0, 'very': 2.0, 'bib': 1.0, 'since': 1.0, 'notice': 1.0, 't': 1.0, 'could': 1.0, 's': 1.0, 'going': 1.0, 'a': 5.0, 'and': 5.0, 'baby': 1.0, 'them': 1.0, 'out': 2.0, 'day': 1.0, 'tags': 1.0, 'shown': 1.0, 'by': 1.0, 'few': 1.0, 'didn': 1.0, 'picture': 1.0, 'appear': 1.0, 'minutes': 1.0, 'potential': 1.0, 'i': 2.0, 'one': 2.0, 'switch': 1.0, 'additionally': 1.0, 'but': 1.0, 'in': 1.0, 'cheap': 1.0, 'where': 1.0, 'product': 2.0, 'within': 1.0, 'putting': 1.0, 'be': 1.0, 'securely': 1.0, 'stitched': 1.0}
Word element => {'them': 1.0, 'causing': 1.0, 'get': 1.0, 'wash': 1.0, 'undone': 1.0, 'put': 1.0, 'in': 2.0, 'velcro': 1.0, 'people': 1.0, 'stays': 1.0, 'mention': 1.0, 'bib': 1.0, 'keep': 1.0, 'lot': 1.0, '13': 1.0, 'bibs': 1.0, 'should': 1.0, 'of': 2.0, 'plus': 1.0, 'it': 2.0, 'fray': 1.0, 'come': 2.0, 'with': 1.0, 'which': 2.0, 'they': 4.0, 'dry': 1.0, 't': 1.0, 'might': 1.0, 'a': 2.0, 'well': 1.0, 'color': 1.0, 'or': 1.0, 'worth': 1.0, 'little': 1.0, 'waterproof': 1.0, 'place': 1.0, 'the': 6.0, 'is': 1.0, 'around': 1.0, 'more': 1.0, 'for': 1.0, 'love': 1.0, 'expensive': 1.0, 'but': 2.0, 'pack': 1.0, 'r': 1.0, 'us': 1.0, 'and': 2.0, 'too': 2.0, 'than': 1.0, 'because': 1.0, 'i': 2.0, 'doesn': 1.0, 'was': 1.0, 'to': 4.0, 'fuzz': 1.0, 'stuck': 1.0, 'concerned': 1.0, 'clothing': 1.0, 'thing': 1.0, 'about': 1.0, 'seem': 1.0, 'not': 1.0, 'stay': 1.0, 're': 3.0, 'forever': 1.0, 'tax': 1.0, 'babies': 1.0, 'thinner': 1.0, 'that': 2.0, '10': 1.0, 'variations': 1.0, 'other': 2.0}
Word element => {'discolored': 1.0, 'become': 1.0, 'washings': 1.0, 'some': 1.0, 'after': 1.0, 'pretty': 1.0, 'that': 1.0, 'quality': 1.0, 'but': 1.0, 'quantity': 1.0, 'for': 1.0, 'nice': 1.0, 'in': 1.0, 'my': 1.0, 'are': 2.0, 'was': 1.0, 'daughter': 1.0, 'when': 1.0, 'cheap': 1.0, 'i': 1.0, 'zillions': 1.0, 'got': 1.0, 'needed': 1.0, 'thin': 1.0, 'bibs': 2.0, 'price': 1.0, 'great': 1.0, 't': 1.0, 'the': 4.0, 'these': 2.0, 'daycare': 1.0, 'and': 2.0, 'fairly': 1.0, 'of': 1.0, 'all': 1.0, 'slightly': 1.0, 'isn': 1.0, 'they': 2.0, 'time': 1.0, 'is': 1.0}
Word element => {'bright': 1.0, 'local': 1.0, 'she': 1.0, 'is': 1.0, 'teething': 1.0, 'a': 2.0, 's': 1.0, 'awesome': 1.0, 'drooler': 1.0, 'center': 1.0, 'to': 2.0, 'quite': 1.0, 'acid': 1.0, 'and': 3.0, 'quality': 2.0, 'sided': 1.0, 'many': 1.0, 'pretty': 1.0, 'if': 1.0, 'better': 2.0, 'along': 1.0, 'did': 1.0, 'her': 1.0, 'see': 1.0, 'online': 1.0, 'bibs': 2.0, 'colors': 1.0, 'great': 1.0, 'daugter': 1.0, 'reflux': 1.0, 'checked': 1.0, 'my': 1.0, 'with': 2.0, 'stores': 1.0, 'due': 1.0, 'after': 1.0, 'purchasing': 1.0, 'from': 1.0, 'i': 3.0, 'can': 1.0, 'find': 1.0, 'the': 2.0, 'deal': 1.0, 'double': 1.0, 'they': 1.0, 'are': 1.0, 'waterproof': 1.0, 'in': 1.0}
Word element => {'that': 1.0, 'stays': 1.0, 'shirt': 1.0, 'almost': 1.0, 'note': 1.0, 'daughter': 2.0, 'm': 1.0, 'these': 3.0, 'the': 2.0, 'layer': 1.0, '12': 1.0, 'months': 1.0, 'always': 1.0, 'of': 1.0, 'bibs': 2.0, 'my': 2.0, 'are': 3.0, 'wonderful': 1.0, 'size': 1.0, 'inner': 1.0, 'dry': 1.0, 'they': 1.0, 'and': 2.0, 'well': 1.0, 'more': 1.0, 'is': 1.0, 'very': 1.0, 'little': 1.0, 'works': 1.0, 'bi': 1.0, '3': 1.0, 'absorbent': 1.0, 'make': 1.0, 'but': 1.0, 'work': 1.0, 's': 1.0, 'a': 2.0, 'we': 2.0, 'month': 1.0, 'it': 1.0, '4': 1.0, 'i': 1.0, 'buy': 1.0, 'sure': 1.0, 'll': 1.0, 'future': 1.0, 'lot': 1.0, 'in': 1.0}
Word element => {'fancy': 1.0, 'not': 1.0, 'use': 1.0, 'for': 1.0, 'better': 1.0, 'reviewers': 1.0, 'soft': 1.0, 'bibs': 1.0, 'is': 1.0, 'material': 1.0, 'at': 1.0, 'and': 1.0, 'very': 3.0, 'as': 1.0, 'everyday': 1.0, 'nice': 1.0, 'have': 1.0, 'all': 1.0, 'with': 1.0, 'velcro': 1.0, 'doesn': 1.0, 'scratch': 1.0, 'these': 1.0, 't': 1.0, 'though': 1.0, 'stated': 1.0, 'neck': 1.0, 'satisfied': 1.0, 'other': 1.0, 'my': 1.0, 'colors': 1.0, 'baby': 1.0, 's': 1.0}
Word element => {'for': 1.0, 'these': 1.0, 'and': 1.0, 'do': 1.0, 'have': 1.0, 'you': 1.0, 'a': 1.0, 's': 1.0, 'seem': 1.0, 'clothes': 1.0, 'packaging': 1.0, 'i': 1.0, 'to': 3.0, 'bibs': 2.0, 'great': 1.0, 'the': 1.0, 'keep': 1.0, 'in': 1.0, 're': 1.0, 'enough': 1.0, 'with': 3.0, 'colors': 1.0, 'different': 1.0, 'absorbent': 1.0, 'on': 1.0, 'terry': 1.0, '10': 2.0, 'waterproof': 1.0, 'little': 1.0, 'is': 2.0, 'outfit': 1.0, 'many': 1.0, 'bound': 1.0, 'friend': 1.0, 'solid': 1.0, 'hand': 1.0, 'coordinating': 1.0, 'color': 2.0, 'one': 1.0, 'drier': 1.0, 'sure': 1.0, 'easy': 1.0, 'recommend': 1.0, 'so': 1.0, 'd': 1.0, 'choices': 1.0, 'other': 1.0, 'they': 1.0, 'dry': 1.0, 'or': 1.0, 'than': 1.0, 'brands': 1.0}
Word element => {'well': 1.0, 'wash': 1.0, 'clothes': 1.0, 'spit': 1.0, 'for': 1.0, 'times': 1.0, 'bought': 1.0, 'different': 1.0, '3': 1.0, 'bibs': 1.0, 'the': 1.0, 'great': 1.0, 'these': 1.0, 'they': 1.0, 'have': 1.0, 'i': 1.0, 'to': 2.0, 'through': 1.0, 'protect': 1.0, 'clothing': 1.0, 'waterproof': 1.0, 'are': 1.0, 'and': 2.0, 'do': 1.0, 'not': 1.0, 'up': 1.0, 'leak': 1.0}
Word element => {'lot': 1.0, 'they': 1.0, 'instead': 1.0, 'and': 2.0, 'aden': 1.0, 'ordered': 1.0, 'spit': 1.0, 'her': 1.0, 'spitter': 1.0, 'spits': 1.0, 'feeding': 1.0, 'ups': 1.0, 'bibs': 3.0, 'absorbent': 1.0, 'to': 1.0, 'i': 2.0, 'up': 2.0, 'moe': 1.0, 'each': 1.0, 'a': 2.0, 'anais': 1.0, 'don': 1.0, 'are': 1.0, 'very': 1.0, 'big': 1.0, 'not': 1.0, 'stand': 1.0, 'have': 1.0, 'the': 1.0, 't': 1.0, 'these': 2.0, 'who': 1.0, 'absorb': 1.0, 'large': 1.0, 'amounts': 1.0, 'with': 1.0}
Word element => {'favorite': 1.0, 'exactly': 1.0, 'not': 1.0, 'while': 1.0, 'have': 1.0, 'all': 1.0, 'price': 1.0, 'good': 1.0, 'the': 3.0, 'these': 2.0, 'wouldn': 1.0, 'same': 1.0, 'bib': 1.0, 'plastic': 1.0, 'were': 2.0, 'what': 1.0, 'thought': 1.0, 'i': 5.0, 'there': 1.0, 'of': 2.0, 'was': 1.0, 'store': 1.0, 'she': 1.0, 'be': 1.0, 'in': 2.0, 'can': 1.0, 'but': 2.0, 'they': 2.0, 'between': 1.0, 'on': 1.0, 'would': 1.0, 'are': 2.0, 'messy': 1.0, 'because': 1.0, 'my': 2.0, 'daughter': 1.0, 'for': 1.0, 'where': 1.0, 'under': 1.0, 'gets': 1.0, 'backing': 1.0, 'clothes': 1.0, 'neck': 1.0, 'looking': 1.0, 'buy': 1.0, 'waterproof': 1.0, 'collar': 1.0, 'and': 2.0, 'do': 1.0, 'get': 1.0, 'wet': 1.0, 'say': 1.0, 'around': 1.0, 't': 1.0, 's': 1.0, 'a': 1.0, 'bibs': 2.0, 'material': 2.0, 'really': 1.0}
Word element => {'of': 1.0, 'package': 1.0, 'antoher': 1.0, 'on': 1.0, 'am': 1.0, 'machine': 1.0, 'little': 1.0, 'is': 1.0, 'that': 1.0, 'carter': 1.0, 'won': 1.0, 'i': 4.0, 'clothes': 1.0, 'baby': 2.0, 'about': 1.0, 'getting': 1.0, 'and': 3.0, 'here': 1.0, 'liner': 1.0, 'the': 1.0, 'have': 3.0, 'absorbant': 2.0, 'are': 3.0, 'pretty': 1.0, 'bibs': 7.0, 'really': 1.0, 'longer': 1.0, 'droll': 1.0, 'regular': 1.0, 'inexpensive': 1.0, 'buy': 1.0, 'day': 1.0, 'waterproof': 2.0, 'changes': 1.0, 'still': 1.0, 'all': 1.0, 'as': 2.0, 'to': 3.0, 'last': 1.0, 'her': 1.0, 'my': 2.0, 'often': 1.0, 'can': 2.0, 'change': 1.0, 'but': 1.0, 's': 2.0, 't': 1.0, 'a': 3.0, 'go': 1.0, 'they': 3.0, 'between': 1.0, 'keep': 1.0, 'lot': 1.0, 'bib': 1.0, 'with': 1.0, 'soaked': 1.0, 'from': 1.0, 'compared': 1.0, 'these': 3.0, 'some': 1.0}
Word element => {'every': 1.0, 'match': 1.0, 'to': 1.0, 'colors': 1.0, 'love': 1.0, 'outfit': 1.0, 'we': 1.0, 'colorful': 1.0, 'really': 1.0, 'the': 1.0, 'are': 1.0, 'waterproof': 1.0, 'but': 1.0, 'soft': 1.0, 'wash': 1.0, 'up': 1.0, 'and': 2.0, 'nicely': 1.0, 'very': 1.0}
Word element => {'again': 1.0, 'buy': 1.0, 'recommend': 1.0, 'been': 1.0, 'daughters': 1.0, 'time': 1.0, 'mine': 1.0, 'would': 1.0, 've': 2.0, 'dry': 1.0, 'hang': 1.0, 'tag': 1.0, 'it': 2.0, 'several': 1.0, 'about': 1.0, 'worry': 1.0, 'bag': 1.0, 'lingerie': 1.0, 'mesh': 1.0, 'have': 1.0, 'dryer': 2.0, 'in': 3.0, 'laundry': 1.0, 'other': 2.0, 'with': 3.0, 'velcro': 3.0, 'bibs': 1.0, 'like': 1.0, 'feel': 1.0, 'great': 2.0, 'scratch': 1.0, 'and': 5.0, 'these': 1.0, 'some': 1.0, 'i': 4.0, 'outfitscons': 1.0, 'cheap': 1.0, 'for': 2.0, 'value': 1.0, 'together': 1.0, 'daughter': 1.0, 'used': 1.0, 'they': 3.0, 'my': 2.0, 'fine': 1.0, 'teething': 1.0, 'velcroed': 1.0, 'are': 2.0, 'don': 2.0, 'packmultiple': 1.0, 'colors': 1.0, 'clothes': 1.0, 'them': 1.0, 'quality': 1.0, 'backing': 1.0, 'baby': 1.0, 't': 2.0, 'a': 3.0, 'catching': 1.0, 'plastic': 1.0, 'can': 1.0, 'pros': 1.0, 'is': 1.0, 'put': 1.0, 'on': 2.0, 'waterproofinexpensive': 1.0, 'says': 1.0, 'large': 1.0, 'coordinate': 1.0, 'to': 3.0, 'actual': 1.0, 'thrown': 1.0, 'if': 1.0, 'properly': 1.0, 'not': 1.0, 'be': 1.0, 'the': 6.0, 'careful': 1.0, 'of': 1.0}
Word element => {'i': 1.0, 'cheap': 1.0, 'thin': 1.0, 'feel': 1.0, 'up': 1.0, 'clean': 1.0, 'haven': 1.0, 'times': 1.0, 'periods': 1.0, 'long': 1.0, 'necks': 1.0, 'delicate': 1.0, 'good': 1.0, 'on': 2.0, 'had': 1.0, 'to': 2.0, 'baby': 1.0, 'rip': 1.0, 'waterproof': 1.0, 'meal': 1.0, 'little': 1.0, 't': 1.0, 'great': 1.0, 'these': 2.0, 'bib': 2.0, 'and': 3.0, 'soft': 1.0, 'if': 2.0, 'well': 1.0, 'a': 3.0, 're': 1.0, 'you': 3.0, 'they': 2.0, 'your': 1.0, 'one': 1.0, 'for': 4.0, 'tear': 1.0, 'teething': 1.0, 'leave': 2.0, 'want': 2.0, 'drool': 1.0, 'are': 2.0, 'not': 2.0, 'stiff': 1.0, 'but': 1.0, 'plasticy': 1.0}
Word element => {'wanted': 1.0, 'just': 1.0, 'review': 1.0, 'pink': 1.0, 'wears': 1.0, 'when': 1.0, 'gets': 1.0, 'now': 1.0, 'little': 1.0, 'save': 1.0, 'have': 1.0, 'boy': 2.0, 'than': 1.0, 'the': 6.0, 'these': 1.0, 'out': 1.0, 'kid': 1.0, 'share': 1.0, 'product': 1.0, 'for': 1.0, 'love': 1.0, 'why': 1.0, 'bought': 2.0, 'mine': 1.0, 'bid': 2.0, 'during': 1.0, 'if': 1.0, 'that': 2.0, 'buy': 1.0, 'two': 1.0, 'i': 8.0, 'drools': 1.0, 'your': 1.0, 'they': 2.0, 'and': 3.0, 'get': 1.0, 'packages': 1.0, 'bids': 1.0, 'is': 1.0, 'teething': 1.0, 'mistaken': 1.0, 'cover': 1.0, 'girl': 3.0, 'not': 2.0, 'he': 2.0, 'washing': 1.0, 'clothes': 1.0, 't': 1.0, 'a': 6.0, 'good': 1.0, 'amount': 1.0, 'what': 1.0, 'know': 1.0, 'like': 1.0, 'hold': 1.0, 'of': 1.0, 'to': 3.0, 'lot': 1.0, 'can': 1.0, 'change': 1.0, 'but': 3.0, 'up': 1.0, 'don': 1.0, 'colors': 3.0, 'are': 1.0, 'less': 1.0}
Word element => {'again': 1.0, 'them': 1.0, 'need': 1.0, 'in': 1.0, 'variety': 1.0, 'more': 1.0, 'wish': 1.0, 'thin': 1.0, 'little': 1.0, 'are': 1.0, 'that': 1.0, 'complains': 1.0, 'colors': 1.0, 'plus': 1.0, 'buy': 1.0, 'day': 1.0, 'big': 1.0, 'best': 1.0, 'quantity': 1.0, 'i': 2.0, '4': 1.0, 'throught': 1.0, 'and': 2.0, 'soak': 1.0, 'yellow': 1.0, 'was': 5.0, 'as': 1.0, 'to': 1.0, 'old': 1.0, '5': 1.0, 'the': 5.0, 'drooler': 1.0, '2': 1.0, 'months': 1.0, 'one': 2.0, 'my': 2.0, 'often': 1.0, 'for': 1.0, 'closure': 1.0, 'only': 1.0, 'liitle': 1.0, 'they': 4.0, 'of': 3.0, 'three': 1.0, 'since': 1.0, 'bib': 1.0, 'would': 2.0, 'cost': 1.0, 'were': 1.0, 'parts': 1.0, 'made': 1.0, 'she': 1.0, 'it': 1.0, 'velcro': 1.0, 'time': 1.0, 'so': 1.0, 't': 2.0, 'a': 5.0, 'we': 2.0, 'didn': 2.0, 'have': 2.0, 'wash': 1.0, 'also': 1.0, 'bibs': 2.0, 'really': 1.0, 'strong': 1.0, 'which': 1.0}
Word element => {'dry': 1.0, 'their': 1.0, 'inbetween': 1.0, 'liner': 1.0, 'good': 1.0, 'fabric': 1.0, 'nice': 1.0, 'great': 2.0, 'colors': 1.0, 'gave': 1.0, 'that': 2.0, 'other': 1.0, 'keeping': 1.0, 'out': 1.0, 'so': 2.0, 'a': 2.0, 'it': 2.0, 'looks': 1.0, 'neck': 1.0, 'back': 1.0, 'inside': 1.0, 'velcro': 1.0, '4': 1.0, 'i': 3.0, 'snug': 1.0, 'stars': 1.0, 'for': 2.0, 'twins': 1.0, 'one': 2.0, 'months': 2.0, 'necks': 1.0, 'on': 1.0, 'about': 1.0, 'got': 1.0, 'use': 1.0, 'these': 1.0, 'the': 10.0, 'length': 1.0, 'in': 1.0, 'tight': 2.0, 'my': 1.0, 'now': 1.0, 'was': 1.0, 'is': 4.0, 'around': 1.0, 'holds': 1.0, '6': 1.0, 'of': 1.0, 'over': 1.0, 'shirts': 1.0, 'threw': 1.0, 'up': 1.0, 'little': 2.0, 'waterproof': 2.0, 'them': 1.0, 'they': 1.0, 'and': 5.0, 'fixable': 1.0, 'are': 3.0, 'terry': 1.0, '10': 1.0, 'really': 1.0, 'bibs': 2.0, 'like': 1.0, 'part': 1.0, 'at': 1.0, 'melted': 2.0, 'to': 1.0, 'all': 2.0, 'because': 1.0, 'than': 1.0, 'scrunched': 1.0, 'not': 1.0}
Word element => {'again': 1.0, 'gladly': 1.0, 'would': 1.0, 'purchase': 1.0, 'outfits': 1.0, 'it': 1.0, 'compliment': 1.0, 'that': 1.0, 'colors': 1.0, 'room': 1.0, 'laundry': 1.0, 'out': 1.0, 'mom': 1.0, 'do': 1.0, 'and': 2.0, 'help': 1.0, 'my': 1.0, 'a': 1.0, 'keep': 1.0, 'packs': 1.0, 'she': 1.0, 'great': 2.0, 'the': 2.0, 'these': 1.0, 'plus': 1.0, 'of': 4.0, 'two': 1.0, 'all': 1.0, 'pack': 1.0, 'sent': 1.0, 's': 1.0, 'dry': 1.0, 'they': 1.0, 'has': 1.0, 'boy': 1.0, 'cover': 1.0, 'i': 2.0, 'bibs': 1.0, 'her': 3.0, 'to': 2.0, 'granddaughter': 1.0, 'everything': 1.0, 'in': 1.0, 'closet': 1.0}
Word element => {'way': 1.0, 'through': 1.0, 'soak': 1.0, 'or': 1.0, 'never': 1.0, 'very': 1.0, 'got': 1.0, 'problem': 1.0, 'the': 2.0, 'without': 1.0, 'were': 2.0, 'these': 1.0, 'great': 1.0, 'they': 4.0, 'drooling': 1.0, 'my': 1.0, 'for': 3.0, 'switched': 1.0, 'securely': 1.0, 'months': 2.0, 'pack': 1.0, 'i': 1.0, 'needed': 1.0, 'messy': 1.0, 'attach': 1.0, 'a': 4.0, 'we': 3.0, 'around': 1.0, 'once': 1.0, 'of': 1.0, 'really': 2.0, 'bibs': 1.0, 'perfect': 1.0, 'soft': 2.0, 'later': 1.0, 'solids': 1.0, 'cute': 1.0, 'that': 1.0, 'initially': 1.0, 'food': 1.0, 'four': 1.0, 'but': 1.0, 'comfortably': 1.0, 'few': 1.0, 'had': 1.0, 'rinseable': 1.0, 'at': 1.0, 'bib': 1.0, 'absorbant': 2.0, 'are': 1.0, 'when': 1.0, 'milk': 1.0, 'and': 2.0, 'too': 1.0, 'less': 1.0, 'first': 1.0, 'eating': 2.0, 'baby': 2.0, 'started': 2.0, 'all': 1.0, 'to': 1.0, 'worked': 1.0}
Word element => {'fantastic': 1.0, 'still': 1.0, 'but': 1.0, 'purchase': 1.0, 'i': 1.0, 'absorbent': 1.0, 'bibs': 1.0, 'favorite': 1.0, 'my': 1.0, 'are': 3.0, 'less': 1.0, 'love': 1.0, 'they': 2.0, 'the': 2.0, 'these': 1.0, 'colors': 1.0, 'available': 1.0, 'set': 1.0, 'on': 1.0, 'velcro': 1.0, 'this': 1.0, 'was': 1.0, 'reliable': 1.0, 'a': 2.0, 'little': 1.0, 'than': 1.0, 'previous': 1.0}
Word element => {'well': 1.0, 'wash': 1.0, 'her': 1.0, 'washing': 1.0, 'on': 1.0, 'saves': 1.0, 'free': 1.0, 'dry': 1.0, 'time': 1.0, 'all': 1.0, 'fading': 1.0, 'rash': 1.0, 'of': 1.0, 'then': 1.0, 'lack': 1.0, 'and': 4.0, 'chest': 1.0, 'colors': 2.0, 'amazing': 1.0, 'little': 1.0, 'wears': 1.0, 'waterproof': 1.0, 'is': 1.0, 'keeps': 1.0, 'are': 1.0, 'my': 1.0, 'love': 1.0, 'without': 1.0, 'can': 1.0, 'the': 2.0, 'these': 2.0, 'outfits': 1.0, 'pattern': 1.0, 'daughter': 1.0, 'so': 2.0, 'clothes': 1.0, 'you': 1.0, 'very': 1.0, 'match': 1.0, 'drolly': 1.0, 'to': 1.0, 'bibs': 1.0, 'easily': 1.0}
Word element => {'clothing': 1.0, 'other': 1.0, 'stick': 1.0, 'l': 1.0, 'wil': 1.0, 'wash': 1.0, 'in': 1.0, 'placing': 1.0, 'before': 1.0, 'fasten': 1.0, 'velcro': 1.0, 'it': 2.0, 'colors': 1.0, 'of': 1.0, 'selection': 1.0, 'these': 1.0, 'great': 1.0, 'scratch': 1.0, 'them': 1.0, 'baby': 2.0, 'clothes': 1.0, 'bibs': 2.0, 'nothing': 1.0, 'well': 1.0, 's': 2.0, 'a': 3.0, 'super': 1.0, 'and': 3.0, 'as': 1.0, 'to': 3.0, 'through': 1.0, 'are': 1.0, 'taking': 1.0, 'my': 2.0, 'leaks': 1.0, 'is': 2.0, 'caught': 1.0, 'very': 1.0, 'little': 1.0, 'or': 1.0, 'neck': 1.0, 'sharp': 1.0, 'bib': 1.0, 'bit': 1.0, 'so': 1.0, 'the': 4.0, 'careful': 1.0, 'be': 2.0, 'when': 1.0, 'off': 1.0, 'good': 1.0, 'i': 1.0, 'they': 1.0, 'accidentally': 1.0, 'your': 1.0, 'absorbent': 1.0, 'strong': 1.0, 'on': 1.0, 'pretty': 1.0, 'left': 1.0, 'sure': 1.0}
Word element => {'hates': 1.0, 'she': 1.0, 'fewer': 1.0, 'keep': 1.0, 'at': 1.0, 'are': 2.0, 'of': 1.0, 'be': 1.0, 'to': 1.0, 'minutes': 1.0, 'without': 1.0, 'as': 1.0, 'big': 2.0, 'a': 4.0, 'great': 1.0, 'these': 1.0, 'drooler': 1.0, 'daughter': 1.0, 'having': 1.0, 'cannot': 1.0, 'in': 2.0, 'bib': 1.0, 'my': 1.0, 'dry': 1.0, 'time': 1.0, 'ever': 1.0, 'bibs': 2.0, 'her': 3.0, 'bonus': 1.0, 'clothes': 3.0, 'allowed': 1.0, 'changes': 1.0, 'matter': 1.0, 'and': 2.0, 'get': 1.0, 'soaked': 1.0, 'changed': 1.0, 'is': 1.0, 'regular': 1.0, 'drool': 1.0}
Word element => {'gifts': 1.0, 've': 1.0, 'performance': 1.0, 'for': 1.0, 'impact': 1.0, 'didn': 1.0, 'seemed': 1.0, 'layer': 1.0, 'while': 1.0, 'at': 1.0, 'dryer': 1.0, 'way': 1.0, 're': 1.0, 'my': 1.0, 'bibs': 3.0, 'on': 1.0, 'absorbent': 1.0, 'the': 9.0, 'shower': 1.0, 'of': 4.0, 'and': 3.0, '25': 1.0, 'was': 2.0, 'had': 1.0, 'any': 1.0, 'to': 2.0, 'times': 1.0, 'when': 1.0, 'multiple': 1.0, 'rotation': 1.0, 'daughter': 1.0, 'constant': 1.0, 'they': 1.0, 'drooling': 1.0, 'waterproof': 2.0, 'phase': 1.0, 'an': 1.0, 'packs': 1.0, 'dry': 2.0, 'infant': 1.0, 'notice': 1.0, 't': 1.0, 'we': 1.0, 'bought': 1.0, 'hang': 1.0, 'change': 1.0, 'most': 1.0, 'in': 2.0, 'softest': 1.0, 'texture': 1.0, 'i': 3.0, 'found': 1.0, 'find': 1.0, 'fabric': 1.0, 'her': 1.0, 'baby': 1.0, 'clothes': 1.0, 'stayed': 1.0, 'instructions': 1.0, 'is': 1.0, 'say': 1.0, 'after': 1.0, 'so': 1.0, 'washing': 1.0, 'into': 1.0, 'that': 1.0, 'their': 1.0, 'inconvenient': 1.0, 'these': 2.0, 'some': 1.0, 'effective': 1.0, 'did': 1.0}
Word element => {'item': 1.0, 'to': 1.0, 'our': 1.0, 'now': 1.0, 'else': 1.0, 'everything': 1.0, 'with': 1.0, 'wash': 1.0, 'the': 1.0, 'are': 1.0, 'helped': 1.0, 'they': 4.0, 'my': 1.0, 'meal': 1.0, 'put': 1.0, 'on': 1.0, 'months': 1.0, 'getting': 1.0, 'i': 1.0, 'old': 1.0, 'was': 1.0, 'waterproof': 1.0, 'looking': 1.0, 'bibs': 2.0, 'easily': 1.0, 'for': 1.0, 'from': 1.0, 'these': 1.0, 'some': 1.0, 'and': 2.0, 'block': 2.0, 'totally': 1.0, 'that': 1.0, 'but': 1.0, 'aren': 1.0, 'food': 1.0, 'so': 1.0, 'after': 1.0, 'pureed': 1.0, 'do': 1.0, 'much': 1.0, 'each': 1.0, 're': 1.0, 'off': 1.0, 'in': 1.0, 'length': 1.0, 'width': 1.0, '6': 1.0, 'plus': 1.0, 'good': 1.0, 'clean': 1.0, 'baby': 1.0, 'them': 2.0, 'pretty': 1.0, 'rinse': 1.0, 'go': 1.0, 't': 1.0, 'a': 1.0, 'we': 1.0, 'then': 1.0}
Word element => {'ordereing': 1.0, 'wouldnt': 1.0, 'way': 1.0, 'clear': 1.0, 'for': 2.0, 'huge': 1.0, 'time': 1.0, 'so': 2.0, 'hug': 1.0, 'size': 2.0, 'average': 1.0, 'my': 2.0, 'are': 2.0, 'basically': 1.0, 'the': 4.0, 'these': 3.0, 'been': 1.0, 'that': 2.0, 'between': 1.0, 'they': 4.0, 'on': 1.0, 'your': 1.0, 'aren': 1.0, 'big': 1.0, 'more': 1.0, 'is': 1.0, '5': 1.0, 'didnt': 1.0, 'really': 1.0, 'bibs': 1.0, 'gap': 1.0, 'state': 1.0, 'neck': 1.0, 'wait': 1.0, 'much': 1.0, 'wasted': 1.0, 'month': 1.0, 'old': 1.0, 'i': 4.0, 'guess': 1.0, 'there': 1.0, 't': 1.0, 'a': 1.0, 'her': 2.0, 'too': 1.0, 'description': 1.0, 'and': 1.0, 'bib': 1.0, 'wish': 1.0, 'dont': 1.0, 'serve': 1.0, 'purpose': 1.0, 'to': 3.0, 'have': 3.0, 'be': 1.0, 'older': 1.0, 'use': 1.0}
Word element => {'that': 1.0, 'happy': 1.0, 'so': 1.0, 'am': 1.0, 'love': 1.0, 'found': 1.0, 'i': 3.0, 'my': 1.0, 'daughter': 1.0, 'drools': 1.0, 'life': 1.0, 'and': 2.0, 'constantly': 1.0, 'these': 1.0, 'have': 1.0, 'bibs': 1.0, 'been': 1.0, 'them': 2.0, 'saver': 1.0, 'a': 1.0}
Word element => {'sound': 1.0, 'crinkly': 1.0, 'annoying': 1.0, 'doesn': 1.0, 't': 1.0, 'this': 1.0, 'make': 1.0, 'the': 3.0, 'it': 1.0, 'love': 1.0, '34': 2.0, 'that': 1.0, 'is': 1.0, 'really': 1.0, 'of': 1.0, 'and': 1.0, 'like': 1.0, 'quality': 1.0, 'bib': 1.0, 'inside': 1.0, 'plastic': 1.0}
Word element => {'get': 1.0, 'they': 1.0, 'them': 1.0, 'throw': 1.0, 'just': 1.0, 'can': 1.0, 'we': 1.0, 'so': 1.0, 'bunch': 1.0, 'soaked': 1.0, 'i': 2.0, 'deal': 1.0, 'a': 2.0, 'are': 1.0, '60': 1.0, 'one': 1.0, 'love': 1.0, 'bib': 1.0, 'per': 1.0, 'her': 1.0, 'these': 1.0, 'the': 3.0, 'great': 1.0, '2': 1.0, 'outfit': 1.0, 'is': 1.0, 'at': 1.0, 'have': 1.0, 'all': 1.0, 'wash': 1.0, 'in': 1.0, 'perfect': 1.0, 'whenever': 1.0, 'colors': 1.0, 'always': 1.0, 'there': 1.0, 'that': 2.0, 'compliments': 1.0}
Word element => {'machine': 1.0, 'solids': 1.0, 'bib': 1.0, 'as': 1.0, 'starting': 1.0, 'for': 1.0, 'soft': 1.0, 'basic': 1.0, 'them': 1.0, 'a': 1.0, 'well': 1.0, 'work': 1.0, 'they': 1.0, 'feeding': 1.0, 'bottle': 1.0, 'wash': 1.0, 'washing': 1.0, 'easily': 1.0, 'or': 1.0, 'into': 1.0, 'by': 1.0, 'throwing': 1.0, 'these': 1.0, 'the': 1.0}
Word element => {'overall': 1.0, 'the': 2.0, 'my': 1.0, 'product': 1.0, 'be': 1.0, '12': 1.0, 'one': 1.0, 'would': 1.0, 'design': 1.0, 'excellent': 1.0, 'not': 1.0, 'because': 1.0, 'to': 1.0, 'its': 2.0, 'good': 1.0, 'complaint': 1.0, 'construction': 1.0, 'italian': 1.0, 'that': 1.0, 'of': 1.0, 'up': 1.0, 'set': 1.0, 'easiest': 1.0, 'maneuver': 1.0, 'wheel': 1.0, 'an': 1.0, 'quality': 1.0, 'fact': 1.0, 'stroller': 1.0}
Word element => {'through': 1.0, 'fitting': 1.0, 'don': 1.0, 'want': 1.0, 'wouldn': 1.0, 'second': 1.0, 'as': 1.0, 'recommend': 1.0, 'would': 1.0, 'overall': 1.0, 'bit': 1.0, 'busy': 1.0, 'test': 1.0, '2': 1.0, 'but': 2.0, 'kids': 1.0, 'this': 5.0, 'parked': 1.0, 'like': 1.0, 'you': 1.0, 'traveling': 1.0, 'quite': 1.0, 'with': 1.0, 'duoglider': 1.0, 'challenge': 1.0, 'my': 3.0, 'crowds': 1.0, 'in': 3.0, 'seat': 1.0, 'just': 2.0, 'by': 1.0, 'of': 4.0, 'the': 10.0, 's': 2.0, 'both': 1.0, 'driveway': 1.0, 'could': 1.0, 'sun': 1.0, 'spaces': 1.0, 'can': 1.0, 'so': 2.0, 'smaller': 1.0, 'is': 5.0, 'ultimate': 1.0, 'a': 6.0, 'small': 1.0, 'love': 2.0, 'for': 5.0, 'require': 1.0, 't': 4.0, 'fit': 2.0, 'great': 4.0, 'option': 1.0, 'nobody': 1.0, 'places': 1.0, 'everything': 1.0, 'still': 1.0, 'if': 1.0, 'than': 1.0, 'disneyland': 3.0, 'i': 7.0, 'took': 1.0, 'shade': 1.0, 'it': 11.0, 'much': 1.0, 'navigate': 1.0, 'back': 1.0, 'week': 1.0, 'parking': 1.0, 'easily': 1.0, 'that': 3.0, 'been': 1.0, 'aisles': 1.0, 'cars': 2.0, 'next': 1.0, 'easier': 1.0, 'won': 1.0, 'haven': 1.0, 'stroller': 7.0, 'shopping': 1.0, 'areas': 1.0, 'own': 1.0, 'see': 1.0, 'seems': 1.0, 'too': 1.0, 'time': 1.0, 'wide': 1.0, 'down': 1.0, 'only': 1.0, 'narrow': 2.0, 'between': 2.0, 'racks': 1.0, 'passed': 1.0, 'clothing': 1.0, 'be': 2.0, 'nature': 1.0, 'hidden': 1.0, 'shades': 1.0, 'side': 2.0, 'lots': 1.0, 'compactly': 1.0, 'get': 1.0, 'folds': 1.0, 'aisle': 1.0, 'give': 1.0, 'over': 1.0, 'up': 1.0, 'need': 1.0, 'or': 1.0, 'stears': 1.0, 'first': 1.0, 'are': 1.0, 'to': 6.0, 'pretty': 1.0}
Word element => {'took': 1.0, 'just': 1.0, 'we': 1.0, 'much': 1.0, 'easy': 1.0, 'to': 1.0, 'double': 1.0, 'flaw': 1.0, 'is': 4.0, 'one': 2.0, 'for': 1.0, 'it': 4.0, 'this': 1.0, 'with': 1.0, 'steer': 1.0, 'a': 1.0, 'well': 1.0, 'do': 1.0, 'and': 1.0, 'so': 1.0, 'folds': 1.0, 'up': 1.0, 'priced': 1.0, 't': 1.0, 'great': 1.0, 'nicely': 1.0, 'the': 2.0, 'off': 1.0, 'sun': 1.0, 'doesn': 1.0, 'stroller': 1.0, 'shade': 1.0}
Word element => {'because': 1.0, 'bibs': 1.0, 'clothes': 1.0, 'them': 1.0, '30': 1.0, 'best': 1.0, 'drool': 1.0, 'let': 1.0, 'are': 1.0, 'they': 1.0, 't': 1.0, 'the': 3.0, 'these': 1.0, 'soak': 1.0, 'through': 1.0, 'much': 1.0, 'bought': 1.0, 'onto': 1.0, 'i': 2.0, 'love': 1.0, 'twins': 1.0, 'so': 1.0, 'don': 1.0, 'about': 1.0}
Word element => {'returned': 1.0, 'would': 1.0, 'skin': 1.0, 'his': 1.0, 'against': 1.0, 'months': 1.0, '12': 1.0, 'babies': 1.0, 'product': 1.0, 'for': 1.0, 'they': 1.0, '5': 1.0, 'cry': 1.0, 'age': 1.0, 'of': 2.0, 'worse': 1.0, '4': 1.0, 'i': 1.0, 'choke': 1.0, 'bibs': 2.0, 'thin': 1.0, 'like': 1.0, 'this': 2.0, 'he': 2.0, 'velcro': 1.0, 'not': 2.0, 'baby': 1.0, 'started': 1.0, 'because': 1.0, 'the': 4.0, 'are': 2.0, 'did': 1.0, 'if': 1.0, 'and': 2.0, 'soo': 1.0, 'very': 1.0, 'tight': 1.0, 'my': 1.0, 'say': 1.0, 'is': 1.0, 'it': 1.0, 'month': 1.0, 'when': 1.0, '3': 1.0, 'absorbent': 1.0, 'put': 1.0, 'back': 1.0, 'at': 2.0, 'bib': 1.0, 'all': 2.0, 'to': 1.0, 'was': 1.0, 'also': 1.0, 'rubbed': 1.0}
Word element => {'available': 1.0, 'hesitate': 1.0, 'not': 1.0, 'in': 1.0, 'well': 1.0, 'wash': 1.0, 'up': 1.0, 'hold': 1.0, 'also': 1.0, 'they': 1.0, 'soak': 1.0, 'doesnt': 1.0, 'and': 1.0, 'front': 1.0, 'liquid': 1.0, 'bib': 2.0, 'few': 1.0, 'a': 5.0, 'ordered': 1.0, 'that': 3.0, 'after': 1.0, 'meals': 1.0, 'these': 3.0, 'say': 1.0, 'is': 1.0, 'more': 1.0, 'the': 8.0, 'stays': 1.0, 'great': 1.0, 'are': 2.0, 'especially': 2.0, 'would': 1.0, 'new': 1.0, 'for': 2.0, 'liked': 1.0, '10': 2.0, 'if': 1.0, 'bibs': 3.0, 'baby': 1.0, 'about': 1.0, 'expect': 1.0, 'i': 3.0, 'much': 1.0, 'first': 2.0, 'with': 1.0, 'parent': 1.0, 'last': 1.0, 'to': 2.0, 'all': 1.0, 'day': 2.0, 'must': 1.0, 'price': 1.0, 'best': 2.0, 'teething': 1.0, 'infant': 1.0, 'through': 1.0, 'then': 1.0, 'be': 1.0, 'so': 1.0, 'time': 1.0, 'on': 1.0, 'your': 1.0, 'enjoy': 1.0, 'money': 1.0, 'but': 1.0, 'change': 1.0, 'you': 2.0, 'times': 1.0, 'part': 1.0}
Word element => {'granddaughter': 1.0, 'purchased': 1.0, 'girls': 1.0, 'well': 1.0, 'i': 2.0, 'new': 1.0, 'would': 1.0, 'just': 2.0, 'by': 1.0, 'come': 1.0, 'irritate': 1.0, 'definitely': 1.0, 'they': 1.0, 'between': 1.0, 'liner': 2.0, 'looking': 1.0, 'chance': 1.0, 'cotton': 1.0, 'be': 1.0, 'include': 1.0, 'quality': 1.0, 'them': 1.0, 'inexpensive': 1.0, 'wonderful': 2.0, 'fact': 1.0, 'did': 1.0, 'launder': 1.0, 'to': 5.0, 'as': 3.0, 'beautifully': 1.0, 'these': 3.0, 'shapeless': 1.0, 'spite': 1.0, 'lightweight': 1.0, 'limp': 1.0, 'read': 1.0, 'layers': 1.0, 'little': 2.0, 'expected': 1.0, 'shipping': 1.0, 'my': 2.0, 'may': 1.0, 'me': 1.0, 'anyone': 1.0, 'and': 4.0, 'items': 1.0, 'in': 2.0, 'comments': 1.0, 'is': 2.0, 'many': 2.0, 'reviews': 1.0, 'take': 1.0, 'that': 1.0, 'dryer': 1.0, 'before': 1.0, 'waterproof': 4.0, 'purchasing': 1.0, 'colors': 2.0, 'about': 1.0, 'non': 1.0, 'pleasantly': 1.0, 'bibs': 2.0, 'shipped': 1.0, 'shrink': 1.0, 'are': 2.0, 'boys': 1.0, 'a': 2.0, 'bit': 1.0, 'but': 1.0, 'fresh': 1.0, '2': 1.0, 'was': 1.0, 'were': 1.0, 'recommend': 1.0, 'surprised': 1.0, 'rough': 1.0, 'sandwiched': 1.0, 'soft': 2.0, 'of': 2.0, 'the': 8.0, 'doing': 1.0, 'perfect': 1.0, 'knit': 1.0, 'with': 1.0, 'edges': 1.0, 'out': 1.0, 'finished': 1.0, 'nothing': 1.0, 'ones': 1.0, 'searching': 1.0, 'for': 4.0, 'company': 1.0, 'only': 1.0, 'negative': 1.0, 'themselves': 1.0, 'become': 1.0, 'decided': 1.0, 'disservice': 1.0, 'labeling': 1.0, 'mine': 1.0}
Word element => {'now': 1.0, 'doesn': 1.0, 'months': 1.0, 'son': 1.0, 'others': 1.0, 'bibs': 2.0, 'are': 2.0, 'only': 1.0, 'don': 1.0, 'any': 1.0, '7': 1.0, 'they': 1.0, 'my': 1.0, 'pull': 1.0, 'off': 1.0, 'plain': 1.0, 'immediately': 1.0, 'use': 1.0, 'the': 1.0, 'these': 1.0, 't': 2.0, 'great': 1.0, 'old': 1.0, 'i': 1.0}
Word element => {'not': 1.0, 'tears': 1.0, 'stick': 1.0, 'washing': 1.0, 'before': 1.0, 'warning': 1.0, 'only': 1.0, 'close': 1.0, 'ever': 1.0, 'have': 1.0, 'ones': 1.0, 'wash': 1.0, 'up': 1.0, 'will': 1.0, 'spit': 1.0, 'or': 2.0, 'using': 1.0, 'is': 2.0, 'my': 1.0, 'now': 1.0, 'super': 1.0, 'new': 1.0, 'to': 1.0, 'as': 1.0, 'so': 1.0, 'ruined': 1.0, 'stains': 1.0, 'good': 2.0, 'clean': 1.0, 'perfectly': 1.0, 'it': 2.0, 'come': 1.0, 'with': 2.0, 'first': 1.0, 'wonderful': 1.0, 'velcro': 3.0, 'kid': 1.0, 'son': 1.0, 'middle': 1.0, 'does': 1.0, 'best': 1.0, 'both': 1.0, 'used': 2.0, 'closed': 1.0, 'goodseriously': 1.0, 'and': 4.0, 'in': 3.0, 'love': 2.0, 'for': 1.0, 'are': 2.0, 'job': 1.0, 'the': 4.0, 'these': 3.0, 'a': 2.0, 't': 1.0, 'cause': 1.0, 'they': 3.0, 'year': 1.0, 'if': 1.0, 'layer': 1.0, 'strong': 2.0, 'on': 1.0, 'bibs': 2.0, 'soft': 1.0, 'messes': 1.0, 'colors': 1.0, 'sides': 1.0, 'never': 2.0, 'doesn': 1.0, 'meals': 1.0, 'look': 1.0, 'stain': 1.0, 'clothing': 1.0, 'no': 1.0, 'about': 1.0, 'through': 1.0, 'runs': 1.0, 'protects': 1.0, 'unfastened': 1.0, 'durin': 1.0, 'many': 1.0, 'i': 2.0, 'treated': 1.0, 'clothes': 1.0, 'them': 3.0, 'out': 1.0, 'always': 1.0, 'came': 1.0}
Word element => {'strong': 1.0, 'very': 1.0, 'is': 1.0, 'closure': 1.0, 'second': 1.0, 'a': 1.0, 'then': 1.0, 'they': 1.0, 'are': 1.0, 'absorbent': 1.0, 'wash': 1.0, 'great': 1.0, 'nice': 1.0, 'bought': 1.0, 'colors': 1.0, 'i': 1.0, 'one': 1.0, 'velcro': 1.0, 'set': 2.0}
Word element => {'well': 1.0, 'would': 1.0, 'kid': 1.0, 'this': 1.0, 'so': 1.0, 'analyze': 1.0, 'should': 1.0, 's': 1.0, 'as': 1.0, 'assumed': 1.0, 'son': 1.0, 'my': 1.0, 'even': 1.0, 'but': 1.0, 'more': 1.0, 'these': 1.0, 'need': 2.0, 'caustic': 1.0, 'babies': 2.0, 'drool': 1.0, 'was': 2.0, 'made': 1.0, 'them': 1.0, 'out': 1.0, 'of': 1.0, 'some': 1.0, 'substance': 1.0, 'boys': 1.0, 'sure': 1.0, 'that': 1.0, 'i': 2.0, 'scientists': 1.0}
Word element => {'through': 1.0, 'onto': 1.0, 'soaking': 1.0, 'wetness': 1.0, 'inside': 1.0, 'have': 1.0, 'love': 1.0, 'resist': 1.0, 'vibrant': 1.0, 'that': 1.0, 'their': 1.0, 'keep': 1.0, 'every': 1.0, 'them': 1.0, 'to': 2.0, 'bibs': 1.0, 'clothes': 2.0, 'washer': 1.0, 'color': 1.0, 'my': 1.0, 'are': 1.0, 'really': 1.0, 'drool': 1.0, 'liner': 1.0, 'they': 3.0, 'the': 1.0, 'great': 1.0, 'these': 2.0, 'and': 2.0, 'up': 2.0, 'spit': 1.0, 'day': 1.0, 'worked': 1.0, 'from': 2.0, 'staining': 1.0, 'favorite': 1.0, 'prevent': 2.0, 'hold': 1.0, 'a': 1.0, 'stains': 1.0, 'well': 2.0, 'wash': 1.0, 'in': 1.0, 'i': 2.0}
Word element => {'don': 1.0, 'case': 1.0, 'will': 1.0, 'expect': 1.0, 'keeping': 1.0, 'hope': 1.0, 'really': 1.0, 'either': 1.0, '1yr': 1.0, 'rough': 1.0, 'update': 1.0, 'noticed': 1.0, 'design': 1.0, 'colors': 1.0, 'variety': 1.0, 'too': 2.0, 'not': 2.0, 'dry': 2.0, 'keep': 1.0, 'should': 1.0, 'softest': 1.0, 'pack': 1.0, 'think': 1.0, 'inside': 1.0, 'but': 2.0, 'flimsiness': 1.0, '2': 1.0, 'so': 1.0, 'price': 1.0, 'product': 2.0, 'for': 7.0, 'size': 2.0, 'reviews': 1.0, 'drooling': 2.0, 'pocket': 1.0, 'they': 3.0, 'some': 2.0, 'these': 2.0, 'thickness': 1.0, 'searched': 1.0, 'his': 1.0, 'when': 1.0, 'again': 1.0, 'am': 1.0, 'a': 5.0, 'wont': 1.0, 'skeptical': 1.0, 'do': 1.0, 'messes': 1.0, 'more': 1.0, 'is': 3.0, 'of': 7.0, 'the': 15.0, 'teething': 1.0, 'ordered': 1.0, 'was': 1.0, 'job': 1.0, 'pretty': 1.0, 'to': 6.0, 'as': 2.0, 'old': 2.0, 'months': 2.0, '12': 2.0, 'bibs': 3.0, 'mentioned': 1.0, 'little': 1.0, 'feeding': 2.0, 'waterproof': 2.0, 'etc': 1.0, 'day': 2.0, 'and': 6.0, 'description': 1.0, 't': 1.0, 'rest': 1.0, 'simplicity': 1.0, 'baby': 1.0, 'wipe': 1.0, 'needed': 1.0, 'back': 1.0, 'bother': 1.0, 'comfortable': 1.0, 'big': 1.0, 'layer': 1.0, 'because': 2.0, 'that': 5.0, 'box': 1.0, 'were': 2.0, 'enough': 2.0, 'use': 2.0, 'while': 1.0, 'this': 3.0, 'mentions': 1.0, 'ever': 1.0, 'all': 1.0, 'other': 1.0, 'concerning': 1.0, 'age': 2.0, 'in': 3.0, 'only': 1.0, 'its': 1.0, 'with': 2.0, 'came': 1.0, 'glad': 1.0, 'meant': 1.0, 'able': 1.0, 'have': 1.0, 'just': 2.0, 'also': 1.0, 'received': 1.0, 'cover': 1.0, 'stage': 1.0, 'are': 2.0, 'good': 2.0, 'i': 12.0, 'well': 1.0, 'my': 1.0, 'looks': 1.0, 'catch': 1.0, '3': 2.0, 'still': 1.0, 'e': 1.0, 'item': 1.0, 'online': 1.0, 'since': 1.0, 'like': 2.0, 'him': 4.0, 'it': 4.0, 'wear': 1.0, 'given': 1.0, 'there': 1.0}
Word element => {'look': 1.0, 'need': 1.0, 'though': 1.0, 'few': 1.0, 'last': 1.0, 'will': 1.0, 'looking': 1.0, 'you': 2.0, 'if': 1.0, 'excellent': 1.0, 'are': 1.0, 'so': 1.0, 'more': 2.0, 'price': 1.0, 'c': 1.0, 'was': 1.0, 'were': 1.0, 'months': 2.0, 'won': 1.0, 'i': 2.0, 'tried': 1.0, 'loved': 3.0, 'use': 1.0, 'already': 1.0, 'these': 3.0, 'the': 6.0, 'a': 2.0, 'go': 1.0, 't': 1.0, 'bibs': 2.0, 'for': 5.0, 'than': 1.0, 'drooled': 1.0, 'son': 1.0, 'shirts': 1.0, 'shot': 1.0, 'older': 1.0, 'plastic': 1.0, 'he': 1.0, 'velcro': 1.0, 'of': 1.0, 'bib': 2.0, 'and': 2.0, 'on': 2.0, 'constantly': 1.0, 'll': 1.0, 'inside': 1.0, 'kept': 1.0, 'however': 1.0, 'drool': 1.0, 're': 1.0, 'off': 1.0, 'his': 1.0, 'that': 1.0, 'next': 1.0, 'they': 1.0, 'them': 1.0, 'baby': 2.0, 'elsewhere': 1.0, 'to': 3.0, 'our': 2.0, 'any': 1.0, 'in': 1.0, 'b': 1.0, 'my': 1.0, 'family': 1.0, 'stay': 1.0}
Word element => {'after': 1.0, 'ruined': 1.0, 'hers': 1.0, 'in': 2.0, 'got': 1.0, 'instead': 1.0, 'them': 1.0, 'let': 1.0, 'said': 1.0, 'outfit': 1.0, 'change': 1.0, 'to': 1.0, 'my': 1.0, 'but': 1.0, 'drying': 1.0, 'soaks': 1.0, 'guy': 1.0, 'for': 2.0, 'a': 1.0, 'since': 1.0, 'middle': 1.0, 'drooling': 1.0, 'little': 1.0, 'another': 1.0, 'baby': 1.0, 'not': 1.0, 'because': 1.0, 'friend': 1.0, 'air': 1.0, 'bib': 3.0, 'dry': 2.0, 'and': 1.0, 'only': 1.0, 'need': 1.0, 'the': 5.0, 'great': 1.0, 'of': 2.0, 'stay': 1.0, 'dryer': 2.0, 'part': 1.0, 'his': 1.0, 'clothes': 1.0, 'whole': 1.0, 'i': 2.0}
Word element => {'each': 1.0, 'since': 1.0, 'you': 1.0, 'put': 1.0, 'doesn': 1.0, 'love': 1.0, 'also': 1.0, 'i': 1.0, 'which': 1.0, 'nice': 1.0, 'functioning': 1.0, 'very': 1.0, 'matter': 1.0, 'and': 4.0, 'they': 3.0, 'that': 1.0, 'our': 1.0, 'use': 1.0, 'have': 1.0, 'constant': 1.0, 'we': 1.0, 'absorbent': 1.0, 'bibs': 1.0, 'favorite': 1.0, 'up': 1.0, 'of': 1.0, 're': 3.0, 'still': 2.0, 'held': 1.0, 'same': 1.0, 'several': 1.0, 'on': 2.0, 'months': 1.0, 'after': 1.0, 'wear': 1.0, 'washing': 1.0, 't': 1.0, 'the': 2.0, 'direction': 1.0, 'it': 2.0, 'durable': 1.0, 'velcro': 1.0, 'side': 1.0, 'really': 1.0, 'is': 1.0}
Word element => {'all': 1.0, 'absorb': 1.0, 'really': 1.0, 'cloth': 1.0, 'it': 1.0, 'with': 1.0, 'terry': 1.0, 'baby': 1.0, 'through': 1.0, 'drooling': 1.0, 'when': 2.0, 'are': 1.0, 'you': 1.0, 'double': 1.0, 'the': 1.0, 'these': 1.0, 'liner': 1.0, 'they': 2.0, 'outfits': 1.0, 'wonderful': 1.0, 'can': 1.0, 'to': 1.0, 'soak': 1.0, 'several': 1.0, 'bibs': 1.0, 'stage': 1.0, 'get': 1.0, 'and': 1.0, 'in': 1.0, 'a': 2.0, 'day': 1.0}
Word element => {'all': 1.0, 'other': 1.0, 'ditched': 1.0, 'importantly': 1.0, 'these': 2.0, 'bibs': 2.0, 'were': 1.0, 'stayed': 1.0, 'the': 2.0, 'best': 1.0, 'held': 1.0, 'waterproof': 1.0, 'on': 1.0, 'up': 1.0, 'and': 1.0, 'for': 1.0, 'most': 1.0}
Word element => {'washings': 1.0, 'after': 1.0, 'long': 1.0, 'nice': 1.0, 'clothes': 1.0, 'of': 1.0, 'keep': 1.0, 'packs': 1.0, 'clean': 1.0, 'them': 1.0, 'a': 2.0, 'few': 1.0, 'little': 1.0, 'bought': 1.0, 'bibs': 1.0, 'we': 1.0, 'our': 1.0, 'time': 1.0, 'they': 2.0, 'i': 1.0, 'love': 1.0, 'one': 1.0, 'for': 1.0, 'are': 1.0, 'these': 1.0, 'the': 1.0, 'last': 1.0, 'easy': 1.0, 'to': 1.0, 'numerous': 1.0, 'wash': 1.0, 'and': 2.0}
Word element => {'softer': 1.0, 'or': 1.0, 'buttons': 1.0, 'were': 1.0, 'they': 1.0, 'if': 1.0, 'stars': 1.0, 'give': 1.0, 'would': 1.0, 'had': 1.0, 'four': 1.0, 'all': 1.0, 'and': 1.0, 'bib': 1.0, 'like': 1.0, 'very': 1.0, 'is': 1.0, 'the': 3.0, 'tough': 1.0, 'velcro': 2.0, 'leaves': 1.0, 'scratches': 1.0, '4': 1.0, 'over': 1.0, 'but': 1.0, 'back': 1.0, 'of': 1.0, 'month': 1.0, 'i': 1.0, 'old': 1.0, 'baby': 1.0, 's': 1.0, 'neck': 1.0}
Word element => {'product': 1.0, 'the': 1.0, 'hassle': 1.0, 'simple': 1.0, 'them': 1.0, 'wonderful': 1.0, 'loved': 1.0, 'she': 1.0, 'will': 1.0, 'it': 1.0, 'and': 2.0, 'very': 1.0, 'free': 1.0, 'was': 2.0, 'i': 1.0, 'here': 1.0, 'buy': 1.0, 'again': 1.0}
Word element => {'options': 1.0, 'will': 1.0, 'as': 1.0, 'snaps': 1.0, 'with': 2.0, 'would': 1.0, 'wearing': 1.0, 'while': 1.0, 'he': 1.0, 'or': 2.0, 'neck': 1.0, 'exploring': 1.0, 'son': 1.0, 'colors': 1.0, 'softer': 1.0, 'baby': 1.0, 'of': 1.0, 'around': 1.0, 'is': 3.0, 'i': 1.0, 'old': 1.0, 'us': 1.0, 'for': 2.0, 'the': 2.0, 'finer': 1.0, 'some': 1.0, 'beautifully': 1.0, 'these': 2.0, 'example': 1.0, 'drooler': 1.0, 'are': 1.0, 'my': 2.0, 'four': 1.0, 'month': 1.0, 'one': 1.0, 'resulted': 1.0, 'like': 1.0, 'really': 1.0, 'bibs': 3.0, 'be': 2.0, 'essential': 1.0, 'so': 1.0, 'however': 1.0, 'green': 1.0, 'and': 2.0, 'they': 1.0, 'has': 1.0, 'wash': 1.0, 'in': 1.0, 'quite': 1.0, 'velcro': 2.0, 'perfect': 1.0, 'this': 1.0, 'larger': 1.0, 'hook': 1.0, 'moves': 1.0, 'loop': 1.0, 'variety': 1.0, 'find': 1.0, 'than': 1.0, 'when': 1.0, 'you': 1.0, 'we': 1.0, 'welts': 1.0, 'a': 3.0, 's': 2.0, 'might': 1.0, 'on': 2.0, 'sprouts': 1.0, 'other': 2.0, 'carter': 1.0}
Word element => {'instructions': 1.0, 'follow': 1.0, 'sure': 1.0, 'be': 1.0, 'wet': 1.0, 'day': 1.0, 'able': 1.0, 'i': 2.0, 'back': 1.0, 'like': 2.0, 'that': 3.0, 'changing': 1.0, 'rub': 1.0, 'from': 1.0, 'one': 1.0, 'bought': 1.0, 'little': 1.0, 'dry': 1.0, 'without': 1.0, 'the': 1.0, 'and': 1.0, 'they': 3.0, 'vinyl': 1.0, 'bibs': 2.0, 'really': 1.0, 'outfit': 1.0, 'is': 1.0, 'keep': 3.0, 'better': 1.0, 'on': 1.0, 'guy': 1.0, 'a': 1.0, 't': 1.0, 's': 1.0, 'often': 1.0, 'my': 1.0, 'shirt': 2.0, 'don': 1.0, 'help': 1.0, 'colors': 1.0, 'all': 1.0, 'to': 3.0, 'any': 1.0, 'have': 1.0, 'these': 1.0, 'others': 1.0, 'would': 1.0, 'so': 2.0, 'against': 1.0, 'neck': 1.0, 'his': 1.0, 'even': 1.0, 'are': 1.0, 'solid': 1.0, 'work': 1.0, 'can': 1.0, 'pair': 1.0, 'with': 1.0, 'washing': 1.0, 'he': 1.0}
Word element => {'big': 1.0, 'too': 1.0, 'are': 1.0, 'be': 1.0, 'would': 1.0, 'size': 2.0, 'no': 1.0, 'they': 1.0, 'description': 1.0, 'what': 1.0, 'of': 1.0, 'there': 1.0, 's': 2.0, 'items': 1.0, 'i': 1.0, 'for': 1.0, 'one': 1.0, 'it': 1.0, 'a': 1.0, 'newborns': 1.0, 'fits': 1.0, 'all': 1.0, 'but': 1.0, 'situation': 1.0, 'aren': 1.0, 'these': 2.0, 'figured': 1.0, 't': 1.0}
Word element => {'highly': 1.0, 'a': 1.0, 'stains': 1.0, 'up': 1.0, 'spit': 1.0, 'really': 1.0, 'protecting': 1.0, 'i': 1.0, 'old': 1.0, 'absorbancy': 1.0, 'month': 1.0, 'right': 1.0, 'without': 1.0, '3': 1.0, 'are': 2.0, 'they': 2.0, 'these': 2.0, 'after': 1.0, 'compromising': 1.0, 'recommend': 1.0, 'fantastic': 1.0, 'bibs': 1.0, 'my': 2.0, 're': 1.0, 'perfect': 1.0, 'bottle': 1.0, 'waterproof': 1.0, 'little': 1.0, 'for': 2.0, 'one': 1.0, 'clothes': 1.0, 's': 1.0, 'big': 1.0, 'from': 1.0}
Word element => {'great': 1.0, 'work': 1.0, 'day': 1.0, 'many': 2.0, 'thru': 1.0, 'a': 1.0, 'go': 1.0, 'these': 1.0, 'our': 1.0, 'little': 1.0, 'and': 2.0, 'one': 1.0, 'is': 2.0, 'teething': 1.0, 'stop': 1.0, 'therefore': 1.0, 'drooling': 1.0, 'bibs': 1.0, 'non': 1.0, 'we': 1.0}
Word element => {'avoid': 1.0, 'side': 1.0, 'baby': 1.0, 'irritate': 1.0, 'scratch': 1.0, 'it': 1.0, 'part': 1.0, 'skin': 1.0, 'nicely': 1.0, 'of': 2.0, 'there': 1.0, 'around': 1.0, 'through': 1.0, 'leaks': 1.0, 'will': 1.0, 'also': 1.0, 'wash': 1.0, 'they': 1.0, 'back': 1.0, 'exposed': 1.0, 'liquid': 1.0, 'do': 2.0, 'and': 3.0, 'not': 4.0, 'on': 1.0, 'strong': 1.0, 'my': 1.0, 'are': 2.0, 'easy': 1.0, 'really': 1.0, 'bibs': 1.0, 'easily': 1.0, 'darker': 1.0, 'this': 1.0, 'wish': 1.0, 'soft': 1.0, 'let': 1.0, 'neck': 1.0, 'leave': 1.0, 'have': 1.0, 'velcro': 3.0, 'was': 1.0, 'closures': 1.0, 'fit': 1.0, 'closure': 1.0, 'a': 1.0, 'allow': 1.0, 'munchkin': 1.0, 'did': 1.0, 'to': 2.0, 'any': 2.0, 'colors': 1.0, 'bleed': 1.0, 'bit': 1.0, 'so': 1.0, 'the': 6.0, 'careful': 1.0, 'use': 2.0, 'cooler': 1.0, 'water': 1.0, 'little': 1.0, 'very': 1.0, 'but': 1.0, 'be': 1.0}
Word element => {'all': 1.0, 'bad': 1.0, 'nice': 1.0, 'happy': 1.0, 'cost': 1.0, 'very': 1.0, 'to': 1.0, 'be': 2.0, 'product': 1.0, 'seem': 1.0, 'at': 1.0, 'benefit': 1.0, 'i': 1.0, 'cheaper': 1.0, 'am': 1.0, 'satisfied': 1.0, 'quality': 1.0, 'but': 1.0, 'could': 1.0, 'a': 1.0, 'good': 1.0, 'litthe': 1.0, 'colors': 1.0, 'price': 1.0, 'is': 1.0, 'not': 1.0}
Word element => {'mom': 1.0, 'is': 1.0, 'being': 1.0, 'not': 2.0, 'but': 1.0, 'well': 1.0, 'friendly': 1.0, 'be': 1.0, 'old': 1.0, 'month': 1.0, '5': 1.0, 'our': 1.0, 'around': 1.0, 'fit': 1.0, 'wouldn': 1.0, 'made': 1.0, 'them': 3.0, 'you': 1.0, 'before': 1.0, 'able': 1.0, 'have': 1.0, 't': 2.0, 'the': 2.0, 'drying': 1.0, 'flat': 1.0, 'read': 1.0, 'medium': 1.0, 'ran': 1.0, 'we': 2.0, 'look': 1.0, 'to': 4.0, 'lay': 1.0, 'they': 2.0, 'dry': 2.0, 'and': 2.0, 'of': 1.0, 'up': 1.0, 'instructions': 1.0, 'on': 1.0, 'didn': 1.0, 'heat': 1.0, 'neck': 1.0, 'shrank': 1.0}
Word element => {'piece': 1.0, 'velcro': 1.0, 'only': 1.0, 'fast': 1.0, 'pretty': 2.0, 'air': 1.0, 'rough': 1.0, 'its': 1.0, 'was': 1.0, 'to': 1.0, 'fine': 1.0, 'cut': 1.0, 'came': 1.0, 'prefer': 1.0, 'once': 1.0, 'bibs': 1.0, 'smaller': 1.0, 'my': 1.0, 'are': 1.0, 'these': 1.0, 'the': 3.0, 'lot': 1.0, 'since': 1.0, 'a': 2.0, 'out': 1.0, 'reflux': 1.0, 'them': 2.0, 'acid': 1.0, 'dry': 2.0, 'they': 2.0, 'has': 1.0, 'and': 2.0, 'baby': 1.0, 'best': 1.0, 'dryer': 1.0, 'still': 1.0, 'found': 1.0, 'i': 3.0, 'for': 1.0, 'in': 1.0, 'him': 1.0, 'wish': 1.0, 'spits': 1.0, 'accidentally': 1.0, 'but': 1.0, 'put': 1.0}
Word element => {'34': 2.0, 'being': 1.0, 'keep': 1.0, 'of': 1.0, 'underneath': 1.0, 'they': 1.0, 'claim': 1.0, 'clothing': 1.0, 'waterproof': 1.0, 'with': 1.0, 'the': 4.0, 'promised': 1.0, 'bibs': 2.0, 'were': 1.0, 'delivered': 1.0, 'overly': 1.0, 'dry': 1.0, 'as': 1.0, 'i': 1.0, 'not': 2.0, 'was': 1.0, 'do': 1.0, 'impressed': 1.0}
Word element => {'with': 1.0, 'bibs': 1.0, 'variety': 1.0, 'spitter': 1.0, 'clothes': 1.0, 'the': 1.0, 'these': 1.0, 'manage': 1.0, 'are': 1.0, 'color': 1.0, 'my': 1.0, 'match': 1.0, 'is': 1.0, 'guy': 1.0, 'awesome': 1.0, 'little': 1.0, 'pretty': 1.0, 'keep': 1.0, 'him': 1.0, 'they': 1.0, 'dry': 1.0, 'and': 1.0, 'i': 1.0, 'to': 1.0, 'his': 1.0, 'a': 1.0, 'well': 1.0}
Word element => {'newborns': 1.0, 'spitting': 1.0, 'wet': 1.0, 's': 1.0, 'it': 1.0, 'once': 1.0, 'bib': 1.0, 'through': 1.0, 'have': 1.0, 'the': 1.0, 't': 1.0, 'these': 1.0, 'lot': 1.0, 'a': 1.0, 'doesn': 1.0, 'and': 1.0, 'they': 1.0, 'dry': 1.0, 'been': 1.0, 'highly': 1.0, 'baby': 1.0, 'because': 1.0, 'outfits': 1.0, 'spits': 1.0, 'our': 1.0, 'awesome': 1.0, 'for': 2.0, 'recommended': 1.0, 'keep': 1.0, 'up': 1.0, 'leak': 1.0, 'longer': 1.0, 'his': 1.0, 'liquid': 1.0}
Word element => {'pack': 1.0, 'another': 1.0, 'buying': 1.0, 'be': 1.0, 'll': 1.0, 'in': 2.0, 'wavy': 1.0, 'once': 2.0, 'messes': 1.0, 'of': 2.0, 'awesome': 1.0, 'their': 1.0, 'or': 1.0, 'into': 1.0, 'bulky': 1.0, 'these': 3.0, 'the': 4.0, 'are': 2.0, 'shrink': 1.0, 'you': 1.0, 'match': 1.0, 'either': 1.0, 'waterproof': 1.0, 'aren': 1.0, 'bibs': 1.0, 'other': 1.0, 'they': 1.0, 'drools': 1.0, 'time': 1.0, 'come': 1.0, 'maintain': 1.0, 't': 2.0, 'a': 1.0, 'best': 1.0, 'ton': 1.0, 'colors': 1.0, 'them': 1.0, 'baby': 1.0, 'wash': 2.0, 'up': 1.0, 'don': 1.0, 'soak': 1.0, 'outfit': 1.0, 'i': 1.0, 'hits': 1.0, 'to': 1.0, 'any': 1.0, 'all': 1.0, 'stage': 1.0, 'shape': 1.0, 'too': 1.0, 'and': 1.0, 'through': 1.0}
Word element => {'shoulder': 1.0, 'by': 1.0, 'other': 1.0, 'than': 1.0, 'on': 1.0, 'put': 1.0, 'to': 1.0, 'probably': 1.0, 'five': 1.0, 'and': 2.0, 'me': 1.0, 'outfit': 1.0, 'is': 1.0, 'drool': 1.0, 'bibs': 2.0, 'which': 1.0, 'like': 1.0, 'her': 1.0, 'dryer': 1.0, 'keep': 1.0, 'pretty': 1.0, 'through': 1.0, 'right': 1.0, 'i': 3.0, 'putting': 1.0, 'dry': 1.0, 'these': 3.0, 'the': 3.0, 'well': 1.0, 'my': 2.0, 'now': 1.0, 'had': 1.0, 't': 1.0, 'a': 3.0, 'go': 1.0, 'monster': 1.0, 'day': 1.0, 've': 1.0, 'in': 2.0, 'been': 1.0, 'little': 1.0, 'them': 2.0, 'haven': 1.0, 'deform': 1.0, 'or': 1.0, 'waterproofing': 1.0, 'lose': 1.0, 'their': 1.0, 'secure': 2.0, 'back': 1.0, 'so': 1.0, 'daughter': 2.0, 'harder': 1.0, 'are': 1.0, 'for': 1.0}
Word element => {'pack': 1.0, 'second': 1.0, 'buy': 1.0, 'might': 1.0, 'i': 1.0, 'outfits': 1.0, 'these': 2.0, 'work': 1.0, 'save': 1.0, 'great': 1.0, 'my': 1.0, 'baby': 1.0, 'spits': 1.0, 'times': 1.0, 'day': 1.0, 'up': 1.0, '10': 1.0, 'a': 2.0}
Word element => {'be': 1.0, 'order': 1.0, 'so': 1.0, 'earlier': 1.0, 'for': 2.0, 'review': 1.0, 'in': 1.0, 'an': 1.0, 'mentioned': 1.0, 'infants': 1.0, 'the': 3.0, 'to': 1.0, 'as': 1.0, 'ok': 1.0, 'i': 4.0, 'twins': 1.0, 'someone': 1.0, 'about': 1.0, 'stages': 1.0, 'did': 3.0, 'what': 1.0, 'get': 2.0, 'since': 1.0, 'little': 1.0, '3months': 1.0, 'would': 1.0, 'quite': 1.0, 'nervous': 1.0, 'happy': 1.0, 'was': 1.0, 'unfortunately': 1.0, 'with': 1.0, 'intend': 1.0, 'older': 1.0, 'it': 1.0, 'that': 1.0, 'not': 2.0, '12months': 1.0, 'anything': 1.0, 'received': 1.0, 'stage': 1.0, 'oversize': 1.0, 'take': 1.0, 'impending': 1.0, 'a': 1.0, 'notice': 1.0, 'sizes': 1.0, 'size': 1.0}
Word element => {'them': 1.0, 'wonderful': 1.0, 'are': 1.0, 'one': 1.0, 'buy': 1.0, 'i': 1.0, 'they': 1.0, 'has': 1.0, 'he': 2.0, 'now': 1.0, 'week': 1.0, 'anyways': 1.0, 'my': 1.0, 'and': 1.0, 'last': 1.0, '2': 1.0, 'these': 1.0, 'got': 1.0, 'every': 1.0, 'son': 1.0, 'day': 2.0, 'sometimes': 1.0, 's': 1.0, '5': 2.0, 'on': 1.0, 'months': 1.0, 'goes': 1.0, 'through': 1.0, 'a': 1.0}
Word element => {'get': 1.0, 'neck': 1.0, 'sons': 1.0, 'excellent': 1.0, 'to': 2.0, 'product': 1.0, 'multiple': 1.0, 'without': 1.0, 'went': 1.0, 'using': 1.0, 'a': 3.0, 'from': 1.0, 'rash': 2.0, 'wet': 1.0, 'bibs': 1.0, 'day': 1.0, 'dry': 1.0, 'beginning': 1.0, 'constantly': 1.0, 'and': 2.0, 'my': 1.0}
Word element => {'newborns': 1.0, 'for': 1.0, 'perfect': 1.0, 'inside': 1.0, 'they': 1.0, 'these': 1.0, 'have': 1.0, 'the': 1.0, 'are': 2.0, 'do': 1.0, 'a': 1.0, 'so': 2.0, 'bibs': 1.0, 'soft': 2.0, 'and': 2.0, 'liner': 1.0, 'on': 1.0}
Word element => {'purchase': 1.0, 'pleased': 1.0, 'am': 1.0, 'outfits': 1.0, 'his': 1.0, 'match': 1.0, 'that': 1.0, 'several': 1.0, 'teething': 1.0, 'velcro': 1.0, 'with': 2.0, 'he': 1.0, 'is': 2.0, 'really': 1.0, 'there': 1.0, 'of': 1.0, 'grandson': 1.0, 'fit': 1.0, 'color': 1.0, 'my': 2.0, 'are': 2.0, 'bibs': 1.0, 'these': 1.0, 'they': 1.0, 'for': 2.0, 'liked': 1.0, 'i': 2.0, 'and': 2.0, 'dribbling': 1.0, 'closure': 1.0, 'well': 1.0, 'a': 1.0, 'lot': 1.0, 'adequate': 1.0, 'size': 1.0}
Word element => {'them': 1.0, 'love': 1.0, 'staining': 1.0, 'without': 1.0, 'wash': 1.0, 'and': 1.0, 'against': 1.0, 'well': 1.0, 'bibs': 2.0, 'fit': 1.0, 'through': 1.0, 'go': 1.0, 'per': 1.0, 'fabulous': 1.0, 'another': 1.0, 'food': 1.0, 'so': 1.0, 'twins': 1.0, 'many': 1.0, 'we': 1.0, 'have': 1.0, 'very': 1.0, 'day': 1.0, 'just': 1.0, 'protect': 1.0, 'ordered': 1.0, 'set': 1.0, 'of': 1.0, 'good': 1.0, 'nicely': 1.0, 'these': 1.0, 'they': 1.0, 'are': 1.0, 'i': 2.0, 'cheap': 1.0, 'quality': 1.0}
Word element => {'buy': 1.0, 'overall': 1.0, 'load': 1.0, 'whatever': 1.0, 'll': 1.0, 'or': 1.0, 'again': 1.0, 'you': 2.0, 'before': 1.0, 'else': 1.0, 'fasten': 1.0, 'gentle': 1.0, 'skin': 1.0, 'be': 2.0, 'wearing': 1.0, 'spit': 1.0, 'on': 1.0, 'and': 4.0, 'drool': 1.0, 'more': 1.0, 'is': 2.0, 'fine': 1.0, 'setting': 1.0, 'these': 3.0, 'the': 5.0, 'effective': 1.0, 'really': 1.0, 'bibs': 1.0, 'bright': 1.0, 'could': 1.0, 'a': 1.0, 'colors': 1.0, 'friendly': 1.0, 'absorb': 1.0, 'love': 1.0, 'for': 1.0, 'stars': 1.0, 'sure': 1.0, 'easy': 1.0, 'to': 2.0, 'wash': 1.0, 'up': 2.0, 'so': 1.0, 'boy': 1.0, 'they': 2.0, 'what': 1.0, 'dryer': 1.0, 'match': 1.0, 'ruin': 1.0, 'very': 1.0, 'with': 1.0, 'do': 2.0, 'only': 1.0, 'velcro': 1.0, 'reccommend': 1.0, 'my': 1.0, 'are': 1.0, '4': 1.0, 'i': 2.0, 'thrown': 1.0, 'would': 1.0, 've': 2.0, 'in': 2.0, 'reason': 1.0, 'them': 2.0, 'clothes': 1.0, 'cool': 1.0, 'been': 1.0}
Word element => {'do': 1.0, 'simple': 1.0, 'they': 1.0, 'part': 1.0, 'best': 1.0, 'outfit': 1.0, 'enough': 1.0, 'bright': 1.0, 'set': 1.0, 'over': 1.0, 'chick': 1.0, 'and': 3.0, 'worst': 2.0, 'clever': 1.0, 'colors': 1.0, 'footballs': 1.0, 'or': 1.0, 'with': 2.0, 'products': 1.0, 'i': 3.0, 'contain': 1.0, 'phrases': 1.0, 'is': 2.0, 'dinosaurs': 1.0, 'seem': 1.0, 'relieved': 1.0, 'wear': 1.0, 'but': 1.0, 'puppies': 1.0, 'items': 1.0, 'have': 1.0, 'variety': 1.0, 'just': 1.0, 'find': 1.0, 'because': 1.0, 'so': 1.0, 'boy': 1.0, 'there': 1.0, 'mean': 1.0, 'want': 1.0, 'was': 1.0, 'doesn': 1.0, 'go': 1.0, 'a': 1.0, 's': 1.0, 't': 1.0, 'job': 1.0, 'offenders': 1.0, 'the': 7.0, 'clothes': 1.0, 'them': 1.0, 'are': 3.0, 'that': 2.0, 'ex': 1.0, 'this': 1.0, 'mvp': 1.0, 'daddy': 1.0, 'any': 1.0, 'to': 4.0, 'all': 1.0, 'magnet': 1.0, 'bibs': 1.0, 'him': 1.0, 'be': 1.0, 'little': 1.0, 'very': 1.0}
Word element => {'it': 1.0, 'would': 1.0, 'too': 1.0, 'reasonable': 1.0, 'recommend': 1.0, 'good': 1.0, 'baby': 1.0, 'i': 2.0, 'they': 1.0, 'price': 1.0, 'bibs': 1.0, 'like': 1.0, 'dry': 1.0, 'so': 1.0, 'fast': 1.0, 'far': 1.0, 'fits': 1.0, 'the': 1.0, 'my': 1.0}
Word element => {'too': 1.0, 'them': 1.0, 'suck': 1.0, 'bib': 1.0, 'just': 1.0, 'her': 2.0, 'to': 2.0, 'likes': 1.0, 'have': 1.0, 'we': 1.0, 'on': 1.0, 'spit': 1.0, 'change': 1.0, 'drool': 1.0, 'so': 1.0, 'don': 1.0, 'baby': 1.0, 'colors': 1.0, 'a': 2.0, 're': 2.0, 'and': 6.0, 'our': 1.0, 'awesome': 1.0, 'are': 2.0, 'freely': 1.0, 'bibs': 1.0, 'with': 1.0, 'fun': 1.0, 'comfortable': 1.0, 't': 1.0, 'the': 1.0, 'these': 1.0, 'go': 1.0, 'outfits': 1.0, 'they': 2.0, 'she': 1.0, 'lot': 1.0, 'up': 1.0, 'of': 1.0, 'good': 1.0, 'big': 1.0, 'neck': 1.0, 'can': 1.0, 'size': 1.0, 'clothes': 1.0, 'seem': 1.0, 'nice': 1.0}
Word element => {'too': 1.0, 'visible': 1.0, 'clearly': 1.0, 'decorate': 1.0, 'are': 1.0, 'a': 1.0, 'at': 1.0, 'use': 1.0, 'still': 1.0, 'the': 1.0, 'these': 1.0, 'our': 1.0, 'drawings': 1.0, 'baby': 2.0, 'bought': 1.0, 'i': 1.0, 'shower': 1.0, 'with': 2.0, 'is': 1.0, 'to': 2.0, 'now': 1.0, 'paint': 1.0, 'months': 1.0, 'bibs': 2.0, 'intact': 1.0, 'fabric': 1.0, '8': 1.0}
Word element => {'on': 1.0, 'that': 1.0, 'seen': 1.0, 'but': 1.0, 'bibs': 1.0, 'absorbency': 1.0, 'i': 2.0, 'pretty': 1.0, 'bright': 1.0, 'good': 2.0, 'price': 1.0, 'colors': 2.0, 'times': 1.0, 'still': 1.0, 'pack': 1.0, 'all': 2.0, 'the': 3.0, 'multi': 1.0, 'are': 1.0, 'weak': 1.0, 'for': 1.0, 'love': 1.0, 've': 2.0, 'washed': 1.0, 'several': 1.0, 'them': 1.0, 'getting': 1.0, 'and': 1.0, 'velcro': 1.0, 'is': 1.0}
Word element => {'favorites': 1.0, 'easily': 1.0, 'that': 3.0, 'colors': 1.0, 'don': 1.0, 'and': 6.0, 'away': 1.0, 'to': 3.0, 'get': 1.0, 'easy': 1.0, 'the': 3.0, 'these': 1.0, 'great': 1.0, 't': 1.0, 'they': 5.0, 'love': 2.0, 'stain': 1.0, 'bibs': 1.0, 'plain': 1.0, 'off': 1.0, 'because': 1.0, 'tends': 1.0, 'not': 1.0, 'absorbent': 1.0, 'on': 2.0, 'waterproof': 1.0, 'heat': 1.0, 'are': 7.0, 'fairly': 1.0, 'only': 1.0, 'thing': 1.0, 'bad': 1.0, 'is': 2.0, 'my': 2.0, 'melt': 1.0, 'inside': 1.0, 'layer': 1.0, 'then': 1.0, 'have': 2.0, 'dryer': 2.0, 'misshapen': 1.0, 'high': 1.0, 'throw': 1.0, 'them': 1.0, 'safe': 1.0, 'i': 4.0, 'two': 1.0, 'sets': 1.0}
Word element => {'recommended': 1.0, 'was': 1.0, 'i': 1.0, 'concerned': 1.0, 'little': 1.0, 'love': 1.0, 'are': 1.0, 'my': 1.0, 'absorbent': 1.0, 'bibs': 1.0, 'great': 1.0, 'the': 2.0, 'these': 1.0, 'they': 1.0, 'highly': 1.0, 'colors': 1.0, 'baby': 1.0, 'about': 1.0, 'well': 1.0, 's': 1.0, 'neck': 2.0, 'size': 1.0, 'but': 1.0, 'fit': 1.0, 'around': 1.0}
Word element => {'fyi': 1.0, 'an': 1.0, 'it': 1.0, 'saying': 1.0, 'fault': 1.0, 'is': 1.0, 'that': 1.0, 'mold': 1.0, 'them': 1.0, 'before': 1.0, 'long': 1.0, 'had': 1.0, 'was': 2.0, 'grab': 1.0, 'washing': 1.0, 'he': 1.0, 'first': 1.0, 'became': 1.0, 'find': 1.0, 'i': 4.0, 'months': 2.0, 'when': 1.0, 'favorites': 1.0, 'but': 2.0, 'didn': 1.0, 'sat': 1.0, 'these': 1.0, 'the': 2.0, 'ones': 1.0, 'my': 2.0, 'as': 1.0, 'grow': 1.0, 'our': 1.0, 'they': 3.0, 'bibs': 1.0, 'reflux': 1.0, 'until': 1.0, 'son': 1.0, 'absorbed': 1.0, 'from': 1.0, 'well': 1.0, 'for': 2.0, '9': 1.0, 'constantly': 1.0, 'admit': 1.0, 'did': 1.0, 'if': 1.0, 'too': 1.0, 'and': 2.0, 'were': 1.0, 'spitting': 1.0, 'up': 1.0, 'there': 1.0, 'would': 2.0, 'old': 1.0, 'laundry': 1.0, 't': 1.0, 'a': 1.0, 'notice': 1.0, 'though': 1.0, 'just': 1.0, 'few': 1.0, 'wet': 1.0}
Word element => {'older': 1.0, 'an': 1.0, 'on': 1.0, 'be': 1.0, 'will': 1.0, 'not': 1.0, 'im': 1.0, 'super': 1.0, 'close': 1.0, 'or': 1.0, 'neck': 1.0, 'old': 1.0, 'month': 1.0, 'how': 1.0, 'he': 1.0, '6': 1.0, 'that': 1.0, 'see': 1.0, 'baby': 1.0, 'them': 1.0, 'through': 1.0, 'little': 2.0, 'at': 1.0, 'fit': 1.0, 'love': 1.0, 'my': 4.0, 'pull': 1.0, 'some': 1.0, 'these': 2.0, 'goes': 1.0, 'colours': 1.0, 'bibs': 4.0, 'originally': 1.0, 'chubbier': 1.0, 'so': 3.0, 'needed': 1.0, 'i': 4.0, 'thinking': 1.0, 'used': 1.0, 'carters': 2.0, 'they': 3.0, 'sure': 1.0, 'con': 1.0, 'were': 1.0, 's': 1.0, 'a': 2.0, 'well': 1.0, 'good': 1.0, 'off': 1.0, 'the': 5.0, 'deal': 1.0, 'are': 1.0, 'vibrant': 1.0, 'cherry': 1.0, 'and': 2.0, 'to': 1.0, 'as': 2.0, 'rate': 1.0, 'which': 1.0, 'around': 1.0, 'more': 1.0, 'is': 3.0, 'one': 2.0, 'bought': 1.0, 'cant': 1.0, 'huge': 1.0, 'problem': 1.0, 'snug': 1.0, 'have': 1.0, 'with': 1.0, 'slim': 1.0, 'only': 1.0, 'but': 1.0, 'can': 1.0}
Word element => {'my': 1.0, 'correct': 1.0, 'thankfully': 1.0, 'mine': 1.0, 'purchased': 1.0, 'distinction': 1.0, 't': 1.0, 'didn': 1.0, 'amazon': 1.0, 'infants': 1.0, 'these': 3.0, 'melted': 1.0, 'e': 1.0, 'no': 2.0, 'on': 4.0, 'put': 1.0, 'plastic': 3.0, 'received': 2.0, 'careful': 1.0, 'his': 1.0, 'brands': 1.0, 'cloth': 1.0, 'i': 6.0, 'tried': 1.0, 'problem': 1.0, 'through': 2.0, 'our': 1.0, 'as': 1.0, 'to': 3.0, 'him': 1.0, 'multiple': 1.0, 'be': 1.0, 'they': 4.0, 'bibs': 6.0, 'tossed': 1.0, 'highly': 1.0, 'bloth': 1.0, 'longer': 1.0, 'the': 9.0, 'of': 2.0, 'change': 1.0, 'but': 3.0, 'lots': 1.0, 'never': 1.0, 'times': 1.0, 'when': 2.0, 'you': 2.0, 'all': 1.0, 'other': 3.0, 'we': 2.0, 'a': 3.0, 'born': 1.0, 'cloths': 1.0, 'son': 2.0, 'day': 1.0, 'toddlers': 1.0, 'buy': 1.0, 'out': 1.0, 'was': 1.0, 'recommend': 1.0, 'had': 3.0, 'would': 1.0, 'by': 1.0, 'and': 4.0, 'older': 1.0, 'absorb': 1.0, 'liner': 1.0, 'say': 1.0, 'dry': 3.0, 'not': 1.0, 'them': 2.0, 'per': 1.0, 'in': 3.0, 'air': 1.0, 'after': 1.0, 'while': 1.0, 'waiting': 1.0, 'lot': 1.0, 'one': 1.0, 'ones': 1.0, 'finally': 1.0, 'running': 1.0, 'dryer': 2.0, 'have': 2.0, 'delicate': 1.0, 'cycle': 1.0, 'keep': 1.0, 'did': 1.0, 'great': 2.0, 'couple': 1.0, 'shrinking': 1.0, 'warping': 1.0, 'gifts': 1.0, 'or': 1.0, 'soak': 1.0, 'know': 1.0, 'side': 2.0, 'which': 1.0, 'wash': 1.0, 'for': 4.0, 'shorter': 1.0, 'with': 1.0, 'quality': 1.0, 'their': 1.0, 'purchase': 1.0, 'size': 2.0, 'offer': 1.0, 'because': 1.0, 'that': 1.0, 'young': 1.0}
Word element => {'out': 1.0, 'old': 1.0, 'all': 1.0, 'throw': 1.0, 'wife': 1.0, 'the': 1.0, 'these': 1.0, 'my': 1.0, 'happy': 1.0, 'very': 1.0, 'are': 1.0, 'other': 1.0, 'we': 2.0, 'in': 1.0, 'waterproof': 1.0, 'on': 1.0, 'said': 1.0, 'is': 1.0, 'sides': 1.0, 'could': 1.0, 'bibs': 2.0, 'soft': 1.0, 'survived': 1.0, 'both': 1.0, 'nice': 1.0, 'terry': 1.0, 'with': 2.0, 'velcro': 1.0, 'several': 1.0, 'washings': 1.0, 'between': 1.0, 'so': 1.0, 'quality': 1.0, 'pretty': 1.0, 'barrier': 1.0, 'far': 1.0, 'darn': 1.0, 'good': 1.0}
Word element => {'buy': 1.0, 'work': 1.0, 'will': 1.0, 'that': 1.0, 'gift': 1.0, 'baby': 1.0, 'for': 1.0, 'looking': 1.0, 'you': 1.0, 'if': 1.0, 'what': 2.0, 'exactly': 1.0, 'throws': 1.0, 'bib': 1.0, 'a': 2.0, 'these': 1.0, 'great': 2.0, 'the': 2.0, 're': 1.0, 'my': 1.0, 'should': 1.0, 'child': 1.0, 'liner': 1.0, 'dry': 1.0, 'they': 1.0, 'is': 1.0, 'strong': 1.0, 'actually': 1.0, 'are': 1.0, 'keeps': 1.0, 'at': 1.0, 'no': 1.0, 'shower': 1.0, 'it': 1.0, 'velcro': 1.0, 'he': 1.0, 'and': 1.0, 'do': 2.0, 'matter': 1.0}
Word element => {'i': 1.0, 't': 1.0, 'wet': 1.0, 'his': 1.0, 'colors': 1.0, 'and': 1.0, 'shirt': 1.0, 'own': 1.0, 'my': 1.0, 'baby': 1.0, 'these': 1.0, 'they': 1.0, 'do': 1.0, 'recommend': 1.0, 'contest': 1.0, 'good': 1.0, 'keep': 1.0, 'holding': 1.0, 'actually': 1.0, 'definitely': 1.0, 'from': 1.0}
Word element => {'outfits': 1.0, 'my': 1.0, 'with': 1.0, 'coordinate': 1.0, 'boys': 1.0, 'easily': 1.0, 'can': 1.0, 'colors': 1.0, 'of': 1.0, 'variety': 1.0, 'in': 1.0, 'other': 1.0, 'well': 1.0, 'protects': 1.0, 'drying': 1.0, 'washing': 1.0, 'before': 1.0, 'is': 2.0, 'it': 1.0, 'velcro': 3.0, 'getting': 1.0, 'and': 3.0, 'shape': 1.0, 'size': 1.0, 'protect': 1.0, 'have': 1.0, 'these': 1.0, 'the': 10.0, 'a': 3.0, 't': 1.0, 'crinkly': 1.0, 'nice': 1.0, 'that': 1.0, 'their': 1.0, 'are': 1.0, 'soaked': 1.0, 'from': 1.0, 'spit': 1.0, 'clothes': 2.0, 'bibs': 2.0, 'up': 1.0, 'sons': 1.0, 'keep': 1.0, 'love': 1.0, 'inner': 1.0, 'cute': 1.0, 'after': 1.0, 'close': 1.0, 'retains': 1.0, 'waterproof': 1.0, 'terry': 1.0, 'layer': 1.0, 'load': 1.0, 'good': 1.0, 'i': 3.0, 'two': 1.0, 'feature': 1.0, 'isn': 1.0, 'multiple': 1.0, 'washings': 1.0, 'this': 1.0, 'soft': 1.0, 'grip': 1.0, 'absorbent': 1.0, 'constantly': 1.0, 'strong': 1.0, 'make': 1.0, 'sure': 1.0, 'as': 2.0, 'to': 1.0}
Word element => {'glad': 1.0, 'buy': 1.0, 'good': 1.0, 'since': 1.0, 'any': 1.0, 'without': 1.0, 'low': 1.0, 'second': 1.0, 'much': 2.0, 'do': 1.0, 'pack': 1.0, 'ordered': 1.0, 'ours': 1.0, '4': 1.0, 'two': 1.0, 'otherwise': 1.0, 'outfits': 1.0, 'a': 2.0, 'going': 1.0, 'go': 2.0, 's': 2.0, 'through': 5.0, 'plastic': 1.0, '6': 1.0, 'he': 1.0, 'washing': 1.0, 'like': 1.0, 'overall': 1.0, 'bibs': 7.0, 'have': 3.0, 'dryer': 1.0, 'were': 1.0, 'terrible': 1.0, '2009': 1.0, 'are': 5.0, 'we': 9.0, 'reviews': 1.0, 'between': 1.0, 'they': 6.0, 'great': 2.0, 'these': 3.0, 'my': 1.0, 'earlier': 1.0, 'the': 11.0, 'of': 1.0, 'has': 1.0, 'them': 3.0, 'baby': 1.0, 'unlike': 1.0, 'day': 3.0, 'so': 3.0, 'barrier': 1.0, 'terry': 1.0, '10': 1.0, 'thrown': 1.0, 'layers': 1.0, 'very': 2.0, 'and': 3.0, 'heavy': 1.0, 'as': 3.0, 'to': 3.0, 'from': 1.0, 'part': 1.0, 'son': 1.0, 'if': 2.0, 'still': 1.0, 'multiple': 2.0, 'but': 3.0, 'problems': 1.0, 'that': 5.0, 'because': 1.0, 'up': 2.0, 'wash': 1.0, 'get': 2.0, 'will': 3.0, 'also': 1.0, 'found': 2.0, 'soak': 2.0, 'out': 1.0, 'reviewers': 1.0, 'neck': 1.0, 'where': 2.0, 'at': 1.0, 'is': 2.0, 'liner': 1.0, 'say': 1.0, 'velcro': 2.0, 'on': 2.0, 'stuck': 1.0, 'strong': 1.0, 'reflux': 1.0, 'forget': 1.0, 'attach': 1.0, 'before': 1.0, 'other': 2.0, 'items': 1.0, 'per': 3.0, 'in': 2.0, 'spits': 2.0, 'waterproof': 1.0, 'instructions': 1.0, 'not': 2.0, 'dry': 1.0, 'i': 1.0, 'well': 1.0, 'pointed': 1.0}
Word element => {'velcro': 1.0, 'be': 1.0, 'separate': 1.0, 'dark': 1.0, 'wash': 1.0, 'kind': 1.0, 'sure': 1.0, 'little': 1.0, 'faded': 1.0, 'better': 1.0, 'true': 1.0, 'pretty': 1.0, 'stay': 1.0, 'nice': 1.0, 'time': 1.0, 'so': 1.0, 'sayings': 1.0, 'dumb': 1.0, 'hates': 1.0, 'that': 3.0, 'color': 1.0, 'one': 2.0, 'you': 1.0, 'am': 1.0, 'plus': 1.0, 'half': 1.0, '5': 1.0, 'in': 1.0, 'oat': 1.0, 'side': 1.0, 'is': 3.0, 'last': 1.0, 'soft': 1.0, 'truely': 1.0, 'all': 1.0, 'to': 3.0, 'middle': 1.0, 'seem': 1.0, 'plain': 1.0, 'bibs': 2.0, 'the': 9.0, 'these': 4.0, 'are': 3.0, 'have': 2.0, 'wonderful': 1.0, 'cloth': 1.0, 'old': 1.0, 'make': 1.0, 'on': 3.0, 'i': 1.0, '4': 1.0, 'because': 1.0, 'both': 1.0, 'was': 1.0, 'daycare': 1.0, 'if': 1.0, '10': 1.0, 'terry': 1.0, 'red': 1.0, 'quick': 1.0, 'first': 1.0, 'cereal': 1.0, 'blue': 1.0, 'day': 1.0, 'why': 1.0, 'my': 1.0, 'teething': 1.0, 'it': 2.0, 'month': 1.0, 'and': 4.0, 'ds': 1.0, 'a': 2.0, 'go': 1.0, 'we': 1.0, 'through': 1.0, 'would': 1.0, 'dinner': 1.0, 'lining': 1.0, 'super': 1.0, 'at': 1.0, 'they': 3.0, 'between': 1.0, 'which': 1.0, 'awesome': 1.0}
Word element => {'recommend': 1.0, 'would': 1.0, 'buy': 1.0, 'i': 2.0, 'through': 1.0, 'see': 1.0, 'practically': 1.0, 'any': 1.0, 'as': 1.0, 'layers': 1.0, 'and': 1.0, 'them': 1.0, 'made': 1.0, 'again': 1.0, 'are': 1.0, '2011': 1.0, 'not': 1.0, 'is': 1.0, 't': 1.0, 'the': 2.0, '2': 1.0, 'these': 2.0, 'july': 1.0, 'of': 2.0, 'can': 1.0, 'plastic': 1.0, 'nor': 1.0, 'bibs': 1.0, 'thin': 1.0, 'wouldn': 1.0, 'it': 1.0, 'with': 1.0, 'terry': 2.0, 'between': 1.0, 'so': 1.0, 'that': 1.0, 'you': 1.0}
Word element => {'a': 1.0, 'who': 1.0, 'recommend': 1.0, 'would': 1.0, 'drool': 1.0, 'food': 1.0, 'up': 1.0, 'soaking': 1.0, 'has': 1.0, 'they': 3.0, 'pretty': 2.0, 'because': 1.0, 'disappointed': 1.0, 'got': 1.0, 'first': 1.0, 'still': 1.0, 'i': 3.0, 'when': 1.0, 'to': 1.0, 'was': 1.0, 'later': 1.0, 'thin': 1.0, 'were': 1.0, 'thought': 1.0, 'drooler': 1.0, 'these': 2.0, 't': 1.0, 'the': 2.0, 'are': 2.0, 'someone': 1.0, 'job': 1.0, 'and': 1.0, 'couldn': 1.0, 'do': 1.0, 'five': 1.0, 'legit': 1.0, 'months': 1.0}
Word element => {'least': 1.0, 'more': 1.0, 'lot': 1.0, 'cutesy': 1.0, 'those': 1.0, 'before': 1.0, 'here': 1.0, 'didn': 1.0, 'right': 1.0, 'maybe': 1.0, 'funny': 1.0, 'up': 1.0, 'don': 1.0, 'over': 2.0, 'in': 3.0, 'always': 1.0, 'have': 3.0, 'will': 1.0, 'vivid': 1.0, 'pack': 1.0, 'do': 1.0, 'all': 3.0, 'our': 2.0, 'length': 1.0, 'to': 3.0, 'that': 2.0, 'seemed': 1.0, '1': 1.0, 'great': 1.0, 'a': 6.0, 'then': 1.0, 'fine': 2.0, 'we': 2.0, 'or': 2.0, '4': 1.0, 'when': 1.0, 'times': 1.0, 'you': 2.0, '3': 1.0, 'your': 1.0, 'long': 1.0, 'although': 1.0, 'bibs': 2.0, 'like': 1.0, 'width': 1.0, 'buying': 1.0, 'had': 2.0, 'child': 1.0, 'year': 2.0, 'his': 1.0, 'but': 2.0, 'most': 1.0, '2': 1.0, 'lost': 1.0, 'last': 1.0, 'at': 1.0, 'look': 1.0, 'is': 2.0, 'and': 10.0, 'number': 1.0, 'old': 1.0, 'time': 1.0, 'would': 2.0, 'spares': 1.0, 'boy': 1.0, 'can': 1.0, 'so': 2.0, 'they': 9.0, 'were': 1.0, 'dirty': 1.0, '10': 1.0, 'for': 4.0, 'cost': 2.0, 't': 2.0, 'fit': 1.0, 'diaper': 1.0, 'bag': 1.0, 'kitchen': 1.0, 'start': 1.0, 'colors': 1.0, 'are': 4.0, 'no': 1.0, 'real': 1.0, 'again': 1.0, 'cool': 1.0, 'alley': 1.0, 'designs': 1.0, 'slogans': 1.0, 'the': 10.0, 'of': 3.0, 'extremely': 1.0, 'functional': 1.0, 'perfect': 1.0, 'papery': 1.0, 'who': 1.0, 'bib': 1.0, 'it': 1.0, '75': 1.0, 'i': 2.0, 'well': 1.0, 'son': 1.0, 'height': 1.0, 'ensure': 1.0, 'weight': 1.0, 'just': 1.0, 'not': 2.0, 'get': 3.0, 'was': 1.0, 'clothes': 1.0, 'thickness': 1.0, 'wise': 1.0, 'these': 1.0, 'wash': 3.0, 'use': 1.0}
Word element => {'job': 1.0, 'so': 1.0, 'wearing': 1.0, 'generally': 1.0, 'perfect': 1.0, 'is': 2.0, '10': 1.0, 'son': 1.0, 'require': 1.0, 'pack': 1.0, 'through': 1.0, 'to': 1.0, 'reflux': 1.0, 'my': 1.0, 'frequent': 1.0, 'the': 2.0, 'has': 1.0, 'it': 1.0, 'he': 1.0, 'this': 1.0, 'seep': 1.0, 'and': 1.0, 'changes': 1.0, 'we': 1.0, 'moisture': 1.0, 'does': 2.0, 'not': 1.0, 'for': 1.0, 'whatever': 1.0}
Word element => {'on': 1.0, 'rough': 1.0, 'not': 1.0, 'that': 1.0, 'attach': 1.0, 'way': 2.0, 'no': 1.0, 'trash': 1.0, 'is': 2.0, 'there': 1.0, 'realized': 1.0, 'with': 1.0, 'after': 1.0, 'velcro': 2.0, 'to': 1.0, 'attaching': 1.0, 'wasn': 1.0, 'but': 2.0, 'was': 3.0, 'my': 1.0, 'back': 1.0, 'liquid': 1.0, 'long': 2.0, 'his': 2.0, 'even': 1.0, 'much': 1.0, 'fussy': 1.0, 'neck': 2.0, 'up': 1.0, 'connection': 1.0, 'of': 1.0, 'in': 3.0, 'for': 2.0, 'son': 1.0, 'evenly': 1.0, 'so': 2.0, 'time': 2.0, 'between': 1.0, 'they': 1.0, 'recently': 1.0, 'them': 1.0, 'made': 1.0, 'upset': 1.0, 'scratched': 1.0, 'i': 6.0, 'horribly': 1.0, 'wearing': 1.0, 'from': 1.0, 'soaked': 1.0, 'loved': 1.0, 'these': 1.0, 'playing': 1.0, 'the': 7.0, 'figured': 1.0, 'bibs': 1.0, 'usually': 1.0, 'because': 2.0, 'never': 1.0, 'scarred': 1.0, 'him': 2.0, 'bib': 2.0, 'and': 2.0, 'going': 1.0, 't': 1.0, 'a': 3.0, 'discovered': 1.0, 'being': 1.0, 'it': 2.0}
Word element => {'place': 1.0, 'over': 1.0, 'all': 1.0, 'is': 1.0, 'drool': 1.0, 'when': 1.0, 'mouth': 1.0, 'that': 1.0, 'work': 1.0, 'teething': 1.0, 'super': 1.0, 'during': 1.0, 'those': 1.0, 'moments': 1.0, 'wipe': 1.0, 'to': 1.0, 'for': 2.0, 'quick': 1.0, 'durable': 1.0, 'also': 1.0, 'drooly': 1.0, 'in': 1.0, 'are': 3.0, 'small': 1.0, 'fantastic': 1.0, 'bibs': 1.0, 'they': 2.0, 'great': 1.0, 'the': 3.0, 'these': 1.0, 'lightweight': 1.0, 'across': 1.0, 'enough': 1.0, 'not': 1.0, 'and': 2.0, 'get': 1.0, 'way': 1.0}
Word element => {'bib': 1.0, 'at': 1.0, 'good': 1.0, 'delicate': 1.0, 'rough': 1.0, '2': 1.0, 'the': 1.0, 'find': 1.0, 'but': 1.0, 'toddlers': 1.0, 'deal': 1.0, 'on': 1.0, 's': 1.0, 'his': 1.0, 'works': 1.0, 'skin': 1.0, 'with': 1.0, 'it': 2.0, 'who': 1.0, 'recommendation': 1.0, 'sil': 1.0, 'per': 2.0, 'little': 1.0, 'messy': 1.0, 'feeding': 1.0, 'material': 1.0, 'bought': 1.0, 'for': 1.0, 'scene': 1.0, 'make': 1.0, 'my': 1.0, 'well': 1.0, 'a': 2.0, 'during': 1.0, 'sessions': 1.0, 'i': 1.0, 'use': 1.0, 'newborn': 1.0}
Word element => {'cost': 1.0, 'ones': 1.0, 'bigger': 1.0, 're': 1.0, 'be': 1.0, 'ordering': 1.0, 'wear': 1.0, 'baby': 1.0, 'out': 2.0, 'i': 2.0, 'fit': 1.0, 'the': 3.0, 'and': 3.0, 'size': 1.0, 'right': 1.0, 'can': 2.0, 'of': 1.0, 'thin': 1.0, 'now': 1.0, 'to': 1.0, 'is': 2.0, 'longer': 1.0, 'sooner': 1.0, 'my': 1.0, 'old': 1.0, 'begins': 1.0, 'month': 1.0, 'an': 1.0, 'will': 2.0, 'these': 3.0, 'some': 1.0, '6': 1.0, 'he': 2.0, 'avg': 1.0, 'by': 1.0, 'hope': 1.0, 'or': 1.0, '1yo': 1.0, 'storage': 1.0, 'crawling': 1.0, 'have': 1.0, 'thins': 1.0, 'wide': 1.0, 'go': 1.0, 'does': 1.0, 'than': 2.0, 'in': 1.0, 'later': 1.0, 'when': 1.0, 'you': 1.0, 'tell': 1.0, 'instore': 1.0, 'they': 3.0, 'are': 3.0, 'waterproof': 1.0, 'though': 2.0, 'very': 1.0, 'which': 1.0, 'awesome': 1.0, 'same': 1.0, 'if': 1.0}
Word element => {'friends': 1.0, 'will': 1.0, 'again': 1.0, 'certainly': 1.0, 'would': 1.0, 'are': 1.0, 'of': 1.0, 'like': 1.0, 'little': 1.0, 'for': 1.0, 'love': 1.0, 'recommend': 1.0, 'was': 2.0, 'buying': 1.0, 'not': 2.0, 'tugging': 1.0, 'while': 1.0, 'to': 4.0, 'any': 1.0, 'about': 1.0, 'before': 1.0, 'what': 1.0, 'i': 10.0, 'velcro': 3.0, 'it': 3.0, 'swore': 1.0, 'on': 1.0, 'buy': 1.0, 'looking': 1.0, 'organic': 1.0, 'can': 1.0, 'bibs': 1.0, 'hands': 1.0, 'the': 4.0, 'products': 1.0, 'these': 2.0, 'have': 1.0, 'does': 1.0, 'question': 2.0, 'they': 1.0, 'well': 1.0, 'has': 1.0, 'many': 1.0, 'people': 1.0, 'who': 1.0, 'play': 1.0, 'responded': 1.0, 's': 1.0, 'a': 1.0, 'might': 1.0, 'my': 2.0, 'by': 2.0, 'them': 4.0, 'concerned': 1.0, 'been': 1.0, 'an': 1.0, 'issue': 1.0, 'in': 1.0, 'way': 1.0, 'cotton': 1.0, 'be': 1.0, 'asked': 1.0, 'committed': 1.0, 'say': 1.0, 'holds': 1.0, 'up': 1.0}
Word element => {'packs': 1.0, '2': 1.0, 'bought': 1.0, 'glad': 1.0, 'm': 1.0, 'sayings': 1.0, 'cutesy': 1.0, 'his': 2.0, 'of': 1.0, 'and': 3.0, 'my': 1.0, 'these': 1.0, 't': 1.0, 'crinkly': 1.0, '1': 1.0, 'great': 2.0, 'loud': 1.0, 'trick': 1.0, 'it': 1.0, 'month': 1.0, 'through': 1.0, 'make': 1.0, 'old': 1.0, 'i': 4.0, 'cloth': 1.0, 'clothes': 1.0, 'tired': 1.0, 'thin': 1.0, 'like': 1.0, 'all': 1.0, 'time': 1.0, 'buy': 1.0, 'day': 1.0, 'waterproof': 1.0, 'terry': 1.0, 'layer': 1.0, 'in': 1.0, 'up': 1.0, 'sound': 1.0, 'because': 1.0, 'does': 1.0, 'having': 1.0, 'was': 2.0, 'doesn': 1.0, 'soaking': 1.0, 'changing': 1.0, 'that': 1.0, '10x': 1.0, 'colors': 1.0, 'spits': 1.0, 'are': 1.0, 'bibs': 2.0, 'plain': 1.0, 'the': 4.0, 'without': 1.0}
Word element => {'certainly': 1.0, 'would': 1.0, 'plastic': 1.0, 'compared': 1.0, 'well': 1.0, 'great': 1.0, 'says': 1.0, 'large': 1.0, 'little': 1.0, 'buy': 1.0, 'waterproof': 1.0, 'lined': 1.0, 'a': 1.0, 'neck': 1.0, 'room': 1.0, '3': 1.0, 'make': 1.0, 'with': 1.0, 'it': 1.0, '12': 2.0, 'months': 2.0, 'bibs': 2.0, 'soft': 1.0, 'ups': 1.0, 'the': 2.0, 'they': 3.0, 'label': 1.0, 'my': 2.0, 'are': 3.0, 'wash': 1.0, 'anyway': 1.0, 'six': 1.0, 'old': 1.0, 'i': 1.0, 'week': 1.0, 'but': 1.0, 'spit': 1.0, 'will': 1.0, 'amazingly': 1.0, 'grow': 1.0, 'to': 3.0, 'again': 1.0, 'when': 1.0, 'am': 1.0, 'not': 1.0, 'sure': 1.0, 'fit': 1.0, 'for': 1.0, 'given': 1.0, 'son': 1.0, 'awesome': 1.0, 'his': 1.0, 'size': 1.0, 'and': 2.0, 'have': 1.0, 'handled': 1.0, 'these': 2.0, 'already': 1.0, 'some': 1.0}
Word element => {'ever': 1.0, 'best': 1.0, 'them': 1.0, 'hes': 1.0, 'we': 1.0, 'months': 2.0, '4': 1.0, 'wearing': 1.0, 'when': 1.0, 'at': 1.0, 'was': 1.0, 'these': 1.0, 'our': 1.0, 'bib': 1.0, 'and': 1.0, 'now': 1.0, 'son': 1.0, '2': 1.0, 'still': 1.0, 'purchased': 1.0, 'old': 1.0}
Word element => {'saying': 1.0, 'stupid': 1.0, 'at': 1.0, 'to': 1.0, 'have': 1.0, '20word': 1.0, 'you': 1.0, 'so': 1.0, 'goes': 1.0, 'through': 1.0, 'texture': 1.0, 'jt': 1.0, 'good': 1.0, 'why': 1.0, 'from': 1.0, 'least': 1.0, 'might': 1.0, 'do': 1.0, 'and': 2.0, 'since': 1.0, 'quality': 1.0, 'doesn': 2.0, 'write': 1.0, 'distract': 1.0, 'that': 1.0, 'he': 1.0, 'velcro': 1.0, 'outfits': 1.0, 'color': 1.0, 'amazon': 1.0, 'many': 1.0, 'is': 2.0, 'feel': 1.0, 'plasticky': 1.0, 'buy': 1.0, 'i': 1.0, 'just': 1.0, 'description': 1.0, 'strong': 1.0, 't': 2.0, 'great': 2.0, 'more': 1.0}
Word element => {}
Word element => {'easier': 1.0, 'life': 1.0, 'her': 1.0, 'make': 1.0, 'importantly': 1.0, 'will': 2.0, 'mom': 1.0, 'gift': 1.0, 'a': 1.0, 'more': 1.0, 'is': 1.0, 'use': 2.0, 'easy': 1.0, 'cute': 1.0, 'in': 1.0, 'information': 1.0, 'new': 1.0, 've': 1.0, 'baby': 2.0, '2nd': 1.0, 'their': 1.0, '4th': 1.0, 'friends': 1.0, 'etc': 1.0, 'i': 2.0, 'nutritional': 1.0, 'buy': 1.0, 'beyond': 1.0, 'recipes': 1.0, 'love': 1.0, 'for': 1.0, 'one': 1.0, 'my': 1.0, 'the': 4.0, 'great': 1.0, 'having': 1.0, 'hints': 1.0, 'toddler': 2.0, 'but': 1.0, 'blankets': 1.0, 'quickly': 2.0, '3rd': 1.0, 'bistro': 2.0, 'again': 2.0, 'outgrown': 1.0, 'you': 2.0, 'recognition': 1.0, 'to': 1.0, 'all': 2.0, 'once': 1.0, 'of': 1.0, 'know': 1.0, 'those': 1.0, 'and': 5.0, 'adorable': 1.0, 'outfits': 1.0, 'are': 1.0, 'helpful': 1.0, 'contained': 1.0, 'had': 1.0, 'either': 1.0, 'or': 1.0, 'that': 2.0, 'box': 2.0, 'ruined': 1.0, 'it': 1.0, 'informative': 1.0}
Word element => {'little': 1.0, 'picky': 1.0, 'my': 1.0, 'loved': 1.0, 'don': 1.0, 'i': 2.0, 'find': 1.0, 'displayed': 1.0, 'time': 1.0, 'info': 2.0, 'is': 1.0, 'eater': 1.0, 'how': 1.0, 'was': 1.0, 'to': 2.0, 'through': 1.0, 'system': 1.0, 'have': 2.0, 'all': 1.0, 'books': 1.0, 'leaf': 1.0, 'card': 1.0, 't': 1.0, 'the': 3.0, 'great': 2.0, 'tips': 1.0, 'for': 1.0}
Word element => {'shower': 1.0, 'best': 1.0, 'way': 1.0, 'on': 1.0, 'have': 1.0, 'trust': 1.0, 'check': 1.0, 'more': 1.0, 'see': 1.0, 'wants': 1.0, 'still': 1.0, 'if': 1.0, 't': 1.0, 'available': 1.0, 'now': 2.0, 'box': 1.0, 'thank': 1.0, 'toddler': 1.0, 'just': 1.0, 'but': 3.0, 'food': 1.0, 'baby': 3.0, 'out': 4.0, 'individual': 1.0, 'new': 1.0, 'time': 1.0, 'can': 2.0, 'so': 3.0, 'get': 1.0, 'months': 1.0, 'color': 1.0, 'you': 2.0, 'follow': 1.0, 'tabbed': 1.0, 'family': 1.0, 'around': 1.0, 'not': 4.0, 'a': 5.0, 'them': 2.0, 'has': 2.0, 'packed': 1.0, 'information': 1.0, 'we': 1.0, 'take': 1.0, 'pop': 1.0, 'really': 1.0, 'wait': 1.0, 'cook': 1.0, 'read': 2.0, 'two': 1.0, 'little': 1.0, 'found': 1.0, 'easy': 2.0, 'creation': 1.0, 'am': 1.0, 'eating': 1.0, 'mom': 2.0, 'learning': 1.0, 'me': 1.0, 'my': 3.0, 'coded': 1.0, 'head': 1.0, 'anyone': 1.0, 'and': 7.0, 'cards': 2.0, 'yummy': 1.0, 'buying': 1.0, 'amazing': 1.0, 'only': 2.0, 'living': 1.0, 'as': 5.0, 'to': 9.0, 'be': 1.0, 'what': 3.0, 'about': 2.0, 'purse': 1.0, 'whole': 2.0, 'tips': 3.0, 'for': 9.0, 'love': 1.0, 'great': 2.0, 'the': 13.0, 'ever': 1.0, 'an': 1.0, 'finally': 1.0, 'anywhere': 1.0, 'recipes': 1.0, 'well': 4.0, 'i': 7.0, 'especially': 1.0, 'in': 2.0, 'sections': 1.0, 'store': 1.0, 'was': 1.0, 'armed': 1.0, 'shopping': 1.0, 'our': 1.0, 'how': 1.0, 'another': 1.0, 'format': 1.0, 'label': 1.0, 'at': 3.0, 'is': 3.0, 'look': 1.0, 'got': 1.0, 'avoid': 1.0, 'there': 1.0, 'first': 1.0, 'are': 2.0, 'also': 2.0, 'pull': 1.0, 'home': 1.0, 'safety': 1.0, 'house': 1.0, 'changed': 2.0, 'process': 1.0, 'better': 1.0, 'grateful': 1.0, 'gift': 2.0, 'nutrition': 1.0, 'with': 4.0, 'oh': 1.0, 'few': 1.0, 'this': 2.0, 'thought': 1.0, 'it': 2.0, 'one': 1.0, 'try': 1.0, 'lives': 1.0}
Word element => {'like': 1.0, 'other': 1.0, 'having': 1.0, 'preferred': 1.0, 'instead': 1.0, '2': 1.0, 'change': 1.0, 'would': 2.0, 'thing': 1.0, 'need': 1.0, 'in': 3.0, 'only': 1.0, 'do': 1.0, 'sand': 1.0, 'orange': 1.0, 'the': 4.0, 'have': 2.0, 'of': 2.0, 'or': 2.0, 'lost': 1.0, 'color': 1.0, 'one': 2.0, 'handle': 1.0, 'parents': 1.0, 'are': 1.0, 'not': 1.0, 'holes': 1.0, 'they': 2.0, 'has': 1.0, 'get': 1.0, 'water': 1.0, 'purple': 1.0, 'i': 2.0, 'two': 1.0, 'carry': 1.0, 'these': 2.0, 'some': 3.0, 'play': 1.0, 'drip': 1.0, 'and': 1.0, 'too': 1.0, 'to': 3.0, 'cups': 2.0, 'that': 2.0, 'red': 1.0, 'stacking': 1.0, 'love': 1.0, 'product': 1.0, 'safe': 1.0, 'many': 1.0, 'largest': 1.0, 'a': 1.0, 'nice': 1.0, 'it': 1.0, 'more': 1.0, 'is': 3.0, 'around': 1.0, 'made': 1.0, 'germany': 1.0, 'relief': 1.0, 'if': 1.0, 'you': 1.0, 'gives': 1.0, 'plastic': 1.0, 'what': 1.0}
Word element => {'noise': 1.0, 'batteries': 1.0, 'require': 1.0, 'that': 1.0, 'simple': 1.0, 'to': 1.0, 'him': 1.0, 'allows': 1.0, 'piece': 1.0, 'on': 1.0, 'carry': 1.0, 'things': 2.0, 'love': 1.0, 'handle': 1.0, 'of': 1.0, 'don': 1.0, 'largest': 1.0, 'toy': 1.0, '15': 1.0, 'taking': 1.0, 's': 1.0, 'or': 1.0, 'into': 2.0, 'loves': 1.0, 'it': 1.0, 'he': 1.0, 'this': 2.0, 'toys': 1.0, 'grandson': 1.0, 'containers': 1.0, 'make': 1.0, 'around': 1.0, 'fit': 1.0, 'bill': 1.0, 'month': 1.0, 'my': 1.0, 't': 1.0, 'the': 3.0, 'i': 1.0, 'old': 1.0, 'putting': 1.0, 'perfectly': 1.0, 'and': 1.0, 'out': 1.0}
Word element => {'too': 1.0, 'play': 1.0, 'brothers': 1.0, 'tumble': 1.0, 'holding': 1.0, 'be': 1.0, 'rough': 1.0, 'to': 1.0, 'needs': 1.0, 'and': 2.0, 'is': 1.0, 'her': 1.0, 'even': 1.0, 'what': 1.0, 'goddaughter': 1.0, 'for': 1.0, 'my': 1.0, '2': 1.0, 'the': 1.0, 'it': 3.0, 'with': 2.0, 'this': 1.0, 'though': 1.0, 'myself': 1.0, 'mostly': 1.0, 'well': 1.0, 'a': 2.0, 'purchased': 1.0, 'exactly': 1.0, 'old': 1.0, 'i': 2.0, 'nostalgia': 1.0, 'big': 1.0, 'year': 1.0, 'as': 1.0, 'that': 1.0, 'up': 1.0, 'says': 1.0, 'set': 1.0, 'owned': 1.0, 'them': 1.0, 'child': 1.0, 's': 1.0}
Word element => {'nest': 1.0, 'sprinkle': 1.0, 'drain': 1.0, 'blue': 1.0, 'yellow': 1.0, 'with': 1.0, 'stack': 1.0, 'them': 1.0, 'bathtime': 1.0, 'play': 1.0, 'we': 2.0, 'our': 2.0, 'pour': 1.0, 'girls': 1.0, 'toys': 2.0, 'for': 2.0, 'love': 1.0, 'to': 3.0, 'old': 1.0, 'bought': 1.0, 'holes': 1.0, 'the': 1.0, 'these': 2.0, 'replace': 1.0, 'sturdy': 1.0, 'bath': 2.0, 'so': 1.0, 'would': 1.0, 'they': 1.0, 'free': 1.0, 'all': 1.0, 'have': 2.0, 'pvc': 1.0, 'and': 4.0, 'buckets': 1.0, 'are': 1.0, 'two': 1.0, 'fun': 1.0}
Word element => {'time': 1.0, 'bath': 1.0, 'with': 1.0, 'month': 1.0, 'my': 1.0, 'are': 1.0, 'great': 1.0, 'the': 1.0, 'stacks': 1.0, 'well': 1.0, 'cups': 1.0, '13': 1.0, 'also': 1.0, 'and': 2.0, 'nests': 1.0, 'during': 1.0, 'we': 2.0, 'old': 1.0, 'made': 1.0, 'nesting': 1.0, 'them': 3.0, 'talk': 1.0, 'about': 1.0, 'colors': 1.0, 'have': 1.0, 'had': 1.0, 'fun': 1.0}
Word element => {'loves': 1.0, 'stack': 1.0, 'the': 1.0, 'fancy': 1.0, 'daughter': 1.0, 'in': 1.0, 'simple': 1.0, 'just': 1.0, 'them': 1.0, 'to': 1.0, 'nothing': 1.0, 'fun': 1.0, 'carry': 1.0, 'around': 1.0, 'my': 1.0, 'biggest': 1.0, 'put': 1.0, 'one': 2.0, 'possibilities': 1.0, 'little': 1.0, 'objects': 1.0, 'side': 1.0, 'each': 1.0, 'endless': 1.0}
Word element => {'cheap': 1.0, 'these': 1.0, 'stack': 1.0, 'i': 1.0, 'making': 1.0, 'other': 1.0, 'many': 1.0, 'so': 1.0, 'has': 1.0, 'toy': 1.0, 'almost': 1.0, 'until': 1.0, 'was': 1.0, 'its': 1.0, 'it': 3.0, 'this': 1.0, 'he': 4.0, 'attention': 1.0, 'can': 1.0, 'but': 3.0, 'with': 2.0, 'stacking': 1.0, 's': 1.0, 'we': 2.0, 'a': 3.0, 'see': 2.0, 'really': 1.0, '15': 1.0, 'toys': 1.0, 'when': 2.0, 'good': 1.0, 'paid': 1.0, 'son': 1.0, 'to': 3.0, 'any': 1.0, 'our': 1.0, 'cups': 1.0, 'as': 3.0, 'never': 2.0, 'him': 2.0, 'the': 3.0, 'park': 1.0, 'bought': 2.0, 'months': 1.0, 'huge': 1.0, 'sandpit': 1.0, 'mainly': 1.0, 'used': 1.0, 'drains': 1.0, 'in': 1.0, '20months': 1.0, 'tub': 1.0, 'now': 1.0, 'fill': 1.0, 'up': 1.0, 'and': 2.0, 'loves': 1.0, 'been': 1.0, 'using': 1.0}
Word element => {'too': 1.0, 'bath': 1.0, 'in': 1.0, 'they': 1.0, 'can': 1.0, 'perfectly': 1.0, 'the': 2.0, 'this': 1.0, 'stack': 1.0, 'does': 1.0, 'i': 1.0, 'safe': 1.0, 'colors': 1.0, 'go': 1.0, 'a': 1.0, 'that': 1.0, 'nest': 1.0, 'wanted': 1.0, 'and': 2.0, 'job': 1.0, 'good': 1.0, 'material': 1.0, 'would': 1.0}
Word element => {'has': 1.0, 'which': 1.0, 'through': 1.0, 'flow': 1.0, 'water': 1.0, 'watch': 1.0, 'a': 1.0, 'months': 1.0, 'stack': 1.0, 'cups': 1.0, 'after': 1.0, 'of': 1.0, 'bored': 1.0, 'became': 1.0, 'it': 1.0, 'one': 2.0, 'little': 1.0, '18': 1.0, 'few': 1.0, 'my': 1.0, 'holes': 1.0, 'these': 1.0, 'more': 1.0, 'the': 1.0, 'times': 1.0, 'but': 1.0, 'yours': 1.0, 'may': 1.0, 'like': 1.0, 'and': 1.0}
Word element => {'stackable': 1.0, 'and': 2.0, 'properties': 1.0, 'bath': 1.0, 'is': 1.0, 's': 1.0, 'products': 1.0, 'colors': 1.0, 'baby': 1.0, 'great': 1.0, 'the': 2.0, 'sizes': 1.0, 'all': 1.0, 'store': 1.0, 'learn': 1.0, 'easy': 2.0, 'there': 1.0, 'of': 2.0, 'exploration': 1.0, 'encourages': 1.0, 'clean': 1.0, 'out': 2.0, 'this': 1.0, 'only': 1.0, 'need': 1.0, 'for': 1.0, 'one': 1.0, 'they': 1.0, 'to': 3.0, 'wow': 1.0, 'water': 1.0}
Word element => {'anyone': 1.0, 'so': 1.0, 's': 1.0, 'girly': 1.0, 'too': 1.0, 'nice': 1.0, 'really': 1.0, 'looks': 1.0, 'shelf': 1.0, 'half': 1.0, 'a': 2.0, 'our': 1.0, 'on': 2.0, 'for': 2.0, 'gift': 2.0, 'and': 3.0, 'year': 1.0, 'as': 2.0, 'boyfriend': 1.0, 'my': 1.0, 'little': 1.0, 'not': 1.0, 'because': 1.0, 'great': 1.0, 't': 1.0, 'either': 1.0, 'loved': 1.0, 'got': 1.0, 'needed': 1.0, 'i': 1.0, 'to': 3.0, 'be': 2.0, 'ship': 1.0, 'his': 2.0, 'house': 1.0, 'we': 1.0, 'he': 1.0, 'this': 1.0, 'it': 4.0, 'wouldn': 1.0, 'able': 1.0, 'together': 1.0}
Word element => {'great': 1.0, 'are': 1.0, 'they': 1.0, 'now': 1.0, 'by': 1.0, 'everyone': 1.0, 'baby': 1.0, 'in': 1.0, 'of': 1.0, 'much': 1.0, 'really': 1.0, 'pretending': 1.0, 'around': 1.0, 'did': 1.0, 'move': 1.0, 'beanie': 1.0, 'see': 1.0, 'couldn': 1.0, 'reviewing': 1.0, 'and': 2.0, 'dropped': 1.0, 'what': 1.0, 'animal': 1.0, 'stuffed': 1.0, 'had': 1.0, 'one': 2.0, 'for': 4.0, 'i': 4.0, 'makes': 1.0, 'old': 1.0, 'buy': 1.0, 'got': 1.0, 'playing': 1.0, 'the': 2.0, 'this': 1.0, 'she': 2.0, 'it': 4.0, 'why': 1.0, 'year': 1.0, 'because': 1.0, 'find': 1.0, 'walk': 1.0, 'knows': 1.0, 'need': 2.0, 'my': 1.0, 'another': 1.0, 'to': 3.0, 'as': 1.0, 'any': 1.0, 'toy': 2.0, 'about': 1.0, 'replacement': 1.0, 'wasn': 1.0, 'her': 1.0, 'specific': 1.0, 'think': 1.0, 'on': 1.0, 'strong': 1.0, 'attachment': 1.0, 'that': 2.0, 'something': 1.0, '2': 1.0, 'can': 1.0, 'but': 2.0, 'there': 1.0, 'playtime': 1.0, 'don': 1.0, 'up': 1.0, 'go': 1.0, 'we': 1.0, 't': 3.0, 'a': 5.0, 's': 2.0, 'way': 1.0, 'sit': 1.0}
Word element => {'actually': 1.0, 'waste': 1.0, 'is': 1.0, 'everyone': 1.0, 'would': 1.0, 'imagined': 1.0, 'better': 2.0, 'less': 1.0, 'recommend': 1.0, 'minutes': 1.0, 'sticks': 1.0, 'room': 1.0, '20': 1.0, 'wet': 1.0, 'to': 4.0, 'when': 1.0, 'you': 2.0, 'waiting': 1.0, 'big': 1.0, 'border': 2.0, 'have': 1.0, 'this': 3.0, 'looks': 2.0, 'it': 4.0, 'entire': 1.0, 'bought': 2.0, 'i': 6.0, 'tried': 1.0, 'involved': 1.0, 'then': 1.0, 'took': 1.0, 'son': 1.0, 'cars': 1.0, 'read': 1.0, 'the': 4.0, 'a': 1.0, 's': 2.0, 't': 2.0, 'that': 4.0, 'below': 1.0, 'and': 5.0, 'me': 1.0, 'paper': 2.0, 'reason': 1.0, 'review': 1.0, 'well': 1.0, 'wouldn': 1.0, 'even': 1.0, 'didn': 1.0, 'textured': 1.0, 'than': 1.0, 'because': 1.0, 'stick': 1.0, 'my': 2.0, 'time': 1.0, 'walls': 1.0, 'theme': 1.0, 'or': 2.0, 'of': 1.0, 'sticker': 1.0, 'work': 1.0, 'can': 1.0, 'right': 1.0, 'put': 1.0, 'on': 1.0, 'about': 1.0, 'wall': 3.0, 'no': 1.0, 'thinks': 1.0, 'wait': 1.0, 'wetting': 1.0}
Word element => {'room': 1.0, 'his': 1.0, 'he': 1.0, 'cars': 1.0, 'in': 1.0, 'squat': 1.0, 'for': 1.0, 'my': 1.0, 'got': 1.0, 'cauz': 1.0, 'if': 1.0, 'it': 3.0, 'ain': 2.0, 'loves': 1.0, 'this': 1.0, 'grandson': 1.0, 't': 2.0}
Word element => {'stays': 1.0, 'thomas': 1.0, 'connor': 1.0, 'amazingness': 1.0, 'graco': 1.0, 'when': 1.0, 'yet': 1.0, 'named': 1.0, 'enough': 1.0, 'long': 1.0, 'carseat': 1.0, 'not': 1.0, 'that': 2.0, 'is': 3.0, 'i': 2.0, 'it': 2.0, 'only': 1.0, 'grows': 1.0, 'for': 1.0, 'fit': 1.0, 'product': 1.0, 'travel': 1.0, 'stroller': 1.0, 'heavy': 1.0, 'the': 2.0, 'happy': 1.0, 'quite': 1.0, 'new': 1.0, 'draw': 1.0, 'figure': 1.0, 'little': 1.0, 'darius': 1.0, 'and': 3.0, 'like': 1.0, 'which': 1.0, 'back': 1.0, 'carrier': 1.0, 's': 1.0, 'a': 1.0, 'this': 1.0, 'duty': 1.0, 'full': 1.0, 'system': 1.0, 'size': 1.0, 'newborn': 1.0, 'out': 1.0, 'of': 1.0, 'dry': 1.0, 'infant': 1.0, 'my': 3.0, 'may': 1.0, 'better': 1.0, 'still': 1.0, 'bundle': 1.0}
Word element => {'good': 1.0, 'whole': 1.0, 'had': 1.0, 'fit': 1.0, 'does': 1.0, 'variety': 1.0, 'do': 1.0, 'two': 1.0, 'i': 1.0, 'on': 1.0, 'stuff': 1.0, 'fits': 1.0, 'under': 1.0, 'compartment': 1.0, 'bad': 1.0, 'have': 1.0, 'not': 2.0, 'double': 2.0, 'easily': 1.0, 'you': 1.0, 'the': 7.0, 'isn': 1.0, 'ever': 1.0, 'ease': 1.0, 'and': 2.0, 'down': 1.0, 'lightest': 1.0, 'did': 1.0, 'is': 3.0, 'fall': 1.0, 'gear': 1.0, 'with': 2.0, 'it': 7.0, 'stroller': 3.0, 'will': 1.0, 'kids': 1.0, 'carries': 1.0, 'accepted': 1.0, 'wish': 1.0, 'this': 1.0, 'holders': 1.0, 'easy': 1.0, 'get': 1.0, 'folds': 1.0, 'seats': 1.0, 'however': 1.0, 'access': 1.0, 'very': 2.0, 'though': 3.0, 'handlebar': 1.0, 'happy': 1.0, 'cup': 1.0, 'given': 1.0, 'one': 3.0, 's': 2.0, 't': 1.0, 'we': 2.0, 'a': 4.0, 'need': 1.0, 'already': 1.0, 'some': 1.0, 'lot': 1.0, 'space': 1.0, 'quickly': 1.0, 'trunk': 1.0, 'as': 1.0, 'seat': 1.0, 'to': 2.0, 'that': 2.0, 'been': 1.0, 'into': 1.0, 'infant': 2.0, 'car': 2.0, 'out': 1.0, 'of': 3.0, 'rather': 1.0}
Word element => {'years': 1.0, 'will': 1.0, 'each': 1.0, 'on': 1.0, 'designs': 1.0, 'different': 1.0, 'ribbons': 1.0, 'out': 1.0, 'get': 1.0, 'so': 1.0, 'is': 1.0, 'that': 1.0, 'thick': 1.0, 'nicely': 1.0, 'fleecy': 1.0, 'up': 1.0, 'he': 2.0, 'with': 3.0, 'was': 2.0, 'i': 1.0, 'old': 1.0, 'dvd': 2.0, 'night': 1.0, 'baby': 2.0, 'his': 1.0, 'to': 2.0, 'einstein': 1.0, 'too': 1.0, 'and': 5.0, 'for': 3.0, 'medicine': 1.0, 'feeling': 1.0, 'of': 1.0, 'one': 1.0, 'bought': 1.0, 'tightly': 1.0, 'my': 1.0, 'are': 1.0, 'blanket': 2.0, 'tags': 3.0, 'began': 1.0, '7': 1.0, 'month': 1.0, 'material': 1.0, 'really': 2.0, 'bad': 1.0, 'tylenol': 1.0, 'after': 1.0, 'be': 1.0, 'giving': 1.0, 'him': 3.0, 'stitched': 1.0, 'dose': 1.0, 't': 1.0, 's': 1.0, 'a': 3.0, 'we': 1.0, 'snuggled': 1.0, 'soft': 1.0, 'this': 3.0, 'taggie': 1.0, 'favorite': 1.0, 'down': 1.0, 'comforted': 1.0, 'watch': 1.0, 'were': 1.0, 'the': 4.0, 'distraction': 1.0, 'can': 1.0, 'work': 1.0, 'pulled': 1.0, 'great': 1.0, 'until': 1.0, 'son': 1.0, 'washes': 1.0}
Word element => {'money': 1.0, 'for': 1.0, 'value': 1.0, 'bag': 1.0, 'bigger': 1.0, 'bought': 1.0, 'he': 2.0, 'uses': 1.0, 'straight': 1.0, 'content': 1.0, 'use': 1.0, 'scratchy': 1.0, 'swaddle': 2.0, 'after': 1.0, 'so': 2.0, 'less': 1.0, 'disappointed': 1.0, 'being': 1.0, 'my': 1.0, 'restless': 1.0, 'fussy': 1.0, 'tried': 1.0, 'reflex': 1.0, 'arms': 1.0, 'softest': 1.0, 'cheaper': 1.0, 'easy': 1.0, 'with': 3.0, 'skin': 1.0, 'velcro': 1.0, 'son': 1.0, 'very': 2.0, 'from': 1.0, 'sleeping': 1.0, 'which': 1.0, 'had': 1.0, 'much': 1.0, 'its': 1.0, 'as': 1.0, 'our': 1.0, 'swaddleaze': 2.0, 'to': 1.0, 'free': 1.0, 'older': 1.0, 'now': 1.0, 'away': 2.0, 'well': 1.0, 'on': 1.0, 'strong': 1.0, 'and': 5.0, 'startle': 1.0, 'his': 2.0, 'were': 1.0, 'delighted': 1.0, 'the': 3.0, 'a': 4.0, 'we': 4.0, 't': 1.0, 'great': 1.0, 'scratch': 1.0, 'fabric': 1.0, 'have': 1.0, 'more': 1.0, 'is': 3.0, 'it': 2.0, 'felt': 1.0, 'ever': 1.0, 'baby': 2.0, 'was': 3.0, 'doesn': 1.0}
Word element => {'zip': 1.0, 'arms': 1.0, 'had': 1.0, 'out': 1.0, 'mine': 1.0, 'even': 1.0, 'with': 2.0, 'its': 1.0, 'put': 1.0, 'wriggly': 1.0, 'on': 1.0, 'worth': 1.0, 'or': 1.0, 'section': 1.0, 'cover': 1.0, 'worry': 1.0, 'don': 1.0, 'her': 4.0, 'lovely': 1.0, 'have': 3.0, 'would': 1.0, 'face': 1.0, 'born': 1.0, 'about': 2.0, 'knew': 1.0, 'size': 2.0, 't': 2.0, 'a': 3.0, 'used': 1.0, 'why': 1.0, 'means': 1.0, 'realised': 1.0, 'of': 2.0, 'always': 1.0, 'wish': 1.0, 'this': 4.0, 'also': 1.0, 'mum': 1.0, 'came': 1.0, 'product': 1.0, 'that': 1.0, 'been': 1.0, 'case': 1.0, 'every': 1.0, 'highly': 1.0, 'material': 1.0, 'as': 2.0, 'to': 5.0, 'was': 3.0, 'recommended': 2.0, 'not': 1.0, 'me': 1.0, 'getting': 2.0, 'and': 4.0, 'penny': 1.0, 'comfy': 1.0, 'get': 2.0, 'baby': 2.0, 'fact': 1.0, 'my': 3.0, 'another': 1.0, 'just': 1.0, 'worried': 1.0, 'few': 1.0, 'by': 1.0, 'daughter': 2.0, 'when': 2.0, 'possible': 1.0, 'under': 2.0, 'gets': 1.0, 'after': 1.0, 'like': 2.0, 'using': 1.0, 'in': 3.0, 'it': 5.0, 'nights': 1.0, 'she': 5.0, 'option': 1.0, 'bigger': 1.0, 'i': 7.0, 'overheated': 1.0, 'wrap': 1.0, 'myself': 1.0, 'the': 6.0, 'preemie': 1.0, 'is': 1.0, 'safe': 1.0, 'most': 1.0, 'wriggling': 1.0, 'but': 1.0, 'can': 2.0, 'larger': 1.0}
Word element => {'life': 1.0, 'born': 1.0, 'infant': 1.0, 'gift': 1.0, 'have': 1.0, 'about': 1.0, 'response': 1.0, 'needs': 1.0, 'met': 1.0, 'own': 1.0, 'time': 1.0, 'new': 2.0, 'impression': 1.0, 'left': 1.0, 'add': 1.0, 'must': 1.0, 'finally': 1.0, 'think': 1.0, 'durability': 1.0, 'repairs': 1.0, 'your': 1.0, 'idea': 1.0, 'any': 1.0, 'make': 1.0, 'had': 1.0, 't': 2.0, 'along': 1.0, 'family': 1.0, 'my': 2.0, 'may': 2.0, 'member': 1.0, 'is': 2.0, 'before': 1.0, 'five': 3.0, 'to': 4.0, 'argue': 1.0, 'an': 1.0, 'all': 2.0, 'sleep': 1.0, 'and': 11.0, 'into': 1.0, 'three': 1.0, 'future': 1.0, 's': 3.0, 'we': 2.0, 'constant': 1.0, 'll': 1.0, 'taggie': 6.0, 'this': 1.0, 'few': 1.0, 'that': 4.0, 'because': 1.0, 'around': 1.0, 'tear': 1.0, 'baby': 8.0, 'she': 7.0, 'bought': 1.0, 'get': 1.0, 'months': 1.0, 'insisted': 1.0, 'visits': 1.0, 'such': 1.0, 'for': 9.0, 'stars': 3.0, 'instant': 1.0, 'especially': 1.0, 'where': 1.0, 'come': 1.0, 'christmas': 1.0, 'a': 5.0, 'nana': 1.0, 'her': 7.0, 'of': 1.0, 'the': 4.0, 'silk': 1.0, 'calls': 1.0, 'i': 3.0, 'vacations': 1.0, 'when': 1.0, 'tags': 2.0, 'trips': 1.0, 'has': 3.0, 'thing': 1.0, 'cousin': 2.0, 'on': 3.0, 'four': 1.0, 'you': 1.0, 'blankets': 1.0, 'things': 1.0, 'papa': 1.0, 'anywhere': 1.0, 'birthday': 1.0, 'sentimental': 1.0, 'shows': 1.0, 'nap': 1.0, 'verbal': 1.0, 'or': 1.0, 'occur': 1.0, 'loves': 1.0, 'been': 2.0, 'every': 1.0, 'still': 1.0, 'if': 1.0, 'daughter': 2.0, 'southernism': 1.0, 'can': 1.0, 'so': 2.0, 'snuggleability': 1.0, 'value': 1.0, 'haven': 1.0, 'also': 1.0, 'very': 1.0, 'little': 1.0, 'durable': 1.0, 'he': 1.0, 'washing': 1.0, 'now': 1.0, 'death': 1.0, 'almost': 1.0, 'intact': 1.0, 'no': 1.0, 'years': 1.0, 'with': 2.0, 'handling': 1.0, 'snuggling': 1.0, 'adamantly': 1.0, 'regular': 1.0, 'as': 1.0, 'drying': 1.0, 'road': 1.0, 'pardon': 1.0, 'vibrant': 1.0, 'it': 1.0, 'him': 1.0, 'wear': 1.0, 'first': 4.0, 'are': 1.0}
Word element => {'baby': 1.0, 'hands': 1.0, 'their': 3.0, 'for': 2.0, 'free': 1.0, 'hold': 1.0, 'carrying': 1.0, 'babies': 1.0, 'who': 2.0, 'great': 1.0, 'can': 1.0, 'heads': 1.0, 'parents': 1.0, 'need': 1.0, 'up': 1.0, 'while': 1.0, 'perfect': 1.0}
Word element => {}
Word element => {'limited': 1.0, 'term': 1.0, 'short': 1.0, 'expensive': 1.0, 'kind': 1.0, 'end': 1.0, 'use': 2.0, 'her': 1.0, 'low': 1.0, 'way': 1.0, 'original': 1.0, 'and': 3.0, 'too': 2.0, 'not': 2.0, 'that': 2.0, 'into': 1.0, 'looking': 1.0, 'bill': 1.0, 'transport': 1.0, 'of': 1.0, 'the': 5.0, 'hands': 2.0, 't': 1.0, 'fit': 1.0, 'for': 4.0, 'this': 3.0, 'depending': 1.0, 'so': 2.0, 'always': 1.0, 'has': 1.0, 'free': 2.0, 'me': 1.0, 'my': 6.0, 'a': 4.0, 'going': 1.0, 'comfortable': 1.0, 'drawbacks': 1.0, 'spend': 1.0, 'year': 1.0, 'baby': 2.0, 'she': 1.0, 'starting': 1.0, '9': 1.0, 'it': 1.0, 'to': 7.0, 'had': 2.0, 'operate': 1.0, 'was': 4.0, 'drop': 1.0, 'position': 2.0, 'allow': 1.0, 'coat': 2.0, 'some': 1.0, 'time': 2.0, 'remain': 1.0, 'keep': 1.0, 'you': 1.0, 'off': 2.0, 'finding': 2.0, '3': 1.0, 'on': 2.0, 'definitely': 1.0, 'think': 2.0, 'preschool': 1.0, 'chest': 1.0, 'an': 1.0, 'all': 1.0, 'other': 2.0, 'but': 2.0, 'face': 1.0, 'probably': 3.0, 'just': 1.0, 'need': 2.0, 'more': 1.0, 'at': 2.0, 'is': 5.0, 'right': 1.0, 'once': 1.0, 'does': 1.0, 'be': 1.0, 'which': 1.0, 'what': 1.0, 'when': 2.0, 'goal': 1.0, 'though': 1.0, 'problem': 1.0, 'in': 4.0, 'm': 3.0, 'about': 1.0, 'wearing': 1.0, 'thing': 1.0, 'old': 2.0, 'run': 1.0, 'ohio': 1.0, 'month': 1.0, 'winter': 1.0, 'i': 10.0, 'coming': 1.0, 'sure': 1.0, 'item': 1.0, 'how': 1.0, 'hard': 1.0, 'over': 1.0, 'will': 1.0, 'adjusting': 1.0, 'live': 1.0, 'walking': 1.0, 'far': 1.0, 'wouldn': 1.0}
Word element => {'problem': 1.0, 'single': 1.0, 'never': 1.0, 'apart': 1.0, 'pull': 2.0, 'have': 1.0, 'worry': 1.0, 'don': 1.0, 'tight': 1.0, 'very': 1.0, 'shape': 1.0, 'perfect': 1.0, 'wise': 1.0, 'quality': 1.0, 'thrust': 1.0, 'needed': 1.0, 'pop': 1.0, 'kidz': 2.0, 'had': 1.0, 'nicer': 1.0, 'tongue': 1.0, 'first': 1.0, 'goes': 1.0, 'd': 2.0, 'drop': 2.0, 't': 1.0, 'fit': 1.0, 'rest': 1.0, 'again': 1.0, 'after': 1.0, 'cheek': 1.0, 'far': 1.0, 'do': 1.0, 'put': 2.0, 'soothie': 1.0, 'regular': 1.0, 'now': 1.0, 'future': 1.0, 'dropperful': 1.0, 'useful': 1.0, 'best': 1.0, 'doubt': 1.0, 'no': 2.0, 'will': 1.0, 'was': 3.0, 'but': 2.0, 'back': 1.0, 'most': 1.0, 'time': 2.0, 'so': 4.0, 'bottle': 1.0, 'this': 3.0, 'dispenser': 1.0, '0': 1.0, 'mouth': 2.0, 'in': 8.0, 'vitamin': 2.0, 'and': 10.0, 'cumbersome': 1.0, 'using': 2.0, 'fine': 1.0, 'then': 1.0, 'we': 5.0, 'a': 9.0, 'going': 1.0, 'use': 1.0, 'her': 8.0, 'last': 1.0, 'large': 2.0, 'just': 2.0, 'brand': 1.0, 'nipple': 2.0, 'meds': 3.0, 'worked': 2.0, 'day': 1.0, 'while': 2.0, 'is': 6.0, 'has': 1.0, 'medicine': 5.0, 'be': 3.0, 'old': 1.0, 'same': 1.0, 'green': 1.0, 'month': 2.0, 'unfortunately': 1.0, 'she': 8.0, 'it': 9.0, 'out': 1.0, 'absolutely': 1.0, '4': 1.0, 'well': 1.0, 'putting': 2.0, 'i': 2.0, 'hates': 1.0, 'were': 1.0, 'on': 2.0, 'plunger': 2.0, 'our': 1.0, 'to': 7.0, 'all': 1.0, 'the': 23.0, 'of': 10.0, 'half': 1.0, 'reject': 1.0, 'suck': 1.0, 'they': 1.0, 'll': 1.0, 'twice': 1.0, 'major': 1.0, '7': 1.0, 'med': 2.0, 'eagerly': 1.0, 'tried': 1.0, 'found': 1.0, 'dropper': 1.0, 'pacifier': 4.0, 'really': 1.0, 'smart': 1.0, 'great': 1.0, 'idea': 1.0, 'taste': 1.0, 'when': 3.0, 'things': 1.0, 'you': 2.0, 'size': 1.0, 'munchkin': 1.0, 'several': 1.0, 've': 1.0, 'seem': 1.0, 'gets': 2.0, 'leaking': 1.0, 'phase': 1.0, 'made': 1.0, 'for': 5.0, 'with': 2.0, 'volume': 1.0, 'hump': 1.0, 'ones': 1.0, 'one': 2.0, 'little': 1.0, 'tip': 1.0, 'sucks': 2.0, 'tylenol': 1.0, 'there': 1.0, 'options': 1.0, 'only': 1.0, 'still': 1.0, 'if': 1.0, 'everything': 1.0, 'or': 1.0, 'need': 1.0, 'straw': 1.0, 'reassurance': 1.0, 'problems': 1.0, 'that': 3.0, 'ml': 1.0, 'been': 1.0, 'got': 2.0, 'learned': 1.0, 'also': 2.0, 'us': 1.0, 'hard': 1.0, 'open': 1.0, 'over': 1.0}
Word element => {'quickly': 1.0, 'break': 1.0, 'way': 1.0, 'think': 1.0, 'out': 1.0, 'leak': 1.0, 'impossible': 1.0, 'making': 1.0, 'use': 2.0, 'weeks': 1.0, 'hinge': 1.0, 'made': 1.0, 'would': 1.0, 'something': 1.0, 'needed': 1.0, 'so': 3.0, 'however': 1.0, 'after': 2.0, '8': 1.0, 'have': 1.0, 'easier': 1.0, 'has': 1.0, 'is': 4.0, 's': 1.0, 'a': 2.0, 'two': 1.0, 'i': 3.0, 'old': 1.0, 'medicine': 3.0, 'our': 1.0, 'to': 4.0, 'was': 2.0, 'expensive': 1.0, 'product': 2.0, 'this': 1.0, 'take': 1.0, 'it': 5.0, 'month': 1.0, 'every': 1.0, 'really': 1.0, 'amazing': 1.0, '5': 1.0, 'great': 3.0, 'the': 8.0, 'at': 1.0, 'who': 1.0, 'life': 1.0, 'plunger': 1.0, 'too': 1.0, 'and': 2.0, 'pacifier': 3.0, 'while': 1.0, 'hard': 1.0, 'part': 1.0, 'only': 1.0, 'much': 1.0, 'like': 1.0, 'nuk': 1.0, 'of': 2.0, 'idea': 1.0, 'hours': 1.0, 'open': 1.0, 'that': 2.0, 'dispensing': 1.0, 'sadly': 1.0, 'broke': 1.0}
Word element => {'hand': 1.0, 'what': 1.0, 'down': 1.0, 'however': 1.0, 'so': 1.0, 'pacifier': 1.0, 'other': 1.0, 'sucking': 1.0, 'dispensers': 1.0, 'issues': 1.0, 'this': 3.0, 'with': 6.0, 'it': 1.0, 'hard': 1.0, 'thing': 1.0, 'no': 1.0, 'has': 1.0, 'function': 1.0, 'they': 1.0, 'is': 3.0, 'flaw': 1.0, 'being': 1.0, 'want': 1.0, 'a': 3.0, 'dispenser': 1.0, 'be': 1.0, 'great': 1.0, 'the': 3.0, 'need': 1.0, 'my': 1.0, 'medicine': 3.0, 'daughter': 1.0, 'wresting': 1.0, 'to': 3.0, 'open': 2.0, 'and': 3.0, 'close': 2.0, 'sort': 1.0, 'out': 1.0, 'up': 1.0, 'child': 1.0, 'last': 1.0, 'i': 1.0, 'idea': 1.0, 'dealing': 1.0, 'screaming': 1.0, 'itself': 1.0, 'in': 1.0, 'one': 1.0, 'arm': 1.0}
Word element => {'slow': 1.0, 'recommend': 1.0, 'first': 1.0, 'this': 1.0, 'would': 1.0, 'idea': 1.0, 'didnt': 1.0, 'use': 1.0, 'just': 2.0, 'kid': 1.0, 'for': 1.0, 'had': 1.0, 'wish': 2.0, 'great': 1.0, 'it': 3.0, 'i': 1.0, 'my': 1.0, 'make': 1.0, 'a': 1.0, 'such': 1.0, 'mess': 1.0}
Word element => {'out': 1.0, 'to': 1.0, 'washing': 1.0, 'just': 1.0, 'while': 1.0, 'surface': 1.0, 'dishwasher': 1.0, 'worked': 1.0, 'no': 1.0, 'wash': 1.0, 'in': 2.0, 'put': 1.0, 'water': 1.0, 'if': 1.0, 'until': 1.0, 'is': 1.0, 'i': 1.0, 'it': 4.0, 'way': 1.0, 'you': 1.0, 'there': 1.0, 'nipple': 1.0, 'the': 2.0, 'gets': 1.0, 'get': 1.0, 'squeeze': 1.0, 'and': 1.0}
Word element => {'done': 1.0, 'all': 1.0, 'job': 1.0, 'difficult': 1.0, 'your': 1.0, 'one': 1.0, 'great': 1.0, 'idea': 1.0, 'fussy': 1.0, 'helps': 1.0, 'sometimes': 1.0, 'take': 1.0, 'is': 1.0, 'suck': 1.0, 'with': 1.0, 'and': 1.0, 'infants': 1.0, 'who': 1.0, 'refuse': 1.0, 'to': 1.0, 'meds': 1.0}
Word element => {'of': 1.0, 'tsp': 1.0, '1': 1.0, 'about': 1.0, 'holds': 1.0, 'to': 2.0, 'meds': 1.0, 'but': 1.0, 'contraption': 1.0, 'bit': 1.0, 'little': 1.0, 'nifty': 1.0, 'green': 1.0, 'took': 1.0, 'a': 2.0, 'add': 1.0, 'only': 1.0, 'it': 3.0, 'this': 1.0, 'pull': 1.0, 'is': 1.0, 'figure': 1.0, 'plunger': 1.0, 'after': 1.0, 'liquid': 1.0, 'part': 1.0, 'opening': 1.0, 'the': 3.0, 'out': 2.0, 'white': 1.0}
Word element => {'used': 1.0, 's': 1.0, 'pacifier': 1.0, 'like': 1.0, 'shaped': 1.0, 'orthodonic': 1.0, '5mls': 1.0, 'holds': 1.0, 'isn': 1.0, 'cup': 2.0, 'he': 1.0, 'far': 1.0, 'be': 1.0, 'in': 2.0, 'also': 1.0, 'will': 1.0, 'lost': 1.0, 'get': 1.0, 'closing': 1.0, 'shot': 1.0, 'and': 4.0, 'this': 1.0, 'few': 1.0, 'ordered': 1.0, 'meds': 3.0, 't': 2.0, 'we': 1.0, 'dispenser': 2.0, 'myself': 1.0, 'careful': 1.0, 'aren': 1.0, 'but': 1.0, 'max': 1.0, 'big': 1.0, 'best': 1.0, 'day': 1.0, 'dose': 1.0, 'do': 1.0, 'can': 1.0, 'so': 2.0, 'time': 1.0, '2mls': 1.0, 'have': 1.0, 'a': 4.0, 'small': 1.0, '8': 1.0, 'down': 1.0, 'place': 1.0, 'drooling': 1.0, 'accidentally': 1.0, 'month': 1.0, 'him': 1.0, 'it': 4.0, 'products': 1.0, 'learning': 1.0, 'fact': 1.0, 'old': 1.0, 'well': 1.0, 'i': 8.0, 'now': 1.0, 'to': 5.0, 'our': 1.0, 'all': 3.0, 'leave': 1.0, 'as': 1.0, 'wanted': 1.0, 'would': 1.0, '1tsp': 1.0, 'curve': 1.0, 'that': 2.0, 'eliminate': 1.0, 'out': 5.0, 'different': 1.0, 'half': 1.0, 'halfway': 2.0, 'for': 1.0, 'plunger': 3.0, 'amount': 1.0, 'after': 2.0, 'seems': 1.0, 'tried': 1.0, 'with': 1.0, 'water': 2.0, 'had': 2.0, 'sucked': 1.0, 'something': 1.0, 'depressed': 1.0, 'more': 1.0, 'came': 1.0, 'does': 1.0, 'come': 1.0, 'you': 3.0, 'oops': 1.0, 'rapidly': 1.0, 'if': 1.0, 'first': 1.0, 'hit': 1.0, 'instead': 1.0, 'the': 17.0, 'of': 1.0, 'way': 1.0, 'instructions': 1.0, 'tell': 1.0, 'work': 1.0, 'open': 1.0, 'over': 1.0, 'twice': 1.0, 'think': 1.0, 'initial': 1.0}
Word element => {'medicator': 1.0, 'used': 1.0, 'usually': 1.0, 'silicone': 1.0, 'plastic': 1.0, 'relatively': 1.0, 'syringethe': 1.0, 'warp': 1.0, 'will': 1.0, 'sterilized': 1.0, 'or': 1.0, 'tried': 1.0, 'i': 2.0, 'washed': 1.0, 'be': 1.0, 'cannot': 1.0, 'compared': 1.0, 'hard': 1.0, 'from': 1.0, 'group': 1.0, 'quantities': 1.0, 'when': 1.0, 'idea': 1.0, 'need': 1.0, 'small': 1.0, 'older': 1.0, 'soft': 1.0, '0': 1.0, 'this': 1.0, 'it': 5.0, 'works': 1.0, 'try': 1.0, 'only': 1.0, 'months': 1.0, '12': 1.0, 'imo': 1.0, 'occasional': 1.0, 'little': 1.0, 'get': 1.0, 'a': 2.0, 'improvement': 1.0, 'great': 2.0, '6mosit': 1.0, 'most': 1.0, '2': 1.0, 'the': 7.0, 'ml': 1.0, 'nipple': 2.0, 'for': 3.0, 'shut': 1.0, 'though': 1.0, 'usethe': 1.0, 'holder': 2.0, 'munchkin': 1.0, 'would': 1.0, 'plan': 1.0, 'pacisi': 1.0, 'benefit': 1.0, 'is': 7.0, 'holds': 1.0, 'about': 1.0, 'in': 3.0, 'age': 1.0, 'difficult': 1.0, 'as': 1.0, 'paci': 1.0, 'to': 3.0, 'of': 3.0, 'once': 1.0, 'liquid': 1.0, 'made': 1.0, 'syringe': 1.0, 'hope': 1.0, 'large': 1.0, 'medicine': 2.0, 'partthe': 1.0, 'machine': 1.0, 'way': 1.0, 'and': 3.0, 'too': 1.0, 'next': 1.0, 'babies': 1.0, 'that': 1.0}
Word element => {'still': 1.0, 'but': 1.0, 'trying': 1.0, 'was': 1.0, 'smart': 1.0, 'mistake': 1.0, 'ive': 1.0, 'mean': 1.0, 'way': 1.0, 'sure': 1.0, 'have': 1.0, 'before': 1.0, 'shutting': 1.0, 'at': 1.0, 'made': 1.0, 'goes': 2.0, 'shut': 2.0, 'drops': 1.0, 'is': 3.0, 'her': 1.0, 'try': 1.0, 'its': 2.0, 'works': 1.0, 'of': 1.0, 'once': 1.0, 'gripe': 1.0, 'the': 8.0, 'out': 1.0, 'pushing': 2.0, 'droppers': 1.0, 'everywhere': 2.0, 'or': 1.0, 'into': 1.0, 'otherwise': 1.0, 'i': 5.0, 'old': 1.0, 'slowly': 2.0, 'green': 3.0, 'and': 5.0, 'ease': 1.0, 'very': 2.0, 'product': 1.0, 'picky': 1.0, 'a': 1.0, 'gas': 1.0, 'haha': 1.0, 'got': 1.0, 'use': 1.0, 'kids': 1.0, 'this': 2.0, 'month': 1.0, 'it': 7.0, 'dislike': 1.0, 'hard': 1.0, 'spit': 1.0, 'will': 1.0, 'oops': 1.0, 'sneak': 1.0, 'mouth': 1.0, 'because': 1.0, 'meds': 1.0, 'my': 1.0, 'push': 2.0, 'so': 2.0, 'kinda': 3.0, 'as': 1.0, 'all': 2.0, 'to': 6.0, 'about': 2.0, 'thing': 4.0, 'water': 1.0, 'medicine': 1.0, 'in': 1.0, 'when': 1.0, 'you': 2.0, 'one': 1.0, 'cant': 1.0, 'make': 1.0, '3': 1.0, 'your': 1.0}
Word element => {'syringe': 1.0, 'a': 2.0, 'just': 1.0, 'it': 2.0, 'what': 1.0, 'fast': 1.0, 'this': 1.0, 'dud': 1.0, 'real': 1.0, 'out': 1.0, 'baby': 1.0, 'hard': 2.0, 'so': 1.0, 'knows': 1.0, 'to': 2.0, 'treats': 1.0, 'tend': 1.0, 'squirt': 1.0, 'nit': 1.0, 'is': 2.0, 'shoot': 1.0, 'like': 1.0, 'and': 2.0}
Word element => {'carpet': 1.0, 'on': 1.0, 'pink': 1.0, 'about': 1.0, 'worry': 1.0, 'don': 1.0, 'and': 3.0, 'do': 1.0, 'now': 1.0, 'of': 2.0, 'leak': 1.0, 'supposed': 1.0, 'it': 4.0, 'used': 1.0, 'does': 1.0, 'what': 1.0, 'her': 3.0, 'down': 1.0, 'have': 2.0, 'to': 4.0, 'all': 1.0, 'far': 1.0, 'more': 1.0, 'is': 2.0, 'the': 2.0, 'i': 2.0, 'products': 1.0, 'one': 1.0, 'stains': 1.0, 'that': 1.0, 'says': 1.0, 'by': 1.0, 'baby': 1.0, 'my': 1.0, 'daughter': 1.0, 'medicine': 3.0, 't': 2.0, 'a': 2.0, 'breeze': 1.0, 'pinning': 1.0, 'absolutely': 1.0, 'best': 1.0, 'arms': 1.0, 'legs': 1.0, 'compared': 1.0, 'while': 1.0, 'giving': 1.0, 'trying': 1.0, 'give': 1.0, 'made': 1.0, 'syringe': 1.0, 'this': 1.0, 'full': 1.0, 'doesn': 1.0, 'at': 1.0}
Word element => {'spit': 1.0, 'quite': 1.0, 'with': 1.0, 'there': 1.0, 'majority': 1.0, 'in': 1.0, 'too': 1.0, 'and': 2.0, 'i': 2.0, 'old': 1.0, 'bought': 1.0, 'force': 1.0, 'be': 1.0, 'out': 2.0, 'my': 2.0, 'this': 3.0, 'it': 3.0, 'for': 1.0, 'take': 1.0, 'refuses': 1.0, 'zantac': 1.0, '5': 1.0, 'on': 1.0, 'is': 1.0, 'son': 2.0, 'once': 1.0, 'of': 3.0, 'has': 1.0, 'week': 1.0, 'but': 1.0, 'at': 1.0, 'who': 1.0, 'the': 6.0, 'syringe': 1.0, 'he': 1.0, 'answer': 1.0, 'because': 1.0, 'gradually': 1.0, 'not': 1.0, 'just': 1.0, 'reflux': 1.0, 'tastes': 1.0, 'bit': 1.0, 'so': 1.0, 'bad': 1.0, 'to': 1.0, 'all': 1.0, 'gagged': 1.0, 'thought': 1.0, 'would': 1.0, 'push': 1.0, 'pacifier': 1.0, 'a': 1.0, 's': 1.0, 'happened': 1.0, 'when': 1.0, 'you': 1.0, 'which': 1.0, 'cannot': 1.0, 'medicine': 2.0, 'into': 1.0, 'shoots': 1.0}
Word element => {'really': 1.0, 'didn': 1.0, 'plays': 1.0, 'purpose': 1.0, 'its': 1.0, 'now': 1.0, 'she': 1.0, 'thought': 1.0, 'idea': 1.0, 'would': 1.0, 'my': 1.0, 't': 1.0, 'great': 1.0, 'the': 1.0, 'a': 1.0, 'using': 1.0, 'dispenser': 1.0, 'be': 1.0, 'with': 1.0, 'it': 4.0, 'this': 1.0, 'serve': 1.0, 'eyes': 1.0, 'tried': 1.0, 'i': 2.0, 'and': 1.0, 'but': 2.0, 'squirted': 1.0, 'stuck': 1.0, 'in': 1.0, 'babies': 1.0, 'because': 1.0, 'got': 1.0}
Word element => {'efficient': 1.0, 'bink': 2.0, 'clean': 1.0, 'if': 1.0, 'medicine': 2.0, 'uses': 1.0, 'months': 1.0, 'child': 1.0, 'over': 1.0, 'your': 1.0, 'when': 2.0, 'even': 2.0, 'down': 1.0, '6': 1.0, 'needed': 1.0, 'recommend': 1.0, 'tylenol': 1.0, 'purached': 1.0, 'this': 3.0, 'it': 1.0, 'and': 3.0, 'for': 3.0, 'year': 1.0, 'hurry': 1.0, 'sleeping': 1.0, 'very': 1.0, 'old': 1.0, 'easy': 1.0, 'get': 1.0, 'usng': 1.0, 'been': 1.0, 'hates': 1.0, 'is': 2.0, 'the': 3.0, '1': 1.0, 'great': 1.0, 'way': 1.0, 'our': 1.0, 'to': 3.0, 'plunger': 1.0, 'hatch': 1.0, 'while': 1.0, 'a': 1.0, 'go': 1.0, 'we': 1.0, 'need': 1.0, 'meds': 1.0, 'highly': 1.0}
Word element => {'so': 1.0, 'second': 1.0, 'at': 1.0, 'with': 1.0, 'resulted': 1.0, 'one': 1.0, 'apart': 1.0, 'layer': 2.0, 'being': 1.0, 'mess': 1.0, 'consistency': 1.0, 'child': 1.0, 'proper': 1.0, 'terms': 1.0, 'plaster': 1.0, 'in': 3.0, 'rolls': 1.0, '5': 1.0, 'water': 2.0, 'attempt': 1.0, 'this': 2.0, 'only': 1.0, 'it': 2.0, 'soaked': 1.0, 'hard': 1.0, 'diapppointing': 1.0, 'after': 2.0, 'pieces': 1.0, 'were': 1.0, 'out': 1.0, 'third': 2.0, 'falling': 1.0, 'became': 2.0, 'cast': 2.0, '15': 1.0, 'the': 6.0, 'kit': 1.0, 'for': 2.0, 'get': 1.0, 'of': 3.0, 'other': 1.0, 'a': 3.0, 'we': 2.0, 'four': 1.0, '1': 1.0, 'remained': 1.0, 'crumbly': 1.0, 'got': 1.0, 'even': 1.0, 'soaking': 1.0, 'individual': 1.0, 'was': 2.0, 'minutes': 1.0, 'right': 1.0, 'unable': 1.0, 'good': 4.0, 'hit': 1.0, 'roll': 2.0, 'to': 1.0, 'our': 2.0, 'as': 2.0, 'and': 2.0, 'soon': 1.0}
Word element => {'made': 1.0, 'wrap': 1.0, 'your': 1.0, 'sticking': 1.0, 'from': 1.0, 'completely': 1.0, 'oils': 1.0, 'comes': 1.0, 'greek': 1.0, 'vita': 2.0, 'belly': 3.0, 'and': 9.0, 'too': 1.0, 'makes': 1.0, 'you': 1.0, 'pregnancy': 1.0, 'trouble': 1.0, 'casting': 2.0, 'better': 1.0, 'hours': 1.0, 'goddess': 1.0, 'a': 3.0, 'we': 3.0, 't': 1.0, 'skin': 1.0, 'dry': 3.0, 'simple': 1.0, 'pregnant': 2.0, 'most': 1.0, 'but': 1.0, 'are': 2.0, 'strips': 1.0, 'for': 4.0, 'product': 1.0, 'used': 1.0, 'set': 3.0, 'instead': 1.0, 'cloth': 1.0, 'yummy': 1.0, 'took': 1.0, 'even': 1.0, 'people': 1.0, 'both': 1.0, 'wrapping': 1.0, 'needs': 1.0, 'so': 2.0, 'm': 1.0, 'in': 4.0, 'use': 1.0, 'little': 1.0, 'ratings': 1.0, 'i': 3.0, 'whatever': 1.0, 'quickly': 1.0, 'uber': 1.0, 'worked': 1.0, 'look': 1.0, 'is': 2.0, 'at': 2.0, 'imprint': 3.0, 'to': 7.0, 'was': 2.0, 'with': 3.0, '9': 1.0, 'it': 7.0, 'month': 1.0, 'this': 4.0, '30': 2.0, 'spite': 1.0, 'spend': 1.0, 'up': 3.0, 'kitbelly': 1.0, 'the': 7.0, 'of': 2.0, 'that': 2.0, 'difficult': 1.0, 'still': 1.0, 'shocked': 1.0, 'fell': 1.0, 'favorable': 1.0, 'like': 2.0, 'prevent': 1.0, 'very': 1.0, 'cannot': 1.0, 'due': 1.0, 'waited': 1.0, 'comfort': 1.0, 'point': 1.0, 'constraints': 1.0, 'plastic': 1.0, '8': 1.0, 'effort': 1.0, 'claims': 1.0, 'expressions': 1.0, 'women': 1.0, 'when': 2.0, 'sit': 1.0, 'waiting': 1.0, 'buy': 1.0, 'mess': 1.0, 'something': 1.0, 'my': 2.0, 'save': 1.0, 'more': 1.0, 'husband': 1.0, 'have': 1.0, 'plaster': 1.0, 'cast': 1.0, 'before': 1.0, 'poor': 1.0, 'quality': 1.0, 'inconsistent': 1.0, 'thin': 1.0, 'mins': 2.0, 'hour': 1.0, 'all': 1.0, 'an': 1.0, 'kit': 3.0, 'wasn': 1.0, 'off': 1.0, 'way': 1.0, 'apart': 1.0, 'disappointing': 1.0, 'after': 1.0, 'yourself': 2.0}
Word element => {'than': 1.0, 'plastered': 1.0, 'old': 1.0, 'worth': 1.0, 'easier': 1.0, 'well': 1.0, 'messy': 1.0, 'in': 1.0, 'newborn': 1.0, 'husband': 1.0, 'our': 2.0, 'to': 4.0, 'i': 4.0, 'minute': 1.0, 'us': 1.0, 'allowed': 1.0, 'bit': 1.0, 'time': 1.0, 'much': 1.0, 'though': 1.0, 'didn': 1.0, 'my': 2.0, 'take': 1.0, 'drop': 1.0, 'clothing': 1.0, 'belly': 2.0, 'it': 3.0, 'casting': 2.0, 'loved': 1.0, 'delivered': 1.0, 'share': 1.0, 'kit': 1.0, 'toss': 1.0, 'and': 3.0, 'very': 1.0, 'of': 2.0, 'did': 1.0, 'the': 5.0, 'weekend': 1.0, 'we': 2.0, 't': 2.0, 'a': 1.0, 'before': 1.0, 'had': 1.0, 'suggest': 1.0, 'waiting': 1.0, 'until': 1.0, 'clean': 1.0, 'last': 1.0, 'them': 1.0, 'clothes': 1.0, 'excitement': 1.0, 'baby': 1.0, 'started': 1.0, 'don': 1.0, 'missed': 1.0, 'wear': 1.0, 'true': 1.0, 'roundness': 1.0, 'but': 1.0, 'can': 1.0, 'be': 1.0}
Word element => {'uncomfortable': 1.0, 'cool': 1.0, 'wet': 1.0, 'warm': 1.0, 'room': 1.0, 'due': 1.0, 'offer': 1.0, 'shape': 1.0, 'with': 2.0, 'impossible': 1.0, '30': 1.0, '28': 1.0, '18': 1.0, 'inches': 3.0, 'about': 3.0, 'some': 3.0, 'cut': 1.0, 'long': 4.0, 'ones': 2.0, 'too': 2.0, 'using': 1.0, 'good': 1.0, 'made': 1.0, 'mistake': 1.0, 'sure': 2.0, 'make': 3.0, 'shorter': 1.0, 'for': 1.0, 'enough': 1.0, 'dry': 1.0, 'hours': 1.0, 'takes': 1.0, 'my': 1.0, 'product': 2.0, 'in': 1.0, 'displayed': 1.0, 'is': 6.0, 'more': 3.0, '6': 1.0, 'mine': 1.0, 'members': 1.0, 'forget': 1.0, 'guests': 1.0, 'we': 5.0, 'small': 1.0, 'a': 5.0, 't': 1.0, 's': 2.0, 'ha': 1.0, 'always': 1.0, 'were': 1.0, 'recommend': 1.0, 'but': 3.0, 'pregnant': 1.0, 'most': 1.0, 'will': 2.0, 'almost': 1.0, 'now': 1.0, 'can': 1.0, 'so': 4.0, 'luck': 1.0, 'our': 1.0, 'how': 1.0, 'love': 1.0, 'he': 1.0, 'am': 2.0, 'you': 1.0, 'didn': 1.0, 'into': 1.0, 'three': 1.0, 'who': 1.0, 'physician': 1.0, 'i': 5.0, 'mess': 1.0, 'and': 8.0, 'great': 1.0, 'glad': 1.0, 'large': 1.0, 'days': 1.0, 'have': 2.0, 'remember': 1.0, 'move': 1.0, 'used': 1.0, 'while': 1.0, 'deal': 1.0, 'she': 4.0, 'this': 3.0, 'comfortable': 1.0, 'belly': 1.0, 'home': 1.0, 'easy': 1.0, 'get': 1.0, 'see': 1.0, 'also': 1.0, 'us': 1.0, 'appreciate': 1.0, 'casted': 1.0, 'importantly': 1.0, 'strips': 5.0, 'show': 1.0, 'little': 2.0, 'fun': 1.0, 'gavin': 1.0, 'would': 1.0, 'what': 1.0, '8': 1.0, 'mommy': 1.0, 'overlapping': 1.0, 'body': 2.0, 'longer': 1.0, 'of': 1.0, 'the': 7.0, 'probably': 1.0, 'harder': 1.0, 'her': 3.0, 'use': 2.0, 'than': 1.0, 'because': 2.0, 'better': 1.0, 'think': 1.0, 'just': 1.0, 'stuff': 1.0, 'before': 1.0, 'cast': 1.0, 'old': 1.0, 'did': 1.0, 'makes': 1.0, 'stability': 1.0, 'reminder': 1.0, 'parts': 1.0, 'covering': 1.0, 'wife': 1.0, 'everything': 1.0, 'conform': 1.0, 'much': 1.0, 'difficult': 1.0, 'delivered': 1.0, 'regularly': 1.0, 'within': 1.0, 'family': 1.0, 'range': 1.0, 'sets': 1.0, 'it': 7.0, 'wear': 1.0, 'was': 3.0, 'clothes': 1.0, 'to': 9.0, 'pretty': 1.0, 'only': 1.0, 'quickly': 2.0}
Word element => {'how': 1.0, 'ideas': 1.0, 'lots': 1.0, 'casts': 1.0, 'too': 1.0, 'and': 2.0, 'done': 1.0, 'only': 1.0, 'it': 3.0, 'with': 4.0, 'first': 1.0, 'come': 1.0, '3rd': 1.0, 'did': 1.0, 'decorate': 1.0, 'cast': 1.0, 'a': 3.0, 'great': 1.0, '2': 1.0, 'got': 1.0, 'item': 1.0, 'pregnancy': 1.0, 'i': 6.0, 'two': 1.0, 'free': 1.0, 'the': 2.0, 'deal': 1.0, 'shipping': 1.0, 'had': 2.0, 'was': 1.0, 'to': 3.0, 'this': 1.0, 'wish': 1.0, 'which': 1.0, 'my': 1.0, 'made': 1.0, 'because': 1.0, 'lot': 1.0, 'of': 3.0, 'll': 1.0, 'keepsake': 1.0, 'enjoy': 1.0, 'actually': 1.0, 'for': 1.0, 'fun': 2.0, 'years': 1.0, 'plenty': 1.0, 'casting': 1.0, 'materials': 1.0, 'almost': 1.0, 'enough': 1.0, 'think': 1.0, 'make': 1.0}
Word element => {'again': 1.0, 'i': 1.0, 'didn': 1.0, 'but': 1.0, 'my': 1.0, 't': 1.0, 'great': 1.0, 'a': 2.0, 'left': 1.0, 'is': 2.0, 'this': 1.0, 'it': 1.0, 'with': 1.0, 'product': 2.0, 'husband': 1.0, 'to': 1.0, 'and': 1.0, 'do': 1.0, 'over': 1.0, 'try': 1.0, 'good': 1.0, 'job': 1.0, 'there': 1.0, 'enough': 1.0}
Word element => {'out': 1.0, 'belly': 1.0, 'how': 1.0, 'pregnancy': 1.0, 'my': 2.0, 'of': 1.0, 'memory': 1.0, 'know': 1.0, 'i': 3.0, 'cast': 1.0, 'it': 2.0, 'great': 1.0, 'have': 1.0, 'loved': 2.0, 'this': 1.0, 'kit': 1.0, 'idea': 1.0, 'was': 1.0, 'came': 1.0, 'buy': 1.0, 'a': 2.0, 'to': 1.0}
Word element => {'strong': 1.0, 'single': 1.0, 'zooper': 1.0, 'older': 1.0, 'an': 1.0, 'own': 1.0, 'affordable': 1.0, 'also': 1.0, 'still': 1.0, 'lighter': 1.0, '3lbs': 1.0, 'techno': 1.0, 'qualities': 1.0, 'other': 1.0, 'only': 2.0, 'research': 1.0, 'done': 1.0, 'newborn': 1.0, 'than': 1.0, 'maclaren': 1.0, 'having': 1.0, 'needs': 1.0, 'old': 1.0, 'love': 1.0, 'one': 1.0, 'ages': 1.0, 'going': 1.0, 's': 1.0, 'a': 2.0, 'we': 3.0, 'different': 1.0, '5': 1.0, 'twin': 1.0, '1': 1.0, 'of': 1.0, 'about': 1.0, 'despite': 1.0, 'what': 1.0, 'stroller': 5.0, 'said': 1.0, 'more': 1.0, 'say': 1.0, 'is': 5.0, 'tango': 2.0, 'have': 3.0, '0': 1.0, 'kids': 1.0, 'this': 3.0, 'with': 2.0, 'the': 5.0, 'heavy': 1.0, 'some': 1.0, 'others': 2.0, 'yr': 1.0, 'it': 2.0, 'she': 1.0, 'i': 1.0, 'two': 1.0, 'comparable': 1.0, 'our': 1.0, 'seater': 1.0, 'fits': 1.0, 'my': 1.0, 'push': 1.0, 'wife': 1.0, 'you': 1.0, 'petite': 1.0, 'and': 6.0, 'tall': 1.0, 'loves': 1.0, 'how': 1.0, 'but': 1.0, '2': 2.0, 'can': 1.0, 'which': 1.0, 'hand': 1.0}
Word element => {'ask': 1.0, 'couldn': 1.0, 'from': 1.0, 'transition': 1.0, 'road': 1.0, 'paved': 1.0, 'reason': 3.0, 'the': 28.0, 'person': 2.0, 'every': 1.0, 'empty': 1.0, 'seats': 1.0, 'stuff': 1.0, 'baskets': 1.0, 'instead': 1.0, 'bench': 1.0, 'of': 6.0, 'even': 3.0, 'that': 5.0, 'problems': 2.0, 'gave': 1.0, 'under': 2.0, 'same': 1.0, 'closer': 1.0, 'first': 1.0, 'bothered': 1.0, 'no': 2.0, 'also': 2.0, 'difference': 1.0, 'finally': 1.0, 'i': 20.0, 'stroller': 5.0, 'him': 1.0, 'when': 2.0, '2': 2.0, 'ended': 1.0, 'perform': 1.0, 'newborn': 1.0, 'boys': 1.0, 'safe': 1.0, 'very': 3.0, 'feel': 1.0, 'this': 1.0, 'fall': 1.0, 'few': 1.0, 'children': 3.0, 'grass': 1.0, 'using': 1.0, 'with': 6.0, 'lot': 3.0, 'better': 1.0, 'bought': 1.0, 'gravel': 1.0, 'side': 3.0, 'sits': 1.0, 'at': 1.0, 'last': 1.0, 'them': 1.0, 'turns': 2.0, 'somewhere': 1.0, 'parking': 1.0, 'though': 1.0, 'by': 3.0, 'after': 1.0, 'different': 1.0, 'thing': 2.0, 'aren': 1.0, 'double': 2.0, 'diaper': 3.0, 'up': 2.0, 'mesh': 1.0, 'while': 2.0, 'hating': 1.0, 'itself': 1.0, 'one': 4.0, '5': 1.0, 'in': 11.0, 'to': 11.0, 'pretty': 1.0, 'all': 7.0, 'other': 3.0, 'previously': 1.0, 'awesome': 1.0, 'about': 2.0, '4': 3.0, 'cup': 3.0, 'fit': 1.0, 't': 8.0, 'for': 6.0, '10': 1.0, 'reposition': 1.0, 'anywhere': 2.0, 'stars': 1.0, 'well': 1.0, 'straw': 1.0, 'wanted': 1.0, 'love': 2.0, 'actually': 1.0, 'large': 2.0, 'bottled': 1.0, 'wonderfully': 1.0, 'basket': 2.0, 'laying': 1.0, 'stability': 1.0, 'on': 4.0, 'weight': 2.0, '3': 5.0, 'taking': 1.0, 'put': 2.0, 'walking': 2.0, 'do': 2.0, 'normally': 1.0, 's': 1.0, 'little': 2.0, 'bag': 3.0, 'a': 14.0, 'have': 9.0, 'tango': 1.0, 'underneath': 1.0, 'practically': 1.0, 'there': 3.0, 'are': 3.0, 'my': 9.0, 'me': 2.0, 'easily': 1.0, 'looks': 1.0, 'wouldn': 3.0, 'adapt': 1.0, 'complaints': 2.0, 'owned': 1.0, 'you': 2.0, 'able': 1.0, 'seat': 4.0, 'push': 1.0, 'second': 1.0, 'day': 3.0, 'was': 4.0, 'putting': 2.0, 'quite': 1.0, 'bit': 1.0, 'rubbed': 1.0, 'works': 1.0, 'wheel': 1.0, 'none': 2.0, 'roll': 1.0, 'some': 1.0, 'taken': 1.0, 'walks': 1.0, 'careful': 1.0, 'so': 2.0, 'is': 4.0, 'can': 1.0, 'and': 10.0, 'constantly': 1.0, 'rub': 1.0, 'but': 3.0, 'really': 2.0, 'still': 1.0, 'don': 2.0, 'isn': 1.0, 'want': 1.0, 'strollers': 2.0, 'third': 1.0, 'went': 1.0, 'holders': 1.0, 'kids': 2.0, 'hold': 2.0, 'drinks': 1.0, 'if': 1.0, 'great': 2.0, 'having': 1.0, 'go': 1.0, 'it': 12.0, 'be': 1.0, 'did': 2.0, 'time': 2.0, 'could': 3.0, 'out': 2.0, 'things': 1.0, 'myself': 2.0, 'window': 1.0, 'used': 1.0, 'see': 2.0, 'deal': 1.0, 'would': 2.0, 'whole': 1.0, 'shut': 1.0, 'these': 1.0, 'biggest': 1.0, 'suggest': 1.0, 'velcro': 1.0, 'into': 1.0, 'beside': 1.0, 'had': 1.0, 'another': 1.0, 'think': 2.0, 'open': 1.0, 'yo': 3.0, 'they': 1.0, 'overall': 2.0, 'big': 2.0, 'manuverability': 1.0, 'use': 1.0, 'keep': 1.0, 'wonderful': 1.0, 'negatives': 1.0, 'mind': 1.0, 'baby': 1.0, 'ease': 1.0, 'hours': 1.0, 'smoothly': 1.0}
Word element => {'cold': 1.0, 'knowing': 1.0, 'instead': 1.0, 'helps': 1.0, 'weather': 1.0, 'really': 1.0, 'but': 1.0, 'proof': 1.0, 'so': 1.0, 'that': 1.0, 'something': 1.0, 'have': 3.0, 'its': 1.0, 'all': 2.0, 'to': 3.0, 'was': 1.0, 'check': 1.0, 'bright': 1.0, 'i': 3.0, 'when': 1.0, 'hot': 2.0, 'just': 1.0, 'people': 1.0, 'safe': 2.0, 'said': 1.0, 'in': 1.0, 'seems': 1.0, 'found': 2.0, 'perfect': 1.0, 'experience': 1.0, 'right': 2.0, 'fool': 1.0, 'my': 2.0, 'happy': 1.0, 'is': 4.0, 'say': 1.0, 'water': 4.0, 'several': 1.0, 'at': 1.0, 'sons': 1.0, 'not': 1.0, 'me': 2.0, 'too': 3.0, 'and': 3.0, 'bath': 1.0, 'had': 2.0, 'what': 1.0, 'his': 2.0, 'feels': 2.0, 'they': 1.0, 'it': 2.0, 'he': 1.0, 'appears': 1.0, 'excited': 1.0, 'comfortable': 1.0, 'or': 1.0, 'yet': 1.0, 'tells': 1.0, 'with': 1.0, 'pink': 1.0, 'scald': 2.0, 'far': 1.0, 'the': 3.0, 'turns': 1.0}
Word element => {'too': 1.0, 'mid': 1.0, 'sturdy': 1.0, 'like': 1.0, 'range': 1.0, 'walking': 1.0, 'heavy': 1.0, 'as': 2.0, 'have': 1.0, 'back': 1.0, 'daily': 1.0, 'boot': 1.0, 'mosquito': 1.0, 'very': 2.0, 'a': 6.0, 's': 1.0, 'sell': 1.0, 'hours': 1.0, 'bells': 1.0, 'please': 1.0, 'manufacturers': 1.0, 'holding': 2.0, 'many': 1.0, 'around': 1.0, 'zooper': 1.0, 'although': 1.0, 'that': 3.0, 'into': 1.0, 'separately': 1.0, 'sedan': 1.0, 'in': 3.0, 'pivot': 1.0, 'but': 2.0, 'dimensions': 1.0, 'can': 1.0, 'doesn': 1.0, 'recommend': 1.0, 'after': 1.0, 'waltz': 1.0, 'walks': 1.0, 'neighborhood': 1.0, 'completing': 1.0, 'throws': 1.0, 'the': 11.0, 'of': 3.0, 'up': 2.0, 'am': 1.0, 'our': 1.0, 'stroller': 4.0, 'how': 1.0, 'research': 1.0, 'honestly': 1.0, 'whistles': 1.0, 'with': 1.0, 'it': 6.0, 'accessories': 1.0, 'winter': 1.0, 'same': 1.0, 'who': 2.0, 'is': 5.0, 'at': 1.0, 'purchased': 1.0, 'drinking': 1.0, 'suv': 1.0, 'time': 1.0, 'wheels': 1.0, 'smoothly': 1.0, 'be': 1.0, 'and': 6.0, 'anyone': 1.0, 'locked': 1.0, 'to': 2.0, 'straight': 1.0, 'position': 1.0, 'cupholder': 1.0, 'i': 3.0, 'well': 1.0, 'trunk': 1.0, 'fine': 2.0, 'such': 1.0, 'for': 2.0, 't': 1.0, 'fit': 1.0, 'light': 1.0, 'enough': 1.0, 'forward': 1.0, 'not': 2.0, 'struggle': 1.0, 'load': 1.0, 'car': 1.0, 'do': 1.0, 'make': 1.0, 'would': 1.0, 'tight': 1.0, 'all': 1.0, 'other': 1.0, 'fits': 1.0, 'this': 3.0, 'highly': 1.0, 'wants': 1.0, 'net': 1.0, 'stylish': 1.0}
Word element => {'to': 1.0, 'recommend': 1.0, 'would': 1.0, '5': 1.0, 'only': 1.0, 'short': 1.0, 'month': 1.0, 'overall': 1.0, 'insert': 1.0, 'stroller': 5.0, 'neck': 1.0, 'did': 1.0, 'decent': 1.0, '4': 1.0, 'i': 7.0, 'it': 3.0, 'recline': 1.0, 'this': 3.0, 'support': 1.0, 'car': 1.0, 'covers': 1.0, 'like': 1.0, 'or': 1.0, 'need': 1.0, 'light': 1.0, 'bag': 1.0, 'any': 1.0, 'very': 2.0, 'little': 1.0, 'for': 6.0, 'where': 1.0, 'm': 1.0, 'in': 4.0, 'put': 1.0, 'but': 2.0, 'anyone': 1.0, 'and': 3.0, 'too': 2.0, 'out': 1.0, 'japan': 1.0, 'all': 1.0, 'fits': 1.0, 'me': 1.0, 'my': 2.0, 'extra': 1.0, 'another': 1.0, 'old': 1.0, 'fact': 1.0, 'am': 1.0, 'when': 1.0, 'fit': 1.0, 't': 2.0, 'might': 1.0, 'quick': 1.0, 'with': 1.0, 'that': 5.0, 'basket': 1.0, 'completely': 1.0, 'comes': 1.0, 'say': 1.0, 'really': 2.0, 'a': 4.0, 'small': 2.0, 'diaper': 1.0, 'as': 1.0, 'falls': 1.0, 'have': 1.0, 'carrying': 1.0, 'great': 2.0, 'person': 1.0, 'of': 2.0, 'the': 10.0, 'size': 2.0, 'will': 1.0, 'purse': 1.0, '2': 1.0, 'thing': 1.0, 'about': 1.0, 'she': 1.0, 'folds': 1.0, 'hugh': 1.0, 'nicely': 1.0, 'trips': 1.0, 'has': 1.0, 'is': 7.0, 'handle': 1.0, 'good': 1.0, 'which': 1.0, 'asleep': 1.0, 'side': 1.0, 'canopy': 1.0, 'daughter': 1.0, 'love': 1.0, 'accessories': 1.0, 'don': 2.0, 'you': 1.0, 'complaints': 1.0, 'on': 1.0, 'exept': 1.0, 'adjust': 1.0, 'handles': 1.0, 'spaces': 1.0, 'so': 1.0, 'taller': 1.0, 'sturdy': 1.0, 'they': 1.0, 'are': 1.0}
Word element => {'we': 1.0, 'hated': 1.0, 'dump': 1.0, 'greatest': 1.0, 'clock': 1.0, 'no': 1.0, 'kitchen': 1.0, 'manage': 1.0, 'rough': 1.0, 'makes': 1.0, 'wheels': 1.0, 'lock': 1.0, 'were': 1.0, 'me': 1.0, 'important': 1.0, 'attachment': 1.0, 'cup': 2.0, 'investing': 1.0, 'convenient': 1.0, 'might': 1.0, 'giant': 1.0, 'something': 1.0, 'bottle': 1.0, 'water': 1.0, 'mall': 1.0, 'works': 1.0, 'twist': 1.0, 'about': 1.0, 'imperfections': 1.0, 'handle': 1.0, 'belted': 1.0, 'tightly': 1.0, 'offer': 1.0, 'tray': 2.0, 'over': 2.0, 'ended': 1.0, 'comfortable': 1.0, 'handles': 1.0, 'settles': 1.0, 'comfy': 1.0, 'improvement': 1.0, 'how': 1.0, 'figured': 1.0, 'not': 3.0, 'twisted': 1.0, 'finished': 1.0, 'd': 1.0, 'kind': 2.0, 'time': 1.0, 'by': 2.0, 'fussed': 1.0, 'easier': 1.0, 'son': 2.0, 'arg': 1.0, 'surfaces': 1.0, 'going': 2.0, 'attached': 1.0, 'center': 1.0, 'each': 1.0, 'connect': 1.0, 'side': 4.0, 'attach': 1.0, 'mess': 1.0, 'such': 1.0, 'vouch': 1.0, 'husband': 1.0, 'purchased': 1.0, 'seem': 1.0, 'new': 1.0, 'course': 1.0, 'notice': 1.0, 'minor': 1.0, 'style': 1.0, 'their': 1.0, 'mark': 1.0, 'weird': 1.0, 'get': 1.0, 'kid': 1.0, 'zooper': 1.0, 'complicated': 1.0, 'newer': 1.0, 'maybe': 1.0, 'flip': 1.0, 'or': 2.0, 'straight': 1.0, 'quality': 1.0, 'stick': 1.0, 'almost': 1.0, 'adjustable': 2.0, 'slouched': 1.0, 'hang': 2.0, 'breeze': 1.0, 'they': 1.0, 'let': 1.0, 'partially': 1.0, 'lots': 1.0, 'canopy': 1.0, 'flat': 1.0, 'that': 9.0, 'few': 1.0, 'fall': 1.0, 'contained': 1.0, 'than': 3.0, 'boot': 4.0, 'those': 2.0, 'to': 16.0, 'cold': 1.0, 'jogging': 1.0, 'baby': 1.0, 'part': 1.0, 'sun': 1.0, 'heavier': 1.0, 'myself': 1.0, 'things': 5.0, 'you': 8.0, 'person': 1.0, 'the': 31.0, 'he': 4.0, 'necessary': 1.0, 'against': 1.0, 'comes': 1.0, 'take': 2.0, 'has': 4.0, 'trunk': 1.0, 'big': 1.0, 'nice': 4.0, 'little': 3.0, 'won': 2.0, 'two': 5.0, 'swivel': 1.0, 'frustrated': 1.0, 'straps': 1.0, 'red': 1.0, 'unseen': 1.0, 'run': 1.0, 'carried': 1.0, 'fits': 1.0, 'buckle': 1.0, 'basket': 2.0, 'an': 2.0, 'way': 1.0, 'all': 1.0, 'perfectly': 1.0, 'neat': 2.0, 'lighter': 1.0, 'other': 1.0, 'wallet': 1.0, 'lightweight': 2.0, 'so': 10.0, 'knees': 1.0, 'zips': 1.0, 'snack': 1.0, 'much': 3.0, 'put': 1.0, 'too': 2.0, '5': 2.0, 'one': 6.0, 'ordered': 2.0, 'covers': 1.0, 'lies': 1.0, 'beautifully': 1.0, 'this': 9.0, 'attachable': 1.0, 'can': 4.0, 'is': 17.0, 'which': 4.0, 'isn': 3.0, 'version': 1.0, 'day': 1.0, 'snazzier': 1.0, 'designed': 2.0, 'doesn': 1.0, 'm': 3.0, 's': 9.0, 'could': 2.0, 'beverages': 1.0, 't': 11.0, 'fairly': 1.0, 'small': 1.0, 'into': 4.0, 'through': 1.0, 'took': 2.0, 'old': 2.0, 'of': 10.0, 'even': 2.0, 'i': 10.0, 'well': 3.0, 'our': 3.0, 'looking': 1.0, 'does': 2.0, 'removable': 2.0, 'glad': 2.0, 'sunscreen': 1.0, 'but': 7.0, 'rain': 2.0, 'safer': 1.0, 'graco': 5.0, 'lot': 1.0, 'his': 1.0, 'pouch': 2.0, 'in': 12.0, 'together': 3.0, 'amazon': 1.0, 'window': 1.0, 'shade': 3.0, 'it': 23.0, 'be': 4.0, 'chance': 1.0, 'a': 26.0, 'bag': 3.0, 'awful': 1.0, 'including': 1.0, 'front': 1.0, 'folds': 1.0, 'model': 4.0, 'with': 4.0, 'picture': 1.0, 'best': 2.0, 'wasn': 1.0, 'like': 1.0, 'mesh': 3.0, 'sight': 1.0, 'umbrella': 2.0, 'strollers': 2.0, 'sturdy': 1.0, 'thing': 1.0, 'aren': 1.0, 'any': 1.0, 'quickly': 1.0, 'feel': 1.0, 'on': 6.0, 'flung': 1.0, 'fashion': 1.0, 'accessible': 1.0, 'manages': 1.0, 'hold': 2.0, 'cupholder': 1.0, 'hand': 1.0, 'enough': 1.0, 'sanitizer': 1.0, 'fit': 1.0, 'easy': 1.0, 'place': 2.0, 'cell': 1.0, 'phone': 1.0, 'use': 1.0, 'especially': 1.0, 'sink': 1.0, 'provides': 1.0, 'your': 6.0, 'where': 3.0, 'remedy': 1.0, 'sunglasses': 1.0, 'plastic': 1.0, 'built': 1.0, 'stretchy': 1.0, 'still': 3.0, 'don': 1.0, 'have': 4.0, 'parts': 1.0, 'anything': 1.0, 'and': 19.0, 'just': 3.0, 'cover': 1.0, 'lining': 1.0, 'good': 1.0, 'waterproof': 1.0, 'became': 2.0, 'snazzy': 2.0, 'handy': 1.0, 'sitting': 1.0, 'need': 2.0, 'also': 4.0, 'out': 3.0, 'stroller': 10.0, 'year': 3.0, 'keys': 1.0, 'child': 2.0, 'do': 2.0, 'underside': 1.0, 'either': 1.0, 'balmy': 1.0, 'medium': 1.0, 'would': 2.0, 'offers': 1.0, 'standard': 1.0, 'snap': 1.0, 'large': 1.0, 'for': 8.0, 'last': 1.0, 'down': 4.0, 'neatly': 1.0, 'reclines': 1.0, 'sized': 2.0, 'up': 5.0, 'diaper': 1.0, 'want': 1.0, 'wonderful': 1.0, 'keep': 1.0, 'there': 2.0, 'easily': 4.0, 'hood': 1.0, 'looks': 2.0, 'room': 2.0, 'are': 3.0, 'my': 5.0, 'position': 2.0, 'if': 7.0, 'great': 3.0, 'materials': 1.0, 'should': 1.0, 'washable': 1.0, 'feature': 1.0, 'couple': 1.0, 'minutes': 1.0, 'although': 1.0, 'locks': 1.0, 'smart': 1.0, 'very': 2.0, 'clip': 1.0, 'fold': 1.0, 'coolest': 1.0, 'unfold': 1.0, 'everything': 6.0, 'totally': 1.0, 'weather': 1.0, 'upright': 2.0, 'always': 2.0, 'most': 2.0, 'was': 2.0, 'reclined': 1.0, 'then': 1.0, 'only': 1.0, 'cheap': 1.0, 'legs': 2.0}
Word element => {'money': 1.0, 'did': 1.0, 'glad': 1.0, 'zooper': 1.0, 'live': 1.0, 'decided': 1.0, 'shallow': 1.0, 'very': 1.0, 'flimsy': 1.0, 'those': 1.0, 'mclaren': 2.0, 'roof': 1.0, 'considering': 1.0, 'our': 1.0, 'how': 1.0, 'no': 1.0, 'town': 1.0, 'look': 1.0, 'is': 20.0, 'at': 1.0, 'stays': 1.0, 'keeps': 1.0, 'front': 3.0, 'complained': 1.0, 'cover': 1.0, 'will': 1.0, 'canopy': 1.0, 'shield': 1.0, 'were': 2.0, 'later': 1.0, 'tighten': 1.0, 'difference': 1.0, 'we': 11.0, 'reviews': 1.0, 'then': 1.0, 'pound': 1.0, 'noticed': 1.0, 'take': 1.0, '15': 1.0, 'side': 3.0, 'someone': 1.0, 'good': 1.0, 'not': 3.0, 'forward': 1.0, 'well': 3.0, 'really': 1.0, 'uv': 3.0, 'under': 2.0, 'winter': 1.0, 'same': 1.0, 'super': 1.0, 'tethers': 1.0, 'the': 55.0, 'odyssey': 1.0, 'back': 2.0, 'out': 5.0, 'open': 2.0, 'rather': 1.0, 'backpack': 2.0, 'when': 2.0, 'boys': 3.0, 'rain': 1.0, 'first': 2.0, 'am': 5.0, 'would': 1.0, 'bar': 3.0, 'there': 1.0, 'yes': 1.0, 'idea': 1.0, 'between': 1.0, 'large': 2.0, 'canopies': 2.0, 'they': 2.0, 'maclaren': 1.0, 'across': 2.0, 'just': 4.0, 'and': 9.0, 'however': 2.0, 'get': 3.0, 'able': 3.0, 'you': 4.0, 'push': 2.0, 'savvy': 1.0, 'love': 4.0, 'but': 6.0, 'narrow': 1.0, 'big': 1.0, 'if': 1.0, 'great': 3.0, 'used': 1.0, 'shady': 1.0, 'whole': 2.0, 'over': 1.0, 'challenging': 1.0, 'fold': 2.0, 'clip': 1.0, 'about': 4.0, 'a': 12.0, 'easy': 5.0, 'fit': 3.0, 'absolutely': 1.0, '5': 1.0, 'one': 5.0, 'lot': 1.0, 'bought': 1.0, 'color': 1.0, 'worth': 1.0, 'order': 1.0, 'be': 1.0, 'it': 19.0, 'shade': 3.0, 'recline': 1.0, 'with': 3.0, 'using': 2.0, 'looking': 2.0, 'seats': 2.0, 'both': 3.0, 'handle': 3.0, 'excited': 1.0, 'people': 1.0, 'in': 8.0, '3': 2.0, 'weight': 1.0, 'carseats': 1.0, 'was': 3.0, 'to': 19.0, 'pretty': 1.0, 'have': 11.0, 'steers': 1.0, 'many': 1.0, 'luggage': 1.0, 'so': 4.0, 'want': 1.0, 'techno': 1.0, 'citty': 1.0, 'everything': 1.0, 'basket': 2.0, 'loves': 1.0, 'year': 1.0, 'stroller': 18.0, 'worst': 1.0, 'this': 5.0, 'unsnap': 1.0, 'pulling': 1.0, 'though': 1.0, 'after': 1.0, 'infant': 1.0, 'of': 10.0, 'old': 3.0, 'works': 1.0, 'tethered': 1.0, 'go': 2.0, 'figured': 1.0, 'thought': 2.0, 'possible': 1.0, 'use': 1.0, 'harness': 3.0, 'despite': 1.0, 'adjust': 1.0, 'blue': 1.0, 'combi': 2.0, 'single': 1.0, 'beside': 1.0, 'had': 2.0, 'on': 6.0, 'adjusters': 2.0, 'uses': 1.0, 'trouble': 1.0, 'tether': 2.0, 'crappy': 1.0, 'which': 1.0, 'tango': 2.0, 'meant': 1.0, 'close': 1.0, 'slide': 1.0, 'steer': 1.0, 'loosen': 1.0, 'up': 2.0, 'comments': 1.0, 'takes': 1.0, 'or': 2.0, 'down': 2.0, 'put': 2.0, 'fits': 1.0, 'yr': 1.0, 'all': 1.0, 'nicely': 1.0, 'must': 1.0, 'comfortable': 1.0, '2004': 1.0, 'done': 1.0, 'i': 17.0, 'simple': 1.0, 'finally': 1.0, 'small': 1.0, 'complaint': 1.0, 'strapping': 1.0, '2': 1.0, 'going': 2.0, 'little': 3.0, 'ago': 1.0, 'two': 1.0, 'handed': 1.0, 'steering': 1.0, 'silly': 2.0, 'that': 8.0, 'double': 1.0, 'read': 1.0, 'month': 2.0, 'talked': 1.0, 'pull': 2.0, 'wanting': 1.0, 'he': 2.0, 'looked': 1.0, 'gotten': 1.0, 'admit': 1.0, 'flattering': 1.0, 'weeks': 1.0, 'true': 1.0, 'boot': 2.0, 'having': 1.0, 'opening': 1.0, 'once': 1.0, 'are': 2.0, 'my': 5.0, 'room': 1.0, 'figure': 1.0, 'huge': 1.0, 'folded': 1.0, 'bags': 1.0}
Word element => {'work': 1.0, 'manufacturer': 1.0, 'from': 1.0, 'shades': 1.0, 'not': 2.0, 'recommended': 1.0, 'hand': 1.0, 'other': 1.0, 'don': 1.0, 'suction': 1.0, 'great': 1.0, 't': 1.0, 'the': 2.0, 'hold': 1.0, 'stay': 1.0, 'does': 1.0, 'this': 2.0, 'it': 1.0, 'star': 1.0, 'on': 1.0, 'cups': 1.0, 'too': 1.0, 'much': 1.0, 'product': 1.0, 'one': 1.0, 'for': 1.0, 'is': 1.0, 'side': 1.0}
Word element => {'ship': 1.0, 'actually': 1.0, 'that': 1.0, 'mirror': 2.0, 'they': 1.0, 'sense': 1.0, 'make': 2.0, 'didn': 1.0, 'couldn': 1.0, 'me': 1.0, 'and': 1.0, 'why': 2.0, 'is': 1.0, 'useless': 1.0, 't': 3.0, 'saw': 1.0, 'don': 1.0, 'a': 6.0, 'rocket': 1.0, 'understand': 1.0, 'i': 2.0, 'strange': 1.0, 'product': 1.0, 'to': 2.0, 'store': 1.0, 'not': 1.0, 'just': 2.0, 'works': 1.0, 'even': 1.0, 'would': 1.0, 'try': 1.0, 'sell': 1.0, 'this': 1.0, 'it': 5.0, 's': 2.0, 'company': 1.0, 'in': 1.0}
Word element => {'just': 1.0, 'would': 1.0, 'spoon': 1.0, 'strapped': 1.0, 'don': 1.0, 'circus': 1.0, 'or': 1.0, 'crappy': 1.0, 'unless': 1.0, 'house': 1.0, 'kidding': 1.0, 'are': 2.0, 'their': 1.0, 'eye': 1.0, 'on': 2.0, 'keep': 1.0, 'parents': 1.0, 'd': 1.0, 'over': 1.0, 'get': 1.0, 'accident': 1.0, 'out': 3.0, 'checked': 1.0, 'rest': 1.0, 't': 3.0, 's': 2.0, 'a': 4.0, 'got': 1.0, 'well': 1.0, 'i': 10.0, 'the': 7.0, 'of': 3.0, 'head': 3.0, 'around': 1.0, 'buy': 1.0, 'something': 1.0, 'hang': 1.0, 'course': 1.0, 'is': 3.0, 'yeah': 2.0, 'joke': 1.0, 'giant': 1.0, 'stretching': 1.0, 'ticks': 1.0, 'times': 1.0, 'useful': 1.0, 'distorted': 1.0, 'looked': 1.0, 'fun': 1.0, 'from': 1.0, 'check': 1.0, 'back': 1.0, 'front': 1.0, 'headrest': 1.0, 'crammed': 1.0, 'was': 1.0, 'to': 10.0, 'm': 1.0, 'in': 3.0, 'seat': 1.0, 'as': 3.0, 'where': 1.0, 'terror': 1.0, 'supposed': 1.0, 'dude': 1.0, 'you': 3.0, 'meant': 1.0, 'be': 2.0, 'an': 2.0, 'it': 4.0, 'this': 4.0, 'have': 5.0, 'once': 1.0, 'glance': 1.0, 'couldn': 2.0, 'install': 1.0, 'stretched': 1.0, 'everything': 1.0, 'idiot': 1.0, 'not': 1.0, 'my': 5.0, 'may': 2.0, 'me': 2.0, 'easy': 1.0, 'know': 1.0, 'like': 1.0, 'how': 2.0, 'glad': 1.0, 'ahead': 1.0, 'truck': 1.0, 'baby': 1.0, 'helping': 1.0, 'time': 1.0, 'fascination': 1.0, 'had': 1.0, 'what': 1.0, 'been': 2.0, 'because': 2.0, 'that': 3.0, 'box': 1.0, 'driving': 1.0, 'were': 2.0, 'goonies': 1.0, 'with': 3.0, 'gotten': 1.0, 'due': 1.0, 'serving': 1.0, 'products': 1.0, 'child': 2.0, 'product': 3.0, 'sheer': 1.0, 'into': 1.0, 'three': 1.0, 'eyes': 1.0, 'its': 1.0, 'safety': 1.0, 'size': 1.0, 'help': 1.0, 'but': 1.0, 'ears': 1.0, 'really': 1.0, 'off': 1.0, 'mirror': 2.0, 'facilitate': 1.0, 'by': 1.0}
Word element => {'time': 1.0, 'your': 1.0, 'waste': 1.0, 'looks': 1.0, 'sec': 1.0, '30': 1.0, 'installed': 1.0, '3': 1.0, 'that': 1.0, 'great': 1.0, 'more': 1.0, 't': 2.0, 'try': 1.0, 'was': 1.0, 'buying': 1.0, 'to': 2.0, 'hour': 1.0, 'still': 1.0, 'took': 1.0, 'up': 1.0, 'but': 1.0, 'stay': 1.0, 'get': 1.0, 'and': 3.0, 'me': 1.0, '1': 1.0, 'in': 2.0, 'this': 1.0, 'it': 2.0, 'wouldn': 1.0, 'don': 1.0, 'ended': 1.0, 'about': 1.0, 'another': 1.0, 'place': 1.0, 'brand': 1.0}
Word element => {'purchase': 1.0, 'useless': 1.0, 'was': 1.0, 'far': 1.0, 'too': 1.0, 'distance': 1.0, 'short': 1.0, 'few': 1.0, 'because': 1.0, 'as': 1.0, 'within': 1.0, 'main': 1.0, 'if': 1.0, 'state': 1.0, 'it': 3.0, 'only': 1.0, 'unit': 2.0, 'vibrating': 1.0, 'even': 1.0, 'mattress': 1.0, 'operates': 1.0, 'a': 2.0, 'that': 1.0, 'inches': 1.0, 'is': 2.0, 'the': 4.0, 'of': 1.0, 'i': 1.0, 'directions': 1.0, 'cannot': 1.0, 'place': 1.0, 'under': 1.0}
Word element => {'product': 1.0, 'solve': 1.0, 'would': 1.0, 'think': 1.0, 'option': 1.0, 'an': 1.0, 'made': 1.0, 'had': 1.0, 'wish': 1.0, 'toys': 1.0, 'them': 1.0, 'actually': 1.0, 'are': 1.0, 'before': 1.0, 'out': 1.0, 'worth': 1.0, 'now': 1.0, 'getting': 1.0, 'every': 2.0, 'new': 1.0, 'this': 2.0, 'rail': 1.0, 'they': 2.0, 'metal': 1.0, 'just': 3.0, 'replaced': 1.0, 'and': 3.0, 'soon': 1.0, 'play': 1.0, 've': 2.0, 'down': 1.0, 'crib': 1.0, 'batteries': 5.0, 'will': 3.0, 'sons': 1.0, 'been': 1.0, 'we': 1.0, 'months': 1.0, 'on': 4.0, '3': 1.0, 'put': 1.0, 'changing': 1.0, 'much': 1.0, 'issues': 1.0, 'contrast': 1.0, 'mattress': 1.0, 'found': 1.0, 'once': 1.0, 'thatgoes': 1.0, 'ok': 1.0, 'mine': 1.0, 'under': 1.0, 'middle': 1.0, 'yes': 1.0, 'so': 2.0, 'needs': 1.0, 'cord': 1.0, 'for': 5.0, 'using': 1.0, 'vibration': 2.0, 'a': 1.0, 'rattle': 1.0, 'it': 9.0, 'piece': 1.0, 'heart': 1.0, 'unit': 1.0, 'in': 3.0, 'i': 5.0, 'well': 1.0, 'when': 1.0, 'fails': 1.0, 'to': 9.0, 'as': 3.0, 'arrange': 1.0, 'set': 1.0, 'doesn': 1.0, 'work': 2.0, 'music': 1.0, 'but': 1.0, 'of': 3.0, 'the': 13.0, 'turns': 1.0, 'works': 1.0, 'without': 1.0, 'days': 3.0, '8': 1.0, 'correctly': 1.0, 'power': 1.0, 'run': 1.0, 'partially': 1.0, 'need': 1.0, 'or': 1.0, 'with': 2.0, 'volume': 1.0, 'low': 1.0, 'more': 1.0, 'is': 1.0, 'fall': 1.0, 'not': 1.0, 'be': 1.0, 'dead': 1.0, 'adjust': 1.0, 'begin': 1.0, '2': 3.0, 'thing': 1.0, 'me': 1.0, 'my': 2.0, 'many': 1.0, 'she': 1.0, 'baby': 1.0, 'you': 2.0, 'able': 1.0, 'night': 1.0, 'girl': 1.0, 'wakes': 1.0, 'intensity': 1.0, 'up': 2.0, 'sound': 1.0, 'her': 2.0, 'sooth': 1.0, 'too': 1.0, 'crying': 1.0, 'makes': 1.0, 'keep': 2.0, 't': 1.0, 'beat': 1.0, 'headache': 1.0, 'sleep': 1.0, 'back': 1.0}
Word element => {'vibration': 1.0, 'on': 1.0, 'wireless': 1.0, 'interfere': 1.0, 'could': 1.0, 'which': 1.0, 'turn': 1.0, 'sure': 1.0, 'make': 1.0, 'right': 1.0, 'run': 1.0, 'doesn': 1.0, 'for': 1.0, 'crib': 2.0, 'you': 1.0, 'built': 1.0, 'your': 1.0, 'off': 1.0, 'sleep': 1.0, 'when': 1.0, 'soothing': 1.0, 'any': 1.0, 'baby': 2.0, 't': 1.0, 'the': 4.0, 'great': 1.0, 'works': 1.0, 'to': 2.0, 'monitors': 1.0, 'thing': 1.0, 'a': 2.0, 'total': 1.0, 'lifesaver': 1.0, 'from': 1.0, 'in': 2.0, 'vibrators': 1.0, 'bassinet': 1.0, 'unit': 1.0, 'frequency': 1.0, 'it': 2.0, 'this': 1.0, 'transitioning': 1.0, 'with': 2.0}
Word element => {'product': 1.0, 'buy': 1.0, 'do': 1.0, 'baby': 1.0, 'soothing': 1.0, 'by': 1.0, 'life': 1.0, 'a': 2.0, 'hardly': 1.0, 'within': 1.0, 'be': 2.0, 'under': 1.0, 'place': 1.0, 'myself': 1.0, 'once': 2.0, 'the': 13.0, 'of': 6.0, 'for': 2.0, 'rigged': 1.0, 'happy': 1.0, 'been': 1.0, 'into': 1.0, 'that': 1.0, 'have': 3.0, 'it': 9.0, 'bought': 1.0, 'pretty': 1.0, 'to': 5.0, 'your': 1.0, 'any': 1.0, 'as': 1.0, 'was': 1.0, 'not': 3.0, 'few': 1.0, 'this': 2.0, 'months': 1.0, 'except': 1.0, 'what': 1.0, 'i': 10.0, 'sleep': 1.0, 'most': 1.0, 'but': 2.0, 'work': 1.0, 'all': 1.0, 'other': 2.0, 'choices': 1.0, 'perfectly': 1.0, 'there': 2.0, 'instead': 1.0, 'mattress': 1.0, 'reading': 1.0, 'vibration': 3.0, 'then': 1.0, 'reviews': 1.0, 'getting': 1.0, 'unit': 6.0, 'inches': 1.0, 'were': 1.0, 'havent': 1.0, 'knew': 1.0, 'out': 1.0, 'after': 1.0, 'can': 1.0, 'so': 2.0, 'main': 3.0, 'time': 1.0, 'or': 1.0, 'yet': 1.0, 'means': 1.0, 'will': 1.0, 'seems': 1.0, 'batteries': 2.0, 'having': 1.0, 'does': 1.0, 'top': 1.0, 'crib': 1.0, 'bad': 1.0, 'is': 3.0, 'side': 1.0, 'on': 2.0, 'near': 1.0, 'find': 1.0, '1': 1.0, 'with': 1.0, 'vibrate': 1.0, 'doesnt': 1.0, 'range': 1.0, 'bed': 1.0, 'and': 2.0, 'battery': 1.0, '5': 1.0, 'only': 1.0, 'replaced': 1.0, 'replace': 2.0, 'has': 1.0, 'them': 1.0, 'you': 1.0, 'had': 2.0, 'type': 1.0, 'me': 1.0, 'my': 1.0, 'again': 1.0, 'suggestion': 1.0, 'if': 1.0, 'think': 2.0, 'better': 1.0}
Word element => {'pick': 1.0, 'having': 1.0, 'pat': 1.0, 'without': 1.0, 'slightly': 1.0, 'middle': 1.0, 'using': 1.0, 'light': 1.0, 'leave': 1.0, 'an': 1.0, 'had': 2.0, 'wish': 1.0, 'fault': 1.0, 'on': 4.0, 'awake': 1.0, 'put': 1.0, 'much': 1.0, 'end': 1.0, 'try': 1.0, 'helping': 1.0, 'always': 1.0, 'up': 5.0, 'use': 1.0, 'her': 7.0, 'anyway': 1.0, 'don': 1.0, 'didn': 2.0, 'even': 2.0, 'wouldn': 1.0, 'crib': 2.0, 'into': 1.0, 'that': 3.0, 'been': 1.0, 'go': 2.0, 't': 4.0, 'a': 1.0, 'product': 1.0, 'once': 1.0, 'c': 1.0, 'help': 2.0, 'did': 2.0, 'transition': 1.0, 'when': 4.0, 'night': 2.0, 'you': 1.0, 'again': 1.0, 'i': 9.0, 'auto': 1.0, 'turned': 3.0, 'was': 3.0, 'would': 2.0, 'then': 1.0, 'we': 2.0, 'bloody': 1.0, 'this': 2.0, 'baby': 5.0, 'she': 2.0, 'administer': 1.0, 'stopped': 1.0, 'it': 10.0, 'thought': 1.0, 'discovered': 1.0, 'vibration': 3.0, 'sleeping': 1.0, 'which': 1.0, 'and': 6.0, 'my': 3.0, 'me': 2.0, 'find': 1.0, 'since': 1.0, 'for': 1.0, 'cry': 1.0, 'if': 2.0, 'turn': 2.0, 'excited': 1.0, 'turns': 1.0, 'bouncy': 2.0, 'from': 1.0, 'later': 1.0, 'in': 4.0, 'seat': 2.0, 'to': 8.0, 'sleep': 3.0, 'back': 3.0, 'know': 1.0, 'however': 1.0, '15': 1.0, 'mins': 1.0, 'option': 1.0, 'automatically': 1.0, 'running': 1.0, 'have': 1.0, 'b': 1.0, 'tried': 1.0, 'off': 2.0, 'woke': 3.0, 'screaming': 1.0, 'just': 3.0, 'murder': 1.0, 'harder': 1.0, 'get': 1.0, 'tylenol': 1.0, 'there': 1.0, 'is': 4.0, 'only': 1.0, 'drowsy': 1.0, 'function': 2.0, 'but': 1.0, 'detects': 1.0, 'device': 2.0, 'of': 2.0, 'the': 15.0, 'moves': 1.0, 'helpful': 1.0, 'immediately': 1.0, 'second': 1.0, 'how': 1.0, 'with': 1.0, 'vibrations': 2.0, 'can': 1.0, 'so': 1.0, 'necessarily': 1.0}
Word element => {'if': 1.0, 'up': 1.0, 'makes': 1.0, 'problems': 1.0, 'she': 1.0, 'it': 5.0, 'with': 1.0, 'i': 6.0, 'switch': 1.0, 'terrified': 1.0, 'a': 1.0, 'going': 1.0, 'might': 1.0, 'soothe': 1.0, 'recommend': 1.0, 'the': 7.0, 'me': 1.0, 'vibrating': 1.0, 'but': 1.0, 'will': 1.0, 'to': 3.0, 'outside': 1.0, 'all': 1.0, 'automatically': 1.0, 'have': 1.0, 'knew': 1.0, 'reviews': 1.0, 'bassinet': 1.0, 'yes': 1.0, 'crib': 1.0, 'in': 2.0, 'so': 1.0, 'and': 3.0, 'plugged': 1.0, 'their': 1.0, 'true': 1.0, 'working': 1.0, 'babies': 1.0, 'that': 1.0, 'read': 1.0, 'monitor': 2.0, 'interupt': 1.0, 'just': 2.0, 'starts': 1.0, 'fact': 1.0, 'my': 1.0, 'her': 1.0, 'its': 1.0, 'works': 1.0, 'noise': 1.0, 'room': 1.0, 'love': 2.0, 'product': 1.0, 'would': 1.0, 'from': 2.0, 'mothers': 1.0, 'right': 1.0, 'fine': 1.0, 'wanting': 1.0}
Word element => {'require': 1.0, 'swing': 1.0, 'items': 1.0, 'with': 1.0, 'have': 1.0, 'any': 1.0, 'as': 1.0, 'to': 1.0, 'need': 1.0, 'just': 1.0, 'happy': 1.0, 'keeps': 1.0, 'penny': 1.0, 'every': 1.0, 'worth': 1.0, 'cares': 1.0, 'song': 1.0, 'rechargable': 1.0, 'same': 1.0, 'stay': 1.0, 'it': 1.0, 'play': 1.0, 'and': 6.0, 'of': 2.0, 'week': 1.0, 'item': 1.0, 'batteries': 2.0, 'will': 2.0, 'doesn': 1.0, 'thing': 3.0, 'finally': 1.0, '4': 1.0, 'on': 2.0, 'is': 4.0, 'totally': 1.0, 'that': 2.0, 'something': 1.0, 'loud': 1.0, 'wonderful': 1.0, 'wakes': 1.0, 'night': 1.0, 'baby': 3.0, 'the': 9.0, 'great': 1.0, 'my': 2.0, 'vibration': 2.0, 'sleeping': 1.0, 'since': 1.0, 'who': 1.0, 'keep': 1.0, 'but': 1.0, 'most': 2.0, 'music': 1.0, 'old': 1.0, 'makes': 1.0, 't': 1.0, 'a': 1.0, 'little': 1.0, 'crib': 1.0, 'noise': 1.0, 'anyway': 1.0, 'over': 3.0, 'up': 1.0, 'sound': 2.0, 'in': 1.0, 'turn': 1.0, 'when': 1.0, 'again': 1.0, 'pack': 1.0, 'only': 1.0, 'works': 1.0, 'this': 2.0, 'mattress': 1.0, 'under': 1.0, 'rotate': 1.0, 'negative': 1.0, 'enough': 1.0, 'bit': 1.0, 'so': 1.0}
Word element => {'helped': 1.0, 'definitely': 1.0, 'has': 1.0, 'they': 1.0, 'at': 1.0, 'things': 1.0, 'motor': 1.0, 'molars': 1.0, 'with': 1.0, 'it': 1.0, 'this': 1.0, 'unit': 1.0, 'problems': 1.0, 'year': 1.0, 'one': 2.0, 'absolutely': 1.0, 'strait': 1.0, 'and': 2.0, 'used': 1.0, 'i': 2.0, 'invest': 1.0, 'no': 1.0, 'about': 1.0, 'but': 1.0, 'nothing': 1.0, 'good': 1.0, 'have': 1.0, 'all': 1.0, 'to': 1.0, 'vibrating': 1.0, 'now': 1.0, 'for': 1.0, 'product': 1.0, 'unfortunately': 1.0, 'my': 1.0, 'the': 2.0, 'in': 2.0, 'burned': 1.0, 'just': 1.0, 'purchased': 1.0, 'we': 2.0, 'a': 1.0, 'new': 1.0, 'rechargeable': 1.0, 'did': 1.0, 'batteries': 1.0, 'daughter': 1.0, 'say': 1.0, 'is': 1.0, 'teething': 1.0, 'again': 1.0}
Word element => {'will': 1.0, 'know': 1.0, 'colicky': 1.0, 'our': 1.0, 'here': 1.0, 'dollars': 1.0, 'old': 1.0, 'tranistioning': 1.0, 'help': 2.0, 'rocked': 1.0, 'gently': 1.0, 'was': 3.0, 'first': 1.0, 'station': 1.0, 'in': 1.0, 'i': 1.0, 'well': 1.0, 'slept': 1.0, 'had': 1.0, 'pack': 1.0, 'birth': 1.0, 'for': 3.0, 's': 5.0, 'a': 7.0, 'we': 4.0, 'rest': 1.0, 't': 3.0, 'it': 2.0, 'usually': 1.0, 'all': 1.0, 'dream': 1.0, 'like': 1.0, 'vibration': 1.0, 'great': 1.0, 'automatically': 2.0, 'calms': 1.0, 'have': 2.0, 'year': 1.0, 'camera': 1.0, 'worth': 1.0, 'almost': 1.0, 'now': 1.0, 'bassinet': 1.0, 'to': 9.0, 'set': 2.0, 'good': 1.0, 'side': 1.0, 'crib': 4.0, 'works': 1.0, 'mattress': 1.0, 'perfect': 1.0, 'few': 2.0, 'this': 3.0, 'rail': 2.0, 'problems': 1.0, 'on': 4.0, 'sounds': 1.0, 'plays': 1.0, 'cause': 1.0, '20lbs': 1.0, 'keep': 1.0, 'since': 2.0, 'the': 15.0, 'she': 3.0, 'dad': 1.0, 'baby': 4.0, 'heartbeat': 1.0, 'used': 1.0, 'addicted': 1.0, 'and': 9.0, 'too': 1.0, 'under': 1.0, 'music': 2.0, 'so': 1.0, 'can': 1.0, 'handheld': 1.0, 'work': 1.0, 'night': 2.0, 'cries': 2.0, 'has': 1.0, 'puts': 1.0, 'lowest': 2.0, 'experienced': 1.0, 'nature': 1.0, 'when': 1.0, 'right': 1.0, 'simultaneously': 1.0, 'sleep': 2.0, 'back': 2.0, 'must': 1.0, 'setting': 1.0, 'doesn': 1.0, 'turn': 2.0, 'if': 2.0, 'every': 1.0, 'itself': 1.0, 'not': 3.0, 'your': 1.0, 'any': 1.0, 'mom': 1.0, 'don': 2.0, 'up': 1.0, 'or': 1.0, 'need': 1.0, 'get': 1.0, 'comfort': 1.0, 'wks': 1.0, 'her': 5.0, 'use': 1.0, 'volume': 1.0, 'with': 2.0, 'infant': 1.0, 'color': 1.0, 'interference': 1.0, 'monitor': 2.0, 'unit': 2.0, 'inches': 1.0, 'both': 2.0, 'at': 1.0, 'is': 2.0, 'ps': 1.0, 'play': 2.0, 'about': 2.0, 'no': 1.0, 'changing': 1.0, '16': 1.0, '24': 1.0, 'center': 1.0, 'from': 2.0, 'controls': 1.0, 'summer': 1.0, 'either': 1.0, 'vibrator': 4.0, 'operate': 1.0, 'there': 1.0, 'perfectly': 1.0}
Word element => {'well': 1.0, 'made': 1.0, 'really': 1.0, 'my': 1.0, 'the': 1.0, 'problems': 1.0, 'in': 1.0, 'crib': 1.0, 'vibration': 1.0, 'and': 1.0, 'not': 2.0, 'would': 1.0, '10': 1.0, 'have': 1.0, 'unit': 1.0, 'with': 1.0, 'this': 1.0, 'found': 1.0, 'week': 1.0, 'i': 1.0, 'old': 1.0, 'any': 1.0, 'baby': 1.0, 'sleep': 2.0, 'her': 2.0, 'has': 1.0}
Word element => {'second': 1.0, 'product': 1.0, 'out': 1.0, 'original': 1.0, 'wore': 1.0, 'another': 1.0, 'am': 1.0, 'again': 1.0, 're': 1.0, 'her': 1.0, 'worth': 1.0, 'now': 1.0, 'one': 3.0, 'should': 1.0, 'auto': 1.0, 'feature': 2.0, 'well': 1.0, 'i': 8.0, '4': 1.0, 'is': 2.0, 'at': 2.0, 'three': 1.0, 'as': 1.0, 'units': 2.0, 'option': 1.0, 'penny': 1.0, 'up': 2.0, 'keep': 1.0, 'transition': 1.0, 'help': 1.0, 'the': 10.0, 'soother': 1.0, 'newest': 1.0, 'so': 4.0, 'time': 2.0, 'and': 4.0, 'more': 1.0, 'woke': 1.0, 'ease': 1.0, 'days': 1.0, 'vibration': 1.0, 'using': 2.0, 'a': 2.0, 'we': 9.0, 'alot': 1.0, 'go': 1.0, 't': 2.0, 'night': 1.0, 'son': 1.0, 'also': 1.0, 'batteries': 2.0, 'started': 1.0, 'sounds': 1.0, 'm': 1.0, 'in': 3.0, 'was': 2.0, 'sleep': 1.0, 'ordering': 1.0, 'children': 1.0, 'least': 1.0, 'any': 2.0, 'when': 1.0, 'think': 1.0, 'definitely': 1.0, 'jiggler': 1.0, 'for': 3.0, 'bed': 1.0, 'to': 4.0, 'bassinet': 1.0, 'this': 3.0, 'purchasing': 1.0, 'bought': 1.0, 'would': 2.0, 'letting': 1.0, 'each': 1.0, 'talking': 1.0, 'around': 1.0, 'his': 2.0, 'crib': 3.0, 'our': 1.0, 'hopeful': 1.0, 'old': 1.0, 'that': 1.0, 'problems': 1.0, 'on': 2.0, 'my': 1.0, 'me': 1.0, 'from': 1.0, 'worked': 1.0, 'having': 1.0, 'had': 1.0, 'aside': 1.0, 'months': 2.0, 'get': 1.0, 'perfectly': 1.0, 'used': 2.0, 'set': 1.0, 'many': 1.0, 'thought': 1.0, 'him': 1.0, 'it': 6.0, '9': 1.0, 'with': 2.0, 'replaced': 1.0, 'both': 1.0, 'every': 2.0, '5': 1.0, 'he': 1.0, 'rechargables': 1.0, 'way': 1.0, 'machine': 1.0, 'didn': 2.0, 'have': 2.0, 'all': 1.0, 'other': 1.0, 'care': 1.0, 'much': 1.0, 'rechargeable': 1.0, 'only': 1.0, 'vibrating': 1.0, 'after': 1.0, 'are': 1.0, 'quit': 1.0}
Word element => {'panel': 1.0, 'control': 1.0, 'even': 1.0, 'crib': 1.0, 'enough': 1.0, 'batteries': 1.0, 'been': 1.0, 'close': 2.0, 'great': 1.0, 'the': 8.0, 'controls': 1.0, 'works': 1.0, 'his': 1.0, 'part': 1.0, 'month': 1.0, 'it': 3.0, 'this': 1.0, 'with': 1.0, 'whole': 1.0, 'about': 1.0, 'we': 3.0, 'a': 2.0, 'using': 1.0, 'monitors': 1.0, 'once': 1.0, 'to': 5.0, 'signal': 1.0, 'my': 1.0, 'cause': 1.0, 'son': 1.0, 'vibrate': 1.0, 'interfer': 1.0, 'but': 1.0, 'change': 1.0, 'is': 2.0, 'outgrew': 1.0, 'or': 1.0, 'so': 1.0, 'travel': 1.0, 'use': 1.0, 'every': 1.0, 'night': 1.0, 'when': 1.0, 'you': 2.0, 'since': 1.0, 'keep': 1.0, 'egg': 1.0, 'if': 1.0, 'bassinett': 1.0, 'have': 4.0, 'vibrator': 2.0, 'monitor': 1.0, 'in': 1.0, 'room': 1.0, 'strong': 1.0}
Word element => {'sounded': 1.0, 'here': 1.0, 'ones': 1.0, 'worth': 1.0, 'got': 1.0, 'noticable': 1.0, 'so': 1.0, 'up': 1.0, 'roll': 1.0, 'barely': 1.0, 'you': 1.0, 'maxx': 1.0, 'very': 1.0, 'need': 1.0, 'mine': 1.0, 'never': 1.0, 'seemed': 1.0, 'in': 1.0, 'doesnt': 1.0, 'just': 1.0, 'hope': 1.0, 'off': 1.0, 'pop': 1.0, 'first': 1.0, 'other': 1.0, 'happening': 1.0, 'secure': 2.0, 'middle': 1.0, 'and': 4.0, 'sooo': 1.0, 'go': 1.0, 'a': 3.0, 'coil': 1.0, 'return': 1.0, 'at': 1.0, 'keep': 1.0, 'since': 1.0, 'has': 1.0, 'on': 4.0, 'top': 1.0, 'complaint': 1.0, 'shade': 3.0, 'stroller': 1.0, 'can': 1.0, 'work': 1.0, 'but': 2.0, 'remove': 1.0, 'it': 6.0, 'pain': 1.0, 'this': 1.0, 'compared': 1.0, 'part': 1.0, 'hard': 1.0, 'piece': 2.0, 'with': 1.0, 'would': 2.0, 'biggest': 1.0, 'my': 1.0, 'get': 3.0, 'to': 8.0, 'its': 1.0, 'love': 1.0, 'product': 1.0, 'tj': 1.0, 'unobtrusive': 1.0, 'that': 4.0, 'thought': 2.0, 'expenisve': 1.0, 'helps': 1.0, 'stay': 1.0, 'the': 7.0, 'place': 2.0, 'like': 2.0, 'hold': 1.0, 'which': 1.0, '10': 1.0, 'more': 1.0, 'is': 2.0, 'min': 1.0, 'existing': 1.0, 'really': 1.0, 'side': 3.0, 'paid': 1.0, 'springy': 1.0, 'good': 1.0, 'i': 7.0, 'then': 1.0, 'took': 1.0, 'price': 1.0, 'd': 2.0, 'have': 1.0, 'maybe': 1.0, 'once': 2.0, 'one': 1.0}
Word element => {'directly': 1.0, 'look': 1.0, 'if': 1.0, 'dimensions': 1.0, 'appears': 1.0, 'of': 3.0, 'view': 1.0, 'what': 1.0, 'get': 1.0, 'and': 2.0, 'v': 1.0, 'appropriate': 1.0, 'the': 11.0, 'honda': 1.0, 'you': 1.0, 'when': 1.0, 'i': 2.0, 'in': 2.0, 'also': 1.0, 'only': 1.0, 'mirror': 4.0, 'discern': 1.0, 'a': 2.0, 'could': 2.0, 'image': 2.0, 'was': 2.0, 'angle': 1.0, 'into': 1.0, 'that': 1.0, 'properly': 1.0, 'wife': 1.0, 'held': 1.0, 'on': 1.0, 'center': 1.0, 'seat': 1.0, 'to': 2.0, 'our': 1.0, 'as': 1.0, 'test': 1.0, 'so': 1.0, 'small': 1.0, 'about': 1.0, 'no': 1.0, 'my': 1.0, 'details': 1.0, 'baby': 3.0, 'focused': 1.0, 'this': 1.0, 'doing': 1.0, 'cr': 1.0, 'is': 1.0, 'give': 1.0, 'not': 1.0, 'distorting': 1.0}
Word element => {'hitting': 1.0, 'want': 1.0, 'really': 1.0, 'suction': 1.0, 'be': 1.0, 'window': 2.0, 'would': 2.0, 'didn': 1.0, 'perhaps': 1.0, 'now': 1.0, 'does': 1.0, 'off': 2.0, 'it': 4.0, 'thing': 1.0, 'about': 1.0, 'by': 1.0, 'worried': 1.0, 'still': 1.0, 'fit': 1.0, 'headrest': 2.0, 'somehow': 1.0, 'out': 1.0, 'that': 1.0, 'into': 1.0, 'look': 1.0, 'around': 1.0, 'his': 2.0, 'he': 2.0, 'this': 1.0, 'quite': 1.0, 'don': 1.0, 'up': 1.0, 'bother': 1.0, 'check': 1.0, 'ok': 1.0, 'hold': 1.0, 'sure': 1.0, 'face': 1.0, 'was': 1.0, 'bought': 1.0, 'baby': 3.0, 'possibly': 1.0, 'the': 6.0, 'head': 1.0, 'work': 2.0, 'but': 2.0, 'can': 1.0, 'honda': 1.0, 'so': 2.0, 'held': 1.0, 'or': 1.0, 'yet': 1.0, 'my': 4.0, 'raise': 1.0, 'minivan': 1.0, 'on': 3.0, 'make': 1.0, 'i': 9.0, 'and': 5.0, 'see': 2.0, 'couldn': 1.0, 'cute': 1.0, 't': 4.0, 'could': 2.0, 's': 2.0, 'turning': 1.0, 'in': 3.0, 'driving': 1.0, 'm': 1.0, 'mirror': 4.0, 'odyssey': 1.0, 'from': 1.0, 'while': 1.0, 'finally': 1.0, 'an': 1.0, 'figured': 1.0, 'infant': 1.0, 'car': 1.0, 'flying': 2.0, 'though': 1.0, 'anything': 1.0, 'since': 1.0, 'at': 1.0, 'to': 3.0, 'our': 1.0, 'seat': 1.0, 'all': 1.0, 'had': 1.0, 'either': 1.0}
Word element => {'backwards': 1.0, 'and': 1.0, 'slides': 1.0, 'it': 1.0, 'but': 1.0, 'frontwards': 1.0, 'toilet': 1.0, 'to': 1.0, 'on': 1.0, 'is': 1.0, 'too': 1.0, 'does': 1.0, 'round': 1.0, 'snap': 1.0, 'the': 2.0, 'hole': 1.0, 'small': 1.0, 'for': 1.0, 'boys': 1.0, 'top': 1.0}
Word element => {'first': 1.0, 'reviews': 1.0, 'read': 1.0, 'smart': 1.0, 'understand': 1.0, 'wanted': 1.0, 'was': 2.0, 'back': 1.0, 'not': 1.0, 're': 1.0, 'my': 1.0, 'him': 1.0, 'would': 2.0, 'it': 6.0, 'he': 1.0, 'only': 1.0, 'got': 1.0, 'amazon': 1.0, 'use': 1.0, 'yet': 1.0, 'let': 1.0, 'the': 4.0, 'mess': 1.0, 'i': 5.0, 'tried': 2.0, 'potty': 4.0, 'son': 1.0, 'to': 4.0, 'as': 2.0, 'on': 3.0, 'over': 1.0, 'home': 1.0, 'sit': 2.0, 'have': 2.0, 'purchased': 1.0, 'what': 1.0, 'used': 1.0, 'soon': 1.0, 'and': 3.0, 'get': 1.0, 'training': 2.0, 'kept': 1.0, 'tipping': 1.0, 'but': 1.0, 'can': 1.0, 'right': 1.0, 'imagine': 1.0, 'if': 2.0, 'for': 2.0, 'actually': 1.0, 'we': 4.0, 's': 1.0, 'going': 1.0}
Word element => {'over': 1.0, 'day': 1.0, 'buy': 1.0, 'glad': 1.0, 'am': 1.0, 'pumps': 1.0, 'broke': 1.0, 'not': 2.0, 'after': 1.0, 'better': 1.0, 'another': 1.0, 'my': 2.0, 'find': 1.0, 'i': 7.0, 'be': 1.0, 'had': 1.0, 'purchased': 1.0, 'use': 1.0, 'most': 1.0, 'any': 1.0, 'to': 3.0, 'as': 1.0, 'this': 3.0, 'quick': 1.0, 'it': 5.0, 'loud': 1.0, 'pump': 3.0, 'so': 2.0, 'time': 1.0, 'they': 1.0, 'a': 2.0, 'purchasing': 1.0, 'cheap': 1.0, 'love': 1.0, 'bought': 1.0, 'one': 1.0, 'would': 1.0, 'something': 1.0, 'though': 1.0, 'medela': 2.0, 'quickly': 1.0, 'is': 3.0, 'works': 1.0, 'comfortable': 1.0, 'until': 1.0, 'great': 1.0, 'on': 1.0, 'will': 1.0, 'batteries': 1.0, 'and': 3.0, 'too': 1.0, 'last': 1.0, 'fix': 1.0, 'compared': 1.0, 'while': 1.0}
Word element => {'ved': 1.0, 'pump': 1.0, 'quite': 1.0, 'and': 1.0, 'haved': 1.0, 'all': 1.0, 'to': 2.0, 'i': 3.0, 'gentel': 1.0, 's': 1.0, 'it': 1.0, 'can': 1.0, 'say': 1.0, 'others': 2.0, 'is': 3.0, 'tried': 2.0, 'the': 3.0, 'this': 1.0, 'wonderful': 1.0, 'soft': 1.0, 'compared': 2.0}
Word element => {'bought': 1.0, 'glad': 1.0, '10': 1.0, 'than': 1.0, 'less': 1.0, 'takes': 1.0, 'used': 1.0, 'pumps': 1.0, 'suction': 1.0, 'only': 1.0, 'do': 1.0, 'days': 1.0, 'money': 1.0, 'but': 1.0, '2': 1.0, 'me': 1.0, 'not': 1.0, 'just': 1.0, 'am': 1.0, 'hurt': 1.0, 'loud': 1.0, 'wish': 1.0, 'this': 1.0, 'with': 1.0, 'i': 9.0, 'that': 2.0, 'been': 1.0, 'faster': 1.0, 'shipped': 1.0, 'doesn': 1.0, 'using': 1.0, 'for': 3.0, 'had': 1.0, 'shields': 1.0, 'the': 6.0, 'have': 3.0, 'easy': 1.0, 'pump': 3.0, 'problems': 1.0, 'free': 1.0, 'now': 1.0, 'to': 3.0, '1': 1.0, 'and': 6.0, 'it': 7.0, 'month': 1.0, 'good': 1.0, 'clean': 1.0, 'mins': 1.0, 'seems': 1.0, 'also': 2.0, 'company': 1.0, 'in': 1.0, 'called': 1.0, 'ask': 1.0, 'no': 1.0, 'about': 1.0, 's': 2.0, 't': 1.0, 'a': 3.0, 'compared': 1.0, 'part': 1.0, 'nicest': 1.0, 'them': 1.0, 'employee': 1.0, 'got': 1.0, 'alternative': 1.0, 'think': 1.0, 'on': 1.0, 'phone': 1.0, 'adapters': 1.0, 'slow': 1.0, 'received': 1.0}
Word element => {'recommend': 1.0, 'definitely': 1.0, 'would': 1.0, 'but': 1.0, 'for': 1.0, 'own': 1.0, 'my': 1.0, 'i': 4.0, 'm': 1.0, 'ended': 1.0, 'dishes': 1.0, 'an': 1.0, 'great': 1.0, 'works': 1.0, 'it': 3.0, 'love': 1.0, 'freak': 1.0, 'this': 1.0, 'using': 1.0, 'organization': 1.0, 'and': 2.0, 'up': 1.0}
Word element => {'anything': 1.0, 'hold': 1.0, 'straws': 1.0, 'silverware': 1.0, 'part': 1.0, 'middle': 1.0, 'though': 1.0, 'sturdy': 1.0, 'how': 1.0, 'mind': 1.0, 'did': 1.0, 'if': 1.0, 'have': 1.0, 'would': 1.0, 'guess': 1.0, 'enough': 2.0, 'not': 2.0, 'does': 1.0, 'than': 1.0, 'different': 1.0, 'mainly': 1.0, 'shallow': 1.0, 'there': 1.0, 'away': 1.0, 'too': 1.0, 'and': 5.0, 'ug': 1.0, 'pictured': 1.0, 'large': 3.0, 'bought': 1.0, 'be': 1.0, 'onto': 1.0, 'picture': 1.0, 'however': 1.0, 'oval': 1.0, 'i': 3.0, 'looks': 1.0, 'it': 7.0, 'say': 1.0, 'is': 3.0, 'right': 1.0, 'looking': 1.0, 'returning': 1.0, 'box': 1.0, 'that': 2.0, 'saturday': 1.0, 'are': 1.0, 'insert': 1.0, 'shaped': 1.0, 'ugly': 1.0, 'the': 10.0, 'without': 1.0, 'disks': 2.0, 'you': 2.0, 'this': 1.0, 'platform': 1.0, 'on': 2.0, 'make': 2.0, '5': 1.0, 'room': 1.0, 'actually': 2.0, 'product': 1.0, 'cheap': 1.0, 'for': 3.0, 'as': 1.0, 'actual': 1.0, 'to': 3.0, 'cups': 2.0, 'round': 1.0, 'they': 1.0, 'very': 2.0, 'seems': 1.0, 'will': 1.0, 'also': 1.0, 'base': 1.0}
Word element => {'expired': 1.0, 'warranty': 1.0, 'three': 1.0, 'about': 2.0, 'mine': 1.0, 'button': 1.0, 'off': 1.0, 'months': 1.0, 'on': 2.0, 'etc': 1.0, 'right': 1.0, 'noisy': 1.0, 'stuck': 1.0, 'level': 1.0, 'sound': 1.0, 'consumer': 1.0, 'thought': 1.0, 'but': 1.0, 'all': 1.0, 'recommended': 1.0, 'was': 1.0, 'monitor': 1.0, 'because': 1.0, 'too': 1.0, 'by': 1.0, 'purchased': 1.0, 'reports': 1.0, 'comments': 1.0, 'time': 1.0, 'poor': 1.0, 'worked': 1.0, 'of': 1.0, 'negative': 1.0, 'after': 1.0, 'agree': 1.0, 'adjustment': 1.0, 'the': 4.0, 'only': 1.0, 'this': 1.0, 'it': 2.0, 'with': 1.0, 'beeping': 1.0, 'i': 3.0, 'regarding': 1.0}
Word element => {'also': 1.0, 'lost': 1.0, 'the': 4.0, 't': 1.0, 'turn': 1.0, 'can': 1.0, 'this': 1.0, 'it': 1.0, 'with': 1.0, 'on': 1.0, 'is': 1.0, 'unhappy': 1.0, 'looses': 1.0, 'am': 1.0, 'very': 3.0, 'monitor': 1.0, 'and': 1.0, 'i': 2.0, 'when': 1.0, 'receiver': 2.0, 'an': 1.0, 'easily': 2.0, 'beep': 1.0, 'has': 1.0, 'annoying': 1.0, 'signal': 2.0}
Word element => {'hands': 1.0, 'his': 1.0, 'wash': 1.0, 'foot': 1.0, '3': 1.0, 'enough': 1.0, 'tall': 2.0, 'not': 1.0, 'but': 1.0, 'kid': 1.0, 'toilet': 1.0, 'height': 1.0, 'the': 3.0, 'old': 1.0, 'working': 1.0, 'has': 1.0, 'good': 1.0, 'using': 1.0, 'for': 2.0, 'potty': 1.0, 'been': 1.0, 'to': 3.0, 'its': 1.0, 'two': 1.0, 'sink': 1.0, 'our': 1.0, 'reach': 3.0, 'and': 2.0, 'year': 1.0, 'very': 1.0, 'this': 1.0, 'it': 1.0, 'him': 1.0, 'really': 1.0, 'is': 1.0, 'a': 2.0, 'well': 1.0}
Word element => {'would': 1.0, 'little': 1.0, 'at': 1.0, 'great': 1.0, 'the': 1.0, 'over': 1.0, 'actually': 1.0, 'second': 1.0, 'amazon': 1.0, 'price': 1.0, 'about': 1.0, 'a': 1.0, 'purchased': 1.0, 'to': 1.0, 'stool': 1.0, 'r': 2.0, 'i': 1.0, 'one': 1.0, 'us': 2.0, 'clean': 1.0, 'recommend': 1.0, 'easy': 1.0, 'but': 2.0, 'and': 1.0, 'me': 1.0, 'pretty': 1.0, 'durable': 1.0, 'in': 1.0, 'shop': 1.0, 'my': 1.0, 'toys': 2.0, '7': 1.0, 'charged': 1.0}
Word element => {'next': 1.0, 'bath': 1.0, 'hold': 1.0, 'use': 1.0, 'to': 1.0, 'still': 1.0, 'they': 1.0, 'and': 1.0, 'this': 1.0, 'toys': 1.0, 'has': 1.0, 'stool': 1.0, 'many': 1.0, 'step': 1.0, 'lasted': 1.0, 'generation': 1.0, 'the': 2.0, 'it': 2.0, 'love': 1.0, 'for': 2.0, 'years': 1.0, 'children': 1.0}
Word element => {'bonus': 1.0, 'a': 1.0, 'top': 1.0, 'standing': 1.0, 'my': 1.0, 'the': 3.0, 'pee': 1.0, 'up': 1.0, 'and': 1.0, 'learn': 1.0, 'this': 1.0, 'grandson': 1.0, 'to': 2.0, 'right': 1.0, 'help': 1.0, 'go': 1.0, 'height': 1.0, 'i': 1.0, 'bought': 1.0, 'stool': 1.0, 'is': 2.0, 'on': 1.0, 'just': 1.0, 'slip': 1.0, 'non': 1.0, 'cover': 1.0}
Word element => {'we': 1.0, 'found': 1.0, 'happy': 1.0, 'am': 1.0, 'overall': 1.0, 'amazon': 1.0, 'on': 1.0, 'here': 1.0, 'and': 1.0, 'a': 1.0, 'got': 1.0, 'in': 1.0, 'had': 2.0, 'though': 1.0, 'blue': 1.0, 'but': 2.0, 'before': 2.0, 'the': 2.0, 'exact': 1.0, 'one': 2.0, 'i': 5.0, 'cheaper': 1.0, 'same': 2.0, 'wish': 1.0, 'sell': 1.0, 'little': 1.0, 'that': 1.0, 'at': 1.0, 'ikea': 1.0, 'would': 1.0, 'they': 1.0, 'it': 1.0}
Word element => {'grandma': 1.0, 'hands': 1.0, 'to': 1.0, 'his': 1.0, 'sink': 1.0, 'bathroom': 1.0, 'with': 1.0, 'now': 1.0, 'is': 1.0, 'perfect': 1.0, 'for': 1.0, 'the': 1.0, 'my': 1.0, 'little': 1.0, 'this': 1.0, 'grandson': 1.0, 'wash': 1.0, 'short': 1.0, 'he': 1.0, 'can': 1.0, 'reach': 1.0}
Word element => {'too': 1.0, 'dangle': 1.0, 'not': 1.0, 'year': 1.0, 'for': 2.0, '3': 1.0, 'feet': 1.0, 'toilet': 1.0, 'my': 1.0, 'the': 2.0, 'own': 1.0, 'to': 2.0, 'old': 1.0, 'stool': 1.0, 'good': 1.0, 's': 1.0, 'a': 1.0, 'well': 1.0, 'it': 1.0, 'him': 1.0, 'sink': 1.0, 'his': 2.0, 'on': 2.0, 'work': 1.0, 'have': 1.0, 'sit': 1.0, 'reach': 1.0, 'and': 1.0}
Word element => {'even': 1.0, 'sturdy': 1.0, 'use': 1.0, 'around': 1.0, 'is': 4.0, 'and': 4.0, 'getting': 1.0, 'great': 2.0, 'reach': 1.0, 'the': 8.0, 'that': 1.0, 'i': 1.0, 'extremely': 1.0, 'this': 1.0, 'it': 3.0, 'thrilled': 1.0, 'with': 1.0, 'works': 1.0, 'only': 1.0, 'purchased': 1.0, 'stool': 2.0, 'be': 1.0, 'so': 1.0, 'my': 2.0, 'better': 1.0, 'fault': 1.0, 'problem': 1.0, 'kitchen': 3.0, 'way': 1.0, 'daughter': 2.0, 'mom': 1.0, 'gets': 1.0, 'would': 1.0, 'able': 1.0, 'to': 2.0, 'was': 1.0, 'dad': 1.0, 'spongebob': 1.0, 'sink': 1.0, 'design': 1.0, 'in': 2.0, 'bumped': 1.0, 'can': 1.0, 'but': 1.0, 'no': 1.0, 'of': 1.0, 'up': 1.0, 'sometimes': 1.0, 'holding': 1.0}
Word element => {'secure': 1.0, 'completely': 1.0, 'rails': 1.0, 'expensive': 1.0, 'more': 1.0, 'worth': 1.0, 'totally': 1.0, 'stoolit': 1.0, 'potty': 2.0, 'tried': 1.0, 'top': 1.0, 'sturdy': 1.0, 'they': 2.0, 'sit': 1.0, 'when': 1.0, 'have': 2.0, 'unsteady': 1.0, 'bit': 1.0, 'seem': 1.0, 'toddlers': 1.0, 'although': 1.0, 'since': 1.0, 'been': 1.0, 'properly': 1.0, 'drilled': 1.0, 'was': 2.0, 'didn': 1.0, 'hole': 1.0, 'screw': 1.0, 'had': 1.0, 'poor': 1.0, 'quite': 1.0, 'improvise': 1.0, 'also': 3.0, 'ours': 1.0, 'house': 1.0, 'did': 1.0, 'wears': 1.0, 'especially': 1.0, 'be': 1.0, 'whitehas': 1.0, 'surfaces': 1.0, 'painted': 1.0, 'whereas': 1.0, 'those': 1.0, 'could': 2.0, 'but': 3.0, 'modify': 1.0, 'at': 1.0, 'is': 13.0, 'kidkraft': 4.0, 'grip': 1.0, 'this': 2.0, 'slip': 2.0, 'waste': 1.0, 'comfortably': 1.0, 'though': 2.0, 'kidkraftkidkraft': 1.0, 'trying': 1.0, 'toe': 1.0, 'film': 1.0, 'around': 4.0, 'his': 2.0, 'edges': 1.0, 'even': 1.0, 'got': 1.0, 'for': 2.0, 'socks': 1.0, 'actually': 1.0, 'stools': 2.0, 'wide': 1.0, 'him': 1.0, 'it': 19.0, 'higher': 1.0, 'everything': 1.0, 'while': 1.0, 'work': 2.0, 'hard': 1.0, 'place': 1.0, 'than': 1.0, 'reach': 3.0, 'turn': 1.0, 'if': 2.0, 'stay': 1.0, 'not': 4.0, 'we': 7.0, 'dora': 1.0, 'n': 2.0, 'and': 6.0, 'sink': 2.0, 'money': 1.0, 'stool': 4.0, 'carefully': 2.0, 'up': 1.0, 'the': 25.0, 'of': 2.0, 'in': 2.0, 'bjorn': 1.0, 'complete': 1.0, 'without': 1.0, 'taps': 1.0, 'a': 6.0, 't': 2.0, 'long': 1.0, 'on': 8.0, 'rubber': 1.0, 'make': 1.0, 'he': 3.0, 'plastic': 2.0, 'high': 1.0, 'to': 12.0, 'tap': 1.0, 'allow': 1.0, 'my': 1.0, 'child': 1.0, 'toddler': 4.0, 'or': 2.0, 'toilet': 4.0, 'non': 2.0, 'happens': 1.0, 'put': 1.0, 'much': 2.0, 'light': 1.0, 'slippery': 1.0, 'enough': 2.0, 'feel': 1.0, 'reassured': 1.0, 'with': 4.0, 'plenty': 1.0, 'room': 1.0, 'stand': 1.0, 'has': 3.0, 'watching': 1.0, 'short': 1.0, 'etc': 1.0, 'two': 1.0, 'i': 1.0, 'feet': 2.0, 'good': 1.0, 'which': 1.0, 'cheap': 2.0, 'like': 3.0, 'skip': 1.0, 'ever': 1.0, 'all': 2.0, 'other': 2.0, 'one': 1.0, 'manufacturing': 1.0, 'too': 3.0, 'ones': 1.0, 'store': 2.0, 'step': 3.0, 'doesn': 1.0, 'others': 1.0, 'are': 3.0, 'heavy': 1.0, 'can': 2.0, 'so': 3.0, 'move': 1.0, 'young': 1.0, 'problems': 3.0, 'that': 2.0, 'easily': 1.0, 'there': 1.0}
Word element => {'picture': 1.0, 'now': 1.0, 'see': 1.0, 'i': 1.0, 'description': 1.0, 'product': 1.0, 'in': 1.0, 'say': 1.0, 'does': 1.0, 'actually': 1.0, 'but': 2.0, 'purple': 1.0, 'top': 1.0, 'pink': 1.0, 'as': 2.0, 'colors': 1.0, 'misleading': 1.0, 'picked': 1.0, 'with': 1.0, 'it': 3.0, 'dora': 1.0, 'base': 2.0, 'my': 1.0, 'color': 1.0, 'daughter': 1.0, 'most': 1.0, 'is': 3.0, 'herself': 1.0, 'loves': 1.0, 'the': 2.0, 'red': 1.0, 'these': 1.0, 'pictured': 1.0, 'days': 1.0, 'so': 2.0, 'she': 1.0}
Word element => {'cheaper': 1.0, 'else': 1.0, 'somewhere': 1.0, 've': 1.0, 'would': 1.0, 'gotten': 1.0, 'and': 1.0, '1': 1.0, 'known': 1.0, 'but': 1.0, 'is': 1.0, 'at': 1.0, 'end': 1.0, 'my': 2.0, 'stool': 1.0, 'description': 1.0, 'for': 1.0, 'that': 2.0, 'fault': 1.0, 'this': 2.0, 'it': 5.0, 'state': 1.0, 'thinking': 1.0, 'depicts': 1.0, 'ordered': 2.0, 'guess': 1.0, 'step': 1.0, 'i': 4.0, 'picture': 1.0, 'had': 1.0, 'was': 2.0, 'does': 1.0, 'part': 1.0, 'the': 3.0, 'red': 1.0, 'day': 1.0, 'from': 2.0, 'pink': 1.0, 'son': 1.0, 'as': 2.0, 'of': 1.0}
Word element => {'her': 1.0, 'maneuver': 1.0, 'so': 1.0, 'light': 1.0, 'very': 1.0, 'the': 2.0, 'my': 1.0, 'on': 1.0, 'uses': 1.0, 'loves': 1.0, 'street': 1.0, 'daughter': 1.0, 'for': 1.0, 'all': 1.0, 'she': 1.0, 'easy': 1.0, 'stool': 1.0, 'and': 2.0, 'time': 1.0, 'next': 1.0, 'we': 1.0, 'can': 1.0, 'toilet': 1.0, 'own': 1.0, 'keep': 1.0, 'this': 1.0, 'it': 3.0, 'now': 1.0, 'to': 1.0, 'access': 1.0, 'sesame': 1.0, 's': 1.0}
Word element => {'sturdier': 1.0, 'bigger': 1.0, 'fine': 1.0, 'm': 1.0, 'i': 1.0, 'tip': 1.0, 'tends': 1.0, 'of': 1.0, 'edge': 1.0, 'stands': 1.0, 'if': 1.0, 'very': 1.0, 'impossible': 1.0, 'is': 1.0, 'sure': 1.0, 'get': 1.0, 'still': 1.0, 'noticeably': 1.0, 'later': 1.0, 'months': 1.0, 'six': 1.0, 'help': 1.0, 'much': 1.0, 'be': 1.0, 'would': 1.0, 'toddler': 1.0, 'height': 1.0, 'age': 1.0, 'stool': 4.0, 'short': 1.0, 'any': 2.0, 'to': 6.0, 'our': 1.0, 'taller': 2.0, 'sink': 2.0, 'figured': 1.0, 'always': 1.0, 'old': 1.0, 'boost': 1.0, 'kid': 1.0, 'for': 4.0, 'year': 1.0, 'close': 1.0, 'day': 1.0, 'daughter': 1.0, 'been': 1.0, '1': 1.0, 'getting': 1.0, 'too': 2.0, 'and': 4.0, 'has': 2.0, 'her': 3.0, 'good': 1.0, 'but': 1.0, '2': 2.0, 'work': 2.0, 'on': 2.0, 'needs': 1.0, 'so': 2.0, 'potty': 2.0, 'received': 1.0, 'also': 2.0, 'over': 1.0, '75th': 1.0, 'up': 1.0, 'wash': 1.0, 'reaching': 2.0, 'just': 1.0, 'the': 5.0, 'hands': 1.0, 'kids': 1.0, 'this': 1.0, 'she': 3.0, 'it': 4.0, 'dora': 1.0, 'my': 1.0, 'lightweight': 1.0, 'b': 1.0, 'we': 1.0, 'a': 3.0, 's': 3.0}
Word element => {'but': 1.0, 'off': 1.0, 'on': 1.0, 'sticker': 1.0, 'sturdy': 1.0, 'crooked': 1.0, 'carry': 1.0, 'enough': 1.0, 's': 1.0, 'center': 1.0, 'obsessed': 1.0, 'is': 1.0, 'the': 1.0, 'lightweight': 1.0, '2': 1.0, 'everything': 1.0, 'a': 2.0, 'poorly': 1.0, 'stool': 1.0, 'not': 1.0, 'just': 1.0, 'perfect': 1.0, 'who': 1.0, 'daughter': 1.0, 'using': 1.0, 'for': 2.0, 'my': 1.0, 'find': 1.0, 'she': 1.0, 'can': 1.0, 'big': 1.0, 'very': 1.0, 'as': 1.0, 'issue': 1.0, 'and': 3.0, 'it': 1.0, 'with': 1.0, 'this': 1.0, 'to': 1.0, 'turned': 1.0, 'was': 2.0, 'her': 2.0}
Word element => {'no': 1.0, 'clean': 1.0, 'easy': 1.0, 'well': 1.0, 'up': 1.0, 'holding': 1.0, 'easily': 1.0, 'too': 1.0, 'sturdy': 1.0, 'not': 1.0, 'stool': 1.0, 'complaints': 1.0, 'size': 1.0, 'good': 1.0, 'off': 1.0, 'this': 1.0, 'with': 1.0, 'on': 1.0, 'pleased': 1.0, 'and': 1.0, '2': 1.0, 'bulky': 1.0, 'but': 1.0, 'enough': 1.0, 'for': 1.0, 'big': 1.0, 'very': 1.0, 'year': 1.0, 'step': 2.0, 'old': 1.0, 'to': 2.0}
Word element => {'product': 1.0, 'vibrant': 1.0, 'great': 1.0, 'the': 1.0, 'also': 1.0, 'and': 1.0, 'up': 1.0, 'bring': 1.0, 'soft': 1.0, 'rides': 1.0, 'so': 2.0, 'is': 2.0, 'on': 1.0, 'loves': 2.0, 'with': 1.0, 'it': 3.0, 'this': 1.0, 'blanket': 1.0, 'posh': 1.0, 'car': 1.0, 'along': 1.0, 'we': 1.0, 'because': 1.0, 'she': 1.0, 'granddaughter': 1.0, 'to': 1.0, 'color': 1.0, 'my': 1.0, 'snuggle': 1.0}
Word element => {'however': 1.0, 'gotten': 1.0, 'sets': 1.0, 'we': 1.0, 'other': 1.0, 'like': 1.0, 'at': 1.0, 'was': 1.0, 'sheet': 1.0, 'top': 1.0, 'the': 3.0, 'daughter': 2.0, 'for': 1.0, 'wish': 1.0, '3rd': 1.0, 'fabric': 1.0, 'birthday': 1.0, 'got': 1.0, 's': 1.0, 'i': 2.0, 'bottom': 1.0, 'set': 1.0, 'of': 1.0, 'is': 1.0, 'pretty': 1.0, 've': 1.0, 'seems': 1.0, 'low': 1.0, 'toddler': 1.0, 'quality': 1.0, 'but': 1.0, 'my': 2.0, 'happy': 1.0, 'fitted': 1.0, 'this': 1.0, 'with': 1.0, 'it': 1.0}
Word element => {'set': 1.0, 'makes': 1.0, 'bed': 2.0, 'my': 1.0, 'the': 3.0, 'own': 1.0, 'dora': 1.0, 'and': 1.0, 'toddler': 2.0, 'daughter': 1.0, 'bedding': 1.0, 'fits': 1.0, 'in': 1.0, 'perfect': 1.0, 'sleep': 1.0, 'it': 1.0, 'to': 1.0, 'over': 1.0, 'on': 1.0, 'want': 1.0, 'is': 1.0, 'her': 1.0, 'nightmare': 1.0, '4pc': 1.0, 'explorer': 1.0}
Word element => {'want': 1.0, 'you': 1.0, 'unless': 1.0, 'this': 1.0, 'dont': 1.0, 'material': 1.0, 'of': 1.0, 'an': 1.0, 'on': 1.0, 'home': 1.0, 'come': 1.0, 'now': 1.0, 'very': 1.0, 'down': 2.0, 'cover': 2.0, 'wheels': 1.0, 'pull': 1.0, 'way': 1.0, 'no': 1.0, 'there': 1.0, 'their': 1.0, 'car': 1.0, 'also': 1.0, 'in': 1.0, 'up': 1.0, 'sew': 2.0, 'to': 7.0, 'had': 2.0, 'was': 1.0, 'through': 1.0, 'saying': 1.0, 'top': 1.0, 'fixing': 1.0, 'unsatisfied': 1.0, 'right': 1.0, 'soak': 1.0, 'feet': 3.0, 'piece': 1.0, 'with': 2.0, 'agree': 1.0, 'inconvience': 1.0, 'the': 11.0, 'yes': 1.0, 'i': 4.0, 'used': 1.0, 'and': 6.0, 'drip': 1.0, 'childs': 2.0, 'other': 1.0, '1': 1.0, 'spend': 1.0, 'big': 2.0, 'buy': 1.0, 'waterproof': 1.0, 'person': 1.0, 'that': 3.0, 'were': 2.0, 'got': 1.0, 'picture': 2.0, 'shows': 1.0, 'showing': 1.0, 'it': 5.0, 'covers': 1.0, 'product': 1.0, 'for': 1.0, 'sure': 1.0, 'more': 1.0, 'is': 2.0, 'because': 1.0, 'does': 1.0, 'zoo': 1.0, 'hole': 1.0, 'we': 1.0, 'a': 1.0, 'money': 1.0, 'false': 1.0, 'extended': 1.0, 'my': 1.0, 'at': 1.0, 'wet': 1.0, 'by': 1.0, 'time': 1.0}
Word element => {'bed': 1.0, 'son': 1.0, 'in': 1.0, 'i': 1.0, 'it': 1.0, 'new': 1.0, 'his': 1.0, 'condition': 1.0, 'excellent': 1.0, 'received': 1.0, 'loves': 1.0, 'this': 1.0, 'superman': 1.0, 'my': 1.0, 'find': 1.0, 'quickly': 1.0, 'very': 1.0, 'and': 1.0, 'was': 1.0, 'thrilled': 1.0, 'to': 1.0}
Word element => {'a': 1.0, 'became': 1.0, 'comfortable': 1.0, 'soft': 1.0, 'it': 1.0, 'loved': 1.0, 'favorite': 1.0, 'grandson': 1.0, 'component': 1.0, 'as': 2.0, 'quality': 1.0, 'and': 3.0, 'expected': 2.0, 'sound': 1.0, 'needs': 1.0, 'wear': 1.0, 'installation': 1.0, 'easy': 1.0, 'product': 1.0, 'my': 1.0, 'of': 1.0, 'connection': 2.0, 'made': 2.0, 'than': 1.0, 'correct': 1.0, 'better': 1.0, 'great': 1.0, 'fit': 1.0, 'system': 1.0, 'meet': 1.0, 'interface': 1.0, 'verify': 1.0, 'to': 2.0, 'adapter': 1.0, 'easily': 1.0, 'sleep': 1.0, 'good': 1.0}
Word element => {}
Word element => {'recommend': 1.0, 'highly': 1.0, 'would': 1.0, 'with': 1.0, 'himself': 1.0, 'spoon': 2.0, 'mouth': 1.0, 'perfect': 2.0, 'hold': 1.0, 'in': 1.0, 'length': 1.0, 'him': 3.0, 'and': 1.0, 'plate': 1.0, 'my': 1.0, 'happy': 1.0, 'are': 3.0, 'for': 3.0, '1': 1.0, 'comfortable': 1.0, 'back': 1.0, 'handle': 1.0, 'his': 3.0, 'year': 1.0, 'son': 1.0, 'spoons': 2.0, 'to': 3.0, 'old': 1.0, 'i': 2.0, 'loves': 1.0, 'these': 2.0, 'thickness': 1.0, 'little': 1.0, 'meal': 1.0, 'give': 1.0, 'feeding': 1.0, 'the': 6.0, 'hands': 1.0, 'put': 1.0, 'on': 1.0, 'bowl': 1.0, 'rest': 1.0, 'they': 1.0, 'notch': 1.0, 'of': 1.0, 'is': 2.0, 'ingenious': 1.0, 'at': 1.0, 'he': 1.0, 'times': 1.0, 'when': 1.0, 'practice': 1.0}
Word element => {'will': 1.0, 'sized': 1.0, 'anymore': 1.0, 'definitely': 1.0, 'ever': 1.0, 'while': 1.0, 'quite': 1.0, 'use': 2.0, 'longer': 2.0, 'll': 1.0, 'm': 1.0, 'still': 1.0, 're': 1.0, 'feeds': 1.0, 'grabs': 1.0, 'and': 3.0, 'on': 2.0, 'put': 1.0, 'i': 2.0, 'oatmeal': 1.0, 'foods': 1.0, 'great': 1.0, 'is': 1.0, 'led': 1.0, 'baby': 1.0, 'interested': 1.0, 'narrow': 1.0, 'parents': 1.0, 'feed': 1.0, 'do': 1.0, 'should': 1.0, 'food': 1.0, 'but': 2.0, 'in': 2.0, 've': 1.0, 'for': 5.0, 'like': 1.0, 'using': 2.0, 'narrower': 1.0, 'she': 1.0, 'it': 2.0, 'purees': 1.0, 'no': 1.0, 'of': 1.0, 'once': 1.0, 'earlier': 1.0, 'set': 1.0, 'used': 3.0, 'her': 3.0, 'these': 2.0, 'the': 5.0, 'been': 1.0, 'tray': 1.0, 'months': 2.0, 'duration': 1.0, '13': 1.0, 'at': 2.0, 'since': 1.0, 'rarely': 1.0, '6': 1.0, 'or': 1.0, 'likely': 1.0, 'when': 1.0, 'daughter': 1.0, 'first': 1.0, 'this': 4.0, 'get': 1.0, 'sure': 1.0, 'introduced': 1.0, 'so': 1.0, 'smaller': 1.0, 'time': 1.0, 'short': 1.0, 'herself': 2.0, 'ourselves': 1.0, 'spoons': 3.0, 'our': 1.0, 'thought': 1.0, 'what': 1.0, 'had': 2.0, 'old': 1.0, 'realized': 1.0, 'problems': 1.0, 'concepts': 1.0, 'grasping': 1.0, 'spoon': 5.0, 'messier': 1.0, 'weaning': 1.0, 'we': 12.0, 'a': 3.0, 'could': 1.0, 'have': 1.0, 'solids': 1.0, 'holding': 1.0, 'just': 1.0, 'did': 1.0}
Word element => {'well': 1.0, 'try': 1.0, 'and': 1.0, 'more': 1.0, 'pick': 2.0, 'house': 1.0, 'successfully': 1.0, 'she': 2.0, 'easy': 1.0, 'helps': 1.0, 'ask': 1.0, 'my': 2.0, 'bought': 1.0, 'forks': 1.0, 'friend': 1.0, 'i': 3.0, 'buy': 1.0, 'daughter': 1.0, 'when': 1.0, 'for': 2.0, 'using': 1.0, 'kid': 1.0, 'used': 1.0, 'her': 2.0, 'the': 2.0, 'ones': 1.0, 'these': 2.0, 'some': 1.0, 'at': 1.0, 'after': 1.0, 'smaller': 1.0, 'so': 1.0, 'food': 1.0, 'eat': 1.0, 'was': 1.0, 'them': 1.0, 'out': 2.0, 'up': 1.0, 's': 1.0, 'a': 2.0, 'little': 1.0, 'their': 1.0, 'better': 1.0, 'maybe': 1.0, 'than': 1.0, 'grip': 1.0, 'as': 1.0, 'to': 5.0, 'spoons': 1.0, 'spoon': 1.0, 'with': 1.0, 'are': 1.0, 'goes': 1.0, 'need': 1.0}
Word element => {'easily': 1.0, 'them': 1.0, 'i': 2.0, 'old': 1.0, 'to': 3.0, 'been': 1.0, 'because': 1.0, 'have': 2.0, 'learn': 1.0, 'gets': 1.0, '18': 1.0, 'shallow': 1.0, 'want': 1.0, 'is': 1.0, 'son': 1.0, 'on': 1.0, 'months': 1.0, 'spoons': 1.0, 'get': 1.0, 'couple': 2.0, 'and': 2.0, 'my': 1.0, 'are': 1.0, 'more': 1.0, 'these': 2.0, 'great': 1.0, 'how': 1.0, 'use': 1.0, 'a': 3.0, 'spoon': 1.0, 'food': 1.0}
Word element => {'highly': 1.0, 'cost': 1.0, 'thick': 1.0, 'are': 2.0, 'handles': 1.0, 'slightly': 1.0, 'designed': 1.0, 'recommended': 1.0, 'well': 2.0, 'be': 1.0, 'worth': 1.0, 'rice': 1.0, 'breakfast': 1.0, 'little': 1.0, 'rubbery': 1.0, 'foods': 1.0, 'utensils': 1.0, 'even': 1.0, 'mom': 1.0, 'easily': 1.0, 'gives': 1.0, 'and': 3.0, 'makes': 1.0, 'like': 1.0, 'which': 1.0, 'have': 1.0, 'able': 1.0, 'break': 1.0, 'feed': 2.0, 'wanted': 1.0, 'scooped': 1.0, 'granddaughter': 1.0, 'was': 1.0, 'now': 1.0, 'months': 2.0, 'to': 6.0, 'spoons': 1.0, 'i': 1.0, 'textured': 1.0, 'age': 1.0, '12': 1.0, 'purchased': 1.0, 'these': 3.0, 'my': 1.0, 'herself': 1.0, 'for': 2.0, 'not': 1.0, '13': 1.0, 'who': 1.0, 'at': 2.0, 'self': 1.0, 'did': 1.0, 'grip': 1.0, 'perfect': 1.0, 'this': 1.0, 'o': 1.0, 'with': 2.0, 'help': 1.0, 'dexterity': 1.0, 'spoon': 1.0, 'it': 1.0, 'she': 2.0, 'get': 1.0, 'load': 1.0, 'her': 3.0, 'mouth': 1.0, 'hands': 1.0, 'the': 5.0, 'without': 1.0, 's': 1.0, 'a': 1.0, 'losing': 1.0, 'big': 1.0, 'but': 1.0, 'food': 1.0, 'can': 2.0, 'smiles': 1.0, 'happy': 1.0, 'task': 1.0, 'followed': 1.0, 'manage': 1.0, '16': 1.0}
Word element => {'their': 1.0, 'into': 1.0, 'it': 1.0, 'make': 1.0, 'enough': 1.0, 'old': 1.0, 'to': 2.0, 'year': 1.0, 'for': 1.0, 'two': 1.0, 'handles': 1.0, 'my': 1.0, 'are': 1.0, 'the': 5.0, 'helps': 1.0, 'short': 1.0, 'easy': 1.0, 'girls': 1.0, 'of': 1.0, 'mouths': 1.0, 'stay': 1.0, 'hold': 1.0, 'shape': 1.0, 'chunky': 1.0, 'and': 1.0, 'spoon': 2.0, 'long': 1.0, 'food': 1.0, 'on': 1.0}
Word element => {'destination': 1.0, 'food': 1.0, 'let': 1.0, 'its': 1.0, 'to': 1.0, 'right': 1.0, 'just': 1.0, 'fist': 1.0, 'our': 1.0, 'little': 1.0, 'chubby': 1.0, 'fit': 1.0, 's': 1.0, 'it': 1.0, 'grandson': 1.0, 'sure': 1.0, 'the': 3.0, 'more': 1.0, 'control': 1.0, 'short': 1.0, 'allows': 1.0, 'handle': 1.0, 'for': 1.0, 'reach': 1.0, 'and': 1.0, 'wide': 1.0, 'base': 1.0, 'spoon': 1.0, 'is': 1.0}
Word element => {'product': 1.0, 'quality': 1.0, 'bjorn': 1.0, 'baby': 1.0, 'another': 1.0, 'is': 1.0, 'themselves': 1.0, 'feed': 1.0, 'learning': 1.0, 'toddlers': 1.0, 'not': 1.0, 'are': 1.0, 'they': 1.0, 'great': 1.0, 'infants': 1.0, 'these': 2.0, 'reviewers': 1.0, 'month': 1.0, 'rather': 1.0, 'him': 1.0, 'i': 2.0, 'old': 1.0, 'to': 2.0, '18': 1.0, 'hold': 1.0, 'spoons': 1.0, 'and': 2.0, 'high': 1.0, 're': 1.0, 'my': 1.0, 'easy': 1.0, 'love': 1.0, 'for': 3.0, 'agree': 1.0, 'eat': 1.0, 'that': 1.0, 'from': 2.0, 'this': 1.0, 'with': 1.0, 'other': 1.0}
Word element => {'feeding': 1.0, 'acquainted': 1.0, 'baby': 1.0, 'old': 1.0, 'to': 2.0, 'easier': 1.0, 'spoon': 1.0, 'month': 1.0, 'him': 1.0, 'works': 1.0, 'with': 1.0, 'it': 1.0, 'great': 1.0, '6': 1.0, 'my': 1.0, 'handle': 1.0, 'for': 2.0, 'design': 1.0, 'round': 1.0, 'short': 1.0, 'thickness': 1.0, 'grip': 1.0, 'your': 1.0, 'has': 1.0, 'get': 1.0, 'and': 1.0, 'just': 1.0, 'have': 1.0, 'some': 1.0, 'fun': 1.0}
Word element => {'times': 1.0, 'most': 1.0, 'bites': 1.0, 'into': 1.0, 'on': 1.0, 'is': 2.0, 'nothing': 1.0, 'nice': 1.0, 'and': 2.0, 'the': 2.0, 'more': 1.0, 'fewer': 1.0, 'so': 1.0, 'spoon': 2.0, 'we': 1.0, 'can': 1.0, 'left': 1.0, 'deep': 1.0, 'fit': 1.0}
Word element => {'her': 1.0, 'being': 1.0, 'to': 1.0, 'putting': 1.0, 'handle': 1.0, 'she': 3.0, 's': 1.0, 'fed': 1.0, 'or': 1.0, 'loves': 2.0, 'when': 1.0, 'daughter': 1.0, 'in': 1.0, 'end': 1.0, 'my': 1.0, 'mouth': 1.0, 'gnaws': 1.0, 'these': 2.0, 'the': 2.0, 'either': 1.0, 'spoons': 1.0, 'on': 1.0, 'soft': 1.0, 'practices': 1.0, 'spoon': 1.0}
Word element => {'plastic': 1.0, 'safe': 1.0, 'with': 1.0, 'made': 1.0, 's': 1.0, 'would': 1.0, 'soup': 1.0, 'because': 1.0, 'have': 1.0, 'preferred': 1.0, 'a': 1.0, 'spoon': 1.0, 'i': 1.0, 'deeper': 1.0, 'it': 2.0, 'brought': 1.0}
Word element => {'do': 1.0, 'still': 1.0, 'off': 1.0, 'worn': 1.0, 'face': 1.0, 'funny': 1.0, 'with': 1.0, 'since': 1.0, 'at': 2.0, 'stare': 1.0, 'daughter': 1.0, 'for': 1.0, 'great': 1.0, 'be': 1.0, 'also': 1.0, 'would': 2.0, 'i': 2.0, 'so': 2.0, 'not': 1.0, 'gums': 1.0, 'on': 2.0, 'is': 3.0, 'spoon': 2.0, 'eating': 1.0, 'round': 1.0, 'old': 1.0, 'entertainment': 1.0, 'months': 1.0, 'to': 1.0, 'spoons': 2.0, 'proves': 1.0, 'biting': 1.0, 'feeding': 1.0, 'worry': 1.0, 'edge': 1.0, 'plastic': 1.0, '6': 1.0, 'of': 2.0, 'are': 1.0, 'my': 2.0, 'them': 1.0, 'started': 1.0, 'baby': 1.0, 'novelty': 1.0, 'her': 6.0, 'even': 1.0, 'cute': 1.0, 'and': 5.0, 'very': 2.0, 'was': 1.0, 'has': 2.0, 'no': 1.0, 'gentle': 1.0, 'loves': 1.0, 'babies': 1.0, 'into': 1.0, 'that': 2.0, 'the': 5.0, 'possibly': 1.0, 'playing': 1.0, 'a': 2.0, 'we': 1.0, 's': 2.0, 'could': 1.0, 'times': 1.0, 'when': 2.0, 'hurt': 1.0, 'eyes': 1.0, 'perfect': 1.0, 'this': 1.0, 'functional': 1.0, 'soft': 2.0, 'it': 2.0, 'purees': 1.0, 'she': 2.0, 'instead': 1.0, 'sturdy': 1.0, 'tip': 1.0, 'made': 1.0, 'food': 1.0, 'but': 3.0}
Word element => {'6': 1.0, 'since': 1.0, 'them': 1.0, 'she': 1.0, 'easy': 1.0, 'use': 1.0, 'they': 1.0, 'our': 1.0, 'when': 1.0, 'lost': 1.0, 'ordered': 1.0, 'we': 3.0, 're': 1.0, 'months': 1.0, 'spoons': 1.0, 'two': 1.0, 'more': 1.0, 'great': 1.0, 'one': 1.0, 'using': 1.0, 'for': 1.0, 'year': 1.0, 'old': 2.0, 'was': 1.0, 'to': 1.0, 'and': 1.0, 'hold': 1.0, 've': 1.0, 'been': 1.0}
Word element => {'old': 1.0, 'month': 1.0, 'for': 1.0, 'wide': 1.0, 'little': 1.0, 'our': 2.0, 'spoon': 1.0, 'handle': 1.0, '14': 1.0, 'well': 1.0, 'itself': 1.0, 'the': 2.0, 'son': 1.0, 'is': 1.0, 'a': 1.0, 'holds': 1.0, 'but': 1.0}
Word element => {'that': 1.0, 'soft': 1.0, 'too': 1.0, 'fits': 1.0, 'hands': 1.0, 'easy': 2.0, 'plastic': 1.0, 'baby': 1.0, 'my': 2.0, 'to': 2.0, 'grab': 1.0, 'of': 1.0, 'is': 3.0, 'feels': 1.0, 's': 1.0, 'only': 1.0, 'with': 1.0, 'it': 1.0, 'and': 1.0, 'perfectly': 1.0, 'problem': 1.0, 'the': 2.0, 'these': 1.0, 'scar': 1.0, 'spoons': 1.0, 'scooping': 1.0, 'part': 1.0}
Word element => {'limit': 1.0, 'pound': 1.0, 'a': 3.0, 'an': 1.0, 'in': 2.0, 'upright': 1.0, 'position': 1.0, 'would': 1.0, 'weight': 2.0, 'bouncer': 1.0, 'i': 4.0, 'positions': 2.0, 'works': 1.0, 'expensive': 1.0, 'it': 6.0, 'loud': 1.0, 'needed': 1.0, 'easy': 1.0, 'store': 1.0, 'bought': 2.0, 'up': 1.0, 'and': 3.0, 'because': 1.0, 'sits': 1.0, 'difficult': 1.0, 'son': 1.0, 'very': 2.0, 'that': 1.0, 'changing': 1.0, 'well': 1.0, 'has': 1.0, 'makes': 1.0, 'my': 1.0, 'reflux': 1.0, 'sit': 1.0, 'cons': 1.0, 'enough': 1.0, 'to': 3.0, '25': 1.0, 'feed': 1.0, 'baby': 1.0, 'is': 1.0, 'light': 1.0, 'change': 1.0, 'sitting': 1.0, 'glad': 1.0, 'click': 1.0, 'am': 1.0, 'when': 1.0}
Word element => {'received': 1.0, 'really': 1.0, 'equipment': 1.0, 'on': 1.0, 'this': 1.0, 'spending': 1.0, 'time': 1.0, 'hard': 1.0, 'had': 1.0, 'chores': 1.0, 'much': 1.0, 'do': 1.0, 'and': 2.0, 'sits': 1.0, 'happily': 1.0, 'almost': 1.0, 'is': 1.0, 'now': 1.0, 'back': 1.0, 'her': 1.0, 'soothe': 1.0, 'folded': 1.0, 'blanket': 1.0, 's': 1.0, 'we': 1.0, 'a': 3.0, 'with': 1.0, 'eat': 1.0, 'if': 1.0, 'months': 1.0, 'fuss': 1.0, 'watches': 1.0, 'i': 2.0, 'that': 1.0, 'into': 1.0, 'slept': 1.0, 'echo': 1.0, 'the': 7.0, 'wanted': 1.0, 'bouncer': 3.0, 'glowing': 1.0, 'nights': 1.0, 'she': 3.0, 'recommended': 1.0, 'has': 1.0, 'leg': 1.0, 'of': 1.0, 'up': 2.0, 'in': 2.0, 'company': 1.0, 'daughter': 1.0, 'by': 1.0, 'us': 2.0, 'sleep': 1.0, 'to': 4.0, 'our': 2.0, 'reviews': 1.0, 'holes': 1.0, 'seal': 1.0, 'money': 2.0, '2': 1.0, 'most': 1.0, 'but': 2.0, 'baby': 1.0, 'night': 1.0, 'them': 1.0, 'probably': 1.0, 'not': 1.0, 'worked': 1.0, 'actually': 1.0, 'for': 1.0, 've': 1.0, 'dinner': 1.0, 'would': 1.0, 'little': 1.0, 'at': 1.0, 'gentle': 1.0, 'worth': 1.0, 'bouncing': 1.0, 'great': 1.0, 'seemed': 1.0}
Word element => {'quality': 1.0, 'know': 1.0, 'recommending': 1.0, 'added': 1.0, 'many': 1.0, 'with': 1.0, 'worth': 1.0, 'make': 1.0, 'enough': 1.0, 'itself': 1.0, 'long': 1.0, 'use': 1.0, 'but': 1.0, 'money': 1.0, 'can': 1.0, 'also': 1.0, 'way': 1.0, 'entertained': 1.0, 'bella': 1.0, 'keeps': 1.0, 'toy': 1.0, 'product': 1.0, 'love': 1.0, 'for': 4.0, 'i': 4.0, 'over': 1.0, 'simple': 1.0, 'bouncer': 4.0, 'so': 4.0, 'folds': 1.0, 'that': 3.0, 'everything': 1.0, '10': 1.0, 'around': 1.0, 'is': 3.0, 'times': 1.0, 'who': 1.0, 'far': 1.0, 'bouncerabout': 1.0, 'everyone': 2.0, 'was': 2.0, 'm': 1.0, 'price': 1.0, 'by': 1.0, 'says': 1.0, 'this': 3.0, 'she': 1.0, 'it': 3.0, 'hours': 1.0, 'true': 1.0, 'extra': 1.0, 'looking': 1.0, 'right': 1.0, 'a': 1.0, 's': 1.0, 'after': 1.0, 'base': 2.0, 'did': 1.0, 'not': 1.0, 'all': 1.0, 'to': 3.0, 'seat': 1.0, 'jut': 1.0, 'still': 1.0, 'storage': 1.0, 'tripping': 2.0, 'under': 1.0, 'out': 1.0, 'the': 6.0, 'thefisher': 1.0, 'sits': 1.0, 'benefits': 1.0, 'lightweight': 1.0, 'about': 1.0, 'no': 1.0, 'super': 1.0, 'rainforest': 1.0, 'hazard': 1.0, 'and': 2.0, 'flat': 1.0}
Word element => {'worth': 1.0, 'purchase': 1.0, 'consider': 1.0, 'gear': 1.0, 'used': 1.0, 'bears': 1.0, 'than': 1.0, 'wooden': 1.0, 'still': 1.0, 'at': 1.0, 'chair': 1.0, 'his': 1.0, 'sit': 1.0, 'up': 2.0, 'times': 1.0, 'watch': 1.0, 've': 2.0, 'many': 1.0, 'more': 1.0, 'is': 1.0, 'loves': 1.0, 'that': 2.0, 'had': 1.0, 'now': 1.0, 'other': 1.0, 'superior': 1.0, 'made': 1.0, 'bouncy': 1.0, 'extra': 1.0, 'day': 1.0, 'from': 1.0, 'in': 2.0, 'bjorn': 2.0, 'baby': 2.0, 'so': 1.0, 'months': 1.0, 'one': 1.0, 'product': 2.0, 'for': 1.0, 'wish': 1.0, 'this': 2.0, '6': 1.0, 'he': 4.0, 'it': 2.0, 'well': 1.0, 'recommended': 1.0, 'has': 1.0, 'like': 1.0, 'know': 1.0, 'just': 2.0, 'the': 4.0, 'positions': 1.0, 'bounce': 1.0, '3': 1.0, 'make': 1.0, 'everyone': 1.0, 'versatile': 1.0, 'our': 1.0, 'any': 1.0, 'to': 1.0, 'seat': 1.0, 'sleep': 1.0, 'video': 1.0, 'best': 1.0, 'd': 1.0, 'fun': 1.0, 'of': 1.0, 'and': 3.0, 'a': 3.0, 'we': 5.0, 's': 1.0, 'can': 2.0, 'sitting': 1.0}
Word element => {'though': 1.0, 'start': 1.0, 'great': 1.0, 'long': 1.0, 'know': 1.0, 'yet': 1.0, 'm': 1.0, 'us': 2.0, 'but': 1.0, 'fact': 1.0, 'bar': 1.0, 'll': 1.0, 'the': 2.0, 'i': 3.0, 'young': 1.0, 'for': 1.0, 'love': 1.0, 'that': 1.0, 'likes': 1.0, 'this': 1.0, 'how': 1.0, 'he': 2.0, 'it': 4.0, 'only': 1.0, 'fifth': 1.0, 'son': 1.0, 'still': 1.0, 'our': 1.0, 'to': 2.0, 'seat': 1.0, 'because': 1.0, 'lot': 1.0, 't': 1.0, 'notice': 1.0, 'a': 3.0, 's': 2.0, 'in': 1.0, 'serve': 1.0, 'will': 1.0, 'missing': 1.0, 'seems': 1.0, 'flat': 1.0, 'good': 1.0, 'looking': 1.0, 'comfy': 1.0, 'play': 1.0, 'and': 2.0, 'him': 1.0, 'sure': 1.0, 'folds': 1.0, 'star': 1.0, 'bit': 1.0, 'time': 1.0, 'so': 1.0, 'new': 1.0, 'discover': 1.0, 'don': 1.0}
Word element => {'def': 1.0, 'would': 1.0, 'use': 1.0, 'face': 1.0, 'his': 1.0, 'of': 1.0, 'ton': 1.0, 'recommend': 1.0, 'store': 1.0, 'is': 2.0, 'many': 1.0, 'how': 1.0, 'too': 1.0, 'and': 3.0, 'love': 1.0, 'one': 1.0, 'it': 5.0, 'this': 1.0, 'trying': 1.0, 'have': 2.0, 'ordered': 1.0, 'out': 1.0, 'after': 1.0, 'boy': 1.0, 'so': 2.0, 'easy': 1.0, 'folds': 1.0, 'friend': 1.0, 'to': 3.0, 'all': 2.0, 'our': 1.0, 'loves': 1.0, 'that': 2.0, 'little': 1.0, 'quality': 1.0, 'baby': 1.0, 'things': 1.0, 'at': 1.0, 'hanging': 1.0, 'the': 1.0, 'house': 1.0, 'great': 1.0, 'nice': 1.0, 'over': 2.0, 'up': 1.0, 'there': 1.0, 'aren': 1.0, 'can': 1.0, 't': 1.0, 'we': 2.0, 's': 4.0, 'a': 2.0, 'go': 1.0, 'simple': 1.0, 'toys': 1.0, 'anywhere': 1.0, 'easily': 1.0, 'like': 1.0, 'also': 1.0, 'i': 2.0, 'complicated': 1.0, 'not': 1.0}
Word element => {'miracle': 1.0, 'better': 1.0, 'makes': 1.0, 'top': 1.0, 'down': 1.0, 'gently': 1.0, 'couch': 1.0, 'sit': 1.0, 'chair': 2.0, 'in': 1.0, 'on': 2.0, 'put': 1.0, 'bouncing': 1.0, 'from': 1.0, 'falling': 1.0, 'are': 1.0, 'arms': 1.0, 'fussy': 1.0, 'loves': 1.0, 'with': 2.0, 'this': 2.0, 'bring': 1.0, 'when': 1.0, 'easily': 1.0, 'but': 1.0, 'can': 1.0, 'at': 1.0, 'use': 1.0, 'was': 1.0, 'daycare': 1.0, 'over': 1.0, 'baffled': 1.0, 'what': 1.0, 'different': 1.0, 'her': 5.0, 'and': 6.0, 'me': 4.0, 'do': 1.0, 'floor': 1.0, 'couldn': 1.0, 'foot': 1.0, 'off': 1.0, 'parent': 2.0, 'house': 2.0, 'is': 3.0, 'one': 2.0, 'worker': 1.0, 'for': 2.0, 'own': 1.0, 'chairs': 1.0, 'important': 1.0, 'of': 3.0, 'bounce': 1.0, 'amazing': 1.0, 'these': 1.0, 'sounds': 1.0, 'secure': 1.0, 'slings': 1.0, 'the': 5.0, 'gas': 1.0, 'a': 2.0, 'we': 1.0, 't': 1.0, 'all': 1.0, 'to': 5.0, 'as': 1.0, 'our': 1.0, 'calms': 1.0, 'have': 1.0, 'rooms': 1.0, 'my': 4.0, 'immediately': 1.0, 'happy': 1.0, 'daughter': 1.0, 'day': 1.0, 'close': 1.0, 'it': 4.0, 'she': 4.0, 'now': 1.0, 'hates': 1.0, 'so': 1.0, 'two': 1.0, 'i': 5.0, 'about': 1.0, 'because': 2.0, 'know': 1.0, 'like': 1.0, 'hold': 1.0}
Word element => {'the': 1.0, 's': 1.0, 'friendly': 1.0, 'worth': 1.0, 'user': 1.0, 'durable': 1.0, 'this': 1.0, 'really': 1.0, 'grow': 1.0, 'child': 1.0, 'it': 2.0, 'and': 1.0, 'very': 1.0, 'sitter': 1.0, 'is': 1.0, 'with': 1.0, 'does': 1.0, 'your': 1.0}
Word element => {'dollars': 1.0, 'people': 1.0, 'frequent': 1.0, 'minimal': 1.0, 'son': 2.0, 'encountered': 1.0, 'ever': 1.0, 'problem': 1.0, 'much': 1.0, 'do': 1.0, 'r': 1.0, 'worth': 1.0, 'a': 3.0, 't': 1.0, 'go': 1.0, 'support': 2.0, 'carrying': 1.0, 'on': 1.0, 'think': 1.0, 'make': 1.0, 'looks': 1.0, 'me': 1.0, 'my': 3.0, 'only': 2.0, 'purchase': 2.0, 'another': 1.0, 'don': 1.0, 'was': 6.0, 'aggravate': 1.0, 'when': 1.0, 'you': 2.0, 'back': 3.0, 'week': 1.0, 'not': 2.0, 'those': 2.0, 'just': 1.0, 'purchased': 1.0, 'well': 1.0, 'i': 5.0, 'old': 1.0, 'and': 3.0, 'does': 2.0, 'nearly': 1.0, 'used': 1.0, 'with': 2.0, 'this': 4.0, 'gave': 1.0, 'month': 1.0, 'one': 1.0, 'for': 3.0, 'brother': 1.0, 'price': 1.0, 'child': 1.0, 'year': 1.0, 'daunting': 1.0, 'have': 2.0, 'babies': 1.0, 'problems': 2.0, 'that': 1.0, 'to': 1.0, 'as': 2.0, 'weight': 1.0, 'clearance': 1.0, 'the': 7.0, 'of': 1.0, 'did': 1.0, 'get': 1.0, 'little': 1.0, 'about': 2.0, 'six': 1.0, 'take': 1.0, 'fine': 1.0, 'would': 3.0, 'us': 1.0, 'mark': 1.0, 'also': 1.0, 'fifteen': 1.0, 'use': 1.0, 'he': 1.0, 'it': 6.0, 'him': 1.0, 'say': 1.0, 'at': 2.0, 'look': 1.0, 'is': 2.0, 'around': 1.0, 'still': 1.0, 'if': 2.0, 'hard': 1.0, 'ahead': 1.0, 'personally': 1.0, 'plus': 1.0, 'carrier': 2.0, 'sling': 1.0, 'silly': 1.0, 'claims': 1.0, 'women': 1.0, 'their': 1.0, 'in': 1.0, 'never': 1.0}
Word element => {'got': 1.0, 'carrier': 1.0, 'and': 1.0, 'up': 1.0, 'spits': 1.0, 'or': 1.0, 'drools': 1.0, 'wash': 1.0, 'in': 1.0, 'not': 1.0, 'just': 1.0, 'have': 1.0, 'one': 1.0, 'i': 4.0, 'on': 2.0, 't': 1.0, 'the': 4.0, 'to': 2.0, 'dirtying': 1.0, 'worry': 1.0, 'spend': 1.0, 'want': 1.0, 'didn': 1.0, 'but': 1.0, 'about': 1.0, 'bjorn': 1.0, 'baby': 1.0, 'money': 1.0, 'this': 1.0, 'it': 2.0, 'helpful': 1.0, 'can': 1.0, 'when': 1.0, 'm': 1.0, 'glad': 2.0, 'did': 1.0, 'toss': 1.0, 'very': 1.0, 'something': 1.0, 's': 1.0, 'you': 1.0}
Word element => {'happens': 1.0, 'if': 1.0, 'for': 1.0, 'wonder': 1.0, 'too': 1.0, 'baby': 1.0, 'my': 1.0, 'even': 1.0, 'carrier': 1.0, 'on': 2.0, 'everywhere': 1.0, 'falling': 1.0, 'picking': 1.0, 'off': 1.0, 'has': 1.0, 'and': 1.0, 'bits': 2.0, 'black': 2.0, 'the': 2.0, 'got': 1.0, 'right': 1.0, 'product': 1.0, 'be': 1.0, 'only': 1.0, 'it': 1.0, 'terry': 1.0, 'this': 1.0, 'towel': 1.0, 'out': 1.0, 'packaging': 1.0, 'i': 2.0, 'its': 1.0, 'to': 1.0, 'had': 1.0, 'of': 2.0, 'up': 1.0, 'all': 1.0}
Word element => {'on': 1.0, 'dont': 1.0, 'wash': 1.0, 'you': 1.0, 'dirty': 1.0, 'can': 1.0, 'it': 1.0, 'bjorn': 1.0, 'baby': 1.0, 'money': 1.0, 'the': 1.0, 'these': 2.0, 'used': 1.0, 'just': 1.0, 'rarely': 1.0, 'spend': 1.0, 'i': 1.0, 'when': 1.0, 'your': 1.0, 'and': 1.0, 'need': 1.0, 'is': 1.0, 'really': 1.0, 'to': 1.0}
Word element => {'it': 1.0, 'recommend': 1.0, 'would': 1.0, 'certain': 1.0, 'and': 3.0, 'away': 1.0, 'sometimes': 1.0, 'drool': 1.0, 'is': 1.0, 'they': 1.0, 'the': 6.0, 'a': 1.0, 't': 2.0, 'great': 1.0, 'perfectly': 1.0, 'stand': 1.0, 'are': 1.0, 'fit': 1.0, 'for': 2.0, 'highly': 1.0, 'bibs': 2.0, 'protecting': 1.0, 'babybjorn': 2.0, 'wash': 1.0, 'up': 2.0, 'don': 2.0, 'in': 1.0, 'bjorn': 1.0, 'seems': 1.0, 'spit': 1.0, 'on': 1.0, 'from': 1.0, 'come': 1.0, 'with': 1.0, 'perfect': 1.0, 'this': 1.0, 'out': 1.0, 'purchase': 1.0, 'fact': 1.0, 'any': 1.0, 'to': 2.0, 'be': 1.0, 'stains': 2.0, 'that': 2.0, 'case': 1.0, 'food': 1.0, 'but': 1.0, 'most': 1.0, 'i': 2.0, 'right': 1.0, 'attack': 1.0, 'these': 1.0, 'add': 1.0}
Word element => {'softer': 1.0, 'though': 1.0, 'bit': 1.0, 'fits': 1.0, 'just': 1.0, 'and': 2.0, 'very': 1.0, 'product': 1.0, 'be': 1.0, 'good': 1.0, 'well': 1.0, 'a': 2.0, 'with': 1.0, 'it': 2.0, 'original': 1.0, 'the': 3.0, 'sport': 1.0, 'air': 1.0, 'wish': 1.0, 'could': 1.0, 'active': 1.0, 's': 1.0, 'carriers': 1.0, 'i': 1.0, 'that': 1.0, 'little': 1.0}
Word element => {'needs': 1.0, 'up': 1.0, 'spit': 1.0, 'babies': 1.0, 'should': 1.0, 'nice': 1.0, 'keep': 1.0, 'through': 1.0, 'durable': 1.0, 'proven': 1.0, 'drool': 1.0, 'after': 1.0, 'they': 5.0, 'suck': 1.0, 'walking': 1.0, 'tidy': 1.0, 'carry': 1.0, 'again': 1.0, 'into': 1.0, 'teething': 1.0, 'infants': 1.0, 'and': 8.0, 'when': 1.0, 'washcloths': 1.0, 'world': 1.0, 'out': 1.0, 'but': 2.0, 'organic': 1.0, 'only': 1.0, 'mouths': 2.0, 'on': 2.0, 'because': 1.0, 'than': 1.0, 'green': 1.0, 'ergo': 1.0, 'right': 1.0, 'easier': 1.0, 'around': 2.0, 'is': 1.0, 'noted': 1.0, 'prefer': 1.0, 'goes': 1.0, 'twin': 1.0, 'great': 1.0, 'face': 1.0, 'install': 1.0, 'in': 4.0, 'rockcarriers': 1.0, 'their': 3.0, 'custom': 1.0, 'to': 6.0, 'as': 1.0, 'everything': 1.0, 'for': 1.0, 'far': 1.0, 'love': 2.0, 'actually': 1.0, 'expensive': 1.0, 'river': 1.0, 'we': 4.0, 'bib': 1.0, 'carriers': 3.0, 'boys': 2.0, 'are': 4.0, 'also': 3.0, 'born': 1.0, 'ownergobaby': 1.0, 'see': 1.0, 'carrier': 8.0, 'etc': 1.0, 'eat': 1.0, 'front': 1.0, 'the': 16.0, 'of': 1.0, 'these': 2.0, 'baby': 4.0, 'others': 1.0, 'provide': 1.0, 'them': 1.0, 'solution': 1.0, 'have': 2.0, 'a': 2.0, 'small': 1.0, 'bibs': 1.0, 'essentially': 1.0, 'formed': 1.0, 'our': 2.0, 'sewn': 1.0, 'nicely': 1.0, 'perfectly': 1.0, 're': 1.0, 'especially': 1.0, 'washing': 3.0, 'easy': 1.0, 'remove': 1.0, 'much': 1.0, 'wash': 1.0, 'dry': 1.0, 'whole': 1.0, 'definitely': 1.0, 'buy': 1.0, 'now': 2.0, 'worth': 1.0, 'fit': 2.0, 'cost': 1.0, 'd': 1.0, 'bjorn': 3.0, 'minute': 1.0, 'can': 1.0, 'constantly': 1.0, 'so': 1.0}
Word element => {'product': 1.0, 'nice': 1.0, 'otherwise': 1.0, 'before': 1.0, 'buttons': 1.0, 'out': 1.0, 'clip': 1.0, 'pacifier': 1.0, 'one': 1.0, 'using': 1.0, 'found': 1.0, 'buckling': 1.0, 'get': 1.0, 'trying': 1.0, 'hassle': 1.0, 'to': 1.0, 'had': 1.0, 'wish': 1.0, 'that': 1.0, 'something': 1.0, 'active': 1.0, 'in': 2.0, 'also': 1.0, 'seems': 1.0, 'helps': 1.0, 'baby': 2.0, 'bjorn': 2.0, 'every': 1.0, 'off': 2.0, 'or': 4.0, 'putting': 2.0, 'i': 3.0, 'bib': 2.0, 'like': 1.0, 'a': 4.0, 'the': 7.0, 'little': 1.0, 'falls': 1.0, 'velcro': 1.0, 'time': 1.0, 'on': 1.0, 'when': 1.0, 'm': 1.0, 'bit': 1.0, 'of': 2.0}
Word element => {'some': 1.0, 'save': 1.0, 'drooled': 1.0, 'just': 1.0, 'it': 3.0, 'from': 1.0, 'very': 1.0, 'bib': 2.0, 'feels': 1.0, 'on': 2.0, 'fabric': 1.0, 'getting': 1.0, 'and': 2.0, 'get': 1.0, 'the': 3.0, 'annoying': 1.0, 'buy': 2.0, 'cheap': 1.0, 'surved': 1.0, 'keep': 1.0, 'if': 2.0, 'but': 1.0, 'so': 1.0, 'could': 1.0, 'to': 3.0, 'purpose': 1.0, 'look': 1.0, 'a': 2.0, 'want': 2.0, 'stylish': 1.0, 'you': 2.0, 'money': 1.0, 'bjorn': 1.0}
Word element => {'are': 1.0, 'dry': 1.0, 'and': 3.0, 'bibs': 2.0, 'these': 2.0, 'the': 6.0, 'was': 1.0, 'had': 1.0, 'to': 2.0, 'not': 1.0, 'washing': 1.0, 'just': 1.0, 'when': 1.0, 'daughter': 1.0, 'i': 3.0, 'little': 1.0, 'of': 3.0, 'spent': 2.0, 'both': 1.0, 'c': 1.0, 'discovered': 1.0, 't': 1.0, 'a': 3.0, 'unavailable': 1.0, 'time': 2.0, 'children': 1.0, 'with': 2.0, 'it': 1.0, 'bjorn': 3.0, 'in': 3.0, 'don': 1.0, 'up': 1.0, 'wash': 2.0, 'must': 1.0, 'have': 3.0, 'flat': 1.0, 'cleaning': 1.0, 'from': 1.0, 'son': 1.0, 'spit': 1.0, 'throw': 1.0, 'my': 3.0, 'b': 1.0, 'laying': 1.0, 'lot': 2.0, 'bib': 1.0, 'hassle': 1.0, 'being': 1.0, 'is': 1.0, 'or': 1.0}
Word element => {'honest': 1.0, 'be': 1.0, 'money': 1.0, 'of': 1.0, 'waste': 1.0, 'to': 1.0, 'its': 1.0, 'which': 1.0, 'wish': 1.0, 'd': 1.0, 'point': 1.0, 'just': 1.0, 'active': 1.0, 'is': 1.0, 'drool': 1.0, 'model': 1.0, 'off': 2.0, 'the': 3.0, 'towel': 1.0, 'made': 1.0, 'keeps': 1.0, 'slides': 1.0, 'actually': 1.0, 'a': 2.0, 'couple': 1.0, 'from': 1.0, 'but': 1.0, 'an': 1.0, 'i': 1.0, 'old': 1.0, 'tea': 1.0}
Word element => {'a': 1.0, 'bjorn': 2.0, 'up': 1.0, 'washing': 2.0, 'extra': 1.0, 'amazon': 1.0, 'found': 1.0, 'these': 3.0, 'the': 2.0, 'more': 1.0, 'before': 1.0, 'have': 1.0, 'from': 1.0, 'on': 1.0, 'spit': 1.0, 'was': 1.0, 'solve': 1.0, 'no': 1.0, 'i': 2.0, 'buy': 1.0, 'you': 1.0, 'constantly': 1.0, 'problem': 1.0, 'if': 1.0}
Word element => {'protected': 1.0, 'am': 1.0, 'little': 1.0, 'removed': 1.0, 'if': 1.0, 'even': 1.0, 'us': 1.0, 'combination': 1.0, 'while': 1.0, 'from': 2.0, 'still': 1.0, 'gets': 1.0, 'wonders': 1.0, 'son': 1.0, 'big': 1.0, 'the': 3.0, 'my': 3.0, 'what': 1.0, 'softness': 1.0, 'were': 1.0, 'it': 4.0, 'red': 1.0, 'with': 1.0, 'trips': 1.0, 'bib': 3.0, 'milk': 1.0, 'and': 7.0, 'couple': 1.0, 'works': 1.0, 'do': 2.0, 's': 2.0, 'a': 4.0, 'bright': 1.0, 'as': 1.0, 'to': 1.0, 'this': 2.0, 'soft': 1.0, 'of': 1.0, 'chin': 1.0, 'not': 2.0, 'after': 1.0, 'so': 1.0, 'i': 5.0, 'use': 2.0, 'enough': 1.0, 'cover': 1.0, 'for': 4.0, 'friction': 1.0, 'carrier': 3.0, 'aden': 1.0, 'have': 1.0, 'replacing': 1.0, 'soiled': 1.0, 'wash': 1.0, 'also': 1.0, 'is': 3.0, 'itslef': 1.0, 'but': 1.0, 'anais': 1.0, 'baby': 2.0, 'drooling': 1.0, 'cheeks': 2.0, 'between': 1.0, 'bamboo': 1.0, 'burpy': 2.0}
Word element => {'so': 1.0, 'provides': 1.0, 'start': 1.0, 'doesn': 1.0, 'hope': 1.0, 'your': 1.0, 'constantly': 1.0, 'along': 1.0, 'take': 1.0, 'her': 1.0, 'moves': 2.0, 'really': 1.0, 'purchase': 1.0, 'my': 1.0, 'fits': 1.0, 'in': 1.0, 'itself': 1.0, 'would': 1.0, 'drool': 1.0, 'not': 2.0, 'very': 3.0, 'as': 2.0, 'sieve': 1.0, 'and': 3.0, 'baby': 3.0, 'quality': 2.0, 'but': 2.0, 'overpriced': 1.0, 'products': 1.0, 'cloth': 1.0, 'of': 5.0, 'side': 1.0, 'also': 1.0, 'item': 1.0, 'this': 1.0, 'adjusting': 1.0, 'with': 3.0, 'for': 1.0, 'expensive': 1.0, 'cheap': 1.0, 'love': 1.0, 'one': 1.0, 'thin': 1.0, 'm': 2.0, 'practical': 1.0, 'better': 2.0, 'i': 3.0, 'fan': 1.0, 'bb': 1.0, 'comes': 1.0, 'is': 1.0, 'say': 1.0, 'even': 1.0, 'you': 4.0, 't': 1.0, 'a': 3.0, 'could': 1.0, 's': 2.0, 'are': 1.0, 'it': 5.0, 'truly': 1.0, 'served': 1.0, 'sort': 2.0, 'usual': 1.0, 'worn': 1.0, 'bib': 4.0, 'up': 1.0, 'over': 1.0, 'playing': 1.0, 'the': 9.0, 'carrier': 3.0, 'which': 1.0, 'disappointed': 1.0, 'made': 1.0, 'out': 2.0, 'stops': 1.0, 'end': 1.0, 'much': 1.0}
Word element => {'for': 1.0, 'set': 1.0, 'buy': 1.0, 'suck': 1.0, 'gum': 1.0, 'enough': 1.0, 'yet': 1.0, 'look': 1.0, 'in': 1.0, 'vacationing': 1.0, 'pop': 1.0, 'barrier': 1.0, 'water': 1.0, 'have': 1.0, 'outing': 1.0, 'washing': 1.0, 'say': 1.0, 'happy': 2.0, 'quite': 1.0, 'are': 3.0, 'these': 1.0, 'getting': 1.0, 'seem': 1.0, 'still': 2.0, 'tasty': 1.0, 'falling': 1.0, 'and': 6.0, 'of': 5.0, 'front': 1.0, 'sucks': 1.0, 'now': 1.0, 'drooled': 1.0, 'stay': 1.0, 'not': 1.0, 'when': 1.0, 'wet': 1.0, 'by': 1.0, '4': 1.0, 'i': 3.0, 'old': 1.0, 'tried': 1.0, 'cloth': 1.0, 'never': 1.0, 'about': 1.0, 'another': 1.0, 'pthey': 1.0, 'my': 2.0, 'place': 2.0, 'the': 6.0, 'bought': 2.0, 'after': 1.0, 'drool': 1.0, 'every': 1.0, 'really': 1.0, 'carrier': 4.0, 'proof': 1.0, 'out': 1.0, 'wasn': 2.0, 'newborn': 1.0, 'concerned': 1.0, 'stopped': 1.0, 'month': 1.0, 'it': 2.0, 'we': 3.0, 'a': 2.0, 't': 2.0, 's': 1.0, 'easy': 1.0, 'kind': 1.0, 'gross': 1.0, 'mention': 1.0, 'obvious': 1.0, 'sticking': 1.0, 'there': 1.0, 'burp': 1.0, 'to': 5.0, 'all': 1.0, 'darkened': 1.0, 'good': 1.0, 'fabric': 1.0, 'on': 3.0, '3': 1.0, 'very': 1.0, 'inches': 1.0, '2': 1.0, 'but': 1.0, 'helping': 1.0, 'will': 1.0, 'slipping': 1.0}
Word element => {'them': 1.0, 'recommend': 1.0, 'would': 1.0, 'carrier': 1.0, 'over': 1.0, 'fit': 1.0, 'waterproof': 1.0, 'are': 1.0, 'right': 1.0, 'bijorn': 1.0, 'other': 1.0, 'all': 1.0, 'i': 2.0, 'products': 1.0, 'baby': 1.0, 'love': 1.0, 'among': 1.0, 'is': 1.0, 'product': 1.0, 'great': 1.0, 'the': 2.0, '2': 1.0, 'these': 1.0, 'they': 2.0, 'bibs': 1.0, 'this': 1.0, 'come': 1.0, 'in': 1.0, 'a': 1.0, 'of': 2.0, 'set': 1.0, 'and': 2.0}
Word element => {'then': 1.0, 'closet': 1.0, 'of': 1.0, 'up': 1.0, 'pick': 1.0, 'easier': 1.0, 'to': 2.0, 'was': 1.0, 'easily': 1.0, 'towel': 2.0, 'be': 1.0, 'replaced': 1.0, 'linen': 1.0, 'can': 1.0, 'this': 1.0, 'it': 3.0, 'but': 1.0, 'nice': 1.0, 'many': 1.0, 'looks': 1.0, 'used': 1.0, 'by': 1.0, 'i': 2.0, 'find': 1.0, 'found': 1.0, 'any': 1.0, 'from': 1.0, 'as': 1.0, 'small': 1.0, 'the': 1.0, 'more': 1.0, 'hand': 2.0, 'actually': 1.0, 'myself': 1.0, 'one': 1.0, 'often': 1.0, 'using': 1.0, 'a': 1.0}
Word element => {'him': 1.0, 'that': 1.0, 'and': 1.0, 'do': 1.0, 'getting': 1.0, 'quality': 1.0, 'elastic': 1.0, 'inside': 1.0, 'daycare': 1.0, 'which': 1.0, 'art': 1.0, 'for': 1.0, 'liked': 2.0, 'nice': 1.0, 'comfortable': 1.0, 'i': 2.0, 'old': 1.0, 'feeling': 1.0, 'there': 1.0, 'of': 1.0, 'my': 2.0, 'this': 1.0, 'smock': 1.0, 'in': 2.0, 'son': 2.0, 'from': 1.0, '12': 1.0, 'felt': 1.0, 'month': 1.0, 'to': 2.0, 'some': 1.0, 'cuffs': 1.0, 'help': 1.0, 'prevent': 1.0, 'sleeve': 1.0, 'paint': 1.0, 'size': 1.0, 'the': 2.0, 'without': 1.0, 'not': 1.0, 'bought': 1.0, 'huge': 1.0, 'so': 1.0, 'extra': 1.0, 'good': 1.0, 'fabric': 1.0, 'is': 1.0, 'around': 1.0}
Word element => {'but': 1.0, 'at': 1.0, 'balked': 1.0, 'using': 1.0, 'forward': 1.0, 'look': 1.0, 'well': 2.0, 'roomy': 1.0, 'they': 2.0, 'out': 1.0, 'of': 2.0, 'price': 1.0, 'years': 1.0, 'will': 1.0, 'every': 1.0, 'everyday': 1.0, 'many': 1.0, 'cumbersome': 1.0, 'little': 1.0, 'although': 1.0, 'don': 1.0, 'about': 1.0, 'too': 1.0, 'and': 2.0, 'as': 3.0, 'to': 3.0, 'these': 3.0, 'the': 4.0, 'more': 1.0, 'kids': 1.0, 'boys': 1.0, 'you': 1.0, 'when': 2.0, 'are': 5.0, 'leave': 1.0, 'have': 1.0, 'use': 1.0, 'wonderful': 1.0, 'art': 1.0, 'for': 3.0, 'something': 1.0, 'that': 1.0, 'worth': 1.0, 'or': 1.0, 'quite': 1.0, 'cooking': 1.0, 'pre': 1.0, 'your': 1.0, 'time': 1.0, 'wearing': 1.0, 'after': 1.0, 'want': 1.0, '10': 1.0, 'house': 1.0, 'spending': 1.0, 're': 1.0, 'my': 2.0, 'we': 1.0, 't': 1.0, 'a': 3.0, 'meal': 3.0, 'nice': 1.0, 'dress': 1.0, 'twin': 1.0, 'mess': 1.0, 'i': 4.0, 'ordered': 1.0, 'it': 1.0, 'treating': 1.0, 'month': 1.0, 'olds': 1.0, 'smocks': 2.0, 'them': 3.0, 'started': 1.0, 'laundry': 1.0, 'than': 1.0, 'get': 1.0, 'lifesaver': 1.0, 'created': 1.0}
Word element => {'apart': 1.0, 'margin': 1.0, 'decent': 1.0, 'that': 1.0, 'by': 1.0, 'just': 1.0, 'was': 1.0, 'even': 1.0, 'what': 1.0, 'year': 1.0, 'period': 1.0, 'from': 1.0, 'two': 1.0, 'loss': 1.0, 'the': 5.0, 'smock': 2.0, 'my': 2.0, 'should': 1.0, 'this': 2.0, 'works': 1.0, 'only': 1.0, 'one': 2.0, 'since': 1.0, 'well': 1.0, 'exactly': 1.0, 't': 2.0, 'a': 3.0, 's': 1.0, 'and': 3.0, 'difference': 1.0, 'good': 1.0, 'of': 1.0, 'bottom': 1.0, 'star': 1.0, 'after': 1.0, 'fall': 1.0, 'shouldn': 1.0, 'is': 2.0, 'does': 2.0, 'because': 1.0, 'started': 1.0, 'looks': 1.0, 'it': 6.0, 'hem': 1.0, 'most': 1.0, 'work': 1.0, 'available': 1.0, 'fraying': 1.0, 'neck': 1.0, 'minimal': 1.0, 'use': 1.0, 'old': 1.0, 'hasn': 1.0, 'made': 1.0, 'said': 1.0, 'in': 1.0, 'he': 1.0, 'how': 2.0, 'expensive': 1.0, 'fit': 1.0, 'product': 1.0}
Word element => {'nice': 1.0, 'also': 1.0, 'color': 1.0, 'clean': 1.0, 'to': 2.0, 'i': 2.0, 'love': 1.0, 'it': 2.0, 'was': 1.0, 'so': 1.0, 'very': 1.0, 'dry': 1.0, 'like': 1.0, 'the': 1.0, 'a': 1.0, 'helped': 1.0, 'is': 1.0, 'favor': 1.0, 'easy': 2.0, 'overalls': 1.0, 'me': 1.0}
Word element => {'super': 1.0, 'for': 2.0, 'very': 1.0, 'however': 1.0, 'uncomfortable': 1.0, 'way': 1.0, 'easy': 1.0, 'get': 1.0, 'tangle': 1.0, 'they': 1.0, 'because': 1.0, 'like': 1.0, 'knees': 1.0, 'chair': 1.0, 'in': 3.0, 'comfortable': 1.0, 'big': 1.0, 'stays': 1.0, 'lap': 1.0, 'that': 1.0, 'enough': 1.0, 'long': 1.0, 'is': 3.0, 'up': 1.0, 'me': 1.0, 'not': 1.0, 'if': 2.0, 'even': 2.0, 'times': 1.0, 'hair': 1.0, 'half': 1.0, 'old': 1.0, 'daughter': 1.0, 'rolled': 1.0, 'gets': 1.0, 'soft': 1.0, 'this': 2.0, 'dozen': 1.0, 'whenever': 2.0, 'colors': 1.0, 'bib': 2.0, 'shirt': 2.0, 'doesn': 1.0, 'was': 1.0, 'our': 1.0, 'to': 2.0, 'wears': 1.0, 'messy': 1.0, 'material': 1.0, 'bibs': 1.0, 'every': 3.0, 'penny': 1.0, 't': 1.0, 'a': 2.0, 'we': 1.0, 'most': 1.0, 'sitting': 1.0, '2': 1.0, 'the': 4.0, 'on': 5.0, 'it': 4.0, 'she': 5.0, 'are': 2.0, 'eats': 1.0, 'and': 4.0, 'setting': 1.0, 'markers': 1.0, 'time': 1.0, 'so': 1.0, 'sleeves': 2.0, 'fits': 1.0, 'clean': 3.0, 'her': 9.0, 'or': 1.0, 'worth': 1.0, 'neck': 1.0, 'willingly': 1.0, 'person': 1.0, 'day': 1.0, 'close': 1.0, 'collar': 1.0, 'tighter': 1.0, 'with': 1.0, 'elastic': 1.0, 'puts': 1.0, 'year': 1.0, 'almost': 1.0, 'spent': 1.0, 'wrists': 1.0, 'never': 1.0, 'keeps': 1.0}
Word element => {'worth': 1.0, 'comparison': 1.0, 'other': 1.0, 'of': 1.0, 'ones': 1.0, 'bunch': 1.0, 'buying': 1.0, 'after': 1.0, 'first': 1.0, 'only': 1.0, 'it': 5.0, 'there': 1.0, 'balked': 1.0, 'her': 2.0, 'clean': 1.0, 'from': 1.0, 'price': 1.0, 'best': 1.0, 'eating': 1.0, 'us': 1.0, 'cheap': 1.0, 'where': 1.0, 'tearing': 1.0, 'phase': 1.0, 'no': 1.0, 'thing': 1.0, 'smock': 1.0, 'the': 5.0, 'little': 1.0, 'messy': 1.0, 'and': 3.0, 'gotten': 1.0, 'out': 1.0, 'keeping': 1.0, 'but': 1.0, 'most': 1.0, 'hair': 1.0, 'has': 1.0, 'importantly': 1.0, 'sturdy': 1.0, 'girl': 1.0, 'totally': 1.0, 'that': 1.0, 'into': 1.0, 'clothes': 1.0, 'one': 1.0, 'a': 1.0, 's': 2.0, 'we': 1.0, 'wraps': 1.0, 'this': 1.0, 'found': 1.0, 'material': 1.0, 'feels': 1.0, 'enough': 1.0, 'is': 4.0, 'around': 1.0, 'large': 1.0, 'fully': 1.0, 'our': 2.0, 'to': 1.0, 'at': 2.0, 'keep': 1.0, 'i': 1.0}
Word element => {'wait': 1.0, 'don': 1.0, 'on': 1.0, 're': 1.0, 'you': 1.0, 'easier': 1.0, 't': 1.0, 'a': 1.0, 'first': 1.0, 'versatile': 1.0, 'is': 3.0, 'smock': 2.0, 'the': 2.0, 'if': 1.0, 'eat': 1.0, 'or': 1.0, 'mess': 1.0, 'i': 3.0, 'products': 1.0, 'also': 1.0, 'use': 2.0, 'food': 1.0, 'but': 1.0, 'used': 2.0, 'w': 1.0, 'even': 1.0, 'bib': 1.0, 'several': 1.0, 'minimal': 1.0, 'minute': 1.0, 'this': 3.0, 'wish': 1.0, 'highly': 1.0, 'bibs': 1.0, 'd': 1.0, '34': 2.0, 've': 1.0, 'coat': 1.0, 'another': 1.0, 'my': 1.0, 'calls': 1.0, 'clothes': 1.0, 'fence': 1.0, 'stay': 1.0, 'her': 2.0, 'clean': 2.0, 'play': 1.0, 'and': 2.0, 'it': 2.0, 'she': 1.0, 'easy': 1.0, 'able': 1.0, 'as': 3.0, 'all': 1.0, 'to': 3.0, 'daughter': 1.0, 'enjoy': 1.0, 'time': 1.0}
Word element => {'how': 1.0, 'compliments': 1.0, 'lot': 1.0, 'vibrant': 1.0, 'color': 1.0, 'one': 1.0, 'got': 1.0, 'bag': 1.0, 'diaper': 1.0, 'stash': 1.0, 'hand': 1.0, 'palm': 1.0, 'to': 2.0, 'fit': 1.0, 'for': 1.0, 'soak': 1.0, 'me': 1.0, 'green': 1.0, 'and': 3.0, 'wants': 1.0, 'so': 3.0, 'old': 1.0, 'i': 5.0, 'caked': 1.0, 'my': 3.0, 'minute': 1.0, 'this': 1.0, 'with': 1.0, 'or': 1.0, 'everywhere': 1.0, 'on': 2.0, 'get': 1.0, 'folds': 1.0, 'easy': 2.0, 'smock': 1.0, 'we': 1.0, 's': 1.0, 'a': 4.0, 'into': 1.0, 'stains': 1.0, 'take': 1.0, 'it': 5.0, 'she': 2.0, 'month': 1.0, 'brilliant': 1.0, 'idea': 1.0, 'anything': 1.0, 'the': 6.0, 'without': 1.0, 'can': 2.0, 'worrying': 1.0, 'about': 1.0, 'baby': 2.0, 'cute': 1.0, 'rest': 1.0, 'carrying': 1.0, 'just': 2.0, 'is': 4.0, 'around': 1.0, 'of': 3.0, 'lunchbox': 1.0, 'up': 2.0, 'looking': 1.0, 'filthy': 1.0, 'day': 1.0, 'clean': 2.0, 'rinse': 1.0, 'eat': 1.0, '10': 1.0, 'if': 1.0, 'in': 3.0, 'water': 1.0, 'are': 1.0}
Word element => {'grand': 1.0, 've': 1.0, 'for': 1.0, 'one': 1.0, 'needed': 1.0, 'machine': 1.0, 'product': 1.0, 'be': 1.0, 'can': 1.0, 'washed': 1.0, 'completely': 1.0, 'a': 1.0, 'purchased': 1.0, 'similar': 2.0, 'bib': 2.0, 'long': 1.0, 'used': 1.0, 'i': 2.0, 'very': 1.0, 'sleeved': 1.0, 'when': 2.0, 'kids': 2.0, 'my': 1.0, 'babies': 1.0, 'covers': 1.0, 'washable': 1.0, 'and': 1.0, 'vinyl': 1.0, 'second': 1.0, 'is': 2.0, 'really': 1.0, 'protected': 1.0, 'clothes': 2.0, 'were': 1.0, 'that': 1.0, 'their': 2.0, 'it': 1.0, 'this': 2.0, 'baby': 1.0, 'bjorn': 1.0, 'great': 1.0, 'the': 1.0, 'smock': 1.0}
Word element => {'older': 1.0, 'use': 1.0, 'great': 1.0, 'after': 1.0, 'incredibly': 1.0, 'baby': 1.0, 'clothes': 1.0, 'a': 4.0, 's': 2.0, 'i': 2.0, 'an': 2.0, 'change': 1.0, 'work': 1.0, 'will': 1.0, 'bought': 1.0, 'be': 2.0, 'hungry': 1.0, 'my': 1.0, 'he': 2.0, 'messy': 1.0, 'meal': 1.0, 'little': 1.0, 'art': 1.0, 'for': 2.0, 'old': 1.0, 'young': 1.0, 'gets': 1.0, 'son': 1.0, 'practically': 1.0, 'needs': 1.0, '8': 1.0, 'have': 1.0, 'it': 1.0, 'month': 1.0, 'because': 1.0, 'every': 1.0, 'this': 4.0, 'found': 1.0, 'smock': 2.0, 'bulky': 1.0, 'to': 2.0, 'cumbersome': 1.0, 'child': 1.0, 'and': 2.0, 'eater': 1.0, 'too': 2.0, 'you': 1.0, 'when': 2.0, 'much': 1.0, 'on': 1.0, 'your': 1.0, 'hands': 1.0}
Word element => {'you': 1.0, 'wipe': 1.0, 'to': 1.0, 'easy': 1.0, 'neck': 1.0, 'of': 1.0, 'number': 1.0, 'a': 3.0, 'clean': 1.0, 'covers': 1.0, 'daughters': 1.0, 'saved': 1.0, 'have': 1.0, 'won': 1.0, 'on': 1.0, 'is': 2.0, 'has': 2.0, 'time': 1.0, 'wardrobe': 1.0, 'regret': 1.0, 'high': 1.0, 'my': 1.0, 'arms': 1.0, 'bib': 1.0, 'getting': 1.0, 'and': 1.0, 't': 1.0, 'ocassions': 1.0, 'this': 2.0, 'it': 3.0, 'as': 1.0, 'must': 1.0, 'winter': 1.0, 'for': 1.0}
Word element => {'before': 1.0, 'bottoms': 1.0, 'isn': 1.0, 'down': 1.0, 'slightly': 1.0, 'sometimes': 1.0, 'she': 2.0, 'tall': 1.0, '34': 1.0, 'girl': 1.0, 'cover': 1.0, 't': 2.0, 'obviously': 1.0, 'this': 2.0, 'taller': 1.0, 'older': 1.0, 'painter': 1.0, 'you': 1.0, 'saying': 1.0, 'by': 1.0, 'only': 1.0, 'from': 1.0, 'purpose': 1.0, 'for': 2.0, 'great': 1.0, 'colors': 1.0, 'paints': 2.0, 'under': 1.0, 'including': 1.0, 'managed': 1.0, 'knees': 1.0, 'won': 1.0, 'who': 2.0, 'toddlers': 1.0, 'those': 1.0, 'did': 1.0, 'like': 1.0, 'would': 2.0, 's': 2.0, 'think': 1.0, 'bibs': 1.0, 'elbows': 1.0, 'woolite': 1.0, 'cycle': 1.0, 'qualify': 1.0, 'also': 2.0, 'will': 1.0, 'gentle': 1.0, 'runs': 1.0, 'cold': 1.0, 'although': 1.0, 'in': 3.0, 'have': 4.0, 'because': 1.0, 'everywhere': 1.0, 'that': 6.0, 'into': 1.0, 'three': 1.0, 'bib': 1.0, 'look': 1.0, 'at': 1.0, 'is': 3.0, 'manages': 1.0, 'more': 1.0, 'collection': 1.0, 'progressively': 1.0, 'much': 1.0, 'legs': 1.0, 'get': 2.0, 'months': 1.0, 'what': 1.0, 'when': 2.0, '40': 1.0, 'paint': 2.0, 'times': 1.0, 'started': 1.0, 'smocks': 4.0, 'wrists': 1.0, 'food': 1.0, 'or': 1.0, 'one': 2.0, 'held': 1.0, 'risk': 1.0, 'own': 1.0, 'off': 1.0, 'babybjorn': 1.0, 'washed': 1.0, 'on': 3.0, 'hate': 1.0, 'necks': 1.0, 'herself': 1.0, 'five': 1.0, 'child': 6.0, 'over': 1.0, 'these': 5.0, 'our': 3.0, 'to': 6.0, 'an': 1.0, 'all': 2.0, 'any': 1.0, 'we': 7.0, 'ten': 1.0, 'machine': 1.0, 'air': 1.0, 'mildly': 1.0, 'almost': 1.0, 'now': 1.0, 'clothes': 1.0, 'was': 2.0, 'change': 1.0, 'water': 2.0, 'laundry': 1.0, 'up': 1.0, 'mesh': 1.0, 'years': 1.0, 'play': 1.0, 'about': 2.0, 'issue': 1.0, 'messy': 2.0, 'i': 7.0, 'a': 2.0, 'added': 1.0, 'are': 2.0, 'above': 1.0, 'loved': 1.0, 'smock': 2.0, 'as': 1.0, 'bags': 1.0, 'arms': 1.0, 'and': 9.0, 'soon': 1.0, 'count': 1.0, 'hanging': 1.0, 'finger': 1.0, 'of': 5.0, 'the': 7.0, 'not': 1.0, 'dry': 1.0, 'wonderfully': 1.0, 'overnight': 1.0, 'nine': 1.0, 'than': 1.0, 'so': 1.0, 'can': 1.0, 'they': 2.0, 'old': 2.0, 'wonderful': 1.0, 'her': 3.0, 'use': 5.0, 'shape': 1.0, 'if': 2.0, 'still': 1.0, 'every': 1.0, 'left': 1.0, 'meal': 1.0, 'with': 3.0, 'snack': 1.0, 'art': 1.0, 'being': 1.0, 'been': 1.0, 'agreeing': 1.0, 'even': 1.0, 'suspicion': 1.0, 'me': 1.0, 'my': 4.0, 'stop': 1.0, 'it': 1.0, 'wear': 1.0}
Word element => {'babybjorn': 1.0, 'plastic': 1.0, 'similar': 1.0, 'which': 1.0, 'bear': 1.0, 'white': 1.0, 'blue': 2.0, 'website': 1.0, 'and': 1.0, 'probably': 1.0, 'received': 1.0, 'on': 1.0, 'is': 2.0, 'son': 1.0, 'logo': 1.0, 'version': 1.0, 'my': 1.0, 'the': 7.0, 'smock': 3.0, 'of': 3.0, 'bib': 1.0, 'same': 1.0, 'picture': 1.0, 'i': 2.0, 'sells': 1.0, 'lighter': 1.0, 'a': 2.0, 'since': 1.0, 'for': 1.0, 'hard': 1.0, 'with': 1.0, 'older': 2.0, 'this': 1.0, 'that': 2.0, 'to': 1.0, 'had': 1.0, 'was': 1.0}
Word element => {'mothers': 1.0, 'for': 1.0, 'have': 1.0, 'must': 1.0, 'a': 1.0, 'much': 1.0, 'it': 3.0, 'sleeve': 1.0, 's': 2.0, 'also': 1.0, 'i': 1.0, 'soft': 1.0, 'is': 1.0, 'water': 1.0, 'all': 1.0, 'proof': 1.0, 'very': 1.0, 'and': 1.0, 'like': 1.0}
Word element => {'up': 1.0, 'cover': 1.0, 'good': 1.0, 'needs': 1.0, 'the': 1.0, 'child': 1.0, 'made': 1.0, 'last': 1.0, 'whenever': 1.0, 'it': 1.0, 'with': 1.0, 'craft': 1.0, 'a': 3.0, 'well': 2.0, 'paint': 1.0, 'for': 2.0, 'must': 1.0, 'and': 2.0, 'snacktime': 1.0, 'projects': 1.0, 'should': 1.0, 'through': 1.0, 'be': 1.0, 'many': 1.0, 'meals': 1.0, 'toddler': 1.0, 'will': 1.0, 'mealtime': 1.0, 'used': 1.0}
Word element => {'definitely': 1.0, 'of': 1.0, 'falling': 1.0, 'not': 1.0, 'that': 1.0, 'ground': 1.0, 'low': 1.0, 'himself': 1.0, 'out': 2.0, 'really': 1.0, 'which': 1.0, 'enough': 1.0, 'cover': 2.0, 'worried': 1.0, 'by': 1.0, 'light': 1.0, 'but': 1.0, 'sitting': 1.0, 'the': 4.0, 'm': 1.0, 'arms': 1.0, 'or': 1.0, 'restaurants': 1.0, 'i': 3.0, 'houses': 1.0, 'slip': 1.0, 'at': 1.0, 'it': 6.0, 'love': 1.0, 'for': 1.0, 'is': 1.0, 'around': 1.0, 'chair': 1.0, 'get': 1.0, 'easy': 2.0, 'compact': 1.0, 'recommend': 1.0, 'doesn': 1.0, 'was': 1.0, 'so': 1.0, 'friends': 1.0, 'tote': 1.0, 'about': 1.0, 'thing': 1.0, 'likes': 1.0, 'this': 1.0, 'wish': 1.0, 'different': 1.0, 'and': 5.0, 'to': 4.0, 'our': 1.0, 'son': 1.0, 'in': 2.0, 've': 1.0, 'even': 1.0, 'used': 1.0, 'only': 1.0, 'picnic': 1.0, 't': 1.0, 's': 3.0, 'we': 1.0, 'a': 1.0, 'him': 2.0}
Word element => {'girl': 1.0, 'squirmy': 1.0, 'strap': 2.0, 'you': 1.0, 'middle': 1.0, 'buckle': 1.0, 'but': 1.0, 'size': 1.0, 'chair': 1.0, 'short': 1.0, 'travel': 1.0, 'and': 1.0, 'gently': 1.0, 'is': 1.0, 'the': 3.0, 'for': 1.0, 'model': 1.0, 'love': 1.0, 'it': 3.0, 'i': 1.0, 'when': 1.0, 'was': 1.0, 'comes': 1.0, 'to': 1.0, 'unsafe': 1.0, 'my': 1.0, 'pull': 1.0, 'undone': 1.0}
Word element => {'themselves': 1.0, 'web': 1.0, 'people': 1.0, 'family': 1.0, 'several': 1.0, 'to': 3.0, 'have': 2.0, 'chair': 1.0, 'for': 1.0, 'one': 1.0, 'love': 1.0, 'members': 1.0, 'buy': 1.0, 'i': 2.0, 'this': 1.0, 'it': 1.0, 'traveled': 1.0, 'with': 1.0, 'the': 2.0, 'booster': 1.0, 'we': 1.0, 'homes': 1.0, 'referred': 1.0, 'and': 1.0, 'site': 1.0, 'has': 1.0, 'worked': 1.0, 'so': 1.0, 'well': 1.0, 'also': 1.0}
Word element => {'deal': 1.0, 'is': 1.0, 'a': 1.0, 'chir': 1.0, 'money': 1.0, 'much': 1.0, 'very': 1.0, 'enjoy': 1.0, 'whilch': 1.0, 'us': 1.0, 'eat': 1.0, 'and': 1.0, 'to': 2.0, 'grandchildren': 1.0, 'i': 1.0, 'for': 2.0, 'chair': 1.0, 'use': 1.0, 'while': 1.0, 'works': 1.0, 'with': 1.0, 'it': 1.0, 'this': 2.0, 'portable': 1.0, 'my': 2.0, 'are': 2.0, 'great': 1.0, 'the': 2.0, 'bought': 1.0, 'they': 3.0, 'at': 2.0, 'house': 1.0, 'able': 1.0, 'sit': 1.0, 'up': 1.0, 'table': 1.0}
Word element => {'purchase': 1.0, 'its': 1.0, 'guess': 1.0, 'times': 1.0, 'into': 1.0, 'back': 1.0, 'rip': 1.0, 'bag': 1.0, 'carry': 1.0, 'overall': 1.0, 'thin': 1.0, 'like': 1.0, 'cheap': 1.0, 'hold': 1.0, 't': 1.0, 'but': 2.0, 'least': 1.0, 'strap': 1.0, 'feels': 1.0, 'from': 1.0, 'with': 2.0, 'now': 2.0, 'almost': 1.0, 'year': 1.0, 'received': 2.0, 'however': 1.0, 'intact': 1.0, 'packed': 1.0, 'little': 1.0, 'liked': 1.0, 'broken': 1.0, 'of': 2.0, 'the': 15.0, 'without': 1.0, 'long': 1.0, 'on': 3.0, 'used': 1.0, 'job': 1.0, 'to': 8.0, 'as': 1.0, 'waist': 1.0, 'just': 1.0, 'by': 1.0, 'a': 6.0, 's': 1.0, 'will': 3.0, 'could': 1.0, 'disappointed': 2.0, 'having': 1.0, 'than': 1.0, 'use': 2.0, 'amazon': 1.0, 'homes': 1.0, 'was': 3.0, 'attach': 1.0, 'my': 5.0, 'family': 1.0, 'trying': 1.0, 'another': 1.0, 'tight': 1.0, 'fabric': 1.0, 'for': 2.0, 'ones': 1.0, 'one': 2.0, 'old': 1.0, 'i': 13.0, 'chair': 5.0, 'straps': 2.0, 'return': 1.0, 'ordered': 1.0, 'keep': 1.0, 'do': 1.0, 'put': 1.0, 'floor': 1.0, 'after': 2.0, 'securely': 1.0, 'be': 1.0, 'friends': 1.0, 'new': 1.0, 'time': 1.0, 'and': 8.0, 'closed': 1.0, 'you': 1.0, 'that': 1.0, 'easily': 1.0, 'working': 1.0, 'first': 2.0, 'few': 2.0, 'this': 1.0, 'unfortunately': 1.0, 'she': 1.0, 'so': 1.0, 'can': 2.0, '2': 1.0, 'completely': 1.0, 'at': 2.0, 'is': 2.0, 'through': 1.0, 'then': 1.0, 'far': 1.0, 'buckle': 1.0, 'contacted': 1.0, 'have': 2.0, 'cut': 1.0, 'they': 1.0, 'think': 1.0, 'agreed': 1.0, 'out': 1.0, 'opened': 1.0, 'send': 1.0, 'them': 1.0, 'second': 1.0, 'which': 1.0, 'defective': 1.0, 'worse': 1.0, 'don': 1.0, 'buckles': 3.0, 'were': 2.0, 'not': 1.0, 'every': 1.0, 'stay': 1.0, 'unpack': 1.0, 'enough': 1.0, 'daughter': 1.0, 'm': 1.0, 'seat': 7.0, 'in': 3.0, 'pulling': 1.0, 'crunch': 1.0, 'had': 2.0, 'it': 6.0, 'already': 1.0, 'up': 2.0, 'switch': 1.0}
Word element => {'island': 1.0, 'including': 1.0, 'easily': 2.0, 'too': 1.0, 'barstools': 1.0, 'folds': 1.0, 'and': 1.0, 'any': 1.0, 'convenient': 1.0, 'booster': 1.0, 'my': 2.0, 'loves': 1.0, 'regular': 1.0, 'is': 1.0, 'seat': 1.0, 'this': 1.0, 'it': 3.0, 'love': 1.0, 'one': 1.0, 'year': 1.0, 'in': 1.0, 'i': 1.0, 'old': 1.0, 'fits': 1.0, 'size': 1.0, 'chair': 1.0}
Word element => {'use': 1.0, 'still': 1.0, 'old': 1.0, '15': 1.0, 'bought': 1.0, 'now': 1.0, 'worm': 1.0, 'if': 1.0, 'buckle': 1.0, '2': 1.0, 'can': 1.0, 'you': 2.0, 'like': 1.0, 'hold': 1.0, 'securely': 1.0, 'strap': 1.0, 'able': 1.0, 'home': 1.0, 'who': 1.0, 'at': 1.0, 'beach': 1.0, 'for': 2.0, 'great': 1.0, 'also': 2.0, 'in': 3.0, 'room': 1.0, 'takes': 1.0, 'glad': 1.0, 'with': 2.0, 'month': 1.0, 'it': 7.0, 'this': 2.0, 'me': 1.0, 'wrong': 1.0, 'something': 1.0, 'be': 1.0, 'have': 1.0, 'small': 1.0, 'must': 1.0, 'almost': 1.0, 'chairs': 1.0, 'so': 3.0, 'folds': 1.0, 'i': 5.0, 'buy': 1.0, 'little': 1.0, 'chair': 3.0, 'there': 1.0, 'of': 1.0, 'was': 1.0, 'place': 1.0, 'suitcase': 1.0, 'the': 5.0, 'park': 1.0, 'bulky': 1.0, 'price': 1.0, 'm': 1.0, 'because': 1.0, 'our': 1.0, 'to': 3.0, 'any': 1.0, 'seat': 2.0, 'thought': 1.0, 'purchased': 1.0, 'child': 1.0, 'up': 3.0, 'over': 2.0, 'we': 1.0, 's': 2.0, 'hardly': 1.0, 't': 1.0, 'a': 5.0, 'plastic': 1.0, 'booster': 1.0, 'didn': 1.0, 'even': 1.0, 'wiggle': 1.0, 'only': 1.0, 'works': 1.0, 'good': 1.0, 'specific': 1.0, 'fabric': 2.0, 'lightweight': 1.0, 'my': 1.0, 'cover': 1.0, 'types': 1.0, 'regalo': 1.0, 'your': 1.0, 'portable': 1.0, 'comes': 1.0, 'is': 2.0, 'and': 4.0}
Word element => {'would': 1.0, 'i': 1.0, 'games': 1.0, 'or': 1.0, 'tv': 1.0, 'watch': 1.0, 'be': 2.0, 'after': 2.0, 'used': 1.0, 'unfold': 1.0, 'should': 1.0, 'make': 1.0, 'works': 2.0, 'write': 1.0, 'my': 1.0, 'grt': 1.0, 'old': 1.0, 'meals': 1.0, 'yr': 1.0, 'table': 1.0, 'stored': 1.0, '2': 1.0, 'the': 3.0, 'such': 1.0, 'this': 2.0, 'it': 5.0, 'chair': 5.0, 'easy': 2.0, 'sure': 1.0, 'play': 1.0, 'and': 2.0, 'during': 1.0, 'very': 1.0, 'neice': 1.0, 'described': 1.0, 'well': 1.0, 'fastened': 1.0, 'in': 3.0, 'also': 2.0, 'keeps': 1.0, 'is': 2.0, 'as': 3.0, 'seat': 1.0, 'to': 9.0, 'use': 3.0, 'highly': 1.0, 'pls': 1.0, 'you': 1.0, 'a': 1.0, 's': 2.0, 'have': 1.0, 'foldup': 1.0, 'sit': 1.0, 'main': 1.0, 'ensure': 1.0, 'up': 1.0, 'child': 2.0, 'her': 1.0, 'clean': 1.0, 'recommend': 1.0, 'saftey': 1.0, 'while': 1.0, 'they': 1.0}
Word element => {'star': 1.0, 'perfect': 1.0, 'safe': 1.0, 'months': 1.0, '5': 1.0, 'sure': 1.0, 'chair': 1.0, '18': 1.0, '9': 1.0, 'fabulous': 1.0, 'rating': 1.0, 'a': 1.0, 'another': 1.0, 'is': 1.0, 'children': 1.0, 'this': 1.0, 'structure': 1.0, 'loved': 1.0, 'size': 1.0, 'and': 2.0, 'i': 2.0, 'for': 2.0, 'itso': 1.0, 'one': 1.0, 'bought': 2.0, 'much': 1.0}
Word element => {'price': 1.0, 'a': 1.0, 'and': 1.0, 'the': 1.0, 'beach': 1.0, 'including': 1.0, 'everywhere': 1.0, 'worked': 1.0, 'on': 1.0, 'i': 1.0, 'bought': 1.0, 'our': 1.0, 'this': 1.0, 'vacation': 1.0, 'for': 1.0, '8': 1.0, 'great': 3.0, 'month': 1.0, 'granddaughter': 1.0, 'bring': 1.0, 'product': 1.0, 'old': 1.0, 'to': 1.0}
Word element => {'house': 1.0, 's': 1.0, 'friend': 1.0, 'or': 1.0, 'restaurant': 1.0, 'are': 1.0, 'whether': 1.0, 'have': 1.0, 'always': 1.0, 'so': 1.0, 'car': 1.0, 'my': 1.0, 'keep': 1.0, 'i': 1.0, 'rental': 1.0, 'on': 3.0, 'in': 2.0, 'use': 1.0, 'dinner': 1.0, 'vacation': 1.0, 'our': 2.0, 'condo': 1.0, 'we': 4.0, 'this': 1.0, 'it': 1.0, 'now': 1.0, 'to': 1.0, 'watched': 1.0, 'great': 1.0, 'the': 3.0, 'chair': 1.0, 'booster': 1.0, 'at': 2.0, 'table': 1.0, 'worked': 1.0, 'as': 3.0, 'a': 3.0, 'tv': 1.0, 'well': 1.0, 'bought': 1.0, 'floor': 1.0}
Word element => {'price': 1.0, 'especially': 1.0, 'buy': 1.0, 'stuck': 1.0, 'got': 1.0, 'divider': 1.0, 'when': 1.0, 'slid': 1.0, 'scare': 1.0, 'had': 1.0, 'missing': 2.0, 'or': 1.0, 'broken': 1.0, 'opening': 1.0, 'restaurant': 1.0, 'most': 2.0, 'safer': 1.0, 'cleaner': 1.0, 'straps': 1.0, 'always': 1.0, 'my': 1.0, 'have': 2.0, 'leave': 1.0, 'now': 1.0, 'i': 2.0, 'stayed': 1.0, 'rental': 1.0, 'the': 4.0, 'easy': 1.0, 'than': 2.0, 'him': 1.0, 'high': 3.0, 'godsend': 1.0, 'take': 1.0, 'much': 1.0, 'happens': 1.0, 'car': 1.0, 'packs': 1.0, 'was': 3.0, 'it': 6.0, 'this': 2.0, 'with': 1.0, 'and': 5.0, 'other': 1.0, 'that': 2.0, 'to': 4.0, 'our': 2.0, 'completely': 1.0, 'more': 1.0, 'is': 1.0, 'in': 3.0, 'regular': 1.0, 'portable': 1.0, 'on': 1.0, 'smaller': 1.0, 'so': 2.0, 'strap': 1.0, 'called': 1.0, 'attach': 1.0, 'rica': 1.0, 'chair': 4.0, 'costa': 1.0, 'us': 2.0, 'leg': 1.0, 'once': 1.0, 'of': 2.0, 'stable': 1.0, 'camping': 1.0, 'chairs': 2.0, 'bought': 1.0, 'one': 1.0, 'great': 1.0, 'comfortable': 1.0, 'for': 3.0, 'a': 5.0, 'we': 3.0, 's': 2.0, 'which': 1.0, 'like': 1.0, 'vacation': 1.0, 'dining': 1.0, 'through': 1.0, 'loved': 1.0, 'lighter': 1.0, 'son': 2.0, 'home': 1.0, 'weight': 1.0, 'made': 1.0, 'things': 1.0, 'super': 1.0}
Word element => {'modification': 1.0, 'make': 1.0, 'hoping': 1.0, 'm': 1.0, 're': 1.0, 'legs': 1.0, 'their': 1.0, 'they': 2.0, 'between': 1.0, 'marks': 1.0, 'along': 1.0, 'leaving': 1.0, 'own': 2.0, 't': 1.0, 'a': 2.0, 'travel': 1.0, 'uncomfortably': 1.0, 'bought': 1.0, 'be': 3.0, 'like': 1.0, 'and': 4.0, 'old': 1.0, 'worse': 1.0, 'was': 1.0, 'so': 2.0, 'my': 2.0, 'low': 1.0, 'high': 1.0, '27': 1.0, 'useless': 1.0, 'it': 2.0, 'month': 1.0, 'otherwise': 1.0, 'i': 2.0, 'two': 2.0, 'used': 2.0, 'chairs': 2.0, 'for': 1.0, '21': 1.0, 'can': 3.0, 'way': 1.0, 'lbs': 1.0, 'twins': 1.0, 'you': 1.0, 'bring': 1.0, 'until': 1.0, 'seemed': 1.0, 'great': 2.0, 'without': 1.0, 'the': 2.0, '20': 1.0, 'realize': 1.0, 'inches': 1.0, 'to': 2.0, 'center': 2.0, 'our': 1.0, 'all': 1.0, 'strap': 2.0, 'not': 1.0, 'also': 1.0, 'adjusted': 1.0, 'sits': 1.0, 'even': 1.0, 'long': 1.0, 'its': 1.0, 'only': 1.0, 'about': 1.0, 'half': 1.0}
Word element => {'use': 1.0, 'grandma': 1.0, 'take': 1.0, 'can': 1.0, 'practical': 1.0, 'not': 1.0, 'dining': 1.0, 'and': 2.0, 'high': 1.0, 'light': 1.0, 'to': 1.0, 'although': 1.0, 'i': 1.0, 'stays': 1.0, 'on': 1.0, 'everywhere': 1.0, 'chair': 2.0, 'anchored': 1.0, 'park': 1.0, 'down': 1.0}
Word element => {'grandchildren': 1.0, 'future': 1.0, 'through': 1.0, 'constructed': 1.0, 'family': 1.0, 'the': 1.0, 'own': 1.0, 'perfect': 1.0, 'well': 1.0, 's': 1.0, 'in': 1.0, 'for': 1.0, 'room': 1.0, 'now': 1.0, 'last': 1.0, 'chair': 2.0, 'nana': 1.0, 'can': 1.0, 'house': 1.0, 'enjoy': 1.0, 'everyone': 1.0, 'their': 1.0}
Word element => {'size': 1.0, 's': 1.0, 'his': 1.0, 'even': 1.0, 'and': 1.0, 'room': 1.0, 'sand': 1.0, 'in': 3.0, 'loves': 1.0, 'but': 1.0, 'to': 1.0, 'sitting': 1.0, 'month': 1.0, 'have': 1.0, 'chair': 1.0, 'grandson': 1.0, '18': 1.0, 'for': 2.0, 'enjoyed': 1.0, 'my': 1.0, 'the': 4.0, 'at': 1.0, 'booster': 1.0, 'old': 1.0, 'i': 1.0, 'traveling': 1.0, 'it': 2.0, 'this': 1.0, 'he': 1.0, 'has': 1.0, 'just': 2.0, 'seat': 1.0, 'bought': 1.0, 'beach': 1.0, 'as': 1.0, 'a': 1.0}
Word element => {'old': 1.0, 'arround': 1.0, 'it': 1.0, 'only': 1.0, 'is': 4.0, 'crouch': 1.0, 'used': 1.0, 'such': 1.0, 'the': 6.0, 'can': 1.0, '2': 1.0, 'just': 1.0, 'be': 1.0, 'short': 1.0, 'easy': 1.0, 'strap': 1.0, 'yr': 1.0, 'travel': 1.0, 'use': 1.0, 'then': 1.0, 'booster': 1.0, 'trailer': 1.0, 'for': 2.0, 'awesome': 1.0, 'that': 1.0, 'on': 1.0, 'bench': 1.0, 'fire': 1.0, 'in': 2.0, 'buckle': 1.0, 'dinner': 1.0, 'negative': 1.0, 'i': 1.0, 'have': 1.0, 'outside': 1.0, 'as': 1.0, 'seat': 2.0, 'to': 1.0, 'our': 1.0, 'center': 1.0, 'and': 2.0, 'too': 1.0, 'so': 1.0, 'a': 1.0, 'we': 1.0, 'found': 1.0, 'this': 1.0, 'dont': 1.0}
Word element => {'meal': 1.0, 'eat': 1.0, 'will': 1.0, 'more': 1.0, 'resolved': 1.0, 'plates': 1.0, 'make': 1.0, 'else': 1.0, 'someone': 1.0, 'or': 1.0, 'any': 1.0, 'stood': 1.0, 'hold': 1.0, 'reviewer': 1.0, 'trying': 1.0, 'another': 1.0, 'up': 3.0, 'with': 1.0, 'where': 2.0, 'etc': 1.0, 'before': 1.0, 'picnic': 1.0, 'g': 1.0, 'table': 3.0, 'is': 1.0, 'at': 2.0, 'their': 1.0, 'sitting': 2.0, 'out': 1.0, 'are': 2.0, 'sit': 1.0, 'when': 3.0, 'stated': 1.0, 'nice': 1.0, 'be': 1.0, 'would': 1.0, 'tray': 1.0, 'outside': 1.0, 'type': 1.0, 'did': 1.0, 'camping': 1.0, 'wide': 1.0, 'does': 1.0, 'ground': 1.0, 'hook': 1.0, 'straps': 2.0, 'about': 2.0, 'several': 1.0, 'friends': 1.0, 'a': 5.0, 'go': 1.0, 'things': 1.0, 'you': 3.0, 'times': 2.0, 'traveling': 1.0, 'worked': 1.0, 'tell': 1.0, 'used': 1.0, 'chairs': 2.0, 'have': 2.0, 'has': 4.0, 'houses': 1.0, 'travels': 1.0, 'old': 1.0, 'figure': 1.0, 'now': 1.0, 'in': 1.0, 'seat': 3.0, 'ourselves': 1.0, 'waist': 1.0, 'as': 1.0, 'how': 1.0, 'our': 7.0, 'feed': 1.0, 'instead': 1.0, 'chair': 7.0, 'oldcons': 1.0, 'e': 1.0, 'if': 1.0, 'want': 1.0, 'style': 1.0, 'not': 4.0, 'him': 2.0, 'it': 7.0, 'often': 1.0, 'month': 2.0, 'this': 3.0, 'can': 1.0, 'but': 1.0, 'passing': 1.0, 'great': 1.0, '1': 2.0, 'of': 4.0, 'the': 13.0, 'no': 1.0, 'let': 1.0, 'adjustable': 2.0, 'booster': 1.0, 'bought': 1.0, 'held': 1.0, 'one': 1.0, 'family': 1.0, 'me': 1.0, 'my': 1.0, '10': 2.0, 'for': 5.0, 'fit': 1.0, 'son': 2.0, 'pros': 1.0, 'snaps': 1.0, 'attachable': 1.0, 'to': 10.0, 'high': 1.0, 'and': 11.0, 'seats': 1.0, 'we': 4.0, 'take': 1.0, 'holding': 1.0, 'both': 1.0, 'most': 1.0, 'back': 2.0, 'bottom': 1.0, 'secure': 1.0, 'off': 1.0, 'seems': 1.0, 'worries': 1.0, 'hold2': 1.0, 'child': 5.0, '2': 2.0, 'saftey': 1.0, 'loves': 1.0, 'rough': 1.0, 'strap': 3.0, 'problems': 1.0, 'that': 2.0, 'through': 1.0, 'legs': 1.0, '3': 1.0, 'on': 5.0, 'compact': 1.0, 'durable': 1.0, 'light': 1.0, 'easy4': 1.0, 'convienent': 1.0, 'his': 1.0, 'around': 2.0, 'chair6': 1.0, 'very': 3.0, 'removeable': 1.0, 'liner': 1.0, 'bit': 1.0, 'found': 2.0, 'easy': 1.0, 'cleaning': 1.0, 'bounces': 1.0, '5': 1.0, 'double': 1.0, 'regular': 2.0, 'do': 1.0, 'an': 2.0, 'adult': 1.0, '31': 1.0, '22lb': 1.0}
Word element => {'very': 1.0, 'short': 1.0, 'inches': 1.0, 'about': 1.0, 'versatile': 1.0, '2': 1.0, 'is': 1.0, 'buckle': 1.0, 'too': 1.0, 'outstanding': 1.0, 'product': 1.0, 'the': 1.0, 'would': 1.0, 'bottom': 1.0, 'been': 1.0, 'higher': 1.0, 'that': 1.0, 'rated': 1.0, 'have': 1.0, 'except': 1.0}
Word element => {'or': 1.0, 'in': 1.0, 'sitting': 1.0, 'between': 1.0, 'choose': 1.0, 'toddler': 1.0, 'high': 1.0, 'allowing': 1.0, 'at': 2.0, 'table': 1.0, 'using': 1.0, 'back': 1.0, 'one': 1.0, 'directions': 1.0, 'wasn': 1.0, 'the': 7.0, 'had': 2.0, 'our': 2.0, 'to': 7.0, 'was': 1.0, 'recently': 1.0, 'issue': 2.0, 'and': 3.0, 'it': 6.0, 'this': 1.0, 'with': 2.0, 'only': 1.0, 'of': 1.0, 'gap': 1.0, 'traveled': 1.0, 'home': 1.0, 'appropriate': 1.0, 'light': 1.0, 'currently': 1.0, 'related': 1.0, 'both': 1.0, 'easy': 1.0, 'product': 1.0, 'be': 1.0, 'is': 1.0, 'around': 1.0, 'through': 1.0, 'carry': 1.0, 'that': 1.0, 'hotel': 1.0, 'didn': 1.0, 'have': 1.0, 'an': 1.0, 'secure': 1.0, 'chair': 5.0, 'there': 2.0, 'strap': 1.0, 'are': 2.0, 'straps': 1.0, 'put': 1.0, 'on': 1.0, 'so': 1.0, 'needs': 1.0, 't': 2.0, 'we': 4.0, 'going': 1.0, 'a': 1.0, 'run': 1.0}
Word element => {'adjustable': 1.0, 'are': 1.0, 'those': 1.0, 'never': 1.0, 'dweller': 1.0, 'city': 1.0, 'light': 1.0, 'regalo': 1.0, 'with': 2.0, 'to': 2.0, 'had': 1.0, 'needed': 1.0, 'until': 1.0, 'heavy': 1.0, 'leave': 1.0, 'suburbia': 1.0, 'live': 1.0, 'you': 4.0, 'anywhere': 1.0, 'problem': 1.0, 'always': 1.0, 'restaurant': 1.0, 'into': 1.0, 'grown': 1.0, 'purchase': 1.0, 'regret': 1.0, 'attached': 1.0, 'issue': 1.0, 'while': 1.0, 'real': 1.0, 'reclining': 1.0, 'since': 1.0, 'no': 2.0, '13': 1.0, 'use': 1.0, 'adults': 1.0, 'kind': 1.0, 'like': 1.0, 'chair': 5.0, 'there': 1.0, 'a': 4.0, 's': 5.0, 'might': 2.0, 'we': 1.0, 'carry': 2.0, 'hope': 1.0, 'cons': 1.0, 'straps': 4.0, 'hot': 1.0, 'month': 1.0, 'sized': 1.0, 'average': 1.0, 'upright': 1.0, 'isn': 1.0, 'design': 1.0, 'lapbelt': 1.0, 'sporting': 1.0, 'times': 1.0, 'not': 2.0, 'style': 1.0, 'at': 2.0, 'is': 4.0, 'more': 2.0, 'great': 2.0, 'of': 4.0, 'the': 12.0, 'folding': 1.0, 'also': 2.0, 'this': 5.0, 'older': 1.0, 'me': 1.0, 'my': 3.0, 'can': 1.0, 'lightweight': 1.0, 'so': 2.0, 'practically': 1.0, 'old': 1.0, 'well': 1.0, 'i': 4.0, 'idea': 1.0, 'your': 3.0, 'think': 1.0, 'better': 1.0, 'back': 2.0, 'but': 5.0, 'work': 1.0, 'their': 1.0, 'sitting': 1.0, 'an': 2.0, 'or': 1.0, 'car': 1.0, 'consider': 1.0, 'support': 3.0, 'toddler': 1.0, 'child': 2.0, 'butt': 1.0, 'bum': 1.0, 'it': 7.0, 'him': 3.0, 'be': 3.0, 'm': 1.0, 'seat': 4.0, 'in': 4.0, 'sling': 2.0, 'for': 4.0, 'fabric': 1.0, 'and': 7.0, 'seated': 1.0, 'too': 2.0, 'will': 2.0, 'could': 1.0, 'means': 1.0, 'tightest': 1.0, 'that': 3.0, 'still': 1.0, 'bigger': 1.0, 'if': 4.0, 'was': 2.0, 'pros': 1.0, 'son': 2.0, 'his': 1.0, 'kept': 1.0, 'bulky': 1.0, 'would': 3.0, 'sliding': 1.0, 'down': 1.0, 'matter': 1.0, 'how': 1.0, 'many': 1.0, 'sat': 1.0, 'were': 1.0, 'just': 1.0, 'events': 1.0, 'large': 1.0, 'even': 2.0, 't': 1.0, 'fit': 1.0, 'tightened': 1.0, 'tightly': 1.0, 'lack': 2.0}
Word element => {'20': 1.0, 'priced': 1.0, 'or': 1.0, 'for': 1.0, 'well': 1.0, 'overall': 1.0, 'slouching': 1.0, 'ends': 1.0, 'sometimes': 1.0, 'fabric': 1.0, 'reasonably': 1.0, 'of': 1.0, 'because': 1.0, 'side': 1.0, 'works': 1.0, 'only': 1.0, 'secure': 1.0, 'at': 1.0, 'keep': 1.0, 'and': 2.0, 'are': 1.0, 'by': 1.0, 'light': 1.0, 'relatively': 1.0, 'compact': 1.0, 'my': 1.0, 'may': 1.0, 'easily': 1.0, 'use': 1.0, 'travel': 1.0, 'be': 1.0, 'up': 2.0, 'folds': 1.0, 'remain': 1.0, 'with': 2.0, 'month': 1.0, 'it': 6.0, 'soft': 1.0, 'this': 2.0, 'is': 5.0, 'were': 2.0, 'best': 1.0, 'under': 1.0, 'son': 2.0, 'occasional': 1.0, 'able': 1.0, 'booster': 3.0, 'our': 2.0, 'to': 3.0, 'thing': 1.0, 'about': 1.0, 'packing': 1.0, 'regular': 1.0, 'in': 3.0, 'travelling': 1.0, 'the': 8.0, 'suitcase': 1.0, 'that': 4.0, 'initially': 1.0, 'straps': 2.0, 'concerned': 1.0, 'sturdy': 2.0, 'enough': 1.0, 'down': 1.0, 'especially': 1.0, 'on': 2.0, 'not': 1.0, 'squirming': 1.0, 'we': 2.0, 's': 2.0, 'chair': 6.0, 'strapped': 1.0, '10': 1.0, 'old': 1.0, 'firm': 1.0, 'but': 1.0}
Word element => {'etc': 1.0, 'house': 1.0, 'grandparents': 1.0, 'restaurant': 1.0, 'you': 1.0, 'safety': 1.0, 'good': 1.0, 'into': 1.0, 'then': 1.0, 'child': 1.0, 'up': 1.0, 'very': 1.0, 'insuring': 1.0, 'and': 1.0, 'high': 2.0, 'designed': 1.0, 'chair': 6.0, 'carrying': 1.0, 'the': 4.0, 'folds': 1.0, 'small': 1.0, 'strapped': 1.0, 'own': 1.0, 'well': 1.0, 'a': 4.0, 'with': 1.0, 'this': 2.0, 'take': 1.0, 'bag': 1.0, 'in': 1.0, 'to': 2.0, 'adapter': 2.0, 'its': 2.0, 'straps': 1.0, 'onto': 1.0, 'traveling': 1.0, 'is': 3.0, 'regular': 1.0}
Word element => {'this': 1.0, 'buy': 1.0, 'tables': 1.0, 'at': 1.0, 'worked': 1.0, 'height': 1.0, 'with': 1.0, 'issues': 1.0, 'be': 1.0, 'that': 1.0, 'love': 1.0, 'for': 1.0, 'would': 1.0, 'son': 1.0, 'harness': 1.0, 'great': 2.0, 'and': 2.0, 'child': 1.0, 'don': 1.0, 'up': 1.0, 'of': 2.0, 'folds': 1.0, 'needs': 1.0, 'smaller': 1.0, 'so': 1.0, 'very': 1.0, 'best': 1.0, 'have': 3.0, 'purchases': 1.0, 'come': 1.0, 'has': 1.0, 'easier': 1.0, 'is': 2.0, 'regalo': 1.0, 'my': 3.0, 'strapped': 1.0, 'chair': 4.0, 'i': 4.0, 'one': 1.0, 'made': 1.0, 'the': 7.0, 'sits': 1.0, 'life': 1.0, '22': 1.0, 'tried': 1.0, 'mommy': 1.0, 'll': 1.0, 'perfectly': 1.0, 'bottom': 1.0, 'down': 1.0, 'you': 1.0, 'easily': 1.0, 'in': 2.0, 't': 1.0, 's': 1.0, 'a': 2.0, 'carry': 2.0, 'bag': 1.0, 'it': 6.0, 'month': 1.0, 'securely': 1.0, 'himself': 1.0, 'portable': 2.0, 'make': 1.0, 'on': 4.0, 'every': 1.0, 'use': 2.0, 'all': 1.0, 'waist': 1.0, 'to': 2.0, 'additionally': 1.0, 'but': 1.0, 'can': 1.0, 'work': 2.0, 'no': 1.0, 'security': 1.0, 'straps': 1.0}
Word element => {'big': 1.0, 'better': 1.0, 'experience': 1.0, 'out': 1.0, 'but': 1.0, 'there': 1.0, 'of': 1.0, 'however': 1.0, 'so': 1.0, 'weight': 1.0, 'light': 1.0, 'and': 2.0, 'makes': 1.0, 'old': 1.0, 'this': 1.0, 'having': 1.0, 'sister': 1.0, 'truly': 1.0, 'it': 2.0, 'dining': 1.0, 'extremely': 1.0, 'he': 1.0, 'nephew': 1.0, 'super': 1.0, 'no': 1.0, 'was': 1.0, 'seat': 1.0, 'to': 2.0, 'a': 3.0, 'is': 3.0, 'gift': 1.0, 'straps': 1.0, 'for': 2.0, 'my': 2.0, '13': 1.0, 'are': 1.0, 'months': 1.0, 'portable': 1.0, 'on': 1.0, 'chest': 1.0, 'dives': 1.0, 'without': 1.0, 'the': 3.0, 'floor': 1.0, 'be': 1.0, 'when': 1.0, 'you': 1.0, 'alert': 1.0, 'best': 1.0, 'bruiser': 1.0, 'side': 1.0, 'safer': 1.0, 'much': 1.0, 'have': 1.0, 'lug': 1.0, 'an': 1.0, 'adult': 1.0, 'either': 1.0, 'kid': 1.0}
Word element => {'functioning': 1.0, 'without': 1.0, 'safe': 1.0, 'as': 1.0, 'company': 1.0, 'in': 1.0, 'would': 1.0, 'her': 1.0, 'short': 1.0, 'problem': 1.0, 'she': 1.0, 'strap': 3.0, 'something': 1.0, 'that': 1.0, 'way': 1.0, 'it': 2.0, 'only': 2.0, 'do': 1.0, 'and': 1.0, 'stay': 1.0, 'chair': 2.0, 'not': 1.0, 'seat': 2.0, 'attach': 1.0, 'is': 5.0, 'great': 1.0, 'the': 2.0, 'my': 1.0, 'so': 1.0, 'small': 1.0, 'should': 1.0, 'fit': 1.0, 'make': 1.0, 'daughter': 1.0, 'to': 3.0, 'had': 2.0, '24lbs': 1.0, 'weighs': 1.0, 'i': 2.0, 'a': 1.0}
Word element => {'strap': 1.0, 'back': 1.0, 'me': 1.0, 'sent': 1.0, 'amazon': 1.0, 'then': 1.0, 'cause': 1.0, 'has': 1.0, 'be': 1.0, 'but': 1.0, 'one': 2.0, 'bought': 1.0, 'hit': 1.0, 'the': 1.0, 'careful': 1.0, 'playing': 1.0, 'otherwise': 1.0, 'i': 3.0, 'old': 1.0, 'am': 1.0, 'backstrap': 1.0, '14': 1.0, 'while': 1.0, 'so': 1.0, 'its': 2.0, 'was': 1.0, 'to': 2.0, 'had': 2.0, 'daughter': 1.0, 'or': 1.0, 'perfect': 1.0, 'this': 2.0, 'with': 1.0, 'happy': 1.0, 'another': 1.0, 'my': 2.0, 'books': 1.0, 'chair': 2.0, 'a': 3.0, 'didnt': 1.0, 'really': 1.0, 'big': 1.0, 'very': 1.0, 'she': 1.0, 'it': 4.0, 'month': 1.0, 'just': 1.0, 'light': 1.0, 'carry': 1.0, 'and': 2.0, 'comfy': 1.0, 'for': 1.0, 'baby': 1.0, 'ordered': 1.0, 'height': 1.0, 'sit': 1.0, 'have': 1.0, 'on': 1.0, 'which': 1.0, 'reading': 1.0, 'would': 1.0, 'that': 2.0, 'loves': 1.0, 'been': 1.0, 'helpful': 1.0, 'if': 1.0, 'around': 1.0, 'more': 1.0}
Word element => {'durable': 1.0, 'am': 1.0, 'of': 1.0, 'quickly': 1.0, 'months': 1.0, 'about': 1.0, 'price': 1.0, 'after': 1.0, 'two': 1.0, 'i': 3.0, 'use': 1.0, 'purchased': 1.0, 'because': 1.0, 'not': 1.0, 'just': 1.0, 'it': 5.0, 'for': 3.0, 'the': 4.0, 'my': 2.0, 'nice': 1.0, 'toddler': 1.0, 'but': 2.0, 'son': 1.0, 'and': 2.0, 'do': 2.0, 'very': 1.0, 'ripped': 1.0, 'more': 1.0, 'is': 3.0, 'outside': 1.0, 'to': 1.0, 'while': 1.0, 'fix': 1.0, 'likes': 1.0, 'chair': 1.0, 'think': 1.0, 'should': 2.0, 'that': 1.0, 'size': 1.0, 'right': 1.0, 'this': 1.0, 'perfect': 1.0, 'be': 1.0, 'going': 1.0, 'a': 1.0, 'so': 1.0, 'seam': 1.0, 'bit': 1.0}
Word element => {'to': 1.0, 'weight': 1.0, 'very': 1.0, 'traveling': 1.0, 'little': 1.0, 'light': 1.0, 'bag': 1.0, 'sitting': 1.0, 'a': 1.0, 'easy': 1.0, 'she': 1.0, 'price': 1.0, 'grandaughter': 1.0, 'for': 2.0, 'in': 1.0, 'loved': 2.0, 'folds': 1.0, 'set': 1.0, 'immediately': 1.0, 'up': 2.0, 'nicely': 1.0, 'our': 1.0, 'bought': 1.0, 'it': 2.0, 'this': 1.0, 'with': 1.0, 'too': 2.0, 'us': 1.0, 'and': 1.0, 'biggirl': 1.0, 'her': 1.0, 'own': 1.0, 'chair': 1.0, 'good': 1.0, 'into': 1.0}
Word element => {'nowadays': 1.0, 'value': 1.0, 'and': 1.0, 'quality': 1.0, 'of': 1.0, 'backyard': 1.0, 'for': 1.0, 'chair': 1.0, 'use': 1.0, 'so': 1.0, 'portable': 1.0, 'can': 2.0, 'the': 3.0, 'great': 1.0, 'versatility': 1.0, 'little': 1.0, 'totally': 1.0, 'bring': 1.0, 'a': 4.0, 'go': 1.0, 'unique': 1.0, 'beach': 1.0, 'product': 1.0, 'to': 2.0, 'restaurants': 1.0, 'it': 2.0, 'this': 1.0, 'combination': 2.0, 'other': 1.0, 'or': 2.0, 'when': 1.0, 'lawn': 1.0, 'is': 2.0, 'really': 1.0, 'people': 1.0, 'you': 3.0, 's': 1.0, 'houses': 1.0, 'also': 1.0}
Word element => {'travelling': 1.0, 'price': 1.0, 'convenient': 1.0, 'nicely': 1.0, 'folds': 1.0, 'and': 1.0, 'very': 1.0, 'straps': 1.0, 'the': 1.0, 'chair': 1.0, 'worked': 1.0, 'on': 1.0, 'with': 1.0, 'love': 1.0, 'great': 2.0, 'this': 1.0, 'loved': 1.0, 'she': 1.0, 'for': 1.0, 'vacation': 1.0, 'playing': 1.0}
Word element => {'sitting': 1.0, 'crackers': 1.0, 'eat': 1.0, 'to': 1.0, 'and': 1.0, 'kid': 1.0, 'loves': 2.0, 'it': 3.0, 'he': 1.0, 'sits': 1.0, 'on': 2.0, 'time': 1.0, 'while': 1.0, 'all': 1.0, 'my': 1.0, 'the': 1.0}
Word element => {'lbs': 1.0, 'inches': 1.0, '35': 2.0, 'roughly': 1.0, 'reference': 1.0, 'fine': 1.0, 'sippy': 1.0, 'they': 1.0, 'snack': 1.0, 'some': 1.0, 'hold': 1.0, 'small': 1.0, 'pockets': 1.0, 'mesh': 1.0, 'see': 1.0, 'down': 1.0, 'possible': 1.0, 'i': 1.0, 'etc': 1.0, 'that': 2.0, 'into': 1.0, 'loves': 1.0, 'or': 1.0, 'are': 1.0, 'normal': 1.0, 'chair': 2.0, 'holders': 1.0, 'perfect': 1.0, 'bench': 1.0, 'in': 1.0, 'travel': 1.0, 'too': 1.0, 'toss': 1.0, 'and': 3.0, 'daughter': 2.0, 'fit': 1.0, 'for': 4.0, 'deal': 1.0, 'the': 7.0, 'grass': 1.0, 'great': 3.0, 'fits': 1.0, 'my': 1.0, 'lightweight': 1.0, 'a': 2.0, 't': 1.0, 'is': 3.0, 'price': 1.0, 'it': 1.0, 'of': 1.0, 'set': 1.0, 'up': 2.0, 'on': 2.0, 'your': 1.0, 'about': 1.0, 'park': 1.0, 'side': 2.0, 'tables': 1.0, 'just': 2.0, 'an': 1.0, 'afternoon': 1.0, 'backpack': 1.0, 'easy': 1.0, 'picnic': 2.0, 'works': 1.0, 'only': 1.0, 'pack': 1.0, 'cups': 1.0, 'to': 3.0, 'outside': 1.0, 'all': 1.0, 'most': 1.0, 'but': 1.0, 'can': 1.0, 'complain': 1.0, 'at': 1.0}
Word element => {'so': 2.0, 'or': 1.0, 'had': 1.0, 'only': 1.0, 'counter': 1.0, 're': 1.0, 'me': 1.0, 'important': 1.0, 'speak': 1.0, 'material': 1.0, 'no': 1.0, 'made': 1.0, 'bottom': 1.0, 'aspects': 1.0, 'other': 1.0, 'during': 1.0, 'arms': 1.0, 'my': 1.0, 'good': 1.0, 'her': 1.0, 'and': 1.0, 'durability': 1.0, 'couch': 1.0, 'on': 3.0, 'of': 2.0, 'july': 1.0, 'falls': 1.0, 'habit': 1.0, 'grip': 1.0, 'this': 1.0, 'which': 1.0, 'like': 1.0, 'using': 2.0, 'that': 2.0, 'loves': 1.0, 'been': 1.0, 've': 3.0, 'meantime': 1.0, 'get': 1.0, 'day': 1.0, 'gotten': 1.0, 'was': 1.0, 'doesn': 1.0, 'slip': 1.0, '2014': 1.0, 'putting': 1.0, 'throwing': 1.0, 'here': 1.0, '23': 1.0, 'bought': 1.0, 'old': 1.0, 'i': 5.0, 'asleep': 1.0, 'the': 6.0, 'diaper': 1.0, 'done': 1.0, 'due': 1.0, 'who': 1.0, 'is': 3.0, 'want': 1.0, 'can': 1.0, 'but': 1.0, 'change': 1.0, 'month': 2.0, 'it': 7.0, 'she': 4.0, 'there': 1.0, 'are': 2.0, 'for': 3.0, 'actually': 1.0, 'times': 1.0, 'when': 2.0, 'throws': 1.0, 'after': 1.0, 's': 1.0, 'we': 2.0, 't': 2.0, 'a': 4.0, 'in': 4.0, 'tantrum': 1.0, 'because': 2.0, 'our': 2.0, 'to': 3.0, 'newborn': 1.0, 'out': 1.0, 'linoleum': 1.0, 'even': 1.0}
Word element => {'since': 1.0, 'useless': 1.0, 'any': 1.0, 'no': 1.0, 'stress': 1.0, 'didn': 1.0, 'and': 1.0, 'pad': 1.0, 'after': 1.0, 's': 1.0, 'way': 1.0, 'workmanship': 1.0, 'six': 1.0, 'seam': 1.0, 'excellent': 1.0, 'sanitary': 1.0, 'item': 2.0, 'it': 1.0, 'come': 1.0, 'this': 2.0, 'of': 3.0, 'makes': 1.0, 'has': 1.0, 'poor': 1.0, 't': 1.0, 'the': 6.0, 'place': 1.0, 'while': 1.0, 'than': 1.0, 'month': 1.0, 'one': 1.0, 'less': 1.0, 'corner': 1.0, 'seams': 1.0, 'in': 2.0, 'apart': 1.0, 'longer': 1.0, 'course': 1.0, 'is': 2.0, 'leave': 1.0, 'design': 1.0, 'we': 1.0}
Word element => {'originally': 1.0, 'top': 1.0, 'table': 1.0, 'dressing': 1.0, 'was': 1.0, 'on': 1.0, 'is': 1.0, 'the': 2.0, 'that': 1.0, 'so': 1.0, 'thin': 1.0, 'much': 1.0, 'than': 1.0, 'better': 1.0, 'little': 1.0, 'this': 1.0, 'pad': 1.0}
Word element => {'but': 1.0, 'nice': 1.0, 'were': 1.0, 'one': 1.0, 'luck': 1.0, 'much': 1.0, 'since': 1.0, 'a': 1.0, 'use': 1.0, 'stained': 1.0, 'cover': 2.0, 'finding': 1.0, 'order': 1.0, 'after': 1.0, 'matter': 1.0, 'and': 2.0, 'only': 1.0, 'dry': 1.0, 'other': 1.0, 'shortly': 1.0, 'haven': 1.0, 'chair': 2.0, 'himself': 1.0, 'clean': 1.0, 'didn': 2.0, 'feeding': 1.0, 'really': 1.0, 'features': 1.0, 'is': 1.0, 'replacement': 1.0, 'son': 1.0, 't': 3.0, 'the': 3.0, 'high': 2.0, 'my': 1.0, 'started': 1.0, 'destroyed': 1.0, 'had': 1.0, 'was': 1.0, 'to': 1.0, 'tried': 1.0, 'i': 2.0, 'have': 1.0}
Word element => {'table': 1.0, 'prefect': 1.0, 'fits': 1.0, 'move': 1.0, 'to': 1.0, 'is': 2.0, 'on': 3.0, 'pad': 1.0, 'loves': 1.0, 'have': 1.0, 'laying': 1.0, 'this': 1.0, 'it': 2.0, 'changing': 2.0, 'daughter': 1.0, 'in': 1.0, 'nice': 1.0, 'and': 2.0, 'my': 2.0, 'for': 1.0, 'yet': 1.0, 'i': 1.0, 'not': 1.0, 'buckled': 1.0, 'her': 1.0, 'light': 1.0, 'but': 1.0, 'a': 1.0}
Word element => {'again': 1.0, 'clean': 1.0, 'be': 1.0, 'that': 1.0, 'dry': 1.0, 'learned': 1.0, 'meant': 1.0, 'grandson': 1.0, 'item': 1.0, 'my': 1.0, 'baby': 1.0, 'off': 1.0, 'changing': 1.0, 'he': 2.0, 'this': 1.0, 'it': 1.0, 'for': 1.0, 'diaper': 1.0, 'excellent': 1.0, 'put': 1.0, 'his': 1.0, 'was': 2.0, 'would': 1.0, 'on': 1.0, 'when': 1.0, 'coming': 1.0, 'and': 2.0}
Word element => {'made': 1.0, 'though': 1.0, 'to': 1.0, 'comfortable': 1.0, 'mine': 1.0, 'cutting': 1.0, 'on': 1.0, 'i': 1.0, 'fat': 1.0, 'very': 1.0, 'changing': 2.0, 'unfortunately': 1.0, 'my': 1.0, 'inch': 1.0, 'pad': 1.0, 'it': 1.0, 'this': 1.0, 'fit': 2.0, 'foam': 1.0, 'long': 1.0, 'does': 1.0, 'an': 1.0, 'but': 1.0, 'memory': 1.0, 'well': 1.0, 'plan': 1.0, 'a': 1.0, 'inches': 1.0, 'is': 2.0, 'great': 1.0, '2': 1.0, 'not': 1.0, 'ikea': 1.0, 'brand': 1.0, 'table': 1.0, 'and': 3.0, 'about': 1.0, 'too': 2.0}
Word element => {'place': 1.0, 'in': 1.0, 'baby': 1.0, 'keep': 1.0, 'sides': 1.0, 'the': 2.0, 'bureau': 1.0, 'basic': 1.0, 'on': 1.0, 'is': 2.0, 'a': 2.0, 'your': 1.0, 'this': 1.0, 'pad': 1.0, 'perfectly': 1.0, 'changing': 1.0, 'it': 2.0, 'great': 1.0, 'size': 1.0, 'curved': 1.0, 'fits': 1.0}
Word element => {'set': 1.0, 'does': 1.0, 'for': 1.0, 'double': 1.0, 'reviews': 1.0, 'see': 1.0, 'waterproof': 1.0, 'throw': 1.0, 'dresser': 1.0, 'an': 1.0, 'ikea': 1.0, 'is': 1.0, 'in': 1.0, 'big': 1.0, 'feel': 1.0, 'have': 1.0, 'not': 1.0, 'months': 1.0, 'keep': 1.0, 'which': 1.0, 'hand': 1.0, 'always': 1.0, 'over': 1.0, 'up': 1.0, 'of': 1.0, 'roll': 1.0, 'new': 1.0, 'less': 1.0, 'you': 1.0, 'easily': 1.0, 'when': 1.0, 'although': 1.0, 's': 1.0, 'we': 1.0, 'could': 1.0, 'a': 4.0, 'well': 2.0, 'case': 1.0, 'that': 2.0, 'changing': 1.0, 'herself': 1.0, 'what': 1.0, 'had': 1.0, 'was': 1.0, 'as': 1.0, 'our': 2.0, 'to': 1.0, 'daily': 1.0, 'use': 1.0, 'so': 1.0, 'underneath': 1.0, 'cushy': 1.0, 're': 1.0, 'cover': 1.0, 'enough': 1.0, 'pad': 2.0, 'off': 1.0, 'baby': 2.0, 'her': 2.0, 'dot': 1.0, 'even': 1.0, 'down': 1.0, 'looks': 1.0, 'she': 1.0, 'liked': 1.0, 'supertiny': 1.0, 'after': 1.0, 'holding': 1.0, 'several': 1.0, 'brand': 1.0, 'mattress': 1.0, 'duty': 1.0, 'this': 2.0, 'plop': 1.0, 'on': 1.0, 'your': 1.0, 'too': 1.0, 'and': 2.0}
Word element => {'great': 1.0, 'are': 1.0, 'straps': 1.0, 'safety': 1.0, 'there': 1.0, 'to': 1.0, 'my': 1.0, 'baby': 2.0, 'about': 1.0, 'for': 2.0, 'bed': 1.0, 'one': 1.0, 'seems': 1.0, 'item': 1.0, 'so': 1.0, 'else': 1.0, 'getting': 1.0, 'and': 2.0, 'do': 1.0, 'much': 2.0, 'feature': 1.0, 'thinking': 1.0, 'an': 1.0, 'ready': 1.0, 'pleae': 1.0, 'is': 1.0, 'definetelly': 1.0, 'change': 1.0, 'being': 1.0, 'if': 1.0, 'better': 1.0, 'or': 2.0, 'you': 2.0, 'not': 1.0, 's': 1.0, 'a': 4.0, 'since': 1.0, 'anywhere': 1.0, 'battlezone': 1.0, 'it': 1.0, 'this': 1.0, 'like': 1.0, 'table': 1.0, 'next': 1.0, 'changing': 3.0, 'that': 1.0, 'essential': 1.0, 'him': 1.0, 'your': 2.0, 'on': 1.0, 'the': 4.0, 'll': 1.0, 'have': 1.0, 'just': 1.0, 'few': 1.0, 'accidents': 1.0, 're': 1.0, 'cover': 1.0}
Word element => {'baby': 1.0, 'soft': 1.0, 'nice': 1.0, 'this': 1.0, 'pad': 1.0, 'on': 1.0, 'is': 2.0, 'the': 1.0, 'great': 1.0, 'changing': 2.0, 'it': 1.0, 'perfect': 1.0, 'fits': 1.0, 'up': 1.0, 'washes': 1.0, 'and': 2.0, 'table': 1.0, 'nicely': 1.0, 'in': 1.0}
Word element => {'ve': 1.0, 'now': 1.0, 'of': 1.0, 'roll': 1.0, 'little': 1.0, '5': 1.0, 'he': 1.0, '6': 1.0, 'son': 1.0, 'my': 1.0, 'tries': 1.0, 'keeps': 1.0, 'general': 1.0, 'shape': 1.0, 'clean': 1.0, 'horrendous': 1.0, 'wanted': 1.0, 'if': 1.0, 'flat': 1.0, 'you': 2.0, 'guess': 1.0, 'were': 1.0, 'sides': 1.0, 'place': 1.0, 'the': 2.0, 'make': 1.0, 'on': 3.0, 'said': 1.0, 'in': 3.0, 'even': 1.0, 'previous': 1.0, 'trapped': 1.0, 'get': 1.0, 'cranies': 1.0, 'replace': 1.0, 'wiggly': 1.0, 'also': 1.0, 'after': 1.0, 'so': 2.0, 'was': 2.0, 'had': 1.0, 'and': 5.0, 'me': 2.0, 'piece': 1.0, 'with': 1.0, 'it': 6.0, 'this': 2.0, 'like': 1.0, 'hand': 1.0, 'better': 1.0, 'pad': 4.0, 'use': 1.0, 'things': 1.0, 'nooks': 1.0, 'but': 1.0, 'contoured': 2.0, 'down': 1.0, 'velcroed': 1.0, 'start': 1.0, 'more': 1.0, 'is': 2.0, 'considerably': 1.0, 'i': 4.0, 'wash': 1.0, 'don': 1.0, 'liner': 1.0, 'because': 2.0, 'few': 1.0, 'just': 1.0, 'changing': 1.0, 'that': 3.0, 'hardly': 1.0, 'could': 1.0, 't': 1.0, 'we': 2.0, 'a': 4.0, 's': 1.0, 'decided': 1.0, 'months': 2.0, 'one': 3.0, 'for': 2.0, 'our': 1.0, 'to': 6.0, 'all': 1.0, 'course': 1.0, 'there': 1.0, 'are': 1.0, 'thing': 1.0, 'no': 1.0}
Word element => {'conca': 1.0, 'should': 1.0, 'order': 1.0, 'its': 1.0, 'out': 1.0, 'carried': 1.0, 'but': 1.0, 'thank': 1.0, 'glad': 1.0, 'very': 1.0, 'way': 1.0, 'parents': 1.0, 'did': 1.0, 'sent': 1.0, 'know': 3.0, 'kids': 2.0, 'just': 1.0, 'by': 1.0, 'in': 1.0, 'having': 1.0, 'friends': 2.0, 'joan': 1.0, 'be': 1.0, 'to': 5.0, 'was': 3.0, 'thought': 1.0, 'had': 3.0, 'and': 3.0, 'the': 9.0, 'a': 4.0, 'pad': 3.0, 'amazon': 2.0, 'wonderful': 1.0, 'were': 2.0, 'that': 1.0, 'changing': 3.0, 'from': 2.0, 'it': 5.0, 'with': 2.0, 'ny': 1.0, 'no': 1.0, 'let': 1.0, 'brooklyn': 1.0, 'who': 3.0, 'shipped': 3.0, 'ask': 2.0, 'gift': 3.0, 'i': 3.0, 'is': 1.0, 'asked': 2.0, 'love': 1.0, 'product': 1.0, 'for': 2.0, 'card': 2.0, 'me': 1.0, 'not': 2.0, 'you': 1.0, 'when': 1.0, 'idea': 1.0, 'came': 1.0, 'finally': 1.0, 'my': 1.0, 'if': 1.0, 'recipients': 1.0, 'they': 3.0, 'received': 1.0, 'baby': 2.0, 'them': 1.0}
Word element => {'cover': 1.0, 'something': 1.0, 'for': 1.0, 'one': 1.0, 'kept': 2.0, 'the': 2.0, 'just': 1.0, 'not': 1.0, 'hand': 1.0, 'did': 1.0, 'new': 1.0, 'like': 1.0, 'reach': 1.0, 'and': 2.0, 'always': 2.0, 'up': 1.0, 'newborn': 1.0, 'old': 1.0, 'my': 1.0, 'daughter': 1.0, 'when': 2.0, 'from': 1.0, 'this': 2.0, 'use': 1.0, 'pad': 3.0, 'her': 1.0, 'used': 1.0, 'we': 5.0, 'strap': 1.0, 'she': 1.0, 'still': 1.0, 'held': 1.0, 'to': 1.0, 'had': 1.0, 'was': 1.0, 'now': 1.0, '10': 1.0, 'on': 2.0, 'months': 1.0, 'a': 1.0, 'well': 1.0, 'has': 1.0, 'is': 1.0, 'looks': 1.0}
Word element => {'were': 1.0, 'at': 1.0, 'blame': 1.0, 't': 1.0, 'don': 1.0, 'again': 1.0, 'but': 1.0, 'disappointed': 1.0, 'very': 1.0, 'm': 1.0, 'in': 1.0, 'age': 4.0, 'cancelled': 1.0, 'shipped': 1.0, 'they': 2.0, 'it': 1.0, 'with': 2.0, 'ordered': 1.0, 'still': 1.0, 'all': 2.0, 'to': 2.0, 'entered': 1.0, 'response': 1.0, 'be': 1.0, 'just': 1.0, 'manufacturer': 1.0, 'on': 1.0, 'have': 1.0, 'contacted': 1.0, '5': 1.0, 'this': 1.0, '30': 1.0, 'and': 2.0, 'issue': 1.0, 'not': 1.0, 'me': 2.0, 'i': 4.0, 'two': 1.0, 'customer': 1.0, 'no': 1.0, 'weeks': 1.0, 'baby': 4.0, 'them': 1.0, 'wonderful': 1.0, 'twice': 1.0, 'service': 1.0, 'fairness': 1.0, 'the': 4.0, 'great': 1.0, 'seemed': 1.0, 'basic': 2.0, 'has': 1.0, 'comfort': 2.0, 're': 1.0, 'order': 2.0, 'product': 1.0, 'for': 2.0, 'later': 1.0, 'from': 1.0}
Word element => {'lysol': 1.0, 'once': 1.0, 'then': 1.0, 'without': 1.0, 'the': 2.0, 'keep': 2.0, 'who': 1.0, 'easier': 1.0, 'nursery': 1.0, 'so': 2.0, 'them': 1.0, 'wipe': 1.0, 'started': 1.0, 'clean': 2.0, 'wipes': 1.0, 'covers': 1.0, 'it': 5.0, 'baby': 2.0, 'she': 1.0, 'never': 1.0, 'before': 1.0, '2': 2.0, 'born': 1.0, '3': 1.0, 'long': 1.0, 'on': 1.0, 'as': 3.0, 'any': 1.0, 'our': 1.0, 'was': 3.0, 'daughter': 1.0, 'value': 1.0, 'years': 2.0, 'product': 1.0, 'for': 5.0, 'bought': 2.0, 'one': 2.0, 'months': 1.0, 'times': 1.0, 'well': 2.0, 'i': 4.0, 'everyday': 1.0, 'my': 2.0, 'cushy': 1.0, 'ago': 1.0, 'a': 6.0, 'spray': 1.0, 'used': 2.0, 'with': 3.0, 'this': 2.0, 'several': 1.0, 'down': 1.0, 'sanitize': 1.0, 'until': 1.0, 'great': 2.0, 'needed': 1.0, 'week': 1.0, 'germs': 1.0, 'after': 1.0, 'had': 1.0, 'contained': 1.0, 'purchased': 1.0, '5': 2.0, 'cracking': 1.0, 'nice': 1.0, 'little': 1.0, 's': 1.0, 'sides': 2.0, 'time': 1.0, 'new': 2.0, 'girl': 1.0, '6': 1.0, 'old': 1.0, 'now': 1.0, 'is': 3.0, 'to': 4.0, 'high': 1.0, 'enough': 1.0, 'kill': 1.0, 'day': 1.0, 'somewhat': 1.0, 'also': 1.0, 'just': 1.0, 'her': 2.0, 'use': 1.0, 'in': 1.0, 'church': 1.0, 'must': 1.0, 'have': 1.0, 'and': 5.0, 'anyone': 1.0, 'much': 1.0, 'changing': 1.0, 'working': 1.0, 'first': 1.0, 'diapers': 1.0, 'easy': 1.0, 'because': 1.0, 'lasts': 1.0}
Word element => {'is': 1.0, 'perfectly': 1.0, 'and': 1.0, 'feels': 1.0, 'about': 1.0, 'our': 1.0, 'll': 1.0, 'bought': 2.0, 'i': 1.0, 'very': 1.0, 'as': 2.0, 'but': 1.0, 'put': 1.0, 'naps': 1.0, 'month': 1.0, 'co': 1.0, 'comfortable': 1.0, 'bed': 2.0, 'for': 3.0, 'it': 1.0, 'outgrow': 1.0, 'he': 1.0, 'this': 2.0, 'use': 1.0, 'far': 1.0, 'safe': 2.0, 'sleep': 1.0, 'in': 2.0, 've': 1.0, 'we': 2.0, 'so': 1.0, '2': 1.0, 'great': 1.0, 'him': 2.0, 'place': 1.0, 'to': 2.0, 'mini': 1.0, 'well': 2.0, 'a': 2.0, 'little': 1.0, 'sleeper': 1.0}
Word element => {'anyone': 1.0, 'recommend': 1.0, 'shower': 1.0, 'baby': 1.0, 'a': 1.0, 'for': 1.0, 'gift': 1.0, 'bought': 1.0, 'i': 2.0, 'glad': 1.0, 'this': 2.0, 'fits': 1.0, 'perfect': 2.0, 'it': 1.0, 'love': 1.0, 'cleans': 1.0, 'thickness': 1.0, 'to': 1.0, 'right': 1.0, 'up': 1.0, 'nicely': 1.0, 'would': 1.0, 'priced': 1.0}
Word element => {'again': 1.0, 'from': 1.0, 'order': 1.0, 'a': 1.0, 'request': 1.0, 'call': 1.0, 'another': 1.0, 'baby': 1.0, 'advance': 1.0, 'my': 1.0, 'the': 1.0, 'one': 1.0, 'for': 1.0, 'company': 1.0, 'in': 2.0, 'bother': 1.0, 'place': 1.0, 'had': 1.0, 'to': 3.0, 'product': 2.0, 'ordered': 2.0, 'i': 3.0, 'they': 1.0, 'never': 2.0, 'sent': 1.0, 'even': 2.0, 'refund': 1.0, 'and': 2.0, 'me': 2.0, 'have': 1.0, 'all': 1.0, 'no': 1.0, 'at': 1.0, 'shower': 1.0, 'this': 1.0, 'it': 1.0, 'three': 1.0, 'weeks': 1.0}
Word element => {'clean': 1.0, 'easy': 1.0, 'taut': 1.0, 'surface': 1.0, 'like': 1.0, 'also': 1.0, 'i': 1.0, 'happening': 1.0, 'thing': 1.0, 'a': 1.0, 'one': 2.0, 'again': 1.0, 'are': 1.0, 'such': 1.0, 'the': 4.0, 'replace': 1.0, 'to': 3.0, 'destroyed': 1.0, 'this': 2.0, 'edge': 1.0, 'that': 2.0, 'our': 1.0, 'bought': 1.0, 'infant': 1.0, 'we': 1.0, 'prevent': 1.0, 'kicking': 1.0, 'by': 1.0, 'relentlessly': 1.0, 'sides': 1.0, 'from': 1.0, 'son': 1.0, 'open': 1.0, 'has': 1.0, 'is': 1.0, 'curved': 1.0, 'and': 2.0, 'ends': 1.0}
Word element => {'less': 1.0, 'and': 1.0, 'but': 1.0, 'thinner': 1.0, 'though': 1.0, 'brand': 1.0, 'remember': 1.0, 'of': 1.0, 'kick': 1.0, 'pad': 2.0, 'than': 1.0, 'plastic': 2.0, 'brands': 1.0, 'to': 1.0, 'had': 1.0, 'for': 1.0, 'seem': 1.0, 'cover': 3.0, 'brittle': 1.0, 'more': 1.0, 'the': 7.0, 'my': 1.0, 'second': 1.0, 'is': 3.0, 'son': 1.0, 'changing': 1.0, 'other': 1.0, 'we': 1.0, 'cannot': 1.0, 'in': 1.0, 'hole': 1.0, 've': 1.0, '6mo': 1.0, 'first': 1.0, 'this': 1.0, 'durable': 1.0, 'he': 1.0, 'thicker': 1.0, 'a': 1.0, 'managed': 1.0}
Word element => {'between': 1.0, 'padding': 1.0, 'rug': 1.0, 'down': 1.0, 'tie': 1.0, 'some': 1.0, 'either': 1.0, 'cushion': 1.0, 'secure': 1.0, 'sure': 1.0, 'make': 1.0, 'stage': 1.0, 'pads': 1.0, 'clingy': 1.0, 'to': 3.0, 'nursing': 1.0, 'nonetheless': 1.0, 'though': 1.0, 'cleaning': 2.0, 'covered': 2.0, 'surface': 1.0, 'keep': 2.0, 'since': 1.0, 'enough': 1.0, 'curved': 1.0, 'plastic': 1.0, 'stuff': 1.0, 'just': 2.0, 'shape': 1.0, 'chld': 1.0, 'and': 3.0, 'rollicking': 1.0, 'on': 4.0, 'think': 1.0, 'your': 3.0, 'the': 6.0, 'of': 2.0, 'for': 6.0, 'easy': 1.0, 'like': 1.0, 'using': 1.0, 'blanket': 1.0, 'changing': 1.0, 'way': 1.0, 'baby': 2.0, 'another': 1.0, 'my': 1.0, 'has': 1.0, 'right': 1.0, 'table': 2.0, 'easier': 1.0, 'trunk': 1.0, 'create': 1.0, 'a': 5.0, 'we': 1.0, 's': 1.0, 'bedding': 1.0, 't': 2.0, 'but': 1.0, 'board': 1.0, 'was': 1.0, 'with': 2.0, 'rubbery': 1.0, 'recommend': 1.0, 'piece': 2.0, 'jimmied': 1.0, 'sister': 1.0, 'it': 7.0, 'this': 1.0, 'used': 1.0, 'figure': 1.0, 'at': 2.0, 'is': 3.0, 'smart': 1.0, 'little': 2.0, 'nice': 1.0, 'furniture': 3.0, 'buy': 1.0, 'about': 1.0, 'kitchen': 1.0, 'visits': 1.0, 'counter': 1.0, 'need': 1.0, 'or': 2.0, 'seat': 1.0, 'in': 2.0, 'when': 1.0, 'you': 2.0, 'road': 1.0, 'unless': 1.0, 'visit': 1.0, 'friends': 1.0, 'so': 1.0, 'can': 1.0, 'also': 1.0, 'be': 1.0, 'alternative': 1.0, 'stuck': 1.0, 'perfect': 1.0, 'staying': 1.0, 'their': 1.0, 'car': 1.0, 'not': 1.0, 'side': 1.0, 'good': 1.0, 'seated': 1.0, 'rolling': 1.0, 'one': 3.0, 'ones': 1.0, 'i': 1.0, 'isn': 1.0, 'don': 1.0, 'over': 1.0, 'buckle': 1.0}
Word element => {'through': 1.0, 'make': 1.0, 'better': 1.0, 'made': 1.0, 'prefer': 1.0, 'would': 2.0, 'turned': 1.0, 'son': 2.0, 'my': 2.0, 'infancy': 1.0, 'before': 1.0, 'didn': 1.0, 'but': 2.0, 'surprised': 1.0, 'had': 2.0, 'was': 3.0, 'to': 1.0, 'as': 3.0, 'ripped': 1.0, 'very': 1.0, 'same': 1.0, 'problems': 1.0, 'noticed': 1.0, 'realized': 1.0, 'people': 1.0, 'many': 2.0, 'is': 2.0, 'reading': 1.0, 'of': 3.0, 'i': 7.0, 'the': 9.0, 's': 1.0, 'a': 1.0, 't': 1.0, '1': 1.0, 'great': 1.0, 'easily': 2.0, 'other': 1.0, 'this': 1.0, 'it': 3.0, 'product': 2.0, 'favorable': 1.0, 'material': 1.0, 'that': 3.0, 'reviews': 1.0, 'them': 1.0, 'clean': 1.0, 'rips': 1.0, 'troublesome': 1.0, 'did': 1.0, 'at': 1.0, 'main': 1.0, 'problem': 1.0, 'comfort': 1.0, 'pad': 2.0, 'however': 1.0, 'stain': 2.0, 'find': 1.0, 'does': 1.0, 'quite': 1.0, 'easy': 1.0, 'remains': 1.0}
Word element => {'us': 1.0, 'all': 1.0, 'special': 1.0, 'with': 1.0, 'own': 1.0, 'things': 1.0, 'his': 1.0, 'this': 1.0, 'was': 1.0, 'great': 2.0, 'tree': 1.0, 'fun': 2.0, '3': 1.0, 'get': 1.0, 'decorate': 1.0, 'year': 1.0, 'for': 2.0, 'of': 1.0, 'he': 1.0, 'old': 1.0, 'to': 1.0}
Word element => {'additional': 1.0, 'correct': 1.0, 'right': 1.0, 'to': 1.0, 'make': 1.0, 'enough': 1.0, 'they': 2.0, 'seller': 1.0, 'is': 1.0, 'actual': 1.0, 'pads': 3.0, 'after': 1.0, 'however': 1.0, 'ie': 1.0, '4': 4.0, 'picture': 2.0, '8': 1.0, 'nursing': 2.0, 'clearly': 1.0, 'me': 1.0, 'get': 1.0, 'and': 2.0, 'actually': 1.0, 'contacting': 1.0, 'not': 1.0, 'sent': 1.0, 'gracious': 1.0, 's': 1.0, 'you': 1.0, 'misunderstanding': 1.0, 'were': 1.0, 'that': 1.0, 'be': 1.0, 'pairs': 4.0, 'aware': 1.0, '2': 2.0, 'the': 4.0, 'shows': 1.0, 'an': 1.0, 'but': 1.0, 'misleading': 1.0, 'only': 2.0, 'it': 2.0}
Word element => {'floor': 1.0, 'head': 1.0, 'her': 1.0, 'falls': 1.0, 'little': 1.0, 'and': 2.0, 'no': 1.0, 'there': 1.0, 'on': 1.0, 'over': 1.0, 's': 1.0, 'wall': 1.0, 'backwards': 1.0, 'chair': 1.0, 'grins': 1.0, 'hits': 1.0, 'but': 1.0, 'old': 1.0, 'to': 2.0, 'daughter': 1.0, 'year': 1.0, 'turn': 1.0, 'tips': 1.0, 'one': 2.0, 'my': 2.0, 'the': 3.0, 'counterweight': 1.0, 'tears': 1.0, 'pretty': 1.0, 'baby': 1.0, 'dresser': 1.0, 'toy': 1.0, 'whenever': 1.0, 'she': 1.0, 'bumps': 1.0, 'loves': 1.0, 'into': 1.0, 'anything': 1.0, 'this': 1.0, 'with': 1.0, 'fast': 1.0, 'walker': 2.0}
Word element => {'greatest': 1.0, 'i': 1.0, 'front': 1.0, 'sits': 1.0, 'also': 2.0, 'around': 2.0, 'him': 2.0, 'keep': 1.0, 'can': 1.0, 'so': 1.0, 'in': 1.0, 'pushes': 1.0, 'toys': 1.0, 'sometimes': 1.0, 'sorter': 1.0, 'uses': 1.0, 'now': 1.0, 'thing': 1.0, 'pushing': 1.0, 'zooms': 2.0, 'over': 3.0, 'push': 2.0, 'once': 1.0, 'house': 2.0, 'balance': 1.0, 'it': 4.0, 'taken': 1.0, 'used': 1.0, 'though': 1.0, 'bin': 1.0, 'running': 1.0, 'shape': 2.0, 'couldn': 1.0, 'his': 1.0, 'puts': 1.0, 'edges': 1.0, 'with': 2.0, 'son': 1.0, 'best': 1.0, 'recently': 1.0, 'open': 1.0, 'and': 5.0, 'play': 1.0, 'toy': 1.0, 'has': 2.0, 'ever': 2.0, 'loves': 1.0, 'been': 1.0, 'place': 2.0, 'the': 11.0, 'walks': 1.0, 'go': 1.0, 'could': 1.0, 'we': 3.0, 't': 1.0, 'gift': 2.0, 'while': 3.0, 'part': 1.0, 'crawling': 1.0, 'was': 1.0, 'outside': 1.0, 'all': 3.0, 'to': 1.0, 'would': 4.0, 've': 1.0, 'sorting': 1.0, 'when': 2.0, 'for': 2.0, 'actually': 1.0, 'sort': 1.0, 'my': 1.0, 'lid': 1.0, 'teeth': 1.0, 'which': 1.0, 'just': 1.0, 'them': 1.0, 'started': 2.0, 'flip': 1.0, 'this': 3.0, 'soft': 1.0, 'shut': 1.0, 'other': 1.0, 'anything': 1.0, 'btw': 1.0, 'on': 2.0, 'shapes': 1.0, 'have': 2.0, 'rounded': 1.0, 'received': 1.0, 'he': 15.0, 'walk': 2.0, 'learning': 1.0}
Word element => {'compactly': 1.0, 'very': 1.0, 'fold': 1.0, 'closet': 1.0, 'in': 1.0, 'daughter': 1.0, 'interesting': 1.0, 'incredibly': 1.0, 'toys': 1.0, 'one': 1.0, 'only': 1.0, 'helps': 1.0, 'there': 1.0, 'take': 1.0, 'setting': 1.0, 'some': 1.0, '79': 1.0, 'buy': 1.0, 'buying': 1.0, 'useful': 1.0, 'are': 1.0, 'folded': 1.0, 'you': 2.0, 'unless': 1.0, 'vibration': 1.0, 'which': 1.0, 'doesn': 1.0, 'own': 1.0, 'rock': 1.0, 'not': 1.0, 'hope': 1.0, 'by': 2.0, 'nestle': 1.0, 'outstanding': 1.0, 'comfortable': 1.0, 'big': 1.0, 'time': 1.0, 'so': 2.0, 'more': 1.0, 'is': 6.0, 'be': 2.0, 'thought': 1.0, 'purchased': 1.0, 'born': 1.0, 'must': 1.0, 'have': 1.0, 'this': 3.0, 'does': 1.0, 'maybe': 1.0, 'maclaren': 1.0, 'become': 1.0, 'i': 3.0, 'thinking': 1.0, 'two': 1.0, 'the': 7.0, 'may': 1.0, 'my': 3.0, 'it': 10.0, 'she': 1.0, 'would': 1.0, 'disapointed': 1.0, 'new': 1.0, 'been': 1.0, 'that': 6.0, 'quality': 1.0, 'sitting': 1.0, 'aren': 1.0, 'can': 1.0, 'advertised': 1.0, 'but': 2.0, 't': 2.0, 'a': 2.0, 's': 2.0, 'rocker': 3.0, 'lack': 1.0, 'shower': 1.0, 'of': 1.0, 'for': 3.0, 'effect': 1.0, 'grows': 1.0, 'on': 2.0, 'up': 2.0, 'child': 1.0, 'fine': 2.0, 'right': 2.0, 'older': 1.0, 'hates': 1.0, 'now': 2.0, 'seat': 2.0, 'as': 4.0, 'to': 2.0, 'her': 3.0, 'and': 3.0, 'has': 1.0, 'comfort': 1.0, 'will': 1.0, 'also': 1.0}
Word element => {'highly': 1.0, 'would': 1.0, 'gifts': 1.0, 'best': 1.0, 'one': 1.0, 'it': 1.0, 'down': 1.0, 'me': 1.0, 'hand': 1.0, 'got': 2.0, 'i': 2.0, 'your': 1.0, 'on': 1.0, 'eye': 1.0, 'up': 1.0, 'of': 2.0, 'sit': 1.0, 'have': 1.0, 'great': 2.0, 'such': 1.0, 'recommend': 1.0, 'doesn': 1.0, 'control': 1.0, 'an': 1.0, 'baby': 2.0, 'chair': 4.0, 'look': 1.0, 'as': 1.0, 'our': 1.0, 'to': 2.0, 'actually': 1.0, 'for': 3.0, 'downstairs': 1.0, 'he': 3.0, 'this': 3.0, 'with': 1.0, 'that': 1.0, 'loves': 1.0, 'being': 1.0, 'while': 1.0, 'spending': 1.0, 'but': 2.0, 'can': 1.0, 'so': 2.0, 'time': 2.0, 'in': 2.0, 'also': 1.0, 'around': 1.0, 'is': 1.0, 'him': 2.0, 'spends': 1.0, 'napping': 1.0, 'the': 4.0, 'hanging': 1.0, 'during': 1.0, 's': 1.0, 't': 1.0, 'a': 3.0, 'we': 2.0, 'day': 1.0, 'out': 1.0, 'able': 1.0, 'us': 1.0, 'lot': 1.0, 'keep': 1.0}
Word element => {'living': 1.0, 'mind': 1.0, 'not': 1.0, 'will': 1.0, 'item': 1.0, 'protection': 1.0, 'sun': 1.0, 'hrs': 1.0, 'canopy': 1.0, 'napped': 1.0, 'weeks': 1.0, '12': 1.0, 'beach': 1.0, 'at': 1.0, 'old': 2.0, 'one': 1.0, 'classy': 1.0, 'months': 1.0, 'room': 1.0, '5': 1.0, 'came': 1.0, 'he': 4.0, 'looking': 1.0, 'day': 1.0, 'from': 2.0, 'son': 1.0, 'we': 2.0, 'or': 1.0, 'used': 1.0, 'upright': 1.0, 'set': 1.0, 'child': 1.0, 'home': 1.0, 'made': 1.0, 'first': 1.0, 'straight': 1.0, 'loud': 1.0, 'it': 3.0, 'turned': 1.0, 'your': 1.0, '3': 1.0, 'put': 1.0, 'on': 1.0, 'just': 1.0, 'by': 1.0, 'off': 1.0, 'both': 1.0, 'for': 1.0, 'love': 1.0, 'rocker': 3.0, 'seat': 2.0, 'all': 1.0, 'i': 3.0, 'seats': 1.0, 'very': 3.0, 'and': 4.0, 'the': 8.0, 'control': 1.0, 'my': 3.0, 'of': 1.0, 'hospital': 1.0, 'there': 1.0, 'vibrate': 2.0, 'this': 4.0, 'recline': 2.0, 'about': 1.0, 'positions': 1.0, 'no': 1.0, 'that': 2.0, 'typical': 1.0, 'provides': 1.0, 'awesome': 2.0, 'when': 2.0, 'you': 3.0, 'having': 1.0, 'maclaren': 1.0, 'find': 1.0, 'itself': 1.0, 'in': 4.0, 'strollers': 1.0, 'baby': 2.0, 'was': 4.0, 'expecting': 1.0, 'store': 1.0, 'usual': 1.0, 'they': 1.0, 'until': 1.0, 'seemed': 1.0, 'so': 1.0, 'cheaply': 1.0, 'is': 3.0, 'are': 1.0}
Word element => {'handy': 1.0, 'sling': 1.0, 'sit': 1.0, 'likes': 1.0, 'is': 2.0, 'that': 1.0, 'older': 1.0, 'now': 1.0, 'car': 1.0, 'his': 1.0, 'time': 1.0, 'it': 2.0, 'this': 1.0, 'with': 1.0, 'would': 2.0, 'unlike': 1.0, 'lay': 1.0, 'very': 2.0, 'son': 1.0, 'best': 1.0, 'while': 1.0, 'far': 1.0, 'who': 1.0, 'just': 1.0, 'by': 1.0, 'when': 1.0, 'i': 3.0, 'able': 1.0, 'whole': 1.0, 'thing': 1.0, 'purchased': 1.0, 'in': 3.0, 'he': 4.0, 'grocery': 1.0, 'for': 1.0, 'small': 1.0, 'eat': 1.0, 'the': 4.0, 'my': 1.0, 'did': 1.0, 'house': 1.0, 'work': 1.0, 'put': 1.0, 'which': 1.0, 'important': 1.0, 'baby': 1.0, 'not': 1.0, 'him': 1.0, 'be': 1.0, 'down': 1.0, 'could': 1.0, 'go': 1.0, 'a': 1.0, 'we': 1.0, 'was': 4.0, 'store': 1.0, 'or': 1.0, 'as': 1.0, 'seat': 1.0, 'to': 4.0, 'sleep': 1.0, 'out': 1.0, 'and': 2.0}
Word element => {'highly': 1.0, 'able': 1.0, 'bit': 1.0, 'practice': 1.0, 'takes': 1.0, 'out': 1.0, 'slip': 1.0, 'bed': 1.0, 'lie': 1.0, 're': 1.0, 'you': 2.0, 'wearing': 1.0, 'while': 1.0, 'but': 1.0, 'can': 1.0, 'shoulder': 1.0, 'or': 1.0, 'on': 1.0, 'your': 2.0, 'over': 1.0, 'natural': 1.0, 'sling': 3.0, 'one': 1.0, 'to': 1.0, 'recommend': 1.0, 'was': 1.0, 'down': 1.0, 'favorite': 1.0, 'far': 1.0, 'by': 1.0, 'waking': 1.0, 'daughter': 1.0, 'this': 2.0, 'do': 1.0, 'yourself': 1.0, 'only': 1.0, 'carrier': 1.0, 'is': 3.0, 'it': 5.0, 'felt': 1.0, 'into': 1.0, 'that': 1.0, 'my': 2.0, 'and': 4.0, 'super': 1.0, 'would': 1.0, 'easy': 1.0, 'lot': 1.0, 'use': 1.0, 'fit': 1.0, 'falls': 1.0, 'asleep': 1.0, 'the': 5.0, 'without': 2.0, 'a': 2.0, 'of': 3.0, 'prep': 1.0, 'finagling': 1.0, 'little': 1.0, 'very': 2.0, 'unlike': 1.0, 'other': 1.0, 'her': 2.0, 'carriers': 1.0, 'i': 2.0, 'tried': 1.0, 'also': 1.0, 'if': 1.0, 'intuitive': 1.0, 'baby': 2.0}
Word element => {'anyone': 1.0, 'would': 1.0, 'really': 1.0, 'than': 1.0, 'however': 1.0, 'tint': 1.0, 'expected': 1.0, 'time': 1.0, 'same': 1.0, 'her': 1.0, 'get': 1.0, 'brown': 1.0, 'in': 2.0, 'sit': 1.0, 'that': 2.0, 'loves': 1.0, 'not': 1.0, 'minor': 1.0, 'me': 2.0, 'through': 1.0, 'nice': 1.0, 'padded': 1.0, 'it': 6.0, 'pictures': 1.0, 'allows': 2.0, 'this': 2.0, 'with': 2.0, 'part': 1.0, 'compared': 1.0, 'done': 1.0, 'need': 1.0, 'how': 1.0, 'at': 3.0, 'no': 1.0, 'what': 1.0, 'had': 1.0, 'pull': 1.0, 'daughter': 2.0, 'and': 5.0, 'ring': 2.0, 'sling': 5.0, 'another': 1.0, 'my': 6.0, 'reviewer': 1.0, 'more': 1.0, 'is': 4.0, 'padding': 1.0, 'overall': 1.0, 'amazed': 1.0, 'son': 1.0, 'color': 1.0, 'one': 3.0, 'decided': 1.0, 'purple': 1.0, 'i': 9.0, 'old': 1.0, 'recommend': 1.0, 'was': 1.0, 'doesn': 1.0, 'back': 1.0, 'a': 3.0, 't': 1.0, 'tightening': 1.0, 'the': 10.0, 'hurt': 1.0, 'shoulder': 1.0, 'or': 1.0, 'to': 8.0, 'as': 4.0, 'all': 1.0, 'have': 2.0, 'hold': 1.0, 'like': 2.0, 'gripe': 1.0, 'of': 1.0, 'appears': 1.0, 'pouch': 1.0, 'unlike': 1.0, 'anything': 1.0, 'other': 1.0, 'things': 1.0, 'tighten': 1.0, 'problem': 1.0, 'its': 1.0, 'only': 1.0, 'try': 1.0, 'do': 1.0, 'much': 2.0, 'light': 2.0, 'just': 1.0}
Word element => {'of': 1.0, 'good': 1.0, 'type': 1.0, 'very': 1.0, 'is': 1.0, 'for': 1.0, 'which': 1.0, 'hard': 1.0, 'not': 1.0, 'was': 1.0, 'from': 1.0, 'made': 1.0, 'regulate': 1.0, 'many': 1.0, 'sling': 1.0, 'peaces': 1.0, 'we': 1.0, 'used': 1.0, 'to': 1.0, 'slings': 1.0, 'this': 1.0, 'before': 1.0}
Word element => {'be': 1.0, 'baby': 1.0, 'mom': 1.0, 'used': 1.0, 'getting': 1.0, 'some': 1.0, 'having': 1.0, 'does': 1.0, 'compliments': 1.0, 'many': 1.0, 'gotten': 1.0, 'if': 1.0, 'being': 1.0, 'padding': 1.0, 'require': 1.0, 'provides': 1.0, 're': 1.0, 'pad': 1.0, 'you': 1.0, 'times': 1.0, 'on': 1.0, 'washed': 1.0, 'loose': 1.0, 'out': 1.0, 'other': 1.0, 'this': 2.0, 'with': 2.0, 'glad': 1.0, 'got': 1.0, 'worried': 1.0, 'so': 3.0, 'names': 1.0, 'daughter': 1.0, 'have': 1.0, 'coming': 1.0, 'difficulties': 1.0, 'bulky': 1.0, 'several': 1.0, 'about': 1.0, 'no': 1.0, 'was': 2.0, 'now': 1.0, 'had': 1.0, 'we': 2.0, 'going': 1.0, 'a': 2.0, 'at': 2.0, 'since': 1.0, 'practice': 1.0, 'start': 1.0, 'without': 1.0, 'the': 2.0, 'little': 1.0, 'patient': 1.0, 'been': 1.0, 'shoulder': 1.0, 'but': 1.0, 'sling': 2.0, 'like': 1.0, 'using': 1.0, 'for': 1.0, 'cheap': 1.0, 'love': 2.0, 'to': 1.0, 'least': 1.0, 'it': 5.0, 'she': 1.0, 'my': 1.0, 'is': 1.0, '1': 1.0, 'too': 1.0, 'and': 4.0, 've': 3.0, 'months': 1.0, 'm': 1.0, '60': 1.0, 'both': 2.0, 'brand': 1.0, 'problems': 1.0, 'i': 6.0, '4': 1.0, 'seams': 1.0}
Word element => {'hurry': 1.0, 'a': 1.0, 'are': 1.0, 'you': 1.0, 'when': 1.0, 'and': 1.0, 'in': 1.0, 'choices': 1.0, 'into': 1.0, 'fabric': 1.0, 'with': 1.0, 'get': 1.0, 'sturdy': 1.0, 'construction': 1.0, 'especially': 1.0, 'easy': 2.0, 'adorable': 1.0, 'to': 2.0, 'adjust': 1.0, 'baby': 1.0}
Word element => {'had': 1.0, 'i': 1.0, 'wish': 1.0, 'him': 1.0, 'are': 1.0, 'edges': 1.0, 'padded': 1.0, 'in': 1.0, 'baby': 1.0, 'don': 1.0, 'a': 1.0, 'easier': 1.0, 'lot': 1.0, 'makes': 1.0, 'one': 1.0, 'for': 1.0, 'comfortable': 1.0, 'sling': 1.0, 'jr': 1.0, 'with': 1.0, 'it': 2.0, 'nice': 1.0, 'need': 1.0, 'very': 1.0, 't': 1.0, 'the': 4.0, 'secure': 1.0, 'stroller': 1.0, 'carrying': 1.0, 'just': 1.0, 'loved': 1.0, 'use': 1.0, 'bought': 1.0, 'material': 1.0, 'sooner': 1.0, 'is': 1.0, 'around': 1.0, 'feels': 1.0}
Word element => {'hip': 1.0, 'your': 1.0, 'toddlers': 1.0, 'carrying': 1.0, 'nice': 1.0, 's': 1.0, 'but': 1.0, 'little': 1.0, 'were': 1.0, 'too': 1.0, 'when': 1.0, 'used': 1.0, 'most': 1.0, 'use': 1.0, 'after': 1.0, 'for': 2.0, 'comfortable': 1.0, 'love': 1.0, 'sling': 1.0, 'compliments': 1.0, 'it': 5.0, 'this': 1.0, 'very': 1.0, 'importantly': 1.0, 'get': 1.0, 'and': 3.0, 'my': 2.0, 'the': 1.0, 'more': 1.0, 'bought': 1.0, 'babies': 1.0, 'fabric': 1.0, 'child': 1.0, 'always': 1.0, 'i': 4.0, 'beautiful': 1.0, 'second': 1.0, 'is': 2.0, 'on': 2.0, 'easy': 1.0, 'to': 1.0}
Word element => {'varieties': 1.0, 'like': 1.0, 'hot': 1.0, 'liked': 1.0, 'highly': 1.0, 'complaint': 1.0, 'from': 2.0, 'me': 1.0, 'back': 1.0, 'some': 1.0, 'lower': 1.0, 'have': 1.0, 'undue': 1.0, 'way': 1.0, 'used': 1.0, 'just': 1.0, 'section': 1.0, 'tabbed': 1.0, 'wrap': 1.0, 'kiddo': 1.0, 'the': 5.0, 'diaper': 1.0, 'carry': 1.0, 'no': 1.0, 'of': 2.0, 'useless': 1.0, 'it': 8.0, 'only': 1.0, 'with': 1.0, 'velcro': 1.0, 'love': 4.0, 'comfortable': 1.0, 'never': 2.0, 'mine': 1.0, 'saved': 1.0, 'i': 11.0, 'too': 1.0, 'and': 7.0, 'issue': 2.0, 'as': 1.0, 'in': 4.0, 'this': 2.0, 'wish': 1.0, 'a': 2.0, 't': 2.0, 'could': 2.0, 'strain': 1.0, 'out': 1.0, 'wasn': 2.0, 'went': 1.0, 'forget': 1.0, 'find': 1.0, 'anywhere': 1.0, 'bag': 1.0, 'use': 1.0, 'fold': 1.0, 'still': 1.0, 'gets': 1.0, 'when': 1.0, 'baby': 3.0, 'at': 1.0, 'bigger': 2.0, 'so': 2.0, 'regularly': 1.0, 'recommend': 1.0, 'was': 2.0, 'either': 1.0, 'had': 1.0, 'ready': 1.0, 'that': 4.0, 'unobtrusive': 1.0, 'would': 2.0, 'washed': 1.0, 'on': 1.0, 'course': 1.0, 'getting': 1.0, 'did': 1.0}
Word element => {'free': 1.0, 'd': 1.0, 'hassle': 1.0, 'be': 1.0, 'would': 1.0, 've': 1.0, 'untill': 1.0, 'in': 2.0, 'old': 1.0, 'i': 6.0, 'had': 1.0, 'to': 2.0, 'year': 1.0, 'my': 3.0, 'used': 1.0, 'where': 2.0, 'love': 1.0, 'for': 1.0, 'get': 1.0, 'me': 1.0, 'couple': 1.0, 'lot': 1.0, 'it': 3.0, 'she': 1.0, 'of': 2.0, 'keeps': 1.0, 'getting': 1.0, 'did': 1.0, 'hand': 1.0, 'people': 1.0, 'and': 3.0, 'asking': 1.0, 'months': 1.0, 'on': 1.0, 'ago': 1.0, 'a': 3.0, 'go': 1.0, 's': 1.0, 'back': 1.0, '2': 1.0, 'but': 1.0, 'stroller': 1.0, 'still': 1.0, 'have': 2.0, 'closet': 1.0, 'case': 1.0, 'need': 2.0, 'these': 1.0, 'some': 1.0, 'hands': 1.0, 'the': 2.0, 'heavier': 1.0, 'place': 1.0}
Word element => {'product': 1.0, 'versatility': 1.0, 'and': 1.0, 'i': 2.0, 'money': 1.0, 'this': 1.0, 'it': 2.0, 'great': 1.0, 'the': 2.0, 'my': 1.0, 'worth': 1.0, 'like': 1.0, '100': 1.0, 'in': 1.0, 'sling': 1.0, 'of': 1.0, 'recommend': 1.0, 'son': 1.0, 'design': 1.0, 'goes': 1.0, 'right': 1.0, 'to': 1.0, 'sleep': 1.0, 'would': 1.0, 'definitely': 1.0}
Word element => {'also': 1.0, 'would': 1.0, 'my': 1.0, 'but': 1.0, 'pretty': 1.0, 'best': 1.0, 'sling': 1.0, 'we': 2.0, 'bought': 2.0, 'and': 1.0, 'wear': 1.0, 'so': 1.0, 'three': 1.0, 'it': 1.0, 'love': 1.0, 'i': 1.0, 'this': 1.0, 'pattern': 1.0, 'husband': 1.0, 'too': 1.0}
Word element => {'my': 1.0, 'friends': 1.0, 'product': 1.0, 'to': 2.0, 'its': 1.0, 'baby': 1.0, 'in': 1.0, 'choices': 1.0, 'is': 1.0, 'mommy': 1.0, 'loves': 1.0, 'very': 2.0, 'comfy': 1.0, 'and': 1.0, 'it': 3.0, 'were': 1.0, 'wear': 1.0, 'great': 1.0, 'the': 1.0, 'pregnant': 1.0, 'all': 2.0, 'fabric': 1.0, 'around': 1.0, 'easy': 1.0, 'fantastic': 1.0, 'recommend': 1.0, 'i': 1.0}
Word element => {'if': 1.0, 'only': 1.0, 'not': 1.0, 'affordable': 1.0, 'weight': 1.0, 'barely': 1.0, 'recommend': 1.0, 'minutes': 1.0, 'up': 1.0, 'cramps': 1.0, 'arms': 1.0, 'best': 1.0, 'this': 3.0, 'it': 5.0, 'pair': 1.0, 'of': 3.0, 'infinite': 1.0, 'for': 1.0, 'love': 1.0, 'ring': 1.0, 'sling': 3.0, 'pocket': 1.0, 'wonderful': 1.0, 'front': 1.0, 'could': 1.0, 'a': 3.0, 'bicep': 1.0, 'is': 5.0, 'really': 1.0, 'tried': 2.0, 'i': 6.0, 'feel': 1.0, 'great': 2.0, 'padded': 1.0, 'he': 1.0, 'moby': 1.0, 'would': 1.0, 've': 1.0, 'in': 4.0, 'baby': 2.0, 'and': 4.0, 'squirmer': 1.0, 'get': 1.0, 'cinching': 1.0, 'carrier': 2.0, 'have': 1.0, 'my': 6.0, 'lo': 1.0, 'quite': 1.0, 'but': 2.0, 'shoulder': 1.0, 'friends': 2.0, 'so': 2.0, 'all': 1.0, 'to': 2.0, 'her': 2.0, 'before': 1.0, 'down': 1.0, 'wrap': 1.0, 'the': 5.0, 'adjustablity': 1.0, 'place': 1.0, 'rails': 1.0, 'are': 1.0, 'light': 1.0, 'on': 1.0, 'carrying': 1.0, '20lb': 1.0}
Word element => {'in': 1.0, 'my': 1.0, 'gift': 1.0, 'this': 1.0, 'great': 1.0, 'was': 1.0, 'to': 2.0, 'choose': 1.0, 'fast': 1.0, 'am': 2.0, 'so': 1.0, 'order': 1.0, 'of': 1.0, 'daughter': 1.0, 'going': 1.0, 'wonderful': 1.0, 'me': 1.0, 'and': 1.0, 'shipping': 1.0, 'from': 1.0, 'very': 2.0, 'law': 1.0, 'a': 1.0, 'well': 1.0, 'made': 1.0, 'i': 2.0, 'for': 2.0, 'one': 2.0, 'line': 1.0, 'pleased': 1.0, 'colors': 1.0, 'price': 1.0, 'another': 1.0}
Word element => {'not': 1.0, 'washing': 1.0, 'rings': 1.0, 'drawback': 1.0, 'minor': 1.0, 'just': 1.0, 'big': 3.0, 'be': 1.0, 'guess': 1.0, 'one': 1.0, 'too': 2.0, 'time': 1.0, 'whole': 1.0, 'wore': 1.0, 'stroll': 1.0, 'very': 1.0, '4': 1.0, 'table': 1.0, 'eat': 1.0, 'go': 2.0, '5': 1.0, 'restaurant': 1.0, 'need': 1.0, 'or': 1.0, 'store': 1.0, 'traveling': 1.0, 'making': 1.0, 'been': 2.0, 'cool': 1.0, 'car': 2.0, 'plastic': 1.0, 'would': 1.0, 'bulky': 2.0, 'free': 1.0, 'point': 1.0, 'generally': 1.0, 'are': 2.0, 'hands': 1.0, 'both': 1.0, 'care': 1.0, 'also': 2.0, 'things': 1.0, 'you': 3.0, 'obviously': 1.0, 'metal': 1.0, 'they': 1.0, 'sleeping': 1.0, 'which': 1.0, 'good': 1.0, 'carry': 1.0, 'kids': 2.0, 'found': 1.0, 'wash': 1.0, 'her': 1.0, 'use': 4.0, 'will': 1.0, 'could': 1.0, 'sense': 1.0, 's': 2.0, 'a': 10.0, 'shouldn': 1.0, 'take': 1.0, 'we': 2.0, 'along': 1.0, 'ago': 1.0, 't': 3.0, 'heavy': 2.0, 'as': 3.0, 'nursing': 1.0, 'around': 3.0, '6': 1.0, 'stroller': 2.0, 'our': 2.0, 'how': 1.0, 'lug': 1.0, '9': 1.0, 'it': 11.0, 'girls': 1.0, 'has': 2.0, 'girl': 1.0, 'that': 2.0, 'easily': 1.0, 'everywhere': 1.0, 'months': 1.0, 'while': 2.0, 'wife': 6.0, '3rd': 1.0, 'do': 1.0, 'florida': 1.0, 'slept': 1.0, 'well': 1.0, 'i': 2.0, 'hand': 1.0, 'something': 1.0, 'curve': 1.0, 'and': 13.0, 'description': 1.0, 'run': 1.0, 'ages': 1.0, 'machine': 1.0, '2': 2.0, 'but': 2.0, 'work': 1.0, 'ask': 1.0, 'so': 1.0, 'can': 3.0, 'nutrition': 1.0, 'with': 2.0, 'older': 1.0, 'since': 2.0, 'is': 3.0, 'at': 2.0, 'substitute': 1.0, 'nurse': 1.0, 'deal': 1.0, 'she': 4.0, 'baby': 8.0, 'wanted': 2.0, 'via': 1.0, 'safe': 1.0, 'after': 2.0, 'all': 2.0, 'other': 3.0, 'worked': 1.0, 'tasks': 1.0, 'carrier': 2.0, 'sling': 7.0, 'on': 4.0, 'make': 1.0, 'line': 1.0, 'liked': 1.0, 'serving': 1.0, 'child': 1.0, 'price': 1.0, 'doing': 1.0, 'the': 22.0, 'of': 4.0, 'this': 1.0, 'few': 1.0, 'perfect': 1.0, 'family': 1.0, 'live': 2.0, 'seat': 1.0, 'in': 5.0, 'had': 2.0, 'warm': 1.0, 'only': 1.0, 'south': 1.0, 'difficult': 1.0, 'loves': 1.0, 'when': 1.0, 'arrived': 1.0, 'even': 2.0, 'took': 1.0, 'to': 11.0, 'became': 1.0, 'some': 4.0, 'my': 6.0, 'learning': 2.0, 'have': 4.0, 'practice': 2.0, 'fabric': 1.0, 'for': 6.0, 'now': 4.0, 'figure': 1.0, 'out': 2.0, 'really': 1.0, 'sand': 1.0, 'without': 1.0, 'days': 1.0, 'common': 1.0, 'light': 1.0, 'using': 2.0, 'wouldn': 1.0, 'beach': 1.0, 'secure': 1.0}
Word element => {'just': 1.0, 'rather': 1.0, 'would': 1.0, 'so': 1.0, 'that': 1.0, 'to': 3.0, 'deal': 1.0, 'on': 1.0, 'is': 3.0, 'little': 1.0, 'baby': 1.0, 'a': 2.0, 'carrier': 1.0, 'with': 1.0, 'quick': 1.0, 'it': 1.0, 'this': 2.0, 'have': 1.0, 'and': 1.0, 'like': 1.0, 'great': 1.0, 'the': 1.0, 'we': 1.0, 'complicated': 1.0, 'in': 1.0, 'also': 1.0, 'moby': 1.0, 'put': 2.0, 'but': 1.0, 'i': 2.0, 'use': 1.0, 'feel': 1.0}
Word element => {'better': 1.0, 'than': 1.0, 'loves': 1.0, 'into': 1.0, 'and': 1.0, 'get': 1.0, 'gotten': 1.0, 'out': 2.0, 'house': 1.0, 'around': 1.0, 'when': 1.0, 'i': 4.0, 'everytime': 1.0, 'girl': 1.0, 'the': 1.0, 'my': 1.0, 'use': 1.0, 'this': 2.0, 'stores': 1.0, 'with': 1.0, 'baby': 1.0, 'it': 1.0, 'she': 1.0, 'much': 2.0, 'sleep': 1.0, 'to': 1.0, 'right': 1.0, 'big': 1.0, 'carseat': 1.0, 'her': 1.0, 'mostly': 1.0, 'compliments': 1.0, 'before': 1.0, 'just': 1.0, 'slide': 1.0, 'in': 1.0, 'go': 1.0, 'going': 1.0, 'a': 1.0, 'we': 1.0, 'of': 1.0, 'car': 1.0, 'so': 2.0, 'easier': 1.0, 'falls': 1.0, 'have': 1.0, 'many': 1.0, 'on': 1.0}
Word element => {'pleased': 1.0, 'so': 1.0, 'travel': 1.0, 'air': 1.0, 'purchased': 1.0, 'was': 2.0, 'warm': 1.0, 't': 1.0, 'she': 2.0, 'in': 2.0, 'too': 1.0, 'daughter': 1.0, 'snuggling': 1.0, 'my': 1.0, 'are': 1.0, 'mommy': 1.0, 'loves': 1.0, 'for': 1.0, 'often': 1.0, 'with': 1.0, 'it': 3.0, 'months': 1.0, '7': 1.0, 'doesn': 1.0, 'naps': 1.0, 'if': 1.0, 'light': 1.0, 'we': 1.0, 'is': 1.0, 'traveling': 1.0, 'i': 2.0, 'like': 1.0, 'get': 1.0, 'and': 2.0, 'weight': 1.0}
Word element => {'much': 1.0, 's': 1.0, 'usually': 1.0, 'carrying': 1.0, 'but': 1.0, 'back': 1.0, 'no': 1.0, 'really': 1.0, 'have': 2.0, 'loves': 1.0, '5': 1.0, 'months': 1.0, 'problem': 1.0, 'husband': 1.0, 'and': 2.0, 'my': 1.0, 'helps': 1.0, 'more': 1.0, 'the': 1.0, 'both': 1.0, 'easy': 1.0, 'ugrave': 1.0, 'she': 1.0, 'i': 2.0, 'old': 1.0, 'our': 1.0, 'that': 1.0, 'pains': 1.0, 'sling': 2.0, 'this': 1.0, 'it': 2.0, 'with': 2.0}
Word element => {'in': 1.0, 'connected': 1.0, 'slid': 1.0, 'a': 2.0, 'basically': 1.0, 'it': 1.0, 'flimsy': 1.0, 'very': 2.0, 'and': 2.0, 'bunch': 1.0, 'hard': 1.0, 'use': 1.0, 'to': 2.0, 'material': 1.0, 'not': 1.0, 'holder': 1.0, 'of': 1.0, 'sturdy': 1.0, 'is': 1.0, 'unlined': 1.0}
Word element => {'though': 1.0, 'nice': 1.0, 'say': 1.0, 'will': 1.0, 'expensive': 1.0, 'twice': 1.0, '5': 2.0, 'before': 2.0, 'some': 1.0, 'super': 1.0, 'padding': 1.0, 'use': 2.0, 'enough': 1.0, 'rails': 1.0, 'useless': 1.0, 'was': 4.0, 'item': 1.0, 'newbie': 1.0, 'a': 3.0, 't': 3.0, 's': 2.0, 'couldn': 1.0, 'not': 1.0, 'and': 5.0, 'have': 1.0, 'rendered': 1.0, 'pregnant': 1.0, 'shoulder': 1.0, 'work': 1.0, 'but': 1.0, 'babywearer': 1.0, 'this': 2.0, 'm': 2.0, 'best': 1.0, 'price': 1.0, 'd': 2.0, 'cutting': 1.0, 'out': 1.0, 'absolutely': 1.0, 'when': 1.0, 'i': 11.0, 'to': 2.0, 'as': 2.0, 'wanted': 1.0, 'charcoal': 1.0, 'if': 1.0, 'still': 1.0, 'realize': 1.0, 'petite': 1.0, 'who': 1.0, 'padded': 2.0, 'big': 1.0, 'snug': 1.0, 'at': 1.0, 'ring': 2.0, 'quite': 1.0, 'parsemage': 1.0, 'sling': 2.0, 'would': 1.0, 'tight': 1.0, 'me': 1.0, 'my': 1.0, 'may': 1.0, 'for': 2.0, 'liked': 1.0, 'up': 2.0, 'the': 7.0, 'of': 2.0, 'an': 2.0, 'average': 1.0, 'so': 1.0, 'like': 1.0, 'looking': 1.0, 'using': 1.0, 'sleeping': 1.0, 'or': 1.0, 'love': 1.0, 'yet': 1.0, 'anything': 1.0, 'hit': 1.0, 'even': 2.0, 'ordered': 1.0, 'didn': 1.0, 'wouldn': 1.0, 'more': 1.0, 'husband': 1.0, '6': 1.0, 'with': 2.0, 'low': 1.0, 'buying': 1.0, 'build': 2.0, 'athletic': 1.0, 'too': 1.0, 'try': 1.0, 'than': 1.0, 'apart': 1.0, 'get': 1.0, 'washed': 1.0, 'unfortunately': 1.0, 'baby': 2.0, 'arrived': 1.0, 'until': 1.0, 'tried': 1.0, 'already': 1.0, 'it': 10.0, 'him': 1.0, 'that': 2.0, 'ended': 1.0, 'different': 1.0, 'from': 1.0}
Word element => {'would': 1.0, 'for': 2.0, 'help': 1.0, 'our': 1.0, 'were': 1.0, 'it': 2.0, 'with': 1.0, 'we': 1.0, 'granddaughter': 1.0, 'to': 1.0, 'looking': 1.0, 'her': 1.0, 'what': 1.0, 'reasonable': 1.0, 'just': 1.0, 'new': 2.0, 'girl': 1.0, 'highly': 1.0, 'price': 1.0, 'baby': 1.0, 'moms': 1.0, 'recommend': 1.0, 'she': 1.0, 'loves': 1.0, 'as': 1.0, 'well': 1.0}
Word element => {'far': 1.0, 'by': 1.0, 'to': 1.0, 'easy': 1.0, 'use': 1.0, 'grateful': 1.0, 'baby': 1.0, 'tremendously': 1.0, 'i': 1.0, 'am': 1.0, 's': 1.0, 'expensive': 1.0, 'this': 1.0, 'with': 1.0, 'it': 4.0, 'not': 1.0, 'sling': 1.0, 'love': 1.0, 'comfortable': 1.0, 'best': 1.0, 'and': 1.0, 'my': 1.0, 'the': 1.0, 'is': 2.0, 'really': 1.0}
Word element => {'buy': 1.0, 'great': 1.0, 'now': 1.0, 'reliable': 1.0, 'easy': 1.0, 'they': 1.0, 'sling': 1.0, 'have': 1.0, '09': 1.0, 'review': 1.0, 'when': 1.0, 'second': 2.0, 'continue': 1.0, 'buying': 1.0, 'more': 1.0, 'anything': 1.0, 'ask': 1.0, 'will': 1.0, 'could': 1.0, 'you': 1.0, 'am': 1.0, 'attractive': 1.0, '2013': 1.0, 'robust': 1.0, 'end': 1.0, 'sore': 1.0, 'definitely': 1.0, '26lbs': 1.0, 'better': 1.0, 'even': 1.0, 'back': 2.0, 'ether': 1.0, 'or': 2.0, 'no': 2.0, 'mum': 1.0, 'with': 2.0, 'hanging': 1.0, 'were': 1.0, 'that': 1.0, 'loves': 3.0, 'initially': 1.0, 'wraps': 1.0, 'other': 1.0, 'ball': 1.0, 'than': 1.0, '12': 1.0, 'who': 2.0, 'into': 1.0, 'wrap': 1.0, 'we': 2.0, 'attracted': 1.0, 'tired': 1.0, 'baby': 1.0, 'available': 1.0, 'product': 1.0, 'video': 1.0, 'since': 1.0, 'transport': 1.0, 'delighted': 1.0, 'the': 8.0, 'of': 4.0, 'these': 2.0, 'once': 1.0, 'both': 1.0, 'functional': 1.0, 'leads': 1.0, 'in': 4.0, 'shoulders': 1.0, 'fire': 1.0, 'was': 2.0, 'to': 12.0, 'as': 3.0, 'francisco': 1.0, 'bought': 2.0, 'hates': 1.0, 'want': 1.0, 'mummy': 1.0, 'tears': 1.0, 'month': 1.0, 'did': 1.0, 'it': 8.0, '9': 1.0, 'looked': 1.0, 'this': 4.0, 'me': 1.0, 'my': 3.0, 'be': 3.0, 'minutes': 1.0, 'trying': 1.0, 'sure': 1.0, 'simpler': 1.0, 'old': 1.0, 'well': 1.0, 'i': 9.0, 'weighs': 1.0, 'made': 1.0, 'side': 2.0, 'which': 1.0, 'and': 10.0, 'trip': 1.0, 'using': 1.0, 'his': 1.0, 'ready': 1.0, 'stroller': 1.0, 'not': 2.0, 'just': 1.0, 'by': 1.0, 'lot': 2.0, 'one': 4.0, 'held': 1.0, 'washupdate': 1.0, '24lbs': 1.0, 'over': 2.0, 'up': 3.0, 'hold': 1.0, 'spend': 1.0, 'hours': 2.0, 'get': 1.0, 'on': 2.0, 'fussing': 1.0, 'before': 1.0, '5': 2.0, 'set': 1.0, 'used': 1.0, 'at': 1.0, 'is': 3.0, 'being': 1.0, 'very': 1.0, 'simple': 2.0, 'earnest': 1.0, 'use': 4.0, 'had': 4.0, 'out': 1.0, 'watched': 1.0, 'tutorial': 1.0, 'trial': 1.0, 'harness': 1.0, 'for': 5.0, 'son': 2.0, 'he': 1.0, 'are': 1.0, 'first': 1.0, 'wee': 1.0, 'day': 2.0, 'heck': 1.0, 'san': 1.0, 'public': 1.0, 'online': 1.0, 'probably': 1.0, 'a': 10.0, 'wrangling': 1.0, 'added': 1.0, 'time': 1.0}
Word element => {'of': 1.0, 'some': 1.0, 'how': 1.0, 'sure': 1.0, 'wasn': 1.0, 'out': 1.0, 'make': 1.0, 'difficult': 1.0, 'girl': 1.0, 'baby': 1.0, 'were': 1.0, 'my': 1.0, 't': 1.0, 'lightweight': 1.0, 'great': 1.0, 'the': 4.0, 'more': 1.0, 'stylish': 1.0, 'do': 1.0, 'and': 2.0, 'is': 2.0, 'it': 1.0, 'this': 1.0, 'loves': 1.0, 'to': 3.0, 'shopping': 1.0, 'in': 1.0, 'photos': 1.0, 'go': 1.0, 'wish': 1.0, 'positions': 1.0, 'clear': 1.0, 'i': 2.0, 'sling': 3.0, 'directions': 1.0, 'are': 1.0, 'brochure': 1.0}
Word element => {'definitely': 1.0, 'quickly': 1.0, 'grew': 1.0, 'little': 1.0, 'chubby': 1.0, 'of': 1.0, 'rather': 2.0, 'is': 1.0, 'baby': 1.0, 'originally': 1.0, 'out': 2.0, 'have': 1.0, 'not': 1.0, 'case': 1.0, 'or': 1.0, 'need': 1.0, 'bag': 1.0, 'stroller': 1.0, 'diaper': 1.0, 'throw': 1.0, 'also': 1.0, 'bulky': 1.0, 'purse': 1.0, 'whole': 1.0, 'airport': 1.0, 'thru': 2.0, 'a': 2.0, 'son': 1.0, 'quick': 1.0, 'with': 2.0, 'how': 1.0, 'he': 2.0, 'this': 2.0, 'doing': 1.0, 'use': 1.0, 'then': 1.0, 'had': 1.0, 'purchased': 1.0, 'sleep': 1.0, 'to': 3.0, 'was': 6.0, 'old': 1.0, 'sling': 6.0, 'for': 1.0, 'nice': 1.0, 'comfortable': 1.0, 'guy': 1.0, 'on': 3.0, 'i': 7.0, '4': 1.0, 'the': 9.0, 'my': 4.0, 'traveling': 3.0, 'when': 1.0, 'it': 3.0, 'month': 1.0, 'infant': 1.0, 'lifesaver': 1.0, 'alone': 1.0, 'so': 2.0, 'kept': 1.0, 'but': 1.0, 'can': 1.0, 'hauling': 1.0, 'an': 1.0, 'carry': 1.0, 'bags': 1.0, 'lot': 1.0, 'easier': 1.0, 'him': 2.0, 'bjorn': 1.0, 'plane': 2.0, 'in': 4.0, 'too': 1.0, 'and': 1.0, 'which': 1.0, 'drag': 1.0, 'like': 1.0, 'snuggled': 1.0, 'flight': 1.0, 'errands': 1.0, 'up': 1.0, 'happy': 1.0, 'quite': 1.0, 'cozy': 1.0, 'able': 1.0}
Word element => {'need': 1.0, 'sometimes': 1.0, 'while': 1.0, 'purse': 1.0, 'being': 1.0, 'if': 1.0, 'balks': 1.0, 'another': 1.0, 'not': 1.0, 'my': 3.0, 'me': 2.0, 's': 3.0, 't': 3.0, 'going': 2.0, 'a': 2.0, 'he': 2.0, 'adjust': 1.0, 'often': 1.0, 'month': 1.0, 'didn': 2.0, 'got': 1.0, 'they': 1.0, 'somewhere': 1.0, 'unstrapped': 1.0, 'be': 3.0, 'keep': 1.0, 'carry': 2.0, 'help': 1.0, 'issues': 1.0, 'to': 8.0, 'was': 2.0, 'doesn': 1.0, 'old': 2.0, 'i': 8.0, 'switching': 1.0, 'needed': 1.0, 'sling': 2.0, 'carrier': 1.0, 'stroller': 1.0, 'practical': 1.0, 'glad': 1.0, 'diaper': 1.0, 'an': 3.0, 'when': 1.0, 'always': 2.0, 'the': 3.0, 'of': 1.0, 'once': 1.0, 'leg': 1.0, 'have': 3.0, 'it': 8.0, 'him': 3.0, '9': 1.0, 'out': 1.0, 'infant': 1.0, 'his': 1.0, 'fracture': 1.0, 'from': 1.0, 'hard': 1.0, 'one': 1.0, 'strapped': 1.0, 'into': 1.0, 'that': 2.0, 'this': 2.0, 'allows': 1.0, 'so': 3.0, 'can': 1.0, 'but': 3.0, 'carried': 1.0, 'on': 3.0, 'put': 1.0, 'much': 1.0, 'do': 2.0, 'pressure': 1.0, 'and': 7.0, 'arms': 1.0, 'carrying': 1.0, 'agree': 1.0, 'baby': 1.0, 'at': 1.0, 'is': 1.0, 'more': 1.0, 'seat': 1.0, 'in': 1.0, 'just': 2.0, 'before': 1.0, 'carts': 1.0, 'something': 1.0, 'hand': 1.0, 'no': 1.0, 'directly': 1.0, 'back': 2.0, 'pay': 1.0, 'arm': 2.0, 'for': 1.0, 'use': 1.0, 'anyway': 1.0, 'really': 1.0, 'you': 1.0, 'able': 1.0, 'way': 1.0, 'than': 1.0, 'bag': 1.0}
Word element => {'faster': 1.0, 'little': 1.0, 'get': 1.0, 'it': 3.0, 'i': 1.0, 'see': 1.0, 'think': 1.0, 'to': 1.0, 'liked': 2.0, 'them': 1.0, 'a': 2.0, 'they': 1.0, 'gift': 1.0, 'really': 1.0, 'was': 1.0, 'would': 1.0, 'have': 1.0}
Word element => {'overall': 1.0, 'though': 1.0, 'color': 1.0, 'lovely': 1.0, 'go': 1.0, 'thing': 1.0, 'about': 1.0, 'gone': 1.0, 'wrap': 1.0, 'from': 2.0, 'as': 1.0, 'to': 3.0, 'keeping': 1.0, 'out': 1.0, 'then': 1.0, 'moby': 1.0, '5': 2.0, 'months': 1.0, '4': 2.0, 'threads': 1.0, 'only': 1.0, 'end': 1.0, 'tiny': 1.0, 'a': 2.0, 't': 1.0, 'that': 2.0, 'it': 6.0, 'higher': 1.0, 'easy': 1.0, 'left': 2.0, 'option': 1.0, 'keep': 1.0, 'style': 1.0, 'not': 1.0, 'and': 7.0, 'instead': 1.0, 'there': 1.0, 'her': 1.0, 'i': 6.0, 'well': 1.0, 'older': 1.0, 'appearance': 1.0, 'quick': 1.0, 'this': 2.0, 'comfortable': 1.0, '1': 2.0, 'sling': 1.0, 'love': 1.0, 'for': 2.0, 'stars': 1.0, 'product': 2.0, 'picky': 1.0, 'carry': 1.0, 'me': 3.0, 'my': 2.0, 'all': 2.0, 'fits': 1.0, 'when': 3.0, 'unless': 1.0, 'you': 1.0, 'm': 1.0, 'she': 2.0, 'baby': 1.0, 'quality': 1.0, 'better': 1.0, 'was': 1.0, 'doesn': 1.0, 's': 3.0, 'preferred': 1.0, 'giving': 1.0, 'at': 1.0, 'is': 1.0, 'amount': 1.0, 'now': 1.0, 'unraveling': 1.0, 'the': 5.0, 'affecting': 1.0, 'of': 3.0, 'are': 2.0, 'enjoy': 1.0, 'every': 1.0, 'than': 1.0, 'row': 1.0, 'have': 1.0, 'stitching': 1.0, 'would': 1.0, 'back': 2.0, 'trim': 2.0, 're': 1.0, 'these': 1.0, 'but': 2.0, 'little': 1.0, 'functionality': 1.0, '8': 1.0, 'overs': 1.0, 'over': 2.0, 'up': 1.0, 'detract': 1.0, 'close': 1.0, 'like': 1.0, 'need': 1.0, 'or': 1.0, 'meaning': 1.0}
Word element => {'with': 1.0, 'before': 1.0, 'kids': 1.0, 'this': 1.0, 'wish': 1.0, 'waking': 1.0, 'just': 1.0, 'crib': 1.0, 'her': 2.0, 'want': 1.0, 'sleeping': 1.0, 'sling': 2.0, 'without': 1.0, 'the': 5.0, 'love': 1.0, 'for': 1.0, 'where': 1.0, 'removal': 1.0, 'seen': 1.0, 'when': 1.0, 'am': 1.0, 'goes': 1.0, 'arm': 1.0, 'had': 1.0, 'what': 2.0, 'out': 2.0, 'figure': 1.0, 'is': 2.0, 'i': 5.0, 'to': 4.0, 'bend': 1.0, 'my': 1.0, 'and': 5.0, 'do': 1.0, 'done': 1.0, 'short': 1.0, 'of': 1.0, 'so': 1.0, 'time': 2.0, 'how': 1.0, 'adjust': 1.0, 'easy': 2.0, 'frazzle': 1.0, 'not': 1.0, 'have': 1.0, 'use': 1.0, 'throw': 1.0, 'it': 1.0, 'over': 2.0, 'put': 1.0, 'your': 2.0, 'on': 1.0, 'brained': 1.0, 'head': 1.0, 'slip': 2.0, 'in': 2.0, 'insert': 1.0, 'baby': 2.0, 'other': 1.0, 'tug': 1.0, 'a': 1.0, 'relief': 1.0, 'back': 1.0, 'arms': 1.0}
Word element => {'print': 1.0, 'compliments': 1.0, 'alot': 1.0, 'matter': 1.0, 'not': 1.0, 'but': 1.0, 'daughter': 1.0, 'sleepy': 1.0, 'is': 2.0, 'mile': 1.0, 'kids': 1.0, 'this': 2.0, 'walked': 1.0, 'do': 1.0, 'fun': 1.0, 'so': 2.0, 'back': 1.0, 'sling': 1.0, 'or': 2.0, 'held': 1.0, 'got': 1.0, 'old': 1.0, 'with': 2.0, 'woods': 1.0, 'went': 1.0, 'out': 2.0, 'that': 3.0, 'been': 2.0, 'son': 1.0, 'great': 1.0, 'big': 1.0, 'fuss': 1.0, 'months': 2.0, 'on': 1.0, 'put': 1.0, '3': 1.0, 'have': 1.0, 'able': 2.0, 'owned': 1.0, 'my': 4.0, 'these': 1.0, 'love': 5.0, 'for': 3.0, 'daily': 1.0, 'i': 8.0, 'two': 1.0, 'half': 1.0, 'has': 2.0, 'walk': 1.0, 'he': 1.0, 'adjust': 1.0, 'once': 1.0, 'of': 2.0, 'since': 1.0, 'could': 2.0, 'a': 3.0, 'and': 12.0, 'her': 2.0, 'last': 1.0, 'get': 4.0, 'easy': 1.0, 'awesome': 2.0, 'girl': 1.0, 'almost': 1.0, 'off': 1.0, 'use': 1.0, 'in': 4.0, 'laying': 1.0, '8': 1.0, 'down': 2.0, 'inside': 1.0, 'being': 1.0, 'sleep': 1.0, 'to': 4.0, 'crazy': 1.0, 'was': 2.0, 'myself': 1.0, 'wrap': 1.0, 'without': 1.0, 'the': 5.0, 'asleep': 2.0, 'draped': 1.0, '2yr': 1.0, 'nurse': 1.0, 'tired': 1.0, 'baby': 1.0, 'ease': 1.0, 'lay': 1.0, 'easily': 1.0, 'when': 1.0, 'she': 1.0, 'it': 7.0, 'fell': 1.0, 'him': 4.0, 'hes': 1.0}
Word element => {'would': 1.0, 'overall': 1.0, 'use': 1.0, 'also': 1.0, 'design': 1.0, 'hate': 1.0, 'lot': 1.0, 'definitely': 1.0, 'person': 1.0, 'different': 1.0, 'in': 2.0, 'nursing': 1.0, 'complaint': 1.0, 'tail': 1.0, 'slightly': 1.0, 'only': 1.0, 'its': 1.0, 'do': 1.0, 'dirty': 1.0, 'gets': 1.0, 'pink': 1.0, 'mind': 1.0, 'don': 1.0, 'price': 1.0, 'cover': 1.0, 'house': 2.0, 'housework': 1.0, 'most': 1.0, 'but': 3.0, 'done': 1.0, 'getting': 1.0, 'too': 1.0, 'and': 2.0, 'if': 1.0, 'being': 1.0, 'baby': 1.0, 'wanting': 1.0, 'the': 12.0, 'open': 1.0, 'wear': 2.0, 'wish': 1.0, 'this': 3.0, 'first': 1.0, 'looks': 1.0, 'it': 5.0, 'i': 10.0, 'as': 1.0, 'to': 3.0, 'recommend': 1.0, 'was': 3.0, 'had': 1.0, 'sling': 3.0, 'padded': 1.0, 'comfortable': 2.0, 'color': 2.0, 'bought': 2.0, 'one': 1.0, 'actually': 1.0, 'love': 3.0, 'for': 2.0, 'know': 1.0, 'because': 1.0, 'able': 1.0, 'stuff': 1.0, 'more': 1.0, 'around': 2.0, 'is': 3.0, 'totally': 1.0, 'that': 3.0, 'an': 1.0, 'own': 1.0, 'few': 1.0, 'others': 1.0, 'picture': 1.0, 'even': 1.0, 'affordable': 1.0, 'long': 1.0, 'special': 1.0, 'ordered': 1.0, 'periods': 1.0, 'while': 3.0, 'from': 1.0, 'so': 1.0, 'co': 1.0, 'fact': 1.0, 'another': 1.0, 'my': 2.0, 'could': 1.0, 's': 1.0, 't': 1.0, 'a': 3.0, 'go': 1.0}
Word element => {'sturdy': 1.0, 'looking': 1.0, 'other': 1.0, 'coarse': 1.0, 'feels': 1.0, 'cotton': 1.0, 'than': 1.0, 'notched': 1.0, 'that': 2.0, 'drawback': 1.0, 'arms': 1.0, 'big': 1.0, 'by': 1.0, 'snapfish': 1.0, 'too': 2.0, 'and': 3.0, 'this': 2.0, 'first': 1.0, 'hard': 1.0, 'brand': 1.0, 'hot': 1.0, 'ergo': 1.0, 'my': 3.0, 'southern': 1.0, 'cousin': 1.0, 'is': 4.0, 'second': 2.0, 'the': 3.0, 'baby': 3.0, 's': 2.0, 'bought': 1.0, 'one': 1.0, 'sling': 1.0, 'for': 1.0, 'not': 2.0, 'was': 1.0, 'also': 2.0, 'seems': 1.0, 'on': 2.0, 'put': 1.0, 'lighter': 1.0, 'only': 1.0, 'much': 1.0, 'wear': 1.0, 'better': 2.0, 'all': 1.0, 'to': 2.0, 'our': 1.0, 'top': 1.0, 'carrier': 1.0, 'mild': 1.0, 'good': 1.0, 'fabric': 1.0, 'her': 1.0, 'weather': 1.0, 'legs': 1.0, 'hand': 1.0, 'like': 1.0, 'cuz': 1.0, 'it': 4.0, 'she': 1.0, 'stretch': 1.0, 'can': 1.0, 'out': 1.0}
Word element => {'it': 1.0, 'using': 1.0, 'husband': 1.0, 'even': 1.0, 'use': 1.0, 'easy': 1.0, 'enjoys': 1.0, 'i': 1.0, 'lovelove': 1.0, 'this': 1.0, 'my': 1.0, 'made': 1.0, 'so': 1.0, 'comfortable': 1.0, 'life': 1.0, 'to': 1.0, 'much': 1.0, 'easier': 1.0, 'very': 1.0, 'and': 1.0}
Word element => {'feels': 1.0, 'comfortable': 1.0, 'is': 1.0, 'person': 1.0, 'in': 1.0, 'difficult': 1.0, 'to': 3.0, 'purchasing': 1.0, 'sling': 1.0, 'ring': 1.0, 'three': 1.0, 'what': 2.0, 'even': 1.0, 'see': 1.0, 'online': 1.0, 'there': 1.0, 'feeling': 1.0, 'm': 1.0, 'nothing': 1.0, 'a': 3.0, 's': 3.0, 'tutorials': 1.0, 'be': 1.0, 'trying': 1.0, 'sure': 1.0, 'not': 1.0, 'wrong': 1.0, 'because': 1.0, 'than': 1.0, 'it': 4.0, 'with': 1.0, 'use': 1.0, 'and': 2.0, 'different': 1.0, 'good': 1.0, 'or': 1.0, 'secure': 2.0, 'supposed': 1.0, 'product': 1.0, 'for': 1.0, 'stars': 1.0, 'fit': 1.0, 'after': 1.0, 'i': 2.0, 'watching': 1.0, 'was': 2.0, 'unfortunately': 1.0, 'recommend': 1.0, 'rather': 1.0, 'the': 1.0, 'out': 1.0, 'few': 1.0, 'things': 1.0}
Word element => {'feeling': 1.0, 'very': 1.0, 'also': 1.0, 'super': 1.0, 'now': 1.0, 'but': 1.0, 'before': 1.0, 'tries': 1.0, 'few': 1.0, 'took': 1.0, 'while': 1.0, 'use': 1.0, 'in': 1.0, 'her': 4.0, 'down': 1.0, 'put': 1.0, 'baby': 1.0, 'about': 1.0, 'beautiful': 1.0, 'store': 1.0, 'was': 1.0, 'at': 2.0, 'sling': 1.0, 'is': 4.0, 'first': 1.0, 'doing': 1.0, 'this': 1.0, 'easy': 1.0, 'get': 1.0, 'sure': 1.0, 'nice': 1.0, 'comfortable': 1.0, 'feel': 1.0, 'great': 1.0, 'could': 1.0, 'a': 2.0, 't': 1.0, 'where': 1.0, 'two': 1.0, 'i': 4.0, 'tried': 2.0, 'my': 1.0, 'laying': 1.0, 'legs': 1.0, 'and': 5.0, 'me': 2.0, 'it': 10.0, 'she': 3.0, 'facing': 1.0, 'dangling': 1.0, 'the': 2.0, 'hands': 1.0, 'absolutely': 1.0, 'hated': 1.0, 'after': 1.0, 'neck': 1.0, 'got': 1.0, 'material': 1.0, 'stronger': 1.0, 'are': 1.0, 'newborn': 1.0, 'wasn': 1.0, 'out': 1.0, 'loves': 1.0, 'to': 3.0, 'sleep': 1.0, 'puts': 1.0, 'right': 2.0, 'when': 1.0, 'gives': 1.0}
Word element => {'sling': 1.0, 'for': 1.0, 'looking': 1.0, 'if': 1.0, 'use': 1.0, 'no': 1.0, 'recommend': 1.0, 'to': 2.0, 'product': 1.0, 'great': 1.0, 'you': 1.0, 'definately': 1.0, 'matter': 1.0, 'a': 2.0, 're': 1.0, 'is': 1.0, 'it': 1.0, 'this': 1.0, 'nursing': 1.0, 'like': 1.0, 'i': 2.0, 'or': 1.0, 'am': 1.0, 'not': 1.0, 'would': 1.0, 'anyone': 1.0}
Word element => {'rounding': 1.0, 're': 1.0, 'helps': 1.0, '5': 1.0, 'down': 1.0, 'would': 1.0, 'an': 1.0, 'stars': 1.0, 'appropriate': 1.0, 'four': 1.0, 'price': 1.0, 'agrees': 1.0, 'sure': 1.0, 'given': 1.0, 'was': 1.0, 'amazon': 1.0, 'outward': 1.0, 'face': 1.0, 'air': 1.0, 'carrier': 1.0, 'similar': 1.0, 'up': 2.0, 'ended': 1.0, 'unhelpful': 1.0, 'this': 2.0, 'review': 1.0, 'comfortably': 1.0, 'solution': 1.0, 'them': 1.0, 'more': 1.0, 'asked': 1.0, 'listed': 1.0, 'and': 5.0, 'dock': 1.0, 'it': 10.0, 'felt': 1.0, 'improve': 1.0, 'great': 1.0, 'say': 1.0, 'methods': 1.0, 'comfortable': 1.0, 'going': 1.0, 'a': 2.0, 's': 2.0, 'we': 5.0, 'go': 2.0, 'least': 1.0, 'mo': 1.0, 'do': 1.0, 'pack': 1.0, 'said': 3.0, 'm': 3.0, 'in': 1.0, 'someone': 1.0, 'again': 1.0, 'when': 1.0, 'gonna': 1.0, 'bought': 1.0, 'uncomfortable': 1.0, 'for': 2.0, 'fit': 1.0, 'looks': 2.0, 'my': 4.0, 'may': 1.0, 'opinion': 1.0, 'another': 1.0, 'too': 1.0, 'try': 1.0, 'one': 2.0, 'rating': 2.0, 'since': 1.0, 'is': 2.0, 'at': 1.0, 'on': 2.0, 'update': 1.0, 'out': 1.0, 'so': 3.0, 'time': 1.0, 'star': 1.0, 'squished': 1.0, 'needed': 1.0, 'babybjorn': 1.0, 'but': 4.0, '3': 2.0, 'not': 4.0, 'that': 5.0, 'because': 1.0, 'i': 7.0, 'reviewing': 1.0, 'wife': 3.0, 'exact': 1.0, 'have': 2.0, 'had': 1.0, 'with': 2.0, 'tone': 1.0, 'her': 1.0, 'to': 8.0, 'pretty': 1.0, 'baby': 5.0, 'she': 11.0, 'many': 1.0, 'old': 1.0, 'inexpensive': 1.0, 'suspect': 1.0, 'found': 4.0, 'easy': 1.0, 'however': 1.0, 'the': 9.0, 'of': 2.0, 'hope': 1.0, 'carry': 1.0, 'even': 1.0, 'practical': 1.0, 'or': 1.0, 'loves': 1.0, 'difficult': 1.0, 'worked': 1.0, 'quickly': 1.0, 'stuck': 1.0, 'bad': 1.0, 'are': 1.0, 'first': 1.0, 'us': 1.0, 'also': 1.0, 'though': 1.0, 'grew': 1.0, 'very': 1.0, 'something': 1.0, 'says': 1.0, 'short': 1.0}
Word element => {'back': 1.0, 'would': 1.0, 'wish': 1.0, 'one': 1.0, 'i': 3.0, 'arms': 1.0, 'got': 1.0, 'so': 1.0, 'stress': 1.0, 'product': 1.0, 'have': 1.0, 'it': 2.0, 'sooner': 1.0, 'really': 1.0, 'of': 1.0, 'takes': 1.0, 'the': 1.0, 'happy': 1.0, 'my': 1.0, 'off': 1.0, 'gotten': 1.0, 'and': 1.0, 'excellent': 1.0, 'lower': 1.0}
Word element => {'different': 1.0, 'initially': 1.0, 'spend': 1.0, 'might': 1.0, 'go': 1.0, 're': 1.0, 'right': 1.0, 'have': 1.0, 'make': 1.0, 'fix': 1.0, 'okay': 1.0, 'probably': 1.0, 'as': 2.0, 'got': 1.0, 'also': 1.0, 'cool': 1.0, 'in': 2.0, 'overall': 1.0, 'thin': 1.0, 's': 2.0, 'so': 1.0, 'another': 1.0, 'backed': 1.0, 'through': 1.0, 'material': 1.0, 'piece': 2.0, 'one': 2.0, 'toddlers': 1.0, 'total': 1.0, 'more': 1.0, 'babies': 1.0, 'nice': 1.0, 'two': 1.0, 'on': 1.0, '3': 1.0, 'once': 1.0, 'really': 2.0, 'pros': 1.0, 'when': 1.0, 'bucks': 1.0, 'you': 5.0, 'used': 1.0, 'great': 2.0, '1': 2.0, 'like': 1.0, 'and': 5.0, 'while': 1.0, 'from': 1.0, 'new': 1.0, 'summer': 1.0, 'would': 2.0, 'each': 1.0, 'small': 1.0, 'imagine': 1.0, 'a': 6.0, 'could': 2.0, 'fairly': 1.0, 'ago': 1.0, 't': 1.0, 'or': 2.0, 'stitching': 1.0, 'that': 1.0, 'because': 1.0, 'problems': 1.0, 'type': 2.0, 'very': 3.0, 'for': 4.0, 'actually': 2.0, 'quite': 1.0, 'sling': 3.0, 'use': 4.0, 'loved': 1.0, 'bought': 1.0, 'hang': 1.0, 'an': 2.0, 'potentially': 1.0, 'no': 1.0, 'years': 1.0, 'baby': 1.0, 'trips': 1.0, 'them': 1.0, 'back': 1.0, 'pretty': 1.0, 'to': 6.0, 'quickly': 1.0, 'preference': 1.0, 'was': 3.0, 'product': 1.0, 'babywearing': 2.0, 'anything': 1.0, 'prior': 1.0, 'quick': 1.0, 'with': 3.0, 'few': 1.0, 'this': 4.0, 'it': 11.0, 'entire': 1.0, 'my': 1.0, 'looks': 1.0, 'is': 4.0, 'if': 2.0, 'still': 1.0, 'course': 1.0, 'personal': 1.0, 'print': 1.0, 'but': 3.0, 'get': 2.0, 'of': 5.0, 'the': 7.0, 'made': 2.0, 'going': 1.0, 'traveling': 1.0, 'done': 1.0, 'durable': 1.0, 'spread': 1.0, 'never': 1.0, 'sewn': 1.0, 'i': 7.0, 'well': 3.0, 'coming': 1.0, 'un': 1.0, 'mine': 1.0, 'pulling': 1.0, 'definitely': 1.0, 'cons': 1.0, 'rings': 2.0, 'bad': 1.0, 'first': 1.0, 'are': 1.0, 'not': 2.0, 'they': 1.0, 'be': 2.0, 'normally': 1.0, '2': 2.0, 'unsafe': 1.0, 'hole': 1.0, 'didn': 1.0, '4': 1.0, 'replace': 1.0, 'found': 1.0, 'easy': 2.0, 'inspected': 1.0}
Word element => {'other': 1.0, 'definitely': 1.0, 'with': 1.0, 'this': 1.0, 'eating': 1.0, 'essential': 1.0, 'practice': 1.0, 'around': 1.0, 'it': 7.0, 'she': 1.0, 'down': 1.0, 'does': 1.0, 'before': 1.0, 'her': 2.0, 'carried': 1.0, 'to': 3.0, 'suggest': 1.0, 'had': 1.0, 'now': 1.0, 'an': 1.0, 'once': 1.0, 'some': 1.0, 'becomes': 1.0, 'i': 5.0, 'take': 1.0, 'but': 2.0, 'work': 1.0, 'can': 1.0, 'have': 2.0, 'for': 1.0, 'love': 1.0, 'often': 1.0, 'sling': 2.0, 'go': 1.0, 's': 1.0, 'we': 1.0, 'use': 1.0, 'got': 1.0, 'the': 1.0, 'item': 1.0, 'schedule': 1.0, 'baby': 1.0, 'feed': 1.0, 'in': 2.0, 'loves': 1.0, 'being': 1.0, 'you': 2.0, 'easily': 1.0, 'am': 1.0, 'so': 1.0, 'glad': 1.0, 'moms': 1.0, 'and': 1.0}
Word element => {'not': 1.0, 'home': 1.0, 'her': 2.0, 'nervous': 1.0, 'i': 4.0, 'about': 1.0, 'positions': 1.0, 'old': 1.0, 'gets': 2.0, '3month': 1.0, 'when': 1.0, 'at': 1.0, 'bigger': 1.0, 'too': 1.0, 'and': 2.0, 'left': 1.0, 'get': 2.0, 'squirmy': 1.0, 'try': 1.0, 'purchased': 1.0, 'will': 1.0, 'but': 1.0, 'the': 1.0, 'really': 1.0, 't': 1.0, 'we': 2.0, 'flying': 1.0, 'sling': 1.0, 'comfortable': 1.0, 'in': 1.0, 'falling': 1.0, 'my': 1.0, 'out': 1.0, 'maybe': 1.0, 'success': 1.0, 'have': 1.0, 'better': 1.0, 'this': 1.0, 'with': 2.0, 'she': 2.0, 'it': 2.0, 'various': 1.0, 'first': 1.0, 'hopes': 1.0, 'of': 1.0, 'doesn': 1.0, 'was': 1.0, 'impressed': 1.0, 'on': 1.0, 'as': 1.0, 'our': 1.0, 'using': 1.0, 'trip': 1.0}
Word element => {'you': 1.0, 'thank': 1.0, 'great': 1.0, 'on': 1.0, 'uncomfortable': 1.0, 'the': 1.0, 'adjusted': 1.0, 'at': 1.0, 'store': 1.0, 'to': 1.0, 'first': 1.0, 'packs': 1.0, 'go': 1.0, 're': 1.0, 'and': 2.0, 'clean': 1.0, 'lil': 1.0, 'its': 1.0, 'but': 1.0, 'perfect': 1.0, 'easy': 1.0}
Word element => {'fair': 1.0, 'price': 1.0, 'product': 1.0, 'overall': 1.0, 'scary': 1.0, 'a': 3.0, 'gets': 1.0, 'arching': 1.0, 'starts': 1.0, 'very': 1.0, 'being': 1.0, 'done': 1.0, 'guy': 1.0, 'on': 2.0, 'we': 1.0, 'could': 1.0, 't': 3.0, 'go': 1.0, 's': 2.0, 'up': 1.0, 'or': 3.0, 'where': 1.0, 'when': 2.0, 'idea': 1.0, 'keep': 1.0, 'no': 1.0, 'wanted': 1.0, 'short': 1.0, 'was': 1.0, 'make': 1.0, 'anymore': 1.0, 'store': 1.0, 'had': 2.0, 'so': 2.0, 'smiling': 1.0, 'even': 2.0, 'didn': 1.0, 'see': 2.0, 'face': 1.0, 'couldn': 2.0, 'spit': 1.0, 'also': 1.0, 'great': 1.0, 'carrying': 2.0, 'bjorn': 1.0, 'in': 5.0, 'i': 10.0, 'like': 1.0, 'something': 2.0, 'hand': 1.0, 'eye': 1.0, 'my': 1.0, 'pricier': 1.0, 'little': 3.0, 'but': 2.0, 'back': 1.0, 'most': 1.0, 'bought': 1.0, 'decided': 1.0, 'liked': 1.0, 'options': 1.0, 'facing': 1.0, 'if': 1.0, 'still': 1.0, 'out': 1.0, 'this': 2.0, 'he': 6.0, 'maya': 1.0, 'munchkin': 1.0, 'looked': 1.0, 'wraps': 1.0, 'and': 6.0, 'other': 1.0, 'value': 1.0, 'contact': 1.0, 'there': 3.0, 'because': 2.0, 'that': 3.0, 'for': 2.0, 'fabric': 2.0, 'at': 3.0, 'is': 2.0, 'his': 2.0, 'around': 1.0, 'heavy': 1.0, 'live': 1.0, 'way': 1.0, 'trips': 1.0, 'always': 1.0, 'hot': 1.0, 'get': 1.0, 'just': 2.0, 'compliments': 1.0, 'design': 1.0, 'the': 8.0, 'of': 1.0, 'sling': 1.0, 'thick': 1.0, 'though': 1.0, 'places': 1.0, 'one': 2.0, 'too': 1.0, 'happy': 1.0, 'to': 1.0, 'it': 1.0, 'him': 2.0, 'people': 1.0, 'both': 1.0, 'house': 1.0, 'florida': 1.0, 'do': 1.0}
Word element => {'carried': 1.0, 'once': 1.0, 'mt': 1.0, 'mai': 2.0, 'things': 1.0, 'able': 1.0, 'hard': 2.0, 'become': 1.0, 'snap': 1.0, 'safety': 1.0, 'who': 1.0, 'disagree': 1.0, 'slings': 1.0, 'right': 1.0, 'bigger': 1.0, 'if': 1.0, 'dig': 1.0, 'are': 1.0, 'metal': 2.0, 'they': 1.0, 'rings': 2.0, 'discourages': 1.0, 'sling': 2.0, 'carrier': 1.0, 'carry': 1.0, 'make': 1.0, 'which': 1.0, 'how': 2.0, 'big': 1.0, 'not': 2.0, 'transition': 1.0, 'keep': 1.0, 'aside': 1.0, 'set': 1.0, 'have': 2.0, 'doesn': 2.0, 'gatherings': 1.0, 'family': 1.0, 'visits': 1.0, 'stuffed': 1.0, 'movement': 1.0, 'doc': 1.0, 'grocery': 1.0, 'be': 3.0, 'bonus': 1.0, 'lovely': 1.0, 'off': 1.0, 'adjust': 3.0, 'accessories': 1.0, 'he': 2.0, 'into': 2.0, 'to': 12.0, 'crazy': 1.0, 'as': 2.0, 'was': 2.0, 'store': 2.0, 'called': 1.0, 'dropped': 1.0, 'about': 2.0, 'moment': 1.0, 'going': 1.0, 'kid': 1.0, 'nope': 1.0, 'too': 1.0, 'pattern': 1.0, 'one': 5.0, 'mind': 1.0, 'house': 1.0, 'types': 1.0, 'more': 1.0, 'for': 4.0, 'confining': 1.0, 'like': 1.0, 'cheap': 1.0, 'where': 1.0, 'using': 1.0, 'light': 1.0, 'brands': 1.0, 'intuitive': 1.0, 'plastic': 1.0, '34': 2.0, 'longer': 2.0, 'the': 14.0, 'of': 2.0, 'just': 5.0, 'hey': 1.0, 'counts': 1.0, 'excursions': 1.0, 'baby': 1.0, 'many': 1.0, 'son': 2.0, 'an': 1.0, 'all': 1.0, 'other': 2.0, 'tai': 2.0, 'him': 4.0, 'wear': 1.0, 'it': 14.0, 'thicker': 1.0, 'this': 5.0, 'carriers': 1.0, 'shoulders': 1.0, 'different': 1.0, 'after': 2.0, 'naturally': 1.0, 'super': 3.0, 'days': 1.0, 'without': 1.0, 'soooo': 1.0, 've': 1.0, 'ring': 1.0, 'is': 4.0, 'putzing': 1.0, 'at': 1.0, 'being': 1.0, 'prevent': 1.0, 'very': 2.0, 'overly': 1.0, 'since': 1.0, 'relaxed': 1.0, 'trying': 1.0, 'extra': 1.0, 'gotten': 1.0, 'i': 15.0, 'enough': 1.0, 'loved': 1.0, 'my': 7.0, 'thrift': 1.0, 'comfy': 3.0, 'and': 15.0, 'issue': 1.0, 'poster': 1.0, 'arch': 1.0, 'padding': 3.0, 'difficult': 1.0, 'strap': 1.0, 'pound': 1.0, 'long': 1.0, 'on': 5.0, 'isn': 1.0, 'don': 3.0, 'shoulder': 2.0, 'but': 5.0, 'maybe': 1.0, 's': 4.0, 'tightened': 1.0, 'likes': 1.0, 'snagged': 1.0, 't': 6.0, 'small': 1.0, 'a': 5.0, 'figured': 1.0, 'hour': 1.0, 'thoroughly': 1.0, 'go': 1.0, 'also': 4.0, 'secure': 1.0, 'pop': 2.0, 'thin': 1.0, 'can': 6.0, 'so': 4.0, 'however': 1.0, 'fought': 1.0, 'bit': 1.0, 'legs': 1.0, 'get': 1.0, 'hot': 3.0, 'm': 2.0, 'in': 6.0, 'there': 1.0, 'impossible': 1.0, 'two': 1.0, 'nice': 1.0, 'padded': 1.0, 'out': 3.0, 'nothing': 1.0, 'with': 2.0, 'though': 1.0, 'thick': 1.0, 'boy': 3.0, 'widen': 1.0, 'bulky': 1.0, '20': 1.0, 'that': 1.0, 'easily': 2.0, 'them': 1.0, 'always': 1.0, 'most': 1.0, 'back': 2.0, 'around': 1.0, 'his': 2.0, 'simple': 1.0}
Word element => {'order': 1.0, 'to': 1.0, 'now': 1.0, 'myself': 1.0, 'out': 1.0, 'gift': 1.0, 'as': 1.0, 'purchased': 1.0, 'years': 1.0, 'a': 1.0, '15': 1.0, 'tried': 1.0, 'i': 5.0, 'am': 1.0, 'beautiful': 2.0, 'fabric': 1.0, 'have': 1.0, 'wonderful': 1.0, 'slings': 1.0, 'the': 2.0, 'are': 2.0, 'is': 1.0, 'it': 1.0, 'children': 1.0, 'this': 2.0, 'with': 1.0, 'been': 1.0, 'one': 1.0, 'for': 1.0, 'sling': 2.0, 'using': 1.0, 'going': 1.0, 'style': 1.0, 'past': 1.0, 'think': 1.0, 'different': 1.0, '5': 1.0, 'and': 4.0, 'recently': 1.0, 'they': 1.0}
Word element => {'have': 1.0, 'just': 1.0, 'sling': 1.0, 'like': 1.0, 'at': 1.0, 'out': 1.0, 'figuring': 1.0, 'alot': 1.0, 'a': 1.0, 'go': 1.0, 'helped': 1.0, 'video': 1.0, 'time': 1.0, 'on': 1.0, 'to': 4.0, 'had': 1.0, 'used': 1.0, 'online': 1.0, 'hard': 1.0, 'first': 1.0, 'it': 4.0, 'i': 4.0, 'decided': 1.0, 'get': 1.0, 'and': 1.0, 'watch': 1.0, 'the': 2.0, 'how': 1.0, 'then': 1.0, 'use': 1.0}
Word element => {'assist': 1.0, 'use': 1.0, 'don': 1.0, 'experience': 1.0, 'safely': 1.0, 'baby': 1.0, 'without': 1.0, 'the': 2.0, 'cuddle': 1.0, 'able': 1.0, 'if': 1.0, 'want': 1.0, 'concerns': 1.0, 'of': 1.0, 'thanks': 1.0, 'am': 1.0, 'arm': 2.0, 'feedback': 1.0, 'have': 2.0, 'really': 1.0, 'alot': 1.0, 'law': 1.0, 't': 1.0, 'a': 1.0, 'ago': 1.0, 'my': 3.0, 'unfortunately': 1.0, 'about': 2.0, 'comfortably': 1.0, 'i': 8.0, 'to': 4.0, 'be': 4.0, 'first': 1.0, 'lost': 1.0, 'this': 1.0, 'time': 1.0, 'how': 1.0, 'grandchild': 1.0, 'adjust': 1.0, 'fatigue': 1.0, 'reservations': 1.0, 'current': 1.0, 'almost': 1.0, '3': 1.0, 'think': 1.0, 'surely': 1.0, 'will': 4.0, 'secure': 1.0, 'hold': 1.0, 'left': 1.0, 'sure': 1.0, 'and': 2.0, 'do': 1.0, 'me': 2.0, 'years': 1.0, 'm': 1.0, 'daughter': 1.0, 'nana': 1.0, 'son': 1.0, 'appreciated': 1.0, 'in': 1.0, 'users': 1.0, 'something': 1.0, 'would': 1.0, 'helpful': 1.0, 'for': 1.0}
Word element => {'babywearing': 1.0, 'up': 1.0, 'as': 1.0, 'recommend': 1.0, 'would': 1.0, 'i': 1.0, 'to': 1.0, 'this': 1.0, 'bag': 1.0, 'easily': 1.0, 'option': 1.0, 'easy': 1.0, 'use': 1.0, 'fits': 1.0, 'a': 2.0, 'back': 1.0, 'nice': 1.0, 'in': 1.0, 'diaper': 1.0, 'design': 1.0}
Word element => {'things': 1.0, 'good': 1.0, 'enough': 1.0, 't': 1.0, 'dry': 1.0, 'us': 1.0, 'umbrella': 1.0, 'out': 1.0, 'its': 1.0, 'if': 1.0, 'was': 1.0, 'now': 1.0, 'it': 4.0, 'this': 2.0, 'been': 1.0, 'have': 2.0, 'got': 1.0, 'feed': 1.0, 'sling': 3.0, 'using': 1.0, 'son': 1.0, 'both': 2.0, 'best': 1.0, 'time': 1.0, 'the': 4.0, 'people': 1.0, 'my': 1.0, 'i': 8.0, 'warm': 1.0, 'old': 2.0, 'about': 1.0, 'positions': 1.0, 'of': 2.0, 'he': 1.0, '6': 1.0, 'baby': 1.0, 'them': 1.0, 'since': 1.0, 'and': 5.0, 'get': 1.0, 'me': 1.0, 'months': 2.0, 'use': 1.0, 'breast': 1.0, 'raining': 1.0, '2': 1.0, 'can': 2.0, '3': 1.0, 'put': 2.0, 'in': 4.0, 'him': 3.0, 'multiple': 1.0, 'when': 1.0, 'walking': 1.0, 'where': 1.0, 'say': 1.0, 'is': 2.0, 'around': 1.0, 'keeps': 1.0, 'lots': 1.0, 'compliments': 1.0, 'all': 1.0, 'askng': 1.0}
Word element => {'less': 1.0, 'the': 1.0, 'out': 1.0, 'lot': 1.0, 'get': 1.0, 'to': 1.0, 't': 1.0, 'trouble': 1.0, 'it': 3.0, 'love': 1.0, 'is': 2.0, 'light': 1.0, 'you': 1.0, 'and': 2.0, 'stroller': 1.0, 'easy': 1.0, 'for': 1.0, 'i': 1.0, 'when': 1.0, 'a': 1.0, 'want': 1.0, 'don': 1.0}
Word element => {'area': 1.0, 'boutiques': 1.0, 'fancy': 1.0, 'some': 1.0, 'looked': 1.0, 'slings': 1.0, 'expensive': 1.0, 'price': 1.0, 'would': 1.0, 'shoulder': 1.0, 'on': 1.0, 'head': 1.0, 'cuddle': 1.0, 'also': 1.0, 'around': 1.0, 'been': 1.0, 'into': 1.0, 'loves': 1.0, 'comfort': 1.0, 'likes': 1.0, 'easier': 1.0, 'instructions': 1.0, 'content': 1.0, 'safety': 1.0, 'videos': 2.0, 'quality': 1.0, 'about': 3.0, 'we': 1.0, 'take': 1.0, 'found': 1.0, 'few': 2.0, 'this': 2.0, 'with': 3.0, 'quick': 1.0, 'not': 2.0, 'ensuring': 1.0, 'as': 3.0, 'and': 14.0, 'i': 10.0, 'watching': 1.0, 'nice': 1.0, 'two': 1.0, 'pleased': 2.0, 'used': 1.0, 'came': 1.0, 'able': 1.0, 'you': 1.0, 'times': 1.0, 'am': 1.0, 'once': 1.0, 'in': 4.0, 'bjorn': 1.0, 'just': 1.0, 'tube': 1.0, 'quickly': 1.0, 'arrived': 1.0, 'use': 3.0, 'her': 2.0, 'using': 2.0, 'which': 1.0, 'sling': 8.0, 'recommend': 1.0, 'were': 1.0, 'more': 5.0, 'at': 2.0, 'look': 2.0, 'is': 7.0, 'doing': 1.0, 'of': 4.0, 'the': 12.0, 'hands': 1.0, 'great': 2.0, 'comfortable': 2.0, 'me': 2.0, 'my': 6.0, 'went': 1.0, 'wearing': 1.0, 'while': 1.0, 'so': 2.0, 'was': 1.0, 'fabric': 1.0, 'for': 1.0, 'are': 2.0, 'to': 6.0, 'clingy': 1.0, 'be': 1.0, 'carried': 1.0, 'baby': 6.0, 'many': 2.0, 'she': 2.0, 'it': 9.0, 'gave': 1.0, 'often': 1.0, 'felt': 1.0, 'really': 1.0, 'very': 1.0, 'being': 2.0, 'makes': 1.0, 'tasks': 1.0, 'shopping': 1.0, 'much': 3.0, 'confidence': 1.0, 'both': 1.0, 'free': 1.0, 'than': 1.0, 'does': 1.0, 'find': 1.0, 'that': 1.0, 'because': 1.0, 'still': 1.0, 'enjoys': 1.0, 'but': 2.0, 'months': 1.0, 'get': 1.0, 'have': 1.0, 'practice': 1.0, 'a': 2.0, 'confident': 1.0}
Word element => {'double': 1.0, 'shape': 1.0, 'onto': 1.0, 'weight': 1.0, 'part': 1.0, 'even': 1.0, 'hip': 2.0, 'load': 1.0, 'her': 2.0, 'let': 1.0, 'precisly': 1.0, 'height': 1.0, 'of': 2.0, 'still': 1.0, '22': 1.0, 'now': 1.0, 'falls': 1.0, 'to': 4.0, 'had': 1.0, 'was': 1.0, 'adjust': 1.0, 'lite': 1.0, 'me': 2.0, 'and': 3.0, 'months': 2.0, 'on': 2.0, 'after': 1.0, 'fails': 1.0, 'secure': 1.0, 'lbs': 1.0, 'when': 1.0, 'babybjorn': 1.0, 'security': 1.0, 'about': 1.0, 'a': 2.0, 'loves': 1.0, 'gave': 1.0, 'that': 3.0, 'came': 1.0, 'although': 1.0, 'allows': 1.0, 'pain': 1.0, 'this': 1.0, 'back': 1.0, 'carrier': 1.0, 'beginning': 1.0, 'before': 1.0, 'pouch': 1.0, 'wonderful': 1.0, 'can': 1.0, 'but': 1.0, 'shoulder': 2.0, '4': 2.0, 'i': 4.0, 'old': 1.0, 'my': 5.0, 'comfort': 1.0, 'has': 1.0, 'add': 1.0, 'learning': 1.0, 'curve': 1.0, 'design': 1.0, 'never': 1.0, 'snuggle': 1.0, 'in': 3.0, 'asleep': 1.0, 'the': 5.0, 'rescue': 1.0, 'feel': 1.0, 'is': 3.0, 'completely': 1.0, 'alleviate': 1.0, 'baby': 2.0, 'started': 1.0, 'straddle': 1.0, 'using': 1.0, 'it': 8.0, 'she': 2.0}
Word element => {'incredible': 1.0, 'plus': 1.0, 'house': 1.0, 'the': 2.0, 'around': 1.0, 'done': 1.0, 'stuff': 1.0, 's': 1.0, 'i': 1.0, 'is': 1.0, 'with': 1.0, 'it': 1.0, 'great': 1.0, 'can': 1.0, 'this': 1.0, 'get': 1.0, 'sling': 1.0, 'free': 1.0, 'to': 1.0, 'be': 1.0, 'price': 1.0, 'hands': 1.0}
Word element => {'wash': 1.0, 'pre': 1.0, 'long': 1.0, 'you': 2.0, 'that': 2.0, 'thought': 1.0, 'shows': 1.0, 'warn': 1.0, 'to': 2.0, 'was': 1.0, 'too': 1.0, 'and': 1.0, 'me': 1.0, 'it': 7.0, 'manual': 1.0, 'with': 1.0, 'i': 5.0, 'good': 1.0, 'this': 1.0, 'functional': 1.0, 's': 1.0, 'a': 2.0, 'the': 1.0, 'pretty': 1.0, 'cost': 1.0, 'multi': 1.0, 'sling': 1.0, 'actually': 1.0, 'for': 1.0, 'how': 1.0, 'worked': 1.0, 'also': 1.0, 'will': 1.0, 'but': 1.0, 'shrunk': 1.0, 'after': 1.0, 'so': 1.0, '5': 1.0, 'my': 1.0, 'b': 1.0, 'think': 1.0, 'utilize': 1.0, 'on': 1.0, 'washed': 1.0, '3': 1.0, 'comes': 1.0, 'is': 1.0, 'benefit': 1.0, 'best': 1.0, 'm': 1.0, 'c': 1.0}
Word element => {'m': 1.0, 'some': 1.0, 'quite': 1.0, 'be': 1.0, 'll': 1.0, 'home': 1.0, 'at': 1.0, 'with': 2.0, 'edges': 1.0, 'padding': 1.0, 'of': 1.0, 'min': 1.0, 'plenty': 1.0, 'there': 1.0, 'never': 1.0, 'no': 1.0, 'whole': 1.0, 'i': 5.0, 'tested': 1.0, 'old': 1.0, 'tried': 1.0, 'in': 2.0, 'cry': 1.0, 'the': 3.0, 'figure': 1.0, 'around': 1.0, 'more': 1.0, 'is': 2.0, 'frustrated': 1.0, 'sure': 1.0, 'tears': 1.0, 'get': 1.0, 'and': 5.0, 'would': 1.0, 've': 1.0, 'we': 1.0, 's': 1.0, 'could': 1.0, 'a': 1.0, 'just': 1.0, 'few': 1.0, 'my': 1.0, 'so': 1.0, 'time': 2.0, 'keeping': 1.0, 'out': 2.0, 'what': 1.0, 'carriers': 1.0, 'her': 5.0, 'was': 1.0, 'me': 2.0, 'not': 1.0, 'wrong': 1.0, 'or': 1.0, 'how': 1.0, 'make': 1.0, 'comfortable': 2.0, 'one': 2.0, 'for': 6.0, '30': 1.0, 'walked': 1.0, 'this': 2.0, 'only': 1.0, 'month': 1.0, 'it': 3.0, 'well': 1.0, 'won': 1.0, 'over': 1.0, 'shoulder': 1.0, '2': 1.0, 'but': 1.0, 'to': 1.0, 'as': 1.0}
Word element => {'next': 1.0, 've': 1.0, 'in': 1.0, 'pretty': 1.0, 'is': 3.0, 'perfect': 1.0, 'this': 2.0, 'it': 1.0, 'with': 1.0, 'right': 1.0, 'to': 4.0, 'least': 1.0, 'for': 2.0, 'sling': 1.0, 'i': 2.0, 'tried': 1.0, 'holster': 1.0, 'the': 3.0, 't': 1.0, 'find': 1.0, 'every': 1.0, 'feel': 1.0, 'baby': 1.0, '200': 1.0, 'spent': 1.0, 'at': 1.0, 'trying': 1.0, 'designs': 1.0, 'out': 2.0, 'don': 1.0, 'child': 2.0, '34': 2.0, 'strapped': 1.0, 'there': 1.0, 'comfy': 1.0, 'me': 3.0, 'and': 3.0, 'easy': 1.0, 'get': 1.0, 'my': 2.0, 'her': 1.0, 'fabric': 1.0, 'are': 1.0, 'one': 2.0, 'cool': 1.0, 'snuggled': 1.0, 'like': 1.0, 'but': 1.0, 'comfortably': 1.0}
Word element => {'dose': 1.0, 'arms': 1.0, 'out': 1.0, 'slip': 1.0, 'them': 1.0, 'for': 1.0, 'no': 1.0, 'at': 1.0, 'of': 2.0, 'once': 1.0, 'was': 1.0, 'dropped': 1.0, 'getting': 1.0, 'and': 2.0, 'it': 5.0, 'had': 1.0, 'purchased': 1.0, 'loved': 1.0, 'the': 2.0, 'wrap': 1.0, 'they': 2.0, 'wraps': 1.0, 'other': 1.0, 'gift': 1.0, 'looking': 1.0, 'like': 2.0, 'son': 1.0, 'up': 1.0, 'brainer': 1.0, 'i': 3.0, 'putting': 1.0, 'you': 1.0, 'when': 1.0, 'us': 1.0, 'breast': 1.0, 'months': 1.0, 'options': 1.0, 'feed': 1.0, 'nightmare': 1.0, 'to': 2.0, 'as': 1.0, 'sleep': 2.0, 'or': 1.0, 'in': 1.0, 'would': 1.0, 'sling': 1.0, 'easy': 2.0, 'because': 1.0, 'mg': 1.0, 'weeks': 1.0, 'after': 1.0, 'if': 2.0, 'your': 1.0, 'deprivation': 1.0, 'a': 4.0, 's': 1.0}
Word element => {'on': 1.0, 'up': 1.0, 'head': 1.0, 'hold': 1.0, 'can': 1.0, 'great': 1.0, 'much': 1.0, 'my': 1.0, 'until': 1.0, 'styles': 1.0, 'a': 1.0, 'newborn': 1.0, 'in': 1.0, 'other': 1.0, 'older': 1.0, 'this': 2.0, 'than': 1.0, 'but': 1.0, 'her': 2.0, 'works': 1.0, 'one': 1.0, 'for': 2.0, 'sling': 1.0, 'get': 1.0, 'i': 1.0, 'own': 1.0, 'better': 1.0, 'did': 1.0, 'sit': 1.0, 'when': 1.0, 'style': 1.0, 'she': 2.0, 'is': 2.0}
Word element => {'kangaroo': 1.0, 'especially': 1.0, 'be': 1.0, 'daughter': 1.0, 'enough': 1.0, 's': 1.0, 'home': 1.0, 'telling': 1.0, 'attendants': 1.0, 'most': 1.0, 'get': 1.0, 'carry': 2.0, 'tail': 1.0, 'wasted': 1.0, 'it': 4.0, 'larger': 1.0, 'instead': 1.0, 'this': 3.0, 'perfect': 1.0, 'with': 2.0, 'a': 5.0, 'small': 2.0, 'have': 4.0, 'correctly': 1.0, 'tried': 1.0, 'mainly': 1.0, 'didn': 1.0, 'compliments': 1.0, 'just': 1.0, 'bag': 1.0, 'light': 1.0, 'they': 1.0, 'and': 4.0, 'rings': 1.0, 'slings': 1.0, 'you': 3.0, 'traveling': 1.0, 'what': 1.0, 'when': 1.0, 'bust': 1.0, 'money': 1.0, 'sometimes': 1.0, 'completely': 1.0, 'around': 1.0, 'really': 1.0, 'that': 2.0, 'very': 1.0, 'pad': 1.0, 'less': 1.0, 'knowing': 1.0, 't': 3.0, 'fit': 3.0, 'love': 1.0, 'adjustable': 2.0, 'secured': 1.0, 'i': 10.0, 'while': 1.0, 'of': 3.0, 'the': 10.0, 'hanging': 1.0, 'sewn': 1.0, 'mine': 1.0, 'fantastic': 1.0, 'great': 3.0, 'comfortable': 1.0, 'sling': 6.0, 'cute': 1.0, 'plus': 1.0, 'company': 1.0, 'shoulder': 2.0, 'don': 2.0, 'to': 6.0, 'other': 1.0, 'all': 1.0, 'waist': 1.0, 'diaper': 1.0, 'leave': 1.0, 'as': 1.0, 'extra': 1.0, 'for': 3.0, 'fabric': 1.0, 'down': 1.0, 'is': 4.0, 'modify': 1.0, 'doubles': 1.0, 'nursing': 1.0, 'her': 2.0, 'use': 1.0, 'without': 2.0, 'works': 1.0, 'if': 1.0, 'idea': 1.0, 'feel': 1.0, 'your': 2.0, 'much': 1.0, 'put': 1.0, 'flight': 2.0, 'on': 3.0, 'she': 1.0, 'deal': 1.0, 'baby': 1.0, 'm': 2.0, 'in': 6.0, 'lap': 1.0, 'better': 1.0, 'my': 2.0, 'me': 3.0, 'from': 1.0, 'designs': 1.0, 'purpose': 1.0, 'loves': 1.0, 'position': 1.0, 'lot': 1.0, 'seated': 1.0, 'one': 1.0, 'helps': 1.0, 'blanket': 1.0, 'so': 1.0}
Word element => {'easy': 1.0, 'quality': 1.0, 'isn': 1.0, 'who': 1.0, 'work': 1.0, 'seems': 1.0, 'will': 1.0, 'probably': 1.0, 'be': 2.0, 'seem': 1.0, 'would': 1.0, 'something': 1.0, 'looking': 1.0, 'moby': 1.0, 'loves': 1.0, 'didn': 1.0, 'in': 1.0, 'age': 1.0, 'did': 1.0, 'clean': 1.0, 'good': 1.0, 'fabric': 1.0, 'her': 5.0, 'type': 1.0, 'old': 1.0, 'tried': 1.0, 'well': 3.0, 'light': 1.0, 'just': 1.0, 'large': 1.0, 'uncomfortable': 1.0, 'months': 1.0, 'i': 4.0, '4': 1.0, 'is': 2.0, 'us': 1.0, 'daughter': 1.0, 'am': 1.0, 'someone': 1.0, 'simpler': 1.0, 'when': 1.0, 'ordered': 1.0, 'this': 3.0, 'with': 1.0, 'sling': 2.0, 'fit': 2.0, 'for': 6.0, 'not': 1.0, 'me': 1.0, 'too': 2.0, 'and': 6.0, 'my': 2.0, 'it': 8.0, 'she': 3.0, 'grand': 1.0, 'seemed': 2.0, 'frustrated': 1.0, 'body': 1.0, 'like': 2.0, 'pocket': 1.0, 'the': 3.0, '34': 2.0, 'over': 1.0, 'up': 1.0, 'doesn': 1.0, 'was': 2.0, 'deep': 1.0, 'legs': 3.0, 'scrunched': 1.0, 't': 3.0, 'we': 1.0, 'out': 1.0, 'pressure': 1.0, 'busty': 1.0, 'thought': 1.0, 'on': 1.0, 'put': 1.0, 'much': 1.0, 'as': 2.0, 'to': 2.0, 'all': 1.0}
Word element => {'there': 1.0, 'wise': 1.0, 'great': 1.0, 'works': 1.0, 'just': 2.0, 'pocket': 1.0, 'already': 1.0, 'if': 1.0, 'bottom': 1.0, 'attach': 1.0, 'not': 1.0, 'does': 1.0, 'that': 2.0, 'is': 1.0, 'about': 1.0, 'thing': 1.0, 'back': 3.0, 'it': 7.0, 'this': 1.0, 'tuck': 1.0, 'and': 4.0, 'the': 5.0, 'reach': 1.0, 'so': 1.0, 'organized': 1.0, 'things': 1.0, 'i': 1.0, 'pockets': 1.0, 'hang': 1.0, 'bought': 1.0, 'be': 1.0, 'travel': 1.0, 'in': 4.0, 'for': 4.0, 'attaches': 1.0, 'easy': 2.0, 'backseat': 1.0, 'store': 1.0, 'will': 1.0, 'also': 1.0, 'item': 1.0, 'toddlers': 1.0, 'keep': 1.0, 'of': 4.0, 'up': 1.0, 'plenty': 1.0, 'storage': 1.0, 'car': 1.0, 'drivers': 1.0, 'removed': 1.0, 'room': 1.0, 'other': 2.0, 'have': 1.0, 'small': 1.0, 'diaper': 1.0, 'additional': 1.0, 'prople': 1.0, 'can': 2.0, 'sitting': 1.0, 'bag': 1.0, 'you': 2.0, 'folded': 1.0, 'a': 3.0, 'has': 1.0, 'well': 1.0, 'our': 2.0, 'to': 5.0, 'all': 1.0, 'seat': 3.0, 'as': 1.0}
Word element => {'waste': 1.0, 'out': 1.0, 'throw': 1.0, 'or': 1.0, 'away': 1.0, 'one': 1.0, 'needs': 1.0, 'sure': 1.0, 'm': 1.0, 'fair': 1.0, 'give': 1.0, 'not': 1.0, 'is': 1.0, 'look': 1.0, 'it': 3.0, 'will': 1.0, 'item': 1.0, 'never': 1.0, 'have': 1.0, 'would': 2.0, 'misleading': 1.0, 'soft': 1.0, 'this': 5.0, 'with': 1.0, 'horribly': 1.0, 'stripes': 1.0, 'online': 2.0, 'had': 1.0, 'what': 1.0, 'shade': 1.0, 'boppy': 2.0, 'i': 5.0, 'of': 1.0, 'packaging': 1.0, 'was': 2.0, 'any': 1.0, 'all': 1.0, 'to': 3.0, 'total': 1.0, 'at': 1.0, 'image': 1.0, 'way': 1.0, 'realise': 1.0, 'cover': 2.0, 'picked': 1.0, 'came': 1.0, 'garish': 1.0, 'that': 3.0, 'strawberry': 1.0, 'fits': 1.0, 'often': 1.0, 'cotton': 1.0, 'be': 2.0, 'a': 1.0, 'accurately': 2.0, 'and': 3.0, 'orange': 1.0, 'the': 4.0, 'cardboard': 1.0, 'money': 1.0, 'but': 3.0, 'can': 1.0, 'identical': 1.0, 'difficult': 1.0, 'colouring': 1.0, 'appears': 1.0, 'crass': 1.0, 'even': 1.0, 'picture': 1.0, 'actuality': 1.0, 'pinks': 1.0, 'in': 4.0, 'colours': 1.0, 'colour': 1.0, 'are': 1.0, 'very': 2.0, 'transmit': 1.0, 'bright': 1.0, 'known': 1.0, 'mostly': 1.0, 'reds': 1.0}
Word element => {'must': 1.0, 'definitely': 1.0, 'just': 1.0, 'makes': 1.0, 'different': 1.0, 'born': 1.0, 'son': 1.0, 'using': 1.0, 'am': 1.0, 'round': 1.0, 'make': 1.0, 'into': 1.0, 'thing': 1.0, 'whole': 1.0, 'fold': 1.0, 'pillowcase': 1.0, 'zippable': 1.0, 'wash': 1.0, 'easy': 1.0, 'extra': 1.0, 'hug': 1.0, 'won': 1.0, 'shaped': 1.0, 'nicely': 2.0, 'this': 2.0, 'bed': 1.0, 'comes': 2.0, 'room': 1.0, 'much': 2.0, 'take': 2.0, 'pillows': 1.0, 'preggo': 1.0, 'needed': 1.0, 'complain': 1.0, 'regret': 1.0, 'people': 1.0, 'without': 2.0, 'for': 3.0, 'actually': 1.0, 'where': 2.0, 'nice': 2.0, 'little': 1.0, 'very': 2.0, 'after': 2.0, 'tired': 1.0, 'they': 2.0, 'slipcover': 1.0, 'balance': 2.0, 'off': 2.0, 'good': 1.0, 'side': 1.0, 'pulling': 1.0, 'up': 1.0, 'relief': 1.0, 'and': 7.0, 'getting': 1.0, 'stomach': 1.0, 'pregnancy': 2.0, 'get': 1.0, 'uncomfortable': 1.0, 'too': 2.0, 'one': 3.0, 'say': 1.0, 'belly': 1.0, 'with': 3.0, 'recline': 1.0, 'it': 11.0, 'can': 3.0, 'pregnant': 2.0, 'but': 2.0, 'body': 3.0, 'as': 1.0, 'back': 1.0, 'sleep': 5.0, 'is': 5.0, 'at': 1.0, 'some': 4.0, 'products': 1.0, 'during': 2.0, 'folds': 1.0, 'baby': 1.0, 'becomes': 1.0, 'i': 8.0, 'knows': 1.0, 'decided': 1.0, 'nearly': 1.0, 'gestation': 1.0, 'boppy': 1.0, 'comfortably': 1.0, 'woman': 2.0, 'impossible': 1.0, 'bulk': 1.0, 'there': 1.0, 'gets': 1.0, 'when': 1.0, 'choice': 1.0, 'you': 5.0, 'on': 5.0, 'point': 1.0, 't': 3.0, 'go': 1.0, 'a': 4.0, 'nights': 1.0, 'away': 1.0, 'searched': 1.0, 'intended': 1.0, 'was': 4.0, 'slowly': 1.0, 'only': 2.0, 'purchase': 1.0, 'my': 3.0, 'still': 1.0, 'snoogle': 1.0, 'full': 1.0, 'in': 3.0, 'ways': 1.0, 'right': 1.0, 'pillow': 5.0, 'desperately': 1.0, 'had': 2.0, 'target': 2.0, 'any': 2.0, 'your': 7.0, 'online': 1.0, 'bought': 2.0, 'registry': 1.0, 'time': 1.0, 'also': 1.0, 'passed': 1.0, 'pretty': 2.0, 'to': 12.0, 'length': 1.0, 'straight': 1.0, 'since': 2.0, 'find': 1.0, 'not': 2.0, 'got': 1.0, 'have': 4.0, 'that': 4.0, 'person': 1.0, 'the': 8.0, 'of': 1.0, 'cushion': 1.0, 'best': 1.0, 'weeks': 1.0, 'snooggle': 1.0, 'would': 1.0}
Word element => {'and': 1.0, 'better': 1.0, 'much': 1.0, 'ultra': 1.0, 'kids': 1.0, 'sunshine': 1.0, 's': 1.0, 'suv': 1.0, 'tall': 1.0, 'part': 1.0, 'it': 1.0, 'nice': 1.0, 'car': 1.0, 'upper': 1.0, 'completely': 1.0, 'of': 1.0, 'not': 1.0, 'seat': 3.0, 'really': 1.0, 'looks': 1.0, 'mat': 2.0, 'digging': 1.0, 'enough': 1.0, 'toddler': 1.0, 'but': 1.0, 'the': 5.0, 'leather': 1.0, 'my': 1.0, 'was': 1.0, 'to': 1.0, 'cover': 1.0, 'protects': 1.0, 'worked': 1.0, 'from': 1.0, 'into': 1.0}
Word element => {'another': 1.0, 'you': 1.0, 'if': 1.0, 'pocket': 2.0, 'use': 1.0, 'and': 1.0, 'allow': 1.0, 'edge': 1.0, 'seat': 1.0, 'beyond': 1.0, 'too': 2.0, 'even': 1.0, 'meet': 1.0, 'our': 2.0, 'but': 1.0, 'will': 1.0, 'is': 2.0, 'really': 1.0, 'bottom': 1.0, 'of': 2.0, 'to': 1.0, 'small': 1.0, 'consider': 1.0, 'honda': 1.0, 'the': 2.0, 'needs': 1.0, 'in': 1.0, 'need': 1.0, 'civic': 1.0, 'mat': 1.0, 'product': 2.0, 'short': 1.0, 'it': 1.0, 'this': 1.0, 'extend': 1.0}
Word element => {'use': 1.0, 'to': 1.0, 'need': 1.0, 'you': 1.0, 'anyone': 1.0, 'about': 1.0, 'years': 1.0, 'have': 1.0, 'their': 1.0, 'that': 2.0, 'a': 1.0, 'tearing': 1.0, 'for': 2.0, 'cares': 1.0, 'this': 1.0, 'it': 2.0, 'is': 1.0, 'really': 1.0, 'seat': 1.0, 'must': 1.0, 'from': 1.0, 'protects': 1.0, 'car': 1.0, 'staining': 1.0, '2': 1.0, 'the': 2.0, '4': 1.0}
Word element => {'a': 1.0, 'bought': 1.0, 'i': 1.0, 'so': 1.0, 'safety': 1.0, 'child': 1.0, 'plastic': 1.0, 'hard': 1.0, 'from': 1.0, 'work': 1.0, 'good': 2.0, 'advertised': 1.0, 'cover': 1.0, 'second': 1.0, 'damage': 1.0, 'exactly': 1.0, 'to': 2.0, 'prevent': 1.0, 'car': 1.0, 'as': 1.0, 'seats': 2.0}
Word element => {'seat': 1.0, 'my': 1.0, 'protect': 1.0, 'latch': 1.0, 'so': 1.0, 'to': 1.0, 'anything': 1.0, 'is': 1.0, 'doesn': 2.0, 'it': 3.0, 'moved': 1.0, 't': 2.0, 'the': 1.0, 'falls': 1.0, 'gets': 1.0, 'top': 1.0, 'twisted': 1.0, 'part': 1.0, 'etc': 1.0, 'constantly': 1.0, 'if': 1.0, 'place': 1.0, 'how': 1.0, 'stay': 1.0, 'gonna': 1.0, 'then': 1.0, 'in': 1.0}
Word element => {'good': 1.0, 'not': 1.0, 'just': 1.0, 'comparison': 1.0, 'in': 1.0, 'ok': 1.0, 'longer': 1.0, 'identical': 1.0, 'but': 2.0, 'quality': 1.0, 'products': 1.0, 'almost': 1.0, 'or': 1.0, 'area': 1.0, 'from': 1.0, 'big': 1.0, 'ordered': 1.0, 'was': 2.0, 'look': 1.0, 'sunshine': 2.0, 'the': 7.0, 'is': 5.0, 'more': 1.0, 't': 1.0, 'one': 2.0, 'for': 3.0, 'which': 1.0, 'got': 1.0, 'i': 4.0, 'thinking': 1.0, 'and': 2.0, 'it': 3.0, 'covers': 1.0, 'as': 1.0, 'our': 1.0, 'seat': 1.0, 'seats': 1.0, 'also': 1.0, 'car': 2.0, 'thicker': 1.0, 'return': 1.0, 'of': 1.0, 'protection': 1.0, 'other': 1.0, 'superior': 1.0, 'kids': 2.0, 'this': 2.0, 'wish': 1.0, 'hadn': 1.0, 'material': 1.0, 'tossed': 1.0, 'box': 1.0, 'would': 1.0, 'kiddopotamus': 1.0}
Word element => {'needed': 1.0, 'when': 1.0, 'in': 1.0, 'not': 1.0, 'material': 1.0, 'protect': 1.0, 'space': 1.0, 'practical': 1.0, 'clean': 1.0, 'folds': 1.0, 'quality': 1.0, 'and': 3.0, 'to': 2.0, 'easy': 1.0, 'small': 1.0, 'necessary': 1.0, 'the': 1.0, 'stores': 1.0, 'really': 1.0, 'seat': 1.0, 'good': 1.0}
Word element => {'would': 1.0, 'overall': 1.0, 'ruined': 1.0, 'where': 1.0, 'like': 1.0, 'feel': 1.0, 'i': 2.0, 'repurchase': 1.0, 'thick': 1.0, 'get': 1.0, 'and': 2.0, 'it': 2.0, 'car': 1.0, 'go': 1.0, 'facing': 1.0, 'toddler': 1.0, 'back': 1.0, 'won': 1.0, 'on': 1.0, 'goes': 1.0, 'nice': 1.0, 'van': 1.0, 'seat': 4.0, 'not': 1.0, 'part': 1.0, 'does': 2.0, 'that': 1.0, 'cover': 2.0, 't': 1.0, 'the': 4.0, 'high': 1.0, 'my': 3.0, 'mini': 1.0, 'of': 1.0, 'up': 1.0, 'enough': 1.0, 'to': 1.0, 'in': 1.0, 'for': 1.0, 'is': 1.0, 'rear': 1.0}
Word element => {'your': 1.0, 'this': 1.0, 'marks': 1.0, 'temporary': 1.0, 'into': 1.0, 'is': 1.0, 'normal': 1.0, 'hour': 1.0, 'indendations': 1.0, 'see': 1.0, 'usually': 1.0, 'product': 1.0, 'toddler': 2.0, 'cushioning': 1.0, 'grips': 1.0, 'material': 1.0, 'mat': 3.0, 'recommend': 1.0, 'rubbery': 1.0, 'complants': 1.0, 'far': 1.0, 'different': 2.0, 'used': 1.0, 'remove': 1.0, 'soft': 1.0, 'cracks': 1.0, 'compared': 1.0, 'part': 1.0, 'from': 2.0, 'when': 2.0, 'inexpensive': 1.0, 'born': 1.0, 'the': 12.0, 'of': 5.0, 'are': 1.0, 'brands': 1.0, 'around': 1.0, 'his': 1.0, 'preventing': 1.0, 'ordered': 1.0, 'light': 1.0, 'no': 2.0, 'ours': 1.0, 'years': 1.0, '3': 1.0, 'accommodate': 1.0, 'do': 1.0, 'and': 9.0, 'that': 3.0, 'son': 1.0, 'facing': 1.0, 'tightly': 1.0, 'these': 3.0, 'protect': 1.0, 'more': 1.0, '2': 2.0, 'but': 2.0, 'fairly': 1.0, 'ago': 1.0, 'we': 3.0, 'a': 1.0, 'my': 1.0, 'pulled': 1.0, 'job': 1.0, 'to': 6.0, 'in': 7.0, 'seat': 6.0, 'wonderfully': 1.0, 'consider': 1.0, 'car': 6.0, 'ever': 1.0, 'an': 1.0, 'all': 3.0, 'other': 1.0, 'aferwards': 1.0, 'same': 1.0, 'for': 2.0, 'was': 1.0, 'two': 2.0, 'catches': 1.0, 'i': 3.0, 'backside': 1.0, '1': 1.0, 'since': 2.0, 'had': 2.0, 'would': 1.0, 'sliding': 1.0, 'summer': 1.0, 'either': 1.0, 'have': 4.0, 'some': 2.0, 'none': 1.0, '5': 2.0, 'most': 1.0, 'back': 1.0, 'scratching': 1.0, 'protected': 1.0, 'provides': 1.0, 'over': 2.0, 'position': 1.0, 'or': 2.0, 'kiddopotamus': 1.0, 'our': 4.0, 'sprinkle': 1.0, 'pull': 1.0, 'duomats': 1.0, 'spills': 1.0, 'prevent': 1.0, 'very': 2.0, 'backless': 1.0, 'booster': 1.0, 'leather': 1.0, 'with': 2.0, 'rear': 1.0, 'one': 1.0, 'baby': 4.0, 'folds': 1.0, 'pretzel': 1.0, 'it': 4.0, 'also': 1.0, 'crumbs': 2.0, 'indentations': 1.0, 'kids': 1.0, 'so': 3.0, 'generously': 1.0, 'woulod': 1.0, 'next': 2.0, 'has': 2.0, 'cars': 2.0, 'mats': 1.0, 'always': 1.0, '6': 1.0, 'infant': 1.0, 'mine': 1.0, 'fair': 1.0, 'cheerios': 1.0, 'amount': 1.0, 'on': 1.0, 'seats': 6.0, 'just': 1.0, 'stuff': 1.0}
Word element => {'toys': 1.0, 'our': 2.0, 'storage': 1.0, 'in': 1.0, 'love': 1.0, 'for': 1.0, 'amazing': 1.0, 'the': 5.0, 'is': 2.0, 'on': 2.0, 'fit': 1.0, 'it': 2.0, 'this': 1.0, 'mat': 2.0, 'keeping': 1.0, 'suv': 2.0, 'leather': 1.0, 'organized': 1.0, 'perfectly': 1.0, 'and': 2.0, 'pockets': 1.0, 'as': 1.0, 'seat': 1.0, 'intact': 1.0, 'clean': 1.0, 'work': 1.0, 'kids': 1.0}
Word element => {'second': 1.0, 'for': 1.0, 'impreza': 1.0, 'forward': 1.0, 'but': 1.0, 'subaru': 1.0, 'air': 1.0, 'in': 1.0, 'safety': 1.0, 'this': 1.0, 'with': 2.0, 'hard': 1.0, 'really': 1.0, 'is': 1.0, 'currently': 1.0, 'it': 2.0, 'covers': 1.0, 'm': 1.0, 'protect': 1.0, 'a': 3.0, '1st': 1.0, 'since': 1.0, 'using': 1.0, 'and': 1.0, 'does': 1.0, 'carseat': 1.0, 'your': 1.0, 'i': 2.0, 'everywhere': 1.0, 'over': 1.0, 'the': 3.0, 'deal': 1.0, 'seats': 1.0, 'touches': 1.0, 'access': 1.0, 'pocket': 1.0, 'car': 1.0, 'not': 1.0, 'just': 1.0, 'seat': 2.0, 'to': 1.0, 'facing': 1.0, 'storage': 2.0, 'vehicle': 1.0, 'save': 1.0, 'my': 2.0, 'another': 1.0, 'have': 1.0, 'big': 1.0, 'bought': 1.0}
Word element => {'for': 1.0, 'high': 1.0, 'too': 1.0, 'almost': 1.0, 'seat': 1.0, 'car': 1.0, 'little': 1.0, 'hang': 1.0, 'a': 1.0, 'don': 1.0, 'is': 1.0, 'longer': 1.0, 'enough': 1.0, 'be': 2.0, 'to': 1.0, 'ends': 1.0, 'mat': 1.0, 'usable': 1.0, 'pouches': 1.0, 'at': 2.0, 'both': 1.0, 'down': 1.0, 'low': 1.0, 'could': 1.0, 'it': 1.0, 'the': 5.0, 't': 1.0, 'very': 1.0, 'back': 1.0, 'bottom': 1.0, 'of': 1.0}
Word element => {'to': 1.0, 'anything': 1.0, 'can': 1.0, 'i': 1.0, 'about': 1.0, 'price': 1.0, 'for': 1.0, 'in': 2.0, 'durable': 1.0, 'of': 1.0, 'divots': 1.0, 'base': 1.0, 'seats': 1.0, 't': 1.0, 'the': 4.0, 'leather': 1.0, 'my': 2.0, 'think': 1.0, 'latch': 1.0, 'anchors': 1.0, 'between': 1.0, 'and': 1.0, 'perfectly': 1.0, 'fits': 1.0, 'car': 1.0, 'complain': 1.0, 'feels': 1.0, 'little': 1.0, 'by': 1.0, 'were': 1.0, 'eliminated': 1.0, 'that': 1.0, 'being': 1.0, 'left': 1.0, 'carseat': 1.0}
Word element => {'than': 1.0, 'maybe': 1.0, 'wrong': 1.0, 'instead': 1.0, 'diono': 1.0, 'so': 1.0, 'cleats': 1.0, 'my': 1.0, 'for': 1.0, 'durable': 2.0, 'be': 2.0, 'was': 2.0, 'into': 2.0, 'enough': 1.0, 'off': 1.0, 'tucks': 1.0, 'have': 1.0, 'which': 1.0, 'looks': 1.0, 'it': 7.0, 'and': 1.0, 'car': 1.0, 'could': 1.0, 's': 1.0, 'going': 1.0, 'a': 3.0, 'believe': 1.0, 'the': 6.0, 'keep': 2.0, 'flap': 1.0, 'works': 1.0, 'well': 1.0, 'has': 2.0, 'climbs': 1.0, 'mat': 3.0, 'seat': 5.0, 'to': 4.0, 'corners': 1.0, 'son': 2.0, 'very': 1.0, 'this': 1.0, 'grip': 1.0, 'soccer': 1.0, 'sliding': 2.0, 'great': 1.0, 'nylon': 1.0, 'your': 1.0, 'on': 3.0, 'from': 2.0, 'while': 1.0, 'daughter': 1.0, 'their': 1.0, 'bottom': 1.0, 'surface': 2.0, 'also': 1.0, 'rubber': 1.0, 'more': 1.0, 'is': 2.0, 'around': 1.0, 'with': 1.0, 'leather': 1.0, 'went': 1.0, 'seats': 1.0, 'resting': 1.0, 'easy': 1.0, 'good': 1.0, 'clean': 1.0, 'but': 1.0, 'otherwise': 1.0, 'i': 3.0, 'material': 1.0, 'didnt': 1.0}
Word element => {'just': 1.0, 'got': 1.0, 'job': 1.0, 's': 1.0, 'sure': 1.0, 'would': 1.0, 'cost': 1.0, 'low': 1.0, 'for': 2.0, 'looking': 1.0, 'car': 1.0, 'new': 1.0, 'in': 1.0, 'seats': 1.0, 'that': 2.0, 'something': 1.0, 'our': 1.0, 'were': 1.0, 'i': 3.0, 'when': 1.0, 'was': 1.0, 'to': 1.0, 'is': 1.0, 'expectations': 1.0, 'received': 1.0, 'exceeded': 1.0, 'my': 1.0, 'made': 1.0, 'of': 1.0, 'it': 2.0, 'this': 1.0, 'duty': 1.0, 'has': 1.0, 'the': 1.0, 'heavy': 1.0, 'product': 1.0, 'material': 1.0, 'do': 1.0, 'done': 1.0, 'and': 2.0, 'well': 1.0, 'protect': 1.0}
Word element => {'spent': 1.0, 'once': 1.0, 'child': 1.0, 'remove': 1.0, 'was': 1.0, 'to': 1.0, 'deep': 1.0, 'go': 1.0, 'where': 1.0, 'when': 1.0, 'if': 1.0, 'for': 1.0, 'money': 1.0, 'located': 1.0, 'price': 1.0, 'any': 1.0, 'years': 1.0, 'from': 1.0, 'permanent': 1.0, 'must': 1.0, 'regret': 1.0, 'well': 1.0, 'a': 3.0, 'is': 1.0, 'car': 2.0, 'and': 1.0, 'do': 1.0, 'item': 1.0, 'the': 2.0, 'great': 1.0, 'this': 1.0, 'it': 1.0, 'impression': 1.0, 'you': 4.0, 'later': 1.0, 'not': 1.0, 'seat': 3.0, 'will': 1.0, 'have': 2.0, 'protector': 1.0, 'surely': 1.0}
Word element => {'car': 1.0, 'colored': 1.0, 'neutral': 1.0, 'girl': 1.0, 'help': 1.0, 'people': 1.0, 'is': 1.0, 'place': 1.0, 'blankets': 1.0, 'without': 1.0, 'dry': 1.0, 'and': 1.0, 'warm': 1.0, 'tossing': 1.0, 'her': 1.0, 'baby': 1.0, 'one': 1.0, 'jj': 1.0, 'i': 2.0, 'seat': 1.0, 'know': 1.0, 'because': 1.0, 'not': 1.0, 'great': 1.0, 'the': 4.0, 'over': 2.0, 'cole': 1.0, 'happy': 1.0, 'keep': 1.0, 'did': 1.0, 'all': 1.0, 'have': 2.0, 'ordered': 1.0, 'its': 1.0, 'was': 1.0, 'to': 4.0, 'put': 1.0, 'with': 1.0, 'this': 1.0, 'it': 1.0, 'you': 1.0, 'way': 1.0, 'under': 1.0, 'pink': 1.0, 'safer': 1.0, 'a': 3.0}
Word element => {'other': 1.0, 'this': 1.0, 'is': 1.0, 'confident': 1.0, 'feel': 1.0, 'harder': 1.0, 'carseat': 1.0, 'of': 1.0, 'getting': 1.0, 'seem': 1.0, 'recommend': 1.0, 'doesn': 1.0, 'close': 1.0, 'her': 2.0, 'fabric': 1.0, 'bother': 1.0, 'opening': 1.0, 'head': 1.0, 'thought': 1.0, 'happy': 1.0, 'mothers': 1.0, 'looked': 1.0, 'she': 1.0, 'it': 5.0, 'with': 2.0, 'out': 3.0, 'instead': 1.0, 'somehow': 1.0, 'warm': 2.0, 'baby': 3.0, 'easily': 1.0, 'am': 1.0, 'when': 1.0, 'by': 1.0, 'i': 7.0, 'goes': 1.0, 'live': 1.0, 'cozyup': 1.0, 'at': 1.0, 'keep': 1.0, 'recommended': 1.0, 'wanted': 1.0, 'and': 5.0, 'but': 2.0, 'massachusetts': 1.0, 'face': 1.0, 'went': 2.0, 'the': 7.0, 'safety': 1.0, 'sits': 1.0, 'on': 1.0, 'make': 1.0, 'performance': 1.0, 'sure': 1.0, 'bundleme': 1.0, 'in': 3.0, 'far': 1.0, 'then': 1.0, 'very': 2.0, 'read': 1.0, 'that': 2.0, 'not': 1.0, 'having': 1.0, 'because': 1.0, 'any': 1.0, 'to': 4.0, 'seat': 2.0, 'car': 2.0, 'experts': 1.0, 'between': 1.0, 'isn': 1.0, 'compromising': 1.0, 'so': 3.0, 'bottom': 1.0, 'going': 1.0, 't': 2.0, 'might': 1.0, 'we': 1.0, 'could': 1.0, 's': 2.0, 'a': 1.0, 'my': 2.0, 'crash': 1.0}
Word element => {'good': 1.0, 'overall': 1.0, 'or': 1.0, 'when': 1.0, 'face': 1.0, 'his': 1.0, 'completely': 1.0, 'flap': 1.0, 'tired': 1.0, 'and': 3.0, 'gotten': 1.0, 'do': 1.0, 'very': 3.0, 'son': 1.0, 'it': 5.0, 'children': 1.0, 'older': 1.0, 'with': 1.0, 'snowing': 1.0, 'raining': 1.0, 'but': 1.0, 'be': 1.0, 'replaced': 1.0, 'to': 2.0, 'had': 2.0, 'liked': 1.0, 'product': 1.0, 'for': 1.0, 'really': 1.0, 'i': 4.0, 's': 2.0, 'a': 2.0, 'nastiest': 1.0, 'needed': 1.0, 'carrier': 1.0, 'been': 1.0, 'that': 2.0, 'cover': 3.0, 'was': 1.0, 'unfortunately': 1.0, 'my': 2.0, 'ordered': 1.0, 'have': 1.0, 'seems': 1.0, 'in': 1.0, 'three': 1.0, 'keep': 1.0, 'warm': 1.0, 'conditions': 1.0, 'would': 1.0, 'cozy': 1.0, 'even': 1.0, 'the': 1.0, 'this': 1.0, 'wish': 1.0, 'there': 1.0, 'of': 1.0, 'some': 1.0, 'happy': 1.0, 'sort': 1.0}
Word element => {'in': 1.0, 'get': 1.0, 'taking': 1.0, 'started': 1.0, 'very': 1.0, 'driving': 1.0, 'm': 1.0, 'fussing': 1.0, 'miss': 1.0, 'when': 1.0, 'car': 2.0, 'love': 1.0, 'for': 1.0, 'one': 2.0, 'liked': 1.0, 'using': 1.0, 'which': 1.0, 'i': 10.0, 'she': 1.0, 'it': 3.0, 'covers': 1.0, 'got': 1.0, 'instead': 1.0, 'that': 2.0, 'dd': 1.0, 'off': 1.0, 'cover': 1.0, 'this': 2.0, 'first': 1.0, 'seat': 1.0, 'was': 2.0, 'now': 1.0, 'nervous': 1.0, 'inspector': 1.0, 'carseat': 1.0, 'her': 1.0, 'safe': 1.0, 'told': 1.0, 'at': 1.0, 'not': 1.0, 'me': 4.0, 'and': 3.0, 'these': 1.0, 'should': 1.0, 'have': 1.0, 'once': 1.0, 'shower': 1.0, 'of': 1.0, 'child': 1.0, 'up': 1.0, 'makes': 1.0, 'type': 1.0, 'but': 1.0, 's': 1.0, 'a': 1.0, 'notice': 1.0, 'underneath': 1.0, 'cap': 1.0, 'my': 2.0, 'the': 4.0, 'turns': 1.0, 'head': 1.0, 'bundle': 2.0, 'after': 1.0, 'ends': 1.0}
Word element => {'wish': 1.0, 'into': 1.0, 'of': 2.0, 'store': 1.0, 'bunch': 1.0, 'a': 1.0, 'would': 1.0, 'him': 1.0, 'had': 1.0, 'to': 1.0, 'trying': 1.0, 'blankets': 1.0, 'carry': 1.0, 'no': 1.0, 'warm': 1.0, 'and': 3.0, 'before': 1.0, 'children': 1.0, 'older': 1.0, 'with': 1.0, 'it': 4.0, 'this': 2.0, 'fit': 1.0, 'so': 1.0, 'item': 1.0, 'right': 1.0, 'loved': 1.0, 'snowed': 1.0, 'purchased': 1.0, 'm': 1.0, 'car': 1.0, 'i': 6.0, 'glad': 1.0, 'did': 1.0, 'on': 1.0, 'very': 1.0, 'son': 1.0, 'more': 1.0, 'great': 1.0, 'the': 2.0, 'my': 2.0, 'just': 1.0, 'seat': 1.0, 'keeps': 1.0}
Word element => {'same': 1.0, 'at': 1.0, 'and': 1.0, 'he': 1.0, 'coming': 1.0, 'warm': 1.0, 'out': 1.0, 'keeps': 1.0, 'cold': 2.0, 'see': 2.0, 'toasty': 1.0, 'them': 1.0, 'baby': 1.0, 'it': 3.0, 'son': 1.0, 'still': 1.0, 'outside': 1.0, 'to': 2.0, 'was': 2.0, 'winter': 1.0, 'the': 5.0, 'great': 1.0, 'product': 1.0, 'for': 1.0, 'is': 2.0, 'really': 1.0, 'months': 1.0, 'over': 1.0, 'or': 2.0, 'in': 1.0, 'this': 2.0, 'allows': 1.0, 'perfect': 1.0, 'dry': 1.0, 'car': 2.0, 'my': 1.0, 'did': 1.0, 'but': 1.0, 'raining': 1.0, 'like': 1.0, 'blanket': 1.0, 'stay': 1.0, 'not': 1.0, 'me': 1.0, 'when': 3.0, 'tossing': 1.0, 'him': 1.0, 'would': 1.0, 'could': 1.0, 'a': 2.0, 'we': 1.0, 'go': 1.0, 'time': 1.0, 'so': 1.0, 'item': 1.0}
Word element => {'really': 1.0, 've': 1.0, 'you': 1.0, 'if': 1.0, 'rides': 1.0, 'able': 1.0, 'has': 1.0, 'they': 1.0, 'got': 1.0, 'even': 1.0, 'great': 2.0, 'but': 2.0, '2': 1.0, 'the': 1.0, 'for': 5.0, 'bed': 1.0, 'car': 1.0, 'elmo': 1.0, 'year': 1.0, 'old': 1.0, 'other': 1.0, 'this': 2.0, 'only': 1.0, 'with': 1.0, 'train': 1.0, 'she': 2.0, 'it': 1.0, 'into': 1.0, 'that': 1.0, 'loves': 1.0, 'her': 5.0, 'good': 1.0, 'gift': 1.0, 'thomas': 4.0, 'items': 1.0, 'so': 1.0, 'however': 1.0, 'have': 1.0, 'small': 1.0, 'was': 1.0, 'all': 1.0, 'our': 1.0, 'to': 7.0, 'around': 1.0, 'is': 1.0, 'child': 1.0, 'playtime': 2.0, 'not': 1.0, 're': 1.0, 'limited': 1.0, 'enough': 2.0, 'kicked': 1.0, 'on': 1.0, 'make': 1.0, 'safe': 1.0, 'take': 2.0, 'out': 1.0, 'room': 1.0, 'a': 3.0, 's': 2.0, 'item': 1.0, 'also': 1.0, 'be': 1.0}
Word element => {'one': 1.0, 'have': 1.0, 'should': 1.0, 'very': 1.0, 'and': 2.0, 'every': 1.0, 'flexible': 1.0, 'versatile': 1.0, 'with': 1.0, 'excellent': 1.0, 'protection': 1.0, 'coverage': 1.0, 'stroller': 1.0}
Word element => {'out': 1.0, 'must': 1.0, 'storage': 1.0, 'compact': 1.0, 'into': 1.0, 'material': 1.0, 'sturdy': 1.0, 'useful': 1.0, 'right': 1.0, 'pocket': 2.0, 'extra': 2.0, 'side': 1.0, 'pockets': 1.0, 'sunscreen': 1.0, 'now': 1.0, 'limit': 1.0, 'stroller': 1.0, 'like': 1.0, 'flop': 1.0, 'only': 1.0, 'this': 2.0, 'great': 2.0, 'itself': 1.0, 'in': 2.0, 'the': 8.0, 'windy': 1.0, 'light': 1.0, 'just': 1.0, 'tends': 1.0, 'can': 1.0, 'but': 1.0, 'back': 1.0, 'shade': 1.0, 'give': 1.0, 'very': 1.0, 'little': 2.0, 'conditions': 1.0, 'bottle': 1.0, 'so': 1.0, 'bit': 1.0, 'love': 1.0, 'for': 2.0, 'stars': 1.0, 'product': 1.0, 'otherwise': 1.0, 'i': 2.0, '4': 1.0, 'put': 1.0, 'on': 2.0, 'is': 5.0, 'overall': 1.0, 'too': 1.0, 'and': 2.0, 'breathable': 1.0, 'because': 2.0, 'does': 1.0, 'inside': 1.0, 'down': 1.0, 'it': 7.0, 'annoying': 1.0, 'my': 2.0, 'folds': 1.0, 'get': 1.0, 'easy': 2.0, 'he': 1.0, 'adjust': 1.0, 'when': 2.0, 'gives': 1.0, 'kid': 1.0, 'to': 4.0, 'all': 2.0, 'pulls': 1.0, 'way': 1.0, 'go': 1.0, 'we': 2.0, 'a': 4.0, 's': 1.0, 'washable': 1.0, 'child': 1.0, 'legs': 1.0}
Word element => {'uvb': 1.0, 'joggers': 1.0, 'way': 1.0, 'inexpensive': 1.0, 'shade': 2.0, 'of': 1.0, 'sides': 1.0, 'both': 1.0, 'storage': 1.0, 'further': 1.0, 'sun': 1.0, 'ones': 1.0, 'the': 5.0, 'shading': 1.0, 'it': 2.0, 'sufficient': 1.0, 'this': 2.0, 'eyes': 1.0, 'simple': 1.0, 'very': 1.0, 'little': 1.0, 'better': 1.0, 'recently': 1.0, 'shades': 1.0, 'i': 1.0, 'is': 1.0, 'jogger': 1.0, 'majority': 1.0, 'in': 1.0, 'love': 1.0, 'for': 2.0, 'bought': 2.0, 'wich': 1.0, 'them': 1.0, 'has': 1.0, 'review': 1.0, 't': 1.0, 'a': 3.0, 'bonus': 1.0, 'like': 1.0, 'into': 1.0, 'that': 1.0, 'stroller': 2.0, 'extend': 1.0, 'your': 2.0, 'on': 3.0, 'put': 1.0, 'blockage': 1.0, 'had': 1.0, 'was': 3.0, 'to': 2.0, 'and': 4.0, 'too': 1.0, 'someone': 1.0, 'when': 1.0, 'pleased': 1.0, 'so': 1.0, 'aren': 1.0, 'can': 1.0, 'pull': 1.0, 'down': 1.0, 'heading': 1.0, 'even': 2.0, 'pocket': 1.0, 'they': 1.0, 'directly': 1.0}
Word element => {'must': 1.0, 'when': 1.0, 'stays': 1.0, 'chicco': 1.0, 'fits': 1.0, 'for': 1.0, 'have': 1.0, 'babies': 1.0, 'thank': 1.0, 'your': 1.0, 'like': 1.0, 'don': 1.0, 'that': 1.0, 'kiddopotamus': 1.0, 'a': 2.0, 'stop': 1.0, 'then': 1.0, 'on': 3.0, 'is': 1.0, 'reviews': 1.0, 'travel': 1.0, 'product': 3.0, 'place': 1.0, 'up': 1.0, 'fold': 1.0, 'met': 1.0, 'reading': 1.0, 'and': 2.0, 'my': 1.0, 're': 1.0, 'you': 4.0, 'if': 1.0, 't': 2.0, 'the': 3.0, 'order': 1.0, 'book': 1.0, 'stroller': 2.0, 'will': 2.0, 'not': 1.0, 'skin': 1.0, 'this': 3.0, 'it': 2.0, 'in': 1.0, 'perfect': 2.0, 'i': 2.0, 'regreat': 1.0, 'haven': 1.0}
Word element => {'me': 1.0, 'bother': 1.0, 'doesn': 1.0, 'there': 1.0, 'isn': 1.0, 'which': 1.0, 'bit': 1.0, 'has': 1.0, 'front': 1.0, 'forward': 1.0, 'prius': 1.0, 'get': 1.0, 'easy': 1.0, 'comfortable': 2.0, 'stroller': 1.0, 'or': 1.0, 'house': 1.0, 'from': 1.0, 'long': 1.0, 'carry': 1.0, 'don': 1.0, '13': 1.0, 'would': 2.0, 'a': 2.0, 't': 3.0, 'we': 2.0, 'distances': 1.0, 'second': 1.0, 'very': 1.0, 'grew': 1.0, 'is': 4.0, 'in': 5.0, 'regular': 1.0, 'skinny': 1.0, 'really': 1.0, 'i': 1.0, '4': 1.0, 'usually': 1.0, 'because': 1.0, 'of': 3.0, 'his': 1.0, 'luckily': 1.0, 'height': 1.0, 'baby': 2.0, 'fits': 1.0, 'another': 1.0, 'assumed': 1.0, 'goes': 1.0, 'grown': 1.0, 'limitations': 1.0, 'the': 6.0, 'him': 1.0, 'be': 3.0, 'months': 3.0, 'bought': 1.0, 'old': 2.0, 'heavy': 1.0, 'first': 1.0, 'pounder': 1.0, 'this': 2.0, 'he': 2.0, 'it': 7.0, 'with': 1.0, 'to': 4.0, 'seat': 5.0, 'our': 4.0, 'snugride': 1.0, 'already': 1.0, 'out': 3.0, 'm': 1.0, 'stature': 1.0, 'now': 1.0, 'moved': 1.0, 'similar': 1.0, 'and': 5.0, 'have': 1.0, 'car': 2.0, 'infant': 1.0, 'sitting': 1.0, 'four': 1.0, 'but': 4.0, 'will': 1.0, 'grandparents': 1.0, 'for': 3.0, 'by': 1.0, 'few': 1.0}
Word element => {'seats': 1.0, 'between': 1.0, 'other': 1.0, 'comparing': 1.0, 'sit': 1.0, 'narrow': 1.0, 'fairly': 1.0, 'girl': 1.0, 'big': 1.0, 'excited': 1.0, 'survived': 1.0, 'flights': 1.0, '3': 1.0, 'on': 1.0, 'times': 1.0, 'younger': 1.0, 'have': 3.0, 'a': 1.0, 'we': 1.0, 'treasures': 1.0, 'very': 1.0, 'little': 1.0, 'her': 1.0, 'these': 1.0, 'storing': 1.0, 'europe': 1.0, 'luggage': 1.0, 'also': 2.0, 'can': 1.0, 'but': 1.0, 'with': 1.0, 'like': 2.0, 'and': 5.0, 'now': 2.0, 'had': 1.0, 'is': 3.0, 'check': 1.0, 'herself': 1.0, 'taken': 1.0, 'combination': 1.0, 'another': 2.0, 'my': 2.0, 'one': 1.0, 'bought': 1.0, 'color': 1.0, 'cup': 1.0, '6': 1.0, 'still': 1.0, 'only': 1.0, 'sand': 1.0, 'old': 2.0, 'two': 1.0, 'i': 4.0, 'not': 1.0, 'so': 1.0, 'navy': 1.0, 'time': 2.0, 'car': 3.0, 'for': 4.0, 'numerous': 1.0, 'years': 3.0, 'daughter': 2.0, 'in': 5.0, 'damage': 1.0, 'wash': 1.0, 'buckle': 1.0, 'new': 1.0, 'has': 1.0, 'well': 1.0, 'three': 1.0, 'at': 1.0, 'any': 1.0, 'our': 1.0, 'as': 1.0, 'cups': 1.0, 'to': 5.0, 'seat': 3.0, 'least': 1.0, 'it': 3.0, 'looks': 1.0, 'she': 3.0, 'just': 1.0, 'few': 1.0, 'person': 1.0, 'ease': 1.0, 'days': 1.0, 'after': 1.0, 'without': 1.0, 'the': 2.0, 'types': 1.0, 'cover': 1.0, 'us': 1.0, 'able': 1.0, 'that': 1.0, 'loves': 1.0, 'this': 2.0, 'holders': 1.0}
Word element => {'otherwise': 1.0, 'two': 1.0, 'head': 1.0, 'pushes': 1.0, 'wanted': 2.0, 'set': 1.0, 'neck': 1.0, 'has': 2.0, 'pillow': 1.0, 'an': 1.0, 'be': 1.0, 'grow': 2.0, 'our': 1.0, 'as': 2.0, 'never': 1.0, 'washes': 1.0, 'would': 1.0, 'use': 2.0, 'her': 10.0, 'great': 2.0, 'comfortable': 3.0, 'investment': 1.0, 'for': 6.0, 'held': 1.0, 'too': 1.0, 'tall': 1.0, 'and': 10.0, 'juice': 1.0, 'daughter': 1.0, 'pull': 1.0, 'a': 2.0, 'we': 2.0, 's': 3.0, 'going': 1.0, 'it': 6.0, 'she': 7.0, 'this': 3.0, 'holders': 1.0, 'with': 3.0, 'forward': 1.0, 'but': 2.0, 'traditional': 1.0, 'when': 1.0, 'outgrown': 1.0, 'is': 9.0, 'combination': 1.0, 'easily': 1.0, 'that': 3.0, 'into': 1.0, 'loves': 1.0, 'been': 1.0, 'age': 1.0, 'seat': 7.0, 'in': 1.0, 'excellent': 1.0, 'car': 3.0, 'only': 1.0, 'quickly': 1.0, 'outgrew': 1.0, 'from': 1.0, 'easy': 1.0, 'get': 1.0, 'out': 2.0, 'to': 5.0, 'removes': 1.0, 'update': 1.0, 'althoug': 1.0, 'moves': 1.0, 'the': 8.0, 'of': 1.0, 'very': 1.0, 'being': 1.0, 'able': 1.0, 'push': 1.0, 'are': 1.0, 'armrests': 1.0, 'cup': 1.0, 'booster': 2.0, 'adjustable': 1.0, 'entire': 1.0, 'back': 2.0, 'included': 1.0, 'can': 1.0, 'headrest': 1.0, 'so': 1.0, 'just': 1.0, 'far': 1.0, 'bottom': 1.0, 'ready': 1.0, 'will': 1.0, 'grows': 1.0, 'strong': 1.0, 'still': 3.0, 'using': 1.0, 'up': 1.0, 've': 1.0, 'several': 1.0, 'spills': 1.0}
Word element => {'line': 1.0, 'pleased': 1.0, 'little': 1.0, 'local': 1.0, 'a': 2.0, 'at': 1.0, 'purchased': 1.0, 'child': 1.0, 'mom': 1.0, 'should': 1.0, 'new': 1.0, 'good': 1.0, 'store': 1.0, 'recommend': 1.0, 'done': 1.0, 'and': 1.0, 'but': 1.0, 'quality': 1.0, 'my': 2.0, 'for': 2.0, 'had': 1.0, 'very': 2.0, 'problems': 1.0, 'i': 2.0, 've': 1.0, 'perfect': 1.0, 'any': 2.0, 'colors': 1.0, 'nursery': 1.0, 'haven': 1.0, 'beautiful': 1.0, 'brand': 1.0, 'more': 1.0, 't': 1.0, 'research': 1.0, 'first': 1.0, 'this': 3.0, 'with': 3.0, 'thanks': 1.0, 'laundering': 1.0, 'product': 2.0, 'would': 1.0}
Word element => {'accordingly': 1.0, 'pick': 1.0, 'together': 1.0, 'does': 1.0, 'also': 1.0, 'easier': 1.0, 'would': 1.0, 'sound': 1.0, 'goes': 1.0, 'go': 1.0, 'swing': 1.0, 'his': 1.0, 'need': 1.0, 'or': 1.0, 'falls': 1.0, 'place': 1.0, 'unit': 3.0, 'work': 1.0, 'into': 1.0, 'designed': 1.0, 'are': 1.0, 'handsets': 2.0, 'set': 1.0, 'from': 1.0, 'excellent': 1.0, 'really': 1.0, 'batteries': 1.0, 'won': 1.0, 'having': 1.0, 'same': 1.0, 'hear': 2.0, 'room': 1.0, 'in': 4.0, 'sleeping': 1.0, 'each': 1.0, 'main': 3.0, 'time': 2.0, 'new': 2.0, 'let': 1.0, 'problem': 1.0, 'don': 1.0, 'up': 4.0, 'price': 2.0, 'asleep': 1.0, 'which': 2.0, 'good': 2.0, 'very': 2.0, 'monitor': 6.0, 'little': 1.0, 'plug': 1.0, 's': 4.0, 't': 2.0, 'a': 7.0, 'move': 1.0, 'used': 1.0, 'completely': 1.0, 'static': 3.0, 'but': 3.0, '2': 1.0, 'so': 3.0, 'can': 1.0, 'always': 1.0, 'has': 2.0, 'appears': 1.0, 'use': 2.0, 'at': 1.0, 'is': 9.0, 'more': 1.0, 'control': 2.0, 'of': 2.0, 'the': 25.0, 'for': 3.0, 'high': 1.0, 'to': 12.0, 'an': 1.0, 'other': 1.0, 'all': 2.0, 'opinion': 1.0, 'extra': 2.0, 'exact': 1.0, 'have': 6.0, 'my': 2.0, 'be': 4.0, 'granted': 1.0, 'bought': 1.0, 'volume': 4.0, 'with': 4.0, 'this': 4.0, 'only': 2.0, 'hum': 1.0, 'much': 2.0, 'and': 5.0, 'across': 1.0, 'handset': 2.0, 'it': 12.0, 'already': 1.0, 'on': 5.0, 'i': 6.0, 'run': 1.0, 'downside': 1.0, 'fact': 1.0, 'old': 1.0, 'not': 5.0, 'one': 2.0, 'too': 2.0, 'lot': 1.0, 'you': 8.0, 'when': 2.0, 'noise': 6.0, 'could': 1.0, 'will': 4.0, 'months': 1.0, 'get': 2.0, 'lighted': 1.0, 'just': 6.0, 'lighting': 1.0, 'light': 1.0, 'ablilty': 1.0, 'by': 1.0, 'clear': 1.0, 'if': 4.0, 'turn': 2.0, 'turned': 1.0, 'down': 1.0, 'where': 1.0, 're': 2.0, 'especially': 1.0, 'he': 4.0, 'bottom': 1.0, 'like': 1.0, 'familiar': 1.0, 'grandson': 1.0, 'know': 1.0, 'because': 1.0, 'that': 3.0, 'scale': 1.0, 'runs': 1.0, 'adapters': 2.0, 'top': 1.0, 'she': 1.0, 'baby': 4.0, 'versus': 1.0, 'there': 1.0, 'appear': 2.0, 'without': 1.0, 'slightly': 1.0, 'had': 1.0, 'grunting': 1.0, 'fine': 1.0, 'then': 1.0, 'lights': 1.0, 'louder': 1.0, 'adjust': 1.0, 'gets': 1.0, 'line': 1.0}
Word element => {'feet': 1.0, '60': 1.0, 'end': 1.0, 'opposite': 1.0, 'of': 2.0, 'had': 1.0, '1': 1.0, 'over': 1.0, 'every': 1.0, 'have': 3.0, 'some': 1.0, 'problems': 1.0, 'noticed': 1.0, 'tremendous': 1.0, 'has': 1.0, 'waking': 1.0, 'can': 1.0, 'this': 3.0, 'way': 1.0, 'emit': 1.0, 'from': 1.0, 'wife': 1.0, 'noise': 4.0, 'help': 2.0, 'used': 1.0, 'static': 3.0, 'my': 1.0, 'product': 1.0, 'for': 2.0, 'significant': 2.0, 'give': 1.0, 'day': 1.0, 'close': 1.0, 'and': 2.0, 'briefly': 1.0, 'receivers': 3.0, 'complained': 1.0, 'when': 1.0, 'signal': 1.0, 'by': 1.0, 'one': 1.0, 'no': 1.0, 'about': 2.0, 'quiet': 1.0, 'thing': 1.0, 'a': 1.0, 'causes': 1.0, 'we': 8.0, 'been': 1.0, 'rocking': 2.0, 'that': 3.0, 'on': 2.0, 'is': 2.0, 'reviewers': 1.0, 'are': 1.0, 'very': 1.0, 'us': 1.0, 'transmitter': 5.0, 'house': 2.0, 'off': 3.0, 'i': 2.0, 'take': 1.0, 'without': 1.0, 'the': 15.0, 'turns': 1.0, 'night': 1.0, 'baby': 2.0, 'located': 1.0, 'elsewhere': 1.0, 'our': 1.0, 'sleep': 1.0, 'to': 3.0, 'year': 1.0, 'his': 1.0, 'bedroom': 1.0, 'at': 1.0, 'keep': 2.0, 'if': 1.0, 'chair': 1.0, 'need': 1.0, 'eachother': 1.0, 'like': 1.0, 'which': 1.0, 'in': 3.0, 'turning': 1.0, 'turn': 1.0, 'recievers': 1.0}
Word element => {'recommend': 1.0, 'highly': 1.0, 'still': 1.0, '2012': 1.0, 'now': 1.0, '2009': 1.0, 'batteries': 1.0, 'strong': 1.0, 'on': 1.0, 'fortune': 1.0, 'got': 1.0, 'time': 1.0, 'has': 1.0, 'research': 1.0, 'this': 3.0, 'it': 2.0, 'the': 2.0, 'my': 1.0, 'static': 1.0, 're': 1.0, 'did': 1.0, 'of': 1.0, 'rather': 1.0, 'quit': 1.0, 'i': 5.0, 'clear': 1.0, 'originally': 1.0, 'quickly': 1.0, 'no': 1.0, 'be': 1.0, 'baby': 2.0, 'going': 1.0, 'a': 3.0, 'end': 1.0, 'much': 1.0, 'next': 1.0, 'that': 2.0, 'working': 1.0, 'spend': 1.0, 'bought': 2.0, 'one': 1.0, 'love': 1.0, 'around': 1.0, 'is': 2.0, 'monitor': 2.0, 'very': 1.0, 'range': 1.0, 'good': 1.0, 'at': 1.0, 'units': 1.0, 'three': 1.0, 'can': 1.0, 'and': 4.0, 'plugged': 1.0, 'in': 2.0, 'having': 1.0, 'you': 1.0, 'not': 1.0, 'fancier': 1.0, 'all': 1.0, 'to': 1.0}
Word element => {'are': 1.0, 'they': 1.0, 'aware': 1.0, 'be': 1.0, 'members': 1.0, 'other': 1.0, 'makes': 1.0, 'mobile': 1.0, 'individual': 1.0, 'cases': 1.0, 'need': 1.0, 'easier': 1.0, 'well': 1.0, 'out': 1.0, 'occasion': 1.0, 'on': 2.0, 'static': 1.0, 'some': 1.0, 'there': 1.0, 'baby': 1.0, 'interfere': 1.0, 'units': 1.0, 'at': 1.0, 'not': 3.0, 'does': 1.0, 'which': 1.0, 'network': 1.0, 'sold': 1.0, 'block': 1.0, 'and': 3.0, 'get': 1.0, 'calling': 1.0, 'away': 1.0, 'in': 4.0, 'great': 1.0, 'able': 1.0, '4': 1.0, 'i': 3.0, 'clear': 2.0, 'picks': 1.0, 'also': 1.0, 'sounds': 2.0, 'this': 3.0, 'with': 2.0, 'it': 5.0, 'for': 2.0, 'where': 1.0, 'product': 3.0, 'floor': 1.0, 'room': 1.0, 'completely': 1.0, 'is': 6.0, 'a': 6.0, 'front': 1.0, 'assistance': 1.0, 'works': 2.0, 'ghz': 1.0, 'sound': 1.0, 'up': 1.0, 'monitor': 4.0, 'very': 2.0, 'from': 1.0, 'you': 1.0, 'am': 3.0, 'all': 2.0, 'as': 2.0, 'to': 4.0, 'family': 1.0, 'rooms': 1.0, 'phones': 1.0, 'signal': 1.0, 'regardless': 1.0, 'if': 3.0, 'back': 1.0, 'parent': 1.0, 'enough': 1.0, 'house': 1.0, 'or': 1.0, 'the': 9.0, 'furthest': 1.0, 'elderly': 1.0, 'but': 1.0, '2': 1.0, 'advertised': 1.0, 'distance': 1.0, 'of': 2.0, '100ft': 1.0, 'running': 1.0, 'relative': 1.0, 'several': 1.0, 'although': 1.0, 'wireless': 2.0}
Word element => {'in': 1.0, 'operated': 1.0, 'battery': 1.0, 'units': 1.0, 'plug': 1.0, 'parent': 1.0, 'or': 1.0, 'i': 1.0, 'would': 1.0, 'say': 1.0, 'static': 1.0, 'the': 1.0, 'be': 1.0, 'product': 1.0, 'both': 1.0, 'no': 1.0, 'either': 1.0, 'can': 1.0, 'perfectly': 1.0, 'works': 1.0, 'absolutely': 1.0}
Word element => {'recommend': 1.0, 'handy': 1.0, 'come': 1.0, 'would': 1.0, 'fell': 1.0, 'pacifier': 1.0, 'find': 1.0, 'diaper': 1.0, 'a': 8.0, 't': 3.0, 'ago': 1.0, 'great': 1.0, 'stays': 1.0, 'good': 1.0, 'different': 1.0, 'found': 1.0, 'this': 3.0, 'one': 2.0, 'bought': 1.0, '5': 1.0, 'five': 1.0, 'room': 1.0, 'at': 3.0, 'is': 1.0, 'quiet': 2.0, 'really': 5.0, '24': 1.0, 'failing': 1.0, 'daughter': 1.0, 'for': 5.0, 'afraid': 1.0, 'was': 3.0, 'had': 2.0, 'started': 1.0, 'baby': 1.0, 'to': 2.0, 'pretty': 1.0, 'fisher': 1.0, 'years': 3.0, 'product': 1.0, 'price': 2.0, 'buy': 1.0, 'minutes': 1.0, 'extra': 1.0, 'i': 14.0, 'monitor': 2.0, 'little': 1.0, 'and': 5.0, 'nightlight': 1.0, 'with': 1.0, 'quick': 1.0, 'it': 8.0, 'hear': 1.0, 'month': 1.0, 'finally': 1.0, 'an': 1.0, 'on': 3.0, 'floor': 1.0, 'much': 2.0, 'first': 1.0, 'working': 2.0, 'emergency': 1.0, 'that': 5.0, 'because': 1.0, 'having': 1.0, 'wasn': 1.0, 'unit': 2.0, 'old': 1.0, 'tested': 1.0, 'so': 2.0, 'by': 1.0, 'just': 1.0, 'light': 1.0, 'someone': 1.0, 'night': 1.0, 'you': 1.0, 'main': 2.0, 'new': 1.0, 'heard': 1.0, 'my': 2.0, 'me': 1.0, 'in': 1.0, 'while': 1.0, 'went': 1.0, 'scratched': 1.0, 'the': 4.0, 'we': 1.0, 'reviews': 1.0, 'fine': 1.0, 'guess': 2.0, 'decided': 1.0, 'used': 2.0, 'couldn': 1.0, 'static': 1.0, 'incredibly': 1.0, 'surprised': 1.0, 'has': 1.0, '15': 1.0, 'or': 1.0, 'need': 1.0, 'graco': 1.0, 'haven': 1.0, 'but': 1.0, '7': 2.0, 'change': 1.0, 'stay': 1.0, 'if': 1.0, 'e': 1.0}
Word element => {'product': 1.0, 'like': 1.0, 'think': 1.0, 'reason': 1.0, 'that': 1.0, 'for': 1.0, 'stars': 1.0, 'four': 1.0, 'electronics': 1.0, 'to': 1.0, 'will': 1.0, 'put': 1.0, 'if': 1.0, 'stress': 1.0, 'am': 2.0, 'know': 1.0, 'next': 1.0, 'time': 2.0, 'type': 1.0, 'is': 2.0, 'you': 2.0, 'a': 1.0, 'about': 1.0, 'i': 5.0, 'everyday': 1.0, 'everything': 1.0, 'of': 1.0, 'giving': 1.0, 'monitor': 1.0, 'mom': 2.0, 'gets': 1.0, 'the': 3.0, 'great': 1.0, 'this': 1.0, 'only': 1.0, 'first': 1.0, 'it': 5.0, 'try': 1.0, 'use': 1.0, 'fuzzy': 1.0}
Word element => {'new': 1.0, 'buying': 1.0, 'straw': 1.0, 'final': 1.0, 'was': 1.0, 'but': 1.0, 'myself': 1.0, 'sleepers': 1.0, 'co': 1.0, 'we': 1.0, 'his': 1.0, 'being': 1.0, 'comfortable': 1.0, 'wasn': 1.0, 'bed': 1.0, 'sleep': 1.0, 'baby': 1.0, 'had': 1.0, 'actually': 2.0, 'for': 2.0, 'lost': 1.0, 'our': 2.0, 'goes': 1.0, 'your': 1.0, 'problem': 1.0, 'before': 1.0, 'constant': 2.0, 'a': 4.0, 'radio': 1.0, 't': 4.0, 'offer': 1.0, 'power': 2.0, 'living': 1.0, 'bedroom': 2.0, 'move': 1.0, 'receiver': 2.0, 'only': 3.0, 'rechargeable': 1.0, '2': 1.0, 'much': 1.0, 'do': 1.0, 'put': 3.0, 'can': 2.0, 'so': 2.0, 'hear': 2.0, 'electronic': 1.0, 'one': 2.0, 'crying': 1.0, 'little': 1.0, 'monitor': 1.0, 'static': 1.0, 'set': 1.0, 'does': 1.0, 'yes': 1.0, 'with': 2.0, 'him': 1.0, 'it': 4.0, 'this': 1.0, 'he': 1.0, 'important': 1.0, 'don': 1.0, 'isn': 1.0, 'room': 2.0, 'comes': 1.0, 'like': 1.0, 'which': 1.0, 'because': 1.0, 'that': 5.0, 'to': 4.0, 'crib': 1.0, 'stirring': 1.0, 'and': 6.0, 'my': 5.0, 'me': 2.0, 'street': 1.0, 'not': 3.0, 'buzzing': 3.0, 'm': 1.0, 'in': 9.0, 'receivers': 3.0, 'plugged': 1.0, 'also': 1.0, 'angry': 1.0, '12': 1.0, 'batteries': 2.0, 'will': 1.0, 'drives': 1.0, 'is': 4.0, 'at': 3.0, 'no': 1.0, 'huge': 1.0, 'matter': 1.0, 'get': 1.0, 'found': 1.0, 'however': 1.0, 'easy': 1.0, 'another': 1.0, 'electronics': 1.0, 'out': 2.0, 'are': 2.0, 'ever': 1.0, 'all': 1.0, 'other': 2.0, 'an': 2.0, 'alarm': 1.0, 'up': 2.0, 'cordless': 1.0, 'clock': 1.0, 'able': 1.0, 'night': 3.0, 'you': 2.0, 'hours': 1.0, 'times': 1.0, 'where': 1.0, 'phone': 1.0, 'guy': 1.0, 'suck': 1.0, 'aren': 1.0, 'they': 1.0, 'life': 1.0, 'device': 1.0, 'the': 12.0, 'doing': 1.0, 'of': 1.0, 'noise': 1.0, 'insane': 1.0, 'amazingly': 1.0, 'i': 10.0, 'fast': 1.0, 'be': 1.0, 'work': 1.0, 'daily': 1.0, 'still': 1.0, 'if': 2.0, 'have': 2.0, 'base': 1.0, 'plug': 1.0}
Word element => {'buy': 1.0, 'recommend': 1.0, 'would': 2.0, 'noise': 1.0, 'room': 1.0, 's': 1.0, 'sounds': 1.0, 'still': 1.0, 'again': 1.0, 'you': 1.0, 'get': 1.0, 'sometimes': 1.0, 'mine': 1.0, 'as': 2.0, 'house': 1.0, 'be': 1.0, 'loud': 2.0, 'monitor': 1.0, 'and': 5.0, 'can': 5.0, 'like': 1.0, 'favorite': 1.0, 'one': 3.0, 'i': 4.0, 'tried': 1.0, 'floor': 2.0, 'six': 1.0, 'clear': 1.0, 'coming': 1.0, 'have': 3.0, 'monitors': 1.0, 'that': 1.0, 'volume': 1.0, 'this': 2.0, 'kids': 1.0, 'my': 2.0, 'static': 1.0, 'the': 8.0, 'is': 3.0, 'having': 1.0, 'in': 1.0, 'bedroom': 1.0, 'baby': 2.0, 'them': 1.0, 'years': 1.0, 'both': 2.0, 'at': 1.0, 'several': 1.0, 'no': 1.0, 'on': 3.0, 'your': 1.0, 'first': 2.0, 'hear': 2.0, 'time': 1.0, 'so': 1.0, 'from': 2.0, 'turned': 1.0, 'over': 2.0, 'sound': 1.0, 'up': 1.0, 'fairly': 1.0, 'same': 1.0, 'if': 1.0}
Word element => {'know': 1.0, 'make': 1.0, 'every': 1.0, 'hear': 1.0, 'can': 1.0, 'beds': 1.0, 'their': 1.0, 'are': 2.0, 'if': 1.0, 'stairs': 1.0, 'up': 1.0, 'you': 1.0, 'sneaking': 1.0, 'ones': 1.0, 'the': 2.0, 'more': 1.0, 'safe': 1.0, 'no': 1.0, 'they': 3.0, 'baby': 1.0, 'little': 2.0, 'sound': 1.0, 'in': 1.0, 'perfect': 1.0, 'see': 1.0, 'a': 1.0, 'monitorthis': 1.0, 'is': 1.0, 'dual': 1.0, 'parent': 1.0, 'clear': 1.0, 'ultra': 1.0, 'for': 1.0, 'home': 1.0, 'grandparents': 1.0, 'stay': 1.0, 'to': 3.0, 'have': 1.0, 'grandkids': 1.0, 'graco': 1.0, 'when': 1.0, 'and': 1.0, 'monitor': 2.0, 'away': 2.0, 'sleeping': 1.0, 'from': 1.0}
Word element => {'worth': 1.0, 'socket': 1.0, 'same': 1.0, 'chagers': 1.0, 'our': 1.0, 'from': 1.0, 'interference': 1.0, 'price': 1.0, 'm': 1.0, 'i': 1.0, 'apartments': 1.0, 'live': 1.0, 'tone': 1.0, 'sort': 1.0, 'static': 1.0, 'there': 2.0, 'getting': 1.0, 'is': 3.0, 'for': 2.0, 'has': 1.0, 'pitched': 1.0, 'that': 1.0, 'cannot': 1.0, 'like': 1.0, 'okay': 1.0, 'visual': 1.0, 'sure': 2.0, 'upstairs': 1.0, 'so': 1.0, 'baby': 1.0, 'high': 1.0, 'low': 1.0, 'long': 1.0, 'down': 1.0, 'boyfriend': 1.0, 'his': 1.0, 'almost': 1.0, 'wakes': 1.0, 'of': 1.0, 'wake': 1.0, 'they': 1.0, 'some': 2.0, 'these': 2.0, 'the': 4.0, 'clear': 1.0, 'money': 1.0, 'but': 1.0, 'shift': 1.0, 'can': 2.0, 'with': 1.0, 'loud': 2.0, 'how': 1.0, 'he': 3.0, 'it': 2.0, 'this': 1.0, 'monitors': 1.0, 'turned': 1.0, 'during': 1.0, 'a': 1.0, 's': 1.0, 'go': 1.0, 'we': 4.0, 'son': 1.0, 'plugged': 1.0, 'and': 6.0, 'guage': 1.0, 'very': 2.0, 'monitor': 1.0, 'up': 5.0, 'nothing': 1.0, 'picks': 1.0, 'my': 2.0, 'often': 1.0, 'bed': 1.0, 'feedings': 1.0, 'are': 2.0, 'spits': 1.0, 'when': 1.0, 'make': 1.0, 'on': 3.0, 'put': 1.0, 'phones': 1.0, 'after': 1.0, 'sometimes': 2.0, 'be': 2.0, 'him': 2.0, 'gurglings': 1.0, 'in': 4.0, 'chokes': 1.0}
Word element => {'stop': 1.0, 'static': 1.0, 'avoid': 1.0, 'made': 1.0, 'might': 1.0, 'that': 1.0, 'prepared': 1.0, 'be': 1.0, 'sidenote': 1.0, 'light': 1.0, 'sees': 1.0, 'know': 1.0, 'wouldn': 1.0, 'ha': 1.0, 'homemaker': 1.0, 'order': 1.0, 'actually': 1.0, 't': 2.0, 'when': 1.0, 'even': 1.0, 'disrespectful': 1.0, 'or': 1.0, 'mean': 1.0, 'ever': 1.0, 'from': 1.0, 'keep': 1.0, 'fallen': 1.0, 'll': 1.0, 'not': 1.0, 'trying': 1.0, 'hear': 1.0, 'listening': 1.0, 'gave': 1.0, 'into': 1.0, 'expecting': 1.0, 'turn': 1.0, 'if': 2.0, 'you': 1.0, 'things': 1.0, 'everytime': 1.0, 'choice': 1.0, 'this': 3.0, 'can': 1.0, 'ask': 1.0, 'alone': 3.0, 'walk': 1.0, 'to': 10.0, 'back': 1.0, 'sleep': 1.0, 'attempts': 1.0, 'have': 3.0, '1st': 1.0, 'her': 2.0, 'mind': 2.0, 'both': 2.0, 'senile': 1.0, 'dad': 1.0, 'many': 1.0, 'she': 3.0, 'nights': 1.0, 'him': 1.0, 'it': 3.0, 'out': 1.0, 'living': 1.0, 'family': 1.0, 'bed': 1.0, 'saves': 1.0, 'parents': 2.0, 'floor': 2.0, 'peace': 1.0, 'eldely': 1.0, 'difference': 1.0, 'we': 7.0, 'a': 5.0, 'on': 6.0, 'homemakers': 1.0, 'dread': 1.0, 'being': 2.0, 'very': 2.0, 'monitor': 3.0, 'little': 1.0, 'answer': 1.0, 'alsheimer': 1.0, 'dementia': 1.0, 'having': 1.0, 'us': 1.0, 'also': 2.0, 'down': 1.0, 'disease': 1.0, 'them': 1.0, 'trips': 1.0, 'has': 3.0, 'of': 2.0, 'the': 7.0, 'surprise': 1.0, '2': 2.0, 'swap': 1.0, 'mother': 1.0, 'far': 1.0, 'going': 1.0, 'done': 1.0, 'get': 2.0, 'and': 1.0, 'with': 2.0, 'emerg': 1.0, 'lowest': 1.0, 'as': 2.0, 'falls': 1.0, 'basement': 1.0, 'room': 1.0, 'by': 1.0, 'home': 1.0, 'eventually': 1.0, 'my': 2.0, 'nursing': 1.0, 'hopefully': 1.0, 'no': 1.0, 'for': 2.0, 'brother': 1.0, 'hiring': 1.0, 'now': 2.0, 'is': 3.0, 'big': 1.0, 'help': 2.0, 'm': 1.0, 'in': 3.0, 'i': 1.0, '2nd': 1.0, 'coverage': 1.0, 'additional': 1.0, 'confused': 1.0, 'osteo': 1.0, 'come': 1.0, 'while': 1.0, 'aren': 1.0, 'gives': 1.0, 'they': 1.0, 'just': 2.0, 'comments': 1.0, 'up': 1.0, 'knowing': 1.0, 'there': 1.0, 'would': 1.0}
Word element => {'cause': 1.0, 'will': 1.0, 'receiver': 1.0, 'near': 1.0, 'cellphone': 1.0, 'good': 1.0, 'very': 1.0, 'comment': 1.0, 'interference': 1.0, 'price': 1.0, 'for': 1.0, 'if': 1.0, 'reception': 1.0, 'deal': 1.0, 'and': 1.0, 'monitor': 1.0, 'used': 1.0, 'batteries': 1.0, 'can': 1.0, 'a': 2.0, 'is': 2.0, 'it': 1.0, 'only': 1.0, 'with': 1.0, 'great': 1.0, 'the': 3.0, 'be': 1.0, 'place': 1.0, 'that': 1.0, 'you': 1.0}
Word element => {'other': 1.0, 'my': 1.0, 'interfere': 1.0, 'not': 1.0, 'does': 1.0, 's': 1.0, 'on': 1.0, 'needed': 1.0, 'so': 2.0, 'i': 1.0, 'spend': 1.0, 'working': 2.0, 'with': 1.0, 'it': 2.0, 'this': 1.0, 'a': 1.0, 'second': 1.0, 'want': 1.0, 'is': 1.0, 't': 1.0, '2': 1.0, 'great': 2.0, 'far': 2.0, 'been': 1.0, 'didn': 1.0, 'one': 1.0, 'for': 1.0, 'child': 1.0, 'monitor': 2.0, 'and': 2.0, 'to': 1.0, 'much': 1.0, 'too': 1.0}
Word element => {'buy': 1.0, 'anything': 1.0, 'favor': 1.0, 'a': 1.0, 'yourself': 1.0, 'do': 1.0, '4': 1.0, 'it': 2.0, 'months': 1.0, 'also': 2.0, 'and': 1.0, 'very': 1.0, 'noisy': 1.0, 'broke': 1.0, 'else': 1.0, 'after': 1.0, 'was': 1.0, 'just': 2.0, 'garbage': 1.0}
Word element => {'back': 1.0, 'sending': 1.0, 'call': 1.0, 'hmmmm': 1.0, 'they': 1.0, 'wonder': 1.0, 'why': 1.0, 'from': 1.0, 'away': 1.0, 'stay': 1.0, 'around': 1.0, 'electronics': 1.0, 'of': 1.0, 'so': 1.0, 'ultra': 2.0, 'offered': 1.0, 'both': 1.0, 'on': 1.0, 'useless': 1.0, 'i': 1.0, 'channels': 1.0, 'clear': 2.0, 'if': 1.0, 'graco': 1.0, 'the': 1.0, 'much': 1.0, 'interference': 1.0, 'that': 1.0, 'ii': 1.0, 'you': 1.0, 'it': 4.0, 'had': 1.0, 'was': 1.0, 'have': 1.0, 'rendered': 1.0, 'a': 1.0, 'lot': 1.0}
Word element => {'noise': 1.0, 'or': 1.0, 'static': 1.0, 'had': 1.0, 'feet': 1.0, '000': 1.0, 'highly': 1.0, 'interference': 1.0, 'any': 1.0, 'about': 1.0, 'is': 1.0, 'that': 1.0, 'home': 1.0, 'which': 1.0, 'and': 2.0, 'issues': 1.0, 'walmart': 1.0, 'haven': 1.0, 'far': 1.0, 'story': 1.0, 'from': 1.0, 'then': 1.0, 'square': 1.0, 'returned': 1.0, 'two': 2.0, 'with': 1.0, 'models': 1.0, 'than': 1.0, 'different': 1.0, 'tried': 3.0, 't': 1.0, '2': 1.0, 'the': 1.0, 'these': 1.0, 'they': 1.0, 'recommended': 1.0, 'better': 1.0, 'work': 1.0, 'we': 4.0, 'other': 1.0, 'monitors': 1.0, 'have': 1.0, 'a': 1.0}
Word element => {'isn': 1.0, 'so': 1.0, 'time': 1.0, '20': 1.0, 'm': 1.0, 'on': 1.0, 'rechargable': 1.0, 'have': 1.0, 'much': 1.0, 'would': 1.0, 'consideration': 1.0, 'further': 1.0, 'upon': 1.0, 'rather': 1.0, 'of': 2.0, 'because': 2.0, 'intolerable': 1.0, 'the': 7.0, 'but': 2.0, 'work': 1.0, 'stars': 1.0, 'cheap': 1.0, 'for': 2.0, 'to': 2.0, 'now': 1.0, 'wanted': 1.0, 'is': 4.0, 'really': 2.0, 'with': 2.0, 'house': 1.0, 'parent': 1.0, 'it': 3.0, 'units': 1.0, 'based': 1.0, 'this': 3.0, 'review': 1.0, 'well': 1.0, 't': 1.0, 'a': 1.0, 's': 1.0, 'us': 1.0, 'am': 1.0, 'when': 1.0, 'anyway': 1.0, 'replacing': 1.0, 'i': 5.0, 'two': 2.0, 'get': 1.0, 'just': 1.0, 'difficult': 1.0, 'keeping': 1.0, 'monitor': 3.0, 'very': 1.0, 'about': 1.0, 'battery': 1.0, 'quiet': 1.0, 'feels': 1.0, 'baby': 1.0, 'in': 1.0, 'batteries': 1.0, 'also': 1.0, 'his': 1.0, 'bad': 1.0, 'crib': 1.0, 'll': 1.0, 'giving': 1.0, 'be': 1.0, 'and': 1.0, 'soon': 1.0, 'quite': 1.0, 'case': 1.0, 'into': 1.0, 'static': 3.0, 'set': 1.0}
Word element => {'ours': 1.0, 'never': 1.0, 'constantly': 1.0, 'returned': 1.0, 'humming': 2.0, 'and': 1.0, 'other': 1.0, 'these': 2.0, 'the': 1.0, 'used': 1.0, 'even': 1.0, 'same': 1.0, 'before': 1.0, 'noise': 1.0, 'impossible': 1.0, 'with': 1.0, 'it': 2.0, 'monitors': 1.0, 'have': 1.0, 'made': 1.0, 'problems': 1.0, 'ignore': 1.0, 'was': 1.0, 'any': 1.0, 'to': 1.0, 'in': 1.0, 'however': 1.0, 'hear': 1.0, 'two': 1.0, 'watching': 1.0, 'so': 1.0, 'had': 2.0, 'location': 1.0, 'that': 3.0, 'tv': 1.0, 'we': 3.0, 't': 1.0, 'a': 2.0, 'could': 2.0, 'out': 1.0, 'wasn': 1.0, 'quiet': 1.0, 'you': 1.0, 'easily': 1.0, 'when': 1.0, 'hum': 1.0, 'or': 1.0, 'one': 1.0, 'be': 1.0, 'drowned': 1.0}
Word element => {'are': 1.0, 'but': 1.0, 'these': 1.0, 'the': 1.0, 'make': 1.0, 'monitors': 2.0, 'it': 1.0, 'with': 1.0, 'our': 1.0, 'monitor': 1.0, 'problems': 1.0, 'to': 1.0, 'had': 1.0, 'any': 1.0, 'never': 1.0, 'otherwise': 1.0, 'sometimes': 1.0, 'perfect': 1.0, 'nearby': 1.0, 've': 1.0, 'we': 1.0, 'rings': 1.0, 'output': 1.0, 'a': 2.0, 'little': 1.0, 'just': 1.0, 'feedback': 1.0, 'noise': 1.0, 'cell': 1.0, 'graco': 1.0, 'when': 1.0, 'phone': 1.0}
Word element => {'your': 1.0, 'waste': 1.0, 't': 1.0, 'don': 1.0, 'definitely': 1.0, 'house': 1.0, 'of': 1.0, 'no': 1.0, 'and': 2.0, 'monitor': 1.0, 'get': 1.0, 'had': 1.0, 'recommend': 1.0, 'was': 2.0, 'expensive': 1.0, 'product': 1.0, 'for': 1.0, 'love': 2.0, 'one': 2.0, 'reasonable': 1.0, 'his': 1.0, 'part': 1.0, 'so': 2.0, 'price': 1.0, 'the': 3.0, 'because': 1.0, 'two': 1.0, 'i': 7.0, 'clear': 1.0, 'another': 1.0, 'my': 2.0, 'it': 3.0, 'this': 2.0, 'hear': 1.0, 'first': 1.0, 'buying': 2.0, 'with': 1.0, 'have': 1.0, 'to': 1.0, 'all': 1.0, 'something': 1.0, 'would': 1.0, 'hesitant': 1.0, 'problems': 1.0, 'son': 1.0, 'at': 2.0, 'keep': 1.0, 'more': 1.0, 'comes': 1.0, 'is': 1.0, 'that': 2.0, 'money': 1.0, 'but': 1.0, 'reception': 1.0, 'can': 1.0, 'breathing': 1.0, 'in': 3.0, 'also': 1.0, 'receivers': 1.0, 'crib': 1.0, 'went': 1.0, 'bedroom': 1.0}
Word element => {'no': 1.0, 'together': 1.0, 'work': 1.0, 'they': 1.0, 'child': 1.0, 'interference': 1.0, 'another': 1.0, 'strong': 1.0, 'we': 2.0, 'of': 1.0, 'going': 1.0, 'and': 2.0, 'monitor': 2.0, 'for': 1.0, 'one': 3.0, 'little': 1.0, 'got': 2.0, 'our': 1.0, 'that': 2.0, 'a': 3.0, 'fine': 1.0, 'second': 1.0, 'is': 2.0, 'with': 1.0, 'stopped': 1.0, 'this': 1.0, 'working': 1.0, 'best': 1.0, 'year': 1.0, 'ago': 1.0, 'to': 1.0, 'much': 1.0, 'still': 1.0, 'workhorse': 1.0, 'the': 1.0, 'replace': 1.0, 'fancier': 1.0}
Word element => {'channels': 1.0, 'both': 1.0, 'on': 1.0, 'decent': 1.0, 'problem': 1.0, 't': 1.0, 'didn': 1.0, 'live': 1.0, 'in': 1.0, 'nearby': 1.0, 'we': 1.0, 'a': 1.0, 'san': 1.0, 'monitor': 2.0, 'static': 2.0, 'free': 1.0, 'find': 1.0, 'solve': 1.0, 'to': 1.0, 'trying': 1.0, 'lots': 2.0, 'of': 2.0, 'people': 1.0, 'our': 1.0, 'thought': 1.0, 'work': 1.0, 'but': 2.0, 'francisco': 1.0, 'might': 1.0, 'with': 1.0, 'this': 1.0, 'it': 1.0}
Word element => {'all': 1.0, 'or': 1.0, 'at': 1.0, 'no': 1.0, 'reception': 1.0, 'the': 2.0, 'happy': 1.0, 'static': 1.0, 'my': 1.0, 'of': 1.0, 'sleeps': 1.0, 'because': 1.0, 'sounds': 1.0, 'on': 1.0, 'for': 1.0, 'with': 1.0, 'he': 1.0, 'this': 2.0, 'grandson': 1.0, 'bought': 1.0, 'side': 1.0, 'outher': 1.0, 'house': 1.0, 'about': 1.0, 'purchase': 1.0, '100ft': 1.0, 'other': 1.0, 'we': 1.0, 'away': 1.0, 'get': 1.0, 'and': 1.0, 'very': 2.0, 'i': 1.0, 'clear': 1.0}
Word element => {'rid': 1.0, 'get': 1.0, 'wait': 1.0, 'list': 1.0, 'selling': 1.0, 'night': 1.0, 'day': 1.0, 'infant': 1.0, 'currently': 1.0, 'check': 1.0, 'am': 1.0, 'do': 1.0, 'noise': 1.0, 'making': 1.0, 'when': 1.0, 'again': 1.0, 'due': 1.0, 'handheld': 1.0, 'times': 1.0, 'all': 2.0, 'those': 1.0, '3': 1.0, '2': 1.0, 'always': 1.0, 'basic': 1.0, 'summer': 1.0, 'would': 1.0, 'by': 1.0, 'light': 1.0, 'start': 1.0, 'will': 1.0, 'sounds': 1.0, 'wish': 1.0, 'myself': 2.0, 'out': 1.0, 'pick': 1.0, 'itself': 1.0, 'not': 4.0, 'result': 1.0, 'that': 1.0, 'were': 3.0, 'we': 1.0, 's': 1.0, 'lights': 1.0, 'even': 1.0, 'before': 1.0, 'room': 1.0, 'serves': 1.0, 'my': 6.0, 'reviewed': 1.0, 'hall': 1.0, 'saying': 1.0, 't': 3.0, 'emphasize': 1.0, 'in': 5.0, 'was': 1.0, 'on': 4.0, 'therefore': 1.0, 'time': 2.0, 'video': 2.0, 'product': 2.0, 'law': 1.0, 'registered': 1.0, 'at': 1.0, 'is': 5.0, 'amazon': 2.0, 'about': 1.0, 'sleeping': 1.0, 'strongly': 1.0, 'this': 6.0, 'found': 1.0, 'should': 1.0, 'how': 1.0, 'i': 13.0, 'which': 2.0, 'gift': 1.0, 'hear': 2.0, 'it': 6.0, 'purpose': 1.0, 'from': 1.0, 'want': 1.0, 'everything': 1.0, 'unfortunately': 1.0, 'she': 2.0, 'baby': 4.0, 'constantly': 1.0, 'so': 1.0, 'can': 4.0, 'but': 3.0, 'mother': 1.0, 'tell': 2.0, 'trust': 2.0, 'noisy': 1.0, 'and': 2.0, 'defeats': 1.0, 've': 1.0, 'down': 1.0, 'lit': 1.0, 'her': 1.0, 'bedroom': 1.0, 'if': 2.0, 'still': 1.0, 'running': 1.0, 'have': 3.0, 'feedback': 1.0, 'a': 7.0, 'small': 1.0, 'best': 1.0, 'monitor': 6.0, 'very': 1.0, 'bassinet': 1.0, 'to': 6.0, 'annoying': 1.0, 'as': 2.0, 'be': 1.0, 'with': 1.0, 'crying': 1.0, 'one': 2.0, 'lot': 1.0, 'the': 8.0, 'of': 5.0, 'static': 2.0, 'function': 2.0, 'only': 1.0, 'really': 1.0, 'did': 1.0, 'makes': 1.0, 'feel': 1.0, 'mom': 1.0, 'does': 1.0, 'indicate': 1.0, 'sound': 1.0, 'there': 1.0, 'first': 2.0, 'are': 1.0}
Word element => {'an': 1.0, 'ton': 1.0, 'spend': 1.0, 'glad': 1.0, 'baby': 1.0, 'tend': 1.0, 'to': 2.0, 'need': 1.0, 'if': 1.0, 'see': 1.0, 'still': 1.0, 'and': 3.0, 'monitor': 3.0, 'didn': 1.0, '2nd': 1.0, 'born': 1.0, 'have': 2.0, 'old': 1.0, 'after': 1.0, 'so': 2.0, 'they': 1.0, 'are': 1.0, 'my': 2.0, 'now': 1.0, 'research': 1.0, 'this': 1.0, 'with': 1.0, 'much': 1.0, 'works': 1.0, 'down': 1.0, 't': 1.0, 'go': 1.0, 'a': 4.0, 'we': 3.0, 'extra': 1.0, 'months': 1.0, 'bought': 1.0, 'one': 1.0, 'expensive': 1.0, 'lights': 1.0, 'love': 1.0, 'just': 1.0, 'money': 1.0, 'can': 2.0, 'fantastically': 1.0, 'am': 2.0, 'twins': 1.0, 'office': 1.0, 'receivers': 1.0, 'in': 1.0, 'on': 1.0, 'husbands': 1.0, 'sound': 1.0, 'the': 5.0, 'that': 1.0, 'show': 1.0, '4': 1.0, 'i': 6.0, 'strength': 1.0, 'before': 1.0, 'noise': 1.0, 'of': 2.0, 'getting': 1.0, 'receiver': 1.0}
Word element => {'recommend': 1.0, 'feet': 1.0, 'their': 1.0, 'take': 1.0, 'used': 1.0, 'detachable': 1.0, 'rest': 1.0, 'arm': 1.0, 'also': 1.0, 'off': 1.0, 'cover': 1.0, 'forever': 1.0, 'end': 1.0, 'they': 1.0, 'stones': 1.0, 'i': 2.0, 'different': 1.0, 'coins': 1.0, 'in': 3.0, 'priced': 1.0, 'colors': 1.0, 'washable': 1.0, 'up': 1.0, 'don': 1.0, 'of': 1.0, 'reasonably': 1.0, 'thoroughly': 1.0, 'body': 1.0, 'bonus': 1.0, 'covers': 1.0, 'it': 2.0, 'first': 1.0, 'black': 1.0, 'bright': 1.0, 'to': 1.0, 'as': 1.0, 'seat': 2.0, 'just': 1.0, 'sturdy': 1.0, 'loved': 1.0, 'fantastic': 1.0, 'the': 7.0, 'red': 1.0, 's': 1.0, 'a': 3.0, 't': 1.0, 'booster': 3.0, 'solid': 1.0, 'at': 1.0, 'is': 3.0, 'comes': 1.0, 'look': 1.0, 'too': 1.0, 'and': 5.0, 'padded': 1.0, 'comfortable': 1.0, 'admit': 1.0, 'did': 1.0, 'bit': 1.0, 'can': 1.0, 'but': 1.0, 'on': 1.0, 'put': 2.0, 'my': 2.0, 'color': 1.0, 'cup': 1.0, 'lost': 1.0, 'this': 2.0, 'holders': 1.0, 'kids': 2.0, 'are': 3.0, 'anything': 1.0, 'must': 1.0, 'small': 1.0, 'them': 3.0}
Word element => {'traveling': 1.0, 'package': 1.0, 'company': 1.0, 'happy': 1.0, 'very': 2.0, 'little': 1.0, 'basic': 1.0, 'something': 1.0, 'carry': 1.0, 'and': 4.0, 'play': 1.0, 'interest': 1.0, 'plan': 1.0, 'travel': 1.0, 'we': 4.0, 'model': 1.0, 'easy': 1.0, 't': 1.0, 'fit': 1.0, 'also': 1.0, 'in': 2.0, 'needed': 1.0, 'baby': 2.0, 'she': 1.0, 'it': 5.0, 'pack': 1.0, 'with': 1.0, 'fold': 1.0, 'models': 1.0, 'mind': 1.0, 'soft': 1.0, 'n': 1.0, 'our': 2.0, 'sleep': 1.0, 'fancier': 1.0, 'as': 1.0, 'room': 1.0, 'was': 1.0, 'but': 2.0, 'lightweight': 1.0, 'so': 1.0, 'can': 1.0, 'ready': 1.0, 'own': 1.0, 'until': 1.0, 'bedroom': 1.0, 'into': 1.0, 'because': 2.0, 'that': 1.0, 'changing': 1.0, 'use': 1.0, 'her': 1.0, 'pretty': 1.0, 'to': 6.0, 'bassinet': 1.0, 'called': 1.0, 'bought': 1.0, 'essential': 1.0, 'be': 1.0, 'if': 3.0, 'want': 1.0, 'a': 5.0, 'small': 1.0, 'blankets': 1.0, 'you': 2.0, 'fantastic': 1.0, 'on': 1.0, 'make': 1.0, 'mr': 1.0, 'are': 2.0, 'cute': 1.0, 'cushier': 1.0, 'this': 3.0, 'bobbles': 1.0, 'makes': 1.0, 'no': 2.0, 'features': 1.0, 'slip': 1.0, 'sheets': 1.0, 'adorable': 1.0, 'is': 5.0, 'at': 1.0, 'perfectly': 1.0, 'move': 1.0, 'used': 1.0, 'toy': 1.0, 'bar': 1.0, 'the': 5.0, 'of': 1.0, 'daughter': 1.0, 'heavier': 1.0, 'helpful': 1.0, 'stage': 1.0, '6': 1.0, 'weeks': 1.0, 'for': 4.0, 'such': 1.0, 'table': 1.0, 'don': 1.0}
Word element => {'will': 1.0, 'dirty': 1.0, 'cleaning': 1.0, 'about': 1.0, 'however': 1.0, 'drinks': 1.0, 'snacks': 1.0, 'holders': 1.0, 'both': 1.0, 'xterra': 1.0, 'great': 1.0, 'decision': 1.0, 'made': 1.0, 'we': 1.0, 'complain': 1.0, 'nap': 1.0, 'toys': 1.0, 'reach': 1.0, 'free': 1.0, 'be': 4.0, 'comfortable': 1.0, 'as': 3.0, 'worried': 1.0, 'new': 1.0, 'time': 1.0, 'them': 1.0, 'always': 1.0, 'safety': 1.0, 's': 1.0, 'pleased': 1.0, 'make': 1.0, 'personally': 1.0, 'even': 1.0, 'spend': 1.0, 't': 1.0, 'list': 1.0, 'don': 1.0, 'extra': 1.0, 'another': 1.0, 'east': 1.0, 'from': 1.0, 'sizing': 1.0, 'on': 3.0, 'yourself': 1.0, 'judge': 1.0, 'able': 1.0, 'you': 1.0, 'posted': 1.0, 'perfectly': 1.0, 'child': 1.0, 'large': 1.0, 'use': 1.0, 'weight': 1.0, 'old': 1.0, 'name': 1.0, 'any': 1.0, 'fits': 2.0, 'all': 2.0, 'job': 1.0, 'pulled': 1.0, 'to': 6.0, '82': 1.0, 'review': 1.0, 'gave': 1.0, 'been': 1.0, 'now': 1.0, '70this': 1.0, 'concerned': 1.0, 'that': 4.0, 'box': 1.0, 'did': 3.0, 'comfortably': 1.0, 'came': 1.0, 'glad': 1.0, 'have': 3.0, 'they': 4.0, 'boy': 1.0, 'can': 4.0, 'so': 2.0, 'his': 4.0, 'before': 1.0, 'cup': 1.0, 'booster': 1.0, 'reports': 2.0, 'purchased': 3.0, 'highest': 1.0, 'excellent': 1.0, 'britax': 4.0, 'are': 1.0, 'money': 1.0, 'called': 1.0, 'i': 12.0, 'simply': 1.0, 'purchase': 1.0, 'mommy': 1.0, 'this': 5.0, 'allows': 1.0, 'with': 4.0, 'height': 1.0, 'son': 4.0, 'being': 1.0, 'very': 2.0, 'big': 1.0, 'check': 1.0, '8498': 1.0, '8496': 1.0, 'back': 2.0, 'a': 5.0, 'since': 1.0, 'score': 1.0, 'am': 5.0, 'when': 2.0, 'safe': 1.0, 'consumer': 2.0, 'born': 1.0, 'but': 4.0, 'why': 1.0, 'following': 1.0, 'just': 1.0, 'over': 1.0, 'unfortunately': 1.0, 'graco': 3.0, 'happened': 1.0, 'safeseat': 5.0, 'step': 5.0, 'tedious': 1.0, 'and': 11.0, '8493': 1.0, '50': 3.0, 'photo': 1.0, 'out': 3.0, '8673': 1.0, 'turbobooster': 6.0, 'was': 2.0, '60': 1.0, 'mother': 1.0, '8674': 1.0, 'it': 4.0, 'at': 1.0, 'is': 5.0, 'wise': 1.0, 'mandatory': 1.0, 'comes': 1.0, 'actually': 1.0, 'for': 3.0, 'dies': 1.0, 'several': 1.0, 'years': 1.0, 'no': 1.0, 'limits': 1.0, 'happy': 1.0, 'one': 3.0, 'tops': 1.0, 'detach': 1.0, '3': 6.0, 'older': 1.0, 'the': 15.0, 'of': 2.0, 'longer': 1.0, 'need': 1.0, 'also': 4.0, 'far': 1.0, 'he': 5.0, 'models': 1.0, 'yet': 1.0, '8497': 1.0, 'not': 5.0, 'looks': 1.0, 'my': 6.0, 'me': 1.0, 'get': 2.0, 'seat': 11.0, 'in': 5.0, 'neck': 1.0, 'sent': 1.0, 'exceeds': 1.0, 'pillow': 1.0, 'right': 1.0, 'customer': 1.0, 'if': 1.0, 'still': 1.0, 'service': 1.0}
Word element => {'ends': 1.0, 'then': 1.0, 'for': 1.0, 'floor': 1.0, 'unit': 1.0, 'it': 3.0, 'get': 1.0, 'and': 2.0, 'graco': 2.0, 'daughter': 1.0, 'you': 1.0, 'are': 1.0, 'other': 1.0, 'standard': 1.0, 'the': 4.0, 'while': 1.0, 'compared': 1.0, 'second': 1.0, 'to': 1.0, 'our': 1.0, 's': 1.0, 'a': 2.0, 'this': 2.0, 'kids': 1.0, 'turbobooster': 1.0, 'more': 1.0, 'is': 2.0, 'holds': 1.0, 'they': 1.0, 'little': 1.0, 'very': 1.0, 'nice': 1.0, 'comfortable': 1.0, 'rides': 1.0, 'never': 1.0, 'with': 2.0, 'turboboosters': 1.0, 'complain': 1.0, 'even': 1.0, 'padding': 2.0, 'long': 1.0, 'think': 1.0, 'your': 1.0, 'on': 2.0, 'gracopedic': 1.0, 'neck': 1.0, 'pillow': 1.0, 'if': 1.0, 'up': 1.0, 'child': 1.0, 'will': 1.0, 'use': 1.0, 'my': 1.0}
Word element => {'satisfied': 1.0, 'am': 1.0, 'car': 1.0, 'in': 1.0, 'every': 1.0, 'uses': 1.0, 'he': 1.0, 'pillow': 1.0, 'holding': 1.0, 'mainly': 1.0, 'used': 1.0, 'cupholders': 1.0, 'his': 1.0, 'neck': 1.0, 'worth': 1.0, 'would': 1.0, 'exactly': 1.0, 'that': 1.0, 'it': 3.0, 'research': 1.0, 'with': 2.0, 'because': 1.0, 'one': 1.0, 'i': 5.0, 'far': 1.0, 'took': 1.0, 'about': 1.0, 'very': 2.0, 'read': 1.0, 'get': 1.0, 'sure': 1.0, 'easy': 1.0, 'be': 2.0, 'seat': 2.0, 'to': 3.0, 'wanted': 1.0, 'was': 1.0, 'so': 1.0, 'time': 2.0, 'seats': 1.0, 'and': 3.0, 'ball': 1.0, 'reviews': 1.0, 'nicely': 1.0, 'booster': 2.0, 'padded': 1.0, 'did': 1.0, 'my': 2.0, 'the': 6.0, 'job': 1.0, 'has': 1.0, 'well': 1.0, 'we': 1.0, 'a': 1.0, 'graco': 1.0, 'this': 1.0, 'turbobooster': 1.0, 'is': 2.0, 'purchased': 1.0, 'what': 1.0, 'for': 1.0, 'assemble': 1.0, 'which': 1.0, 'like': 1.0, 'just': 2.0, 'says': 1.0, 'cars': 1.0, 'son': 1.0}
Word element => {'something': 1.0, 'or': 1.0, 'window': 1.0, 'look': 1.0, 'he': 1.0, 'have': 1.0, 'forward': 1.0, 'slightly': 1.0, 'side': 1.0, 'move': 1.0, 'very': 1.0, 'easy': 1.0, 'get': 1.0, 'shoulder': 1.0, 'tug': 1.0, 'his': 2.0, 'and': 3.0, 'across': 2.0, 'this': 3.0, 'happens': 1.0, 'only': 1.0, 'does': 1.0, 'because': 1.0, 'completely': 1.0, 'is': 5.0, 'belt': 3.0, 'sometimes': 1.0, 'a': 1.0, 'child': 3.0, 'out': 2.0, 'light': 2.0, 'great': 1.0, 'place': 1.0, 'the': 13.0, 'in': 2.0, 'keeps': 1.0, 'reason': 1.0, 'that': 2.0, 'leaning': 1.0, 'weight': 2.0, 'chair': 1.0, 'booster': 2.0, 'seat': 6.0, 'to': 3.0, 'of': 4.0, 'i': 2.0, 'did': 1.0, 'not': 2.0, 'give': 1.0, 'stars': 1.0, 'for': 2.0, 'product': 1.0, '5': 1.0, 'back': 4.0, 'will': 1.0, 'against': 1.0, 'so': 1.0, 'am': 1.0, 'when': 3.0, 'pulling': 1.0, 'my': 2.0, 'on': 1.0}
Word element => {'recommend': 1.0, 'friends': 1.0, 'our': 1.0, 'many': 1.0, 'overall': 1.0, 'we': 1.0, 'from': 1.0, 'keeps': 1.0, 'additional': 1.0, 'some': 1.0, 'are': 2.0, 'holders': 1.0, 'highly': 1.0, 'this': 2.0, 'bonus': 1.0, 'wiggling': 1.0, 'using': 1.0, 'side': 2.0, 'which': 1.0, 'you': 1.0, 'to': 2.0, 'all': 1.0, 'once': 1.0, 'out': 2.0, 'and': 5.0, 'climb': 1.0, 'at': 1.0, 'but': 1.0, 'shoulder': 1.0, 'old': 1.0, 'point': 1.0, 'have': 2.0, 'use': 1.0, 'miss': 1.0, 'front': 1.0, 'give': 1.0, 'convertible': 1.0, '3': 1.0, 'on': 2.0, 'my': 2.0, 'strap': 1.0, 'position': 2.0, 'cups': 1.0, 'cup': 1.0, 'booster': 3.0, 'for': 3.0, 'rolling': 1.0, 'seated': 1.0, 'added': 1.0, 'a': 3.0, 't': 1.0, 'been': 2.0, 'easily': 1.0, 'that': 3.0, 'locks': 1.0, 'sister': 1.0, 'with': 3.0, 'about': 2.0, 'seat': 4.0, 'in': 4.0, 'age': 1.0, 'also': 1.0, 'very': 2.0, 'son': 1.0, 'month': 1.0, 'under': 1.0, 'year': 1.0, 'his': 3.0, 'as': 1.0, 'awkward': 1.0, 'already': 1.0, 'it': 4.0, 'him': 4.0, 'younger': 1.0, 'previous': 2.0, 'easy': 1.0, 'needed': 1.0, 'graco': 1.0, 'during': 1.0, 'kept': 1.0, 'was': 1.0, 'doesn': 1.0, 'trips': 1.0, 'location': 1.0, 'always': 1.0, 'way': 1.0, 'perfect': 1.0, 'ended': 1.0, 'pleased': 1.0, 'up': 1.0, 'of': 2.0, 'the': 11.0, 'longer': 1.0, 'support': 1.0, 'car': 1.0, 'love': 1.0, 'he': 2.0, 'naps': 1.0, 'care': 1.0, 'i': 1.0, 'harness': 1.0, 'floor': 1.0, 'do': 1.0, 'much': 1.0, 'helps': 1.0, '5': 1.0, 'better': 1.0, 'head': 1.0, 'pillow': 1.0, 'came': 1.0, 'asked': 1.0, 'if': 1.0, 'can': 1.0, 'so': 1.0, 'by': 1.0, 'pull': 1.0, 'retracts': 1.0}
Word element => {'truck': 1.0, 'his': 1.0, 'another': 1.0, 'going': 1.0, 'actually': 1.0, 'are': 1.0, 'and': 1.0, 'clean': 1.0, 'husband': 1.0, 'to': 2.0, 'easy': 1.0, 'in': 1.0, 'also': 1.0, 'seatbeat': 1.0, 'undo': 1.0, 'can': 2.0, 'c': 1.0, 'weight': 1.0, 'boy': 1.0, 'easily': 1.0, 'so': 3.0, 'transfered': 1.0, 'light': 1.0, 'leave': 1.0, 'is': 3.0, 'vehicles': 1.0, 'just': 1.0, 'seat': 2.0, 'one': 1.0, 'love': 1.0, 'this': 1.0, 'he': 3.0, 'it': 3.0, 'very': 1.0, 'son': 1.0, 'big': 1.0, 'from': 1.0, 'b': 1.0, 'different': 1.0, 'my': 2.0, 'buy': 1.0, 'i': 2.0, 'thinks': 1.0, 's': 1.0, 'the': 2.0, 'such': 1.0, 'a': 1.0}
Word element => {'very': 1.0, 'are': 1.0, 'functions': 1.0, 'i': 1.0, 'double': 1.0, 'graco': 1.0, 've': 1.0, 'at': 1.0, 'stroller': 2.0, '3rd': 1.0, 'least': 1.0, 'the': 2.0, 'great': 1.0, 'is': 2.0, 'have': 1.0, 'purchase': 1.0, 'purchased': 1.0, 'over': 1.0, 'years': 1.0, 'with': 1.0, 'it': 1.0, 'this': 3.0, 'children': 1.0, 'satisfied': 1.0, 'h': 1.0, 'we': 2.0, 'b': 1.0, '5': 1.0, 'well': 1.0, 'a': 1.0, 'value': 1.0}
Word element => {'though': 1.0, 'stroller': 1.0, 'my': 1.0, 'other': 1.0, 'thought': 1.0, 'find': 1.0, 'really': 1.0, 'complaint': 1.0, 'ahh': 1.0, 'dirty': 1.0, 'still': 1.0, 'part': 1.0, 'noticable': 1.0, 'look': 1.0, 'will': 2.0, 'else': 1.0, 'moms': 1.0, 'and': 3.0, 'too': 1.0, 'attached': 1.0, 'way': 1.0, 'was': 3.0, 'parts': 1.0, 'to': 5.0, 'our': 1.0, 'unscrewing': 1.0, 'new': 1.0, 'something': 1.0, 'that': 3.0, 'clean': 1.0, 'fabric': 1.0, 'have': 1.0, 'able': 1.0, 'wash': 1.0, 'in': 1.0, 'know': 1.0, 'cannot': 1.0, 'i': 2.0, 'so': 1.0, 'time': 1.0, 'the': 6.0, 'great': 1.0, 'about': 1.0, 'no': 1.0, 'today': 1.0, 'most': 1.0, 'but': 1.0, 'took': 1.0, 'loved': 1.0, 'duoglider': 1.0, 'first': 1.0, 'it': 7.0, 'frustrating': 1.0, 'piece': 1.0, 'with': 1.0, 'for': 3.0, 'years': 1.0, 'removed': 1.0, 'only': 1.0, 'works': 1.0, 'except': 1.0, 'might': 1.0, 'we': 1.0, 'a': 1.0, 'nightmare': 1.0, 'after': 1.0, 'want': 1.0, 'apart': 1.0, 'everything': 2.0, 'take': 1.0, 'many': 1.0, 'is': 4.0, 'screws': 1.0, 'get': 1.0, 'off': 2.0, 'back': 1.0, 'top': 2.0, 'canopy': 1.0, 'screwed': 1.0, 'be': 3.0, 'there': 1.0}
Word element => {'nightmare': 1.0, 'gate': 1.0, 'check': 1.0, 'b': 1.0, 'seat': 1.0, 'in': 2.0, 'to': 3.0, 'hoping': 1.0, 'still': 1.0, 'fold': 2.0, 'car': 1.0, '30': 1.0, 'this': 3.0, 'disney': 1.0, 'month': 2.0, 'it': 4.0, 'year': 1.0, 'trick': 1.0, '2': 1.0, 'does': 2.0, 'respectively': 1.0, 'double': 1.0, 'lacks': 1.0, 'hit': 1.0, 'for': 5.0, 'pt': 2.0, 'fit': 1.0, 'much': 1.0, 'harness': 2.0, 'rides': 1.0, 'single': 1.0, 'my': 1.0, 'cream': 1.0, 'be': 2.0, 'like': 1.0, 'and': 3.0, 'trip': 1.0, 'that': 4.0, 'turning': 1.0, 'basket': 1.0, 'was': 1.0, 'sunshades': 1.0, 'pounds': 2.0, 'two': 1.0, 'on': 1.0, 'old': 3.0, 'our': 1.0, 'stroller': 4.0, '22': 1.0, 'a': 8.0, '5': 4.0, 'but': 2.0, 'retro': 1.0, 'easy': 1.0, 'however': 1.0, 'so': 1.0, 'contemplating': 1.0, 'trying': 1.0, 'another': 1.0, 'extra': 1.0, 'since': 1.0, 'keep': 1.0, 'money': 1.0, 'bought': 1.0, 'tray': 1.0, 'the': 9.0, 'of': 1.0, 'not': 1.0, 'from': 1.0, 'bru': 1.0, 'onto': 1.0, 'at': 1.0, 'is': 1.0, 'comes': 1.0, 'incredibly': 1.0, 'have': 1.0, 'roomy': 1.0, 'has': 2.0, 'i': 5.0, 'well': 1.0, 'metrolite': 1.0, 'also': 2.0, '7': 2.0, 'ice': 1.0, 'up': 1.0, 'dime': 1.0, 'top': 1.0, 'those': 1.0, 'closes': 1.0, 'curb': 1.0, 'there': 1.0, 'truck': 1.0, 'cup': 1.0, 'holder': 1.0, 'everytime': 1.0, 'you': 1.0, 'am': 1.0, 'c': 1.0, 'flying': 1.0, 'out': 1.0, 'will': 1.0, 'travel': 1.0, 'tight': 1.0, 'would': 1.0, 'either': 1.0, 'getting': 1.0}
Word element => {'sidewalk': 1.0, 'thing': 1.0, 'keeping': 1.0, 'stronger': 1.0, 'been': 2.0, 'my': 1.0, 'everyday': 1.0, 'walk': 1.0, 'on': 1.0, 'skidding': 2.0, 'two': 1.0, 'i': 4.0, 'around': 1.0, 'is': 3.0, 'curbs': 1.0, 'rattling': 1.0, 'vehicle': 1.0, 'steep': 1.0, 'without': 1.0, 'double': 1.0, 'for': 1.0, 'stars': 1.0, 'good': 1.0, 'made': 1.0, 'cons': 2.0, 'child': 1.0, 'up': 1.0, 'typical': 1.0, 'like': 1.0, 'to': 4.0, 'any': 1.0, 'arms': 1.0, 'and': 6.0, 'class': 1.0, 'our': 3.0, 'stroller': 3.0, 'quattro': 1.0, 'tour': 1.0, 'that': 2.0, 'because': 1.0, 'duoglider': 1.0, 'old': 2.0, 'gave': 1.0, 'month': 2.0, 'it': 4.0, 'can': 2.0, 'but': 1.0, '5': 1.0, 'second': 1.0, 'from': 1.0, 'accompany': 1.0, 'since': 2.0, 'three': 1.0, 'a': 6.0, 's': 1.0, 't': 1.0, 'have': 5.0, 'all': 1.0, 'other': 1.0, '21': 1.0, 'gear': 1.0, 'had': 2.0, 'correct': 1.0, 'was': 1.0, 'children': 1.0, 'this': 5.0, 'plus': 1.0, 'are': 1.0, 'first': 1.0, 'pros': 1.0, 'with': 4.0, 'pavement': 1.0, 'compare': 1.0, 'nothing': 1.0, 've': 2.0, 'would': 1.0, 'read': 1.0, 'single': 1.0, 'in': 3.0, 'regards': 1.0, 'be': 1.0, 'chance': 1.0, 'wise': 1.0, 'off': 1.0, 'see': 1.0, 'born': 1.0, 'punishment': 1.0, 'if': 1.0, 'push': 1.0, 'you': 2.0, 'not': 1.0, 'uneven': 1.0, 'do': 1.0, 'much': 1.0, 'put': 1.0, 'never': 1.0, 'some': 1.0, 'inconveniences': 1.0, 'too': 1.0, 'one': 1.0, 'the': 5.0, 'person': 1.0, 'of': 1.0, 'better': 1.0, 'strollers': 1.0, 'growing': 1.0, 'front': 1.0, 'wheels': 1.0, 'reviews': 1.0, 'we': 2.0, 'take': 2.0, 'or': 1.0}
Word element => {'climb': 1.0, 'when': 1.0, 'is': 1.0, 'have': 1.0, 'into': 1.0, 'loves': 1.0, 'the': 1.0, 'my': 1.0, 'seat': 1.0, 'tries': 1.0, 'i': 2.0, 'keep': 1.0, 'problem': 1.0, 'way': 1.0, 'that': 1.0, 'there': 1.0, 'wish': 1.0, 'a': 1.0, 'was': 1.0, 'to': 2.0, 'son': 1.0, 'from': 1.0, 'he': 1.0, 'with': 1.0, 'this': 1.0, 'only': 1.0, 'it': 3.0, 'moving': 1.0}
Word element => {'thumbs': 1.0, 'give': 1.0, 'i': 1.0, 'seats': 1.0, 'top': 1.0, 'up': 1.0, 'of': 1.0, 'be': 1.0, 'test': 1.0, 'manufactured': 1.0, 'convience': 1.0, 'has': 1.0, 'seat': 1.0, 'rest': 1.0, 'in': 1.0, 'one': 1.0, 'for': 3.0, 'car': 1.0, 'to': 2.0, 'show': 1.0, 'easy': 1.0, 'additional': 1.0, 'secure': 1.0, 'back': 1.0, 'holders': 1.0, 'a': 2.0, 'the': 2.0, 'support': 1.0, 'comfort': 1.0, 'is': 1.0, 'it': 1.0, 'this': 2.0, 'cup': 1.0, 'high': 1.0, 'arm': 1.0, 'two': 2.0, 'and': 1.0}
Word element => {'else': 1.0, 'someone': 1.0, 'just': 1.0, 'keep': 1.0, 'second': 1.0, 'ride': 2.0, 'stays': 1.0, 'buying': 1.0, 'ended': 1.0, 'actually': 1.0, 'cupholders': 1.0, 'out': 1.0, 'as': 2.0, 'to': 4.0, 'all': 3.0, 'easy': 2.0, 'sure': 1.0, 'my': 4.0, 'matter': 1.0, 'daughter': 2.0, 'normally': 1.0, 'she': 1.0, 'so': 2.0, 'lightweight': 1.0, 'can': 2.0, 'shoulder': 1.0, 'but': 1.0, 'like': 1.0, 'around': 1.0, 'these': 1.0, 'comes': 1.0, 'really': 1.0, 'that': 2.0, 'loves': 1.0, 'it': 6.0, 'hooks': 1.0, 'on': 4.0, 'make': 1.0, 'up': 2.0, 'putting': 1.0, 'i': 5.0, 'threads': 1.0, 'about': 1.0, 'assembled': 1.0, 'convert': 1.0, 'of': 4.0, 'the': 13.0, 'both': 1.0, 'years': 1.0, 'case': 1.0, 'booster': 1.0, '4': 1.0, 'backless': 1.0, 'mostly': 1.0, 'a': 5.0, 'was': 1.0, 't': 2.0, 'belt': 2.0, 'doesn': 2.0, 'had': 1.0, 'pop': 2.0, 'came': 1.0, 'cover': 1.0, 'most': 1.0, 'back': 1.0, 'set': 1.0, 'herself': 1.0, 'secure': 1.0, 'also': 1.0, 'this': 2.0, 'closet': 1.0, 'seat': 4.0, 'in': 7.0, 'connect': 1.0, 'getting': 1.0, 'lap': 1.0, 'boyfriend': 1.0, 'put': 1.0, 'do': 3.0, 'arms': 1.0, 'and': 4.0, 'couple': 1.0, 'only': 1.0, 'quickly': 1.0, 'through': 1.0, 'we': 2.0, 'then': 1.0, 'one': 3.0, 'designs': 1.0, 'seatbelt': 1.0, 'slot': 2.0, 's': 3.0, 'sides': 1.0, 'colors': 1.0, 'which': 2.0, 'side': 1.0, 'car': 4.0, 'you': 2.0, 'have': 2.0, 'are': 1.0, 'always': 1.0, 'often': 1.0, 'under': 1.0, 'girl': 1.0, 'almost': 1.0, 'old': 1.0, 'later': 1.0, 'very': 1.0, 'two': 2.0, 'little': 1.0, 'armrests': 1.0, 'feel': 1.0, 'flimsy': 1.0, 'is': 5.0, 'at': 1.0, 'variety': 1.0}
Word element => {'even': 1.0, 'than': 1.0, 'cushy': 1.0, 'your': 1.0, 'slightly': 1.0, 'maybe': 1.0, 'installed': 1.0, 'and': 1.0, 'wiped': 1.0, 'similar': 1.0, 'very': 1.0, 'booster': 1.0, 'for': 3.0, 'have': 2.0, 'it': 1.0, 'this': 2.0, 'we': 2.0, 'easily': 1.0, 'spend': 1.0, 'car': 3.0, 'in': 1.0, 'britaxes': 2.0, 'our': 1.0, 'less': 1.0, 'graco': 1.0, 'bought': 1.0, 'i': 2.0, 'parkway': 1.0, 't': 1.0, 'the': 4.0, 'recommended': 1.0, 'main': 2.0, 'but': 2.0, 'didn': 1.0, 'is': 2.0, 'second': 1.0, 'want': 1.0, 'highly': 1.0, 'another': 1.0, 'to': 2.0, 'double': 1.0, 'britax': 2.0, 'of': 1.0, 'set': 1.0}
Word element => {'friends': 1.0, 'definately': 1.0, 'would': 1.0, 'cover': 1.0, 'also': 1.0, 'install': 1.0, 'easy': 1.0, 'is': 1.0, 'out': 1.0, 'thing': 1.0, 'whole': 1.0, 'take': 1.0, 'back': 1.0, 'in': 1.0, 'previous': 1.0, 'second': 1.0, 'padding': 1.0, 'rear': 1.0, 'remove': 1.0, 'it': 5.0, 'this': 2.0, 'first': 1.0, 'now': 1.0, 'had': 1.0, 'recommend': 1.0, 'was': 1.0, 'buy': 1.0, 'unlike': 1.0, 'wash': 1.0, 'child': 1.0, 'using': 1.0, 'for': 2.0, 'never': 1.0, 'foam': 1.0, 'exra': 1.0, 'but': 1.0, 'bought': 1.0, 'adjusting': 1.0, 'that': 2.0, 'are': 1.0, 'the': 6.0, 'poster': 1.0, 'straps': 1.0, 'thick': 1.0, 'because': 1.0, 'to': 6.0, 'our': 2.0, 'seat': 3.0, 'not': 1.0, 'of': 1.0, 'i': 2.0, 'and': 4.0, 'too': 1.0, 'again': 1.0, 'you': 1.0, 'when': 1.0, 'difficult': 1.0, 'facing': 1.0, 'we': 3.0, 'a': 1.0, 'little': 1.0, 'much': 1.0, 'do': 2.0, 'have': 2.0, 'tight': 1.0, 'another': 1.0, 'trouble': 1.0, 'adjusts': 1.0}
Word element => {'comfort': 1.0, 'asin': 1.0, 'color': 1.0, 'different': 1.0, 'car': 2.0, 'same': 1.0, 'sport': 1.0, 'the': 1.0, 'timber': 1.0, 'shipping': 1.0, '17': 1.0, 'pay': 1.0, 'with': 1.0, 'it': 1.0, 'is': 1.0, 'rear': 1.0, 'bad': 1.0, 'have': 1.0, 'install': 1.0, 'to': 2.0, 'cheaper': 1.0, 'facing': 1.0, 'store': 1.0, 'easy': 1.0, 'target': 1.0, 'looking': 1.0, '10': 1.0, 'nice': 1.0, 'graco': 1.0, 'too': 1.0, 'for': 1.0, 'comfortable': 1.0, 's': 1.0, 'seat': 2.0, 'not': 1.0, 'b000ezzwya': 1.0, 'available': 1.0, 'design': 1.0, 'extra': 1.0, 'we': 1.0, 'in': 1.0, 'online': 1.0, 'so': 1.0, 'order': 1.0, 'and': 2.0}
Word element => {'cover': 1.0, 'getting': 1.0, '2': 1.0, 'were': 1.0, 'tummy': 1.0, 'nursing': 1.0, 'regular': 1.0, 'itself': 1.0, 'have': 1.0, 'for': 1.0, 'liked': 1.0, 'pennies': 1.0, 'it': 1.0, 'this': 1.0, 'with': 2.0, 'he': 2.0, 'however': 2.0, 'played': 1.0, 'the': 4.0, 'hands': 1.0, 'never': 1.0, 'rings': 2.0, 'also': 1.0, 'loved': 1.0, 'and': 2.0, 'son': 1.0, 'floor': 1.0, 'pillow': 2.0, 'so': 1.0, 'time': 2.0, 'they': 1.0, 'helped': 1.0, 'while': 1.0, 'attached': 1.0, 'when': 1.0, 'our': 1.0, 'as': 1.0, 'to': 1.0, 'a': 3.0, 'could': 2.0, 'hold': 1.0, 'them': 1.0, 'both': 1.0, 'give': 1.0, 'up': 2.0, 'boppy': 1.0, 'tumbs': 1.0, 'i': 3.0, 'saved': 1.0, 'just': 1.0, 'by': 1.0, 'few': 1.0}
Word element => {'receiving': 1.0, 'after': 1.0, 'week': 1.0, 'about': 1.0, 'since': 1.0, 'or': 1.0, 'use': 1.0, 'still': 1.0, 'loops': 1.0, 'on': 1.0, 'big': 1.0, 'very': 1.0, 'way': 1.0, 'boppy': 1.0, 'is': 1.0, 'haven': 1.0, 'made': 1.0, 'the': 8.0, 'came': 1.0, 'to': 1.0, 'material': 1.0, 'like': 1.0, 'too': 1.0, 'and': 1.0, 'kind': 1.0, 'get': 1.0, 'it': 6.0, 'with': 2.0, 'properly': 1.0, 'we': 1.0, 's': 2.0, 't': 2.0, 'a': 4.0, 'was': 1.0, 'doesn': 1.0, 'but': 3.0, 'for': 1.0, 'cheap': 1.0, 'fit': 1.0, 'bothered': 1.0, 'even': 1.0, 'rings': 2.0, 'secure': 1.0, 'item': 1.0, 'tight': 1.0, 'my': 1.0, 'cover': 3.0, 're': 1.0, 'them': 1.0, 'baby': 1.0, 'different': 1.0, 'good': 1.0, 'toys': 2.0, 'loves': 1.0, 'that': 2.0, 'ok': 1.0, 'linking': 2.0, 'are': 1.0, 'they': 1.0, 'of': 2.0, 'pain': 1.0}
Word element => {'recommend': 1.0, 'a': 1.0, 'would': 1.0, 'at': 1.0, 'great': 1.0, 'it': 1.0, 'got': 1.0, 'thank': 1.0, 'exactly': 1.0, 'everything': 1.0, 'expectedi': 1.0, 'its': 1.0, 'you': 1.0, 'what': 1.0, 'i': 1.0, 'deali': 1.0, 'about': 1.0, 'this': 1.0, 'loved': 1.0, 'iti': 1.0}
Word element => {'herself': 1.0, 'out': 1.0, 'and': 2.0, 'in': 1.0, 'light': 1.0, 'by': 1.0, 'large': 1.0, 'nice': 1.0, 'cup': 1.0, 'maneuver': 1.0, 'my': 3.0, 'smaller': 1.0, 'has': 2.0, 'ride': 1.0, 'easy': 1.0, 'get': 1.0, 'folds': 1.0, 'kept': 1.0, 'that': 1.0, 'basket': 1.0, 'hitting': 1.0, 'it': 5.0, 'this': 1.0, 'taken': 1.0, 'children': 1.0, 'bar': 1.0, 'i': 4.0, 'travel': 1.0, 'floor': 1.0, 'for': 1.0, 'bought': 1.0, 'one': 1.0, 'than': 1.0, 'because': 1.0, 'tour': 1.0, 'quattro': 1.0, 'stroller': 1.0, 'can': 1.0, 'but': 2.0, 'other': 2.0, 'off': 1.0, 'holds': 1.0, 'is': 1.0, 'holder': 1.0, 'would': 1.0, 'hate': 1.0, 'how': 1.0, 'down': 1.0, 'snug': 1.0, 'have': 1.0, 'due': 1.0, 'the': 2.0, 'a': 3.0, 's': 2.0, 'to': 2.0, 'when': 1.0, 'daughter': 1.0, 'collapse': 1.0, 'also': 1.0}
Word element => {'use': 1.0, 'still': 1.0, 'that': 1.0, 'aisles': 1.0, 'easier': 1.0, 'van': 1.0, 'or': 1.0, 'pushing': 1.0, 'handles': 1.0, 'feet': 1.0, 'reaching': 1.0, 'about': 1.0, 'no': 1.0, 'both': 1.0, 'fairly': 1.0, 'are': 1.0, 'bigger': 1.0, 'navigate': 1.0, 'at': 1.0, 'in': 3.0, 'for': 3.0, 'one': 1.0, 'neighborhood': 1.0, 'purchased': 1.0, 'smaller': 1.0, 'wanted': 1.0, 'around': 1.0, 'is': 3.0, 'together': 1.0, 'hitting': 1.0, 'cosco': 1.0, 'tight': 1.0, 'fits': 1.0, 'my': 1.0, 'lightweight': 2.0, 'the': 5.0, 'size': 2.0, 'plus': 1.0, 'but': 3.0, 'stroller': 6.0, 'beginnings': 1.0, 'put': 1.0, 's': 1.0, 'walks': 1.0, 'a': 5.0, 'we': 4.0, 'other': 1.0, '30': 1.0, 'full': 2.0, 'this': 1.0, 'it': 5.0, 'wife': 1.0, 'looked': 1.0, 'have': 2.0, 'larger': 1.0, 'was': 1.0, 'store': 2.0, 'local': 1.0, 'when': 2.0, 'tall': 1.0, 'and': 3.0, 'too': 1.0, 'graco': 1.0, 'intially': 1.0, 'i': 3.0, 'problems': 1.0, 'old': 1.0, 'to': 1.0, 'our': 3.0, 'great': 2.0, '1': 1.0, 'big': 1.0, 'literider': 1.0, 'year': 1.0, 'almost': 1.0, 'taller': 1.0, 'much': 2.0, 'than': 2.0, 'strollers': 1.0}
Word element => {'than': 1.0, 'less': 1.0, 'something': 1.0, 'buy': 1.0, 'before': 1.0, 'weight': 1.0, 'be': 1.0, 'been': 1.0, 'advice': 1.0, 's': 1.0, 'point': 1.0, 't': 1.0, 'don': 1.0, 'very': 1.0, 'priced': 1.0, 'different': 1.0, 'extra': 1.0, 'get': 2.0, 'can': 1.0, 'base': 1.0, 'day': 1.0, 'times': 1.0, '5': 1.0, '4': 1.0, 'around': 1.0, 'things': 1.0, 'you': 3.0, 'snugride': 1.0, 'makes': 1.0, 'believe': 1.0, '17': 1.0, 'only': 1.0, 'pounds': 1.0, '30': 1.0, '25': 1.0, 'like': 1.0, 'were': 1.0, 'looked': 1.0, 'nothing': 1.0, 'prius': 1.0, 'guess': 1.0, 'system': 2.0, 'groceries': 1.0, 'comes': 1.0, 'these': 1.0, 'room': 1.0, 'anything': 1.0, 'works': 2.0, 'trunk': 1.0, 'gets': 1.0, 'if': 1.0, 'still': 2.0, 'lighter': 1.0, 'any': 1.0, 'pretty': 1.0, 'to': 2.0, 'child': 1.0, 'on': 3.0, 'much': 2.0, 'do': 2.0, 'put': 1.0, 'and': 7.0, 'similar': 1.0, 'a': 8.0, 'difference': 1.0, 'we': 3.0, 'could': 1.0, 'for': 5.0, 'expensive': 2.0, 'left': 1.0, 'market': 1.0, 'sure': 1.0, 'second': 1.0, 'look': 1.0, 'at': 3.0, 'is': 6.0, 'more': 3.0, 'reasonably': 1.0, 'detachable': 1.0, 'folding': 1.0, 'with': 7.0, 'few': 1.0, 'this': 6.0, 'our': 2.0, 'stroller': 3.0, 'great': 3.0, 'decent': 1.0, 'spot': 1.0, 'of': 3.0, 'the': 9.0, 'heavier': 1.0, 'are': 4.0, 'using': 1.0, 'light': 2.0, 'infant': 4.0, 'car': 3.0, 'value': 1.0, 'wanted': 1.0, 'attractive': 1.0, 'really': 2.0, 'everything': 1.0, 'wife': 1.0, 'three': 1.0, 'about': 1.0, 'us': 1.0, 'lift': 1.0, 'years': 2.0, 'in': 2.0, 'seat': 5.0, 'm': 1.0, 'both': 1.0, 'cars': 1.0, 'has': 1.0, 'simple': 1.0, 'broken': 1.0, 'perfectly': 1.0, 'there': 2.0, 'as': 2.0, 'bags': 1.0, 'systems': 1.0, 'strollers': 4.0, 'but': 3.0, 'back': 1.0, 'most': 2.0, 'over': 1.0, 'work': 1.0, 'i': 3.0, 'lug': 1.0, 'it': 6.0, 'hits': 1.0, 'not': 1.0, 'when': 1.0, 'what': 2.0, 'would': 1.0, 'either': 1.0, 'sturdy': 1.0, 'they': 2.0, 'better': 1.0, 'try': 1.0, 'lives': 1.0, 'lot': 1.0, 'one': 1.0, 'real': 1.0, 'best': 1.0, 'combi': 3.0, 'sweet': 1.0, 'matching': 1.0, 'other': 1.0, 'an': 2.0, 'carrier': 1.0, 'quite': 1.0, 'know': 1.0, 'bit': 1.0, 'or': 2.0, 'type': 1.0, 'lbs': 2.0, 'was': 2.0, '20': 1.0, 'easily': 1.0, 'that': 2.0, 'enough': 1.0, 'bases': 1.0, 'me': 1.0, 'my': 2.0}
Word element => {'1': 1.0, 'until': 1.0, 'shopping': 1.0, 'grocery': 1.0, 'enough': 1.0, 'light': 1.0, 'mall': 1.0, 'position': 1.0, 'aisles': 1.0, 'into': 1.0, 'snaps': 1.0, 'push': 1.0, 'strap': 1.0, 'adjustable': 1.0, 'i': 1.0, 'stretch': 1.0, 'enabled': 1.0, 'an': 1.0, 'own': 1.0, 'and': 3.0, 'lay': 1.0, 'be': 1.0, 'to': 4.0, 'baby': 1.0, 'price': 1.0, 'having': 1.0, 'age': 1.0, 'in': 3.0, 'fits': 1.0, 'maneuver': 1.0, 'my': 1.0, 'sits': 1.0, 'recline': 1.0, 'wish': 1.0, 'this': 1.0, 'she': 2.0, 'it': 7.0, 'only': 2.0, 'the': 3.0, 'without': 1.0, 'a': 2.0, 'stroller': 1.0, 'one': 1.0, 'uncomfortable': 1.0, 'for': 1.0, 'wonderful': 2.0, 'crammed': 1.0, 'her': 2.0, 'down': 1.0, 'herself': 1.0, 'carrier': 1.0, 'was': 2.0, 'lays': 1.0, 'easy': 1.0, 'con': 1.0, 'had': 1.0, 'either': 1.0, 'around': 1.0, 'is': 4.0, 'completely': 1.0, 'up': 2.0, 'or': 1.0, 'at': 1.0, 'once': 1.0, 'beginner': 1.0, 'so': 1.0, '90': 1.0, 'sitting': 1.0, 'well': 1.0, 'comfortably': 1.0, 'angle': 1.0, 'constantly': 1.0, 'on': 1.0}
Word element => {'larger': 1.0, 'sell': 1.0, 'opted': 1.0, 'slumped': 1.0, 'or': 1.0, 'slouched': 1.0, 'inbetween': 1.0, 'too': 1.0, 'and': 7.0, 'are': 1.0, 'upright': 2.0, 'unfold': 1.0, 'sitting': 1.0, 'but': 1.0, 'most': 1.0, 'reclined': 1.0, 'position': 1.0, 'i': 7.0, 'has': 1.0, 'is': 5.0, 'compactly': 1.0, 'wish': 1.0, 'delivers': 1.0, 'stroller': 5.0, 'in': 1.0, 'seat': 5.0, 'was': 3.0, 'doesn': 1.0, 'wanted': 1.0, 'easy': 3.0, 'poor': 1.0, 'there': 1.0, 'umbrella': 1.0, 'fold': 1.0, 'up': 1.0, 'extreme': 1.0, 'bought': 1.0, 'assemble': 1.0, 'than': 1.0, 'huge': 2.0, 'decided': 1.0, 'positions': 1.0, 'thing': 1.0, 'not': 1.0, 'because': 1.0, 'that': 5.0, 'basket': 1.0, 'month': 1.0, 'bigger': 1.0, 'keep': 1.0, 'three': 1.0, 'to': 5.0, 'pretty': 1.0, 'an': 2.0, 'other': 1.0, 'when': 2.0, 'issue': 1.0, 'recline': 2.0, 'it': 4.0, 'shade': 1.0, 'made': 1.0, 't': 1.0, 'a': 2.0, 'two': 1.0, 'walks': 1.0, 'folds': 1.0, 'baby': 1.0, 'like': 1.0, 'point': 1.0, 'on': 1.0, 'noticed': 1.0, 'old': 1.0, 'harness': 1.0, 'sun': 2.0, 'underneath': 1.0, 'my': 1.0, 'off': 1.0, 'access': 1.0, 'edited': 1.0, 'walk': 1.0, 'something': 1.0, 'add': 1.0, 'support': 1.0, 'after': 1.0, 'this': 3.0, 'few': 1.0, 'sliding': 1.0, 'bulky': 1.0, 'weeks': 1.0, 'the': 13.0, 'of': 2.0, 'use': 1.0, 'both': 1.0, 'sunshade': 1.0, 'also': 1.0, 'for': 1.0, 'combined': 1.0, 'with': 1.0, 'purchase': 1.0, 'options': 1.0, 'really': 1.0, 'unusable': 1.0, 'annoying': 1.0, 'lacks': 1.0, '8': 1.0, 'spent': 1.0}
Word element => {'again': 1.0, 'purchase': 1.0, 'would': 1.0, 'handed': 1.0, 'unfold': 1.0, 'one': 1.0, 'for': 1.0, 'not': 1.0, 'through': 1.0, 'gravel': 1.0, 'easy': 1.0, 'stroller': 1.0, 'is': 1.0, 'anything': 1.0, 'live': 1.0, 'on': 1.0, 'to': 2.0, 'buying': 1.0, 'don': 1.0, 'hard': 1.0, 'this': 1.0, 'it': 5.0, 'i': 2.0, 'regret': 1.0, 'push': 1.0, 'me': 1.0, 'and': 2.0, 's': 2.0, 'including': 1.0, 'lightweight': 1.0, 't': 1.0, 'the': 1.0, 'roads': 1.0, 'goes': 1.0, 'we': 1.0}
Word element => {'s': 1.0, 'etc': 1.0, 'on': 1.0, 'good': 1.0, 'no': 1.0, 'pavement': 1.0, 'that': 1.0, 'stars': 1.0, '5': 1.0, 'give': 1.0, 'don': 1.0, 'i': 1.0, 'in': 1.0, 'reason': 1.0, 'when': 1.0, 'use': 1.0, 'decent': 1.0, 'collapsed': 1.0, 'handed': 1.0, 'has': 1.0, 'folds': 1.0, 'one': 1.0, 'love': 1.0, 'huge': 1.0, 'basket': 1.0, 'dirt': 1.0, 'a': 2.0, 'we': 1.0, 'trails': 1.0, 'and': 3.0, 'get': 1.0, 'therefore': 1.0, 'only': 2.0, 'this': 1.0, 'it': 5.0, 'parent': 1.0, 'stroller': 1.0, 'toddler': 1.0, 't': 1.0, 'the': 1.0, 'limited': 1.0, 'tray': 1.0, 'is': 4.0, 'to': 2.0, 'easy': 1.0, 'compact': 1.0}
Word element => {'disappoint': 1.0, 'range': 1.0, 'price': 1.0, 'in': 1.0, 'looking': 1.0, 'budget': 1.0, 'are': 2.0, 'you': 2.0, 'if': 1.0, 'easy': 1.0, 'around': 1.0, 'is': 1.0, 'and': 2.0, 'move': 1.0, 'however': 1.0, 'after': 1.0, 'reviews': 1.0, 'had': 1.0, 'first': 1.0, 'product': 1.0, 'for': 1.0, 'fav': 1.0, 'wont': 1.0, 'a': 2.0, 'mall': 1.0, 'during': 1.0, 'stroll': 1.0, 'of': 1.0, 'amazon': 1.0, 'ordered': 1.0, 'from': 1.0, 'very': 1.0, 'the': 7.0, 'i': 1.0, 'sport': 1.0, 'this': 3.0, 'jeep': 2.0, 'habit': 1.0, 'cherokee': 1.0, 'our': 1.0, 'to': 2.0, 'all': 1.0, '7': 1.0, 'daughter': 1.0, 'basket': 1.0, 'initially': 1.0, 'babies': 1.0, 'gave': 1.0, 'us': 1.0, 'her': 2.0, 'month': 1.0, 'she': 1.0, 'review': 1.0, 'has': 2.0, 'reading': 1.0, 'like': 1.0, 'head': 1.0, 'conscious': 1.0, 'leaning': 1.0, 'against': 1.0, 'sides': 1.0, 'stroller': 4.0, 'lacked': 1.0, 'big': 1.0, 'padded': 2.0, 'support': 2.0}
Word element => {'out': 1.0, 'forcefully': 1.0, 'sunshade': 1.0, 'on': 2.0, '3': 2.0, 'wayit': 1.0, 'design': 1.0, 'touch': 1.0, 'be': 1.0, 'some': 1.0, 'decent': 1.0, 'cupholders': 1.0, 'get': 1.0, 'kind': 1.0, 'handles': 1.0, 'water': 1.0, 'up': 2.0, 'child': 2.0, 'hopingto': 1.0, 'don': 1.0, 'has': 2.0, 'storage': 1.0, 'quite': 1.0, 'stroller': 3.0, 'foldable': 1.0, 'of': 4.0, 'the': 10.0, 'my': 1.0, 'a': 3.0, 'could': 2.0, 't': 2.0, 'going': 1.0, 'for': 1.0, 'looking': 1.0, 'low': 1.0, 'was': 2.0, 'doesn': 1.0, 'well': 1.0, 'i': 3.0, 'other': 1.0, 'all': 1.0, 'as': 1.0, 'high': 1.0, 'to': 2.0, 'seat': 1.0, '1': 1.0, 'shallow': 1.0, 'padded': 1.0, 'seems': 1.0, 'until': 1.0, 'and': 5.0, 'tray': 3.0, 'one': 2.0, 'metal': 1.0, 'old': 1.0, 'very': 2.0, 'fall': 1.0, 'bangs': 1.0, 'problems': 1.0, 'that': 6.0, 'chair': 1.0, 'already': 1.0, 'hits': 1.0, 'it': 5.0, 'month': 1.0, 'folds': 1.0, 'she': 2.0, 'with': 1.0, 'this': 1.0, 'so': 1.0, 'lightweight': 1.0, 'can': 2.0, 'but': 1.0, '2': 1.0, 'work': 1.0, 'upon': 1.0, 'destined': 1.0, 'ok': 1.0, 'break': 1.0, 'good': 1.0, 'made': 1.0, 's': 3.0, 'maybe': 1.0, 'improved': 1.0, '14': 1.0, 'bottlescan': 1.0, 'usually': 1.0, 'plasticso': 1.0, 'take': 1.0, 'dirty': 1.0, 'stress': 1.0, 'back': 2.0, 'baron': 1.0, 'head': 1.0, 'double': 1.0, 'flexible': 1.0, 'although': 1.0, 'is': 4.0, 'sits': 1.0, 'use': 1.0, 'however': 1.0, 'know': 1.0, 'if': 1.0, 'ground': 1.0, 'parent': 1.0}
Word element => {'good': 1.0, 'so': 1.0, 'problem': 1.0, 'on': 1.0, 'is': 1.0, 'covers': 1.0, 'a': 2.0, 'the': 4.0, 'love': 1.0, 'only': 1.0, 'with': 1.0, 'it': 1.0, 'thing': 1.0, 'together': 1.0, 'part': 1.0, 'that': 1.0, 'was': 1.0, 'had': 1.0, 'buy': 1.0, 'i': 2.0, 'putting': 1.0, 'but': 1.0, 'cute': 1.0, 'print': 1.0, 'still': 1.0}
Word element => {'t': 1.0, 'they': 1.0, 'problem': 1.0, 'be': 1.0, 'really': 1.0, 'there': 1.0, 'we': 2.0, 'features': 1.0, 'have': 1.0, 'a': 4.0, 'small': 1.0, 'all': 2.0, 'as': 1.0, 'reason': 1.0, 'using': 1.0, 'washer': 1.0, 'are': 2.0, 'you': 1.0, 'unless': 2.0, 'does': 1.0, 'say': 1.0, 'around': 1.0, 'is': 4.0, 'comes': 1.0, 'me': 1.0, 'forward': 1.0, 'not': 1.0, 'but': 1.0, 'food': 2.0, 'just': 1.0, 'sliding': 1.0, 'had': 1.0, 'disassembles': 1.0, 'was': 4.0, 'drain': 1.0, 'survived': 1.0, 'children': 1.0, 'add': 1.0, 'uses': 1.0, 'time': 1.0, 'has': 2.0, 'batteries': 2.0, 'us': 1.0, 'also': 1.0, 'been': 1.0, 'easily': 1.0, 'because': 1.0, 'that': 5.0, 'babies': 2.0, 'swing': 3.0, 'read': 1.0, 'each': 1.0, 'eating': 1.0, 'beginning': 2.0, 'from': 1.0, 'no': 1.0, 'let': 1.0, 'few': 1.0, 'this': 4.0, '9': 1.0, 'it': 8.0, 'useless': 1.0, 'our': 1.0, 'disappointed': 1.0, 'seat': 3.0, 'in': 5.0, 'great': 5.0, 'the': 12.0, 'accidents': 1.0, 'anyone': 1.0, 'and': 4.0, 'too': 1.0, 'cover': 1.0, 'off': 1.0, 'wash': 1.0, 'up': 1.0, 'assembly': 1.0, 'only': 1.0, 'thing': 2.0, 'about': 2.0, 'head': 2.0, 'pillow': 1.0, 'might': 1.0, 'came': 1.0, 'with': 1.0, 'can': 1.0, 'constantly': 1.0, 'make': 1.0, 'ended': 1.0, 'i': 2.0, 'well': 1.0, 'putting': 1.0, 'support': 1.0, 'car': 1.0, 'worked': 2.0, 'another': 1.0, 'months': 1.0, 'bouncer': 2.0, 'for': 5.0, 'two': 1.0, 'little': 1.0, 'were': 1.0, 'to': 4.0, 'straight': 1.0, 'high': 1.0, 'chairs': 1.0, 'feeding': 1.0, 'baby': 1.0, 'easy': 1.0}
Word element => {'luck': 1.0, 'good': 1.0, 'disappointed': 1.0, 'very': 1.0, 'possible': 1.0, 'set': 1.0, 'if': 2.0, 'around': 1.0, 'but': 1.0, 'instruction': 1.0, 'every': 1.0, 'popped': 1.0, 'snugly': 1.0, 're': 1.0, 'off': 1.0, 'snap': 1.0, 'wouldn': 1.0, 'time': 1.0, 'so': 2.0, 'poorly': 1.0, 'not': 1.0, 'straightforward': 1.0, 'assembly': 1.0, 'over': 1.0, 'mobile': 2.0, 'snaps': 1.0, 'would': 1.0, 'each': 1.0, 'onto': 1.0, 'fairly': 1.0, 'are': 1.0, 'check': 1.0, 'top': 2.0, 'thankfully': 1.0, 'at': 1.0, 'for': 3.0, 'stunned': 1.0, 'person': 1.0, 'bars': 3.0, 'metal': 1.0, 'curved': 2.0, 'the': 14.0, 'holes': 2.0, 'recommend': 1.0, 'was': 5.0, 'frame': 1.0, 'returned': 1.0, 'machine': 1.0, 'to': 1.0, 'a': 1.0, 't': 2.0, 'we': 2.0, 'swing': 3.0, 'these': 2.0, 'some': 1.0, 'poor': 1.0, 'bar': 1.0, 'purchased': 1.0, 'also': 1.0, 'item': 1.0, 'out': 1.0, 'shopping': 1.0, 'equally': 1.0, 'feet': 1.0, 'it': 3.0, 'of': 3.0, 'recommendations': 1.0, 'booklet': 1.0, 'on': 4.0, 'two': 1.0, 'i': 3.0, 'arrived': 1.0, 'baby': 1.0, 'quality': 1.0, 'them': 1.0, 'screws': 2.0, 'have': 1.0, 'screw': 1.0, 'turned': 1.0, 'able': 1.0, 'pre': 1.0, 'written': 1.0, 'into': 1.0, 'too': 1.0, 'drilled': 2.0, 'and': 4.0, 'in': 2.0, 'which': 1.0, 'when': 1.0, 'you': 2.0, 'bite': 1.0, 'were': 2.0, 'by': 1.0, 'large': 1.0, 'based': 1.0, 'this': 2.0, 'weren': 1.0}
Word element => {'anything': 1.0, 'at': 1.0, 'long': 1.0, 'his': 1.0, 'buttons': 1.0, 'before': 1.0, 'last': 1.0, 'don': 1.0, 'baby': 1.0, 'batteries': 1.0, 'swing': 1.0, 'but': 1.0, 'work': 1.0, 'convenient': 1.0, 'really': 1.0, 'admit': 1.0, 'and': 3.0, 'etc': 1.0, 'i': 1.0, 'detatchable': 1.0, 'the': 3.0, 'control': 1.0, 'is': 1.0, 'more': 1.0, 'my': 1.0, 'bouncer': 1.0, 'which': 1.0, 'have': 1.0, 'been': 1.0, 'loves': 1.0, 'that': 1.0, 'than': 1.0, 'power': 1.0, 'pushed': 1.0, 'speed': 1.0, 'seat': 1.0, 'all': 1.0, 'to': 1.0, 'be': 1.0, 'several': 1.0, 'times': 1.0, 'they': 1.0, 'overall': 1.0, 'it': 1.0, 'a': 1.0, 't': 1.0, 's': 1.0, 'of': 1.0, 'frustration': 1.0}
Word element => {'nice': 1.0, 'hours': 1.0, 'last': 1.0, 'because': 1.0, 'fast': 1.0, 'out': 1.0, 'battery': 2.0, 'some': 1.0, 'why': 1.0, 'and': 1.0, 'me': 1.0, 'childcare': 1.0, 't': 1.0, 'a': 4.0, 'alot': 1.0, 'many': 2.0, 'people': 1.0, 'beleive': 1.0, 'have': 1.0, 'he': 1.0, 'on': 1.0, 'course': 1.0, 'say': 1.0, 'is': 4.0, 'really': 2.0, 'run': 1.0, 'asleep': 1.0, 'the': 5.0, 'of': 2.0, 'don': 1.0, 'sound': 1.0, 'up': 1.0, 'swing': 2.0, 'babies': 1.0, 'that': 2.0, 'best': 1.0, 'will': 1.0, 'swings': 1.0, 'thanks': 1.0, 'when': 1.0, 'for': 1.0, 'love': 1.0, 'where': 1.0, 'rely': 1.0, 'keep': 1.0, 'watch': 1.0, 'pounds': 1.0, 'i': 7.0, 'ever': 1.0, 'one': 2.0, 'bought': 2.0, 'to': 2.0, 'dies': 1.0, 'baby': 2.0, 'comforted': 1.0, 'it': 2.0, 'she': 1.0, 'fact': 1.0, 'can': 1.0, 'this': 3.0, '30': 1.0, 'cranky': 1.0, 'or': 1.0, 'goes': 1.0, 'before': 1.0, 'hold': 1.0, 'know': 2.0}
Word element => {'says': 1.0, 'ad': 1.0, 'open': 1.0, 'baby': 1.0, 'new': 1.0, 'putting': 1.0, 'way': 1.0, 'in': 2.0, 'until': 1.0, 'need': 1.0, 'wait': 1.0, 'not': 2.0, 'tray': 1.0, 'advice': 1.0, 'on': 1.0, 'put': 3.0, 'easy': 2.0, 'good': 2.0, 'or': 1.0, 'as': 2.0, 'to': 5.0, 'grow': 1.0, 'selection': 1.0, 'together': 2.0, 'daughter': 1.0, 'you': 2.0, 'when': 3.0, 'other': 1.0, 'fuzzy': 1.0, 'nature': 1.0, 'positions': 1.0, 'i': 1.0, 'three': 1.0, 'swing': 4.0, 'very': 1.0, 'little': 1.0, 'has': 1.0, 'comfortably': 1.0, 'first': 1.0, '8lbs': 1.0, 'actually': 1.0, 'are': 1.0, 'my': 3.0, 'happy': 1.0, 'newborn': 1.0, 'and': 3.0, 'a': 3.0, 'into': 1.0, 'that': 2.0, 'was': 3.0, 'hug': 1.0, 'so': 2.0, 'born': 1.0, 'the': 8.0, 'like': 1.0, 'hold': 1.0, 'up': 1.0, '30lbs': 1.0, 'can': 1.0, 'but': 1.0, 'music': 1.0, 'holds': 1.0, 'is': 6.0, 'she': 1.0, 'it': 5.0, 'hard': 1.0, 'will': 1.0, 'sounds': 1.0, 'distinguish': 1.0}
Word element => {'saver': 1.0, 'life': 1.0, 'a': 1.0, 'has': 1.0, 'adjusted': 1.0, 'quickly': 1.0, 'be': 1.0, 'sit': 1.0, 'loves': 1.0, 'this': 2.0, 'son': 1.0, 'is': 1.0, 'and': 3.0, 'my': 1.0, 'been': 1.0, 'swing': 2.0, 'falls': 1.0, 'are': 1.0, 'controls': 1.0, 'the': 2.0, 'great': 1.0, 'often': 1.0, 'baby': 1.0, 'to': 2.0, 'asleep': 1.0, 'speed': 2.0, 'can': 1.0, 'locate': 1.0, 'quiety': 1.0, 'easy': 1.0}
Word element => {'room': 1.0, 'staring': 1.0, 'just': 1.0, 'both': 1.0, 'motions': 1.0, 'rhythmic': 1.0, 'love': 1.0, 'head': 1.0, 'cradles': 1.0, 'sudden': 1.0, 'all': 1.0, 'content': 1.0, 'thing': 2.0, 'only': 1.0, 'quickly': 1.0, 'eats': 1.0, 'really': 1.0, 'battery': 1.0, 'drawback': 1.0, 'when': 1.0, 'recognize': 1.0, 'middle': 1.0, 'times': 1.0, 'multiple': 1.0, 'button': 1.0, 'having': 1.0, 'off': 1.0, 'wonderfully': 1.0, 'turning': 1.0, 'have': 1.0, 'static': 1.0, 'sounding': 1.0, 'sounds': 1.0, 'soothing': 1.0, 'form': 1.0, 'falling': 1.0, 'or': 1.0, 'shape': 1.0, 'any': 1.0, 'doesn': 1.0, 'tv': 1.0, 'resemble': 1.0, 'however': 1.0, 'restarts': 1.0, 'another': 1.0, 'stops': 1.0, 'way': 1.0, 'strains': 1.0, 'at': 1.0, 'is': 8.0, 'constantly': 1.0, 'cons': 1.0, 'definitely': 1.0, 'day': 1.0, 'some': 1.0, 'on': 3.0, 'ridiculously': 1.0, 'shakes': 1.0, 'through': 2.0, 'supports': 1.0, 'loved': 1.0, 'while': 2.0, 'absolutely': 3.0, 'in': 2.0, 'm': 1.0, 'friend': 1.0, 'mobile': 1.0, 'tray': 1.0, 'one': 1.0, '6': 2.0, 'but': 1.0, 'around': 1.0, 'music': 1.0, 'week': 1.0, 'from': 3.0, 'purpose': 1.0, 'a': 4.0, 'swinging': 1.0, 'we': 2.0, 's': 2.0, 'finally': 1.0, 'going': 1.0, 'asleep': 1.0, 'gift': 1.0, 'good': 1.0, 'her': 5.0, 'they': 1.0, 'bears': 1.0, 'it': 9.0, 'baby': 1.0, 'she': 2.0, 'this': 2.0, 'keeping': 2.0, 'wonders': 1.0, 'such': 1.0, 'for': 4.0, 'hospital': 1.0, 'afraid': 1.0, 'worthless': 1.0, 'old': 1.0, 'entertained': 1.0, 'swing': 8.0, 'offer': 1.0, 'our': 4.0, 'as': 1.0, 'to': 5.0, 'brought': 1.0, 'now': 1.0, 'home': 1.0, 'does': 2.0, 'whole': 2.0, 'there': 1.0, 'visual': 1.0, 'them': 1.0, 'has': 2.0, 'stimulation': 1.0, 'child': 2.0, 'up': 2.0, 'and': 10.0, 'closed': 1.0, 'barely': 1.0, 'operated': 1.0, 'instead': 1.0, 'even': 1.0, 't': 1.0, 'strange': 1.0, 'move': 1.0, 'with': 2.0, 'front': 1.0, 'hassle': 1.0, 'like': 2.0, 'rather': 1.0, 'i': 3.0, 'problems': 1.0, 'that': 5.0, 'nature': 2.0, 'be': 1.0, '3': 1.0, 'force': 1.0, 'no': 1.0, 'press': 2.0, 'dies': 1.0, 'down': 1.0, 'great': 1.0, 'foot': 1.0, 'hard': 1.0, 'open': 1.0, 'defeating': 1.0, 'the': 23.0, 'of': 3.0, 'popping': 1.0, 'not': 1.0, 'waking': 1.0, 'do': 1.0, 'horrid': 2.0, 'selection': 2.0, 'received': 1.0, 'song': 1.0, 'though': 2.0, 'night': 1.0, 'motion': 1.0, 'starts': 1.0, 'are': 1.0, 'cute': 1.0, 'first': 1.0}
Word element => {'hours': 1.0, '3': 1.0, '2': 1.0, 'sleeps': 1.0, 'actually': 1.0, 'week': 1.0, '8': 1.0, 'bottles': 1.0, 'like': 1.0, 'much': 1.0, 'do': 1.0, 'have': 1.0, 'so': 2.0, 'third': 1.0, 'out': 1.0, 'appropriate': 1.0, 'since': 1.0, 'our': 1.0, 'as': 1.0, 'to': 5.0, 'will': 2.0, 'swings': 1.0, 'batteries': 3.0, 'sturdy': 1.0, 'loves': 1.0, 'position': 1.0, 'would': 1.0, 'runs': 1.0, 'swing': 3.0, 'second': 1.0, 'researching': 1.0, 'lifesaver': 1.0, 'newborns': 1.0, 'sound': 1.0, 'wash': 1.0, 'anyway': 2.0, 'up': 1.0, 'after': 1.0, 'safe': 1.0, 'consumer': 1.0, 'son': 2.0, 'decided': 1.0, 'one': 1.0, 'my': 1.0, 'reasons': 1.0, 'great': 2.0, 'smart': 1.0, 'without': 1.0, 'recline': 1.0, 'accomodate': 1.0, 'it': 6.0, 'grows': 1.0, 'on': 3.0, 'he': 2.0, 'parent': 2.0, 'attractive': 1.0, 'the': 5.0, 'of': 2.0, 'there': 1.0, 'chair': 1.0, 'we': 1.0, 'reviews': 2.0, 'and': 6.0, 'has': 1.0, 'cord': 1.0, 'for': 6.0, 'such': 1.0, 'a': 9.0, 'small': 1.0, 'box': 1.0, 'this': 3.0, 'rocking': 1.0, 'plays': 1.0, 'time': 1.0, 'wide': 1.0, 'variety': 1.0, 'not': 1.0, 'want': 1.0, 'i': 1.0, 'outlet': 1.0, 'if': 1.0, 'all': 3.0, 'other': 2.0, 'an': 1.0, 'is': 4.0, 'recharger': 1.0, 'electric': 1.0, 'size': 1.0, 'safety': 1.0, 'but': 1.0, 'first': 1.0, 'are': 1.0, 'll': 1.0, 'invest': 1.0, 'in': 4.0, 'based': 1.0, 'good': 1.0, 'battery': 1.0, 'endless': 1.0, 'rechargeable': 1.0, 'back': 1.0, 'set': 1.0, 'sounds': 1.0, 'toys': 1.0, 'old': 1.0, 'run': 1.0, 'that': 1.0, 'because': 1.0, 'having': 1.0, 'online': 1.0, 'keeps': 1.0, 'register': 1.0, 'baby': 1.0, 'things': 1.0, 'you': 4.0, 'motion': 1.0, 'rock': 1.0}
Word element => {'have': 1.0, 'but': 1.0, 'loss': 1.0, 'little': 1.0, 'crib': 5.0, 'slid': 1.0, 'room': 2.0, 'unharmed': 1.0, 'out': 6.0, 'rv': 3.0, 'an': 1.0, 'the': 8.0, 'vehicle': 1.0, 'my': 4.0, 'accident': 1.0, 'were': 1.0, 'hit': 1.0, 'that': 1.0, 'when': 1.0, 'graco': 1.0, 'during': 1.0, 'travel': 1.0, 'rolled': 1.0, 'son': 4.0, 'life': 1.0, 'which': 1.0, 'in': 4.0, 'we': 1.0, 's': 1.0, 'a': 4.0, 'operation': 1.0, 'pulled': 1.0, 'tree': 1.0, 'and': 2.0, 'came': 1.0, 'of': 3.0, 'was': 4.0, 'slide': 2.0, 'from': 1.0, 'while': 1.0, 'it': 2.0, 'moving': 1.0, 'he': 1.0, 'falling': 1.0, 'then': 1.0, 'took': 1.0, 'saved': 1.0, 'i': 2.0, 'our': 1.0, 'all': 1.0, 'damage': 1.0}
Word element => {'sleeps': 1.0, 'when': 1.0, 'sides': 1.0, 'he': 1.0, 'keeps': 1.0, 'sons': 1.0, 'this': 1.0, 'rolling': 1.0, 'support': 1.0, 'my': 1.0, 'the': 1.0, 'from': 1.0, 'head': 1.0, 'to': 1.0}
Word element => {'fine': 1.0, 'just': 1.0, 'box': 1.0, 'black': 1.0, 'included': 1.0, 'anticipated': 1.0, 'though': 1.0, 'luckily': 1.0, 'them': 1.0, 'small': 1.0, 'are': 1.0, 'mesh': 1.0, 'own': 2.0, 'transparent': 1.0, 'their': 2.0, 'with': 1.0, 'they': 2.0, 'wipes': 1.0, 'diaper': 1.0, 'buy': 1.0, 'diapers': 1.0, 'at': 1.0, 'lot': 1.0, 'unfortunately': 1.0, 'doesn': 2.0, 'travel': 1.0, 'negatives': 1.0, 'me': 1.0, 'too': 1.0, 'and': 4.0, 'always': 1.0, 'of': 3.0, 'up': 1.0, 'it': 4.0, 'holders': 1.0, 'this': 4.0, 'he': 4.0, 'gross': 1.0, 'had': 1.0, 'all': 1.0, 'to': 2.0, 'originally': 1.0, 'huge': 1.0, 'one': 1.0, 'i': 2.0, 'feel': 1.0, 'rectangular': 1.0, 'come': 1.0, 'huggies': 1.0, 'move': 1.0, 'side': 1.0, 'really': 1.0, 'made': 1.0, 'the': 5.0, 'wings': 1.0, 'on': 3.0, 'boxes': 2.0, 'thing': 3.0, 'wide': 1.0, 't': 2.0, 's': 1.0, 'a': 2.0, 'we': 2.0, 'again': 1.0, 'when': 1.0, 'fit': 1.0, 'where': 1.0, 'd': 1.0, 'odin': 1.0, 'wants': 1.0, 'still': 2.0, 'in': 1.0, 'restrooms': 1.0, 'because': 1.0, 'would': 1.0, 'much': 1.0, 'works': 1.0, 'end': 1.0, 'costco': 1.0, 'touching': 1.0, 'is': 1.0, 'around': 1.0, 'hold': 2.0, 'like': 1.0, 'table': 1.0, 'but': 1.0, 'change': 1.0, 'can': 1.0, 'his': 1.0, 'pad': 1.0, 'enough': 1.0, 'legs': 1.0}
Word element => {'home': 1.0, 'until': 1.0, 'get': 2.0, 'can': 1.0, 'lays': 1.0, 'baby': 1.0, 'surface': 1.0, 'keeping': 1.0, 'cleaning': 1.0, 'clean': 1.0, 'bathrooms': 1.0, 'floor': 1.0, 't': 1.0, 'the': 3.0, 'some': 1.0, 'wings': 1.0, 'you': 2.0, 'including': 1.0, 'on': 2.0, 'everywhere': 1.0, 'even': 1.0, 'before': 1.0, 'used': 1.0, 'if': 1.0, 'pretty': 1.0, 'we': 1.0, 'gross': 1.0, 've': 1.0, 'in': 1.0, 'i': 1.0, 'love': 1.0, 'this': 1.0, 'it': 2.0, 'that': 1.0, 'up': 1.0, 'of': 1.0, 'fold': 1.0, 'to': 1.0, 'rolls': 1.0}
Word element => {'long': 1.0, 'for': 1.0, 'of': 1.0, 'cup': 1.0, 'price': 2.0, 'the': 1.0, 'beat': 1.0, 'anything': 1.0, 'time': 1.0, 'so': 1.0, 'you': 1.0, 'am': 1.0, 'outside': 1.0, 'hours': 1.0, '6': 1.0, 'needed': 2.0, 'noooooooo': 1.0, 'cant': 1.0, 'huge': 1.0, '2': 1.0, 'but': 1.0, 'will': 1.0, 'zipper': 1.0, 'me': 1.0, 'and': 5.0, '1': 1.0, 'frappucino': 1.0, 'with': 1.0, 'dont': 1.0, 'this': 1.0, 'it': 1.0, 'i': 6.0, 'cash': 1.0, 'need': 1.0, 'bag': 2.0, 'amazing': 1.0, 'hate': 1.0, 'always': 1.0, 'fold': 2.0, 'looking': 1.0, 'size': 1.0, 'besides': 1.0, 'something': 2.0, 'diaper': 4.0, 'good': 1.0, 'wipes': 2.0, 'its': 1.0, 'nursery': 1.0, 'just': 1.0, 'few': 1.0, 'useful': 1.0, 'card': 1.0, 'be': 1.0, 'rash': 1.0, 'travel': 1.0, 'breastfeeding': 1.0, 'that': 3.0, 'case': 1.0, 'mom': 1.0, 'keys': 1.0, 'deluxe': 1.0, 'a': 1.0, 'go': 2.0, 'holds': 2.0, 'is': 1.0, '10': 1.0, 'everything': 1.0, 'hell': 1.0, 'put': 1.0, '3': 2.0, 'huggies': 1.0, 'mustella': 1.0, 'sag': 1.0, 'in': 1.0, 'cream': 1.0, 'my': 3.0, 'credit': 1.0}
Word element => {'often': 1.0, 'restocking': 1.0, 'ok': 1.0, 'carry': 1.0, 'wanted': 1.0, 'but': 1.0, 'wipes': 1.0, 'that': 2.0, 'something': 2.0, 'so': 2.0, 'else': 1.0, 'it': 3.0, 'first': 1.0, 'with': 1.0, 'convenient': 1.0, 'well': 1.0, 'is': 1.0, 'holds': 1.0, 'useful': 1.0, 'liked': 1.0, 'bought': 1.0, 'one': 1.0, 'easy': 1.0, 'model': 1.0, 'product': 1.0, 'for': 1.0, 'very': 1.0, 'and': 3.0, 'much': 1.0, 'do': 1.0, 'up': 1.0, 'i': 4.0, 'lost': 1.0, 'same': 1.0, 'the': 1.0, 'a': 1.0, 'we': 1.0, 't': 1.0, 'rather': 1.0, 'than': 1.0, 'trying': 1.0, 'am': 1.0, 'again': 1.0, 'you': 1.0, 'out': 1.0, 'small': 1.0, 'have': 1.0, 'our': 1.0, 'to': 2.0, 'on': 1.0, 'restock': 1.0, 'many': 1.0, 'every': 1.0, 'since': 1.0, 'outing': 1.0, 'doesn': 1.0, 'diapers': 1.0, 'trip': 1.0, 'hold': 1.0}
Word element => {'will': 1.0, '2x': 1.0, 'spending': 1.0, 'wasn': 1.0, 'larger': 1.0, 'worth': 1.0, 'or': 1.0, 'think': 1.0, 'on': 1.0, '3': 2.0, 'probably': 1.0, 'size': 2.0, '6': 1.0, 'closes': 1.0, 'about': 1.0, 'including': 1.0, 'has': 1.0, 'design': 1.0, 'terms': 1.0, 'superior': 1.0, 'real': 1.0, 'far': 1.0, 'is': 1.0, 'as': 1.0, 'all': 1.0, 'our': 1.0, 'one': 1.0, 'bringing': 1.0, 'much': 1.0, 'only': 1.0, 'backpack': 1.0, 'excited': 1.0, 'seemed': 1.0, 'nice': 1.0, 'and': 4.0, 'reaches': 1.0, 'it': 6.0, 'velcro': 1.0, 'bag': 1.0, 'the': 6.0, 'diaper': 3.0, 'used': 1.0, 'be': 2.0, 'reality': 1.0, 'neatly': 1.0, '4': 2.0, 'i': 4.0, 'looking': 1.0, 'fill': 2.0, 'maybe': 1.0, 'hiking': 1.0, 'in': 7.0, '0': 1.0, 'this': 1.0, 'perfect': 1.0, 'case': 1.0, 'that': 1.0, 'parts': 1.0, 'were': 1.0, 'gym': 1.0, 'second': 2.0, 'wipe': 1.0, 'baby': 1.0, 'would': 1.0, 'hardly': 1.0, 't': 2.0, 'a': 2.0, 'fit': 1.0, 'for': 1.0, 'kit': 4.0, 'closure': 1.0, 'mostly': 1.0, 'can': 1.0, 'but': 3.0, 'was': 1.0, 'doesn': 1.0, 'my': 1.0, 'fact': 1.0, 'of': 1.0, 'once': 2.0, 'you': 3.0, 'still': 1.0, 'fold': 1.0, 'skiphop': 2.0, 'up': 1.0, 'like': 1.0, 'diapers': 2.0, 'picture': 1.0, 'same': 1.0, 'if': 1.0}
Word element => {'worth': 1.0, 'easily': 1.0, 'this': 1.0, 'handy': 1.0, 'sanitary': 1.0, '10': 1.0, 'surface': 1.0, 'keep': 1.0, 'etc': 1.0, 'bed': 1.0, 'floors': 1.0, 'size': 1.0, 'the': 4.0, 'to': 3.0, 'included': 1.0, 'top': 1.0, 'really': 1.0, 'little': 3.0, 'diapers': 1.0, 'item': 1.0, 'will': 1.0, 'is': 1.0, 'holds': 1.0, 'up': 2.0, 'of': 2.0, 'clutch': 1.0, 'so': 1.0, 'and': 3.0, 'travel': 1.0, 'changing': 2.0, 'case': 1.0, 'be': 1.0, 'wipes': 2.0, 'folds': 1.0, 'sure': 1.0, 'for': 2.0, 'one': 1.0, 'enough': 1.0, 'pad': 3.0, 'some': 1.0, 'super': 2.0, 'baby': 1.0, 'them': 1.0, 'few': 1.0, 'large': 1.0, 'tables': 2.0, 'it': 3.0, 'a': 5.0, 's': 2.0, 'not': 2.0, 'long': 2.0, 'down': 1.0, 'how': 1.0, 'my': 1.0, 'great': 1.0, 'big': 1.0, 'nice': 1.0, 'definitely': 1.0, 'lay': 1.0, 'on': 1.0, 'public': 1.0}
Word element => {'blends': 1.0, 'trim': 1.0, 'with': 1.0, 'is': 1.0, 'you': 1.0, 'just': 1.0, 'end': 1.0, 'store': 1.0, 'old': 1.0, 'year': 1.0, 'wipe': 1.0, 'crayons': 1.0, 'notepad': 1.0, 'everything': 1.0, 'hand': 1.0, 'black': 1.0, 'bond': 1.0, 'gold': 1.0, 'desitin': 1.0, 'carters': 1.0, 'of': 3.0, 'that': 1.0, 'case': 2.0, 'one': 1.0, 'bought': 1.0, 'hard': 1.0, 'this': 1.0, 'it': 2.0, 'use': 2.0, 'changes': 1.0, 'green': 1.0, 'and': 7.0, 'my': 1.0, 'bathroom': 1.0, 'takes': 1.0, 'don': 1.0, 'up': 1.0, 'great': 1.0, 'big': 1.0, 'the': 10.0, 'diaper': 4.0, 'a': 5.0, 't': 2.0, 'freezer': 1.0, 'so': 1.0, 'need': 1.0, 'bag': 4.0, 'zipper': 1.0, 'have': 3.0, 'sanitizer': 1.0, 'wipes': 2.0, 'to': 3.0, 'ziploc': 1.0, '5': 1.0, 'for': 3.0, 'fit': 1.0, 'size': 2.0, 'can': 1.0, 'keeps': 1.0, 'moist': 1.0, 'longer': 1.0, 'clutch': 2.0, 'less': 1.0, 'three': 1.0, 'space': 1.0, 'i': 9.0, '4': 1.0, 'wouldn': 1.0, 'diapers': 1.0, '3': 1.0, 'put': 2.0, 'haul': 1.0, 'pampers': 1.0, 'quart': 1.0, 'in': 5.0, 'tube': 2.0, 'pocket': 3.0}
Word element => {'wet': 1.0, 'several': 1.0, 'wipes': 1.0, 'and': 1.0, 'for': 1.0, 'good': 1.0, 'space': 1.0, 'inexpensive': 1.0, '2': 1.0, 'with': 1.0, 'alternative': 1.0, 'to': 1.0, 'the': 1.0, 'diapers': 1.0, 'target': 1.0, 'ample': 1.0, '18': 1.0, 's': 1.0, 'it': 1.0, 'looks': 1.0, 'mat': 1.0, '99': 1.0}
Word element => {'rash': 1.0, 'cream': 1.0, 'probably': 1.0, 'and': 1.0, 'wipes': 1.0, 'close': 1.0, 'them': 1.0, 'to': 1.0, 'case': 1.0, 'be': 1.0, 'not': 2.0, 'would': 2.0, 'place': 1.0, 'those': 1.0, 'when': 1.0, 'i': 2.0, 'then': 1.0, 'pad': 1.0, 'changing': 1.0, 'love': 1.0, 'works': 1.0, 'you': 1.0, 'is': 1.0, 'diaper': 1.0, 'bulky': 1.0, 'the': 4.0, 'put': 1.0, 'diapers': 2.0, 'but': 1.0, 'able': 1.0, 'all': 1.0, 'it': 2.0, 'advertised': 1.0, 'inserted': 1.0, 'also': 1.0, 'in': 1.0, 'things': 1.0, 'two': 1.0, 'pouches': 1.0}
Word element => {'the': 1.0, 'hygiene': 1.0, 'bag': 1.0, 'other': 1.0, 'couple': 1.0, 'a': 1.0, 'practical': 1.0, 'i': 1.0, 'is': 1.0, 'inside': 1.0, 'diapers': 1.0, 'easy': 1.0, 'to': 1.0, 'of': 1.0, 'keep': 1.0, 'carry': 1.0, 'items': 1.0, 'very': 2.0, 'and': 2.0, 'too': 1.0, 'it': 1.0, 'can': 1.0}
Word element => {'improvement': 1.0, 'needs': 1.0, 'intention': 1.0, 'has': 1.0, 'the': 6.0, 'diaper': 1.0, 'product': 1.0, 'kit': 1.0, 'baby': 1.0, 'this': 3.0, 'it': 3.0, 'only': 1.0, 'think': 1.0, 'your': 1.0, 'on': 1.0, 't': 1.0, 'a': 1.0, 'with': 1.0, 'convenient': 1.0, 'you': 2.0, 'way': 1.0, 'lie': 1.0, 'entire': 1.0, 'thing': 1.0, 'have': 1.0, 'issue': 1.0, 'big': 1.0, '1': 1.0, 'him': 1.0, 'but': 1.0, '2': 1.0, 'change': 1.0, 'can': 2.0, 'as': 1.0, 'to': 1.0, 'that': 1.0, 'is': 3.0, 'holds': 1.0, 'or': 1.0, 'diapers': 1.0, 'some': 1.0, 'good': 1.0, 'wipes': 1.0, 'bag': 2.0, 'page': 1.0, 'and': 3.0, 'too': 1.0, 'thick': 1.0, 'gets': 1.0, 'fold': 1.0, 'like': 1.0, 'shown': 1.0, 'in': 1.0, 'otherwise': 1.0, 'i': 1.0}
Word element => {'vibrant': 1.0, 'is': 1.0, 'easily': 1.0, 'and': 3.0, 'diapers': 1.0, 'wipes': 1.0, 'hold': 1.0, 'bag': 1.0, 'love': 1.0, 'for': 1.0, 'color': 1.0, 'my': 1.0, 'so': 1.0, 'regularly': 1.0, 'of': 1.0, 'fairly': 1.0, 'baby': 1.0, 'this': 1.0, 'it': 5.0, 'the': 1.0, 'diaper': 1.0, 'nicely': 1.0, 'great': 1.0, 'as': 1.0, 'changing': 1.0, 'part': 1.0, 'green': 1.0, 'i': 2.0, 's': 3.0, 'a': 1.0, 'use': 1.0, 'decent': 1.0, 'can': 1.0, 'size': 1.0, 'fun': 1.0, 'padded': 1.0}
Word element => {'won': 1.0, 'flaps': 1.0, 'side': 1.0, 'space': 1.0, 'more': 1.0, 'way': 1.0, 'in': 1.0, 'get': 1.0, 'head': 1.0, 'home': 2.0, 'leave': 2.0, 'and': 5.0, 'couldn': 1.0, 'was': 1.0, 'had': 1.0, 'year': 1.0, 'changing': 2.0, 'old': 1.0, 'i': 1.0, 'an': 1.0, 'of': 1.0, 'without': 2.0, 'the': 8.0, 'diaper': 1.0, 'this': 2.0, 'now': 1.0, 'older': 1.0, 'it': 2.0, 'with': 2.0, 'pad': 1.0, 'my': 2.0, 'would': 1.0, 'new': 4.0, 'baby': 3.0, 'improved': 1.0, 'botton': 1.0, 'still': 2.0, '10': 1.0, 'same': 1.0, 'when': 1.0, 'handier': 1.0, 'product': 1.0, 'love': 1.0, 'version': 3.0, 'improvements': 1.0, 'like': 1.0, 'good': 1.0, 'wipes': 1.0, 'are': 1.0, 'on': 2.0, 'got': 1.0, 'previous': 1.0, 'sides': 1.0, 'were': 1.0, 'a': 1.0, 't': 2.0, 's': 1.0}
Word element => {'everywhere': 1.0, 'goes': 1.0, 'love': 1.0, 'still': 1.0, 'wipes': 1.0, 'when': 1.0, 'close': 1.0, 'bit': 1.0, 'fits': 1.0, 'but': 1.0, 'diapers': 2.0, 'easy': 1.0, 'size': 1.0, 'changing': 1.0, 'kit': 1.0, 'everything': 1.0, 'a': 2.0, 'does': 1.0, 'even': 1.0, 'down': 1.0, 'filled': 1.0, 'is': 2.0, 'bulky': 1.0, 'great': 1.0, 'diaper': 1.0, 'with': 2.0, 'hard': 1.0, 'it': 3.0, 'this': 1.0, 'need': 1.0, 'i': 2.0, 'cloth': 1.0, 'me': 1.0, 'and': 3.0, 'wipe': 1.0, 'to': 2.0, 'become': 1.0}
Word element => {'to': 1.0, 'easy': 1.0, 'up': 1.0, 'of': 1.0, 'no': 1.0, 'instead': 1.0, 'diapers': 1.0, '2t': 1.0, 'go': 1.0, 'a': 1.0, 'complaints': 1.0, 'clean': 1.0, 'out': 1.0, 'along': 1.0, 'bag': 1.0, 'when': 1.0, 'i': 2.0, 'taking': 1.0, 'love': 1.0, 'diaper': 1.0, '2': 1.0, 'this': 2.0, 'it': 1.0, 'with': 1.0, 'and': 2.0, 'hold': 1.0, 'wipes': 1.0}
Word element => {'huge': 1.0, 'so': 1.0, 'inside': 1.0, 'she': 1.0, 'was': 1.0, 'had': 2.0, 'and': 1.0, 'changing': 1.0, 'very': 1.0, 'improvement': 1.0, 'bought': 1.0, 'i': 3.0, 'for': 3.0, 'one': 2.0, 'perfect': 1.0, 'friend': 2.0, 'a': 3.0, 'is': 1.0, 'it': 2.0, 'this': 2.0, 'loves': 1.0, 'myself': 1.0, 'bag': 1.0, 'ordered': 1.0, 'diaper': 1.0, 'the': 1.0, 'my': 1.0, 'pad': 1.0, 'purchased': 1.0, 'flimsy': 1.0}
Word element => {'carry': 1.0, 'have': 1.0, 'so': 1.0, 'pocket': 1.0, 'in': 1.0, 'purse': 1.0, 'and': 1.0, 'very': 1.0, 'need': 1.0, 'go': 1.0, 'if': 1.0, 'front': 1.0, 'convenient': 1.0, 'on': 1.0, 'change': 1.0, 'is': 1.0, 't': 1.0, 'the': 2.0, 're': 1.0, 'my': 2.0, 'you': 1.0, 'cards': 1.0, 'quick': 1.0, 'this': 1.0, 'to': 2.0, 'your': 1.0, 'i': 2.0, 'wallet': 1.0, 'stash': 1.0, 'or': 1.0, 'don': 1.0, 'baby': 1.0, 'real': 1.0}
Word element => {'easily': 1.0, 'this': 2.0, 'is': 2.0, 'can': 1.0, 'love': 1.0, 'design': 1.0, 'diaper': 2.0, 'the': 2.0, 'good': 2.0, 'kit': 1.0, 'change': 1.0, 'and': 2.0, 'product': 1.0, 'useful': 1.0, 'i': 2.0}
Word element => {'getting': 1.0, '34': 1.0, '24': 1.0, 'only': 1.0, 'baby': 1.0, 'my': 1.0, 'longer': 1.0, 'bigger': 1.0, 'was': 1.0, 'it': 1.0, 'just': 1.0, 'in': 4.0, 'also': 1.0, 'for': 1.0, 'bed': 1.0, 'diaper': 1.0, 'the': 5.0, 'want': 2.0, 'handy': 2.0, 'sofa': 1.0, 'take': 2.0, 'short': 2.0, 'bag': 1.0, 'little': 1.0, 'very': 1.0, 'changing': 1.0, 'i': 5.0, 'leave': 1.0, 'have': 2.0, 'don': 2.0, 'huge': 1.0, 'sometime': 1.0, 'to': 5.0, 'is': 3.0, 'comes': 1.0, 'every': 1.0, 'car': 1.0, 'tall': 1.0, 'and': 2.0, 'about': 1.0, 'several': 1.0, 'places': 1.0, 'house': 1.0, 't': 2.0, 'a': 4.0, 'go': 2.0, 'this': 4.0, 'wish': 1.0, 'so': 1.0, 'upstairs': 1.0, 'or': 3.0, 'bench': 1.0, 'room': 1.0, 'trip': 1.0, 'table': 1.0, 'change': 1.0, 'but': 1.0, 'can': 1.0, 'her': 1.0, 'on': 1.0}
Word element => {'once': 1.0, 'won': 1.0, 'body': 1.0, 'head': 1.0, 'his': 1.0, '34': 1.0, '5': 1.0, 'it': 3.0, 'this': 2.0, 'with': 2.0, 'children': 1.0, 'happy': 1.0, 'my': 3.0, 'pretty': 1.0, 'if': 1.0, 'little': 1.0, 'day': 1.0, 'son': 1.0, 'been': 1.0, 'changing': 1.0, 'during': 1.0, 'other': 1.0, 'father': 1.0, 'bought': 1.0, 'be': 1.0, 'he': 1.0, '36': 1.0, 'the': 1.0, 'law': 1.0, 't': 1.0, 's': 1.0, 'a': 1.0, 'in': 1.0, 'at': 1.0, 'who': 1.0, 'i': 1.0, 'watches': 1.0, 'brands': 1.0, 'would': 1.0, 'nice': 1.0, 'were': 1.0, 'so': 1.0, 'smaller': 1.0, 'bit': 1.0, 'fit': 1.0, 'for': 2.0, 'meant': 1.0, 'longer': 1.0, 'is': 2.0, '2': 1.0, 'most': 1.0, 'as': 1.0, 'pads': 1.0, 'are': 1.0, 'on': 1.0, 'guy': 1.0, 'just': 1.0, 'now': 1.0, 'tall': 1.0, 'and': 2.0}
Word element => {'too': 1.0, 'well': 1.0, 'very': 1.0, 'made': 1.0, 'is': 1.0, 'others': 1.0, 'love': 1.0, 'similar': 1.0, 'feel': 1.0, 'i': 2.0, 'cheaper': 1.0, 'whenever': 1.0, 'around': 1.0, 'like': 1.0, 'and': 1.0, 'dont': 1.0, 'its': 1.0, 'it': 1.0, 'this': 2.0, 'bag': 1.0, 'diaper': 1.0, 'the': 2.0, 'lugging': 1.0, 'just': 1.0, 'stroller': 1.0, 'in': 1.0, 'perfect': 1.0, 'than': 1.0, 'throw': 1.0, 'so': 1.0, 'much': 1.0}
Word element => {'baby': 1.0, 'our': 1.0, 'carry': 1.0, 'going': 1.0, 'when': 2.0, 'uses': 1.0, 'product': 1.0, 'easy': 1.0, 'all': 1.0, 'flexible': 1.0, 'my': 1.0, 'thoughtful': 1.0, 'out': 2.0, 'and': 2.0, 'the': 1.0, 'great': 1.0, 'stylish': 1.0, 'wife': 1.0, 'time': 1.0, 'to': 1.0, 'now': 1.0, 'this': 1.0, 'with': 1.0, 'we': 1.0, 'go': 1.0}
Word element => {'keepsake': 1.0, 'cute': 1.0, 'a': 1.0, 'born': 1.0, 'this': 1.0, 'is': 1.0, 'are': 2.0, 'my': 2.0, 'give': 1.0, 'third': 1.0, 'set': 1.0, 'such': 1.0, 'they': 2.0, 'these': 1.0, 'to': 1.0, 'grandchildren': 1.0, 'i': 1.0, 'when': 1.0}
Word element => {'keepsake': 1.0, 'years': 1.0, 'for': 1.0, 'true': 1.0, 'this': 1.0, 'treasured': 1.0, 'ceramic': 1.0, 'is': 1.0, 'a': 2.0, 'set': 1.0, 'that': 1.0, 'precious': 1.0, 'shower': 1.0, 'gift': 1.0, 'will': 1.0, 'be': 1.0}
Word element => {'person': 1.0, 'looked': 1.0, 'good': 1.0, 'how': 1.0, 'and': 1.0, 'quality': 1.0, 'with': 1.0, 'impressed': 1.0, 'were': 1.0, 'than': 1.0, 'other': 1.0, 'a': 2.0, '5': 1.0, 'dinged': 1.0, 'i': 1.0, '4': 1.0, 'got': 1.0, 'appreciated': 1.0, 'in': 3.0, 'only': 1.0, 'it': 1.0, 'if': 1.0, 'keep': 1.0, 'to': 1.0, 'well': 1.0, 'review': 1.0, 'is': 2.0, 'came': 1.0, 'glass': 1.0, 'box': 2.0, 'that': 3.0, 'please': 1.0, 'their': 1.0, 'my': 1.0, 'the': 5.0, 'great': 1.0, 'they': 3.0, 'time': 1.0, 'versus': 1.0, 'away': 1.0, 'helpful': 1.0, 'very': 1.0, 'little': 1.0, 'granted': 1.0, 'you': 1.0, 'click': 1.0, 'things': 1.0, 'these': 1.0, 'some': 1.0, 'up': 1.0, 'porcelain': 1.0, 'boxes': 1.0, 'not': 1.0, 'sure': 1.0, 'which': 1.0, 'card': 1.0, 'board': 1.0, 'reason': 1.0, 'holder': 1.0, 'was': 4.0, 'store': 1.0, 'stars': 1.0, 'for': 1.0}
Word element => {'on': 1.0, 've': 1.0, 'seats': 1.0, 'previously': 1.0, 'had': 1.0, 'one': 1.0, 'i': 2.0, 'this': 2.0, 'cover': 1.0, 'it': 1.0, 'works': 1.0, 'much': 1.0, 'all': 1.0, 'fits': 1.0, 'than': 1.0, 'better': 1.0, 'tried': 1.0, 'the': 2.0, 'seat': 1.0, 'actually': 1.0, 'infantino': 1.0, 'jr': 1.0, 'savvy': 1.0}
Word element => {'for': 1.0, 'buying': 1.0, 'my': 1.0, 'the': 1.0, 'i': 2.0, 'will': 1.0, 'worth': 1.0, 'clean': 1.0, 'money': 1.0, 'love': 1.0, 'this': 2.0, 'gifts': 1.0, 'so': 1.0, 'use': 1.0, 'easy': 1.0, 'be': 1.0, 'product': 1.0, 'to': 1.0, 'friends': 1.0, 'as': 1.0, 'and': 1.0, 'definitely': 1.0}
Word element => {'baby': 1.0, 'if': 1.0, 'with': 1.0, 'pouch': 1.0, 'back': 1.0, 'also': 1.0, 'highchairs': 1.0, 'the': 4.0, 'easy': 2.0, 'plan': 1.0, 'comes': 1.0, 'is': 1.0, 'it': 2.0, 'must': 1.0, 'have': 3.0, '8': 1.0, 'taking': 1.0, 'able': 1.0, 'turned': 1.0, 'was': 2.0, 'restaurant': 1.0, 'very': 3.0, 'fold': 1.0, 'son': 2.0, 'that': 1.0, 'into': 1.0, 'been': 2.0, 'old': 1.0, 'my': 1.0, 'perfect': 1.0, 'this': 2.0, 'he': 2.0, 'only': 1.0, 'out': 2.0, 'future': 1.0, 'who': 1.0, 'just': 2.0, 'our': 1.0, 'to': 4.0, 'as': 1.0, 'seat': 1.0, 'take': 1.0, 'infant': 1.0, 'lucky': 1.0, 'cover': 2.0, 'bought': 1.0, 'months': 2.0, 'even': 1.0, 'his': 1.0, 'you': 1.0, 'outgrown': 1.0, 'when': 2.0, 'has': 1.0, 'already': 1.0, 'so': 1.0, 'dinner': 1.0, 'would': 1.0, 'him': 1.0, 'for': 2.0, 'highchair': 1.0, 'your': 1.0, 'on': 2.0, '3': 1.0, 'put': 2.0, 'in': 3.0, 's': 1.0, 'we': 4.0, 'a': 2.0, 'are': 1.0, 'i': 1.0, 'restaurants': 1.0, 'and': 2.0}
Word element => {'nice': 1.0, 'attached': 1.0, 'the': 2.0, 'is': 3.0, 'a': 2.0, 'strap': 1.0, 'cover': 1.0, 'and': 1.0, 'very': 1.0, 'it': 1.0, 'also': 1.0, 'toy': 1.0, 'compact': 1.0, 'washable': 1.0, 'diaper': 1.0, 'for': 2.0, 'bag': 1.0}
Word element => {'difficult': 1.0, 'travel': 1.0, 'snap': 1.0, 'has': 1.0, 'stars': 1.0, 'pictured': 2.0, 'as': 1.0, 'to': 2.0, 'was': 2.0, 'according': 1.0, 'f710': 2.0, 'mill': 2.0, 'what': 1.0, 'not': 1.0, 'carrying': 1.0, 'round': 1.0, 'number': 1.0, 'guess': 1.0, 'put': 1.0, 'on': 2.0, 'think': 1.0, 'there': 1.0, 'the': 7.0, 'problem': 1.0, 'which': 2.0, 'like': 1.0, 'listing': 1.0, 'did': 1.0, 'received': 1.0, 'oval': 1.0, 'is': 4.0, 'with': 1.0, 'it': 2.0, 'item': 1.0, 'and': 1.0, 'didn': 2.0, 'include': 1.0, 'shown': 1.0, 'lid': 1.0, 'my': 1.0, 'gave': 1.0, 'box': 1.0, 'case': 1.0, 'that': 1.0, 'returning': 1.0, 'a': 3.0, 't': 2.0, 's': 1.0, 'different': 1.0, 'model': 1.0, 'receive': 1.0, 'so': 2.0, 'bother': 1.0, 'i': 6.0, '4': 1.0}
Word element => {'well': 1.0, 'last': 1.0, 'too': 1.0, 'make': 1.0, 'dinner': 2.0, 'seems': 1.0, 'having': 1.0, 'built': 1.0, 'you': 1.0, 'up': 1.0, 'grind': 1.0, 're': 1.0, 'ago': 1.0, 'like': 1.0, 'and': 2.0, 'very': 1.0, 'for': 1.0, 'whatever': 1.0, 'one': 2.0, 'pretty': 1.0, 'better': 1.0, '35': 1.0, 'years': 1.0, 'fed': 1.0, 'it': 1.0, 'this': 1.0, 'with': 1.0, 'daughters': 1.0, 'we': 1.0, 'their': 1.0, 'grandchildren': 1.0, 'our': 2.0, 'were': 1.0, 'feed': 1.0, 'pleased': 1.0, 'to': 4.0, 'much': 1.0, 'give': 1.0, 'just': 1.0, 'so': 1.0}
Word element => {'three': 1.0, 'product': 1.0, 'stars': 1.0, '4': 1.0, 'am': 1.0, 'i': 1.0, 'asking': 1.0, 'giving': 1.0, 'me': 1.0, 'without': 1.0, 'point': 1.0, 'my': 1.0, 'defective': 1.0, 'warped': 1.0, 'the': 7.0, 'lid': 3.0, 'fit': 1.0, 'a': 1.0, 'but': 2.0, 'only': 1.0, 'it': 1.0, 'this': 1.0, 'with': 1.0, 'seller': 2.0, 'so': 2.0, 'comes': 1.0, 'was': 2.0, 'because': 1.0, 'not': 1.0, 'did': 1.0, 'price': 2.0, 'works': 1.0, 'mill': 1.0, 'itself': 1.0, 'is': 1.0, 'fine': 1.0, 'refunded': 1.0, 'for': 1.0}
Word element => {'your': 1.0, 'waste': 1.0, 'much': 1.0, 'concept': 1.0, 't': 1.0, 'mess': 1.0, 'and': 2.0, 'better': 1.0, 'did': 1.0, 'but': 1.0, 'have': 1.0, 'all': 1.0, 'a': 4.0, 'money': 1.0, 'don': 1.0, 'i': 1.0, 'does': 1.0, 'neat': 1.0, 'bowl': 1.0, 'job': 1.0, 'this': 1.0, 'with': 1.0, 'is': 1.0, 'fork': 1.0, 'make': 1.0, 'could': 1.0, 'royal': 1.0}
Word element => {'in': 1.0, 'case': 1.0, 'carrying': 1.0, 'handle': 1.0, 'on': 1.0, 'put': 1.0, 'husband': 1.0, 'of': 1.0, 'waste': 1.0, 'than': 1.0, 'better': 1.0, 'tried': 1.0, 'faster': 1.0, 'banana': 1.0, 'also': 1.0, 'sheesh': 1.0, 'do': 1.0, 'just': 1.0, 'metal': 1.0, 'couldn': 1.0, 'see': 1.0, 'total': 1.0, 'since': 1.0, 'even': 1.0, 'my': 2.0, 'kept': 1.0, 'people': 1.0, 'is': 1.0, 'blade': 1.0, 'ordered': 1.0, 'junk': 1.0, 'two': 1.0, 'i': 2.0, 'thinking': 1.0, 'grandson': 1.0, 'it': 5.0, 'not': 1.0, 'would': 2.0, 'grinder': 1.0, 'material': 1.0, 'mashed': 1.0, 'big': 1.0, 'great': 1.0, 'job': 1.0, 'the': 4.0, 'like': 1.0, 'cheap': 1.0, 'for': 2.0, 'soft': 1.0, 'grind': 2.0, 'this': 2.0, 'grinding': 1.0, 'hot': 1.0, 'up': 3.0, 'dog': 1.0, 't': 1.0, 'a': 3.0, 'could': 1.0, 'we': 1.0, 'be': 2.0, 'trying': 1.0, 'and': 3.0, 'foods': 1.0, 'to': 4.0, 'right': 1.0, 'look': 1.0, 'if': 1.0, 'snapped': 1.0, 'able': 1.0, 'softer': 2.0, 'them': 1.0, 'money': 1.0, 'food': 1.0, 'but': 1.0, 'plastic': 1.0, 'painted': 1.0, 'gray': 1.0}
Word element => {'eat': 1.0, 'to': 1.0, 'need': 1.0, 'they': 1.0, 'my': 3.0, 'two': 1.0, 'used': 1.0, 'have': 1.0, 't': 1.0, 'product': 1.0, 'for': 2.0, 'love': 2.0, 'children': 1.0, 'this': 1.0, 'it': 2.0, 'i': 4.0, 'say': 1.0, 'really': 1.0, 'vegetables': 1.0, 'that': 1.0, 'kids': 1.0, 'and': 2.0, 'meats': 1.0, 'couldn': 1.0, 'chew': 1.0, 'will': 1.0, 'but': 1.0}
Word element => {'need': 1.0, 'we': 1.0, 'do': 1.0, 'hopefully': 1.0, 'the': 1.0, 'in': 1.0, 'have': 1.0, 'kids': 1.0, 'had': 1.0, 'experience': 1.0, 'my': 1.0, 'run': 1.0, 'made': 1.0, 'baby': 1.0, 'little': 1.0, 'so': 1.0, 'food': 1.0, 'a': 2.0, 'what': 1.0, 'long': 1.0, 'used': 1.0, 'grinder': 1.0, 'i': 1.0, 'for': 1.0, 'one': 1.0, 'is': 1.0, 'this': 1.0, 'with': 1.0, 'it': 1.0, 'cheaply': 1.0, 'will': 1.0, 'alittle': 1.0, 'but': 1.0}
Word element => {'product': 1.0, 'good': 1.0, 'whole': 1.0, 'the': 1.0, 'which': 1.0, 'is': 2.0, 'she': 3.0, 'rejected': 1.0, 'when': 1.0, 'daughter': 1.0, 'for': 1.0, 'our': 2.0, '9': 1.0, 'on': 1.0, 'months': 1.0, 'a': 1.0, 'well': 1.0, 'during': 1.0, 'we': 2.0, 'jars': 1.0, 'and': 1.0, 'but': 1.0, 'soft': 1.0, 'later': 1.0, 'to': 1.0, 'was': 1.0, 'food': 1.0, 'trips': 1.0, 'used': 3.0, 'mill': 1.0, 'as': 1.0, 'worked': 1.0, 'from': 1.0, 'it': 2.0, 'this': 2.0}
Word element => {'again': 2.0, 'used': 1.0, 'and': 3.0, 'perfectly': 1.0, 'get': 1.0, 'disney': 1.0, 'them': 1.0, 'to': 1.0, 'purchased': 1.0, 'use': 1.0, 'have': 1.0, 'children': 1.0, 'is': 1.0, 'second': 1.0, 'the': 1.0, 'they': 3.0, 'ever': 1.0, 'of': 1.0, 'pair': 1.0, 'bright': 1.0, 'for': 1.0, 'love': 1.0, 'trips': 1.0, 'who': 1.0, 'id': 1.0, 'we': 1.0, 't': 1.0, 's': 2.0, 'way': 1.0, 'shoes': 1.0, 'don': 1.0, 'in': 1.0, 'my': 2.0, 'are': 1.0, 'visible': 1.0, 'should': 1.0, 'kits': 1.0, 'this': 1.0, 'kids': 1.0, 'us': 1.0, 'i': 1.0, 'become': 1.0, 'seperated': 1.0, 'from': 1.0, 'that': 1.0, 'work': 1.0, 'but': 1.0, 'can': 1.0, 'be': 1.0}
Word element => {'secure': 1.0, 'there': 1.0, 'concept': 1.0, 'way': 1.0, 'sit': 1.0, 'now': 1.0, 'remove': 1.0, 'noticeable': 1.0, 'were': 1.0, 'them': 2.0, 'easy': 1.0, 'left': 1.0, 'if': 2.0, 'nice': 1.0, 'great': 1.0, 'however': 1.0, 'live': 1.0, 'do': 2.0, 'think': 1.0, 'on': 3.0, 'your': 1.0, 'what': 1.0, 'questions': 1.0, 'wander': 1.0, 'off': 1.0, 'or': 1.0, 'with': 1.0, 'that': 3.0, 'ect': 1.0, 'seattle': 1.0, 'bought': 1.0, 'was': 3.0, 'they': 2.0, 'orlando': 1.0, 'the': 5.0, 'these': 2.0, 'from': 2.0, 'son': 1.0, 'more': 1.0, 'is': 2.0, 'fear': 1.0, 'over': 1.0, 'airport': 1.0, 'but': 1.0, 'can': 1.0, 'summer': 1.0, 'my': 2.0, 'love': 1.0, 'actually': 1.0, 'where': 1.0, 'for': 1.0, 'be': 1.0, 'him': 1.0, 'i': 4.0, 'in': 1.0, 'too': 2.0, 'and': 2.0, 'couldn': 1.0, 'find': 1.0, 'tell': 1.0, 'autistic': 1.0, 'those': 1.0, 'traveling': 1.0, 'when': 1.0, 'you': 2.0, 'his': 4.0, 'dresser': 1.0, 'name': 2.0, 'information': 1.0, 'keep': 1.0, 'at': 1.0, 'all': 2.0, 'to': 3.0, 'as': 1.0, 'least': 1.0, 'shoe': 1.0, 'tags': 1.0, 'a': 1.0, 's': 1.0, 't': 2.0, 'could': 1.0, 'shoes': 3.0, 'he': 3.0, 'answer': 1.0, 'would': 3.0, 'basic': 1.0}
Word element => {'instead': 1.0, 'of': 2.0, 'sold': 1.0, 'every': 1.0, 'are': 1.0, 'in': 2.0, 'come': 1.0, 'needs': 1.0, 'special': 1.0, 'young': 1.0, 'who': 1.0, 'blue': 1.0, 'extra': 1.0, 'buy': 1.0, 'them': 2.0, '5': 1.0, 'rip': 1.0, 'only': 1.0, 'just': 2.0, 'necklaces': 1.0, 'secure': 1.0, 'sneaker': 1.0, 'it': 2.0, 'noninvasive': 1.0, '0ld': 1.0, 'him': 1.0, 'be': 1.0, 'these': 2.0, 'nonverbal': 1.0, 'everything': 1.0, 'if': 1.0, 'my': 3.0, 'fear': 1.0, 'is': 1.0, 'son': 2.0, 'his': 1.0, 'year': 1.0, 'very': 1.0, 'ripped': 1.0, 'virtually': 1.0, 'pulled': 1.0, 'off': 2.0, 'other': 1.0, 'wiped': 1.0, 'searching': 1.0, 'get': 1.0, '4': 1.0, 'i': 6.0, 'tag': 1.0, 'safety': 1.0, '7': 1.0, 'worth': 1.0, 'or': 2.0, 'everywhere': 1.0, 'a': 2.0, 'could': 1.0, 'share': 1.0, 'expensive': 1.0, 'product': 1.0, 'for': 1.0, 'love': 1.0, 'that': 1.0, 'were': 2.0, 'was': 1.0, 'to': 6.0, 'packs': 1.0, 'id': 2.0, 'penny': 1.0, 'diagnosed': 1.0, 'pink': 1.0, 'with': 2.0, 'he': 1.0, '2': 1.0, 'autism': 1.0, 'biggest': 1.0, 'would': 1.0, 'remains': 1.0, 'have': 4.0, 'including': 1.0, 'no': 1.0, 'parents': 1.0, 'always': 1.0, 'way': 1.0, 'not': 1.0, 'give': 1.0, 'crucial': 1.0, 'tried': 1.0, 'information': 1.0, 'wish': 1.0, 'bracelets': 1.0, 'this': 1.0, 'lost': 1.0, 'both': 1.0, 'absolutely': 1.0, 'children': 1.0, 'attach': 1.0}
Word element => {'have': 1.0, 'glad': 1.0, 'but': 1.0, 'after': 1.0, 'not': 1.0, 'of': 2.0, 'disney': 1.0, 'more': 1.0, 'the': 4.0, 'bit': 1.0, 'little': 1.0, 'measure': 1.0, 'us': 1.0, 'phone': 1.0, 'number': 1.0, 'it': 3.0, 'he': 1.0, 'child': 2.0, 'a': 1.0, 'we': 4.0, 'extra': 1.0, 'all': 1.0, 'our': 2.0, 'as': 1.0, 'mind': 1.0, 'bought': 1.0, 'gave': 1.0, 'that': 1.0, 'case': 1.0, 'nonverbal': 2.0, 'did': 2.0, 'peace': 1.0, 'luckily': 1.0, 'an': 1.0, 'inside': 1.0, 'for': 1.0, 'in': 1.0, 'safety': 1.0, 'got': 1.0, 'this': 1.0, 'lost': 1.0, 'at': 1.0, 'just': 1.0, 'large': 1.0, 'park': 1.0, 'include': 1.0, 'am': 1.0, 'cell': 1.0, 'and': 1.0, 'was': 1.0, 'on': 1.0, 'label': 1.0, 'need': 1.0}
Word element => {'pack': 1.0, 'itself': 1.0, 'to': 1.0, 'green': 1.0, 'attention': 1.0, 'bright': 2.0, 'a': 1.0, 'brought': 1.0, 'they': 1.0, 'with': 1.0, 'it': 1.0, 'great': 1.0, 'more': 1.0, 'idea': 1.0, 'color': 1.0, 'orange': 1.0, 'neon': 1.0, 'or': 1.0, 'wished': 1.0, '4': 1.0, 'hot': 1.0, 'pink': 1.0, 'wish': 1.0, 'sold': 1.0}
Word element => {'awesome': 1.0, 'on': 1.0, 'wears': 1.0, 'one': 1.0, 'have': 1.0, 'we': 1.0, 'tab': 1.0, 'of': 1.0, 'velcro': 1.0, 'he': 1.0, 'it': 2.0, 'lost': 1.0, 'tag': 2.0, 'us': 1.0, 'when': 1.0, 'getting': 1.0, 'and': 2.0, 'shoe': 2.0, 'next': 1.0, 'actualy': 1.0, 'my': 1.0, 'the': 4.0, 'his': 2.0, 'still': 1.0, 'found': 1.0, 'worth': 1.0, 'in': 1.0, 'idea': 1.0, 'everyday': 1.0, 'lol': 1.0, 'van': 1.0, 'called': 1.0, 'so': 1.0, 'after': 1.0, 'at': 1.0, 'a': 1.0, 'son': 1.0, 'day': 2.0, 'disneyland': 1.0, 'off': 1.0, 'someone': 1.0}
Word element => {'on': 1.0, 'put': 1.0, 'easy': 1.0, 'not': 1.0, 'wearing': 1.0, 'shoes': 1.0, 'is': 3.0, 'the': 2.0, 'run': 1.0, 'in': 1.0, 'my': 1.0, 'stores': 1.0, 'hide': 1.0, 'of': 3.0, 'now': 1.0, 'to': 4.0, 'product': 1.0, 'used': 1.0, 'peace': 1.0, 'loves': 1.0, 'play': 1.0, 'it': 1.0, 'with': 1.0, 'older': 1.0, 'he': 2.0, 'this': 1.0, 'as': 1.0, 'kind': 1.0, 'gives': 1.0, 'son': 1.0, 'like': 1.0, 'seek': 1.0, 'and': 3.0, 'me': 1.0, 'a': 2.0, 'bit': 2.0, 'mind': 1.0}
Word element => {}
Word element => {'world': 1.0, 'zippers': 1.0, 'back': 1.0, 'that': 2.0, 'compartments': 1.0, 'has': 1.0, 'keys': 1.0, 'pockets': 1.0, 'inside': 1.0, 'then': 1.0, 'side': 1.0, 'out': 1.0, 'the': 9.0, 'cell': 1.0, 'you': 1.0, 'handbag': 1.0, 'very': 1.0, 'phone': 1.0, 'use': 1.0, 'i': 3.0, 'zipper': 1.0, 'have': 1.0, 'kids': 1.0, 'this': 1.0, 'it': 3.0, 'bag': 3.0, 'is': 3.0, 'now': 1.0, 'had': 1.0, 'as': 1.0, 'to': 1.0, 'center': 1.0, 'body': 1.0, 'one': 1.0, 'best': 1.0, 'years': 1.0, 'pocket': 3.0, 'used': 1.0, 'on': 1.0, '3': 1.0, 'strong': 1.0, 'flap': 2.0, 'plastic': 1.0, '2': 3.0, 'can': 2.0, 'smaller': 1.0, 'so': 1.0, 'carry': 1.0, 'bottles': 1.0, 'strap': 1.0, 'of': 2.0, 'water': 1.0, 'a': 4.0, 'lined': 1.0, 'go': 1.0, 'under': 1.0, 'across': 1.0, 'and': 3.0, 'for': 3.0, 'love': 1.0, 'snacks': 1.0, '10': 1.0, 'converts': 1.0, 'backpack': 1.0, 'in': 3.0, 'length': 1.0, 'large': 1.0}
Word element => {'time': 1.0, 'there': 1.0, 'because': 1.0, 'plays': 1.0, 'my': 1.0, 'him': 1.0, 'are': 1.0, 'keeps': 1.0, 'nephew': 1.0, 'loves': 1.0, 'entertained': 1.0, 'play': 1.0, 'than': 1.0, 'all': 1.0, 'one': 1.0, 'items': 1.0, 'and': 1.0, 'to': 1.0, 'it': 3.0, 'he': 1.0, 'with': 2.0, 'the': 1.0, 'more': 1.0, 'great': 1.0, 'sits': 1.0}
Word element => {'use': 1.0, 'after': 1.0, 'leaky': 1.0, 'little': 1.0, 'we': 1.0, 'a': 3.0, 'product': 1.0, 'as': 1.0, 'and': 1.0, 'good': 1.0, 'ours': 1.0, 'only': 1.0, 'it': 2.0, 'using': 1.0, 'for': 1.0, 'the': 2.0, 'diaper': 1.0, 'thanks': 1.0, 'cloth': 1.0, 'sprayer': 1.0, 'complaint': 1.0, 'you': 1.0, 's': 1.0, 'head': 1.0, 'working': 1.0, 'are': 1.0, 'wonderfully': 1.0, 'is': 2.0, 'that': 1.0}
Word element => {'do': 1.0, 'shipping': 1.0, 'plus': 1.0, 'issued': 1.0, 'credit': 1.0, 'return': 1.0, 'complete': 1.0, 'showed': 1.0, 'the': 6.0, '2': 1.0, 'higher': 1.0, 'it': 3.0, 'shut': 2.0, 'this': 2.0, 'pictures': 1.0, 'recommend': 1.0, 'refund': 1.0, 'was': 2.0, 't': 1.0, 'a': 3.0, 'interested': 1.0, 'me': 1.0, 'not': 2.0, 'seller': 1.0, 'or': 1.0, 'fittings': 1.0, 'fitting': 1.0, 'for': 1.0, 'cheap': 1.0, 'product': 4.0, 'valve': 2.0, 'promptly': 1.0, 'in': 2.0, 'i': 3.0, 'two': 1.0, 'no': 1.0, 'quality': 2.0, 'description': 1.0, 'and': 3.0, '1': 1.0, 'reasons': 1.0, 'metal': 1.0, 'of': 1.0, 'tubing': 2.0, 'supported': 1.0, 'off': 2.0, 'images': 1.0, 'when': 1.0, 'described': 1.0, 'to': 1.0, 'as': 1.0, 'very': 1.0, 'pictured': 1.0, 'included': 1.0, 'received': 1.0, 'plastic': 1.0, 'low': 1.0, 'their': 1.0}
Word element => {'long': 1.0, 'over': 1.0, 'already': 1.0, 'handle': 1.0, 'week': 1.0, 'just': 1.0, 'that': 2.0, 'does': 1.0, 'cloth': 1.0, 'fine': 1.0, 'spray': 1.0, 'bought': 1.0, 'done': 1.0, 'gets': 1.0, 'me': 1.0, 'glaring': 1.0, 'were': 1.0, 'directions': 1.0, 'terrible': 1.0, 'at': 2.0, 'cussing': 1.0, 'leak': 1.0, '25': 1.0, 'it': 10.0, 'heavy': 1.0, 'first': 1.0, 'only': 2.0, 'how': 1.0, 'he': 3.0, '20': 1.0, 'this': 1.0, '30': 1.0, 'buying': 1.0, 'with': 1.0, 'piece': 1.0, 'use': 2.0, 'instructions': 1.0, 'once': 1.0, 'of': 2.0, 'but': 2.0, 'quality': 1.0, 'about': 1.0, 'thing': 1.0, 'very': 1.0, 'squeeze': 1.0, 'like': 1.0, 'i': 6.0, 'stated': 1.0, 'other': 1.0, 'where': 1.0, 'cheap': 1.0, 'for': 3.0, 'in': 1.0, 'reviews': 1.0, 'last': 1.0, 'paid': 1.0, 'off': 1.0, 'leaked': 1.0, 'job': 1.0, 'the': 7.0, 'a': 2.0, 't': 3.0, 'is': 2.0, 'so': 1.0, 'wouldn': 1.0, 'diapers': 1.0, 'got': 1.0, 'didn': 1.0, 'expect': 2.0, 'another': 1.0, 'my': 2.0, 'husband': 1.0, 'all': 1.0, 'to': 3.0, 'tripper': 1.0, 'leaking': 1.0, 'was': 1.0, 'doesn': 1.0, 'minutes': 2.0, 'install': 1.0, 'and': 4.0, 'when': 2.0, 'followed': 1.0, 'equipment': 1.0, 'exactly': 1.0, 'darn': 1.0, 'took': 1.0, 'then': 1.0, 'played': 1.0}
Word element => {'lot': 1.0, 'a': 1.0, 'i': 1.0, 'pressure': 1.0, 'too': 1.0, 'easy': 1.0, 'much': 1.0, 'to': 1.0, 'it': 3.0, 'works': 1.0, 'install': 1.0, 'like': 1.0, 'very': 1.0, 'and': 1.0, 'nice': 1.0, 'was': 1.0, 'not': 1.0}
Word element => {'recommend': 1.0, 'as': 1.0, 'foot': 1.0, 'good': 1.0, 'reduce': 1.0, 'helps': 1.0, 'uses': 1.0, 'bathroom': 1.0, 'free': 1.0, 'soak': 1.0, 'leaves': 1.0, 'fresh': 1.0, 'too': 1.0, 'clean': 1.0, 'her': 4.0, 'cleaning': 1.0, 'helping': 1.0, 'people': 1.0, 'more': 1.0, 'reduces': 1.0, 'product': 2.0, 'since': 2.0, 'feeling': 1.0, 'inflammation': 1.0, 'my': 2.0, 'water': 4.0, 'less': 1.0, 'who': 1.0, 'pressure': 1.0, 'bucket': 1.0, 'in': 3.0, 'ideal': 1.0, 'burst': 1.0, 'toilet': 1.0, 'bidet': 2.0, 'promotes': 1.0, 'a': 3.0, 'going': 1.0, 'for': 6.0, '10': 1.0, 'being': 1.0, 'help': 1.0, 'hygiene': 1.0, 'feet': 1.0, 'i': 4.0, 'themselve': 1.0, 'purchased': 1.0, 'spread': 1.0, 'had': 1.0, 'personal': 1.0, 'disabled': 1.0, 'diabetic': 1.0, 'odor': 1.0, 'to': 6.0, 'any': 1.0, 'was': 3.0, 'minutes': 1.0, 'have': 1.0, 'able': 1.0, 'down': 1.0, 'turned': 1.0, 'install': 1.0, 'with': 2.0, 'eases': 1.0, 'highly': 1.0, 'this': 4.0, 'pain': 1.0, 'ups': 1.0, 'it': 7.0, 'without': 1.0, 'mother': 2.0, 'works': 1.0, 'only': 1.0, 'difficulty': 1.0, 'than': 2.0, 'also': 2.0, 'flare': 1.0, 'person': 1.0, 'the': 10.0, 'of': 3.0, 'is': 3.0, 'hemorrhoids': 1.0, 'not': 1.0, 'and': 10.0, 'genital': 1.0, 'strong': 2.0, 'on': 1.0, 'she': 3.0, 'itching': 1.0, 'using': 1.0, 'bacteria': 1.0, 'issue': 1.0, 'spray': 2.0, 'uncomfortable': 1.0, 'beginning': 1.0, 'helped': 1.0, 'has': 2.0, 'care': 1.0, 'beautifully': 1.0, 'angle': 1.0, 'into': 1.0, 'hygenic': 1.0, 'learned': 1.0, 'nozzle': 1.0, 'paper': 1.0, 'cleans': 1.0, 'sudden': 1.0, 'cold': 1.0, 'directly': 1.0, 'so': 1.0, 'sensitive': 1.0, 'areas': 1.0, 'that': 2.0, 'problems': 1.0}
Word element => {'a': 1.0, 'always': 1.0, 'i': 3.0, 'and': 2.0, 'decided': 1.0, 'problems': 1.0, 'fast': 1.0, 'chance': 1.0, 'one': 1.0, 'for': 1.0, 'without': 1.0, 'great': 2.0, 'it': 1.0, 'installation': 1.0, 'product': 1.0, 'wanted': 1.0, 'buying': 1.0, 'to': 1.0, 'now': 1.0, 'have': 1.0, 'works': 1.0, 'before': 1.0, 'searched': 1.0, 'reviews': 1.0, 'take': 1.0}
Word element => {'now': 1.0, 'using': 1.0, 'one': 1.0, 'little': 1.0, 'my': 1.0, 'about': 1.0, 'feel': 1.0, 'toilets': 2.0, 'all': 1.0, 'fits': 1.0, 'the': 2.0, 'of': 1.0, 'is': 1.0, 'really': 1.0, 'impressed': 1.0, 'protectors': 1.0, 'potty': 1.0, 'i': 2.0, 'am': 1.0, 'size': 1.0, 'generous': 1.0, 'so': 1.0, 'public': 1.0, 'they': 1.0, 'better': 1.0, 'pretty': 1.0, 'came': 1.0, 'larger': 1.0, 'secondly': 1.0, 'quite': 1.0, 'quickly': 1.0, 'first': 1.0, 'with': 1.0, 'it': 1.0}
Word element => {'got': 1.0, 'though': 1.0, 'issues': 1.0, 'those': 1.0, 'issue': 1.0, 'upright': 1.0, 'sun': 1.0, 'recommend': 1.0, 'shield': 1.0, 'extend': 1.0, 'cover': 1.0, 'top': 1.0, 'out': 1.0, 'falling': 1.0, 'from': 2.0, 'minor': 1.0, 'ordered': 1.0, 'preventing': 1.0, 'when': 1.0, 'helps': 1.0, 'guess': 1.0, 'close': 1.0, 'snap': 1.0, 're': 2.0, 'get': 1.0, 'unsnap': 1.0, 'isn': 1.0, 'basket': 1.0, 'found': 1.0, 'going': 1.0, 's': 4.0, 'like': 2.0, 'weight': 1.0, 'looking': 1.0, 'using': 1.0, 'light': 1.0, 'strollers': 2.0, 'quite': 1.0, 'have': 2.0, 'my': 3.0, 'may': 1.0, 'happy': 1.0, 'one': 1.0, 'bottom': 1.0, 'far': 2.0, 'love': 1.0, 'for': 5.0, 't': 3.0, 'fit': 1.0, 'doesn': 2.0, 'but': 4.0, 'so': 5.0, 'lightweight': 2.0, 'can': 1.0, 'item': 1.0, 'stroller': 3.0, '1': 2.0, 'drawbacks': 1.0, 'at': 1.0, 'is': 2.0, 'regular': 1.0, 'to': 10.0, 'as': 1.0, 'your': 1.0, 'feel': 1.0, 'any': 1.0, 'more': 1.0, 'husband': 1.0, '7': 1.0, 'best': 1.0, 'anyone': 1.0, 'and': 3.0, 'm': 1.0, 'in': 3.0, 'maneuvering': 1.0, 'i': 6.0, 'two': 1.0, 'old': 1.0, 'mos': 1.0, 'few': 1.0, 'this': 3.0, 'with': 1.0, 'shade': 1.0, 'it': 14.0, 'without': 1.0, 'remove': 1.0, 'smaller': 1.0, 'use': 1.0, 'her': 1.0, '2': 2.0, 'suv': 1.0, 'bump': 1.0, 'apart': 1.0, 'still': 1.0, 'if': 2.0, 'things': 1.0, 'you': 3.0, 'jogging': 3.0, 'hit': 1.0, 'purposes': 1.0, 'some': 1.0, 'open': 1.0, 'hard': 1.0, 'we': 2.0, 'take': 1.0, 'other': 1.0, 'a': 6.0, 'small': 1.0, 'joggers': 1.0, 'she': 1.0, 'baby': 1.0, 'many': 1.0, 'folds': 1.0, 'both': 1.0, 'half': 1.0, 'trunk': 1.0, 'compact': 1.0, 'enough': 2.0, 'into': 1.0, 'fall': 1.0, 'that': 2.0, 'remedy': 1.0, 'sturdy': 2.0, 'hatchback': 1.0, 'the': 7.0, 'of': 3.0, 'having': 1.0, 'sitting': 1.0, 'wheels': 1.0, 'car': 1.0, 'challenging': 1.0, 'be': 1.0, 'somewhat': 1.0, 'uses': 1.0, 'wide': 1.0, 'getting': 1.0, 'used': 1.0, 'terms': 1.0, 'there': 2.0, 'are': 2.0, 'really': 3.0, 'only': 1.0, 've': 2.0}
Word element => {'that': 1.0, 'vinegar': 1.0, 'soak': 1.0, 'to': 1.0, 'i': 1.0, 'work': 1.0, 'not': 1.0, 'smell': 1.0, 'did': 1.0, 'cute': 1.0, 'strong': 1.0, 'negative': 1.0, 'tried': 1.0, 'my': 1.0, 'in': 1.0, 'kid': 1.0, 'but': 2.0, 'have': 1.0, 'loves': 1.0, 'these': 1.0, 'they': 1.0, 'them': 1.0, 'a': 1.0}
Word element => {'just': 1.0, 'than': 1.0, 'longer': 1.0, 'bath': 1.0, 'easter': 1.0, 'son': 1.0, 'to': 1.0, 'my': 1.0, 'are': 1.0, 'be': 2.0, 'll': 1.0, 'love': 1.0, 'will': 2.0, 'and': 2.0, 'like': 1.0, 'toys': 2.0, 'pool': 1.0, 'last': 1.0, 'cute': 1.0, 'great': 1.0, 'these': 1.0, 'seems': 1.0, 'they': 1.0, 'them': 1.0, 'so': 1.0, 'i': 1.0, 'that': 2.0}
Word element => {'again': 1.0, 'will': 1.0, 'poured': 1.0, 'ordering': 1.0, 'were': 1.0, 'soon': 1.0, 'definitely': 1.0, 'out': 1.0, 'everyone': 1.0, 'soaps': 1.0, 'as': 2.0, 'and': 1.0, 'my': 1.0, 'i': 1.0, 'when': 1.0, 'these': 2.0, 'they': 2.0, 'be': 1.0, 'first': 1.0, 'sold': 1.0, 'loved': 1.0, 'saw': 1.0, 'them': 1.0}
Word element => {'of': 1.0, 'two': 1.0, 'sill': 1.0, 'bathroom': 1.0, 'a': 1.0, 'bit': 1.0, 'they': 1.0, 'design': 1.0, 'for': 1.0, 'window': 1.0, 'look': 1.0, 'there': 1.0, 'lined': 1.0, 'are': 1.0, 'the': 1.0, 'small': 1.0, 'but': 1.0, 'cute': 1.0, 'each': 1.0, 'easter': 1.0, 'up': 1.0, 'on': 1.0}
Word element => {'nice': 1.0, 'looked': 1.0, 'for': 1.0, 'filler': 1.0, 'this': 1.0, 'was': 2.0, 'what': 1.0, 'we': 1.0, 'expecting': 1.0, 'price': 1.0, 'easter': 1.0, 'and': 2.0, 'basket': 1.0, 'were': 1.0, 'great': 1.0, 'the': 2.0, 'cheap': 1.0}
Word element => {'fun': 1.0, 'go': 2.0, 'off': 1.0, 'minutes': 1.0, '10': 1.0, 'bit': 1.0, 'complete': 1.0, 'drill': 1.0, 'just': 1.0, 'will': 1.0, 'it': 1.0, 'christmas': 1.0, 'battery': 1.0, 'twinkle': 1.0, 'and': 2.0, 'operated': 1.0, 'of': 1.0, 'up': 1.0, 'set': 1.0, 'you': 2.0, 'that': 1.0, 'now': 1.0, 'to': 1.0, 'led': 1.0, 'lights': 1.0, 'have': 3.0, 'a': 3.0, 'add': 1.0, 'on': 1.0, 'take': 1.0, 'light': 1.0, 'necklace': 1.0, 'the': 1.0, 'bars': 1.0, 'for': 1.0, 'one': 1.0, 'else': 1.0}
Word element => {'shown': 1.0, 'designs': 1.0, 'problems': 1.0, 'quickly': 1.0, 'shipped': 1.0, 'in': 2.0, 'gift': 1.0, 'what': 1.0, 'had': 1.0, 'calorie': 1.0, 'low': 1.0, 'unique': 1.0, 'it': 2.0, 'have': 1.0, 'picture': 1.0, 'even': 1.0, 'didn': 1.0, 'down': 1.0, 'did': 1.0, 'stores': 2.0, 'than': 1.0, 'put': 1.0, 'on': 2.0, 'think': 1.0, 'price': 1.0, 'made': 1.0, 'well': 1.0, 'nicely': 1.0, 'float': 1.0, 'great': 3.0, 'these': 2.0, 'giving': 1.0, 'shoot': 1.0, 'amazon': 1.0, 'use': 1.0, 'loved': 1.0, 'you': 5.0, 'all': 2.0, 'to': 3.0, 'was': 3.0, 'get': 2.0, 'tub': 1.0, 'them': 2.0, 'are': 4.0, 'can': 1.0, 'they': 5.0, 'no': 1.0, 'shelves': 1.0, 'about': 1.0, 'up': 1.0, 'don': 1.0, 'water': 1.0, 'we': 1.0, 'going': 1.0, 't': 2.0, 'a': 5.0, 'inches': 1.0, 'the': 8.0, 'deal': 3.0, 'candy': 1.0, 'for': 4.0, 'my': 1.0, 're': 1.0, 'pay': 1.0, 'son': 1.0, 'better': 1.0, 'easter': 1.0, 'if': 1.0, 'pretty': 1.0, 'making': 1.0, 'addition': 1.0, 'two': 1.0, 'i': 3.0, 'like': 1.0, 'and': 8.0, 'tall': 1.0, 'too': 1.0, 'end': 1.0, 'much': 1.0, 'baskets': 1.0, 'so': 2.0, 'kids': 1.0, 'this': 2.0, 'durable': 1.0, 'good': 2.0, 'at': 2.0, 'option': 1.0}
Word element => {'compliments': 1.0, 'a': 1.0, 'pieces': 1.0, 'center': 1.0, 'these': 1.0, 'they': 1.0, 'each': 1.0, 'any': 1.0, 'always': 1.0, 'decoration': 1.0, 'of': 2.0, 'fun': 1.0, 'some': 1.0, 'as': 1.0, 'kind': 1.0, 'to': 1.0, 'all': 1.0, 'will': 1.0, 'holiday': 1.0, 'just': 1.0, 'for': 1.0, 'love': 1.0, 'use': 1.0, 'ducks': 1.0, 'get': 1.0, 'and': 3.0, 'setting': 1.0, 'buy': 1.0, 'i': 2.0, 'lot': 1.0, 'table': 1.0, 'add': 1.0, 'them': 1.0}
Word element => {'again': 1.0, 'buy': 1.0, 'not': 1.0, 'duck': 1.0, 'got': 2.0, 'all': 1.0, 'two': 1.0, 'design': 1.0, 'of': 2.0, 'each': 1.0, 'i': 2.0, 'never': 1.0, '5': 1.0, 'will': 1.0, 'same': 1.0, 'more': 1.0, 'the': 1.0}
Word element => {'season': 1.0, 'this': 1.0, 'do': 1.0, 'out': 1.0, 'them': 1.0, 'a': 1.0, 'cute': 1.0, 'so': 1.0, 'are': 1.0, 'my': 1.0, 'i': 2.0, 'every': 1.0, 'ducks': 1.0, 'easter': 2.0, 'little': 1.0, 'will': 1.0, 'these': 1.0, 'to': 1.0, 'handed': 1.0, 'friends': 1.0, 'product': 1.0, 'all': 1.0, 'on': 1.0, 'good': 1.0, 'value': 1.0, 'for': 1.0, 'fun': 1.0}
Word element => {'something': 1.0, 'colors': 1.0, 'bright': 1.0, 'cute': 1.0, 'so': 1.0, 'mom': 1.0, 'daughter': 1.0, 'when': 1.0, 'gift': 1.0, 'i': 4.0, 'her': 1.0, 'even': 1.0, 'fisher': 1.0, 'the': 2.0, 'of': 1.0, 'shower': 1.0, 'with': 1.0, 'it': 2.0, 'my': 2.0, 'baby': 2.0, 'price': 1.0, 'friend': 1.0, 'is': 2.0, 'going': 1.0, 'a': 4.0, 's': 2.0, 'sheets': 1.0, 'january': 1.0, 'including': 1.0, 'have': 1.0, 'to': 4.0, 'had': 1.0, 'in': 1.0, 'be': 1.0, 'babies': 1.0, 'loves': 1.0, 'em': 1.0, 'hedgehog': 3.0, 'found': 2.0, 'this': 1.0, 'soft': 1.0, 'are': 1.0, 'blanket': 1.0, 'knit': 1.0, 'pj': 1.0, 'and': 2.0, 'bouncer': 1.0, 'animals': 1.0, 'alot': 1.0, 'saw': 1.0, 'products': 1.0, 'add': 1.0, 'love': 1.0, 'for': 1.0, 'themed': 1.0}
Word element => {'the': 1.0, 'by': 1.0, 'cute': 1.0, 'soft': 1.0, 'toy': 1.0, 'grandkids': 1.0, 'loved': 1.0, 'colorful': 1.0, 'makes': 1.0, 'various': 1.0, 'he': 1.0, 'noises': 1.0, 'is': 1.0, 'very': 1.0, 'and': 2.0}
Word element => {'10': 1.0, 'now': 1.0, 'was': 1.0, 'stuffed': 1.0, 'that': 1.0, 'bright': 1.0, 'old': 1.0, 'squeeks': 1.0, 'the': 3.0, 'my': 2.0, 'got': 1.0, 'loved': 1.0, 'colors': 1.0, 'about': 1.0, 'christmas': 1.0, 'with': 1.0, 'in': 1.0, 'daughter': 1.0, 'and': 2.0, 'too': 1.0, 'for': 2.0, 'love': 1.0, 'it': 1.0, 'she': 3.0, 'rattle': 1.0, 'i': 1.0, '4': 1.0, 'one': 1.0, 'months': 2.0, 'her': 2.0, 'crib': 1.0, 'a': 1.0, 'we': 2.0, 'recently': 1.0, 'this': 3.0, 'keeper': 1.0, 'found': 1.0, 'cute': 1.0, 'out': 1.0, 'nose': 1.0, 'am': 1.0, 'animals': 1.0, 'not': 1.0, 'is': 2.0, 'sleeps': 1.0, 'around': 1.0, 'house': 1.0, 'but': 1.0}
Word element => {'satisfied': 1.0, 'so': 1.0, 'versatile': 1.0, 'all': 1.0, 'and': 1.0, 'around': 1.0, 'construction': 1.0, 'month': 1.0, 'for': 1.0, 'daughter': 1.0, 'this': 1.0, 'good': 2.0, 'loves': 1.0, 'my': 1.0, 'the': 1.0, 'bought': 1.0, 'toy': 1.0, 'price': 1.0, 'colors': 1.0, 'adorable': 1.0, 'hedgehog': 1.0, 'just': 1.0, 'old': 1.0, 'i': 2.0, 'she': 1.0, 'quality': 1.0, 'will': 1.0, 'bright': 1.0, 'her': 1.0, 'that': 1.0, '3': 1.0, 'teach': 1.0, 'later': 1.0, 'on': 1.0}
Word element => {'carter': 1.0, 'dog': 1.0, 'lullaby': 1.0, 'one': 1.0, 'since': 1.0, 'ignored': 1.0, 'liked': 1.0, 'by': 1.0, 'large': 1.0, 'with': 1.0, 'ideal': 1.0, 'be': 1.0, 'would': 2.0, 'my': 1.0, 'has': 1.0, 'toy': 1.0, 'well': 1.0, 'really': 1.0, 'prefers': 1.0, 'but': 1.0, 'money': 1.0, 'age': 1.0, 'he': 3.0, '6': 1.0, 'rangerecommendation': 1.0, 'use': 1.0, 'son': 1.0, 'singsbest': 1.0, 'up': 1.0, 'thought': 1.0, 'stuffed': 2.0, 'when': 1.0, 'small': 2.0, 'coming': 1.0, 'made': 2.0, 'less': 1.0, 'tiger': 1.0, 'threads': 1.0, 'i': 2.0, 'poor': 1.0, 'shocked': 1.0, 'this': 3.0, 'very': 1.0, 'construction': 1.0, 'do': 3.0, 'mo': 1.0, 'interesting': 1.0, 'play': 1.0, 'and': 5.0, 'simple': 1.0, 'toys': 1.0, 'squeaks': 1.0, 'pros': 1.0, 'colorful': 1.0, 'it': 5.0, 'felt': 2.0, 'never': 1.0, 'saw': 1.0, 'anything': 2.0, 'which': 1.0, 'maybe': 1.0, 'than': 1.0, 'so': 3.0, 'costs': 1.0, 'is': 2.0, 'more': 1.0, 'possibly': 1.0, 'the': 3.0, 'a': 2.0, 'we': 1.0, 't': 3.0, 'out': 2.0, 'blue': 1.0, 'day': 1.0, 'tags': 1.0, 'unlike': 1.0, 'of': 2.0, 'not': 1.0, 'those': 1.0, 'hairs': 2.0, 'falling': 1.0, 'off': 1.0, 'isn': 1.0, 'right': 1.0, 'loves': 1.0, 'that': 2.0, 'box': 1.0, 'was': 1.0, 'doesn': 2.0, 'lights': 1.0, 'nothingcons': 1.0, 'for': 1.0, 'price': 1.0, 'worth': 1.0, 'gloworm': 2.0}
Word element => {'gifts': 1.0, 'shower': 1.0, 'know': 1.0, 'everyone': 1.0, 'give': 1.0, 'favorite': 1.0, 'to': 4.0, 'as': 6.0, 'least': 1.0, 'still': 3.0, 'son': 2.0, 'hedgehog': 4.0, 'this': 1.0, 'soft': 2.0, 'out': 1.0, 'would': 1.0, 'seemed': 1.0, 'and': 8.0, 'crinkle': 1.0, 'played': 1.0, 'at': 5.0, 'is': 5.0, 'his': 2.0, '6': 1.0, 'seek': 1.0, 'he': 6.0, 'our': 1.0, 'how': 1.0, 'often': 1.0, 'can': 1.0, 'the': 5.0, 'things': 1.0, 'night': 1.0, 'helping': 1.0, 'old': 1.0, 'grab': 1.0, 'learned': 1.0, 'petting': 1.0, 'time': 1.0, 'got': 2.0, '2': 2.0, 'squeaky': 1.0, 'we': 4.0, 'age': 1.0, 'in': 2.0, 'about': 1.0, 'everywhere': 1.0, 'crawl': 1.0, 'with': 4.0, 'pillowcase': 1.0, 'months': 1.0, 'like': 1.0, 'which': 1.0, 'sleep': 1.0, 'washer': 1.0, 'first': 1.0, 'christmas': 1.0, 'price': 1.0, 'toddler': 1.0, 'him': 2.0, 'it': 4.0, 'nose': 2.0, 'my': 2.0, 'looks': 1.0, 'bright': 1.0, 'by': 1.0, 'now': 1.0, 'goes': 1.0, 'make': 1.0, '1': 1.0, 'washed': 1.0, 'was': 1.0, 'thinks': 1.0, 'himself': 2.0, 'very': 1.0, 'textures': 1.0, 'funny': 1.0, 'but': 1.0, 'enjoys': 1.0, 'learn': 1.0, 'them': 1.0, 'puts': 1.0, 'has': 2.0, 'feet': 1.0, 'well': 1.0, 'squeak': 1.0, 'toy': 3.0, 'been': 2.0, 'babies': 1.0, 'colors': 1.0, 'baby': 1.0, 'many': 1.0, 'times': 1.0, 'great': 1.0, 'fantastic': 1.0, 'for': 6.0, '10': 1.0, 'day': 1.0, 'an': 2.0, 'really': 1.0, 'excellent': 3.0, 'a': 2.0, 'rattle': 1.0, 'us': 2.0, 'also': 1.0}
Word element => {'unusable': 1.0, 'literally': 1.0, 'experience': 1.0, 'my': 1.0, 'bad': 1.0, 'are': 1.0, 'batch': 1.0, 'us': 1.0, 'convenient': 1.0, 'minute': 1.0, 'struggle': 1.0, 'everything': 1.0, 'stop': 1.0, 'go': 1.0, 's': 4.0, 'a': 10.0, 't': 2.0, 'has': 2.0, 'half': 2.0, 'is': 5.0, 'around': 2.0, 'that': 3.0, 'jiggle': 1.0, 'if': 3.0, 'little': 2.0, 'myself': 1.0, 'i': 9.0, 'problem': 1.0, 'cups': 1.0, 'cup': 2.0, 'or': 3.0, 'once': 1.0, 'doing': 1.0, 'the': 17.0, 'of': 5.0, 'know': 1.0, 'bit': 2.0, 'assembled': 1.0, 'time': 1.0, 'to': 8.0, 'against': 1.0, 'not': 3.0, 'man': 1.0, 'through': 2.0, 'luck': 1.0, 'make': 1.0, 'on': 1.0, 'your': 1.0, 'so': 1.0, 'strength': 1.0, 'can': 3.0, 'considerable': 1.0, 'but': 4.0, 'only': 1.0, 'liquid': 1.0, 'end': 1.0, 'with': 2.0, 'this': 2.0, 'eyes': 1.0, 'it': 5.0, 'for': 2.0, 'sometimes': 1.0, 'grown': 1.0, 'suck': 1.0, 'anything': 2.0, 'other': 1.0, 'lucky': 1.0, 'straw': 4.0, 'get': 2.0, 'let': 1.0, 'chamber': 2.0, 'm': 1.0, 'in': 3.0, 'lid': 2.0, 'bend': 2.0, 'and': 4.0, 'don': 1.0, 'exit': 1.0, 'jammed': 1.0, 'side': 1.0, 'getting': 3.0, 'right': 1.0, 'difficulty': 1.0, 'matter': 1.0, 'assemble': 1.0, 'way': 1.0, 'pure': 1.0, 'things': 1.0, 'you': 1.0, 'what': 1.0, 'when': 1.0, 'thing': 3.0, 'hiding': 1.0, 'have': 2.0, 'just': 3.0, 'hope': 1.0, 'close': 1.0, 'moreover': 1.0, 'great': 1.0, 'sort': 1.0, 'best': 1.0, 'takes': 1.0, 'up': 1.0, 'bent': 1.0, 'finally': 1.0, 'mechanism': 2.0, 'inside': 2.0, 'closes': 1.0, 'use': 1.0, 'hole': 1.0, 'preventing': 1.0, 'leaks': 1.0, 'work': 1.0, 'hard': 1.0, 'open': 2.0, 'some': 2.0, 'never': 1.0}
Word element => {'strap': 1.0, 'recommend': 1.0, 'i': 3.0, 'old': 2.0, 'and': 2.0, 'just': 2.0, 'found': 1.0, 'this': 2.0, 'its': 1.0, 'only': 1.0, 'car': 1.0, 'a': 1.0, 'reach': 1.0, 'the': 6.0, 'great': 1.0, 'my': 1.0, 'right': 2.0, '21': 1.0, 'daughter': 1.0, 'for': 1.0, 'love': 1.0, 'volume': 1.0, 'loves': 1.0, 'that': 1.0, 'she': 1.0, 'it': 3.0, 'month': 1.0, 'length': 1.0, 'cant': 1.0, 'humming': 1.0, 'always': 1.0, 'is': 2.0, 'fall': 1.0, 'floor': 1.0, 'anyone': 1.0, 'within': 1.0, 'be': 1.0, 'so': 1.0, 'toy': 1.0, 'has': 1.0, 'thing': 1.0, 'to': 2.0, 'all': 1.0, 'will': 1.0, 'you': 1.0, 'macdonald': 1.0, 'day': 1.0, 'would': 1.0}
Word element => {'consider': 1.0, 'should': 1.0, 'complaint': 1.0, 'this': 2.0, 'worth': 1.0, 'm': 1.0, 'item': 1.0, 'duck': 2.0, 'entertaining': 1.0, 'for': 1.0, 'steering': 1.0, 'is': 4.0, 'the': 5.0, 'was': 2.0, 'to': 1.0, 'company': 1.0, 'my': 2.0, '18': 1.0, 'it': 3.0, 'month': 1.0, 'sorry': 1.0, 'purchased': 1.0, 'not': 1.0, 'omitted': 1.0, 'makes': 1.0, 'old': 1.0, 'i': 3.0, 'that': 4.0, 'written': 1.0, 'think': 1.0, 'on': 1.0, 'in': 3.0, 'sound': 1.0, 'a': 3.0, 'son': 1.0, 'middle': 1.0, 'only': 1.0, 'wheel': 1.0, 'previous': 1.0, 'toy': 1.0, 'review': 1.0, 'there': 1.0, 'of': 1.0, 'money': 1.0, 'but': 2.0, 'no': 1.0, 'space': 1.0, 'button': 1.0, 'redesign': 1.0, 'probably': 1.0, 'due': 1.0}
Word element => {'loves': 1.0, 'pushing': 1.0, 'brother': 1.0, 'big': 1.0, 'now': 1.0, 'granddaughter': 1.0, 'operate': 1.0, 'two': 1.0, 'at': 2.0, 'for': 2.0, 'enjoyed': 1.0, 'years': 1.0, 'toy': 1.0, 'old': 1.0, 'still': 1.0, 'my': 1.0, 'a': 1.0, 'is': 1.0, 'car': 1.0, 'first': 1.0, 'it': 2.0, 'this': 1.0, 'the': 2.0, 'great': 1.0, 't': 1.0, 'couldn': 1.0, '1': 1.0, 'she': 1.0, 'yr': 1.0, 'but': 1.0, 'buttons': 1.0, 'her': 2.0}
Word element => {'tummy': 1.0, 'use': 1.0, 'to': 1.0, 'fun': 1.0, 'time': 1.0, 'for': 1.0, 'sensory': 1.0, 'of': 1.0, 'good': 1.0, 'lots': 1.0}
Word element => {'sooner': 1.0, 'done': 1.0, 'have': 1.0, 'loop': 1.0, 'using': 1.0, 'thick': 1.0, 'would': 1.0, 'something': 1.0, 'finding': 1.0, 'recommend': 1.0, 'though': 1.0, 'broke': 1.0, 'open': 2.0, 'slide': 1.0, 'hard': 1.0, 'now': 1.0, 'and': 5.0, 'tummy': 1.0, 'her': 2.0, 'long': 1.0, 'liked': 1.0, 'for': 2.0, 'she': 3.0, 'it': 8.0, 'wish': 1.0, 'this': 1.0, 'works': 1.0, 'only': 1.0, 'great': 1.0, '2': 1.0, 'the': 5.0, 'still': 1.0, 'gets': 1.0, 'of': 3.0, 'to': 3.0, 'our': 1.0, 'use': 2.0, 'already': 1.0, 'got': 1.0, 'daughter': 1.0, 'water': 2.0, 'a': 2.0, 'we': 2.0, 'into': 1.0, 'that': 2.0, 'loves': 1.0, 'mat': 1.0, 'lot': 1.0, 'at': 1.0, 'months': 1.0, 'i': 4.0, 'am': 1.0, 'get': 1.0, 'tab': 1.0, 'sure': 1.0, 'will': 1.0, 'back': 1.0, 'on': 1.0, 'put': 1.0, 'out': 2.0, 'popping': 1.0, 'time': 1.0, 'problem': 1.0, 'is': 2.0, 'in': 1.0, 'take': 1.0, 'very': 1.0}
Word element => {'hours': 1.0, '48': 1.0, 'in': 1.0, 'out': 1.0, 'home': 1.0, 'disappointed': 1.0, 'throw': 1.0, 'were': 1.0, 'certainly': 1.0, 'happen': 1.0, 'and': 1.0, 'petite': 1.0, 'day': 2.0, 'year': 1.0, 'son': 1.0, 'one': 1.0, 'with': 1.0, 'wonderful': 1.0, 'time': 1.0, 'so': 1.0, 'brother': 1.0, 'for': 1.0, 'sad': 1.0, 'leak': 1.0, 'say': 1.0, 'although': 1.0, 'been': 1.0, 'that': 1.0, 'she': 1.0, 'it': 4.0, 'showing': 1.0, 'month': 1.0, 'our': 2.0, 'to': 4.0, 'had': 3.0, 'old': 2.0, 'i': 1.0, 'daughter': 1.0, 'by': 1.0, 'her': 2.0, 'down': 1.0, 'before': 1.0, '5': 1.0, 'enjoyed': 1.0, '6': 1.0, 'how': 1.0, 'push': 1.0, 'my': 1.0, 'but': 1.0, '2': 1.0, 'we': 1.0, 's': 1.0, 'a': 2.0, 't': 1.0, 'sprung': 1.0, 'don': 1.0, 'playing': 1.0, 'believe': 1.0, 'did': 1.0, 'anything': 1.0, 'make': 1.0}
Word element => {'it': 1.0, 'using': 1.0, 'get': 1.0, 'may': 1.0, 'cold': 1.0, 's': 1.0, 'skin': 1.0, 'mind': 1.0, 'my': 1.0, 'little': 1.0, 'baby': 2.0, 'busy': 1.0, 'that': 1.0, 'boy': 1.0, 'loves': 1.0, 'this': 1.0, 'play': 1.0, 'keep': 1.0, 'mat': 1.0, 'in': 1.0}
Word element => {'in': 1.0, 'water': 1.0, 'of': 1.0, 'bit': 1.0, 'that': 1.0, 'complaint': 1.0, 'long': 1.0, 'not': 1.0, 'minutes': 1.0, 'tolerates': 1.0, 'get': 1.0, 'and': 1.0, 'cute': 1.0, 'a': 4.0, 'is': 3.0, 'pain': 1.0, 'months': 1.0, 'time': 2.0, 'for': 2.0, '3': 1.0, 'use': 1.0, 'tummy': 2.0, 'few': 1.0, 'help': 1.0, 'the': 1.0, 't': 1.0, 'my': 1.0, 'product': 1.0, 'bought': 1.0, 'she': 2.0, 'but': 1.0, 'doesn': 1.0, 'particularly': 1.0, 'to': 2.0, 'hoping': 1.0, 'was': 1.0, 'would': 1.0, 'like': 1.0, 'so': 1.0, 'old': 1.0, 'i': 1.0, 'only': 1.0, 'this': 2.0, 'it': 3.0}
Word element => {'while': 1.0, 'a': 1.0, 'keeps': 1.0, 'catching': 1.0, 'ever': 1.0, 'without': 1.0, 'inside': 1.0, 'chases': 1.0, 'the': 1.0, 'great': 1.0, 'play': 1.0, 'busy': 1.0, 'babies': 1.0, 'have': 1.0, 'toys': 1.0, 'grandson': 1.0, 'loves': 1.0, 'written': 1.0, 'around': 1.0, 'should': 1.0, 'and': 1.0, 'my': 1.0, 'for': 5.0, 'got': 1.0, 'i': 1.0, 'mom': 1.0, 'when': 1.0, 'is': 1.0, 'sooner': 1.0, 'just': 2.0, 'his': 1.0, 'with': 1.0, 'this': 3.0, 'christmas': 1.0, 'he': 2.0, 'it': 2.0, 'puts': 1.0, 'him': 2.0, 'them': 1.0, 'out': 1.0, 'to': 1.0}
Word element => {'opinion': 1.0, 'very': 1.0, 'idea': 1.0, 'nice': 1.0, 'playing': 1.0, 'not': 2.0, 'designed': 1.0, 'time': 1.0, 'at': 1.0, 'on': 1.0, 'pounds': 1.0, 'well': 1.0, 'a': 1.0, 'sprung': 1.0, 'days': 1.0, 'three': 1.0, 'she': 2.0, 'lasted': 2.0, 'by': 1.0, 'particularly': 1.0, 'month': 1.0, '14': 1.0, 'while': 1.0, 'old': 1.0, 'for': 1.0, 'liked': 1.0, 'was': 3.0, 'to': 2.0, 'leak': 1.0, '6': 1.0, 'my': 2.0, 'the': 2.0, 'fascinated': 1.0, 'hard': 1.0, 'this': 1.0, 'it': 3.0, 'moving': 1.0, 'in': 1.0, 'pieces': 1.0, 'water': 1.0, 'under': 1.0, 'and': 3.0, 'then': 1.0, 'loved': 1.0, 'try': 1.0, 'though': 1.0, 'splash': 1.0}
Word element => {'deal': 1.0, 'deserves': 1.0, 'much': 1.0, 'very': 1.0, 'this': 1.0, 'good': 1.0, 'nephew': 1.0, 'is': 1.0, 'the': 1.0, 'my': 1.0, 'likes': 1.0, 'his': 1.0, 'price': 1.0, 'funny': 1.0, 'appreciate': 1.0, 'it': 3.0, 'also': 1.0, 'parents': 1.0}
Word element => {'have': 1.0, 'definitely': 1.0, 'stimulation': 1.0, 'long': 1.0, 'a': 2.0, 'mat': 1.0, 'water': 1.0, 'new': 1.0, 'loves': 1.0, 'looking': 1.0, 'been': 1.0, 'baby': 1.0, 'for': 1.0, 'had': 1.0, 'time': 1.0, 'thank': 1.0, 'i': 1.0, 'you': 1.0, 'is': 1.0, 'amazon': 1.0, 'this': 1.0, 'it': 2.0, 'pictured': 1.0, 'exactly': 1.0, 'must': 1.0, 'as': 1.0, 'great': 1.0, 'the': 1.0}
Word element => {'time': 1.0, 'tummy': 1.0, 'some': 1.0, 'encourage': 1.0, 'helped': 1.0, 'paid': 1.0, 'in': 1.0, '13': 1.0, '9': 1.0, 'son': 1.0, 'year': 1.0, 'for': 1.0, 'money': 1.0, 'about': 1.0, 'lasted': 1.0, 'my': 2.0, 'started': 1.0, 'the': 1.0, 'it': 5.0, 'only': 1.0, 'get': 1.0, 'and': 2.0, 'although': 1.0, 'months': 1.0, 'on': 1.0, 'leaking': 1.0, 'to': 1.0, 'was': 1.0, 'a': 1.0, 'good': 1.0, 'i': 1.0, 'step': 1.0, 'old': 1.0, 'buy': 1.0}
Word element => {'in': 1.0, 'if': 1.0, 'play': 1.0, 'him': 1.0, 'floor': 1.0, 'on': 1.0, 'lay': 1.0, 'to': 2.0, 'a': 2.0, 'poking': 1.0, 'away': 1.0, 'and': 2.0, 'slapping': 1.0, 'one': 1.0, 'for': 2.0, 'air': 2.0, 'hurricane': 1.0, 'kid': 1.0, 'hold': 1.0, 'fun': 1.0, 'at': 1.0, 'ring': 1.0, 'outside': 1.0, 'another': 1.0, 'baby': 1.0, 'don': 1.0, 'with': 2.0, 'it': 2.0, 'blew': 1.0, 'the': 3.0, 'great': 1.0, 't': 2.0, 'think': 1.0, 'section': 1.0, 'house': 1.0, 'doesn': 1.0, 'but': 1.0, 'likes': 1.0, 'all': 1.0, 'buy': 1.0, 'i': 2.0, 'our': 2.0, 'that': 1.0, 'matters': 1.0, 'd': 1.0, 'inner': 1.0, 'is': 2.0}
Word element => {'catch': 1.0, 'trying': 1.0, 'struggling': 1.0, 'a': 1.0, 'were': 1.0, 'with': 2.0, 'on': 1.0, 'to': 1.0, 'now': 1.0, 'fish': 1.0, 'we': 1.0, 'absolutely': 1.0, 'mat': 2.0, 'blast': 1.0, 'water': 2.0, 'the': 3.0, 'my': 1.0, 'loves': 1.0, 'daughter': 1.0, 'tummy': 2.0, 'she': 2.0, 'couldnt': 1.0, 'her': 1.0, 'stand': 1.0, 'time': 1.0, 'has': 1.0, 'being': 1.0}
Word element => {'looking': 1.0, 'really': 1.0, 'forward': 1.0, 'bad': 1.0, 'is': 1.0, 'waste': 1.0, 'clearly': 1.0, 'from': 1.0, 'were': 2.0, 'his': 1.0, 'noticed': 1.0, 'too': 1.0, 'and': 2.0, 'down': 1.0, '3rd': 1.0, 'when': 1.0, 'padded': 1.0, 'great': 1.0, 'worked': 1.0, 'in': 1.0, 'because': 1.0, 'having': 2.0, 'of': 2.0, 'after': 1.0, 'it': 9.0, 'first': 1.0, 'with': 1.0, 'tiny': 1.0, 'bleach': 1.0, 'bought': 1.0, 'i': 10.0, 'didn': 1.0, 'don': 1.0, 'mildew': 1.0, 'barley': 1.0, 'tummy': 1.0, 'hands': 1.0, 'the': 4.0, 'a': 3.0, 't': 2.0, 'read': 1.0, 'played': 1.0, 'put': 3.0, 'week': 1.0, 'money': 1.0, 'but': 2.0, 'anyways': 1.0, 'my': 2.0, 'reviews': 1.0, 'loved': 1.0, 'item': 1.0, 'sides': 1.0, 'twice': 1.0, 'at': 1.0, 'encourage': 1.0, 'darn': 1.0, 'this': 1.0, 'deflated': 2.0, 'leaking': 1.0, 'was': 4.0, 'all': 2.0, 'to': 2.0, 'where': 1.0, 'for': 2.0, 'despite': 1.0, 'thing': 3.0, 'about': 1.0, 'son': 2.0, 'wet': 1.0, 'just': 1.0, 'by': 1.0, 'so': 1.0, 'bit': 1.0, 'time': 2.0, 'know': 1.0, 'brought': 1.0, 'which': 2.0}
Word element => {'down': 1.0, 'bough': 1.0, 've': 1.0, 'toy': 1.0, 'time': 1.0, 'move': 1.0, 'when': 1.0, 'i': 2.0, 'hands': 2.0, 'on': 2.0, 'best': 1.0, 'son': 1.0, 'smack': 1.0, 'and': 2.0, 'will': 1.0, 'my': 2.0, 'the': 2.0, 'it': 2.0, 'he': 2.0, 'tummy': 1.0, 'sit': 1.0, 'likes': 2.0, 'feel': 1.0, 'cool': 1.0, 'look': 1.0, 'to': 2.0, 'lay': 1.0, 'water': 1.0, 'during': 1.0, 'fish': 1.0}
Word element => {'complaint': 1.0, 'have': 1.0, 'that': 1.0, 'fills': 1.0, 'plug': 1.0, 'of': 1.0, 'pinch': 1.0, 'small': 1.0, 'a': 1.0, 'on': 2.0, 'than': 1.0, 'water': 1.0, 'turn': 1.0, 'is': 1.0, 'to': 2.0, 'month': 1.0, 'item': 1.0, 'fill': 1.0, '7': 1.0, 'son': 1.0, 'stream': 1.0, 'for': 2.0, 'could': 1.0, 'he': 1.0, 'it': 3.0, 'with': 1.0, 'this': 3.0, 'other': 1.0, 'play': 1.0, 'and': 3.0, 'my': 1.0, 'no': 1.0, 'hours': 1.0, 'let': 1.0, 'the': 5.0, 'fastest': 2.0, 'bought': 1.0, 'old': 1.0, 'i': 4.0, 'found': 1.0, 'if': 1.0, 'sides': 1.0, 'him': 1.0, 'would': 1.0, 'way': 2.0, 'easiest': 1.0}
Word element => {'easily': 1.0, 'in': 1.0, 'together': 1.0, 'about': 1.0, 'don': 1.0, 'so': 1.0, 'clump': 1.0, 'inside': 1.0, 'a': 1.0, 'well': 1.0, 'up': 1.0, 't': 1.0, 'the': 3.0, 'construction': 1.0, 'solid': 1.0, 'our': 1.0, 'move': 1.0, 'pretty': 2.0, 'plastic': 1.0, 'fill': 1.0, 'are': 1.0, 'physical': 1.0, 'for': 1.0, 'water': 2.0, 'use': 1.0, 'relatively': 1.0, 'easy': 1.0, 'therapy': 1.0, 'sons': 1.0, 'and': 2.0, 'held': 1.0, 'mat': 1.0, 'fish': 1.0, 'we': 1.0, 'is': 1.0, 'hard': 1.0, 'this': 1.0, 'it': 1.0, 's': 1.0, 'to': 1.0, 'they': 2.0, 'has': 1.0}
Word element => {'did': 1.0, 'while': 1.0, 'ignored': 1.0, 'time': 1.0, 's': 1.0, 'and': 1.0, 'we': 2.0, 'after': 1.0, 'months': 1.0, 'have': 1.0, 'begin': 1.0, 'by': 1.0, 'daughter': 1.0, 'few': 1.0, 'air': 1.0, 'to': 1.0, 'interested': 1.0, 'a': 2.0, 'that': 1.0, 'most': 1.0, 'got': 1.0, 'then': 1.0, 'trash': 1.0, 'leak': 1.0, 'with': 1.0, 'it': 5.0, 'went': 2.0, 'spend': 1.0, 'wasn': 1.0, 'in': 3.0, 'flat': 1.0, 'the': 3.0, 't': 1.0, 'part': 2.0, 'followed': 1.0, 'water': 1.0}
Word element => {'use': 1.0, 'chemical': 1.0, 'great': 1.0, 'd': 1.0, 'mouth': 1.0, 'side': 1.0, 'have': 1.0, 'do': 1.0, 'if': 1.0, 'want': 1.0, 'lays': 1.0, 'don': 1.0, 'up': 1.0, 'head': 2.0, 'ready': 1.0, 'his': 3.0, 'tired': 1.0, 'though': 1.0, 'not': 1.0, 'stinks': 1.0, 'had': 1.0, 've': 1.0, 'holding': 1.0, 'package': 1.0, 'of': 3.0, 'he': 3.0, 'weren': 1.0, 'strongly': 2.0, 'this': 1.0, 'first': 1.0, 'better': 1.0, 'pool': 1.0, 'hand': 1.0, 'like': 2.0, 'so': 4.0, 'time': 1.0, 'i': 4.0, 'old': 1.0, 'got': 2.0, 'product': 1.0, 'for': 2.0, 'be': 2.0, 'him': 2.0, 'it': 12.0, 'month': 2.0, 'right': 1.0, 'tummy': 1.0, 'can': 1.0, 'prefers': 1.0, 'four': 1.0, 'but': 3.0, 'helped': 1.0, 'often': 1.0, 'my': 4.0, 'at': 1.0, 'main': 1.0, 'who': 1.0, 'now': 1.0, 'hates': 1.0, 'as': 1.0, 'to': 4.0, 'smelled': 1.0, 'just': 1.0, 'lie': 1.0, 'put': 1.0, 'constantly': 1.0, 'mouths': 1.0, 'strong': 1.0, 'on': 2.0, 'and': 2.0, 'play': 1.0, 't': 3.0, 'a': 5.0, 'we': 2.0, 'chemicals': 1.0, 'mat': 2.0, 'gets': 1.0, 'son': 1.0, 'still': 1.0, 'carpet': 1.0, 'or': 1.0, 'the': 3.0, 'y': 1.0, 'down': 2.0, 'complaint': 1.0, 'is': 1.0, 'that': 3.0, 'terrible': 1.0, 'little': 1.0, 'very': 1.0, 'raft': 1.0, 'barely': 1.0, 'smells': 2.0, 'when': 2.0, 'out': 1.0}
Word element => {'chilly': 1.0, 'boys': 1.0, 'cold': 1.0, 'when': 1.0, 'gets': 1.0, 'that': 1.0, 'is': 1.0, 'like': 2.0, 'up': 1.0, 'don': 2.0, 'trouble': 1.0, 'love': 1.0, 'filling': 1.0, 'how': 1.0, 'still': 1.0, 'only': 1.0, 'it': 5.0, 'this': 1.0, 'also': 1.0, 'i': 4.0, 'and': 1.0, 'do': 3.0, 'not': 1.0, 'know': 1.0, 'because': 1.0, 'just': 1.0, 'my': 2.0, 't': 2.0, 'the': 1.0, 'its': 1.0, 'had': 2.0, 'to': 1.0, 'husband': 1.0, 'thing': 1.0}
Word element => {'water': 1.0, 'in': 1.0, 'air': 1.0, 'used': 1.0, 'however': 1.0, 'filling': 1.0, 'understandable': 1.0, 'have': 1.0, 'did': 1.0, 'toys': 1.0, 'the': 4.0, 'great': 1.0, 'baby': 1.0, 'didnt': 1.0, 'contact': 1.0, 'and': 3.0, 'well': 1.0, 'hot': 1.0, 'we': 4.0, 'fill': 1.0, 'shortly': 1.0, 'thought': 1.0, 'sweaty': 1.0, 'that': 1.0, 'this': 1.0, 'it': 6.0, 'skin': 1.0, 'ring': 1.0, 'issues': 1.0, 'help': 1.0, 'would': 1.0, 'worked': 1.0, 'keep': 1.0, 'extent': 1.0, 'be': 1.0, 'about': 1.0, 'despite': 1.0, 'center': 1.0, 'our': 1.0, 'to': 5.0, 'was': 1.0, 'he': 2.0, 'plastic': 1.0, 'd': 1.0, 'sweat': 1.0, 'after': 1.0, 'start': 1.0, 'because': 1.0, 'not': 2.0, 'of': 2.0, 'got': 1.0, 'placed': 1.0, 'fact': 1.0, 'think': 1.0, 'on': 1.0, 'still': 1.0, 'is': 2.0, 'cool': 2.0, 'one': 1.0, 'his': 1.0, 'outer': 1.0, 'favorite': 1.0}
Word element => {'in': 1.0, 'hasty': 1.0, 'perhaps': 1.0, 'i': 1.0, 'visit': 1.0, 'loves': 1.0, 'she': 1.0, 'playing': 1.0, 'our': 1.0, 'her': 1.0, 'we': 2.0, 'during': 1.0, 'away': 1.0, 'giving': 1.0, 'and': 1.0, 'tummy': 1.0, 'have': 1.0, 'enjoyed': 1.0, 'too': 1.0, 'when': 1.0, 'daughter': 1.0, 'truly': 1.0, 'with': 1.0, 'period': 1.0, 'this': 1.0, 'it': 3.0, 'was': 1.0, 'to': 1.0, 'since': 1.0, 'a': 2.0, 'friend': 1.0, 'who': 1.0, 'time': 1.0, 'has': 1.0, 'little': 1.0, 'given': 1.0, 'one': 1.0}
Word element => {'though': 1.0, 'us': 1.0, 'is': 1.0, 'plastic': 1.0, 'great': 1.0, 'intense': 1.0, 'the': 1.0, 'because': 1.0, 'use': 1.0, 'was': 1.0, 'to': 1.0, 'hated': 1.0, 'my': 1.0, 'a': 2.0, 'prior': 1.0, 'been': 1.0, 'until': 1.0, 'time': 2.0, 'has': 1.0, 'tummy': 2.0, 'airing': 1.0, 'smell': 1.0, 'lifesaver': 1.0, 'we': 1.0, 'bought': 1.0, 'buy': 1.0, 'i': 1.0, 'for': 2.0, 'suggest': 1.0, 'one': 1.0, 'this': 3.0, 'it': 1.0, 'least': 1.0, 'out': 1.0, 'at': 1.0, 'son': 1.0, 'day': 1.0}
Word element => {'home': 1.0, 'bought': 1.0, 'and': 1.0, 'daycare': 1.0, 'my': 1.0, 'baby': 1.0, 'just': 1.0, 'loves': 1.0, 'this': 2.0, 'at': 1.0, 'his': 1.0, 'water': 1.0, 'mat': 1.0, 'they': 1.0, 'for': 1.0, 'had': 1.0, 'i': 1.0, 'one': 2.0}
Word element => {'would': 1.0, 'boy': 1.0, 'my': 1.0, 'too': 1.0, 'ripping': 1.0, 'out': 1.0, 'have': 1.0, 'bad': 1.0, 'able': 1.0, 'weren': 1.0, 'closed': 1.0, 'malfunction': 1.0, 'mat': 1.0, 'a': 2.0, 'that': 1.0, 'there': 1.0, 'tried': 1.0, 'simply': 1.0, 'the': 1.0, 't': 2.0, 'way': 1.0, 'inside': 1.0, 'liked': 1.0, 'for': 1.0, 'apart': 1.0, 'also': 1.0, 'reason': 1.0, 'we': 3.0, 'once': 1.0, 'no': 1.0, 'was': 2.0, 'to': 2.0, 'fill': 1.0, 'water': 1.0, 'reopen': 1.0, 'with': 2.0, 'it': 5.0, 'looked': 1.0, 'couldn': 1.0, 'probably': 1.0, 'and': 1.0, 'use': 1.0, 'got': 1.0}
Word element => {'issue': 1.0, 'tool': 1.0, 'having': 1.0, 'couple': 1.0, 'more': 1.0, 'last': 1.0, 'going': 1.0, 'likely': 1.0, 'isn': 1.0, 'son': 1.0, 'open': 1.0, 'by': 1.0, 'surprised': 1.0, 'not': 1.0, 'toys': 1.0, 'started': 1.0, 'decided': 1.0, 'toy': 3.0, 'somehow': 1.0, 'leak': 2.0, 'filled': 1.0, '3': 1.0, 'after': 1.0, 'are': 2.0, 'there': 1.0, 'once': 1.0, 'submerge': 1.0, 'or': 1.0, 'need': 1.0, 'no': 2.0, 'here': 1.0, 'read': 1.0, 'please': 1.0, 'instructions': 2.0, 'filling': 2.0, 'complain': 1.0, 'tap': 1.0, 'from': 1.0, 'purpose': 1.0, 'loved': 1.0, 'enough': 1.0, 'imagined': 1.0, 'inner': 1.0, 'than': 2.0, 'use': 1.0, 'smaller': 1.0, 'also': 1.0, 'minutes': 1.0, '15': 1.0, 'about': 1.0, 'play': 2.0, 'boy': 1.0, 'would': 1.0, 't': 3.0, 'wasn': 1.0, 'know': 1.0, 'easy': 1.0, 'bit': 3.0, 'makes': 2.0, 'old': 2.0, 'very': 1.0, 'breathe': 1.0, 'keeping': 1.0, 'spend': 1.0, 'bobbing': 1.0, 'just': 2.0, 'he': 11.0, 'picking': 1.0, 'item': 1.0, 'how': 2.0, 'careful': 1.0, 'his': 5.0, 'kick': 1.0, 'in': 1.0, '8': 1.0, 'plastic': 3.0, 'age': 1.0, 'everything': 1.0, 'seal': 1.0, 'cut': 1.0, 'fish': 1.0, 'they': 1.0, 'inside': 1.0, 'gladly': 1.0, 'floating': 1.0, 'think': 1.0, 'help': 1.0, 'goes': 1.0, 'make': 1.0, 'update': 1.0, 'on': 2.0, 'and': 11.0, 'mouth': 1.0, '5': 1.0, '10': 1.0, 'for': 6.0, 'come': 1.0, 'where': 1.0, 'month': 2.0, 'with': 12.0, 'this': 7.0, 'pretty': 1.0, 'to': 10.0, 'against': 1.0, 'time': 4.0, 'put': 1.0, 'much': 3.0, 'do': 2.0, 'too': 2.0, 'try': 1.0, 'prop': 1.0, 'a': 10.0, 's': 3.0, 'which': 2.0, 'good': 3.0, 'rough': 1.0, 'loves': 1.0, 'because': 1.0, 'that': 5.0, 'ring': 1.0, 'is': 5.0, 'at': 4.0, 'got': 1.0, 'wants': 1.0, 'if': 1.0, 'still': 2.0, 'hose': 1.0, 'gets': 1.0, 'most': 1.0, 'so': 3.0, 'can': 3.0, 'sitting': 1.0, 'enjoys': 1.0, 'obtained': 1.0, 'but': 7.0, 'doing': 1.0, 'attention': 1.0, 'the': 12.0, 'of': 7.0, 'face': 1.0, 'outer': 1.0, 'interact': 1.0, 'off': 1.0, 'sure': 1.0, 'trouble': 1.0, 'months': 2.0, 'get': 2.0, 'little': 1.0, 'frustrated': 1.0, 'my': 4.0, 'me': 2.0, 'comments': 1.0, 'up': 3.0, 'child': 2.0, 'air': 1.0, 'almost': 1.0, 'now': 1.0, 'unattended': 1.0, 'it': 13.0, 'him': 1.0, 'dispose': 1.0, 'grab': 1.0, 'be': 1.0, 'i': 8.0, 'feet': 1.0, 'big': 1.0, 'mat': 1.0, 'will': 1.0, 'drool': 1.0, 'children': 1.0, 'push': 1.0, 'you': 4.0, 'have': 1.0, 'deflated': 1.0, 'as': 1.0, 'leave': 1.0, 'some': 1.0, 'never': 1.0, 'them': 2.0, 'has': 1.0, 'other': 1.0, 'aims': 1.0, 'helped': 1.0, 'tummy': 3.0, 'quite': 1.0}
Word element => {'hates': 1.0, 'baby': 1.0, 'your': 1.0, 'especially': 1.0, 'immediately': 1.0, 'buy': 1.0, 'you': 1.0, 'item': 1.0, 'performance': 1.0, 'quality': 1.0, 'satisfied': 1.0, 'himself': 1.0, 'creatures': 1.0, 'seeing': 1.0, 'head': 1.0, 'sun': 1.0, 'after': 2.0, 'huge': 1.0, 'decided': 1.0, 'about': 1.0, 'for': 4.0, 'actually': 1.0, 'first': 2.0, 'a': 4.0, 'tummy': 3.0, 'float': 1.0, 'start': 1.0, 'month': 1.0, 'time': 6.0, 'so': 2.0, 'son': 2.0, 'considerable': 1.0, 'rolled': 1.0, 'try': 1.0, 'held': 1.0, 'out': 1.0, 'absolutely': 1.0, 'ordered': 1.0, 'i': 3.0, 'old': 1.0, 'by': 1.0, 'pushed': 1.0, 'today': 1.0, '3': 1.0, 'amount': 1.0, 'on': 4.0, 'put': 2.0, 'this': 2.0, 'chest': 1.0, 'fish': 1.0, 'was': 3.0, 'the': 10.0, 'of': 3.0, 'up': 4.0, 'over': 1.0, 'reading': 1.0, 'we': 6.0, 'reviews': 1.0, 'and': 11.0, 'hit': 1.0, 'that': 1.0, 'he': 3.0, 'seemed': 1.0, 'great': 1.0, 'investment': 1.0, 'to': 3.0, 'as': 1.0, 'if': 1.0, 'still': 1.0, 'enjoy': 2.0, 'floating': 1.0, 'his': 1.0, 'around': 1.0, 'completely': 2.0, 'suggest': 1.0, 'caught': 1.0, 'more': 1.0, 'with': 2.0, 'little': 1.0, 'despises': 1.0, 'outside': 1.0, 'pushing': 2.0, 'times': 1.0, 'when': 1.0, 'deciding': 1.0, 'am': 2.0, 'other': 1.0, 'all': 1.0, 'ever': 1.0, 'strongly': 1.0, 'had': 1.0, 'it': 6.0, 'him': 3.0, 'mat': 2.0, 'my': 2.0, 'filming': 1.0, 'worth': 1.0, 'now': 1.0, 'captivated': 1.0, 'glad': 1.0, 'did': 1.0, 'ground': 1.0, 'flip': 1.0, 'really': 1.0, 'product': 1.0, 'video': 1.0, 'camera': 1.0, 'also': 1.0, 'off': 1.0, 'tried': 1.0, 'seems': 1.0, 'have': 1.0, 'edge': 1.0, 'since': 1.0, 'several': 1.0, 'down': 1.0}
Word element => {'your': 1.0, 't': 1.0, 'money': 1.0, 'don': 1.0, 'of': 1.0, 'quality': 1.0, 'a': 1.0, 'paid': 1.0, 'low': 1.0, 'what': 1.0, 'waste': 1.0, 'hunk': 1.0, 'everywhere': 1.0, 'leaking': 1.0, 'got': 1.0, 'use': 1.0, 'product': 1.0, 'days': 2.0, '5': 2.0, 'for': 2.0, 'month': 1.0, 'issues': 1.0, 'guess': 1.0, 'old': 1.0, 'i': 4.0, 'cheap': 1.0, 'my': 1.0, 'totally': 1.0, 'it': 3.0, 'with': 2.0, 'plastic': 1.0, '7': 1.0, 'sensory': 1.0, 'to': 1.0, 'had': 1.0, 'was': 2.0, 'small': 1.0, 'after': 1.0, 'very': 1.0, 'and': 1.0}
Word element => {'hard': 1.0, 'has': 1.0, 'daughter': 1.0, 'inflate': 1.0, 'infant': 1.0, 'ours': 1.0, 'let': 1.0, 'i': 1.0, 'time': 1.0, 'interest': 1.0, 'so': 2.0, 'great': 1.0, 'this': 2.0, 'she': 1.0, 'it': 3.0, 'very': 1.0, 'grew': 1.0, 'is': 1.0, 'delays': 1.0, 'see': 2.0, 'couldn': 1.0, 'and': 1.0, 'do': 1.0, 'get': 1.0, 'idea': 1.0, 'almost': 1.0, 'belly': 1.0, 'developmental': 1.0, 'use': 2.0, 'but': 1.0, 'mold': 1.0, 'immediately': 1.0, 'never': 1.0, 'would': 1.0, 'wanted': 2.0, 'our': 1.0, 'to': 6.0, 'was': 1.0, 'tummy': 1.0, 't': 2.0, 'a': 1.0, 'we': 1.0, 'if': 1.0, 'her': 2.0, 'long': 1.0, 'enough': 2.0, 'lay': 1.0, 'on': 1.0, 'didn': 1.0, 'also': 1.0}
Word element => {'him': 1.0, 'keeps': 1.0, 'pieces': 1.0, 'watch': 1.0, 'few': 1.0, 'fussing': 1.0, 'lay': 1.0, 'will': 1.0, 'but': 1.0, 'minutes': 1.0, 'was': 1.0, 'at': 1.0, 'since': 1.0, 'tummy': 1.0, 'his': 1.0, 'on': 1.0, 'being': 1.0, 'hated': 2.0, 'my': 2.0, 'not': 2.0, 'it': 7.0, 'with': 1.0, 'occupied': 1.0, 'great': 1.0, 'because': 2.0, 'does': 1.0, 'had': 2.0, 'husband': 1.0, 'to': 3.0, 'so': 1.0, 'time': 2.0, 'use': 1.0, 'instructions': 1.0, 'i': 6.0, '4': 1.0, 'he': 3.0, 'how': 1.0, 'really': 1.0, 'figure': 1.0, 'around': 1.0, 'is': 1.0, 'out': 2.0, 'likes': 1.0, 'has': 1.0, 'toy': 1.0, 'haven': 1.0, 'sure': 1.0, 'fill': 2.0, 'the': 2.0, 'without': 2.0, 'emptied': 1.0, 'price': 1.0, 'm': 1.0, 'gave': 1.0, 't': 1.0, 'a': 4.0, 'could': 1.0, 'up': 1.0, 'when': 1.0, 'again': 1.0, 'this': 2.0, 'full': 1.0, 'help': 1.0, 'move': 1.0, 'born': 1.0, 'come': 1.0, 'however': 1.0, 'once': 1.0, 'inside': 1.0, 'figuring': 1.0, 'especially': 1.0, 'stars': 1.0, 'for': 2.0, 'difficult': 1.0, 'son': 1.0}
Word element => {'on': 1.0, 'easily': 1.0, 'fits': 1.0, 'herhigh': 1.0, 'granddaughter': 1.0, 'toy': 1.0, 'loves': 1.0, 'this': 1.0, 'it': 2.0, 'our': 1.0, 'chair': 1.0, 'tray': 1.0, 'and': 1.0, 'she': 1.0, 'fascinted': 1.0, 'sweet': 1.0, 'by': 1.0, 'great': 1.0, 'the': 2.0, 'seems': 1.0, 'sound': 1.0, 'purchase': 1.0, 'feel': 1.0, 'of': 1.0}
Word element => {'we': 1.0, 'what': 1.0, 'that': 1.0, 'currently': 1.0, 'out': 1.0, 'made': 1.0, 'water': 1.0, 'are': 1.0, 'there': 2.0, 'enjoy': 1.0, 'baby': 1.0, 'my': 1.0, 'two': 1.0, 'encourage': 1.0, 'product': 1.0, 'tummy': 1.0, 'have': 1.0, 'time': 1.0, 'received': 2.0, 'severly': 1.0, 'i': 2.0, 'mats': 1.0, 'one': 1.0, 'and': 2.0, 'not': 1.0, 'did': 1.0, 'this': 2.0, 'only': 2.0, 'it': 4.0, 'disappointed': 1.0, 'hole': 1.0, 'in': 2.0, 'was': 1.0, 'to': 3.0, 'had': 1.0, 'but': 1.0, 'is': 1.0, 'leaks': 1.0}
Word element => {'with': 1.0, 'show': 1.0, 'picture': 1.0, 'that': 1.0, 'smaller': 1.0, 'looks': 1.0, 'than': 1.0, 'while': 1.0, 'it': 3.0, 'works': 1.0, 'fine': 1.0, 'a': 1.0, 'and': 1.0, 'the': 1.0, 'my': 1.0, 'occupy': 1.0, 'baby': 2.0, 'little': 1.0, 'keeps': 1.0, 'playing': 1.0, 'for': 1.0}
Word element => {'waste': 1.0, 'quick': 1.0, 'ripped': 1.0, 'd': 1.0, 'returning': 1.0, 'worth': 1.0, 'on': 1.0, 'anyway': 1.0, 'over': 1.0, 'for': 1.0, 'where': 2.0, 'by': 1.0, 'few': 1.0, 'really': 1.0, 'is': 1.0, 'within': 1.0, 'minutes': 1.0, 'leaking': 2.0, 'was': 3.0, 'as': 1.0, 'to': 1.0, 'had': 1.0, 'after': 1.0, 'however': 2.0, '10': 1.0, 'everything': 1.0, 'so': 2.0, 'concept': 1.0, 'daughter': 1.0, 'water': 2.0, 'packaging': 1.0, 'of': 2.0, 'like': 1.0, 'nice': 1.0, 'seemed': 1.0, 'great': 1.0, 'hanging': 1.0, 'the': 5.0, 'it': 6.0, 'her': 1.0, 'soon': 1.0, 'goes': 1.0, 'in': 1.0, 'a': 3.0, 'hole': 1.0, 'my': 1.0, 'checked': 1.0, 'i': 3.0, 'seams': 1.0, 'did': 1.0, 'me': 1.0, 'not': 2.0, 'total': 1.0, 'laying': 1.0, 'find': 1.0, 'bust': 1.0, 'everytime': 1.0, 'sink': 1.0, 'why': 1.0, 'valve': 1.0}
Word element => {'coordination': 1.0, 'hand': 1.0, 'eventually': 1.0, 'colors': 1.0, 'for': 1.0, 'letters': 1.0, 'tool': 1.0, 'teaching': 1.0, 'numbers': 1.0, 'eye': 1.0, 'than': 1.0, 'the': 2.0, 'are': 1.0, 'not': 1.0, 'is': 1.0, 'other': 1.0, 'wonderful': 1.0, 'great': 2.0, 'and': 3.0, 'quality': 1.0, 'markers': 1.0, 'toy': 1.0}
Word element => {'timing': 1.0, 'and': 1.0, 'when': 2.0, 'because': 1.0, 'akward': 1.0, 'very': 1.0, 'first': 1.0, 'with': 1.0, 'this': 1.0, 'use': 1.0, 'not': 1.0, 'me': 1.0, 'do': 1.0, 'sitting': 1.0, 'but': 2.0, 'house': 1.0, 'problem': 1.0, 'pretty': 1.0, 'love': 1.0, 'made': 1.0, 'a': 1.0, 'hole': 1.0, 'my': 3.0, 'company': 1.0, 'flat': 1.0, 'the': 2.0, 'has': 1.0, 'tummy': 1.0, 'replaced': 1.0, 'no': 1.0, 'i': 2.0, 'want': 1.0, 'is': 4.0, 'water': 1.0, 'to': 1.0, 'all': 1.0, 'over': 1.0, 'on': 1.0, 'had': 1.0, 'thought': 1.0, 'he': 3.0, '6': 1.0, 'it': 3.0, 'month': 1.0, 'new': 1.0, 'hesitant': 1.0, 'would': 1.0, 'one': 2.0, 'luke': 1.0, 'old': 1.0, 'warm': 1.0, 'so': 1.0}
Word element => {'in': 1.0, 'press': 1.0, 'came': 1.0, 'just': 1.0, 'was': 1.0, 'to': 4.0, 'how': 1.0, 'up': 1.0, 'of': 1.0, 'like': 1.0, 'the': 4.0, 'great': 1.0, 'my': 2.0, 'little': 3.0, 'likes': 1.0, 'toy': 1.0, 'because': 1.0, 'sister': 2.0, 'it': 5.0, 'this': 1.0, 'looked': 1.0, 'hard': 1.0, 'when': 1.0, 'out': 1.0, 'against': 1.0, 'and': 2.0, 'getting': 1.0, 'put': 2.0, 'inside': 1.0, 'her': 1.0, 'face': 1.0, 'its': 1.0, 'only': 2.0, 'try': 1.0, 'eat': 1.0, 'rated': 1.0, 'fishies': 1.0, 'box': 1.0, 'loves': 1.0, 'that': 1.0, 'swim': 1.0, 'reason': 1.0, 'why': 1.0, 'is': 2.0, '4': 1.0, 'supposed': 1.0, 'stars': 1.0, 'water': 1.0}
Word element => {'down': 1.0, 'big': 1.0, 'agree': 1.0, 'was': 1.0, 'had': 1.0, 'husband': 2.0, 'pain': 1.0, 'this': 2.0, 'it': 3.0, 'moldy': 1.0, 'got': 1.0, 'the': 1.0, 'not': 1.0, 'just': 1.0, 'room': 1.0, 'expected': 1.0, 'when': 1.0, 'filled': 1.0, 'is': 2.0, 'living': 1.0, 'and': 2.0, 'use': 1.0, 'horrible': 1.0, 'all': 1.0, 'to': 2.0, 'our': 1.0, 'in': 2.0, 'seems': 2.0, 'fill': 1.0, 'ask': 1.0, 'baby': 2.0, 'underneath': 1.0, 'my': 2.0, 'thumbs': 1.0, 'smaller': 1.0, 'than': 1.0, 'i': 2.0, 'very': 1.0, 'awkward': 1.0, 'concept': 1.0, 'we': 1.0, 'a': 5.0, 's': 1.0, 'on': 2.0, 'put': 1.0, 'but': 1.0, 'table': 1.0, 'like': 2.0, 'hazard': 1.0, 'huge': 1.0, 'suffocation': 1.0, 'cool': 1.0}
Word element => {'i': 1.0, 'and': 1.0, 'water': 1.0, 'recommend': 1.0, 'sturdy': 1.0, 'toys': 1.0, 'of': 1.0, 'movement': 1.0, 'this': 2.0, 'is': 2.0, 'a': 1.0, 'moving': 1.0, 'they': 1.0, 'it': 1.0, 'love': 1.0, 'the': 3.0, 'fun': 1.0, 'toy': 1.0, 'in': 1.0, 'for': 1.0, 'little': 1.0, 'nice': 1.0, 'babies': 1.0}
Word element => {'grandma': 1.0, 'by': 1.0, 'having': 1.0, 'on': 1.0, 'sick': 1.0, 'filled': 1.0, 'very': 1.0, 'for': 1.0, 'playing': 1.0, 'she': 1.0, 'highly': 1.0, 'baby': 1.0, 'toy': 1.0, 'much': 1.0, 'a': 2.0, 'was': 2.0, 'this': 1.0, 'so': 1.0, 'mat': 1.0, 'fun': 1.0, 'great': 1.0, 'the': 1.0, 'cool': 1.0, 'water': 1.0, 'recommended': 1.0}
Word element => {'back': 1.0, 'at': 1.0, 'the': 2.0, 'hold': 1.0, 'pencil': 1.0, 'out': 1.0, 'very': 1.0, 'figure': 1.0, 'was': 2.0, 'faced': 1.0, 'given': 1.0, 'problem': 1.0, 'gr8': 1.0, 'al': 1.0, 'himself': 1.0, 'by': 1.0, 'push': 1.0, 'great': 1.0, 'hole': 1.0, 'we': 2.0, 'a': 2.0, 'easy': 2.0, 'sure': 1.0, 'when': 1.0, 'am': 1.0, 'i': 1.0, 'something': 1.0, 'buy': 1.0, 'that': 1.0, 'loves': 1.0, 'sun': 1.0, 'me': 1.0, 'and': 4.0, 'time': 1.0, 'so': 1.0, 'made': 2.0, 'my': 1.0, '5': 1.0, 'sees': 1.0, 'son': 1.0, 'old': 1.0, 'makes': 1.0, 'has': 1.0, 'put': 1.0, 'think': 1.0, 'on': 1.0, '3': 1.0, 'how': 1.0, 'he': 3.0, 'wish': 1.0, 'this': 1.0, 'its': 1.0, 'only': 2.0, 'it': 5.0, 'month': 1.0, 'will': 1.0, 'unique': 1.0, 'start': 1.0, 'tummy': 2.0, 'fishes': 1.0, 'as': 1.0, 'to': 6.0, 'fill': 1.0, 'now': 1.0, 'is': 3.0, 'more': 2.0, 'best': 1.0, 'fun': 1.0, 'product': 1.0, 'for': 3.0, 'one': 1.0, 'be': 1.0, 'him': 1.0, 'together': 1.0, 'water': 5.0, 'enjoy': 1.0, 'floating': 1.0, 'but': 1.0, 'part': 1.0, 'filling': 2.0, 'splashing': 1.0, 'colors': 1.0, 'though': 1.0, 'rite': 1.0}
Word element => {'disappointed': 1.0, 'inside': 1.0, 'back': 1.0, 'able': 1.0, 'being': 1.0, 'just': 1.0, 'now': 2.0, 'air': 1.0, 'had': 1.0, 'point': 1.0, 'cleaners': 1.0, 'soon': 1.0, 'and': 1.0, 'play': 1.0, 'grandson': 1.0, 'way': 1.0, 'types': 1.0, 'house': 1.0, 'purchase': 1.0, 'my': 2.0, 'for': 1.0, 'actually': 1.0, 'whelming': 1.0, 'this': 2.0, 'take': 1.0, '34': 2.0, 'hopes': 1.0, 'appears': 1.0, 'week': 1.0, 'mentioned': 1.0, 'see': 1.0, 'i': 6.0, 'like': 1.0, 'of': 4.0, 'rather': 1.0, 'so': 1.0, 'else': 1.0, 'hanging': 1.0, 'the': 5.0, 'could': 1.0, 'a': 4.0, 't': 1.0, 'is': 8.0, 'over': 2.0, 'don': 1.0, 'child': 2.0, 'out': 2.0, 'cute': 1.0, 'colorful': 1.0, 'it': 13.0, 'with': 4.0, 'be': 1.0, 'would': 2.0, 'something': 1.0, 'been': 1.0, 'that': 4.0, 'along': 1.0, 'finally': 1.0, 'smell': 3.0, 'bring': 1.0, 'diminishing': 1.0, 'near': 1.0, 'there': 1.0, 'impossible': 1.0, 'let': 2.0, 'several': 1.0, 'no': 2.0, 'outside': 2.0, 'as': 1.0, 'to': 7.0, 'all': 1.0, 'small': 1.0, 'have': 2.0, 'water': 1.0, 'store': 1.0, 'am': 1.0, 'you': 1.0, 'when': 1.0, 'put': 1.0, 'washed': 1.0, 'your': 1.0, 'toy': 3.0, 'has': 2.0, 'through': 1.0, 'problem': 1.0, 'one': 1.0, 'throughout': 1.0, 'plastic': 1.0}
Word element => {'recommend': 1.0, 'highly': 1.0, 'refuses': 1.0, 'and': 2.0, 'on': 2.0, 'i': 2.0, 'old': 1.0, 'constructed': 1.0, 'to': 2.0, 'skills': 1.0, 'price': 1.0, 'bought': 1.0, 'nephew': 1.0, 'my': 1.0, 'vision': 1.0, 'this': 3.0, 'he': 1.0, 'month': 1.0, 'it': 1.0, 'in': 1.0, 'product': 1.0, 'for': 1.0, 'toy': 1.0, 'well': 1.0, 'has': 1.0, 'time': 1.0, 'development': 1.0, '10': 1.0, 'which': 1.0, 'lay': 1.0, 'who': 1.0, 'his': 3.0, 'long': 1.0, 'captured': 1.0, 'would': 1.0, 'motor': 1.0, 'attention': 1.0, 'a': 2.0, 's': 1.0, 'enough': 1.0, 'delays': 1.0, 'is': 1.0, 'miracle': 1.0, 'spend': 1.0, 'great': 1.0, 'the': 1.0, 'just': 1.0, 'tummy': 2.0, 'right': 1.0, 'size': 1.0}
Word element => {'awesome': 1.0, 'store': 1.0, 'on': 1.0, 'picture': 1.0, 'front': 1.0, 'a': 2.0, 'an': 1.0, 'quality': 1.0, 'put': 1.0, 'can': 1.0, 'you': 1.0, 'too': 1.0, 'just': 1.0, 'perfect': 1.0, 'is': 1.0, 'great': 1.0, 'the': 4.0, 'memento': 1.0, 'my': 1.0, 'toys': 1.0, 'then': 1.0, 'likes': 1.0, 'and': 4.0, 'cake': 1.0, 'son': 1.0, 'as': 1.0, 'of': 1.0, 'up': 1.0, 'little': 1.0, 'birthday': 1.0, 'cute': 1.0, 'to': 1.0, 'it': 1.0, 'this': 1.0, 'grows': 1.0, 'first': 1.0, 'price': 1.0, 'baby': 1.0, 'resist': 1.0, 'for': 2.0}
Word element => {'woman': 1.0, 'an': 1.0, 'should': 1.0, 'things': 1.0, 'of': 1.0, 'care': 1.0, 'who': 1.0, 'those': 1.0, 'made': 1.0, 'well': 1.0, 'plus': 1.0, 'was': 1.0, 'time': 1.0, 'so': 1.0, 'noise': 1.0, 'old': 1.0, 'makes': 2.0, 'piece': 1.0, 'with': 1.0, 'happy': 1.0, 'worries': 1.0, 'nagging': 1.0, 'no': 1.0, 'last': 1.0, 'different': 1.0, 'her': 4.0, 'hand': 1.0, 'them': 2.0, 'out': 1.0, 's': 2.0, 'a': 3.0, 'year': 1.0, 'take': 1.0, 'cake': 1.0, 'for': 2.0, 'one': 1.0, 'loved': 1.0, 'niece': 1.0, 'mama': 1.0, 'yes': 1.0, 'my': 1.0, 'small': 1.0, 'items': 2.0, 'throws': 1.0, 'the': 6.0, 'they': 1.0, 'music': 1.0, 'but': 1.0, 'back': 2.0, 'into': 2.0, 'score': 1.0, 'auntie': 1.0, 'big': 1.0, 'stays': 1.0, 'mouth': 1.0, 'biggiest': 1.0, 'perfect': 1.0, 'pain': 1.0, 'is': 1.0, 'constant': 1.0, 'press': 1.0, 'again': 1.0, 'bear': 1.0, 'and': 3.0, 'play': 1.0, 'it': 5.0, 'she': 2.0, 'are': 2.0, 'stacks': 1.0, 'shoving': 1.0, 'to': 2.0, 'all': 1.0, 'each': 1.0}
Word element => {'i': 1.0, 'but': 1.0, 'thought': 1.0, 'than': 1.0, 'smaller': 1.0, 'cute': 1.0, 'would': 1.0, 'was': 1.0, 'birthday': 1.0, 'gift': 1.0, 'a': 1.0, '1': 1.0, 'stuffed': 1.0, 'for': 1.0, 'year': 1.0, 'adorable': 1.0, 'still': 1.0, 'be': 1.0, 'old': 1.0, 'it': 2.0}
Word element => {'really': 1.0, 'daughter': 1.0, 'her': 1.0, 'even': 1.0, 'inside': 1.0, 's': 3.0, 'my': 2.0, 'made': 1.0, 'mother': 1.0, 'the': 2.0, 'liked': 1.0, 'for': 1.0, 'wonderful': 1.0, 'please': 1.0, 'loved': 1.0, 'to': 1.0, 'granddaughter': 1.0, 'was': 1.0, 'well': 1.0, 'a': 1.0, 'gift': 1.0, 'birthday': 1.0, 'she': 2.0, 'little': 1.0, 'hard': 1.0, 'first': 1.0, 'this': 1.0, 'it': 2.0, 'cake': 1.0, 'very': 2.0, 'and': 2.0, 'finding': 1.0, 'all': 1.0, 'toys': 1.0}
Word element => {'his': 1.0, 'enjoy': 1.0, 'son': 1.0, 'hopefully': 1.0, 'my': 2.0, 'gift': 1.0, 'second': 1.0, 'of': 1.0, 'we': 1.0, 'purchase': 1.0, 'prefect': 1.0, 'loved': 1.0, 'this': 1.0, 'item': 1.0, 'will': 1.0, 'birthday': 1.0, 'as': 1.0, 'items': 1.0, 'daughter': 1.0, 'for': 1.0, 'first': 1.0, 'hers': 1.0, 'a': 1.0}
Word element => {'is': 1.0, 'in': 1.0, 'back': 1.0, 'stuffing': 1.0, 'and': 1.0, 'toys': 1.0, 'little': 1.0, 'hit': 1.0, 'all': 3.0, 'the': 2.0, 'great': 1.0, 'i': 1.0, 'deal': 1.0, 'a': 2.0, 'so': 2.0, 'was': 2.0, 'of': 1.0, 'set': 1.0, 'other': 1.0, 'love': 1.0, 'for': 1.0, 'them': 1.0, 'grabbed': 1.0, 'inventory': 1.0, 'my': 2.0, 'cake': 1.0, 'son': 1.0, 's': 1.0, 'it': 3.0, 'this': 1.0, 'children': 1.0, 'first': 1.0, 'taking': 1.0, 'cute': 1.0, 'birthday': 1.0}
Word element => {'birthday': 1.0, 'his': 1.0, 'him': 1.0, 'birth': 1.0, 'my': 1.0, 'when': 1.0, 'going': 1.0, 'am': 1.0, 'items': 1.0, 'photo': 1.0, 'up': 1.0, 'of': 1.0, 'pick': 1.0, 'all': 1.0, 'put': 1.0, 'inside': 1.0, 'i': 5.0, 'the': 1.0, 'cuter': 1.0, 'is': 1.0, 'son': 1.0, 'cake': 1.0, 'adorable': 1.0, 'give': 1.0, 'little': 3.0, 'first': 1.0, 'it': 3.0, 'this': 2.0, 'think': 2.0, 'person': 1.0, 's': 3.0, 'a': 1.0, 'lot': 1.0, 'perfect': 1.0, 'in': 2.0, 'love': 1.0, 'for': 2.0, 'to': 3.0, 'fingers': 1.0}
Word element => {'was': 1.0, 'that': 1.0, 'minutes': 1.0, 'and': 3.0, 'very': 2.0, 'tiny': 1.0, 'special': 1.0, 'inside': 1.0, 'but': 1.0, 'nothing': 1.0, 'toys': 1.0, 'of': 1.0, 'cute': 1.0, 'are': 1.0, 'small': 1.0, 'is': 2.0, 'the': 2.0, '2': 1.0, 'with': 1.0, 'it': 5.0, 'not': 1.0, 'exciting': 1.0, 'played': 1.0, 'baby': 1.0, 'about': 1.0, 'for': 1.0}
Word element => {'balloon': 1.0, 'mylar': 1.0, 'extra': 1.0, 'or': 1.0, 'gift': 1.0, 'on': 1.0, 'recommend': 1.0, 'would': 1.0, 'child': 1.0, 'than': 1.0, 'to': 1.0, 'be': 1.0, 'i': 1.0, 'old': 1.0, 'a': 1.0, '15': 1.0, 'your': 1.0, 'one': 2.0, 'for': 3.0, 'adorable': 1.0, 'year': 1.0, 'fun': 1.0, 'an': 1.0, 'but': 1.0, 'turning': 1.0, 'only': 1.0, 'it': 1.0, 'another': 1.0, 'money': 1.0, 'about': 1.0, 'spending': 1.0, 'minutes': 1.0, 'are': 1.0, 'infants': 1.0, 'the': 2.0, 'more': 1.0, 'soon': 1.0, 'toys': 1.0, 'is': 1.0, 'really': 1.0}
Word element => {'until': 1.0, 'with': 1.0, 'stops': 1.0, 'dances': 1.0, 'and': 1.0, 'it': 3.0, 'baby': 1.0, 'musical': 1.0, 'loves': 1.0, 'my': 1.0, 'the': 1.0, 'around': 1.0, 'he': 1.0, 'press': 1.0, 'smiles': 1.0, 'i': 1.0, 'bear': 1.0, 'when': 1.0}
Word element => {'little': 1.0, 'since': 1.0, 'learned': 1.0, 'have': 1.0, 'about': 1.0, 'talking': 1.0, 'these': 1.0, 'the': 5.0, 'use': 1.0, 'in': 1.0, 'camera': 1.0, 'i': 2.0, 'always': 1.0, 'up': 3.0, 'a': 1.0, 'on': 1.0, 'growing': 2.0, 'children': 1.0, 'unit': 1.0, 'it': 1.0, 'with': 1.0, 'for': 2.0, 'love': 2.0, 'were': 1.0, 'props': 1.0, 'to': 1.0, 'all': 1.0, 'center': 1.0, 'as': 1.0, 'kindergarten': 1.0, 'my': 1.0, 'do': 2.0, 'play': 1.0, 'class': 1.0, 'and': 3.0, 'preschool': 1.0, 'musical': 1.0, 'friends': 1.0, 'plush': 1.0, 'bear': 1.0, 'well': 1.0, 'has': 1.0, 'dramatic': 1.0, 'they': 3.0, 'held': 1.0, 'of': 1.0, 'rather': 1.0, 'perfect': 1.0, 'this': 1.0, 'pictures': 1.0, 'taking': 1.0, 'pretend': 1.0, 'accomplishments': 1.0, 'their': 1.0, 'blowing': 1.0, 'out': 1.0, 'celebrations': 1.0, 'candles': 1.0, 'is': 1.0}
Word element => {'set': 1.0, 'buy': 1.0, 'doesn': 1.0, 'easy': 1.0, 'how': 1.0, 'mind': 1.0, 'with': 1.0, 'and': 3.0, 'durable': 1.0, 'break': 1.0, 'd': 1.0, 'm': 1.0, 'daughter': 2.0, 'when': 1.0, 'another': 1.0, 'my': 2.0, 're': 2.0, 'form': 1.0, 'cup': 1.0, 'i': 3.0, 'normal': 1.0, 'are': 2.0, 'cold': 1.0, 'defintely': 1.0, 'of': 3.0, 'do': 1.0, 'pack': 1.0, 'they': 4.0, 'these': 2.0, 'the': 3.0, 'few': 1.0, 'bought': 1.0, 'months': 1.0, 'impressed': 1.0, 'on': 1.0, 'freeze': 1.0, 'use': 2.0, 'don': 1.0, 'even': 1.0, 'if': 1.0, 'safe': 1.0, 'in': 1.0, 'dishwasher': 1.0, 'condensation': 1.0, 'cups': 1.0, 'to': 2.0, 'outside': 1.0, 'dropped': 1.0, 'during': 1.0, 'but': 1.0, 'that': 1.0, 'ago': 1.0, 'a': 2.0, 't': 2.0, 's': 1.0}
Word element => {'highly': 1.0, 'adjust': 1.0, 'clean': 1.0, 'little': 1.0, 'to': 2.0, 'recommend': 1.0, 'easy': 2.0, 'and': 1.0, 'very': 1.0, 'fold': 1.0, 'is': 2.0, 'wipes': 1.0, 'chair': 1.0, 'high': 1.0, 'it': 4.0, 'with': 1.0, 'this': 1.0, 'no': 1.0, 'fuss': 1.0, 'are': 1.0, 'great': 1.0, 'ones': 1.0, 'comfortable': 1.0, 'in': 1.0, 'i': 1.0}
Word element => {'wash': 1.0, 'into': 1.0, 'just': 1.0, 'care': 1.0, 'easy': 1.0, 'cover': 1.0, 'now': 1.0, 'right': 1.0, 'my': 1.0, 'adjust': 1.0, 'simple': 1.0, 'need': 1.0, 'wherever': 1.0, 'this': 3.0, 'come': 1.0, 'so': 2.0, 'wheels': 1.0, 'chair': 1.0, 'at': 1.0, 'three': 1.0, 'handed': 1.0, 'two': 1.0, 'i': 2.0, 'seat': 1.0, 'to': 4.0, 'have': 2.0, 'height': 1.0, 'transitions': 1.0, 'anyone': 1.0, 'the': 6.0, 'greatest': 1.0, 'can': 1.0, 'throw': 1.0, 'high': 1.0, 'personally': 1.0, 'from': 1.0, 'school': 1.0, 'your': 1.0, 'out': 1.0, 'spare': 1.0, 'has': 1.0, 'well': 1.0, 'with': 2.0, 'date': 1.0, 'convenient': 1.0, 'infancy': 1.0, 'pre': 1.0, 'mommy': 1.0, 'age': 1.0, 'baby': 1.0, 'and': 2.0, 'love': 3.0, 'product': 2.0, 'for': 1.0, 'bought': 1.0, 'tray': 1.0, 'one': 1.0, 'times': 1.0, 'you': 2.0, 'easily': 1.0, 'it': 5.0, 'remove': 1.0, 'table': 1.0, 'hold': 1.0, 'hand': 1.0, 'is': 4.0, 'around': 1.0}
Word element => {'price': 1.0, 'hug': 1.0, 'for': 1.0, 'grand': 1.0, 'old': 1.0, 'my': 1.0, 'adults': 1.0, 'great': 1.0, 'the': 1.0, '2': 1.0, 'loved': 1.0, 'too': 1.0, 'daughter': 1.0, 'gave': 1.0, 'christmas': 1.0, 'this': 1.0, 'it': 2.0, 'and': 2.0, 'year': 1.0, 'very': 1.0, 'to': 2.0, 'wanted': 1.0, 'she': 1.0, 'soft': 1.0, 'good': 1.0, 'size': 1.0, 'even': 1.0}
Word element => {'while': 1.0, 'my': 1.0, 'diversion': 1.0, 'overall': 1.0, 'there': 1.0, 'back': 1.0, 'on': 1.0, 'see': 1.0, 'enough': 1.0, 'unbreakable': 1.0, 'what': 1.0, 'location': 1.0, 'feet': 1.0, 'in': 3.0, 'reason': 1.0, 'kick': 1.0, 'are': 1.0, 'safe': 2.0, 'frog': 1.0, 'car': 2.0, 'good': 1.0, 'her': 3.0, 'the': 5.0, 'playing': 1.0, 'with': 1.0, 'perfect': 2.0, 'this': 2.0, 'loves': 1.0, 'only': 1.0, 'flippers': 1.0, 'froggy': 1.0, 'when': 1.0, 'very': 1.0, 'little': 2.0, 'didn': 1.0, 'me': 1.0, 'reflection': 1.0, 'give': 1.0, 'toy': 1.0, 'colorful': 1.0, 'it': 2.0, 'she': 2.0, 'and': 3.0, 'going': 1.0, 't': 2.0, 's': 5.0, 'a': 2.0, 'super': 1.0, 'no': 1.0, 'cute': 1.0, 'fun': 1.0, 'mirror': 1.0, 'isn': 1.0, 'baby': 2.0, 'quality': 1.0, 'but': 1.0, 'i': 1.0, 'to': 2.0, 'seat': 2.0, 'our': 1.0, 'all': 1.0, 'of': 1.0, 'for': 3.0, 'stars': 1.0}
Word element => {'take': 1.0, 'hate': 1.0, 'toy': 1.0, 'enjoys': 1.0, 'really': 1.0, 'he': 1.0, 'cuz': 1.0, 'tell': 1.0, 'that': 1.0, 'away': 1.0, 'older': 1.0, 'thankfully': 1.0, 'other': 1.0, 'headache': 1.0, 'is': 1.0, 'more': 1.0, 'again': 1.0, 'jackets': 1.0, 'little': 1.0, 'see': 1.0, 'a': 3.0, 'so': 2.0, 'than': 1.0, 'almonds': 1.0, 'mirror': 2.0, 'tryed': 1.0, 'minivan': 1.0, 'the': 3.0, 'get': 1.0, 'matter': 1.0, 'doing': 1.0, 'kids': 1.0, 'drive': 1.0, 'i': 9.0, 'dodge': 1.0, 'stuffed': 1.0, 'what': 2.0, 'even': 1.0, 'me': 1.0, 'not': 1.0, 'stay': 1.0, 'toys': 1.0, 'and': 2.0, 'soon': 1.0, 'baby': 1.0, 'kicking': 1.0, 'thing': 1.0, 'no': 1.0, 'kid': 1.0, 'its': 1.0, 'do': 1.0, 'works': 1.0, 'empty': 1.0, 'of': 2.0, 'have': 3.0, 'diamond': 1.0, 'can': 3.0, 'but': 1.0, 'nothing': 1.0, 'any': 1.0, 'to': 2.0, 'shoving': 1.0, 'as': 2.0, 'guy': 1.0, 'think': 1.0, 'adjusted': 1.0, 'owned': 1.0, 'my': 2.0, 'starts': 1.0, 'it': 2.0, 'moves': 1.0}
Word element => {'well': 1.0, 'price': 1.0, 'great': 1.0, 'mirrors': 1.0, 'plain': 1.0, 'engaging': 1.0, 'is': 1.0, 'than': 1.0, 'nicest': 1.0, 'i': 1.0, 'found': 1.0, 'the': 2.0, 'nicer': 1.0, 'this': 1.0, 'have': 1.0, 'product': 1.0, 'much': 1.0, 'as': 1.0, 'and': 1.0}
Word element => {'needs': 1.0, 'all': 1.0, 'this': 1.0, 'when': 1.0, 'i': 1.0, 'different': 1.0, 'baby': 1.0, 'our': 2.0, 'bought': 1.0, 'two': 1.0, 'one': 2.0, 'brush': 1.0, 'good': 1.0, 'of': 1.0, 'serves': 1.0, 'brushes': 1.0, 'my': 1.0, 'bother': 1.0, 'wife': 1.0, 'didn': 1.0, 'package': 1.0, 'the': 2.0, 't': 1.0, 'other': 1.0, 'taking': 1.0, 'arrived': 1.0, 'out': 1.0}
Word element => {'off': 1.0, 'milk': 1.0, 'water': 1.0, 'hot': 1.0, 'tip': 1.0, 'super': 1.0, 'quickly': 1.0, 'bottles': 2.0, 'ease': 1.0, 'reaches': 1.0, '360': 1.0, 'cleaning': 1.0, 'clean': 1.0, 'to': 1.0, 'has': 1.0, 'my': 3.0, 'questionably': 1.0, 'works': 1.0, 'breast': 1.0, 'on': 1.0, 'included': 1.0, 'tiny': 1.0, 'degree': 1.0, 'the': 8.0, 'great': 1.0, 'nipple': 1.0, 'so': 1.0, 'with': 1.0, 'counter': 1.0, 'this': 1.0, 'touch': 1.0, 'i': 2.0, 'bottle': 3.0, 'advent': 1.0, 'stand': 1.0, 'nipples': 1.0, 'melts': 1.0, 'how': 1.0, 'of': 1.0, 'bottom': 1.0, 'acts': 1.0, 'as': 1.0, 'a': 1.0, 'love': 2.0, 'brush': 5.0, 'for': 1.0, 'never': 1.0}
Word element => {'same': 1.0, 'still': 1.0, 'and': 1.0, 'is': 1.0, 'my': 1.0, 'on': 1.0, 'previous': 1.0, '00': 1.0, 'works': 1.0, 'before': 1.0, 'out': 1.0, 'rust': 1.0, 'cleans': 1.0, 'the': 1.0, 'great': 1.0, 'shelled': 1.0, 'brush': 1.0, 'love': 1.0, 'one': 3.0, 'well': 1.0, 'i': 3.0, 'buy': 1.0, '10': 1.0, 'suction': 1.0, 'if': 1.0, 'how': 1.0, 'affordable': 1.0, 'just': 1.0, 'cheaper': 1.0, 'stands': 1.0, 'up': 1.0, 'another': 1.0, 'alone': 1.0, 'nearly': 1.0, 'wish': 1.0, 'its': 1.0, 'had': 1.0, 'purchased': 1.0, 'it': 3.0, 'this': 2.0}
Word element => {'own': 1.0, 'my': 1.0, 'to': 1.0, 'were': 1.0, 'me': 1.0, 'and': 2.0, 'waste': 1.0, 'everywhere': 1.0, 'given': 1.0, 'brush': 1.0, 'wide': 1.0, 'as': 1.0, 'it': 1.0, 'this': 1.0, 'money': 1.0, 'perhaps': 1.0, 'true': 1.0, 'didn': 1.0, 'bottle': 1.0, 'i': 2.0, 't': 1.0, 'these': 1.0, 'the': 2.0, 'should': 1.0, 'thank': 1.0, 'they': 1.0, 'read': 1.0, 'gets': 1.0, 'sprayed': 1.0, 'advertise': 1.0, 'because': 1.0, 'goodness': 1.0, 'everything': 1.0, 'in': 1.0, 'gross': 1.0, 'reviews': 1.0, 'mouth': 1.0, 'water': 1.0, 'is': 2.0, 'absolutely': 1.0}
Word element => {'do': 1.0, 'need': 1.0, 'what': 1.0, 'does': 1.0, 'i': 3.0, 'soft': 1.0, 'as': 2.0, 'like': 1.0, 'not': 1.0, 'would': 1.0, 'but': 2.0, 'than': 1.0, 'them': 1.0, 'a': 1.0, 'flexible': 1.0, 'bristles': 1.0, 'are': 1.0, 'the': 1.0, 'to': 2.0, 'be': 1.0, 'it': 3.0, 'tiny': 1.0, 's': 1.0, 'also': 1.0, 'expected': 1.0, 'bit': 1.0, 'shorter': 1.0}
Word element => {'broke': 1.0, 'already': 1.0, 'choice': 1.0, 'very': 1.0, 'though': 2.0, 'but': 1.0, 'use': 2.0, 'sturdy': 2.0, 'then': 1.0, 'got': 1.0, 'still': 2.0, 'brush': 3.0, 'for': 1.0, 'my': 2.0, 'is': 3.0, 'really': 1.0, 'which': 1.0, 'wouldnt': 1.0, 'i': 3.0, 'when': 1.0, 'mom': 1.0, 'the': 10.0, 'great': 3.0, 'larger': 1.0, 'one': 1.0, 'bought': 1.0, 'and': 3.0, 'this': 1.0, 'looked': 1.0, 'first': 1.0, 'worked': 1.0, 'it': 5.0, 'month': 1.0, 'scrunched': 1.0, 'maybe': 1.0, 'bristles': 1.0, 'up': 1.0, 'bottom': 1.0, 'of': 2.0, 'clean': 2.0, 'white': 1.0, 'corners': 1.0, 'at': 1.0, 'bottles': 2.0, 'tops': 1.0, 'leaving': 1.0, 'residue': 1.0, 'smaller': 1.0, 'so': 1.0, 'bout': 1.0, 'a': 2.0, 'new': 2.0, 'to': 1.0}
Word element => {'solution': 1.0, 'back': 1.0, 'star': 1.0, 'cleaning': 1.0, 'did': 1.0, 'use': 1.0, 'longer': 1.0, 'why': 1.0, 'recovered': 1.0, 'fully': 1.0, 'still': 1.0, 'was': 1.0, 'night': 1.0, 'well': 1.0, 'half': 1.0, 'holding': 1.0, 'couldn': 1.0, 'that': 2.0, 'no': 1.0, 'badly': 1.0, 'really': 1.0, 'jammed': 1.0, 'thumb': 2.0, 'of': 2.0, 'up': 2.0, 'more': 1.0, 'is': 1.0, 'breastpump': 1.0, 'so': 1.0, 'bottle': 3.0, 'against': 1.0, 'time': 1.0, 'slim': 1.0, 'the': 6.0, 'ago': 1.0, 'a': 2.0, 't': 3.0, 'get': 1.0, 'and': 3.0, 'how': 1.0, 'figure': 1.0, 'breastmilk': 1.0, 'i': 10.0, 'soak': 1.0, 'out': 1.0, 'my': 5.0, 'fits': 1.0, 'trying': 1.0, '1': 1.0, 'finger': 2.0, 'feel': 1.0, 'bought': 1.0, 'this': 2.0, 'first': 1.0, 'month': 1.0, 'milky': 1.0, 'it': 5.0, 'bottles': 2.0, 'hasn': 1.0, 'brush': 2.0, 'maybe': 1.0, 'find': 1.0, 'than': 1.0, 'ice': 1.0, 'because': 1.0, 'm': 2.0, 'free': 1.0, 'banged': 1.0, 'which': 1.0, 'like': 1.0, 'sleep': 1.0, 'to': 4.0, 'finally': 1.0, 'smell': 1.0, 'at': 1.0, 'on': 2.0, 'constantly': 1.0, 'think': 1.0, 'sort': 1.0, 'got': 1.0, 'didn': 1.0, 'even': 1.0, 'set': 1.0, 'used': 1.0, 'fit': 1.0, 'in': 2.0, 'market': 1.0, '5': 1.0, 'medela': 1.0, 'work': 1.0, 'but': 2.0, 'new': 1.0, 'something': 1.0, 'would': 1.0, 'oz': 1.0, 'each': 1.0}
Word element => {'t': 1.0, 'can': 1.0, 'reach': 1.0, 'your': 1.0, 'cups': 1.0, 'bottom': 1.0, 'nice': 1.0, 'brush': 1.0, 'size': 1.0, 'physical': 1.0, 'easy': 2.0, 'to': 3.0, 'store': 1.0, 'that': 1.0, 'comfortable': 1.0, 'of': 1.0, 'grab': 1.0, 'the': 3.0, 'in': 1.0, 'hands': 1.0, 'hand': 1.0}
Word element => {'suction': 1.0, 'sink': 1.0, 'it': 1.0, 'great': 1.0, 'bought': 1.0, 'spot': 1.0, 'in': 1.0, 'for': 3.0, 'glasses': 1.0, 'stay': 1.0, 'cup': 1.0, 'cleaning': 2.0, 'beer': 1.0, 'one': 2.0, 'i': 1.0, 'my': 1.0, 'the': 2.0, 'makes': 1.0, 'bathroom': 1.0}
Word element => {'months': 1.0, 'unused': 1.0, 'sitting': 1.0, 'and': 1.0, 'as': 2.0, 'like': 1.0, 'work': 1.0, 'doesn': 1.0, 'for': 2.0, 'brush': 1.0, 'bottles': 1.0, 'been': 1.0, 'bottle': 1.0, 'didn': 1.0, 'we': 1.0, 'brushes': 1.0, 'well': 1.0, 'soap': 1.0, 's': 2.0, 't': 2.0, 'the': 4.0, 'it': 4.0, 'this': 1.0, 'with': 1.0, 'adhere': 1.0, 'sponge': 1.0, 'top': 1.0, 'difficult': 2.0, 'into': 1.0, 'to': 3.0, 'insert': 1.0}
Word element => {'stand': 1.0, 'cleaner': 1.0, 'get': 2.0, 'week': 1.0, 'house': 1.0, 'but': 1.0, 'were': 1.0, 'munchkin': 2.0, 'brush': 6.0, 'purchased': 1.0, 'a': 1.0, 'could': 1.0, 'we': 2.0, 'have': 1.0, 'i': 1.0, 'for': 2.0, 'oxo': 3.0, 'bottle': 2.0, 'her': 2.0, 'home': 2.0, 'effectively': 1.0, 'bottles': 1.0, 'orange': 1.0, 'the': 9.0, 'nipple': 2.0, 'more': 1.0, 'my': 2.0, 'crevices': 1.0, 'visiting': 1.0, 'tot': 1.0, 'at': 1.0, 'mom': 1.0, 'and': 3.0, 'tough': 1.0, 'me': 1.0, 'not': 1.0, 'wait': 1.0, 'thus': 1.0, 'to': 3.0, 'own': 1.0, 'bristles': 2.0, 'are': 1.0, 'on': 2.0, 'allowed': 1.0, 'softer': 1.0, 'into': 1.0, 'of': 1.0, 'cleaning': 1.0, 'nipples': 1.0, 'with': 1.0}
Word element => {'sink': 1.0, 'by': 1.0, 'stand': 1.0, 'just': 1.0, 'areas': 1.0, 'suction': 1.0, 'to': 1.0, 'those': 1.0, 'like': 1.0, 'in': 1.0, 'deep': 1.0, 'bottles': 1.0, 'so': 1.0, 'for': 1.0, 'brush': 1.0, 'love': 1.0, 'hard': 1.0, 'this': 1.0, 'it': 1.0, 'can': 1.0, 'the': 2.0, 'reach': 1.0, 'and': 2.0, 'sons': 1.0, 'really': 1.0, 'my': 1.0, 'cup': 1.0}
Word element => {'price': 1.0, 'every': 1.0, 'worth': 1.0, 'clean': 1.0, 'stays': 2.0, 'and': 3.0, 'upright': 1.0, 'funky': 1.0, 'product': 1.0, 'doesnt': 1.0, 'get': 1.0, 'penny': 1.0, 'bottles': 1.0, 'great': 1.0, 'it': 1.0, 'cleans': 1.0, 'perfectly': 1.0}
Word element => {'parts': 1.0, 'pump': 1.0, 'm': 1.0, 'i': 1.0, 'brushed': 1.0, 'bottles': 1.0, 'still': 1.0, 'result': 1.0, 'as': 1.0, 'flat': 1.0, 'pictures': 1.0, 'breast': 1.0, 'nonetheless': 1.0, 'on': 1.0, 'uses': 1.0, 'can': 1.0, 'maybe': 1.0, 'after': 1.0, 'at': 1.0, 'but': 1.0, 'instead': 1.0, 'it': 1.0, 'this': 1.0, 'first': 1.0, 'works': 1.0, 'for': 1.0, 'using': 1.0, 'brush': 1.0, '20': 1.0, 't': 1.0, 'great': 1.0, 'the': 4.0, 'head': 1.0, 'flatten': 1.0, 'top': 1.0, 'cleaning': 1.0, 'out': 1.0, 'a': 2.0, 'see': 1.0, 'bristles': 1.0, 'bottom': 1.0, 'of': 2.0, 'nice': 1.0, 'spherical': 1.0, 'get': 2.0, 'shape': 1.0, 'you': 2.0}
Word element => {'again': 1.0, 'because': 1.0, 'clean': 1.0, 'trying': 1.0, 'also': 1.0, 'useless': 1.0, 'is': 1.0, 'when': 1.0, 'bottle': 2.0, 'bristles': 2.0, 'the': 2.0, 'are': 2.0, 'stiff': 2.0, 'to': 2.0, 'fit': 1.0, 'pump': 1.0, 'too': 2.0, 'into': 1.0, 'parts': 1.0, 'any': 1.0, 'it': 1.0}
Word element => {'dishwasher': 1.0, 'in': 1.0, 'that': 1.0, 'also': 1.0, 'not': 1.0, 'do': 1.0, 'and': 2.0, 'gets': 1.0, 'by': 1.0, 'really': 1.0, 'it': 3.0, 'this': 2.0, 'far': 1.0, 'clean': 1.0, 'can': 1.0, 'most': 1.0, 'use': 1.0, 'i': 1.0, 'the': 7.0, 'nipple': 1.0, 'sits': 1.0, 'you': 1.0, 'easily': 1.0, 'like': 1.0, 'whole': 1.0, 'several': 2.0, 'brushes': 2.0, 'other': 1.0, 'have': 2.0, 'wide': 1.0, 'bottle': 3.0, 'one': 1.0, 'love': 3.0, 'brush': 2.0, 'enough': 1.0, 'is': 2.0, 'around': 1.0, 'tried': 1.0, 'bristles': 1.0, 'to': 3.0, 'well': 1.0, 'very': 1.0, 'get': 1.0, 'easy': 1.0, 'suction': 1.0, 'great': 1.0, 'nice': 1.0, 'put': 1.0, 'on': 2.0, 'bottom': 1.0, 'cup': 1.0, 'let': 1.0, 'drain': 1.0, 'sink': 1.0}
Word element => {'would': 1.0, 'brushes': 1.0, 'bottle': 1.0, 'buy': 1.0, 'i': 4.0, 'of': 1.0, 'really': 1.0, 'again': 1.0, 'keeps': 1.0, 'like': 1.0, 's': 2.0, 'this': 2.0, 'it': 4.0, 'one': 1.0, 'brush': 2.0, 'love': 1.0, 'own': 1.0, 'better': 1.0, 'traditional': 1.0, 'the': 2.0, 'ones': 1.0, 've': 1.0, 'how': 1.0, 'stands': 1.0, 'than': 1.0, 'on': 1.0, 'used': 1.0, 'cleaner': 1.0}
Word element => {'did': 1.0, 'glad': 1.0, 'you': 2.0, 'around': 1.0, 'look': 1.0, 'cleaning': 1.0, 'long': 1.0, 'as': 2.0, 'too': 1.0, 'but': 1.0, 'good': 1.0, 'glass': 1.0, 'be': 1.0, 'short': 2.0, 'might': 1.0, 'bottles': 1.0, 'is': 2.0, 'the': 2.0, 'more': 1.0, 'bottle': 1.0, 'are': 2.0, 'bristles': 1.0, 'a': 1.0, 'handle': 1.0, 'brush': 2.0, 'for': 1.0, 'which': 1.0, 'your': 1.0, 'makes': 1.0, 'this': 1.0, 'it': 1.0, 'of': 2.0, '34': 2.0, 'glasses': 1.0, 'that': 1.0}
Word element => {'daily': 1.0, 'while': 1.0, 'off': 1.0, 'multiple': 1.0, 'be': 1.0, 'but': 1.0, 'can': 1.0, 'before': 1.0, 'scrub': 1.0, 'and': 4.0, 'twist': 1.0, 'down': 1.0, 'longer': 1.0, 'comes': 1.0, 'is': 1.0, 'a': 4.0, 'if': 1.0, 'better': 1.0, 'would': 2.0, 'end': 3.0, 'some': 1.0, 'sturdier': 1.0, 'one': 1.0, 'brush': 6.0, 'for': 1.0, 'back': 1.0, 'handle': 1.0, 'i': 9.0, 'taller': 1.0, 'were': 1.0, 'annoying': 1.0, 'it': 4.0, 'to': 3.0, 'as': 2.0, 'like': 3.0, 'bottle': 1.0, 'bit': 1.0, 'other': 1.0, 'have': 2.0, 'whole': 1.0, 'several': 1.0, 'use': 2.0, 'than': 2.0, 'lost': 1.0, 'release': 1.0, 'this': 2.0, 'wish': 1.0, 'cleaning': 3.0, 'baby': 2.0, 'brushes': 1.0, 'goat': 1.0, 'tends': 1.0, 'motion': 1.0, 'bottles': 3.0, 'they': 1.0, 'are': 1.0, 'also': 2.0, 'in': 3.0, 'the': 8.0, 'nipple': 2.0, 'little': 2.0, 'included': 1.0, 'of': 1.0, 'stay': 1.0, 'think': 1.0, 'put': 1.0, 'times': 1.0, 'you': 1.0, 'when': 2.0, 'forth': 1.0, 'need': 1.0}
Word element => {'right': 1.0, 'priced': 1.0, 'good': 1.0, 's': 1.0, 'forever': 1.0, 'lasts': 1.0, 'but': 1.0, 'bottles': 1.0, 'baby': 1.0, 'like': 1.0, 'and': 2.0, 'brush': 1.0, 'for': 1.0, 'most': 1.0, 'just': 1.0, 'because': 1.0, 'not': 1.0, 'is': 2.0, 'a': 1.0, 'convenient': 1.0, 'jugs': 1.0, 'bottle': 1.0, 'buy': 1.0, 'i': 1.0, 'than': 1.0, 'water': 1.0, 'etc': 1.0, 'brand': 1.0, 'only': 1.0, 'this': 2.0, 'it': 2.0, 'sturdier': 1.0}
Word element => {'purpose': 1.0, 'that': 1.0, 'works': 1.0, 'don': 1.0, 'a': 1.0, 'baby': 1.0, 'bought': 1.0, 'i': 2.0, 'well': 1.0, 'cups': 1.0, 'just': 1.0, 't': 1.0, 'have': 1.0, 'this': 1.0, 'for': 2.0}
Word element => {'those': 1.0, 'not': 1.0, 'its': 1.0, 'is': 1.0, 'with': 1.0, 'flimsy': 1.0, 'can': 2.0, 'one': 1.0, 'brush': 3.0, 'love': 1.0, 'fact': 1.0, 'nipples': 1.0, 'that': 1.0, 'nipple': 2.0, 'the': 6.0, 'made': 1.0, 'clean': 2.0, 'i': 2.0, 'bottle': 2.0, 'also': 1.0, 'well': 2.0, 'into': 1.0, 'pump': 1.0, 'brushes': 1.0, 'my': 1.0, 'crevices': 1.0, 'of': 2.0, 'breast': 1.0, 'get': 1.0, 'and': 1.0, 'as': 1.0}
Word element => {'rough': 1.0, 'no': 1.0, '1': 2.0, 'too': 2.0, 'off': 1.0, 'sponge': 1.0, 'suction': 1.0, 'sturdy2': 1.0, 'for': 2.0, 'it': 1.0, 'germ': 1.0, 'collectioncons': 1.0, 'large': 1.0, 'keeps': 1.0, 'dr': 1.0, 'standard': 1.0, 'browns': 1.0, 'pros': 1.0, 'is': 1.0, 'bottles2': 1.0, 'counter3': 1.0, 'the': 2.0, 'nipple': 1.0, 'attachment': 1.0}
Word element => {'water': 1.0, 'when': 1.0, 'your': 1.0, 'pull': 1.0, 'crevices': 1.0, 'of': 2.0, 'most': 1.0, 'and': 3.0, 'get': 3.0, 'can': 2.0, 'so': 1.0, 'bottles': 2.0, 'flanges': 1.0, 'stiff': 1.0, 'out': 1.0, 'cleaning': 1.0, 'with': 1.0, 'hard': 1.0, 'it': 4.0, 'this': 1.0, 'on': 1.0, 'unworkable': 1.0, 'shove': 1.0, 'pieces': 1.0, 'colored': 1.0, 't': 1.0, 'the': 5.0, 'although': 1.0, 'parts': 1.0, 'that': 1.0, 'pumping': 2.0, 'are': 1.0, 'bristles': 1.0, 'soap': 1.0, 'you': 4.0, 's': 1.0, 'splattered': 1.0, 'brush': 1.0, 'for': 1.0, 'medela': 2.0, 'into': 2.0, 'or': 2.0, 'even': 1.0}
Word element => {'plus': 1.0, 'definite': 1.0, 'to': 1.0, 'sticks': 1.0, 'kids': 1.0, 'have': 1.0, 'the': 1.0, 't': 1.0, 'and': 1.0, 'any': 1.0, 'don': 1.0, 'a': 2.0, 'absolutely': 1.0, 'counter': 1.0, 'this': 1.0, 'it': 4.0, 'i': 4.0, 'bottle': 1.0, 'never': 1.0, 'use': 2.0, 'but': 1.0, 'brush': 1.0, 'love': 1.0, 'for': 2.0, 'awesome': 1.0, 'so': 1.0, 'everything': 1.0, 'else': 1.0, 'is': 1.0}
Word element => {'dad': 1.0, 'mom': 1.0, 'drinking': 1.0, 'nice': 1.0, 'them': 1.0, 'went': 1.0, 'these': 1.0, 'than': 1.0, 'through': 2.0, 'thing': 1.0, 'the': 3.0, 'clean': 1.0, 'supply': 1.0, 'you': 3.0, 'when': 1.0, 'causing': 1.0, 'at': 1.0, 'spray': 1.0, 'get': 1.0, 'll': 1.0, 'loosen': 1.0, 'to': 4.0, 'first': 2.0, 'this': 1.0, 'it': 1.0, 'more': 1.0, 'is': 2.0, 'want': 1.0, 'new': 1.0, 'we': 1.0, 'go': 1.0, 'a': 1.0, 'bristles': 1.0, 'stiff': 1.0, 'water': 1.0, 'pull': 1.0, 'bottles': 1.0, 'or': 1.0, 'cup': 1.0, 'end': 1.0, 'must': 1.0, 'have': 1.0, 'probably': 1.0, 'bad': 1.0, 'for': 2.0, 'parents': 1.0, 'brush': 1.0, 'one': 2.0, 'out': 2.0, 'of': 3.0, 'child': 1.0, 'up': 2.0, 'set': 1.0, '2': 1.0, 'can': 2.0, 'but': 1.0, 'also': 1.0, 'will': 1.0, 'dry': 1.0, 'use': 1.0, 'with': 3.0, 'definitley': 1.0, 'be': 1.0, 'suction': 1.0, '3': 1.0, 'on': 1.0, 'bottle': 1.0, 'time': 1.0, 'so': 1.0}
Word element => {'purchase': 1.0, 'they': 1.0, 'hit': 1.0, 'products': 1.0, 'these': 1.0, 'tests': 1.0, 'even': 1.0, 'shelves': 1.0, 'no': 1.0, 'amazing': 1.0, 'pulling': 1.0, 'hard': 1.0, 'from': 1.0, 'flying': 1.0, 'goes': 1.0, 'arm': 1.0, 'else': 1.0, 'something': 1.0, 'over': 1.0, 'that': 2.0, 'me': 1.0, 'not': 2.0, 'should': 1.0, 'still': 1.0, 'because': 1.0, 'than': 1.0, 'bottles': 1.0, 'out': 2.0, 'factory': 1.0, 'of': 4.0, 'weeks': 1.0, 'most': 1.0, 'but': 3.0, 'lot': 1.0, 'at': 2.0, 'do': 1.0, 'only': 1.0, 'it': 6.0, 'this': 2.0, 'knock': 1.0, 'with': 1.0, 'oxo': 2.0, 'for': 1.0, 'using': 1.0, 'brush': 4.0, 'exact': 1.0, 'ones': 1.0, 'glass': 1.0, 'liked': 1.0, 'one': 2.0, 'bought': 2.0, 'after': 1.0, 'smaller': 1.0, 'bit': 1.0, 'bottle': 2.0, 'so': 3.0, 'life': 1.0, 'just': 2.0, 'stand': 3.0, 'target': 2.0, 'is': 2.0, 'use': 1.0, 'amazon': 1.0, 'replace': 1.0, 'great': 1.0, 'same': 1.0, 'your': 1.0, 'on': 1.0, 'when': 1.0, 'you': 3.0, 'happened': 1.0, 'a': 2.0, 's': 1.0, 'way': 1.0, 'the': 13.0, 'website': 1.0, 'purchased': 1.0, 'had': 1.0, 'to': 5.0, 'before': 2.0, 'needed': 1.0, 'have': 3.0, 'spotted': 1.0, 'i': 7.0, 'two': 1.0, 'thinking': 1.0, 'pull': 2.0, 'stiff': 2.0, 'be': 1.0, 'force': 2.0, 'suction': 1.0, 'bristles': 1.0, 'are': 2.0, 'heads': 1.0, 'and': 1.0, 'too': 1.0}
Word element => {'nipples': 1.0, 'soft': 1.0, 'gentle': 1.0, 'quite': 1.0, 'not': 1.0, 'bottom': 1.0, 'cleaner': 1.0, 'nipple': 1.0, 'like': 1.0, 'still': 1.0, 'better': 1.0, 'tops': 1.0, 'apply': 1.0, 'parts': 1.0, 'stiffer': 1.0, 'but': 2.0, 'multiply': 1.0, 'money': 1.0, 'opening': 1.0, 'to': 5.0, 'other': 1.0, 'all': 2.0, 'medela': 1.0, 'mouth': 1.0, 'sized': 1.0, 'can': 2.0, 'spaces': 1.0, 'enough': 2.0, 'fit': 2.0, 'for': 3.0, 'big': 1.0, 'into': 1.0, 'silicone': 1.0, 'everywhere': 1.0, 'because': 1.0, 'that': 1.0, 'almost': 1.0, 'pump': 2.0, 'large': 1.0, 'just': 1.0, 'barely': 1.0, 'too': 3.0, 'and': 6.0, 'makes': 1.0, 'sponge': 2.0, 'stiff': 1.0, 'bottles': 1.0, 'pull': 1.0, 'at': 2.0, 'is': 3.0, 'width': 1.0, 'using': 1.0, 'brush': 4.0, 'of': 4.0, 'the': 13.0, 'force': 1.0, 'be': 2.0, 'however': 1.0, 'found': 1.0, 'bottle': 5.0, 'this': 4.0, 'i': 7.0, 'mess': 1.0, 'feel': 1.0, 'any': 1.0, 'probably': 1.0, 'normal': 1.0, 'push': 1.0, 'than': 1.0, 'bristles': 3.0, 'nooks': 1.0, 'it': 6.0, 'hard': 1.0, 'clean': 2.0, 'good': 1.0, 'much': 1.0, 'in': 3.0, 'soap': 1.0, 'waste': 1.0, 'sprays': 1.0, 'making': 1.0, 'back': 1.0, 'top': 1.0, 'out': 2.0, 'update': 1.0, 'when': 2.0, 'what': 1.0, 'had': 1.0, 'tiny': 1.0, 'a': 5.0, 'also': 1.0, 'expected': 1.0, 'impossible': 1.0, 'nice': 1.0, 'little': 1.0, 'are': 2.0, 'first': 1.0, 'crannies': 1.0, 'hoped': 1.0, 'alternative': 1.0, 'environment': 1.0, 'germs': 1.0, 'water': 1.0, 'up': 1.0, 'was': 1.0, 'turns': 1.0, 'after': 1.0, 'several': 1.0, 'would': 1.0, 'weeks': 1.0, 'my': 2.0, 'softened': 1.0, 'through': 1.0}
Word element => {'is': 1.0, 'target': 1.0, 'sometimes': 1.0, 'though': 1.0, 'awesome': 1.0, 'ever': 1.0, 've': 1.0, 'every': 1.0, 'fits': 1.0, 'head': 1.0, 'thorough': 1.0, 'big': 1.0, 'feel': 1.0, 'i': 1.0, 'seems': 2.0, 'size': 1.0, 'brush': 2.0, 'sippy': 1.0, 'cup': 1.0, 'or': 1.0, 'pump': 1.0, 'sprays': 1.0, 'you': 1.0, 'when': 1.0, 'yes': 2.0, 'it': 5.0, 'first': 1.0, 'love': 1.0, 'for': 1.0, 'was': 1.0, 'its': 3.0, 'cheaper': 1.0, 'child': 1.0, 'out': 1.0, 'clean': 1.0, 'small': 1.0, 'have': 1.0, 'to': 1.0, 'our': 1.0, 'sink': 1.0, 'these': 1.0, 'the': 3.0, 'been': 1.0, '5': 1.0, 'brushes': 1.0, 'pull': 1.0, 'years': 1.0, 'and': 2.0, 'since': 1.0, 'we': 3.0, 'a': 1.0, 'born': 1.0, 'nozzle': 1.0, 'but': 3.0, 'bottle': 1.0, 'valves': 1.0, 'smaller': 1.0, 'so': 1.0, 'what': 1.0, 'parts': 1.0, 'pieces': 1.0, 'low': 1.0, 'down': 1.0, 'large': 1.0, 'just': 1.0, 'like': 2.0, 'using': 1.0, 'hold': 1.0, 'in': 3.0, 'no': 1.0, 'tried': 1.0, 'problem': 1.0, 'own': 1.0, 'stands': 1.0, '3': 1.0, 'on': 1.0, 'has': 1.0}
Word element => {'gifts': 1.0, 'baby': 1.0, 'have': 1.0, 'also': 1.0, 'them': 2.0, 'love': 1.0, 'i': 1.0, 've': 1.0, 'these': 1.0, 'with': 1.0, 'given': 1.0, 'kids': 1.0, 'had': 1.0, 'all': 1.0, '3': 1.0, 'of': 1.0, 'shower': 1.0, 'my': 1.0, 'as': 1.0, 'and': 1.0}
Word element => {'gentle': 1.0, 'something': 1.0, 'ordering': 1.0, 'either': 1.0, 'suggest': 1.0, 'd': 1.0, 'separately': 1.0, 'about': 1.0, 'concerned': 1.0, 'you': 1.0, 'if': 1.0, 'but': 1.0, 'just': 1.0, 're': 1.0, 'enough': 1.0, 'strong': 1.0, 'isn': 1.0, 'shipping': 3.0, 'bad': 1.0, 'nothing': 1.0, 'slightly': 1.0, 'got': 1.0, 'second': 1.0, 'around': 1.0, 'is': 1.0, 'for': 2.0, 'brush': 4.0, 'great': 1.0, 'the': 9.0, 'nipple': 1.0, 'this': 3.0, 'do': 1.0, 'works': 2.0, 'only': 1.0, 'with': 3.0, 'one': 1.0, 'bought': 1.0, 'too': 1.0, 'and': 3.0, 'i': 3.0, 'clean': 1.0, 'wasn': 1.0, 'out': 2.0, 'cleaning': 1.0, 'my': 4.0, 'it': 6.0, 'camelback': 2.0, 'bent': 2.0, 'was': 1.0, 'then': 1.0, 'mugs': 1.0, 'coffee': 1.0, 'or': 1.0, 'crushed': 1.0, 'bottles': 1.0, 'travel': 1.0, 'use': 1.0, 'water': 1.0, 'well': 2.0, 't': 2.0, 'a': 2.0, 'bite': 1.0, 'valve': 1.0, 'they': 1.0, 'packaging': 1.0, 'of': 1.0, 'to': 4.0, 'as': 1.0, 'complaint': 1.0, 'ordered': 1.0, 'other': 1.0, 'bristles': 2.0, 'things': 1.0, 'threw': 1.0, 'in': 3.0, 'larger': 1.0, 'that': 1.0, 'next': 1.0, 'box': 1.0, 'so': 1.0}
Word element => {'a': 1.0, 'be': 1.0, 'stated': 1.0, 'it': 1.0, 'this': 1.0, 'loved': 1.0, 'we': 1.0, 'mouthed': 2.0, 'reviewer': 1.0, 'brush': 1.0, 'might': 1.0, 'bottles': 1.0, 'bottle': 1.0, 'problem': 1.0, 'did': 1.0, 'if': 1.0, 'so': 1.0, 'however': 1.0, 'avent': 1.0, 'my': 1.0, 'smaller': 1.0, 'you': 1.0, 'wife': 1.0, 'have': 2.0, 'wider': 1.0, 'the': 3.0, 'ones': 1.0, 'as': 1.0, 'previous': 1.0}
Word element => {'issues': 1.0, 'nipples': 1.0, 'bottle': 1.0, 'use': 1.0, 'i': 1.0, 'bristles': 1.0, 'that': 1.0, 'is': 1.0, 'have': 2.0, 'bottles': 1.0, 'you': 2.0, 'nipple': 2.0, 'the': 6.0, 'metal': 1.0, 'clean': 1.0, 'exposed': 1.0, 'cleaning': 1.0, 'brush': 2.0, 'for': 1.0, 'perfect': 1.0, 'to': 2.0, 'be': 1.0, 'through': 1.0, 'careful': 1.0, 'this': 1.0, 'with': 2.0, 'it': 2.0, 'zero': 1.0, 'can': 1.0, 'holds': 1.0, 'or': 1.0, 'easily': 1.0, 'and': 1.0, 'do': 1.0, 'poke': 1.0, 'since': 1.0}
Word element => {'i': 1.0, 'take': 1.0, 'once': 1.0, 'place': 1.0, 'over': 1.0, 'have': 1.0, 'all': 1.0, 'color': 1.0, 'flies': 1.0, 'you': 1.0, 'soap': 1.0, 'from': 1.0, 'bottles': 3.0, 'bigger': 1.0, 'example': 1.0, 'out': 1.0, 'clean': 1.0, 'chance': 1.0, 'brush': 2.0, 'for': 2.0, 'enough': 1.0, 'bottom': 1.0, 'of': 4.0, 'length': 1.0, 'foam': 1.0, 'nuk': 1.0, 'not': 2.0, 'is': 2.0, 'the': 8.0, 'mam': 1.0, 'choosing': 1.0, 'hard': 1.0, 'it': 3.0, 'also': 2.0, 'to': 2.0, 'and': 1.0, 'reach': 1.0, 'did': 1.0, 'properly': 1.0}
Word element => {'no': 1.0, 'there': 1.0, 'plastic': 1.0, 'they': 1.0, 'why': 1.0, 'end': 1.0, 'with': 2.0, 'better': 1.0, 'narrow': 1.0, 'when': 1.0, 'over': 1.0, 'spray': 1.0, 'at': 1.0, 'buy': 1.0, 'looking': 1.0, 'than': 1.0, 'mouth': 1.0, 'does': 1.0, 'because': 1.0, 'just': 1.0, 'second': 1.0, 'is': 3.0, 'it': 4.0, 'durable': 1.0, 'but': 2.0, 'sick': 1.0, 'love': 1.0, 'brush': 4.0, 'cant': 1.0, 'one': 1.0, 'avent': 1.0, 'my': 1.0, 'cup': 1.0, 'deal': 1.0, 'the': 13.0, 'nipple': 2.0, 'this': 1.0, 'grip': 1.0, 'in': 1.0, 'softer': 1.0, 'got': 1.0, 'use': 1.0, 'and': 2.0, 'sponge': 1.0, 'of': 2.0, 'rust': 2.0, 'make': 1.0, 'on': 2.0, 'like': 1.0, 'know': 1.0, 'rusted': 1.0, 'integrated': 1.0, 'tip': 1.0, 'same': 1.0, 'to': 2.0, 'all': 3.0, 'bottle': 1.0, 'time': 1.0, 'so': 2.0, 'cleaning': 1.0, 'agree': 1.0, 'i': 5.0, 'otherwise': 1.0, 'next': 1.0, 'that': 1.0, 'bristles': 2.0, 'a': 3.0, 'could': 1.0, 'suction': 1.0, 'be': 1.0, 'handle': 1.0, 'top': 1.0, 'mat': 1.0, 'down': 1.0}
Word element => {'size': 1.0, 'one': 1.0, 'softer': 1.0, 'thumb': 1.0, 'jamming': 1.0, 'up': 1.0, 'ended': 1.0, 'and': 2.0, 'soapy': 1.0, 'force': 1.0, 'with': 2.0, 'into': 1.0, 'jam': 1.0, 'drenched': 1.0, 'is': 1.0, 'cleaning': 1.0, 'm': 1.0, 'slipped': 1.0, 'wide': 2.0, 'better': 2.0, 'it': 3.0, 'grip': 1.0, 'this': 3.0, 'then': 1.0, 'use': 1.0, 'few': 1.0, 'by': 1.0, 'wet': 1.0, '2': 1.0, 'but': 1.0, 'work': 1.0, 'narrow': 1.0, 'hate': 1.0, 'works': 1.0, 'do': 2.0, 'fine': 1.0, 'spray': 1.0, 'for': 2.0, 'title': 1.0, 'done': 1.0, 'wanted': 1.0, 'a': 2.0, 'might': 1.0, 'maybe': 1.0, 'review': 1.0, 'openings': 2.0, 'out': 1.0, 'makes': 1.0, 'brush': 4.0, 'realized': 1.0, 'not': 2.0, 'all': 1.0, 'to': 2.0, 'as': 1.0, 'i': 8.0, 'have': 1.0, 'evenflo': 1.0, 'whole': 1.0, 'bottles': 1.0, 'or': 2.0, 'practically': 1.0, 'so': 2.0, 'time': 2.0, 'bottle': 3.0, 'like': 2.0, 'buy': 1.0, 'pulling': 1.0, 'fits': 1.0, 'avent': 2.0, 'my': 4.0, 'dr': 1.0, 'bristles': 3.0, 'are': 2.0, 'brown': 1.0, 'hard': 1.0, 'from': 1.0, 'while': 1.0, 'because1': 1.0, 'the': 6.0, 'when': 1.0, 'gets': 1.0, 'forearm': 2.0}
Word element => {'space': 1.0, 'ton': 1.0, 'of': 1.0, 'up': 1.0, 'take': 1.0, 'easy': 1.0, 'compact': 1.0, 'has': 1.0, 'to': 2.0, 'travel': 1.0, 'be': 1.0, 'while': 1.0, 'in': 1.0, 'lasts': 1.0, 'perfect': 1.0, 'nipple': 1.0, 'the': 3.0, 'bristles': 1.0, 'are': 1.0, 'is': 2.0, 'a': 4.0, 'well': 1.0, 'secured': 1.0, 'handle': 1.0, 'for': 1.0, 'brush': 1.0, 'love': 1.0, 'with': 1.0, 'this': 1.0, 'it': 3.0, 'right': 1.0, 'can': 1.0, 'sink': 1.0, 'that': 1.0, 'cleaner': 1.0, 'down': 1.0, 'does': 2.0, 'suctioned': 1.0, 'because': 1.0, 'not': 2.0, 'lay': 1.0, 'and': 3.0}
Word element => {'lock': 1.0, 'doesn': 2.0, 'you': 1.0, 'twist': 2.0, 'hard': 1.0, 'this': 1.0, 'with': 1.0, 'even': 1.0, 'clean': 2.0, 'put': 1.0, 'on': 1.0, 'back': 1.0, 'handle': 1.0, 'work': 1.0, '2': 1.0, '1': 3.0, 'there': 1.0, 'in': 3.0, 'fully': 1.0, 'difficult': 1.0, '8oz': 1.0, 'an': 1.0, 'wash': 1.0, 'not': 1.0, 'having': 1.0, 'because': 3.0, 'just': 1.0, 'try': 1.0, 'only': 1.0, 'do': 1.0, 'that': 1.0, 'if': 1.0, '10': 1.0, 'afer': 1.0, 'have': 1.0, 'left': 1.0, 'is': 4.0, 'i': 3.0, 'months': 1.0, 'decided': 1.0, 'bought': 1.0, 'short': 1.0, 'right': 1.0, 'order': 1.0, 'through': 1.0, 'once': 1.0, 'of': 4.0, 'these': 1.0, 'hands': 1.0, 'the': 8.0, 'nipple': 3.0, 'uses': 1.0, 'brushes': 1.0, 'makes': 1.0, 'metal': 1.0, 'brush': 5.0, 'them': 3.0, 'hold': 1.0, 'which': 1.0, 'using': 1.0, 'like': 1.0, 'at': 1.0, 't': 2.0, 'we': 1.0, 'go': 1.0, 'a': 4.0, 'wire': 1.0, 'rusts': 1.0, 'after': 1.0, 'smaller': 1.0, 'bottle': 2.0, 'so': 1.0, 'several': 1.0, 'about': 2.0, 'it': 3.0, 'month': 1.0, 'or': 1.0, 'lengh': 1.0, 'inches': 1.0, 'little': 2.0, 'and': 3.0, 'too': 1.0, 'all': 1.0, 'to': 6.0}
Word element => {'occasionally': 1.0, 'in': 1.0, 'it': 1.0, 'i': 1.0, 'water': 1.0, 'out': 1.0, 'and': 1.0, 'dish': 1.0, 'washing': 1.0, 'brush': 1.0, 'they': 1.0, 'the': 2.0, 'my': 2.0, 'are': 1.0, 'toss': 1.0, 'firm': 1.0, 'hands': 1.0, 'dishwasher': 1.0, 'of': 1.0, 'favorite': 1.0, 'keep': 1.0}
Word element => {'useless': 1.0, 'remove': 1.0, 'everywhere': 1.0, 'trying': 1.0, 'sprays': 1.0, 'soap': 1.0, 'throw': 1.0, 'all': 2.0, 'have': 1.0, 'we': 1.0, 'that': 1.0, 'plastics': 1.0, 'scratched': 1.0, 'and': 1.0, 'into': 2.0, 'when': 1.0, 'too': 2.0, 'bottles': 4.0, 'brush': 3.0, 'had': 1.0, 'to': 3.0, 'brown': 1.0, 'fit': 1.0, 'the': 4.0, 't': 1.0, 'from': 1.0, 'big': 1.0, 'is': 1.0, 'medela': 1.0, 'evenflo': 1.0, 'i': 1.0, 'don': 1.0, 'know': 1.0, 'which': 1.0, 'hard': 1.0, 'this': 1.0, 'it': 1.0, 'out': 1.0, 'them': 1.0, 'fits': 1.0, 'in': 1.0, 'also': 1.0, 'dr': 1.0, 'bristles': 1.0, 'are': 1.0}
Word element => {'other': 1.0, 'bottom': 1.0, 'at': 1.0, 'things': 1.0, 'some': 1.0, 'scrub': 1.0, 'cup': 1.0, 'stuck': 1.0, 'in': 1.0, 'than': 1.0, 'jamming': 1.0, 'am': 1.0, 'because': 1.0, 's': 1.0, 'flatten': 1.0, 'starting': 1.0, 'a': 2.0, 'does': 2.0, 'i': 3.0, 'bottles': 1.0, 'to': 4.0, 'have': 1.0, 'very': 1.0, 'bought': 1.0, 'this': 2.0, 'only': 1.0, 'it': 2.0, 'probably': 1.0, 'and': 2.0, 'issue': 1.0, 'cleaning': 1.0, 'clean': 1.0, 'good': 1.0, 'job': 2.0, 'great': 1.0, 'the': 4.0, 'bristles': 1.0, 'are': 2.0, 'is': 1.0, 'our': 1.0, 'that': 4.0, 'top': 1.0}
Word element => {'else': 1.0, 'something': 1.0, 'for': 1.0, 'looking': 1.0, 'it': 2.0, 'only': 1.0, 'this': 1.0, 'box': 1.0, 'then': 1.0, 'back': 2.0, 'on': 1.0, 'horrible': 1.0, 'away': 1.0, 'and': 3.0, 'when': 1.0, 'directions': 1.0, 'i': 3.0, 'tried': 1.0, 'managed': 1.0, 'a': 1.0, 'distorted': 1.0, '1': 1.0, 'install': 1.0, '2': 1.0, 'minutes': 1.0, 'after': 1.0, 'so': 1.0, '20': 1.0, 'flip': 1.0, 'to': 3.0, 'thing': 1.0, 'about': 1.0, 'out': 1.0, 'the': 6.0, 'sight': 1.0, 'still': 1.0, 'went': 1.0, 'my': 1.0, 'way': 1.0, 'of': 2.0, 'sticker': 1.0, 'view': 2.0, 'item': 1.0, 'also': 1.0, 'seems': 1.0, 'mirror': 1.0, 'throwing': 1.0, 'be': 2.0, 'blocked': 1.0, 'll': 1.0, 'is': 1.0, 'returning': 1.0}
Word element => {'helps': 1.0, 'place': 1.0, 'in': 1.0, 'but': 1.0, 'tight': 1.0, 's': 1.0, 'rearview': 1.0, 'vehicles': 1.0, 'your': 1.0, 'side': 1.0, 'of': 1.0, 'bottom': 1.0, 'onto': 1.0, 'and': 2.0, 'get': 1.0, 'works': 1.0, 'this': 1.0, 'only': 1.0, 'with': 1.0, 'it': 2.0, 'first': 1.0, 'mirrors': 1.0, 'on': 2.0, 'pain': 1.0, 'to': 1.0, 'was': 1.0, 'well': 2.0, 'a': 2.0, 'thicker': 1.0, 'the': 5.0, 'hook': 1.0, 'straps': 1.0, 'fit': 2.0, 'hope': 1.0, 'stays': 1.0, 'into': 1.0, 'mirror': 2.0, 'grooves': 1.0, 'safety': 1.0, 'hooks': 1.0}
Word element => {'and': 1.0, 'returning': 1.0, 'design': 1.0, 'this': 2.0, 'purchase': 1.0, 'fool': 1.0, 'they': 1.0, 'package': 1.0, 'on': 1.0, 'little': 1.0, 'bad': 1.0, 'nothing': 1.0, 'distorted': 1.0, 'an': 1.0, 'get': 1.0, 'would': 1.0, 'something': 1.0, 'if': 1.0, 'but': 1.0, 'money': 1.0, 'also': 2.0, 'who': 1.0, '1st': 1.0, 'know': 1.0, 'like': 1.0, 'which': 1.0, 'anyone': 1.0, 'trying': 1.0, 'suction': 1.0, 'had': 1.0, 'to': 3.0, 'extremely': 1.0, 'plastic': 1.0, 'mirrors': 2.0, 'bought': 1.0, 'i': 4.0, 'two': 1.0, 'am': 1.0, 'you': 2.0, 'replace': 1.0, 'these': 1.0, 'waste': 1.0, 'fold': 1.0, 'don': 1.0, 'up': 1.0, 're': 1.0, 't': 1.0, 's': 2.0, 'a': 4.0, 'wondering': 1.0, 'that': 1.0, 'installation': 1.0, 'so': 1.0, 'are': 2.0, 'called': 1.0, 'is': 2.0, 'rear': 1.0, 'recommend': 1.0, 'crazy': 1.0, 'it': 4.0, 'piece': 1.0, 'with': 2.0, 'velcro': 1.0, 'the': 6.0, 'basically': 1.0, 'does': 1.0, 'of': 3.0, 'sticker': 2.0, 'view': 2.0, 'picture': 1.0, 'safety': 1.0, 'even': 1.0, 'not': 3.0, 'mirror': 3.0, 'behind': 1.0, 'cup': 1.0, 'or': 2.0}
Word element => {'buy': 1.0, 'not': 1.0, 'on': 1.0, 'of': 1.0, 'piece': 1.0, 'blocked': 1.0, 'tell': 1.0, 'should': 2.0, 'horrible': 1.0, 'and': 3.0, 'how': 1.0, 'bother': 1.0, 'quality': 1.0, 'opened': 1.0, 'paper': 1.0, 'saw': 1.0, 'reading': 1.0, 'mirror': 2.0, 'reviews': 2.0, 'glad': 1.0, 'i': 4.0, 'the': 5.0, 'these': 1.0, 'by': 1.0, 'just': 1.0, 'didn': 1.0, 'even': 1.0, 'before': 1.0, 'to': 1.0, 'was': 1.0, 'husband': 1.0, 'trying': 1.0, 'install': 1.0, 'package': 1.0, 'after': 1.0, 'it': 2.0, 'decided': 1.0, 'is': 2.0, 't': 1.0, 's': 1.0, 'a': 2.0, 'terrible': 1.0, 'r': 1.0, 'this': 1.0, 'wish': 1.0, 'something': 1.0, 'would': 1.0, 'have': 1.0, 'babies': 1.0, 'when': 1.0, 'you': 2.0, 'seen': 1.0, 'purchased': 1.0, 'completed': 1.0, 'actually': 1.0, 'product': 1.0, 'for': 1.0, 'my': 2.0, 'why': 1.0, 'car': 1.0, 'at': 1.0, 'us': 1.0}
Word element => {'doesn': 1.0, 'product': 1.0, 'this': 1.0, 'work': 1.0, 'but': 1.0, 'if': 1.0, 'car': 1.0, 'getting': 1.0, 'and': 3.0, 'shape': 1.0, 'tried': 1.0, 'place': 1.0, 'the': 8.0, 'does': 1.0, 'see': 1.0, 'install': 1.0, 'don': 1.0, 'simply': 2.0, 't': 2.0, 'a': 1.0, 'we': 1.0, 'idea': 1.0, 'easily': 1.0, 'straps': 2.0, 'hook': 1.0, 'after': 1.0, 'frustrated': 1.0, 'hold': 2.0, 'would': 1.0, 'both': 1.0, 'mirror': 4.0, 'onto': 1.0, 'bought': 1.0, 'down': 1.0, 'll': 1.0, 'be': 1.0, 'just': 1.0, 'by': 1.0, 'in': 2.0, 'itself': 1.0, 'to': 1.0, 'all': 1.0, 'of': 1.0, 'is': 2.0, 'not': 1.0, 'wrong': 1.0, 'wife': 1.0, 'i': 2.0, 'two': 1.0, 'my': 2.0, 'neat': 1.0, 'returning': 1.0, 'them': 1.0, 'flip': 1.0}
Word element => {'really': 1.0, 'does': 1.0, 'his': 1.0, 'on': 1.0, 'month': 1.0, 'him': 1.0, '3': 1.0, 'away': 1.0, 'son': 1.0, 'young': 1.0, 'for': 2.0, 'come': 1.0, 'he': 2.0, 'it': 4.0, 'this': 1.0, 'loves': 1.0, 'bought': 1.0, 'to': 3.0, 'old': 1.0, 'i': 2.0, 'own': 1.0, 'watch': 1.0, 'roll': 1.0, 'back': 2.0, 'my': 1.0, 'push': 2.0, 'because': 1.0, 'you': 1.0, 's': 1.0, 'when': 1.0, 'too': 1.0}
Word element => {'implemented': 1.0, 'better': 1.0, 'just': 1.0, 'on': 1.0, 'bounced': 1.0, 'being': 1.0, 'despite': 1.0, 'of': 1.0, 'up': 1.0, 'probably': 1.0, 'away': 1.0, 'ball': 1.0, 'back': 1.0, 'will': 3.0, 'doesn': 1.0, 'sometimes': 1.0, 'rollback': 1.0, 'idea': 1.0, 'when': 1.0, 'less': 1.0, 'needs': 1.0, 'time': 1.0, 'this': 1.0, 'it': 8.0, 'picked': 1.0, 'durable': 1.0, 'slowly': 1.0, 'i': 1.0, 'baby': 2.0, 'claims': 1.0, 'that': 2.0, 'to': 2.0, 'our': 1.0, 'the': 3.0, 'expected': 1.0, 'toy': 1.0, '75': 1.0, 'is': 3.0, 'more': 1.0, 'holds': 1.0, 'roll': 1.0, 'occasionally': 1.0, 'than': 2.0, 'push': 1.0, 'rolled': 1.0, 'good': 1.0, 'her': 1.0, 'pushed': 1.0, 'attention': 1.0, 't': 1.0, 'a': 1.0, 'and': 1.0, 'play': 1.0, 'but': 2.0, 'can': 1.0, 'be': 2.0, 'would': 1.0, 'have': 1.0}
Word element => {'cut': 1.0, 'so': 1.0, 'big': 1.0, '3': 1.0, '10': 1.0, 'only': 1.0, 'well': 1.0, 'good': 1.0, 'very': 1.0, 'than': 1.0, 'one': 1.0, 'this': 1.0, 'amazon': 1.0, 'get': 2.0, 'and': 5.0, 'saw': 1.0, 'reason': 1.0, 'was': 4.0, 'anymore': 1.0, 'some': 1.0, 'firstly': 1.0, 'rush': 1.0, 'penny': 1.0, 'prior': 1.0, 'i': 7.0, 'not': 2.0, 'cheap': 1.0, 'for': 3.0, 'the': 5.0, 'could': 1.0, 'sassy': 3.0, 'pad': 4.0, 'really': 2.0, 'every': 2.0, 'as': 1.0, 'to': 5.0, 'all': 2.0, 'have': 1.0, 'born': 1.0, 'disposable': 1.0, '2': 1.0, 'change': 1.0, 'but': 3.0, 'solution': 1.0, 'they': 1.0, 'using': 1.0, 'which': 1.0, 'worth': 1.0, 'bigger': 1.0, 'at': 1.0, 'since': 1.0, 'neat': 1.0, 'my': 1.0, 'them': 1.0, 'baby': 1.0, 'changing': 4.0, 'that': 1.0, 'is': 4.0, 'plan': 1.0, 'till': 1.0, '36': 1.0, '99': 2.0, 'he': 1.0, '6': 1.0, 'it': 2.0, 'month': 1.0, 'defiate': 1.0}
Word element => {'either': 1.0, 'me': 1.0, 'fabric': 1.0, 'hard': 1.0, 'or': 1.0, 'pull': 1.0, 'didn': 1.0, 'tug': 1.0, 'making': 1.0, 'fitted': 1.0, '9': 1.0, '8': 1.0, 'months': 1.0, '2': 1.0, 'wear': 1.0, 'stars': 1.0, 'product': 1.0, 'if': 1.0, 'originally': 1.0, 'surprised': 2.0, 'don': 1.0, 'bed': 1.0, 'arrived': 1.0, 'be': 1.0, 'once': 1.0, 'doesn': 1.0, 'was': 4.0, 'wanted': 1.0, '08': 1.0, 'son': 1.0, 'washes': 2.0, 'sheet': 1.0, 'so': 3.0, 'have': 1.0, 'small': 3.0, 'however': 1.0, 'wasn': 1.0, 'update': 2.0, 'shocked': 1.0, 'because': 1.0, 'the': 5.0, 'great': 1.0, 'easily': 1.0, 'when': 1.0, 'you': 1.0, 'there': 1.0, 'rip': 1.0, '5': 1.0, 'opening': 1.0, 'tore': 1.0, 'item': 1.0, 'gave': 1.0, 'that': 2.0, 'box': 3.0, 'too': 1.0, 'and': 4.0, 'well': 2.0, 'ripped': 1.0, 'very': 1.0, 'about': 2.0, '06': 1.0, 'our': 1.0, 'all': 1.0, 'to': 1.0, 'as': 2.0, 'arrives': 1.0, 'purchase': 1.0, 'my': 1.0, 'it': 3.0, 'looks': 1.0, '3': 1.0, 'i': 5.0, 'prior': 1.0, 'comments': 1.0, 's': 1.0, 'bedding': 1.0, 't': 4.0, 'a': 2.0, 'we': 1.0, 'this': 4.0, 'found': 1.0}
Word element => {'product': 1.0, 'up': 1.0, 'my': 1.0, 'have': 2.0, 'great': 1.0, 'the': 2.0, 't': 1.0, 'for': 2.0, 'no': 1.0, 'absolutely': 1.0, 'this': 1.0, 'it': 1.0, 'him': 1.0, 'perfect': 1.0, 's': 1.0, 'don': 1.0, 'about': 1.0, 'i': 2.0, 'comforter': 1.0, 'worry': 1.0, 'little': 1.0, 'man': 1.0, 'to': 1.0, 'complaints': 1.0, 'size': 1.0, 'swallowing': 1.0}
Word element => {'cost': 1.0, 'additional': 1.0, 'straight': 1.0, 'delivered': 1.0, 'also': 1.0, 'dog': 1.0, 'at': 1.0, 'keep': 1.0, 'them': 1.0, 'easy': 1.0, 'sturdy': 1.0, 'very': 1.0, 'is': 1.0, 'fine': 1.0, 'just': 1.0, 'needs': 1.0, 'wider': 1.0, 'alternative': 1.0, 'an': 1.0, 'finding': 1.0, 'up': 1.0, 'ended': 1.0, 'loved': 1.0, 'took': 1.0, 'i': 7.0, 'no': 1.0, 'boxes': 1.0, 'whole': 1.0, 'be': 2.0, 'was': 3.0, 'out': 2.0, 'made': 1.0, 'looks': 1.0, 'it': 8.0, 'this': 1.0, 'with': 1.0, 'reviewers': 1.0, 'uncertain': 1.0, 'not': 2.0, 'install': 1.0, 'nice': 1.0, 'big': 1.0, '1': 1.0, 'only': 1.0, 'do': 1.0, 'of': 2.0, 'really': 1.0, 'door': 3.0, 'other': 1.0, 'on': 1.0, 'or': 1.0, 'latch': 1.0, 'gate': 2.0, 'the': 6.0, 'website': 1.0, 'like': 1.0, 'could': 2.0, 'our': 1.0, 'all': 1.0, 'to': 4.0, 'as': 2.0, 'buy': 1.0, 'ease': 1.0, 'day': 1.0, 'hassle': 1.0, 'use': 2.0, 'litter': 1.0, 'difficult': 1.0, 'still': 1.0, 'complaint': 1.0, 'love': 1.0, 'where': 1.0, 'fit': 2.0, 'another': 1.0, 'may': 1.0, 'bathroom': 1.0, 'my': 5.0, 'family': 1.0, 'fact': 2.0, 'that': 3.0, 'were': 1.0, 'needed': 1.0, 'dimensions': 1.0, 'did': 1.0, 'and': 6.0, 'too': 1.0}
Word element => {'would': 1.0, 'one': 2.0, 'fast': 1.0, 'really': 2.0, 'like': 1.0, 'reading': 1.0, 'was': 1.0, 'tripped': 1.0, 'minutes': 1.0, '7': 1.0, 'including': 1.0, 'about': 1.0, '39': 1.0, 'female': 1.0, 'fairly': 1.0, 'm': 1.0, 'i': 5.0, 'think': 1.0, 'time': 1.0, 'so': 1.0, 'and': 1.0, 'closed': 2.0, 'almost': 1.0, 'did': 1.0, 'yo': 1.0, '5': 1.0, 'another': 1.0, 'my': 1.0, 'still': 2.0, 'definitely': 1.0, 'close': 2.0, 'loudly': 1.0, 'if': 1.0, 'shut': 1.0, 'she': 3.0, 'it': 12.0, 'this': 2.0, 'loud': 2.0, 'the': 4.0, 'over': 1.0, 'don': 1.0, 'extension': 1.0, 'can': 3.0, '2': 1.0, 'but': 6.0, 'daughter': 2.0, 'have': 1.0, 'out': 3.0, 'review': 1.0, 'more': 1.0, 'is': 2.0, 'just': 1.0, 'learened': 1.0, 'cats': 2.0, 'not': 4.0, 'keep': 1.0, 'pretty': 1.0, 'what': 1.0, 'installed': 1.0, 'does': 1.0, 'need': 2.0, 'response': 1.0, 'needed': 2.0, 'get': 2.0, 'easy': 1.0, 'bright': 1.0, 'bedroom': 1.0, 'to': 4.0, 'our': 2.0, 'age': 1.0, 'in': 4.0, 'that': 3.0, 'case': 1.0, 'for': 2.0, 't': 1.0, 's': 3.0, 'we': 6.0, 'a': 2.0, 'later': 1.0, 'latch': 2.0, 'again': 1.0, 'you': 1.0, 'someone': 1.0, 'of': 1.0, 'once': 2.0, 'use': 2.0, 'instructions': 2.0, 'figure': 1.0, 'read': 1.0, 'very': 1.0, 'open': 2.0, 'especially': 1.0, 'else': 1.0, 'click': 1.0}
Word element => {'recommended': 1.0, 'medium': 1.0, 'pet': 1.0, 'great': 1.0, 'would': 1.0, 'to': 1.0, 'all': 1.0, 'get': 1.0, 'year': 1.0, 'my': 1.0, 'sore': 1.0, 'eye': 1.0, 'an': 1.0, 'good': 1.0, 'other': 1.0, 'secured': 1.0, 'ones': 1.0, 'also': 1.0, 'secure': 1.0, 'past': 1.0, 'most': 1.0, 'but': 2.0, 'it': 4.0, 'sized': 1.0, 'than': 1.0, 'far': 1.0, 'more': 1.0, 'is': 2.0, 'old': 1.0, 'type': 1.0, 'one': 4.0, 'this': 3.0, 'banister': 1.0, 'tried': 1.0, 'highly': 1.0, 'every': 1.0, 'too': 1.0, 'and': 4.0, 'stable': 1.0, 'of': 2.0, 'there': 1.0, 'just': 1.0, 'by': 1.0, 'says': 1.0, 'bottom': 1.0, 'out': 1.0, 'dogs': 1.0, 'small': 1.0, 'have': 3.0, 'look': 1.0, 'fine': 1.0, 'screw': 1.0, 'for': 1.0, 'actually': 1.0, 'gates': 3.0, 'are': 2.0, 'that': 2.0, 'into': 1.0, 'wall': 1.0, 'should': 1.0, 'top': 1.0, 'not': 2.0, 'be': 2.0, 'owners': 1.0, 'could': 1.0, 's': 1.0, 'stairs': 1.0, 'a': 1.0, 'the': 6.0, 'gate': 1.0, 'place': 1.0, 'against': 2.0, 'in': 1.0, 'drywall': 2.0, 'they': 1.0, 'i': 2.0, 'two': 2.0, 'who': 1.0, 'at': 2.0, 'best': 1.0, 'both': 1.0}
Word element => {'product': 1.0, 'and': 1.0, 'easy': 1.0, 'instructions': 2.0, 'looking': 1.0, 'without': 1.0, 'together': 2.0, 'put': 1.0, 'difficult': 1.0, 'little': 1.0, 'dogs': 1.0, 'keep': 1.0, 'reading': 1.0, 'of': 1.0, 'going': 1.0, 'stairs': 1.0, 'that': 1.0, 'went': 1.0, 'end': 1.0, 'great': 1.0, 'the': 7.0, 'at': 2.0, 'all': 2.0, 'tring': 1.0, 'thing': 1.0, 'was': 2.0, 'to': 2.0, 'works': 1.0, 'perfect': 2.0, 'from': 1.0, 'upstairs': 1.0, 'though': 1.0, 'after': 1.0, 'walk': 1.0, 'it': 4.0, 'only': 1.0, 'door': 1.0, 'is': 2.0, 'a': 2.0}
Word element => {'pooches': 1.0, 'love': 1.0, 'parents': 1.0, 'baby': 1.0, 'dont': 1.0, 'doesnt': 1.0, 'came': 1.0, 'keeps': 1.0, 'wall': 1.0, 'or': 1.0, 'worth': 1.0, 'you': 4.0, 'am': 1.0, 'point': 1.0, 'metal': 1.0, 'but': 2.0, 'uneasy': 1.0, 'little': 2.0, 'read': 1.0, 'gate': 3.0, 'agains': 1.0, 'more': 1.0, 'door': 4.0, 'not': 3.0, 'better': 1.0, 'would': 2.0, 'so': 3.0, 'is': 5.0, 'separated': 1.0, 'in': 3.0, 'whatever': 1.0, 'such': 1.0, 'for': 4.0, 'product': 1.0, 'opinion': 1.0, 'bumping': 1.0, 'dogs': 1.0, 'have': 2.0, 'a': 5.0, 'small': 1.0, 'be': 4.0, 'adjusted': 1.0, 'bought': 1.0, 'open': 4.0, 'hard': 1.0, 'while': 3.0, 'slide': 1.0, 'it': 11.0, 'first': 1.0, 'this': 3.0, 'know': 1.0, 'bit': 2.0, 'found': 1.0, 'the': 15.0, 'doing': 1.0, 'my': 5.0, 'may': 2.0, 'i': 8.0, 'all': 1.0, 'to': 7.0, 'always': 1.0, 'them': 1.0, 'out': 2.0, 'reviews': 1.0, 'and': 8.0, 'one': 2.0, 'too': 2.0, 'buying': 1.0, 'was': 1.0, 'want': 1.0, 'if': 2.0, 'does': 1.0, 'that': 1.0, 'easily': 1.0, 'concerned': 1.0, 'because': 2.0, 'press': 1.0, 'button': 1.0, 'never': 1.0, 'fault': 1.0, 'assembling': 1.0, 'do': 3.0, 'much': 2.0, 'put': 1.0, 'make': 1.0, 'pressure': 2.0, 'than': 2.0, 'way': 1.0, 'close': 1.0, 'closed': 1.0, 'accidents': 1.0, 'problem': 1.0, 'though': 1.0, 'even': 1.0, 'whoever': 1.0, 's': 2.0, 'maybe': 1.0, 'narrower': 1.0, 'into': 1.0, 'edges': 1.0, 'were': 1.0, 'frequent': 1.0, 'makes': 1.0, 'keep': 1.0, 'did': 1.0, 'beggining': 1.0, 'system': 1.0, 'order': 1.0, 'guess': 1.0, 'pedal': 2.0, 'great': 1.0, 'foot': 1.0, 'used': 1.0, 'set': 1.0}
Word element => {'hazard': 1.0, 'safety': 1.0, 'gates': 1.0, 'mounted': 1.0, 'not': 1.0, 'do': 1.0, 'steps': 2.0, 'reviewer': 1.0, 'previous': 1.0, 'explain': 1.0, 'shut': 1.0, 'pulling': 1.0, 'hang': 1.0, 'get': 1.0, 'you': 1.0, 'only': 1.0, 'easier': 1.0, 'closing': 1.0, 'level': 1.0, 'comfortable': 1.0, 'more': 1.0, 'loosened': 1.0, 'trust': 1.0, 'mechanism': 2.0, 'locking': 2.0, 'after': 1.0, 'first': 1.0, 'lock': 1.0, 'slide': 1.0, 'other': 1.0, 'couple': 1.0, 'squeezing': 1.0, 'for': 3.0, 'least': 1.0, 'children': 1.0, 'hands': 1.0, 'little': 1.0, 'two': 1.0, 'uncomfortable': 1.0, 'wrist': 1.0, 'middle': 1.0, 'mildly': 1.0, 'almost': 1.0, 'me': 2.0, 'my': 2.0, 'on': 2.0, 'also': 1.0, 'pushing': 1.0, 'gate': 5.0, 'aged': 1.0, 'place': 1.0, 'off': 1.0, 'so': 3.0, 'finger': 1.0, 'the': 23.0, 'of': 6.0, 'corner': 1.0, 'walls': 1.0, 'bill': 1.0, 'older': 1.0, 'supposed': 1.0, 'this': 2.0, 'base': 1.0, 'very': 2.0, 'inches': 2.0, 'we': 4.0, 'fit': 1.0, 'ago': 1.0, 'pressure': 1.0, 'who': 1.0, 'but': 3.0, 'weeks': 1.0, 'either': 1.0, 'would': 2.0, 'each': 2.0, 'top': 2.0, 'installed': 1.0, '14': 1.0, '35': 1.0, 'old': 2.0, 'wall': 1.0, 'no': 2.0, 'have': 1.0, 'slight': 1.0, 'a': 6.0, 'small': 1.0, 'time': 1.0, 'wide': 1.0, 'step': 1.0, 'slightly': 1.0, 'inch': 2.0, 'playmate': 1.0, 'because': 1.0, 'that': 2.0, 'into': 1.0, 'our': 3.0, 'to': 9.0, 'had': 1.0, 'bar': 1.0, 'does': 1.0, 'kitchen': 2.0, 'since': 1.0, 'find': 1.0, '1': 1.0, 'five': 1.0, 'angle': 1.0, 'has': 2.0, 'i': 1.0, 'entry': 1.0, 'well': 1.0, 'round': 1.0, 'torque': 1.0, 'using': 1.0, 'offset': 1.0, 'at': 6.0, 'is': 10.0, 'side': 2.0, 'lot': 1.0, 'one': 5.0, 'ground': 1.0, 'same': 1.0, 'month': 3.0, 'worked': 1.0, 'remembering': 1.0, 'in': 2.0, 'takes': 1.0, 'up': 1.0, 'buttons': 1.0, 'if': 1.0, 'stayed': 1.0, 'son': 1.0, 'about': 4.0, 'walk': 1.0, 'he': 1.0, 'while': 3.0, 'hard': 1.0, 'work': 1.0, 'over': 3.0, 'open': 4.0, 'thick': 1.0, 'during': 1.0, 'problem': 2.0, 'his': 1.0, 'it': 7.0, '9': 1.0, 'just': 2.0, 'started': 1.0, 'walking': 1.0, 'sort': 1.0, 'and': 5.0, 'trip': 1.0, 'something': 1.0, 'wants': 1.0, 'hand': 1.0, 'visit': 1.0, 'was': 2.0, 'expected': 1.0, 'assisted': 1.0, 'use': 2.0, 'her': 1.0, 'with': 1.0}
Word element => {'again': 1.0, 'merchant': 1.0, 'order': 1.0, 'my': 1.0, 'anser': 1.0, 'from': 1.0, 'reply': 1.0, 'in': 1.0, 'receive': 1.0, 'them': 1.0, 'to': 2.0, 'voice': 1.0, 'calls': 2.0, 'will': 1.0, 'innumerable': 1.0, 'placed': 1.0, 'have': 2.0, '2009': 1.0, 'ordered': 1.0, 'not': 1.0, 'january': 1.0, 'telephone': 2.0, 'dog': 1.0, 'they': 2.0, 'on': 1.0, 'gate': 1.0, 'received': 1.0, 'i': 4.0, 'answered': 1.0, 'mail': 1.0, 'only': 1.0, 'this': 2.0, 'it': 1.0, 'number': 1.0, 'gave': 1.0, 'the': 1.0, 'is': 1.0, '800': 1.0, 'that': 1.0, 'and': 1.0, '1': 2.0, 'me': 1.0, 'never': 3.0}
Word element => {'white': 1.0, 'range': 1.0, 'offerings': 1.0, 'other': 1.0, 'than': 1.0, 'gaudy': 1.0, 'scheme': 1.0, 'with': 1.0, 'neutral': 1.0, 'an': 1.0, 'consider': 1.0, 'just': 1.0, 'loose': 1.0, 'you': 2.0, 'yank': 1.0, 'kid': 1.0, 'your': 1.0, 'enough': 1.0, 'order': 1.0, 'are': 1.0, 'push': 1.0, 'reviewers': 1.0, 'used': 1.0, 'getting': 1.0, 'some': 2.0, 'takes': 1.0, 'handed': 1.0, 'use': 1.0, 'cost': 1.0, 'better': 2.0, 'that': 8.0, 'mount': 1.0, 'easy': 3.0, 'pressure': 1.0, 'have': 3.0, 'be': 1.0, 'profile': 1.0, 'fits': 1.0, 'taupe': 1.0, 'tight': 2.0, 'another': 1.0, 'for': 1.0, 'color': 1.0, 'mechanism': 1.0, 'one': 2.0, 'becomes': 1.0, 'i': 5.0, 'this': 2.0, 'found': 1.0, 'doable': 1.0, 'still': 1.0, 'workaround': 1.0, 'ways': 1.0, 'nice': 1.0, 'operation': 1.0, 'install': 1.0, 'closed': 1.0, 'and': 4.0, 'good': 1.0, 'value': 1.0, 'twice': 1.0, 'money': 1.0, 'but': 2.0, 'can': 2.0, 'the': 13.0, 'gate': 8.0, 'without': 1.0, 'our': 2.0, 'to': 6.0, 'as': 2.0, 'slim': 1.0, 'much': 2.0, 'however': 1.0, 'bedroom': 1.0, 't': 1.0, 'a': 2.0, 'we': 2.0, 'said': 1.0, 'in': 5.0, 'it': 5.0, 'doorway': 1.0, 'acceptable': 1.0, 'is': 4.0, 'plastic': 1.0, 'door': 1.0, 'so': 2.0, 'close': 2.0, 'locking': 1.0, 'makes': 1.0, 'removing': 1.0, 'swings': 1.0, 'price': 1.0, 'both': 1.0, 'hold': 1.0, 'cannot': 1.0, 'like': 3.0, 'which': 1.0}
Word element => {'invisible': 1.0, 'bars': 1.0, 'nearly': 1.0, 'packing': 1.0, 'prevent': 1.0, 'prevents': 1.0, 'part': 1.0, 'one': 1.0, 'little': 1.0, 'close': 1.0, 'from': 1.0, 'open': 1.0, 'easy': 1.0, 'is': 3.0, 'my': 1.0, 'puppy': 2.0, 'the': 8.0, 'in': 2.0, 'stairs': 1.0, 'doorway': 1.0, 'of': 2.0, 'keep': 1.0, 'snugly': 1.0, 'tape': 2.0, 'some': 1.0, 'at': 1.0, 'wrapped': 1.0, 'gate': 2.0, 'this': 2.0, 'able': 1.0, 'have': 1.0, 'across': 1.0, 'through': 2.0, 'top': 1.0, 'house': 1.0, 'area': 1.0, 'i': 2.0, 'to': 4.0, 'dogs': 1.0, 'our': 2.0, 'squeezing': 1.0, 'bedroom': 1.0, 'out': 1.0, 'fits': 1.0, 'squeeze': 1.0, 'and': 3.0}
Word element => {'returning': 1.0, 'be': 1.0, 'different': 1.0, 'trouble': 1.0, 'lot': 1.0, 'm': 1.0, 'even': 1.0, 'and': 2.0, 'open': 1.0, '8yo': 1.0, 'difficult': 1.0, 'really': 1.0, 'issues': 1.0, 'have': 1.0, 'your': 1.0, 'on': 1.0, 'pulling': 1.0, 'old': 1.0, 'with': 2.0, 'so': 3.0, 'order': 1.0, 'door': 1.0, 'is': 4.0, 'pressure': 2.0, 'll': 1.0, 'loosen': 2.0, 'room': 1.0, 'only': 1.0, 'much': 1.0, 'you': 2.0, 'way': 3.0, 'that': 3.0, 'making': 1.0, 'purchase': 1.0, 'save': 1.0, 'my': 2.0, 'requires': 1.0, 'tight': 1.0, 'handle': 1.0, 'for': 1.0, 'this': 2.0, 'it': 6.0, 'having': 1.0, 'because': 1.0, 'find': 1.0, 'mounts': 2.0, 'horrible': 1.0, '1': 2.0, 'i': 2.0, 'cannot': 1.0, 'in': 2.0, '12m': 1.0, 'of': 4.0, 'there': 2.0, 'has': 1.0, '8th': 2.0, 'an': 2.0, 'did': 1.0, 'inch': 2.0, 'money': 1.0, 'but': 1.0, 'can': 2.0, 'unlock': 2.0, 'slide': 1.0, 'our': 1.0, 'to': 4.0, 'had': 1.0, 'a': 2.0, 'we': 3.0, 'no': 2.0, 'something': 1.0, 'would': 1.0, 'not': 1.0, 'stay': 1.0, 'the': 6.0, 'gate': 4.0, 'reach': 1.0, 'place': 1.0}
Word element => {'cost': 1.0, 'if': 1.0, 'happy': 1.0, 'very': 1.0, 'quality': 1.0, 'in': 2.0, 'make': 1.0, 'never': 1.0, 'll': 1.0, '80': 1.0, 'but': 1.0, 'metal': 1.0, 'one': 3.0, 'wooden': 1.0, 'gates': 1.0, 'dent': 1.0, 'torn': 1.0, 'house': 1.0, 'rough': 1.0, 'like': 1.0, 'i': 1.0, 'two': 2.0, 'just': 1.0, 'opening': 1.0, 'into': 1.0, 'or': 1.0, 'latch': 1.0, 'clearer': 1.0, '90': 1.0, 'bit': 1.0, 'instructions': 1.0, 'this': 4.0, 'with': 2.0, 'stopped': 1.0, 'it': 3.0, 'closes': 1.0, 'is': 3.0, 'd': 1.0, 'describing': 1.0, 'apply': 1.0, 'they': 2.0, 'splay': 1.0, 'tighten': 1.0, 'easy': 1.0, 'last': 1.0, 'trying': 1.0, 'window': 1.0, 'be': 2.0, 'product': 1.0, 'assemble': 1.0, 'our': 1.0, 'all': 1.0, 'to': 4.0, 'pads': 2.0, 'as': 3.0, 'green': 1.0, 'and': 5.0, 'until': 2.0, 'install': 1.0, 'a': 5.0, 'could': 1.0, 'tip': 1.0, 'built': 2.0, 'you': 1.0, 'up': 3.0, 'top': 1.0, 'pressure': 1.0, 'clamping': 1.0, 'fact': 1.0, 'my': 1.0, 'will': 1.0, 'catch': 1.0, 'far': 1.0, 'then': 1.0, 'close': 1.0, 'turns': 1.0, 'gate': 3.0, 'the': 9.0, 'tightening': 1.0, 'at': 1.0, 'keep': 1.0, 'indicator': 1.0, 'have': 2.0, 'dogs': 1.0, 'small': 1.0}
Word element => {'happy': 1.0, 'use': 1.0, 'dream': 1.0, 'a': 1.0, 'is': 1.0, 'but': 1.0, 'secure': 1.0, 'easy': 1.0, 'effortless': 1.0, 'up': 1.0, 'installation': 1.0, 'not': 1.0, 'together': 1.0, 'the': 1.0, 'very': 1.0, 'as': 2.0, 'glitch': 1.0, 'or': 1.0, 'problem': 1.0, 'with': 1.0, 'only': 1.0, 'advertised': 1.0, 'it': 4.0, 'took': 1.0, 'another': 1.0, 'person': 1.0, 'working': 1.0, 'now': 1.0, 'was': 1.0, 'to': 2.0, 'me': 1.0, 'and': 3.0, 'get': 1.0}
Word element => {'add': 1.0, 'good': 1.0, 'quite': 1.0, 'being': 1.0, 'clear': 1.0, 'not': 1.0, 'do': 1.0, 'instructions': 1.0, 'right': 1.0, 'out': 1.0, 'however': 1.0, 'would': 1.0, 'solid': 1.0, 'gates': 1.0, 'are': 1.0, 'wide': 1.0, 'step': 1.0, 'quick': 1.0, 'with': 1.0, 'wobble': 1.0, 'review': 1.0, 'has': 1.0, 'means': 1.0, 'will': 1.0, 'also': 1.0, 'open': 2.0, 'no': 2.0, 'there': 1.0, 'really': 1.0, 'actually': 1.0, 'design': 2.0, 'keeps': 1.0, 'got': 1.0, 'then': 1.0, 'top': 5.0, 'since': 1.0, 'at': 2.0, 'recommend': 1.0, 'bent': 1.0, 'was': 1.0, 'purpose': 1.0, 'one': 1.0, 'reviewer': 1.0, 'and': 2.0, 'too': 2.0, 'by': 2.0, 'feature': 1.0, 'two': 1.0, 'i': 7.0, 'opener': 1.0, 'snug': 1.0, 'bar': 1.0, 'thought': 1.0, 'of': 4.0, 'bottom': 2.0, 'make': 1.0, 'on': 3.0, 'believe': 1.0, 'gate': 9.0, 'the': 21.0, 'is': 6.0, 'point': 1.0, 'realized': 1.0, 'might': 1.0, 'a': 1.0, 's': 1.0, 'we': 1.0, 'mistaken': 1.0, 'them': 1.0, 'other': 2.0, 'manufactured': 1.0, 'it': 2.0, 'doorway': 1.0, 'this': 4.0, 'in': 1.0, 'wider': 1.0, 'having': 1.0, 'than': 1.0, 'when': 3.0, 'you': 2.0, 'can': 1.0, 'opening': 1.0, 'be': 1.0, 'force': 1.0, 'that': 6.0, 'into': 1.0, 'version': 1.0, 'like': 2.0, 'which': 1.0, 'very': 1.0}
Word element => {'paws': 1.0, 'stands': 1.0, 'larger': 1.0, 'mix': 1.0, 'lbs': 2.0, 'about': 2.0, 'foot': 1.0, 'catch': 1.0, 'didn': 1.0, 'dogs': 1.0, 'something': 1.0, 'just': 1.0, 'piece': 1.0, 'rubber': 1.0, 'curved': 2.0, 'had': 1.0, 'wish': 1.0, 'even': 1.0, 'footing': 1.0, 'especially': 1.0, 'law': 1.0, '55': 1.0, 'husky': 1.0, 'worse': 1.0, 'going': 1.0, 'afraid': 1.0, 'inches': 1.0, '1': 2.0, 'sticks': 1.0, 'bar': 3.0, 'dog': 1.0, 'part': 1.0, 'thick': 1.0, 'also': 2.0, 'closing': 1.0, 'having': 1.0, 'release': 1.0, 'front': 1.0, 'ping': 1.0, 'makes': 1.0, 'up': 2.0, 'noisy': 1.0, 's': 1.0, 'least': 1.0, 'hands': 1.0, 'her': 1.0, 'use': 1.0, 'but': 1.0, 'corners': 1.0, 'so': 1.0, 'can': 2.0, 'other': 1.0, 'flatter': 1.0, 'all': 1.0, 'to': 9.0, 'awkward': 1.0, 'bend': 1.0, 'as': 1.0, '20': 1.0, 'easily': 1.0, 'that': 3.0, 'because': 1.0, 'on': 4.0, 'fashioned': 1.0, 'floor': 1.0, 'much': 1.0, 'install': 1.0, 'crawls': 1.0, 'gate': 6.0, 'm': 2.0, 'in': 3.0, 'used': 1.0, 'adjusts': 1.0, 'its': 1.0, 'research': 1.0, 'wookwork': 1.0, 'how': 1.0, 'our': 3.0, 'disappointed': 1.0, 'a': 8.0, 'mother': 1.0, 'works': 2.0, 'stairs': 2.0, 'fit': 1.0, 't': 3.0, 'old': 2.0, 'well': 1.0, 'i': 8.0, 'baby': 1.0, 'many': 2.0, 'gorilla': 1.0, 'doorway': 1.0, '9': 1.0, 'it': 18.0, 'month': 1.0, 'carved': 1.0, 'bought': 1.0, 'too': 1.0, 'one': 3.0, 'my': 6.0, 'trip': 2.0, 'and': 14.0, 'with': 4.0, 'husband': 1.0, 'climb': 1.0, 'yes': 2.0, 'are': 1.0, '2': 4.0, 'gates': 1.0, 'after': 1.0, 'both': 2.0, 'holding': 1.0, 'these': 1.0, 'for': 3.0, 'struggled': 1.0, 'does': 1.0, 'kitchen': 1.0, 'reading': 1.0, 'cheap': 1.0, 'beautifully': 1.0, 'like': 2.0, 'the': 17.0, 'of': 4.0, 'beagle': 1.0, 'yet': 1.0, 'bottom': 4.0, 'down': 1.0, 'stand': 1.0, 'they': 2.0, 'metal': 1.0, 'sturdy': 1.0, 'be': 1.0, 'never': 1.0, 'worry': 1.0, 'before': 2.0, 'when': 4.0, 'starts': 1.0, 'you': 3.0, 'times': 1.0, 'open': 1.0, 'over': 3.0, 'trying': 1.0, 'pulls': 1.0, 'easy': 2.0, 'bit': 2.0, 'however': 1.0, 'rattling': 1.0, 'shepherd': 1.0, 'escape': 1.0, 'don': 1.0, 'opening': 2.0, 'isn': 1.0, 'them': 2.0, 'always': 2.0, 'have': 4.0, 'press': 1.0, 'buttons': 3.0, 'we': 3.0, 'reviews': 1.0, 'then': 1.0, 'each': 1.0, 'side': 1.0, 'at': 2.0, 'sits': 1.0, 'is': 6.0, 'handle': 2.0, 'back': 1.0, 'slide': 2.0, 'while': 1.0, 'will': 2.0, 'swing': 2.0, 'cage': 1.0, 'or': 4.0, 'out': 1.0, 'four': 1.0, 'pressed': 1.0, 'sliding': 1.0, 'got': 1.0, 'upon': 1.0, 'daughter': 1.0}
Word element => {'good': 1.0, 'able': 1.0, 'child': 1.0, 'way': 1.0, 'side': 1.0, 'plus': 1.0, 'carrying': 1.0, 'm': 1.0, 'whatever': 1.0, 'set': 1.0, 'room': 1.0, 'from': 1.0, 'carry': 1.0, 'be': 1.0, 'trying': 1.0, 'difficult': 1.0, 'open': 3.0, 'things': 1.0, 'problem': 1.0, 'other': 1.0, 'only': 1.0, 'happy': 1.0, 'sort': 1.0, 'savvy': 1.0, 'pretty': 1.0, 'he': 1.0, 'will': 1.0, 'hour': 1.0, 'an': 1.0, 'half': 1.0, 'no': 1.0, 'thing': 1.0, 'about': 2.0, 'husband': 1.0, 'another': 1.0, 'my': 3.0, 'took': 1.0, 'work': 1.0, 'but': 1.0, 'extension': 1.0, 'easiest': 1.0, 'couldn': 1.0, 'get': 4.0, 'just': 1.0, 'not': 2.0, 'down': 1.0, 'bottom': 1.0, 'otherwise': 1.0, 'i': 6.0, 'this': 3.0, 'with': 4.0, 'one': 2.0, 'bought': 1.0, 'on': 2.0, 'and': 4.0, 'too': 2.0, 'originally': 1.0, 'as': 1.0, 'to': 8.0, 'intending': 1.0, 'for': 1.0, 'hand': 1.0, 'cannot': 1.0, 'using': 1.0, 'have': 1.0, 'small': 1.0, 'install': 1.0, 'big': 1.0, 'very': 1.0, 'ended': 1.0, 'said': 1.0, 'in': 2.0, 'it': 12.0, 'doorway': 1.0, 'there': 1.0, 'instead': 1.0, 'sturdy': 1.0, 'is': 3.0, 'we': 2.0, 'stairs': 1.0, 't': 1.0, 'go': 1.0, 'going': 1.0, 'a': 3.0, 's': 5.0, 'am': 2.0, 'when': 1.0, 'you': 1.0, 'anywhere': 1.0, 'of': 2.0, 'once': 1.0, 'the': 6.0, 'gate': 5.0, 'without': 1.0, 'place': 1.0, 'being': 1.0, 'that': 3.0}
Word element => {'hand': 1.0, 'opening': 1.0, 'and': 1.0, 'problem': 2.0, 'no': 2.0, 'one': 1.0, 'i': 1.0, 'just': 1.0, 'received': 1.0, 'with': 1.0, 'contain': 1.0, 'installing': 1.0, 'this': 1.0, 'gate': 2.0, 'yesterday': 1.0, 'to': 1.0, 'my': 1.0, 'miniature': 1.0, 'schnauser': 1.0}
Word element => {'find': 1.0, 'could': 1.0, 'decent': 1.0, 'only': 1.0, 'inexpensive': 1.0, 'relativly': 1.0, 'from': 1.0, 'deter': 1.0, 'alone': 1.0, 'buying': 1.0, 'factor': 1.0, 'let': 1.0, 'don': 1.0, 'hurts': 1.0, 'very': 1.0, 'bottom': 1.0, 'note': 1.0, 'must': 1.0, 'other': 1.0, 'pund': 1.0, '5': 1.0, 'have': 1.0, 'one': 2.0, 'lot': 1.0, 'withstood': 1.0, 'great': 1.0, 'quality': 1.0, 'keep': 1.0, 'makes': 1.0, 'be': 1.0, 'supposed': 1.0, '10': 1.0, 'for': 2.0, 'child': 1.0, 'product': 3.0, 'out': 2.0, 'stuck': 1.0, 'first': 2.0, 'end': 1.0, 'intstalation': 1.0, 'do': 1.0, 'floor': 1.0, 'much': 1.0, 'not': 1.0, 'forward': 1.0, 'didn': 1.0, 'becuase': 1.0, 'broken': 1.0, 'touches': 1.0, 'easy': 2.0, 'left': 1.0, 'get': 1.0, 'to': 6.0, 'as': 1.0, 'was': 3.0, 'a': 11.0, 's': 2.0, 'lower': 1.0, 'ends': 1.0, 'experience': 1.0, 'mind': 1.0, 'holding': 1.0, 'hands': 1.0, 'using': 2.0, 'that': 6.0, 'litlle': 1.0, 'use': 2.0, 'trip': 1.0, 'and': 7.0, 'me': 1.0, 'i': 6.0, 'two': 1.0, 'latch': 3.0, 'or': 2.0, 'different': 1.0, 'meet': 1.0, 'at': 2.0, 'is': 7.0, 'more': 1.0, 'along': 1.0, 't': 2.0, 'farther': 1.0, 'thought': 1.0, 'it': 14.0, 'overall': 1.0, 'puppy': 2.0, 'between': 1.0, 'baby': 1.0, 'has': 1.0, 'them': 1.0, 'than': 2.0, 'way': 1.0, 'just': 1.0, 'this': 4.0, 'few': 1.0, 'want': 1.0, 'make': 1.0, 'your': 1.0, 'pound': 1.0, 'on': 1.0, 'mount': 1.0, 'thumb': 1.0, 'good': 2.0, 'side': 1.0, 'when': 2.0, 'fasten': 1.0, 'depending': 1.0, 'wall': 1.0, 'pressure': 2.0, 'bar': 1.0, 'pushes': 1.0, 'top': 1.0, 'together': 1.0, 'pull': 1.0, 'so': 2.0, 'can': 2.0, 'but': 2.0, 'gates': 1.0, 'thing': 1.0, '2': 1.0, 'the': 17.0, 'of': 4.0, 'over': 1.0, 'hard': 2.0, 'while': 1.0, 'requires': 1.0, 'in': 2.0, 'pinch': 1.0, 'if': 1.0, 'clear': 1.0, 'buttons': 2.0, 'index': 1.0, 'you': 7.0, 'push': 1.0, 'things': 1.0, 'gate': 4.0, 'pushing': 1.0, 'towards': 1.0, 'sounds': 1.0, 'easier': 1.0, 'upper': 1.0, 'right': 1.0, 'll': 1.0, 'there': 2.0, 'hang': 1.0}
Word element => {'needed': 1.0, 'everything': 1.0, 'does': 1.0, 'price': 1.0, 'for': 1.0, '4': 1.0, 'enough': 1.0, 'latched': 1.0, 'mounted': 3.0, 'pressure': 2.0, 'haven': 1.0, 'do': 2.0, 'and': 5.0, 'reviewers': 1.0, 'or': 1.0, 'stars': 1.0, 'untighten': 1.0, 'mistake': 1.0, 'spend': 1.0, 'return': 1.0, 'sure': 3.0, 'seemed': 1.0, 'to': 11.0, 'was': 4.0, 'swing': 3.0, 'that': 3.0, 'it': 1.0, 'thought': 1.0, 'have': 1.0, 'practice': 1.0, 'evenflo': 1.0, 'i': 14.0, 'two': 1.0, 'gate': 10.0, 'closes': 1.0, 'a': 6.0, 't': 2.0, 'going': 1.0, '1': 1.0, 'since': 2.0, 'keep': 1.0, 'inch': 1.0, 'great': 1.0, 'improve': 1.0, 'option': 1.0, 'agree': 1.0, 'using': 1.0, 'like': 1.0, 'hand': 2.0, 'my': 1.0, 'tighted': 1.0, 'decided': 2.0, 'first': 1.0, 'this': 5.0, 'there': 3.0, 'the': 19.0, 'of': 2.0, 'gap': 3.0, 'once': 2.0, 'quickly': 1.0, 'latch': 2.0, 'pressured': 1.0, 'from': 1.0, 'is': 3.0, 'informed': 1.0, 'think': 1.0, '800': 1.0, 'reviewer': 1.0, 'didn': 1.0, 'door': 3.0, 'with': 4.0, 'pins': 3.0, 'other': 1.0, 'manufacturing': 1.0, 'one': 2.0, 'rating': 1.0, 'diffucult': 1.0, 'open': 3.0, 'not': 3.0, 'if': 3.0, 'want': 1.0, 'could': 1.0, 'will': 1.0, '70': 1.0, 'in': 1.0, 'm': 1.0, 'per': 1.0, 'make': 1.0, 'be': 1.0, 'made': 1.0, 'good': 1.0, 'just': 1.0, 'economical': 1.0, 'on': 2.0, 'update': 1.0, 'installed': 1.0, 'top': 1.0, 'between': 1.0, 'correctly': 2.0, '8': 1.0, 'called': 1.0, 'instructions': 1.0, 'has': 1.0, 'easier': 1.0, 'after': 1.0, 'practicing': 1.0, 'am': 1.0, 'able': 1.0, 'would': 1.0, 'change': 1.0}
Word element => {'be': 1.0, 'something': 1.0, 'bad': 1.0, 'a': 1.0, 'just': 1.0, 'to': 1.0, 'was': 1.0, 'maybe': 1.0, 'two': 1.0, 'it': 1.0, 'first': 1.0, 'installed': 1.0, 'gates': 2.0, 'general': 1.0, 'batch': 1.0, 'on': 2.0, 'they': 1.0, 'of': 3.0, 'very': 1.0, 'and': 2.0, 'amazon': 1.0, 'i': 2.0, 'but': 1.0, 'weeks': 1.0, 'jammed': 1.0, 'easily': 1.0, 'use': 1.0, 'purchase': 1.0, 'loved': 1.0, 'aware': 1.0, '2': 1.0, 'these': 1.0, 'the': 3.0, 'unfortunately': 1.0, 'design': 1.0, 'operation': 1.0, 'buttons': 1.0, 'both': 1.0, 'within': 1.0}
Word element => {'fairly': 1.0, 'looks': 1.0, 'firmly': 1.0, 'and': 1.0, 'very': 1.0, 'nice': 1.0, 'gate': 1.0, 'great': 1.0, 'it': 1.0, 'taupe': 1.0, 'color': 1.0, 'blends': 1.0, 'in': 1.0, 'with': 1.0, 'opening': 1.0, 'decor': 1.0, 'easy': 1.0, 'holds': 1.0}
Word element => {'immediately': 1.0, 'am': 1.0, 'own': 1.0, 's': 1.0, 'not': 1.0, 'does': 1.0, 'holding': 1.0, 'when': 1.0, 'slides': 1.0, 'barely': 1.0, 'latch': 1.0, 'good': 2.0, 'be': 1.0, 'would': 1.0, '1st': 1.0, 'it': 2.0, 'with': 1.0, 'children': 1.0, 'handle': 1.0, 'for': 1.0, 'had': 1.0, 'now': 1.0, 'on': 1.0, 'gate': 2.0, 'broke': 1.0, 'another': 1.0, 'a': 2.0, 'free': 1.0, 't': 1.0, '2': 2.0, 'the': 4.0, 'child': 2.0, 'design': 1.0, 'we': 2.0, 'work': 1.0, 'doesn': 1.0, 'but': 2.0, 'returning': 1.0, 'our': 1.0, 'thought': 1.0, 'have': 1.0, 'and': 2.0, 'hands': 2.0, 'needed': 1.0, 'step': 1.0, 'i': 2.0}
Word element => {'again': 1.0, 'product': 1.0, 'buy': 1.0, 'sales': 1.0, 'go': 1.0, 'representative': 1.0, 'then': 1.0, 'any': 1.0, 'sizes': 1.0, 'indicate': 1.0, 'accurately': 1.0, 'inside': 1.0, 'parts': 1.0, 'just': 1.0, 'matter': 1.0, 'said': 1.0, 'replied': 1.0, 'whole': 1.0, 'clearly': 1.0, 'never': 1.0, 'protested': 1.0, 'what': 2.0, 'when': 2.0, 'help': 1.0, 'do': 1.0, 'design': 1.0, 'not': 3.0, 'was': 1.0, 'gap': 1.0, 'told': 2.0, 'wholly': 1.0, 'she': 2.0, 'condescending': 1.0, 'surly': 1.0, 'bad': 1.0, 'would': 3.0, 'room': 1.0, 'between': 1.0, 'useless': 1.0, 'anything': 1.0, 'remove': 1.0, 'me': 3.0, 'my': 2.0, 'another': 2.0, 'didn': 1.0, 'reviewer': 1.0, 'i': 10.0, 'nowhere': 1.0, 'is': 3.0, 'and': 5.0, 'for': 3.0, 'kitchen': 1.0, 'fit': 4.0, 't': 3.0, 'won': 1.0, 'recognized': 1.0, 'gate': 3.0, '1': 2.0, 'since': 3.0, 'to': 11.0, 'as': 1.0, 'all': 1.0, 'box': 4.0, 'that': 8.0, 'however': 1.0, '5': 5.0, 'advertises': 1.0, 'in': 4.0, '35': 1.0, 'by': 1.0, 'only': 1.0, 'its': 1.0, 'advertised': 1.0, 'labeled': 1.0, 'work': 1.0, '29': 2.0, 'food': 1.0, 'flaw': 1.0, 'reads': 1.0, 'false': 2.0, '33': 1.0, 'gates': 1.0, 'thing': 1.0, 'no': 1.0, 'this': 4.0, 'range': 4.0, 'absolutely': 1.0, 'mentioned': 1.0, 'there': 3.0, '37': 2.0, 'will': 5.0, 'discover': 2.0, 'materials': 1.0, 'peanuts': 2.0, 'had': 3.0, 'states': 1.0, 'it': 3.0, 'thought': 1.0, 'acquired': 1.0, 'store': 1.0, 'return': 1.0, '34': 2.0, 'equipment': 1.0, 'unhelpful': 1.0, 'doorway': 3.0, 'actually': 2.0, 'order': 1.0, 'list': 2.0, 'packing': 1.0, 'can': 1.0, 'so': 1.0, 'now': 1.0, 'like': 1.0, 'buying': 1.0, 's': 2.0, 'prominently': 1.0, 'amazingly': 1.0, 'customer': 1.0, 'on': 2.0, 'front': 1.0, 'contains': 1.0, 'instead': 1.0, 'even': 1.0, 'ingredients': 1.0, 'business': 1.0, 'buried': 1.0, 'dining': 1.0, 'perhaps': 1.0, 'back': 2.0, 'a': 6.0, 'small': 1.0, 'have': 1.0, 'evenflo': 3.0, 'but': 2.0, 'print': 1.0, 'talk': 1.0, 'advertising': 2.0, 'being': 1.0, 'reasonable': 1.0, 'the': 18.0, 'of': 2.0, 'person': 2.0, 'instructions': 1.0, 'bought': 1.0, 'called': 1.0, 'if': 1.0, 'asked': 1.0, 'service': 1.0, 'line': 1.0, 'someone': 1.0}
Word element => {'price': 1.0, 'excellent': 2.0, 'nit': 1.0, 'when': 1.0, 'swing': 1.0, 'cannot': 1.0, 'is': 1.0, 'more': 1.0, 'include': 1.0, 'product': 1.0, 'folks': 1.0, 'suggestion': 1.0, 'only': 1.0, 'plus': 1.0, 'door': 1.0, 'easy': 1.0, 'closing': 1.0, 'interfere': 1.0, 'latch': 1.0, 'single': 1.0, 'with': 2.0, 'handed': 1.0, 'at': 2.0, 'trouble': 1.0, 'powerful': 1.0, 'not': 2.0, 'does': 1.0, 'having': 1.0, 'their': 1.0, 'your': 1.0, 'liberating': 1.0, 'evenflo': 1.0, 'small': 1.0, 'have': 2.0, 'another': 1.0, 'may': 1.0, 'by': 1.0, 'her': 1.0, 'top': 1.0, 'allowing': 1.0, 'out': 1.0, 'keeping': 1.0, 'and': 5.0, 'circulation': 1.0, 'perfect': 1.0, 'so': 2.0, 'needs': 1.0, 'from': 1.0, 'part': 1.0, 'solution': 1.0, 'forewarned': 1.0, 'removed': 1.0, 'week': 1.0, 'longest': 1.0, 'still': 1.0, 'old': 1.0, 'all': 3.0, 'to': 6.0, 'our': 1.0, 'installation': 2.0, 'been': 1.0, 'that': 2.0, '8': 2.0, 'clearance': 1.0, 'able': 1.0, 'in': 3.0, 'air': 1.0, 'other': 2.0, 'kitchen': 1.0, 'one': 3.0, 'tighten': 1.0, 'bumpers': 1.0, '10': 1.0, 'a': 1.0, 'puppy': 1.0, 'between': 1.0, 'reviewers': 1.0, 'gates': 2.0, 'hands': 1.0, 'the': 11.0, 'gate': 2.0, 'look': 1.0, 'stanchion': 1.0, 'operation': 1.0, '1': 1.0, 'install': 1.0, 'i': 2.0, 'two': 1.0, 'packaging': 3.0, 'of': 2.0, 'tie': 1.0, 'no': 1.0, 'despite': 1.0, 'about': 1.0, 'was': 1.0, 'minutes': 1.0}
Word element => {'force': 1.0, 'enough': 1.0, 'around': 1.0, 'their': 1.0, 'while': 2.0, 'fore': 1.0, 'thumb': 1.0, 'with': 2.0, 'squeeze': 2.0, 'latch': 3.0, 'each': 1.0, 'button': 1.0, 'figure': 1.0, 'got': 1.0, 'but': 1.0, 'be': 3.0, 'had': 1.0, 'house': 1.0, 'coming': 1.0, 'adults': 1.0, 'one': 1.0, 'only': 1.0, 'most': 1.0, 'back': 3.0, 'little': 1.0, 'nice': 1.0, 'put': 1.0, 'scratch': 1.0, 'side': 1.0, 'which': 2.0, 'like': 1.0, 'to': 19.0, 'how': 2.0, 'our': 2.0, 'all': 1.0, 'really': 1.0, 'is': 8.0, 'want': 1.0, 'surface': 1.0, 'when': 2.0, 'that': 1.0, 'because': 1.0, 'easily': 1.0, 'sliding': 2.0, 'would': 2.0, 'either': 1.0, 'in': 2.0, '15': 1.0, 'through': 1.0, 'will': 1.0, 'could': 1.0, 'then': 1.0, 'take': 1.0, 'we': 3.0, 't': 1.0, 'a': 5.0, 'any': 1.0, 'your': 2.0, 'on': 3.0, 'time': 1.0, 'so': 1.0, 'toddler': 2.0, 'child': 2.0, 'don': 1.0, 'up': 3.0, 'living': 1.0, 'its': 1.0, 'way': 1.0, 'bed': 1.0, 'far': 1.0, 'love': 1.0, 'for': 6.0, 'where': 1.0, 'and': 11.0, 'closed': 1.0, 'used': 1.0, 'you': 7.0, 'push': 1.0, 'direction': 1.0, 'down': 2.0, '9': 1.0, 'it': 20.0, 'this': 1.0, 'have': 2.0, 'no': 1.0, 'shown': 1.0, 'hand': 2.0, 'crawl': 1.0, 'gate': 2.0, 'finger': 1.0, 'of': 1.0, 'the': 6.0, 'between': 1.0, 'if': 1.0, 'stay': 1.0, 'not': 2.0, 'hard': 3.0, 'over': 1.0, 'open': 5.0, 'from': 2.0, 'me': 1.0, 'my': 2.0, 'about': 1.0, 'behind': 1.0, 'need': 3.0, 'or': 2.0, 'shuts': 1.0, 'extremely': 1.0, 'they': 1.0, 'sturdy': 1.0, 'durable': 1.0, 'never': 1.0, 'shut': 1.0, 'room': 1.0, 'once': 2.0, 'came': 1.0, 'step': 1.0, 'son': 1.0, 'hangs': 1.0, 'easy': 1.0, 'months': 2.0, 'get': 4.0, 'clean': 1.0, 'kitchen': 1.0, 'does': 1.0, 'marked': 1.0, 'own': 1.0, 'climb': 1.0, 'monkey': 1.0, 'there': 3.0, 'fingers': 1.0, 'out': 1.0, 'nothing': 1.0, 'pinched': 1.0, 'opens': 1.0, 'was': 1.0, 'very': 3.0, 'important': 1.0, 'kid': 1.0, 'use': 1.0}
Word element => {'himself': 1.0, 'free': 1.0, 'coordinated': 1.0, 'wasn': 1.0, 'get': 1.0, 'didn': 1.0, 'together': 1.0, 'where': 1.0, 'between': 1.0, 'stuck': 1.0, 'wedged': 1.0, 'got': 1.0, 'arm': 1.0, 'son': 1.0, 'fell': 1.0, 'part': 1.0, 'be': 1.0, 'time': 1.0, 'hurt': 1.0, 'latch': 1.0, 'slide': 1.0, 'then': 1.0, 'have': 1.0, 'opening': 1.0, '5': 1.0, 'right': 1.0, 'push': 1.0, 'you': 2.0, 'one': 2.0, 'narrow': 1.0, 'tappers': 1.0, 'mounted': 1.0, 'durability': 1.0, 'way': 1.0, 'bit': 1.0, 'easy': 1.0, 'bars': 1.0, 'at': 1.0, 'is': 2.0, 'his': 1.0, 'around': 3.0, 'do': 1.0, 'when': 1.0, 'shaking': 1.0, 'and': 7.0, 'sturdy': 1.0, 'year': 1.0, 'once': 1.0, 'in': 4.0, 'install': 1.0, 'great': 2.0, 'slipped': 1.0, '1': 1.0, 'a': 5.0, 'sides': 1.0, 's': 1.0, 't': 3.0, 'handed': 1.0, 'adjusting': 1.0, 'with': 1.0, 'been': 1.0, 'little': 1.0, 'figure': 1.0, 'adjust': 1.0, 'extremely': 1.0, 'bottom': 1.0, 'nephew': 1.0, 'he': 3.0, 'was': 4.0, 'to': 7.0, 'our': 1.0, 'as': 1.0, 'careful': 1.0, '33': 1.0, 'wall': 1.0, 'doorway': 1.0, 'same': 1.0, 'month': 1.0, 'this': 2.0, 'of': 2.0, 'the': 10.0, 'occasion': 1.0, 'outside': 2.0, 'gate': 3.0, 'works': 2.0, 'without': 1.0, 'mounts': 1.0, 'holding': 1.0, 'both': 1.0, 'house': 1.0, 'on': 4.0, 'make': 1.0, '17': 1.0, 'tricky': 1.0, 'through': 1.0, 'while': 1.0, 'from': 1.0, 'open': 1.0, 'but': 3.0, '2': 2.0, 'can': 1.0, 'ease': 1.0, 'use': 2.0, 'up': 2.0, 'for': 1.0, 'i': 1.0, 'would': 1.0, 'not': 1.0, 'move': 1.0, 'different': 1.0, 'who': 1.0, 'pressure': 1.0, 'rattling': 1.0, 'spots': 1.0, 'permanent': 2.0, 'puts': 1.0, 'has': 3.0, 'location': 1.0, 'holes': 1.0, 'enough': 1.0, 'constant': 1.0, 'my': 3.0, 'it': 7.0, '9': 1.0, 'old': 2.0, 'took': 1.0, 'even': 1.0, 'deterred': 1.0, 'figured': 1.0, 'out': 3.0, 'or': 1.0, 'buttons': 1.0, 'if': 1.0, 'every': 1.0, 'other': 1.0, 'that': 2.0, 'because': 1.0}
Word element => {'error': 1.0, 'little': 1.0, 'for': 1.0, 'spaces': 1.0, 'leaves': 1.0, 'was': 1.0, 'unimpressed': 1.0, 'room': 1.0, 'with': 1.0, 'many': 1.0, 'swing': 1.0, 'fit': 1.0, 't': 2.0, 'this': 1.0, 'gate': 1.0, 'doesn': 2.0, 'close': 1.0, 'well': 2.0, 'and': 1.0}
Word element => {'in': 1.0, 'inconvience': 1.0, 'hold': 1.0, 'like': 1.0, 'clicking': 1.0, 'close': 1.0, 'a': 4.0, 'five': 1.0, 'instead': 2.0, 'stars': 1.0, 'mounted': 1.0, 'pressure': 1.0, 'able': 1.0, 'he': 1.0, 'you': 1.0, 'moth': 1.0, 'all': 2.0, 'to': 9.0, 'was': 2.0, 'gates': 2.0, 'bit': 1.0, 'so': 1.0, 'i': 5.0, 'old': 1.0, 'it': 10.0, 'pain': 1.0, 'this': 2.0, 'm': 1.0, 'three': 1.0, 'previous': 1.0, 'got': 1.0, 'sturdy': 2.0, 'other': 2.0, 'have': 2.0, 'the': 5.0, 'gate': 3.0, 'today': 1.0, 'by': 1.0, 'just': 2.0, 'make': 1.0, 'put': 2.0, 'house': 1.0, 'glad': 1.0, 'buttons': 1.0, 'took': 1.0, 'far': 1.0, 'up': 2.0, 'of': 4.0, 'closed': 1.0, 'and': 3.0, 'minor': 1.0, 'not': 1.0, 'me': 1.0, 'sure': 1.0, 'easy': 2.0, 'get': 1.0, 'bought': 1.0, 'around': 1.0, 'is': 5.0, 'down': 2.0, 'longer': 1.0, 'easiest': 1.0, 'nice': 1.0, 'install': 3.0, 'locks': 1.0, 'out': 1.0, 'that': 1.0, 'gave': 1.0, 'box': 1.0, 'because': 1.0, 'than': 1.0, 'little': 1.0, 'very': 1.0, 'son': 1.0, 'my': 1.0, 'pull': 2.0, '18': 1.0, 'most': 1.0, 'four': 1.0, 'can': 1.0}
Word element => {'now': 1.0, 'can': 1.0, 'she': 1.0, 'years': 1.0, 'spring': 1.0, 'slide': 1.0, 'simultaneously': 1.0, 'both': 1.0, 'squeeze': 1.0, 'but': 1.0, 'month': 1.0, 'my': 1.0, 'kit': 1.0, 'clamps': 1.0, 'wood': 1.0, 'piece': 1.0, 'short': 1.0, 'from': 2.0, 'old': 1.0, 'adapter': 1.0, 'making': 1.0, 'by': 1.0, 'was': 1.0, 'walls': 1.0, 'store': 1.0, 'boards': 1.0, '30': 1.0, '3': 3.0, 'x': 3.0, 'attach': 1.0, 'cage': 1.0, 'need': 1.0, 'plaster': 1.0, 'wallboard': 1.0, 'unlatch': 1.0, 'ideas': 1.0, 'internal': 1.0, 'pin': 1.0, 'latch': 2.0, 'on': 2.0, 'light': 1.0, 'being': 1.0, 'cannot': 1.0, 'mounting': 1.0, 'very': 2.0, 'regardless': 1.0, 'before': 2.0, 'mallet': 1.0, 'inch': 3.0, 'bottom': 1.0, 'saddle': 1.0, 'there': 2.0, 'silicone': 1.0, 'because': 1.0, 'than': 1.0, 'dog': 1.0, 'possible': 1.0, 'rail': 1.0, 'this': 2.0, 'taupeexcellent': 1.0, 'mount': 3.0, 'against': 3.0, 'high': 1.0, 'to': 12.0, 'granddaughter': 1.0, 'more': 1.0, 'comes': 1.0, 'level': 1.0, 'pushing': 1.0, 'gate': 10.0, 'bannister': 1.0, 'pads': 1.0, 'place': 1.0, 'floor': 2.0, 'much': 1.0, 'mounted': 2.0, 'for': 3.0, 'where': 2.0, 'evenflo': 2.0, 'as': 4.0, 'leave': 1.0, 'extension': 1.0, 'price': 1.0, 'bar': 1.0, 's': 2.0, 'convenient': 1.0, 'adjusting': 1.0, 'should': 1.0, 'across': 1.0, 'and': 4.0, 'low': 1.0, 'round': 1.0, 'install': 1.0, 'simplestep': 1.0, '1': 5.0, 'type': 1.0, 'particularly': 1.0, 'instructions': 1.0, 'her': 1.0, 'use': 2.0, 'cup': 1.0, '4': 3.0, 'well': 1.0, 'i': 2.0, 'soft': 1.0, 'remove': 1.0, 'already': 1.0, 'hardware': 1.0, 'it': 4.0, 'work': 1.0, 'open': 3.0, 'over': 1.0, 'imagine': 1.0, 'a': 4.0, 'attempting': 1.0, 'opening': 1.0, 'stepping': 1.0, '2': 2.0, 'begin': 1.0, 'bump': 1.0, 'swing': 2.0, 'able': 1.0, 'you': 5.0, 'tension': 3.0, 'when': 1.0, 'button': 1.0, 'trim': 1.0, 'midrange': 1.0, 'will': 6.0, 'be': 2.0, 'however': 1.0, 'easy': 2.0, 'get': 2.0, 'first': 1.0, 'study': 1.0, 'take': 1.0, 'out': 1.0, 'the': 4.0, 'of': 4.0, 'box': 1.0, 'non': 1.0, 'into': 2.0, 'handle': 1.0, 'is': 3.0, 'at': 2.0, 'look': 2.0, 'release': 2.0, 'bent': 1.0, 'read': 1.0, '11': 1.0, 'spray': 1.0, 'directions': 1.0, 'covered': 1.0, 'with': 1.0, 'width': 2.0, 'like': 1.0, 'in': 1.0, 'tricky': 1.0, 'mechanism': 1.0, 'used': 1.0, 'vertical': 2.0, 'one': 3.0, 'iron': 1.0, 'mine': 2.0, 'an': 1.0, 'ordinary': 1.0, 'pressure': 1.0, 'carpenter': 1.0, 'if': 2.0, 'stay': 1.0}
Word element => {'hands': 1.0, 'if': 1.0, 'to': 1.0, 'strong': 1.0, 'not': 1.0, 'difficult': 1.0, 'works': 1.0, 'is': 2.0, 'operate': 1.0, 'system': 1.0, 'in': 1.0, 'i': 1.0, 'mechanism': 1.0, 'do': 1.0, 'and': 1.0, 'stays': 1.0, 'latch': 1.0, 'firmly': 1.0, 'well': 1.0, 'you': 1.0, 's': 1.0, 'gate': 1.0, 'it': 2.0, 'with': 2.0, 'only': 2.0, 'this': 1.0, 'have': 2.0, 'place': 1.0, 'extremely': 1.0, 'pressure': 1.0, 'the': 2.0, 'gripe': 1.0}
Word element => {'service': 1.0, 'bad': 1.0, 'tight': 1.0, 'locks': 1.0, 'close': 1.0, 'full': 1.0, 'than': 1.0, 'relatively': 1.0, 'easy': 3.0, 'stroller': 1.0, 'wheel': 1.0, 'a': 1.0, 'too': 1.0, 'less': 1.0, 'in': 2.0, 'car': 1.0, 'the': 4.0, 'heavy': 1.0, 'customer': 1.0, 'space': 1.0, 'takes': 1.0, 'pros': 1.0, 'ugly': 1.0, 'backrest': 1.0, 'color': 1.0, 'to': 3.0, 'sizecons': 1.0, 'not': 2.0, 'lower': 1.0, 'with': 1.0, 'baby': 1.0, 'very': 2.0, 'open': 1.0}
Word element => {'worth': 1.0, 'but': 1.0, 'first': 1.0, 'with': 1.0, 'it': 2.0, 'stopped': 1.0, 'bed': 2.0, 'the': 4.0, 'these': 1.0, 'not': 2.0, 'at': 1.0, 'even': 1.0, 'before': 1.0, 'my': 1.0, 'afterwards': 1.0, 'entirely': 1.0, 'they': 1.0, 'time': 1.0, 'sheets': 2.0, 's': 1.0, 'being': 1.0, 'barely': 1.0, 'around': 1.0, 'is': 1.0, 'nearly': 1.0, 'all': 2.0, 'to': 1.0, 'get': 2.0, 'and': 2.0, 'corners': 1.0, 'thin': 1.0, '4': 1.0, 'i': 2.0, 'for': 1.0, 'fit': 1.0, 'cheap': 2.0, 'putting': 1.0, 'happy': 1.0, 'quite': 1.0, 'impossible': 1.0, 'workout': 1.0, 'fairly': 1.0, 'are': 2.0, 'washed': 1.0, 'on': 2.0, 'constantly': 1.0, 'wrinkled': 1.0, 'them': 1.0, 'still': 1.0, 'seem': 1.0, 'son': 1.0}
Word element => {'on': 1.0, 'to': 1.0, 'sheet': 1.0, 'nice': 1.0, 'toddler': 1.0, 'keep': 1.0, 'has': 1.0, 'bed': 2.0, 'elastic': 1.0, 'sheeting': 1.0, 'for': 1.0, 'flat': 1.0, 'the': 3.0, 'set': 1.0, 'that': 1.0, 'it': 1.0, 'money': 1.0, 'i': 1.0, 'like': 1.0}
Word element => {'your': 1.0, 'kid': 1.0, 'something': 1.0, 'for': 2.0, 'these': 1.0, 'we': 1.0, 'sheets': 1.0, 'more': 1.0, 'are': 1.0, 'cheap': 1.0, 'just': 1.0, 'cozy': 1.0, 'too': 1.0, 'softer': 1.0, 'and': 2.0, 'scratchy': 1.0, 'returned': 1.0, 'go': 1.0, 'them': 1.0}
Word element => {'toddler': 1.0, 'sheets': 2.0, 'a': 1.0, '34': 2.0, 'just': 2.0, 'find': 1.0, 'perfect': 1.0, 'in': 1.0, 'couldn': 1.0, 'was': 1.0, 'for': 2.0, 'bed': 1.0, 'some': 1.0, 'we': 1.0, 'everything': 1.0, 'sets': 1.0, 'or': 1.0, 'costs': 1.0, 'waaay': 1.0, 't': 1.0, 'these': 1.0, 'too': 1.0, 'much': 1.0, 'were': 1.0}
Word element => {'fabric': 1.0, 'for': 1.0, 'costs': 1.0, 'buy': 1.0, 'why': 2.0, 'back': 1.0, 'm': 1.0, 'some': 1.0, 'them': 1.0, 'guess': 1.0, 'than': 1.0, 'wider': 1.0, 'so': 2.0, 'available': 1.0, 'used': 1.0, 'since': 1.0, 'space': 1.0, 'bigger': 1.0, 'was': 1.0, 'big': 1.0, 'nice': 1.0, 'be': 1.0, 'trip': 1.0, 'or': 1.0, 'run': 1.0, 'walk': 1.0, 'then': 1.0, 'through': 1.0, 'enough': 1.0, 'piece': 1.0, 'with': 2.0, 'however': 1.0, 'come': 1.0, 'it': 5.0, 'this': 3.0, 'should': 1.0, 'stroller': 1.0, 'but': 2.0, 'most': 1.0, 'instead': 1.0, 'etc': 1.0, 'i': 5.0, 'on': 1.0, 'stuff': 1.0, 'your': 2.0, 'honestly': 1.0, 'separately': 2.0, 'cost': 1.0, 'would': 1.0, 've': 1.0, 'pocket': 4.0, 'double': 1.0, 'you': 2.0, 'a': 2.0, 's': 2.0, 'only': 1.0, 'much': 2.0, 'do': 1.0, 'get': 2.0, 'the': 8.0, 'believe': 1.0, 'of': 4.0, 'every': 1.0, 'really': 1.0, 'said': 1.0, 'out': 2.0, 'made': 1.0, 'wondering': 1.0, 'need': 1.0, 'darn': 1.0, 'normal': 1.0, 'have': 2.0, 'and': 3.0, 'sold': 1.0, 'bob': 4.0, 'that': 3.0, 'single': 2.0, 'very': 1.0, 'to': 5.0, 'as': 3.0, 'from': 1.0, 'well': 1.0, 'if': 1.0, 'being': 1.0, 'everything': 1.0, 'manufacturing': 1.0, 'bought': 1.0, 'more': 1.0, 'is': 3.0, 'holds': 2.0, 'almost': 1.0, 'saves': 1.0, 'drink': 1.0, 'size': 1.0}
Word element => {'bigger': 1.0, 'in': 1.0, 'pocket': 1.0, 'wish': 1.0, 'have': 1.0, 'gt': 1.0, 'the': 3.0, 'are': 1.0, 'double': 1.0, 'city': 1.0, 'on': 1.0, 'this': 1.0, 'am': 1.0, 'i': 1.0, 'stroller': 1.0, 'holders': 1.0, 'stretches': 1.0, 'across': 1.0, 'two': 1.0, 'using': 1.0, 'handle': 1.0, 'tight': 1.0, 'middle': 1.0, 'mini': 1.0, 'bar': 1.0, 'my': 1.0, 'cup': 1.0, 'nice': 1.0, 'was': 1.0, 'to': 1.0}
Word element => {'too': 1.0, 'basic': 1.0, 'the': 1.0, 'included': 1.0, 'nice': 1.0, 'little': 1.0, 'product': 1.0, 'be': 1.0, 'pricey': 1.0, 'console': 1.0, 'a': 1.0, 'what': 1.0, 'you': 2.0, 'should': 1.0, 'thank': 1.0, 'in': 1.0, 'for': 1.0, 'get': 1.0, 'it': 1.0}
Word element => {'glad': 1.0, 'handy': 1.0, 'very': 1.0, 'lot': 1.0, 'of': 2.0, 'lots': 1.0, 'to': 1.0, 'bought': 1.0, 'product': 1.0, 'have': 1.0, 'it': 1.0, 'this': 2.0, 'i': 4.0, 'm': 1.0, 'when': 1.0, 'great': 1.0, 'a': 2.0, 'stuff': 1.0, 'is': 1.0, 'different': 1.0, 'carry': 1.0, 'things': 1.0, 'take': 1.0, 'in': 1.0, 'my': 1.0, 'double': 1.0, 'walks': 1.0, 'stroller': 1.0, 'job': 1.0, 'holds': 1.0, 'and': 2.0}
Word element => {'quickly': 1.0, 'clean': 1.0, 'wipes': 1.0, 'on': 1.0, 'money': 1.0, 'and': 2.0, 'i': 1.0, 'your': 1.0, 'bob': 1.0, 'can': 1.0, 'for': 2.0, 'it': 2.0, 'this': 1.0, 'fabric': 1.0, 'have': 2.0, 'the': 1.0, 't': 2.0, 'to': 2.0, 'place': 1.0, 'doesn': 1.0, 'put': 1.0, 'stroller': 1.0, 'imagine': 1.0, 'show': 1.0, 'easy': 1.0, 'cell': 1.0, 'bottles': 1.0, 'not': 1.0, 'having': 1.0, 'dirt': 1.0, 'black': 1.0, 'a': 1.0, 'my': 1.0, 'water': 1.0, 'phone': 1.0, 's': 1.0, 'double': 1.0, 'you': 1.0, 'keys': 1.0}
Word element => {'change': 1.0, 'little': 1.0, 'pocket': 1.0, 'like': 1.0, 'deep': 1.0, 'the': 2.0, 'new': 1.0, 'cup': 1.0, 'my': 1.0, 'for': 1.0, 'bob': 1.0, 'keeping': 1.0, 'be': 1.0, 'tike': 1.0, 'pretty': 1.0, 'jogging': 1.0, 'a': 1.0, 'seem': 1.0, 'double': 1.0, 'and': 1.0, 'do': 1.0, 'giving': 1.0, 'that': 1.0, 'trax360': 1.0, 'on': 1.0, 'it': 2.0, 'this': 1.0, 'tech': 1.0, 'tried': 1.0, 'i': 4.0, 'was': 1.0, 'too': 1.0, 'ended': 1.0, 'up': 1.0, 'anyway': 1.0, 'small': 1.0, 'so': 1.0, 'holders': 1.0, 'stroller': 2.0, 'back': 1.0, 'will': 1.0}
Word element => {'size': 1.0, 'phone': 1.0, 'basics': 1.0, 'hold': 1.0, 'better': 1.0, 'design': 1.0, 'so': 1.0, 'two': 1.0, 'cc': 1.0, 'space': 1.0, 'wasted': 1.0, 'of': 1.0, 'but': 1.0, 'stroller': 1.0, 'keys': 1.0, 'double': 2.0, 'for': 1.0, 'could': 2.0, 'fit': 1.0, 'and': 2.0, 'my': 1.0, 'the': 4.0, 'find': 1.0, 'be': 1.0, 'bought': 1.0, 'drinks': 1.0, 'full': 1.0, 'console': 1.0, 'baby': 2.0, 'lots': 1.0, 'this': 2.0, 'only': 1.0, 'it': 2.0, 'jogger': 2.0, 'i': 2.0, 'does': 2.0, 'is': 1.0, 'trick': 1.0, 'handlebar': 1.0, 'to': 1.0}
Word element => {'hold': 1.0, 'will': 1.0, 'already': 1.0, 'seats': 1.0, 'fairly': 1.0, 'of': 1.0, 'find': 1.0, 'holding': 1.0, 'bottle': 1.0, 'so': 1.0, 'have': 2.0, 'holders': 1.0, 'this': 2.0, 'cup': 1.0, 'my': 1.0, 'really': 1.0, 'is': 3.0, 'it': 1.0, 'backs': 1.0, 'console': 1.0, 'real': 1.0, 'to': 2.0, 'i': 1.0, 'buy': 1.0, 'solid': 1.0, 'm': 1.0, 'phone': 1.0, 'pointless': 1.0, 'flimsy': 1.0, 'used': 1.0, 'nets': 1.0, 'within': 1.0, 'keys': 1.0, 'and': 2.0, 'the': 2.0, 'reach': 1.0, 'you': 1.0, 'cell': 1.0, 'cheaper': 1.0, 'while': 1.0, 'brand': 1.0, 'nice': 1.0, 'water': 2.0, 'could': 1.0, 'a': 2.0, 'for': 1.0, 'product': 1.0, 'bob': 1.0, 'that': 2.0, 'not': 1.0}
Word element => {'bit': 1.0, 'storage': 1.0, 'little': 1.0, 'made': 1.0, 'thing': 1.0, 'have': 1.0, 'they': 1.0, 'space': 1.0, 'pouch': 1.0, 'dead': 1.0, 'bigger': 1.0, 'lot': 1.0, 'of': 1.0, 'there': 1.0, 'is': 2.0, 'six': 1.0, 'could': 1.0, 'spend': 1.0, 'double': 1.0, 'you': 1.0, 'that': 2.0, 'complaint': 1.0, 'its': 1.0, 'on': 2.0, 'works': 1.0, 'since': 1.0, 'well': 1.0, 'funny': 1.0, 'a': 5.0, 'doesn': 1.0, 'stroller': 2.0, 'spans': 1.0, 'hundred': 1.0, 'and': 1.0, 'the': 1.0, 'dollars': 1.0, 't': 1.0, 'this': 2.0, 'with': 1.0, 'it': 1.0, 'only': 1.0, 'come': 1.0, 'cup': 1.0, 'holder': 1.0}
Word element => {'purchasing': 1.0, 'in': 1.0, 'binky': 1.0, 's': 1.0, 'keys': 1.0, 'small': 1.0, 'the': 1.0, 'on': 1.0, 'a': 2.0, 'getting': 1.0, 'and': 2.0, 'handy': 1.0, 'pocket': 1.0, 'very': 1.0, 'recommend': 1.0, 'bottles': 1.0, 'we': 3.0, 'whether': 1.0, 'pouch': 1.0, 'product': 2.0, 'phones': 1.0, 'to': 3.0, 'wanted': 1.0, 'unsure': 1.0, 'purchase': 1.0, 'bob': 2.0, 'have': 1.0, 'it': 1.0, 'this': 2.0, 'with': 1.0, 'side': 1.0, 'is': 1.0, 'stroller': 1.0, 'put': 1.0, 'but': 1.0, 'i': 2.0, 'when': 1.0, 'm': 1.0, 'nice': 1.0, 'glad': 1.0, 'deep': 1.0, 'water': 1.0, 'our': 3.0, 'were': 1.0, 'that': 1.0, 'did': 1.0}
Word element => {'daughter': 1.0, 'months': 1.0, '5': 1.0, 'first': 1.0, 've': 1.0, 'back': 1.0, 'looking': 1.0, 'else': 1.0, 'everything': 1.0, 'with': 1.0, 'along': 1.0, 'life': 1.0, 'just': 1.0, 'taken': 1.0, 'special': 1.0, 'need': 1.0, 'machine': 1.0, 'washing': 1.0, 'in': 2.0, 'they': 1.0, 'peed': 1.0, 'also': 1.0, 'sat': 1.0, 'care': 1.0, 'anything': 1.0, 'protected': 1.0, 'half': 1.0, 'has': 2.0, 'spitter': 1.0, 'is': 2.0, 'she': 3.0, 'it': 3.0, 'was': 2.0, 'my': 2.0, 'upper': 1.0, 'size': 1.0, 'that': 1.0, 'larger': 1.0, 'there': 1.0, 'of': 3.0, 'even': 1.0, 'clean': 1.0, 'her': 2.0, 'rolls': 1.0, 'have': 3.0, 'any': 1.0, 'sleep': 1.0, 'to': 1.0, 'all': 1.0, 'ordered': 1.0, 'many': 1.0, 'rug': 1.0, 'them': 3.0, 'baby': 1.0, 'off': 1.0, 'or': 1.0, 'beautifully': 1.0, 'these': 1.0, 'diaper': 2.0, 'two': 1.0, 'i': 7.0, 'when': 1.0, 'an': 1.0, 'play': 1.0, 'and': 5.0, 'on': 7.0, 'wash': 1.0, 'don': 1.0, 'up': 1.0, 'scoots': 1.0, 'over': 3.0, 'belly': 1.0, 'pictures': 1.0, 'pooped': 1.0, 'wish': 1.0, 'this': 3.0, 'the': 4.0, 'place': 1.0, 'd': 1.0, 'product': 1.0, 'love': 1.0, 'bed': 1.0, 'drooled': 1.0, 'sized': 1.0, 'hand': 1.0, 'version': 1.0, 't': 1.0, 's': 2.0, 'a': 2.0, 'we': 1.0, 'four': 1.0, 'pregnant': 1.0, 'change': 1.0, 'major': 1.0, 'now': 2.0, 'free': 1.0, 'time': 1.0}
Word element => {'like': 1.0, 'really': 1.0, 'much': 1.0, 'twice': 1.0, 'as': 1.0, 'changing': 2.0, 'it': 4.0, 'use': 1.0, 'keeping': 1.0, 'job': 1.0, 'great': 1.0, 'the': 1.0, 'a': 1.0, 'does': 1.0, 'when': 1.0, 'cushy': 1.0, 'get': 1.0, 'and': 3.0, 'dry': 1.0, 'need': 1.0, 'nice': 1.0, 'area': 1.0, 'clean': 1.0, 'bigger': 1.0, 'diapers': 1.0, 'half': 1.0, 'than': 1.0, 's': 1.0, 'fold': 1.0, 'we': 3.0, 'in': 1.0}
Word element => {'review': 1.0, 'testing': 1.0, 'provided': 1.0, 'was': 1.0, 'really': 1.0, 'hold': 1.0, 'enough': 1.0, 'be': 1.0, 'nicely': 1.0, 'washes': 1.0, 'furniture': 1.0, 'their': 1.0, 'especially': 1.0, 'with': 1.0, 'trouble': 1.0, 'having': 1.0, 'vehicle': 1.0, 'who': 1.0, 'older': 1.0, 'seat': 2.0, 'chair': 1.0, 'good': 1.0, 'up': 2.0, 'around': 1.0, 'on': 2.0, 'absorbent': 1.0, 'take': 1.0, 'baby': 1.0, 'many': 2.0, 'times': 2.0, 'or': 5.0, 'let': 1.0, 'bunch': 1.0, 'those': 3.0, 'not': 3.0, 'play': 1.0, 'and': 5.0, 'babies': 2.0, 'that': 2.0, 'to': 6.0, 'pads': 1.0, 'sample': 1.0, 'big': 1.0, 'great': 3.0, 'size': 1.0, 'but': 3.0, 'multi': 1.0, 'have': 1.0, 'can': 1.0, 'so': 1.0, 'moisture': 1.0, 'small': 1.0, 'a': 9.0, 's': 1.0, 't': 1.0, 'since': 1.0, 'for': 7.0, 'wish': 1.0, 'kids': 1.0, 'this': 3.0, 'had': 3.0, 'use': 1.0, 'seems': 1.0, 'off': 1.0, 'just': 2.0, 'uses': 2.0, 'well': 1.0, 'i': 3.0, 'person': 1.0, 'of': 2.0, 'the': 1.0, 'my': 1.0, 'may': 2.0, 'want': 2.0, 'certainly': 1.0, 'if': 2.0, 'at': 1.0, 'is': 9.0, 'it': 9.0, 'although': 2.0, 'were': 1.0, 'little': 1.0, 'you': 9.0, 'things': 1.0, 'air': 1.0, 'out': 1.0, 'don': 1.0, 'accident': 1.0, 'mark': 1.0, 'right': 1.0, 'perfect': 1.0, 'bed': 1.0, 'changing': 1.0, 'floor': 1.0, 'there': 1.0, 'are': 2.0, 'soft': 1.0, 'anything': 1.0, 'beyond': 1.0, 've': 2.0, 'an': 2.0, 'other': 1.0, 'ever': 1.0, 'lay': 1.0, 'blue': 1.0, 'pad': 3.0, 'surgery': 1.0, 'roll': 1.0, 'when': 1.0, 'sit': 1.0, 'as': 2.0, 'horrible': 1.0, 'diaper': 1.0, 'body': 1.0, 'know': 1.0, 'period': 1.0, 'purpose': 1.0, 'from': 1.0, 'lot': 2.0, 'too': 2.0, 'one': 1.0, 'plastic': 1.0, 'how': 1.0, 'they': 1.0, 'sticking': 1.0, 'alternative': 1.0, 'leakage': 2.0, 'thick': 1.0, 'part': 1.0, 'during': 1.0, 'your': 3.0, 'seepage': 1.0}
Word element => {'time': 1.0, 'naked': 1.0, 'and': 1.0, 'waterproof': 1.0, 'on': 2.0, 'is': 1.0, 'soft': 1.0, 's': 3.0, 'perfect': 1.0, 'also': 1.0, 'use': 1.0, 'pad': 1.0, 'with': 1.0, 'it': 4.0, 'this': 1.0, 'great': 1.0, 'the': 2.0, 'we': 3.0, 'size': 1.0, 'put': 1.0, 'our': 2.0, 'for': 1.0, 'love': 1.0, 'bed': 2.0, 'when': 1.0, 'us': 1.0, 'baby': 2.0}
Word element => {'day': 1.0, 'from': 1.0, 'using': 1.0, 'stop': 1.0, 'dont': 1.0, 'this': 1.0, 'first': 1.0, 'product': 1.0, 'buy': 1.0, 'it': 2.0, 'the': 1.0, 'my': 1.0, 'and': 1.0, 'kid': 1.0, 'i': 1.0, 'bad': 4.0, 'hearts': 1.0, 'shoulder': 1.0}
Word element => {'money': 1.0, 'out': 1.0, 'thing': 1.0, 'actually': 1.0, 'whether': 1.0, 'see': 1.0, 'while': 1.0, 'wait': 1.0, 'not': 2.0, 'shell': 1.0, 'great': 1.0, 'might': 3.0, 'me': 1.0, 'something': 1.0, 'hand': 1.0, 'around': 1.0, 'pass': 1.0, 'large': 1.0, 'have': 1.0, 'family': 1.0, 'range': 1.0, 'age': 1.0, 'group': 1.0, 'different': 1.0, 'sees': 1.0, 'who': 1.0, 'provider': 1.0, 'on': 2.0, 'independently': 1.0, 'were': 2.0, 'only': 1.0, 'they': 1.0, 'then': 1.0, 'take': 1.0, 'reviews': 1.0, 'determination': 1.0, 'kids': 1.0, 'ready': 1.0, 'need': 1.0, 'or': 4.0, 'upright': 1.0, 'special': 1.0, 'used': 1.0, 'other': 1.0, 'for': 5.0, 'before': 2.0, 'what': 2.0, 'review': 1.0, 'wish': 1.0, 'a': 14.0, 's': 1.0, 'go': 1.0, 'are': 1.0, 'part': 1.0, 'possible': 1.0, 'developmentally': 1.0, 'modern': 1.0, 'seen': 1.0, 'you': 8.0, 'to': 5.0, 'be': 2.0, 'i': 2.0, 'old': 1.0, 'lower': 1.0, 'needs': 1.0, 'can': 1.0, 'so': 1.0, 've': 1.0, 'children': 1.0, 'with': 2.0, 'it': 6.0, 'nice': 1.0, 'as': 1.0, 'leave': 1.0, 'say': 1.0, 'desirable': 1.0, 'downs': 1.0, 'online': 1.0, 'and': 1.0, 'enough': 1.0, 're': 1.0, 'especially': 1.0, 'site': 1.0, 'leading': 1.0, 'strings': 1.0, 'onto': 1.0, 'which': 1.0, 'like': 1.0, 'ribbons': 1.0, 'sewn': 1.0, 'year': 1.0, 'product': 1.0, 'child': 1.0, 'clothes': 1.0, 'daycare': 1.0, 'from': 1.0, 'fashioned': 1.0, 'purpose': 1.0, 'but': 2.0, 'directly': 1.0, 'back': 1.0, 'most': 1.0, 'is': 3.0, 'look': 1.0, 'at': 2.0, 'rating': 1.0, 'lot': 2.0, 'adults': 1.0, 'kind': 2.0, 'the': 6.0, 'of': 7.0, 'problems': 1.0, 'that': 3.0, 'parents': 1.0, 'selling': 1.0, 'famous': 1.0, 'auction': 1.0, 'walk': 1.0, 'about': 1.0, 'in': 2.0, 'families': 1.0, 'their': 1.0, 'every': 1.0, 'if': 4.0, 'listings': 1.0, 'sounds': 1.0, 'got': 1.0, 'use': 2.0, 'this': 6.0, 'few': 1.0, 'without': 1.0, 'days': 1.0, 'couple': 1.0, 'weeks': 1.0}
Word element => {'though': 1.0, 'physical': 1.0, 'you': 1.0, 'delayed': 1.0, 'may': 1.0, 'who': 1.0, 'therapist': 1.0, 'in': 1.0, 'using': 1.0, 'for': 1.0, 'check': 1.0, 'a': 2.0, 'another': 1.0, 'intervention': 1.0, 'learning': 1.0, 'to': 3.0, 'weight': 1.0, 'feet': 1.0, 'it': 1.0, 'with': 1.0, 'this': 1.0, 'use': 1.0, 'child': 3.0, 'therapeutic': 1.0, 'assist': 2.0, 'walk': 1.0, 'and': 2.0, 'i': 1.0, 'or': 1.0, 'your': 1.0, 'developmentally': 1.0, 'tolerating': 1.0, 'on': 2.0, 'before': 1.0, 'his': 1.0, 'legs': 1.0, 'be': 1.0, 'tool': 1.0}
Word element => {'for': 1.0, 'up': 1.0, 'heads': 1.0, 'worth': 1.0, 'holding': 1.0, 'quicker': 1.0, 'natural': 1.0, 'over': 2.0, 'back': 1.0, 'it': 3.0, 'walking': 1.0, 'better': 1.0, 'than': 2.0, 'all': 1.0, 'as': 1.0, 'day': 1.0, 'much': 1.0, 'free': 1.0, 'your': 1.0, 'so': 1.0, 'you': 1.0, 's': 2.0, 'wings': 1.0, 'balancing': 1.0, 'helps': 1.0, 'breaking': 1.0, 'them': 1.0, 'well': 1.0, 'a': 1.0, 'and': 1.0, 'get': 1.0, 'hands': 2.0, 'bending': 1.0, 'lot': 1.0, 'their': 4.0, 'balance': 1.0}
Word element => {'definately': 1.0, 'old': 1.0, '1': 1.0, 'under': 1.0, 'use': 2.0, 'want': 1.0, 'why': 1.0, 'has': 1.0, 'that': 3.0, 'kids': 1.0, 'minute': 1.0, 'a': 4.0, 'steps': 1.0, 't': 1.0, 'probably': 1.0, 'your': 1.0, 'idea': 1.0, 'am': 1.0, 'when': 1.0, 'you': 2.0, 'in': 2.0, 'trying': 1.0, 'before': 2.0, 'difficulty': 1.0, 'are': 1.0, 'balance': 1.0, 'criticisizes': 1.0, 'straps': 1.0, 'help': 3.0, 'house': 1.0, 'holding': 1.0, 'after': 2.0, 'methods': 1.0, 'have': 2.0, 'think': 1.0, 'exhausting': 1.0, 'to': 10.0, 'falls': 1.0, 'as': 1.0, 'about': 1.0, 'walk': 5.0, 'he': 5.0, 'all': 1.0, 'other': 1.0, 'son': 2.0, 'seem': 1.0, 'for': 4.0, 'relieving': 1.0, 'struggled': 1.0, 'ankles': 1.0, 'bought': 1.0, 'uncomfortable': 1.0, 'well': 1.0, 'i': 7.0, 'the': 2.0, 'of': 1.0, 'with': 3.0, 'his': 2.0, 'around': 1.0, 'is': 1.0, 'my': 3.0, 'learning': 2.0, 'me': 1.0, 'not': 3.0, 'getting': 1.0, 'so': 1.0, 'can': 1.0, 'but': 3.0, 'knees': 1.0, 'hips': 1.0, 'anyone': 1.0, 'and': 4.0, 'this': 7.0, 'few': 1.0, 'own': 1.0, 'hypermobility': 1.0, 'consider': 1.0, 'stumbles': 2.0, 'on': 2.0, 'practices': 1.0, 'walking': 1.0, 'while': 2.0, 'from': 1.0, 'hold': 1.0, 'simply': 1.0, 'purchase': 1.0, 'only': 1.0, 'one': 1.0, 'try': 1.0, 'would': 2.0, 'strain': 1.0, 'back': 1.0, 'also': 1.0, 'item': 1.0, 'there': 1.0, 'made': 1.0, 'doesn': 1.0, 'difficulties': 1.0, 'was': 1.0, 'normally': 1.0, 'him': 4.0, 'it': 3.0, 'thought': 1.0, 'had': 1.0, 'year': 1.0, 'child': 3.0, 'if': 1.0, 'decide': 1.0, 'whether': 1.0}
Word element => {'lovelovelove': 1.0, 'herself': 1.0, 'hurting': 1.0, 'on': 1.0, 'literally': 1.0, 'rein': 1.0, 'places': 1.0, 'only': 1.0, '13': 1.0, 'need': 2.0, 'or': 2.0, 'day': 1.0, 'we': 5.0, 'got': 1.0, 'steps': 1.0, 's': 3.0, 't': 1.0, 'pro': 1.0, 'trying': 1.0, 'be': 1.0, 'it': 1.0, 'although': 1.0, 'item': 1.0, 'our': 2.0, 'to': 5.0, 'daddy': 1.0, 'was': 1.0, 'this': 1.0, 'few': 1.0, 'corners': 1.0, 'but': 1.0, 'backs': 1.0, '10': 1.0, 'later': 1.0, 'being': 1.0, 'want': 1.0, 'of': 1.0, 'the': 4.0, 'wings': 1.0, 'anxiously': 1.0, 'swing': 1.0, 'a': 5.0, 'confident': 1.0, 'with': 1.0, 'first': 2.0, 'taking': 1.0, 'us': 2.0, 'really': 1.0, 'started': 1.0, 'them': 2.0, 'my': 1.0, 'where': 2.0, 'girl': 1.0, 'now': 1.0, 'almost': 1.0, '2': 1.0, 'killing': 1.0, 'chest': 1.0, 'as': 1.0, 'falls': 1.0, 'running': 1.0, 'have': 1.0, 'hovering': 1.0, 'keep': 5.0, 'makes': 1.0, 'bumps': 1.0, 'months': 2.0, 'her': 6.0, 'before': 1.0, '1': 1.0, 'padded': 1.0, 'feel': 1.0, 'crawled': 1.0, 'and': 9.0, 'wanted': 1.0, 'walking': 3.0, 'little': 1.0, 'two': 1.0, 'used': 1.0, 'more': 2.0, 'around': 1.0, 'after': 1.0, 'that': 1.0, 'afraid': 1.0, 'into': 1.0, 'even': 1.0, 'win': 2.0, 'took': 1.0, 'house': 1.0, 'area': 1.0, 'like': 1.0, 'so': 1.0, 'is': 1.0, 'at': 2.0, 'floors': 1.0, 'straps': 1.0, 'having': 1.0, 'she': 8.0, 'hunched': 1.0, 'hard': 1.0, 'over': 1.0, 'don': 1.0, 'from': 2.0, 'feels': 1.0, 'allow': 1.0, 'mobility': 1.0, 'run': 1.0, 'in': 2.0, 'off': 1.0, 'areas': 1.0, 'supported': 1.0, 'sharp': 1.0, 'things': 1.0, 'getting': 1.0}
Word element => {'them': 1.0, 'life': 1.0, 'imagine': 1.0, 'improved': 1.0, 'balance': 1.0, 'now': 1.0, 'to': 1.0, 'over': 1.0, 'saved': 1.0, 'is': 1.0, 'we': 1.0, 'my': 2.0, 't': 1.0, 'the': 2.0, 'do': 1.0, 'and': 3.0, 'so': 1.0, 'walk': 1.0, 'part': 1.0, 'her': 3.0, 'i': 2.0, 'loves': 1.0, 'drastically': 1.0, 'walking': 1.0, 'daughter': 1.0, 'for': 1.0, 'wings': 1.0, 'hours': 1.0, 'without': 1.0, 'can': 2.0, 'around': 1.0, 'has': 2.0, 'of': 1.0, 'hands': 1.0, 'bending': 1.0, 'she': 1.0, 'from': 1.0, 'best': 2.0, 'hold': 1.0, 'times': 1.0, 'back': 1.0, 'but': 1.0}
Word element => {'towel': 1.0, 'to': 1.0, 'went': 1.0, 'and': 1.0, 'on': 2.0, 'is': 1.0, 'much': 1.0, 'your': 1.0, 'i': 2.0, 'too': 1.0, 'not': 2.0, 'but': 1.0, 'put': 1.0, 'back': 2.0, 'will': 1.0, 'baby': 1.0, 'few': 1.0, 'stress': 1.0, 'then': 1.0, 'feel': 1.0, 'times': 1.0, 'like': 1.0, 'this': 1.0, 'it': 2.0, 'that': 1.0, 'using': 1.0, 'comfortable': 1.0, 'used': 1.0, 'a': 2.0}
Word element => {'needed': 1.0, 'three': 1.0, 'or': 1.0, 'useful': 1.0, 'great': 1.0, 'there': 1.0, 'hung': 1.0, 'just': 1.0, 'easy': 1.0, 'it': 5.0, 'this': 2.0, 'only': 2.0, 'walking': 1.0, 'when': 3.0, 'was': 4.0, 'to': 4.0, 'transitional': 1.0, 'hold': 1.0, 'two': 1.0, 'i': 1.0, 'but': 1.0, 'babys': 1.0, 'bend': 1.0, 'my': 1.0, 'put': 1.0, 'on': 1.0, 'product': 1.0, 'for': 2.0, 'baby': 4.0, 'wouldnt': 1.0, 'niece': 1.0, 'so': 2.0, 'walk': 1.0, 'grandma': 1.0, 'got': 1.0, 'even': 1.0, 'wearing': 1.0, 'part': 1.0, 'have': 1.0, 'straps': 1.0, 'sit': 1.0, 'hands': 1.0, 'the': 5.0, 'about': 1.0, 'bulky': 1.0, 'really': 1.0, 'didnt': 1.0, 'little': 1.0, 'mind': 1.0, 'though': 1.0, 'a': 2.0, 'middle': 1.0, 'not': 2.0, 'her': 1.0, 'good': 1.0, 'more': 1.0, 'is': 2.0, 'mobile': 1.0, 'months': 1.0, 'bought': 1.0, 'decided': 1.0, 'starting': 1.0, 'and': 2.0, 'play': 1.0, 'in': 1.0, 'of': 1.0}
Word element => {'product': 1.0, 'disappointing': 1.0, 'anybody': 1.0, 'would': 1.0, 'same': 1.0, 'exact': 1.0, 'we': 1.0, 'problems': 1.0, 'old': 1.0, 'i': 4.0, 'tried': 1.0, '8': 1.0, 'daughter': 1.0, 'when': 1.0, 'walking': 1.0, 'gave': 1.0, 'time': 1.0, 'registry': 1.0, 'had': 1.0, 'standing': 1.0, 'this': 2.0, 'with': 1.0, 'about': 1.0, 'turned': 1.0, 'recommend': 1.0, 'was': 1.0, 'all': 1.0, 'to': 2.0, 'got': 1.0, 'item': 1.0, 'off': 1.0, 'the': 2.0, 'my': 2.0, 'very': 2.0, 'and': 4.0, 'gift': 1.0, 'on': 1.0, 'put': 1.0, 'her': 2.0, 'help': 1.0, 'up': 1.0, 'it': 4.0, 'she': 1.0, 'did': 1.0, 'not': 2.0, 'like': 1.0, 'excited': 1.0, 'seemed': 1.0, 'see': 1.0, 'other': 1.0, 'reviews': 1.0, 'at': 2.0, 'who': 1.0, 'months': 1.0, 'uncomfortable': 1.0, 'one': 1.0, 'star': 1.0}
Word element => {'over': 1.0, 'have': 1.0, 'do': 1.0, 'not': 2.0, 'started': 1.0, 'stand': 1.0, '8': 1.0, 'i': 2.0, 'old': 1.0, 'loves': 1.0, 'this': 2.0, 'walk': 1.0, 'he': 4.0, 'first': 1.0, 'it': 2.0, 'aready': 1.0, 'of': 1.0, 'the': 1.0, 'great': 1.0, 'bend': 1.0, 'my': 2.0, 'happy': 1.0, 'time': 1.0, 'all': 1.0, 'to': 4.0, 'as': 2.0, 'months': 1.0, 'at': 1.0, 'you': 1.0, 'when': 1.0, 'seem': 1.0, 'son': 1.0, 'gets': 1.0, 's': 1.0, 't': 1.0, 'going': 1.0, 'on': 1.0, 'put': 1.0, 'but': 1.0, 'anymore': 1.0, 'doesn': 1.0, 'back': 1.0, 'trying': 1.0, 'him': 2.0, 'after': 1.0, 'with': 2.0, 'mind': 1.0, 'around': 1.0, 'is': 1.0, 'product': 1.0, 'for': 1.0, 'well': 1.0}
Word element => {'wings': 1.0, 'wouldn': 1.0, 'hanging': 1.0, 'won': 1.0, 'their': 1.0, 'stability': 1.0, 'doesn': 1.0, 'support': 1.0, 'lining': 1.0, 'blue': 1.0, 'by': 1.0, 'juppy': 1.0, 'onthe': 1.0, 'going': 1.0, 'normal': 1.0, 'back': 2.0, 'went': 1.0, 'while': 1.0, 'underarms': 3.0, 'into': 2.0, 'bought': 1.0, 'one': 2.0, 'didn': 2.0, 'backward': 1.0, 'or': 2.0, 'but': 1.0, 'forward': 1.0, 'either': 1.0, 'child': 2.0, 'my': 1.0, 'walker': 1.0, 'time': 2.0, 'after': 3.0, 'expect': 1.0, 'at': 2.0, 'if': 2.0, 'start': 1.0, 'wanted': 2.0, 'short': 1.0, '15': 1.0, 'was': 2.0, 'store': 2.0, 'minutes': 1.0, 'to': 12.0, 'body': 1.0, 'as': 1.0, 'be': 2.0, 'her': 6.0, 'last': 2.0, 'online': 1.0, 'see': 1.0, 'in': 7.0, 'r': 1.0, 'only': 1.0, 'first': 1.0, 'this': 1.0, 'circulation': 1.0, 'it': 9.0, 'baby': 1.0, 'she': 2.0, 'band': 1.0, 'old': 1.0, 'i': 6.0, 'walking': 2.0, 'us': 1.0, 'able': 1.0, 'using': 1.0, 'he': 1.0, 'immediately': 1.0, 'lean': 1.0, 'available': 1.0, 'legs': 1.0, 'months': 1.0, 'get': 1.0, 't': 5.0, 'a': 4.0, 'losing': 1.0, 'that': 4.0, 'times': 2.0, 'when': 1.0, 'managed': 1.0, 'give': 1.0, 'feeling': 1.0, 'sense': 1.0, 'stand': 1.0, 'the': 14.0, 'of': 2.0, 'longer': 1.0, 'independently': 1.0, 'recommend': 1.0, 'full': 2.0, 'were': 2.0, 'decided': 2.0, 'used': 3.0, 'couple': 1.0, 'cutting': 1.0, 'out': 1.0, 'around': 1.0, 'spurts': 1.0, 'less': 1.0, 'really': 1.0, 'care': 1.0, 'other': 1.0, 'checking': 1.0, '6': 1.0, 'chest': 1.0, 'being': 1.0, 'very': 1.0, 'noticed': 1.0, 'long': 1.0, 'discolored': 1.0, 'than': 1.0, 'started': 2.0, 'loses': 1.0, 'local': 1.0, 'complain': 1.0, 'babies': 1.0, 'more': 1.0, 'grabbed': 1.0, 'we': 3.0, 'take': 1.0, 'anyone': 1.0, 'and': 5.0, 'arms': 3.0, 'cut': 1.0, 'gives': 1.0, 'they': 2.0, 'from': 1.0, 'wraps': 1.0}
Word element => {'walking': 1.0, 'this': 1.0, 'way': 1.0, 'great': 1.0, 'it': 1.0, 'is': 2.0, 'a': 2.0, 'baby': 1.0, 'little': 1.0, 'hard': 1.0, 'get': 2.0, 'but': 1.0, 'used': 2.0, 'at': 1.0, 'to': 4.0, 'first': 1.0}
Word element => {'their': 1.0, 'have': 1.0, 'back': 2.0, 'wonderful': 1.0, 'device': 1.0, 'tugs': 1.0, 'them': 3.0, 'child': 1.0, 'over': 1.0, 'up': 1.0, 'crawls': 1.0, 'and': 3.0, 'put': 1.0, 'on': 3.0, 'confident': 1.0, 'more': 1.0, 'is': 3.0, 'tell': 1.0, 'me': 2.0, 'you': 1.0, 'when': 1.0, 'walking': 1.0, 'going': 1.0, 'a': 1.0, 'wants': 1.0, 'son': 2.0, 'for': 5.0, 'came': 1.0, 'break': 1.0, 'physical': 1.0, 'teaching': 1.0, 'through': 1.0, 'bend': 1.0, 'my': 4.0, 'our': 1.0, 'to': 10.0, 'born': 1.0, 'longer': 1.0, '8': 1.0, 'no': 1.0, 'about': 1.0, 'thing': 1.0, 'been': 1.0, 'because': 1.0, 'hung': 1.0, 'now': 2.0, 'weeks': 1.0, 'would': 1.0, 'premature': 1.0, 'year': 1.0, 'his': 1.0, 'time': 1.0, 'of': 1.0, 'banister': 1.0, 'this': 3.0, 'it': 1.0, 'first': 1.0, 'anyone': 1.0, 'him': 2.0, 'learn': 1.0, 'therapist': 1.0, 'well': 1.0, 'has': 1.0, 'recommended': 1.0, 'therapy': 1.0, 'these': 3.0, 'wings': 1.0, 'who': 1.0, 'at': 1.0, 'let': 1.0, 'i': 5.0, 'recommend': 1.0, 'was': 2.0, 'apprehensive': 1.0, 'had': 1.0, 'thought': 1.0, 'teach': 1.0, 'he': 4.0, 'walk': 4.0, 'how': 2.0, 'work': 1.0, 'can': 1.0}
Word element => {'how': 1.0, 'learning': 1.0, 'walk': 1.0, 'very': 1.0, 'and': 1.0, 'like': 1.0, 'seems': 1.0, 'in': 1.0, 'this': 2.0, 'put': 1.0, 'a': 1.0, 'he': 1.0, 'good': 1.0, 'i': 1.0, 'happy': 1.0, 'try': 1.0, 'is': 1.0, 'son': 1.0, 'product': 1.0, 'to': 2.0, 'my': 1.0}
Word element => {'own': 1.0, 'way': 1.0, 'a': 1.0, 'around': 1.0, 'spitfire': 1.0, 'little': 1.0, 'on': 1.0, 'over': 1.0, 'fits': 1.0, 'one': 1.0, 'i': 1.0, 'recently': 1.0, 'the': 1.0, 'more': 1.0, 'great': 2.0, 'daughter': 1.0, 'gave': 1.0, 'to': 3.0, 'holding': 1.0, 'absolutely': 1.0, 'gift': 1.0, 'walk': 1.0, 'so': 1.0, 'said': 1.0, 'is': 1.0, 'it': 3.0, 'this': 1.0, 'loves': 1.0, 'of': 1.0, 'no': 1.0, 'my': 1.0, 'gives': 1.0, 'crying': 1.0, 'best': 1.0, 'friends': 1.0, 'get': 1.0, 'and': 1.0, 'hands': 1.0, 'she': 1.0, 'her': 2.0}
Word element => {'money': 1.0, 'the': 1.0, 'worth': 1.0, 'this': 1.0, 'buy': 1.0, 'product': 1.0, 'to': 1.0, 'urge': 1.0, 'under': 1.0, 'anyone': 1.0, 'looked': 1.0, 'up': 1.0, 'very': 1.0, 'rises': 1.0, 'child': 1.0, 'arms': 1.0, 'i': 1.0, 'uncomfortable': 1.0, 'for': 1.0, 'not': 2.0, 'would': 1.0}
Word element => {'better': 1.0, 'get': 1.0, 'be': 1.0, 'personally': 1.0, 'her': 2.0, 'helped': 1.0, 'because': 1.0, 'its': 1.0, 'or': 2.0, 'balance': 1.0, 'off': 1.0, 'whether': 1.0, 'took': 1.0, 'just': 1.0, 'wanted': 1.0, 'issues': 1.0, 'had': 1.0, 'alternative': 1.0, 'see': 1.0, 'this': 3.0, 'kids': 1.0, 'excited': 1.0, 'great': 1.0, 'not': 3.0, 'think': 2.0, 'almost': 1.0, 'but': 1.0, 'hold': 1.0, 'like': 2.0, 'learn': 1.0, 'lol': 1.0, 'being': 1.0, 'old': 1.0, 'i': 6.0, 'attest': 1.0, 'helps': 1.0, 'hands': 1.0, 'the': 2.0, 'such': 1.0, 'these': 1.0, 'wanting': 1.0, 'infants': 1.0, 'fact': 2.0, 'my': 2.0, 'didnt': 1.0, 'really': 3.0, 'is': 1.0, 'once': 1.0, 'of': 2.0, 'professionally': 1.0, 'up': 1.0, 'in': 1.0, 'daughter': 2.0, 'when': 1.0, 'walking': 1.0, 'she': 5.0, 'it': 4.0, 'with': 1.0, '9': 1.0, 'months': 1.0, 'bought': 1.0, 'one': 2.0, 'afraid': 1.0, 'product': 1.0, 'for': 2.0, 'recommend': 1.0, 'was': 3.0, 'all': 1.0, 'to': 6.0, 'before': 1.0, 'that': 1.0, 'never': 1.0, 'alot': 1.0, 'have': 1.0, 'worked': 1.0, '7': 1.0, 'and': 3.0, 'no': 1.0, 'about': 1.0, 'yanking': 1.0, 'years': 1.0, 'arms': 1.0, 'walk': 2.0}
Word element => {'works': 1.0, 'great': 1.0, 'need': 1.0, 'think': 1.0, 'no': 1.0, 'let': 1.0, 'learn': 1.0, 'go': 1.0, 'hour': 1.0, 'for': 4.0, 'bought': 1.0, 'within': 2.0, 'giving': 1.0, 'here': 1.0, 'be': 1.0, 'grab': 2.0, 'until': 1.0, 'seems': 1.0, 'own': 3.0, 'this': 3.0, 'kids': 1.0, 'it': 6.0, 'she': 7.0, 'one': 2.0, 'try': 2.0, 'just': 3.0, 'day': 1.0, 'as': 4.0, 'how': 1.0, 'our': 4.0, 'to': 7.0, 'everything': 1.0, 'month': 1.0, 'same': 1.0, 'being': 1.0, 'still': 1.0, 'if': 1.0, 'walk': 2.0, 'wasn': 1.0, 'will': 1.0, 'could': 3.0, 't': 5.0, 'us': 1.0, 'walking': 1.0, 'daughter': 1.0, 'teach': 1.0, 'old': 1.0, 'do': 1.0, 'put': 1.0, 'idea': 1.0, 'your': 1.0, '12': 1.0, 'on': 6.0, 'long': 1.0, 'negative': 1.0, 'around': 1.0, 'caught': 1.0, 'touching': 1.0, 'was': 4.0, 'fingers': 3.0, 'there': 1.0, 'soon': 1.0, 'perfectly': 1.0, 'get': 1.0, 'climbing': 1.0, 'couldn': 1.0, 'balance': 1.0, 're': 2.0, 'but': 2.0, 'most': 1.0, 'needed': 3.0, 'house': 1.0, 'confidence': 1.0, 'her': 9.0, 'use': 1.0, 'and': 6.0, 'arms': 1.0, 'young': 1.0, 'that': 1.0, 'didn': 3.0, 'dowels': 2.0, 'running': 1.0, 'have': 2.0, 'hold': 1.0, 'like': 1.0, 'immediately': 1.0, 'earlier': 1.0, 'the': 6.0, 'of': 3.0, 'then': 1.0, 'fine': 1.0, 'we': 6.0, 'take': 1.0, 'reviews': 1.0, 'plunge': 1.0, 'they': 3.0, 'with': 2.0, 'really': 1.0, 'i': 3.0, 'thinking': 1.0, 've': 2.0, 'something': 3.0, 'heard': 3.0, 'thing': 1.0, 'used': 1.0, 'kid': 2.0, 'done': 1.0, 'wanted': 1.0, 'saw': 1.0, 'wooden': 2.0, 'you': 3.0, 'them': 2.0}
Word element => {'for': 1.0, 'out': 1.0, 'it': 2.0, 'might': 1.0, 'this': 1.0, 'crippled': 1.0, 'is': 1.0, 'my': 1.0, 'the': 1.0, 'what': 1.0, 'i': 1.0, 'work': 1.0, 'not': 1.0, 'expected': 1.0, 'baby': 1.0, 'ever': 1.0, 'hardly': 1.0, 'dog': 1.0, 'used': 1.0}
Word element => {'like': 1.0, 'upset': 1.0, 'quite': 1.0, 'but': 1.0, 'put': 1.0, 'time': 1.0, 'times': 1.0, 'hold': 1.0, 'thought': 1.0, 'got': 1.0, 'every': 1.0, 'instead': 1.0, 'would': 1.0, 'not': 1.0, 'because': 1.0, 'hands': 1.0, 'she': 3.0, 'dunno': 1.0, 'teach': 1.0, 'he': 2.0, 'it': 4.0, 'this': 1.0, 'excited': 1.0, 'does': 1.0, 'his': 1.0, 'her': 1.0, 'how': 1.0, 'was': 1.0, 'to': 3.0, 'several': 1.0, 'bodhi': 2.0, 'help': 1.0, 'on': 1.0, 'over': 1.0, 'walk': 1.0, 'get': 1.0, 'and': 1.0, 'sharon': 1.0, 'of': 1.0, 'having': 1.0, 'tried': 1.0, 'bend': 1.0}
Word element => {'no': 1.0, 's': 1.0, 'as': 1.0, 'want': 1.0, 'high': 1.0, 'qualtity': 1.0, 'longer': 1.0, 'feel': 1.0, 'stock': 1.0, 'it': 2.0, 'love': 1.0, 'i': 2.0, 'bad': 1.0, 'this': 1.0, 'bag': 1.0, 'in': 1.0, 'for': 1.0, 'those': 1.0, 'who': 1.0}
Word element => {'back': 1.0, 'kicking': 1.0, 'to': 1.0, 'you': 1.0, 'unless': 1.0, 'but': 1.0, 'forest': 1.0, 'state': 1.0, 'used': 1.0, 'long': 1.0, 'fashion': 1.0, 'on': 2.0, 'close': 1.0, 'feet': 1.0, 'punishment': 1.0, 'i': 6.0, 'way': 1.0, 'other': 1.0, 'have': 1.0, 'in': 2.0, 'kick': 1.0, 'year': 1.0, 'from': 2.0, 'open': 1.0, 'stroller': 1.0, 'shd': 1.0, 'will': 2.0, 'last': 1.0, 'lot': 1.0, 'and': 3.0, 'every': 1.0, 'model': 2.0, 'love': 2.0, 'one': 1.0, 'my': 1.0, 'end': 1.0, 'mountain': 1.0, 'steep': 1.0, 'the': 5.0, 'we': 1.0, 's': 1.0, 'a': 5.0, 'altho': 1.0, 'occasionally': 1.0, 'tower': 1.0, 'walk': 2.0, 'time': 2.0, 'so': 1.0, 'bell': 1.0, 'wheels': 2.0, 'unconsciously': 1.0, 'rocky': 1.0, 'compensate': 1.0, 'take': 1.0, 'by': 1.0, 'look': 1.0, 'trails': 1.0, 'be': 2.0, 'swinging': 1.0, 'u': 1.0, 'like': 2.0, 'hand': 1.0, 'it': 2.0, 'of': 1.0}
Word element => {'overall': 1.0, 'done': 1.0, 'of': 1.0, 'out': 1.0, 'was': 2.0, 'he': 2.0, 'years': 1.0, 'buy': 1.0, 'used': 1.0, 'able': 1.0, 'stroller': 3.0, 'an': 1.0, 'early': 1.0, 'toddler': 1.0, 'i': 1.0, 'bought': 1.0, 'be': 1.0, 'my': 2.0, 'and': 3.0, 'with': 2.0, 'it': 4.0, 'first': 1.0, 'only': 1.0, 'is': 2.0, 'strollers': 1.0, 'zippy': 2.0, '1': 1.0, 'great': 2.0, 'the': 4.0, 'love': 1.0, 'for': 2.0, '2004': 1.0, 'in': 2.0, 'all': 1.0, 'to': 4.0, 'seat': 1.0, 'by': 1.0, 'just': 1.0, 'strapped': 1.0, 'want': 1.0, 'if': 1.0, 'your': 1.0, 'on': 1.0, 'top': 1.0, 'they': 1.0, 'are': 1.0, 'little': 1.0, 'time': 1.0, 'so': 1.0, 'easy': 1.0, 'fold': 1.0, 'over': 1.0, 'child': 2.0, 'up': 1.0, 'throw': 1.0, 'purpose': 1.0, 'infant': 1.0, 'car': 1.0, 'a': 2.0, 's': 1.0, 'when': 1.0, 'you': 1.0, 'right': 1.0}
Word element => {'to': 1.0, 'be': 2.0, 'else': 1.0, 'because': 1.0, 'company': 1.0, 'nearly': 1.0, 'the': 1.0, 'you': 1.0, 'buy': 1.0, 'customer': 1.0, 'sucks': 1.0, 'for': 1.0, 'anything': 1.0, 'is': 1.0, 'service': 1.0, 'existent': 1.0, 'this': 1.0, 'should': 1.0, 'non': 1.0, 'price': 1.0, 'motto': 1.0, 'point': 1.0}
Word element => {'side': 1.0, 'small': 1.0, 'basket': 1.0, 'that': 1.0, 'only': 1.0, 'pretty': 1.0, 'cover': 1.0, 'added': 1.0, 'bar': 1.0, 'rain': 1.0, 'snack': 1.0, 'child': 2.0, 'this': 2.0, 'hard': 1.0, 'with': 1.0, 'keys': 1.0, 'bulky': 1.0, 'the': 6.0, 'great': 3.0, 'too': 1.0, 'and': 4.0, 'to': 4.0, 'was': 1.0, 'is': 7.0, 'it': 2.0, 'looks': 1.0, 'so': 1.0, 'window': 1.0, 's': 1.0, 'a': 3.0, 'peg': 1.0, 'pocket': 1.0, 'best': 1.0, 'open': 1.0, 'con': 1.0, 'easy': 2.0, 'cell': 1.0, 'previously': 1.0, 'awesome': 1.0, 'sturdy': 1.0, 'wallet': 1.0, 'stroller': 2.0, 'bumper': 1.0, 'perego': 1.0, 'i': 1.0, 'owened': 1.0, 'navigate': 1.0, 'close': 1.0, 'cool': 1.0, 'tray': 1.0, 'one': 1.0, 'for': 3.0, 'which': 2.0, 'hand': 1.0, 'watch': 1.0, 'good': 1.0, 'construction': 1.0, 'there': 1.0, 'hood': 2.0, 'use': 1.0, 'travel': 1.0, 'phone': 1.0, 'on': 2.0, 'your': 2.0}
Word element => {'itself': 1.0, 'tag': 1.0, 'tags': 1.0, 'son': 1.0, 'is': 1.0, 'not': 1.0, 'my': 1.0, 'the': 2.0, 'as': 2.0, 'actual': 1.0, 'interested': 1.0, 'product': 1.0, 'toy': 1.0, 'in': 1.0}
Word element => {'older': 1.0, 'items': 1.0, 'really': 1.0, 'giraffe': 1.0, 'enjoys': 1.0, 'but': 1.0, 'handle': 1.0, 'for': 2.0, 'well': 1.0, 'easier': 1.0, 'little': 1.0, 'with': 1.0, 'old': 1.0, 'two': 1.0, 'i': 5.0, 'it': 2.0, 'she': 6.0, 'one': 1.0, 'months': 1.0, 'on': 1.0, 'about': 2.0, 'child': 1.0, 'made': 1.0, 'them': 1.0, 'didn': 1.0, 'my': 2.0, 'until': 1.0, 'a': 4.0, 't': 1.0, 'the': 3.0, 'those': 1.0, 'not': 1.0, 'comment': 1.0, 'know': 1.0, 'always': 1.0, 'of': 2.0, 'taggies': 2.0, 'is': 3.0, 'third': 1.0, 'friend': 1.0, 'wish': 1.0, 'this': 1.0, 'taggie': 1.0, '6': 1.0, 'how': 1.0, 'and': 3.0, 'finds': 1.0, 'plays': 1.0, 'tags': 1.0, 'as': 1.0, 'to': 2.0, 'all': 1.0, 'her': 3.0, 'toys': 2.0, 'favorite': 1.0, 'loves': 2.0, 'that': 1.0, 'suggested': 1.0, 'had': 1.0, 'what': 1.0, 'purchased': 1.0, 'book': 2.0, 'they': 1.0, 'are': 1.0}
Word element => {'soft': 1.0, 'cute': 1.0, 'him': 1.0, 'towards': 1.0, 'and': 2.0, 'baby': 1.0, 'big': 1.0, 'as': 2.0, 'can': 1.0, 'animal': 1.0, 'size': 1.0, 'a': 1.0, 'is': 1.0, 'that': 1.0, 'realize': 1.0, 'pull': 1.0, 'my': 1.0, 'the': 3.0, 'of': 1.0, 'started': 1.0, 'because': 1.0, 'month': 1.0, 'tags': 2.0, 's': 2.0, 'for': 1.0, 'he': 3.0, 'it': 4.0, 'this': 2.0, 'almost': 1.0, 'loves': 1.0, 'bought': 1.0, 'grab': 1.0, 'stuffed': 1.0, 'normal': 1.0, 'to': 1.0, 'old': 1.0, 'i': 1.0, 'important': 1.0, '5': 1.0, 'sucking': 1.0, 'chewing': 1.0, 'on': 1.0, 'so': 2.0, 'everything': 1.0}
Word element => {'giraffe': 1.0, '9': 1.0, 'if': 1.0, 'see': 1.0, 'll': 1.0, 'leave': 1.0, 'wouldn': 1.0, 'of': 1.0, 'happen': 1.0, 'let': 1.0, 'would': 1.0, 'like': 1.0, 'in': 1.0, 'just': 1.0, 'house': 1.0, 'at': 1.0, 'keep': 1.0, 'second': 1.0, 'rough': 1.0, 'very': 1.0, 'month': 1.0, 'it': 2.0, 'taggies': 2.0, 'and': 3.0, '3': 1.0, 'almost': 1.0, 'likely': 1.0, 'with': 2.0, 'he': 3.0, 'now': 2.0, 'was': 3.0, 'sleeps': 1.0, 'say': 1.0, 'is': 1.0, 'much': 1.0, 'granddaughter': 1.0, 'pack': 1.0, 'i': 1.0, 'old': 2.0, 'night': 2.0, 'visit': 1.0, 'had': 1.0, 'purchased': 2.0, 'every': 1.0, 'overnight': 1.0, 'without': 1.0, 'the': 2.0, 'has': 1.0, 'they': 1.0, 'lion': 1.0, 'before': 1.0, 'both': 1.0, 'years': 1.0, 'for': 3.0, 'one': 2.0, 'as': 1.0, 'all': 1.0, 'to': 3.0, 'our': 3.0, 'loves': 1.0, 'case': 1.0, 'that': 2.0, 'ever': 1.0, 'grandson': 1.0, 'soft': 1.0, 'taggie': 3.0, 'needless': 1.0, 'but': 1.0, 'slept': 1.0, 'will': 1.0, 'an': 1.0, 't': 1.0, 'a': 2.0, 'we': 3.0, 'course': 1.0, 'somehow': 1.0, 'never': 1.0, 'born': 1.0, 'forget': 1.0, 'my': 1.0, 'daughter': 1.0, 'again': 1.0, 'when': 1.0, 'forgotten': 1.0, 'came': 1.0}
Word element => {'child': 1.0, 'small': 1.0, 'mother': 1.0, 'but': 1.0, 'an': 1.0, 'still': 1.0, 'and': 1.0, 'do': 1.0, 'with': 2.0, 'now': 1.0, 'to': 2.0, 'really': 1.0, 'it': 1.0, 'she': 3.0, 'expecting': 1.0, 'doesn': 1.0, 'was': 1.0, 'recommend': 1.0, 'born': 1.0, 'likes': 1.0, 'bought': 1.0, 'my': 1.0, '4': 1.0, 'i': 3.0, 'when': 1.0, 'giraffe': 1.0, 'daughter': 1.0, 'this': 3.0, 'kids': 1.0, 'or': 2.0, 't': 1.0, 'the': 2.0, 'maybe': 1.0, 'before': 1.0, 'even': 1.0, 'her': 1.0, 'rub': 1.0, 'like': 2.0, 'heard': 1.0, 'other': 1.0, 'carry': 1.0, 'is': 1.0, 'sleeps': 1.0, 'around': 1.0, 'finger': 1.0, 'product': 1.0, 'for': 1.0, 've': 1.0, 'would': 1.0, 'tags': 2.0, 'definitely': 1.0}
Word element => {'surprise': 1.0, 'very': 1.0, 'overall': 1.0, 'smaller': 1.0, 'see': 1.0, 'little': 1.0, 'has': 1.0, 'toy': 1.0, 'but': 1.0, 'sitting': 1.0, 'can': 1.0, 'play': 1.0, 'too': 1.0, 'and': 5.0, 'mth': 1.0, 've': 1.0, 'letting': 1.0, 'in': 1.0, 'daughter': 2.0, 'to': 4.0, 'had': 1.0, 'was': 3.0, 'intended': 1.0, 'nose': 1.0, 'my': 6.0, 'a': 6.0, 'going': 1.0, 's': 1.0, 'go': 1.0, 'of': 1.0, 'the': 9.0, 'from': 1.0, 'son': 4.0, 'wants': 1.0, 'with': 1.0, 'on': 1.0, 'bit': 2.0, 'much': 1.0, 'received': 1.0, 'he': 3.0, 'away': 1.0, 'mail': 1.0, 'probably': 1.0, 'size': 2.0, '3': 1.0, 'today': 1.0, 'purse': 1.0, 'giraffe': 2.0, 'just': 2.0, 'large': 1.0, 'i': 8.0, 'who': 1.0, 'since': 2.0, 'taggies': 1.0, 'is': 6.0, 'comes': 1.0, 'be': 2.0, 'hasn': 1.0, 'grab': 1.0, 'lion': 1.0, 'for': 2.0, 't': 1.0, 'fit': 1.0, 'liked': 1.0, 'seen': 1.0, 'thought': 1.0, '9': 1.0, 'it': 11.0, 'she': 1.0, 'enjoyed': 1.0, 'then': 1.0, 'order': 1.0, 'up': 1.0, 'pink': 2.0, 'they': 3.0, 'cute': 1.0, 'are': 4.0, 'zebra': 1.0, 'both': 1.0, 'onto': 1.0, 'think': 3.0, 'ground': 1.0, 'this': 1.0, 'not': 1.0, 'easily': 1.0, 'that': 2.0, 'into': 1.0, 'diaper': 1.0, 'chance': 1.0, 'bag': 1.0, 'or': 2.0, 'does': 1.0, 'mean': 1.0, 'larger': 1.0, 'when': 1.0, 'tags': 1.0, 'will': 2.0, 'have': 1.0, 'enjoy': 1.0, 'bigger': 2.0, 'if': 2.0, 'easier': 1.0, 'right': 1.0, 'll': 1.0}
Word element => {'so': 1.0, 'or': 1.0, 'proper': 1.0, 'not': 1.0, 'together': 1.0, 'illustrations': 2.0, 'to': 1.0, 'was': 1.0, 'put': 1.0, 'picturessometimes': 1.0, 'i': 1.0, 'when': 1.0, 'there': 2.0, 'if': 1.0, 'instructions': 3.0, 'that': 1.0, 'something': 1.0, 'things': 1.0, 'no': 1.0, 'poor': 2.0, 'is': 1.0, 'the': 1.0, 'are': 1.0, 'can': 1.0, 'insure': 1.0, 'do': 1.0, 'done': 1.0, 'as': 1.0, 'intended': 1.0}
Word element => {'well': 1.0, 'double': 1.0, 'phil': 1.0, 'lotus': 1.0, 'car': 2.0, 'i': 7.0, 'stroller': 1.0, 'put': 1.0, 'snugride': 1.0, 'it': 3.0, 'this': 1.0, 'just': 1.0, 'part': 1.0, 'would': 1.0, 'and': 1.0, 'perfectly': 1.0, 'need': 2.0, 'thought': 1.0, 'purchased': 1.0, 'had': 1.0, 'ted': 1.0, 'ended': 1.0, 'of': 1.0, 'up': 1.0, 'oh': 1.0, 'attach': 1.0, 'my': 2.0, 'in': 2.0, 'because': 1.0, 'having': 1.0, 'seat': 2.0, 'to': 2.0, 'all': 1.0, 'actuality': 1.0, 'the': 3.0, 'without': 2.0, 's': 1.0, 't': 1.0, 'could': 1.0, 'a': 2.0, 'graco': 1.0, 'top': 1.0, 'attachment': 1.0, 'fit': 1.0, 'product': 1.0, 'so': 1.0, 'didn': 1.0, 'really': 1.0}
Word element => {'must': 1.0, 'a': 1.0, 'kit': 1.0, 'out': 1.0, 'this': 1.0, 'the': 3.0, 'is': 2.0, 'why': 1.0, 'stroller': 2.0, 'it': 1.0, 's': 1.0, 'there': 1.0, 'you': 1.0, 'buy': 1.0, 'best': 1.0, 'double': 1.0}
Word element => {'hit': 1.0, 'a': 1.0, 'always': 1.0, 'are': 1.0, 'they': 1.0, 'but': 1.0, 'much': 1.0, 'so': 1.0, 'love': 1.0, 'kids': 2.0, 'why': 1.0, 'these': 1.0, 'the': 3.0, 'my': 1.0, 'on': 1.0, 'chew': 1.0, 'she': 1.0, 'with': 1.0, 'this': 1.0, 'absolutely': 1.0, 'sure': 1.0, 'niece': 1.0, 'loves': 2.0, 'or': 1.0, 'tags': 1.0, 'guaranteed': 1.0, 'different': 1.0, 'animal': 1.0, 'all': 1.0, 'have': 1.0, 'textures': 1.0, 'around': 1.0, 'entire': 1.0, 'to': 2.0, 'grab': 1.0, 'stuffed': 1.0, 'not': 1.0}
Word element => {'looking': 1.0, 'really': 2.0, 'definitely': 1.0, 'scary': 1.0, 'doesn': 1.0, 'least': 1.0, 'carters': 1.0, 'nice': 1.0, 'as': 2.0, 'quite': 1.0, 'okay': 1.0, 'purchased': 1.0, 'sounded': 1.0, 'them': 1.0, 'several': 1.0, 'bought': 2.0, 'stuffed': 1.0, 'had': 2.0, 'animal': 1.0, 'this': 2.0, 'found': 1.0, 'actually': 1.0, 'for': 2.0, 'month': 1.0, 'stopped': 1.0, 'musical': 1.0, 'my': 3.0, 'another': 1.0, 'does': 1.0, 'months': 2.0, 'except': 1.0, 'star': 1.0, 'back': 1.0, 'given': 1.0, 'would': 1.0, 'new': 1.0, 'neck': 1.0, 'off': 1.0, 'enough': 1.0, 'have': 1.0, 'some': 1.0, 'all': 1.0, 'to': 3.0, 'but': 4.0, 'of': 4.0, 'the': 10.0, 'without': 1.0, 'fear': 1.0, 'locally': 1.0, 'cheaply': 1.0, 'cute': 1.0, 'first': 1.0, 'working': 1.0, 'background': 1.0, 'made': 1.0, 'out': 2.0, 'son': 3.0, 'still': 1.0, 'test': 1.0, 'ducks': 1.0, 'from': 3.0, 'tune': 1.0, 'old': 3.0, 'noticed': 1.0, 'terrible': 1.0, 'wind': 1.0, 'toys': 1.0, 'sounds': 1.0, 'will': 1.0, 'duck': 3.0, '1': 1.0, 'and': 5.0, 'one': 3.0, 'too': 1.0, 'soon': 1.0, 'cheap': 1.0, 'fluff': 1.0, 'like': 3.0, 'a': 4.0, 's': 2.0, 'likes': 1.0, 't': 1.0, 'ago': 1.0, 'then': 1.0, 'we': 4.0, '7': 1.0, 'flick': 1.0, 'coming': 1.0, 'i': 4.0, 'sound': 2.0, 'editted': 1.0, 'april': 1.0, 'different': 1.0, '2010': 1.0, 'worth': 1.0, 'now': 3.0, '18': 1.0, 'he': 3.0, 'music': 3.0, 'around': 1.0, 'his': 1.0, 'price': 1.0, 'year': 1.0, 'original': 1.0, 'many': 2.0, 'wish': 1.0, 'liked': 1.0, 'break': 1.0, 'carry': 1.0, 'not': 2.0, 'easter': 1.0, 'it': 9.0, 'horror': 1.0, 'him': 1.0, 'himself': 1.0, 'that': 1.0, 'again': 1.0, 'thankfully': 1.0, 'is': 6.0, 'at': 2.0, 'store': 1.0, 'were': 1.0, 'able': 1.0}
Word element => {'around': 1.0, 'all': 1.0, 'deal': 1.0, 'value': 1.0, 'order': 1.0, 'after': 1.0, 'days': 1.0, 'few': 1.0, 'appeared': 1.0, 'easy': 1.0, 'transaction': 1.0, 'excellent': 1.0, 'placed': 1.0, 'an': 1.0, 'be': 1.0, 'product': 2.0, 'seems': 1.0, 'is': 1.0, 'made': 1.0, 'great': 3.0, 'the': 3.0, 'and': 4.0, 'hamper': 1.0, 'very': 1.0, 'sturdy': 1.0, 'liner': 1.0, 'has': 1.0, 'well': 1.0, 'a': 2.0, 'it': 1.0, 'this': 1.0, 'cotton': 1.0, 'to': 1.0, 'was': 2.0}
Word element => {'condition': 1.0, 'perfect': 1.0, 'in': 2.0, 'came': 1.0, 'i': 1.0, 'and': 3.0, 'got': 1.0, 'sturdy': 1.0, 'this': 1.0, 'said': 1.0, 'looks': 1.0, 'is': 2.0, 'great': 1.0, '2': 1.0, 'as': 1.0, 'big': 1.0, 'hamper': 1.0, 'one': 2.0, 'for': 2.0, 'my': 1.0, 'baby': 1.0, 's': 1.0, 'bathroom': 1.0, 'both': 1.0, 'before': 1.0, 'his': 1.0, 'nursery': 1.0, 'time': 1.0, 'they': 1.0}
Word element => {'skin': 1.0, 'newborn': 1.0, 'your': 1.0, 'want': 1.0, 'd': 1.0, 'only': 1.0, 'an': 1.0, 'point': 1.0, 'spring': 1.0, 'fabric': 1.0, 'lining': 1.0, 'thin': 1.0, 'blanket': 1.0, 's': 2.0, 't': 1.0, 'a': 4.0, 'side': 4.0, 'it': 1.0, 'looks': 1.0, 'cotton': 1.0, 'you': 1.0, 'when': 1.0, 'idea': 1.0, 'extremely': 1.0, 'synthetic': 1.0, 'organic': 2.0, 'but': 2.0, 'unorganic': 1.0, 'quality': 1.0, 'nice': 1.0, 'great': 1.0, 'what': 1.0, 'sorry': 1.0, 'all': 2.0, 'to': 2.0, 'very': 2.0, 'i': 2.0, 'green': 2.0, 'is': 5.0, 'say': 1.0, 'than': 1.0, 'flannel': 1.0, 'polyester': 1.0, 'at': 2.0, 'not': 3.0, 'love': 1.0, 'this': 1.0, 'soft': 1.0, 'life': 1.0, 'or': 1.0, 'smooth': 1.0, 'other': 1.0, 'get': 1.0, 'kind': 1.0, 'slimy': 1.0, 'satin': 2.0, 'next': 1.0, 'that': 1.0, 'silky': 1.0, 'the': 8.0, 'deal': 1.0, 'don': 1.0, 'cheaper': 1.0, 'in': 3.0, 'scratchy': 1.0, 'real': 1.0, 'smoky': 1.0, 'photo': 1.0, 'one': 1.0, 'color': 1.0, 'of': 2.0, 'rather': 1.0}
Word element => {'they': 1.0, 'because': 1.0, 'heat': 1.0, 'medium': 1.0, 'dry': 1.0, 'll': 1.0, 'tumble': 1.0, 'warm': 1.0, 'cycle': 1.0, 'regular': 1.0, 'in': 1.0, 'with': 1.0, 'very': 1.0, 'look': 1.0, 'scrappy': 1.0, 'long': 1.0, '2': 3.0, 'to': 1.0, 'is': 3.0, 'many': 1.0, 'binding': 1.0, 'fraying': 3.0, 'give': 1.0, 'not': 1.0, 'strings': 1.0, 'making': 2.0, 'cute': 1.0, 'after': 1.0, 'a': 2.0, 'i': 3.0, 'only': 1.0, 'velcro': 1.0, 'quite': 1.0, 'and': 5.0, 'so': 2.0, 'bit': 1.0, 'am': 1.0, 'disappointed': 1.0, 'that': 2.0, 'soft': 1.0, 'overlapping': 1.0, 'pulled': 1.0, '1': 2.0, 'big': 1.0, 'the': 7.0, 'are': 3.0, 'bibs': 2.0, 'tags': 1.0, 'pulling': 1.0, 'adorable': 1.0, 'main': 1.0, 'fabric': 1.0, 'have': 2.0, 'enough': 1.0, 'one': 1.0, 'pulls': 1.0, 'loops': 1.0, 'once': 1.0, 'gap': 1.0, 'of': 1.0, 'them': 1.0, 'out': 1.0, 'which': 1.0, 'these': 1.0, 'already': 1.0, 'washed': 1.0, '3': 1.0, 'on': 2.0, 'terrycloth': 1.0, 'fastened': 1.0, 'has': 1.0, 'stars': 1.0, 'where': 1.0, 'washings': 1.0, 'yarn': 1.0}
Word element => {'mattress': 1.0, 'crib': 1.0, 'for': 1.0, 'good': 1.0, 'are': 1.0, 'measurements': 1.0, 'dried': 1.0, 'soft': 1.0, 'line': 1.0, 'just': 2.0, 'color': 2.0, 'washed': 1.0, 'std': 1.0, 'arrived': 1.0, 'sheet': 1.0, 'did': 1.0, 'nice': 1.0, 'bright': 1.0, 'a': 3.0, 'gentle': 1.0, 'once': 1.0, 'cycle': 1.0, 'green': 1.0, 'i': 2.0, 'material': 1.0, 'faded': 1.0, 'this': 1.0, 'it': 2.0, 'and': 3.0, 'the': 3.0, 'has': 1.0, 'already': 1.0, 'in': 1.0, 'wash': 1.0}
Word element => {'bibs': 1.0, 'use': 1.0, 'ok': 1.0, 'noise': 1.0, 'back': 1.0, 'ripping': 1.0, 'huge': 1.0, 'this': 1.0, 'also': 1.0, 'in': 1.0, 'is': 1.0, 'velcro': 2.0, 'it': 1.0, 'insanely': 1.0, 'because': 2.0, 'on': 2.0, 'strong': 1.0, 'as': 1.0, 'all': 1.0, 'heck': 1.0, 'place': 1.0, 'the': 4.0, 'little': 1.0, 'was': 1.0, 'up': 1.0, 'over': 1.0, 'fibers': 1.0, 'but': 2.0, 'scares': 1.0, 'i': 4.0, 'when': 2.0, 'a': 1.0, 'since': 1.0, 'their': 1.0, 'were': 1.0, 'received': 1.0, 'they': 2.0, 'makes': 1.0, 'which': 1.0, 'good': 1.0, 'off': 1.0, 'these': 3.0, 'some': 1.0, 'disappointed': 1.0, 'cases': 1.0, 'of': 1.0, 'are': 2.0, 'used': 1.0, 'may': 1.0, 'my': 2.0, 'newborn': 1.0, 'out': 1.0, 'shedding': 1.0, 'them': 2.0, 'be': 1.0, 'him': 1.0, 'take': 1.0}
Word element => {'rags': 1.0, 'save': 1.0, 'synthetic': 1.0, 'washings': 1.0, 'after': 1.0, 'course': 1.0, 'there': 1.0, 'up': 1.0, 'two': 1.0, 'no': 1.0, 'come': 1.0, 'of': 1.0, 'muslin': 1.0, 'in': 1.0, 'these': 1.0, 'the': 1.0, 'is': 1.0, 'completely': 1.0, 'more': 2.0, 'bibs': 2.0, 'spend': 1.0, 'trim': 1.0, 'point': 1.0, 'poorly': 1.0, 'has': 1.0, 'your': 1.0, 'and': 4.0, 'get': 1.0, 'are': 1.0, 'made': 1.0, 'or': 1.0, 's': 1.0, 'a': 1.0, 'little': 1.0, 'paying': 1.0, 'for': 1.0, 'supposedly': 1.0, 'what': 1.0, 'used': 1.0, 'only': 1.0, 'tiny': 1.0, 'end': 1.0, 'apart': 1.0, 'frayed': 1.0, 'being': 1.0, 'as': 1.0, 'money': 1.0, 'organic': 1.0}
Word element => {'not': 2.0, 'just': 1.0, 'like': 1.0, 'and': 2.0, 'very': 1.0, 'best': 1.0, 'absorbing': 1.0, 'drool': 1.0, 'cute': 1.0, 'bumkins': 1.0, 'love': 1.0, 'for': 1.0, 'cotton': 1.0, 'made': 1.0, 'are': 4.0, 'the': 4.0, 'thickness': 1.0, 'these': 1.0, 'they': 4.0, 'time': 1.0, 'gaudy': 1.0, 'same': 1.0, 'bibs': 2.0, 'really': 1.0, 'is': 1.0, 'to': 1.0, 'as': 1.0, 'all': 1.0, 'fabric': 1.0, 'can': 1.0, 'most': 1.0, 'petroleum': 1.0, 'chew': 1.0, 'quality': 1.0, 'them': 2.0, 'baby': 2.0, 'soothe': 1.0, 'when': 1.0, 'gums': 1.0, 'look': 1.0, 'right': 1.0, 'teething': 1.0, 'perfect': 1.0, 'based': 1.0, 'absorbent': 1.0, 'on': 1.0, 'their': 1.0, 'while': 1.0, 'at': 1.0}
Word element => {'though': 1.0, 'boring': 1.0, 'and': 1.0, 'dull': 1.0, 'really': 1.0, 'is': 1.0, 'color': 1.0, 'them': 1.0, 'find': 1.0, 'easy': 1.0, 'well': 1.0, 'priced': 1.0, 'about': 1.0, 'to': 2.0, 'm': 1.0, 'round': 1.0, 'ok': 3.0, 'sagethese': 1.0, 'all': 1.0, 'pack': 1.0, 'bibs': 1.0, 'nothing': 2.0, 'ties': 1.0, 'if': 1.0, 'bumkins': 1.0, 'not': 1.0, 'material': 1.0, 'with': 1.0, 'cotton': 1.0, 'organic': 2.0, 'everyday': 1.0, 'bib': 1.0, 'the': 3.0, 'are': 2.0, 'cumbersome': 1.0, 'so': 1.0, 'else': 1.0, 'manage': 1.0, 'i': 1.0, 'softest': 1.0, 'rave': 1.0, 'work': 1.0, 'but': 2.0, '3': 1.0, 'absorb': 1.0, 'spills': 1.0}
Word element => {'health': 1.0, 'concerned': 1.0, 'recommend': 1.0, 'd': 1.0, 'easy': 1.0, 'an': 1.0, 'outfit': 1.0, 'mouth': 1.0, 'her': 2.0, 'any': 1.0, 'as': 3.0, 'chemicals': 1.0, 'and': 4.0, 'do': 1.0, 'better': 1.0, 'pretty': 1.0, 'almost': 1.0, 'drooling': 1.0, 'old': 1.0, 'anyone': 1.0, 'putting': 1.0, 'bought': 1.0, 'made': 1.0, 'baby': 1.0, 'them': 1.0, 'fastener': 1.0, 'are': 1.0, 'chewing': 1.0, 'my': 1.0, 'velcro': 1.0, 'happy': 1.0, 'these': 4.0, 'nice': 1.0, 'great': 1.0, 'i': 3.0, '4': 1.0, 'absorbent': 1.0, 'constantly': 1.0, 'on': 1.0, 'in': 1.0, 'for': 3.0, 'yet': 1.0, 'daughter': 1.0, 'who': 2.0, 'is': 2.0, 'job': 1.0, 'the': 2.0, 'without': 1.0, 'about': 2.0, 'well': 1.0, 'go': 1.0, 'a': 2.0, 'month': 1.0, 'felt': 1.0, 'it': 1.0, 'with': 3.0, 'everything': 1.0, 'being': 1.0, 'definitely': 1.0, 'environment': 2.0, 'simple': 1.0, 'bibs': 1.0}
Word element => {'for': 1.0, 'problems': 1.0, 'breath': 1.0, 'causes': 1.0, 'difinitely': 1.0, 'it': 1.0, 'out': 1.0, 'the': 3.0, 'is': 2.0, 'of': 2.0, 'fabric': 1.0, 'much': 1.0, 'poor': 1.0, 'material': 1.0, 'fluffing': 1.0, 'infants': 1.0, 'lints': 1.0, 'quality': 1.0, 'very': 2.0, 'and': 1.0, 'come': 1.0, 'too': 1.0}
Word element => {'review': 1.0, 'finished': 1.0, 'label': 1.0, 'return': 1.0, 'out': 1.0, 'printing': 1.0, 'be': 1.0, 'a': 1.0, 'after': 1.0, 'so': 1.0, 'at': 1.0, 'about': 1.0, 'this': 2.0, 'with': 2.0, 'quality': 1.0, 'tore': 1.0, 'satin': 1.0, 'will': 1.0, 'uses': 1.0, 'seams': 1.0, 'i': 3.0, 'these': 2.0, 'the': 5.0, 'they': 1.0, 'are': 1.0, 'few': 1.0, 'because': 1.0, 'me': 1.0, 'not': 1.0, 'neutral': 1.0, 'but': 1.0, 'organic': 1.0, 'simple': 1.0, 'purchased': 1.0, 'on': 1.0, 'absorbent': 1.0, 'bibs': 1.0, 'washes': 1.0, 'and': 6.0, 'tough': 1.0, 'when': 1.0, 'am': 2.0, 'terry': 1.0, 'frayed': 1.0, 'being': 1.0, 'quite': 1.0, 'particular': 1.0, 'my': 2.0, 'laundry': 1.0, 'was': 1.0, 'fabric': 1.0, 'very': 1.0, 'careless': 1.0, 'disappointed': 1.0, 'of': 1.0}
Word element => {'problem': 1.0, 'seen': 1.0, 'haven': 1.0, 'off': 1.0, 'all': 1.0, 'came': 1.0, 'again': 1.0, 'times': 1.0, 'you': 1.0, 'tummy': 1.0, 'from': 1.0, 'they': 1.0, 'be': 2.0, 'chew': 1.0, 'hour': 1.0, 'also': 1.0, 'bibs': 3.0, 'or': 2.0, 'soaked': 1.0, 'shirt': 1.0, 'strings': 1.0, 'little': 1.0, 'with': 1.0, 'he': 3.0, 'stage': 1.0, 'washing': 1.0, 'mega': 1.0, 'have': 1.0, 'my': 1.0, 'may': 1.0, 'for': 2.0, 'was': 3.0, 'ingesting': 1.0, 'chin': 1.0, 'these': 3.0, 'some': 1.0, 'way': 1.0, 'begun': 1.0, 'were': 2.0, 'looking': 2.0, 'his': 1.0, 'when': 1.0, 'dyes': 1.0, 'what': 2.0, 'would': 2.0, 'something': 1.0, 'patchwork': 1.0, 'i': 9.0, 'old': 1.0, 'without': 1.0, 'to': 3.0, 'job': 1.0, 'on': 3.0, 'suck': 1.0, 'guy': 1.0, 'your': 1.0, 'since': 1.0, 'washed': 1.0, 'months': 1.0, 'one': 1.0, 'exactly': 1.0, 'five': 1.0, 'worry': 1.0, 'and': 7.0, 'same': 1.0, 'loose': 3.0, 'change': 2.0, 'is': 1.0, 'drool': 2.0, 'after': 1.0, 'so': 1.0, 'cutesie': 1.0, 'put': 2.0, 'do': 1.0, 'don': 1.0, 'wash': 1.0, 'over': 1.0, 'likes': 1.0, 't': 2.0, 'in': 1.0, 'having': 1.0, 'morning': 1.0, 'him': 1.0, 'outfit': 1.0, 'it': 1.0, 'about': 1.0, 'several': 1.0, 'noon': 1.0, 'through': 1.0, 'machine': 1.0, 'are': 1.0, 'first': 1.0, 'found': 1.0, 'because': 1.0, 'that': 1.0, 'every': 1.0, 'if': 1.0, 'the': 10.0, 'of': 1.0, 'ran': 1.0, 'fingers': 1.0, 'threads': 2.0, 'bib': 1.0, 'come': 1.0, 'just': 1.0, 'has': 1.0, 'them': 1.0}
Word element => {'clothing': 1.0, 'through': 1.0, 'soak': 1.0, 'that': 1.0, 'unexpected': 1.0, 'have': 1.0, 'bedtime': 1.0, 'naps': 1.0, 'dribble': 1.0, 'use': 1.0, 'time': 1.0, 'waterproof': 1.0, 'day': 1.0, 'carter': 1.0, 'wear': 1.0, 'ones': 1.0, 'episodes': 1.0, 'these': 2.0, 'the': 6.0, 'style': 1.0, 'washes': 1.0, 'spitter': 1.0, 'super': 1.0, 'when': 1.0, 'causing': 1.0, 'issues': 1.0, 'month': 1.0, 'two': 1.0, 'i': 3.0, 'old': 1.0, 'cloth': 1.0, 'to': 2.0, 'purchased': 2.0, 'natural': 1.0, 'make': 1.0, 'on': 1.0, 'who': 1.0, 'they': 1.0, 'for': 2.0, 'normal': 1.0, 'are': 1.0, 'great': 1.0, 'reflux': 2.0, 'them': 1.0, 'due': 1.0, 'my': 1.0, 'more': 1.0, 'is': 1.0, 'many': 1.0, 's': 1.0, 'we': 2.0, 'a': 1.0, 'well': 1.0, 'up': 1.0, 'sometimes': 1.0, 'holding': 1.0, 'after': 1.0, 'and': 2.0, 'advise': 1.0, 'closing': 1.0, 'snag': 1.0, 'velcro': 2.0, 'terry': 1.0, 'closures': 1.0, 'or': 1.0, 'will': 1.0, 'bibs': 3.0, 'however': 1.0, 'fray': 1.0, 'tear': 1.0, 'than': 1.0, 'just': 1.0}
Word element => {'tears': 1.0, 'kickfest': 1.0, 'big': 1.0, 'get': 1.0, 'other': 1.0, 'each': 1.0, 'out': 1.0, 'try': 1.0, 'heels': 1.0, 'only': 1.0, 'least': 1.0, 'to': 6.0, 'reconsider': 1.0, 'otherwise': 1.0, 'pounds': 1.0, 'i': 4.0, 'in': 3.0, 'anything': 1.0, 'without': 1.0, 'sell': 1.0, 'their': 1.0, 'around': 1.0, 'great': 1.0, '1': 1.0, 'if': 1.0, 'want': 2.0, 'own': 1.0, 'your': 3.0, 'on': 2.0, 'weigh': 1.0, 'had': 1.0, 'this': 2.0, 'you': 2.0, 'oh': 1.0, 'stopping': 1.0, 'a': 3.0, 's': 1.0, 't': 3.0, 'space': 1.0, 'forget': 1.0, 'face': 1.0, 'or': 1.0, 'into': 1.0, 'and': 3.0, 'website': 1.0, 'my': 3.0, 'goodness': 1.0, 'crash': 1.0, '60': 1.0, 'price': 1.0, 'fun': 1.0, 'walk': 1.0, 'how': 1.0, 'so': 3.0, 'open': 1.0, 'hard': 2.0, 'it': 11.0, 'ashamed': 1.0, 'steer': 1.0, 'way': 2.0, 'huge': 1.0, 'cool': 1.0, 'just': 4.0, 'fooled': 1.0, 'pull': 1.0, 'by': 2.0, 'store': 1.0, 'anymore': 1.0, 'mail': 1.0, 'worth': 1.0, 'now': 1.0, 'garage': 1.0, 'ordered': 1.0, 'mine': 1.0, 'because': 2.0, 'have': 1.0, 'lots': 1.0, 'doesn': 1.0, 'must': 1.0, 'not': 1.0, 'give': 1.0, 'ready': 1.0, 'kids': 2.0, 'shipping': 1.0, 'back': 1.0, 'star': 1.0, 'even': 2.0, 'ebay': 1.0, 'piece': 1.0, 'the': 4.0, 'of': 3.0, 'garbage': 1.0, 'at': 1.0, 'is': 4.0, 'sits': 1.0, 'look': 1.0, 'fisher': 1.0, 'don': 2.0, 'list': 1.0, 'they': 1.0, 'be': 3.0, 'combined': 1.0, 'such': 1.0, 'for': 3.0, 'will': 1.0}
Word element => {'money': 1.0, 'value': 1.0, 'enjoying': 1.0, 'really': 1.0, 're': 1.0, 'be': 3.0, 'drawbacks': 1.0, 'great': 2.0, 'twin': 1.0, 'install': 1.0, 'people': 1.0, 'does': 2.0, 'up': 1.0, 'many': 1.0, 'folds': 1.0, 'like': 1.0, 'now': 2.0, 'features': 1.0, 'content': 1.0, 'use': 2.0, 'are': 3.0, 'and': 9.0, 'climb': 1.0, 'little': 1.0, 'best': 1.0, 'that': 3.0, 'kids': 1.0, 'this': 1.0, 'perfect': 1.0, 'quickly': 1.0, 'some': 1.0, 'rides': 1.0, 'themselves': 1.0, 'very': 2.0, 'being': 1.0, 'well': 1.0, 'i': 3.0, 'daughters': 1.0, 'fast': 1.0, 'place': 1.0, 'for': 4.0, 'get': 1.0, 'months': 1.0, 'but': 4.0, 'wagon': 2.0, 'hard': 3.0, 'it': 14.0, 'out': 1.0, 'compactly': 2.0, 'in': 4.0, 'mommy': 1.0, 'my': 2.0, 'often': 1.0, 'riding': 1.0, 'rough': 1.0, 'too': 1.0, 'one': 1.0, 'happy': 2.0, 'quite': 1.0, 'sturdy': 1.0, 'they': 1.0, 'pretty': 1.0, 'to': 4.0, 'pull': 1.0, 'fold': 1.0, 'love': 1.0, 'terrian': 1.0, 'strollers': 1.0, 'has': 1.0, 'them': 1.0, 'store': 1.0, 'awkard': 1.0, 'steer': 1.0, 'there': 1.0, 'is': 2.0, 'more': 2.0, 'years': 1.0, 'sunshades': 1.0, 'no': 1.0, 'about': 1.0, 'a': 2.0, 'application': 1.0, 'we': 3.0, 's': 2.0, 've': 1.0, 'noticed': 1.0, 'old': 1.0, 'seem': 1.0, 'anticipate': 1.0, 'better': 1.0, 'maneuvers': 1.0, 'heavy': 1.0, 'stop': 1.0, 'us': 2.0, 'can': 4.0, 'ask': 1.0, 'twins': 1.0, '18': 1.0, 'll': 1.0, 'the': 7.0, 'of': 1.0, 'not': 1.0, 'every': 1.0}
Word element => {'good': 1.0, 'else': 1.0, 'that': 1.0, 'than': 1.0, 'other': 1.0, '80': 1.0, 'can': 1.0, 'but': 1.0, 'expect': 1.0, 'hills': 1.0, 'up': 1.0, 'your': 1.0, 'except': 1.0, 'were': 1.0, 'bought': 1.0, 'around': 1.0, 'both': 2.0, 'to': 3.0, 'was': 3.0, '40lbs': 1.0, 'stroller': 1.0, 'old': 1.0, 'year': 1.0, 'and': 2.0, 'pull': 1.0, 'great': 1.0, 'my': 1.0, 'family': 1.0, 'what': 1.0, 'thought': 2.0, 'i': 1.0, '4': 1.0, 'it': 3.0, 'have': 1.0, 'lbs': 1.0, 'you': 1.0, 'when': 2.0, 'boys': 1.0, 'wagon': 2.0, '6': 1.0, 'of': 1.0, 'hershey': 1.0, 'about': 1.0, 'park': 1.0, 'going': 1.0, 'we': 2.0, 'a': 4.0, 'could': 1.0, 'like': 1.0, 'so': 1.0, 'ride': 1.0, 'everything': 1.0, 'if': 1.0, 'take': 1.0, 'pretty': 2.0, 'this': 2.0, 'kids': 1.0, 'walking': 1.0, 'got': 1.0, 'they': 2.0, 'the': 1.0, 'without': 1.0, 'pulling': 1.0, 'looking': 1.0, 'tired': 1.0, 'baby': 1.0, 'in': 2.0, 'get': 1.0, 'easy': 1.0}
Word element => {'winner': 1.0, 'reason': 1.0, 'handy': 1.0, 'come': 1.0, 'has': 1.0, 'back': 1.0, 'love': 1.0, 'hard': 1.0, 'would': 1.0, 'summer': 1.0, 'this': 1.0, 'time': 1.0, 'plan': 1.0, 'quite': 1.0, 'convenience': 1.0, 'utility': 1.0, 'more': 2.0, 'provided': 1.0, 'they': 1.0, 'parks': 1.0, 'strollers': 1.0, 'rented': 1.0, 'week': 1.0, 'attaches': 1.0, 'remainder': 1.0, 'general': 1.0, 'much': 1.0, 'but': 2.0, '2': 3.0, 'still': 2.0, 'if': 2.0, 'greeter': 1.0, 'could': 1.0, 's': 1.0, 'we': 13.0, 'guests': 1.0, 'wagons': 1.0, 'no': 3.0, 'told': 1.0, 'just': 1.0, 'when': 1.0, 'are': 1.0, 'boys': 1.0, 'down': 1.0, 'is': 2.0, 'at': 4.0, 'got': 1.0, 'complaints': 1.0, 'purchased': 2.0, 'or': 1.0, 'passively': 1.0, 'old': 1.0, 'for': 8.0, 'a': 5.0, 'maneuverability': 1.0, 'worked': 3.0, 'year': 1.0, 'struggle': 1.0, 'kids': 1.0, 'ready': 1.0, 'opted': 1.0, 'same': 1.0, 'disney': 3.0, 'because': 1.0, 'that': 5.0, 'park': 2.0, 'were': 4.0, 'stroller': 1.0, 'how': 1.0, 'our': 3.0, 'wagon': 4.0, 'way': 1.0, 'however': 1.0, 'suspect': 1.0, 'here': 1.0, 'around': 1.0, 'allowed': 1.0, '4': 1.0, 'it': 10.0, 'stopped': 1.0, 'nicely': 1.0, 'gate': 1.0, 'great': 1.0, '1': 3.0, 'seemed': 1.0, 'trip': 3.0, 'and': 9.0, 'getting': 1.0, 'rent': 1.0, 'was': 3.0, 'use': 3.0, 'pull': 2.0, 'by': 2.0, 'pushed': 2.0, 'through': 1.0, 'went': 1.0, 'on': 1.0, 'pulling': 1.0, 'day': 3.0, 'one': 1.0, 'also': 1.0, 'us': 1.0, 't': 1.0, 'rest': 1.0, 'the': 23.0, 'of': 3.0, 'end': 1.0, 'cooler': 1.0, 'its': 2.0, 'purchase': 1.0, 'only': 2.0, 'better': 1.0, 'agreed': 1.0, 'i': 2.0, 'well': 1.0, 'pleased': 1.0, 'annoyed': 1.0, 'major': 1.0, 'matching': 1.0, 'all': 4.0, 'other': 1.0, 'to': 6.0, 'pretty': 1.0, 'length': 1.0, 'in': 3.0, 'pass': 1.0, 'saw': 1.0, 'so': 1.0, 'folds': 1.0, 'others': 1.0, 'width': 1.0, 'with': 2.0, 'weren': 1.0, 'congested': 1.0, 'airports': 1.0, 'areas': 1.0, 'not': 2.0, 'said': 1.0, 'optimal': 1.0, 'second': 1.0, 'kid': 1.0}
Word element => {'used': 1.0, 'something': 1.0, 'wait': 1.0, '2': 1.0, 'don': 1.0, 'this': 1.0, 'highly': 1.0, 'compact': 1.0, 'fold': 1.0, 'wouldn': 1.0, 'would': 2.0, 'heels': 1.0, 'own': 1.0, 'into': 1.0, 'long': 1.0, 'ride': 1.0, 'negative': 1.0, 'other': 1.0, 'trying': 1.0, 'when': 1.0, 'while': 2.0, 'head': 1.0, 'front': 1.0, 'want': 1.0, 'pressure': 1.0, 'apply': 1.0, 'must': 1.0, 'younger': 1.0, 'sitting': 1.0, 'wheels': 2.0, 'use': 1.0, 'multiple': 1.0, 'minute': 1.0, 'found': 1.0, 'no': 1.0, 'double': 1.0, 'generous': 1.0, 'or': 1.0, 'single': 1.0, 'very': 1.0, 'large': 1.0, 'than': 1.0, 'does': 2.0, 'find': 1.0, 'more': 1.0, 'if': 1.0, 'still': 1.0, 'turn': 3.0, 'asked': 1.0, 'kids': 2.0, 'ready': 1.0, 'product': 1.0, 'year': 2.0, 'about': 3.0, 'awesome': 1.0, 'stroller': 3.0, 'but': 3.0, 'past': 1.0, 'sometimes': 1.0, 'compacts': 1.0, 'room': 1.0, 't': 3.0, 'fairly': 1.0, 'takes': 1.0, 'up': 1.0, 'people': 1.0, 'especially': 1.0, 'where': 1.0, 'for': 4.0, 'legs': 1.0, 'get': 1.0, 'anyone': 1.0, 'and': 7.0, 'cool': 1.0, 'here': 1.0, 'some': 1.0, 'stopped': 2.0, 'only': 4.0, 'with': 3.0, 'family': 1.0, 'moving': 1.0, 'fine': 1.0, 'take': 1.0, 'we': 4.0, 'mall': 1.0, 'a': 8.0, 'go': 1.0, 'saw': 1.0, 'was': 1.0, 'to': 9.0, 'fight': 1.0, 'least': 1.0, 'as': 2.0, 'place': 1.0, 'others': 1.0, 'deal': 1.0, 'online': 1.0, 'ordered': 1.0, 'too': 1.0, 'one': 1.0, 'rating': 1.0, 'well': 2.0, 'i': 4.0, 'even': 1.0, 'by': 1.0, 'pull': 2.0, 'recommend': 1.0, 'were': 1.0, 'together': 1.0, 'it': 8.0, '9': 1.0, 'pulling': 1.0, '6': 1.0, 'run': 1.0, 'old': 2.0, 'fantastic': 1.0, 'great': 1.0, 'countless': 1.0, 'longer': 1.0, 'the': 9.0, 'of': 3.0, '5': 1.0, 'stable': 1.0, 'effort': 1.0, 'complaint': 1.0, 'in': 3.0, 'weight': 1.0, 'couple': 1.0, 'works': 1.0, 'without': 1.0, 'days': 1.0, 'unlike': 1.0, 'my': 4.0, 'me': 1.0, 'not': 2.0, 'can': 2.0, 'so': 3.0, 'ask': 1.0, 'have': 3.0, 'remarked': 1.0, 'direction': 2.0, 'you': 2.0, 'things': 1.0, 'like': 3.0, 'that': 6.0, 'real': 1.0, 'wagon': 1.0, 'is': 2.0, 'look': 1.0, 'at': 3.0, 'handle': 2.0}
Word element => {'it': 1.0, 'manufactured': 1.0, 'designed': 1.0, 'in': 3.0, 'made': 1.0, 'are': 1.0, 'china': 1.0, 'was': 2.0, 'not': 1.0, 'haba': 1.0, 'information': 1.0, 'on': 1.0, 'addition': 1.0, 'has': 1.0, 'item': 1.0, 'this': 2.0, 'product': 1.0, 'excellent': 1.0, 'germany': 2.0, 'all': 1.0, 'but': 2.0, 'products': 1.0, 'they': 1.0}
Word element => {'buy': 1.0, 'worth': 1.0, 'these': 1.0, 'price': 1.0, 'amazon': 1.0, 's': 1.0, 'i': 2.0, 'to': 1.0, 'through': 1.0, 'place': 1.0, 'old': 1.0, 'bought': 2.0, 'are': 1.0, 'the': 1.0, 'my': 1.0, 'some': 1.0, 'children': 1.0, 'for': 2.0, 'son': 1.0, '6': 1.0, 'month': 1.0, 'dress': 2.0, 'from': 1.0}
Word element => {'all': 1.0, 'definitely': 1.0, 'jetta': 1.0, 'big': 1.0, 'your': 1.0, 'great': 1.0, 'taller': 1.0, 'be': 1.0, 'guess': 1.0, '2001': 1.0, 'really': 1.0, 'knot': 1.0, 'rope': 1.0, 'portion': 1.0, 'secures': 1.0, 'bottom': 1.0, 'also': 1.0, 'overlapped': 1.0, 'out': 1.0, 'ripped': 1.0, 'hair': 1.0, 'their': 1.0, 'have': 1.0, 'at': 1.0, 'is': 1.0, 'sits': 1.0, 'which': 3.0, 'like': 2.0, 'or': 2.0, 'clip': 1.0, 'would': 2.0, 'either': 1.0, 'but': 3.0, 'drive': 1.0, 'hard': 1.0, 'work': 1.0, 'on': 1.0, 'make': 1.0, 'straps': 5.0, 'than': 1.0, 'way': 1.0, 'apparently': 1.0, 'passenger': 1.0, 'doesn': 4.0, 'double': 1.0, 'lays': 1.0, 'no': 1.0, 'about': 1.0, 'whole': 1.0, 'maybe': 1.0, 'whoever': 1.0, 's': 1.0, 'specify': 1.0, 'a': 3.0, 'go': 1.0, 'there': 1.0, 'so': 1.0, 'can': 1.0, 'headrest': 3.0, 'front': 2.0, 'mean': 1.0, 'car': 2.0, 'bought': 1.0, 'cord': 1.0, 'for': 2.0, 't': 4.0, 'ago': 1.0, 'fit': 2.0, 'not': 1.0, 'itself': 1.0, 'just': 1.0, 'by': 2.0, 'in': 5.0, 'seat': 7.0, 'to': 4.0, 'tightly': 1.0, 'these': 1.0, 'nylon': 1.0, 'seatback': 1.0, 'some': 3.0, 'flush': 1.0, 'hanging': 1.0, 'and': 5.0, 'one': 1.0, 'too': 1.0, 'i': 6.0, 'nice': 1.0, 'two': 1.0, 'etc': 1.0, 'velcro': 4.0, 'organizer': 3.0, 'come': 1.0, 'went': 1.0, 'weekend': 1.0, 'this': 4.0, 'it': 4.0, 'my': 4.0, 'install': 1.0, 'you': 2.0, 'when': 1.0, 'could': 1.0, 'will': 1.0, 'get': 1.0, 'unfortunately': 1.0, 'folds': 1.0, 'mine': 2.0, 'vw': 1.0, 'past': 1.0, 'arrived': 1.0, 'suvs': 1.0, 'with': 2.0, 'protector': 1.0, 'top': 1.0, 'around': 4.0, 'instead': 1.0, 'buckle': 1.0, 'base': 1.0, 'tied': 1.0, 'lower': 1.0, 'ends': 1.0, 'the': 18.0, 'of': 4.0, 'since': 1.0, 'cars': 2.0, 'has': 1.0, 'half': 1.0, 'posts': 3.0, 'being': 1.0, 'stay': 1.0, 'if': 2.0, 'part': 1.0, 'are': 1.0, 'month': 1.0, 'loose': 1.0, 'tighten': 1.0, 'up': 1.0, 'down': 1.0, 'practically': 1.0, 'metal': 1.0, 'remedy': 1.0, 'thing': 1.0, 'situation': 1.0, 'wider': 1.0, 'unless': 1.0, 'strapping': 1.0, 'that': 1.0}
Word element => {'and': 1.0, 'organized': 1.0, 'keeping': 1.0, 'job': 1.0, 'does': 1.0, 'too': 1.0, 'are': 1.0, 'hold': 1.0, 'to': 1.0, 'meant': 1.0, 'little': 1.0, 'but': 1.0, 'will': 1.0, 'baby': 1.0, 'of': 1.0, 'holding': 1.0, 'for': 1.0, 'all': 1.0, 'fantastic': 1.0, 'clean': 1.0, 'backseat': 1.0, 'child': 1.0, 'our': 1.0, 'that': 2.0, 'super': 1.0, 'things': 2.0, 'great': 1.0, 'heavy': 1.0, 'the': 1.0, 'is': 1.0, 'in': 1.0, 'having': 1.0, 's': 1.0, 'you': 1.0, 'accummulate': 1.0, 'this': 1.0, 'it': 1.0, 'not': 1.0, 'whilst': 1.0, 'car': 1.0, 'a': 2.0, 'your': 1.0}
Word element => {'the': 1.0, 'tight': 1.0, 'not': 1.0, 'b': 1.0, '5': 1.0, 'c': 1.0, 'nice': 1.0, 'size': 1.0, 'with': 1.0, 'pouches': 1.0, 'does': 1.0, '4': 1.0, 'i': 1.0, 'it': 2.0, 'gave': 1.0, 'against': 1.0, 'instead': 1.0, 'seat': 1.0, 'stay': 1.0, 'good': 1.0, 'of': 1.0}
Word element => {'yes': 1.0, 'words': 1.0, 'copy': 1.0, 'enough': 1.0, 'use': 1.0, 'easy': 1.0, 'far': 1.0, 'the': 1.0, 'my': 1.0, 'kicks': 1.0, 'it': 3.0, 'good': 1.0, 'time': 1.0, 'to': 2.0, 'now': 1.0, 'really': 1.0, 'is': 1.0, 'ratings': 1.0, 'son': 1.0, 'shipping': 1.0, 'yet': 1.0, 'using': 1.0, 'problem': 1.0, 'so': 1.0, 'not': 1.0, 'no': 1.0, 'at': 1.0, 'all': 3.0, 'bad': 1.0}
Word element => {'price': 1.0, 'known': 1.0, 'have': 1.0, 've': 1.0, 'purchase': 1.0, 'happy': 1.0, 'because': 1.0, 'not': 1.0, 'flimsy': 1.0, 'overall': 1.0, 'kinda': 1.0, 'material': 1.0, 'very': 2.0, 'together': 1.0, 'and': 3.0, 'thin': 1.0, 'like': 1.0, 'has': 1.0, 'well': 1.0, 'a': 2.0, 'string': 1.0, 'that': 2.0, 'lot': 1.0, 'strap': 1.0, 'you': 1.0, 'this': 1.0, 'with': 1.0, 'velcro': 1.0, 'it': 2.0, 'at': 1.0, 't': 1.0, 'adjustable': 1.0, 'the': 4.0, 'should': 1.0, 'top': 1.0, 'work': 1.0, 'doesn': 1.0, 'an': 1.0, 'but': 2.0, 'of': 2.0, 'bottom': 1.0, 'is': 2.0, 'guess': 1.0, 'pockets': 1.0, 'i': 3.0, 'tie': 1.0}
Word element => {'worth': 1.0, 'totally': 1.0, 'say': 1.0, '2001': 1.0, '14': 1.0, '4': 1.0, 'buy': 1.0, 'i': 4.0, 'car': 1.0, 'nice': 1.0, 'my': 2.0, '2': 1.0, 'the': 2.0, 'received': 1.0, 'today': 1.0, 'organizer': 1.0, 'so': 1.0, 'rover': 1.0, 'really': 1.0, 'is': 1.0, 'looks': 1.0, 'like': 1.0, 'and': 1.0, 'it': 4.0, 'love': 1.0, 'way': 1.0, 'material': 1.0, 'in': 1.0, 'land': 1.0}
Word element => {'one': 1.0, 'top': 1.0, 'ties': 1.0, 'it': 1.0, 'where': 1.0, 'they': 1.0, 'places': 1.0, 'improvementspecially': 1.0, 'of': 1.0, 'addition': 1.0, 'lot': 1.0, 'design': 1.0, 'wish': 1.0, 'to': 2.0, 'had': 1.0, 'needs': 1.0, 'in': 1.0, 'a': 1.0, 'the': 3.0, 'provided': 1.0, 'seat': 1.0, 'lower': 1.0, 'tie': 1.0, 'i': 1.0, 'knots': 1.0}
Word element => {'hopefully': 1.0, 'grandkiddos': 1.0, 'present': 1.0, 'easier': 1.0, 'purchased': 1.0, 'i': 1.0, 'christmas': 1.0, 'this': 2.0, 'item': 2.0, 'my': 1.0, 'run': 1.0, 'great': 1.0, 'will': 1.0, 'driving': 1.0, 'on': 1.0, 'vacations': 1.0, 'car': 1.0, 'and': 1.0, 'short': 1.0, 'make': 1.0, 'around': 1.0, 'parents': 1.0, 'for': 2.0, 'rides': 1.0}
Word element => {'differently': 1.0, 'on': 1.0, 'was': 1.0, 'to': 1.0, 'product': 1.0, 'supposed': 1.0, 'what': 1.0, 's': 1.0, 'that': 1.0, 'space': 1.0, 'shown': 1.0, 'hollow': 1.0, 'touch': 1.0, 'pockets': 1.0, 'do': 1.0, 'and': 2.0, 'very': 2.0, 'photo': 1.0, 'completely': 1.0, 'of': 4.0, 'has': 2.0, 'compartments': 1.0, 'seat': 2.0, 'not': 1.0, 'happy': 1.0, 'it': 4.0, 'maybe': 1.0, 'can': 1.0, 'lot': 1.0, 'which': 1.0, 'is': 2.0, 'useful': 1.0, 'doesn': 1.0, 'back': 2.0, 'but': 2.0, 'somehow': 1.0, 't': 1.0, 'the': 6.0, 'fit': 1.0, 'a': 2.0, 'well': 1.0, 'into': 1.0}
Word element => {'made': 1.0, 'has': 1.0, 'bunch': 1.0, 'doesn': 1.0, 'useable': 1.0, 'slides': 1.0, 'are': 1.0, 'always': 1.0, 'there': 1.0, 'at': 1.0, 'lot': 2.0, 'string': 2.0, 'see': 1.0, 'better': 1.0, 'ties': 1.0, 'it': 4.0, 'this': 1.0, 'with': 1.0, 'construction': 1.0, 'bottom': 1.0, 'paracord': 1.0, 'kind': 1.0, 'from': 1.0, 'more': 1.0, 'is': 4.0, 'actually': 1.0, 'cheap': 1.0, 'i': 1.0, 'up': 1.0, 'replacing': 1.0, 'the': 5.0, 'a': 2.0, 't': 2.0, 'cord': 1.0, 'terrible': 1.0, 'that': 3.0, 'thing': 1.0, 'material': 1.0, 'lock': 1.0, 'droops': 1.0, 'and': 3.0, 'loose': 1.0, 'how': 1.0, 'sadly': 1.0, 'isn': 1.0, 'of': 1.0, 'reasonably': 1.0, 'priced': 1.0, 'can': 1.0, 'much': 1.0, 'what': 1.0, 'redoing': 1.0, 'as': 1.0, 'to': 1.0, 'seat': 1.0, 'so': 1.0}
Word element => {'we': 1.0, 's': 1.0, 'son': 1.0, 'gadgets': 1.0, 'my': 1.0, 'all': 1.0, 'for': 1.0, 'place': 1.0, 'it': 1.0, 'when': 1.0, 'i': 1.0, 'compartments': 1.0, 'toys': 1.0, 'has': 1.0, 'really': 1.0, 'many': 1.0, 'that': 1.0, 'a': 1.0, 'travel': 1.0, 'and': 2.0, 'like': 1.0, 'need': 1.0}
Word element => {'has': 1.0, 'were': 1.0, 'which': 1.0, 'baby': 1.0, 'dainty': 1.0, 'clearly': 1.0, 'another': 1.0, 'wanted': 1.0, 'kids': 1.0, 'coming': 1.0, 'have': 1.0, 'sent': 1.0, 'now': 1.0, 'one': 1.0, 'selling': 1.0, 'to': 3.0, 'is': 2.0, 'stow': 1.0, 'it': 2.0, '99': 3.0, 'called': 1.0, 'problem': 1.0, 'shipped': 1.0, 'placed': 1.0, 'an': 1.0, 'organizer': 1.0, 'i': 4.0, 'two': 1.0, 'the': 6.0, 'sunshine': 3.0, '7': 2.0, 'kid': 1.0, 'order': 1.0, 'organizers': 3.0, 'and': 6.0, 'was': 6.0, 'refund': 1.0, 'difference': 1.0, 'get': 1.0, 'piece': 1.0, 'n': 1.0, 'not': 1.0, 'good': 1.0, 'for': 2.0, 'product': 4.0, 'never': 1.0, 'car': 1.0, 'mentioned': 1.0, 'anything': 1.0, 'told': 2.0, 'about': 1.0, 'diono': 4.0, 'in': 1.0, 'from': 2.0, '14': 1.0, 'returned': 1.0, 'a': 6.0, 'go': 1.0, 's': 1.0, 'try': 1.0, 'again': 3.0, 'ordered': 1.0}
Word element => {'anyone': 1.0, 'recommend': 1.0, 'would': 1.0, 'or': 1.0, 'i': 1.0, 'grandkids': 2.0, 'this': 2.0, 'product': 1.0, 'with': 1.0, 'is': 1.0, 'a': 2.0, 'the': 1.0, 'children': 1.0, 'for': 3.0, 'price': 1.0, 'great': 2.0, 'it': 1.0, 'makes': 1.0, 'gift': 1.0}
Word element => {'waste': 1.0, '5': 1.0, 'money': 1.0, 'but': 1.0, 'quality': 1.0, 'better': 1.0, 'great': 1.0, 'one': 2.0, 'getting': 1.0, 'or': 1.0, 'another': 1.0, 'worked': 1.0, 'dollars': 1.0, 'much': 1.0, 'only': 2.0, 'tried': 1.0, 'away': 1.0, 'throwing': 1.0, 'had': 1.0, 'securely': 1.0, 'came': 2.0, 'also': 1.0, 'in': 1.0, 'munchkin': 1.0, 'super': 1.0, 'undone': 3.0, 'i': 4.0, 'actually': 1.0, 'product': 1.0, 'for': 2.0, 'to': 3.0, 'seat': 2.0, 'just': 2.0, 'about': 1.0, 'tie': 1.0, 'thing': 2.0, 'this': 4.0, 'month': 2.0, 'it': 5.0, 'does': 1.0, 'maybe': 1.0, 'flimsy': 1.0, 't': 1.0, 'a': 1.0, 'the': 7.0, 'very': 2.0, 'and': 4.0, 'attach': 1.0, 'on': 3.0, 'your': 2.0, 'so': 2.0, 'not': 2.0, 'kinda': 1.0, 'update': 1.0, 'flops': 1.0, 'stitching': 1.0, 'string': 1.0, 'bottom': 1.0, 'always': 1.0, 'don': 1.0, 'cheaper': 1.0, 'up': 2.0, 'that': 3.0, 'you': 1.0, 'gluing': 1.0, 'pouch': 2.0, 'use': 1.0, 'dissapointed': 1.0, 'around': 1.0, 'is': 5.0, 'really': 1.0, 'coming': 1.0, 'ended': 2.0}
Word element => {'down': 1.0, 'sags': 1.0, 'lap': 1.0, 'over': 1.0, 'area': 1.0, 'run': 1.0, 'so': 1.0, 'straps': 1.0, 'narrow': 1.0, 'pockets': 1.0, 'the': 7.0, 'great': 1.0, 'protect': 1.0, 'holding': 1.0, 'roomy': 1.0, 'large': 2.0, 'cover': 1.0, 'posts': 1.0, 'what': 1.0, 'does': 1.0, 'see': 1.0, 's': 2.0, 'a': 1.0, 'it': 1.0, 'only': 1.0, 'velcro': 2.0, 'with': 1.0, 'work': 1.0, 'not': 1.0, 'organizer': 2.0, 'and': 3.0, 'mesh': 1.0, 'pocket': 1.0, 'material': 1.0, 'seat': 1.0, 'to': 3.0, 'of': 3.0, 'handy': 1.0, 'metal': 1.0, 'whole': 1.0, 'several': 1.0, 'thing': 1.0, 'wide': 2.0, 'that': 1.0, 'out': 2.0, 'made': 1.0, 'is': 1.0, 'back': 2.0, 'top': 2.0, 'for': 1.0, 'mine': 1.0, 'extra': 1.0, 'chair': 1.0, 'headrest': 1.0, 'strap': 1.0, 'are': 1.0}
Word element => {'opinion': 1.0, 'radically': 1.0, 'planning': 1.0, 'ca': 1.0, 'start': 2.0, 'am': 2.0, 'deteriorating': 1.0, 'stickier': 1.0, 'using': 1.0, 'by': 1.0, 'reduce': 1.0, 'further': 1.0, 'improved': 1.0, 'tilting': 1.0, 'harness': 1.0, 'latch': 1.0, 'change': 1.0, 'up': 1.0, 'completely': 1.0, 'reduced': 1.0, 'although': 1.0, 'as': 2.0, 'upper': 3.0, 'lining': 1.0, 'watch': 1.0, 'material': 3.0, 'backing': 2.0, 'prevent': 1.0, 'very': 2.0, 'seems': 1.0, 'construction': 1.0, 'than': 1.0, 'reviews': 1.0, 'think': 2.0, 'better': 1.0, 'sticky': 1.0, 'mat': 8.0, 'ultra': 1.0, 'protecting': 1.0, 'somewhat': 1.0, 'diono': 1.0, 'picked': 1.0, 'but': 3.0, 'for': 5.0, 'eliminate': 1.0, 'made': 1.0, 'good': 2.0, 'which': 2.0, 'attaching': 1.0, 'is': 3.0, 'more': 1.0, 'rear': 2.0, 'new': 2.0, 'non': 1.0, 'three': 1.0, 'into': 1.0, 'shaped': 1.0, 'vehicle': 1.0, 'may': 1.0, 'my': 2.0, 'quality': 1.0, 'previous': 1.0, 'recaro': 2.0, 'immediately': 1.0, 'and': 7.0, 'seats': 3.0, 'with': 3.0, 'old': 1.0, 'contoured': 1.0, 'would': 1.0, 'sliding': 6.0, 'on': 3.0, 'upholstery': 1.0, 'car': 5.0, 'middle': 3.0, 'arched': 1.0, 'son': 1.0, 'under': 1.0, 'passengers': 1.0, 'a': 9.0, 'heat': 1.0, 'going': 1.0, 's': 1.0, 'prevents': 1.0, 'internet': 1.0, 'mats': 1.0, 'has': 3.0, 'top': 2.0, 'similar': 1.0, 'protector': 1.0, 'recently': 1.0, 'cloth': 1.0, 'i': 12.0, 'two': 1.0, 'selection': 1.0, 'was': 3.0, 'others': 1.0, 'unfortunately': 1.0, 'turns': 1.0, 'if': 1.0, 'still': 1.0, 'vivo': 2.0, 'leather': 3.0, 'booster': 12.0, 'not': 4.0, 'search': 1.0, 'in': 6.0, 'seat': 9.0, 'to': 11.0, 'this': 4.0, 'however': 2.0, 'found': 1.0, 'had': 2.0, 'sticking': 1.0, 'could': 1.0, 'will': 2.0, 'also': 3.0, 'be': 2.0, 'stable': 1.0, 'ran': 1.0, 'the': 41.0, 'of': 10.0, 'happens': 1.0, 'bump': 1.0, 'potentially': 1.0, 'an': 4.0, 'bottom': 1.0, 'lack': 1.0, 'traction': 1.0, 'between': 1.0, 'cause': 1.0, 'addition': 1.0, 'from': 5.0, 'part': 1.0, 'problem': 2.0, 'tilted': 1.0, 'reluctantly': 1.0, 'slide': 2.0, 'significantly': 1.0, 'back': 2.0, 'making': 1.0, 'uncomfortable': 1.0, 'that': 4.0, 'because': 2.0, 'concerned': 2.0, 'allowed': 1.0, 'damage': 1.0, 'move': 1.0, 'used': 1.0, 'ended': 1.0, 'bed': 1.0, 'sheet': 1.0, 'thought': 1.0, 'it': 6.0, 'keep': 1.0, 'upgraded': 1.0, 'did': 3.0, 'shelf': 1.0, 'driver': 1.0, 'rubber': 2.0, 'restraints': 1.0, 'help': 1.0, 'about': 1.0, 'behind': 1.0}
Word element => {'it': 1.0, 'recommend': 1.0, 'would': 1.0, 'seats': 2.0, 's': 1.0, 'definitely': 1.0, 'worth': 1.0, 'the': 1.0, 'kids': 1.0, 'you': 1.0, 'price': 1.0, 'if': 1.0, 'when': 1.0, 'your': 1.0, 'to': 1.0, 'using': 1.0, 'want': 1.0, 'protect': 1.0, 'car': 2.0}
Word element => {'item': 1.0, 'this': 1.0, 'would': 1.0, 'bottom': 1.0, 'on': 1.0, 'protects': 1.0, 'recommend': 1.0, 'seat': 1.0, 'the': 2.0, 'my': 1.0, 'i': 1.0, 'stays': 1.0, 'in': 1.0, 'place': 1.0, 'well': 1.0, 'also': 1.0, 'highly': 1.0, 'pockets': 1.0, 'and': 1.0, 'like': 1.0}
Word element => {'pleased': 1.0, 'am': 1.0, 'far': 1.0, 'go': 1.0, 'to': 1.0, 'fits': 1.0, 'ready': 1.0, 'but': 1.0, 'car': 1.0, 'nice': 1.0, 'and': 1.0, 'very': 1.0, 'my': 2.0, 'the': 1.0, 'yet': 1.0, 'in': 1.0, 'not': 1.0, 'due': 1.0, 'have': 2.0, 'it': 3.0, 'i': 2.0, 'grandbaby': 1.0, 'is': 2.0, 'installed': 1.0, 'anytime': 1.0, 'so': 2.0, 'mat': 1.0, 'actually': 1.0, 'used': 1.0}
Word element => {'though': 1.0, 'machine': 1.0, 'washing': 1.0, 'in': 1.0, 'ever': 1.0, 'thorw': 1.0, 'would': 1.0, 'think': 1.0, 'okay': 1.0, 'pretty': 1.0, 'hand': 1.0, 'only': 1.0, 'little': 1.0, 'absorb': 1.0, 'water': 2.0, 'and': 5.0, 'worked': 1.0, 'from': 1.0, 'kind': 1.0, 'looks': 1.0, 'it': 6.0, 'protectors': 1.0, 'went': 1.0, 'my': 1.0, 'stores': 1.0, 'leather': 1.0, 'good': 1.0, 'different': 1.0, 'retail': 1.0, 'one': 1.0, 'online': 1.0, 'does': 1.0, 'brands': 1.0, 'prove': 1.0, 'this': 1.0, 'found': 1.0, 'provides': 1.0, 'best': 1.0, 'protect': 1.0, 'i': 4.0, 'check': 1.0, 'the': 1.0, 'me': 1.0, 'not': 1.0, 'once': 1.0, 'of': 2.0, 'don': 1.0, 'wash': 1.0, 'up': 1.0, 'for': 1.0, 'product': 2.0, 't': 1.0, 'a': 2.0, 's': 2.0, 'light': 1.0, 'weight': 1.0, 'coverage': 1.0, 'more': 1.0, 'prince': 1.0, 'is': 1.0, 'lionheart': 1.0, 'but': 1.0, 'enough': 1.0, 'as': 2.0, 'seat': 2.0, 'to': 2.0, 'any': 1.0, 'thick': 2.0, 'dent': 1.0, 'or': 1.0, 'mark': 1.0}
Word element => {'seats': 1.0, 'and': 1.0, 'addition': 1.0, 'of': 1.0, 'seat': 1.0, 'in': 1.0, 'three': 1.0, 'with': 1.0, 'kids': 1.0, 'all': 1.0, 'have': 2.0, 'we': 2.0, 'bought': 1.0, 'must': 1.0, 'another': 1.0, 'each': 1.0, 'protectors': 1.0, 'a': 1.0, 'one': 1.0, 'great': 1.0, 'these': 1.0, 'car': 1.0, 'definitely': 1.0, 'works': 1.0}
Word element => {'recommend': 1.0, 'in': 1.0, 'clean': 1.0, 'to': 1.0, 'highly': 1.0, 'another': 1.0, 'removed': 1.0, 'storing': 1.0, 'for': 1.0, 'handy': 1.0, 'is': 2.0, 'easily': 1.0, 'pocket': 1.0, 'or': 1.0, 'snacks': 1.0, 'crumbs': 1.0, 'all': 1.0, 'front': 1.0, 'well': 1.0, 'has': 1.0, 'saved': 1.0, 'seat': 1.0, 'that': 2.0, 'toys': 1.0, 'glad': 1.0, 'so': 1.0, 'place': 1.0, 'am': 1.0, 'the': 3.0, 'this': 2.0, 'it': 3.0, 'found': 1.0, 'i': 3.0, 'my': 1.0, 'leather': 1.0, 'installed': 1.0, 'seats': 1.0, 'as': 2.0, 'from': 2.0, 'can': 1.0, 'damage': 1.0, 'be': 1.0, 'caused': 1.0, 'sunglasses': 1.0, 'by': 1.0, 'car': 2.0}
Word element => {'width': 1.0, 'protector': 1.0, 'captain': 1.0, 'larger': 1.0, 'may': 1.0, 'my': 1.0, 'wide': 1.0, 'buckles': 1.0, 'belt': 1.0, 'than': 1.0, 'because': 1.0, 'fully': 1.0, 'though': 1.0, 'more': 1.0, 'is': 2.0, 'say': 1.0, 'would': 2.0, 'side': 1.0, 'exercise': 1.0, 'protection': 1.0, 'out': 1.0, 'tested': 1.0, 'against': 1.0, 'so': 2.0, 'only': 2.0, 'water': 1.0, 'in': 1.0, 'drink': 1.0, 'if': 1.0, 'eat': 1.0, 'it': 4.0, 'allows': 1.0, 'this': 2.0, 'that': 2.0, 'been': 2.0, 'not': 3.0, 'disappointed': 1.0, 'have': 2.0, 'chance': 1.0, 'bought': 1.0, 'one': 1.0, 'took': 1.0, 'read': 1.0, 'lot': 2.0, 's': 6.0, 'a': 4.0, 'protectors': 1.0, 'i': 7.0, 'two': 1.0, 'your': 1.0, 'on': 3.0, 'car': 2.0, 'and': 3.0, 'saver': 1.0, 'any': 1.0, 'seat': 4.0, 'to': 3.0, 'our': 1.0, 'just': 1.0, 'life': 1.0, 'acadia': 2.0, 'leather': 2.0, 'ride': 1.0, 'seats': 3.0, 'enough': 1.0, 're': 1.0, 'cover': 2.0, 'you': 1.0, 'am': 1.0, 'change': 1.0, 'can': 1.0, 'how': 1.0, 'adjust': 1.0, 'reviews': 1.0, 'they': 1.0, 'slits': 1.0, 'the': 6.0, 'allowed': 1.0, 'top': 1.0, 'headrests': 1.0, 'of': 3.0, 'rather': 1.0, 'for': 2.0, 'caution': 1.0, 'love': 1.0, 'picky': 1.0, 'thing': 1.0, 'spills': 1.0, 'about': 2.0, 'either': 1.0, 'what': 1.0}
Word element => {'purchase': 1.0, 'wasn': 1.0, 'but': 1.0, 'food': 2.0, 'we': 2.0, 't': 2.0, 'there': 4.0, 'mats': 2.0, 'was': 4.0, 'am': 1.0, 'are': 3.0, 'new': 1.0, 'move': 1.0, 'sworn': 1.0, 'protects': 1.0, 'remains': 1.0, 'have': 2.0, 'a': 3.0, 'small': 1.0, 'molded': 1.0, 'happen': 1.0, 'drive': 1.0, 'this': 1.0, 'never': 1.0, 'previous': 1.0, 'i': 9.0, 'intact': 1.0, 'no': 3.0, 'arrived': 1.0, 's': 1.0, 'van': 1.0, 'determined': 1.0, 'not': 2.0, 'in': 2.0, 'seat': 1.0, 'our': 2.0, 'pretty': 1.0, 'to': 10.0, 'any': 1.0, 'all': 2.0, 'seats': 5.0, 'just': 1.0, 'dents': 2.0, 'find': 1.0, 'it': 2.0, 'pockets': 1.0, 'with': 3.0, 'leather': 4.0, 'because': 1.0, 'that': 4.0, 'what': 1.0, 'had': 4.0, 'the': 5.0, 'believe': 1.0, 'bought': 2.0, 'be': 1.0, 'and': 5.0, 'anyone': 1.0, 'allow': 1.0, 'from': 1.0, 'while': 1.0, 'overseas': 1.0, 'for': 2.0, 'forgot': 1.0, 'accessible': 1.0, 'allowed': 1.0, 'pack': 1.0, 'protectors': 1.0, 'my': 4.0, 'vehicle': 1.0, 'these': 2.0, 'household': 1.0, 'so': 1.0, 'organized': 1.0, 'until': 1.0, 'nice': 1.0, 'items': 1.0, 'recommend': 1.0, 'were': 1.0, 'now': 1.0, 'returned': 1.0, 'way': 1.0, 'again': 2.0, 'car': 2.0, 'clean': 2.0, 'less': 1.0, 'up': 1.0, 'sucker': 1.0, 'don': 1.0, 'more': 1.0, 'auto': 1.0, 'd': 1.0, 'set': 1.0, 'strong': 1.0, 'rubber': 1.0, 'mat': 1.0, 'every': 1.0, 'reason': 1.0, 'indention': 1.0, 'looking': 1.0, 'note': 1.0, 'very': 1.0}
Word element => {'product': 1.0, 'this': 1.0, 'recommend': 1.0, 'highly': 1.0, 'boosters': 1.0, 'carseats': 1.0, 'under': 1.0, 'up': 1.0, 'slide': 1.0, 'for': 1.0, 'i': 2.0, 'was': 1.0, 'to': 1.0, 'exactly': 1.0, 'looking': 1.0, 'scrunch': 1.0, 'what': 1.0, 'our': 1.0, 'were': 1.0, 'covers': 1.0, 'protect': 1.0, 'not': 1.0, 'seat': 1.0, 'these': 1.0, 'they': 1.0, 'my': 2.0, 'leather': 1.0, 'seats': 1.0, 'fit': 1.0, 'or': 1.0, 'into': 1.0, 'car': 1.0, 'perfectly': 1.0, 'and': 2.0, 'do': 1.0}
Word element => {'elite': 1.0, 'summer': 1.0, 'favor': 1.0, 'returned': 1.0, 'be': 1.0, 'during': 1.0, 'your': 1.0, 'remove': 1.0, 'you': 1.0, 'long': 1.0, 'dangling': 1.0, 'mat': 2.0, 'or': 1.0, 'behind': 1.0, 'headrest': 4.0, 'duomat': 1.0, 'in': 2.0, 'take': 1.0, 'however': 1.0, 'seats': 1.0, 'from': 1.0, 'me': 1.0, 'use': 1.0, 'i': 4.0, 'these': 2.0, 'hanging': 1.0, 'the': 9.0, 'nice': 1.0, 'install': 1.0, 'scratch': 1.0, 'this': 2.0, 'have': 3.0, 'down': 2.0, 't': 1.0, 'a': 3.0, 'strap': 4.0, 'should': 1.0, 'was': 2.0, 'no': 1.0, 'of': 2.0, 'metal': 1.0, 'don': 1.0, 'over': 1.0, 'up': 1.0, 'at': 1.0, 'keep': 1.0, 'if': 1.0, 'top': 1.0, 'back': 2.0, 'additionally': 1.0, 'attach': 1.0, 'out': 1.0, 'infant': 1.0, 'car': 2.0, 'installation': 1.0, 'that': 1.0, 'minivan': 1.0, 'my': 1.0, 'leather': 1.0, 'has': 1.0, 'closure': 1.0, 'where': 1.0, 'afraid': 1.0, 'flopping': 1.0, 'would': 2.0, 'as': 3.0, 'to': 5.0, 'our': 1.0, 'seat': 3.0, 'left': 1.0}
Word element => {'parents': 1.0, 'product': 1.0, 'definitely': 1.0, 'would': 1.0, 'all': 1.0, 'at': 1.0, 'no': 1.0, 'seat': 1.0, 'in': 1.0, 'a': 1.0, 'struggling': 1.0, 'to': 3.0, 'trying': 1.0, 'install': 1.0, 'problems': 1.0, 'protects': 1.0, 'very': 1.0, 'brands': 1.0, 'other': 2.0, 'fit': 1.0, 'and': 1.0, 'get': 1.0, 'after': 1.0, 'i': 3.0, 'found': 1.0, 'good': 1.0, 'stays': 1.0, 'm': 1.0, 'leather': 1.0, 'my': 1.0, 'happy': 1.0, 'place': 1.0, 'brand': 1.0, 'this': 2.0, 'with': 2.0, 'it': 2.0, 'recommend': 1.0, 'easy': 1.0}
Word element => {'bought': 1.0, 'son': 1.0, 'had': 1.0, 'when': 1.0, 'at': 1.0, 'didn': 1.0, 'overall': 1.0, 'used': 1.0, 'be': 1.0, 'really': 1.0, 'isn': 1.0, 'how': 1.0, 'use': 1.0, 'so': 1.0, 'in': 2.0, 'carseat': 1.0, 'latch': 1.0, 'then': 1.0, 'move': 1.0, 'but': 2.0, 'can': 3.0, 'below': 1.0, 'just': 2.0, 'returned': 1.0, 'sit': 1.0, 'is': 4.0, 'want': 1.0, 'the': 11.0, 'go': 1.0, 'hole': 1.0, 'a': 1.0, 't': 4.0, 'tried': 2.0, 'i': 10.0, 'that': 4.0, 'brands': 1.0, 'others': 1.0, 'some': 1.0, 'well': 2.0, 'his': 1.0, 'almost': 1.0, 'like': 2.0, 'allow': 1.0, 've': 2.0, 'thru': 1.0, 'headrest': 2.0, 'intended': 1.0, 'belt': 1.0, 'doesn': 1.0, 'smell': 1.0, 'making': 1.0, 'other': 1.0, 'goes': 1.0, 'looks': 1.0, 'it': 6.0, 'perfect': 2.0, 'this': 2.0, 'considering': 1.0, 'works': 1.0, 'only': 1.0, 'not': 2.0, 'and': 2.0, 'too': 4.0, 'great': 3.0, 'big': 1.0, 'protects': 1.0, 'small': 1.0, 'high': 1.0, 'another': 1.0, 'my': 3.0, 'enough': 1.0, 'back': 2.0, 'top': 1.0, 'complaint': 1.0, 'up': 2.0, 'of': 2.0, 'for': 1.0, 'product': 1.0, 'actually': 1.0, 'all': 1.0, 'seat': 3.0, 'as': 1.0, 'to': 5.0, 'm': 1.0, 'protect': 1.0, 'size': 1.0, 'mat': 2.0, 'designed': 1.0}
Word element => {'would': 1.0, 'recommend': 1.0, 'store': 1.0, 'pocket': 1.0, 'item': 1.0, 'size': 1.0, 'good': 1.0, 'vehicle': 2.0, 'in': 1.0, 'perfect': 1.0, 'to': 3.0, 'seats': 3.0, 'and': 2.0, 'is': 1.0, 'have': 1.0, 'i': 1.0, 'whole': 1.0, 'we': 1.0, 'items': 1.0, 'so': 1.0, 'save': 1.0, 'suburban': 1.0, 'mat': 1.0, 'protect': 1.0, 'front': 1.0, 'a': 2.0, 'covers': 1.0, 'has': 1.0, 'your': 2.0, 'they': 1.0, 'are': 1.0, 'the': 2.0, 'larger': 1.0, 'this': 2.0, 'it': 1.0, 'seat': 1.0}
Word element => {'guess': 1.0, 'with': 1.0, 's': 1.0, 'doing': 1.0, 'looking': 1.0, 'buyer': 1.0, 'should': 1.0, 'its': 1.0, 'keep': 1.0, 'job': 1.0, 'it': 1.0, 'this': 1.0, 'gone': 1.0, 'have': 1.0, 'all': 1.0, 'but': 1.0, 'bought': 1.0, 'more': 1.0, 'i': 3.0, 'one': 1.0}
Word element => {'something': 1.0, 'i': 1.0, 'the': 1.0, 'protecting': 1.0, 'at': 1.0, 'liked': 1.0, 'for': 1.0, 'be': 1.0, 'least': 1.0, 'may': 1.0, 'have': 2.0, 'leather': 1.0, 'smaller': 1.0, 'my': 1.0, 'are': 1.0, 'again': 1.0, 'you': 2.0, 'to': 1.0, 'mat': 1.0, 'your': 1.0, 'okay': 2.0, 'seat': 1.0, 'is': 2.0, 'car': 2.0, 'but': 1.0, 'back': 1.0, 'cover': 1.0, 'seats': 3.0, 'and': 1.0, 'would': 1.0, 'rather': 1.0, 'if': 1.0, 'larger': 1.0, 'barely': 1.0, 'large': 1.0, 'this': 2.0, 'it': 2.0, 'covers': 1.0, 'them': 1.0}
Word element => {'definitely': 1.0, 'feet': 1.0, 'i': 2.0, 'his': 2.0, 'works': 1.0, 'like': 2.0, 'and': 4.0, 'backwards': 1.0, 'faces': 1.0, 'trying': 1.0, 'son': 1.0, 'car': 2.0, 'bought': 1.0, 'were': 1.0, 'this': 2.0, 'tap': 1.0, 'it': 2.0, 'protect': 1.0, 'little': 1.0, 'specifically': 1.0, 'off': 1.0, 'recommend': 1.0, 'was': 1.0, 'wipe': 1.0, 'light': 1.0, 'install': 1.0, 'the': 2.0, 'colored': 1.0, 'upholstery': 1.0, 'of': 2.0, 'on': 1.0, 'over': 1.0, 'scuff': 1.0, 'back': 1.0, 'sick': 1.0, 'shoes': 1.0, 'dirt': 1.0, 's': 1.0, 'a': 1.0, 'getting': 1.0, 'marks': 1.0, 'clean': 1.0, 'our': 2.0, 'to': 4.0, 'seat': 2.0, 'all': 1.0, 'keep': 1.0, 'charm': 1.0, 'easy': 1.0}
Word element => {'interior': 1.0, 'both': 1.0, 'for': 1.0, 'work': 1.0, 'my': 1.0, 'great': 2.0, 'cloth': 1.0, 'leather': 1.0, 'highly': 1.0, 'seats': 1.0, 'and': 2.0, 'i': 2.0, 'have': 1.0, 'product': 1.0, 'purchased': 1.0, '3': 1.0, 'recommend': 1.0, 'of': 1.0, 'protect': 1.0, 'them': 2.0, 'cars': 1.0, 'they': 2.0}
Word element => {'long': 1.0, 'a': 1.0, 'last': 1.0, 'will': 1.0, 'it': 1.0, 'sure': 1.0, 'am': 1.0, 'anyone': 1.0, 'the': 2.0, 'time': 1.0, 'is': 1.0, 'recommend': 1.0, 'seat': 1.0, 'securely': 1.0, 'heavyduty': 1.0, 'and': 1.0, 'this': 1.0, 'fit': 1.0, 'product': 2.0, 'to': 2.0, 'i': 2.0, 'would': 1.0}
Word element => {'cover': 1.0, 'carseat': 1.0, 'wide': 1.0, 'little': 1.0, 'are': 1.0, 'do': 1.0, 'used': 2.0, 'infant': 1.0, 'seats': 1.0, 'an': 1.0, 'just': 1.0, 'for': 2.0, 'in': 2.0, 'also': 1.0, 'covers': 1.0, 'it': 3.0, 'this': 2.0, 'moving': 1.0, 'with': 1.0, '1': 1.0, 'and': 2.0, 'can': 1.0, 'but': 1.0, '2': 1.0, 'the': 7.0, 'you': 1.0, 'seen': 1.0, 'have': 3.0, 'tucks': 1.0, 'able': 1.0, 'both': 1.0, 'best': 2.0, 'part': 1.0, 'from': 1.0, 'i': 2.0, 'ever': 1.0, 'parts': 1.0, 'say': 1.0, 'is': 4.0, 'comes': 1.0, 'all': 2.0, 'seat': 4.0, 'to': 3.0, 'any': 1.0, 'there': 1.0, 'of': 1.0, 'a': 2.0, 'that': 3.0, 'into': 1.0, 'latch': 2.0, 'crevice': 1.0, 'keep': 1.0, 'be': 1.0, 'still': 1.0, 'facing': 1.0, 'cars': 1.0, 'forward': 1.0, 'mat': 1.0, 'system': 1.0, 'though': 1.0}
Word element => {'far': 1.0, 'purchase': 1.0, 'happy': 1.0, 'are': 1.0, 'indentation': 1.0, 'really': 1.0, 'how': 1.0, 'attaches': 1.0, 'to': 2.0, 'from': 1.0, 'protects': 1.0, 'trick': 1.0, 'thus': 1.0, 'much': 1.0, 'room': 1.0, 'time': 1.0, 'seems': 1.0, 'mat': 1.0, 'we': 1.0, 'tell': 1.0, 'the': 4.0, 'car': 1.0, 'seat': 3.0, 'easily': 1.0, 'do': 1.0, 'and': 1.0, 'latch': 1.0, 'it': 2.0, 'with': 2.0, 'this': 1.0, 'only': 1.0, 'leaves': 1.0, 'ample': 1.0, 'but': 1.0, 'secure': 1.0, 'will': 1.0}
Word element => {'3': 1.0, 'number': 1.0, 'get': 1.0, 'definitely': 1.0, 'great': 1.0, 'from': 1.0, 'protect': 1.0, 'recommend': 1.0, 'mats': 1.0, 'doesn': 1.0, 'dent': 1.0, 'deep': 1.0, 'pretty': 1.0, 'the': 8.0, 'these': 1.0, 'is': 1.0, 'nitpick': 1.0, 'bottom': 1.0, 'of': 2.0, 'at': 1.0, 'another': 1.0, 'my': 1.0, 'leather': 1.0, 'for': 1.0, 'love': 1.0, 'they': 2.0, 'diono': 1.0, 'what': 1.0, 'carseat': 1.0, 'don': 1.0, 'baby': 1.0, 'them': 2.0, 'exactly': 1.0, 'wanted': 1.0, 'do': 3.0, 'only': 1.0, 'it': 2.0, 'pockets': 1.0, 'otherwise': 1.0, 'i': 1.0, 'presses': 1.0, 'like': 3.0, 'cover': 1.0, 'seats': 1.0, 'headrests': 1.0, 'that': 2.0, 'into': 1.0, 'would': 1.0, 'each': 1.0, 'to': 1.0, 'seat': 2.0, 'if': 2.0, 'you': 2.0, 'leave': 1.0, 'have': 2.0, 't': 2.0, 'we': 3.0, 'a': 2.0, 'and': 2.0, 'tall': 1.0, 'mat': 1.0, 'forward': 1.0, 'will': 2.0, 'facing': 1.0, 'top': 1.0, 'headrest': 1.0}
Word element => {'anyone': 1.0, 'highly': 1.0, 'would': 1.0, 'mat': 1.0, 'sitting': 1.0, 'when': 1.0, 'at': 1.0, 'slide': 1.0, 'not': 1.0, 'does': 1.0, 'recommend': 1.0, 'chicco': 1.0, 'of': 1.0, 'metal': 1.0, 'protects': 1.0, 'very': 1.0, 'this': 5.0, 'bottom': 1.0, 'perfectly': 1.0, 'and': 5.0, 'even': 1.0, 'hides': 1.0, 'them': 1.0, 'it': 1.0, 'covers': 1.0, 'i': 3.0, 'purchased': 1.0, 'back': 1.0, 'compartment': 1.0, 'product': 1.0, 'for': 2.0, 'entire': 1.0, 'fits': 1.0, 'my': 1.0, 'with': 1.0, 'leather': 2.0, 'seats': 2.0, 'car': 5.0, 'cut': 1.0, 'is': 3.0, 'front': 1.0, 'has': 1.0, 'jetta': 1.0, 'the': 9.0, 'place': 1.0, 'out': 1.0, 'locks': 1.0, 'all': 1.0, 'seat': 3.0, 'to': 3.0, 'attach': 1.0, 'a': 3.0, 'we': 1.0, 'that': 1.0, 'hooks': 1.0, 'on': 3.0, 'also': 1.0, 'storage': 1.0, 'useful': 1.0, 'which': 2.0, 'like': 1.0, 'have': 1.0}
Word element => {'everything': 1.0, 'have': 1.0, 'll': 1.0, 'when': 1.0, 'you': 2.0, 'need': 1.0, 'bag': 1.0, 'board': 1.0, 'bags': 1.0, 'with': 2.0, 'it': 6.0, 'this': 2.0, 'that': 1.0, 'box': 1.0, 'baby': 1.0, 'size': 1.0, 'right': 1.0, 'good': 1.0, 'wipes': 1.0, 'extra': 1.0, 'i': 1.0, 'one': 3.0, 'for': 1.0, 'keep': 2.0, 'diaper': 1.0, 'practical': 1.0, 'pair': 1.0, 'of': 3.0, 'stock': 1.0, 'slim': 1.0, 'roll': 1.0, 'some': 2.0, 'these': 1.0, 'place': 1.0, 'the': 6.0, 'in': 2.0, 'velcro': 1.0, 'somewhere': 1.0, 'also': 1.0, 'diapers': 1.0, 'back': 1.0, 'vehicle': 1.0, 'easy': 1.0, 'makes': 1.0, 'attached': 1.0, 'and': 1.0, 'too': 1.0, 'out': 1.0, 'way': 2.0, 'just': 2.0, 'large': 2.0, 'to': 4.0, 'pads': 1.0, 'enough': 1.0, 'be': 1.0, 'strap': 1.0, 'are': 1.0, 'use': 1.0, 'on': 2.0, 'a': 2.0, 's': 3.0, 'go': 1.0}
Word element => {'included': 1.0, 'and': 1.0, 'all': 1.0, 'discoloration': 1.0, 'this': 1.0, 'with': 2.0, 'is': 2.0, 'over': 1.0, 'white': 1.0, 'arrived': 1.0, 'color': 1.0, 'poor': 1.0, 'blue': 2.0, 'quality': 1.0, 'likely': 1.0, 'item': 2.0, 'part': 1.0, 'of': 1.0, 'the': 1.0, 'pad': 2.0, 'most': 1.0, 'container': 1.0, 'very': 1.0, 'from': 1.0, 'comes': 1.0, 'wipe': 1.0, 'that': 1.0}
Word element => {'quickly': 1.0, 'to': 2.0, 's': 1.0, 'longer': 1.0, 'lot': 1.0, 'for': 1.0, 'changing': 1.0, 'need': 1.0, 'kids': 1.0, 'times': 1.0, 'amount': 1.0, 'would': 1.0, 'disappointing': 1.0, 'week': 1.0, 'but': 1.0, 'have': 1.0, 'all': 1.0, 'use': 2.0, 'pad': 2.0, 'it': 3.0, 'this': 1.0, 'of': 2.0, 'months': 2.0, 'shape': 1.0, 'and': 2.0, 'like': 1.0, 'so': 2.0, 'after': 1.0, 'folds': 1.0, 'maybe': 1.0, 'size': 1.0, 'replace': 1.0, 'cracking': 1.0, 'the': 2.0, 'are': 1.0, 'i': 3.0, 'a': 7.0, 'minimal': 1.0, 'few': 3.0, 'ripping': 1.0, 'than': 1.0, 'say': 1.0, 'that': 1.0}
Word element => {'hope': 1.0, 'growth': 1.0, 'possible': 1.0, 'enough': 1.0, 'say': 1.0, 'stand': 1.0, 'car': 1.0, 'like': 1.0, 'prior': 1.0, 'known': 1.0, 'does': 1.0, 'got': 1.0, 'big': 1.0, 'getting': 1.0, 'reasoning': 1.0, 'given': 2.0, 'before': 1.0, 'barely': 1.0, '3': 1.0, 'thing': 1.0, '2': 1.0, 'use': 1.0, 'is': 5.0, 'diameter': 1.0, '6': 1.0, 'helps': 1.0, '5': 1.0, 'around': 1.0, 'but': 2.0, 'on': 1.0, 'realize': 1.0, 'long': 2.0, 'strip': 2.0, 'inches': 1.0, 'about': 1.0, 'space': 1.0, 'velcro': 3.0, 'shape': 1.0, 'liked': 1.0, 'litterally': 1.0, 'takes': 1.0, 'up': 2.0, 'more': 1.0, 'purell': 1.0, 'doubles': 1.0, 'two': 1.0, 'or': 2.0, 'something': 1.0, 'add': 3.0, 'picture': 2.0, 'alone': 2.0, 'with': 1.0, 'quite': 1.0, 'becoming': 2.0, 'make': 1.0, 'fleurville': 1.0, 'wanting': 1.0, 'thats': 1.0, 'house': 1.0, 'mind': 1.0, 'apart': 1.0, 'bigger': 1.0, 'if': 3.0, 'eat': 1.0, 'depicts': 1.0, 'without': 2.0, 'hop': 1.0, 'in': 4.0, 'useful': 1.0, 'spacial': 1.0, 'most': 2.0, 'triples': 1.0, 'work': 2.0, 'for': 5.0, 'love': 1.0, 'spare': 1.0, 'fit': 1.0, 'seemed': 1.0, 'idea': 1.0, 'you': 5.0, 'one': 2.0, 'really': 4.0, '11': 1.0, 'didnt': 2.0, 'ok': 1.0, 'shipping': 1.0, 'travel': 1.0, 'could': 1.0, 'so': 2.0, 'to': 8.0, 'was': 1.0, 'had': 1.0, 'roll': 1.0, 'when': 2.0, 'what': 2.0, 'its': 2.0, 'pictured': 1.0, 'small': 1.0, 'a': 7.0, 'tiny': 2.0, 'trial': 1.0, 'compartments': 1.0, 'that': 8.0, 'changing': 1.0, 'three': 1.0, 'into': 1.0, 'inexpensive': 1.0, 'presents': 1.0, 'out': 2.0, 'of': 9.0, 'the': 15.0, 'alot': 1.0, 'go': 1.0, 'figured': 1.0, 'cant': 2.0, 'this': 5.0, 'it': 14.0, '3or4': 1.0, 'diapers': 2.0, 'are': 3.0, 'first': 1.0, 'tube': 2.0, 'just': 5.0, 'get': 1.0, 'and': 8.0, 'closure': 1.0, '15': 1.0, 'looking': 1.0, 'bag': 3.0, 'i': 11.0, 'well': 2.0, 'cylinder': 1.0, 'off': 1.0, 'grandparents': 1.0, 'etc': 3.0, 'pad': 1.0, 'efficiant': 1.0, 'w': 1.0, 'reasons': 1.0, 'my': 1.0, 'bathroom': 1.0, 'bags': 1.0, 'as': 3.0, 'diaper': 3.0, 'pod': 1.0, 'system': 1.0, 'size': 4.0, 'thickness': 1.0, 'skip': 1.0, 'bulky': 1.0, 'would': 7.0, 'munchkin': 1.0, 'truth': 1.0, 'cream': 4.0, 'be': 4.0, 'only': 1.0, 'grab': 1.0, 'all': 2.0, 'an': 2.0, 'wipes': 3.0, 'reviews': 1.0, 'then': 2.0, 'we': 1.0, 'take': 3.0, 'away': 1.0, 'not': 2.0, 'account': 1.0, 'closes': 1.0, '2oz': 1.0, 'those': 2.0, 'whole': 1.0, 'should': 2.0, 'have': 4.0, 'realized': 2.0, 'product': 2.0, 'price': 1.0, 'products': 1.0, 'even': 2.0, 'stroller': 1.0, 'how': 1.0, 'item': 1.0, 'great': 3.0, 'sort': 1.0, 'which': 1.0, 'others': 1.0, 'many': 1.0, 'mod': 1.0, 'there': 2.0, '4': 1.0, 'case': 2.0, 'pronto': 1.0}
Word element => {'rating': 1.0, 'version': 2.0, 'free': 1.0, 'service': 1.0, 'updated': 1.0, 'their': 1.0, 'corrected': 1.0, 'about': 1.0, 'complaints': 1.0, 'customer': 2.0, 'listen': 1.0, 'mode': 1.0, 'dig': 1.0, 'defective': 1.0, 'either': 1.0, 'still': 2.0, 'fraying': 1.0, 'zippers': 1.0, 'protected': 1.0, 'touch': 1.0, 'huge': 1.0, 'folded': 1.0, 'metal': 1.0, 'side': 1.0, 'panel': 1.0, 'sturdy': 1.0, 'goes': 1.0, 'webbing': 1.0, 'points': 1.0, 'much': 2.0, 'issue': 2.0, 'they': 3.0, 'new': 4.0, 'broken': 1.0, 'folding': 1.0, 'star': 1.0, 'them': 1.0, 'totally': 3.0, 'shape': 1.0, 'fitted': 1.0, 'there': 4.0, 'give': 1.0, 'soon': 1.0, 'changed': 1.0, 'perfectly': 1.0, 'no': 4.0, 'shoulders': 1.0, 'back': 3.0, 'parts': 1.0, 'perhaps': 2.0, 'grate': 1.0, 'these': 1.0, 'attachment': 1.0, 'replacing': 1.0, 'plastic': 2.0, 'backing': 1.0, 'uncomfortable': 2.0, 'behind': 1.0, 'ring': 2.0, 'is': 13.0, 'at': 1.0, 'most': 1.0, 'space': 3.0, 'time': 1.0, 'd': 2.0, 'replaced': 1.0, 'onto': 1.0, 'stars': 2.0, 'tightly': 1.0, 'portable': 1.0, 'hook': 1.0, 'better': 1.0, 'straps': 5.0, 'something': 1.0, 'however': 1.0, 'than': 1.0, 'bit': 1.0, 'materials': 2.0, 'should': 1.0, '3': 1.0, 'badly': 1.0, 'weight': 1.0, 'couple': 1.0, 'puts': 1.0, 'has': 4.0, 'sturdier': 1.0, 'fixed': 2.0, 'trips': 1.0, 'main': 2.0, 'in': 5.0, 'well': 3.0, 'putting': 1.0, 'only': 7.0, 'quickly': 1.0, 'works': 1.0, 'of': 8.0, 'the': 44.0, 'member': 1.0, 'longer': 1.0, 's': 1.0, 'bag': 6.0, 'a': 14.0, 'small': 1.0, 'community': 1.0, 'material': 1.0, 'also': 2.0, 'carseat': 3.0, 'tug': 1.0, 'fits': 3.0, 'reinforced': 1.0, 'an': 1.0, 'wide': 1.0, 'radian': 8.0, 'this': 6.0, 'flaws': 2.0, 'using': 1.0, 'with': 6.0, 'pockets': 1.0, 'be': 3.0, 'it': 21.0, 'thought': 1.0, '1': 1.0, 'attach': 4.0, 'wee': 1.0, 'carshare': 1.0, 'other': 2.0, 'vertebrae': 1.0, 'way': 2.0, 'all': 2.0, 'saw': 1.0, 'planes': 2.0, 'two': 2.0, 'sewn': 1.0, 'big': 1.0, 'nice': 1.0, 'comfortable': 1.0, 'must': 1.0, 'have': 6.0, 'construction': 3.0, 'am': 1.0, 'when': 3.0, 'what': 1.0, 'fantastic': 1.0, 'foot': 1.0, 'and': 26.0, 'trip': 2.0, 'travel': 2.0, 'will': 2.0, 'any': 1.0, 'expect': 1.0, 'idea': 2.0, 'are': 2.0, 'my': 4.0, 'whole': 1.0, 'as': 7.0, 'body': 1.0, 'to': 22.0, 'design': 4.0, 'loose': 1.0, 'pulled': 1.0, 'was': 1.0, 'carry': 1.0, 'over': 1.0, 'child': 1.0, 'product': 2.0, 'plane': 3.0, 'stroller': 2.0, 'from': 8.0, 'finished': 1.0, 'allow': 2.0, 'very': 2.0, 'ways': 1.0, 'car': 4.0, 'i': 10.0, 'zip': 1.0, '2': 1.0, 'neck': 2.0, 'end': 1.0, 'luggage': 1.0, 'so': 6.0, 'placed': 1.0, 'that': 3.0, 'been': 1.0, 'but': 3.0, 'shoulder': 2.0, 'would': 3.0, 'exactly': 1.0, 'again': 1.0, 'which': 1.0, 'made': 2.0, 'hassle': 1.0, 'dealing': 1.0, 'taking': 1.0, 'off': 2.0, 'some': 1.0, 'transferring': 1.0, 'extra': 1.0, 'open': 1.0, 'another': 1.0, 'strap': 1.0, 'put': 1.0, 'model': 1.0, 'fear': 1.0, 'on': 10.0, 'items': 1.0, 'blanket': 1.0, 'one': 6.0, '5': 2.0, 'stuffed': 1.0, 'toy': 1.0, 'used': 1.0, 'etc': 2.0, 'carrying': 1.0, 'wearing': 1.0, 'cannot': 1.0, 'thing': 1.0, 'inserted': 1.0, 'precludes': 1.0, 'fit': 2.0, 'transport': 1.0, 'ie': 1.0, 'cart': 1.0, 'many': 1.0, 'your': 5.0, 'where': 2.0, 'into': 3.0, 'fabric': 2.0, 'for': 10.0, 'away': 1.0, 'its': 1.0, 'good': 1.0, 'waterproof': 1.0, 'not': 3.0, 'solid': 4.0, 'had': 1.0, 'reinforcement': 1.0, 'backpack': 5.0, 'hooks': 3.0, 'rather': 1.0, 'effort': 1.0, 'or': 1.0, 'angle': 1.0, 'thin': 1.0, 'taxi': 2.0, 'slide': 1.0, 'point': 1.0, 'manouvrability': 1.0, 'out': 2.0, 'heavy': 1.0, 'completely': 1.0, 'update': 1.0, 'months': 1.0, 'happened': 1.0, '4': 3.0, 'round': 1.0, 'ride': 1.0, 'more': 2.0, 'zipper': 2.0, 'owned': 1.0, 'you': 2.0, 'each': 1.0, 'around': 2.0, 'make': 1.0, 'close': 1.0}
Word element => {'isn': 1.0, 'hand': 1.0, 'while': 1.0, 'plane': 1.0, 'needed': 1.0, 'i': 2.0, 'carry': 1.0, 'let': 1.0, 't': 1.0, 'the': 5.0, 'light': 1.0, 'ripped': 1.0, 'bag': 1.0, 'it': 3.0, 'this': 1.0, 'by': 1.0, 'when': 1.0, 'going': 1.0, 'of': 2.0, 'either': 1.0, 'then': 1.0, 'isle': 1.0, 'me': 1.0, 'and': 1.0, 'for': 1.0, 'down': 2.0, 'duration': 1.0, 'seat': 1.0, 'trip': 1.0, 'had': 1.0, 'to': 1.0}
Word element => {'skip': 1.0, 'money': 1.0, 'time': 1.0, 'yourself': 1.0, 'refund': 1.0, 'get': 1.0, 'order': 1.0, 'return': 1.0, 'responsibility': 1.0, 'out': 1.0, 'apparently': 1.0, 'amazon': 1.0, 'sunshine': 4.0, 'defective': 3.0, 'neither': 1.0, 'stock': 1.0, 'able': 1.0, 'repaired': 1.0, 'replace': 1.0, 'kids': 4.0, 'too': 1.0, 'also': 2.0, 'save': 1.0, 'carry': 1.0, 'nor': 1.0, 'it': 4.0, 'travel': 2.0, 'could': 1.0, 'we': 1.0, 'a': 5.0, 'as': 3.0, 'from': 3.0, 'used': 1.0, 'helpful': 1.0, 'confused': 1.0, 'carseat': 1.0, 'to': 7.0, 'regarding': 1.0, 'was': 6.0, 'eddie': 1.0, 'recommend': 1.0, 'my': 6.0, 'aspect': 1.0, 'upon': 1.0, 'but': 1.0, 'bauer': 1.0, 'strap': 2.0, 'that': 1.0, 'initially': 1.0, 'fit': 1.0, 'product': 5.0, 'for': 1.0, 'another': 1.0, 'opinion': 1.0, 'be': 3.0, 'did': 3.0, 'nicely': 1.0, 'respond': 1.0, 'not': 3.0, 'subsequent': 1.0, 'frayed': 2.0, 'carrying': 2.0, 'badly': 1.0, 'bag': 8.0, 'including': 1.0, 'detached': 1.0, 'seat': 1.0, 'in': 3.0, 'so': 2.0, 'arrival': 1.0, 'the': 9.0, 'of': 1.0, 'completely': 1.0, 'more': 2.0, 'is': 2.0, 'interaction': 1.0, 'purchased': 1.0, 'car': 1.0, 'graco': 2.0, 'just': 1.0, 'dollars': 1.0, 'much': 1.0, 'i': 4.0, 'have': 1.0, 'returned': 1.0, 'and': 6.0, 'trip': 1.0, 'rate': 1.0, 'this': 1.0, 'few': 1.0, 'highly': 1.0, 'stronger': 1.0, 'better': 1.0, 'customer': 1.0, 'their': 2.0, 'comfortable': 1.0, 'finally': 1.0, 'find': 1.0, 'with': 2.0, 'very': 2.0, 'they': 2.0, 'inquiries': 1.0, 'would': 1.0, 'every': 1.0, 'service': 1.0, 'poor': 1.0, 'now': 1.0}
Word element => {'very': 1.0, 'clean': 1.0, 'stayed': 1.0, 'airline': 1.0, 'shrink': 1.0, 'than': 1.0, 'better': 1.0, 'paid': 1.0, 'unhurt': 1.0, 'price': 1.0, 'for': 1.0, 'having': 1.0, 'in': 2.0, 'hole': 1.0, 'small': 1.0, 'got': 1.0, 'i': 2.0, 'was': 1.0, 'had': 1.0, 'wrap': 2.0, 'a': 2.0, 'graco': 1.0, 'and': 4.0, 'my': 1.0, 'the': 4.0, 'room': 1.0, 'base': 1.0, 'infant': 1.0, 'but': 1.0, 'helped': 1.0, 'ultralite': 1.0, 'fit': 2.0, 'up': 1.0, 'of': 2.0, 'we': 1.0, 'extra': 1.0, 'with': 2.0, 'this': 1.0, 'it': 6.0, 'ton': 1.0, 'over': 1.0, 'used': 1.0, 'amount': 1.0, 'shoulder': 1.0, 'luggage': 1.0, 'carrier': 1.0, 'which': 1.0}
Word element => {'but': 1.0, 'gate': 1.0, 'seat': 1.0, 's': 1.0, 'year': 1.0, 'also': 2.0, 'my': 1.0, 'held': 2.0, 'they': 2.0, 'dirty': 1.0, 'twins': 1.0, 'old': 2.0, 'being': 1.0, '7': 1.0, 'car': 2.0, 'our': 1.0, 'one': 1.0, 'for': 3.0, 'up': 2.0, 'of': 1.0, 'at': 1.0, 'two': 1.0, 'purchased': 1.0, 'purchase': 1.0, 'we': 2.0, 'month': 1.0, 'seats': 1.0, 'and': 1.0, 'checked': 3.0, 'it': 1.0, 'sister': 1.0, 'with': 1.0, 'them': 1.0, 'well': 1.0, 'a': 1.0, '2': 1.0, 'great': 1.0, 'these': 1.0, 'the': 2.0, 'luggage': 1.0, 'theirs': 1.0, 'her': 1.0, 'except': 1.0, 'bit': 1.0}
Word element => {'seats': 1.0, 'portable': 1.0, 'transporting': 1.0, 'addition': 1.0, 'being': 1.0, 'heavy': 1.0, 'the': 2.0, 'great': 1.0, 'cribs': 1.0, 'made': 1.0, 'well': 1.0, 'just': 2.0, 'huge': 1.0, 'a': 1.0, 'we': 2.0, 'during': 1.0, 'carseat': 1.0, 'hauled': 1.0, 'checked': 1.0, 'thought': 1.0, 'very': 1.0, 'too': 1.0, 'and': 3.0, 'our': 1.0, 'to': 1.0, 'was': 1.0, 'britax': 1.0, 'anyway': 1.0, 'up': 1.0, 'in': 1.0, 'also': 1.0, 'boulevard': 1.0, 'perfect': 1.0, 'this': 1.0, 'it': 6.0, 'booster': 1.0, 'hawaii': 1.0, 'wheels': 1.0, 'been': 1.0, 'would': 2.0, 'have': 1.0, 'handling': 1.0, 'fit': 1.0, 'for': 2.0, 'price': 1.0, 'i': 2.0, 'held': 1.0, 'fine': 1.0, 'baggage': 1.0, 'course': 1.0, 'of': 2.0, 'imagine': 1.0, 'work': 1.0}
Word element => {'many': 1.0, 'up': 1.0, 'will': 1.0, 'hold': 1.0, 'like': 1.0, 'feels': 1.0, 'fabric': 1.0, 'and': 1.0, 'sturdy': 1.0, 'now': 1.0, 'that': 2.0, 'did': 1.0, 'but': 1.0, 'inside': 1.0, 'car': 2.0, 'place': 1.0, 'suitcase': 1.0, 'the': 6.0, 'i': 2.0, 'thinking': 1.0, 'bought': 1.0, 'items': 1.0, 'it': 4.0, 'this': 1.0, 'protection': 1.0, 'other': 1.0, 'bag': 1.0, 'able': 1.0, 'not': 2.0, 'to': 1.0, 'all': 1.0, 'seat': 2.0, 'handlers': 1.0, 'only': 2.0, 'airline': 1.0, 'carrying': 1.0, 'of': 1.0, 'didn': 1.0, 'very': 1.0, 'little': 1.0, 'for': 6.0, 'fit': 1.0, 'savings': 1.0, 'in': 1.0, 'since': 2.0, 'was': 2.0, 'checkin': 1.0, 't': 1.0, 'a': 1.0, 'does': 1.0, 'charge': 1.0, 'made': 1.0, 'they': 1.0, 'charging': 1.0, 'baggage': 2.0, 'is': 1.0, 'are': 1.0, 'strap': 1.0}
Word element => {'life': 1.0, 'that': 2.0, 'shoddily': 1.0, 'wow': 1.0, 'usage': 1.0, 'but': 2.0, 'with': 1.0, 'it': 4.0, 'this': 1.0, 'first': 1.0, 'airport': 2.0, 'no': 1.0, 'carry': 1.0, 'ny': 1.0, 'through': 1.0, 'is': 1.0, 'around': 1.0, 'to': 2.0, 'was': 3.0, 'carseat': 1.0, 'i': 5.0, 'britax': 1.0, 'of': 2.0, 'm': 2.0, 'absolutely': 1.0, 'for': 1.0, 'love': 1.0, 'loyal': 1.0, 'problem': 2.0, 'covered': 1.0, 'bag': 3.0, 'the': 7.0, 'my': 2.0, 'and': 2.0, 'marathon': 1.0, 'how': 2.0, 'guys': 1.0, 'made': 1.0, 'disappointed': 1.0, 'jfk': 1.0, 'in': 2.0, 'when': 1.0, 'able': 1.0, 'taking': 1.0, 'out': 1.0, 'rest': 1.0, 'after': 1.0, 'crew': 1.0, 'returning': 1.0, 'fix': 1.0, 'from': 2.0, 'discovered': 1.0, 'hole': 2.0, 'a': 3.0, 'see': 1.0, 'airline': 1.0, 'customer': 1.0, 'hubby': 1.0, 'tossed': 1.0, 'think': 1.0, 'on': 1.0}
Word element => {'before': 1.0, 'else': 1.0, 'want': 1.0, 'large': 1.0, 'just': 1.0, 'so': 2.0, 'airport': 1.0, 'up': 1.0, 'from': 1.0, 'bags': 1.0, 'garbage': 1.0, 'use': 1.0, 'dimensions': 1.0, 'check': 1.0, 'back': 1.0, 'would': 1.0, 'that': 2.0, 'have': 2.0, 'beat': 1.0, 'luckily': 1.0, 'get': 1.0, 'send': 1.0, 'them': 4.0, 'anyone': 1.0, 'trying': 1.0, 'putting': 1.0, 'tried': 1.0, 'about': 1.0, 'ways': 1.0, 'first': 1.0, 'with': 2.0, 'infant': 1.0, 'car': 1.0, 'sorts': 1.0, 'olds': 1.0, 'keep': 1.0, 'since': 1.0, 'at': 2.0, 'yr': 1.0, 'i': 6.0, 'you': 1.0, 'barely': 1.0, 'twins': 1.0, 'seats': 3.0, 'ride': 2.0, 'recently': 1.0, 'can': 1.0, '2': 1.0, 'some': 1.0, 'these': 3.0, 'the': 5.0, 'fit': 6.0, 'convertible': 3.0, 'had': 1.0, 'purchased': 1.0, 'are': 1.0, 'kidos': 1.0, 'they': 3.0, 'reviews': 1.0, 'purchase': 1.0, 'may': 1.0, 'my': 4.0, 'was': 1.0, 'unfortunately': 1.0, 'really': 1.0, 'of': 3.0, 'excited': 1.0, '1': 1.0, 'and': 2.0, 'we': 1.0, 'going': 1.0, 'graco': 1.0, 'on': 1.0, 'in': 2.0, 'said': 1.0, 'plane': 1.0, 'warn': 1.0, 'still': 2.0, 'seem': 1.0, 'to': 7.0, 'least': 1.0, 'our': 1.0, 'all': 2.0, 'kids': 1.0, 'carseats': 3.0, 'or': 3.0, 'getting': 1.0, 'did': 2.0, 'not': 2.0}
Word element => {'more': 1.0, 'really': 1.0, 'couldn': 1.0, 'without': 1.0, 'old': 1.0, 'daughter': 1.0, 'my': 2.0, 'often': 1.0, 'out': 2.0, 'air': 1.0, 'plastic': 1.0, 'strong': 1.0, 'on': 3.0, 'stuff': 1.0, 'a': 8.0, 's': 1.0, 'definitely': 1.0, 'spending': 1.0, 'baby': 1.0, 'when': 3.0, 'traveling': 1.0, 'which': 1.0, 'looking': 1.0, 'bag': 5.0, 'i': 5.0, 'soon': 1.0, 'there': 2.0, 'took': 1.0, 'instead': 1.0, 'flights': 1.0, 'our': 1.0, 'in': 5.0, 'seat': 5.0, 'too': 1.0, 'vertical': 1.0, 'were': 1.0, 'used': 2.0, 'recent': 1.0, 'this': 1.0, 'will': 1.0, 'travel': 1.0, 'and': 4.0, 'for': 3.0, 't': 3.0, 'fit': 1.0, 'with': 1.0, 'it': 11.0, 'smell': 2.0, 'shipped': 1.0, 'able': 1.0, 'things': 2.0, 'three': 1.0, 'did': 1.0, 'we': 6.0, 'fine': 1.0, 'was': 6.0, 'let': 1.0, 'or': 1.0, 'some': 1.0, 'as': 1.0, 'basement': 1.0, 'all': 2.0, 'an': 1.0, 'other': 1.0, 'about': 1.0, 'week': 1.0, 'car': 6.0, 'figured': 1.0, 'still': 1.0, 'little': 2.0, 'bit': 1.0, 'the': 11.0, 'of': 2.0, 'advocate': 1.0, 'once': 1.0, 'justify': 1.0, 'after': 1.0, 'that': 4.0, 'but': 3.0, 'didn': 1.0, 'appreciated': 1.0, 'have': 1.0, 'britax': 1.0, 'simple': 1.0, 'carseat': 1.0, 'tricky': 1.0, 'get': 1.0, 'holiday': 1.0, 'had': 1.0, 'be': 2.0, 'extra': 1.0, 'trying': 1.0, 'fully': 1.0, 'not': 2.0, 'angle': 1.0, 'easier': 1.0, 'notice': 1.0, 'at': 1.0, 'is': 1.0, 'installed': 1.0, 'put': 2.0, 'much': 1.0, 'fly': 2.0, 'over': 1.0, 'don': 1.0, 'to': 6.0, 'pretty': 2.0, 'sturdy': 1.0}
Word element => {'entertained': 1.0, 'very': 1.0, 'keep': 1.0, 'occupy': 1.0, 'to': 1.0, 'month': 1.0, 'him': 2.0, 'shapes': 1.0, '6': 1.0, 'for': 1.0, 'in': 1.0, 'help': 1.0, 'car': 1.0, 'textures': 1.0, 'loves': 1.0, 'my': 1.0, 'the': 2.0, 'bought': 1.0, 'old': 1.0, 'i': 1.0, 'and': 3.0, 'stroller': 1.0, 'it': 1.0, 'this': 1.0, 'he': 1.0, 'different': 1.0}
Word element => {'needed': 1.0, 'as': 1.0, 'off': 1.0, 'thick': 1.0, 'so': 1.0, 'was': 2.0, 'links': 1.0, 'carrier': 1.0, 'this': 1.0, 'and': 2.0, 'on': 1.0, 'the': 4.0, 'found': 1.0, 'i': 2.0, 'wide': 1.0, 'that': 1.0, 'handle': 2.0, 'using': 1.0, 'baby': 1.0, 'toy': 1.0, 'could': 1.0, 'difficult': 1.0, 'just': 1.0, 'wrap': 1.0, 'take': 1.0, 'around': 1.0}
Word element => {'smile': 1.0, 'brings': 1.0, 'bug': 1.0, 'attention': 1.0, 'direct': 1.0, 'too': 1.0, 'starts': 1.0, 'she': 1.0, 'fuss': 1.0, 'if': 1.0, 'of': 2.0, 'just': 1.0, 'seat': 1.0, 'around': 1.0, 'the': 4.0, 'my': 1.0, 'to': 2.0, 'our': 1.0, 'a': 1.0, 'front': 1.0, 'wrap': 1.0, 'i': 2.0, 'musical': 1.0, 'bought': 1.0, 'stokke': 1.0, 'stroller': 1.0, 'fits': 1.0, 'all': 1.0, 'and': 3.0, 'perfectly': 1.0, 'baby': 1.0, 'plays': 1.0, 'this': 1.0, 'it': 3.0, 'with': 1.0, 'time': 1.0}
Word element => {'clean': 1.0, 'home': 1.0, 's': 1.0, 'keep': 2.0, '3': 1.0, 'own': 1.0, 'we': 2.0, 'curls': 1.0, 'ground': 1.0, 'onto': 1.0, 'tired': 1.0, 'little': 1.0, 'cover': 1.0, 'enough': 2.0, 'carries': 1.0, 'most': 1.0, 'sleep': 1.0, 'went': 1.0, 'time': 2.0, 'friends': 1.0, 'can': 2.0, 'so': 2.0, 'for': 2.0, 'lovies': 1.0, 'badly': 1.0, 'walk': 1.0, 'about': 2.0, 'several': 1.0, 'teething': 1.0, 'is': 5.0, 'at': 3.0, '1': 1.0, 'since': 1.0, 'legs': 1.0, 'months': 2.0, 'cuter': 1.0, 'over': 2.0, 'ridiculous': 1.0, 'wasn': 1.0, 'baby': 1.0, 'night': 1.0, 'softer': 1.0, 'began': 1.0, 'had': 2.0, 'to': 7.0, 'as': 3.0, 'other': 1.0, 'all': 2.0, 'not': 1.0, 'ethan': 2.0, 'my': 3.0, 'looking': 1.0, 'what': 1.0, 'tags': 2.0, 'when': 3.0, 'old': 3.0, 'i': 8.0, 'gift': 1.0, 'nana': 1.0, 'small': 1.0, 'a': 2.0, 'up': 1.0, '7': 1.0, 'stroller': 1.0, 'item': 1.0, 'these': 1.0, 'son': 1.0, 'discarded': 1.0, 'received': 1.0, 'he': 10.0, 'was': 7.0, 'favor': 1.0, 'born': 1.0, 'tripping': 1.0, 'arms': 1.0, 'and': 9.0, 'impressed': 1.0, 'on': 3.0, 'first': 1.0, 'this': 2.0, 'without': 1.0, 'soft': 1.0, 'kids': 1.0, 'taggie': 1.0, 'it': 14.0, 'stopped': 1.0, 'because': 1.0, 'that': 4.0, 'into': 1.0, 'confess': 1.0, 't': 1.0, 'along': 1.0, 'compared': 1.0, '8': 1.0, 'weeks': 1.0, 'introducing': 1.0, 'through': 1.0, 'with': 3.0, '16': 1.0, 'put': 1.0, 'do': 1.0, 'people': 1.0, 'suggested': 1.0, 'asked': 1.0, 'lovey': 1.0, 'desperate': 1.0, 'sleeping': 1.0, 'they': 1.0, 'suck': 1.0, 'in': 4.0, 'snuggle': 1.0, 'drops': 1.0, 'around': 2.0, 'his': 3.0, 'now': 2.0, 'almost': 1.0, 'crib': 1.0, '2': 2.0, 'but': 1.0, 'ones': 1.0, 'chloroform': 1.0, 'were': 2.0, 'quickly': 1.0, 'the': 7.0, 'of': 2.0, 'big': 2.0, 'immediately': 1.0, 'husband': 1.0, 'convinced': 1.0, 'soon': 1.0, 'there': 1.0}
Word element => {'to': 1.0, 'go': 1.0, 'in': 1.0, 'wash': 2.0, 'soft': 1.0, 'holds': 1.0, 'or': 1.0, 'bed': 1.0, 'for': 1.0, 'when': 1.0, 'daughter': 2.0, 'up': 2.0, 'as': 2.0, 'are': 1.0, 'find': 1.0, 'well': 1.0, 'a': 1.0, 'the': 1.0, 't': 2.0, 'but': 1.0, 'back': 1.0, 'after': 1.0, 'original': 1.0, 'bought': 1.0, 'we': 3.0, 'our': 2.0, 'you': 1.0, 's': 2.0, 'taggie': 1.0, 'if': 1.0, 'not': 1.0, 'washing': 1.0, 'just': 1.0, 'without': 1.0, 'can': 2.0, 'this': 1.0, 'it': 5.0}
Word element => {}
Word element => {'still': 1.0, 'trips': 1.0, 'flights': 1.0, 'through': 1.0, 'don': 1.0, 'note': 1.0, 'very': 2.0, 'protected': 1.0, 'spare': 1.0, 'carry': 2.0, 'tons': 1.0, 'used': 1.0, 'be': 1.0, '2': 1.0, 'but': 1.0, 'can': 1.0, 'luggage': 1.0, 'also': 2.0, 'travel': 2.0, 'just': 1.0, 'than': 1.0, 'pack': 1.0, 'much': 2.0, 'round': 1.0, 'able': 1.0, 'were': 1.0, 'room': 2.0, 'name': 1.0, 'have': 1.0, 'looks': 1.0, 'it': 5.0, 'looked': 1.0, 'new': 2.0, 'been': 1.0, 'that': 1.0, 'into': 1.0, 'brand': 2.0, 'am': 1.0, '4': 1.0, 'i': 5.0, 't': 1.0, 'we': 1.0, 'a': 4.0, 'fit': 1.0, 'for': 1.0, 'during': 1.0, 'white': 1.0, 'more': 1.0, 'is': 6.0, 'apparently': 1.0, 'play': 1.0, 'and': 5.0, 'writing': 1.0, 'really': 1.0, 'plenty': 1.0, 'on': 2.0, 'n': 1.0, 'not': 2.0, 'logo': 2.0, 'so': 1.0, 'well': 1.0, 'review': 1.0, 'has': 2.0, 'with': 1.0, 'red': 1.0, 'comfortable': 1.0, 'great': 1.0, 'the': 8.0, 'sunshine': 3.0, 'this': 4.0, 'jeep': 1.0, 'kids': 3.0, 'same': 1.0, 'got': 1.0, 'picture': 1.0, 'my': 2.0, 'to': 4.0, 'as': 2.0, 'bag': 8.0, 'shows': 1.0, 'quality': 1.0, 'stroller': 3.0, 'absolutely': 1.0, 'swimming': 1.0, 'umbrella': 1.0, 'there': 1.0, 'of': 2.0, 'diono': 3.0, 'in': 3.0}
Word element => {'others': 1.0, 'cold': 1.0, 'we': 1.0, 'cries': 1.0, 'loves': 1.0, 'my': 3.0, 'the': 2.0, 'i': 1.0, 'love': 1.0, 'one': 3.0, 'for': 1.0, 'when': 1.0, 'daughter': 1.0, 'of': 2.0, 'she': 1.0, 'lot': 1.0, 'a': 1.0, 'use': 2.0, 'got': 1.0, 'so': 1.0, 'is': 1.0, 'and': 1.0, 'being': 1.0, 'thick': 1.0, 'soft': 1.0, 'this': 1.0, 'shower': 1.0, 'only': 2.0, 'it': 2.0, 's': 1.0, 'towels': 1.0, 'to': 1.0}
Word element => {'of': 1.0, 'check': 1.0, 'buy': 1.0, 'system': 1.0, 'probably': 1.0, 'regard': 1.0, 'carseat': 1.0, 'cares': 1.0, 'advantage': 1.0, 'particular': 1.0, 'doesn': 1.0, 'was': 1.0, 'bought': 1.0, 'll': 1.0, 'perfectly': 1.0, 'like': 1.0, 'service': 1.0, 'call': 1.0, 'had': 1.0, 'reason': 1.0, 'ok': 1.0, 'never': 1.0, 'easier': 1.0, 'that': 2.0, 'it': 4.0, 'seems': 1.0, 'folding': 1.0, 'heavy': 1.0, 'is': 2.0, 'customer': 1.0, 'really': 2.0, 'carry': 1.0, 'belly': 1.0, 'no': 1.0, 'not': 1.0, 'lighter': 1.0, 'so': 2.0, 'feature': 1.0, 'a': 3.0, 's': 1.0, 't': 2.0, 'we': 4.0, 'the': 8.0, 'stinking': 1.0, 'main': 1.0, 'at': 1.0, 'theoretically': 1.0, 'didn': 1.0, 'than': 1.0, 'exceptionally': 1.0, 'but': 2.0, 'have': 3.0, 'our': 2.0, 'to': 5.0, 'seat': 2.0, 'all': 1.0, 'fortunately': 1.0, 'mentioned': 1.0, 'car': 2.0, 'other': 2.0, 'chest': 1.0, 'plane': 1.0, 'in': 3.0, 'tangling': 1.0, 'clip': 1.0, 'problem': 1.0, 'and': 5.0, 'straps': 1.0, 'britax': 1.0, 'are': 1.0, 'easy': 2.0, 'travel': 2.0, 'use': 1.0, 'prone': 1.0, 'quite': 1.0, 'pp': 1.0, 'nice': 1.0, 'install': 1.0}
Word element => {'30': 1.0, 'responsibility': 1.0, 'keep': 1.0, 'they': 1.0, 'have': 1.0, 'i': 1.0, 'and': 1.0, 'purchase': 1.0, 'a': 1.0, 'since': 1.0, 'months': 1.0, 'receipt': 1.0, 'been': 1.0, 'is': 1.0, 'amazon': 2.0, 'left': 1.0, 'to': 3.0, 'off': 2.0, 'styrofoam': 1.0, 'keeps': 1.0, 'seat': 1.0, 'the': 3.0, 'saying': 1.0, 'falling': 1.0, 'company': 1.0, 'days': 1.0, '3': 1.0, 'sunshine': 1.0, 'responsible': 1.0, 'kids': 1.0, 'chip': 1.0, 'cover': 1.0, 'refuses': 1.0, 'caused': 1.0, 's': 3.0, 'send': 1.0, 'even': 1.0, 'another': 1.0, 'for': 1.0, 'one': 1.0, 'though': 1.0, 'only': 2.0, 'this': 1.0, 'it': 2.0}
Word element => {'miles': 1.0, 'sits': 1.0, 'carseat': 1.0, 'many': 1.0, 'really': 1.0, 'when': 1.0, 'they': 1.0, 'several': 1.0, 'bulky': 1.0, 'the': 2.0, 'sleeps': 1.0, 'more': 1.0, 'them': 1.0, 'not': 2.0, 'just': 1.0, 'know': 1.0, 'like': 1.0, 'too': 2.0, 'and': 4.0, 'do': 1.0, 'i': 5.0, 'tried': 1.0, 'popular': 1.0, 'son': 1.0, 'lighter': 1.0, 'were': 2.0, 'a': 1.0, 'could': 1.0, 'bumbleride': 1.0, 'for': 1.0, 'love': 1.0, 'stroller': 1.0, 'trouble': 1.0, 'but': 1.0, 'it': 5.0, 'he': 2.0, 'have': 3.0, 'did': 2.0, 'lifting': 1.0, 'brands': 1.0, 'his': 1.0, 'well': 2.0, 'likes': 1.0, 'feeturas': 1.0, 'in': 4.0, 'this': 1.0, 'wish': 1.0, 'very': 1.0, 'little': 2.0, 'up': 1.0, 'as': 3.0, 'to': 1.0, 'was': 1.0, 'my': 2.0, 'tahoe': 1.0}
Word element => {'buying': 1.0, 'before': 1.0, 'out': 1.0, 'test': 1.0, 'very': 2.0, 'definitely': 1.0, 'think': 1.0, 'don': 1.0, 'whole': 1.0, 'forth': 1.0, 'shake': 1.0, 'any': 1.0, 'to': 1.0, 'said': 2.0, 'm': 1.0, 'in': 3.0, 'used': 1.0, 'extremely': 1.0, 'were': 1.0, 'shakes': 1.0, '300': 1.0, 'bumbleride': 2.0, 'we': 2.0, 'several': 1.0, 'thing': 1.0, 'made': 2.0, 'home': 1.0, 'got': 2.0, 'even': 1.0, 'where': 1.0, 'for': 2.0, 'when': 1.0, 'dealing': 1.0, 'received': 1.0, 'us': 1.0, 'passed': 1.0, 'myself': 1.0, 'looked': 1.0, 'it': 5.0, 'this': 2.0, 'sent': 2.0, 'bought': 1.0, 'babybecause': 2.0, 'one': 2.0, 'everyone': 1.0, 'well': 1.0, 'calls': 1.0, 'i': 10.0, 'have': 1.0, 'first': 1.0, 'bad': 1.0, 'they': 3.0, 'loaded': 1.0, 'so': 4.0, 'wheels': 3.0, 'squealed': 1.0, 'is': 1.0, 'at': 2.0, 'and': 7.0, 'neither': 1.0, 'rattle': 1.0, 'a': 3.0, 'mall': 1.0, 'would': 2.0, 'disappointed': 1.0, 'stroller': 6.0, 'besides': 1.0, 'time': 2.0, 'new': 2.0, 'not': 1.0, 'much': 1.0, 'do': 1.0, 'without': 1.0, 'anything': 1.0, 'suggest': 1.0, 'had': 1.0, 'wd40': 2.0, 'paying': 1.0, 'until': 1.0, 'some': 1.0, 'ordered': 1.0, 'didn': 1.0, 'squeaked': 1.0, 'eventually': 1.0, 'another': 1.0, 'me': 1.0, 'my': 1.0, 'helpful': 1.0, 'send': 1.0, 'seeing': 1.0, 'tired': 1.0, 'same': 1.0, 'old': 1.0, 'companies': 1.0, 'back': 3.0, 'shipping': 1.0, 'problem': 2.0, 'though': 1.0, 'was': 2.0, 'that': 2.0, 'did': 1.0, 't': 2.0, 'along': 1.0, 'with': 1.0, 'husband': 1.0, 'on': 1.0, 'the': 13.0, 'person': 1.0, 'of': 1.0, 'w': 1.0, 'frame': 2.0, 'now': 1.0, 'if': 1.0, 'every': 1.0, 'use': 1.0}
Word element => {'better': 1.0, 'works': 1.0, 'hope': 1.0, 'arrival': 1.0, 'third': 1.0, 'purchased': 1.0, 've': 1.0, 'some': 1.0, 'wait': 1.0, 'into': 1.0, 'that': 2.0, 'wheels': 1.0, 'not': 1.0, 'looking': 1.0, 'in': 2.0, 'store': 2.0, 'bump': 1.0, 'saftey': 1.0, 'to': 5.0, 'all': 3.0, 'word': 1.0, 'about': 1.0, 'no': 1.0, 's': 7.0, 'awaiting': 1.0, 'a': 4.0, 'going': 1.0, 'go': 1.0, 'but': 1.0, 'aren': 1.0, 'have': 1.0, 'purchcased': 1.0, 'great': 1.0, '1': 1.0, 'bring': 1.0, 'are': 2.0, 'first': 1.0, 'out': 3.0, 'see': 1.0, 'at': 1.0, 'is': 1.0, 'any': 1.0, 'online': 3.0, 'your': 2.0, 'has': 1.0, 'steering': 1.0, 'now': 2.0, 'wish': 1.0, 'this': 1.0, 'feet': 1.0, 'i': 6.0, 'when': 1.0, 'what': 1.0, 'it': 10.0, 'thought': 1.0, 'cracked': 1.0, 'horrible': 1.0, 'and': 6.0, 'would': 1.0, 'position': 1.0, 'flyer': 1.0, 'facing': 1.0, 'if': 1.0, 'still': 1.0, 'test': 1.0, 'mommy': 1.0, 'me': 1.0, '06': 1.0, 'my': 3.0, 'baby': 3.0, 'strollers': 1.0, 'wonky': 1.0, 'up': 1.0, '7': 1.0, '5': 1.0, 'before': 1.0, 'months': 1.0, 'lot': 1.0, 'too': 1.0, 'one': 1.0, 'gone': 1.0, 'straps': 1.0, 'large': 1.0, 'even': 1.0, 'took': 1.0, 'stroller': 4.0, 'luck': 1.0, 'person': 1.0, 'the': 8.0, 'of': 1.0, 'time': 1.0, 'so': 1.0, 'researching': 1.0, 'purchasing': 1.0, 'did': 1.0, 't': 1.0, 'along': 1.0, 'be': 1.0, 'homework': 1.0, 'for': 4.0, 'such': 1.0, 'just': 1.0, 'shoppers': 1.0, 'first2': 1.0, 'ride3': 1.0, 'check': 1.0, 'then': 1.0, 'reviews': 1.0, 'there': 1.0}
Word element => {'keeping': 1.0, 'environment': 1.0, 'sustainable': 1.0, 'move': 1.0, 'makes': 1.0, 'then': 1.0, 'today': 1.0, 'market': 1.0, 'popular': 1.0, 'are': 2.0, 'enjoys': 1.0, 'if': 2.0, 'that': 4.0, 'headaches': 1.0, 'time': 1.0, 'leaving': 1.0, 'smell': 1.0, 'itself': 1.0, 'in': 1.0, 'disappointed': 1.0, 'also': 1.0, 'products': 1.0, 'becomes': 1.0, 'i': 4.0, 'd': 1.0, 'natural': 1.0, 'm': 1.0, '34': 4.0, 'with': 2.0, 'based': 1.0, 'this': 2.0, 'it': 7.0, 'awesome': 1.0, 'discovery': 2.0, 'certain': 1.0, 'much': 1.0, 'manufactured': 1.0, 'rating': 1.0, 'and': 4.0, '1': 1.0, 'very': 1.0, 'for': 2.0, 'fit': 1.0, 'love': 1.0, 'opinion': 1.0, 'must': 1.0, 'star': 1.0, 'children': 1.0, 'research': 1.0, 'else': 1.0, 'you': 2.0, 'am': 1.0, 'fragrances': 1.0, 'while': 1.0, 'give': 1.0, 'their': 1.0, 'would': 1.0, 'something': 2.0, 'our': 3.0, 'as': 2.0, 'to': 3.0, 'without': 1.0, 'the': 7.0, 'toys': 3.0, 'tangiball': 1.0, 'make': 1.0, 'family': 2.0, 'my': 1.0, 'we': 1.0, 'could': 1.0, 'leader': 1.0, 'a': 3.0, 'vanilla': 3.0, 'they': 1.0, 'over': 1.0, 'missed': 1.0, 'mark': 1.0, 'has': 1.0, 'toy': 3.0, 'hope': 1.0, 'light': 3.0, 'good': 2.0, 'last': 1.0, 'scent': 2.0, 'more': 1.0, 'is': 5.0, 'be': 4.0, 'synthetic': 3.0, 'because': 2.0}
Word element => {'toddlers': 1.0, 'for': 1.0, 'constantly': 1.0, 'chewing': 1.0, 'to': 1.0, 'toy': 1.0, 'product': 1.0, 'even': 1.0, 'and': 1.0, 'ball': 1.0, 'discovery': 1.0, 'vanilla': 1.0, 'smell': 1.0, 'indestructible': 1.0, 'a': 1.0, 'great': 2.0, 'puppy': 1.0, 'the': 2.0, 'i': 1.0, 'am': 1.0, 'puppies': 1.0, 'so': 1.0, 'stocks': 1.0, 'glad': 1.0, 'is': 2.0, 'amazon': 1.0, 'this': 1.0}
Word element => {'faded': 1.0, 'is': 1.0, 'until': 1.0, 'squeezable': 1.0, 'vanilla': 1.0, 'fun': 1.0, 'replacement': 1.0, 'the': 1.0, 'my': 1.0, 'soothing': 1.0, 'scent': 2.0, 'a': 1.0, 'quiet': 1.0, 'this': 1.0, 'laughter': 1.0, 'squeak': 1.0, 'daughter': 1.0, 'for': 1.0, 'years': 1.0, 'sturdy': 1.0, 'of': 1.0, 'and': 1.0}
Word element => {'squeeze': 1.0, 'i': 1.0, 'use': 1.0, 'loves': 1.0, 'this': 1.0, 'for': 1.0, 'in': 1.0, 'the': 1.0, 'my': 1.0, 'infants': 1.0, 'and': 2.0, 'little': 1.0, 'smell': 1.0, 'work': 1.0, 'ones': 1.0, 'great': 1.0, 'it': 1.0, 'love': 1.0, 'to': 1.0}
Word element => {'gets': 1.0, 'as': 1.0, 'ways': 1.0, 'different': 1.0, 'in': 1.0, 'play': 1.0, 'be': 1.0, 'will': 1.0, 'basket': 1.0, 'toy': 1.0, 'grandma': 1.0, 'for': 1.0, 'purchase': 1.0, '34': 2.0, 'i': 1.0, 'loves': 2.0, 'crawls': 1.0, 'grandson': 1.0, 'older': 1.0, 'with': 2.0, 'he': 3.0, 'this': 1.0, 'it': 5.0, 's': 1.0, 'way': 1.0, 'him': 1.0, 'little': 1.0, 'my': 1.0, 'great': 1.0, 'the': 1.0, 'and': 2.0, 'feels': 1.0, 'around': 1.0, 'roll': 1.0, 'to': 2.0, 'laughs': 1.0, 'a': 1.0, 'fun': 1.0, 'at': 1.0}
Word element => {'don': 1.0, 'reports': 1.0, 'an': 1.0, 'offer': 1.0, 'buy': 1.0, 'reason': 1.0, 'whether': 1.0, 'validating': 1.0, '40psi': 1.0, 'rims': 1.0, 'known': 1.0, 'were': 1.0, 'you': 3.0, 'moulding': 1.0, 'push': 1.0, 'obvious': 2.0, 'least': 1.0, 'around': 1.0, 'require': 2.0, 'above': 1.0, 't': 4.0, 'fit': 2.0, 'problem': 5.0, 'part': 1.0, 'was': 1.0, 'seems': 2.0, 'off': 2.0, 'stay': 1.0, 'which': 1.0, 'made': 2.0, 'repeatedly': 1.0, 'without': 1.0, 'anything': 1.0, 'tubes': 3.0, 'while': 2.0, 'had': 1.0, 'visible': 1.0, 'investigated': 1.0, 'conservatively': 1.0, 'aluminium': 1.0, 'so': 4.0, 'rim': 8.0, 'does': 2.0, 'further': 2.0, 'these': 4.0, 'once': 3.0, 'becomes': 1.0, 'spoke': 1.0, 'bugaboo': 4.0, 'slightly': 1.0, 'me': 1.0, 'are': 3.0, 'my': 3.0, '5': 1.0, 'light': 1.0, 'with': 3.0, 'using': 2.0, 'strollers': 1.0, 'soapbox': 4.0, 'normal': 1.0, 'pushed': 1.0, 'to': 9.0, 'regarding': 1.0, 'on': 4.0, 'this': 5.0, 'warning': 1.0, 'note': 1.0, 'very': 5.0, 'up': 1.0, 'tyres': 8.0, 'place': 2.0, 'i': 10.0, 'designers': 1.0, 'observation': 1.0, 'well': 2.0, 'tyre': 8.0, 'explode': 1.0, 'ended': 1.0, 'by': 1.0, 'though': 1.0, 'after': 1.0, 'small': 3.0, 'a': 14.0, 'have': 2.0, 'bead': 3.0, 'at': 4.0, 'inflation': 1.0, 'type': 1.0, 'act': 1.0, 'plastic': 2.0, 'issue': 2.0, 'identical': 1.0, 'build': 1.0, 'too': 2.0, 'and': 13.0, 'common': 1.0, 'led': 1.0, 'bit': 1.0, 'web': 2.0, 'catch': 1.0, 'force': 2.0, 'useless': 1.0, 'hopefully': 1.0, 'undersized': 1.0, 'be': 5.0, 'it': 8.0, 'use': 6.0, 'the': 36.0, 'black': 2.0, 'there': 1.0, 'exploding': 3.0, 'substantial': 1.0, 'clearly': 1.0, 'stroller': 5.0, 'wheels': 6.0, 'wouldn': 1.0, 'didn': 1.0, 'frequent': 1.0, 'search': 2.0, 'themselves': 1.0, 'did': 1.0, 'causes': 1.0, 'actually': 1.0, 'pair': 1.0, 'for': 8.0, 'car': 1.0, 'that': 9.0, 'because': 2.0, 'fall': 1.0, 'sophisticated': 1.0, 'gap': 1.0, 'inflated': 1.0, 'includes': 2.0, 'used': 2.0, 'inner': 1.0, 'way': 1.0, 'tube': 1.0, 'if': 2.0, 'exposed': 1.0, 'racers': 2.0, 'has': 1.0, 'plan': 1.0, 'its': 1.0, 'explanation': 1.0, 'through': 1.0, 'material': 1.0, 'will': 6.0, 'probably': 2.0, 'any': 1.0, 'when': 1.0, 'fitting': 1.0, 'clear': 1.0, 'over': 1.0, 'little': 1.0, 'or': 1.0, 'effort': 1.0, 'some': 3.0, 'never': 1.0, 'pop': 1.0, 'point': 2.0, 'should': 1.0, 'itself': 1.0, 'moulded': 1.0, '35': 1.0, 'text': 1.0, 'pressure': 1.0, 'rated': 1.0, 'gets': 1.0, 'suggesting': 1.0, 'max': 1.0, '15psi': 2.0, 'overinflate': 1.0, 'worse': 1.0, 'meantime': 1.0, 'quite': 1.0, 'source': 1.0, 'slippery': 1.0, 'm': 1.0, 'normally': 1.0, 's': 1.0, 'doesn': 1.0, 'grip': 1.0, 'as': 2.0, 'experiment': 1.0, 'others': 1.0, 'wheel': 1.0, 'gluing': 1.0, 'think': 1.0, 'recent': 1.0, 'better': 1.0, 'standard': 1.0, 'best': 1.0, 'bet': 1.0, '40': 1.0, 'psi': 1.0, 'obviously': 1.0, 'completely': 1.0, 'here': 2.0, 'sort': 1.0, 'in': 6.0, 'non': 1.0, 'warranty': 1.0, 'from': 2.0, 'exploded': 1.0, 'see': 1.0, 'visibly': 1.0, 'real': 1.0, 'of': 8.0, 'covered': 1.0, 'even': 2.0, 'oversized': 1.0, 'correct': 3.0, 'design': 2.0, 'can': 2.0, 'is': 10.0, 'fault': 1.0, 'not': 2.0, 'different': 1.0, 'same': 1.0, 'cart': 1.0}
Word element => {'accessories': 1.0, 'cute': 1.0, 'useful': 1.0, 'tons': 1.0, 'out': 2.0, 'of': 3.0, 'keep': 1.0, 'i': 1.0, 'single': 1.0, 'very': 2.0, 'penny': 2.0, 'yes': 1.0, 'versatile': 1.0, 'this': 1.0, 'it': 2.0, 'always': 1.0, 'birth': 1.0, 'is': 1.0, 'till': 1.0, 'the': 3.0, 'fits': 1.0, 'my': 1.0, 'sooo': 1.0, 'but': 1.0, 'can': 1.0, 'long': 1.0, 'baby': 3.0, 'worth': 2.0, 'every': 2.0, 'sun': 1.0, 'by': 1.0, 'flipping': 1.0, 'handle': 1.0, 'great': 1.0, 'comfortable': 1.0, 'resale': 1.0, 'product': 1.0, 'expensive': 1.0, 'for': 1.0, 'easy': 1.0, 'to': 1.0, 'value': 1.0, 'together': 1.0, 'car': 1.0, 'and': 4.0, 'take': 1.0, 'in': 1.0, 'put': 1.0, 'your': 2.0, 'has': 2.0, 'trunk': 1.0, 's': 2.0, 'a': 1.0, 'from': 1.0, 'while': 1.0, 'later': 1.0}
Word element => {'still': 1.0, 'decide': 1.0, 'but': 1.0, 'from': 1.0, 'used': 1.0, 'a': 3.0, 'we': 3.0, 'bassinet': 1.0, 'toddler': 1.0, 'stroller': 1.0, 'naps': 1.0, 'yes': 1.0, 'durable': 1.0, 'with': 1.0, 'cell': 1.0, 'you': 1.0, 'when': 2.0, 'value': 1.0, 'daughter': 1.0, 'i': 1.0, 'absolutely': 1.0, 'expensive': 1.0, 'love': 1.0, 'this': 1.0, 'allows': 1.0, 'use': 2.0, 'newborn': 2.0, 'age': 1.0, 'in': 1.0, 'was': 1.0, 'older': 1.0, 'now': 1.0, 'is': 3.0, 'comes': 1.0, 'my': 1.0, 'if': 1.0, 'it': 7.0, 'she': 2.0, 'falls': 1.0, 'retains': 1.0, 'waterproof': 1.0, 'light': 1.0, 'just': 1.0, 'as': 2.0, 'to': 3.0, 'seat': 1.0, 'walk': 1.0, 'adjust': 1.0, 'asleep': 1.0, 'the': 2.0, 'too': 1.0, 'windshield': 1.0, 'and': 2.0, 'comfortably': 1.0, 'during': 1.0, 'raincover': 1.0, 'which': 1.0, 'sometimes': 1.0}
Word element => {'sized': 1.0, 'sooner': 1.0, 'saved': 1.0, 'buy': 1.0, 'was': 1.0, 'you': 1.0, 'what': 1.0, 'care': 1.0, 'end': 1.0, 'husbands': 1.0, 'down': 1.0, 'pare': 1.0, 'forces': 1.0, 's': 1.0, 'guess': 1.0, 'but': 1.0, 'bag': 2.0, 'diaper': 1.0, 'because': 1.0, 'that': 3.0, 'paid': 1.0, 'only': 2.0, 'awesome': 1.0, 'mechanics': 1.0, 'old': 1.0, 'with': 1.0, 'has': 1.0, 'recently': 1.0, 'would': 2.0, 'summer': 2.0, 'social': 1.0, 'purchased': 1.0, 'hooked': 1.0, 'accessories': 1.0, 'love': 1.0, 'bedtime': 1.0, 'positioning': 1.0, 'we': 6.0, 'a': 4.0, 'fit': 1.0, 't': 5.0, 'walks': 1.0, 'her': 2.0, 'for': 3.0, 'meltdown': 1.0, 'thing': 2.0, '2': 2.0, 'bump': 1.0, 'i': 7.0, 'reclaim': 1.0, 'stuck': 2.0, 'are': 1.0, 'first': 1.0, 'constantly': 1.0, 'so': 2.0, 'time': 2.0, 'after': 1.0, 'most': 1.0, 'sleep': 1.0, 'in': 2.0, 'seat': 4.0, 'bassinet': 3.0, 'to': 5.0, 'or': 1.0, 'gave': 1.0, 'loves': 1.0, 'full': 1.0, 'were': 1.0, 'car': 1.0, 'bugs': 1.0, 'past': 1.0, 'refused': 1.0, 'freedom': 1.0, 'over': 1.0, 'penny': 1.0, 'up': 1.0, 'don': 2.0, 'around': 3.0, 'good': 1.0, 'plan': 1.0, 'bars': 1.0, 'at': 5.0, 'is': 3.0, 'scream': 1.0, 'rolling': 1.0, 'too': 2.0, '1': 1.0, 'all': 2.0, 'helped': 1.0, 'regret': 1.0, 'house': 1.0, 'our': 2.0, 'stroller': 4.0, 'successfully': 1.0, 'it': 4.0, 'she': 6.0, 'baby': 1.0, 'started': 1.0, 'of': 5.0, 'the': 21.0, 'money': 1.0, 'believe': 1.0, 'this': 5.0, 'weekend': 2.0, 'without': 1.0, 'life': 1.0, 'just': 1.0, 'went': 2.0, 'out': 1.0, 'comment': 1.0, 'right': 1.0, 'bed': 1.0, 'part': 1.0, 'from': 1.0, 'worth': 1.0, 'now': 2.0, 'away': 1.0, 'have': 3.0, 'me': 2.0, 'my': 5.0, 'on': 2.0, 'long': 2.0, 'underneath': 1.0, 'sun': 2.0, 'and': 6.0, 'schedule': 1.0, 'us': 2.0, 'also': 1.0, 'flip': 1.0, 'every': 2.0, 'facing': 1.0, 'mechanism': 1.0, 'used': 1.0, 'hate': 1.0, 'get': 1.0, 'months': 1.0, 'bumps': 1.0, 'doesn': 2.0, 'didn': 1.0, 'sidewalk': 1.0, 'not': 1.0, 'street': 1.0, 'hit': 1.0, 'complain': 1.0, 'ease': 1.0}
Word element => {'bouncy': 1.0, 'stroller': 1.0, 'otherwise': 1.0, 'family': 1.0, 'drawn': 1.0, 'outweighed': 1.0, 'do': 1.0, 'hit': 1.0, 'could': 1.0, 'only': 1.0, 'accident': 1.0, 'approve': 1.0, 'says': 1.0, 'feel': 1.0, 'your': 4.0, 'hang': 1.0, 'supposed': 1.0, 'not': 2.0, 're': 1.0, 'now': 1.0, 'liked': 1.0, 'instructions': 1.0, 'bought': 1.0, 'mo': 2.0, '5': 1.0, 'was': 1.0, 'car': 1.0, 'grateful': 1.0, 'definitely': 1.0, 'bell': 1.0, 'scratching': 1.0, 'fingers': 1.0, 'benefits': 1.0, 'use': 3.0, 'her': 3.0, 'with': 1.0, 'flowers': 1.0, 'time': 1.0, 'periods': 1.0, 'am': 1.0, 'concentrates': 1.0, 'toy': 4.0, 'really': 1.0, 'short': 1.0, 'convoluted': 1.0, 'still': 1.0, 'if': 3.0, 'sorry': 1.0, 'make': 1.0, 'in': 4.0, 'seat': 1.0, 'turning': 1.0, 'parts': 1.0, 'ends': 1.0, 'pediatrician': 1.0, 'little': 2.0, 'single': 1.0, 'sweet': 1.0, 'attach': 1.0, 'unobtrusive': 1.0, 'because': 2.0, 'that': 5.0, 'makes': 1.0, 'holds': 1.0, 'chewing': 2.0, 'sturdy': 1.0, 'around': 2.0, 'don': 1.0, 'undo': 1.0, 'this': 4.0, 'risks': 1.0, 'from': 2.0, 'hard': 1.0, 'slide': 1.0, 'have': 2.0, 'well': 1.0, 'i': 8.0, 'driven': 1.0, 'can': 1.0, 'so': 1.0, 'annoying': 1.0, 'it': 12.0, 'label': 1.0, 'attention': 1.0, 'of': 9.0, 'the': 22.0, 'into': 2.0, 'wrap': 1.0, 'strings': 1.0, 'an': 1.0, 'other': 1.0, 'fabric': 1.0, 'for': 4.0, 'fingernails': 1.0, 'love': 1.0, 'just': 3.0, 'my': 5.0, 'me': 1.0, 'and': 8.0, 'like': 1.0, 'good': 1.0, 'which': 2.0, 'go': 1.0, 'story': 1.0, 'a': 7.0, 'sense': 1.0, 's': 3.0, 'likes': 2.0, 't': 3.0, 'by': 1.0, 'bright': 1.0, 'loops': 2.0, 'groupie': 1.0, 'haba': 2.0, 'tighten': 1.0, 'ahead': 1.0, 'jingling': 1.0, 'she': 3.0, 'baby': 7.0, 'times': 1.0, 'petals': 1.0, 'when': 2.0, 'does': 2.0, 'wooden': 1.0, 'find': 1.0, 'luckily': 1.0, 'toys': 3.0, 'noise': 1.0, 'their': 1.0, 'beads': 1.0, 'or': 3.0, 'need': 1.0, 'cute': 1.0, 'are': 2.0, 'conclusion': 1.0, 'tie': 1.0, 'to': 7.0, 'simple': 1.0, 'carseat': 6.0, 'chair': 1.0, 'couple': 1.0, 'nothing': 1.0, 'out': 2.0, 'at': 1.0, 'is': 2.0, 'ring': 1.0, 'handle': 4.0, 'bead': 2.0, '8': 1.0, 'plastic': 1.0, 'under': 1.0, 'tuck': 1.0, 'won': 2.0, 'be': 1.0, 'loud': 1.0, 'you': 5.0, 'able': 1.0, 'slip': 1.0, 'enough': 1.0, 'off': 1.0, 'these': 1.0, 'but': 1.0, 'knots': 1.0, 'c': 1.0, 'one': 1.0, 'end': 1.0, 'we': 2.0, 'then': 2.0, 'long': 2.0, 'on': 6.0, 'face': 1.0, 'whenever': 1.0, 'get': 2.0}
Word element => {'even': 1.0, 'amazon': 1.0, 'toys': 1.0, 'cute': 1.0, 'coloring': 1.0, 'noise': 1.0, 'clacking': 1.0, 'fabulous': 1.0, 'froggy': 1.0, 'small': 1.0, 'face': 1.0, 'however': 1.0, 'an': 1.0, 'bit': 1.0, 'was': 1.0, 'its': 1.0, 'now': 1.0, 'i': 1.0, 'by': 1.0, 'when': 1.0, 'haba': 1.0, 'shipped': 1.0, 'it': 5.0, 'quick': 1.0, 'with': 1.0, 'a': 2.0, 'we': 3.0, 'bought': 1.0, 'to': 2.0, 'our': 2.0, 'surprised': 1.0, 'realize': 1.0, 'that': 1.0, 'head': 1.0, 'places': 1.0, 'old': 1.0, 'makes': 2.0, 'love': 1.0, 'for': 2.0, 'shipping': 1.0, 'son': 1.0, 'very': 1.0, '6': 1.0, 'better': 1.0, 'recently': 1.0, 'mth': 1.0, 'has': 1.0, 'toy': 1.0, 'size': 2.0, 'quickly': 1.0, 'arrived': 1.0, 'is': 2.0, 'stimulating': 1.0, 'the': 3.0, 'great': 1.0, 'this': 1.0, 'perfect': 1.0, 'infant': 1.0, 'grasp': 1.0, 'too': 2.0, 'play': 1.0, 'and': 3.0, 'hold': 1.0, 'on': 2.0}
Word element => {'lame': 1.0, 'away': 1.0, 'only': 1.0, 'this': 1.0, 'cracked': 1.0, 'after': 1.0, 'apart': 1.0, 'in': 2.0, 'throw': 1.0, 'pieces': 1.0, 'toy': 1.0, 'baby': 1.0, 'usa': 1.0, 'made': 1.0, 'is': 1.0, 'that': 2.0, 'yet': 1.0, 'one': 1.0, 'playing': 1.0, 'the': 3.0, 'toxic': 1.0, 'are': 1.0, 'my': 2.0, 'have': 1.0, 'important': 1.0, 'under': 1.0, 'toys': 1.0, 'safe': 1.0, 'non': 1.0, 'it': 4.0, 'fell': 2.0, 'month': 1.0, 'a': 2.0, 'of': 1.0, 'little': 1.0, 'became': 1.0, 'choking': 1.0, 'hazard': 1.0, 'i': 1.0, 'with': 1.0, 'piece': 1.0, 'dark': 1.0, 'head': 1.0, 'green': 1.0, 'and': 1.0, 'off': 1.0, 'several': 1.0, 'had': 1.0, 'as': 1.0, 'to': 1.0}
Word element => {'picture': 1.0, 'cute': 1.0, 'as': 2.0, 'but': 1.0, 'it': 2.0, 'play': 1.0, 'this': 1.0, 'came': 1.0, 'mail': 1.0, 'to': 1.0, 'with': 1.0, 'is': 2.0, 'in': 1.0, 'fast': 1.0, 'too': 1.0, 'baby': 1.0, 'yet': 1.0, 'the': 2.0, 'small': 1.0}
Word element => {'pricey': 1.0, 'such': 1.0, 'for': 1.0, 'big': 1.0, 'a': 2.0, 'but': 1.0, 'without': 1.0, 'still': 1.0, 'off': 1.0, 'design': 1.0, 'we': 1.0, 'small': 1.0, 'so': 1.0, 'hazard': 1.0, 'whle': 1.0, 'chew': 1.0, 'seemed': 2.0, 'easily': 1.0, 'could': 1.0, 'like': 2.0, 'cord': 1.0, 'enjoys': 1.0, 'choking': 1.0, 'connecting': 1.0, 'and': 1.0, 'ball': 1.0, 'through': 1.0, 'arms': 3.0, 'cut': 1.0, 'infant': 2.0, 'teething': 1.0, 'free': 1.0, 'was': 1.0, 'toy': 1.0, 'wooden': 1.0, 'potential': 1.0, 'on': 1.0, 'end': 1.0, 'flaw': 1.0, 'felt': 1.0, 'this': 1.0}
Word element => {'attracts': 1.0, 'that': 1.0, 'makes': 1.0, 'sound': 1.0, 'also': 1.0, 'chewing': 1.0, 'provides': 1.0, 'shape': 1.0, 'and': 2.0, 'on': 2.0, 'hold': 1.0, 'to': 2.0, 'easy': 1.0, 'attention': 1.0, 's': 2.0, 'but': 1.0, 'educational': 1.0, 'child': 1.0, 'goes': 1.0, 'year': 1.0, 'just': 1.0, 'shaken': 1.0, 'when': 1.0, 'less': 1.0, 'for': 3.0, 'young': 1.0, 'i': 1.0, 'baby': 2.0, 'toy': 1.0, 'can': 1.0, 'is': 2.0, 'clicking': 1.0, 'it': 4.0, 'this': 1.0, 'the': 3.0, 'great': 2.0, 't': 1.0, 'a': 5.0, 'since': 1.0, 'mostly': 1.0, 'into': 1.0, 'sucking': 1.0, 'than': 1.0, 'mouth': 1.0, 'say': 1.0}
Word element => {'breaks': 1.0, 'replace': 1.0, 'buy': 1.0, 'd': 1.0, 'little': 1.0, 'nice': 1.0, 'paint': 1.0, 'they': 1.0, 'if': 2.0, 'pretty': 1.0, 'opposed': 1.0, 'not': 1.0, 'strong': 1.0, 'again': 1.0, 'am': 1.0, 'especially': 1.0, 'but': 3.0, 'this': 1.0, 'as': 2.0, 'to': 2.0, 'its': 1.0, 'carry': 1.0, 'painted': 1.0, 'standards': 1.0, 'it': 7.0, 'band': 1.0, 'wooden': 1.0, 'love': 1.0, 'for': 1.0, 'and': 2.0, 'beaded': 1.0, 'made': 2.0, 'them': 1.0, 'i': 3.0, 'wood': 1.0, 'skeptical': 1.0, 'of': 1.0, 'sturdy': 1.0, 'toys': 2.0, 'germany': 1.0, 'are': 1.0, 'in': 1.0, 'won': 1.0, 'has': 3.0, 'toy': 2.0, 'well': 1.0, 'country': 1.0, 'that': 2.0, 'body': 1.0, 'like': 2.0, 'stretchy': 1.0, 'around': 1.0, 'is': 1.0, 'holds': 1.0, 'together': 1.0, 't': 1.0, 'a': 3.0, 's': 1.0, 'after': 1.0, 'teething': 1.0}
Word element => {'with': 1.0, 'attention': 1.0, 'divert': 1.0, 'use': 1.0, 'car': 1.0, 'despises': 1.0, 'day': 1.0, 'some': 1.0, 'my': 1.0, 'very': 1.0, 'see': 1.0, 'from': 1.0, 'later': 1.0, 'months': 1.0, 'on': 1.0, 'besides': 1.0, 'so': 1.0, 'child': 1.0, 'materials': 1.0, 'durable': 1.0, 'excited': 1.0, 'this': 2.0, 'he': 2.0, 'it': 4.0, 'cute': 1.0, 'son': 1.0, 'gets': 1.0, 'still': 1.0, 'because': 1.0, 'wooden': 1.0, 'well': 1.0, 'toy': 2.0, 'is': 2.0, 'many': 1.0, 'computer': 1.0, 'being': 1.0, 'and': 4.0, 'the': 3.0, 'at': 2.0, 'image': 1.0, 'babbling': 1.0, 'happily': 1.0, 'seat': 1.0, 'smile': 1.0, 'to': 2.0, 'constructed': 1.0, 'reward': 1.0, 'made': 1.0, 'of': 1.0, 'started': 1.0, 'quality': 1.0, 'i': 2.0, 'a': 1.0, 'could': 1.0, 'got': 1.0, 'even': 1.0, 'his': 2.0, 'giving': 1.0, 'him': 2.0}
Word element => {'stars': 1.0, '5': 1.0, 'given': 1.0, 'have': 1.0, 'wish': 1.0, 'design': 1.0, 'encouraging': 1.0, 'writing': 1.0, 'intend': 1.0, 'without': 1.0, 'even': 1.0, 'functional': 1.0, 'couple': 1.0, 'idea': 1.0, 'think': 1.0, 'as': 1.0, 'choking': 1.0, 'reviewer': 1.0, 'another': 1.0, 'months': 1.0, 'for': 2.0, 'size': 1.0, 'perfect': 1.0, 'this': 4.0, 'you': 1.0, 'able': 1.0, 'be': 3.0, 'choke': 2.0, 'gives': 1.0, 'cut': 1.0, 'they': 1.0, 'like': 1.0, 'seemed': 2.0, 'of': 1.0, 'the': 10.0, 'hands': 5.0, 'she': 2.0, 'it': 8.0, 'worth': 1.0, 'now': 2.0, 'attached': 1.0, 'much': 1.0, 'my': 4.0, 'only': 1.0, 'company': 1.0, 'frog': 1.0, 'little': 5.0, 'old': 2.0, 'balls': 1.0, 'cute': 3.0, 'today': 1.0, 'whole': 1.0, 'saw': 1.0, 'wooden': 1.0, 'and': 8.0, 'possibly': 1.0, 'greatly': 1.0, 'ball': 2.0, 'daughter': 2.0, '1': 1.0, 'feeling': 1.0, 'felt': 1.0, 'gave': 1.0, 'concerned': 1.0, 'that': 3.0, 'loves': 1.0, 'surmise': 1.0, 'when': 1.0, 'someone': 2.0, 'might': 1.0, 'a': 8.0, 'will': 1.0, 'could': 4.0, 'where': 1.0, 'come': 2.0, 'to': 7.0, 'glue': 1.0, 'was': 3.0, 'not': 3.0, 'those': 1.0, 'with': 2.0, 'but': 1.0, '2': 1.0, 'so': 1.0, 'can': 1.0, 'on': 4.0, 'tugged': 1.0, 'son': 1.0, 'if': 2.0, 'still': 2.0, 'always': 1.0, 'them': 2.0, 'one': 1.0, 'lot': 1.0, 'who': 1.0, 'keep': 1.0, 'in': 1.0, 'being': 1.0, 'good': 2.0, 'decided': 1.0, 'trust': 1.0, 'toy': 3.0, 'i': 8.0, 'well': 2.0, 'year': 2.0, 'haba': 2.0, 'child': 1.0, 'is': 2.0, 'change': 1.0, '7': 1.0, 'he': 1.0, 'yanking': 1.0, 'making': 1.0, 'chews': 1.0, 'uneasy': 2.0, 'about': 3.0, 'shakes': 1.0, 'played': 1.0, 'some': 1.0, 'risk': 1.0, 'off': 4.0, 'seems': 1.0, 'having': 1.0, 'amused': 1.0, 'by': 1.0, 'just': 2.0, 'head': 2.0, 'popped': 1.0, 'wood': 1.0}
Word element => {'no': 1.0, 'back': 1.0, 'returned': 1.0, 'always': 1.0, 'house': 1.0, 'inside': 1.0, 'hard': 1.0, 'mice': 1.0, 'colors': 1.0, 'bright': 1.0, 'cute': 1.0, 'besides': 1.0, 'choice': 1.0, 'my': 1.0, 'sale': 1.0, 'put': 1.0, 'on': 1.0, 'store': 1.0, 'whatever': 1.0, 'many': 1.0, 'i': 1.0, 'just': 1.0, 'it': 2.0, 'time': 1.0, 'and': 1.0, 'avoid': 1.0, 'well': 1.0, 'toy': 2.0, 'this': 2.0, 'money': 1.0, 'can': 1.0, 'work': 1.0, 'but': 1.0, 'advertised': 1.0, 'other': 1.0, 'or': 1.0, 'of': 1.0, 'selecta': 1.0, 'misunderstanding': 1.0, 'should': 1.0, 'someone': 1.0, 'eco': 1.0, 'said': 1.0, 'in': 5.0, 'hape': 1.0, 'one': 1.0, 'toys': 4.0, 'fast': 1.0, 'germany': 2.0, 'amazon': 2.0, 'buy': 1.0, 'looking': 1.0, 'will': 1.0, 'origin': 2.0, 'problem': 1.0, 'haba': 1.0, 'like': 2.0, 'not': 3.0, 'the': 5.0, 'returns': 1.0, 'china': 3.0, 'made': 4.0, 'little': 1.0, 'is': 2.0, 'plan': 1.0, 'more': 1.0, 'comes': 1.0, 'all': 1.0, 'any': 1.0, 'waist': 1.0, 'as': 1.0, 'to': 2.0, 'designed': 1.0, 'isn': 1.0, 'interesting': 1.0, 'imported': 1.0, 'for': 3.0, 'product': 1.0, 'be': 1.0, 't': 1.0, 's': 2.0, 'adorable': 1.0, 'who': 1.0, 'at': 2.0, 'specified': 1.0, 'page': 1.0, 'although': 1.0}
Word element => {'trimmable': 1.0, 'should': 2.0, 'find': 1.0, 'was': 1.0, 'station': 1.0, 'does': 1.0, 'to': 5.0, 'diaper': 1.0, 'as': 2.0, 'our': 3.0, 'elsewhere': 1.0, 'any': 1.0, 'and': 7.0, 'too': 1.0, 'away': 1.0, '6': 1.0, 'more': 1.0, 'say': 1.0, 'bear': 1.0, 'you': 1.0, 'd': 1.0, 'her': 1.0, 'she': 3.0, 'starting': 1.0, 'it': 6.0, 'little': 4.0, 'ceiling': 2.0, 'changing': 1.0, 'much': 1.0, 'dollars': 1.0, 'only': 1.0, 'mobile': 4.0, 'hang': 2.0, 'likes': 2.0, 'have': 2.0, 'like': 2.0, 'seems': 1.0, 'dollar': 1.0, 'gurgles': 1.0, 'but': 2.0, 'bought': 1.0, 'money': 1.0, 'than': 1.0, 'way': 2.0, 'looked': 1.0, 'from': 1.0, 'easy': 1.0, 'suspect': 1.0, 'found': 1.0, 'far': 1.0, 'love': 1.0, 'for': 1.0, 'stars': 1.0, 'friends': 1.0, 'old': 1.0, 'well': 2.0, 'i': 7.0, '4': 1.0, 'hoped': 1.0, 'because': 2.0, 'that': 1.0, 'box': 1.0, 'girl': 2.0, 'weeks': 1.0, 'would': 3.0, 'spent': 1.0, 'never': 1.0, 'reason': 1.0, 'attaching': 1.0, 'is': 5.0, 'at': 1.0, 'me': 1.0, 'be': 3.0, 'giving': 1.0, 'we': 1.0, 'this': 4.0, 'few': 1.0, 'less': 1.0, 'spend': 1.0, 'on': 1.0, 'instead': 1.0, 'longer': 1.0, 'the': 9.0, 'of': 2.0, 'mouse': 1.0, '5': 1.0, 'hook': 2.0, 'no': 1.0, 'ours': 1.0, 'smiles': 1.0, 'or': 2.0, 'other': 1.0, 'means': 1.0, 'directly': 1.0, 'crib': 1.0, 'can': 1.0, 'included': 2.0, 'm': 3.0, 'in': 1.0, 'guessed': 1.0, 'string': 2.0, 'short': 1.0, 'a': 4.0, 'situated': 1.0, 'loved': 1.0, 'enough': 2.0, 'above': 1.0}
Word element => {'seen': 1.0, 've': 1.0, 'mobiles': 1.0, 'fashioned': 1.0, 'the': 1.0, 'of': 1.0, 'one': 1.0, 's': 1.0, 'otherwise': 1.0, 'to': 2.0, 'best': 1.0, 'from': 1.0, 'adorable': 1.0, 'and': 1.0, 'flying': 1.0, 'just': 1.0, 'included': 1.0, 'wish': 1.0, 'd': 1.0, 'a': 2.0, 'sweet': 1.0, 'keep': 1.0, 'baby': 1.0, 'mirror': 1.0, 'design': 1.0, 'simple': 1.0, 'hang': 1.0, 'bears': 1.0, 'entranced': 1.0, 'old': 1.0, 'i': 2.0, 'they': 1.0, 'hook': 1.0, 'with': 1.0, 'it': 2.0}
Word element => {'moment': 1.0, 'at': 1.0, 'stroller': 1.0, 'than': 2.0, 'a': 2.0, 'as': 1.0, 'very': 1.0, 'better': 1.0, 'works': 1.0, 'it': 1.0, 'crib': 1.0, 'mobile': 1.0, 'size': 1.0, 'probably': 2.0, 'enjoying': 1.0, 'cute': 1.0, 'months': 1.0, 'over': 1.0, 'sheep': 1.0, 'm': 1.0, 'for': 1.0, 'given': 1.0, '2': 1.0, 'the': 2.0, 'more': 1.0, 'my': 1.0, 'old': 1.0, 'i': 1.0}
Word element => {'fold': 1.0, 'need': 1.0, 'better': 1.0, 'probably': 1.0, 'colors': 2.0, 'up': 1.0, 'don': 1.0, 'room': 1.0, 'want': 1.0, 'choice': 1.0, 'if': 2.0, 'have': 1.0, 'small': 2.0, 'good': 1.0, 'are': 1.0, 'smaller': 1.0, 'so': 1.0, 'is': 4.0, 'think': 2.0, 'sturdy': 2.0, 'less': 2.0, 'feels': 1.0, 'seeing': 1.0, 'but': 4.0, 'far': 1.0, 'bru': 1.0, 'space': 1.0, 'at': 1.0, 'other': 2.0, 'tested': 1.0, 'bought': 1.0, 'one': 2.0, 'this': 2.0, 'pappa': 1.0, 'person': 1.0, 'looking': 1.0, 'mind': 1.0, 'models': 1.0, 'with': 2.0, 'it': 5.0, 'noticable': 1.0, 'pleased': 2.0, 'look': 1.0, 'because': 1.0, 'than': 4.0, 'deciding': 1.0, 'nicely': 1.0, 'without': 1.0, 'the': 9.0, 'little': 1.0, 'very': 1.0, 'big': 1.0, 'two': 2.0, 'i': 8.0, 'contempo': 1.0, 'easy': 1.0, 'just': 1.0, 'received': 1.0, 'much': 2.0, 'as': 2.0, 'to': 1.0, 'our': 2.0, 'primma': 1.0, 'that': 3.0, 'graco': 1.0, 'modern': 1.0, 'not': 1.0, 'style': 1.0, 'and': 5.0, 'too': 2.0, 'pewter': 1.0, 'you': 4.0, 'am': 1.0, 'in': 3.0, 'chair': 4.0, 'my': 1.0, 'house': 1.0, 'an': 1.0, 'fit': 1.0, 'assemble': 1.0, 'for': 2.0, 't': 1.0, 'a': 5.0, 'would': 1.0, 'decor': 1.0, 'be': 2.0, 'or': 1.0, 'was': 3.0, 'chicco': 2.0, 'of': 1.0, 'will': 2.0, 'eyesore': 1.0, 'overall': 2.0, 'they': 1.0, 'between': 1.0, 'polly': 2.0}
Word element => {'recommended': 1.0, 'holders': 1.0, 'color': 1.0, 'cup': 1.0, 'seat': 1.0, 'is': 1.0, 'well': 1.0, 'designed': 1.0, 'highly': 1.0, 'and': 2.0, 'the': 2.0, 'booster': 1.0, 'my': 1.0, 'comfortable': 1.0, 'daughter': 1.0, 'this': 1.0, 'loves': 1.0}
Word element => {'are': 1.0, 'parents': 1.0, 'working': 1.0, 'amount': 1.0, 'help': 1.0, 'falcon': 1.0, 'things': 1.0, 'other': 1.0, 'd': 1.0, 'put': 1.0, 'stuff': 2.0, 'how': 1.0, 'sure': 1.0, 'lugging': 1.0, 'top': 1.0, 'back': 1.0, 'also': 1.0, 'with': 3.0, 'at': 2.0, 'so': 1.0, 'morning': 1.0, 'off': 1.0, 'car': 4.0, 'husband': 1.0, 'have': 4.0, 'attempt': 1.0, 'this': 1.0, 'much': 1.0, 'only': 1.0, 'consider': 1.0, 'two': 2.0, 'i': 5.0, 'not': 1.0, 'some': 1.0, 'carrying': 1.0, 'look': 1.0, 'important': 1.0, 'seemed': 1.0, 'bring': 2.0, 'seats': 1.0, 'however': 1.0, 'agree': 1.0, 'son': 2.0, 'least': 1.0, 'to': 3.0, 'seat': 3.0, 'our': 3.0, 'as': 1.0, 'into': 1.0, 'that': 5.0, 'totally': 1.0, 'money': 1.0, 'but': 1.0, 'can': 3.0, 'most': 1.0, 'forced': 1.0, 'really': 1.0, 'every': 1.0, 'baby': 1.0, 'is': 2.0, 'interaction': 1.0, 'am': 1.0, 'save': 1.0, 'my': 4.0, 'deal': 1.0, 'the': 6.0, 'snuggling': 1.0, 'talk': 1.0, 'daycare': 1.0, 'could': 1.0, 's': 1.0, 'we': 4.0, 'bought': 1.0, 'one': 2.0, 'and': 7.0, 'picks': 1.0, 'him': 3.0, 'over': 1.0, 'up': 1.0, 'rather': 1.0, 'of': 2.0, 'drop': 1.0, 'toward': 1.0, 'just': 1.0, 'physically': 1.0, 'separately': 1.0, 'in': 2.0, 'capable': 1.0, 'stroller': 1.0, 'solution': 1.0}
Word element => {'seen': 1.0, 'ever': 1.0, 'ridiculous': 1.0, 'most': 1.0, 'the': 1.0, 'probably': 1.0, 'think': 1.0, 'i': 2.0, 'this': 3.0, 've': 1.0, 'thing': 2.0, 'is': 2.0, 'a': 2.0, 'joke': 1.0, 'has': 1.0, 'gift': 1.0, 'right': 1.0, 'to': 1.0, 'be': 1.0, 'gag': 1.0}
Word element => {'again': 1.0, 'purchase': 1.0, 'still': 1.0, 'is': 2.0, 'bottom': 1.0, 'for': 1.0, 'hopes': 1.0, 'line': 1.0, 'distributes': 1.0, 'however': 1.0, 'small': 1.0, 't': 1.0, 'heavy': 1.0, 'the': 4.0, 'a': 2.0, 'probably': 1.0, 'and': 1.0, 'am': 1.0, 'person': 1.0, 'bit': 1.0, 'high': 1.0, 'i': 1.0, 'wouldn': 1.0, 'this': 2.0, 'it': 3.0, 'makes': 1.0, 'easier': 1.0, 'had': 1.0, 'to': 1.0, 'carry': 1.0, 'car': 2.0, 'seat': 2.0, 'because': 1.0, 'weight': 1.0}
Word element => {'etc': 1.0, 'other': 1.0, 'choices': 1.0, 'dozens': 1.0, 'for': 1.0, 'there': 1.0, 'of': 1.0, 'you': 2.0, 'from': 1.0, 'sling': 1.0, 'ring': 1.0, 'away': 1.0, 'and': 3.0, 'more': 1.0, 'great': 1.0, 'ones': 1.0, 'are': 2.0, 'why': 1.0, 'car': 2.0, 'strain': 1.0, 'baby': 3.0, 'to': 2.0, 'also': 1.0, 'keep': 1.0, 'ways': 1.0, 'your': 2.0, 'on': 1.0, 'comfortably': 1.0, 'carry': 1.0, 'add': 1.0, 'some': 1.0, 'a': 6.0, 'the': 1.0, 'wrap': 1.0, 'like': 1.0, 'pouch': 1.0, 'soft': 1.0, 'structed': 1.0, 'endless': 1.0, 'back': 1.0, 'carrier': 1.0, 'tai': 1.0, 'mei': 1.0, 'can': 1.0, 'safely': 1.0, 'find': 1.0, 'seats': 1.0, 'inexpensive': 1.0}
Word element => {'over': 1.0, 'fall': 1.0, 'would': 1.0, 'i': 1.0, 'felt': 1.0, 'to': 2.0, 'much': 1.0, 'install': 1.0, 't': 1.0, 'like': 2.0, 'pulling': 1.0, 'trouble': 1.0, 'it': 1.0, 'me': 1.0, 'don': 1.0, 'down': 1.0}
Word element => {'excellent': 1.0, 'want': 1.0, 'go': 1.0, 'compliments': 1.0, 'get': 2.0, 'than': 1.0, 'ache': 1.0, 'start': 1.0, 'does': 1.0, 'tired': 1.0, 'getting': 1.0, 'periods': 1.0, 'comfortable': 1.0, 'more': 1.0, 'while': 1.0, 'stroller': 1.0, 'place': 1.0, 'use': 1.0, 'believe': 1.0, 'might': 1.0, 'where': 1.0, 'package': 1.0, 'end': 1.0, 'height': 1.0, 'right': 1.0, 'front': 1.0, 'see': 1.0, 'but': 1.0, 'kind': 1.0, 'them': 2.0, 'bumping': 1.0, 'doorways': 1.0, 'hard': 2.0, 'sometimes': 2.0, 'invention': 1.0, 'time': 1.0, 'new': 1.0, 'buy': 1.0, 'head': 1.0, 'decide': 1.0, 'velcro': 1.0, 'permanently': 1.0, 'about': 2.0, 'buckled': 1.0, 'out': 1.0, 'baby': 1.0, 'angle': 2.0, 'an': 2.0, 'could': 3.0, 'yourself': 1.0, 'otherwise': 1.0, 'minutes': 1.0, 'bonking': 1.0, 'another': 2.0, 'caught': 1.0, 'not': 2.0, 'strap': 2.0, 'by': 1.0, 'everywhere': 1.0, 'fall': 1.0, 'that': 3.0, 'lead': 1.0, 'from': 2.0, 'if': 3.0, 'unlock': 1.0, 'is': 1.0, 'at': 3.0, 'makes': 1.0, 'keep': 1.0, 'dawdling': 1.0, 'cause': 2.0, 'handed': 1.0, 'hands': 3.0, 'without': 5.0, 'hold': 1.0, 'having': 3.0, 'find': 1.0, 'going': 1.0, 'embarrassing': 1.0, 't': 2.0, 'maybe': 1.0, 's': 4.0, 'includes': 1.0, 'invaluable': 1.0, 'longer': 2.0, 'the': 20.0, 'of': 7.0, 'be': 3.0, 'to': 18.0, 'know': 2.0, 'found': 1.0, 'this': 2.0, 'full': 1.0, 'have': 4.0, 'child': 1.0, 'shoulder': 1.0, 'don': 1.0, 'mall': 1.0, 'story': 1.0, 'a': 3.0, 'attempting': 1.0, 'up': 2.0, 'leg': 1.0, 'gym': 1.0, 'attach': 1.0, 'purchased': 1.0, 'when': 6.0, 'what': 1.0, 'i': 15.0, 'little': 1.0, 'two': 3.0, 'etc': 1.0, 'carrier': 2.0, 'ex': 1.0, 'carry': 5.0, 'you': 7.0, 'things': 2.0, 'correctly': 1.0, 'it': 20.0, 'would': 1.0, 've': 2.0, 'and': 9.0, 'much': 1.0, 'do': 2.0, 'same': 1.0, 'felt': 1.0, 'parking': 1.0, 'car': 3.0, 'lot': 1.0, 'one': 4.0, 'love': 1.0, '10': 1.0, 'shorter': 1.0, 'for': 3.0, 'doctors': 1.0, 'my': 3.0, 'those': 1.0, 'third': 1.0, 'very': 1.0, 'preschool': 1.0, 'church': 1.0, 'into': 1.0, 'houses': 1.0, 'which': 1.0, 'made': 1.0, 'even': 1.0, 'below': 1.0, 'preferable': 1.0, 'carrying': 2.0, 'untrue': 1.0, 'weren': 1.0, 'with': 4.0, 'in': 3.0, 'seat': 8.0, 'm': 2.0, 'people': 1.0, 'both': 1.0, 'alone': 1.0, 'no': 1.0, 'as': 1.0, 'crazy': 1.0, 'bending': 1.0, 'awkward': 1.0, 'they': 2.0, 'sturdy': 1.0, 'angles': 1.0, 'narrow': 1.0, 'purchase': 1.0, 'only': 1.0, 'hitting': 1.0, 'your': 2.0, 'on': 2.0, 'make': 1.0, 'method': 1.0, 'gifts': 1.0, 'or': 2.0, 'cup': 1.0, 'so': 2.0, 'can': 4.0, 'given': 1.0, 'set': 1.0, 'become': 1.0, 'used': 1.0, 'ground': 1.0, 'tilted': 1.0, 'part': 1.0, 'thick': 1.0, 'through': 1.0, 'strips': 1.0, 'material': 1.0, 'never': 1.0, 'shower': 1.0, 'sibling': 1.0, 'pick': 1.0, 'was': 1.0, 'unsafe': 1.0, 'sure': 1.0}
Word element => {'gift': 1.0, 'received': 1.0, 'interact': 1.0, 'face': 1.0, 'see': 1.0, 'useful': 1.0, 'a': 1.0, 's': 2.0, 'it': 3.0, 'bank': 1.0, 'this': 2.0, 'free': 1.0, 'older': 1.0, 'quick': 1.0, 'from': 1.0, 'very': 2.0, 'errands': 1.0, 'to': 1.0, 'as': 2.0, 'came': 1.0, 'for': 2.0, 'in': 1.0, 've': 1.0, 'even': 1.0, 'than': 1.0, 'does': 1.0, 'handy': 1.0, 'son': 1.0, 'siblings': 1.0, 'heard': 1.0, 'etc': 1.0, 'i': 2.0, 'you': 1.0, 'when': 1.0, 'was': 3.0, 'and': 4.0, 'easy': 1.0, 'get': 1.0, 'appreciative': 1.0, 'more': 2.0, 'heavy': 1.0, 'great': 1.0, 'such': 1.0, 'my': 1.0, 'running': 1.0, 'small': 1.0, 'friends': 1.0, 'so': 1.0, 'baby': 2.0, 'or': 1.0, 'that': 1.0, 'into': 1.0, '3': 1.0, 'hold': 1.0, 'without': 1.0, 'the': 2.0, 'hands': 2.0, '2': 1.0, 'can': 1.0, 'but': 1.0}
Word element => {'buy': 1.0, 'along': 1.0, 'always': 1.0, 'how': 1.0, 'matter': 1.0, 'trip': 1.0, 'table': 1.0, 'wish': 1.0, 'goes': 1.0, 'exactly': 1.0, 'directions': 1.0, 'follow': 1.0, 'if': 1.0, 'you': 1.0, 'times': 1.0, 'take': 1.0, 'many': 1.0, 'carried': 1.0, 'packed': 1.0, 'it': 12.0, 'traveled': 1.0, 'heavy': 1.0, 'first': 2.0, 'changing': 1.0, 'been': 2.0, 'just': 1.0, 'by': 1.0, 'life': 1.0, 'has': 2.0, 'simply': 1.0, 'time': 1.0, 'is': 2.0, 'short': 1.0, 'simple': 1.0, 'central': 1.0, 'myself': 1.0, 'the': 6.0, 'absolutely': 1.0, 'for': 1.0, 'love': 1.0, 'n': 1.0, 'not': 2.0, 'graco': 1.0, '2': 1.0, 'past': 1.0, 'saver': 1.0, 'problem': 1.0, 'we': 4.0, 'a': 2.0, 'moved': 1.0, 'play': 1.0, 'and': 3.0, 'great': 2.0, '1': 2.0, 'only': 1.0, 'pack': 1.0, 'have': 2.0, 'extensively': 1.0, 'year': 1.0, 'had': 3.0, 'husband': 1.0, 'beautiful': 1.0, 'was': 1.0, 'park': 1.0, 'no': 2.0, 'let': 1.0, 'putting': 1.0, 'i': 4.0, 'together': 2.0, 'although': 1.0, 'my': 2.0, 'set': 2.0, 'child': 1.0, 'over': 1.0, 'up': 2.0, 'quite': 2.0}
Word element => {'point': 1.0, 'for': 1.0, 'use': 1.0, 'or': 1.0, 'pillow': 1.0, 'small': 1.0, 'putting': 1.0, 'few': 1.0, 'by': 1.0, 'supported': 1.0, 'being': 1.0, 'anything': 1.0, 'other': 1.0, 'cushion': 1.0, 'always': 1.0, 'was': 1.0, 'head': 3.0, 'back': 1.0, 'wasn': 1.0, 'out': 1.0, 'cried': 1.0, 'come': 1.0, 'why': 1.0, 'never': 2.0, 'her': 4.0, 'blankets': 1.0, '2': 2.0, 'change': 1.0, 'again': 1.0, 'when': 1.0, 'cry': 1.0, 'is': 3.0, 'changed': 1.0, 'realize': 1.0, 't': 1.0, 'a': 5.0, 'lying': 1.0, 'getting': 1.0, 'took': 1.0, 'i': 4.0, 'started': 1.0, 'baby': 1.0, 'and': 3.0, 'play': 1.0, 'as': 1.0, 'to': 3.0, 'whole': 1.0, 'about': 1.0, 'thing': 1.0, 'she': 1.0, 'it': 2.0, 'dont': 1.0, 'this': 1.0, 'pack': 1.0, 'only': 1.0, 'works': 1.0, 'from': 1.0, 'while': 2.0, 'hard': 2.0, 'part': 1.0, 'down': 1.0, 'find': 1.0, 'does': 1.0, '1': 2.0, 'great': 1.0, 'the': 7.0, 'constantly': 1.0, 'on': 3.0, 'piece': 1.0, 'receiving': 1.0, 'knew': 1.0, 'support': 1.0, 'that': 3.0, 'changing': 2.0, 'which': 1.0, 'like': 1.0, 'table': 1.0, 'there': 1.0, 'of': 4.0, 'really': 1.0, 'material': 2.0, 'me': 1.0, 'n': 1.0, 'not': 1.0, 'cover': 1.0, 'resting': 1.0, 'area': 1.0, 'my': 1.0, 'daughter': 1.0, 'would': 3.0}
Word element => {'while': 1.0, 'great': 1.0, 'slept': 1.0, 'bedtime': 1.0, 'naps': 1.0, 'new': 1.0, 'there': 2.0, 'zipped': 1.0, 'being': 2.0, 'was': 1.0, 'doesn': 1.0, 'you': 1.0, 'definitely': 1.0, 'loved': 1.0, 'night': 1.0, 'familiar': 1.0, 'every': 1.0, 'her': 1.0, 'in': 4.0, 'old': 1.0, 'year': 1.0, 'my': 1.0, 'italy': 1.0, 'room': 2.0, 'before': 3.0, 'week': 1.0, 'didn': 1.0, 'got': 2.0, 'out': 2.0, 'can': 1.0, 'so': 1.0, 'case': 1.0, 'carrying': 1.0, 'however': 1.0, 'sure': 1.0, 'left': 2.0, 'folds': 1.0, 'were': 1.0, 'driving': 1.0, 'home': 1.0, 'pea': 1.0, 'space': 1.0, 'at': 1.0, 'recently': 1.0, 'has': 1.0, 'for': 4.0, 'one': 3.0, 'plus': 1.0, 'child': 2.0, 'up': 3.0, 'once': 1.0, 'of': 1.0, 'princesswe': 1.0, 'size': 1.0, 'this': 2.0, 'she': 3.0, 'it': 9.0, 'leave': 1.0, 'small': 1.0, 'have': 1.0, 'purchased': 1.0, 'let': 1.0, 'or': 1.0, 'your': 1.0, 'make': 1.0, 'think': 1.0, 'wonderful': 1.0, 'travel': 3.0, 'peapod': 1.0, 'play': 1.0, 'and': 7.0, 't': 3.0, 'zips': 1.0, 'we': 6.0, 'a': 4.0, 's': 3.0, 'more': 1.0, 'n': 1.0, 'not': 1.0, 'mind': 2.0, 'crawl': 1.0, 'red': 1.0, 'pink': 1.0, 'i': 1.0, 'try': 1.0, 'pack': 1.0, 'much': 1.0, 'pod': 1.0, 'diaper': 1.0, 'practical': 1.0, 'own': 2.0, 'especially': 1.0, 'the': 3.0, 'international': 1.0, 'sleep': 1.0, 'to': 2.0, 'bag': 1.0}
Word element => {'drawback': 1.0, 'a': 1.0, 'which': 1.0, 'strongly': 1.0, 'of': 1.0, 'sturdy': 1.0, 'pack': 1.0, 'super': 1.0, 'n': 1.0, 'smelled': 1.0, 'this': 1.0, 'play': 1.0, 'is': 3.0, 'not': 1.0, 'very': 1.0, 'and': 1.0, 'huge': 1.0, 'it': 2.0, 'portable': 1.0, 'plastic': 1.0, 'but': 2.0}
Word element => {'us': 1.0, 'with': 1.0, 'up': 1.0, 'when': 1.0, 'excited': 1.0, 'my': 3.0, 'need': 1.0, 'play': 2.0, 'and': 6.0, 'pack': 2.0, 'its': 1.0, 'product': 2.0, 'for': 3.0, '2': 1.0, 'anyways': 1.0, 'but': 1.0, 'type': 1.0, 'old': 1.0, 'any': 1.0, 'bassinet': 1.0, 'to': 2.0, 'actual': 1.0, 'absolutely': 1.0, 'everything': 1.0, 'his': 1.0, 'hold': 1.0, 'like': 2.0, 'holders': 1.0, 'this': 1.0, 'as': 2.0, 'body': 1.0, 'diaper': 1.0, 'more': 1.0, 'is': 3.0, 'of': 2.0, 'the': 5.0, 'pay': 1.0, 'son': 1.0, 'would': 1.0, 'been': 1.0, 'd': 1.0, 'n': 1.0, 'not': 1.0, 'daily': 1.0, 'it': 6.0, 'same': 1.0, 'month': 1.0, 'exact': 1.0, 'i': 10.0, 'on': 1.0, 'much': 1.0, 'changing': 2.0, 'put': 1.0, 'a': 3.0, 's': 1.0, 'we': 3.0, 'fit': 1.0, 't': 1.0, 'use': 2.0, 'instead': 1.0, 'basis': 1.0, 'all': 1.0, 'ever': 1.0, 'has': 1.0, 'hot': 2.0, 'love': 3.0, 'he': 4.0, 'm': 1.0, 'in': 2.0, 'since': 1.0, 'was': 1.0, 'born': 1.0, 'very': 3.0, 'thick': 1.0, 'that': 2.0, 'because': 1.0, 'does': 1.0, 'haven': 1.0, 'can': 1.0, 'so': 1.0, 'sweating': 1.0, 'night': 1.0, 'live': 1.0, 'bed': 1.0, 'cream': 1.0, 'stays': 1.0, 'comfortable': 1.0, 'move': 2.0, 'used': 1.0, 'wipes': 1.0, 'pen': 1.0, 'sure': 1.0, 'easy': 1.0, 'table': 1.0, 'll': 1.0, 'down': 1.0, 'just': 1.0, 'diapers': 1.0, 'plus': 1.0, 'break': 1.0, 'together': 1.0, 'where': 1.0, 're': 1.0}
Word element => {'enough': 1.0, 'small': 1.0, 'was': 2.0, 'table': 1.0, 'but': 1.0, 'part': 1.0, 'ever': 1.0, 'day': 1.0, 'son': 1.0, 'use': 3.0, 'every': 1.0, 'months': 1.0, '14': 1.0, 'pack': 1.0, 'able': 1.0, 'sit': 1.0, 'i': 2.0, 'when': 2.0, 'it': 2.0, 'minute': 1.0, 'this': 1.0, 'with': 1.0, 'great': 2.0, 'my': 1.0, 'didn': 1.0, 'who': 1.0, 'bassinet': 1.0, 'need': 1.0, 'toys': 1.0, 'has': 1.0, 'for': 2.0, 'now': 1.0, 'to': 3.0, 'is': 2.0, 'he': 2.0, 'walk': 1.0, 'out': 1.0, 'of': 1.0, 'room': 1.0, 't': 1.0, 'we': 1.0, 'a': 1.0, 'play': 2.0, 'and': 1.0, 'n': 1.0, 'me': 1.0, 'getting': 1.0, 'his': 1.0, 'the': 3.0, 'without': 1.0, 'about': 1.0, 'him': 1.0, 'changing': 1.0, 'been': 1.0, 'into': 1.0, 'worrying': 1.0, 'something': 1.0}
Word element => {'or': 1.0, 'not': 1.0, 'when': 1.0, 'a': 1.0, 'sleeping': 1.0, 'son': 1.0, 'as': 1.0, 'use': 1.0, 'room': 1.0, 'playing': 1.0, 'our': 2.0, 'in': 2.0, 'usually': 1.0, 's': 2.0, 'unisex': 1.0, 'chest': 1.0, 'toy': 1.0, 'colors': 1.0, 'its': 3.0, 'living': 1.0, 'clean': 1.0, 'for': 1.0, 'on': 1.0, 'nice': 1.0, 'it': 3.0, 'this': 2.0, 'n': 1.0, 'have': 1.0, 'pack': 1.0, 'and': 2.0, 'generous': 1.0, 'size': 1.0, 'simple': 1.0, 'design': 1.0, 'play': 1.0, 'we': 2.0, 'trips': 1.0, 'used': 1.0, 'road': 1.0, 'is': 1.0, 'many': 1.0}
Word element => {'great': 1.0, 'device': 1.0, 'nature': 1.0, 'move': 1.0, 'to': 1.0, 'easier': 1.0, '20': 1.0, 'music': 1.0, 'but': 1.0, 'instructions': 1.0, 'a': 2.0, 'that': 1.0, 'sound': 1.0, 'child': 1.0, '2nd': 1.0, 'it': 3.0, 'n': 2.0, 'this': 3.0, 'with': 1.0, 'due': 1.0, 'i': 5.0, 'old': 1.0, 'my': 2.0, 'play': 2.0, 'few': 1.0, 'just': 1.0, 'had': 1.0, 'in': 2.0, 'yr': 1.0, 'recommend': 1.0, 'minutes': 1.0, 'store': 1.0, 'the': 3.0, 'months': 1.0, 'bought': 2.0, 'mobile': 1.0, 'about': 1.0, 'no': 2.0, 'works': 1.0, 'pack': 2.0, 'assistance': 1.0, 'love': 1.0, 'for': 2.0, 'discount': 1.0, '6': 1.0, '100': 1.0, 'definatley': 1.0, '60': 1.0, 'paid': 1.0, 'is': 1.0, '00': 1.0, 've': 1.0, 'would': 2.0, 'together': 2.0, 'wheels': 1.0, 'put': 2.0, 'make': 1.0}
Word element => {'for': 1.0, 'out': 1.0, 'm': 1.0, 'future': 1.0, 'lot': 1.0, 'use': 2.0, 'hard': 1.0, 'bit': 1.0, 'surface': 1.0, 'yet': 1.0, 'sling': 1.0, 'more': 1.0, 'is': 3.0, 'changing': 1.0, 'that': 1.0, 'do': 1.0, 'pack': 1.0, 'have': 1.0, 'nap': 1.0, 'of': 2.0, 'her': 1.0, 'good': 1.0, 'mostly': 1.0, 'sturdy': 1.0, 'because': 1.0, 'don': 1.0, 'alone': 1.0, 'construction': 1.0, 'very': 1.0, 'not': 1.0, 'n': 1.0, 'i': 4.0, 'whole': 1.0, 'portable': 2.0, 'my': 1.0, 'but': 1.0, 'doesn': 1.0, 'as': 1.0, 'sleep': 2.0, 'any': 1.0, 'to': 6.0, 'place': 1.0, 'the': 3.0, 'asleep': 1.0, 'get': 2.0, 'play': 1.0, 'and': 1.0, 'daughter': 1.0, 'attached': 1.0, 'take': 1.0, 't': 2.0, 's': 1.0, 'a': 5.0, 'hoping': 1.0, 'in': 3.0, 'falling': 1.0, 'also': 1.0, 'truly': 1.0, 'it': 3.0, 'she': 1.0, 'table': 1.0, 'know': 1.0, 'sleeping': 1.0, 'like': 1.0}
Word element => {'heartbeat': 1.0, 'one': 1.0, 'buy': 1.0, 'definatly': 1.0, 'snug': 1.0, 'keep': 1.0, 'options': 1.0, 'comfort': 1.0, 'plenty': 1.0, 'are': 1.0, 'there': 1.0, 'wothout': 1.0, 'even': 1.0, 'of': 1.0, 'sable': 1.0, 'mercury': 1.0, 'another': 1.0, 'my': 1.0, 'into': 1.0, 'would': 1.0, 'super': 1.0, 'baby': 2.0, 'safer': 1.0, 'farther': 1.0, 'limits': 1.0, 'not': 1.0, 'self': 1.0, 'comfy': 1.0, 'and': 7.0, 'nice': 3.0, 'do': 2.0, 'harness': 1.0, 'weight': 1.0, 'it': 1.0, 'carry': 1.0, 'some': 1.0, 'is': 4.0, 'in': 1.0, 'regular': 1.0, 'best': 1.0, 'graco': 2.0, 'stylish': 1.0, 'this': 2.0, 'grip': 1.0, 'than': 1.0, 'snugseat': 1.0, 'infant': 1.0, 'tangle': 1.0, 'seats': 1.0, 'handle': 1.0, 'so': 1.0, 'straps': 1.0, 'get': 2.0, 'easy': 2.0, 'seat': 4.0, 'to': 3.0, 'up': 1.0, 'latch': 1.0, 'yet': 1.0, 'or': 1.0, 'twisted': 1.0, 'like': 1.0, 'warm': 1.0, 'brand': 1.0, 'with': 1.0, 'piece': 1.0, 'other': 1.0, 'chest': 1.0, 'ensure': 1.0, 'height': 1.0, 'clip': 1.0, 'we': 1.0, 'go': 1.0, 'a': 4.0, 'little': 1.0, 'the': 7.0, 'heavier': 1.0, '2': 1.0, 'but': 1.0}
Word element => {'best': 1.0, 'end': 1.0, 'look': 1.0, 'last': 1.0, 'would': 1.0, 'something': 1.0, 'china': 1.0, 'made': 2.0, 'correctly': 1.0, 'line': 1.0, 'higher': 1.0, 'arrive': 1.0, 'up': 1.0, 'don': 2.0, 'product': 1.0, 'cheap': 1.0, 'for': 2.0, 'pay': 1.0, 'what': 1.0, 'you': 5.0, 'alright': 1.0, 'comfort': 1.0, 'screws': 1.0, 'them': 1.0, 'they': 1.0, 'want': 1.0, 'if': 3.0, '15': 1.0, 'significantly': 1.0, 'by': 1.0, 'just': 1.0, 'large': 1.0, 'experience': 1.0, 'into': 1.0, 'that': 4.0, 'box': 1.0, 'so': 1.0, 'chair': 5.0, 'then': 1.0, 'far': 2.0, 'manufacturer': 1.0, 'hold': 1.0, '30': 1.0, 'this': 2.0, 'mind': 1.0, 'with': 2.0, 'have': 2.0, 'but': 1.0, 'parts': 1.0, 'were': 1.0, 'pieces': 1.0, 'in': 4.0, 'is': 4.0, 'several': 1.0, 'received': 1.0, 'separating': 1.0, 'days': 1.0, 'lemon': 1.0, 't': 2.0, 'a': 3.0, 'basically': 1.0, 'the': 6.0, 'built': 1.0, 'damaged': 2.0, 'another': 1.0, 'may': 2.0, 'company': 1.0, 'my': 1.0, 'maybe': 1.0, 'dents': 1.0, 'and': 3.0, 'dutalier': 1.0, 'poor': 1.0, 'get': 2.0, 'deep': 1.0, 'wood': 1.0, 'long': 1.0, 'scratches': 1.0, 'one': 1.0, 'of': 1.0, 'cushions': 1.0, 'as': 2.0, 'to': 2.0, 'at': 1.0, 'sturdy': 1.0, 'spent': 1.0, 'etc': 1.0, 'i': 3.0, 'seams': 1.0, 'remember': 1.0, '20': 1.0, 'was': 2.0, 'minutes': 1.0, 'on': 1.0, 'gliders': 1.0, 'replacement': 1.0}
Word element => {'spent': 1.0, 'well': 1.0, 'money': 1.0, 'loves': 1.0, 'of': 1.0, 'sturdy': 1.0, 'it': 4.0, 'this': 1.0, 'he': 1.0, 'christmas': 1.0, 'bought': 1.0, 'is': 1.0, 'and': 2.0, 'son': 1.0, 'very': 1.0, 'my': 1.0, 'the': 1.0, 'i': 1.0, 'cats': 1.0, 'construction': 1.0, 'all': 1.0, 'lazy': 1.0, 'love': 2.0, 'for': 2.0, 'comfortable': 1.0}
Word element => {'well': 1.0, 'sell': 1.0, 'charge': 1.0, 'how': 1.0, 'see': 1.0, 'sells': 1.0, 'for': 1.0, 'exact': 1.0, 'glider': 2.0, 'wow': 1.0, 'i': 2.0, 'rip': 1.0, 'much': 1.0, 'about': 1.0, 'don': 1.0, 'price': 1.0, 'gliders': 2.0, 'they': 3.0, 'a': 1.0, 't': 2.0, 'the': 2.0, 'even': 1.0, 'wouldn': 1.0, 'it': 1.0, '160': 1.0, 'off': 1.0, 'doubling': 1.0, 'can': 1.0, 'babiesrus': 2.0, 'but': 1.0, 'talk': 1.0, 'recommend': 1.0, 'with': 1.0, 'buying': 1.0, 'at': 1.0, 'because': 1.0, 'same': 1.0, 'if': 1.0, 'are': 2.0, 'of': 1.0, 'metal': 1.0, 'then': 1.0, 'this': 3.0, 'doing': 1.0, 'probably': 1.0, 'as': 1.0, 'any': 1.0, 'all': 1.0, 'target': 1.0, 'other': 1.0}
Word element => {'last': 1.0, 'expected': 1.0, 'fell': 1.0, 'replace': 1.0, 'lived': 1.0, 'days': 1.0, 'snaped': 1.0, 'concets': 1.0, '1': 1.0, 'over': 1.0, 'to': 6.0, 'down': 1.0, '8': 1.0, 'easy': 2.0, 'so': 3.0, 'wipe': 1.0, 'baby': 1.0, 'started': 1.0, 'was': 6.0, 'help': 1.0, 'longer': 1.0, 'the': 14.0, 'loved': 1.0, 'differnet': 1.0, 'rock': 1.0, 'also': 2.0, 'but': 1.0, 'then': 1.0, 'we': 5.0, 'a': 5.0, 'sides': 1.0, 's': 1.0, 'for': 2.0, 'fabric': 1.0, 'backs': 1.0, 'years': 1.0, 'comfortable': 1.0, 'replaced': 2.0, 'right': 1.0, 'it': 16.0, 'glider': 1.0, 'recline': 1.0, 'few': 1.0, 'this': 1.0, 'perfect': 1.0, 'spent': 1.0, 'some': 2.0, 'clean': 1.0, 'support': 1.0, 'amount': 1.0, 'on': 3.0, 'think': 1.0, 'there': 3.0, 'owned': 1.0, '5': 1.0, 'remember': 1.0, 'armrest': 1.0, 'squeaked': 1.0, 'didn': 1.0, 'got': 1.0, 'just': 2.0, 'were': 3.0, 'and': 1.0, 'actually': 1.0, 'yes': 1.0, 'hated': 1.0, 'pockets': 1.0, 'with': 2.0, 'space': 1.0, 'height': 1.0, 'wd': 1.0, 'chair': 3.0, 'weight': 1.0, 'swivle': 1.0, 'my': 1.0, 'post': 2.0, 'wobbly': 1.0, 'very': 1.0, 'did': 1.0, 'minuses': 1.0, 'not': 1.0, 'like': 1.0, 'draw': 1.0, 'how': 2.0, 'put': 1.0, 'much': 2.0, 'that': 2.0, 'took': 1.0, 'base': 2.0, 'after': 1.0, 'at': 1.0, 'is': 2.0, 'moved': 1.0, 'months': 1.0, 'as': 1.0, 'squeaking': 2.0, 'well': 1.0, 'i': 9.0, 'broke': 1.0, 'apart': 1.0, 'huge': 1.0, 'matter': 1.0, '40': 1.0, 'if': 1.0, 'pluses': 2.0, 'awesome': 1.0, 'about': 1.0, 'up': 1.0, 'major': 1.0, '7': 1.0, 't': 1.0, 'kicker': 1.0, 'when': 2.0}
Word element => {'soon': 1.0, 's': 1.0, 'sleep': 1.0, 'to': 2.0, 'can': 1.0, 'there': 1.0, 'easy': 1.0, 'baby': 1.0, 'price': 1.0, 'in': 1.0, 'went': 1.0, 't': 1.0, 'great': 2.0, 'the': 2.0, 'a': 1.0, 'wait': 1.0, 'room': 1.0, 'together': 1.0, 'he': 1.0, 'it': 1.0, 'this': 2.0, 'and': 1.0, 'very': 1.0, 'for': 2.0, 'comfortable': 1.0, 'we': 1.0, 'rock': 1.0, 'product': 1.0, 'bought': 1.0, 'our': 1.0, 'new': 1.0, 'due': 1.0, 'babies': 1.0, 'is': 2.0, 'looks': 1.0}
Word element => {'really': 1.0, 'off': 1.0, 'important': 1.0, 'right': 1.0, 'because': 1.0, 'of': 1.0, 'easier': 1.0, 'thought': 1.0, 'buy': 1.0, 'blue': 1.0, 'recover': 1.0, 'planning': 1.0, 'fabric': 1.0, 'else': 1.0, 'attach': 1.0, 'take': 1.0, 'staples': 1.0, 'you': 2.0, 'something': 1.0, 'would': 2.0, 'how': 1.0, 'states': 1.0, 'wasn': 1.0, 'out': 1.0, 'feet': 1.0, 'make': 1.0, 'put': 1.0, 'still': 2.0, 'glider': 1.0, 'to': 5.0, 'do': 1.0, 'only': 1.0, 'its': 1.0, 'was': 4.0, 't': 2.0, 's': 4.0, 'deal': 1.0, 'the': 9.0, 'big': 1.0, 'great': 1.0, 'around': 1.0, 'is': 5.0, 'price': 2.0, 'my': 2.0, 'another': 1.0, 'in': 1.0, 'true': 1.0, 'this': 5.0, 'it': 4.0, 'with': 1.0, 'while': 1.0, 'if': 2.0, 'being': 1.0, 'but': 1.0, 'work': 1.0, 'removable': 3.0, 'sitting': 1.0, 'and': 6.0, 'simply': 1.0, 'so': 1.0, 'however': 1.0, 'taking': 1.0, 'recliner': 1.0, 'able': 2.0, 'have': 1.0, 'working': 1.0, 'far': 1.0, 'ottoman': 4.0, 'rock': 1.0, 'for': 1.0, 'product': 1.0, 'that': 3.0, 'cushion': 6.0, 'don': 1.0, 'up': 1.0, 'washable': 1.0, 'not': 2.0, 'feature': 2.0, 'i': 4.0, 'attached': 1.0, 'velcro': 1.0, 'assumed': 1.0}
Word element => {'fit': 1.0, 'people': 1.0, 'big': 1.0, 'hurry': 1.0, 'glide': 1.0, 'out': 2.0, 'find': 2.0, 'll': 1.0, 'room': 1.0, 'baby': 1.0, 'bulb': 1.0, 'by': 1.0, 'light': 1.0, 'tempted': 1.0, 'be': 1.0, 'how': 1.0, 'slider': 1.0, 'change': 1.0, 'but': 1.0, 'back': 1.0, 'got': 1.0, 'to': 1.0, 'all': 1.0, 'her': 2.0, 'in': 3.0, 'cribs': 1.0, 'smooth': 1.0, 'gliding': 1.0, 'wife': 1.0, 'standing': 1.0, 'what': 2.0, 'had': 2.0, 'was': 2.0, 'you': 1.0, 'when': 1.0, 'advice': 1.0, 'bought': 1.0, 'one': 2.0, 'police': 1.0, 'she': 1.0, 'it': 3.0, 'my': 1.0, 'the': 8.0, 'car': 3.0, 'chair': 1.0, 'original': 1.0, 'so': 2.0, 'a': 2.0, 't': 2.0, 's': 4.0, 'we': 2.0, 'rocker': 1.0, 'gone': 1.0, 'of': 1.0, 'into': 1.0, 'that': 3.0, 'stolen': 1.0, 'were': 1.0, 'they': 1.0, 'odd': 1.0, 'ottoman': 1.0, 'took': 1.0, 'little': 1.0, 'very': 2.0, 'knew': 1.0, 'getting': 1.0, 'and': 2.0, 'is': 2.0, 'with': 1.0, 'piece': 1.0, 'on': 2.0, 'slick': 1.0, 'don': 2.0}
Word element => {'really': 1.0, 'looks': 1.0, 'colors': 1.0, 'bright': 1.0, 'nice': 2.0, 'her': 2.0, 'keeps': 1.0, 'and': 2.0, 'notices': 1.0, '3': 1.0, 'in': 1.0, 'newborn': 1.0, 'now': 1.0, 'to': 2.0, 'pay': 1.0, 'months': 2.0, 'over': 1.0, 'changing': 1.0, 'room': 1.0, 'mobile': 1.0, 'got': 2.0, 'it': 4.0, 'this': 1.0, 'entertained': 1.0, 'hang': 1.0, 'we': 1.0, 'she': 3.0, 'table': 1.0, 'once': 1.0, 'at': 1.0, 'not': 1.0, '2': 1.0, 'did': 1.0, 's': 2.0, 'attention': 1.0, 'our': 1.0, 'hit': 1.0}
Word element => {'friends': 1.0, 'mom': 1.0, 'time': 1.0, 'my': 1.0, 'all': 1.0, 'for': 1.0, 'swaddle': 1.0, 'large': 1.0, 'to': 1.0, 'are': 1.0, 'blankets': 2.0, 'receiving': 1.0, 'enough': 1.0, 'the': 3.0, 'these': 2.0, 'a': 1.0, 'baby': 2.0, 'swaddledesigns': 1.0, 'than': 1.0, '2mo': 1.0, 'i': 1.0, 'buy': 1.0, 'first': 1.0, 'older': 1.0, 'only': 1.0, 'with': 1.0, 'on': 1.0, 'happiest': 1.0, 'block': 1.0, 'book': 1.0}
Word element => {'for': 1.0, 'not': 1.0, 'definitely': 1.0, 'use': 1.0, 'way': 1.0, 'have': 1.0, 'll': 1.0, 'so': 1.0, 'big': 1.0, 'good': 1.0, 'is': 1.0, 'size': 1.0, 'hard': 1.0, 'put': 1.0, 'think': 2.0, 'which': 1.0, 'aden': 1.0, 'used': 1.0, 'find': 1.0, 'anais': 1.0, 'maybe': 1.0, 'didn': 1.0, 'washing': 1.0, 'get': 1.0, 'very': 4.0, 'fashionable': 1.0, 'it': 5.0, 'swaddling': 1.0, 'soft': 1.0, 'this': 3.0, 'first': 1.0, 'thought': 2.0, 'cheetah': 1.0, 'when': 3.0, 'i': 10.0, 'some': 1.0, 'receiving': 1.0, 'cool': 2.0, 'bought': 1.0, 'be': 1.0, 'swaddle': 3.0, 'too': 1.0, 'and': 3.0, 'pattern': 1.0, 'smell': 1.0, 'wrap': 1.0, 'the': 7.0, 'are': 1.0, 'blanket': 3.0, 'after': 1.0, 'package': 1.0, 'm': 1.0, 'd': 1.0, 'c': 1.0, 'of': 2.0, 'there': 1.0, 'b': 1.0, 'my': 3.0, 'baby': 3.0, 'in': 2.0, 'disappointed': 1.0, 'out': 1.0, 'blankets': 1.0, 'but': 3.0, 'opened': 1.0, 'was': 3.0, 'rough': 1.0, 'to': 7.0, 'quite': 1.0, 'touch': 2.0, 'design': 1.0, 'plasticky': 1.0, 'thick': 1.0, 't': 1.0, 'going': 1.0, 'a': 1.0, 'might': 1.0, 'better': 1.0}
Word element => {'had': 1.0, 'enough': 1.0, 'recommend': 1.0, '5': 1.0, 'swaddled': 1.0, 'longer': 1.0, 'no': 1.0, 'over': 1.0, 'baby': 1.0, 'important': 1.0, 'really': 1.0, 'compared': 1.0, 'head': 1.0, 'that': 2.0, 'when': 1.0, 'you': 1.0, 'tell': 1.0, 'blankets': 2.0, 'most': 1.0, 'can': 1.0, 'huge': 1.0, 'months': 1.0, 'your': 1.0, 'on': 1.0, '22': 1.0, 'first': 1.0, 'wish': 1.0, 'soft': 1.0, 'this': 3.0, 'pack': 1.0, 'only': 1.0, 'month': 1.0, 'it': 3.0, 'now': 1.0, 'fall': 1.0, 'is': 7.0, 'old': 2.0, 'i': 5.0, 'he': 2.0, 'received': 1.0, 'for': 5.0, 'cannot': 1.0, 'which': 1.0, 'using': 1.0, 'birth': 1.0, 'we': 1.0, 'a': 4.0, 'gift': 1.0, 'son': 1.0, 'still': 1.0, 'of': 1.0, 'place': 1.0, 'the': 4.0, 'lightweight': 1.0, 'my': 1.0, 'rides': 1.0, 'receiving': 3.0, 'normal': 1.0, 'blanket': 3.0, 'lay': 3.0, 'to': 4.0, 'as': 2.0, 'any': 1.0, 'everything': 1.0, 'use': 1.0, 'stroller': 1.0, 'in': 3.0, 'out': 1.0, 'n': 1.0, 'picnics': 1.0, 'stays': 1.0, 'great': 1.0, 'grass': 1.0, 'play': 1.0, 'and': 1.0, 'his': 2.0}
Word element => {'know': 1.0, 'of': 1.0, 'tranitions': 1.0, 'it': 2.0, 'with': 1.0, 'the': 2.0, 'when': 1.0, 'i': 3.0, 'have': 2.0, 'fabric': 1.0, 'they': 2.0, 'used': 1.0, 'best': 1.0, 'both': 1.0, 'swaddle': 2.0, 'designs': 1.0, 'blankets': 1.0, 'multiple': 1.0, 'funtional': 1.0, 'my': 1.0, 'for': 2.0, 'very': 2.0, 'little': 1.0, 'give': 1.0, 'then': 1.0, 'all': 1.0, 'to': 2.0, 'a': 4.0, 'well': 1.0, 'are': 1.0, 'blanket': 3.0, 'great': 1.0, 'nice': 1.0, 'material': 1.0, 'babies': 1.0, 'been': 1.0, 'that': 1.0, 'is': 2.0, 'holds': 1.0, 'also': 1.0, 'swaddler': 1.0, 'light': 1.0, 'this': 1.0, 'soft': 1.0, 'uses': 1.0, 'new': 1.0, 'and': 4.0, 'moms': 1.0}
Word element => {'well': 1.0, 'nice': 1.0, 'looks': 1.0, 'lot': 1.0, 'a': 1.0, 'likes': 1.0, 'it': 3.0, 'as': 1.0, 'very': 1.0, 'is': 1.0, 'pretty': 1.0, 'good': 1.0, 'product': 1.0, 'soft': 1.0, 'baby': 1.0, 'my': 1.0, 'for': 1.0, 'wife': 1.0}
Word element => {'blanket': 1.0, 'security': 1.0, 'use': 1.0, 'soft': 1.0, 't': 1.0, 'daughter': 1.0, 'i': 1.0, 'is': 2.0, 'type': 1.0, 'my': 2.0, 'make': 1.0, 'as': 2.0, 'son': 1.0, 'pink': 1.0, 'a': 2.0, 'another': 1.0, 'brown': 1.0, 'to': 1.0, 'have': 1.0, 'durable': 1.0, 'it': 1.0, 'this': 3.0, 'isn': 1.0, 'they': 2.0, 'for': 2.0, 'one': 3.0, 'love': 1.0, 'sure': 1.0, 'and': 1.0, 'get': 1.0, 'fairly': 1.0, 'there': 1.0, 'their': 1.0, 'that': 1.0}
Word element => {'best': 1.0, 'honestly': 1.0, 'over': 1.0, 'given': 1.0, 'gift': 1.0, 'great': 1.0, 'recommend': 1.0, 'week': 1.0, 'once': 1.0, 'probably': 2.0, 'girl': 1.0, 'come': 1.0, 'paws': 1.0, 'back': 1.0, 'most': 1.0, 'material': 1.0, 'only': 1.0, 'away': 1.0, 'car': 1.0, 'in': 1.0, 'on': 3.0, 'loose': 1.0, 'often': 1.0, 'places': 1.0, 'public': 1.0, 'gifts': 2.0, 'or': 2.0, 'day': 1.0, 'problem': 1.0, 'during': 1.0, 'appliqued': 1.0, 'carry': 1.0, 'don': 1.0, 'night': 1.0, 'security': 1.0, 'really': 1.0, 'months': 1.0, 'bought': 2.0, '6': 1.0, 'he': 4.0, 'until': 1.0, 'take': 2.0, 'we': 9.0, 'a': 8.0, 't': 3.0, 'could': 1.0, 'mostly': 1.0, 'wow': 1.0, 'so': 1.0, 'didn': 1.0, 'got': 2.0, 'one': 1.0, '2nd': 1.0, 'little': 1.0, 'even': 1.0, 'hit': 1.0, 'be': 2.0, 'several': 1.0, 'cozy': 2.0, 'sift': 1.0, 'second': 1.0, 'about': 1.0, 'baby': 1.0, 'has': 1.0, 'trips': 1.0, 'them': 8.0, 'had': 3.0, 'boy': 2.0, 'would': 2.0, 'either': 1.0, 'was': 4.0, 'from': 1.0, 'daycare': 1.0, 'my': 4.0, 'gund': 1.0, 'uninformed': 1.0, 'god': 1.0, 'for': 5.0, 'lamb': 2.0, 'comfy': 2.0, 'but': 3.0, '2': 2.0, 'fact': 1.0, 'old': 2.0, 'i': 8.0, '4': 1.0, 'attached': 1.0, 'what': 1.0, 'when': 3.0, 'child': 1.0, 'wasn': 1.0, 'nor': 1.0, 'him': 2.0, 'it': 10.0, 'wash': 1.0, 'use': 1.0, 'with': 5.0, 'sure': 1.0, 'to': 7.0, 'as': 3.0, 'sewn': 1.0, 'item': 2.0, 'our': 2.0, 'anyone': 1.0, 'and': 7.0, 'if': 1.0, 'still': 1.0, 'son': 2.0, 'sleeps': 1.0, 'is': 5.0, 'at': 4.0, '1st': 1.0, 'almost': 1.0, 'around': 1.0, 'his': 1.0, 'children': 1.0, 'least': 1.0, 'cuddly': 1.0, 'gotten': 1.0, 'let': 2.0, 'years': 2.0, 'attribute': 1.0, 'have': 5.0, 'dogs': 1.0, 'that': 4.0, 'loves': 1.0, '5': 1.0, 'nap': 1.0, 'worked': 1.0, 'shower': 1.0, 'wonderfully': 1.0, 'due': 1.0, 'born': 1.0, 'much': 1.0, 'never': 1.0, 'they': 1.0, 'sleeping': 2.0, 'past': 1.0, 'issues': 1.0, 'home': 1.0, 'by': 1.0, 'of': 4.0, 'the': 10.0, 'grace': 1.0, 'received': 1.0, 'also': 1.0, 'few': 1.0, 'godsends': 1.0, 'this': 3.0, 'partly': 2.0, 'are': 2.0, 'boys': 1.0, 'first': 1.0, 'cute': 1.0}
Word element => {'completely': 1.0, 'go': 1.0, 'much': 1.0, 'prepared': 1.0, 'be': 1.0, 'but': 1.0, 'for': 1.0, 'love': 1.0, 'and': 1.0, 'pacifier': 1.0, 'contact': 1.0, 'like': 1.0, 'with': 1.0, 'it': 2.0, 'clear': 2.0, 'if': 2.0, 'your': 1.0, 'kids': 1.0, 'when': 1.0, 'except': 1.0, 'frustration': 1.0, 'find': 2.0, 'drops': 1.0, 'is': 2.0, 'the': 3.0, 'great': 2.0, 't': 1.0, 'these': 1.0, 'impossible': 1.0, 'lense': 1.0, 'dropped': 1.0, 'to': 2.0, 'versions': 1.0, 'don': 1.0, 'child': 1.0, 'them': 2.0, 'are': 1.0, 'actually': 1.0, 'fall': 1.0, 'trying': 1.0, 'you': 2.0, 's': 1.0, 'a': 1.0, 'see': 1.0}
Word element => {'money': 1.0, 'your': 1.0, 'worth': 1.0, 'definitely': 1.0, 're': 1.0, 'love': 2.0, 'touch': 1.0, 'other': 1.0, 'the': 3.0, 'these': 2.0, 'nipple': 1.0, 'i': 1.0, 'mess': 1.0, 'baby': 1.0, 'about': 1.0, 'type': 1.0, 'is': 1.0, 'and': 1.0, 'daughter': 1.0, 'by': 1.0, 'they': 3.0, 'fact': 1.0, 'my': 1.0, 'are': 1.0, 'that': 1.0, 'were': 1.0, 'collapsible': 1.0, 'won': 1.0, 'best': 1.0, 'created': 1.0, 'orthodontists': 1.0, 'not': 1.0, 'was': 1.0, 'engineered': 1.0, 'of': 1.0, 'binky': 1.0, 'up': 1.0, 'child': 1.0, 'we': 1.0, 't': 1.0, 'a': 2.0, 's': 1.0, 'teeth': 1.0, 'in': 1.0, 'any': 1.0, 'as': 1.0, 'to': 1.0, 'grow': 1.0, 'she': 1.0, 'it': 1.0, 'own': 1.0, '10': 1.0}
Word element => {'lansinoh': 1.0, 'bottle': 1.0, 'into': 1.0, 'sometimes': 1.0, 'eating': 1.0, 'now': 1.0, 'need': 1.0, 'point': 1.0, 'you': 1.0, 'ounce': 1.0, 'would': 1.0, 'effort': 1.0, 'might': 1.0, 'maybe': 1.0, 's': 1.0, 'much': 1.0, 'put': 1.0, 'do': 1.0, 'but': 2.0, 'tops': 1.0, '4oz': 2.0, 'big': 1.0, 'one': 1.0, 'too': 1.0, 'full': 1.0, 'were': 2.0, 'them': 1.0, 'got': 1.0, 'first': 1.0, 'better': 1.0, 'standard': 1.0, 'neck': 1.0, 'noted': 1.0, 'thought': 1.0, 'it': 2.0, 'knocked': 1.0, 'getting': 1.0, 'no': 1.0, 'there': 1.0, 'wider': 1.0, 'securely': 1.0, 'wearing': 1.0, 'slightly': 2.0, 'without': 1.0, 'never': 1.0, 'son': 2.0, 'fridge': 1.0, 'by': 1.0, 'bottles': 10.0, 'keep': 1.0, 'to': 14.0, 'probably': 1.0, 'any': 1.0, 'than': 2.0, 'way': 2.0, 'little': 1.0, 'nice': 1.0, 'out': 1.0, 'rack': 1.0, 'very': 3.0, 'really': 1.0, 'hatred': 1.0, 'feeding': 3.0, 've': 1.0, 'down': 2.0, 'they': 3.0, 'cut': 1.0, 'for': 2.0, 'browns': 2.0, 'don': 2.0, 'despite': 1.0, 'about': 1.0, 'straw': 1.0, 'onto': 3.0, 'in': 3.0, 'm': 1.0, 'purchase': 1.0, 'whatever': 1.0, 'pump': 4.0, 'day': 1.0, 'collar': 1.0, 'fulltime': 1.0, 'pumping': 3.0, 'if': 1.0, 'sideways': 1.0, 'every': 1.0, 'organized': 1.0, 'and': 7.0, 'medela': 2.0, 'special': 1.0, 'work': 1.0, 'so': 3.0, 'can': 2.0, 'most': 1.0, 'sitting': 1.0, 'i': 17.0, 'mid': 1.0, 'my': 7.0, 'fact': 1.0, 'll': 1.0, 'right': 1.0, 'screw': 1.0, 'have': 2.0, 'on': 3.0, 'dr': 2.0, 'with': 1.0, 'a': 6.0, 'at': 2.0, 'snug': 1.0, 'is': 4.0, 'of': 7.0, 'vent': 1.0, 'the': 18.0, 'least': 1.0, 'hands': 2.0, 'these': 5.0, 'nipple': 1.0, 'had': 1.0, 'leaks': 1.0, 'also': 2.0, 'like': 2.0, 'should': 1.0, 'array': 1.0, 'that': 3.0, 'comfortable': 1.0, 'worry': 2.0, 'more': 4.0, 'husband': 1.0, 'storage': 4.0, 'shape': 1.0, 'not': 1.0, 'where': 1.0, 'come': 1.0, 'grabbing': 1.0, 'seems': 1.0, 'off': 1.0, 'tried': 1.0, 'larger': 1.0, 'purchased': 1.0, 'oldest': 1.0, 'when': 3.0, 'away': 1.0, 'want': 1.0, 'free': 2.0, 'he': 1.0, 'knows': 1.0, 'due': 2.0, 'milk': 3.0, 'just': 2.0, 'take': 2.0, 'contraption': 1.0, 'front': 1.0, 'threading': 1.0, 'as': 1.0, 'bags': 1.0, 'ever': 1.0, 'fits': 1.0, 'all': 1.0, 'an': 2.0, 'even': 1.0, 'feed': 1.0, 'instead': 2.0, 'found': 2.0, 'be': 3.0, 'size': 1.0, 'opt': 1.0, 'fit': 3.0, 't': 2.0, 'rest': 1.0, 'get': 2.0, 'legs': 1.0, 'effectively': 1.0}
Word element => {'being': 1.0, 'sides': 1.0, 'sticking': 1.0, 'about': 1.0, 'something': 1.0, 'store': 1.0, 'better': 1.0, 'bought': 1.0, 'nutrients': 1.0, 'nicely': 1.0, 'pump': 1.0, 'yours': 1.0, 'way': 1.0, 'think': 1.0, 'like': 1.0, 'invested': 1.0, 'glad': 1.0, 'am': 2.0, 'worth': 1.0, 'bottles': 3.0, 'by': 1.0, 'few': 1.0, 'we': 1.0, 'a': 1.0, 'with': 1.0, 'it': 8.0, 'however': 1.0, 'came': 1.0, 'the': 11.0, 'price': 1.0, 'baby': 1.0, 'ameda': 2.0, 'helps': 2.0, 'high': 1.0, 'than': 1.0, 'because': 1.0, 'does': 2.0, 'bags': 2.0, 'part': 1.0, 'i': 6.0, 'seem': 1.0, 'read': 1.0, 'very': 1.0, 'to': 3.0, 'as': 1.0, 'fit': 2.0, 'for': 1.0, 'lost': 1.0, 'this': 2.0, 'wish': 1.0, 'and': 5.0, 'milk': 2.0, 'in': 3.0, 'now': 1.0, 'that': 2.0, 'order': 1.0, 'working': 1.0, 'more': 1.0, 'is': 3.0, 'hubby': 1.0, 'really': 1.0, 'of': 3.0, 'time': 1.0, 'keep': 1.0, 'gold': 1.0, 'care': 1.0, 'anything': 1.0, 'purely': 1.0, 'taking': 1.0, 'us': 1.0, 'not': 1.0, 'waste': 1.0, 'white': 1.0}
Word element => {'though': 1.0, 'little': 1.0, 'purchase': 1.0, 'things': 1.0, 'there': 1.0, 'more': 1.0, 'lots': 2.0, 'had': 1.0, 'still': 1.0, 'these': 1.0, 'lot': 1.0, 'need': 1.0, 'supply': 1.0, 'have': 1.0, 'it': 1.0, 'truly': 1.0, 'them': 2.0, 'well': 1.0, 'encountered': 1.0, 'that': 1.0, 'breastfeeding': 1.0, 'probably': 1.0, 'system': 2.0, 'problems': 1.0, 'leakage': 1.0, 'extremely': 1.0, 'bought': 1.0, 'this': 1.0, 'only': 1.0, 'than': 1.0, 'w': 2.0, 'buy': 1.0, 'day': 1.0, 'extra': 1.0, 'large': 1.0, 'few': 1.0, 'used': 1.0, 'sets': 1.0, 'warp': 1.0, 'after': 1.0, 'earlier': 1.0, 'of': 3.0, 'up': 1.0, 'or': 1.0, 'bottles': 6.0, 'freeze': 1.0, 'from': 1.0, 'while': 2.0, 'bags': 1.0, 'marketed': 1.0, 'typically': 1.0, 'as': 3.0, 'to': 3.0, 'they': 2.0, 'improve': 1.0, 'are': 3.0, '5': 3.0, 'would': 2.0, 'oz': 2.0, 'going': 1.0, 'a': 5.0, 'go': 2.0, 'frustrated': 1.0, 'hold': 1.0, 'the': 4.0, '2': 1.0, 'ozs': 2.0, 'markings': 1.0, 'i': 6.0, 'two': 1.0, '4': 1.0, 'bottle': 1.0, 'and': 4.0, '10': 1.0, 'being': 1.0, 'if': 2.0, 'again': 1.0, 'you': 3.0, 'though1': 1.0, 'on': 2.0, 'put': 1.0, 'in': 1.0}
Word element => {'rack': 1.0, 'all': 1.0, 'too': 1.0, 'pump': 1.0, 'with': 1.0, 'cooler': 1.0, 'little': 1.0, 'the': 2.0, 'my': 1.0, 'product': 1.0, 'in': 1.0, 'for': 1.0, 'storing': 1.0, 'milk': 1.0, 'i': 2.0, 'love': 2.0, 'great': 1.0, 'can': 1.0, 'this': 1.0, 'fit': 1.0, 'them': 1.0}
Word element => {'more': 1.0, 'probably': 1.0, 'will': 1.0, 'other': 1.0, 'ordering': 1.0, 'fridge': 1.0, 'considerably': 1.0, 'take': 1.0, 'quality': 1.0, 'high': 1.0, 'overall': 1.0, 'extra': 1.0, 'few': 1.0, 'takes': 1.0, 'end': 1.0, 'only': 1.0, 'big': 1.0, 'really': 1.0, 'not': 1.0, 'medela': 1.0, 'but': 1.0, 'harder': 2.0, 'so': 1.0, 'have': 3.0, 'due': 1.0, 'wonderful': 2.0, 'plastic': 1.0, 'deal': 1.0, 'the': 4.0, 'these': 2.0, 'less': 1.0, 'seconds': 1.0, 'made': 1.0, 'out': 1.0, 'are': 3.0, 'i': 4.0, 'than': 2.0, 'my': 1.0, 'exclusively': 1.0, 'milk': 1.0, 'and': 4.0, 'scrub': 2.0, 'pump': 1.0, 'store': 1.0, 'space': 1.0, 'lot': 1.0, 're': 1.0, 'product': 1.0, 'closure': 1.0, 'of': 2.0, 'up': 3.0, 'leak': 1.0, 'perfectly': 1.0, 'bottom': 1.0, 'or': 1.0, 'bottles': 2.0, 'held': 1.0, 'in': 2.0, 'dishwasher': 1.0, 'seal': 1.0, 'they': 3.0, 'double': 1.0, 'a': 8.0, 's': 1.0, 'never': 1.0, 'had': 1.0, 'as': 1.0, 'to': 3.0, 'bags': 1.0, 'from': 1.0, 'little': 1.0, 'raised': 1.0, 'sections': 1.0, 'on': 1.0, 'it': 2.0}
Word element => {'times': 1.0, 'sterilizing': 1.0, 'clean': 1.0, 'just': 1.0, 'awesome': 1.0, 'keep': 1.0, 'will': 1.0, 'thus': 1.0, 'more': 1.0, 'air': 1.0, 'soapy': 1.0, 'hot': 1.0, 'cleaning': 1.0, 'without': 1.0, 'days': 1.0, 'from': 1.0, 'tap': 1.0, 'when': 1.0, 'concept': 1.0, 'outdated': 1.0, 'is': 3.0, 'non': 1.0, 'learned': 1.0, 'research': 1.0, 'medieval': 1.0, 'but': 3.0, 'some': 1.0, 'these': 2.0, 'email': 1.0, 'lid': 1.0, 'an': 1.0, 'fits': 1.0, 'may': 2.0, 'on': 1.0, 'dr': 1.0, 'them': 1.0, 'recommendation': 1.0, 'system': 2.0, 'trusted': 1.0, 'many': 1.0, 'via': 1.0, 'drying': 1.0, 'as': 2.0, 'au': 1.0, 'pediatrics': 2.0, 'to': 4.0, 'pink': 1.0, 'with': 3.0, 'academy': 2.0, 'than': 2.0, 'white': 1.0, 'except': 1.0, 'lids': 1.0, 'company': 2.0, 'only': 1.0, 'reasoning': 1.0, 'pictures': 1.0, 'of': 6.0, 'doing': 1.0, 'the': 6.0, 'adequate': 1.0, 'properly': 1.0, 'seeing': 1.0, 'and': 3.0, 'recommended': 2.0, 'was': 3.0, 'after': 2.0, 'that': 3.0, 'accurate': 1.0, 'have': 1.0, 'practice': 1.0, 'water': 3.0, 'takes': 1.0, 'right': 1.0, 'this': 3.0, 'highly': 1.0, 'storage': 2.0, 'existent': 1.0, 'it': 1.0, 'rather': 1.0, 'like': 2.0, 'bought': 1.0, 'sterilize': 1.0, 'then': 1.0, 'reviews': 1.0, 'back': 1.0, 'directly': 1.0, 'cause': 1.0, 'working': 1.0, 'are': 3.0, 'us': 1.0, 'any': 1.0, 'mom': 1.0, 's': 3.0, 'a': 3.0, 'blog': 1.0, 'michelle': 1.0, 'style': 1.0, 'lot': 1.0, 'precious': 1.0, 'mentioned': 1.0, 'using': 1.0, 'president': 1.0, 'if': 2.0, 'done': 1.0, 'no': 1.0, 'today': 1.0, 'leakage': 1.0, 'perfectly': 1.0, 'medela': 1.0, 'per': 3.0, 'in': 3.0, 'bacteria': 1.0, 'breastmilk': 1.0, 'method': 1.0, 'pump': 1.0, 'american': 2.0, 'pieces': 1.0, 'you': 2.0, 'microwave': 3.0, 'sterilizers': 1.0, 'be': 4.0, 'our': 1.0, 'screwing': 1.0, 'disappointed': 1.0, 'by': 1.0, 'bottles': 3.0, 'not': 2.0, 'boiled': 1.0, 'used': 1.0, 'sterilization': 3.0, 'i': 3.0, 'confirmed': 1.0, 'their': 1.0, 'plastic': 1.0, 'melt': 1.0, 'bit': 1.0}
Word element => {'in': 1.0, 'or': 1.0, 'on': 1.0, 'take': 1.0, 'them': 1.0, 'containers': 1.0, 'luv': 1.0, 'still': 1.0, 'absolutely': 1.0, 'put': 1.0, '11mo': 1.0, 'but': 1.0, 'use': 2.0, 'freezes': 1.0, 'go': 1.0, 'milk': 1.0, 'kids': 1.0, 'my': 2.0, 'the': 3.0, 'of': 1.0, 'stand': 1.0, 'tricky': 1.0, 'three': 1.0, 'formula': 1.0, 'all': 1.0, 'for': 1.0, 'to': 3.0, 'with': 1.0, 'it': 1.0, 'this': 1.0, 'old': 1.0, 'i': 3.0, 'cheerios': 1.0, 'before': 1.0, 'used': 1.0, 'part': 1.0, 'can': 1.0, 'wait': 1.0, 'a': 1.0, 'lil': 1.0, 'till': 1.0, 'product': 1.0, 'u': 2.0, 'get': 1.0, 'and': 1.0, 'need': 1.0}
Word element => {'though': 1.0, 'up': 1.0, 'refrigerated': 1.0, 'organizing': 1.0, 'used': 1.0, 'better': 1.0, 'purposes': 1.0, 'product': 1.0, 'overall': 1.0, 'frozen': 1.0, 'resulted': 1.0, 'had': 1.0, 'easily': 1.0, 'forget': 1.0, 'defrost': 1.0, 'be': 1.0, 'trying': 1.0, 'extra': 1.0, 'pumping': 1.0, 'putting': 1.0, 'i': 4.0, 'my': 1.0, 'organizational': 1.0, 're': 2.0, 'fiasco': 1.0, 'off': 1.0, 'however': 1.0, 'using': 1.0, 'but': 2.0, 'shift': 1.0, 'decent': 1.0, 'ready': 1.0, 'great': 2.0, 'benefits': 1.0, 'use': 1.0, 'front': 1.0, 'keeping': 1.0, 'out': 2.0, 'bottles': 6.0, 'and': 4.0, 'milk': 3.0, 'too': 1.0, 'ordered': 1.0, 'cracked': 1.0, 'bags': 2.0, 'very': 1.0, 'rack': 2.0, 'little': 1.0, 'storing': 1.0, 's': 2.0, 'a': 4.0, 'roll': 1.0, 'when': 1.0, 'start': 1.0, 'realize': 1.0, 'on': 1.0, 'probably': 1.0, 'your': 1.0, 'isn': 1.0, 'don': 1.0, 'safe': 1.0, 'medela': 1.0, 'once': 1.0, 'next': 1.0, 'it': 4.0, 'remove': 1.0, 'which': 3.0, 'side': 1.0, 'dispensing': 1.0, 'is': 2.0, 'around': 1.0, 'rotation': 1.0, 'this': 1.0, 'bottle': 4.0, 'so': 1.0, 'to': 6.0, 'against': 1.0, 'warming': 1.0, 'storage': 1.0, 'handy': 1.0, 'over': 1.0, 'freezer': 2.0, 'pump': 2.0, 'for': 7.0, 't': 2.0, 'fit': 1.0, 'the': 10.0, 'of': 3.0, 'ran': 1.0, 'started': 1.0, 'now': 1.0, 'in': 6.0, 'middle': 1.0, 'difficult': 1.0, 'are': 2.0, 'first': 2.0, 'have': 1.0, 'flat': 1.0, 'standing': 1.0, 'about': 2.0, 'perfectly': 1.0, 'with': 1.0, 'style': 1.0, 'not': 1.0, 'parts': 1.0, 'cons': 1.0, 'if': 2.0, 'surface': 1.0, 'want': 1.0, 'limited': 1.0, 'back': 3.0, 'you': 6.0, 'things': 1.0, 'only': 1.0, 'quickly': 1.0, 'simply': 1.0, 'mistakenly': 1.0, 'take': 1.0, 'then': 1.0, 'decide': 1.0}
Word element => {'split': 1.0, 'will': 1.0, 'or': 1.0, 'freezing': 1.0, 'milk': 1.0, 'room': 1.0, 'leave': 1.0, 'fill': 1.0, 'process': 1.0, 'over': 1.0, 'not': 1.0, 'expand': 1.0, 'careful': 1.0, 'would': 1.0, 'in': 2.0, 'works': 1.0, 'for': 1.0, 'purchasing': 1.0, 'love': 1.0, 'to': 4.0, 'it': 1.0, 'this': 1.0, 'have': 1.0, 'i': 2.0, 'great': 2.0, '2': 1.0, 'the': 6.0, 'be': 1.0, 'product': 1.0, 'ability': 1.0, 'maximum': 1.0, 'storage': 1.0, 'heat': 1.0, 'recommend': 1.0, 'bottles': 3.0, 'up': 1.0, 'as': 1.0, 'well': 1.0}
Word element => {'breastfeeding': 1.0, 'recommended': 1.0, 'pump': 1.0, 'my': 2.0, 'perfectly': 1.0, 'attached': 1.0, 'loved': 1.0, 'side': 1.0, 'lay': 1.0, 'they': 1.0, 'considering': 1.0, 'leaked': 1.0, 'never': 1.0, 'have': 2.0, 'bottles': 1.0, 'ton': 1.0, 'up': 1.0, 'taking': 1.0, 'their': 1.0, 'fridge': 1.0, 'in': 1.0, 'this': 2.0, 'nicely': 1.0, 'first': 1.0, 'it': 2.0, 'work': 1.0, 'medela': 1.0, 'sick': 1.0, 'helped': 1.0, 'feed': 1.0, 'went': 1.0, 'with': 1.0, 'date': 1.0, 'oldest': 2.0, 'was': 4.0, 'all': 1.0, 'our': 2.0, 'to': 7.0, 'when': 2.0, 'friends': 1.0, 'so': 1.0, 'bottle': 2.0, 'i': 5.0, 'skeptical': 1.0, 'of': 5.0, 'plus': 1.0, 'space': 1.0, 'keep': 2.0, 'which': 3.0, 'breast': 2.0, 'on': 3.0, 'trying': 2.0, 'be': 1.0, 'track': 1.0, 'me': 1.0, 'milk': 2.0, 'and': 1.0, 'tract': 1.0, 'back': 1.0, 'needed': 1.0, 'used': 1.0, 'write': 1.0, 'the': 4.0, 'without': 2.0, 'having': 1.0, 'a': 2.0, 'every': 1.0, 'son': 1.0, 'storage': 1.0, 'very': 1.0, 'single': 1.0, 'rack': 1.0, 'product': 2.0, 'fit': 1.0}
Word element => {'sideways': 1.0, 'lays': 1.0, 'at': 1.0, 'before': 1.0, 'in': 3.0, 'because': 2.0, 'a': 1.0, 'tell': 1.0, 'with': 1.0, 'stopped': 1.0, 'it': 2.0, 'number': 1.0, 'round': 1.0, 'helps': 1.0, 'spills': 1.0, 'thing': 1.0, 'about': 1.0, 'baby': 1.0, 'lid': 1.0, 'household': 1.0, 'my': 1.0, 'difficult': 1.0, 'busy': 1.0, 'i': 4.0, 'this': 2.0, 'kids': 1.0, 'full': 1.0, 'everyone': 1.0, 'to': 2.0, 'think': 1.0, 'put': 2.0, '3': 1.0, 'on': 3.0, 'bottle': 1.0, 'time': 1.0, 'pump': 1.0, 'now': 1.0, 'free': 1.0, 'fit': 1.0, 'for': 2.0, '1': 1.0, 'but': 1.0, 'dates': 1.0, 'work': 1.0, 'can': 1.0, 'year': 1.0, 'bpa': 1.0, 'and': 2.0, 'milk': 3.0, 'use': 1.0, 'labeling': 1.0, 'when': 1.0, 'you': 2.0, 'times': 2.0, 'prevents': 1.0, 'the': 6.0, 'of': 1.0, 'system': 1.0, 'which': 1.0, 'like': 1.0, 'next': 1.0, 'that': 1.0, 'is': 2.0, 'rack': 1.0, 'little': 1.0}
Word element => {'very': 1.0, 'fridge': 1.0, 'great': 1.0, 'is': 1.0, 'system': 1.0, 'way': 1.0, 'drawback': 1.0, 'directly': 2.0, 'bottles': 4.0, 'the': 11.0, 'these': 1.0, 'only': 1.0, 'pump': 2.0, 'months': 1.0, 'on': 1.0, 'helpful': 1.0, 'used': 2.0, '8': 1.0, 'i': 6.0, 'when': 1.0, 'milkmate': 1.0, 'storage': 1.0, 'pumped': 1.0, 'warming': 1.0, 'medela': 1.0, 'fit': 1.0, 'for': 2.0, 'was': 1.0, 'to': 4.0, 'into': 1.0, 'that': 1.0, 'find': 1.0, 'nipples': 1.0, 'secure': 1.0, 'rings': 1.0, 'and': 1.0, 'milk': 2.0, 'so': 2.0, 'bottle': 1.0, 'feed': 1.0, 'them': 1.0, 'baby': 1.0, 'from': 1.0, 'those': 1.0, 'a': 1.0, 'could': 2.0, 'transitioned': 1.0, 'we': 1.0, 'then': 1.0, 'had': 1.0, 'either': 1.0, 'transferring': 1.0, 'eventually': 1.0, 'exclusively': 1.0, 'avent': 1.0}
Word element => {'surprised': 1.0, 'issue': 1.0, 'huge': 1.0, 'pictured': 1.0, 'note': 1.0, 'great': 1.0, 'that': 1.0, 'other': 1.0, 'pink': 1.0, 'with': 2.0, 'as': 1.0, 'to': 1.0, 'have': 1.0, 'in': 1.0, 'they': 2.0, 'pump': 1.0, 'electric': 1.0, 'tidy': 1.0, 'arrived': 1.0, 'medela': 1.0, 'than': 1.0, 'mouth': 1.0, 'w': 1.0, 'them': 3.0, 'use': 1.0, 'play': 1.0, 'and': 2.0, 'nonetheless': 1.0, 'perfectly': 1.0, 'five': 1.0, 'i': 5.0, 'system': 2.0, 'it': 3.0, 'this': 1.0, 'lids': 1.0, 'only': 1.0, 'like': 1.0, 'whatsoever': 1.0, 'the': 7.0, 'a': 3.0, 't': 1.0, 'really': 2.0, 'is': 1.0, 'warped': 1.0, 'of': 2.0, 'bottles': 2.0, 'no': 1.0, 'problem': 1.0, 'design': 1.0, 'keeps': 1.0, 'reason': 1.0, 'didn': 1.0, 'me': 1.0, 'not': 2.0, 'give': 1.0, 'very': 1.0, 'little': 1.0, 'fit': 2.0, 'stars': 1.0, 'plastic': 1.0, 'but': 2.0, 'can': 1.0, 'my': 1.0, 'lid': 1.0, 'inserts': 1.0, 'bottle': 1.0, 'organized': 1.0, 'bit': 1.0, 'when': 1.0, 'white': 1.0, 'adapt': 1.0, 'sterilized': 1.0, 'still': 1.0}
Word element => {'using': 1.0, 'll': 1.0, 'second': 1.0, 'pregnant': 1.0, 'currently': 1.0, 'definately': 2.0, 'more': 3.0, 'continue': 1.0, 'buying': 2.0, 'not': 1.0, 'regret': 1.0, 'use': 1.0, 'year': 1.0, 'down': 1.0, 'speaks': 1.0, 'lid': 1.0, 'compared': 1.0, 'again': 1.0, 'clean': 1.0, 'pain': 1.0, 'did': 1.0, 'leaked': 1.0, 'they': 3.0, 'medela': 1.0, 'solid': 2.0, 'love': 1.0, 'them': 1.0, 'didn': 1.0, 'eventually': 1.0, 'align': 1.0, 'rush': 1.0, 'if': 2.0, 'thin': 1.0, 'working': 1.0, 'are': 1.0, 'threads': 1.0, 'often': 1.0, 't': 1.0, 'spare': 1.0, 'a': 5.0, 'could': 1.0, 'with': 3.0, 'these': 1.0, 'once': 1.0, 'less': 1.0, 'up': 1.0, 'keeping': 1.0, 'out': 1.0, 'had': 3.0, 'was': 4.0, 'daycare': 1.0, 'store': 1.0, 'leaking': 1.0, 'days': 1.0, 'extra': 1.0, 'm': 2.0, 'in': 1.0, 'also': 1.0, 'can': 2.0, 'so': 2.0, 'time': 1.0, 'schedule': 1.0, 'and': 8.0, 'milk': 3.0, 'caps': 2.0, 'than': 2.0, 'mis': 1.0, 'important': 1.0, 'pour': 1.0, 'mon': 1.0, 'really': 1.0, 'break': 1.0, 'extremely': 1.0, 'hours': 1.0, 'is': 1.0, 'current': 1.0, 'his': 1.0, 'well': 1.0, 'i': 12.0, 'cautious': 1.0, 'remembering': 1.0, 'wed': 1.0, 'fri': 1.0, 'have': 1.0, 'born': 1.0, 'very': 1.0, 'high': 1.0, 'to': 11.0, 'any': 1.0, 'son': 2.0, 'worked': 2.0, 'week': 1.0, 'rack': 1.0, 'weekends': 1.0, 'needed': 2.0, 'd': 1.0, 'sproadic': 1.0, 'after': 2.0, 'this': 2.0, 'full': 1.0, 'system': 2.0, '10': 2.0, 'for': 4.0, 'my': 4.0, 'me': 3.0, 'ammt': 1.0, 'easy': 1.0, 'over': 1.0, 'freezer': 1.0, 'only': 1.0, 'paid': 1.0, 'grab': 1.0, 'it': 3.0, 'him': 1.0, 'volumes': 1.0, 'be': 3.0, 'x': 1.0, 'take': 1.0, 'dad': 1.0, 'feed': 1.0, 'attention': 1.0, 'of': 3.0, 'the': 7.0, 's': 1.0, 'ziplock': 1.0, 'started': 1.0, 'that': 1.0, 'easily': 1.0, 'you': 3.0, 'screwed': 1.0, 'bottles': 4.0, 'pull': 1.0, 'into': 1.0, 'heavy': 1.0, 'as': 2.0, 'bags': 1.0, 'properly': 2.0, 'supply': 1.0, 'never': 2.0, 'but': 3.0, 'do': 1.0, 'get': 2.0, 'trouble': 1.0, 'lids': 1.0, 'or': 1.0, 'need': 1.0, 'long': 2.0, 'on': 3.0}
Word element => {'public': 1.0, 'in': 1.0, 'out': 1.0, 'take': 1.0, 'mom': 1.0, 'purpose': 1.0, 'for': 1.0, 'wouldn': 1.0, 'clean': 1.0, 'comforting': 1.0, 'which': 1.0, 'free': 1.0, 'bpa': 1.0, 'are': 1.0, 'carry': 1.0, 'prefer': 1.0, 'or': 1.0, 'bottles': 3.0, 'the': 6.0, 'these': 1.0, 'directly': 1.0, 'into': 2.0, 'easy': 1.0, 'thaw': 1.0, 'pump': 1.0, 'return': 1.0, 't': 1.0, 'a': 4.0, 'i': 4.0, 'it': 2.0, 'this': 1.0, 'convenient': 1.0, 'with': 1.0, 'working': 1.0, 'loved': 1.0, 'before': 1.0, 'had': 1.0, 'to': 8.0, 'recommend': 1.0, 'daycare': 1.0, 'was': 1.0, 'much': 2.0, 'so': 1.0, 'bit': 1.0, 'not': 1.0, 'difficult': 1.0, 'turned': 1.0, 'able': 1.0, 'but': 1.0, 'work': 1.0, 'them': 2.0, 'be': 1.0, 'giving': 1.0, 'of': 2.0, 'hassle': 1.0, 'would': 1.0, 'disposable': 1.0, 'from': 1.0, 'bags': 1.0, 'more': 1.0, 'around': 1.0, 'is': 2.0, 'also': 1.0, 'very': 1.0, 'little': 1.0, 'and': 2.0, 'milk': 1.0}
Word element => {'sturdy': 1.0, 'are': 1.0, 'pumps': 1.0, 'medela': 1.0, 'fit': 1.0, 'they': 1.0, 'non': 1.0, 'wanted': 1.0, 'to': 3.0, 'sense': 1.0, 'it': 2.0, 'found': 1.0, 'this': 1.0, 'isn': 1.0, 'a': 4.0, 't': 1.0, 'plan': 1.0, 'more': 1.0, 'the': 1.0, 'great': 1.0, 'bags': 1.0, 'freeze': 2.0, 'use': 1.0, 'and': 1.0, 'milk': 1.0, 'option': 1.0, 'but': 2.0, 'disposable': 1.0, 'i': 3.0, 'bought': 1.0, 'decided': 1.0, 'very': 2.0, 'made': 1.0, 'only': 1.0, 'much': 1.0, 'practical': 1.0, 'unless': 1.0, 'you': 1.0, 'small': 1.0, 'have': 1.0, 'just': 1.0, 'large': 1.0, 'freezer': 1.0, 'quantity': 1.0, 'that': 1.0, 'were': 1.0, 'or': 1.0, 'bottles': 2.0, 'however': 1.0, 'inexpensive': 1.0, 'set': 1.0, 'of': 1.0, 'new': 1.0, 'pumping': 1.0}
Word element => {'use': 1.0, 'bottle': 1.0, 'again': 1.0, 'pumping': 1.0, 'exclusively': 1.0, 'update': 1.0, 'couple': 1.0, 'can': 1.0, 'you': 2.0, 'though': 1.0, 'milk': 4.0, 'and': 9.0, 'them': 3.0, 'medela': 2.0, 'above': 1.0, 'crack': 1.0, 'for': 4.0, 'love': 1.0, 'dropped': 1.0, 'had': 1.0, 'system': 1.0, 'bottles': 7.0, 'inner': 1.0, 'reach': 1.0, 'purchase': 1.0, 'only': 1.0, 'months': 1.0, 'lids': 5.0, 'been': 2.0, 'that': 2.0, 'into': 1.0, 'little': 1.0, 'fit': 1.0, 't': 2.0, 's': 1.0, 'storing': 1.0, 'these': 2.0, 'some': 1.0, 'great': 2.0, '3': 1.0, 'i': 8.0, 'is': 2.0, 'about': 2.0, 've': 4.0, 'super': 1.0, 'plastic': 1.0, 'separately': 1.0, 'drawback': 1.0, 'the': 12.0, 'of': 4.0, 'evenflo': 2.0, 'milkmate': 1.0, 'leak': 1.0, 'shake': 1.0, 'dropping': 1.0, 'up': 1.0, 'leaked': 1.0, 'don': 1.0, 'storage': 2.0, 'also': 1.0, 'will': 1.0, 'customer': 1.0, 'really': 1.0, 'service': 1.0, 'a': 2.0, 'emailed': 1.0, 'breastmilk': 1.0, '6': 1.0, 'breaking': 1.0, 'due': 1.0, 'to': 4.0, 'she': 1.0, 'it': 1.0, 'my': 4.0, 'me': 1.0, 'free': 1.0, 'weeks': 1.0, 'no': 1.0, 'mail': 1.0, 'charge': 1.0, 'from': 1.0, 'when': 2.0, 'seal': 1.0, 'your': 1.0, 'mailed': 1.0, 'keeps': 2.0, 'leaking': 1.0, 'organized': 1.0, 'having': 1.0, 'rack': 2.0, 'resort': 1.0, 'other': 1.0, 'first': 1.0, 'are': 2.0, 'hated': 1.0, 'came': 1.0, 'in': 1.0, 'be': 1.0, 'yesterday': 1.0, 'without': 1.0, 'mother': 1.0}
Word element => {'blips': 1.0, 'both': 1.0, 'last': 1.0, 'stores': 1.0, 'finding': 1.0, 'time': 1.0, 'difficult': 1.0, 'get': 1.0, 'on': 2.0, 'where': 1.0, 'depending': 1.0, '3': 1.0, 'run': 1.0, 'these': 1.0, 'each': 1.0, '2': 2.0, 'closer': 1.0, 'product': 1.0, 'price': 1.0, 'gerber': 1.0, 'or': 1.0, 'help': 1.0, 'pacifiers': 2.0, 'an': 1.0, 'other': 2.0, 'began': 1.0, 't': 3.0, 'playtex': 1.0, 'around': 2.0, 'do': 1.0, 'root': 1.0, 'were': 1.0, 'awhile': 1.0, 'brands': 1.0, 'find': 1.0, 'mouth': 2.0, 'outstanding': 1.0, 'her': 3.0, 'held': 1.0, 'one': 1.0, 'hand': 1.0, 'she': 4.0, 'it': 2.0, 'covers': 1.0, 'felt': 1.0, 'month': 1.0, 'our': 1.0, 'to': 5.0, 'week': 1.0, 'look': 1.0, 'had': 1.0, 'either': 1.0, 'was': 2.0, 'in': 2.0, 'meals': 1.0, 'they': 6.0, 'can': 1.0, 'so': 3.0, 'bottle': 1.0, 'otherwise': 1.0, 'd': 1.0, 'for': 4.0, 'but': 3.0, 'frustrations': 1.0, 'i': 1.0, 'well': 2.0, 'minor': 1.0, 'fuss': 1.0, 'didn': 1.0, 'you': 1.0, 'complaints': 1.0, 'little': 1.0, 'from': 1.0, '50': 1.0, 'and': 7.0, 'couldn': 1.0, 'we': 3.0, 'take': 1.0, 'the': 8.0, 'of': 1.0, 'always': 1.0, 'them': 3.0, 'faceplates': 1.0, 'tried': 1.0, 'seems': 1.0, 'between': 1.0, 'large': 1.0, 'weren': 1.0, 'found': 1.0, 'formed': 1.0, 'a': 5.0, 'small': 1.0, 'have': 2.0, 'avent': 1.0, 'my': 1.0, 'pacifier': 1.0, 'blessing': 1.0, 'first': 1.0, 'are': 3.0, 'when': 1.0, 'not': 1.0, 'give': 1.0, 'nipples': 1.0, 'only': 3.0, 'better': 1.0, 'effect': 1.0, 'size': 1.0, 'durable': 1.0, 'nipple': 1.0, 'that': 1.0, 'soothe': 1.0, 'cleaner': 1.0, 'several': 1.0, 've': 1.0, 'up': 1.0, 'over': 1.0, 'now': 1.0, 'if': 1.0, 'stay': 1.0, 'still': 1.0, 'enjoy': 1.0, 'any': 1.0, 'flimsy': 1.0, 'feel': 1.0, 'soothing': 1.0}
Word element => {'50': 1.0, '1': 1.0, 'baby': 1.0, 'calm': 1.0, 'something': 1.0, 'up': 1.0, 'good': 1.0, 'not': 1.0, 'extra': 1.0, 'definitely': 1.0, 'needs': 1.0, 'worth': 1.0, 'or': 1.0, 'fussy': 1.0, 'you': 1.0, 'when': 2.0, 'answers': 1.0, 'daughters': 1.0, 'out': 1.0, 'bought': 1.0, 'i': 1.0, 'maintenance': 1.0, 'daughter': 1.0, 'and': 4.0, 'too': 1.0, 'high': 1.0, 'avent': 1.0, 'eventually': 1.0, 'my': 2.0, 'about': 1.0, 'have': 1.0, 'well': 1.0, '3am': 1.0, 'comfort': 1.0, 'likes': 1.0, 'this': 1.0, 'only': 2.0, 'your': 1.0, 'on': 1.0, 'silicone': 1.0, 'is': 4.0, 'point': 1.0, 'brand': 1.0, 'the': 6.0, 'ones': 1.0, 's': 1.0, 't': 1.0, 'material': 1.0, 'every': 1.0, 'use': 1.0, 'price': 1.0, 'mart': 1.0, 'but': 2.0, 'talk': 1.0, 'doesn': 1.0, 'at': 2.0, 'need': 1.0, 'wal': 1.0, 'shelf': 1.0, 'target': 1.0, 'pacifier': 1.0, 'are': 3.0, 'that': 1.0, 'it': 3.0, 'she': 4.0, 'takes': 1.0, 'happily': 1.0, 'spit': 1.0, 'will': 2.0, 'also': 1.0, 'down': 1.0, 'gerbernuk': 1.0, 'pacifiers': 1.0, 'take': 1.0, 'to': 1.0, 'paci': 2.0, 'as': 1.0, 'some': 1.0, 'these': 2.0, 'readily': 1.0}
Word element => {'good': 1.0, 'perfectly': 1.0, 'pacifier': 1.0, 'point': 1.0, 'no': 1.0, 'see': 1.0, 'suggestion': 1.0, 'their': 1.0, 'followed': 1.0, 'for': 1.0, 'as': 1.0, 'our': 1.0, 'to': 4.0, 'will': 1.0, 'she': 1.0, 'month': 1.0, 'it': 2.0, 'than': 2.0, 'daughter': 1.0, 'much': 2.0, 'is': 4.0, 'more': 1.0, 'realized': 1.0, 'old': 1.0, 'type': 1.0, 'however': 1.0, 'package': 1.0, '6': 1.0, 'washing': 2.0, 'larger': 1.0, 'smaller': 2.0, 'so': 1.0, 'ones': 1.0, 'now': 1.0, 'weeks': 1.0, 'be': 1.0, 'like': 1.0, 'rather': 1.0, 'some': 1.0, 'once': 1.0, 'these': 4.0, 'and': 3.0, 'anticipating': 1.0, '0': 2.0, 'them': 3.0, 'pacifiers': 3.0, 'throwing': 1.0, 'out': 2.0, 'hates': 1.0, 'bought': 2.0, 'i': 8.0, 'six': 1.0, 'sizes': 1.0, 'size': 1.0, 'replace': 1.0, 'the': 9.0, 'crud': 1.0, 'have': 2.0, 'learn': 1.0, 'go': 1.0, 'a': 2.0, 't': 1.0, 'back': 1.0, 'nipple': 2.0, 'builds': 1.0, 'buy': 1.0, 'several': 1.0, 'in': 4.0, 'dishwasher': 1.0, 'issue': 2.0, 'with': 1.0, 'that': 3.0, 'gets': 1.0, '3': 1.0, 'steaming': 1.0, 'through': 1.0, 'maybe': 1.0, 's': 1.0, 'sides': 1.0, 'though': 1.0, 'part': 1.0, 'during': 1.0, 'soap': 1.0, 'water': 2.0, 'up': 1.0, 'replacing': 2.0, 'impossible': 1.0, 'inside': 1.0, 'get': 1.0, 'better': 1.0, 'avent': 2.0, 'option': 1.0, 'sink': 1.0, 'or': 1.0, 'later': 1.0, 'recommends': 1.0, 'opened': 1.0, 'four': 1.0, 'guess': 1.0, 'wouldn': 1.0, 'big': 1.0, 'all': 1.0, 'other': 1.0, 'an': 1.0, 'still': 1.0, 'every': 1.0, 'if': 1.0, 'you': 1.0}
Word element => {'leaks': 1.0, 'getting': 1.0, 'don': 1.0, 'will': 1.0, 'secure': 1.0, 'was': 1.0, 'snap': 1.0, 'together': 1.0, 'came': 1.0, 'with': 4.0, 'gave': 1.0, 'but': 2.0, 'one': 3.0, 'i': 2.0, 'tried': 1.0, 'about': 1.0, 'them': 1.0, 'baby': 1.0, 'read': 1.0, 'lot': 1.0, 'yet': 1.0, 'bottles': 2.0, 'the': 5.0, 'a': 4.0, 'we': 2.0, 't': 3.0, 'discs': 1.0, 'leak': 1.0, 'extremely': 1.0, 'how': 1.0, 'sealing': 2.0, 'reviews': 1.0, 'natural': 3.0, 'review': 1.0, 'won': 1.0, 'think': 1.0, 'on': 1.0, 'haven': 1.0, 'tip': 1.0, 'used': 1.0, 'till': 1.0, 'be': 2.0, 'here': 1.0, 'july': 1.0, 'of': 2.0, 'disc': 1.0, 'this': 1.0, 'philip': 1.0, 'using': 1.0, 'like': 1.0, 'avent': 1.0, 'bottle': 1.0, 'and': 2.0, 'honestly': 1.0, 'it': 2.0, 'felt': 1.0, 'any': 1.0, 'as': 1.0, 'all': 1.0}
Word element => {'avent': 1.0, 'purchase': 1.0, 'bottles': 1.0, 'recommend': 1.0, 'would': 1.0, 'i': 1.0, 'like': 1.0, 'bottle': 1.0, 'tighten': 1.0, 'to': 3.0, 'want': 1.0, 'for': 1.0, 'or': 1.0, 'into': 1.0, 'an': 1.0, 'will': 1.0, 'resolves': 1.0, 'planning': 1.0, 'owning': 1.0, 'run': 1.0, 'motion': 1.0, 'gentle': 1.0, 'some': 1.0, 'leak': 1.0, 'always': 1.0, 'a': 3.0, 'you': 3.0, 'screw': 1.0, 'advent': 1.0, 'have': 1.0, 'the': 1.0, 'these': 1.0, 'on': 1.0, 'if': 1.0, 'hand': 1.0, 'problem': 1.0, 'odd': 1.0, 'rapidly': 1.0, 'anyone': 1.0, 'reason': 1.0, 'also': 1.0, 'do': 1.0, 'just': 1.0, 'not': 1.0}
Word element => {'such': 1.0, 'making': 1.0, 'thank': 1.0, 'years': 1.0, 'get': 1.0, 'well': 1.0, 'has': 1.0, 'joke': 1.0, 'life': 1.0, 'long': 1.0, 'little': 1.0, 'will': 1.0, 'with': 1.0, 'now': 2.0, 'still': 1.0, 'so': 1.0, 'same': 2.0, 'of': 2.0, 'exact': 2.0, 'entire': 1.0, 'color': 1.0, 'every': 1.0, 'material': 1.0, 'saver': 1.0, 'are': 1.0, 'blanket': 5.0, 's': 1.0, 'a': 7.0, 'her': 4.0, 'down': 1.0, 'everywhere': 2.0, 'on': 1.0, 'shown': 1.0, 'goes': 1.0, 'made': 3.0, 'is': 3.0, 'old': 1.0, 'i': 4.0, 'took': 1.0, 'exactly': 1.0, 'for': 4.0, 'what': 1.0, '12': 3.0, 'had': 1.0, 'daughter': 1.0, 'you': 1.0, 'when': 1.0, 'to': 1.0, 'as': 4.0, 'in': 1.0, 'even': 1.0, 'picture': 1.0, 'the': 4.0, 'my': 1.0, 'beautiful': 1.0, 'was': 3.0, 'unfortunately': 1.0, 'can': 1.0, 'pregnant': 1.0, 'felt': 1.0, 'it': 6.0, 'she': 3.0, 'cherished': 1.0, 'vacation': 1.0, 'new': 1.0, 'something': 1.0, 'edges': 1.0, 'almost': 1.0, 'year': 2.0, 'searched': 1.0, 'up': 1.0, 'cried': 1.0, 'and': 4.0, 'similar': 1.0, 'solid': 1.0, 'keep': 1.0, 'at': 1.0, 'week': 1.0, 'described': 1.0, 'yes': 1.0, 'this': 6.0, 'perfect': 1.0, 'lost': 1.0, 'found': 1.0}
Word element => {'very': 1.0, 'vacation': 1.0, 'family': 1.0, 'his': 1.0, 'while': 1.0, 's': 3.0, 'all': 1.0, 'to': 4.0, 'three': 1.0, 'who': 2.0, 'airplane': 1.0, 'seat': 1.0, 'in': 3.0, 'gate': 1.0, 'up': 1.0, 'child': 1.0, 'airport': 2.0, 'right': 1.0, 'replaced': 1.0, 'are': 1.0, 'restaurants': 1.0, 'calls': 1.0, 'i': 2.0, 'need': 1.0, 'lilly': 2.0, 'push': 1.0, 'you': 4.0, 'traveling': 1.0, 'what': 1.0, 'when': 1.0, 'and': 4.0, 'friend': 1.0, 'own': 1.0, 'mine': 1.0, 'booster': 2.0, 'the': 8.0, 'of': 2.0, 'some': 1.0, 'once': 1.0, 'these': 1.0, 'stroller': 2.0, 'have': 2.0, 'must': 1.0, 'more': 1.0, 'sells': 1.0, 'a': 10.0, 'small': 1.0, 'recommendation': 1.0, 'your': 1.0, 'any': 1.0, 'online': 1.0, 'happy': 1.0, 'one': 3.0, 'for': 4.0, 'phone': 1.0, 'where': 1.0, 'purchased': 1.0, 'had': 1.0, 'cease': 1.0, 'is': 2.0, 'from': 4.0, 'this': 2.0, 'research': 1.0, 'parent': 1.0, 'refused': 1.0, 'people': 1.0, 'service': 1.0, 'we': 2.0, 'take': 1.0, 'stop': 1.0, 'extensive': 1.0, 'us': 1.0, 'gear': 1.0, 'upon': 1.0, 'got': 1.0, 'even': 1.0, 'best': 2.0, 'piece': 2.0, 'with': 1.0, 'baby': 1.0, 'strollers': 1.0, 'ask': 3.0, 'can': 2.0, 'gold': 2.0, 'sent': 1.0, 'keep': 1.0, 'makes': 1.0, 'brand': 1.0, 'old': 1.0, 'bobby': 1.0, 'company': 2.0, 'amazing': 1.0, 'customer': 2.0, 'plastic': 1.0, 'he': 1.0, 'was': 1.0, 'broken': 1.0, 'during': 1.0, 'shipping': 1.0, 'they': 1.0, 'new': 2.0, 'me': 1.0, 'thanks': 1.0, 'sun': 1.0, 'it': 5.0, 'shade': 1.0, 'forgot': 1.0, 'on': 1.0, 'paramount': 1.0, 'will': 1.0}
Word element => {'will': 1.0, 'not': 1.0, 'be': 2.0, 'but': 1.0, 'can': 1.0, 'it': 1.0, 'yes': 1.0, 'extra': 1.0, 'an': 1.0, 'carseat': 1.0, 'have': 4.0, 'no': 2.0, 'us': 1.0, 'from': 1.0, 'storage': 1.0, 'cars': 1.0, 'third': 1.0, 'out': 1.0, 'airports': 1.0, 'safe': 1.0, 'cumbersome': 1.0, 'many': 1.0, 'you': 2.0, 'fantastic': 1.0, 'life': 1.0, 'in': 4.0, 'side': 2.0, 'is': 3.0, 'second': 1.0, 'other': 2.0, 'lifesaver': 1.0, 'for': 3.0, 'months': 1.0, 'one': 3.0, 'was': 2.0, 'now': 1.0, 'countries': 1.0, 'and': 8.0, 'need': 2.0, 'done': 1.0, 'ok': 1.0, 'his': 1.0, 'year': 1.0, 'may': 1.0, 'family': 1.0, 'often': 1.0, 'my': 1.0, 'the': 9.0, 'your': 1.0, 'trans': 1.0, 'on': 2.0, 'live': 1.0, 'great': 1.0, 'investment': 1.0, 'are': 1.0, 'reviewers': 1.0, 'issues': 1.0, 'some': 1.0, 'of': 4.0, '6': 2.0, 'identified': 1.0, 'however': 1.0, 'boy': 1.0, 'so': 1.0, 'this': 2.0, 'various': 1.0, 'first': 2.0, 'with': 1.0, 'comfy': 1.0, 'flights': 1.0, 'world': 2.0, 'child': 2.0, 'pacific': 1.0, 'visit': 1.0, '2x': 1.0, 'go': 1.0, 'we': 2.0, 'ago': 1.0, 'a': 3.0, 'or': 1.0, 'stroller': 3.0, 'to': 3.0, 'our': 2.0, 'best': 1.0, 'years': 1.0, 'who': 1.0, 'has': 1.0}
Word element => {'handy': 1.0, 'come': 1.0, 'does': 1.0, 'stroller': 1.0, 'stroll': 1.0, 'this': 1.0, 'concept': 1.0, 'then': 1.0, 'price': 1.0, 'what': 1.0, 'of': 1.0, 'imagine': 1.0, 'push': 1.0, 'came': 1.0, 'with': 2.0, 'travel': 2.0, 'button': 1.0, 'thank': 1.0, 'muscles': 1.0, 'need': 1.0, 'really': 1.0, 'you': 2.0, 'lot': 1.0, '20lbs': 1.0, 'over': 2.0, 'one': 1.0, 'if': 3.0, 'baby': 1.0, 'and': 2.0, 'husband': 2.0, 'the': 8.0, 'is': 1.0, 'more': 1.0, 'love': 1.0, 'for': 2.0, 'only': 2.0, 'its': 1.0, 'much': 1.0, 'there': 1.0, 'i': 4.0, 'narrower': 1.0, 'deploy': 1.0, 'improvement': 1.0, 'be': 3.0, 'disliked': 1.0, 'it': 4.0, 'first': 1.0, 'hard': 1.0, 'star': 1.0, 'rating': 1.0, 'sit': 1.0, 'always': 1.0, 'way': 1.0, 'room': 1.0, '5': 1.0, 'n': 1.0, 'me': 1.0, 'give': 1.0, 'wheels': 2.0, 'can': 1.0, 'but': 1.0, 'goodness': 1.0, 'my': 2.0, 'fact': 1.0, 'would': 2.0, 'cost': 1.0, 'better': 1.0, 'second': 1.0, 'all': 1.0, 'to': 4.0, 'seat': 2.0, 'needs': 1.0, 'easier': 1.0, 'little': 3.0, 'access': 1.0, 'we': 1.0, 'a': 5.0, 's': 1.0, 'could': 1.0, 'in': 2.0, 'plane': 1.0, 'third': 1.0, 'carry': 1.0, 'on': 1.0, 'your': 2.0}
Word element => {'regret': 1.0, 'really': 1.0, 'will': 1.0, 'buy': 1.0, 'bending': 1.0, 'them': 1.0, 'keeping': 1.0, 'arms': 1.0, 'and': 6.0, 'across': 3.0, 'chest': 2.0, 'goes': 2.0, 'don': 2.0, 'latch': 2.0, 'or': 1.0, 'from': 1.0, 'seatbelt': 1.0, 'pull': 1.0, 's': 3.0, 'tiny': 1.0, 'a': 4.0, 'we': 2.0, 'you': 4.0, 'car': 3.0, 'seat': 5.0, 'in': 4.0, 'are': 3.0, 'facing': 2.0, 'on': 1.0, 'idea': 1.0, 'your': 4.0, 'put': 1.0, 'it': 4.0, 'hooks': 1.0, 'if': 1.0, 'have': 2.0, 'this': 2.0, 'i': 1.0, 'poorly': 1.0, 'child': 5.0, 'product': 1.0, 'for': 1.0, 'supposed': 1.0, 't': 2.0, 'fit': 1.0, 'no': 1.0, 'once': 1.0, 'the': 15.0, 'of': 3.0, 'function': 1.0, 'included': 1.0, 'so': 3.0, 'time': 1.0, 'to': 4.0, 'against': 1.0, 'designed': 1.0, 'upper': 1.0, 'forward': 1.0, 'without': 1.0, 'works': 1.0, 'even': 2.0, 'used': 1.0, 'uncomfortable': 1.0, 'secure': 2.0, 'hour': 1.0, 'screamed': 1.0, 'an': 1.0, 'unless': 2.0, 'after': 1.0, 'fold': 1.0, 'he': 1.0, 'our': 1.0, 'stroller': 1.0, 'how': 1.0, 'was': 2.0, 'bent': 1.0, 'they': 2.0, 'joking': 1.0, 'with': 1.0, 'is': 3.0, 'upsetting': 1.0, 'configuration': 1.0, 'that': 1.0, 'strap': 3.0, 'loops': 1.0, 'pressure': 1.0, 'vehicle': 2.0, 'son': 1.0, 'height': 1.0, 'carseat': 1.0, 'out': 1.0, 'up': 1.0, 'major': 1.0, 'struggle': 1.0, 'each': 1.0, 'tried': 1.0, 'backward': 1.0, 'but': 2.0, 'worse': 1.0, 'pushes': 1.0, 'back': 1.0, 'get': 1.0, 'legs': 2.0, 'way': 1.0, 'their': 2.0, 'thighs': 1.0}
Word element => {'little': 1.0, 'carrier': 1.0, 'infant': 1.0, 'easy': 1.0, 'airport': 1.0, 'through': 1.0, 'to': 1.0, 'useful': 1.0, 'much': 1.0, 'and': 1.0, 'get': 1.0, 'some': 1.0, 'an': 1.0, 'stroller': 2.0, 'but': 2.0, 'time': 1.0, 'attachment': 1.0, 'travel': 1.0, 'as': 2.0, 'very': 1.0, 'for': 2.0, 'of': 1.0, 'takes': 1.0, 'easier': 1.0, 'with': 1.0, 'it': 1.0, 'not': 1.0, 'seat': 2.0, 'lugging': 1.0, 'ones': 1.0, 'the': 3.0, 'standard': 1.0, 'hang': 1.0, 'than': 1.0, 'installing': 1.0, 'correctly': 1.0, 'a': 1.0}
Word element => {'its': 1.0, 'after': 1.0, 'even': 1.0, 'get': 1.0, 'can': 1.0, 'know': 1.0, 'does': 1.0, 'because': 1.0, 'integrity': 1.0, 'were': 1.0, 'extension': 1.0, 'goes': 1.0, 'if': 1.0, 'mind': 1.0, 'peace': 1.0, 't': 2.0, 'we': 1.0, 'a': 1.0, 'us': 1.0, 'lose': 1.0, 'gives': 1.0, 'side': 1.0, 'getting': 1.0, 'passing': 1.0, 'that': 2.0, 'very': 2.0, 'from': 1.0, 'still': 1.0, 'gets': 2.0, 'son': 1.0, 'active': 1.0, 'to': 2.0, 'away': 2.0, 'now': 1.0, 'through': 2.0, 'enough': 1.0, 'done': 1.0, '15': 1.0, 'keeps': 1.0, 'are': 1.0, 'of': 2.0, 'my': 1.0, 'happy': 1.0, 'somewhat': 1.0, 'job': 1.0, 'curios': 1.0, 'the': 6.0, 'gate': 3.0, 'strong': 2.0, 'on': 1.0, 'more': 1.0, 'is': 4.0, 'not': 1.0, 'explore': 1.0, 'excellent': 1.0, 'what': 1.0, 'he': 3.0, 'and': 7.0, 'too': 1.0, 'mom': 1.0, 'hallway': 1.0, 'product': 1.0, 'for': 1.0, 'months': 1.0, 'one': 1.0, 'adding': 1.0, 'i': 1.0, 'security': 1.0, 'needs': 1.0, 'so': 1.0, 'his': 1.0, 'sturdy': 1.0, 'who': 1.0, 'keep': 1.0, 'him': 1.0}
Word element => {'purchase': 1.0, 'way': 1.0, 'but': 1.0, 'top': 1.0, 'paws': 1.0, 'his': 1.0, 'is': 1.0, 'pets': 1.0, 'enough': 1.0, 'having': 1.0, 'knock': 1.0, 'with': 2.0, 'mind': 1.0, 'classy': 1.0, 'of': 2.0, 'out': 1.0, 'get': 3.0, 'that': 1.0, 'getting': 1.0, 'tall': 1.0, 'and': 2.0, 'had': 2.0, 'all': 1.0, 'our': 2.0, 'to': 7.0, 'was': 1.0, 'kitchen': 2.0, 'lab': 1.0, 'no': 2.0, 'including': 1.0, 'easier': 1.0, 'stretching': 1.0, 'brown': 1.0, 'in': 3.0, 'cat': 1.0, 'able': 1.0, 'taking': 1.0, 'real': 1.0, 'front': 1.0, 'use': 1.0, '3': 1.0, 'before': 1.0, 'down': 2.0, 'looks': 1.0, 'it': 3.0, 'could': 1.0, 't': 2.0, 'we': 5.0, 'a': 2.0, 'the': 7.0, 'gate': 4.0, 'up': 2.0, 'don': 1.0, 'over': 2.0, 'this': 4.0, 'pain': 1.0, 'dogs': 1.0, 'dog': 1.0, '1': 1.0, 'big': 1.0, 'open': 1.0, 'keep': 3.0, 'when': 1.0, 'didn': 1.0, 'collapsible': 1.0, 'need': 1.0, 'which': 1.0, 'or': 2.0, 'step': 1.0, 'makes': 1.0, 'problem': 1.0, 'things': 1.0, 'time': 1.0, 'so': 3.0, 'much': 1.0, 'thrilled': 1.0, 'just': 1.0, 'he': 1.0, 'door': 1.0}
Word element => {'complaints': 1.0, 'every': 1.0, 'informed': 1.0, 'from': 1.0, 'bought': 1.0, 'delivered': 1.0, 'room': 1.0, 'way': 2.0, 'obese': 1.0, 'entry': 1.0, 'company': 1.0, 'my': 1.0, 'locked': 1.0, 'leather': 1.0, 'tools': 1.0, 'fast': 1.0, 'cage': 1.0, 'put': 1.0, 'furniture': 1.0, 'the': 3.0, 'gate': 1.0, 't': 2.0, 'a': 1.0, 'up': 1.0, 'don': 1.0, 'in': 2.0, 'this': 1.0, 'it': 4.0, 'like': 2.0, 'step': 1.0, 'although': 1.0, 'that': 1.0, 'to': 3.0, 'necessary': 1.0, 'of': 2.0, 'declawed': 1.0, 'am': 1.0, 'living': 1.0, 'works': 1.0, 'have': 3.0, 'admit': 1.0, 'i': 7.0, 'two': 1.0, 'new': 1.0, 'super': 2.0, 'no': 2.0, 'me': 1.0, 'cats': 1.0, 'they': 1.0, 'but': 1.0, 'aren': 1.0, 'is': 1.0, 'and': 4.0, 'tall': 1.0, 'easy': 1.0, 'great': 1.0, 'feel': 1.0, 'install': 1.0}
Word element => {'times': 1.0, 'prop': 1.0, 'could': 1.0, 'you': 2.0, 'convenient': 1.0, 'more': 1.0, 'chewed': 1.0, 'got': 1.0, 'prototypes': 1.0, 'string': 1.0, 'after': 1.0, 'around': 1.0, 'would': 1.0, 'wire': 2.0, 'behind': 1.0, 'wall': 1.0, 'into': 1.0, 'hook': 3.0, 'by': 1.0, 'screwed': 1.0, 'several': 1.0, 've': 1.0, 'be': 2.0, 'way': 1.0, 'really': 1.0, 'me': 1.0, 'stars': 1.0, 'install': 1.0, 'but': 3.0, 'want': 3.0, 'easy': 1.0, 'get': 1.0, 'sure': 1.0, 'house': 1.0, 'both': 1.0, 'ends': 1.0, 'needs': 1.0, 'cats': 3.0, 'to': 14.0, 'go': 1.0, 's': 2.0, 't': 3.0, 'a': 7.0, 'been': 1.0, 'new': 3.0, 'each': 1.0, 'it': 12.0, 'with': 3.0, 'loooovvee': 1.0, 'this': 4.0, 'first': 2.0, 'open': 3.0, 'over': 1.0, 'don': 2.0, 'gate': 5.0, 'use': 5.0, 'etc': 1.0, 'day': 1.0, 'foster': 2.0, 'do': 1.0, 'much': 2.0, 'only': 1.0, 'and': 5.0, 'loop': 2.0, 'keep': 1.0, 'since': 1.0, 'dog': 3.0, 'feel': 1.0, 'survived': 1.0, 'dogs': 4.0, 'have': 1.0, 'generally': 1.0, 'rambunctious': 1.0, 'in': 1.0, 'regular': 1.0, 'kitchen': 2.0, 'other': 1.0, 'picture': 1.0, 'effective': 1.0, 'for': 3.0, 'or': 2.0, 'worth': 1.0, 'can': 1.0, 'so': 4.0, 'tie': 1.0, 'while': 2.0, 'from': 2.0, 'our': 2.0, 'how': 1.0, 'we': 7.0, 'fine': 1.0, 'fosters': 1.0, 'away': 1.0, 'make': 2.0, 'near': 1.0, 'on': 1.0, 'safe': 1.0, 'choose': 1.0, 'twisted': 1.0, 'visit': 1.0, 'us': 1.0, 'at': 1.0, 'is': 2.0, 'very': 1.0, 'little': 1.0, 'they': 4.0, 'sturdy': 1.0, 'has': 2.0, 'right': 1.0, 'easier': 1.0, 'took': 1.0, '15': 1.0, 'that': 2.0, '20': 1.0, '5': 1.0, 'minutes': 1.0, 'was': 1.0, 'doesn': 1.0, 'used': 1.0, 'deal': 1.0, 'many': 1.0, 'baby': 1.0, '2': 1.0, 'gates': 1.0, 'top': 1.0, 'the': 13.0, 'of': 1.0, 'propped': 1.0, 'if': 3.0, 'section': 2.0, 'see': 1.0, 'off': 2.0, 'just': 2.0, 'reason': 1.0}
Word element => {'looks': 1.0, 'think': 1.0, 'wood': 1.0, 'dark': 1.0, 'blends': 1.0, 'have': 1.0, 'though': 1.0, 'even': 1.0, 'black': 2.0, 'unobtrusive': 1.0, 'through': 1.0, 'another': 1.0, 'you': 2.0, 'times': 2.0, 'because': 1.0, 'easily': 2.0, 'this': 3.0, 'choose': 1.0, 'soft': 1.0, 'are': 2.0, 'gates': 1.0, 'itself': 1.0, 'in': 3.0, 'latch': 2.0, 'behind': 1.0, 'shut': 1.0, 'want': 1.0, 'automatically': 1.0, 'dogs': 2.0, 'swings': 1.0, 'your': 1.0, 'time': 1.0, 'gate': 8.0, 'hands': 2.0, 'the': 11.0, 'of': 1.0, 'swing': 1.0, 'manipulated': 1.0, 'handy': 1.0, 'very': 1.0, 'cannot': 1.0, 'house': 1.0, 'both': 1.0, 'jump': 1.0, 'bought': 1.0, 'one': 1.0, 'keep': 1.0, 'prop': 1.0, 'opens': 1.0, '60': 1.0, 'was': 1.0, 'full': 2.0, 'recommend': 1.0, 'to': 4.0, 'as': 2.0, 'we': 5.0, 'a': 5.0, 'will': 1.0, 'could': 1.0, 'walls': 1.0, 'hallway': 1.0, 'it': 4.0, 'ways': 1.0, 'found': 1.0, 'easy': 1.0, 'installed': 1.0, 'apart': 1.0, '90': 1.0, 'than': 1.0, 'and': 6.0, 'at': 3.0, 'separated': 1.0, 'is': 2.0, 'i': 5.0, 'well': 2.0, 'toy': 1.0, 'good': 1.0, 'which': 1.0, 'made': 1.0, 'exit': 1.0, 'just': 1.0, 'percent': 1.0, 'by': 1.0, 'large': 1.0, 'under': 1.0, 'white': 1.0, 'difficult': 1.0, 'door': 1.0, 'if': 2.0, 'stay': 1.0, 'two': 2.0, 'little': 2.0, 'trim': 1.0, 'button': 1.0, 'pulling': 1.0, 'up': 1.0, 'open': 1.0, 'over': 1.0, 'with': 2.0, 'stores': 1.0, 'but': 1.0, 'all': 1.0, 'other': 1.0, 'medium': 1.0, 'sliding': 1.0, 'would': 1.0, 'cost': 1.0, 'install': 1.0, 'pet': 3.0, 'be': 1.0, 'lower': 1.0, 'kept': 1.0, 'on': 1.0, 'pound': 1.0, 'they': 2.0, 'see': 1.0}
Word element => {'be': 1.0, 'won': 1.0, 'buy': 1.0, 'in': 1.0, 'second': 1.0, 'buying': 1.0, 'old': 1.0, 'ended': 1.0, 'holding': 1.0, 'm': 1.0, 'you': 1.0, 'when': 1.0, 'down': 1.0, 'other': 1.0, 'easy': 2.0, 'black': 1.0, 'used': 1.0, 'using': 1.0, 'uncomfortably': 1.0, 'one': 1.0, 'for': 3.0, 'love': 1.0, 'the': 1.0, 'gate': 2.0, 'really': 1.0, 'is': 1.0, 'was': 1.0, 'spot': 1.0, 'install': 1.0, 'nice': 1.0, 'need': 1.0, 'baby': 1.0, 'this': 2.0, 'month': 1.0, 'looks': 1.0, 'it': 2.0, 'compared': 1.0, 'hard': 1.0, 've': 1.0, 'gates': 1.0, 'have': 1.0, 'small': 1.0, 'i': 6.0, 'another': 1.0, 'my': 2.0, 'bend': 1.0, 'disappointed': 1.0, 'pressure': 1.0, 'up': 1.0, 'don': 1.0, 'child': 1.0, 'mounted': 1.0, 'house': 1.0, 'eight': 1.0, 're': 1.0, 'enough': 1.0, 'open': 1.0, 'to': 4.0, 'as': 1.0, 'an': 1.0, 'but': 1.0, 'adult': 1.0, 'and': 1.0, 'tall': 1.0, 'that': 1.0, 'we': 1.0, 'a': 2.0, 't': 2.0, 's': 1.0}
Word element => {'up': 1.0, 'stepping': 1.0, 'glad': 1.0, 'am': 1.0, 'while': 1.0, 'very': 2.0, 'year': 1.0, 'open': 1.0, '1': 1.0, 'to': 6.0, 'old': 1.0, 'i': 1.0, 'bend': 1.0, 'purchase': 1.0, 'extra': 1.0, 'tall': 2.0, 'and': 2.0, 'play': 1.0, 'researched': 1.0, 'many': 1.0, 'is': 1.0, 'gates': 1.0, 'purchasing': 1.0, 'decided': 1.0, 'one': 1.0, 'have': 2.0, 'able': 1.0, 'before': 1.0, 'this': 1.0, 'he': 1.0, 'it': 2.0, 'with': 1.0, 'convenient': 1.0, 'reach': 1.0, 'gate': 2.0, 'the': 5.0, 'sits': 1.0, 'top': 1.0, 'can': 1.0, 'but': 1.0, 'not': 2.0, 'lock': 1.0, 'at': 1.0, 'down': 1.0, 'bottom': 1.0, 'of': 1.0, 'we': 3.0, 'a': 1.0, 'stairs': 1.0}
Word element => {'her': 1.0, 'use': 1.0, 'useful': 1.0, 'sure': 1.0, 'my': 1.0, 'giving': 1.0, 'am': 1.0, 'visitors': 1.0, 'by': 1.0, 'stressed': 1.0, 'they': 1.0, 'so': 3.0, 'whenever': 1.0, 'also': 1.0, 'us': 1.0, 'up': 1.0, 'decided': 1.0, 'space': 1.0, 'sharing': 1.0, 'now': 1.0, 'or': 2.0, 'jump': 1.0, 'escaping': 1.0, 'power': 1.0, 'upstairs': 1.0, 'kitties': 3.0, 'got': 1.0, 'i': 5.0, 'started': 1.0, 'friends': 1.0, 'loudly': 1.0, 'had': 1.0, 'cries': 1.0, 'loud': 1.0, 'night': 1.0, 'was': 1.0, 'where': 1.0, 'incident': 1.0, 'find': 1.0, 'friend': 2.0, '1': 1.0, 'have': 3.0, 'cross': 1.0, 'super': 1.0, 'criss': 1.0, 'place': 2.0, 'gate': 13.0, 'gift': 1.0, 'which': 1.0, 'resident': 1.0, 'do': 1.0, 'much': 1.0, 'floor': 2.0, 'stairs': 2.0, 'a': 8.0, 'go': 1.0, 'will': 2.0, 'could': 1.0, 'for': 2.0, 'worked': 1.0, 'maintain': 1.0, 'separate': 2.0, 'did': 1.0, 'keep': 2.0, 'still': 1.0, 'kitty': 2.0, 'safe': 2.0, 'we': 12.0, 'take': 1.0, 'attempted': 1.0, 'after': 1.0, '3': 1.0, 'flight': 1.0, 'on': 1.0, 'just': 1.0, 'placed': 1.0, 'enough': 1.0, 'mode': 1.0, 'but': 4.0, 'think': 1.0, 'process': 1.0, 'weeks': 1.0, 'extra': 2.0, 'she': 1.0, 'baby': 5.0, 'him': 1.0, 'it': 1.0, 'solved': 1.0, 'this': 10.0, 'fight': 1.0, 'happened': 1.0, 'opened': 1.0, 'purchased': 3.0, 'allow': 1.0, 'scared': 1.0, 'from': 3.0, 'purpose': 1.0, 'wanted': 1.0, 'simple': 1.0, 'to': 7.0, 'our': 4.0, 'as': 4.0, 'one': 1.0, 'crying': 1.0, 'pattern': 1.0, '2nd': 3.0, 'vertical': 1.0, 'fence': 1.0, 'top': 2.0, 'competitor': 1.0, 'his': 2.0, 'when': 2.0, 'cat': 4.0, 'height': 1.0, 'out': 2.0, 'beautifully': 1.0, 'the': 31.0, 'of': 6.0, 'love': 1.0, 'he': 1.0, 'bottom': 1.0, 'stairwell': 1.0, 'jumped': 2.0, 'over': 3.0, 'at': 3.0, 'bars': 2.0, 'adopting': 1.0, 'meet': 1.0, 'issue': 1.0, 'installing': 1.0, 'helped': 1.0, 'not': 2.0, 'their': 2.0, 'climb': 1.0, 'areas': 1.0, 'm': 1.0, 'in': 2.0, 'right': 1.0, 'introduction': 1.0, 'tall': 1.0, 'new': 4.0, 'model': 1.0, 'has': 2.0, 'double': 1.0, 'swing': 1.0, 'more': 1.0, 'door': 1.0, 'successfully': 1.0, 'room': 1.0, 'entered': 1.0, 'cats': 4.0, 'exited': 1.0, 'intermingled': 1.0, 'are': 4.0, 'first': 1.0, 'company': 1.0, 'only': 1.0, 'narrow': 1.0, 'because': 1.0, 'that': 4.0, 'cannot': 1.0, 'through': 1.0, 'great': 1.0, '2': 2.0, 'thing': 1.0, 'about': 1.0, 'with': 3.0}
Word element => {'shepherd': 1.0, 'have': 1.0, 'open': 1.0, 'that': 1.0, 'toddler': 1.0, 'video': 1.0, 'easy': 2.0, 'gates': 1.0, 'both': 1.0, 'we': 3.0, 'happy': 1.0, 'got': 1.0, 'helpful': 1.0, 'reviews': 1.0, 'own': 1.0, 'did': 1.0, 'alot': 1.0, 'closes': 1.0, 'a': 3.0, 'instructions': 1.0, 'gate': 1.0, 'on': 2.0, 'and': 5.0, 'chose': 1.0, 'based': 1.0, 'of': 1.0, 'german': 1.0, '2': 1.0, 'these': 1.0, 'with': 1.0, 'this': 2.0, 'it': 2.0, 'took': 1.0, 'helps': 1.0, 'about': 1.0, 'half': 1.0, 'hour': 1.0, 'its': 1.0, 'comes': 1.0, 'to': 2.0, 'unwrap': 1.0, 'assemble': 1.0}
Word element => {'close': 1.0, 'open': 1.0, 'money': 1.0, 'worth': 1.0, 'the': 1.0, 'made': 1.0, 'are': 2.0, 'smooth': 1.0, 'of': 1.0, 'well': 1.0, 'transaction': 1.0, 'fast': 1.0, 'delivery': 1.0, 'easy': 2.0, 'to': 2.0, 'assemble': 1.0, 'quality': 1.0, 'and': 3.0, 'gates': 2.0}
Word element => {'compliments': 1.0, 'several': 1.0, 'received': 1.0, 'two': 1.0, 'too': 1.0, 'them': 2.0, 'on': 1.0, 'gate': 2.0, 'tall': 1.0, 'of': 2.0, 'have': 3.0, 'this': 1.0, 'extra': 1.0, 'we': 2.0, 'the': 1.0, 'three': 1.0, 'and': 1.0, 'love': 1.0, 'one': 1.0, 'easy': 2.0, 'use': 1.0, 'shorter': 1.0, 'install': 1.0, 'they': 1.0, 'to': 2.0, 'look': 1.0, 'nice': 1.0}
Word element => {'properly': 1.0, 'close': 1.0, 'will': 1.0, 'and': 1.0, 'each': 1.0, 'amount': 1.0, 'an': 1.0, 'have': 1.0, 'well': 1.0, 'one': 1.0, 'although': 1.0, 'of': 3.0, 'space': 1.0, 'keep': 1.0, 'top': 1.0, 'needed': 1.0, 'side': 1.0, 'clear': 1.0, 'took': 1.0, 'i': 1.0, 'only': 2.0, 'it': 2.0, 'this': 1.0, 'with': 1.0, 'else': 1.0, 'clears': 1.0, 'attach': 1.0, 'or': 1.0, 'cup': 1.0, 'possible': 1.0, 'awhile': 1.0, 'that': 4.0, 'suction': 1.0, 'thing': 1.0, 'wall': 1.0, 'was': 2.0, 'our': 1.0, 'tallest': 1.0, 'to': 7.0, 'pretty': 2.0, 'product': 1.0, 'wasn': 1.0, 'out': 2.0, 'install': 1.0, 'we': 1.0, 't': 1.0, 'a': 2.0, 'bit': 1.0, 'things': 1.0, 'quickly': 1.0, 'is': 1.0, 'in': 2.0, 'instructions': 1.0, 'the': 8.0, 'gate': 3.0, 'bottom': 1.0, 'complaint': 1.0, 'takes': 1.0, 'sure': 1.0, 'easy': 2.0, 'get': 1.0, 'used': 1.0, 'equal': 1.0, 'room': 1.0, 'opening': 1.0, 'being': 1.0, 'cats': 2.0, 'forsee': 1.0, 'not': 2.0, 'figure': 1.0, 'very': 1.0, 'baby': 1.0, 'on': 1.0, 'make': 1.0, 'your': 1.0, 'arms': 1.0, 'can': 1.0, 'but': 1.0}
Word element => {'bending': 1.0, 'perfectly': 1.0, 'easeir': 1.0, 'makes': 1.0, 'also': 1.0, 'boxes': 1.0, 'parents': 1.0, 'appearance': 1.0, 'to': 4.0, 'home': 1.0, 'of': 1.0, 'open': 1.0, 'their': 1.0, '2': 1.0, 'jumping': 1.0, 'my': 1.0, 'delicate': 1.0, 'have': 2.0, 'room': 2.0, 'discourage': 1.0, 'using': 1.0, 'which': 2.0, 'stacked': 1.0, 'nice': 1.0, 'where': 1.0, 'they': 2.0, 'cats': 2.0, 'not': 2.0, 'works': 1.0, 'living': 1.0, 'do': 2.0, 'allow': 1.0, 'in': 3.0, 'air': 1.0, 'did': 1.0, 'a': 1.0, '15': 1.0, 'it': 3.0, 'doorway': 1.0, 'nor': 1.0, 'allowed': 1.0, 'without': 1.0, 'the': 8.0, 'gate': 3.0, 'up': 1.0, 'over': 2.0, 'circulate': 1.0, 'into': 1.0, 'i': 2.0, 'installed': 1.0, 'minutes': 1.0, 'height': 1.0, 'ordered': 1.0, 'extra': 2.0, 'collectables': 1.0, 'tall': 1.0, 'from': 1.0}
Word element => {'price': 1.0, 'help': 1.0, 'holds': 1.0, 'toe': 1.0, 'are': 1.0, 'there': 1.0, 'as': 1.0, 'bar': 1.0, 'like': 1.0, 'issue': 1.0, 'isn': 1.0, 'say': 1.0, 'will': 1.0, 'those': 1.0, 'for': 3.0, 'attractive': 1.0, 'metal': 1.0, 'sturdy': 1.0, 'material': 1.0, 'stairway': 1.0, 'doesn': 1.0, 'climbers': 1.0, 'on': 2.0, 'hanging': 1.0, 'can': 1.0, 'strength': 1.0, 'but': 1.0, 'considerable': 1.0, 'his': 1.0, 'using': 2.0, 'tantrum': 1.0, 'determined': 1.0, 'place': 1.0, 'strong': 1.0, 'wall': 1.0, 'into': 1.0, 'not': 1.0, 'little': 2.0, 'totally': 1.0, 'handed': 1.0, 'enough': 2.0, 'we': 3.0, 'going': 1.0, 'a': 4.0, 's': 1.0, 'stairs': 1.0, 'baffles': 1.0, 'right': 2.0, 'down': 1.0, 'climbed': 1.0, 'screws': 1.0, 'had': 2.0, 'or': 2.0, 'latch': 1.0, 'until': 1.0, 'great': 1.0, 'climbing': 1.0, 'our': 5.0, 'any': 2.0, 'pulled': 1.0, 'to': 5.0, 'been': 1.0, 'did': 1.0, 'keep': 1.0, 'pets': 1.0, 'them': 1.0, 'has': 3.0, 'kind': 1.0, 'from': 1.0, 'previous': 1.0, 'even': 2.0, 'construction': 1.0, 'met': 1.0, 'worth': 1.0, 'now': 2.0, 'either': 1.0, 'weeks': 1.0, 'up': 3.0, 'assembly': 1.0, 'gate': 4.0, 'myself': 1.0, '2': 1.0, 'gates': 1.0, 'bam': 2.0, 'between': 2.0, 'yet': 3.0, 'bottom': 1.0, 'he': 1.0, 'with': 3.0, 'wit': 1.0, 'sanity': 1.0, 'stopped': 1.0, 'highly': 1.0, 'this': 6.0, 'of': 3.0, 'the': 15.0, 'doing': 1.0, 'kids': 1.0, 'upstairs': 1.0, 'looks': 1.0, 'mid': 1.0, 'my': 1.0, 'bought': 2.0, 'vertical': 1.0, 'ones': 1.0, 'one': 3.0, 'old': 3.0, 'well': 1.0, 'i': 6.0, '4': 1.0, 'easy': 1.0, 'grandson': 1.0, 'extra': 1.0, 'saved': 1.0, 'cross': 1.0, '2yr': 1.0, 'bars': 1.0, 'at': 2.0, 'is': 6.0, 'and': 9.0, 'budge': 1.0, 'time': 1.0, 'tall': 1.0, 'boost': 1.0, 'it': 9.0, 'him': 1.0, 'never': 1.0, 'end': 1.0, 'when': 1.0, 'that': 2.0, 'easily': 1.0, 'do': 1.0, 'put': 1.0, 'in': 3.0, 'short': 1.0, 'no': 2.0, 'walk': 1.0, 'about': 1.0, 'us': 1.0, 'lift': 1.0, 'kitten': 1.0, 'hopped': 1.0, 'problem': 1.0, 'use': 2.0, 'extension': 1.0, 'barrier': 1.0, 'yr': 2.0, 't': 2.0, 'fit': 1.0, 'recommend': 1.0, 'were': 1.0, 'together': 1.0, 'have': 1.0, 'all': 1.0, 'an': 2.0, 'houdini': 1.0, 'amazing': 1.0, 'success': 1.0, 'height': 1.0, 'preventing': 1.0, '5': 1.0, 'needed': 1.0, 'over': 3.0, 'open': 1.0}
Word element => {'with': 1.0, 'happy': 1.0, 'home': 1.0, 'while': 1.0, 'open': 1.0, 'prop': 1.0, 'just': 2.0, 'down': 1.0, 'have': 1.0, 'are': 2.0, 'opens': 1.0, 'trusted': 1.0, 'be': 1.0, 'bull': 1.0, 'strong': 1.0, 'take': 1.0, 'pretty': 1.0, 'move': 1.0, 'or': 2.0, 'straddle': 1.0, 'like': 1.0, 'cannot': 1.0, 'secure': 1.0, 'is': 3.0, 'time': 1.0, 'so': 1.0, 'walls': 1.0, 'not': 1.0, 'did': 1.0, 'room': 1.0, 'hall': 1.0, 'redecorate': 1.0, 'keep': 1.0, 'confined': 1.0, 'what': 1.0, 'had': 2.0, 'rooms': 1.0, 'was': 1.0, 'were': 2.0, 'permanently': 1.0, 'something': 1.0, 'all': 1.0, 'outside': 1.0, 'as': 1.0, 'to': 8.0, 'our': 1.0, 'pit': 1.0, 'that': 3.0, 'good': 1.0, 'her': 2.0, 'looking': 2.0, 'where': 1.0, 'for': 3.0, 'one': 1.0, 'jump': 2.0, 'laundry': 1.0, 'the': 7.0, 'gate': 3.0, 'too': 1.0, 'and': 3.0, 'tall': 1.0, 't': 1.0, 'we': 10.0, 'a': 4.0, 'baby': 1.0, 'attach': 1.0, 'dog': 1.0, 'area': 2.0, 'easy': 1.0, 'tendency': 1.0, 'of': 1.0, 'eyeing': 1.0, 'has': 2.0, 'very': 3.0, 'access': 1.0, 'in': 2.0, 'regular': 1.0, 'can': 1.0, 'but': 1.0, 'kept': 2.0, 'needed': 1.0, 'top': 1.0, 'looks': 1.0, 'she': 6.0, 'it': 9.0, 'this': 4.0, 'set': 1.0, 'don': 1.0, 'over': 3.0, 'up': 1.0}
Word element => {'damage': 1.0, 'doing': 1.0, 'periods': 1.0, 'day': 1.0, 'times': 2.0, 'couple': 1.0, 'had': 2.0, 'happy': 1.0, 'after': 1.0, 'drops': 1.0, 'price': 1.0, 'more': 1.0, 'confusing': 1.0, 'isn': 1.0, 'hopefully': 1.0, 'correctly': 1.0, 'rub': 1.0, 'wanted': 1.0, 'swing': 1.0, 'easily': 1.0, 'latch': 2.0, 'mentioned': 1.0, 'funky': 1.0, 'realized': 1.0, 'corresponding': 1.0, 'rubbing': 1.0, 'how': 1.0, 'apparently': 1.0, 'figure': 1.0, 'adjust': 1.0, 'took': 1.0, 'vertical': 2.0, 'receives': 1.0, 'only': 1.0, 'then': 1.0, 'recommend': 1.0, 'wall': 1.0, 'against': 2.0, 'visit': 1.0, 'foot': 1.0, 'again': 1.0, 'which': 2.0, 'cannot': 1.0, 'very': 2.0, 'head': 1.0, 'fairly': 1.0, 't': 7.0, 'months': 1.0, 'update': 1.0, 'strange': 1.0, 'paws': 1.0, 'mount': 2.0, 'worry': 1.0, 'a': 14.0, 'along': 1.0, 'tiny': 1.0, 'also': 1.0, 'darn': 1.0, 'to': 18.0, 'really': 2.0, 'already': 1.0, 'be': 4.0, 'it': 15.0, 'separated': 1.0, 'at': 2.0, 'earlier': 1.0, 'allow': 1.0, 'from': 4.0, 'feels': 2.0, 'position': 1.0, 'white': 1.0, 'extended': 1.0, 'over': 2.0, 'when': 4.0, 'great': 1.0, 'if': 3.0, 'sideways': 1.0, 'overly': 1.0, 'under': 1.0, 'tend': 1.0, 'concern': 1.0, 'latching': 1.0, 'does': 2.0, 'ease': 1.0, 'used': 2.0, 'keeps': 2.0, 'pretty': 1.0, 'any': 3.0, 'release': 1.0, 'full': 1.0, 'this': 7.0, 'latches': 1.0, 'garage': 1.0, 'miniature': 1.0, 'heavy': 1.0, 'reminds': 1.0, 'bars': 3.0, 'nicely': 1.0, 'call': 1.0, 'way': 2.0, 'all': 1.0, 'open': 3.0, 'jumping': 1.0, 'outside': 1.0, 'gate': 16.0, 'i': 18.0, 'entry': 1.0, 'propped': 1.0, 'out': 2.0, 'parts': 2.0, 'anything': 1.0, 'tell': 1.0, 'the': 54.0, 'even': 1.0, 'allowed': 1.0, 'of': 16.0, 'too': 1.0, 'walk': 2.0, '3': 2.0, '70': 1.0, 'make': 3.0, 'put': 4.0, 'dachshund': 1.0, 'on': 6.0, 'large': 2.0, 'between': 1.0, 'is': 3.0, 'can': 2.0, 'included': 1.0, '2': 4.0, 'but': 5.0, 'carrying': 1.0, 'kitchen': 1.0, '80': 1.0, 'ordered': 1.0, 'didn': 2.0, 'closed': 1.0, 'just': 2.0, 'and': 17.0, 'trip': 1.0, 'not': 5.0, 'me': 3.0, 'website': 1.0, 'into': 2.0, 'through': 2.0, 'maybe': 1.0, 'without': 2.0, 'watch': 1.0, 'have': 10.0, 'up': 3.0, 'laundry': 1.0, 'metal': 1.0, 'sturdy': 1.0, 'let': 1.0, 'they': 3.0, 'door': 6.0, 'together': 2.0, 'in': 5.0, 's': 5.0, 'm': 2.0, 'clang': 1.0, 'extensions': 1.0, 've': 1.0, 'while': 2.0, 'neither': 1.0, 'jumped': 1.0, 'haven': 1.0, 'his': 2.0, 'these': 1.0, 'finish': 1.0, '5': 1.0, 'one': 4.0, 'substantial': 1.0, 'still': 1.0, 'don': 3.0, 'lock': 1.0, 'getting': 1.0, 'literally': 1.0, 'black': 1.0, 'there': 1.0, 'fit': 1.0, 'attractive': 1.0, 'others': 1.0, 'deal': 1.0, 'that': 9.0, 'quiet': 1.0, 'because': 2.0, 'sides': 1.0, 'hate': 1.0, 'bottom': 3.0, 'warning': 1.0, 'you': 9.0, 'installing': 1.0, 'note': 1.0, 'stickers': 1.0, 'are': 2.0, 'first': 3.0, 'actually': 1.0, 'step': 1.0, 'bar': 1.0, 'personally': 1.0, 'once': 2.0, 'as': 4.0, 'shut': 1.0, 'gap': 3.0, 'about': 2.0, 'tape': 1.0, 'basket': 1.0, 'dogs': 2.0, 'remarked': 1.0, 're': 3.0, 'where': 2.0, 'bothersome': 1.0, 'shiny': 1.0, 'like': 2.0, 'breaker': 1.0, 'allows': 1.0, 'wide': 1.0, 'get': 2.0, 'however': 1.0, 'dreambaby': 1.0, 'will': 2.0, 'tough': 1.0, 'tighen': 1.0, 'tighten': 4.0, 'its': 1.0, 'bother': 1.0, 'using': 1.0, 'with': 4.0, 'sure': 2.0, 'instructions': 1.0, 'box': 1.0, 'totally': 1.0, 'them': 6.0, 'spot': 5.0, 'presently': 1.0, 'instructional': 1.0, 'person': 1.0, 'ugly': 1.0, 'video': 2.0, 'close': 4.0, 'electrical': 1.0, 'products': 1.0, 'adjustments': 1.0, 'or': 2.0, 'their': 1.0, 'amazon': 1.0, 'both': 2.0, 'easier': 1.0, 'side': 1.0, 'll': 2.0, 'ordering': 1.0, '10': 2.0, 'for': 3.0, '15': 1.0, 'minutes': 1.0, 'use': 1.0, 'screws': 1.0, 'bit': 1.0, 'quick': 1.0, 'swings': 2.0, 'time': 1.0, 'mechanism': 1.0, 'top': 2.0, 'we': 4.0, 'mounts': 3.0, 'understand': 1.0, 'review': 1.0}
Word element => {'d': 1.0, 'made': 1.0, 'than': 1.0, 'easier': 1.0, 'after': 1.0, 'shutting': 1.0, 'returned': 1.0, 'the': 5.0, 'gate': 4.0, 'taller': 1.0, 'happy': 1.0, 'one': 1.0, 'lot': 2.0, 'since': 1.0, 'jump': 2.0, 'not': 1.0, 'enough': 1.0, 'legs': 1.0, 'mounts': 2.0, 'house': 1.0, 'tall': 1.0, 'and': 7.0, 'for': 1.0, 'we': 2.0, 'go': 1.0, 's': 2.0, 't': 1.0, 'installation': 1.0, 'that': 2.0, 'a': 6.0, 'small': 1.0, 'have': 1.0, 'our': 1.0, 'clicked': 1.0, 'problem': 1.0, 'dog': 2.0, 'paw': 1.0, 'my': 2.0, 'jumping': 2.0, 'got': 1.0, 'renting': 1.0, 'even': 1.0, 'shorkie': 1.0, 'was': 2.0, 'to': 5.0, 'hoping': 1.0, 'issues': 1.0, 'i': 6.0, 'on': 2.0, 'your': 1.0, 'cant': 1.0, 'this': 2.0, 'purchase': 1.0, 'only': 1.0, 'its': 1.0, 'with': 3.0, 'him': 3.0, 'it': 10.0, 'door': 1.0, 'he': 4.0, 'slider': 1.0, 'no': 1.0, 'wall': 1.0, 'thing': 1.0, 'lift': 1.0, 'some': 1.0, 'but': 1.0, 'can': 1.0, 'figure': 1.0, 'very': 3.0, 'little': 1.0, 'easy': 2.0, 'just': 3.0, 'smoother': 1.0, 'used': 1.0, 'pressure': 1.0, 'last': 1.0, 'testing': 1.0, 'am': 2.0, 'you': 1.0, 'there': 1.0, 'are': 1.0, 'had': 3.0, 'screws': 1.0, 'has': 3.0, 'them': 1.0, 'include': 1.0, 'if': 1.0, 'shut': 1.0, 'need': 1.0, 'is': 2.0, 'completely': 2.0, 'over': 4.0, 'open': 3.0, 'button': 1.0, 'smaller': 1.0, 'u': 1.0, 'pull': 2.0, 'back': 1.0, 'thumb': 1.0, 'slightly': 1.0, 'closes': 1.0, 'tried': 2.0, 'own': 1.0, 'his': 1.0, 'while': 1.0, 'wasn': 1.0, 'were': 1.0}
Word element => {'would': 1.0, 've': 1.0, 'i': 1.0, 'bought': 1.0, 'we': 1.0, 's': 2.0, 'great': 1.0, 'the': 1.0, 'made': 1.0, 'second': 1.0, 'is': 1.0, 'gate': 3.0, 'well': 1.0, 'a': 1.0, 'as': 1.0, 'and': 1.0, 'this': 2.0, 'it': 2.0, 'recommend': 1.0, 'easy': 1.0, 'use': 1.0, 'to': 1.0, 'install': 1.0, 'too': 1.0}
Word element => {'little': 1.0, 'then': 1.0, 'by': 1.0, 'measure': 1.0, 'bad': 1.0, 'probably': 1.0, 'isn': 1.0, 'right': 1.0, 'recommend': 1.0, 'doesn': 1.0, 'sometimes': 1.0, 'able': 1.0, 'baby': 1.0, 'so': 1.0, 'off': 1.0, 'enough': 1.0, 'purpose': 1.0, 'will': 1.0, 'serve': 1.0, 'up': 1.0, 'own': 1.0, 'fit': 1.0, 'where': 1.0, 'for': 2.0, 'there': 1.0, 'exact': 2.0, 'using': 1.0, 'one': 1.0, 'again': 1.0, 'am': 1.0, 'be': 2.0, 'trying': 1.0, 'opening': 1.0, 'plastic': 1.0, 'measurement': 1.0, 'had': 1.0, 'do': 1.0, 'extensions': 2.0, 'its': 3.0, 'with': 2.0, 'doorway': 1.0, 'it': 9.0, 'more': 1.0, 'is': 7.0, 'possibly': 1.0, 'without': 2.0, 'gate': 4.0, 'the': 10.0, 'this': 4.0, 'perfect': 2.0, 'pieces': 1.0, 'top': 1.0, 'if': 2.0, 'flexibility': 1.0, 'i': 3.0, 'or': 1.0, 'a': 1.0, 'go': 1.0, 't': 2.0, 'stairs': 1.0, 'recommendation': 1.0, 'on': 2.0, 'your': 1.0, 'of': 2.0, 'take': 1.0, 'to': 5.0, 'any': 1.0, 'my': 2.0, 'tight': 1.0, 'fits': 1.0, 'out': 1.0, 'can': 1.0, 'but': 1.0, 'though': 1.0, 'sides': 1.0, 'that': 2.0, 'push': 1.0, 'are': 1.0, 'set': 1.0, 'used': 2.0, 'because': 2.0, 'does': 2.0, 'click': 1.0, 'tighten': 1.0, 'too': 1.0, 'closed': 1.0, 'block': 1.0, 'and': 2.0, 'down': 1.0, 'perfectly': 1.0, 'loosen': 1.0, 'not': 5.0, 'extra': 1.0, 'close': 1.0}
Word element => {'air': 1.0, 'for': 1.0, 'fresh': 1.0, 'open': 1.0, 'looks': 1.0, 'door': 1.0, 'safe': 1.0, 'use': 1.0, 'back': 1.0, 'inside': 1.0, 'keeps': 1.0, 'keep': 1.0, 'baby': 1.0, 'designed': 1.0, 's': 1.0, 'sometimes': 1.0, 'also': 2.0, 'it': 2.0, 'to': 2.0, 'and': 1.0, 'do': 1.0, 'cats': 1.0, 'what': 1.0, 'does': 1.0, 'i': 2.0, 'when': 1.0, 'out': 1.0, 'great': 1.0, 'pets': 1.0, 'the': 2.0, 'have': 1.0}
Word element => {'with': 1.0, 'happy': 1.0, 'had': 1.0, 've': 1.0, 'tighten': 1.0, 'things': 1.0, 'pretty': 1.0, 'is': 2.0, 'not': 1.0, 'm': 1.0, 'i': 1.0, 'couple': 1.0, 'out': 1.0, 'run': 1.0, 'but': 1.0, 'us': 1.0, 'shut': 1.0, 'pull': 1.0, 'so': 2.0, 'great': 1.0, 'now': 2.0, 'away': 1.0, 'and': 4.0, 'this': 1.0, 'duty': 1.0, 'looks': 1.0, 'it': 6.0, 'stopped': 1.0, 'the': 5.0, 'gate': 2.0, 'has': 2.0, 'keep': 1.0, 'at': 1.0, 'use': 2.0, 'gets': 1.0, 'to': 3.0, 'our': 2.0, 'from': 1.0, 'have': 1.0, 'dogs': 1.0, 'must': 1.0, 'open': 1.0, 're': 1.0, 'house': 1.0, 'extensions': 1.0, 'only': 1.0, 'much': 1.0, 'considering': 1.0, 'do': 2.0, 'works': 1.0, 'bedrooms': 1.0, 'used': 2.0, 'been': 1.0, 'day': 1.0, 'close': 1.0, 'in': 2.0, 'we': 5.0, 'a': 4.0, 'fine': 1.0, 'heavily': 1.0, 'hallway': 1.0, 'for': 1.0, 'sturdy': 1.0, 'year': 1.0, 'almost': 1.0, 'behind': 1.0, 'latch': 1.0, 'surprised': 1.0, 'seriously': 1.0, 'how': 1.0, '100': 1.0, 'working': 1.0, 'times': 2.0, 'self': 1.0, 'closing': 1.0, 'heavy': 1.0, 'hinge': 1.0}
Word element => {'when': 1.0, 'knock': 1.0, 'that': 1.0, 'enough': 1.0, 'tension': 1.0, 'is': 2.0, 'install': 1.0, 'easy': 1.0, 'super': 1.0, 'got': 1.0, 'every': 1.0, 'would': 1.0, 'they': 3.0, 'strong': 1.0, 'because': 1.0, 't': 1.0, 'provider': 1.0, 'jump': 2.0, 'daycare': 1.0, 'and': 2.0, 'during': 1.0, 'am': 1.0, 'don': 1.0, 'baby': 2.0, 'on': 1.0, 'over': 2.0, 'gate': 3.0, 'go': 1.0, 'it': 3.0, 'this': 1.0, 'love': 1.0, 'i': 3.0, 'meal': 1.0, 'since': 1.0, 'a': 2.0, 'kennel': 1.0, 'times': 1.0, 'but': 1.0, 'naps': 1.0, 'my': 1.0, 'cocker': 1.0, 'there': 1.0, 'spaniels': 1.0, 'to': 2.0, 'had': 1.0, 'in': 1.0}
Word element => {'swing': 1.0, 'this': 1.0, 'with': 1.0, 'say': 1.0, 'it': 1.0, 'daughter': 1.0, 'am': 1.0, 'loosens': 1.0, 'disappointed': 1.0, 'goes': 1.0, 'pressure': 2.0, 'tighten': 1.0, 'shut': 1.0, 'if': 1.0, 'taught': 1.0, 'through': 2.0, 'runs': 1.0, 'intelligent': 1.0, 'these': 1.0, 'up': 2.0, 'over': 2.0, 'the': 6.0, 'gate': 3.0, 'just': 3.0, 's': 1.0, 'we': 1.0, 'a': 1.0, 'could': 1.0, 'year': 3.0, 'one': 1.0, 'decided': 1.0, 'recently': 1.0, 'open': 3.0, 'right': 4.0, 'an': 1.0, 'needless': 1.0, '2': 1.0, 'can': 2.0, 'but': 1.0, 'have': 1.0, 'my': 1.0, 'strung': 1.0, 'very': 1.0, 'read': 1.0, 'how': 1.0, 'he': 4.0, 'extremely': 1.0, 'dream': 1.0, 'standard': 1.0, 'old': 3.0, 'jump': 1.0, 'long': 1.0, 'before': 1.0, 'looked': 1.0, 'keep': 1.0, 'who': 1.0, 'so': 4.0, 'time': 1.0, 'our': 1.0, 'all': 2.0, 'to': 4.0, 'get': 2.0, 'and': 2.0, 'they': 2.0, 'reviews': 1.0, 'gates': 2.0, 'are': 1.0, 'high': 1.0, 'were': 1.0, 'good': 2.0, 'height': 1.0, 'ordered': 1.0, 'baby': 1.0, 'quality': 1.0, 'them': 3.0, 'i': 6.0, 'two': 1.0}
Word element => {'garnish': 1.0, 'dander': 1.0, 'not': 1.0, 'counter': 1.0, 'plate': 1.0, 'in': 1.0, 'able': 2.0, 'hasn': 1.0, 'enough': 1.0, 'high': 1.0, 'purposes': 1.0, 'my': 1.0, 'serves': 1.0, 'used': 1.0, 'preparing': 1.0, 'cat': 2.0, 'keeps': 1.0, 'will': 2.0, 'been': 1.0, 'that': 2.0, 'now': 1.0, 'to': 7.0, 'was': 2.0, 'kitchen': 1.0, 'you': 1.0, 'a': 2.0, 's': 2.0, 't': 2.0, 'of': 2.0, 'i': 4.0, 'this': 1.0, 'only': 1.0, 'first': 1.0, 'how': 2.0, 'well': 2.0, 'convenient': 1.0, 'especially': 1.0, 'get': 1.0, 'easy': 1.0, 'be': 2.0, 'out': 1.0, 'nice': 1.0, 'install': 1.0, 'and': 4.0, 'baby': 1.0, 'but': 1.0, 'food': 2.0, 'on': 2.0, 'the': 7.0, 'gate': 1.0, 'counters': 1.0, 'leave': 1.0, 'have': 2.0, 'fear': 1.0, 'is': 2.0, 'open': 1.0, 'thing': 1.0, 'lift': 1.0, 'push': 1.0, 'pull': 1.0, 'it': 8.0, 'annoying': 1.0, 'or': 1.0, 'like': 2.0, 'which': 1.0, 'at': 1.0, 'didn': 1.0, 'got': 1.0}
Word element => {'us': 1.0, 'good': 1.0, 'important': 1.0, 'quality': 1.0, 'very': 1.0, 'have': 1.0, 'this': 1.0, 'gates': 1.0, 'was': 2.0, 'a': 1.0, 'with': 1.0, 'purchase': 1.0, '8': 1.0, 'to': 2.0, 'old': 1.0, 'twins': 1.0, 'great': 1.0, 'month': 1.0, 'it': 1.0}
Word element => {'well': 1.0, 'keeps': 1.0, 'even': 2.0, 'easy': 1.0, 'poodles': 1.0, 'as': 1.0, 'have': 1.0, 'climber': 1.0, 'i': 1.0, '2': 1.0, 'standard': 1.0, 'gate': 2.0, 'love': 2.0, 'this': 2.0, 'it': 1.0, 'my': 1.0, 'back': 1.0, 'nice': 1.0, 'to': 1.0, 'and': 2.0, 'get': 1.0, 'in': 1.0, 'out': 1.0, 'looks': 1.0}
Word element => {'them': 1.0, 'are': 1.0, 'included': 1.0, 'at': 2.0, 'open': 1.0, 'me': 1.0, 'stay': 1.0, 'unlike': 1.0, 'wasn': 1.0, 'locks': 1.0, 'when': 1.0, 'click': 1.0, 'appears': 1.0, 'can': 1.0, 'but': 3.0, 'savings': 1.0, 'would': 1.0, 'solid': 1.0, 'pleasant': 1.0, 'how': 1.0, 'about': 1.0, 'concerned': 1.0, 'mounted': 1.0, 'pressure': 1.0, 'being': 1.0, 'point': 1.0, 'makes': 1.0, 'old': 1.0, 'getting': 1.0, 'breaker': 1.0, 'into': 1.0, 'that': 2.0, 'hoping': 1.0, 'extensions': 1.0, 'certain': 1.0, 'its': 1.0, 'doesn': 1.0, 'was': 2.0, 'purchased': 1.0, 'had': 1.0, 'for': 2.0, 'one': 5.0, 'opted': 1.0, 'states': 2.0, 'happy': 1.0, 'i': 5.0, 'by': 2.0, 'constructed': 1.0, 'to': 4.0, 'as': 1.0, 'little': 1.0, 'very': 2.0, 'and': 2.0, 'this': 4.0, 'nontrivial': 1.0, 'it': 4.0, 'with': 1.0, 'grows': 1.0, 'on': 1.0, 'height': 1.0, 'torn': 1.0, 'my': 1.0, 'purchase': 1.0, 'due': 1.0, 'without': 1.0, 'deal': 1.0, 'place': 1.0, 'gate': 3.0, 'the': 7.0, 'between': 1.0, 'puppy': 2.0, 'well': 1.0, 'north': 2.0, 'superclose': 1.0, 'up': 1.0, 'of': 1.0, 'also': 1.0, 'will': 1.0, 'sneak': 1.0, 'still': 1.0, 't': 2.0, 'a': 6.0, 'sufficient': 1.0, 'nice': 1.0, 'feel': 1.0, 'disincentive': 1.0, 'is': 1.0, 'unable': 1.0, 'through': 2.0, 'm': 1.0, 'account': 1.0, 'be': 3.0, 'him': 1.0}
Word element => {'replacing': 1.0, 'don': 1.0, 'measure': 1.0, 'sure': 1.0, 'just': 1.0, 'otherwise': 1.0, 'with': 4.0, 'replace': 1.0, 'great': 1.0, 'until': 1.0, 'issue': 1.0, 'an': 1.0, 'realize': 1.0, 'height': 2.0, 'extra': 1.0, 'gates': 1.0, 'their': 1.0, 'label': 1.0, 'didn': 1.0, 'escape': 1.0, 'can': 1.0, 'our': 1.0, 'as': 1.0, 'to': 4.0, 'decided': 1.0, 'one': 2.0, 'on': 1.0, 'make': 1.0, 'your': 1.0, 'isn': 1.0, 'rest': 1.0, 'knob': 3.0, 'this': 3.0, 'it': 1.0, 'level': 1.0, 'plan': 1.0, 'is': 2.0, 'the': 3.0, 'gate': 2.0, 'well': 1.0, 'functioning': 1.0, 'however': 1.0, 'that': 3.0, 'hit': 1.0, 'you': 3.0, 'hole': 2.0, 'we': 2.0, 'going': 1.0, 't': 3.0, 'a': 7.0, 's': 3.0, 'plenty': 1.0, 'assured': 1.0, 'high': 2.0, 'baby': 3.0, 'quality': 1.0, 'fact': 1.0, 'little': 1.0, 'at': 3.0, '34': 4.0, 'and': 1.0, 'tall': 3.0, 'enough': 1.0, 'different': 1.0, '39': 1.0, 'preventing': 1.0, 'standard': 1.0, 'installed': 1.0, 'room': 1.0, 'shutting': 1.0, 'if': 1.0, 'in': 2.0, 'from': 1.0, 'threshold': 1.0, 'door': 5.0, '36': 1.0, 'be': 2.0, 'new': 1.0, 'would': 2.0, 'other': 1.0, 'manufacturer': 1.0}
Word element => {'large': 1.0, 'from': 1.0, 'opening': 1.0, 'can': 1.0, 'doorways': 1.0, 'could': 1.0, 'in': 2.0, 'for': 1.0, 'so': 1.0, 'else': 1.0, 'install': 1.0, 'to': 2.0, 'narrow': 1.0, 'easy': 1.0, 'the': 1.0, 'adjustable': 1.0, 'what': 1.0, 'used': 1.0, 'tall': 1.0, 'is': 1.0, 'many': 1.0, 'door': 1.0, 'want': 1.0, 'a': 2.0, 'gate': 1.0, 'extensions': 1.0, 'you': 1.0, 's': 2.0, 'with': 1.0, 'it': 5.0, 'we': 1.0, 'go': 1.0, 'different': 1.0, 'have': 1.0}
Word element => {'trouble': 1.0, 'get': 1.0, 'doesn': 1.0, 'house': 1.0, 'spots': 1.0, 'other': 1.0, 'able': 1.0, 'son': 1.0, 'once': 1.0, 'use': 2.0, 'good': 1.0, 'will': 1.0, 'seems': 1.0, 'this': 1.0, 'into': 2.0, 'like': 2.0, 'be': 1.0, 'him': 2.0, 'them': 1.0, 't': 1.0, 'we': 4.0, 'his': 1.0, 'jump': 2.0, 'put': 1.0, 'crib': 1.0, 'in': 3.0, 'out': 1.0, 'newborn': 1.0, 'they': 1.0, 'cats': 2.0, 'not': 1.0, 'sons': 2.0, 'keep': 1.0, 'room': 2.0, 'it': 2.0, 'doorway': 1.0, 'impossible': 1.0, 'sleep': 1.0, 'our': 5.0, 'to': 6.0, 'as': 1.0, 'very': 1.0, 'would': 1.0, 'worrying': 1.0, 'new': 1.0, 'parents': 1.0, 'open': 1.0, 'disturbing': 1.0, 'for': 1.0, 'want': 1.0, 'he': 1.0, 'walk': 1.0, 'door': 1.0, 'around': 1.0, 'is': 2.0, 'so': 2.0, 'hear': 1.0, 'can': 2.0, 'about': 1.0, 'the': 4.0, 'gate': 2.0, 'over': 1.0, 'and': 3.0, 'tall': 1.0, 'plus': 1.0}
Word element => {'own': 1.0, 'on': 1.0, 'out': 1.0, 'figure': 1.0, 'probably': 1.0, 'll': 1.0, 'addition': 1.0, 'good': 1.0, 'something': 1.0, 'would': 1.0, 'be': 1.0, 'him': 1.0, 'in': 1.0, 'entering': 1.0, 'of': 1.0, 'there': 1.0, 'and': 2.0, 'parts': 1.0, 'that': 2.0, 'i': 2.0, 'which': 1.0, 'device': 1.0, 'bought': 1.0, 'prevent': 1.0, 'fine': 1.0, 'is': 2.0, 'type': 1.0, 'don': 1.0, 'our': 1.0, 'to': 2.0, 'greyhound': 1.0, 'from': 1.0, 'open': 1.0, 'for': 1.0, 'want': 1.0, 'shut': 1.0, 'it': 2.0, 'only': 1.0, 'way': 1.0, 'italian': 1.0, 'just': 1.0, 'my': 2.0, 'house': 1.0, 'comlaint': 1.0, 'security': 1.0, 'no': 1.0, 'swinging': 1.0, 'bungee': 1.0, 'the': 3.0, 'gate': 2.0, 'without': 1.0, 'even': 1.0, 'we': 1.0, 't': 1.0, 's': 1.0, 'a': 2.0, 'leave': 1.0, 'small': 1.0}
Word element => {'use': 1.0, 'easy': 1.0, 'as': 1.0, 'son': 1.0, 'is': 1.0, 'really': 1.0, 'my': 1.0, 'expanded': 1.0, 'nice': 1.0, 'special': 1.0, 'used': 1.0, 'looked': 1.0, 'he': 1.0, 'this': 1.0, 'it': 3.0, 'great': 1.0, 'i': 2.0, 'to': 1.0, 'was': 2.0, 'well': 1.0, 'a': 1.0, 'height': 1.0, 'and': 2.0, 'stayed': 1.0, 'put': 1.0, 'needs': 1.0, 'also': 1.0, 'for': 1.0, 'liked': 1.0, 'how': 1.0}
Word element => {'white': 1.0, 'black': 1.0, 'ways': 1.0, 'swings': 1.0, 'house': 1.0, 'in': 2.0, 'out': 1.0, 'keep': 1.0, 'these': 1.0, 'several': 1.0, 'styles': 1.0, 'other': 1.0, 'can': 1.0, 'open': 1.0, 'door': 1.0, 'many': 2.0, 'different': 1.0, 'than': 1.0, 'certain': 1.0, 'extensions': 1.0, 'with': 2.0, 'widths': 1.0, 'on': 1.0, 'of': 6.0, 'available': 1.0, 'curved': 1.0, 'gate': 3.0, 'the': 7.0, 'great': 1.0, 'is': 1.0, 'comes': 2.0, 'more': 1.0, 'she': 1.0, 'it': 1.0, 'arch': 1.0, 'that': 2.0, 'as': 1.0, 'to': 2.0, 'tallest': 1.0, 'nicer': 1.0, 'gates': 3.0, 'are': 1.0, 'one': 1.0, 'two': 1.0, 'i': 2.0, 'found': 1.0, 'extension': 1.0, 'fit': 1.0, 'top': 1.0, 'have': 2.0, 'sizes': 2.0, 'and': 2.0, 'too': 1.0, 'makes': 1.0, 'a': 1.0, 'little': 1.0, 'looking': 1.0, 'quality': 1.0, 'baby': 1.0, 'dog': 2.0, 'market': 1.0, 'both': 2.0, 'best': 1.0, 'part': 1.0, 'rooms': 1.0, 'my': 2.0, 'cannot': 1.0}
Word element => {'over': 1.0, 'push': 1.0, 'jams': 1.0, 'into': 1.0, 'them': 1.0, 'screw': 1.0, 'included': 1.0, 'use': 1.0, 'sure': 1.0, 'big': 1.0, 'be': 1.0, 'him': 1.0, 'well': 1.0, 'solid': 1.0, 'works': 1.0, 'it': 2.0, 'this': 1.0, 'necessary': 1.0, 'and': 4.0, 'you': 1.0, 'when': 1.0, 'through': 1.0, 'years': 1.0, 'between': 1.0, 'after': 1.0, 'although': 1.0, 'kitchen': 1.0, 'keep': 1.0, 'did': 1.0, 'if': 3.0, 'door': 1.0, 'dining': 1.0, 'purchase': 1.0, 'chew': 1.0, 'gate': 1.0, 'wrap': 1.0, 'the': 6.0, 'around': 1.0, 'is': 1.0, 'room': 1.0, 'collar': 1.0, 'cups': 1.0, 'our': 2.0, 'to': 3.0, 'can': 1.0, '80': 1.0, '2': 1.0, 'four': 1.0, 'dogs': 4.0, 'leave': 1.0, 'have': 3.0, 'pound': 1.0, 'one': 1.0, 'not': 2.0, 'broken': 1.0, 'put': 1.0, 'on': 1.0, 'yet': 1.0, 'latch': 2.0, 'a': 1.0, 'separated': 1.0, 'we': 3.0, 'go': 1.0, 'out': 1.0}
Word element => {'press': 1.0, 'high': 1.0, 'sufficiently': 1.0, 'flat': 1.0, 'open': 2.0, 'pre': 1.0, 'existing': 1.0, 'part': 3.0, 'bold': 1.0, 'adjust': 1.0, 'design': 4.0, 'mis': 2.0, 'satisfied': 1.0, 'doorway': 5.0, 'your': 2.0, 'using': 1.0, 'smooth': 1.0, 'easily': 2.0, 'you': 4.0, 'into': 4.0, 'written': 1.0, 'there': 1.0, 'black': 1.0, 'well': 3.0, 'simple': 2.0, 'i': 5.0, 'coated': 1.0, 'however': 1.0, 'this': 7.0, 'very': 3.0, 'required': 1.0, 'assembly': 1.0, 'surfaces': 1.0, 'apart': 1.0, 'amount': 1.0, 'adjusters': 1.0, 'on': 1.0, 'have': 3.0, 'small': 1.0, 'a': 7.0, 'great': 3.0, 'option': 1.0, 'assembled': 1.0, 'fastening': 1.0, 'gate': 8.0, 'the': 33.0, 'of': 9.0, 'heavy': 1.0, 'as': 1.0, 'when': 3.0, 'to': 13.0, 'all': 1.0, 'an': 5.0, 'fits': 1.0, 'and': 13.0, 'automatically': 1.0, 'letters': 1.0, 'works': 2.0, 'certain': 1.0, 'areas': 1.0, 'match': 1.0, 'house': 2.0, 'important': 1.0, 'four': 1.0, 'appropriate': 1.0, 'most': 1.0, 'back': 1.0, 'but': 3.0, 'bend': 1.0, 'ordered': 2.0, 'two': 2.0, 'hefty': 1.0, 'quickly': 1.0, 'options': 1.0, 'bottom': 1.0, 'in': 11.0, 'buy': 1.0, 'these': 1.0, 'against': 1.0, 'sided': 1.0, 'comes': 1.0, 'once': 1.0, 'maltese': 1.0, 'tools': 1.0, 'use': 1.0, 'metal': 1.0, 'they': 3.0, 'available': 1.0, 'instructions': 1.0, 'adjusted': 2.0, 'puppy': 1.0, 'powder': 1.0, 'gating': 2.0, 'clever': 1.0, 'insert': 2.0, 'product': 3.0, 'for': 7.0, 'mark': 1.0, 'word': 1.0, 'm': 1.0, 's': 2.0, 'what': 1.0, 'threaded': 1.0, 'requiring': 1.0, 'children': 1.0, 'shipped': 1.0, 'otherwise': 1.0, 'first': 2.0, 'pressure': 2.0, 'width': 2.0, 'extension': 1.0, 'wider': 1.0, 'made': 1.0, 'white': 1.0, 'provided': 2.0, 'no': 1.0, 'inch': 1.0, 'not': 3.0, 'exactly': 1.0, 'say': 1.0, 'opposing': 1.0, 'at': 1.0, 'pads': 4.0, 'vertical': 1.0, 'place': 3.0, 'plastic': 1.0, 'cups': 3.0, 'door': 2.0, 'jamb': 2.0, 'screws': 2.0, 'or': 6.0, 'anchor': 1.0, 'also': 2.0, 'need': 2.0, 'feature': 1.0, 'double': 1.0, 'adhesive': 2.0, 'may': 1.0, 'unpacked': 1.0, 'are': 4.0, 'my': 1.0, 'hesitate': 1.0, 'price': 1.0, 'try': 2.0, 'manufacturing': 1.0, 'rubber': 1.0, 'area': 1.0, 'would': 3.0, 'do': 3.0, 'either': 1.0, 'properly': 1.0, 'avoid': 1.0, 'solid': 2.0, 'definitely': 1.0, 'will': 2.0, 'within': 2.0, 'move': 1.0, 'become': 2.0, 'aligned': 1.0, 'appears': 1.0, 'easy': 2.0, 'fit': 3.0, 'defect': 1.0, 'it': 6.0, 'be': 4.0, 'other': 1.0, 'attention': 1.0, 'shapen': 1.0, 'spread': 1.0, 'so': 2.0, 'is': 12.0, 'can': 1.0, 'top': 1.0, 'installed': 2.0, 'inclination': 1.0, 'shape': 1.0, 'thinking': 1.0, 'third': 1.0, 'wrong': 1.0, 'intentional': 1.0, 'that': 1.0, 'placed': 1.0, 'straighten': 2.0, 'plumb': 1.0, 'manufacturer': 1.0, 'needs': 1.0, 'clearly': 1.0, 'stop': 1.0, 'attempt': 1.0, 'worth': 1.0, 'catch': 1.0, 'purchaser': 1.0, 'operation': 1.0, 'quick': 1.0, 'than': 1.0, 'removed': 1.0, 're': 1.0, 'value': 1.0, 'opinion': 1.0, 'which': 1.0, 'again': 1.0, 'recommend': 1.0, 'add': 1.0, 'short': 1.0, 'should': 1.0, 'pets': 1.0, 'note': 1.0, 'must': 1.0}
Word element => {'people': 1.0, 'garbage': 1.0, 'use': 1.0, 'now': 1.0, 'open': 2.0, 'do': 1.0, 'over': 2.0, 'jump': 1.0, 'able': 1.0, 'not': 1.0, 'height': 1.0, 'silly': 1.0, 'locked': 1.0, 'an': 1.0, 'locks': 1.0, 'reason': 1.0, 'good': 1.0, 'that': 3.0, 'dogs': 1.0, 'have': 2.0, 'klee': 1.0, 'alaskan': 1.0, 'with': 1.0, 'kai': 1.0, 'is': 3.0, 'area': 1.0, 'himself': 1.0, 'little': 1.0, 'very': 1.0, '10lbs': 1.0, 'i': 6.0, 'contain': 1.0, 'recommend': 1.0, 'problematic': 1.0, 'got': 2.0, 'dog': 1.0, 'and': 1.0, 'play': 1.0, 'energetic': 1.0, 'wish': 1.0, 'doing': 1.0, 'this': 2.0, 'he': 5.0, 'looks': 1.0, 'stopped': 1.0, 'it': 5.0, 'a': 3.0, 'as': 1.0, 'to': 5.0, 'main': 1.0, 'keep': 2.0, 'in': 1.0, 'will': 1.0, 'seems': 1.0, 'other': 1.0, 'separate': 1.0, 'kitchen': 1.0, 'gate': 4.0, 'the': 6.0, 'puppy': 1.0, 'athough': 1.0, 'than': 1.0, 'because': 3.0, 'does': 1.0, 'part': 1.0, 'his': 2.0, 'can': 3.0, 'for': 1.0, 'fit': 1.0, 'through': 1.0, 'of': 1.0, 'extra': 1.0, 'bars': 1.0, 'head': 1.0, 'hurting': 1.0, 'which': 3.0, 'him': 1.0, 'be': 3.0, 'on': 1.0, 'think': 1.0, 'my': 1.0, 'may': 1.0}
Word element => {'awesome': 1.0, 'good': 1.0, 'only': 1.0, 'have': 1.0, 'things': 1.0, 'problem': 1.0, 'with': 1.0, 'through': 1.0, 'can': 1.0, 'friends': 1.0, 'sized': 1.0, 'pressure': 1.0, 'about': 1.0, 'no': 1.0, 'wall': 1.0, 'well': 1.0, 'capability': 1.0, 'open': 1.0, 'be': 1.0, 'handed': 1.0, 'say': 1.0, 'is': 3.0, 'gate': 5.0, 'the': 5.0, 's': 1.0, 'a': 1.0, 't': 1.0, 'great': 1.0, 'fantastic': 1.0, 'screw': 1.0, 'it': 3.0, 'direction': 1.0, 'this': 2.0, 'perfect': 1.0, 'in': 1.0, 'also': 1.0, 'didn': 1.0, 'little': 1.0, 'opens': 1.0, 'realize': 1.0, 'into': 1.0, 'that': 1.0, 'one': 2.0, 'fit': 1.0, 'for': 1.0, 'love': 1.0, 'keeping': 1.0, 'had': 1.0, 'either': 1.0, 'as': 2.0, 'to': 4.0, 'our': 2.0, 'crawler': 1.0, 'confined': 1.0, 'and': 1.0, 'self': 1.0, 'easy': 1.0, 'area': 1.0, 'closing': 1.0, 'i': 3.0, 'feature': 1.0, 'plus': 1.0}
Word element => {'will': 1.0, 'install': 1.0, 'small': 1.0, 'in': 1.0, 'hole': 1.0, 'drill': 1.0, 'wall': 1.0, 'you': 1.0, 'very': 1.0, 'this': 1.0, 'only': 1.0, 'it': 2.0, 'climb': 1.0, 'cant': 2.0, 'ti': 1.0, 'over': 1.0, 'gate': 2.0, 'a': 3.0, 'another': 1.0, 'height': 1.0, 'to': 1.0, 'was': 1.0, 'c': 1.0, 'down': 1.0, 'daycare': 1.0, 'and': 2.0, 'sturdy': 2.0, 'that': 2.0, 'kids': 2.0, 'am': 1.0, 'easy': 1.0, 'needed': 1.0, 'buy': 1.0, 'i': 2.0, 'enough': 1.0, 'have': 1.0, 'all': 1.0, 'provider': 1.0, 'the': 3.0, 'care': 1.0, 'for': 2.0, 'love': 3.0, 'knock': 1.0, 'taller': 1.0, 'b': 1.0, 'they': 1.0}
Word element => {'childern': 1.0, 'grand': 1.0, 'was': 2.0, 'never': 1.0, 'because': 1.0, 'just': 1.0, 'happy': 1.0, 'went': 1.0, 'my': 1.0, 'so': 2.0, 'gates': 1.0, 'got': 1.0, 'use': 1.0, 'i': 6.0, 'it': 5.0, 'this': 2.0, 'with': 1.0, 'the': 1.0, 'gate': 1.0, 'of': 1.0, 'know': 1.0, 'like': 1.0, 'ordered': 1.0, 'have': 1.0, 'knowen': 1.0, 'easy': 1.0, 'but': 2.0, 'will': 1.0, 'had': 1.0, 'what': 1.0, 'works': 2.0, 'to': 2.0, 'any': 1.0, 'up': 1.0, 'don': 1.0, 'dog': 1.0, 'tools': 1.0, 't': 1.0, 'and': 1.0, 'fine': 2.0, 'if': 1.0, 'buy': 1.0, 'ever': 2.0, 'one': 1.0, 'for': 1.0, 'not': 1.0, 'those': 1.0, 'other': 1.0, 'when': 1.0, 'again': 1.0}
Word element => {'price': 1.0, 'purchase': 1.0, 'from': 1.0, 'would': 1.0, 'problem': 1.0, 'slight': 1.0, 'have': 1.0, 'between': 1.0, 'if': 1.0, 'so': 1.0, 'most': 1.0, 'you': 2.0, '5': 1.0, 'your': 1.0, '3': 2.0, 'be': 1.0, 'form': 1.0, 'sizes': 2.0, 'many': 1.0, 'come': 1.0, 'feature': 1.0, 'addition': 1.0, 'door': 1.0, 'self': 1.0, 'smallest': 1.0, 'bay': 1.0, 'children': 1.0, 'at': 1.0, 'keep': 1.0, 'good': 1.0, '39': 1.0, 'sufficient': 1.0, 'extension': 4.0, 'ends': 1.0, 'that': 1.0, 'into': 2.0, 'great': 2.0, '1': 1.0, 'nice': 1.0, 'until': 1.0, 'deal': 1.0, 'gate': 4.0, 'the': 14.0, 'of': 1.0, 'including': 1.0, 'wall': 1.0, '75': 1.0, 'fastened': 1.0, 'fit': 1.0, 'for': 2.0, 'assemble': 1.0, 'this': 2.0, 'is': 11.0, 'might': 1.0, 'a': 8.0, 'slip': 1.0, 'metal': 1.0, 'locking': 1.0, 'rods': 1.0, 'manufacturer': 1.0, 'downside': 1.0, 'using': 1.0, 'which': 1.0, 'very': 3.0, 'all': 2.0, 'any': 1.0, 'to': 7.0, 'by': 1.0, 'just': 2.0, 'closing': 1.0, 'easy': 3.0, 'use': 1.0, 'then': 1.0, 'sturdy': 1.0, 'allowing': 1.0, 'pieces': 2.0, 'slipping': 1.0, 'also': 1.0, 'gates': 1.0, 'doorway': 2.0, 'it': 2.0, 'fastens': 1.0, 'screw': 1.0, 'in': 3.0, 'turn': 1.0, 'itself': 1.0, 'solid': 1.0, 'rod': 1.0, 'tension': 1.0, 'mechanism': 2.0, 'certain': 1.0, 'only': 1.0, 'wheel': 1.0, 'end': 1.0, 'securely': 1.0, 'and': 5.0, 'tall': 1.0}
Word element => {'around': 1.0, 'safer': 1.0, 'tighter': 1.0, 'much': 1.0, 'opening': 1.0, 'closer': 1.0, 'was': 1.0, 'switched': 1.0, 'full': 1.0, 'their': 1.0, 'extended': 1.0, 'hoped': 1.0, 'than': 1.0, '7': 1.0, 'less': 1.0, 'up': 1.0, 'however': 1.0, 'perfect': 1.0, 'be': 1.0, 'extension': 1.0, '5': 2.0, '35': 1.0, 'but': 3.0, 'old': 1.0, 'a': 5.0, 'sturdy': 1.0, 'they': 1.0, 'we': 9.0, 'reviews': 1.0, 'pads': 1.0, 'began': 1.0, 'our': 3.0, 'length': 1.0, 'to': 9.0, 'as': 2.0, 'been': 1.0, 'said': 1.0, 'regular': 1.0, 'in': 1.0, 'user': 1.0, 'near': 1.0, 'on': 1.0, 'make': 2.0, 'due': 1.0, 'such': 1.0, 'for': 3.0, 'product': 1.0, 'gates': 1.0, 'can': 2.0, 'so': 4.0, 'needs': 1.0, 'have': 3.0, '3': 1.0, 'older': 1.0, 'now': 1.0, 'children': 1.0, 'only': 1.0, 'fit': 3.0, 't': 2.0, 'tightened': 1.0, 'daughter': 1.0, 'got': 2.0, 'extensions': 2.0, 'this': 3.0, 'which': 1.0, 'based': 1.0, 'get': 1.0, 'seemed': 1.0, 'sure': 1.0, 'had': 2.0, 'climb': 1.0, 'seems': 1.0, 'will': 1.0, 'tall': 1.0, 'closed': 1.0, 'and': 3.0, 'far': 1.0, 'order': 1.0, 'height': 1.0, 'about': 1.0, 'received': 1.0, 'lift': 1.0, 'all': 1.0, 'measures': 1.0, 'month': 2.0, 'she': 1.0, 'thought': 1.0, 'it': 6.0, 'decided': 1.0, 'these': 1.0, 'gate': 5.0, 'extra': 1.0, 'the': 18.0, 'of': 3.0, 'is': 1.0, 'down': 1.0, 'them': 2.0, 'has': 2.0, 'figured': 1.0, 'out': 1.0, 'safety': 1.0, 'latch': 1.0, 'slide': 1.0, 'would': 1.0, 'properly': 1.0, 'work': 1.0, 'open': 3.0, 'or': 1.0, 'feature': 3.0, 'having': 1.0, 'that': 2.0, 'fall': 1.0, 'because': 2.0, 'stairs': 1.0, 'slightly': 1.0, 'blocking': 1.0, 'you': 2.0, 'when': 2.0, 'buffer': 1.0, 'position': 1.0, 'correctly': 2.0, 'swing': 1.0, 'not': 1.0, '15': 1.0, 'aligned': 1.0, 'great': 1.0, 'excellent': 1.0, 'really': 1.0, 'helpful': 1.0, 'set': 2.0, 'with': 2.0, 'width': 1.0, 'stairwell': 1.0}
Word element => {'baby': 1.0, 'looking': 1.0, 'free': 1.0, 're': 2.0, 'realize': 1.0, 'doubling': 1.0, 'worry': 1.0, 'don': 1.0, 'when': 1.0, 'great': 1.0, 'carrying': 1.0, 'automatically': 1.0, 'opens': 1.0, 'door': 1.0, 's': 1.0, 'once': 1.0, 've': 1.0, 'etc': 1.0, 'back': 2.0, 'same': 1.0, 'sure': 1.0, 'make': 1.0, 'fine': 1.0, 'then': 2.0, 'left': 2.0, 'choice': 1.0, 'things': 1.0, 'you': 2.0, 'remains': 1.0, 'had': 1.0, 'screws': 1.0, 'getting': 1.0, 'difficulty': 1.0, 'haven': 1.0, 'fact': 1.0, 'made': 1.0, 'have': 2.0, '2010': 1.0, 'august': 1.0, 'order': 1.0, 'through': 2.0, 'one': 1.0, 'try': 1.0, 'too': 1.0, 'and': 7.0, 'across': 1.0, 'or': 1.0, 'they': 5.0, 'close': 1.0, 'how': 1.0, 'about': 1.0, 'walk': 1.0, 'point': 1.0, 'before': 2.0, 'worried': 1.0, 'just': 1.0, 'properly': 1.0, 'would': 1.0, 'closes': 1.0, 'third': 1.0, 'wasn': 1.0, 'd': 3.0, 'go': 2.0, 'steps': 1.0, 'tightened': 2.0, 't': 4.0, 'arrived': 1.0, 'them': 1.0, 'gate': 2.0, 'set': 2.0, 'used': 1.0, 'up': 6.0, 'break': 1.0, 'wanted': 1.0, 'to': 9.0, 'in': 4.0, 'for': 2.0, 'thought': 1.0, 'it': 12.0, 'only': 1.0, 'this': 1.0, 'case': 1.0, 'that': 6.0, 'jump': 1.0, 'bought': 1.0, 'a': 5.0, 'story': 1.0, 'but': 2.0, 'hard': 1.0, 'over': 3.0, 'work': 1.0, 'house': 1.0, 'enough': 1.0, 'not': 2.0, 'cats': 3.0, 'mid': 1.0, 'me': 1.0, 'three': 2.0, 'since': 1.0, 'second': 1.0, 'landing': 2.0, 'right': 3.0, 'came': 1.0, 'bars': 2.0, 'floors': 1.0, 'at': 1.0, 'is': 3.0, 'bothered': 1.0, 'first': 1.0, 'are': 1.0, 'tighten': 1.0, 'were': 1.0, 'together': 1.0, 'redo': 1.0, 'even': 2.0, 'perfect': 1.0, 'ended': 1.0, 'the': 17.0, 'of': 4.0, 'i': 10.0, 'well': 1.0, 'putting': 1.0, 'be': 1.0, 'top': 1.0, 'setting': 1.0, 'can': 1.0, 'slimmest': 1.0, 'so': 4.0, 'access': 1.0, 'see': 1.0, 'couldn': 1.0, 'there': 1.0, 'far': 2.0, 'solid': 1.0, 'if': 2.0, 'banisters': 1.0, 'none': 1.0, 'spread': 1.0, 'some': 1.0, 'dissuaded': 1.0, 'all': 3.0, 'jumping': 1.0, 'allow': 1.0, 'from': 1.0, 'know': 1.0, 'however': 1.0, 'get': 1.0, 'with': 1.0, 'middle': 1.0, 'having': 1.0}
Word element => {'enough': 1.0, 'tall': 1.0, '3': 1.0, 'we': 1.0, 'away': 1.0, 'have': 1.0, 'rental': 1.0, 'from': 1.0, 'a': 1.0, 'out': 1.0, 'them': 1.0, 'for': 2.0, '100lb': 1.0, 'house': 1.0, 'quality': 1.0, 'got': 1.0, 'i': 1.0, 'this': 1.0, 'it': 1.0, 'keeps': 1.0, 'good': 1.0, 'company': 1.0, 'the': 1.0, 'dogs': 1.0, 'price': 1.0}
Word element => {'stairs': 1.0, 'top': 1.0, 'if': 1.0, 'needed': 1.0, 'assured': 1.0, '800': 1.0, 'at': 2.0, 'according': 1.0, 'which': 1.0, 'cup': 1.0, 'mounting': 2.0, 'a': 1.0, 'were': 1.0, 'that': 2.0, 'to': 1.0, 'was': 3.0, 'had': 1.0, 'increased': 1.0, 'instructions': 1.0, 'gate': 1.0, 'tall': 1.0, 'height': 1.0, 'short': 1.0, 'mounted': 1.0, 'representative': 1.0, 'however': 1.0, 'installation': 1.0, 'pressure': 1.0, 'the': 6.0, 'because': 1.0, 'required': 1.0, 'purchased': 1.0, 'i': 3.0, 'auto': 1.0, 'multi': 1.0, 'of': 2.0, 'directional': 1.0, 'close': 1.0, 'swing': 1.0, 'only': 2.0, 'those': 1.0, 'extra': 1.0, 'feature': 1.0, 'simple': 1.0, 'me': 1.0, 'and': 1.0, 'issue': 1.0}
Word element => {'aggressively': 1.0, 'animal': 1.0, 'or': 1.0, 'dog': 1.0, 'have': 1.0, 'push': 1.0, 'you': 1.0, 'opening': 1.0, 'before': 1.0, 'pushed': 1.0, 'door': 4.0, 's': 1.0, 'like': 1.0, 'line': 1.0, 'also': 1.0, 'requiring': 1.0, 'handed': 1.0, 'application': 1.0, 'really': 2.0, 'aggravating': 1.0, 'to': 12.0, 'other': 1.0, 'all': 1.0, 'our': 1.0, 'their': 2.0, 'easy': 2.0, 'get': 1.0, 'something': 2.0, 'would': 4.0, 'could': 1.0, 'mechanisms': 1.0, 'latch': 1.0, 'which': 2.0, 'good': 1.0, 'out': 2.0, 'couple': 1.0, 'house': 1.0, 'and': 3.0, 'tall': 1.0, 'rabbits': 1.0, 'place': 2.0, 'gates': 2.0, 'single': 1.0, 'led': 1.0, 'lifted': 1.0, 'wanted': 2.0, 'simple': 1.0, 'my': 3.0, 'as': 2.0, 'falls': 1.0, 'bend': 1.0, 'channel': 1.0, 'scary': 1.0, 'of': 4.0, 'the': 14.0, 'bedrooms': 1.0, 'from': 3.0, 'while': 1.0, 'that': 4.0, 'because': 2.0, 'u': 1.0, 'use': 1.0, 'plastic': 1.0, 'i': 11.0, 'hurdling': 1.0, 'lazy': 1.0, 'mod': 1.0, 'baby': 2.0, 'can': 1.0, 'fumble': 1.0, 'range': 1.0, 'bottom': 3.0, 'it': 3.0, 'with': 1.0, '3': 2.0, 'extend': 1.0, 'put': 1.0, 'be': 3.0, 'dreambaby': 1.0, 'hallway': 1.0, 'for': 2.0, 'tried': 1.0, 'see': 1.0, 'plexi': 1.0, 'chose': 1.0, 'extra': 1.0, 'at': 1.0, 'sits': 1.0, 'is': 2.0, 'look': 1.0, 'bars': 3.0, 'keep': 1.0, 'did': 1.0, 'not': 3.0, 'want': 1.0, 'open': 4.0, 'over': 1.0, 'performed': 1.0, 'glass': 1.0, 'too': 1.0, 'ones': 1.0, 'leaving': 1.0, 'prevent': 2.0, 'happening': 1.0, 'somebunny': 1.0, 'gate': 2.0, 'pushing': 1.0, 'small': 1.0, 'a': 4.0, 'added': 1.0, 'tiny': 1.0, 'head': 2.0, 'thru': 3.0, 'in': 3.0, 'holland': 1.0, 'lops': 1.0, 'was': 3.0, 'lbs': 1.0, '5': 1.0, 'they': 1.0, 'if': 1.0, 'certainly': 1.0, 'this': 2.0, 'curious': 1.0}
Word element => {'things': 1.0, 'still': 1.0, 'nice': 1.0, 'because': 1.0, 'like': 1.0, 'lift': 1.0, 'back': 1.0, 'learn': 1.0, 'tricky': 1.0, 'step': 1.0, 'home': 1.0, 'haven': 1.0, 'on': 1.0, 'put': 1.0, 'easy': 1.0, 'pull': 1.0, 'together': 1.0, 'doesn': 1.0, 'was': 2.0, 'our': 1.0, 'to': 4.0, 'its': 1.0, 'had': 1.0, 'gate': 2.0, 'the': 7.0, 'i': 4.0, 'looks': 1.0, 'it': 5.0, 'proof': 1.0, 'out': 1.0, 'same': 1.0, 'want': 1.0, 'them': 1.0, 'baby': 2.0, 'one': 1.0, 'bought': 1.0, 'doorways': 1.0, 'at': 1.0, 'keep': 1.0, 'kitchen': 1.0, 'in': 3.0, 'before': 1.0, 'room': 1.0, 'loved': 1.0, 'sturdy': 1.0, 'that': 4.0, 'you': 2.0, 'seen': 1.0, 'when': 1.0, 'easily': 1.0, 'fit': 1.0, 'enough': 1.0, 'time': 1.0, 'so': 1.0, 'smaller': 1.0, 'everywhere': 1.0, 'latch': 2.0, 'or': 1.0, 'wider': 1.0, 'dogs': 1.0, 'have': 3.0, 'little': 1.0, 'very': 1.0, 'and': 4.0, 'tall': 1.0, 'they': 1.0, 'can': 2.0, 'just': 2.0, 'laundry': 1.0, 'jump': 1.0, 'up': 1.0, 'don': 1.0, 'over': 2.0, 'design': 1.0, 'never': 1.0, 't': 4.0, 'we': 1.0, 'could': 1.0, 'a': 2.0}
Word element => {'past': 1.0, 'about': 1.0, 'thought': 1.0, 'even': 1.0, 'latches': 1.0, 'getting': 1.0, 'and': 2.0, 'securely': 1.0, 'install': 1.0, 'easy': 2.0, 's': 1.0, 'close': 1.0, 'expectations': 1.0, 'my': 1.0, 'exceeds': 1.0, 't': 2.0, 'the': 3.0, 'of': 1.0, 'keep': 1.0, 'haven': 2.0, 'stay': 1.0, 'two': 1.0, 'to': 5.0, 'out': 1.0, 'ordered': 1.0, 'say': 1.0, 'gate': 1.0, 'have': 1.0, 'cats': 2.0, 'we': 1.0, 'bedroom': 1.0, 'door': 1.0, 'while': 1.0, 'sturdy': 1.0, 'allowing': 1.0, 'for': 1.0, 'open': 2.0, 'ventilation': 1.0, 'i': 1.0, 'this': 1.0, 'it': 3.0}
Word element => {'children': 1.0, 'equally': 1.0, 'but': 1.0, 's': 1.0, 't': 3.0, 'a': 3.0, 'cat': 1.0, 'pass': 1.0, 'get': 1.0, 'through': 2.0, 'enough': 2.0, 'cats': 1.0, 'to': 2.0, 'all': 1.0, 'as': 2.0, 'cups': 1.0, 'nothing': 1.0, 'pets': 1.0, 'gates': 1.0, 'for': 3.0, 'dogs': 1.0, 'looked': 1.0, 'highly': 1.0, 'this': 4.0, 'two': 1.0, 'install': 2.0, 'pet': 2.0, 'sure': 1.0, 'certain': 1.0, 'only': 1.0, 'numerous': 2.0, 'well': 2.0, 'i': 7.0, 'golden': 1.0, 'more': 1.0, 'acceptable': 1.0, 'of': 2.0, 'the': 8.0, 'gate': 5.0, 'don': 1.0, 'work': 1.0, 'over': 1.0, 'product': 1.0, 'child': 1.0, 'was': 2.0, 'filled': 1.0, 'want': 1.0, 'categories': 1.0, 'and': 6.0, 'tall': 1.0, 'retrievers': 1.0, 'is': 2.0, 'at': 1.0, 'blends': 1.0, 'have': 1.0, 'dryer': 1.0, 'running': 1.0, 'upstairs': 1.0, 'can': 3.0, 'so': 2.0, 'times': 1.0, 'you': 1.0, 'that': 1.0, 'easily': 1.0, 'am': 1.0, 'handily': 1.0, 'it': 4.0, 'those': 1.0, 'closes': 1.0, 'jump': 1.0, 'bought': 1.0, 'one': 1.0, 'black': 1.0, 'recommend': 1.0, 'were': 1.0, 'in': 2.0, 'although': 2.0, 'attractive': 2.0, 'came': 1.0, 'or': 1.0, 'be': 1.0, 'perfect': 1.0, 'range': 1.0, 'mounted': 1.0, 'with': 2.0, 'single': 1.0, 'screw': 1.0, 'fastened': 1.0, 'hair': 1.0, 'easy': 2.0, 'unattractive': 1.0, 'warning': 1.0, 'labels': 1.0, 'removed': 1.0, 'they': 1.0, 'securely': 1.0, 'after': 1.0, 'applying': 1.0, 'heat': 1.0, 'would': 2.0}
Word element => {'nice': 1.0, 'looks': 1.0, 'fine': 1.0, 'very': 1.0, 'worked': 1.0, 'was': 1.0, 'she': 1.0, 'there': 1.0, 'and': 1.0, 'down': 1.0, 'little': 1.0, 'sat': 1.0, 'room': 1.0, 'installed': 1.0, 'a': 2.0, 'gate': 1.0, 'feet': 1.0, 'effort': 1.0, 'we': 1.0, 'other': 1.0, 'small': 1.0, 'my': 2.0, 'adjustment': 1.0, 'puppy': 1.0, 'the': 1.0, 'just': 1.0, 'because': 1.0, 'ordered': 1.0, 'this': 1.0, 'it': 3.0, 'with': 2.0, 'at': 2.0, 'no': 1.0, 'have': 1.0, 'all': 1.0, 'i': 3.0, 'took': 1.0, 'coffee': 1.0, 'also': 1.0, 'in': 1.0}
Word element => {'used': 1.0, 'when': 1.0, 'there': 1.0, 'correctly': 1.0, 'gates': 1.0, 'and': 1.0, 'quite': 1.0, 'than': 1.0, 'item': 1.0, 'self': 1.0, 'we': 1.0, 'this': 1.0, 'it': 1.0, 'has': 1.0, 'most': 1.0, 'got': 1.0, 'sturdy': 1.0, 'been': 1.0, 'cheaper': 1.0, 'fantastic': 1.0, 'the': 1.0, 'out': 1.0, 'andit': 1.0, 'closing': 1.0, 'is': 2.0, 'nice': 1.0}
Word element => {'not': 1.0, 'down': 1.0, 'falling': 1.0, 'from': 1.0, 'certain': 1.0, 'out': 1.0, 'want': 1.0, 'if': 1.0, 'house': 1.0, 'in': 1.0, 'upsetting': 1.0, 'very': 1.0, 'can': 1.0, 'together': 1.0, 'holding': 1.0, 'or': 1.0, 'latch': 1.0, 'anymore': 1.0, 'saftey': 1.0, 'he': 1.0, 'door': 1.0, 'how': 1.0, 'area': 1.0, 'learned': 1.0, 'old': 1.0, 'years': 1.0, '3yr': 1.0, 'adults': 1.0, 'other': 1.0, 'and': 1.0, 'your': 1.0, '3': 1.0, 'on': 1.0, 'busy': 1.0, 'months': 1.0, 'one': 1.0, '18': 1.0, 'decide': 1.0, 'mom': 1.0, 'you': 1.0, 'am': 1.0, 'boys': 1.0, 'is': 4.0, 'with': 1.0, 'kids': 1.0, 'this': 4.0, 'it': 2.0, 'i': 1.0, 'two': 1.0, 'keep': 1.0, 'at': 1.0, 'purchase': 1.0, 'my': 1.0, 'happy': 1.0, 'gate': 3.0, 'the': 8.0, 'have': 1.0, 'small': 1.0, 'so': 4.0, 'to': 4.0, 'now': 1.0, 'open': 2.0, 'day': 1.0, 'his': 1.0, 'own': 1.0, 'use': 1.0, 'are': 1.0, 'got': 1.0, 'didn': 1.0, 'top': 1.0, 'of': 2.0, 'we': 4.0, 'a': 3.0, 't': 2.0, 'stairs': 2.0}
Word element => {'highly': 1.0, 'priced': 1.0, 'other': 1.0, 'than': 1.0, 'quality': 1.0, 'ever': 1.0, 'best': 1.0, 'get': 1.0, 'lift': 1.0, 'slightly': 1.0, 'through': 1.0, 'then': 1.0, 'you': 1.0, 'better': 1.0, 'open': 1.0, 'very': 1.0, 'work': 2.0, 'secure': 1.0, 'able': 1.0, 'and': 3.0, 'expert': 1.0, 'i': 1.0, 'an': 1.0, 'artist': 1.0, 'this': 2.0, 'how': 1.0, 'he': 2.0, 'first': 1.0, 'it': 2.0, 'on': 1.0, 'for': 1.0, 'been': 1.0, 'that': 3.0, 'out': 2.0, 'mastiff': 1.0, 'recommended': 1.0, 'well': 1.0, 'has': 1.0, 'much': 1.0, '120lb': 1.0, 'top': 1.0, 'is': 3.0, 'side': 1.0, 'our': 1.0, 'to': 4.0, 'had': 3.0, 'purchased': 2.0, 'escape': 1.0, 'previous': 1.0, 'gates': 2.0, 'have': 4.0, 'small': 1.0, 'discreet': 1.0, 'gate': 5.0, 'the': 5.0, 'great': 1.0, 'which': 1.0, 'cannot': 1.0, 'there': 1.0, 'we': 4.0, 's': 2.0, 'a': 1.0, 'button': 1.0, 'slides': 1.0}
Word element => {'black': 1.0, 'with': 1.0, 'dreambaby': 1.0, 'or': 1.0, 'anyone': 1.0, 'slip': 1.0, 'extensions': 1.0, 'do': 1.0, 'unnecessary': 1.0, 'wall': 1.0, 'rods': 2.0, 'on': 1.0, 'swing': 1.0, 'rubber': 1.0, 'recommend': 1.0, 'minutes': 1.0, '10': 1.0, 'than': 1.0, 'made': 1.0, 'less': 1.0, 'tension': 2.0, 'taking': 1.0, 'would': 1.0, 'each': 1.0, 'used': 1.0, 'they': 1.0, 'needing': 1.0, 'not': 1.0, 'me': 1.0, 'cats': 2.0, 'i': 4.0, 'it': 3.0, 'this': 2.0, 'for': 1.0, 'love': 1.0, 'other': 1.0, 'height': 1.0, 'closes': 1.0, 'couple': 1.0, 'tall': 2.0, 'and': 1.0, 'got': 1.0, 'wonderful': 1.0, 'use': 1.0, 'pads': 1.0, 'to': 7.0, 'of': 1.0, 'toddlers': 1.0, 'keep': 3.0, 'are': 1.0, 'extra': 1.0, 'bars': 1.0, 'close': 2.0, 'mounts': 1.0, 'enough': 1.0, 'through': 1.0, 'my': 1.0, 'while': 1.0, 'from': 1.0, 'very': 2.0, 'their': 1.0, 'open': 2.0, 's': 1.0, 'a': 4.0, 'going': 1.0, 'when': 1.0, 'screws': 1.0, 'baby': 1.0, 'them': 1.0, 'is': 2.0, 'get': 1.0, 'easy': 2.0, 'seperated': 1.0, 'needed': 1.0, 'automatically': 1.0, 'small': 1.0, 'gate': 6.0, 'the': 7.0, 'bungee': 1.0, 'pets': 1.0, 'cord': 1.0, 'install': 1.0}
Word element => {'issues': 1.0, 'any': 1.0, 'if': 1.0, 'update': 1.0, 'far': 1.0, 'decided': 1.0, 'larger': 1.0, 'gates': 1.0, '39': 1.0, 'extensions': 3.0, 'use': 3.0, 'received': 1.0, 'are': 1.0, 'detailing': 1.0, 'product': 2.0, 'charm': 1.0, 'these': 1.0, 'provided': 3.0, 'this': 3.0, 'found': 1.0, 'manual': 2.0, 'with': 3.0, 'instruction': 1.0, 'feels': 1.0, 'out': 2.0, '49': 1.0, 'sticky': 1.0, 'and': 8.0, 'description': 1.0, 'of': 2.0, 'the': 12.0, 'gate': 5.0, 'return': 2.0, 'a': 3.0, 'fit': 2.0, 't': 3.0, 'take': 1.0, 'we': 2.0, 's': 1.0, 'make': 2.0, 'extend': 1.0, 'strong': 1.0, 'actually': 1.0, 'doorway': 2.0, 'into': 1.0, 'was': 1.0, 'doesn': 2.0, 'to': 9.0, 'how': 2.0, 'our': 1.0, 'all': 1.0, '42': 3.0, 'ordered': 1.0, 'when': 1.0, 'you': 1.0, 'not': 2.0, 'it': 8.0, 'states': 1.0, 'so': 1.0, 'can': 1.0, 'box': 1.0, 'ready': 1.0, 'will': 2.0, '5': 2.0, 'i': 5.0, 'took': 1.0, 'tabs': 1.0, 'mail': 1.0, 'work': 1.0, 'measure': 1.0, 'does': 1.0, 'that': 6.0, 'because': 1.0, 'just': 1.0, 'show': 1.0, 'baseboards': 1.0, 'have': 2.0, 'either': 1.0, 'several': 1.0, 'wall': 1.0, 'baby': 1.0, 'had': 1.0, 'screws': 1.0, 'they': 1.0, 'secure': 1.0, 'wouldn': 1.0, 'diagrams': 1.0, 'worked': 1.0, 'cheap': 1.0, 'like': 1.0, 'nice': 1.0, 'screw': 1.0, 'or': 1.0, 'but': 3.0, 'chose': 1.0, 'budge': 1.0, 'very': 1.0, 'configuration': 1.0, 'at': 1.0, 'in': 1.0, 'm': 1.0, 'happy': 1.0, 'purchase': 1.0}
Word element => {'out': 1.0, 'darting': 1.0, 'from': 1.0, 'able': 1.0, 'you': 1.0, 'swing': 1.0, 're': 1.0, 'house': 1.0, 'pet': 1.0, 'corral': 1.0, 'having': 1.0, 'brands': 1.0, 'they': 1.0, 'has': 1.0, 'these': 1.0, 'block': 1.0, 'closed': 1.0, 'and': 2.0, 'dogs': 3.0, 'automatically': 1.0, 'quite': 1.0, 've': 1.0, 'perfect': 1.0, 'door': 2.0, 'throughout': 1.0, 'purchased': 1.0, 'sturdy': 1.0, 'front': 2.0, 'use': 1.0, 'my': 2.0, 'i': 1.0, 'bounce': 1.0, 'without': 1.0, 'the': 4.0, 'gate': 1.0, 'several': 1.0, 'of': 2.0, 'are': 1.0, 'unable': 1.0, 'so': 1.0, 'simply': 1.0, 'against': 1.0, 'them': 2.0, 'your': 3.0, 'on': 1.0, 'make': 1.0, 'essential': 1.0, 'come': 1.0, 'with': 1.0, 'open': 2.0, 'very': 1.0, 'to': 4.0, 'as': 1.0, 'outside': 1.0, 'been': 1.0, 'case': 1.0, 'other': 1.0, 'actually': 1.0, 'for': 1.0}
Word element => {'friend': 1.0, 'definitely': 1.0, 'and': 2.0, 'lbs': 1.0, 'he': 1.0, 'this': 3.0, 'reccomend': 1.0, 'is': 2.0, 'has': 1.0, '40': 1.0, 'no': 1.0, '4': 1.0, 'i': 2.0, 'bought': 1.0, 'my': 1.0, 'kept': 1.0, 'gates': 1.0, 'kitchen': 1.0, 'a': 1.0, 't': 1.0, 's': 1.0, 'in': 1.0, 'cheap': 1.0, 'for': 1.0, 'him': 1.0, 'would': 1.0, 'it': 2.0, 'month': 1.0, 'install': 1.0, 'dog': 1.0, 'don': 1.0, 'old': 1.0, 'problems': 1.0, 'sturdy': 1.0, 'easy': 1.0, 'to': 2.0, 'with': 1.0, 'buying': 1.0, 'do': 1.0, 'much': 1.0, 'better': 1.0, '14': 1.0, 'than': 1.0, 'rambuncious': 1.0, '3': 1.0, 'or': 1.0, 'gate': 2.0, 'the': 2.0, 'job': 1.0, 'that': 1.0, 'just': 1.0}
Word element => {'without': 1.0, 'close': 1.0, 'height': 1.0, 'doorknob': 1.0, 'room': 1.0, 'have': 1.0, 'you': 1.0, 'doorway': 1.0, 'in': 1.0, 'claim': 1.0, 'free': 1.0, 'hands': 1.0, 'bar': 1.0, 'a': 2.0, 'sure': 1.0, 'tall': 1.0, 'using': 1.0, 'door': 1.0, 'is': 3.0, 'to': 3.0, 'product': 1.0, 'be': 1.0, 'it': 3.0, 'this': 1.0, 'but': 1.0, 'does': 1.0, 'even': 1.0, 'top': 1.0, 'make': 1.0, 'enough': 2.0, 'if': 1.0, 'keep': 1.0, 'great': 1.0, 'the': 4.0, 'hitting': 1.0, 'not': 2.0, 'cats': 1.0, 'out': 1.0}
Word element => {'height': 1.0, 'measure': 1.0, 'before': 2.0, 'c': 1.0, 'go': 1.0, 'b': 1.0, 'partially': 1.0, 'where': 1.0, 'too': 1.0, 'should': 1.0, 'top': 1.0, 'the': 3.0, 'high': 1.0, 'my': 2.0, 'made': 1.0, 'it': 2.0, 'this': 4.0, 'have': 2.0, 'i': 2.0, 'purchasing': 2.0, 'for': 1.0, 'to': 1.0, 'husband': 1.0, 'fault': 1.0, 'our': 1.0, 'bought': 2.0, 'and': 1.0, 'steps': 1.0, 'measured': 1.0, 'of': 2.0, 'always': 1.0, 'we': 1.0, 'extra': 1.0, 'tall': 1.0, 'gate': 2.0, 'while': 1.0, 'well': 1.0, 'want': 1.0, 'is': 2.0, 'you': 1.0, 'way': 1.0}
Word element => {'made': 1.0, 'extra': 1.0, 'gave': 1.0, 'with': 1.0, 'came': 1.0, 'bit': 1.0, 'pieces': 1.0, 'upstairs': 2.0, 'you': 1.0, 'down': 1.0, 'figuring': 1.0, 'll': 1.0, 'absolutely': 1.0, 'out': 1.0, 'proof': 1.0, 'mixed': 1.0, 'keep': 1.0, 'and': 6.0, 'this': 3.0, 'a': 4.0, 'go': 2.0, 'fit': 1.0, 't': 1.0, 's': 1.0, 'shepherd': 1.0, 'inch': 2.0, 'permission': 1.0, '90lb': 1.0, 'looking': 1.0, '3': 1.0, 'strong': 1.0, 'on': 1.0, 'large': 1.0, 'to': 6.0, 'our': 1.0, 'stairs': 2.0, 'without': 1.0, '4': 1.0, 'i': 4.0, 'one': 1.0, 'have': 2.0, 'must': 1.0, 'leave': 1.0, 'gate': 6.0, 'suggested': 1.0, 'open': 1.0, 'better': 1.0, 'from': 4.0, 'while': 1.0, 'for': 1.0, 'german': 1.0, '2': 1.0, 'can': 1.0, 'but': 1.0, 'pull': 1.0, 'going': 2.0, 'taken': 1.0, 'destroying': 1.0, 'very': 1.0, 'prevent': 1.0, 'up': 2.0, 'the': 8.0, 'of': 2.0, 'or': 1.0, 'that': 5.0, 'kids': 2.0, 'box': 1.0, 'concidering': 1.0, 'not': 1.0, 'enough': 1.0, 'themselves': 1.0, 'even': 1.0, 'dog': 2.0, 'months': 1.0, 'trouble': 1.0, 'jump': 1.0, 'bottom': 1.0, 'love': 2.0, 'he': 1.0, 'at': 2.0, 'is': 2.0, 'chewer': 1.0, 'are': 1.0, 'first': 2.0, 'keeps': 1.0, 'it': 5.0, 'him': 1.0, 'everything': 1.0, 'off': 1.0, 'own': 1.0, 'an': 1.0, 'do': 1.0, 'floor': 1.0, 'was': 2.0, 'my': 6.0, 'unsure': 1.0, 'were': 1.0, 'opening': 1.0, 'house': 1.0, 'maker': 1.0, 'half': 2.0, 'we': 2.0, 'reviews': 1.0, 'measurements': 1.0, 'perfectly': 1.0, 'there': 1.0}
Word element => {'damage': 1.0, 'inside': 1.0, 'packaging': 1.0, 'than': 1.0, 'sooner': 1.0, 'both': 1.0, 'returned': 1.0, 'up': 1.0, 'end': 2.0, 'this': 1.0, 'don': 1.0, 'warning': 1.0, 'a': 1.0, 's': 1.0, 'stealing': 1.0, 'costs': 1.0, 'fair': 1.0, 'robbed': 1.0, 'here': 2.0, 'you': 3.0, 'if': 1.0, 'robbery': 1.0, 'math': 1.0, 'washington': 1.0, 'problem': 1.0, 'delivered': 1.0, 'georgia': 1.0, 'yourself': 1.0, 'shipped': 1.0, 'x42': 1.0, 'x30': 1.0, '3': 1.0, 'dimentions': 1.0, 'pounds': 1.0, 'least': 1.0, 'at': 1.0, 'is': 1.0, 'off': 1.0, 'pull': 1.0, 'managed': 1.0, 'how': 1.0, 'usps': 1.0, 'who': 1.0, 'eastern': 1.0, 'since': 1.0, 'now': 1.0, '22': 1.0, 'seller': 1.0, 'have': 3.0, 'apm2008': 4.0, 'another': 1.0, 'didn': 1.0, 'sit': 1.0, 'when': 1.0, 'price': 1.0, 'company': 1.0, 'purchase': 1.0, 'only': 2.0, 'plenty': 1.0, 'with': 3.0, 'refunded': 2.0, 'said': 2.0, 'happy': 1.0, 'one': 4.0, 'bought': 3.0, 'i': 12.0, 'ask': 1.0, 'so': 3.0, 'prevent': 1.0, 'very': 1.0, 'from': 7.0, 'thanks': 2.0, 'charge': 1.0, 'instock': 1.0, 'great': 1.0, 'm': 1.0, 'in': 3.0, 'ojcommerce': 4.0, 'brand': 1.0, 'office': 1.0, 'damaged': 3.0, 'works': 1.0, 'stairs': 2.0, 'we': 1.0, 'gate': 7.0, 'these': 2.0, 'gates': 3.0, '2': 3.0, 'but': 1.0, 'originally': 2.0, 'has': 1.0, 'them': 3.0, 'instructed': 1.0, 'arrived': 3.0, 'top': 1.0, 'new': 1.0, 'would': 1.0, 't': 2.0, 'cost': 1.0, 'idea': 1.0, 'condition': 1.0, 'they': 6.0, 'and': 9.0, 'the': 22.0, 'of': 8.0, 'love': 2.0, 'bottom': 1.0, 'purchased': 1.0, 'it': 8.0, 'thought': 1.0, 'buy': 1.0, 'ship': 3.0, 'considering': 1.0, 'charged': 1.0, 'to': 11.0, 'return': 3.0, 'original': 1.0, 'did': 1.0, 'may': 1.0, 'me': 6.0, 'post': 1.0, 'highway': 1.0, 'are': 1.0, '65': 1.0, 'pay': 1.0, 'expected': 1.0, 'shipping': 2.0, 'made': 1.0, 'which': 1.0, 'be': 1.0, 'was': 4.0, 'package': 3.0, 'no': 3.0, '33': 2.0, 'approx': 1.0, 'wanted': 1.0, 'over': 2.0, 'oversized': 2.0, '140': 1.0, 'because': 2.0, 'that': 2.0, 'just': 1.0, 'all': 1.0, 'other': 1.0, 'an': 1.0, 'fee': 1.0, 'contacted': 1.0, 'took': 1.0, 'ups': 1.0, 'for': 3.0, '77': 2.0, '108': 1.0, 'ground': 1.0, '48': 1.0, 'claim': 1.0, 'do': 1.0, '16': 1.0}
Word element => {'chair': 1.0, 'set': 1.0, 'just': 1.0, 'prop': 2.0, 'behind': 1.0, 'closes': 1.0, 'stand': 1.0, 'not': 1.0, 'will': 1.0, 'you': 1.0, 'easily': 2.0, 'issue': 1.0, 'but': 2.0, 'option': 1.0, 'doesn': 1.0, 'hasn': 1.0, 'even': 1.0, 'friction': 1.0, 'little': 2.0, 'very': 1.0, 'open': 2.0, 'permanent': 1.0, 'an': 1.0, 'solid': 1.0, 'well': 1.0, 'made': 1.0, 'opening': 1.0, 'we': 2.0, 'a': 3.0, 't': 2.0, 'automatically': 1.0, 'have': 1.0, 'screw': 1.0, 'on': 1.0, 'your': 1.0, 'the': 3.0, 'gate': 2.0, 'hands': 1.0, 'opens': 1.0, 'are': 1.0, 'one': 2.0, 'cannot': 1.0, 'it': 3.0, 'up': 1.0, 'placement': 1.0, 'enough': 1.0, 'foot': 1.0, 'mounts': 1.0, 'mounting': 1.0, 'definitely': 1.0, 'if': 3.0, 'want': 2.0, 'to': 5.0, 'pads': 1.0, 'next': 1.0, 'installation': 1.0, 'been': 1.0, 'that': 1.0, 'into': 1.0, 'yanking': 1.0, 'wall': 1.0, 'though': 1.0, 'full': 1.0, 'based': 1.0}
Word element => {'well': 1.0, 'you': 1.0, 'automatically': 1.0, 'shuts': 1.0, 'how': 1.0, 'keep': 1.0, 'going': 1.0, 'works': 1.0, 'love': 2.0, 'i': 2.0, 'dogs': 1.0, 'to': 1.0, 'bought': 1.0, 'product': 1.0, 'actually': 1.0, 'it': 3.0, 'this': 1.0, 'my': 1.0, 'behind': 1.0, 'great': 1.0, 'the': 1.0, 'as': 1.0, 'from': 1.0, 'house': 1.0, 'up': 1.0, 'steps': 1.0, 'our': 1.0, 'is': 1.0, 'in': 1.0, 'perfect': 1.0}
Word element => {'these': 1.0, 'two': 1.0, 'another': 1.0, 'able': 1.0, 'have': 2.0, 'open': 1.0, 'while': 1.0, 'being': 1.0, 'out': 1.0, 'extremely': 1.0, 'throughout': 1.0, 'well': 1.0, 'cats': 1.0, 'been': 1.0, 'of': 2.0, 'keep': 2.0, 'day': 1.0, 'bars': 1.0, 'close': 1.0, 'looking': 1.0, 'our': 1.0, 'to': 2.0, 'doors': 2.0, 'we': 3.0, 'a': 1.0, 't': 1.0, '32': 1.0, 'great': 1.0, 'the': 6.0, 'gate': 1.0, 'is': 2.0, 'and': 2.0, 'get': 1.0, 'are': 1.0, 'enough': 1.0, 'they': 1.0, 'perfect': 2.0, 'this': 1.0, 'for': 1.0, 'fit': 1.0, 'product': 2.0, 'bedrooms': 1.0, 'built': 1.0, 'will': 1.0, 'can': 1.0, 'most': 1.0, 'height': 1.0, 'likely': 1.0, 'through': 1.0, 'order': 1.0}
Word element => {'doorway': 1.0, 'into': 1.0, 'tightly': 1.0, 'very': 1.0, 'open': 1.0, 'bend': 1.0, 'have': 1.0, 'you': 1.0, 'too': 1.0, 'where': 1.0, 'high': 1.0, 'enough': 2.0, 'automatically': 1.0, 'our': 2.0, 'bedroom': 1.0, 'keep': 2.0, 'of': 1.0, 'closes': 1.0, 'a': 1.0, 'gate': 1.0, 'to': 6.0, 'don': 1.0, 'hallway': 1.0, 'put': 1.0, 'in': 1.0, 'purchase': 1.0, 'sturdy': 1.0, 'got': 1.0, 'we': 1.0, 'cat': 2.0, 'fits': 1.0, 'out': 2.0, 'tall': 1.0, 'nursery': 1.0, 'and': 3.0, 'this': 1.0, 'it': 2.0, 'down': 1.0, 'works': 1.0, 't': 1.0, 'the': 3.0, 'great': 2.0, 'easy': 1.0, 'swing': 1.0}
Word element => {'recommended': 1.0, 'happy': 1.0, 'we': 1.0, 'minutes': 1.0, '30': 1.0, 'than': 1.0, 'less': 1.0, 'in': 1.0, 'cinch': 1.0, 'solid': 1.0, 'nice': 1.0, 'classy': 1.0, 'not': 2.0, 'but': 1.0, 'is': 2.0, 'product': 1.0, 'material': 1.0, 'be': 1.0, 'gate': 1.0, 'a': 2.0, 'it': 1.0, 'with': 2.0, 'this': 2.0, 'extremely': 2.0, 'could': 1.0, 'was': 1.0, 'happier': 1.0, 'look': 1.0, 'very': 1.0, 'done': 1.0, 'and': 1.0, 'are': 1.0, 'finish': 1.0, 'has': 1.0, 'heavy': 1.0, 'the': 1.0, 'highly': 1.0, 'setup': 1.0}
Word element => {'wider': 1.0, 'need': 1.0, 'they': 1.0, 'for': 2.0, 'was': 1.0, 'thru': 1.0, 'there': 1.0, 'also': 1.0, 'dog': 1.0, 'toward': 1.0, 'would': 2.0, 'a': 2.0, 't': 1.0, 'could': 1.0, 'direction': 1.0, 'in': 1.0, 'extensions': 1.0, 'do': 2.0, 'only': 1.0, 'if': 3.0, 'even': 1.0, 'harder': 1.0, 'so': 1.0, 'needs': 1.0, 'way': 1.0, 'cons': 1.0, 'shutting': 1.0, 'automatic': 1.0, 'nice': 1.0, 'better': 1.0, 'open': 3.0, 'manage': 1.0, 'weeks': 1.0, 'can': 1.0, 'food': 1.0, 'but': 1.0, 'two': 2.0, 'i': 2.0, 'be': 2.0, 'him': 2.0, 'it': 6.0, 'this': 1.0, 'he': 3.0, 'one': 2.0, 'bought': 1.0, 'on': 1.0, 'out': 1.0, 'all': 1.0, 'to': 8.0, 'his': 1.0, 'offer': 1.0, 'cat': 3.0, 'different': 1.0, '39': 1.0, 'my': 1.0, 'gate': 1.0, 'the': 3.0, 'did': 1.0, 'of': 1.0, 'set': 2.0, 'up': 1.0, 'pros': 1.0, 'cats': 1.0, 'not': 2.0, 'little': 1.0, 'inches': 1.0, 'box': 1.0, 'that': 3.0, 'and': 3.0, 'tall': 1.0, 'when': 1.0, 'terrier': 1.0, 'standing': 1.0, 'has': 1.0, 'is': 1.0, 'hind': 1.0, 'legs': 1.0, 'stop': 1.0, 'opened': 2.0, 'keep': 1.0, 'repeatedly': 1.0, 'since': 1.0, 'took': 1.0, 'then': 1.0, 'get': 1.0, 'easy': 1.0}
Word element => {'another': 1.0, 'have': 1.0, 'with': 1.0, 'happy': 1.0, 'swing': 1.0, 'by': 1.0, 'close': 1.0, 'are': 1.0, 'if': 1.0, 'now': 2.0, 'especially': 1.0, 'am': 1.0, 'when': 2.0, 'her': 1.0, 'load': 1.0, 'how': 1.0, 'one': 1.0, 'operation': 1.0, 'others': 1.0, 'some': 1.0, 'than': 2.0, 'better': 1.0, 'nursery': 1.0, 'much': 1.0, 'hand': 1.0, 'like': 3.0, 'i': 4.0, 'letting': 1.0, 'would': 1.0, 'terrible': 1.0, 'up': 1.0, 'sound': 1.0, 'don': 1.0, 'over': 1.0, 'wanted': 1.0, 'all': 2.0, 'our': 3.0, 'to': 3.0, 'look': 2.0, 'was': 1.0, 'out': 2.0, 'arrived': 1.0, 'cats': 2.0, 'not': 2.0, 'those': 1.0, 'here': 1.0, 'be': 1.0, 'purchased': 1.0, 'rather': 1.0, 'wake': 1.0, 'of': 4.0, 'closes': 1.0, 'met': 1.0, 'handed': 1.0, 'keep': 2.0, 'it': 5.0, 'before': 1.0, 'jump': 1.0, 'both': 1.0, 'careful': 1.0, 'gate': 5.0, 'the': 8.0, 'enough': 2.0, 'requirements': 1.0, 'baby': 2.0, 'actually': 1.0, 'hallway': 1.0, 'bedroom': 1.0, 'they': 1.0, 'a': 1.0, 'we': 4.0, 't': 2.0, 'could': 1.0, 'can': 1.0, 'but': 2.0, 'also': 1.0, 'in': 2.0, 'didn': 1.0, 'this': 2.0, 'functional': 1.0, 'that': 4.0, 'installation': 1.0, 'easy': 2.0, 'closed': 1.0, 'tall': 1.0, 'and': 3.0, 'is': 4.0}
Word element => {'enough': 1.0, 'not': 1.0, 'is': 1.0, 'comes': 1.0, 'your': 1.0, 'on': 1.0, 'make': 1.0, 'doesn': 1.0, 'use': 1.0, 'at': 1.0, 'sheets': 1.0, 'over': 1.0, 'jump': 1.0, 'between': 1.0, 'they': 1.0, 'gate': 2.0, 'the': 3.0, 'durable': 1.0, 'ones': 2.0, 'russell': 1.0, 'felt': 1.0, 'it': 2.0, 'with': 2.0, 'has': 1.0, 'neighbor': 1.0, 'and': 2.0, 'tall': 1.0, 'jack': 1.0, 'dogs': 1.0, 'marks': 1.0, 'walmart': 1.0, 'inch': 1.0, 'rugs': 1.0, 'are': 1.0, 'extra': 1.0, 'got': 1.0, 'so': 2.0, 'short': 1.0, 'i': 1.0, 't': 2.0, 'could': 1.0, 'jam': 3.0, 'foam': 1.0, 'like': 1.0, 'get': 1.0, 'easy': 1.0, 'as': 1.0, 'our': 2.0, 'to': 2.0, 'may': 1.0, 'rooms': 1.0, '1': 1.0, 'great': 1.0, 'install': 1.0, 'padding': 1.0, 'vs': 1.0, 'door': 3.0, '2': 1.0, 'but': 1.0, 'can': 1.0, 'consider': 1.0, 'that': 1.0, 'into': 1.0, '11': 1.0, 'easily': 1.0, 'you': 1.0, 'some': 1.0, '8': 1.0, 'x': 1.0}
Word element => {'hard': 1.0, 'are': 1.0, 'top': 1.0, 'times': 1.0, 'on': 1.0, '3': 1.0, 'however': 1.0, 'puppy': 1.0, 'broken': 1.0, 'for': 1.0, 'twice': 1.0, 'plastic': 1.0, 'i': 3.0, 'returned': 1.0, 'it': 4.0, 'this': 1.0, 'cracked': 1.0, 'children': 1.0, 'has': 2.0, 'really': 1.0, 'is': 1.0, 'same': 1.0, 'want': 1.0, 'the': 3.0, 'gate': 2.0, 'place': 1.0, 'to': 2.0, 'wanted': 1.0, 'work': 1.0, 'week': 1.0, 'too': 1.0, 'and': 2.0, 'have': 2.0, 'hinge': 1.0, 'my': 1.0, 'made': 1.0, 'replacement': 1.0, 'out': 1.0, 'of': 3.0, 'basement': 1.0, 'use': 1.0, 'bought': 1.0, 'within': 1.0, 'be': 1.0, 'because': 1.0, 'that': 2.0, 'a': 2.0, 'we': 1.0, 'could': 1.0, 'keep': 1.0, 'three': 1.0}
Word element => {'too': 1.0, 'good': 1.0, 'would': 1.0, 'great': 1.0, 'works': 1.0, 'absolutely': 1.0, 'assemble': 1.0, 'to': 2.0, 'gate': 2.0, 'it': 1.0, 'this': 1.0, 'i': 1.0, 'highly': 1.0, 'very': 1.0, 'easy': 1.0, 'recommend': 1.0, 'looking': 1.0, 'love': 1.0, 'for': 1.0, 'a': 1.0, 'well': 1.0, 'anyone': 1.0, 'also': 1.0, 'made': 1.0, 'looks': 1.0}
Word element => {'recomend': 1.0, 'would': 1.0, 'all': 1.0, 'day': 1.0, 'open': 1.0, 'propped': 1.0, 'keep': 1.0, 'at': 1.0, 'rest': 1.0, 'not': 1.0, 'access': 1.0, 'in': 1.0, 'of': 1.0, 'bathroom': 1.0, 'up': 1.0, 'the': 6.0, 'purchased': 1.0, 'she': 2.0, 'hall': 1.0, 'month': 1.0, 'climb': 1.0, '18': 1.0, 'had': 1.0, 'to': 2.0, 'was': 1.0, 'my': 1.0, 'for': 1.0, 'this': 1.0, 'night': 1.0, 'old': 1.0, 'i': 2.0, 'potty': 1.0, 'so': 1.0, 'everything': 2.0, 'we': 2.0, 'loves': 1.0, 'into': 1.0, 'get': 1.0, 'and': 2.0, 'gate': 2.0, 'on': 1.0, 'house': 1.0, 'but': 1.0, 'put': 1.0, 'training': 1.0, 'going': 1.0, 'well': 1.0}
Word element => {'thank': 1.0, 'together': 1.0, 'close': 1.0, 'put': 1.0, 'will': 1.0, 'the': 1.0, 'use': 1.0, 'to': 2.0, 'easy': 2.0, 'strong': 1.0, 'looking': 1.0, 'good': 1.0, 'going': 1.0, 'that': 2.0, 'what': 1.0, 'is': 1.0, 'threw': 1.0, 'gate': 2.0, 'a': 2.0, 'have': 1.0, 'like': 2.0, 'very': 2.0, 'you': 2.0, 'way': 1.0, 's': 3.0, 'with': 1.0, 'this': 1.0, 'it': 4.0, 'i': 2.0, 'one': 1.0, 'happy': 1.0, 'my': 2.0, 'cat': 1.0, 'about': 1.0, 'dog': 1.0, 'keep': 1.0, 'problem': 1.0, 'walk': 1.0, 'after': 2.0, 'and': 1.0, 'away': 1.0}
Word element => {'bright': 1.0, 'i': 1.0, 'than': 1.0, 'expected': 1.0, 'easier': 1.0, 'much': 1.0, 'process': 1.0, 'amazon': 1.0, 'shipping': 1.0, 'white': 1.0, 'during': 1.0, 'first': 1.0, 'shiny': 1.0, 'extension': 1.0, 'an': 1.0, 'with': 1.0, 'have': 1.0, 'did': 1.0, 'so': 1.0, 'came': 1.0, 'wide': 1.0, 'feet': 1.0, '5': 1.0, 'needed': 1.0, 'easy': 1.0, 'and': 6.0, 'perfectly': 1.0, 'house': 1.0, 'ordered': 1.0, 'ours': 1.0, 'toddler': 1.0, 'that': 2.0, 'replaced': 1.0, 'number': 1.0, 'by': 1.0, 'kids': 1.0, 'this': 2.0, 'older': 1.0, 'it': 3.0, 'on': 1.0, 'is': 5.0, '7': 1.0, 'side': 1.0, 'gate': 4.0, 'the': 7.0, 'best': 1.0, 'open': 1.0, 'very': 2.0, 'quickly': 1.0, 'worked': 1.0, 'quality': 1.0, 'exchange': 1.0, 'baby': 2.0, 'dog': 1.0, 'not': 1.0, 'in': 2.0, 'a': 3.0, 'we': 4.0, 'could': 1.0, 'had': 2.0, 'our': 2.0, 'to': 3.0, 'quicker': 1.0, 'bent': 1.0, 'was': 2.0, 'yet': 1.0, 'one': 2.0, 'love': 1.0, 'hallway': 1.0, 'for': 1.0, 'since': 1.0, 'keep': 1.0, 'of': 1.0, 've': 1.0, 'would': 1.0, 'allow': 1.0, 'far': 1.0, 'through': 1.0, 'nice': 1.0, 'pass': 1.0, 'install': 2.0, 'ever': 1.0}
Word element => {'open': 1.0, 'doors': 1.0, 'while': 1.0, 'night': 1.0, 'at': 1.0, 'bedrooms': 1.0, 'in': 1.0, 'we': 2.0, 'getting': 1.0, 'difference': 1.0, 'a': 2.0, 'gate': 1.0, 'keeping': 1.0, 'use': 1.0, 'made': 1.0, 'cat': 2.0, 'huge': 1.0, 'quality': 1.0, 'has': 1.0, 'product': 1.0, 'to': 1.0, 'it': 1.0, 'our': 2.0, 'awesome': 1.0, 'for': 1.0, 'so': 1.0, 'worry': 1.0, 'the': 1.0, 'great': 1.0, 't': 1.0, 'have': 1.0, 'don': 1.0, 'about': 1.0}
Word element => {'walls': 1.0, 'eggshell': 1.0, 'nice': 1.0, 'high': 1.0, 'need': 1.0, 'younger': 1.0, 'other': 1.0, 'door': 1.0, 'a': 2.0, 'with': 2.0, 'looks': 1.0, 'it': 5.0, 'this': 2.0, 'looking': 1.0, 'nicest': 1.0, 'of': 1.0, 'and': 2.0, 'older': 1.0, 'away': 1.0, 'for': 1.0, 'one': 1.0, 'bought': 2.0, 'cats': 2.0, 'because': 1.0, 'little': 1.0, 'gates': 1.0, 'was': 1.0, 'is': 2.0, 'more': 1.0, 'my': 1.0, 'to': 1.0, 'tallest': 1.0, 'cat': 1.0, 'white': 1.0, 'athletic': 1.0, 'from': 1.0, 'wonderfully': 1.0, 'why': 1.0, 'jump': 1.0, 'works': 1.0, 'keep': 1.0, 'if': 1.0, 'i': 2.0, 'two': 1.0, 'each': 1.0, 'which': 1.0, 'the': 5.0, 'gate': 2.0, 'sturdy': 1.0, 'worth': 1.0, 'can': 1.0, 'but': 1.0, 'money': 1.0, 'you': 1.0}
Word element => {'well': 1.0, 'most': 1.0, 'but': 1.0, 'side': 1.0, 'rods': 1.0, 'have': 1.0, 'occasionally': 1.0, 'works': 2.0, 'though': 1.0, 'installed': 1.0, 'getting': 1.0, 'and': 3.0, 'were': 1.0, 'although': 1.0, 'night': 2.0, 'at': 1.0, 'tighten': 1.0, 'things': 1.0, 'bought': 1.0, 'floor': 1.0, 'for': 1.0, 'supposed': 1.0, 'be': 1.0, 'they': 1.0, 'it': 6.0, 'taller': 1.0, 'bent': 2.0, 'was': 3.0, 'got': 1.0, 'middle': 1.0, 'fine': 1.0, 'funny': 1.0, 'we': 4.0, 'a': 1.0, 'the': 8.0, 'gate': 2.0, 'childrens': 1.0, 'think': 1.0, 'on': 2.0, 'this': 1.0, 'escaping': 1.0, 'pain': 1.0, 'room': 1.0, 'once': 1.0, 'of': 1.0, 'part': 1.0, 'while': 1.0, 'slept': 1.0, 'broken': 1.0, 'horrible': 1.0, 'use': 1.0, 'eggs': 1.0, 'our': 1.0, 'as': 1.0, 'to': 4.0, 'all': 1.0, 'in': 2.0, 'said': 1.0, 'is': 2.0, 'install': 1.0, 'into': 1.0, 'box': 1.0, 'installation': 1.0}
Word element => {'needed': 1.0, 'if': 1.0, 'one': 1.0, 'would': 1.0, 'keeps': 1.0, 'but': 1.0, 'week': 1.0, 'i': 1.0, 'night': 2.0, 'were': 1.0, 'directions': 1.0, 'then': 2.0, 'great': 1.0, 'bit': 1.0, 'room': 1.0, 'the': 2.0, 'gate': 2.0, 'harder': 1.0, 'installation': 1.0, 'recieved': 1.0, 'a': 2.0, 'ago': 1.0, 'another': 1.0, 'purchase': 1.0, 'my': 1.0, 'man': 1.0, 'not': 1.0, 'was': 1.0, 'to': 1.0, 'very': 1.0, 'little': 2.0, 'handy': 1.0, 'again': 1.0, 'am': 1.0, 'ninja': 1.0, 'about': 1.0, 'no': 1.0, 'since': 2.0, 'at': 2.0, 'works': 1.0, 'his': 1.0, 'it': 1.0, 'he': 1.0, 'in': 1.0, 'expected': 1.0, 'likes': 1.0, 'clear': 1.0, 'run': 1.0, 'around': 1.0, 'and': 1.0, 'tear': 1.0, 'stuff': 1.0, 'up': 1.0}
Word element => {'time': 1.0, 'every': 1.0, 'itself': 1.0, 'i': 1.0, 'must': 1.0, 'open': 2.0, 'inorder': 1.0, 'to': 2.0, 'little': 1.0, 'by': 1.0, 'closes': 1.0, 'a': 1.0, 'but': 1.0, 'while': 1.0, 'hard': 1.0, 'it': 2.0, 'up': 1.0, 'latch': 1.0, 'and': 1.0, 'gate': 2.0, 'on': 1.0, 'releasing': 1.0, 'great': 2.0, 'the': 2.0, 'left': 1.0, 'looks': 1.0}
Word element => {'go': 1.0, 'big': 1.0, 'color': 1.0, 'neutral': 1.0, 'gentle': 1.0, 'shuts': 1.0, 'that': 1.0, 'being': 1.0, 'if': 1.0, 'necessary': 1.0, 'rather': 1.0, 'through': 1.0, 'real': 1.0, 'but': 2.0, 'links': 1.0, 'those': 1.0, 'not': 2.0, 'chain': 1.0, 'open': 2.0, 'a': 4.0, 'going': 1.0, 's': 2.0, 'held': 1.0, 'size': 1.0, 'latch': 1.0, 'cups': 1.0, 'usually': 1.0, 'people': 1.0, 'pencil': 1.0, 'to': 4.0, 'pretty': 1.0, 'is': 3.0, 'level': 1.0, 'upstairs': 1.0, 'tall': 1.0, 'time': 1.0, 'in': 1.0, 'of': 1.0, 'person': 1.0, 'the': 5.0, 'gate': 1.0, 'my': 1.0, 'extra': 1.0, 'another': 1.0, 'toy': 1.0, 'easier': 1.0, 'baby': 1.0, 'helping': 1.0, 'hallway': 1.0, 'for': 3.0, 'love': 1.0, 'yet': 2.0, 'he': 1.0, 'kept': 1.0, 'keep': 1.0, 'flimsy': 1.0, 'by': 1.0, 'little': 1.0, 'on': 2.0, 'guy': 1.0, 'this': 1.0, 'carefully': 1.0, 'it': 9.0, 'annoying': 1.0, 'from': 1.0, 'much': 1.0, 'stairs': 1.0, 'works': 1.0, 'climber': 1.0, 'will': 1.0, 'us': 1.0, 'also': 1.0, 'seems': 1.0, 'be': 1.0, 'great': 2.0, 'really': 1.0, 'sturdy': 2.0, 'have': 3.0, 'i': 1.0, 'coming': 1.0, 'no': 3.0, 'walk': 1.0, 'about': 1.0, 'ends': 1.0, 'tape': 1.0, 'however': 1.0, 'installing': 1.0, 'consuming': 1.0, 'worries': 1.0, 'was': 1.0, 'complaints': 1.0, 'push': 1.0, 'you': 1.0, 'align': 1.0, 'protector': 1.0, 'hand': 1.0, 'would': 1.0, 'down': 1.0, 've': 1.0, 'been': 1.0, 'downstairs': 1.0, 'with': 3.0, 'haha': 1.0, 'use': 1.0, 'issues': 1.0, 'measuring': 1.0, 'overall': 1.0}
Word element => {'seems': 1.0, 'little': 1.0, 'our': 1.0, 'wide': 1.0, 'the': 1.0, 'like': 1.0, 'accommodate': 1.0, 'came': 1.0, 'smaller': 1.0, 'and': 1.0, 'extension': 1.0, '10': 1.0, 'opening': 1.0, 'minutes': 1.0, '15': 1.0, 'up': 1.0, 'set': 1.0, 'makes': 1.0, 'actually': 1.0, 'other': 1.0, 'we': 1.0, 'tried': 1.0, 'sense': 1.0, 'gates': 1.0, 'operate': 1.0, 'construction': 1.0, 'than': 1.0, 'easy': 1.0, 'self': 1.0, 'just': 1.0, 'much': 1.0, 'was': 1.0, 'to': 3.0, 'closing': 1.0, 'being': 1.0, 'works': 1.0, 'it': 3.0, 'with': 3.0, 'for': 1.0, 'parents': 1.0, 'one': 3.0, 'better': 1.0, 'hand': 1.0, 'taller': 1.0}
Word element => {'something': 1.0, 'place': 1.0, 's': 2.0, 'a': 4.0, 'tallest': 1.0, 'to': 7.0, 'as': 2.0, 'seemed': 1.0, 'find': 1.0, 'standard': 1.0, 'his': 1.0, 'carpeted': 1.0, 'have': 3.0, 'gate': 2.0, 'held': 1.0, 'one': 2.0, 'strong': 1.0, 'tall': 1.0, 'doorways': 1.0, 'quinn': 1.0, 'had': 2.0, 'scratch': 1.0, 'much': 1.0, 'persistence': 1.0, 'some': 1.0, 'be': 2.0, 'up': 1.0, 'persistent': 1.0, 'greyhounds': 2.0, 'several': 1.0, 'the': 9.0, 'of': 8.0, 'keep': 1.0, 'nice': 1.0, 'two': 1.0, 'feature': 2.0, 'gates': 5.0, 'could': 1.0, 'will': 2.0, 'house': 1.0, 'placed': 1.0, 'my': 2.0, 'another': 1.0, 'at': 1.0, 'is': 4.0, 'bringing': 1.0, 'seems': 1.0, 'areas': 1.0, 'and': 5.0, '50': 1.0, 'from': 1.0, 'wife': 1.0, 'dirt': 1.0, 'very': 1.0, 'being': 1.0, 'in': 4.0, 'inconvenience': 1.0, 'i': 3.0, 'well': 1.0, 'included': 1.0, 'able': 1.0, 'extension': 1.0, 'pieces': 1.0, 'needed': 1.0, 'back': 1.0, 'her': 1.0, 'late': 1.0, 'bit': 1.0, '110': 1.0, 'adjustments': 1.0, 'opening': 1.0, 'solution': 1.0, 'them': 1.0, 'minor': 2.0, 'if': 2.0, 'stay': 1.0, 'piece': 1.0, 'tape': 1.0, 'routine': 1.0, 'danes': 1.0, 'resolved': 1.0, 'this': 2.0, 'traffic': 1.0, 'issue': 1.0, 'draw': 1.0, 'would': 1.0, 'these': 2.0, 'lack': 1.0, 'which': 2.0, 'wanted': 1.0, 'simple': 1.0, 'all': 1.0, 'other': 1.0, 'tasks': 1.0, 'pushed': 1.0, 'way': 2.0, 'problem': 1.0, 'during': 1.0, 'open': 2.0, 'daily': 1.0}
Word element => {'didn': 1.0, 'which': 1.0, '5': 1.0, '42': 1.0, 'mine': 1.0, 'before': 1.0, 'know': 1.0, 'dirt': 1.0, 'shows': 1.0, 'black': 1.0, 'really': 1.0, 'does': 1.0, 'a': 2.0, 'automatically': 1.0, 'let': 1.0, 'once': 1.0, 'rear': 1.0, 'mean': 1.0, 'front': 1.0, 'button': 1.0, 'close': 2.0, 'make': 1.0, 'adjustments': 1.0, 'back': 1.0, 'making': 1.0, 'start': 1.0, 'and': 4.0, 'white': 1.0, 'position': 1.0, 'into': 1.0, 'get': 1.0, 'suppose': 1.0, 'level': 2.0, 'look': 1.0, 'is': 2.0, 'gate': 3.0, 'install': 1.0, 'bad': 1.0, 'first': 1.0, 'what': 1.0, 'when': 2.0, 'got': 1.0, 'extensions': 1.0, 'door': 1.0, 'more': 1.0, 'always': 1.0, 's': 3.0, 'out': 1.0, 'wasn': 1.0, 'loose': 1.0, 'swing': 2.0, 'all': 1.0, 'dream': 1.0, 'tall': 1.0, 'whatever': 1.0, 'paid': 1.0, 'but': 1.0, 'so': 1.0, 'can': 4.0, 'after': 1.0, 'extension': 2.0, 'did': 1.0, 'don': 1.0, 'less': 1.0, 'up': 3.0, 'looks': 1.0, 'my': 2.0, 'aging': 1.0, 'forward': 1.0, 'not': 4.0, 'those': 2.0, 'needed': 2.0, 'baby': 1.0, 'she': 1.0, 'it': 14.0, 'will': 2.0, 'could': 2.0, 'go': 2.0, 'might': 1.0, 'hands': 2.0, 'stairs': 1.0, 'mother': 1.0, 'guess': 1.0, 'order': 1.0, 'then': 3.0, 'down': 1.0, 'the': 17.0, 'of': 2.0, 'for': 4.0, 't': 5.0, 'fit': 2.0, 'worry': 1.0, 'two': 2.0, '43': 1.0, 'have': 2.0, 'buy': 1.0, 'add': 1.0, 'dogs': 1.0, 'item': 5.0, 'extra': 2.0, 'to': 9.0, 'as': 3.0, 'had': 3.0, 'tight': 1.0, 'would': 2.0, 'either': 2.0, 'stair': 1.0, 'now': 2.0, 'picked': 1.0, 'highly': 1.0, 'this': 3.0, 'with': 1.0, 'stores': 1.0, 'solid': 1.0, 'like': 2.0, 'hold': 1.0, 'plastic': 1.0, 'think': 1.0, 'better': 2.0, 'types': 1.0, 'snap': 1.0, 'push': 1.0, 'you': 11.0, 'someone': 1.0, 'see': 1.0, 'in': 1.0, 'large': 1.0, 'why': 1.0, 'just': 1.0, 'won': 1.0, 'they': 1.0, 'even': 1.0, 'money': 1.0, 'jump': 1.0, 'very': 1.0, 'being': 1.0, 'than': 1.0, 'huge': 1.0, 'way': 2.0, 'apart': 1.0, 'still': 1.0, 'if': 2.0, 'near': 1.0, 'on': 2.0, 'though': 3.0, 'entry': 3.0, 'i': 11.0, 'retail': 1.0, 'well': 1.0, 'putting': 1.0, 'be': 3.0, 'dirty': 1.0, 'recommend': 1.0, 'together': 2.0, 'because': 1.0, 'staircase': 1.0, 'fall': 2.0, 'that': 6.0, 'measure': 1.0, 'work': 1.0, 'over': 1.0, 'open': 2.0, 'hard': 1.0, 'put': 1.0, 'do': 2.0, 'or': 1.0, 'need': 5.0, 'some': 1.0, 'direct': 1.0, 'parts': 1.0}
Word element => {'over': 1.0, 'climb': 1.0, 'will': 1.0, 'baby': 1.0, 'eventually': 1.0, 'your': 1.0, 'because': 1.0, 'gates': 1.0, 'of': 2.0, 'no': 1.0, 'two': 1.0, 'one': 1.0, 'short': 2.0, 'bought': 1.0, 'ones': 1.0, 'the': 2.0, 'these': 1.0, 'great': 1.0, 'works': 1.0, 'and': 2.0, 'install': 1.0, 'learn': 1.0, 'recommend': 1.0, 'easy': 1.0, 'either': 1.0, 'instead': 1.0, 'to': 2.0, 'had': 1.0, 'problems': 1.0, 'would': 1.0, 'people': 1.0, 'i': 3.0, 'buy': 1.0, 'with': 1.0, 'this': 1.0}
Word element => {'area': 1.0, 'echos': 1.0, 'a': 1.0, 'much': 1.0, 'impact': 1.0, 'is': 2.0, 'itself': 1.0, 'thing': 1.0, 'for': 1.0, 'dont': 1.0, 'design': 1.0, 'caught': 1.0, 'enough': 1.0, 'especially': 1.0, 'space': 1.0, 'reels': 1.0, 'like': 2.0, 'loud': 1.0, 'only': 1.0, 'this': 1.0, 'it': 5.0, 'whole': 1.0, 'i': 2.0, 'by': 1.0, 'too': 1.0, 'when': 2.0, 'little': 1.0, 'hands': 1.0, 'shuts': 2.0, 'so': 1.0, 'makes': 1.0, 'has': 1.0, 'they': 1.0, 'about': 1.0, 'don': 1.0, 'and': 1.0, 'get': 1.0, 'shock': 1.0, 'the': 5.0, 't': 1.0, 'behind': 1.0}
Word element => {'sleeps': 1.0, 'while': 1.0, 'move': 1.0, 'stay': 1.0, 'enough': 1.0, 'smooth': 1.0, 'nap': 1.0, 'decent': 1.0, 'nosy': 1.0, 'everything': 1.0, 'her': 1.0, 'crowded': 1.0, 'be': 1.0, 'buses': 1.0, 'order': 1.0, 'minutes': 1.0, '2': 1.0, 'shoulder': 1.0, 'bag': 1.0, 'folded': 1.0, 'sling': 1.0, 'manage': 1.0, 'city': 1.0, 'live': 1.0, '18': 1.0, 'about': 3.0, 'kind': 1.0, 'out': 2.0, 'sun': 1.0, 'really': 2.0, 'doesn': 1.0, 'canopy': 1.0, 'handles': 1.0, 'by': 1.0, 'just': 1.0, 'there': 1.0, 'holding': 1.0, 'keep': 1.0, 'makes': 1.0, 'distributed': 1.0, 'evenly': 1.0, 'not': 1.0, 'middle': 1.0, 'most': 1.0, 'back': 1.0, 'bar': 1.0, 'carry': 2.0, 'my': 3.0, 'downsides': 1.0, 'grab': 1.0, 'only': 1.0, 'zoo': 1.0, 'taken': 1.0, 'time': 1.0, 'ride': 1.0, 'went': 1.0, 'weight': 1.0, 'stats': 1.0, 'cause': 1.0, 'she': 3.0, 'baby': 2.0, 'many': 1.0, 'right': 1.0, 'weaving': 1.0, 'find': 1.0, 'sized': 1.0, 'road': 1.0, 'ordered': 1.0, 'when': 3.0, 'seen': 1.0, 'you': 3.0, 'for': 3.0, 'strollers': 2.0, 'ahead': 1.0, 'umbrella': 1.0, 'nephew': 1.0, 'trails': 1.0, 'far': 1.0, 'sometimes': 1.0, 'couldn': 1.0, 'and': 10.0, 'very': 2.0, 'see': 2.0, 'off': 1.0, 'access': 1.0, 'maneuverability': 1.0, 'a': 8.0, 'go': 1.0, 's': 7.0, 'lets': 1.0, 'have': 2.0, 'but': 2.0, 'so': 3.0, 'can': 5.0, 'stroller': 6.0, 've': 3.0, 'loves': 1.0, 'position': 3.0, 'i': 17.0, 'one': 2.0, 'lbs': 1.0, 'was': 1.0, 'pretty': 1.0, 'straight': 1.0, 'to': 5.0, 'heavy': 1.0, 'awkward': 1.0, 'as': 2.0, 'an': 1.0, 'ever': 2.0, 'all': 3.0, 'm': 1.0, 'in': 6.0, 'seat': 3.0, 'super': 1.0, 'under': 1.0, 'say': 1.0, 'looked': 1.0, 'from': 1.0, 'are': 1.0, 'first': 2.0, 'this': 1.0, 'full': 1.0, 'recline': 1.0, 'it': 13.0, 'take': 1.0, 'reviews': 1.0, 'leg': 1.0, 'fantastic': 1.0, 'decision': 1.0, 'great': 2.0, 'little': 2.0, 'two': 1.0, 'nice': 2.0, 'big': 1.0, 'of': 4.0, 'the': 27.0, 'year': 1.0, 'sturdy': 1.0, 'best': 2.0, 'sounded': 1.0, 'even': 2.0, 'has': 2.0, 'though': 1.0, 'suspension': 1.0, 'think': 1.0, 'on': 6.0, 'probably': 1.0, 'had': 1.0, 'warm': 1.0, 'up': 1.0, 'tell': 1.0, 'handle': 1.0, 'is': 5.0, 'at': 2.0, 'fit': 1.0, 't': 3.0, 'rest': 1.0, 'because': 1.0, 'that': 6.0, 'afraid': 1.0, 'into': 2.0, 'needs': 1.0, 'basket': 1.0, 'made': 1.0, 'good': 1.0, 'which': 2.0, 'side': 1.0, 'fully': 2.0, 'getting': 1.0, 'thinking': 1.0, 'reclined': 3.0, 'upright': 1.0, 'frame': 1.0, 'daughter': 1.0, 'got': 1.0, 'drunken': 1.0, 'except': 1.0, 'get': 3.0, 'none': 1.0, 'wheel': 1.0, 'some': 1.0}
Word element => {'times': 1.0, 'through': 1.0, 'being': 1.0, 'no': 1.0, 'as': 1.0, 'quality': 1.0, 'seems': 1.0, 'steel': 1.0, 'everywhere': 1.0, 'they': 1.0, 'the': 1.0, 'these': 1.0, 'stainless': 1.0, 'good': 1.0, 'loves': 1.0, 'old': 1.0, 'to': 1.0, 'we': 1.0, '4yrs': 1.0, 'multiple': 1.0, 'daughter': 1.0, 'for': 1.0, 'my': 1.0, 'are': 1.0, 'after': 1.0, 'small': 1.0, 'perfectly': 1.0, 'sized': 1.0, 'hands': 1.0, 'easy': 1.0, 'take': 1.0, 'proof': 1.0, 'rust': 1.0, 'them': 1.0, 'clean': 1.0, 'dishwasher': 2.0}
Word element => {'m': 1.0, 'far': 1.0, 'silly': 1.0, 'daughter': 1.0, 'together': 1.0, 'hook': 1.0, 'they': 1.0, 'and': 1.0, 'faces': 1.0, 'problems': 1.0, 'perfectly': 1.0, 'up': 1.0, 'held': 1.0, 'of': 1.0, 'size': 1.0, 'their': 1.0, 'with': 1.0, 'keeping': 1.0, 'more': 1.0, 'likes': 1.0, 'silverware': 1.0, 'in': 1.0, 'regular': 1.0, 'kids': 1.0, 'knife': 2.0, 'great': 1.0, 'ones': 1.0, 'for': 2.0, 'chance': 1.0, 'using': 1.0, 'had': 2.0, 'was': 1.0, 'wanted': 2.0, 'that': 4.0, 'trebimbi': 1.0, 'isn': 1.0, 'start': 1.0, 'a': 4.0, 't': 1.0, 'could': 1.0, 'sets': 3.0, 'sharp': 1.0, 'other': 1.0, 'before': 1.0, 'so': 1.0, 'concerned': 1.0, 'preschooler': 1.0, 'as': 2.0, 'any': 1.0, 'our': 1.0, 'to': 2.0, 'all': 2.0, 'have': 2.0, 'something': 1.0, 've': 2.0, 'i': 9.0, 'adding': 1.0, 'are': 2.0, 'gotten': 1.0, 'chose': 1.0, 'really': 2.0, 'at': 1.0, 'given': 1.0, 'things': 1.0, 'but': 3.0, 'it': 1.0, 'gives': 1.0, 'little': 2.0, 'without': 1.0, 'the': 5.0, 'hands': 1.0, 'softer': 1.0, 'them': 1.0, 'because': 1.0, 'stainless': 1.0, 'obviously': 1.0, 'fact': 2.0, 'my': 2.0}
Word element => {'was': 1.0, 'thought': 1.0, 'i': 2.0, 'dads': 1.0, 'great': 1.0, 'it': 2.0, 'bag': 1.0, 'have': 1.0, 'the': 1.0, 'for': 1.0, 'diaper': 1.0, 'a': 2.0, 'dude': 1.0, 'gift': 1.0, 'and': 1.0, 'as': 1.0, 'because': 1.0, 'used': 1.0}
Word element => {'than': 1.0, 'but': 1.0, 'impossible': 1.0, 'that': 1.0, 'next': 1.0, 'do': 1.0, 'os': 1.0, 'out': 1.0, 'they': 1.0, 'has': 2.0, 'wear': 1.0, 'my': 1.0, 'hang': 1.0, 'to': 4.0, 'don': 1.0, 'lots': 1.0, 'even': 1.0, 'compartments': 1.0, 'i': 3.0, 'cup': 2.0, 'materail': 1.0, 'it': 2.0, 'keys': 1.0, 'and': 2.0, 'getting': 1.0, 'like': 2.0, 'bag': 2.0, 'is': 3.0, 'really': 3.0, 'side': 1.0, 'of': 1.0, 'a': 3.0, 't': 1.0, 'place': 1.0, 'the': 5.0, 'other': 1.0, 'adjustable': 1.0, 'was': 1.0, 'burried': 1.0, 'in': 1.0, 'wip': 1.0, 'get': 1.0, 'easy': 1.0, 'strap': 1.0, 'bigger': 1.0, 'clean': 1.0, 'big': 1.0, 'comfortable': 1.0, 'for': 1.0, 'this': 1.0, 'wish': 1.0, 'compartment': 1.0, 'on': 1.0, 'so': 1.0, 'bottle': 1.0, 'sippy': 1.0}
Word element => {'accessible': 1.0, 'protected': 1.0, 'they': 1.0, 'super': 1.0, 'would': 1.0, 'bored': 1.0, 'front': 1.0, 'use': 1.0, 'cell': 1.0, 'own': 1.0, 'it': 1.0, 'pad': 1.0, 'phone': 1.0, 're': 2.0, 'place': 1.0, 'how': 1.0, 'pack': 1.0, 'much': 1.0, 'changing': 1.0, 'love': 2.0, 'dude': 1.0, 'for': 3.0, 'snacks': 1.0, 'one': 4.0, 'easily': 2.0, 'that': 2.0, 'because': 1.0, 'is': 2.0, 'but': 1.0, 'can': 1.0, 'pocket': 2.0, 'like': 2.0, 's': 1.0, 't': 2.0, 'now': 1.0, 'few': 1.0, 'just': 1.0, 'wet': 1.0, 'as': 2.0, 'bags': 1.0, 'diaper': 5.0, 'have': 1.0, 'a': 4.0, 'small': 1.0, 'using': 2.0, 'bag': 5.0, 'i': 8.0, 'disposables': 1.0, 'convenience': 1.0, 'the': 10.0, 'of': 5.0, 'lose': 1.0, 'and': 4.0, 'get': 1.0, 'my': 4.0, 'me': 1.0, 'inside': 2.0, 'find': 1.0, 'since': 1.0, 'combine': 1.0, 'purse': 1.0, 'whole': 1.0, 'wipes': 2.0, 'full': 1.0, 'teething': 1.0, 'change': 1.0, 'favorite': 1.0, 'takes': 1.0, 'up': 1.0, 'don': 1.0, 'us': 1.0, 'slot': 1.0, 'if': 2.0, 'we': 2.0, 'then': 1.0, 'toys': 1.0, 'tablets': 1.0, 'chapstick': 1.0, 'some': 1.0, 'usually': 1.0, 'whatever': 1.0, 'in': 2.0, 'other': 1.0, 'pockets': 1.0, 'plenty': 1.0, 'room': 1.0, 'another': 1.0, 'extra': 1.0, 'outfits': 1.0, 'cloth': 1.0, 'diapers': 2.0, 'are': 1.0, 'has': 2.0, 'them': 2.0, 'parts': 1.0, 'part': 1.0, 'though': 1.0, 'sunglasses': 1.0, 'on': 1.0, 'back': 1.0, 'way': 1.0}
Word element => {'instead': 1.0, 'dude': 1.0, 'my': 1.0, 'right': 1.0, 'strap': 1.0, 'off': 1.0, 'quite': 1.0, 'shoulder': 2.0, 'less': 1.0, 'also': 1.0, 'in': 1.0, 'pocket': 1.0, 'singed': 1.0, 'main': 1.0, 'messenger': 1.0, 'get': 1.0, 'and': 2.0, 'work': 1.0, 'doesn': 1.0, 'back': 1.0, 'zipper': 1.0, 'pockets': 1.0, 'always': 1.0, 'there': 1.0, 'very': 1.0, 'best': 1.0, 'one': 1.0, 'bag': 2.0, 'making': 1.0, 'not': 2.0, 'filled': 1.0, 'is': 3.0, 'on': 1.0, 't': 1.0, 'the': 7.0, 'diaper': 2.0, 'them': 1.0, 'out': 2.0, 'pushes': 1.0, 'pouch': 1.0, 'usable': 1.0, 'spacious': 1.0, 'once': 1.0, 'this': 1.0, 'it': 3.0, 'falls': 1.0, 'three': 1.0}
Word element => {'too': 1.0, 'great': 1.0, 'real': 1.0, 'like': 1.0, 'feels': 1.0, 'gladly': 1.0, 'i': 1.0, 'quality': 1.0, 'will': 1.0, 'home': 1.0, 'at': 1.0, 'is': 1.0, 'leave': 1.0, 'me': 1.0, 'any': 1.0, 'tells': 1.0, 'as': 1.0, 'day': 1.0, 's': 1.0, 'to': 1.0, 'wanted': 1.0, 'husband': 1.0, 'mine': 1.0, 'for': 3.0, 'take': 1.0, 'bag': 1.0, 'father': 2.0, 'loves': 1.0, 'anywhere': 1.0, 'my': 1.0, 'bought': 1.0, 'a': 2.0, 'oblige': 1.0, 'go': 1.0, 'manly': 1.0, 'his': 1.0, 'both': 1.0, 'himself': 1.0, 'he': 5.0, 'this': 1.0, 'it': 1.0, 'time': 1.0, 'we': 1.0}
Word element => {'too': 1.0, 'so': 1.0, 'and': 1.0, 'for': 1.0, 'one': 2.0, 'of': 1.0, 'in': 1.0, 'amount': 1.0, 'shipped': 1.0, 'friend': 1.0, 'promised': 1.0, 'was': 1.0, 'a': 2.0, 'time': 1.0, 'bought': 3.0, 'product': 1.0, 'it': 3.0, 'with': 1.0, 'this': 1.0, 'i': 1.0, 'am': 1.0, 'very': 1.0, 'happy': 1.0, 'my': 1.0, 'great': 1.0, 'the': 1.0, 'loved': 1.0, 'purchase': 1.0, 'we': 3.0, 'is': 2.0, 'second': 1.0}
Word element => {'my': 1.0, 'thats': 1.0, 'a': 1.0, 'super': 1.0, 'bag': 1.0, 'of': 2.0, 'colors': 1.0, 'complaint': 1.0, 'cool': 1.0, 'camo': 1.0, 'and': 1.0, 'canvas': 1.0, 'like': 1.0, 'compartments': 1.0, 'material': 1.0, 'the': 5.0, 'more': 1.0, 'love': 1.0, 'cheap': 1.0, 'i': 2.0, 'but': 2.0, 'thought': 1.0, 'nylon': 1.0, 'looks': 1.0, 'is': 2.0, 'pretty': 1.0, 'only': 1.0, 'it': 2.0, 'looked': 1.0}
Word element => {'way': 1.0, 'again': 1.0, 'wants': 1.0, 'gift': 1.0, 'good': 1.0, 'of': 3.0, 'buy': 1.0, 'i': 3.0, 'screen': 1.0, 'very': 1.0, 'as': 1.0, 'logo': 2.0, 'yankees': 1.0, 'give': 1.0, 'option': 1.0, 'because': 1.0, 'not': 1.0, 'looks': 1.0, 'is': 1.0, 't': 1.0, 'the': 6.0, 'bought': 1.0, 'll': 1.0, 'a': 1.0, 'guy': 1.0, 'returning': 1.0, 'wouldn': 1.0, 'he': 1.0, 'this': 1.0, 'it': 1.0, 'if': 1.0}
Word element => {'bag': 1.0, 'looking': 1.0, 'it': 2.0, 'haven': 1.0, 'used': 1.0, 'in': 1.0, 'condition': 1.0, 'arrived': 1.0, 'as': 1.0, 'have': 1.0, 'masculine': 1.0, 'stated': 1.0, 'product': 1.0, 'yet': 1.0, 'great': 2.0, 't': 1.0, 'more': 1.0, 'but': 1.0, 'looks': 1.0, 'husband': 1.0, 'to': 1.0, 'was': 1.0, 'my': 1.0, 'happy': 1.0, 'a': 1.0}
Word element => {'in': 1.0, 'while': 1.0, 'bag': 1.0, 'to': 1.0, 'had': 1.0, 'love': 1.0, 'only': 1.0, 'it': 5.0, 'unisex': 1.0, 'sections': 1.0, 'locate': 1.0, 'roomy': 1.0, 's': 3.0, 'pockets': 1.0, 'i': 3.0, 'or': 1.0, 'on': 1.0, 'great': 1.0, 'the': 3.0, 'inside': 1.0, 'so': 1.0, 'could': 1.0, 'easily': 1.0, 'things': 1.0, 'wish': 1.0, 'different': 1.0, 'within': 1.0}
Word element => {'days': 1.0, '35': 1.0, 'about': 1.0, 'arrives': 1.0, 'to': 1.0, 'forward': 1.0, 'looking': 1.0, 'and': 1.0, 'likes': 1.0, 'is': 1.0, 'really': 1.0, 'when': 1.0, 'style': 1.0, 'daughter': 1.0, 'law': 1.0, 'in': 2.0, 'the': 1.0, 'juicy': 1.0, 'diaper': 1.0, 'son': 2.0, 'purchased': 1.0, 'be': 1.0, 'we': 2.0, 'bag': 2.0, 'knew': 1.0, 'their': 1.0, 'our': 2.0, 'that': 1.0, 'using': 1.0, 'for': 1.0, 'comfortable': 1.0, 'it': 1.0, 'this': 1.0, 'he': 2.0, 'around': 1.0, 'would': 1.0, 'couture': 1.0, 'because': 1.0, 'carrying': 1.0, 'not': 1.0, 'his': 1.0, 'wife': 1.0, 's': 1.0}
Word element => {'received': 1.0, 'our': 1.0, 'law': 1.0, 'in': 1.0, 'for': 1.0, 'a': 1.0, 'this': 1.0, 'bag': 1.0, 'son': 1.0, 'is': 1.0, 'well': 3.0, 'was': 1.0, 'priced': 1.0, 'made': 1.0, 'gift': 1.0, 'bought': 1.0, 'we': 1.0, 'it': 2.0, 'and': 2.0, 'as': 1.0}
Word element => {'carry': 1.0, 'support': 1.0, 'show': 1.0, 'great': 1.0, 'practical': 1.0, 'diaper': 1.0, 'your': 1.0, 'guy': 1.0, 'only': 1.0, 'be': 1.0, 'have': 2.0, 'son': 3.0, 'shipping': 1.0, 'very': 2.0, 'to': 4.0, 'as': 1.0, 'in': 1.0, 'team': 1.0, 'arrived': 1.0, 'daughter': 1.0, 'dude': 1.0, 'for': 2.0, 'love': 1.0, 'fast': 1.0, 'am': 1.0, 'perfect': 1.0, 'this': 1.0, 'of': 1.0, 'shower': 1.0, 'it': 1.0, 'with': 1.0, 'bag': 3.0, 'gift': 2.0, 'at': 1.0, 'happy': 2.0, 'law': 1.0, 'that': 1.0, 'the': 7.0, 'a': 2.0, 't': 1.0, 'course': 1.0, 'teams': 1.0, 'and': 7.0, 'will': 1.0, 'baby': 2.0, 'quality': 1.0, 'was': 3.0, 'doesn': 1.0, 'even': 1.0, 'before': 1.0, 'use': 2.0, 'my': 3.0, 'purchase': 1.0, 'is': 1.0, 'good': 1.0, 'i': 4.0, 'stated': 1.0, 'know': 1.0, 'other': 1.0, 'are': 1.0, 'help': 1.0, 'available': 1.0, 'needs': 1.0, 'time': 1.0, 'so': 1.0}
Word element => {'works': 1.0, 'how': 2.0, 'is': 1.0, 'every': 1.0, 'been': 1.0, 'hype': 1.0, 'the': 1.0, 'bag': 2.0, 'amazing': 1.0, 'all': 1.0, 'just': 1.0, 've': 1.0, 'movie': 1.0, 'after': 1.0, 'star': 1.0, 'has': 1.0, 'seen': 1.0, 'this': 1.0, 'with': 2.0, 'it': 3.0, 'i': 1.0, 'discovered': 1.0, 'a': 1.0, 's': 1.0}
Word element => {'worked': 1.0, 'have': 1.0, 'would': 1.0, 'worth': 1.0, 'better': 1.0, 'think': 2.0, 'no': 1.0, 'about': 1.0, 'bags': 1.0, 'not': 1.0, 'wipes': 1.0, 'dirty': 1.0, 'also': 1.0, 'seems': 1.0, 'like': 4.0, 'container': 1.0, 'considering': 1.0, 'when': 1.0, 'barely': 1.0, 'able': 1.0, 'you': 1.0, 'i': 8.0, 'issues': 1.0, 'using': 1.0, 'bag': 2.0, 's': 1.0, 'hardly': 1.0, 'will': 1.0, 'could': 1.0, 'however': 1.0, 'fisher': 1.0, 'get': 1.0, 'the': 10.0, 'of': 2.0, 'there': 2.0, 'many': 1.0, 'hopes': 1.0, 'wipe': 1.0, 'was': 1.0, 'clothes': 1.0, 'ackward': 1.0, 'had': 1.0, 'quick': 1.0, 'it': 7.0, 'upon': 1.0, 'blanket': 1.0, 'strap': 1.0, 'receiving': 2.0, 'and': 6.0, 'too': 1.0, 'before': 1.0, 'room': 1.0, 'even': 2.0, 'first': 1.0, 'are': 2.0, 'diapers': 2.0, 'fabric': 1.0, 'for': 3.0, 't': 3.0, 'fit': 2.0, 'price': 2.0, 'main': 2.0, 'texture': 1.0, 'compartment': 3.0, 'thick': 1.0, 'is': 5.0, 'a': 4.0, 'small': 4.0, 'can': 1.0, 'but': 3.0, 'opening': 1.0, 'don': 3.0, 'shoulder': 1.0, 'bought': 1.0, 'money': 1.0, 'items': 1.0, 'much': 1.0, 'changing': 1.0, 'non': 1.0, 'into': 2.0, 'pad': 1.0, 'nice': 2.0, 'up': 1.0, 'change': 1.0, 'takes': 1.0, 'in': 2.0, 'side': 2.0, 'compartments': 2.0, 'all': 1.0, 'pretty': 1.0, 'high': 1.0, 'to': 1.0, 'bigger': 1.0, 'zippered': 2.0, 'stuff': 1.0, 'anything': 1.0, 'each': 1.0, 'this': 2.0, 'few': 2.0, 'bottle': 2.0, 'very': 1.0, 'long': 1.0, 'loose': 1.0, 'has': 1.0, 'overall': 1.0}
Word element => {'and': 1.0, 'quite': 1.0, 'pad': 1.0, 'chaging': 1.0, 'so': 1.0, 'oldest': 1.0, 'everything': 1.0, 'roomy': 1.0, 'well': 1.0, 'a': 6.0, 'new': 1.0, 'guard': 1.0, 'child': 1.0, 'he': 1.0, 'is': 3.0, 'son': 1.0, 'as': 3.0, 'birthday': 1.0, 'gift': 1.0, 'not': 1.0, 'purchased': 1.0, 'air': 1.0, 'in': 1.0, 'this': 1.0, 'perfect': 1.0, 'national': 1.0, 'for': 3.0, 'one': 1.0, 'the': 4.0, 'great': 1.0, 'my': 1.0, 'dad': 1.0, 'baby': 1.0, 'military': 1.0, 'of': 1.0, 'there': 1.0, 'was': 1.0, 'beautiful': 1.0, 'features': 1.0, 'girl': 1.0, 'his': 1.0, 'guy': 1.0, '5th': 1.0, 'camouflage': 1.0, 'inside': 1.0, 'were': 1.0, 'surprise': 1.0, 'you': 1.0, 'including': 1.0, 'adequate': 1.0, 'bag': 1.0, 'need': 1.0, 'little': 1.0}
Word element => {'you': 1.0, 'of': 1.0, 'description': 1.0, 'picture': 1.0, 'the': 3.0, 'like': 1.0, 'how': 1.0, 'at': 1.0, 'my': 1.0, 'happy': 1.0, 'so': 1.0, 'both': 1.0, 'her': 2.0, 'and': 4.0, 'very': 1.0, 'as': 1.0, 'for': 1.0, 'a': 2.0, 'were': 1.0, 'their': 1.0, 'bag': 1.0, 'much': 1.0, 'received': 1.0, 'gift': 1.0, 'ordered': 1.0, 'i': 2.0, 'particular': 1.0, 'amazon': 1.0, 'product': 2.0, 'through': 1.0, 'spot': 1.0, 'husband': 2.0, 'was': 3.0, 'on': 2.0, 'about': 1.0, 'baby': 1.0, 'thank': 1.0, 'registry': 1.0, 'excited': 1.0, 'looked': 1.0, 'this': 2.0, 'coworker': 2.0, 'it': 3.0}
Word element => {'product': 1.0, 'as': 1.0, 'may': 1.0, 'myself': 1.0, 'thinking': 1.0, 'husband': 1.0, 'my': 1.0, 'logos': 1.0, 'one': 1.0, 'for': 2.0, 'love': 1.0, 'option': 1.0, 'several': 1.0, 'easily': 1.0, 'bag': 1.0, 'dude': 1.0, 'mlb': 1.0, 'that': 1.0, 'well': 1.0, 'a': 1.0, 'want': 1.0, 'is': 2.0, 'it': 1.0, 'with': 1.0, 'durable': 1.0, 'these': 1.0, 'great': 2.0, 'diaper': 2.0, 'the': 1.0, 'are': 1.0, 'm': 1.0, 'compartments': 1.0, 'and': 1.0, 'i': 3.0, 'also': 1.0, 'has': 1.0, 'they': 1.0, 'of': 1.0, 'available': 1.0}
Word element => {'over': 1.0, 'are': 1.0, 'days': 1.0, 's': 1.0, 'baby': 1.0, 'bag': 2.0, 'loves': 1.0, 'that': 1.0, 'the': 1.0, 'diaper': 2.0, 'likes': 1.0, 'saying': 1.0, 'husband': 1.0, 'he': 1.0, 'it': 2.0, 'my': 1.0, 'like': 1.0, 'a': 1.0, 'gear': 1.0, 'looks': 1.0, 'is': 1.0, 'will': 1.0, 'still': 1.0, 'and': 1.0, 'get': 1.0, 'use': 1.0, 'his': 1.0, 'even': 1.0, 'after': 1.0}
Word element => {'money': 1.0, 'worth': 1.0, 'way': 1.0, 'your': 1.0, 'of': 1.0, 'out': 1.0, 'use': 1.0, 'i': 1.0, 'sometimes': 1.0, 'yeah': 1.0, 'carry': 1.0, 'will': 1.0, 'man': 1.0, 'bag': 3.0, 'that': 1.0, 'allows': 1.0, 'for': 1.0, 'if': 1.0, 'we': 1.0, 'keeps': 1.0, 'messager': 1.0, 'are': 1.0, 'diaper': 1.0, 'the': 3.0, 'comfort': 1.0, 'carrying': 1.0, 'style': 1.0, 'a': 2.0, 'alot': 1.0, 'and': 1.0}
Word element => {'longer': 1.0, 'just': 1.0, 'strap': 1.0, 'have': 1.0, 'would': 1.0, 'that': 1.0, 'thing': 1.0, 'this': 1.0, 'car': 2.0, 'husband': 1.0, 'was': 1.0, 'it': 2.0, 'with': 1.0, 'he': 1.0, 'own': 1.0, 'born': 1.0, 'when': 2.0, 'daughter': 2.0, 'pinstripe': 1.0, 'me': 1.0, 'in': 1.0, 'liked': 1.0, 'diaper': 1.0, 'myself': 1.0, 'the': 3.0, 'for': 3.0, 'dude': 1.0, 'mainly': 2.0, 'bag': 1.0, 'to': 3.0, 'our': 3.0, 's': 2.0, 'a': 2.0, 'we': 3.0, 'during': 1.0, 'my': 2.0, 'family': 1.0, 'so': 2.0, 'order': 1.0, 'i': 3.0, 'little': 1.0, 'figure': 1.0, 'is': 2.0, 'out': 1.0, 'had': 2.0, 'what': 1.0, 'both': 1.0, 'gotten': 1.0, 'day': 1.0, 'one': 1.0, 'decided': 1.0, 'while': 1.0, 'keep': 1.0, 'since': 1.0, 'at': 1.0, 'shoulder': 1.0, 'change': 1.0, 'work': 1.0, 'only': 1.0, 'do': 1.0, 'much': 1.0}
Word element => {'best': 1.0, 'at': 1.0, 'star': 1.0, '3': 1.0, 'only': 1.0, 'overall': 1.0, 'functionality': 1.0, 'bottles': 1.0, 'formula': 1.0, 'room': 1.0, 'way': 1.0, 'no': 1.0, 'breast': 1.0, 'of': 1.0, 'there': 1.0, 'instead': 1.0, 'fed': 1.0, 'diapers': 1.0, 'in': 1.0, 'young': 1.0, 'that': 1.0, 'thought': 1.0, 'apparent': 1.0, 'made': 1.0, 'girlie': 1.0, 'is': 6.0, 'broad': 1.0, 'men': 1.0, 'be': 1.0, 'tries': 1.0, 'ones': 1.0, 'nowhere': 1.0, 'a': 6.0, 'feeding': 1.0, 'buxom': 1.0, 'girl': 1.0, 'bag': 1.0, 'bottle': 1.0, 'so': 2.0, 'wear': 1.0, 'for': 6.0, 'fit': 1.0, 'and': 2.0, 'across': 1.0, 'enough': 1.0, 'especially': 1.0, 'this': 2.0, 'it': 5.0, 'would': 2.0, 'sure': 1.0, 'give': 1.0, 'me': 1.0, 'not': 1.0, 'style': 2.0, 'to': 1.0, 'the': 2.0, 'chest': 1.0, 'know': 1.0, 'like': 2.0, 'designed': 1.0, '2': 1.0, 'but': 2.0, 'nice': 1.0, 'near': 1.0, 'large': 1.0, 'if': 2.0, 'am': 1.0, 'when': 1.0, 'you': 1.0, 'have': 2.0, '4': 1.0, 'i': 7.0, 'two': 1.0}
Word element => {'waterproof': 1.0, 'seems': 1.0, 'need': 1.0, 'very': 1.0, 'we': 1.0, 'my': 1.0, 'has': 2.0, 'carry': 1.0, 'sturdy': 1.0, 'many': 1.0, 'bag': 1.0, 'almost': 1.0, 'holds': 1.0, 'loves': 1.0, 'husband': 1.0, 'to': 1.0, 'this': 1.0, 'it': 2.0, 'everything': 1.0, 'so': 1.0, 'and': 3.0, 'do': 1.0, 'pockets': 1.0, 'i': 1.0, 'a': 1.0, 'fabric': 1.0}
Word element => {'toddler': 1.0, 'absolutely': 1.0, 's': 1.0, 'enough': 2.0, 'not': 2.0, 'just': 1.0, 'this': 2.0, 'hours': 1.0, '2': 1.0, 'both': 1.0, 'room': 3.0, 'formula': 1.0, 'b': 2.0, 'use': 1.0, 'growing': 1.0, 'front': 1.0, 't': 1.0, 'separate': 1.0, 'have': 2.0, 'month': 1.0, '4': 1.0, 'i': 7.0, 'to': 2.0, 'our': 1.0, 'least': 1.0, 'now': 1.0, 'two': 1.0, 'little': 1.0, 'baby': 2.0, 'right': 1.0, 'that': 3.0, 'storage': 1.0, 'and': 7.0, 'me': 1.0, 'pad': 1.0, 'changing': 1.0, 'put': 2.0, 'inside': 2.0, 'back': 1.0, 'with': 1.0, 'only': 1.0, 'indeed': 1.0, 'c': 2.0, 'bib': 1.0, 'keep': 1.0, 'at': 2.0, 'is': 7.0, 'changes': 1.0, 'more': 1.0, 'imagine': 1.0, 'small': 3.0, 'a': 8.0, 'bottles': 3.0, 'gas': 1.0, 'zipper': 1.0, 'spouse': 1.0, 'boogie': 1.0, 'socks': 1.0, 'great': 2.0, '1': 1.0, 'find': 1.0, 'than': 1.0, 'for': 7.0, 'where': 1.0, 'still': 1.0, 'if': 1.0, 'around': 1.0, 'drops': 1.0, 'problem': 1.0, 'it': 2.0, '9': 1.0, 'quick': 1.0, 'oz': 1.0, 'ready': 1.0, 'feed': 1.0, 'old': 1.0, 'run': 1.0, 'the': 6.0, 'of': 3.0, 'there': 1.0, 'pair': 1.0, 'need': 1.0, 'toys': 1.0, 'using': 1.0, 'looking': 1.0, 'bag': 3.0, 'too': 1.0, 'one': 1.0, 'couple': 1.0, 'receiving': 1.0, 'happen': 1.0, '5': 1.0, 'blanket': 1.0, 'diapers': 1.0, 'are': 1.0, 'you': 1.0, 'never': 1.0, 'very': 2.0, 'stroll': 1.0, 'know': 1.0, 'what': 1.0, 'can': 2.0, 'but': 2.0, 'diaper': 2.0, 'bags': 1.0, 'good': 1.0, 'wipes': 1.0, 'overall': 1.0, 'pouch': 1.0, 'park': 1.0}
Word element => {'mean': 1.0, 'instead': 1.0, 'higher': 1.0, 'butler': 1.0, 'it': 3.0, 'to': 1.0, 'similar': 1.0, 'and': 2.0, 'too': 1.0, 'for': 2.0, 'cheap': 1.0, 'supple': 1.0, 'esque': 1.0, 'or': 1.0, 'vinyl': 1.0, 'bean': 1.0, 'reminds': 1.0, 'scratchy': 1.0, 'dating': 1.0, 'a': 4.0, 'we': 4.0, 'parachute': 1.0, 'more': 1.0, 'is': 3.0, 'of': 4.0, 'the': 9.0, 'myself': 1.0, 'softer': 1.0, 'trendy': 1.0, 'i': 2.0, 'sorty': 1.0, 'ample': 1.0, 'rei': 1.0, 'lays': 1.0, 'still': 1.0, 'expecting': 1.0, 'expectation': 1.0, 'was': 1.0, 'on': 1.0, 'think': 1.0, 'upon': 2.0, 'touch': 1.0, 'nylon': 3.0, 'option': 1.0, 'great': 1.0, 'll': 1.0, 'material': 5.0, '80s': 1.0, 'pockets': 1.0, 'inspection': 1.0, 'because': 1.0, 'thrilled': 1.0, 'this': 3.0, 'has': 1.0, 'reciept': 1.0, 'hip': 1.0, 'cool': 1.0, 'end': 1.0, 'gear': 1.0, 'were': 2.0, 'but': 2.0, 'product': 1.0, 'price': 1.0, 'in': 1.0, 'm': 1.0, 'cosmetic': 1.0, 'd': 1.0, 'reasonable': 1.0, 'free': 1.0, 'makes': 1.0, 'type': 1.0, 'crinkly': 1.0, 'sound': 1.0, 'when': 2.0, 'you': 3.0, 'here': 1.0, 'bags': 1.0, 'fabulous': 1.0, 'from': 1.0, 'wife': 1.0, 'looks': 2.0, 'entire': 1.0, 'me': 1.0, 'thin': 1.0, 'pants': 1.0, 'signed': 1.0, 'get': 2.0, 'case': 1.0, 'stiff': 1.0, 'lancombe': 1.0, 'sadly': 1.0, 'flat': 1.0, 'returned': 1.0, 'bag': 1.0, 'looking': 1.0, 'another': 1.0, 'are': 1.0, 'bad': 1.0}
Word element => {'dads': 1.0, 'are': 1.0, 'who': 1.0, 'my': 1.0, 'all': 1.0, 'tell': 1.0, 'friends': 1.0, 'men': 1.0, 'from': 1.0, 'but': 1.0, 'has': 1.0, 'great': 1.0, 'to': 1.0, 'look': 1.0, 'for': 1.0, 'pockets': 1.0, 'i': 3.0, 'not': 1.0, 'is': 1.0, 'women': 1.0, 'on': 1.0, 'bag': 2.0, 'it': 3.0, 'only': 1.0, 'this': 2.0, 'also': 1.0, 'everything': 1.0, 'and': 1.0, 'get': 2.0, 'good': 1.0, 'compliments': 1.0, 'wherever': 1.0, 'go': 1.0, 'does': 1.0, 'both': 1.0}
Word element => {'bag': 1.0, 'particular': 1.0, 'asked': 1.0, 'be': 1.0, 'care': 1.0, 'am': 1.0, 'sure': 1.0, 'for': 1.0, 'love': 1.0, 'i': 1.0, 'will': 1.0, 'but': 1.0, 'gift': 1.0, 'a': 2.0, 'was': 1.0, 'before': 1.0, 'used': 1.0, 'son': 1.0, 'he': 1.0, 'it': 1.0, 'this': 2.0, 'with': 1.0, 'research': 1.0, 'and': 1.0, 'my': 1.0, 'did': 1.0, 'lot': 1.0, 'of': 1.0}
Word element => {'for': 1.0, 'set': 1.0, 'starter': 1.0, 'have': 1.0, 'prepared': 1.0, 'add': 1.0, 'you': 1.0, 's': 2.0, 'than': 1.0, 'fast': 1.0, 'kid': 1.0, 'new': 1.0, 'guy': 2.0, 'outdors': 1.0, 'the': 1.0, 'great': 3.0, 'pockets': 1.0, 'montana': 1.0, 'and': 3.0, 'to': 1.0, 'be': 1.0, 'product': 1.0, 'with': 1.0, 'first': 1.0, 'book': 1.0, 'quality': 1.0, 'an': 1.0, 'many': 1.0, 'made': 1.0, 'high': 1.0, 'better': 1.0, 'recommended': 1.0, 'cabela': 1.0, 'well': 2.0, 'a': 4.0, 'time': 1.0, 'price': 1.0, 'highly': 1.0, 'dad': 2.0, 'shipping': 1.0, 'agift': 1.0, 'as': 1.0, 'from': 1.0, 'received': 1.0, 'by': 1.0}
Word element => {'thanks': 1.0, 'a': 1.0, 'women': 1.0, 'make': 1.0, 'can': 1.0, 'smaller': 1.0, 'you': 1.0, 'if': 1.0, 'for': 1.0, 'design': 1.0, 'in': 1.0, 'product': 2.0, 'time': 1.0, 'good': 2.0, 'expected': 1.0, 'as': 1.0, 'quality': 1.0, 'and': 1.0, 'bit': 1.0, 'got': 1.0, 'size': 1.0, 'wonder': 1.0}
Word element => {'can': 1.0, 'so': 1.0, 'are': 1.0, 'yes': 1.0, 'at': 1.0, 'no': 1.0, 'said': 1.0, 'and': 2.0, 'gift': 1.0, 'bought': 1.0, 'a': 5.0, 'son': 1.0, 'as': 1.0, 'bag': 3.0, 'my': 1.0, 'you': 1.0, 's': 1.0, 'this': 1.0, 'it': 1.0, 'the': 3.0, 'diaper': 1.0, 'great': 1.0, 'for': 2.0, 'love': 1.0, 'clips': 2.0, 'asked': 1.0, 'were': 1.0, 'took': 1.0, 'i': 3.0, 'back': 1.0, 'but': 1.0, 'stroller': 3.0, 'man': 1.0, 'look': 1.0, 'to': 2.0, 'use': 1.0, 'originally': 1.0, 'itsomeone': 1.0, 'clip': 1.0, 'if': 1.0, 'of': 1.0, 'there': 2.0}
Word element => {'diaper': 1.0, 'channel': 1.0, 'reveiews': 1.0, 'on': 1.0, 'this': 1.0, 'he': 1.0, 'looks': 2.0, 'it': 2.0, 'different': 1.0, 'be': 1.0, 'e': 1.0, 'but': 1.0, 'yet': 1.0, 'for': 2.0, 'mine': 1.0, 'my': 2.0, 'boyfriend': 1.0, 'best': 1.0, 'both': 1.0, 'bag': 2.0, 'wanted': 1.0, 'had': 1.0, 'its': 2.0, 'to': 1.0, 'something': 2.0, 'that': 1.0, 'got': 1.0, 'use': 1.0, 'wear': 2.0, 'after': 1.0, 'comfortable': 1.0, 'great': 2.0, 'big': 1.0, 'small': 1.0, 'must': 1.0, 'have': 1.0, 'item': 1.0, 'thats': 1.0, 'year': 1.0, 'almost': 1.0, 'not': 2.0, 'and': 4.0, 'too': 1.0, 'daughter': 1.0, 'is': 1.0, 'i': 3.0, 'two': 1.0, 'could': 2.0, 'a': 2.0, 'we': 1.0, 'still': 2.0, 'everyday': 1.0}
Word element => {'masculine': 1.0, 'women': 1.0, 'feminine': 1.0, 'house': 1.0, 'little': 1.0, 'choose': 1.0, 'that': 1.0, 'their': 1.0, 'take': 1.0, 'to': 1.0, 'can': 1.0, 'baby': 1.0, 'dad': 1.0, 'new': 1.0, 'very': 1.0, 'son': 2.0, 'perfect': 1.0, 'in': 1.0, 'often': 1.0, 'for': 2.0, 'one': 1.0, 'counterpart': 1.0, 'i': 1.0, 'bags': 2.0, 'and': 3.0, 'they': 2.0, 'of': 2.0, 'two': 1.0, 'my': 2.0, 'diaper': 1.0, 'these': 2.0, 'the': 3.0, 'are': 3.0, 'bought': 1.0, 'other': 1.0, 'use': 1.0, 'loved': 1.0, 'what': 1.0, 'both': 1.0, 'out': 1.0, 'made': 1.0, 'them': 1.0, 'a': 1.0, 'law': 1.0, 'well': 1.0, 'just': 1.0}
Word element => {}
Word element => {'other': 1.0, 'comfortably': 1.0, 'few': 1.0, 'diaper': 1.0, 'toys': 1.0, 'three': 1.0, 'bottles': 1.0, 'jar': 1.0, 'baby': 1.0, '3': 1.0, 'shirts': 1.0, 'rash': 1.0, 'of': 1.0, 'pack': 1.0, 'wipe': 1.0, 'to': 1.0, 'too': 1.0, 'two': 2.0, 'things': 1.0, 'if': 1.0, 'recommended': 1.0, 'a': 2.0, 'items': 1.0, 'food': 1.0, 'small': 2.0, 'you': 1.0, 'want': 1.0, 'many': 1.0, 'socks': 1.0, 'pant': 1.0, 'bit': 1.0, 'maybe': 1.0, 'packed': 1.0, 'bag': 1.0, 'and': 1.0, 'cream': 1.0, 'me': 1.0, 'but': 1.0, 'diapers': 1.0, 'worked': 1.0, 'i': 1.0, 'for': 1.0, 'one': 2.0, '10': 1.0}
Word element => {'enjoy': 1.0, 'will': 1.0, 'so': 1.0, 'be': 2.0, 'to': 4.0, 'father': 1.0, 'can': 1.0, 'wait': 1.0, 'glad': 1.0, '34': 2.0, 'a': 1.0, 'is': 1.0, 'dad': 1.0, 'i': 2.0, 'gift': 1.0, 'found': 1.0, 'and': 1.0, 'know': 1.0, 'give': 1.0, 'great': 1.0, 't': 1.0, 'the': 1.0, 'it': 2.0, 'this': 2.0, 'he': 1.0}
Word element => {'of': 1.0, 'pair': 1.0, 'an': 1.0, 'clothes': 1.0, 'sippy': 1.0, 'water': 1.0, 'sanitizer': 1.0, 'wipes': 1.0, 'wallet': 1.0, 'extra': 1.0, 'ever': 1.0, 'suit': 1.0, 'hand': 1.0, 'like': 1.0, 'sound': 1.0, 'enough': 1.0, 'it': 5.0, 'people': 1.0, 'trained': 1.0, 'have': 2.0, 'want': 2.0, 'diaper': 1.0, 'cups': 1.0, 'to': 2.0, 'just': 1.0, 'those': 1.0, 'not': 2.0, 'and': 4.0, 'old': 1.0, 'm': 1.0, 'mom': 1.0, 'necessarily': 1.0, 'able': 1.0, 'turned': 1.0, 'us': 1.0, 'go': 1.0, 'a': 6.0, 'case': 1.0, 'that': 5.0, 'loves': 1.0, 'bag': 2.0, 'bottle': 1.0, 'so': 2.0, 'potty': 1.0, 'one': 1.0, 'snacks': 1.0, 'where': 1.0, 'for': 2.0, 'i': 7.0, '4': 1.0, 'year': 1.0, 'from': 1.0, '2': 1.0, 'but': 2.0, 'perfect': 1.0, 'kids': 1.0, 'this': 1.0, 'wish': 1.0, 'is': 5.0, 'say': 1.0, 'beginning': 1.0, 'big': 2.0, 'nice': 1.0, 'be': 2.0, 'the': 2.0, 'hands': 1.0, 'read': 1.0, 'free': 1.0, 'still': 1.0, 'carry': 2.0, 'some': 1.0, 'had': 1.0, 'what': 1.0, 'they': 2.0, 'reviews': 1.0}
Word element => {'conscious': 1.0, 'like': 1.0, 'formula': 1.0, 'separate': 1.0, 'buy': 1.0, 'had': 1.0, 'packed': 1.0, 'seams': 1.0, 'bulges': 1.0, 'ploy': 1.0, 'this': 1.0, 'found': 1.0, 'spite': 1.0, 'in': 2.0, 'still': 1.0, 'under': 1.0, 'carry': 1.0, 'parents': 1.0, 'daddy': 1.0, 'of': 2.0, 'type': 1.0, 'cooler': 1.0, 'roomywe': 1.0, 'isn': 1.0, 'just': 1.0, 'large': 1.0, 'zipper': 1.0, 'anythingthe': 1.0, 'are': 2.0, 'useful': 1.0, 'attach': 2.0, 'seems': 1.0, 'rings': 1.0, 'for': 2.0, 'scream': 1.0, 'carried': 1.0, 'be': 1.0, 'baby': 1.0, 'pros': 1.0, 'more': 1.0, 'is': 2.0, 'diaper': 1.0, 'stroller': 1.0, 'an': 1.0, 'inside': 1.0, 'the': 8.0, 'milk': 1.0, 'across': 1.0, 'and': 4.0, 'carabiner': 1.0, 'when': 1.0, 'cell': 1.0, 'not': 2.0, 'style': 1.0, 'pouch': 2.0, 'phone': 1.0, 'our': 1.0, 'all': 1.0, 'center': 1.0, 'to': 6.0, 'as': 2.0, 'case': 1.0, 'that': 5.0, 'changing': 1.0, 'sun': 1.0, 'keys': 1.0, 'store': 1.0, 'doesn': 1.0, 'chesthas': 1.0, 'pocket': 2.0, 'bag': 3.0, 'self': 1.0, 'masculine': 1.0, 'necessities': 1.0, 'we': 2.0, 't': 2.0, 'a': 5.0, 'with': 1.0, 'matcons': 1.0, 'pouchcomes': 1.0, 'decent': 1.0, 'insulated': 1.0, 'well': 1.0, 'has': 1.0, 'no': 1.0, 'at': 1.0, 'odd': 1.0, 'messenger': 1.0, 'keep': 1.0, 'can': 1.0, 'food': 1.0, 'cold': 1.0, 'or': 1.0, 'section': 1.0, 'everything': 1.0, 'warmhas': 1.0}
Word element => {'grrr': 1.0, 'have': 1.0, 'like': 1.0, 'graco': 1.0, 'nice': 1.0, 'buy': 1.0, 'back': 1.0, 'better': 1.0, 'friends': 1.0, 'so': 1.0, 'because': 1.0, '2': 1.0, 'cost': 1.0, 'grocery': 1.0, 'it': 4.0, 'this': 2.0, 'and': 2.0, 'first': 1.0, 'reusable': 1.0, 'baby': 2.0, 'my': 2.0, 'i': 6.0, 'wouldn': 1.0, 'got': 1.0, 'pockets': 1.0, 'diaper': 3.0, 'the': 4.0, 'second': 1.0, 'bag': 4.0, 'had': 2.0, 'now': 1.0, 'if': 2.0, 'cute': 1.0, 'bucks': 1.0, 'much': 1.0, 'only': 1.0, 'tiny': 1.0, 'that': 4.0, 'there': 1.0, 'is': 2.0, 'say': 1.0, 'go': 1.0, 'could': 1.0, 't': 1.0, 's': 2.0, 'a': 3.0, 'use': 2.0, 'front': 1.0, 'in': 2.0, 'dude': 1.0, 'for': 2.0, 'fit': 1.0, 'normal': 1.0, 'zip': 1.0, 'are': 2.0, 'd': 1.0, '60': 2.0, 'all': 4.0, 'to': 2.0, 'as': 1.0, 'compartments': 1.0, 'spent': 1.0, 'stuff': 1.0, 'put': 1.0, 'on': 1.0}
Word element => {'worn': 1.0, 'straps': 1.0, 'first': 1.0, 'he': 3.0, 'with': 1.0, 'be': 3.0, 'was': 3.0, 'across': 1.0, 'and': 3.0, 'about': 1.0, 'shoots': 1.0, 'body': 1.0, 'dad': 1.0, 'guns': 1.0, 'who': 1.0, 'reaction': 1.0, 'a': 2.0, 'camo': 1.0, 'collects': 1.0, 'although': 1.0, 'the': 3.0, 'orange': 1.0, 'his': 1.0, 'amusing': 1.0, 'what': 1.0, 'zip': 1.0, 'bag': 2.0, 'gift': 1.0, 'for': 2.0, 'yet': 1.0, 'time': 1.0, 'well': 2.0, 'has': 1.0, 'is': 1.0, 'figure': 1.0, 'it': 4.0, 'looks': 1.0, 'son': 1.0, 'to': 5.0, 'our': 1.0, 'as': 1.0, 'watching': 1.0, 'skeet': 1.0, 'tried': 1.0, 'out': 1.0, 'made': 1.0, 'loves': 1.0, 'good': 1.0, 'use': 1.0, 'designed': 1.0, 'size': 1.0}
Word element => {'stars': 1.0, 'that': 1.0, 'essentials': 1.0, 'have': 1.0, 'pack': 1.0, 'can': 1.0, 'other': 1.0, 'we': 1.0, 'limits': 1.0, 'bigger': 1.0, 'area': 1.0, 'storage': 1.0, 'girlie': 1.0, 'what': 1.0, 'hubby': 1.0, 'was': 1.0, 'to': 2.0, 'look': 1.0, 'my': 2.0, 'interior': 1.0, 'the': 3.0, 'way': 1.0, 'bare': 1.0, 'is': 2.0, 'given': 1.0, 'for': 1.0, 'love': 1.0, 'toat': 1.0, 'bag': 1.0, 'would': 1.0, 'rather': 1.0, 'cool': 1.0, 'around': 1.0, 'complaint': 1.0, '5': 1.0, 'wish': 1.0, 'than': 2.0, 'a': 1.0, 'it': 2.0, 'this': 2.0, 'only': 1.0, 'bones': 1.0, 'i': 2.0}
Word element => {'it': 3.0, 'he': 3.0, 'shower': 1.0, 'thought': 1.0, 'that': 1.0, 'saw': 1.0, 'guy': 1.0, 'kinda': 1.0, 'fisherman': 1.0, 'i': 2.0, 'outdoors': 1.0, 'avid': 1.0, 'my': 1.0, 'high': 1.0, 'and': 5.0, 'stitching': 1.0, 'a': 1.0, 'going': 1.0, 'm': 1.0, 'an': 2.0, 'quality': 1.0, 'be': 3.0, 'll': 1.0, 'in': 1.0, 'this': 1.0, 'perfect': 2.0, 'son': 1.0, 'open': 1.0, 'to': 2.0, 'as': 1.0, 'is': 4.0, 'type': 1.0, 'april': 1.0, 'dad': 2.0, 'something': 1.0, 'would': 1.0, 'ready': 1.0, 'sturdy': 1.0, 'where': 1.0, 'for': 2.0, 'loaded': 1.0, 'outdoor': 1.0, 'up': 1.0, 'the': 1.0, 'sure': 1.0, 'delighted': 1.0, 'well': 1.0, 'has': 1.0}
Word element => {'about': 1.0, 'good': 1.0, 'condition': 1.0, 'in': 1.0, 'still': 1.0, 'bag': 2.0, 'on': 1.0, 'rough': 1.0, 'potty': 1.0, 'needs': 1.0, 'who': 1.0, 'when': 1.0, 'someone': 1.0, 'things': 1.0, 'given': 1.0, 'be': 1.0, 'our': 1.0, 'to': 2.0, 're': 1.0, 'enough': 2.0, 'long': 1.0, 'will': 1.0, 'suspect': 1.0, 'organizing': 1.0, 'there': 2.0, 'and': 4.0, 'skull': 1.0, 'the': 4.0, 'live': 1.0, 'pirate': 1.0, 'can': 1.0, '2': 2.0, 'figured': 1.0, 'diaper': 1.0, 'because': 1.0, 'carrying': 1.0, 'later': 1.0, 'bags': 1.0, 've': 2.0, 'love': 1.0, 'for': 2.0, 'it': 7.0, 'kids': 1.0, 'this': 2.0, 'ours': 1.0, 'taken': 1.0, 'crossbones': 1.0, 'over': 2.0, 'theme': 1.0, 'everywhere': 1.0, 'away': 1.0, 'now': 1.0, 'look': 1.0, 'excellent': 1.0, 'had': 1.0, 'husband': 1.0, 'years': 2.0, 'i': 4.0, 'wouldn': 1.0, 'got': 1.0, 'great': 1.0, 'nice': 1.0, 'feel': 1.0, 'my': 1.0, 'silly': 1.0, 'girlie': 1.0, 'out': 1.0, 'trained': 1.0, 'many': 1.0, 'say': 1.0, 'is': 2.0, 'very': 1.0, 't': 2.0, 'we': 3.0, 's': 1.0, 'unlike': 1.0, 'waterproof': 1.0, 'sturdy': 1.0, 'compartments': 1.0, 'are': 2.0}
Word element => {'get': 1.0, 'diapers': 1.0, 'you': 2.0, 'accessories': 1.0, 'if': 1.0, 'guess': 1.0, 'and': 2.0, 'but': 1.0, 'room': 1.0, 'storage': 1.0, 'some': 1.0, 'use': 1.0, 'little': 1.0, 'that': 1.0, 'bring': 1.0, 'great': 1.0, 'mention': 1.0, 'well': 1.0, 'be': 1.0, 'men': 1.0, 'bought': 1.0, 'few': 2.0, 'will': 2.0, 'doesn': 1.0, 'bears': 1.0, 'messenger': 1.0, 'who': 1.0, 'coworker': 1.0, 'it': 6.0, 'he': 1.0, 'with': 2.0, 'only': 2.0, 'done': 1.0, 'need': 1.0, 'short': 1.0, 'bag': 2.0, 'colors': 1.0, 'definitely': 1.0, 'days': 1.0, 'this': 1.0, 'perfect': 1.0, 'in': 2.0, 'for': 2.0, 'purple': 1.0, 'i': 3.0, 'gift': 1.0, 'constructed': 1.0, 'as': 2.0, 'to': 2.0, 'wide': 1.0, 'small': 1.0, 'have': 1.0, 'thing': 1.0, 'drag': 1.0, 'dad': 1.0, 'array': 1.0, 'of': 1.0, 'manly': 1.0, 'so': 1.0, 'could': 1.0, 'a': 8.0, 's': 3.0, 't': 1.0, 'job': 1.0, 'the': 2.0, 'more': 1.0, 'is': 2.0, 'comes': 1.0, 'around': 1.0, 'would': 1.0, 'something': 1.0, 'teddy': 1.0, 'on': 1.0}
Word element => {'worth': 1.0, 'comfortable': 1.0, 'super': 1.0, 'and': 3.0, 'like': 1.0, 'ever': 1.0, 'i': 2.0, 'bag': 2.0, 'it': 5.0, 'this': 1.0, 'best': 1.0, 'definmitely': 1.0, 'diaper': 2.0, 't': 1.0, 'the': 1.0, 'my': 1.0, 'is': 1.0, 's': 2.0, 'unisex': 1.0, 'had': 1.0, 'look': 1.0, 'husband': 1.0, 'use': 1.0, 'both': 1.0, 'even': 1.0, 'doesn': 1.0, 'a': 1.0}
Word element => {'bag': 1.0, 'double': 1.0, 'out': 1.0, 'keep': 1.0, 'we': 1.0, 'on': 1.0, 'now': 1.0, 'and': 1.0, 'i': 1.0, 'great': 1.0, 'it': 2.0, 'bought': 1.0, 'my': 1.0, 'for': 1.0, 'husband': 1.0, 'to': 1.0, 'stroller': 1.0, 'just': 1.0, 'use': 1.0, 'at': 1.0, 'disney': 1.0, 'land': 1.0}
Word element => {'they': 1.0, 'everything': 1.0, 'about': 1.0, 'just': 1.0, 'the': 1.0, 'newborn': 1.0, 'old': 1.0, '2': 1.0, 'have': 1.0, 'parents': 1.0, 'for': 1.0, 'recommend': 1.0, 'other': 1.0, 'amazon': 1.0, 'is': 2.0, 'through': 2.0, 'order': 1.0, 'wear': 1.0, 'me': 2.0, 'across': 1.0, 'and': 6.0, 'of': 2.0, 'my': 2.0, 'went': 1.0, 'has': 1.0, 'one': 1.0, 'comfortable': 1.0, 'i': 3.0, 'she': 1.0, 'it': 3.0, 'carries': 1.0, 'this': 2.0, 'weighed': 1.0, 'a': 3.0, 'before': 1.0, 'down': 1.0, 'number': 1.0, 'wife': 1.0, 'bags': 2.0, 'body': 1.0, 'stance': 1.0, 'you': 1.0, 'gives': 1.0, 'ther': 1.0, 'balanced': 1.0, 'to': 2.0, 'all': 2.0, 'back': 1.0, 'goes': 1.0, 'pressure': 1.0, 'your': 1.0, 'put': 1.0, 'on': 1.0, 'need': 1.0, 'bag': 2.0, 'year': 1.0, 'awesome': 1.0, 'space': 1.0, 'really': 1.0, 'forced': 1.0, 'plenty': 1.0, 'highly': 1.0}
Word element => {'if': 1.0, 'we': 1.0, 'pockets': 1.0, 'many': 1.0, 'uses': 1.0, 'on': 1.0, 'pocket': 1.0, 'strap': 1.0, 'cell': 1.0, 'him': 1.0, 'day': 1.0, 's': 1.0, 'gift': 1.0, 'it': 1.0, 'he': 2.0, 'this': 2.0, 'father': 1.0, 'loves': 1.0, 'bag': 1.0, 'of': 1.0, 'function': 1.0, 'isn': 1.0, 'and': 1.0, 'likes': 1.0, 'due': 1.0, 't': 1.0, 'the': 4.0, 'more': 1.0, 'phone': 1.0, 'style': 1.0, 'll': 1.0, 'be': 1.0, '10': 1.0, 'etc': 1.0, 'even': 1.0, 'though': 1.0, 'for': 3.0, 'dad': 1.0, 'baby': 1.0, 'weeks': 1.0, 'now': 1.0, 'to': 1.0, 'was': 1.0, 'see': 1.0, 'a': 1.0}
Word element => {'sink': 1.0, 'kitchen': 1.0, 'buy': 1.0, 'person': 1.0, 'of': 1.0, 'kind': 1.0, 'if': 1.0, 'not': 2.0, 'clothes': 1.0, 'i': 5.0, 'putting': 1.0, 'like': 1.0, 'pocket': 1.0, 'great': 3.0, 'the': 11.0, 'it': 2.0, 'usaully': 1.0, 'this': 2.0, 'huge': 1.0, 'bought': 1.0, 'my': 1.0, 'are': 1.0, 'zip': 1.0, 'with': 1.0, 'elastic': 1.0, 'back': 1.0, 'an': 1.0, 'pockets': 1.0, 'diapers': 1.0, 'bag': 2.0, 'front': 1.0, 'use': 1.0, 'husband': 1.0, 'to': 1.0, 'and': 4.0, 'too': 1.0, 'put': 1.0, 'on': 1.0, 'around': 1.0, 'is': 4.0, 'spare': 1.0, 'part': 1.0, 'bottles': 1.0, 'there': 1.0, 'you': 1.0, 'when': 1.0, 'am': 1.0, 'taking': 1.0, 'who': 1.0, 'three': 1.0, 'at': 1.0, 'her': 2.0, 'nanny': 1.0, 'wipes': 1.0, 'emergency': 1.0, 'toy': 1.0, 'for': 2.0, 'inner': 1.0, 'walks': 1.0, 'a': 2.0, 'we': 1.0, 'but': 2.0, 'stored': 1.0}
Word element => {'sure': 1.0, 'am': 1.0, 'will': 1.0, 'but': 1.0, 'bag': 1.0, 'own': 1.0, 'is': 1.0, 'love': 1.0, 'for': 1.0, 'gift': 2.0, 'their': 1.0, 's': 3.0, 'in': 1.0, 'perfect': 1.0, 'diaper': 1.0, 'the': 1.0, 'a': 2.0, 'he': 1.0, 'it': 2.0, 'this': 1.0, 'all': 1.0, 'have': 1.0, 'i': 1.0, 'involved': 1.0, 'of': 1.0, 'aspects': 1.0, 'and': 1.0, 'dad': 2.0, 'baby': 1.0, 'are': 1.0, 'care': 1.0, 'they': 1.0, 'new': 1.0, 'should': 1.0}
Word element => {'game': 1.0, 'it': 1.0, 'holds': 1.0, 'like': 1.0, 'need': 1.0, 'and': 1.0, 'everything': 1.0, 'a': 2.0, 'doesn': 1.0, 'diaper': 1.0, 't': 2.0, 'great': 1.0, 'sum': 1.0, 'can': 1.0, 'wait': 1.0, 'looks': 1.0, 'you': 1.0, 'then': 1.0, 'recommend': 1.0, 'would': 1.0, 'look': 1.0, 'to': 3.0, 'anyone': 1.0, 'bag': 1.0, 'take': 1.0}
Word element => {'recommend': 1.0, 'would': 2.0, 'i': 1.0, 'will': 1.0, 'definitely': 1.0, 'guys': 1.0, 'it': 1.0, 'love': 1.0, 'great': 1.0, 'and': 1.0, 'convenient': 1.0, 'holds': 1.0, 'outing': 1.0, 'comfortable': 1.0, 'for': 1.0, 'diaper': 1.0, 'everything': 1.0, 'an': 1.0, 'bag': 1.0, 'needed': 1.0}
Word element => {'what': 1.0, 'definitely': 1.0, 'fits': 1.0, 'barely': 1.0, 'shop': 1.0, 'realized': 1.0, 'house': 1.0, 'leaving': 1.0, 'before': 1.0, 'out': 1.0, 'would': 1.0, 'so': 1.0, 'two': 2.0, 'am': 1.0, 'thing': 1.0, 'about': 2.0, 'several': 1.0, 'kept': 1.0, 'in': 4.0, 'wipes': 2.0, 'different': 1.0, 'diapers': 2.0, 'pockets': 1.0, 'some': 1.0, 'because': 1.0, 'that': 1.0, '1': 1.0, 'since': 1.0, 'bought': 1.0, 'months': 1.0, 'try': 1.0, 'one': 3.0, 'just': 3.0, '3': 1.0, 'to': 5.0, 'outside': 1.0, 'purse': 1.0, 'least': 1.0, 'dad': 1.0, 'baby': 3.0, 'my': 2.0, 'until': 1.0, 'seemed': 1.0, 'reflux': 1.0, 'used': 1.0, 'light': 1.0, 'bag': 5.0, 'or': 1.0, 'need': 4.0, 'thought': 1.0, 'it': 1.0, 'few': 2.0, 'this': 5.0, 'gift': 1.0, 'else': 1.0, 'a': 7.0, 't': 2.0, 'kid': 1.0, 'going': 1.0, 'might': 2.0, 's': 1.0, 'as': 1.0, 'diaper': 1.0, 'received': 1.0, 'then': 1.0, 'we': 2.0, 'fine': 1.0, 'isn': 1.0, 'wasn': 1.0, 'number': 1.0, 'old': 1.0, 'brand': 1.0, 'i': 10.0, 'buy': 1.0, 'extra': 1.0, 'throw': 1.0, 'clothes': 1.0, 'was': 2.0, 'and': 11.0, 'again': 1.0, 'car': 1.0, 'but': 2.0, 'perhaps': 1.0, 'most': 1.0, 'bigger': 1.0, 'if': 1.0, 'inside': 1.0, 'those': 1.0, 'not': 3.0, 'have': 2.0, 'much': 1.0, 'the': 5.0, 'of': 2.0, 'anything': 1.0, 'perfectly': 1.0, 'there': 2.0, 'versa': 1.0, 'burp': 2.0, 'enough': 3.0, 'room': 1.0, 'vice': 1.0, 'had': 1.0, 'them': 1.0, 'has': 1.0, 'always': 1.0, 'needed': 1.0, 'even': 1.0, 'cloth': 2.0, 'new': 2.0, 'time': 1.0, 'tend': 1.0, 'will': 1.0, 'could': 1.0, 'travel': 1.0, 'design': 1.0, 'at': 1.0, 'is': 1.0, 'efficient': 1.0, 'for': 4.0, 'things': 1.0, 'any': 1.0, 'mom': 1.0}
Word element => {'april': 1.0, 'daughter': 1.0, 'bought': 1.0, 'diaper': 1.0, 've': 1.0, 'allow': 1.0, 'aren': 1.0, 'reasonably': 1.0, 'it': 2.0, 'this': 3.0, 'and': 1.0, 'since': 1.0, 'messenger': 1.0, 'purse': 1.0, 'i': 3.0, 'had': 1.0, 'recommend': 1.0, 'was': 2.0, 'for': 2.0, 'did': 1.0, 'priced': 1.0, 'bag': 2.0, 'roomy': 1.0, 'well': 1.0, 'been': 1.0, 'that': 4.0, 'my': 3.0, 'enough': 1.0, 'to': 1.0, 'as': 2.0, 'mom': 1.0, 'the': 3.0, 's': 2.0, 'a': 1.0, 't': 1.0, 'definitely': 2.0, 'looking': 1.0, 'extra': 1.0, 'daughters': 1.0, 'bottle': 1.0, 'needs': 1.0, 'so': 1.0, 'much': 1.0, 'pockets': 1.0, 'even': 1.0, 'born': 1.0, 'accommodates': 1.0, 'bottles': 1.0, 'double': 1.0, 'usual': 1.0, 'in': 1.0, 'cylinder': 1.0, 'more': 1.0, 'is': 1.0, 'met': 1.0, '3rd': 1.0}
Word element => {'parent': 1.0, 'pad': 1.0, 'built': 1.0, 'had': 1.0, 'if': 1.0, 'nice': 1.0, 'also': 1.0, 'would': 1.0, 'almost': 1.0, 'diaper': 1.0, 'eddie': 1.0, 'high': 1.0, 'get': 1.0, 'shoulder': 1.0, 'can': 1.0, 'considering': 1.0, 'ridiculous': 1.0, 'protect': 1.0, 'price': 2.0, 'bags': 2.0, 'not': 1.0, 'so': 1.0, 'side': 1.0, 'on': 1.0, 'little': 2.0, 'be': 2.0, 'neutral': 1.0, 'anything': 1.0, 'need': 1.0, 'gender': 1.0, 'is': 3.0, 'it': 5.0, 'first': 1.0, 'this': 1.0, 'durable': 1.0, 'sister': 1.0, 'child': 1.0, 'pacifiers': 1.0, 'pockets': 1.0, 'the': 7.0, 'my': 1.0, 'extremely': 1.0, 'similar': 1.0, 'and': 4.0, 'to': 1.0, 'as': 3.0, 'law': 1.0, 'convenient': 1.0, 'their': 1.0, 'that': 1.0, 'bauer': 1.0, 'gift': 1.0, 'in': 2.0, 'brother': 1.0, 'for': 6.0, 'narrow': 1.0, 'parents': 1.0, 'utilitarian': 1.0, 'quality': 1.0, 'improved': 1.0, 'baby': 1.0, 'lots': 1.0, 'storage': 1.0, 'half': 1.0, 'roomy': 1.0, 'has': 1.0, 'of': 1.0, 'there': 1.0, 'some': 3.0, 'things': 1.0, 'bought': 1.0, 'insulated': 1.0, 'clips': 1.0, 'keys': 1.0, 'you': 2.0, 'i': 1.0, 'etc': 1.0, 'strap': 1.0, 'are': 1.0, 's': 2.0, 'a': 4.0, 'might': 1.0, 'could': 1.0}
Word element => {'girly': 1.0, 'use': 1.0, 'so': 1.0, 'bag': 1.0, 'have': 1.0, 't': 1.0, 'loved': 1.0, 'christmas': 1.0, 'gift': 1.0, 'be': 1.0, 'to': 2.0, 'diaper': 1.0, 'for': 1.0, 'doesn': 1.0, 'a': 2.0, 'father': 1.0, 'great': 1.0, 'it': 1.0, 'he': 2.0}
Word element => {'all': 1.0, 'an': 1.0, 'just': 1.0, 'compartments': 1.0, 'and': 1.0, 'plenty': 1.0, 'choice': 1.0, 'awesome': 1.0, 'would': 1.0, 'reviews': 1.0, 'a': 1.0, 'of': 1.0, 'settled': 1.0, 'like': 1.0, 'find': 1.0, 'partial': 1.0, 'bag': 2.0, 'was': 1.0, 'husband': 1.0, 'wanted': 1.0, 'to': 3.0, 'great': 1.0, 'slings': 1.0, 'around': 1.0, 'through': 1.0, 'noticed': 1.0, 'carry': 1.0, 'this': 1.0, 'he': 1.0, 'pockets': 1.0, 'i': 3.0, 'one': 1.0, 'side': 1.0, 'so': 1.0, 'on': 1.0}
Word element => {'and': 1.0, 'over': 2.0, 'use': 1.0, 'if': 1.0, 'children': 1.0, 'through': 1.0, 'will': 1.0, 'diaper': 1.0, 'moneys': 1.0, 'you': 3.0, 'zippers': 1.0, 'in': 2.0, 'quality': 1.0, 'rip': 2.0, 'little': 1.0, 'where': 1.0, 'several': 1.0, 'x': 1.0, 'stitched': 1.0, 'which': 1.0, 'this': 2.0, 'duty': 3.0, 'it': 8.0, 'bag': 2.0, 'heavy': 3.0, 'holes': 1.0, 'the': 1.0, 'is': 4.0, 'really': 3.0, 'places': 1.0, 'stitching': 1.0, 'going': 1.0, 'might': 1.0, 't': 2.0, 's': 2.0, 'a': 1.0, 'of': 1.0, 'made': 2.0, 'last': 1.0, 'fabric': 1.0, 'that': 2.0, 'pricey': 1.0, 'has': 2.0, 'well': 1.0, 'won': 1.0, 'get': 2.0, 'your': 1.0, 'impressed': 1.0, 'i': 2.0, 'was': 2.0, 'to': 1.0, 'because': 1.0, 'worried': 1.0, 'wasn': 1.0, 'be': 1.0, 'or': 1.0, 'worth': 2.0, 'but': 1.0, 'money': 1.0, 'so': 1.0}
Word element => {'up': 1.0, 've': 1.0, 'long': 1.0, 'the': 1.0, 'imagine': 1.0, 'feeding': 1.0, 'if': 1.0, 'with': 1.0, 'familiar': 1.0, 'feeds': 1.0, 'still': 2.0, 'other': 1.0, 'outfit': 1.0, 'extra': 2.0, 'breast': 1.0, 'phone': 1.0, 'seen': 1.0, 'you': 2.0, 'cell': 1.0, 'odds': 1.0, 'large': 1.0, 'water': 1.0, 'who': 1.0, 'keep': 1.0, 'will': 1.0, 'also': 1.0, 'ones': 1.0, 'on': 1.0, 'put': 1.0, 'from': 2.0, 'bags': 1.0, 'wipes': 1.0, 'coming': 1.0, 'have': 1.0, 'small': 1.0, 'ends': 1.0, 'after': 1.0, 'time': 1.0, 'bottle': 2.0, 'so': 2.0, 'need': 1.0, 'bag': 4.0, 'this': 5.0, 'covers': 1.0, 'it': 1.0, 'somebody': 1.0, 'some': 1.0, 'diaper': 2.0, 'are': 2.0, 'hold': 1.0, 'using': 1.0, 'reading': 1.0, 'there': 1.0, 'many': 1.0, 'take': 1.0, 'bulkier': 1.0, 'wallet': 1.0, 'wanting': 1.0, 'to': 6.0, 'i': 9.0, 'cloth': 3.0, 'decided': 1.0, 'baby': 1.0, 'ahead': 1.0, 'a': 3.0, 'go': 1.0, 'having': 1.0, 'than': 1.0, 'and': 6.0, 'lug': 1.0, 'for': 2.0, 'dude': 1.0, 'love': 1.0, 'm': 2.0, 'give': 1.0, 'not': 4.0, 'sure': 1.0, 'what': 3.0, 'dirty': 1.0, 'reviews': 2.0, 'they': 1.0, 'plan': 1.0, 'is': 3.0, 'more': 1.0, 'around': 2.0, 'enough': 1.0, 'can': 1.0, 'but': 2.0, 'diapers': 1.0, 'room': 4.0, 'pack': 1.0, 'try': 1.0, 'much': 1.0, 'almost': 1.0, 'said': 1.0, 'in': 2.0, 'my': 2.0}
Word element => {'durable': 1.0, 'not': 1.0, 'is': 1.0, 'that': 1.0, 'loved': 1.0, 'would': 1.0, 'container': 2.0, 'wipes': 1.0, 'received': 1.0, '6': 1.0, 'just': 1.0, 'inside': 1.0, 'don': 1.0, 'milk': 1.0, 'too': 1.0, 'parted': 1.0, 'and': 3.0, 'loose': 1.0, 'getting': 1.0, 'clothes': 1.0, 'started': 1.0, 'used': 1.0, 'gray': 1.0, 'use': 1.0, 'years': 1.0, 'a': 2.0, 't': 1.0, 'we': 2.0, 's': 2.0, '4': 1.0, 'i': 5.0, 'old': 3.0, 'diapers': 1.0, 'pockets': 1.0, 'pink': 1.0, 'this': 3.0, 'much': 1.0, 'only': 1.0, 'bag': 6.0, 'one': 1.0, 'bought': 1.0, 'color': 2.0, 'my': 3.0, 'our': 1.0, 'as': 2.0, 'outside': 1.0, 'to': 1.0, 'diaper': 3.0, 'replace': 1.0, '2': 2.0, 'orange': 1.0, 'the': 7.0, 'daughter': 2.0, 'black': 1.0, 'pcs': 1.0, 'almost': 1.0, '1': 2.0, 'which': 1.0, 'like': 1.0, 'because': 1.0, 'seam': 1.0, 'love': 1.0, 'dude': 2.0, 'for': 1.0, 'fit': 1.0, 'in': 2.0, 'brown': 1.0, 'bottles': 1.0, 'however': 1.0, 'after': 1.0, 'thin': 1.0, 'weeks': 1.0, 'have': 1.0, 'small': 2.0, 'zipper': 1.0, 'pair': 1.0, 'of': 5.0, 'except': 1.0, 'stuff': 1.0, 'put': 1.0, 'dr': 1.0, 'on': 1.0, 'side': 1.0, 'main': 1.0, 'compartment': 1.0}
Word element => {'larger': 1.0, 'we': 1.0, 'occasion': 1.0, 'send': 1.0, 'bags': 1.0, 'several': 1.0, 'decided': 1.0, 'as': 2.0, 'very': 1.0, 'get': 1.0, 'and': 2.0, 'manly': 1.0, 'decribed': 1.0, 'bag': 2.0, 'have': 1.0, 'what': 1.0, 'smaller': 1.0, 'per': 1.0, 'exactly': 1.0, 'much': 2.0, 'to': 3.0, 'diaper': 2.0, 'a': 2.0, 'it': 4.0, 'one': 1.0, 'lazy': 1.0, 'back': 1.0, 'but': 1.0, 'than': 1.0, 'i': 2.0, 'is': 3.0, 'anticipated': 1.0, 'seeing': 1.0, 'am': 1.0}
Word element => {'would': 1.0, 'material': 1.0, 'ii': 1.0, 'bagdiaper': 1.0, 'different': 1.0, 'using': 1.0, 'black': 1.0, 'returning': 1.0, 'labeled': 1.0, 'explicitly': 1.0, 'be': 1.0, 'want': 1.0, 'up': 1.0, 'ultimately': 1.0, 'don': 1.0, 'messenger': 1.0, 'at': 1.0, 'canvas': 1.0, 'women': 1.0, 'on': 2.0, 'durable': 1.0, 'it': 4.0, 'this': 2.0, 'expensive': 1.0, 'dude': 2.0, 'for': 1.0, 'often': 1.0, 'but': 1.0, 'work': 2.0, 'can': 1.0, 'that': 1.0, 'out': 3.0, 'guys': 1.0, 'made': 2.0, 'more': 1.0, 'is': 3.0, 'amazon': 1.0, 'deal': 1.0, 'the': 5.0, 'diaper': 3.0, 'of': 6.0, 'larger': 1.0, 'there': 1.0, 'nicer': 1.0, 'fairly': 1.0, 'and': 4.0, 'bags': 2.0, 'very': 1.0, 'as': 1.0, 'to': 1.0, 'all': 1.0, 'outside': 1.0, 'big': 1.0, 'both': 2.0, 'ended': 1.0, 'amount': 1.0, 'just': 1.0, 'few': 1.0, 'well': 1.0, 'has': 1.0, 'discounted': 1.0, 'such': 1.0, 'decent': 1.0, 'pockets': 1.0, 'fan': 1.0, 'i': 2.0, 'also': 2.0, 'gets': 1.0, 'am': 1.0, 'one': 1.0, 'huge': 1.0, 't': 1.0, 's': 1.0, 'a': 5.0, 'dudes': 1.0, 'not': 2.0, 'logo': 1.0, 'bag': 4.0}
Word element => {'don': 1.0, 'changing': 1.0, 'bonus': 1.0, 'also': 1.0, 'up': 1.0, 'plus': 2.0, 'of': 1.0, 'new': 1.0, 'a': 3.0, 'just': 1.0, 'pass': 1.0, 'who': 1.0, 'my': 1.0, 'one': 1.0, 'for': 1.0, 'loves': 1.0, 'became': 1.0, 'with': 1.0, 'this': 2.0, 'it': 2.0, 'pad': 1.0, 'got': 1.0, 'fiancee': 1.0, 'i': 1.0, 't': 1.0, 'great': 1.0, 'mother': 1.0, 'comes': 1.0, 'to': 1.0, 'and': 2.0, 'looks': 1.0, 'stuff': 1.0, 'is': 1.0, 'room': 1.0, 'large': 1.0, 'allows': 1.0, 'store': 1.0, 'she': 1.0, 'lot': 1.0}
Word element => {'extended': 1.0, 'purchase': 2.0, 'my': 2.0, 'more': 1.0, 'requirements': 1.0, 'house': 2.0, 'once': 1.0, 'in': 1.0, 'meets': 1.0, 'was': 3.0, 'am': 2.0, 'when': 1.0, 'waiting': 1.0, 'durable': 1.0, 'still': 1.0, 'pay': 1.0, 'test': 1.0, 'have': 2.0, 'and': 3.0, 'as': 1.0, 'to': 3.0, 'trips': 1.0, 'is': 2.0, 'at': 1.0, 'you': 3.0, 'bucks': 1.0, 'since': 1.0, 'functionality': 1.0, 'used': 1.0, 'pleased': 2.0, 'for': 3.0, 'stars': 1.0, 'lot': 2.0, 'one': 2.0, 'yet': 2.0, 'need': 1.0, 'or': 1.0, 'are': 1.0, 'get': 1.0, 'pics': 1.0, 'not': 3.0, 'design': 2.0, 'we': 1.0, 'a': 3.0, 'durations': 1.0, 'going': 1.0, 'use': 2.0, 'everyday': 1.0, 'please': 1.0, '4': 1.0, 'but': 3.0, 'will': 4.0, 'put': 2.0, 'into': 2.0, 'gave': 1.0, 'had': 1.0, 'out': 1.0, 'understand': 1.0, 'from': 2.0, 'everything': 1.0, 'wife': 1.0, 'there': 1.0, 'larger': 1.0, 'away': 2.0, 'probably': 1.0, 'size': 1.0, 'just': 1.0, 'this': 4.0, 'few': 1.0, 'buy': 1.0, 'bag': 3.0, 'looking': 1.0, 'another': 1.0, 'extra': 1.0, 'the': 8.0, 'of': 2.0, 'longer': 1.0, 'craftsmanship': 1.0, 'great': 1.0, 'with': 3.0, 'material': 1.0, 'be': 1.0, 'thought': 3.0, 'speak': 1.0, 'it': 4.0, 'arrived': 1.0, 'very': 1.0, 'cannot': 1.0, 'our': 1.0, 'how': 1.0, 'i': 9.0, 'well': 1.0, 'review': 1.0, 'works': 1.0, 'long': 1.0, 'update': 1.0, 'some': 1.0, 'time': 1.0}
Word element => {'pockts': 1.0, 'bottles': 1.0, 'clothes': 1.0, 'of': 1.0, 'change': 1.0, 'blanket': 1.0, 'pacifiers': 1.0, 'purell': 1.0, 'since': 1.0, 'front': 1.0, 'middle': 1.0, 'also': 2.0, 'in': 1.0, 'side': 1.0, 'for': 1.0, 'diaper': 1.0, 'the': 5.0, 'separate': 1.0, 'jujube': 1.0, 'forced': 1.0, 'always': 1.0, 'my': 2.0, 'slot': 1.0, 'husband': 1.0, 'to': 2.0, 'isn': 1.0, 'likes': 1.0, 'has': 1.0, 'perfect': 1.0, 'this': 1.0, 'he': 2.0, 'it': 2.0, 'into': 1.0, 'that': 1.0, 'loves': 1.0, 'is': 2.0, 'holds': 1.0, 'girlie': 1.0, 'carry': 1.0, 'him': 1.0, 'be': 1.0, 'organized': 2.0, 'and': 2.0, 'compartments': 1.0, 'along': 1.0, 'a': 1.0, 't': 1.0, 'we': 1.0, 'big': 1.0, 'then': 1.0, 'back': 1.0, 'diapers': 1.0, 'what': 1.0, 'bag': 2.0, 'need': 1.0, 'wipes': 1.0, 'desitin': 1.0}
Word element => {'room': 1.0, 'bottles': 1.0, 'hold': 1.0, 'they': 1.0, 'awesome': 1.0, 'are': 1.0, 'three': 1.0, 'my': 2.0, 'spare': 1.0, 'felt': 1.0, 'to': 1.0, 'husband': 1.0, 'for': 1.0, 'the': 2.0, 'diaper': 2.0, 'cardinals': 1.0, 'carry': 1.0, 'playtex': 1.0, 'around': 1.0, 'making': 1.0, 'bag': 2.0, 'loves': 1.0, 'dude': 1.0, 'ordered': 1.0, 'pockets': 1.0, 'i': 2.0, 'wide': 1.0, 'stl': 1.0, 'bad': 1.0, 'frilly': 1.0, 'and': 1.0, 'with': 1.0, 'he': 1.0, 'it': 1.0, 'him': 1.0, 'front': 1.0}
Word element => {'flip': 1.0, 'a': 1.0, 'other': 1.0, 'anything': 1.0, 'you': 1.0, 'own': 1.0, 'if': 1.0, 'completely': 1.0, 'phone': 2.0, 'bag': 1.0, 'myself': 1.0, 'fit': 1.0, 'that': 2.0, 'the': 2.0, 'useless': 1.0, 'my': 2.0, 'holder': 1.0, 'would': 1.0, 'found': 1.0, 'i': 2.0, 'for': 1.0, 'one': 1.0, 'love': 1.0, 'cell': 1.0, 'it': 3.0, 'only': 2.0, 'bought': 1.0, 'wants': 1.0, 'is': 2.0, 'was': 1.0, 'now': 1.0, 'husband': 1.0, 'than': 1.0, 'personality': 1.0, 'negative': 1.0}
Word element => {'their': 1.0, 'be': 1.0, 'flowery': 1.0, 'want': 1.0, 'but': 1.0, 'out': 1.0, 'don': 1.0, 'baby': 1.0, 'need': 1.0, 'who': 1.0, 'a': 1.0, 'dads': 1.0, 'recommend': 1.0, 'definitely': 1.0, 'would': 1.0, 'wear': 1.0, 'space': 1.0, 'pocket': 1.0, 'take': 1.0, 'bag': 2.0, 'seen': 1.0, 'can': 1.0, 'wait': 1.0, 'ones': 1.0, 't': 2.0, 'great': 1.0, 'the': 3.0, 'my': 2.0, 'comfy': 1.0, 'and': 2.0, 'his': 1.0, 'in': 1.0, 'wives': 1.0, 'for': 2.0, 'got': 1.0, 'just': 1.0, 'give': 1.0, 'day': 1.0, 'camo': 1.0, 'husband': 1.0, 'to': 5.0, 'with': 1.0, 'it': 1.0, 'mail': 1.0, 'first': 1.0, 'father': 1.0, 's': 1.0}
Word element => {'ready': 1.0, 'over': 1.0, 'thrown': 1.0, 'easily': 1.0, 'be': 1.0, 'of': 1.0, 'design': 1.0, 'baby': 1.0, 'about': 1.0, 'needed': 1.0, 'anything': 1.0, 'is': 1.0, 'stuff': 1.0, 'just': 2.0, 'real': 1.0, 'the': 6.0, 'diaper': 3.0, 'great': 2.0, 'look': 1.0, 'doesn': 1.0, 'was': 1.0, 'for': 2.0, 'shoulder': 1.0, 'but': 1.0, 'can': 2.0, 'go': 1.0, 't': 1.0, 'a': 3.0, 'front': 1.0, 'it': 1.0, 'bag': 4.0, 'hold': 1.0, 'like': 2.0, 'i': 3.0, 'to': 1.0, 'all': 1.0, 'have': 1.0, 'my': 1.0, 'in': 2.0, 'bigger': 1.0, 'dads': 1.0, 'keep': 1.0, 'main': 1.0, 'three': 1.0, 'little': 1.0, 'pouches': 1.0, 'some': 1.0, 'and': 3.0, 'still': 1.0, 'room': 1.0, 'though': 1.0, 'compartment': 1.0, 'this': 1.0, 'wish': 1.0, 'changing': 1.0, 'that': 1.0, 'part': 1.0}
Word element => {'pockets': 1.0, 'hooks': 1.0, 'which': 1.0, 'works': 1.0, 'cover': 1.0, 'bag': 1.0, 'pad': 1.0, 'and': 4.0, 'must': 1.0, 'changing': 1.0, 'very': 1.0, 'comes': 1.0, 'diaper': 1.0, 'comfortable': 1.0, 'for': 1.0, 'well': 1.0, 'convenient': 1.0, 'a': 3.0, 'is': 2.0, 'organizable': 1.0, 'this': 1.0, 'with': 1.0, 'too': 1.0, 'mom': 1.0, 'dad': 1.0, 'lots': 2.0, 'of': 2.0, 'space': 1.0, 'easily': 1.0}
Word element => {'fixed': 1.0, 'with': 1.0, 'star': 1.0, 'sure': 1.0, 'bottle': 1.0, 'dedicated': 1.0, 'are': 1.0, 'and': 1.0, 'to': 1.0, 'all': 1.0, 'plenty': 1.0, 'there': 1.0, 'necessary': 1.0, 'of': 2.0, 'it': 2.0, 'holders': 1.0, 'this': 2.0, 'five': 1.0, 'room': 1.0, 'for': 4.0, 'meant': 1.0, 'sweet': 1.0, 'phone': 1.0, 'give': 1.0, 'not': 3.0, 'issues': 1.0, 'embarrassed': 1.0, 'these': 1.0, 'carrying': 1.0, 'pretty': 2.0, 'insulated': 2.0, 'see': 1.0, 'items': 2.0, 'six': 1.0, 'hour': 1.0, 'seems': 1.0, 'will': 1.0, 'but': 1.0, 'be': 1.0, 'rating': 1.0, 'other': 1.0, 'anything': 1.0, 'around': 1.0, 'is': 4.0, 'more': 1.0, 'the': 1.0, 'than': 1.0, 'i': 4.0, 'two': 3.0, 'that': 1.0, 'would': 3.0, 'holder': 1.0, 'like': 2.0, 'outing': 1.0, 'bigger': 1.0, 'cell': 1.0, 'made': 1.0, 'phones': 2.0, 'thing': 1.0, 'about': 1.0, 'years': 1.0, 'a': 3.0, 'ago': 1.0, 'smart': 1.0}
Word element => {'be': 1.0, 'actually': 1.0, 'arrived': 1.0, 'even': 1.0, 'heck': 1.0, 'depths': 1.0, 'summoned': 1.0, 'law': 1.0, 'mother': 1.0, 'sweater': 1.0, 'right': 1.0, 'under': 1.0, 'car': 1.0, 'in': 2.0, 'spare': 1.0, 't': 2.0, 'proud': 2.0, 'been': 2.0, 'through': 1.0, 'sorts': 1.0, 'take': 1.0, 'seems': 1.0, 'rugged': 1.0, 'getting': 1.0, 'items': 1.0, 'tend': 1.0, 'designed': 1.0, 'ton': 1.0, 'there': 1.0, 'next': 1.0, 'has': 2.0, 'definitely': 2.0, 'wife': 1.0, 'patterned': 1.0, 'floral': 2.0, 'lugging': 1.0, 'have': 2.0, 'remember': 1.0, 'mean': 1.0, 'essential': 1.0, 'carrying': 1.0, 'great': 2.0, 'that': 2.0, 'on': 1.0, 'research': 1.0, 've': 1.0, 'playbook': 1.0, 'more': 2.0, 'babies': 2.0, 'guide': 1.0, 'positives': 1.0, 's': 5.0, 'dude': 1.0, 'christmas': 1.0, 'light': 1.0, 'author': 1.0, 'bag': 5.0, 'products': 1.0, 'child': 3.0, 'was': 5.0, 'diaper': 1.0, 'crazy': 3.0, 'as': 4.0, 'all': 2.0, 'our': 2.0, 'how': 3.0, 'washing': 1.0, 'began': 1.0, 'also': 2.0, 'us': 1.0, 'abuse': 1.0, 'obsessing': 1.0, 'like': 1.0, 'rather': 1.0, 'of': 8.0, 'the': 14.0, 'specially': 1.0, 'lot': 2.0, 'one': 1.0, 'neighbor': 3.0, 'for': 7.0, 'becoming': 1.0, 'would': 1.0, 'boy': 1.0, 'new': 1.0, 'time': 1.0, 'will': 1.0, 'bathe': 1.0, 'bit': 1.0, 'so': 2.0, 'sea': 1.0, 'another': 1.0, 'over': 3.0, 'volleyball': 1.0, 'eventually': 1.0, 'about': 3.0, 'thing': 1.0, 'no': 2.0, 'gift': 1.0, 'which': 1.0, 'dads': 3.0, 'who': 1.0, 'yeah': 1.0, 'patterns': 1.0, 'is': 2.0, 'at': 1.0, 'a': 15.0, 'go': 1.0, 'still': 2.0, 'if': 1.0, 'trunk': 1.0, 'late': 1.0, 'purchased': 2.0, 'had': 1.0, 'speak': 1.0, 'it': 8.0, 'this': 4.0, 'approaches': 1.0, 'lost': 1.0, 'are': 1.0, 'first': 2.0, 'well': 2.0, 'i': 10.0, 'instance': 1.0, 'some': 4.0, 'though': 1.0, 'date': 2.0, 'pockets': 1.0, 'with': 1.0, 'maleness': 1.0, 'get': 2.0, 'sure': 1.0, 'need': 1.0, 'job': 1.0, 'to': 13.0, 'pretty': 1.0, 'those': 1.0, 'not': 4.0, 'my': 6.0, 'me': 1.0, 'done': 1.0, 'going': 3.0, 'kid': 1.0, 'hidden': 1.0, 'girl': 1.0, 'around': 4.0, 'expectant': 1.0, 'his': 3.0, 'and': 6.0, 'hippie': 1.0, 'loads': 1.0, 'asking': 1.0, 'out': 1.0, 'wouldn': 1.0, 'directions': 1.0, 'purpose': 1.0, 'from': 2.0, 'feel': 1.0, 'tire': 1.0, 'drifting': 1.0, 'pet': 1.0, 'put': 1.0, 'general': 1.0, 'do': 1.0, 'much': 1.0, 'got': 2.0, 'begun': 1.0, 'children': 1.0, 'obsess': 1.0, 'carry': 3.0, 'he': 2.0, 'far': 1.0, 'yet': 1.0, 'various': 1.0, 'due': 1.0, 'born': 1.0, 'but': 4.0, 'bits': 1.0, 'metric': 1.0, 'stuff': 1.0, 'things': 2.0, 'parents': 1.0, 'dad': 3.0, 'baby': 2.0, 'led': 1.0, 'hasn': 1.0, 'only': 1.0, 'amazing': 1.0}
Word element => {'hold': 1.0, 'bag': 3.0, 'are': 1.0, 'the': 3.0, 'great': 2.0, 'a': 1.0, 'go': 1.0, 'up': 1.0, 'and': 2.0, 'for': 2.0, 'is': 1.0, 'on': 1.0, 'dad': 1.0, 'accessories': 1.0}
Word element => {'and': 1.0, 'openings': 1.0, 'just': 1.0, 'perfect': 1.0, 'with': 1.0, 'right': 1.0, 'so': 1.0, 'a': 1.0, 'baby': 1.0, 'don': 1.0, 'instructions': 1.0, 'on': 1.0, 'guy': 1.0, 'pockets': 1.0, 'i': 1.0, 'for': 1.0, 'love': 1.0, 'number': 1.0, 'tag': 1.0, 'the': 4.0, 't': 1.0, 'forget': 1.0, 'of': 1.0, '34': 2.0}
Word element => {'would': 2.0, 'this': 2.0, 'is': 1.0, 'product': 2.0, 'an': 1.0, 'it': 1.0, 'love': 1.0, 'awesome': 1.0, 'again': 1.0, 'buy': 1.0, 'tons': 1.0, 'recommend': 1.0, 'has': 1.0, 'of': 1.0, 'roomy': 1.0, 'highly': 1.0, 'pockets': 1.0}
Word element => {'bib': 1.0, 'of': 1.0, 'two': 1.0, 'in': 2.0, 'be': 1.0, 'although': 1.0, 'to': 1.0, 'could': 1.0, 'for': 1.0, 'but': 1.0, 'bottle': 1.0, 'little': 1.0, 'spacious': 1.0, 'and': 2.0, 'pockets': 2.0, 'nice': 1.0, 'bag': 1.0, 'a': 3.0, 'sturdy': 1.0, 'stuff': 1.0, 'is': 1.0, 'the': 5.0, 'more': 1.0, 'are': 1.0, 'maybe': 1.0, 'size': 1.0, 'pretty': 1.0, 'small': 1.0, 'manage': 1.0, 'other': 1.0, 'we': 1.0}
Word element => {'shoulder': 1.0, 'over': 1.0, 'carry': 1.0, 'to': 1.0, 'isn': 1.0, 'my': 1.0, 'fun': 1.0, 'kind': 1.0, 'also': 1.0, 'front': 1.0, 'pockets': 1.0, 'comfortable': 1.0, 'big': 1.0, 'compartments': 1.0, 'with': 1.0, 'like': 1.0, 'should': 1.0, 'they': 1.0, 'last': 1.0, 'thought': 1.0, 'one': 1.0, 'for': 2.0, 'stamped': 1.0, 'i': 3.0, '65': 1.0, 'on': 1.0, 'be': 1.0, 'super': 1.0, 'would': 1.0, 'man': 1.0, 'poorly': 1.0, 'not': 1.0, 'started': 1.0, 'around': 1.0, 'comes': 1.0, 'is': 3.0, 'many': 1.0, 'pretty': 1.0, 'three': 1.0, 'bigger': 1.0, 'main': 1.0, 'compartment': 1.0, 'the': 9.0, 'and': 3.0, 'embarassed': 1.0, 'in': 2.0, 'downfall': 1.0, 'falling': 1.0, 'apart': 1.0, 'organization': 1.0, 'other': 1.0, 'this': 2.0, 'do': 1.0, 'stitched': 1.0, 'much': 2.0, 'only': 1.0, 'it': 3.0, 'dislike': 1.0, 'bag': 3.0, 'have': 1.0, 'small': 1.0, 'after': 1.0, 'makes': 1.0, 'was': 1.0, 't': 1.0, 'a': 1.0, 'just': 1.0, 'few': 1.0, 'washes': 1.0, 'rather': 1.0, 'of': 2.0, 'been': 1.0, 'that': 2.0, 'changing': 1.0, 'pad': 1.0, 'thing': 1.0, 'skulls': 2.0, 'strap': 1.0, 'are': 2.0}
Word element => {'would': 1.0, 'used': 1.0, 'wouldn': 1.0, 'made': 1.0, 'as': 1.0, 'pockets': 1.0, 'a': 2.0, 'is': 1.0, 'dad': 1.0, 'have': 1.0, 't': 1.0, 'this': 1.0, 'bag': 2.0, 'be': 1.0, 'to': 2.0, 'well': 1.0, 'plenty': 1.0, 'diaper': 2.0, 'for': 1.0, 'recommend': 1.0, 'of': 1.0, 'good': 1.0, 'carry': 1.0}
Word element => {'cant': 1.0, 'super': 1.0, 'just': 1.0, 'bag': 1.0, 'like': 1.0, 'even': 1.0, 'to': 1.0, 'look': 1.0, 'was': 2.0, 'for': 1.0, 'in': 1.0, 'a': 1.0, 'law': 1.0, 'since': 1.0, 'getting': 1.0, 'and': 2.0, 'brother': 1.0, 'born': 1.0, 'all': 1.0, 'my': 2.0, 'diaper': 1.0, 't': 1.0, 'the': 1.0, 'use': 1.0, 'loved': 1.0, 'got': 1.0, 'cool': 1.0, 'baby': 2.0, 'stuff': 1.0, 'wait': 1.0, 'rugged': 1.0, 'stoked': 1.0, 'it': 3.0, 'sister': 1.0, 'this': 1.0, 'he': 2.0, 's': 2.0, 'but': 1.0, 'doesn': 1.0}
Word element => {'car': 1.0, 'in': 1.0, 'spare': 1.0, 'baby': 1.0, 'ever': 1.0, 'purse': 1.0, 'will': 2.0, 'serve': 1.0, 'coach': 1.0, 'up': 1.0, 'ended': 1.0, 'ours': 1.0, 'of': 1.0, 'realized': 1.0, 'just': 1.0, 'inside': 1.0, 'compartments': 1.0, 'giant': 1.0, 'pockets': 1.0, 'stylish': 1.0, 'were': 1.0, 'nice': 1.0, 'have': 2.0, 'instead': 1.0, 'there': 2.0, 'organized': 1.0, 'but': 2.0, 'trouble': 1.0, 'with': 2.0, 'this': 1.0, 'it': 5.0, 'carrying': 1.0, 'more': 2.0, 'around': 1.0, 'dude': 1.0, 'fit': 1.0, 'into': 1.0, 'been': 1.0, 'that': 5.0, 'area': 1.0, 'get': 1.0, 'and': 3.0, 'be': 2.0, 'bought': 1.0, 'as': 3.0, 'to': 2.0, 'turned': 1.0, 'was': 3.0, 'thought': 1.0, 'had': 1.0, 'another': 1.0, 'my': 2.0, 'went': 1.0, 'otherwise': 1.0, 'i': 6.0, 'ok': 1.0, 'mine': 2.0, 'something': 1.0, 'would': 2.0, 'diaper': 3.0, 'wanted': 1.0, 'bag': 3.0, 'out': 1.0, 'he': 3.0, 'rarely': 1.0, 'dumped': 1.0, 'on': 1.0, 'husbands': 2.0, 'carried': 1.0, 'since': 2.0, 'could': 1.0, 'a': 3.0, 'going': 1.0, 'we': 2.0, 'mostly': 1.0, 'the': 4.0, 'job': 1.0, 'places': 1.0, 'later': 1.0, 'while': 1.0, 'working': 1.0, 'getting': 1.0, 'did': 1.0, 'still': 1.0, 'same': 1.0, 'if': 2.0, 'everything': 2.0, 'stay': 2.0}
Word element => {'ribbons': 1.0, 'bows': 1.0, 'something': 1.0, 'to': 1.0, 'not': 1.0, 'with': 1.0, 'having': 1.0, 'is': 1.0, 'a': 1.0, 'great': 1.0, 'my': 1.0, 'loves': 1.0, 'this': 1.0, 'bag': 1.0, 'carry': 1.0, 'good': 1.0, 'and': 2.0, 'quality': 1.0, 'construction': 1.0, 'husband': 1.0}
Word element => {'me': 1.0, 'enough': 1.0, 'tiny': 1.0, 'come': 1.0, 'still': 1.0, 'pack': 1.0, 'over': 1.0, 'else': 1.0, 'anything': 1.0, 'take': 1.0, 'needing': 1.0, 'imagine': 1.0, 'sum': 1.0, 'while': 1.0, 'parent': 1.0, 'ew': 1.0, 'floor': 1.0, 'ties': 1.0, 'shelf': 1.0, 'pocket': 4.0, 'phone': 5.0, 're': 2.0, 'front': 3.0, 'bathrooms': 1.0, 'your': 1.0, 'rash': 1.0, 'holder': 2.0, 'the': 32.0, 'tube': 1.0, 'stuff': 1.0, 'child': 1.0, 'compartment': 1.0, 'duty': 1.0, 'pad': 1.0, 'etc': 1.0, 'babysitting': 1.0, 'included': 1.0, 'so': 3.0, 'essentially': 1.0, 'chapstick': 1.0, 'cloths': 1.0, 'son': 1.0, 'hate': 1.0, 'burp': 1.0, 'spoon': 1.0, 'dispenser': 1.0, 'five': 1.0, 'formula': 1.0, 'might': 1.0, 'came': 1.0, 'bottles': 1.0, 'nine': 1.0, 'put': 4.0, 'changing': 3.0, 'keep': 2.0, 'cutesy': 1.0, 'three': 3.0, 'at': 1.0, 'can': 3.0, 'is': 10.0, 'pockets': 3.0, 'with': 4.0, 'uses': 1.0, 'weren': 1.0, 'size': 2.0, 'deceptive': 1.0, 'donating': 1.0, 'bags': 2.0, 'heavy': 2.0, 'serving': 1.0, 'couple': 1.0, 'stations': 1.0, 'two': 3.0, 'wipes': 1.0, 'large': 2.0, 'good': 1.0, 'stay': 1.0, 'which': 1.0, 'wallet': 1.0, 'other': 2.0, 'way': 2.0, 'all': 3.0, 'an': 1.0, 'more': 1.0, 'perfect': 1.0, 'she': 2.0, 'ended': 1.0, 'easy': 1.0, 'this': 3.0, 'zippers': 2.0, 'few': 2.0, 'bottle': 1.0, 'widest': 1.0, 'bibs': 1.0, 'toys': 1.0, 'bag': 13.0, 'a': 17.0, 'small': 3.0, 's': 7.0, 'had': 3.0, 'right': 1.0, 'to': 15.0, 'main': 1.0, 'in': 8.0, 'one': 6.0, 'too': 2.0, 'held': 1.0, 'for': 4.0, 'through': 1.0, 'into': 1.0, 'fabric': 1.0, 'just': 2.0, 'and': 16.0, 'lose': 1.0, 'mom': 1.0, 'negative': 1.0, 'flimsy': 1.0, 'thin': 1.0, 'cell': 3.0, 'when': 1.0, 'favorite': 1.0, 'nowhere': 1.0, 'case': 1.0, 'stores': 1.0, 'that': 7.0, 'cream': 1.0, 'extra': 1.0, 'are': 3.0, 'my': 5.0, 'be': 2.0, 'it': 8.0, 'or': 4.0, 'outfit': 1.0, 'hooks': 1.0, 'thought': 1.0, 'found': 1.0, 'have': 5.0, 'great': 2.0, 'big': 1.0, 'ounce': 1.0, 'were': 1.0, 'clips': 2.0, 'no': 1.0, 'now': 1.0, 'cooling': 1.0, 'lots': 1.0, 'off': 1.0, 'four': 1.0, 'receiving': 1.0, 'blanket': 1.0, 'back': 2.0, 'space': 2.0, 'most': 1.0, 'there': 4.0, 'on': 6.0, 'long': 1.0, 'outside': 1.0, 'useless': 1.0, 'you': 4.0, 'flip': 1.0, 'another': 1.0, 'think': 2.0, 'hair': 1.0, 'hook': 1.0, 'bar': 1.0, 'of': 8.0, 'even': 1.0, 'cutting': 1.0, 'nothing': 1.0, 'diapers': 2.0, 'but': 3.0, 'abyss': 1.0, 'since': 1.0, 'find': 1.0, 'haven': 1.0, 't': 4.0, 'used': 1.0, 'yet': 1.0, 'really': 3.0, 'like': 2.0, 'finally': 1.0, 'i': 16.0, 'ripped': 1.0, 'stroller': 2.0, 'remove': 1.0, 'how': 1.0, 'they': 4.0, 'either': 1.0, 'star': 1.0, 'them': 2.0, 'didn': 1.0, 'get': 1.0, 'lost': 1.0, 'was': 2.0, 'rubber': 1.0, 'after': 1.0, 'these': 1.0, 'velcro': 1.0, 'store': 1.0, 'canvas': 1.0, 'not': 2.0, 'baby': 1.0, 'part': 1.0, 'messenger': 1.0, 'd': 1.0, 'wall': 1.0, 'style': 1.0, 'plenty': 1.0, 'public': 1.0, 'only': 3.0, 'hope': 1.0, 'seem': 1.0, 'food': 1.0, 'gone': 1.0, 'drop': 1.0, 'select': 1.0, 'restaurants': 1.0, 'leave': 1.0, 'going': 1.0, 'center': 1.0, 'attached': 4.0, 'end': 1.0, 'diaper': 5.0, 'up': 4.0, 'install': 1.0, 'having': 1.0}
Word element => {'looking': 1.0, 'day': 1.0, 'an': 1.0, 'anyway': 1.0, 'pants': 1.0, 'keeps': 1.0, 'doesn': 2.0, 'pocket': 2.0, 'inside': 1.0, 'room': 1.0, 'of': 1.0, 'plenty': 1.0, 'but': 2.0, 'flat': 1.0, 'that': 1.0, 'marginally': 1.0, 'back': 1.0, 'hand': 1.0, 'man': 1.0, 'on': 2.0, 'is': 2.0, 'he': 3.0, 'useless': 1.0, 'it': 4.0, 'this': 1.0, 'outing': 1.0, 'trips': 1.0, 'frame': 1.0, 'phone': 1.0, 'use': 1.0, 'his': 3.0, 'sturdy': 1.0, 'i': 3.0, 'pockets': 1.0, 'got': 1.0, 'partner': 1.0, 'anything': 1.0, 'other': 1.0, 's': 1.0, 't': 3.0, 'a': 1.0, 'we': 1.0, 'iphone': 1.0, 'isn': 1.0, 'look': 1.0, 'mule': 1.0, 'bag': 3.0, 'diaper': 2.0, 'orange': 1.0, 'the': 8.0, 'scream': 1.0, 'fit': 1.0, 'where': 1.0, 'for': 4.0, 'roomy': 1.0, 'well': 1.0, 'ergo': 1.0, 'color': 1.0, 'there': 1.0, 'combo': 1.0, 'and': 3.0, 'tallish': 1.0, 'my': 1.0, 'fits': 1.0, 'ridiculous': 1.0, 'carrying': 1.0, 'so': 1.0, 'carry': 1.0, 'baby': 1.0, 'zippers': 1.0, 'acts': 1.0, 'all': 1.0, 'as': 1.0, 'pack': 1.0, 'in': 2.0, 'brown': 1.0, 'nice': 2.0, 'strap': 1.0, 'are': 2.0}
Word element => {'especially': 1.0, 'greatest': 1.0, 'daddy': 1.0, 'it': 1.0, 'think': 1.0, 'they': 1.0, 'bought': 1.0, 'thanks': 1.0, 'baby': 1.0, 'wanted': 1.0, 'and': 1.0, 'bag': 1.0, 'for': 1.0, 'what': 1.0, 'that': 1.0, 'shower': 1.0, 'the': 2.0, 'new': 1.0, 'parents': 1.0, 's': 2.0}
Word element => {'bill': 1.0, 'fit': 1.0, 'and': 1.0, 'expected': 1.0, 'father': 1.0, 'would': 1.0, 'grandson': 1.0, 'bag': 2.0, 'hinted': 1.0, 'my': 1.0, 'one': 1.0, 'for': 1.0, 'was': 1.0, 'had': 1.0, 'great': 1.0, 'the': 3.0, 'diaper': 1.0, 'gift': 1.0, 'a': 2.0, 'this': 1.0, 'he': 3.0, 'thrilled': 1.0, 'with': 1.0, 'that': 1.0, 'of': 1.0, '34': 2.0, 'like': 1.0, 'manly': 1.0}
Word element => {'pluses': 1.0, 'above': 1.0, 'keeping': 1.0, 'in': 1.0, 'however': 1.0, 'd': 1.0, 'strongly': 1.0, 'look': 1.0, 'i': 1.0, 'bag': 2.0, 'mentioned': 1.0, 'of': 1.0, 'might': 1.0, 'recommend': 1.0, 'comfort': 1.0, 'color': 1.0, 'my': 1.0, 'the': 6.0, 'more': 1.0, 'love': 3.0, 'with': 1.0, 'it': 1.0, 'only': 1.0, 'suggestion': 1.0, 'is': 1.0, 'that': 2.0, 'be': 2.0, 'a': 1.0, 'difficult': 1.0, 'tad': 1.0, 'bit': 1.0, 'roomy': 1.0}
Word element => {'in': 1.0, 'easy': 1.0, 'the': 2.0, 'i': 2.0, 'pockets': 1.0, 'and': 1.0, 'very': 1.0, 'love': 1.0, 'it': 1.0, 's': 1.0, 'wear': 1.0, 'am': 1.0, 'front': 1.0, 'happy': 1.0, 'access': 1.0, 'comfortable': 1.0, 'with': 1.0, 'this': 1.0, 'bag': 1.0, 'to': 1.0}
Word element => {'like': 1.0, 'around': 1.0, 'carry': 1.0, 'have': 2.0, 'so': 1.0, 'woman': 1.0, 'nice': 1.0, 'i': 1.0, 'pockets': 1.0, 'purse': 1.0, 'and': 1.0, 'got': 1.0, 'bag': 1.0, 'loves': 1.0, 'one': 1.0, 'for': 2.0, 's': 3.0, 'he': 1.0, 'this': 1.0, 'durable': 1.0, 'it': 2.0, 'to': 1.0, 'husband': 1.0, 'my': 1.0, 't': 1.0, 'organization': 1.0, 'diaper': 1.0, 'great': 1.0, 'the': 3.0, 'made': 1.0, 'material': 1.0, 'looks': 1.0, 'is': 2.0, 'doesn': 1.0, 'fact': 1.0, 'that': 2.0, 'a': 2.0, 'guy': 1.0}
Word element => {'made': 1.0, 'durable': 1.0, 'very': 1.0, 'essentials': 1.0, 'just': 1.0, 'times': 1.0, 'the': 2.0, 'lot': 1.0, 'purse': 1.0, 'husband': 1.0, 'its': 1.0, 'my': 2.0, 'plus': 1.0, 'rather': 1.0, 'of': 3.0, 'have': 2.0, 'convienant': 1.0, 'holding': 1.0, 'bags': 1.0, 'that': 1.0, 'loves': 1.0, 'importantly': 1.0, 'best': 1.0, 'to': 2.0, 'our': 1.0, 'all': 1.0, 'as': 1.0, 'messanger': 1.0, 'found': 1.0, 'this': 1.0, 'it': 4.0, 'items': 1.0, 'so': 1.0, 'and': 3.0, 'i': 2.0, 'one': 1.0, 'for': 4.0, 'most': 1.0, 'use': 3.0, 'diaper': 2.0, 'me': 1.0, 'style': 1.0, 'also': 1.0, 'coloring': 1.0, 'well': 2.0, 't': 1.0, 'a': 2.0, 'because': 1.0, 'bag': 2.0, 'is': 3.0, 'plenty': 1.0, 'masculine': 1.0, 'form': 1.0, 'multiple': 1.0, 'him': 1.0, 'don': 1.0, 'even': 1.0, 'carry': 1.0}
Word element => {'well': 1.0, 'mat': 1.0, 'with': 1.0, 'as': 1.0, 'comes': 1.0, 'sturdy': 1.0, 'a': 3.0, 'bag': 2.0, 'zippers': 1.0, 'work': 1.0, 'perfect': 1.0, 'changing': 1.0, 'great': 1.0, 'it': 1.0, 'diaper': 1.0, 'for': 1.0, 'guy': 1.0}
Word element => {'purchase': 1.0, 'has': 1.0, 'that': 1.0, 'room': 1.0, 'bags': 1.0, 'dont': 1.0, 'other': 1.0, 'have': 1.0, 'nursing': 1.0, 'happy': 1.0, 'my': 2.0, 'picture': 1.0, 'in': 1.0, 'the': 2.0, 'diaper': 1.0, 'did': 1.0, 'like': 1.0, 'and': 2.0, 'i': 2.0, 'pockets': 1.0, 'very': 2.0, 'as': 1.0, 'many': 2.0, 'with': 1.0, 'this': 1.0, 'durable': 1.0, 'looked': 1.0, 'it': 4.0, 'fast': 1.0, 'am': 2.0, 'just': 1.0, 'not': 1.0, 'for': 1.0, 'using': 2.0, 'a': 1.0, 'came': 1.0, 'bag': 3.0}
Word element => {'bought': 1.0, 'nicely': 1.0, 'and': 2.0, 'loved': 1.0, 'this': 1.0, 'made': 1.0, 'my': 1.0, 'shower': 1.0, 'fast': 1.0, 'for': 2.0, 'daughter': 1.0, 'her': 1.0, 'shipped': 1.0, 'she': 1.0, 'it': 1.0}
Word element => {'adjust': 1.0, 'time': 1.0, 'once': 1.0, 'fallen': 1.0, 'gives': 1.0, 'nonetheless': 1.0, 'like': 1.0, 'have': 2.0, 'while': 1.0, 'perform': 1.0, 'did': 1.0, 'buggy': 1.0, 'mountain': 1.0, 'when': 1.0, 'prettier': 1.0, 'something': 1.0, 'wanted': 1.0, 'bob': 3.0, 'towards': 1.0, 'my': 1.0, 'going': 1.0, 'were': 1.0, 'up': 1.0, 'set': 1.0, 'about': 1.0, 'talking': 1.0, 'even': 1.0, 'end': 1.0, 'each': 1.0, 'bounced': 1.0, 'agile': 1.0, 'britax': 1.0, 'happy': 1.0, 'try': 1.0, 'ones': 1.0, 'one': 3.0, 'not': 3.0, 'over': 2.0, 'teeny': 1.0, 'help': 1.0, 'air': 1.0, 'seat': 1.0, 'm': 2.0, 'in': 4.0, 'systems': 1.0, 'basement': 1.0, 'as': 1.0, 'to': 3.0, 'all': 1.0, 'carpet': 1.0, 'tires': 1.0, 'head': 1.0, 'asleep': 1.0, 'good': 1.0, 'quite': 1.0, 'afraid': 1.0, 'fabric': 3.0, 'for': 2.0, 'scratchy': 1.0, 'be': 1.0, 'would': 2.0, 'husband': 1.0, 'more': 3.0, 'babies': 1.0, 'been': 1.0, 'expect': 1.0, 'actually': 2.0, 'raise': 1.0, 'well': 1.0, 'i': 7.0, 'it': 5.0, 'fuss': 1.0, '95': 1.0, 'didn': 1.0, 'cracks': 1.0, 'feels': 1.0, '2': 1.0, 'bump': 1.0, 'thing': 5.0, 'though': 1.0, 'suspension': 3.0, 'filled': 1.0, 'was': 4.0, 'get': 1.0, 'bumps': 1.0, 'everyone': 1.0, 'fan': 1.0, 'doesn': 3.0, 'along': 1.0, 't': 4.0, 'tiny': 1.0, 'a': 4.0, 'obstacles': 1.0, 's': 2.0, 'then': 1.0, 'we': 6.0, 'really': 2.0, 'just': 1.0, 'annoyance': 1.0, 'cortina': 1.0, 'nylon': 2.0, 'condition': 1.0, 'feel': 1.0, 'yes': 1.0, 'b': 1.0, 'tried': 1.0, 'until': 2.0, 'big': 1.0, 'those': 1.0, 'ride': 2.0, 'face': 2.0, 'home': 1.0, 'accommodates': 1.0, 'so': 2.0, 'with': 1.0, 'smooth': 3.0, 'weight': 1.0, 'and': 13.0, 'description': 1.0, 'got': 1.0, 'consistently': 1.0, 'than': 1.0, 'way': 1.0, 'matter': 1.0, 'that': 4.0, 'because': 1.0, 'the': 27.0, 'of': 5.0, 'leaning': 1.0, 'he': 2.0, 'if': 2.0, 'cottony': 1.0, 'back': 2.0, 'since': 1.0, 'mild': 1.0, 'our': 2.0, 'how': 1.0, 'stroller': 1.0, 'this': 5.0, 'experimentation': 1.0, 'gathers': 1.0, 'trying': 1.0, 'extra': 1.0, 'baby': 3.0, 'crack': 1.0, 'although': 1.0, 'next': 1.0, 'has': 4.0, 'percentile': 1.0, 'at': 1.0, 'is': 5.0, 'look': 1.0, 'on': 2.0, 'around': 2.0, 'his': 2.0, 'you': 1.0, 'push': 1.0, 'out': 2.0, 'had': 1.0, 'but': 2.0, 'no': 2.0, 'chicco': 1.0, 'ours': 1.0, '99th': 1.0, 'height': 1.0, 'nicely': 1.0}
Word element => {'you': 1.0, 'color': 1.0, 'if': 1.0, 'matters': 1.0, 'just': 1.0, 'deep': 1.0, 'describes': 1.0, 'fyi': 1.0, 'packaging': 1.0, 'the': 1.0, 'as': 2.0, 'pictured': 1.0, 'be': 1.0, 'to': 2.0, 'royal': 1.0, 'however': 1.0, 'that': 1.0, 'expecting': 1.0, 'ordered': 1.0, 'buggy': 1.0, 'we': 2.0, 'it': 2.0, 'this': 1.0, 'with': 2.0, 'is': 1.0, 'electric': 1.0, 'received': 1.0, 'purple': 2.0, 'blue': 2.0, 'stroller': 1.0, 'inside': 1.0, 'a': 1.0, 'black': 1.0}
Word element => {'awesome': 1.0, 'are': 1.0, 'there': 1.0, 'with': 1.0, 'since': 1.0, 'had': 1.0, 'now': 1.0, 've': 2.0, 'bought': 1.0, 'why': 1.0, 'bob': 1.0, 'that': 2.0, 'm': 1.0, 'get': 2.0, 'and': 4.0, 'getting': 1.0, 'do': 1.0, 'but': 1.0, 'stroller': 1.0, 'i': 9.0, 'it': 4.0, 'style': 1.0, 'me': 1.0, 'wrong': 1.0, 's': 2.0, 't': 2.0, 'go': 1.0, 'of': 1.0, 'breaks': 1.0, 'don': 1.0, 'up': 2.0, 'to': 1.0, 'seat': 1.0, 'brake': 2.0, 'just': 1.0, 'feel': 1.0, 'use': 1.0, 'realignment': 1.0, 'pissed': 1.0, 'like': 1.0, 'down': 2.0, 'everytime': 1.0, 'struggled': 1.0, 'love': 1.0, 'actually': 1.0, 'on': 1.0, 'my': 1.0, 'the': 6.0, 'hands': 1.0, 'knees': 1.0, 'again': 1.0, 'yank': 1.0, 'so': 1.0, 'didn': 1.0}
Word element => {'him': 1.0, 'helps': 1.0, 'best': 1.0, 'fingers': 1.0, 'out': 1.0, 'see': 1.0, 'funny': 1.0, 'actually': 1.0, 'little': 1.0, 'on': 1.0, 'toy': 1.0, 'well': 1.0, 'likes': 1.0, 'legs': 1.0, 'placed': 1.0, 'i': 1.0, 'so': 1.0, 'with': 4.0, 'carries': 1.0, 'this': 2.0, 'how': 1.0, 'he': 6.0, 'first': 1.0, '5': 2.0, 'tiny': 1.0, 'its': 1.0, 'do': 1.0, 'and': 3.0, 'anywhere': 1.0, 'another': 1.0, 'my': 1.0, 'bought': 1.0, 'months': 1.0, 'them': 1.0, 'horns': 1.0, 'started': 1.0, 'not': 2.0, 'son': 1.0, 'sleep': 1.0, 'as': 2.0, 'to': 3.0, 'outside': 1.0, 'giraffe': 1.0, 'picks': 1.0, 'tire': 1.0, 'who': 1.0, 'at': 2.0, 'loves': 1.0, 'in': 3.0, 'go': 1.0, 'we': 3.0, 'might': 1.0, 'home': 1.0, 'when': 1.0, 'lose': 1.0, 'are': 1.0, 'his': 4.0, 'mouth': 1.0, 'chew': 1.0, 'does': 1.0, 'stroller': 2.0, 'ever': 1.0, 'plays': 1.0, 'once': 1.0, 'of': 1.0, 'fear': 1.0, 'sleeps': 1.0, 'is': 2.0, 'it': 8.0, 'looks': 1.0, 'without': 1.0, 'playing': 1.0, 'the': 3.0, 'about': 1.0, 'thing': 1.0}
Word element => {'old': 1.0, '6': 1.0, 'play': 1.0, 'be': 1.0, 'liked': 1.0, 'still': 1.0, 'started': 1.0, 'my': 1.0, 'really': 2.0, 'when': 2.0, 'it': 1.0, 'with': 1.0, 'first': 1.0, 'he': 3.0, 'this': 1.0, 'baby': 1.0, 'little': 1.0, 'mo': 1.0, 'now': 1.0, 'to': 3.0, 'grab': 1.0, 'was': 1.0, 'and': 1.0, 'get': 1.0, 'at': 1.0, 'things': 1.0, 'into': 1.0, 'his': 1.0, 'mouth': 1.0, 'able': 1.0, 'likes': 1.0}
Word element => {'worth': 1.0, 'the': 2.0, 'by': 1.0, 'around': 1.0, 'stands': 1.0, 'overall': 1.0, 'head': 1.0, 'without': 1.0, 'to': 2.0, 'ears': 1.0, 'cannot': 1.0, 'bed': 1.0, 'poor': 1.0, 'has': 1.0, 'up': 1.0, 'of': 1.0, 'it': 5.0, 'he': 2.0, 'this': 1.0, 'loves': 1.0, 'go': 1.0, 'a': 1.0, 'my': 1.0, 'stained': 1.0, 'neck': 1.0, 'though': 1.0, 'bit': 1.0, 'everything': 1.0, 'after': 1.0, 'money': 1.0, 'lots': 1.0, 'carries': 1.0, 'youngest': 1.0, 'teething': 1.0, 's': 1.0, 'and': 1.0, 'done': 1.0, 'on': 1.0}
Word element => {'down': 1.0, 'one': 1.0, 'pricey': 2.0, 'to': 1.0, 'roomy': 1.0, 'nice': 2.0, 'fabric': 1.0, 'have': 1.0, 'backpack': 2.0, 'features': 1.0, 'sturdy': 1.0, 'a': 2.0, 'i': 3.0, 'it': 3.0, 'picklebottom': 1.0, 'those': 1.0, 'not': 1.0, 'step': 1.0, 'affordable': 1.0, 'is': 4.0, 'side': 1.0, 'several': 1.0, 'the': 10.0, 'diaper': 2.0, 'very': 1.0, 'bag': 3.0, 'wanted': 1.0, 'and': 3.0, 'close': 1.0, 'gotten': 1.0, 'from': 2.0, 'bags': 2.0, 'resembles': 1.0, 'straps': 1.0, 'this': 2.0, 'petunia': 2.0, 'compliments': 1.0, 'on': 3.0, 'gaping': 1.0, 'over': 1.0, 'however': 1.0, 'unzip': 1.0, 'back': 2.0, 'are': 1.0, 'zip': 1.0, 'leaving': 1.0, 'an': 1.0, 'just': 1.0, 'large': 1.0, 'other': 1.0, 'because': 1.0, 'does': 1.0, 'than': 1.0, 'that': 1.0, 'got': 1.0, 'alternative': 1.0}
Word element => {'with': 1.0, 'was': 1.0, 'made': 1.0, 'be': 1.0, 'havent': 1.0, 'changing': 1.0, 'sized': 1.0, 'material': 1.0, 'plenty': 1.0, 'has': 1.0, 'cash': 1.0, 'some': 1.0, 'keep': 1.0, 'strap': 1.0, 'place': 1.0, 'the': 3.0, 'large': 3.0, 'baby': 1.0, 'gift': 1.0, 'upcoming': 1.0, 'an': 2.0, 'but': 1.0, 'work': 1.0, 'heavy': 1.0, 'first': 1.0, 'duty': 1.0, 'this': 1.0, 'it': 6.0, 'and': 2.0, 'too': 1.0, 'appears': 1.0, 'phone': 2.0, 'his': 2.0, 'very': 3.0, 'day': 1.0, 'backpack': 1.0, 'i': 3.0, 'is': 3.0, 'on': 1.0, 'stuff': 1.0, 'of': 2.0, 'daddy': 1.0, 'there': 1.0, 'nice': 1.0, 'great': 2.0, 'purchase': 1.0, 'my': 1.0, 'diaperbag': 1.0, 'pockets': 1.0, 'got': 1.0, 'pleased': 1.0, 'used': 1.0, 'overnight': 1.0, 'wallet': 1.0, 'brother': 1.0, 'for': 3.0, 'probable': 1.0, 'everyday': 1.0, 'bag': 1.0, 'would': 1.0, 'or': 2.0, 'as': 2.0, 'all': 1.0, 'to': 4.0, 'trip': 1.0, 'hold': 2.0, 'everything': 1.0, 'pad': 1.0, 'enough': 1.0, 'mom': 1.0, 'keys': 2.0, 's': 1.0, 'a': 2.0, 'handy': 1.0, 'cell': 1.0, 'pocket': 1.0}
Word element => {'nicely': 1.0, 'back': 1.0, 'of': 1.0, 'out': 1.0, 'gear': 1.0, 'get': 1.0, 'easier': 1.0, '7': 1.0, '5': 1.0, 'designed': 1.0, 'probably': 1.0, 'also': 1.0, 'it': 1.0, 'much': 1.0, 'try': 1.0, 's': 1.0, 'a': 1.0, 'going': 1.0, 'frame': 1.0, 'problem': 1.0, 'than': 1.0, 'having': 1.0, 'm': 3.0, 'one': 1.0, 'too': 2.0, 'and': 8.0, 'the': 10.0, 'padded': 1.0, 'big': 2.0, 'open': 1.0, 'but': 2.0, 'use': 1.0, 'cloth': 1.0, 'previous': 1.0, 'diapers': 1.0, 'pockets': 1.0, 'woman': 1.0, 'they': 1.0, 'enough': 1.0, 'i': 6.0, 'two': 2.0, 'holders': 1.0, 'kids': 1.0, 'this': 3.0, 'with': 2.0, 'need': 1.0, 'bag': 3.0, 'take': 1.0, 'our': 2.0, 'all': 3.0, 'to': 6.0, 'around': 1.0, 'more': 2.0, 'is': 3.0, 'really': 1.0, 'in': 2.0, 'said': 1.0, 'same': 1.0, 'everything': 1.0, 'agree': 1.0, 'long': 1.0, 'zippers': 1.0, 'man': 1.0, 'not': 2.0, 'easiest': 1.0, 'day': 1.0, 'close': 1.0, 'bottle': 1.0, 'babysitter': 1.0, 'like': 2.0, 'on': 1.0, 'for': 2.0, 'expensive': 1.0, 'from': 1.0, 'bags': 1.0, 'water': 1.0, 'shorten': 1.0, 'handed': 1.0, 'who': 1.0, 'are': 2.0, 'strap': 2.0}
Word element => {'kudos': 1.0, 'so': 1.0, 'in': 1.0, 'child': 1.0, 'as': 1.0, 'me': 1.0, 'and': 2.0, 'a': 2.0, 'to': 1.0, 'was': 1.0, 'had': 2.0, 'for': 1.0, 'loved': 1.0, 'another': 1.0, 'baby': 1.0, 'my': 1.0, 'more': 1.0, 'friends': 1.0, 'bought': 1.0, 'gift': 1.0, 'i': 2.0, 'they': 3.0, 'used': 2.0, 'again': 1.0, 'actually': 1.0, 'this': 1.0, 'it': 2.0, 'than': 1.0, 'that': 1.0, 'thought': 1.0, 'would': 1.0, 'itthen': 1.0}
Word element => {'so': 1.0, 'heating': 1.0, 'clean': 2.0, 'coil': 1.0, 'review': 1.0, 'read': 1.0, 'water': 2.0, 'distilled': 2.0, 'amazon': 1.0, 'use': 1.0, 'would': 1.0, 'with': 2.0, 'come': 1.0, 'using': 2.0, 'recommend': 1.0, 'was': 1.0, 'now': 1.0, 'had': 1.0, 'option': 1.0, 'keep': 1.0, '1st': 1.0, 'is': 6.0, 'really': 1.0, 'son': 1.0, 'that': 1.0, 'one': 1.0, 'bought': 1.0, 'com': 1.0, 'for': 1.0, 'product': 2.0, 'out': 1.0, 'element': 1.0, 'of': 1.0, 'there': 2.0, 'over': 1.0, 'think': 1.0, 'on': 2.0, 'it': 5.0, 'sterilizing': 1.0, 'another': 1.0, 'neat': 1.0, '2nd': 1.0, 'bottles': 3.0, 'this': 3.0, 'wish': 1.0, 'we': 3.0, 'a': 2.0, 'great': 2.0, 'the': 4.0, 'frustration': 1.0, 'not': 2.0, 'only': 1.0, 'much': 1.0, 'do': 2.0, 'and': 2.0, 'to': 3.0, 'our': 2.0, 'all': 1.0, 'thing': 1.0, 'idea': 1.0, 'when': 1.0, 'you': 1.0, 'way': 1.0, 'stack': 1.0, 'trays': 1.0, 'in': 2.0, 'turn': 1.0, 'i': 3.0}
Word element => {'out': 1.0, 'expensive': 1.0, 'steamers': 1.0, 'sterlizer': 1.0, 'mom': 1.0, 'everything': 1.0, 'outweighted': 1.0, 'studies': 1.0, 'benefit': 1.0, 'hotel': 1.0, 'baby': 1.0, 'convienient': 1.0, 'very': 1.0, 'aggravating': 1.0, 'us': 1.0, 'took': 1.0, 'does': 1.0, 'complaint': 1.0, 'leads': 1.0, 'soon': 1.0, 'lot': 1.0, 'one': 1.0, 'too': 1.0, 'be': 2.0, 'travel': 1.0, 'will': 1.0, 'big': 1.0, 'risk': 1.0, 'yes': 1.0, 'see': 1.0, 'nightmare': 1.0, 'what': 1.0, 'went': 1.0, 'left': 1.0, 'time': 2.0, 'boiling': 1.0, 'bags': 1.0, 'microwave': 2.0, 'consuming': 1.0, 'using': 1.0, 'than': 2.0, 'more': 2.0, 'somewhat': 1.0, 'day': 1.0, 'times': 1.0, 'multiple': 1.0, 'medela': 1.0, 'express': 1.0, 'room': 1.0, 'horns': 1.0, 'two': 1.0, 'parts': 1.0, 'all': 2.0, 'yup': 1.0, 'brown': 1.0, 'dr': 1.0, 'hold': 1.0, 'again': 1.0, 'clean': 1.0, 'their': 1.0, 'fill': 1.0, 'now': 1.0, 'son': 2.0, 'me': 1.0, 'my': 4.0, 'may': 1.0, 'mine': 1.0, 'is': 7.0, 'pot': 1.0, 'sloppy': 1.0, 'don': 2.0, 'home': 1.0, 'bottles': 5.0, 'transport': 1.0, 'since': 1.0, 'cost': 2.0, 't': 3.0, 'then': 1.0, 'we': 4.0, 'plug': 1.0, 's': 4.0, 'use': 2.0, '2': 1.0, 'but': 4.0, 'about': 1.0, 'gone': 1.0, 'trip': 2.0, 'and': 11.0, 'works': 1.0, 'in': 7.0, 'was': 3.0, 'had': 2.0, 'weeks': 1.0, 'either': 1.0, 'to': 10.0, 'product': 1.0, 'planning': 1.0, 'months': 1.0, 'every': 1.0, 'if': 5.0, 'for': 1.0, 'shorter': 1.0, '10': 1.0, 'kidding': 1.0, 'unit': 1.0, 'first': 1.0, 'are': 2.0, 'able': 1.0, 'push': 1.0, 'you': 6.0, 'am': 2.0, 'never': 2.0, 'invest': 1.0, 'better': 1.0, 'well': 1.0, 'i': 9.0, 'thinking': 1.0, 'steam': 1.0, 'pump': 2.0, '14': 1.0, 'gotten': 1.0, 'circulation': 1.0, 'this': 7.0, 'leeching': 1.0, 'like': 2.0, 'dishwaher': 1.0, 'daily': 1.0, 'it': 14.0, 'have': 5.0, 'or': 2.0, 'need': 1.0, 'wonderful': 2.0, 'power': 1.0, 'old': 2.0, '5': 2.0, 'plan': 1.0, 'unplug': 1.0, 'problem': 1.0, 'with': 5.0, 'week': 1.0, 'prior': 2.0, 'quick': 1.0, 'sterilizer': 4.0, 'occasionaly': 1.0, 'into': 1.0, 'chemicals': 1.0, 'breast': 1.0, 'that': 3.0, 'dead': 1.0, 'why': 1.0, 'annoyance': 1.0, 'milk': 1.0, 'just': 1.0, 'back': 2.0, 'device': 2.0, 'the': 11.0, 'of': 4.0, 'a': 12.0, 'imagine': 1.0, 'dump': 1.0, 'not': 4.0, 'boiled': 1.0, 'less': 2.0, 'up': 2.0, '7': 1.0, 'water': 2.0, 'he': 1.0, 'far': 2.0, 'enough': 1.0, 'panic': 1.0, 'won': 1.0, 'do': 2.0, 'much': 1.0, 'put': 1.0, 'long': 1.0, 'on': 3.0, 'dishwasher': 1.0, 'his': 1.0, 'them': 1.0, 'sterilize': 1.0, 'stove': 1.0, 'however': 1.0, 'easy': 1.0, 'so': 2.0, 'effective': 3.0}
Word element => {'in': 1.0, 'great': 1.0, 'instead': 1.0, 'top': 1.0, 'just': 1.0, 'however': 1.0, 'fully': 1.0, 'bottom': 1.0, 'are': 1.0, 'worth': 1.0, 'neck': 2.0, 'bottles': 1.0, 'it': 3.0, 'this': 1.0, 'quick': 1.0, 'with': 1.0, 'only': 1.0, 'we': 1.0, 'a': 1.0, 'way': 1.0, 'pleased': 1.0, 'when': 1.0, 'am': 1.0, 'rack': 1.0, 'very': 1.0, 'and': 3.0, 'easy': 1.0, 'get': 1.0, 'two': 1.0, 'i': 2.0, 'the': 8.0, 'website': 1.0, 'my': 1.0, 'avent': 1.0, 're': 1.0, 'purchased': 1.0, 'iq24': 1.0, 'sterilizer': 2.0, 'provides': 1.0, 'nipples': 1.0, 'after': 1.0, 'loaded': 1.0, 'reviews': 1.0, 'up': 2.0, 'put': 1.0, 'on': 2.0, 'to': 6.0, 'at': 1.0, 'hours': 1.0, 'sterilize': 2.0, 'one': 1.0, 'opinion': 1.0, 'product': 1.0, 'for': 1.0, 'time': 1.0, 'rings': 2.0, 'also': 1.0, 'reading': 1.0, 'like': 1.0, 'that': 3.0, 'money': 1.0, 'can': 1.0, 'be': 1.0, '6': 1.0, 'programmed': 1.0, 'thing': 1.0, '24': 1.0, 'is': 3.0, 'difficult': 1.0}
Word element => {'very': 1.0, 'bottles': 2.0, 'to': 2.0, 'product': 1.0, 'used': 1.0, 'before': 1.0, 'sterelize': 1.0, 'fit': 1.0, 'more': 1.0, 'the': 2.0, 'i': 3.0, 'baby': 1.0, 'but': 1.0, 'just': 1.0, 'really': 1.0, 'is': 1.0, 'conveniant': 1.0, 'this': 1.0, 'it': 1.0, 'water': 1.0, 'wish': 1.0, 'like': 1.0, 'boil': 1.0, 'could': 1.0}
Word element => {'convenience': 1.0, 'don': 1.0, 'you': 1.0, 'if': 1.0, 'bottles': 1.0, 'whenever': 1.0, 'care': 1.0, 'kitchen': 1.0, 'wife': 1.0, 'to': 3.0, 'and': 3.0, 'difference': 1.0, 'need': 1.0, 'organic': 1.0, 'but': 1.0, 'significant': 1.0, 'product': 1.0, 'microwave': 2.0, 'avent': 1.0, 'my': 1.0, 't': 1.0, 's': 1.0, 'we': 3.0, 'ago': 1.0, 'a': 2.0, 'sterilizer': 1.0, 'nipples': 1.0, 'fine': 1.0, 'is': 1.0, 'i': 1.0, 'two': 1.0, 'really': 1.0, 'customer': 1.0, 'about': 1.0, 'no': 1.0, 'take': 1.0, 'sterilize': 1.0, 'decided': 1.0, 'bought': 1.0, 'months': 1.0, 'it': 4.0, 'this': 2.0, 'after': 1.0, 'however': 1.0, 'reading': 1.0, 'there': 1.0, 'between': 1.0, 'reviews': 1.0, 'in': 1.0, 'down': 1.0, 'site': 1.0, 'works': 1.0, 'try': 1.0, 'iq24': 2.0, 'great': 1.0, 'loves': 1.0}
Word element => {'me': 1.0, 'for': 1.0, 'water': 1.0, 'easier': 1.0, 'hot': 1.0, 'out': 1.0, 'with': 2.0, 'there': 1.0, 'way': 1.0, 'machine': 1.0, 'dust': 1.0, 'up': 1.0, 'so': 2.0, 'him': 1.0, 'feeding': 1.0, 'breast': 1.0, 'use': 3.0, 'and': 4.0, 'getting': 1.0, 'very': 1.0, 'son': 1.0, 'day': 1.0, 'beginning': 1.0, 'which': 1.0, 'useful': 1.0, 'it': 4.0, 'older': 2.0, 'do': 1.0, 'much': 1.0, 'end': 1.0, 'only': 1.0, 'i': 7.0, 'bought': 1.0, 'stealize': 1.0, 'after': 1.0, 'the': 3.0, 'save': 1.0, 'my': 1.0, 'baby': 2.0, 'will': 1.0, 'item': 1.0, '80': 1.0, 'sitting': 1.0, '2': 2.0, 'can': 2.0, '5': 1.0, 'before': 1.0, 'is': 5.0, 'say': 1.0, 'oz': 1.0, 'minutes': 1.0, 'boil': 1.0, 'was': 1.0, 'fast': 1.0, 'borned': 1.0, 'pot': 1.0, 'a': 3.0, 'bucks': 1.0, 'at': 2.0, 'lot': 1.0, 'once': 1.0, 'of': 1.0, 'this': 2.0, 'found': 1.0, 'small': 2.0, 'have': 2.0, 'to': 4.0, 'all': 1.0, 'bottles': 3.0, 'worth': 1.0, 'or': 1.0, '3': 1.0, 'find': 1.0, 'because': 1.0, 'when': 1.0, 'am': 1.0}
Word element => {'back': 1.0, 'have': 1.0, 'just': 1.0, 'feeling': 1.0, 'thought': 1.0, 'am': 1.0, 'again': 1.0, 'happened': 2.0, 'don': 1.0, 'up': 1.0, 'were': 1.0, 'before': 1.0, 'way': 1.0, 'off': 1.0, 'energy': 1.0, 'shut': 1.0, 'but': 2.0, 'cycle': 1.0, 'itself': 1.0, 'in': 2.0, 'nebulized': 2.0, 'having': 1.0, '1': 1.0, 'and': 3.0, 'it': 5.0, 'month': 1.0, 'take': 1.0, 'sterile': 1.0, 'other': 2.0, 'every': 1.0, 'through': 1.0, 'then': 2.0, 'keeping': 1.0, 'first': 1.0, 'drugs': 1.0, 'stated': 2.0, 'i': 5.0, 'was': 2.0, 'as': 2.0, 'to': 2.0, 'not': 2.0, 'send': 1.0, 'started': 1.0, 'that': 2.0, 'the': 14.0, 'months': 1.0, 'instructions': 2.0, 'm': 1.0, 'performed': 1.0, 'drug': 1.0, 'happy': 1.0, 'my': 1.0, 'sterilizer': 5.0, '3': 1.0, 'time': 2.0, 'with': 2.0, 'caring': 1.0, 'meant': 1.0, 'for': 3.0, 'nebulizers': 2.0, 'about': 1.0, 'cut': 1.0, 'week': 1.0, 'trouble': 1.0, 'well': 1.0, 'fluke': 1.0, 'half': 1.0, 't': 1.0, 'a': 3.0, 'go': 1.0, '6': 2.0, 'hours': 2.0, 'would': 2.0}
Word element => {'away': 1.0, 'sterilized': 1.0, 'already': 1.0, 'that': 1.0, 'arm': 1.0, 'in': 1.0, 'baby': 1.0, 'crying': 1.0, 'hungry': 1.0, 'my': 1.0, 'holding': 1.0, 'day': 1.0, 'really': 1.0, 'every': 1.0, 'inside': 1.0, 'need': 1.0, 'still': 1.0, 'ready': 2.0, 'second': 1.0, 'is': 2.0, 'water': 2.0, 'and': 3.0, 'too': 1.0, 'm': 1.0, 'the': 6.0, 'much': 1.0, 'first': 1.0, 'it': 2.0, 'with': 1.0, 'this': 2.0, 'are': 1.0, 'added': 1.0, 'bought': 1.0, 'one': 4.0, 'i': 8.0, 've': 2.0, 'when': 1.0, 'you': 1.0, 'complained': 1.0, 'not': 1.0, 'was': 3.0, 'all': 1.0, 'to': 4.0, 'working': 1.0, '24': 1.0, 'picked': 1.0, 'microwave': 1.0, 'from': 1.0, 'properly': 1.0, 'compared': 1.0, 'electric': 1.0, 'always': 1.0, 'set': 1.0, 'use': 2.0, 'mode': 1.0, 'sterilizers': 1.0, 'worked': 1.0, 'sterilizer': 3.0, 'other': 1.0, 'brands': 1.0, 'rather': 1.0, 'right': 1.0, 'fine': 1.0, 'replaced': 1.0, 'pricey': 1.0, 'but': 1.0, 'replace': 1.0, 'glad': 2.0, 'hours': 1.0, 'bottle': 1.0, 'time': 1.0, 'so': 1.0, 'or': 1.0, 'bottles': 1.0}
Word element => {'changed': 1.0, 'if': 1.0, 'pricing': 1.0, 'need': 1.0, 'investigate': 1.0, 'i': 2.0, 'the': 3.0, 'my': 1.0, 'there': 1.0, 'surprise': 1.0, 'see': 1.0, 'well': 2.0, 'size': 1.0, 'was': 1.0, 'to': 3.0, 'much': 1.0, 'short': 1.0, 'product': 1.0, 'bottles': 1.0, 'compact': 1.0, 'were': 1.0, 'it': 1.0, 'works': 1.0, 'arrived': 1.0, 'fits': 1.0, 'but': 1.0, 'me': 1.0, 'no': 1.0, 'space': 1.0, 'incorrect': 1.0, 'description': 1.0, 'disappoints': 1.0}
Word element => {'residue': 1.0, 'hard': 2.0, 'water': 4.0, 'bottled': 1.0, 'use': 1.0, 'tip': 1.0, 'friend': 1.0, 'best': 1.0, 'recommend': 1.0, 'would': 2.0, 'down': 1.0, 'sooner': 1.0, 'got': 1.0, 'buy': 1.0, 'ease': 1.0, 'saves': 1.0, 'amount': 1.0, 'because': 1.0, 'child': 1.0, 'vs': 1.0, 'pacifiers': 1.0, 'are': 1.0, 'be': 1.0, 'giving': 1.0, 'again': 1.0, 'you': 2.0, 'what': 1.0, 'been': 1.0, 'that': 4.0, 'parts': 1.0, 'know': 1.0, '4oz': 1.0, 'is': 2.0, 'one': 1.0, 'tray': 1.0, 'we': 1.0, 's': 1.0, 'a': 1.0, 'has': 2.0, 'well': 1.0, 'wish': 1.0, 'this': 1.0, 'it': 7.0, 'must': 1.0, 'have': 2.0, 'product': 1.0, 'for': 3.0, 'and': 3.0, 'moms': 1.0, 'sterilized': 2.0, 'keeps': 1.0, 'lots': 1.0, 'can': 1.0, 'money': 1.0, 'of': 3.0, 'at': 1.0, 'sons': 1.0, 'space': 1.0, 'the': 9.0, 'nice': 1.0, 'great': 1.0, 'i': 4.0, 'your': 1.0, 'put': 1.0, 'my': 2.0, 'to': 3.0, 'all': 2.0, 'spoons': 1.0, '11oz': 1.0, 'in': 1.0, 'top': 1.0, 'time': 2.0, 'bottle': 2.0, 'so': 1.0, 'boiling': 1.0, 'bottles': 2.0, 'worth': 1.0}
Word element => {'months': 1.0, 'over': 1.0, 'now': 1.0, 'twice': 1.0, 'daily': 1.0, 'for': 1.0, 'design': 1.0, 'and': 2.0, 'quality': 1.0, 'great': 1.0, 'it': 1.0, 'usually': 1.0, 'product': 1.0, 'to': 1.0, 'easy': 1.0, 'use': 2.0, '21': 1.0, 'quick': 1.0, 'we': 1.0}
Word element => {'back': 1.0, 'in': 1.0, 'there': 1.0, 'umbrella': 1.0, 'up': 1.0, 'also': 1.0, 'everyone': 1.0, 'kiddos': 1.0, 'groceries': 1.0, 'older': 1.0, 'bag': 1.0, 'love': 1.0, 'for': 2.0, 'of': 3.0, 'plenty': 2.0, 'has': 1.0, 'style': 1.0, 'not': 1.0, 'me': 1.0, 'assumed': 1.0, 'just': 1.0, 'had': 1.0, 'easily': 1.0, 'the': 4.0, 'it': 8.0, 'with': 1.0, 'this': 2.0, 'first': 1.0, 'do': 1.0, 'folds': 2.0, 'easy': 1.0, 'diaper': 1.0, 'stroller': 2.0, '2': 1.0, 'but': 1.0, 'underneath': 1.0, 'my': 2.0, 'would': 1.0, 'soooo': 1.0, 'push': 1.0, 'are': 1.0, 'to': 2.0, 'seat': 1.0, 'and': 5.0, 'tall': 1.0, 'using': 1.0, 'recommend': 1.0, 'was': 1.0, 'chicco': 1.0, 'car': 2.0, 'room': 2.0, '5': 2.0, 'spends': 1.0, 'coats': 1.0, 'year': 1.0, 'keyfit30': 1.0, 'old': 1.0, 'i': 4.0, 'pushing': 1.0, 'baby': 2.0, 'years': 1.0, 'more': 1.0, 'around': 1.0, 'then': 1.0, 'great': 1.0, 'seemed': 1.0, 'we': 2.0, 's': 5.0, 'a': 1.0, 'at': 1.0, 'since': 1.0, 'so': 2.0, 'time': 1.0, 'bit': 1.0, 'wide': 1.0, 'that': 1.0, 'basket': 1.0, 'been': 1.0}
Word element => {'groceries': 1.0, 'room': 1.0, 'have': 1.0, 'compact': 1.0, 'its': 1.0, 'best': 1.0, 'snaps': 1.0, 'trunk': 1.0, 'well': 1.0, 'snugride': 1.0, 'graco': 1.0, 'holding': 1.0, 'on': 1.0, 'your': 5.0, 'shopping': 1.0, 'one': 1.0, 'fit': 1.0, 'love': 1.0, 'for': 2.0, 'with': 2.0, 'it': 4.0, 'picked': 1.0, 'and': 6.0, 'purse': 1.0, 'up': 2.0, 'squeeze': 1.0, 'hand': 2.0, 'open': 1.0, 'pick': 1.0, 'other': 1.0, 'when': 1.0, 'easily': 1.0, 'you': 2.0, 'traveler': 1.0, 'were': 1.0, 'fits': 1.0, 'tight': 1.0, 'lightweight': 1.0, 'the': 5.0, 'stroller': 2.0, 'diaper': 1.0, 'off': 1.0, 'enough': 3.0, 'spaces': 1.0, 'maclaren': 1.0, 'part': 1.0, 'while': 2.0, 'easy': 1.0, 'can': 2.0, 'baby': 2.0, 'car': 1.0, 'to': 1.0, 'our': 1.0, 'seat': 1.0, 'into': 1.0, 'that': 1.0, 'basket': 1.0, 'in': 1.0, 've': 1.0, 'between': 1.0, 'coats': 1.0, 'items': 1.0, 'is': 2.0, 'large': 1.0, 's': 1.0, 'we': 1.0, 'a': 1.0, 'done': 1.0, 'bag': 1.0, 'fairly': 1.0, 'blanket': 1.0}
Word element => {'highly': 1.0, 'good': 1.0, 'mention': 1.0, 'car': 1.0, 'recommended': 1.0, 'trunk': 1.0, 'in': 1.0, 'little': 1.0, 'such': 1.0, 'deciding': 1.0, 'and': 3.0, 'the': 5.0, 'universal': 1.0, 'carseat': 1.0, 'before': 1.0, 'expensive': 1.0, 'space': 1.0, 'at': 1.0, 'let': 1.0, 'no': 1.0, 'super': 1.0, 'looked': 1.0, 'this': 2.0, 'purchases': 1.0, 'not': 1.0, 'me': 1.0, 'n': 1.0, 'looks': 1.0, 'it': 1.0, 'carrier': 1.0, 'comparison': 1.0, 'far': 1.0, 'more': 1.0, 'is': 4.0, 'snap': 1.0, 'one': 3.0, 'i': 1.0, 'of': 2.0, 'there': 1.0, 'fold': 1.0, 'takes': 1.0, 'up': 1.0, 'to': 2.0, 'our': 1.0, 'baby': 1.0, 'best': 1.0, 'on': 1.0, 'you': 1.0, 'tell': 1.0, 'mac': 1.0, 'go': 1.0, 'a': 1.0, 'bit': 1.0, 'but': 1.0, 'by': 1.0, 'light': 1.0, 'weight': 1.0, 'easy': 1.0, 'unfold': 1.0}
Word element => {'hold': 1.0, 'my': 1.0, 'in': 1.0, 'look': 1.0, 'manuevercons': 1.0, 'comfortable': 1.0, 'huge': 1.0, 'unfold': 1.0, 'fold': 1.0, 'easy': 2.0, 'pros': 1.0, 'others': 1.0, 'offered': 1.0, 'holder': 2.0, 'looks': 1.0, 'it': 4.0, 'looked': 1.0, 'really': 2.0, 'recommend': 1.0, 'brands': 1.0, 'does': 1.0, 'i': 4.0, 'what': 1.0, 'excellent': 1.0, 'light': 1.0, 'just': 2.0, 'well': 1.0, 'anything': 1.0, 'other': 1.0, 'rating': 1.0, 'push': 1.0, 'are': 1.0, 'would': 2.0, 'basic': 1.0, '5': 2.0, 'compact': 1.0, 'harsh': 1.0, 'star': 1.0, 'to': 6.0, 'm': 1.0, 'opinion': 1.0, 'for': 1.0, 'product': 1.0, 'those': 1.0, 'looking': 1.0, 'definitely': 2.0, 'at': 1.0, 'who': 1.0, 'could': 1.0, 'a': 5.0, 's': 1.0, 'do': 1.0, 'too': 1.0, 'and': 2.0, 'little': 1.0, 'functionality': 1.0, 'very': 1.0, 'bit': 1.0, 'on': 1.0, 'think': 1.0, 'basket': 1.0, 'that': 1.0, 'if': 1.0, 'better': 3.0, 'is': 1.0, 'around': 1.0, 'more': 1.0, 'given': 1.0, 'usable': 1.0, 'cup': 2.0, 'small': 1.0, 'suppose': 1.0, 'have': 1.0}
Word element => {'grand': 1.0, 'anything': 1.0, 't': 1.0, 'don': 1.0, 'expecting': 1.0, 'so': 1.0, 'hand': 1.0, 'it': 3.0, 's': 2.0, 'also': 1.0, 'durable': 1.0, 'and': 1.0, 'squeaks': 1.0, 'just': 1.0, 'than': 1.0, 'smaller': 1.0, 'be': 1.0, 'adorable': 1.0, 'an': 1.0, 'adult': 1.0}
Word element => {'regardless': 1.0, 's': 1.0, 'purpose': 1.0, 'serves': 1.0, 'it': 2.0, 'i': 1.0, 'but': 1.0, 'thought': 1.0, 'price': 1.0, 'quality': 1.0, 'for': 1.0, 'the': 1.0, 'this': 1.0, 'would': 1.0, 'much': 1.0, 'be': 1.0, 'better': 1.0}
Word element => {'shelf': 1.0, 'knack': 1.0, 'knick': 1.0, 'on': 1.0, 'cute': 1.0, 'super': 1.0, 'made': 1.0, 'are': 1.0, 'plus': 1.0, 'satisfied': 1.0, '10': 1.0, 'in': 1.0, 'age': 1.0, 'at': 1.0, 'still': 1.0, 'it': 1.0, 'she': 1.0, 'back': 1.0, 'went': 1.0, 'so': 2.0, 'nursery': 1.0, 'much': 1.0, 'how': 1.0, 'surprised': 1.0, 'were': 2.0, 'they': 3.0, 'look': 1.0, 'right': 2.0, 'size': 1.0, 'old': 1.0, 'i': 4.0, 'was': 2.0, 'to': 1.0, 'grab': 1.0, 'daughter': 2.0, 'am': 1.0, 'when': 1.0, 'too': 1.0, 'and': 5.0, 'buy': 1.0, 'plays': 1.0, 'blue': 2.0, 'inside': 1.0, 'from': 1.0, 'them': 1.0, 'baby': 1.0, 'well': 1.0, 'toy': 1.0, 'my': 2.0, 'the': 5.0, 'one': 2.0, 'months': 2.0, 'bought': 2.0, 'tinkly': 1.0, 'blocks': 1.0, 'her': 3.0, 'soft': 1.0, 'by': 1.0, 'just': 2.0, 'light': 1.0, 'easy': 1.0, 'four': 1.0, 'squishy': 1.0, 'with': 2.0, 'pink': 2.0, 'manual': 1.0, 'loved': 1.0, 'dexterity': 1.0, 'first': 1.0, 'bell': 1.0, 'those': 1.0, 'give': 1.0, 'very': 3.0, 'little': 1.0, 'limited': 1.0, 'off': 1.0, 'a': 2.0, 'nice': 1.0, 'sound': 1.0, 'for': 2.0, 'jingle': 1.0}
Word element => {'baby': 1.0, 'chance': 1.0, 'if': 1.0, 'very': 1.0, 'find': 1.0, 'by': 1.0, 'just': 1.0, 'heartedly': 1.0, 'search': 1.0, 'an': 1.0, 'much': 1.0, 'do': 1.0, 'forgot': 1.0, 'favorite': 1.0, 'crinkler': 1.0, 'duck': 1.0, 'whole': 1.0, 'about': 1.0, 'you': 2.0, 'again': 1.0, 'when': 2.0, 'mos': 2.0, 'soft': 1.0, 'this': 2.0, 'feel': 1.0, '1': 1.0, '7': 1.0, 'also': 1.0, 'item': 1.0, 'wasted': 1.0, 'it': 10.0, 'she': 5.0, 'easy': 2.0, 'online': 1.0, 'currently': 1.0, '2': 1.0, 'the': 2.0, 'lightweight': 1.0, 'recommend': 1.0, 'doesn': 1.0, 'was': 4.0, 'old': 1.0, 'hospitalized': 1.0, 'had': 1.0, 'purchased': 2.0, 'loved': 1.0, 'is': 3.0, 'your': 1.0, '3': 1.0, 'on': 2.0, 'factor': 1.0, 'cheap': 1.0, 'where': 1.0, 'for': 1.0, 'handle': 1.0, 'whim': 1.0, 'to': 6.0, 'our': 1.0, 'who': 1.0, 'infant': 1.0, 'girl': 1.0, 'from': 2.0, 'moment': 1.0, 'so': 2.0, 'won': 1.0, 'toy': 2.0, 'comfort': 1.0, 'has': 1.0, 'likes': 1.0, 'and': 2.0, 'crinkle': 1.0, 't': 2.0, 'a': 1.0, 'we': 4.0, 's': 2.0, 'her': 3.0, 'clean': 1.0, 'gave': 1.0, 'loves': 1.0, 'like': 2.0, 'teeth': 1.0}
Word element => {'occasionally': 1.0, 'rolls': 1.0, 'some': 1.0, 'around': 1.0, 'and': 1.0, 'ball': 2.0, 'she': 3.0, 'daughter': 1.0, 'for': 1.0, 'in': 1.0, 'old': 1.0, 'our': 1.0, 'seemed': 1.0, 'hasn': 1.0, 'it': 1.0, 'this': 2.0, 'loves': 1.0, 'carries': 1.0, 'month': 1.0, '9': 1.0, 'got': 1.0, 'we': 1.0, 'everything': 1.0, 't': 1.0, 'the': 3.0, 'tags': 2.0, 'on': 2.0, 'but': 1.0, 'very': 1.0, 'because': 1.0, 'interested': 1.0}
Word element => {'if': 1.0, 'thrown': 1.0, 'being': 1.0, 'but': 1.0, 'advertised': 1.0, 'though': 1.0, 'even': 2.0, 'felt': 1.0, 'month': 2.0, 'taggies': 1.0, 'is': 2.0, 'arm': 1.0, 'and': 5.0, 'ball': 4.0, 'soft': 3.0, 'this': 3.0, 'have': 1.0, 'got': 1.0, 'touched': 1.0, 'could': 2.0, 's': 2.0, 'a': 3.0, 'little': 2.0, 'nice': 2.0, 'throw': 1.0, 'great': 1.0, 'as': 2.0, 'to': 6.0, 'one': 2.0, 'bought': 1.0, 'son': 3.0, 'warn': 1.0, '10': 1.0, 'for': 3.0, '23': 1.0, 'actually': 2.0, 'decided': 2.0, 'toy': 1.0, 'likes': 1.0, 'be': 1.0, 'it': 2.0, 'him': 1.0, 'jingler': 1.0, 'in': 3.0, 'house': 1.0, 'enough': 1.0, 'i': 3.0, 'old': 2.0, 'tags': 3.0, 'that': 2.0, 'her': 1.0, 'can': 1.0, 'fling': 1.0, 'so': 1.0, 'he': 2.0, 'hard': 1.0, 'my': 6.0, 'learning': 1.0, 'catch': 1.0, 'by': 1.0, 'however': 1.0, 'carry': 1.0, 'around': 3.0, 'his': 2.0, 'creased': 1.0, 'sister': 1.0, 'like': 1.0, 'comforting': 1.0, 'doggies': 1.0, 'inside': 1.0, 'sharp': 1.0, 'the': 10.0, 'of': 1.0, 'gift': 1.0, 'good': 1.0, 'made': 1.0, 'bleed': 1.0, 'am': 1.0, 'you': 1.0, 'pissed': 1.0, 'buy': 1.0, 'something': 1.0, 'mouth': 2.0, 'letting': 1.0, 'boo': 1.0, 'afterwards': 1.0, 'cut': 1.0, 'they': 1.0, 'tongue': 1.0, 'are': 1.0, 'quite': 1.0, 'area': 1.0, 'had': 1.0, 'about': 1.0, 'niece': 2.0, 'do': 2.0, 'put': 1.0, 'on': 1.0}
Word element => {'wash': 1.0, 'that': 1.0, 'she': 2.0, 'likes': 2.0, 'mouth': 1.0, 'his': 1.0, 'into': 1.0, 'can': 1.0, 'right': 1.0, 'goes': 1.0, 'hold': 1.0, 'has': 1.0, 'once': 1.0, 'tags': 1.0, 'grab': 1.0, 'to': 1.0, 'how': 1.0, 'learning': 1.0, 'and': 3.0, 'old': 1.0, 'gift': 1.0, 'onto': 1.0, 'bought': 1.0, 'recommendation': 1.0, 'month': 1.0, 'recipient': 1.0, 'a': 3.0, 'for': 1.0, 'using': 1.0, 'as': 1.0, 'course': 1.0, 'is': 1.0, 'upon': 1.0, '2': 1.0, 'the': 4.0, 'it': 5.0, 'christmas': 1.0, 'this': 1.0, 'he': 3.0, 'friend': 1.0, 's': 1.0, 'mom': 2.0, 'based': 1.0, 'of': 3.0, 'says': 2.0}
Word element => {'sleeves': 1.0, 'belly': 1.0, 'than': 1.0, 's': 1.0, 'that': 1.0, 'wrong': 1.0, 'get': 1.0, 'don': 1.0, 'his': 2.0, 'around': 1.0, 'clean': 1.0, 'different': 1.0, 'easier': 1.0, 'kinds': 1.0, 'much': 2.0, 'primarily': 1.0, 'only': 1.0, 'offer': 1.0, 'though': 1.0, 'thick': 1.0, 'better': 3.0, '9': 1.0, 'mos': 1.0, 'year': 1.0, 'two': 1.0, 'i': 6.0, 'me': 1.0, 'my': 3.0, 'he': 2.0, 'love': 2.0, 'for': 1.0, 'use': 2.0, 'fruit': 1.0, 'just': 1.0, 'but': 1.0, '2': 1.0, 'and': 5.0, 'waterproof': 1.0, '8': 1.0, 'all': 2.0, 'to': 4.0, 'these': 2.0, 'over': 1.0, 'happen': 1.0, 'coverage': 1.0, 'sewn': 1.0, 'they': 3.0, 'between': 1.0, 'pocket': 1.0, 'are': 2.0, 'old': 2.0, 'bibs': 2.0, 'originally': 1.0, 'snap': 1.0, 'off': 1.0, 're': 1.0, 'bunch': 1.0, 'opened': 1.0, 've': 1.0, 'allow': 1.0, 'something': 1.0, 'in': 3.0, 'was': 1.0, 'almost': 1.0, 'now': 2.0, 'wipe': 1.0, 'had': 1.0, 'adorable': 1.0, 'collar': 2.0, 'bib': 1.0, 'fit': 1.0, 't': 2.0, 'up': 1.0, 'full': 1.0, 'wish': 2.0, 'this': 1.0, 'would': 1.0, 'washes': 1.0, 'middle': 1.0, 'son': 1.0, 'gets': 1.0, 'keith': 1.0, 'haring': 1.0, 'a': 4.0, 'slight': 1.0, 'complaints': 1.0, 'even': 1.0, 'be': 1.0, 'boot': 1.0, 'since': 1.0, '1': 1.0, 'of': 2.0, 'the': 4.0, 'easy': 1.0, 'bit': 2.0, 'more': 1.0, 'is': 1.0, 'wasn': 1.0, 'order': 1.0, 'when': 1.0, 'on': 2.0, 'still': 1.0, 'if': 1.0, 'laid': 1.0, 'eating': 1.0, 'sauces': 1.0, 'food': 1.0, 'or': 1.0, 'drippy': 1.0, 'like': 1.0, 'with': 1.0, 'always': 1.0}
Word element => {'well': 1.0, 'up': 1.0, 'washes': 1.0, 'durable': 1.0, 'very': 1.0, 'dropped': 1.0, 'no': 1.0, 'tie': 1.0, 'complaints': 1.0, 'pockets': 1.0, 'a': 1.0, 'keeps': 1.0, 'reviews': 1.0, 'cuffs': 1.0, 'sleeve': 1.0, 'neck': 1.0, 'off': 1.0, 'pointed': 1.0, 'clothes': 1.0, 'baby': 1.0, 'out': 1.0, 'on': 1.0, 'months': 1.0, 'is': 4.0, 'the': 8.0, 'best': 1.0, 'like': 1.0, 'this': 1.0, 'it': 2.0, 'come': 1.0, 'other': 1.0, 'elastic': 1.0, 'will': 1.0, 'also': 1.0, 'nice': 1.0, 'catch': 1.0, 'because': 1.0, 'for': 2.0, 'closure': 1.0, 'fit': 2.0, 'my': 1.0, 'bib': 1.0, 'at': 2.0, '9': 1.0, 'and': 2.0, 'do': 1.0, 'her': 1.0, 'long': 1.0, 'time': 1.0, 'all': 1.0, 'to': 1.0, 'bottom': 1.0, 'food': 1.0, 'most': 1.0, 'that': 1.0}
Word element => {'comfortably': 1.0, '3t': 1.0, '2t': 1.0, 'size': 1.0, 'totally': 1.0, 'been': 1.0, 'have': 1.0, 'far': 1.0, 'food': 1.0, 'no': 1.0, 'will': 1.0, 'also': 1.0, 'sleeves': 2.0, 'take': 1.0, 'for': 1.0, 'impossible': 1.0, 'design': 1.0, 'fairly': 1.0, 'are': 1.0, 'sleeve': 1.0, 'combined': 1.0, 'snaps': 1.0, 'velcro': 1.0, 'regular': 1.0, 'of': 1.0, 'try': 1.0, 'off': 2.0, 'i': 2.0, 'makes': 1.0, 'old': 1.0, 'clothes': 1.0, 'night': 1.0, 'rip': 1.0, 'would': 1.0, 'resigned': 1.0, 'to': 3.0, 'daughter': 2.0, 'full': 1.0, 'this': 3.0, 'elastic': 1.0, 'with': 3.0, 'bib': 5.0, 'fits': 1.0, 'my': 2.0, 'child': 1.0, 'up': 1.0, 'shirts': 1.0, 'by': 1.0, 'just': 1.0, 'washing': 1.0, 'not': 1.0, 'given': 1.0, 'her': 4.0, 'a': 1.0, 's': 1.0, 'we': 1.0, 'secured': 2.0, 'so': 3.0, 'needed': 1.0, 'protected': 1.0, 'kind': 1.0, 'decided': 1.0, 'success': 1.0, 'had': 1.0, 'what': 1.0, '12': 1.0, 'your': 1.0, 'on': 1.0, 'it': 2.0, 'month': 1.0, 'every': 2.0, 'bibs': 1.0, 'and': 3.0, 'stain': 1.0, 'spray': 1.0, 'or': 1.0, 'neck': 1.0, 'out': 1.0, 'great': 1.0, 'myself': 1.0, 'the': 4.0, 'is': 3.0, 'around': 1.0, 'ties': 1.0}
Word element => {'of': 1.0, 'off': 1.0, 'it': 2.0, 'well': 1.0, 'since': 2.0, 'bib': 1.0, 'sleeves': 1.0, 'clothes': 1.0, 's': 1.0, 'their': 2.0, 'really': 1.0, 'summer': 1.0, 'in': 2.0, 'use': 1.0, 'sleeved': 1.0, 'to': 2.0, 'i': 1.0, 'one': 1.0, 'prefer': 1.0, 'keep': 1.0, 'less': 1.0, 'winter': 1.0, 'short': 1.0, 'covers': 1.0, 'clean': 1.0, 'mess': 1.0, 'great': 1.0, 'the': 3.0, 'these': 1.0}
Word element => {'washed': 1.0, 'after': 1.0, 'holds': 1.0, 'being': 1.0, 'product': 1.0, 'nicely': 1.0, 'up': 1.0, 'and': 1.0, 'great': 1.0, 'sleeves': 1.0, 'long': 1.0, 'these': 1.0, 'have': 1.0, 'kinds': 1.0, 'of': 1.0, 'must': 1.0, 'bibs': 1.0, 'a': 1.0, 'are': 2.0, 'the': 2.0, 'with': 1.0, 'toddlers': 1.0}
Word element => {'better': 1.0, 'seals': 1.0, 'we': 1.0, 'sleeves': 1.0, 'also': 1.0, 'elastic': 1.0, 'have': 1.0, 'the': 2.0, 'get': 1.0, 'and': 2.0, 'bib': 1.0, 'as': 1.0, 'means': 1.0, 'tie': 1.0, 'i': 1.0, 'fantastic': 1.0, 'a': 2.0, 'bumkins': 1.0, 'tight': 1.0, 'fit': 1.0, 'kushies': 1.0, 'neck': 1.0, 'much': 1.0, 'prefer': 1.0, 'it': 1.0}
Word element => {'fail': 1.0, 'this': 1.0, 'like': 1.0, 'stuff': 1.0, 'end': 1.0, 'it': 1.0, 'worth': 1.0, 'were': 1.0, 'of': 1.0, 'price': 1.0, 'well': 1.0, 'don': 1.0, 'up': 1.0, 'still': 1.0, 'son': 1.0, 'bibs': 1.0, 'sardine': 1.0, 'mimi': 1.0, 'my': 2.0, 'was': 1.0, 'washing': 1.0, 'because': 1.0, 'holding': 1.0, 'after': 1.0, 'first': 2.0, 'with': 2.0, 'spot': 1.0, 'attached': 1.0, 'left': 1.0, 'are': 1.0, 'strap': 1.0, 'disappointed': 2.0, 'in': 3.0, 'the': 7.0, 'these': 2.0, 'frayed': 1.0, 'same': 1.0, 'friend': 1.0, 'at': 1.0, 'bib': 1.0, 'main': 1.0, 'back': 1.0, 'to': 5.0, 'all': 1.0, 'have': 4.0, 'before': 1.0, 'used': 2.0, 'i': 6.0, 'and': 1.0, 'me': 1.0, 'even': 1.0, 'didn': 1.0, 'bit': 1.0, 'so': 2.0, 'time': 3.0, 'quality': 2.0, 'them': 3.0, 'send': 1.0, 'restroom': 1.0, 'is': 1.0, 'asked': 1.0, 'we': 1.0, 't': 2.0, 'a': 2.0, 'sew': 1.0, 'where': 1.0, 'for': 3.0, 'they': 1.0, 'double': 1.0, 'cause': 2.0, 'twins': 2.0, 'barely': 1.0, 'use': 1.0}
Word element => {'wash': 1.0, 'throw': 1.0, 'dry': 1.0, 'easy': 1.0, 'in': 1.0, 'itself': 1.0, 'doesn': 1.0, 'course': 1.0, 'projects': 1.0, 'or': 2.0, 'meals': 1.0, 'messy': 1.0, 'still': 1.0, 'i': 1.0, '4': 1.0, 'ages': 1.0, 'on': 1.0, 'put': 1.0, 'recommendation': 1.0, 'clean': 1.0, 'fabric': 1.0, 'the': 3.0, 'smock': 1.0, 'tried': 1.0, 'beyond': 1.0, 'bibs': 1.0, 'they': 2.0, 'clothing': 1.0, 'well': 2.0, 't': 1.0, 'a': 1.0, 's': 3.0, 'protects': 1.0, 'very': 2.0, 'rinse': 1.0, 'barber': 1.0, 'bib': 1.0, 'gifted': 1.0, 'drip': 1.0, 'and': 4.0, 'enough': 1.0, 'off': 2.0, 'my': 1.0, 'nor': 1.0, 'it': 8.0, 'art': 1.0, 'for': 1.0, 'love': 1.0, 'like': 1.0, 'cannot': 1.0, 'seems': 1.0, 'as': 1.0, 'to': 3.0, 'more': 1.0, 'is': 1.0, 'flexible': 1.0, 'friends': 1.0, 'so': 1.0, 'me': 1.0, 'not': 1.0, 'needed': 1.0, 'bother': 1.0, 'baby': 1.0, 'them': 2.0, 'other': 1.0, 'pull': 1.0, 'stiff': 1.0, 'but': 2.0, '2': 1.0, 'can': 1.0, 'size': 1.0, 'have': 2.0, 'reminds': 1.0, 'this': 1.0, 'kids': 1.0, 'of': 2.0, 'are': 1.0}
Word element => {'fantastic': 1.0, 'i': 1.0, 'bibs': 1.0, 'mine': 1.0, 'bumkins': 1.0, 'dryer': 1.0, 'many': 1.0, 'are': 1.0, 'go': 1.0, 'plastic': 1.0, 'in': 1.0, 'cannot': 1.0, 'purchased': 1.0, 'so': 2.0, 'over': 1.0, 'do': 2.0, 'and': 2.0, 'there': 1.0, 'always': 1.0, 'up': 1.0, 'they': 2.0, 'the': 1.0, 'mess': 1.0, 'not': 1.0, 'heat': 1.0}
Word element => {'excellent': 1.0, 'shipping': 1.0, 'you': 3.0, 'suggest': 1.0, 'waterproof': 1.0, 'wicking': 1.0, 'without': 1.0, 'juice': 1.0, 'hold': 1.0, 'full': 1.0, 'known': 1.0, 'prime': 1.0, 'amazon': 1.0, 'been': 1.0, 'ours': 1.0, 'needed': 1.0, 'especially': 1.0, 'where': 1.0, 'age': 1.0, 'meal': 1.0, 'odor': 1.0, 'getting': 1.0, 'keep': 1.0, 'through': 1.0, 'sells': 1.0, 'more': 1.0, 'month': 1.0, 'machine': 1.0, 'awesomely': 1.0, 'washing': 2.0, 'real': 1.0, 'beat': 1.0, 'fit': 1.0, 'like': 1.0, 'because': 2.0, 'while': 1.0, 'necked': 1.0, 'tie': 2.0, 'department': 1.0, 'throughout': 1.0, 'generally': 1.0, 'appreciate': 1.0, 'can': 1.0, 'neck': 1.0, 'spilled': 1.0, 'velcro': 2.0, 'drying': 1.0, 'as': 4.0, 'nicely': 1.0, 'or': 1.0, 'need': 1.0, 'food': 3.0, 'any': 1.0, 'feel': 1.0, 'keeps': 1.0, 'elastic': 1.0, 'after': 2.0, 'fell': 1.0, 'on': 3.0, 'long': 3.0, 'graphics': 1.0, 'babylicious': 2.0, 'ruined': 1.0, 'it': 2.0, 'bumkins': 3.0, 'what': 1.0, 'when': 2.0, 'entire': 1.0, 'my': 3.0, 'family': 1.0, 'friends': 1.0, 'bit': 1.0, 'its': 1.0, 'have': 3.0, 'tiny': 1.0, 'a': 11.0, 'pocket': 2.0, 'they': 3.0, 'kind': 1.0, 'bibs': 4.0, 'service': 1.0, 'if': 1.0, 'tighter': 1.0, 'every': 1.0, 'sleeved': 1.0, 'sink': 1.0, 'out': 1.0, 'compactly': 1.0, 'son': 1.0, 'allow': 1.0, 'from': 2.0, 'hard': 1.0, 'never': 1.0, 'knew': 1.0, 'once': 1.0, 'attachment': 1.0, 'these': 4.0, 'two': 1.0, 'prefer': 1.0, 'restaurants': 1.0, 'brand': 2.0, 'version': 1.0, 'hand': 2.0, 'usa': 1.0, 'has': 2.0, 'them': 2.0, 'leaking': 1.0, 'which': 1.0, 'made': 1.0, 'clean': 1.0, 'gatherings': 1.0, 'houses': 1.0, 'throw': 1.0, 'great': 2.0, 'plus': 1.0, 'diapers': 1.0, 'are': 4.0, 'cup': 1.0, 'adjustable': 1.0, 'sleeve': 1.0, 'think': 2.0, 'faint': 1.0, 'must': 2.0, 'thinner': 1.0, 'apart': 1.0, 'in': 3.0, 'bib': 4.0, 'recommended': 1.0, 'and': 9.0, 'one': 1.0, 'try': 1.0, 'too': 1.0, 'was': 1.0, 'to': 7.0, 'an': 2.0, 'fits': 1.0, 'all': 2.0, 'our': 2.0, 'had': 3.0, 'quality': 1.0, 'customer': 1.0, 'younger': 1.0, 'their': 1.0, 'fabric': 1.0, 'for': 6.0, 'bottom': 1.0, 'he': 1.0, 'love': 1.0, 'cannot': 1.0, 'very': 2.0, 'being': 1.0, 'art': 1.0, 'the': 13.0, 'of': 8.0, 'highly': 1.0, 'this': 3.0, 'few': 1.0, 'would': 1.0, 'weeks': 1.0, 'price': 1.0, 'toddler': 1.0, 'products': 2.0, 'child': 2.0, 'smaller': 1.0, 'use': 1.0, 'wash': 2.0, 'up': 2.0, 'eating': 1.0, 'messy': 1.0, 'much': 2.0, 'general': 1.0, 'ordered': 1.0, 'order': 1.0, 'color': 1.0, 'hang': 2.0, 'is': 3.0, 'at': 2.0, 'look': 1.0, 'right': 1.0, 'stain': 1.0, 'i': 10.0, 'well': 3.0, 'dry': 2.0, 'usually': 1.0, 'quickly': 1.0, 'does': 1.0, 'kitchen': 1.0, 'we': 4.0, 'take': 1.0, 'baby': 3.0, 'folds': 1.0, 'having': 1.0, 'wrists': 1.0}
Word element => {'has': 1.0, 'week': 1.0, 'quickly': 1.0, 'dries': 1.0, 'one': 2.0, 'hang': 1.0, 'sink': 1.0, 'down': 1.0, 'wipe': 1.0, 'sleeves': 1.0, 'out': 1.0, 'keeping': 1.0, 'excellent': 1.0, 'elastic': 1.0, 'hand': 1.0, 'trip': 1.0, 'packed': 1.0, 'toss': 1.0, 'and': 3.0, 'along': 1.0, 'cinch': 1.0, 'a': 2.0, 's': 1.0, 'wash': 1.0, 'up': 3.0, 'ignores': 1.0, 'wearing': 1.0, 'so': 1.0, 'plan': 1.0, 'around': 1.0, 'is': 4.0, 'he': 2.0, 'on': 2.0, 'put': 1.0, 'in': 3.0, 'though': 1.0, 'held': 1.0, 'neck': 1.0, 'collar': 1.0, 'the': 7.0, 'great': 2.0, 'another': 1.0, 'my': 1.0, 'i': 5.0, 'old': 1.0, 'about': 1.0, 'wadded': 1.0, 'tie': 1.0, 'have': 3.0, 'snug': 1.0, 'usually': 1.0, 'does': 2.0, 'wrists': 1.0, 'his': 2.0, 'works': 1.0, 'not': 2.0, 'it': 9.0, 'month': 1.0, 'just': 1.0, 'light': 1.0, '9': 1.0, 'for': 1.0, 'love': 2.0, 'strings': 1.0, 'of': 1.0, 'once': 2.0, 'to': 5.0, 'get': 3.0, 'done': 1.0, 'enough': 1.0, 'onto': 1.0, 'really': 1.0, 'material': 1.0, 'be': 1.0, 'that': 3.0, 'bib': 1.0, 'soft': 1.0, 'weight': 1.0, 'food': 2.0, 'but': 1.0, 'can': 1.0}
Word element => {'him': 1.0, 'shirt': 1.0, 'old': 1.0, 'gone': 1.0, 'have': 1.0, 'on': 1.0, 'pain': 1.0, 'clean': 1.0, 'every': 1.0, 'a': 1.0, 'found': 1.0, 'about': 2.0, 'product': 1.0, 'had': 1.0, 'to': 2.0, 'he': 1.0, 'it': 2.0, 'excited': 1.0, 'this': 1.0, 'an': 1.0, 'back': 1.0, 'but': 1.0, 'we': 2.0, 'and': 1.0, 'for': 1.0, 'using': 1.0, 'tight': 1.0, 'wrists': 1.0, 'around': 1.0, 't': 1.0, 'the': 2.0, 'were': 1.0, 'our': 1.0, 'son': 1.0, 'tightness': 1.0, 'time': 1.0, 'complained': 1.0}
Word element => {'awesome': 1.0, 'dry': 1.0, 'them': 1.0, 'hang': 1.0, 'sink': 1.0, 'looked': 1.0, 'with': 2.0, 'was': 1.0, 'machine': 1.0, 'arms': 1.0, 'playschool': 1.0, 'super': 1.0, 'soap': 1.0, 'the': 2.0, 'these': 1.0, 'excited': 1.0, 'great': 1.0, 'everywhere': 1.0, 'and': 3.0, 'like': 1.0, 'for': 2.0, 'my': 1.0, 'often': 1.0, 'in': 2.0, 'found': 1.0, 'i': 2.0, 'bids': 1.0, 'they': 4.0, 'use': 1.0, 'keeping': 1.0, 'are': 3.0, 'little': 1.0, 'totally': 1.0, 'clean': 1.0, 'washable': 1.0, 'to': 2.0, 'as': 1.0, 'learn': 1.0, 'ones': 1.0, 'feed': 1.0, 'themselves': 1.0, 'though': 1.0, 's': 1.0, 'we': 1.0, 'easily': 1.0, 'when': 1.0, 'times': 1.0, 'just': 1.0, 'rinse': 1.0, 'ours': 1.0, 'daughter': 1.0, 'water': 1.0}
Word element => {'product': 1.0, 'pleased': 1.0, 'i': 1.0, 'deal': 1.0, 'but': 1.0, 'himself': 1.0, 'problem': 1.0, 'wash': 1.0, 'this': 1.0, 'with': 1.0, 'only': 1.0, 'big': 1.0, 'very': 2.0, 'and': 1.0, 'is': 1.0, 'not': 1.0, 'just': 1.0, 'easy': 1.0, 'wipe': 1.0, 'to': 1.0, 'am': 1.0, 'loose': 1.0, 'little': 1.0, 'baby': 1.0, 'or': 1.0, 'off': 1.0, 'the': 1.0, 'are': 1.0, 'sleeves': 1.0, 'a': 2.0, 'clean': 1.0, 'them': 1.0, 'can': 1.0, 'pull': 1.0}
Word element => {'girl': 1.0, 'mat': 1.0, 'splat': 1.0, 'booger': 1.0, 'also': 1.0, 'another': 1.0, 'product': 1.0, 'very': 1.0, 'up': 1.0, 'pull': 1.0, 'didn': 1.0, 'shirt': 1.0, 'thanks': 1.0, 'face': 1.0, 'hands': 1.0, 'wipe': 1.0, 'dropped': 1.0, 'caught': 1.0, 'covered': 1.0, 'sugar': 1.0, 'keep': 1.0, 'just': 1.0, 'doesn': 1.0, 'put': 1.0, 'a': 5.0, 'rubs': 1.0, 'has': 3.0, 'lifesaver': 1.0, 'needed': 1.0, 'hair': 1.0, 'review': 1.0, 'she': 9.0, 'thought': 1.0, 'it': 13.0, 'shouting': 1.0, 'walls': 1.0, 'into': 1.0, 'easily': 1.0, 'that': 3.0, 'stains': 1.0, 'amazon': 1.0, 'been': 2.0, 'tears': 1.0, 'gave': 1.0, 'smears': 1.0, 't': 3.0, 'fit': 1.0, 'love': 2.0, 'for': 4.0, 'through': 1.0, 'messiest': 1.0, 'drags': 1.0, 'diaper': 1.0, 'the': 10.0, 'at': 1.0, 'look': 1.0, 'is': 2.0, 'more': 1.0, 'this': 4.0, 'pockets': 1.0, 'with': 3.0, 'in': 8.0, 'her': 14.0, 'probably': 1.0, 'online': 1.0, 'am': 2.0, 'bib': 6.0, 'what': 1.0, 'when': 1.0, 'goodness': 1.0, 'so': 4.0, 'can': 1.0, 'work': 1.0, 'but': 2.0, 'i': 10.0, 'had': 2.0, 'order': 1.0, 'sorry': 1.0, 'to': 8.0, 'shoving': 1.0, 'arms': 1.0, 'and': 8.0, 'get': 2.0, 'like': 1.0, 'bibs': 1.0, 'some': 1.0, 'reason': 1.0, 'only': 1.0, 'usually': 3.0, 'mouth': 2.0, 'will': 2.0, 'end': 1.0, 'eat': 1.0, 'food': 3.0, 'or': 2.0, 'too': 1.0, 'happy': 1.0, 'crying': 1.0, 'off': 1.0, 'enough': 1.0, 'my': 2.0, 'me': 1.0, 'give': 1.0, 'not': 1.0, 'then': 1.0, 'take': 1.0, 'have': 2.0, 'messy': 1.0, 'ultimate': 1.0, 'was': 2.0, 'clothes': 2.0, 'bad': 1.0, 'feeding': 1.0, 'wiping': 1.0, 'stick': 1.0, 'down': 1.0, 'from': 1.0, 'head': 1.0, 'out': 1.0, 'nothing': 2.0, 'toe': 1.0, 'tray': 1.0, 'after': 1.0, 'gotten': 1.0, 'no': 2.0, 'today': 1.0, 'daughter': 1.0, 'got': 1.0, 'test': 1.0, 'immediately': 1.0, 'lasagna': 1.0, 'washed': 1.0, 'lap': 2.0, 'drop': 1.0, 'on': 7.0, 'long': 1.0}
Word element => {'season': 1.0, 'cold': 1.0, 'year': 1.0, 'too': 1.0, 'not': 1.0, 'say': 1.0, 'but': 1.0, 'put': 1.0, 'winter': 1.0, 'thing': 1.0, 'same': 1.0, 'the': 2.0, 'kid': 1.0, 'to': 1.0, 'was': 1.0, 'had': 1.0, 'cannot': 1.0, 'in': 3.0, 'and': 2.0, 'similar': 1.0, 'a': 2.0, 'since': 1.0, 'my': 2.0, 'much': 1.0, 'tight': 1.0, 'using': 1.0, 'for': 2.0, 'one': 3.0, 'old': 1.0, 'i': 2.0, 'good': 2.0, 'no': 1.0, 'certainly': 1.0, 'she': 1.0, 'used': 1.0, 'is': 4.0, 'second': 1.0, 'summer': 1.0, 'this': 1.0, 'first': 1.0, 'it': 5.0, 'with': 1.0, 'clothing': 1.0, 'pain': 1.0, 'on': 2.0, 'however': 1.0}
Word element => {'check': 1.0, 'you': 1.0, 'sure': 1.0, 'make': 1.0, 'read': 1.0, 'is': 1.0, 'lead': 2.0, 'have': 1.0, 'discrepancy': 1.0, 'style': 2.0, 'daughter': 1.0, 'for': 1.0, 'months': 1.0, '5': 1.0, 'about': 1.0, 'my': 1.0, 'the': 2.0, 'checkout': 1.0, 'before': 1.0, 'works': 1.0, 'description': 1.0, 'concerns': 1.0, 'i': 1.0, 'comments': 1.0, 'being': 1.0, 'this': 1.0, 'it': 1.0, 'with': 1.0, 'production': 1.0, 'free': 2.0, 'some': 1.0, 'safe': 1.0}
Word element => {'velcro': 1.0, 'with': 1.0, 'do': 1.0, 'projects': 1.0, 'feed': 1.0, 'ones': 1.0, 'great': 1.0, 't': 1.0, 'also': 1.0, 'sleeves': 1.0, 'messy': 1.0, 'handy': 1.0, 'for': 3.0, 'art': 1.0, 'are': 1.0, 'little': 1.0, 'foods': 1.0, 'easy': 1.0, 'roll': 1.0, 'arms': 1.0, 'the': 3.0, 'without': 1.0, 'it': 3.0, 'hard': 1.0, 'short': 1.0, 'trying': 1.0, 'be': 1.0, 'tie': 2.0, 'closed': 1.0, 'when': 1.0, 'up': 1.0, 'child': 2.0, 'is': 1.0, 'squirming': 1.0, 'neck': 1.0, 'or': 2.0, 'themselves': 1.0, 'off': 1.0, 'catching': 1.0, 'pulling': 1.0, 'pull': 1.0, 'least': 1.0, 'to': 4.0, 'any': 1.0, 'hair': 1.0, 'can': 2.0, 'but': 1.0, 'at': 1.0, 'like': 1.0, 'they': 1.0}
Word element => {'cute': 1.0, 'compliments': 1.0, 'several': 1.0, 'gotten': 1.0, 'i': 1.0, 'cleans': 1.0, 'side': 1.0, 'just': 1.0, 'if': 2.0, 'right': 1.0, 'down': 2.0, 'hand': 1.0, 'which': 1.0, 'sauces': 1.0, 'nothing': 1.0, 'clothes': 1.0, 'daughter': 2.0, 'helps': 1.0, 'from': 2.0, 'while': 1.0, 'also': 1.0, 'elastic': 1.0, 'with': 1.0, 'issue': 1.0, 'an': 1.0, 'really': 1.0, 'us': 1.0, 'determined': 1.0, 'does': 1.0, 'than': 1.0, 'back': 1.0, 'he': 1.0, 'this': 2.0, 'long': 2.0, 'dribble': 1.0, 'her': 2.0, 'in': 1.0, 'is': 6.0, 'go': 2.0, 'a': 1.0, 's': 2.0, 'int': 1.0, 'up': 1.0, 'child': 1.0, 'sleeve': 1.0, 'are': 1.0, 'great': 1.0, 'the': 12.0, 'on': 3.0, 'put': 1.0, 'your': 2.0, 'has': 1.0, 'easily': 1.0, 'you': 2.0, 'when': 2.0, 'small': 1.0, 'have': 2.0, 'enough': 2.0, 'through': 1.0, 'or': 1.0, 'squirms': 1.0, 'ties': 1.0, 'for': 1.0, 'product': 2.0, 'be': 1.0, 'to': 5.0, 'pattern': 1.0, 'and': 6.0, 'sure': 1.0, 'get': 2.0, 'wriggles': 1.0, 'not': 4.0, 'velcros': 1.0, 'those': 1.0, 'sleeves': 4.0, 'little': 2.0, 'months': 1.0, 'one': 2.0, 'protect': 2.0, 'arms': 1.0, '13': 1.0, 'bib': 4.0, 'tight': 1.0, 'may': 1.0, 'my': 3.0, 'food': 1.0, 'can': 1.0, 'difficult': 1.0, 'patient': 1.0, 'into': 2.0, 'rather': 1.0, 'of': 3.0, 'it': 7.0, 'she': 2.0}
Word element => {'back': 1.0, 'bib': 1.0, 'and': 2.0, 'meals': 1.0, 'messy': 1.0, 'tie': 1.0, 'i': 1.0, 'at': 1.0, 'have': 1.0, 'this': 1.0, 'least': 1.0, 'fit': 1.0, 'should': 1.0, 'everyone': 1.0, 'sleeved': 1.0, 'worked': 1.0, 'well': 1.0, 'made': 1.0, 'great': 1.0, 'the': 1.0, 'seemed': 1.0, 'nice': 1.0, 'for': 1.0, 'one': 2.0, 'liked': 1.0}
Word element => {'too': 1.0, 'not': 1.0, 'clean': 1.0, 'easy': 1.0, 'so': 1.0, 'much': 1.0, 'first': 1.0, 'we': 2.0, 'love': 1.0, 'the': 1.0, 'are': 1.0, 'up': 1.0, 'bib': 1.0, 'and': 1.0, 'our': 1.0, 'this': 1.0, 'loved': 1.0, 'on': 1.0, 'one': 1.0, 'bulky': 1.0, 'second': 1.0}
Word element => {'closures': 1.0, 'via': 1.0, 'adjustable': 1.0, 'extra': 1.0, 'neck': 2.0, 'the': 7.0, 'star': 1.0, 'one': 1.0, 'for': 1.0, 'size': 2.0, 'is': 1.0, 'over': 1.0, 'big': 1.0, 'from': 1.0, 'into': 1.0, 'cute': 1.0, 'graphics': 1.0, 'quality': 1.0, 'because': 1.0, 'knot': 1.0, 'past': 1.0, 'easily': 1.0, 'a': 1.0, 'front': 1.0, 'coverage': 1.0, 'to': 4.0, 'clothing': 1.0, 'tie': 2.0, 'i': 1.0, 'it': 4.0, 'snap': 1.0, 'enough': 1.0, 'small': 1.0, 'minus': 1.0, 'have': 2.0, 'good': 1.0, 'fabric': 1.0, 'beginning': 1.0, 'of': 1.0, 'ties': 1.0, 'bib': 1.0, 'keep': 1.0, 'too': 2.0, 'and': 2.0, 'double': 1.0, 'minimal': 1.0, 'pay': 1.0, 'difficult': 1.0, 'sagging': 1.0, 'low': 1.0, 'regular': 1.0, 'beats': 1.0, 'in': 1.0, 'cost': 1.0, 'would': 2.0}
Word element => {'designs': 1.0, 'easy': 1.0, 'soft': 1.0, 'to': 1.0, 'led': 1.0, 'around': 1.0, 'collar': 1.0, 'still': 1.0, 'he': 1.0, 'this': 1.0, 'but': 1.0, 'the': 1.0, 'is': 1.0, 'on': 1.0, 'weaning': 1.0, 'wear': 1.0, 'so': 2.0, 'food': 1.0, 'helps': 1.0, 'baby': 1.0, 'messy': 1.0, 'little': 1.0, 'off': 1.0, 'pleasing': 1.0, 'gets': 1.0, 'a': 1.0, 'and': 2.0, 'pants': 2.0, 'take': 1.0}
Word element => {'in': 1.0, 'opening': 1.0, 'sleeve': 1.0, 'velcro': 1.0, 'had': 1.0, 'ends': 1.0, 'if': 1.0, 'easier': 1.0, 'would': 1.0, 'constantly': 1.0, 'use': 2.0, 'still': 1.0, 'wrong': 1.0, 'me': 1.0, 'don': 1.0, 'his': 2.0, 'does': 1.0, 'and': 1.0, 'through': 1.0, 'to': 5.0, 'fingers': 1.0, 'however': 1.0, 'hard': 1.0, 'this': 1.0, 'bending': 1.0, 'needed': 1.0, 'clothes': 1.0, 'end': 1.0, 'is': 3.0, 'we': 1.0, 't': 1.0, 'a': 3.0, 'great': 1.0, 'sleeves': 3.0, '18': 1.0, 'clean': 1.0, 'good': 1.0, 'of': 3.0, 'addition': 1.0, 'adjust': 1.0, '6': 1.0, 'keeping': 1.0, 'hands': 1.0, 'the': 9.0, 'job': 1.0, 'without': 1.0, 'little': 1.0, 'elastic': 2.0, 'an': 1.0, 'but': 2.0, 'sons': 1.0, 'bib': 2.0, 'at': 1.0, 'pretty': 1.0, 'my': 1.0, 'tight': 2.0, 'for': 2.0, 'it': 3.0, 'month': 2.0, 'old': 2.0, 'i': 1.0, 'm': 1.0, 'get': 2.0, 'sure': 1.0, 'be': 2.0, 'that': 1.0}
Word element => {'recommend': 1.0, 'for': 1.0, 'these': 1.0, 'shower': 1.0, 'of': 1.0, 'purchasing': 1.0, 'buy': 1.0, 'definitely': 1.0, 'legs': 1.0, 'down': 1.0, 'bottom': 1.0, 'at': 1.0, 'pouch': 1.0, 'up': 1.0, 'traveling': 2.0, 'elastic': 1.0, 'go': 1.0, 'a': 2.0, 'from': 3.0, 'big': 1.0, 'meal': 1.0, 'give': 1.0, 'me': 1.0, 'too': 1.0, 'and': 4.0, 'this': 2.0, 'transitioning': 1.0, 'only': 1.0, 'smock': 1.0, 'the': 5.0, 'impressed': 1.0, 'bath': 1.0, 'highly': 2.0, 'every': 2.0, 'having': 1.0, 'more': 1.0, 'is': 2.0, 'people': 1.0, 'single': 1.0, 'arms': 1.0, '34': 2.0, 'my': 1.0, 'wrists': 1.0, 'awesome': 1.0, 'been': 1.0, 'that': 1.0, 'daughter': 1.0, 'after': 1.0, 'so': 1.0, 'design': 1.0, 'keeps': 4.0, 'to': 3.0, 'now': 2.0, 'baby': 1.0, 'them': 1.0, 'clothes': 1.0, 'clean': 1.0, 'her': 4.0, 'i': 5.0, 'tried': 1.0, 'ordered': 1.0, 'one': 2.0, 'food': 2.0, 'but': 1.0, 'will': 2.0, 'be': 2.0, 'ordering': 1.0, 'must': 1.0, 'have': 1.0, 'likes': 1.0, 'it': 1.0, 'she': 1.0}
Word element => {'value': 1.0, 'year': 1.0, 'two': 1.0, 'almost': 1.0, 'old': 2.0, 'starting': 1.0, 'hype': 1.0, 'soiled': 1.0, 'item': 1.0, 'so': 1.0, 'to': 2.0, 'was': 1.0, 'would': 1.0, 'an': 1.0, 'crack': 1.0, 'new': 1.0, 'and': 1.0, 'bib': 1.0, 'up': 1.0, 'our': 1.0, 'a': 1.0, 'for': 2.0, 'one': 1.0, 'money': 1.0, 'lived': 1.0, 'great': 1.0, 'the': 2.0, 'needed': 1.0, 'recommend': 1.0, 'this': 1.0, 'it': 1.0}
Word element => {'again': 1.0, 'anything': 1.0, 'buy': 1.0, 'ever': 1.0, 'want': 1.0, 'told': 1.0, 'amazon': 2.0, 'would': 2.0, 'i': 2.0, 'they': 3.0, 'with': 1.0, 'molded': 1.0, 'this': 1.0, 'mildewed': 1.0, 'attached': 1.0, 'was': 4.0, 'smelled': 1.0, 'its': 1.0, 'an': 1.0, 'back': 1.0, 'week': 1.0, 'wet': 1.0, 'and': 7.0, 'chemical': 1.0, 'bib': 2.0, 'like': 1.0, 'awful': 1.0, 'the': 4.0, 'cardboard': 1.0, 'contacted': 1.0, 'have': 2.0, 'makes': 1.0, 'tested': 1.0, 'see': 1.0, 'a': 3.0, 'what': 1.0, 'on': 1.0, 'up': 1.0, 'over': 1.0, 'follow': 1.0, 'to': 4.0, 'word': 1.0, 'in': 1.0, 'that': 1.0, 'been': 1.0, 'it': 3.0, 'month': 1.0, 'heard': 1.0, 'me': 3.0, 'not': 2.0, 'from': 2.0, 'send': 1.0, 'them': 1.0}
Word element => {'open': 1.0, 'effectively': 1.0, 'it': 1.0, 'keep': 1.0, 'sleeves': 1.0, 'quickly': 1.0, 'also': 1.0, 'after': 1.0, 'ends': 1.0, 'on': 1.0, 'fitted': 1.0, 'have': 1.0, 'to': 2.0, 'all': 1.0, 'bibs': 1.0, 'job': 1.0, 'the': 5.0, 'some': 1.0, 'these': 1.0, 'pocket': 1.0, 'they': 2.0, 'dry': 1.0, 'laundry': 1.0, 'a': 2.0, 'similar': 1.0, 'and': 2.0, 'its': 1.0, 'only': 1.0, 'do': 2.0, 'very': 1.0, 'are': 2.0, 'useful': 1.0, 'good': 1.0, 'crumb': 1.0, 'or': 1.0, 'textile': 1.0, 'size': 1.0, 'wire': 1.0, 'plastic': 1.0, 'not': 1.0, 'give': 1.0, 'one': 1.0, 'feeling': 1.0, 'of': 1.0, 'with': 1.0, 'drawback': 1.0, 'packing': 1.0, 'child': 1.0, 'foil': 1.0, 'more': 1.0, 'is': 1.0, 'into': 1.0, 'that': 1.0, 'catch': 1.0, 'need': 1.0, 'would': 1.0}
Word element => {'parents': 1.0, 'busy': 1.0, 'big': 1.0, 'love': 1.0, 'really': 1.0, 'way': 1.0, 'rest': 1.0, 'wanted': 1.0, 'taffeta': 1.0, 'same': 1.0, 'made': 1.0, 'stains': 1.0, 'whereas': 1.0, 'lining': 3.0, 'phthalates': 1.0, 'bpa': 1.0, 'studier': 1.0, 'material': 1.0, 'off': 1.0, 'prevents': 1.0, 'his': 1.0, 'very': 1.0, 'prevent': 1.0, 'narrow': 1.0, 'baby': 1.0, 'gets': 1.0, 'adjust': 1.0, 'strap': 1.0, 'tie': 2.0, 'neck': 4.0, 'pros1': 1.0, 'here': 1.0, 'cons': 1.0, 'content': 1.0, 'clean': 3.0, 'support': 1.0, 'also': 1.0, 'us': 1.0, 'they': 1.0, 'between': 2.0, 'free': 7.0, 'mail': 1.0, 'now': 1.0, 'not': 6.0, 'pulling': 1.0, 'bib': 7.0, 'safe': 3.0, 'said': 1.0, 'in': 3.0, 'however': 1.0, 'hard': 1.0, 'labeled': 1.0, 'but': 5.0, 'past': 1.0, 'advertised': 1.0, 'vote': 1.0, '2': 3.0, 'easier': 3.0, 'alternate': 1.0, 'established': 2.0, 'my': 3.0, 'and': 11.0, 'do': 1.0, 'conform': 1.0, 'why': 2.0, 'kushies': 5.0, 'as': 3.0, 'to': 12.0, 'our': 4.0, 'sleeved': 2.0, 'on': 1.0, 'noticed': 1.0, 'long': 2.0, 'came': 1.0, 'falling': 1.0, 'food': 1.0, 'claim': 1.0, 'government': 1.0, 'a': 4.0, 'we': 2.0, 'fabric': 1.0, 'for': 5.0, 'products': 3.0, 'toddler': 1.0, 'product': 1.0, 'well': 1.0, 'i': 8.0, 'when': 1.0, 'pvc': 1.0, 'was': 2.0, 'still': 1.0, 'e': 1.0, 'bonus': 1.0, 'be': 1.0, 'purchased': 1.0, 'increased': 1.0, 'label': 1.0, 'pros': 1.0, 'cons1': 1.0, 'thicker': 1.0, 'this': 1.0, 'stained': 1.0, 'him': 1.0, 'bumkins': 5.0, 'it': 6.0, 'exceed': 1.0, 'have': 3.0, 'scrubbed': 1.0, 'commercial': 1.0, 'allowed': 1.0, 'composition': 1.0, 'does': 1.0, 'the': 20.0, 'of': 4.0, 'all': 1.0, 'an': 1.0, 'awareness': 1.0, 'easily': 1.0, 'that': 2.0, 'because': 1.0, 'chemicals': 1.0, 'maybe': 1.0, 's': 4.0, 'requirements': 1.0, 'testing': 1.0, 'by': 1.0, 'cpsia': 1.0, 'has': 1.0, 'changed': 1.0, 'pass': 1.0, 'feels': 1.0, 'from': 3.0, 'lead': 8.0, 'stringent': 1.0, 'first': 1.0, 'are': 2.0, 'mailed': 1.0, 'according': 1.0, 'required': 1.0, 'makes': 1.0, 'standards': 1.0, 'at': 1.0, 'is': 6.0, 'so': 2.0, 'waterproof': 2.0, 'bought': 1.0, 'one': 2.0, 'lot': 1.0, 'limits': 2.0, '2nd': 1.0, 'like': 2.0, 'looking': 1.0, 'using': 1.0, 'washing': 1.0, 'both': 1.0, 'customer': 1.0, 'their': 1.0}
Word element => {'dirty': 1.0, 'onsie': 1.0, 'that': 1.0, 'the': 1.0, 'less': 1.0, 'my': 1.0, 'love': 1.0, 'can': 1.0, '9': 1.0, 'month': 1.0, 'fact': 1.0, 'time': 1.0, 'makes': 1.0, 'feed': 1.0, 'feeding': 1.0, 'messy': 1.0, 'i': 1.0, 'old': 1.0, 'to': 1.0, 'getting': 1.0, 'and': 1.0, 'not': 1.0, 'have': 1.0, 'worry': 1.0, 'another': 1.0, 'about': 1.0}
Word element => {'color': 1.0, 'downside': 1.0, 'adorable': 1.0, 'to': 1.0, 's': 1.0, 'spaghetti': 1.0, 'love': 1.0, 'absolutely': 1.0, 'bib': 1.0, 'quite': 1.0, 'the': 2.0, 'are': 1.0, 'is': 1.0, 'that': 1.0, 'stains': 1.0, 'noticeable': 1.0, 'durable': 1.0, 'it': 1.0, 'only': 1.0, 'this': 1.0, 'hard': 1.0, 'on': 1.0, 'remove': 1.0, 'light': 1.0}
Word element => {'better': 1.0, 'out': 1.0, 'definitely': 1.0, 'other': 1.0, 'with': 1.0, 'this': 2.0, 'some': 1.0, 'i': 1.0, 'old': 1.0, 'smock': 1.0, 'ones': 1.0, 'cotton': 1.0, 'trying': 1.0, 's': 1.0, 'sleeves': 1.0, 'after': 1.0, 'so': 1.0, 'for': 1.0, 'daughter': 1.0, 'short': 1.0, 'material': 1.0, 'prefer': 1.0, 'made': 1.0, 'are': 2.0, 'overall': 1.0, 'my': 2.0, '20': 1.0, 'it': 1.0, 'month': 1.0, 'soup': 1.0, 'completely': 1.0, 'smocks': 1.0, 'repels': 1.0, 'liquid': 1.0, 'does': 1.0, 'our': 1.0, 'any': 1.0, 'too': 1.0, 'milk': 1.0, 'or': 1.0, 'off': 1.0, 'that': 1.0, 'into': 1.0, 'the': 1.0, 'job': 1.0, 'just': 1.0, 'okay': 1.0, 'rolls': 1.0, 'right': 1.0, 'lap': 1.0, 'an': 1.0, 'work': 1.0, 'but': 1.0}
Word element => {'use': 1.0, 'not': 1.0, 'will': 1.0, 'these': 1.0, '3': 1.0, 'bought': 1.0, 'have': 1.0, 'now': 1.0, 'dries': 1.0, 'machine': 1.0, 'hand': 1.0, 'you': 1.0, 'pocket': 1.0, 'trying': 1.0, 'son': 1.0, 'sleeved': 1.0, 'the': 6.0, 'my': 2.0, 's': 3.0, 't': 2.0, 'a': 1.0, 'can': 1.0, 'food': 1.0, 'so': 2.0, 'air': 1.0, 'in': 1.0, 'or': 1.0, 'neck': 1.0, 'kids': 1.0, 'this': 3.0, 'wouldn': 1.0, 'bib': 3.0, 'i': 2.0, 'out': 1.0, 'it': 6.0, 'covers': 1.0, 'around': 1.0, 'through': 1.0, 'clothes': 3.0, 'tired': 1.0, 'bibs': 1.0, 'any': 1.0, 'as': 1.0, 'all': 1.0, 'to': 4.0, 'was': 1.0, 'complelely': 1.0, 'well': 1.0, 'has': 2.0, 'of': 3.0, 'catch': 1.0, 'leak': 1.0, 'for': 1.0, 'product': 1.0, 'where': 1.0, 'other': 2.0, 'cover': 2.0, 'quickly': 1.0, 'ties': 1.0, 'back': 1.0, 'stains': 1.0, 'that': 2.0, 'long': 1.0, 'especially': 1.0, 'down': 1.0, 'wrists': 1.0, 'and': 3.0, 'waterproof': 1.0, 'crumb': 1.0, 'spills': 1.0, 'wash': 2.0, 'don': 1.0}
Word element => {'also': 1.0, 'bibs': 1.0, 'soft': 1.0, 'material': 1.0, 'proof': 1.0, 'but': 1.0, 'water': 1.0, 'of': 1.0, 'good': 1.0, 'keep': 1.0, 'these': 1.0, 'the': 1.0, 'are': 1.0, 'love': 1.0, 'protection': 1.0, 'a': 1.0, 'doing': 1.0, 'clean': 1.0, 'them': 1.0, 'when': 1.0, 'children': 1.0, 'projects': 1.0, 'to': 1.0, 'help': 1.0}
Word element => {'loud': 1.0, 'eats': 1.0, 'messy': 1.0, 'he': 3.0, 'this': 2.0, 'it': 1.0, 'keep': 1.0, 'if': 1.0, 'they': 1.0, 'clean': 2.0, 'options': 1.0, 'because': 1.0, 'not': 2.0, 'my': 1.0, 'eater': 1.0, 'and': 1.0, 'is': 3.0, 'son': 1.0, 'big': 2.0, 'mind': 1.0, 'am': 1.0, 'thanks': 1.0, 'when': 1.0, 'fan': 1.0, 'i': 4.0, 'designs': 1.0, 'wearing': 2.0, 'after': 1.0, 'would': 1.0, 'love': 1.0, 'color': 1.0, 'one': 1.0, 't': 1.0, 'a': 3.0, 'doesn': 1.0, 'will': 1.0, 'but': 1.0, 'bumpkins': 1.0, 'his': 1.0, 'them': 1.0, 'clothes': 1.0, 'him': 1.0, 'be': 1.0, 'know': 1.0, 'like': 1.0, 'simple': 1.0, 'the': 1.0, 'deal': 1.0, 'of': 1.0}
Word element => {'design': 1.0, 'quite': 1.0, 'don': 1.0, 'prickarand': 1.0, 'set': 2.0, 'baby': 1.0, 'several': 1.0, 'ordering': 1.0, 'much': 1.0, 'guys': 1.0, 'were': 1.0, 'all': 2.0, 'way': 1.0, 'opening': 2.0, 'becoming': 1.0, 'isn': 1.0, 'thrown': 1.0, 'i': 13.0, 'pounds': 1.0, 'for': 5.0, 'little': 3.0, 'two': 1.0, 'adjustable': 1.0, 'sleeve': 1.0, 'other': 1.0, 'clothespini': 1.0, '11': 1.0, 'secure': 1.0, 'twins': 2.0, 'happened': 1.0, 'seem': 2.0, 'hasn': 1.0, 'whatever': 1.0, 'has': 2.0, 'the': 30.0, 'doing': 1.0, 'months': 3.0, 'except': 1.0, 'one': 5.0, 'held': 1.0, 'cutecons': 1.0, 'bibs': 7.0, 'really': 3.0, 'my': 5.0, 'are': 7.0, 'bad': 1.0, 'well': 2.0, 'motifs': 1.0, 'going': 1.0, 'neck': 3.0, 'or': 1.0, 'torn': 1.0, 'big': 3.0, 'arm': 1.0, 'but': 4.0, 'them': 4.0, 'everything': 1.0, 'ties': 1.0, 'elastic': 3.0, 'snaps': 1.0, 'from': 3.0, 'at': 6.0, 'feed': 1.0, 'about': 2.0, 'as': 2.0, 'whole': 1.0, 'cuffs': 2.0, 'diaper': 1.0, 'up': 4.0, 'helps': 2.0, 'there': 1.0, 'food': 5.0, 'hang': 1.0, 'bottom': 1.0, 'crafts': 1.0, '8': 1.0, 'bib': 5.0, 'keep': 2.0, 'did': 1.0, 'dragging': 1.0, 'then': 1.0, 'to': 11.0, 'discovering': 1.0, 'pretty': 2.0, 'enough': 1.0, 'four': 1.0, 'later': 1.0, 'bumkins': 1.0, 'very': 5.0, 'prevent': 1.0, 'in': 5.0, 'cover': 2.0, 'will': 1.0, 'need': 1.0, 'also': 2.0, 't': 4.0, 'bag': 1.0, 'a': 13.0, 'complaint': 1.0, 'small': 1.0, 'tightest': 1.0, 'pocket': 1.0, 'babies': 1.0, 'perfect': 1.0, 'theikea': 1.0, 'more': 2.0, 'that': 8.0, 'easily': 1.0, 'because': 1.0, 'kladd': 1.0, 'fall': 1.0, 'catch': 1.0, 'too': 3.0, '3': 1.0, 'useless': 1.0, 'this': 3.0, 'seuss': 2.0, 'around': 1.0, 'stained': 1.0, 'so': 2.0, 'is': 5.0, 'can': 1.0, 'rather': 1.0, 'smaller': 1.0, 'pros': 1.0, 'wash': 1.0, 'seam': 2.0, 'like': 2.0, 'arts': 1.0, 'on': 4.0, 'make': 1.0, 'dr': 2.0, 'fit': 1.0, 'easy': 1.0, 'than': 1.0, 'bit': 2.0, 'clean': 1.0, 'prints': 1.0, 'just': 3.0, 'and': 11.0, 'dries': 1.0, 'they': 8.0, 'sturdy': 2.0, 'when': 2.0, 'typical': 1.0, 'thorough': 1.0, 'good': 2.0, 'eating': 1.0, 'securing': 1.0, 'their': 1.0, 'clothes': 1.0, 'of': 8.0, 'even': 2.0, 'old': 1.0, 'covered': 1.0, 'every': 1.0, 'if': 1.0, 'meal': 1.0, 'wipe': 1.0, 'needed': 1.0, 'would': 2.0, 'medium': 1.0, 'am': 1.0, 'provide': 1.0, 'biggest': 1.0, 'self': 1.0, 'coverage': 1.0, 'although': 1.0, 'come': 1.0, 'open': 1.0, '18': 1.0, 'over': 1.0, 've': 4.0, 'been': 1.0, 'with': 4.0, 'using': 1.0, 'these': 2.0, 'clothespin': 1.0, 'same': 1.0, 'm': 1.0, 's': 3.0, 'meals': 1.0, 'day': 2.0, 'haven': 1.0, 'sleaves': 1.0, 'sleeves': 2.0, 'become': 1.0, 'quickly': 1.0, 'feel': 1.0, 'openings': 1.0, 'sizes': 2.0, 'cleaning': 1.0, 'through': 1.0, 'into': 1.0, 'designed': 1.0, 'have': 4.0, 'load': 1.0, 'size': 1.0, 'becomes': 1.0, 'solved': 1.0, 'now': 2.0, 'problem': 1.0, 'though': 1.0, 'after': 1.0, 'by': 1.0, 'annoying': 1.0, 'do': 1.0, 'understand': 1.0, 'wide': 1.0, 'range': 1.0, 'similar': 1.0, 'chose': 1.0, 'perhaps': 1.0, 'rotation': 1.0, 'it': 6.0, 'be': 1.0, 'bought': 1.0, 'better': 1.0, 'large': 1.0, 'lightweight': 1.0, 'choose': 1.0, 'dry': 1.0, 'adorable': 1.0}
Word element => {'great': 1.0, 'overall': 1.0, 'few': 1.0, 'in': 1.0, 'go': 1.0, 'ready': 1.0, 'dry': 1.0, 'after': 1.0, 'hand': 1.0, 'can': 1.0, 'currently': 1.0, 'between': 1.0, 'hours': 1.0, 'times': 1.0, 'but': 1.0, 'shirts': 1.0, 'onto': 1.0, 'chin': 1.0, 'bombs': 1.0, 'evidenced': 1.0, 'by': 1.0, 'meal': 3.0, 'capture': 1.0, 'wonders': 1.0, 'bib': 1.0, 'at': 1.0, 'on': 2.0, 'make': 1.0, 'done': 1.0, 'sauce': 1.0, 'bits': 1.0, 'and': 5.0, 'pattern': 1.0, 'sleeved': 1.0, 'drying': 1.0, 'as': 2.0, 'all': 1.0, 'to': 4.0, 'mouth': 1.0, 'that': 1.0, 'because': 1.0, 'wash': 1.0, 'her': 5.0, 'dribble': 1.0, 'absorbent': 1.0, 'way': 2.0, 's': 4.0, 'tomato': 1.0, 'a': 6.0, 'require': 1.0, 't': 2.0, 'it': 7.0, 'food': 3.0, 'particularly': 1.0, 'doesn': 2.0, 'clothes': 2.0, 'was': 1.0, 'she': 3.0, 'determined': 1.0, 'has': 2.0, 'recently': 1.0, 'where': 1.0, 'pristine': 1.0, 'for': 1.0, 'dried': 1.0, 'daughter': 1.0, 'line': 1.0, 'phase': 1.0, 'product': 1.0, 'unsoiled': 1.0, 'afterwards': 1.0, 'herself': 2.0, 'my': 1.0, 'often': 1.0, 'longer': 1.0, 'of': 2.0, 'the': 8.0, 'collect': 1.0, 'when': 1.0, 'bumpkins': 1.0, 'with': 2.0, 'pink': 1.0, 'meals': 1.0, 'wiping': 1.0, 'viscous': 1.0, 'rains': 1.0, 'are': 1.0, 'almost': 1.0, 'entirely': 1.0, 'i': 3.0, 'spoon': 1.0, 'spend': 1.0, 'uses': 1.0, 'time': 2.0, 'stains': 1.0, 'obsessively': 1.0, 'less': 2.0, 'up': 1.0, 'spills': 1.0, 'throughout': 1.0, 'like': 1.0, 'supernova': 1.0, 'hit': 1.0, 'feed': 1.0, 'even': 1.0, 'towards': 1.0, 'each': 1.0, 'end': 1.0, 'covered': 1.0, 'advertise': 1.0, 'into': 1.0, 'non': 1.0, 'probably': 1.0, 'condition': 1.0, 'would': 2.0, 'be': 2.0, 'perfect': 1.0, 'if': 1.0, 'there': 1.0, 'neck': 1.0, 'quite': 1.0, 'fluids': 1.0, 'will': 1.0, 'down': 1.0}
Word element => {'recommend': 1.0, 'i': 1.0, 'quite': 1.0, 'size': 1.0, 'anywhere': 1.0, 'eat': 1.0, 'with': 1.0, 'come': 1.0, 'dry': 1.0, 'hand': 1.0, 'last': 1.0, 'good': 1.0, 'different': 1.0, 'of': 1.0, 'in': 1.0, 'prints': 1.0, 'down': 1.0, 'straight': 1.0, 'options': 1.0, 'ones': 2.0, 'although': 1.0, 'droppings': 1.0, 'when': 1.0, 'easily': 1.0, 'collect': 1.0, 'yet': 1.0, 'will': 1.0, 'item': 1.0, 'purees': 1.0, 'are': 1.0, 'foods': 1.0, 'full': 1.0, 'wrists': 2.0, 'and': 3.0, 'only': 1.0, 'do': 1.0, 'highly': 1.0, 'bibs': 1.0, 'always': 1.0, 'wash': 2.0, 'up': 2.0, 'baby': 2.0, 'these': 3.0, 'stretchy': 1.0, 'the': 2.0, 'that': 3.0, 'have': 3.0, 'must': 1.0, 'from': 1.0, 'cute': 1.0, 'fed': 1.0, 'solids': 1.0, 'himself': 1.0, 'no': 1.0, 'our': 1.0, 'to': 2.0, 'has': 1.0, 'us': 1.0, 'eating': 1.0, 'out': 2.0, 'sleeves': 1.0, 'food': 1.0, 'gather': 1.0, 'three': 1.0, 'keep': 1.0, 'go': 1.0, 'a': 2.0, 'we': 4.0, 'messier': 1.0, 'weaning': 1.0, 'going': 1.0, 'awhile': 1.0, 'son': 1.0, 'still': 1.0, 'for': 1.0, 'fit': 1.0, 'hang': 1.0, 'chubby': 1.0, 'variety': 1.0, 'just': 2.0, 'led': 2.0, 'fine': 1.0, 'pockets': 1.0}
Word element => {'messy': 1.0, 'both': 1.0, 'version': 1.0, 'sleeveless': 1.0, 'in': 1.0, 'same': 1.0, 'exact': 1.0, 'must': 1.0, 'have': 2.0, 'washable': 1.0, 'long': 1.0, 'wide': 1.0, 'is': 3.0, 'be': 1.0, 'and': 2.0, 'too': 1.0, 'not': 1.0, 'got': 1.0, 'because': 1.0, 'picking': 1.0, 'well': 2.0, 'went': 1.0, 'babies': 1.0, 'that': 1.0, 'loves': 1.0, 'to': 4.0, 'sleeves': 2.0, 'paint': 1.0, 'love': 3.0, 'for': 2.0, 'uncomfortable': 1.0, 'one': 1.0, 'daughter': 1.0, 'herself': 1.0, 'on': 3.0, 'this': 3.0, 'she': 1.0, 'it': 3.0, 'a': 2.0, 'we': 2.0, 'finally': 1.0, 'them': 1.0, 'clothes': 1.0, 'machine': 1.0, 'always': 1.0, 'of': 1.0, 'looking': 1.0, 'before': 1.0, 'works': 1.0, 'i': 2.0, 'lots': 1.0, 'reviews': 1.0, 'her': 4.0, 'different': 1.0, 'bibs': 1.0, 'finger': 1.0, 'great': 1.0, 'the': 4.0, 'my': 1.0, 'tight': 2.0, 'fits': 2.0, 'out': 1.0, 'read': 1.0, 'very': 1.0, 'with': 2.0, 'elastic': 1.0, 'food': 4.0, 'but': 1.0, 'cover': 1.0, 'enough': 3.0, 'who': 1.0, 'bib': 3.0, 'keep': 1.0}
Word element => {'time': 1.0, 'every': 1.0, 'floor': 1.0, 'on': 1.0, 'clothes': 1.0, 'worry': 1.0, 'a': 1.0, 'don': 1.0, 'about': 1.0, 'i': 2.0, 'it': 2.0, 'idea': 1.0, 'is': 1.0, 'mess': 1.0, 't': 2.0, 'great': 1.0, 'the': 3.0, 'more': 1.0, 'each': 1.0, 'still': 1.0, 'wish': 1.0, 'washing': 1.0, 'caught': 1.0, 'after': 1.0, 'food': 1.0, 'but': 1.0, 'meal': 1.0, 'didn': 1.0}
Word element => {'bunch': 1.0, 'priced': 1.0, 'lowest': 1.0, 'buying': 1.0, 'received': 1.0, 'once': 1.0, 'gets': 2.0, 'under': 1.0, 'washes': 1.0, 'rather': 1.0, 'makes': 1.0, 'found': 1.0, 'this': 3.0, 'after': 1.0, 'chunks': 1.0, 've': 1.0, 'hardened': 1.0, 'only': 1.0, 'of': 1.0, 'the': 8.0, 'quality': 1.0, 'wipe': 1.0, 'them': 1.0, 'bibs': 1.0, 'really': 1.0, 'to': 3.0, 'least': 1.0, 's': 2.0, 'a': 1.0, 't': 1.0, 'going': 1.0, 'others': 1.0, 'or': 1.0, 'than': 2.0, 'choose': 1.0, 'just': 5.0, 'messed': 1.0, 'in': 3.0, 'm': 1.0, 'times': 1.0, 'you': 1.0, 'when': 1.0, 'around': 2.0, 'is': 2.0, 'at': 2.0, 'prefer': 2.0, 'each': 1.0, 'skimpy': 1.0, 'doesn': 1.0, 'clothes': 1.0, 'was': 2.0, 'seams': 1.0, 'because': 3.0, 'that': 3.0, 'and': 2.0, 'get': 2.0, 'time': 1.0, 'so': 2.0, 'skipping': 1.0, 'eating': 1.0, 'throw': 1.0, 'again': 1.0, 'clean': 2.0, 'products': 1.0, 'child': 1.0, 'anyway': 1.0, 'laundry': 2.0, 'less': 1.0, 'change': 1.0, 'up': 1.0, 'cheaper': 1.0, 'very': 1.0, 'foods': 1.0, 'with': 3.0, 'solid': 1.0, 'collar': 1.0, 'even': 1.0, 'cloth': 1.0, 'manage': 1.0, 'i': 7.0, 'well': 1.0, 'then': 1.0, 'loved': 1.0, 'wiping': 2.0, 'dirty': 1.0, 'nicely': 1.0, 'thrown': 1.0, 'all': 1.0, 'other': 1.0, 'fish': 1.0, 'periodically': 1.0, 'wet': 1.0, 'dr': 1.0, 'never': 1.0, 'none': 1.0, 'thing': 1.0, 'surprise': 1.0, 'but': 1.0, 'print': 2.0, 'bought': 1.0, 'actually': 1.0, 'it': 7.0, 'bumkins': 1.0, 'seuss': 1.0}
Word element => {'definitely': 1.0, 'would': 1.0, 'others': 1.0, 'as': 2.0, 'move': 1.0, 'recommend': 1.0, 'doesn': 1.0, 'heavy': 1.0, 'keeps': 3.0, 'are': 1.0, 'easily': 2.0, 'like': 1.0, 'clothes': 2.0, 'clean': 2.0, 'her': 4.0, 'this': 2.0, 'average': 1.0, 'but': 1.0, 'can': 2.0, 'bought': 1.0, 'on': 1.0, 'is': 1.0, 'material': 1.0, 'really': 1.0, 'old': 1.0, 'i': 4.0, 'tie': 1.0, 'an': 1.0, 'elastic': 1.0, 'awesome': 1.0, 'that': 2.0, 'for': 2.0, 'dry': 3.0, 'too': 1.0, 'play': 1.0, 'and': 4.0, '14': 1.0, 'sized': 1.0, 'neck': 1.0, 'use': 1.0, 'painting': 1.0, 'off': 1.0, 'messy': 1.0, 'goes': 1.0, 'meals': 1.0, 'so': 3.0, 'the': 2.0, 'a': 1.0, 's': 1.0, 'we': 1.0, 't': 2.0, 'cuffs': 1.0, 'playdough': 1.0, 'bib': 2.0, 'at': 1.0, 'it': 8.0, 'month': 1.0, 'she': 1.0, 'water': 1.0, 'pull': 1.0}
Word element => {'baby': 1.0, 'comfortable': 1.0, 'are': 1.0, 'and': 1.0, 'cracked': 1.0, 'get': 1.0, 'young': 1.0, 'your': 1.0, 'or': 2.0, 'i': 1.0, 'so': 1.0, 'am': 1.0, 'never': 1.0, 'totally': 1.0, 'on': 2.0, 'sold': 1.0, 'this': 1.0, 'brand': 1.0, 'they': 1.0, 'dried': 1.0, 'of': 1.0, 'child': 1.0, 'bibs': 1.0}
Word element => {'off': 1.0, 'on': 1.0, 'waterproof': 1.0, 'well': 1.0, 'works': 1.0, 'described': 1.0, 'as': 1.0, 'exactly': 1.0, 'to': 1.0, 'with': 1.0, 'only': 1.0, 'this': 1.0, 'is': 3.0, 'mush': 1.0, 'thing': 1.0, 'i': 1.0, 'great': 1.0, 'replace': 1.0, 'the': 1.0, 'ties': 1.0, 'did': 1.0, 'snaps': 1.0, 'easier': 1.0, 'and': 2.0, 'get': 1.0}
Word element => {'around': 1.0, 'best': 1.0, 'catching': 1.0, 'food': 1.0, 'wearing': 1.0, 'for': 1.0, 'daughter': 1.0, 'seriously': 1.0, 'without': 1.0, 'machine': 1.0, 'pockets': 1.0, 'and': 1.0, 'neck': 1.0, 'sleeve': 1.0, 'her': 1.0, 'long': 1.0, 'out': 1.0, 'washable': 1.0, 'unlike': 1.0, 'tied': 1.0, 'doesn': 1.0, 'velcro': 1.0, 'bibs': 2.0, 'my': 1.0, 'are': 1.0, 'mind': 1.0, 'having': 1.0, 'the': 1.0, 't': 1.0, 'these': 2.0}
Word element => {'me': 1.0, 's': 1.0, 'that': 1.0, 'consuming': 1.0, 'time': 1.0, 'are': 1.0, 'standard': 1.0, 'use': 1.0, 'she': 1.0, 'to': 3.0, 'its': 1.0, 'a': 1.0, 'don': 1.0, 'is': 1.0, 'pain': 1.0, 'on': 2.0, 'older': 1.0, 'it': 3.0, 'says': 1.0, 'can': 1.0, 'everybody': 1.0, 'i': 2.0, 'gets': 1.0, 'when': 1.0, 'painting': 1.0, 'good': 1.0, 'as': 2.0, 'bibs': 1.0, 'like': 1.0, 'just': 3.0, 'but': 2.0, 'put': 2.0, 'these': 1.0, 'the': 1.0, 't': 1.0, 'bumkins': 1.0, 'love': 1.0, 'for': 3.0, 'feeding': 2.0, 'my': 1.0, 'lo': 1.0}
Word element => {'looking': 1.0, 'version': 1.0, 'a': 2.0, 'still': 1.0, 'is': 1.0, 'it': 1.0, 'while': 1.0, 'sleeved': 2.0, 'for': 2.0, 'good': 1.0, 'some': 1.0, 'reason': 1.0, 'was': 3.0, 'short': 2.0, 'under': 1.0, 'the': 1.0, 'that': 1.0, 'i': 2.0, 'impression': 1.0, 'this': 1.0, 'bib': 2.0}
Word element => {'cut': 1.0, 'don': 1.0, 'just': 1.0, 'well': 1.0, 'as': 1.0, 'legs': 1.0, 'regular': 1.0, 'is': 1.0, 'better': 1.0, 'even': 1.0, 'work': 1.0, 'would': 1.0, 'that': 1.0, 'it': 1.0, 'only': 1.0, 'clean': 1.0, 'one': 1.0, 'feed': 1.0, 'was': 1.0, 'to': 2.0, 'i': 4.0, 'think': 1.0, 'loves': 1.0, 'thing': 1.0, 'have': 2.0, 'guy': 1.0, 'himself': 1.0, 'and': 1.0, 'meal': 1.0, 'little': 2.0, 'doing': 1.0, 'every': 1.0, 'my': 1.0, 'laundry': 1.0, 'bought': 1.0, 'two': 1.0, 't': 1.0, 'the': 1.0, 'these': 1.0, 'sleeves': 1.0, 'after': 1.0, 'so': 1.0, 'bibs': 1.0, 'could': 1.0, 'of': 1.0, 'always': 1.0}
Word element => {'food': 1.0, 'product': 1.0, 'great': 1.0, 'oxyclean': 1.0, 'clear': 1.0, 'come': 1.0, 'damage': 1.0, 'collateral': 1.0, 'messy': 1.0, 'for': 2.0, 'saucy': 1.0, 'stains': 1.0, 'lots': 1.0, 'eating': 1.0, 'their': 1.0, 'own': 1.0, 'perfect': 1.0, 'but': 1.0, 'on': 1.0, 'toddlers': 1.0, 'with': 2.0, 'of': 1.0}
Word element => {'many': 1.0, 'different': 1.0, 'years': 1.0, 'for': 1.0, 'patterns': 1.0, 'in': 1.0, 'after': 1.0, 'time': 2.0, 'it': 1.0, 'will': 1.0, 'clean': 1.0, 'three': 1.0, 'got': 1.0, 'covered': 1.0, 'well': 1.0, 'wipes': 1.0, 'ready': 1.0, 'to': 1.0, 'the': 1.0, 'arms': 1.0, 'even': 1.0, 'use': 2.0}
Word element => {'given': 1.0, 'china': 1.0, 'made': 1.0, 'now': 1.0, 'are': 1.0, 'bobs': 1.0, 'bumpkins': 1.0, 'these': 1.0, 'note': 1.0, 'what': 1.0, 'cleaner': 1.0, 'his': 1.0, 'he': 1.0, 'with': 1.0, 'examine': 1.0, 'it': 2.0, 'month': 1.0, 'also': 1.0, 'wash': 1.0, 'in': 2.0, 'well': 1.0, '15': 1.0, 'fits': 1.0, 'my': 1.0, 'have': 1.0, 'small': 1.0, 'sleeves': 1.0, 'frequently': 1.0, 'grow': 1.0, 'to': 4.0, 'old': 1.0, 'otherwise': 1.0, 'i': 2.0, 'clothes': 1.0, 'night': 1.0, 'stars': 1.0, 'love': 1.0, 'son': 1.0, 'day': 1.0, '5': 1.0, 'stops': 1.0, 'room': 1.0, 'would': 1.0, 'each': 1.0, 'dr': 1.0, 'on': 2.0, 'is': 1.0, 'doing': 1.0, 'use': 1.0, 'the': 2.0, 'suess': 1.0, 'hand': 1.0, 'keeps': 1.0, 'sink': 1.0, 'pattern': 1.0, 'and': 1.0, 'hang': 1.0, 'dry': 1.0, 'next': 1.0, 'drys': 1.0, 'quickly': 1.0}
Word element => {'on': 1.0, 'cereal': 1.0, 'piece': 1.0, 'occasional': 1.0, 'pasta': 1.0, 'had': 1.0, 'not': 1.0, 'liquid': 1.0, 'catch': 1.0, 'falling': 1.0, 'lap': 1.0, 'effective': 1.0, 'particles': 1.0, 'less': 1.0, 'makes': 1.0, 'essentially': 1.0, 'okay': 1.0, 'didn': 1.0, 'that': 1.0, 'fall': 1.0, 'is': 1.0, 'complaint': 1.0, 'much': 1.0, 'only': 1.0, 'big': 1.0, 's': 1.0, 't': 1.0, 'a': 1.0, 'wish': 1.0, 'kids': 1.0, 'so': 1.0, 'but': 1.0, 'food': 1.0, 'because': 1.0, 'clothing': 1.0, 'and': 1.0, 'for': 1.0, 'love': 3.0, 'literally': 1.0, 'pocket': 1.0, 'seal': 1.0, 'they': 4.0, 'these': 2.0, 'the': 5.0, 'd': 1.0, '34': 2.0, 'm': 1.0, 'arms': 2.0, 'fan': 1.0, 'saved': 1.0, 'i': 4.0, '4': 1.0, 'haring': 1.0, 'have': 2.0, 'bibs': 1.0, 'easily': 1.0, 'often': 1.0, 'my': 3.0, 'own': 1.0, '5': 1.0, 'rather': 1.0, 'of': 3.0, 'son': 1.0, 'middle': 1.0, 'fold': 1.0, 'up': 1.0, 'their': 2.0, 'in': 2.0, 'keith': 1.0, 'also': 1.0, 'or': 3.0, 're': 2.0, 'off': 1.0, 'things': 1.0, 'it': 2.0, 'fab': 1.0, 'splatter': 1.0, 'are': 2.0, 'easy': 1.0, 'as': 1.0, 'to': 3.0, 'meatball': 1.0, 'them': 1.0, 'wipe': 1.0, 'ready': 1.0, 'use': 1.0, 'stick': 1.0, 'designs': 1.0, 'sons': 1.0, 'since': 1.0}
Word element => {'easy': 1.0, 'off': 1.0, 'lightweight': 1.0, 'food': 1.0, 'catching': 1.0, 'for': 1.0, 'it': 1.0, 'great': 1.0, 'covers': 1.0, 'the': 1.0, 'my': 1.0, 'shoulders': 1.0, 'and': 3.0, 'arms': 1.0, 'cute': 1.0, 'child': 1.0, 's': 2.0, 'on': 1.0, 'is': 1.0, 'waterproof': 1.0, 'pocket': 1.0}
Word element => {'little': 1.0, 'the': 1.0, 'dingy': 1.0, 'designscons': 1.0, 'fun': 1.0, 'dry': 1.0, 'air': 1.0, 'then': 1.0, 'water': 1.0, 'soap': 1.0, 'eat': 1.0, 'border': 1.0, 'kids': 1.0, 'our': 1.0, 'we': 2.0, 'in': 1.0, 'get': 1.0, 'edges': 1.0, 'and': 1.0, 'perfectly': 1.0, 'previously': 1.0, 'light': 1.0, 'clothing': 1.0, 'pros': 1.0, 'is': 2.0, 'better': 1.0, 'alternative': 1.0, 'naked': 1.0, 'a': 3.0, 'this': 1.0, 'brown': 1.0, 'warm': 1.0, 'much': 1.0, 'easy': 1.0, 'white': 1.0, 'covers': 1.0, 'them': 1.0, 'clean': 1.0, 'now': 1.0, 'had': 1.0, 'to': 1.0, 'soak': 1.0}
Word element => {'buying': 1.0, 'be': 1.0, 'i': 1.0, 'baby': 1.0, 'or': 1.0, 'hand': 1.0, 'need': 1.0, 'food': 1.0, 'even': 1.0, 'before': 1.0, 'he': 2.0, 'this': 2.0, 'off': 1.0, 'mouth': 1.0, 'tear': 1.0, 'no': 1.0, 'several': 1.0, 'same': 1.0, 'loves': 1.0, 'that': 2.0, 'son': 1.0, 'very': 1.0, 'to': 4.0, 'as': 2.0, 'more': 1.0, 'comes': 1.0, 'is': 3.0, 'his': 1.0, 'awesome': 1.0, 'puts': 1.0, 'my': 1.0, 'tried': 1.0, 'cloth': 1.0, 'we': 1.0, 'have': 1.0, 'will': 1.0, 'seems': 1.0, 'in': 2.0, 'wash': 2.0, 'bumkins': 1.0, 'well': 1.0, 'bib': 2.0, 'since': 1.0, 'the': 4.0, 'diaper': 1.0, 'comfortable': 1.0, 'great': 1.0, 'bibs': 1.0, 'material': 1.0, 'it': 3.0, 'covers': 1.0, 'out': 1.0, 'make': 1.0, 'easy': 1.0, 'toss': 1.0, 'and': 1.0, 'looking': 1.0}
Word element => {'price': 1.0, 'worth': 1.0, 'times': 1.0, 'clean': 1.0, 'clothes': 1.0, 'pretty': 1.0, 'of': 1.0, 'messes': 1.0, 'keeping': 2.0, 'time': 1.0, 'meal': 2.0, 'taking': 1.0, 'she': 1.0, 'works': 1.0, 'her': 3.0, 'what': 1.0, 'great': 1.0, 'the': 5.0, 'just': 1.0, 'started': 1.0, 'over': 1.0, 'toddler': 1.0, 'off': 3.0, 'my': 1.0, 'pulling': 1.0, 'frustrated': 1.0, 'longer': 1.0, 'is': 2.0, 'was': 2.0, 'no': 1.0, 'at': 3.0, 'i': 3.0, 'and': 3.0, 'bib': 1.0, 'head': 1.0, 'snap': 1.0, 'bibs': 2.0, 'looking': 2.0, 'after': 1.0, 'food': 1.0, 'so': 1.0, 'for': 1.0, 'alternatives': 1.0, 'it': 1.0, 'with': 1.0, 'this': 1.0, 'sleeved': 1.0}
Word element => {'care': 1.0, 'at': 1.0, 'another': 1.0, 'use': 1.0, 'purchased': 1.0, 'have': 1.0, 'catch': 1.0, 'of': 1.0, 'including': 1.0, 'great': 1.0, 'the': 1.0, 'everything': 2.0, 'and': 1.0, 'fact': 1.0, 'quality': 1.0, 'lap': 1.0, 'wash': 1.0, 'escape': 1.0, 'to': 2.0, 'ties': 1.0, 'easy': 1.0, 'it': 2.0, 'for': 1.0, 'one': 1.0, 'love': 1.0, 'excellent': 1.0, 'her': 1.0, 'part': 1.0, 'prevents': 1.0, 'day': 1.0, 'from': 1.0, 'that': 3.0, 'our': 1.0, 'falls': 1.0, 'little': 1.0, 'covers': 1.0, 'releasing': 1.0, 'herself': 1.0, 'buy': 1.0, 'artist': 1.0, 'i': 2.0}
Word element => {'in': 1.0, 'put': 1.0, 'only': 1.0, 'the': 1.0, 'worth': 1.0, 'but': 1.0, 'pricey': 1.0, 'seem': 1.0, 'machine': 1.0, 'wet': 1.0, 'got': 1.0, 'as': 1.0, 'to': 1.0, 'any': 1.0, 'little': 1.0, 'awful': 1.0, 'would': 1.0, 'other': 1.0, 'have': 2.0, 'odor': 1.0, 'smell': 1.0, 'an': 1.0, 'because': 1.0, 'saves': 1.0, 'eating': 1.0, 'this': 2.0, 'perfect': 1.0, '13': 1.0, 'they': 5.0, 'more': 1.0, 'is': 2.0, 'many': 1.0, 'old': 1.0, 'it': 4.0, 'month': 1.0, 'these': 1.0, 'a': 1.0, 't': 1.0, 'amazing': 1.0, 'bibs': 3.0, 'drys': 1.0, 'easily': 1.0, 'them': 1.0, 'gifts': 1.0, 'are': 2.0, 'may': 1.0, 'my': 1.0, 'i': 5.0, 'two': 1.0, 'of': 2.0, 'year': 1.0, 'from': 1.0, 'great': 1.0, 'big': 1.0, 'daughter': 1.0, 'bought': 2.0, 'one': 1.0, 'for': 2.0, 'love': 1.0, 'give': 1.0, 'me': 1.0, 'too': 1.0, 'similar': 1.0, 'and': 1.0, 'get': 2.0, 'time': 2.0, 'so': 2.0, 'sleeves': 1.0, 'stained': 1.0, 'her': 1.0, 'wipes': 1.0, 'off': 1.0, 'extremely': 1.0, 'fast': 1.0, 'several': 1.0, 'thing': 1.0, 'totally': 1.0, 'ruined': 1.0, 'that': 2.0, 'wash': 1.0, 'don': 1.0}
Word element => {'in': 1.0, 'herself': 1.0, 'successful': 1.0, 'near': 1.0, 'are': 1.0, 'messy': 1.0, 'meal': 1.0, 'by': 1.0, 'it': 2.0, 'can': 1.0, 'every': 1.0, 'use': 1.0, 'aeverythign': 1.0, 'and': 1.0, 'get': 1.0, 'free': 1.0, 'we': 2.0, 'finally': 1.0, 'clothing': 1.0, 'our': 1.0, 'lo': 1.0, 'stain': 1.0, 'so': 1.0, 'eats': 1.0}
Word element => {'known': 1.0, 'have': 1.0, 'would': 1.0, 'never': 1.0, 'and': 1.0, 'has': 1.0, 'lead': 2.0, 'i': 3.0, 'while': 1.0, 'today': 1.0, 'after': 1.0, 'very': 1.0, 'as': 1.0, 'year': 1.0, 'a': 1.0, 'attention': 1.0, 'used': 1.0, 'in': 2.0, 'apart': 1.0, 'bought': 1.0, 'fell': 1.0, 'problem': 1.0, 'great': 1.0, 'bib': 1.0, 'safe': 1.0, 'no': 1.0, 'this': 1.0, 'misleading': 1.0, 'it': 7.0, 'with': 1.0, 'until': 1.0, 'came': 1.0, 'was': 1.0, 'had': 2.0, 'to': 1.0, 'my': 1.0, 'says': 1.0}
Word element => {'infant': 1.0, 'have': 1.0, 'solids': 1.0, 'on': 1.0, 'squirmy': 1.0, 'his': 1.0, 'and': 1.0, 'get': 1.0, 'can': 1.0, 'midsection': 1.0, 't': 1.0, 'great': 1.0, 'the': 1.0, 'that': 1.0, 'you': 1.0, 'child': 1.0, 'i': 1.0, 'or': 1.0, 'when': 1.0, 'food': 1.0, 'sleeves': 1.0, 'a': 2.0, 'really': 1.0, 'idea': 1.0, 'love': 1.0, 'for': 1.0, 'switch': 1.0, 'to': 1.0}
Word element => {'awhile': 1.0, 'old': 1.0, 'i': 1.0, '1': 1.0, '34': 4.0, 'that': 1.0, 'so': 2.0, 'and': 3.0, 'eater': 1.0, 'cute': 1.0, 'definitely': 1.0, 'say': 1.0, 'practical': 1.0, 'rinse': 1.0, 'construction': 1.0, 'signs': 1.0, 'him': 1.0, 'it': 3.0, 'with': 1.0, 'roiad': 1.0, 'fit': 1.0, 'love': 1.0, 'for': 1.0, 'my': 1.0, 'the': 1.0, 'year': 1.0, 'messy': 1.0, 'keeps': 1.0, 'design': 1.0, 'really': 2.0, 'iot': 1.0, 'easy': 1.0, 'needed': 1.0, 'to': 2.0, 'wipe': 1.0, 'yet': 1.0, 'or': 1.0, 'off': 1.0, 'clean': 1.0, 'good': 1.0, 'think': 1.0, 'haven': 1.0, 'wash': 1.0, 't': 1.0, 's': 1.0, 'a': 1.0, 'size': 1.0, 'will': 1.0}
Word element => {'purees': 1.0, 'everyone': 1.0, 'recommend': 1.0, 'gone': 1.0, 'definitely': 1.0, 'potato': 1.0, 'sweet': 1.0, 'avocado': 1.0, 'stains': 1.0, 'new': 1.0, 'brand': 1.0, 'out': 1.0, 'there': 1.0, 'through': 1.0, 'when': 3.0, 'started': 3.0, 'another': 1.0, 'underneath': 1.0, 'daughter': 1.0, 'got': 1.0, 'pricey': 1.0, 'on': 2.0, 'much': 1.0, 'do': 1.0, 'put': 1.0, 'clothes': 3.0, 'was': 1.0, 'using': 1.0, 'hold': 1.0, 'love': 1.0, 'for': 2.0, 'where': 1.0, 'one': 3.0, 'bought': 1.0, 'old': 1.0, 'i': 6.0, 'bibs': 1.0, 'our': 1.0, 'how': 2.0, 'bib': 5.0, '6': 2.0, 'which': 1.0, 'side': 1.0, 'at': 1.0, 'is': 6.0, 'more': 1.0, 'that': 2.0, 'fall': 1.0, '2': 2.0, 'or': 1.0, 'food': 1.0, 'so': 2.0, 'can': 2.0, 'comes': 2.0, 'these': 1.0, 'likes': 1.0, 'has': 1.0, 'have': 1.0, 'a': 6.0, 'weaning': 1.0, 'this': 4.0, 'it': 10.0, 'baby': 1.0, 'she': 1.0, 'would': 3.0, 'the': 7.0, 'doing': 2.0, 'of': 1.0, 'like': 1.0, 'rather': 1.0, 'laundry': 1.0, 'up': 2.0, 'since': 1.0, '1': 2.0, 'big': 1.0, 'and': 4.0, 'see': 1.0, 'little': 1.0, 'solids': 1.0, 'after': 1.0, 'easy': 1.0, 'chore': 1.0, 'get': 1.0, 'clean': 4.0, 'wash': 1.0, 'her': 5.0, 'if': 1.0, 'stay': 2.0, 'those': 1.0, 'pocket': 1.0, 'in': 3.0, 'just': 3.0, 'mns': 2.0, 'wipe': 1.0, 'meal': 1.0, 'even': 2.0, 'cloth': 1.0, 'parents': 1.0, 'first': 2.0, 'are': 3.0, 'from': 1.0, 'lead': 1.0, 'with': 2.0, 'undress': 1.0, 'fine': 1.0, 'we': 7.0, 'then': 3.0, 'to': 4.0, 'became': 1.0, 'all': 1.0, 'an': 1.0, 'enjoyment': 1.0, 'now': 1.0, 'eat': 1.0, 'you': 1.0, 'rag': 1.0, 'day': 1.0}
Word element => {'has': 1.0, 'company': 1.0, 'or': 1.0, 'seller': 1.0, 'amazon': 1.0, 'back': 1.0, 'don': 1.0, 'us': 2.0, 'fun': 1.0, 'nice': 1.0, 'design': 1.0, 'sorry': 1.0, 'out': 1.0, 'own': 1.0, 'pattern': 1.0, 'and': 3.0, 'like': 1.0, 'table': 1.0, 'used': 2.0, 'is': 4.0, 'lead': 6.0, 'among': 1.0, 'blame': 1.0, 'want': 1.0, 'bib': 1.0, 'at': 1.0, 'since': 1.0, 'it': 2.0, 'this': 1.0, 'with': 3.0, 'not': 3.0, 'because': 1.0, 'okay': 1.0, 'just': 1.0, 'free': 1.0, 'was': 1.0, 'go': 1.0, 't': 1.0, 'a': 4.0, 'we': 3.0, 'making': 1.0, 'other': 1.0, 'ordered': 1.0, 'for': 1.0, 'product': 5.0, 'that': 2.0, 'case': 2.0, 'advertised': 1.0, 'but': 4.0, 'material': 1.0, 'tent': 1.0, 'bibs': 1.0, 'sending': 1.0, 'bumkins': 2.0, 'your': 1.0, 'on': 1.0, 'states': 1.0, 'no': 2.0, 'consumers': 1.0, 'safe': 1.0, 'products': 1.0, 'some': 1.0, 'the': 9.0, 'possibly': 1.0, 'are': 2.0, 'industry': 1.0, 'do': 1.0, 'dinner': 2.0, 'standards': 1.0, 'to': 3.0, 'our': 2.0, 'as': 1.0, 'all': 1.0, 'actual': 1.0, 'any': 1.0, 'returning': 1.0, 'low': 1.0, 'enough': 1.0, 'bit': 1.0, 'packaging': 1.0, 'of': 2.0, 'in': 3.0}
Word element => {'5': 1.0, 'over': 1.0, 'two': 1.0, 'kids': 1.0, 'by': 1.0, 'used': 1.0, 'bib': 2.0, 'clean': 1.0, 'years': 1.0, 'baby': 1.0, 'of': 1.0, 'chin': 1.0, 'plus': 1.0, 'keeps': 1.0, 'a': 1.0, 'really': 1.0, 'is': 1.0, 'product': 1.0, 'to': 1.0, 'good': 1.0, 'loves': 1.0, 'wrist': 1.0, 'the': 2.0, 'sound': 1.0, 'he': 1.0, 'this': 2.0, 'it': 1.0, 'from': 1.0, 'test': 1.0, 'time': 1.0, 'makes': 1.0, 'stands': 1.0}
Word element => {'in': 1.0, 'doesn': 1.0, 'a': 2.0, 'child': 1.0, 'trapping': 1.0, 'of': 1.0, '34': 2.0, 'bib': 2.0, 'very': 1.0, 'as': 2.0, 'and': 1.0, 'happy': 1.0, 'my': 1.0, 'with': 1.0, 'he': 1.0, 'it': 2.0, 'the': 2.0, 'great': 1.0, 't': 1.0, 'saves': 1.0, 'clothes': 1.0, 'seem': 1.0, 'performance': 1.0, 'much': 1.0, 'mind': 1.0, 'to': 1.0, 'normal': 1.0}
Word element => {'is': 1.0, 'bag': 1.0, 'diaper': 1.0, 'lingering': 1.0, 'out': 1.0, 'folds': 1.0, 'get': 1.0, 'machine': 1.0, 'pop': 1.0, 'for': 2.0, 'love': 1.0, 'so': 1.0, 'sleeves': 1.0, 'this': 2.0, 'washing': 1.0, 'he': 1.0, 'it': 3.0, 'compactly': 1.0, 'akin': 1.0, 'us': 1.0, 'eating': 1.0, 'winter': 1.0, 'material': 1.0, 'his': 1.0, 'buzzsaw': 1.0, 'has': 3.0, 'slightly': 1.0, 'thicker': 1.0, 'style': 1.0, 'you': 1.0, 'easily': 1.0, 'when': 1.0, 'washes': 1.0, 'toddler': 1.0, 'can': 1.0, 'but': 1.0, 'bib': 1.0, 'who': 1.0, 'must': 1.0, 'have': 2.0, 'stains': 1.0, 'that': 2.0, 'been': 1.0, 'loves': 1.0, 'nicknamed': 1.0, 'my': 1.0, 'make': 1.0, 'especially': 1.0, 'cousin': 1.0, 'months': 1.0, 'dries': 1.0, 'i': 1.0, 'mess': 1.0, 'the': 5.0, 'long': 1.0, 'necessity': 1.0, 'in': 2.0, 'also': 1.0, 'we': 1.0, 'a': 6.0, 's': 1.0, 'made': 1.0, 'of': 1.0, 'than': 1.0, 'as': 1.0, 'to': 3.0, 'superbibs': 1.0, 'and': 2.0}
Word element => {'themselves': 1.0, 'feeding': 1.0, 'and': 1.0, 'off': 1.0, 'keep': 1.0, 'to': 1.0, 'bib': 1.0, 'arms': 1.0, 'insist': 1.0, 'feature': 1.0, 'on': 2.0, 'is': 2.0, 'elastic': 1.0, 'that': 1.0, 'best': 1.0, 'sleeves': 1.0, 'food': 2.0, 'great': 1.0, 'the': 3.0, 'my': 1.0, 'are': 1.0, 'love': 1.0, 'all': 1.0, 'this': 1.0, 'with': 1.0, 'children': 1.0, 'of': 1.0, 'ruining': 1.0, 'always': 1.0, 'clothes': 1.0}
Word element => {'use': 1.0, 'pretty': 1.0, 'sleeves': 1.0, 'daughter': 1.0, 'my': 1.0, 'struggle': 1.0, 'trouble': 1.0, 'home': 1.0, 'these': 1.0, 'such': 1.0, 'not': 1.0, 'photos': 1.0, 'for': 1.0, 'clothing': 1.0, 'off': 1.0, 'but': 1.0, 'food': 1.0, 'get': 1.0, 'area': 1.0, 'wide': 1.0, 'never': 1.0, 'of': 2.0, 'always': 1.0, 'so': 2.0, 'against': 1.0, 'flat': 1.0, 'basically': 1.0, 'the': 6.0, 'great': 1.0, 'were': 1.0, 'do': 1.0, 'much': 2.0, 'only': 1.0, 'it': 5.0, 'with': 3.0, 'this': 2.0, 'first': 1.0, 'at': 1.0, 'main': 1.0, 'keep': 1.0, 'bib': 4.0, 'issue': 1.0, 'too': 1.0, 'and': 3.0, 'is': 2.0, 'pocket': 1.0, 'hard': 1.0, 'part': 1.0, 'her': 2.0, 'catches': 1.0, 'i': 3.0, 'had': 1.0, 'any': 1.0, 'to': 4.0, 'lays': 1.0, 'was': 2.0, 'put': 2.0, 'on': 4.0, 'over': 1.0, 'then': 1.0, 'vacation': 1.0, 'plastic': 1.0, 'catching': 1.0, 'when': 1.0, 'we': 1.0, 'trying': 1.0, 'that': 1.0, 'stains': 1.0}
Word element => {'tidy': 1.0, 'feels': 1.0, 'always': 1.0, 'an': 1.0, 'it': 1.0, 'with': 1.0, 'buying': 1.0, 'last': 1.0, 'cheaper': 1.0, 'long': 1.0, 't': 1.0, 'bad': 1.0, 'have': 1.0, 'equivalents': 1.0, 'worth': 1.0, 'off': 1.0, 'they': 1.0, 'excellent': 1.0, 'not': 1.0, 'tear': 1.0, 'those': 1.0, 'smell': 1.0, 'material': 1.0, 'll': 1.0, 'clean': 1.0, 'made': 1.0, 'and': 3.0, 'bib': 1.0, 'so': 1.0, 'won': 1.0, 'on': 1.0, 'is': 1.0}
Word element => {'over': 1.0, 'that': 1.0, 'and': 2.0, 'folds': 1.0, 'up': 1.0, 'does': 1.0, 'to': 1.0, 'easy': 1.0, 'but': 1.0, 'fits': 1.0, 'clean': 1.0, 'made': 1.0, 'i': 1.0, 'cheap': 1.0, 'very': 1.0, 'sturdily': 1.0, 'cute': 1.0, 'it': 2.0, 'clothes': 1.0, 'designs': 1.0, 's': 1.0, 'easily': 1.0, 'like': 1.0, 'thin': 1.0, 'compactly': 1.0, 'not': 1.0, 'feel': 1.0}
Word element => {'wear': 1.0, 'to': 1.0, 'old': 1.0, 'half': 1.0, 'cute': 1.0, 'year': 1.0, 'pattern': 1.0, 'my': 1.0, 'the': 1.0, 'i': 3.0, 's': 1.0, 'it': 1.0, 'love': 2.0, 'this': 1.0, 'very': 1.0, 'bib': 1.0, 'bought': 1.0, 'of': 1.0, 'these': 1.0, 'son': 1.0, 'is': 1.0, '2': 1.0, 'waterproof': 1.0}
Word element => {'meantime': 1.0, 'shirt': 1.0, 'for': 1.0, 'out': 1.0, 'look': 1.0, 'kind': 1.0, 'get': 1.0, 'continue': 1.0, 'try': 1.0, 'rubber': 1.0, 'from': 1.0, 'strap': 1.0, 'short': 1.0, 'chair': 1.0, 'attach': 1.0, 'before': 1.0, 'edge': 1.0, 'down': 1.0, 'ended': 1.0, 'tucking': 1.0, 'closer': 1.0, 'tried': 1.0, 'of': 3.0, 'view': 1.0, 'blocks': 1.0, 'will': 1.0, 'also': 1.0, 'way': 1.0, 'fashioning': 1.0, 'mouth': 1.0, 'off': 1.0, '2': 1.0, 'but': 2.0, 'food': 1.0, 'two': 1.0, 'i': 5.0, '7': 1.0, 'size': 1.0, 'tray': 3.0, 'months': 1.0, 'clips': 2.0, 'about': 1.0, 'he': 2.0, 'this': 2.0, 'it': 9.0, 'percentile': 1.0, 'since': 1.0, 'bib': 3.0, 'body': 1.0, 'using': 1.0, 'was': 1.0, 'to': 8.0, 've': 2.0, 'bands': 1.0, 'in': 4.0, 'been': 1.0, 'under': 1.0, 'gets': 1.0, '1yo': 1.0, 'son': 1.0, 'the': 10.0, 'a': 2.0, 's': 1.0, 'we': 1.0, 'above': 1.0, 'just': 1.0, 'another': 1.0, 'tight': 1.0, 'my': 1.0, 'fits': 1.0, 'weird': 1.0, 'his': 4.0, 'hassle': 1.0, 'use': 2.0, 'have': 1.0, 'small': 1.0, 'so': 1.0, 'binder': 2.0, 'up': 2.0, 'on': 1.0, 'put': 1.0, 'make': 1.0, 'is': 2.0, 'around': 1.0, '95th': 1.0, 'neck': 1.0, 'type': 1.0, 'old': 1.0, 'creeps': 1.0, 'and': 3.0, 'too': 2.0, 'when': 1.0, 'be': 1.0, 'trying': 1.0, 'take': 1.0}
Word element => {'thank': 1.0, 'almost': 1.0, 'you': 1.0, 'that': 1.0, 'one': 2.0, 'save': 1.0, 'it': 1.0, 'clean': 1.0, 'price': 1.0, 'time': 1.0, 'is': 3.0, 'my': 1.0, 'the': 1.0, 'to': 1.0, 'up': 1.0, 'better': 1.0, '30': 1.0, 'another': 1.0, 'easy': 1.0, 'than': 1.0}
Word element => {'baby': 1.0, 'projects': 1.0, 'to': 1.0, 'wrists': 1.0, 'are': 1.0, 'things': 1.0, 'fun': 1.0, 'works': 1.0, 'well': 4.0, 'drawstring': 1.0, 'bright': 1.0, 'used': 1.0, 'sleeves': 1.0, 'item': 1.0, 'will': 1.0, 'placed': 1.0, 'this': 2.0, 'is': 3.0, 'many': 1.0, 'laundry': 1.0, 'fantastic': 2.0, 'that': 1.0, 'sized': 1.0, 'and': 5.0, 'loads': 1.0, 'save': 1.0, 'at': 1.0, 'bib': 1.0, 'keep': 1.0, 'in': 1.0, 'the': 5.0, 'place': 1.0, 'pocket': 1.0, 'long': 1.0, 'collects': 1.0, 'of': 1.0, 'messes': 1.0, 'elastic': 1.0, 'o': 1.0, 'very': 1.0, 'meals': 1.0, 'made': 1.0, 'it': 1.0, 'colorful': 1.0, 'now': 1.0, 'lots': 1.0, 'design': 1.0, 'art': 1.0, 'for': 1.0, 'a': 1.0, 'we': 1.0, 'transitioned': 1.0, 'have': 1.0}
Word element => {'solids': 1.0, 'messiness': 1.0, 'all': 1.0, 'from': 1.0, 'clothes': 1.0, 's': 1.0, 'lo': 1.0, 'protect': 1.0, 'i': 1.0, 'and': 1.0, 'like': 1.0, 'these': 1.0, 'they': 3.0, 'do': 2.0, 'my': 1.0, 'are': 2.0, 'the': 2.0, 'great': 1.0, 'intended': 1.0, 'of': 1.0, 'job': 1.0, 'to': 1.0}
Word element => {'small': 1.0, 'worth': 1.0, 'very': 1.0, 'usable': 1.0, 'away': 1.0, 'pocket': 1.0, 'true': 1.0, 'genius': 1.0, 'a': 3.0, 'has': 2.0, 'size': 1.0, 'my': 1.0, 'eat': 1.0, 'solids': 1.0, 'after': 1.0, 'this': 2.0, 'it': 2.0, 'much': 1.0, 'only': 1.0, 'and': 3.0, 'getting': 1.0, 'few': 1.0, 'is': 5.0, 'still': 2.0, 'son': 1.0, 'from': 2.0, 'ordered': 1.0, 'bib': 2.0, 'who': 1.0, 'was': 1.0, 'to': 2.0, 'learning': 1.0, 'stains': 1.0, 'that': 3.0, 'investment': 1.0, 'big': 1.0, 'countless': 1.0, 'spills': 1.0, 'handy': 1.0, 'noticed': 1.0, 'i': 2.0, 'catches': 1.0, 'saved': 1.0, 'not': 2.0, 'because': 1.0, 'seam': 1.0, 'outfits': 1.0, '5': 1.0, 'deal': 1.0, 'the': 4.0, 'reason': 1.0, 'for': 1.0, 'stars': 1.0, 'months': 1.0, 'of': 1.0, 'use': 1.0, 'breaking': 1.0}
Word element => {'feeder': 1.0, 'perfect': 1.0, 'beyond': 1.0, 'food': 1.0, 'no': 1.0, 'so': 1.0, 'wrist': 1.0, 'little': 1.0, 'have': 1.0, 'they': 1.0, 'penny': 1.0, 'feeding': 1.0, 'and': 3.0, 'ish': 1.0, 'them': 2.0, 'got': 1.0, 'use': 2.0, 'first': 1.0, 'elastic': 1.0, 'with': 1.0, 'long': 2.0, 'although': 1.0, 'around': 1.0, 'is': 2.0, 'waterproof': 2.0, 'especially': 1.0, 'll': 1.0, 'flexible': 1.0, 'a': 4.0, 'dish': 1.0, 'hands': 1.0, 'the': 7.0, 'sleeve': 2.0, 'are': 1.0, 'it': 3.0, 'truly': 1.0, 'self': 1.0, 'bumkins': 1.0, 'nylon': 1.0, 'comfortable': 1.0, 'for': 2.0, 'every': 1.0, 'material': 1.0, 'bibs': 2.0, 'gets': 1.0, 'doubted': 1.0, 'protect': 1.0, 'best': 1.0, 'when': 1.0, 'i': 4.0, 'fabric': 1.0, 'after': 1.0, 'sponge': 1.0, 'each': 1.0, 'worth': 1.0, 'or': 1.0, 'quickly': 1.0, 'some': 1.0, 'their': 1.0, 'hours': 1.0, 'like': 1.0, 'hand': 1.0, 'in': 1.0, 'soap': 1.0, 'hang': 1.0, 'shirts': 1.0, 'wash': 1.0, 'up': 1.0, 'dry': 1.0, 'next': 1.0, 'just': 1.0, 'few': 1.0, 'ready': 1.0}
Word element => {'meals': 1.0, 's': 1.0, 'well': 1.0, 'son': 1.0, 'clothing': 1.0, 'my': 1.0, 'the': 1.0, 'protects': 1.0, 'during': 1.0, 'very': 1.0, 'bib': 1.0, 'every': 1.0, 'we': 1.0, 'or': 2.0, 'great': 1.0, 'it': 1.0, 'use': 1.0, 'day': 1.0, 'easy': 1.0, 'to': 1.0, 'artwork': 1.0, 'wash': 1.0, 'wipe': 1.0}
Word element => {'stains': 1.0, 'lessen': 1.0, 'goes': 1.0, 'everywhere': 1.0, 'food': 1.0, 'self': 1.0, 'to': 2.0, 'laundry': 1.0, 'covers': 1.0, 'helps': 1.0, 'the': 6.0, 'are': 1.0, 'and': 2.0, 'in': 1.0, 'most': 1.0, 'of': 2.0, 'feed': 1.0, 'body': 1.0, 'toddlers': 1.0, 'arms': 1.0, 'when': 1.0, 'loads': 1.0, 'learning': 1.0}
Word element => {'though': 1.0, 'sure': 1.0, 'get': 1.0, 'in': 3.0, 'm': 1.0, 'price': 1.0, 'is': 1.0, 'locally': 1.0, 'more': 1.0, '8': 1.0, 'only': 1.0, 'job': 1.0, 'longer': 1.0, 'the': 7.0, 'easier': 1.0, 'cover': 1.0, 'them': 2.0, 'couldn': 1.0, 'as': 1.0, '13m': 1.0, 've': 1.0, 'great': 1.0, 'online': 2.0, 'any': 1.0, 'feel': 1.0, 't': 1.0, 'a': 2.0, 'might': 2.0, 'these': 3.0, 'some': 1.0, 'bought': 1.0, 'bibs': 2.0, 'for': 4.0, 'love': 2.0, 'cake': 1.0, 'off': 1.0, 'b': 1.0, 'tried': 1.0, 'old': 1.0, 'well': 1.0, 'i': 10.0, 'you': 1.0, 'finding': 1.0, 'velcro': 1.0, 'edging': 1.0, 'g': 1.0, 'vs': 1.0, '1st': 1.0, 'found': 1.0, 'wish': 1.0, 'find': 2.0, 'closure': 1.0, 'birthday': 1.0, 'much': 1.0, 'general': 1.0, 'they': 4.0, 'time': 2.0, 'complaint': 1.0, 'finally': 1.0, 'done': 1.0, 'and': 5.0, 'tie': 1.0, 'could': 1.0, 'will': 1.0, 'also': 1.0, 'should': 1.0, 'rip': 1.0, 'was': 1.0, 'most': 1.0, 'back': 1.0, 'bother': 1.0, 'ties': 1.0, '9': 1.0, 'it': 1.0, 'hold': 1.0, 'up': 1.0, 'work': 1.0, 'over': 1.0, 'two': 1.0, 'little': 1.0, 'if': 1.0, 'order': 1.0, 'then': 1.0, 'free': 1.0, 'ship': 1.0, 'quality': 2.0, 'their': 1.0, '25': 1.0, 'are': 1.0, 'cheapest': 1.0, 'been': 1.0, 'twins': 1.0, 'priced': 1.0, 'not': 1.0, 'my': 2.0, 'me': 1.0, 'think': 1.0, 'overpriced': 1.0}
Word element => {'sooner': 1.0, 'd': 1.0, 'wish': 1.0, 'recommend': 1.0, 'definitely': 1.0, 'too': 1.0, 'knew': 1.0, 'clothes': 2.0, 'would': 1.0, 'each': 1.0, 'every': 1.0, 'really': 2.0, 'needed': 1.0, 'she': 2.0, 'it': 6.0, 'just': 2.0, 'meal': 2.0, 'water': 2.0, 'pull': 1.0, 'daughter': 1.0, 'bought': 1.0, 'hates': 1.0, 'free': 1.0, 'hot': 1.0, 'in': 3.0, 'dishwasher': 1.0, 'item': 1.0, 'my': 1.0, 'loves': 1.0, 'that': 1.0, 'been': 1.0, 'them': 2.0, 'has': 1.0, 'next': 1.0, 'a': 2.0, 't': 1.0, 's': 1.0, 'dish': 1.0, 'bibs': 2.0, 'oranges': 2.0, 'to': 5.0, 'fits': 1.0, 'all': 1.0, 'warm': 1.0, 'had': 1.0, 'and': 7.0, 'eating': 1.0, 'amazing': 1.0, 'only': 2.0, 'something': 1.0, 'says': 1.0, 'foods': 1.0, 'very': 1.0, 'soak': 1.0, 'easy': 1.0, 'bit': 1.0, 'time': 1.0, 'lighter': 1.0, 'stain': 3.0, 'i': 6.0, 'get': 1.0, 'months': 1.0, 'yank': 1.0, '10': 1.0, 'bib': 2.0, 'so': 1.0, 'constantly': 2.0, 'problem': 1.0, 'especially': 1.0, 'grow': 1.0, 'bird': 1.0, 'at': 1.0, 'is': 3.0, 'different': 1.0, 'clean': 1.0, 'this': 2.0, 'sleeved': 1.0, 'sink': 1.0, 'design': 1.0, 'doesn': 1.0, 'mind': 1.0, 'with': 2.0, 'great': 1.0, 'off': 1.0, 'until': 1.0, 'these': 2.0, 'room': 1.0, 'have': 1.0, 'stayed': 1.0, 'wearing': 1.0, 'machine': 1.0, 'sit': 1.0, 'washable': 1.0, 'avocados': 1.0, 'her': 2.0, 'wash': 1.0, 'but': 1.0, 'after': 1.0, 'cute': 1.0, 'the': 5.0, 'of': 1.0, 'soap': 1.0, 'let': 1.0, 'dry': 1.0}
Word element => {'times': 1.0, 'diaper': 1.0, 'in': 1.0, 'home': 1.0, 'cute': 1.0, 'plus': 1.0, 'mom': 1.0, 'recommend': 1.0, 'first': 1.0, 'did': 1.0, 'one': 2.0, 'cuter': 1.0, 'bought': 1.0, 'be': 1.0, 'never': 1.0, 'them': 2.0, 'out': 1.0, 'clean': 1.0, 'child': 1.0, 'don': 1.0, 'well': 1.0, 'and': 6.0, 'do': 1.0, 'durable': 1.0, 'children': 1.0, 'with': 2.0, 'other': 1.0, 'have': 2.0, 'found': 1.0, 'i': 5.0, '4': 1.0, 'they': 5.0, 'others': 1.0, 'these': 2.0, 'the': 3.0, 't': 1.0, 'used': 2.0, 'designs': 1.0, 'part': 1.0, 'bibs': 3.0, 'like': 1.0, 'of': 1.0, 'make': 1.0, '3': 1.0, 'washed': 1.0, 'are': 1.0, 'my': 2.0, 'get': 1.0, 'easy': 1.0, 'any': 2.0, 'all': 2.0, 'to': 2.0, 're': 1.0, 'cover': 1.0, 'very': 1.0, 'best': 1.0, 'can': 1.0, 'not': 1.0, 'bag': 1.0, 'wrinkled': 1.0, 'at': 2.0, 'keep': 1.0, 'since': 1.0, 'crack': 1.0, 'many': 1.0}
Word element => {'happy': 1.0, 'was': 1.0, 'came': 1.0, 'when': 1.0, 'online': 1.0, 'pic': 1.0, 'from': 1.0, 'get': 1.0, 'shirts': 1.0, 'my': 1.0, 'his': 3.0, 'pattern': 2.0, 'feed': 1.0, 'guy': 1.0, 'on': 1.0, 'love': 1.0, 'this': 2.0, 'he': 1.0, 'it': 2.0, 'the': 6.0, 'have': 1.0, 'otherwise': 1.0, 'i': 4.0, 'buy': 1.0, 'bib': 3.0, 'need': 1.0, 'that': 2.0, 'seems': 1.0, 'in': 2.0, 'to': 4.0, 'little': 2.0, 'but': 1.0, 'food': 1.0, 'bit': 1.0, 'so': 1.0, 'complaint': 1.0, 'more': 1.0, 'is': 1.0, 'really': 2.0, 'a': 2.0, 's': 2.0, 'interested': 1.0, 'busy': 1.0, 'difficult': 1.0, 'mouth': 1.0, 'putting': 1.0, 'be': 1.0, 'him': 1.0, 'works': 1.0, 'try': 1.0, 'only': 2.0, 'robot': 1.0, 'like': 1.0, 'of': 1.0, 'skeptical': 1.0}
Word element => {'don': 1.0, 'deal': 1.0, 'not': 1.0, 'quickly': 1.0, 'smell': 1.0, 'or': 1.0, 'a': 1.0, 'well': 2.0, 'out': 1.0, 'them': 1.0, 'laundry': 1.0, 'pouch': 1.0, 'bibs': 1.0, 'and': 2.0, 'big': 1.0, 'very': 2.0, 'they': 3.0, 'food': 1.0, 't': 1.0, 'great': 1.0, 'these': 1.0, 'the': 2.0, 'are': 2.0, 'eating': 1.0, 'only': 1.0, 'durable': 1.0, 'really': 1.0, 'wring': 1.0, 'is': 1.0, 'that': 2.0, 'you': 1.0, 'all': 1.0, 'begin': 1.0, 'catches': 1.0, 'bad': 1.0, 'thing': 1.0, 'have': 1.0, 'to': 2.0, 'in': 1.0, 'also': 1.0, 'wash': 2.0}
Word element => {'use': 1.0, 'puts': 1.0, 'daughter': 1.0, 'm': 1.0, 'satisfied': 1.0, 'other': 1.0, 'any': 1.0, 'like': 1.0, 'and': 1.0, 'my': 3.0, 'small': 1.0, 's': 1.0, 'i': 1.0, 'old': 1.0, 'on': 1.0, 'art': 1.0, 'for': 1.0, 'year': 1.0, 'fit': 2.0, 'smock': 2.0, 'the': 1.0, '2': 1.0, 't': 1.0, 'who': 1.0, 'job': 1.0, 'good': 2.0, 'side': 1.0, 'did': 1.0, 'concern': 1.0, 'to': 1.0, 'its': 1.0, 'was': 1.0, 'that': 2.0, 'does': 1.0, 'her': 1.0, 'but': 1.0, 'this': 2.0, 'only': 1.0, 'wouldn': 1.0, 'it': 2.0}
Word element => {'size': 1.0, 'a': 1.0, 'and': 1.0, 'as': 1.0, 'actually': 1.0, 'bibs': 1.0, 'bumpkins': 1.0, 'an': 2.0, 'i': 2.0, 'old': 1.0, 'was': 2.0, 'to': 1.0, 'find': 1.0, 'using': 1.0, 'one': 2.0, 'art': 1.0, 'love': 1.0, 'we': 1.0, 'the': 2.0, 'smock': 1.0, 'same': 1.0, 'happy': 1.0, 'in': 1.0, 'larger': 1.0}
Word element => {'too': 1.0, 'gets': 1.0, 'area': 1.0, 'thing': 1.0, 'sleeve': 1.0, 'at': 1.0, 'fact': 1.0, 'get': 1.0, 'got': 1.0, 'like': 1.0, 'is': 1.0, 'the': 5.0, 'my': 1.0, 'only': 1.0, 'it': 2.0, 'hard': 1.0, 'tight': 1.0, 'for': 1.0, 'its': 1.0, 'to': 1.0, 'through': 1.0, 'long': 1.0, 'her': 1.0, 'hand': 1.0, 'i': 1.0, 'doughter': 1.0, 'wrist': 1.0}
Word element => {'great': 1.0, 'but': 1.0, 'even': 1.0, 'problem': 1.0, 'extra': 1.0, 'fixes': 1.0, 'cloth': 1.0, 'piece': 1.0, 'children': 1.0, 'size': 1.0, 'accomodating': 1.0, 'expect': 1.0, 'allow': 1.0, 'would': 1.0, 'something': 1.0, 'pain': 1.0, 'this': 2.0, 'turtlenecks': 1.0, 'if': 1.0, 'much': 1.0, 'tiny': 1.0, 'it': 2.0, 'me': 1.0, 'not': 2.0, 'while': 1.0, 'old': 1.0, '18': 1.0, 'sleeve': 1.0, 'neck': 3.0, 'does': 1.0, 'add': 1.0, 'these': 1.0, 'use': 1.0, 'to': 6.0, 'had': 1.0, 'otherwise': 1.0, 'i': 2.0, 'necks': 1.0, 'think': 1.0, 'except': 1.0, 'on': 1.0, 'about': 2.0, 'pay': 1.0, 'washes': 1.0, 'daughter': 1.0, 'during': 1.0, 'like': 1.0, 'have': 1.0, 'protect': 2.0, 'clothes': 3.0, 'them': 2.0, 'winter': 1.0, 'huge': 1.0, 'months': 2.0, 'bought': 1.0, '6': 1.0, 'of': 3.0, 'up': 1.0, 'bibs': 1.0, 'really': 2.0, 'expense': 1.0, 'well': 1.0, 's': 2.0, 'a': 3.0, 'and': 3.0, 'clean': 1.0, 'different': 1.0, 'her': 3.0, 'good': 1.0, 'the': 5.0, 'job': 1.0, 'you': 2.0, 'someone': 1.0, 'protecting': 1.0, 'for': 3.0, 'long': 1.0, 'sew': 1.0, 'larger': 1.0, 'strip': 2.0, 'is': 3.0, 'around': 1.0, 'top': 1.0, 'bib': 1.0, 'keep': 1.0, 'total': 1.0, 'at': 1.0, 'my': 1.0}
Word element => {'very': 1.0, 'up': 1.0, 'cleans': 1.0, 'smell': 1.0, 'i': 1.0, 'bad': 1.0, 't': 1.0, 'smelled': 1.0, 'to': 1.0, 'cute': 1.0, 'find': 1.0, 'easily': 1.0, 'wasn': 1.0, 'toxic': 1.0, 'really': 1.0, 'filled': 1.0, 'is': 2.0, 'this': 1.0, 'with': 1.0, 'looked': 1.0, 'chemical': 1.0, 'plastic': 1.0, 'perfect': 1.0, 'and': 2.0, 'that': 2.0, 'something': 1.0, 'forever': 1.0, 'terrible': 1.0, 'non': 1.0, 'no': 1.0}
Word element => {'is': 1.0, 'front': 1.0, 'perfect': 1.0, 'in': 1.0, 'pocket': 1.0, 'over': 1.0, 'all': 1.0, 'up': 1.0, 'arms': 1.0, 'ending': 1.0, 'from': 1.0, 'at': 1.0, 'not': 1.0, 'yr': 1.0, 'brushes': 1.0, 'end': 1.0, 'my': 1.0, 'the': 3.0, '2': 1.0, 'with': 1.0, 'this': 1.0, 'or': 1.0, 'loves': 1.0, 'prevent': 1.0, 'who': 1.0, 'purchased': 1.0, 'granddaughter': 1.0, 'to': 2.0, 'old': 1.0, 'i': 2.0, 'paint': 3.0, 'markers': 1.0, 'sleeves': 1.0, 'for': 2.0, 'finger': 1.0, 'tight': 1.0, 'love': 1.0, 'her': 1.0, 'long': 1.0, 'firm': 1.0, 'elastic': 1.0, 'but': 1.0}
Word element => {'mark': 1.0, 'leave': 1.0, 'uncomfortable': 1.0, 'be': 1.0, 'side': 1.0, 'sleeves': 1.0, 'so': 1.0, 'however': 1.0, 'child': 2.0, 'clean': 1.0, 'material': 1.0, 'toddler': 1.0, 'but': 1.0, 's': 1.0, 'a': 3.0, 'i': 2.0, 'it': 2.0, 'this': 2.0, 'winter': 1.0, 'eating': 1.0, 'love': 1.0, 'may': 1.0, 'tight': 1.0, 'the': 2.0, 'smock': 1.0, 'arms': 1.0, 'very': 1.0, 'and': 1.0, 'in': 1.0, 'design': 1.0, 'stay': 1.0, 'of': 1.0, 'plus': 1.0, 'use': 1.0, 'cuffs': 1.0, 'sleeve': 1.0, 'are': 1.0, 'is': 2.0, 'as': 1.0, 'to': 1.0, 'if': 1.0, 'running': 1.0, 'down': 1.0, 'from': 1.0, 'while': 1.0, 'or': 2.0, 'painting': 1.0, 'stuff': 1.0, 'your': 1.0, 'on': 1.0, 'bib': 1.0, 'keep': 1.0, 'bigger': 1.0}
Word element => {'in': 1.0, 'anyway': 1.0, 'cat': 1.0, 'breathable': 1.0, 'is': 1.0, 'material': 1.0, 'i': 2.0, 'who': 1.0, 'brainer': 1.0, 'so': 1.0, 'and': 4.0, 'searching': 1.0, 'washable': 1.0, 'them': 1.0, 'a': 2.0, 'like': 1.0, 'bibs': 1.0, 'have': 1.0, 'saw': 1.0, 'kids': 1.0, 'when': 1.0, 'by': 1.0, 't': 1.0, 'the': 3.0, 'smock': 1.0, 'parents': 1.0, 'young': 1.0, 'bumkins': 1.0, 'for': 4.0, 'my': 1.0, 'hat': 1.0, 'doesn': 1.0, 'swear': 1.0, 'toddler': 1.0, 'this': 1.0, 'it': 1.0, 'was': 1.0, 'no': 1.0}
Word element => {'seem': 1.0, 'clean': 1.0, 'use': 1.0, 'easy': 2.0, 'that': 1.0, 'helps': 1.0, 'possible': 1.0, 'if': 1.0, 'products': 1.0, 'i': 2.0, 'bother': 1.0, 'while': 1.0, 'not': 1.0, 'just': 2.0, 'accomplishing': 1.0, 'crafts': 1.0, 'toddler': 2.0, 'him': 1.0, 'with': 1.0, 'this': 1.0, 'it': 2.0, 'into': 1.0, 'does': 1.0, 'his': 1.0, 'want': 2.0, 'is': 2.0, 'son': 1.0, 'my': 2.0, 'to': 6.0, 'encourage': 1.0, 'also': 1.0, 'paint': 1.0, 'and': 1.0, 'do': 1.0, 'getting': 1.0, 'clothe': 1.0, 'remain': 1.0, 'somewhat': 1.0, 'free': 1.0}
Word element => {'than': 1.0, 'made': 1.0, 'if': 1.0, 'better': 1.0, 'myself': 1.0, 'much': 1.0, 'so': 1.0, 'been': 1.0, 'have': 1.0, 'rather': 1.0, 'would': 1.0, 'material': 1.0, 'the': 1.0, 'buying': 1.0, 'to': 1.0, 'through': 1.0, 'enough': 1.0, 'for': 1.0, 'put': 1.0, 'but': 1.0, 'cuffs': 1.0, 'few': 1.0, 'good': 1.0, 'not': 3.0, 'fist': 1.0, 'are': 1.0, 'my': 1.0, 'things': 1.0, 'is': 2.0, 'flimsy': 1.0, 'size': 1.0, 'working': 1.0, 'like': 1.0, 'up': 1.0, 'a': 1.0, 'well': 1.0, 'his': 1.0, 'does': 2.0, 'this': 1.0, 'he': 1.0, 'it': 3.0, 'big': 1.0, 'son': 1.0, 'very': 2.0, 'as': 1.0, 'open': 1.0}
Word element => {'toodlers': 1.0, 'for': 1.0, 'strong': 1.0, 'fabric': 1.0, 'the': 1.0, 'pretty': 1.0, 'and': 1.0, 'very': 2.0, 'is': 3.0, 'overall': 1.0, 'it': 2.0, 'love': 1.0, 'i': 1.0, 'does': 1.0, 'not': 1.0, 'a': 1.0, '6': 1.0, 'but': 2.0, 'fit': 1.0, 'months': 1.0, 'baby': 1.0}
Word element => {'and': 1.0, 'cup': 1.0, 'brush': 1.0, 'one': 1.0, 'does': 1.0, 'i': 1.0, 'not': 1.0, 'glass': 1.0, 'other': 1.0, 'than': 1.0, 'looking': 1.0, 'with': 1.0, 'it': 1.0, 'reason': 1.0, 'bought': 1.0, 'that': 1.0, 'tooth': 1.0, 'great': 1.0, 'the': 2.0, 'work': 1.0, 'but': 1.0, 'quality': 1.0, 'was': 1.0, 'comes': 1.0, 'hour': 1.0, 's': 1.0, 'which': 1.0, 'nice': 1.0}
Word element => {'them': 1.0, 'there': 1.0, 'box': 1.0, 'that': 1.0, 'were': 1.0, 'it': 1.0, 'find': 1.0, 'the': 2.0, 'yet': 1.0, 'no': 1.0, 'wooden': 1.0, 'to': 3.0, 'resolved': 1.0, 'opened': 1.0, 'mallets': 1.0, 'in': 1.0, 'we': 1.0, 'play': 1.0, 'have': 1.0, 'get': 1.0, 'and': 1.0, 'i': 1.0, 'xylophone': 1.0, 'not': 1.0, 'how': 1.0}
Word element => {'from': 1.0, 'one': 1.0, 'toys': 1.0, 'quality': 1.0, 'kid': 1.0, 'musical': 1.0, 'side': 1.0, 'stimulate': 1.0, 'important': 1.0, 'recommend': 1.0, 'every': 2.0, 'highly': 1.0, 'would': 1.0, 'these': 1.0, 'likes': 1.0, 'son': 1.0, 'learn': 1.0, 'parent': 1.0, 'house': 1.0, 'sevi': 1.0, 'visit': 1.0, 'i': 2.0, 'even': 2.0, 'what': 1.0, 'too': 1.0, 'and': 3.0, 'the': 4.0, 'great': 1.0, 'fall': 1.0, 'is': 3.0, 'so': 3.0, 'identify': 1.0, 'cute': 2.0, 'adults': 1.0, 'older': 1.0, 'kids': 1.0, 'this': 3.0, 'it': 4.0, 'with': 2.0, 'unique': 1.0, 'xylophones': 1.0, 'my': 2.0, 'in': 2.0, 'sound': 1.0, 'year': 1.0, 'that': 2.0, 'loves': 1.0, 'cheap': 1.0, 'xylo': 1.0, 'love': 2.0, '2': 1.0, 'most': 1.0, 'those': 1.0, 'not': 1.0, 'like': 2.0, 'old': 1.0, 'metal': 1.0, 'available': 1.0, 'everywhere': 1.0, 'on': 1.0, 'little': 1.0, 'animals': 2.0, 'are': 2.0, 'painted': 1.0, 'a': 1.0, 'way': 1.0, 'our': 1.0, 'to': 4.0}
Word element => {'be': 1.0, 'should': 1.0, 'paint': 1.0, 'gnaw': 1.0, 'your': 1.0, 'safe': 1.0, 'let': 1.0, 'you': 1.0, 'long': 1.0, 'as': 2.0, 'its': 1.0, 'on': 1.0, 'sounds': 1.0, 'he': 1.0, 'this': 2.0, 'soft': 1.0, 'sturdy': 1.0, 'baby': 1.0, 'don': 1.0, 'wooden': 1.0, 'of': 1.0, 'a': 1.0, 'is': 1.0, 'however': 1.0, 'in': 1.0, 'which': 1.0, 'made': 1.0, 'wasn': 1.0, 'china': 1.0, 'i': 2.0, 'when': 1.0, 'the': 1.0, 't': 2.0, 'great': 1.0, 'aware': 1.0, 'ordered': 1.0, 'xylaphone': 1.0, 'but': 1.0}
Word element => {'with': 1.0, 'wouldn': 1.0, 'happy': 1.0, 'my': 2.0, 'am': 1.0, 'to': 2.0, 'look': 1.0, 'better': 1.0, 'pretty': 1.0, 'is': 1.0, 'i': 4.0, 'and': 2.0, 'wanted': 1.0, 'notes': 1.0, 'quality': 1.0, 'into': 1.0, 'avoid': 1.0, 'recommend': 1.0, 'was': 1.0, 'doesn': 1.0, 'not': 1.0, 'xylophone': 1.0, 'looking': 1.0, 'cheap': 1.0, 'for': 3.0, 'one': 1.0, 'are': 2.0, 'this': 2.0, 'kids': 1.0, 'the': 5.0, 'tinny': 1.0, 'a': 2.0, 't': 2.0, 'money': 1.0, 'music': 1.0, 'but': 2.0, '2': 1.0, 'sounds': 1.0, 'of': 1.0, 'version': 1.0, 'cut': 1.0, 'mustard': 1.0, 'choice': 1.0, 'same': 1.0, 'really': 1.0, 'tone': 1.0, 'poor': 1.0, 'who': 1.0, 'at': 1.0}
Word element => {'her': 1.0, 'she': 1.0, 'as': 1.0, 'and': 1.0, 'a': 1.0, 'after': 1.0, 'eyes': 1.0, 'play': 1.0, 'this': 1.0, 'is': 1.0, 'the': 1.0, 'sleep': 1.0, 'story': 1.0, 'just': 2.0, 'darling': 1.0, 'closes': 1.0, '4': 1.0, 'year': 1.0, 'it': 1.0, 'likes': 1.0, 'old': 1.0, 'to': 2.0}
Word element => {'it': 1.0, 'but': 1.0, 'get': 1.0, 'would': 1.0, 'better': 1.0, 'if': 1.0, 't': 1.0, 'the': 7.0, 'position': 1.0, 'booster': 1.0, 'safe': 1.0, 'to': 2.0, 'adjusting': 1.0, 'be': 1.0, 'neck': 1.0, 'didn': 1.0, 'close': 1.0, 'belt': 3.0, 'see': 1.0, 'a': 2.0, 'too': 1.0, 'lays': 1.0, 'seat': 3.0, 'should': 1.0, 'goes': 1.0, 'that': 1.0, 'of': 1.0, 'set': 1.0, 'up': 1.0, 'headrest': 1.0, 'in': 1.0, 'way': 1.0, 'over': 1.0, 'shoulder': 1.0, 'tried': 1.0, 'i': 1.0}
Word element => {'napping': 1.0, 'good': 1.0, 'are': 1.0, 'and': 1.0, 'they': 1.0, 'searching': 1.0, 'perfectly': 1.0, 'buckling': 1.0, 'graco': 1.0, 'when': 1.0, 'kids': 1.0, 'narrowest': 1.0, 'have': 1.0, 'wide': 1.0, 'find': 1.0, 'still': 1.0, 'the': 5.0, 'booster': 3.0, 'space': 1.0, 'was': 3.0, 'would': 1.0, 'compass': 1.0, 'in': 2.0, 'also': 1.0, 'fit': 1.0, 'for': 3.0, 'love': 1.0, 'mercedes': 1.0, 'c350': 1.0, 'could': 1.0, 'a': 1.0, 'pulled': 1.0, 'seat': 1.0, 'been': 1.0, 'that': 1.0, 'i': 3.0, 'narrow': 2.0, 'it': 3.0, 'with': 1.0, 'very': 3.0, 'out': 1.0, 'my': 2.0, 'tight': 1.0, 'fits': 1.0, 'them': 1.0, 'but': 1.0, 'back': 1.0, 'portion': 1.0, 'is': 1.0, 'car': 1.0, 'extra': 1.0}
Word element => {'any': 1.0, 'i': 1.0, 'if': 1.0, 'review': 1.0, 'add': 1.0, 'will': 1.0, 'than': 1.0, 'to': 1.0, 'had': 1.0, 'have': 2.0, 'and': 1.0, 'chair': 1.0, 'months': 1.0, 'on': 1.0, '2': 1.0, 'the': 2.0, 'compass': 1.0, 'we': 1.0, 'is': 1.0, 'many': 1.0, 'comfortable': 1.0, 'reading': 1.0, 'reviews': 1.0, 'after': 1.0, 'folding': 1.0, 'it': 2.0, 'my': 1.0, 'portable': 1.0, 'light': 1.0, 'no': 1.0, 'complaints': 1.0, 'problems': 1.0, 'very': 1.0, 'decided': 1.0, 'from': 1.0, 'less': 1.0, 'daughter': 1.0}
Word element => {'booster': 1.0, 'folding': 1.0, 'well': 1.0, 'traveled': 1.0, 'adjustable': 1.0, 'compass': 1.0, 'chest': 1.0, 'so': 1.0, 'side': 1.0, 'around': 1.0, 'get': 1.0, 'figure': 1.0, 'properly': 1.0, 'hard': 1.0, 'try': 1.0, 'how': 1.0, 'he': 5.0, 'first': 1.0, 'with': 1.0, 'across': 1.0, 'tuck': 1.0, 'and': 3.0, 'weight': 1.0, 'height': 1.0, 'at': 1.0, 'had': 1.0, 'grandma': 1.0, 'his': 1.0, 'two': 1.0, 'i': 1.0, 'visit': 1.0, 'got': 1.0, 'to': 5.0, 'seat': 5.0, 'for': 1.0, 'the': 6.0, 'great': 2.0, 'figured': 1.0, 'purchase': 1.0, 'my': 1.0, 'grandson': 1.0, 'right': 1.0, 'worked': 1.0, 'out': 2.0, 'that': 1.0, 'like': 1.0, 'cup': 1.0, 'king': 1.0, 'pop': 1.0, 'was': 3.0, 'belt': 2.0, 'be': 1.0, 'limit': 1.0, 'free': 1.0, 'really': 1.0, 'it': 3.0, 'felt': 1.0, 'we': 1.0, 's': 2.0, 'could': 1.0, 'a': 2.0, 'on': 1.0, 'in': 2.0, 'bottom': 1.0, 'especially': 1.0, 'this': 3.0, 'throne': 1.0, 'holders': 1.0}
Word element => {'too': 1.0, 'him': 1.0, 'would': 1.0, 'may': 1.0, 'body': 1.0, 'ordering': 1.0, 'growing': 1.0, 'fit': 1.0, 'able': 1.0, 'being': 1.0, 'my': 1.0, 'happy': 1.0, 'and': 1.0, 'as': 1.0, 'son': 1.0, 'big': 1.0, 'very': 1.0, 'is': 1.0, 'expected': 1.0, 'i': 1.0, 'a': 1.0, 'everything': 1.0, 'adjust': 1.0, 'boy': 1.0, 'that': 1.0, 'work': 1.0, 'will': 1.0, 'be': 2.0, 'now': 1.0, 'to': 3.0, 'his': 1.0, 'used': 1.0, 'love': 1.0, 'for': 3.0, 'another': 1.0, 'years': 1.0, 'older': 1.0, 'he': 1.0, 'with': 2.0, 'it': 4.0, 'come': 1.0}
Word element => {'quality': 1.0, 'superior': 1.0, 'still': 1.0, 'but': 1.0, 'brand': 1.0, 'different': 1.0, 'purchased': 1.0, 'recently': 1.0, 'children': 1.0, 'close': 1.0, 'guides': 1.0, 'seatbelt': 1.0, 'roomy': 1.0, 'are': 2.0, 'sides': 1.0, 'adult': 1.0, 'slightly': 1.0, 'with': 1.0, 'cause': 1.0, 'dirty': 1.0, 'seems': 1.0, 'enough': 1.0, 'cover': 1.0, 'position': 1.0, 'into': 1.0, 'concern': 1.0, 'locks': 1.0, 'back': 1.0, 'solid': 1.0, 'very': 2.0, 'never': 1.0, 'design': 1.0, 'have': 1.0, 'row': 1.0, 'second': 1.0, 'get': 1.0, 'left': 1.0, 'securely': 1.0, 'and': 4.0, 'perfectly': 1.0, 'think': 1.0, 'necks': 1.0, '3': 1.0, 'were': 1.0, 'only': 1.0, 'do': 1.0, 'empty': 1.0, 'bought': 1.0, 'these': 2.0, 'may': 1.0, 'my': 4.0, 'pair': 1.0, 'of': 3.0, 'up': 1.0, 'i': 3.0, 'two': 2.0, 'let': 1.0, 'then': 1.0, 'petite': 1.0, 'at': 1.0, 'who': 1.0, 'which': 1.0, 'hold': 1.0, '2009': 1.0, 'carseats': 1.0, 'kids': 1.0, 'when': 1.0, 'in': 4.0, 'fit': 1.0, 'for': 1.0, 'come': 1.0, 'seats': 5.0, 'move': 1.0, 'bucket': 1.0, 'van': 1.0, 'is': 2.0, 'lifted': 1.0, '6': 1.0, 'plastic': 1.0, 'right': 1.0, 'wide': 1.0, 'armrests': 2.0, 'car': 1.0, 'a': 3.0, 's': 2.0, 'curved': 1.0, 'the': 13.0, 'place': 1.0, 'not': 1.0, 'seatbelts': 1.0, 'from': 2.0, 'seat': 2.0, 'to': 5.0, 'all': 1.0, 'overall': 1.0}
Word element => {'return': 1.0, 'no': 1.0, 'could': 1.0, 'once': 1.0, 'all': 1.0, 'instantly': 1.0, 'mine': 1.0, 'box': 1.0, 'around': 1.0, 'would': 3.0, 'biggest': 1.0, 'letting': 1.0, 'big': 2.0, 'off': 1.0, 'until': 1.0, 'is': 1.0, 'to': 3.0, 'our': 1.0, 'as': 2.0, 's': 2.0, 'take': 1.0, 'we': 2.0, 'a': 2.0, 'like': 1.0, 'overall': 1.0, 't': 1.0, 'likes': 1.0, 'up': 2.0, 'don': 1.0, 'fold': 1.0, 'says': 1.0, 'vehicle': 1.0, 'another': 2.0, 'kid': 1.0, 'daughter': 1.0, 'one': 4.0, 'for': 2.0, 'i': 11.0, 'evenflo': 1.0, 'have': 1.0, 'old': 2.0, 'purchased': 1.0, 'disappointment': 1.0, 'had': 1.0, '3': 1.0, 'better': 1.0, 'think': 1.0, 'any': 1.0, 'your': 1.0, 'that': 3.0, 'loves': 1.0, 'been': 1.0, 'wish': 1.0, 'this': 3.0, '5': 1.0, 'seat': 6.0, 'in': 5.0, 'also': 2.0, '2017': 1.0, 'year': 1.0, 'girl': 1.0, 'option': 2.0, 'manufacture': 2.0, 'thought': 1.0, 'it': 5.0, 'december': 2.0, 'and': 4.0, 'expires': 1.0, 'advise': 1.0, 'know': 1.0, 'easy': 1.0, '2010': 1.0, 'last': 1.0, 'longer': 1.0, 'of': 2.0, 'convert': 1.0, 'the': 9.0, 'booster': 1.0, 'backless': 1.0, 'she': 5.0, 'many': 1.0, 'others': 1.0, 'was': 3.0, 'realized': 1.0, 'ordered': 2.0, 'ripped': 1.0, 'manufactured': 1.0, 'use': 1.0, 'her': 1.0, '2008': 1.0, 'so': 3.0, 'getting': 1.0, 'tags': 1.0, 'when': 3.0, 'you': 2.0, 'but': 1.0, '2015': 1.0, 'll': 1.0, 'end': 1.0, 'has': 1.0, 'needing': 1.0, 'not': 1.0, 'if': 1.0, 'there': 1.0, 'way': 1.0, 'find': 1.0, 'absolutely': 1.0, 'out': 2.0, 'date': 2.0, 'order': 1.0, 'nice': 1.0, 'little': 1.0, 'be': 1.0}
Word element => {'purchase': 1.0, 'clothes': 1.0, 'take': 1.0, 'to': 1.0, 'her': 2.0, 'not': 1.0, 'difficult': 1.0, 'of': 2.0, 'happy': 1.0, 'my': 2.0, 'the': 1.0, 'more': 2.0, 'a': 1.0, 'kept': 1.0, 'covers': 1.0, 'them': 1.0, 'but': 1.0, 'have': 1.0, 'with': 1.0, 'this': 1.0, 'we': 1.0, 'and': 1.0, 'couple': 1.0, 'impossible': 1.0, 'bib': 1.0, 'awesome': 1.0, 'daughter': 1.0, 'bumkins': 1.0, 'for': 1.0, 'tearing': 1.0, 'regular': 1.0, 'is': 1.0, 'off': 2.0, 'though': 1.0, 'much': 2.0}
Word element => {'would': 1.0, 'i': 1.0, 'for': 1.0, 'in': 1.0, 'toddlers': 1.0, 'is': 1.0, 'catch': 1.0, 'are': 1.0, 'lap': 1.0, 'these': 1.0, 'they': 1.0, 'a': 1.0, 'dropped': 1.0, 'lot': 1.0, 'food': 1.0, 'that': 1.0, 'bibs': 1.0, 'recommend': 1.0, 'good': 1.0, 'of': 1.0}
Word element => {'price': 1.0, 'are': 1.0, 'with': 1.0, 'plays': 1.0, 'last': 1.0, 'she': 1.0, 'too': 1.0, 'when': 1.0, 'clothes': 1.0, 'long': 1.0, 'her': 1.0, 'worth': 1.0, 'still': 2.0, 'old': 1.0, 'i': 2.0, '3': 1.0, 'can': 1.0, 'use': 2.0, 'wash': 1.0, 'my': 1.0, 'the': 2.0, 'these': 2.0, 'time': 1.0, 'they': 1.0, 'bibs': 3.0, 'a': 1.0, 'well': 1.0, 'paints': 1.0, 'get': 1.0, 'getting': 1.0, 'and': 4.0, 'keep': 1.0, 'markers': 1.0, 'so': 1.0, 'food': 1.0, 'messy': 1.0, 'drink': 1.0, 'year': 1.0, 'from': 1.0, 'on': 1.0}
Word element => {'food': 1.0, 'up': 1.0, 'does': 1.0, 'front': 1.0, 'back': 1.0, 'in': 2.0, 'closing': 1.0, 'great': 1.0, 'the': 4.0, 'pocket': 1.0, 'like': 1.0, 'foods': 1.0, 'staining': 1.0, 'buy': 1.0, 'i': 1.0, 'cloth': 1.0, 'dropped': 1.0, 'to': 1.0, 'messy': 1.0, 'covers': 1.0, 'absolutely': 1.0, 'protect': 1.0, 'really': 1.0, 'want': 1.0, 'is': 2.0, 'clothing': 1.0, 'end': 1.0, 'my': 1.0, 'and': 2.0, 'bib': 1.0, 'velcro': 1.0, 'this': 1.0, 'top': 1.0, 'half': 1.0, 'catching': 1.0, 'adorable': 1.0, 'from': 1.0, 'entire': 1.0, 'which': 1.0, 'nice': 1.0, 'daughter': 1.0, 'when': 1.0, 's': 1.0, 'you': 1.0}
Word element => {'meals': 1.0, 'as': 2.0, 'year': 1.0, 'worried': 1.0, 'too': 1.0, 'large': 1.0, 's': 1.0, 'be': 1.0, 'would': 2.0, 'my': 1.0, 'make': 1.0, 'it': 2.0, '2': 1.0, 'more': 1.0, 'great': 2.0, 'for': 2.0, 'art': 1.0, 'but': 1.0, 'will': 1.0, 'old': 1.0, 'i': 1.0, 'buy': 1.0, 'cover': 1.0, 'well': 1.0, 'a': 1.0, 'painting': 1.0}
Word element => {'months': 1.0, 'started': 1.0, 'wish': 1.0, 'quick': 1.0, 'cute': 1.0, 'are': 1.0, 'and': 2.0, 'designs': 1.0, 'ago': 1.0, 'my': 1.0, 'awhile': 1.0, 'to': 2.0, 'dry': 1.0, 'they': 1.0, 'the': 1.0, 'these': 2.0, '18': 1.0, 'fit': 2.0, 'rock': 1.0, 'month': 1.0, 'well': 1.0, 'will': 1.0, 'using': 1.0, 'love': 1.0, 'for': 1.0, 'old': 1.0, 'i': 3.0, 'clean': 1.0, 'them': 1.0, 'easy': 1.0}
Word element => {'dry': 1.0, 'wait': 1.0, 'need': 1.0, 'one': 1.0, 'handed': 1.0, 'bib': 2.0, 'into': 1.0, 'task': 1.0, 'velcro': 1.0, 'with': 2.0, 'positives': 1.0, 'on': 1.0, 'not': 1.0, 'squirming': 1.0, 'time': 1.0, 'slightly': 1.0, 'long': 1.0, 'a': 2.0, 'and': 2.0, 'easy': 1.0, 'get': 1.0, 'for': 1.0, 'closure': 1.0, 'love': 3.0, 'bumkins': 1.0, 'the': 2.0, 'these': 1.0, 'holes': 1.0, 'stays': 1.0, 'great': 1.0, 'work': 1.0, 'baby': 2.0, 'price': 1.0, 'worth': 1.0, 'provides': 1.0, 'opposed': 1.0, 'because': 1.0, 'difficult': 1.0, 'bibs': 1.0, 'arm': 1.0, 'as': 1.0, 'to': 5.0, 'soap': 1.0, 'in': 1.0, 'premium': 1.0, 'coverage': 1.0, 'sink': 1.0, 'soft': 1.0, 'after': 1.0, 'cute': 1.0, 'sometimes': 1.0, 'last': 1.0, 'clean': 1.0, 'fabric': 1.0, 'water': 1.0, 'stiff': 1.0, 'washing': 1.0, 'plastic': 1.0, 'designnegatives': 1.0}
Word element => {'also': 1.0, 'highchair': 1.0, 'of': 1.0, 'up': 1.0, 'and': 1.0, 'a': 1.0, 'the': 3.0, 'little': 1.0, 'winter': 1.0, 'larger': 1.0, 'cleans': 1.0, 'great': 1.0, 'works': 1.0, 'clothes': 1.0, 'straps': 1.0, 'even': 1.0, 'but': 1.0, 'nice': 1.0, 'over': 2.0, 'his': 1.0, 'in': 1.0}
Word element => {'washing': 1.0, 'still': 1.0, 'machine': 1.0, 'look': 1.0, 'had': 1.0, 'year': 1.0, 'they': 2.0, 'brand': 1.0, 'bibs': 1.0, 'and': 1.0, 'of': 2.0, 'up': 1.0, 'several': 1.0, 'new': 1.0, 'after': 1.0, 'i': 1.0, 'over': 1.0, 'a': 1.0, 'use': 1.0, 'in': 1.0, 've': 1.0, 'wash': 1.0, 'the': 1.0, 'these': 1.0, 'heavy': 1.0, 'great': 1.0}
Word element => {'nature': 1.0, 'defeat': 1.0, 'will': 1.0, 'knows': 1.0, 'making': 1.0, 'nefarious': 1.0, 'just': 1.0, 'mess': 1.0, 'hand': 1.0, 'less': 2.0, 'on': 4.0, 'probably': 1.0, 'your': 1.0, 'make': 1.0, 'think': 1.0, 'unlike': 1.0, 'bit': 1.0, 'neck': 1.0, 'enjoys': 1.0, 'but': 1.0, 'food': 2.0, 'errant': 1.0, 'sees': 1.0, 'clean': 1.0, 'a': 6.0, 'we': 1.0, 'maybe': 1.0, 's': 2.0, 'does': 1.0, 'unfair': 1.0, 'accustomed': 1.0, 'has': 1.0, 'purchased': 1.0, 'job': 1.0, 'to': 4.0, 'our': 2.0, 'catching': 1.0, 'very': 1.0, 'been': 1.0, 'that': 4.0, 'keep': 1.0, 'is': 5.0, 'at': 2.0, 'since': 1.0, 'collar': 1.0, 'bib': 2.0, 'pattern': 1.0, 'too': 2.0, 'lot': 1.0, 'effective': 1.0, 'baby': 2.0, 'she': 5.0, 'it': 3.0, 'relatively': 2.0, 'fond': 1.0, 'get': 1.0, 'depends': 1.0, 'do': 2.0, 'usually': 1.0, 'only': 1.0, 'end': 1.0, 'grown': 1.0, 'and': 5.0, 'accomplishing': 1.0, 'good': 1.0, 'which': 1.0, 'body': 1.0, 'what': 1.0, 'when': 2.0, 'this': 2.0, 'eating': 1.0, 't': 1.0, 'likes': 1.0, 'fairly': 1.0, 'loose': 1.0, 'often': 1.0, 'her': 4.0, 'aspect': 1.0, 'guess': 1.0, 'size': 1.0, 'active': 1.0, 'the': 10.0, 'of': 7.0, 'peanut': 2.0, 'some': 2.0, 'voracious': 1.0, 'pockets': 1.0, 'with': 1.0, 'love': 1.0, 'child': 1.0, 'product': 1.0, 'berries': 1.0, 'an': 1.0, 'other': 3.0, 'coming': 1.0, 'i': 2.0, 'comment': 1.0, 'll': 1.0, 'great': 1.0, 'seems': 1.0, 'trap': 2.0, 'heat': 2.0, 'isn': 1.0, 'sometimes': 1.0, 'cries': 1.0, 'cloth': 1.0, 'kind': 1.0, 'overall': 1.0, 'bibs': 1.0, 'cover': 1.0}
Word element => {'only': 1.0, 'will': 1.0, 'compared': 1.0, 'nothing': 1.0, 'ok': 1.0, 'recommended': 1.0, 'well': 1.0, 'very': 1.0, 'didn': 1.0, 'neck': 1.0, 'around': 1.0, 'big': 1.0, 'way': 1.0, 'were': 2.0, 'her': 1.0, 'but': 1.0, 'can': 1.0, 'on': 1.0, 'resist': 1.0, 'too': 1.0, 'and': 4.0, 'be': 1.0, 'needs': 1.0, 'bold': 1.0, 'having': 1.0, 'choice': 1.0, 'everything': 1.0, 's': 1.0, 't': 2.0, 'these': 3.0, 'have': 1.0, 'are': 3.0, 'protected': 1.0, 'down': 1.0, 'used': 2.0, 'parent': 1.0, 'off': 1.0, 'cover': 2.0, 'without': 1.0, 'the': 4.0, 'hands': 1.0, 'highly': 1.0, 'bibs': 3.0, 'yank': 1.0, 'easily': 1.0, 'i': 4.0, 'they': 5.0, 'it': 2.0, 'up': 1.0, 'that': 2.0, 'stains': 1.0, 'bright': 1.0, 'buy': 1.0, 'waterproof': 2.0, 'to': 5.0, 'patterns': 1.0, 'best': 1.0, 'fun': 1.0, 'actually': 1.0, 'love': 1.0, 'fit': 1.0, 'fact': 1.0, 'my': 1.0, 'daughter': 1.0, 'now': 1.0, 'pins': 1.0, 'use': 2.0, 'baby': 1.0, 'wipe': 1.0, 'clothes': 1.0, 'keep': 1.0}
Word element => {'sink': 1.0, 'in': 1.0, 'wash': 1.0, 'just': 1.0, 'forever': 1.0, 'the': 1.0, 'dry': 1.0, 'air': 1.0, 'bibs': 1.0, 'last': 1.0, 'great': 1.0}
Word element => {'product': 1.0, 'better': 1.0, 'i': 2.0, 'on': 1.0, 'is': 1.0, 'this': 2.0, 'only': 1.0, 'it': 2.0, 'quickly': 1.0, 'scrubbing': 1.0, 'my': 1.0, 'are': 1.0, 'the': 3.0, 'these': 1.0, 'ones': 1.0, 'dry': 1.0, 'has': 1.0, 'coverage': 1.0, 'best': 1.0, 'little': 1.0, 'very': 1.0, 'as': 1.0, 'they': 1.0, 'means': 1.0, 'not': 1.0, 'that': 1.0, 'into': 1.0, 'off': 1.0, 'go': 1.0, 'because': 1.0, 'than': 1.0, 'keep': 1.0, 'bib': 1.0, 'and': 1.0, 'be': 1.0, 'easily': 1.0, 'pulled': 1.0, 'also': 1.0, 'can': 3.0, 'most': 1.0, 'washer': 1.0, 'which': 1.0, 'less': 1.0, 'clothes': 1.0, 'later': 1.0, 'bibs': 1.0, 'highly': 1.0, 'recommend': 1.0}
Word element => {'use': 1.0, 'only': 1.0, 'lap': 1.0, 's': 1.0, 'baby': 1.0, 'chair': 1.0, 'we': 1.0, 'fall': 1.0, 'down': 1.0, 'used': 1.0, 'that': 1.0, 'food': 1.0, 'into': 1.0, 'or': 1.0, 'drool': 1.0, 'many': 1.0, 'all': 1.0, 'pvc': 1.0, 'clean': 1.0, 'for': 1.0, 'bumkins': 1.0, 'light': 1.0, 'bibs': 1.0, 'makes': 1.0, 'but': 1.0, 'phalates': 1.0, 'easy': 1.0, 'cloth': 1.0, 'tried': 1.0, 'are': 1.0, 'now': 1.0, 'to': 2.0, 'breathable': 1.0, 'and': 2.0, 'ones': 1.0, 'the': 6.0, 'great': 1.0, 'no': 1.0, 'super': 1.0, 'at': 1.0, 'best': 1.0, 'catching': 1.0}
Word element => {'every': 1.0, 'of': 1.0, 'rest': 1.0, 'up': 1.0, 'wash': 1.0, 'dry': 2.0, 'hang': 1.0, 'sink': 1.0, 'rinse': 1.0, 'held': 1.0, 'or': 1.0, 'them': 1.0, 'wipe': 1.0, 'i': 2.0, 'her': 1.0, 'clean': 1.0, 'easy': 1.0, 'bumkins': 2.0, 'problem': 2.0, 'which': 1.0, 'catch': 1.0, 'off': 4.0, 'that': 2.0, 'into': 1.0, 'other': 2.0, 'pull': 1.0, 'my': 1.0, 'with': 4.0, 'this': 1.0, 'is': 3.0, 'bib': 1.0, 's': 2.0, 't': 1.0, 'weekend': 1.0, 'job': 1.0, 'the': 9.0, 'place': 1.0, 'not': 1.0, 'able': 1.0, 'sit': 1.0, 'only': 2.0, 'works': 1.0, 'all': 1.0, 'as': 1.0, 'our': 1.0, 'to': 3.0, 'grow': 1.0, 'laundry': 1.0, 'old': 1.0, 'very': 1.0, 'great': 1.0, 'big': 1.0, 'so': 1.0, 'pocket': 1.0, 'was': 1.0, 'doesn': 1.0, 'food': 1.0, 'but': 1.0, 'in': 2.0, 'then': 1.0, 'falling': 1.0, 'fine': 1.0, 'right': 1.0, 'and': 2.0, '14': 1.0, 'does': 1.0, 'than': 1.0, 'it': 8.0, 'month': 1.0, 'she': 1.0, 'll': 1.0}
Word element => {'eat': 1.0, 'just': 1.0, 'kiddos': 1.0, 'when': 1.0, 'tend': 1.0, 'say': 1.0, 'tucked': 1.0, 'table': 1.0, 'bib': 2.0, 'might': 1.0, 'found': 1.0, 'haven': 1.0, 'food': 1.0, 'sometimes': 1.0, 'completely': 1.0, 'than': 1.0, 'being': 2.0, 'mentioned': 1.0, 'note': 1.0, 'side': 1.0, 'solids': 2.0, '3rd': 1.0, 'more': 1.0, 'even': 1.0, 'buy': 1.0, 'also': 1.0, 'will': 2.0, 'but': 1.0, 'messy': 2.0, 'others': 1.0, 'she': 2.0, 'while': 2.0, 'big': 1.0, 'child': 1.0, 'year': 2.0, 'enough': 3.0, 'snap': 1.0, 'catch': 1.0, '3': 1.0, 'large': 1.0, 's': 2.0, 'we': 3.0, 'ago': 1.0, 't': 2.0, 'a': 4.0, 'shorter': 1.0, 'for': 2.0, 'love': 1.0, 'months': 1.0, 'ordered': 2.0, 'old': 2.0, 'little': 1.0, 'two': 1.0, 'bibs': 2.0, 'these': 2.0, 'once': 1.0, 'down': 1.0, 'several': 1.0, 'have': 3.0, 'is': 5.0, 'second': 1.0, '2': 2.0, 'fresh': 1.0, 'and': 7.0, 'to': 11.0, 'stiffer': 1.0, 'sewn': 1.0, 'our': 1.0, 'as': 5.0, 'almost': 1.0, 'now': 1.0, 'was': 1.0, 'so': 1.0, 'my': 5.0, 'under': 1.0, 'often': 1.0, 'pocket': 2.0, 'quite': 1.0, 'velcro': 3.0, 'beginning': 1.0, 'eating': 1.0, 'are': 1.0, 'first': 1.0, 'center': 1.0, 'snaps': 1.0, 'with': 2.0, 'few': 1.0, 'this': 3.0, 'because': 1.0, 'that': 6.0, 'long': 2.0, 'isn': 1.0, 'be': 2.0, 'bonus': 1.0, 'rather': 1.0, 'like': 1.0, 'finger': 1.0, 'of': 5.0, 'convert': 1.0, 'device': 1.0, 'the': 13.0, 'ability': 1.0, 'kam': 1.0, 'great': 1.0, 'throw': 1.0, 'per': 1.0, 'in': 3.0, 'use': 4.0, 'wash': 1.0, 'open': 1.0, 'over': 1.0, 'one': 2.0, 'too': 1.0, 'happy': 1.0, 'try': 1.0, 'do': 1.0, 'not': 1.0, '1': 1.0, 'since': 1.0, 'would': 1.0, 'likely': 1.0, 'preserve': 1.0, 'kept': 1.0, 'problem': 1.0, 'possible': 1.0, 'begins': 1.0, 'washing': 1.0, 'water': 1.0, 'sink': 1.0, 'lots': 2.0, 'them': 2.0, 'has': 1.0, 'i': 8.0, 'well': 1.0, 'does': 1.0, 'it': 4.0, 'wear': 1.0, 'painting': 1.0, 'out': 1.0, 'tried': 1.0, 'soap': 1.0, 'rid': 1.0, 'gotten': 1.0, 'years': 1.0}
Word element => {'others': 1.0, 'like': 1.0, 'try': 1.0, 'peace': 1.0, 'does': 1.0, 'quickly': 1.0, 'dirty': 1.0, 'when': 1.0, 'of': 1.0, 'stiff': 1.0, 'the': 3.0, 'remove': 1.0, 'dries': 1.0, 'on': 2.0, 'faucet': 1.0, 'is': 3.0, 'to': 2.0, 'easy': 1.0, 'and': 2.0, 'bib': 2.0, 'baby': 2.0, 'it': 1.0, 'this': 1.0, 'a': 1.0, 'fabric': 1.0, 'that': 1.0, 'not': 2.0, 'tug': 1.0, 'or': 1.0, 'put': 1.0, 'uncomfortable': 1.0, 'can': 1.0, 'also': 1.0, 'wash': 1.0, 'under': 1.0, 'made': 1.0, 'out': 1.0}
Word element => {'arm': 1.0, 'complaint': 1.0, 'only': 1.0, 'issue': 1.0, 'when': 1.0, 'etc': 1.0, 'bag': 1.0, 'packing': 1.0, 'good': 1.0, 'an': 1.0, 'but': 1.0, 'are': 3.0, 'inbe': 1.0, 'for': 2.0, 'in': 1.0, 'rubber': 1.0, 'i': 1.0, 'old': 1.0, 'year': 1.0, 'ok': 1.0, 'small': 1.0, 'food': 1.0, 'space': 1.0, 'prefer': 1.0, 'my': 2.0, 'cup': 1.0, 'bjorn': 1.0, 'fairly': 1.0, 'bottom': 1.0, 'holes': 1.0, 'diaper': 1.0, 'the': 4.0, 'more': 1.0, 'these': 2.0, 'ones': 1.0, 'that': 3.0, 'catches': 1.0, 'is': 3.0, 'like': 1.0}
Word element => {'that': 1.0, 'way': 1.0, 'clothes': 1.0, 'save': 1.0, 'to': 1.0, 'had': 2.0, 'wish': 1.0, 'for': 1.0, 've': 1.0, 'other': 1.0, 'able': 1.0, 'have': 1.0, 'whole': 1.0, 'i': 4.0, 'and': 1.0, 'bib': 1.0, 'ever': 1.0, 'shirt': 1.0, 'more': 1.0, 'the': 2.0, 'best': 1.0, 'kids': 1.0, 'covers': 1.0, 'them': 1.0, 'my': 1.0, 'pants': 1.0, 'may': 1.0, 'three': 1.0, 'been': 1.0}
Word element => {'cute': 1.0, 'bonus': 1.0, 'added': 1.0, 'an': 1.0, 'too': 1.0, 'machine': 1.0, 'fine': 1.0, 'or': 1.0, 'cloth': 1.0, 'wash': 1.0, 'with': 1.0, 'i': 2.0, 'old': 1.0, 'bib': 1.0, 'same': 1.0, 'in': 3.0, 'but': 1.0, 'perfect': 1.0, 'this': 1.0, 'these': 1.0, 'the': 2.0, 'my': 1.0, 'more': 1.0, 'is': 3.0, 'going': 1.0, 'a': 3.0, '15': 1.0, 'do': 1.0, 'much': 1.0, 'months': 1.0, 'few': 1.0, 'just': 1.0, 'large': 1.0, 'days': 1.0, 'love': 1.0, 'for': 1.0, 'clothing': 1.0, 'be': 1.0, 'wipe': 1.0, 'washing': 1.0, 'how': 1.0, 'smaller': 1.0, 'bit': 1.0, 'so': 2.0, 'of': 1.0, 'her': 1.0, 'to': 2.0, 'as': 2.0, 'it': 1.0, 'month': 1.0, 'covers': 1.0, 'she': 1.0, 'easy': 1.0, 'messy': 1.0, 'have': 1.0, 'material': 1.0, 'bibs': 1.0, 'they': 2.0, 're': 2.0, 'off': 1.0}
Word element => {'as': 1.0, 'kites': 1.0, 'or': 1.0, 'toys': 2.0, 'seller': 1.0, 'disappointed': 1.0, 'am': 1.0, 'years': 1.0, 'have': 1.0, 'send': 1.0, 'exchange': 1.0, 'wanted': 1.0, '8': 1.0, 'bottom': 1.0, '1336590026': 1.0, 'com': 1.0, 'product': 3.0, 'for': 2.0, 'www': 1.0, 'think': 1.0, 'definitely': 1.0, 'utf8': 1.0, 'on': 6.0, 'an': 2.0, 'go': 3.0, 't': 1.0, '1': 1.0, 'and': 12.0, 'sleeved': 1.0, 'very': 2.0, '2': 2.0, 'can': 1.0, 'tails': 1.0, 'faithful': 1.0, 'most': 1.0, 'the': 10.0, 'place': 1.0, 'however': 1.0, 'waterproof': 1.0, 'called': 1.0, 'ie': 1.0, 'only': 1.0, 'end': 1.0, 'ordered': 1.0, 'offer': 1.0, 'return': 1.0, 'well': 1.0, 'fast': 1.0, 'i': 9.0, 'them': 1.0, 'cars': 2.0, 'middle': 1.0, 'http': 1.0, 'shipping': 1.0, 'been': 1.0, 'blue': 1.0, 'amazon': 3.0, 'trains': 1.0, 'bib': 3.0, 'do': 1.0, 'ships': 1.0, 'with': 5.0, 'bumkins': 2.0, 'it': 4.0, 'qid': 1.0, 'in': 1.0, 'said': 1.0, 'dp': 1.0, 'black': 1.0, 'assured': 1.0, 'sr': 2.0, 'pronounced': 1.0, 'inc': 1.0, 'a': 4.0, 'thy': 1.0, 'should': 1.0, 'customer': 1.0, 'wheels': 1.0, 'their': 1.0, 'they': 4.0, 'ref': 1.0, 'is': 2.0, 'shipped': 1.0, 'to': 3.0, 'background': 1.0, 'first': 1.0, 'river': 1.0, 'b000em7kvg': 1.0, 'then': 1.0, 'guess': 1.0, 'order': 2.0, 'ship': 1.0, 'correct': 1.0, 'what': 1.0, 'me': 2.0, 'received': 1.0, 'also': 2.0, 'will': 1.0, 'because': 1.0, 'that': 1.0, 'common': 1.0, 'different': 1.0, 'get': 1.0, 'one': 1.0, 'mistake': 2.0, 'couldn': 1.0, 'free': 1.0, 'new': 1.0, 'although': 1.0, 'was': 1.0, 'got': 1.0, 'green': 2.0, 'same': 1.0, 'again': 1.0}
Word element => {'after': 1.0, 'so': 1.0, 'washing': 1.0, 'out': 1.0, 'up': 1.0, 'of': 1.0, 'offers': 1.0, 'my': 2.0, 'are': 1.0, 'the': 1.0, 'great': 1.0, 'more': 1.0, 'this': 1.0, 'feeding': 1.0, 'handy': 1.0, 'coming': 1.0, 'by': 1.0, 'bibs': 1.0, 'finger': 1.0, 'one': 1.0, 'bumkins': 1.0, 'hold': 1.0, 'far': 1.0, 'favorite': 1.0, 'and': 2.0, 'well': 1.0, 'a': 1.0, 'bit': 1.0, 'they': 2.0, 'coverage': 1.0, 'which': 1.0, 'wash': 2.0, 'in': 1.0, 'machine': 1.0, 'look': 1.0, 'comes': 1.0, 'now': 1.0, 'son': 1.0, 'is': 1.0, 'that': 1.0}
Word element => {'recommend': 1.0, 'of': 1.0, 'a': 1.0, 'offers': 1.0, 'and': 1.0, 'pretty': 1.0, 'is': 1.0, 'i': 2.0, 'coverage': 1.0, 'it': 2.0, 'would': 1.0, 'was': 1.0, 'worried': 1.0, 'that': 1.0, 'wouldn': 1.0, 't': 1.0, 'lot': 1.0, 'long': 2.0, 'be': 1.0, 'enough': 1.0, 'but': 1.0}
Word element => {'easy': 1.0, 'quick': 1.0, 'dry': 1.0, 'sink': 1.0, 'meal': 1.0, 'just': 1.0, 'easier': 1.0, 'arms': 1.0, 'nearly': 1.0, 'up': 1.0, 'wash': 1.0, 'over': 1.0, 'me': 1.0, 'helps': 1.0, 'the': 4.0, '2': 1.0, 'enough': 2.0, 'already': 1.0, 'and': 6.0, 'eater': 1.0, 'spills': 1.0, 'i': 4.0, 'this': 2.0, 'it': 6.0, 'have': 2.0, 'always': 1.0, 'sit': 1.0, 'in': 2.0, 'lap': 1.0, 'son': 1.0, 'great': 1.0, 'spend': 1.0, 'big': 1.0, 'messy': 1.0, 'old': 1.0, 'laundry': 1.0, 'next': 1.0, 'that': 1.0, 'before': 1.0, 'room': 1.0, 'bit': 1.0, 'time': 1.0, 'boy': 1.0, 'is': 2.0, 'hang': 1.0, 'one': 1.0, 'keep': 2.0, 'pretty': 1.0, 'year': 1.0, 'his': 3.0, 'long': 1.0, 'clothes': 1.0, 'a': 3.0, 's': 2.0, 'clean': 1.0, 'fits': 1.0, 'him': 2.0, 'all': 1.0, 'to': 2.0, 'on': 2.0, 'catch': 1.0, 'because': 1.0, 'goes': 1.0}
Word element => {'months': 1.0, 'than': 1.0, 'retain': 1.0, 'edges': 1.0, 'period': 1.0, 'soapy': 1.0, 'nightly': 1.0, 'mold': 2.0, 'i': 2.0, 'but': 2.0, 'past': 1.0, 'four': 1.0, 'food': 1.0, 'can': 1.0, 'to': 1.0, 'wanted': 1.0, 'really': 1.0, 'bibs': 3.0, 'material': 1.0, 'coating': 1.0, 'over': 2.0, 'stay': 1.0, 'proprietary': 1.0, 'have': 3.0, 'their': 1.0, 'should': 2.0, 'impermeable': 1.0, 'my': 2.0, 'isn': 1.0, 'one': 1.0, 'black': 1.0, 'hang': 1.0, 'all': 3.0, 'potentially': 1.0, 'like': 1.0, 'them': 1.0, 'make': 1.0, 'and': 5.0, 'be': 1.0, 'clean': 1.0, 'window': 1.0, 'in': 4.0, 'm': 1.0, 'star': 1.0, 'with': 2.0, 'it': 3.0, 'because': 3.0, 'that': 3.0, 'into': 1.0, 'despite': 1.0, 'frequently': 1.0, 'tags': 1.0, 'what': 1.0, 'drying': 1.0, 'become': 1.0, 'used': 2.0, 't': 3.0, 'giving': 1.0, 's': 1.0, 'these': 2.0, 'longer': 1.0, 'the': 3.0, 'of': 2.0, 'washing': 1.0, 'plastic': 4.0, 'bumkin': 3.0, 'bleach': 1.0, 'soaks': 1.0, 'seven': 1.0, 'meals': 1.0, 'water': 2.0, 'less': 1.0, 'eats': 1.0, 'grandmother': 1.0, 'sunny': 1.0, 'soaking': 1.0, 'bib': 3.0, 'her': 2.0, 'house': 1.0, 'off': 1.0, 'machine': 1.0, 'wearing': 1.0, 'price': 1.0, 'year': 1.0, 'peeled': 1.0, 'fabric': 1.0, 'for': 2.0, 'week': 1.0, 'just': 1.0, 'why': 2.0, 'few': 1.0, 'rotation': 1.0, 'thicker': 1.0, 'embedded': 1.0, 'eventually': 1.0, 'didn': 1.0, 'perhaps': 1.0, 'was': 2.0, 'truly': 1.0, 'scrubbing': 1.0, 'daughter': 2.0, 'dried': 1.0, 'front': 1.0, 'a': 5.0, 'tiny': 1.0, 'bits': 2.0, 'getting': 1.0, 'they': 1.0, 'soft': 1.0, 'at': 1.0, 'is': 1.0}
Word element => {'outfits': 1.0, 'no': 1.0, 'they': 1.0, 'when': 1.0, 'lap': 1.0, 'enough': 1.0, 'even': 1.0, 'long': 1.0, 'is': 1.0, 'that': 1.0, 'their': 2.0, 'way': 1.0, 'now': 1.0, 'ruined': 1.0, 'toddlers': 1.0, 'year': 1.0, 'for': 2.0, 'one': 1.0, 'my': 2.0, 'are': 2.0, 'sitting': 1.0, 'godsend': 1.0, 'a': 1.0, 'them': 1.0, 'covers': 2.0, 'bibs': 1.0, 'more': 1.0, 'behind': 1.0, 'the': 1.0, '2': 1.0, 'these': 1.0, 'and': 2.0, 'bought': 1.0, 'friends': 1.0, 'i': 1.0, 'old': 1.0, 'buy': 1.0, 'all': 2.0, 'eating': 1.0, 'shoulders': 1.0, 'with': 1.0, 'it': 2.0}
Word element => {'ever': 1.0, 'neck': 1.0, 'the': 1.0, 'around': 1.0, 'on': 1.0, 'is': 1.0, 'use': 1.0, 'easy': 1.0, 'to': 1.0, 'bib': 2.0, 'best': 1.0, 'big': 1.0, 'very': 1.0, 'this': 1.0, 'it': 3.0, 'month': 1.0, 'little': 1.0, 'old': 1.0, 'i': 2.0, 'my': 1.0, 'clean': 1.0, 'made': 1.0, '6': 1.0, 's': 1.0, 'love': 3.0, 'for': 1.0, 'and': 1.0, '1': 1.0, 'a': 1.0}
Word element => {'saver': 1.0, 'clothes': 1.0, 'life': 1.0, 'a': 1.0, 'unable': 1.0, 'coverage': 1.0, 'gives': 1.0, 'floor': 1.0, 'more': 1.0, 'the': 1.0, 'on': 1.0, 'throw': 1.0, 'off': 2.0, 'them': 2.0, 'it': 1.0, 'eating': 1.0, 'this': 3.0, 'able': 1.0, 'have': 1.0, 'loved': 1.0, 'used': 1.0, 've': 1.0, 'to': 2.0, 'was': 2.0, 'bibs': 1.0, 'she': 1.0, 'fantastic': 1.0, 'bumkins': 2.0, 'absolutely': 1.0, 'month': 1.0, 'is': 3.0, 'bib': 3.0, 'and': 4.0, 'other': 1.0, 'those': 1.0, 'i': 1.0, 'old': 1.0, 'however': 1.0, 'pull': 2.0, 'my': 2.0, 'while': 1.0, '14': 1.0, 'junior': 1.0, 'too': 1.0, 'daughter': 2.0}
Word element => {'well': 1.0, 'her': 1.0, 'still': 1.0, 'version': 1.0, 'sauce': 1.0, 'long': 1.0, 'even': 1.0, 'wearing': 1.0, 'small': 1.0, 'she': 1.0, 'worrying': 1.0, 'along': 1.0, 'with': 1.0, 'only': 1.0, 'lot': 1.0, 'bib': 1.0, '18': 1.0, 'sooner': 1.0, 'fits': 1.0, 'my': 2.0, 'is': 5.0, 'more': 1.0, 'the': 5.0, 'these': 1.0, 'greatest': 1.0, '21': 1.0, 'sleeve': 1.0, 'summer': 1.0, 'though': 1.0, 'for': 2.0, 'daughter': 2.0, 'about': 2.0, 'thing': 1.0, 'no': 1.0, 'better': 1.0, 'will': 1.0, 'be': 1.0, 'again': 1.0, 'in': 1.0, 'this': 2.0, 'wish': 1.0, 'what': 1.0, 'pasta': 1.0, 'had': 1.0, 'a': 1.0, 'months': 1.0, 'i': 2.0, 'pounds': 1.0, 'and': 1.0, 'great': 1.0, 'big': 1.0}
Word element => {'need': 1.0, 'bibs': 1.0, 'perfect': 1.0, 'are': 2.0, 'bought': 1.0, 'wish': 1.0, 'every': 1.0, 'after': 1.0, 'his': 1.0, 'sooner': 1.0, 'change': 1.0, 'have': 1.0, 'would': 1.0, 'and': 2.0, 'toddlers': 1.0, 'size': 1.0, 'i': 1.0, 'buy': 1.0, 'old': 1.0, 'only': 1.0, 'he': 1.0, 'this': 1.0, 'out': 1.0, 'meal': 1.0, 'been': 1.0, 'now': 1.0, 'had': 2.0, 'to': 2.0, 'was': 1.0, 'bib': 1.0, '18': 1.0, 'finally': 1.0, 'we': 5.0, 'pants': 1.0, 'smaller': 1.0, 'my': 1.0, 'these': 2.0, 'ones': 1.0, 'figured': 1.0, 'the': 2.0, 'son': 1.0, 'junior': 1.0, 'when': 1.0, 'months': 1.0, 'for': 2.0, 'using': 1.0}
Word element => {'spill': 1.0, 'that': 1.0, 'food': 1.0, 'doens': 1.0, 'often': 1.0, 'because': 1.0, 'are': 1.0, 'they': 1.0, 't': 1.0, 'the': 1.0, 'these': 1.0, 'pocket': 1.0, 'a': 1.0, 'it': 1.0, 'farther': 1.0, 'have': 1.0, 'loves': 1.0, 'stuck': 1.0, 'everyone': 1.0, 'i': 2.0, 'waterproof': 1.0, 'is': 1.0, 'catch': 1.0, 'which': 1.0, '5': 1.0, 'wish': 1.0, 'of': 1.0, 'plus': 1.0, 'and': 1.0, 'do': 1.0, 'them': 1.0, 'out': 1.0}
Word element => {'little': 1.0, 'toddler': 1.0, 'my': 1.0, 'on': 1.0, 'as': 1.0, 'kind': 1.0, 'very': 1.0, 'are': 3.0, 'they': 2.0, 'get': 1.0, 'and': 1.0, 'miss': 1.0, 'hit': 1.0, 'with': 1.0, 'it': 1.0, 'together': 1.0, 'at': 1.0, 'cute': 1.0, 'ordered': 1.0, 'one': 2.0, 'well': 1.0, 'a': 2.0, 'hole': 1.0, 'bibs': 1.0, 'wasn': 1.0, 'made': 1.0, 'to': 1.0, 'was': 1.0, 'had': 1.0, 'arm': 1.0, 'other': 1.0, 'holes': 1.0, 'bulky': 1.0, 'these': 1.0, 'great': 1.0, 'sewn': 1.0, 'the': 4.0, 't': 1.0, 'poorly': 1.0, 'of': 2.0, 'bottom': 1.0, 'snug': 1.0, 'i': 2.0, 'guess': 1.0, 's': 1.0}
Word element => {'bit': 1.0, 'a': 1.0, 'is': 1.0, 'arm': 1.0, 'clean': 1.0, 'to': 1.0, 'larger': 1.0, 'bought': 1.0, 'hole': 1.0, 'the': 1.0, 'my': 1.0, 'and': 1.0, 'wish': 1.0, 'trucks': 1.0, 'for': 1.0, 'who': 1.0, 'grandson': 1.0, 'this': 1.0, 'loves': 1.0, 'cars': 1.0, 'just': 1.0, 'easy': 1.0}
Word element => {'out': 1.0, 'eating': 1.0, 'when': 1.0, 'this': 1.0, 'enough': 1.0, 'that': 1.0, 'were': 2.0, 'sleeves': 1.0, 'did': 1.0, 'these': 1.0, 'the': 5.0, 'nicely': 1.0, 'toddler': 1.0, 'my': 1.0, 'they': 1.0, 'hard': 1.0, 'was': 2.0, 'to': 2.0, 'machine': 1.0, 'on': 2.0, 'it': 1.0, 'she': 1.0, 'easy': 1.0, 'keep': 1.0, 'bib': 3.0, 'lot': 1.0, 'didn': 1.0, 'mind': 1.0, 'material': 1.0, 'comfortable': 1.0, 'great': 1.0, 'nice': 1.0, 'clean': 1.0, 'trick': 1.0, 'survived': 1.0, 'multiple': 1.0, 'washes': 1.0, 'and': 2.0, 'too': 1.0, 'regular': 1.0, 'in': 1.0, 'wash': 1.0, 'quite': 1.0, 'compliments': 1.0, 't': 1.0, 'a': 2.0, 'we': 2.0, 'coverage': 1.0, 'design': 1.0, 'received': 1.0, 'of': 2.0}
Word element => {'regular': 1.0, 'a': 1.0, 'like': 1.0, 'put': 1.0, 'to': 2.0, 'bib': 1.0, 'arms': 1.0, 'cut': 1.0, 'so': 1.0, 'it': 3.0, 'can': 1.0, 'or': 1.0, 'i': 2.0, 'old': 1.0, 'easier': 1.0, 'sink': 1.0, 'my': 1.0, 'the': 3.0, 'just': 1.0, 'seconds': 1.0, 'for': 1.0, 'wash': 1.0, 'in': 3.0, '6': 1.0, 'takes': 1.0, 'year': 1.0, 'big': 1.0, 'and': 1.0, 'on': 1.0, 'dries': 1.0, '20': 1.0, 'make': 1.0, 'enough': 1.0, 'min': 1.0, 'dryer': 1.0}
Word element => {'in': 1.0, 'doesn': 1.0, 'rinse': 1.0, 'wipe': 1.0, 'to': 1.0, 'easy': 1.0, 'securely': 1.0, 'very': 1.0, 'year': 1.0, 'still': 1.0, 'worn': 1.0, 'on': 1.0, 'has': 1.0, 'keeps': 1.0, '3': 1.0, 'it': 4.0, 'without': 1.0, 'shirts': 1.0, 'my': 1.0, 'go': 2.0, '2': 2.0, 't': 2.0, 'washer': 1.0, 'wears': 1.0, 'clean': 2.0, 'comfortably': 1.0, '1': 3.0, 'couldn': 1.0, 'and': 1.0, 'well': 1.0, 'since': 1.0, 'about': 1.0, 'or': 1.0, 'stays': 1.0}
Word element => {'times': 1.0, 'many': 2.0, 'chair': 1.0, 'high': 1.0, 'straps': 1.0, 'me': 1.0, 'but': 1.0, 'crumbs': 1.0, 'saved': 1.0, 'this': 2.0, 'love': 1.0, 'great': 1.0, 'know': 1.0, 'bib': 1.0, 'and': 1.0, 'for': 1.0, 'from': 1.0, 'catching': 1.0, 'puke': 1.0, 'cleaning': 1.0, 'has': 1.0, 'ich': 1.0, 'i': 1.0}
Word element => {'recommend': 1.0, 'highchair': 1.0, 'supplies': 1.0, 'our': 1.0, 'for': 1.0, 'art': 1.0, 'one': 4.0, 'i': 1.0, 'in': 2.0, 'clean': 1.0, 'highly': 1.0, 'baby': 1.0, 'my': 2.0, 'keeps': 1.0, 'of': 1.0, 'and': 2.0, 'bib': 2.0, 'toddler': 1.0, 'diaper': 1.0, 'the': 2.0, 'mess': 1.0, 'have': 1.0, 'bag': 1.0, 'place': 1.0, 'kind': 1.0, 'is': 1.0, 'this': 2.0, 'it': 1.0, 'with': 1.0, 'third': 1.0}
Word element => {'end': 1.0, 'on': 1.0, 'complaints': 1.0, 'use': 1.0, 'in': 1.0, 'here': 1.0, 'when': 1.0, 'i': 1.0, 'this': 1.0, 'grandkids': 1.0, 'have': 2.0, 'two': 1.0, 'no': 1.0, 'of': 1.0, 'and': 1.0, 'always': 1.0, 'should': 1.0, 'three': 1.0, 'these': 1.0, 'they': 1.0, 'the': 1.0, 'are': 2.0, 'gotten': 1.0}
Word element => {'unable': 1.0, 'is': 1.0, 'arms': 1.0, 'over': 1.0, 'go': 1.0, 'they': 1.0, 'but': 1.0, 'closure': 1.0, 'a': 1.0, 'out': 1.0, 'because': 2.0, 'off': 2.0, 'daughter': 1.0, 'our': 1.0, 'figured': 1.0, 'these': 2.0, 'perfect': 1.0, 'apart': 1.0, 'had': 1.0, 'to': 3.0, 'how': 1.0, 'feeding': 1.0, 'her': 2.0, 'bibs': 1.0, 'we': 1.0, 'pull': 3.0, 'have': 1.0, 'it': 1.0, 'velcro': 2.0, 'get': 1.0, 'and': 1.0, 'she': 2.0, 'mid': 1.0, 'would': 1.0}
Word element => {'never': 1.0, 'that': 1.0, 'were': 1.0, 'they': 1.0, 'it': 1.0, 'yanking': 1.0, 'plastic': 1.0, 'of': 2.0, 'stains': 1.0, 'keeping': 1.0, 'feel': 1.0, 'its': 1.0, 'job': 1.0, 'off': 2.0, 'baby': 2.0, 'fits': 1.0, 'but': 1.0, 'didn': 1.0, 'sheeting': 1.0, 'and': 2.0, 'bib': 2.0, 'like': 2.0, 'used': 1.0, 'does': 1.0, 'fine': 1.0, 'my': 1.0, 'after': 1.0, 'so': 1.0, 'kept': 1.0, 'wearing': 1.0, 'food': 1.0, 's': 1.0, 'clothes': 1.0, 'the': 3.0, 't': 1.0}
Word element => {'dry': 1.0, 'air': 1.0, 'machine': 1.0, 'wash': 1.0, 'out': 1.0, 'times': 1.0, 'ones': 1.0, 'the': 7.0, 'these': 2.0, 'go': 1.0, 't': 1.0, 'was': 1.0, 'that': 2.0, 'meals': 1.0, 'for': 1.0, 'coverage': 1.0, 'has': 1.0, 'easy': 1.0, 'provide': 1.0, 'bibs': 1.0, 'aren': 1.0, 'around': 2.0, 'through': 1.0, 'good': 2.0, 'only': 2.0, 'it': 1.0, 'during': 1.0, 'very': 1.0, 'to': 1.0, 'as': 2.0, 'too': 2.0, 'and': 4.0, 'let': 1.0, 'neck': 1.0, 'back': 1.0, 'i': 3.0, 'one': 2.0, 'bought': 1.0, 'about': 1.0, '6': 1.0, 'of': 3.0, 'quality': 1.0, 'them': 3.0, 'kids': 1.0, 'lost': 1.0, 'laminate': 1.0, 'think': 1.0, 'on': 1.0, 'usually': 1.0, 'because': 1.0, 'move': 1.0, 'went': 1.0, 'have': 1.0, 'dryer': 1.0, 'take': 1.0, 'many': 1.0}
Word element => {'another': 1.0, 'buying': 1.0, 'be': 1.0, 'fav': 1.0, 'her': 1.0, 'def': 1.0, 'is': 1.0, 'says': 1.0, 'one': 1.0, 'i': 2.0, 'it': 2.0, 'bought': 1.0, 'my': 2.0, 'bib': 1.0, 'and': 1.0, 'loves': 1.0, 'this': 1.0, 'grandaughter': 1.0, 'will': 1.0, 'she': 1.0, 'for': 1.0, 'daughter': 1.0}
Word element => {'clothes': 1.0, 'the': 1.0, 'keep': 1.0, 'super': 1.0, 'bib': 1.0, 'and': 1.0, 'clean': 1.0, 'will': 1.0, 'for': 1.0, 'meal': 1.0, 'art': 1.0, 'or': 1.0, 'time': 1.0, 'waterproof': 1.0, 'totally': 1.0}
Word element => {'his': 1.0, 'covers': 1.0, 'clean': 1.0, 'want': 1.0, 'i': 2.0, 'one': 1.0, 'guy': 1.0, 'little': 1.0, 'didn': 1.0, 'plastic': 1.0, 'my': 1.0, 't': 2.0, 'highchair': 1.0, 'keeps': 1.0, 'a': 1.0, 'since': 1.0, 'and': 1.0, 'like': 1.0, 'work': 1.0, 'shoulders': 1.0, 'hard': 1.0, 'it': 2.0, 'wouldn': 1.0, 'with': 1.0, 'our': 1.0, 'that': 1.0}
Word element => {'clothes': 1.0, 'velcro': 1.0, 'about': 1.0, 'worry': 1.0, 'dry': 1.0, 'hang': 1.0, 'sink': 1.0, 'in': 1.0, 'just': 1.0, 'laundry': 1.0, 'type': 1.0, 'because': 1.0, 'better': 1.0, 'sticking': 1.0, 'even': 1.0, 'spoon': 1.0, 'or': 2.0, 'down': 2.0, 'from': 1.0, 'safe': 1.0, 'made': 1.0, 'pants': 1.0, 'plastic': 1.0, 'stage': 1.0, 'this': 2.0, 'on': 1.0, 'don': 2.0, 'so': 2.0, 'sleeves': 1.0, 'i': 3.0, 'both': 1.0, 'arms': 1.0, 'at': 1.0, 'bib': 2.0, 'falls': 1.0, 'small': 1.0, 'have': 2.0, 'deal': 1.0, 'the': 8.0, 'holes': 1.0, 'spray': 1.0, 'tummy': 1.0, 'infants': 1.0, 'load': 1.0, 'shoulders': 2.0, 'first': 1.0, 'with': 1.0, 'to': 5.0, 'my': 2.0, 'are': 2.0, 'arm': 1.0, 'top': 2.0, 'stomach': 1.0, 'gets': 2.0, 'son': 1.0, 'dribbled': 1.0, 'lap': 1.0, 'getting': 1.0, 'there': 1.0, 'of': 7.0, 'off': 1.0, 'enough': 1.0, 'cover': 2.0, 'his': 5.0, 'long': 1.0, 'other': 1.0, 'shirt': 2.0, 'that': 1.0, 'next': 1.0, 'unlike': 1.0, 'it': 4.0, 'covers': 1.0, 'food': 2.0, 'most': 1.0, 'product': 1.0, 'smeared': 1.0, 'for': 1.0, 'and': 4.0, 'too': 1.0, 'is': 2.0, 't': 2.0, 's': 1.0, 'a': 3.0, 'bibs': 1.0, 'portion': 1.0}
Word element => {'larger': 1.0, 'projects': 1.0, 'art': 1.0, 'for': 2.0, 'used': 1.0, 'this': 1.0, 'toddlers': 1.0, 'is': 1.0, 'doing': 1.0, 'a': 1.0, 'that': 1.0, 'nice': 1.0, 'size': 1.0, 'infants': 1.0, 'and': 1.0, 'bib': 1.0, 'well': 1.0, 'large': 1.0, 'be': 1.0, 'works': 1.0, 'can': 1.0, 'even': 1.0}
Word element => {'place': 1.0, 'in': 1.0, 'stay': 1.0, 'since': 1.0, 'upset': 1.0, 'off': 1.0, 'try': 1.0, 'much': 1.0, 'not': 1.0, 'keep': 1.0, 'did': 1.0, 'that': 1.0, 'say': 1.0, 'have': 1.0, 'keeps': 1.0, 'birthday': 1.0, 'baby': 1.0, 'them': 2.0, 'clean': 2.0, 'pulling': 1.0, 'my': 4.0, 'they': 1.0, 'has': 1.0, 'to': 5.0, 'like': 1.0, 'nephews': 2.0, 'bibs': 3.0, 'the': 1.0, 'these': 2.0, 'floor': 1.0, 'bought': 1.0, 'i': 2.0, 'get': 2.0, 'and': 3.0, 'very': 2.0, 'we': 1.0, 'for': 1.0, 'one': 1.0, 'love': 1.0, 'first': 1.0, 'it': 2.0, 'is': 1.0, 'on': 1.0, 'easy': 1.0, 'put': 1.0}
Word element => {'problem': 1.0, 'has': 1.0, 'my': 1.0, 'and': 1.0, 'kiddo': 1.0, 'any': 1.0, 'messy': 1.0, 'clean': 1.0, 'easy': 1.0, 's': 1.0, 'it': 2.0, 'found': 1.0, 'cloth': 1.0, 'i': 1.0, 'use': 1.0, 'in': 1.0, 'stitch': 2.0, 'pocket': 2.0, 'middle': 1.0, 'a': 1.0, 'more': 1.0, 'the': 4.0, 'had': 1.0, 'its': 1.0, 'to': 2.0, 'ok': 1.0, 'open': 1.0, 'wearing': 1.0, 'after': 2.0, 'loosed': 1.0, 'no': 2.0, 'sewed': 1.0, 'two': 1.0, 'around': 1.0, 'up': 2.0, 'of': 1.0, 'but': 1.0, 'weeks': 1.0}
Word element => {'cleaning': 1.0, 'substantial': 1.0, 'when': 1.0, 'easily': 1.0, 'rinsed': 1.0, 'be': 1.0, 'eaters': 1.0, 'sink': 1.0, 'coverage': 1.0, 'good': 1.0, 'provide': 1.0, 'they': 1.0, 'eating': 1.0, 'many': 1.0, 'can': 1.0, '2': 1.0, 'these': 1.0, 'the': 4.0, 'is': 1.0, 'more': 3.0, 'first': 1.0, 'velcro': 1.0, 'it': 1.0, 'years': 1.0, 'about': 1.0, 'year': 3.0, '4': 1.0, 'i': 2.0, 'young': 1.0, 'old': 2.0, 'have': 1.0, 'been': 1.0, 'children': 1.0, 'messy': 1.0, 't': 1.0, 'a': 3.0, 'since': 1.0, 'for': 1.0, 'closure': 1.0, 'using': 1.0, 'child': 1.0, 'bibs': 1.0, 'required': 1.0, 'washes': 1.0, 'and': 3.0, 'sticky': 1.0, 'couple': 1.0, 'get': 1.0, 'another': 1.0, 'my': 2.0, 'after': 1.0, 'so': 1.0, 'was': 2.0, 'machine': 2.0, 'as': 2.0, 'to': 1.0, 'reordered': 1.0, 'in': 3.0, 'washing': 2.0, 'isn': 1.0, 'washed': 1.0, '3': 1.0, 'through': 1.0, 'or': 1.0, 'once': 1.0, 'of': 1.0}
Word element => {'approx': 1.0, 'fastener': 1.0, 'lot': 1.0, 'get': 1.0, 'a': 1.0, 'happen': 1.0, 'covers': 1.0, 're': 1.0, 'october': 1.0, 'girl': 1.0, 'velcro': 1.0, 'it': 1.0, 'with': 1.0, '2013': 1.0, 'little': 1.0, 'our': 1.0, 'they': 1.0, 'growing': 1.0, 'purchased': 1.0, 'gonna': 1.0, 'got': 1.0, 'so': 1.0, 'worry': 1.0, 'when': 1.0, 'less': 1.0, 'baby': 1.0, 'about': 1.0, 's': 1.0, 'clothes': 2.0, 'will': 1.0, 'but': 1.0, 'babies': 1.0, 'all': 1.0, 'dirty': 1.0}
Word element => {'keep': 1.0, 'stay': 1.0, 'ago': 1.0, 'my': 1.0, 'they': 1.0, 'these': 1.0, 'on': 1.0, 'so': 1.0, 'work': 1.0, 'bibs': 1.0, 's': 1.0, 'clothes': 1.0, 'little': 1.0, 'one': 1.0, 'i': 2.0, 'wish': 1.0, 'had': 1.0, 'year': 1.0, 'and': 1.0, 'discovered': 1.0, 'clean': 1.0, 'them': 1.0, 'well': 1.0, 'a': 1.0}
Word element => {'about': 1.0, 'great': 1.0, 'out': 1.0, 'dry': 1.0, 'hang': 1.0, 'soap': 1.0, 'with': 1.0, 'wash': 1.0, 'quickly': 1.0, 'day': 2.0, 'works': 1.0, 'only': 1.0, 'end': 1.0, 'eats': 1.0, 'after': 1.0, 'wipe': 1.0, 'just': 1.0, 'so': 1.0, 'bibs': 1.0, 'crumbs': 1.0, 'burp': 1.0, 'or': 2.0, 'shoulder': 1.0, 'go': 1.0, 'dish': 1.0, 's': 1.0, 'a': 5.0, 'well': 1.0, 'eat': 1.0, 'cloth': 1.0, 'have': 3.0, '4': 1.0, 'two': 1.0, 'i': 7.0, 'catches': 1.0, 'used': 3.0, 'clean': 1.0, 'her': 5.0, 'these': 1.0, 'the': 5.0, 'from': 1.0, 'very': 1.0, 'too': 1.0, 'eater': 1.0, 'and': 8.0, 'beginning': 1.0, 'my': 1.0, 'messy': 1.0, 'daughter': 1.0, 'waist': 1.0, 'to': 6.0, 'kitchen': 1.0, 'in': 1.0, 'lap': 2.0, 'is': 1.0, 'around': 1.0, 'top': 1.0, 'through': 1.0, 'then': 1.0, 'at': 1.0, 'bib': 2.0, '3': 1.0, 'put': 1.0, 'on': 2.0, 'of': 3.0, 'down': 1.0, 'bottom': 1.0, 'basket': 1.0, 'loves': 1.0, 'that': 1.0, 'full': 1.0, 'wish': 1.0, 'this': 1.0, 'she': 1.0, 'covers': 1.0, 'it': 5.0, 'onto': 1.0, 'easy': 1.0, 'towel': 1.0, 'area': 1.0, 'pocket': 1.0}
Word element => {'to': 1.0, 'him': 1.0, 'more': 1.0, 'too': 1.0, 'material': 1.0, 'nice': 1.0, 'always': 1.0, 'thin': 1.0, 'bibs': 1.0, 'has': 1.0, 'son': 1.0, 'is': 2.0, 'my': 1.0, 'bib': 1.0, 'because': 1.0, 'off': 2.0, 'purchased': 1.0, 'cannot': 1.0, 'i': 1.0, 'comfortable': 1.0, 'for': 2.0, 'one': 1.0, 'his': 1.0, 'get': 1.0, 'he': 2.0, 'this': 2.0, 'it': 3.0, 'wear': 1.0, 'so': 1.0, 'sleeves': 1.0, 'pulled': 1.0, 'since': 1.0, 'a': 1.0}
Word element => {'trips': 1.0, 'non': 1.0, 'still': 1.0, 'if': 1.0, 'silver': 1.0, 'difficulties': 1.0, 'communting': 1.0, 'weeks': 1.0, 'umbrella': 1.0, 'micro': 2.0, 'waltz': 1.0, 'trains': 1.0, 'crowded': 1.0, 'space': 1.0, 'up': 1.0, 'takes': 1.0, 'regular': 1.0, 'won': 1.0, 'big': 1.0, 'lot': 1.0, 'too': 2.0, 'just': 1.0, 'subway': 2.0, 'on': 2.0, 'daughter': 1.0, 'commute': 1.0, 'daily': 1.0, 'my': 2.0, 'smaller': 1.0, 'use': 1.0, 'expected': 1.0, 'than': 1.0, 'larger': 1.0, 'like': 1.0, 'rather': 1.0, 'get': 1.0, 'fold': 1.0, 'through': 1.0, 'tricky': 1.0, '1': 1.0, 'drawbacks': 1.0, 'cold': 1.0, 'came': 1.0, 'when': 2.0, 'you': 4.0, 'bumpy': 1.0, 'a': 3.0, 'fit': 1.0, 't': 3.0, 's': 4.0, 'hardly': 1.0, 'gives': 1.0, 'sturdy': 1.0, 'save': 1.0, 'extended': 1.0, 'turnstyles': 1.0, 'were': 1.0, 'hang': 1.0, 'black': 1.0, 'protector': 1.0, 'easily': 1.0, 'that': 1.0, 'as': 2.0, 'any': 1.0, 'bought': 2.0, 'purchasing': 1.0, 'wheels': 1.0, 'description': 1.0, 'actually': 2.0, 'by': 1.0, 'same': 1.0, 'others': 1.0, 'for': 5.0, 'such': 1.0, '2006': 1.0, 'main': 1.0, 'model': 1.0, 'something': 1.0, 'cross': 1.0, 'saved': 1.0, 'i': 4.0, 'blue': 1.0, '07': 1.0, 'our': 3.0, 'stroller': 3.0, 'but': 3.0, 'shelling': 1.0, 'of': 2.0, 'the': 12.0, 'limted': 1.0, 'great': 1.0, 'handle': 1.0, 'is': 2.0, 'later': 1.0, 'very': 1.0, 'stopped': 1.0, 'with': 4.0, 'purchase': 1.0, 'only': 1.0, 'brick': 1.0, 'works': 1.0, 'about': 1.0, 'product': 1.0, 'price': 1.0, 'colors': 1.0, 'and': 4.0, 'listed': 1.0, 'are': 1.0, '65': 1.0, 'plus': 1.0, 'where': 1.0, 'fully': 1.0, 'extras': 1.0, 'from': 1.0, 'didn': 1.0, 'expect': 1.0, 'we': 3.0, 'leg': 2.0, '2': 2.0, 'wind': 1.0, 'to': 2.0, 'colder': 1.0, 'key': 1.0, 'in': 3.0, 'weather': 1.0, 'hood': 1.0, 'excellent': 1.0, 'really': 1.0, 'sidewalks': 1.0, 'this': 2.0, 'it': 7.0, 'recline': 1.0, 'wasn': 1.0, 'out': 1.0, 'will': 1.0, 'event': 1.0, '40': 1.0, 'cover': 2.0, 'aftermarket': 1.0, 'an': 1.0, 'rain': 2.0, 'nearly': 1.0, 'complete': 1.0, 'coverage': 1.0, 'warmer': 1.0, 'so': 1.0, 'need': 2.0, 'made': 1.0, 'which': 1.0, 'good': 1.0, 'given': 1.0, 'naps': 1.0}
Word element => {'dryer': 1.0, 'and': 1.0, 'baby': 1.0, 'my': 1.0, 'the': 3.0, 'for': 1.0, 'while': 1.0, 'attention': 1.0, 's': 1.0, 'in': 1.0, 'also': 1.0, 'a': 1.0, 'well': 1.0, 'washwer': 1.0, 'she': 1.0, 'doll': 1.0, 'likes': 1.0, 'to': 1.0, 'holds': 2.0, 'bite': 1.0, 'on': 1.0, 'it': 1.0, 'up': 1.0, 'ring': 1.0, 'very': 1.0}
Word element => {'one': 2.0, 'it': 3.0, 'with': 1.0, 'young': 1.0, 'purchased': 1.0, 'this': 2.0, 'perfect': 1.0, 'seems': 1.0, 'favorite': 2.0, 'amazon': 2.0, 'is': 1.0, 'make': 1.0, 'on': 2.0, 'natural': 1.0, 'have': 1.0, 'teether': 2.0, 'alot': 1.0, 'wont': 1.0, 'a': 1.0, 'of': 1.0, 'i': 1.0, 'buy': 1.0, 'rattles': 1.0, 'how': 1.0, 'by': 1.0, 'daughter': 1.0, 'love': 3.0, 'for': 1.0, 'com': 2.0, 'far': 1.0, 'teethers': 1.0, 'although': 1.0, 'purchase': 1.0, 'my': 3.0, 'size': 1.0, 'super': 1.0, 'things': 1.0, 'cute': 1.0, 'wood': 1.0, 'to': 3.0, 'regret': 1.0, 'be': 1.0, 'daughters': 1.0, 'and': 3.0, 'play': 1.0, 'yet': 1.0, 'shes': 1.0, 'little': 1.0, 'know': 1.0, 'if': 1.0, 'you': 2.0}
Word element => {'friends': 1.0, 'so': 1.0, 'to': 1.0, 'all': 2.0, 'nj': 1.0, 'good': 1.0, 'snowstorm': 1.0, 'there': 1.0, 'pleasantly': 1.0, 'recommend': 1.0, 'was': 3.0, 'for': 1.0, 'is': 2.0, 'padding': 1.0, 'really': 1.0, 'pretty': 1.0, 'because': 1.0, 'sister': 1.0, 'purchased': 1.0, 'niece': 2.0, 'born': 1.0, 'have': 1.0, 'i': 5.0, 'recently': 1.0, 'my': 3.0, 'and': 4.0, 'would': 1.0, 'new': 1.0, 'it': 5.0, 'she': 1.0, 'cz': 1.0, 'surprised': 1.0, 'us': 1.0, 'late': 1.0, 'saw': 1.0, 'how': 1.0, 'comfortable': 1.0, 'big': 1.0, 'from': 1.0, 'mattress': 1.0, 'this': 1.0, 'pictures': 1.0, 'of': 1.0, 'in': 5.0, 'me': 1.0, 'not': 1.0, 'that': 1.0, 'loves': 1.0, 'basket': 2.0, 'alright': 1.0, 'when': 1.0, 'seen': 1.0, 'the': 5.0, 'myself': 1.0, 'also': 1.0, 'uk': 1.0, 'arrived': 1.0, 's': 2.0, 'a': 3.0, 'few': 1.0, 'definitely': 1.0, 'buy': 1.0, 'days': 1.0}
Word element => {'lascal': 1.0, 'kit': 1.0, 'needed': 1.0, 'probably': 1.0, 'and': 1.0, 'extender': 1.0, 'so': 1.0, 'order': 1.0, 'i': 1.0, 'were': 1.0, 'without': 1.0, 'it': 1.0, 'what': 1.0, 'pegs': 1.0, 'to': 1.0, 'through': 1.0, 'red': 1.0, 'the': 2.0, 'arrived': 1.0, 'them': 1.0, 'is': 1.0, 'useless': 1.0, 'directly': 1.0, 's': 1.0, 'better': 1.0}
Word element => {'already': 1.0, 'people': 1.0, 'many': 1.0, 'walking': 1.0, 'prefer': 1.0, 'would': 1.0, 'quickly': 1.0, 'recommended': 1.0, 'well': 1.0, 'was': 1.0, 'to': 2.0, 'up': 1.0, 'child': 1.0, 'if': 1.0, 'understand': 1.0, 'there': 1.0, 'it': 3.0, 'older': 1.0, 'this': 3.0, 'only': 1.0, 'love': 1.0, 'since': 1.0, 'lot': 1.0, 'a': 2.0, 'might': 1.0, 'we': 1.0, 'that': 3.0, 'balances': 1.0, 'about': 1.0, 'your': 1.0, 'old': 2.0, 'heavier': 1.0, 'the': 1.0, 'comments': 1.0, 'and': 3.0, 'difference': 1.0, '1': 1.0, 'item': 2.0, 'have': 2.0, '5': 1.0, 'not': 1.0, 'work': 1.0, 'but': 1.0, 'comes': 1.0, 'say': 1.0, 'is': 1.0, 'lb': 1.0, 'between': 1.0, 'folds': 1.0, 'my': 2.0, 'i': 3.0, '4': 2.0, 'reviewed': 1.0, 'year': 2.0, 'off': 1.0, 'when': 1.0, 'easily': 1.0}
Word element => {'sites': 1.0, 'other': 1.0, 'on': 1.0, 'less': 1.0, '40': 1.0, 'satisfied': 1.0, 'than': 2.0, 'listed': 1.0, 'colors': 1.0, 'lovely': 1.0, 'not': 1.0, 'after': 1.0, 'in': 3.0, 'more': 1.0, 'is': 4.0, 'it': 4.0, 'perfect': 1.0, 'this': 1.0, 'with': 1.0, 'adorable': 1.0, 'too': 1.0, 'and': 5.0, 'picture': 1.0, 'was': 1.0, 'beautiful': 1.0, 'animals': 1.0, 'i': 1.0, 'price': 1.0, 'absolutely': 1.0, 'boy': 1.0, 'the': 4.0, 'due': 1.0, 'my': 1.0, 'color': 1.0, 'love': 1.0, 'for': 1.0, 'condition': 1.0, 'washing': 1.0, '6': 1.0, 'there': 1.0, 'weeks': 1.0, 'baby': 1.0, 'quality': 1.0, 'are': 2.0, 'can': 1.0, 'blend': 1.0, 'great': 1.0, 'virtually': 1.0, 'here': 1.0, 'decor': 1.0, 'ordered': 1.0, 'ours': 1.0, 'black': 1.0, 'gender': 1.0, 'fantastic': 1.0, 's': 1.0, 'crib': 1.0, 'nothing': 1.0, 'any': 1.0, 'as': 2.0, 'patterns': 1.0, 'to': 1.0}
Word element => {'too': 1.0, 'quality': 1.0, 'educational': 1.0, 'pretty': 1.0, 'very': 1.0, 'on': 1.0, 'so': 1.0, 'elefant': 1.0, 'jiraffe': 1.0, 'before': 1.0, 'bought': 1.0, 'we': 3.0, 'animal': 1.0, 'knew': 1.0, 'girl': 1.0, 'boy': 2.0, 'for': 1.0, 'also': 1.0, 'in': 1.0, 'loves': 1.0, 'or': 1.0, 'good': 2.0, 'zebra': 1.0, 'it': 1.0, 'he': 1.0, 'the': 3.0, 'sex': 1.0, 'end': 1.0, 'a': 1.0, 'and': 3.0, 'know': 1.0, 'had': 1.0, 'now': 1.0}
Word element => {'animals': 1.0, 'fun': 1.0, 'underneath': 1.0, 'red': 1.0, 'the': 1.0, 'like': 1.0, 'old': 1.0, 'boy': 1.0, 'i': 2.0, 'two': 1.0, 'at': 1.0, 'if': 1.0, 'number': 1.0, 'combination': 1.0, 'used': 1.0, 'amount': 1.0, 'bought': 1.0, 'is': 1.0, 'room': 1.0, 'this': 2.0, 'quilt': 1.0, 'baby': 2.0, 'colors': 2.0, 'letters': 1.0, 'but': 1.0, 'can': 1.0, 'love': 1.0, 'for': 2.0, 'bed': 1.0, 'has': 1.0, 'girls': 1.0, 'it': 3.0, 'she': 1.0, 'and': 2.0, 'her': 2.0, 'good': 1.0, 'until': 1.0, 'of': 2.0, 'use': 1.0, 'added': 1.0, 'under': 1.0, 'sheets': 1.0, 'be': 1.0, 'warmth': 1.0, 'a': 3.0, 'bedding': 1.0, 's': 1.0, 'little': 1.0, 'in': 1.0, 'enough': 1.0, 'sleep': 1.0, 'least': 1.0, 'to': 1.0}
Word element => {'it': 1.0, 'compliments': 1.0, 'of': 1.0, 'lots': 1.0, 'receieved': 1.0, 'have': 1.0, 'again': 1.0, 'are': 2.0, 'work': 1.0, 'but': 1.0, 'the': 4.0, 'great': 1.0, 'wanted': 1.0, 'any': 1.0, 'to': 3.0, 'comes': 1.0, 'in': 1.0, 'love': 1.0, 'for': 2.0, 'along': 1.0, 'girl': 1.0, 'knew': 1.0, 'were': 1.0, 'still': 1.0, 'register': 1.0, 'expecting': 1.0, 'furniture': 1.0, 'on': 1.0, 'go': 1.0, 't': 1.0, 'bedding': 2.0, 'we': 6.0, 'a': 2.0, 'bright': 1.0, 'see': 1.0, 'with': 1.0, 'pink': 1.0, 'from': 1.0, 'them': 1.0, 'baby': 1.0, 'colors': 3.0, 'didn': 1.0, 'very': 1.0, 'little': 1.0, 'everything': 1.0, 'want': 1.0, 'if': 1.0, 'boy': 1.0, 'been': 1.0, 'next': 1.0, 'has': 1.0, 'this': 1.0, 'kid': 1.0, 'friendly': 1.0, 'easy': 1.0, 'contrasting': 1.0, 'early': 1.0, 'and': 2.0}
Word element => {'thanks': 1.0, 'bb': 1.0, 'later': 1.0, 'day': 1.0, 'few': 1.0, 'got': 1.0, 'excelente': 1.0, 'service': 1.0, 'cheaper': 1.0, 'new': 1.0, 'brand': 1.0, 'two': 1.0, 'site': 1.0, 'it': 1.0, 'this': 1.0, 'in': 1.0, 'cute': 1.0, 'found': 1.0, 'finally': 1.0, 'and': 5.0, 'baby': 1.0, 'my': 2.0, 'the': 2.0, 'each': 1.0, 'room': 2.0, 'valance': 1.0, 'is': 1.0, 'want': 1.0, 'looking': 1.0, 'look': 1.0, 'to': 1.0, 'was': 2.0, 'i': 5.0, 'crib': 1.0, 'a': 4.0, 'well': 1.0, 'cocalo': 1.0, 'for': 2.0, 'love': 1.0, 'expensive': 1.0, 'used': 1.0, 'bedding': 1.0, 'set': 1.0, 'but': 1.0, 'bought': 1.0, 'valances': 2.0}
Word element => {'m': 1.0, 'cute': 1.0, 'so': 1.0, 'valance': 1.0, 'looks': 2.0, 'colors': 1.0, 'the': 4.0, 'to': 1.0, 'in': 1.0, 'having': 1.0, 'very': 1.0, 'match': 1.0, 'son': 1.0, 'knew': 1.0, 'a': 1.0, 'before': 1.0, 'with': 1.0, 'it': 1.0, 'this': 1.0, 'we': 2.0, 'bedding': 1.0, 'pattern': 1.0, '3': 1.0, 'set': 1.0, 'boy': 1.0, 'were': 1.0, 'walls': 1.0, 'one': 1.0, 'painted': 1.0, 'i': 3.0, 'green': 1.0, 'my': 1.0, 'way': 1.0, 'wall': 1.0, 's': 1.0, 'bedroom': 1.0, 'yellow': 1.0, 'impressed': 1.0, 'chose': 1.0, 'and': 1.0}
Word element => {'good': 1.0, 'they': 2.0, 'than': 1.0, 'ties': 1.0, 'bigger': 1.0, 'needed': 1.0, 'but': 2.0, 'are': 1.0, 'again': 1.0, 'same': 1.0, 'perfectly': 1.0, 'and': 1.0, 'ago': 2.0, 'am': 1.0, 'alphabet': 1.0, 'were': 1.0, 'that': 1.0, 'set': 3.0, 'so': 1.0, 'however': 1.0, 'now': 2.0, 'to': 1.0, 'still': 1.0, 'cute': 2.0, 'funny': 1.0, 'a': 2.0, 'very': 2.0, 'match': 2.0, 'looks': 1.0, 'second': 1.0, 'valance': 2.0, 'is': 1.0, 'it': 1.0, 'this': 1.0, 'soup': 1.0, 'don': 1.0, 'years': 2.0, 'using': 1.0, 'cocalo': 1.0, 'one': 1.0, 'whole': 1.0, 'i': 1.0, 'thing': 1.0, 'bought': 1.0, 't': 1.0, 'the': 3.0, '3': 2.0}
Word element => {'out': 1.0, 'best': 1.0, 'after': 1.0, 'buying': 1.0, 'mind': 1.0, 'peace': 1.0, 'safe': 1.0, 'now': 1.0, 'untrendy': 1.0, 'and': 1.0, 'an': 1.0, 'outings': 1.0, 'naps': 1.0, 'him': 1.0, 'which': 1.0, 'between': 1.0, 'well': 1.0, 'materials': 1.0, 'finest': 1.0, 'it': 1.0, 'because': 1.0, 'is': 5.0, 'this': 2.0, 'long': 1.0, 'although': 1.0, 'bolsters': 1.0, 'made': 1.0, 'roundabout': 1.0, 'britax': 1.0, 'by': 1.0, 'protected': 2.0, 'was': 1.0, 'head': 2.0, 'finding': 1.0, 'son': 3.0, 'i': 5.0, 'also': 1.0, 'secure': 1.0, 'his': 2.0, 'year': 1.0, 'ready': 1.0, 'knowing': 1.0, 'enough': 1.0, 'top': 1.0, 'comfortable': 1.0, 'feel': 1.0, 'most': 1.0, 'new': 1.0, 'would': 2.0, 'ride': 2.0, 'seats': 2.0, 'on': 2.0, '3': 1.0, 'my': 3.0, 'researched': 1.0, 'booster': 3.0, 'expensive': 1.0, 'for': 4.0, 'one': 1.0, 'in': 4.0, 'use': 1.0, 'hopes': 1.0, 'rather': 1.0, 'of': 5.0, 'that': 1.0, 'were': 1.0, 'without': 1.0, 'the': 6.0, 'since': 1.0, 'market': 1.0, '5': 1.0, 'old': 1.0, 'point': 1.0, 'not': 2.0, 'as': 2.0, 'our': 1.0, 'to': 2.0, 'seat': 4.0, 'have': 3.0, 's': 1.0, 'a': 3.0, 'we': 1.0, 'when': 2.0, 'became': 1.0, 'heavy': 3.0, 'various': 1.0, 'concerned': 1.0, 'about': 1.0, 'he': 3.0, 'how': 1.0, 'its': 1.0, 'harness': 2.0, 'do': 1.0, 'much': 1.0}
Word element => {'of': 1.0, 'out': 1.0, 'booster': 1.0, 'trendy': 1.0, 'today': 1.0, 'thought': 1.0, 'product': 1.0, 'be': 1.0, 'it': 1.0, 'this': 2.0, 'back': 1.0, 'm': 1.0, 'the': 2.0, 'heavy': 1.0, 'sending': 1.0, 'recaro': 1.0, 'i': 3.0, 'seat': 2.0, 'was': 1.0, 'hardly': 1.0, 'light': 1.0, 'would': 1.0, 'weight': 1.0, 'get': 1.0, 'and': 1.0, 'so': 1.0, 'box': 1.0, 'could': 1.0}
Word element => {'with': 1.0, 'disappointed': 1.0, 'extremely': 1.0, 'model': 1.0, 'screen': 1.0, 'in': 1.0, 'fans': 1.0, 'interference': 1.0, 'ended': 1.0, 'the': 4.0, 'was': 1.0, 'to': 1.0, 'our': 1.0, 'appliances': 1.0, 'and': 1.0, 'big': 1.0, 'from': 1.0, 'monitor': 1.0, 'very': 2.0, 'has': 1.0, 'that': 2.0, 'tv': 1.0, 'different': 1.0, 'tendency': 1.0, 'being': 1.0, 'up': 2.0, 'house': 1.0, 'lights': 1.0, 'product': 2.0, 'bought': 1.0, 'used': 2.0, 'static': 1.0, 'it': 1.0, 'useless': 1.0, 'annoying': 1.0, 'disabling': 1.0, 'just': 1.0, 'puts': 1.0, 'out': 1.0, 'renders': 1.0, 'voice': 1.0, 'this': 3.0, 'activated': 1.0, 'etc': 1.0, 'feature': 2.0, 'a': 1.0, 'we': 2.0, 'reason': 1.0, 'pick': 1.0, 'pops': 1.0, 'when': 1.0}
Word element => {'it': 1.0, 'alone': 1.0, 'before': 1.0, 'note': 1.0, 'activation': 1.0, 'enjoy': 1.0, 'satisfied': 1.0, 'feature': 1.0, 'i': 1.0, 'child': 1.0, 'sound': 1.0, 'over': 1.0, 'test': 1.0, 'shipping': 1.0, 'voice': 1.0, 'return': 1.0, 'paid': 1.0, 'power': 3.0, 'with': 2.0, 'ac': 3.0, 'work': 1.0, 'of': 2.0, 'this': 1.0, 'units': 1.0, 'unit': 3.0, 'first': 1.0, 'monitor': 1.0, 'works': 2.0, 'says': 1.0, 'just': 1.0, 'and': 1.0, 'description': 1.0, 'pluged': 1.0, 'the': 8.0, 'defective': 1.0, 'great': 1.0, 'transmitter': 1.0, 'included': 1.0, 'your': 2.0, '3': 1.0, 'on': 1.0, 'battery': 2.0, 'including': 1.0, 'or': 2.0, 'into': 1.0, 'cords': 1.0, 'is': 1.0, 'second': 1.0, 'amazon': 1.0, 'set': 3.0, 'sets': 1.0, 'leave': 1.0, 'none': 2.0, 'automaticaly': 1.0, 'you': 1.0, 'am': 1.0, 'when': 1.0, 'switch': 1.0, 'all': 2.0, 'as': 1.0, 'to': 1.0, 'had': 1.0, 'parental': 1.0, 'during': 1.0, 'unexpected': 1.0, 'loss': 1.0, 'cord': 1.0, 'my': 1.0, 'a': 1.0, 'hand': 1.0}
Word element => {'either': 1.0, 'time': 1.0, 'half': 1.0, 'other': 1.0, 'working': 1.0, 'wasn': 1.0, 'crying': 1.0, 'from': 1.0, 'work': 1.0, 'doesn': 1.0, 'hoarse': 1.0, 'hooked': 1.0, 't': 2.0, 'the': 5.0, 'one': 1.0, 'of': 1.0, 'up': 1.0, 'monitor': 1.0, 'and': 2.0, 'while': 1.0, 'thing': 1.0, 'monitors': 1.0, 'a': 1.0, 'bedroom': 1.0, 'my': 2.0, 'went': 1.0, 'was': 2.0, 'husband': 1.0, 'remodeling': 1.0, 'to': 1.0, 'i': 1.0, 'old': 1.0, 'month': 1.0, 'came': 1.0, 'store': 1.0, 'home': 1.0, '7': 1.0}
Word element => {'material': 1.0, 'also': 1.0, 'baby': 1.0, 'position': 1.0, 'sweat': 1.0, 'used': 1.0, 'we': 1.0, 'makes': 1.0, 'animal': 1.0, 'him': 1.0, 'it': 2.0, 'very': 1.0, 'made': 1.0, 'the': 4.0, 'to': 2.0, 'once': 1.0, 'head': 2.0, 'of': 1.0, 'difficult': 1.0}
Word element => {'have': 1.0, 'to': 1.0, 'worth': 1.0, 'price': 1.0, 'blanket': 1.0, 'up': 1.0, 'by': 1.0, 'for': 2.0, 'effect': 1.0, 'get': 1.0, 'probably': 1.0, 'be': 1.0, 'pillow': 1.0, 'think': 1.0, 'longer': 1.0, 'little': 1.0, 'well': 1.0, 'even': 1.0, 'does': 1.0, 'long': 2.0, 'used': 1.0, 'but': 2.0, 'work': 1.0, 'it': 6.0, 'took': 1.0, 'old': 1.0, 'same': 1.0, 'if': 1.0, 'pretty': 1.0, 'keep': 1.0, 'cute': 1.0, 'this': 2.0, 'soft': 1.0, 'too': 1.0, 'and': 3.0, 'were': 1.0, 'would': 1.0, 'is': 2.0, 'more': 1.0, 'the': 3.0, 'did': 1.0, 'effective': 1.0, 'comfortable': 1.0, 'recently': 1.0, 'you': 1.0, 'road': 1.0, 'could': 1.0, 'a': 4.0, 'we': 1.0, 'propped': 1.0, 'rolling': 1.0, 'trip': 2.0, 'my': 1.0, 'i': 1.0, '4': 1.0, 'cuddly': 1.0, 'his': 1.0, 'year': 1.0, 'son': 1.0, 'in': 1.0, 'car': 1.0, 'help': 1.0, 'head': 1.0}
Word element => {'age': 1.0, 'reaches': 1.0, 'not': 1.0, 'was': 1.0, 'did': 1.0, 'hopefully': 1.0, 'how': 1.0, 'fast': 1.0, 'for': 1.0, 'on': 1.0, 'arrived': 1.0, '18months': 1.0, 'please': 1.0, 'be': 1.0, 'useful': 1.0, 'i': 1.0, 'when': 1.0, 'very': 1.0, 'up': 1.0, 'that': 1.0, 'realize': 1.0, 'babies': 1.0, 'but': 1.0, 'will': 1.0, 'it': 3.0, 'he': 1.0}
Word element => {'kiddos': 1.0, 'hat': 1.0, 'match': 1.0, 'a': 1.0, 'on': 1.0, 'is': 1.0, 'him': 1.0, 'cute': 1.0, 'soft': 1.0, 'his': 1.0, 'and': 1.0, 'trips': 1.0, 'grandson': 1.0, 'the': 1.0, 'helps': 1.0, 'my': 1.0, 'made': 1.0, 'to': 1.0, 'mother': 1.0, 'long': 1.0, 'necks': 1.0, 'get': 1.0}
Word element => {'something': 1.0, 'that': 1.0, 'say': 1.0, 'can': 1.0, 'words': 1.0, 'of': 1.0, 'and': 3.0, 'i': 1.0, 'niece': 1.0, 'for': 2.0, 'one': 2.0, 'safe': 1.0, 'means': 1.0, 'adorable': 1.0, 'wanted': 1.0, 'to': 1.0, 'be': 1.0, 'my': 1.0, 'just': 2.0, 'kitty': 1.0, 'soft': 1.0, 'what': 1.0, 'her': 2.0, 'so': 1.0, 'she': 2.0, 'happens': 1.0, 'is': 2.0, 'first': 1.0, 'only': 1.0, 'it': 1.0, 'kiki': 1.0}
Word element => {'happy': 1.0, 'sure': 1.0, 'awhile': 1.0, 'flexible': 1.0, 'come': 1.0, 'years': 1.0, 'loves': 1.0, 'into': 1.0, 'know': 1.0, 'than': 1.0, 'does': 1.0, 'shop': 1.0, 's': 8.0, 'tiny': 1.0, 'a': 5.0, 'plushy': 1.0, 'it': 17.0, 'month': 1.0, 'frankly': 1.0, 'soft': 1.0, 'with': 4.0, 'hard': 2.0, '2': 1.0, 'wearing': 1.0, 'if': 1.0, 'down': 1.0, 'pillows': 1.0, 'chance': 1.0, 'here': 1.0, 'be': 3.0, '10': 1.0, 'for': 6.0, 't': 1.0, 'fit': 1.0, 'daughter': 1.0, 'giraffe': 3.0, 'but': 2.0, 'enjoys': 1.0, 'when': 2.0, 'finally': 1.0, 'traveling': 1.0, 'i': 7.0, 'old': 1.0, 'head': 1.0, 'droops': 1.0, 'and': 6.0, 'uncomfortable': 1.0, 'neck': 6.0, 'falls': 1.0, 'as': 3.0, 'pillow': 3.0, 'll': 2.0, 'right': 1.0, 'good': 1.0, 'asleep': 1.0, 'the': 5.0, 'to': 5.0, 'job': 1.0, 'playing': 1.0, 'online': 1.0, 'use': 1.0, 'her': 3.0, 'yellow': 1.0, 'doesn': 1.0, 'grow': 1.0, 'arrived': 1.0, 'giraffes': 1.0, 'brightly': 1.0, 'very': 3.0, 'better': 1.0, 'picture': 1.0, 'little': 2.0, 'nice': 1.0, 'big': 2.0, 'colored': 1.0, '1': 1.0, 'she': 5.0, 'baby': 1.0, 'now': 1.0, 'look': 1.0, 'is': 2.0, 'around': 1.0, 'not': 1.0, 'looks': 2.0, 'my': 2.0, 'may': 1.0, 'me': 1.0, 'can': 2.0, 'so': 2.0, 'far': 1.0, 'terribly': 1.0, 'in': 2.0, 'm': 4.0, 'that': 2.0, 'because': 1.0, 'concerned': 1.0, 'say': 1.0, 'comfortable': 1.0, 'worry': 1.0, 'came': 1.0, 'glad': 1.0, 'buy': 1.0, 'something': 1.0, 'decided': 1.0, 'used': 1.0, 'this': 2.0, 'few': 1.0}
Word element => {'room': 1.0, 'bag': 1.0, 'take': 1.0, 'not': 1.0, 'easy': 1.0, 'to': 1.0, 'was': 1.0, 'like': 1.0, '5': 1.0, 'and': 2.0, 'shape': 1.0, '3': 1.0, 'extra': 1.0, 'we': 1.0, 'airport': 1.0, 'horse': 1.0, 'them': 1.0, 'hanger': 1.0, 'our': 1.0, 'nicely': 1.0, 'the': 6.0, 'travel': 1.0, 'bought': 1.0, 'kids': 1.0, 'through': 1.0, 'fit': 1.0, 'in': 2.0, 'part': 1.0, 'up': 1.0, 'of': 1.0, 'ages': 1.0, 'dog': 1.0, 'backpacks': 1.0, 'so': 1.0, 'with': 1.0, 'it': 1.0}
Word element => {'need': 1.0, 'swing': 1.0, 'falls': 1.0, 'give': 1.0, 'to': 3.0, 'it': 5.0, 'this': 1.0, 'older': 1.0, 'his': 2.0, 'when': 2.0, 'i': 5.0, 'bought': 1.0, 'asleep': 1.0, 'orange': 1.0, 'the': 2.0, 'support': 1.0, 'won': 2.0, 'neck': 1.0, 'he': 3.0, 'received': 1.0, 'use': 1.0, 'hoping': 1.0, 'in': 1.0, 'product': 1.0, 'for': 3.0, 'son': 1.0, 'big': 1.0, 'more': 2.0, 'is': 3.0, 'yellow': 1.0, 'than': 1.0, 't': 2.0, 'could': 1.0, 'go': 1.0, 'my': 1.0, 'hopefully': 1.0, 'and': 2.0, 'way': 1.0, 'him': 2.0, 'then': 1.0, 'through': 1.0, 'trouble': 1.0, 'will': 1.0, 'work': 1.0, 'but': 1.0, 'of': 1.0, 'returning': 1.0, 'that': 1.0, 'hope': 1.0}
Word element => {'too': 1.0, 'not': 1.0, 'soft': 1.0, 'bear': 1.0, 'pillow': 1.0, 'is': 1.0, 'a': 1.0, 'neck': 1.0, 'this': 1.0, 'intended': 1.0, 'for': 1.0, 'great': 1.0, 'it': 1.0, 'bulky': 1.0, 's': 1.0, 'use': 1.0, 'and': 1.0, 'very': 1.0, 'as': 1.0}
Word element => {'necks': 1.0, 'their': 1.0, 'around': 1.0, 'wore': 1.0, 'day': 1.0, 'all': 1.0, 'just': 1.0, 'they': 1.0, 'gave': 1.0, 'granddaughter': 1.0, 'loved': 1.0, 'other': 1.0, 'this': 1.0, 'them': 2.0, 'horse': 1.0, 'pillow': 2.0, 'to': 2.0, 'i': 1.0, 'one': 1.0, 'the': 2.0, 'cat': 1.0, 'and': 2.0}
Word element => {'it': 1.0, 'loves': 1.0, 'year': 1.0, 'far': 1.0, 'three': 1.0, 'so': 1.0, 'old': 1.0, 'product': 1.0, 'my': 1.0, 'the': 1.0, 'happy': 1.0, 'with': 2.0, 'im': 1.0, 'issues': 1.0, 'very': 1.0, 'and': 2.0, 'price': 1.0, 'quick': 1.0, 'delivery': 1.0, 'no': 1.0}
Word element => {'traveling': 1.0, 'use': 1.0, 'that': 1.0, 'bummed': 1.0, 'so': 1.0, 'was': 1.0, 'larger': 1.0, 'in': 1.0, 'her': 1.0, 'good': 1.0, 'one': 2.0, 'hope': 1.0, 'lover': 1.0, 'dolphin': 1.0, 'up': 1.0, 'will': 1.0, 'using': 1.0, 'which': 1.0, 'older': 1.0, 'find': 1.0, 'because': 1.0, 'daughter': 2.0, 'reviews': 1.0, 'however': 1.0, 'the': 1.0, 'of': 1.0, '6': 1.0, 'small': 2.0, 'have': 1.0, 'durable': 1.0, 'children': 1.0, 'end': 1.0, 'only': 2.0, 'she': 3.0, 'it': 3.0, 'pillow': 2.0, 'be': 2.0, 'is': 5.0, 'way': 1.0, 'absolutely': 1.0, 'should': 1.0, 'read': 1.0, 'very': 2.0, 'year': 1.0, 'to': 1.0, 'all': 1.0, 'as': 5.0, 'too': 1.0, 'and': 2.0, 'size': 1.0, 'probably': 1.0, 'otherwise': 1.0, 'i': 2.0, 'old': 1.0, 'guess': 1.0, 'product': 2.0, 'for': 4.0, 'my': 3.0, 'since': 1.0, 'adorable': 1.0, 'petite': 1.0, 'kids': 1.0, 'this': 4.0, 'soft': 1.0, 'perfect': 1.0, 'would': 1.0, 'under': 1.0, 'can': 2.0, 'used': 1.0, 't': 1.0, 'a': 4.0, 'what': 1.0, '12': 1.0, 'stuffed': 1.0, 'toy': 1.0}
Word element => {'worth': 1.0, 'not': 1.0, 'moves': 1.0, 'sleeps': 1.0, 'while': 1.0, 'on': 1.0, 'our': 1.0, 'when': 1.0, 'prop': 1.0, 'then': 1.0, 'try': 1.0, 'is': 1.0, 'pillow': 1.0, '5': 1.0, 'son': 2.0, 'yo': 1.0, 's': 2.0, '3': 1.0, 'fall': 1.0, 'we': 1.0, 'the': 2.0, 'my': 1.0, 'push': 1.0, 'his': 1.0, 'does': 1.0, 'he': 2.0, 'it': 4.0, 'head': 3.0, 'to': 2.0, 'all': 1.0, 'have': 2.0, 'neck': 1.0, 'but': 1.0, 'forward': 1.0, 'put': 1.0, 'towards': 1.0, 'front': 1.0, 'and': 1.0}
Word element => {'using': 1.0, 'began': 1.0, 'what': 1.0, 'had': 1.0, 'me': 1.0, 'thank': 1.0, 'terrific': 1.0, 'any': 1.0, 'to': 3.0, 'and': 3.0, 'couple': 1.0, 'long': 1.0, 'used': 1.0, 'her': 1.0, 'on': 1.0, 'car': 1.0, 'traveling': 1.0, 'spine': 1.0, 'i': 3.0, 'night': 2.0, 'pillows': 1.0, 'great': 1.0, 'the': 2.0, 'these': 1.0, 'rides': 1.0, 'love': 1.0, 'for': 2.0, 'called': 1.0, 'are': 1.0, 'they': 1.0, 'has': 1.0, 'yesterday': 1.0, 'cute': 1.0, 'neck': 3.0, 'wonderful': 1.0, 'in': 3.0, 'aligned': 1.0, 'so': 1.0, 'during': 1.0, 'my': 2.0, 'fact': 1.0, 'noodlehead': 1.0, 'weeks': 1.0, '34': 2.0, 'of': 1.0, 'daughter': 1.0, 'ordered': 1.0, 'law': 1.0, 't': 1.0, 'ago': 1.0, 'a': 2.0, 'shoulder': 1.0, 'hasn': 1.0, 'problems': 2.0, 'she': 5.0, 'it': 3.0, 'since': 1.0, 'keep': 1.0, 'at': 1.0, 'relief': 1.0, 'sent': 1.0}
Word element => {'thanks': 1.0, 'cute': 1.0, 'is': 1.0, 'adult': 1.0, 'job': 1.0, 'good': 3.0, 'of': 1.0, 'for': 1.0, 'on': 1.0, 'even': 1.0, 'so': 2.0, 'and': 1.0, 'but': 1.0, 'quality': 1.0, 'neck': 2.0, 'this': 1.0, 'problems': 1.0, 'shipping': 1.0, 'was': 1.0, 'tired': 1.0, 'size': 1.0, 'looking': 1.0, 'the': 1.0, 'i': 1.0, 'old': 1.0, 'pillows': 1.0}
Word element => {'cuddly': 1.0, 'and': 1.0, 'soft': 1.0, 'material': 1.0, 'comfortable': 1.0, 'really': 1.0, 'help': 1.0, 'little': 1.0, 'great': 1.0, 'pillow': 1.0, 'is': 1.0, 'a': 1.0, 'for': 1.0, 'long': 1.0, 'this': 1.0, 'neck': 1.0, 'trips': 1.0}
Word element => {'would': 1.0, 'yr': 3.0, 'awesome': 1.0, 'love': 1.0, 'for': 1.0, 'one': 2.0, 'have': 1.0, 'neighbors': 1.0, '7': 2.0, 'do': 1.0, 'a': 1.0, 'noodlehead': 1.0, 'blue': 1.0, 'yrs': 1.0, 'you': 1.0, 'yes': 1.0, 'i': 1.0, 'old': 4.0, 'to': 2.0, 'gave': 1.0, 'my': 2.0, 'the': 2.0, '2': 1.0, 'larger': 1.0, '3': 1.0, 'dog': 1.0, 'grandaughter': 1.0}
Word element => {}
Word element => {'rejecting': 1.0, 'cramped': 1.0, 'be': 2.0, 'right': 1.0, 'has': 1.0, 'he': 4.0, 'it': 7.0, 'with': 1.0, 'have': 1.0, 'seem': 1.0, 'not': 2.0, 'my': 1.0, 'however': 1.0, 'his': 2.0, 'i': 2.0, 'reason': 1.0, 'touch': 1.0, 'baby': 1.0, 'its': 1.0, 'this': 1.0, 'soft': 1.0, 'cute': 1.0, 'does': 1.0, 'find': 1.0, 'now': 1.0, 'hates': 1.0, 'why': 1.0, 'infant': 1.0, 'car': 2.0, 'love': 1.0, 'product': 1.0, 'little': 1.0, 'very': 2.0, 'and': 4.0, 'that': 3.0, 'more': 1.0, 'is': 4.0, 'around': 1.0, 'neck': 1.0, 'useful': 1.0, 'returned': 1.0, 'when': 1.0, 'the': 2.0, 'hope': 1.0, 'will': 2.0, 'all': 1.0, 'seat': 2.0, 'to': 3.0, 'grow': 1.0, 'sitting': 1.0, 'in': 2.0, 'might': 2.0, 'a': 2.0, 'later': 1.0, 'properly': 1.0, 'like': 2.0, 'which': 1.0, 'space': 1.0, 'at': 1.0, 'bigger': 1.0}
Word element => {'car': 1.0, 'in': 1.0, 'asleep': 1.0, 'fell': 1.0, 'forward': 1.0, 'bending': 1.0, 'stop': 1.0, 'from': 1.0, 'year': 1.0, 'the': 3.0, '3': 1.0, 'head': 1.0, 'easily': 1.0, 'several': 1.0, 'when': 1.0, 'too': 1.0, 'of': 1.0, 'good': 1.0, 'out': 1.0, 'after': 1.0, 'idea': 1.0, 'got': 1.0, 'old': 1.0, 'sahpe': 1.0, 'his': 1.0, 'used': 1.0, 'he': 1.0, 'first': 1.0, 'it': 3.0, 'times': 2.0, 'bad': 1.0, 'my': 1.0, 'cause': 1.0, 'did': 1.0, 'is': 1.0, 'couple': 1.0, 'and': 1.0}
Word element => {'shannon': 1.0, 'sincerely': 1.0, 'it': 1.0, 'using': 1.0, 'enjoyed': 1.0, 'mommy': 1.0, 'but': 1.0, 'hahahahahkind': 1.0, 'comfortably': 1.0, 'hey': 1.0, 'there': 1.0, 'was': 1.0, 'too': 1.0, 'somehow': 1.0, 'neck': 1.0, 'fit': 1.0, 'to': 1.0, 'big': 1.0, 'around': 1.0, 'regards': 1.0, 'toddler': 1.0, 's': 1.0}
Word element => {'buy': 1.0, 'price': 1.0, 'will': 1.0, 'worth': 1.0, 'feeling': 1.0, '12290': 2.0, 'very': 1.0, 'the': 3.0, 'different': 1.0, 'uniform': 1.0, 'not': 3.0, 'real': 1.0, 'is': 2.0, 'with': 1.0, '65292': 2.0, 'i': 1.0, 'picture': 1.0, 'completely': 1.0, 'color': 1.0, 'filler': 1.0}
Word element => {'just': 1.0, 'falls': 1.0, 'hanging': 1.0, 'head': 2.0, 'wear': 1.0, 'wants': 1.0, 'cute': 1.0, 's': 1.0, 'for': 1.0, 'in': 1.0, 'bulky': 1.0, 'asleep': 1.0, 'to': 2.0, 'and': 3.0, 'thick': 1.0, 'child': 1.0, 'down': 1.0, 'her': 2.0, 'carseat': 1.0, 'when': 1.0, 'too': 1.0, 'is': 2.0, 'my': 1.0, 'riding': 1.0, 'well': 1.0, 'a': 1.0, 'but': 1.0, 'work': 1.0, 'forward': 2.0, 'uncomfortably': 1.0, 'facing': 1.0, 'she': 2.0, 'likes': 1.0, 'this': 1.0, 'it': 4.0, 'forces': 1.0, 'b': 1.0, 'c': 1.0}
Word element => {'year': 1.0, 'aside': 1.0, 'just': 1.0, 'to': 1.0, 'll': 1.0, 'toddlers': 1.0, 'older': 1.0, 'better': 1.0, 'be': 1.0, 'so': 3.0, 'another': 1.0, 'may': 1.0, 'my': 2.0, '16mos': 1.0, 'mind': 1.0, 'pics': 1.0, 'have': 1.0, 'minus': 1.0, 'instead': 1.0, 'use': 1.0, 'sent': 1.0, 'blue': 1.0, 'squish': 1.0, 'star': 1.0, 'back': 1.0, 'color': 1.0, 'one': 1.0, 'i': 5.0, 'old': 1.0, 'ordered': 1.0, 's': 1.0, 't': 2.0, 'the': 6.0, 'puppy': 2.0, 'or': 1.0, 'neck': 2.0, 'don': 1.0, 'which': 1.0, 'is': 1.0, 'pillow': 1.0, 'set': 1.0, 'beige': 1.0, 'that': 1.0, 'it': 2.0, 'this': 2.0, 'also': 1.0, 'brown': 1.0, 'in': 1.0, 'and': 1.0, 'too': 1.0, 'for': 3.0, 'opinion': 1.0, 'but': 2.0, 'firm': 1.0, 'can': 2.0, 'got': 1.0, 'inaccurate': 1.0, 'even': 1.0, 'area': 1.0, 'goes': 1.0, 'on': 2.0}
Word element => {'case': 1.0, 'in': 2.0, 'them': 1.0, 'keep': 1.0, 'em': 1.0, 'and': 1.0, 'like': 1.0, 'still': 1.0, 'kids': 1.0, 'just': 1.0, 'but': 1.0, 'were': 1.0, 'not': 1.0, 'the': 1.0, 'are': 1.0, 'too': 1.0, 'they': 1.0, 'pretty': 1.0, 'car': 1.0, 'impressed': 1.0, 'cool': 1.0, 'i': 1.0}
Word element => {'behind': 1.0, 'everywhere': 1.0, 'not': 1.0, 'children': 1.0, 'only': 1.0, 'buddies': 1.0, 'leave': 1.0, 'dryer': 1.0, 'automobiles': 1.0, 'designed': 1.0, 'they': 1.0, 'are': 2.0, 'noodle': 1.0, 'planes': 1.0, 'support': 1.0, 'on': 1.0, 'just': 1.0, 'by': 1.0, 'soft': 1.0, 'kids': 1.0, 'little': 1.0, 'cuddly': 1.0, 'washer': 1.0, 'adorable': 1.0, 'as': 2.0, 'to': 1.0, 'travel': 2.0, 'head': 1.0, 'sleepy': 1.0, 'and': 5.0, 'heads': 1.0, 'loved': 1.0, 'trains': 1.0, 't': 1.0, 'a': 2.0, 'companion': 1.0, 'will': 1.0, 'also': 1.0, 'in': 1.0, 'won': 1.0, 'comfortably': 1.0, 'toy': 1.0, 'super': 1.0, 'when': 1.0, 'you': 1.0, 'but': 1.0, 'can': 1.0, 'throw': 1.0, 'them': 3.0, 'the': 1.0, 'needed': 1.0, 'take': 1.0}
Word element => {'option': 1.0, 'lanyard': 1.0, 'confused': 1.0, 'be': 2.0, 'might': 1.0, 'else': 1.0, 'just': 1.0, 'not': 1.0, 'idiot': 1.0, 'was': 2.0, 'they': 1.0, 'is': 3.0, 'holds': 1.0, 'h': 1.0, 'same': 1.0, 'for': 6.0, 'comes': 2.0, 'charger': 1.0, 'buttons': 1.0, 'interested': 1.0, 'mediocre': 1.0, 'equally': 1.0, 'out': 1.0, 'mortar': 1.0, 'are': 1.0, 'generation': 1.0, 'case': 4.0, 'stores': 1.0, 'with': 2.0, 'my': 4.0, 'found': 2.0, '30': 1.0, 'this': 3.0, 'perfect': 1.0, 'wish': 1.0, 'ca': 1.0, 'belt': 3.0, 'a': 4.0, 's': 1.0, '25': 1.0, 'to': 9.0, 'probably': 1.0, 'any': 1.0, 'an': 1.0, 'all': 1.0, 'cases': 1.0, 'way': 1.0, 'car': 1.0, 'complaint': 1.0, 'needed': 1.0, 'after': 2.0, 'vigorous': 1.0, 'should': 3.0, 'about': 1.0, 'including': 1.0, 'no': 1.0, 'needs': 1.0, 'band': 2.0, 'wear': 1.0, 'it': 3.0, '5th': 1.0, 'brick': 1.0, 'remove': 1.0, 'anyone': 1.0, 'and': 7.0, 'on': 3.0, 'waste': 2.0, 'looked': 1.0, 'open': 2.0, 'hard': 1.0, 'm': 1.0, 'in': 4.0, 'mention': 1.0, 'said': 1.0, 'price': 1.0, 'crook': 1.0, 'shaped': 1.0, 'i': 6.0, 'fast': 1.0, 'gym': 1.0, 'making': 1.0, 'activity': 1.0, 'up': 2.0, 'workout': 1.0, 'there': 1.0, 'that': 1.0, 'easily': 1.0, 'meant': 1.0, 'push': 2.0, 'you': 3.0, 'the': 10.0, 'of': 2.0, 'but': 2.0, 'ports': 1.0, 'boot': 1.0, 'since': 1.0, 'slipped': 1.0, 'find': 1.0, 'or': 2.0, 'need': 1.0, 'yes': 1.0, 'access': 1.0, 'little': 1.0, 'holes': 1.0, 'simply': 1.0, 'only': 1.0, 'instructions': 1.0, 'ideal': 1.0, 'pushing': 1.0, 'clip': 1.0, 'button': 1.0, 'ipod': 2.0, 'side': 1.0, 'protect': 1.0, 'door': 1.0, 'awhile': 1.0, 'what': 1.0}
Word element => {'purpose': 1.0, 'but': 1.0, 'know': 1.0, 'wanted': 1.0, 'to': 2.0, 'had': 1.0, 'driving': 1.0, 'in': 1.0, 'face': 1.0, 'see': 1.0, 'this': 2.0, 'with': 1.0, 'bought': 1.0, 'for': 1.0, 'product': 1.0, 'portion': 1.0, 'while': 1.0, 'not': 2.0, 'me': 1.0, 'gotten': 1.0, 'my': 2.0, 'intended': 1.0, 'was': 2.0, 'unfortunately': 1.0, 'asleep': 1.0, 'the': 2.0, 'baby': 1.0, 'hope': 1.0, 'a': 1.0, 's': 1.0, 'allow': 1.0, 'would': 1.0, 'it': 2.0, 'she': 1.0, 'awake': 1.0, 'sick': 1.0, 'will': 1.0, 'i': 3.0, 'etc': 1.0, 'mirror': 1.0, 'of': 2.0, 'permit': 1.0, 'devise': 1.0, 'kind': 1.0, 'viewing': 1.0, 'that': 1.0, 'if': 1.0, 'detail': 1.0, 'is': 1.0, 'great': 1.0, 'nice': 1.0, 'idea': 1.0}
Word element => {'everyone': 1.0, 'just': 1.0, 'looks': 1.0, 'it': 3.0, 'this': 1.0, 'kecci': 1.0, 'water': 1.0, 'and': 2.0, 'the': 9.0, 'is': 3.0, 'more': 1.0, 'want': 2.0, 'same': 3.0, 'if': 1.0, 'buy': 1.0, 'old': 1.0, 'cheap': 1.0, 'i': 2.0, 'have': 1.0, 'different': 2.0, 'fabric': 1.0, 'bag': 3.0, 'proof': 1.0, 'exactly': 1.0, 'an': 1.0, 'but': 1.0, 'inside': 1.0, 'know': 1.0, 'like': 2.0, 'a': 1.0, 'on': 1.0, 'photo': 1.0, 'materials': 1.0, 'so': 1.0, 'however': 1.0, 'are': 1.0, 'liner': 1.0, 'me': 1.0, 'not': 2.0, 'to': 3.0, 'any': 1.0, 'outside': 1.0, 'seems': 1.0, 'still': 1.0, 'design': 1.0, 'you': 1.0, 'am': 1.0, 'one': 1.0, 'planning': 1.0, 'use': 1.0}
Word element => {'keep': 1.0, 'so': 1.0, 'newborn': 1.0, 'nursing': 1.0, 'have': 1.0, 'would': 1.0, 'not': 2.0, 'if': 1.0, 'known': 1.0, 'receive': 1.0, 'will': 1.0, 'item': 1.0, 'actual': 1.0, 'shows': 1.0, 'now': 1.0, 'in': 1.0, 'my': 1.0, 'company': 1.0, 'on': 2.0, 'amazon': 1.0, 'is': 2.0, 'pictuured': 1.0, 'cover': 3.0, 'ordered': 1.0, 'originally': 2.0, 'with': 1.0, 'pink': 2.0, 'very': 1.0, 'com': 1.0, 'disappointing': 1.0, 'but': 2.0, 'this': 3.0, 'it': 7.0, 'helpful': 1.0, 'misleading': 1.0, 'that': 7.0, 'works': 1.0, 'does': 1.0, 'i': 7.0, 'number': 1.0, 'currently': 1.0, 'the': 9.0, 'job': 1.0, 'was': 6.0, 'purchased': 1.0, 'what': 1.0, 'had': 2.0, 'color': 1.0, 'and': 5.0, 'a': 2.0, 'black': 2.0, 'people': 1.0, 'pretty': 1.0, 'saw': 1.0, 'ok': 1.0, 'design': 2.0, 'fixed': 1.0, 'received': 1.0, 'white': 2.0, 'shown': 1.0, 'picture': 3.0, 'imagine': 1.0, 'of': 1.0, 'you': 1.0, 'when': 2.0, 'complained': 1.0, 'about': 1.0, 'hence': 1.0}
Word element => {'mom': 1.0, 'must': 1.0, 'clothes': 1.0, 'matches': 1.0, 'can': 1.0, 'for': 1.0, 'love': 1.0, 'one': 1.0, 'i': 2.0, 'of': 1.0, 'with': 1.0, 'this': 1.0, 'nursing': 1.0, 'have': 2.0, 'other': 1.0, 'bunch': 1.0, 'baby': 1.0, 'is': 2.0, 'covers': 1.0, 'but': 1.0, 'that': 1.0, 'my': 2.0, 'great': 1.0, 'the': 1.0, 'and': 2.0, 'each': 1.0, 'well': 1.0, 'a': 3.0, 'see': 1.0, 'pattern': 1.0, 'cute': 1.0}
Word element => {'gift': 1.0, 'makes': 1.0, 'same': 1.0, 'boughten': 1.0, 'in': 1.0, 's': 1.0, 'blanket': 1.0, 'mothers': 1.0, 'pad': 1.0, 'use': 1.0, 'expectant': 1.0, 'cover': 2.0, 'washings': 1.0, 'would': 1.0, 'wish': 1.0, 'to': 1.0, 'had': 2.0, 'one': 1.0, 'for': 3.0, 'second': 1.0, 'a': 3.0, 'well': 1.0, 'multiple': 1.0, 'when': 1.0, 'i': 6.0, 'and': 2.0, 'changing': 1.0, 'as': 1.0, 'quality': 1.0, 'my': 2.0, 'great': 1.0, 'the': 4.0, 'all': 1.0, 'four': 1.0, 'have': 2.0, 'fabric': 1.0, 'child': 1.0, 'sun': 1.0, 'higj': 1.0, 'this': 1.0, 'it': 4.0, 'first': 1.0, 'of': 1.0, 'friends': 1.0, 'product': 1.0, 'bought': 1.0, 'allows': 1.0}
Word element => {'buy': 1.0, 'wouldn': 1.0, 'most': 1.0, 'because': 1.0, 'great': 1.0, 'also': 1.0, 'public': 1.0, 'in': 1.0, 'discreet': 1.0, 'it': 3.0, 'first': 1.0, 'child': 1.0, 'me': 1.0, 'moms': 1.0, 'eyelet': 1.0, 'and': 2.0, 'make': 1.0, 'would': 1.0, 'was': 1.0, 'about': 1.0, 'must': 1.0, 'have': 2.0, 'nursing': 2.0, 'is': 3.0, 'really': 2.0, 'my': 1.0, 'fabric': 1.0, 'incidents': 1.0, 'themselves': 1.0, 're': 2.0, 'the': 3.0, 'adjustable': 1.0, 'knew': 1.0, 'indecent': 1.0, 'coolest': 1.0, 'product': 3.0, 'for': 2.0, 'mothers': 1.0, 'gift': 1.0, 'sweet': 1.0, 'corner': 1.0, 'i': 3.0, 'cloth': 1.0, 'this': 4.0, 'wish': 1.0, 'convenient': 1.0, 'few': 1.0, 'shower': 1.0, 'of': 1.0, 't': 1.0, 's': 1.0, 'a': 3.0, 'exposure': 1.0, 'neutral': 1.0, 'neck': 1.0, 'strap': 1.0, 'being': 1.0, 'spared': 1.0, 'terry': 1.0, 'if': 1.0, 'when': 2.0, 'you': 2.0, 'breastfeeding': 1.0, 'into': 1.0}
Word element => {'like': 1.0, 'warmer': 1.0, 'do': 1.0, 'but': 1.0, 'fabric': 1.0, 'good': 2.0, 'of': 1.0, 'it': 1.0, 'this': 2.0, 'every': 1.0, 'what': 1.0, 'a': 1.0, 'lined': 1.0, 'when': 1.0, 'less': 1.0, 'born': 1.0, 'however': 1.0, 'cover': 3.0, 'and': 3.0, 'eyelet': 1.0, 'chilli': 1.0, 'climates': 1.0, 'i': 2.0, 'myself': 1.0, 'place': 1.0, 'job': 1.0, 'the': 3.0, 'got': 1.0, 'perhaps': 1.0, 'is': 3.0, 'makes': 1.0, 'so': 1.0, 'time': 1.0, 'does': 1.0, 'breathable': 1.0, 'extremely': 1.0, 'hot': 1.0, 'definitely': 1.0, 'quality': 1.0, 'baby': 2.0, 'sweats': 1.0, 'my': 2.0, 'underneath': 1.0, 'for': 2.0, 'would': 1.0, 'not': 1.0, 'was': 1.0, 'recommend': 1.0, 'anyone': 1.0, 'in': 1.0, 'who': 1.0, 'lives': 1.0}
Word element => {'canopy': 1.0, 'car': 1.0, 'infant': 1.0, 'easy': 1.0, 'was': 1.0, 'shade': 1.0, 'sun': 1.0, 'up': 1.0, 'cover': 1.0, 'seat': 1.0, 'to': 2.0, 'all': 1.0, 'as': 2.0, 'the': 4.0, 'small': 1.0, 'time': 1.0, 'so': 1.0, 'not': 2.0, 'excellent': 1.0, 'size': 1.0, 'big': 1.0, 'very': 4.0, 'has': 1.0, 'public': 1.0, 'too': 2.0, 'and': 3.0, 'it': 8.0, 'this': 1.0, 'wouldn': 1.0, 'used': 2.0, 'product': 1.0, 'see': 1.0, 'lot': 1.0, 'i': 5.0, 'in': 1.0, 'good': 1.0, 'fabric': 1.0, 'nursing': 2.0, 'secure': 2.0, 'fall': 1.0, 'is': 1.0, 'using': 1.0, 'like': 1.0, 't': 1.0, 's': 2.0, 'a': 4.0, 'could': 2.0, 'when': 1.0, 'easily': 1.0, 'breastfeeding': 1.0, 'that': 1.0, 'besides': 1.0, 'fact': 1.0, 'my': 2.0, 'behind': 1.0, 'neck': 1.0, 'discreet': 1.0, 'still': 1.0, 'quality': 1.0, 'baby': 1.0, 'face': 1.0, 'while': 1.0}
Word element => {'manner': 1.0, 'useful': 1.0, 'in': 1.0, 'hang': 1.0, 'one': 1.0, 'allowing': 1.0, 'hook': 1.0, 'if': 1.0, 'great': 1.0, 'would': 1.0, 'plastic': 1.0, 'with': 1.0, 'piece': 1.0, 'sure': 1.0, 'm': 1.0, 'actually': 1.0, 'fit': 1.0, 'for': 2.0, 'shape': 1.0, 'material': 1.0, 'just': 1.0, 'was': 2.0, 'swivelled': 1.0, 'thought': 1.0, 'square': 1.0, 'cut': 2.0, 'footprint': 1.0, 'not': 1.0, 'no': 1.0, 'use': 2.0, 'well': 1.0, 'thin': 1.0, 'very': 1.0, 'at': 1.0, 'adorable': 1.0, 'hamper': 1.0, 'wanted': 1.0, 'dissapointment': 1.0, 'this': 4.0, 'it': 3.0, 'clotheshanger': 1.0, 'i': 2.0, 'seams': 1.0, 'broken': 1.0, 'packing': 1.0, 'prefold': 1.0, 'sewn': 1.0, 'my': 1.0, 'lightweight': 1.0, 'first': 1.0, 'nicely': 1.0, 'comes': 1.0, 'is': 3.0, 'more': 1.0, 'an': 1.0, 'can': 1.0, 'but': 3.0, 'diapers': 1.0, 'fabric': 1.0, 'be': 1.0, 'form': 1.0, 'stacker': 4.0, 'wife': 1.0, 'seem': 1.0, 'we': 1.0, 'a': 7.0, 's': 1.0, 'way': 1.0, 'though': 1.0, 'should': 1.0, 'far': 1.0, 'appropriate': 1.0, 'hanging': 1.0, 'without': 1.0, 'the': 7.0, 'cardboard': 1.0, 'as': 1.0, 'to': 3.0, 'our': 1.0, 'cannot': 1.0, 'hold': 2.0, 'which': 1.0, 'floor': 2.0, 'arrived': 1.0, 'sliced': 1.0, 'too': 1.0, 'and': 1.0}
Word element => {'can': 1.0, 'why': 1.0, 'unavailability': 1.0, 'price': 1.0, 'it': 1.0, 'higher': 1.0, 'complaint': 1.0, 'only': 1.0, 'snaps': 1.0, 'target': 1.0, 'superior': 1.0, 'far': 1.0, 'just': 1.0, 'by': 2.0, 'bowl': 2.0, 'on': 2.0, 'is': 2.0, 'i': 2.0, 'tried': 1.0, 'also': 1.0, 'like': 1.0, 'cannot': 1.0, 'the': 9.0, 'a': 1.0, 't': 2.0, 'covered': 1.0, 'brands': 1.0, 'does': 1.0, 'even': 1.0, 'of': 2.0, 'leak': 1.0, 've': 1.0, 'munchkin': 1.0, 'my': 1.0, 'lid': 1.0, 'stays': 1.0, 'this': 3.0, 'sassy': 2.0, 'easily': 1.0, 'said': 1.0, 'in': 2.0, 'dishwasher': 1.0, 'and': 3.0, 'bowls': 1.0, 'several': 1.0, 'including': 1.0, 'store': 1.0, 'doesn': 1.0, 'not': 1.0, 'washing': 1.0, 'be': 1.0, 'multiple': 1.0, 'suction': 1.0, 'ring': 1.0, 'stick': 1.0, 'continues': 1.0, 'product': 1.0, 'for': 1.0, 'to': 1.0, 'warp': 1.0, 'after': 1.0}
Word element => {'under': 1.0, 'in': 1.0, 'pried': 1.0, 'has': 1.0, 'your': 1.0, 'if': 1.0, 'else': 1.0, 'kids': 1.0, 'fifteen': 1.0, 'and': 1.0, 'as': 1.0, 'off': 1.0, 'habit': 1.0, 'or': 1.0, 'stays': 1.0, '2': 1.0, 'the': 1.0, 'ten': 1.0, 'find': 1.0, 'maybe': 1.0, 'mine': 1.0, 'for': 1.0, 'something': 1.0, 'put': 1.0, 'regular': 1.0, 'then': 1.0, 'moving': 1.0, 'it': 3.0, 'seconds': 2.0, 'loosens': 1.0, 'moves': 1.0, 'suction': 1.0, 'nice': 1.0, 'a': 2.0, 'old': 1.0, 'bowl': 1.0}
Word element => {'pleased': 1.0, 'am': 1.0, 'but': 1.0, 'her': 2.0, 'for': 2.0, 'it': 1.0, 'with': 1.0, 'this': 1.0, 'first': 1.0, 'food': 1.0, 'stand': 1.0, 'not': 1.0, 'to': 2.0, 'was': 1.0, 'at': 1.0, 'can': 1.0, 'my': 1.0, 'great': 1.0, 'the': 1.0, 'is': 1.0, 'a': 1.0, 'teenager': 1.0, 'skeptical': 1.0, 'touch': 1.0, 'i': 2.0, 'purchase': 1.0, 'product': 1.0, 'bowl': 1.0}
Word element => {'time': 1.0, 'svan': 1.0, 'plastic': 1.0, 'all': 1.0, 'work': 1.0, 'doesn': 1.0, 'floor': 1.0, 'bowl': 2.0, 'son': 1.0, 'used': 1.0, 'cheerios': 1.0, 'suction': 1.0, 't': 1.0, 'the': 6.0, 'high': 1.0, 'cup': 1.0, 'my': 1.0, 'chair': 1.0, 'threw': 1.0, 'on': 2.0, 'over': 1.0, 'tray': 1.0, 'and': 1.0, 'in': 1.0, 'he': 1.0, 'first': 1.0, 'this': 1.0, 'it': 2.0}
Word element => {'thrown': 1.0, 'and': 1.0, 'up': 1.0, 'picked': 1.0, 'gets': 1.0, 'at': 1.0, 'work': 1.0, 't': 1.0, 'fine': 1.0, 'the': 2.0, 'you': 1.0, 'suction': 1.0, 'if': 1.0, 'looking': 1.0, 'for': 1.0, 'doesn': 1.0, 'another': 1.0, 'all': 1.0, 'just': 1.0, 'plastic': 1.0, 'bowl': 2.0}
Word element => {'feature': 1.0, 'lid': 1.0, 'ebowl': 1.0, 'cut': 1.0, 'top': 1.0, 'working': 1.0, 'understand': 1.0, 'not': 1.0, 'just': 1.0, 'most': 1.0, 'suction': 2.0, 'nice': 1.0, 'bowl': 3.0, 'get': 1.0, 'that': 2.0, 'however': 1.0, 'well': 2.0, 'a': 4.0, 'very': 2.0, 'son': 1.0, 'on': 3.0, 'love': 1.0, 'for': 2.0, 'cup': 1.0, 'my': 1.0, 'high': 2.0, 'had': 1.0, 'to': 1.0, 'was': 1.0, 'would': 1.0, 'i': 2.0, 'work': 2.0, 'but': 3.0, 'doesn': 4.0, 'put': 2.0, 'even': 1.0, 'part': 1.0, 'his': 1.0, 'stay': 2.0, 'chair': 2.0, 'is': 3.0, 'tray': 2.0, 'couter': 1.0, 'excited': 1.0, 'it': 5.0, 'the': 4.0, 't': 4.0}
Word element => {'lunchtime': 1.0, 'up': 1.0, 'baby': 1.0, 'then': 1.0, 'moment': 1.0, 'art': 1.0, 'for': 2.0, 'way': 1.0, 'other': 1.0, 'looking': 1.0, 'into': 2.0, 'loosens': 1.0, 'you': 1.0, 'long': 1.0, 'just': 1.0, 'firm': 1.0, 'seems': 1.0, 'minute': 1.0, 'high': 1.0, 'or': 1.0, 'cup': 1.0, 'right': 1.0, 'the': 5.0, 'these': 1.0, 'stick': 1.0, 'modern': 1.0, 'not': 1.0, 'chair': 1.0, 'do': 1.0, 'perfectly': 2.0, 'poor': 1.0, 'they': 1.0, 'suction': 2.0, 'is': 1.0, 'tray': 1.0, 'wetting': 1.0, 'very': 1.0, 'single': 1.0, 'with': 1.0, 'it': 5.0, 'fool': 1.0, 'tight': 1.0, 'reviewer': 1.0, 'another': 1.0, 'so': 1.0, 'time': 3.0, 'simply': 1.0, 'after': 1.0, 'experience': 1.0, 'of': 1.0, 'and': 5.0, 'bowls': 2.0, 'smooth': 1.0, 'every': 1.0, 'i': 1.0, 'tried': 1.0, 'turn': 1.0, 'in': 2.0, 'both': 1.0, 'on': 1.0, 'plastic': 1.0, 'addition': 1.0, 'cups': 1.0, 'to': 4.0, 've': 1.0, 'each': 1.0, 'pick': 1.0, 'pops': 1.0, 'individually': 1.0, 'no': 1.0, 'a': 3.0, 'avail': 1.0, 'enough': 1.0, 'off': 1.0}
Word element => {'wood': 1.0, 'chair': 1.0, 'plastic': 1.0, 'not': 1.0, 'counter': 1.0, 'great': 1.0, 'works': 1.0, 'sliding': 1.0, 'doesn': 1.0, 'an': 1.0, 'on': 2.0, 'bowl': 1.0, 'sit': 1.0, 'kitchen': 1.0, 'separate': 1.0, 'divider': 1.0, 'flat': 1.0, 'in': 2.0, 'the': 6.0, 'has': 1.0, 'of': 1.0, 'up': 1.0, 'it': 5.0, 'come': 1.0, 't': 2.0, 's': 1.0, 'so': 1.0, 'okay': 1.0, 'because': 2.0, 'product': 1.0, 'supposed': 1.0, 'for': 2.0, 'traveling': 1.0, 'table': 1.0, 'lunch': 1.0, 'around': 1.0, 'is': 1.0, 'storing': 1.0, 'high': 2.0, 'lid': 1.0, 'my': 2.0, 'or': 2.0, 'cup': 1.0, 'enough': 1.0, 'dinning': 1.0, 'contents': 1.0, 'but': 2.0, 'food': 1.0, 'can': 1.0, 'i': 1.0, 'use': 1.0, 'keep': 2.0, 'sons': 1.0, 'to': 3.0, 'as': 1.0, 'suction': 1.0, 'from': 1.0, 'part': 1.0, 'box': 1.0, 'that': 1.0}
Word element => {'plastic': 1.0, 'than': 1.0, 'better': 1.0, 'no': 1.0, 'is': 1.0, 'last': 1.0, 'not': 1.0, 'cheaper': 1.0, 'does': 1.0, 'i': 1.0, 'product': 1.0, 'purchased': 1.0, 'suction': 1.0, 'disappointing': 1.0, 'been': 1.0, 'both': 2.0, 'the': 2.0, 'other': 1.0, 'have': 2.0, 'bowls': 1.0, 'any': 1.0, 'and': 3.0, 'plates': 1.0}
Word element => {'kidz': 1.0, 'recommend': 1.0, 'worth': 1.0, 'issue': 1.0, 'life': 1.0, 'battery': 1.0, 'came': 1.0, 'time': 2.0, 'minutes': 1.0, 'engage': 1.0, 'best': 1.0, 'preferences': 1.0, 'portion': 1.0, 'learned': 1.0, '16': 1.0, 'wasn': 1.0, 'didn': 1.0, 'open': 2.0, 'yet': 1.0, 'he': 4.0, 'last': 1.0, 'beginning': 1.0, 'per': 1.0, 'in': 2.0, 'purchased': 1.0, 'when': 1.0, 'was': 4.0, 'son': 2.0, 'any': 1.0, 'but': 1.0, 'close': 1.0, 'as': 2.0, 'under': 1.0, 'caught': 1.0, 'or': 2.0, 'closing': 1.0, 'opening': 1.0, 'great': 1.0, 'mastered': 1.0, 'quite': 2.0, 'cause': 1.0, 'hands': 1.0, 'pinched': 1.0, 'fingers': 3.0, 'light': 1.0, 'chance': 1.0, 'there': 1.0, 'enclosed': 1.0, 'fully': 1.0, 'they': 2.0, 'hinge': 1.0, 'long': 2.0, 'on': 1.0, 'part': 1.0, 'though': 1.0, 'multiple': 1.0, 'button': 1.0, 'surprisingly': 1.0, 'his': 1.0, 'music': 3.0, 'most': 1.0, 'each': 3.0, 'had': 1.0, 'songs': 1.0, 'would': 1.0, 'sound': 2.0, 'up': 1.0, 'get': 3.0, 'months': 3.0, 'such': 1.0, '10': 1.0, 'for': 3.0, 'system': 1.0, 'actually': 1.0, 'and': 13.0, 'crying': 1.0, 'too': 2.0, 'can': 2.0, 'so': 4.0, 'clips': 1.0, 'just': 1.0, 'thow': 1.0, 'at': 1.0, 'is': 12.0, 'to': 11.0, 'sides': 1.0, 's': 5.0, 't': 5.0, 'a': 14.0, 'injury': 1.0, 'no': 1.0, 'years': 1.0, 'move': 1.0, 'toy': 2.0, 'has': 1.0, 'play': 3.0, 'about': 2.0, 'learn': 1.0, 'samples': 2.0, 'doesn': 1.0, 'listen': 1.0, 'could': 1.0, 'will': 3.0, 'products': 1.0, 'price': 1.0, 'child': 1.0, 'toddler': 1.0, 'quality': 4.0, 'wine': 1.0, 'little': 4.0, 'aspect': 1.0, 'musical': 1.0, 'my': 3.0, 'carry': 1.0, 'noticable': 1.0, 'sample': 2.0, 'volume': 1.0, 'with': 2.0, 'it': 15.0, 'slam': 1.0, 'few': 1.0, 'page': 6.0, 'this': 6.0, 'durable': 1.0, 'liked': 1.0, 'batteries': 1.0, 'who': 2.0, 'challenge': 1.0, 'toys': 1.0, 'day': 1.0, 'short': 1.0, 'made': 1.0, 'based': 1.0, 'good': 3.0, 'different': 2.0, 'plastic': 2.0, 'roaming': 1.0, 'because': 1.0, 'easily': 1.0, 'that': 7.0, 'been': 1.0, 'have': 5.0, 'speaker': 1.0, 'first': 1.0, 'are': 2.0, 'like': 1.0, 'buy': 2.0, 'something': 1.0, 'hand': 1.0, 'cd': 1.0, 'some': 1.0, 'well': 1.0, 'i': 4.0, 'wouldn': 1.0, 'delight': 1.0, 'be': 2.0, 've': 1.0, 'turned': 1.0, 'tell': 1.0, 'we': 1.0, 'shouldn': 1.0, 'difference': 1.0, 'between': 1.0, 'loud': 1.0, 'able': 1.0, 'pages': 2.0, 'all': 4.0, 'other': 2.0, 'an': 2.0, 'himself': 1.0, 'very': 3.0, 'plays': 1.0, 'after': 1.0, 'times': 1.0, 'middle': 2.0, 'clear': 1.0, 'buttons': 1.0, 'amazing': 1.0, 'only': 2.0, 'complaint': 1.0, 'of': 4.0, 'the': 21.0, 'longer': 1.0, 'piano': 1.0, 'however': 1.0, 'bit': 2.0, 'replace': 1.0, 'closed': 2.0, 'audio': 1.0, 'recognizable': 1.0, 'seems': 1.0, 'until': 2.0, 'pleasure': 1.0, 'does': 1.0, 'not': 4.0}
Word element => {'at': 1.0, 'great': 1.0, 'a': 2.0, 'wonderful': 1.0, 'this': 2.0, 'deal': 1.0, 'need': 1.0, 'product': 1.0, 'please': 1.0, 'is': 2.0, 'amazing': 1.0, 'all': 1.0, 'i': 1.0, 'the': 1.0, 'more': 1.0, 'price': 1.0, 'characters': 1.0}
Word element => {'recommend': 1.0, 'big': 1.0, 'of': 1.0, 'cute': 1.0, 'pillow': 2.0, 'on': 1.0, 'grandson': 1.0, 'loves': 1.0, 'my': 1.0, 'the': 1.0, 'great': 1.0, 'a': 2.0, 'it': 1.0, 'this': 1.0, 'backyardigans': 1.0, 'super': 1.0, 'is': 1.0, 'fan': 1.0, 'huggie': 1.0, 'what': 1.0, 'and': 1.0, 'highly': 1.0, 'to': 1.0, 'lay': 1.0, 'i': 1.0}
Word element => {'buy': 1.0, 'one': 1.0, 'i': 2.0, 's': 1.0, 'loves': 1.0, 'very': 2.0, 'it': 3.0, 'great': 1.0, 'cheap': 1.0, 'my': 1.0, 'will': 1.0, 'baby': 1.0, 'think': 1.0, 'saul': 1.0, 'another': 1.0, 'a': 1.0, 'good': 1.0, 'deal': 1.0}
Word element => {'is': 1.0, 'overall': 1.0, 'bigger': 1.0, 'little': 1.0, 'a': 2.0, 'could': 1.0, 'this': 1.0, 'great': 1.0, 'it': 1.0, 'works': 1.0, 'buy': 1.0, 'what': 1.0, 'be': 1.0, 'much': 1.0, 'but': 1.0, 'than': 1.0, 'better': 1.0, 'we': 1.0, 'previously': 1.0, 'tried': 1.0, 'the': 1.0, 'hole': 1.0}
Word element => {'only': 1.0, 'keeping': 1.0, 'such': 1.0, 'no': 1.0, 'are': 1.0, 'there': 1.0, 'design': 2.0, 's': 2.0, 't': 4.0, 'a': 6.0, 'go': 2.0, 'not': 1.0, 'or': 1.0, 'works': 1.0, 'much': 1.0, 'whether': 1.0, 'then': 1.0, 'right': 1.0, 'potty': 1.0, 'immerse': 1.0, 'haven': 1.0, 'issue': 1.0, 'away': 1.0, 'didn': 2.0, 'but': 3.0, 'so': 2.0, 'can': 1.0, 'honest': 1.0, 'tried': 1.0, 'nooks': 1.0, 'have': 3.0, 'using': 1.0, 'if': 1.0, 'that': 3.0, 'into': 1.0, 'i': 8.0, 'hand': 1.0, 'buy': 1.0, 'mess': 1.0, 'two': 1.0, 'second': 1.0, 'said': 1.0, 'm': 1.0, 'in': 2.0, 'bjorn': 1.0, 'returned': 1.0, 'from': 1.0, 'my': 2.0, 'with': 2.0, 'this': 3.0, 'it': 14.0, 'sister': 1.0, 'to': 5.0, 'as': 2.0, 'all': 1.0, 'had': 1.0, 'stool': 2.0, 'boon': 1.0, 'be': 3.0, 'bought': 1.0, 'cool': 1.0, 'rather': 1.0, 'properly': 1.0, 'would': 3.0, 'and': 4.0, 'try': 1.0, 'too': 1.0, 'thing': 2.0, 'whole': 1.0, 'should': 1.0, 'happen': 1.0, 'headache': 1.0, 'where': 2.0, 'supposed': 1.0, 'peepee': 1.0, 'was': 1.0, 'you': 1.0, 'the': 4.0, 'of': 1.0, 'ran': 1.0, 'clorox': 1.0, 'just': 1.0, 'cleaning': 2.0, 'up': 1.0, 'is': 2.0, 'used': 1.0, 'sturdy': 1.0, 'isn': 1.0, 'stepping': 2.0, 'good': 1.0, 'think': 1.0, 'many': 1.0, 'santize': 1.0, 'baby': 1.0, 'got': 1.0, 'daughter': 1.0, 'crevices': 2.0, 'pieces': 1.0, 'hassel': 1.0, 'weighs': 1.0, 'out': 1.0, 'nothing': 1.0, 'has': 1.0}
Word element => {'drawer': 1.0, 'empty': 1.0, 'clean': 1.0, 'roll': 1.0, 'bar': 1.0, 'has': 1.0, 'bathroom': 1.0, 'than': 1.0, 'reach': 1.0, 'hard': 2.0, 'there': 1.0, 'having': 1.0, 'house': 1.0, 'move': 1.0, 'did': 1.0, '1': 1.0, 'until': 1.0, 'and': 6.0, 'tall': 1.0, 'times': 1.0, 'pooed': 1.0, 'child': 1.0, 'year': 1.0, 'his': 2.0, 'on': 5.0, 'diversions': 1.0, 'potty': 1.0, 'want': 1.0, 'frequently': 1.0, 'about': 1.0, 'ours': 1.0, 'no': 1.0, 'peed': 1.0, 'been': 1.0, 'case': 1.0, 'found': 1.0, 'tv': 1.0, 'loves': 1.0, 'although': 1.0, 'recently': 1.0, 'baby': 1.0, 'bjorn': 1.0, 'we': 2.0, 'a': 6.0, 't': 1.0, 'after': 1.0, 'as': 4.0, 'in': 2.0, 'seat': 2.0, 'any': 1.0, 'had': 3.0, 'fits': 1.0, 'stepstool': 1.0, 'for': 3.0, 'son': 2.0, 'only': 2.0, 'he': 7.0, 'with': 7.0, 'few': 1.0, 'this': 2.0, 'my': 2.0, 'more': 2.0, 'the': 13.0, 'pee': 1.0, 'hands': 1.0, 'bought': 1.0, 'trying': 1.0, 'boon': 1.0, 'be': 1.0, 'thought': 1.0, 'it': 7.0, 'him': 1.0, 'not': 3.0, 'toilet': 4.0, 'seriously': 1.0, 'to': 8.0, 'straight': 1.0, 'd': 1.0, 'now': 1.0, 'away': 1.0, 'was': 2.0, 'success': 1.0, 'too': 1.0, 'try': 1.0, 'happy': 1.0, 'haven': 1.0, 'even': 2.0, 'upstairs': 1.0, 'got': 1.0, 'were': 1.0, 'shield': 1.0, 'can': 1.0, 'but': 2.0, 'point': 1.0, 'that': 2.0, 'problems': 1.0, 'down': 1.0, 'would': 1.0, 'floor': 1.0, 'easier': 1.0, 'i': 6.0, 'feet': 1.0, 'poo': 2.0, 'bothered': 1.0, 'are': 2.0, 'think': 1.0, 'ground': 1.0, 's': 4.0, 'sides': 1.0, 'paper': 2.0, 'room': 1.0, 'us': 1.0, 'anyway': 1.0, 'have': 1.0, 'design': 1.0}
Word element => {'up': 1.0, 'mean': 1.0, 'before': 1.0, 'out': 1.0, 'clean': 2.0, 'times': 1.0, 'couple': 1.0, 'okay': 1.0, 'problem': 1.0, 's': 3.0, 'too': 1.0, 'needs': 1.0, 'understands': 1.0, 'moved': 1.0, 'get': 1.0, 'months': 1.0, 'both': 1.0, 'they': 2.0, 'twins': 1.0, 're': 1.0, 'girl': 1.0, 'train': 1.0, 'not': 2.0, 'very': 1.0, 'mess': 2.0, 'tuck': 2.0, 'whole': 1.0, 'stool': 2.0, 'step': 1.0, 'use': 4.0, 'we': 3.0, 'always': 2.0, 'sit': 2.0, 'when': 1.0, 'hurt': 1.0, 'and': 12.0, 'as': 2.0, 'horrible': 1.0, 'on': 6.0, 'butt': 1.0, 'put': 1.0, 'catch': 1.0, '3': 1.0, 'been': 1.0, 'flush': 1.0, 'of': 1.0, 'the': 8.0, 'bench': 3.0, 'taught': 1.0, '5': 2.0, 'five': 1.0, 'a': 9.0, 'want': 1.0, 'red': 1.0, 'with': 2.0, 'good': 2.0, 'made': 1.0, 'review': 1.0, 'for': 4.0, 't': 8.0, 'fit': 1.0, 'stars': 1.0, 'was': 8.0, 'had': 3.0, 'to': 18.0, 'how': 1.0, 'love': 1.0, 'he': 8.0, 'while': 1.0, 'from': 1.0, 'boy': 2.0, 'properly': 1.0, 'no': 1.0, 'years': 1.0, 'about': 3.0, 'i': 12.0, 'stuck': 1.0, 'potty': 3.0, 'so': 4.0, 'until': 1.0, 'big': 4.0, 'worry': 1.0, 'comfortable': 1.0, 'first': 1.0, 'plus': 1.0, 'son': 3.0, 'n': 1.0, 'give': 1.0, 'this': 3.0, 'easy': 2.0, 'found': 1.0, 'starting': 1.0, 'him': 4.0, 'it': 21.0, 'didn': 8.0, 'his': 4.0, 'but': 2.0, 'write': 1.0, 'used': 1.0, 'me': 1.0, 'my': 5.0, 'checked': 1.0, 'all': 1.0, 'fits': 1.0, 'splash': 2.0, 'lid': 1.0, 'training': 1.0, 'uncomfortable': 1.0, 'age': 1.0, 'm': 1.0, 'in': 3.0, 'just': 3.0, 'like': 4.0, 'have': 2.0, 'picked': 1.0, 'sat': 1.0, 'getting': 1.0, 'enough': 1.0, 'loved': 1.0, 'sounds': 1.0, 'started': 1.0, 'toys': 1.0, 'trained': 1.0, 'thing': 2.0, '2': 1.0, 'over': 1.0, 'work': 1.0, 'now': 2.0, 'time': 1.0, 'uses': 1.0, 'sometimes': 1.0, 'reason': 1.0, 'ring': 1.0, 'at': 2.0, 'is': 2.0, 'deal': 1.0, 'others': 1.0, 'books': 1.0, 'guard': 2.0, '20': 1.0, 'that': 5.0, 'compartments': 1.0, 'because': 1.0, 'still': 3.0, 'every': 1.0, 'close': 1.0}
Word element => {'soon': 1.0, 't': 1.0, 'don': 1.0, 'they': 1.0, 'huge': 1.0, 'company': 2.0, 'by': 1.0, 'very': 1.0, 'tape': 1.0, 'store': 1.0, 'go': 1.0, 'or': 1.0, 'thereby': 1.0, 'underneath': 1.0, 'mat': 1.0, 'place': 1.0, '2': 1.0, 'any': 3.0, 'to': 5.0, 'as': 2.0, 'all': 1.0, 'disappointed': 1.0, 'our': 5.0, 'how': 2.0, 'theirs': 1.0, 'step': 2.0, 'stool': 1.0, 'reached': 1.0, 'would': 1.0, 's': 2.0, 'a': 7.0, 'we': 6.0, 'discovered': 1.0, 'does': 2.0, 'kitchen': 2.0, 'the': 17.0, 'of': 3.0, 'over': 1.0, 'liability': 1.0, 'also': 1.0, 'surely': 1.0, 'missing': 1.0, 'in': 1.0, 'if': 1.0, 'turn': 1.0, 'my': 1.0, 'family': 1.0, 'when': 1.0, 'this': 5.0, 'and': 9.0, 'loved': 1.0, 'nullifying': 1.0, 'have': 3.0, 'bench': 5.0, 'contacted': 1.0, 'such': 1.0, 'for': 2.0, 'liked': 1.0, 'not': 3.0, 'sink': 1.0, 'young': 1.0, 'that': 4.0, 'kids': 1.0, 'box': 1.0, 'are': 1.0, 'first': 2.0, 'hardware': 1.0, 'thought': 2.0, 'it': 5.0, 'did': 1.0, 'nearly': 1.0, 'caused': 1.0, 'potty': 1.0, 'so': 1.0, 'be': 2.0, 'boon': 1.0, 'great': 1.0, 'is': 3.0, 'look': 3.0, 'at': 2.0, 'sits': 1.0, 'safety': 1.0, 'rubber': 5.0, 'coming': 1.0, 'feet': 3.0, 'out': 2.0, 'floor': 1.0, 'find': 1.0, 'since': 1.0, '1': 1.0, 'tiled': 1.0, 'problem': 1.0, 'slid': 1.0, 'moment': 1.0, 'daughter': 1.0, 'on': 2.0, 'faucet': 1.0, 'counter': 1.0, 'utility': 1.0, 'error': 1.0, 'wash': 1.0, 'her': 2.0, 'bang': 1.0, 'from': 1.0, 'granite': 1.0, 'dangerous': 1.0, 'top': 1.0, 'was': 2.0, 'just': 1.0, 'were': 1.0, 'head': 1.0, 'somehow': 1.0, 'after': 1.0, 'designer': 1.0, 'hands': 1.0, 'children': 1.0, 'product': 3.0, 'products': 1.0, 'especially': 1.0, 'stools': 1.0, 'fix': 2.0, 'should': 3.0, 'customer': 1.0, 'their': 1.0, 'cool': 1.0, 'consider': 1.0, 'packaging': 1.0, 'response': 2.0}
Word element => {'sister': 1.0, 'little': 1.0, 'save': 1.0, 'definitely': 1.0, 'will': 1.0, 'pleased': 1.0, 'less': 1.0, 'clean': 1.0, 'found': 1.0, 'this': 2.0, 'i': 2.0, 'as': 1.0, 'our': 1.0, 'very': 2.0, 'vanity': 1.0, 'careful': 1.0, 'sat': 1.0, 'empty': 1.0, 'its': 1.0, 'much': 2.0, 'do': 1.0, 'easier': 1.0, 'used': 1.0, 'is': 1.0, 'side': 1.0, 'which': 1.0, 'also': 2.0, 'in': 1.0, 'potty': 3.0, 'due': 1.0, 'bathroom': 1.0, 'my': 2.0, 'may': 1.0, 'other': 1.0, 't': 1.0, 'otherwise': 1.0, 'd': 2.0, 'a': 3.0, 'small': 1.0, 'she': 1.0, 'convenient': 1.0, 'downstairs': 1.0, 'with': 2.0, 'real': 1.0, 'stool': 1.0, 'space': 1.0, 'was': 4.0, 'step': 1.0, 'doesn': 1.0, 'to': 5.0, 'against': 1.0, 'pretty': 1.0, 'we': 3.0, 'take': 1.0, 'flush': 1.0, 'saver': 1.0, 'and': 3.0, 'too': 1.0, 'overall': 1.0, 'the': 5.0, 'of': 1.0, 'temptation': 1.0, 'for': 3.0, 'actually': 1.0, 'daughter': 1.0, 'so': 1.0, 'constantly': 1.0, 'it': 8.0, 'hooks': 2.0, 'on': 1.0, 'than': 1.0, 'apart': 1.0, 'because': 2.0, 'that': 1.0, 'graco': 1.0, 'gross': 1.0, 'top': 1.0, 'just': 1.0, 'come': 1.0, 'tried': 1.0, 'areas': 1.0, 'off': 2.0, 'be': 1.0, 'when': 1.0, 'you': 1.0, 'removing': 1.0, 'old': 1.0, 'rectangular': 1.0, 'break': 1.0, 'did': 1.0, 'not': 1.0, 'use': 2.0, 'shape': 1.0, 'storage': 1.0, 'hard': 1.0, 'open': 1.0, 'always': 1.0, 'them': 1.0, 'impossible': 1.0, '2': 1.0, '5': 1.0, 'potties': 1.0, 'year': 1.0}
Word element => {'modern': 1.0, 'and': 1.0, 'side': 1.0, 'one': 1.0, 'in': 1.0, 'on': 1.0, 'spaces': 1.0, 'height': 1.0, 'storage': 1.0, 'daughter': 1.0, 'gets': 1.0, 'my': 1.0, 'loves': 1.0, 'just': 1.0, 'potty': 1.0, 'little': 2.0, 'she': 2.0, 'sides': 1.0, 'the': 2.0, 'great': 2.0, 'chart': 1.0, 'her': 1.0, 'stickers': 1.0, 'has': 1.0, 'sticker': 1.0, 'keep': 1.0, 'a': 1.0, 'so': 1.0, 'look': 1.0, 'to': 1.0}
Word element => {'step': 1.0, 'sliding': 1.0, 'ysing': 1.0, 'while': 1.0, 'from': 1.0, 'bottom': 1.0, 'on': 1.0, 'rubber': 1.0, 'also': 1.0, 'out': 1.0, 'worked': 1.0, 'tested': 1.0, 'should': 1.0, 'manufacturer': 1.0, 'like': 1.0, 'function': 1.0, 'boys': 1.0, 'both': 1.0, 'with': 1.0, 'hit': 1.0, 'huge': 1.0, 'are': 1.0, 'my': 2.0, 'stool': 1.0, 'suggest': 1.0, 'purchased': 1.0, 'is': 3.0, 'it': 4.0, 'this': 1.0, 'putting': 1.0, 'him': 2.0, 'atleast': 1.0, 'a': 6.0, 'well': 1.0, 'buy': 1.0, 'marketing': 1.0, 'prior': 1.0, 'i': 4.0, 'however': 1.0, 'have': 1.0, 'small': 1.0, 'or': 1.0, 'paper': 1.0, 'taller': 1.0, 'boy': 2.0, 'potty': 2.0, 'not': 3.0, 'product': 1.0, 'for': 2.0, 'girl': 1.0, 'enough': 1.0, 'but': 1.0, '2': 1.0, 'work': 1.0, 'can': 1.0, 'toilet': 1.0, 'issues': 1.0, 'sides': 1.0, 'help': 1.0, 'direct': 2.0, 'the': 5.0, 'believe': 1.0, 'orange': 1.0, 'something': 1.0, 'would': 2.0, 'guard': 1.0, 'into': 2.0, 'that': 1.0, 'nephew': 1.0, 'keep': 1.0, 'at': 1.0, 'way': 1.0, 'too': 1.0, 'tall': 1.0, 'and': 3.0, 'in': 1.0, 'as': 1.0, 'to': 4.0, 'all': 1.0, 'seem': 1.0, 'son': 1.0, 'possible': 1.0, 'storage': 1.0}
Word element => {'more': 1.0, 'couple': 1.0, 'using': 1.0, 'll': 1.0, 'edge': 1.0, 'other': 1.0, 'an': 1.0, 'storage': 1.0, 'think': 1.0, 'd': 1.0, 'bought': 1.0, 'emergencies': 1.0, 'perfect': 1.0, 'anything': 2.0, 'place': 1.0, 'snap': 1.0, 's': 2.0, 'out': 3.0, 'pull': 1.0, 'when': 3.0, 'between': 1.0, 'half': 1.0, 'lid': 1.0, 'dew': 1.0, 'morning': 1.0, 'like': 2.0, 'even': 1.0, 'doesn': 1.0, 'down': 1.0, 'top': 1.0, 'camping': 1.0, 'never': 1.0, 'purposes': 1.0, 'disposal': 1.0, 'solids': 1.0, 'second': 1.0, 'baggies': 1.0, 'plastic': 1.0, 'easy': 1.0, 'sanitizer': 1.0, 'takes': 1.0, 'water': 1.0, 'squirt': 1.0, 'store': 1.0, 'curve': 1.0, 'shoes': 1.0, 'prefers': 1.0, '2': 2.0, 'but': 1.0, 'who': 1.0, 'ready': 1.0, 'downhill': 1.0, 'or': 3.0, 'about': 2.0, 'today': 1.0, 'look': 1.0, 'is': 1.0, 'had': 2.0, 'either': 1.0, 'to': 8.0, 'backsplash': 1.0, 'as': 1.0, 'new': 1.0, 'locations': 1.0, 'hand': 1.0, 'finds': 1.0, 'trip': 1.0, 'and': 11.0, 'trunk': 1.0, 'splash': 1.0, 'yes': 1.0, 'weekly': 1.0, 'problem': 1.0, 'clean': 1.0, 'car': 2.0, 'for': 9.0, 'fold': 1.0, 'he': 4.0, 'love': 4.0, 'sight': 1.0, 'of': 5.0, 'the': 14.0, 'careful': 1.0, 'if': 1.0, 'still': 2.0, 'serious': 1.0, 't': 1.0, 'strange': 1.0, 'daughter': 1.0, 'got': 1.0, 'seat': 1.0, 'in': 5.0, 'products': 1.0, 'potties': 1.0, 'product': 1.0, 'year': 2.0, 'his': 2.0, 'bathroom': 1.0, 'kept': 1.0, 'son': 2.0, 'stayed': 1.0, 'i': 13.0, 'collects': 1.0, 'no': 3.0, 'years': 2.0, 'go': 3.0, 'imagine': 1.0, 'a': 9.0, 'take': 1.0, 'leg': 1.0, 'we': 4.0, '5': 2.0, 'bottle': 1.0, 'this': 3.0, 'it': 14.0, 'over': 1.0, 'hem': 1.0, 'use': 3.0, 'arranged': 1.0, 'my': 4.0, 'learning': 2.0, 'with': 3.0, 'seen': 1.0, 'stores': 1.0, 'have': 2.0, 'practice': 1.0, 'give': 1.0, 'there': 2.0, 'hang': 1.0, 'legs': 1.0, 'trouble': 1.0, 'while': 1.0, 'was': 2.0, 'rarely': 1.0, 'has': 1.0, 'always': 1.0, 'were': 1.0, 'put': 1.0, 'on': 5.0, 'potty': 2.0, 'can': 1.0, 'so': 1.0, 'slope': 1.0, 'paper': 1.0, 'old': 2.0, 'run': 1.0, 'side': 1.0, 'plan': 1.0, 'which': 1.0, 'suddenly': 1.0, 'be': 2.0, 'backward': 1.0, 'pants': 1.0, 'dry': 1.0, 'not': 2.0, 'also': 1.0, 'us': 1.0, 'guard': 1.0, 'toilet': 1.0, 'compartments': 2.0, 'that': 4.0, 'easily': 1.0}
Word element => {'function': 1.0, 'unfortunately': 1.0, 'inserts': 1.0, 'way': 1.0, 'anxiety': 1.0, 'creates': 1.0, 'trainer': 1.0, 'new': 1.0, 'down': 1.0, 'point': 1.0, 'of': 2.0, 'direct': 1.0, 'tried': 1.0, 'anything': 1.0, 'target': 1.0, 'toddler': 1.0, 'height': 1.0, 'have': 1.0, 'small': 1.0, 'very': 2.0, 'shield': 3.0, 'the': 5.0, 'just': 1.0, 'him': 3.0, 'get': 2.0, 'too': 1.0, 'and': 2.0, 'use': 1.0, 'attempting': 1.0, 'with': 1.0, 'else': 1.0, 'children': 1.0, 'older': 1.0, 'it': 6.0, 'this': 4.0, 'extremely': 2.0, 'he': 2.0, 'definitely': 1.0, 'are': 1.0, 'reviewers': 1.0, 'difficult': 2.0, 'son': 1.0, 'were': 1.0, 'their': 1.0, 'all': 1.0, 'to': 5.0, 'our': 1.0, 'bought': 1.0, 'does': 1.0, 'than': 1.0, 'because': 1.0, 'not': 2.0, 'design': 1.0, 'positioned': 1.0, 'taller': 1.0, 'chair': 1.0, 'challenged': 1.0, 'good': 1.0, 'i': 1.0, 'so': 1.0, 'potty': 3.0, 'more': 1.0, 'is': 5.0, 'finding': 1.0, 'kid': 1.0, 'thoughtful': 1.0, 'fit': 2.0, 'for': 3.0, 'or': 1.0, 'behind': 2.0, 'yet': 1.0, 'his': 1.0, 'in': 2.0, 'said': 1.0, 'age': 1.0, 'best': 1.0, 'years': 1.0, 'a': 6.0, 'we': 3.0, 's': 1.0, 'but': 1.0, '2': 1.0, 'while': 1.0, '5': 1.0, 'bench': 1.0, 'big': 1.0, 'seemed': 1.0, 'frustrated': 1.0, 'width': 1.0, 'like': 1.0, 'bigger': 1.0, 'who': 1.0, 'option': 1.0, 'well': 1.0, 'has': 1.0, 'been': 1.0}
Word element => {'disappear': 1.0, 'nipple': 1.0, 'where': 1.0, 'aware': 1.0, 'advertised': 1.0, 'parts': 1.0, 'broken': 1.0, 'has': 1.0, 'quality': 1.0, 'build': 1.0, 'nice': 1.0, 'bench': 1.0, 'nothing': 1.0, 'out': 1.0, 'overall': 1.0, 'slide': 1.0, 'leave': 1.0, 'as': 2.0, 'backwards': 1.0, 'on': 1.0, 'some': 1.0, 'must': 2.0, 'does': 1.0, 'top': 1.0, 'closes': 1.0, 'your': 2.0, 'think': 1.0, 'make': 1.0, 'if': 1.0, 'so': 1.0, 'potty': 2.0, 'right': 1.0, 'arrived': 1.0, 'empty': 1.0, 'only': 1.0, 'poop': 1.0, 'when': 1.0, 'early': 1.0, 'is': 6.0, 'say': 1.0, 'use': 1.0, 'trouble': 1.0, 'else': 1.0, 'but': 1.0, 'you': 11.0, 'pees': 1.0, 'in': 1.0, 'my': 3.0, 'well': 1.0, 'i': 3.0, 'mess': 1.0, 'thank': 1.0, 'child': 3.0, 'daughter': 2.0, 'too': 1.0, 'and': 6.0, 'orange': 1.0, 'would': 1.0, 'she': 3.0, 'it': 7.0, 'tell': 1.0, 'remove': 1.0, 'stuff': 1.0, 'just': 2.0, 'excited': 1.0, '1': 3.0, 'great': 2.0, 'this': 2.0, 'away': 1.0, 'now': 1.0, 'pee': 1.0, 'careful': 1.0, 'was': 4.0, 'resulting': 1.0, 'spill': 1.0, 'not': 1.0, 'a': 3.0, 'might': 1.0, 'stinky': 1.0, 'have': 2.0, 'lets': 1.0, 'because': 1.0, 'that': 1.0, 'hope': 1.0, 'toilet': 1.0, 'really': 1.0, 'to': 2.0, 'will': 1.0, 'doors': 2.0, 'all': 2.0, 'close': 2.0, 'extra': 1.0, 'made': 1.0, 'side': 3.0, 'uses': 1.0, 'main': 1.0, 'realizes': 1.0, 'cover': 1.0, 'be': 3.0, 'work': 1.0, 'daily': 1.0, 'open': 2.0, 'or': 3.0, 'cannot': 1.0, 'than': 1.0, 'way': 1.0, 'paper': 1.0, 'once': 2.0, 'the': 14.0, 'of': 4.0, 'left': 2.0, 'more': 1.0, 'door': 1.0, 'for': 1.0, 'storage': 1.0, 'holder': 2.0, 'guess': 1.0, 'done': 1.0, 'surprise': 1.0, '2': 3.0, 'thing': 1.0, 'weight': 1.0}
Word element => {'lookng': 1.0, 'started': 1.0, 'is': 1.0, 'plays': 1.0, 'third': 1.0, 'a': 4.0, 'we': 1.0, 'sounds': 1.0, 'on': 2.0, 'have': 1.0, 'this': 3.0, 'looks': 2.0, 'it': 3.0, 'first': 1.0, 'the': 3.0, 'that': 2.0, 'appearance': 1.0, 'potty': 4.0, 'like': 1.0, 'and': 6.0, 'toy': 1.0, 'has': 2.0, 'proven': 2.0, 'best': 2.0, 'padded': 1.0, 'all': 1.0, 'our': 2.0, 'as': 1.0, 'seat': 1.0, 'perfectly': 1.0, 'stand': 1.0, 'toilet': 2.0, 'can': 1.0, 'one': 1.0, 'cool': 1.0, 'fits': 2.0, 'my': 2.0, 'stores': 1.0, 'daughter': 2.0, 'for': 1.0, 'love': 1.0, 'where': 1.0, 'when': 1.0, 'design': 1.0, 'paper': 1.0, 'different': 1.0, 'wipes': 1.0, 'stool': 1.0, 'i': 2.0, 'was': 1.0}
Word element => {'child': 1.0, 'doesn': 1.0, 'nice': 1.0, 'also': 1.0, 'them': 1.0, 'just': 1.0, 'side': 1.0, 'open': 1.0, 'areas': 1.0, 'though': 1.0, 'out': 3.0, 'while': 2.0, 'take': 1.0, 'drawer': 1.0, 'did': 1.0, 'splashes': 1.0, 'no': 1.0, 'down': 1.0, 'gotten': 1.0, 'easier': 1.0, 'has': 2.0, 'that': 2.0, 'now': 1.0, 'something': 1.0, 'would': 1.0, 'guard': 1.0, 'latch': 1.0, 'or': 2.0, 'behind': 1.0, 'sometimes': 1.0, 'willie': 1.0, 'always': 1.0, 'his': 1.0, 'year': 1.0, 'son': 2.0, 'eliminate': 1.0, '5': 1.0, 'different': 1.0, 'but': 1.0, '2': 1.0, 'the': 6.0, 'splash': 1.0, 'my': 2.0, 'choice': 1.0, 'it': 6.0, 'one': 1.0, 'given': 1.0, 'for': 2.0, 't': 1.0, 'a': 5.0, 'we': 1.0, 'on': 3.0, 'make': 1.0, '3': 1.0, 'improvement': 1.0, 'house': 1.0, 'either': 1.0, 'chooses': 1.0, 'i': 1.0, 'took': 1.0, 'how': 1.0, 'teach': 1.0, 'he': 3.0, 'potties': 1.0, 'at': 1.0, 'tuck': 1.0, 'and': 2.0, 'find': 1.0, 'size': 1.0, 'adequate': 1.0, 'be': 1.0, 'him': 3.0, 'comes': 1.0, 'is': 3.0, 'old': 1.0, '35': 1.0, 'when': 1.0, 'lbs': 1.0, '42': 1.0, 'this': 1.0, 'talll': 1.0, 'have': 2.0, 'small': 1.0, 'sneak': 1.0, 'certainly': 1.0, 'not': 1.0, 'figure': 1.0, 'very': 1.0, 'inches': 1.0, 'little': 1.0, 'potty': 1.0, 'so': 3.0, 'time': 1.0, 'doors': 1.0, 'our': 1.0, 'to': 5.0}
Word element => {'little': 1.0, 'making': 1.0, 'thank': 1.0, 'couldn': 1.0, 'up': 1.0, 'makes': 1.0, 'drawer': 1.0, 'out': 1.0, 'herself': 1.0, 'of': 1.0, 'on': 1.0, 'easy': 1.0, 'get': 1.0, 'clean': 1.0, 'her': 1.0, 'has': 1.0, 'training': 2.0, 'off': 1.0, 'house': 1.0, 'bench': 1.0, 't': 1.0, 'a': 3.0, 'since': 1.0, 'by': 1.0, 'just': 1.0, 'perfect': 1.0, 'this': 1.0, '18': 1.0, 'used': 1.0, 'and': 4.0, 'do': 2.0, 'my': 1.0, 'often': 1.0, 'pull': 1.0, 'daughter': 1.0, 'you': 1.0, 'when': 1.0, 'compartments': 1.0, 'i': 4.0, 'it': 3.0, 'she': 2.0, 'was': 2.0, 'bought': 1.0, 'months': 1.0, 'been': 1.0, 'breeze': 1.0, 'boon': 1.0, '21months': 1.0, 'potty': 3.0, 'so': 1.0, 'for': 5.0, 'sitters': 1.0, 'far': 1.0, 'without': 1.0, 'the': 5.0, 'until': 1.0, 'great': 1.0, 'side': 1.0, 'is': 1.0, 'smoother': 1.0, 'are': 1.0, 'storing': 1.0, 'extra': 1.0, 'as': 1.0, 'to': 2.0, 'underwear': 1.0, 'clothes': 1.0, 'which': 1.0, 'take': 1.0, 'height': 1.0}
Word element => {'potty': 1.0, 'of': 1.0, 'sturdiness': 1.0, 'worn': 1.0, 'little': 1.0, 'sat': 1.0, 'corners': 1.0, 'like': 1.0, 'years': 1.0, 'for': 1.0, 'it': 1.0, 'looked': 2.0, 'this': 2.0, 'come': 1.0, 'either': 1.0, 'sturdy': 1.0, 'or': 1.0, 'off': 1.0, 'return': 1.0, 'since': 1.0, 'previous': 1.0, 'and': 3.0, 'me': 1.0, 'couple': 1.0, 'made': 1.0, 'marks': 1.0, 'white': 1.0, 'was': 2.0, 'to': 1.0, 'but': 1.0, 'used': 1.0, 'maybe': 1.0, 'the': 3.0, 'a': 4.0, 't': 1.0, 'color': 1.0, 'in': 1.0, 'dulled': 1.0, 'there': 1.0, 'scuff': 1.0, 'black': 1.0, 'were': 1.0, 'box': 1.0, 'that': 1.0, 'on': 1.0, 'well': 1.0, 'won': 1.0, 'otherwise': 1.0, 'i': 1.0, 'plainess': 1.0}
Word element => {'closing': 1.0, 'just': 1.0, 'by': 1.0, 'brush': 1.0, 'wash': 1.0, 'this': 1.0, 'forget': 1.0, 'plus': 1.0, 'sitting': 1.0, 'ipad': 1.0, 'now': 1.0, 'wait': 1.0, 'toys': 1.0, 'or': 2.0, 'compartment': 1.0, 'paper': 1.0, 'toilet': 1.0, 'likes': 1.0, 'night': 1.0, 'there': 1.0, 'books': 1.0, 'results': 1.0, 'successful': 1.0, 'coworker': 1.0, 'while': 1.0, 'from': 1.0, 'is': 1.0, 'thre': 1.0, 'pieces': 2.0, 'bench': 3.0, 'turn': 2.0, 'in': 2.0, 'way': 1.0, 'sit': 1.0, 'not': 1.0, 'those': 1.0, 'separate': 1.0, 'other': 2.0, 'removed': 1.0, 'lid': 1.0, 'another': 1.0, 'purchased': 1.0, 'had': 3.0, 'consisted': 1.0, 'boon': 1.0, 'potty': 4.0, 'be': 1.0, 'us': 1.0, 'it': 5.0, 'with': 3.0, 'he': 3.0, 'of': 3.0, 'into': 5.0, 'donated': 1.0, 'that': 2.0, 'outside': 1.0, 'to': 9.0, 'our': 1.0, 'goes': 1.0, 'made': 1.0, 'amazon': 1.0, 'hassle': 1.0, 'again': 1.0, 'because': 1.0, 'wrestle': 1.0, 'son': 1.0, 'one': 3.0, 'teeth': 1.0, 'like': 1.0, 'brought': 1.0, 'hand': 1.0, 'play': 1.0, 'and': 4.0, 'hands': 1.0, 'place': 1.0, 'the': 9.0, 's': 1.0, 'we': 2.0, 'a': 4.0, 't': 1.0, 'together': 1.0, 'order': 1.0, 'then': 1.0, 'got': 1.0, 'didn': 1.0, 'converts': 1.0, 'same': 1.0, 'want': 1.0, 'put': 1.0, 'on': 1.0, 'conveniently': 1.0, 'two': 1.0, 'i': 2.0}
Word element => {'car': 1.0, 'year': 1.0, 'awesome': 1.0, 'your': 2.0, 'i': 1.0, 'old': 1.0, 'for': 2.0, 'love': 1.0, 'my': 1.0, 'booster': 2.0, 'the': 1.0, 'is': 1.0, 'it': 1.0, 'this': 1.0, 'under': 1.0, '4': 1.0, 'integrity': 1.0, 'her': 1.0, 'perfect': 1.0, 'toddler': 1.0, 's': 1.0, 'seat': 1.0, 'of': 1.0, 'and': 1.0}
Word element => {'covers': 1.0, 'only': 1.0, 'it': 1.0, 'bottom': 1.0, 'because': 1.0, 'enough': 1.0, 'carefully': 1.0, 'read': 1.0, 'i': 3.0, 'didn': 1.0, 'thought': 1.0, 'also': 1.0, 't': 1.0, 'this': 1.0, 'part': 1.0, 'would': 1.0, 'the': 3.0, 'back': 1.0, 'seat': 1.0, 'of': 1.0, 'cover': 1.0, 'guess': 1.0}
Word element => {'bought': 2.0, 'be': 1.0, 'transporting': 1.0, 'task': 1.0, 'grandchildren': 1.0, 'that': 1.0, 'when': 2.0, 'cadillac': 1.0, 'these': 3.0, 'the': 2.0, 'they': 2.0, 'to': 3.0, 'easy': 1.0, 'required': 1.0, 'accomplish': 1.0, 'are': 1.0, 'reminded': 1.0, 'with': 1.0, 'leather': 2.0, 'a': 1.0, 'protectors': 1.0, 'protect': 1.0, 'grandkids': 1.0, 'my': 4.0, 'save': 1.0, 'found': 1.0, 'seats': 3.0, 'and': 2.0, 'me': 1.0, 'something': 1.0, 'would': 1.0, 'carry': 1.0, 'i': 5.0, 'two': 1.0, 'on': 2.0, 'nicely': 1.0, 'occasion': 1.0, 'around': 2.0, 'appaled': 1.0, 'expensive': 1.0, 'for': 1.0, 'looked': 1.0, 'wife': 1.0, 'from': 1.0, 'very': 1.0, 'damage': 1.0, 'use': 2.0, 'amazon': 1.0}
Word element => {'can': 1.0, 'really': 1.0, 'you': 1.0, 'policy': 1.0, 'or': 1.0, 'seats': 1.0, 'wrong': 1.0, 'go': 1.0, 'say': 1.0, 'reviews': 1.0, 'comparable': 1.0, 'anything': 1.0, 'found': 1.0, 'not': 1.0, 'i': 2.0, 'don': 2.0, 'price': 2.0, 'bucket': 1.0, 'acura': 1.0, 'to': 1.0, 'certain': 1.0, 'get': 1.0, 'and': 3.0, 'flawlessly': 1.0, 'return': 1.0, 'a': 3.0, 'in': 1.0, 'for': 2.0, 'lexus': 1.0, 'with': 2.0, 'used': 1.0, 'they': 2.0, 'rx': 1.0, 'have': 2.0, 'cars': 1.0, 'we': 1.0, 'everything': 1.0, 'that': 1.0, 'tl': 1.0, 'from': 1.0, 'booster': 1.0, 't': 3.0, 'these': 1.0, 'the': 3.0, 'an': 1.0, 'work': 2.0}
Word element => {'fit': 1.0, 'to': 1.0, 'water': 1.0, 'too': 1.0, 'be': 1.0, 'for': 2.0, '2010': 1.0, 'napkins': 1.0, 'corolla': 1.0, 'bottles': 1.0, 'bigger': 1.0, 'small': 2.0, 'my': 1.0, 'them': 1.0, 'fits': 1.0, 'perfectly': 1.0, 'cars': 1.0, 'pockets': 1.0, 'could': 1.0, 'like': 1.0, 'stuff': 1.0, 'into': 1.0, 'or': 1.0, 'expect': 1.0, 'nice': 1.0, 'snack': 1.0, 't': 1.0, 'toyota': 1.0, 'don': 1.0}
Word element => {'rag': 1.0, 'toxic': 1.0, 'for': 1.0, 'bucks': 1.0, '16': 1.0, 'store': 1.0, 'the': 1.0, 'charging': 1.0, 'from': 1.0, 'like': 1.0, 'no': 1.0, 'dollar': 1.0, 'and': 3.0, 'outrageous': 1.0, 'vapors': 1.0, 'covered': 1.0, 'yuck': 1.0, 'child': 1.0, 'exposed': 1.0, 'should': 1.0, 'feels': 1.0, 'harmful': 1.0, 'offgassing': 1.0, 'product': 1.0, 'be': 1.0, 'to': 1.0, 'item': 1.0, 'i': 1.0, 'extremely': 1.0, 'am': 1.0, 'glue': 1.0, 'is': 2.0, 'looks': 1.0, 'disappointed': 1.0, 'something': 1.0, 'returning': 1.0, 'this': 4.0, 'it': 1.0}
Word element => {'so': 1.0, 'feet': 1.0, 'm': 1.0, 'kids': 1.0, 'where': 1.0, 'of': 1.0, 'over': 1.0, 'flaps': 1.0, 'most': 1.0, 'product': 1.0, 'cheapest': 1.0, 'the': 4.0, 'had': 1.0, 'was': 1.0, 'dangle': 1.0, 'through': 1.0, 'amazon': 1.0, 'i': 4.0, 'ordered': 1.0, 'found': 1.0, 'drive': 1.0, 'and': 3.0, 'importantly': 1.0, 'very': 2.0, 'am': 1.0, 'pleased': 2.0, 'this': 2.0, 'it': 3.0, 'with': 2.0, 'front': 1.0, 'a': 1.0, 'covers': 1.0, 'minivan': 1.0, 'back': 1.0, 'because': 1.0, 'seat': 2.0}
Word element => {'protecting': 1.0, 'of': 4.0, 'graco': 1.0, 'car': 2.0, 'rotate': 1.0, 'in': 2.0, 'prius': 1.0, 'two': 1.0, 'i': 1.0, 'and': 1.0, 'leather': 2.0, 'seats': 2.0, 'base': 1.0, 'bought': 1.0, 'prince': 1.0, 'portion': 1.0, 'this': 1.0, 'it': 1.0, 'therefore': 1.0, '2011': 1.0, 'does': 1.0, 'than': 2.0, 'marathon': 1.0, 'prevent': 1.0, 'both': 1.0, 'protect': 1.0, 'we': 1.0, 't': 1.0, 'a': 4.0, 'nautilus': 1.0, 'digging': 1.0, 'which': 1.0, 'lionheart': 1.0, 'britax': 1.0, 'are': 1.0, 'an': 1.0, 'doesn': 1.0, 'seatsaver': 1.0, 'inch': 1.0, 'decent': 1.0, 'wider': 1.0, 'footprint': 1.0, 'to': 1.0, 'seat': 2.0, 'from': 1.0, 'lumbar': 1.0, 'top': 1.0, 'the': 7.0, 'job': 1.0}
Word element => {'now': 1.0, 'super': 1.0, 's': 1.0, 'around': 1.0, 'slide': 1.0, 'doesn': 1.0, 'under': 1.0, 'blanket': 1.0, 'car': 1.0, 'before': 1.0, 'seat': 2.0, 'has': 1.0, 'big': 1.0, 'a': 2.0, 'our': 1.0, 'were': 1.0, 'this': 1.0, 'only': 1.0, 'it': 3.0, 'we': 2.0, 'made': 1.0, 't': 1.0, 'the': 1.0, 'and': 1.0, 'get': 1.0, 'difference': 1.0, 'on': 1.0, 'how': 1.0, 'using': 1.0, 'tight': 2.0, 'in': 1.0}
Word element => {'product': 1.0, 'attention': 1.0, 'now': 1.0, 'back': 1.0, 'but': 1.0, 'uses': 1.0, 'wife': 1.0, 'caused': 1.0, 'came': 1.0, 'seats': 1.0, 'california': 1.0, 'use': 2.0, 'they': 1.0, 'material': 1.0, 'bought': 2.0, 'trying': 1.0, 'be': 1.0, 'i': 3.0, 'my': 2.0, 'high': 1.0, 'is': 2.0, 'off': 1.0, 'on': 2.0, 'think': 1.0, 'side': 1.0, 'tl': 2.0, 'it': 1.0, 'leather': 4.0, 'with': 1.0, 'serious': 1.0, 'facing': 1.0, 'protect': 1.0, 'seat': 2.0, 'to': 5.0, 'the': 8.0, 'damaged': 1.0, 'temperatures': 1.0, 'ones': 1.0, 'acura': 2.0, 'would': 1.0, 'this': 2.0, 'soft': 1.0, 'in': 3.0, 'clean': 1.0, 'could': 1.0, 'like': 1.0, 'need': 1.0, 'due': 2.0, 'problem': 1.0, 'less': 1.0, 'of': 4.0, 'an': 1.0, 'issue': 1.0, 'bmw': 1.0, 'thicker': 1.0}
Word element => {'daughters': 1.0, 'booster': 1.0, 'now': 1.0, 'of': 1.0, 'these': 1.0, 'get': 1.0, 'it': 1.0, 'know': 1.0, 'didn': 1.0, 'first': 1.0, 'this': 1.0, 'was': 2.0, 'had': 1.0, 'seat': 4.0, 'to': 1.0, 'son': 2.0, 'savers': 1.0, 'in': 2.0, 'lines': 1.0, 'the': 2.0, 'must': 1.0, 'have': 2.0, 'ever': 1.0, 'buy': 1.0, 'i': 9.0, 'am': 1.0, 'when': 3.0, 'seatsaver': 1.0, 'actually': 1.0, 'where': 1.0, 'for': 2.0, 'parents': 1.0, 'anything': 1.0, 'about': 1.0, 'car': 5.0, 'and': 3.0, 'born': 1.0, 'seats': 5.0, 'save': 1.0, 'purchase': 1.0, 'my': 7.0, 'with': 2.0, 'leather': 1.0, 'his': 1.0, 'directly': 1.0, 'think': 1.0, 'on': 1.0, 's': 1.0, 'might': 1.0, 't': 1.0, 'a': 1.0, 'if': 1.0, 'everything': 1.0, 'out': 2.0, 'clean': 1.0, 'few': 1.0, 'noticed': 1.0, 'deep': 1.0, 'pulled': 1.0, 'stretched': 1.0, 'happy': 1.0, 'immediately': 1.0, 'one': 1.0, 'months': 1.0, 'bought': 1.0}
Word element => {'amazon': 1.0, 'thanks': 1.0, 'though': 1.0, 'easy': 1.0, 'back': 1.0, 'sending': 1.0, 'suburban': 1.0, 'a': 1.0, 'turns': 1.0, 'we': 2.0, 'when': 1.0, 'out': 1.0, 'item': 1.0, 'it': 3.0, 'this': 1.0, 'have': 1.0, 'enough': 2.0, 'wife': 1.0, 'my': 1.0, 'did': 1.0, 'not': 1.0, 'our': 1.0, 'cover': 1.0, 'seats': 1.0, 'any': 1.0, 'was': 1.0, 'to': 1.0, 'bought': 1.0, 'be': 1.0, 'of': 1.0, 'got': 1.0, 'use': 1.0}
Word element => {'well': 1.0, 'price': 1.0, 'to': 1.0, 'them': 1.0, 'protect': 1.0, 'we': 2.0, 'bought': 1.0, 'our': 1.0, 'happy': 1.0, 'car': 1.0, 'seats': 1.0, 'are': 2.0, 'the': 2.0, 'primarily': 1.0, 'pouches': 1.0, 'with': 1.0, 'muddy': 1.0, 'as': 1.0, 'very': 1.0, 'from': 1.0, 'an': 1.0, 'advantage': 1.0, 'shoes': 1.0, 'purchase': 1.0, 'added': 1.0, 'excellent': 1.0}
Word element => {'shoes': 1.0, 'dirty': 1.0, 'but': 1.0, 'food': 1.0, 'to': 1.0, 'kids': 2.0, 'you': 1.0, 'your': 1.0, 'if': 1.0, 'allow': 1.0, 'from': 1.0, 'must': 1.0, 'their': 1.0, 'a': 1.0, 'is': 1.0, 'snack': 1.0, 'also': 1.0, 'in': 1.0, 'car': 1.0, 'seats': 1.0, 'this': 1.0, 'only': 1.0, 'protected': 1.0, 'expecially': 1.0, 'kit': 1.0, 'keeps': 1.0, 'not': 1.0, 'seat': 1.0, 'the': 1.0}
Word element => {'will': 1.0, 'in': 1.0, 'wipes': 1.0, 'extra': 1.0, 'keep': 1.0, 'now': 1.0, 'baby': 1.0, 'them': 1.0, 'little': 1.0, 'newest': 1.0, 'next': 1.0, 'that': 1.0, 'bought': 1.0, 'needed': 1.0, 'get': 1.0, 'easy': 1.0, 'yr': 1.0, 'under': 1.0, '5': 2.0, 'when': 1.0, 'i': 5.0, 'old': 4.0, 'pockets': 2.0, 'this': 1.0, 'it': 2.0, 'he': 1.0, 'second': 1.0, 'is': 1.0, 'sunglasses': 1.0, 'booster': 1.0, 'another': 1.0, 'purchase': 1.0, 'vehicle': 1.0, 'my': 3.0, 'purchased': 1.0, 'his': 1.0, 'year': 3.0, 'sturdy': 1.0, 'great': 1.0, '1': 2.0, 'and': 3.0, 'the': 4.0, 'our': 2.0, 'to': 3.0, 'seat': 2.0, 'protector': 1.0, 'for': 5.0, 'love': 2.0, 'product': 1.0, 'where': 1.0, 'fit': 1.0, 'has': 1.0, 'we': 1.0, 'go': 1.0, 'a': 1.0, 's': 1.0, 'knows': 1.0, 'toys': 1.0, 'pacies': 1.0, 'exactly': 1.0, 'find': 1.0}
Word element => {'this': 1.0, 'with': 1.0, 'disappointed': 1.0, 'little': 1.0, 'its': 1.0, 'hang': 1.0, 'small': 1.0, 'however': 1.0, 'the': 4.0, 'great': 1.0, 'side': 1.0, 'is': 1.0, 'material': 1.0, 'seat': 1.0, 'not': 1.0, 'bit': 1.0, 'i': 1.0, 'have': 1.0, '2012': 1.0, 'and': 1.0, 'jetta': 1.0, 'a': 2.0, 'front': 1.0, 'on': 1.0, 'over': 1.0, 'does': 1.0, 'flap': 1.0, 'even': 1.0}
Word element => {'occur': 1.0, 'that': 1.0, 'and': 1.0, 'baby': 1.0, 'spills': 1.0, 'well': 1.0, 'device': 1.0, 'preserve': 1.0, 'inevitably': 1.0, 'thought': 1.0, 'help': 1.0, 'impromptu': 1.0, 'abrasion': 1.0, 'to': 1.0, 'the': 2.0, 'seat': 2.0, 'out': 1.0, 'surface': 1.0, 'from': 1.0}
Word element => {'him': 1.0, 'sees': 1.0, 'whenever': 1.0, 'gets': 1.0, 'and': 1.0, 'i': 1.0, 'the': 1.0, 'gift': 1.0, 'a': 1.0, 'snipped': 1.0, 'my': 2.0, 'monkey': 2.0, 'mr': 1.0, 'for': 1.0, 'received': 1.0, 'we': 1.0, 'girly': 1.0, 'anyway': 1.0, 'loves': 1.0, 'off': 1.0, 'because': 1.0, 'they': 1.0, 'he': 1.0, 'excited': 1.0, 'this': 1.0, 'flowers': 1.0, 'looked': 1.0, 'as': 1.0, 'son': 2.0, 'kind': 1.0, 'of': 1.0}
Word element => {'overall': 1.0, 'of': 1.0, 'instead': 1.0, 'banana': 1.0, 'happy': 1.0, 'monkey': 1.0, 'very': 1.0, 'son': 1.0, 'from': 1.0, 'every': 1.0, 'got': 1.0, 'been': 1.0, 'time': 1.0, 'he': 4.0, 'laugh': 1.0, 'loud': 1.0, 'i': 2.0, 'has': 1.0, 'toy': 2.0, 'colors': 1.0, 'our': 1.0, 'sees': 1.0, 'bought': 1.0, 'months': 1.0, 'product': 1.0, 'love': 1.0, 'for': 1.0, 'holding': 1.0, 'stop': 1.0, 'moment': 1.0, 'him': 1.0, '3': 1.0, 'a': 2.0, 'we': 2.0, 't': 1.0, 'and': 3.0, 'makes': 1.0, 'old': 1.0, 'laughing': 1.0, 'the': 5.0, 'hanging': 1.0, 'pineapple': 2.0, 'out': 1.0, 'when': 1.0, 'us': 1.0, 'couldn': 1.0, 'see': 1.0, 'fish': 1.0, 'making': 1.0, 'stand': 1.0, 'sit': 1.0, 'this': 3.0, 'wish': 1.0, 'vibrant': 1.0, 'had': 1.0}
Word element => {'time': 1.0, 'some': 1.0, 'quite': 1.0, 'probably': 1.0, 'will': 1.0, 'newer': 1.0, 'look': 1.0, 'misses': 1.0, 'ones': 1.0, 'the': 1.0, 'bulldozes': 1.0, 'but': 1.0, 'now': 1.0, 'to': 1.0, 'was': 1.0, 'everyone': 1.0, 'had': 1.0, 'throw': 1.0, '5': 1.0, 'baby': 1.0, 'them': 4.0, 'and': 3.0, 'crinkle': 1.0, '15': 1.0, 'toy': 1.0, 'well': 1.0, 'old': 2.0, 'i': 3.0, 'my': 3.0, 'last': 1.0, 'she': 6.0, 'easy': 1.0, 'loved': 1.0, 'this': 2.0, 'christmas': 1.0, 'love': 1.0, 'for': 3.0, 'daughter': 2.0, 'when': 1.0, 'months': 2.0, 'bought': 1.0, 'still': 2.0, 'loves': 2.0, 'knock': 1.0, 'a': 1.0, 's': 1.0, 't': 3.0, 'know': 1.0, 'just': 1.0, 'why': 1.0, 'else': 1.0, 'is': 1.0, 'saying': 1.0, 've': 1.0, 'they': 3.0, 'anyway': 1.0, 'don': 3.0, 'up': 1.0, 'never': 1.0, 'problem': 1.0, 'stand': 1.0, 'down': 1.0, 'enough': 1.0}
Word element => {'anyone': 1.0, 'onto': 1.0, 'projected': 1.0, 'are': 1.0, 'that': 1.0, 'seeing': 1.0, 'because': 1.0, 'had': 1.0, 'met': 1.0, 'of': 5.0, 'trouble': 1.0, 'reviews': 1.0, 'i': 4.0, 'nervous': 1.0, 'recommend': 1.0, 'was': 1.0, 'expectation': 1.0, 'even': 1.0, 'it': 1.0, 'this': 2.0, 'ordering': 1.0, 'every': 1.0, 'about': 1.0, 'no': 1.0, 'these': 1.0, 'some': 1.0, 'on': 1.0, 'ceiling': 2.0, 'living': 1.0, 'room': 1.0, 'lights': 1.0, 'product': 2.0, 'where': 1.0, 'we': 1.0, 'have': 1.0, 'to': 1.0, 'all': 1.0, 'vaulted': 1.0, 'ceilings': 1.0, 'volume': 1.0, 'the': 6.0, 'playing': 1.0, 'like': 1.0, 'would': 1.0, 'settings': 1.0, 'type': 1.0, 'in': 1.0, 'length': 1.0, 'versatility': 1.0, 'time': 1.0, 'but': 1.0, 'music': 1.0, 'played': 1.0, 'and': 1.0, 'objects': 1.0}
Word element => {'enjoyed': 1.0, 'review': 1.0, 'deserving': 1.0, 'however': 1.0, 'go': 1.0, 'am': 1.0, 'reviews': 1.0, 'typically': 1.0, 'really': 1.0, 'excellent': 1.0, 'all': 1.0, 'crib': 1.0, 'over': 1.0, 'ceiling': 1.0, 'toward': 1.0, 'table': 1.0, 'shelf': 1.0, 'makes': 1.0, 'book': 1.0, 'sit': 1.0, 'ability': 1.0, 'selection': 1.0, 'angle': 1.0, 'like': 1.0, 'little': 1.0, 'nice': 1.0, 'sounds': 1.0, 'on': 3.0, 'purchase': 1.0, 'usually': 1.0, 'kids': 1.0, 'soothing': 1.0, 'great': 3.0, 'more': 1.0, 'there': 1.0, 'or': 2.0, 'checkered': 1.0, 'heart': 1.0, 'face': 1.0, 'large': 1.0, 'can': 1.0, 'so': 2.0, 'that': 2.0, 'loves': 1.0, 'always': 1.0, 'next': 1.0, 'three': 2.0, 'kept': 1.0, 'during': 1.0, 'after': 1.0, 'extremely': 1.0, 'how': 1.0, 'year': 2.0, 'control': 1.0, 'day': 1.0, 'trying': 1.0, 'tunes': 1.0, 'this': 6.0, 'even': 2.0, 'repeatedly': 1.0, 'purchased': 1.0, 'smile': 1.0, 'born': 1.0, 'years': 1.0, 'my': 6.0, 'changing': 1.0, 'pictures': 1.0, 'hum': 1.0, 'as': 3.0, 'falls': 1.0, 'bought': 1.0, 'pattern': 1.0, 'one': 2.0, 'at': 3.0, 'is': 9.0, 'music': 3.0, 'around': 1.0, 'gift': 1.0, 'which': 1.0, 'asleep': 1.0, '2': 1.0, 'stage': 1.0, 'four': 1.0, 'write': 1.0, 'enjoys': 1.0, 'but': 3.0, 'time': 2.0, 'new': 2.0, 'projector': 2.0, 'the': 17.0, 'of': 2.0, 'she': 2.0, 'it': 13.0, 'for': 3.0, 'first': 2.0, 'volume': 1.0, 'with': 4.0, 'to': 9.0, 'now': 2.0, 'well': 2.0, 'i': 11.0, 'old': 3.0, 'turn': 1.0, 'if': 2.0, 'every': 1.0, 'asked': 1.0, 'still': 2.0, 'since': 1.0, '1': 2.0, 'and': 8.0, 'walk': 1.0, 'play': 1.0, 'from': 2.0, 'slide': 2.0, 'her': 4.0, 'sister': 2.0, 'maybe': 1.0, 's': 1.0, 'a': 6.0, 'going': 1.0, 'these': 1.0, 'comes': 1.0, 'once': 1.0, 'room': 2.0, 'before': 1.0, 'have': 3.0, 'remember': 2.0, 'in': 1.0, 't': 3.0, 'likes': 1.0, 'decided': 1.0, 'move': 1.0, 'toy': 4.0, 'using': 1.0, 'light': 1.0, 'selections': 1.0, 'who': 1.0, 'batteries': 1.0, 'steal': 1.0, 'pick': 1.0, 'song': 1.0, 'night': 3.0, 'choice': 1.0, 'very': 1.0, 'being': 1.0, 'bed': 1.0, 'durable': 1.0, 'don': 2.0, 'nephew': 1.0, 'love': 2.0, 'far': 1.0, 'shows': 1.0, 'change': 1.0, 'favorite': 1.0, 'show': 1.0, 'nature': 1.0, 'projects': 1.0}
Word element => {'price': 1.0, 'complain': 1.0, 'can': 1.0, 'in': 1.0, 'fade': 1.0, 'shapes': 1.0, 'three': 1.0, 'motion': 1.0, 'any': 1.0, 'there': 1.0, 'black': 1.0, 'pitch': 1.0, 'almost': 1.0, 'show': 1.0, 'this': 1.0, 'it': 2.0, 'much': 1.0, 'only': 1.0, 'thought': 1.0, 'that': 2.0, 'too': 1.0, 'and': 2.0, 'cradle': 1.0, 'right': 1.0, 'isn': 2.0, 'baby': 1.0, 'mobile': 1.0, 'room': 1.0, '15': 1.0, 'certainly': 1.0, 'outi': 1.0, 'bright': 1.0, 'etc': 1.0, 'i': 1.0, 'looking': 1.0, 'complaints': 1.0, 'was': 2.0, 'minutes': 1.0, 'designs': 1.0, 'take': 1.0, 'my': 2.0, 'something': 1.0, 'biggest': 1.0, 'place': 1.0, 'the': 5.0, 'crib': 1.0, 'might': 1.0, 'a': 1.0, 's': 1.0, 't': 4.0, 'could': 1.0, 'of': 1.0, 'for': 2.0, 'fit': 1.0, 'though': 1.0, 'bill': 1.0, 'won': 1.0, 'on': 1.0, 'stay': 1.0, 'longer': 1.0, 'is': 1.0, 'than': 1.0, 'just': 1.0, 'by': 1.0, 'design': 1.0, 'very': 1.0, 'if': 1.0}
Word element => {'still': 1.0, 'eight': 1.0, 'now': 1.0, 'available': 1.0, 'shows': 2.0, 'have': 1.0, 'sit': 1.0, 'interest': 1.0, 'boy': 1.0, 'floor': 1.0, 'is': 1.0, 'more': 1.0, 'purchase': 1.0, 'my': 1.0, 'classical': 1.0, 'also': 1.0, 'he': 5.0, 'mainlly': 1.0, 'it': 3.0, 'with': 1.0, 'only': 1.0, 'enjoys': 1.0, 'i': 2.0, 'when': 1.0, 'was': 1.0, 'all': 1.0, 'to': 1.0, 'for': 2.0, 'lights': 1.0, 'light': 1.0, 'five': 1.0, 'play': 1.0, 'and': 3.0, 'of': 1.0, 'bought': 1.0, 'months': 2.0, 'routine': 1.0, 'on': 2.0, 'made': 1.0, 'bedtime': 1.0, 'there': 1.0, 'breaking': 1.0, 'we': 1.0, 'a': 1.0, 'slides': 1.0, 'turn': 1.0, 'music': 2.0, 'can': 1.0, 'the': 5.0, 'without': 1.0, 'this': 1.0, 'wish': 1.0, 'loves': 1.0, 'that': 1.0, 'were': 1.0}
Word element => {'of': 1.0, 'see': 1.0, 'cannot': 1.0, 'product': 1.0, 'taking': 1.0, 'dissapointing': 1.0, 'very': 1.0, 'shapes': 1.0, 'it': 3.0, 'this': 1.0, 'the': 3.0, 't': 1.0, 'light': 1.0, 'store': 1.0, 'show': 1.0, 'just': 1.0, 'back': 1.0, 'doesn': 1.0, 'serve': 1.0, 'you': 1.0, 's': 1.0, 'to': 1.0, 'was': 1.0, 'purpose': 1.0, 'i': 1.0, 'am': 1.0}
Word element => {'back': 1.0, 'good': 1.0, 'before': 1.0, 'of': 1.0, 'mine': 1.0, 'lots': 1.0, 'baby': 1.0, 'dismayed': 1.0, 'is': 3.0, 'let': 1.0, 'plug': 1.0, 'there': 1.0, 'that': 1.0, 'was': 1.0, 'bat': 1.0, 'the': 2.0, 'images': 1.0, 'off': 1.0, 'right': 1.0, 'work': 1.0, 'can': 1.0, 'opened': 1.0, 'needs': 1.0, 'so': 1.0, 'great': 1.0, 'excited': 1.0, 'this': 1.0, 'received': 1.0, 'no': 1.0, 'about': 1.0, 'alone': 1.0, 'i': 3.0, 'tried': 1.0, 'going': 1.0, 'a': 2.0, 'gift': 1.0, 'to': 1.0, 'as': 2.0, 'from': 1.0, 'me': 1.0, 'in': 1.0, 'option': 1.0, 'then': 1.0, 'are': 1.0, 'idea': 1.0, 'unless': 1.0, 'you': 1.0, 'hang': 1.0, 'see': 1.0, 'fuzzy': 1.0, 'your': 1.0, 'ceiling': 1.0, 'and': 3.0, 'too': 1.0, 'it': 5.0, 'dim': 1.0, 'product': 1.0, 'actually': 2.0, 'for': 1.0, 'my': 1.0}
Word element => {'complaints': 1.0, 'strong': 1.0, 'construction': 1.0, 'and': 1.0, 'easy': 1.0, 'fairly': 1.0, 'is': 1.0, 'assembally': 1.0, 'two': 1.0, 'the': 3.0, 'are': 1.0, 'price': 1.0, 'what': 1.0, 'no': 1.0, 'has': 1.0, 'of': 1.0, 'stores': 1.0, 'for': 2.0, 'most': 1.0, 'one': 1.0, 'charging': 1.0, 'this': 1.0, 'rail': 1.0}
Word element => {'work': 1.0, 'would': 1.0, 'seem': 1.0, 'makes': 1.0, 'easy': 1.0, 'as': 3.0, 'travel': 1.0, 'packing': 1.0, 'mattress': 1.0, 'under': 1.0, 'slide': 1.0, 'impossible': 1.0, 'unlatch': 1.0, 'difficult': 1.0, 's': 1.0, 'down': 1.0, 'folding': 1.0, 'wrote': 1.0, 'everyone': 1.0, 'from': 1.0, 'looking': 1.0, 'm': 1.0, 'broken': 1.0, 'an': 1.0, 'other': 1.0, 'where': 1.0, 'have': 1.0, 'now': 1.0, 'kids': 1.0, 'after': 1.0, 'lot': 1.0, 'one': 5.0, 'but': 1.0, 'someone': 1.0, 'pushed': 1.0, 'by': 1.0, 'just': 2.0, 'didn': 1.0, 'making': 1.0, 'outgrowing': 1.0, 'so': 3.0, 'time': 4.0, 'wasn': 1.0, 'rails': 4.0, 'out': 1.0, 'about': 3.0, 'whole': 1.0, 'thing': 1.0, 'up': 1.0, 'less': 1.0, 'mesh': 3.0, 'ripped': 2.0, 'single': 1.0, 'old': 1.0, 'removing': 1.0, 'has': 2.0, 'next': 1.0, 'a': 7.0, 't': 3.0, 'hour': 1.0, 'go': 1.0, 'i': 6.0, 'do': 2.0, 'unusable': 1.0, 'away': 1.0, 'true': 1.0, 'right': 1.0, 'rips': 1.0, 'his': 1.0, 'was': 3.0, 'two': 2.0, 'replicate': 1.0, 'aside': 1.0, 'had': 3.0, 'snapped': 1.0, 'months': 1.0, 'effort': 1.0, 'bought': 2.0, 'nearly': 1.0, 'decided': 1.0, 'planning': 1.0, 'near': 1.0, 'on': 4.0, 'material': 3.0, 'double': 2.0, 'metal': 2.0, 'they': 2.0, 'holes': 1.0, 'bad': 1.0, 'first': 1.0, 'rail': 3.0, 'few': 2.0, 'this': 3.0, 'it': 15.0, 'than': 1.0, 'assembly': 1.0, 'year': 2.0, 'product': 1.0, 'child': 2.0, 'anyway': 1.0, 'threw': 1.0, 'solid': 1.0, 'is': 2.0, 'at': 1.0, 'into': 1.0, 'non': 1.0, 'three': 2.0, 'bed': 2.0, 'not': 2.0, 'give': 1.0, 'that': 4.0, 'because': 2.0, 'find': 1.0, 'occasions': 1.0, 'very': 1.0, 'later': 1.0, 'started': 1.0, 'quality': 1.0, 'purchased': 1.0, 'ripping': 1.0, 'take': 1.0, 'we': 3.0, 'then': 1.0, 'my': 3.0, 'company': 1.0, 'another': 3.0, 'what': 1.0, 'poked': 1.0, 'when': 1.0, 'came': 1.0, 'to': 6.0, 'even': 1.0, 'sounded': 1.0, 'during': 1.0, 'within': 1.0, 'better': 1.0, 'anything': 1.0, 'days': 1.0, 'weren': 1.0, 'with': 2.0, 'of': 3.0, 'the': 15.0, 'finger': 1.0, 'and': 6.0, 'getting': 1.0, 'seamstress': 1.0, 'which': 1.0, 'good': 1.0, 'for': 3.0, 'fabric': 2.0, 'need': 1.0, 'or': 1.0}
Word element => {'super': 1.0, 'hazard': 1.0, 'potential': 1.0, 'be': 1.0, 'that': 1.0, 'space': 1.0, 'about': 1.0, 'worry': 1.0, 'or': 1.0, 'readjusting': 1.0, 'of': 1.0, 'recommend': 1.0, 'anymore': 1.0, 'hassle': 1.0, 'with': 1.0, 'have': 1.0, 'after': 1.0, 'and': 1.0, 'away': 1.0, 'very': 1.0, 'all': 1.0, 'to': 2.0, 'as': 1.0, 'from': 1.0, 'functions': 1.0, 'for': 1.0, 'love': 1.0, 'one': 1.0, 'my': 1.0, 'tight': 1.0, 'looking': 1.0, 'great': 1.0, '2': 1.0, 'it': 2.0, 'durable': 1.0, 'were': 1.0, 'kept': 1.0, 'sleeptite': 1.0, 'out': 1.0, 'deal': 1.0, 'the': 4.0, 'assembled': 1.0, 'don': 1.0, 'bed': 3.0, 'sided': 1.0, 'down': 1.0, 'this': 3.0, 'mattress': 2.0, 'forming': 1.0, 'sturdy': 1.0, 'rail': 3.0, 'other': 1.0, 'is': 4.0, 'side': 1.0, 'far': 1.0, 'just': 1.0, 'how': 1.0, 'could': 1.0, 't': 1.0, 'we': 4.0, 'a': 2.0, 'plus': 1.0, 'friends': 1.0, 'so': 2.0, 'against': 1.0, 'bedrail': 1.0, 'what': 1.0, 'had': 1.0, 'secure': 1.0, 'seems': 1.0, 'swings': 1.0, 'slipping': 1.0}
Word element => {'sheets': 1.0, 'rough': 1.0, 'price': 1.0, 'guess': 1.0, 'but': 1.0, 'are': 2.0, 'the': 1.0, 'these': 1.0, 'they': 1.0, 'okay': 1.0, 'for': 1.0, 'i': 1.0, 'incredibly': 1.0}
Word element => {'ones': 1.0, 'see': 1.0, 'nice': 1.0, 'just': 1.0, 'makes': 1.0, 'happy': 2.0, 'very': 1.0, 'you': 1.0, 'am': 1.0, 'overall': 1.0, 'with': 2.0, 'stop': 1.0, 'her': 1.0, 'get': 1.0, 'hard': 1.0, 'its': 2.0, 'being': 1.0, 'everything': 1.0, 'able': 1.0, 'laugh': 1.0, 'was': 1.0, 'smile': 1.0, 'to': 5.0, 'now': 1.0, 'shipping': 1.0, 'during': 1.0, 'damaged': 1.0, 'playing': 1.0, 'the': 2.0, 'this': 3.0, 'first': 1.0, 'but': 2.0, 'birthday': 1.0, 'use': 1.0, 'amazon': 1.0, 'on': 1.0, 'love': 1.0, 'for': 1.0, 'luckily': 1.0, 'niece': 3.0, 'buttons': 1.0, 'bought': 2.0, 'purchase': 1.0, 'my': 3.0, 'toy': 1.0, 'i': 4.0, 'touch': 1.0, 'here': 1.0, '1st': 1.0, 'at': 2.0, 'toysrus': 1.0, 'and': 4.0, 'there': 1.0, 'had': 1.0, 'thought': 1.0, 'that': 1.0, 'got': 1.0, 'even': 1.0, 'didn': 1.0, 'like': 1.0, 'find': 1.0, 'because': 2.0, 'it': 6.0, 'she': 2.0, 'would': 1.0, 't': 1.0, 's': 1.0, 'hardly': 1.0, 'knows': 1.0, 'how': 1.0}
Word element => {'anyone': 1.0, 'recommend': 1.0, 'would': 1.0, 'issue': 1.0, 'am': 1.0, 'from': 2.0, 'to': 2.0, 'it': 5.0, 'moving': 1.0, 'with': 2.0, 'back': 1.0, 'work': 1.0, 'an': 1.0, 'is': 1.0, 'backward': 1.0, 'on': 1.0, 'i': 5.0, 'prevent': 2.0, 'the': 2.0, 'my': 2.0, 'and': 4.0, 'supposed': 1.0, 'product': 1.0, 'for': 3.0, 'tips': 1.0, 'bought': 2.0, 'one': 2.0, 'daughter': 1.0, 'stopper': 2.0, 'her': 1.0, 'does': 2.0, 'birthday': 1.0, '1st': 1.0, 'backwards': 1.0, 'that': 3.0, 'not': 2.0, 'also': 1.0, 'tipping': 1.0, 'this': 3.0, 'freely': 1.0, 'so': 1.0, 'dissatisfied': 1.0, 'tip': 1.0, 'seriously': 1.0, 't': 2.0, 'a': 1.0, 'son': 1.0, 'still': 1.0, 'cars': 1.0, 'didn': 2.0, 'have': 2.0}
Word element => {'that': 1.0, 'like': 1.0, 'when': 1.0, 'hate': 1.0, '44': 1.0, 'price': 1.0, 'toy': 1.0, 'but': 1.0, 'will': 1.0, 'same': 1.0, 'never': 1.0, '00': 1.0, 'a': 1.0, 'gouge': 1.0, 'it': 2.0, 'this': 1.0, 'toysrus': 1.0, 'item': 1.0, 'pay': 1.0, 'think': 1.0, 'i': 4.0, 'found': 1.0, '105': 1.0, 'parents': 1.0, 'for': 2.0, 'great': 1.0, 'the': 1.0, 'at': 1.0, 'people': 1.0, 'really': 1.0, 'is': 1.0, 'regular': 1.0}
Word element => {'somewhere': 1.0, 'buy': 1.0, 'money': 1.0, 'save': 1.0, 'else': 1.0, '50': 1.0, 'over': 1.0, 'shipping': 1.0, 'free': 1.0, '35': 1.0, 'sells': 1.0, 'products': 1.0, 'of': 1.0, 'see': 1.0, 'picture': 1.0, 'the': 8.0, 'disney': 4.0, 'model': 1.0, 'exact': 1.0, 'parents': 1.0, 'pictures': 1.0, 'this': 2.0, 'it': 1.0, 'shopping': 2.0, 'you': 1.0, 'when': 1.0, 'am': 1.0, 'and': 4.0, 'spend': 1.0, '1': 2.0, 'target': 2.0, 'other': 1.0, 'a': 2.0, 'at': 1.0, 'since': 1.0, 'decided': 1.0, 'with': 1.0, 'pink': 2.0, 'match': 1.0, 'princess': 4.0, 'not': 2.0, 'just': 1.0, 'mom': 1.0, 'described': 1.0, 'which': 1.0, 'comparison': 1.0, 'called': 1.0, 'ride': 5.0, 'after': 1.0, '00': 3.0, 'is': 2.0, 'your': 1.0, 'on': 6.0, 'two': 1.0, 'i': 2.0, '4': 2.0, 'toy': 3.0, 'in': 2.0, '70': 1.0, 'claims': 1.0, 'wanted': 1.0, 'as': 2.0, 'to': 1.0, 'com': 1.0, 'for': 3.0, 'actually': 1.0, 'share': 1.0, 'that': 1.0, 'item': 1.0, 'misleadingly': 1.0, 'dancing': 2.0, 'title': 1.0, 'does': 1.0}
Word element => {'triplets': 1.0, 'week': 1.0, 'first': 1.0, 'fragil': 1.0, 'very': 1.0, 'my': 1.0, 'are': 1.0, 'the': 4.0, 'yes': 1.0, 'it': 1.0, 'ride': 1.0, 'is': 1.0, 'on': 1.0, 'beautiful': 1.0, 'but': 1.0, 'princess': 1.0, 'broke': 1.0, 'little': 1.0, 'in': 1.0, 'front': 1.0}
Word element => {'worried': 1.0, 'not': 1.0, 'enough': 1.0, 'quiet': 1.0, 'sound': 1.0, 'button': 1.0, 'an': 1.0, 'found': 1.0, 'rosie': 1.0, 'cordless': 1.0, 'up': 1.0, 't': 3.0, 'we': 3.0, 'a': 5.0, 's': 1.0, 'maybe': 1.0, 'dell': 1.0, 'screen': 2.0, 'three': 1.0, '13': 1.0, 'is': 1.0, 'ring': 1.0, 'at': 1.0, 'in': 5.0, 'm': 2.0, 'around': 2.0, 'more': 1.0, 'learning': 2.0, 'car': 1.0, 'tasket': 1.0, 'annoying': 1.0, 'different': 1.0, 'rings': 1.0, 'also': 1.0, 'will': 1.0, 'tisket': 1.0, 'or': 2.0, 'distract': 1.0, 'phone': 3.0, 'and': 5.0, 'month': 1.0, 'green': 1.0, 'about': 1.0, 'play': 1.0, 'too': 2.0, 'ones': 1.0, 'songs': 1.0, 'had': 1.0, 'variety': 1.0, 'just': 2.0, 'light': 1.0, 'on': 4.0, 'long': 1.0, 'has': 1.0, 'toy': 1.0, 'isn': 1.0, 'makes': 1.0, 'old': 1.0, 'haven': 2.0, 'home': 1.0, 'names': 1.0, 'mode': 4.0, 'but': 2.0, 'okay': 1.0, 'with': 3.0, 'red': 2.0, 'this': 1.0, 'couple': 1.0, 'the': 16.0, 'of': 5.0, 'twinkle': 2.0, 'store': 1.0, 'little': 1.0, 'star': 1.0, 'digital': 1.0, 'plays': 1.0, 'loud': 1.0, 'conversation': 1.0, 'i': 2.0, 'sounds': 2.0, 'speaking': 1.0, 'numbers': 2.0, 'snippets': 1.0, 'that': 2.0, 'are': 1.0, 'pressed': 1.0, 'instead': 1.0, 'took': 1.0, 'lights': 1.0, 'flash': 1.0, 'frame': 1.0, 'our': 2.0, 'hoping': 1.0, 'to': 1.0, 'sat': 1.0, 'down': 1.0, 'tones': 1.0, 'floor': 1.0, 'off': 1.0, 'until': 1.0, 'away': 1.0, 'farmer': 1.0, 'fun': 2.0, 'voice': 1.0, 'from': 2.0, 'it': 8.0, 'him': 2.0, 'he': 1.0, 'played': 1.0}
Word element => {'being': 1.0, 'on': 1.0, 'views': 1.0, 'high': 1.0, 'my': 1.0, 'love': 1.0, 'lessen': 1.0, 'i': 1.0, 'highchair': 1.0, 'it': 3.0, 'this': 2.0, 'doesn': 1.0, 'but': 1.0, 'fact': 1.0, 'that': 1.0, 't': 1.0, 'great': 2.0, 'the': 2.0, 'are': 1.0, 'a': 3.0, 'nice': 1.0, 'plus': 1.0, 'is': 2.0, 'looks': 1.0, 'so': 1.0, 'as': 2.0, 'chair': 1.0, 'transitional': 1.0, 'far': 1.0, 'they': 1.0, 'buckles': 1.0, 'bit': 1.0, 'stiff': 1.0}
Word element => {'dangerous': 1.0, 'bleed': 1.0, 'can': 1.0, 'if': 1.0, 'reason': 1.0, 'these': 1.0, 'be': 1.0, 'should': 1.0, 'her': 1.0, 'had': 1.0, 'also': 1.0, 'bled': 1.0, 'times': 1.0, 'numerous': 1.0, 'have': 1.0, 'i': 2.0, 'way': 2.0, 'use': 1.0, 'walmart': 1.0, 'almost': 1.0, 'sturdy': 1.0, 'really': 1.0, 'is': 4.0, 'at': 1.0, 'daughter': 1.0, 'pinched': 2.0, 'stiff': 1.0, 'together': 1.0, 'breeze': 1.0, 'back': 1.0, 'recall': 1.0, 'first': 1.0, 'this': 3.0, 'it': 7.0, 'its': 1.0, 'only': 1.0, 'hard': 1.0, 'to': 3.0, 'was': 1.0, 'for': 2.0, 'actually': 1.0, 'where': 1.0, 'highchair': 1.0, 'high': 1.0, 'exact': 1.0, 'there': 1.0, 'chair': 1.0, 'has': 1.0, 'well': 1.0, 'we': 2.0, 'a': 4.0, 'finger': 2.0, 'great': 1.0, 'cleans': 1.0, 'buckles': 2.0, 'too': 2.0, 'and': 4.0, 'up': 1.0, 'so': 1.0, 'the': 2.0, 'cheapt': 1.0, 'my': 3.0, 'b': 1.0, 'that': 1.0, 'then': 1.0, 'took': 1.0, 'ordered': 1.0, 'bought': 1.0, 'one': 1.0, 'online': 1.0, 'fingers': 1.0, 'bad': 1.0, 'thing': 1.0, 'about': 1.0, 'make': 1.0, 'on': 1.0, 'think': 1.0, 'put': 1.0, 'uckle': 1.0, 'baby': 1.0, 'them': 1.0, 'in': 2.0, 'they': 2.0, 'are': 1.0, 'extremely': 1.0}
Word element => {'continue': 1.0, 'will': 1.0, 'needs': 1.0, 'of': 1.0, 'met': 1.0, 'this': 1.0, 'on': 1.0, 'highchairs': 1.0, 'research': 1.0, 'really': 1.0, 'would': 1.0, 'with': 1.0, 'happy': 1.0, 'tried': 1.0, 'things': 1.0, 'safe': 1.0, 'foot': 1.0, 'we': 1.0, 'a': 2.0, 'is': 5.0, 'it': 2.0, 'looks': 1.0, 'child': 1.0, 'using': 1.0, 'cannot': 1.0, 'right': 1.0, 'old': 1.0, 'i': 2.0, 'rest': 1.0, 'he': 1.0, 'little': 2.0, 'very': 2.0, 'yet': 1.0, 'considered': 1.0, 'unhook': 1.0, 'reach': 1.0, 'the': 9.0, 'adjustable': 1.0, 'chair': 4.0, 'now': 1.0, 'our': 2.0, 'all': 2.0, 'to': 4.0, 'recommend': 1.0, 'was': 1.0, 'market': 1.0, '5': 1.0, 'one': 1.0, 'tray': 1.0, 'months': 1.0, 'not': 1.0, 'just': 1.0, 'straps': 1.0, 'son': 2.0, 'still': 1.0, 'are': 2.0, 'and': 6.0, 'tough': 1.0, '2': 1.0, 'but': 1.0, 'they': 1.0, 'hopefully': 1.0, 'my': 2.0, 'may': 1.0, 'easy': 1.0, 'be': 1.0, 'enjoy': 1.0, 'stiff': 1.0, 'different': 1.0, 'good': 1.0, 'assemble': 1.0, 'sturdy': 1.0, '1': 1.0, 'big': 1.0, 'feel': 1.0}
Word element => {'satisfied': 1.0, 'very': 1.0, 'wash': 1.0, 'grows': 1.0, 'kid': 1.0, 'will': 1.0, 'that': 1.0, 'wanted': 1.0, 'cause': 1.0, 'with': 1.0, 'okay': 1.0, 'can': 1.0, 'removable': 1.0, 'but': 1.0, 'heavy': 1.0, 'and': 1.0, 'from': 1.0, 'looked': 1.0, 'this': 2.0, 'it': 3.0, 'long': 3.0, 'years': 1.0, 'best': 3.0, 'these': 1.0, 'was': 4.0, 'easy': 2.0, 'far': 2.0, 'chair': 7.0, 'throw': 1.0, 'high': 4.0, 'few': 1.0, 'by': 2.0, 'for': 3.0, 'one': 2.0, 'overall': 2.0, 'is': 5.0, 'so': 1.0, 'bit': 1.0, 'adjustments': 1.0, 'time': 2.0, 'adjust': 2.0, 'well': 1.0, 'has': 1.0, 'here': 1.0, 'areas': 1.0, 'we': 1.0, '26': 1.0, 'a': 6.0, 'searched': 1.0, 'approx': 1.0, 'of': 4.0, 'height': 2.0, 'what': 1.0, 'cushionthe': 1.0, 'back2': 1.0, '1': 1.0, 'sturdiness': 1.0, 'as': 2.0, 'to': 2.0, 'seat': 2.0, 'all': 1.0, 'last': 1.0, 'chair3': 1.0, 'cushion': 1.0, 'durability': 1.0, 'settings': 1.0, 'breeze': 1.0, 'itself': 1.0, 'in': 2.0, 'back': 1.0, 'am': 1.0, 'lbs': 1.0, 'easily': 1.0, 'the': 14.0, 'believe': 1.0, 'feature': 1.0, 'i': 6.0, '4': 1.0}
Word element => {'quality': 1.0, 'be': 1.0, 'really': 1.0, 'flimsy': 1.0, 'feel': 1.0, 'chair': 1.0, 'levers': 1.0, 'of': 1.0, 'not': 1.0, 'bit': 1.0, 'so': 1.0, 'food': 1.0, 'when': 2.0, 'confusing': 1.0, 'difficult': 4.0, 'gets': 1.0, 'i': 3.0, 'thought': 1.0, 'purchased': 1.0, 'because': 1.0, 'find': 1.0, 'the': 12.0, 't': 1.0, 'a': 3.0, 'would': 1.0, 'breeze': 1.0, 'combi': 1.0, 'highchair': 2.0, 'though': 1.0, 'adjust': 1.0, 'carribbean': 1.0, 'atttching': 1.0, 'assembly': 1.0, 'buckle': 1.0, 'in': 1.0, 'is': 3.0, 'tray': 1.0, 'little': 1.0, 'very': 1.0, 'better': 1.0, 'recently': 1.0, 'open': 1.0, 'toy': 2.0, 'it': 1.0, 'slots': 1.0, 'with': 1.0, 'clean': 1.0, 'wasn': 1.0, 'out': 1.0, 'that': 3.0, 'into': 1.0, 'hold': 1.0, 'to': 3.0, 'brakes': 1.0, 'are': 1.0, 'my': 1.0, 'legs': 1.0, 'foot': 1.0}
Word element => {'difference': 1.0, 'has': 1.0, 'since': 1.0, 'heavy': 1.0, 'of': 1.0, 'no': 1.0, 'thing': 1.0, 'negative': 1.0, 'i': 2.0, 'afterwards': 1.0, 'bottle': 1.0, 'drink': 1.0, 'back': 1.0, 'solids': 1.0, 'can': 1.0, 'but': 2.0, 'it': 5.0, 'with': 1.0, 'does': 1.0, 'his': 2.0, 'makes': 1.0, 'old': 1.0, 'months': 1.0, 'think': 1.0, 'on': 1.0, 'he': 1.0, '6': 1.0, 'up': 1.0, 'bottom': 1.0, 'we': 1.0, 'then': 1.0, 'reclining': 1.0, 'that': 1.0, 'been': 1.0, 'wheels': 2.0, 'allow': 1.0, 'like': 1.0, 'easily': 2.0, 'and': 4.0, 'give': 1.0, 'not': 1.0, 'me': 2.0, 'very': 2.0, 'from': 1.0, 'high': 2.0, 'happy': 1.0, 'my': 2.0, 'have': 1.0, 'chair': 3.0, 'is': 3.0, 'only': 2.0, 'its': 1.0, 'seat': 1.0, 'to': 5.0, 'elegant': 1.0, 'also': 1.0, 'lay': 1.0, 'looking': 1.0, 'folds': 1.0, 'eat': 1.0, 'stars': 1.0, 'for': 1.0, 'son': 2.0, 'storage': 1.0, 'the': 4.0, 'bring': 1.0, '5': 1.0, 'room': 2.0, 'this': 2.0, 'allows': 1.0}
Word element => {'them': 1.0, 'up': 1.0, 'of': 1.0, 'instead': 1.0, 'are': 1.0, 'they': 1.0, 'place': 1.0, 'have': 1.0, 'what': 1.0, 'clothes': 1.0, 's': 1.0, 'wasn': 1.0, 'if': 1.0, 'space': 1.0, 'outgrown': 1.0, 'tight': 1.0, 'perfect': 1.0, 'in': 1.0, 'collect': 1.0, 'now': 1.0, 'to': 2.0, 'hunch': 1.0, 'squishable': 1.0, 'be': 1.0, 't': 1.0, 'behind': 1.0, 'the': 3.0, 'as': 1.0, 'toss': 1.0, 'hamper': 1.0, 'a': 5.0, 'figuring': 1.0, 'needed': 2.0, 'fit': 2.0, 'closet': 2.0, 'bit': 1.0, 'tried': 1.0, 'i': 4.0, 'opened': 1.0, 'clutter': 1.0, 'door': 1.0, 'on': 1.0, 'this': 1.0, 'it': 2.0, 'letting': 1.0, 'exactly': 1.0, 'would': 1.0}
Word element => {'easily': 1.0, 'out': 1.0, 'fall': 1.0, 'don': 1.0, 'bars': 1.0, 'so': 2.0, 'very': 1.0, 't': 1.0, 'loves': 1.0, 'it': 1.0, 'i': 1.0, 'cute': 1.0, 'they': 1.0, 'the': 2.0, 'my': 1.0, 'adjusted': 1.0, 'though': 1.0, 'design': 1.0, 'daughter': 1.0, 'wish': 1.0, 'had': 1.0}
Word element => {'continues': 1.0, 'us': 1.0, 'has': 1.0, 'with': 1.0, 'accidents': 1.0, 'stains': 1.0, 'netting': 1.0, 'fraying': 1.0, 'there': 1.0, 'exaggeration': 1.0, 'any': 1.0, 'condition': 1.0, 'no': 3.0, 'years': 1.0, 'after': 1.0, 'sound': 1.0, 'construction': 1.0, 'say': 1.0, 'anything': 1.0, 'served': 1.0, 'don': 1.0, 'isn': 1.0, 'really': 1.0, 'cribthere': 1.0, 'usual': 1.0, 'loves': 1.0, 'stationary': 1.0, 'when': 1.0, 'so': 1.0, 'can': 3.0, 'easily': 2.0, 'that': 1.0, 'pedestal': 2.0, 'things': 1.0, 'toys': 1.0, 'two': 1.0, 'months': 1.0, 'who': 1.0, 'is': 5.0, 'cleaned': 1.0, 'more': 1.0, 'second': 1.0, 'in': 5.0, 'love': 1.0, 'fabric': 1.0, 'for': 7.0, 'combi': 1.0, 'feature': 2.0, 'or': 1.0, 'if': 1.0, 'still': 2.0, 'rolled': 1.0, 'yard': 6.0, 'be': 2.0, 'here': 1.0, 'travel': 2.0, 'her': 1.0, '2008': 1.0, 'use': 3.0, 'of': 1.0, 'the': 11.0, 'place': 1.0, 'hanging': 1.0, 'my': 4.0, 'old': 2.0, '2011': 1.0, 'rooms': 1.0, 'about': 2.0, 'stowed': 1.0, 'play': 6.0, 'and': 7.0, 'we': 4.0, 'a': 3.0, 'daughter': 3.0, 'now': 1.0, 'away': 1.0, 'was': 1.0, 't': 2.0, 'separate': 1.0, 'kitchen': 2.0, 'all': 2.0, 'our': 1.0, 'bassinet': 2.0, 'to': 3.0, 'as': 2.0, 'purchased': 1.0, 'this': 4.0, 'bad': 1.0, 'are': 1.0, 'first': 1.0, 'it': 6.0, 'month': 1.0, 'made': 2.0, 'places': 1.0, 'family': 2.0, 'perfect': 2.0, 'bed': 1.0, 'room': 4.0, 'rolling': 1.0, 'like': 1.0, 'table': 2.0, 'even': 2.0, 'convenient': 1.0, '3': 1.0, 'today': 1.0, 'taking': 1.0, 'solutions': 1.0, 'different': 1.0, 'back': 1.0, 'namely': 1.0, 'dining': 1.0, 'wonder': 1.0, 'leaving': 1.0, 'born': 1.0, 'safe': 1.0, 'do': 1.0, 'changing': 2.0, '16': 2.0, 'put': 1.0, 'long': 1.0, 'on': 2.0, 'down': 1.0, 'occasions': 1.0, 'were': 2.0, 'both': 1.0, 'numerous': 1.0, 'well': 1.0, 'i': 2.0, 'daughters': 1.0, 'she': 1.0, 'baby': 1.0, 'folds': 1.0, 'water': 1.0, 'up': 1.0, 'have': 2.0, 'used': 1.0, 'soap': 1.0, 'torn': 1.0, 'crib': 1.0}
Word element => {'features': 1.0, 'many': 1.0, 'not': 2.0, 'but': 1.0, 'cute': 1.0, 'other': 1.0, 'am': 1.0, 'vibration': 1.0, 'be': 1.0, 'bought': 3.0, 'as': 2.0, 'to': 3.0, 'used': 1.0, 'was': 3.0, 'daycare': 1.0, 'at': 1.0, 'no': 1.0, 'there': 1.0, 'my': 2.0, 'another': 1.0, 'feature': 1.0, 'i': 4.0, 'comparison': 1.0, 'craftmanship': 1.0, 'playard': 7.0, 'price': 1.0, 'absolutely': 1.0, 'theme': 1.0, 'this': 4.0, 'it': 1.0, 'hard': 1.0, 'jungle': 1.0, 'durable': 1.0, 'follow': 1.0, 'love': 2.0, 'for': 1.0, 'actually': 1.0, 'and': 6.0, 'son': 2.0, 'very': 2.0, 'asleep': 1.0, 'the': 4.0, 'quality': 1.0, 'impressed': 1.0, 'put': 1.0, 'fisher': 1.0, 'easy': 2.0, 'together': 1.0, 'himself': 1.0, 'instructions': 1.0, 'were': 1.0, 'has': 1.0, 'time': 1.0, 'we': 2.0, 's': 1.0, 'a': 1.0, 'falling': 1.0, 'by': 1.0, 'especially': 1.0}
Word element => {'right': 1.0, 'all': 1.0, 'gets': 1.0, 'when': 1.0, 'feels': 1.0, 'so': 1.0, 's': 1.0, 'proud': 1.0, 'easy': 1.0, 'home': 1.0, 'she': 4.0, 'birthday': 1.0, 'little': 1.0, 'daughters': 1.0, 'loves': 1.0, 'and': 2.0, 'my': 1.0, 'the': 3.0, 'for': 1.0, 'pieces': 1.0, 'in': 2.0, 'loved': 1.0, 'got': 1.0, 'blast': 1.0, 'this': 1.0, 'first': 1.0, 'it': 2.0, 'place': 1.0, 'animals': 1.0, 'has': 1.0, 'a': 1.0, 'them': 1.0, 'i': 1.0, 'putting': 1.0, 'there': 1.0}
Word element => {'back': 1.0, 'out': 1.0, 'them': 2.0, 'her': 1.0, 'made': 1.0, 'just': 1.0, 'if': 1.0, 'that': 2.0, 'open': 1.0, 'true': 1.0, 'besides': 1.0, 'ways': 1.0, 'many': 1.0, 'old': 1.0, '18': 1.0, 'door': 1.0, 'vacation': 1.0, 'day': 1.0, '15': 1.0, 'taking': 1.0, 'us': 1.0, 'imaginative': 1.0, 'side': 1.0, 'little': 1.0, 'really': 2.0, 'happen': 1.0, 'brought': 1.0, 'like': 1.0, 'which': 1.0, 'or': 1.0, 'putting': 1.0, 'talking': 1.0, 'best': 1.0, 'one': 2.0, 'barn': 1.0, 'for': 2.0, 'shape': 2.0, 'liked': 1.0, 'ones': 1.0, 'place': 1.0, 'the': 8.0, 'three': 1.0, 'did': 1.0, 'enjoy': 1.0, 'daughter': 2.0, 'sorting': 2.0, 'didn': 1.0, 'previous': 1.0, 'is': 3.0, 'great': 2.0, 'shapes': 1.0, 'we': 2.0, 't': 3.0, 'a': 3.0, 'toy': 2.0, 'has': 1.0, 'well': 2.0, 'doesn': 1.0, 'my': 2.0, 'sorter': 1.0, 'other': 1.0, 'and': 5.0, 'play': 3.0, 'found': 1.0, 'this': 4.0, 'with': 4.0, 'month': 1.0, 'it': 4.0, 'have': 2.0, 'again': 1.0, 'clock': 1.0, 'you': 2.0, 'work': 1.0, 'music': 1.0, 'letters': 1.0, 'but': 2.0, 'can': 2.0, 'animals': 2.0, 'sort': 1.0, 'they': 1.0, 'standing': 1.0, 'on': 3.0, 'your': 1.0, 'are': 3.0, 'in': 3.0, 'also': 1.0, 'come': 1.0, 'practicing': 1.0, 'i': 3.0, 'abcs': 1.0, 'to': 2.0, 'as': 4.0, 'any': 1.0}
Word element => {'still': 1.0, 'and': 1.0, 'arrived': 1.0, 'over': 1.0, 'love': 1.0, 'it': 3.0, 'were': 1.0, 'fighting': 1.0, 'they': 1.0, 'this': 1.0, 'both': 1.0, 'was': 1.0, '1': 1.0, 'big': 1.0, 'with': 1.0, 'when': 1.0, '4': 1.0, 'hit': 1.0, 'my': 1.0, 'a': 1.0, 'boys': 1.0}
Word element => {'definitely': 1.0, 'what': 1.0, 'exactly': 1.0, 'which': 1.0, 'daughter': 1.0, 'want': 1.0, 'is': 1.0, 'farm': 1.0, 'months': 1.0, 'for': 1.0, 'letters': 1.0, '3': 1.0, 'the': 2.0, 'recommend': 1.0, 'she': 1.0, 'toy': 1.0, 'to': 1.0, 'this': 2.0, 'loves': 1.0, 'got': 1.0, 'bright': 1.0, 'my': 1.0, 'color': 1.0, 'combinations': 1.0, 'old': 1.0, 'i': 3.0, 'tries': 1.0, 'and': 2.0, 'product': 1.0, 'friends': 1.0, 'hold': 1.0}
Word element => {'toting': 1.0, 'made': 1.0, 'also': 2.0, 'that': 1.0, 'handle': 1.0, 'educational': 2.0, 'fun': 1.0, 'price': 1.0, 'i': 1.0, 'animals': 1.0, 'colors': 1.0, 'small': 1.0, 'while': 1.0, 'out': 1.0, 'sort': 1.0, 'this': 4.0, 'it': 4.0, 'puzzle': 2.0, 'he': 1.0, 'door': 1.0, 'around': 1.0, 'is': 4.0, 'fine': 1.0, 'in': 1.0, 'pieces': 1.0, 'teaches': 1.0, 'opening': 1.0, 'enjoyed': 1.0, 'good': 1.0, 'tag': 1.0, 'her': 1.0, 'toddler': 2.0, 'an': 1.0, 'challenges': 1.0, 'a': 4.0, 'refinement': 1.0, 'the': 8.0, 'shapes': 1.0, 'great': 2.0, 'my': 1.0, 'eye': 1.0, 'coordination': 1.0, 'son': 1.0, 'still': 1.0, 'sorter': 1.0, 'motor': 1.0, 'and': 7.0, 'infant': 2.0, 'placing': 1.0, 'enjoys': 1.0, 'skill': 1.0, 'has': 1.0, 'well': 2.0, 'toy': 5.0, 'likes': 1.0, 'all': 1.0, 'as': 5.0, 'to': 2.0, 'together': 1.0, 'put': 1.0, 'on': 1.0, 'putting': 1.0, 'work': 1.0, 'letters': 1.0, 'love': 1.0, 'for': 3.0, 'working': 1.0, 'loved': 1.0, 'through': 2.0, 'hand': 1.0, 'gross': 1.0, 'quality': 2.0, 'them': 2.0}
Word element => {'or': 1.0, 'pottman': 1.0, 'larry': 1.0, 'the': 1.0, 'what': 3.0, 'his': 1.0, 'not': 3.0, 'started': 1.0, 'm': 2.0, 'i': 2.0, 'so': 2.0, 'after': 1.0, 'no': 1.0, 'things': 1.0, 'involved': 1.0, 'shortly': 1.0, 'like': 1.0, 'which': 1.0, 'shape': 1.0, 'and': 2.0, 'on': 1.0, 'from': 1.0, 'matter': 1.0, 'witchcraft': 1.0, 'this': 1.0, 'he': 2.0, 'only': 1.0, 'it': 1.0, 'to': 4.0, 'our': 1.0, 'gave': 2.0, 'that': 1.0, 'every': 2.0, 'kid': 1.0, 'yeah': 1.0, 'fits': 1.0, 'hole': 1.0, 'we': 2.0, 's': 1.0, 'supposed': 1.0, 'learning': 1.0, 'but': 1.0, 'here': 1.0, 'be': 1.0, 'him': 1.0, 'in': 1.0, 'fire': 1.0, 'light': 1.0, 'piece': 1.0, 'with': 1.0, 'mind': 1.0, 'sure': 2.0, 'kind': 2.0, 'of': 1.0, 'is': 1.0}
Word element => {'occasion': 1.0, 'one': 1.0, 'than': 1.0, 'more': 1.0, 'out': 1.0, 'almost': 1.0, 'old': 1.0, 'tossed': 1.0, '1yr': 1.0, 'helps': 1.0, 'plays': 1.0, 'son': 1.0, 'still': 1.0, 'years': 1.0, 'about': 1.0, 'had': 1.0, 'now': 2.0, 'did': 1.0, 'disaster': 1.0, 'kids': 1.0, 'this': 2.0, 'nephew': 1.0, '1': 1.0, 'couldn': 1.0, 'shape': 1.0, 've': 1.0, 'would': 1.0, 'mins': 1.0, 'was': 2.0, 'it': 6.0, 'she': 3.0, 'needed': 1.0, 'again': 1.0, 'when': 1.0, 'daughter': 2.0, 'by': 1.0, 'i': 3.0, 'with': 3.0, 'fight': 1.0, 'toy': 3.0, 'abc': 1.0, 'gift': 1.0, 'sorter': 1.0, 'and': 5.0, 'play': 2.0, 'my': 4.0, 'received': 1.0, 'on': 1.0, 'constantly': 1.0, 'if': 1.0, 'to': 2.0, 'as': 1.0, '2': 1.0, 'but': 3.0, 'they': 3.0, 'we': 1.0, 'a': 2.0, 't': 2.0, 'the': 2.0, 'use': 2.0, 'themselves': 1.0, 'help': 1.0, 'time': 1.0, 'so': 1.0, 'didn': 1.0, 'have': 1.0, 'complete': 1.0, 'hate': 1.0, 'always': 2.0, 'sit': 1.0, 'them': 1.0, 'love': 1.0, 'for': 2.0, '20': 1.0}
Word element => {'toy': 1.0, 'nice': 1.0, 'would': 1.0, 'otherwise': 1.0, 'closing': 1.0, 'and': 1.0, 'opening': 1.0, 'adults': 1.0, 'month': 1.0, 'for': 1.0, 'a': 1.0, '15': 1.0, 'had': 1.0, 'granddaughter': 1.0, 'was': 1.0, 'to': 1.0, 'with': 1.0, 'hard': 1.0, 'it': 3.0, 'this': 1.0, 'my': 1.0, 'the': 2.0, 'be': 1.0, 'bought': 1.0, 'in': 1.0, 'disappointed': 1.0, 'she': 1.0, 'played': 1.0, 'i': 2.0, 'trouble': 1.0, 'fact': 1.0, 'barn': 1.0, 'but': 1.0, 'that': 1.0, 'is': 1.0, 'door': 1.0, 'open': 1.0, 'very': 1.0}
Word element => {'reconmended': 1.0, 'will': 1.0, 'definitly': 1.0, 'i': 1.0, 'daughter': 1.0, 'my': 1.0, 'it': 4.0, 'play': 1.0, 'loves': 1.0, 'teach': 1.0, 'colorful': 1.0, 'color': 1.0, 'to': 2.0, 'shape': 1.0, 'has': 2.0, 'good': 1.0, 'animal': 1.0, 'size': 1.0, 'is': 1.0, 'with': 2.0}
Word element => {'that': 1.0, 'to': 1.0, 'already': 1.0, 'room': 1.0, 'for': 1.0, 'purchasing': 1.0, 'you': 2.0, 'keep': 1.0, 'if': 1.0, 'appears': 1.0, 'as': 1.0, 'so': 1.0, 'muted': 1.0, 'painted': 1.0, 'at': 1.0, 'not': 1.0, 'thing': 1.0, 'quality': 1.0, 't': 1.0, 'the': 5.0, 'i': 1.0, 'picture': 1.0, 'good': 1.0, 'product': 2.0, 'want': 1.0, 'is': 4.0, 'this': 1.0, 'it': 1.0, 'only': 1.0, 'with': 1.0, 'mind': 1.0, 'are': 1.0, 'overall': 1.0, 'happy': 1.0, 'color': 2.0, 'shown': 1.0, 'actual': 1.0, 'in': 2.0, 'a': 2.0, 'may': 1.0, 'lot': 1.0, 'like': 1.0, 'wasn': 1.0, 'nothing': 1.0, 'darker': 1.0}
Word element => {'in': 1.0, 'come': 1.0, 'use': 1.0, 'learning': 1.0, 'just': 1.0, 'better': 1.0, 'is': 1.0, 'thiner': 1.0, 'for': 1.0, 'bed': 1.0, 'are': 1.0, 'the': 2.0, 'my': 1.0, 'they': 2.0, 'hope': 1.0, 'good': 1.0, 'loves': 1.0, 'son': 1.0, 'and': 1.0, 'sheets': 2.0, 'way': 1.0, 'transfer': 1.0, 'twin': 1.0, 'little': 1.0, 'a': 4.0, 'thicker': 1.0, 'i': 2.0, 'that': 1.0, 'realize': 1.0, 'comforter': 1.0, 'wish': 1.0, 'to': 3.0, 'was': 1.0, 'toddler': 2.0, 'but': 1.0}
Word element => {'mom': 1.0, 'new': 1.0, 'liner': 1.0, 'fabric': 1.0, 'same': 1.0, 'preferred': 1.0, 'which': 1.0, 'although': 1.0, 'used': 1.0, 'ribbons': 2.0, 'the': 6.0, 'extra': 1.0, 'cellophane': 1.0, 'also': 1.0, 'in': 1.0, 'had': 1.0, 'one': 1.0, 'liked': 1.0, 'for': 1.0, 'gift': 1.0, 'twin': 1.0, 'bought': 1.0, 'thicker': 1.0, 'a': 2.0, 'white': 2.0, 'them': 1.0, 'as': 2.0, 'each': 1.0, 'and': 3.0, 'i': 4.0, 'is': 1.0, 'filled': 1.0, 'basket': 1.0, 'children': 1.0, 'this': 1.0, 'coworker': 1.0, 'with': 1.0, 'books': 1.0, 'small': 1.0, 'boys': 1.0, 'who': 1.0, 'toys': 1.0, 'wrapped': 1.0}
Word element => {'pleased': 1.0, 'am': 1.0, 'accesories': 1.0, 'will': 1.0, 'deep': 1.0, 'size': 1.0, 'both': 1.0, 'them': 1.0, 'shows': 1.0, 'picture': 1.0, 'color': 1.0, 'same': 2.0, 'exactly': 1.0, 'were': 1.0, 'blue': 1.0, 'each': 1.0, 'as': 1.0, 'to': 2.0, 'was': 1.0, 'only': 1.0, 'pink': 1.0, 'with': 2.0, 'durable': 1.0, 'are': 4.0, 'other': 1.0, 'myself': 1.0, 'the': 8.0, '4': 1.0, 'i': 4.0, 'cloth': 1.0, 'pleasantly': 1.0, '2': 1.0, 'can': 1.0, 'shelves': 1.0, 'baskets': 3.0, 'prs': 1.0, 'of': 5.0, 'bottom': 1.0, 'hold': 1.0, 'reading': 1.0, 'table': 1.0, 'after': 1.0, 'these': 3.0, 'beautifully': 1.0, 'add': 1.0, 'some': 1.0, 'changing': 1.0, 'very': 2.0, 'reviews': 1.0, 'they': 4.0, 'for': 1.0, 'fit': 1.0, 'white': 2.0, 'a': 2.0, 'waffle': 1.0, 'ordered': 1.0, 'surprised': 1.0, 'thick': 1.0, 'green': 1.0, 'and': 4.0, 'liners': 1.0, 'nice': 2.0, 'stark': 1.0, 'style': 1.0, 'plenty': 1.0, 'speak': 1.0, 'material': 1.0, 'ribbons': 1.0, 'came': 1.0}
Word element => {'shipping': 1.0, 'qualify': 1.0, 'bought': 1.0, '99': 1.0, '19': 1.0, 'price': 1.0, 'value': 1.0, 'back': 1.0, 'send': 1.0, 'big': 1.0, 'this': 1.0, 'make': 1.0, 'myself': 1.0, 'it': 2.0, 'just': 1.0, 'top': 1.0, 'sewn': 1.0, 'only': 1.0, 'basket': 2.0, 'was': 2.0, 'ripped': 3.0, 'them': 2.0, 'about': 1.0, 'monkey': 1.0, 'there': 1.0, 'if': 2.0, 'loopy': 1.0, 'place': 1.0, 'wasn': 1.0, 'ribbons': 1.0, 'hold': 1.0, 'holders': 1.0, 'with': 2.0, 'that': 1.0, 'problems': 1.0, 'arrived': 1.0, 'aren': 1.0, 'they': 2.0, 'when': 1.0, 'both': 1.0, 'mind': 1.0, 'will': 2.0, 'ty': 1.0, 'purchased': 1.0, 'previously': 1.0, 'pluffies': 1.0, 'nursery': 1.0, 'those': 1.0, 'other': 4.0, 'shelf': 1.0, 'cons': 2.0, 'triple': 1.0, 'huge': 1.0, 'classy': 1.0, 'vibrant': 1.0, 'eventually': 1.0, 'another': 1.0, 'me': 2.0, 'my': 2.0, 'for': 4.0, '6': 1.0, 'mine': 2.0, 'i': 8.0, 'have': 1.0, 'saying': 1.0, 'set': 1.0, 'toy': 1.0, 'used': 1.0, 'by': 1.0, 'had': 2.0, 'nicer': 1.0, 'some': 2.0, 'these': 3.0, 'no': 1.0, 'let': 1.0, 'or': 1.0, 'into': 2.0, 'on': 7.0, 'great': 4.0, '1': 2.0, 'off': 2.0, 'until': 1.0, 'so': 2.0, 'can': 1.0, 'change': 1.0, 'are': 5.0, 'first': 1.0, 'pros': 1.0, 'character': 1.0, 'to': 6.0, 'size': 2.0, 'feel': 1.0, 'probably': 1.0, 'crib': 1.0, 'shelves': 1.0, '2': 2.0, 'thing': 1.0, 'printed': 1.0, 'table': 1.0, 'get': 2.0, 'and': 3.0, 'same': 2.0, 'under': 1.0, 'green': 2.0, 'free': 1.0, 'want': 1.0, 'be': 1.0, 'store': 1.0, 'items': 1.0, 'match': 1.0, 'much': 1.0, 'changing': 1.0, 'floor': 1.0, 'completely': 1.0, 'couldn': 1.0, 'deal': 1.0, 'baby': 1.0, 's': 3.0, 'a': 5.0, 'belt': 2.0, 't': 3.0, 'far': 1.0, 'bottom': 1.0, 'he': 1.0, 'old': 1.0, 'enough': 2.0, 'really': 1.0, 'plain': 1.0, 'you': 1.0, 'things': 1.0, 'one': 3.0, 'ones': 1.0, 'appearance': 1.0, 'now': 1.0, 'later': 1.0, 'very': 1.0, 'looking': 1.0, 'of': 3.0, 'the': 16.0, 'person': 1.0, 'blue': 1.0, 'boy': 1.0, 'ribbon': 1.0, 'start': 1.0, 'colors': 1.0, 'though': 2.0, 'more': 1.0, 'at': 2.0, 'is': 1.0, 'in': 2.0, 'm': 1.0, 'having': 1.0, 'baskets': 2.0, 'decide': 1.0, 'between': 1.0, 'position': 1.0, 'loops': 1.0, 'white': 1.0, 'even': 1.0, 'chose': 1.0}
Word element => {'you': 1.0, 'when': 1.0, 'clicking': 1.0, 'of': 1.0, 'with': 2.0, 'it': 3.0, 'bit': 1.0, 'press': 1.0, 'confusing': 1.0, 'reviews': 1.0, 'kit': 1.0, 'user': 2.0, 'sturdy': 1.0, 'instructions': 1.0, 'use': 1.0, 'g20': 1.0, 'are': 1.0, 'gates': 1.0, 'into': 1.0, 'stairway': 1.0, 'installation': 1.0, 'help': 1.0, 'researched': 1.0, 'read': 1.0, 'place': 1.0, 'gate': 2.0, 'the': 8.0, 'i': 2.0, 'selecting': 1.0, 'kidco': 2.0, 'were': 1.0, 'but': 1.0, 'well': 1.0, 'review': 1.0, 'a': 2.0, 'we': 2.0, 'able': 1.0, 'get': 1.0, 'installed': 1.0, 'lock': 1.0, 'is': 1.0, 'extremely': 1.0, 'before': 1.0, 'eliminate': 1.0, 'did': 1.0, 'to': 3.0, 'as': 1.0, 'sound': 1.0, 'definite': 1.0, 'suggestions': 1.0, 'damage': 1.0, 'banister': 1.0, 'mechanism': 1.0, 'especially': 1.0, 'engages': 1.0}
Word element => {'black': 1.0, 'being': 1.0, 'about': 1.0, 'quality': 1.0, 'install': 1.0, 'easy': 1.0, 'gate': 1.0, 'notch': 1.0, 'of': 2.0, 'get': 1.0, 'and': 2.0, 'were': 2.0, 'kidco': 2.0, 'very': 1.0, 'also': 3.0, 'in': 2.0, 'kit': 1.0, 'are': 2.0, 'installation': 1.0, 'gates': 2.0, 'not': 1.0, 'separate': 1.0, 'able': 2.0, 'these': 1.0, 'the': 6.0, 'ones': 1.0, 'past': 1.0, 'when': 1.0, 'we': 6.0, 'was': 1.0, 'had': 1.0, 'to': 3.0, 'use': 1.0, 'pressure': 1.0, 'bought': 1.0, 'mounted': 1.0, 'happy': 2.0, 'top': 1.0, 'construction': 1.0, 'it': 2.0, 'moved': 1.0, 'with': 1.0}
Word element => {'worth': 1.0, 'definitely': 1.0, 'love': 1.0, 'for': 1.0, 'problem': 1.0, 'no': 1.0, 'walls': 1.0, 'how': 1.0, 'due': 1.0, 'angle': 1.0, 'an': 1.0, 'set': 1.0, 'be': 1.0, 'had': 1.0, 'also': 1.0, 'easy': 1.0, 'was': 2.0, 'everyone': 1.0, 'follow': 1.0, 'if': 1.0, 'are': 2.0, 'directions': 1.0, 'comments': 1.0, 'in': 1.0, 'from': 1.0, 'difficult': 1.0, 'son': 1.0, 'very': 1.0, 'of': 1.0, 'out': 1.0, 'is': 3.0, 'and': 2.0, 'dog': 1.0, 'i': 1.0, 'retriever': 1.0, 'advice': 1.0, 'bought': 1.0, 'this': 3.0, 'it': 4.0, 'up': 1.0, 'over': 1.0, 'down': 1.0, 'see': 1.0, 's': 1.0, 'stairs': 2.0, 'a': 3.0, 'ago': 1.0, 'gate': 4.0, 'the': 6.0, 'install': 1.0, 'great': 1.0, 'as': 1.0, 'our': 3.0, 'to': 5.0, 'jumping': 1.0, 'year': 1.0, 'sturdy': 1.0, 'because': 1.0, 'strong': 1.0, 'golden': 1.0, 'you': 2.0, 'at': 1.0, 'keep': 1.0, 'who': 1.0, 'hold': 1.0, 'coming': 1.0, 'money': 1.0, 'can': 1.0, 'but': 2.0, 'back': 1.0, 'enough': 1.0, 'falling': 1.0, '70': 1.0, 'pound': 1.0, 'basement': 1.0, 'other': 1.0}
Word element => {'nice': 1.0, 'a': 1.0, 'degrees': 1.0, '180': 1.0, 'than': 1.0, 'back': 1.0, 'swing': 1.0, 'product': 1.0, 'ability': 1.0, 'has': 1.0, 'stairs': 1.0, 'of': 1.0, 'top': 1.0, 'easy': 1.0, 'just': 1.0, 'described': 1.0, 'open': 1.0, 'as': 1.0, 'and': 2.0, 'it': 3.0, 'this': 1.0, 'to': 2.0, 'was': 1.0, 'at': 1.0, 'gate': 1.0, 'configured': 1.0, 'install': 1.0, 'easily': 1.0, 'for': 1.0, 'is': 2.0, 'many': 1.0, 'size': 1.0, 'relative': 1.0, 'openings': 1.0, 'i': 1.0, 'used': 1.0, 'more': 1.0, 'the': 3.0}
Word element => {'light': 1.0, 'are': 2.0, 'hazard': 1.0, 'walls': 1.0, 'hallway': 1.0, 'create': 1.0, 'top': 1.0, 'back': 1.0, 'in': 2.0, 'having': 1.0, 'than': 1.0, 'rather': 1.0, 'stable': 1.0, 'past': 1.0, 'keep': 1.0, 'is': 5.0, 'at': 2.0, 'if': 3.0, 'herself': 1.0, 'set': 1.0, 'above': 1.0, 'attached': 1.0, 'floor': 1.0, 'a': 3.0, 'stairs': 6.0, 't': 1.0, 'wish': 1.0, 'banister': 3.0, 'of': 1.0, 'the': 24.0, 'gate': 9.0, 'upper': 1.0, 'that': 4.0, 'blockade': 1.0, 'have': 3.0, 'only': 1.0, 'end': 1.0, 'it': 2.0, 'she': 1.0, 'don': 1.0, 'so': 1.0, 'can': 1.0, 'clips': 1.0, 'though': 2.0, 'spans': 1.0, 'wood': 2.0, 'tie': 1.0, 'wall': 1.0, 'coming': 2.0, 'i': 7.0, 'to': 11.0, 'looks': 1.0, 'my': 3.0, 'solid': 1.0, 'someone': 1.0, 'when': 1.0, 'again': 1.0, 'they': 1.0, 'order': 1.0, 'grabs': 1.0, 'we': 2.0, 'then': 1.0, 'take': 1.0, 'safe': 1.0, 'rail': 1.0, 'this': 3.0, 'few': 1.0, 'down': 1.0, 'direction': 1.0, 'room': 1.0, 'get': 1.0, 'from': 1.0, 'other': 1.0, 'great': 2.0, 'feel': 1.0, 'comfortable': 1.0, 'near': 2.0, 'rails': 1.0, 'and': 4.0, 'pulls': 1.0, 'standing': 1.0, 'durable': 1.0, 'up': 2.0, 'knowing': 1.0, 'over': 1.0, 'open': 4.0, 'happen': 1.0, 'cream': 1.0, 'be': 1.0, 'her': 1.0, 'moment': 1.0, 'would': 1.0, 'recommend': 1.0, 'upstairs': 1.0, 'steps': 1.0, 'daughter': 1.0, 'got': 1.0, 'even': 1.0, 'black': 1.0, 'one': 1.0, 'railings': 1.0}
Word element => {'sec': 1.0, 'take': 1.0, 'have': 1.0, 'when': 1.0, 'of': 1.0, 'mind': 1.0, 'piece': 1.0, 'especially': 1.0, 'tension': 1.0, 'over': 1.0, 'use': 1.0, 'would': 1.0, 'he': 1.0, 'if': 1.0, 'open': 1.0, 'love': 1.0, 'for': 2.0, 'off': 1.0, 'enough': 1.0, 'easy': 1.0, 'latch': 1.0, 'pulls': 1.0, 'is': 3.0, 'old': 2.0, 'i': 2.0, 'year': 2.0, 'from': 1.0, 'my': 3.0, 'ordered': 1.0, 'kids': 1.0, 'eyes': 1.0, 'this': 1.0, 'saver': 1.0, 'the': 7.0, 'gate': 3.0, 'one': 1.0, 'months': 1.0, 'curious': 1.0, 'at': 1.0, 'three': 1.0, 'about': 1.0, 'and': 7.0, 'few': 1.0, 'life': 1.0, 'has': 1.0, 'we': 1.0, 'ago': 1.0, 'a': 4.0, 'stairs': 3.0, 'been': 1.0, 'that': 1.0, 'it': 8.0, 'she': 2.0, 'always': 1.0, 'confident': 1.0, 'wants': 1.0, 'any': 1.0, 'to': 4.0, 'him': 1.0, 'be': 1.0, 'them': 2.0, 'but': 1.0, 'will': 1.0, 'secure': 1.0, 'keeps': 1.0, 'pushes': 1.0, 'her': 1.0, 'me': 1.0, 'give': 1.0, 'not': 1.0, 'on': 4.0, 'strong': 1.0, 'day': 1.0, 'close': 1.0, 'budge': 1.0, 'feels': 1.0, 'needs': 1.0, 'so': 1.0, 'otherhand': 1.0}
Word element => {'much': 1.0, 'require': 1.0, 'even': 1.0, 'between': 1.0, 'easy': 1.0, 'dissappointment': 1.0, 'sure': 1.0, 'except': 1.0, 'them': 1.0, 'has': 2.0, 'stars': 1.0, 'product': 1.0, 'a': 4.0, 'going': 1.0, 'precisely': 1.0, 'mother': 1.0, 'buy': 1.0, 'steer': 1.0, 'extra': 1.0, 'ache': 1.0, 'am': 3.0, 'again': 1.0, 'when': 1.0, 'for': 1.0, '10': 1.0, 'ofcourse': 1.0, 'was': 1.0, 'its': 2.0, 'above': 1.0, 'as': 1.0, 'heavy': 1.0, 'will': 1.0, 'all': 1.0, 'an': 3.0, 'well': 1.0, 'i': 9.0, 'pounds': 1.0, 'why': 1.0, 'didnt': 1.0, 'ok': 1.0, 'design': 1.0, 'is': 1.0, 'at': 1.0, 'since': 1.0, 'weight': 1.0, 'nescessity': 1.0, 'portability': 1.0, 'stroller': 3.0, 'steering': 1.0, 'liked': 1.0, 'chance': 1.0, 'giving': 1.0, '3': 1.0, 'force': 2.0, 'it': 7.0, 'she': 1.0, 'absolute': 1.0, 'my': 2.0, 'that': 1.0, 'because': 1.0, 'not': 2.0, 'basket': 1.0, 'been': 1.0, 'effort': 2.0, 'bought': 1.0, 'one': 2.0, 'probably': 1.0, 'and': 3.0, 'ammount': 1.0, 'son': 1.0, 'thats': 1.0, 'weighs': 1.0, '38': 1.0, 'but': 1.0, 'sitting': 1.0, 'bottom': 1.0, 'he': 1.0, 'in': 2.0, 'if': 2.0, 'turn': 1.0, 'have': 2.0, 'able': 1.0, 'things': 2.0, 'starts': 1.0, 'push': 2.0, 'with': 1.0, 'difference': 1.0, 'tremendous': 1.0, 'the': 4.0, 'of': 1.0, 'to': 6.0, 'straight': 1.0, 'given': 1.0, 'law': 1.0, 'apply': 1.0, 'really': 2.0, 'drive': 1.0, 'this': 5.0, 'being': 1.0, 'cannot': 1.0, 'carry': 1.0, 'big': 1.0, 'while': 1.0, 'pushing': 1.0, 'had': 1.0, 'umbrella': 1.0, 'there': 1.0, 'before': 1.0}
Word element => {'so': 1.0, 'big': 1.0, 'covers': 1.0, 'it': 2.0, 'undo': 1.0, 'very': 1.0, 'figure': 1.0, 'anyway': 1.0, 'area': 1.0, 'get': 2.0, 'and': 4.0, 'can': 2.0, 'i': 2.0, 'baby': 1.0, 'squirmy': 1.0, 'what': 1.0, 'to': 2.0, 'head': 1.0, 'worry': 1.0, 'skinny': 1.0, 'turn': 1.0, 'in': 1.0, 'also': 1.0, 'could': 1.0, 'a': 2.0, 'front': 1.0, 'perfect': 1.0, 'this': 2.0, 'with': 2.0, 'how': 1.0, 'grocery': 1.0, 'he': 2.0, 'velcro': 2.0, 'carts': 1.0, 'my': 2.0, 'awesome': 1.0, 'something': 1.0, 'for': 1.0, 'strong': 1.0, 'on': 1.0, 'months': 1.0, 'is': 3.0, 'son': 1.0, '10': 1.0, 'off': 1.0, 'yet': 1.0, 'or': 1.0, 'the': 6.0, 'adjustable': 1.0, 'shelf': 1.0, 'not': 2.0, 'out': 2.0, 'of': 1.0, 'strap': 1.0, 'slide': 1.0, 'through': 1.0, 'exactly': 1.0, 'needed': 1.0, 'back': 1.0}
Word element => {'everyone': 1.0, 'never': 1.0, 'is': 1.0, 'how': 2.0, 'portable': 1.0, 'on': 1.0, 'would': 1.0, 've': 2.0, 'golden': 1.0, 're': 1.0, 'bag': 1.0, 'diaper': 1.0, 'purse': 1.0, 'strap': 1.0, 'perfect': 1.0, 'this': 1.0, 'just': 1.0, 'not': 1.0, 'removable': 1.0, 'but': 1.0, 'use': 1.0, 'with': 2.0, 'first': 1.0, 'looked': 1.0, 'seemed': 1.0, '10': 1.0, 'daughter': 1.0, 'seen': 1.0, 'leachco': 1.0, 'when': 1.0, 'safety': 1.0, 'throw': 1.0, 'were': 1.0, 'my': 2.0, 'went': 1.0, 'it': 4.0, 'annoying': 1.0, 'and': 4.0, 'every': 1.0, 'really': 1.0, 'that': 2.0, 'into': 2.0, 'or': 2.0, 'husband': 1.0, 'our': 1.0, 'any': 1.0, 'to': 3.0, 'had': 3.0, 'comment': 1.0, 'like': 1.0, 'frustrated': 1.0, 'other': 1.0, 's': 1.0, 'a': 4.0, 'we': 4.0, 'i': 3.0, 'people': 1.0, 'take': 1.0, 'kid': 1.0, 'cart': 2.0, 'belts': 1.0, 'broken': 2.0, 'missing': 1.0, 'cool': 1.0, 'one': 1.0, 'recommend': 1.0, 'anymore': 1.0, 'store': 1.0, 'belt': 2.0, 'fit': 1.0, 'actually': 1.0, 'wrap': 1.0, 'place': 1.0, 'the': 1.0, 'they': 1.0, 'carts': 1.0, 'at': 1.0, 'trying': 1.0, 'be': 1.0, 'so': 1.0}
Word element => {'recommend': 1.0, 'definitely': 1.0, 'comfortably': 1.0, 'safely': 1.0, 'and': 2.0, 'sized': 1.0, 'preschool': 1.0, 'fit': 1.0, 'protective': 1.0, 'no': 1.0, 'have': 1.0, 'that': 1.0, 'center': 1.0, 'with': 1.0, 'children': 3.0, 'anyone': 1.0, 'in': 1.0, 'my': 1.0, 'straps': 2.0, 'wiggly': 1.0, 'they': 2.0, 'care': 1.0, 'most': 1.0, 'use': 1.0, 'purchased': 1.0, 'to': 2.0, '34': 2.0, 'of': 1.0, 'i': 2.0, 'for': 1.0, 'young': 1.0, 'work': 1.0, 'hold': 2.0, 'the': 1.0, 'these': 1.0, '2': 1.0, 'great': 1.0, 'we': 1.0, 'child': 1.0, 'them': 2.0, 'chairs': 2.0}
Word element => {'carts': 1.0, 'shopping': 1.0, 'kept': 1.0, 'and': 1.0, 'chair': 1.0, 'regular': 1.0, 'there': 1.0, 'of': 1.0, 'a': 1.0, 'middle': 1.0, 'too': 1.0, 'when': 1.0, 'i': 2.0, 'mainly': 1.0, 'have': 1.0, 'it': 3.0, 'the': 1.0, 'great': 2.0, 'for': 2.0, 'baby': 1.0, 'my': 1.0, 'we': 1.0, 'worked': 2.0, 'perfect': 1.0, 'in': 2.0, 'somewhere': 1.0, 'were': 1.0, 'highchairs': 1.0, 'that': 1.0, 'strap': 1.0, 'did': 1.0, 'used': 1.0, 'her': 2.0, 'would': 1.0, 'not': 1.0, 'just': 1.0}
Word element => {'stool': 1.0, 'by': 1.0, 'uses': 1.0, 'regularly': 1.0, 'highly': 1.0, 'places': 1.0, 'arms': 1.0, 'both': 1.0, 'their': 1.0, 'in': 3.0, 'used': 1.0, 'have': 1.0, 'back': 1.0, 'needed': 1.0, 'strap': 1.0, 'who': 1.0, 'at': 1.0, 'bigger': 1.0, 'months': 1.0, '5': 1.0, 'and': 4.0, 'getting': 1.0, 'only': 2.0, 'quick': 1.0, 'with': 1.0, 'grocery': 2.0, 'he': 3.0, 'this': 3.0, 'happy': 1.0, 'cart': 3.0, 'velcro': 1.0, 'secures': 1.0, 'it': 3.0, 'thru': 1.0, 'chair': 2.0, 'i': 4.0, 'old': 1.0, 'use': 1.0, 'threading': 1.0, 'high': 2.0, 'fits': 1.0, 'my': 1.0, 'bars': 1.0, 'grandson': 1.0, 'looking': 1.0, 'something': 1.0, 'comfortable': 1.0, 'or': 1.0, 'motion': 1.0, 'yet': 1.0, 'well': 1.0, 'for': 4.0, 'love': 1.0, 'closure': 1.0, 'the': 6.0, 'we': 1.0, 'a': 4.0, 't': 1.0, 'adjustable': 1.0, 'is': 3.0, 'him': 3.0, 'any': 1.0, 'to': 1.0, 'as': 2.0, 'recommend': 1.0, 'store': 1.0, 'was': 1.0, 'doesn': 1.0, 'sit': 1.0, 'child': 1.0, 'up': 1.0, 'of': 2.0, 'under': 1.0, 'required': 1.0, 'gets': 1.0, 'secure': 1.0, 'also': 2.0, 'so': 1.0, 'into': 1.0, 'out': 1.0}
Word element => {'belts': 1.0, 'seat': 1.0, 'my': 1.0, 'is': 1.0, 'works': 1.0, 'love': 2.0, 'cart': 1.0, 'shopping': 1.0, 'carts': 1.0, 'keeps': 1.0, 'wonderfully': 1.0, 'it': 2.0, 'this': 1.0, 'son': 1.0, 'from': 1.0, 'wider': 1.0, 'all': 1.0, 'sliding': 1.0, 'than': 1.0, 'the': 1.0, 'traditional': 1.0, 'on': 1.0, 'over': 1.0, 'place': 1.0, 'i': 1.0, 'that': 1.0}
Word element => {'bought': 1.0, 'these': 1.0, 'the': 3.0, 'not': 3.0, 'seat': 1.0, 'strong': 1.0, 'which': 2.0, 'easy': 1.0, 'straps': 2.0, 'find': 1.0, 'or': 1.0, 'off': 1.0, 'i': 3.0, 'shopping': 1.0, 'they': 4.0, 'makes': 1.0, 'have': 2.0, 'twin': 1.0, 'efficient': 1.0, 'cut': 1.0, 'few': 1.0, 'very': 1.0, 'and': 3.0, 'do': 2.0, 'broken': 1.0, 'are': 5.0, 'velcro': 2.0, 'into': 1.0, 'that': 1.0, 'torn': 1.0, 'more': 1.0, 'is': 1.0, 'broad': 1.0, 'really': 1.0, 'so': 2.0, 'in': 1.0, 'pull': 1.0, 'long': 1.0, 'them': 2.0, 'missing': 1.0, 'also': 1.0, 'secure': 1.0, 'boys': 2.0, 'when': 1.0, 'easily': 1.0, 'am': 1.0, 'trolleys': 1.0, 'pleased': 1.0}
Word element => {'stores': 1.0, 'purse': 1.0, 'or': 1.0, 'bag': 1.0, 'fits': 1.0, 's': 1.0, 'would': 1.0, 'safety': 1.0, 'enhancement': 1.0, 'good': 1.0, 'was': 1.0, 'recently': 1.0, 'walking': 1.0, 'inexpensive': 1.0, 'old': 1.0, 'being': 1.0, 'want': 1.0, 'also': 1.0, 'secure': 1.0, 'serve': 1.0, 'in': 4.0, 'regular': 3.0, 'slides': 1.0, 'my': 2.0, 'cushiony': 1.0, 'come': 1.0, 'however': 1.0, 'really': 1.0, 'don': 2.0, 'child': 2.0, 'so': 2.0, 'they': 3.0, 'aren': 1.0, 'but': 1.0, 'work': 1.0, 'times': 1.0, 'am': 1.0, 'lean': 1.0, 'strap': 4.0, 'are': 2.0, 'that': 2.0, 'a': 11.0, 'purpose': 1.0, 'from': 1.0, 'matter': 1.0, 'diaper': 1.0, 'as': 3.0, 'to': 4.0, 'like': 1.0, 'proficiently': 1.0, 'and': 10.0, 'too': 1.0, 'cart': 4.0, 'out': 1.0, 'i': 7.0, 'nice': 1.0, 'on': 6.0, 'of': 3.0, 'the': 4.0, 'your': 1.0, 'flimsy': 1.0, 'keeps': 2.0, 'multiple': 1.0, 'broken': 1.0, 'carts': 1.0, 'straps': 1.0, 'when': 1.0, 'inevitably': 1.0, 'sit': 1.0, 'even': 1.0, '9': 1.0, 'him': 1.0, 'it': 8.0, 'germaphobe': 1.0, 'this': 2.0, 'you': 1.0, 'able': 1.0, 'chew': 1.0, 'does': 1.0, 'forward': 1.0, 'not': 2.0, 'give': 1.0, 'ewwwww': 1.0, 'have': 1.0, 'is': 3.0, 'handle': 1.0, 'snug': 1.0, 'yes': 2.0, 'tried': 2.0, 'recommend': 1.0, 'tighten': 1.0, 'occasions': 1.0, 'down': 1.0, 'use': 1.0, 'chair': 4.0, 'course': 1.0, '10': 1.0, 'for': 1.0, 't': 4.0, 'fit': 1.0, 'highchair': 1.0, 'makeshift': 1.0, 'just': 1.0, 'useful': 1.0, 'doesn': 1.0, 'no': 3.0, 'item': 1.0, 'shopping': 3.0, 'how': 1.0, 'he': 1.0, 'better': 1.0, 'reference': 1.0, 'frame': 1.0, 'upright': 1.0, 'almost': 1.0, 'much': 1.0, '16': 1.0, 'months': 1.0}
Word element => {'to': 1.0, 'toddler': 1.0, 'house': 1.0, 'safe': 1.0, 'at': 1.0, 're': 1.0, 'you': 1.0, 'keep': 1.0, 'if': 1.0, 'chairs': 1.0, 'baby': 2.0, 'wide': 1.0, 'out': 1.0, 'from': 1.0, 'the': 2.0, 'cart': 1.0, 'standing': 1.0, 'that': 1.0, 'strap': 1.0, 'so': 1.0, 'someones': 1.0, 'regular': 1.0, 'is': 1.0, 'really': 2.0, 'with': 1.0, 'it': 4.0, 'this': 1.0, 'get': 1.0, 'prevents': 1.0, 'works': 2.0, 'her': 1.0, 'of': 1.0, 'up': 1.0, 'cannot': 1.0, 'in': 1.0, 'also': 1.0}
Word element => {'toddler': 1.0, 'or': 1.0, 'plan': 1.0, 'functions': 1.0, 'useful': 1.0, 'chair': 1.0, 'still': 1.0, 'lower': 1.0, 'elevators': 1.0, 'restaurants': 2.0, 'places': 1.0, 'tight': 1.0, 'because': 1.0, 'wonderful': 1.0, 'retractable': 1.0, 'normal': 1.0, 'compared': 1.0, 'minor': 1.0, 'other': 3.0, 'an': 1.0, 'm': 2.0, 'in': 6.0, 'push': 1.0, 'seat': 2.0, 'at': 3.0, 'wheels': 3.0, 'retracted': 3.0, 'getting': 2.0, 'highly': 2.0, 'this': 5.0, 'few': 1.0, 'item': 2.0, 'product': 1.0, 'stroller': 3.0, 'how': 1.0, 'off': 1.0, 'airports': 1.0, 'his': 1.0, 'on': 6.0, 'safely': 1.0, 'months': 2.0, 'inconvenience': 1.0, 'get': 2.0, 'able': 2.0, 'you': 6.0, 'that': 5.0, 'easily': 1.0, 'essential': 1.0, 'were': 1.0, 'recommend': 2.0, 'traveled': 1.0, 'states': 1.0, 'steer': 1.0, 'home': 1.0, 'made': 1.0, 'side': 1.0, 'have': 10.0, 'tell': 1.0, 'minimal': 1.0, 'trip': 2.0, '50': 1.0, 'extended': 2.0, 'combos': 1.0, 'check': 1.0, 'checked': 1.0, 'family': 1.0, 'rental': 1.0, 'me': 2.0, 'glad': 1.0, 'reverse': 1.0, 'with': 10.0, 'different': 1.0, 'not': 4.0, 'suitcases': 1.0, 'someone': 1.0, 'and': 12.0, 'just': 1.0, 'airline': 1.0, 'didn': 3.0, 'started': 1.0, 'most': 1.0, 'is': 7.0, 'can': 3.0, 'so': 6.0, 'month': 1.0, '4': 1.0, 'two': 1.0, 'little': 2.0, 'i': 26.0, 'well': 1.0, 'of': 4.0, 'old': 2.0, 'wheel': 1.0, 'visited': 1.0, 'job': 1.0, 'pulled': 1.0, 'cross': 1.0, 'hand': 2.0, 'red': 1.0, 'straps': 1.0, 'country': 1.0, 'now': 1.0, 'air': 1.0, 'was': 9.0, 'which': 1.0, 'equipment': 1.0, 'without': 1.0, 'flights': 3.0, 'him': 3.0, 'he': 3.0, 'mentioned': 1.0, 'when': 4.0, 'whole': 1.0, 'as': 3.0, 'sit': 4.0, 'if': 2.0, 'wasn': 1.0, 'lift': 1.0, 'fortunately': 1.0, 'practiced': 1.0, 'trying': 1.0, 'we': 4.0, 'bag': 1.0, 'a': 12.0, 'confident': 1.0, 'friends': 1.0, 't': 6.0, 'gate': 2.0, 'nice': 1.0, 'occasion': 1.0, 'myself': 3.0, 'security': 1.0, 'many': 2.0, 'where': 2.0, 'also': 2.0, 'completed': 1.0, 'moms': 2.0, 'for': 2.0, 'such': 1.0, 'stroll': 4.0, 'very': 4.0, 'would': 3.0, 'handle': 2.0, 'people': 1.0, 'crash': 1.0, '6': 1.0, 'arms': 1.0, 'strong': 1.0, 'aren': 1.0, '12': 1.0, 'n': 4.0, 'first': 1.0, 'my': 3.0, 'are': 2.0, 'plus': 1.0, 'challenge': 1.0, 'took': 1.0, 'used': 2.0, 'but': 3.0, 'infant': 1.0, 'by': 3.0, 'after': 1.0, 'securely': 1.0, 'tries': 1.0, 'watching': 1.0, 'cars': 1.0, 'do': 1.0, 'put': 1.0, 'problems': 1.0, 'strapped': 1.0, 'huge': 3.0, 'way': 1.0, 'hassle': 2.0, 'conveyor': 1.0, 'since': 1.0, 'out': 4.0, 'asking': 1.0, 'fit': 1.0, 'easy': 2.0, 'own': 1.0, 'it': 13.0, 'be': 3.0, 'ray': 1.0, 'sold': 1.0, 'than': 1.0, 'bit': 1.0, 'the': 25.0, 'process': 1.0, 'think': 1.0, 'more': 1.0, 'rear': 1.0, 'served': 1.0, 'had': 3.0, 'withstood': 1.0, '5': 1.0, 'one': 4.0, 'got': 1.0, 'fabulous': 1.0, 'long': 1.0, 'carseat': 2.0, 'taking': 1.0, 'jetway': 1.0, 'booster': 1.0, 'marvel': 1.0, 'easiy': 1.0, 'could': 2.0, 'son': 2.0, 'travel': 2.0, 'these': 1.0, 'traveling': 1.0, 'right': 1.0, 'to': 15.0, 'hauling': 2.0, 'any': 3.0, 'facing': 1.0, 'am': 1.0, 'actually': 1.0, 'test': 1.0, 'airplanes': 1.0, 'install': 1.0, 'through': 2.0, 'into': 1.0, 'car': 1.0, 'around': 2.0, 'x': 1.0, 'each': 1.0, 'did': 2.0, 'time': 1.0, 'baby': 2.0}
Word element => {'some': 1.0, 'well': 1.0, 'gadgets': 1.0, 'strollers': 1.0, 'different': 1.0, 'buying': 1.0, 'loves': 1.0, 'seats': 1.0, 'compliments': 1.0, 'countless': 1.0, 'books': 1.0, 'read': 1.0, 'chair': 1.0, 'on': 1.0, 'near': 1.0, 'give': 1.0, 'muss': 1.0, 'roadtrips': 1.0, 'not': 1.0, 'but': 3.0, 'so': 1.0, 'can': 3.0, 's': 5.0, 'a': 7.0, 'taxi': 1.0, 'airport': 1.0, 'pushing': 1.0, 'effortlessly': 1.0, 'or': 1.0, 'our': 5.0, 'favorite': 1.0, 'takes': 1.0, '34': 10.0, 'born': 1.0, 'ride': 1.0, '5': 2.0, 'fuss': 1.0, 'sidewalk': 1.0, 'since': 2.0, 'us': 1.0, 'also': 1.0, 've': 2.0, 'and': 8.0, 'like': 1.0, 'using': 2.0, 'which': 2.0, 'riding': 1.0, 'fully': 2.0, 'my': 1.0, 'years': 1.0, 'no': 3.0, 'extended': 1.0, 'are': 1.0, 'very': 1.0, 'from': 1.0, 'son': 3.0, 'had': 2.0, 'fact': 1.0, 'old': 2.0, 'truly': 1.0, 'it': 12.0, 'this': 1.0, 'perfect': 1.0, 'opaque': 1.0, 'without': 1.0, 'works': 1.0, 'dream': 1.0, 'easily': 1.0, 'that': 2.0, 'because': 1.0, 'heck': 1.0, 'seat': 2.0, 'maneuvering': 1.0, 'the': 4.0, 'of': 3.0, 'exclusive': 1.0, 'wild': 1.0, 'stunt': 1.0, 'bit': 1.0, 'myriad': 1.0, 'about': 1.0, 'driving': 1.0, 'smooth': 1.0, 'with': 4.0, 'then': 1.0, 'we': 5.0, 'maximum': 1.0, '4': 1.0, 'was': 2.0, 'lbs': 2.0, 'queries': 1.0, 'when': 1.0, 'wiggle': 1.0, '40': 1.0, 'cover': 1.0, 'for': 2.0, 'to': 5.0, 'preemie': 1.0, 'room': 1.0, 'comes': 1.0, 'at': 1.0, 'handle': 1.0, 'is': 1.0, 'snugness': 1.0, 'worth': 1.0, 'club': 1.0, 'now': 1.0, 'price': 1.0, 'year': 1.0, 'everything': 1.0, 'loosened': 1.0, 'sun': 2.0, 'still': 1.0, 'clear': 1.0, 'car': 1.0, 'support': 1.0, 'window': 1.0, 'usual': 1.0, 'airports': 1.0, 'see': 1.0, 'blocking': 1.0, 'through': 1.0, 'material': 1.0, 'has': 1.0, 'rarely': 1.0, 'use': 2.0, 'travel': 2.0}
Word element => {'everyone': 1.0, 'recommend': 1.0, 'personal': 1.0, 'your': 1.0, 'add': 1.0, 'wash': 1.0, 'i': 1.0, 'is': 1.0, 'while': 1.0, 'to': 4.0, 'our': 2.0, 'been': 1.0, 'that': 1.0, 'often': 1.0, 'love': 1.0, 'a': 3.0, 'we': 2.0, 'hang': 1.0, 'use': 1.0, 'travel': 1.0, 'and': 3.0, 'easy': 1.0, 'get': 2.0, 'sit': 1.0, 'touch': 1.0, 'stroll': 1.0, 'converting': 1.0, 'easier': 1.0, 'has': 2.0, 'made': 1.0, 'out': 1.0, 'takes': 1.0, 'there': 2.0, 'by': 1.0, 'life': 1.0, 'few': 1.0, 'covers': 1.0, 'it': 3.0, 'lot': 1.0, 'at': 1.0, 'of': 2.0, 'once': 1.0, 'traveling': 1.0, 'times': 1.0, 'you': 2.0, 'myself': 1.0, 'the': 1.0, 'quick': 1.0, 'piece': 1.0, 'cake': 1.0, 'are': 1.0, 'cute': 1.0, 'but': 1.0, 'can': 1.0}
Word element => {'lily': 1.0, 'be': 1.0, 'but': 1.0, 'who': 1.0, 'parents': 1.0, 'thank': 1.0, 'product': 2.0, 'few': 1.0, 'this': 1.0, 'think': 1.0, 'over': 1.0, 'gold': 1.0, 'times': 1.0, 'couple': 1.0, 'closing': 1.0, 'flap': 1.0, 'plastic': 1.0, 'with': 1.0, 'stuck': 1.0, 'sometimes': 1.0, 'during': 1.0, 'part': 1.0, 'once': 1.0, 'strap': 1.0, 'finished': 1.0, 'out': 1.0, 'up': 1.0, 'wheels': 2.0, 'help': 1.0, 'second': 1.0, 'get': 2.0, 'either': 1.0, 'very': 1.0, 'so': 1.0, 'poll': 1.0, 'found': 1.0, 'on': 3.0, 'hold': 1.0, 'like': 1.0, 'light': 1.0, 'using': 1.0, 'top': 1.0, 'across': 1.0, 'and': 11.0, 'love': 1.0, 'for': 3.0, 'strole': 1.0, 'time': 2.0, 'transportation': 1.0, '2': 2.0, 'way': 1.0, 'frustrating': 1.0, 'have': 5.0, 'falls': 1.0, 'kitchen': 1.0, 'back': 2.0, 'most': 1.0, 'making': 1.0, 'then': 2.0, 'take': 1.0, 'we': 2.0, 'a': 8.0, 't': 3.0, 's': 3.0, 'since': 1.0, 'monster': 1.0, 'are': 3.0, 'improements': 1.0, 'i': 13.0, 'don': 3.0, 'nearly': 1.0, 'front': 1.0, 'lovely': 1.0, 'blind': 1.0, 'works': 1.0, 'mother': 1.0, 'big': 1.0, 'great': 2.0, 'm': 2.0, 'in': 6.0, 'seat': 1.0, 'usable': 1.0, 'straight': 1.0, 'to': 6.0, 'other': 3.0, 'all': 3.0, 'again': 1.0, 'car': 2.0, 'that': 2.0, 'more': 1.0, 'husband': 2.0, 'now': 1.0, 'handles': 1.0, 'could': 2.0, 'perminantly': 1.0, 'dinner': 1.0, 'down': 1.0, 'cozy': 1.0, 've': 1.0, 'good': 1.0, 'made': 1.0, 'transision': 1.0, 'asleep': 1.0, 'handle': 1.0, 'is': 4.0, 'sits': 2.0, 'vg': 1.0, 'every': 1.0, 'public': 1.0, 'while': 2.0, 'it': 7.0, 'behind': 1.0, 'drie': 1.0, 'or': 3.0, 'my': 6.0, 'looks': 1.0, 'me': 5.0, 'not': 3.0, 'cane': 1.0, 'person': 1.0, 'the': 11.0, 'of': 2.0, 'put': 1.0, 'much': 1.0, 'giggle': 1.0, 'disadvantages': 1.0, 'convenient': 1.0, 'sit': 1.0, 'when': 1.0, 'things': 1.0, 'you': 2.0, 'driver': 1.0, 'force': 1.0, 'taking': 1.0, 'rides': 1.0, 'both': 2.0, 'people': 1.0, 'has': 1.0, 'watching': 1.0, 'cars': 1.0, 'where': 1.0, 're': 1.0, 'depending': 1.0, 'how': 1.0, 'makes': 1.0, 'daughter': 2.0, 'there': 2.0, 'use': 1.0, 'her': 3.0, 'see': 1.0, 'own': 1.0}
Word element => {'leaning': 1.0, 'baby': 1.0, 'surface': 1.0, 'car': 1.0, 'way': 1.0, 'sit': 2.0, 'front': 1.0, 'placing': 1.0, 'towel': 1.0, 'folding': 1.0, 'by': 1.0, 'seats': 1.0, 'of': 2.0, 'forward': 1.0, 'tipped': 1.0, 'due': 1.0, 'slight': 1.0, 'right': 1.0, 'up': 1.0, 'child': 1.0, 'under': 1.0, 'facing': 1.0, 'year': 1.0, 'for': 2.0, 'love': 1.0, 'sloved': 1.0, 'day': 1.0, 'blue': 2.0, 'placed': 1.0, 'stroller': 1.0, 'solid': 1.0, 'first': 1.0, 'only': 1.0, 'old': 2.0, 'flat': 1.0, 'have': 2.0, 'saturday': 1.0, 'the': 12.0, 'order': 1.0, 'back': 2.0, 'star': 1.0, 'seat': 1.0, 'to': 2.0, 'our': 3.0, 'rear': 1.0, 'friday': 1.0, 'and': 5.0, 'arrived': 1.0, 'on': 3.0, 'two': 1.0, 'i': 2.0, '4': 1.0, 'they': 1.0, 'gray': 1.0, 'is': 5.0, 'slop': 1.0, 'three': 1.0, 'it': 4.0, 'month': 1.0, 'this': 4.0, 'wish': 1.0, '5': 1.0, 'n': 1.0, 'not': 1.0, 'style': 1.0, 'when': 2.0, 'totally': 1.0, 'that': 1.0, 'next': 1.0, 'gave': 1.0, 'one': 2.0, 'bought': 1.0, 'has': 1.0, 'well': 1.0, 'we': 4.0, 'a': 4.0, 'or': 1.0, 'worth': 1.0, 'most': 1.0, 'money': 1.0, '150ish': 1.0, 'stroll': 1.0, 'reason': 1.0}
Word element => {'regret': 1.0, 'bumpy': 1.0, 'be': 1.0, 'your': 1.0, 'money': 1.0, 'unless': 1.0, 'do': 1.0, 'make': 1.0, 'child': 1.0, 'year': 1.0, 'enjoy': 1.0, 'if': 2.0, 'line': 1.0, 'ugly': 1.0, 'bottom': 1.0, 'by': 1.0, 'its': 1.0, 'eclipsed': 1.0, 'readily': 1.0, 'are': 1.0, 'drawbacks': 1.0, 'run': 1.0, 'none': 1.0, 'holders': 1.0, 'cup': 1.0, 'wrists': 1.0, 'ra': 1.0, 'hereditary': 1.0, 'from': 1.0, 'converting': 1.0, 'times': 1.0, 'used': 1.0, 'whatever': 1.0, 'quickly': 1.0, 'but': 3.0, 'curve': 1.0, 'absolutely': 1.0, 'out': 1.0, 'has': 2.0, 'trips': 1.0, 'during': 1.0, 'family': 1.0, 'hit': 1.0, 'stomach': 1.0, 'learned': 1.0, 'machine': 1.0, 'washing': 1.0, 'washable': 1.0, 'enough': 1.0, 'removable': 1.0, 'am': 1.0, 'stroll': 1.0, 'not': 2.0, 'n': 2.0, 'will': 1.0, 'travel': 2.0, 'could': 1.0, 'tiny': 1.0, 'a': 10.0, 's': 5.0, 'we': 3.0, 'say': 1.0, 'without': 2.0, 'can': 2.0, 'past': 1.0, 'less': 1.0, 'mesh': 1.0, 'change': 1.0, 'spouse': 1.0, 'with': 4.0, 'humongous': 1.0, 'time': 1.0, 'son': 1.0, 'you': 8.0, 'able': 1.0, 'when': 1.0, 'sit': 1.0, 'have': 5.0, 'blue': 1.0, 'true': 1.0, 'maneuver': 1.0, 'may': 1.0, 'learning': 1.0, 'my': 5.0, 'managed': 1.0, 'b': 1.0, 'own': 1.0, 'c': 1.0, 'pulling': 1.0, 'wheeled': 1.0, 'pointed': 1.0, 'i': 7.0, 'to': 7.0, 'least': 1.0, 'heavy': 1.0, 'diaper': 1.0, 'as': 2.0, 'stroller': 4.0, 'our': 3.0, 'beige': 1.0, 'device': 1.0, 'the': 12.0, 'of': 8.0, 'traveled': 1.0, 'once': 3.0, 'clunky': 1.0, 'few': 1.0, 'this': 4.0, 'full': 1.0, 'bit': 1.0, 'found': 1.0, 'honestly': 1.0, 'version': 1.0, 'something': 1.0, 'hand': 1.0, 'often': 1.0, 'month': 1.0, 'it': 9.0, 'is': 3.0, 'at': 1.0, 'usefulness': 1.0, 'since': 1.0, 'space': 1.0, 'problems': 1.0, 'easily': 2.0, 'that': 5.0, 'young': 1.0, 'storage': 1.0, 'handy': 1.0, 'for': 1.0, 'no': 2.0, 'years': 1.0, 'and': 8.0, 'couple': 1.0, 'while': 1.0, 'also': 2.0, 'along': 1.0, 'an': 1.0, 'luggage': 1.0, 'other': 1.0, 'using': 1.0, 'bag': 2.0, 'or': 1.0, 'need': 2.0, 'kid': 1.0, 'w': 1.0, 'essentials': 1.0, 'emergency': 1.0, 'clothes': 1.0, 'long': 1.0, 'on': 1.0, 'check': 1.0, 'just': 2.0, 'get': 2.0, 'seat': 3.0, 'in': 5.0, 'regular': 1.0, 'counter': 1.0, 've': 2.0, 'use': 1.0, 'one': 3.0, '2nd': 1.0, 'car': 2.0, 'spending': 1.0, 'others': 1.0, 'virus': 1.0, 'truck': 1.0, 'hang': 1.0, 'o': 1.0, 'laptop': 1.0, 'there': 2.0, 'complete': 1.0, 'most': 1.0, 'back': 2.0, 'limited': 1.0, 'cover': 1.0, 'hauling': 1.0, 'store': 1.0, 'matters': 1.0, 'should': 1.0, 'additionally': 1.0}
Word element => {'in': 1.0, 'up': 1.0, 'can': 1.0, 'so': 1.0, 'adn': 1.0, 'weighs': 1.0, 'old': 1.0, 'years': 1.0, 'pounds': 1.0, '4': 1.0, '24': 1.0, 'is': 1.0, 'great': 1.0, 'and': 2.0, 'air': 1.0, 'car': 1.0, 'pick': 1.0, 'have': 1.0, 'stroller': 1.0, 'she': 1.0, 'easy': 1.0, 'disabilities': 1.0, 'use': 2.0, 'sever': 1.0, 'seat': 1.0, 'daughter': 1.0, 'for': 1.0, 'a': 1.0, 'we': 3.0, 'makes': 1.0, 'combo': 1.0, 'travel': 2.0, 'as': 1.0, 'this': 1.0, 'with': 2.0, 'it': 6.0, 'super': 1.0, 'to': 1.0, 'works': 1.0, 'her': 2.0, 'wheelchair': 1.0}
Word element => {'airport': 1.0, 'buy': 1.0, 'would': 1.0, 'times': 1.0, 'few': 1.0, 'have': 1.0, 'great': 1.0, 't': 1.0, 'the': 1.0, 'less': 1.0, 'expensive': 1.0, 'always': 1.0, 'fold': 2.0, 'unfold': 1.0, 'kinda': 1.0, 'travel': 2.0, 'daily': 1.0, 'this': 2.0, 'only': 1.0, 'and': 2.0, 'thought': 1.0, 'try': 1.0, 'use': 2.0, 'than': 1.0, 'for': 4.0, 'to': 2.0, 'was': 1.0, 'work': 1.0, 'quality': 1.0, 'but': 1.0, 'stroller': 1.0, 'doesn': 1.0, 'car': 1.0, 'not': 1.0, 'seat': 1.0, 'well': 1.0, 'a': 2.0, 'wheel': 1.0, 'them': 1.0, 'out': 1.0}
Word element => {'option': 1.0, 'another': 1.0, 'looking': 1.0, 'returning': 1.0, 'hassle': 1.0, 'time': 1.0, 'go': 1.0, 'since': 1.0, 'seem': 1.0, 'doesn': 1.0, 'frame': 1.0, 'attach': 1.0, 'complete': 1.0, 'unfolds': 1.0, 'strapped': 1.0, 'having': 2.0, 'last': 1.0, 'am': 2.0, 'thing': 1.0, 'situation': 1.0, 'safe': 2.0, 'across': 2.0, 'way': 3.0, 'that': 1.0, 'because': 2.0, 'upset': 1.0, 'around': 1.0, 'every': 1.0, 'still': 1.0, 'mine': 1.0, 'uninstall': 1.0, 'chest': 1.0, 'safely': 1.0, 'be': 3.0, 'enough': 1.0, 'would': 1.0, 'tight': 2.0, 'cannot': 1.0, 'being': 1.0, 'close': 1.0, 'even': 1.0, 'wasn': 1.0, 'once': 1.0, 'from': 2.0, 'seatbelt': 2.0, 'latch': 6.0, 'neck': 1.0, 'she': 1.0, 'upcoming': 1.0, 'her': 3.0, 'reviewer': 1.0, 'my': 4.0, 'for': 3.0, 'out': 1.0, 'used': 1.0, 'goes': 1.0, 'then': 1.0, 'moving': 1.0, 'we': 1.0, 'imagine': 2.0, 'a': 6.0, 's': 1.0, 't': 3.0, 'as': 2.0, 'to': 8.0, 'or': 2.0, 'greatly': 1.0, 'like': 1.0, 'and': 7.0, 'trip': 1.0, 'preparation': 1.0, 'car': 6.0, 'tried': 1.0, 'recommend': 1.0, 'tighten': 1.0, 'i': 12.0, 'husband': 1.0, 'overtop': 1.0, 'will': 1.0, 'travel': 1.0, 'squashing': 1.0, 'remove': 2.0, 'without': 1.0, 'this': 8.0, 'perfect': 1.0, 'of': 2.0, 'the': 25.0, 'doing': 1.0, 'have': 2.0, 'plane': 1.0, 'correctly': 1.0, 'age': 1.0, 'seemed': 1.0, 'comfortable': 2.0, 'big': 1.0, 'are': 1.0, 'you': 2.0, 'push': 1.0, 'one': 1.0, 'too': 1.0, 'lot': 1.0, 'has': 1.0, 'solution': 1.0, 'all': 2.0, 'an': 1.0, 'but': 3.0, 'at': 2.0, 'is': 7.0, 'not': 7.0, 'wrong': 1.0, 'bought': 1.0, 'case': 1.0, 'installed': 1.0, 'installation': 1.0, 'product': 1.0, 'child': 8.0, 'pinning': 1.0, 'they': 1.0, 'level': 1.0, 'harness': 2.0, 'only': 1.0, 'something': 1.0, 'during': 1.0, 'weighs': 1.0, 'no': 1.0, 'about': 1.0, 'stroller': 1.0, 'disappointed': 1.0, 'how': 2.0, 'into': 2.0, 'designed': 2.0, 'with': 1.0, 'seat': 10.0, 'in': 7.0, 'terribly': 1.0, 'previous': 1.0, '25': 1.0, 'strap': 7.0, 'difficult': 1.0, 'down': 1.0, 'on': 1.0, 'any': 1.0, 'your': 4.0, 'what': 1.0, 'when': 1.0, 'was': 6.0, 'lbs': 1.0, 'it': 6.0, 'states': 1.0, 'thought': 1.0, 'already': 2.0, 'also': 1.0, 'kid': 1.0, 'by': 1.0, 'standard': 1.0, 'install': 1.0, 'couldn': 1.0}
Word element => {'holiday': 1.0, 'x': 1.0, 'especially': 1.0, 'doubt': 1.0, 'down': 2.0, 'll': 1.0, 'getting': 1.0, 'little': 2.0, 'your': 1.0, 'on': 2.0, 'time': 1.0, 'so': 1.0, 'boy': 1.0, 'this': 1.0, 'kid': 1.0, 'guess': 1.0, 'without': 1.0, 'ugly': 1.0, 'strapped': 2.0, 'there': 1.0, 'own': 1.0, 'used': 1.0, 'her': 1.0, 'shoulders': 1.0, 'takes': 1.0, 'to': 4.0, 'mas': 1.0, 'as': 1.0, 'daughter': 2.0, 'wheels': 1.0, 'a': 7.0, 'about': 1.0, 'no': 1.0, 'full': 1.0, 'park': 1.0, 'installed': 1.0, 'does': 1.0, 'we': 2.0, 'take': 1.0, 'it': 7.0, 'looks': 1.0, 'she': 2.0, 'really': 1.0, 'second': 1.0, 'around': 1.0, 'nanny': 1.0, 'acceptable': 1.0, 'car': 5.0, 'bought': 1.0, 'since': 1.0, 'look': 2.0, 'is': 4.0, 'at': 1.0, 'seat': 6.0, 'in': 3.0, 'airplane': 1.0, 'could': 1.0, 'will': 1.0, 'our': 3.0, 'stroller': 2.0, 'needing': 1.0, 'style': 1.0, 'that': 3.0, 'pinned': 1.0, 'hannibal': 1.0, 'lector': 1.0, 'be': 1.0, 'funny': 1.0, 'giving': 1.0, 'by': 1.0, 'straps': 2.0, 'are': 1.0, 'necessary': 1.0, 'the': 12.0, 'of': 2.0, 'for': 2.0, 'proper': 1.0, 'special': 1.0, 'over': 1.0, 'functioning': 1.0, 'seats': 1.0, 'but': 3.0, 'la': 1.0, 'like': 2.0, 'care': 1.0, 't': 1.0, 'likes': 1.0, 'what': 1.0, 'roll': 1.0, 'when': 1.0, 'z': 1.0, 'only': 1.0, 'one': 2.0, 'try': 1.0, 'doesn': 1.0, 'airlines': 1.0, 'bit': 1.0, 'writing': 1.0, 'attach': 1.0, 'red': 1.0}
Word element => {'seat': 1.0, 'a': 1.0, 'as': 1.0, 'you': 1.0, 'car': 1.0, 'sice': 1.0, 'cars': 1.0, 'travel': 1.0, 'need': 1.0, 'used': 1.0, 'renting': 1.0, 'and': 2.0, 'specially': 1.0, 'in': 1.0, 'perfect': 1.0, 'to': 1.0, 'airports': 1.0, 'carry': 1.0, 'ships': 1.0, 'for': 2.0, 'one': 1.0, 'i': 1.0, 'thing': 1.0, 'only': 1.0, 'it': 1.0, 'planes': 1.0, 'cruise': 1.0}
Word element => {'during': 1.0, 'impressive': 1.0, 'fingers': 1.0, 'engineering': 1.0, 'watch': 1.0, 'of': 1.0, 'aisle': 1.0, 'wifebarely': 1.0, 'gateresilientlooks': 1.0, 'have': 1.0, 'versatilitydon': 1.0, 'first': 1.0, 'pros': 1.0, 'still': 1.0, 'beating': 1.0, 'taken': 1.0, 'stroller': 2.0, 'down': 3.0, 'highly': 1.0, 'lock': 1.0, 'it': 2.0, 'seatbelt': 1.0, 'standard': 1.0, 'taxi': 1.0, 'for': 1.0, 'dude': 1.0, 'very': 1.0, 'little': 1.0, 'aires': 1.0, 'its': 1.0, 'fly': 1.0, 'buenos': 1.0, 'over': 1.0, 'up': 2.0, 'with': 1.0, 'this': 2.0, 'my': 2.0, 'riding': 1.0, 'hard': 1.0, 'slide': 1.0, 'wife': 1.0, 'trip': 1.0, 'chech': 1.0, 'like': 1.0, 'bit': 1.0, 'piccadilly': 1.0, 'king': 1.0, 'london': 2.0, 'recommended': 1.0, 'has': 2.0, 'and': 6.0, 'into': 1.0, 'south': 1.0, 'home': 1.0, 'kensington': 1.0, 'just': 1.0, 'seen': 1.0, 'stroll': 2.0, 'squeezes': 1.0, 'i': 1.0, 'become': 1.0, 'paris': 1.0, 'on': 1.0, 'the': 11.0, 'tube': 1.0, 'plane': 1.0, 'in': 1.0, 'front': 1.0, 'travel': 1.0, 'use': 1.0, 'earned': 1.0, 'all': 1.0, 'seat': 3.0, 'our': 1.0, 'to': 6.0, 'as': 1.0, 'value': 1.0, 'comfycons': 1.0, 'wheels': 2.0, 'pull': 3.0, 'booster': 1.0, 'lot': 1.0, 'at': 2.0, 'restaurant': 1.0, 'is': 1.0, 'around': 1.0, 't': 1.0, 'going': 1.0, 'a': 7.0, 'go': 1.0, 'carseat': 2.0}
Word element => {'will': 1.0, 'product': 1.0, 'color': 1.0, 'secondly': 1.0, 'stroll': 1.0, 'in': 2.0, 'stroller': 1.0, 'put': 1.0, 'doesn': 1.0, 'is': 2.0, 'now': 1.0, 'to': 1.0, 'i': 6.0, 'and': 2.0, 'get': 1.0, 'have': 4.0, 'usually': 1.0, 'travel': 1.0, 'compact': 1.0, 'home': 1.0, 'competition': 1.0, 'she': 1.0, 'enough': 1.0, 'has': 1.0, 'trunk': 3.0, 'time': 3.0, 'awakened': 1.0, 'option': 1.0, 'space': 2.0, 'car': 1.0, 'asleep': 1.0, 'the': 4.0, 'my': 3.0, 'every': 1.0, 'a': 2.0, 't': 1.0, 'we': 1.0, 'during': 1.0, 'when': 1.0, 'fallen': 1.0, 'you': 1.0, 'by': 1.0, 'just': 1.0, 'be': 1.0, 'engage': 1.0, 'daughter': 1.0, 'wheels': 1.0, 'full': 1.0, 'drive': 1.0, 'this': 2.0, 'wish': 2.0, 'there': 1.0}
Word element => {'there': 1.0, 'needed': 1.0, 'replacements': 1.0, 'but': 1.0, 'handlebars': 1.0, 'pads': 1.0, 'foam': 1.0, 'one': 2.0, 'missing': 1.0, 'home': 1.0, 'arrived': 1.0, 'note': 1.0, 'last': 1.0, 'travel': 1.0, 'be': 1.0, 'company': 1.0, 'only': 2.0, 'sent': 1.0, 'expensive': 1.0, 'service': 1.0, 'if': 2.0, 've': 3.0, 'contraption': 1.0, 'they': 3.0, 'no': 1.0, 'us': 3.0, 'was': 2.0, 'to': 3.0, 'as': 2.0, 'had': 3.0, 'since': 2.0, 'sit': 1.0, 'a': 4.0, 'neat': 1.0, 'go': 1.0, 'for': 2.0, 'very': 2.0, 'stroll': 1.0, 'about': 1.0, 'awesome': 1.0, 'contacted': 1.0, 'even': 1.0, 'used': 3.0, 'muscle': 1.0, 'times': 1.0, 'traveling': 1.0, 'folded': 1.0, 'bucks': 1.0, 'you': 3.0, 'have': 4.0, 'stop': 2.0, 'spending': 1.0, 'many': 2.0, 'mind': 1.0, 'people': 4.0, 'we': 9.0, 'take': 1.0, 'is': 5.0, 'holds': 1.0, 'up': 2.0, 'don': 2.0, 'child': 1.0, 'flight': 1.0, 'on': 3.0, 'any': 2.0, 'your': 1.0, 'from': 2.0, 'seatbelt': 1.0, 'or': 1.0, 'compliment': 1.0, 'buy': 1.0, 'our': 2.0, 'stroller': 4.0, 'just': 1.0, 'and': 9.0, 'so': 1.0, 'ask': 2.0, 'can': 1.0, 'convert': 1.0, 'attention': 1.0, 'the': 11.0, 'of': 4.0, 'picture': 1.0, 'best': 1.0, 'deployed': 1.0, 'with': 3.0, 'nice': 1.0, 'draws': 1.0, 'two': 2.0, 'n': 1.0, 'otherwise': 1.0, 'i': 1.0, 'really': 2.0, 'some': 1.0, 'big': 1.0, 'arm': 1.0, 'while': 1.0, 'seat': 1.0, 'm': 1.0, 'in': 4.0, 'cool': 1.0, 'car': 2.0, 'vendor': 1.0, 't': 2.0, 'taxi': 1.0, 'amazon': 1.0, 'been': 1.0, 'everywhere': 1.0, 'problems': 1.0, 'that': 1.0, 'return': 1.0, 'sure': 1.0, 'good': 1.0, 'which': 1.0, 'gravel': 1.0, 'cobblestones': 1.0, 'kind': 1.0, 'grass': 1.0, 'though': 1.0, 'increases': 1.0, 'thought': 1.0, 'it': 11.0, 'wear': 1.0, 'customs': 1.0, 'should': 1.0, 'tear': 1.0, 'customer': 1.0, 'sitting': 1.0, 'wheels': 1.0, 'this': 1.0}
Word element => {'see': 1.0, 'very': 1.0, 'cute': 1.0, 'get': 1.0, 'theme': 1.0, 'frame': 1.0, 'perfect': 1.0, 'surprises': 1.0, 'went': 1.0, 'is': 1.0, 'with': 1.0, 'our': 1.0, 'no': 1.0, 'you': 2.0, 'what': 2.0}
Word element => {'california': 1.0, 'of': 1.0, 'and': 1.0, 'sun': 1.0, 'off': 1.0, 'on': 1.0, 'easy': 1.0, 's': 1.0, 'snugride': 1.0, 'take': 1.0, 'infant': 1.0, 'have': 1.0, 'other': 1.0, 'filters': 1.0, 'fit': 1.0, 'i': 1.0, 'graco': 1.0, 'us': 1.0, 'carseat': 1.0, 'work': 1.0, 'bright': 1.0, 'a': 2.0, 'is': 2.0, 'product': 1.0, 'to': 2.0, 'no': 1.0, 'shades': 1.0, 'great': 1.0, 'the': 2.0, 'this': 2.0, 'it': 1.0, 'only': 1.0, 'one': 1.0, 'for': 1.0}
Word element => {'we': 1.0, 'so': 1.0, 'is': 1.0, 'cover': 1.0, 'in': 1.0, 'looking': 1.0, 'august': 1.0, 'made': 1.0, 'bedding': 1.0, 'for': 2.0, 'love': 2.0, 'well': 1.0, 'a': 1.0, 'match': 1.0, 'i': 2.0, 'to': 1.0, 'switch': 1.0, 'was': 1.0, 'matches': 1.0, 'our': 2.0, 'nursery': 1.0, 'new': 1.0, 'it': 1.0, 'this': 2.0, 'arrival': 1.0, 'due': 1.0, 'plate': 1.0, 'perfectly': 1.0, 'and': 2.0}
Word element => {'off': 1.0, 'or': 1.0, 'when': 1.0, 'in': 1.0, 'use': 1.0, 'but': 1.0, 'of': 2.0, 'too': 1.0, 'and': 2.0, 'is': 4.0, 'camelot': 1.0, 'see': 1.0, 'the': 2.0, 'i': 1.0, 'beautiful': 2.0, 'other': 1.0, 'perfect': 1.0, 'this': 5.0, 'it': 2.0, 'children': 1.0, 'have': 1.0, 'would': 2.0, 'bathroom': 1.0, 'rooms': 1.0, 'to': 2.0, 'look': 1.0, 'nursery': 1.0, 'even': 1.0, 'child': 1.0, 'night': 1.0, 'them': 1.0, 'a': 2.0, 'we': 1.0, 's': 1.0, 'be': 2.0, 'nice': 1.0, 'light': 1.0, 'just': 1.0, 'not': 1.0, 'very': 1.0, 'pleasant': 1.0, 'course': 1.0, 'helps': 1.0, 'afraid': 1.0, 'at': 1.0, 'like': 1.0, 'dark': 1.0, 'stuff': 1.0, 'on': 1.0}
Word element => {'product': 1.0, 'thinking': 1.0, 'recommend': 1.0, 'well': 2.0, 's': 1.0, 'so': 2.0, 'gate': 3.0, 'anyone': 1.0, 'in': 2.0, 'stuck': 1.0, 'great': 1.0, 'the': 2.0, 'fits': 1.0, 'made': 1.0, 'for': 1.0, 'love': 1.0, 'this': 2.0, 'it': 2.0, 'i': 2.0, 'any': 2.0, 'about': 1.0, 'baby': 1.0, 'buying': 1.0, 'to': 1.0, 'fingers': 1.0, 'never': 1.0, 'would': 1.0, 'and': 2.0, 'get': 1.0, 'anything': 1.0, 'door': 2.0, 'is': 1.0, 'definitely': 1.0}
Word element => {'there': 1.0, 'wish': 1.0, 'has': 1.0, 'than': 1.0, 'opposed': 1.0, 'ergonomic': 1.0, 'were': 1.0, 'together': 1.0, 'top': 1.0, 'gripping': 1.0, 'our': 1.0, 'several': 1.0, 'this': 1.0, 'much': 1.0, 'think': 1.0, 'using': 1.0, 'trying': 1.0, 're': 1.0, 'you': 2.0, 'children': 1.0, 'activate': 1.0, 'prevent': 1.0, 'very': 1.0, 'takes': 2.0, 'thumb': 2.0, 'install': 1.0, 'great': 1.0, 'little': 1.0, 'nice': 1.0, 'stated': 1.0, 'two': 2.0, 'i': 5.0, 'previous': 1.0, 'one': 1.0, 'too': 1.0, '2nd': 1.0, 'even': 1.0, 'asking': 1.0, 'out': 2.0, 'toddlers': 1.0, 'three': 2.0, 'any': 1.0, 'to': 10.0, 'as': 3.0, 'need': 1.0, 'and': 8.0, 'small': 2.0, 'a': 6.0, 's': 2.0, 'go': 1.0, 'cinch': 1.0, 'close': 2.0, 'plate': 1.0, 'day': 1.0, 'for': 4.0, 'like': 1.0, 'cheap': 2.0, 'bottom': 1.0, 'he': 1.0, 'love': 1.0, 'doesn': 1.0, 'was': 1.0, 'reviewers': 1.0, 'gates': 2.0, 'area': 1.0, 'easy': 4.0, 'installattractivedoors': 1.0, 'triggers': 1.0, 'tools': 1.0, 'keep': 2.0, 'makes': 2.0, 'these': 1.0, 'some': 1.0, 'of': 6.0, 'the': 12.0, 'gate': 3.0, 'pull': 1.0, 'by': 4.0, 'just': 1.0, 'themselvescons': 1.0, 'it': 9.0, 'squeeze': 1.0, 'inspect': 1.0, 'handle': 1.0, 'is': 3.0, 'more': 3.0, 'figure': 1.0, 'outlatch': 1.0, 'an': 1.0, 'other': 1.0, 't': 5.0, 'fairly': 1.0, 'require': 1.0, 'trigger': 1.0, 'sturdy': 1.0, 'child': 1.0, 'toddler': 1.0, 'year': 2.0, 'extensions': 1.0, 'sidenot': 1.0, 'mechanism': 1.0, 'on': 1.0, 'with': 2.0, 'purchased': 1.0, 'who': 1.0, 'won': 1.0, 'but': 2.0, 'money': 1.0, 'us': 1.0, 'baby': 2.0, 'defeated': 1.0, 'though': 1.0, 'that': 3.0, 'easily': 2.0, 'old': 2.0, 'fact': 1.0, 'pros': 1.0, 'son': 2.0, 'after': 1.0, 'latch': 1.0, 'don': 1.0, 'isn': 1.0, 'compared': 1.0, 'work': 1.0, 'open': 2.0, 'will': 1.0, 'itself': 1.0, 'which': 3.0, 'from': 1.0, 'feels': 1.0, 'looks': 1.0, 'my': 2.0, 'me': 1.0, 'course': 2.0, 'strength': 1.0, 'can': 1.0, 'so': 1.0, 'opened': 1.0, 'exactly': 1.0, 'waste': 1.0, 'true': 1.0, 'll': 1.0, 'back': 1.0}
Word element => {'drywall': 1.0, 'marring': 1.0, 'without': 1.0, 'very': 1.0, 'but': 1.0, 'where': 1.0, 'paint': 1.0, 'readjust': 1.0, 'to': 1.0, 'needed': 1.0, 'i': 1.0, 'that': 1.0, 'a': 2.0, 'sturdy': 2.0, 'run': 1.0, 'easily': 1.0, 'or': 1.0, 'into': 1.0, 'gate': 1.0, 'instructions': 1.0, 'if': 1.0, 'did': 1.0, 'tot': 1.0, 'and': 1.0, 'wall': 1.0, 'you': 1.0, 'follow': 1.0, 'the': 2.0, 'great': 1.0, 'works': 1.0, 'one': 1.0, 'cableman': 1.0, 'mounted': 1.0, 'handed': 1.0, 'large': 1.0, 'careless': 1.0, 'he': 1.0, 'it': 2.0, 'hard': 1.0, 'enough': 1.0}
Word element => {'highly': 1.0, 'setup': 1.0, 'easy': 1.0, 'is': 1.0, 'super': 1.0, 'would': 2.0, 'how': 2.0, 'don': 1.0, 'fingers': 2.0, 'mentioned': 1.0, 'once': 1.0, 'of': 1.0, 'third': 1.0, 'so': 1.0, 'fit': 1.0, 'combo': 1.0, '10': 1.0, 'also': 1.0, 'extender': 1.0, 'while': 1.0, 'baby': 2.0, 'purchase': 1.0, 'another': 2.0, 'needed': 1.0, 'read': 1.0, 'you': 1.0, 'am': 1.0, 'twins': 1.0, 'way': 1.0, 'it': 1.0, 'month': 1.0, 'planning': 1.0, 'bought': 1.0, 'one': 4.0, 'know': 2.0, 'selected': 1.0, 'i': 9.0, 'old': 1.0, 'many': 1.0, 'said': 1.0, 'their': 1.0, '170': 1.0, 'to': 5.0, 'recommend': 1.0, 'was': 1.0, 'had': 1.0, 'and': 5.0, 'much': 1.0, 'extensions': 1.0, 'do': 2.0, 'finally': 1.0, 'have': 2.0, 'this': 3.0, 'with': 1.0, 'perfectly': 1.0, 'down': 1.0, 't': 1.0, 'a': 5.0, 'chasing': 1.0, '58': 1.0, 'pinch': 1.0, 'inch': 2.0, 'worried': 1.0, 'loved': 1.0, 'then': 1.0, '5': 1.0, 'opening': 1.0, '14': 1.0, 'because': 1.0, 'pinching': 1.0, 'got': 1.0, 'previous': 1.0, 'review': 1.0, 'that': 2.0, 'reviews': 2.0, 'they': 1.0, 'need': 1.0, 'some': 1.0, 'on': 1.0, 'put': 1.0, 'modifications': 1.0, 'gate': 4.0, 'the': 6.0}
Word element => {'getting': 1.0, 'be': 1.0, 'again': 1.0, 'won': 1.0, 'what': 1.0, 'the': 1.0, 'i': 2.0, '4': 1.0, 'costs': 1.0, 'weld': 1.0, 'on': 2.0, 't': 1.0, 'this': 3.0, 'gate': 3.0, 'based': 1.0, 'broke': 1.0, 'was': 1.0, 'after': 1.0, 'months': 1.0, 'surprised': 1.0, 'of': 1.0, 'use': 1.0}
Word element => {'children': 1.0, 'carrying': 1.0, 'are': 1.0, 'necessity': 1.0, 'ways': 1.0, 'open': 2.0, 'should': 1.0, 'he': 1.0, 'daughter': 1.0, 'difficult': 1.0, 'adjust': 1.0, 'gets': 1.0, 'still': 1.0, 'saved': 1.0, 'i': 3.0, 'know': 1.0, 'like': 1.0, 'despite': 1.0, 'top': 1.0, 'warnings': 1.0, 'who': 2.0, 'use': 1.0, '41': 1.0, 'how': 1.0, 'our': 2.0, 'mom': 1.0, 'your': 1.0, 'any': 1.0, 'opened': 1.0, '34': 1.0, 'no': 1.0, 'years': 1.0, 'stairs': 2.0, 'we': 3.0, 'a': 4.0, 't': 4.0, 'could': 1.0, 's': 2.0, 'sizing': 1.0, 'good': 1.0, 'at': 1.0, 'is': 4.0, 'comes': 1.0, 'careful': 1.0, 'to': 4.0, 'job': 1.0, 'have': 1.0, 'all': 1.0, 'an': 1.0, 'up': 2.0, 'opens': 1.0, 'stair': 1.0, 'had': 1.0, 'as': 2.0, 'awkward': 1.0, 'year': 1.0, 'size': 1.0, 'adult': 1.0, 'that': 3.0, 'and': 7.0, '4': 1.0, 'closed': 2.0, 'it': 10.0, 'with': 1.0, 'this': 4.0, 'options': 1.0, 'only': 1.0, 'lot': 2.0, 'one': 1.0, 'always': 1.0, 'has': 1.0, 'get': 1.0, 'want': 1.0, 'baby': 1.0, 'gate': 2.0, 'intuitive': 1.0, 'things': 1.0, 'you': 1.0, 'able': 1.0, 'but': 1.0, 'mischievous': 1.0, 'can': 1.0, '2': 1.0, 'by': 3.0, 'my': 2.0, 'both': 1.0, 'house': 1.0, 'be': 2.0, 'granted': 1.0, 'figure': 1.0, 'out': 1.0, 'down': 1.0, 've': 1.0, 'for': 2.0, '1': 2.0, 'of': 3.0, 'the': 5.0, 'longer': 1.0, 'swings': 1.0, 'way': 1.0, 'not': 1.0, 'itself': 1.0, 'old': 1.0, 'don': 2.0, 'opening': 1.0, 'isn': 1.0, 'gentle': 1.0, 'does': 1.0}
Word element => {'gate': 1.0, 'or': 1.0, 'can': 1.0, 'right': 1.0, 'just': 1.0, 'have': 1.0, 'must': 1.0, 'very': 1.0, 'durable': 1.0, 'with': 1.0, 'doorway': 1.0, 'large': 1.0, 'one': 1.0, 'and': 1.0, 'perfectly': 1.0, 'extra': 1.0, 'our': 1.0, 'seems': 1.0, 'mountings': 1.0, 'extension': 1.0, 'but': 1.0, 'finicky': 1.0, 'pressure': 1.0, 'fits': 1.0, 'made': 1.0, 'salty': 1.0, 'the': 3.0, 'well': 1.0, 'a': 1.0, 'investment': 1.0, 'bit': 1.0, 'to': 1.0, 'be': 2.0, 'worth': 1.0}
Word element => {'future': 1.0, 'in': 1.0, 'spent': 1.0, 'penny': 1.0, 'worth': 1.0, 'keeper': 1.0, 'children': 1.0, 'recommend': 1.0, 'time': 1.0, 'long': 1.0, 'last': 1.0, 'will': 2.0, 'have': 2.0, 'enough': 1.0, 'part': 1.0, 'while': 1.0, 'apart': 1.0, 'matter': 1.0, 'from': 2.0, 'even': 3.0, 'secure': 1.0, 'every': 1.0, 'certainly': 1.0, 'stay': 1.0, 'most': 2.0, 'locks': 1.0, 'out': 1.0, 'small': 1.0, 'a': 5.0, 'go': 1.0, 't': 4.0, 'got': 1.0, 'steps': 2.0, 'those': 1.0, 'closes': 1.0, 'shake': 1.0, 'of': 2.0, 'the': 10.0, 'gate': 1.0, 'place': 1.0, 'get': 3.0, 'sure': 1.0, 'purchase': 1.0, 'accident': 1.0, 'anyone': 1.0, 'and': 9.0, 'can': 3.0, 'so': 2.0, 'after': 1.0, 'walk': 1.0, 'more': 1.0, 'door': 2.0, 'how': 1.0, 'very': 2.0, 'construction': 1.0, 'day': 1.0, 'grandson': 1.0, 'child': 1.0, 'year': 1.0, 'to': 6.0, 'through': 3.0, 'with': 1.0, 'allows': 1.0, 'perfect': 1.0, 'he': 4.0, 'love': 1.0, 'for': 3.0, 'hallway': 1.0, 'where': 1.0, 'well': 1.0, 'i': 6.0, 'two': 1.0, 'swinging': 1.0, 'shaking': 1.0, 'do': 1.0, 'you': 3.0, 'power': 1.0, 'old': 1.0, 'sturdy': 1.0, 'metal': 1.0, 'won': 1.0, 'who': 2.0, 'challenge': 1.0, 'one': 2.0, 'this': 6.0, 'cant': 1.0, 'bought': 1.0, 'is': 3.0, 'easily': 1.0, 'that': 2.0, 'fall': 2.0, 'next': 1.0, 'has': 2.0, 'tries': 2.0, 'keeps': 1.0, 'over': 1.0, 'hard': 2.0, 'open': 1.0, 'no': 1.0, 'purchased': 1.0, 'larger': 1.0, 'don': 1.0, 'opening': 1.0, 'rooms': 1.0, 'want': 1.0, 'it': 10.0, 'him': 2.0, 'all': 1.0, 'other': 1.0, 'an': 1.0, 'areas': 1.0, 'there': 1.0, 'perfectly': 1.0, 'energetic': 1.0, 'durable': 1.0, 'different': 1.0, 'size': 1.0, 'just': 2.0, 'openings': 1.0}
Word element => {'of': 1.0, 'cadillac': 1.0, 'its': 1.0, 'said': 1.0, 'reviewer': 1.0, 'another': 1.0, 'like': 1.0, 'mounted': 1.0, 'get': 1.0, 'for': 1.0, 'im': 1.0, 'upon': 1.0, '4': 1.0, 'i': 1.0, 'too': 1.0, 'this': 1.0, 'it': 2.0, 'with': 1.0, 'before': 1.0, 'used': 1.0, 'have': 2.0, 'settled': 1.0, 'we': 6.0, 'a': 3.0, 'was': 1.0, 'now': 1.0, 'to': 2.0, 'something': 1.0, '43': 1.0, 'gates': 3.0, 'so': 3.0, 'kept': 1.0, 'inch': 1.0, 'stairway': 1.0, 'into': 1.0, 'short': 1.0, 'one': 1.0, 'months': 1.0, 'bought': 1.0, 'barely': 1.0, 'drilling': 1.0, 'were': 1.0, 'just': 1.0, 'because': 1.0, 'great': 1.0, 'the': 2.0, 'second': 1.0, 'couple': 1.0, 'wall': 1.0, 'no': 1.0, 'common': 1.0, 'problems': 1.0, 'glad': 1.0, 'checking': 1.0, 'tried': 1.0, 'wasnt': 1.0, 'looking': 1.0, 'forward': 1.0}
Word element => {'wide': 1.0, 'heartbeat': 1.0, 'again': 1.0, 'overall': 1.0, 'eyes': 1.0, 'due': 1.0, 'happened': 1.0, 'haven': 1.0, 'shut': 1.0, 'helpful': 1.0, 'be': 1.0, 'pull': 1.0, 'one': 1.0, 'good': 1.0, 'which': 1.0, 'me': 1.0, 'my': 3.0, 'annoying': 1.0, 'as': 2.0, 'money': 1.0, 'frequently': 1.0, 'used': 1.0, 'wider': 1.0, 'on': 1.0, 'update': 1.0, 'ridiculously': 1.0, 'just': 1.0, '2': 3.0, 'thing': 1.0, 'taking': 1.0, 'end': 1.0, 'd': 2.0, 'wondered': 1.0, 'especially': 1.0, 're': 1.0, 'you': 1.0, 'when': 2.0, 'lock': 1.0, 'sticky': 1.0, 'use': 1.0, 'watchful': 1.0, 'into': 2.0, 'hasn': 1.0, 'only': 1.0, 'function': 1.0, 'younger': 1.0, 'quality': 1.0, 'maintain': 1.0, 'chose': 1.0, 'but': 2.0, 'abuse': 1.0, 'useful': 1.0, 'setting': 1.0, 'lots': 1.0, 's': 4.0, 'quick': 1.0, 'amazed': 1.0, 'themselves': 1.0, 'top': 1.0, 'choke': 1.0, 't': 4.0, 'kids': 1.0, 'can': 3.0, 'so': 1.0, 'hanging': 1.0, '10': 1.0, 'for': 6.0, 'most': 1.0, 'issue': 1.0, 'particularly': 1.0, 'apart': 1.0, 'relatively': 1.0, 'than': 1.0, 'tear': 1.0, 'get': 2.0, 'baby': 3.0, 'she': 1.0, 'month': 2.0, 'doorway': 3.0, 'it': 19.0, 'up': 4.0, 'set': 1.0, 'break': 1.0, 'or': 2.0, 'out': 2.0, 'tries': 1.0, 'has': 2.0, 'daughter': 1.0, 'recommend': 2.0, 'together': 1.0, 'pinched': 3.0, 'moving': 1.0, 'we': 4.0, 'a': 11.0, 'was': 1.0, 'to': 13.0, 'luck': 1.0, 'our': 1.0, 'gate': 5.0, 'of': 5.0, 'the': 15.0, 'without': 2.0, 'year': 3.0, 'product': 1.0, 'yet': 2.0, 'love': 1.0, 'yes': 1.0, 'tried': 1.0, 'mainly': 2.0, '48': 1.0, 'old': 5.0, 'something': 1.0, 'buy': 2.0, 'close': 1.0, 'mom': 1.0, 'any': 1.0, 'probably': 1.0, 'fingers': 3.0, 'anyone': 1.0, 'and': 11.0, 'if': 2.0, 'still': 4.0, 'course': 1.0, 'there': 1.0, 'at': 2.0, 'is': 8.0, 'highly': 2.0, 'this': 3.0, 'have': 3.0, 'pads': 1.0, 'place': 2.0, 'currently': 1.0, 'm': 1.0, 'in': 6.0, 'rambunctious': 1.0, 'toys': 1.0, 'well': 1.0, 'calls': 1.0, 'i': 8.0, 'down': 1.0, 've': 1.0, 'door': 3.0, 'looking': 1.0, 'swings': 1.0, 'needed': 1.0, 'rings': 1.0, 'regret': 1.0, 'both': 1.0, 'easier': 1.0, 'ways': 1.0, 'fear': 1.0, 'put': 1.0, 'do': 1.0, 'nearby': 1.0, 'not': 2.0, 'ability': 1.0, 'hinged': 1.0, 'those': 1.0, 'because': 1.0, '20': 1.0, 'that': 6.0, 'been': 2.0, 'with': 4.0, 'screw': 2.0, 'great': 3.0, 'spring': 3.0, '5': 3.0, 'eye': 1.0, 'withstand': 1.0, 'easy': 2.0, 'however': 1.0, 'some': 1.0, 'now': 1.0, 'worth': 1.0, 'almost': 1.0, 'items': 1.0, 'getting': 1.0, 'difficult': 1.0, 'makes': 1.0, 'keep': 1.0, 'open': 2.0, 'installing': 1.0, 'ever': 1.0, 'all': 1.0, 'an': 2.0, 'sell': 1.0, 'hook': 1.0, 'wall': 3.0, 'attach': 1.0, 'string': 1.0, 'rather': 1.0, 'like': 1.0, 'also': 1.0, 'us': 1.0, 'hinge': 1.0, 'sturdy': 2.0, 'they': 1.0}
Word element => {'anywhere': 1.0, 'on': 2.0, 'quarter': 1.0, 'won': 1.0, 'bottom': 1.0, 'house': 1.0, 'mounts': 1.0, 'pressure': 1.0, 'flaw': 1.0, 'used': 1.0, 'my': 2.0, 'company': 1.0, 'call': 1.0, 'implied': 1.0, 'be': 3.0, 'with': 1.0, 'round': 1.0, 'included': 1.0, 'ones': 1.0, 'they': 1.0, 'if': 1.0, 'clear': 2.0, 'wasn': 1.0, 'over': 1.0, 'floor': 1.0, 'expand': 1.0, 'so': 1.0, 'an': 1.0, 'any': 1.0, 'to': 5.0, 'opening': 2.0, 'but': 1.0, 'can': 3.0, 'allows': 1.0, '72': 1.0, 'huge': 1.0, 'bought': 1.0, 'it': 2.0, 'separately': 1.0, 'also': 1.0, 'moulding': 1.0, 'length': 1.0, 'in': 2.0, 'fit': 2.0, 'which': 1.0, 'width': 1.0, 'maximum': 3.0, 'are': 1.0, 'flush': 1.0, 'gate': 5.0, 'the': 18.0, 'not': 1.0, 'optional': 1.0, 'baby': 2.0, 'says': 1.0, 'of': 3.0, 'part': 1.0, 'from': 1.0, 'only': 1.0, 'extensions': 3.0, 'you': 1.0, 'because': 2.0, 'dream': 1.0, 'features': 1.0, 't': 3.0, 'a': 3.0, 'inches': 2.0, 'that': 2.0, 'true': 1.0, 'baseboard': 1.0, 'otherwise': 1.0, 'two': 3.0, 'i': 4.0, 'must': 1.0, 'small': 1.0, 'considered': 1.0, 'have': 1.0, 'inch': 1.0, 'confirmed': 1.0, 'instructions': 1.0, 'use': 2.0, 'sold': 1.0, 'description': 2.0, 'and': 1.0, 'at': 1.0, '63': 2.0, 'space': 1.0, 'is': 1.0, 'say': 1.0}
Word element => {'loves': 1.0, 'our': 1.0, 'craftsmanship': 1.0, 'just': 1.0, 'latches': 1.0, 're': 1.0, 'and': 1.0, 'both': 1.0, 'amazing': 1.0, 'install': 1.0, 'of': 1.0, 'no': 1.0, 'gates': 1.0, 'after': 1.0, 'great': 1.0, 'the': 5.0, 'black': 1.0, 'a': 1.0, 'ways': 1.0, 'gate': 3.0, 'too': 1.0, 'swings': 1.0, 'returned': 1.0, 'few': 1.0, 'baby': 1.0, 'to': 1.0, 'selling': 1.0, 'its': 1.0, 'having': 1.0, 'looks': 1.0, 'is': 2.0, 'very': 1.0, 'from': 1.0, 'best': 2.0, 'buy': 2.0, 'joke': 1.0, 'it': 1.0, 'this': 2.0, 'sturdy': 1.0, 'purchase': 1.0, 'easy': 1.0, 'read': 1.0, 'itself': 1.0, 'all': 1.0, 'finish': 1.0, 'family': 1.0, 'reviews': 1.0}
Word element => {'market': 1.0, 'consumer': 1.0, 'best': 1.0, 'probably': 1.0, 'homes': 1.0, 'different': 1.0, 'no': 1.0, 'top': 1.0, 'round': 1.0, 'on': 2.0, 'product': 1.0, 'kit': 2.0, 'is': 4.0, 'see': 1.0, 'with': 1.0, 'drawback': 1.0, 'another': 1.0, 'compatibility': 1.0, 'push': 1.0, 'just': 1.0, 'you': 1.0, 'precisely': 1.0, 'balusters': 1.0, 'specifications': 1.0, 'wanted': 1.0, 'all': 1.0, 'our': 1.0, 'to': 4.0, 'was': 4.0, 'and': 4.0, 'doorways': 1.0, 'color': 1.0, 'one': 1.0, 'close': 1.0, 'drill': 1.0, 'stair': 1.0, 'perfect': 1.0, 'banister': 5.0, 'this': 3.0, 'it': 5.0, 'match': 1.0, 'want': 1.0, 'did': 1.0, 'couldnt': 1.0, 'from': 1.0, 'hard': 1.0, 'looked': 1.0, 'properly': 1.0, 'not': 3.0, 'at': 1.0, 'deal': 1.0, 'gate': 2.0, 'the': 13.0, 'placed': 1.0, 'but': 2.0, 'bottom': 1.0, 'slips': 1.0, 'of': 4.0, 'plus': 1.0, 'latch': 1.0, 'ideal': 1.0, 'considering': 1.0, 'doent': 1.0, 'powder': 1.0, 'parts': 1.0, 'black': 1.0, 'because': 1.0, 'find': 2.0, 'wide': 1.0, 'thinner': 1.0, 'installation': 1.0, 'however': 1.0, 'get': 2.0, 'easy': 1.0, 'big': 1.0, 'nice': 1.0, 'click': 2.0, 'two': 1.0, 'i': 2.0, 'stairs': 2.0, 'we': 3.0, 'a': 2.0, 'could': 2.0}
Word element => {'residue': 1.0, 'sticky': 1.0, 'remove': 1.0, 'alcohol': 1.0, 'used': 1.0, 'either': 1.0, 'affixed': 1.0, 'warning': 1.0, 'hideous': 1.0, 'removing': 1.0, 'about': 1.0, 'part': 1.0, 'assembling': 1.0, 'difficult': 1.0, 'most': 1.0, 'pet': 1.0, 'other': 1.0, 'they': 3.0, 'as': 1.0, 'in': 1.0, 'outsmart': 1.0, 'cannot': 1.0, '15lbs': 1.0, 'also': 1.0, 'it': 8.0, 'individually': 1.0, 'each': 2.0, 'adjust': 1.0, 'cells': 1.0, 'you': 4.0, 'pressure': 1.0, 'like': 1.0, 'way': 2.0, 'assemble': 1.0, 'for': 2.0, 'know': 1.0, 'easy': 1.0, 'love': 1.0, 'bottom': 2.0, 'can': 2.0, 'so': 3.0, 'walls': 1.0, 'blade': 1.0, 't': 1.0, 'from': 1.0, 'more': 1.0, '18lbs': 1.0, 'dogs': 2.0, 'a': 6.0, 'small': 1.0, 'have': 4.0, 'up': 2.0, 'work': 1.0, 'over': 1.0, 'gate': 8.0, 'of': 3.0, 'the': 12.0, 'great': 1.0, 'one': 3.0, 'bought': 1.0, 'i': 6.0, 'two': 3.0, 'even': 1.0, 'took': 1.0, 'razor': 1.0, 'through': 1.0, 'falling': 1.0, 'and': 6.0, 'uneven': 1.0, 'wrong': 1.0, 'long': 1.0, 'step': 1.0, 'purchase': 1.0, 'me': 1.0, 'my': 3.0, 'fact': 1.0, 'was': 4.0, 'to': 8.0, 'stickers': 1.0, 'keep': 1.0, 'configuration': 1.0, 'is': 2.0, 'sits': 1.0, 'at': 2.0, 'every': 1.0, 'if': 1.0, 'are': 4.0, 'owned': 1.0, 'there': 3.0, 'down': 1.0, 'several': 1.0, 'no': 1.0, 'upstairs': 1.0, 'configurations': 1.0, 'set': 2.0, 'this': 2.0, 'few': 1.0, 'why': 1.0, 'just': 1.0, 'mounts': 1.0, 'brains': 1.0, 'what': 1.0, 'figure': 1.0, 'out': 1.0, 'will': 1.0, 'best': 1.0, 'any': 1.0, 'your': 1.0, 'rubbing': 1.0, 'guy': 1.0, 'put': 1.0, 'do': 1.0, 'scenario': 1.0, 'posted': 1.0, 'video': 1.0, 'his': 2.0, 'going': 1.0, 'kid': 1.0, 'getting': 1.0, 'which': 1.0, 'side': 2.0, 'that': 4.0, 'staircase': 1.0, 'because': 1.0, 'with': 1.0, 'secures': 1.0, 'don': 1.0, 'opening': 1.0, 'has': 1.0, 'swing': 1.0, 'trying': 1.0}
Word element => {'drilling': 1.0, 'that': 1.0, 'something': 1.0, 'nice': 1.0, 's': 1.0, 'never': 1.0, 'gates': 1.0, 'pressure': 1.0, 'gets': 1.0, 'daughter': 1.0, 'for': 1.0, 'push': 1.0, 'my': 1.0, 'and': 2.0, 'doesn': 1.0, 'will': 1.0, 'but': 2.0, 'to': 2.0, 'now': 1.0, 'permanent': 1.0, 'require': 1.0, 'open': 1.0, 'as': 1.0, 'trick': 1.0, 'does': 1.0, 'i': 1.0, 'period': 1.0, 'older': 1.0, 'it': 3.0, '13': 1.0, 'holes': 1.0, 't': 1.0, 'great': 1.0, 'the': 1.0, 'currently': 1.0, 'mount': 1.0, 'she': 1.0, 'over': 1.0, 'months': 1.0, 'stronger': 1.0, 'think': 1.0, 'll': 1.0, 'be': 2.0, 'have': 1.0, 'able': 1.0}
Word element => {'open': 1.0, 'for': 1.0, 'go': 1.0, 'to': 2.0, 'need': 1.0, 'me': 1.0, 'easy': 1.0, 'but': 1.0, 'gates': 1.0, 'when': 1.0, 'i': 3.0, 'grandchildren': 1.0, 'they': 1.0, 'these': 1.0, 'about': 1.0, 'never': 1.0, 'are': 1.0, 'my': 1.0, 'so': 1.0, 'worry': 1.0, 'love': 1.0, 'getting': 1.0, 'downstairs': 1.0}
Word element => {'highly': 1.0, 'would': 1.0, 'super': 1.0, 'looking': 1.0, 'concentrate': 1.0, 'enough': 1.0, 'has': 1.0, 'like': 1.0, 'of': 1.0, 'honestly': 1.0, 'on': 2.0, 'but': 1.0, 'straight': 1.0, 'pull': 1.0, 'my': 1.0, 'difficult': 1.0, 'latch': 1.0, 'behind': 1.0, 'shut': 1.0, 'open': 2.0, 'kind': 1.0, 'easy': 2.0, 'down': 2.0, 'perfectly': 1.0, 'opening': 2.0, 'before': 1.0, '5': 1.0, 'room': 1.0, 'proof': 1.0, 'up': 1.0, 'child': 1.0, 'screws': 1.0, 'i': 6.0, 'old': 2.0, 'bought': 1.0, 'much': 1.0, 'shaking': 1.0, 'and': 4.0, 'play': 1.0, 'perfect': 1.0, 'this': 2.0, 'slow': 2.0, 'walk': 1.0, 'door': 1.0, 'he': 5.0, 'month': 1.0, 'it': 13.0, 'with': 2.0, 'the': 6.0, 'gate': 3.0, 'our': 1.0, 'to': 9.0, 'caught': 1.0, 'is': 4.0, 'comes': 1.0, 'nice': 1.0, 'install': 1.0, 'big': 1.0, 'little': 1.0, 'very': 2.0, 'since': 1.0, 'keep': 1.0, 'move': 1.0, 'love': 1.0, 'for': 3.0, 'year': 1.0, 'his': 1.0, 'in': 1.0, 'age': 1.0, 'you': 1.0, '11': 1.0, 'when': 2.0, 'attached': 1.0, 'through': 1.0, 'stands': 1.0, 'that': 2.0, 'next': 1.0, 'recommend': 1.0, 'was': 2.0, 'doesn': 2.0, 'sided': 1.0, 'swings': 1.0, 'secure': 1.0, 'have': 2.0, 'wall': 1.0, 'double': 1.0, 'a': 1.0, 't': 2.0, 's': 1.0, 'tape': 1.0, 'me': 1.0, 'not': 1.0}
Word element => {'installed': 1.0, 'wants': 1.0, 'seance': 1.0, 'make': 1.0, 'all': 1.0, 'not': 1.0, 'broken': 1.0, 'good': 2.0, 'grate': 1.0, 'that': 1.0, 'look': 1.0, 'thank': 1.0, 'they': 1.0, 'are': 1.0, 'and': 2.0, 'gate': 1.0, 'don': 1.0, 'the': 2.0, 't': 1.0, 'is': 4.0, 'reed': 1.0, 'if': 2.0, 'you': 3.0, 'follow': 1.0, 'this': 1.0, 'it': 4.0, 'directions': 2.0, 'but': 1.0, 'work': 1.0, 'extension': 1.0, 'will': 2.0}
Word element => {'carefully': 1.0, 'very': 1.0, 'back': 1.0, 'them': 1.0, 'shipping': 1.0, 'with': 1.0, 'have': 1.0, 'now': 1.0, 'silly': 1.0, 'doorway': 1.0, 'of': 1.0, 'these': 2.0, 'speaking': 1.0, 'don': 1.0, 'incredibly': 1.0, 'fit': 1.0, 'hallway': 1.0, 'stair': 1.0, 'wide': 1.0, 'wider': 1.0, 'i': 3.0, 'me': 1.0, 'and': 3.0, 'but': 1.0, 'work': 1.0, 'fine': 1.0, 'that': 2.0, 'they': 2.0, 'technically': 1.0, 'didn': 1.0, 'measure': 2.0, 'are': 2.0, 'gates': 1.0, 'so': 2.0, 'well': 1.0, 't': 2.0, 'a': 1.0, 'think': 1.0, 'any': 1.0, 'our': 1.0, 'to': 2.0, 'was': 1.0, 'before': 2.0, 'ordering': 2.0, 'sell': 1.0, 'than': 1.0, 'because': 1.0, 'assumed': 1.0, 'no': 1.0, 'doorways': 1.0, 'one': 1.0, 'would': 1.0, 'deal': 1.0, 'the': 1.0, 'gate': 1.0, 'average': 1.0}
Word element => {'straight': 1.0, 'if': 1.0, 'wondering': 1.0, 'really': 1.0, 'husband': 1.0, 'can': 1.0, 'but': 2.0, 'used': 1.0, 'getting': 1.0, 'time': 1.0, 'some': 1.0, 'takes': 1.0, 'in': 1.0, 'push': 1.0, 'have': 1.0, 'you': 1.0, 'secure': 1.0, 'completely': 1.0, 'is': 1.0, 'topple': 1.0, 'won': 1.0, 'it': 2.0, 'knowing': 1.0, 'safe': 1.0, 'feel': 1.0, 'way': 1.0, 'extensions': 1.0, 'trying': 1.0, 'of': 3.0, 'over': 1.0, 'up': 2.0, 'latch': 1.0, 'everywhere': 1.0, 'on': 2.0, 'was': 1.0, 'had': 1.0, 'now': 1.0, 'measured': 1.0, 'girl': 1.0, 'got': 1.0, 'door': 1.0, 'crawling': 1.0, 'course': 1.0, 'herself': 2.0, 'any': 1.0, 'to': 5.0, 'our': 2.0, 't': 1.0, 's': 3.0, 'we': 5.0, 'gate': 4.0, 'the': 5.0, 'bracing': 1.0, 'baby': 2.0, 'installation': 1.0, 'that': 2.0, 'next': 1.0, 'been': 1.0, 'across': 1.0, 'starting': 1.0, 'and': 3.0, 'easy': 1.0, 'researching': 1.0, 'get': 1.0, 'found': 1.0, 'this': 1.0, 'with': 3.0, 'one': 1.0, 'often': 1.0, 'fit': 1.0, 'pull': 1.0, 'daughter': 1.0, 'since': 2.0, 'who': 1.0, 'day': 1.0, 'pulling': 1.0, 'perfectly': 1.0, 'stand': 1.0, 'pulls': 1.0, 'live': 1.0, 'jail': 1.0, 'out': 1.0, 'her': 2.0}
Word element => {'na': 1.0, 'twice': 1.0, 'think': 1.0, 'would': 1.0, 'recommending': 1.0, 'down': 1.0, 'let': 1.0, 'never': 2.0, 'has': 1.0, 'did': 1.0, 'hand': 1.0, 'me': 1.0, 'cats': 2.0, 'not': 2.0, 'easily': 1.0, 'wide': 1.0, 'litter': 1.0, 'to': 3.0, 'with': 1.0, 'it': 1.0, 'is': 4.0, 'want': 1.0, 'type': 1.0, 'my': 3.0, 'entrace': 1.0, 'are': 1.0, 'holes': 1.0, 'the': 5.0, 'gate': 5.0, 'ugly': 1.0, 'over': 1.0, 'best': 1.0, 'i': 3.0, 'so': 2.0, 'top': 1.0, 'needed': 2.0, 'get': 1.0, 'easy': 1.0, 'and': 2.0, 'block': 1.0, 'install': 1.0, 'off': 1.0, 'an': 1.0, 'wooden': 1.0, 'this': 3.0, 'yorkies': 1.0, 'perfect': 1.0, 'in': 1.0, 'about': 1.0, 'no': 1.0, 'wall': 1.0, 'opened': 1.0, 'one': 1.0, 'sturdy': 1.0, 'box': 1.0, 'that': 1.0, 'could': 1.0, 'a': 1.0, 'go': 1.0}
Word element => {'dog': 1.0, 'large': 1.0, 'medium': 1.0, 'works': 1.0, 'also': 1.0, 'hectic': 1.0, 'less': 1.0, 'easier': 1.0, 'life': 1.0, 'mommy': 1.0, 'making': 1.0, 'amazon': 1.0, 'thank': 1.0, 'happy': 1.0, 'couldn': 1.0, 'sturdy': 1.0, 'secure': 1.0, 'very': 2.0, 'above': 1.0, 'from': 1.0, 'hallway': 1.0, 'where': 1.0, 'gate': 5.0, 'the': 5.0, 'of': 3.0, 'muchkin': 1.0, 'nicer': 1.0, 'little': 2.0, 'keep': 2.0, 'climb': 1.0, 'this': 6.0, 'shut': 1.0, 'for': 4.0, '10': 1.0, 'and': 10.0, 'absolutely': 1.0, 'out': 2.0, 'month': 1.0, 'it': 6.0, 'have': 4.0, 'wider': 1.0, 'you': 3.0, 'able': 1.0, 'into': 2.0, 'everything': 1.0, 'modern': 1.0, 'style': 1.0, 'my': 3.0, 'looks': 1.0, 'me': 2.0, 'looking': 1.0, 'close': 3.0, 'to': 9.0, 'our': 1.0, 'opens': 1.0, 'was': 3.0, 'minutes': 1.0, 'run': 1.0, 'old': 1.0, 'a': 6.0, 'we': 2.0, 'fit': 1.0, 't': 2.0, 'if': 2.0, 'propped': 1.0, 'has': 1.0, 'is': 4.0, 'more': 2.0, 'gets': 1.0, 'house': 2.0, 'he': 2.0, 'with': 3.0, 'so': 1.0, 'havoc': 1.0, 'open': 4.0, 'definitely': 1.0, 'think': 2.0, 'an': 1.0, 'adult': 1.0, 'than': 2.0, 's': 1.0, 'maybe': 1.0, 'worked': 1.0, 'having': 1.0, 'easy': 1.0, 'swing': 1.0, 'opening': 1.0, 'don': 1.0, 'doors': 1.0, 'will': 1.0, 'not': 2.0, 'wreak': 1.0, 'itself': 1.0, 'black': 1.0, 'much': 1.0, 'end': 1.0, 'purchase': 1.0, 'function': 1.0, 'sleek': 1.0, 'loves': 1.0, 'white': 1.0, 'need': 2.0, 'be': 2.0, 'i': 5.0, 'well': 2.0, 'putting': 1.0, '48': 1.0, 'free': 1.0, 'together': 1.0, 'took': 1.0, 'that': 2.0, 'everywhere': 1.0, '20': 1.0, 'result': 1.0, 'behind': 1.0, 'rebel': 1.0, 'perfect': 1.0, 'range': 1.0, 'chasing': 1.0, 'gift': 1.0}
Word element => {'or': 1.0, 'one': 1.0, 'am': 1.0, 'is': 1.0, 'little': 1.0, 'my': 1.0, 'so': 1.0, 'sturdy': 1.0, 'then': 1.0, 'furniture': 1.0, 'more': 1.0, 'the': 3.0, 'rearranged': 1.0, 'we': 1.0, 'minutes': 1.0, '10': 1.0, 'demon': 1.0, 'install': 1.0, 'withstood': 1.0, 'get': 1.0, 'and': 4.0, 'could': 1.0, 'like': 1.0, 'two': 1.0, 'at': 1.0, 'once': 1.0, 'i': 3.0, 'buy': 2.0, 'to': 2.0, 'was': 2.0, 'would': 1.0, 'able': 1.0, 'together': 1.0, 'gate': 2.0, 'measured': 1.0, 'very': 1.0, 'outstanding': 1.0, 'arrived': 1.0, 'an': 1.0, 'put': 1.0, 'fit': 1.0, 'looked': 1.0, 'this': 2.0, 'it': 6.0, 'in': 1.0, 'baby': 1.0, 'about': 2.0}
Word element => {'highly': 1.0, 'open': 1.0, 'recommend': 1.0, 'easy': 1.0, 'both': 1.0, 'works': 1.0, 'one': 1.0, 'screws': 1.0, 'extra': 1.0, 'infant': 1.0, 'got': 1.0, 'bend': 1.0, 'i': 2.0, 'swings': 1.0, 'when': 1.0, 'returned': 1.0, 'great': 2.0, 'the': 2.0, 'a': 1.0, 'ways': 1.0, 'gate': 2.0, 'tighten': 1.0, 'tall': 1.0, 'summer': 1.0, 'is': 2.0, 'it': 2.0, 'this': 2.0, 'and': 2.0, 'started': 1.0, 'because': 1.0, 'to': 3.0, 'in': 1.0, 'you': 1.0, 'twisted': 1.0}
Word element => {'attractive': 1.0, 'and': 1.0, 'secure': 1.0, 'side': 1.0, 'positive': 1.0, 'on': 1.0, 'is': 1.0, 'around': 1.0, 'when': 1.0, 'able': 1.0, 'being': 1.0, 'long': 1.0, 'works': 1.0, 'part': 1.0, 'isn': 3.0, 'free': 1.0, 'area': 1.0, 'that': 3.0, 'of': 1.0, 'baby': 2.0, 'intuitive': 1.0, 'prefer': 1.0, 'space': 1.0, 'some': 1.0, 'in': 2.0, 'safety': 1.0, 'described': 1.0, 'another': 1.0, 'don': 1.0, 'it': 4.0, 'first': 1.0, 'this': 1.0, 'open': 2.0, 'i': 4.0, 'the': 8.0, 'gate': 5.0, 'hands': 1.0, 'house': 1.0, 'enough': 1.0, 'for': 2.0, 'bought': 1.0, 'a': 1.0, 't': 4.0, 'we': 1.0, 'guests': 1.0, 'but': 2.0, 'can': 1.0, 'never': 1.0, 'very': 1.0, 'figure': 1.0, 'people': 1.0, 'how': 1.0, 'as': 1.0, 'to': 2.0, 'out': 1.0, 'lifting': 1.0, 'like': 3.0, 'leave': 1.0, 'have': 1.0, 'automatically': 1.0, 'closes': 1.0, 'probably': 1.0}
Word element => {'like': 1.0, 'still': 1.0, 'are': 1.0, 'years': 1.0, '3': 1.0, 'open': 1.0, 'from': 1.0, 'how': 1.0, 'even': 2.0, 'and': 2.0, 'plate': 1.0, 'easy': 1.0, 'they': 1.0, 'puppy': 1.0, 'this': 1.0, 'she': 3.0, 'it': 4.0, 'adult': 1.0, 'keep': 1.0, 'now': 1.0, 'to': 6.0, 'is': 2.0, 'room': 1.0, 'though': 1.0, 'knows': 1.0, 'control': 1.0, 'an': 1.0, 'but': 1.0, 'confined': 1.0, 'bought': 1.0, 'one': 1.0, 'damage': 1.0, 'the': 3.0, 'gate': 1.0, 'for': 1.0, 'assemble': 1.0, 'securing': 1.0, 'some': 1.0, 'had': 1.0, 'thought': 1.0, 'respects': 1.0, 'when': 1.0, 'wall': 1.0, 'have': 1.0, 'important': 1.0, 'takes': 1.0, 'screw': 1.0, 'pressure': 2.0, 'them': 1.0, 's': 1.0, 'we': 1.0, 'new': 1.0, 'each': 1.0, 've': 1.0}
Word element => {'the': 1.0, 'seller': 1.0, 'wish': 1.0, 'to': 1.0, 'problem': 1.0, 'is': 1.0, 'danger': 1.0, 'install': 1.0, 'doesnt': 1.0, 'lord': 1.0, 'their': 1.0, 'in': 1.0, 'sometimes': 1.0, 'entrance': 1.0, 'gave': 1.0, 'daughter': 1.0, 'me': 1.0, 'matter': 1.0, 'and': 1.0, 'monthes': 1.0, '12': 1.0, 'my': 1.0, 'bought': 1.0, 'kitchen': 1.0, 's': 1.0, 'for': 1.0, 'parents': 2.0, 'helpful': 1.0, 'can': 1.0, 'comared': 1.0, 'save': 1.0, 'old': 1.0, 'i': 2.0, 'direction': 1.0, 'hard': 1.0, 'only': 1.0, 'it': 4.0, 'this': 2.0, 'babies': 2.0, 'very': 1.0, 'from': 1.0, 'area': 1.0, 'but': 1.0, 'annoyed': 1.0, 'dangerous': 1.0, 'there': 1.0, 'bathroom': 1.0}
Word element => {'itself': 1.0, 'then': 1.0, 'issue': 1.0, 'shipping': 1.0, 'more': 1.0, 'issues': 1.0, 'door': 1.0, 'so': 1.0, 'ends': 1.0, '4': 1.0, 'stopper': 1.0, 'with': 1.0, '59': 1.0, 'it': 2.0, '49': 1.0, '38': 1.0, 'open': 1.0, 'you': 1.0, 'uses': 1.0, '3': 1.0, 'on': 2.0, 'having': 1.0, 'does': 1.0, 'find': 1.0, 'rubber': 1.0, 'states': 1.0, 'my': 1.0, 'gate': 2.0, 'the': 10.0, 'sizes': 1.0, 'can': 1.0, 'product': 1.0, 'fit': 2.0, 'between': 2.0, 'gates': 2.0, 'this': 1.0, '53': 2.0, 'and': 4.0, 'not': 1.0, 'me': 1.0, 'which': 2.0, 'measurement': 1.0, 'bent': 1.0, 'unfortunately': 1.0, 'was': 5.0, 'leaving': 1.0, 'inwards': 1.0, 'dry': 1.0, 'common': 1.0, 'a': 2.0, 'frame': 1.0, 'problem': 1.0, 'some': 1.0, 'gap': 1.0, 'of': 3.0, 'other': 1.0, 'baby': 1.0, 'extensions': 2.0, 'end': 1.0, 'pet': 1.0, 'high': 1.0, 'were': 1.0, 'pieces': 1.0, 'also': 1.0, 'missing': 1.0}
Word element => {'disappointed': 1.0, 'not': 1.0, 'spend': 1.0, 'ahead': 1.0, 'it': 1.0, 'open': 1.0, 'be': 2.0, 'never': 1.0, 'releasing': 1.0, 'up': 1.0, 'pull': 1.0, 'because': 1.0, 'hand': 1.0, 'his': 1.0, 'on': 1.0, 'put': 1.0, 'knows': 1.0, 'even': 1.0, 'through': 1.0, 'get': 1.0, 'try': 1.0, 'at': 1.0, 'some': 1.0, 'use': 1.0, 'one': 2.0, 'where': 1.0, 'for': 1.0, 'two': 1.0, 'i': 2.0, 'groceries': 1.0, 'of': 2.0, 'have': 2.0, 'able': 1.0, 'wider': 1.0, 'is': 1.0, 'really': 1.0, 'he': 1.0, 'door': 1.0, 'bringing': 1.0, 'well': 1.0, 'top': 1.0, 'definitely': 1.0, 'quite': 1.0, 'go': 1.0, 'a': 1.0, 'stairs': 1.0, 'and': 5.0, 'latch': 2.0, 'worth': 1.0, 'will': 3.0, 'house': 1.0, 'money': 2.0, 'but': 2.0, 'toddler': 1.0, 'last': 1.0, 'gate': 2.0, 'the': 9.0, 'hands': 1.0, 'this': 2.0, 'wish': 1.0, 'was': 1.0, 'to': 5.0, 'time': 1.0, 'bit': 1.0, 'you': 2.0, 'when': 1.0, 'wins': 1.0, 'in': 1.0, 'out': 1.0, 'options': 1.0, 'while': 1.0, 'compared': 1.0, 'other': 1.0, 'll': 1.0, 'down': 1.0, 'my': 1.0}
Word element => {'bottom': 1.0, 'not': 1.0, 'walls': 1.0, 'for': 1.0, 'sometimes': 1.0, 'that': 2.0, 'rattle': 1.0, 'have': 1.0, 'suitable': 1.0, 'likes': 1.0, 'more': 1.0, 'the': 4.0, 'my': 3.0, 'in': 1.0, 'son': 2.0, 'room': 1.0, 'enclosed': 1.0, 'living': 1.0, 'keep': 1.0, 'is': 3.0, 'really': 1.0, 'on': 1.0, 'gate': 3.0, 'sturdy': 1.0, 'use': 1.0, 'advice': 1.0, 'easy': 1.0, 'we': 1.0, 'only': 1.0, 'this': 1.0, 'it': 2.0, 'works': 1.0, 'molding': 1.0, 'to': 3.0, 'was': 1.0, 'install': 1.0, 'do': 1.0, 'and': 1.0, 'a': 1.0, 'well': 1.0, 'rather': 1.0}
Word element => {'doorway': 1.0, 'us': 1.0, 'our': 1.0, 'that': 1.0, 'say': 1.0, 'great': 1.0, 't': 1.0, 'this': 3.0, 'before': 1.0, 'can': 1.0, 'and': 2.0, 'quality': 1.0, 'worked': 1.0, 'very': 1.0, 'i': 2.0, 'for': 1.0, 'love': 1.0, 'one': 1.0, 'high': 1.0, 'is': 2.0, 'gate': 2.0, 'a': 1.0, 'enough': 1.0, 'bought': 1.0, 'lot': 1.0, 'of': 1.0, 'gates': 1.0, 'we': 2.0, 'finally': 1.0, 'got': 1.0}
Word element => {'again': 1.0, 'for': 1.0, 'designed': 1.0, 'very': 1.0, 'being': 1.0, 'enough': 2.0, 'low': 1.0, 'wall': 1.0, 'your': 1.0, 'screws': 1.0, 'no': 1.0, 'mounted': 1.0, 'pressure': 1.0, 'most': 1.0, 'like': 1.0, 'looking': 1.0, 'also': 2.0, 'step': 1.0, 'everyone': 1.0, 'product': 1.0, 'recommend': 1.0, 'worth': 1.0, 'its': 1.0, 'there': 1.0, 'door': 1.0, 'front': 1.0, 'glad': 1.0, 'am': 1.0, 'you': 5.0, 'ones': 1.0, 'one': 1.0, 'decided': 1.0, 'only': 1.0, 'it': 25.0, 'shuts': 1.0, 'month': 1.0, 'cant': 1.0, 'this': 2.0, 'perfect': 1.0, 'about': 3.0, 'in': 5.0, 'months': 1.0, 'get': 2.0, 'itself': 1.0, 'not': 3.0, 'anyone': 1.0, 'and': 10.0, 'time': 1.0, 'normal': 1.0, 'reserching': 1.0, 'opens': 1.0, 'between': 1.0, 'on': 2.0, 'think': 1.0, 'gate': 2.0, 'gates': 2.0, '2': 2.0, 'so': 5.0, 'can': 2.0, 'needed': 1.0, 'fit': 1.0, 'we': 2.0, 'a': 3.0, 'going': 1.0, 'livingroom': 1.0, 'nice': 1.0, 'little': 3.0, 'larger': 1.0, 'is': 8.0, 'mintues': 1.0, 'way': 2.0, 'than': 1.0, 'kitchen': 1.0, 'does': 1.0, 'shildren': 1.0, 'high': 1.0, 'to': 9.0, 'took': 1.0, 'through': 1.0, 'i': 7.0, 'space': 1.0, 'did': 2.0, 'keep': 1.0, 'spent': 1.0, 'go': 1.0, '14': 1.0, 'alot': 1.0, 'penny': 1.0, 'up': 2.0, 'set': 1.0, 'the': 8.0, 'of': 4.0, 'right': 1.0, 'have': 2.0, '1': 1.0, 'great': 3.0, 'other': 1.0, 'an': 1.0, 'put': 1.0, 'scratch': 1.0, 'floor': 2.0, 'climb': 1.0, 'see': 1.0, 'just': 2.0, 'by': 1.0, 'case': 1.0, 'inch': 1.0, 'loves': 1.0, '20': 1.0, 'because': 2.0, 'that': 1.0, 'slip': 1.0, 'need': 1.0, 'or': 1.0, 'something': 1.0, 'bulky': 1.0, 'would': 2.0, 'but': 2.0, 'hardwood': 1.0, 'locks': 1.0, 'shoe': 1.0, 'looks': 1.0, 'me': 1.0, 'my': 1.0, 'old': 1.0, 'son': 1.0, 'yet': 1.0, 'love': 6.0, 'he': 2.0, 'knows': 1.0, 'when': 1.0, 'what': 1.0, 'room': 1.0, 'shut': 1.0, 'still': 2.0, 'every': 1.0, 'if': 3.0, 'want': 1.0, 'which': 1.0, 'good': 1.0, 'hard': 1.0, 'over': 2.0, 'open': 2.0}
Word element => {'than': 1.0, 'better': 1.0, 'but': 1.0, 'safe': 1.0, 'too': 1.0, 'extensions': 1.0, 'p': 1.0, 'sure': 1.0, 'pay': 1.0, 'clothing': 1.0, 'animals': 1.0, 'stuffed': 1.0, 'chewed': 1.0, 'more': 1.0, 'stuck': 1.0, 'are': 1.0, 'conclusion': 1.0, 'know': 1.0, 'that': 2.0, 'again': 1.0, 'minutes': 1.0, '15': 1.0, 'took': 1.0, 'complicated': 1.0, 'set': 1.0, 'side': 1.0, 'bottom': 1.0, 'warning': 1.0, 'mandatory': 1.0, 'months': 1.0, 'except': 1.0, 'items': 1.0, 'beautiful': 1.0, 'dark10': 1.0, 'white': 1.0, 'choices': 1.0, 'color': 1.0, 'little': 1.0, 'two': 1.0, 'though': 1.0, 'adding': 1.0, 'could': 2.0, 'yr': 1.0, 'don': 1.0, 'themselves': 1.0, 'open': 1.0, 'kids': 1.0, 'old': 2.0, '6yr': 1.0, '8': 1.0, 'not': 1.0, 'itself': 2.0, 'multiple': 2.0, '3': 3.0, 'on': 5.0, 'do': 1.0, 'put': 1.0, 'going': 1.0, 'impressed': 1.0, 'make': 1.0, '5': 3.0, 'intro': 1.0, 'miracle': 1.0, 'a': 3.0, 's': 5.0, 'hold': 1.0, 'pros1': 1.0, '54': 1.0, 'w': 1.0, '1': 1.0, 'find': 1.0, 'is': 5.0, 'replaced': 1.0, '10': 1.0, 'for': 7.0, 'hallway': 1.0, '9': 1.0, 'it': 13.0, 'cons1': 1.0, 'this': 2.0, 'perfect': 2.0, 'downstairs': 1.0, 'with': 2.0, 'dogs': 1.0, 'something': 1.0, 've': 2.0, 'gate': 3.0, 'place': 1.0, 'extension': 2.0, 'pressure': 2.0, 'to': 5.0, 'any': 1.0, 'am': 1.0, 'you': 2.0, 'how': 3.0, '6': 1.0, 'been': 1.0, 'stairway': 1.0, 'areas': 1.0, 'see': 1.0, 'own': 1.0, 'off': 1.0, '4': 2.0, 'product': 1.0, 'price': 1.0, 'people': 1.0, 'both': 2.0, 'each': 3.0, 'end': 3.0, 'may': 1.0, 'my': 4.0, 'heard': 1.0, 'wide': 2.0, 'up': 2.0, 'takes': 1.0, '7': 2.0, '2': 2.0, 'an': 1.0, 'other': 1.0, 'like': 1.0, 'care': 1.0, 'works': 2.0, 'tell': 1.0, 'sided': 1.0, 'and': 4.0, 'about': 1.0, 'play': 1.0, 'confirm': 1.0, 'options': 1.0, 'anywhere5': 1.0, 'now': 1.0, 'mildly': 1.0, 'almost': 2.0, 'size': 1.0, 'directions': 1.0, 'in': 4.0, 'drywall': 1.0, 't': 3.0, 'fit': 3.0, 'along': 1.0, 'super': 1.0, 'shuts': 1.0, 'use': 2.0, 'screws': 2.0, 'double': 1.0, 'tape': 1.0, 'stronger': 1.0, 'really': 1.0, 'what': 1.0, 'stickers': 1.0, 'book': 1.0, 'keep': 1.0, 'makes': 1.0, 'metal': 1.0, 'be': 1.0, 'built': 1.0, 'can': 4.0, 'so': 1.0, 'very': 1.0, 'i': 8.0, 'well': 1.0, 'looking': 1.0, 'swings': 1.0, 'years': 1.0, 'no': 3.0, 'or': 2.0, 'need': 1.0, 'studs': 1.0, 'the': 13.0, 'of': 3.0}
Word element => {'recommend': 1.0, 'purchase': 1.0, 'not': 1.0, 'i': 2.0, 'useful': 1.0, 'it': 2.0, 'do': 1.0, 'airports': 1.0, 'in': 1.0, 'this': 2.0, 'the': 2.0, 'highly': 1.0, 'very': 1.0, 'and': 2.0, 'a': 1.0, 'go': 1.0, 'stroller': 1.0, 'perfect': 1.0, 'even': 1.0, 'regret': 1.0, 'must': 1.0, 'is': 2.0, 'on': 1.0}
Word element => {'happy': 1.0, 'in': 1.0, 'cargo': 1.0, 'was': 1.0, 'cup': 1.0, 'had': 1.0, 'its': 1.0, 'although': 1.0, 'baby': 1.0, 'with': 2.0, 'alone': 1.0, 'm': 1.0, 'life': 1.0, 'shoulder': 1.0, 'impossible': 1.0, 'bulky': 1.0, 'heavy': 1.0, 'virtually': 1.0, 'great': 1.0, 'is': 1.0, 'am': 1.0, 'traveling': 1.0, 'when': 1.0, 'folded': 1.0, 'i': 7.0, 'small': 1.0, 'have': 1.0, 's': 1.0, 'a': 5.0, 'canterbury': 1.0, 'check': 1.0, 'all': 2.0, 'to': 4.0, 'size': 1.0, 'system': 2.0, 'however': 1.0, 'basket': 1.0, 'that': 3.0, 'it': 6.0, 'wish': 1.0, 'this': 2.0, 'product': 1.0, 'combi': 1.0, 'love': 2.0, 'for': 1.0, 'and': 4.0, 'me': 1.0, 'flying': 1.0, 'access': 1.0, 'little': 1.0, 'very': 2.0, 'use': 1.0, 'travel': 2.0, 'bought': 1.0, 'laura': 1.0, 'the': 4.0, 'gate': 1.0, 'public': 1.0, 'easier': 1.0, 'well': 1.0, 'ashley': 1.0, 'has': 2.0, 'on': 2.0, 'your': 1.0, 'transportation': 1.0, 'holder': 1.0, 'reason': 1.0, 'served': 1.0, 'while': 1.0, 'super': 1.0, 'carry': 1.0, 'easy': 1.0, 'saver': 1.0, 'strap': 1.0, 'even': 1.0, 'stroller': 1.0}
Word element => {'recommend': 1.0, 'along': 1.0, 'got': 1.0, 'how': 1.0, 'know': 1.0, 'honestly': 1.0, 'be': 1.0, 'easily': 2.0, 'car': 1.0, 'enough': 2.0, 'certainly': 1.0, 'can': 2.0, 'but': 1.0, 'slimmest': 1.0, 'compact': 1.0, 'not': 1.0, 'range': 1.0, 'it': 3.0, 'higher': 1.0, 'much': 1.0, 'as': 2.0, 'to': 2.0, 've': 2.0, 'in': 4.0, 'accessed': 1.0, 'sturdier': 1.0, 'many': 2.0, 'before': 1.0, 'is': 4.0, 'pram': 1.0, 'jogging': 1.0, 'etc': 1.0, 'i': 6.0, 'have': 1.0, 'this': 3.0, 'umbrella': 2.0, 'use': 1.0, 'travel': 2.0, 'short': 1.0, 'or': 1.0, 'fourth': 1.0, 'lightweight': 1.0, 'my': 3.0, 'don': 1.0, 'child': 1.0, 'strollers': 1.0, 'them': 1.0, 'made': 1.0, '9th': 1.0, 'stroller': 1.0, 'some': 1.0, 'reasonably': 1.0, 'of': 3.0, 'sort': 2.0, 'never': 1.0, 'had': 2.0, 'frame': 2.0, 'basket': 1.0, 'avoided': 1.0, 'high': 1.0, 'were': 1.0, 'than': 1.0, 'brands': 1.0, 'because': 1.0, 'they': 1.0, 'without': 1.0, 'the': 3.0, 'ugly': 1.0, 'far': 2.0, 'and': 5.0, 'tall': 2.0, 'too': 1.0, 'price': 1.0, 'm': 1.0, 'light': 1.0, 'large': 2.0, 'by': 1.0, 'we': 1.0, 't': 2.0, 'a': 2.0, 'division': 1.0, 'fit': 1.0, 'combi': 2.0, 'attractive': 1.0, 'handles': 1.0, 'easy': 1.0}
Word element => {'friendly': 1.0, 'user': 1.0, 'durable': 1.0, 'much': 1.0, 'quite': 1.0, 'fold': 1.0, 'not': 1.0, 'had': 2.0, 'as': 1.0, 'to': 2.0, 'flimsy': 1.0, 'a': 2.0, 'makes': 1.0, 'they': 1.0, 'so': 1.0, 'have': 1.0, 'small': 2.0, 'being': 1.0, 'how': 1.0, 'light': 2.0, 'i': 4.0, 'it': 6.0, 'convenient': 1.0, 'with': 1.0, 'kolcraft': 1.0, 'love': 1.0, 'more': 1.0, 'is': 2.0, 'place': 1.0, 'tad': 1.0, 'the': 4.0, 'universal': 1.0, 'very': 1.0, 'and': 4.0, 'folds': 1.0, 'get': 1.0, 'stroller': 1.0, 'some': 1.0, 'struggling': 1.0, 'in': 2.0, 'over': 1.0, 'accessible': 1.0, 'would': 1.0, 'was': 1.0, 'bumps': 1.0, 'recommend': 1.0, 'basket': 1.0, 'that': 1.0, 'extend': 1.0, 'make': 1.0, 'road': 1.0, 'when': 1.0, 'carseat': 2.0, 'carrier': 1.0, 'issues': 1.0, 'though': 1.0, 'did': 1.0}
Word element => {'attached': 1.0, 'the': 1.0, 'difficult': 1.0, 'is': 2.0, 'seat': 1.0, 'good': 1.0, 'value': 1.0, 'for': 1.0, 'your': 1.0, 'or': 1.0, 'basket': 1.0, 'money': 1.0, 'but': 1.0, 'accessibility': 1.0, 'once': 1.0, 'to': 1.0, 'stowage': 1.0, 'infant': 1.0, 'area': 1.0}
Word element => {'use': 1.0, 'want': 1.0, 'make': 1.0, 'these': 1.0, 'none': 1.0, 'handed': 1.0, 'own': 1.0, 'its': 1.0, 'didn': 1.0, 'from': 1.0, 'all': 1.0, 'trying': 1.0, 'than': 1.0, 'way': 1.0, 'that': 1.0, 'replace': 1.0, 'your': 1.0, 'put': 1.0, 'sometimes': 1.0, 'okay': 1.0, 'need': 1.0, 'or': 1.0, '2': 1.0, 'bag': 1.0, 'been': 1.0, 'trunk': 1.0, 't': 1.0, 'fit': 1.0, 'target': 1.0, 'always': 1.0, 'cons': 2.0, 'up': 3.0, 'over': 1.0, 'however': 2.0, 'easy': 1.0, 'finally': 1.0, 'traveling': 1.0, 'when': 4.0, 'go': 1.0, 'sides': 1.0, 's': 5.0, 'maneuverability': 1.0, 'a': 3.0, 'we': 1.0, 'and': 8.0, 'unless': 1.0, 'somewhere': 1.0, 'car': 3.0, 'wail': 1.0, 'snap': 1.0, 'pile': 1.0, 're': 1.0, 'on': 1.0, '3': 2.0, 'me': 1.0, 'my': 4.0, 'bags': 1.0, 'diaper': 1.0, 'bend': 1.0, 'of': 2.0, 'the': 12.0, 'careful': 1.0, 'so': 1.0, 'lightweight': 1.0, 'can': 1.0, 'size': 2.0, 'groceries': 1.0, 'full': 2.0, 'this': 2.0, 'wish': 2.0, 'stroller': 3.0, 'back': 1.0, 'making': 1.0, 'purchased': 1.0, 'had': 1.0, 'easier': 1.0, 'discontinued': 1.0, 'even': 1.0, 'hit': 1.0, 'find': 1.0, 'to': 8.0, 'became': 1.0, 'with': 4.0, 'convenient': 2.0, 'nice': 1.0, 'little': 1.0, 'very': 3.0, 'front': 1.0, 'stuff': 2.0, 'just': 2.0, 'seats': 1.0, 'only': 1.0, 'are': 1.0, 'able': 1.0, 'you': 3.0, 'hoe': 1.0, 'push': 1.0, 'useful': 1.0, 'height': 1.0, 'pushing': 2.0, 'too': 1.0, 'one': 2.0, 'hand': 1.0, 'like': 1.0, 'store': 1.0, 'was': 1.0, 'folds': 1.0, 'baby': 1.0, 'decides': 1.0, 'he': 1.0, '6': 1.0, 'walk': 1.0, 'registry': 1.0, 'gonna': 1.0, 'basket': 2.0, 'pick': 1.0, 'in': 6.0, 'seat': 3.0, 'm': 2.0, 'mind': 1.0, 'both': 1.0, '5': 1.0, 'it': 12.0, 'him': 1.0, '9': 1.0, 'husband': 1.0, 'at': 1.0, 'is': 2.0, 'have': 3.0, 'lift': 1.0, 'also': 1.0, 'well': 1.0, 'i': 9.0, 'feet': 1.0, 'wheels': 1.0, 'bigger': 1.0, 'if': 1.0, 'not': 2.0}
Word element => {'satisfied': 1.0, 'wife': 1.0, 'my': 2.0, 'are': 1.0, 'anyway': 1.0, 'strong': 1.0, 'very': 1.0, 'they': 1.0, 'small': 1.0, 'sometimes': 1.0, 'complain': 1.0, 'guy': 1.0, 'a': 2.0, 'and': 5.0, 'too': 1.0, 'by': 1.0, 'gets': 1.0, 'easily': 1.0, 'stuff': 1.0, 'is': 2.0, 'folded': 1.0, 'be': 1.0, 'compact': 1.0, 'size': 1.0, 'can': 1.0, 'this': 3.0, 'saw': 1.0, 'hospital': 1.0, 'in': 1.0, 'look': 1.0, 'was': 2.0, 'thing': 1.0, 'but': 1.0, 'stroller': 1.0, 'surprised': 1.0, 'think': 1.0, 'tires': 1.0, 'good': 1.0, 't': 1.0, 'the': 2.0, 'baby': 1.0, 'don': 1.0, 'about': 1.0, 'price': 1.0, 'reasonable': 1.0, 'one': 1.0, 'i': 3.0}
Word element => {'great': 1.0, 'family': 1.0, 'instead': 1.0, 'spend': 1.0, 'when': 1.0, 'off': 1.0, 'slogging': 1.0, 'beats': 1.0, 'sure': 1.0, 'easy': 1.0, 'makes': 1.0, 'member': 1.0, 'books': 1.0, 'strollers': 1.0, 'from': 1.0, 'large': 1.0, 'mall': 1.0, 'a': 2.0, 'we': 3.0, 'going': 2.0, 'could': 1.0, 'around': 1.0, 'traffic': 1.0, 'there': 1.0, 'bin': 1.0, 'plus': 1.0, 'diapers': 1.0, 'are': 2.0, 'backroads': 1.0, 'just': 1.0, 'roofs': 1.0, 'underneath': 1.0, 'my': 3.0, 'individual': 1.0, 'move': 1.0, 'to': 9.0, 'as': 1.0, 'brakes': 1.0, 'all': 1.0, 'this': 3.0, 'storage': 1.0, 'likes': 1.0, 'adult': 2.0, 'movies': 1.0, 'old': 3.0, 'purchased': 1.0, 'one': 3.0, 'for': 3.0, 'place': 1.0, '2': 1.0, 'find': 1.0, 'allows': 1.0, 'with': 4.0, '4': 1.0, 'i': 2.0, 'or': 1.0, 'reclining': 1.0, 'real': 1.0, 'and': 5.0, 'having': 1.0, 'worked': 1.0, 'drink': 1.0, 'magnificent': 1.0, '5': 1.0, 'month': 1.0, 'it': 4.0, 'were': 1.0, 'jogs': 1.0, 'shopping': 1.0, 'our': 1.0, 'stroller': 5.0, 'trouble': 1.0, 'wife': 1.0, 'part': 1.0, 'use': 4.0, 'prime': 1.0, 'smoothly': 1.0, 'amazon': 2.0, 'has': 2.0, 'them': 1.0, 'kids': 2.0, 'shipping': 1.0, 'downhill': 1.0, 'help': 1.0, 'rig': 1.0, 'down': 1.0, 'some': 1.0, 'upgrades': 1.0, 'do': 1.0, 'like': 2.0, 'holder': 1.0, 'walks': 1.0, 'nice': 1.0, 'bob': 1.0, 'easily': 2.0, 'that': 1.0, 'is': 3.0, 'ironman': 1.0, 'also': 1.0, 'have': 1.0, 'being': 1.0, 'slow': 1.0, 'very': 1.0, 'time': 1.0, 'wide': 1.0, 'can': 1.0, 'so': 1.0, 'best': 4.0, 'year': 2.0, 'price': 1.0, 'on': 1.0, 'limited': 1.0, 'no': 1.0, 'about': 1.0, 'complaints': 1.0, 'shocks': 1.0, 'was': 1.0, 'paved': 1.0, 'free': 1.0, 'the': 10.0, 'of': 1.0}
Word element => {'now': 2.0, 'what': 1.0, 'different': 1.0, 'made': 1.0, 'seen': 1.0, 'se': 1.0, 'nutshell': 1.0, 'grandma': 1.0, 'per': 1.0, 'in': 2.0, 'daughter': 1.0, 'our': 1.0, 'colors': 1.0, 'bad': 1.0, 'are': 3.0, 'normal': 1.0, 'they': 1.0, 'that': 1.0, 'totally': 1.0, 'wish': 1.0, 'this': 2.0, 'changing': 1.0, 'pictures': 1.0, 'mattress': 1.0, 'by': 1.0, 'light': 1.0, 'nicer': 2.0, 'had': 2.0, 'purchased': 1.0, 'graco': 2.0, 'those': 1.0, 'not': 4.0, 'play': 2.0, 'and': 9.0, 'similar': 1.0, 'tough': 1.0, 'then': 1.0, 'fine': 1.0, 'we': 3.0, 'a': 8.0, 'will': 1.0, 'could': 1.0, 'pros': 1.0, 'at': 1.0, 'is': 6.0, 'more': 1.0, 'compatible': 1.0, 'nice': 1.0, 'yard': 3.0, 'rather': 1.0, 'decision': 1.0, 'great': 1.0, 'option': 1.0, 'grandparents': 1.0, 'use': 2.0, 'but': 2.0, 'music': 1.0, 'comfy': 1.0, 'decor': 1.0, 'be': 1.0, 's': 1.0, 'giving': 1.0, 'out': 1.0, 'convenient': 1.0, 'it': 4.0, 'slept': 1.0, 'well': 1.0, 'i': 6.0, 'down': 1.0, 'one': 2.0, 'lot': 1.0, 'ones': 2.0, 'of': 4.0, 'the': 12.0, 'have': 3.0, 'honest': 1.0, 'except': 1.0, 'housein': 1.0, 'on': 3.0, 'living': 1.0, 'room': 1.0, 'less': 1.0, 'she': 1.0, 'baby': 1.0, 'night': 1.0, 'than': 1.0, 'relatively': 1.0, 'assembly': 1.0, 'was': 1.0, 'bit': 1.0, 'found': 1.0, 'easy': 1.0, 'directions': 1.0, 'known': 1.0, 'were': 1.0, 'low': 1.0, 'feel': 2.0, 'your': 1.0, 'words': 1.0, 'worked': 1.0, 'remote': 1.0, 'very': 2.0, 'cons': 1.0, 'easier': 1.0, 'll': 1.0, 'table': 1.0, 'quite': 1.0, 'sleep': 1.0, 'making': 1.0, 'back': 1.0, 'with': 1.0, 'vibrate': 1.0, 'just': 2.0, 'undetectable': 1.0, 'would': 2.0, 'turn': 1.0, 'gotten': 1.0, 'press': 1.0, 'to': 1.0, 'bassinet': 1.0, 'portion': 1.0, 'thing': 1.0}
Word element => {'perfectly': 1.0, 'meet': 1.0, 'to': 1.0, 'they': 1.0, 'these': 1.0, 'the': 2.0, 'stokke': 1.0, 'next': 1.0, 'is': 1.0, 'sleepi': 1.0, 'worked': 1.0, 'stage': 1.0, 'junior': 1.0, 'bed': 1.0, 'versitile': 1.0, 'we': 1.0, 'needed': 1.0, 'parts': 1.0, 'very': 1.0, 'and': 1.0}
Word element => {'neutral': 1.0, 'boy': 1.0, 'great': 1.0, 'color': 1.0, 'red': 1.0, 'dark': 1.0, 'will': 1.0, 'product': 1.0, '100': 1.0, 'simple': 1.0, 'undown': 1.0, 'can': 1.0, 'directions': 1.0, 'negative': 1.0, 'why': 1.0, 'know': 1.0, 'table': 1.0, 'buy': 1.0, 'didn': 1.0, 'gender': 1.0, 'station': 1.0, 'really': 2.0, 'instructions': 1.0, 'every': 1.0, 'if': 2.0, 'the': 16.0, 'problem': 3.0, 'never': 1.0, 'about': 1.0, 'any': 2.0, 'center': 2.0, 'no': 2.0, 'years': 2.0, 'for': 5.0, 'love': 3.0, 'loved': 2.0, 'godsend': 1.0, 'and': 6.0, 'being': 1.0, 'very': 2.0, 'she': 2.0, 'already': 1.0, 'it': 7.0, 'mobile': 1.0, 'born': 1.0, 'bear': 1.0, 'sides': 3.0, 's': 6.0, 'reviews': 1.0, 'then': 3.0, 'we': 1.0, 'fit': 1.0, 't': 3.0, 'a': 4.0, 'little': 1.0, 'two': 1.0, 'i': 8.0, 'or': 1.0, 'feature': 1.0, 'is': 2.0, 'at': 3.0, 'who': 1.0, 'space': 2.0, 'work': 4.0, '2': 1.0, 'my': 5.0, 'music': 1.0, 'business': 1.0, 'daughter': 2.0, 'wheels': 1.0, 'was': 4.0, 'had': 1.0, 'stuffed': 1.0, 'playpen': 1.0, 'endorse': 1.0, '3': 1.0, 'portable': 1.0, 'on': 1.0, 'playard': 3.0, 'almost': 3.0, 'with': 2.0, 'this': 4.0, 'solely': 1.0, 'removes': 1.0, 'to': 3.0, 'bassinet': 1.0, 'mechanism': 1.0, 'used': 1.0, 'her': 3.0, 'able': 1.0, 'you': 4.0, 'push': 2.0, 'first': 1.0, 'lock': 2.0, 'are': 2.0, 've': 1.0, 'down': 2.0, 'girl': 1.0, 'come': 1.0, 'especially': 1.0, 'there': 3.0, 'perfectly': 2.0, 'have': 2.0, 'people': 1.0, 'don': 2.0, 'absolutely': 2.0, 'understand': 1.0, 'how': 1.0, 'modern': 1.0, 'physics': 1.0, 'ones': 1.0, 'easily': 1.0, 'that': 2.0, 'because': 1.0, 'own': 2.0, 'nap': 1.0, 'area': 1.0, 'sleep': 1.0, 'locking': 1.0, 'limited': 2.0, 'functioned': 1.0, 'nightlight': 1.0, 'box': 1.0, 'changing': 2.0, 'way': 1.0, 'lulled': 1.0, 'day': 1.0, 'since': 1.0, '1': 2.0, 'read': 2.0, 'end': 1.0, 'as': 1.0, 'diaper': 1.0}
Word element => {'changing': 1.0, 'recommend': 1.0, 'unit': 1.0, 'get': 1.0, 'if': 1.0, 'pad': 1.0, 'enough': 1.0, 'seems': 1.0, 'bottom': 2.0, 'you': 1.0, 'easily': 1.0, 'works': 1.0, 'do': 2.0, 'pack': 1.0, 'graco': 1.0, 'babygo': 2.0, 'daughter': 1.0, 'gotten': 1.0, 'couple': 1.0, 'panels': 1.0, 'does': 1.0, 'months': 1.0, '4': 1.0, 'on': 2.0, 'and': 5.0, 'starting': 1.0, 'would': 1.0, 'after': 1.0, 'which': 2.0, 'this': 1.0, 'mattress': 1.0, 'wish': 1.0, 'for': 1.0, 'great': 1.0, 'comfortable': 1.0, 'registered': 1.0, 'really': 1.0, 'received': 1.0, 'without': 1.0, 'the': 7.0, 'more': 1.0, 'gift': 1.0, 'flat': 1.0, 'have': 1.0, 'evenflo': 1.0, 'it': 3.0, 'has': 1.0, 'sturdier': 1.0, 'safe': 1.0, 'rigid': 1.0, 'bassinet': 2.0, 'sag': 1.0, 'isn': 1.0, 'frustrates': 1.0, 'trips': 1.0, 'who': 1.0, 'we': 4.0, 't': 1.0, 'a': 4.0, 's': 1.0, 'as': 1.0, 'our': 1.0, 'to': 1.0, 'roll': 1.0, 'or': 1.0}
Word element => {'again': 1.0, 'from': 1.0, 'never': 1.0, 'evenflo': 1.0, 'buy': 1.0, 'i': 1.0, 'broke': 1.0, 'chance': 1.0, 'of': 1.0, 'not': 1.0, 'middle': 1.0, 'will': 2.0, 'is': 3.0, 't': 1.0, 'the': 3.0, 'anything': 1.0, 'yard': 1.0, 'product': 1.0, 'had': 1.0, 'to': 1.0, 'lock': 1.0, 'horrible': 2.0, 'and': 1.0, 'play': 1.0, 'we': 1.0, 'haven': 1.0, 'part': 1.0, 'even': 1.0, 'already': 1.0, 'use': 1.0, 'this': 1.0, 'it': 3.0}
Word element => {'call': 1.0, 'receive': 1.0, 'to': 1.0, 'emails': 1.0, 'voicemails': 1.0, 'so': 1.0, 'fault': 1.0, 'also': 2.0, 'them': 2.0, 'through': 1.0, '2nd': 1.0, 'did': 2.0, 'the': 8.0, 'in': 1.0, 'after': 3.0, 'else': 1.0, 'not': 4.0, 'together': 1.0, 'amazon': 1.0, 'use': 2.0, '2': 1.0, 'policy': 1.0, 'email': 1.0, 'already': 1.0, 'holds': 1.0, 'uses': 1.0, 'happened': 1.0, 'when': 1.0, 'i': 7.0, 'couple': 1.0, 'shopping': 1.0, 'really': 1.0, 'course': 2.0, 'broke': 1.0, 'at': 1.0, 'since': 2.0, 'return': 4.0, 'a': 3.0, 'like': 1.0, 'contacted': 1.0, 'zipper': 1.0, '30': 1.0, 'this': 2.0, 'it': 1.0, 'bag': 2.0, 'babyage': 1.0, 'on': 1.0, 'except': 1.0, 'used': 1.0, 'that': 2.0, 'do': 1.0, 'end': 1.0, 'of': 3.0, 'day': 1.0, 'and': 3.0, 'break': 1.0, 'purchased': 1.0, 'had': 1.0, 'recommend': 1.0, 'was': 2.0, 'product': 2.0, 'how': 1.0, 'would': 2.0, 'or': 1.0, 'seller': 2.0, 'buggybagg': 1.0, 'cart': 1.0, 'accept': 1.0}
Word element => {'completes': 1.0, 's': 1.0, 'son': 1.0, 'our': 1.0, 'we': 1.0, 'bought': 1.0, 'match': 1.0, 'nursery': 1.0, 'collection': 1.0, 'valance': 1.0, 'look': 1.0, 'for': 1.0, 'in': 1.0, 'to': 1.0, 'the': 3.0, 'this': 2.0, 'other': 1.0, 'and': 1.0, 'items': 1.0, 'bay': 1.0, 'turtle': 1.0}
Word element => {'worth': 1.0, 'price': 1.0, 'but': 1.0, 'zoo': 1.0, 'strolls': 1.0, 'long': 1.0, 'would': 1.0, 'where': 1.0, 'push': 1.0, 'through': 1.0, 'make': 1.0, 'handles': 1.0, 'the': 3.0, 'for': 3.0, 'beneficial': 1.0, '3': 1.0, 'different': 1.0, 'think': 1.0, 'or': 1.0, 'quite': 1.0, 'and': 2.0, '1': 1.0, 'year': 1.0, 'worked': 1.0, 'have': 2.0, 'similar': 1.0, 'purchased': 1.0, 'this': 2.0, 'it': 4.0, 'affordable': 1.0, 'angle': 1.0, 'old': 1.0, 'i': 4.0, 'see': 1.0, 'a': 3.0, 'well': 2.0, 'to': 3.0, 'was': 2.0, 'can': 1.0, 'seen': 1.0, 'be': 1.0, 'strollers': 1.0, 'something': 1.0, 'easier': 1.0, 'that': 1.0}
Word element => {'bedrail': 1.0, 'time': 1.0, 'what': 1.0, 'ready': 1.0, 'comes': 1.0, 'is': 1.0, 'rail': 1.0, 'brus': 1.0, 'went': 1.0, 'then': 1.0, 'about': 1.0, 'don': 1.0, 'broken': 1.0, 'bed': 1.0, 'arrived': 1.0, 'out': 1.0, 'rails': 1.0, 'one': 1.0, 'summer': 1.0, 'though': 1.0, 'in': 1.0, 'cannot': 1.0, 've': 1.0, 'having': 1.0, 'down': 1.0, 'this': 1.0, 'perfect': 1.0, 'mattress': 1.0, 'simple': 1.0, 'pushes': 1.0, 'adult': 1.0, 'worst': 1.0, 'not': 1.0, 'me': 1.0, 'and': 4.0, 'too': 1.0, 'box': 1.0, 'that': 2.0, 'gave': 1.0, 'we': 1.0, 't': 1.0, 'a': 3.0, 's': 1.0, 'trying': 1.0, 'with': 3.0, 'only': 1.0, 'large': 1.0, 'assemble': 1.0, 'it': 5.0, 'looks': 1.0, 'an': 1.0, 'but': 1.0, 'work': 1.0, 'at': 1.0, 'option': 1.0, 'all': 1.0, 'waist': 1.0, 'to': 4.0, 'install': 1.0, 'nice': 1.0, 'think': 1.0, 'on': 2.0, 'the': 9.0, 'impossible': 1.0, 'got': 1.0, 'even': 2.0, 'picture': 1.0, 'way': 1.0, 'sit': 1.0, 'kid': 1.0, 'when': 1.0, 'seen': 1.0, 'babyage': 1.0, 'customer': 1.0, 'credit': 1.0, 'service': 1.0, 'i': 1.0, 'ever': 1.0, 'double': 1.0, 'they': 1.0, 'of': 4.0, 'was': 1.0, 'store': 1.0}
Word element => {'convincing': 1.0, 'performance': 1.0, 'have': 1.0, 'they': 1.0, 'work': 1.0, 'no': 1.0, 'be': 1.0, 'surely': 1.0, 'their': 2.0, 'kids': 1.0, 'pleased': 1.0, 'up': 1.0, 'keeping': 1.0, 'rollerblading': 1.0, 'jogging': 1.0, 'need': 2.0, 'but': 2.0, 'runner': 1.0, '169': 1.0, 'ebay': 1.0, 'wheeled': 1.0, 'out': 1.0, 'worth': 1.0, 'holding': 1.0, 'buy': 1.0, 'hand': 2.0, 'one': 1.0, 'in': 2.0, 'very': 1.0, 'single': 1.0, 'distance': 1.0, 'little': 1.0, 'money': 1.0, 'amazing': 1.0, 'bikes': 1.0, 'jogger': 3.0, 'around': 1.0, 'say': 1.0, 'holds': 1.0, 'you': 6.0, 'city': 1.0, 'stroller': 2.0, 'rooms': 1.0, 'run': 1.0, 'fact': 1.0, 'do': 1.0, '16': 1.0, 'wasting': 1.0, 'storage': 1.0, 'stear': 1.0, 'turns': 1.0, 'bulky': 1.0, 'not': 3.0, 'easily': 1.0, 'that': 4.0, 'was': 1.0, 'unmaneuverable': 1.0, 'as': 1.0, 'all': 2.0, 'while': 1.0, 'from': 1.0, 'once': 1.0, 'owned': 1.0, 'accessable': 1.0, 'the': 8.0, 'of': 4.0, 'pounds': 1.0, 'and': 6.0, 'get': 3.0, 'baby': 2.0, 'folds': 1.0, 'away': 1.0, 'system': 1.0, 'long': 1.0, 'on': 5.0, 'therefore': 1.0, 'your': 3.0, 'threw': 1.0, 'video': 1.0, 'child': 1.0, 'moneys': 1.0, 'low': 1.0, 'before': 1.0, 'with': 3.0, 'red': 1.0, 'older': 1.0, 'useless': 1.0, 'website': 1.0, 'my': 1.0, 'looks': 1.0, 'another': 1.0, 'researched': 1.0, 'series': 1.0, 'walking': 1.0, 'childs': 1.0, 'areas': 1.0, 'are': 1.0, 'quite': 1.0, 'immediately': 1.0, 'ample': 1.0, 'i': 6.0, 'well': 1.0, 'dressing': 1.0, 'it': 5.0, '75': 1.0, 'further': 1.0, 'to': 2.0, 'high': 2.0, 'pretty': 1.0, 'dime': 1.0, 'is': 1.0, 'at': 1.0, 'handed': 1.0, 'joggers': 1.0, 'a': 7.0, 'mall': 1.0, 'pull': 1.0, 'mention': 1.0, '00': 1.0, 'sportscar': 1.0, 'can': 2.0, 'so': 2.0, 'speed': 1.0, 'for': 4.0, 'still': 1.0, 'if': 2.0, 'turn': 1.0, 'stoller': 1.0, 'its': 1.0, 'stollers': 1.0, 'best': 1.0, 'this': 4.0, '0': 1.0, 'could': 2.0, 'travel': 1.0, 'will': 2.0}
Word element => {'lol': 1.0, 'do': 1.0, 'gardvti': 1.0, 'was': 1.0, 'which': 1.0, 'loved': 1.0, 'my': 1.0, 'me': 1.0, 'get': 1.0, 'very': 1.0, 'during': 1.0, 'pregnancy': 1.0, 'these': 1.0, 'they': 1.0, 'helped': 1.0, 'pillows': 1.0, 'comfortable': 1.0}
Word element => {'though': 1.0, 'bags': 1.0, 'separate': 1.0, 'wants': 1.0, 'who': 1.0, 'on': 1.0, 'stroller': 1.0, 'work': 1.0, 'a': 2.0, 'and': 1.0, 'as': 2.0, 'if': 1.0, 'comfortably': 1.0, 'bag': 2.0, 'carry': 1.0, 'that': 1.0, 'were': 1.0, 'love': 1.0, 'this': 1.0, 'it': 3.0, 'would': 2.0, 'however': 1.0, 'flipped': 1.0, 'i': 1.0, 'the': 2.0, 'many': 1.0, 'is': 1.0, 'side': 1.0, 'around': 1.0, 'top': 1.0, 'designed': 1.0, 'too': 1.0, 'long': 1.0, 'was': 1.0, 'to': 1.0}
Word element => {'you': 1.0, 'fall': 1.0, 'actually': 1.0, 'get': 1.0, 'getting': 1.0, 'can': 1.0, 'kid': 1.0, 'if': 1.0, 'hand': 1.0, 'i': 1.0, '3x': 1.0, 'love': 1.0, 'one': 1.0, 'after': 1.0, 'so': 1.0, 'have': 1.0, 'your': 1.0, 'they': 1.0, 'asleep': 1.0, 'to': 2.0, 'takes': 1.0, 'a': 1.0, 'little': 1.0, 'use': 1.0, 'but': 1.0, 'it': 1.0, 'this': 1.0, 'with': 1.0}
Word element => {'highly': 1.0, 'would': 1.0, 'i': 1.0, 'in': 1.0, 'comfortable': 1.0, 'my': 1.0, 'baby': 1.0, '5': 1.0, 'old': 1.0, 'loves': 1.0, 'month': 1.0, 'it': 3.0, 'recommend': 1.0, 'he': 1.0, 'cute': 1.0, 'is': 1.0, 'so': 1.0}
Word element => {'gift': 1.0, 'shower': 1.0, 'baby': 1.0, 'buying': 1.0, 'do': 1.0, 'item': 1.0, 'will': 2.0, 'says': 1.0, 'just': 1.0, 'be': 1.0, 'him': 1.0, 'helped': 1.0, 'balance': 1.0, 'his': 1.0, 'side': 1.0, 'many': 1.0, 'people': 1.0, 'adjustable': 1.0, 'the': 1.0, 'was': 2.0, 'all': 1.0, 'as': 2.0, 'to': 1.0, 'gotten': 1.0, 'this': 2.0, 'and': 4.0, 'sold': 1.0, 'each': 1.0, 'one': 2.0, 'prop': 1.0, 'i': 4.0, 'shopping': 1.0, 'friends': 1.0, 'time': 1.0, 'they': 1.0, 'researched': 1.0, 'easy': 1.0, 'pillows': 1.0, 'on': 3.0, 'it': 7.0, 'covers': 1.0, 'learning': 1.0, 'some': 1.0, 'cart': 1.0, 'quite': 1.0, 'compliments': 1.0, 'what': 1.0, 'purchased': 1.0, 'me': 1.0, 'wow': 1.0, 'a': 1.0, 's': 2.0, 'really': 1.0, 'amazing': 1.0, 'have': 1.0, 'sooo': 1.0, 'ask': 1.0, 'for': 2.0, 'where': 1.0, 'when': 1.0, 'pregnant': 1.0, 'can': 1.0, 'very': 1.0, 'up': 1.0, 'wash': 1.0, 'purchase': 1.0, 'my': 3.0, 'son': 1.0, 'still': 1.0}
Word element => {'good': 1.0, 'negatives': 1.0, 'absolutely': 1.0, 'many': 1.0, 'no': 1.0, 'at': 1.0, 'alot': 1.0, 'storage': 1.0, 'naps': 1.0, 'out': 1.0, 'very': 1.0, 'from': 1.0, 'she': 1.0, 'on': 2.0, 'this': 2.0, 'granddaughter': 1.0, 'one': 1.0, 'for': 1.0, 'love': 2.0, 'i': 1.0, 'shopped': 1.0, 'and': 2.0, 'choice': 2.0, 'my': 2.0, 'the': 3.0, 'nice': 1.0, 'pillows': 1.0, 'all': 1.0, 'worn': 1.0, 'shopping': 1.0, 'also': 1.0, 'we': 2.0, 'daughter': 1.0, 'when': 1.0, 'attached': 1.0, 'toys': 1.0}
Word element => {'anymore': 1.0, 'without': 1.0, 'house': 1.0, 'our': 1.0, 'leave': 1.0, 'going': 1.0, 'when': 1.0, 'one': 1.0, 'true': 1.0, 'it': 1.0, 'with': 1.0, 'this': 1.0, 'the': 1.0, 't': 1.0, 'a': 1.0, 'europe': 1.0, 'don': 1.0, 'been': 1.0, 'little': 1.0, 'every': 1.0, 'shopping': 2.0, 'has': 1.0, 'cart': 1.0, 'fits': 1.0, 'even': 1.0, 'in': 2.0, 'lifesaver': 1.0, 'we': 1.0}
Word element => {'with': 1.0, 'work': 1.0, 'not': 1.0, 'handle': 1.0, 'this': 1.0, 'around': 1.0, 'works': 1.0, 'great': 1.0, 'but': 1.0, 'the': 2.0, 'type': 1.0, 'main': 1.0, 'that': 1.0, 'velcro': 1.0, 'attaches': 1.0, 'every': 1.0, 'will': 1.0, 'cart': 2.0}
Word element => {'stroller': 1.0, 'with': 1.0, 'dealing': 1.0, 'or': 1.0, 'through': 1.0, 'carrying': 1.0, 'than': 1.0, 'thought': 1.0, 'not': 1.0, 'of': 1.0, 'shower': 1.0, 'else': 1.0, 'get': 1.0, 'm': 1.0, 'provides': 1.0, 'padding': 1.0, 'sometimes': 1.0, 'back': 1.0, 'head': 2.0, 'her': 2.0, 'about': 1.0, 'baby': 3.0, 'often': 1.0, 'my': 1.0, 'protection': 1.0, '7': 1.0, 'but': 1.0, 'can': 1.0, 'size': 1.0, 'supported': 1.0, 'up': 1.0, 'sit': 1.0, 'walmart': 1.0, 'something': 1.0, 'would': 1.0, 'sides': 1.0, 'i': 3.0, 'old': 1.0, 'who': 1.0, 'gonna': 1.0, 'anyone': 2.0, 'seems': 1.0, 'in': 1.0, 'that': 1.0, 'been': 1.0, 'using': 1.0, 'for': 3.0, 'presents': 1.0, 'comfortable': 1.0, 'perfect': 1.0, 'this': 3.0, 'as': 1.0, 'to': 3.0, 'now': 1.0, 'store': 1.0, 'recommend': 1.0, 'easier': 1.0, 'likes': 1.0, 'has': 2.0, 'shopping': 2.0, 'cart': 1.0, 'and': 3.0, 'unlike': 1.0, 'truly': 1.0, 'month': 2.0, 'it': 4.0, 'she': 2.0, 'covers': 1.0, 'other': 1.0, 'go': 1.0, 'a': 4.0, 's': 4.0, 'cushioned': 1.0, 'got': 1.0, 'the': 3.0, 'completely': 1.0, 'is': 1.0, 'throw': 1.0}
Word element => {'well': 1.0, 'be': 1.0, 'will': 1.0, 'using': 1.0, 'know': 1.0, 'am': 1.0, 'in': 1.0, 'comfy': 1.0, 'it': 2.0, 'looks': 1.0, 'from': 1.0, 'ask': 1.0, 'people': 1.0, 'everywhere': 1.0, 'with': 2.0, 'returns': 1.0, 'easy': 1.0, 'them': 1.0, 'costco': 1.0, 'shop': 1.0, 'carts': 1.0, 'larger': 1.0, 'always': 2.0, 'return': 1.0, 'sit': 1.0, 'as': 1.0, 'to': 3.0, 'was': 2.0, 'just': 2.0, 'because': 2.0, 'me': 1.0, 'not': 1.0, 'and': 3.0, 'so': 1.0, 'time': 1.0, 'shopping': 2.0, 'happy': 1.0, 'cart': 5.0, 'i': 8.0, 'beyond': 1.0, 'roughly': 1.0, 'learning': 2.0, 'support': 1.0, 'months': 1.0, 'bought': 2.0, 'the': 4.0, 'great': 1.0, 'sitting': 1.0, '2': 1.0, 'ones': 1.0, 'my': 2.0, 'this': 4.0, 'where': 1.0, 'fit': 1.0, 'for': 2.0, 'daughter': 2.0, 'is': 2.0, 'side': 1.0, 'of': 1.0, 'amazon': 1.0, 'wonderful': 1.0, 'about': 1.0, 'pillows': 1.0, 'next': 1.0, 'that': 3.0, 'their': 1.0, 'help': 1.0, 'a': 1.0, 'over': 1.0, 'child': 2.0, 'still': 1.0, 'how': 1.0, 'who': 2.0, 'at': 1.0, 'keep': 1.0, 'cover': 3.0, 'balance': 1.0, 'had': 1.0, 'purchased': 2.0, '5': 1.0, 'before': 1.0, 'target': 1.0, 'other': 1.0, 'would': 1.0}
Word element => {'that': 1.0, 'can': 1.0, 'cheaper': 1.0, 'gift': 1.0, 'bought': 1.0, 't': 1.0, 'the': 1.0, 'for': 1.0, 'love': 1.0, 'a': 2.0, 'covers': 1.0, 'as': 1.0, 'and': 2.0, 'beat': 1.0, 'wanted': 1.0, 'shower': 1.0, 'it': 3.0, 'this': 2.0, 'price': 1.0, 'baby': 1.0, 'they': 2.0, 'cart': 1.0, 'i': 2.0, 'here': 1.0, 'is': 2.0, 'luxury': 1.0, 'got': 1.0, 'of': 1.0, 'exactly': 1.0, 'what': 1.0}
Word element => {'own': 1.0, 'on': 1.0, 'entirely': 1.0, 'in': 2.0, 'yet': 1.0, 'for': 1.0, 'use': 1.0, 'easy': 1.0, 'to': 2.0, 'old': 1.0, 'simple': 1.0, 'sit': 1.0, 'and': 2.0, 'quite': 1.0, 'his': 1.0, 'works': 1.0, 'month': 1.0, 'put': 1.0, 'up': 1.0, 'cant': 1.0, '6': 1.0, 'is': 1.0, 'really': 1.0, 'this': 2.0, 'great': 2.0, 'the': 2.0, 'my': 1.0, 'cart': 2.0, 'who': 1.0}
Word element => {'absolutely': 1.0, 'room': 1.0, 'much': 1.0, 'take': 1.0, 'restaurants': 1.0, 'this': 2.0, 'both': 1.0, 'pocket': 1.0, 'inside': 1.0, 'where': 1.0, 'girl': 1.0, 'or': 2.0, 'a': 2.0, 'for': 1.0, 'used': 1.0, 'can': 2.0, 'color': 1.0, 'super': 1.0, 'green': 1.0, 'attached': 1.0, 'permanently': 1.0, 'nice': 1.0, 'two': 1.0, 'as': 1.0, 'leave': 1.0, 'also': 2.0, 'like': 1.0, 'hold': 1.0, 'removed': 1.0, 'while': 1.0, 'perfect': 1.0, 'seemed': 1.0, 'big': 1.0, 'toys': 2.0, 'started': 1.0, 'baby': 1.0, 'just': 3.0, 'straps': 1.0, 'carts': 1.0, 'fit': 1.0, 't': 1.0, 'could': 2.0, 'propped': 1.0, 's': 1.0, 'however': 1.0, 'my': 4.0, 'bauer': 2.0, 'cover': 4.0, 'any': 1.0, 'to': 8.0, 'had': 1.0, 'boy': 1.0, 'either': 1.0, 'over': 2.0, 'up': 5.0, 'on': 4.0, 'strong': 1.0, 'printfrom': 1.0, 'geo': 1.0, 'time': 1.0, 'cart': 3.0, 'kid': 1.0, 'shopping': 2.0, 'tried': 2.0, 'i': 6.0, 'times': 1.0, 'planned': 1.0, 'fallen': 1.0, 'you': 1.0, 'couldn': 1.0, 'gotten': 1.0, 'using': 1.0, 'looking': 1.0, 'unlike': 1.0, 'and': 7.0, 'the': 14.0, 'of': 3.0, 'shower': 1.0, 'use': 2.0, 'are': 2.0, 'cute': 1.0, 'first': 1.0, 'leachco': 1.0, 'son': 3.0, 'hook': 1.0, 'leaned': 1.0, 'get': 1.0, 'months': 1.0, 'actual': 1.0, 'too': 2.0, 'theeddie': 1.0, 'one': 2.0, 'when': 2.0, 'sit': 2.0, 'is': 2.0, 'at': 1.0, '5': 1.0, 'before': 1.0, 'love': 1.0, 'fold': 1.0, 'he': 5.0, 'really': 2.0, 'plenty': 1.0, 'alone': 1.0, 'flopped': 1.0, 'but': 1.0, 'sitting': 1.0, 'was': 1.0, 'has': 1.0, 'solution': 1.0, 'them': 2.0, 'eddie': 1.0, 'be': 3.0, 'it': 6.0, 'him': 1.0, 'removable': 1.0, 'enough': 1.0, 'loved': 1.0, 'through': 1.0, 'seat': 2.0, 'in': 2.0, 'around': 1.0, 'asleep': 1.0, 'side': 1.0, 'were': 1.0, 'pillows': 3.0, 'comfy': 1.0, 'feels': 1.0, 'even': 2.0, 'strap': 1.0, 'very': 1.0, 'they': 1.0, 'sturdy': 1.0, 'that': 1.0, 'because': 1.0, 'loop': 1.0}
Word element => {'enough': 1.0, 'works': 1.0, 'then': 1.0, 'pad': 1.0, 'up': 1.0, 'it': 1.0, 'only': 1.0, 'with': 1.0, 'this': 1.0, 'actual': 1.0, 'double': 1.0, 'proper': 1.0, 'and': 2.0, 'but': 1.0, 'back': 1.0, 'too': 1.0, 'pads': 1.0, 'side': 1.0, 'seat': 1.0, 'are': 2.0, 'great': 1.0, 'the': 2.0, 'support': 1.0, 'comfort': 1.0, 'provide': 1.0, 'thin': 1.0, 'well': 1.0, 'a': 1.0, 'to': 1.0, 'or': 1.0, 'i': 1.0, 'for': 1.0, 'another': 1.0, 'baby': 1.0}
Word element => {'area': 1.0, 'in': 1.0, 'grocery': 1.0, 'or': 1.0, 'target': 1.0, 'at': 1.0, 'carts': 1.0, 'fit': 1.0, 'did': 1.0, 'but': 1.0, 'well': 1.0, 'packed': 1.0, 'not': 2.0, 'was': 1.0, 'extra': 1.0, 'really': 2.0, 'when': 1.0, 'i': 2.0, 'stores': 1.0, 'my': 2.0, 'the': 3.0, 'son': 1.0, 'for': 2.0, 'got': 1.0, 'sitting': 1.0, 'cushioning': 1.0, 'up': 2.0, 'like': 1.0, 'and': 1.0, 'steady': 1.0, 'long': 1.0, 'still': 1.0, 'periods': 1.0, 'he': 1.0, 'this': 1.0, 'it': 2.0}
Word element => {'product': 1.0, 'easy': 1.0, 'strap': 1.0, 'velcro': 1.0, 'a': 2.0, 'folds': 1.0, 'etc': 1.0, 'toys': 1.0, 'cover': 1.0, 'sometimes': 1.0, 'we': 1.0, 'go': 1.0, 's': 2.0, 'but': 1.0, 'quite': 1.0, 'cart': 1.0, 't': 2.0, 'fit': 2.0, 'where': 3.0, 'for': 3.0, 'are': 1.0, 'pacifier': 1.0, 'carts': 1.0, 'some': 1.0, 'never': 1.0, 'is': 2.0, 'wow': 1.0, 'not': 1.0, 'adjust': 1.0, 'love': 1.0, 'he': 2.0, '6': 1.0, 'list': 1.0, 'isn': 1.0, 'right': 1.0, 'shopping': 2.0, 'out': 1.0, 'can': 1.0, 'so': 1.0, 'all': 2.0, 'to': 2.0, 'center': 1.0, 'seen': 1.0, 'you': 2.0, 'when': 2.0, 'there': 1.0, '34': 2.0, 'because': 3.0, 'that': 3.0, 've': 1.0, 'would': 1.0, 'i': 6.0, 'hey': 1.0, 'over': 1.0, 'looks': 1.0, 'issue': 1.0, 'and': 4.0, 'time': 1.0, 'main': 1.0, 'keep': 1.0, 'did': 1.0, 'bottle': 1.0, 'this': 1.0, 'hands': 1.0, 'carrying': 1.0, 'great': 2.0, 'stretched': 1.0, 'say': 1.0, 'comfortable': 1.0, 'one': 1.0, 'get': 3.0, 'months': 1.0, 'question': 1.0, 'doesn': 1.0, 'was': 1.0, 'reach': 1.0, 'way': 1.0, 'hold': 1.0, 'his': 1.0, 'on': 1.0, 'grub': 1.0, 'loved': 1.0, 'really': 1.0, 'little': 1.0, 'propped': 1.0, 'still': 2.0, 'e': 2.0, 'help': 1.0, 'g': 2.0, 'side': 1.0, 'comfy': 1.0, 'pillows': 1.0, 'it': 9.0, 'him': 1.0, 'seat': 1.0, 'in': 2.0, 'the': 11.0, 'of': 1.0, 'has': 1.0, 'with': 3.0, 'pockets': 1.0, 'most': 2.0, 'back': 1.0, 'anything': 1.0, 'need': 1.0, 'up': 2.0, 'water': 1.0}
Word element => {'short': 1.0, 'overall': 1.0, 'are': 1.0, 'that': 1.0, 'cover': 1.0, 'straps': 1.0, 'cute': 1.0, 'fits': 1.0, '7': 1.0, 'is': 3.0, '5': 1.0, 'for': 1.0, 'perfectly': 1.0, 'and': 2.0, 'my': 2.0, 'months': 2.0, 'support': 1.0, 'now': 1.0, 'was': 1.0, 'too': 1.0, 'daughter': 1.0, 'when': 1.0, 'complaint': 1.0, 'fit': 1.0, 'purchased': 1.0, 'buy': 1.0, 'i': 2.0, 'old': 1.0, 'once': 1.0, 'great': 1.0, 'the': 1.0, 'such': 1.0, 'behind': 1.0, 'only': 1.0, 'this': 2.0, 'it': 2.0, 'her': 3.0, 'she': 1.0, 'a': 2.0, 'blanket': 1.0, 'but': 1.0, 'placed': 1.0, 'back': 1.0}
Word element => {'frequently': 1.0, 'and': 1.0, 'recommend': 1.0, 'lot': 1.0, 'a': 1.0, 'product': 1.0, 'shops': 1.0, 'mommy': 1.0, 'while': 1.0, 'napping': 1.0, 'want': 1.0, 'if': 1.0, 'pillows': 1.0, 'still': 1.0, 'to': 2.0, 'carts': 1.0, 'can': 1.0, 'but': 2.0, 'they': 1.0, 'target': 1.0, 'use': 2.0, 'for': 2.0, 'small': 1.0, 'great': 1.0, 'the': 2.0, 'frequent': 1.0, 'too': 1.0, 'this': 1.0, 'it': 3.0, 'come': 1.0, 'you': 2.0, 's': 1.0, 'seems': 1.0, 'fit': 1.0, 're': 1.0, 'stores': 1.0, 'other': 1.0, 'we': 2.0, 'them': 1.0, 'out': 1.0}
Word element => {'carry': 1.0, 'lovely': 1.0, 'off': 1.0, 'strap': 1.0, 'easy': 1.0, 'pleased': 1.0, 'm': 1.0, 'cover': 1.0, 'loads': 1.0, 'rolls': 1.0, 'to': 1.0, 'complements': 1.0, 'had': 1.0, 've': 1.0, '100': 1.0, 'head': 1.0, 'his': 1.0, 'my': 1.0, 'handle': 1.0, 'love': 1.0, 'son': 1.0, 'a': 1.0, 'buffers': 1.0, 'up': 1.0, 'of': 1.0, '34': 2.0, 'that': 1.0, 'is': 1.0, 'side': 1.0, 'i': 3.0, 'all': 1.0, 'on': 3.0, 'won': 1.0, 'over': 1.0, 'nice': 1.0, 'place': 1.0, 'get': 1.0, 'and': 4.0, 's': 1.0, 'with': 2.0, 'this': 1.0, 'it': 3.0, 'he': 1.0, 'the': 3.0, 't': 1.0, 'either': 1.0, 'bop': 1.0}
Word element => {'in': 1.0, 'him': 1.0, 'keep': 1.0, 'helps': 1.0, 'and': 1.0, 'more': 1.0, 'the': 3.0, 'support': 1.0, 'my': 1.0, 'because': 1.0, 'cart': 2.0, 'mainly': 1.0, 'this': 2.0, 'other': 1.0, 'cover': 1.0, 'like': 1.0, 'really': 1.0, 'side': 2.0, 'wants': 1.0, 'i': 1.0, 'one': 1.0, 'to': 2.0, 'of': 1.0, 'lean': 1.0, 'son': 1.0, 'from': 1.0, 'grabbing': 1.0, 'at': 1.0, 'things': 1.0}
Word element => {'use': 1.0, 'be': 1.0, 'will': 1.0, 'another': 1.0, 'handed': 1.0, 'main': 1.0, 'pack': 1.0, 'only': 1.0, 'and': 6.0, 'in': 1.0, 'back': 2.0, 'do': 1.0, 'put': 1.0, 'on': 2.0, 'make': 1.0, 'very': 2.0, 'read': 1.0, 'sure': 1.0, 'easy': 1.0, 'not': 2.0, 'cart': 1.0, 'whos': 1.0, 'me': 2.0, 'my': 1.0, 'little': 1.0, 'nice': 2.0, 'to': 5.0, 'does': 1.0, 'is': 2.0, 'up': 2.0, 'don': 1.0, '6': 1.0, 'his': 1.0, 'sturdy': 1.0, 'before': 1.0, 'worry': 1.0, 'this': 3.0, 'covers': 1.0, 'month': 1.0, 'it': 5.0, 't': 1.0, 's': 1.0, 'i': 6.0, 'of': 2.0, 'the': 3.0, 'reviews': 1.0, 'own': 1.0, 'that': 2.0, 'sitting': 1.0, 'but': 1.0, 'work': 1.0, 'cover': 2.0, 'pillows': 1.0, 'play': 2.0, 'about': 2.0, 'he': 1.0, 'yet': 1.0, 'love': 1.0, 'lot': 1.0, 'too': 2.0, 'happy': 2.0, 'one': 3.0, 'huge': 1.0, 'while': 1.0, 'holding': 1.0, 'are': 1.0, 'cute': 1.0, 'deal': 1.0, 'baby': 2.0, 'for': 7.0, 'fabric': 1.0, 'toy': 1.0, 'next': 1.0, 'them': 2.0, 'has': 1.0, 'always': 1.0, 'can': 1.0, 'so': 1.0, 'carts': 1.0, 'straps': 1.0, 'something': 1.0, 'draw': 1.0, 'with': 3.0, 'have': 2.0, 'a': 4.0, 'small': 1.0, 'or': 1.0, 'falling': 1.0, 'getting': 1.0, 'even': 1.0, 'old': 1.0, 'run': 1.0, 'larger': 1.0, 'if': 2.0, 'things': 1.0, 'you': 3.0, 'deciding': 1.0, 'lost': 1.0, 'am': 1.0, 'll': 1.0, 'learn': 1.0, 'what': 1.0}
Word element => {'out': 1.0, 'i': 1.0, 'your': 1.0, 'as': 1.0, 'and': 1.0, 'it': 1.0, 'with': 1.0, 'obsessed': 1.0, 'is': 1.0, 'person': 1.0, 'amthis': 1.0, 're': 1.0, 'a': 1.0, 'go': 1.0, 'you': 2.0, 'if': 1.0, 'perfect': 1.0, 'just': 1.0, 'germs': 1.0, 'product': 1.0, 'for': 1.0, 'babyi': 1.0, 'without': 1.0, 'can': 1.0, 'the': 1.0, 't': 1.0}
Word element => {'easy': 1.0, 'then': 1.0, 'first': 1.0, 'carriage': 1.0, 'close': 1.0, 'parking': 1.0, 'pull': 1.0, 'advice': 1.0, 'my': 1.0, 'baby': 1.0, 'them': 1.0, 'use': 1.0, 'not': 1.0, 'prefer': 1.0, 'you': 1.0, 'if': 1.0, 'carry': 1.0, 'little': 1.0, 'it': 1.0, 'they': 2.0, 'places': 1.0, 'cart': 2.0, 'bit': 1.0, 'so': 1.0, 'be': 1.0, 'still': 1.0, 'to': 7.0, 'was': 1.0, 'this': 3.0, 'with': 1.0, 'shopper': 1.0, 'into': 2.0, 'babies': 1.0, 'parents': 1.0, 'sit': 2.0, 'or': 1.0, 'strapped': 1.0, 'many': 1.0, 'side': 1.0, 'in': 2.0, 'for': 2.0, 'learning': 1.0, 'spot': 1.0, 'great': 1.0, 'the': 5.0, 'removable': 1.0, 'but': 2.0, 'can': 1.0, 'need': 1.0, 'don': 1.0, 'up': 2.0, 'is': 2.0, 'around': 2.0, 'fall': 1.0, 'shopping': 2.0, 'out': 1.0, 'i': 1.0, 'shopped': 1.0, 'and': 2.0, 'only': 1.0, 'do': 1.0, 'who': 1.0, 'at': 1.0, 'cover': 1.0, 't': 1.0, 'a': 4.0, 'safety': 1.0, 'are': 2.0, 'strap': 2.0, 'bulky': 1.0, 'pillows': 1.0, 'put': 1.0, 'make': 1.0, 'on': 1.0}
Word element => {'rain': 1.0, 'wet': 1.0, 'cold': 1.0, 'getting': 1.0, 'about': 1.0, 'worry': 1.0, 'inside': 1.0, 'set': 1.0, 'best': 1.0, 'raining': 1.0, 'minutes': 1.0, 'hold': 1.0, 'purse': 1.0, 'trader': 1.0, 'but': 1.0, 'club': 1.0, 'target': 1.0, 'cart': 4.0, 'tabs': 1.0, 'arm': 1.0, 'big': 2.0, 'stays': 1.0, 'if': 1.0, 'still': 1.0, 'bigger': 1.0, 'other': 2.0, 'fits': 3.0, 'my': 2.0, 'little': 3.0, 'situated': 1.0, 'a': 5.0, 'we': 1.0, 's': 3.0, 'hook': 1.0, 'costco': 1.0, 'there': 1.0, 'chair': 1.0, 'cover': 2.0, 'thankful': 1.0, 'can': 1.0, 'so': 3.0, 'product': 1.0, 'love': 1.0, 'leaning': 1.0, 'stores': 2.0, 'with': 2.0, 'red': 1.0, 'the': 19.0, 'it': 11.0, 'baby': 4.0, 'she': 3.0, 'few': 1.0, 'this': 4.0, 'perfect': 1.0, 'loves': 1.0, 'that': 1.0, 'totally': 1.0, 'sit': 1.0, 'i': 6.0, 'and': 9.0, 'around': 1.0, 'grocery': 2.0, 'backing': 1.0, 'plastic': 1.0, 'drug': 1.0, 'just': 2.0, 'by': 1.0, 'store': 4.0, 'was': 3.0, 't': 1.0, 'belt': 1.0, 'joes': 1.0, 'today': 1.0, 'maneuvering': 1.0, 'member': 1.0, 'in': 5.0, 'seat': 1.0, 'on': 3.0, 'bum': 1.0, 'put': 2.0, 'your': 2.0, 'over': 1.0, 'takes': 1.0, 'up': 2.0, 'also': 2.0, 'doesn': 1.0, 'qfc': 1.0, 'wooden': 1.0, 'only': 1.0, 'have': 2.0, 'get': 1.0, 'trouble': 1.0, 'new': 1.0, 'chewing': 1.0, 'carry': 1.0, 'although': 1.0, 'at': 5.0, 'is': 3.0, 'handle': 1.0, 'you': 2.0, 'push': 1.0, 'toy': 2.0, 'used': 1.0, 'wrap': 1.0, 'restaurant': 1.0, 'worked': 1.0, 'after': 1.0, 'never': 1.0, 'some': 1.0, 'to': 4.0, 'pretty': 1.0, 'cloth': 1.0, 'buckle': 1.0, 'wraps': 1.0, 'nicely': 1.0, 'happy': 1.0, 'one': 1.0, 'carts': 3.0, 'hand': 1.0}
Word element => {'to': 1.0, 'leaning': 1.0, 'baby': 1.0, 'keeping': 1.0, 'by': 1.0, 'i': 2.0, 'cart': 1.0, 'shopping': 1.0, 's': 1.0, 'of': 1.0, 've': 1.0, 'part': 1.0, 'and': 1.0, 'third': 1.0, 'covers': 1.0, 'the': 5.0, 'side': 1.0, 'type': 1.0, 'is': 2.0, 'on': 1.0, 'owned': 1.0, 'this': 1.0, 'it': 1.0, 'one': 1.0, 'love': 1.0, 'far': 1.0, 'cushions': 1.0, 'from': 1.0, 'best': 1.0, 'sides': 1.0}
Word element => {'well': 1.0, 'few': 1.0, 'her': 1.0, 'keeps': 1.0, 'cart': 1.0, 'like': 1.0, 'and': 2.0, 'me': 1.0, 'compliments': 1.0, 'worry': 1.0, 'market': 1.0, 'sitting': 1.0, 'i': 6.0, 'it': 1.0, 'this': 2.0, 'loves': 1.0, 'comfy': 1.0, 'exactly': 1.0, 'being': 1.0, 'be': 1.0, 'the': 3.0, 'my': 1.0, 'in': 1.0, 'would': 1.0, 've': 2.0, 'daughter': 1.0, 'where': 1.0, 'have': 1.0, 'as': 1.0, 'to': 2.0, 'what': 1.0, 'thought': 1.0, 'had': 1.0, 'attach': 1.0, 'toys': 1.0, 'up': 1.0, 'don': 1.0, 'able': 1.0, 'ask': 1.0, 'them': 1.0, 'about': 1.0, 'several': 1.0, 'people': 1.0, 'secure': 1.0, 'approach': 1.0, 'at': 1.0, 'got': 1.0, 'received': 1.0, 'losing': 1.0, 't': 1.0, 'a': 1.0}
Word element => {'side': 1.0, 'each': 1.0, 'excellent': 1.0, 'provide': 1.0, 'pillows': 1.0, 'on': 1.0, 'is': 1.0, 'this': 1.0, 'younger': 1.0, 'product': 1.0, 'love': 1.0, 'it': 1.0, 'perfect': 1.0, 'children': 1.0, 'for': 2.0, 'one': 1.0, 'support': 1.0, 'the': 1.0, 'my': 1.0, 'little': 1.0}
Word element => {'asked': 1.0, 'have': 1.0, 'better': 1.0, 'couldnt': 1.0, 'keep': 1.0, 'my': 1.0, 'the': 1.0, 'i': 1.0, 'old': 1.0, 'still': 1.0, 'being': 1.0, 'perfect': 1.0, 'cushions': 1.0, '6': 1.0, 'unsteady': 1.0, 'him': 1.0, 'month': 1.0, 'cover': 2.0, 'for': 2.0, 'cart': 2.0, 'little': 1.0, 'he': 1.0, 'this': 1.0, 'wobbley': 1.0, 'a': 2.0, 'so': 1.0, 'is': 2.0, 'side': 1.0, 'from': 1.0}
Word element => {'well': 1.0, 'as': 1.0, 'very': 1.0, 'helpful': 1.0, 'are': 1.0, 'toys': 1.0, 'straps': 1.0, 'the': 1.0, 'she': 1.0, 'my': 1.0, 'own': 1.0, 'i': 2.0, 'for': 1.0, 'young': 1.0, 'can': 1.0, 'wonderful': 1.0, 'is': 1.0, 'on': 1.0, 'cover': 1.0, 'this': 1.0, 'it': 2.0, 'cart': 1.0, 'shopping': 1.0, 'when': 2.0, 'daughter': 1.0, 'too': 1.0, 'now': 1.0, 'was': 1.0, 'to': 1.0, 'sit': 1.0, 'used': 1.0, 'her': 2.0, 'up': 1.0, 'and': 1.0, 'use': 1.0}
Word element => {'product': 1.0, 'handy': 1.0, 'convenient': 1.0, 'carts': 3.0, 'awkward': 1.0, 'style': 1.0, 'best': 1.0, 'however': 1.0, 'new': 1.0, 'traditional': 1.0, 'the': 4.0, 'frequent': 1.0, 'works': 1.0, 'with': 2.0, 'it': 1.0, 'store': 1.0, 'still': 1.0, 'old': 1.0, 'we': 1.0, 'most': 1.0, 'shopping': 1.0, 'school': 1.0, 'has': 1.0, 'is': 2.0, 'really': 2.0, 'and': 1.0}
Word element => {'colors': 1.0, 'they': 1.0, 'baby': 1.0, 'younger': 1.0, 'well': 1.0, 'had': 1.0, 'wish': 1.0, 'for': 1.0, 'durable': 1.0, 'like': 1.0, 'and': 1.0, 'or': 1.0, 'i': 2.0, 'ours': 1.0, 'love': 1.0, 'more': 1.0, 'made': 1.0, 'the': 1.0, 'cushioning': 1.0, 'a': 1.0, 'preemie': 1.0, 'especially': 1.0}
Word element => {'doesn': 1.0, 'big': 1.0, 'be': 1.0, 'need': 1.0, 'work': 1.0, 'make': 1.0, 'chair': 1.0, 'will': 1.0, 'later': 1.0, 'more': 1.0, 'small': 1.0, 'a': 2.0, 'have': 1.0, '10': 1.0, 'sat': 1.0, 'while': 1.0, 'my': 2.0, 'hold': 2.0, 'using': 1.0, 'you': 3.0, 'local': 1.0, 'someone': 1.0, 'side': 1.0, 'knocking': 1.0, 'been': 1.0, 'care': 1.0, 'target': 1.0, 'it': 10.0, 'store': 1.0, 'was': 2.0, 'grocery': 1.0, 'idea': 1.0, 'flap': 1.0, 'think': 2.0, 'on': 2.0, 'cover': 1.0, 'few': 1.0, 'this': 2.0, 'wish': 1.0, 'wonderful': 1.0, 'front': 1.0, '7': 1.0, 'up': 1.0, 'don': 3.0, 'not': 3.0, 'well': 1.0, 'i': 15.0, 'two': 2.0, 'around': 1.0, 'fit': 1.0, 't': 5.0, 'if': 3.0, 'propped': 1.0, 's': 2.0, 'of': 5.0, 'the': 9.0, 'since': 1.0, 'no': 1.0, 'sams': 1.0, 'about': 1.0, 'pillows': 3.0, 'thing': 1.0, 'carts': 2.0, 'high': 1.0, 'to': 2.0, 'as': 1.0, 'is': 2.0, 'at': 1.0, 'handle': 1.0, 'top': 1.0, 'most': 1.0, 'back': 1.0, 'shopping': 1.0, 'out': 2.0, 'used': 1.0, 'but': 5.0, 'banging': 1.0, 'does': 2.0, 'that': 3.0, 'because': 2.0, 'even': 1.0, 'shopped': 1.0, 'and': 6.0, 'fear': 1.0, 'do': 2.0, 'much': 2.0, 'she': 3.0, 'baby': 1.0, 'there': 1.0, 'can': 2.0, 'so': 1.0, 'earlier': 1.0, 'extra': 2.0, 'seat': 2.0, 'in': 4.0, 'afraid': 1.0, 'would': 1.0, 've': 1.0, 'take': 1.0, 'then': 1.0, 'fine': 1.0, 'banged': 1.0, 'couldn': 1.0, 'cart': 2.0, 'use': 1.0, 'her': 3.0, 'car': 2.0, 'albertsons': 1.0, 'never': 1.0, 'room': 1.0, 'paper': 1.0, 'guess': 1.0, 'holder': 1.0, 'cushion': 1.0, 'purchased': 1.0, 'get': 4.0, 'months': 3.0, 'now': 1.0, 'almost': 1.0}
Word element => {'loves': 1.0, 'in': 1.0, 'wish': 1.0, 'comfortable': 1.0, 'well': 1.0, 'they': 2.0, 'shopping': 2.0, 'about': 1.0, 'as': 2.0, 'fits': 1.0, 'even': 1.0, 'great': 1.0, 'commented': 1.0, 'cover': 1.0, 'our': 1.0, 'that': 1.0, 'so': 1.0, 'jumbo': 1.0, 'it': 5.0, 'this': 1.0, 'sit': 1.0, 'have': 1.0, 'carts': 2.0, 'at': 1.0, 'could': 1.0, 'bjs': 1.0, 'to': 1.0, 'too': 1.0, 'daughter': 1.0, 'us': 1.0, 'regular': 1.0, 'is': 1.0, 'people': 1.0, 'looks': 1.0}
Word element => {'jealous': 1.0, 'bit': 1.0, 'a': 1.0, 'i': 1.0, 'cart': 1.0, 'the': 3.0, 'my': 1.0, 'in': 2.0, 'daughter': 1.0, 'sideways': 1.0, 'even': 2.0, 'thought': 1.0, 'so': 1.0, 'sleep': 1.0, 'loves': 1.0, 'she': 1.0, 'store': 1.0, 'on': 1.0, 'pillows': 1.0, 'comfortable': 1.0, 'was': 1.0, 'turned': 1.0, 'to': 1.0, 'everyone': 1.0, 'this': 1.0, 'it': 1.0, 'looked': 1.0, 'and': 1.0}
Word element => {'cover': 1.0, 'addition': 1.0, 'genius': 1.0, 'awhile': 1.0, 'is': 1.0, 'an': 1.0, 'infant': 1.0, 'take': 1.0, 'but': 1.0, 'sitting': 1.0, 'for': 3.0, 'great': 1.0, 'the': 3.0, 'support': 1.0, 'carrying': 1.0, 'bulky': 1.0, 'purse': 1.0, 'and': 3.0, 'comfy': 1.0, 'looks': 1.0, 'it': 2.0, 'awkward': 1.0, 'to': 3.0, 'store': 1.0, 'bag': 1.0, 'toys': 1.0, 'need': 1.0, 'little': 1.0, 'help': 1.0, 'up': 1.0, 'straight': 1.0, 'when': 1.0, 's': 1.0, 'a': 3.0, 'going': 1.0, 'ride': 1.0, 'in': 1.0, 'diaper': 1.0, 'connect': 1.0, 'cart': 1.0, 'baby': 1.0, 'babies': 1.0, 'into': 1.0, 'that': 1.0, 'i': 1.0, 'somewhat': 1.0, 'straps': 1.0, 'who': 1.0, 'keep': 1.0, 'her': 1.0, 'satisfied': 1.0}
Word element => {'best': 1.0, 'the': 1.0, 'is': 1.0, 'one': 1.0, 'we': 1.0, 'looked': 1.0, 'these': 1.0, 'at': 1.0, 'this': 1.0, 'a': 1.0, 'things': 1.0, 'few': 1.0, 'of': 1.0, 'quite': 1.0, 'and': 1.0}
Word element => {'comfortable': 1.0, 'seems': 1.0, 'neutral': 1.0, 'him': 1.0, 'it': 1.0, 'my': 1.0, 'very': 1.0, 'and': 2.0, 'for': 2.0, 'son': 1.0, 'is': 2.0, 'gender': 1.0, '7': 1.0, 'be': 1.0, 'to': 1.0, 'old': 1.0, 'perfect': 1.0, 's': 1.0, 'months': 1.0, 'shopping': 1.0, 'trips': 1.0, 'this': 1.0}
Word element => {'us': 1.0, 'easier': 1.0, 'pillows': 1.0, 'sit': 1.0, 'to': 1.0, 'allows': 1.0, 'on': 1.0, '4': 1.0, 'or': 2.0, 'up': 1.0, 'there': 1.0, 'opinion': 1.0, 'best': 1.0, 'my': 2.0, 'so': 1.0, 'small': 1.0, 'both': 1.0, 'her': 2.0, 'out': 1.0, 'cover': 1.0, 'month': 2.0, 'in': 1.0, 'one': 1.0, 'for': 2.0, 'hates': 1.0, 'car': 1.0, 'lay': 1.0, 'blanket': 1.0, 'seat': 1.0, 'and': 2.0, 'this': 1.0, 'shopping': 1.0, 'makes': 1.0, 'cart': 1.0, 'a': 1.0, 'another': 1.0}
Word element => {'recommend': 1.0, 'highly': 1.0, 'very': 1.0, 'not': 1.0, 'who': 1.0, 'a': 1.0, 'sitting': 1.0, 'highquality': 1.0, 'is': 1.0, 'herself': 1.0, 'and': 1.0, 'up': 1.0, 'was': 1.0, 'granddaughter': 1.0, 'wanted': 1.0, 'preemie': 1.0, 'my': 1.0, 'love': 1.0, 'for': 1.0, 'yet': 1.0, 'bought': 1.0, 'too': 1.0, 'by': 1.0, 'this': 1.0, 'it': 4.0, 'i': 2.0, 'exactly': 1.0, 'does': 1.0, 'what': 1.0}
Word element => {'on': 1.0, 'a': 1.0, 'pack': 1.0, 'wash': 1.0, 'everyone': 1.0, 'to': 2.0, 'recommend': 1.0, 'becomes': 1.0, 'easy': 2.0, 'bag': 1.0, 'belts': 1.0, 'enough': 1.0, 'that': 1.0, 'feactures': 1.0, 'of': 1.0, 'carry': 1.0, 'safe': 1.0, 'two': 1.0, 'because': 1.0, 'baby': 1.0, 'the': 2.0, 'great': 2.0, 'with': 1.0, 'he': 1.0, 'it': 5.0, 'works': 1.0, 'product': 1.0, 'bought': 1.0, 'much': 1.0, 'so': 1.0, 'like': 2.0, 'and': 4.0, 'very': 1.0, 'i': 3.0, 'cushions': 2.0, 'my': 1.0, 'shoulder': 1.0, 'good': 1.0, 'loves': 1.0, 'belt': 1.0, 'soft': 1.0, 'is': 2.0}
Word element => {'useful': 1.0, 'falling': 1.0, 'from': 1.0, 'straps': 1.0, 'asleep': 1.0, 'falls': 1.0, 'she': 1.0, 'when': 1.0, 'a': 2.0, 'padding': 1.0, 'toys': 1.0, 'propped': 1.0, 'pockets': 1.0, 'old': 1.0, 'my': 1.0, 'the': 3.0, '4': 1.0, 'suprisingly': 1.0, 'and': 1.0, 'perfectly': 1.0, 'shopping': 1.0, 'makes': 1.0, 'cart': 2.0, 'it': 1.0, 'this': 1.0, 'toy': 1.0, 'pleasant': 1.0, 'are': 1.0, 'taking': 1.0, 'keeps': 2.0, 'experience': 1.0, 'fits': 1.0, 'month': 1.0, 'cover': 1.0, 'walmart': 1.0, 'her': 2.0, 'up': 1.0}
Word element => {'roll': 1.0, 'floors': 1.0, 'wood': 1.0, 'have': 1.0, 'animals': 1.0, 'stuffed': 1.0, 'basket': 2.0, 'used': 1.0, 'away': 1.0, 'part': 1.0, 'around': 1.0, 'is': 1.0, 'if': 1.0, 'everything': 1.0, 'together': 1.0, 'easy': 1.0, '9': 1.0, 'bedroom': 1.0, 'born': 1.0, 'was': 2.0, 'light': 1.0, 'practical': 1.0, 'affordable': 1.0, 'not': 1.0, 'be': 2.0, 'underneath': 1.0, 'my': 2.0, 'something': 1.0, 'son': 2.0, 'it': 5.0, 'this': 2.0, 'for': 2.0, 'bed': 1.0, 'in': 2.0, '4oz': 1.0, 'beside': 1.0, 'toys': 1.0, 'wanted': 1.0, 'bassinet': 3.0, 'taking': 1.0, 'i': 4.0, '4': 2.0, 'bought': 1.0, 'months': 2.0, 'you': 1.0, 'when': 1.0, 'lbs': 1.0, 'easily': 1.0, 'folded': 1.0, 'child': 1.0, 'washable': 1.0, 'up': 1.0, 'and': 3.0, 'too': 1.0, 'wheel': 1.0, 'much': 1.0, 'space': 1.0, 'at': 1.0, 's': 1.0, 'without': 1.0, 'the': 3.0, 'his': 3.0, 'sturdy': 1.0, 'can': 3.0, 'stored': 1.0, 'most': 1.0, 'but': 1.0, 'slept': 1.0, 'will': 1.0, 'because': 1.0, 'safely': 1.0, 'hold': 1.0, 'put': 3.0, 'your': 2.0, 'baby': 1.0, 'all': 1.0, 'to': 3.0, 'our': 1.0, 'least': 1.0}
Word element => {'great': 1.0, 'really': 1.0, 'is': 1.0, 'but': 1.0, 'from': 1.0, 'and': 2.0, 'me': 1.0, 'gave': 1.0, 'product': 1.0, 'for': 2.0, 'bed': 1.0, 'bassinet': 1.0, 'wanted': 1.0, 'had': 2.0, 'was': 1.0, 'poor': 1.0, 'write': 1.0, 'five': 1.0, 'before': 1.0, 'used': 1.0, 'years': 1.0, 'about': 1.0, 'to': 1.0, 'any': 1.0, 'don': 1.0, 'the': 1.0, 'a': 5.0, 't': 1.0, 'this': 3.0, 'it': 4.0, 'with': 2.0, 'have': 2.0, 'because': 1.0, 'know': 1.0, 'person': 1.0, 'each': 1.0, '3': 1.0, 'review': 1.0, 'half': 1.0, 'girls': 1.0, 'i': 5.0, '4': 1.0, 'one': 1.0, 'months': 1.0, 'loved': 1.0, 'amazon': 1.0, 'use': 1.0, 'side': 1.0, 'never': 1.0, 'problems': 1.0, 'gift': 1.0, 'so': 1.0, 'if': 1.0, 'came': 1.0}
Word element => {'5': 1.0, 'so': 1.0, 'off': 1.0, 'way': 1.0, 'doesn': 1.0, 'unzip': 1.0, 'me': 1.0, 'not': 1.0, 'this': 2.0, 'he': 1.0, 'isn': 1.0, 'right': 1.0, 'can': 1.0, 'and': 3.0, 'get': 1.0, 'it': 5.0, 'precious': 1.0, 'i': 3.0, 'bought': 1.0, 'lid': 1.0, 'my': 2.0, 'in': 2.0, 'stars': 1.0, 'themed': 1.0, 'fit': 1.0, 'for': 2.0, 'still': 1.0, 'son': 1.0, 'only': 1.0, 'nursery': 1.0, 'hamper': 2.0, 'very': 1.0, 'youngest': 1.0, 'take': 1.0, 'has': 1.0, 'big': 1.0, 'mention': 1.0, 'lot': 1.0, 'sturdy': 1.0, 'completely': 1.0, 'is': 2.0, 'holds': 1.0, 'of': 2.0, 'clothes': 2.0, 'boys': 1.0, 'you': 1.0, 'like': 1.0, 'denim': 1.0, 'to': 3.0, 'all': 2.0, 'thing': 1.0, 'deal': 1.0, 'the': 4.0, 'a': 3.0, 't': 4.0, 'out': 1.0, 'don': 1.0, 'come': 1.0, 'entirely': 1.0, 'gave': 1.0, 'cowboy': 1.0, 'that': 2.0, 'care': 1.0}
Word element => {'them': 1.0, 'items': 1.0, 'small': 1.0, 'you': 1.0, 'on': 1.0, 'like': 1.0, 'inevitably': 1.0, 'handy': 1.0, 'in': 2.0, 'can': 1.0, 'size': 1.0, 'we': 1.0, 'convenient': 1.0, 'as': 1.0, 'very': 1.0, 'and': 1.0, 'are': 1.0, 'nice': 1.0, 'the': 4.0, 'imagined': 1.0, 'm': 1.0, 'stuff': 1.0, 'side': 1.0, 'is': 2.0, 'looks': 1.0, 'accumulate': 1.0, 'bag': 1.0, 'come': 1.0, 'this': 1.0, 'it': 2.0, 'using': 1.0, 'for': 2.0, 'had': 1.0, 'sure': 1.0, 'toys': 2.0, 'our': 1.0, 'baby': 1.0, 'larger': 1.0, 'than': 1.0, 'will': 1.0, 'but': 1.0, 'pockets': 1.0, 'i': 3.0}
Word element => {'stairs': 1.0, 'for': 1.0, 'bought': 1.0, 'decent': 1.0, 'likes': 1.0, 'old': 2.0, 'to': 1.0, 'price': 1.0, 'cute': 1.0, 'at': 1.0, 'a': 1.0, 'down': 1.0, '10': 1.0, 'is': 1.0, 'girl': 1.0, 'problem': 1.0, '7': 1.0, 'roll': 1.0, 'year': 2.0, 'hamper': 1.0, 'brother': 1.0, 'only': 1.0, 'it': 1.0, 'the': 1.0}
Word element => {'read': 1.0, 'easy': 1.0, 'safe': 1.0, 'deal': 1.0, 'really': 1.0, 'buying': 1.0, 'available': 1.0, 'saw': 1.0, 'convertible': 1.0, 'needs': 1.0, 'where': 1.0, 'point': 1.0, 'now': 1.0, 'second': 1.0, 'my': 1.0, 'not': 1.0, 'but': 1.0, 'like': 1.0, 'had': 3.0, 'was': 2.0, 'upgraded': 1.0, 'for': 1.0, 'facing': 1.0, 'cars': 1.0, 'needed': 1.0, 'back': 1.0, 'hatch': 1.0, 'liked': 2.0, 'door': 1.0, 'drove': 1.0, 'he': 2.0, 'a': 6.0, 'could': 3.0, 'fit': 3.0, 'ago': 2.0, 't': 1.0, 'wide': 1.0, 'time': 1.0, 'so': 3.0, 'infant': 1.0, 'it': 8.0, 'remove': 1.0, 'higher': 1.0, 'this': 3.0, 'and': 5.0, '1': 1.0, 'find': 1.0, 'm': 1.0, 'in': 2.0, 'seat': 4.0, 'to': 3.0, 'would': 2.0, 'straps': 2.0, 'something': 1.0, 'of': 1.0, 'the': 9.0, 'instructions': 1.0, 'omega': 1.0, 'bought': 1.0, 'too': 1.0, 'rear': 1.0, 'one': 2.0, 'about': 1.0, 'transfered': 1.0, 'years': 1.0, 'affordable': 1.0, 'less': 1.0, 'our': 4.0, 'disappointed': 1.0, 'when': 3.0, 'you': 3.0, 'were': 1.0, 'because': 1.0, 'easily': 1.0, 'that': 5.0, 'into': 1.0, 'outgrew': 1.0, 'or': 1.0, 'use': 1.0, 'smaller': 1.0, 'her': 1.0, 'is': 2.0, 'at': 2.0, 'likely': 1.0, 'twist': 1.0, 'child': 1.0, 'cosco': 2.0, 'year': 1.0, 'adjustable': 1.0, 'mini': 1.0, 'created': 1.0, 'accident': 1.0, 'well': 2.0, 'i': 6.0, 'base': 2.0, 'good': 1.0, 'made': 1.0, 'which': 3.0, 'we': 7.0, 'then': 1.0, 'another': 1.0, 'suv': 1.0, '2': 3.0, 'alpha': 1.0, 'if': 1.0, 'tighter': 1.0, 'as': 1.0, 'leave': 1.0, 'on': 2.0, 'lifted': 1.0, 'see': 1.0, 'couldn': 1.0, 'out': 1.0, 'car': 4.0, 'window': 1.0, 'be': 1.0, 'better': 1.0, 'daughter': 2.0, 'got': 1.0, 'replaced': 2.0, 'rendition': 1.0, 'quite': 1.0, 'market': 1.0, 'with': 1.0}
Word element => {'have': 1.0, 'my': 1.0, 'biggest': 1.0, 'that': 1.0, 'strap': 1.0, 'sometimes': 1.0, 'around': 1.0, 'buckles': 1.0, 'for': 1.0, 'pain': 1.0, 'on': 1.0, 'clips': 1.0, 'still': 1.0, 'same': 1.0, 'works': 1.0, 'but': 1.0, 'get': 2.0, 'suppose': 1.0, 'like': 1.0, 'can': 1.0, 'i': 2.0, 'daughter': 1.0, 'attached': 1.0, 'when': 1.0, 'loves': 1.0, 'quite': 1.0, 'good': 1.0, 'seat': 1.0, 'ground': 1.0, 'a': 1.0, 'is': 4.0, 'this': 2.0, 'it': 4.0, 'with': 2.0, 'car': 1.0, 'had': 1.0, 'turned': 1.0, 'to': 2.0, 'be': 2.0, 'also': 1.0, 'level': 1.0, 'base': 1.0, 't': 1.0, 'the': 7.0}
Word element => {'to': 1.0, 'is': 1.0, 'loves': 1.0, 'design': 1.0, 'daughter': 1.0, 'size': 1.0, 'comfort': 1.0, 'the': 1.0, 'my': 1.0, 'buy': 1.0, 'great': 1.0, 'it': 2.0, 'also': 1.0, 'shopping': 1.0, 'use': 1.0, 'easy': 1.0, 'fits': 1.0, 'almost': 1.0, 'over': 1.0, 'and': 1.0, 'any': 1.0, 'cart': 1.0}
Word element => {'take': 1.0, 'put': 1.0, 'chair': 1.0, 'on': 2.0, 'taking': 1.0, 'gross': 1.0, 'anything': 1.0, 'worry': 1.0, 'wipe': 1.0, 'to': 3.0, 'have': 1.0, 'about': 1.0, 'don': 1.0, 'you': 1.0, 'off': 2.0, 'or': 1.0, 'chairs': 1.0, 'high': 2.0, 'got': 1.0, 'just': 1.0, 'easy': 1.0, 'fantastic': 1.0, 'so': 1.0, 'everything': 2.0, 'covers': 1.0, 'a': 1.0, 'is': 2.0, 'time': 1.0, 'next': 1.0, 'product': 1.0, 'quick': 1.0, 'it': 6.0, 'with': 1.0, 'this': 1.0, 'love': 1.0, 'restaurant': 1.0, 'me': 1.0, 'and': 2.0, 'day': 1.0, 'very': 2.0, 'i': 2.0, 'took': 1.0, 't': 1.0, '2': 1.0, 'the': 3.0, 'used': 1.0, 'in': 1.0}
Word element => {'boot': 1.0, 'off': 1.0, 'on': 1.0, 'my': 1.0, 'made': 1.0, 'supports': 1.0, 'cushy': 1.0, 'is': 2.0, 'baby': 1.0, 'cover': 1.0, 'well': 2.0, 'cart': 1.0, 'shopping': 1.0, 'the': 2.0, 'great': 1.0, 'love': 1.0, 'it': 1.0, 'print': 1.0, 'cute': 1.0, 'i': 1.0, 'pockets': 1.0, 'get': 1.0, 'and': 2.0, 'very': 1.0, 'easy': 1.0, 'its': 1.0, 'to': 2.0}
Word element => {'restaurant': 1.0, 'cart': 1.0, 'shopping': 1.0, 'used': 1.0, 've': 1.0, 'sleeping': 1.0, 'even': 1.0, 'makes': 1.0, 'really': 1.0, 'how': 1.0, 'needed': 1.0, 'if': 1.0, 'bag': 1.0, 'diaper': 1.0, 'compartments': 1.0, 'went': 1.0, 'bright': 1.0, 'colors': 1.0, 'are': 2.0, 'into': 1.0, 'that': 1.0, 'babies': 1.0, 'look': 1.0, 'fluffy': 1.0, 'nice': 1.0, 'comfortable': 1.0, 'big': 1.0, 'easy': 3.0, 'various': 1.0, 'looked': 1.0, 'perfect': 1.0, 'this': 2.0, 'with': 2.0, 'sitting': 1.0, 'but': 1.0, 'money': 1.0, 'both': 1.0, 'fun': 1.0, 'price': 1.0, 'so': 3.0, 'simply': 1.0, 'still': 1.0, 'storage': 1.0, 'the': 5.0, 'a': 3.0, 't': 1.0, 'ones': 1.0, 'worth': 1.0, 'cushion': 1.0, 'straps': 1.0, 'one': 1.0, 'highchair': 1.0, 'love': 1.0, 'for': 3.0, 'i': 3.0, 'buggy': 1.0, 'those': 2.0, 'store': 1.0, 'was': 1.0, 'much': 1.0, 'its': 1.0, 'at': 2.0, 'around': 1.0, 'comes': 1.0, 'is': 4.0, 'baby': 3.0, 'ranges': 1.0, 'several': 1.0, 'it': 5.0, 'covers': 1.0, 'definitely': 1.0, 'extra': 2.0, 'unlike': 1.0, 'in': 3.0, 'zippers': 1.0, 'yucky': 1.0, 'make': 1.0, 'your': 1.0, 'put': 2.0, 'on': 4.0, 'to': 3.0, 'all': 3.0, 'have': 1.0, 'others': 1.0, 'wobbly': 1.0, 'don': 1.0, 'up': 2.0, 'and': 4.0, 'pillow': 1.0, 'own': 1.0, 'you': 1.0}
Word element => {'health': 1.0, 'sanity': 1.0, 'choices': 1.0, 'fabric': 1.0, 'similar': 1.0, 'are': 1.0, 'went': 1.0, 'threw': 1.0, 'shopping': 1.0, 'preserve': 1.0, 'debut': 1.0, 'n': 1.0, 'shop': 2.0, 'adjusted': 1.0, 'placard': 1.0, 'dont': 2.0, 'they': 1.0, 'while': 1.0, 'help': 1.0, 'both': 1.0, 'barely': 1.0, 'together': 1.0, 'wrapping': 1.0, 'clips': 1.0, 'so': 1.0, 'had': 2.0, 'another': 1.0, 'shelf': 1.0, 'hid': 1.0, 'hands': 2.0, 'two': 2.0, 'will': 1.0, 'could': 2.0, 'away': 1.0, 'hip': 1.0, 'did': 1.0, 'many': 1.0, 'baby': 2.0, 'better': 1.0, 'flip': 1.0, 'names': 1.0, 'but': 1.0, 'unzip': 1.0, 'perhaps': 1.0, 'most': 2.0, 'back': 4.0, 'dine': 1.0, 'cart': 6.0, 'carrying': 1.0, 'sort': 1.0, 'imitators': 1.0, 'belts': 2.0, 'bag': 4.0, 'simple': 1.0, 'eek': 1.0, 'drop': 1.0, 've': 1.0, 'parking': 1.0, 'month': 1.0, 'pieces': 1.0, 'truly': 1.0, 'it': 11.0, 'covers': 1.0, '8': 1.0, 'carts': 1.0, 'straps': 1.0, 'hand': 3.0, 'too': 1.0, 'lot': 1.0, 'one': 4.0, 'moved': 1.0, 'get': 1.0, 'months': 1.0, 'that': 6.0, 'advertising': 1.0, 'into': 2.0, 'store': 3.0, 'attach': 1.0, 'purchased': 2.0, 'a': 5.0, 'preferred': 1.0, 's': 4.0, 'to': 5.0, 'lots': 1.0, 'waist': 1.0, 'experimentation': 1.0, 'passersby': 1.0, 'i': 9.0, 'just': 1.0, 'car': 1.0, 'err': 1.0, 'its': 3.0, 'on': 6.0, 'any': 1.0, 'online': 1.0, 'your': 4.0, 'trip': 1.0, 'and': 12.0, 'my': 3.0, 'necessity': 1.0, 'requires': 1.0, 'diaper': 1.0, 'finally': 2.0, 'forgotten': 1.0, 'seat': 2.0, 'in': 9.0, 'suckered': 1.0, 'handle': 1.0, 'is': 2.0, 'around': 1.0, 'best': 1.0, 'the': 22.0, 'of': 5.0, 'there': 3.0, 'put': 1.0, 'among': 1.0, 'shoulder': 2.0, '2': 1.0, 'or': 2.0, 'out': 3.0, 'with': 6.0, 'elastic': 1.0, 'stores': 1.0, 'few': 2.0, 'this': 2.0, 'go': 1.0, 'purchases': 1.0, 'tried': 2.0, 'points': 1.0, 'pocket': 1.0, 'up': 1.0, 'price': 1.0, 'product': 4.0, 'child': 2.0, 'by': 1.0, 'home': 1.0, 'pull': 1.0, 'old': 1.0, 'edged': 1.0, 'cover': 2.0, 'about': 1.0, 'whole': 1.0, 'work': 1.0, 'open': 1.0, 'over': 2.0, 'additionally': 1.0, 'tired': 1.0, 'buggy': 3.0, 'convenient': 1.0, 'uniquely': 1.0, 'ease': 1.0, 'adds': 1.0, 'protection': 1.0, 'generous': 1.0, 'from': 2.0, 'further': 1.0, 'separate': 1.0, 'an': 1.0, 'other': 3.0, 'apparently': 1.0, 'didnt': 1.0, 'secure': 1.0, 'itself': 1.0, 'not': 4.0, 'be': 2.0, 'comfortable': 1.0, 'has': 1.0, 'shape': 1.0, 'storage': 1.0, 'quickly': 1.0, 'only': 3.0, 'options': 1.0, 'unlike': 1.0, 'grocery': 1.0, 'germs': 1.0, 'w': 1.0, 'imitation': 1.0, 'came': 1.0, 'popular': 1.0}
Word element => {'find': 1.0, 'trunk': 1.0, 'get': 1.0, 'no': 1.0, 's': 1.0, 'carseat': 1.0, 'great': 1.0, 'kind': 1.0, 'rolls': 1.0, 'shopping': 1.0, 'done': 1.0, 'toys': 1.0, 'always': 1.0, 'has': 2.0, 'way': 1.0, 'would': 1.0, 'knew': 1.0, 'as': 2.0, 'tow': 1.0, 'hand': 1.0, 'bag': 1.0, 'using': 3.0, 'like': 2.0, 'features': 1.0, 'his': 1.0, 'was': 1.0, 'store': 1.0, 'right': 1.0, 'pillow': 2.0, 'own': 1.0, 'be': 1.0, 'product': 2.0, 'for': 2.0, 'not': 1.0, 'cups': 1.0, 'stores': 1.0, 'looks': 1.0, 'my': 3.0, 'spokesperson': 1.0, 'all': 1.0, 'fits': 2.0, 'place': 1.0, 'loops': 1.0, 'one': 1.0, 'love': 2.0, 'yet': 2.0, 'only': 1.0, 'and': 7.0, 'up': 4.0, 'don': 1.0, 'easily': 1.0, 'that': 2.0, 'been': 1.0, 'got': 1.0, 'available': 1.0, 'friends': 1.0, 'ready': 1.0, 'kids': 1.0, 'this': 3.0, 'were': 1.0, 'full': 1.0, 'we': 7.0, 'go': 1.0, 'a': 4.0, 't': 3.0, 'i': 8.0, 'need': 2.0, 'feature': 1.0, 'restaurants': 1.0, 'opened': 2.0, 'easy': 1.0, 'bottles': 1.0, 'home': 1.0, 'it': 18.0, 'at': 4.0, 'is': 2.0, 'wonderful': 1.0, 'us': 1.0, 'son': 1.0, 'newest': 1.0, 'so': 6.0, 'can': 1.0, 'sleeping': 1.0, 'they': 1.0, 'aren': 1.0, 'pocket': 1.0, 'quite': 1.0, 'buggybagg': 1.0, 'cart': 1.0, 'on': 3.0, 'floor': 1.0, 'do': 1.0, 'put': 1.0, 'just': 1.0, 'large': 1.0, 'to': 7.0, 'high': 1.0, 'length': 1.0, 'm': 1.0, 'in': 4.0, 'the': 15.0, 'ds': 1.0, 'of': 4.0, 'perfectly': 1.0, 'back': 1.0, 'saying': 1.0, 'flap': 1.0, 'sit': 1.0, 'when': 4.0, 'looked': 1.0, 'chairs': 1.0, 'have': 3.0, 'are': 2.0, 'rope': 1.0, 'if': 1.0, 'front': 1.0, 'throws': 1.0, 'stop': 1.0, 'pick': 1.0, 'telling': 1.0, 'about': 1.0}
Word element => {'compare': 1.0, 'fitted': 1.0, 'all': 4.0, 'fits': 1.0, 'flip': 2.0, 'back': 2.0, 'look': 1.0, 'at': 1.0, 'too': 2.0, 'cart': 5.0, 'padding': 2.0, 'behind': 1.0, 'about': 1.0, 'you': 2.0, 'that': 1.0, 'because': 2.0, 'insert': 1.0, 'under': 1.0, 'if': 1.0, 'zippered': 2.0, 'stay': 1.0, 'pillow': 2.0, 'the': 19.0, 'of': 3.0, 'in': 5.0, 'removable': 1.0, 'is': 2.0, 'turn': 1.0, 'can': 5.0, 'so': 2.0, 'zips': 1.0, 'handle': 1.0, 'people': 1.0, 'edges': 1.0, 'coupons': 1.0, 'features': 1.0, 'by': 3.0, 'bottles': 1.0, 'plop': 1.0, 'this': 4.0, 'secures': 1.0, 'still': 1.0, 'don': 1.0, 'looks': 2.0, 'compartments': 1.0, 'me': 1.0, 'my': 2.0, '9': 2.0, 'keep': 1.0, 'stopped': 1.0, 'makeup': 1.0, 'with': 3.0, 'prop': 1.0, '4': 2.0, 'well': 2.0, 'very': 1.0, 'they': 2.0, 'carts': 2.0, 'hand': 1.0, 'something': 1.0, 'getting': 1.0, 'comfy': 1.0, 'contents': 1.0, 'on': 2.0, 'buckled': 3.0, 'long': 1.0, 'costco': 1.0, 'perfectly': 1.0, 'black': 1.0, 'x': 5.0, 'has': 4.0, 'part': 2.0, 'baby': 6.0, 't': 5.0, 'belt': 1.0, 'sides': 1.0, 'small': 1.0, 'mini': 1.0, 'shopping': 1.0, 'how': 1.0, 'cold': 1.0, 'to': 11.0, 'sit': 1.0, 'as': 4.0, 'up': 3.0, 'diaper': 2.0, 'heavy': 1.0, 'asking': 1.0, 'supported': 1.0, 'covering': 1.0, 'like': 4.0, 'cheap': 1.0, 'sofa': 1.0, 'over': 3.0, '18': 1.0, 'tons': 1.0, 'tether': 1.0, 'backup': 1.0, 'get': 1.0, 'stays': 1.0, 'it': 11.0, 'be': 1.0, 'padded': 1.0, 'shower': 1.0, 'comfortable': 1.0, 'for': 4.0, '6': 1.0, 'one': 3.0, 'grocery': 1.0, 'onto': 1.0, 'loops': 1.0, 'difficult': 1.0, 'waist': 1.0, 's': 3.0, 'doesn': 2.0, 'ointment': 1.0, 'also': 2.0, 'shopper': 1.0, 'used': 1.0, 'wide': 1.0, 'pad': 1.0, 'etc': 2.0, 'especially': 1.0, 'use': 1.0, 'smaller': 2.0, 'wash': 1.0, 'purpose': 1.0, 'big': 1.0, 'nice': 1.0, 'doubles': 1.0, 'nap': 1.0, 'a': 10.0, 'bag': 2.0, 'large': 1.0, 'them': 1.0, '19': 1.0, '11': 1.0, 'coat': 1.0, 'secure': 1.0, 'pocket': 1.0, 'diapers': 1.0, 'two': 2.0, 'packets': 1.0, 'attach': 1.0, '1': 1.0, 'neatly': 1.0, 'attached': 1.0, 'surfaces': 1.0, '2': 1.0, 'other': 1.0, 'wallet': 1.0, 'unzip': 1.0, 'elastic': 1.0, 'hold': 1.0, 'folded': 1.0, 'pink': 1.0, 'itself': 1.0, 'formula': 2.0, 'dry': 1.0, 'size': 1.0, 'duffel': 1.0, '24': 1.0, 'strap': 2.0, 'put': 1.0, 'diameter': 1.0, 'washable': 1.0, 'exterior': 1.0, 'canvas': 1.0, 'd': 1.0, 'n': 1.0, 'rain': 1.0, 'machine': 2.0, 'frequently': 1.0, 'cover': 1.0, 'will': 1.0, 'have': 1.0, 'see': 1.0, 'runs': 1.0, 'just': 2.0, 'and': 5.0, 'warm': 1.0, 'tried': 1.0, 'easy': 2.0, 'comes': 1.0, 'bru': 1.0, 'while': 1.0, 've': 1.0, 'clean': 1.0, 'supermarket': 1.0, 'almost': 1.0, 'no': 1.0, 'i': 4.0, 'simple': 1.0, 'goes': 1.0, 'into': 3.0, 'fabric': 1.0, 'through': 1.0, 'safe': 1.0, 'quality': 1.0, 'cap': 1.0}
Word element => {'each': 1.0, 'on': 1.0, 'pass': 1.0, 's': 1.0, 'mom': 1.0, 'items': 1.0, 'must': 1.0, 'those': 1.0, 'recommend': 1.0, 'definitely': 1.0, 'but': 1.0, 'highchairs': 1.0, 'restaurant': 1.0, 'week': 1.0, 'times': 1.0, 'still': 1.0, 'months': 1.0, '16': 1.0, 'daughter': 1.0, 'anymore': 1.0, 'otherwise': 1.0, 'best': 1.0, 'or': 1.0, 'now': 1.0, 'worth': 1.0, 'to': 5.0, 'have': 3.0, 'zipper': 1.0, 'pocket': 1.0, 'reviews': 1.0, 'in': 5.0, 'keys': 1.0, 'wallet': 1.0, 'go': 1.0, 'a': 6.0, 'can': 2.0, 'that': 4.0, 'love': 1.0, 'snacks': 1.0, 'don': 2.0, 'price': 1.0, 'product': 3.0, 'child': 1.0, 'up': 2.0, 'is': 6.0, 'around': 1.0, 'before': 1.0, 'places': 1.0, 'everything': 1.0, 'reading': 1.0, 'hand': 1.0, 'hold': 1.0, 'has': 1.0, 'makes': 1.0, 'did': 1.0, 'one': 3.0, 'lot': 1.0, 'throw': 1.0, 'fantastic': 1.0, 'sit': 1.0, 'when': 3.0, 'you': 1.0, 'well': 1.0, 'i': 12.0, 'two': 1.0, 'prop': 1.0, 'thing': 2.0, 'about': 1.0, 'pillow': 1.0, 'and': 8.0, 'diaper': 1.0, 'of': 2.0, 'the': 11.0, 'least': 1.0, 'connecting': 1.0, 'purse': 1.0, 'hands': 1.0, 'for': 1.0, 'such': 1.0, 'my': 2.0, 'learning': 1.0, 'cart': 4.0, 'bag': 1.0, 'toys': 1.0, 'cover': 1.0, 'just': 1.0, 'placed': 1.0, 'research': 1.0, 'this': 5.0, 'lug': 1.0, 'it': 8.0, 'covers': 1.0, 'she': 2.0, 'bought': 1.0, 'essential': 1.0, 'removed': 1.0, 'infant': 1.0, 'with': 2.0, 'elastic': 1.0, 'arm': 1.0, 'all': 3.0, 'an': 1.0, 'other': 2.0, 'way': 1.0, 'fit': 1.0, 't': 2.0, 'require': 1.0, 'there': 1.0, 'loops': 1.0, 'be': 1.0, 'drink': 1.0, 'used': 2.0, 'time': 1.0, 'was': 2.0, 'tight': 1.0, 'would': 2.0, 'lay': 1.0, 'use': 4.0, 'her': 2.0, 'several': 1.0, 'down': 1.0, 'also': 2.0, 'are': 1.0, 'first': 1.0}
Word element => {'anywhere': 1.0, 'carry': 1.0, 'zipper': 1.0, 'a': 1.0, 'did': 1.0, 'glad': 1.0, 'you': 1.0, 'am': 1.0, 'best': 1.0, 'husband': 1.0, 'and': 4.0, 'do': 1.0, 'so': 4.0, 'zip': 1.0, 'everthing': 1.0, 'ever': 1.0, 'shopping': 1.0, 'has': 2.0, 'does': 1.0, 'before': 1.0, 'i': 6.0, 'about': 1.0, 'baby': 3.0, 'it': 8.0, 'this': 2.0, 'he': 1.0, 'with': 2.0, 'first': 1.0, 'decided': 1.0, 'one': 3.0, 'comfortable': 1.0, 'picky': 1.0, 'love': 1.0, 'for': 1.0, 'is': 4.0, 'purchase': 1.0, 'my': 3.0, 'the': 3.0, 'cart': 2.0, 'buggybagg': 1.0, 'cover': 2.0, 'loves': 1.0, 'that': 4.0, 'easy': 1.0, 'use': 1.0, 'can': 2.0, 'set': 1.0, 'up': 2.0, 'hand': 1.0, 'hold': 1.0, 'very': 1.0, 'read': 1.0, 'little': 1.0, 'to': 3.0, 'our': 1.0, 'all': 1.0, 'reviews': 1.0}
Word element => {'when': 1.0, 'so': 1.0, 'folds': 1.0, 'touching': 1.0, 'not': 1.0, 'germy': 1.0, 's': 1.0, 'that': 1.0, 'mind': 1.0, 'up': 1.0, 'of': 1.0, 'peace': 1.0, 'in': 1.0, 'gives': 1.0, 'very': 2.0, 'happy': 1.0, 'my': 1.0, 'hand': 1.0, 'she': 1.0, 'easy': 1.0, 'use': 1.0, 'cover': 1.0, 'how': 1.0, 'baby': 2.0, 'i': 2.0, 'cart': 2.0, 'shopping': 2.0, 'one': 1.0, 'love': 1.0, 'can': 1.0, 'well': 1.0, 'a': 2.0, 'is': 3.0, 'it': 3.0, 'with': 2.0, 'this': 2.0, 'its': 1.0, 'to': 1.0, 'hold': 1.0, 'great': 1.0, 'the': 1.0, 'done': 1.0, 'me': 1.0, 'and': 3.0, 'arrange': 1.0, 'padded': 1.0, 'quickly': 2.0}
Word element => {'on': 1.0, 'sit': 1.0, 'cushion': 1.0, 'him': 1.0, 'that': 1.0, 'also': 1.0, 'but': 1.0, 'germs': 1.0, 'only': 1.0, 'not': 1.0, 'he': 1.0, 'in': 1.0, 'content': 1.0, 'baby': 1.0, 'lot': 1.0, 'protected': 1.0, 'easy': 1.0, 'was': 1.0, 'all': 1.0, 'to': 3.0, 'and': 4.0, 'shopped': 1.0, 'accessories': 1.0, 'worth': 1.0, 'pay': 1.0, 'the': 2.0, 'comfortable': 1.0, 'feel': 1.0, 'great': 1.0, 'from': 1.0, 'hesistant': 1.0, 'bags': 1.0, 'while': 1.0, 'one': 2.0, 'well': 1.0, 'bag': 1.0, 'this': 2.0, 'it': 4.0, 'with': 2.0, 'although': 1.0, 'of': 1.0, 'is': 4.0, 'more': 1.0, 'around': 1.0, 'had': 1.0, 'operate': 1.0, 'i': 5.0, 'pockets': 1.0, 'love': 1.0, 'for': 3.0, 'product': 1.0, 'expensive': 1.0, 'than': 1.0, 'providing': 1.0, 'these': 1.0, 'some': 1.0, 'others': 1.0, 'have': 1.0, 'seen': 1.0, 'really': 1.0, 'every': 1.0, 'penny': 1.0, 'a': 3.0, 's': 2.0, 'hand': 1.0, 'are': 1.0, 'wipes': 1.0, 'my': 1.0}
Word element => {'highly': 1.0, 'recomend': 1.0, 'shopping': 1.0, 'how': 1.0, 'grocery': 1.0, 'when': 1.0, 'am': 1.0, 'while': 1.0, 'would': 2.0, 'something': 1.0, 'so': 1.0, 'down': 1.0, 'inside': 1.0, 'loops': 1.0, 'of': 1.0, 'one': 1.0, 'hook': 1.0, 'print': 1.0, 'animal': 1.0, 'support': 1.0, 'periods': 1.0, 'long': 1.0, 'sit': 1.0, 'can': 1.0, 'wrapped': 1.0, 'sam': 1.0, 'large': 2.0, 'club': 1.0, 'belt': 1.0, 'like': 1.0, 'play': 1.0, 'and': 2.0, 'not': 1.0, 'me': 1.0, 'on': 2.0, 'likes': 1.0, 'has': 4.0, 'cart': 2.0, 'coverage': 1.0, 'this': 3.0, 'with': 2.0, 'cover': 1.0, 'she': 2.0, 'it': 4.0, 'month': 1.0, 'only': 1.0, 'works': 1.0, 'her': 3.0, 'nice': 1.0, 'great': 2.0, 'without': 1.0, 'the': 6.0, 'fits': 2.0, 'my': 2.0, '7': 1.0, 'right': 1.0, 'old': 1.0, 'i': 6.0, 'product': 1.0, 'for': 3.0, 'love': 1.0, 'whatever': 1.0, 'daughter': 2.0, 'that': 2.0, 'yet': 1.0, 'bottles': 1.0, 'pockets': 1.0, 'diapers': 1.0, 'else': 1.0, 'toys': 1.0, 'need': 1.0, 'all': 1.0, 'to': 4.0, 'have': 1.0, 's': 1.0, 'a': 1.0, 'middle': 1.0, 'carts': 1.0, 'safty': 1.0, 'fall': 1.0, 'say': 1.0, 'is': 3.0, 'around': 1.0, 'help': 1.0, 'since': 1.0, 'keep': 1.0, 'up': 2.0}
Word element => {'carry': 1.0, 'ordered': 1.0, 'way': 1.0, '19months': 1.0, 'now': 1.0, 'one': 1.0, 'day': 1.0, 'from': 1.0, 'used': 1.0, 'that': 1.0, 'been': 1.0, 'has': 1.0, 'wear': 1.0, 'little': 1.0, 'is': 3.0, 'everywhere': 1.0, 'drag': 1.0, 'have': 2.0, 'car': 1.0, 'keep': 1.0, 'usually': 1.0, 'showing': 1.0, 'it': 4.0, 'etc': 1.0, 'two': 1.0, 'i': 6.0, 'old': 1.0, 'clasped': 1.0, 'out': 1.0, 'so': 1.0, 'ointment': 1.0, 'of': 2.0, 'don': 1.0, 'child': 3.0, 'up': 1.0, 'plenty': 1.0, 'baby': 1.0, 'clothes': 1.0, 'diapers': 1.0, 'on': 1.0, 'put': 1.0, 'to': 2.0, 'all': 1.0, 'inside': 1.0, 'nursing': 2.0, 'room': 1.0, 'sanitizer': 1.0, 'wipes': 1.0, 'sufficient': 1.0, 'until': 1.0, 'someone': 1.0, 'was': 3.0, 'my': 4.0, 'snacks': 1.0, 'for': 2.0, 'duo': 1.0, 'year': 1.0, 'toys': 1.0, 'need': 1.0, 'bag': 2.0, 'take': 1.0, 'this': 3.0, 'with': 2.0, 'outings': 1.0, 'books': 1.0, 'there': 1.0, 'gallon': 1.0, 'skip': 1.0, 'size': 1.0, 't': 1.0, 's': 1.0, 'a': 3.0, 'could': 1.0, 'and': 4.0, 'tuck': 1.0, 'ziplock': 1.0, 'wrap': 2.0, 'the': 6.0, 'flap': 1.0, 'hop': 1.0, 'if': 2.0, 'being': 1.0, 'left': 1.0, 'but': 1.0, 'change': 1.0, 'else': 1.0, 'would': 1.0, 'in': 3.0}
Word element => {'up': 1.0, 'over': 1.0, 'child': 1.0, 'live': 1.0, 'less': 1.0, 'means': 1.0, 'also': 1.0, 'only': 1.0, 'infants': 1.0, 'by': 1.0, 'should': 1.0, 'sense': 1.0, 'no': 1.0, 'it': 2.0, 'years': 1.0, '2': 1.0, 'north': 1.0, 'training': 1.0, 'so': 1.0, 'potty': 1.0, 'in': 1.0, 'age': 1.0, 'with': 1.0, 'making': 1.0, 'your': 1.0, 'on': 1.0, 'for': 2.0, 'fit': 1.0, 'style': 1.0, 'me': 1.0, 'not': 2.0, 'year': 1.0, 'sign': 1.0, 'couple': 1.0, 'days': 1.0, 'plus': 1.0, 'fraying': 2.0, 'a': 4.0, 'of': 6.0, 'there': 1.0, 'anymore': 1.0, 'was': 2.0, 'had': 1.0, 'be': 2.0, 'within': 1.0, 'fabric': 2.0, 'quality': 1.0, 'all': 2.0, 'to': 6.0, 'as': 4.0, 'match': 1.0, 'and': 3.0, 'soon': 1.0, 'far': 1.0, 'young': 1.0, 'labeled': 1.0, 'makes': 1.0, 'worthless': 1.0, 'old': 2.0, 'noticed': 1.0, 'i': 3.0, 'received': 1.0, 'expectations': 1.0, 'does': 1.0, 'sized': 1.0, 'use': 2.0, 'this': 5.0, 'diaper': 1.0, 'changing': 6.0, 'that': 1.0, 'at': 2.0, 'lot': 1.0, 'being': 1.0, 'frayed': 1.0, 'material': 1.0, 'the': 10.0, 'hanging': 1.0, 'pad': 6.0, 'off': 1.0, 'did': 1.0, 'melt': 1.0, 'ends': 1.0, 'stop': 1.0, 'coverage': 1.0, 'design': 1.0, 'hyped': 1.0, 'poor': 1.0, 'very': 1.0, 'construction': 1.0, 'is': 2.0, 'zipper': 1.0, 'small': 2.0, 'underneath': 1.0, 'my': 1.0, 'minimum': 1.0, 'average': 2.0, 'one': 1.0}
Word element => {'to': 1.0, 'good': 1.0, 'station': 1.0, 'the': 1.0, 'must': 1.0, 'changing': 1.0, 'a': 2.0, 'go': 2.0, 'in': 2.0, 'this': 2.0, 'with': 1.0, 'on': 1.0, 'am': 1.0, 'i': 1.0, 'totally': 1.0, 'bottle': 1.0, 'your': 2.0, 'love': 1.0, 'for': 1.0, 'parents': 1.0, 'just': 1.0, 'bag': 1.0, 'drop': 1.0, 'and': 2.0, 'regular': 1.0}
Word element => {'isn': 1.0, 'water': 1.0, 'granola': 1.0, 'of': 1.0, 'or': 1.0, 'bars': 1.0, 'backpack': 1.0, 'in': 1.0, 'fits': 1.0, 'mat': 1.0, 'a': 2.0, 'wipes': 1.0, 'diapers': 1.0, 'bag': 3.0, 'huge': 1.0, 'and': 3.0, 'need': 1.0, 'everything': 1.0, 'girly': 1.0, 'you': 3.0, 't': 1.0, 'nicely': 1.0, 'the': 1.0, 'then': 1.0, 'filled': 1.0, 'is': 1.0, 'really': 1.0, 'two': 1.0, 'carry': 1.0, 'another': 1.0, 'that': 1.0, 'realize': 1.0, 'have': 2.0, 'all': 1.0, 'this': 2.0, 'with': 1.0, 'first': 1.0, 'it': 1.0, 'kid': 1.0, 'can': 1.0}
Word element => {'area': 1.0, 'tiny': 1.0, 'bathroom': 1.0, 'restaurants': 1.0, 'the': 1.0, 'diapers': 1.0, 'all': 1.0, 'kid': 1.0, 'your': 1.0, 'long': 1.0, 'needs': 1.0, 'for': 1.0, 'parents': 1.0, 'extremely': 1.0, 'recommend': 1.0, 'as': 2.0, 'changing': 1.0, 'this': 2.0, 'it': 1.0, 'kit': 1.0, 'useful': 1.0, 'much': 1.0, 'avoids': 1.0, 'too': 1.0, 'or': 1.0, 'into': 1.0, 'is': 1.0, 'bringing': 1.0, 'clutter': 1.0}
Word element => {'daily': 1.0, 'use': 1.0, 'issues': 1.0, 'tear': 1.0, 'wear': 1.0, 'had': 1.0, 'not': 1.0, 'hand': 1.0, 'one': 1.0, 'with': 1.0, 'folds': 1.0, 'opens': 1.0, 'whole': 1.0, 'carrying': 1.0, 'instead': 1.0, 'only': 1.0, 'baby': 1.0, 'your': 1.0, 'need': 1.0, 'bag': 2.0, 'diaper': 1.0, 'of': 2.0, 'grab': 1.0, 'be': 1.0, 'have': 2.0, 'zipper': 1.0, 'diapers': 1.0, 'an': 2.0, 'back': 1.0, 'and': 9.0, 'reusable': 1.0, 'pocket': 4.0, 'you': 2.0, 'when': 1.0, 'easily': 1.0, 'mesh': 1.0, 'go': 1.0, 'a': 2.0, 'has': 1.0, 'two': 1.0, 'i': 3.0, 'by': 1.0, 'handy': 1.0, 'little': 1.0, 'this': 4.0, 'it': 2.0, 'is': 3.0, 'wiped': 1.0, 'anything': 1.0, 'product': 1.0, 'for': 2.0, 'love': 1.0, 'great': 1.0, 'the': 3.0, 'so': 1.0, 'wipes': 1.0, 'any': 1.0, 'to': 5.0, 'stash': 1.0, 'pad': 1.0, 'waterproof': 1.0, 'extra': 1.0, 'onesie': 1.0, 'in': 2.0, 'awesome': 1.0, 'fold': 1.0, 'skiphop': 1.0, 'up': 2.0, 'case': 1.0, 'that': 1.0, 'changing': 1.0, 'change': 1.0, 'can': 1.0, 'down': 1.0, 'bathroom': 1.0, 'my': 1.0, 'another': 1.0, 'fits': 1.0}
Word element => {'time': 1.0, 'less': 1.0, 'lot': 1.0, 'a': 1.0, 'sooner': 1.0, 'door': 1.0, 'out': 1.0, 'bought': 1.0, 'be': 1.0, 'always': 1.0, 'and': 2.0, 'any': 1.0, 'am': 1.0, 'had': 1.0, 'to': 1.0, 'ready': 1.0, 'knowing': 1.0, 'that': 1.0, 'love': 1.0, 'can': 1.0, 'packed': 1.0, 'bag': 1.0, 'i': 5.0, 'only': 1.0, 'it': 2.0, 'with': 1.0, 'wish': 1.0, 'go': 1.0, 'throw': 1.0, 'the': 2.0, 'essentials': 1.0, 'at': 1.0, 'all': 1.0, 'times': 1.0, 'in': 2.0}
Word element => {'about': 1.0, 'handy': 1.0, 'and': 2.0, 'me': 1.0, 'back': 1.0, 'half': 1.0, 'one': 1.0, 'love': 2.0, 'for': 2.0, 'i': 1.0, 'take': 1.0, 'bag': 1.0, 'anywhere': 1.0, 'my': 2.0, 'functional': 1.0, 'this': 2.0, 'quick': 1.0, 'with': 1.0, 'diaper': 1.0, 't': 1.0, 'a': 2.0, 'throw': 2.0, 'black': 1.0, 'trip': 2.0, 'all': 1.0, 'essentials': 1.0, 'hiking': 2.0, 'in': 3.0, 'good': 1.0, 'day': 1.0, 'changing': 1.0, 'little': 1.0, 'very': 1.0, 'truck': 1.0, 'it': 2.0, 'she': 1.0, 'the': 3.0, 'discrete': 1.0, 'its': 1.0, 'say': 1.0, 'is': 1.0, 'around': 1.0, 'comes': 1.0, 'extremely': 1.0, 'enough': 1.0, 'pad': 1.0, 'anytime': 1.0, 'can': 1.0}
Word element => {'for': 1.0, 'material': 1.0, 'what': 1.0, 'related': 1.0, 'baby': 1.0, 'some': 1.0, 'could': 1.0, 'maker': 1.0, 'certainly': 1.0, 'bright': 1.0, 'black': 1.0, 'pricey': 1.0, 'that': 1.0, 'dingy': 1.0, 'dirty': 1.0, 'disappointed': 1.0, 'so': 1.0, 'was': 3.0, 'practical': 1.0, 'dotted': 1.0, 'but': 1.0, 'gray': 1.0, 'just': 1.0, 'looked': 2.0, 'this': 1.0, 'it': 2.0, 'color': 1.0, 'item': 1.0, 'selection': 1.0, 'the': 2.0, 'red': 1.0, 'get': 1.0, 'and': 1.0, 'design': 1.0, 'which': 1.0}
Word element => {'didn': 1.0, 'need': 1.0, 'basis': 1.0, 'might': 1.0, 'some': 1.0, 'like': 1.0, 'using': 3.0, 'hand': 1.0, 'well': 1.0, 'i': 1.0, 'make': 1.0, 'on': 2.0, 'your': 1.0, 'folks': 1.0, 'doesn': 1.0, 'was': 2.0, 'but': 4.0, 'most': 1.0, 'liked': 1.0, 'no': 1.0, 'makes': 1.0, 'non': 1.0, 'has': 1.0, 'room': 1.0, 'living': 1.0, 'his': 1.0, 'and': 5.0, 'too': 1.0, 'is': 2.0, 'more': 1.0, 'station': 1.0, 'padding': 1.0, 'cold': 1.0, 'really': 2.0, 'it': 10.0, 'this': 3.0, 't': 3.0, 'we': 6.0, 'a': 8.0, 's': 1.0, 'slim': 1.0, 'diaper': 3.0, 'of': 3.0, 'the': 8.0, 'started': 2.0, 'baby': 1.0, 'son': 1.0, 'in': 3.0, 'out': 2.0, 'pad': 3.0, 'enough': 1.0, 'use': 1.0, 'hassle': 1.0, 'occasionally': 1.0, 'comfortable': 1.0, 'when': 1.0, 'that': 3.0, 'much': 1.0, 'changing': 2.0, 'case': 1.0, 'our': 1.0, 'to': 3.0, 'would': 1.0, 'each': 1.0, 'wipeable': 1.0, 'get': 1.0, 'towel': 1.0, 'newborn': 1.0, 'porous': 1.0, 'may': 1.0, 'wipes': 2.0, 'which': 1.0, 'good': 1.0, 'us': 1.0, 'compact': 2.0, 'also': 1.0, 'means': 1.0, 'aren': 1.0, 'they': 1.0, 'plastic': 1.0, 'design': 1.0, 'y': 1.0, 'down': 1.0, 'feeling': 1.0, 'fabric': 1.0, 'for': 3.0, 'car': 1.0, 'dry': 1.0, 'set': 1.0, 'used': 1.0, 'change': 2.0, 'up': 1.0, 'time': 2.0, 'wanted': 1.0, 'now': 1.0, 'just': 1.0, 'lay': 1.0, 'very': 2.0, 'work': 1.0, 'daily': 1.0, 'hard': 1.0, 'open': 1.0, 'certainly': 1.0, 'still': 1.0, 'if': 1.0, 'quickly': 1.0, 'be': 2.0, 'option': 1.0}
Word element => {'handy': 1.0, 'very': 1.0, 'stylish': 1.0, 'fun': 1.0, 'wide': 1.0, 'pad': 1.0, 'bunch': 1.0, 'i': 3.0, 'if': 1.0, 'an': 1.0, 'diapers': 1.0, 'expandable': 1.0, 'number': 1.0, 'this': 1.0, 'with': 1.0, 'it': 3.0, 'unit': 1.0, 'part': 1.0, 'bags': 1.0, 'clasp': 1.0, 'worth': 1.0, 'surprising': 1.0, 'waterproof': 1.0, 'definitely': 1.0, 'is': 2.0, 'pronto': 1.0, 'do': 1.0, 'pattern': 1.0, 'and': 3.0, 'ziplock': 1.0, 'hands': 1.0, 'the': 4.0, 'diaper': 1.0, 's': 1.0, 'a': 4.0, 'penny': 1.0, 'necessary': 1.0, 'of': 2.0, 'carry': 1.0, 'every': 1.0, 'use': 1.0, 'just': 1.0, 'wet': 1.0, 'outer': 1.0, 'change': 1.0, 'can': 2.0, 'pocket': 1.0, 'that': 1.0, 'give': 1.0, 'husband': 1.0, 'my': 1.0, 'has': 2.0, 'essentials': 1.0, 'in': 1.0, 'one': 1.0, 'disposal': 1.0, 'for': 2.0, 'our': 1.0, 'to': 3.0, 'all': 1.0, 'outside': 1.0, 'like': 1.0, 'hold': 1.0, 'wipes': 1.0}
Word element => {'money': 1.0, 'carry': 1.0, 'mommy': 1.0, 'almost': 1.0, 'like': 2.0, 'gifts': 1.0, 'daddy': 1.0, 'shower': 1.0, 'buy': 1.0, 'gotten': 1.0, 'son': 1.0, 'got': 1.0, 'diaper': 1.0, 'they': 1.0, 'freak': 1.0, 'around': 1.0, 'more': 2.0, 'entire': 1.0, 'the': 5.0, 'basically': 1.0, 'surprising': 1.0, 'bag': 2.0, 'also': 1.0, 'item': 2.0, 'found': 1.0, 'this': 4.0, 'it': 4.0, 'with': 1.0, 'i': 7.0, 'frilly': 1.0, 'for': 2.0, 'snacks': 1.0, 'love': 1.0, 'a': 3.0, 's': 6.0, 'm': 2.0, 'an': 1.0, 'have': 1.0, 'zipper': 1.0, 'not': 2.0, 'wrapped': 1.0, 'just': 2.0, 'into': 1.0, 'that': 2.0, 'up': 1.0, 'so': 1.0, 'little': 1.0, 'pouch': 1.0, 'throw': 1.0, 'because': 1.0, 'than': 2.0, 'in': 1.0, 've': 2.0, 'my': 2.0, 'worth': 1.0, 'cup': 1.0, 'and': 3.0, 'some': 2.0, 'out': 1.0, 'door': 1.0, 'used': 1.0, 'purse': 2.0, 'about': 1.0, 'to': 1.0, 'any': 1.0, 'them': 2.0, 'sippy': 1.0, 'baby': 1.0, 'organization': 1.0, 'other': 1.0}
Word element => {'want': 1.0, 'inside': 1.0, 'nicely': 1.0, 'folds': 1.0, 'out': 2.0, 'take': 1.0, 'up': 1.0, 'don': 1.0, 'lets': 1.0, 'instead': 1.0, 'putting': 1.0, 'taken': 1.0, 've': 1.0, 'purse': 1.0, 'bulky': 1.0, 'gets': 1.0, 'or': 1.0, 'even': 1.0, 'diapers': 1.0, '3': 1.0, 'stuff': 1.0, 'to': 4.0, 'more': 1.0, 'holds': 1.0, 'that': 1.0, 'basket': 1.0, 'case': 1.0, 'changing': 1.0, 'stick': 1.0, 'too': 1.0, 'and': 6.0, 'than': 1.0, 'sized': 1.0, 'generously': 1.0, 'this': 1.0, 'it': 6.0, 'with': 3.0, 'i': 5.0, 'try': 1.0, 'slim': 1.0, 'started': 1.0, 'just': 2.0, 'stashed': 1.0, 'my': 4.0, 'stroller': 2.0, 'diaper': 1.0, '2': 1.0, 'big': 1.0, 'great': 1.0, 'closet': 1.0, 're': 1.0, 'pad': 1.0, 'bag': 3.0, 'in': 3.0, 'using': 1.0, 'snacks': 1.0, 'for': 1.0, 'love': 1.0, 'days': 1.0, 'substantial': 1.0, 'after': 1.0, 'amount': 1.0, 'of': 3.0, 'good': 1.0, 'wipes': 1.0, 'who': 1.0, 't': 1.0, 'go': 2.0, 'a': 4.0, 's': 1.0, 'when': 1.0, 'you': 1.0, 'the': 4.0, 'travelling': 1.0, 'me': 1.0, 'not': 1.0, 'those': 1.0, 'little': 2.0, 'totes': 1.0, 'bottle': 1.0, 'changer': 1.0}
Word element => {'great': 1.0, 'use': 1.0, 'getting': 1.0, 'see': 1.0, 'are': 1.0, 'honestly': 1.0, 'less': 1.0, 'package': 1.0, 'makes': 1.0, 'off': 1.0, 'pad': 1.0, 'included': 1.0, 'one': 1.0, 'be': 2.0, 'better': 1.0, 'container': 1.0, 'quite': 1.0, 'sort': 1.0, 'short': 1.0, 'bag': 1.0, 'wet': 1.0, 'think': 1.0, 'and': 1.0, 'too': 1.0, 'there': 1.0, 'in': 1.0, 'high': 1.0, 'were': 1.0, 'even': 1.0, 'perhaps': 1.0, 'diapers': 2.0, 'toddler': 1.0, 'out': 4.0, 'long': 1.0, 'changer': 1.0, 'it': 3.0, 'nearly': 1.0, 'often': 1.0, 'my': 1.0, 'pull': 1.0, 'bit': 2.0, 'smaller': 1.0, 'the': 5.0, 'son': 1.0, 'really': 1.0, 'pronto': 1.0, 'probably': 1.0, 'me': 1.0, 'store': 1.0, 'was': 1.0, 'to': 1.0, 'but': 1.0, 'p': 1.0, 'you': 1.0, 'easily': 2.0, '30': 1.0, 'this': 2.0, 'wish': 1.0, 'ups': 1.0, 'awesome': 1.0, 'price': 1.0, 'd': 1.0, 'bulky': 1.0, 'about': 1.0, 'would': 1.0, 'allow': 1.0, 'of': 5.0, 'grocery': 1.0, '6': 1.0, 'stops': 1.0, 'known': 1.0, 'before': 1.0, 'dollars': 1.0, 'works': 1.0, 'have': 1.0, 'carry': 1.0, 'etc': 1.0, 'i': 5.0, '4': 1.0, 'than': 1.0, 'sized': 1.0, 'though': 1.0, 'wipes': 3.0, 'changing': 1.0, 'case': 1.0, 'well': 1.0, 'for': 3.0, 'is': 1.0, 'fear': 1.0, 'suited': 1.0, 'if': 2.0, 'zips': 1.0, 'a': 4.0, 'could': 2.0, 'might': 2.0, 'dry': 1.0, 'they': 1.0}
Word element => {'life': 1.0, 'make': 1.0, 'included': 1.0, 'seems': 1.0, 'ergonomic': 1.0, 'pockets': 1.0, 'items': 1.0, 'necessary': 1.0, 'of': 1.0, 'amount': 1.0, 'so': 1.0, 'have': 1.0, 'small': 1.0, 'is': 2.0, 'it': 8.0, 'much': 2.0, 'and': 3.0, 'ok': 1.0, 'worked': 1.0, 'fits': 1.0, 'another': 1.0, 'had': 1.0, 'store': 1.0, 'was': 1.0, 'all': 1.0, 'to': 5.0, 'the': 5.0, 'that': 2.0, 'bought': 1.0, 'one': 1.0, 'for': 1.0, 'i': 3.0, 'not': 1.0, 'would': 1.0, 'changer': 2.0, 'components': 1.0, 'out': 1.0, 'this': 2.0, 'cole': 1.0, 'pull': 1.0, 'better': 1.0, 'everything': 1.0, 'if': 1.0, 'jogging': 1.0, 'hold': 1.0, 'like': 1.0, 'snap': 1.0, 'how': 1.0, 'you': 2.0, 'can': 1.0, 'easier': 1.0, 'jj': 1.0, 'has': 1.0, 'bag': 1.0, 'need': 1.0, 'fair': 1.0, 'runs': 1.0, 'throw': 1.0, 'a': 1.0, 'we': 1.0, 'go': 1.0, 'in': 3.0, 'diaper': 2.0, 'stroller': 2.0, 'or': 1.0}
Word element => {'public': 1.0, 'in': 1.0, 'find': 1.0, 'used': 1.0, 'diapers': 1.0, 'many': 1.0, 'is': 2.0, 'change': 1.0, 'carry': 1.0, 'space': 1.0, 'don': 1.0, 'baby': 1.0, 'us': 1.0, 'daughter': 1.0, 'i': 1.0, 'old': 1.0, 'now': 1.0, 'love': 1.0, 'for': 1.0, 'the': 2.0, 'this': 1.0, 'with': 1.0, 'it': 1.0, 'my': 1.0, 'portable': 1.0, 'to': 5.0, 'as': 2.0, 'very': 1.0, 'changing': 1.0, 'need': 1.0, 'nice': 2.0, 'and': 2.0, '21': 1.0, 'months': 1.0, 'we': 2.0, 't': 1.0, 's': 1.0, 'when': 2.0, 'you': 2.0, 'just': 1.0, 'have': 1.0, 'out': 2.0, 'store': 1.0, 'opened': 1.0, 'compact': 1.0, 'alrge': 1.0, 'pillow': 1.0, 'especially': 1.0, 'run': 1.0, 'tables': 1.0}
Word element => {'50': 1.0, 'sell': 1.0, 'here': 1.0, 'especially': 1.0, 'lot': 1.0, 'saves': 1.0, 'australia': 1.0, 'recommend': 1.0, 'happily': 1.0, 'amazon': 1.0, 'use': 1.0, 'through': 2.0, 'tear': 1.0, 'started': 1.0, 'one': 1.0, 'first': 1.0, 'on': 1.0, 'are': 1.0, 'zip': 1.0, 'these': 1.0, 'quick': 1.0, 'pronto': 1.0, 'and': 4.0, 'the': 7.0, 'trip': 1.0, 'if': 1.0, 'want': 1.0, 'hop': 1.0, 'this': 2.0, 'full': 1.0, 'sometimes': 1.0, 'mat': 1.0, 'skip': 1.0, 'fantastic': 1.0, 'you': 3.0, 'is': 2.0, 'around': 1.0, 'for': 2.0, 'fit': 1.0, 'carry': 1.0, '40': 1.0, 'infant': 1.0, 'nappy': 2.0, 'bag': 1.0, 'need': 1.0, 't': 1.0, 'a': 4.0, 'retailers': 1.0, 'or': 3.0, 'broke': 1.0, 'second': 1.0, 'shops': 1.0, 'park': 1.0, 'change': 1.0, 'can': 1.0, 'as': 1.0, 'to': 3.0, 'crawler': 1.0, 'don': 1.0, 'up': 1.0, 'plastic': 1.0, '6': 1.0, 'of': 3.0, 'plus': 1.0, '4': 1.0, '5': 1.0, 'nappies': 1.0, 'in': 3.0, 'compartment': 2.0, 'pack': 1.0, 'wipes': 1.0, 'creams': 1.0, 'bags': 1.0, 'zipper': 1.0, 'purchase': 1.0, 'my': 2.0}
Word element => {'beautifully': 1.0, 'up': 1.0, 'cycle': 1.0, 'woolite': 1.0, 'dried': 1.0, 'little': 1.0, 'on': 1.0, 'put': 1.0, 'stand': 1.0, 'find': 1.0, 'times': 1.0, 'couldn': 1.0, 'floor': 1.0, 'restroom': 1.0, 'cleaned': 1.0, 'car': 1.0, 'back': 1.0, 'airplane': 1.0, 'airport': 1.0, 'jordan': 1.0, 'went': 1.0, 'travel': 1.0, 'recommended': 1.0, 'friend': 1.0, 'or': 1.0, 'everywhere': 1.0, 'it': 6.0, 'with': 1.0, 'quick': 1.0, 'reviews': 1.0, 't': 1.0, 'we': 1.0, 'a': 5.0, 'was': 2.0, 'england': 1.0, 'bag': 1.0, 'need': 1.0, 'to': 4.0, 'as': 1.0, 'decided': 1.0, 'change': 1.0, '2': 1.0, 'diaper': 1.0, 'the': 5.0, 'daughter': 1.0, 'baby': 1.0, 'neared': 1.0, 'delicate': 1.0, 'years': 1.0, 'there': 1.0, 'of': 2.0, 'washer': 1.0, 'reading': 1.0, 'carry': 1.0, 'and': 6.0, 'purse': 1.0, 'after': 1.0, 'i': 4.0, 'buy': 1.0, 'have': 1.0, 'me': 1.0, 'not': 1.0, 'been': 1.0, 'less': 1.0, 'disappointed': 1.0, 'air': 2.0, 'age': 1.0, 'in': 2.0, 'this': 1.0, 'full': 1.0, 'perfect': 2.0, 'my': 2.0, 'fits': 1.0, 'then': 1.0, 'albeit': 1.0, 'few': 1.0, 'just': 1.0, 'large': 1.0, 'is': 1.0, 'product': 1.0, 'for': 2.0, 'trips': 1.0}
Word element => {'head': 1.0, 'area': 1.0, 'there': 1.0, 'had': 1.0, 'other': 1.0, 'than': 1.0, 'at': 1.0, 'bigger': 1.0, 'padded': 1.0, 'big': 1.0, 'nice': 1.0, 'my': 1.0, 'happy': 1.0, 'carry': 1.0, 'in': 1.0, 'a': 1.0, 's': 3.0, 'sometime': 1.0, 'months': 1.0, '6': 1.0, 'i': 6.0, 'and': 4.0, 'very': 1.0, 'it': 5.0, 'with': 1.0, 'perfect': 2.0, 'this': 1.0, 'now': 1.0, 'pads': 1.0, 'to': 1.0, 'changing': 1.0, 'been': 2.0, 'have': 2.0, 'using': 1.0, 'product': 1.0, 'for': 2.0, 'diaper': 1.0, 'the': 3.0, 'take': 1.0, 'sometimes': 1.0, 'just': 1.0, 'out': 2.0, 'own': 1.0, 'works': 1.0, 'you': 2.0, 'when': 1.0, 'bag': 1.0, 'need': 1.0, 'change': 1.0, 'is': 2.0, 'think': 1.0, 'on': 1.0, 'your': 1.0, 'baby': 2.0, 'whole': 1.0, 'thing': 1.0, 'about': 1.0, 'looked': 1.0, 'while': 1.0, 'are': 1.0, 'pad': 1.0}
Word element => {'months': 1.0, 'a': 1.0, 'after': 1.0, 'few': 1.0, 'broke': 1.0, 'zippers': 1.0, 'of': 2.0, 'one': 1.0, 'that': 1.0, 'only': 1.0, 'design': 1.0, 'we': 1.0, 'great': 1.0, 'it': 1.0, 'use': 2.0, 'all': 1.0, 'the': 2.0, 'is': 1.0, 'time': 1.0, 'problem': 1.0}
Word element => {'fine': 1.0, 'works': 1.0, 'strap': 2.0, 'shoulder': 1.0, 'wish': 1.0, 'have': 1.0, 'it': 1.0, 'this': 1.0, 'bag': 1.0, 'changer': 1.0, 'a': 2.0, 'mini': 1.0, 'my': 2.0, 'don': 1.0, 'baby': 1.0, 'but': 1.0, 'adore': 1.0, 'wrist': 1.0, 'i': 4.0, 'the': 1.0, 't': 1.0, 'more': 1.0, 'diaper': 1.0, 'daughter': 1.0, 'focus': 1.0, 'do': 1.0, 'lug': 1.0, 'and': 1.0, 'purse': 1.0, 'can': 1.0, 'had': 1.0, 'to': 1.0, 'now': 1.0, 'on': 1.0}
Word element => {'black': 1.0, 'were': 1.0, 'they': 1.0, 'thought': 1.0, 'd': 1.0, 'i': 1.0, 'edges': 1.0, 'stripe': 1.0, 'uptown': 1.0, 'gift': 1.0, 'everyone': 1.0, 'up': 1.0, 'get': 2.0, 'you': 1.0, 'your': 1.0, 'on': 2.0, 'diapers': 1.0, 'spare': 1.0, 'can': 1.0, 'change': 2.0, 'set': 1.0, 'built': 1.0, 'we': 1.0, 'a': 3.0, 's': 1.0, 'brown': 1.0, 'in': 1.0, 'for': 3.0, 'one': 3.0, 'handed': 1.0, 'space': 1.0, 'g': 1.0, 'clothing': 1.0, 'with': 3.0, 'it': 1.0, 'item': 1.0, 'note': 1.0, 'an': 1.0, 'wallets': 1.0, 'are': 2.0, 'these': 1.0, 'as': 1.0, 'our': 1.0, 'of': 1.0, 'them': 1.0, 'baby': 2.0, 'favorite': 1.0, 'wipes': 1.0, 'print': 1.0, 'items': 1.0, 'pad': 1.0, 'wallet': 1.0, 'handy': 1.0, 'wrist': 2.0, 'perfect': 1.0, 'this': 2.0, 'grip': 1.0, 'comes': 1.0, 'us': 1.0, 'and': 2.0, 'too': 1.0, 'pop': 1.0, 'everywhere': 1.0, 'the': 3.0, 'travelling': 1.0, 'plus': 1.0, 'e': 1.0, 'just': 2.0, 'restroom': 1.0, 'into': 1.0, 'changing': 1.0, 'room': 1.0}
Word element => {'others': 1.0, 'product': 1.0, 'overall': 1.0, 'needed': 1.0, 'cleaning': 1.0, 'better': 1.0, 'traveling': 1.0, 'wipe': 1.0, 'tables': 1.0, 'couches': 1.0, 'sink': 1.0, 'restroom': 1.0, 'really': 1.0, 'planes': 1.0, 'go': 1.0, 'on': 4.0, 'versatile': 1.0, 'wonderfully': 1.0, 'makes': 1.0, 'directions': 1.0, 'two': 1.0, 'etc': 1.0, 'pad': 1.0, 'open': 1.0, 't': 1.0, 'turnover': 1.0, 'able': 1.0, 'you': 1.0, 'different': 1.0, 'could': 1.0, 'week': 1.0, 'handed': 1.0, 'least': 1.0, 'time': 1.0, 'onto': 1.0, 'color': 1.0, 'some': 2.0, 'leak': 1.0, 'tend': 1.0, 'they': 1.0, 'recommend': 1.0, 'dirty': 1.0, 'hold': 1.0, 'prefold': 1.0, 'easy': 2.0, 'bit': 1.0, 'be': 3.0, 'disposable': 2.0, 'became': 1.0, 'to': 6.0, 'about': 1.0, 'would': 1.0, 'bulky': 1.0, 'its': 1.0, '3': 2.0, 'floor': 1.0, 'changing': 1.0, 'much': 1.0, 'do': 2.0, 'put': 1.0, 'shouldn': 1.0, 'then': 1.0, 'versatility': 1.0, 'we': 9.0, 'a': 6.0, 'city': 1.0, 'for': 5.0, 'flat': 1.0, 'have': 4.0, 'as': 1.0, 'leave': 1.0, 'in': 10.0, 'just': 1.0, 'our': 1.0, 'item': 1.0, 'folding': 1.0, 'your': 1.0, 'any': 1.0, 'sizes': 1.0, 'compact': 1.0, 'last': 1.0, 'large': 1.0, 'wipes': 3.0, 'enjoy': 1.0, 'if': 2.0, 'zippered': 1.0, 'pocket': 1.0, 'quite': 3.0, '1': 1.0, 'bring': 1.0, 'and': 7.0, 'one': 1.0, 'too': 2.0, 'diapers': 5.0, 'circumstances': 1.0, 'cloth': 3.0, 'even': 1.0, 'quality': 1.0, 'them': 1.0, 'variety': 1.0, 'does': 3.0, 'months': 1.0, 'used': 4.0, 'decided': 1.0, 'this': 4.0, 'it': 13.0, 'not': 2.0, 'far': 1.0, 'situations': 1.0, 'at': 1.0, 'is': 4.0, 'carry': 1.0, 'holds': 2.0, 'around': 2.0, 'purchased': 1.0, '6': 1.0, 'the': 11.0, 'of': 3.0, 'or': 1.0, 'i': 2.0, 'multiple': 1.0, 'ways': 1.0, 'quicker': 1.0, 'takes': 1.0, 'up': 2.0, 'use': 1.0, 'anyway': 1.0, 'bag': 1.0, 'but': 3.0, 'so': 3.0, 'can': 3.0, 'which': 1.0, 'good': 2.0, 'made': 1.0, 'ended': 1.0, 'live': 1.0, 'problem': 1.0, 'though': 1.0, 'thick': 1.0, 'regardless': 1.0, 'only': 2.0, 'quickly': 2.0, 'sense': 1.0, 'preferred': 1.0, 'counters': 1.0, 'what': 1.0, 'when': 3.0, 'out': 1.0, 'house': 2.0, 'very': 2.0, 'off': 1.0, 'airports': 1.0, 'tried': 1.0, 'own': 1.0, 'zip': 1.0, 'clean': 1.0, 'car': 1.0, 'great': 1.0, 'carrying': 1.0, 'gross': 1.0, 'case': 3.0}
Word element => {'anywhere': 1.0, 'can': 1.0, 'you': 1.0, 'clean': 1.0, 'each': 1.0, 'far': 1.0, 'small': 1.0, 'so': 1.0, 'have': 1.0, 'all': 1.0, 'and': 2.0, 'for': 1.0, 'one': 1.0, 'using': 1.0, 'up': 1.0, 'seemed': 1.0, 'a': 1.0, 'than': 1.0, 'but': 1.0, 'diaper': 2.0, 'the': 2.0, 'not': 1.0, 'because': 1.0, 'bag': 2.0, 'use': 1.0, 'got': 1.0, 'initially': 1.0, 'we': 3.0, 'neat': 1.0, 'two': 1.0, 'at': 1.0, 'carry': 1.0, 'when': 1.0, 'had': 1.0, 'to': 1.0, 'was': 1.0, 'father': 1.0, 'only': 1.0, 'nicer': 1.0, 'it': 2.0, 'this': 2.0, 'with': 1.0, 'her': 1.0, 'baby': 2.0, 'ended': 1.0}
Word element => {'issue': 1.0, 'had': 1.0, '6mo': 1.0, 'about': 1.0, 'having': 1.0, 'piping': 1.0, 'started': 1.0, 'however': 2.0, 'two': 1.0, 'at': 1.0, 'space': 2.0, 'second': 1.0, 'slip': 1.0, 'of': 3.0, 'worth': 1.0, 'have': 2.0, 'these': 1.0, 'the': 8.0, 'diaper': 1.0, 'ones': 1.0, 'enough': 1.0, 'are': 1.0, 'totes': 1.0, 'with': 2.0, 'it': 3.0, 'on': 1.0, 'diapers': 1.0, 'day': 1.0, 'to': 2.0, 'as': 1.0, 'also': 1.0, 't': 1.0, 'we': 3.0, 's': 2.0, 'a': 2.0, 'go': 1.0, 'wipes': 2.0, 'container': 1.0, 'bleeds': 1.0, 'is': 2.0, 'things': 1.0, 'terrible': 1.0, 'bought': 1.0, 'one': 2.0, 'color': 1.0, 'and': 2.0, 'plastic': 1.0, 'for': 2.0, 'where': 1.0, 'cheap': 1.0, 'fraying': 1.0, 'luckily': 1.0, 'cracks': 1.0, 'just': 1.0, 'easy': 1.0, 'this': 1.0, 'perfect': 1.0, 'soft': 1.0, 'after': 1.0, 'package': 1.0, 'that': 1.0, 'into': 1.0, 'haven': 1.0, 'goes': 1.0}
Word element => {'5': 1.0, 'used': 1.0, 'basis': 1.0, 'something': 1.0, 'are': 1.0, 'especially': 1.0, 'until': 1.0, 'an': 1.0, 'maybe': 1.0, 'comment': 1.0, 'sellers': 1.0, 'weekends': 1.0, 'on': 2.0, 'daily': 2.0, 'wouldn': 1.0, 'even': 1.0, 'looking': 1.0, 'buy': 1.0, 'days': 1.0, 'in': 1.0, 'that': 1.0, 'then': 2.0, 'loved': 1.0, 'one': 1.0, 'guess': 1.0, 'apart': 1.0, 'if': 2.0, 'see': 2.0, 'return': 2.0, 'well': 1.0, '2013': 2.0, 'contact': 1.0, 'the': 8.0, 'a': 2.0, 't': 3.0, 'resolve': 1.0, 'was': 2.0, 'as': 1.0, 'to': 6.0, 'at': 1.0, 'really': 1.0, 'customer': 1.0, 'so': 2.0, 'it': 3.0, '30': 1.0, 'this': 3.0, 'update': 1.0, 'loose': 1.0, 'times': 1.0, 'you': 1.0, 'am': 1.0, 'can': 1.0, 'but': 1.0, 'policy': 2.0, 'november': 1.0, 'noted': 1.0, 'fall': 1.0, 'is': 4.0, 'use': 3.0, 'amazon': 1.0, 'seller': 1.0, 'have': 1.0, 'coming': 1.0, 'cheaply': 2.0, 'number': 1.0, 'threads': 1.0, 'i': 9.0, 'and': 4.0, 'only': 2.0, 'do': 1.0, 'post': 1.0, 'made': 2.0, 'december': 1.0, 'trying': 1.0, 'here': 1.0, 'be': 1.0, 'reached': 1.0, 'will': 1.0, 'item': 2.0, 'selections': 1.0, 'thing': 1.0, 'listed': 1.0, 'had': 1.0, 'purchased': 1.0, 'what': 1.0, 'sad': 1.0, 'product': 2.0, 'fit': 1.0, 'for': 2.0, 'may': 1.0, 'hopefully': 1.0, 'another': 1.0, 'purchase': 1.0, 'my': 2.0, 'don': 2.0}
Word element => {'large': 1.0, 'stroller': 1.0, 'car': 1.0, 'goes': 1.0, 'easily': 1.0, 'a': 2.0, 'expecting': 1.0, 'who': 1.0, 'are': 1.0, 'family': 1.0, 'into': 1.0, 'or': 1.0, 'bag': 1.0, 'monster': 1.0, 'love': 1.0, 'for': 1.0, 'diaper': 1.0, 'the': 2.0, 'my': 2.0, 'baby': 3.0, 'by': 1.0, 'designer': 1.0, 'purse': 1.0, 'and': 2.0, 'friends': 1.0, 'it': 1.0, 'this': 2.0, 'first': 1.0, 'with': 1.0, 'is': 1.0, 'had': 1.0, 'now': 1.0, 'three': 1.0, 'i': 2.0, 'buy': 1.0, 'even': 1.0, 'what': 1.0, 'used': 1.0, 'all': 1.0}
Word element => {'clothes': 1.0, 'of': 1.0, 'a': 1.0, 'just': 1.0, 'bag': 1.0, 'sturdy': 1.0, 'keep': 1.0, 'bought': 1.0, 'lost': 1.0, 'i': 1.0, 'one': 2.0, 'have': 1.0, 'item': 1.0, 'carry': 1.0, 'neat': 1.0, 'this': 1.0, 'first': 1.0, 'useful': 1.0, 'to': 2.0, 'husband': 1.0, 'change': 1.0, 'really': 1.0, 'second': 1.0, 'and': 3.0, 'need': 1.0, 'easy': 1.0, 'clean': 1.0, 'diaper': 1.0, 'the': 1.0, 't': 1.0, 'great': 1.0, 'don': 1.0}
Word element => {'easy': 1.0, 'quick': 1.0, 'makes': 1.0, 'anything': 1.0, 'looking': 1.0, 'rummage': 1.0, 'have': 1.0, 'don': 1.0, 'baggies': 1.0, 'do': 1.0, 'zippered': 1.0, 'wipes': 1.0, 'because': 1.0, 'whole': 1.0, 'lugging': 1.0, 'best': 1.0, 'for': 1.0, 'fit': 2.0, 'brother': 1.0, 'destin': 1.0, 'son': 1.0, 'of': 1.0, 'turned': 1.0, 'had': 1.0, 'be': 1.0, 'grab': 1.0, 'out': 1.0, 'changer': 2.0, 'diapers': 1.0, 'got': 1.0, 'an': 1.0, 'diaper': 2.0, 'fits': 1.0, 'my': 3.0, 'and': 8.0, 'me': 1.0, 'perfectly': 1.0, 'this': 1.0, 'it': 4.0, 'one': 2.0, 'before': 1.0, 'restaurant': 1.0, 'i': 3.0, 'you': 1.0, 'when': 1.0, 'changing': 2.0, 'gave': 1.0, 'into': 1.0, 'section': 1.0, 'off': 1.0, 'bag': 2.0, 'around': 1.0, 'comes': 1.0, 'is': 1.0, 'as': 1.0, 'to': 3.0, 'all': 1.0, 'in': 3.0, 'system': 1.0, 'your': 1.0, 'baby': 2.0, 'at': 1.0, 'just': 1.0, 't': 1.0, 'a': 1.0, 'we': 1.0, 'gifts': 1.0, 'are': 1.0, 'ziplock': 1.0, 'the': 10.0, 'kiddo': 1.0, 'without': 1.0}
Word element => {'for': 1.0, 'made': 1.0, 'is': 1.0, 'purpose': 1.0, 'looking': 1.0, 'it': 2.0, 'cool': 1.0, 'isn': 1.0, 'few': 1.0, 's': 1.0, 'changing': 1.0, 'very': 1.0, 'as': 1.0, 'that': 1.0, 'in': 1.0, 'though': 1.0, 'overall': 1.0, 'kit': 1.0, 'are': 2.0, 'there': 1.0, 'available': 1.0, 'market': 1.0, 'pillow': 1.0, 'diaper': 1.0, 'the': 3.0, 't': 1.0, 'good': 1.0, 'serves': 1.0}
Word element => {'detached': 1.0, 'changed': 1.0, 'bathroom': 1.0, 'attached': 2.0, 'removed': 1.0, 'be': 1.0, 'zipper': 1.0, 'rest': 1.0, 'decided': 1.0, 'inside': 1.0, 'two': 1.0, '4': 1.0, 'one': 2.0, 'too': 1.0, 'and': 9.0, 'changer': 1.0, 'mesh': 1.0, 'lovely': 1.0, 'confines': 1.0, 'came': 1.0, 'glad': 1.0, 'being': 2.0, 'apart': 1.0, 'easily': 2.0, 'product': 2.0, 'it': 4.0, 'without': 1.0, 'soft': 1.0, 'big': 1.0, 'mat': 2.0, 'cheaper': 1.0, 'am': 1.0, 'threw': 1.0, 'even': 1.0, 'wetwipes': 2.0, 'buy': 1.0, 'extra': 1.0, 'really': 1.0, 'is': 7.0, 'holds': 1.0, 'baby': 3.0, 'many': 1.0, 'to': 3.0, 'whether': 1.0, 'i': 7.0, 'well': 2.0, 'have': 1.0, 'roomy': 1.0, 'did': 1.0, 'debate': 1.0, 'much': 1.0, 'changing': 2.0, 'long': 1.0, 'on': 3.0, 'think': 1.0, 'plunge': 1.0, 'can': 1.0, 'so': 1.0, 'after': 1.0, 'there': 2.0, 'reading': 1.0, 'vasaline': 1.0, 'bag': 2.0, 'spend': 1.0, 'are': 1.0, 'zip': 2.0, 'we': 1.0, 'take': 1.0, 'reviews': 1.0, 'pocket': 2.0, 'size3': 1.0, 'made': 2.0, 'nappies': 1.0, 'solid': 1.0, 'for': 2.0, 'fabric': 1.0, 'wipes': 1.0, 'pockets': 1.0, 'with': 4.0, 'anyway': 1.0, 'use': 2.0, 'my': 2.0, 'a': 8.0, 'small': 1.0, 'outside': 1.0, 'tub': 1.0, 'sure': 1.0, 'the': 12.0, 'of': 3.0, 'necessary': 1.0, 'packet': 1.0, 'also': 1.0, 'enough': 2.0, 'but': 2.0, 'just': 1.0, 'this': 2.0, 'few': 1.0, 'in': 3.0, 'loose': 1.0, 'plastic': 3.0, 'how': 1.0, 'diaper': 1.0, 'bags': 1.0, 'from': 1.0, 'holder': 1.0, 'itself': 1.0, 'not': 2.0, 'bulky': 1.0, 'would': 1.0, 'attaches': 1.0, 'fill': 1.0, 'since': 1.0, 're': 1.0, 'come': 1.0, 'other': 1.0, 'resealable': 1.0}
Word element => {'over': 1.0, 'all': 1.0, 'son': 1.0, 'too': 1.0, 'when': 1.0, 'clean': 1.0, 'in': 1.0, 'at': 1.0, 'use': 1.0, 'suv': 1.0, 'home': 1.0, 'easy': 1.0, 'hop': 1.0, 'skip': 1.0, 'pees': 1.0, 'my': 3.0, 'diaper': 1.0, 'the': 1.0, 'for': 1.0, 'love': 1.0, 'quick': 1.0, 'it': 2.0, 'and': 1.0, 'changes': 1.0, 'i': 2.0, 'back': 1.0, 'of': 1.0, 'its': 1.0, 'to': 1.0, 'wipe': 1.0}
Word element => {'lot': 1.0, 'combi': 1.0, 'new': 1.0, 'products': 1.0, 'longer': 1.0, 'since': 1.0, 'half': 1.0, 'botton': 1.0, 'crossbars': 1.0, 'wear': 1.0, 'what': 1.0, 'month': 1.0, 'broke': 1.0, 'forerunner': 1.0, '07': 1.0, '9': 1.0, 'clear': 1.0, 'repair': 1.0, 'line': 1.0, 'bottom': 1.0, 'people': 1.0, 'some': 2.0, 'care': 1.0, 'don': 1.0, 'parent': 1.0, 'used': 2.0, '15': 1.0, 'never': 1.0, 'appear': 1.0, 'peregos': 1.0, 'peg': 1.0, 'manufacturers': 1.0, 'from': 1.0, 'away': 1.0, 're': 1.0, 'every': 1.0, 'have': 1.0, 'far': 1.0, 'eventually': 1.0, 'bend': 1.0, 'afraid': 1.0, 'light': 1.0, 'complaint': 1.0, 'small': 1.0, 'bag': 1.0, 'a': 9.0, 'hasn': 1.0, 'encountered': 1.0, 'must': 1.0, 've': 2.0, 'basket': 1.0, 'type': 1.0, 'which': 3.0, 'side': 1.0, 'steer': 2.0, 'slide': 1.0, 'would': 1.0, 'bar': 3.0, 'prefer': 1.0, 'supplies': 1.0, 'height': 1.0, 'pros': 1.0, 'canopy': 2.0, 'if': 2.0, 'will': 1.0, 'handlebar': 2.0, 'upholstery': 1.0, 'window': 1.0, 'car': 1.0, 'bit': 1.0, 'than': 1.0, 'my': 1.0, 'difficulty': 1.0, 'developed': 1.0, 'companion': 1.0, '1': 2.0, 'adding': 1.0, 'question': 1.0, 'out': 1.0, 'during': 1.0, 'or': 1.0, 'need': 1.0, 'almost': 1.0, 'adjustable': 1.0, '4': 2.0, 'outgrows': 1.0, 'baby': 2.0, 'year': 2.0, 'stroller': 6.0, 'how': 1.0, 'g': 1.0, 'locks': 1.0, 'carseat': 3.0, 'brake': 3.0, '3': 3.0, 'on': 6.0, 'travel': 1.0, 'easier': 1.0, 'torino': 1.0, 'lists': 1.0, 'this': 5.0, 'few': 1.0, 'its': 4.0, 'only': 2.0, 'with': 12.0, 'snack': 2.0, 'allows': 1.0, 'peek': 1.0, 'starting': 1.0, 'recline': 1.0, 'held': 1.0, '6': 2.0, 'fastened': 1.0, 'for': 2.0, 'strap': 1.0, 'replacing': 1.0, 'britax': 3.0, 'bad': 1.0, 'dealbreaker': 1.0, 'handled': 1.0, '5': 2.0, 'one': 10.0, 'got': 3.0, 'the': 26.0, 'even': 1.0, 'old': 1.0, 'of': 7.0, 'shoulder': 1.0, 'pitched': 1.0, '2': 2.0, 'things': 2.0, 'you': 2.0, 'at': 3.0, 'can': 2.0, 'is': 6.0, 'plus': 1.0, 'sits': 1.0, 'no': 3.0, 'ours': 1.0, 'it': 19.0, 'be': 2.0, 'any': 1.0, 'feel': 1.0, 'flap': 1.0, 'as': 7.0, 'right': 3.0, 'to': 13.0, 'e': 1.0, 'maclaren': 1.0, 'high': 1.0, 'big': 2.0, 'update': 1.0, 'storage': 1.0, 'velcro': 1.0, 'gets': 1.0, 'trunk': 2.0, 'get': 1.0, 'shipping': 1.0, 'really': 2.0, 'another': 1.0, 'compatible': 1.0, 'trashed': 1.0, 'better': 2.0, 'comes': 2.0, 'last': 1.0, 'down': 1.0, '00': 1.0, 'so': 3.0, 'price': 1.0, 'mine': 1.0, 'child': 1.0, 'single': 1.0, 'little': 1.0, 'won': 1.0, 'two': 2.0, 't': 6.0, 'closeout': 1.0, 'large': 1.0, 'tends': 1.0, 'websites': 1.0, 'zip': 1.0, 'i': 14.0, 'hand': 1.0, 'cupholder': 2.0, 'accessible': 1.0, 'and': 7.0, 'just': 3.0, 'enough': 1.0, 'carry': 1.0, 'cons': 1.0, 'liking': 1.0, 'phone': 1.0, 'tear': 1.0, 'live': 1.0, 'changing': 1.0, 'attractive': 1.0, 'easy': 2.0, 'engage': 3.0, 'putting': 1.0, 'view': 1.0, 'disengage': 1.0, 'foot': 1.0, '7': 2.0, 'adequate': 1.0, 'up': 1.0, 'tray': 3.0, 'unless': 1.0, 'after': 2.0, 'loud': 1.0, 'detachable': 1.0, '69': 1.0, 'format': 1.0, 'folding': 2.0, 'folded': 2.0, '8': 1.0, 'when': 2.0, 'sun': 3.0, 'most': 1.0, 'looks': 1.0, 'making': 1.0, 'directly': 1.0, 'why': 1.0, 'find': 3.0, 'very': 2.0, 'fold': 2.0, 'has': 1.0, 'location': 1.0, 'three': 1.0, 'want': 1.0, 'hands': 2.0, 'release': 2.0, 'snapped': 1.0, 'do': 1.0, 'walking': 1.0, 'either': 1.0, 'seems': 1.0, 'weeks': 1.0, 'call': 1.0, 'way': 1.0, 'all': 1.0, 'wallet': 1.0, 'other': 1.0, 'mechanism': 1.0, 'might': 1.0, 'frequently': 1.0, 'sticks': 1.0, 'seatback': 1.0, 'wd': 1.0, 'difficult': 1.0, '40': 1.0, 'squeak': 2.0, 'didn': 1.0, 'help': 1.0, 'use': 1.0, 'size': 1.0, 'compactly': 1.0, 'compared': 1.0, 'wrong': 1.0, 'strollers': 1.0, 'in': 5.0, 'average': 1.0, 'doesn': 1.0, 's': 4.0, 'm': 3.0, 'soon': 1.0, 'class': 1.0, 'situated': 1.0, 'but': 4.0, 'because': 1.0, 'impossible': 1.0, 'wheels': 1.0}
Word element => {'with': 1.0, 'bother': 1.0, 'not': 1.0, 'do': 1.0, 'taking': 1.0, 'already': 1.0, 'box': 1.0, 'out': 1.0, 'return': 1.0, 'way': 1.0, 'didn': 1.0, 'even': 1.0, 'of': 3.0, 'britax': 1.0, 'takes': 1.0, 'world': 1.0, 'trip': 1.0, 'started': 1.0, 'upcoming': 1.0, 'i': 4.0, 'old': 1.0, 'bought': 1.0, 'within': 1.0, 'be': 1.0, 'great': 1.0, '2': 1.0, 'my': 1.0, 'pain': 1.0, 'this': 3.0, 'hard': 1.0, 'thought': 1.0, 'stroller': 4.0, 'an': 1.0, 'put': 2.0, 'product': 1.0, 'for': 2.0, 'apart': 1.0, 'functions': 1.0, 'fold': 1.0, 'son': 1.0, 'having': 1.0, 'because': 1.0, '14': 1.0, 'it': 9.0, 'month': 1.0, 'take': 1.0, 'all': 1.0, 'to': 5.0, 'minutes': 1.0, 'was': 2.0, 'disney': 1.0, 'would': 1.0, 'when': 1.0, 'name': 1.0, 'together': 1.0, 'and': 3.0, 'arrived': 1.0, 'soo': 1.0, 'then': 2.0, 'up': 1.0, 'over': 1.0, 'a': 1.0, 't': 1.0, 'go': 2.0, 's': 2.0, 'down': 3.0, 'the': 5.0, 'hands': 1.0}
Word element => {'are': 1.0, 'overall': 1.0, 'anxious': 1.0, 'happy': 1.0, 'my': 1.0, 'making': 1.0, 'toilets': 1.0, 'some': 1.0, 'bit': 1.0, 'us': 1.0, 'fits': 1.0, 'bag': 1.0, 'so': 1.0, 'for': 1.0, 'love': 1.0, 'every': 1.0, 'little': 4.0, 'has': 1.0, 'travel': 1.0, 'shift': 1.0, 'far': 1.0, 'but': 2.0, 'with': 1.0, 'it': 6.0, 'this': 1.0, 'fit': 1.0, 'have': 1.0, 'we': 4.0, 'can': 1.0, 'toilet': 1.0, 'also': 1.0, 've': 1.0, 'pottie': 1.0, 'used': 1.0, 'on': 2.0, 'fine': 1.0, 'is': 1.0, 'since': 1.0, 'a': 4.0, 'ones': 1.0, 'diaper': 1.0, 'bulky': 1.0, 'large': 1.0}
Word element => {'materials': 1.0, 'better': 1.0, 'need': 1.0, 'just': 1.0, 'well': 1.0, 'using': 1.0, 'for': 1.0, 'days': 1.0, '6': 1.0, 'of': 1.0, 'after': 1.0, 'else': 1.0, 'daughter': 1.0, 'its': 1.0, 'only': 1.0, 'this': 1.0, 'old': 1.0, 'i': 2.0, 'weighs': 1.0, 'quality': 1.0, 'doctors': 1.0, '28': 1.0, '20': 1.0, 'potty': 1.0, 'the': 6.0, 'my': 1.0, 'hinge': 1.0, 'broke': 2.0, 'a': 1.0, 'we': 1.0, 'were': 1.0, 'at': 1.0, 'lbs': 1.0, 'office': 1.0, 'right': 1.0, 'toilet': 2.0, 'it': 1.0, 'she': 2.0, 'month': 1.0, 'fell': 1.0, 'in': 3.0, 'or': 1.0, 'thing': 1.0, 'have': 1.0, 'was': 1.0, 'purchased': 1.0, 'standing': 1.0, 'front': 1.0, 'and': 3.0, 'landed': 1.0, 'good': 2.0, 'her': 1.0, 'would': 1.0, 'seat': 4.0, 'as': 1.0}
Word element => {'recommend': 1.0, 'highly': 1.0, 'would': 1.0, 'collapse': 1.0, 'will': 1.0, 'there': 1.0, 'back': 1.0, 'long': 1.0, 'some': 1.0, 'bought': 1.0, 'towards': 1.0, 'before': 1.0, 'reviews': 1.0, 'i': 3.0, 'much': 1.0, 'the': 3.0, 'children': 1.0, 'have': 1.0, 'but': 1.0, 'process': 1.0, '2': 2.0, 'isn': 1.0, 'has': 3.0, 'public': 1.0, 'weight': 1.0, 'houses': 1.0, 'nervous': 1.0, 'her': 2.0, 'gets': 1.0, 'you': 1.0, 'when': 2.0, 'collapses': 1.0, 'daughter': 3.0, 'greatly': 1.0, 'and': 4.0, 'great': 1.0, '1': 1.0, 'easy': 2.0, 'that': 1.0, 'been': 2.0, 'me': 2.0, 'not': 2.0, 'my': 3.0, 'stores': 1.0, 'product': 1.0, 'for': 1.0, 'old': 1.0, 'training': 2.0, 'is': 3.0, 'around': 1.0, 'yrs': 1.0, '34': 4.0, 'of': 1.0, 'supported': 1.0, 'potty': 3.0, 'so': 3.0, 'having': 1.0, 'said': 1.0, 'in': 2.0, 'grocery': 1.0, 'dont': 1.0, 'this': 1.0, 'she': 2.0, 'it': 8.0, 'read': 1.0, 'very': 1.0, 'all': 1.0, 'seat': 2.0, 'as': 3.0, 'helpful': 1.0, 'push': 1.0, 'helped': 1.0, 'are': 1.0, 'priced': 1.0, 'uses': 1.0, 'a': 1.0, 't': 1.0, 'we': 1.0, 'other': 1.0, 'out': 1.0, 'at': 2.0, 'knows': 1.0, 'peoples': 1.0}
Word element => {'purchase': 1.0, 'in': 1.0, 'falling': 1.0, 'keeps': 1.0, 'according': 1.0, 'no': 1.0, 'so': 1.0, 'clean': 1.0, 'them': 2.0, 'covers': 1.0, 'padding': 1.0, 'and': 2.0, 'transport': 1.0, 'hinges': 1.0, '6': 2.0, 'well': 2.0, 's': 2.0, 'happy': 1.0, 'my': 1.0, 'seat': 1.0, 'very': 1.0, 'from': 1.0, 'big': 1.0, 'with': 1.0, 'he': 1.0, 'it': 4.0, 'this': 1.0, 'the': 3.0, '2': 1.0, 'pinching': 1.0, '4': 1.0, 'kids': 1.0, 'i': 1.0, 'old': 1.0, 'to': 4.0, 'comfortable': 1.0, 'love': 1.0, 'for': 1.0, 'but': 1.0, 'yr': 1.0, 'easy': 2.0, 'used': 1.0, 'like': 1.0}
Word element => {'1': 1.0, 'kalencom': 1.0, 'to': 1.0, 'are': 1.0, 'if': 1.0, 'give': 1.0, 'would': 1.0, 'after': 1.0, 'also': 1.0, 'anything': 1.0, 'land': 1.0, 'yet': 1.0, 'gone': 1.0, 'plus': 1.0, 'luckily': 1.0, 'i': 3.0, 'old': 1.0, 'potette': 1.0, 'dangerous': 1.0, 'week': 1.0, 'hadn': 1.0, 'back': 2.0, 'of': 1.0, 'up': 1.0, 'is': 1.0, 'zero': 1.0, 'completely': 1.0, 'lb': 1.0, 'and': 2.0, 'few': 1.0, 'that': 1.0, 'into': 1.0, 'been': 1.0, 'going': 1.0, 'could': 1.0, 'go': 1.0, 't': 3.0, 'we': 2.0, 'a': 3.0, 'using': 2.0, 'stars': 1.0, 'for': 2.0, 'liked': 1.0, 'this': 3.0, 'son': 2.0, 'year': 1.0, 'because': 1.0, '31': 1.0, 'but': 2.0, '2': 2.0, 'wouldn': 1.0, 'didn': 1.0, 'sits': 1.0, 'weekend': 1.0, 'the': 5.0, 'nicely': 1.0, 'months': 1.0, 'on': 2.0, '5': 1.0, 'my': 2.0, 'he': 4.0, 'how': 1.0, 'while': 1.0, 'times': 1.0, 'folded': 1.0, 'have': 1.0, 'small': 1.0, 'flat': 1.0, 'in': 2.0, 'toilet': 2.0, 'was': 1.0, 'screws': 1.0, 'couple': 1.0, 'out': 1.0, 'came': 1.0, 'it': 4.0, 'fell': 1.0}
Word element => {'needed': 1.0, 'if': 1.0, 'recommended': 1.0, 'well': 1.0, 'son': 1.0, 'toilets': 1.0, 'edge': 1.0, 'sit': 1.0, 'no': 1.0, 'there': 1.0, 'that': 1.0, 'home': 1.0, 'highly': 1.0, 'dissinfect': 1.0, 'stroller': 1.0, 'once': 1.0, 'of': 2.0, 'side': 1.0, 'the': 3.0, 'wasn': 1.0, 'my': 3.0, 'can': 1.0, 'four': 1.0, 'anyways': 1.0, 'with': 2.0, 'she': 3.0, 'it': 7.0, 'now': 1.0, 'older': 1.0, 'experiences': 1.0, 'some': 1.0, 'when': 1.0, 'daughter': 1.0, 'young': 1.0, 'like': 1.0, 'using': 1.0, 'bad': 1.0, 'i': 6.0, 'stories': 1.0, 'from': 1.0, 'read': 1.0, 'very': 1.0, 'plan': 1.0, 'more': 1.0, 'other': 1.0, 'had': 1.0, 'was': 1.0, 'reviews': 1.0, 'to': 1.0, 'as': 2.0, 'any': 1.0, 'perhaps': 1.0, 'horror': 1.0, 'restrooms': 2.0, 'and': 2.0, 'never': 1.0, 'at': 1.0, 'three': 1.0, 'so': 1.0, 'd': 2.0, 'an': 1.0, 'child': 1.0, 'use': 2.0, 'wonderful': 1.0, 'in': 3.0, 'public': 2.0, 'for': 1.0, 'fit': 1.0, 't': 1.0, 's': 3.0, 'nice': 1.0, 'need': 1.0, 'bag': 1.0, 'on': 1.0}
Word element => {'easier': 1.0, 'continue': 1.0, 'i': 1.0, 'potty': 2.0, 'well': 1.0, 'made': 1.0, 'my': 1.0, 'make': 1.0, 'so': 1.0, 'traveling': 1.0, 'is': 1.0, 'seat': 1.0, 'and': 2.0, 'when': 1.0, 'daughter': 1.0, 'cushie': 1.0, 'think': 1.0, 'this': 1.0, 'it': 1.0, 'training': 1.0, 'train': 1.0, 'will': 1.0, 'help': 1.0, 'grand': 1.0, 'starts': 1.0, 'to': 1.0}
Word element => {'seats': 1.0, 'true': 1.0, 'elongated': 1.0, 'for': 1.0, 'product': 2.0, 'that': 2.0, 'into': 1.0, 'claims': 1.0, 'order': 1.0, 'a': 1.0, 'fit': 2.0, 't': 2.0, 'is': 4.0, 'around': 1.0, 'false': 2.0, 'sitting': 2.0, 'size': 1.0, 'secondly': 1.0, 'toilet': 5.0, 'all': 1.0, 'to': 6.0, 'as': 1.0, 'set': 1.0, 'of': 2.0, 'the': 8.0, 'doesn': 1.0, 'training': 1.0, 'half': 1.0, '2yr': 1.0, 'seat': 1.0, 'in': 4.0, 'help': 1.0, 'can': 2.0, 'clips': 1.0, 'my': 4.0, 'advertisement': 3.0, 'another': 1.0, 'potty': 1.0, 'old': 1.0, 'locking': 1.0, 'i': 5.0, 'this': 2.0, 'be': 2.0, 'bought': 1.0, 'mechanism': 1.0, 'one': 1.0, 'public': 1.0, 'while': 3.0, 'from': 2.0, 'throwing': 1.0, 'out': 1.0, 'and': 6.0, 'however': 1.0, 'found': 1.0, 'task': 1.0, 'no': 2.0, 'itself': 1.0, 'not': 2.0, 'claimed': 1.0, 'inadequate': 1.0, 'it': 9.0, 'felt': 1.0, 'even': 1.0, 'standard': 1.0, 'sized': 1.0, 'does': 1.0, 'there': 2.0, 'lo': 1.0, 'first': 1.0, 'are': 1.0, 'foldin': 1.0, 'fasteners': 1.0, 'about': 2.0, 'uneasy': 1.0, 'or': 1.0, 'trash': 1.0, 'stabalize': 1.0, 'keep': 2.0, 'cushoin': 1.0, 'moving': 1.0, 'promise': 1.0, 'lastly': 1.0, 'on': 2.0, 'therefore': 1.0, 'cushion': 1.0, 'little': 1.0, 'refused': 1.0, 'go': 1.0, 'thoroughly': 1.0, 'blame': 1.0, 'her': 1.0, 'bordering': 1.0, 'have': 2.0, 'features': 1.0, 'its': 1.0, 'toilets': 1.0, 'am': 1.0, 'disappointed': 1.0, 'will': 1.0}
Word element => {'around': 1.0, 'seat': 1.0, 'than': 1.0, 'longer': 1.0, 'public': 1.0, 'most': 1.0, 'i': 1.0, 'it': 3.0, 'toilets': 1.0, 'very': 1.0, 'like': 1.0, 'and': 2.0, 'fact': 1.0, 'is': 2.0, 'are': 1.0, 'the': 2.0, 'that': 1.0, 'slides': 1.0, 'convenient': 1.0, 'except': 1.0}
Word element => {'seats': 1.0, 'paper': 1.0, 'of': 1.0, 'those': 1.0, 'combine': 1.0, 'usually': 1.0, 'one': 1.0, 'for': 1.0, 'i': 1.0, 'buy': 1.0, 'best': 1.0, 'you': 4.0, 'kid': 1.0, 'can': 2.0, 'with': 1.0, 'it': 3.0, 'disposable': 1.0, 'are': 1.0, 'seat': 1.0, 'not': 1.0, 'is': 1.0, 'on': 1.0, 'but': 1.0, 'fits': 1.0, 'move': 1.0, 'and': 1.0, 'the': 3.0, 't': 1.0, 'pack': 1.0, 'much': 1.0, 'when': 1.0, 'too': 1.0, 'purpose': 1.0}
Word element => {'reason': 1.0, 'outings': 1.0, '34': 2.0, 'diaper': 1.0, 'main': 1.0, 'keep': 1.0, 'just': 1.0, 'falls': 1.0, 'place': 1.0, 'the': 4.0, 'sometimes': 1.0, 'for': 3.0, 'house': 1.0, 'third': 1.0, 't': 1.0, 'we': 1.0, 'a': 2.0, 'well': 1.0, 'one': 1.0, 'bought': 1.0, 'travel': 1.0, 'don': 1.0, 'up': 1.0, 'and': 2.0, 'me': 1.0, 'like': 2.0, 'soft': 1.0, 'this': 1.0, 'it': 6.0, 'i': 4.0, 'so': 2.0, 'potty': 2.0, 'bit': 1.0, 'in': 3.0, 'floppy': 1.0, 'fits': 1.0, 'fact': 1.0, 'my': 4.0, 'really': 1.0, 'is': 4.0, 'happen': 1.0, 'carrying': 1.0, 'easily': 1.0, 'when': 1.0, 'daughter': 1.0, 'but': 1.0, '2': 1.0, 'cousin': 1.0, 'on': 1.0, 'much': 1.0, 'try': 1.0, 'only': 1.0, 'its': 2.0, 'toilet': 1.0, 'own': 1.0, 'bag': 2.0, 'folds': 2.0, 'easy': 1.0, 'clean': 1.0, 'seat': 1.0, 'to': 2.0, 'as': 1.0, 'grandmas': 1.0, 'complaint': 1.0, 'gave': 1.0, 'into': 2.0, 'that': 4.0, 'what': 1.0, 'mean': 1.0, 'places': 1.0}
Word element => {'so': 1.0, 'found': 1.0, 'we': 1.0, 'that': 1.0, 'downside': 1.0, 'no': 1.0, 'far': 1.0, 'wipes': 1.0, 'on': 1.0, 'is': 1.0, 'tushie': 1.0, 'little': 1.0, 'seat': 1.0, 'know': 1.0, 'you': 1.0, 'bonus': 1.0, 'have': 1.0, 'pack': 1.0, 'friendly': 1.0, 'be': 1.0, 'back': 1.0, 'a': 2.0, 'large': 1.0, 'in': 2.0, 'can': 1.0, 'kid': 1.0, 'or': 1.0, 'easily': 2.0, 'clean': 2.0, 'fits': 1.0, 'wow': 1.0, 'the': 2.0, 'carried': 1.0, 'bag': 1.0, 'comes': 1.0, 'purse': 1.0, 'and': 1.0, 'it': 1.0, 'with': 1.0, 'makes': 1.0, 'always': 1.0, 'bathroom': 1.0, 'added': 1.0, 'every': 1.0}
Word element => {'longer': 1.0, 'the': 1.0, 'a': 1.0, 'perfectly': 1.0, 'it': 2.0, 'enlogated': 1.0, 'round': 1.0, 'does': 1.0, 'ones': 1.0, 'work': 1.0, 'not': 2.0, 'seat': 1.0, 'you': 1.0, 'have': 1.0, 'fit': 1.0, 'but': 2.0, 'and': 1.0, 'on': 1.0, 'bowel': 1.0, 'toliet': 1.0, 'should': 1.0, 'if': 1.0}
Word element => {'whenever': 1.0, 'sack': 1.0, 'included': 1.0, 'and': 3.0, 'my': 2.0, 'happy': 1.0, 'with': 1.0, 'it': 6.0, 'along': 1.0, 'squirms': 1.0, 'keeps': 1.0, 'go': 1.0, 's': 1.0, 'you': 1.0, 'from': 1.0, 'me': 1.0, 'not': 1.0, 'toddler': 1.0, 'keep': 1.0, 'his': 1.0, 'sturdy': 1.0, 'needs': 1.0, 'so': 1.0, 'slides': 1.0, 'in': 2.0, 'proudly': 1.0, 'as': 2.0, 'to': 4.0, 'under': 1.0, 'bottom': 1.0, 'hold': 1.0, 'nothing': 1.0, 'adult': 1.0, 'him': 1.0, 'think': 1.0, 'put': 1.0, 'on': 1.0, 'over': 1.0, 'does': 1.0, 'having': 1.0, 'sized': 1.0, 'though': 1.0, 'he': 2.0, 'potties': 1.0, 'i': 1.0, '34': 2.0, 'd': 1.0, 'm': 1.0, 'have': 1.0, 'carries': 1.0, 'place': 1.0, 'hands': 1.0, 'the': 1.0}
Word element => {'ended': 1.0, 'gave': 1.0, 'then': 1.0, 'might': 1.0, 'tried': 1.0, 'i': 2.0, 'not': 1.0, 'just': 2.0, 'dd': 1.0, 'our': 1.0, 'back': 1.0, 'way': 1.0, 'pushed': 1.0, 'be': 1.0, 'think': 1.0, 'good': 1.0, 'away': 1.0, 'giving': 1.0, 'getting': 1.0, 'and': 3.0, 'up': 3.0, 'fold': 1.0, 'a': 2.0, 'steady': 1.0, 'does': 1.0, 'easily': 1.0, 'like': 1.0, 'straight': 1.0, 'it': 5.0, 'this': 1.0, 'seemed': 1.0, 'idea': 1.0, 'the': 3.0, 'problem': 1.0, 'is': 1.0, 'on': 1.0, 'was': 1.0, 'to': 3.0, 'have': 1.0, 'all': 1.0, 'sit': 1.0, 'has': 1.0, 'public': 1.0, 'twice': 1.0, 'toilet': 1.0}
Word element => {'restroom': 1.0, 'most': 1.0, 'use': 1.0, 'to': 1.0, 'expected': 1.0, 'i': 1.0, 'that': 1.0, 'and': 1.0, 'time': 1.0, 'visits': 1.0, 'for': 1.0, 'one': 1.0, 'using': 1.0, 'a': 1.0, 'but': 1.0, 'the': 1.0, 'nicely': 1.0, 'outside': 2.0, 'very': 1.0, 'when': 2.0, 'mall': 1.0, 'is': 3.0, 'on': 1.0, 'neat': 1.0, 'toilet': 2.0, 'it': 5.0, 'went': 1.0, 'anywhere': 1.0, 'folds': 1.0, 'else': 1.0, 'not': 1.0, 'down': 1.0, 'steady': 1.0, 'through': 1.0, 'enough': 1.0, 'or': 1.0, 'almost': 1.0}
Word element => {'friends': 1.0, 'mommy': 1.0, 'hold': 1.0, 'cannot': 1.0, 'little': 2.0, 'stashes': 1.0, 'into': 1.0, 'splashing': 1.0, 'toilet': 2.0, 'have': 4.0, 'mind': 1.0, 'with': 1.0, 'clean': 1.0, 'a': 1.0, 't': 1.0, 'i': 4.0, 'well': 3.0, 'easier': 1.0, 'to': 9.0, 'back': 2.0, 'needed': 1.0, 'toddler': 2.0, 'help': 1.0, 'my': 4.0, 'extended': 3.0, 'all': 1.0, 'fits': 1.0, 'without': 1.0, 'travelling': 1.0, 'hands': 1.0, 'potty': 6.0, 'her': 5.0, 'use': 2.0, 'instructions': 1.0, 'it': 7.0, 'she': 1.0, 'this': 3.0, 'bag': 1.0, 'adds': 1.0, 'live': 1.0, 'from': 2.0, 'grown': 2.0, 'made': 1.0, 'the': 8.0, 'of': 2.0, 'up': 3.0, 'don': 1.0, 'recommended': 1.0, 'and': 3.0, 'too': 2.0, 'that': 1.0, 'easily': 1.0, 'about': 1.0, 'having': 1.0, 'sized': 1.0, 'seat': 1.0, 'in': 2.0, 'as': 5.0, 'diaper': 1.0, 'visits': 1.0, 'for': 6.0, 'now': 1.0, 'saves': 1.0, 'free': 1.0, 'weird': 1.0, 'grab': 1.0, 'paper': 1.0, 'sitting': 1.0, 'on': 3.0, 'worry': 1.0, 'comfortable': 1.0, 'feel': 1.0, 'legs': 1.0, 'shaped': 1.0, 'transition': 1.0, 'makes': 1.0, 'keep': 1.0, 'peace': 1.0, 'since': 1.0, 'toilets': 1.0, 'time': 1.0, 'new': 1.0, 've': 1.0, 'periods': 1.0, 'oval': 1.0, 'come': 1.0, 'shape': 1.0, 'just': 3.0, 'we': 1.0, 'fine': 1.0, 'tried': 1.0, 'everyday': 1.0, 'slid': 1.0, 'easy': 1.0, 'every': 1.0, 'if': 1.0, 'also': 1.0, 'knew': 1.0, 'was': 1.0}
Word element => {'larger': 1.0, 'wider': 1.0, 'accomodate': 1.0, 'child': 1.0, 'could': 1.0, 'would': 1.0, 'eye': 1.0, 'still': 1.0, 'they': 1.0, 'makes': 1.0, 'to': 2.0, 'be': 1.0, 'case': 1.0, 'part': 1.0, 'works': 1.0, 'comodes': 2.0, 'carry': 1.0, 'convenient': 1.0, 'well': 1.0, 'haul': 1.0, 'very': 1.0, 'as': 1.0, 'handy': 1.0, 'is': 2.0, 'on': 3.0, 'it': 4.0, 'only': 1.0, 'this': 1.0, 'sits': 1.0, 'great': 1.0, 'the': 5.0, 't': 1.0, 'top': 1.0, 'make': 1.0, 'around': 1.0, 'fit': 1.0, 'if': 1.0, 'keep': 1.0, 'problem': 1.0, 'fantastic': 1.0, 'bigger': 1.0, 'an': 1.0, 'but': 1.0, 'doesn': 1.0}
Word element => {'contact': 1.0, 'could': 1.0, 'mother': 1.0, 'some': 1.0, 'me': 1.0, 'and': 1.0, 'use': 1.0, 'designed': 1.0, 'perhaps': 1.0, 'embarrassing': 1.0, 'new': 2.0, 'put': 1.0, 'a': 3.0, 'really': 1.0, 'is': 2.0, 'want': 1.0, 'needs': 1.0, 'cannot': 1.0, 'in': 2.0, 'one': 1.0, 'for': 2.0, 'trip': 1.0, 'just': 1.0, 'kids': 1.0, 'when': 2.0, 'i': 6.0, 'bought': 1.0, 'apartment': 1.0, 'family': 1.0, 'actually': 1.0, 'so': 1.0, 'with': 1.0, 'moved': 1.0, '22': 1.0, 'it': 5.0, 'now': 1.0, 'to': 1.0, 'on': 1.0, 'my': 2.0, 'if': 1.0, 'own': 1.0, 'maybe': 1.0, 'toilet': 1.0, 'am': 2.0, 'usage': 1.0}
Word element => {'thanks': 1.0, 'worked': 1.0, 'seat': 1.0, 'great': 1.0, 'timesthis': 1.0, 'many': 1.0, 'the': 1.0, 'trave': 1.0, 'time': 1.0, 'had': 1.0, 'daughter': 1.0, 'at': 1.0, 'was': 1.0, 'to': 1.0, 'being': 1.0, 'we': 1.0, 'toilet': 1.0, 'our': 1.0, 'traind': 1.0}
Word element => {'made': 1.0, 'shame': 1.0, 'yr': 1.0, 'my': 1.0, 'but': 2.0, 'use': 1.0, 'times': 1.0, 'idea': 1.0, '10': 1.0, 'old': 1.0, 'cheap': 2.0, 'are': 1.0, 'plastic': 1.0, 'maybe': 1.0, 'for': 2.0, 'great': 2.0, 'with': 1.0, 'it': 2.0, 'break': 1.0, 'and': 1.0, 'be': 1.0, 'to': 1.0, 'prepared': 1.0, 'lasted': 1.0, 'a': 1.0, 'total': 1.0, 'hinges': 1.0, 'of': 1.0, 'days': 1.0, '3': 2.0}
Word element => {'easily': 1.0, 'plastic': 1.0, 'sec': 1.0, '5': 1.0, 'on': 1.0, 'hands': 1.0, 'her': 1.0, 'like': 1.0, 'a': 1.0, 'it': 1.0, 'great': 1.0, 'break': 1.0, 'the': 1.0, 'my': 1.0, 'hinges': 1.0, 'till': 1.0, 'one': 1.0, 'for': 1.0, 'year': 1.0, 'product': 1.0, 'old': 1.0, 'looks': 1.0, 'got': 1.0}
Word element => {'only': 1.0, 'why': 1.0, 'has': 1.0, 'also': 1.0, 'travel': 1.0, 'wider': 1.0, 'longer': 1.0, 'would': 1.0, 'with': 1.0, 'was': 1.0, 'doesn': 1.0, 'they': 1.0, 'if': 1.0, 'everything': 1.0, 'fine': 1.0, 'right': 1.0, 'larger': 2.0, 'properly': 1.0, 'cushie': 1.0, 'age': 1.0, 'years': 1.0, 'fall': 1.0, 'is': 6.0, 'gave': 1.0, 'that': 2.0, 'are': 2.0, 'it': 11.0, 'he': 2.0, 'nice': 1.0, 'great': 2.0, 'the': 1.0, 'sits': 1.0, 'about': 1.0, 'thing': 2.0, 'suppose': 2.0, 'falls': 1.0, 'small': 4.0, 'have': 2.0, 'to': 5.0, 'you': 1.0, 'when': 1.0, 'and': 5.0, 'too': 1.0, 'kids': 1.0, 'fitted': 1.0, 'public': 2.0, 'know': 1.0, 'downside': 1.0, 'my': 1.0, 'out': 1.0, 'toilets': 2.0, 'son': 1.0, 't': 1.0, 's': 5.0, 'a': 5.0, 'hole': 1.0, 'so': 3.0, 'bit': 2.0, 'than': 1.0, 'but': 1.0, 'most': 2.0, 'his': 1.0, 'old': 1.0, 'otherwise': 1.0, 'i': 3.0, 'stars': 1.0, 'where': 1.0, 'for': 3.0, 'be': 3.0, 'him': 1.0, 'little': 2.0, '3': 2.0, 'on': 1.0, 'make': 1.0, 'sure': 1.0, 'just': 1.0}
Word element => {'on': 1.0, 'sit': 1.0, 'longer': 1.0, 'would': 1.0, 'and': 1.0, 'split': 1.0, 'it': 1.0, 'this': 1.0, 'broke': 1.0, 'a': 1.0, 'the': 2.0, 'no': 1.0, 'seat': 2.0, 'worked': 1.0, 'for': 1.0, 'toilet': 1.0, 'couple': 1.0, 'weeks': 1.0, 'potty': 1.0, 'hinges': 1.0}
Word element => {'in': 1.0, 'fall': 1.0, 'she': 1.0, 'fear': 1.0, 'or': 1.0, 'out': 1.0, 'public': 1.0, 'would': 2.0, 'not': 1.0, 'i': 1.0, 'mind': 1.0, 'of': 1.0, 'peace': 1.0, 'was': 1.0, 'to': 1.0, 'me': 1.0, 'that': 2.0, 'it': 1.0, 'my': 1.0, 'when': 1.0, 'gave': 1.0, 'daughter': 1.0, 'have': 1.0, 'sit': 1.0, 'directly': 1.0, 'on': 1.0, 'a': 1.0, 'toilet': 1.0}
Word element => {'with': 1.0, 'happy': 1.0, 'how': 1.0, 'absolutely': 1.0, 'permanent': 1.0, 'want': 1.0, 'would': 1.0, 'not': 1.0, 'clean': 1.0, 'very': 1.0, 'nicely': 1.0, 'up': 1.0, 'sure': 1.0, 'easy': 1.0, 'folds': 1.0, 'ring': 1.0, 'that': 1.0, 'toilet': 2.0, 'home': 1.0, 'haven': 1.0, 'or': 1.0, 'yet': 1.0, 'travelling': 1.0, 'the': 3.0, 'can': 1.0, 'but': 1.0, '2': 1.0, 'enough': 1.0, 'house': 1.0, 'toddler': 1.0, 'year': 1.0, 'is': 4.0, 'carrying': 1.0, 'it': 3.0, 'she': 1.0, 'as': 1.0, 'our': 1.0, 'outside': 1.0, 'seat': 4.0, 'to': 5.0, 'i': 3.0, 'old': 1.0, 'fantastic': 1.0, 'when': 2.0, 'much': 1.0, 'potty': 4.0, 'time': 1.0, 'wonderful': 1.0, 'use': 2.0, 'easier': 1.0, 'won': 1.0, 'product': 1.0, 'for': 4.0, 'fit': 1.0, 'portable': 1.0, 'your': 1.0, 'on': 1.0, 'make': 1.0, 'are': 1.0, 'newly': 1.0, 'stress': 1.0, 'trained': 1.0, 'have': 1.0, 'and': 2.0, 'this': 5.0, 'found': 1.0, 'perfect': 1.0, 'uncounted': 1.0, 'stops': 1.0, 'decides': 1.0, 't': 3.0, 'a': 4.0, 'we': 2.0, 'go': 1.0, 'than': 1.0}
Word element => {'thick': 1.0, '34': 2.0, 'and': 3.0, 'travel': 1.0, 'flat': 1.0, 'the': 2.0, 'nicely': 1.0, 'diaper': 1.0, 'old': 1.0, 'finishing': 1.0, 'my': 2.0, 'fits': 1.0, 'toilet': 1.0, 'portable': 1.0, '3': 1.0, 'for': 1.0, 'using': 1.0, 'year': 1.0, 'inches': 1.0, 'very': 1.0, 'hated': 1.0, 'being': 1.0, 'potty': 1.0, 'pinch': 1.0, 'in': 1.0, '7inches': 1.0, 'is': 2.0, 'out': 1.0, 'foldable': 1.0, 'trained': 1.0, 'seat': 2.0, 'to': 1.0, 'this': 1.0, 'she': 2.0, 'it': 2.0, 'wanted': 1.0, 'bag': 1.0, 'has': 1.0, 'tried': 1.0, 'problem': 1.0, 'folds': 1.0, 'no': 1.0, 'about': 1.0, 'padding': 1.0, 'long': 1.0, 'just': 1.0, 'by': 1.0, 'i': 1.0, '4': 1.0}
Word element => {'was': 1.0, 'feel': 1.0, 'him': 1.0, 'making': 1.0, 'sat': 1.0, 'when': 1.0, 'bowed': 1.0, 'toilet': 1.0, 'in': 1.0, 'age': 1.0, 'about': 1.0, 'both': 1.0, 'stay': 1.0, 'very': 1.0, 'son': 1.0, 'his': 1.0, 'year': 2.0, 'old': 2.0, 'i': 1.0, 'tried': 1.0, 'purchased': 1.0, 'this': 1.0, 'it': 4.0, 'he': 3.0, 'first': 1.0, 'heavy': 1.0, '2': 1.0, 'inward': 1.0, 'the': 2.0, 'newly': 1.0, 'trained': 1.0, '5': 2.0, 'my': 1.0, 'potty': 1.0, 'much': 1.0, 'size': 1.0, 'of': 1.0, 'like': 1.0, 'refused': 1.0, 'going': 1.0, 'a': 1.0, 'we': 1.0, 'who': 1.0, 'at': 1.0, 'home': 1.0, 'for': 2.0, 'seated': 1.0, '3': 1.0, 'on': 3.0, 'fall': 1.0, 'is': 1.0, 'around': 1.0, 'tall': 1.0, 'and': 3.0, 'moved': 1.0, 'too': 1.0, 'to': 2.0, 'seat': 1.0, 'our': 1.0, 'elongated': 1.0}
Word element => {'anyone': 1.0, 'highly': 1.0, 'd': 1.0, 'uses': 1.0, 'down': 1.0, 'good': 1.0, 'wipes': 1.0, 'clorox': 1.0, 'with': 1.0, 'carry': 1.0, 'pack': 1.0, 'do': 1.0, 'though': 1.0, 'admittedly': 1.0, 'either': 1.0, 'is': 1.0, 'around': 1.0, 'laundry': 1.0, 'problems': 1.0, 'have': 1.0, 'quarters': 1.0, 'that': 1.0, 'into': 1.0, 'washable': 1.0, 'up': 1.0, 'folds': 1.0, 'there': 1.0, 'give': 1.0, 'not': 1.0, 'he': 1.0, 'wipe': 1.0, 'them': 1.0, 'out': 1.0, 'love': 1.0, 'for': 1.0, 'visits': 1.0, 'bag': 4.0, 'in': 6.0, 'toss': 1.0, 'and': 3.0, 'week': 2.0, 'huge': 1.0, 'one': 3.0, 'bought': 1.0, 'are': 1.0, 'my': 5.0, 'throw': 1.0, 'carrying': 1.0, 'these': 1.0, 'the': 3.0, 'house': 1.0, 'parent': 1.0, 'it': 5.0, 'perfect': 1.0, 'this': 2.0, 'i': 8.0, 'to': 3.0, 'once': 1.0, 'of': 2.0, 'at': 1.0, 'keep': 2.0, 'no': 2.0, 'thing': 1.0, 'son': 1.0, 'big': 1.0, 'we': 1.0, 's': 3.0, 'a': 5.0, 'just': 1.0, 'few': 1.0, 'between': 1.0, 'they': 1.0, '2': 1.0, 'can': 1.0, 'linen': 1.0, 'when': 2.0, 'times': 1.0, 'easily': 1.0, 'recommend': 1.0, 'store': 2.0, 'their': 1.0, 'machine': 1.0, 'parents': 1.0, 'closet': 1.0, 'clunky': 1.0, 'so': 2.0, 'potty': 1.0}
Word element => {'toilet': 1.0, 'collapse': 1.0, 'on': 1.0, 'way': 1.0, 'correctly': 1.0, 'if': 1.0, 'all': 1.0, 'have': 1.0, 'we': 1.0, 'other': 1.0, 'any': 1.0, 'than': 1.0, 'to': 1.0, 'much': 1.0, 'used': 2.0, 'what': 1.0, 'which': 1.0, 'comfortable': 1.0, 'for': 1.0, 'designed': 1.0, 'sturdier': 1.0, 'is': 3.0, 'not': 1.0, 'seat': 2.0, 'of': 1.0, 'folding': 1.0, 'it': 1.0, 'this': 1.0, 'occasional': 1.0, 'use': 1.0, 'when': 1.0, 'out': 1.0, 'will': 1.0, 'back': 2.0, 'house': 1.0, 'great': 1.0, 'the': 4.0, 'more': 1.0, 'do': 1.0, 'and': 1.0}
Word element => {'buy': 1.0, 'do': 1.0, 'money': 1.0, 'waste': 1.0, 'could': 1.0, 'if': 1.0, 'potty': 2.0, 'so': 1.0, 'arrived': 1.0, 'instructed': 1.0, 'my': 4.0, 'for': 2.0, 'stars': 1.0, 'actually': 1.0, 'be': 1.0, 'served': 1.0, 'quickly': 1.0, 'grab': 1.0, 'process': 1.0, 'but': 2.0, 'of': 3.0, 'the': 14.0, '200': 1.0, '1': 1.0, 'excited': 1.0, 'our': 1.0, 'to': 5.0, 'all': 1.0, 'in': 3.0, 'seat': 3.0, 'as': 2.0, 'that': 4.0, 'doubts': 1.0, '4': 1.0, 'i': 11.0, 'product': 6.0, 'year': 1.0, 'placed': 2.0, 'decided': 1.0, 'old': 1.0, 'mail': 1.0, 'this': 3.0, 'with': 2.0, 'was': 6.0, 'anyone': 1.0, 'and': 5.0, 'trip': 1.0, 'using': 1.0, 'not': 2.0, 'worth': 1.0, 'a': 1.0, 'giving': 1.0, 's': 2.0, 'use': 2.0, 'amazon': 1.0, 'horrified': 1.0, 'purchased': 1.0, 'him': 1.0, 'it': 10.0, 'thought': 1.0, 'had': 1.0, 'try': 1.0, 'training': 1.0, 'regretting': 1.0, 'zoo': 1.0, 'is': 1.0, 'should': 1.0, 'first': 1.0, 'made': 1.0, 'return': 1.0, 'seemed': 1.0, 'sure': 1.0, 'clip': 1.0, 'suggested': 1.0, 'way': 1.0, 'complete': 1.0, 'back': 1.0, 'toilet': 2.0, 'flimsy': 1.0, 'purpose': 1.0, 'immediately': 1.0, 'second': 1.0, 'went': 1.0, 'gave': 1.0, 'same': 1.0, '2': 2.0, 'thing': 1.0, 'selling': 1.0, 'collapsed': 1.0, 'son': 2.0, 'on': 1.0, 'time': 2.0, 'worried': 1.0, 'customers': 1.0, 'experience': 1.0, 'would': 2.0, 'derail': 1.0, 'success': 1.0, 'able': 1.0, 'am': 1.0, 'really': 1.0, 'fell': 1.0, 'shocked': 1.0, 'positive': 1.0, 'reviews': 1.0}
Word element => {'recommend': 1.0, 'definitely': 1.0, 'problems': 1.0, 'had': 1.0, 'would': 1.0, 'at': 1.0, 'not': 1.0, 'with': 1.0, 'is': 1.0, 'all': 1.0, 'perfect': 1.0, 'i': 1.0, 'it': 1.0, 'works': 1.0, 'easily': 1.0, 'any': 1.0, 'as': 1.0, 'described': 1.0, 'folds': 1.0, 'and': 1.0, 'this': 1.0, 'have': 1.0}
Word element => {'used': 1.0, 'in': 1.0, 'be': 1.0, 'fell': 1.0, 'got': 1.0, 'good': 1.0, 'of': 1.0, 'it': 3.0, 'very': 1.0, 'quality': 1.0, 'and': 1.0, 'seat': 1.0, 'not': 1.0, 'was': 1.0, 'longer': 1.0, 'is': 1.0, 'on': 1.0, 'no': 1.0, 'bent': 1.0, 'the': 3.0, 'my': 1.0, 'can': 1.0, 'toilet': 1.0, 'while': 1.0, 'little': 1.0, 'one': 1.0}
Word element => {'go': 1.0, 'recommend': 1.0, 'should': 1.0, 'bottoms': 1.0, 'back': 1.0, 'way': 1.0, 'push': 1.0, 'you': 1.0, 'but': 1.0, 'protection': 1.0, 'onto': 1.0, 'doesn': 1.0, 'ready': 1.0, 'is': 1.0, 'she': 1.0, 'great': 1.0, 'toilets': 1.0, 'am': 1.0, 'saved': 1.0, 'bought': 1.0, 'fit': 1.0, 't': 1.0, 'ago': 1.0, 'years': 1.0, 'even': 1.0, 'before': 1.0, '5': 1.0, 'worry': 1.0, 'guards': 1.0, 'toilet': 4.0, 'into': 2.0, 'that': 4.0, 'fell': 1.0, 'aimed': 1.0, 'and': 5.0, 'tucked': 1.0, 'not': 2.0, '3oz': 1.0, 'use': 2.0, 'was': 3.0, 'to': 8.0, 'all': 3.0, 'folded': 1.0, 'mommies': 1.0, 'as': 5.0, 'trying': 1.0, 'seat': 3.0, 'in': 1.0, 'year': 1.0, 'son': 3.0, 'over': 1.0, 'work': 3.0, '2': 1.0, 'germy': 1.0, 'man': 1.0, 'training': 2.0, 'my': 5.0, 'may': 1.0, 'of': 2.0, 'the': 11.0, 'hinges': 1.0, 'potty': 4.0, 'so': 2.0, 'time': 1.0, 'going': 1.0, 'travel': 1.0, 'could': 1.0, 'fine': 1.0, 'we': 2.0, 'a': 2.0, 'one': 2.0, 'established': 1.0, 'began': 1.0, 'boys': 1.0, 'first': 1.0, 'well': 1.0, 'i': 10.0, 'cups': 1.0, '4': 2.0, 'old': 1.0, 'areas': 1.0, 'purcahsed': 1.0, 'has': 1.0, 'exactly': 1.0, 'set': 1.0, 'used': 2.0, 'up': 1.0, 'excited': 1.0, 'after': 1.0, 'found': 1.0, 'highly': 1.0, 'this': 5.0, 'it': 12.0, 'thought': 1.0, 'looked': 1.0, 'from': 2.0, 'like': 1.0, 'better': 1.0, 'with': 3.0, 'such': 1.0, 'for': 5.0, 'girl': 1.0, 'where': 1.0, 'on': 5.0, 'long': 2.0, 'disposable': 1.0, 'seats': 3.0, 'just': 3.0, 'keep': 1.0, 'having': 1.0, 'when': 2.0, 'sit': 1.0, 'yucky': 1.0, 'pee': 1.0, 'public': 1.0, 'loved': 1.0, 'out': 1.0, 'there': 1.0, 'or': 1.0, 'bag': 1.0, 'once': 1.0, 'comes': 1.0, 'rubber': 1.0, 'help': 1.0, 'little': 3.0, 'have': 3.0, 'put': 1.0, 'much': 1.0, 'moment': 1.0, 'about': 1.0, 'fold': 1.0, 'he': 1.0}
Word element => {'misses': 1.0, 'just': 1.0, 'folding': 1.0, 'how': 1.0, 'concept': 1.0, 'have': 1.0, 'said': 1.0, 'pan': 1.0, 't': 1.0, 'under': 1.0, 'used': 2.0, 'new': 1.0, 'time': 1.0, 'potty': 3.0, 'so': 2.0, 'cushioned': 1.0, 'got': 1.0, 'pinching': 1.0, 'gamble': 1.0, 'didn': 1.0, 'was': 1.0, 'and': 4.0, 'sold': 1.0, 'own': 1.0, 'bag': 1.0, 'came': 1.0, 'idea': 1.0, 'hurt': 1.0, 'help': 1.0, 's': 3.0, 'a': 3.0, 'go': 1.0, 'when': 3.0, 'cushie': 1.0, 'mommy': 1.0, 'public': 1.0, 'bought': 1.0, 'three': 2.0, 'since': 1.0, 'two': 1.0, 'of': 1.0, 'the': 10.0, 'hands': 1.0, 'trained': 2.0, 'many': 1.0, 'like': 1.0, 'cheap': 1.0, 'for': 3.0, 'kids': 2.0, 'this': 2.0, 've': 2.0, 'i': 8.0, 'well': 1.0, 'up': 2.0, 'to': 5.0, '30lb': 1.0, 'worked': 1.0, 'traveler': 1.0, 'that': 1.0, 'were': 2.0, 'not': 1.0, 'skin': 1.0, 'with': 2.0, 'red': 1.0, '3': 1.0, 'useless': 1.0, 'flexed': 1.0, 'out': 3.0, 'me': 2.0, 'my': 1.0, '2': 1.0, 'year': 1.0, 'his': 1.0, 'number': 1.0, 'old': 1.0, 'weight': 1.0, 'fold': 1.0, 'he': 2.0, 'stabilize': 1.0, 'himself': 1.0, 'did': 1.0, 'ended': 1.0, 'it': 8.0, 'him': 1.0, 'enough': 1.0, 'leave': 1.0, 'breaking': 1.0, 'there': 1.0, 'is': 1.0, 'more': 1.0, 'now': 1.0, 'first': 2.0, 'are': 1.0, 'm': 1.0, 'seat': 5.0, 'in': 1.0, 'use': 2.0, 'yells': 1.0, 'no': 1.0, 'read': 1.0, 'ever': 1.0, 'other': 1.0, 'we': 4.0, 'fine': 1.0, 'reviews': 1.0, 'seemed': 1.0, 'positive': 1.0, 'one': 1.0, 'ones': 1.0, 'took': 1.0, 'mark': 2.0, 'us': 1.0}
Word element => {'clothes': 1.0, 'his': 1.0, 'himself': 1.0, 'on': 1.0, 'struggle': 1.0, 'good': 1.0, 'for': 3.0, 'pee': 1.0, 'travel': 1.0, 'so': 2.0, 'to': 1.0, 'compact': 1.0, 'but': 1.0, 's': 2.0, 'not': 2.0, 'him': 1.0, 'it': 2.0, 'great': 1.0, 'a': 1.0, 'boys': 1.0}
Word element => {'great': 1.0, 'training': 1.0, 've': 1.0, 'girl': 1.0, 'big': 1.0, 'herself': 1.0, 'potty': 4.0, 'keeping': 1.0, 'butt': 1.0, 'a': 4.0, 'replacement': 1.0, 't': 2.0, 's': 2.0, 'proud': 1.0, 'not': 1.0, 'about': 1.0, 'contact': 1.0, 'on': 2.0, 'long': 1.0, 'at': 1.0, 'is': 4.0, 'more': 1.0, 'around': 1.0, 'loves': 1.0, 'going': 1.0, 'kid': 1.0, 'travel': 3.0, 'so': 2.0, 'can': 2.0, 'but': 1.0, 'case': 1.0, 'surfaces': 1.0, 'recommended': 1.0, 'and': 6.0, 'fall': 1.0, 'that': 2.0, 'offering': 1.0, 'i': 6.0, 'in': 5.0, 'comfortable': 1.0, 'your': 2.0, 'feel': 2.0, 'such': 1.0, 'for': 3.0, 'be': 3.0, 'ready': 2.0, 'has': 1.0, 'to': 8.0, 'me': 1.0, 'my': 6.0, 'before': 1.0, 'her': 3.0, 'catch': 1.0, 'product': 2.0, 'child': 1.0, 'don': 1.0, 'this': 3.0, 'with': 3.0, 'home': 2.0, 'up': 1.0, 'less': 1.0, 'make': 1.0, 'goes': 1.0, 'she': 4.0, 'already': 1.0, 'it': 3.0, 'bear': 1.0, 'was': 2.0, 'lbs': 1.0, 'daughter': 3.0, 'horrified': 1.0, 'gets': 1.0, 'still': 1.0, 'expect': 1.0, 'hands': 2.0, 'of': 1.0, 'the': 5.0, 'without': 1.0, 'some': 1.0, 'support': 1.0, 'stability': 1.0, '21': 1.0, 'months': 1.0, 'one': 1.0, '25': 1.0, 'public': 2.0, 'while': 1.0, 'like': 1.0, 'parent': 1.0, 'think': 1.0, 'definitely': 1.0, 'better': 1.0, 'just': 1.0, 'item': 1.0, 'friends': 1.0, 'folding': 1.0, 'after': 2.0, 'sure': 1.0, 'beats': 1.0, 'hover': 1.0, 'happens': 1.0, 'helped': 1.0, 'all': 2.0, 'an': 1.0, 'action': 1.0, 'using': 1.0, 'bag': 2.0, 'adapter': 2.0, 'run': 1.0, 'carry': 1.0}
Word element => {'potty': 1.0, 'her': 1.0, 'nice': 1.0, 'fall': 1.0, 'almost': 1.0, 'tendency': 1.0, 'restrooms': 1.0, 'public': 1.0, 'regular': 1.0, 'in': 2.0, 'that': 2.0, 'it': 4.0, 'love': 1.0, 'for': 1.0, 'stores': 1.0, 're': 1.0, 'at': 2.0, 'about': 1.0, 'folds': 1.0, 'and': 5.0, 'out': 1.0, 'my': 2.0, 'fits': 1.0, 'relatives': 1.0, 'got': 1.0, 'travel': 1.0, 'use': 1.0, 'church': 1.0, 'home': 2.0, 'homes': 1.0, 'daughter': 2.0, 'seat': 1.0, 'to': 2.0, 'its': 1.0, 'i': 2.0, 'up': 1.0, 'has': 2.0, 'isn': 1.0, 'own': 1.0, 'carrying': 1.0, 'bag': 1.0, 'seats': 1.0, 'when': 1.0, 'you': 1.0, 'this': 1.0, 'soft': 1.0, 'toilets': 1.0, 'nicely': 1.0, 'a': 2.0, 'we': 1.0, 's': 1.0, 't': 1.0, 'prefers': 1.0, 'shift': 1.0, 'most': 1.0, 'but': 2.0, 'quite': 1.0, 'stable': 1.0, 'on': 1.0, 'overall': 1.0, 'elongated': 1.0, 'accessory': 1.0, 'like': 1.0, 'standard': 1.0, 'find': 1.0}
Word element => {'but': 2.0, 'training': 1.0, 'it': 2.0, 'he': 1.0, 'not': 1.0, 'seat': 1.0, 'to': 2.0, 'recommend': 1.0, 'doesn': 1.0, 'was': 1.0, 'purchased': 1.0, 'use': 1.0, 'public': 2.0, 'who': 1.0, 'grandson': 1.0, 'restrooms': 2.0, 'in': 2.0, 'seems': 1.0, 'the': 2.0, 'great': 1.0, 'make': 1.0, 'my': 1.0, 'only': 1.0, 'its': 1.0, 'much': 1.0, 'pinch': 1.0, 'more': 2.0, 'is': 1.0, 't': 1.0, 's': 1.0, 'smaller': 1.0, 'potty': 2.0, 'so': 3.0, 'sanitary': 1.0, 'product': 1.0, 'for': 2.0, 'afraid': 1.0, 'using': 1.0, 'like': 1.0, 'home': 1.0, 'with': 1.0, 'convenient': 1.0, 'discreet': 1.0, 'carry': 1.0, 'bag': 1.0, 'and': 1.0, 'this': 2.0, 'soft': 1.0, 'would': 1.0}
Word element => {'accidents': 1.0, 'has': 1.0, 'home': 1.0, 're': 1.0, 'when': 1.0, 'now': 1.0, 'holding': 1.0, 'didn': 1.0, 'wouldn': 1.0, 'of': 1.0, 'in': 1.0, 'falling': 1.0, 'big': 1.0, 'on': 1.0, 'sit': 1.0, 'most': 1.0, 'can': 2.0, 'toilet': 1.0, 'this': 2.0, 'she': 5.0, 'it': 2.0, 'were': 1.0, 'out': 2.0, 'does': 1.0, 'because': 1.0, 'than': 1.0, 'nicely': 1.0, 'without': 1.0, 'the': 6.0, 'fewer': 1.0, 'and': 3.0, 'purse': 1.0, 'seats': 1.0, 'take': 1.0, 'me': 1.0, 'those': 1.0, 'go': 1.0, 't': 3.0, 'we': 2.0, 'much': 1.0, 'other': 1.0, 'making': 1.0, 'is': 2.0, 'absolutely': 1.0, 'restroom': 1.0, 'nicer': 1.0, 'are': 1.0, 'time': 1.0, 'potty': 3.0, 'so': 2.0, 'that': 2.0, 'into': 1.0, 'fits': 1.0, 'my': 2.0, 'anywhere': 1.0, 'convenient': 1.0, 'at': 1.0, 'flimsy': 1.0, 'since': 1.0, 'seat': 3.0, 'to': 3.0, 'had': 3.0, 'before': 1.0, 'her': 2.0, 'i': 2.0, 'whenever': 1.0, 'daughter': 1.0, 'wonderful': 1.0, 'travel': 2.0, 'use': 2.0, 'hard': 1.0, 'while': 1.0, 'like': 3.0, 'hold': 1.0, 'over': 1.0}
Word element => {'hotel': 1.0, 'and': 1.0, 'vacation': 1.0, 'on': 1.0, 'large': 1.0, 'toilets': 1.0, 'well': 1.0, 'since': 1.0, 'is': 1.0, 'the': 2.0, 'fall': 1.0, 'extra': 1.0, 'for': 2.0, 'perfect': 1.0, 'airplane': 1.0, 'in': 1.0, 'long': 1.0, 'works': 1.0, 'this': 1.0, 'only': 1.0, 'it': 2.0, 'bring': 1.0, 'problem': 1.0, 'pretty': 1.0, 'industrial': 1.0, 'to': 2.0, 'wants': 1.0, 'purchased': 1.0, 'work': 1.0, 'will': 1.0, 'but': 1.0, 'i': 1.0, 'originally': 1.0}
Word element => {'2': 1.0, 'plus': 1.0, 'or': 1.0, 'extra': 1.0, 'some': 1.0, 'of': 1.0, 'up': 1.0, 'takes': 1.0, 'height': 1.0, 'width': 1.0, 'have': 1.0, 'small': 1.0, 'bag': 2.0, 'diaper': 1.0, 'her': 1.0, 'length': 1.0, 'in': 1.0, 'easy': 1.0, '8in': 1.0, 'and': 5.0, 'unfold': 1.0, 'used': 1.0, 'works': 1.0, 'many': 1.0, 'is': 2.0, 'herself': 1.0, 'training': 1.0, 'first': 1.0, 'she': 2.0, 'it': 8.0, 'ups': 1.0, 'scared': 1.0, 'this': 2.0, 'were': 1.0, 'tries': 1.0, 'times': 1.0, 'sippy': 1.0, 'relatively': 1.0, 'started': 1.0, 'not': 2.0, 'maybe': 1.0, 'because': 1.0, '4in': 1.0, 'my': 1.0, 'space': 1.0, 'trips': 1.0, 'keep': 1.0, 'at': 2.0, 'half': 1.0, 'has': 2.0, 'public': 1.0, 'snacks': 1.0, 'for': 4.0, 'pull': 1.0, 'daughter': 1.0, 'us': 1.0, 'by': 1.0, 'bought': 1.0, 'months': 2.0, 'i': 3.0, '4': 1.0, 'put': 1.0, 'on': 2.0, 'room': 1.0, '20': 1.0, 'cups': 1.0, 'seat': 1.0, 'to': 3.0, 'panties': 1.0, 'had': 1.0, 'use': 1.0, 'point': 1.0, 'we': 2.0, 's': 1.0, 've': 1.0, 'still': 2.0, 'broken': 1.0, '10in': 1.0, 'the': 3.0, 'however': 1.0, 'seats': 1.0, 'potty': 1.0, 'so': 1.0}
Word element => {'glad': 1.0, 'home': 1.0, 'our': 1.0, 'in': 1.0, 'travel': 1.0, 'toilets': 1.0, 'the': 1.0, 'i': 2.0, 'great': 1.0, 'either': 1.0, 'it': 2.0, 'of': 1.0, 'seat': 2.0, 'doesn': 1.0, 'a': 1.0, 'princess': 1.0, 'fits': 1.0, 'but': 1.0, 'purchased': 2.0, 'first': 1.0, 'this': 1.0, 'fit': 1.0, 't': 1.0}
Word element => {'underwear': 1.0, 'normal': 1.0, 'out': 1.0, 'can': 1.0, 'we': 1.0, 'for': 1.0, 'toilet': 1.0, 'make': 1.0, 'on': 2.0, 'that': 4.0, 'them': 1.0, 'would': 2.0, 'hesitant': 1.0, 'wasn': 1.0, 'really': 1.0, 'back': 1.0, 'grateful': 1.0, 'work': 1.0, 'but': 2.0, '2': 1.0, 'this': 2.0, 'case': 1.0, 'ups': 1.0, 'do': 1.0, 'and': 6.0, 'getting': 1.0, 'did': 1.0, 'how': 1.0, 'stage': 1.0, '6': 1.0, 'little': 2.0, 'a': 4.0, 't': 2.0, 's': 2.0, 'go': 2.0, 'was': 1.0, 'recommend': 1.0, 'doesn': 1.0, 'about': 1.0, 'purse': 1.0, 'sure': 2.0, 'glad': 1.0, 'seats': 1.0, 'girl': 3.0, 'cries': 1.0, 'my': 3.0, 'bathroom': 2.0, 'another': 1.0, 'comes': 1.0, 'more': 1.0, 'terrified': 1.0, 'those': 1.0, 'in': 1.0, 'seat': 2.0, 'months': 1.0, 'they': 1.0, 'positioned': 1.0, 'potty': 2.0, 'public': 2.0, 'the': 6.0, 'of': 3.0, 'support': 1.0, 'carrying': 1.0, 'it': 5.0, 'she': 1.0, 'seems': 1.0, 'will': 1.0, 'bathrooms': 1.0, 'be': 1.0, 'to': 3.0, 'pretty': 1.0, 'her': 1.0, 'am': 2.0, 'last': 1.0, 'loves': 1.0, 'materials': 1.0, 'cheaper': 1.0, 'construction': 1.0, 'padded': 1.0, 'big': 2.0, 'with': 1.0, 'good': 1.0, 'which': 1.0, 'daughter': 1.0, 'pull': 1.0, 'now': 2.0, 'i': 6.0, 'calls': 1.0, 'happy': 1.0, 'breakthrough': 1.0, 'even': 1.0, 'during': 1.0, 'training': 1.0, 'huge': 1.0, 'than': 2.0, 'is': 4.0, 'at': 1.0, 'every': 1.0, 'if': 1.0, 'still': 1.0, 'buy': 1.0, 'time': 2.0, 'uses': 1.0}
Word element => {'me': 1.0, 'child': 1.0, 'good': 1.0, 'would': 1.0, 't': 1.0, 'a': 1.0, 'going': 1.0, '35lbs': 1.0, 'potty': 1.0, 'out': 1.0, 'folds': 1.0, 'flimsy': 1.0, 'toilet': 2.0, 'lighter': 1.0, 'son': 1.0, 'pieces': 1.0, 'in': 2.0, 'also': 1.0, 'really': 1.0, 'this': 1.0, 'it': 3.0, 'has': 2.0, 'convenient': 1.0, 'for': 3.0, 'one': 1.0, 'into': 1.0, 'been': 1.0, 'folded': 1.0, 'when': 1.0, 'training': 1.0, 'work': 1.0, 'but': 2.0, 'my': 1.0, 'inward': 1.0, 'the': 7.0, 'didn': 1.0, 'sits': 1.0, 'is': 2.0, 'more': 1.0, 'construction': 1.0, 'collapse': 1.0, 'feels': 1.0, 'like': 1.0, 'hold': 1.0, 'toward': 1.0, 'on': 2.0, 'gaps': 1.0, 'maybe': 1.0, 'because': 1.0, 'than': 1.0, 'sinks': 1.0, 'once': 1.0, 'of': 1.0, 'and': 1.0, 'pinched': 1.0, 'be': 1.0, 'him': 2.0, '4': 1.0, 'i': 1.0, 'have': 1.0, 'seat': 3.0, 'to': 3.0}
Word element => {'in': 1.0, 'honest': 1.0, 'be': 1.0, 'works': 1.0, 'dimensions': 1.0, 'folded': 1.0, 'padded': 1.0, 'through': 1.0, 'i': 3.0, 'year': 1.0, 'kind': 1.0, 'review': 1.0, 'won': 1.0, 'make': 1.0, 'on': 1.0, 'that': 2.0, 'my': 1.0, '25lb': 1.0, 'fall': 1.0, 'frail': 1.0, 'size': 2.0, 'at': 1.0, 'flimsy': 1.0, 'toilet': 1.0, 'plastic': 1.0, 'bulky': 1.0, 'the': 3.0, 'don': 1.0, 'and': 1.0, 'seats': 1.0, 'moment': 1.0, 'would': 1.0, 'it': 3.0, 'folding': 1.0, 'bonus': 1.0, 'so': 2.0, 't': 2.0, 's': 2.0, 'a': 2.0, '2': 1.0, 'but': 2.0, 'standard': 1.0, 'does': 1.0, 'for': 1.0, 'trust': 1.0, 'transport': 1.0, 'bought': 1.0, 'have': 2.0, 'flat': 1.0, 'had': 1.0, 'old': 1.0, 'realized': 1.0, 'to': 1.0, 'any': 1.0, 'actual': 1.0}
Word element => {'purchased': 1.0, 'glad': 1.0, 'cushion': 1.0, 'this': 1.0, 'it': 1.0, 'portable': 1.0, 'love': 1.0, 'we': 2.0, 'so': 2.0, 'potty': 1.0, 'of': 1.0, 'my': 1.0, 'the': 1.0, 'is': 1.0, '2': 1.0, 'far': 1.0, 'but': 1.0, 'just': 1.0, 'daughter': 1.0, 'in': 1.0, 'beginning': 1.0, 'training': 1.0, 'stages': 1.0}
Word element => {'thick': 1.0, 'hinges': 1.0, 'the': 2.0, 'even': 1.0, 'adult': 1.0, 'use': 1.0, 'sometimes': 1.0, 'and': 1.0, 'scared': 1.0, 'too': 2.0, 'when': 1.0, 'us': 1.0, 'toilet': 1.0, 'size': 1.0, 'fine': 1.0, 'padding': 1.0, 'is': 2.0, 'folded': 1.0, 'not': 1.0, 'because': 1.0, 'we': 1.0, 'a': 1.0, 'for': 1.0, 'liked': 1.0, 'easy': 1.0, 'lot': 1.0, 'compact': 1.0, 'was': 1.0, 'its': 1.0, 'to': 3.0, 'carry': 1.0, 'clean': 1.0, 'made': 1.0, 'out': 1.0, 'this': 1.0, 'it': 2.0, 'with': 2.0, 'that': 1.0, 'easier': 1.0, 'our': 1.0, 'an': 1.0, 'toddler': 1.0}
Word element => {'toilet': 1.0, 'elongated': 1.0, 'have': 1.0, 'if': 1.0, 'not': 1.0, 'is': 1.0, 'you': 1.0, 'way': 1.0, 'backpack': 1.0, 'his': 1.0, 'put': 1.0, 'travel': 1.0, 'pouch': 1.0, 'into': 1.0, 'year': 2.0, 'for': 1.0, 'in': 1.0, 'perfect': 1.0, 'larger': 1.0, '3': 1.0, 'we': 1.0, 'light': 1.0, 'cover': 1.0, 'my': 1.0, 'potty': 1.0, 'little': 2.0, 'its': 1.0, 'was': 2.0, 'to': 2.0, 'i': 1.0, 'old': 1.0, 'took': 1.0, 'this': 2.0, 'it': 5.0, 'foldable': 1.0, 'europe': 1.0, 'and': 3.0, 'up': 1.0, 'however': 1.0, 'folds': 1.0, 'so': 1.0, 'a': 2.0, 'convenient': 2.0, 'slides': 1.0}
Word element => {'great': 1.0, 'wipe': 1.0, 'with': 1.0, 'up': 1.0, 'money': 1.0, 'but': 1.0, 'sometimes': 1.0, 'think': 1.0, 'on': 1.0, 'peeing': 1.0, 'results': 1.0, 'that': 1.0, 'daughter': 2.0, 'rating': 1.0, 'it': 7.0, 'this': 2.0, 'only': 1.0, 'far': 2.0, 'haven': 1.0, 'seen': 1.0, 'times': 1.0, 'so': 3.0, 'star': 1.0, 'ton': 1.0, '4': 1.0, 'i': 5.0, 'worked': 2.0, 'very': 2.0, 'well': 3.0, 'has': 1.0, 'transport': 1.0, 'of': 1.0, 'used': 2.0, 'does': 1.0, 'hole': 1.0, 'a': 4.0, 't': 1.0, 'the': 5.0, 'my': 2.0, 'yet': 1.0, 'restaurant': 1.0, 'is': 7.0, 'fine': 1.0, 'too': 1.0, 'and': 6.0, 'just': 1.0, 'light': 1.0, 'buy': 1.0, 'definitely': 1.0, 'sturdy': 1.0, 'enough': 1.0, 'for': 1.0, 'fit': 1.0, 'in': 2.0, 'hence': 1.0, 'easy': 1.0, 'clean': 2.0, 'not': 1.0, 'pinch': 1.0, 'at': 1.0, 'seat': 1.0, 'to': 1.0, 'all': 2.0, 'small': 2.0, 'have': 1.0, 'problem': 1.0}
Word element => {'to': 1.0, '4': 1.0, 'months': 1.0, '18': 1.0, 'from': 1.0, 'theirs': 1.0, 'used': 1.0, 'kids': 1.0, 'stylish': 1.0, '1': 1.0, 'and': 3.0, 'between': 1.0, 'a': 3.0, 'go': 1.0, 'chair': 2.0, 'old': 1.0, 'step': 1.0, 'plus': 1.0, 'my': 1.0, 'high': 1.0, 'but': 1.0, '2': 1.0, 'the': 2.0, 'looks': 1.0, 'regular': 1.0, 'is': 2.0, 'it': 1.0, 'this': 1.0, 'higher': 1.0, 'child': 1.0, 'out': 1.0, 'has': 1.0, 'years': 1.0, 'age': 1.0, 'rest': 1.0, 'foot': 1.0, 'can': 1.0, 'perfect': 1.0, 'in': 1.0, 'independently': 1.0}
Word element => {'great': 1.0, 'works': 1.0, 'time': 1.0, 'a': 2.0, 'had': 1.0, 'for': 1.0, 'safety': 1.0, 'platform': 1.0, 'hard': 1.0, 'one': 1.0, 'finding': 1.0, 'this': 1.0, 'rail': 1.0, 'bed': 1.0, 'my': 1.0}
Word element => {'someone': 1.0, 'definitely': 1.0, 'would': 1.0, 'i': 1.0, 'change': 1.0, 'much': 1.0, 'down': 1.0, 'rail': 3.0, 'twin': 1.0, 'didn': 1.0, 'recommend': 1.0, 'easy': 1.0, 'use': 1.0, 'all': 1.0, 'and': 2.0, 'its': 1.0, 'to': 4.0, 'was': 1.0, 'at': 1.0, 'we': 1.0, 'fold': 1.0, 'up': 1.0, 'set': 1.0, 't': 1.0, 'the': 3.0, 'make': 1.0, 'fit': 1.0, 'adjusted': 1.0, 'bed': 4.0, 'directions': 1.0, 'with': 1.0, 'this': 2.0, 'it': 1.0, 'easier': 1.0, 'our': 1.0, 'son': 1.0, 'sheets': 1.0, 's': 1.0}
Word element => {'easy': 1.0, 'install': 1.0, 'issues': 1.0, 'no': 1.0, 'far': 1.0, 'so': 1.0, 'my': 1.0, 'the': 1.0, 'sturdy': 1.0, 'got': 1.0, '1m': 1.0, 'daughter': 1.0, 'it': 1.0, 'this': 1.0, 'have': 1.0, 'bunk': 1.0, 'a': 1.0, 'crib': 1.0, 'been': 1.0, 'we': 2.0, 'old': 1.0, 'now': 1.0, 'to': 2.0, 'bed': 1.0, 'for': 2.0, 'using': 1.0, 'transitioned': 1.0, 'her': 1.0, '21mo': 1.0, 'as': 1.0, 'from': 1.0}
Word element => {'very': 1.0, 'move': 1.0, '2nd': 1.0, 'need': 1.0, 'if': 1.0, 'will': 1.0, 'or': 1.0, 'when': 1.0, 'hurt': 1.0, 'not': 1.0, 'does': 1.0, 'net': 1.0, 'getting': 1.0, 'length': 1.0, 'easy': 1.0, 'hit': 1.0, 'knew': 1.0, 'rail': 1.0, 'room': 1.0, 'rolls': 2.0, 'her': 6.0, 'long': 1.0, 'she': 3.0, 'it': 1.0, 'i': 1.0, 'frequently': 1.0, 'about': 1.0, 'my': 2.0, 'rolled': 1.0, 'by': 1.0, 'worried': 1.0, 'soft': 1.0, 'poll': 1.0, 'this': 2.0, 'doing': 1.0, 'bed': 2.0, 'daughter': 2.0, 'one': 1.0, 'bought': 1.0, 'for': 3.0, 'product': 1.0, 'material': 1.0, 'buy': 1.0, 'close': 1.0, 'moved': 1.0, 'and': 6.0, 'our': 1.0, 'to': 5.0, 'as': 3.0, 'ready': 1.0, 'year': 1.0, 's': 2.0, 'we': 2.0, 'is': 3.0, 'scratch': 1.0, 'twin': 1.0, '1': 1.0, 'nice': 1.0, 'put': 1.0, 'but': 1.0, 'child': 1.0, 'over': 1.0, 'up': 1.0, 'so': 1.0, 'falling': 1.0, 'then': 1.0, 'far': 1.0, 'prevents': 1.0, 'counting': 1.0, 'the': 4.0, 'job': 1.0, '62': 1.0, 'well': 1.0, 'has': 1.0}
Word element => {'or': 1.0, 'platform': 1.0, 'use': 1.0, 'most': 1.0, 'than': 1.0, 'great': 1.0, 'the': 1.0, 'higher': 1.0, 'spring': 1.0, 'feature': 1.0, 'we': 1.0, 'having': 1.0, 'for': 1.0, 'one': 1.0, 'bed': 5.0, 'time': 1.0, 'has': 2.0, 'twin': 1.0, 'a': 8.0, 'had': 1.0, 'daughter': 1.0, 'and': 3.0, 'trundle': 2.0, 'my': 1.0, 'folding': 1.0, 'this': 2.0, 'with': 1.0, 'hard': 1.0, 'finding': 1.0, 'rail': 2.0, 'that': 1.0, 'could': 1.0, 'box': 1.0, 'be': 1.0, 'w': 1.0, 'works': 1.0, 'mattress': 1.0, 'used': 1.0, 'without': 1.0}
Word element => {'because': 1.0, 'we': 2.0, 'so': 1.0, 'of': 1.0, 'bottom': 1.0, 'crawl': 1.0, 'get': 1.0, 'and': 3.0, 'safe': 2.0, 'short': 1.0, 'be': 1.0, 'around': 1.0, 'enough': 2.0, 'down': 1.0, 'her': 2.0, 'long': 1.0, 'turn': 1.0, 'assemble': 1.0, 'she': 2.0, 'easy': 1.0, 'for': 2.0, 'bed': 3.0, 'sleeper': 1.0, 'the': 4.0, 'big': 1.0, 'very': 2.0, 'dex': 1.0, 'time': 1.0, 'is': 1.0, 'our': 1.0, 'to': 5.0, 'was': 3.0, 'granddaughter': 1.0, 'had': 1.0, 'in': 1.0, 'did': 1.0, 'slept': 2.0, 'this': 1.0, 'first': 1.0, 'it': 1.0, 'well': 1.0, 'a': 1.0, 'knew': 1.0, 'rail': 1.0, 'girl': 1.0}
Word element => {'definitely': 1.0, 'platform': 1.0, 'daughters': 1.0, 'my': 1.0, 'rail': 1.0, 'this': 2.0, 'would': 1.0, 'was': 1.0, 'product': 1.0, 'exactly': 1.0, 'purchase': 1.0, 'we': 1.0, 'bed': 1.0, 'worked': 1.0, 'again': 1.0, 'what': 1.0, 'needed': 1.0, 'it': 1.0, 'great': 1.0, 'for': 1.0}
Word element => {'out': 1.0, 'way': 1.0, 'no': 1.0, 'just': 1.0, 'there': 1.0, 'did': 1.0, 'option': 1.0, 'had': 1.0, 'that': 1.0, 'find': 1.0, 'order': 1.0, 'are': 1.0, 'was': 5.0, 'to': 8.0, 'but': 2.0, '2': 2.0, 'her': 2.0, 'higher': 1.0, 'it': 8.0, 'with': 4.0, 'figure': 1.0, 'very': 2.0, 'temporarily': 1.0, 'and': 5.0, 'try': 1.0, 'only': 1.0, 'works': 2.0, 'do': 1.0, 'me': 1.0, 'bed': 4.0, 'this': 4.0, 'platform': 2.0, 'crib': 1.0, 'size': 1.0, 'new': 2.0, 'i': 5.0, 'one': 1.0, 'bought': 1.0, 'my': 1.0, 'model': 1.0, 'easy': 2.0, 'use': 2.0, 'together': 1.0, 'convertible': 1.0, 'able': 2.0, 'could': 1.0, 's': 1.0, 'a': 3.0, 'make': 1.0, 'put': 1.0, 'on': 4.0, 'secure': 2.0, 'also': 1.0, 'in': 2.0, 'great': 2.0, 'climbing': 1.0, 'big': 1.0, 'twin': 2.0, 'feel': 1.0, 'install': 2.0, 'year': 2.0, 'sturdy': 1.0, 'girl': 1.0, 'more': 1.0, 'is': 2.0, 'old': 2.0, 'makes': 1.0, 'the': 3.0, 'myself': 1.0, 'playing': 1.0, 'hinges': 1.0}
Word element => {'substitute': 1.0, 'her': 1.0, 'his': 1.0, 'or': 2.0, 'who': 1.0, 'years': 1.0, 'for': 2.0, 'warn': 1.0, 'instructions': 1.0, 'bought': 1.0, 'wife': 1.0, 'my': 1.0, 'younger': 1.0, 'irresponsible': 1.0, 'infant': 1.0, 'own': 1.0, 'an': 1.0, 'with': 1.0, 'mention': 1.0, 'above': 1.0, 'recommendations': 1.0, 'of': 2.0, 'out': 2.0, 'it': 4.0, 'on': 3.0, 'the': 9.0, 'in': 2.0, 'tension': 1.0, '2': 1.0, 'but': 1.0, 'can': 1.0, 'right': 1.0, 'spring': 1.0, 'has': 1.0, 'highly': 1.0, 'really': 1.0, 'bed': 3.0, 'height': 1.0, 'be': 1.0, 'those': 1.0, 'not': 2.0, 'is': 3.0, 'caught': 1.0, 'rail': 4.0, 't': 1.0, 's': 1.0, 'a': 8.0, 'could': 2.0, 'easily': 2.0, 'box': 1.0, 'that': 2.0, 'enough': 1.0, 'some': 1.0, 'support': 1.0, 'roll': 2.0, 'there': 1.0, 'larger': 2.0, 'strap': 1.0, 'cannot': 1.0, 'using': 2.0, 'hold': 1.0, 'sleeper': 1.0, 'based': 1.0, 'this': 3.0, 'mattress': 3.0, 'low': 1.0, 'any': 2.0, 'to': 1.0, 'as': 1.0, 'result': 1.0, 'over': 1.0, 'child': 4.0, 'and': 6.0, 'get': 2.0, 'reviews': 1.0, 'firmly': 1.0, 'between': 1.0, 'co': 1.0, 'workable': 1.0, 'simply': 1.0, 'against': 4.0, 'so': 1.0, 'than': 1.0, 'installed': 1.0, 'standard': 1.0}
Word element => {'thier': 1.0, 'fall': 1.0, 'age': 1.0, 'months': 1.0, 'in': 1.0, 'apart': 1.0, '13': 1.0, 'boys': 1.0, 'will': 1.0, 'but': 1.0, 's': 1.0, 'yes': 1.0, 'here': 1.0, 'hidden': 1.0, 'off': 1.0, 'sleep': 1.0, 'accomodated': 1.0, 'rail': 1.0, 'two': 1.0, '40': 1.0, 'no': 1.0, 'that': 1.0, 'box': 1.0, 'agenda': 1.0, 'a': 1.0, 'knowing': 1.0, 'beds': 2.0, 'bed': 1.0, 'explains': 1.0, 'for': 1.0, 'and': 2.0, 'as': 1.0, 'twin': 1.0, 'not': 1.0, 'searched': 2.0, 'i': 2.0, 'can': 1.0, 'without': 1.0, 'this': 1.0, 'it': 4.0, 'works': 1.0, 'my': 1.0, 'springs': 1.0, 'side': 1.0, 'is': 1.0, 'exactly': 1.0}
Word element => {'spring': 1.0, 'recommand': 1.0, 'without': 1.0, 'beds': 1.0, 'and': 3.0, 'my': 2.0, 'boxes': 1.0, 'years': 1.0, 'for': 3.0, 'one': 2.0, '4': 1.0, 'of': 1.0, 'is': 1.0, '2': 1.0, 'these': 1.0, 'have': 1.0, 'ronit': 1.0, 'we': 2.0, '3': 1.0, 'strong': 1.0, 'long': 1.0, 'then': 1.0, 'got': 1.0, 'needed': 1.0, 'i': 2.0, 'old': 1.0, 'it': 3.0, 'safe': 1.0, 'enough': 1.0}
Word element => {'need': 1.0, 'that': 1.0, 'if': 1.0, 'a': 1.0, 'well': 1.0, 'what': 1.0, 'works': 1.0, 'adult': 2.0, 'as': 1.0, 'and': 1.0, 'said': 1.0, 'is': 1.0, 'box': 1.0, 'weight': 1.0, 'an': 1.0, 'but': 1.0, 'advertised': 1.0, 'this': 1.0, 'it': 3.0, 'child': 2.0, 'came': 1.0, 'rail': 2.0, 'light': 1.0, 'you': 1.0, 's': 2.0, 'was': 1.0, 'when': 1.0, 'too': 1.0, 'small': 1.0, 'bed': 4.0, 'for': 2.0}
Word element => {'full': 1.0, 'a': 1.0, 'daughter': 1.0, 'anyone': 1.0, 'bed': 1.0, 'has': 1.0, 'recommend': 1.0, 'this': 1.0, 'sized': 1.0, 'and': 1.0, 'my': 1.0, 'the': 1.0, 'serves': 1.0, 'purpose': 1.0, 'works': 1.0, 'great': 1.0, 'it': 1.0, 'i': 1.0, 'would': 1.0, 'was': 1.0, 'to': 1.0, 'purchased': 1.0}
Word element => {'easy': 1.0, 'it': 1.0, 'assembly': 1.0, 'frustrated': 1.0, 'were': 1.0, 'although': 1.0, 'worth': 1.0, 'are': 1.0, 'them': 1.0, 'able': 1.0, 'be': 2.0, 'will': 1.0, 'my': 1.0, 'money': 1.0, 'work': 1.0, 'not': 1.0, 'just': 1.0, 'at': 1.0, 'no': 1.0, 'was': 2.0, 'i': 5.0, 'number': 1.0, 'did': 2.0, 'bed': 4.0, 'the': 4.0, 'some': 1.0, 'these': 1.0, 'rails': 2.0, 'way': 1.0, 'with': 2.0, 'people': 1.0, 'shocked': 1.0, 'first': 1.0, 'son': 2.0, 'big': 1.0, 'of': 1.0, 'there': 1.0, 'to': 4.0, 'our': 1.0, 'that': 2.0, 'they': 2.0, 's': 1.0, 'a': 2.0, 'well': 1.0, 'found': 1.0, 'platform': 1.0, 'very': 1.0, 'little': 1.0, 'looking': 1.0, 'reluctant': 1.0, 'buys': 1.0, 'due': 1.0, 'price': 1.0, 'difference': 1.0, 'and': 2.0, 'move': 1.0, 'however': 1.0, 'boy': 1.0, 'so': 1.0, 'when': 1.0, 'am': 1.0, 'extremely': 1.0, 'pleased': 1.0, 'for': 2.0, 'fit': 1.0, 'is': 1.0}
Word element => {'sound': 1.0, 'ones': 1.0, 'found': 1.0, 'santa': 1.0, 'mishaps': 1.0, 'no': 1.0, 'had': 1.0, 'completely': 1.0, 'mom': 1.0, 'size': 1.0, 'guest': 1.0, 'are': 2.0, 'king': 2.0, 'were': 4.0, 'their': 1.0, 'off': 1.0, 'our': 2.0, 'sleep': 1.0, 'to': 2.0, 'wanted': 1.0, 'my': 1.0, 'and': 6.0, '1': 1.0, 'in': 1.0, 'for': 1.0, 'bed': 3.0, 'grandbabies': 1.0, 'planning': 1.0, 'ages': 1.0, 'dad': 1.0, 'with': 1.0, 'christmas': 1.0, 'room': 1.0, 'the': 2.0, 'expectations': 1.0, 'sized': 1.0, 'because': 1.0, 'not': 1.0, 'they': 2.0, 'coming': 1.0, 'small': 1.0, 'we': 2.0, 'make': 1.0, 'these': 1.0, 'roll': 1.0, 'sure': 1.0, 'safe': 2.0, 'did': 1.0, 'little': 1.0, 'very': 1.0, 'few': 1.0, 'rails': 1.0, 'met': 1.0, '2': 1.0, 'but': 1.0, 'available': 1.0, 'luckily': 1.0}
Word element => {'by': 1.0, 'herself': 1.0, 'kidwouldn': 1.0, 'bunk': 1.0, 'this': 1.0, 'able': 2.0, 'be': 2.0, 'supposed': 1.0, 're': 1.0, 'how': 1.0, 'of': 1.0, 'can': 1.0, 'or': 1.0, 'mattressevery': 1.0, 'that': 1.0, 't': 4.0, 'place': 1.0, 'the': 7.0, 'down': 1.0, 'does': 1.0, 'i': 6.0, 'thing': 1.0, 'extra': 1.0, 'mattresses': 1.0, 'don': 2.0, 'up': 2.0, 'securely': 1.0, 'to': 5.0, 'she': 1.0, 'it': 4.0, 'with': 3.0, 'works': 1.0, 'only': 1.0, 'bed': 5.0, 'holds': 1.0, 'is': 2.0, 'thick': 1.0, 'leave': 1.0, 'have': 1.0, 'flat': 1.0, 'in': 4.0, 'time': 1.0, 'against': 1.0, 'himself': 1.0, 'angles': 1.0, 'rails': 1.0, 'out': 2.0, 'away': 1.0, 'not': 1.0, 'me': 1.0, 'get': 3.0, 'and': 2.0, 'from': 1.0, 'know': 1.0, 'cannot': 1.0, 'like': 1.0, 'sleeping': 1.0, 'some': 1.0, 'my': 1.0, 'daughter': 1.0, 'you': 1.0, 'when': 1.0, 'sometimes': 1.0, 'ends': 1.0, 'andi': 1.0, 'use': 2.0, 'beds': 1.0, 'under': 1.0, 'fold': 1.0, 'still': 1.0, 'put': 1.0}
Word element => {'sized': 1.0, 'full': 1.0, 'suspect': 1.0, 'i': 1.0, 'sides': 1.0, 'on': 1.0, 'rails': 1.0, 'has': 1.0, 'into': 1.0, 'too': 1.0, 'converts': 1.0, 'is': 1.0, 'not': 1.0, 'that': 2.0, 'a': 5.0, 'product': 1.0, 'to': 2.0, 'only': 1.0, 'with': 2.0, 'this': 1.0, 'rail': 2.0, 'work': 2.0, 'will': 2.0, 'toddler': 2.0, 'bed': 3.0, 'the': 2.0, 'long': 1.0, 'child': 1.0, 'twin': 1.0, 'three': 1.0, 'crib': 1.0, 'allow': 1.0, 'safely': 1.0, 'exit': 1.0}
Word element => {'if': 1.0, 'be': 1.0, 'him': 1.0, 'goes': 1.0, 'own': 1.0, 'his': 1.0, 'ready': 1.0, 'guy': 1.0, 'though': 2.0, 'you': 2.0, 'when': 2.0, 'easy': 2.0, 'are': 1.0, 'above': 1.0, 'fold': 1.0, 'middle': 2.0, 're': 2.0, 'enough': 1.0, 'off': 1.0, 'roll': 1.0, 'that': 2.0, 'bought': 1.0, 'between': 1.0, 'both': 1.0, 'product': 1.0, 'for': 6.0, 'bed': 6.0, 'length': 1.0, 'in': 3.0, 'over': 1.0, '4': 1.0, 'with': 2.0, 'he': 4.0, 'month': 1.0, 'it': 4.0, 'using': 1.0, 'rolling': 1.0, 'night': 1.0, 'started': 1.0, 'just': 3.0, 'stay': 1.0, 'not': 5.0, 'too': 1.0, 'and': 7.0, 'll': 1.0, 'down': 1.0, 'perfectly': 1.0, 'looking': 1.0, 'ease': 1.0, 'cosleep': 1.0, 'wanted': 1.0, 'our': 4.0, 'to': 2.0, 'rail': 5.0, 'old': 1.0, 'directions': 1.0, 'size': 1.0, 'full': 1.0, 'mattress': 1.0, 'this': 3.0, 'platform': 1.0, 'may': 1.0, 'fits': 1.0, 'feels': 1.0, 'little': 1.0, 'very': 1.0, 'secure': 1.0, 'mommy': 1.0, 'hinges': 1.0, 'queen': 1.0, 'the': 9.0, 'is': 3.0, 'sleeps': 1.0, 'more': 1.0, 'worry': 1.0, 'edge': 1.0, 'of': 2.0, 'big': 1.0, 'feel': 1.0, 'might': 1.0, 'we': 4.0, 's': 3.0, 'a': 4.0, 'so': 4.0, 'bit': 1.0, 'at': 1.0}
Word element => {'things': 1.0, 'at': 1.0, 'am': 1.0, 'i': 2.0, 'does': 1.0, 'for': 1.0, 'in': 1.0, 'trundel': 1.0, 'fine': 1.0, 'beds': 1.0, 'platform': 1.0, '10': 1.0, 'have': 1.0, 'rail': 1.0, 'with': 1.0, 'this': 1.0, 'do': 1.0, 'abed': 1.0, 'and': 2.0, 'great': 1.0, 'the': 1.0, 'good': 1.0, 'job': 1.0, 'not': 1.0, 'just': 1.0, 'recommend': 1.0, 'easy': 1.0, 'to': 1.0, 'assembling': 1.0, 'assemble': 1.0, 'minutes': 1.0}
Word element => {'than': 1.0, 'inside': 1.0, 'slightly': 1.0, 'box': 1.0, 'no': 1.0, 'sized': 1.0, 'twin': 1.0, 'our': 1.0, 'platform': 1.0, 'hinge': 1.0, 'lower': 1.0, 'because': 1.0, 'son': 1.0, 'with': 1.0, 'bedframe': 1.0, 'bed': 1.0, 'for': 1.0, 's': 1.0, 'perfect': 1.0, 'needed': 1.0, 'we': 1.0, 'a': 2.0, 'rail': 1.0, 'spring': 1.0, 'higher': 1.0, 'sits': 1.0, 'the': 2.0, 'mattress': 1.0}
Word element => {'of': 1.0, 'other': 1.0, 'simply': 1.0, 'than': 1.0, 'wasn': 1.0, 'it': 1.0, 'then': 1.0, 'alone': 1.0, 'very': 1.0, 'over': 1.0, 'for': 3.0, 'used': 2.0, 'side': 1.0, 'safer': 1.0, 'problems': 1.0, 'difficult': 1.0, 'son': 2.0, 'under': 4.0, 'do': 1.0, 'granddaughter': 1.0, 'only': 1.0, 'mattress': 4.0, 'this': 1.0, 'whatever': 1.0, 'arms': 2.0, 'putting': 1.0, 'i': 4.0, 'bedrails': 2.0, 'in': 2.0, 'together': 2.0, 'not': 2.0, 'my': 3.0, 'queen': 1.0, 'the': 7.0, 'created': 1.0, 'sure': 1.0, 'kept': 1.0, 'stayed': 1.0, 'an': 1.0, 'secure': 1.0, 'am': 1.0, 'happened': 1.0, 'kid': 1.0, 'longer': 1.0, 'effort': 1.0, 'any': 1.0, 'sleep': 1.0, 'to': 4.0, 'was': 2.0, 'on': 1.0, 'extend': 1.0, 'put': 2.0, 'make': 1.0, 'had': 1.0, 'either': 1.0, 'should': 1.0, 'better': 2.0, 'or': 1.0, 'bed': 2.0, 'headaches': 1.0, 'they': 2.0, 'have': 2.0, 'and': 3.0, 'simple': 1.0, 'forget': 1.0, 'however': 1.0, 'horrible': 1.0, 'securing': 2.0, 't': 1.0, 'could': 1.0, 'a': 2.0}
Word element => {'every': 1.0, 'out': 1.0, 'sticks': 1.0, 'on': 1.0, 'put': 2.0, 'roll': 1.0, 'fit': 1.0, 'him': 1.0, 'would': 1.0, 'don': 1.0, 'and': 3.0, 'bed': 4.0, 'to': 2.0, 'our': 1.0, 'that': 2.0, 'in': 2.0, 'reason': 1.0, 'infant': 1.0, 'rail': 1.0, 'i': 3.0, 'got': 1.0, 'the': 2.0, 'remove': 1.0, 'it': 8.0, 'only': 1.0, 'sometimes': 1.0, 'off': 1.0, 'because': 1.0, 'have': 2.0, 'king': 1.0, 'size': 1.0, 'finding': 1.0, 'time': 1.0, 'bit': 1.0, 'so': 3.0, 'my': 3.0, 'fits': 1.0, 'we': 1.0, 't': 2.0, 'a': 3.0, 's': 1.0, 'you': 1.0, 'perfect': 1.0, 'this': 2.0, 'wish': 1.0, 'difficult': 1.0, 'son': 2.0, 'fold': 1.0, 'is': 4.0, 'completely': 1.0, 'down': 2.0, 'was': 1.0, 'doesn': 1.0, 'want': 1.0, 'if': 1.0}
Word element => {'complaints': 1.0, 'and': 1.0, 'months': 1.0, 'for': 1.0, 'my': 1.0, 'keeps': 1.0, 'sleeping': 1.0, 'need': 1.0, 'to': 1.0, 'exactly': 1.0, 'night': 1.0, 'i': 2.0, 'old': 1.0, 'month': 1.0, 'rail': 1.0, 'he': 1.0, 'it': 3.0, 'this': 1.0, 'have': 2.0, '18': 1.0, 'no': 1.0, 'two': 1.0, 'safe': 1.0, 'while': 1.0, 'is': 1.0, 'we': 1.0, 'does': 1.0, 'what': 1.0, 'used': 1.0, 'every': 1.0}
Word element => {'nice': 1.0, 'looks': 1.0, 'it': 1.0, 'for': 1.0, 'sturdy': 1.0, 'bed': 1.0, 'my': 1.0, 'the': 1.0, 'that': 1.0, 'and': 1.0, 'very': 1.0, 'only': 1.0, 'our': 1.0, 'this': 1.0, 'rail': 1.0, 'fit': 1.0, 'would': 1.0, 'son': 1.0, 'is': 2.0, 'on': 1.0, 'platform': 1.0}
Word element => {'have': 1.0, 'eventually': 1.0, 'cause': 1.0, 'other': 1.0, 't': 1.0, 'don': 1.0, 'need': 1.0, 'and': 5.0, 'moved': 1.0, 'flimsy': 1.0, 'buy': 1.0, 'mess': 1.0, 'straps': 1.0, 'thingy': 1.0, 'my': 2.0, 'fact': 1.0, 'safety': 2.0, 'bed': 4.0, 'no': 2.0, 'despite': 1.0, 'about': 1.0, 'the': 11.0, 'of': 2.0, 'platform': 1.0, 'rail': 2.0, 'this': 3.0, 'found': 1.0, 'mattress': 1.0, 'a': 1.0, 'we': 3.0, 'could': 1.0, 'twin': 1.0, 'crib': 1.0, 'it': 4.0, 'she': 2.0, 'fell': 1.0, 'with': 3.0, 'elastic': 1.0, 'first': 1.0, 'was': 6.0, 'minutes': 1.0, 'kind': 1.0, 'toddler': 1.0, 'simple': 1.0, 'second': 1.0, 'really': 1.0, 'is': 2.0, 'more': 1.0, 'limited': 1.0, 'bedrail': 2.0, 'in': 3.0, 'said': 1.0, 'stuff': 1.0, 'tube': 1.0, 'from': 1.0, 'feels': 1.0, 'having': 1.0, 'on': 3.0, 'put': 1.0, 'box': 2.0, 'that': 3.0, 'inflatable': 1.0, 'used': 2.0, 'anyway': 1.0, 'her': 3.0, 'what': 1.0, 'great': 1.0, 'spring': 2.0, 'edge': 1.0, 'slipped': 1.0, 'll': 1.0, 'right': 2.0, 'out': 1.0, 'there': 1.0, 'so': 1.0, 'to': 4.0, 'against': 1.0, 'did': 1.0, 'research': 1.0, 'purchase': 1.0, 'only': 1.0, 'one': 3.0, 'be': 1.0, 'i': 4.0, 'well': 1.0, 'assembly': 1.0, 'up': 1.0, 'sound': 1.0, 'were': 1.0, 'together': 1.0, 'thing': 1.0, '2': 1.0, 'but': 1.0, 'our': 1.0, 'item': 1.0, 'super': 2.0, 'under': 1.0, 'still': 1.0, 'love': 1.0, 'solid': 1.0, 'construction': 1.0, 'little': 1.0, 'went': 1.0, 'check': 1.0, 'girl': 1.0, 'wedged': 1.0, 'due': 1.0, 'safe': 1.0, 'night': 2.0, 'you': 2.0}
Word element => {'something': 1.0, 'to': 1.0, 'be': 1.0, 'll': 1.0, 'think': 1.0, 'change': 1.0, 'and': 1.0, '90': 1.0, 'or': 1.0, 'does': 1.0, 'able': 1.0, 'not': 1.0, 'fold': 2.0, 'sheets': 1.0, 'deg': 1.0, 'you': 2.0, 'buy': 1.0, 'if': 1.0, 'down': 2.0, 'don': 1.0, 'this': 1.0, 't': 1.0}
Word element => {'far': 1.0, 'problem': 1.0, 'have': 1.0, 'use': 1.0, 'easy': 1.0, 'no': 1.0, 'safe': 1.0, 'is': 1.0, 'to': 4.0, 'starts': 1.0, 'it': 1.0, 'he': 1.0, 'by': 1.0, 'going': 1.0, 'and': 1.0, 'since': 1.0, 'pair': 1.0, 'son': 1.0, 'for': 1.0, 'one': 3.0, 'the': 1.0, 'bought': 1.0, 'sleep': 1.0, 'alone': 1.0, 'over': 2.0, 'mattress': 1.0, 'am': 1.0, 'i': 2.0, 'buy': 1.0, 'third': 1.0, 'put': 1.0, 'my': 1.0, 'end': 1.0}
Word element => {'skip': 1.0, 'or': 1.0, 'has': 1.0, 'trips': 1.0, 'enough': 1.0, 'for': 1.0, 'fit': 1.0, 'it': 3.0, 'perfect': 1.0, 'this': 2.0, 'town': 1.0, 'only': 1.0, 'with': 1.0, 'everyone': 1.0, '7': 1.0, 'day': 1.0, 'extra': 1.0, 'room': 1.0, 'around': 1.0, 'is': 4.0, 'really': 1.0, 'the': 4.0, 'organize': 1.0, 'to': 2.0, 'as': 1.0, 'there': 2.0, 'of': 1.0, 'so': 1.0, 'hop': 1.0, 'everything': 1.0, 'small': 1.0, 'i': 5.0, 'cloth': 1.0, 'inch': 1.0, 'overnight': 1.0, 'bag': 4.0, 'need': 1.0, 'just': 1.0, 'because': 1.0, 'pockets': 1.0, 'diapers': 1.0, 'an': 1.0, 's': 3.0, 'a': 2.0, 'compartments': 1.0, 'similar': 1.0, 'and': 3.0, 'expansion': 1.0, 'too': 1.0, 'know': 1.0, 'which': 1.0, 'like': 1.0, 'use': 2.0, 'compulsively': 1.0, 'things': 1.0, 'problem': 1.0, 'that': 1.0, 'best': 1.0, 'ton': 1.0, 'absolutely': 1.0}
Word element => {'organization': 1.0, 'room': 1.0, 'just': 1.0, 'would': 1.0, 'if': 1.0, 'different': 1.0, 'paid': 1.0, 'choose': 1.0, 'because': 1.0, 'use': 1.0, 'will': 1.0, 'have': 2.0, 'get': 1.0, 'things': 1.0, 't': 1.0, 'go': 1.0, 'a': 2.0, 'creates': 1.0, 'when': 1.0, 'bottom': 3.0, 'wide': 1.0, 'top': 1.0, 'lost': 1.0, 'wish': 1.0, 'this': 2.0, 'chose': 1.0, 'main': 1.0, 'shopping': 1.0, 'carts': 1.0, 'they': 1.0, 'ever': 1.0, 'has': 1.0, 'of': 3.0, 'off': 1.0, 'neck': 1.0, 'or': 1.0, 'doesn': 1.0, 'was': 3.0, 'convenient': 1.0, 'i': 11.0, 'ok': 1.0, 'very': 1.0, 'price': 1.0, 'best': 1.0, 'route': 1.0, 'part': 1.0, 'had': 1.0, 'what': 1.0, 'all': 1.0, 'as': 2.0, 'to': 3.0, 'our': 1.0, 'that': 2.0, 'bag': 6.0, 'on': 2.0, 'make': 1.0, 'the': 13.0, 'say': 1.0, 'is': 4.0, 'strollers': 1.0, 'material': 1.0, 'stroller': 1.0, 'an': 1.0, 'affect': 1.0, 'straps': 1.0, 'durable': 1.0, 'it': 5.0, 'and': 3.0, 'stain': 1.0, 'bottle': 1.0, 'so': 1.0, 'wear': 1.0, 'hoping': 1.0, 'resistant': 1.0, 'like': 2.0, 'which': 1.0, 'nice': 1.0, 'for': 2.0, 'love': 1.0, 'reasons': 1.0, 'hang': 1.0, 'one': 1.0, 'expanded': 1.0, 'expandable': 2.0, 'strap': 1.0, 'but': 2.0, 'shoulder': 1.0, 'can': 1.0, 'over': 2.0, 'my': 1.0}
Word element => {'nothing': 1.0, 'likes': 1.0, 'left': 1.0, 'room': 1.0, 'leave': 1.0, 'have': 1.0, 'i': 2.0, 'wallet': 1.0, 'travel': 1.0, 'phone': 1.0, 'pad': 1.0, 'table': 1.0, 'changing': 1.0, 'plenty': 1.0, 'bibs': 1.0, 'burp': 1.0, 'wipes': 1.0, 'still': 1.0, 'gets': 1.0, 'mom': 2.0, 'also': 1.0, 'in': 1.0, 'complete': 1.0, 'diapers': 1.0, 'carry': 1.0, 'hip': 1.0, 'your': 2.0, 'cool': 1.0, 'whom': 1.0, 'it': 2.0, 'only': 1.0, 'this': 3.0, 'love': 1.0, 'for': 3.0, 'clothes': 1.0, 'baby': 2.0, 'ones': 1.0, 'too': 1.0, 'and': 2.0, 'done': 1.0, 'bag': 4.0, 'bulky': 1.0, 'clothing': 1.0, 'girl': 1.0, 'more': 1.0, 'is': 3.0, 'but': 1.0, 'change': 1.0, 'not': 1.0, 'behind': 1.0, 'bottles': 1.0, 'or': 1.0, 'of': 4.0, 'storing': 1.0, 'to': 2.0, 'all': 1.0, 'little': 1.0, 'belongings': 1.0, 'the': 2.0, 'job': 1.0, 'without': 1.0, 'if': 1.0, 'want': 1.0, 'everything': 1.0, 'being': 1.0, 'big': 1.0, 'my': 4.0, 'could': 1.0, 'a': 3.0, 'when': 1.0, 'cell': 1.0, 'you': 3.0, 'pacifers': 1.0}
Word element => {'or': 1.0, 'pants': 1.0, 'body': 1.0, 'like': 1.0, 'inseam': 1.0, 'flexible': 1.0, 'if': 1.0, 'great': 1.0, 'be': 1.0, 'would': 1.0, 'hear': 1.0, 'beast': 1.0, 'way': 1.0, 'save': 1.0, 'my': 1.0, 'kick': 1.0, 'break': 1.0, 'restroom': 1.0, 't': 1.0, 'a': 3.0, 'up': 1.0, 'had': 2.0, 'giant': 2.0, 'ga': 1.0, 'difficult': 1.0, 'named': 1.0, 'flip': 1.0, 'the': 4.0, 'money': 1.0, 'but': 1.0, 'inside': 1.0, 'its': 1.0, 'only': 2.0, 'this': 3.0, 'hard': 1.0, 'with': 1.0, 'pretty': 1.0, 'so': 2.0, 'it': 5.0, 'looks': 1.0, 'is': 3.0, 'side': 1.0, 'cheap': 1.0, 'for': 3.0, 'one': 1.0, 'inviting': 1.0, 'to': 6.0, 'as': 1.0, 'problems': 1.0, 'closed': 1.0, 'and': 4.0, 'comfy': 1.0, 'pregnancy': 1.0, 'get': 3.0, 'anaconda': 1.0, 'rip': 1.0, '5': 1.0, 'pillow': 2.0, 'have': 2.0, 'wasn': 1.0, 'out': 2.0, '34': 1.0, 'fully': 1.0, 'plus': 1.0, 'of': 2.0, 'once': 1.0, 'your': 2.0, 'also': 1.0, 'grasp': 1.0, 'am': 1.0, 'naps': 1.0, 'other': 1.0, 'i': 3.0, '4': 1.0, 'in': 2.0, 'length': 1.0, 'morning': 1.0}
Word element => {'get': 1.0, 'rough': 1.0, 'cover': 1.0, 'huge': 1.0, 'not': 1.0, 'head': 1.0, 'under': 1.0, 'another': 1.0, 'my': 2.0, 'front': 1.0, 'use': 1.0, 'if': 1.0, 'that': 1.0, 'night': 1.0, 'at': 1.0, 'move': 1.0, 'to': 1.0, 'as': 1.0, 'bed': 1.0, 'edge': 1.0, 'of': 3.0, 'very': 1.0, 'little': 2.0, 'the': 9.0, 'nearly': 1.0, '6': 1.0, 'a': 7.0, 'ago': 1.0, 'fan': 1.0, 'i': 9.0, 'twins': 1.0, 'am': 3.0, 'tall': 1.0, 'and': 5.0, '9': 1.0, 'weeks': 2.0, 'back': 2.0, '2': 1.0, 'pregnant': 1.0, 'is': 4.0, 'cushioning': 1.0, 'with': 1.0, 'found': 1.0, 'this': 1.0, 'it': 4.0, 'pillow': 7.0, 'along': 1.0, 'recieved': 1.0, 'short': 1.0, 'about': 1.0, 'for': 2.0, 'where': 1.0, 'should': 1.0, 'especially': 1.0, 'hit': 1.0, 'on': 3.0, 'knees': 1.0, 'also': 2.0, 'have': 2.0, 'lacking': 1.0, 'in': 1.0, 'falling': 1.0, 'comfortable': 1.0, 'feel': 1.0, 'feet': 1.0, 'keeping': 1.0, 'body': 1.0, 'like': 1.0, 'find': 1.0, 'so': 1.0, 'bit': 1.0, 'time': 1.0, 'hard': 2.0, 'from': 1.0}
Word element => {'comfortable': 1.0, 'getting': 1.0, 'problem': 1.0, 'all': 1.0, 'to': 1.0, 'highly': 1.0, 'this': 1.0, 'having': 1.0, 'pregnancy': 1.0, 'pillow': 1.0, 'was': 1.0, '3': 1.0, 'last': 1.0, 'a': 1.0, 'saver': 1.0, 'my': 2.0, 'the': 1.0, 'months': 1.0, 'recommend': 1.0, 'life': 1.0, 'of': 1.0}
Word element => {'understanding': 1.0, 'husband': 1.0, 'pregnant': 1.0, 'especially': 1.0, 'outer': 1.0, 'pillows': 1.0, 'whole': 1.0, 'no': 1.0, 'over': 2.0, 'to': 5.0, 'shape': 1.0, 'for': 3.0, 'love': 1.0, 'product': 1.0, 'comfortable': 1.0, 'great': 1.0, 'reorganize': 1.0, 'back': 2.0, 'from': 1.0, 'very': 1.0, 'sleeping': 1.0, 'flip': 1.0, 'standard': 1.0, 'does': 1.0, 'me': 1.0, 'my': 3.0, 'snoogle': 3.0, 'started': 1.0, 'night': 2.0, 'softer': 1.0, 'during': 2.0, 'without': 2.0, 'so': 1.0, 'can': 1.0, 'but': 1.0, 'only': 1.0, '9': 1.0, 'it': 7.0, 'month': 1.0, 'supporting': 1.0, 't': 1.0, 'arguably': 1.0, 'million': 1.0, 'a': 7.0, 's': 1.0, 'cases': 1.0, 'side': 3.0, 'i': 8.0, 'little': 2.0, 'two': 2.0, 'or': 1.0, 'when': 2.0, 'wish': 1.0, 'bought': 1.0, 'one': 1.0, 'months': 1.0, 'trouble': 1.0, 'legs': 1.0, 'pregnancy': 1.0, 'the': 10.0, 'of': 3.0, 'and': 6.0, 'anyone': 1.0, 'snugglier': 1.0, 'who': 1.0, 'is': 5.0, 'at': 1.0, 'bit': 1.0, 'earlier': 1.0, 'extra': 1.0, 'support': 1.0, 'got': 1.0, 'washed': 1.0, 'on': 2.0, 'put': 1.0, 'make': 1.0, 'having': 2.0, 'pillowcase': 1.0, 'allows': 1.0, 'with': 1.0, 'admit': 1.0, 'that': 1.0, 'was': 1.0, 'struggle': 1.0, 'removed': 1.0, 'romance': 1.0, 'also': 1.0, 'maneuver': 1.0, 'pillow': 1.0, 'each': 1.0, 'needs': 1.0, 'ends': 1.0, 'size': 1.0, 'quite': 1.0, 'large': 1.0, 'leg': 1.0, 'take': 1.0, 'live': 1.0, 'bed': 2.0, 'there': 1.0, 'room': 1.0, 'in': 1.0, 'm': 1.0}
Word element => {'does': 1.0, 'comfortable': 1.0, 'your': 1.0, 'bed': 1.0, 'in': 1.0, 'room': 1.0, 'of': 1.0, 'alot': 1.0, 'up': 1.0, 'takes': 1.0, 'thinks': 1.0, 'husband': 1.0, 'prob': 1.0, 'only': 1.0, 'pregnancy': 1.0, 'after': 1.0, 'use': 1.0, 'likely': 1.0, 'not': 2.0, 'me': 1.0, 'buying': 1.0, 'with': 2.0, 'have': 2.0, 'definitely': 1.0, 'since': 1.0, 'and': 4.0, 'matter': 1.0, 'back': 1.0, 'will': 3.0, 'little': 1.0, '16': 1.0, 'die': 1.0, 'price': 1.0, 'count': 1.0, 'bought': 1.0, 'ladies': 1.0, 'loop': 1.0, 'pillow': 3.0, 'regret': 1.0, 'be': 1.0, 'weeks': 2.0, 'now': 1.0, 'was': 2.0, 'to': 2.0, 'worth': 1.0, 'or': 1.0, 'i': 8.0, 'am': 2.0, 'when': 2.0, 'a': 1.0, 'going': 1.0, 'opinion': 1.0, 'actually': 1.0, 'where': 1.0, 'his': 1.0, 'spent': 1.0, 'this': 1.0, '30': 1.0, 'pain': 1.0, 'it': 5.0, 'snoogle': 1.0, 'my': 4.0, 'u': 1.0, 'using': 1.0, 'body': 1.0, 'whole': 1.0, 'no': 2.0, 'supports': 1.0, 'including': 1.0, 'feet': 1.0, 'weekend': 1.0, 'the': 5.0, 'without': 1.0, 'had': 1.0, 'thought': 1.0, 'pregnant': 1.0, 'but': 1.0, 'most': 1.0, 'needless': 1.0, 'is': 1.0, 'around': 1.0, 'say': 1.0}
Word element => {'which': 1.0, 'knees': 1.0, 'enough': 1.0, 'but': 1.0, 'firm': 2.0, 'away': 1.0, 'have': 1.0, 'shape': 1.0, 'helps': 1.0, 'inside': 1.0, 'that': 3.0, 'its': 1.0, 'only': 1.0, 'out': 1.0, 'be': 1.0, 'pillow': 1.0, 'was': 7.0, 'for': 1.0, 'uncomfortable': 1.0, 'one': 1.0, 'get': 1.0, 'too': 2.0, 'and': 2.0, 'to': 6.0, 'sleep': 1.0, 'it': 6.0, 'turning': 1.0, 'with': 1.0, 'some': 1.0, 'roll': 1.0, 'up': 1.0, 'a': 3.0, 'space': 1.0, 'keep': 1.0, 'lot': 1.0, 'thing': 1.0, 'able': 2.0, 'stay': 1.0, 'me': 1.0, 'not': 3.0, 'seam': 1.0, 'so': 2.0, 'between': 2.0, 'problem': 2.0, 'would': 1.0, 'of': 1.0, 'wake': 1.0, 'stuck': 1.0, 'being': 2.0, 'on': 3.0, 'my': 4.0, 'side': 3.0, 'around': 2.0, 'is': 2.0, 'retain': 1.0, 'back': 1.0, 'comfortable': 1.0, 'nice': 3.0, 'though': 1.0, 'flip': 1.0, 'from': 2.0, 'other': 2.0, 'i': 4.0, 'feature': 1.0, 'the': 6.0, 'without': 1.0, 'easily': 1.0, 'when': 2.0, 'you': 2.0}
Word element => {'still': 1.0, 're': 1.0, 'the': 1.0, 'or': 1.0, 'away': 1.0, 'went': 1.0, 'hurting': 1.0, 'was': 1.0, 'side': 1.0, 'came': 1.0, 'using': 1.0, 'sleeping': 1.0, 'know': 1.0, 'don': 1.0, 'then': 1.0, 'how': 2.0, 'much': 1.0, 'read': 1.0, 'had': 2.0, 'any': 1.0, 'all': 1.0, 'to': 2.0, 'just': 2.0, 'it': 2.0, 'even': 1.0, 'got': 2.0, 'i': 4.0, 'because': 1.0, 'pennies': 1.0, 'buy': 1.0, 'so': 1.0, 'we': 3.0, 't': 1.0, 'a': 4.0, 'during': 1.0, 'woman': 1.0, '10': 1.0, 'am': 1.0, 'you': 1.0, '34': 1.0, 'of': 1.0, '5': 1.0, 'used': 2.0, 'average': 1.0, 'pregnancy': 1.0, 'get': 1.0, 'and': 5.0, 'heard': 1.0, 'me': 1.0, 'weight': 1.0, 'made': 1.0, 'ladies': 1.0, 'my': 2.0, 'snoogle': 3.0, 'save': 1.0, 'on': 1.0, 'except': 1.0, 'your': 2.0, 'good': 1.0, 'quality': 1.0, 'serta': 1.0, 'bought': 1.0, 'uncomfortable': 1.0, 'pains': 1.0, 'memory': 3.0, 'never': 1.0, 'foam': 3.0, 'topper': 2.0, 'for': 1.0, 'this': 4.0, 'mattress': 1.0, 'about': 1.0, 'thing': 1.0, 'more': 1.0}
Word element => {'comfortable': 1.0, 'more': 1.0, 'much': 1.0, 'sleeping': 1.0, 'this': 3.0, 'and': 1.0, 'during': 1.0, 'pregnancy': 1.0, 'pillow': 2.0, 'is': 1.0, 'makes': 1.0, 'uncomfortable': 1.0, 'perfect': 1.0, 'i': 1.0, 'at': 1.0, 'night': 1.0, 'am': 1.0, 'so': 2.0}
Word element => {'bed': 1.0, 'so': 2.0, 'after': 1.0, 'very': 3.0, 'comfortable': 1.0, 'big': 1.0, 'and': 2.0, 'impressed': 1.0, 'week': 1.0, 'but': 2.0, 'loving': 1.0, 'high': 1.0, 'in': 1.0, 'have': 2.0, 'this': 1.0, 'it': 4.0, 'with': 1.0, 'kind': 2.0, 'pregnancy': 1.0, '20th': 1.0, 'pillow': 1.0, 'bought': 1.0, 'was': 3.0, 'its': 1.0, 'husband': 1.0, 'of': 3.0, 'has': 1.0, 'been': 2.0, 'saver': 1.0, 'i': 7.0, 'highly': 1.0, 'really': 1.0, 'fine': 1.0, 'reccomend': 1.0, 'is': 1.0, 'a': 2.0, 'we': 1.0, 'king': 1.0, 'size': 1.0, 'my': 2.0, 'fits': 1.0, 'because': 1.0, 'purchased': 1.0, 'life': 1.0, 'just': 1.0, 'worried': 1.0, 'the': 1.0, 'price': 1.0, 'would': 1.0}
Word element => {'bed': 1.0, 'person': 1.0, 'glad': 1.0, 'winter': 1.0, 'be': 1.0, 'toasty': 1.0, 'take': 1.0, 'pretty': 1.0, 'in': 2.0, 'size': 1.0, 'covered': 1.0, 'now': 1.0, 'completely': 1.0, 'fall': 1.0, 'is': 1.0, 'mine': 1.0, 'create': 1.0, 'need': 1.0, 'really': 1.0, 'difference': 1.0, 'hot': 1.0, 'hair': 1.0, 'has': 1.0, 'this': 3.0, 'cat': 1.0, 'ordered': 1.0, 'either': 2.0, 'that': 2.0, 'great': 1.0, 'stays': 1.0, 'comfortable': 1.0, 'for': 4.0, 'doesn': 1.0, 'recommend': 2.0, 'was': 2.0, 'much': 1.0, 'do': 1.0, 'only': 1.0, 'nights': 1.0, 'it': 9.0, 'hard': 1.0, 'and': 4.0, 'me': 2.0, 'couple': 1.0, 'm': 2.0, 'worth': 1.0, 'huge': 1.0, 'months': 1.0, 'made': 1.0, '65': 1.0, 'on': 2.0, 'room': 1.0, '5': 1.0, 'i': 10.0, 'tried': 2.0, 'pay': 1.0, 'cover': 1.0, 'kills': 1.0, 'admit': 1.0, 'finally': 1.0, 'pillow': 2.0, 'floor': 1.0, 'pregnant': 2.0, 'but': 4.0, 'my': 2.0, 'side': 1.0, 'after': 1.0, 'they': 1.0, 'between': 1.0, 'should': 1.0, 'hours': 1.0, 'propping': 1.0, 'would': 2.0, 'start': 1.0, 'kill': 1.0, 'our': 1.0, 'any': 1.0, 'to': 4.0, 'as': 3.0, 'sleeping': 1.0, 'if': 1.0, 's': 1.0, 'a': 6.0, 't': 4.0, 'hips': 1.0, 'knees': 1.0, 'got': 1.0, 'wouldn': 1.0, 'didn': 2.0, 'though': 1.0, 'help': 2.0, 'queen': 1.0, 'the': 1.0, 'myself': 1.0, 'up': 2.0}
Word element => {'send': 1.0, 'thick': 1.0, 'pillow': 1.0, 'is': 1.0, 'and': 1.0, 'nice': 1.0, 'but': 1.0, 'back': 1.0, 'a': 1.0, 'for': 1.0, 'foot': 1.0, 'it': 3.0, 'durable': 1.0, 'this': 1.0, 'i': 1.0, 'frame': 1.0, 'had': 1.0, 'was': 2.0, 'to': 1.0, 'because': 1.0, 'too': 1.0, 'long': 1.0, 'my': 1.0, '5': 1.0}
Word element => {'king': 1.0, 'cal': 1.0, 'room': 1.0, 'lot': 1.0, 'takes': 1.0, 'enormous': 1.0, 'away': 1.0, 'take': 1.0, 'didn': 1.0, 'downfall': 1.0, 'only': 1.0, 'pregnancy': 1.0, 'get': 1.0, 'can': 1.0, 'open': 1.0, 'night': 2.0, 'of': 4.0, 'middle': 2.0, 'on': 3.0, 'from': 1.0, 'keeps': 1.0, 'and': 3.0, 'it': 5.0, 'this': 3.0, 'with': 1.0, 'how': 1.0, 'me': 1.0, 'trimester': 1.0, 'out': 2.0, 'surprised': 1.0, 'back': 2.0, 'rolling': 1.0, 'sleeping': 1.0, 'difficulty': 1.0, 'use': 1.0, 'incredibly': 1.0, 'pleasantly': 1.0, 'up': 2.0, 'don': 2.0, 'i': 10.0, 'one': 1.0, 'bought': 1.0, 'pillow': 3.0, 'provides': 1.0, 'often': 1.0, 'snoogle': 2.0, 'my': 3.0, 'great': 1.0, 'comfortable': 1.0, 'for': 1.0, 'stars': 1.0, 'love': 1.0, 'was': 2.0, 'our': 1.0, 'any': 1.0, 'to': 4.0, 'also': 2.0, 'second': 1.0, 'in': 3.0, 'regular': 1.0, 'find': 1.0, 'having': 1.0, 'because': 1.0, 'that': 2.0, 'side': 1.0, 'wraps': 1.0, 'is': 5.0, 'around': 1.0, 'so': 2.0, 'the': 5.0, 'have': 3.0, 'between': 1.0, 'reposition': 1.0, 'easily': 1.0, 'when': 2.0, 't': 3.0, 'a': 2.0, 'flip': 1.0, 'amazing': 1.0, 'roll': 1.0, 'support': 2.0, 'legs': 1.0}
Word element => {'trying': 1.0, 'let': 1.0, 't': 1.0, 'curve': 1.0, 'shoulder': 1.0, 'occur': 1.0, 'elevated': 1.0, 'head': 1.0, 'keep': 2.0, '1': 1.0, 'encountered': 1.0, 'never': 1.0, '2': 1.0, 'neck': 2.0, 'seam': 1.0, 'complain': 1.0, 'people': 1.0, 'some': 1.0, 'would': 1.0, 'last': 1.0, 'home': 1.0, 'goldilocks': 1.0, 'everybody': 1.0, 'problem': 2.0, 'such': 1.0, 'long': 1.0, 'doing': 1.0, 'minutes': 1.0, 'up': 1.0, 'deeply': 1.0, 'lot': 1.0, 'because': 2.0, 'noticed': 1.0, 'thing': 2.0, 'looking': 1.0, 'portion': 1.0, 'requirement': 1.0, 'basically': 1.0, 'only': 1.0, 'minute': 1.0, 'need': 1.0, 'month': 1.0, 'especially': 1.0, 'sanity': 1.0, 'will': 1.0, 'brilliant': 1.0, 'yet': 1.0, 'how': 1.0, 'been': 1.0, 'went': 1.0, 'abs': 1.0, 'or': 3.0, 'more': 1.0, 'perfect': 1.0, 'search': 1.0, 'thoughts': 1.0, 'comfort': 1.0, 'total': 1.0, 'goes': 1.0, 'make': 1.0, 'weeks': 1.0, 'love': 6.0, 'bottom': 1.0, 'for': 10.0, 'fulfills': 1.0, 'best': 1.0, 'wondering': 2.0, 'stiffer': 1.0, 'kicked': 1.0, 'about': 2.0, 'enfolds': 1.0, 'every': 3.0, 'don': 1.0, 'super': 1.0, 'still': 2.0, 'great': 1.0, 'if': 1.0, 'may': 2.0, 'products': 1.0, 'maternity': 1.0, 'like': 1.0, 'that': 10.0, 'revisited': 1.0, 'made': 1.0, 'nicely': 1.0, 'bed': 4.0, 'having': 2.0, 'husband': 2.0, 'are': 1.0, 'my': 12.0, 'me': 5.0, 'in': 6.0, 'wedge': 1.0, 'add': 1.0, 'itself': 1.0, 'not': 8.0, 'pillow': 5.0, 'wake': 1.0, 'sleeping': 3.0, 'again': 1.0, 'which': 3.0, 'reading': 1.0, 'arranging': 1.0, 'side': 4.0, 'u': 1.0, 'giant': 1.0, 'exception': 1.0, 'almost': 2.0, 'queen': 2.0, 'lower': 1.0, 'turning': 2.0, 'the': 24.0, 'ordered': 1.0, 're': 2.0, 'where': 2.0, 'tight': 1.0, 'enough': 1.0, 'find': 3.0, 'urrgghh': 1.0, 'am': 2.0, 'thinking': 1.0, 'getting': 1.0, 'i': 28.0, 'until': 1.0, 'see': 2.0, 'growth': 1.0, 'difference': 1.0, 'opposite': 1.0, 'moving': 1.0, 'tossing': 1.0, 'might': 1.0, 'a': 11.0, 'blissfully': 1.0, 'small': 3.0, 'could': 1.0, '8': 1.0, 'most': 3.0, 'back': 4.0, 'pregnant': 1.0, 'spurt': 1.0, 'size': 2.0, 'pattern': 1.0, 'able': 1.0, 'get': 3.0, 'this': 7.0, 'recent': 1.0, 'comfortable': 2.0, 'was': 3.0, 'what': 2.0, 'had': 2.0, 'somewhere': 1.0, 'decided': 1.0, 'turns': 1.0, 'have': 3.0, 'restful': 1.0, 'elevate': 1.0, 'peaceful': 1.0, 'feel': 1.0, 'healthy': 1.0, 'keeps': 1.0, 'first': 1.0, 'sleepless': 1.0, 'surrounded': 1.0, 'way': 1.0, 'all': 5.0, 'fits': 1.0, 'right': 3.0, 'to': 20.0, 'any': 2.0, 'pretty': 1.0, 'too': 2.0, '3': 1.0, 'shaped': 1.0, 'squishy': 2.0, 'at': 2.0, 'nights': 1.0, 'own': 1.0, 'be': 4.0, 'it': 6.0, 'edge': 1.0, 'hard': 1.0, '360': 1.0, 'eases': 1.0, 'our': 3.0, 'description': 1.0, 'firm': 1.0, 'tried': 2.0, 'just': 2.0, 'and': 19.0, 'boppy': 1.0, 'shape': 1.0, 'did': 1.0, 'top': 1.0, 'time': 4.0, 'kind': 1.0, 'helpful': 1.0, 'squish': 1.0, 'saving': 1.0, 'around': 1.0, 'you': 2.0, 'night': 3.0, 'but': 2.0, 'has': 2.0, 'after': 2.0, 'by': 3.0, 'exit': 1.0, 'retention': 1.0, 'put': 3.0, 'do': 2.0, 'outside': 1.0, 'painful': 1.0, 'easy': 3.0, 'no': 1.0, 'run': 1.0, 'curvy': 1.0, 'sit': 1.0, 'as': 3.0, 'heavy': 1.0, 'another': 1.0, 'think': 1.0, 'spend': 2.0, 'so': 5.0, 'turn': 1.0, 'is': 6.0, 'can': 2.0, 'on': 8.0, 'vena': 1.0, 'work': 1.0, 'opening': 2.0, 'left': 2.0, 'deprivation': 1.0, 'cava': 1.0, 'he': 1.0, 'pressure': 1.0, 'vein': 1.0, 'with': 3.0, 'bad': 1.0, 'we': 1.0, 'uterus': 1.0, 'really': 3.0, 'problems': 1.0, 'possibly': 1.0, 'good': 1.0, 'leading': 1.0, 'few': 2.0, 'oxygen': 1.0, 'sleep': 4.0, 'water': 1.0, 'ankles': 1.0, 'since': 1.0, 'day': 1.0, 'months': 1.0, 'read': 1.0, 'without': 2.0, 'go': 1.0, 'part': 1.0, 'hours': 1.0, 'ease': 1.0, 'forth': 1.0, 'from': 2.0, 'sides': 1.0, 'got': 1.0, 'one': 5.0, '5': 1.0, 'pillows': 2.0, 'belly': 1.0, 'into': 2.0, 'out': 2.0, 'during': 1.0, 'midnite': 1.0, 'full': 1.0, 'nice': 1.0, 'big': 1.0, 'others': 1.0, 'points': 1.0, 'flips': 1.0, 'there': 2.0, 'being': 2.0, 'something': 1.0, 'several': 1.0, 'position': 3.0, 'of': 11.0, 'even': 2.0, 'curved': 1.0, 'myself': 1.0, 'supposed': 1.0, 'crush': 1.0, 'awake': 1.0, 'little': 2.0, 'attempts': 1.0, 'lying': 1.0}
Word element => {'otherwise': 1.0, 'stars': 1.0, '5': 1.0, 'awful': 1.0, 'chair': 1.0, 'like': 1.0, 'nice': 1.0, 'supported': 1.0, 'fully': 1.0, 'sleeping': 1.0, 'myself': 1.0, 'when': 1.0, 'really': 1.0, 'be': 1.0, 'c': 1.0, 'itself': 1.0, 'not': 1.0, 'shape': 1.0, 'use': 1.0, 'u': 1.0, 's': 2.0, 'that': 1.0, 'sized': 1.0, 'recommend': 1.0, 'full': 1.0, 'think': 1.0, 'half': 1.0, 'fold': 1.0, 'bottom': 1.0, 'easy': 1.0, 'facing': 1.0, 'pee': 1.0, 'you': 1.0, 'night': 1.0, 'middle': 1.0, 'out': 3.0, 'bed': 3.0, 'perfect': 1.0, 'head': 1.0, 'curve': 1.0, 'soft': 1.0, 'correctly': 1.0, 'getting': 2.0, 'chance': 1.0, 'want': 1.0, 'cover': 2.0, '23': 1.0, 'originally': 1.0, 'bought': 2.0, 'ankles': 2.0, 'if': 1.0, 'snoogle': 3.0, 'entire': 1.0, 'my': 11.0, 'knees': 2.0, 'top': 2.0, 'once': 1.0, 'other': 2.0, 'support': 4.0, 'lower': 1.0, 'given': 1.0, 'pain': 1.0, 'mattress': 1.0, 'complained': 1.0, 'hurt': 1.0, 'hip': 1.0, 'weren': 2.0, 'with': 4.0, 'of': 6.0, 'the': 18.0, 't': 5.0, 'a': 7.0, 'go': 2.0, 'could': 1.0, 'haven': 1.0, 'seam': 2.0, 'tempur': 1.0, 'something': 2.0, 'edge': 1.0, 'find': 2.0, 'pulled': 1.0, 'straight': 2.0, 'to': 7.0, 'back': 4.0, 'sleep': 1.0, 'enough': 1.0, 'up': 1.0, 'pedic': 1.0, 'no': 1.0, 'gotten': 1.0, 'and': 14.0, 'do': 1.0, 'issues': 2.0, 'i': 16.0, 'have': 6.0, 'needed': 1.0, 'topper': 1.0, 'belly': 1.0, 'comfortable': 1.0, 'feel': 2.0, 'great': 2.0, 'got': 1.0, 'didn': 2.0, 'women': 1.0, 'struggled': 1.0, 'for': 4.0, 'get': 2.0, 'pregnancy': 1.0, 'mini': 1.0, 'but': 2.0, 'hard': 1.0, 'over': 2.0, 'pre': 1.0, 'work': 1.0, 'so': 4.0, 'can': 1.0, 'shoulder': 1.0, 'it': 9.0, 'just': 2.0, 'lounging': 1.0, 'spine': 1.0, 'highly': 1.0, 'separation': 1.0, 'this': 3.0, 'few': 1.0, 'between': 1.0, 'holes': 1.0, 'fine': 1.0, 'leg': 2.0, 'then': 2.0, 'pull': 1.0, 'itchy': 2.0, 'on': 5.0, 'separated': 1.0, 'at': 2.0, 'is': 4.0, 'purposes': 1.0, 'side': 1.0, 'tight': 1.0, 'would': 3.0, 'weeks': 1.0, 'either': 2.0, 'pillowcase': 1.0, 'bent': 2.0, 'body': 2.0, 'crazy': 1.0, 'was': 1.0, 'need': 1.0, 'or': 2.0, 'upper': 1.0, 'pillow': 1.0, 'way': 1.0, 'lift': 1.0, 'received': 1.0, 'also': 3.0, 'snipped': 1.0, 'feels': 1.0, 'cushion': 1.0, 'tummy': 1.0, 'yes': 1.0, 'first': 1.0, 'in': 3.0, 'super': 1.0, 'totally': 1.0}
Word element => {'investment': 1.0, 'big': 1.0, 'pregnancy': 1.0, 'during': 1.0, 'given': 1.0, 'extra': 1.0, 'has': 2.0, 'comfort': 1.0, 'miserable': 1.0, 'be': 1.0, 'would': 1.0, 'support': 1.0, '2nd': 1.0, 'am': 1.0, '35': 1.0, 'at': 1.0, 'weeks': 1.0, 'now': 2.0, 'remedy': 1.0, 'part': 1.0, 'draped': 1.0, 'head': 1.0, 'husband': 1.0, 'use': 2.0, 'comfy': 1.0, 'material': 1.0, 'right': 2.0, 'little': 1.0, 'just': 1.0, 'down': 1.0, 'face': 1.0, 'move': 1.0, 'if': 1.0, 'bad': 1.0, 'love': 1.0, 'where': 1.0, 'this': 2.0, 'soft': 1.0, 'pain': 1.0, 'with': 1.0, 'it': 4.0, 'of': 2.0, 'over': 1.0, 'shirts': 1.0, 'up': 2.0, 'also': 1.0, 'couldn': 1.0, 'too': 1.0, 'and': 3.0, 'night': 1.0, 'i': 11.0, 'was': 1.0, 'without': 1.0, 'the': 7.0, 'myself': 1.0, 'worth': 1.0, 'neck': 2.0, 'having': 1.0, 'find': 1.0, 'belly': 2.0, 'pillows': 1.0, 'about': 1.0, '5': 1.0, 'middle': 1.0, 'still': 2.0, 'under': 1.0, 'finding': 1.0, 'agree': 1.0, 'back': 3.0, 'one': 1.0, 'uncomfortable': 1.0, 'waking': 1.0, 'to': 5.0, 'sleep': 2.0, 'using': 1.0, 'like': 1.0, 'totally': 1.0, 'been': 1.0, 'that': 5.0, 'but': 3.0, 'can': 1.0, 'in': 1.0, 'snuggle': 1.0, 'my': 8.0, 'pillow': 4.0, 'against': 2.0, 'so': 3.0, 'bit': 1.0, 'seam': 1.0, 'me': 1.0, 'not': 3.0, 'is': 3.0, 't': 2.0, 'a': 4.0, 'go': 1.0, 's': 3.0}
Word element => {'well': 1.0, 'comfortably': 1.0, 'tv': 1.0, 'watch': 1.0, 'read': 1.0, 'almost': 1.0, 'don': 2.0, 'm': 1.0, 'i': 4.0, 'night': 1.0, 'months': 1.0, 'about': 1.0, 'thing': 1.0, 'have': 2.0, 'in': 2.0, 'used': 1.0, 'even': 1.0, 'great': 1.0, 'along': 1.0, 'this': 3.0, 'it': 2.0, 'with': 1.0, 'king': 1.0, 'for': 1.0, 'love': 2.0, 'bed': 2.0, 'as': 1.0, 'sleep': 1.0, 'to': 2.0, 'now': 2.0, 'weeks': 1.0, 'think': 1.0, '3': 1.0, 'and': 4.0, 'get': 2.0, 'the': 1.0, 'without': 1.0, 'can': 1.0, 'easily': 1.0, 'you': 1.0, 'plenty': 1.0, 're': 1.0, 've': 1.0, 'position': 1.0, 'throughout': 1.0, 't': 2.0, 'could': 1.0, 'a': 1.0, 'out': 1.0, 'of': 1.0, '5': 1.0, 'room': 1.0, 'still': 1.0}
Word element => {'baby': 1.0, 'slept': 1.0, 'weeks': 1.0, 'since': 1.0, 'a': 1.0, '15': 1.0, 't': 1.0, 'saved': 1.0, 'used': 2.0, 'before': 1.0, 'like': 1.0, 'wasn': 1.0, 'my': 2.0, 'i': 1.0, 'life': 1.0, 'bought': 1.0, 'pillow': 2.0, 'on': 1.0, 'at': 1.0, 'pregnancy': 1.0, 'side': 1.0, 'sleeping': 1.0, 'very': 1.0, 'to': 3.0, 'was': 1.0, 'this': 2.0, 'it': 2.0, 'hard': 1.0, 'for': 1.0, 'and': 2.0, 'me': 1.0, 'get': 1.0}
Word element => {'included': 1.0, 'not': 1.0, 'because': 1.0, 'penny': 1.0, 'every': 1.0, 'worth': 1.0, 'definitly': 1.0, 'sure': 1.0, 'get': 1.0, 'please': 1.0, 'in': 1.0, 'until': 1.0, 'loves': 1.0, 'to': 2.0, 'now': 1.0, 'wife': 1.0, 'you': 2.0, 'was': 2.0, 'expecting': 1.0, 'i': 2.0, '4': 1.0, 'cover': 1.0, 're': 1.0, 'bought': 1.0, 'pillow': 2.0, 'starting': 1.0, 'and': 5.0, 'sleepless': 1.0, 'if': 1.0, 'experience': 1.0, 'for': 3.0, 'support': 1.0, 'already': 1.0, 's': 2.0, 'we': 1.0, '17weeks': 1.0, 'eliminated': 1.0, 'are': 1.0, 'it': 4.0, 'nights': 1.0, 'she': 4.0, 'purchase': 1.0, 'my': 1.0, 'fits': 1.0, 'this': 3.0, 'perfect': 1.0, 'using': 1.0, 'body': 1.0, 'her': 1.0, 'make': 1.0, '3': 1.0, 'whole': 1.0, 'supports': 1.0, 'pillows': 1.0, 'is': 2.0, 'more': 1.0, 'the': 2.0, '5': 1.0, 'room': 1.0, 'haha': 1.0, 'dog': 1.0, 'looking': 1.0}
Word element => {'with': 1.0, 'people': 1.0, 'mothers': 1.0, 'expectant': 1.0, 'for': 2.0, 'useful': 1.0, 'expecting': 1.0, 'not': 2.0, 'just': 1.0, 'by': 1.0, 'm': 1.0, 'bit': 1.0, 'is': 3.0, 'said': 1.0, 'really': 1.0, 'stitching': 1.0, 'uncomfortable': 1.0, 'top': 2.0, 'back': 2.0, 'problems': 1.0, 'makes': 1.0, 'comfortable': 1.0, 'tight': 1.0, 'snoogle': 1.0, 'the': 2.0, 'too': 1.0, 'and': 2.0, 'using': 2.0, 'like': 2.0, 'a': 2.0, 'could': 1.0, 'very': 1.0, 'worked': 1.0, 'others': 1.0, 'it': 2.0, 'have': 1.0, 'i': 3.0, 'this': 4.0, 'soft': 1.0, 'smushy': 1.0, 'pillow': 2.0, 'formed': 1.0, 'be': 1.0, 'your': 1.0, 'on': 2.0, 'that': 2.0, 'way': 1.0, 'but': 3.0, 'can': 1.0, 'also': 1.0, 'comfortably': 1.0, 'any': 1.0, 'sleep': 1.0, 'then': 1.0, 'resolved': 1.0, 'you': 1.0, 'again': 1.0}
Word element => {'after': 1.0, 'bit': 1.0, 'exactly': 1.0, 'without': 1.0, 'slightly': 1.0, 'side': 1.0, '70': 1.0, 'down': 1.0, 'broke': 1.0, 'waking': 1.0, 'was': 1.0, 'surrounding': 1.0, 'even': 2.0, 'but': 1.0, 'pregnant': 1.0, 'm': 1.0, 'your': 1.0, 'on': 5.0, 'gave': 1.0, 'few': 1.0, 'by': 2.0, 'while': 1.0, 'hard': 2.0, 'it': 6.0, 'with': 2.0, 'little': 2.0, 'allows': 1.0, 'this': 3.0, 'sleeper': 1.0, 'me': 3.0, 'not': 1.0, '4': 1.0, 'i': 11.0, '26': 1.0, 'a': 6.0, 's': 3.0, 'pillows': 1.0, 'about': 1.0, 'keeps': 1.0, 'woken': 1.0, 'sleep': 3.0, 'to': 3.0, 'weeks': 1.0, 'now': 1.0, 'much': 1.0, 'being': 1.0, 'everything': 1.0, 'use': 1.0, 'wonderful': 1.0, 'twice': 1.0, 'have': 1.0, 'more': 1.0, 'say': 2.0, 'is': 1.0, 'really': 2.0, 'finally': 1.0, 'pillow': 2.0, 'bought': 2.0, 'for': 1.0, 'stars': 1.0, 'pretty': 1.0, 'what': 2.0, 'maybe': 1.0, 'because': 2.0, 'ear': 2.0, 'like': 1.0, 'head': 1.0, 'my': 6.0, 've': 1.0, 'up': 3.0, 'sore': 1.0, 'again': 1.0, 'am': 1.0, 'soften': 1.0, 'needed': 1.0, 'back': 5.0, 'too': 1.0, 'and': 4.0, 'during': 1.0, 'pregnancy': 1.0, 'they': 1.0, 'good': 1.0}
Word element => {'our': 1.0, 'up': 1.0, 'and': 1.0, 'prop': 1.0, 'herself': 2.0, 'could': 1.0, 'wife': 1.0, 'in': 2.0, 'permanent': 1.0, 'so': 1.0, 'my': 1.0, 'support': 1.0, 'pillow': 1.0, 'bought': 1.0, 'we': 1.0, 'fixture': 1.0, 'bed': 2.0, 'has': 1.0, 'while': 1.0, 'pregnant': 1.0, 'this': 1.0, 'it': 1.0, 'become': 1.0, 'since': 1.0, 'a': 1.0}
Word element => {'that': 3.0, 'well': 1.0, 'looking': 1.0, 'can': 1.0, 'night': 1.0, 'i': 5.0, 'the': 2.0, 'a': 1.0, 't': 3.0, 'for': 3.0, 'one': 1.0, 'didn': 1.0, 'side': 2.0, 'is': 1.0, 'need': 1.0, 'like': 1.0, 'this': 2.0, 'only': 1.0, 'it': 1.0, 'pregnancy': 1.0, 'pillow': 4.0, 'be': 1.0, 'on': 1.0, 'over': 1.0, 'support': 1.0, 're': 1.0, 'another': 1.0, 'my': 3.0, 'adjusted': 1.0, 'really': 2.0, 'every': 1.0, 'use': 1.0, 'so': 1.0, 'time': 1.0, 'turn': 1.0, 'whole': 1.0, 'belly': 1.0, 'supports': 1.0, 'back': 1.0, 'was': 1.0, 'doesn': 1.0, 'and': 1.0, 'hips': 1.0, 'down': 1.0, 'to': 2.0, 'sleep': 1.0, 'all': 1.0, 'have': 1.0}
Word element => {'mom': 1.0, 'thankful': 1.0, 't': 1.0, 'wonderful': 1.0, 'seriously': 1.0, 'quarter': 1.0, 'away': 1.0, 'like': 1.0, 'times': 1.0, 'band': 1.0, 'elastic': 1.0, 'bottom': 1.0, 'curves': 1.0, 'take': 1.0, 'inside': 1.0, 'seam': 1.0, 'seeing': 1.0, 'new': 1.0, 'spending': 1.0, 'case': 1.0, 'amend': 1.0, 'doing': 1.0, 'he': 1.0, 'has': 1.0, 'things': 2.0, 'you': 5.0, 'night': 2.0, 'disappointed': 1.0, 'motion': 1.0, 'so': 3.0, 'five': 1.0, 'settled': 1.0, 'pain': 5.0, 'hip': 2.0, 'picking': 1.0, 'back': 4.0, 'limited': 2.0, 'sleep': 2.0, 'had': 3.0, 'have': 4.0, 'money': 2.0, 'past': 1.0, 'but': 2.0, 'pregnant': 1.0, 'soon': 1.0, 'stomach': 2.0, 'top': 1.0, 'did': 2.0, 'much': 2.0, 'put': 1.0, 'dreaded': 1.0, 'morning': 1.0, 'heartburn': 1.0, 'something': 1.0, 'super': 3.0, 'felt': 1.0, 'under': 1.0, 'that': 18.0, 'because': 6.0, 'making': 1.0, 'easily': 1.0, 'claim': 1.0, 'long': 2.0, 'on': 13.0, 'however': 1.0, 'easy': 1.0, 'will': 4.0, 'could': 3.0, 'one': 4.0, 'fiberfill': 1.0, 'at': 2.0, 'purchases': 1.0, 'go': 1.0, 'technique': 1.0, 'spent': 2.0, 'our': 1.0, 'years': 2.0, 'evenly': 1.0, 'explaining': 1.0, 'no': 1.0, 'supportive': 1.0, 'pregnancy': 2.0, 'chore': 1.0, 'only': 2.0, 'legs': 3.0, 'researching': 1.0, 'say': 2.0, 'comfortable': 2.0, 'the': 21.0, 'experience': 1.0, 'start': 1.0, 'trick': 1.0, 'pillows': 2.0, 'gear': 1.0, 'day': 2.0, 'proud': 1.0, 'not': 3.0, 'itself': 1.0, 'those': 1.0, 'supported': 1.0, 'me': 2.0, 'and': 14.0, 'every': 3.0, 'can': 6.0, 'is': 10.0, 'turn': 1.0, 'out': 1.0, 'propped': 1.0, 'instead': 2.0, 'life': 1.0, 'by': 2.0, 'as': 1.0, 'less': 1.0, 'sized': 1.0, 'up': 3.0, 'won': 1.0, 'lasts': 1.0, 'two': 2.0, 'well': 1.0, 'support': 1.0, 'i': 27.0, 'finally': 1.0, 'pillow': 14.0, 'might': 1.0, 'a': 8.0, 'review': 3.0, 'find': 2.0, 'crease': 1.0, 'was': 5.0, 'least': 1.0, 'to': 10.0, 'high': 2.0, 'picky': 1.0, 'between': 1.0, 'price': 1.0, 'such': 1.0, 'help': 1.0, 'full': 1.0, 'body': 2.0, 'in': 9.0, 'if': 2.0, 'great': 1.0, 'husband': 2.0, 'witness': 1.0, 'thing': 1.0, 'cannot': 1.0, 'being': 1.0, 'later': 1.0, 'sides': 1.0, 'rotating': 1.0, 'room': 1.0, 'my': 17.0, 'are': 3.0, 'sometimes': 1.0, 'sufferer': 1.0, 'once': 1.0, 'provide': 1.0, 'am': 1.0, 'when': 4.0, 'severe': 1.0, 'bed': 2.0, 'more': 1.0, 'perfect': 3.0, 'moving': 1.0, 'really': 2.0, 'due': 2.0, 'caused': 1.0, 'used': 1.0, 'move': 1.0, 'weeks': 2.0, 'movement': 1.0, 'about': 1.0, 'woke': 1.0, 'three': 1.0, 'company': 1.0, 'through': 1.0, 'into': 1.0, 'now': 2.0, 'reading': 1.0, 'side': 3.0, 'all': 2.0, 'ton': 1.0, 'other': 2.0, 'an': 2.0, 'sleeping': 1.0, 'wake': 1.0, 'than': 2.0, 'seemed': 1.0, 'better': 1.0, 'spend': 1.0, 'think': 1.0, 'before': 1.0, 'somehow': 1.0, 'head': 4.0, 'this': 10.0, 'supports': 1.0, 'tight': 1.0, 'enough': 1.0, 'too': 1.0, 'walk': 1.0, 'weight': 1.0, 'there': 2.0, 'also': 3.0, 'from': 4.0, 'picture': 1.0, 'with': 2.0, 'part': 1.0, 'own': 1.0, 'be': 5.0, 'it': 2.0, 'fully': 1.0, 'come': 1.0, 'where': 2.0, 'your': 3.0, 'pretty': 1.0, 'lay': 2.0, 'any': 2.0, 'shoulder': 2.0, 'neck': 1.0, 'hurt': 1.0, 'of': 9.0, 'even': 3.0, 'old': 1.0, 'does': 1.0, 'traumatizing': 1.0, 'position': 1.0, 'want': 1.0, 'useful': 1.0, 'turning': 1.0, 'angle': 1.0, 'half': 2.0, 'replace': 1.0, 'they': 2.0, 'let': 2.0, 'overall': 1.0, 'for': 4.0, 'hurts': 1.0, 'guess': 1.0, 'queen': 1.0, 'juggling': 1.0, 'getting': 1.0, 'bear': 1.0, 'hugging': 1.0, 'star': 1.0, 'them': 1.0}
Word element => {'without': 1.0, 'live': 1.0, 'sleep': 1.0, 'enjoy': 1.0, 'couldn': 1.0, 'me': 1.0, 'and': 1.0, 'all': 1.0, 'painful': 1.0, 'sleeping': 1.0, 'where': 1.0, 'point': 1.0, 't': 1.0, 'peaceful': 1.0, 'the': 1.0, 'nights': 1.0, 'got': 1.0, 'avoided': 1.0, 'i': 1.0, 'let': 1.0, 'pregnancy': 1.0, 'pillow': 3.0, 'my': 2.0, 'a': 3.0, 'initially': 1.0, 'so': 1.0, 'to': 1.0, 'was': 2.0, 'up': 1.0, 'during': 1.0, 'lifesaver': 1.0, 'it': 2.0, 'this': 2.0, 'because': 1.0, 'they': 1.0, 'issues': 1.0, 'take': 1.0, 'solved': 1.0, 'room': 1.0, 'much': 1.0, 'body': 2.0, 'in': 1.0, 'using': 1.0, 'bed': 1.0, 'but': 1.0}
Word element => {'actually': 1.0, 'wrangling': 2.0, 'wary': 1.0, 'little': 1.0, 'also': 1.0, 'wasn': 1.0, 'out': 2.0, 'make': 1.0, 'in': 2.0, 'ability': 1.0, 'is': 1.0, 'things': 1.0, 'half': 1.0, 'recommended': 1.0, 'the': 2.0, 'without': 1.0, 'be': 2.0, 'would': 2.0, 'thought': 1.0, 'what': 1.0, 'compared': 1.0, 'nothing': 1.0, 'me': 1.0, 'and': 4.0, 'killing': 1.0, 'were': 1.0, 'that': 1.0, 'hips': 2.0, 'thing': 1.0, 'about': 2.0, 'my': 3.0, 'but': 2.0, 'pregnant': 1.0, 'favorite': 1.0, '8': 1.0, 'have': 1.0, 'received': 1.0, 'its': 1.0, 'much': 1.0, 'one': 1.0, 'months': 2.0, '5': 1.0, 'pain': 1.0, 'this': 3.0, 'pillowcase': 1.0, 'convenient': 1.0, 'lounger': 1.0, 'with': 1.0, 'pillow': 2.0, 'to': 3.0, 'as': 3.0, 'sleeping': 1.0, 't': 1.0, 'a': 4.0, 'gift': 1.0, 'difficult': 1.0, 'fold': 1.0, 'still': 1.0, 'or': 1.0, 'almost': 1.0, 'night': 2.0, 'when': 2.0, 'm': 1.0, 'after': 1.0, 'so': 2.0, 'was': 3.0, 'now': 1.0, 'i': 7.0, 'two': 1.0, 'then': 1.0, 'beauty': 1.0, 'some': 1.0, 'lower': 1.0, 'back': 2.0, 'it': 9.0, 'felt': 1.0, 'better': 1.0, 'highly': 1.0, 'every': 1.0, 'amazing': 1.0, 'along': 1.0, 'of': 4.0, 'wake': 1.0, 'wash': 1.0, 'up': 1.0}
Word element => {'penny': 1.0, 'every': 1.0, 'worth': 1.0, 'for': 1.0, 'expensive': 1.0, 'originally': 1.0, 'be': 1.0, 'need': 1.0, 'support': 1.0, 'agree': 1.0, 'instead': 1.0, 'get': 1.0, 'thought': 1.0, 'had': 1.0, 'if': 2.0, 'turn': 1.0, 'said': 1.0, 'way': 1.0, 'original': 1.0, 'readjusted': 1.0, 'made': 1.0, 'that': 2.0, 'snoogle': 1.0, 'my': 1.0, 'use': 1.0, 'do': 1.0, 'only': 1.0, 'five': 1.0, 'doesn': 2.0, 'was': 4.0, 'all': 1.0, 'sleep': 2.0, 'to': 5.0, 'she': 3.0, 'it': 5.0, 'recommended': 1.0, 'me': 1.0, 'wedged': 1.0, 'recommendation': 1.0, 'put': 1.0, 'think': 1.0, 'constantly': 1.0, 'one': 2.0, '23': 1.0, 'bought': 2.0, 'without': 1.0, 'the': 6.0, 'i': 11.0, 'you': 1.0, 'gives': 1.0, 'again': 1.0, 'when': 1.0, 'm': 1.0, 'now': 2.0, 'weeks': 2.0, 'back': 2.0, 'but': 1.0, 'pregnant': 1.0, 'have': 1.0, '19': 1.0, 'after': 1.0, 'over': 2.0, 'don': 1.0, 's': 1.0, 'could': 1.0, 't': 3.0, 'a': 2.0, 'alleviated': 1.0, 'loop': 1.0, 'pillow': 2.0, 'friend': 2.0, 'this': 5.0, 'pain': 1.0, 'too': 1.0, 'and': 5.0, 'starting': 1.0, 'stays': 1.0, 'feel': 1.0, 'while': 1.0, 'sleeping': 1.0, 'using': 1.0, 'belly': 1.0, 'pillows': 1.0, 'readjust': 1.0, 'would': 2.0, 'night': 1.0, 'them': 1.0, 'during': 1.0, 'completely': 1.0, 'around': 2.0, 'is': 1.0}
Word element => {'otherwise': 1.0, 'edge': 1.0, 'but': 1.0, 'back': 1.0, 'inside': 1.0, 'a': 1.0, 'me': 1.0, 'pillow': 1.0, 'it': 4.0, 'with': 1.0, 'sit': 1.0, 'my': 2.0, 'great': 1.0, 'behind': 1.0, 'the': 5.0, 'up': 2.0, 'ends': 1.0, 'pokes': 1.0, 'in': 1.0, 'also': 1.0, 'legs': 1.0, 'part': 1.0, 'huge': 1.0, 'not': 1.0, 'that': 3.0, 'stuffing': 1.0, 'cover': 1.0, 'folded': 1.0, 'is': 4.0, 'curved': 1.0, 'hurts': 1.0, 'anymore': 1.0, 'separated': 1.0, 'between': 1.0, 'cushy': 1.0, 'so': 2.0, 'tight': 1.0, 'horseshoe': 1.0, 'm': 1.0, 'when': 1.0, 'i': 2.0, 'try': 1.0, 'to': 1.0}
Word element => {'recommend': 1.0, 'definitely': 1.0, 'instead': 1.0, 'another': 1.0, 'to': 1.0, 'wanted': 1.0, 'have': 1.0, 'nice': 1.0, 'down': 1.0, 'a': 1.0, 'tight': 1.0, 'comfortable': 1.0, 'that': 1.0, 'and': 2.0, 'edges': 1.0, 'so': 1.0, 't': 1.0, 'the': 2.0, 'bother': 1.0, 'side': 1.0, 'is': 3.0, 'friends': 1.0, 'pillow': 1.0, 'wouldn': 1.0, 'only': 1.0, 'this': 1.0, 'it': 3.0, 'around': 1.0, 'but': 1.0, 's': 1.0, 'not': 1.0, 'real': 1.0, 'i': 2.0}
Word element => {'haha': 1.0, 'now': 1.0, 'than': 1.0, 'loves': 1.0, 'absolutely': 1.0, 'o': 1.0, 'me': 1.0, 'and': 1.0, 'wife': 1.0, 'for': 1.0, 'my': 1.0, 'highly': 1.0, 'snuggles': 1.0, 'more': 1.0, 'the': 2.0, 'pregg': 1.0, 'got': 1.0, 'she': 2.0, 'recommend': 1.0, 'bad': 1.0, 'thing': 1.0, 'is': 1.0, 'this': 1.0, 'it': 1.0, 'only': 1.0, 'with': 1.0, 'pillow': 1.0, 'that': 1.0}
Word element => {'price': 1.0, 'the': 1.0, 'worth': 1.0, 'well': 1.0, 'purchase': 1.0, 'very': 1.0, 'since': 1.0, 'i': 1.0, 'no': 1.0, 'back': 1.0, 'love': 2.0, 'it': 2.0, 'ache': 1.0, 'great': 1.0, 'got': 1.0, 'versatile': 1.0, 'pillow': 1.0, 'this': 1.0}
Word element => {'white': 1.0, 'colors': 1.0, 'cover': 1.0, 'other': 1.0, 'they': 1.0, 'wish': 1.0, 'on': 1.0, 'side': 1.0, 'no': 1.0, 'support': 1.0, 'still': 1.0, 'in': 1.0, 'turning': 1.0, 'love': 1.0, 'next': 1.0, 'sold': 1.0, 'and': 3.0, 'comfortable': 1.0, 'bed': 1.0, 'switch': 1.0, 'what': 1.0, 'had': 1.0, 'now': 2.0, 'husband': 1.0, 'second': 2.0, 'through': 1.0, 'i': 7.0, 'them': 1.0, 'night': 1.0, 'use': 1.0, 'every': 1.0, 'me': 1.0, 'trimester': 2.0, 'not': 1.0, 'matter': 1.0, 'part': 1.0, 'way': 1.0, 'pillow': 2.0, 'of': 4.0, 'takes': 1.0, 'over': 1.0, 'up': 1.0, 'my': 2.0, 'do': 1.0, 'end': 1.0, 'a': 2.0, 'could': 1.0, 't': 1.0, 'small': 1.0, 'get': 1.0, 'pregnancy': 1.0, 'option': 1.0, 'at': 1.0, 'size': 1.0, 'to': 3.0, 'sleep': 2.0, 'it': 3.0, 'half': 1.0, 'knows': 1.0, 'the': 5.0, 'without': 1.0, 'queen': 1.0, 'helps': 1.0, 'can': 1.0, 'but': 1.0, 'am': 1.0, 'miss': 1.0, 'than': 1.0, 'having': 3.0, 'him': 1.0}
Word element => {'woman': 1.0, 'pregnant': 1.0, 'maintain': 1.0, 'this': 1.0, 'only': 1.0, 'comfortable': 2.0, 'using': 1.0, 'weeks': 1.0, 'back': 1.0, 'pillow': 3.0, 'a': 1.0, 'lying': 1.0, 'it': 3.0, 'loses': 1.0, 'after': 1.0, 'am': 1.0, 'i': 2.0, 'purchased': 1.0, 'at': 2.0, 'pregnancy': 1.0, 'of': 1.0, 'helps': 1.0, 'the': 3.0, 'my': 1.0, 'beginning': 1.0, 'and': 4.0, 'is': 3.0, 'side': 1.0, 'negative': 1.0, 'case': 1.0, 'that': 1.0, 'still': 1.0, 'difficult': 1.0, '36': 1.0, 'washing': 1.0, 'any': 1.0, 'sleep': 1.0, 'to': 2.0, 'put': 1.0, 'on': 1.0, 'over': 1.0, 'uses': 1.0, 'slightly': 1.0, 'so': 1.0, 'time': 1.0, 'form': 1.0, 'multiple': 1.0, 'would': 1.0, 'recommend': 1.0}
Word element => {'only': 1.0, 'intimacy': 1.0, 'hips': 1.0, 'just': 1.0, 'need': 1.0, 'or': 1.0, 'top': 2.0, 'larger': 1.0, 'put': 1.0, 'reading': 1.0, 'use': 2.0, 'back': 1.0, 'some': 1.0, 'height': 1.0, 'pros': 1.0, 'recommend': 1.0, 'pillows': 2.0, 'been': 1.0, 'not': 2.0, 'morning': 1.0, 'great': 4.0, 'temper': 1.0, 'feels': 1.0, 'has': 1.0, 'always': 2.0, 'cons': 1.0, 'stiff': 1.0, 'too': 1.0, 'being': 1.0, 'out': 1.0, 'with': 2.0, 'turn': 3.0, 'said': 1.0, 'that': 3.0, 'designed': 1.0, 'into': 1.0, 'such': 1.0, 'for': 6.0, 'wedge': 1.0, 'in': 2.0, 'm': 1.0, '34': 2.0, 'i': 7.0, 'support': 7.0, 'enough': 2.0, 'fold': 1.0, 'love': 3.0, 'far': 1.0, 'you': 1.0, 'end': 4.0, 'to': 6.0, 'as': 5.0, 'pedic': 1.0, 'up': 3.0, 'there': 1.0, 'belly': 2.0, 'depending': 1.0, 'come': 2.0, 'however': 1.0, 'sciatica': 1.0, '9': 1.0, 'it': 3.0, 'knit': 1.0, 'solved': 1.0, 'perfect': 2.0, '2': 1.0, 'can': 2.0, 'separate': 3.0, 't': 1.0, 'could': 1.0, 's': 1.0, 'a': 6.0, 'more': 1.0, 'without': 2.0, 'myself': 1.0, 'almost': 1.0, 'over': 2.0, 'provides': 2.0, 'be': 1.0, 'pillow': 9.0, 'longest': 1.0, 'helps': 1.0, '5': 1.0, 'opening': 1.0, 'towards': 1.0, 'the': 21.0, 'of': 4.0, 'padding': 1.0, 'doesn': 1.0, 'was': 1.0, 'also': 1.0, 'lower': 2.0, 'needs': 3.0, 'area': 1.0, 'except': 1.0, 'potential': 1.0, 'your': 2.0, 'part': 4.0, 'is': 3.0, 'at': 2.0, '1': 1.0, 'and': 5.0, 'case': 3.0, 'closed': 1.0, 'scooting': 1.0, 'pulling': 1.0, 'picture': 1.0, 'nestle': 1.0, 'other': 2.0, 'elevating': 1.0, 'which': 2.0, 'side': 3.0, 'light': 1.0, 'looking': 1.0, 'readjusting': 2.0, 'between': 3.0, 'then': 1.0, 'leg': 2.0, 'reviews': 1.0, 'knees': 3.0, 'immediately': 1.0, 'onto': 1.0, 'start': 1.0, 'lying': 1.0, 'facing': 1.0, 'amount': 1.0, 'long': 1.0, 'on': 4.0, 'noticed': 1.0, 'have': 1.0, 'dig': 1.0, 'neck': 5.0, 'this': 3.0, 'few': 1.0, 'by': 2.0, 'may': 2.0, 'my': 7.0, 'me': 1.0, 'jersey': 1.0, 'closest': 1.0, 'customer': 1.0, 'adjusting': 1.0, 'head': 4.0, 'down': 1.0, 'little': 1.0}
Word element => {'thing': 1.0, 'switched': 1.0, 'nice': 1.0, 'to': 3.0, 'be': 1.0, 'it': 3.0, 'this': 2.0, 'so': 2.0, 'of': 1.0, 'i': 2.0, 'threading': 2.0, 'have': 1.0, 'due': 1.0, 'would': 3.0, 'than': 1.0, 't': 2.0, 'the': 6.0, 'they': 1.0, 'love': 1.0, 'stars': 1.0, 'rate': 1.0, 'my': 1.0, 'if': 2.0, 'move': 1.0, 'firm': 2.0, 'bottom': 1.0, 'inside': 2.0, 'pillow': 3.0, 'an': 1.0, 'elastic': 1.0, 'doesn': 1.0, 'wasn': 1.0, 'in': 3.0, 'thread': 1.0, 'stretch': 1.0, 'and': 2.0, 'both': 1.0, 'part': 1.0, 'ripped': 1.0, 'just': 1.0, 'give': 1.0, 'enough': 1.0, 'around': 1.0, 'top': 1.0, '5': 1.0, 'room': 1.0, 'other': 1.0, 'case': 1.0, 'that': 1.0}
Word element => {'did': 1.0, 'lionheart': 1.0, 'back': 1.0, 'impressions': 1.0, 'what': 1.0, 'had': 1.0, 'installed': 1.0, 'upholstery': 1.0, 'digs': 1.0, 'after': 1.0, 'base': 1.0, 'deep': 1.0, 'issue': 1.0, 'other': 1.0, 'it': 2.0, 'newborn': 1.0, 'never': 1.0, 'would': 1.0, 'newborns': 1.0, 'rated': 1.0, 'system': 1.0, 'travel': 1.0, 'was': 1.0, 'chicco': 1.0, 'with': 1.0, 'came': 1.0, 'into': 1.0, 'that': 2.0, 'one': 1.0, 'support': 1.0, 'less': 1.0, 'prince': 1.0, 'is': 4.0, 'course': 1.0, 'how': 2.0, 'ever': 1.0, 'put': 1.0, 'your': 1.0, 'has': 1.0, 'but': 1.0, 'can': 1.0, 'honda': 2.0, 'the': 5.0, 'this': 5.0, 'week': 1.0, 'car': 5.0, '15': 1.0, '2002': 1.0, 'want': 1.0, 'if': 1.0, 'choice': 1.0, 'our': 1.0, 'to': 2.0, 'seat': 7.0, 'just': 1.0, 'cons': 1.0, 'civic': 2.0, 's': 1.0, 'might': 1.0, 't': 1.0, 'a': 4.0, 'could': 1.0, 'regular': 1.0, 'in': 5.0, 'i': 5.0, 'sub': 1.0, 'consider': 1.0, 'si': 1.0, 'have': 2.0, 'or': 1.0, 'compact': 1.0, 'compared': 1.0, 'from': 2.0, 'saver': 1.0, 'britax': 1.0, 'imagine': 1.0, 'of': 1.0, 'fit': 1.0, 'for': 3.0, 'my': 4.0, 'fits': 1.0, 'vehicle': 1.0, 'daughter': 1.0, 'about': 1.0, 'you': 2.0, 'lbs': 1.0, 'similar': 1.0, 'and': 1.0, 'only': 1.0, 'much': 1.0}
Word element => {'rest': 1.0, 'arm': 1.0, 'and': 1.0, 'attached': 1.0, 'velcro': 1.0, 'helpful': 1.0, 'feature': 1.0, 'skin': 1.0, 'on': 1.0, 'causing': 1.0, 'so': 1.0, 'against': 1.0, 'tend': 1.0, 'sliders': 1.0, 'along': 1.0, '2': 1.0, 'shoulder': 4.0, 'couple': 1.0, 'that': 2.0, 'it': 1.0, 'much': 1.0, 'its': 1.0, 'harness': 1.0, 'only': 1.0, 'this': 2.0, 'thing': 1.0, 'include': 1.0, 'support': 1.0, 'of': 2.0, 'roundabout': 1.0, 'straps': 4.0, 'cushion': 3.0, 'didn': 1.0, 'tan': 1.0, 'rub': 1.0, 'slide': 1.0, 'compared': 1.0, 'hold': 1.0, 'which': 2.0, 'inches': 2.0, 'very': 2.0, 'best': 1.0, 'son': 2.0, 'friction': 1.0, 'top': 1.0, 'convertible': 1.0, 'included': 1.0, 'swirl': 1.0, 'around': 1.0, 'is': 2.0, 'car': 2.0, 'onyxthe': 1.0, 'in': 5.0, 'color': 1.0, 'great': 1.0, 'comfortable': 1.0, 'model': 4.0, 'child': 3.0, 'shorter': 1.0, 'at': 1.0, 'place': 1.0, 'without': 1.0, 'the': 10.0, 'a': 2.0, 's': 4.0, 't': 1.0, 'all': 1.0, 'seat': 2.0, 'to': 5.0, 'was': 1.0, 'my': 2.0, 'another': 1.0, 'easier': 1.0, 'has': 1.0, 'his': 1.0, 'strips': 1.0, 'britax': 3.0, 'are': 2.0}
Word element => {'less': 1.0, 'has': 1.0, 'also': 1.0, 'pushing': 1.0, 'become': 1.0, 'used': 1.0, 'turn': 1.0, 'release': 1.0, 'difficult': 1.0, 'sticky': 2.0, 'sometimes': 1.0, 'tighten': 1.0, 'loosen': 1.0, 'use': 1.0, 'you': 1.0, 'doesn': 1.0, 'and': 8.0, 'this': 1.0, 'two': 1.0, 'easy': 2.0, 'get': 2.0, 'harness': 2.0, 'its': 1.0, 'soft': 1.0, 'works': 1.0, 's': 3.0, 'a': 4.0, 'we': 4.0, 'asleep': 1.0, 'adjust': 1.0, 'awake': 1.0, 'did': 1.0, 'whether': 1.0, 'my': 1.0, 'fits': 2.0, 'another': 1.0, 'great': 1.0, 'he': 2.0, 'love': 2.0, 'fabric': 1.0, 'for': 2.0, 'using': 1.0, 'like': 1.0, 'facing': 1.0, 'over': 1.0, 't': 1.0, 'ago': 1.0, 'cost': 1.0, 've': 1.0, 'britax': 1.0, 'are': 2.0, 'new': 1.0, 'tall': 1.0, 'heard': 1.0, 'been': 1.0, 'that': 5.0, 'to': 7.0, 'our': 1.0, 'in': 3.0, 'seat': 5.0, 'as': 2.0, 'dial': 1.0, 'least': 1.0, 'had': 1.0, 'worth': 1.0, 'almost': 1.0, 'now': 2.0, 'son': 1.0, 'pros': 1.0, 'safe': 1.0, 'bulkier': 1.0, 'hot': 1.0, 'i': 2.0, 'roundabout': 1.0, 'well': 2.0, 'expected': 1.0, 'or': 3.0, 'vinyl': 1.0, 'can': 2.0, '2': 1.0, 'but': 1.0, 'both': 1.0, 'years': 1.0, 'rear': 1.0, 'front': 1.0, 'it': 10.0, 'him': 2.0, 'be': 1.0, 'very': 1.0, '33': 1.0, 'was': 3.0, 'lbs': 1.0, 'when': 1.0, 'old': 1.0, 'seems': 1.0, 'see': 1.0, 'comfortable': 1.0, 'fitting': 1.0, 'is': 5.0, 'at': 1.0, 'probably': 1.0, '28': 1.0, 'cons': 1.0, 'harder': 2.0, 'out': 1.0, 'the': 7.0, 'of': 2.0, 'clean': 1.0, 'car': 1.0, 'infant': 1.0, 'belts': 1.0, 'than': 1.0, 'seats': 1.0, 'year': 3.0, 'toddler': 1.0}
Word element => {'happy': 1.0, 'make': 1.0, 'ok': 1.0, 'there': 1.0, 'with': 1.0, 'well': 1.0, 'blend': 1.0, 'riding': 1.0, 'colors': 1.0, 'nice': 1.0, 'are': 3.0, 'who': 1.0, 'baby': 1.0, 'difference': 1.0, 'second': 1.0, 'really': 1.0, 'is': 1.0, 'snugride': 1.0, 'loves': 1.0, 'that': 2.0, 'soft': 1.0, 'this': 2.0, 'he': 1.0, 'by': 1.0, 'just': 1.0, 'car': 2.0, 'the': 6.0, 'live': 1.0, 'a': 1.0, 'we': 3.0, 'up': 1.0, 'outgrew': 1.0, 'hype': 1.0, 'does': 2.0, 'sister': 1.0, 'than': 1.0, 'purchased': 1.0, 'our': 1.0, 'seat': 4.0, 'to': 1.0, 'look': 1.0, 'for': 1.0, 'love': 1.0, 'six': 1.0, 'old': 1.0, 'months': 1.0, 'fact': 1.0, 'seats': 2.0, 'so': 1.0, 'window': 1.0, 'but': 1.0, '2': 1.0, 'most': 1.0, 'can': 1.0, 'out': 1.0, 'sat': 1.0, 'interiors': 1.0, 'his': 2.0, 'year': 1.0, 'in': 2.0, 'too': 1.0, 'and': 3.0, 'covers': 1.0, 'it': 3.0, 'higher': 1.0, 'she': 1.0}
Word element => {'about': 1.0, 'far': 1.0, 'so': 1.0, 'is': 1.0, 'car': 1.0, 'no': 1.0, 'seat': 1.0, 'what': 1.0, 'to': 2.0, 'complains': 1.0, 'seems': 1.0, 'wifes': 1.0, 'co': 1.0, 'well': 1.0, 'workers': 1.0, 'supposed': 1.0, 'bought': 1.0, 'it': 2.0, 'this': 1.0, 'as': 1.0, 'think': 1.0, 'do': 1.0, 'and': 1.0, 'positively': 1.0}
Word element => {'money': 1.0, 'worth': 1.0, 'hour': 1.0, '3': 1.0, 'doesn': 1.0, 'britax': 1.0, 'of': 1.0, 'seat': 2.0, 'complained': 1.0, 'has': 1.0, 'extra': 1.0, 'cars': 1.0, 'in': 3.0, 'had': 1.0, 'daughter': 1.0, 'for': 2.0, 'year': 1.0, 'been': 1.0, 'definitely': 1.0, 'car': 1.0, 'on': 1.0, 'over': 1.0, 'have': 1.0, 'my': 3.0, 'riding': 1.0, 'i': 1.0, 'and': 2.0, 'this': 2.0, 'it': 1.0, 'trips': 1.0, 'even': 1.0, 'both': 2.0, 'works': 1.0, 'the': 1.0, 't': 1.0, 'great': 1.0, 'a': 2.0}
Word element => {'product': 1.0, 'recommend': 1.0, 'relatively': 1.0, 'front': 1.0, 'both': 1.0, 'fit': 1.0, 'theseat': 1.0, 'maxima': 1.0, 'nissan': 1.0, 'convertible': 1.0, 'problem': 1.0, 'loosen': 1.0, 'push': 1.0, 'you': 1.0, 'button': 1.0, 'ilove': 1.0, 'very': 4.0, 'read': 1.0, 'print': 1.0, 'worth': 1.0, 'or': 1.0, 'is': 5.0, 'occassionally': 1.0, 'extra': 1.0, 'gotten': 1.0, 'that': 1.0, 'time': 1.0, '219': 1.0, 'spend': 1.0, 'great': 2.0, 'access': 1.0, 'until': 1.0, 'big': 1.0, 'daughter': 3.0, 'months': 2.0, 'fabric': 1.0, 'for': 3.0, 'went': 1.0, 'quite': 1.0, 'my': 3.0, 'before': 1.0, 'cheaper': 2.0, 'small': 1.0, 'a': 7.0, 'had': 1.0, 'buying': 1.0, 'am': 1.0, 'deciding': 1.0, 'seats': 2.0, 'just': 2.0, 'to': 7.0, 'any': 1.0, 'as': 1.0, 'well': 2.0, 'i': 9.0, 'money': 1.0, 'so': 2.0, 'can': 1.0, 'lots': 1.0, 'design': 1.0, 'reviews': 1.0, 'on': 2.0, 'make': 1.0, '3': 1.0, 'and': 9.0, 'should': 1.0, 'ahead': 1.0, 'wipe': 1.0, 'it': 3.0, 'highly': 1.0, 'this': 8.0, 'hard': 1.0, 'easy': 4.0, 'with': 1.0, 'snack': 1.0, 'seat': 4.0, 'in': 6.0, 'still': 1.0, 'damp': 1.0, 'if': 1.0, 'turn': 1.0, 'clean': 1.0, 'car': 2.0, 'crumbs': 1.0, 'down': 1.0, 'other': 3.0, 'even': 1.0, 'searched': 1.0, 'cloth': 1.0, 'restraint': 1.0, 'use': 3.0, 'buy': 1.0, 'internet': 1.0, 'mess': 1.0, 'straps': 2.0, 'have': 2.0, 'the': 12.0, 'of': 2.0, 'tangled': 1.0, 'like': 1.0, 'spent': 1.0, 'never': 1.0, 'some': 2.0, 'messes': 1.0, 'do': 1.0, 'used': 1.0, 'one': 1.0, 'happy': 1.0, 'rear': 3.0, 'facing': 3.0, 'loves': 1.0, 'position': 3.0, 'about': 1.0, 'vacuum': 1.0, 'was': 3.0, 'enough': 1.0, 'twisted': 1.0, 'forwards': 1.0}
Word element => {'this': 1.0, 'them': 1.0, 'gate': 1.0, 'product': 2.0, 'and': 2.0, 'described': 1.0, 'worked': 1.0, 'as': 1.0, 'like': 1.0, 'need': 1.0, 'to': 1.0, 'was': 1.0, 'recommend': 1.0, 'needed': 1.0, 'mount': 1.0, 'exactly': 1.0, 'would': 1.0, 'if': 1.0, 'you': 1.0, 'i': 2.0, 'buy': 1.0, 'the': 1.0, 'angle': 1.0, 'an': 1.0, 'extension': 1.0}
Word element => {'believe': 1.0, 'wont': 1.0, 'soooo': 1.0, 'door': 1.0, 'front': 1.0, 'or': 1.0, 'i': 2.0, 'have': 1.0, 'the': 3.0, 'complain': 1.0, 'baby': 1.0, 'zero': 1.0, 'love': 1.0, 'this': 1.0, 'it': 3.0, 'install': 1.0, 'recommendation': 1.0, 'you': 1.0, 's': 1.0, 'fabricant': 1.0, 'kitchen': 1.0, 'just': 2.0, 'to': 3.0, 'was': 1.0, 'what': 1.0, 'we': 1.0, 'and': 1.0, 'away': 1.0, 'easy': 1.0, 'needed': 1.0, 'keep': 1.0, 'our': 1.0, 'from': 1.0}
Word element => {'has': 1.0, 'door': 1.0, 'equivalent': 1.0, 'mounted': 1.0, 'ours': 1.0, 'stud': 1.0, 'through': 1.0, 'push': 1.0, 'seems': 1.0, 'round': 1.0, 'used': 1.0, 'i': 1.0, 'small': 2.0, 'very': 1.0, 'is': 3.0, 'frame': 2.0, 'lot': 1.0, 'since': 1.0, 'sides': 1.0, 'stiff': 1.0, 'together': 1.0, 'it': 3.0, 'like': 2.0, 'hand': 1.0, 'support': 1.0, 'these': 1.0, 'board': 1.0, 'twist': 2.0, 'you': 2.0, 'screws': 2.0, 'forces': 1.0, 'out': 2.0, 'fits': 1.0, 'requires': 1.0, 'pressure': 2.0, 'or': 1.0, 'unlock': 1.0, 'that': 3.0, 'supported': 1.0, 'smaller': 1.0, 'put': 1.0, 'on': 4.0, 'bending': 1.0, 'opening': 1.0, 'can': 2.0, 'excellent': 1.0, 'by': 1.0, 'just': 1.0, 'fence': 1.0, 'not': 2.0, 'pads': 1.0, 'as': 1.0, 'our': 2.0, 'to': 4.0, 'product': 1.0, 'stepping': 1.0, 'and': 2.0, 'area': 2.0, 'get': 2.0, 'do': 1.0, 'down': 1.0, 'wall': 1.0, 'lift': 1.0, 'could': 1.0, 'a': 2.0, 'we': 2.0, 'go': 1.0, 'usually': 1.0, 'than': 1.0, 'mounting': 3.0, 'dog': 2.0, 'keeps': 1.0, 'lots': 2.0, 'in': 4.0, 'kitchen': 1.0, 'something': 1.0, '43': 1.0, 'note': 1.0, 'inch': 1.0, 'unlatching': 1.0, 'proper': 1.0, 'over': 1.0, 'up': 1.0, 'gap': 1.0, 'rather': 1.0, 'of': 3.0, 'gate': 4.0, 'without': 1.0, 'the': 5.0}
Word element => {'secure': 1.0, 'or': 1.0, 'knock': 1.0, 'going': 1.0, 'not': 1.0, 'definitely': 1.0, 'install': 1.0, 'easy': 1.0, 'relatively': 1.0, 'far': 1.0, 'so': 1.0, 'to': 3.0, 'no': 1.0, 'once': 1.0, 'in': 1.0, 'kitchen': 1.0, 'chihuahua': 1.0, 'dog': 1.0, 'unlatch': 1.0, 'keep': 1.0, 'very': 1.0, 'problems': 1.0, 'as': 1.0, 'using': 1.0, 'a': 2.0, 'gone': 1.0, 'used': 1.0, 'trips': 1.0, 'are': 2.0, 'the': 2.0, 'we': 2.0, 'locked': 1.0, 'over': 1.0, 'gate': 1.0, 'on': 2.0, 'linoleum': 1.0, 'while': 1.0, 'this': 1.0, 'it': 1.0}
Word element => {'away': 1.0, 'not': 1.0, 'will': 1.0, 'quality': 1.0, 'just': 1.0, 'be': 1.0, 'scratches': 1.0, 'terrible': 1.0, 'cause': 1.0, 'it': 7.0, 'only': 1.0, 'office': 1.0, 'kid': 1.0, 'dog': 1.0, 'about': 1.0, 'off': 2.0, 'so': 1.0, 'walls': 2.0, 'is': 2.0, 'came': 1.0, 'take': 2.0, 'that': 2.0, 'what': 1.0, 'exactly': 1.0, 'any': 1.0, 'to': 5.0, 'wanted': 1.0, 'i': 3.0, 'falling': 1.0, 'took': 1.0, 'and': 3.0, 'of': 2.0, 'there': 1.0, 'keep': 1.0, 'these': 1.0, 'my': 4.0, 'out': 1.0, 'pressure': 1.0, 'very': 1.0, 'quickly': 1.0, '30': 1.0, 'together': 1.0, 'really': 1.0, 'min': 1.0, 'put': 1.0, 'for': 1.0, 'stars': 1.0, 'love': 1.0, 'one': 1.0, 'the': 4.0, 'gate': 1.0, 'could': 1.0, 'stairs': 1.0, 's': 1.0, 'sturdy': 1.0, 'con': 1.0, 'from': 1.0, 'while': 1.0, 'applies': 1.0, 'tends': 1.0, 'paint': 1.0}
Word element => {'leap': 1.0, 'small': 1.0, 'works': 1.0, 'install': 1.0, 'and': 2.0, 'was': 1.0, 'to': 1.0, 'purchased': 1.0, 'easy': 1.0, 'over': 1.0, 'gate': 1.0, 'tall': 1.0, 'it': 3.0, 'this': 1.0, 'good': 1.0, 'cannot': 1.0, 'in': 1.0, 'for': 1.0, 'well': 1.0, 'black': 1.0, 'the': 2.0, 'i': 1.0, 'dogs': 2.0, 'top': 1.0, 'enough': 1.0, 'looks': 1.0, 'is': 1.0, 'that': 1.0}
Word element => {'have': 1.0, 'must': 1.0, 'ecstatic': 1.0, 'are': 1.0, 'himself': 1.0, 'one': 1.0, 'learned': 1.0, 'parent': 1.0, 'consequences': 1.0, 'rewards': 1.0, 'work': 1.0, 'best': 1.0, 'feels': 1.0, 'learn': 2.0, 'builds': 1.0, 'day': 1.0, '1': 1.0, 'works': 1.0, 'why': 1.0, 'book': 1.0, 'example': 1.0, 'ready': 1.0, 'recommend': 1.0, 'potty': 3.0, 'weekend': 1.0, 'the': 7.0, 'a': 2.0, 'proud': 1.0, 'we': 6.0, '8': 1.0, 'use': 2.0, 'by': 1.0, 'just': 1.0, 'author': 1.0, 'this': 5.0, 'truly': 1.0, 'it': 1.0, 'mos': 1.0, 'with': 3.0, 'that': 3.0, 'gave': 1.0, 'us': 1.0, 'fantastic': 1.0, 'when': 2.0, 'explains': 1.0, 'in': 1.0, 'method': 6.0, 'naturally': 1.0, 'development': 1.0, 'for': 2.0, 'love': 1.0, 'product': 2.0, 'to': 4.0, 'our': 2.0, 'son': 2.0, 'very': 2.0, 'every': 1.0, 'highly': 1.0, 'about': 1.0, 'training': 1.0, 'indicators': 1.0, 'too': 1.0, 'and': 5.0, 'tell': 1.0, '2yrs': 1.0, 'information': 1.0, 'used': 1.0, 'helpful': 1.0, 'physical': 1.0, 'he': 1.0, 'teach': 2.0, 'how': 2.0, 'on': 1.0, 'your': 1.0, 'child': 2.0, 'is': 2.0, 'of': 1.0, 'social': 1.0, 'concepts': 1.0, 'emotional': 1.0, 'cognitive': 1.0, 'also': 1.0, 'others': 1.0, 'some': 1.0, 'principles': 2.0}
Word element => {'so': 1.0, 'own': 1.0, 'within': 1.0, 'be': 1.0, 'literally': 1.0, 'however': 1.0, 'make': 2.0, 'on': 2.0, 'think': 2.0, 'your': 1.0, 'therefore': 1.0, 'how': 1.0, 'he': 4.0, 'praised': 1.0, 'out': 1.0, 'and': 5.0, 'potty': 5.0, 'immediately': 1.0, 'mentioned': 1.0, 'of': 3.0, 'the': 6.0, 'side': 1.0, 'is': 4.0, 'more': 1.0, 'having': 1.0, 'aside': 1.0, 'does': 1.0, 'resistant': 1.0, 'age': 1.0, 'somewhat': 1.0, 'toilet': 1.0, 'an': 1.0, 'three': 2.0, 'who': 1.0, 'a': 5.0, 'figured': 1.0, 'go': 2.0, 'could': 2.0, 'leg': 1.0, 'we': 1.0, 'going': 1.0, 'effect': 1.0, 'for': 3.0, 'training': 2.0, 'have': 2.0, 'anatomically': 1.0, 'doll': 4.0, 'squeezing': 1.0, 'older': 2.0, 'this': 2.0, 'excited': 2.0, 'as': 1.0, 'was': 2.0, 'dolls': 1.0, 'about': 1.0, 'also': 2.0, 'cared': 1.0, 'old': 2.0, 'i': 4.0, 'ready': 1.0, '5': 1.0, 'correct': 1.0, 'male': 1.0, 'tool': 1.0, 'seconds': 1.0, 'less': 1.0, 'just': 2.0, 'intelligent': 1.0, 'by': 2.0, 'to': 3.0, 'became': 1.0, 'great': 1.0, 'fascinated': 1.0, 'headstrong': 1.0, 'it': 2.0, 'month': 1.0, 'cause': 1.0, 'function': 1.0, 'not': 2.0, 'because': 1.0, 'that': 2.0, 'wanted': 1.0, 'again': 1.0, 'from': 1.0, 'leak': 1.0, 'reviewers': 1.0, 'useful': 1.0, 'child': 3.0, 'product': 1.0, 'year': 1.0, 'toddler': 1.0, '18': 1.0, '24': 1.0, 'but': 1.0, 'if': 1.0, 'aware': 1.0, 'making': 1.0, 'things': 1.0, 'younger': 1.0, 'previous': 1.0, 'their': 1.0}
Word element => {'disappointed': 1.0, 'be': 1.0, 'won': 1.0, 'you': 1.0, 'buy': 1.0, 'trust': 1.0, 'own': 1.0, 'brand': 1.0, 'ask': 1.0, 'me': 3.0, 'way': 1.0, 'on': 1.0, 'very': 1.0, 'is': 2.0, 'easy': 1.0, 'operation': 1.0, 'true': 1.0, 'wrestle': 1.0, 'this': 1.0, 'with': 2.0, 't': 1.0, 'a': 3.0, 'for': 1.0, 'actually': 1.0, 'product': 1.0, 'struggled': 1.0, 'one': 1.0, 'attest': 1.0, 'can': 1.0, 'what': 1.0, 'purchased': 1.0, 'she': 3.0, 'it': 2.0, 'truly': 1.0, 'into': 1.0, 'that': 2.0, 'buggybagg': 2.0, 'i': 5.0, 'stating': 1.0, 'reviews': 1.0, 'frustrated': 1.0, 'using': 1.0, 'reading': 1.0, 'set': 1.0, 'holding': 1.0, 'after': 1.0, 'store': 2.0, 'was': 4.0, 'as': 2.0, 'to': 3.0, 'entered': 1.0, 'in': 2.0, 'grocery': 1.0, 'the': 4.0, 'place': 2.0, 'looked': 1.0, 'while': 2.0, 'baby': 1.0, 'my': 1.0, 'another': 1.0, 'handed': 1.0, 'at': 1.0, 'same': 1.0, 'time': 1.0, 'mom': 1.0, 'of': 1.0, 'competing': 1.0, 'her': 2.0, 'cover': 3.0}
Word element => {'absolutely': 1.0, 'regrets': 1.0, 'no': 1.0, 'have': 1.0, 'blend': 1.0, 'polyester': 1.0, 'not': 1.0, 'was': 1.0, 'sanitize': 1.0, 'us': 1.0, 'attractive': 1.0, 'seeing': 1.0, 'still': 2.0, 'did': 1.0, 'dried': 1.0, 'water': 1.0, 'germaphobe': 1.0, 'want': 1.0, 'being': 1.0, 'wash': 1.0, 'first': 2.0, 'after': 3.0, 'shrunk': 1.0, 'that': 2.0, 'gripe': 1.0, 'only': 1.0, 'slight': 1.0, 'simple': 1.0, 'left': 1.0, 'with': 1.0, 'i': 9.0, 'chairs': 1.0, 'high': 1.0, 'bit': 2.0, 'though': 1.0, 'hot': 1.0, 'well': 2.0, 'use': 2.0, 'front': 1.0, 'disappointed': 1.0, 'prefer': 1.0, 'whatsover': 1.0, 'restaurant': 1.0, 'for': 2.0, 'love': 3.0, 'one': 1.0, 'buyer': 1.0, 'this': 4.0, 'is': 4.0, 'to': 2.0, 'as': 2.0, 'and': 5.0, 'just': 1.0, 'sam': 1.0, 'large': 1.0, 'we': 1.0, 'a': 6.0, 's': 2.0, 'costco': 1.0, 'am': 1.0, 'germaphobes': 1.0, 'shrink': 1.0, 'you': 1.0, 'shopping': 2.0, 'titch': 1.0, 'cart': 2.0, 'great': 1.0, 'the': 9.0, 'tight': 1.0, 'my': 4.0, 'fits': 2.0, 'handles': 1.0, 'also': 1.0, 'in': 5.0, 'carts': 2.0, 'pocket': 1.0, 'back': 1.0, 'washed': 1.0, 'on': 2.0, 'put': 2.0, 'super': 1.0, 'would': 2.0, 'it': 14.0, 'truly': 1.0, 'but': 1.0, 'can': 2.0, 'right': 1.0, 'at': 1.0, 'handed': 1.0, 'trip': 1.0, 'hand': 1.0, 'hold': 1.0, 'baby': 1.0, 'arm': 1.0}
Word element => {'holding': 1.0, 'of': 3.0, 'set': 1.0, 'pull': 1.0, 'my': 1.0, 'this': 2.0, 'with': 1.0, 'everywhere': 1.0, 'is': 2.0, 'really': 1.0, 'the': 10.0, 'great': 1.0, 'out': 1.0, 'shopping': 2.0, 'cart': 3.0, 'i': 3.0, 'tries': 1.0, 'baby': 2.0, 'up': 1.0, 'don': 1.0, 'cover': 5.0, 'covers': 1.0, 'month': 1.0, 'areas': 1.0, '9': 1.0, 'problem': 2.0, 'can': 2.0, 'but': 3.0, 'to': 2.0, 'all': 1.0, 'thing': 1.0, 'use': 1.0, 'either': 1.0, 'touches': 1.0, 'hand': 1.0, 'like': 1.0, 'handle': 1.0, 'one': 1.0, 'that': 1.0, 'me': 1.0, 'not': 2.0, 't': 1.0, 's': 1.0, 'a': 3.0, 'and': 1.0, 'pattern': 1.0, 'important': 1.0, 'while': 1.0}
Word element => {'purpose': 1.0, 'defeats': 1.0, 'on': 1.0, 'just': 1.0, 'toy': 1.0, 'used': 2.0, 'been': 1.0, 'refund': 2.0, 'response': 1.0, 'received': 1.0, 'complain': 1.0, 'return': 1.0, 'store': 2.0, 'buy': 1.0, 'gone': 1.0, 'had': 1.0, 'part': 1.0, 'whole': 2.0, 'started': 1.0, 'lost': 2.0, 'feeding': 1.0, 'your': 2.0, 'mailed': 1.0, 'complexity': 1.0, 'due': 1.0, 'do': 1.0, 'or': 1.0, 'training': 2.0, 'bathroom': 1.0, 'start': 1.0, 'too': 1.0, 'lot': 1.0, 'fact': 1.0, 'teach': 1.0, 'old': 2.0, 'get': 1.0, 'months': 2.0, 'enough': 2.0, 'potty': 1.0, 'peeing': 1.0, 'strong': 1.0, 'upset': 1.0, 'extremely': 1.0, 'ok': 1.0, 'full': 1.0, 'assured': 1.0, 'these': 1.0, 'once': 1.0, 'was': 6.0, 'over': 1.0, 'hard': 2.0, 'thigh': 1.0, 'pee': 4.0, 'make': 3.0, 'perfectly': 1.0, 'has': 2.0, 'since': 1.0, 'daughter': 5.0, 'my': 5.0, 'systems': 1.0, 'as': 1.0, 'interest': 2.0, 'patience': 1.0, 'requires': 1.0, 'out': 2.0, 'then': 6.0, 'glass': 2.0, 'hole': 1.0, 't': 4.0, 'wetting': 2.0, 'reinsert': 1.0, 'again': 2.0, 'insert': 1.0, 'getting': 1.0, 'squeeze': 2.0, 'don': 3.0, 'to': 15.0, 'thing': 1.0, 'about': 1.0, 'press': 2.0, 'no': 2.0, 'hurting': 1.0, 'spills': 1.0, 'go': 1.0, 'figured': 1.0, 'of': 9.0, 'the': 22.0, 'her': 10.0, 'which': 1.0, 'good': 1.0, 'waste': 1.0, 'given': 1.0, 'cradle': 1.0, 'expensive': 2.0, 'where': 1.0, 'did': 1.0, 'patty': 12.0, 'by': 1.0, '35': 2.0, 'bottles': 5.0, 'would': 1.0, 'difficult': 1.0, 'position': 2.0, 'mouth': 1.0, 'not': 4.0, 'unlike': 1.0, 'doll': 6.0, 'hold': 1.0, 'shoots': 1.0, 'child': 2.0, 'price': 1.0, 'best': 1.0, 'lose': 1.0, 'and': 13.0, 'arms': 1.0, 'plus': 1.0, 'cute': 1.0, 'i': 8.0, 'money': 1.0, 'bought': 2.0, 'must': 3.0, 'because': 3.0, 'that': 5.0, 'into': 2.0, 'distressed': 1.0, 'definitely': 1.0, 'at': 6.0, 'is': 7.0, 'but': 3.0, 'so': 1.0, 'can': 5.0, 'squirting': 1.0, 'most': 3.0, 'this': 4.0, 'thought': 1.0, 'outfit': 1.0, 'it': 8.0, 'company': 1.0, 'quickly': 1.0, 'only': 4.0, 'a': 8.0, 'small': 1.0, 'tiny': 1.0, 'until': 1.0, 'done': 1.0, 'in': 6.0, 'particular': 1.0, 'way': 3.0, 'all': 2.0, 'an': 5.0, 'wish': 1.0, 'adult': 3.0, 'with': 2.0, 'will': 2.0, 'things': 1.0, 'you': 6.0, 'able': 2.0, 'master': 1.0, 'least': 1.0, 'children': 3.0, 'precise': 1.0, 'fill': 4.0, 'their': 2.0, 'water': 7.0, 'up': 5.0, 'takes': 2.0, 'cannot': 1.0, 'very': 2.0, 'if': 2.0, 'course': 1.0, 'e': 1.0, 'still': 2.0, 'have': 2.0, 'exact': 2.0, 'like': 1.0, 'cheap': 2.0, 'angle': 2.0, 'almost': 1.0, 'standing': 2.0, 'she': 5.0, 'baby': 1.0, 'dolls': 1.0, 'earlier': 1.0, 'minutes': 1.0, 'be': 5.0, 'drink': 1.0, 'instead': 2.0, 'feed': 3.0, 'even': 1.0, 'soaks': 1.0, '5': 1.0, 'for': 2.0, 'such': 1.0, '10': 1.0}
Word element => {'floor': 1.0, 'blankes': 1.0, 'some': 1.0, 'this': 1.0, 'he': 1.0, 'what': 1.0, 'no': 1.0, 'hours': 1.0, 'gradma': 1.0, 'two': 1.0, 'i': 3.0, 'old': 1.0, 'tried': 1.0, 'to': 1.0, 'was': 1.0, 'bought': 1.0, 'my': 2.0, 'get': 1.0, 'matter': 1.0, 'and': 1.0, 'it': 1.0, 'nights': 1.0, '2': 1.0, 'the': 3.0, 'son': 2.0, 'year': 1.0, 'we': 1.0, 'could': 1.0, 'for': 2.0, 'over': 1.0, 'inflated': 1.0, 'ground': 1.0, 'because': 1.0, 'stay': 1.0, 'not': 1.0, 'just': 1.0, 'sides': 1.0, 'sleeping': 1.0, 'rolling': 1.0, 'did': 1.0, 'at': 1.0, 'keep': 1.0, 'have': 1.0, 'enough': 1.0, 'air': 1.0, 'out': 1.0, 'nt': 1.0, 'after': 1.0, 'on': 2.0, 'put': 1.0}
Word element => {'pump': 1.0, 'great': 1.0, 'bag': 1.0, 'not': 1.0, 'away': 1.0, 'ground': 1.0, 'the': 4.0, 'very': 1.0, 'isn': 1.0, 'tuck': 1.0, 'and': 4.0, 'bed': 1.0, 'would': 1.0, 'old': 1.0, 'year': 1.0, 'was': 1.0, 'grandma': 1.0, 'even': 1.0, 'us': 1.0, 'you': 1.0, 'when': 2.0, 'use': 1.0, 'travel': 2.0, 'with': 3.0, 'this': 2.0, 'children': 1.0, 'comes': 1.0, 'fall': 1.0, 'is': 3.0, 'their': 1.0, 'to': 4.0, 'our': 1.0, 'have': 1.0, 'must': 1.0, 'for': 2.0, 'ever': 1.0, 'so': 1.0, 'time': 1.0, 'off': 1.0, 'snap': 1.0, 'house': 1.0, 'far': 1.0, 'real': 1.0, 'anyone': 1.0, 'air': 1.0, 'in': 2.0, 'since': 1.0, 'who': 1.0, 'intends': 1.0, 'set': 2.0, 'of': 2.0, 'nap': 1.0, 'let': 1.0, 'or': 1.0, 'up': 2.0, 'over': 1.0, 'it': 4.0, 'nights': 1.0, 'just': 1.0, 'worried': 1.0, 'take': 1.0, 't': 1.0, 's': 2.0, 'going': 1.0, 'a': 3.0, 'we': 2.0, 'go': 1.0, 'out': 3.0, 'its': 1.0, 'town': 1.0, 'hotels': 1.0, 'i': 1.0, '2': 1.0}
Word element => {'on': 1.0, 'put': 1.0, 'wasn': 1.0, 'do': 1.0, 'what': 1.0, 'her': 1.0, 'know': 1.0, 'the': 1.0, 'herself': 1.0, 'is': 1.0, 'and': 1.0, 'too': 1.0, 'by': 1.0, 'us': 2.0, 'daughter': 1.0, 'preschooler': 1.0, 'about': 2.0, 'thing': 1.0, 'didn': 2.0, 'got': 1.0, 'to': 2.0, 'sleep': 2.0, 'our': 1.0, 'that': 2.0, 'portacrib': 1.0, 'big': 1.0, 'price': 1.0, 'best': 1.0, 'ready': 1.0, 'can': 1.0, 'but': 1.0, 'in': 3.0, 'yay': 1.0, 'for': 1.0, 'bed': 3.0, 't': 4.0, 'we': 2.0, 'a': 2.0, 'if': 1.0, 'slept': 2.0, 'with': 2.0, 'this': 1.0, 'she': 3.0, 'it': 1.0, 'my': 1.0, 'would': 1.0, 'rather': 1.0, 'than': 1.0, 'traveling': 1.0, 'when': 1.0, 'you': 1.0}
Word element => {'thanks': 1.0, 'purchase': 1.0, 'included': 1.0, 'to': 1.0, 'very': 2.0, 'stays': 1.0, 'inflate': 1.0, 'pressure': 1.0, 'air': 1.0, 'also': 1.0, 'little': 1.0, 'over': 1.0, 'you': 1.0, 'long': 1.0, 'works': 1.0, 'used': 1.0, 'what': 1.0, 'all': 1.0, 'have': 2.0, 'with': 3.0, 'this': 3.0, 'neighbors': 1.0, 'we': 2.0, 'exactly': 1.0, 'spending': 1.0, 'easy': 1.0, 'needed': 1.0, 'grandparents': 1.0, 'when': 1.0, 'kids': 1.0, 'camping': 1.0, 'happy': 1.0, 'portable': 1.0, 'tight': 1.0, 'bed': 1.0, 'for': 2.0, 'is': 2.0, 'traveling': 1.0, 'ones': 1.0, 'the': 4.0, 'night': 2.0, 'at': 2.0, 'friends': 2.0, 'perfectly': 1.0, 'and': 2.0, 'pump': 1.0, 'sleepovers': 1.0}
Word element => {'small': 1.0, 'pack': 1.0, 'crib': 1.0, 'portable': 1.0, 'big': 2.0, 'is': 1.0, 'who': 1.0, 'child': 1.0, 'own': 1.0, 'its': 1.0, 'would': 1.0, 'at': 1.0, 'thought': 1.0, 'than': 1.0, 'use': 1.0, 'travel': 1.0, 'and': 1.0, 'backpack': 1.0, 'fast': 1.0, 'perfect': 1.0, 'in': 1.0, 'the': 1.0, 'more': 1.0, 'stays': 1.0, 'inflates': 1.0, 'for': 4.0, 'bed': 2.0, 'play': 1.0, 'we': 3.0, 'etc': 1.0, 'grandma': 1.0, 's': 2.0, 'a': 2.0, 'well': 1.0, 'but': 1.0, 'house': 1.0, 'n': 1.0, 'this': 1.0, 'it': 2.0, 'too': 2.0, 'travels': 1.0}
Word element => {'much': 1.0, 'so': 1.0, 'thanks': 1.0, 'them': 1.0, 'i': 1.0, 'worked': 1.0, 'these': 1.0, 'they': 1.0, 'that': 1.0, 'project': 1.0, 'came': 1.0, 'mind': 1.0, 'quickly': 1.0, 'very': 1.0, 'and': 1.0, 'the': 1.0, 'truly': 1.0, 'goggles': 1.0, 'perfectly': 1.0, 'in': 1.0, 'had': 1.0, 'for': 2.0}
Word element => {'the': 1.0, 'definately': 1.0, 'easily': 1.0, 'to': 1.0, 'reducer': 1.0, 'easy': 1.0, 'regular': 1.0, 'seat': 2.0, 'booster': 1.0, 'a': 2.0, 'young': 1.0, 'for': 2.0, 'grow': 1.0, 'assemble': 1.0, 'pleased': 1.0, 'clean': 1.0, 'decor': 1.0, 'we': 1.0, 'design': 1.0, 'wipes': 1.0, 'chair': 2.0, 'need': 1.0, 'nice': 1.0, 'or': 1.0, 'compliments': 1.0, 'until': 1.0, 'high': 1.0, 'very': 1.0, 'and': 2.0, 'that': 1.0, 'our': 1.0, 'ready': 1.0, 'will': 1.0, 'baby': 2.0, 'so': 1.0, 'modern': 1.0, 'can': 1.0, 'he': 1.0, 'this': 1.0, 'with': 2.0, 'it': 1.0, 'use': 1.0}
Word element => {'stove': 1.0, 'wood': 1.0, 'pieces': 1.0, 'additional': 1.0, 'brackets': 1.0, 'to': 3.0, 'had': 2.0, 'was': 1.0, 'fact': 1.0, 'but': 2.0, 'will': 1.0, 'very': 1.0, 'and': 1.0, 'probably': 1.0, 'away': 1.0, 'buy': 1.0, 'that': 1.0, 'given': 1.0, 'it': 2.0, 'this': 1.0, 'quick': 1.0, 'if': 1.0, 'keep': 1.0, 'price': 1.0, 'something': 1.0, 'would': 2.0, 'except': 1.0, '5': 1.0, 'for': 1.0, 'expensive': 1.0, 'stars': 1.0, 'two': 1.0, 'i': 4.0, 'otherwise': 1.0, 'have': 2.0, 'from': 1.0, 'fix': 1.0, 'built': 1.0, 'wall': 1.0, 'instead': 1.0, 'attach': 1.0, 'be': 1.0, 'time': 1.0, 'bit': 1.0, 'the': 5.0, 'heavier': 1.0, 'a': 2.0, 'could': 1.0, 'todlers': 1.0}
Word element => {'yet': 1.0, 'old': 1.0, 'month': 1.0, 'good': 1.0, 'otherwise': 1.0, 'looking': 1.0, 'size': 1.0, 'in': 1.0, 'could': 1.0, 'the': 1.0, 'nice': 1.0, 'would': 1.0, 'strong': 1.0, 'difficult': 1.0, 'fence': 1.0, 'fitting': 1.0, 'if': 1.0, 'problem': 1.0, 'very': 1.0, 'any': 1.0, 'my': 2.0, 'make': 1.0, 'easy': 1.0, 'to': 3.0, 'be': 2.0, 'product': 2.0, 'a': 2.0, 'changed': 1.0, 'is': 3.0, 'only': 1.0, 'with': 1.0, 'this': 3.0, 'it': 2.0, 'defeat': 1.0, 'that': 2.0, 'has': 1.0, '16': 1.0, 'they': 1.0, 'dont': 1.0, 'custom': 1.0, 'include': 1.0, '8': 1.0, 'inch': 1.0, 'use': 1.0, 'sections': 2.0}
Word element => {'mind': 1.0, 'piece': 1.0, 'left': 1.0, 'when': 1.0, 'down': 1.0, 'take': 1.0, 'easily': 1.0, 'could': 1.0, 'once': 1.0, 'product': 1.0, 'be': 1.0, 'easy': 1.0, 'very': 1.0, 'children': 1.0, 'it': 2.0, 'without': 1.0, 'of': 2.0, 'good': 1.0, 'job': 1.0, 'around': 1.0, 'to': 3.0, 'its': 1.0, 'we': 1.0, 'hang': 1.0, 'get': 1.0, 'great': 1.0, 'the': 3.0, 'way': 1.0, 'wall': 1.0, 'you': 1.0, 'put': 1.0, 'together': 1.0, 'anchored': 1.0, 'did': 1.0, 'a': 2.0, 'that': 1.0, 'our': 1.0, 'woodstove': 1.0, 'having': 1.0}
Word element => {'children': 1.0, 'door': 1.0, 'really': 1.0, 'so': 1.0, 'looks': 1.0, 'it': 5.0, 'with': 1.0, 'i': 2.0, 'is': 1.0, 'around': 1.0, 'there': 1.0, 'like': 1.0, 'using': 1.0, 'young': 2.0, 'parents': 1.0, 'design': 1.0, 'hearth': 1.0, 'wrap': 1.0, 'gate': 2.0, 'the': 1.0, 'great': 1.0, 'are': 1.0, 'you': 1.0, 'only': 1.0, 'extensions': 1.0, 's': 1.0, 'that': 2.0, 'be': 1.0, 'opened': 1.0, 'by': 1.0, 'my': 1.0, 'child': 1.0, 'not': 1.0, 'this': 1.0, 'functional': 1.0, 'can': 2.0, 'but': 1.0, 'also': 1.0, 'cant': 1.0, 'classy': 1.0, 'think': 1.0, 'and': 1.0, 'would': 1.0, 'buy': 1.0, 'definitely': 1.0, 'recommend': 1.0, 'any': 1.0, 'to': 1.0}
Word element => {'cant': 1.0, 'toddler': 1.0, 'gate': 2.0, 'around': 1.0, 'extension': 1.0, 'my': 2.0, 'the': 2.0, 'is': 1.0, 'that': 1.0, 'best': 1.0, 'great': 2.0, 'it': 2.0, 'works': 1.0, 'touch': 1.0, 'so': 1.0, 'woodstove': 1.0}
Word element => {'most': 1.0, 'money': 1.0, 'extra': 1.0, 'spend': 1.0, 's': 1.0, 'cause': 1.0, 'children': 1.0, 'tell': 1.0, 'price': 1.0, 'who': 1.0, 'comes': 1.0, 'once': 1.0, 'will': 2.0, 'way': 1.0, 'comment': 1.0, 'right': 1.0, 'helps': 1.0, 'learn': 1.0, 'protects': 1.0, 'comments': 1.0, 'everyone': 1.0, 'car': 1.0, 'race': 1.0, 'use': 1.0, 'her': 3.0, 'loves': 1.0, 'worth': 1.0, 'now': 1.0, 'move': 1.0, 'belt': 1.0, 't': 1.0, 'didn': 1.0, 'base': 1.0, 'jostle': 1.0, 'husband': 1.0, 'my': 1.0, 'like': 1.0, 'said': 1.0, 'nurse': 1.0, 'installed': 2.0, 'sure': 1.0, 'supposed': 1.0, 'they': 2.0, 'that': 2.0, 'after': 1.0, 'sometimes': 1.0, 'completely': 1.0, 'how': 2.0, 'our': 5.0, 'to': 12.0, 'parkway': 1.0, 'a': 4.0, 'watched': 1.0, 'out': 1.0, 'found': 1.0, 'asleep': 1.0, 'based': 1.0, 'youngest': 3.0, 'test': 1.0, 'properly': 2.0, 'would': 1.0, 'knew': 2.0, 'never': 1.0, 'yes': 2.0, 'we': 12.0, 'reviews': 1.0, 'adjusting': 1.0, 'wear': 1.0, 'it': 15.0, 'inspect': 1.0, 'are': 1.0, 'britax': 2.0, 'recommend': 1.0, 'were': 2.0, 'if': 1.0, 'expecting': 1.0, 'was': 2.0, 'on': 3.0, 'impressed': 3.0, 'grows': 1.0, 'for': 1.0, 'seat': 9.0, 'in': 3.0, 'outgrows': 1.0, 'safety': 3.0, 'got': 2.0, 'stuck': 1.0, 'especially': 3.0, 'had': 2.0, 'when': 6.0, 'what': 1.0, 'regards': 1.0, 'is': 4.0, 'handle': 2.0, 'fortunately': 1.0, 'loved': 3.0, 'moved': 1.0, 'get': 1.0, 'anyone': 1.0, 'and': 11.0, 'purchased': 1.0, 'oldest': 2.0, 'other': 1.0, 'asks': 1.0, 'so': 1.0, 'marathon': 3.0, 'release': 1.0, 'worked': 2.0, 'soundly': 1.0, 'but': 2.0, 'time': 1.0, 'uses': 1.0, 'definitely': 1.0, 'better': 1.0, 'calls': 1.0, 'slept': 1.0, 'i': 2.0, 'ease': 1.0, 'staff': 1.0, 'doing': 1.0, 'the': 29.0, 'of': 1.0, 'head': 3.0, 'multiple': 1.0, 'pumps': 1.0, 'pad': 3.0, 'just': 2.0, 'this': 1.0, 'few': 1.0, 'or': 1.0, 'need': 1.0, 'press': 1.0, 'no': 1.0, 'belly': 1.0, 'booster': 2.0, 'replace': 1.0, 'she': 6.0, 'baby': 1.0, 'has': 1.0, 'them': 3.0, 'really': 2.0, 'make': 1.0, 'nurses': 1.0, 'us': 2.0, 'falls': 1.0, 'as': 1.0, 'heavy': 1.0, 'leave': 1.0, 'hospital': 1.0, 'nursery': 1.0, 'happy': 1.0, 'one': 1.0, 'with': 1.0, 'inspection': 1.0, 'valve': 1.0, 'kept': 1.0, 'calling': 1.0, 'over': 1.0, 'show': 1.0, 'showed': 1.0}
Word element => {'old': 1.0, 'him': 1.0, 'keep': 1.0, 'could': 1.0, 'so': 1.0, 'fast': 1.0, 'grew': 1.0, 'once': 1.0, 'sweaty': 1.0, 'bit': 1.0, 'months': 3.0, 'warmed': 1.0, 'about': 1.0, 'for': 1.0, 'in': 3.0, 'seemed': 1.0, 'the': 1.0, 'great': 1.0, 'up': 1.0, '6': 2.0, 'seat': 1.0, 'a': 2.0, 'car': 1.0, 'my': 1.0, 'happy': 1.0, 'only': 1.0, 'it': 4.0, 'he': 3.0, 'this': 1.0, 'outside': 1.0, 'son': 1.0, 'quite': 1.0, 'we': 1.0, 'during': 1.0, 'till': 1.0, 'winter': 1.0, 'was': 3.0, 'to': 1.0, 'get': 1.0}
Word element => {'of': 1.0, 'point': 1.0, 'buy': 1.0, 'want': 1.0, 'don': 1.0, 'but': 1.0, 'adjusts': 1.0, 'so': 1.0, 'protection': 1.0, 'side': 1.0, 'support': 2.0, 'size': 1.0, 'system': 1.0, 'inflatable': 1.0, 'latch': 1.0, 'and': 2.0, 'belt': 1.0, 'longer': 1.0, 'many': 1.0, 'out': 1.0, 'it': 3.0, 'heavy': 1.0, 'first': 2.0, 'the': 5.0, 'testing': 2.0, 'have': 1.0, 'publisher': 1.0, 'no': 1.0, 'two': 1.0, 'i': 3.0, 'ratings': 1.0, 'year': 1.0, 'read': 1.0, 'very': 3.0, 'stood': 1.0, 'in': 2.0, 'is': 3.0, 'cr': 2.0, 'daughter': 1.0, 'impact': 1.0, 'for': 2.0, 'one': 1.0, 'kids': 1.0, 'this': 2.0, 'botched': 1.0, 'before': 1.0, 'with': 2.0, 'buying': 1.0, 'what': 1.0, 'had': 1.0, 'car': 3.0, 'my': 1.0, 'crash': 1.0, 'reviews': 1.0, 'they': 1.0, 'to': 1.0, 'seat': 4.0, 'as': 2.0, 'our': 1.0, 'base': 1.0, 'after': 1.0, 'experience': 1.0, 'that': 1.0, 'been': 1.0, 'flimsy': 1.0, 'three': 1.0, 'head': 2.0, 'positive': 1.0, 'mounted': 1.0, 'has': 2.0, 'well': 1.0, 'good': 1.0, 'different': 2.0, 'cars': 1.0, 't': 1.0, 'a': 2.0, 'could': 1.0, 'we': 1.0}
Word element => {'safety': 1.0, 'tell': 1.0, 'probably': 1.0, 'would': 2.0, 'safe': 1.0, 'less': 1.0, 'makes': 1.0, 'impossible': 1.0, 'nearly': 1.0, 'a': 1.0, 'hardly': 1.0, 's': 1.0, 'for': 2.0, 'on': 1.0, 'straight': 1.0, 'moving': 1.0, 'positioned': 1.0, 'not': 1.0, 'you': 1.0, 'same': 1.0, 'if': 1.0, 'most': 1.0, 'handle': 3.0, 'look': 1.0, 'simultaneously': 1.0, 'buttons': 2.0, 'be': 1.0, 'trying': 1.0, 'engage': 2.0, 'have': 2.0, 'annoying': 1.0, 'it': 7.0, 'this': 2.0, 'with': 2.0, 'children': 1.0, 'hard': 1.0, 'head': 1.0, 'out': 1.0, 'appreciate': 1.0, 'really': 1.0, 'is': 3.0, 'comes': 1.0, 'all': 1.0, 'seat': 2.0, 'to': 5.0, 'its': 1.0, 'and': 2.0, 'getting': 1.0, 'car': 2.0, 're': 1.0, 'knowing': 1.0, 'friend': 1.0, 'pillow': 1.0, 'another': 1.0, 'my': 2.0, 'baby': 1.0, 'safer': 1.0, 'ever': 1.0, 'day': 2.0, 'in': 2.0, 'three': 1.0, 'that': 2.0, 'been': 1.0, 'of': 3.0, 'under': 1.0, 'ratings': 1.0, 'otherwise': 1.0, 'i': 6.0, 'pounds': 1.0, 'move': 2.0, 'born': 1.0, 'however': 1.0, 'than': 1.0, 'because': 2.0, 'find': 1.0, 'thing': 1.0, 'difficulties': 1.0, 'the': 10.0, 'myself': 1.0, 'which': 1.0, 'like': 1.0, 'frustrated': 1.0, 'use': 1.0, 'by': 2.0, 'base': 1.0, '6': 1.0, 'how': 1.0}
Word element => {'this': 1.0, 'considering': 1.0, 'anyone': 1.0, 'to': 1.0, 'money': 1.0, 'great': 1.0, 'the': 3.0, 'support': 1.0, 'my': 1.0, 'well': 1.0, 'securely': 1.0, 'car': 2.0, 'worth': 1.0, 'offers': 1.0, 'britax': 1.0, 'i': 1.0, 'head': 1.0, 'is': 1.0, 'seat': 3.0, 'recommend': 1.0, 'and': 2.0, 'holds': 1.0, 'satisfied': 1.0, 'child': 1.0, 'am': 1.0, 'extremely': 1.0, 'would': 1.0}
Word element => {'will': 1.0, 'next': 1.0, 's': 1.0, 'your': 1.0, 'would': 1.0, 'child': 1.0, 'price': 1.0, 'pricey': 1.0, 'market': 1.0, 'best': 1.0, 'one': 1.0, 'weighs': 1.0, 'put': 1.0, 'much': 1.0, 'how': 1.0, 'than': 1.0, 'important': 1.0, 'more': 1.0, 'heavy': 1.0, 'rather': 1.0, 'mentioned': 1.0, 'case': 1.0, 'for': 2.0, 'love': 1.0, 'reassuring': 1.0, 'already': 1.0, 'true': 1.0, 'head': 1.0, 'a': 9.0, 'we': 1.0, 'locked': 1.0, 'go': 2.0, 'minutes': 1.0, 'belt': 1.0, 'out': 1.0, 'impact': 1.0, 'time': 1.0, 'every': 1.0, 'material': 1.0, 'daughter': 1.0, 'pull': 1.0, 'reviewer': 1.0, 'her': 1.0, 'hearing': 1.0, 'within': 1.0, 'be': 2.0, 'support': 1.0, 'car': 3.0, 'i': 2.0, 'there': 2.0, 'britax': 2.0, 'are': 1.0, 'strap': 1.0, 'in': 4.0, 'seat': 9.0, 'to': 5.0, 'comfortable': 1.0, 'great': 1.0, 'little': 1.0, 'nice': 1.0, 'very': 3.0, 'of': 4.0, 'the': 16.0, 'this': 2.0, 'with': 6.0, 'different': 1.0, 'researching': 1.0, 'accident': 1.0, 'is': 12.0, 'after': 2.0, 'base': 2.0, 'tighten': 1.0, 'click': 1.0, 'side': 1.0, 'asleep': 1.0, 'which': 1.0, 'however': 1.0, 'easy': 1.0, 'know': 1.0, 'my': 2.0, 'me': 3.0, 'and': 2.0, 'that': 1.0, 'easily': 1.0, 'what': 1.0, 'when': 1.0, 'washable': 1.0, 'up': 1.0, 'straps': 2.0, 'on': 3.0, 'point': 1.0, 'harness': 1.0, 'adjust': 1.0, 'seats': 2.0, 'just': 1.0, 'button': 1.0, 'so': 1.0, 'can': 2.0, 'but': 2.0, 'loosen': 1.0, 'or': 1.0, 'safety': 2.0, 'latch': 1.0, 'let': 1.0, 'she': 2.0, 'many': 2.0, 'baby': 1.0, 'five': 1.0, 'set': 1.0, 'decided': 1.0, 'used': 1.0, 'also': 1.0, 'hooked': 1.0, 'protection': 1.0, 'onto': 1.0, 'push': 1.0, 'things': 1.0, 'you': 2.0, 'loud': 1.0, 'unlike': 1.0, 'an': 1.0, 'other': 1.0}
Word element => {'time': 1.0, 'recommend': 1.0, 'smarts': 1.0, 'it': 2.0, 'this': 2.0, 'ankles': 1.0, 'in': 1.0, 'cherrio': 1.0, 'also': 1.0, 'however': 1.0, 'warn': 1.0, 'would': 1.0, 'house': 1.0, 'moves': 1.0, 'have': 2.0, 'do': 1.0, 'and': 1.0, 'don': 1.0, 'over': 1.0, 'my': 1.0, 'watch': 1.0, 'high': 1.0, 'the': 3.0, 'great': 1.0, 'grandson': 1.0, 'chair': 1.0, 'walker': 1.0, 'your': 1.0, 'i': 5.0, 'product': 1.0, 'him': 1.0, 'be': 1.0, 'like': 1.0, 'that': 1.0, 'activity': 1.0, 'but': 1.0, 'can': 1.0, 'removed': 1.0, 'give': 1.0, 'them': 1.0, 'you': 1.0, 'what': 1.0, 'use': 1.0, 'to': 2.0, 'all': 2.0, 'center': 1.0, 'as': 1.0, 't': 1.0, 's': 1.0, 'a': 1.0, 'since': 1.0}
Word element => {'let': 1.0, 'get': 1.0, 'buy': 1.0, 'you': 2.0, 'if': 1.0, 'don': 1.0, 'sound': 1.0, 'and': 5.0, 'me': 1.0, 'worst': 1.0, 'is': 3.0, 'said': 1.0, 'itself': 1.0, 'have': 1.0, 'walker': 1.0, 'friend': 1.0, '6': 1.0, 'wonderful': 1.0, 'this': 1.0, 'month': 1.0, 'it': 4.0, 'light': 1.0, 'just': 2.0, 'down': 1.0, 'stand': 1.0, 'the': 6.0, 'music': 1.0, 'can': 1.0, 'but': 1.0, '2': 1.0, 'a': 1.0, 't': 2.0, 'my': 2.0, 'daughter': 2.0, 'gave': 1.0, 'lights': 1.0, 'for': 2.0, 'die': 1.0, 'now': 1.0, 'non': 1.0, 'old': 1.0, 'feature': 1.0, 'i': 1.0, 'to': 1.0, 'as': 1.0, 'others': 1.0, 'dies': 1.0, 'months': 1.0, 'will': 1.0, 'sounds': 1.0, 'replacable': 1.0, 'after': 1.0, 'battery': 1.0, 'about': 1.0, 'loved': 1.0, 'they': 2.0, 'warble': 1.0}
Word element => {'stored': 1.0, 'that': 2.0, 'smaller': 1.0, 'for': 1.0, 'low': 1.0, 'heights': 1.0, 'into': 1.0, 'off': 1.0, 'there': 1.0, 'best': 1.0, 'so': 2.0, 'comes': 1.0, 'easily': 1.0, 'snap': 1.0, 'like': 2.0, 'walker': 1.0, 'babies': 1.0, 'thing': 1.0, 'i': 2.0, 'overall': 1.0, 'collapses': 1.0, 'tray': 1.0, 'is': 4.0, 'which': 1.0, 'toy': 1.0, 'about': 1.0, 'this': 1.0, 'eating': 1.0, 'it': 4.0, 't': 1.0, 'the': 2.0, 'adjustable': 1.0, 'an': 1.0, 'but': 1.0, 'doesn': 1.0}
Word element => {'begining': 1.0, 'from': 1.0, 'at': 1.0, 'the': 1.0, 't': 1.0, 'something': 1.0, 'try': 1.0, 'lights': 1.0, 'to': 1.0, 'alright': 1.0, 'on': 1.0, 'ride': 1.0, 'is': 3.0, 'short': 1.0, 'product': 1.0, 'will': 1.0, 'but': 2.0, 'than': 1.0, 'not': 1.0, 'just': 1.0, 'working': 1.0, 'chaper': 1.0, 'too': 1.0, 'all': 1.0, 'itself': 1.0, 'definitely': 1.0, 'walker': 1.0, 'with': 1.0, 'nicer': 1.0, 'this': 2.0, 'it': 4.0, 'cheap': 2.0, 'are': 2.0, 'if': 2.0, 'looking': 2.0, 'other': 1.0, 'simple': 1.0, 'you': 2.0, 'what': 1.0, 'for': 3.0, 'isn': 1.0, 'time': 1.0, 'your': 1.0, 'any': 1.0, 'baby': 1.0}
Word element => {'still': 1.0, 'minimum': 1.0, 'was': 2.0, 'advertise': 1.0, 'needs': 1.0, 'saying': 1.0, 'disappointed': 1.0, 'this': 1.0, 'older': 1.0, 'with': 2.0, 'lowest': 1.0, 'he': 1.0, '6': 1.0, 'my': 1.0, 'the': 2.0, 'adjustment': 1.0, 'it': 2.0, 'month': 1.0, 'floor': 1.0, 'old': 1.0, 'about': 1.0, 'height': 2.0, 'put': 1.0, 'on': 1.0, 'months': 1.0, 'is': 1.0, 'definitely': 1.0, 'together': 1.0, 'reaching': 1.0, 'from': 1.0, 'very': 1.0, 'to': 1.0, 'as': 1.0, 't': 1.0, 'a': 1.0, 'rather': 1.0, 'than': 1.0, 'product': 1.0, 'for': 1.0, 'i': 1.0, '4': 1.0, 'watching': 1.0, 'glee': 1.0, 'but': 1.0, '2': 1.0, 'can': 1.0, 'and': 1.0, 'play': 1.0}
Word element => {'attached': 1.0, 'play': 1.0, 'sit': 1.0, 'yet': 1.0, 'will': 1.0, 'but': 1.0, 'forward': 1.0, 'week': 1.0, 'received': 1.0, 'a': 1.0, 'within': 1.0, 'quickly': 1.0, 'bought': 1.0, 'product': 1.0, 'still': 1.0, 'loves': 1.0, 'the': 1.0, 't': 1.0, 'and': 3.0, 'with': 1.0, 'this': 1.0, 'it': 2.0, 'i': 1.0, 'walk': 1.0, 'installation': 1.0, 'my': 1.0, 'to': 1.0, 'granddaughter': 1.0, 'learn': 1.0, 'easy': 1.0, 'she': 1.0, 'toys': 1.0, 'haven': 1.0, 'how': 1.0}
Word element => {'top': 1.0, 'over': 1.0, 'on': 1.0, 'a': 1.0, 'them': 1.0, 'isnt': 1.0, 'nervous': 1.0, 'what': 1.0, 'walker': 2.0, 'was': 1.0, 'works': 1.0, 'its': 1.0, 'i': 3.0, 'old': 1.0, 'when': 1.0, 'kind': 1.0, 'son': 1.0, 'little': 1.0, 'read': 1.0, 'are': 1.0, 'reviews': 1.0, 'the': 5.0, 'of': 3.0, 'some': 1.0, 'item': 1.0, '7': 1.0, 'this': 1.0, 'loud': 1.0, 'other': 1.0, 'too': 1.0, 'and': 2.0, 'my': 1.0, 'it': 3.0, 'month': 1.0, 'loves': 1.0, 'most': 1.0, 'can': 1.0, 'music': 1.0, 'just': 2.0, 'fine': 2.0, 'around': 1.0, 'is': 2.0, 'he': 1.0, 'walk': 1.0, 'in': 1.0, 'like': 1.0, 'which': 1.0, 'for': 1.0}
Word element => {'toy': 1.0, 'for': 1.0, 'companies': 1.0, 'buy': 1.0, 'elsewhere': 1.0, 'to': 1.0, 'so': 1.0, 'here': 1.0, 'in': 2.0, 'doesn': 1.0, 'way': 1.0, 'by': 1.0, 'remorse': 1.0, 'upper': 1.0, 'son': 1.0, 'serious': 1.0, 'or': 1.0, 'place': 1.0, 'the': 7.0, 'and': 1.0, 'play': 2.0, 'surfaces': 1.0, 'roll': 1.0, 'this': 1.0, 'quality': 1.0, 'baby': 1.0, 'have': 1.0, 'battery': 1.0, 'thing': 1.0, 'look': 1.0, 'thank': 1.0, 'crapped': 1.0, 'is': 2.0, 'go': 1.0, 't': 1.0, 'we': 2.0, 'a': 3.0, 'piece': 2.0, 'crap': 1.0, 'over': 1.0, 'on': 1.0, 'shower': 1.0, 'of': 3.0, 'i': 1.0, 'junk': 1.0, 'it': 2.0, 'month': 1.0, 'would': 1.0, 'at': 1.0, 'my': 1.0, 'god': 1.0, 'much': 1.0, 'do': 1.0, 'got': 1.0, 'most': 1.0, 'use': 1.0, 'wheels': 1.0, 'batteries': 1.0, 'buyers': 1.0, 'uneven': 1.0, 'not': 1.0, 'you': 1.0, 'soldered': 1.0, 'easily': 1.0, 'need': 1.0, 'toys': 1.0, 'part': 1.0, 'are': 1.0, 'rudimentary': 1.0, 'importantly': 1.0, 'out': 1.0, 'after': 1.0, 'one': 1.0}
Word element => {'highly': 1.0, 'apparent': 1.0, 'child': 1.0, 'feed': 1.0, 'want': 1.0, 'recommend': 1.0, 'was': 2.0, 'to': 2.0, 'is': 1.0, 'comes': 1.0, 'bit': 1.0, 'tested': 1.0, 'young': 1.0, 'love': 1.0, 'for': 2.0, 'i': 4.0, 'just': 2.0, 'but': 1.0, 'be': 1.0, 'delightful': 1.0, 'thought': 1.0, 'purchased': 1.0, 'we': 1.0, 'a': 1.0, 'might': 1.0, 'carefully': 1.0, 'perfect': 1.0, 'this': 4.0, 'item': 3.0, 'my': 1.0, 'it': 3.0, 'month': 1.0, 'there': 1.0, 'grand': 1.0, 'he': 2.0, '6': 1.0, 'how': 1.0, 'amazed': 1.0, 'nephew': 1.0, 'loves': 1.0, 'off': 1.0, 'the': 4.0, 'very': 1.0, 'little': 1.0, 'activity': 1.0, 'toys': 1.0, 'much': 1.0, 'nursery': 1.0, 'rhymes': 1.0, 'with': 1.0, 'piece': 1.0, 'are': 2.0, 'too': 1.0, 'play': 1.0, 'and': 1.0, 'many': 1.0, 'toy': 1.0, 'you': 1.0, 'when': 1.0, 'am': 1.0, 'easily': 1.0}
Word element => {'that': 1.0, 'replaced': 1.0, 'be': 1.0, 'not': 1.0, 'can': 1.0, 'part': 1.0, 'and': 1.0, 'grass': 1.0, 'also': 1.0, 'in': 2.0, 'carpet': 1.0, 'dies': 1.0, 'sounds': 1.0, 'on': 1.0, 'lights': 1.0, 'to': 1.0, 'baby': 1.0, 'floors': 1.0, 'once': 1.0, 'some': 1.0, 'of': 2.0, 'have': 1.0, 'other': 1.0, 'or': 2.0, 'move': 1.0, 'if': 1.0, 'activity': 1.0, 'wood': 1.0, 'walker': 2.0, 's': 1.0, 'you': 1.0, 'is': 1.0, 'great': 1.0, 'the': 7.0, 'make': 1.0, 'kind': 1.0, 'smooth': 1.0, 'so': 1.0, 'small': 1.0, 'surface': 1.0, 'but': 1.0, 'batteries': 1.0, 'wheels': 1.0, 'it': 4.0, 'hard': 1.0, 'for': 1.0}
Word element => {'comfortable': 1.0, 'baby': 1.0, 'clean': 1.0, 'her': 2.0, 'feed': 1.0, 'because': 1.0, 'ball': 1.0, 'spin': 1.0, 'toys': 1.0, 'carpet': 1.0, 'move': 1.0, 'easy': 1.0, 'get': 1.0, 'is': 3.0, 'daughter': 1.0, 'little': 1.0, 'very': 1.0, 'moves': 1.0, 'she': 2.0, 'it': 2.0, 'walker': 1.0, 'this': 1.0, 'love': 2.0, 'disappointed': 1.0, 'apart': 1.0, 'orange': 1.0, 'the': 11.0, 'replace': 1.0, 'cut': 1.0, 'came': 2.0, 'motherboard': 1.0, 'songs': 1.0, 'would': 1.0, 'after': 2.0, 'so': 1.0, 'yellow': 1.0, 'was': 4.0, 'seat': 1.0, 'to': 7.0, 'how': 1.0, 'tray': 1.0, 'months': 1.0, 'strong': 1.0, '3': 1.0, 'on': 2.0, 'loves': 1.0, 'that': 4.0, 'i': 8.0, 'here': 2.0, 'then': 1.0, 'took': 1.0, 'through': 1.0, 'a': 1.0, 'only': 1.0, 'wheel': 2.0, 'whew': 1.0, 'write': 1.0, 'forever': 1.0, 'enough': 1.0, 'off': 1.0, 'well': 1.0, 'review': 1.0, 'half': 1.0, 'sit': 1.0, 'way': 2.0, 'now': 1.0, 'steering': 2.0, 'and': 5.0, 'conclusion': 1.0, 'there': 2.0, 'reading': 1.0, 'about': 1.0, 'no': 1.0, 'also': 3.0, 'will': 1.0, 'batteries': 2.0, 'food': 1.0, 'removable': 1.0, 'but': 1.0, 'inside': 1.0, 'other': 2.0, 'reviews': 1.0, 'able': 1.0, 'originally': 1.0, 'pissed': 1.0, 'locate': 1.0, 'my': 1.0, 'underneath': 1.0}
Word element => {'that': 1.0, 'than': 1.0, 'other': 1.0, 'places': 1.0, 'which': 1.0, 'keep': 1.0, 'me': 2.0, 'many': 1.0, 'take': 1.0, 'transporting': 1.0, 'down': 1.0, 'lock': 1.0, 'had': 1.0, 'the': 2.0, 'easy': 1.0, 'control': 1.0, 'learns': 1.0, 'baby': 1.0, 'sideways': 1.0, 'don': 2.0, 'too': 1.0, 'and': 4.0, 'ease': 1.0, 'it': 10.0, 'wish': 1.0, 'this': 2.0, 'with': 2.0, 'turn': 1.0, 'in': 1.0, 'its': 1.0, 'do': 1.0, 'much': 1.0, 'why': 1.0, 'manuvering': 1.0, 'move': 1.0, 'he': 2.0, 'how': 3.0, 'walker': 3.0, 'when': 1.0, 'you': 1.0, 'toes': 1.0, 'part': 1.0, 'while': 1.0, 'requires': 1.0, 'my': 1.0, 'now': 1.0, 'was': 1.0, 'seat': 1.0, 'to': 5.0, 'son': 1.0, 'so': 1.0, 'once': 1.0, 'of': 1.0, 'simple': 1.0, 'forth': 1.0, 'takes': 1.0, 'great': 2.0, 'before': 1.0, 'realized': 1.0, 'is': 2.0, 'off': 1.0, 'your': 2.0, 'shut': 1.0, 'if': 1.0, 'lol': 1.0, 'just': 1.0, 'kidding': 1.0, 'but': 1.0, 'back': 1.0, 's': 2.0, 'go': 1.0, 'could': 1.0, 't': 2.0, 'a': 2.0, 'i': 3.0, 'afraid': 1.0, 'love': 1.0, 'for': 2.0, 'darling': 1.0, 'goes': 1.0, 'some': 1.0}
Word element => {'use': 1.0, 'before': 1.0, 'everything': 1.0, 'sure': 1.0, 'just': 1.0, 'laws': 1.0, 'out': 1.0, 'only': 1.0, 'anyways': 1.0, 'more': 1.0, 'are': 1.0, 'balls': 1.0, 'loves': 1.0, 'care': 1.0, 'doesn': 1.0, 'now': 1.0, 'faulty': 1.0, 'soundmaker': 1.0, 'if': 1.0, 'still': 1.0, 'passed': 1.0, 'little': 2.0, 'item': 1.0, 'our': 2.0, 'with': 1.0, 'price': 1.0, 'c': 1.0, 'years': 1.0, 'back': 3.0, 'making': 1.0, 'one': 1.0, 'lot': 1.0, '1st': 1.0, 'bringing': 1.0, 'is': 2.0, 'at': 1.0, 'them': 1.0, 'has': 2.0, 'easier': 1.0, 'in': 4.0, 'brother': 1.0, 'such': 1.0, 'for': 3.0, 'motions': 1.0, 'clicks': 1.0, 'room': 1.0, 'enough': 1.0, 'strong': 1.0, 'taking': 1.0, '3': 1.0, 'best': 1.0, 'explore': 1.0, 'leg': 1.0, 'me': 2.0, 'my': 4.0, 'owns': 1.0, 'sister': 2.0, 'love': 1.0, 'nephew': 2.0, 'yet': 1.0, 'he': 4.0, 'walk': 1.0, 'pleasant': 1.0, 'this': 4.0, 'of': 2.0, 'the': 8.0, 'place': 2.0, 'likes': 1.0, 't': 3.0, 's': 1.0, 'a': 3.0, 'often': 1.0, 'month': 1.0, 'as': 1.0, 'annoying': 1.0, 'and': 10.0, 'getting': 1.0, 'cleaning': 1.0, 'up': 1.0, 'ice': 1.0, '7': 1.0, 'to': 4.0, 'brand': 1.0, 'by': 1.0, 'variety': 1.0, 'safety': 1.0, 'got': 1.0, 'it': 5.0, 'already': 1.0, 'wants': 1.0, 'amazon': 1.0, 'was': 1.0, 'make': 1.0, 'sound': 1.0, 'over': 1.0, 'toys': 1.0, 'wanted': 1.0, 'each': 1.0, 'wait': 1.0, 'cream': 1.0, 'be': 1.0, 'walker': 2.0, 'reminds': 1.0, 'other': 1.0, 'all': 1.0, 'an': 1.0, 'baby': 1.0, 'truck': 1.0, 'whimsical': 1.0, 'player': 1.0, 'piece': 1.0, 'you': 1.0, 'things': 1.0, 'detaches': 1.0, 'on': 1.0, 'update': 1.0, 'from': 2.0, 'tabletop': 1.0, 'law': 1.0, 'puttering': 1.0, 'putting': 1.0, 'i': 3.0, 'fast': 1.0, 'great': 1.0, 'sort': 1.0, 'when': 1.0, 'but': 3.0, 'enjoys': 1.0, 'own': 1.0, 'b': 1.0, 'until': 1.0, 'caution': 1.0, 'where': 1.0, 'fully': 1.0, 'spinning': 1.0, 'grasps': 1.0, 'music': 2.0, 'around': 1.0, 'can': 3.0, 'so': 1.0, 'forward': 1.0}
Word element => {'touch': 1.0, 'speedy': 1.0, 'enough': 1.0, 'named': 1.0, 'has': 1.0, 'look': 1.0, 'fine': 1.0, 'touches': 1.0, 'graco': 2.0, 'same': 1.0, 'have': 2.0, 'style': 1.0, 'gift': 1.0, 'just': 2.0, 'says': 1.0, 'loves': 1.0, 'been': 1.0, 'babies': 1.0, 'tall': 1.0, 'and': 5.0, '1': 1.0, 'son': 3.0, 'all': 1.0, 'as': 2.0, 'walkers': 1.0, 'at': 1.0, 'wish': 1.0, 'this': 3.0, 'it': 5.0, '6': 1.0, 'he': 3.0, 'with': 3.0, 'i': 5.0, 'now': 3.0, 'was': 1.0, 'is': 5.0, 'a': 2.0, '26': 1.0, 'problem': 2.0, 'given': 1.0, 'love': 1.0, 'for': 3.0, 'product': 2.0, 'one': 1.0, 'months': 1.0, 'bought': 1.0, 'floor': 2.0, '4month': 1.0, 'reach': 1.0, 'the': 8.0, '5months': 1.0, 'very': 1.0, 'inches': 1.0, 'another': 1.0, 'my': 3.0, 'g': 1.0, 'long': 1.0, 'sturdy': 1.0, 'his': 1.0, 'but': 1.0, '2': 1.0, 'can': 2.0, 'tippy': 1.0, 'toes': 1.0, 'ground': 1.0, 'first': 1.0, 'walker': 2.0, 'in': 1.0, 'olds': 1.0, 'safety': 1.0, 'are': 1.0, 'like': 1.0}
Word element => {'baby': 1.0, 'happier': 1.0, 'be': 1.0, 'love': 1.0, 'it': 3.0, 'loves': 1.0, 't': 1.0, 'on': 1.0, 'time': 1.0, 'couldn': 1.0, 'in': 1.0, 'good': 1.0, 'arrived': 1.0, 'condition': 1.0, 'and': 1.0}
Word element => {'value': 1.0, 'the': 1.0, 'great': 1.0, 'baby': 1.0, 'money': 1.0, 'of': 1.0, 'have': 1.0, 'dont': 1.0, 'spend': 1.0, 'like': 1.0, 'are': 1.0, 'you': 1.0, 'if': 1.0, 'is': 1.0, 'really': 1.0, 'activity': 1.0, 'me': 1.0, 'and': 3.0, 'need': 1.0, 'sound': 1.0, 'walkeri': 1.0, 'didnt': 1.0, 'happy': 1.0, 'walker': 1.0, '1st': 1.0, 'safety': 1.0, 'for': 1.0, 'was': 1.0, 'lights': 1.0, 'to': 2.0, 'loves': 1.0, 'pay': 1.0, 'alot': 1.0, 'a': 2.0, 'fortune': 1.0, 'with': 1.0, 'n': 1.0, 'this': 2.0, 'it': 2.0, 'so': 1.0}
Word element => {'has': 1.0, 'never': 1.0, 'kids': 1.0, 'us': 1.0, 'gave': 1.0, 'who': 1.0, 'hope': 1.0, 'i': 1.0, 'gift': 1.0, 'be': 1.0, 'and': 1.0, 'risk': 1.0, 'so': 1.0, 'cheaply': 1.0, 'made': 1.0, 'due': 1.0, 't': 1.0, 'the': 2.0, 'are': 1.0, 'height': 1.0, 'walkers': 1.0, 'is': 1.0, 'person': 1.0, 'tip': 1.0, 'injury': 1.0, 's': 1.0, 'a': 3.0, 'well': 1.0, 'period': 1.0, 'shouldn': 1.0, 'this': 2.0, 'it': 2.0, 'firstly': 1.0, 'as': 1.0, 'total': 1.0, 'huge': 1.0, 'used': 1.0, 'hazard': 1.0, 'was': 1.0, 'to': 2.0, 'head': 1.0, 'secondly': 1.0}
Word element => {'think': 1.0, '1st': 1.0, 'safety': 1.0, 'from': 1.0, 'what': 1.0, 'visit': 1.0, 'months': 1.0, 'daughter': 1.0, 'when': 1.0, '10': 1.0, 'nice': 2.0, 'is': 4.0, 'buying': 1.0, 'i': 4.0, 'old': 1.0, 'walker': 3.0, 'read': 1.0, 'purchase': 1.0, 'family': 1.0, 'my': 2.0, 'the': 4.0, 'reviews': 2.0, 'are': 1.0, 'before': 1.0, 'this': 4.0, 'justice': 1.0, 'she': 1.0, 'it': 4.0, 'her': 1.0, 'good': 2.0, 'loves': 1.0, 'no': 1.0, 'some': 1.0, 'of': 1.0, 'give': 1.0, 'and': 3.0, 'play': 1.0, 'colors': 1.0, 'storage': 1.0, 'bright': 1.0, 'for': 1.0, 'expected': 1.0, 'likes': 1.0, 'use': 1.0, 'to': 5.0, 'as': 1.0, 'easy': 1.0, 'folds': 1.0, 'flat': 1.0, 'in': 1.0, 'music': 1.0, 'can': 1.0, 'take': 1.0, 'car': 1.0, 'a': 1.0, 'we': 1.0, 'go': 1.0}
Word element => {'with': 1.0, 'to': 1.0, 've': 2.0, 'item': 1.0, 'i': 1.0, 'or': 1.0, 'wrong': 1.0, 'money': 1.0, 'done': 1.0, 'and': 2.0, 'me': 3.0, 'what': 1.0, 'even': 1.0, 'sent': 1.0, 'deal': 1.0, 'chasing': 1.0, 'months': 1.0, 'the': 1.0, 'my': 1.0, 'been': 1.0, 'give': 1.0, 'contact': 1.0, 'they': 3.0, 'them': 1.0, 'for': 1.0, '3': 1.0, 'wont': 1.0, 'back': 1.0}
Word element => {'disappear': 1.0, 'other': 1.0, 'of': 1.0, 'instead': 1.0, 'again': 1.0, 'pushed': 1.0, 'button': 1.0, 'until': 1.0, 'off': 1.0, 'chip': 1.0, 'asic': 1.0, 'timer': 1.0, 'like': 1.0, 'six': 1.0, 'touch': 1.0, 'feet': 1.0, 'negative': 1.0, 'her': 1.0, 'height': 1.0, 'overall': 1.0, 'to': 1.0, 'side': 1.0, 'will': 2.0, 'hour': 1.0, 'a': 5.0, 's': 3.0, 'an': 1.0, 'yet': 1.0, 'in': 2.0, 'at': 2.0, 'lower': 1.0, 'some': 1.0, 'about': 1.0, 'thing': 1.0, 'suggestion': 1.0, 'sit': 1.0, 'half': 1.0, 'likes': 1.0, 'have': 1.0, 'pvc': 1.0, 'runners': 1.0, 'this': 1.0, 'backwards': 1.0, 'loves': 1.0, 'my': 1.0, 'grandbaby': 1.0, 'propelling': 1.0, 'and': 5.0, 'sound': 1.0, 'up': 1.0, '6': 1.0, 'it': 3.0, 'she': 5.0, 'bunch': 1.0, 'sits': 1.0, 'turns': 1.0, 'pro': 1.0, 'the': 9.0, 'is': 2.0, 'one': 1.0, 'months': 2.0, 'put': 2.0, 'on': 3.0, 'pipe': 1.0, 'light': 1.0, 'just': 1.0, 'not': 1.0, 'music': 1.0, 'but': 1.0, 'can': 1.0, 'comments': 1.0, 'switch': 1.0, 'pushing': 1.0, 'buttons': 1.0, 'where': 1.0, 'for': 2.0, 'lights': 1.0, 'each': 1.0, 'short': 1.0, 'time': 1.0, 'bit': 1.0, 'so': 2.0, 'i': 1.0}
Word element => {'potentially': 1.0, 'sound': 1.0, 'off': 1.0, 'dismal': 1.0, 'are': 1.0, 'charge': 1.0, 'original': 1.0, 'in': 1.0, 'you': 1.0, 'soldered': 1.0, 'at': 1.0, 'designed': 1.0, 'a': 2.0, 's': 1.0, 'discovered': 1.0, 'we': 1.0, 'replace': 1.0, 'compartment': 1.0, 'battery': 2.0, 'and': 2.0, 'maneuver': 1.0, 'left': 1.0, 'get': 1.0, 'easy': 1.0, 'price': 1.0, 'baby': 3.0, 'loses': 1.0, 'it': 8.0, 'this': 1.0, 'with': 2.0, 'place': 1.0, 'the': 10.0, 'great': 1.0, 'seemed': 1.0, 'once': 1.0, 'of': 2.0, 'all': 1.0, 'to': 5.0, 'had': 1.0, 'unhappy': 1.0, 'first': 1.0, 'walker': 2.0, 'would': 1.0, 'fading': 2.0, 'have': 1.0, 'for': 2.0, 'lights': 1.0, 'stars': 1.0, 'weeks': 1.0, 'loved': 1.0, 'was': 1.0, 'unfortunately': 1.0, 'design': 1.0, 'i': 1.0, 'become': 1.0, 'feature': 1.0, 'is': 3.0, 'internal': 1.0, 'given': 1.0, 'terrible': 1.0, 'on': 1.0, 'sounds': 1.0, 'began': 1.0, 'replacement': 1.0, 'couple': 1.0, 'out': 1.0, '5': 1.0, 'before': 1.0, 'time': 1.0, 'bored': 1.0, 'trying': 1.0, 'after': 1.0, 'much': 1.0, 'not': 1.0, 'n': 1.0, 'frustration': 1.0}
Word element => {'week': 1.0, 'label': 1.0, 'return': 1.0, 'slapping': 1.0, 'shrink': 1.0, 'll': 1.0, 'quality': 1.0, 'see': 1.0, 'arrive': 1.0, 'wood': 1.0, 'that': 1.0, 'everything': 1.0, 'on': 3.0, 'finishing': 1.0, 'par': 1.0, 'sub': 1.0, 'alignment': 1.0, 'garbage': 1.0, 'i': 4.0, 'sentence': 1.0, 'a': 4.0, 'could': 1.0, 'been': 1.0, 'review': 1.0, 'nursery': 1.0, 'far': 1.0, 'time': 1.0, 'is': 3.0, 'doesn': 1.0, 'rta': 2.0, 'again': 1.0, 've': 2.0, 'if': 6.0, 'same': 1.0, 'so': 2.0, 'can': 1.0, 'build': 2.0, 'pieces': 1.0, 'got': 1.0, 'hole': 1.0, 'didn': 1.0, 'only': 1.0, 'purchase': 1.0, 'any': 1.0, 'bit': 1.0, 'industrial': 1.0, 'damaged': 1.0, 'replace': 1.0, 'less': 1.0, 'made': 2.0, 'consuming': 1.0, 'or': 3.0, 'it': 4.0, 'unit': 1.0, 'this': 5.0, 'cheap': 1.0, 'like': 1.0, 'and': 4.0, 'next': 1.0, 'has': 1.0, 'them': 2.0, 'one': 1.0, 'money': 1.0, 'bought': 1.0, '10': 1.0, 'for': 3.0, 'do': 1.0, 'much': 1.0, 'overseas': 1.0, 'absolute': 1.0, 'read': 2.0, 'wrapping': 1.0, 'parts': 1.0, 'construction': 1.0, 'little': 1.0, 'better': 1.0, 'you': 6.0, 'things': 1.0, 'degree': 1.0, 'm': 1.0, 'in': 3.0, 'design': 1.0, 'have': 2.0, 'let': 1.0, 'years': 1.0, 'experience': 1.0, 'furniture': 3.0, 'pay': 1.0, 'of': 4.0, 'the': 8.0, 'attention': 1.0, 'we': 1.0, 'then': 2.0, 'take': 1.0, 'reviews': 1.0, 'about': 1.0, 'apart': 1.0, 'assembly': 2.0, 'worst': 1.0, 'materials': 1.0, 'our': 1.0, 'how': 1.0, 'really': 1.0, 'be': 2.0, 'me': 1.0, 'forward': 1.0, 'not': 1.0, 'tell': 1.0, 'crap': 1.0, 'piece': 2.0, 'sauder': 1.0, 'ever': 1.0, 'other': 1.0, 'isn': 2.0, 'waiting': 1.0, 'different': 1.0, 'regards': 1.0, 'replacement': 1.0, 't': 4.0, 'fairly': 1.0, 'improves': 1.0, 'bad': 2.0, 'are': 1.0, 'to': 6.0, 'straight': 1.0, 'though': 1.0}
Word element => {'size': 1.0, 'perfect': 1.0, 'and': 1.0, 'very': 1.0, 'expensive': 1.0, 'are': 1.0, 'so': 1.0, 'the': 2.0, 'hated': 1.0, 'its': 1.0, 'rooms': 1.0, 'husband': 1.0, 'happy': 1.0, 'my': 1.0, 'combo': 1.0, 'ridiculously': 1.0, 'like': 1.0, 'baby': 1.0, 'price': 1.0, 'dresser': 1.0, 'for': 2.0, 'changer': 1.0, 'together': 1.0, 'of': 1.0, 'putting': 1.0, 'i': 3.0, 'am': 1.0, 'beautiful': 2.0, 'with': 1.0, 'this': 2.0, 'it': 2.0, 'but': 1.0, 'especially': 1.0, 'dressers': 1.0, 'think': 1.0, 'many': 1.0, 'really': 1.0, 'is': 1.0, 'a': 1.0, 'piece': 2.0, 'furniture': 1.0}
Word element => {'sturdy': 1.0, 'it': 1.0, 'completely': 1.0, 'but': 1.0, 'doesn': 1.0, 'cabinet': 1.0, 'roll': 1.0, 'say': 1.0, 'would': 1.0, 'what': 1.0, 'you': 2.0, 'drawers': 1.0, 'is': 2.0, 'overall': 1.0, 'are': 1.0, 't': 2.0, 'the': 4.0, 'i': 1.0, 'cheap': 2.0, 'pay': 1.0, 'shut': 1.0, 'directions': 1.0, 'for': 1.0, 'its': 1.0, 'end': 1.0, 'well': 1.0, 'a': 1.0, 'dresser': 1.0, 'don': 1.0, 'get': 1.0, 'horrible': 1.0, 'and': 1.0, 'product': 1.0}
Word element => {'size': 1.0, 'are': 1.0, 'drawers': 1.0, 'feels': 1.0, 'child': 1.0, 'thing': 1.0, 'is': 1.0, 'good': 2.0, 'which': 1.0, 'see': 1.0, 'did': 2.0, 'drawer': 1.0, 'sturdy': 1.0, 'they': 1.0, 'holes': 1.0, 'time': 1.0, 'so': 2.0, 'a': 4.0, 't': 1.0, 's': 3.0, 'correct': 1.0, 'had': 2.0, 'weren': 1.0, 'this': 3.0, 'them': 1.0, 'assemble': 1.0, 'brother': 1.0, 'for': 6.0, 'frustrating': 1.0, 'have': 3.0, 'against': 1.0, 'to': 7.0, 'any': 1.0, 'not': 1.0, 'minor': 1.0, 'and': 5.0, 'be': 2.0, 'knobs': 1.0, 'me': 1.0, 'my': 1.0, 'may': 1.0, 'sister': 1.0, 'very': 1.0, 'overly': 1.0, 'space': 1.0, 'positive': 1.0, 'read': 1.0, 'about': 2.0, 'sounded': 1.0, 'took': 1.0, 'i': 6.0, 'hard': 1.0, 'was': 2.0, 'sure': 1.0, 'store': 1.0, 'beautiful': 1.0, 'but': 2.0, 'warned': 1.0, 'thought': 1.0, 'it': 9.0, 'hardware': 1.0, 'more': 1.0, 'long': 1.0, 'on': 2.0, 'furniture': 2.0, 'how': 1.0, 'or': 1.0, 'anything': 1.0, 'all': 3.0, 'other': 2.0, 'piece': 2.0, 'together': 2.0, 'were': 1.0, 'missing': 1.0, 'scratched': 1.0, 'screw': 1.0, 'in': 2.0, 'additional': 1.0, 'said': 1.0, 'one': 2.0, 'the': 9.0, 'of': 3.0, 'because': 1.0, 'that': 2.0, 'pictures': 1.0, 'put': 2.0, 'changing': 1.0, 'complaint': 1.0, 'prepared': 1.0, 'drill': 1.0, 'day': 1.0, 'pad': 1.0, 'reviews': 1.0, 'we': 2.0, 'take': 1.0, 'up': 2.0, 'nearly': 1.0, 'go': 1.0, 'alot': 1.0, 'top': 1.0, 'would': 1.0, 'room': 2.0, 'things': 1.0, 'really': 1.0, 'jumped': 1.0, 'like': 1.0, 'after': 1.0, 'dog': 1.0, 'impossible': 1.0}
Word element => {'sturdy': 1.0, 'very': 1.0, 'top': 1.0, 'scratches': 2.0, 'large': 1.0, 'fit': 1.0, 'stars': 1.0, 'i': 2.0, 'deep': 1.0, 'handles': 3.0, 'wood': 2.0, 'left': 1.0, 'really': 1.0, 'nobs': 1.0, 'soft': 2.0, 'this': 1.0, 'it': 2.0, 'with': 1.0, 'however': 1.0, 'so': 2.0, 'discription': 1.0, 'on': 2.0, 'the': 12.0, '2': 1.0, 'used': 1.0, 'pretty': 1.0, 'table': 1.0, 'didn': 1.0, 'screws': 1.0, 'came': 1.0, 'dresser': 2.0, 'don': 1.0, 'is': 2.0, 'fall': 1.0, 'pad': 1.0, 'off': 1.0, 'frequently': 1.0, 'changing': 2.0, 'that': 2.0, 'gave': 1.0, 'because': 1.0, 'of': 1.0, 'and': 2.0, 'stay': 1.0, 'matched': 1.0, 'color': 1.0, 't': 2.0, 'a': 1.0, 's': 1.0}
Word element => {'beautiful': 1.0, 'time': 1.0, 'little': 2.0, 'together': 1.0, 'but': 1.0, 'extra': 1.0, 'we': 1.0, 'it': 3.0, 'love': 1.0, 'a': 2.0, 'confusing': 1.0, 'is': 1.0, 'its': 1.0, 'was': 1.0, 'now': 1.0, 'to': 1.0, 'overall': 1.0, 'taking': 1.0, 'tho': 1.0, 'assemble': 1.0, 'the': 1.0, 'that': 1.0, 'parts': 1.0, 'werent': 1.0, 'up': 1.0, 'labeled': 1.0, 'which': 1.0, 'ended': 1.0}
Word element => {'r': 1.0, 'target': 1.0, 'at': 1.0, 'had': 1.0, 'what': 1.0, 'amazon': 1.0, 'from': 1.0, 'less': 1.0, 'much': 1.0, 'reccomend': 1.0, 'put': 1.0, 'priced': 1.0, 'surprised': 1.0, 'to': 2.0, 'fairly': 1.0, 'up': 1.0, 'cute': 1.0, 'out': 1.0, 'i': 6.0, 'isnt': 1.0, 'buy': 1.0, 'so': 1.0, 'was': 5.0, 'expecting': 1.0, 'this': 2.0, 'it': 3.0, 'product': 1.0, 'love': 1.0, 'for': 1.0, 'very': 1.0, 'and': 3.0, 'table': 1.0, 'easy': 1.0, 'certainly': 1.0, 'than': 2.0, 'wood': 1.0, 'pleasantly': 1.0, 'together': 1.0, 'dresser': 1.0, 'price': 1.0, 'us': 1.0, 'turned': 1.0, 'wider': 1.0, 'have': 1.0, 'that': 1.0, 'changing': 1.0, 'babies': 2.0, 'the': 4.0, 'drawers': 1.0, 'solid': 1.0, 'underneath': 1.0, 'room': 1.0, 'didn': 1.0, 't': 1.0, 'a': 1.0, 'clutter': 1.0, 'but': 1.0, 'most': 1.0, 'nice': 1.0, 'would': 1.0}
Word element => {'hauled': 1.0, 'will': 1.0, 'guess': 1.0, 'then': 1.0, 'able': 1.0, 'be': 2.0, 'how': 1.0, 'about': 1.0, 'have': 1.0, 'garbage': 1.0, 'piece': 1.0, 'but': 1.0, 'was': 1.0, 'nice': 1.0, 'style': 1.0, 'than': 1.0, 'because': 1.0, 'very': 1.0, 're': 1.0, 'off': 1.0, 'bad': 1.0, 'paint': 1.0, 'concerns': 1.0, 'out': 1.0, 'made': 1.0, 'really': 2.0, 'material': 1.0, 'there': 2.0, 'of': 4.0, 'too': 2.0, 'and': 6.0, 'six': 1.0, 'cheap': 1.0, 'i': 4.0, 'so': 3.0, 'after': 1.0, 'opened': 1.0, 'fake': 1.0, 'long': 1.0, 'assembling': 1.0, 'bigger': 1.0, 'at': 1.0, 'are': 1.0, 'the': 7.0, 'wood': 2.0, 'comes': 1.0, 'finished': 1.0, 'is': 7.0, 'many': 1.0, 'landfill': 1.0, 'were': 2.0, 'pieces': 2.0, 'in': 2.0, 'easily': 1.0, 'when': 1.0, '34': 2.0, 'm': 1.0, 'a': 2.0, 'we': 2.0, 'going': 2.0, 'gouges': 1.0, 'repaint': 1.0, 'marks': 1.0, 'my': 1.0, 'husband': 1.0, 'least': 1.0, 'to': 5.0, 'it': 10.0, 'scuff': 1.0, 'spots': 1.0, 'just': 2.0, 'use': 1.0, 'front': 1.0, 'soft': 1.0, 'this': 1.0, 'attempt': 1.0, 'before': 1.0, 'even': 1.0, 'damaged': 1.0, 'used': 1.0, 'expected': 1.0, 'has': 1.0, 'box': 1.0, 'been': 1.0}
Word element => {'my': 1.0, 'was': 1.0, 'us': 1.0, 'works': 1.0, 'great': 1.0, 'nice': 1.0, 'this': 1.0, 'opinion': 1.0, 'for': 3.0, 'money': 2.0, 'but': 1.0, 'quality': 1.0, 'nicer': 1.0, 'of': 2.0, 'up': 1.0, 'there': 2.0, 'took': 1.0, 'i': 1.0, 'pieces': 1.0, 'in': 3.0, 'seems': 2.0, 'out': 1.0, 'couple': 1.0, 'and': 3.0, 'me': 1.0, 'different': 1.0, 'than': 1.0, 'is': 1.0, 'comes': 1.0, 'all': 2.0, 'to': 2.0, 'heavier': 1.0, 'the': 4.0, 'hard': 1.0, 'looks': 1.0, 'higher': 1.0, 'it': 7.0, 'isn': 1.0, 'even': 1.0, 'solid': 1.0, 'drawers': 1.0, 'value': 1.0, 'together': 2.0, 'dresser': 2.0, 'lots': 1.0, 'smoothly': 1.0, 'though': 1.0, 'well': 2.0, 'expected': 1.0, 'pretty': 1.0, 'million': 1.0, 'a': 4.0, 't': 1.0, 's': 1.0, 'space': 1.0, 'lot': 1.0, 'glide': 1.0, 'offer': 1.0, 'furniture': 1.0, 'put': 2.0, 'on': 1.0, 'rollers': 1.0, 'hours': 1.0, 'should': 1.0, 'like': 1.0, 'hold': 1.0, 'obviously': 1.0}
Word element => {'to': 1.0, 'time': 1.0, 'built': 1.0, 'already': 1.0, 'add': 1.0, 'decent': 1.0, 'feels': 1.0, 'it': 1.0, 'looks': 1.0, 'patience': 1.0, 'of': 1.0, 'lots': 1.0, 'that': 1.0, 'box': 1.0, 'screws': 1.0, 'cutter': 1.0, 'strip': 1.0, 'after': 1.0, 'which': 1.0, 'assembled': 1.0, 'the': 3.0, 'better': 1.0, 'hours': 1.0, '6': 1.0, 'over': 2.0, 'took': 2.0, 'putting': 1.0, 'two': 1.0, 'i': 1.0, 'not': 1.0, 'wrong': 1.0, 'me': 1.0, 'five': 1.0, 'and': 3.0, 'but': 1.0, 'spread': 1.0, 'its': 1.0, 'only': 1.0, 'power': 1.0, 'this': 2.0, 'painful': 1.0, 'together': 1.0, 'enjoy': 1.0, 'inevitably': 1.0, 'furniture': 1.0, 'think': 1.0, 'buy': 2.0, 'days': 1.0, 'times': 1.0, 'you': 5.0, 'when': 2.0, 'somewhat': 1.0, 'handy': 1.0, 'pliers': 1.0, 'm': 1.0, 'absolutely': 1.0, 'if': 1.0, 'want': 1.0, 'more': 1.0, 'ikea': 1.0, 'is': 2.0, 'hole': 1.0, 'a': 2.0, 'flathead': 1.0, 'screwdriver': 2.0, 'will': 1.0, 'also': 1.0, 'in': 2.0, 'needed': 2.0, 'plug': 1.0, 'hammer': 1.0, 'product': 1.0, 'for': 1.0, 'something': 2.0}
Word element => {'time': 1.0, 'lot': 1.0, 'also': 1.0, 'you': 2.0, 'fix': 1.0, 'little': 1.0, 'of': 1.0, 'get': 1.0, 'i': 3.0, 'now': 1.0, 'and': 1.0, 'straight': 1.0, 'they': 1.0, 'don': 1.0, 'up': 1.0, 'line': 1.0, 'board': 2.0, 'screws': 1.0, 'try': 1.0, 'do': 2.0, 'nails': 1.0, 'tiny': 2.0, '34': 1.0, 'back': 1.0, 'putting': 1.0, 'it': 3.0, 'with': 1.0, 'wtf': 1.0, 'few': 1.0, 'out': 1.0, 'to': 3.0, 'worse': 1.0, 'look': 1.0, 'fixed': 1.0, 'but': 1.0, '2': 1.0, 'the': 5.0, 'great': 1.0, 'are': 1.0, 'after': 1.0, 'everything': 1.0, 'those': 1.0, 'not': 1.0, 'through': 1.0, 'real': 1.0, 'took': 1.0, 'people': 1.0, 'instructions': 2.0, 'this': 1.0, 'pain': 1.0, 'some': 1.0, 'decent': 1.0, 'think': 1.0, 'on': 1.0, 'ass': 1.0, '3': 1.0, 'moments': 1.0, 'worked': 1.0, 'different': 1.0, 'good': 1.0, 'product': 1.0, 'assemble': 1.0, 'for': 1.0, 'probably': 1.0, 'screwing': 1.0, 'directions': 1.0, 'was': 1.0, 'doesn': 2.0, 'like': 1.0, 'oh': 1.0, 'wait': 1.0, 'go': 1.0, 't': 3.0, 'a': 4.0, 'could': 3.0, 's': 1.0, 'upside': 1.0, 'll': 1.0, 'down': 1.0, 'have': 2.0, 'next': 1.0, 'into': 1.0, 'that': 1.0, 'been': 1.0, 'particle': 2.0, 'hours': 1.0, 'better': 2.0, 'craftsmanship': 1.0, 'in': 2.0}
Word element => {'right': 1.0, 'that': 1.0, 'wayfare': 1.0, 'from': 1.0, 'my': 1.0, 'on': 1.0, 'put': 1.0, 'sent': 1.0, '00': 1.0, 'it': 2.0, 'wrong': 1.0, 'does': 1.0, 'i': 1.0, 'back': 2.0, 'item': 1.0, 'was': 1.0, 'account': 1.0, '257': 1.0, 'sound': 1.0, '28': 1.0, 'so': 1.0, 'got': 1.0, '190': 1.0}
Word element => {'d': 1.0, 'years': 1.0, 'work': 1.0, 'will': 1.0, 'replace': 1.0, 'craft': 1.0, 'stork': 1.0, 'contacted': 1.0, 've': 1.0, 'after': 1.0, 'loose': 1.0, 'knobs': 1.0, 'some': 1.0, 'was': 1.0, 'last': 1.0, 'despite': 1.0, 'smoothly': 1.0, 'out': 1.0, 'overall': 1.0, 'slide': 1.0, 'seem': 1.0, 'places': 1.0, 'right': 1.0, 'noticeable': 1.0, 'fortunately': 1.0, 'as': 3.0, 'above': 1.0, 'than': 1.0, 'less': 1.0, 'hole': 1.0, 'split': 1.0, 'started': 1.0, 'are': 1.0, 'drawers': 3.0, 'outside': 1.0, 'an': 1.0, 'all': 1.0, 'probably': 1.0, 'any': 1.0, 'mis': 1.0, 'screwing': 1.0, 'our': 1.0, 'quite': 2.0, 'from': 1.0, 'feels': 1.0, 'concerned': 1.0, 'that': 5.0, 'once': 3.0, 'made': 1.0, 'good': 1.0, 'based': 1.0, 'this': 4.0, 'also': 2.0, 'i': 5.0, 'correct': 1.0, 'letter': 1.0, 'quality': 1.0, 'had': 1.0, 'screws': 1.0, 'listed': 1.0, 'and': 7.0, 'so': 3.0, 'attaching': 2.0, 'is': 9.0, 'it': 7.0, 'hardware': 1.0, 'complex': 1.0, 'around': 1.0, 'on': 1.0, 'pictures': 1.0, 'put': 2.0, 'furniture': 1.0, 'with': 2.0, 'were': 1.0, 'piece': 1.0, 'together': 1.0, 'dresser': 6.0, 'unpack': 1.0, 'difficult': 1.0, 'of': 11.0, 'the': 36.0, 'cardboard': 4.0, 'consuming': 1.0, 'get': 2.0, 'sides': 1.0, 's': 4.0, 'you': 5.0, 'to': 15.0, 'pretty': 2.0, 'if': 1.0, 'looks': 2.0, 'my': 1.0, 'may': 1.0, 'label': 1.0, 'another': 2.0, 'new': 1.0, 'time': 1.0, 'assembled': 1.0, 'main': 1.0, 'issue': 4.0, 'sizing': 1.0, 'certain': 1.0, 'not': 4.0, 'creates': 1.0, 'ones': 1.0, 'one': 1.0, 'too': 2.0, 'try': 1.0, 'pieces': 1.0, 'particle': 3.0, 'but': 2.0, 'board': 3.0, 'front': 1.0, 'found': 1.0, 'easy': 2.0, 'however': 2.0, 'literally': 1.0, 'back': 3.0, 'top': 1.0, 'for': 2.0, 'affixing': 1.0, 'find': 2.0, 'cut': 1.0, 'wood': 1.0, 'facing': 1.0, 'removed': 1.0, 'remove': 1.0, 'slightly': 2.0, 'small': 1.0, 'problem': 2.0, 'attach': 2.0, 'we': 1.0, 'fine': 1.0, 'great': 1.0, 'screw': 3.0, 'solid': 1.0, 'bottom': 2.0, 'm': 1.0, 'in': 5.0, 'when': 2.0, 'breaks': 1.0, 'handles': 1.0, 'through': 1.0, 'them': 1.0, 'has': 1.0, 'be': 1.0, 'many': 1.0, 'baby': 1.0, 'unfortunately': 1.0, 'hoped': 1.0, 'broken': 1.0, 'rails': 2.0}
Word element => {'review': 1.0, 'out': 1.0, 'checking': 1.0, 'thank': 1.0, 'substantially': 1.0, 'directions': 1.0, 'quality': 1.0, 'it': 1.0, 'while': 1.0, 'styling': 1.0, 'they': 1.0, 'like': 1.0, 'consuming': 1.0, 'using': 1.0, 'panel': 1.0, 'screws': 1.0, 'missed': 1.0, 'materials': 1.0, 'up': 1.0, 'pictures': 1.0, 'this': 2.0, 'by': 2.0, 'to': 3.0, 'as': 1.0, 'identify': 1.0, 'our': 1.0, 'hemnes': 1.0, 'was': 2.0, 'point': 1.0, 'not': 1.0, 'cabinet': 2.0, 'back': 1.0, 'exposed': 1.0, 'inside': 1.0, 'attach': 1.0, 'and': 6.0, 'loads': 1.0, 'moved': 1.0, 'sauder': 1.0, 'allows': 1.0, 'ikea': 2.0, 'acceptable': 1.0, 'assemble': 1.0, 'way': 1.0, 'built': 1.0, 've': 1.0, 'would': 1.0, 'in': 1.0, '34': 2.0, 'forced': 1.0, 'the': 16.0, 'of': 6.0, 'better': 1.0, 'types': 1.0, 'cardboard': 1.0, 'reference': 1.0, 'contents': 1.0, 'office': 2.0, 'furniture': 3.0, 'on': 1.0, 'feel': 1.0, 'survived': 1.0, 'your': 1.0, 'that': 3.0, 'so': 1.0, 'i': 4.0, 'well': 1.0, 'budget': 1.0, 'has': 1.0, 'a': 1.0, 'we': 1.0, 'packed': 1.0, 'similar': 1.0, 'protected': 1.0, 'area': 1.0, 'desired': 1.0, 'time': 1.0, 'locations': 1.0, 'components': 1.0, 'instead': 1.0, 'stability': 1.0, 'right': 1.0, 'over': 1.0, 'labeled': 1.0, 'infants': 1.0, 'opening': 1.0, 'room': 2.0, 'reasonable': 1.0, 'being': 1.0, 'if': 1.0, 'wifes': 1.0, 'center': 1.0, 'from': 1.0, 'wife': 1.0, 'space': 1.0, 'my': 2.0, 'located': 1.0, 'wanted': 1.0, 'you': 1.0, 'things': 1.0, 'will': 1.0, 'pieces': 2.0, 'serve': 1.0, 'also': 1.0, 'other': 1.0, 'an': 1.0, 'areas': 1.0, 'scrapped': 1.0, 'own': 1.0, 'recommend': 1.0, 'availability': 1.0, 'were': 4.0, 'piece': 1.0, 'for': 3.0, 'considering': 1.0}
Word element => {'disappointing': 1.0, 'but': 1.0, 'most': 1.0, 'expected': 1.0, 'these': 2.0, 'suppose': 1.0, 'strip': 1.0, 'very': 1.0, 'breaking': 1.0, 'don': 1.0, 'you': 1.0, 'included': 1.0, 'so': 1.0, 'ahead': 1.0, 'couple': 1.0, 'end': 1.0, 'read': 1.0, 'use': 1.0, 'sure': 1.0, 'be': 2.0, 'lead': 1.0, 'still': 1.0, 'certainly': 1.0, 'incorrectly': 1.0, 'drawn': 1.0, 'aggravating': 1.0, 'diagrams': 1.0, 'assembly': 1.0, 'are': 2.0, 'noting': 1.0, 'crazy': 1.0, 'unfortunately': 1.0, 'was': 1.0, 'didn': 1.0, 'to': 10.0, 'scratched': 1.0, 'also': 2.0, 'finish': 1.0, 'am': 1.0, 'fragile': 1.0, 'instead': 1.0, 'assembling': 1.0, 'beautiful': 1.0, 'picked': 1.0, 'stars': 1.0, 'expensive': 1.0, 'product': 1.0, 'why': 1.0, 'by': 1.0, 'gave': 1.0, 'steps': 1.0, 'avoid': 1.0, 'been': 1.0, 'disappointed': 1.0, 'incredibly': 1.0, 'dresser': 2.0, 'days': 1.0, 'anything': 1.0, 'all': 1.0, 'other': 1.0, 'could': 1.0, 'scratches': 1.0, 'made': 1.0, 'which': 2.0, 'cheap': 1.0, 'like': 1.0, 'finished': 1.0, 'absolutely': 1.0, 'years': 1.0, 'm': 1.0, 'opted': 1.0, 'with': 2.0, 'together': 1.0, 'piece': 1.0, 'this': 2.0, 'hardware': 1.0, 'it': 8.0, 'common': 1.0, 'reason': 1.0, 'shape': 1.0, 'break': 1.0, 'directions': 1.0, 'extremely': 1.0, 'i': 11.0, 'over': 2.0, 'less': 1.0, 'up': 2.0, 'conscious': 1.0, 't': 2.0, 'confusion': 1.0, 'a': 4.0, 'sense': 1.0, 'hardly': 1.0, 'going': 1.0, 'thing': 1.0, '2': 1.0, 'of': 4.0, 'the': 12.0, 'ones': 1.0, 'either': 1.0, 'screws': 1.0, 'had': 1.0, 'do': 1.0, 'put': 1.0, 'on': 2.0, 'and': 4.0, 'effort': 1.0, 'scratching': 1.0, 'wood': 1.0, 'time': 1.0, 'new': 1.0, 'has': 1.0, 'used': 1.0, 'for': 3.0, '10': 1.0, 'problems': 1.0, 'easily': 1.0, 'that': 2.0, '20': 1.0, 'is': 5.0, 'at': 1.0, '1': 1.0, 'find': 2.0, 'sale': 1.0, 'have': 1.0, 'classy': 1.0, 'hoped': 1.0, 'worth': 1.0, 'now': 1.0, 'yard': 1.0, 'some': 2.0, 'sort': 2.0, 'repair': 1.0, 'looks': 1.0, 'my': 1.0, 'carpet': 1.0, 'brand': 1.0, 'buy': 1.0, 'furniture': 3.0, 'something': 1.0, 'ridiculous': 1.0}
Word element => {'screwdriver': 1.0, 'an': 1.0, 'hours': 1.0, 'electric': 1.0, 'us': 1.0, 'took': 1.0, 'match': 1.0, 'illustrations': 1.0, 'since': 1.0, 'pretty': 1.0, 'out': 1.0, 'it': 3.0, 'which': 2.0, 'tell': 1.0, 'to': 2.0, 'actual': 1.0, 'about': 1.0, 'no': 1.0, 'instructions': 2.0, 'in': 2.0, 're': 1.0, 'they': 1.0, 'labeled': 2.0, 'drawer': 1.0, 'side': 1.0, 'scar': 1.0, 'one': 4.0, 'assemble': 1.0, 'product': 1.0, 'piece': 1.0, 'with': 1.0, 'strongly': 1.0, 'this': 2.0, 'there': 3.0, 'arrival': 1.0, 'major': 1.0, 'only': 1.0, 'happy': 1.0, 'recommend': 1.0, 'was': 4.0, 'together': 1.0, 'confusion': 1.0, 'on': 2.0, 'put': 1.0, 'can': 1.0, 'but': 4.0, 'damaged': 1.0, 'added': 1.0, 'are': 3.0, 'easily': 1.0, 'you': 2.0, 'again': 1.0, 'few': 1.0, 'ago': 1.0, 'we': 1.0, 'a': 3.0, 'extra': 1.0, 'days': 1.0, 'is': 2.0, 'finished': 1.0, 'and': 1.0, 'little': 1.0, 'figure': 1.0, 'very': 1.0, 'big': 1.0, 'that': 3.0, 'upon': 1.0, 'of': 1.0, 'once': 1.0, 'the': 9.0, 'assembled': 1.0, 'not': 2.0, 'problem': 1.0, 'scuff': 1.0, 'top': 1.0, 'complaint': 1.0, 'slightly': 1.0, 'nothing': 1.0, 'two': 1.0, 'i': 2.0, 'stickers': 1.0, 'have': 1.0, 'pieces': 3.0}
Word element => {'transitions': 1.0, 'my': 1.0, 'sturdier': 1.0, 'with': 1.0, 'replacing': 1.0, 'end': 1.0, 'long': 1.0, 'picked': 1.0, 'so': 3.0, 'new': 1.0, 'and': 1.0, 'or': 2.0, 'own': 1.0, 'off': 1.0, 're': 2.0, 'have': 3.0, 'all': 1.0, 'our': 1.0, 'as': 1.0, 'her': 1.0, 'use': 1.0, 'dresser': 5.0, 'one': 1.0, 'months': 1.0, 'for': 6.0, 'another': 1.0, 'which': 1.0, 'gift': 1.0, 'to': 8.0, 'pulled': 1.0, 'nice': 1.0, 'well': 2.0, 'has': 1.0, 'a': 8.0, 'we': 6.0, 's': 2.0, 'nick': 1.0, 'very': 1.0, 'up': 3.0, 'daily': 1.0, 'wood': 1.0, 'completely': 1.0, 'dropping': 1.0, 'it': 7.0, 'this': 2.0, 'soft': 1.0, 'perfect': 1.0, 'had': 3.0, 'when': 1.0, 'what': 1.0, 'now': 2.0, 'knobs': 2.0, 'be': 1.0, 'door': 1.0, 'replacements': 1.0, 'point': 1.0, 'drawer': 1.0, 'looking': 1.0, 'but': 3.0, 'not': 3.0, 'of': 2.0, 'the': 6.0, 'hinges': 1.0, 'in': 1.0, 'that': 2.0, '16': 1.0, 'changing': 1.0, 'initially': 1.0, 'they': 1.0, 'charging': 1.0, 'received': 1.0, 'us': 2.0, 'also': 1.0, 'could': 1.0, 'will': 1.0, 'tightened': 1.0, 'defeats': 1.0, 've': 2.0, 'several': 1.0, 'times': 1.0, 'at': 1.0, 'is': 3.0, 'ding': 1.0, 'room': 2.0, 'clearly': 1.0, 'visible': 1.0, 'abuse': 1.0, 'concern': 1.0, 'baby': 1.0, 'specifically': 1.0, 'request': 1.0, 'hold': 1.0, 'toddler': 1.0, 'transition': 1.0, 'purpose': 1.0, 'from': 1.0, 'was': 1.0, 'wanted': 1.0, 'maintain': 1.0, 'piece': 1.0, 'ridiculous': 1.0, 'furniture': 1.0, 'daughter': 2.0, 'pieces': 1.0, 'table': 1.0, 'll': 1.0, 'any': 1.0, 'stood': 1.0, 'keeps': 1.0, 'probably': 1.0}
Word element => {'away': 1.0, 'puttogether': 1.0, 'terrible': 1.0, 'is': 1.0, 'i': 2.0, 'it': 1.0, 'stay': 1.0, 'really': 1.0, 'this': 1.0, 'item': 1.0, 'to': 1.0, 'product': 1.0, 'purchased': 1.0, 'rather': 1.0, 'delivered': 1.0, 'a': 1.0, 'preinstalled': 1.0, 'wish': 1.0, 'had': 1.0, 'and': 1.0}
Word element => {'table': 1.0, 'year': 1.0, 'it': 1.0, 'hard': 1.0, 'love': 1.0, 'for': 1.0, 'you': 1.0, 'i': 1.0, 'greatb': 1.0, 'are': 1.0, 'purchased': 1.0, 'works': 1.0, 'only': 1.0, 'nursery': 1.0, 'over': 1.0, 'on': 1.0, 'we': 1.0, 's': 1.0, 'a': 1.0, 'ago': 1.0, 'my': 1.0, 'dresser': 1.0, 'height': 1.0, 'lots': 1.0, 'son': 1.0, 'storage': 1.0, 'completely': 1.0, 'is': 2.0, 'the': 4.0, 'this': 1.0, 'perfect': 1.0, 'of': 1.0, 'space': 1.0, 'drawers': 1.0, 'downfall': 1.0, 'changing': 1.0, 'that': 1.0, 'sometimes': 1.0, 'to': 1.0, 'get': 1.0, 'top': 1.0, 'back': 1.0, 'railing': 1.0, 'if': 1.0, 'ever': 1.0, 'take': 1.0, 'them': 1.0, 'out': 1.0}
Word element => {'drill': 1.0, 'had': 1.0, 'in': 1.0, 'done': 1.0, 'have': 1.0, 'drawers': 1.0, 'at': 1.0, 'hours': 2.0, 'stain': 1.0, 'so': 1.0, 'if': 1.0, 'same': 1.0, 'be': 1.0, 'husband': 1.0, 'are': 2.0, 'is': 1.0, 'limited': 1.0, 'to': 2.0, 'all': 1.0, 'which': 1.0, 'drawer': 1.0, 'the': 4.0, 'assembled': 1.0, 'little': 1.0, 'capacity': 1.0, 'about': 1.0, 'fully': 1.0, 'lovely': 1.0, 'though': 1.0, 'much': 1.0, 'shallower': 1.0, 'when': 1.0, 'looks': 1.0, 'it': 1.0, 'match': 1.0, 'was': 1.0, 'doesn': 1.0, '2': 1.0, 'but': 1.0, 'power': 1.0, 'than': 1.0, 'took': 1.0, '4': 1.0, 'fronts': 1.0, 'my': 1.0, 'supposed': 1.0, 'for': 1.0, 'assemble': 1.0, 'we': 1.0, 't': 1.0, 'could': 1.0, 'a': 2.0, 'tricky': 1.0, 'crib': 1.0, 'directions': 1.0, 'probably': 1.0}
Word element => {'away': 1.0, 'fully': 1.0, '10': 1.0, 'about': 1.0, 'took': 1.0, 'tuned': 1.0, 'exceptionally': 1.0, 'nose': 1.0, 'just': 1.0, 'scent': 1.0, 'paint': 1.0, 'fresh': 1.0, 'still': 1.0, 'cleaner': 1.0, 'entire': 1.0, 'wiped': 1.0, 'i': 1.0, 'after': 1.0, 'even': 1.0, 'down': 1.0, 'lingered': 1.0, 'smell': 2.0, 'also': 1.0, 'screw': 1.0, 'for': 3.0, 'or': 1.0, 'supplies': 1.0, 'clothes': 1.0, 'built': 1.0, 'child': 1.0, 'emit': 1.0, 'cons': 1.0, 'my': 3.0, 'with': 1.0, 'piece': 1.0, 'stores': 1.0, 'go': 1.0, 's': 2.0, 'a': 4.0, 'changing': 1.0, 'pros': 1.0, 'is': 2.0, 'it': 6.0, 'very': 1.0, 'little': 1.0, 'pregnant': 1.0, 'blankets': 1.0, 'and': 2.0, 'diaper': 1.0, 'the': 6.0, 'days': 1.0, 'veneer': 1.0, 'definitely': 1.0, 'together': 1.0, 'once': 1.0, 'of': 3.0, 'there': 1.0, 'spent': 1.0, 'sturdy': 1.0, 'agree': 1.0, 'time': 1.0, 'so': 1.0, 'however': 1.0, 'beautiful': 1.0, 'was': 2.0, 'all': 1.0, 'as': 2.0, 'to': 4.0, 'husband': 1.0, 'ups': 1.0, 'functional': 1.0, 'doing': 1.0, 'pain': 1.0, 'instructions': 1.0, 'put': 1.0, 'better': 1.0, 'well': 1.0, 'half': 1.0, 'sunday': 1.0, 'long': 2.0, 'are': 1.0, 'followed': 1.0, 'continued': 1.0, 'room': 1.0}
Word element => {'point': 1.0, 'just': 1.0, 'really': 1.0, 'like': 1.0, 'bolts': 1.0, 'lock': 1.0, 'note': 2.0, 'last': 1.0, 'fit': 1.0, 'proper': 1.0, 'three': 1.0, 'adjusted': 1.0, 'ensure': 1.0, 'be': 1.0, 'hinges': 1.0, 'them': 2.0, 'has': 1.0, 'out': 1.0, 'for': 4.0, 'expensive': 1.0, 'stars': 1.0, 'save': 1.0, 'spot': 1.0, 'nice': 3.0, 'feel': 1.0, 'dislike': 1.0, 'until': 1.0, 'a': 8.0, 'could': 1.0, 'all': 4.0, 'as': 2.0, 'in': 3.0, 'pieces': 2.0, 'cabinet': 1.0, 'fully': 1.0, 'to': 5.0, 'pretty': 1.0, 'receives': 1.0, 'screws': 1.0, 'up': 3.0, 'on': 2.0, 'that': 4.0, 'and': 4.0, 'correctly': 1.0, 'handmade': 1.0, 'not': 2.0, 'solid': 3.0, 'customer': 1.0, 'lined': 2.0, 'it': 3.0, 'at': 1.0, 'is': 3.0, 'door': 1.0, 'more': 1.0, 'completely': 1.0, '4': 1.0, 'can': 1.0, 'strength': 1.0, 'were': 3.0, 'piece': 2.0, 'few': 1.0, 'this': 1.0, 'dresser': 4.0, 'of': 5.0, 'the': 19.0, 'paint': 1.0, 'commiserate': 1.0, 'feels': 1.0, 'wood': 1.0, 'pricing': 1.0, 'said': 1.0, 'scale': 1.0, 'holes': 1.0, 'loss': 1.0, 'back': 3.0, 'right': 1.0, 'star': 1.0, 'close': 1.0, '1': 1.0, 'edge': 1.0, 'also': 1.0, 'use': 1.0, 'lot': 2.0, 'too': 1.0, 'one': 2.0, 'looks': 1.0, 'pressboard': 1.0, 'reasons': 1.0, 'lateral': 1.0, 'drawers': 1.0, 'support': 1.0, 'once': 1.0, 'these': 1.0, 'cam': 1.0, 'did': 1.0, 'was': 3.0, 'installed': 1.0, 'strip': 1.0, '1x': 1.0, 'people': 1.0, 'half': 1.0, 'i': 2.0, 'well': 1.0, 'assemble': 2.0, 'way': 2.0, 'would': 1.0, 'do': 1.0, 'wonders': 1.0, 'but': 1.0, 'rolled': 1.0, 'furniture': 3.0, 'structural': 1.0, 'product': 1.0, 'price': 1.0, 'very': 1.0, 'sold': 1.0, 'easy': 1.0, 'axis': 1.0, 'albeit': 1.0, 'uses': 1.0, 'assembled': 2.0, 'time': 1.0, 'consuming': 1.0, 'personally': 1.0, 'even': 1.0, 'nicely': 1.0}
Word element => {'despite': 1.0, 'use': 1.0, 'particle': 1.0, 'considering': 1.0, 'how': 1.0, 'actually': 1.0, 'heartbeat': 1.0, 'again': 1.0, 'impressed': 1.0, 'super': 1.0, 'beautiful': 1.0, 'buy': 1.0, 'furniture': 1.0, 'wood': 1.0, 'split': 1.0, 'wanted': 2.0, 'sturdy': 2.0, 'they': 2.0, 'where': 2.0, 'part': 1.0, 'though': 1.0, 'pain': 1.0, 'backing': 1.0, 'gliders': 1.0, 'drawer': 1.0, 'some': 1.0, 'loved': 1.0, 'looking': 1.0, 'really': 1.0, 'out': 2.0, 'so': 1.0, 'preinstalled': 1.0, 'can': 1.0, 'lot': 2.0, 'ones': 1.0, 'get': 1.0, 'tons': 1.0, 'to': 5.0, 'inner': 1.0, 'for': 1.0, 'expect': 1.0, 'lol': 1.0, 'there': 3.0, 'don': 1.0, 'carry': 1.0, 'who': 1.0, 'poor': 1.0, 'talking': 1.0, 'styrofoam': 1.0, 'are': 3.0, 'reviewers': 1.0, 'steps': 1.0, 'a': 6.0, 'go': 1.0, 'of': 8.0, 'the': 14.0, 'my': 1.0, 'screws': 1.0, 'had': 2.0, 'ups': 1.0, 'perfect': 1.0, 'this': 3.0, 'box': 2.0, 'seriously': 1.0, 'padding': 1.0, 'guy': 1.0, 'on': 1.0, 'pictures': 2.0, 'put': 3.0, '3': 1.0, '17': 1.0, 'like': 2.0, 'well': 4.0, 'i': 15.0, 'didn': 1.0, 'about': 1.0, 'no': 2.0, 'was': 7.0, 'as': 7.0, 'horrible': 1.0, 'bought': 1.0, 'instructions': 1.0, 'other': 1.0, 'an': 1.0, 'board': 1.0, 'but': 4.0, 'not': 2.0, 'single': 2.0, 'with': 2.0, 'what': 2.0, 'scratched': 1.0, 'missing': 1.0, 'pregnant': 1.0, 'broken': 1.0, 'tried': 1.0, 'outer': 1.0, 'yes': 1.0, 'if': 1.0, 'every': 2.0, 'know': 1.0, 'bit': 1.0, 'it': 8.0, 'hardware': 1.0, 'at': 1.0, 'is': 5.0, 'needed': 2.0, 'figure': 1.0, 'now': 2.0, 'would': 1.0, 'weeks': 1.0, 'up': 1.0, 'major': 1.0, 'okay': 1.0, 'am': 4.0, 'screwed': 1.0, 'by': 1.0, '35': 1.0, 'labeled': 1.0, 'and': 6.0, 'you': 2.0, 'able': 1.0, 'electric': 1.0, 'dowels': 1.0, 'piece': 3.0, 'together': 1.0, 'took': 1.0, 'hours': 1.0, 'stuff': 1.0, 'just': 2.0, 'thrilled': 1.0, 'easily': 1.0, 'that': 2.0, 'because': 1.0, 'in': 3.0, 'm': 1.0, 'very': 1.0, 'being': 1.0, 'slow': 1.0, 'reviews': 1.0, 'fine': 1.0, 'moving': 1.0, 'right': 1.0, 'screwdriver': 1.0, 'or': 1.0, 'need': 1.0, 'new': 1.0, 'rest': 1.0, 't': 2.0, 'along': 1.0, 'surprised': 1.0, 'condition': 2.0, 'words': 1.0, 'feel': 1.0, 'them': 3.0}
Word element => {'store': 1.0, 'would': 1.0, 'you': 1.0, 'some': 1.0, 'than': 2.0, 'having': 1.0, 'months': 1.0, 'bought': 1.0, 'stayed': 1.0, 'has': 1.0, 'great': 1.0, 'nice': 1.0, 'our': 1.0, 'screwdriver': 1.0, 'in': 1.0, 'pregnant': 1.0, 'very': 2.0, 'month': 1.0, 'person': 1.0, 'the': 7.0, 'of': 2.0, '6': 2.0, 'door': 1.0, 'for': 3.0, 'with': 2.0, 'this': 1.0, 'am': 1.0, 'finish': 1.0, 'and': 5.0, 'back': 1.0, 'top': 2.0, 'on': 2.0, 'something': 1.0, 'furniture': 2.0, 'other': 1.0, 'all': 1.0, 'an': 2.0, 'hour': 1.0, 'scratches': 1.0, 'will': 1.0, 'was': 2.0, 'belt': 1.0, 'pad': 1.0, 'now': 1.0, 'one': 1.0, 'electronic': 1.0, 'happy': 1.0, 'looks': 1.0, 'my': 1.0, 'use': 1.0, 'old': 1.0, 'well': 1.0, 'i': 3.0, 'took': 1.0, 'about': 1.0, 'piece': 1.0, 'together': 1.0, 'from': 2.0, 'that': 2.0, 'we': 3.0, 'a': 3.0, 'keep': 1.0, 'did': 1.0, 'receive': 1.0, 'it': 5.0, 'hardware': 1.0, 'attaching': 1.0, 'look': 1.0, 'at': 1.0, 'is': 1.0, 'attach': 1.0, 'had': 1.0, 'spend': 1.0, 'request': 1.0, 'storkcraft': 1.0, 'helpful': 1.0, 'cover': 1.0, 'send': 1.0, 'us': 1.0, 'came': 1.0, 'purchase': 1.0, 'quickly': 1.0, 'to': 6.0, 'pretty': 1.0, 'easy': 1.0, 'put': 1.0, 'changing': 1.0, 'do': 1.0, 'much': 1.0, 'not': 1.0, 'forward': 1.0, 'looking': 1.0, 'using': 1.0, 'like': 1.0, 'after': 1.0, 'first': 2.0, 'diapers': 1.0, 'touch': 1.0, 'pen': 1.0, 'made': 1.0, 'up': 1.0, 'less': 1.0}
Word element => {'store': 1.0, 'baby': 1.0, 'save': 1.0, 'yourself': 1.0, 'need': 1.0, 'rest': 1.0, 'pieces': 1.0, 'go': 1.0, 'a': 2.0, 'maybe': 1.0, 'there': 1.0, 'mentioned': 1.0, 'reviews': 1.0, 'some': 1.0, 'to': 4.0, 'me': 1.0, 'and': 4.0, 'worst': 1.0, 'took': 1.0, 'particle': 1.0, 'are': 4.0, 'marked': 1.0, 'flimsy': 1.0, 'consider': 1.0, 'average': 1.0, 'you': 1.0, 'seen': 1.0, 'this': 2.0, 'it': 1.0, 'is': 2.0, 'very': 1.0, 'figure': 2.0, 'i': 2.0, 'two': 1.0, 'things': 1.0, 'board': 1.0, 'biggest': 1.0, 'days': 1.0, 'ever': 1.0, 'waste': 1.0, 'instructions': 1.0, 'of': 4.0, 'made': 1.0, 'out': 2.0, 'your': 1.0, 'furniture': 2.0, 'put': 1.0, 'above': 1.0, 'money': 2.0, 'but': 1.0, 'together': 1.0, 'the': 6.0, 'myself': 1.0, 'unstable': 1.0, 'has': 1.0, 'well': 1.0, 'for': 1.0, 'being': 1.0, 'handful': 1.0, 'have': 2.0, 'been': 1.0, 'that': 2.0, 'able': 1.0, 'included': 1.0, 'like': 1.0}
Word element => {'put': 1.0, 'piece': 1.0, 'nice': 2.0, 'still': 1.0, 'looks': 1.0, 'is': 1.0, 'used': 1.0, 'be': 1.0, 'of': 1.0, 'up': 1.0, 'combo': 1.0, 'table': 2.0, 'tables': 1.0, 'for': 1.0, 'dresser': 1.0, 'can': 1.0, 'item': 2.0, 'it': 3.0, 'this': 2.0, 'furniture': 1.0, 'purchased': 1.0, 'i': 3.0, 'when': 1.0, 'came': 1.0, 'very': 1.0, 'as': 1.0, 'changing': 3.0, 'assumed': 1.0, 'had': 1.0, 'was': 1.0, 'searched': 1.0, 'not': 1.0, 'since': 1.0, 'a': 3.0, 'together': 1.0, 'definitely': 1.0}
Word element => {'save': 1.0, 'without': 1.0, 'people': 1.0, 'dumb': 1.0, 'from': 1.0, 'were': 1.0, 'here': 1.0, 'on': 1.0, 'convince': 1.0, 'compared': 1.0, 'make': 1.0, 'into': 1.0, 'go': 1.0, 'a': 4.0, 'out': 1.0, 'wasn': 2.0, 'made': 1.0, 'if': 1.0, 'detail': 1.0, 'tried': 1.0, 'material': 1.0, 'be': 1.0, 'another': 1.0, 'trying': 1.0, 'problem': 1.0, 'within': 1.0, 'would': 2.0, '0': 1.0, 'even': 1.0, 'give': 1.0, 'not': 3.0, 'had': 1.0, 'photos': 1.0, 'my': 1.0, 'me': 1.0, 'have': 1.0, 'flat': 1.0, 'all': 1.0, 'as': 1.0, 'to': 5.0, 'giving': 1.0, 'sense': 2.0, 'table': 2.0, 'star': 1.0, 'back': 1.0, 'pos': 1.0, 'stars': 1.0, 't': 9.0, 'fit': 1.0, 'for': 2.0, 'i': 7.0, '4': 1.0, 'am': 2.0, 'yourself': 1.0, 'someone': 1.0, 'is': 2.0, 'and': 6.0, 'person': 1.0, 'of': 3.0, 'the': 7.0, 'just': 2.0, 'thrifty': 1.0, 'this': 4.0, 'few': 1.0, 'that': 1.0, 'fall': 1.0, 'because': 3.0, '1': 1.0, 'find': 1.0, 'incredibly': 1.0, 'only': 2.0, 'changing': 2.0, 'boyfriend': 1.0, 'pictures': 2.0, 'do': 4.0, 'him': 1.0, 'it': 9.0, 'bad': 1.0, 'first': 2.0, 'instructions': 1.0, 'don': 2.0, 'over': 1.0, 'parts': 1.0, 'in': 2.0, 'flush': 1.0, 'instruction': 1.0, 'reason': 1.0, 'looking': 1.0, 'cheap': 1.0, 'defeat': 1.0, 'videos': 1.0, 'started': 1.0, 'assembling': 1.0, 'couldn': 1.0, 'thing': 1.0, 'words': 1.0, 'online': 1.0, 'probably': 2.0, 'everyone': 1.0, 'won': 2.0, 'who': 1.0, 'can': 1.0, 'so': 1.0, 'decided': 2.0, 'months': 1.0, 'apart': 2.0, 'huge': 1.0, 'worth': 1.0, 'after': 1.0, 'hours': 1.0, 'build': 1.0, 'seeing': 2.0, 'aren': 1.0, 'they': 3.0, 'sturdy': 1.0, 'reviews': 1.0, 'we': 1.0, 'take': 1.0, 'buy': 2.0, 'ship': 1.0, 'was': 1.0, 'very': 1.0}
Word element => {'good': 1.0, 'was': 1.0, 'wish': 1.0, 'happy': 1.0, 'are': 1.0, 'picturesoverall': 1.0, 'just': 2.0, 'thicker': 1.0, 'figured': 1.0, 'not': 1.0, 'man': 1.0, 'terrible': 1.0, 'instructions': 1.0, 'i': 1.0, 'yearssturdy': 1.0, 'together': 2.0, 'cabinetsthe': 1.0, 'split': 1.0, 'single': 1.0, 'very': 1.0, 'wobble': 1.0, 'and': 5.0, 'out': 1.0, 'couple': 1.0, 'no': 1.0, 'drawers': 2.0, 'once': 2.0, 'of': 2.0, 'looks': 1.0, 'it': 4.0, 'pros': 1.0, 'is': 3.0, 'absolutely': 1.0, 'price': 1.0, 'nice': 2.0, 'which': 1.0, 'will': 1.0, 'backing': 2.0, 'inside': 1.0, 'cheap': 1.0, 'for': 3.0, 'we': 1.0, 'a': 6.0, 's': 2.0, 'piece': 1.0, 'some': 1.0, 'support': 2.0, 'that': 2.0, 'be': 2.0, 'used': 2.0, 'solidcons': 1.0, 'sturdyperfect': 1.0, 'but': 2.0, 'can': 1.0, 'easily': 1.0, 'am': 1.0, 'seen': 1.0, 'smaller': 1.0, 'room': 1.0, 'matches': 1.0, 'word': 1.0, 'our': 1.0, 'to': 1.0, 'size': 1.0, 'crib': 1.0, 'handy': 1.0, 'perfectlyfacing': 1.0, 'feels': 1.0, 'wood': 4.0, 'tad': 1.0, 'the': 6.0, 'plywoodscrewing': 1.0, 'in': 1.0}
Word element => {'of': 1.0, 'piece': 1.0, 'refund': 1.0, 'taking': 1.0, 'box': 1.0, 'in': 1.0, 'back': 2.0, 'cool': 1.0, 'pretty': 1.0, 'amazon': 3.0, 'hated': 1.0, 'follow': 1.0, 'buy': 1.0, 'falling': 1.0, 'out': 1.0, 'drawer': 1.0, 'themselves': 1.0, 'you': 1.0, 'giving': 1.0, 'him': 1.0, 'knobs': 1.0, 'trying': 1.0, 'fingernail': 1.0, 'i': 6.0, 'love': 1.0, 'disassembled': 1.0, 'com': 1.0, 'cheap': 2.0, 'want': 1.0, 'if': 1.0, 'say': 1.0, 'is': 4.0, 'furniture': 1.0, 'put': 1.0, 'on': 1.0, 'your': 1.0, 'would': 1.0, 'thought': 1.0, 'not': 1.0, 'give': 1.0, 'item': 1.0, 'full': 1.0, 'this': 3.0, 'it': 3.0, 'scratches': 1.0, 'and': 5.0, 'across': 1.0, 'ignoring': 1.0, 'see': 1.0, 'run': 1.0, 'my': 1.0, 'the': 4.0, 'we': 1.0, 'a': 4.0, 't': 2.0, 'particle': 1.0, 'reviews': 1.0, 'drawers': 2.0, 'pull': 1.0, 'line': 1.0, 'child': 1.0, 'don': 1.0, 'up': 3.0, 'board': 1.0, 'used': 1.0, 'bad': 1.0, 'probably': 1.0, 'won': 1.0, 'uses': 1.0, 'her': 1.0, 'negative': 1.0, 'last': 1.0, 'do': 2.0, 'try': 1.0, 'much': 1.0, 'but': 2.0, 'can': 1.0, 'past': 1.0, 'by': 1.0, 'few': 1.0, 'just': 1.0, 'coming': 1.0, 'small': 1.0, 'to': 2.0}
Word element => {'inside': 1.0, 'of': 1.0, 'able': 1.0, 'were': 1.0, 'evenly': 1.0, 'stop': 1.0, 'up': 1.0, 'don': 1.0, 'thing': 1.0, 'works': 1.0, 'only': 1.0, 'product': 1.0, 'recommended': 1.0, 'easy': 1.0, 'very': 1.0, 'chip': 1.0, 'when': 1.0, 'did': 1.0, 'quality': 1.0, 'and': 6.0, 'vittoria': 1.0, 'like': 2.0, 'good': 1.0, 'service': 1.0, 'really': 1.0, 'is': 3.0, 'that': 1.0, 'filled': 1.0, 'i': 2.0, 'have': 2.0, 'felt': 1.0, 'it': 1.0, 't': 3.0, 'we': 4.0, 'a': 6.0, 'craft': 1.0, 'match': 2.0, 'purchased': 1.0, 'to': 2.0, 'doesn': 2.0, 'was': 1.0, 'color': 1.0, 'the': 7.0, 'great': 2.0, 'put': 1.0, 'on': 2.0, 'with': 1.0, 'piece': 3.0, 'crib': 1.0, 'dresser': 1.0, 'receipt': 1.0, 'shipped': 1.0, 'this': 2.0, 'perfect': 1.0, 'top': 1.0, 'would': 1.0, 'new': 1.0, 'door': 1.0, 'received': 1.0, 'stork': 1.0, 'costumer': 1.0, 'form': 1.0, 'within': 1.0, 'out': 1.0, 'online': 1.0, 'picture': 1.0, 'few': 1.0, 'drawers': 1.0, 'they': 1.0, 'sent': 1.0, 'days': 1.0}
Word element => {'nightmare': 1.0, 'dresser': 1.0, 'used': 1.0, 'table': 1.0, 'shelf': 1.0, 'w': 1.0, 'design': 1.0, 'fortune': 1.0, 'nice': 1.0, 'love': 1.0, 'far': 1.0, 'nicely': 1.0, 'up': 1.0, 'holding': 1.0, 'seems': 1.0, 'now': 1.0, '6': 1.0, 'had': 2.0, 'things': 1.0, 'later': 1.0, 'very': 1.0, 'may': 1.0, 'looks': 1.0, 'my': 1.0, 'confusing': 1.0, 'they': 1.0, 'items': 1.0, 'these': 1.0, 'instructions': 1.0, 'your': 1.0, 'any': 1.0, 'drawers': 1.0, 'include': 1.0, 'not': 1.0, 'might': 1.0, 'directions': 1.0, 'requests': 1.0, 'part': 1.0, 'missing': 2.0, 'numerous': 1.0, 'nothing': 1.0, 'out': 1.0, 'reply': 1.0, 'automated': 1.0, 'them': 1.0, 'be': 4.0, 'seem': 1.0, 'lines': 1.0, 'didn': 3.0, 'cost': 1.0, 't': 6.0, 'emailed': 1.0, 'a': 15.0, 'everywhere': 1.0, 'either': 1.0, 'filled': 1.0, 'was': 1.0, 'found': 1.0, 'kids': 1.0, 'store': 1.0, 'seemed': 1.0, 'detail': 1.0, 'dark': 1.0, 'company': 1.0, 'checked': 1.0, 'in': 4.0, 'for': 2.0, 'reasonable': 1.0, 'did': 1.0, 'great': 5.0, 'agree': 1.0, 'looking': 1.0, 'furniture': 1.0, 'buy': 2.0, 'our': 1.0, 'to': 6.0, 'have': 6.0, 'begin': 1.0, 'this': 4.0, 'few': 1.0, 'just': 1.0, 'ton': 1.0, 'years': 1.0, 'points': 1.0, 'busy': 1.0, 'about': 2.0, 've': 1.0, 'several': 2.0, 'putting': 2.0, 'well': 1.0, 'i': 8.0, 'nursery': 2.0, 'trouble': 1.0, 'months': 2.0, 'together': 2.0, 'piece': 1.0, 'stores': 1.0, 'with': 2.0, 'over': 1.0, 'products': 1.0, 'product': 1.0, 'price': 1.0, 'child': 1.0, 'don': 2.0, 'one': 2.0, 'too': 1.0, 'and': 13.0, 'wood': 1.0, 'wow': 1.0, 'set': 3.0, 'the': 9.0, 'of': 1.0, 'it': 2.0, 'period': 1.0, 'research': 1.0, 'time': 1.0, 'constantly': 1.0, 'so': 4.0, 'liked': 1.0, 'stock': 1.0, '3': 2.0, 'on': 4.0, 'got': 2.0, 'pieces': 3.0, 'typical': 1.0, 'door': 1.0, 'husband': 1.0, 'babies': 1.0, 'fancy': 1.0, 'changing': 1.0, 'do': 1.0, 'r': 1.0, 'us': 1.0, 'combo': 1.0, 'an': 1.0, 'all': 2.0, 'matching': 1.0, 'other': 2.0, 'needs': 1.0, 'stork': 1.0, 'many': 1.0, 'baby': 1.0, 'but': 1.0, 'couldn': 1.0, 'find': 1.0, 'are': 4.0, 'expensive': 1.0, 'reviewers': 1.0, 'last': 2.0, 'at': 2.0, 'is': 4.0, 'depending': 1.0, 'phone': 1.0, 'where': 1.0, 're': 1.0, 'use': 1.0, 'as': 3.0, 'horrible': 2.0, 'or': 2.0, 'need': 1.0, '15': 1.0, 'read': 1.0, 'we': 3.0, 'reviews': 1.0, 'good': 1.0, 'plan': 1.0, 'made': 1.0, 'craft': 1.0, 'their': 1.0, 'customer': 1.0, 'service': 1.0}
Word element => {'hope': 1.0, 'good': 1.0, 'damage': 1.0, 'shipper': 1.0, 'company': 1.0, 'blame': 1.0, 'quick': 1.0, 'too': 1.0, 'people': 1.0, 'break': 1.0, 'wouldn': 1.0, 'box': 1.0, 'egg': 1.0, 'packaged': 1.0, 'also': 1.0, 'be': 1.0, 'you': 3.0, 't': 2.0, 'don': 1.0, 'items': 1.0, 'those': 1.0, 'with': 1.0, 'assembly': 1.0, 'solid': 1.0, 'run': 1.0, 'could': 2.0, 'a': 5.0, 's': 3.0, 'same': 1.0, 'if': 2.0, 'everything': 1.0, 'store': 1.0, 'wood': 1.0, 'instruction': 1.0, 'comments': 1.0, 'american': 1.0, 'it': 5.0, 'in': 3.0, 'perfect': 1.0, 'this': 4.0, 'probably': 1.0, 'your': 1.0, 'think': 2.0, 'impressed': 1.0, 'that': 4.0, 'there': 1.0, 'so': 2.0, 'worried': 1.0, 'time': 1.0, '700': 1.0, 'has': 1.0, 'world': 1.0, 'or': 1.0, '300': 1.0, 'about': 1.0, '3': 1.0, 'today': 1.0, 'parts': 1.0, 'stork': 1.0, 'from': 1.0, 'just': 2.0, 'why': 1.0, 'chest': 3.0, 'infant': 1.0, 'hardwoods': 1.0, 'many': 1.0, 'is': 3.0, '2': 1.0, 'but': 1.0, 'buying': 1.0, 'ship': 1.0, 'furniture': 2.0, 'buy': 2.0, 'beyond': 1.0, 'are': 5.0, 'bad': 1.0, 'an': 1.0, 'matching': 1.0, 'all': 2.0, 'luck': 1.0, 'disappointed': 1.0, 'our': 1.0, 'and': 8.0, 'dollar': 1.0, 'll': 1.0, 'star': 1.0, 'table': 1.0, 'me': 1.0, 'not': 2.0, 'find': 1.0, '1': 1.0, 'nice': 1.0, 'instructions': 1.0, 'we': 2.0, 'then': 1.0, 'take': 1.0, 'fine': 2.0, 'hundred': 1.0, 'reasonable': 1.0, 'raters': 1.0, 'they': 2.0, 'pictures': 1.0, 'changing': 1.0, 'match': 2.0, 'do': 1.0, 'very': 2.0, 'to': 4.0, 'usable': 1.0, 'given': 1.0, 'for': 1.0, 'comes': 2.0, 'room': 1.0, 'knew': 1.0, 'happen': 1.0, 'when': 2.0, 'i': 3.0, 'cheapness': 1.0, 'the': 9.0, 'of': 1.0, 'useful': 1.0, 'craft': 1.0, 'heirloom': 1.0, 'more': 1.0, 'impressive': 1.0, 'crib': 1.0, 'line': 1.0, 'have': 1.0, 'even': 1.0}
Word element => {'marker': 1.0, 'with': 1.0, 'alot': 1.0, 'touch': 1.0, 'scratched': 1.0, 'easily': 1.0, 'is': 1.0, 'flimsy': 1.0, 'and': 1.0, 'drawer': 1.0, 'wrecking': 1.0, 'backing': 1.0, 'screws': 1.0, 'board': 1.0, 'up': 1.0, 'assembly': 1.0, 'no': 1.0, 'two': 1.0, 'of': 2.0, 'visual': 1.0, 'have': 1.0, 'this': 1.0, 'it': 2.0, 'he': 1.0, 'not': 2.0, 'because': 1.0, 'written': 1.0, 'instructions': 2.0, 'was': 1.0, 'husband': 1.0, 'had': 1.0, 'purchased': 1.0, 'booklet': 1.0, 'got': 1.0, 'bottoms': 1.0, 'pieces': 2.0, 'labelling': 1.0, 'parts': 1.0, 'to': 2.0, 'as': 1.0, 'stain': 1.0, 'labelled': 1.0, 'match': 1.0, 'us': 1.0, 'we': 1.0, 'go': 1.0, 'a': 1.0, 'are': 3.0, 'particle': 1.0, 'the': 9.0, 'in': 1.0, 'majority': 1.0, 'frustruated': 1.0, 'gift': 1.0, 'or': 1.0, 'mostly': 1.0, 'only': 1.0, 'do': 1.0, 'through': 1.0, 'took': 1.0, 'my': 1.0, 'days': 1.0, 'product': 1.0, 'for': 2.0, 'assemble': 1.0, 'so': 3.0, 'instruction': 1.0, 'wood': 3.0}
Word element => {'elsewhere': 1.0, 'want': 1.0, 'little': 1.0, 'don': 1.0, 'boards': 1.0, 'split': 1.0, 'as': 1.0, 'perform': 1.0, 'will': 2.0, 'assemble': 2.0, 'some': 1.0, 'use': 1.0, 'if': 4.0, 'dresser': 1.0, 'serviceable': 1.0, 'in': 1.0, 'screwing': 1.0, 'gluing': 1.0, 'screws': 1.0, 'by': 1.0, 'solved': 1.0, 'issue': 1.0, 'design': 1.0, 'actually': 1.0, 'care': 1.0, 'cheap': 2.0, 'for': 2.0, 'who': 1.0, 'splitting': 1.0, 'effort': 1.0, 'bought': 1.0, 'mind': 1.0, 'indicate': 1.0, 'recommend': 1.0, 'together': 1.0, 'corner': 1.0, 'work': 1.0, 'ok': 2.0, 'paper': 1.0, 'seem': 1.0, 'engineered': 1.0, 's': 2.0, 'go': 1.0, 'a': 5.0, 'we': 1.0, 'keep': 1.0, 'causes': 1.0, 'pretty': 1.0, 'to': 6.0, 'into': 1.0, 'designed': 1.0, 'directed': 1.0, 'tuscany': 1.0, 'and': 9.0, 'all': 3.0, 'ever': 1.0, 'drill': 1.0, 'of': 1.0, 'the': 16.0, 'main': 1.0, 'assembled': 1.0, 'mdf': 2.0, 'no': 1.0, 'told': 1.0, 'enough': 1.0, 'supports': 1.0, 'despite': 2.0, 'parts': 1.0, 'stork': 1.0, 'mixed': 1.0, 're': 1.0, 'i': 2.0, 'well': 2.0, 'craft': 1.0, 'be': 1.0, 'this': 4.0, 'looking': 1.0, 'using': 1.0, 'bag': 1.0, 'with': 1.0, 'rigid': 1.0, 'unexpectedly': 1.0, 'that': 2.0, 'problems': 1.0, 'because': 1.0, 'put': 1.0, 'on': 2.0, 'quality': 3.0, 'cracking': 1.0, 'was': 2.0, 'good': 3.0, 'creativity': 1.0, 'just': 1.0, 'it': 13.0, 'drew': 1.0, 'you': 6.0, 'said': 1.0, 'backing': 1.0, '34': 6.0, 'price': 1.0, 'only': 1.0, 'simply': 1.0, 'whatever': 1.0, 'll': 1.0, 'would': 1.0, 'news': 1.0, 'look': 2.0, 'attaching': 1.0, 'is': 3.0, 'are': 3.0, 't': 1.0, 'fairly': 1.0, 'they': 3.0, 'sturdy': 2.0, 'but': 2.0, 'board': 3.0, 'real': 1.0, 'while': 1.0, 'wood': 2.0, 'or': 2.0, 'simplicity': 1.0, 'panels': 1.0, 'largely': 1.0, 'matched': 1.0, 'particle': 3.0, 'instead': 1.0, 'components': 1.0, 'help': 1.0, 'can': 2.0, 'so': 1.0, 'seems': 1.0, 'crib': 2.0, 'compromise': 1.0, 'problem': 2.0, 'requires': 1.0, 'screw': 1.0, 'one': 1.0, 'rear': 1.0, 'efforts': 1.0, 'muster': 1.0}
Word element => {'are': 1.0, 'reviews': 1.0, 'simple': 1.0, 'other': 2.0, 'were': 1.0, 'great': 1.0, 'in': 1.0, 'directions': 1.0, 'i': 2.0, 'talking': 1.0, 'putting': 1.0, 'piece': 1.0, 'furniture': 1.0, 'put': 2.0, 'an': 1.0, 'past': 1.0, 'but': 1.0, 'harder': 1.0, 'together': 3.0, 'was': 2.0, 'of': 3.0, 'takes': 1.0, 'excessive': 1.0, 'about': 1.0, 'no': 1.0, 'at': 1.0, 'some': 1.0, 'than': 1.0, 'have': 1.0, 'this': 2.0, 'item': 2.0, 'and': 1.0, 'to': 1.0, 'all': 1.0, 'any': 1.0, 'the': 3.0, 'assembled': 1.0, 'accurate': 1.0, 'not': 3.0, 'course': 1.0, 'it': 2.0, 'looks': 1.0, 'like': 1.0, 'time': 1.0, 'overall': 1.0, 'a': 1.0, 'problem': 1.0, 'when': 1.0, 'am': 1.0, 'sure': 1.0, 'what': 1.0}
Word element => {'value': 1.0, 'at': 1.0, 'maybe': 1.0, 'assemble': 1.0, 'take': 1.0, 'so': 1.0, 'and': 2.0, 'table': 1.0, 'well': 1.0, 'a': 3.0, 'long': 1.0, 'works': 1.0, 'expensive': 1.0, 'hour': 1.0, 's': 3.0, 'looks': 1.0, 'an': 1.0, 'but': 1.0, 'furniture': 1.0, 'most': 1.0, 'use': 1.0, 'beautiful': 2.0, 'i': 2.0, 'dresser': 1.0, 'to': 1.0, 'had': 1.0, 'love': 1.0, 'this': 1.0, 'it': 7.0, 'changing': 1.0, 'as': 1.0, 'very': 1.0, 'obviously': 1.0, 'not': 1.0, 've': 1.0, 'we': 2.0, 'think': 1.0, 'compliments': 1.0, 'didn': 1.0, 'tons': 1.0, 'of': 2.0, 'piece': 1.0, 'on': 1.0, 'great': 1.0, 't': 1.0, 'the': 2.0, 'top': 1.0}
Word element => {'now': 1.0, 'fill': 1.0, 'wait': 1.0, 'can': 1.0, 'one': 1.0, 'little': 1.0, 'for': 1.0, 'drawers': 1.0, 'smoothly': 1.0, 'matches': 1.0, 'easy': 1.0, 'pretty': 1.0, 'dresser': 1.0, 'together': 2.0, 'our': 1.0, 'to': 3.0, 'as': 1.0, 'crib': 1.0, 'close': 1.0, 'looks': 2.0, 'great': 4.0, 'the': 1.0, 'nicely': 1.0, 'craft': 1.0, 'well': 1.0, 'stork': 1.0, 'other': 2.0, 'espresso': 1.0, 'time': 1.0, 'have': 1.0, 'from': 1.0, 'slide': 1.0, 'products': 2.0, 'i': 2.0, 'and': 2.0, 'do': 1.0, 'circles': 1.0, 'sturdy': 1.0, 'large': 1.0, 'changing': 1.0, 'that': 1.0, 'not': 1.0, 'handles': 1.0, 'spin': 1.0, 'in': 2.0, 've': 1.0, 'or': 1.0, 'loosen': 1.0, 'over': 1.0, 'table': 1.0, 'like': 1.0, 'encountered': 1.0, 't': 1.0, 'a': 1.0, 'going': 1.0, 'put': 1.0, 'make': 1.0}
Word element => {'plated': 1.0, 'gold': 1.0, 'entitle': 1.0, 'should': 1.0, '250': 2.0, 'there': 1.0, 'by': 1.0, 'turned': 1.0, 'am': 1.0, 'lazy': 1.0, 'directions': 1.0, 'follow': 1.0, 'very': 2.0, 'don': 1.0, 'who': 2.0, 'people': 2.0, 'from': 1.0, 'came': 1.0, 'power': 1.0, 'dresser': 2.0, 'back': 1.0, 'in': 1.0, 'hole': 1.0, 'just': 1.0, 'flimsy': 1.0, 'happy': 1.0, 'lot': 4.0, 'at': 1.0, 'keep': 1.0, 'than': 1.0, 'does': 1.0, 'make': 1.0, 'furniture': 2.0, 'think': 3.0, 'rather': 1.0, 'the': 12.0, 'of': 7.0, 'would': 1.0, 'surprise': 1.0, 'no': 2.0, 'together': 4.0, 'espresso': 1.0, 'but': 1.0, 'cord': 1.0, 'for': 4.0, 'over': 2.0, 'knobs': 1.0, 'drilled': 1.0, 'arrived': 1.0, 'worked': 1.0, 't': 1.0, 'ago': 1.0, 'reviews': 1.0, 'we': 2.0, 'an': 1.0, 'fits': 1.0, 'little': 3.0, 'be': 1.0, 'bought': 1.0, 'color': 1.0, 'decided': 1.0, 'i': 9.0, 'when': 2.0, 'diamonds': 1.0, 'before': 1.0, 'room': 1.0, 'pretty': 1.0, 'to': 8.0, 'as': 2.0, 'how': 1.0, 'our': 1.0, 'was': 3.0, 'have': 3.0, 'a': 13.0, 'small': 2.0, 'son': 1.0, 'year': 1.0, 'put': 5.0, 'changing': 5.0, 'parts': 1.0, 'basket': 1.0, 'cant': 1.0, 'this': 2.0, 'hardware': 2.0, 'it': 9.0, 'good': 1.0, 'which': 1.0, 'man': 1.0, 'and': 5.0, 'my': 2.0, 'me': 2.0, 'unpacked': 1.0, 'off': 1.0, 'yes': 1.0, 'personally': 1.0, 'took': 1.0, 'with': 3.0, 'that': 2.0, 'problems': 1.0, 'them': 1.0, 'has': 1.0, 'out': 1.0, 'great': 1.0, 'us': 1.0, 'pad': 2.0, 'on': 2.0, 'prefect': 1.0, 'know': 1.0, 'easy': 1.0, 'leaves': 1.0, 'spent': 1.0, 'some': 1.0, 'solid': 1.0, 'bottom': 1.0, 'inside': 1.0, 'pieces': 1.0, 'got': 1.0, 'are': 1.0, 'bad': 1.0, 'diapers': 1.0, 'same': 1.0, 'hour': 1.0, 'lotion': 1.0, 'born': 1.0, 'various': 1.0, 'bucks': 2.0, 'you': 1.0, 'things': 1.0, 'or': 1.0, 'need': 1.0, 'wanted': 1.0, 'wife': 1.0, 'baby': 1.0, 'wipe': 1.0, 'so': 2.0, 'warmer': 1.0, 'table': 2.0, 'right': 1.0, 'more': 1.0, 'door': 1.0, 'top': 1.0, 'shelf': 1.0}
Word element => {'consuming': 1.0, 'tedious': 1.0, 'to': 1.0, 'assembly': 1.0, 'downside': 1.0, 'price': 1.0, 'the': 3.0, 'this': 2.0, 'time': 1.0, 'is': 4.0, 'a': 1.0, 'only': 1.0, 'quality': 1.0, 'and': 2.0, 'table': 1.0, 'for': 1.0, 'dresser': 2.0, 'great': 2.0, 'changing': 1.0, 'it': 1.0, 'works': 1.0, 'that': 1.0, 'reasonable': 1.0}
Word element => {'down': 1.0, 'thumbs': 1.0, 'two': 1.0, 'off': 2.0, 'because': 1.0, 'wood': 1.0, 'fake': 1.0, 'door': 1.0, 'they': 1.0, 'and': 1.0, 'cabinet': 2.0, 'to': 1.0, 'came': 1.0, 'ripped': 1.0, 'the': 7.0, 'of': 2.0, 'are': 1.0, 'keeps': 1.0, 'inside': 1.0, 'far': 1.0, 'top': 1.0, 'drawer': 1.0, 'apart': 2.0, 'falling': 1.0, 'sliders': 1.0, 'too': 1.0}
Word element => {'peice': 1.0, 'project': 1.0, 'a': 1.0, 'dont': 1.0, 'you': 2.0, 'if': 1.0, 'confusing': 1.0, 'vague': 1.0, 'mind': 1.0, 'are': 1.0, 'the': 2.0, 'easy': 1.0, 'is': 2.0, 'that': 1.0, 'for': 1.0, 'directions': 1.0, 'love': 1.0, 'give': 1.0, 'of': 1.0, 'not': 1.0, 'self': 1.0, 'complete': 1.0, 'pieces': 1.0, 'in': 1.0, 'some': 1.0, 'hours': 1.0, 'your': 1.0, 'impossible': 1.0, 'literally': 1.0, 'this': 2.0, 'it': 4.0, 'thing': 1.0, 'together': 1.0, 'its': 1.0, 'now': 1.0, 'comes': 1.0, 'to': 1.0, 'but': 1.0, 'put': 1.0, 'i': 1.0, 'nots': 1.0, 'and': 3.0, 'hundred': 1.0, 'do': 1.0, 'reallly': 1.0}
Word element => {'plus': 1.0, 'a': 1.0, 'showed': 1.0, 'picture': 1.0, 'than': 1.0, 'larger': 1.0, 'the': 2.0, 'is': 3.0, 'bureau': 1.0, 'shape': 1.0, 'arrived': 1.0, 'which': 1.0, 'in': 1.0, 'big': 1.0, 'good': 1.0, 'nice': 1.0, 'and': 1.0, 'very': 1.0, 'it': 1.0}
Word element => {'taller': 1.0, 'us': 1.0, 'for': 1.0, 'prefect': 1.0, 'and': 1.0, 'very': 1.0, 'spacious': 1.0, 'assistance': 1.0, 'height': 1.0, 'a': 1.0, 'love': 1.0, 'it': 1.0, 'parents': 1.0, 'took': 1.0, 'about': 1.0, 'easy': 1.0, 'assemble': 1.0, 'half': 1.0, 'to': 1.0, 'hour': 1.0, 'with': 1.0}
Word element => {'one': 1.0, 'another': 1.0, 'pick': 1.0, 'awful': 1.0, 'absolutely': 1.0, 'just': 1.0, 'small': 1.0, 'tracks': 1.0, 'drawer': 1.0, 'fully': 1.0, 'holes': 1.0, 'drawers': 2.0, 'it': 3.0, 'this': 2.0, 'don': 2.0, 'wobbly': 1.0, 'up': 1.0, 'once': 1.0, 'of': 2.0, 'bottom': 1.0, 'drilled': 1.0, 'too': 1.0, 'and': 3.0, 'couldn': 1.0, 'screws': 1.0, 'quality': 1.0, 'dresser': 2.0, 'line': 1.0, 'be': 1.0, 'worse': 1.0, 'terrible': 1.0, 'correctly': 1.0, 'assemble': 1.0, 'for': 2.0, 'close': 1.0, 'are': 2.0, 'open': 1.0, 'particle': 1.0, 'hinges': 1.0, 'assembled': 1.0, 'the': 7.0, 'cardboard': 1.0, 'not': 1.0, 'even': 1.0, 'board': 1.0, 'much': 1.0, 'less': 1.0, 'wood': 1.0, 'secure': 1.0, 'also': 1.0, 'in': 1.0, 'pieces': 1.0, 'complicated': 1.0, 'to': 1.0, 't': 3.0, 's': 2.0, 'a': 2.0, 'million': 1.0, 'comes': 1.0, 'is': 2.0}
Word element => {'trash': 1.0, 'sadly': 1.0, 'part': 1.0, 'another': 1.0, 'attach': 1.0, 'sent': 1.0, 'really': 1.0, 'service': 1.0, 'customer': 1.0, 'whole': 1.0, 'house': 1.0, 'new': 2.0, 'move': 1.0, 'very': 1.0, 'later': 1.0, 'years': 1.0, 'thing': 2.0, '2': 1.0, 'they': 1.0, 'sturdy': 1.0, 'sure': 1.0, 'design': 1.0, 'never': 1.0, 'reason': 1.0, 'simple': 2.0, 'need': 1.0, 'or': 1.0, 'chipping': 1.0, 'the': 13.0, 'apart': 2.0, 'assemble': 1.0, 'product': 1.0, 'for': 3.0, 'not': 1.0, 'track': 1.0, 'difficult': 1.0, 'am': 2.0, 'when': 2.0, 'extremely': 1.0, 'door': 1.0, 'was': 2.0, 'as': 3.0, 'spilled': 1.0, 'had': 1.0, 'are': 1.0, 'wood': 2.0, 'ripped': 1.0, 'cribs': 5.0, 'tuscany': 1.0, '50': 1.0, 'and': 8.0, 'a': 4.0, 'take': 1.0, 'we': 2.0, 'could': 2.0, 't': 1.0, 'without': 1.0, 'warping': 1.0, 'craft': 1.0, 'stork': 1.0, 'two': 1.0, 'by': 1.0, 'dresser': 1.0, 'it': 4.0, 'few': 1.0, 'this': 3.0, 'spill': 1.0, 'kids': 1.0, 'piece': 1.0, 'together': 2.0, 'were': 1.0, 'comparison': 1.0, 'so': 3.0, 'assumed': 1.0, 'called': 1.0, 'bought': 2.0, 'entire': 1.0, 'me': 1.0, 'reasons': 1.0, 'get': 1.0, 'months': 1.0, 'be': 2.0, 'broke': 1.0, 'well': 1.0, 'i': 12.0, 'putting': 1.0, 'would': 1.0, 've': 1.0, 'but': 2.0, 'safety': 1.0, 'also': 1.0, 'came': 1.0, 'tried': 2.0, 'off': 1.0, 'unsteady': 1.0, 'amazing': 1.0, 'only': 1.0, 'after': 1.0, 'put': 1.0, 'on': 1.0, 'furniture': 1.0, 'in': 1.0, 'm': 1.0, 'to': 6.0, 'became': 1.0, 'pretty': 1.0, 'which': 4.0, 'good': 2.0, 'drawers': 1.0, 'clean': 1.0, 'things': 1.0, 'because': 2.0, 'that': 2.0, 'over': 1.0, 'happen': 1.0, 'before': 2.0, 'top': 1.0, 'is': 4.0, 'at': 1.0, 'warped': 1.0, 'water': 1.0, 'up': 1.0, 'isn': 1.0, 'even': 1.0, 'practical': 1.0, 'writing': 1.0, 'however': 1.0, 'now': 1.0}
Word element => {'sides': 1.0, 'drawer': 1.0, 'if': 1.0, 'of': 1.0, 'capacity': 1.0, 'increase': 1.0, 'my': 1.0, 'nice': 1.0, 'critique': 1.0, 'is': 1.0, 'or': 1.0, 'good': 1.0, 'scratches': 1.0, 'no': 2.0, 'there': 1.0, 'were': 2.0, 'that': 1.0, 'shipping': 1.0, 'looks': 1.0, 'it': 3.0, 'nursery': 1.0, 'only': 1.0, 'dresser': 1.0, 'together': 1.0, 'was': 2.0, 'our': 1.0, 'as': 4.0, 'to': 1.0, 'in': 2.0, 'reason': 1.0, 'dents': 1.0, 'greatly': 1.0, 'and': 2.0, 'easy': 1.0, 'arrived': 1.0, 'put': 1.0, 'one': 1.0, 'for': 1.0, 'the': 6.0, 'could': 1.0, 'be': 1.0, 'drawers': 1.0, 'they': 1.0, 'deeper': 1.0, 'are': 1.0, 'half': 1.0, 'deep': 2.0, 'front': 2.0, 'see': 1.0, 'quick': 1.0, 'piece': 2.0, 'tact': 1.0, 'i': 1.0, 'can': 1.0, 'would': 1.0}
Word element => {}
Word element => {'when': 1.0, 'a': 1.0, 'serve': 1.0, 'easily': 1.0, 'can': 1.0, 'of': 1.0, 'has': 1.0, 'and': 1.0, 'beautiful': 1.0, 'i': 1.0, 'in': 1.0, 'worried': 1.0, 'room': 1.0, 'person': 1.0, 'better': 1.0, 'is': 3.0, 'table': 1.0, 'but': 1.0, 'quality': 1.0, 'as': 1.0, 'changing': 1.0, 'even': 1.0, 'low': 1.0, 'older': 1.0, 'it': 2.0, 'this': 1.0, 's': 1.0, 'great': 1.0, 'the': 3.0, 'due': 1.0, 'was': 1.0, 'to': 1.0, 'baby': 1.0, 'lots': 1.0, 'dresser': 2.0, 'about': 1.0, 'price': 1.0}
Word element => {'that': 1.0, 'take': 1.0, 'would': 2.0, 'you': 1.0, 'so': 1.0, 'they': 1.0, 'drawers': 2.0, 'shallowness': 1.0, 'only': 1.0, 'advantage': 1.0, 'although': 1.0, 'crib': 2.0, 'matching': 1.0, 'paired': 1.0, 'door': 1.0, 'how': 1.0, 'sturdy': 1.0, 'thick': 1.0, 'very': 1.0, 'expected': 1.0, 'are': 1.0, 'nicer': 1.0, 'of': 4.0, 'the': 8.0, 'with': 4.0, 'this': 3.0, 'heavy': 1.0, 'first': 1.0, 'looks': 1.0, 'it': 5.0, 'instructions': 1.0, '8': 1.0, 'have': 1.0, 'space': 1.0, 'since': 1.0, 'lot': 1.0, 'at': 1.0, 'some': 1.0, 'hours': 1.0, 'think': 1.0, 'put': 1.0, '2': 1.0, 'pregnant': 1.0, 'but': 1.0, 'just': 1.0, 'black': 1.0, 'engineers': 1.0, 'my': 2.0, 're': 2.0, 'months': 1.0, 'bought': 1.0, 'lifting': 1.0, 'quality': 1.0, 'baby': 1.0, 'sense': 1.0, 'together': 1.0, 'dresser': 3.0, 'no': 1.0, 'thing': 1.0, 'about': 1.0, 'all': 1.0, 'our': 1.0, 'any': 1.0, 'was': 1.0, 'laws': 1.0, 'otherwise': 1.0, 'i': 5.0, 'then': 1.0, 'took': 1.0, 'us': 1.0, 'in': 2.0, 'love': 2.0, 'for': 1.0, 'help': 1.0, 'understand': 1.0, 'from': 1.0, 'makes': 1.0, 'problems': 1.0, 'deep': 1.0, 'husband': 1.0, 'and': 2.0, 'because': 1.0, 'maybe': 1.0, 'a': 1.0, 't': 2.0, 's': 1.0, 'we': 3.0, 'didn': 2.0, 'is': 2.0}
Word element => {'beautiful': 1.0, 'for': 1.0, 'love': 1.0, 'after': 1.0, 'labeled': 1.0, 'descriptive': 1.0, 'just': 1.0, 'instructions': 1.0, 'one': 1.0, 'say': 1.0, 'isn': 1.0, 'takes': 1.0, 'is': 3.0, 'look': 2.0, 'anyone': 2.0, 'and': 7.0, 'intimidated': 1.0, 'to': 8.0, 'as': 2.0, 'have': 4.0, 'crib': 2.0, 'probably': 1.0, 'dresser': 6.0, 'piece': 1.0, 'recommend': 2.0, 'together': 5.0, 'were': 3.0, 'off': 1.0, 'box': 1.0, 'skeptical': 1.0, 'those': 1.0, 'wrong': 1.0, 'not': 1.0, 'stork': 1.0, 'abundance': 1.0, 'in': 1.0, 't': 1.0, 'confusion': 1.0, 'a': 4.0, 'of': 3.0, 'the': 11.0, 'when': 1.0, 'finish': 1.0, 'read': 2.0, 'very': 3.0, 'table': 3.0, 'sturdy': 2.0, 'loved': 1.0, 'took': 2.0, 'this': 6.0, 'it': 4.0, 'are': 1.0, 'bad': 2.0, 'first': 1.0, 'totally': 1.0, 'hear': 1.0, 'so': 2.0, 'many': 2.0, 'two': 1.0, 'buy': 1.0, 'drill': 1.0, 'we': 7.0, 'reviews': 4.0, 'about': 3.0, 'looking': 1.0, 'using': 1.0, 'forever': 1.0, 'including': 1.0, 'was': 4.0, 'all': 3.0, 'other': 2.0, 'combo': 3.0, 'an': 1.0, 'never': 2.0, 'espresso': 1.0, 'but': 4.0, 'write': 1.0, 'that': 1.0, 'because': 1.0, 'power': 1.0, 'things': 1.0, 'product': 1.0, 'figured': 1.0, 'or': 1.0, 'need': 1.0, 'which': 2.0, 'good': 1.0, 'ourselves': 1.0, 'craft': 1.0, 'putting': 2.0, 'i': 8.0, 'well': 1.0, 'people': 1.0, 'half': 1.0, 'start': 1.0, 'colors': 1.0, 'pictures': 1.0, 'changing': 3.0, 'put': 3.0, 'match': 1.0, 'screw': 1.0, 'fantastic': 1.0, 'great': 1.0, 'out': 1.0, 'by': 1.0, 'had': 1.0, 'screws': 1.0, 'boards': 1.0, 'from': 1.0, 'looks': 1.0, 'my': 1.0, 'husband': 1.0, 'hours': 1.0, 'there': 2.0, '3rd': 1.0, 'item': 1.0, 'did': 1.0, 'would': 2.0}
Word element => {'works': 1.0, 'shower': 1.0, 'not': 2.0, 'dresser': 3.0, 'put': 1.0, 'the': 7.0, 'hanging': 1.0, '2': 1.0, 'but': 2.0, 'work': 1.0, 'my': 2.0, 'another': 1.0, 'took': 1.0, 'condition': 1.0, 'drawers': 1.0, 'second': 1.0, 's': 2.0, 'a': 5.0, 'ago': 1.0, 't': 1.0, 'for': 3.0, 'good': 1.0, 'which': 1.0, 'together': 1.0, 'were': 1.0, 'about': 1.0, 'several': 1.0, 'armoire': 2.0, 'he': 2.0, 'only': 1.0, 'nursery': 1.0, 'it': 3.0, 'been': 1.0, 'as': 2.0, 'all': 1.0, 'matching': 2.0, 'and': 6.0, 'purchased': 1.0, 'had': 2.0, 'arrived': 1.0, 'product': 1.0, 'child': 1.0, 'tension': 1.0, 'storkcraft': 1.0, 'labled': 1.0, 'manner': 1.0, 'dents': 1.0, 'has': 1.0, 'lasted': 1.0, 'hours': 1.0, 'sooner': 1.0, 'in': 3.0, 'closet': 1.0, 'husband': 1.0, 'that': 4.0, 'deep': 1.0, 'curtain': 1.0, 'delivered': 1.0, 'problem': 1.0, 'illustrated': 1.0, 'with': 3.0, 'labels': 2.0, 'three': 1.0, 'so': 1.0, 'have': 1.0, 'complaint': 1.0, 'done': 1.0, 'finished': 1.0, 'at': 1.0, 'is': 1.0, 'nice': 1.0, 'instructions': 1.0, 'bought': 2.0, 'crib': 1.0, 'no': 2.0, 'years': 1.0, 'son': 1.0, 'to': 1.0, 'timely': 1.0, 'pretty': 1.0, 'this': 2.0, 'few': 1.0, 'could': 1.0, 'scratches': 1.0, 'are': 1.0, 'very': 1.0, 'we': 4.0, 'fine': 2.0, 'baby': 1.0, 'was': 3.0, 'clothes': 1.0, 'pieces': 2.0, 'got': 1.0, 'didn': 1.0, 'same': 1.0, 'well': 2.0, 'i': 1.0, 'our': 1.0, 'disappointed': 1.0, 'come': 1.0, 'rod': 2.0}
Word element => {'don': 1.0, 'freak': 1.0, 'visible': 1.0, 'inside': 1.0, 'designed': 1.0, 'way': 1.0, 'ok': 1.0, 'espresso': 2.0, 'but': 1.0, 'box': 1.0, 'throw': 1.0, 'item': 1.0, 'you': 4.0, 'was': 5.0, 'pieces': 4.0, 'parts': 1.0, 'making': 1.0, 'stars': 1.0, 'product': 1.0, 'some': 2.0, 'when': 1.0, 'roll': 1.0, 'didn': 1.0, 'in': 1.0, 'said': 1.0, 'would': 1.0, 'thing': 1.0, 'have': 2.0, 'step': 1.0, 'well': 1.0, 'i': 3.0, '4': 1.0, 'dresser': 1.0, 'colored': 1.0, 'mistakes': 1.0, 'given': 1.0, 'correctly': 1.0, 'reversed': 1.0, 'bit': 1.0, 'however': 1.0, 'am': 1.0, 'are': 4.0, 'first': 1.0, 'this': 3.0, 'it': 7.0, 'go': 1.0, 'a': 2.0, 't': 2.0, '5': 1.0, 'bolts': 1.0, 'has': 1.0, 'them': 1.0, 'solely': 1.0, 'quality': 2.0, 'holes': 1.0, 'reviews': 1.0, 'drawers': 1.0, 'they': 2.0, 'of': 3.0, 'the': 15.0, 's': 1.0, 'giving': 1.0, 'trying': 1.0, 'and': 3.0, 'on': 2.0, 'put': 1.0, 'instructions': 1.0, 'somewhat': 1.0, 'not': 5.0, 'where': 1.0, 'cabinet': 1.0, 'difficult': 2.0, 'time': 1.0, 'purchase': 1.0, 'simply': 1.0, 'consuming': 1.0, 'while': 1.0, 'to': 2.0, 'other': 1.0, 'all': 2.0, 'figure': 1.0, 'very': 1.0, 'read': 1.0, 'couple': 1.0, 'were': 2.0, 'together': 1.0, 'piece': 1.0, 'included': 1.0, 'out': 2.0, 'finished': 1.0, 'is': 2.0, 'off': 1.0, 'seems': 1.0, 'based': 1.0, 'which': 1.0, 'good': 1.0, 'referring': 1.0, 'did': 3.0, 'people': 1.0, 'who': 1.0, 'right': 2.0, 'or': 1.0, 'door': 1.0, 'close': 1.0, 'may': 1.0, 'my': 1.0, 'picture': 2.0, 'best': 1.0, 'guess': 1.0, 'that': 6.0, 'because': 2.0, 'open': 1.0, 'labeled': 1.0, 'work': 1.0, 'black': 1.0, 'perfectly': 1.0, 'let': 1.0, 'ours': 1.0, 'if': 1.0}
Word element => {'money': 1.0, 'of': 1.0, 'waste': 1.0, 'what': 1.0, 'box': 1.0, 'into': 1.0, 'drill': 1.0, 'disappointed': 1.0, 'in': 1.0, 'crumbles': 1.0, 'room': 1.0, 'door': 1.0, 'dismantle': 1.0, 'there': 1.0, 'no': 1.0, 'bump': 1.0, 'together': 2.0, 'the': 5.0, 'a': 1.0, 't': 1.0, 'error': 1.0, 'drawers': 1.0, 'holes': 1.0, 'is': 2.0, 'more': 1.0, 'well': 1.0, 'return': 1.0, 'to': 4.0, 'put': 2.0, 'quality': 1.0, 'back': 1.0, 'difficult': 1.0, 'not': 1.0, 'material': 1.0, 'unrepairable': 1.0, 'and': 6.0, 'drilled': 1.0, 'didn': 1.0, 'then': 3.0, 'try': 1.0, 'for': 1.0, 'product': 1.0, 'fit': 1.0, 'this': 1.0, 'it': 2.0, 'are': 1.0, 'pre': 1.0, 'you': 1.0, 'very': 1.0, 'would': 2.0, 'was': 1.0, 'recommend': 1.0, 'take': 1.0, 'time': 2.0}
Word element => {'highly': 1.0, 'with': 1.0, 'happy': 1.0, 'very': 1.0, 'still': 1.0, 'had': 1.0, 'would': 1.0, 've': 1.0, 'getting': 1.0, 'trickiest': 1.0, 'straight': 1.0, 'pretty': 1.0, 'recommend': 1.0, 'was': 2.0, 'or': 1.0, 'an': 1.0, 'took': 1.0, 'properly': 1.0, 'part': 1.0, 'hard': 1.0, 'so': 2.0, 'are': 1.0, 'scratches': 1.0, 'knicks': 1.0, 'have': 1.0, 'already': 1.0, 'lot': 1.0, 'they': 1.0, 'incredibly': 1.0, 'admired': 1.0, 'purchase': 1.0, 'my': 3.0, 'seen': 1.0, 'putting': 1.0, 'be': 1.0, 'months': 1.0, 'bought': 1.0, 'technically': 1.0, 'forward': 1.0, 'crib': 1.0, 'shut': 1.0, 'if': 1.0, 'it': 3.0, 'kids': 1.0, 'this': 1.0, 'together': 1.0, 'dresser': 2.0, 'of': 5.0, 'years': 1.0, 'ton': 1.0, 'furniture': 1.0, 'on': 4.0, 'i': 5.0, 'and': 6.0, 'now': 1.0, 'matching': 1.0, 'the': 7.0, 'nursery': 3.0, 'only': 1.0, 'dollars': 1.0, 'figured': 1.0, 'why': 1.0, 'hour': 1.0, 'will': 1.0, 'spend': 2.0, 'love': 1.0, 'for': 2.0, 'about': 2.0, 'whereas': 1.0, 'mine': 1.0, 'few': 1.0, 'tons': 1.0, 'set': 3.0, 'used': 1.0, 'sets': 2.0, '6': 1.0, 'door': 1.0, 'girlfriends': 2.0, 'went': 1.0, 'but': 1.0, 'money': 2.0, 'anyways': 1.0, 'to': 1.0, 'all': 1.0, 'couple': 1.0, 'out': 1.0, 'their': 2.0, 'that': 2.0, 'a': 6.0, 's': 1.0, 'spent': 1.0, 'baby': 1.0, 'thousands': 1.0, 'got': 1.0, 'everyone': 1.0, 'half': 1.0, 'has': 2.0}
Word element => {'with': 1.0, 'match': 1.0, 'crib': 1.0, 'craft': 1.0, 'my': 1.0, 'next': 1.0, 'baby': 1.0, 'budge': 1.0, 'test': 1.0, 'did': 1.0, 'heavy': 1.0, 'thing': 1.0, 'whole': 1.0, 'fine': 1.0, 'look': 1.0, 'but': 1.0, 'out': 1.0, 'safe': 1.0, 'people': 1.0, 'stork': 1.0, 'other': 1.0, 'wobble': 1.0, 'plastic': 1.0, 'of': 2.0, 'there': 1.0, 'switching': 1.0, 'some': 1.0, 'hours': 1.0, 'assembly': 1.0, 'they': 2.0, 'drawers': 2.0, 'have': 1.0, 'none': 1.0, 'the': 9.0, 'parts': 1.0, 'were': 3.0, 'only': 1.0, 'two': 1.0, 'i': 4.0, 'took': 1.0, 'this': 1.0, 'found': 1.0, 'beautiful': 1.0, 'was': 3.0, 'knobs': 1.0, 'be': 1.0, 'for': 1.0, 'product': 1.0, 'assemble': 2.0, 'to': 7.0, 'all': 1.0, 'easy': 1.0, 'wouldnt': 1.0, 'wood': 2.0, 'labled': 1.0, 'so': 1.0, 'heard': 1.0, 'me': 2.0, 'not': 2.0, 'on': 1.0, 'impressed': 1.0, 'strong': 2.0, 'and': 6.0, 'too': 1.0, 'confusing': 1.0, 'by': 1.0, 'it': 4.0, 'looks': 1.0, 'finished': 1.0, 'is': 2.0, 'good': 1.0, 'has': 1.0, 'a': 2.0, 'nice': 1.0, 'finish': 1.0, 'missing': 1.0, 'item': 1.0, 'also': 1.0, 'sturdy': 2.0}
Word element => {'anyone': 1.0, 'recommend': 1.0, 'complaints': 1.0, 'have': 1.0, 'other': 1.0, 'we': 1.0, 'would': 1.0, 'him': 1.0, 'rather': 1.0, 'for': 2.0, 'awesome': 1.0, 'no': 1.0, 'hours': 1.0, 'which': 1.0, 'this': 2.0, 'it': 2.0, 'considering': 1.0, 'simply': 1.0, 'dresser': 2.0, 'price': 1.0, 'inexpensive': 1.0, 'is': 1.0, 'the': 1.0, 'annoying': 1.0, 'combo': 2.0, 'my': 1.0, 'i': 1.0, 'took': 1.0, 'but': 1.0, 'put': 1.0, 'a': 1.0, 'few': 1.0, 'together': 1.0, 'husband': 1.0, 'to': 2.0, 'was': 1.0}
Word element => {'helps': 1.0, 'hope': 1.0, 'before': 1.0, 'them': 1.0, 'check': 1.0, 'correctly': 1.0, 'problem': 1.0, 'returned': 1.0, 'somewhat': 1.0, 'out': 1.0, 'replacement': 1.0, 'process': 1.0, 'another': 1.0, 'company': 1.0, 'through': 1.0, 'then': 1.0, 'we': 2.0, 'a': 2.0, 'purchased': 1.0, 'correct': 2.0, 'listed': 1.0, 'and': 4.0, 'in': 2.0, 'ordered': 1.0, 'originally': 1.0, 'quite': 1.0, 'dimensions': 1.0, 'can': 2.0, 'so': 2.0, 'time': 1.0, 'items': 1.0, 'but': 3.0, 'print': 1.0, 'be': 1.0, 'multiple': 1.0, 'for': 2.0, 'it': 2.0, 'with': 3.0, 'finish': 1.0, 'helped': 1.0, 'overall': 1.0, 'turned': 1.0, 'to': 4.0, 'image': 1.0, 'bigger': 1.0, 'was': 5.0, 'match': 1.0, 'much': 1.0, 'expected': 3.0, 'i': 7.0, 'happy': 1.0, 'one': 2.0, 'guess': 1.0, 'color': 1.0, 'sales': 1.0, 'that': 3.0, 'is': 1.0, 'cognac': 1.0, 'amazon': 2.0, 'purchasing': 1.0, 'instructions': 1.0, 'use': 1.0, 'the': 12.0, 'warning': 1.0, 'darker': 2.0, 'from': 2.0, 'some': 2.0, 'approximately': 1.0, 'which': 1.0, 'numbers': 1.0, 'thing': 1.0, 'got': 1.0, 'pieces': 1.0, 'were': 3.0, 'labeled': 1.0, 'furniture': 1.0, 'something': 1.0, 'would': 2.0, 'me': 1.0, 'not': 1.0, 'get': 1.0, 'than': 3.0, 'assembly': 1.0, 'are': 1.0, 'first': 1.0, 'passable': 1.0, 'cherry': 1.0, 'really': 1.0, 'wish': 1.0, 'this': 2.0, 'manufactures': 1.0, 'their': 1.0, 'customers': 1.0, 'read': 1.0, 'text': 1.0, 'clarify': 1.0, 'you': 1.0, 'things': 1.0, 'they': 1.0, 'appreciated': 1.0, 'remember': 1.0, 'have': 1.0, 'languages': 1.0, 'different': 1.0, 'product': 1.0, 'markets': 1.0, 'dresser': 1.0, 'us': 1.0, 'also': 1.0}
Word element => {'bought': 1.0, 'purpose': 1.0, 'range': 1.0, 'us': 1.0, 'store': 1.0, 'want': 1.0, 'or': 1.0, 'have': 2.0, 'expectations': 1.0, 'met': 1.0, 'particular': 1.0, 'inside': 1.0, 'see': 1.0, 'delivers': 1.0, 'outside': 1.0, 'only': 1.0, 'wood': 2.0, 'he': 1.0, 'bottom': 1.0, 'solid': 2.0, 'value': 1.0, 'price': 2.0, 'material': 1.0, 'end': 1.0, 'when': 1.0, 'what': 2.0, 'had': 1.0, 'as': 1.0, 'waist': 1.0, 'probably': 1.0, 'your': 1.0, 'buy': 1.0, 'furniture': 2.0, 'if': 2.0, 'you': 5.0, 's': 1.0, 'take': 1.0, 'then': 1.0, 'we': 3.0, 'a': 5.0, 'could': 1.0, 'fit': 1.0, 't': 2.0, 'so': 2.0, 'can': 1.0, '2': 1.0, 'work': 1.0, 'board': 1.0, 'but': 2.0, 'instruction': 1.0, 'exactly': 1.0, 'like': 1.0, 'll': 2.0, 'table': 3.0, 'not': 2.0, 'pieces': 2.0, 'buying': 1.0, 'carpet': 1.0, 'low': 1.0, 'to': 5.0, 'high': 1.0, 'in': 2.0, 'know': 1.0, 'patience': 2.0, 'knows': 1.0, 'hours': 1.0, '800': 1.0, 'better': 1.0, 'the': 9.0, 'together': 3.0, 'dresser': 2.0, 'it': 9.0, 'about': 2.0, '5': 1.0, 'mistakes': 1.0, 'i': 4.0, '4': 1.0, 'and': 6.0, 'tall': 1.0, 'looks': 2.0, 'my': 5.0, 'requires': 1.0, 'out': 1.0, 'good': 2.0, 'made': 1.0, 'goes': 1.0, 'smooth': 1.0, 'college': 1.0, 'this': 5.0, 'few': 1.0, 'was': 2.0, 'husband': 2.0, 'serves': 1.0, 'fault': 2.0, 'that': 3.0, 'patient': 1.0, 'for': 4.0, 'expensive': 1.0, 'are': 2.0, 'first': 3.0, 'be': 2.0, 'picture': 1.0, 'again': 1.0, 'drawers': 1.0, 'slide': 1.0, 'on': 2.0, 'noticed': 1.0, 'old': 1.0, 'height': 2.0, 'baby': 1.0, 'used': 1.0, 'all': 4.0, 'an': 1.0, 'his': 1.0, 'once': 1.0, 'comes': 1.0, 'at': 2.0, 'is': 2.0, 'spread': 1.0, 'never': 1.0, 'knew': 2.0, 'our': 3.0, 'how': 1.0, '6': 1.0, 'put': 2.0, 'changing': 3.0, 'general': 1.0, 'much': 1.0, 'backtrack': 1.0, 'back': 2.0, 'who': 2.0, '34': 1.0, 'where': 1.0, 'especially': 1.0, 'appreciates': 1.0, 'don': 2.0, 'expect': 1.0}
Word element => {'spend': 1.0, 'want': 1.0, 'didn': 1.0, 'something': 1.0, 'furniture': 1.0, 'true': 1.0, 'being': 1.0, 'concerns': 1.0, 'my': 1.0, 'tell': 1.0, 'only': 2.0, 'quite': 1.0, 'overall': 1.0, 'get': 1.0, 'will': 4.0, 'laminate': 3.0, 'used': 3.0, 'as': 1.0, 'easily': 3.0, 'that': 2.0, 'concerned': 1.0, 'cons': 1.0, '34': 2.0, 'colored': 1.0, 'with': 1.0, 'wood': 3.0, 'solid': 2.0, 'on': 3.0, 'think': 1.0, 'would': 3.0, 'sticker': 1.0, 'each': 1.0, 'how': 1.0, 'circles': 2.0, 'anyway': 1.0, 'don': 1.0, 'deiced': 1.0, 'able': 1.0, 'night': 1.0, 'ahead': 1.0, 'laminated': 1.0, 'them': 1.0, 'just': 1.0, 'by': 2.0, 'seems': 3.0, 'see': 1.0, 'a': 8.0, 'go': 1.0, 't': 2.0, 'come': 1.0, 'hidden': 1.0, 'hard': 2.0, 'so': 1.0, 'time': 3.0, 'arrived': 1.0, 'circular': 1.0, 'words': 1.0, 'idea': 1.0, 'thankfully': 1.0, 'lot': 2.0, 'am': 1.0, 'last': 1.0, 'to': 7.0, 'pretty': 3.0, 'for': 3.0, 'be': 1.0, 'yesterday': 1.0, 'after': 1.0, 'about': 2.0, 'years': 1.0, 'no': 2.0, 'collect': 1.0, 'pressed': 1.0, 'dresser': 1.0, 'product': 1.0, 'price': 3.0, 'interior': 1.0, 'pieces': 4.0, 'got': 1.0, 'recommend': 1.0, 'piece': 1.0, 'were': 3.0, 'together': 8.0, 'dowels': 1.0, 'few': 2.0, 'this': 3.0, 'put': 8.0, 'pictures': 1.0, 'hardware': 1.0, 'it': 17.0, 'and': 7.0, 'of': 4.0, 'the': 19.0, 'portions': 1.0, 'place': 2.0, 'bit': 1.0, 'damaged': 4.0, 'took': 1.0, 'we': 2.0, 'then': 1.0, 'nice': 4.0, 'two': 2.0, 'at': 2.0, 'is': 6.0, 'look': 1.0, 'was': 2.0, 'kids': 1.0, 'box': 1.0, 'hours': 1.0, 'if': 1.0, 'fingerprints': 1.0, 'clear': 1.0, 'not': 1.0, 'text': 1.0, 'but': 2.0, 'i': 13.0, 'putting': 4.0, 'suggest': 1.0, 'when': 4.0, 'what': 1.0, 'screws': 1.0, 'had': 2.0, 'in': 6.0, 'have': 1.0, 'sturdy': 2.0, 'they': 1.0, 'money': 1.0, 'instructions': 1.0, 'called': 1.0, 'all': 2.0, 'other': 2.0, 'making': 1.0, 'wooden': 1.0, 'abutt': 1.0, 'before': 1.0, 'are': 2.0, 'first': 1.0, 'pros': 1.0, 'afterwards': 1.0, 'problem': 1.0, 'myself': 2.0, 'expect': 1.0}
Word element => {'choices': 1.0, 'properly': 1.0, 'from': 2.0, 'missing': 1.0, 'will': 2.0, 'also': 1.0, 'think': 1.0, 'help': 1.0, 'without': 1.0, 'assembled': 2.0, 'follow': 1.0, 'yes': 1.0, 'pieces': 3.0, 'were': 2.0, 'however': 1.0, 'easy': 1.0, 'except': 1.0, 'get': 1.0, 'a': 1.0, 't': 2.0, 's': 1.0, 'completely': 1.0, 'comes': 1.0, 'is': 2.0, 'noted': 1.0, 'the': 10.0, 'of': 1.0, 'getting': 1.0, 'self': 1.0, 'drawer': 1.0, 'and': 6.0, 'pictures': 1.0, 'this': 3.0, 'be': 2.0, 'as': 2.0, 'difficult': 1.0, 'door': 1.0, 'more': 1.0, 'husband': 1.0, 'issue': 1.0, 'was': 3.0, 'have': 4.0, 'picture': 1.0, 'out': 1.0, 'i': 4.0, 'assemble': 2.0, 'for': 2.0, 'only': 1.0, 'primarily': 1.0, 'nursery': 1.0, 'with': 3.0, 'there': 1.0, 'o': 2.0, 'it': 3.0, 'my': 1.0, 'looks': 2.0, 'that': 3.0, 'reviews': 1.0, 'had': 1.0, 'otherwise': 1.0, 'n': 2.0, 'not': 1.0, 'appear': 1.0, 'but': 1.0, 'just': 1.0, 'different': 1.0, 'made': 1.0, 'which': 1.0, 'good': 1.0, 'so': 1.0, 'you': 2.0, 'am': 1.0, 'unscrew': 1.0, 'in': 2.0, 'to': 6.0, 'pretty': 1.0, 'people': 1.0, 'simple': 1.0, 'quality': 1.0, 'price': 2.0, 'expected': 1.0, 'should': 1.0, 'didn': 1.0, 'realized': 1.0, 'some': 1.0, 'dresser': 2.0, 'pressed': 1.0, 'wood': 1.0, 'aren': 1.0, 'sturdy': 1.0, 'great': 1.0, 'adjusted': 1.0, 'instructions': 2.0, 'bought': 1.0, 'other': 1.0, 'matching': 1.0, '5': 1.0, 'lot': 1.0, 'happy': 1.0}
Word element => {'works': 1.0, 'again': 1.0, 'squeaks': 1.0, 'back': 1.0, 'glued': 2.0, 'loose': 1.0, 'labeled': 3.0, 'thought': 1.0, 'fine': 2.0, 'shimmied': 1.0, 'like': 2.0, 'wasn': 1.0, 'were': 1.0, 'piece': 2.0, 'screwed': 1.0, 'come': 1.0, 'together': 4.0, 'in': 4.0, 'explained': 1.0, 'do': 2.0, 'put': 3.0, 'what': 2.0, 'calling': 1.0, 'illustration': 1.0, 'but': 7.0, 'board': 1.0, 'cube': 1.0, 'more': 1.0, 'the': 17.0, 'doing': 1.0, 'any': 1.0, 'probably': 1.0, 'words': 1.0, 'hardware': 1.0, 'feel': 1.0, 'to': 4.0, 'an': 4.0, 'other': 1.0, 'they': 3.0, 'let': 1.0, 'years': 1.0, 'after': 1.0, 'get': 3.0, 'pieces': 1.0, 'for': 5.0, 'trays': 1.0, '1': 3.0, 'little': 1.0, 'two': 3.0, 'very': 2.0, 'being': 1.0, 'must': 1.0, 'suck': 1.0, 'seem': 1.0, 'messed': 1.0, 'looks': 1.0, 'me': 3.0, 'my': 2.0, 'are': 5.0, 'this': 5.0, 'than': 1.0, 'all': 1.0, 'way': 1.0, 'of': 4.0, 'ice': 1.0, 'less': 2.0, 'inventory': 2.0, 'up': 1.0, 'o': 1.0, 'that': 8.0, 'first': 2.0, 'n': 1.0, 'man': 1.0, 'different': 1.0, 'not': 5.0, 'off': 1.0, 'yes': 1.0, 'i': 17.0, 'heirloom': 1.0, 'storkcraft': 1.0, 'roundabout': 1.0, 'amazon': 1.0, 'kind': 1.0, 'did': 2.0, 'stickers': 2.0, 'missing': 2.0, 'knobs': 1.0, 'also': 4.0, 'us': 1.0, 'unstable': 1.0, 'item': 3.0, 'store': 1.0, 'was': 6.0, 'furniture': 3.0, 'appropriate': 1.0, 'dresser': 1.0, 'just': 5.0, 'and': 18.0, 'assembled': 1.0, 'height': 1.0, 'fail': 1.0, 'from': 3.0, 'whenever': 1.0, 'repeat': 1.0, '2': 3.0, 't': 3.0, 'a': 5.0, 'take': 2.0, 'dollars': 1.0, 'into': 1.0, 'chose': 1.0, 'parts': 6.0, 'it': 12.0, 'be': 1.0, 'have': 3.0, 'impossibly': 1.0, 'organizing': 1.0, 'has': 1.0, '3': 2.0, 'door': 1.0, 'go': 1.0, 'fiance': 2.0, 'those': 1.0, 'hate': 1.0, 'sides': 1.0, 's': 2.0, 'on': 2.0, 'items': 1.0, 'weren': 1.0, 'with': 2.0, 'their': 1.0, 'guide': 1.0, 'cheap': 1.0, 'only': 3.0, 'biggest': 1.0, '5': 2.0, 'upon': 1.0, 'got': 2.0, 'one': 1.0, 'obvious': 1.0, 'happier': 1.0, 'remove': 1.0, 'without': 1.0, '9': 1.0, 'am': 2.0, 'instructions': 2.0, 'because': 3.0, 'human': 1.0, 'some': 1.0, 'spent': 1.0, 'patience': 2.0, 'easy': 1.0, '100': 1.0, 'relative': 1.0, 'rails': 1.0, 'about': 1.0, '300': 1.0, 'part': 1.0, 'ease': 1.0, 'hours': 1.0, 'later': 1.0, 'its': 1.0, 'fix': 1.0, 'them': 4.0, 'everything': 1.0, 'expect': 1.0, 'children': 1.0, 'packages': 1.0, 'tall': 1.0, 'mean': 1.0, 'nicely': 1.0, 'p': 1.0, 'nice': 1.0, 'big': 1.0, 'dings': 1.0, 'correctly': 2.0, 'extremely': 1.0, 'ok': 1.0, 'solid': 2.0, 'people': 1.0, 'reviewed': 1.0, 'came': 1.0, 'said': 1.0, 'or': 2.0, 'thing': 1.0, 'clearly': 1.0, 'attempt': 1.0, 'understand': 1.0, 'organize': 1.0, 'last': 1.0, '250': 1.0, 'really': 1.0, 'good': 1.0, 'will': 1.0, 'intelligent': 1.0, 'many': 1.0, 'you': 2.0, 'is': 6.0, 'can': 1.0, 'planning': 1.0, 'update': 1.0, 'wood': 1.0, 'under': 1.0, '700': 1.0, 'drawer': 1.0, 'we': 6.0, 'bottoms': 1.0, 'particle': 1.0, 'still': 1.0, 'granted': 1.0, 'once': 1.0, 'drawers': 1.0}
Word element => {'insert': 1.0, 'which': 1.0, 'nails': 1.0, 'used': 1.0, 'my': 1.0, 'wasn': 1.0, 'follow': 1.0, 'screw': 1.0, 'just': 1.0, 'didn': 1.0, 'use': 1.0, 'instead': 1.0, 'assemble': 1.0, 'husband': 1.0, 'to': 3.0, 'directions': 1.0, 'the': 4.0, 't': 2.0, 'screws': 1.0, 'easier': 1.0, 'were': 1.0, 'that': 1.0, 'came': 1.0, 'on': 1.0, 'dresser': 1.0, 'backing': 1.0, 'hard': 1.0, 'with': 1.0, 'he': 1.0}
Word element => {'appears': 1.0, 'nice': 1.0, 'really': 1.0, 'its': 1.0, 'aggravation': 1.0, 'yourself': 1.0, 'save': 1.0, 'return': 1.0, 'cut': 1.0, 'hours': 1.0, 'after': 1.0, 'forth': 1.0, 'leaning': 1.0, 'change': 1.0, 'decided': 1.0, 'used': 1.0, 'no': 2.0, 's': 1.0, 'there': 1.0, 'supposed': 1.0, 'lightly': 1.0, 'if': 1.0, 'finally': 1.0, 'top': 1.0, 'them': 1.0, 'opened': 1.0, 'even': 1.0, 'before': 1.0, 'packaging': 1.0, 'plastic': 1.0, 'knobs': 1.0, 'scrathes': 1.0, 'without': 2.0, 'nursery': 1.0, 'months': 1.0, 'last': 1.0, 'could': 2.0, 'back': 1.0, 'most': 2.0, 'a': 7.0, 't': 2.0, 'definitely': 1.0, 'my': 3.0, 'with': 1.0, 'not': 2.0, 'one': 1.0, 'lot': 1.0, 'spending': 1.0, 'baby': 1.0, 'others': 1.0, 'losses': 1.0, 'diagrams': 2.0, 'matter': 1.0, 'way': 1.0, 'than': 1.0, 'assembly': 1.0, 'don': 2.0, 'all': 2.0, 'to': 11.0, 'diagram': 1.0, 'have': 4.0, 'directions': 1.0, 'structure': 1.0, 'for': 3.0, 'products': 1.0, 'product': 2.0, 'core': 1.0, 'review': 1.0, 'adivce': 1.0, 'and': 4.0, 'as': 1.0, 'leave': 1.0, 'horrible': 1.0, 'use': 1.0, 'some': 2.0, 'never': 1.0, 'we': 6.0, 'reviews': 1.0, 'was': 4.0, 'be': 3.0, 'opinion': 1.0, 'trying': 1.0, 'i': 6.0, 'putting': 2.0, 'but': 2.0, 'desired': 1.0, 'write': 1.0, 'table': 1.0, '30': 1.0, 'first': 2.0, 'can': 1.0, 'so': 5.0, 'assembled': 1.0, 'time': 1.0, 'is': 2.0, 'experience': 2.0, 'say': 1.0, 'husband': 1.0, 'more': 2.0, 'left': 2.0, 'poor': 1.0, 'often': 1.0, 'felt': 1.0, 'it': 6.0, 'lean': 1.0, 'mentioned': 1.0, 'the': 18.0, 'of': 5.0, 'confusing': 2.0, 'company': 1.0, 'only': 1.0, 'this': 6.0, 'few': 2.0, 'by': 1.0, 'serious': 1.0, 'why': 1.0, 'just': 2.0, 'touched': 1.0, 'got': 1.0, 'pieces': 3.0, 'together': 3.0, 'piece': 5.0, 'were': 4.0, 'out': 2.0, 'or': 1.0, 'labeled': 1.0, 'side': 1.0, 'which': 1.0, 'you': 2.0, 'that': 1.0, 'easily': 1.0, 'pictures': 1.0, 'changing': 1.0, 'put': 1.0, 'wasting': 1.0, 'difficult': 2.0, 'worth': 1.0, 'figure': 1.0, 'referring': 1.0, 'each': 1.0, 'would': 2.0, 'off': 1.0, 'see': 2.0, 'labeling': 1.0, 'in': 5.0, 'addition': 1.0, 'obligated': 1.0, 'step': 2.0, 'follow': 1.0, 'quality': 1.0, 'how': 2.0, 'our': 2.0, 'item': 1.0, 'also': 1.0, 'when': 1.0, 'what': 1.0, 'scratched': 2.0, 'while': 1.0, 'wood': 1.0}
Word element => {'top': 1.0, 'pad': 1.0, 'changing': 1.0, 'able': 1.0, 'be': 1.0, 'assembly': 1.0, 'pieces': 2.0, 'drill': 1.0, 'perfect': 1.0, 'tedious': 1.0, 'and': 3.0, 'i': 2.0, 'lots': 1.0, 'll': 1.0, 'longer': 1.0, 'really': 1.0, 'is': 2.0, 'side': 1.0, 'place': 1.0, 'the': 4.0, 'nicely': 1.0, 'drawers': 1.0, 'holes': 1.0, 'sharp': 1.0, 'than': 1.0, 'glide': 1.0, 'have': 1.0, 'once': 1.0, 'of': 1.0, 'expected': 1.0, 'room': 1.0, 'was': 1.0, 'dresser': 1.0, 'together': 1.0, 'looks': 1.0, 'it': 2.0, 'didn': 1.0, 'replace': 1.0, 'additional': 1.0, 'or': 1.0, 'size': 1.0, 'for': 1.0, 'any': 2.0, 'all': 1.0, 'to': 2.0, 'our': 1.0, 'which': 1.0, 'put': 1.0, 'on': 2.0, 'smaller': 1.0, 't': 1.0, 's': 1.0, 'a': 2.0, 'we': 1.0}
Word element => {'products': 1.0, 'left': 1.0, 'room': 1.0, 'standard': 1.0, 'fits': 1.0, 'together': 1.0, 'pretty': 1.0, 'easy': 1.0, 'home': 1.0, 'babi': 1.0, 'was': 1.0, 'to': 2.0, 'pad': 1.0, 'furniture': 1.0, 'convertible': 1.0, 'put': 1.0, 'an': 1.0, 'little': 1.0, 'crib': 1.0, 'dresser': 1.0, 'for': 2.0, 'a': 2.0, 'italia': 1.0, 'our': 1.0, 'changing': 2.0, 'match': 1.0, 'with': 1.0, 'it': 1.0, 'this': 1.0, 'eastside': 1.0, 'bought': 1.0, 'assemble': 1.0, 'size': 1.0, 'classic': 1.0, 'of': 1.0, 'fairly': 1.0, 'diaper': 1.0, 'heavy': 1.0, 'construction': 1.0, 'cherry': 1.0, 'solid': 1.0, 'at': 1.0, 'over': 1.0, 'piece': 1.0}
Word element => {'purchase': 1.0, 'satisfied': 1.0, 'am': 1.0, 'little': 1.0, 'end': 1.0, 'toward': 1.0, 'overall': 1.0, 'a': 1.0, 'require': 1.0, 'difficult': 1.0, 'solid': 1.0, 'two': 1.0, 'to': 1.0, 'was': 1.0, 'together': 1.0, 'dresser': 1.0, 'with': 1.0, 'it': 1.0, 'this': 1.0, 'and': 1.0, 'did': 1.0, 'is': 1.0, 'people': 1.0, 'the': 2.0, 'put': 1.0, 'but': 1.0, 'i': 1.0}
Word element => {'how': 1.0, 'tell': 1.0, 'time': 1.0, 'off': 1.0, 'slip': 1.0, 'my': 1.0, 'would': 1.0, 'top': 1.0, 'dangerous': 1.0, 'why': 1.0, 'advantage': 1.0, 'hope': 1.0, 'structurally': 1.0, 'baby': 1.0, 'clothes': 1.0, 'have': 1.0, 'suppose': 1.0, 'wooden': 1.0, 'front': 2.0, 'depth': 1.0, 'half': 1.0, 'no': 1.0, 'about': 1.0, 'are': 2.0, 'of': 3.0, 'assemble': 1.0, 'oak': 1.0, 'took': 1.0, 'i': 4.0, 'see': 1.0, 'up': 1.0, 'over': 1.0, 'make': 1.0, '3': 1.0, 'on': 1.0, 'nice': 1.0, 'was': 2.0, 'to': 4.0, 'can': 1.0, '2': 2.0, 'holds': 1.0, 'is': 2.0, 'table': 2.0, 'and': 4.0, 'too': 1.0, 'idea': 1.0, 'when': 1.0, 'color': 1.0, 'an': 1.0, 'shallow': 1.0, 'exact': 1.0, 'match': 1.0, 'that': 1.0, 'changing': 2.0, 'very': 2.0, 'hours': 1.0, 'they': 2.0, 'drawers': 4.0, 'designed': 1.0, 'crib': 1.0, 'piece': 1.0, 'with': 1.0, 'however': 1.0, 'will': 1.0, 'also': 1.0, 'seems': 1.0, 'disappointed': 1.0, 'take': 1.0, 'people': 1.0, 'pretty': 1.0, 'space': 1.0, 'main': 1.0, 'sturdy': 1.0, 'narrow': 1.0, 'way': 1.0, 'stack': 1.0, 'appear': 1.0, 'complaints': 1.0, 'picture': 1.0, 'be': 1.0, 'deep': 1.0, 'this': 1.0, 'carefully': 1.0, 'based': 1.0, 'could': 1.0, 'a': 1.0, 'we': 1.0, 'the': 13.0, 'assembled': 1.0, 'wasted': 1.0, 'it': 3.0, 'backs': 1.0, 'sides': 1.0}
Word element => {'different': 1.0, 'something': 1.0, 'over': 1.0, 'return': 1.0, 'going': 1.0, 'not': 1.0, 'm': 1.0, 'looks': 1.0, 'liked': 1.0, 'if': 1.0, 'still': 1.0, 'packaging': 1.0, 'some': 2.0, 'used': 1.0, 'as': 2.0, 'scratched': 2.0, 'would': 2.0, 'way': 1.0, 'assemble': 1.0, 'product': 2.0, 'about': 2.0, 'whole': 1.0, 'hours': 1.0, 'nice': 1.0, 'cushion': 1.0, 'picture': 1.0, 'instruction': 1.0, 'wood': 2.0, 'quality': 1.0, '2': 1.0, 'aren': 1.0, 'book': 1.0, 'could': 1.0, 'scratches': 1.0, 'an': 1.0, 'screws': 1.0, 'had': 1.0, 'parts': 1.0, 'pieces': 1.0, 'decent': 1.0, 'go': 1.0, 'a': 1.0, 'crib': 1.0, 'to': 4.0, 'our': 1.0, 'though': 1.0, 'part': 2.0, 'looked': 1.0, 'from': 1.0, 'irritating': 1.0, 'matched': 1.0, 'bought': 1.0, 'through': 1.0, 'i': 6.0, 'is': 8.0, 'where': 1.0, 'package': 1.0, 't': 1.0, 'rest': 1.0, 'took': 1.0, 'base': 1.0, 'and': 6.0, 'we': 4.0, 'fine': 1.0, 'reviews': 1.0, 'again': 1.0, 'clean': 1.0, 'drawers': 1.0, 'only': 1.0, 'this': 1.0, 'with': 1.0, 'thought': 1.0, 'it': 15.0, 'backs': 1.0, 'mostly': 1.0, 'unlabled': 1.0, 'be': 1.0, 'horribly': 1.0, 'most': 2.0, 'back': 3.0, 'top': 1.0, 'the': 23.0, 'of': 7.0, 'get': 1.0, 'gap': 1.0, 'flimsy': 1.0, 'them': 1.0, 'unfinished': 1.0, 'filled': 1.0, 'was': 2.0, 'noticed': 1.0, 'near': 1.0, 'on': 3.0, 'rear': 1.0, 'between': 1.0, 'large': 1.0, 'enough': 1.0, 'cover': 1.0, 'dresser': 1.0, 'piece': 3.0, 'together': 1.0, 'soon': 1.0, 'there': 1.0, 'half': 1.0, 'materials': 1.0, 'inch': 1.0, 'which': 1.0, 'made': 1.0, 'side': 1.0, 'no': 1.0, 'press': 1.0, 'but': 3.0, 'chose': 1.0, 'board': 1.0, 'went': 1.0, 'that': 5.0, 'because': 1.0, 'easily': 2.0, 'finish': 1.0, 'scarring': 1.0, 'disappointing': 1.0, 'very': 1.0, 'do': 1.0, 'put': 1.0, 'floor': 1.0}
Word element => {'asap': 1.0, 'returning': 1.0, 'most': 1.0, 'but': 1.0, 'four': 1.0, 'pieces': 2.0, 'parts': 1.0, 'don': 1.0, 'wobbly': 2.0, 'child': 1.0, 'and': 2.0, 'this': 2.0, 'some': 3.0, 'no': 1.0, 'around': 1.0, 'instructions': 1.0, 'wrapped': 1.0, 'just': 1.0, 'material': 1.0, 'customer': 3.0, 'packing': 1.0, 'so': 1.0, 'all': 3.0, 'to': 5.0, 'have': 3.0, 'are': 5.0, 'they': 3.0, 'disassemble': 1.0, 'not': 3.0, 'with': 1.0, 'convenient': 1.0, 'terrible': 1.0, 'pictured': 1.0, 'a': 1.0, 'reviews': 1.0, 'we': 2.0, 's': 1.0, 'assembled': 2.0, 'everything': 1.0, 'agree': 1.0, 'one': 2.0, 'words': 1.0, 'i': 2.0, 'etc': 1.0, 'packaging': 1.0, 'the': 6.0, 'of': 4.0, 'once': 2.0, 'says': 1.0, 'ridiculous': 1.0, 'used': 1.0, 'was': 2.0, 'incredibly': 1.0, 'giant': 2.0, 'together': 1.0, 'dowels': 1.0, 'didn': 1.0, 'wouldn': 1.0, 'screws': 2.0, 'always': 1.0, 'them': 2.0, 'sheet': 1.0, 'came': 1.0, 'step': 1.0, 'in': 2.0, 'bag': 1.0, 're': 1.0, 'come': 1.0, 'things': 1.0, 'you': 1.0, 'unless': 1.0, 't': 3.0, 'fit': 1.0, 'for': 1.0, 'is': 1.0, 'at': 1.0, 'stuck': 1.0, 'calling': 1.0, 'service': 3.0, 'safe': 1.0, 'labeled': 1.0, 'pre': 1.0, 'open': 1.0, 'hours': 2.0, 'that': 2.0, 'because': 1.0, 'match': 1.0, 'pictures': 2.0, 'put': 2.0, 'do': 1.0, 'difficult': 1.0, 'worst': 1.0, 'it': 3.0, 'which': 1.0, 'took': 1.0, 'close': 1.0, 'fixes': 1.0, 'consider': 1.0, 'my': 1.0, 'somehow': 1.0}
Word element => {'i': 1.0, 'help': 1.0, 'the': 4.0, 'with': 2.0, 'lowes': 1.0, 'useful': 1.0, 'fairly': 1.0, 'of': 2.0, 'if': 1.0, 'get': 2.0, 'fixable': 1.0, 'and': 3.0, 'me': 1.0, 'some': 1.0, 'all': 1.0, 'parts': 2.0, 'you': 1.0, 'am': 1.0, 'order': 1.0, 'drawers': 2.0, 'between': 1.0, 'ours': 1.0, 'in': 1.0, 'tools': 1.0, 'makes': 1.0, 'problems': 1.0, 'had': 1.0, 'worse': 1.0, 'look': 1.0, 'happy': 1.0, 'nice': 1.0, 'feel': 1.0, 'seems': 1.0, 'item': 2.0, 'shallow': 1.0, 'dust': 1.0, 'don': 1.0, 'is': 1.0, 'it': 2.0, 'looks': 1.0, 'but': 2.0, 'distance': 1.0, 'them': 1.0, 'make': 1.0, 'think': 1.0, 'that': 2.0, 'into': 1.0, 't': 1.0, 'might': 1.0, 'overall': 1.0}
Word element => {'too': 1.0, 'playing': 1.0, 'year': 1.0, 'in': 1.0, 'like': 1.0, '3': 1.0, 'alone': 1.0, 'and': 1.0, 'grass': 1.0, 'old': 2.0, '12': 1.0, 'mo': 1.0, 'push': 1.0, 'my': 2.0, 'they': 1.0, 'can': 1.0, 'ride': 1.0, 'with': 1.0, 'this': 1.0, 'it': 1.0, 'both': 2.0, 'works': 1.0, 'or': 1.0, 'well': 1.0}
Word element => {'refuses': 1.0, 'it': 1.0, 'loves': 1.0, 'yr': 1.0, 'satisfied': 1.0, 'and': 1.0, 'very': 1.0, 'quality': 1.0, '2': 1.0, 'time': 1.0, 'with': 1.0, 'my': 1.0, 'll': 1.0, 'to': 1.0, 'old': 1.0, 'product': 1.0, 'that': 1.0, 'a': 1.0, 'share': 1.0, 'last': 1.0, 'purchase': 1.0, 'long': 1.0}
Word element => {'floors': 1.0, 'be': 1.0, 'wheels': 1.0, 'is': 1.0, 'guess': 1.0, 'i': 1.0, 'hardwood': 1.0, 'time': 1.0, 'means': 1.0, 'squirrel': 1.0, 'nephew': 1.0, 'his': 2.0, 'to': 2.0, 'much': 1.0, 'enjoyed': 1.0, 'birthday': 1.0, 'my': 1.0, 'the': 3.0, 'loud': 1.0, 'only': 1.0, 'he': 1.0, 'first': 1.0, 'it': 1.0, 'on': 1.0, 'asked': 1.0, 'that': 3.0, 'so': 1.0, 'can': 1.0, 'specific': 1.0, 'neighbors': 1.0, 'for': 1.0, 'given': 1.0, 'downstairs': 1.0, 'parents': 1.0, 'drawback': 1.0, 'set': 1.0, '34': 2.0, 'up': 1.0}
Word element => {'stable': 1.0, 'over': 1.0, 'tip': 1.0, 'does': 1.0, 'learning': 2.0, 'to': 1.0, 'walk': 1.0, 'as': 1.0, 'babies': 1.0, 'aid': 1.0, 'a': 3.0, 'is': 3.0, 'it': 3.0, 'bike': 1.0, 'this': 1.0, 'learn': 1.0, 'riding': 1.0, 'tool': 1.0, 'not': 2.0, 'idea': 1.0, 'but': 1.0, 'they': 1.0, 'great': 1.0, 'the': 1.0, 'of': 1.0, 'for': 1.0, 'one': 1.0}
Word element => {'months': 1.0, 'few': 1.0, 'a': 1.0, 'just': 1.0, 'than': 1.0, 'for': 1.0, 'used': 1.0, 'and': 1.0, 'indoors': 1.0, 'can': 1.0, 'ride': 1.0, 'this': 1.0, 'extremely': 1.0, 'on': 1.0, 'is': 1.0, 'sturdy': 1.0, 'small': 1.0, 'longer': 1.0, 'enough': 1.0, 'toy': 1.0, 'to': 1.0, 'be': 2.0}
Word element => {'treasure': 1.0, 'really': 1.0, 'not': 1.0, 'does': 1.0, 'and': 1.0, 'look': 2.0, 'husband': 1.0, 'fixed': 1.0, 'nice': 1.0, 'looks': 1.0, 'it': 4.0, 'this': 1.0, 'with': 1.0, 'is': 1.0, 'amazon': 1.0, 'off': 1.0, 'anywhere': 1.0, 'checked': 1.0, 'lid': 1.0, 'my': 2.0, 'boy': 1.0, 'then': 1.0, 'got': 1.0, 'i': 2.0, 'old': 1.0, 'cheaper': 1.0, 'yr': 1.0, 'easy': 1.0, 'else': 1.0, 'lot': 1.0, 'at': 1.0, 'be': 1.0, 'roomy': 1.0, 'has': 2.0, 'toy': 1.0, 'chest': 2.0, 'grandson': 1.0, 'broken': 1.0, 'careful': 1.0, 'the': 1.0, 'a': 4.0, 't': 1.0, 'rough': 1.0, 'twice': 1.0, 'just': 1.0, 'by': 1.0, 'being': 1.0, 'like': 1.0, 'typical': 1.0, 'cheap': 1.0, 'for': 1.0, '5': 1.0, 'but': 1.0, 'wasn': 1.0}
Word element => {'want': 1.0, 'item': 1.0, 'this': 1.0, 'buy': 1.0, 'do': 1.0, 'service': 1.0, 'customer': 1.0, 'mad': 1.0, 'dresser': 1.0, 'with': 2.0, 'furniture': 1.0, 'now': 1.0, 'worth': 1.0, 'even': 1.0, 'isn': 1.0, 'back': 1.0, 'ship': 1.0, 'in': 2.0, 'cost': 1.0, 'guard': 1.0, 'coast': 1.0, 'us': 1.0, 'puerto': 1.0, 'last': 1.0, 'for': 3.0, 'i': 8.0, 'but': 2.0, 'can': 1.0, 'ordered': 1.0, 'seriously': 1.0, 'espresso': 2.0, 'they': 1.0, 's': 1.0, 'a': 1.0, 'going': 1.0, 'rico': 1.0, 't': 2.0, 'the': 4.0, 'currently': 1.0, 'did': 1.0, 'you': 1.0, 'unless': 1.0, 'am': 1.0, 'how': 1.0, 'received': 1.0, 'm': 1.0, 'register': 1.0, 'messed': 1.0, 'read': 1.0, 'upset': 1.0, 'stationed': 1.0, 'black': 5.0, 'return': 1.0, 'order': 2.0, 'so': 3.0, 'know': 1.0, 'like': 1.0, 'reviewer': 1.0, 'my': 3.0, 'color': 1.0, 'horrible': 1.0, 'amazon': 2.0, 'up': 1.0, 'explain': 1.0, 'is': 2.0, 'say': 1.0, 'ordering': 1.0, 'not': 2.0, 'wrong': 1.0, 'nor': 1.0, 'it': 4.0, 'fault': 1.0, 'have': 2.0, 'all': 1.0, 'to': 3.0, 'husband': 1.0, 'pay': 1.0, 'shipping': 1.0, 'and': 1.0, 'are': 1.0}
Word element => {'would': 1.0, 'overall': 1.0, 'during': 1.0, 'damaged': 1.0, 'seller': 1.0, 'or': 1.0, 'stock': 1.0, 'have': 1.0, 'if': 2.0, 'sure': 1.0, 'to': 2.0, 'gets': 1.0, 'matches': 1.0, 'had': 1.0, 'and': 4.0, 'delivery': 2.0, 'it': 3.0, 'only': 1.0, 'with': 1.0, 'this': 3.0, 'my': 1.0, 'happy': 2.0, 'product': 3.0, 'others': 1.0, 'these': 1.0, 'some': 1.0, 'they': 1.0, 'drawers': 1.0, 'in': 3.0, 'dent': 1.0, 'the': 7.0, 'way': 1.0, 'return': 1.0, 'craft': 1.0, 'three': 1.0, 'since': 1.0, 'aspen': 1.0, 'cognac': 1.0, 'is': 2.0, 'really': 1.0, 'stork': 1.0, 'chest': 2.0, 'drawer': 2.0, 'nice': 1.0, 'recommend': 1.0, 'was': 1.0, 'cognacquick': 1.0, 'about': 1.0, 'thing': 1.0, 'crib': 1.0, 'bad': 1.0, 'that': 1.0, 'dents': 1.0, 'on': 2.0, 'color': 1.0, 'one': 1.0, 'of': 1.0, 'perfectly': 1.0, 'bottom': 1.0, 'them': 1.0, 'but': 1.0, 'i': 2.0, 'm': 2.0, 'going': 1.0, 'not': 2.0}
Word element => {'a': 2.0, 'husband': 1.0, 'luckily': 1.0, 'separating': 1.0, 'of': 1.0, 'bottom': 1.0, 'made': 1.0, 'out': 1.0, 'keeps': 1.0, 'handy': 1.0, 'draw': 1.0, 'third': 1.0, 'for': 2.0, 'wasn': 1.0, 'my': 2.0, 'fix': 1.0, 'have': 1.0, 'bad': 1.0, 'because': 1.0, 'not': 1.0, 'is': 3.0, 'this': 1.0, 'with': 1.0, 'great': 1.0, 't': 1.0, 'the': 6.0, 'holes': 1.0, 'dresser': 2.0, 'price': 1.0, 'we': 1.0, 'man': 1.0, 'but': 1.0, 'quality': 1.0, 'an': 1.0, 'and': 1.0, 'drilled': 1.0, 'issue': 1.0, 'pre': 1.0, 'coming': 1.0, 'too': 1.0, 'best': 1.0, 'big': 1.0}
Word element => {'recommended': 1.0, 'will': 1.0, 'quality': 1.0, 'all': 1.0, 'beautiful': 1.0, 'is': 2.0, 'nursery': 2.0, 'grandbaby': 1.0, 'i': 2.0, 'to': 1.0, 'matches': 1.0, 'new': 1.0, 'high': 1.0, 'my': 1.0, 'the': 3.0, 'this': 2.0, 'perfectly': 1.0, 'matching': 1.0, 'and': 3.0, 'furniture': 1.0, 'purchased': 2.0, 'teen': 1.0, 's': 1.0, 'also': 1.0, 'part': 1.0, 'of': 1.0, 'set': 1.0, 'from': 1.0, 'as': 1.0, 'changing': 1.0, 'highly': 1.0, 'baby': 1.0, 'dresser': 1.0, 'crib': 1.0, 'which': 1.0, 'last': 1.0, 'table': 1.0, 'rochester': 1.0}
Word element => {'time': 1.0, 'long': 1.0, 'last': 1.0, 'sturdy': 1.0, 'this': 1.0, 'would': 1.0, 'other': 1.0, 'flawless': 1.0, 'anyone': 1.0, 'be': 1.0, 'should': 1.0, 'an': 1.0, 'pay': 1.0, 'sheeting': 1.0, 'and': 4.0, 'bottom': 1.0, 'of': 3.0, 'three': 1.0, 'didnt': 1.0, 'i': 3.0, 'reason': 1.0, 'will': 1.0, 'item': 1.0, 'also': 1.0, 'overall': 1.0, 'drawers': 2.0, 'the': 6.0, 'great': 2.0, 'nicely': 1.0, 'is': 3.0, 'stars': 1.0, 'fit': 1.0, 'for': 2.0, 'color': 1.0, 'one': 1.0, 'quiet': 1.0, 'about': 1.0, 'it': 2.0, 'its': 1.0, 'much': 1.0, 'only': 2.0, 'finish': 1.0, 'you': 1.0, 'when': 1.0, 'slide': 1.0, 'quality': 1.0, 'with': 1.0, 'piece': 2.0, 'was': 1.0, 'suggest': 1.0, 'had': 1.0, 'to': 2.0, 'strong': 1.0, 'think': 1.0, 'dresser': 2.0, 'together': 1.0, 'my': 1.0, 'than': 1.0, 'because': 1.0, 'standard': 1.0, 'size': 1.0, 'that': 3.0, 'gave': 1.0, 'spliced': 1.0, 'changing': 1.0, 'off': 1.0, 'pad': 1.0, 'inch': 1.0, 'cut': 1.0, 'we': 1.0, 'a': 4.0, 'half': 1.0}
Word element => {'shipping': 1.0, 'transaction': 1.0, 'purchase': 1.0, 'we': 2.0, 'with': 2.0, 'are': 1.0, 'the': 2.0, 'and': 2.0, 'very': 1.0, 'were': 1.0, 'great': 1.0, 'it': 1.0, 'happy': 2.0, 'was': 1.0, 'drawer': 1.0, 'a': 1.0, 'chest': 1.0}
Word element => {'seem': 1.0, 'trashed': 1.0, 'years': 1.0, 'having': 1.0, 'again': 1.0, 'fall': 1.0, 'hardware': 1.0, 'purchased': 1.0, 'had': 1.0, 'was': 2.0, 'to': 1.0, 'the': 2.0, 'apart': 1.0, 'this': 1.0, 'only': 2.0, 'sturdy': 1.0, 'year': 1.0, 'kept': 1.0, 'after': 2.0, 't': 1.0, 'we': 4.0, 'a': 4.0, 'given': 1.0, 'issues': 1.0, 'two': 1.0, 'i': 1.0, '4': 1.0, 'with': 1.0, 'piece': 2.0, 'but': 2.0, 'originally': 1.0, 'toddler': 1.0, 'have': 2.0, 'for': 2.0, 'stars': 1.0, 'in': 2.0, 'randomly': 1.0, 'would': 2.0, 'out': 3.0, 'and': 1.0, 'falling': 2.0, 'became': 1.0, 'didn': 1.0, 'safety': 1.0, 'hazard': 1.0, 'just': 1.0, 'whose': 1.0, 'room': 1.0, 'attractive': 1.0, 'every': 1.0, 'time': 1.0, 'drawer': 1.0, 'pulled': 1.0, 'seemed': 1.0, 'like': 1.0, 'it': 7.0, 'fell': 1.0, 'enough': 1.0, 'off': 1.0, '2011': 1.0, 'repair': 1.0}
Word element => {'out': 1.0, 'ran': 1.0, 'already': 1.0, 'perfectly': 1.0, 'in': 2.0, 'from': 1.0, 'pieces': 1.0, 'matches': 1.0, 'wood': 1.0, 'months': 1.0, '7': 1.0, 'expresso': 1.0, 'at': 1.0, 'easy': 1.0, 'plenty': 1.0, 'definitely': 2.0, 'pregnant': 1.0, '2': 2.0, 'but': 2.0, 'will': 1.0, 'trick': 1.0, 'changing': 1.0, 'to': 1.0, 'as': 3.0, 'great': 1.0, '1': 1.0, 'shook': 1.0, 'depth': 1.0, 'price': 1.0, 'together': 1.0, 'dresser': 2.0, 'if': 1.0, 'not': 1.0, 'of': 4.0, 'sturdy': 2.0, 'aspen': 1.0, 'other': 1.0, 'stork': 2.0, 'myself': 1.0, 'the': 13.0, 'closet': 1.0, 'craft': 2.0, 'a': 2.0, 'crib': 1.0, 'addition': 1.0, 'wobble': 1.0, 'i': 3.0, 'and': 2.0, 'it': 3.0, 'was': 3.0, 'worth': 1.0, 'debating': 1.0, 'has': 1.0, 'drawers': 1.0, 'between': 1.0, 'put': 1.0, '3': 3.0, 'did': 1.0, 'drawer': 5.0, 'table': 1.0, 'which': 1.0, 'room': 2.0, 'five': 1.0, '5': 1.0, 'does': 1.0, 'than': 1.0, 'by': 1.0, 'few': 1.0, 'very': 2.0, 'inches': 1.0, 'taller': 1.0, 'would': 1.0, 'have': 1.0, 'for': 1.0, 'meant': 1.0, 'smaller': 1.0}
Word element => {'product': 1.0, 'good': 1.0, 'overall': 1.0, 'out': 1.0, 'them': 2.0, 'they': 1.0, 'knobs': 1.0, 'drawer': 1.0, 'no': 1.0, 'were': 1.0, 'there': 1.0, 'put': 1.0, 'all': 1.0, 'so': 1.0, 'called': 1.0, 'after': 1.0, 'together': 1.0, 'storkcraft': 2.0, 'was': 1.0, 'matches': 1.0, 'beautiful': 1.0, '4': 2.0, 'absolutely': 1.0, 'im': 1.0, 'love': 1.0, 'we': 5.0, 'in': 1.0, 'reason': 1.0, 'shipped': 1.0, 'crib': 1.0, 'dresser': 1.0, 'realized': 1.0, 'is': 3.0, 'the': 3.0, 'very': 1.0, 'it': 4.0, 'only': 1.0, 'got': 2.0, 'sturdy': 1.0, 'perfectly': 1.0, 'and': 3.0, 'giving': 1.0, 'days': 1.0, 'stars': 1.0, 'because': 1.0}
Word element => {'push': 1.0, 'you': 3.0, 'when': 2.0, 'baby': 4.0, 'where': 1.0, 'for': 5.0, 'time': 1.0, 'transportation': 1.0, 'needs': 1.0, 'forwards': 1.0, 'backwards': 1.0, 'a': 3.0, 'we': 1.0, 'and': 7.0, 'was': 3.0, 'use': 2.0, 'each': 1.0, 't': 3.0, 'tightened': 1.0, 'only': 2.0, 'used': 2.0, 'handlebar': 1.0, 'very': 1.0, 'period': 1.0, 'but': 5.0, 'so': 2.0, 'can': 3.0, '2': 1.0, 'pushed': 1.0, 'car': 1.0, 'stroller': 3.0, 'bulkiness': 1.0, 'while': 1.0, 'facing': 1.0, 'versitile': 1.0, 'lighter': 1.0, 'still': 1.0, 'checked': 1.0, 'may': 1.0, 'my': 1.0, 'is': 4.0, 'more': 1.0, 'to': 3.0, 'all': 1.0, 'sleep': 1.0, 'the': 7.0, 'comfortable': 1.0, 'nice': 2.0, 'be': 5.0, 'trying': 1.0, 'short': 1.0, 'or': 2.0, 'cup': 1.0, '8': 1.0, 'wished': 1.0, 'too': 1.0, 'one': 2.0, 'should': 1.0, 'as': 2.0, 'heavy': 1.0, 'forward': 1.0, 'not': 1.0, 'could': 1.0, 'easiest': 1.0, 'couldn': 2.0, 'close': 1.0, 'gift': 1.0, 'wouldn': 1.0, 'got': 1.0, 'choose': 1.0, 'seat': 1.0, 'in': 1.0, 'myself': 1.0, 'liked': 1.0, 'actually': 1.0, 'holder': 1.0, 'features': 1.0, 'moved': 1.0, 'months': 1.0, 'get': 1.0, 'open': 1.0, 'over': 1.0, '7': 1.0, 'up': 1.0, 'before': 1.0, 'manage': 2.0, 'on': 1.0, 'own': 1.0, 'folding': 1.0, 'impossible': 1.0, 'umbrella': 1.0, 'i': 6.0, 'well': 2.0, 'this': 1.0, 'shade': 1.0, 'it': 7.0, 'recline': 1.0, 'have': 1.0}
Word element => {'thing': 1.0, 'own': 1.0, 'finally': 1.0, 'deciphering': 1.0, 'but': 2.0, 'is': 2.0, 'jogger': 3.0, 'to': 1.0, 'graco': 1.0, 'very': 2.0, 'regardless': 1.0, 'name': 1.0, 'recent': 1.0, 'this': 2.0, 'found': 2.0, 'pictures': 1.0, '20': 1.0, 'that': 5.0, 'after': 2.0, 'infant': 1.0, 'installation': 1.0, 'installed': 2.0, 'so': 1.0, 'for': 1.0, 'fortunately': 1.0, 'kit': 1.0, 'product': 1.0, 'strollers': 1.0, 'them': 3.0, 'sell': 1.0, 'wheels': 1.0, 'their': 1.0, 'same': 1.0, 'jogging': 1.0, 'discarding': 1.0, 'extra': 1.0, '2001': 1.0, 'onto': 1.0, 'both': 1.0, 'it': 1.0, 'ii': 1.0, 'with': 4.0, 'washers': 1.0, 'a': 3.0, 's': 1.0, 'was': 1.0, 'calling': 1.0, 'adapter': 6.0, 'now': 1.0, 'almost': 1.0, 'well': 1.0, 'i': 5.0, 'trivial': 1.0, 'and': 6.0, 'actual': 1.0, 'too': 1.0, 'some': 1.0, 'cut': 1.0, 'they': 1.0, 'doing': 1.0, 'of': 3.0, 'the': 9.0, 'not': 1.0, 'down': 1.0, 'no': 2.0, 'about': 1.0, 'did': 1.0, 'come': 1.0, 'effort': 1.0, 'instructions': 2.0, 'instruction': 1.0, 'pdf': 1.0, 'vague': 1.0, 'are': 1.0, 'tinkerer': 1.0, 'only': 1.0, 'quickly': 1.0, 'baby': 3.0, 'determined': 1.0, 'works': 1.0, 'spacers': 1.0, 'toolbox': 1.0, 'our': 1.0, 'stroller': 1.0, 'came': 1.0, 'were': 1.0, 'big': 1.0, 'just': 1.0, 'size': 1.0, 'seat': 1.0, 'm': 1.0, 'in': 1.0, 'learning': 1.0, 'website': 1.0, 'my': 2.0, 'had': 1.0, 'on': 2.0, 'connected': 1.0, 'all': 1.0, 'an': 1.0, 'hour': 1.0, 'worthless': 1.0, 'finding': 1.0}
Word element => {'kid': 1.0, 'luck': 1.0, 'oh': 1.0, 'than': 1.0, 'birth': 1.0, 'since': 1.0, 'have': 1.0, 'daughter': 1.0, 'tolerate': 1.0, 'my': 1.0, 'had': 1.0, 'thought': 1.0, 'graco': 1.0, 'toys': 1.0, 'mobile': 1.0, 'tray': 1.0, 'with': 1.0, 'timer': 1.0, 'mos': 1.0, 'various': 1.0, 'will': 1.0, 'sounds': 1.0, 'nature': 1.0, 'would': 1.0, 'settings': 1.0, 'songs': 1.0, 'sings': 1.0, 'control': 1.0, 'better': 2.0, 'gain': 1.0, 'home': 1.0, 'they': 1.0, 'earthtones': 1.0, 'decor': 1.0, 'next': 1.0, 'into': 1.0, 'i': 1.0, 'minutes': 1.0, 'was': 1.0, 'only': 1.0, 'its': 1.0, 'detached': 1.0, 'in': 3.0, 'well': 1.0, 'has': 5.0, 'rarely': 1.0, '6': 1.0, 'addition': 1.0, 'once': 1.0, 'of': 2.0, 'really': 2.0, '10': 1.0, 'if': 1.0, 'everything': 2.0, 'want': 1.0, 'is': 2.0, 'perfect': 1.0, 'recline': 1.0, 'padding': 1.0, 'g': 1.0, 'positioner': 1.0, 'longer': 1.0, 'speed': 1.0, 'soothing': 1.0, 'the': 4.0, 'adjustable': 1.0, 'infants': 1.0, 'she': 2.0, 'it': 8.0, 'durable': 1.0, 'now': 1.0, 'galore': 1.0, 'you': 1.0, 'easily': 2.0, 'head': 2.0, 'we': 1.0, 'could': 1.0, 'a': 5.0, 'swing': 2.0, 'pattern': 1.0, 'and': 3.0, 'vibration': 1.0, 'cleaned': 1.0, 'our': 1.0, 'to': 1.0, 'seat': 1.0, 'removable': 1.0, 'extra': 1.0, 'fit': 1.0, 'for': 1.0, 'attachable': 1.0, 'makes': 1.0, 'young': 1.0, 'drawn': 1.0, 'yet': 1.0}
Word element => {'recomend': 1.0, 'would': 1.0, 'and': 1.0, 'happy': 1.0, 'attach': 1.0, 'securely': 1.0, 'very': 2.0, 'car': 1.0, 'carry': 1.0, 'rarely': 1.0, 'how': 1.0, 'snaps': 1.0, 'heavy': 1.0, 'did': 1.0, 'system': 1.0, 'travel': 1.0, 'graco': 2.0, 'holding': 1.0, 'fold': 1.0, 'tricky': 1.0, 'we': 1.0, 'a': 5.0, 'year': 1.0, 'huge': 1.0, 'one': 1.0, 'love': 1.0, 'i': 4.0, 'old': 1.0, 'with': 2.0, 'this': 3.0, 'it': 9.0, 'around': 1.0, 'is': 3.0, 'am': 1.0, 'you': 1.0, 'easily': 1.0, 'folded': 1.0, 'handed': 1.0, 'anyone': 1.0, 'be': 1.0, 'stroller': 4.0, 'though': 1.0, 'plus': 1.0, 'video': 1.0, 'can': 2.0, 'but': 2.0, 'easy': 1.0, 'all': 2.0, 'seat': 1.0, 'as': 2.0, 'to': 6.0, 'was': 1.0, 'push': 2.0, '3': 1.0, 'on': 1.0, 'the': 2.0, 'other': 1.0, 'which': 1.0, 'hand': 1.0, 'so': 4.0, 'bit': 2.0, 'do': 1.0, 'much': 1.0, 'room': 1.0, 'thought': 1.0, 'that': 1.0, 'purchase': 1.0, 'often': 1.0, 'my': 2.0, 'neat': 1.0, 'compactly': 1.0, 'in': 3.0, 'seems': 1.0, 'take': 1.0, 'up': 2.0, 'nearly': 1.0}
Word element => {'would': 1.0, 'comfy': 1.0, 'out': 1.0, 'secure': 1.0, 'make': 1.0, 'll': 1.0, 'problem': 1.0, 'carry': 2.0, 'happily': 1.0, 'side': 1.0, 'through': 1.0, 'bag': 1.0, 'into': 1.0, 'get': 1.0, 'semi': 1.0, 'are': 2.0, 'however': 1.0, 'if': 2.0, 'back': 1.0, 'from': 1.0, 'view': 1.0, 'access': 1.0, 'own': 1.0, 'depending': 1.0, 'basket': 3.0, 'storage': 1.0, 'con': 1.0, 'hunch': 1.0, 'enought': 1.0, 'canopy': 1.0, 'finding': 1.0, 'anyone': 1.0, 'and': 6.0, 'wheels': 2.0, 'daughter': 1.0, 'got': 1.0, 'receiving': 1.0, 'some': 1.0, 'reviewer': 1.0, 'pro': 1.0, 'another': 1.0, 'me': 1.0, 'my': 6.0, 'for': 3.0, 'one': 1.0, 'all': 1.0, 'fits': 1.0, 'ever': 1.0, 'between': 1.0, 'recommend': 1.0, 'dirty': 1.0, 'pocket': 1.0, 'after': 1.0, 'was': 1.0, 'sure': 1.0, 'store': 1.0, 'low': 2.0, 'buying': 1.0, 'convenient': 2.0, 'just': 2.0, 'you': 2.0, 'blankets': 1.0, 'but': 3.0, 'stroller': 5.0, 'thing': 1.0, 'about': 1.0, 'have': 2.0, 'it': 5.0, 'this': 4.0, 'perfect': 1.0, 'reading': 1.0, 'like': 1.0, 'your': 1.0, 'any': 1.0, 'to': 8.0, 'diaper': 1.0, 'as': 2.0, 'don': 4.0, 'child': 1.0, 'sides': 2.0, 's': 4.0, 'small': 2.0, 'a': 6.0, 'reviews': 1.0, 'we': 3.0, 'cutest': 1.0, 'did': 1.0, 'items': 2.0, 'reclined': 1.0, 'getting': 1.0, 'fantastic': 1.0, 'am': 1.0, 'of': 3.0, 'the': 17.0, 'without': 1.0, 'worry': 1.0, 'forsee': 1.0, 'room': 1.0, '5': 1.0, 'unwarranted': 1.0, 'many': 1.0, 'at': 1.0, 'is': 8.0, 'could': 1.0, 'hidaway': 1.0, 'i': 8.0, 'cupholder': 1.0, 't': 5.0, 'spare': 1.0, 'there': 2.0, 'little': 2.0, 'next': 1.0, 'fall': 1.0, 'easily': 1.0, 'problems': 1.0, 'that': 3.0, 'mentioned': 1.0, 'pacifier': 1.0, 'with': 2.0, 'snack': 1.0, 'graco': 1.0, 'need': 1.0, 'concerns': 1.0, 'or': 1.0, 'toy': 1.0, 'on': 1.0, 'long': 1.0, 'big': 1.0, '1': 1.0, 'do': 1.0, 'put': 1.0, 'much': 1.0, 'compact': 2.0, 'can': 1.0, 'so': 4.0, 'tall': 1.0, 'time': 1.0, 'seat': 2.0, 'in': 1.0, 'more': 1.0, 'husband': 2.0, 'they': 2.0, 'aren': 1.0, 'hatchback': 1.0, 'had': 1.0, 'over': 1.0, 'hard': 2.0, 'use': 1.0, 'kicking': 1.0, '6': 2.0}
Word element => {'exchange': 1.0, 'trying': 1.0, 'm': 1.0, 'time': 1.0, 'use': 1.0, 'every': 1.0, 'constantly': 1.0, 'difficult': 1.0, 'month': 1.0, 'over': 1.0, 'happy': 1.0, 'and': 4.0, 'open': 1.0, 'very': 1.0, 'little': 1.0, 'been': 1.0, 'return': 1.0, 'a': 2.0, 'currently': 1.0, 't': 1.0, 'for': 1.0, 'to': 2.0, 'had': 1.0, 'additionally': 1.0, 'stroller': 1.0, 'than': 1.0, 've': 1.0, 'expected': 1.0, 'i': 4.0, 'up': 1.0, 'bulkier': 1.0, 'squeaks': 1.0, 'haven': 1.0, 'it': 6.0, 'this': 1.0, 'with': 1.0, 'is': 2.0, 'heavier': 1.0}
Word element => {'perfectly': 1.0, 'they': 1.0, 'mouth': 1.0, 'fit': 1.0, 'enough': 1.0, 'big': 1.0, 'be': 1.0, 'concerned': 1.0, 'wherever': 1.0, 'bottles': 2.0, 'i': 4.0, 'wide': 1.0, 'have': 1.0, 'wouldn': 1.0, 'it': 1.0, 'this': 2.0, 'bag': 1.0, 'space': 1.0, 'is': 1.0, 'can': 1.0, 'so': 1.0, 'finding': 1.0, 'twins': 1.0, 'tough': 1.0, 'just': 1.0, 'but': 1.0, 'stroller': 1.0, 'attach': 1.0, 'of': 1.0, 'was': 1.0, 'to': 1.0, 't': 1.0, 'diaper': 1.0, 'the': 2.0, 'avent': 1.0, 'my': 1.0, 'for': 2.0, 'love': 1.0, 'handle': 1.0}
Word element => {'out': 1.0, 'throw': 1.0, 'either': 1.0, 'o': 1.0, 'use': 1.0, 'i': 1.0, 'cold': 1.0, 'or': 1.0, 'bottles': 1.0, 'daughter': 1.0, 'does': 1.0, 'finally': 1.0, 'both': 1.0, 'them': 1.0, 'away': 1.0, 'fill': 1.0, 'trying': 1.0, 'awkward': 1.0, 'super': 1.0, 'doesn': 1.0, 'can': 1.0, 'but': 2.0, 'and': 2.0, 'product': 1.0, 'love': 1.0, 'that': 2.0, 'products': 1.0, 'cloth': 1.0, 'even': 1.0, 'pockets': 1.0, 'other': 2.0, 'person': 1.0, 'much': 1.0, 'one': 1.0, 'ny': 1.0, 'keep': 1.0, 'at': 2.0, 'give': 1.0, 'not': 3.0, 'small': 1.0, 'have': 1.0, 'to': 2.0, 'our': 2.0, 'all': 2.0, 'this': 3.0, 'bag': 1.0, 'it': 3.0, 'looks': 1.0, 'bottle': 1.0, 'so': 2.0, 'cute': 1.0, 'built': 1.0, 'items': 1.0, 'online': 1.0, 'in': 1.0, 'the': 3.0, 'is': 1.0, 'more': 1.0, 'compare': 1.0, 'picks': 1.0, 'material': 1.0, 'nice': 1.0, 'smooth': 1.0, 'going': 1.0, 's': 1.0, 'we': 2.0, 't': 2.0, 'a': 1.0, 'dirt': 1.0, 'like': 1.0, 'am': 1.0, 'when': 1.0, 'easily': 1.0, 'neoprene': 1.0, 'of': 1.0, 'up': 1.0, 'rough': 1.0, 'are': 1.0}
Word element => {'drink': 1.0, 'well': 1.0, 's': 1.0, 'child': 1.0, 'older': 1.0, 'bottle': 1.0, 'an': 1.0, 'to': 1.0, 'hold': 2.0, '2': 1.0, 'good': 1.0, 'bottles': 1.0, 'size': 1.0, 'as': 1.0, 'and': 2.0, 'works': 1.0, 'perfectly': 1.0, 'can': 1.0, 'a': 1.0}
Word element => {'fine': 1.0, 'fit': 1.0, 'bottle': 1.0, 'free': 1.0, '9': 1.0, 'fyi': 1.0, 'breaking': 1.0, 'from': 1.0, 'baby': 1.0, 'glass': 2.0, 'in': 1.0, 'for': 1.0, 'design': 1.0, 'born': 1.0, 'slim': 1.0, 'oz': 2.0, '5': 1.0, 'milk': 1.0, 'of': 1.0, 'job': 1.0, 'bottles': 2.0, 'breast': 1.0, 'and': 2.0, 'protecting': 1.0, 'carrier': 1.0, 'bag': 1.0, 'loved': 1.0, 'bought': 1.0, 'color': 1.0, 'this': 1.0, 'it': 1.0, 'diaper': 1.0, 'the': 2.0, 'great': 1.0, 'does': 1.0, 'bright': 1.0, 'a': 1.0}
Word element => {'issue': 1.0, 'well': 1.0, 'side': 1.0, 'on': 1.0, 'this': 3.0, 'it': 2.0, 'she': 1.0, 'because': 1.0, 'best': 1.0, 'when': 1.0, 'daughter': 1.0, 'too': 1.0, 'provides': 1.0, 'car': 3.0, 'into': 1.0, 'seat': 1.0, 'sleep': 2.0, 'my': 1.0, 'cup': 1.0, 'support': 1.0, 'the': 7.0, 'a': 3.0, 't': 1.0, 'even': 1.0, 'good': 1.0, 'her': 1.0, 'for': 1.0, 'much': 1.0, 'material': 1.0, 'is': 3.0, 'fall': 1.0, 'reclining': 1.0, 'i': 3.0, 'feature': 1.0, 'during': 1.0, 'in': 1.0, 'occupies': 1.0, 'trip': 1.0, 'like': 3.0, 'which': 1.0, 'though': 1.0, 'help': 1.0, 'better': 1.0, 'not': 1.0, 'minor': 2.0, 'also': 1.0, 'item': 1.0, 'don': 1.0, 'about': 1.0, 'holder': 1.0, 'space': 1.0}
Word element => {'complications': 1.0, 'vehicles': 1.0, 'easy': 1.0, 'very': 1.0, 'for': 2.0, 'through': 1.0, 'car': 1.0, 'department': 1.0, 'work': 1.0, 'but': 1.0, 'can': 2.0, 'most': 2.0, 'without': 1.0, 'the': 3.0, 'in': 1.0, 'fire': 1.0, 'seats': 3.0, 'install': 2.0, 'it': 4.0, 'children': 1.0, 'only': 1.0, 'is': 5.0, 'features': 1.0, 'size': 1.0, 'slightly': 1.0, 'has': 1.0, 'they': 1.0, 'adjust': 1.0, 'i': 3.0, 'many': 2.0, 'bulkier': 1.0, 'of': 1.0, 'ininstall': 1.0, 'properly': 1.0, 'while': 2.0, 'installed': 1.0, 'than': 1.0, 'to': 1.0, 'seat': 1.0, 'not': 1.0, 'outweigh': 1.0, 'that': 2.0, 'one': 2.0, 'bought': 1.0, 'reinstall': 1.0, 'my': 1.0, 'few': 1.0, 'this': 1.0, 'recline': 1.0, 'claim': 1.0, 'you': 1.0, 'stylish': 1.0, 'must': 1.0, 'and': 1.0, 'also': 1.0}
Word element => {'what': 1.0, 'for': 2.0, 'will': 1.0, 'the': 1.0, 'cause': 1.0, 'they': 3.0, 'arrived': 1.0, 'promptly': 1.0, 'work': 1.0, 'not': 1.0, 'packaged': 1.0, 'perfectly': 1.0, 'were': 1.0, 'damage': 1.0, 'well': 1.0, 'designed': 1.0, 'so': 1.0, 'any': 1.0, 'and': 1.0, 'as': 1.0, 'to': 2.0}
Word element => {'bags': 1.0, 'laundry': 1.0, 'our': 1.0, 'or': 1.0, 'separately': 1.0, 'can': 1.0, 'sold': 1.0, 'these': 1.0, 'they': 3.0, 'technically': 1.0, 'hamper': 1.0, 'why': 2.0, 'with': 1.0, 'are': 2.0, 'not': 1.0, 'work': 1.0, 'incredibly': 1.0, 'interchangeably': 1.0, 'sure': 1.0, 'tall': 2.0, 'oh': 1.0, 'well': 1.0, 'and': 1.0, 'i': 1.0, 'guess': 1.0, 'so': 1.0, 'function': 1.0}
Word element => {'sense': 1.0, 'no': 1.0, '3': 1.0, 'at': 1.0, 'use': 1.0, 'standards': 1.0, 'safety': 1.0, 'or': 1.0, 'inspection': 1.0, 'crawling': 1.0, 'onto': 1.0, 'poorly': 1.0, 'mos': 1.0, 'first': 2.0, 'fell': 1.0, 'it': 3.0, 'month': 1.0, 'cut': 1.0, 'face': 1.0, 'son': 1.0, 'time': 1.0, 'thank': 1.0, 'hard': 1.0, 'while': 1.0, 'am': 1.0, 'passed': 1.0, 'just': 1.0, 'far': 1.0, 'took': 1.0, 'makes': 1.0, 'old': 1.0, 'i': 1.0, 'eye': 1.0, 'the': 3.0, 'we': 1.0, 't': 1.0, 'for': 1.0, 'toy': 1.0, 'to': 1.0, 'edges': 1.0, 'his': 2.0, 'my': 1.0, 'god': 1.0, 'lip': 1.0, 'is': 1.0, 'significantly': 1.0, 'out': 1.0, 'wasn': 1.0, 'are': 1.0, 'and': 2.0, 'too': 1.0, 'try': 1.0, 'sharp': 1.0, 'this': 2.0, 'molded': 1.0, '6': 1.0, 'plastic': 1.0, 'surprised': 1.0}
Word element => {}
Word element => {'do': 1.0, 'definitely': 1.0, 'entire': 1.0, 'were': 1.0, 'better': 1.0, 'should': 1.0, 'watching': 1.0, 'i': 1.0, 'them': 1.0, 'not': 2.0, 'why': 1.0, 'pretty': 1.0, 'hard': 1.0, 'are': 1.0, 'imagine': 1.0, 'of': 1.0, 'edges': 1.0, 'time': 1.0, 'so': 1.0, 'thus': 1.0, 'ball': 1.0, 'for': 1.0, 'and': 3.0, 'too': 1.0, 'rough': 1.0, 'fully': 1.0, 'is': 1.0, 'enjoy': 1.0, 've': 1.0, 'would': 2.0, 'thought': 1.0, 'although': 1.0, 'hit': 1.0, 'big': 1.0, 'giggly': 1.0, 'known': 1.0, '5': 2.0, 'our': 1.0, 'to': 1.0, 'old': 1.0, 'loves': 1.0, 'bump': 1.0, 'good': 1.0, 'month': 1.0, 'it': 5.0, 'soft': 1.0, 'this': 2.0, 'he': 2.0, 'the': 4.0, 'with': 1.0, 'red': 1.0, 'wiggly': 1.0, 'eventually': 1.0, 'but': 2.0, 'toy': 2.0, 't': 1.0, 'we': 2.0, 'a': 3.0, 'didn': 1.0, 'alternative': 1.0, 'shake': 1.0, 'enjoys': 1.0, 'him': 2.0, 'be': 1.0, 'within': 1.0, 'did': 1.0, 'himself': 1.0, 'recommend': 1.0, 'minutes': 1.0, 'make': 1.0, 'on': 1.0, 'mark': 1.0, 'head': 1.0, 'bruise': 2.0, 'causing': 1.0}
Word element => {'set': 1.0, 'so': 1.0, 'sometimes': 1.0, 'drool': 1.0, 'out': 2.0, 'let': 2.0, 'in': 2.0, 'didn': 1.0, 'became': 2.0, 'gift': 1.0, 'this': 1.0, 'toys': 1.0, 'favorite': 1.0, 'hold': 1.0, 'shower': 1.0, 'of': 1.0, 'only': 1.0, 'much': 1.0, 'received': 1.0, 'dry': 1.0, 'interested': 1.0, 'one': 1.0, 'for': 1.0, 'when': 1.0, 'i': 1.0, 'that': 2.0, 'loves': 2.0, 'but': 1.0, 'little': 2.0, 'giggler': 1.0, 'we': 3.0, 'a': 2.0, 't': 1.0, 'holes': 1.0, 'also': 1.0, 'wiggly': 1.0, 'it': 4.0, 'she': 2.0, 'easy': 1.0, 'the': 6.0, 'hands': 1.0, 'mostly': 1.0, 'noise': 2.0, 'and': 1.0, 'is': 2.0, 'her': 1.0, 'our': 1.0, 'as': 1.0, 'to': 4.0, 'had': 1.0, 'aside': 1.0, 'chew': 1.0, 'think': 1.0, 'on': 1.0, 'problem': 1.0, 'have': 2.0}
Word element => {'shook': 1.0, 'made': 1.0, 'noise': 1.0, 'herself': 1.0, 'hold': 1.0, 'and': 2.0, 'the': 2.0, 'around': 1.0, 'fingers': 1.0, 'old': 1.0, 'liked': 1.0, 'for': 1.0, 'in': 1.0, 'could': 1.0, 'gift': 1.0, '6': 1.0, 'as': 2.0, 'it': 3.0, 'sister': 1.0, 'christmas': 1.0, 'this': 1.0, 'month': 1.0, 'loved': 1.0, 'got': 1.0, 'niece': 2.0, 'my': 2.0, 'our': 1.0, 'that': 1.0, 'she': 2.0, 'actually': 1.0, 'middle': 1.0, 'law': 1.0, 'a': 1.0, 'wrap': 1.0, 'her': 1.0}
Word element => {'knows': 1.0, 'old': 1.0, 'to': 3.0, 'shake': 1.0, 'obsessed': 1.0, 'is': 1.0, 'on': 1.0, 'recommend': 1.0, 'she': 1.0, 'month': 1.0, 'this': 1.0, 'with': 1.0, 'it': 2.0, 'noise': 1.0, '7': 1.0, 'my': 1.0, 'make': 1.0, 'how': 1.0, 'and': 1.0, 'toy': 1.0, 'highly': 1.0, 'also': 1.0, 'likes': 1.0, 'chew': 1.0}
Word element => {'so': 1.0, 'or': 1.0, 'past': 1.0, 'over': 1.0, 'around': 1.0, 'him': 1.0, 'favorite': 1.0, 'has': 1.0, 'my': 1.0, 'and': 1.0, 'immediately': 1.0, 'up': 1.0, 'house': 1.0, 'loveable': 1.0, 'is': 1.0, 'pooh': 1.0, 'plush': 1.0, 'became': 1.0, 'held': 1.0, 'she': 1.0, 'he': 2.0, 'this': 1.0, 'as': 1.0, 'year': 2.0, 'old': 1.0, 'niece': 1.0, 's': 1.0, 'well': 1.0, 'the': 2.0, '2': 1.0, 'drags': 1.0}
Word element => {'fine': 1.0, 'overall': 1.0, 'disney': 1.0, 'from': 1.0, 'came': 1.0, 'paying': 1.0, 'liked': 1.0, 'item': 1.0, 't': 1.0, 'requested': 1.0, 'overly': 1.0, 'in': 1.0, 'months': 1.0, 'seem': 1.0, 'expensive': 1.0, '8': 1.0, '2years': 1.0, 'she': 1.0, 'price': 1.0, 'grandaughter': 1.0, 'had': 1.0, 'was': 3.0, 'my': 1.0, 'this': 1.0, 'it': 5.0, 'but': 2.0, 'didn': 1.0, 'that': 1.0, 'thought': 1.0, 'because': 1.0, 'interested': 1.0, 'guess': 1.0, 'i': 3.0}
Word element => {'satisfied': 1.0, 'phone': 1.0, 'am': 1.0, 'cell': 1.0, 'keys': 1.0, 'at': 1.0, 'right': 1.0, 'walking': 1.0, 'need': 1.0, 'wait': 1.0, 'from': 1.0, 'straw': 1.0, 'hold': 1.0, 'spare': 1.0, 'water': 1.0, 'would': 1.0, 'still': 1.0, 'wider': 1.0, 'had': 1.0, 'holds': 1.0, 'is': 1.0, 'has': 1.0, 'size': 1.0, 'designed': 1.0, 'plastic': 1.0, 'adjust': 1.0, 'tech': 2.0, 'perfectly': 1.0, 'can': 2.0, 'tike': 2.0, 'have': 3.0, 'stroller': 2.0, 'so': 1.0, 'bottle': 2.0, 'very': 1.0, 'inches': 1.0, 'little': 1.0, 'been': 3.0, '4': 1.0, 'i': 6.0, 'nervous': 1.0, 'even': 1.0, 'it': 6.0, 'this': 2.0, 'with': 5.0, 'great': 2.0, 'hands': 1.0, 'the': 2.0, 'adjustment': 1.0, '32oz': 1.0, 'ordering': 1.0, 'wow': 1.0, 'not': 1.0, 'zoo': 1.0, 'w': 1.0, 'because': 1.0, 'was': 1.0, 'jogging': 2.0, 'everything': 1.0, 'if': 1.0, 'go': 1.0, 't': 1.0, 'a': 7.0, 'graco': 2.0, 'obviously': 1.0, 'almost': 1.0, 'and': 3.0, 'similar': 1.0, 'holder': 1.0, 'design': 1.0, 'to': 4.0, 'any': 1.0, 'as': 1.0, '3': 1.0, 'on': 1.0, 'my': 3.0, 'plenty': 1.0, 'of': 1.0, 'drinks': 1.0, 'room': 2.0, 'product': 1.0, 'fit': 3.0, 'for': 1.0, 'cup': 1.0, 'medium': 1.0, 'stoller': 1.0}
Word element => {'back': 1.0, 'sent': 1.0, 'have': 1.0, 'would': 1.0, 'work': 1.0, 'didn': 1.0, 'love': 1.0, 'was': 1.0, 'now': 1.0, 'across': 1.0, 'inches': 1.0, '5': 1.0, 'd': 1.0, 'than': 1.0, 'more': 1.0, 'holds': 1.0, 'but': 2.0, 'looks': 1.0, 'inconvenient': 1.0, 'somewhere': 1.0, 'wrestled': 1.0, 'rotated': 1.0, 'like': 1.0, 'in': 1.0, 've': 1.0, 'each': 1.0, 'skinny': 1.0, 'and': 8.0, 'for': 1.0, 'bottles': 1.0, 'baby': 2.0, 'closest': 1.0, 'quality': 1.0, 'to': 5.0, 'if': 1.0, 'zippered': 1.0, 'still': 1.0, 'holders': 1.0, 'bottle': 1.0, 'this': 1.0, '1': 1.0, 'find': 1.0, 'one': 1.0, 'i': 8.0, 'wrong': 1.0, 'wedged': 1.0, 'opening': 2.0, 'can': 2.0, 'will': 1.0, 'hour': 1.0, 'secure': 1.0, 'very': 2.0, 'around': 1.0, 'about': 2.0, 'without': 1.0, 'fairly': 1.0, 'fit': 1.0, 't': 2.0, 'small': 2.0, 'a': 5.0, 's': 2.0, 'oblong': 1.0, 'be': 3.0, 'although': 1.0, 'deep': 1.0, 'because': 1.0, 'that': 4.0, 'into': 1.0, 'excellent': 1.0, '2': 1.0, 'thing': 1.0, 'happens': 1.0, 'with': 2.0, 'water': 1.0, 'major': 1.0, 'just': 1.0, 'openings': 2.0, 'out': 2.0, 'able': 1.0, 'you': 1.0, 'oops': 1.0, 'face': 1.0, 'on': 1.0, '3': 1.0, 'think': 3.0, 'any': 2.0, 'your': 1.0, 'positive': 1.0, 'note': 1.0, 'stretched': 1.0, 'great': 1.0, 'damage': 1.0, 'johnson': 1.0, 'worked': 1.0, 'powder': 1.0, 'is': 4.0, 'at': 2.0, '12': 1.0, 'shaped': 1.0, '6': 1.0, 'it': 9.0, '9': 1.0, 'attach': 1.0, 'the': 9.0, 'of': 1.0, 'has': 2.0, 'clock': 1.0, 'left': 1.0, 'found': 2.0, 'disappointing': 1.0, 'easy': 1.0, 'container': 1.0, 'between': 1.0, 'enlarge': 1.0, 'pocket': 1.0, 'square': 1.0, 'rounded': 1.0, 'edges': 1.0, 'stroller': 1.0, 'an': 1.0, 'fits': 1.0, '22oz': 1.0, 'perfectly': 1.0}
Word element => {'because': 1.0, 'out': 1.0, 'time': 2.0, 'every': 2.0, 'single': 1.0, 'change': 1.0, 'is': 1.0, 'stuff': 1.0, 'i': 3.0, 'playing': 1.0, 'in': 1.0, 'loves': 2.0, 'everthing': 1.0, 'to': 1.0, 'lights': 1.0, 'son': 1.0, 'done': 1.0, 'get': 1.0, 'and': 3.0, 'my': 2.0, 'poops': 1.0, 'the': 3.0, 'love': 1.0, 'him': 4.0, 'can': 1.0, 'take': 1.0, 'sitting': 1.0, 'we': 1.0, 'around': 1.0, 'only': 1.0, 'this': 2.0, 'with': 1.0, 'it': 1.0, 'he': 2.0, 'keep': 1.0, 'music': 1.0, 'have': 1.0, 'thing': 1.0, 'bad': 1.0, 'busy': 1.0, 'while': 1.0}
Word element => {'them': 1.0, 'sprayed': 1.0, 'also': 1.0, 'pads': 1.0, 'ink': 1.0, 'product': 1.0, 'bought': 1.0, 'store': 1.0, 'michael': 1.0, 'sealer': 2.0, 'with': 2.0, 's': 2.0, 'baby': 1.0, 'off': 1.0, 'our': 1.0, 'permanently': 1.0, 'footprints': 2.0, 'they': 3.0, 're': 1.0, 'forgot': 1.0, 'now': 1.0, 'to': 2.0, 'hospital': 1.0, 'great': 1.0, 'these': 1.0, 'the': 4.0, 'very': 1.0, 'worked': 1.0, 'from': 2.0, 'received': 1.0, 'inkpads': 1.0, 'we': 1.0, 'on': 2.0, 'soccer': 2.0, 'put': 1.0, 'but': 1.0, 'well': 1.0, 'craft': 1.0, 'a': 2.0, 'rubbed': 1.0, 'clear': 2.0, 'i': 3.0, 'and': 2.0, 'ball': 2.0, 'spray': 1.0}
Word element => {'shipping': 1.0, 'order': 1.0, 'plus': 1.0, 'out': 1.0, 'a': 1.0, 'stamp': 1.0, 'quickly': 1.0, 'his': 1.0, 'go': 1.0, 'quick': 2.0, 'it': 1.0, 'on': 1.0, 'use': 2.0, 'easy': 2.0, 'turned': 1.0, 'wipe': 1.0, 'to': 4.0, 'liked': 1.0, 'strips': 1.0, 'great': 1.0, 'the': 2.0, 'were': 1.0, 'ink': 2.0, 'took': 1.0, 'i': 2.0, 'they': 2.0, 'your': 2.0, 'or': 1.0, 'all': 1.0, 'have': 1.0, 'done': 1.0, 'and': 3.0, 'do': 1.0, 'really': 2.0, 'is': 1.0, 'ready': 1.0, 'put': 1.0, 'lo': 1.0, 'prints': 1.0, 'you': 1.0, 's': 1.0, 'rinse': 1.0, 'hand': 2.0, 'foot': 1.0}
Word element => {'making': 1.0, 'have': 1.0, 'definitely': 1.0, 'him': 1.0, 'mom': 1.0, 'tiny': 1.0, 'right': 1.0, 'cleaned': 1.0, 'it': 2.0, 'oil': 1.0, 'clean': 1.0, 'paper': 1.0, 'except': 1.0, 'on': 3.0, 'done': 1.0, 'press': 1.0, 'down': 2.0, 'while': 1.0, 'rub': 2.0, 'took': 1.0, 'then': 2.0, 'fingernails': 1.0, 'provided': 1.0, 'with': 3.0, 'first': 2.0, 'fingers': 1.0, 'uncurl': 1.0, 'bottle': 1.0, 'bit': 1.0, 'so': 1.0, 'image': 1.0, 'had': 1.0, 'own': 1.0, 'an': 1.0, 'lotion': 1.0, 'posted': 1.0, 'my': 3.0, 'mess': 1.0, 'i': 2.0, 'expected': 1.0, 'because': 1.0, 'you': 2.0, 'prints': 2.0, 'came': 1.0, 'a': 3.0, 'we': 2.0, 's': 1.0, 't': 3.0, 'son': 1.0, 'around': 1.0, 'finished': 1.0, 'and': 4.0, 'results': 1.0, 'used': 1.0, 'his': 4.0, 'slowly': 1.0, 'they': 2.0, 'couldn': 1.0, 'see': 1.0, 'feet': 1.0, 'out': 2.0, 'baby': 2.0, 'wipe': 4.0, 'them': 4.0, 'balled': 1.0, 'just': 1.0, 'fists': 1.0, 'same': 2.0, 'roll': 1.0, 'some': 2.0, 'ink': 2.0, 'for': 2.0, 'to': 1.0, 'as': 2.0, 'all': 1.0, 'can': 1.0, 'four': 1.0, 'off': 1.0, 'pad': 2.0, 'images': 1.0, 'without': 1.0, 'the': 7.0, 'hands': 2.0, 'little': 1.0, 'come': 1.0, 'he': 1.0, 'didn': 1.0, 'wouldn': 1.0, 'clearly': 1.0, 'up': 3.0, 'gave': 2.0, 'into': 2.0}
Word element => {'wiped': 1.0, 'better': 1.0, 'much': 1.0, 'worked': 1.0, 'that': 1.0, 'not': 1.0, 'come': 1.0, 'this': 2.0, 'with': 1.0, 'it': 2.0, 'little': 1.0, 'awful': 1.0, 'is': 1.0, 'people': 1.0, 'ink': 1.0, 'were': 1.0, 'does': 1.0, 'thinking': 1.0, 'i': 1.0, 'ended': 2.0, 'scub': 1.0, 'the': 2.0, 'who': 1.0, 'my': 1.0, 'made': 1.0, 'stuff': 1.0, 'guy': 1.0, 'don': 1.0, 'over': 1.0, 'up': 2.0, 'him': 1.0, 'and': 2.0, 'poor': 1.0, 'get': 1.0, 'what': 1.0, 'had': 1.0, 'all': 1.0, 'to': 2.0, 'know': 1.0, 'using': 1.0, 'product': 1.0, 'art': 1.0, 'an': 1.0, 'stamp': 1.0, 'off': 3.0, 'pad': 1.0, 'from': 1.0, 't': 1.0, 'we': 2.0, 'a': 1.0, 'easily': 1.0, 'local': 1.0, 'craft': 1.0, 'store': 1.0}
Word element => {'newborn': 1.0, 'wait': 1.0, 't': 1.0, 'can': 1.0, 'time': 1.0, 'experience': 1.0, 'wipes': 1.0, 'off': 1.0, 'liked': 1.0, 'foot': 1.0, 'his': 1.0, 'pad': 1.0, 'anticipated': 1.0, 'than': 1.0, 'any': 1.0, 'idea': 2.0, 'am': 1.0, 'would': 1.0, 'it': 1.0, 'thought': 2.0, 'had': 1.0, 'kids': 2.0, 'this': 1.0, 'provided': 2.0, 'use': 1.0, 'her': 5.0, 'watch': 1.0, 'a': 8.0, 'friend': 2.0, 'birthday': 1.0, 'good': 1.0, 'gift': 1.0, 'print': 3.0, 'fun': 1.0, 'best': 1.0, 'onto': 1.0, 'due': 1.0, 'safe': 1.0, 'make': 1.0, 'my': 3.0, 'perfect': 1.0, 'family': 1.0, 'details': 1.0, 'of': 1.0, 'the': 14.0, 'hands': 2.0, 'looking': 1.0, 'next': 1.0, 'has': 2.0, 'always': 1.0, 'excited': 1.0, 'gifts': 2.0, 'easier': 1.0, 'ways': 1.0, 'first': 1.0, 'personalized': 1.0, 'went': 1.0, 'members': 1.0, 'be': 2.0, 'for': 5.0, 'livi': 4.0, 'friends': 1.0, 'bit': 1.0, 'sheet': 1.0, 'and': 6.0, 'to': 7.0, 'our': 1.0, 'was': 6.0, 'crazy': 1.0, 'month': 1.0, 'opportunity': 1.0, 'ink': 5.0, 'try': 1.0, 'cleaned': 1.0, 'printing': 1.0, 'about': 1.0, 'on': 1.0, 'diy': 1.0, 'noah': 4.0, 'she': 1.0, 'baby': 2.0, 'got': 2.0, 'were': 1.0, 'together': 1.0, 's': 2.0, 'session': 1.0, '5': 1.0, 'will': 1.0, '2': 1.0, 'in': 3.0, 'december': 1.0, 'i': 16.0, 'feet': 1.0, 'easily': 1.0, 'that': 3.0, 'because': 1.0, 'active': 1.0, 'fingers': 1.0, 'product': 1.0, 'toddler': 1.0, 'worked': 1.0, 'with': 3.0, 'pressed': 3.0, 'opened': 1.0, 'package': 1.0, 'shown': 1.0, 'hand': 3.0, 'we': 1.0, 'then': 3.0, 'once': 1.0, 'paper': 1.0, 'repeated': 1.0, 'all': 2.0, 'an': 1.0, 'other': 1.0, 'week': 1.0, 'amazed': 1.0, 'is': 2.0, 'at': 1.0, 'lines': 1.0, 'love': 1.0, 'he': 1.0}
Word element => {'days': 1.0, 'couple': 1.0, 'feet': 1.0, 'right': 1.0, 'a': 1.0, 'black': 1.0, 'well': 1.0, 'indicate': 1.0, 's': 1.0, 'doesn': 1.0, 'but': 1.0, 'use': 1.0, 'of': 3.0, 'kit': 1.0, 'off': 1.0, 'baby': 1.0, 'ink': 1.0, 'come': 1.0, 'this': 1.0, 'with': 1.0, 'kind': 1.0, 'worked': 1.0, 'son': 1.0, 't': 1.0, 'the': 3.0, 'oil': 1.0, 'for': 1.0, 'directions': 1.0, 'like': 1.0, 'were': 1.0, 'our': 1.0}
Word element => {'description': 1.0, 'this': 1.0, 'with': 1.0, 'unsatisfied': 1.0, 'pulled': 1.0, 'considered': 1.0, 'needs': 1.0, 'sheet': 1.0, 'one': 1.0, 'companies': 1.0, '3': 1.0, 'not': 1.0, 'that': 2.0, 'very': 1.0, 'inches': 1.0, 'is': 1.0, 'around': 1.0, 'ink': 3.0, 'size': 1.0, 'item': 1.0, 'sheets': 4.0, 'are': 1.0, 'the': 5.0, '6': 1.0, 'just': 1.0, 'says': 2.0, 'be': 2.0, 'product': 2.0, 'dimensions': 1.0, 'they': 1.0, '9': 1.0, 'x': 2.0, 'to': 1.0, 'as': 1.0, 'from': 1.0, 'accurate': 1.0, 'would': 1.0, 'was': 1.0, '5': 1.0, 'it': 2.0, 'really': 1.0, 'i': 1.0, 'thinking': 1.0, '4': 1.0, 'two': 2.0, 'once': 1.0, 'set': 1.0, 'sets': 1.0, 'pull': 1.0, 's': 2.0, 'a': 1.0, 'same': 1.0, 'apart': 2.0, 'pieces': 2.0, 'get': 1.0, 'but': 2.0, 'four': 2.0, 'you': 3.0, 'when': 1.0, 'order': 1.0, 'other': 1.0}
Word element => {'up': 1.0, 'would': 1.0, 'better': 1.0, 'pad': 1.0, 'have': 1.0, 'ink': 2.0, 'an': 1.0, 'was': 1.0, 'to': 1.0, 'very': 1.0, 'worked': 1.0, 'messy': 1.0, 'with': 1.0, 'hard': 1.0, 'and': 1.0, 'get': 1.0, 'we': 1.0, 'everywhere': 1.0, 'on': 1.0, 'the': 1.0, 's': 1.0, 'hands': 1.0, 'incredibly': 1.0, 'baby': 1.0, 'ended': 1.0}
Word element => {'a': 1.0, 'limb': 1.0, 'out': 1.0, 'waste': 1.0, 'ways': 1.0, 'his': 1.0, 'at': 1.0, 'two': 1.0, 'easier': 1.0, 'each': 1.0, 'much': 1.0, 'hour': 1.0, 'to': 1.0, 'of': 1.0, 'there': 2.0, 'easy': 1.0, 'are': 1.0, 'not': 1.0, 'messy': 1.0, 'money': 1.0, 'it': 1.0, 'time': 2.0, 'took': 1.0, 'whole': 1.0, 'nap': 1.0, 'and': 1.0, 'do': 1.0}
Word element => {'older': 1.0, 'he': 1.0, 'when': 1.0, 'off': 2.0, 'two': 2.0, 'were': 1.0, 'ink': 2.0, 'right': 1.0, 'to': 2.0, 'use': 1.0, 'easy': 1.0, 'able': 1.0, 'foot': 1.0, 'hand': 1.0, 're': 1.0, 'get': 1.0, 'and': 1.0, 'washed': 1.0, 'of': 2.0, 'for': 1.0, 'one': 2.0, 'the': 2.0, 's': 1.0, 'prints': 2.0, 'sheets': 1.0, 'saving': 1.0, 'we': 2.0, 'other': 1.0}
Word element => {'hospital': 1.0, 'at': 1.0, 'whatever': 1.0, 'us': 1.0, 'two': 1.0, 'different': 1.0, 'been': 1.0, 'think': 1.0, 'don': 1.0, 'really': 1.0, 'naivete': 1.0, 'new': 1.0, 'wish': 1.0, 'drastically': 1.0, 'myself': 1.0, 'by': 1.0, 'had': 2.0, 'suggested': 1.0, 'oil': 1.0, 'mineral': 1.0, 'alone': 1.0, 'up': 1.0, 'clean': 1.0, 'enough': 1.0, 'results': 1.0, 'when': 1.0, 'more': 1.0, 'than': 1.0, 'way': 1.0, 'their': 1.0, 'fun': 1.0, 'they': 4.0, 'though': 1.0, 'display': 1.0, 'useable': 1.0, 'mom': 1.0, 'any': 1.0, 'so': 1.0, 'limp': 1.0, 'big': 1.0, 'limbs': 1.0, 'his': 6.0, 'kind': 1.0, 'get': 1.0, 'was': 4.0, 'sleep': 1.0, 'waited': 1.0, 'stars': 1.0, 'product': 2.0, 'for': 3.0, 'we': 1.0, 'then': 1.0, 'am': 1.0, '2': 2.0, 'toes': 1.0, 'how': 1.0, 'he': 3.0, 'hindsight': 1.0, 'if': 1.0, 'stupid': 1.0, 'would': 2.0, 'few': 1.0, 'this': 3.0, 'based': 2.0, 'minute': 1.0, 'footprints': 1.0, 'realize': 1.0, 'on': 6.0, 'much': 1.0, 'do': 3.0, 'pictures': 1.0, 'put': 1.0, 'days': 1.0, 'without': 1.0, 'me': 2.0, 'my': 3.0, 'month': 1.0, 'itself': 1.0, 'in': 4.0, 'have': 3.0, 'deep': 1.0, 'that': 3.0, 'give': 1.0, 'black': 2.0, 'old': 1.0, 'disappointing': 1.0, 'leaves': 1.0, 'to': 5.0, 'laughed': 1.0, 'used': 1.0, 'decided': 1.0, 'five': 1.0, 'and': 7.0, 'rating': 2.0, 'ink': 1.0, 'one': 2.0, 'too': 1.0, 'covered': 1.0, 'fingers': 1.0, 'newborn': 1.0, 'got': 1.0, 'fuss': 1.0, 'realized': 1.0, 'didn': 2.0, 'go': 1.0, 'a': 3.0, 'going': 1.0, 'hands': 3.0, 'fight': 1.0, 'weren': 1.0, 'with': 2.0, 'or': 2.0, 'no': 2.0, 'let': 2.0, 'curl': 1.0, 'all': 1.0, 'an': 1.0, 'leaving': 2.0, 'until': 1.0, 'own': 2.0, 'wouldn': 1.0, 'ok': 1.0, 'paper': 1.0, 'but': 2.0, 'print': 2.0, 'are': 1.0, 'first': 1.0, 'mess': 2.0, 'hand': 3.0, 'many': 1.0, 'were': 1.0, 'dirty': 1.0, 'wipes': 1.0, 'between': 1.0, 'the': 13.0, 'of': 4.0, 'prints': 2.0, 'face': 1.0, 'went': 1.0, 'provided': 1.0, 'cheek': 1.0, 'souvenir': 1.0, 't': 5.0, 'realizing': 1.0, 'muss': 1.0, 'be': 1.0, 'it': 3.0, 'him': 1.0, 'trying': 1.0, 'extra': 1.0, 'messy': 1.0, 'i': 15.0, 'feet': 3.0, 'broke': 1.0}
Word element => {'got': 1.0, 'toes': 1.0, 'his': 1.0, 'all': 1.0, 'messier': 1.0, 'fingers': 1.0, 'was': 1.0, 'as': 1.0, 'everywhere': 2.0, 'not': 1.0, 'own': 1.0, 'did': 1.0, 'also': 1.0, 'i': 3.0, 'where': 1.0, 'when': 2.0, 'one': 1.0, 'bought': 1.0, 'go': 1.0, 'carters': 2.0, 'much': 1.0, 'meant': 1.0, 'between': 1.0, 'however': 1.0, 'said': 1.0, 'pressed': 1.0, 'basic': 2.0, 'the': 2.0, 'went': 1.0, 'my': 1.0, 'they': 2.0, 'and': 4.0, 'do': 1.0, 'sons': 1.0, 'prefer': 1.0, 'foot': 1.0, 'into': 1.0, 'this': 1.0, 'it': 1.0, 'ink': 1.0}
Word element => {'worked': 1.0, 'product': 1.0, 'a': 1.0, 'been': 1.0, 'i': 1.0, 'wipes': 1.0, 'remove': 1.0, 'ink': 1.0, 'oil': 1.0, 'the': 2.0, 'great': 2.0, 'footprints': 1.0, 'helped': 1.0, 'then': 1.0, 'use': 2.0, 'easy': 1.0, 'get': 1.0, 'me': 1.0, 'and': 4.0, 'had': 1.0, 'comes': 1.0, 'to': 1.0, 'it': 1.0, 'this': 1.0, 'with': 1.0, 'first': 1.0, 'off': 1.0, 'baby': 2.0, 'like': 1.0, 'easily': 1.0, 'lotion': 1.0, 'if': 1.0, 'follow': 1.0, 'you': 1.0, 'looking': 1.0, 'feet': 1.0, 'for': 1.0, 'directions': 1.0, 'wash': 1.0}
Word element => {'hey': 1.0, 'stuff': 2.0, 'i': 3.0, 'think': 1.0, 'it': 1.0, 's': 1.0, 'yet': 2.0, 'but': 2.0, 'use': 2.0, 'to': 2.0, 'have': 2.0, 'this': 2.0, 'good': 2.0}
Word element => {'asleep': 1.0, 'is': 1.0, 'your': 1.0, 'child': 1.0, 'them': 1.0, 'tip': 1.0, 'otherwise': 1.0, 'of': 1.0, 'when': 1.0, 'daughter': 1.0, 'be': 1.0, 'hand': 1.0, 'did': 1.0, 'but': 1.0, 'week': 1.0, 'do': 1.0, 'and': 2.0, 'like': 1.0, 'maybe': 1.0, 'feet': 1.0, 'choice': 1.0, 'my': 1.0, 'colours': 1.0, 'we': 1.0, 's': 1.0, 'prints': 1.0, 'well': 1.0, 'a': 1.0, 'quick': 1.0, 'only': 1.0, 'it': 2.0, '11': 1.0, 'worked': 2.0, 'thing': 1.0, 'would': 2.0, 've': 1.0, 'old': 1.0, 'i': 1.0}
Word element => {'pad': 1.0, 'ink': 1.0, 'be': 1.0, 'disappointed': 1.0, 'use': 1.0, 'would': 1.0, 'highly': 1.0, 'safely': 1.0, 'didn': 1.0, 'us': 1.0, 'happened': 1.0, 'with': 2.0, 'about': 1.0, 'took': 1.0, 'will': 1.0, 'also': 1.0, 'in': 1.0, 'using': 1.0, 'body': 1.0, 'recommend': 1.0, 'was': 1.0, 'baby': 1.0, 'wipe': 1.0, '2': 1.0, 'mess': 1.0, 'my': 1.0, 'very': 2.0, 'hard': 1.0, 'from': 1.0, 'and': 3.0, 'of': 1.0, 't': 1.0, 'a': 2.0, 'old': 1.0, '20min': 1.0, 'used': 1.0, 'last': 1.0, 'her': 1.0, 'to': 5.0, 'all': 3.0, 'the': 2.0, 'hands': 1.0, '1': 1.0, 'mention': 1.0, 'remove': 2.0, 'it': 6.0, 'month': 1.0, 'she': 1.0, 'feet': 1.0, 'on': 2.0, 'bath': 1.0, 'get': 1.0, 'tub': 1.0, 'that': 1.0, 'parts': 1.0, 'they': 1.0, 'sent': 1.0, 'help': 1.0, 'at': 1.0, 'not': 3.0, 'other': 1.0}
Word element => {'paint': 1.0, 'maybe': 1.0, 'open': 1.0, 'll': 1.0, 'make': 1.0, 'enough': 1.0, 'wait': 1.0, 'd': 1.0, 'stage': 1.0, 'do': 1.0, '100': 1.0, 'any': 1.0, 'going': 1.0, 'want': 2.0, 'babies': 1.0, 'toxic': 2.0, 're': 3.0, 'used': 1.0, 'other': 1.0, 'assume': 1.0, 'stamps': 1.0, 'using': 1.0, 'pads': 2.0, 'places': 1.0, 'water': 1.0, 'up': 1.0, 'be': 1.0, 'if': 3.0, 'go': 1.0, 'so': 1.0, 'can': 2.0, 'notarized': 1.0, 'you': 9.0, 'while': 1.0, 'should': 1.0, 'until': 1.0, 'see': 1.0, 'off': 1.0, 'non': 1.0, 'into': 1.0, 'claims': 1.0, 'instead': 1.0, 'took': 1.0, 'newborn': 2.0, 'my': 1.0, 'buy': 1.0, 'something': 1.0, 'hand': 1.0, 'like': 3.0, 'aren': 1.0, 'they': 2.0, 'sleeping': 1.0, 'really': 2.0, 'crevices': 1.0, 'believe': 1.0, 'bought': 1.0, 'glad': 1.0, 'from': 2.0, 'best': 1.0, 'absolutely': 1.0, 'that': 7.0, 'because': 3.0, 'easily': 1.0, 'when': 3.0, 'find': 1.0, 'since': 1.0, 'is': 2.0, 'at': 3.0, 'old': 1.0, 'wonderful': 1.0, 'and': 10.0, 'get': 3.0, 'directions': 1.0, 'are': 1.0, 'bad': 1.0, 'purchased': 1.0, 'had': 2.0, 'this': 6.0, 'kits': 1.0, 'with': 1.0, 'weren': 1.0, 'it': 6.0, 'lot': 3.0, 'too': 2.0, 'ink': 11.0, 'feet': 2.0, 'i': 9.0, 'store': 1.0, 'sure': 3.0, 'seemed': 1.0, 'mention': 1.0, 'for': 5.0, 'smeared': 2.0, 'wasn': 1.0, 'prepared': 1.0, 'kit': 3.0, 'these': 2.0, 'comes': 1.0, 'probaby': 1.0, 'spongey': 1.0, 'to': 6.0, 'our': 1.0, 'hands': 3.0, 'least': 1.0, 'wanted': 1.0, 'simple': 1.0, 'keepsake': 1.0, 'none': 1.0, 'she': 1.0, 'baby': 4.0, 't': 8.0, 'a': 6.0, 'fine': 1.0, 'then': 3.0, 'reviews': 1.0, 'we': 2.0, 'the': 20.0, 'of': 8.0, 'prints': 3.0, 'fault': 1.0, 'particularly': 1.0, 'but': 1.0, 'under': 1.0, 'worst': 1.0, 'difficult': 1.0, 'use': 3.0, 'her': 4.0, 'nails': 1.0, 'week': 1.0, 'clean': 1.0, 'car': 1.0, 'not': 5.0, 'two': 1.0, 'little': 1.0, 'us': 1.0, 'anywhere': 1.0, 'though': 2.0, 'followed': 1.0, 'based': 1.0, 'good': 1.0, 'made': 1.0, 'was': 3.0, 'restrained': 1.0, 'doesn': 1.0, 'everyone': 1.0, 'm': 1.0, 'seat': 1.0, 'in': 1.0, 'keep': 1.0, 'did': 2.0, 'getting': 1.0, 'know': 1.0, 'however': 1.0, 'proposition': 1.0, 'footprints': 1.0, 'realize': 1.0, 'don': 1.0, 'isn': 2.0, 'better': 1.0, 'types': 1.0, 'example': 1.0, 'process': 1.0, 'ground': 1.0, 'think': 1.0}
Word element => {'print': 1.0, 'solid': 1.0, 'open': 1.0, 'this': 1.0, 'using': 1.0, 'a': 2.0, 'isn': 1.0, 'enough': 2.0, 'their': 1.0, 'long': 1.0, 'part': 1.0, 'hands': 1.0, 'hardest': 1.0, 'to': 3.0, 'be': 1.0, 'product': 1.0, 't': 1.0, 'the': 2.0, 'off': 1.0, 'about': 1.0, 'baby': 1.0, 'easily': 1.0, 'cleans': 1.0, 'get': 1.0, 'getting': 1.0, 'going': 1.0, 'keep': 1.0, 'itself': 1.0, 'but': 1.0}
Word element => {'remaining': 1.0, 'nails': 1.0, 'in': 1.0, 'my': 1.0, 'and': 1.0, 'horrible': 2.0, 'baby': 2.0, 'her': 1.0, 'even': 1.0, 'totally': 1.0, 'ink': 3.0, 'won': 1.0, 'remove': 2.0, 'stubborn': 1.0, 'from': 1.0, 'very': 1.0, 'item': 1.0, 'but': 2.0, 'has': 1.0, 'time': 1.0, 'is': 2.0, 'things': 1.0, 'review': 2.0, 'for': 2.0, 'never': 1.0, 'i': 2.0, 'to': 4.0, 'was': 1.0, 'take': 1.0, 'foot': 1.0, 't': 1.0, 'oil': 1.0, 'the': 2.0, 'such': 1.0, 'mess': 2.0, 'okay': 1.0, 'a': 3.0, 'budge': 1.0, 'am': 1.0, 'going': 1.0, 'with': 1.0, 'this': 1.0, 'it': 5.0, 'still': 2.0, 'handprints': 1.0, 'print': 1.0}
Word element => {'feet': 1.0, '2': 2.0, 'great': 1.0, 'gave': 1.0, 'hands': 1.0, 'easy': 1.0, 'use': 1.0, 'project': 1.0, 'do': 1.0, 'and': 4.0, 'there': 1.0, 'set': 1.0, 'up': 1.0, 'a': 1.0, 'plenty': 1.0, 'prints': 1.0, 'to': 2.0, 'was': 2.0, 'really': 1.0, 'it': 1.0, 'this': 1.0, 'our': 1.0, 'easily': 1.0, 'one': 1.0, 'for': 1.0, 'book': 1.0, 'baby': 1.0, 'clear': 1.0, 'i': 1.0, 'cleaned': 1.0, 'ordered': 1.0}
Word element => {'wipe': 1.0, 'using': 1.0, 'were': 1.0, 'and': 1.0, 'hands': 1.0, 's': 1.0, 'girl': 1.0, 'problem': 1.0, 'after': 1.0, 'so': 1.0, 'thin': 1.0, 'doesn': 1.0, 'indicated': 1.0, 'though': 1.0, 'my': 1.0, 'is': 2.0, 'fine': 1.0, 'as': 1.0, 'very': 1.0, 'worked': 1.0, 'of': 1.0, 'kit': 1.0, 'off': 1.0, 'baby': 1.0, 'little': 1.0, 'ink': 2.0, 'with': 1.0, 'come': 1.0, 'this': 1.0, 'blank': 1.0, 'feet': 1.0, 'right': 1.0, 'use': 1.0, 'the': 5.0, 't': 1.0, 'oil': 1.0}
Word element => {'enough': 1.0, 'asleep': 1.0, 'his': 1.0, 'do': 1.0, 'to': 1.0, 'still': 1.0, 'great': 1.0, 'when': 1.0, 'i': 1.0, 's': 1.0, 'hands': 1.0, 'did': 1.0, 'out': 1.0, 'hes': 1.0, 'my': 1.0, 'baby': 1.0, 'need': 1.0, 'and': 1.0, 'foot': 1.0, 'they': 1.0, 'prints': 1.0, 'came': 1.0}
Word element => {'loved': 1.0, 'everyone': 1.0, 'birth': 1.0, 'on': 1.0, 'prints': 1.0, 'printed': 1.0, 'scanned': 1.0, 'priceless': 1.0, 'are': 1.0, 'end': 1.0, 'simple': 1.0, 'announcements': 1.0, 'say': 1.0, 'instructions': 1.0, 'that': 1.0, 'her': 1.0, 'clean': 1.0, 'and': 3.0, 'easy': 1.0, 'get': 1.0, 'it': 2.0, 'great': 1.0, 'results': 1.0, 'hospital': 1.0, 'of': 1.0, 'product': 1.0, 'kit': 2.0, 'makes': 1.0, 'ink': 2.0, 'looking': 1.0, 'out': 1.0, 'couple': 1.0, 'feet': 1.0, 'like': 1.0, 'brought': 1.0, 'me': 1.0, 'not': 1.0, 'this': 1.0, 'found': 1.0, 'with': 2.0, 'footprints': 3.0, 'birthing': 1.0, 'daughter': 1.0, 'mine': 1.0, 'one': 1.0, 'i': 1.0, 'did': 1.0, 'take': 1.0, 'them': 2.0, 'baby': 2.0, 'got': 1.0, 'we': 3.0, 's': 3.0, 'a': 2.0, 'when': 1.0, 'times': 1.0, 'does': 2.0, 'center': 1.0, 'our': 3.0, 'to': 1.0, 'handprints': 1.0, 'all': 1.0, 'over': 1.0, 'the': 4.0, 'hands': 1.0, 'but': 2.0, 'off': 1.0}
Word element => {'after': 1.0, 'this': 1.0, 'over': 1.0, 'kit': 2.0, 'it': 1.0, 'works': 1.0, 'no': 2.0, 'well': 1.0, 'use': 1.0, 'but': 1.0, 'tossed': 1.0, 'messy': 1.0, 'is': 1.0, 'the': 2.0, 'and': 1.0, 'very': 1.0, 'one': 2.0, 'i': 2.0, 'ordered': 1.0, 'out': 1.0, 'preferred': 1.0, 'mess': 2.0}
Word element => {'clothing': 1.0, 'stains': 1.0, 'feet': 1.0, 'and': 2.0, 'remove': 1.0, 'from': 1.0, 'worked': 1.0, 'sheets': 1.0, 'prints': 1.0, 'made': 1.0, 'more': 1.0, 'the': 1.0, 'my': 2.0, 'nice': 1.0, 'product': 1.0, 'thos': 1.0, 'for': 1.0, 'one': 1.0, 'babys': 1.0, 'than': 1.0, 'hands': 1.0, 'easy': 1.0, 'print': 1.0, 'it': 1.0, 'only': 1.0, 'ink': 1.0, 'complaint': 1.0, 'is': 2.0, 'that': 1.0, 'to': 1.0, 'was': 1.0, 'not': 1.0}
Word element => {'wish': 1.0, 'be': 1.0, 'love': 1.0, 'panicking': 1.0, 'just': 2.0, 'panicked': 1.0, 'realized': 1.0, 'shocked': 1.0, 'actually': 1.0, 'thing': 1.0, 'will': 2.0, 'scrapbooks': 1.0, 'than': 1.0, 'if': 1.0, 'wet': 1.0, 'container': 1.0, 'right': 1.0, 'easier': 1.0, 'couldn': 1.0, 'tend': 1.0, 'up': 2.0, 'how': 2.0, 'minutes': 1.0, 'about': 2.0, 'wondering': 1.0, 'looked': 1.0, 'time': 1.0, 'special': 1.0, 'over': 1.0, 'pressed': 2.0, 'took': 2.0, 'while': 1.0, 'cleaned': 1.0, 'more': 1.0, 'husband': 1.0, 'done': 2.0, 'get': 1.0, 'people': 1.0, 'we': 2.0, 'then': 1.0, 'take': 1.0, 'did': 1.0, 'had': 5.0, 'counter': 3.0, 'nothing': 2.0, 'out': 1.0, 'am': 1.0, 'laid': 1.0, 'been': 3.0, 'easily': 1.0, 'because': 2.0, 'that': 8.0, 'same': 1.0, 'gave': 1.0, 'them': 4.0, 'always': 1.0, 's': 3.0, 'came': 2.0, 'might': 1.0, 'card': 1.0, 'small': 1.0, 'a': 6.0, 'baby': 4.0, 'onto': 1.0, 'exchange': 1.0, 'kids': 1.0, 'this': 7.0, 'with': 11.0, 'what': 1.0, 'when': 3.0, 'you': 3.0, 'once': 1.0, 'comes': 3.0, 'worry': 1.0, 'say': 1.0, 'to': 10.0, 'got': 1.0, 'review': 2.0, 'for': 3.0, 'product': 5.0, 'm': 1.0, 'in': 5.0, 've': 2.0, 'all': 3.0, 'an': 1.0, 'off': 4.0, 'own': 2.0, 'already': 1.0, 'it': 10.0, 'received': 1.0, 'differ': 1.0, 'kind': 1.0, 'easy': 5.0, 'sure': 3.0, 'enough': 1.0, 'make': 2.0, 'footprints': 1.0, 'on': 6.0, 'do': 1.0, 'messes': 1.0, 'put': 1.0, 'admit': 2.0, 'disclosure': 1.0, 't': 1.0, 'along': 2.0, 'may': 1.0, 'my': 5.0, 'read': 1.0, 'honest': 1.0, 'opinions': 1.0, 'expressed': 1.0, 'first': 1.0, 'are': 3.0, 'strips': 1.0, 'mess': 2.0, 'hand': 1.0, 'and': 13.0, 'wiped': 3.0, 'from': 1.0, 'audrey': 2.0, 'as': 2.0, 'yours': 1.0, 'hesitant': 1.0, 'have': 4.0, 'their': 3.0, 'terrified': 1.0, 'of': 4.0, 'doing': 2.0, 'prints': 3.0, 'the': 17.0, 'hands': 3.0, 'but': 2.0, 'they': 1.0, 'amazing': 1.0, 'only': 1.0, 'ones': 1.0, 'happy': 1.0, 'one': 1.0, 'held': 1.0, 'ink': 5.0, 'try': 2.0, 'two': 2.0, 'little': 3.0, 'very': 2.0, 'can': 1.0, 'so': 6.0, 'was': 9.0, 'cathleen': 1.0, 'skin': 1.0, 'pleasantly': 1.0, 'surprised': 1.0, 'soon': 1.0, 'there': 1.0, 'gotten': 1.0, 'no': 1.0, 'at': 3.0, 'incredibly': 1.0, 'her': 7.0, 'use': 1.0, 'everything': 2.0, 'or': 2.0, 'need': 2.0, 'went': 2.0, 'inside': 1.0, 'moms': 1.0, 'package': 1.0, 'after': 1.0, 'cards': 1.0, 'wipes': 3.0, 'clean': 4.0, 'made': 1.0, 'good': 1.0, 'well': 1.0, 'fast': 1.0, 'i': 22.0, 'feet': 7.0, 'follow': 1.0, 'directions': 2.0, 'most': 1.0, 'making': 1.0, 'were': 1.0}
Word element => {'up': 1.0, 'inked': 1.0, 'everything': 1.0, 'month': 1.0, 'and': 1.0, 'my': 1.0, 'great': 1.0, 'the': 2.0, 'son': 1.0, 'on': 1.0, '5': 1.0, 'pretty': 1.0, 'just': 1.0, 'his': 1.0, 'used': 1.0, 'even': 1.0, 'touch': 1.0, 'old': 1.0, 'i': 1.0, 'feet': 1.0, 'to': 1.0, 'wanted': 1.0, 'turned': 2.0, 'out': 2.0, 'hands': 2.0, 'nice': 1.0, 'too': 1.0, 'though': 1.0, 'with': 1.0, 'this': 1.0, 'he': 1.0}
Word element => {'just': 1.0, 'experience': 1.0, 'horrible': 1.0, 'week': 1.0, 'about': 1.0, 'skin': 1.0, 'off': 1.0, 'come': 1.0, 'it': 2.0, 'this': 1.0, 'excited': 1.0, 'prints': 1.0, 'way': 1.0, 'trying': 1.0, 'kit': 1.0, 'for': 2.0, 'i': 4.0, 'work': 1.0, 'but': 2.0, 'was': 4.0, 'husband': 1.0, 'baby': 3.0, 'wipe': 1.0, 'order': 1.0, 'so': 2.0, 'my': 4.0, 'make': 1.0, 'ink': 3.0, 'and': 1.0, 'getting': 1.0, 'album': 1.0, 'get': 1.0, 'hand': 2.0, 'as': 1.0, 'to': 3.0, 'all': 2.0, 'the': 7.0, 'hands': 1.0, 'before': 2.0, 'wouldn': 1.0, 'didn': 1.0, 'even': 2.0, 'his': 2.0, 'suggested': 1.0, 'used': 1.0, 'or': 1.0, 'held': 1.0, 'son': 1.0, 'still': 1.0, 'print': 1.0, 'out': 2.0, 'outfit': 1.0, 'that': 1.0, 'gave': 1.0, 'threw': 1.0, 'over': 2.0, 'beforehand': 1.0, 'up': 1.0, 's': 1.0, 't': 2.0, 'a': 3.0}
Word element => {'completely': 1.0, 'are': 1.0, 'opinions': 1.0, 'honest': 1.0, 'was': 1.0, 'problem': 1.0, 'a': 2.0, 'would': 1.0, 'two': 1.0, 'opinion': 1.0, 'another': 1.0, 'every': 1.0, 'perfect': 1.0, 'highly': 1.0, 'this': 3.0, 'provided': 3.0, 'dark': 1.0, 'you': 1.0, 'when': 1.0, 'with': 5.0, 'buying': 1.0, 'as': 2.0, 'single': 1.0, 'at': 1.0, 'is': 2.0, 'these': 1.0, 'comes': 1.0, 'more': 1.0, 'babies': 1.0, 'all': 3.0, 'other': 1.0, 'anything': 1.0, 'not': 2.0, 'kit': 2.0, 'for': 4.0, 'love': 1.0, 'exchange': 1.0, 'stars': 1.0, 'quality': 1.0, 'baby': 3.0, 'wipe': 2.0, 'oil': 2.0, 'also': 1.0, 'print': 1.0, 'ink': 5.0, 'some': 1.0, 'shower': 1.0, 'it': 4.0, 'get': 2.0, 'scrub': 1.0, 'and': 4.0, 'of': 2.0, 'the': 7.0, 'my': 3.0, 'recommend': 1.0, 'doesn': 1.0, 'safe': 1.0, 'to': 4.0, 'pretty': 1.0, 'seen': 1.0, '4': 1.0, 'be': 2.0, 'like': 2.0, 'hand': 1.0, 'future': 1.0, 'have': 2.0, 'i': 10.0, 'well': 1.0, 'usa': 1.0, 'time': 1.0, 'so': 1.0, 'its': 2.0, 'comparable': 1.0, 'only': 2.0, 'in': 2.0, 'non': 1.0, 'toxic': 1.0, 'footprints': 1.0, 'on': 1.0, 'think': 1.0, 'using': 1.0, 'reason': 1.0, '5': 1.0, 'that': 2.0, 'detailed': 1.0, 'because': 2.0, 'any': 1.0, 'feel': 1.0, 'should': 1.0, 'come': 2.0, 'wipes': 2.0, 'her': 1.0, 'based': 1.0, 'made': 1.0, 'good': 1.0, 't': 2.0, 'own': 1.0, 'off': 2.0, 'foot': 1.0, 'just': 1.0, 'water': 1.0, 'will': 1.0, 'mineral': 1.0, 'instead': 1.0, 'even': 1.0, 'keep': 1.0, 'did': 1.0, 'don': 1.0, 'gifts': 1.0, 'or': 2.0, 'had': 1.0, 'they': 1.0}
Word element => {'received': 1.0, 'quickly': 1.0, 'how': 1.0, 'purchase': 1.0, 'specific': 1.0, 'looking': 1.0, 'been': 1.0, 'chair': 1.0, 'high': 1.0, 'happy': 1.0, 'for': 1.0, 'i': 2.0, 'when': 1.0, 'found': 1.0, 'our': 2.0, 'to': 1.0, 'had': 1.0, 'was': 1.0, 'and': 2.0, 'match': 1.0, 'very': 1.0, 'with': 1.0, 'this': 1.0, 'thrilled': 1.0, 'it': 2.0, 'playpen': 1.0, 'we': 2.0, 'are': 1.0}
Word element => {'baby': 1.0, 'when': 1.0, 'niece': 1.0, 'pass': 1.0, 'will': 1.0, 'of': 1.0, 'worth': 1.0, 'money': 1.0, 'out': 2.0, 'her': 1.0, 'clean': 1.0, 'in': 1.0, 'having': 1.0, 'washing': 1.0, 'enough': 1.0, 'cover': 1.0, 'issues': 2.0, 'keep': 1.0, 'to': 4.0, 'had': 1.0, 'easy': 1.0, 'i': 5.0, 'it': 4.0, 'with': 1.0, 'on': 1.0, 'therefore': 1.0, 'the': 5.0, 's': 1.0, 'maching': 1.0, 't': 1.0, 'comes': 1.0, 'is': 2.0, 'evenflo': 1.0, 'have': 4.0, 'looking': 1.0, 'high': 1.0, 'my': 3.0, 'same': 1.0, 'chair': 2.0, 'toss': 1.0, 'and': 4.0, 'only': 1.0, 'do': 1.0, 'like': 1.0, 'new': 1.0, 'no': 2.0, 'got': 1.0, 'expressions': 1.0, 'safety': 1.0, 'old': 1.0, 'problems': 1.0, 'structural': 1.0, 'however': 1.0, 'wonderful': 1.0, 'use': 1.0, 'feed': 1.0, 'child': 1.0, 'don': 1.0, 'others': 1.0, 'seem': 1.0, 'be': 1.0}
Word element => {'impossible': 1.0, 'correctly': 1.0, 'product': 1.0, 'products': 1.0, 'injured': 1.0, 'thankful': 1.0, 'receive': 1.0, 'info': 1.0, 'risk': 1.0, 'working': 1.0, 'are': 1.0, 'before': 1.0, 'or': 1.0, 'send': 1.0, 'companies': 2.0, 'these': 2.0, 'infuriating': 1.0, 'you': 2.0, 'things': 1.0, 'kids': 2.0, 've': 2.0, 'll': 1.0, 'return': 1.0, 'store': 1.0, 'replacements': 1.0, 'original': 1.0, 'than': 2.0, 'better': 1.0, 'supposedly': 1.0, 'meantime': 1.0, 'don': 1.0, 'assured': 1.0, 'recommend': 1.0, '2': 1.0, 'approx': 1.0, 'buy': 1.0, 'ship': 1.0, 'will': 1.0, 'eat': 1.0, 'refund': 1.0, 'there': 1.0, 'give': 1.0, 'won': 2.0, 'set': 1.0, 'like': 1.0, 'happened': 1.0, 'from': 1.0, 'calling': 1.0, 'record': 1.0, 'said': 1.0, 'recall': 1.0, 'would': 1.0, 'weeks': 2.0, 'packaging': 1.0, 'response': 1.0, 'just': 2.0, 'checked': 1.0, 'more': 1.0, 'husband': 1.0, 'sorry': 1.0, 'continued': 1.0, 'wrongly': 1.0, 'up': 1.0, 'boot': 1.0, 'since': 1.0, 'can': 2.0, 'so': 5.0, 'issues': 2.0, 'involving': 1.0, 'that': 6.0, 'review': 1.0, 'which': 2.0, 'returning': 1.0, 'know': 2.0, 'majestic': 1.0, 'recalls': 1.0, 'have': 4.0, 'evenflo': 6.0, 'march': 1.0, 'been': 1.0, 'highchair': 5.0, 'wasn': 1.0, 'kit': 1.0, 'many': 1.0, 'trusted': 1.0, 'others': 1.0, 'only': 1.0, 'accept': 1.0, 'company': 1.0, 'repair': 1.0, 'time': 1.0, 'new': 2.0, 'negligent': 1.0, 'and': 16.0, 'when': 1.0, 'times': 1.0, 'held': 1.0, 'one': 1.0, 'whistles': 1.0, 'with': 5.0, 'finally': 1.0, 'a': 8.0, 'cost': 1.0, 't': 7.0, 's': 2.0, 'all': 1.0, 'other': 2.0, 'structual': 1.0, 'on': 1.0, 'warnings': 1.0, 'at': 1.0, 'is': 2.0, 'no': 1.0, 'let': 1.0, 'into': 2.0, 'heed': 1.0, 'not': 7.0, 'may': 2.0, 'my': 3.0, 'me': 5.0, 'do': 2.0, 'put': 2.0, 'recalled': 2.0, 'son': 2.0, 'money': 1.0, 'called': 3.0, 'understand': 1.0, 'out': 4.0, 'had': 6.0, 'screws': 6.0, 'has': 1.0, 'them': 1.0, 'danger': 1.0, 'recently': 1.0, 'dangerous': 2.0, 'write': 1.0, 'but': 2.0, 'open': 1.0, 'work': 3.0, 'i': 11.0, '4': 1.0, 'to': 11.0, 'high': 1.0, 'chair': 3.0, 'recliner': 1.0, 'trust': 1.0, 'used': 1.0, 'it': 4.0, 'felt': 1.0, 'month': 1.0, 'fine': 1.0, 'we': 8.0, 'then': 2.0, 'old': 1.0, 'common': 1.0, 'okay': 2.0, 'am': 3.0, 'last': 2.0, 'they': 9.0, 'of': 6.0, 'popping': 1.0, 'the': 18.0, 'longer': 2.0, 'didn': 1.0, 'belated': 1.0, 'even': 1.0, 'safety': 2.0, 'their': 3.0, 'customer': 2.0, 'reviewers': 1.0, 'sent': 1.0, 'lied': 1.0, 'if': 1.0, 'still': 2.0, 'section': 1.0, 'service': 2.0, 'safe': 1.0, 'pop': 1.0, 'told': 2.0, 'about': 1.0, 'was': 5.0, 'bells': 1.0, 'please': 2.0, 'problem': 1.0, 'throw': 1.0, 'screw': 1.0, 'missing': 1.0, 'use': 4.0, 'how': 1.0, 'our': 5.0, 'furious': 1.0, 'did': 1.0, 'this': 4.0, 'few': 1.0, 'most': 1.0, 'back': 2.0, 'm': 2.0, 'in': 4.0}
Word element => {'value': 1.0, 'a': 1.0, 'assemble': 1.0, 'to': 1.0, 'off': 1.0, 'is': 1.0, 'tray': 1.0, 'so': 1.0, 'under': 1.0, 'importantly': 1.0, 'our': 1.0, 'most': 1.0, 'and': 3.0, 'easy': 1.0, 'table': 1.0, 'product': 1.0, 'old': 1.0, '6': 1.0, 'easily': 1.0, 'when': 1.0, 'love': 1.0, 'month': 1.0, 'this': 1.0, 'it': 1.0, 'we': 1.0, 's': 1.0, 'does': 1.0, 'even': 1.0, 'slides': 1.0, 'great': 1.0, 'adjustable': 1.0, 'the': 2.0}
Word element => {'a': 1.0, 'great': 1.0, 'it': 1.0, 'i': 1.0, 'high': 1.0, 'bought': 1.0, 'my': 1.0, 'very': 1.0, 'and': 1.0, 'grandson': 1.0, 'this': 1.0, 'happy': 1.0, 'chair': 2.0, 'to': 1.0, 'he': 1.0, 'is': 2.0}
Word element => {'new': 1.0, 'market': 1.0, 'i': 1.0, 'better': 1.0, 'would': 1.0, 'latch': 1.0, 'old': 1.0, 'was': 1.0, 'how': 1.0, 'a': 2.0, 'removable': 1.0, 'securing': 1.0, 'without': 1.0, 'this': 1.0, 'place': 1.0, 'never': 1.0, 'whole': 1.0, 'chair': 1.0, 'teensy': 1.0, 'gets': 1.0, 'push': 1.0, 'you': 1.0, 'said': 2.0, 'if': 1.0, 'stay': 2.0, 'complete': 1.0, 'back': 3.0, '6': 1.0, 'flying': 1.0, 'mine': 1.0, 'design': 1.0, 'positioned': 1.0, 'reviewer': 1.0, 'my': 1.0, 'as': 1.0, 'idea': 1.0, 'your': 1.0, 'any': 2.0, 'm': 1.0, 'in': 5.0, 'seat': 3.0, 'high': 1.0, 'fixed': 1.0, 'to': 3.0, 'center': 1.0, 'designed': 1.0, 'outweigh': 1.0, 'hand': 1.0, 'neutral': 1.0, 'older': 1.0, 'upright': 1.0, 'now': 1.0, 'and': 8.0, 'before': 1.0, 'toss': 1.0, 'bad': 1.0, 'cute': 1.0, 'convenient': 1.0, 'quick': 1.0, 'with': 2.0, 'all': 1.0, 'other': 1.0, 'goes': 2.0, 'appeared': 1.0, 'front': 1.0, 'position': 1.0, 'postitive': 1.0, 'made': 1.0, 'good': 1.0, 'which': 1.0, 'side': 1.0, 'is': 5.0, 'more': 1.0, 'comes': 1.0, 'won': 2.0, 'on': 4.0, 'guy': 1.0, 'it': 7.0, 'totally': 1.0, '20': 1.0, 'that': 3.0, 'decor': 1.0, 'be': 2.0, 'however': 1.0, 'come': 1.0, 'baby': 2.0, 'stayed': 1.0, 'height': 1.0, 'ours': 2.0, 't': 3.0, 'adjustment': 1.0, 'give': 1.0, 'there': 1.0, 'just': 3.0, 'moved': 1.0, 'get': 1.0, 'negatives': 1.0, 'months': 2.0, 'tray': 4.0, 'one': 2.0, 'mechanism': 1.0, 'cover': 1.0, 'off': 4.0, 'foot': 1.0, 'for': 2.0, 'washing': 1.0, 'he': 3.0, 'but': 3.0, 'so': 2.0, 'can': 1.0, 'quickly': 1.0, 'whatever': 1.0, 'much': 1.0, 'do': 1.0, 'buckles': 1.0, 'don': 1.0, 'wash': 1.0, 'dryer': 1.0, 'when': 2.0, 'shrinks': 1.0, 'the': 20.0, 'of': 1.0, 'melted': 1.0, 'even': 1.0, 'though': 1.0, 'reclining': 1.0, 'material': 1.0, 'initial': 1.0, 'they': 3.0, 'little': 1.0, 'figured': 2.0, 'out': 2.0, 'stick': 1.0, 'his': 1.0}
Word element => {'no': 1.0, 'far': 1.0, 'better': 1.0, 'address': 1.0, 'we': 4.0, 's': 2.0, 't': 4.0, 'a': 1.0, 'but': 2.0, 'house': 2.0, 'different': 1.0, 'negative': 1.0, 'wipes': 1.0, 'around': 1.0, 'had': 1.0, 'parts': 1.0, 'pushing': 1.0, 'perfect': 1.0, 'this': 2.0, 'can': 1.0, 'so': 7.0, 'time': 1.0, 'she': 1.0, 'it': 6.0, 'useless': 1.0, 'grandparents': 1.0, 'for': 3.0, 'worked': 1.0, 'traded': 1.0, 'sponge': 1.0, 'fisher': 1.0, 'get': 1.0, 'us': 2.0, 'coming': 1.0, 'i': 2.0, 'too': 1.0, 'one': 2.0, 'tray': 1.0, 'chair': 1.0, 'helps': 1.0, 'mellow': 1.0, 'colors': 1.0, 'price': 1.0, 'is': 1.0, 'look': 1.0, 'in': 4.0, 'seat': 2.0, 'was': 1.0, 'doesn': 1.0, 'done': 1.0, 'my': 2.0, 'may': 1.0, 'me': 1.0, 'and': 3.0, 'with': 4.0, 'great': 2.0, 'doing': 1.0, 'of': 2.0, 'the': 11.0, 'person': 1.0, 'inner': 1.0, 'than': 1.0, 'help': 1.0, 'anymore': 1.0, 'goes': 1.0, 'haven': 2.0, 'pressure': 1.0, 'needed': 1.0, 'most': 1.0, 'back': 1.0, 'her': 1.0, 'wash': 1.0, 'don': 1.0, 'comments': 1.0, 'up': 1.0, 'out': 2.0, 'easy': 1.0, 'know': 1.0, 'about': 1.0, 'are': 1.0, 'shrinkage': 1.0, 'sagging': 1.0, 'wants': 1.0, 'easily': 1.0, 'because': 1.0, 'problems': 2.0, 'that': 1.0, 'be': 1.0, 'got': 1.0, 'daughter': 1.0, 'what': 1.0, 'sit': 1.0, 'high': 1.0, 'to': 5.0, 'straight': 1.0, 'now': 1.0, 'much': 3.0, 'pictures': 1.0, 'put': 1.0, 'on': 1.0, 'mostly': 1.0, 'leave': 1.0}
Word element => {'also': 1.0, 'the': 1.0, 'summer': 1.0, 'likes': 1.0, 'times': 1.0, 'blanket': 1.0, 'my': 1.0, 'snuggle': 1.0, 'for': 1.0, 'to': 1.0, 'at': 1.0, 'not': 1.0, 'daycare': 1.0, 'son': 1.0, 'very': 1.0, 'this': 1.0, 'with': 1.0, 'it': 2.0, 's': 1.0, 'since': 1.0, 'well': 1.0, 'washes': 1.0, 'too': 1.0, 'thick': 1.0}
Word element => {'feel': 1.0, 'other': 1.0, 'see': 1.0, 'item': 1.0, 'will': 2.0, 'but': 1.0, 'durable': 1.0, 'very': 1.0, 'seem': 1.0, 'doesn': 1.0, 'part': 2.0, 'holder': 1.0, 'drink': 1.0, 'about': 1.0, 'sure': 1.0, 'not': 1.0, 'raise': 1.0, 'arm': 1.0, 'pliers': 1.0, 'case': 1.0, 'be': 2.0, 'car': 1.0, 'good': 1.0, 'her': 2.0, 'in': 2.0, 'mom': 1.0, 'pull': 1.0, 'daughter': 1.0, 'attached': 1.0, 'of': 2.0, 'purchased': 1.0, 'had': 1.0, 'than': 2.0, 'i': 3.0, 'one': 1.0, 'using': 1.0, 'have': 2.0, 'this': 3.0, 'with': 1.0, 'it': 1.0, 'some': 2.0, 'others': 1.0, 'say': 1.0, 'is': 4.0, 'we': 1.0, 't': 1.0, 'a': 2.0, 'to': 7.0, 'our': 1.0, 'better': 1.0, 'end': 1.0, 'made': 1.0, 'how': 1.0, 'cover': 2.0, 'rest': 1.0, 'base': 1.0, 'designed': 1.0, 'where': 1.0, 'fit': 1.0, 'up': 2.0, 'over': 1.0, 'straps': 1.0, 'strap': 1.0, 'are': 1.0, 'almost': 1.0, 'thru': 1.0, 'impossible': 1.0, 'needlenose': 1.0, 'the': 8.0, 'reach': 1.0, 'and': 1.0, 'my': 1.0, 'underneath': 1.0}
Word element => {'far': 1.0, 'so': 1.0, 'putting': 1.0, 'they': 2.0, 'holder': 1.0, 'seat': 1.0, 'the': 2.0, 'cup': 1.0, 'my': 1.0, 'kids': 1.0, 'love': 2.0, 'comfortable': 1.0, 'no': 1.0, 'things': 1.0, 'also': 1.0, 'in': 1.0, 'compartment': 1.0, 'sit': 1.0, 'secure': 1.0, 'extra': 1.0, 'tell': 1.0, 'and': 2.0, 'me': 1.0, 'its': 1.0, 'complaints': 1.0}
Word element => {'customers': 1.0, 'prospective': 1.0, 'taken': 1.0, 'had': 1.0, 'wish': 1.0, 'fall': 1.0, 'huge': 1.0, 'will': 1.0, 'flat': 1.0, 'also': 1.0, 'protect': 1.0, 'provision': 1.0, 'sort': 1.0, 'some': 2.0, 'sure': 2.0, 'make': 2.0, 'decide': 1.0, 'do': 1.0, 'about': 1.0, 'no': 1.0, 'who': 1.0, 'someone': 1.0, 'when': 1.0, 'butts': 1.0, 'am': 1.0, 'this': 2.0, 'kids': 2.0, 'into': 1.0, 'designed': 3.0, 'p': 1.0, 'whomever': 1.0, 'cars': 2.0, 'car': 2.0, 'figured': 1.0, 'doesn': 1.0, 'was': 1.0, 'between': 1.0, 'they': 2.0, 'run': 1.0, 'seat': 4.0, 'your': 2.0, 'any': 2.0, 'all': 1.0, 'slip': 1.0, 'obviously': 1.0, 'little': 1.0, 'two': 1.0, 'care': 1.0, 'are': 1.0, 'bumps': 1.0, 'gap': 2.0, 'fit': 1.0, 't': 3.0, 's': 1.0, 'a': 5.0, 'bump': 1.0, '2': 2.0, 'of': 2.0, 'the': 9.0, 'these': 5.0, 'since': 1.0, '1': 1.0, 'across': 1.0, 'why': 1.0, 'just': 4.0, 'seats': 6.0, 'returning': 1.0, 'miserable': 1.0, 'my': 2.0, 'reasons': 1.0, 'to': 7.0, 'straight': 2.0, 'making': 1.0, 'pay': 1.0, 'back': 2.0, 'be': 4.0, 'trip': 1.0, 'and': 2.0, 'anyone': 1.0, 'convex': 1.0, 'through': 1.0, 'contour': 1.0, 'their': 3.0, 'should': 1.0, 'need': 1.0, 'or': 3.0, 'else': 1.0, 'think': 1.0, 'you': 3.0, 'destroy': 1.0, 'have': 5.0, 'is': 2.0, 'measurements': 1.0, 'shouldn': 1.0, 'dump': 1.0, 'over': 1.0, 'don': 1.0, 'different': 2.0, 'for': 3.0, 'fabric': 1.0, 'away': 1.0, 'sharp': 1.0, 'edges': 1.0, 'bottom': 1.0, 'something': 1.0, 'leather': 1.0, 'after': 1.0, 'on': 1.0, 'amount': 1.0, 'period': 1.0, 'would': 2.0, 'properly': 1.0, 'want': 2.0, 'every': 1.0, 'if': 1.0, 'anyway': 1.0, 'use': 1.0, 'towel': 1.0, 'etc': 1.0, 'short': 1.0, 'pad': 1.0, 'purchase': 1.0, 'hitting': 1.0, 'whatever': 1.0, 'it': 1.0, 'triple': 2.0, 'yes': 1.0, 'i': 7.0, 'well': 1.0, 'days': 1.0}
Word element => {'carseat': 1.0, 'good': 1.0, 'portion': 1.0, 'overall': 1.0, 'head': 1.0, 'rate': 1.0, 'cannot': 1.0, 'yet': 1.0, 'look': 1.0, 'how': 1.0, 'he': 2.0, 'night': 1.0, 'driving': 1.0, 're': 1.0, 'reast': 1.0, 'fallen': 1.0, 'when': 1.0, 'side': 1.0, 'nice': 1.0, 'of': 2.0, 'recommend': 1.0, 'was': 1.0, 'first': 1.0, 'passed': 1.0, 'so': 1.0, 'time': 1.0, 'honestly': 1.0, 'malibu': 1.0, 'chevy': 1.0, '08': 1.0, 'pretty': 1.0, 'problem': 1.0, 'did': 1.0, 'work': 1.0, 'but': 2.0, 'seems': 2.0, 'will': 2.0, 'would': 1.0, 'something': 1.0, 'hesitant': 1.0, 've': 1.0, 'interior': 1.0, 'years': 2.0, 'in': 5.0, 'age': 1.0, 'february': 1.0, '8': 1.0, 'old': 1.0, 'i': 7.0, 'be': 3.0, 'looked': 1.0, 'works': 1.0, 'do': 1.0, 'only': 1.0, 'it': 6.0, 'this': 2.0, 'carseats': 1.0, 'deciding': 1.0, 'had': 1.0, 'at': 4.0, 'several': 1.0, 'small': 1.0, 'my': 4.0, 'before': 1.0, 'his': 1.0, 'is': 4.0, 'very': 4.0, 'one': 1.0, 'pattern': 1.0, 'and': 5.0, 'couple': 1.0, 'wants': 1.0, 'matches': 1.0, 'son': 2.0, 'still': 1.0, 'need': 1.0, 's': 1.0, 'we': 1.0, 'going': 1.0, 'a': 3.0, 'has': 2.0, 'well': 1.0, 'as': 1.0, 'to': 4.0, 'seat': 2.0, 'settled': 1.0, 'not': 2.0, 'on': 2.0, 'think': 2.0, 'asleep': 1.0, 'the': 6.0, 'loves': 1.0, 'that': 1.0, 'lights': 1.0, 'for': 3.0, 'fit': 1.0, 'car': 2.0}
Word element => {'before': 1.0, '30': 1.0, 'least': 1.0, 'sure': 1.0, 'need': 1.0, 'recommend': 1.0, 'would': 1.0, 'tight': 1.0, 'purchased': 1.0, 'belt': 1.0, 't': 1.0, 'didn': 1.0, 'hold': 2.0, 'weight': 1.0, 'your': 2.0, 'requires': 1.0, 'place': 2.0, 'system': 1.0, 'latch': 2.0, 'years': 1.0, 'no': 1.0, 'there': 1.0, 'this': 4.0, 'drawback': 1.0, 'only': 1.0, 'off': 1.0, 'until': 1.0, 'yes': 1.0, 'more': 1.0, 'kid': 1.0, 'has': 1.0, '5': 1.0, 'after': 2.0, 'but': 1.0, 'chose': 1.0, 'hard': 1.0, 'seatbelt': 1.0, 'from': 1.0, 'point': 1.0, 'old': 3.0, 'liked': 1.0, 'being': 1.0, 'asked': 1.0, 'if': 1.0, 'about': 2.0, 'frequently': 1.0, 'told': 1.0, 'complained': 2.0, 'what': 1.0, 'carseat': 1.0, 'padding': 1.0, 'around': 1.0, 'his': 2.0, 'product': 1.0, 'child': 2.0, 'year': 1.0, '12': 1.0, 'who': 1.0, 'is': 4.0, 'at': 3.0, 'the': 14.0, 'wearing': 1.0, '2': 1.0, 'sitting': 1.0, '32': 1.0, '3': 2.0, 'think': 1.0, 'realize': 1.0, 'on': 2.0, 'a': 3.0, '1': 1.0, 'big': 1.0, 'that': 1.0, 'because': 1.0, 'against': 1.0, 'to': 6.0, 'evenflo': 1.0, 'have': 1.0, 'i': 6.0, 'decided': 1.0, 'needed': 1.0, 'each': 1.0, 'car': 4.0, 'make': 1.0, 'help': 1.0, 'hated': 1.0, 'plus': 1.0, 's': 1.0, 'sides': 1.0, 'riding': 1.0, 'we': 4.0, 'take': 1.0, 'many': 1.0, 'harness': 1.0, 'its': 1.0, 'pick': 1.0, 'seat': 7.0, 'in': 4.0, 'said': 1.0, 'placed': 1.0, 'seats': 1.0, 'never': 1.0, 'some': 1.0, 'different': 1.0, 'him': 2.0, 'it': 7.0, 'cheaper': 1.0, 'new': 1.0, 'model': 1.0, 'took': 1.0, 'lights': 2.0, 'he': 7.0, 'love': 1.0, 'loves': 1.0, 'using': 2.0, 'and': 8.0, 'trip': 1.0, 'led': 1.0, 'you': 1.0, 'night': 1.0, 'dlx': 1.0, 'booster': 3.0, 'stores': 1.0, 'cup': 1.0, 'snack': 1.0, 'holders': 1.0, 'without': 1.0, 'soft': 1.0, 'recently': 1.0, 'son': 1.0, 'returned': 1.0, 'than': 1.0, 'way': 1.0, 'hour': 1.0, 'me': 1.0, 'so': 2.0, 'mommy': 1.0}
Word element => {'great': 1.0, 'aspects': 1.0, 'place': 1.0, 'ease': 1.0, 'recommend': 1.0, 'would': 1.0, 'loli': 1.0, 'uncomfortable': 1.0, 'comfortably': 1.0, 'sleeps': 1.0, 'easily': 1.0, 'head': 2.0, 'comfortable': 1.0, 'offers': 1.0, 'note': 1.0, 'another': 1.0, 'son': 1.0, 'three': 1.0, 'useful': 1.0, 'droop': 1.0, 'been': 1.0, 'daughter': 3.0, 'during': 1.0, 'buy': 1.0, 'outings': 1.0, 'simple': 1.0, 'toys': 1.0, 'a': 4.0, 'convertable': 1.0, 'discovered': 1.0, 'can': 1.0, 'prefers': 1.0, 'you': 1.0, 'times': 1.0, 'purchase': 1.0, 'lol': 1.0, 'various': 1.0, 'like': 1.0, 'organizers': 1.0, 'resistant': 1.0, 'it': 1.0, 'she': 2.0, 'i': 6.0, 'of': 2.0, 'the': 13.0, 'area': 1.0, 'make': 1.0, 'washed': 1.0, 'on': 1.0, 'excellent': 1.0, 'purchased': 1.0, 'in': 6.0, 'seat': 7.0, 'as': 2.0, 'to': 4.0, 'booster': 1.0, '4': 1.0, 'cup': 1.0, 'highly': 1.0, 'this': 8.0, 'holders': 1.0, 'remove': 2.0, 'without': 2.0, 'soft': 1.0, 'convertible': 1.0, 'old': 2.0, 'year': 3.0, 'from': 1.0, 'moment': 1.0, 'am': 2.0, 'last': 1.0, 'negative': 1.0, 'and': 5.0, 'back': 2.0, 'was': 1.0, 'fabric': 2.0, 'for': 5.0, 'yet': 1.0, 'love': 1.0, 'fit': 1.0, 'impact': 1.0, 'has': 1.0, 'sturdy': 1.0, 'they': 1.0, 'group': 1.0, 'my': 5.0, 'entire': 1.0, 'fiber': 1.0, 'do': 1.0, 'its': 1.0, 'safety': 1.0, 'pleased': 1.0, 'by': 1.0, 'weight': 2.0, 'item': 2.0, 'secure': 1.0, 'also': 1.0, 'car': 2.0, 'is': 3.0, 'however': 1.0, 'easy': 1.0, 'aspect': 1.0, 'use': 1.0, 'her': 1.0, 'wash': 1.0, 'nearly': 1.0, 'durability': 1.0, 'incredibly': 1.0, 'standard': 1.0, 'washing': 1.0, 'machine': 1.0, 'amazingly': 1.0, 'second': 1.0, 'stain': 1.0, 'have': 1.0, 'cover': 1.0, 'padding': 2.0, 'numerous': 1.0, 'now': 1.0, 'light': 2.0, 'looking': 2.0}
Word element => {'wife': 1.0, 'for': 1.0, 'easy': 1.0, 'always': 1.0, 'isn': 1.0, 'which': 1.0, 'lean': 1.0, 'you': 1.0, 'though': 1.0, 'buckle': 1.0, 'even': 1.0, 'seats': 1.0, 'new': 1.0, 'tray': 1.0, 'across': 1.0, 'and': 1.0, 'holders': 1.0, 'flops': 1.0, 'surprised': 1.0, 'pregnant': 1.0, 'work': 1.0, 'can': 3.0, 'but': 2.0, 'four': 1.0, 'in': 3.0, 'with': 1.0, 'it': 4.0, 'head': 2.0, 'old': 1.0, 'i': 2.0, 'guess': 1.0, 'things': 1.0, 'booster': 1.0, 'year': 1.0, 'his': 2.0, 'latch': 1.0, 'cup': 1.0, 'my': 1.0, 'to': 2.0, 'seat': 2.0, 'car': 1.0, 'bit': 1.0, 'against': 1.0, 'unbuckle': 1.0, 'if': 1.0, 'lack': 1.0, 'have': 1.0, 'wedge': 1.0, 'falls': 1.0, 'the': 5.0, 'asleep': 1.0, 'store': 1.0, 'was': 1.0, 'sometimes': 1.0, 'himself': 1.0, 'angled': 1.0, 'about': 1.0, 'supports': 1.0, 'by': 1.0, 'of': 1.0, 'loves': 1.0, 'that': 1.0, 't': 1.0, 'a': 1.0, 's': 1.0, 'he': 4.0, 'how': 1.0}
Word element => {'why': 1.0, 'are': 1.0, 'lights': 1.0, 'helps': 1.0, 'if': 1.0, 'see': 1.0, 'those': 1.0, 'of': 1.0, 'think': 1.0, 'terribly': 1.0, 'but': 1.0, 'still': 1.0, 'just': 1.0, 'upper': 1.0, 'have': 1.0, 'falls': 1.0, 'padding': 1.0, 'better': 2.0, 'models': 1.0, 'with': 1.0, 'comparing': 1.0, 'made': 1.0, 'home': 1.0, 'looks': 2.0, 'it': 3.0, 'she': 2.0, 'model': 1.0, 'ordered': 1.0, 'had': 2.0, 'was': 1.0, 'her': 1.0, 'fabric': 1.0, 'uncomfortable': 1.0, 'one': 3.0, 'bought': 1.0, 'head': 2.0, 'them': 1.0, 'quality': 1.0, 'this': 3.0, 'holders': 1.0, 'and': 6.0, 'similar': 1.0, 'shaped': 1.0, 'at': 2.0, 'i': 2.0, 'two': 1.0, 'pillows': 1.0, 'no': 1.0, 'other': 1.0, 'target': 1.0, 'know': 1.0, 'u': 1.0, 'flop': 1.0, 'body': 1.0, 'like': 1.0, 'hold': 1.0, 'don': 2.0, 'over': 1.0, 'up': 1.0, 'try': 1.0, 'only': 1.0, 'much': 1.0, 'asleep': 1.0, 'the': 2.0, 'sleeps': 1.0, 'more': 1.0, 'seat': 2.0, 'my': 1.0, 'neck': 1.0, 'cup': 1.0, 'daughter': 1.0, 'when': 1.0, 'that': 2.0, 'loves': 1.0, 't': 2.0, 'we': 1.0, 'a': 2.0, 's': 1.0, 'snack': 1.0, 'ingenious': 1.0, 'll': 2.0, 'complaint': 1.0, 'support': 1.0}
Word element => {'car': 1.0, 'in': 1.0, 'thing': 1.0, 'lean': 1.0, 'door': 1.0, 'pillow': 1.0, 'legs': 1.0, 'comfy': 1.0, 'too': 1.0, 'and': 3.0, 'drives': 1.0, 'looks': 1.0, 'it': 1.0, 'only': 1.0, 'my': 2.0, 'easy': 2.0, 'sleep': 1.0, 'to': 3.0, 'for': 1.0, 'lights': 1.0, 'o': 1.0, 'bobble': 2.0, 'up': 2.0, 'agianst': 1.0, 'move': 1.0, '4y': 1.0, 'loves': 1.0, 'complaint': 1.0, 'good': 2.0, 'her': 3.0, 'padding': 1.0, 'long': 1.0, 'does': 1.0, 'light': 1.0, 'thinks': 1.0, 'simple': 1.0, 'is': 4.0, 'around': 1.0, 'fall': 1.0, 'booster': 1.0, 'daughter': 1.0, 'when': 2.0, 'i': 2.0, 'prop': 1.0, 'buckle': 1.0, 'on': 2.0, 'asleep': 1.0, 'the': 3.0, 'cleans': 1.0, 'snack': 1.0, 'toy': 1.0, 'dont': 1.0, 'holders': 1.0, 'head': 1.0, 'sleeping': 1.0, 'so': 1.0, 'we': 1.0, 'a': 1.0}
Word element => {'deal': 1.0, 'a': 1.0, 'was': 1.0, 'her': 1.0, 'she': 1.0, 'find': 1.0, 'great': 1.0, 'the': 1.0, 'in': 2.0, 'than': 1.0, 'how': 1.0, 'while': 1.0, 'much': 1.0, 'so': 1.0, 'daughter': 2.0, 'most': 1.0, 'one': 1.0, 'for': 1.0, 'better': 1.0, 'our': 1.0, 'we': 2.0, 'fit': 3.0, 'models': 1.0, 'this': 2.0, 'sit': 1.0, 'have': 1.0, 'actually': 1.0, 'shopping': 1.0, 'my': 1.0, 'went': 1.0, 'and': 4.0, 'shopped': 1.0, 'out': 2.0, 'them': 2.0, 'display': 1.0, 'others': 1.0, 'would': 1.0}
Word element => {'lights': 1.0, 'reading': 1.0, 'out': 1.0, 'kick': 1.0, 'a': 1.0, 'grandaughter': 1.0, 'gets': 1.0, 'our': 1.0, 'safe': 1.0, 'is': 2.0, 'the': 2.0, 'booster': 1.0, 'appears': 1.0, 'of': 1.0, 'seat': 1.0, 'good': 1.0, 'value': 1.0, 'as': 1.0, 'advertized': 1.0, 'and': 1.0, 'be': 1.0, 'to': 1.0}
Word element => {'who': 1.0, 'anyone': 1.0, 'new': 1.0, 'same': 1.0, 'exact': 1.0, 'bought': 1.0, 'accident': 1.0, 'happy': 1.0, 'totaled': 1.0, 'and': 1.0, 'involved': 1.0, 'away': 1.0, 'recommend': 1.0, 'was': 1.0, 'on': 1.0, 'were': 1.0, 'hit': 1.0, 'car': 6.0, 'mph': 1.0, 'old': 1.0, '35': 1.0, 'my': 1.0, 'another': 1.0, 'chest': 1.0, 'recently': 1.0, 'in': 1.0, 'for': 2.0, 'where': 1.0, 'while': 1.0, 'asks': 1.0, 'traveling': 1.0, 'am': 1.0, 'little': 1.0, 'year': 1.0, 'girl': 1.0, 'our': 2.0, 'seat': 3.0, 'i': 3.0, '4': 1.0, 'saved': 1.0, 'with': 2.0, 'only': 1.0, 'walked': 1.0, 'this': 2.0, 'it': 3.0, 'seatbelt': 1.0, 'slight': 1.0, 'abraison': 1.0, 'the': 1.0, 'job': 1.0, 'her': 2.0, 'did': 1.0, 'we': 2.0, 'a': 2.0, 's': 1.0, 'life': 1.0, 'so': 1.0}
Word element => {'all': 1.0, 'to': 1.0, 'pushes': 1.0, 'enthusiasm': 1.0, 'stick': 1.0, 'are': 1.0, 'because': 1.0, 'small': 1.0, 'have': 1.0, 'would': 1.0, 'rated': 1.0, 'them': 1.0, 'still': 1.0, 'work': 1.0, 'can': 1.0, 'but': 2.0, 'little': 2.0, '5': 2.0, 'model': 1.0, 'great': 1.0, 'comfortable': 1.0, 'loves': 2.0, 'good': 1.0, 'deluxe': 1.0, 'trips': 1.0, 'armrests': 1.0, 'long': 1.0, 'assistance': 1.0, 'town': 1.0, 'tooling': 1.0, 'one': 1.0, 'bought': 1.0, 'and': 4.0, 'my': 1.0, 'come': 1.0, 'seats': 1.0, 'went': 1.0, 'cup': 2.0, 'trays': 1.0, 'old': 1.0, 'i': 1.0, 'two': 1.0, '4': 2.0, 'almost': 1.0, 'year': 1.0, 'around': 2.0, 'adjustable': 1.0, 'without': 1.0, 'the': 5.0, 'we': 1.0, 'a': 4.0, 's': 2.0, 't': 1.0, 'stiff': 1.0, 'booster': 2.0, 'together': 1.0, 'easily': 1.0, 'she': 1.0, 'it': 5.0, 'looks': 1.0, 'maya': 2.0, 'for': 3.0, 'cheap': 1.0, 'lights': 1.0, 'they': 1.0, 'up': 1.0, 'don': 1.0, 'back': 1.0, 'bother': 1.0, 'driver': 1.0, 'this': 1.0, 'holders': 2.0, 'out': 1.0}
Word element => {'amazon': 1.0, 'com': 1.0, 'overall': 1.0, 'a': 2.0, 'well': 1.0, 'as': 1.0, 'find': 1.0, 'to': 1.0, 'out': 1.0, 'we': 2.0, 'buy': 1.0, 'night': 1.0, 'light': 1.0, 'she': 2.0, 'been': 1.0, 'when': 1.0, 'daughter': 1.0, 'for': 1.0, 'color': 1.0, 'happy': 1.0, 're': 1.0, 'my': 1.0, 'at': 2.0, 'booster': 1.0, 'great': 2.0, 'the': 1.0, 'comfort': 1.0, 'own': 1.0, 'in': 1.0, 'driving': 1.0, 'perfect': 1.0, 'has': 1.0, 'just': 1.0, 'seat': 1.0, 'of': 1.0, 'loves': 1.0, 'have': 1.0, 'this': 2.0, 'it': 2.0, 'can': 1.0, 'and': 1.0, 'were': 1.0, 'that': 1.0, 'her': 1.0, 'price': 1.0, 'personal': 1.0}
Word element => {'recommend': 1.0, 'no': 1.0, 'free': 1.0, 'else': 1.0, 'amazon': 1.0, 'cheaper': 1.0, 'got': 1.0, 'interior': 1.0, 'gray': 1.0, 'looking': 1.0, 'hawkeye': 1.0, 'you': 1.0, 'am': 1.0, 'lift': 2.0, 'positions': 1.0, 'does': 1.0, 'standard': 1.0, 'instant': 1.0, 'lever': 1.0, 'booster': 2.0, 'from': 2.0, 'belt': 1.0, '20': 1.0, 'because': 2.0, 'that': 3.0, 'into': 1.0, 'can': 1.0, 'so': 1.0, 'my': 2.0, 'family': 1.0, 'fact': 1.0, 'child': 2.0, 'your': 4.0, 'on': 2.0, 'safety': 1.0, 'having': 1.0, 'heights': 1.0, 'is': 6.0, 'benefit': 1.0, 'more': 1.0, 'who': 1.0, 'about': 1.0, 'behind': 1.0, 'great': 1.0, 'padded': 1.0, 'adjustment': 2.0, 'of': 5.0, 'the': 17.0, 'without': 1.0, 'quick': 1.0, 'backrest': 1.0, 'with': 4.0, 'shipping': 1.0, 'kids': 2.0, 'opinion': 1.0, 'supposed': 1.0, 'fabric': 1.0, 'for': 2.0, 'just': 2.0, 'highly': 1.0, 'this': 5.0, 'few': 1.0, 'says': 1.0, 'in': 2.0, 'seat': 8.0, 'fits': 1.0, 'all': 1.0, 'to': 5.0, 'raise': 1.0, 'i': 5.0, 'blends': 1.0, 'have': 1.0, 'see': 1.0, 'a': 5.0, 'might': 1.0, 'height': 3.0, 'put': 1.0, 'do': 1.0, 'yourself': 1.0, 'dollars': 1.0, 'than': 1.0, 'huge': 1.0, 'seated': 1.0, 'rating': 1.0, 'one': 1.0, 'use': 1.0, 'make': 1.0, 'varying': 1.0, 'back': 5.0, 'has': 1.0, 'nice': 1.0, 'little': 1.0, 'being': 1.0, 'very': 3.0, 'not': 1.0, 'forward': 1.0, 'movement': 1.0, 'adjust': 1.0, 'incline': 1.0, 'anyone': 1.0, 'and': 4.0, 'arms': 1.0, 'fold': 1.0, 'it': 3.0, 'bit': 1.0, 'easy': 1.0, 'side': 1.0, 'tax': 1.0, 'lots': 1.0, 'everyone': 1.0, 'awkward': 1.0, 'properly': 1.0, 'strain': 1.0, 'paid': 1.0, 'deluxe': 1.0, 'padding': 1.0, 'inadequate': 1.0, 'nicely': 2.0}
Word element => {'batteries': 1.0, 'have': 1.0, 'in': 1.0, 'put': 1.0, 'seat': 3.0, 'change': 1.0, 'really': 1.0, 'of': 1.0, 'i': 3.0, 'very': 1.0, 'outside': 1.0, 'son': 1.0, 'on': 1.0, 'loved': 2.0, 'and': 3.0, 'cup': 2.0, 'my': 1.0, 'great': 1.0, 'the': 4.0, 'dark': 1.0, 'car': 2.0, 'never': 1.0, 'holder': 1.0, 'sides': 1.0, 'own': 1.0, 'if': 1.0, 'so': 1.0, 'could': 2.0, 'read': 1.0, 'his': 2.0, 'both': 2.0, 'even': 1.0, 'he': 3.0, 'this': 1.0, 'it': 1.0, 'to': 1.0, 'had': 1.0, 'lights': 1.0, 'was': 1.0}
Word element => {'less': 1.0, 'though': 1.0, 'expensive': 1.0, 'combi': 1.0, 'others': 1.0, 'recommend': 1.0, 'years': 1.0, 'd': 1.0, 'an': 1.0, 'hangs': 1.0, 'them': 1.0, 'right': 1.0, 'tilts': 1.0, 'evenflo': 1.0, 'kobuk': 1.0, 'falls': 1.0, 'small': 1.0, 'fantastic': 1.0, 'when': 1.0, 'easily': 1.0, 'like': 1.0, 'head': 2.0, 'size': 1.0, 'it': 3.0, 'he': 3.0, '30': 1.0, 'this': 3.0, 'only': 1.0, 'has': 1.0, 'likes': 1.0, 'son': 2.0, 'his': 1.0, 'year': 1.0, 'importantly': 1.0, 'old': 1.0, 'rests': 1.0, 'cup': 1.0, 'another': 1.0, 'fact': 1.0, 'my': 2.0, 'booster': 2.0, 'pull': 1.0, 'comparable': 1.0, 'to': 1.0, 'as': 1.0, 'seat': 2.0, 'otherwise': 1.0, 'i': 2.0, '4': 1.0, 'fashion': 1.0, 'on': 1.0, 'asleep': 1.0, 'the': 6.0, 'been': 1.0, 'loves': 1.0, 'bought': 1.0, 'uncomfortable': 1.0, 'tray': 1.0, 'past': 1.0, 'but': 1.0, 'can': 1.0, 'change': 1.0, 'more': 1.0, 'is': 2.0, 'out': 1.0, 'thing': 1.0, 'lift': 1.0, 'up': 1.0, 'of': 1.0, 'arm': 1.0, 'too': 1.0, 'and': 4.0, 'in': 2.0, 'turn': 1.0, 'few': 1.0, 'light': 1.0, 'would': 1.0, 'bumpers': 1.0, 'they': 1.0, 'are': 1.0, 'ago': 1.0, 'we': 2.0, 'a': 3.0, 'bit': 1.0}
Word element => {'though': 1.0, 'very': 1.0, 'seats': 1.0, 'light': 1.0, 'just': 1.0, 'i': 1.0, 'night': 1.0, 'old': 1.0, 'with': 1.0, 'now': 1.0, 'love': 1.0, 'for': 3.0, 'lights': 1.0, 'switch': 1.0, 'comfy': 1.0, 'portable': 1.0, 'on': 1.0, 'over': 1.0, 'the': 2.0, 'my': 1.0, 'daughter': 1.0, 'way': 1.0, 'thanks': 1.0, 'you': 1.0, 'and': 3.0, 'play': 1.0, 'loves': 2.0, 't': 1.0, 's': 2.0, 'we': 1.0, 'a': 1.0, 'distances': 1.0, 'it': 5.0, 'she': 3.0, 'not': 1.0, 'big': 1.0, 'girl': 1.0, 'thinks': 1.0, 'short': 1.0, 'forward': 1.0, 'long': 2.0, 'trips': 2.0, 'her': 2.0, 'so': 2.0, 'head': 1.0, 'like': 1.0, 'falls': 1.0, 'tilts': 1.0, 'to': 1.0, 'seat': 2.0, 'all': 1.0, 'but': 1.0, 'can': 1.0, 'this': 1.0, 'recline': 1.0}
Word element => {'material': 1.0, 'easily': 1.0, 'the': 3.0, 'of': 2.0, 'and': 2.0, 'wipes': 1.0, 'in': 1.0, 'year': 1.0, 'goes': 1.0, 'car': 1.0, 'nice': 1.0, 'assembly': 1.0, 'easy': 1.0, 'looks': 1.0, 'sides': 1.0, 'kick': 1.0, 'out': 2.0, 'clean': 1.0, '3': 1.0, 'old': 1.0, 'gets': 1.0, 'a': 1.0, 'lights': 1.0, 'on': 1.0}
Word element => {'install': 1.0, 'easy': 1.0, 'so': 1.0, 'was': 1.0, 'and': 1.0, 'my': 1.0, 'buy': 3.0, '2yr': 1.0, 'to': 1.0, 'old': 1.0, 'this': 1.0, 'loves': 1.0, 'it': 5.0, 'son': 1.0, 'needs': 1.0, 'everything': 1.0, 'has': 1.0, 'he': 1.0}
Word element => {'pleased': 1.0, 'with': 1.0, 'is': 1.0, 'it': 2.0, 'recommended': 1.0, 'car': 1.0, 'had': 1.0, 'daughter': 1.0, 'for': 1.0, 'grandson': 1.0, 'my': 1.0, 'when': 1.0, 'very': 1.0, 'and': 1.0, 'comes': 1.0, 'seat': 1.0, 'he': 1.0, 'ny': 1.0, 'purchased': 1.0, 'to': 1.0}
Word element => {'strapes': 1.0, 'in': 1.0, 'bluit': 1.0, 'have': 1.0, 'little': 1.0, 'nice': 1.0, 'car': 1.0, 'confortable': 1.0, 'but': 1.0, 'booster': 1.0, 'unstable': 1.0, 'since': 1.0, 'does': 1.0, 'not': 1.0, 'it': 1.0}
Word element => {'purchases': 1.0, 'definitely': 1.0, 'little': 1.0, 'only': 1.0, 've': 1.0, '2': 1.0, 'newborn': 1.0, 'any': 1.0, 'connects': 1.0, 'back': 1.0, 'making': 1.0, 'bent': 2.0, 'losses': 1.0, 'later': 1.0, 'very': 1.0, 'stroll': 1.0, 'already': 1.0, 'about': 4.0, 'money': 2.0, 'broke': 2.0, 'i': 20.0, 'spent': 1.0, 'used': 1.0, 'first': 1.0, 'inward': 1.0, 'before': 1.0, 'tongue': 1.0, 'within': 1.0, 'fell': 1.0, 'had': 3.0, 'off': 3.0, 'kick': 1.0, 'ahead': 1.0, 'it': 8.0, 'be': 2.0, 'block': 1.0, 'are': 2.0, 'my': 6.0, 'me': 1.0, 'front': 4.0, 'hassle': 1.0, 'but': 2.0, 'other': 1.0, 'all': 1.0, 'matters': 1.0, 'add': 1.0, 'worst': 1.0, 'year': 2.0, 'product': 2.0, 'stroller': 8.0, 'item': 1.0, 'replaced': 2.0, 'our': 1.0, 'because': 2.0, 'problems': 1.0, 'that': 9.0, 'up': 2.0, 'annoyed': 1.0, 'anyway': 1.0, 'use': 2.0, 'wheels': 4.0, 'far': 1.0, 'quality': 2.0, 'customer': 1.0, 'stating': 1.0, 'baby': 1.0, 'got': 1.0, 'one': 5.0, 'absolutely': 1.0, 'out': 2.0, 'worth': 1.0, 'problem': 1.0, 'now': 1.0, 'were': 1.0, 'frame': 1.0, 'buying': 1.0, 'with': 3.0, 'this': 10.0, '9': 1.0, 'am': 2.0, 't': 2.0, 'convenience': 1.0, 'make': 1.0, 'would': 1.0, 'outward': 1.0, 'free': 1.0, 'the': 29.0, 'myself': 1.0, 'disconnected': 1.0, 'they': 1.0, 'also': 2.0, 'get': 2.0, 'chore': 1.0, 'shoddy': 1.0, 'reason': 1.0, 'attaching': 1.0, 'made': 1.0, 'bars': 1.0, 'a': 12.0, 'mall': 1.0, 'could': 1.0, 'will': 1.0, 'called': 2.0, 'we': 4.0, 'reviews': 1.0, 'take': 1.0, 'have': 5.0, 'metal': 2.0, 'exceed': 1.0, 'week': 2.0, 'quick': 1.0, 'time': 3.0, 'new': 1.0, 'cut': 1.0, 'so': 5.0, 'ask': 1.0, 'evenflo': 3.0, 'wanted': 1.0, 'over': 1.0, 'wake': 1.0, 'as': 1.0, 'right': 2.0, 'to': 14.0, 'bought': 2.0, 'against': 1.0, 'seat': 2.0, 'in': 1.0, 'went': 2.0, 'been': 1.0, 'considering': 1.0, 'directly': 1.0, 'into': 2.0, 'completely': 2.0, 'always': 1.0, 'big': 1.0, 'veers': 1.0, 'or': 1.0, 'rubs': 1.0, 'old': 1.0, 'of': 5.0, 'even': 1.0, 'read': 1.0, 'months': 1.0, 'storage': 1.0, 'an': 1.0, 'basket': 1.0, 'how': 2.0, 'worse': 1.0, 'underneath': 1.0, 'if': 2.0, 'sides': 1.0, 'not': 2.0, 'replacement': 2.0, 'enough': 1.0, 'and': 12.0, 'just': 3.0, 'service': 1.0, 'implying': 1.0, 'day': 1.0, 'was': 4.0, 'for': 5.0, 'such': 1.0, 'halfway': 1.0, 'home': 1.0, 'after': 1.0, 'though': 1.0, 'infant': 1.0, 'by': 2.0, 'left': 1.0, 'rep': 1.0, 'newer': 1.0, 'when': 2.0, 'second': 1.0, 'inform': 1.0, 'there': 1.0, 'no': 1.0, 'limit': 1.0, 'wheel': 4.0, 'replacements': 1.0, 'from': 1.0, 'on': 3.0, 'opposed': 1.0, 'happened': 1.0, 'is': 6.0, 'fault': 1.0, 'difficult': 1.0, 'managed': 1.0, 'bite': 1.0, 'much': 1.0, 'do': 1.0, 'junk': 1.0, 'needed': 1.0, 'both': 2.0, 'support': 1.0, 'car': 1.0, 'ever': 1.0, 'average': 1.0, 's': 2.0, 'doesn': 1.0, 'fold': 1.0, 'purchased': 1.0, 'husband': 1.0, 'him': 1.0, 'ready': 1.0, 'means': 1.0, 'transfer': 1.0, 'disgusted': 1.0, 'kids': 1.0, 'another': 1.0, 'spend': 1.0, 'double': 1.0, 'don': 1.0, 'once': 1.0, 'leg': 1.0, 'around': 1.0, 'walk': 1.0, 'weight': 1.0}
Word element => {'149': 1.0, 'dangerous': 1.0, 'stuck': 1.0, 'at': 1.0, 'won': 1.0, 'who': 1.0, 'seat': 1.0, 'changing': 1.0, 'been': 1.0, '3': 1.0, 'your': 1.0, 'was': 1.0, 'blood': 1.0, 'our': 1.0, 'stroller': 3.0, 'side': 1.0, 'her': 2.0, 'gushing': 1.0, 'ended': 2.0, 'it': 1.0, 'myself': 1.0, 'up': 1.0, 'child': 1.0, 'owns': 1.0, 'my': 2.0, 'purchase': 1.0, 'hopefully': 1.0, 'while': 1.0, 'with': 3.0, 'this': 2.0, 'zoo': 1.0, 'than': 1.0, 'rear': 1.0, 'left': 1.0, 'jagged': 1.0, 'be': 2.0, 'did': 4.0, 'snaps': 3.0, 'a': 6.0, 'we': 1.0, 'rubbed': 1.0, 'will': 1.0, 'arm': 2.0, 'check': 2.0, 'please': 1.0, 'know': 1.0, 'not': 4.0, 'she': 1.0, 'baby': 1.0, 'i': 7.0, 'broke': 2.0, 'anyone': 1.0, 'trip': 1.0, 'and': 6.0, 'fewer': 1.0, 'sharp': 1.0, 'very': 2.0, 'what': 1.0, 'daughter': 1.0, 'so': 1.0, 'receipt': 1.0, 'until': 1.0, 'to': 1.0, 'against': 1.0, 'pulled': 1.0, 'nice': 1.0, 'pad': 1.0, 'injured': 1.0, 'away': 1.0, 'received': 1.0, 'have': 2.0, 'evenflo': 2.0, 'used': 1.0, 'that': 1.0, 'because': 1.0, '20': 1.0, 'times': 1.0, 'you': 1.0, 'gentle': 1.0, 'on': 3.0, 'realize': 1.0, 've': 1.0, 'always': 1.0, 'covered': 1.0, 'seats': 1.0, 'call': 1.0, 'metal': 1.0, 'cut': 2.0, 'they': 1.0, 'had': 1.0, 'offered': 1.0, 't': 1.0, 'replacement': 1.0, 'proof': 1.0, 'gash': 1.0, 'refund': 2.0, 'or': 2.0, 'need': 1.0, 'provide': 1.0, 'all': 1.0, 'other': 1.0, 'the': 7.0, 'of': 1.0}
Word element => {'stroller': 1.0, 'look': 1.0, 'kids': 1.0, 'd': 1.0, 'both': 1.0, 'carry': 1.0, 'again': 1.0, 'they': 1.0, 'case': 1.0, 'wheels': 2.0, 'little': 1.0, 'rear': 2.0, 'fall': 1.0, 'is': 2.0, 'tray': 1.0, 'but': 1.0, 'shimmy': 1.0, 'take': 1.0, 'a': 2.0, 'use': 1.0, 'front': 2.0, 'was': 2.0, 'now': 1.0, 'after': 1.0, 'have': 1.0, 'small': 2.0, 'however': 1.0, 'so': 1.0, 'distances': 1.0, 'broke': 1.0, 'of': 1.0, 'to': 2.0, 'seat': 2.0, 'okay': 1.0, 'worst': 1.0, 'and': 4.0, 'also': 1.0, 'falling': 1.0, 'in': 1.0, 'the': 7.0, 'husband': 1.0, 'sun': 1.0, 'off': 2.0, 'for': 4.0, 'only': 1.0, 'month': 1.0, 'it': 3.0, 'another': 2.0, 'my': 1.0, 'able': 1.0, 'worked': 1.0, 'fix': 1.0, 'while': 1.0, 'are': 1.0, 'shade': 1.0, 'cockeyed': 1.0, 'i': 3.0, 'never': 1.0, 'long': 1.0}
Word element => {'again': 1.0, 'definitely': 1.0, 'a': 1.0, 'compact': 1.0, 'relatively': 1.0, 'is': 1.0, 'easily': 1.0, 'quickly': 1.0, 'up': 1.0, 'exactly': 1.0, 'as': 1.0, 'worked': 1.0, 's': 1.0, 'where': 1.0, 'used': 1.0, 'for': 2.0, 're': 1.0, 'in': 2.0, 'somewhere': 1.0, 'and': 4.0, 'with': 1.0, 'it': 2.0, 'this': 2.0, 'have': 2.0, 'times': 1.0, 'purchase': 1.0, 'intended': 1.0, 'purchased': 1.0, 'to': 3.0, 'product': 1.0, 'we': 3.0, 'make': 1.0, 'staying': 1.0, 'hotels': 1.0, 'd': 1.0, 'folds': 1.0, 'order': 1.0, 'great': 2.0, 'the': 1.0, 'price': 1.0, 'baby': 1.0, 'boot': 1.0, 'sleep': 1.0, 'safely': 1.0}
Word element => {'be': 1.0, 'would': 1.0, 'problem': 1.0, 'this': 1.0, 'they': 1.0, 'fix': 1.0, 'while': 1.0, 'when': 1.0, 'detach': 1.0, 'them': 1.0, 'have': 1.0, 'unsafe': 1.0, 'many': 1.0, 'ease': 1.0, 'away': 1.0, 'so': 1.0, 'use': 2.0, 'wonderful': 2.0, 'carrier': 1.0, 'in': 2.0, 'for': 1.0, 'is': 1.0, 'fall': 1.0, 'stroller': 6.0, 'shade': 1.0, 'thought': 1.0, 'the': 11.0, 'folding': 1.0, 'happens': 1.0, 'only': 1.0, 'like': 1.0, 'has': 1.0, 'well': 1.0, 'son': 1.0, 'was': 2.0, 'our': 1.0, 'to': 2.0, 'net': 1.0, 'especially': 1.0, 'everytime': 1.0, 'and': 2.0, 'too': 1.0, 'makes': 1.0, 'old': 1.0, 'features': 1.0, 'bugs': 1.0, 'i': 2.0, 'if': 1.0, 'covering': 1.0, 'since': 2.0, 'keep': 1.0, 'we': 2.0, 'go': 1.0, 'on': 2.0, 'worth': 1.0, 'can': 1.0, 'but': 1.0, 'money': 1.0, 'bought': 1.0, 'essentially': 1.0, 'it': 4.0, 'useless': 1.0, 'wheels': 1.0, 'off': 1.0}
Word element => {'good': 2.0, 't': 1.0, 'wouldn': 1.0, 'off': 1.0, 'minor': 1.0, 'removing': 1.0, 'once': 1.0, 'hard': 1.0, 'buy': 1.0, 'straps': 1.0, 'useless': 1.0, 'pillow': 1.0, 'head': 1.0, 've': 2.0, 'hands': 1.0, 'eyes': 1.0, 'prying': 1.0, 'shield': 1.0, 'public': 1.0, 'had': 2.0, 'sunlight': 1.0, 'intense': 1.0, 'out': 1.0, 'take': 2.0, 'we': 3.0, 'when': 2.0, 'helpful': 1.0, 'venue': 1.0, 'especially': 1.0, 'outside': 1.0, 'away': 1.0, 'adjust': 1.0, 'cacooning': 1.0, 'time': 1.0, 'same': 1.0, 'both': 1.0, 'like': 1.0, 'really': 1.0, 'wheels': 1.0, 'their': 1.0, 'seatbelt': 1.0, 'from': 3.0, 'wanted': 1.0, 'onto': 1.0, 'essentially': 2.0, 'pop': 1.0, 'you': 1.0, 'world': 1.0, 'feature': 1.0, 'or': 3.0, 'bigger': 1.0, 'are': 1.0, 'to': 9.0, 'as': 4.0, 'pose': 1.0, 'any': 1.0, 'some': 2.0, 'ergonomics': 1.0, 'another': 1.0, 'all': 2.0, 'fits': 1.0, 'one': 2.0, 'too': 3.0, 'and': 7.0, 'carriers': 1.0, 'carseat': 3.0, 'carrying': 1.0, 'great': 1.0, 'big': 2.0, 'little': 1.0, 'nice': 1.0, 'without': 2.0, 'around': 1.0, 'bit': 1.0, 'found': 2.0, 'this': 4.0, 'few': 1.0, 's': 2.0, 'someone': 1.0, 'carrier': 2.0, 'quite': 1.0, 'size': 1.0, 'popping': 1.0, 'the': 25.0, 'of': 8.0, 'person': 1.0, 'securely': 1.0, 'after': 1.0, 'petite': 1.0, 'have': 1.0, 'a': 11.0, 'small': 1.0, 'be': 4.0, 'disturbing': 1.0, 'travel': 2.0, 'adjusted': 1.0, 'bought': 1.0, 'well': 1.0, 'i': 6.0, 'lug': 1.0, 'it': 9.0, 'is': 6.0, 'at': 2.0, 'handle': 1.0, 'back': 1.0, 'squeeze': 1.0, 'for': 6.0, 'price': 1.0, 'product': 1.0, 'only': 1.0, 'simply': 1.0, 'her': 1.0, 'use': 2.0, 'smaller': 1.0, 'inserting': 1.0, 'about': 1.0, 'extended': 1.0, 'sunshades': 1.0, 'no': 2.0, '5': 2.0, 'been': 1.0, 'into': 2.0, 'enough': 2.0, 'problem': 2.0, 'frame': 1.0, 'my': 2.0, 'me': 1.0, 'not': 4.0, 'cons': 1.0, 'carry': 1.0, 'with': 4.0, 'others': 1.0, 'many': 1.0, 'baby': 8.0, 'inside': 2.0, 'looking': 1.0, 'using': 1.0, 'reason': 1.0, 'ocassionally': 1.0, 'was': 2.0, 'backseat': 2.0, 'than': 1.0, 'young': 1.0, 'that': 4.0, 'because': 1.0, 'problems': 3.0, '2': 1.0, 'chose': 1.0, 'but': 4.0, 'lightweight': 1.0, 'can': 4.0, 'door': 2.0, 'again': 1.0, 'support': 1.0, 'car': 1.0, 'compact': 1.0, 'also': 2.0, 'much': 1.0, 'between': 1.0, 'seat': 3.0, 'in': 4.0, 'system': 4.0, 'order': 1.0, 'months': 2.0, 'trouble': 1.0, 'get': 1.0, 'even': 1.0, 'stroller': 5.0, 'would': 1.0, 'either': 1.0, 'used': 1.0, 'alone': 1.0}
Word element => {'design': 1.0, 'place': 1.0, 'easier': 1.0, 'pushing': 1.0, 'front': 1.0, 'a': 1.0, 'there': 1.0, 'always': 1.0, 'downfall': 1.0, 'son': 1.0, 'is': 3.0, 'should': 1.0, 'admit': 1.0, 'time': 2.0, 'my': 1.0, 'falls': 1.0, 'the': 1.0, 'great': 1.0, 'seat': 1.0, 'car': 1.0, 'hard': 1.0, 'it': 2.0, 'he': 1.0, 'this': 1.0, 'have': 2.0, 'into': 1.0, 'loves': 1.0, 'asleep': 1.0, 'to': 1.0, 'be': 1.0, 'usually': 1.0, 'i': 2.0, '1': 1.0, 'and': 1.0, 'an': 1.0, 'instantly': 1.0, 'every': 1.0, 'buckle': 1.0, 'in': 1.0}
Word element => {'off': 1.0, 'daughter': 1.0, 'my': 1.0, 'pissing': 1.0, 'in': 1.0, 'succeeded': 1.0, 'just': 1.0, 'rate': 1.0, 'which': 1.0, 'us': 1.0, 'had': 2.0, 'was': 5.0, 'problems': 1.0, 'open': 1.0, 'and': 3.0, 'nice': 1.0, 'comfortable': 1.0, 'stick': 1.0, 'looked': 1.0, 'it': 3.0, 'this': 1.0, 'only': 1.0, 'with': 1.0, 'car': 1.0, 'the': 4.0, 'ones': 1.0, 'nicest': 1.0, 'of': 2.0, 'served': 1.0, 'to': 1.0, 'seat': 1.0, 'not': 1.0, 'a': 2.0, 'we': 1.0, 'one': 1.0, 'bought': 1.0, 'pillow': 1.0, 'button': 1.0, 'important': 1.0, 'i': 1.0, 'that': 1.0, 'would': 2.0, 'sometimes': 1.0, 'also': 1.0, 'complete': 1.0, 'very': 1.0, 'little': 1.0, 'waste': 1.0, 'good': 1.0, 'fabric': 1.0, 'no': 1.0, 'safety': 1.0, 'purpase': 1.0, 'real': 1.0}
Word element => {'is': 1.0, 'are': 1.0, 'children': 1.0, 'or': 1.0, 'book': 1.0, 'this': 2.0, 'it': 2.0, 'she': 1.0, 'car': 2.0, 'her': 1.0, 'wanted': 1.0, 'only': 1.0, 'granddaughter': 1.0, 'started': 1.0, 'not': 1.0, 'pick': 1.0, 'mine': 1.0, 'for': 2.0, 'one': 2.0, 'prop': 1.0, 'i': 1.0, 'in': 2.0, 'granny': 1.0, 'ordered': 1.0, 'provides': 1.0, 'lot': 1.0, 'keep': 1.0, 'who': 2.0, 'and': 2.0, 'admired': 1.0, 'had': 1.0, 'bar': 1.0, 'safe': 1.0, 'comfortable': 1.0, 'padded': 1.0, 'another': 2.0, 'a': 4.0, 's': 1.0, 'protection': 1.0, 'been': 1.0, 'far': 2.0, 'through': 1.0, 'surpasses': 1.0, 'toy': 1.0, 'comfort': 1.0, 'has': 1.0, 'on': 1.0, 'to': 3.0, 'seat': 1.0, 'as': 2.0, 'goes': 1.0, 'when': 1.0, 'place': 1.0, 'the': 3.0, 'lowered': 1.0, 'most': 1.0, 'but': 1.0}
Word element => {'get': 1.0, 'for': 1.0, 'else': 1.0, 'let': 1.0, 'saying': 1.0, 'need': 2.0, 'done': 1.0, 'am': 2.0, 'when': 2.0, 'pick': 1.0, 'shower': 1.0, 'one': 1.0, 'gave': 1.0, 'in': 1.0, 'but': 1.0, 'on': 1.0, 'bathtubs': 1.0, 'eventually': 1.0, 'me': 1.0, 'my': 2.0, 'and': 5.0, 'additional': 1.0, 'connect': 1.0, 'place': 1.0, 'of': 4.0, 'the': 11.0, 'taking': 1.0, 'gift': 1.0, 'rubber': 1.0, 'bathtub': 2.0, 'research': 1.0, 'agree': 1.0, 'this': 2.0, '0': 1.0, 'wish': 1.0, 'ergonomic': 1.0, 'support': 3.0, 'some': 1.0, 'over': 1.0, 'baby': 1.0, 'someone': 1.0, 'sprayer': 1.0, 'a': 5.0, 's': 1.0, 'we': 3.0, 'as': 1.0, 'pretty': 1.0, 'to': 7.0, 'tub': 3.0, 'easy': 1.0, 'comments': 1.0, 'with': 1.0, 'all': 1.0, 'other': 1.0, 'separate': 1.0, 'instead': 2.0, 'got': 2.0, 'works': 1.0, 'put': 2.0, 'do': 3.0, 'much': 1.0, 'does': 1.0, 'because': 1.0, 'not': 3.0, 'was': 1.0, 'you': 1.0, 'push': 1.0, 'are': 1.0, 'part': 1.0, 'yelled': 1.0, 'hose': 2.0, 'onto': 1.0, 'faucet': 2.0, 'always': 3.0, 'son': 1.0, 'hate': 1.0, 'afraid': 1.0, 'off': 3.0, 'very': 1.0, 'bought': 1.0, 'connectors': 1.0, 'used': 1.0, 'expand': 1.0, 'well': 1.0, 'i': 10.0, 'coming': 1.0, 'have': 1.0, 'un': 1.0, 'come': 1.0, 'together': 1.0, 'it': 5.0, 'thought': 1.0, 'little': 1.0, 'frustrated': 1.0, 'at': 1.0, 'husband': 1.0, 'use': 1.0, 'say': 1.0, 'how': 1.0, 'sliding': 1.0, 'either': 1.0, 'would': 1.0, 'pulling': 1.0, 'infant': 1.0, 'just': 1.0}
Word element => {'friend': 1.0, 'this': 1.0, 'he': 1.0, 'hard': 1.0, 'first': 1.0, 'with': 1.0, 'it': 2.0, 'wouldn': 1.0, 'everytime': 1.0, 'whould': 1.0, 'in': 1.0, 'my': 1.0, 'the': 2.0, 'guide': 1.0, 'a': 3.0, 't': 1.0, 'son': 1.0, 'is': 1.0, 'leaks': 1.0, 'really': 1.0, 'bathing': 1.0, 'after': 1.0, 'baby': 1.0, 'shaped': 1.0, 'tub': 1.0, 'and': 1.0, 'not': 1.0, 'me': 1.0, 'like': 1.0, 'seat': 1.0, 'to': 3.0, 'was': 1.0, 'him': 1.0, 'scream': 1.0, 'for': 2.0, 'tried': 1.0, 'given': 1.0, 'i': 1.0, 'two': 1.0, 'about': 1.0, 'no': 1.0, 'one': 1.0, 'months': 1.0, 'bathe': 1.0, 'time': 1.0, 'mom': 1.0, 'discouraging': 1.0, 'have': 1.0}
Word element => {'need': 1.0, 'than': 1.0, 'you': 2.0, 'don': 1.0, 'if': 1.0, 'still': 1.0, 'great': 1.0, 'better': 1.0, 'think': 2.0, 'overall': 1.0, 'grows': 1.0, 'them': 1.0, 'move': 1.0, 'options': 1.0, 'multiple': 1.0, 'there': 1.0, 'adjusting': 1.0, 'fix': 1.0, 'covers': 1.0, 'come': 1.0, 'after': 3.0, 's': 3.0, 'a': 10.0, 't': 3.0, 'fit': 4.0, 'for': 3.0, 'very': 6.0, 'truck': 2.0, 'she': 2.0, 'ram': 1.0, 'it': 6.0, 'month': 1.0, 'felt': 1.0, 'losing': 1.0, 'helpful': 1.0, 'upright': 1.0, 'daughter': 3.0, '2500': 1.0, 'car': 2.0, 'minivan': 1.0, 'but': 2.0, 'write': 1.0, 'my': 5.0, 'can': 1.0, 'lightweight': 1.0, 'with': 3.0, 'this': 4.0, 'recent': 1.0, 'plane': 1.0, 'have': 2.0, 'as': 2.0, 'leave': 1.0, 'review': 1.0, 'comfort': 1.0, 'that': 2.0, 'because': 1.0, 'find': 2.0, 'in': 5.0, 'seat': 6.0, 'to': 7.0, 'any': 2.0, '15': 1.0, 'wanted': 1.0, 'much': 3.0, 'do': 1.0, 'husband': 1.0, 'old': 1.0, 'i': 7.0, 'are': 1.0, 'britax': 3.0, 'really': 1.0, 'researching': 1.0, 'easy': 3.0, 'information': 1.0, 'was': 2.0, 'dodge': 1.0, 'main': 1.0, 'honda': 1.0, 'tall': 1.0, 'trip': 1.0, 'and': 6.0, 'would': 2.0, 'position': 1.0, 'her': 3.0, 'which': 1.0, 'good': 2.0, 'looking': 2.0, 'extra': 2.0, 'is': 4.0, 'at': 1.0, 'of': 5.0, 'the': 10.0, 'without': 1.0, 'back': 2.0, 'lugging': 1.0, 'fits': 1.0, 'all': 1.0, 'an': 3.0, 'other': 1.0, 'seats': 1.0, 'on': 3.0, 'be': 4.0, 'cab': 1.0, 'nicely': 1.0, 'will': 3.0, 'blvd': 1.0, 'comfortable': 1.0, 'couldn': 2.0, 'install': 1.0, 'over': 1.0, 'airport': 1.0, 'seems': 1.0, 'off': 1.0, 'traveling': 1.0, 'happy': 1.0, 'too': 3.0, 'lot': 1.0, 'one': 3.0, 'instead': 1.0, 'straps': 2.0, 'forward': 1.0, 'not': 1.0}
Word element => {'chest': 1.0, 'on': 1.0, 'resting': 1.0, 'forward': 1.0, 'far': 1.0, 'bent': 1.0, 'for': 1.0, 'often': 1.0, 'and': 1.0, 'head': 1.0, 'little': 1.0, 'her': 2.0, 'carseat': 1.0, 'not': 2.0, 'save': 1.0, 'good': 2.0, 'a': 1.0, 'is': 2.0, 'upright': 1.0, 'it': 2.0, 'this': 1.0, 'sleeping': 1.0, 'very': 2.0, 'around': 1.0, 'flops': 1.0, 'conducive': 1.0, 's': 1.0, 'while': 1.0, 'to': 1.0, 'nappping': 1.0, 'my': 1.0, 'sits': 1.0, 'the': 1.0, 'daughter': 1.0, 'in': 1.0, 'car': 1.0, 'so': 1.0, 'that': 1.0}
Word element => {'straps': 1.0, 'about': 2.0, 'has': 1.0, 'complaint': 1.0, 'muttered': 1.0, 'think': 1.0, 'i': 1.0, 'lot': 1.0, 'used': 1.0, 'haven': 1.0, 'my': 1.0, 't': 1.0, 'the': 3.0, 'we': 1.0, 'extra': 1.0, 'husbands': 1.0, 'was': 2.0, 'seat': 2.0, 'of': 1.0, 'an': 1.0, 'purchased': 1.0, 'as': 1.0, 'a': 1.0, 'since': 1.0, 'car': 3.0, 'nice': 1.0, 'our': 1.0, 'little': 1.0, 'for': 1.0, 'one': 1.0, 'out': 1.0, 'infant': 1.0, 'he': 1.0, 'only': 1.0, 'this': 1.0, 'it': 3.0, 'grew': 1.0, 'is': 1.0}
Word element => {'food': 1.0, 'local': 1.0, 'about': 1.0, 'hundred': 1.0, 'seven': 1.0, 'trinidadian': 1.0, 'thousand': 1.0, 'before': 1.0, 'quite': 1.0, 'two': 1.0, 'little': 1.0, 'brown': 1.0, 'times': 1.0, 'caught': 1.0, 'areas': 1.0, 'budget': 1.0, 'has': 2.0, 'annoying': 1.0, 'wedding': 1.0, 'here': 2.0, 'bumpy': 1.0, 'some': 1.0, 'over': 4.0, 'after': 1.0, 'around': 1.0, 'his': 2.0, 'cloth': 1.0, 'took': 1.0, 'comfy': 1.0, 'padding': 1.0, 'expensive': 1.0, 'neck': 1.0, 'stiff': 1.0, 'way': 1.0, 'apart': 1.0, 'that': 1.0, 'products': 1.0, 'use': 1.0, 'supposed': 1.0, 'pillow': 2.0, 'put': 2.0, 'head': 2.0, 'raised': 1.0, 'deal': 1.0, 'baby': 1.0, 'your': 1.0, 'secure': 1.0, 'know': 1.0, 'easy': 1.0, '8': 1.0, 'long': 1.0, 'on': 4.0, 'gave': 1.0, 'case': 1.0, 'life': 1.0, 'up': 1.0, 'once': 1.0, 'time': 1.0, 'included': 1.0, 'so': 5.0, '120us': 1.0, 'good': 1.0, 'far': 1.0, 'material': 1.0, 'through': 1.0, 'and': 6.0, 'would': 2.0, 'weeks': 1.0, 'car': 3.0, 'to': 12.0, 'all': 3.0, 'country': 1.0, 'days': 1.0, 'choose': 1.0, 'variety': 1.0, 'does': 1.0, 'installed': 1.0, 'install': 1.0, 'comfortable': 1.0, 'just': 1.0, 'stuff': 1.0, 'seats': 1.0, 'seat': 5.0, 'patch': 1.0, 'in': 6.0, 'if': 1.0, 'turn': 2.0, 'not': 7.0, 'bulk': 1.0, 'there': 1.0, 'give': 1.0, 'dollars': 2.0, 'equiped': 1.0, 'old': 1.0, 'roads': 1.0, 'i': 14.0, 'for': 1.0, 'toy': 1.0, 'decided': 1.0, 'of': 3.0, 'the': 17.0, 'a': 10.0, 'we': 3.0, 'go': 2.0, 's': 1.0, '11mth': 1.0, 'my': 11.0, 'pulls': 1.0, 'trying': 2.0, 'another': 2.0, 'eventually': 1.0, 'vehicle': 1.0, 'did': 2.0, 'thing': 2.0, 'britax': 1.0, 'are': 5.0, 'first': 2.0, 'few': 4.0, 'this': 6.0, 'lost': 1.0, 'given': 1.0, 'law': 1.0, 'was': 3.0, 'had': 1.0, 'nap': 1.0, 'cabbage': 1.0, 'son': 4.0, 'removed': 1.0, 'facing': 1.0, 'rest': 1.0, 'ago': 1.0, 'belt': 1.0, 'require': 1.0, 'ready': 1.0, 'twist': 1.0, 'from': 2.0, 'understand': 1.0, 'store': 2.0, 'return': 1.0, 'straps': 1.0, 'it': 8.0, 'but': 2.0, 'pull': 1.0, 'snuzzler': 1.0, 'got': 3.0, 'daughter': 1.0, 'tug': 1.0, 'swear': 1.0, 'weight': 1.0, 'gained': 1.0, 'during': 1.0, 'pregnancy': 1.0, 'get': 1.0, 'safe': 1.0, 'recommend': 1.0, 'stress': 1.0, 'too': 1.0, 'one': 1.0, 'rear': 1.0, 'position': 1.0, 'at': 1.0, 'ring': 2.0, 'attaching': 1.0, 'is': 4.0, 'latch': 1.0, 'night': 1.0, 'you': 3.0, 'kiddopotamus': 1.0, 'our': 2.0, 'how': 1.0, 'adjust': 1.0, 'have': 5.0, 'practice': 1.0, 'with': 2.0}
Word element => {'likes': 1.0, 'alot': 1.0, 'out': 1.0, 'and': 1.0, 'get': 1.0, 'without': 1.0, 'can': 1.0, 'rest': 1.0, 'of': 3.0, 'seat': 1.0, 'is': 1.0, 'easy': 1.0, 'head': 1.0, 'to': 1.0, 'place': 1.0, 'booster': 1.0, 'older': 1.0, 'in': 2.0, 'help': 1.0, 'car': 1.0, 'sides': 1.0, 'light': 1.0, 'child': 2.0}
Word element => {'be': 1.0, 'you': 2.0, 'it': 2.0, 'order': 1.0, 'put': 1.0, 'awful': 1.0, 'angry': 1.0, 'pieces': 1.0, 'times': 1.0, 'will': 1.0, 'both': 1.0, 'do': 1.0, 'together': 1.0, 'after': 1.0, 'was': 1.0, 'missing': 1.0, 'not': 1.0, 'very': 1.0, 'beware': 1.0}
Word element => {'ever': 1.0, 'built': 1.0, 'nursery': 1.0, 'his': 1.0, 'for': 1.0, 'to': 1.0, 'apart': 1.0, 'in': 1.0, 'pieces': 1.0, 'go': 1.0, 'son': 1.0, 'match': 1.0, 'my': 1.0, 'the': 1.0, 'product': 1.0, 'fell': 1.0, 'bought': 1.0, 'i': 1.0, 'when': 1.0, 'did': 1.0, 'not': 1.0, 'up': 1.0, 'worst': 1.0, 'and': 1.0, 'we': 1.0, 'then': 1.0, 'got': 1.0, 'this': 1.0, 'it': 2.0}
Word element => {'time': 1.0, 'long': 1.0, 'a': 1.0, 'to': 1.0, 'was': 1.0, 'together': 1.0, 'dresser': 1.0, 'for': 1.0, 'love': 1.0, 'it': 3.0, 'very': 4.0, 'and': 2.0, 'i': 1.0, 'looks': 2.0, 'classy': 1.0, 'the': 2.0, 'heavy': 1.0, 'last': 1.0, 'wonderful': 1.0, 'room': 1.0, 'complicated': 1.0, 'in': 1.0, 'seems': 1.0, 'that': 1.0, 'put': 1.0, 'but': 1.0, 'will': 1.0}
Word element => {'to': 1.0, 'takes': 1.0, 'time': 1.0, 'worth': 1.0, 'for': 1.0, 'would': 1.0, 'realized': 1.0, 'got': 1.0, 'i': 1.0, 'beautiful': 1.0, 'was': 1.0, 'about': 1.0, 'then': 1.0, 'took': 1.0, 'helpful': 1.0, 'very': 1.0, 'great': 1.0, 'me': 1.0, 'not': 2.0, 'instructions': 1.0, 'because': 3.0, 'are': 4.0, 'solid': 1.0, 'side': 1.0, 'fronts': 1.0, 'backwards': 1.0, 'that': 2.0, 'box': 1.0, 'hardy': 1.0, 'top': 1.0, 'roll': 2.0, 'looking': 1.0, 'were': 1.0, 'pieces': 1.0, 'in': 2.0, 'the': 12.0, 'sides': 1.0, 'lovely': 1.0, 'chest': 2.0, 'drawer': 2.0, 'smoothly': 1.0, 'helps': 1.0, 'wood': 1.0, 'deep': 1.0, 'a': 3.0, 'well': 2.0, 'pictures': 1.0, 'this': 2.0, 'it': 4.0, 'of': 1.0, 'price': 1.0, '34': 2.0, 'color': 1.0, 'board': 1.0, 'themselves': 1.0, 'but': 2.0, 'drawers': 3.0, 'they': 2.0, 'is': 5.0, 'hardware': 1.0, 'only': 2.0, 'works': 1.0, 'before': 1.0, 'hours': 1.0, 'particle': 1.0, 'open': 1.0, 'and': 7.0, 'closed': 2.0, 'if': 1.0, 'you': 1.0, 'rich': 1.0, 'have': 1.0, 'together': 3.0, '3': 1.0, 'put': 2.0, 'furniture': 1.0}
Word element => {'flaws': 1.0, 'appealing': 1.0, 'it': 2.0, 'don': 1.0, 'money': 1.0, 'bit': 1.0, 'a': 1.0, 'been': 1.0, 'all': 1.0, 'have': 1.0, 'could': 1.0, 'being': 1.0, 'time': 1.0, 'pieces': 1.0, 'sure': 1.0, 'thought': 1.0, 'that': 3.0, 'were': 1.0, 'together': 2.0, 'know': 1.0, 'not': 1.0, 'quality': 1.0, 'put': 1.0, 'faces': 1.0, 'biggest': 1.0, 'its': 1.0, 'now': 1.0, 'was': 1.0, 'to': 2.0, 'most': 1.0, 'and': 1.0, 'drawers': 1.0, 'patience': 1.0, 'takes': 1.0, 'of': 2.0, 't': 1.0, 'warped': 1.0, 'the': 5.0, 'even': 1.0, 'better': 1.0, 'marked': 1.0, 'people': 1.0, 'looks': 1.0, 'is': 2.0, 'disappointment': 1.0, 'for': 2.0, 'one': 1.0}
Word element => {'s': 1.0, 'cute': 1.0, 'your': 1.0, 'save': 1.0, 'quality': 1.0, 'better': 1.0, 'sturdier': 1.0, 'out': 1.0, 'wasn': 1.0, 'random': 1.0, 'both': 3.0, '2010': 1.0, '2': 1.0, 'knobs': 1.0, 'wiggles': 1.0, 'slide': 1.0, 'from': 1.0, 'on': 1.0, '3': 1.0, 'something': 1.0, 'furniture': 1.0, 'busted': 1.0, 'off': 2.0, 'lightest': 1.0, 'or': 1.0, 'stork': 1.0, 'cams': 1.0, 'was': 2.0, 'so': 2.0, 'through': 2.0, 'drawer': 1.0, 'drawers': 1.0, 'aren': 1.0, 'they': 1.0, 'craft': 1.0, 't': 2.0, 'a': 1.0, 'completely': 1.0, 'look': 1.0, 'is': 1.0, 'babiesrus': 1.0, 'trash': 1.0, 'craftmanship': 1.0, 'purchase': 1.0, 'properly': 1.0, 'either': 1.0, 'tight': 1.0, 'dresser': 2.0, 'for': 1.0, 'in': 3.0, 'put': 1.0, 'do': 1.0, 'nursery': 1.0, 'other': 1.0, 'matching': 1.0, 'roughly': 1.0, 'now': 1.0, 'and': 8.0, 'money': 1.0, 'bought': 1.0, 'one': 1.0, 'side': 3.0, 're': 1.0, 'cabinet': 1.0, 'not': 2.0, 'our': 1.0, 'to': 2.0, 'units': 3.0, 'since': 1.0, 'this': 1.0, 'with': 3.0, 'it': 6.0, 'after': 1.0, 'truck': 1.0, 'arraning': 1.0, 'these': 1.0, 'room': 1.0, 'times': 1.0, 'when': 1.0, 'then': 1.0, 'we': 4.0, 'moving': 2.0, 'handled': 2.0, 'by': 1.0, 'just': 2.0, 'did': 1.0, 'professionals': 1.0, 'backing': 1.0, 'target': 1.0, 'them': 1.0, 'has': 2.0, 'whole': 1.0, 'no': 1.0, 'the': 9.0, 'of': 3.0, 'move': 1.0, 'touches': 1.0, 'damaged': 1.0, 'that': 1.0, 'fall': 2.0, 'because': 1.0, 'together': 1.0, 'were': 1.0, 'shotty': 1.0, 'amazon': 1.0, 'been': 1.0, 'day': 1.0, 'have': 1.0, 'replace': 1.0}
Word element => {'great': 1.0, 'problem': 1.0, 'able': 1.0, 'was': 1.0, 'off': 1.0, 'come': 1.0, 'did': 1.0, 'retail': 1.0, 'in': 1.0, 'have': 1.0, 'european': 1.0, 'for': 1.0, 'expensive': 1.0, 'good': 1.0, 'just': 1.0, 'seen': 1.0, 'easily': 1.0, 'very': 1.0, 'open': 1.0, 'same': 1.0, 'are': 1.0, 'drawers': 1.0, 'they': 1.0, 'thinks': 1.0, 'everyone': 1.0, 'back': 1.0, 'collection': 2.0, 'a': 1.0, 's': 1.0, 'craft': 1.0, 'some': 2.0, 'already': 1.0, 'sturdy': 1.0, 'of': 3.0, 'money': 1.0, 'but': 1.0, 'work': 1.0, 'furniture': 1.0, 'put': 1.0, 'an': 1.0, 'would': 1.0, 'looks': 1.0, 'it': 5.0, 'this': 1.0, 'stores': 1.0, 'with': 3.0, 'that': 5.0, 'two': 1.0, 'i': 4.0, 'unseen': 1.0, 'other': 1.0, 'chest': 1.0, 'legacy': 1.0, 'dresers': 1.0, 'purchased': 1.0, 'had': 1.0, 'husband': 2.0, 'effot': 1.0, 'as': 2.0, 'to': 2.0, 'appears': 1.0, 'amazon': 1.0, 'hopes': 1.0, 'crib': 1.0, 'out': 1.0, 'child': 1.0, 'slide': 1.0, 'from': 3.0, 'match': 1.0, 'high': 1.0, 'pieces': 1.0, 'my': 2.0, 'value': 1.0, 'together': 1.0, 'sight': 1.0, 'the': 8.0, 'without': 2.0, 'and': 2.0, 'too': 1.0, 'end': 1.0, 'much': 1.0, 'knobs': 1.0, 'be': 1.0, 'anchor': 1.0, 'one': 1.0, 'color': 1.0, 'bought': 1.0, 'pretty': 1.0, 'more': 1.0, 'is': 1.0, 'cognac': 2.0, 'exact': 1.0}
Word element => {'furniture': 1.0, 'little': 1.0, 'with': 1.0, 'satisfied': 1.0, 'now': 1.0, 'for': 2.0, 'using': 1.0, 're': 1.0, 'feeling': 1.0, 'since': 1.0, 'flimsy': 1.0, 'lot': 1.0, 'of': 1.0, 'clothes': 1.0, 'baby': 1.0, 'quality': 2.0, 'done': 1.0, 'sturdy': 1.0, 'almost': 1.0, 'thing': 1.0, 'whole': 1.0, 'got': 1.0, 'after': 1.0, 'and': 3.0, 'redo': 1.0, 'just': 1.0, 'few': 1.0, 'not': 2.0, 'backwards': 1.0, 'that': 3.0, 'pieces': 1.0, 'were': 1.0, 'items': 1.0, 'canada': 1.0, 'so': 2.0, 'time': 1.0, 'partially': 1.0, 'slightly': 2.0, 'lighter': 1.0, 'shipping': 1.0, 'seem': 1.0, 'from': 1.0, 'hard': 1.0, 'this': 2.0, 'arrival': 1.0, 'higher': 1.0, 'it': 3.0, 'will': 2.0, 'work': 1.0, 'but': 2.0, 'somewhat': 1.0, 'right': 1.0, 'drawers': 1.0, 'reviews': 1.0, 'company': 1.0, 'the': 8.0, 'damaged': 1.0, 'i': 3.0, 'does': 1.0, 'cribs': 1.0, 'unclear': 1.0, 'as': 2.0, 'to': 2.0, 'expecting': 1.0, 'was': 2.0, 'had': 2.0, 'upon': 1.0, 'alright': 1.0, 'have': 1.0, 'coming': 1.0, 'price': 1.0, '34': 1.0, 'm': 2.0, 'assembly': 1.0, 'some': 1.0, 'instructions': 1.0, 'are': 3.0, 'fairly': 1.0, 'sure': 1.0, 'easy': 1.0, 'say': 1.0, 'is': 3.0, 'a': 4.0, 's': 2.0, 'we': 4.0}
Word element => {'cheep': 1.0, 'best': 1.0, 'material': 1.0, 'not': 1.0, 'it': 1.0, 's': 1.0, 'back': 1.0, 'ok': 1.0, 'price': 1.0, 'very': 1.0, 'quality': 1.0, 'for': 1.0, 'made': 1.0, 'the': 3.0, 'is': 2.0, 'but': 1.0, 'of': 2.0, 'product': 1.0}
Word element => {'friend': 1.0, 'that': 1.0, 'frustrating': 1.0, 'damage': 1.0, 'had': 1.0, 'now': 1.0, 'two': 1.0, 'i': 3.0, 'when': 1.0, 'and': 2.0, 'too': 1.0, 'pressed': 1.0, 'is': 2.0, 'the': 2.0, 'great': 1.0, 'of': 2.0, 'takes': 1.0, 'have': 1.0, 'to': 3.0, 'all': 1.0, 'this': 2.0, 'looks': 1.0, 'it': 3.0, 'got': 1.0, 'but': 1.0, 'recommend': 1.0, 'was': 1.0, 'doesn': 1.0, 'put': 1.0, 'real': 1.0, 'chest': 2.0, 'wood': 3.0, 'not': 2.0, 'those': 1.0, 'hope': 1.0, 'take': 1.0, 'came': 1.0, 'long': 2.0, 'way': 1.0, 'together': 1.0, 'reordered': 1.0, 'in': 1.0, 'parts': 1.0, 'pieces': 1.0, 't': 1.0, 'a': 2.0, 'lot': 1.0, 'very': 1.0, 'would': 1.0}
Word element => {'of': 1.0, 'few': 1.0, 'a': 1.0, 'get': 1.0, 'hope': 1.0, 'had': 1.0, 'for': 1.0, 'it': 3.0, 'paid': 1.0, 'but': 2.0, 'just': 1.0, 'can': 1.0, 'cheaply': 1.0, 'we': 2.0, 'nice': 1.0, 'came': 1.0, 'is': 1.0, 'looks': 1.0, 'when': 1.0, 'i': 1.0, 'out': 1.0, 'made': 1.0, 'some': 1.0, 'years': 1.0, 'dresser': 1.0, 'price': 1.0, 'the': 1.0, 't': 1.0, 'scratches': 1.0, 'complain': 1.0}
Word element => {'and': 1.0, 'bad': 1.0, 'a': 1.0, 'not': 1.0, 'was': 1.0, 'price': 1.0, 'looks': 1.0, 'nice': 1.0, 'purchase': 1.0, 'cheaply': 1.0, 'will': 2.0, 'but': 1.0, 'the': 1.0, 'made': 1.0, 'serve': 2.0, 'it': 2.0, 's': 2.0, 'purpose': 2.0, 'for': 1.0}
Word element => {'happy': 1.0, 'am': 1.0, 'which': 1.0, 'crib': 1.0, 'craft': 1.0, 'stork': 1.0, 'also': 1.0, 'note': 1.0, 'on': 1.0, 'ridiculous': 1.0, 'chips': 1.0, 'assemble': 1.0, 'for': 1.0, 'as': 1.0, 'to': 6.0, 'difficult': 1.0, 'warn': 1.0, 'appalled': 1.0, 'he': 1.0, 'how': 1.0, 'carpenter': 1.0, 'said': 1.0, 'in': 2.0, 'at': 2.0, 'is': 1.0, 'comes': 1.0, 'then': 2.0, 's': 2.0, 'million': 1.0, 'go': 1.0, 'you': 2.0, 'very': 1.0, 'posts': 3.0, 'easily': 1.0, 'that': 2.0, 'written': 1.0, 'lose': 2.0, 'and': 6.0, 'hate': 1.0, 'life': 1.0, 'potential': 1.0, 'two': 1.0, 'got': 1.0, 'pieces': 1.0, 'review': 1.0, 'dresser': 2.0, 'another': 1.0, 'but': 1.0, 'have': 4.0, 'i': 8.0, 'coming': 1.0, 'all': 5.0, 'other': 2.0, 'so': 3.0, 'simply': 1.0, 'much': 1.0, 'do': 1.0, 'was': 2.0, 'more': 2.0, 'husband': 1.0, 'a': 5.0, 'emailed': 1.0, 'had': 1.0, 'glider': 1.0, 'it': 6.0, 'month': 1.0, 'this': 1.0, 'functional': 1.0, 'ok': 1.0, 'victims': 1.0, 'use': 1.0, 'begins': 1.0, 'old': 1.0, 'come': 2.0, 'time': 1.0, 'railings': 1.0, 'unscrewed': 1.0, 'until': 2.0, 'again': 1.0, 'drawers': 1.0, 'they': 2.0, 'first': 1.0, 'are': 1.0, 'no': 1.0, 'about': 1.0, 'of': 1.0, 'the': 10.0, 'longer': 1.0, 'part': 1.0, 'manufacturer': 1.0, 'never': 1.0, 'advised': 1.0, 'every': 1.0, 'my': 2.0, 'me': 1.0, 'not': 1.0, 'tighten': 1.0, 'after': 1.0, 'retighten': 1.0, 'did': 1.0, 'worked': 1.0, 'week': 1.0, 'started': 1.0, 'many': 1.0, 'baby': 1.0, 'with': 2.0, '5': 1.0, 'positive': 1.0, 'rails': 1.0, 'weeks': 1.0, 'or': 1.0}
Word element => {'disappointed': 1.0, 'extremely': 1.0, 'm': 1.0, 'i': 3.0, 'back': 1.0, 'ship': 1.0, 'properly': 1.0, 'repack': 1.0, 'if': 1.0, 'apart': 1.0, 'dang': 1.0, 'thing': 1.0, 'whole': 1.0, 'try': 1.0, 'much': 1.0, 'would': 2.0, 'simply': 1.0, 'hideous': 1.0, 'horrible': 1.0, 'too': 1.0, 'and': 2.0, 'awful': 1.0, 'single': 1.0, 'is': 3.0, 'however': 1.0, 'stain': 1.0, 'together': 2.0, 'are': 3.0, 'the': 7.0, 'of': 1.0, 'once': 1.0, 'warped': 1.0, 'piece': 1.0, 'take': 2.0, 'directions': 1.0, 'one': 1.0, 'stars': 1.0, 'for': 1.0, 'looks': 2.0, 'it': 7.0, 'though': 2.0, 'be': 1.0, 'knobs': 1.0, 'all': 3.0, 'to': 4.0, 're': 1.0, 'put': 1.0, 'pay': 1.0, 'awhile': 1.0, 'difficult': 1.0, 'give': 1.0, 'not': 1.0, '0': 1.0, 'pain': 1.0, 'this': 2.0, 'weren': 1.0, 'quite': 1.0, 'did': 1.0, 'drawer': 2.0, 'straight': 1.0, 'darker': 1.0, 'drawers': 1.0, 'they': 1.0, 'because': 1.0, 'than': 1.0, 'quality': 1.0, 'crooked': 1.0, 'screws': 1.0, 'others': 1.0, 'already': 1.0, 'keeping': 1.0, 'stripped': 1.0, 'could': 1.0, 't': 1.0, 'a': 3.0, 'we': 1.0, 'even': 1.0}
Word element => {'to': 2.0, 'had': 1.0, 'year': 1.0, 'out': 1.0, 'worn': 1.0, 'knobs': 1.0, 'socks': 1.0, 'a': 1.0, 'racks': 1.0, 'or': 2.0, 'off': 1.0, 'burp': 1.0, 'like': 1.0, 'for': 1.0, '5': 1.0, 'years': 1.0, 'about': 1.0, 'chest': 1.0, 'used': 1.0, 'in': 1.0, 've': 1.0, 'this': 1.0, 'it': 2.0, 'sleepers': 1.0, 'i': 2.0, 'glue': 1.0, 'looks': 1.0, 'drawer': 2.0, 'nice': 1.0, 'can': 1.0, 'somewhat': 1.0, 'use': 1.0, 'sturdy': 1.0, 'you': 1.0, 'super': 1.0, 'two': 1.0, 'drawers': 1.0, 'back': 1.0, 'put': 2.0, 'came': 1.0, 'light': 1.0, 'so': 1.0, 'after': 1.0, 'items': 1.0, 'the': 2.0}
Word element => {'s': 1.0, 'good': 1.0, 'that': 1.0, 'after': 1.0, 'price': 1.0, 'dresser': 1.0, 'still': 1.0, 'can': 1.0, 'solid': 1.0, 'really': 1.0, 'is': 2.0, 'have': 1.0, 'got': 1.0, 'use': 1.0, 'purchase': 1.0, 'quality': 1.0, 'but': 1.0, 'for': 4.0, 'exciting': 1.0, 'i': 3.0, 'table': 2.0, 'me': 1.0, 'and': 3.0, 'hoping': 1.0, 'to': 1.0, 'was': 1.0, 'great': 1.0, 'more': 1.0, 'of': 1.0, 'a': 5.0, 'tall': 1.0, 'as': 1.0, 'very': 1.0, 'changing': 2.0, 'this': 2.0, 'it': 4.0, 'little': 1.0, 'too': 1.0}
Word element => {'fix': 1.0, 'how': 1.0, 'don': 1.0, 'use': 1.0, 'so': 1.0, 'right': 1.0, 'screw': 1.0, 'big': 1.0, 'are': 1.0, 'but': 1.0, 'work': 2.0, 'top': 1.0, 'space': 1.0, 'some': 1.0, 'really': 1.0, 'is': 1.0, 'left': 2.0, 'side': 3.0, 'said': 1.0, 'put': 1.0, 'stuff': 1.0, 'on': 3.0, 'doesn': 1.0, 'beautiful': 1.0, 'i': 5.0, 'know': 1.0, 'brought': 1.0, 'just': 2.0, 'because': 1.0, 'this': 1.0, 'it': 3.0, 'come': 1.0, 'design': 1.0, 'for': 2.0, 'love': 2.0, 'the': 10.0, 'secure': 1.0, 'knob': 2.0, 'holes': 1.0, 'my': 1.0, 'daughter': 1.0, 'pull': 2.0, 'too': 1.0, 'and': 2.0, 'nursery': 1.0, 'once': 1.0, 'of': 2.0, 'her': 1.0, 'to': 5.0, 'all': 2.0, 'drawer': 3.0, 'we': 1.0, 't': 2.0, 's': 1.0, 'you': 1.0, 'doesnt': 1.0, 'open': 2.0, 'out': 2.0, 'them': 1.0}
Word element => {'don': 1.0, 'are': 1.0, 'you': 1.0, 'want': 1.0, 'if': 1.0, 'recommend': 1.0, 'was': 2.0, 'wanted': 1.0, 'character': 1.0, 'the': 1.0, 'had': 1.0, 'what': 1.0, 'little': 3.0, 'but': 4.0, 'put': 1.0, 'spend': 1.0, 'great': 1.0, 'big': 1.0, 'too': 1.0, 't': 3.0, 'a': 5.0, 'we': 2.0, 'bought': 1.0, 'would': 1.0, 'something': 2.0, 'that': 1.0, 'this': 3.0, 'it': 3.0, 'for': 4.0, 'works': 1.0, 'nursery': 1.0, 'far': 1.0, 'i': 4.0, 'needed': 1.0, 'wasn': 2.0, 'looking': 2.0, 'cute': 1.0, 'experience': 1.0, 'after': 1.0, 'so': 1.0, 'reading': 1.0, 'skeptical': 1.0, 'of': 1.0, 'some': 1.0, 'lot': 1.0, 'at': 1.0, 'reviews': 1.0, 'have': 1.0, 'to': 2.0, 'our': 1.0, 'all': 1.0, 'good': 1.0, 'did': 1.0, 'take': 1.0, 'while': 1.0, 'together': 1.0, 'difficult': 1.0}
Word element => {'fine': 1.0, 'baby': 1.0, 'deeper': 1.0, 'little': 1.0, 'be': 1.0, 'drawers': 1.0, 'preferred': 1.0, 'have': 1.0, 'would': 1.0, 'than': 1.0, 'issue': 1.0, 'particle': 1.0, 'worth': 1.0, 'result': 1.0, 'end': 1.0, 'the': 5.0, 'put': 1.0, 'most': 1.0, 'but': 3.0, 'work': 1.0, 'back': 1.0, 'of': 2.0, 'this': 1.0, 'with': 1.0, 'real': 1.0, 'took': 1.0, 'i': 2.0, 't': 1.0, 'a': 4.0, 'see': 1.0, 'lot': 1.0, 'long': 1.0, 'it': 6.0, 'looks': 1.0, 'time': 1.0, 'was': 3.0, 'more': 1.0, 'is': 3.0, 'comes': 1.0, 'together': 1.0, 'wood': 1.0, 'feels': 1.0, 'an': 1.0, 'solid': 1.0, 'and': 2.0, 'cherry': 1.0, 'board': 1.0, 'don': 1.0, 'that': 2.0, 'being': 1.0, 'also': 1.0, 'to': 1.0, 'tether': 1.0, 'expensive': 1.0, 'for': 2.0, 'safety': 1.0, 'nice': 1.0}
Word element => {'and': 1.0, 'oh': 1.0, 'purchased': 1.0, 'have': 1.0, 'would': 1.0, 'well': 1.0, 'a': 1.0, 'in': 1.0, 'd': 1.0, 'had': 1.0, 'product': 1.0, 'be': 1.0, 'even': 1.0, 'learn': 1.0, 'store': 1.0, 'may': 1.0, 'm': 1.0, 'not': 2.0, 'that': 1.0, 'board': 1.0, 'of': 1.0, 'lots': 1.0, 'bottoms': 1.0, 'f': 1.0, 'it': 1.0, 'this': 1.0, 'the': 1.0, 'particle': 1.0, 'are': 1.0, 'drawer': 1.0, 'cardboard': 1.0, 'live': 1.0, 'thick': 1.0, 'if': 1.0, 'i': 2.0, 'seen': 1.0}
Word element => {'product': 1.0, 'it': 1.0, 'finish': 1.0, 'recommend': 1.0, 'good': 1.0, 'excellent': 1.0, 'this': 1.0, 'loved': 1.0, 'have': 1.0, 'my': 1.0, 'size': 1.0, 'am': 1.0, 'very': 1.0, 'practical': 1.0, 'i': 2.0, 'for': 1.0, 'kitchen': 1.0, 'happy': 1.0}
Word element => {'cacophony': 1.0, 'a': 1.0, 'instruments': 1.0, 'making': 1.0, 'away': 1.0, 'different': 1.0, 'sounds': 1.0, 'grandson': 1.0, 'picked': 1.0, 'was': 1.0, 'banging': 1.0, 'started': 1.0, 'my': 1.0, 'the': 2.0, 'with': 1.0, 'musical': 1.0, 'thrilled': 1.0, 'toy': 1.0, 'and': 1.0, 'up': 1.0, 'kit': 1.0, 'of': 1.0, 'he': 1.0}
Word element => {'in': 1.0, 'annoying': 1.0, 'not': 1.0, 'also': 1.0, 'to': 1.0, 'music': 1.0, 'grandson': 1.0, 'been': 1.0, 'room': 1.0, 'others': 1.0, 'time': 1.0, 'having': 1.0, 'has': 1.0, 'good': 1.0, 'a': 1.0, 'making': 1.0, 'his': 1.0, 'the': 1.0, 'my': 1.0, 'own': 1.0}
Word element => {'life': 1.0, 'in': 1.0, 'from': 1.0, 'be': 1.0, 'will': 1.0, 'for': 1.0, 'love': 1.0, 'ever': 1.0, 'they': 1.0, 'old': 1.0, 'months': 1.0, 'on': 2.0, '3': 1.0, 'my': 3.0, 'son': 1.0, 'all': 1.0, 'to': 1.0, 'as': 1.0, 'have': 1.0, 'this': 2.0, 'received': 1.0, 'he': 5.0, 'first': 1.0, 'it': 2.0, 'set': 1.0, 'and': 2.0, 'couldn': 1.0, 'do': 1.0, 'gift': 2.0, 'was': 2.0, 'now': 2.0, 'toys': 1.0, 'favorite': 1.0, 'when': 1.0, 'mesmerized': 1.0, 'since': 1.0, 'at': 1.0, 'the': 2.0, 'shake': 2.0, 'i': 1.0, 'watching': 1.0, 'rattles': 1.0, 'himself': 1.0, 'other': 1.0, 'his': 2.0, 'captivated': 1.0, 'people': 1.0, 'babies': 1.0, 'been': 1.0, 'totally': 1.0, 'that': 1.0, 'but': 1.0, 'can': 1.0, 'them': 1.0, 'own': 1.0, 'go': 1.0, 'a': 1.0, 't': 1.0, 's': 1.0}
Word element => {'highly': 1.0, 'product': 1.0, 'drumstick': 1.0, 'walks': 1.0, 'with': 1.0, 'time': 1.0, 'the': 2.0, 'my': 1.0, 'little': 2.0, 'uses': 1.0, 'even': 1.0, 'all': 1.0, 'just': 2.0, 'great': 1.0, 'it': 1.0, 'grandson': 1.0, 'loves': 1.0, 'this': 1.0, 'drum': 1.0, 'recommend': 1.0, 'around': 1.0, 'daniel': 1.0, 'he': 2.0}
Word element => {'least': 1.0, 'be': 1.0, 'have': 1.0, 'or': 1.0, 'buying': 1.0, 'didn': 1.0, 'i': 4.0, '4': 1.0, 'but': 2.0, '2': 1.0, 'can': 2.0, 'money': 1.0, 'my': 2.0, 'drumsticks': 1.0, 'package': 1.0, 'wooden': 1.0, 'less': 1.0, 'good': 1.0, 'made': 1.0, 'your': 2.0, 'any': 2.0, 'as': 4.0, 'to': 1.0, 'expect': 1.0, 'waste': 2.0, 'no': 1.0, 'about': 1.0, 'at': 3.0, 'much': 1.0, 'do': 2.0, 'else': 1.0, 'dont': 2.0, 'cardboard': 1.0, 'there': 1.0, 'the': 5.0, 'of': 4.0, 'thickness': 1.0, 'these': 3.0, 'some': 1.0, 'a': 5.0, 'home': 1.0, 'gas': 1.0, 'we': 1.0, 'might': 1.0, 'entertaining': 1.0, 'if': 1.0, 'want': 1.0, 'they': 5.0, 'very': 1.0, 'box': 2.0, 'like': 2.0, 'bongos': 1.0, 'all': 4.0, 'tupperware': 1.0, '1': 2.0, 'and': 8.0, 'description': 1.0, 'not': 2.0, 'appear': 1.0, 'somewhat': 1.0, 'than': 2.0, 'way': 1.0, 'cereal': 1.0, 'durable': 1.0, 'in': 2.0, 'make': 2.0, 'sound': 3.0, 'over': 1.0, 'you': 1.0, 'get': 1.0, 'mini': 1.0, 'drum': 1.0, 'spoon': 1.0, 'sticks': 1.0, 'hand': 1.0, 'something': 2.0, 'would': 2.0, 'harder': 1.0, 'own': 1.0, 'see': 1.0, 'son': 1.0, 't': 1.0, 'likes': 1.0, 'think': 1.0, 'better': 1.0, 'already': 1.0, 'states': 2.0, 'item': 1.0, 'using': 1.0, 'surely': 1.0, '3': 2.0, 'older': 1.0, 'drums': 1.0, 'send': 1.0, 'them': 1.0, 'making': 1.0, 'back': 1.0, 'shipped': 1.0, 'fun': 1.0, 'from': 1.0, 'israel': 1.0, 'are': 4.0, 'bad': 1.0, 'product': 1.0, 'here': 1.0, 'were': 2.0, 'recommend': 1.0}
Word element => {'and': 1.0, 'it': 2.0, 'old': 1.0, 'months': 1.0, 'turned': 1.0, 'got': 1.0, 'beating': 1.0, 'for': 1.0, 'started': 1.0, 'my': 1.0, 'this': 1.0, 'grandson': 1.0, 'fooled': 1.0, 'youngest': 1.0, 'i': 1.0, 'when': 2.0, 'was': 1.0, 'really': 1.0, '1': 1.0, 'he': 4.0, 'on': 1.0, 'with': 1.0, '10': 1.0}
Word element => {'recommend': 1.0, 'do': 1.0, 'i': 1.0, 'cheaply': 1.0, 'not': 2.0, 'made': 1.0, 'the': 2.0, 'cheap': 1.0, 'item': 2.0, 'is': 1.0, 'anything': 1.0, 'feels': 1.0, 'looks': 1.0, 'and': 1.0, 'worth': 1.0, 'because': 1.0, 'returned': 1.0, 'it': 1.0}
Word element => {'have': 1.0, 'would': 1.0, 'than': 1.0, 'requires': 1.0, 'them': 1.0, 'connect': 1.0, 'difficult': 1.0, 'makes': 1.0, 'and': 1.0, 'thin': 1.0, 'on': 1.0, 'plastic': 1.0, 'however': 1.0, 'therapy': 1.0, 'bit': 2.0, 'occupational': 1.0, 'help': 1.0, 'to': 2.0, 'of': 1.0, 'beads': 1.0, 'is': 1.0, 'fine': 1.0, 'liked': 1.0, 'for': 1.0, 'it': 1.0, 'with': 1.0, 'two': 1.0, 'motor': 1.0, 'manipulation': 1.0, 'are': 1.0, 'bought': 1.0, 'skills': 1.0, 'old': 1.0, 'i': 2.0, 'year': 1.0, 'as': 1.0, 'these': 2.0, 'the': 2.0, 'more': 2.0, 'traditional': 1.0, 'pop': 1.0, 'my': 1.0, 'staple': 1.0, 'a': 3.0}
Word element => {'happy': 1.0, 'm': 1.0, 'soft': 1.0, 'using': 1.0, 'been': 1.0, 'was': 1.0, 'had': 2.0, 'very': 1.0, 'changing': 1.0, 'previously': 1.0, 'him': 1.0, 'so': 2.0, 'thought': 1.0, 'that': 1.0, 'cover': 1.0, 'is': 1.0, 'on': 1.0, 'extremely': 1.0, 'with': 1.0, 'it': 2.0, 'this': 2.0, 'guilty': 1.0, 'though': 1.0, 'much': 1.0, 'product': 1.0, 'plush': 1.0, 'made': 1.0, 'naked': 1.0, 'me': 1.0, 'pad': 1.0, 'feel': 1.0, 'about': 1.0, 'even': 1.0, 'what': 1.0, 'down': 1.0, 'putting': 1.0, 'i': 3.0}
Word element => {'hand': 1.0, 'cute': 1.0, 'to': 1.0, 'be': 1.0, 'little': 1.0, 'should': 1.0, 'fit': 1.0, 'maybe': 1.0, 'an': 1.0, 'but': 1.0, 'than': 1.0, 'adult': 1.0, 'is': 2.0, 'into': 1.0, 'the': 1.0, '3': 1.0, 'puppet': 1.0, 'for': 1.0, 'hard': 1.0, 'it': 2.0, 'this': 1.0, 'older': 2.0, 'children': 1.0, 'a': 1.0}
Word element => {'pretty': 1.0, 'wash': 1.0, 'to': 1.0, 'easy': 1.0, 'enough': 1.0, 'positioning': 1.0, 'convenient': 1.0, 'one': 1.0, 'i': 1.0, 'wearable': 1.0, 'warm': 1.0, 'owned': 1.0, 'have': 1.0, 'this': 1.0, 'good': 1.0, 'really': 1.0, 'several': 1.0, 'zipper': 1.0, 'blankets': 1.0, 'and': 2.0, 'is': 1.0, 'a': 1.0}
Word element => {'mamas': 1.0, 'expecting': 1.0, 'list': 1.0, 'on': 1.0, 'feeling': 1.0, 'retains': 1.0, 'well': 1.0, 'no': 1.0, 'i': 1.0, 'months': 1.0, 'it': 3.0, 'gifts': 1.0, 'nicer': 1.0, 'he': 1.0, 'onesies': 1.0, 'soft': 1.0, 'this': 1.0, '9': 1.0, 'sizes': 1.0, 'have': 1.0, 'because': 1.0, 'just': 1.0, 'sack': 1.0, 'both': 1.0, 'for': 2.0, 'in': 2.0, 'lullabag': 2.0, 'all': 1.0, 'sleep': 1.0, 'the': 6.0, 'and': 5.0, 'of': 1.0, 'defintely': 1.0, 'halo': 1.0, 'prefer': 1.0, 'appropriate': 1.0, 'out': 1.0, 'my': 1.0, 'fits': 1.0, 'feels': 1.0, 'so': 1.0, 'much': 1.0, 'inside': 2.0, 'longer': 1.0, 'is': 1.0, 'footed': 1.0, 'baby': 1.0, 'certainly': 1.0, 'snuggly': 1.0, 'old': 1.0, 'makes': 1.0, 'cotton': 1.0, 'fleece': 1.0, 'him': 1.0, 'possible': 1.0, 'washes': 1.0, 'still': 1.0, 'wee': 1.0, 'look': 1.0, 'like': 1.0, 'we': 1.0, 'a': 1.0}
Word element => {'new': 1.0, 'a': 1.0, 'know': 1.0, 'all': 1.0, 'we': 1.0, 'which': 1.0, 'is': 1.0, 'longer': 1.0, 'in': 1.0, 'that': 1.0, 'daughter': 2.0, 'the': 2.0, 'smaller': 1.0, 'my': 2.0, 'granddaughter': 1.0, 'loved': 1.0, 'and': 2.0, 'size': 1.0, 'so': 2.0, 'bought': 2.0, 'larger': 1.0, 'this': 1.0, 'it': 2.0, 'asked': 1.0, 'much': 2.0, 'moms': 1.0, 'she': 2.0, 'sleeps': 1.0, 'for': 3.0, 'one': 1.0, 'plus': 1.0, 'says': 1.0, 'her': 1.0, 'better': 1.0}
Word element => {'secure': 1.0, 'need': 1.0, 'you': 1.0, 'safe': 1.0, 'options': 1.0, 'fabric': 1.0, 'two': 1.0, 'blankets': 1.0, 'his': 1.0, 'outgrew': 1.0, 'son': 1.0, 'every': 1.0, 'using': 1.0, 'keeping': 1.0, 'newborn': 1.0, 'not': 1.0, 'pj': 1.0, 'months': 1.0, 'month': 1.0, 'than': 1.0, 'far': 1.0, 'other': 1.0, 'market': 1.0, 'and': 5.0, 'better': 1.0, 'they': 2.0, 'warm': 1.0, 'makes': 1.0, 'these': 2.0, 'the': 5.0, 'several': 1.0, 'bags': 1.0, 'once': 1.0, 'of': 2.0, 'over': 1.0, 'up': 2.0, 'in': 1.0, 'night': 3.0, 'started': 1.0, 'baby': 5.0, 'by': 1.0, 'both': 1.0, 'are': 3.0, 'cotton': 1.0, 'fleece': 1.0, 'made': 1.0, 'make': 1.0, 'on': 1.0, 'dual': 1.0, 'well': 1.0, 's': 2.0, 'we': 2.0, 'a': 5.0, 'direction': 1.0, 'stand': 1.0, '6': 1.0, 'washing': 1.0, 'all': 2.0, 'our': 1.0, 'sleep': 2.0, 'to': 3.0, 'at': 1.0, 'drowsy': 1.0, 'lot': 1.0, 'swaddling': 1.0, 'soft': 1.0, 'great': 1.0, 'feel': 1.0, '1': 1.0, 'comfortable': 2.0, 'for': 4.0, 'cinch': 1.0, 'note': 1.0, 'changing': 1.0, 'that': 1.0, 'have': 1.0, 'zipper': 1.0, 'small': 1.0, 'more': 1.0, 'is': 1.0, 'size': 1.0}
Word element => {'a': 1.0, 'uv': 1.0, 'classy': 1.0, 'you': 1.0, 'looking': 1.0, 'the': 1.0, 'shirt': 1.0, 'for': 1.0, 'added': 1.0, 'one': 1.0, 'your': 1.0, 'little': 1.0, 'protection': 1.0, 'beat': 1.0, 'can': 1.0, 't': 1.0}
IOPub data rate exceeded. The notebook server will temporarily stop sending output to the client in order to avoid crashing it. To change this limit, set the config variable `--NotebookApp.iopub_data_rate_limit`. Current values: NotebookApp.iopub_data_rate_limit=1000000.0 (bytes/sec) NotebookApp.rate_limit_window=3.0 (secs)
Word element => {'stay': 1.0, 'make': 1.0, 'down': 1.0, 'slide': 2.0, 'sides': 1.0, 'way': 1.0, 'always': 1.0, 'of': 1.0, 'appears': 1.0, 'up': 2.0, 'maybe': 1.0, 'buckling': 1.0, 'and': 1.0, 'pieces': 1.0, 'in': 2.0, 'is': 1.0, 'dont': 1.0, 'i': 3.0, 'buy': 1.0, 'the': 5.0, 'by': 1.0, 'just': 1.0, 'his': 1.0, 'sturdy': 1.0, 'thing': 1.0, 'very': 1.0, 'like': 2.0, 'digging': 1.0, 'only': 1.0, 'seatbelt': 2.0, 'it': 1.0, 'comfortable': 1.0, 'for': 1.0, 'back': 2.0, 'hips': 1.0, 'so': 1.0, 'them': 3.0, 'seat': 2.0, 'all': 2.0, 'to': 4.0, 'plug': 1.0, 'when': 1.0, 'am': 1.0, 'contantly': 1.0, 'again': 1.0, 'need': 1.0, 'finagle': 1.0, 'would': 1.0, 'something': 1.0}
Word element => {'well': 1.0, 'as': 1.0, 'kids': 1.0, 'buy': 1.0, 'in': 1.0, 'comfy': 1.0, 'great': 1.0, 'the': 2.0, 't': 1.0, 'durable': 1.0, 'this': 1.0, 'clean': 1.0, 'keep': 1.0, 'cup': 1.0, 'holder': 1.0, 'easy': 1.0, 'handy': 1.0, 'think': 1.0, 'twice': 1.0, 'don': 1.0, 'about': 1.0, 'for': 1.0, 'one': 1.0, 'to': 1.0, 'comes': 1.0}
Word element => {'use': 1.0, 'easy': 1.0, 'its': 1.0, 'as': 1.0, 'to': 2.0, 'definitely': 1.0, 'happy': 1.0, 'the': 2.0, 'recommend': 1.0, 'seat': 1.0, 'others': 1.0, 'with': 1.0, 'ripped': 1.0, 'washer': 1.0, 'though': 1.0, 'in': 1.0, 'cushin': 1.0, 'i': 1.0, 'would': 1.0}
Word element => {'very': 1.0, 'also': 1.0, 'pricing': 1.0, 'seats': 1.0, 'comparison': 1.0, 'other': 1.0, 'secured': 1.0, 'well': 1.0, 'is': 2.0, 'feel': 1.0, 'i': 1.0, 'like': 1.0, 'and': 5.0, 'car': 4.0, 'protected': 1.0, 'accident': 2.0, 'regular': 1.0, 'in': 4.0, 'adjusts': 1.0, 'first': 1.0, 'convertible': 1.0, 'use': 1.0, 'needing': 1.0, 'styling': 1.0, 'that': 3.0, 'after': 1.0, 'original': 1.0, 'liked': 1.0, 'doubt': 1.0, 'good': 1.0, 'her': 1.0, 'how': 1.0, 'because': 1.0, 'our': 2.0, 'seat': 3.0, 'to': 5.0, 'was': 2.0, 'wanted': 1.0, 'look': 1.0, 'the': 8.0, 'replace': 3.0, '2': 1.0, 'of': 1.0, 'there': 1.0, 'no': 1.0, 'being': 1.0, 'same': 1.0, 'infact': 1.0, 'growth': 1.0, 'idea': 1.0, 'teh': 1.0, 'one': 3.0, 'bought': 1.0, 'got': 1.0, '2nd': 1.0, 'it': 2.0, 'she': 2.0, 'a': 2.0, 'we': 4.0, 'could': 1.0, 'still': 1.0, 'makes': 1.0}
Word element => {'point': 1.0, '5': 1.0, 'limit': 1.0, 'harness': 1.0, 'weight': 1.0, 'high': 1.0, 'so': 1.0, 'rehab': 1.0, 'ortho': 1.0, 'an': 1.0, 'pediatric': 1.0, 'how': 1.0, 'am': 1.0, 'i': 2.0, 'affordable': 1.0, 'them': 1.0, 'works': 1.0, 'both': 1.0, 'love': 1.0, 'for': 5.0, 'unit': 1.0, 'it': 1.0, 'children': 1.0, 'nautilus': 1.0, 'seats': 1.0, '2yrs': 1.0, 'is': 3.0, 'car': 3.0, 'of': 2.0, 'grandparents': 1.0, 'purchased': 1.0, 'on': 1.0, '4': 1.0, 'have': 1.0, 'fit': 1.0, 'we': 1.0, 'family': 1.0, 'nurse': 1.0, 'ages': 1.0, 'that': 1.0, 'our': 1.0, '5yrs': 1.0, 'a': 2.0, 'the': 5.0, '2': 3.0, 'these': 1.0, 'great': 1.0}
Word element => {'keep': 1.0, 'recommend': 1.0, 'do': 1.0, 'grow': 1.0, 'room': 1.0, '3': 1.0, 'another': 1.0, 'giving': 1.0, 'strap': 2.0, 'which': 1.0, 'considering': 1.0, 'could': 1.0, '20': 1.0, 'that': 1.0, 'into': 1.0, 'car': 1.0, 'left': 1.0, 'however': 2.0, 'move': 1.0, 'outgrew': 1.0, 'or': 1.0, 'years': 1.0, 'don': 1.0, '49': 1.0, 'heights': 1.0, 'having': 1.0, 'plate': 1.0, 'point': 2.0, 'old': 1.0, 'purchased': 1.0, 'am': 1.0, 'securing': 1.0, 'just': 3.0, 'as': 1.0, 'i': 12.0, 'pounds': 2.0, 'stated': 1.0, 'been': 1.0, 'marathon': 1.0, 'have': 3.0, 'when': 3.0, 'avoid': 1.0, 'daughter': 3.0, 'bought': 1.0, '2': 1.0, 'locking': 1.0, 'most': 1.0, 'frontier85': 1.0, 'mode': 1.0, 'but': 1.0, 'so': 1.0, 'can': 1.0, 'use': 2.0, 'her': 4.0, 'shoulders': 2.0, 'very': 1.0, 'inches': 2.0, 'booster': 1.0, 'petite': 1.0, 'happy': 1.0, 'drawback': 1.0, 'with': 2.0, 'manual': 1.0, 'seat': 4.0, 'in': 3.0, 'to': 6.0, 'hoping': 1.0, 'this': 5.0, '53': 1.0, 'it': 5.0, 'was': 2.0, 't': 2.0, 'ago': 1.0, 'belt': 1.0, '5': 2.0, 'harness': 4.0, 'narrow': 1.0, 'only': 1.0, 'britax': 2.0, 'are': 2.0, '65': 1.0, '52': 1.0, 'like': 1.0, '17': 1.0, 'installed': 1.0, 'top': 3.0, 'height': 3.0, 'realize': 1.0, 'is': 4.0, 'year': 1.0, '8': 1.0, 'main': 1.0, 'tall': 1.0, 'and': 4.0, 'almost': 1.0, 'now': 2.0, 'above': 1.0, 'mind': 1.0, 'people': 1.0, 'we': 1.0, 'fine': 1.0, 'important': 1.0, 'latch': 1.0, 'safety': 1.0, 'the': 9.0, 'of': 3.0, 'a': 4.0, 'imagine': 1.0, 'my': 3.0, 'me': 1.0, 'always': 1.0, 'has': 2.0, 'properly': 1.0}
Word element => {'seat': 1.0, 'car': 1.0, 'another': 1.0, 'to': 1.0, 'have': 1.0, 'never': 1.0, 'will': 1.0, 'love': 1.0, 'it': 2.0, 'buy': 1.0, 'best': 1.0, 'purchase': 1.0, 'child': 1.0, 'how': 1.0, 'with': 1.0, 'my': 1.0, 'everlove': 1.0, 'grows': 1.0, 'and': 1.0}
Word element => {'no': 1.0, 'have': 1.0, 'car': 1.0, 'thing': 1.0, 'my': 2.0, 'is': 1.0, 'son': 1.0, 'latch': 1.0, 'only': 1.0, 'goodfeel': 1.0, 'it': 1.0, 'to': 1.0, 'looks': 1.0, 'easy': 1.0, 'use': 1.0, 'likes': 1.0, 'comfortablethe': 1.0}
Word element => {'booster': 1.0, 'well': 1.0, 'are': 1.0, 'they': 1.0, 'old': 1.0, 'year': 1.0, 'last': 2.0, 'is': 1.0, 'second': 1.0, 'with': 2.0, 'it': 2.0, 'and': 1.0, 'love': 1.0, 'for': 2.0, 'them': 1.0, 'boys': 2.0, 'the': 2.0, 'my': 1.0, 'both': 2.0, 'used': 2.0, 'was': 2.0, 'grows': 1.0, '3': 1.0, 'into': 1.0, 'been': 1.0, 'that': 1.0, 'graco': 1.0, 'nautilus': 1.0, 'until': 1.0, '1': 3.0, 'spend': 1.0, 'to': 2.0, 'our': 1.0, 'seat': 4.0, 'will': 2.0, 'have': 4.0, 'gotten': 1.0, 'ever': 1.0, 'buy': 1.0, 'this': 4.0, 'wish': 1.0, 'would': 1.0, 'of': 1.0, 'earlier': 1.0, 'so': 1.0, 'didn': 1.0, 'but': 1.0, 'money': 1.0, 'in': 1.0, 'age': 1.0, 'could': 1.0, 't': 1.0, 'we': 1.0, 'a': 3.0, 'car': 2.0, 'from': 1.0, 'i': 3.0, '4': 1.0}
Word element => {'forward': 1.0, 'issleep': 1.0, 'is': 2.0, 'loose': 1.0, 'head': 2.0, 'too': 1.0, 'excellent': 1.0, 'chair': 1.0, 's': 1.0, 'comfortable': 1.0, 'very': 1.0, 'and': 1.0, 'only': 1.0, 'baby': 2.0, 'far': 1.0, 'tilted': 1.0, 'while': 1.0, 'safe': 1.0, 'complaint': 1.0, 'the': 3.0}
Word element => {'dryer': 1.0, 'no': 1.0, 'cycle': 1.0, 'washer': 1.0, 'the': 1.0, 'in': 1.0, 'wash': 1.0, 'i': 1.0, 'machine': 1.0, 'to': 1.0, 'be': 2.0, 'it': 1.0, 'well': 1.0, 's': 1.0, 'can': 2.0, 'size': 1.0, 'and': 1.0, 'as': 1.0, 'up': 1.0, 'adjusted': 1.0, 'sturdy': 1.0, 'your': 1.0, 'designed': 1.0, 'they': 1.0, 'light': 1.0, 'grow': 1.0, 'fabric': 1.0, 'removed': 1.0, 'for': 1.0, 'easy': 1.0, 'them': 1.0, 'child': 1.0, 'covers': 1.0, 'clean': 1.0}
Word element => {'back': 1.0, 'old': 1.0, 'point': 1.0, 'age': 1.0, 'perfect': 1.0, 'this': 2.0, 'to': 6.0, 'in': 2.0, 'seat': 4.0, 'our': 2.0, 'low': 1.0, 'continue': 1.0, 'harness': 3.0, 'and': 4.0, 'tall': 1.0, 'be': 2.0, 'would': 1.0, 'position': 1.0, 'each': 1.0, 'had': 1.0, 'purchased': 1.0, 'grandma': 1.0, 'turn': 1.0, 'still': 2.0, 'possible': 1.0, 'years': 1.0, 'about': 1.0, 'when': 3.0, 'road': 1.0, 'britax': 1.0, 'child': 1.0, 'looking': 1.0, 'buy': 1.0, 'very': 1.0, 'a': 3.0, 'then': 1.0, 'we': 4.0, 'for': 8.0, 'correct': 1.0, 'pt': 2.0, 'is': 3.0, 'at': 1.0, 'since': 1.0, 'with': 1.0, 'love': 1.0, 'he': 4.0, 'adjust': 1.0, '5': 4.0, 'neck': 1.0, 'carseat': 2.0, 'his': 3.0, 'marathon': 1.0, 'been': 2.0, 'that': 2.0, 'three': 2.0, 'into': 1.0, 'were': 1.0, 'place': 1.0, 'asleep': 1.0, 'which': 1.0, 'safest': 1.0, 'way': 1.0, 'has': 2.0, 'cars': 1.0, 'trips': 1.0, 'them': 1.0, 'car': 1.0, 'easy': 1.0, 'height': 1.0, 'outgrows': 1.0, 'outgrew': 1.0, 'seatbelt': 1.0, 'him': 2.0, 'it': 3.0, 'grow': 1.0, 'guides': 1.0, 'will': 3.0, 'us': 1.0, 'also': 1.0, 'belt': 1.0, 'headrest': 2.0, 'so': 1.0, 'does': 1.0, 'not': 1.0, 'now': 1.0, 'rub': 1.0, 'as': 2.0, 'falls': 1.0, 'have': 1.0, 'long': 2.0, 'on': 1.0, 'these': 1.0, 'too': 1.0, 'one': 1.0, 'last': 1.0, 'need': 1.0, 'of': 3.0, 'the': 10.0, 'convert': 1.0, 'booster': 1.0, 'highback': 1.0}
Word element => {'too': 1.0, 'buckle': 1.0, 'can': 1.0, 'still': 1.0, 's': 1.0, 'wife': 1.0, 'my': 1.0, 'use': 1.0, 'months': 1.0, 'seat': 2.0, 'of': 1.0, 'up': 2.0, 'belt': 2.0, 'soft': 1.0, 'me': 1.0, 'buckling': 1.0, 'and': 1.0, 'works': 1.0, 'problem': 1.0, 'which': 1.0, 'noticed': 1.0, 'beautiful': 3.0, 'i': 1.0, 'a': 1.0, 'looks': 1.0, 'is': 2.0, 'for': 1.0, 'love': 1.0, 'seating': 1.0, 'product': 1.0, 'hard': 2.0, 'only': 1.0, 'it': 3.0, 'this': 1.0, 'easy': 1.0, 'after': 1.0, 'installation': 1.0, 'babies': 1.0, 't': 1.0, 'the': 3.0, 'that': 1.0, 'three': 1.0, 'little': 1.0}
Word element => {'ever': 1.0, 've': 1.0, 'seat': 1.0, 'car': 1.0, 'the': 1.0, 'it': 3.0, 'of': 1.0, 'a': 2.0, 'covers': 1.0, 'that': 1.0, 'remember': 1.0, 'we': 2.0, 'already': 1.0, 'but': 1.0, 'far': 1.0, 'expensive': 1.0, 'and': 2.0, 'owned': 1.0, 'ranges': 1.0, 'is': 1.0, 'sizes': 1.0, 'wide': 1.0, 'have': 1.0, 'been': 1.0, 'by': 1.0, 'using': 1.0, 'for': 1.0, 'best': 1.0, 'range': 1.0, 'year': 1.0}
Word element => {'ff': 1.0, 'only': 1.0, 'baby': 1.0, 'buying': 1.0, 'about': 1.0, 'enough': 2.0, 'say': 1.0, 't': 1.0, 'system': 1.0, 'latch': 1.0, 'convenient': 1.0, 'easy': 1.0, 'super': 1.0, 'stashing': 1.0, 'sure': 1.0, 'toys': 1.0, 'storing': 1.0, 'was': 1.0, 'thinks': 1.0, 'installation': 1.0, 'cubbies': 1.0, 'little': 1.0, 'also': 1.0, 'are': 3.0, 'britax': 3.0, 'since': 1.0, '3': 1.0, 'make': 1.0, 'on': 1.0, 'need': 1.0, 'last': 1.0, 'more': 1.0, 'once': 1.0, 'comes': 1.0, 'that': 1.0, 'loves': 3.0, 'another': 1.0, 'extra': 1.0, 'boy': 1.0, 'this': 3.0, 'carseats': 1.0, '6': 1.0, 'intended': 1.0, 'old': 1.0, 'is': 7.0, 'nautilus': 3.0, 'snug': 1.0, 'll': 1.0, 'bro': 1.0, 'carseat': 3.0, 'happier': 1.0, 'his': 2.0, 'for': 4.0, 'he': 4.0, 'love': 1.0, 'girl': 1.0, 'where': 1.0, 'decided': 1.0, 'to': 3.0, 'as': 1.0, 'ever': 1.0, 'all': 2.0, 'turned': 1.0, 'ride': 1.0, 'just': 2.0, 'there': 2.0, 'give': 1.0, 'not': 2.0, 'graco': 2.0, 'daughter': 1.0, 'booster': 1.0, 'my': 4.0, 'the': 11.0, 'we': 3.0, 's': 2.0, 'a': 4.0, 'get': 1.0, 'son': 3.0, 'pay': 1.0, 'leaned': 1.0, 'big': 2.0, 'until': 1.0, 'marathon': 2.0, 'tell': 1.0, 'so': 3.0, 'can': 2.0, 'but': 2.0, 'her': 2.0, 'use': 1.0, 'mommy': 1.0, 'age': 1.0, 'm': 1.0, 'seat': 1.0, 'in': 5.0, 'and': 6.0, 'brilliant': 1.0, 'instead': 1.0, 'even': 1.0, 'though': 1.0, 'spendy': 1.0, 'him': 1.0, '9': 1.0, 'it': 4.0, 'pictures': 1.0, 'much': 1.0, 'with': 4.0, 'than': 1.0, 'built': 2.0, 'clip': 1.0, 'good': 2.0, 'which': 2.0, 'too': 1.0, 'one': 2.0, 'ones': 1.0, 'things': 2.0, 'you': 1.0, 'what': 1.0, 'when': 1.0, 'years': 2.0, 'ours': 1.0, 'putting': 1.0, 'cupholder': 2.0, 'broke': 1.0, 'i': 2.0, 'secure': 1.0, 'over': 1.0, 'hard': 1.0, 'purpose': 1.0, 'fun': 1.0, 'outgrew': 1.0, 'from': 1.0}
Word element => {'them': 1.0, 'seat': 1.0, 'with': 1.0, 'is': 1.0, 'already': 1.0, 'for': 2.0, 'my': 2.0, 'grows': 1.0, 'and': 1.0, 'granddaughter': 1.0, 'one': 2.0, 'i': 1.0, 'love': 1.0, 'it': 1.0, 'grandson': 1.0, 'have': 1.0, 'this': 2.0}
Word element => {'holding': 1.0, 'hard': 1.0, 'it': 3.0, 'bottom': 1.0, 'there': 1.0, 'little': 1.0, 'a': 3.0, 'just': 1.0, 'like': 1.0, 'holder': 1.0, 'carseat': 1.0, 'does': 1.0, 'used': 1.0, 'is': 3.0, 'more': 1.0, 'tilt': 1.0, 'back': 1.0, 'overall': 1.0, 'buckle': 1.0, 'in': 2.0, 'this': 1.0, 'wish': 2.0, 'i': 4.0, 'fasten': 1.0, 'cloth': 1.0, 'good': 1.0, 'or': 1.0, 'cup': 1.0, 'glue': 2.0, 'to': 4.0, 'was': 1.0, 'and': 1.0, 'snap': 1.0, 'cover': 1.0, 'not': 1.0, 'stay': 1.0, 'far': 1.0, 'the': 4.0, 'place': 2.0, 'would': 1.0, 'something': 1.0, 'that': 1.0, 'keep': 1.0, 'hot': 1.0, 'gun': 1.0, 'strap': 1.0, 'bit': 1.0, 'so': 1.0}
Word element => {'until': 1.0, 'use': 1.0, 'can': 1.0, 'and': 1.0, 'baby': 1.0, 'this': 1.0, 'for': 1.0, 'product': 1.0, 'exactly': 1.0, 'we': 2.0, 'expected': 1.0, 'continue': 1.0, 'enough': 1.0, 'school': 1.0, 'what': 1.0, 'age': 1.0, 'has': 1.0, 'good': 1.0, 'my': 1.0}
Word element => {'about': 1.0, 'car': 1.0, 'of': 1.0, 'out': 1.0, 'nice': 1.0, 'install': 1.0, 'machine': 1.0, 'washing': 1.0, 'in': 1.0, 'my': 1.0, 'cup': 1.0, 'the': 3.0, 't': 3.0, 'and': 2.0, 'hard': 2.0, 'it': 6.0, 'just': 2.0, 'i': 3.0, 'cloth': 1.0, 'love': 1.0, 'for': 1.0, 'son': 1.0, 'open': 1.0, 'things': 1.0, 'clasps': 1.0, 'do': 1.0, 'its': 1.0, 'much': 1.0, 'say': 1.0, 'comes': 1.0, 'is': 3.0, 'this': 2.0, 'functional': 1.0, 'that': 3.0, 'cute': 1.0, 'like': 1.0, 'himself': 1.0, 'can': 3.0, 'but': 1.0, 'your': 1.0, 'put': 1.0, 'itsn': 1.0, 'an': 1.0, 'own': 1.0, 'take': 1.0, 'pretty': 1.0, 'adult': 1.0, 'also': 1.0, 'has': 1.0, 'get': 1.0, 'easy': 2.0, 'clean': 1.0, 'holder': 1.0, 'to': 3.0, 'seat': 2.0, 'all': 1.0, 'enough': 2.0, 'off': 1.0, 'so': 1.0, 'you': 1.0}
Word element => {'they': 1.0, 'area': 1.0, 'cars': 1.0, 'many': 1.0, 'people': 1.0, 'seats': 1.0, 'these': 1.0, 'due': 1.0, '50': 1.0, 'weighs': 1.0, 'up': 1.0, 'used': 2.0, 'be': 2.0, 'but': 1.0, 'can': 2.0, 'though': 1.0, 'harnesses': 1.0, 'will': 1.0, 'very': 2.0, 'that': 1.0, '65': 1.0, 'made': 1.0, 'through': 1.0, 'fits': 1.0, 'straps': 1.0, 'belt': 2.0, 'was': 3.0, 'harness': 1.0, 'its': 1.0, 'now': 1.0, 'a': 1.0, 's': 2.0, 'hole': 1.0, 'we': 4.0, 'younger': 1.0, 'old': 2.0, 'had': 1.0, 'purchased': 1.0, 'this': 1.0, 'because': 1.0, 'sister': 1.0, 'convenient': 1.0, 'with': 2.0, 'car': 2.0, 'switch': 1.0, 'inherit': 1.0, 'addition': 1.0, 'sturdy': 1.0, 'ready': 1.0, 'back': 1.0, 'all': 1.0, 'grow': 1.0, 'seat': 4.0, 'to': 5.0, 'our': 5.0, 'oldest': 1.0, 'for': 3.0, 'bought': 2.0, 'one': 1.0, 'body': 1.0, 'using': 1.0, 'daughter': 4.0, 'when': 2.0, 'even': 1.0, 'safety': 1.0, 'her': 3.0, 'of': 2.0, 'pounds': 2.0, 'i': 2.0, 'ratings': 1.0, 'and': 5.0, 'popular': 1.0, 'five': 1.0, 'versatility': 1.0, 'three': 1.0, 'length': 1.0, 'in': 2.0, 'see': 1.0, 'currently': 1.0, 'about': 1.0, 'price': 1.0, 'years': 2.0, 'right': 2.0, 'the': 6.0, 'without': 1.0, 'it': 5.0, 'she': 1.0, 'around': 2.0, 'is': 2.0, 'are': 2.0}
Word element => {'keep': 1.0, 'worked': 1.0, 'back': 1.0, 'weight': 1.0, 'taking': 1.0, '3': 1.0, 'being': 1.0, 'possibly': 1.0, 'instructions': 1.0, '3yrs': 1.0, 'box': 1.0, 'opened': 1.0, 'when': 1.0, 'however': 1.0, 'work': 1.0, 'won': 1.0, 'more': 1.0, 'grows': 1.0, 'into': 1.0, 'definitely': 2.0, 'reviewers': 1.0, 'as': 1.0, 'with': 1.0, 'case': 1.0, 'wouldn': 1.0, 'this': 1.0, 'strap': 3.0, 'here': 1.0, 'we': 3.0, 'reviews': 1.0, 'several': 1.0, 'on': 3.0, 'read': 1.0, 'had': 3.0, 'purchased': 1.0, 'much': 2.0, 'after': 1.0, 'from': 1.0, 'model': 1.0, 'flaw': 1.0, 'display': 1.0, 'because': 1.0, 'posed': 1.0, 'that': 2.0, 'amazon': 1.0, 'been': 1.0, 'crotch': 2.0, 'say': 1.0, 'above': 2.0, 'without': 1.0, 'used': 1.0, 'decided': 1.0, 'safety': 1.0, 'brand': 1.0, 'old': 2.0, 'the': 18.0, 'of': 4.0, 'first': 1.0, 'britax': 3.0, 'imagine': 1.0, 'small': 1.0, 'added': 1.0, 'a': 9.0, 't': 4.0, 'maybe': 1.0, 's': 3.0, 'month': 1.0, 'she': 8.0, 'it': 9.0, 'can': 1.0, 'so': 3.0, 'could': 2.0, 'will': 2.0, 'us': 2.0, 'also': 1.0, 'but': 5.0, '2': 3.0, 'height': 1.0, 'my': 5.0, 'hoped': 1.0, 'carseat': 3.0, 'stocky': 1.0, 'in': 4.0, 'seat': 4.0, 'to': 5.0, 'debate': 1.0, 'armrests': 1.0, 'name': 1.0, 'age': 1.0, '8': 1.0, 'have': 1.0, 'just': 1.0, 'needed': 1.0, 'currently': 1.0, 'at': 2.0, 'is': 4.0, 'look': 1.0, 'isn': 1.0, 'harness': 2.0, 'now': 1.0, 'would': 1.0, 'weeks': 1.0, 'love': 1.0, '2yrs': 1.0, 'for': 5.0, 'using': 1.0, 'rides': 1.0, 'lot': 1.0, 'features': 2.0, 'digging': 1.0, 'toddler': 2.0, 'price': 2.0, 'year': 1.0, 're': 1.0, 'girl': 1.0, 'average': 3.0, 'i': 10.0, 'cupholder': 1.0, 'and': 3.0, 'its': 1.0, 'comfy': 1.0, 'daughter': 2.0, 'foam': 1.0, 'seating': 1.0, 'another': 1.0, '5pt': 2.0, 'other': 2.0, 'all': 2.0, 'an': 1.0, 'really': 2.0, 'excellent': 1.0, 'problem': 2.0, 'was': 2.0, 'huge': 1.0, 'than': 1.0, 'kind': 1.0, 'legs': 1.0, 'get': 1.0, 'built': 1.0, 'be': 4.0, 'awesome': 1.0, 'about': 1.0, 'steep': 1.0, 'weighs': 1.0, '33lbs': 1.0, 'stated': 3.0, 'little': 1.0, 'wanted': 1.0, 'use': 1.0, 'her': 2.0, 'able': 2.0, 'if': 1.0, 'bigger': 1.0, 'stay': 1.0, 'still': 1.0, 'big': 1.0, 'off': 1.0, 'boulevard': 1.0, 'has': 3.0, 'target': 1.0, 'went': 1.0}
Word element => {'child': 1.0, 'your': 1.0, 'grow': 1.0, 'booster': 1.0, 'solid': 1.0, 'is': 1.0, 'with': 1.0, 'it': 1.0, 'car': 1.0, 'old': 1.0, 'recall': 1.0, 'notified': 1.0, 'are': 1.0, 'but': 2.0, 'easy': 1.0, 'buckles': 1.0, 'a': 3.0, 'was': 1.0, 'had': 1.0, 'can': 1.0, 'right': 1.0, 'click': 1.0, 'that': 2.0, 'our': 1.0, 'good': 1.0, 'into': 1.0, 'seat': 3.0, 'short': 1.0, 'away': 1.0, 'and': 1.0, 'as': 2.0, 'little': 1.0, 'aren': 1.0, 'the': 2.0, 't': 1.0}
Word element => {'seat': 1.0, 'car': 1.0, 'rear': 1.0, 'like': 1.0, 'facing': 1.0, 'she': 3.0, '14': 1.0, 'months': 1.0, 'to': 1.0, 'turned': 1.0, 'and': 2.0, 'travel': 1.0, 'my': 1.0, 'daughter': 1.0, 'when': 1.0, 'i': 1.0, 'every': 1.0, 'got': 1.0, 'loved': 1.0, 't': 1.0, 'this': 1.0, 'it': 1.0, 'in': 1.0, 'seems': 1.0, 'sweat': 1.0, 'comfortably': 1.0, 'used': 1.0, 'her': 2.0, 'time': 1.0, 'we': 1.0, 'doesn': 1.0}
Word element => {'install': 1.0, 'space': 1.0, 'to': 2.0, 'easy': 2.0, 'fits': 2.0, 'rests': 1.0, 'holders': 1.0, '3': 1.0, 'buckle': 1.0, 'in': 1.0, 'van': 1.0, 'yo': 1.0, 'for': 1.0, 'love': 1.0, 'our': 2.0, 'great': 2.0, 'the': 2.0, 'cup': 1.0, 'toys': 1.0, 'comfy': 1.0, 'and': 1.0, 'arm': 1.0, 'extra': 1.0, 'little': 1.0}
Word element => {'baby': 1.0, 'another': 1.0, 'that': 1.0, '2nd': 1.0, 'so': 1.0, 'it': 1.0, 'and': 1.0, 'child': 1.0, 'one': 1.0, 'i': 2.0, 'bought': 2.0, 'my': 2.0, 'loved': 1.0, 'this': 1.0, 'car': 1.0, '2': 1.0, 'seat': 1.0, 'ago': 1.0, 'years': 1.0, 'for': 2.0, 'much': 1.0, 'first': 1.0}
Word element => {'car': 1.0, 'in': 1.0, 'easy': 1.0, 'seat': 1.0, 'cup': 1.0, 'a': 1.0, 'and': 1.0, 'up': 1.0, 'like': 1.0, 'to': 2.0, 'be': 1.0, 'markers': 1.0, 'eventually': 1.0, 'used': 1.0, '100lbs': 1.0, 'booster': 1.0, 'are': 1.0, 'can': 1.0, 'i': 1.0, 'good': 1.0, 'or': 1.0, 'the': 1.0, '2': 1.0, 'put': 1.0, 'holders': 1.0, 'crayons': 1.0, 'one': 1.0, 'for': 1.0}
Word element => {'sturdy': 1.0, 'safe': 1.0, 'very': 1.0, 'son': 1.0, 'ones': 1.0, 'several': 1.0, 'couple': 1.0, 'sippy': 1.0, 'not': 1.0, 'holder': 1.0, 'cup': 1.0, 'does': 1.0, 'having': 1.0, 'be': 1.0, 'hold': 1.0, 'body': 1.0, 'able': 1.0, 'of': 1.0, 'once': 2.0, 'that': 2.0, 'old': 1.0, 'support': 1.0, 'knew': 1.0, 'infant': 1.0, 'feel': 1.0, 'install': 1.0, 'so': 1.0, 'however': 1.0, 'graco': 1.0, 'mini': 1.0, 'love': 1.0, 'where': 1.0, 'product': 1.0, 'but': 1.0, 'most': 1.0, 'have': 4.0, 'based': 1.0, 'this': 1.0, 'remove': 1.0, 'month': 1.0, 'it': 7.0, 'hard': 1.0, '13': 1.0, 'at': 1.0, 'thinking': 1.0, 'i': 10.0, 'bought': 1.0, 'one': 1.0, 'tightly': 1.0, 'fact': 1.0, 'my': 2.0, 'tight': 2.0, 'around': 1.0, 'holds': 1.0, 'is': 4.0, 'the': 11.0, 'm': 2.0, 'price': 1.0, 'best': 1.0, 'reviews': 1.0, 'rely': 1.0, 'a': 4.0, 'we': 2.0, 'could': 1.0, 's': 3.0, 'easier': 1.0, 'has': 1.0, 'frustrations': 1.0, 'on': 3.0, 'think': 1.0, 'new': 1.0, 'enough': 3.0, 'reasonable': 1.0, 'van': 1.0, 'and': 4.0, 'cups': 1.0, 'all': 1.0, 'seat': 4.0, 'to': 3.0, 'trouble': 1.0, 'in': 3.0, 'will': 1.0, 'secure': 2.0, 'also': 1.0, 'pulling': 1.0, 'do': 1.0, 'only': 1.0, 'harness': 2.0}
Word element => {'friends': 1.0, 'family': 1.0, 'my': 1.0, 'recommend': 1.0, 'would': 1.0, 'need': 1.0, 'or': 1.0, 'on': 1.0, 'you': 1.0, 'if': 1.0, 'especially': 1.0, 'budget': 1.0, 'cheaper': 1.0, 'one': 2.0, 'this': 2.0, 'both': 1.0, 'money': 1.0, 'but': 2.0, 're': 1.0, 'placed': 1.0, 'for': 1.0, 'fit': 1.0, 'had': 1.0, 'base': 1.0, 'fine': 1.0, 'more': 1.0, 'is': 3.0, 'much': 1.0, 'works': 2.0, 'it': 6.0, 'with': 1.0, 'a': 4.0, 'we': 3.0, 'little': 1.0, 'he': 1.0, 'adjust': 2.0, 'deal': 1.0, 'asleep': 1.0, 'the': 4.0, 'mo': 1.0, 'car': 4.0, 'in': 3.0, 'buckle': 1.0, 'sports': 1.0, 'like': 1.0, 'to': 4.0, 'seat': 3.0, 'our': 2.0, 'seats': 1.0, 'bucket': 1.0, 'easy': 1.0, 'than': 1.0, 'because': 1.0, '14': 1.0, 'while': 1.0, 'son': 1.0, 'be': 1.0, 'great': 2.0, 'comfortable': 1.0, 'straps': 1.0, 'always': 1.0, 'britax': 1.0, 'riding': 1.0, 'falls': 1.0, 'must': 1.0, 'have': 1.0, 'and': 4.0, 'too': 1.0, 'i': 2.0, 'them': 1.0}
Word element => {'car': 1.0, 'other': 1.0, 'amazon': 1.0, 'off': 1.0, 'ordering': 1.0, 'years': 1.0, 'yesh': 1.0, 'grins': 1.0, 'comfy': 1.0, 'if': 1.0, 'be': 1.0, 'him': 1.0, 'have': 2.0, 'his': 1.0, 'in': 1.0, 'sit': 1.0, 'was': 1.0, 'he': 3.0, '44': 1.0, 'times': 1.0, 'lbs': 1.0, 'different': 1.0, 'went': 1.0, 'stores': 1.0, 'another': 1.0, 'my': 2.0, 'it': 2.0, 'first': 1.0, 'one': 1.0, 'bought': 2.0, 'two': 2.0, 'i': 10.0, 'will': 1.0, 'also': 1.0, 'wish': 1.0, 'this': 3.0, 'perfect': 1.0, 'inches': 1.0, 'read': 1.0, 'several': 1.0, 'about': 1.0, 'outweigh': 1.0, 'to': 3.0, 'seat': 4.0, 'says': 1.0, 'just': 1.0, 'every': 1.0, 'for': 2.0, 'comfortably': 1.0, 'review': 1.0, 'out': 1.0, 'wasn': 2.0, 'find': 1.0, 'before': 1.0, 'still': 1.0, 'son': 2.0, 'test': 1.0, 'the': 4.0, 'ago': 1.0, 'going': 1.0, 'we': 1.0, 'could': 1.0, 't': 2.0, 'sure': 2.0, '2': 1.0, 'but': 2.0, 'reviews': 1.0, 'anyway': 1.0, 'bad': 1.0, 'so': 1.0, 'did': 1.0, 'asked': 1.0, 'is': 3.0, 'on': 1.0, '3': 1.0, 'great': 1.0, '1': 1.0, 'tall': 1.0, 'and': 4.0, 'would': 1.0, '43': 1.0}
Word element => {'in': 1.0, 're': 1.0, 'when': 1.0, 'him': 2.0, 'not': 2.0, 'because': 1.0, 'just': 1.0, 'm': 1.0, 'open': 1.0, 'seat': 1.0, 'as': 2.0, 'to': 2.0, 'i': 2.0, 'slips': 1.0, 'have': 2.0, 'doesn': 1.0, 'uncomfortable': 1.0, 'under': 1.0, 'son': 1.0, 'middle': 1.0, 'my': 3.0, 'so': 1.0, 'smaller': 1.0, 'time': 1.0, 'button': 1.0, 'sure': 1.0, 'husband': 1.0, 'issue': 1.0, 'getting': 2.0, 'tough': 1.0, 'and': 1.0, 'much': 1.0, 'if': 1.0, 'it': 1.0, 'we': 1.0, 't': 1.0, 'a': 1.0, 's': 1.0, 'the': 4.0, 'hands': 1.0, 'are': 1.0, 'or': 1.0, 'latch': 1.0, 'portion': 2.0, 'also': 1.0, 'seems': 1.0, 'strong': 1.0, 'on': 1.0, 'for': 1.0, 'long': 1.0, 'trips': 1.0, 'bottom': 1.0, 'sit': 1.0, 'always': 1.0}
Word element => {'don': 1.0, 'kids': 1.0, 'since': 1.0, 'husbands': 1.0, 'graco': 1.0, 'use': 1.0, 'other': 1.0, 'most': 1.0, 'but': 2.0, 'than': 1.0, 'sized': 1.0, 'brands': 1.0, 'question': 1.0, 'less': 1.0, 'prefer': 1.0, 'expensive': 1.0, 'for': 5.0, 'his': 1.0, 'year': 2.0, 'getting': 1.0, 'did': 1.0, 'really': 1.0, 'significantly': 1.0, 'felt': 1.0, 'it': 4.0, 'another': 1.0, 'tight': 1.0, 'a': 3.0, 'fit': 1.0, 't': 2.0, 'decided': 1.0, 'triangle': 1.0, 'also': 1.0, 'will': 1.0, 'and': 2.0, '50': 1.0, 'research': 1.0, 'in': 6.0, 'seat': 4.0, 'to': 2.0, 'as': 4.0, 'tether': 2.0, 'this': 4.0, 'holders': 1.0, 'he': 4.0, 'frontier': 2.0, 'one': 2.0, 'lot': 1.0, 'tall': 1.0, 'main': 1.0, 'shaped': 1.0, 'car': 2.0, 'own': 1.0, 'cup': 1.0, '4': 2.0, 'roundabout': 1.0, 'i': 8.0, 'the': 12.0, 'of': 3.0, 'britax': 5.0, 'strap': 1.0, 'average': 1.0, 'old': 2.0, 'point': 2.0, 'wanted': 1.0, 'were': 1.0, 'out': 1.0, '5': 2.0, 'only': 2.0, 'ride': 1.0, 'went': 1.0, 'was': 3.0, 'lbs': 1.0, 'frequently': 1.0, 'want': 1.0, 'harness': 2.0, 'unbuckle': 1.0, 'on': 1.0, 'long': 1.0, 'at': 1.0, 'is': 5.0, 'comfortable': 2.0, 'feel': 1.0, 'not': 1.0, 'my': 5.0, 'me': 1.0, 'easy': 1.0, 'buckle': 1.0, 'complaint': 1.0, 'with': 1.0, 'because': 3.0, 'that': 2.0, 'didn': 1.0, 'got': 1.0, 'complaints': 1.0, 'rather': 1.0, 'like': 1.0, 'there': 1.0, 'top': 1.0, 'no': 1.0, 'real': 1.0, 'still': 1.0, '45': 1.0, 'just': 1.0, 'purchased': 1.0}
Word element => {'lol': 1.0, 'boy': 1.0, 'a': 2.0, 'to': 1.0, 'happy': 1.0, 'for': 1.0, 'my': 1.0, 'like': 1.0, 'and': 1.0, 'big': 1.0, 'holder': 1.0, 'cup': 1.0, 'he': 2.0, 'have': 1.0, 'this': 1.0, 'grandson': 1.0, 'loves': 1.0, 'it': 1.0, 'was': 1.0, 'got': 1.0, 'so': 1.0}
Word element => {'this': 1.0, 'highly': 1.0, 'strapped': 1.0, 'is': 1.0, 'holder': 1.0, 'reasons': 1.0, 'secondary': 1.0, 'than': 1.0, 'rather': 1.0, 'loves': 1.0, 'primary': 1.0, 'into': 2.0, 'together': 1.0, 'put': 1.0, 'get': 1.0, 'easy': 2.0, 'price': 1.0, 'looking': 1.0, 'were': 1.0, 'when': 1.0, 'graco': 2.0, 'marathon': 2.0, 'recommend': 1.0, 'was': 2.0, 'with': 1.0, 'first': 1.0, 'it': 5.0, 'convertible': 2.0, 'purchased': 1.0, 'how': 1.0, 'extremely': 1.0, 'pleased': 1.0, 'britax': 1.0, 'are': 2.0, 'the': 6.0, 's': 1.0, 'a': 5.0, 'we': 7.0, 't': 1.0, 'my': 2.0, 'using': 1.0, 'which': 2.0, 'need': 1.0, 'loved': 1.0, 'nautilus': 2.0, 'install': 1.0, 'great': 1.0, 'spend': 1.0, 'car': 4.0, 'sons': 1.0, 'and': 4.0, 'love': 1.0, 'for': 3.0, 'second': 2.0, 'want': 1.0, 'two': 1.0, 'i': 2.0, 'didn': 1.0, 'our': 2.0, 'to': 3.0, 'seat': 4.0, 'as': 2.0, 'range': 1.0, 'son': 3.0, 'much': 1.0, 'cup': 1.0, 'or': 1.0, 'good': 1.0, 'would': 1.0, 'weight': 1.0, 'have': 1.0, 'has': 1.0, 'height': 1.0}
Word element => {'would': 1.0, 'clean': 1.0, 'so': 1.0, 'could': 1.0, 'easily': 1.0, 'apart': 1.0, 'up': 1.0, 'washed': 1.0, 'completely': 1.0, 'vomited': 1.0, 'nooks': 1.0, 'got': 1.0, 'recommend': 1.0, 'certainly': 1.0, 'she': 1.0, 'we': 2.0, 'sick': 1.0, 'fact': 1.0, 'and': 4.0, 'seat': 1.0, 'has': 1.0, 'well': 1.0, 'a': 1.0, 'another': 1.0, 'been': 1.0, 'car': 1.0, 'it': 2.0, 'this': 1.0, 'great': 1.0, 'the': 3.0, 't': 1.0, 'fabric': 1.0, 'all': 2.0, 'have': 1.0, 'over': 1.0, 'won': 1.0, 'i': 1.0, 'buy': 1.0, 'comes': 1.0, 'to': 1.0, 'crannies': 1.0, 'love': 1.0, 'one': 1.0, 'for': 1.0, 'daughter': 1.0, 'that': 1.0, 'our': 1.0}
Word element => {'takes': 1.0, 'others': 1.0, 'of': 1.0, 'some': 1.0, 'but': 1.0, 'than': 1.0, 'release': 1.0, 'few': 1.0, 'little': 1.0, 'only': 1.0, 'quality': 1.0, 'latch': 1.0, 'more': 1.0, 'seconds': 1.0, 'the': 2.0, 'a': 2.0, 'tougher': 1.0, 'hooks': 1.0, 'great': 1.0, 'can': 1.0, 'be': 1.0, 'to': 1.0}
Word element => {'bought': 1.0, 'yet': 1.0, 'drink': 1.0, 'have': 1.0, 'clean': 1.0, 'is': 1.0, 'remove': 1.0, 'covers': 1.0, 'it': 1.0, 'easy': 1.0, 'how': 1.0, 'safety': 1.0, 'their': 1.0, 'comfortable': 1.0, 'roomy': 1.0, 'chairs': 1.0, 'happier': 1.0, 'be': 1.0, 'for': 1.0, 'love': 4.0, 'impact': 1.0, 'side': 1.0, 'wondering': 1.0, 'wanted': 1.0, 'children': 1.0, 'size': 1.0, 'by': 1.0, 'needed': 1.0, 'other': 1.0, 'of': 2.0, 'them': 3.0, 'haven': 1.0, 'grown': 1.0, 'the': 5.0, 'concerned': 1.0, 'heavy': 1.0, 'already': 1.0, 'these': 3.0, 'ago': 1.0, 'a': 2.0, 'could': 1.0, 'we': 2.0, 't': 2.0, 'they': 2.0, 'that': 1.0, 'next': 1.0, 'wish': 1.0, 'kids': 1.0, 'this': 1.0, 'something': 1.0, 'decathalons': 1.0, 'had': 3.0, 'spill': 1.0, 'was': 2.0, 'year': 2.0, 'assumed': 1.0, 'to': 4.0, 'as': 2.0, 'narrowed': 1.0, 'but': 2.0, 'attempted': 1.0, '4': 1.0, 'i': 8.0, 'am': 2.0, 'twins': 1.0, 'fact': 1.0, 'my': 4.0, 'high': 1.0, 'only': 2.0, 'end': 1.0, 'britax': 1.0, 'are': 2.0, 'search': 1.0, 'not': 4.0, 'and': 4.0, 'tall': 1.0, 'through': 1.0, 'years': 1.0, 'buy': 1.0, 'reluctant': 1.0, 'old': 1.0, 'brand': 1.0, 'out': 1.0, 'wasn': 1.0, 'take': 1.0, 'safe': 1.0, 'because': 1.0, 'brands': 1.0}
Word element => {'pleased': 1.0, 'shop': 1.0, 'have': 1.0, 'i': 1.0, 'that': 1.0, 'for': 2.0, 'love': 1.0, 'will': 1.0, 'also': 1.0, 'his': 1.0, 'of': 1.0, 'interest': 1.0, 'old': 1.0, '14': 1.0, 'son': 1.0, 'my': 1.0, 'driving': 1.0, 'are': 1.0, 'idea': 1.0, 'you': 1.0, 'while': 1.0, 'likely': 1.0, 'themselves': 1.0, 'opening': 1.0, 'master': 1.0, 'kids': 1.0, 'with': 1.0, 'red': 2.0, 'years': 1.0, 'price': 1.0, 'several': 1.0, 'about': 2.0, 'a': 2.0, 'fast': 1.0, 'weekes': 1.0, 'car': 2.0, 'button': 3.0, 'comlplained': 1.0, 'step': 1.0, 'plus': 1.0, 'up': 1.0, 'at': 1.0, 'is': 3.0, 'the': 7.0, 'whoever': 1.0, 'really': 2.0, 'very': 1.0, 'functionality': 1.0, 'and': 4.0, 'too': 1.0, 'tough': 1.0, 'by': 1.0, 'good': 1.0, 'holder': 1.0, 'new': 1.0, 'would': 2.0, 'cup': 1.0, 'great': 1.0, 'big': 3.0, 'open': 2.0, 'use': 1.0, 'easy': 2.0, 'first': 1.0, 'month': 1.0, 'seatbelt': 1.0, 'it': 2.0, 'seat': 2.0, 'to': 4.0, 'was': 1.0, 'not': 2.0, 'kinda': 1.0, 'after': 1.0, 'buy': 1.0, 'close': 1.0, 'most': 1.0, '2': 1.0, 'but': 1.0, 'eased': 1.0, 'way': 1.0, 'if': 1.0, 'be': 1.0, '3': 1.0, 'your': 1.0}
Word element => {'everyone': 1.0, 'three': 1.0, 'all': 1.0, 'where': 1.0, 'best': 1.0, 'necessary': 1.0, 'would': 2.0, 'quickly': 1.0, 'tall': 1.0, 'and': 7.0, 'britax': 1.0, 'are': 1.0, 'out': 1.0, 'keeping': 1.0, 'have': 4.0, 'we': 1.0, 'a': 4.0, 'about': 2.0, 'age': 1.0, 'grow': 1.0, 'to': 3.0, 'in': 3.0, 'seat': 3.0, 'any': 1.0, 'our': 1.0, 'recommend': 1.0, 'known': 1.0, 'much': 1.0, 'really': 1.0, 'for': 5.0, 'price': 1.0, 'product': 1.0, 't': 1.0, 'fit': 1.0, 'very': 2.0, 'grew': 1.0, 'height': 1.0, 'son': 4.0, 'cars': 1.0, 'snug': 1.0, 'is': 7.0, 'comfortable': 1.0, 'say': 1.0, 'his': 5.0, 'around': 2.0, 'my': 5.0, 'often': 1.0, 'had': 1.0, 'be': 1.0, 'he': 1.0, 'it': 3.0, 'she': 1.0, 'this': 5.0, 'drive': 1.0, 'roundabout': 1.0, 'i': 8.0, 'skinny': 1.0, 'nice': 1.0, 'little': 1.0, 'two': 1.0, 'than': 1.0, 'gone': 1.0, 'straps': 1.0, 'heavier': 1.0, 'right': 1.0, 'allow': 1.0, 'from': 1.0, 'infant': 1.0, 'car': 1.0, 'adjustable': 1.0, 'cup': 1.0, 'holder': 1.0, 'lifesaver': 1.0, 'toys': 1.0, 'inside': 1.0, 'cubby': 1.0, 'the': 5.0, 'of': 1.0, 'holes': 1.0, 'will': 1.0, 'that': 3.0, 'quite': 1.0, 'found': 1.0, 'bit': 1.0, 'previous': 1.0, 'complaints': 1.0, 'seats': 2.0, 'enjoys': 1.0, 'but': 1.0, 'so': 1.0, 'can': 1.0, 'don': 1.0, 'find': 1.0, 'since': 1.0, 'im': 1.0, 'not': 1.0, 'great': 1.0, 'carrying': 1.0, 'room': 1.0, 'these': 1.0, 'bought': 2.0, 'too': 1.0, 'one': 1.0, 'mother': 1.0, 'if': 1.0}
Word element => {'visit': 1.0, 'one': 1.0, 'certified': 1.0, 'by': 1.0, 'installation': 1.0, 'you': 1.0, 'latch': 1.0, 'install': 1.0, 'easy': 2.0, '65lbs': 1.0, 'rated': 1.0, 'will': 1.0, 'he': 1.0, 'safer': 1.0, 'in': 1.0, 'keep': 1.0, 'is': 1.0, 'traffic': 1.0, 'safety': 3.0, 'it': 1.0, 'highway': 1.0, 'assemble': 1.0, 'where': 1.0, 'national': 1.0, 'weight': 1.0, 'be': 1.0, 'him': 2.0, 'checked': 1.0, 'my': 1.0, 'the': 5.0, 'harness': 2.0, '40lbs': 1.0, 'old': 1.0, 'anyway': 1.0, 'child': 1.0, 'selected': 1.0, 'find': 1.0, 'technician': 1.0, 'because': 1.0, 'this': 3.0, 'based': 1.0, 'of': 1.0, 'chose': 1.0, 'moved': 1.0, 'and': 4.0, 'i': 6.0, '4': 1.0, 'your': 1.0, 'on': 1.0, 'recommendation': 1.0, 'from': 2.0, 'recommend': 1.0, 'was': 2.0, 'passenger': 1.0, 'car': 1.0, 'expert': 1.0, 'approaching': 1.0, 'seat': 6.0, 'our': 1.0, 'to': 5.0, 'quickly': 1.0, 'booster': 1.0, 'height': 1.0, 'limits': 1.0, 'year': 1.0, 'his': 1.0, 'convertible': 1.0, 'with': 1.0, '40inches': 1.0, 's': 1.0, 'administration': 1.0, 'a': 4.0, 'could': 1.0, 'have': 2.0, 'longer': 1.0, 'work': 1.0, 'but': 1.0, 'can': 1.0}
Word element => {'luck': 1.0, 'before': 1.0, 'hope': 1.0, 'did': 1.0, 'keep': 1.0, 'just': 1.0, 'sales': 1.0, 'others': 1.0, 'or': 1.0, '130': 1.0, 'find': 1.0, 'you': 2.0, 'new': 1.0, 'buying': 1.0, 'they': 1.0, 'graco': 1.0, 'measure': 1.0, 'to': 9.0, 'as': 5.0, 'any': 1.0, 'anyway': 1.0, 'good': 3.0, 'buckle': 1.0, 'taking': 1.0, 'are': 2.0, 'britax': 3.0, 's': 1.0, 'a': 6.0, 'will': 2.0, 'could': 1.0, 't': 1.0, 'that': 1.0, 'target': 1.0, 'next': 1.0, 'mean': 1.0, 'i': 9.0, 'have': 2.0, 'and': 9.0, 'moved': 1.0, 'but': 2.0, '2': 2.0, 'so': 1.0, 'can': 1.0, 'back': 1.0, 'short': 1.0, 'toys': 1.0, 'read': 1.0, 'wait': 2.0, 'my': 3.0, 'went': 3.0, 'with': 1.0, 'few': 1.0, 'this': 6.0, 'holders': 1.0, 'the': 13.0, 'great': 1.0, 'store': 1.0, 'into': 1.0, 'frontier': 2.0, 'emailing': 1.0, 'son': 1.0, 'about': 1.0, 'amazon': 1.0, 'forth': 1.0, 'marathon': 2.0, 'looking': 1.0, 'chance': 1.0, 'be': 1.0, 'already': 1.0, 'it': 5.0, 'him': 1.0, 'shorter': 1.0, 'for': 3.0, 'year': 2.0, 'product': 1.0, 'googled': 1.0, '95': 1.0, 'far': 1.0, 'love': 1.0, 'is': 1.0, 'sale': 1.0, 'really': 2.0, 'had': 1.0, 'suggested': 1.0, 'their': 2.0, 'see': 2.0, 'own': 1.0, 'all': 3.0, 'fits': 1.0, 'an': 1.0, 'note': 1.0, 'less': 1.0, 'change': 1.0, 'major': 1.0, 'now': 1.0, 'flaw': 1.0, 'issue': 1.0, 'sized': 1.0, 'helps': 1.0, 'vs': 1.0, '5': 1.0, 'stages': 1.0, 'old': 2.0, 'reviews': 1.0, 'we': 1.0, 'then': 1.0, 'fine': 1.0, 'seat': 4.0, 'plans': 1.0, 'in': 2.0, 'if': 2.0, 'turn': 1.0, 'future': 1.0, 'from': 1.0, 'one': 2.0, 'happy': 1.0, 'long': 1.0, 'on': 3.0, 'put': 1.0, '4': 1.0, 'cup': 1.0, 'nooks': 1.0}
Word element => {'recommend': 1.0, 'happy': 1.0, 'seems': 1.0, 've': 1.0, 'far': 1.0, 'years': 1.0, 'many': 1.0, 'used': 1.0, 'be': 1.0, 'd': 1.0, 'so': 2.0, 'rated': 1.0, 'was': 1.0, 'can': 1.0, 'good': 1.0, 'seat': 1.0, 'very': 1.0, 'as': 2.0, 'a': 1.0, 'with': 1.0, 'it': 5.0, 'this': 1.0, 'fit': 1.0, 'and': 2.0, 'chose': 1.0, 'we': 2.0, 'fact': 1.0, 'that': 1.0, 'our': 1.0, 'definitely': 1.0, 'car': 1.0, 'sturdy': 1.0, 'ford': 1.0, 'fusion': 1.0, 'i': 2.0, 'comfortable': 1.0, 'for': 2.0, 'liked': 1.0, 'the': 1.0}
Word element => {'now': 1.0, 'be': 1.0, 'won': 1.0, 'girl': 1.0, 'least': 1.0, 'poor': 1.0, 'isn': 1.0, 'with': 1.0, 'latch': 1.0, 'display': 2.0, 'their': 1.0, 'frustrated': 1.0, 'little': 1.0, 'two': 1.0, 'toys': 1.0, 'went': 1.0, 'original': 1.0, 'turns': 1.0, 'after': 2.0, 'hours': 1.0, 'edit': 1.0, 'going': 1.0, 'into': 1.0, 'unclick': 1.0, 'still': 1.0, 'if': 1.0, 'seats': 1.0, 'just': 2.0, 'anymore': 1.0, 'posting': 1.0, 'goes': 1.0, 'see': 1.0, 'll': 1.0, 'but': 2.0, 'parts': 1.0, 'defective': 3.0, 'mine': 2.0, 'send': 1.0, 'they': 3.0, 'believe': 1.0, 'called': 1.0, 'difficult': 2.0, 'more': 2.0, 'pressing': 2.0, 'good': 1.0, 'which': 1.0, 'made': 1.0, 'graco': 1.0, 'perfect': 1.0, 'brands': 1.0, 'all': 1.0, 'other': 1.0, 'back': 1.0, 'most': 1.0, 'opposed': 1.0, 'unable': 1.0, 'as': 1.0, 'downward': 2.0, 'let': 1.0, 'no': 1.0, 'press': 1.0, 'very': 1.0, 'himself': 2.0, 'getting': 1.0, 'click': 2.0, 'herself': 1.0, 'given': 1.0, 'stamp': 1.0, 'button': 8.0, 'identical': 1.0, 'out': 4.0, 'awesome': 1.0, 'year': 2.0, 'push': 1.0, 'old': 2.0, '2011': 1.0, 'purchased': 2.0, 'type': 1.0, 'had': 4.0, 'destination': 1.0, '2010': 1.0, 'action': 1.0, '5': 1.0, 'replacement': 2.0, 't': 4.0, 'simply': 2.0, 'can': 1.0, 'so': 2.0, 'would': 1.0, 'he': 3.0, 'weekend': 1.0, 'this': 5.0, 'him': 1.0, 'it': 10.0, 'unfortunately': 1.0, 'she': 2.0, 'manager': 1.0, 'post': 1.0, 'me': 2.0, 'my': 5.0, 'looks': 1.0, 'comfortable': 1.0, '1': 1.0, 'for': 5.0, 'stars': 1.0, 'fast': 1.0, 'i': 7.0, 'case': 1.0, '4': 2.0, 'son': 2.0, 'design': 6.0, 'easy': 1.0, 'get': 2.0, 'new': 2.0, 'time': 1.0, 'model': 1.0, 'last': 2.0, 'from': 1.0, 've': 2.0, 'down': 1.0, 'to': 13.0, 'in': 5.0, 'seat': 4.0, 'clicked': 1.0, 'how': 2.0, 'our': 1.0, 'and': 10.0, 'd': 1.0, 'tough': 1.0, 'says': 1.0, 'a': 9.0, 'pictured': 1.0, 'longer': 1.0, 'the': 20.0, 'of': 5.0, 'not': 1.0, 'forward': 1.0, 'much': 1.0, 'r': 1.0, 'put': 2.0, 'on': 6.0, 'that': 1.0, 'exponentially': 1.0, 'because': 1.0, 'same': 1.0, 'swap': 1.0, 'hop': 1.0, 'part': 3.0, 'date': 1.0, 'was': 3.0, 'said': 1.0, '18': 1.0, 'inward': 3.0, 'first': 1.0, 'her': 3.0, 'use': 3.0, 'refund': 1.0, 'front': 1.0, 'change': 3.0, 'up': 1.0, 'maybe': 1.0, 's': 8.0, 'van': 1.0, 'told': 1.0, 'belts': 1.0, 'couldn': 2.0, 'upon': 1.0, 'daughter': 1.0, 'got': 2.0, 'us': 1.0, 'also': 1.0, 'them': 2.0, 'we': 2.0, 'then': 2.0, 'when': 1.0, 'unclicked': 1.0, 'one': 2.0, 'box': 1.0, 'like': 2.0, 'semi': 1.0, 'circle': 1.0, 'nautilus': 1.0, 'at': 2.0, 'is': 5.0}
Word element => {'time': 1.0, 'long': 1.0, 'should': 1.0, 'material': 1.0, 'out': 1.0, 'made': 1.0, 'assemble': 1.0, 'to': 1.0, 'last': 1.0, 'easy': 1.0, 'also': 1.0, 've': 1.0, 'so': 1.0, 'after': 1.0, 'we': 1.0, 'of': 2.0, 'seat': 1.0, 'good': 1.0, 'seen': 1.0, 'the': 2.0, 'is': 1.0, 'car': 1.0, 'doing': 1.0, 'a': 2.0, 'durable': 1.0, 'research': 1.0, 'this': 1.0, 'it': 3.0, 's': 2.0, 'best': 1.0, 'very': 2.0, 'and': 1.0, 'comfortable': 1.0, 'one': 1.0, 'for': 2.0, 'baby': 1.0}
Word element => {'money': 1.0, 'spend': 1.0, 'safely': 1.0, 'use': 1.0, 'man': 1.0, 'a': 2.0, 'britax': 1.0, 'of': 1.0, 'extra': 1.0, 'upper': 1.0, 'have': 2.0, 'does': 1.0, 'nearly': 1.0, 'the': 4.0, 'straps': 1.0, 'strength': 1.0, 'impossible': 1.0, 'my': 1.0, 'running': 1.0, 'not': 1.0, 'seat': 2.0, 'stand': 1.0, 'boards': 1.0, 'are': 1.0, 'leverage': 1.0, 'it': 1.0, 'this': 2.0, 'and': 1.0, 'get': 2.0, 'hate': 1.0, 'i': 3.0, 'or': 1.0, 'should': 1.0, 'enough': 1.0, 'body': 1.0, 'unless': 1.0, 'on': 1.0, 'tight': 1.0, 'for': 1.0, 'to': 3.0, 'husband': 1.0}
Word element => {'easily': 1.0, 'up': 1.0, 'very': 2.0, 'and': 2.0, 'in': 1.0, 'my': 1.0, 'loves': 1.0, 'this': 1.0, 'son': 1.0, 'is': 2.0, 'it': 1.0, 'him': 1.0, 'wash': 1.0, 'so': 1.0, 'easy': 2.0, 'to': 2.0, 'get': 1.0}
Word element => {'sleeping': 1.0, 'when': 1.0, 'slumps': 1.0, 's': 1.0, 'child': 1.0, 'well': 1.0, 'recline': 1.0, 'engagement': 1.0, 'buckle': 1.0, 'cheap': 1.0, 't': 1.0, 'the': 2.0, 'straps': 2.0, 'bind': 1.0, 'complaint': 1.0, 'my': 1.0, 'biggest': 1.0, 'material': 1.0, 'nylon': 1.0, 'is': 1.0, 'sliding': 1.0, 'not': 1.0, 'seat': 2.0, 'points': 1.0, 'decent': 1.0, 'forward': 1.0, 'doesn': 1.0, 'rigid': 1.0, 'head': 1.0, 'like': 1.0, 'and': 1.0, 'fold': 1.0, 'up': 1.0, 'belt': 1.0, 'that': 1.0, 'over': 1.0, 'can': 1.0}
Word element => {'handy': 1.0, 'holder': 1.0, 'dad': 1.0, 'mom': 1.0, 'forward': 1.0, 'whole': 1.0, 'installed': 1.0, 'her': 3.0, 'in': 2.0, 'sit': 1.0, 'right': 1.0, 'everything': 1.0, 'climbed': 1.0, 'floor': 1.0, 'of': 1.0, 'out': 1.0, 'took': 1.0, 'when': 2.0, 'the': 4.0, 'deal': 1.0, 'perfect': 1.0, 'this': 3.0, 'loving': 1.0, 'christmas': 1.0, 'rated': 1.0, 'big': 1.0, 'too': 1.0, 'and': 8.0, 'experience': 1.0, 'consumer': 1.0, 'my': 1.0, 'may': 1.0, 'it': 12.0, 'she': 5.0, 'car': 2.0, 'was': 7.0, 'at': 1.0, 'knew': 2.0, 'some': 1.0, 'is': 2.0, 'highly': 1.0, 'really': 1.0, 'be': 2.0, 'an': 1.0, 'our': 1.0, 'to': 1.0, 'seat': 4.0, 'reports': 1.0, 'excellent': 2.0, 'converted': 1.0, 'one': 1.0, 'fit': 1.0, 'for': 5.0, 'reviews': 1.0, 'well': 1.0, 'very': 1.0, 'little': 1.0, 'i': 1.0, 'pricy': 1.0, 'cup': 1.0, 'worth': 1.0, 'sitting': 1.0, 'but': 2.0, 'can': 1.0, 'seeing': 2.0, 'looked': 1.0, 'later': 1.0, 'box': 1.0, 'into': 2.0, 'put': 1.0, 'on': 2.0, 'think': 2.0, 'didn': 1.0, 'got': 1.0, 'booster': 1.0, 'daughter': 1.0, 'a': 5.0, 'we': 4.0, 't': 1.0, 'new': 1.0, 'would': 1.0}
Word element => {'have': 1.0, 'wishes': 1.0, 'who': 1.0, 'fits': 1.0, 'would': 1.0, 'him': 1.0, 'recommend': 1.0, 'easy': 1.0, 'for': 3.0, 'comfortable': 1.0, 'one': 1.0, 'install': 1.0, 'knew': 1.0, '5': 1.0, 'top': 1.0, 'the': 4.0, 'we': 1.0, 'and': 1.0, 'get': 1.0, 'mom': 1.0, 'my': 1.0, 'started': 1.0, 'seat': 4.0, 'best': 1.0, 'very': 1.0, 'from': 1.0, 'was': 2.0, 'to': 4.0, 'were': 1.0, 'car': 1.0, 'most': 1.0, 'convertible': 2.0, 'undecided': 1.0, 'recieved': 1.0, 'baby': 1.0, 'about': 1.0, 'i': 4.0, 'vehicles': 1.0, 'which': 2.0, 'anyone': 1.0, 'in': 2.0, 'but': 1.0, 'it': 1.0, 'this': 3.0, 'research': 1.0, 'after': 1.0, 'rated': 1.0}
Word element => {'buy': 1.0, 'overall': 1.0, 'time': 1.0, 'quite': 1.0, '5': 1.0, 'use': 1.0, 'solid': 1.0, 'how': 1.0, 'holders': 1.0, 'cup': 1.0, 'pockets': 1.0, 'little': 1.0, 'boys': 1.0, 'well': 1.0, 'frontier': 1.0, 'made': 1.0, 'yr': 1.0, 'the': 8.0, 'some': 1.0, 'these': 1.0, 'love': 1.0, 'for': 3.0, 'great': 3.0, 'comfortable': 2.0, 'one': 2.0, 'like': 1.0, 'reading': 1.0, 'i': 3.0, 'point': 1.0, 'old': 2.0, 'at': 1.0, 'safe': 1.0, 'was': 1.0, 'determined': 1.0, 'fact': 1.0, 'my': 1.0, 'purchase': 1.0, 'harness': 1.0, 'try': 1.0, 'instead': 1.0, 'we': 3.0, 'a': 3.0, 'hidden': 1.0, 'looked': 1.0, 'seeing': 1.0, 'and': 5.0, 'can': 1.0, 'but': 2.0, 'week': 1.0, 'car': 1.0, '19': 1.0, 'chose': 1.0, 'after': 2.0, 'britax': 1.0, 'are': 3.0, '3': 1.0, 'on': 1.0, 'graco': 1.0, 'nautilus': 1.0, 'price': 1.0, 'ordered': 1.0, 'second': 1.0, 'to': 2.0, 'seat': 1.0, 'our': 1.0, 'it': 1.0, 'month': 1.0, 'seats': 1.0, 'reviews': 1.0, 'they': 2.0}
Word element => {'sit': 1.0, 'enough': 1.0, 'my': 1.0, 'does': 1.0, 'range': 1.0, 'weight': 1.0, 'recommend': 1.0, 'doesn': 1.0, 'myride': 1.0, 'favor': 1.0, 'nautilus': 2.0, 'returning': 1.0, 'd': 1.0, 'm': 1.0, 'long': 1.0, 'position': 1.0, 'whose': 1.0, 'safest': 1.0, 'in': 2.0, 'keep': 1.0, 'want': 1.0, 'face': 1.0, 'her': 2.0, 'for': 2.0, 'embarrased': 1.0, 'situation': 1.0, 'rear': 3.0, 'is': 3.0, 'many': 1.0, 'framed': 1.0, 'used': 2.0, 'be': 2.0, 'despite': 2.0, 'which': 1.0, 'cannot': 1.0, 'sites': 1.0, 'can': 1.0, 'but': 2.0, 'this': 3.0, 'it': 2.0, 'research': 1.0, 'admit': 1.0, 'possible': 1.0, 'facing': 4.0, 'well': 1.0, 'not': 1.0, 'sturdy': 1.0, 'great': 1.0, 'am': 1.0, 'while': 1.0, 'forward': 2.0, 'designed': 1.0, 'and': 2.0, 'car': 1.0, 'i': 4.0, 'two': 1.0, 'that': 2.0, 'any': 1.0, 'as': 2.0, 'to': 4.0, 'seat': 2.0, 'our': 1.0, 'child': 1.0, 'missed': 1.0, 'the': 5.0, 'critically': 1.0, 'important': 1.0, 'old': 1.0, 'point': 1.0, 't': 1.0, 'we': 1.0, 'a': 1.0, 's': 1.0, 'days': 1.0, 'of': 2.0, 'fairly': 1.0, 'on': 1.0, 'little': 1.0, 'one': 2.0, 'yet': 1.0, 'have': 1.0, 'small': 1.0, 'solid': 1.0, 'legal': 1.0}
Word element => {'bought': 1.0, 'eldest': 1.0, 'booster': 1.0, 'than': 1.0, 'secure': 1.0, 'lot': 1.0, 'feels': 1.0, 'van': 1.0, 'easily': 1.0, 'later': 1.0, 'for': 2.0, 'there': 1.0, 'likes': 1.0, 'a': 1.0, 'since': 1.0, 'any': 1.0, 'snacks': 1.0, 'loves': 1.0, 'to': 2.0, 'had': 2.0, 'in': 3.0, 'stash': 1.0, 'got': 1.0, 'latched': 1.0, 'haven': 1.0, 'our': 4.0, 'problems': 1.0, 'son': 1.0, 'cupholder': 1.0, 'we': 3.0, 'he': 2.0, 'this': 1.0, 'with': 1.0, 'it': 4.0, 'and': 2.0, 'perfectly': 1.0, 'child': 1.0, 'backseat': 1.0, 'fits': 1.0, 'more': 1.0, 't': 1.0, 'the': 2.0, 'seat': 2.0, 'because': 1.0}
Word element => {'walmart': 1.0, 'us': 1.0, 'r': 1.0, 'babies': 1.0, 'than': 1.0, '5': 1.0, 'even': 1.0, 'olds': 1.0, 'legs': 1.0, '40': 1.0, 'booster': 1.0, '3': 1.0, 'from': 1.0, 'year': 1.0, 'out': 1.0, 'strap': 1.0, 'at': 1.0, 'main': 1.0, 'dig': 1.0, 'cup': 1.0, 'high': 1.0, 'the': 5.0, 'convertibility': 1.0, 'weight': 1.0, 'between': 1.0, 'cheaper': 1.0, 'don': 1.0, 'reason': 1.0, 'holder': 1.0, 'lots': 1.0, 'have': 1.0, 'center': 1.0, 'to': 4.0, 'was': 1.0, 't': 1.0, 'we': 1.0, 'purchased': 1.0, 'harness': 1.0, 'continue': 1.0, 'like': 3.0, 'using': 1.0, 'inconvenience': 1.0, 'makes': 1.0, 'point': 1.0, 'i': 1.0, 'pounds': 1.0, 'and': 2.0, 'me': 1.0, 'want': 1.0, 'my': 1.0, 'convert': 1.0, 'higher': 1.0, 'it': 1.0, 'back': 1.0}
Word element => {'price': 1.0, 'limit': 1.0, 'weight': 1.0, 'booster': 1.0, 'does': 1.0, 'a': 2.0, 's': 1.0, 'graco': 2.0, 'of': 1.0, 'adjustability': 1.0, 'with': 1.0, 'dissapointed': 1.0, 'be': 1.0, 'however': 1.0, 'seats': 1.0, 'evenflow': 2.0, 'triumph': 1.0, 'straps': 3.0, 'scheme': 1.0, 'reasons': 1.0, 'color': 1.0, 'convert': 1.0, 'my': 2.0, 'worth': 1.0, 'or': 1.0, 'cup': 1.0, 'stylish': 1.0, 'attractive': 1.0, 'available': 1.0, 'end': 1.0, 'do': 1.0, 'and': 3.0, 'those': 1.0, 'me': 1.0, 'get': 1.0, 'car': 2.0, 'other': 1.0, 'making': 1.0, '2': 1.0, 'the': 9.0, 'is': 2.0, 'in': 2.0, 'will': 1.0, 'seems': 1.0, 'also': 1.0, 'great': 1.0, 'comfortable': 1.0, 'for': 3.0, 'difficult': 2.0, 'son': 1.0, 'an': 2.0, 'old': 1.0, 'tried': 1.0, 'higher': 2.0, 'it': 2.0, 'at': 1.0, 'quickly': 1.0, 'easily': 1.0, 'you': 2.0, 'times': 1.0, 'seat': 2.0, 'to': 3.0, 'holder': 1.0, 'secret': 1.0, 'has': 1.0, 'toy': 1.0, 'year': 1.0, 'compartments': 1.0, 'are': 2.0, 'tangle': 1.0, 'adjust': 1.0, 'ever': 1.0, 'if': 1.0, 'have': 1.0}
Word element => {'maintain': 1.0, 'easy': 1.0, 'very': 1.0, 'cup': 1.0, 'built': 1.0, 'likes': 1.0, 'limits': 1.0, 'is': 2.0, '3': 1.0, 'rides': 1.0, 'especially': 1.0, 'longer': 1.0, 'upholstery': 1.0, 'frequent': 1.0, 'with': 1.0, 'than': 1.0, 'since': 1.0, 'at': 2.0, 'bigger': 1.0, 'lot': 1.0, 'home': 2.0, 'raving': 1.0, 'city': 1.0, 's': 2.0, 'a': 2.0, 'holder': 1.0, 'alot': 1.0, 'law': 1.0, 'and': 4.0, 'of': 2.0, 'he': 2.0, 'first': 1.0, 'it': 2.0, 'week': 1.0, 'car': 1.0, 'i': 3.0, 'boy': 1.0, 'that': 1.0, 'my': 3.0, 'went': 1.0, 'days': 1.0, 'day': 1.0, 'grandson': 2.0, 'immediately': 1.0, 'youngest': 1.0, 'realized': 1.0, 'minutes': 1.0, 'was': 3.0, 'outside': 1.0, 'least': 2.0, 'seat': 1.0, 'to': 2.0, 'his': 3.0, 'online': 1.0, '30': 1.0, 'this': 2.0, 'found': 1.0, 'in': 4.0, 'age': 1.0, 'about': 1.0, 'great': 2.0, 'sits': 1.0, 'the': 3.0, 'deal': 1.0, 'shipped': 1.0, 'daughter': 1.0, 'still': 1.0, 'son': 1.0, 'have': 1.0, 'nothing': 1.0, '2': 1.0, 'but': 1.0, 'reviews': 1.0, 'product': 1.0, 'for': 1.0}
Word element => {'hopefully': 1.0, 'else': 1.0, 'protection': 1.0, 'no': 1.0, 'down': 1.0, 'hanging': 1.0, 'recommend': 1.0, 'were': 1.0, 'loosened': 1.0, 'check': 1.0, 'stopped': 1.0, 'interstate': 1.0, 'been': 2.0, 'had': 4.0, 'buckled': 1.0, 'alot': 1.0, 'hour': 2.0, 'went': 1.0, 'closer': 1.0, 'or': 2.0, 'release': 1.0, 'having': 1.0, 'if': 3.0, 'sure': 1.0, 'something': 1.0, 'straps': 3.0, 'hole': 2.0, 'thumb': 1.0, 'around': 2.0, 'his': 1.0, 'however': 1.0, 'thing': 2.0, 'done': 1.0, 'un': 1.0, 'get': 2.0, 'not': 3.0, 'used': 1.0, 'just': 2.0, 'seats': 1.0, 'than': 1.0, 'close': 1.0, 'open': 1.0, 'harder': 1.0, '5': 1.0, 'said': 1.0, 'out': 1.0, 'nothing': 1.0, 'really': 1.0, 'there': 1.0, 'reviewed': 1.0, 'about': 3.0, 'say': 1.0, 'comfortable': 1.0, 'install': 1.0, 'pass': 1.0, 'such': 1.0, 'for': 2.0, 'at': 1.0, 'snug': 1.0, 'is': 10.0, 'sleeps': 1.0, 'year': 1.0, 'child': 1.0, 'buckles': 1.0, 'don': 1.0, 'soooo': 1.0, 'slightly': 1.0, 'result': 1.0, 'that': 5.0, 'loves': 1.0, 'weighs': 1.0, 'graco': 1.0, 'address': 1.0, 'pounds': 1.0, 'tall': 2.0, 'hold': 2.0, 'like': 3.0, 'who': 2.0, 'would': 3.0, 'harness': 2.0, 'put': 1.0, 'do': 3.0, 'others': 2.0, 'older': 1.0, '3': 1.0, 'think': 2.0, 'him': 5.0, 'already': 1.0, 'it': 8.0, 'weekend': 1.0, 'this': 7.0, 'with': 3.0, '4': 1.0, 'stores': 1.0, 'little': 2.0, '41': 1.0, 'looks': 1.0, 'my': 3.0, 'accident': 1.0, 'purchase': 1.0, 'company': 1.0, 'longer': 1.0, 'of': 1.0, 'doing': 1.0, 'the': 22.0, 'find': 1.0, 'does': 1.0, 'have': 9.0, 'younger': 1.0, 'buckle': 1.0, 'searched': 1.0, 'contacted': 1.0, 'an': 2.0, 'other': 1.0, 'all': 3.0, 'most': 1.0, 'but': 2.0, 'until': 1.0, 'seems': 1.0, 'convince': 1.0, 'will': 2.0, 'seat': 7.0, 'in': 10.0, 'larger': 2.0, 'point': 2.0, 'net': 1.0, 'extensively': 1.0, 'a': 12.0, 't': 1.0, 'moving': 1.0, 'we': 8.0, 'five': 1.0, 'was': 2.0, '37': 1.0, 'simple': 1.0, 'pulled': 1.0, 'to': 11.0, 'pretty': 1.0, 'made': 1.0, 'good': 4.0, 'again': 1.0, 'support': 1.0, 'car': 2.0, 'son': 2.0, 'storage': 1.0, 'children': 1.0, 'seem': 1.0, 'sturdy': 1.0, 'they': 4.0, 'cubby': 1.0, 'trip': 1.0, 'and': 16.0, 'arms': 2.0, 'he': 6.0, 'i': 9.0, 'cupholder': 1.0, 'well': 1.0, 'head': 1.0, 'while': 1.0, 'can': 5.0, 'so': 2.0, 'last': 1.0, 'am': 2.0, 'when': 2.0, 'being': 1.0, 'himself': 1.0, 'very': 1.0, 'loosen': 1.0, 'overall': 2.0, 'satisfied': 1.0, 'be': 1.0, 'noticed': 1.0, 'on': 3.0, 'long': 1.0, 'fact': 1.0, 'wonderful': 1.0, 'old': 1.0, 'run': 1.0, 'one': 3.0, 'outgrows': 1.0, 'major': 1.0, 'problem': 2.0}
Word element => {'quality': 1.0, 'spills': 1.0, 'with': 1.0, 'cleanup': 1.0, 'makes': 1.0, 'material': 1.0, 'build': 1.0, 'great': 1.0, 'nice': 1.0, 'the': 1.0, 'to': 3.0, 'configure': 1.0, 'have': 1.0, 'seat': 1.0, 'cup': 1.0, 'easy': 3.0, 'holders': 1.0, 'for': 1.0, 'buckle': 1.0}
Word element => {'do': 1.0, 'nothing': 1.0, 'have': 1.0, 'vagary': 1.0, 'fasten': 1.0, 'side': 1.0, 'other': 1.0, 'need': 1.0, 'me': 1.0, 'for': 2.0, 'difficult': 1.0, 'in': 2.0, 'receptacle': 1.0, 'when': 1.0, 'by': 1.0, 'car': 4.0, 'challenging': 1.0, 'year': 1.0, 'but': 1.0, 'four': 1.0, 'booster': 1.0, 'moves': 1.0, 'solid': 2.0, 'i': 1.0, 'two': 1.0, 'my': 2.0, 're': 1.0, 'grandson': 1.0, 'this': 2.0, 'he': 1.0, 'precious': 1.0, 'it': 2.0, 'currently': 1.0, 'the': 10.0, 'is': 4.0, 'safe': 1.0, 'people': 1.0, 'very': 2.0, 'figure': 1.0, 'could': 1.0, 'a': 4.0, 'with': 1.0, 'crawl': 1.0, 'piece': 1.0, 'into': 1.0, 'that': 1.0, 'of': 4.0, 'seat': 4.0, 'to': 7.0, 'old': 1.0, 'cargo': 1.0, 'took': 1.0, 'being': 1.0, 'set': 1.0, 'used': 1.0, 'trying': 1.0, 'be': 2.0, 'equipment': 1.0, 'configured': 1.0, 'anyway': 1.0, 'up': 1.0, 'meet': 1.0, 'needs': 1.0, 'seems': 1.0, 'will': 1.0, 'also': 1.0, 'somewhat': 1.0, 'soon': 1.0, 'and': 3.0, 'newborn': 1.0, 'out': 1.0, 'hook': 1.0, 'belt': 1.0}
Word element => {'time': 1.0, 'first': 1.0, 'purchased': 1.0, 'of': 1.0, 'would': 1.0, 'un': 1.0, 'a': 2.0, 'see': 1.0, 'well': 1.0, 'buckles': 1.0, 'are': 1.0, 'sits': 1.0, 'straps': 1.0, 'ordered': 1.0, 'easy': 2.0, 'there': 1.0, 'up': 1.0, 'love': 1.0, 'for': 2.0, 'one': 2.0, 'i': 4.0, 'lock': 2.0, 'base': 1.0, 'it': 3.0, 'comfortable': 1.0, 'install': 1.0, 'spot': 1.0, 'unseen': 1.0, 'and': 4.0, 'around': 1.0, 'is': 4.0, 'to': 3.0, 'seat': 2.0, 'sturdy': 1.0, 'yea': 1.0, 'site': 1.0, 'high': 1.0, 'my': 1.0, 'enough': 1.0, 'the': 5.0, 'without': 1.0, 'beverage': 1.0, 'an': 1.0, 'extra': 1.0, 'daughter': 1.0, 'out': 1.0, 'window': 1.0, 'best': 1.0, 'part': 1.0, '3': 1.0, 'in': 1.0, 'this': 2.0, 'wish': 1.0}
Word element => {'seat': 1.0, 'car': 1.0, 'his': 1.0, 'loves': 1.0, '3': 1.0, 'age': 1.0, 'grandson': 1.0, 'idea': 1.0, 'a': 1.0, 'holder': 1.0, 'to': 1.0, 'product': 1.0, 'converts': 1.0, 'says': 1.0, 's': 1.0, 'child': 1.0, 'great': 1.0, 'the': 2.0, 'everything': 1.0, 'is': 4.0, 'time': 1.0, 'along': 1.0, 'new': 1.0, 'growth': 1.0, 'that': 1.0, 'very': 1.0, 'and': 1.0, 'it': 5.0, 'this': 1.0, 'durable': 1.0, 'for': 1.0, 'seems': 1.0, 'will': 1.0, 'last': 1.0, 'my': 1.0, 'cup': 1.0}
Word element => {'too': 1.0, 'much': 1.0, 'so': 1.0, 'out': 1.0, 'and': 2.0, 'get': 1.0, 'is': 1.0, 'toddler': 1.0, 'seems': 1.0, 'in': 2.0, 'anyone': 1.0, 'he': 1.0, 'it': 2.0, 'with': 2.0, 'this': 2.0, 'loves': 1.0, 'our': 1.0, 'pleased': 1.0, 'son': 1.0, 'very': 1.0, 'as': 2.0, 'more': 1.0, 'the': 1.0, 'are': 1.0, 'we': 2.0, 'drink': 1.0, 'him': 1.0, 'would': 1.0, 'holder': 1.0, 'toys': 1.0, 'cup': 1.0, 'easy': 1.0, 'recommend': 1.0, 'comfortable': 1.0, 'for': 1.0, 'carseat': 2.0, 'his': 2.0, 'a': 1.0, 'well': 1.0, 'sippy': 1.0, 'to': 2.0}
Word element => {'two': 1.0, 'bought': 1.0, 'much': 1.0, 'likes': 1.0, 'and': 1.0, 'looks': 1.0, 'is': 1.0, 'plus': 1.0, 'possible': 1.0, 'liked': 1.0, 'comfortable': 1.0, 'for': 1.0, 'also': 1.0, 'in': 1.0, 'cup': 1.0, 'my': 1.0, 'great': 1.0, 'the': 2.0, 'as': 2.0, 'year': 1.0, 'son': 1.0, 'seat': 1.0, 'he': 1.0, 'it': 2.0, 'this': 2.0, 'purchased': 1.0, 'wanted': 1.0, 'to': 1.0, 'six': 1.0, 'old': 1.0, 'i': 4.0, 'a': 1.0, 'chair': 2.0, 'that': 2.0, 'allowed': 1.0, 'holder': 1.0, 'harness': 1.0, 'him': 1.0, 'so': 1.0, 'remain': 1.0, 'does': 1.0, 'long': 1.0}
Word element => {'an': 1.0, 'child': 1.0, 'keyfit': 1.0, 'with': 1.0, 'he': 1.0, 'this': 2.0, 'it': 2.0, 'is': 2.0, 'good': 1.0, 'not': 1.0, 'infant': 1.0, 'car': 1.0, 'just': 2.0, 'large': 1.0, 'our': 1.0, 'seat': 1.0, 'to': 1.0, 'husband': 1.0, 'bc': 1.0, 'for': 2.0, 'love': 1.0, 'britax': 2.0, 'one': 1.0, 'decided': 1.0, 'booster': 1.0, 'latch': 1.0, 'cup': 1.0, 'the': 4.0, 'get': 2.0, 'do': 1.0, 'and': 1.0, 'too': 1.0, 'alright': 1.0, 'when': 2.0, 'his': 2.0, 'tight': 1.0, 'my': 3.0, 'vehicle': 1.0, 't': 1.0, 'a': 1.0, 'holder': 1.0, 'but': 1.0, 'chicco': 1.0, 'was': 2.0, 'doesn': 1.0, 'installing': 1.0, 'connectors': 1.0, 'i': 3.0, 'using': 1.0, 'like': 1.0, 'that': 2.0, 'convertible': 1.0, 'suv': 1.0, 'have': 1.0, 'said': 1.0, 'in': 1.0}
Word element => {'annoying': 1.0, 'pretty': 1.0, 'use': 1.0, 'yet': 1.0, 'cannot': 1.0, 'bought': 1.0, 'so': 1.0, 'facing': 1.0, 'and': 4.0, 'sure': 1.0, 'a': 1.0, 'is': 3.0, 'seat': 1.0, 'description': 1.0, 'that': 3.0, 'car': 1.0, 'm': 1.0, 'only': 1.0, 'it': 4.0, 'this': 1.0, 'all': 1.0, 'wasn': 1.0, 'great': 1.0, 't': 1.0, 'the': 1.0, 'super': 1.0, 'i': 2.0, 'clear': 1.0, 'from': 1.0, 'reviews': 1.0, 'but': 1.0, 'forward': 1.0}
Word element => {'for': 1.0, 'side': 1.0, 'little': 1.0, 'and': 1.0, 'like': 1.0, 'the': 2.0, 'my': 1.0, 'compartment': 1.0, 'child': 1.0, 'storage': 1.0, 'seems': 1.0, 'holder': 1.0, 'cup': 1.0, 'asleep': 1.0, 'comfortable': 1.0, 'i': 1.0, 'when': 1.0, 'or': 1.0, 'seated': 1.0, 'whether': 1.0, 'awake': 1.0}
Word element => {'bought': 1.0, 'we': 1.0, 'reason': 1.0, 'was': 1.0, 'price': 1.0, 'the': 2.0, 'there': 1.0, 'nothing': 2.0, 'too': 1.0, 's': 1.0, 'about': 1.0, 'with': 1.0, 'main': 1.0, 'and': 1.0, 'special': 1.0, 'wrong': 1.0, 'it': 3.0, 'either': 1.0}
Word element => {'baby': 1.0, 'our': 1.0, 'soon': 1.0, 'for': 1.0, 'one': 1.0, 'second': 1.0, 'a': 1.0, 'months': 1.0, 'to': 2.0, 'be': 2.0, 'product': 1.0, 'recommend': 1.0, '11': 1.0, 'shes': 2.0, 'ordering': 1.0, 'loves': 1.0, 'it': 1.0, 'this': 1.0, 'coming': 1.0, 'going': 1.0, 'daughter': 1.0, 'and': 1.0, 'my': 1.0, 'fits': 1.0, '32': 1.0, 'up': 1.0, '34': 1.0, 'i': 2.0, 'would': 1.0, 'perfect': 1.0, 'anyone': 1.0, 'will': 1.0}
Word element => {'it': 2.0, 'would': 1.0, 'thing': 1.0, 'change': 1.0, 'only': 1.0, 'the': 2.0, 'sticky': 1.0, 'price': 1.0, 'a': 1.0, 'this': 1.0, 'car': 1.0, 'is': 3.0, 'you': 1.0, 'really': 1.0, 'seat': 1.0, 'good': 2.0, 'receive': 1.0, '3': 1.0, 'for': 1.0, 'in': 2.0, 'rubber': 1.0, 'i': 1.0, 'one': 1.0}
Word element => {'visit': 1.0, 'please': 1.0, 'possible': 1.0, 'as': 2.0, 'keep': 1.0, 'important': 1.0, 'why': 1.0, 'over': 1.0, 'not': 1.0, 'point': 2.0, '5': 2.0, 'accommodate': 1.0, 'exceeds': 1.0, 'sooner': 1.0, 'wish': 1.0, 'only': 1.0, 'time': 1.0, 'insanely': 1.0, 'large': 1.0, 'get': 3.0, 'don': 1.0, 'great': 1.0, 'from': 1.0, 'pick': 1.0, 'when': 2.0, 'parent': 1.0, 'vehicle': 1.0, 'primary': 1.0, 'decided': 1.0, 'overall': 1.0, 'can': 3.0, 'so': 2.0, 'still': 1.0, 'tighter': 1.0, 'school': 1.0, 'got': 1.0, 'actually': 1.0, 'strap': 1.0, 'latch': 1.0, 'with': 5.0, 'be': 3.0, 'car': 6.0, 'tether': 1.0, 'money': 1.0, '2': 1.0, '80': 2.0, 'but': 3.0, 'by': 1.0, 'recently': 1.0, 'store': 1.0, 'son': 5.0, '2008reviewer': 1.0, 'child': 2.0, 'year': 1.0, 'they': 1.0, 'sturdy': 1.0, 'and': 13.0, 'here': 1.0, 'across': 1.0, '1': 1.0, '4': 1.0, 'i': 13.0, 'graco': 2.0, 'more': 3.0, 'plan': 2.0, 'purchased': 1.0, 'had': 2.0, 'spending': 1.0, 'put': 1.0, 'reviewsi': 1.0, 'out': 1.0, 'long': 1.0, 'on': 1.0, 'tight': 1.0, 'bulky': 1.0, 'would': 1.0, 'breeze': 1.0, 'previous': 1.0, '65': 1.0, 'britax': 4.0, '6': 1.0, 'how': 2.0, 'love': 2.0, 'expensive': 1.0, 'will': 1.0, 's': 2.0, 'regent': 7.0, 'a': 9.0, 't': 2.0, 'old': 1.0, 'convinced': 2.0, 'owner': 1.0, 'discovered': 1.0, 'review': 1.0, 'this': 4.0, 'pain': 1.0, 'longer': 1.0, 'the': 18.0, 'doing': 1.0, 'because': 1.0, 'harnessed': 1.0, 'that': 7.0, 'an': 1.0, 'all': 1.0, 'appear': 1.0, 'way': 1.0, 'than': 1.0, 'september': 1.0, 'impressed': 3.0, 'margaret': 1.0, 'your': 2.0, 'jones': 1.0, 'no': 1.0, 'limit': 1.0, 'safer': 1.0, 'glendside': 1.0, 'go': 1.0, 'lb': 1.0, 'pennsylvania': 1.0, 'research': 1.0, 'see': 1.0, 'install': 3.0, 'couldn': 1.0, 'me': 1.0, 'my': 8.0, 'seat': 9.0, 'in': 8.0, 'it': 11.0, 'opposed': 1.0, 'information': 1.0, 'goes': 1.0, 'weight': 1.0, 'wrong': 2.0, 'am': 3.0, 'was': 7.0, 'lbs': 2.0, 'harness': 3.0, 'one': 1.0, 'try': 1.0, 'less': 1.0, 'up': 2.0, 'use': 3.0, 'future': 1.0, 'for': 8.0, 'such': 1.0, 'some': 1.0, 'consuming': 1.0, 'reason': 1.0, 'looking': 1.0, 'second': 1.0, 'regarding': 1.0, 'to': 10.0, 'high': 1.0, 'came': 1.0, 'is': 5.0, 'nautilus': 1.0, 'after': 1.0, 'having': 1.0, 'us': 1.0}
Word element => {'fall': 1.0, 'comfortable': 1.0, 'is': 1.0, 'son': 1.0, 'can': 1.0, 'great': 1.0, 'nicely': 1.0, 'and': 2.0, 'asleep': 1.0, 'seat': 1.0, 'easy': 1.0, 'to': 1.0, 'my': 1.0, 'adults': 1.0, 'unbuckle': 1.0, 'snap': 1.0, 'for': 1.0, 'in': 1.0, 'adjust': 1.0}
Word element => {'stay': 1.0, 'head': 1.0, 'his': 1.0, 'never': 1.0, 'close': 1.0, 'falls': 1.0, 'seems': 2.0, 'also': 1.0, 'bother': 1.0, 'asleep': 1.0, 'the': 2.0, 'positions': 1.0, 'harness': 1.0, 'him': 1.0, 'doesn': 1.0, 'crotch': 1.0, 'son': 1.0, 'very': 1.0, 'says': 1.0, 'up': 2.0, 'it': 2.0, 'he': 2.0, 'comfortable': 1.0, 'get': 1.0, 'easy': 1.0, 'tighten': 1.0, 'far': 1.0, 'and': 2.0, 'is': 1.0, 'but': 2.0, 'change': 1.0, 'can': 2.0, 'tell': 1.0, 't': 1.0, 's': 1.0, 'we': 1.0, 'buckle': 1.0, 'pretty': 1.0, 'straight': 1.0, 'sits': 1.0, 'even': 1.0, 'when': 2.0, 'reclined': 1.0, 'recline': 1.0, 'as': 2.0, 'to': 3.0, 'seat': 1.0, 'installed': 1.0, 'on': 1.0, 'that': 1.0, 'help': 1.0, 'i': 1.0, 'otherwise': 1.0}
Word element => {'us': 1.0, 'out': 1.0, 'fee': 1.0, 'extra': 1.0, 'flight': 1.0, 'a': 1.0, 'look': 1.0, 'nice': 1.0, 'package': 1.0, 'but': 1.0, 'it': 3.0, 'wasted': 1.0, 'too': 1.0, 'to': 3.0, 'of': 1.0, 'big': 1.0, 'really': 1.0, 'carry': 2.0, 'is': 1.0, 'on': 1.0}
Word element => {'child': 1.0, 'with': 1.0, 'along': 1.0, 'grows': 1.0, 'and': 1.0, 'durable': 1.0, 'top': 1.0, 'my': 1.0, 'the': 2.0, 'of': 1.0, 'seat': 1.0, 'love': 1.0, 'line': 1.0, 'i': 1.0, 'feature': 1.0, 'car': 1.0, 'right': 1.0, 'convertible': 1.0, 'its': 1.0}
Word element => {'cars': 1.0, 'their': 1.0, 'she': 1.0, 'one': 1.0, 'extensive': 1.0, 'did': 1.0, 'car': 1.0, 'seat': 1.0, 'chose': 1.0, 'research': 1.0, 'is': 2.0, 'versatile': 1.0, 'and': 2.0, 'the': 1.0, 'my': 1.0, 'this': 2.0, 'extremely': 1.0, 'stable': 1.0, 'for': 1.0, 'law': 1.0, 'daughter': 1.0, 'in': 1.0}
Word element => {'5': 1.0, '4': 1.0, 'he': 1.0, 'son': 1.0, 'value': 1.0, 'we': 1.0, 'comfortable': 1.0, 'excellent': 1.0, 'on': 1.0, 'piece': 1.0, 'could': 1.0, 't': 1.0, 'another': 3.0, 'don': 1.0, 'child': 2.0, 'injured': 1.0, 'our': 1.0, 'how': 3.0, 'am': 1.0, 'otherwise': 2.0, 'someone': 2.0, 'when': 2.0, 'car': 1.0, 'out': 2.0, 'and': 4.0, 'an': 3.0, 'from': 2.0, 'cushioned': 1.0, 'fix': 1.0, 'big': 1.0, 'great': 4.0, 'remove': 1.0, 'it': 6.0, 'believe': 2.0, 'needs': 1.0, 'tiny': 1.0, 'a': 5.0, 'thumbs': 1.0, 'one': 4.0, 's': 3.0, 'advice': 1.0, 'well': 1.0, 'i': 8.0, 'nice': 2.0, 'two': 1.0, 'very': 1.0, 'flaw': 1.0, 'more': 1.0, 'else': 2.0, 'difficult': 2.0, 'unclick': 1.0, 'harness': 1.0, 'unbuckle': 3.0, 'if': 1.0, 'same': 1.0, 'because': 1.0, 'that': 2.0, 'except': 1.0, 'carseat': 3.0, 'came': 1.0, 'hazard': 1.0, 'safety': 1.0, 'buckle': 3.0, 'even': 1.0, 'in': 2.0, 'seat': 1.0, 'm': 1.0, 'years': 1.0, 'both': 1.0, 'after': 2.0, 'person': 1.0, 'the': 9.0, 'of': 2.0, 'use': 1.0, 'poster': 1.0, 'followed': 1.0, 'push': 1.0, 'top': 1.0, 'red': 1.0, 'with': 1.0, 'button': 1.0, 'this': 2.0, 'company': 2.0, 'accident': 1.0, 'only': 1.0, 'way': 1.0, 'so': 1.0, 'can': 2.0, 'but': 1.0, 'figure': 2.0, 'now': 2.0, 'situation': 1.0, 'supposed': 1.0, 'sent': 1.0, 'expensive': 1.0, 'urgent': 1.0, 'requested': 1.0, 'against': 1.0, 'to': 5.0, 'became': 1.0, 'was': 2.0, 'hard': 1.0, 'efficient': 1.0, 'is': 5.0, 'at': 1.0, 'sending': 1.0, 'looks': 1.0, 'my': 2.0, 'me': 2.0, 'not': 1.0, 'time': 1.0, 'new': 1.0, 'they': 2.0, 'for': 2.0, 'such': 2.0}
Word element => {'son': 1.0, 'and': 1.0, 'daughter': 1.0, 'days': 1.0, 'few': 1.0, 'law': 1.0, 'a': 1.0, 'after': 1.0, 'your': 1.0, 'not': 1.0, 'grandson': 1.0, 'buy': 1.0, 'i': 1.0, 'it': 1.0, 'this': 1.0, 'first': 1.0, 'to': 2.0, 'one': 1.0, 'using': 1.0, 'for': 2.0, 'also': 1.0, 'in': 2.0, 'years': 1.0, 'the': 1.0, 'my': 2.0, 'bought': 1.0, 'view': 1.0, 'does': 1.0, 'carseat': 2.0, 'low': 1.0, 'want': 1.0, 'is': 1.0, 'many': 2.0, 'that': 1.0, 'fairly': 1.0, 'easy': 1.0, 'block': 1.0, 'install': 1.0, 'nice': 1.0, 'have': 1.0, 'profile': 1.0}
Word element => {'carseat': 1.0, 'safe': 1.0, 'stylish': 1.0, 'extremely': 1.0, 'an': 1.0, 'that': 1.0, 'about': 1.0, 'is': 4.0, 'not': 1.0, 'than': 1.0, 'usually': 1.0, 'which': 1.0, 'them': 2.0, 'pressure': 1.0, 'these': 1.0, 'comfortable': 1.0, 'great': 1.0, 'the': 4.0, 'this': 1.0, 'kids': 2.0, 'car': 1.0, 'on': 1.0, 'lbs': 1.0, 'trouble': 1.0, 'but': 1.0, 'seats': 1.0, 'it': 1.0, 'have': 1.0, 'small': 1.0, 'so': 1.0, 'are': 3.0, 'my': 2.0, 'buckling': 2.0, 'and': 3.0, 'get': 1.0, '40': 1.0, 'a': 1.0, 'we': 1.0, 'other': 1.0, 'still': 1.0, '5': 2.0, 'point': 1.0, 'only': 1.0, 'harness': 1.0, 'sturdy': 1.0, 'almost': 1.0, 'versatile': 1.0, 'side': 1.0, '7': 1.0, 'problem': 2.0, 'click': 1.0, 'system': 1.0, 'very': 1.0, 'particular': 1.0, 'in': 2.0, 'angle': 1.0, 'needed': 1.0, 'to': 2.0}
Word element => {'forward': 1.0, 'transfer': 1.0, 'had': 1.0, 'out': 1.0, 'only': 1.0, 'me': 1.0, 'loves': 1.0, 'that': 1.0, 'say': 1.0, 'car': 1.0, 'front': 1.0, 'him': 1.0, 'was': 1.0, 'and': 4.0, 'of': 2.0, 'months': 1.0, 'put': 1.0, 'impressed': 1.0, 'on': 1.0, 'i': 3.0, 'took': 2.0, 'parameters': 1.0, 'baggage': 1.0, 'grew': 1.0, 'very': 2.0, 'son': 2.0, 'facing': 2.0, 'strap': 1.0, 'get': 1.0, 'easy': 1.0, 'height': 1.0, 'the': 1.0, '34': 1.0, '32': 1.0, 'pleased': 1.0, '18': 1.0, 'at': 1.0, 'slack': 1.0, 'to': 4.0, 'outside': 1.0, 'seat': 2.0, 'trip': 1.0, 'when': 1.0, 'am': 1.0, 'minute': 1.0, 'this': 1.0, 'with': 3.0, 'quick': 1.0, 'it': 3.0, 'every': 1.0, 'forced': 1.0, 'plenty': 1.0, 'take': 1.0, 'buckle': 1.0, 'install': 1.0, 'a': 3.0, 'we': 2.0, 'in': 1.0, 'plane': 1.0, 'vehicle': 1.0, 'my': 2.0, 'checked': 1.0, 'can': 1.0}
Word element => {'100': 1.0, 'they': 1.0, 'however': 1.0, 'comfortable': 1.0, 'were': 1.0, 'that': 1.0, 'better': 1.0, 'son': 1.0, 'others': 1.0, 'seems': 1.0, 'in': 1.0, 'install': 1.0, 'had': 1.0, 'to': 1.0, 'price': 1.0, 'my': 1.0, 'and': 1.0, 'more': 1.0, 'great': 1.0, 'looked': 1.0, 'it': 1.0, 'i': 1.0, 'least': 1.0, 'easy': 1.0, 'may': 1.0, 'have': 1.0, 'at': 2.0, 'some': 1.0, 'features': 1.0}
Word element => {'buy': 1.0, 'seemed': 1.0, 'an': 1.0, 'of': 1.0, 'out': 1.0, 'grown': 1.0, 'was': 2.0, 'enough': 1.0, 'forward': 1.0, 'fine': 1.0, 'problems': 1.0, 'already': 1.0, 'these': 1.0, 'find': 1.0, 'does': 1.0, 'because': 1.0, 'in': 1.0, 'convertible': 1.0, 'able': 1.0, 'being': 1.0, 've': 1.0, 'buckle': 1.0, 'happy': 2.0, 'my': 2.0, 'purchase': 1.0, 'asleep': 2.0, 'the': 5.0, 'much': 1.0, 'only': 1.0, 'with': 1.0, 'and': 2.0, 'i': 5.0, 'about': 2.0, 'had': 3.0, 'now': 1.0, 'for': 2.0, 'downside': 1.0, 'using': 1.0, 'must': 1.0, 'falls': 1.0, 'have': 2.0, 'to': 6.0, 'seat': 5.0, 'just': 3.0, 'son': 2.0, 'still': 1.0, 'difficult': 1.0, 'not': 3.0, 'it': 3.0, 'month': 1.0, 'infant': 2.0, 'fall': 2.0, 'is': 1.0, 'but': 1.0, 'can': 1.0, 'didn': 1.0, 'complaints': 1.0, 'him': 1.0, 'be': 1.0, 'so': 1.0, 'bit': 1.0, 'latch': 1.0, 'pointless': 1.0, 'since': 1.0, 'at': 1.0, 'am': 1.0, 'times': 1.0, 'previously': 1.0, 'compared': 1.0, 'graco': 1.0, 'recline': 2.0, 'found': 1.0, 'this': 2.0, 'kids': 1.0, 't': 1.0, 'a': 3.0, 'atleast': 1.0, 'we': 1.0, 'other': 1.0, 'that': 1.0, 'been': 1.0, 'very': 1.0, 'read': 1.0}
Word element => {'though': 1.0, 'it': 1.0, 'like': 1.0, 'shoulder': 1.0, 'finicky': 1.0, 'clip': 1.0, 'be': 2.0, 'to': 1.0, 'can': 1.0, 'straps': 1.0, 'but': 1.0, 'just': 1.0, 'and': 1.0, 'little': 1.0, 'chest': 1.0, 'a': 2.0, 'the': 2.0, 'twist': 1.0, 'that': 1.0, 'lot': 1.0, 'may': 1.0, 'my': 2.0, 'clumsiness': 1.0, 'son': 1.0, 'really': 1.0, 'seems': 1.0}
Word element => {'convertable': 1.0, 'on': 1.0, 'passed': 1.0, 'this': 1.0, 'of': 1.0, '1st': 2.0, 'un': 1.0, 'don': 2.0, 'easy': 1.0, 'safety': 2.0, 'buckle': 1.0, 'the': 3.0, 'complaint': 1.0, 'is': 2.0, 'that': 2.0, 'good': 1.0, 'carseat': 2.0, 'does': 1.0, 'find': 2.0, 'convert': 1.0, 'my': 3.0, 'and': 2.0, 'gotten': 1.0, 'it': 1.0, 'i': 5.0, 't': 2.0, 'a': 2.0, 'has': 1.0, 'only': 1.0, 'much': 1.0, 'latch': 2.0, 'neck': 1.0, 'overall': 1.0, 'head': 1.0, 'these': 1.0, 'support': 1.0, 'had': 1.0, 'either': 1.0, '2': 1.0, 'but': 1.0, 'will': 1.0, 'existed': 1.0, 'love': 1.0, 'to': 2.0, 'as': 4.0, 'all': 1.0, 'have': 1.0, 'way': 1.0, 'booster': 1.0, 'if': 1.0, 'known': 1.0, 'basic': 1.0, 'would': 1.0}
Word element => {'was': 1.0, 'to': 1.0, 'able': 1.0, 'being': 1.0, 'and': 1.0, 'holder': 1.0, 'guy': 1.0, '34': 2.0, 'loves': 1.0, 'big': 1.0, 'son': 1.0, 're': 1.0, 'cup': 1.0, 'my': 1.0, 'issues': 1.0, 'caused': 1.0, 'the': 4.0, 'that': 2.0, 'easy': 1.0, 'relatively': 1.0, 'strap': 1.0, 'see': 1.0, 'a': 1.0, 'middle': 1.0, 'car': 1.0, 'reviewers': 1.0, 'also': 1.0, 'in': 1.0, 'seems': 1.0, 'we': 1.0, 'goes': 1.0, 'other': 1.0, 'with': 1.0, 'legs': 1.0, 'not': 1.0, 'little': 1.0, 'short': 1.0, 'installation': 1.0, 'between': 1.0, 'agree': 1.0, 'so': 1.0, 'but': 1.0, 'far': 1.0, 'has': 1.0, 'when': 1.0, 'us': 2.0, 'any': 1.0}
Word element => {'happy': 1.0, 'choice': 1.0, 'britax': 1.0, 'looked': 1.0, 'read': 1.0, 'you': 1.0, 'magazine': 1.0, 'parents': 1.0, 'institute': 1.0, 'also': 1.0, 'research': 1.0, 'did': 2.0, 'had': 1.0, 'either': 1.0, 'wallet': 1.0, 'price': 1.0, 'off': 1.0, 'wipe': 1.0, 'just': 1.0, 'clean': 1.0, 'system': 1.0, 'use': 1.0, 'with': 2.0, 'models': 1.0, 'name': 1.0, 'booster': 1.0, 'convertible': 1.0, 'other': 1.0, 'deter': 1.0, 'anyone': 1.0, 'buckle': 1.0, 'in': 1.0, 'didn': 1.0, 'wouldn': 1.0, 'highway': 1.0, 'it': 3.0, 'has': 1.0, 'latch': 1.0, 'let': 1.0, 'replacement': 1.0, 'the': 5.0, 'recalled': 1.0, 'and': 2.0, 'free': 1.0, 'now': 1.0, 'insurance': 1.0, 'get': 1.0, 'easy': 4.0, 'break': 1.0, 'yes': 1.0, 'i': 4.0, 'decision': 1.0, 'point': 1.0, 'like': 1.0, 'know': 1.0, 'to': 5.0, 'seat': 3.0, 'went': 1.0, 'however': 1.0, 'their': 1.0, 'been': 1.0, 'that': 3.0, 'this': 3.0, 'based': 1.0, 'on': 1.0, 'car': 2.0, 'is': 3.0, 'material': 1.0, 'really': 1.0, 'especially': 1.0, 'longer': 1.0, 'love': 1.0, 'but': 1.0, 'can': 1.0, 'at': 1.0, 'keep': 1.0, 'my': 3.0, 'install': 1.0, 'nice': 1.0, '5yo': 1.0, 't': 2.0, 's': 1.0, 'a': 2.0, '5': 1.0, 'than': 1.0, 'harness': 1.0, 'bit': 1.0}
Word element => {'matters': 1.0, 'kiddo': 1.0, 'but': 1.0, 'space': 1.0, 'of': 1.0, 'up': 1.0, 'safe': 1.0, 'take': 1.0, 'isn': 1.0, 'one': 1.0, 'prefer': 1.0, 'ton': 1.0, 'd': 1.0, 'keeps': 1.0, 'ok': 1.0, 'an': 1.0, 'that': 3.0, 'been': 1.0, 'drink': 1.0, 'is': 1.0, 'car': 3.0, 'escape': 1.0, 'really': 2.0, '2008': 1.0, 'good': 1.0, 'my': 3.0, 'or': 1.0, 'cup': 1.0, 'very': 2.0, 'from': 1.0, 'and': 5.0, 'comfy': 1.0, 'holders': 1.0, 'it': 6.0, 'daughter': 1.0, 'just': 2.0, 'all': 1.0, 'seat': 2.0, 'year': 1.0, 'sturdy': 1.0, 'quality': 1.0, 'ford': 1.0, 't': 1.0, 'a': 4.0, 's': 4.0, 'snacks': 1.0, 'for': 3.0, 'rides': 1.0, 'bulky': 2.0, 'about': 1.0, 'so': 2.0, 'now': 1.0, 'in': 1.0, 'seems': 1.0, 'also': 1.0, 'graco': 1.0, 'during': 1.0, 'long': 1.0, 'there': 1.0, 'are': 2.0, 'overall': 1.0, 'i': 1.0, 'two': 1.0, 'using': 1.0, 'which': 1.0, 'great': 1.0, 'nice': 1.0}
Word element => {'would': 1.0, 'not': 2.0, 'the': 1.0, 'own': 1.0, 'purchase': 1.0, '3': 1.0, 'of': 1.0, 'these': 1.0, 'item': 1.0, 'this': 1.0, 'have': 1.0, 'i': 1.0, 'issues': 1.0, 'releasing': 1.0, 'with': 1.0, 'and': 1.0, 'buckle': 1.0, 'had': 1.0, 'many': 1.0}
Word element => {'again': 1.0, 'vehicle': 1.0, 'move': 1.0, 'in': 1.0, 'also': 1.0, 'washing': 1.0, 'easy': 2.0, 'off': 1.0, 'to': 2.0, 'comes': 1.0, 'all': 1.0, 'would': 1.0, 'holder': 1.0, 'cup': 1.0, 'a': 2.0, 'the': 1.0, 'these': 1.0, 'daughter': 1.0, 'covering': 1.0, 'of': 2.0, 'has': 1.0, 'buy': 1.0, 'i': 1.0, 'and': 4.0, 'install': 1.0, 'seats': 1.0, 'bought': 2.0, 'we': 4.0, 'for': 3.0, 'one': 4.0, 'love': 2.0, 'older': 1.0, 'durable': 1.0, 'it': 4.0, 'so': 1.0, 'heartbeat': 1.0, 'another': 2.0, 'from': 1.0, 'very': 2.0, 'son': 1.0, 's': 2.0, 'stylish': 1.0, 'our': 2.0, 'that': 2.0}
Word element => {'another': 1.0, 'need': 1.0, 'to': 1.0, 'enough': 1.0, 'old': 1.0, 'i': 2.0, 'enjoys': 1.0, 'till': 1.0, 'not': 1.0, 'seat': 2.0, 'car': 1.0, 'daughter': 1.0, 'am': 1.0, 'impressed': 1.0, 'and': 1.0, 'as': 1.0, 'my': 1.0, 'the': 1.0, 'really': 2.0, 'is': 1.0, 'this': 1.0, 'grows': 1.0, 'with': 2.0, 'it': 2.0, 'love': 1.0, 'well': 1.0, 'fact': 1.0, 'that': 1.0, 'she': 2.0}
Word element => {'seat': 1.0, 'looking': 1.0, 'anyone': 1.0, 'to': 1.0, 'would': 1.0, 'too': 1.0, 'on': 1.0, 'deal': 1.0, 'good': 1.0, 'at': 1.0, 'got': 1.0, 'boy': 1.0, 'picking': 1.0, 'did': 1.0, 'amazon': 1.0, 'is': 1.0, 'of': 1.0, 'before': 1.0, 'it': 1.0, 'research': 1.0, 'this': 3.0, 'fit': 1.0, 'facing': 1.0, 'recommend': 1.0, 'lot': 1.0, 'we': 2.0, 'front': 1.0, 'a': 5.0, 'product': 2.0, 'old': 1.0, 'great': 1.0, 'secure': 1.0, 'overall': 1.0, 'wonderfully': 1.0, 'and': 1.0, 'year': 1.0, 'my': 1.0, 'comfortable': 1.0, 'for': 2.0, 'one': 1.0}
Word element => {'this': 1.0, 'anyway': 1.0, 'shape': 1.0, 'butterfly': 1.0, 'due': 1.0, 'that': 1.0, 'maybe': 1.0, 'graco': 1.0, 'did': 1.0, 'like': 1.0, 'previous': 1.0, 'twisting': 1.0, 'straps': 1.0, 'issues': 1.0, 'not': 1.0, 'i': 2.0, 'old': 1.0, 'slot': 1.0, 'year': 1.0, 'it': 4.0, 'first': 1.0, 'with': 4.0, 'had': 2.0, 'accident': 1.0, 'easy': 2.0, 'my': 1.0, 'fits': 1.0, 'the': 5.0, 'shoulder': 1.0, '2': 1.0, 'install': 1.0, 'great': 1.0, '31lb': 1.0, 'pads': 1.0, 'any': 1.0, 'to': 3.0, 'grow': 1.0, 'seat': 3.0, 'recommend': 1.0, 'was': 1.0, 'crotch': 1.0, 'think': 1.0, 'on': 1.0, 'well': 2.0, '5': 1.0, 'water': 1.0, 'in': 1.0, 'will': 1.0, 'quality': 1.0, 'clean': 1.0, 'her': 1.0, 'highly': 1.0, 'material': 1.0, 'is': 2.0, 'and': 3.0, 'buckle': 1.0, 'pretty': 1.0, 'a': 3.0, 's': 1.0, 'we': 3.0, 'already': 1.0, 'so': 2.0, 'potty': 1.0, 'very': 1.0, 'little': 1.0, 'vinegar': 1.0, 'have': 1.0}
Word element => {'large': 1.0, 'enormously': 1.0, 'isn': 1.0, 'liberty': 1.0, 'on': 1.0, 'comment': 1.0, 'position': 1.0, 'facing': 1.0, 'used': 1.0, 'room': 1.0, 'impressed': 1.0, 'point': 1.0, 'into': 1.0, 'another': 1.0, 'purchase': 1.0, 'you': 1.0, 'jeep': 1.0, 'pounds': 1.0, 'rated': 1.0, 'old': 1.0, 'year': 2.0, '5': 2.0, 'may': 1.0, 'my': 1.0, 'destination': 1.0, 'car': 1.0, 'again': 1.0, 'fine': 1.0, 'we': 1.0, 'then': 2.0, 'out': 2.0, 'they': 2.0, 'previous': 1.0, 'just': 2.0, 'seats': 2.0, 'literally': 1.0, 'install': 1.0, 'easiest': 2.0, 'was': 2.0, 'to': 4.0, 'as': 2.0, 'carseat': 2.0, 'been': 3.0, 'put': 1.0, 'changing': 1.0, 'babies': 1.0, 'booster': 2.0, 'cup': 4.0, 'secure': 1.0, 'best': 1.0, 'no': 1.0, 'years': 1.0, 'have': 6.0, 'none': 1.0, 'bought': 1.0, 'for': 7.0, 't': 3.0, 'fit': 2.0, 'rear': 1.0, 'one': 1.0, 'try': 1.0, 'harness': 2.0, 'back': 1.0, 'most': 1.0, 'but': 3.0, '2': 1.0, 'budge': 1.0, 'our': 1.0, 'how': 1.0, 'owned': 2.0, 'a': 6.0, 'graco': 2.0, 'any': 1.0, 'mom': 1.0, 'alone': 1.0, 'because': 1.0, 'that': 7.0, 'deep': 2.0, 'by': 2.0, 'being': 2.0, 'cannot': 1.0, 'seat': 4.0, 'in': 6.0, 'having': 1.0, 'is': 4.0, 'carseats': 1.0, 'holders': 1.0, 'kids': 1.0, 'get': 3.0, 'deepest': 1.0, 'reach': 1.0, 'assembly': 1.0, 'matter': 1.0, 'hard': 1.0, 'and': 14.0, 'plenty': 1.0, 'with': 4.0, 'he': 1.0, 'far': 2.0, 'models': 1.0, 'him': 1.0, 'it': 10.0, 'the': 23.0, 'of': 9.0, 'had': 1.0, 'straps': 1.0, '65': 1.0, 'are': 2.0, 'same': 1.0, 'many': 1.0, 'others': 2.0, 'not': 2.0, 'would': 2.0, 'knock': 1.0, 'i': 16.0, 'cupholder': 1.0, 'fits': 1.0, 'all': 2.0, 'other': 2.0, 'manufactured': 1.0, 'expecting': 1.0, 'every': 1.0, '15': 1.0, 'brand': 1.0, 'this': 3.0, 'bottle': 2.0, 'can': 3.0, 'so': 3.0, 'has': 2.0, 'location': 1.0, 'them': 2.0, 'safety': 1.0, 'latch': 1.0, 'tired': 1.0, 'up': 1.0, 'change': 2.0, 'sippy': 1.0, 'water': 1.0, 'until': 1.0, 'tried': 1.0, 'own': 1.0, 'system': 1.0, 'holder': 2.0, 'enough': 1.0, 'tip': 1.0, 'am': 2.0, 'when': 1.0, '1': 1.0, 'reaching': 1.0}
Word element => {'ones': 1.0, 'their': 1.0, 'for': 1.0, 'seats': 1.0, 'car': 1.0, 'second': 1.0, 'as': 1.0, 'little': 2.0, 'chair': 1.0, 'so': 1.0, 'loves': 1.0, 'i': 2.0, 'man': 1.0, 'my': 2.0, 'sleeps': 1.0, 'are': 1.0, 'easy': 1.0, 'have': 1.0, 'all': 1.0, 'in': 1.0, 'this': 1.0, 'he': 1.0, 'it': 3.0, 'recommended': 1.0, 'buying': 1.0, 'to': 1.0, 'do': 1.0, 'sisters': 1.0, 'and': 1.0, 'they': 1.0}
Word element => {'snap': 1.0, 'ackward': 1.0, 'baby': 1.0, 'very': 1.0, 'making': 1.0, 'close': 1.0, 'on': 1.0, 'unlocking': 1.0, 'daughter': 1.0, 'too': 1.0, 'and': 2.0, 'such': 1.0, 'locking': 1.0, 'old': 1.0, 'tight': 1.0, 'my': 2.0, 'this': 1.0, 'it': 4.0, 'with': 2.0, 'car': 1.0, 'time': 1.0, 'is': 3.0, 'grand': 1.0, 'had': 2.0, 'seat': 2.0, 'to': 3.0, 'switch': 1.0, 'for': 2.0, 'bought': 1.0, 'one': 1.0, 'who': 1.0, 'latch': 1.0, 'buckles': 2.0, 'that': 2.0, 'he': 2.0, '6': 1.0, 'years': 1.0, '34': 1.0, 'i': 3.0, '4': 1.0, 'law': 1.0, 'uses': 1.0, 'the': 5.0, 'deal': 1.0, 'difficult': 1.0, 'son': 1.0, 'said': 1.0, 'in': 2.0, 'also': 1.0, 'a': 1.0, 'could': 1.0, 'manage': 1.0, '2': 1.0, 'but': 1.0, 'easy': 1.0, 'not': 1.0, 'those': 1.0}
Word element => {'be': 1.0, 'would': 1.0, 'seemed': 1.0, 'just': 1.0, 'forward': 1.0, 'head': 1.0, 'upright': 1.0, 'so': 1.0, 'thing': 1.0, 'did': 1.0, 'everyone': 1.0, 'sleeping': 1.0, 'like': 2.0, 'trip': 1.0, 'will': 1.0, 'at': 1.0, 'child': 3.0, 'made': 1.0, 'the': 4.0, 'didn': 1.0, 'sits': 2.0, '2': 1.0, 'my': 3.0, 'cup': 1.0, '000': 1.0, 'securely': 1.0, 'fell': 1.0, 'it': 4.0, 'with': 2.0, 'glad': 1.0, 'well': 1.0, 'comfort': 1.0, 'when': 1.0, 'road': 1.0, 'am': 1.0, 'because': 1.0, '14': 1.0, 'mile': 1.0, 'car': 1.0, 'really': 1.0, 'advertized': 1.0, 'padding': 1.0, 'more': 1.0, 'is': 1.0, 'holds': 1.0, 'that': 1.0, 'loves': 1.0, 'feature': 1.0, 'i': 3.0, 'true': 1.0, 'grow': 1.0, 'seat': 1.0, 'to': 1.0, 'doesn': 1.0, 'was': 2.0, 'what': 1.0, 'much': 1.0, 'and': 3.0, 'recline': 2.0, 'this': 1.0, 'wish': 1.0, 's': 1.0, 't': 2.0, 'we': 1.0, 'a': 2.0, 'very': 2.0, 'little': 1.0, 'for': 1.0, 'uncomfortable': 1.0, 'one': 1.0, 'months': 1.0, 'holder': 1.0, 'already': 1.0}
Word element => {'off': 1.0, 'knock': 1.0, 'd': 1.0, 'disappointing': 1.0, 'little': 1.0, 'twist': 1.0, 'tend': 1.0, 'easy': 1.0, 'loosened': 1.0, 'after': 1.0, 'me': 1.0, 'believe': 1.0, 'store': 1.0, 'go': 1.0, 'budget': 1.0, 'whatever': 1.0, '100': 1.0, 'paying': 1.0, 'still': 1.0, 'don': 2.0, 'does': 1.0, 'tops': 1.0, 'flat': 2.0, 'lay': 1.0, 'had': 1.0, 'configuration': 1.0, 'weaker': 1.0, 'up': 3.0, 'thus': 1.0, 'wide': 1.0, 'about': 1.0, 'only': 1.0, 'slots': 1.0, 'behind': 1.0, 'ends': 1.0, 'loop': 1.0, 'there': 1.0, 'worth': 1.0, '4': 1.0, 'sharpened': 1.0, 'was': 1.0, 'villan': 1.0, 'or': 2.0, 'something': 1.0, '38': 1.0, 'width': 1.0, 'compared': 1.0, 'small': 1.0, 'plate': 3.0, 'metal': 2.0, 'opinion': 1.0, 'use': 2.0, 'however': 1.0, 'get': 2.0, 'main': 1.0, 'in': 16.0, 'seat': 4.0, 'pros': 1.0, 'under': 1.0, '6': 1.0, 'manual': 2.0, 'appears': 1.0, 'would': 1.0, 'shown': 2.0, 'straps': 6.0, 'extra': 1.0, 'commented': 2.0, 'child': 4.0, 'try': 1.0, 'price': 1.0, 'thing': 2.0, 'stiff': 1.0, '2': 3.0, 'wearing': 1.0, 'this': 3.0, 'yes': 1.0, 'follow': 1.0, 'point': 1.0, 'smallest': 1.0, 'large': 2.0, 'per': 1.0, 'long': 1.0, 'crotchular': 1.0, 'according': 1.0, 'sorta': 1.0, 'feel': 2.0, 'the': 58.0, 'once': 1.0, 'page': 2.0, 'not': 8.0, 'ton': 1.0, 'other': 2.0, 'fits': 1.0, 'lumbar': 1.0, 'on': 6.0, 'indeed': 1.0, 'fail': 1.0, 'features': 1.0, 'since': 1.0, '1': 3.0, 'ordered': 1.0, 'return': 1.0, 'instructions': 2.0, 'sure': 2.0, 'month': 1.0, 'kids': 1.0, 'that': 7.0, 'support': 3.0, 'car': 1.0, 'some': 1.0, 'spent': 1.0, 'one': 3.0, '5': 1.0, 'probably': 1.0, 'region': 2.0, 'before': 1.0, 'of': 8.0, 'even': 2.0, 'base': 1.0, 'have': 8.0, 'your': 1.0, 'many': 4.0, 'corresponding': 1.0, 'at': 2.0, 'if': 6.0, 'want': 1.0, 'second': 4.0, 'body': 3.0, 'reviewers': 1.0, 'strap': 5.0, 'so': 4.0, 'is': 16.0, 'can': 1.0, 'inch': 1.0, 'clips': 2.0, 'did': 1.0, 'time': 1.0, 'throw': 1.0, 'tall': 1.0, 'model': 1.0, 'what': 2.0, 'when': 1.0, 'crotch': 6.0, 'half': 1.0, 'here': 4.0, 'hold': 1.0, 'incredibly': 1.0, 'another': 1.0, 'think': 1.0, 'bought': 1.0, 'better': 2.0, 'copy': 2.0, 'looks': 3.0, 'remove': 4.0, 'be': 2.0, 'it': 9.0, 'but': 4.0, 'turns': 1.0, 'out': 1.0, 'conclusion': 1.0, 'while': 1.0, 'could': 1.0, 'will': 1.0, 'a': 18.0, 'm': 1.0, 'doesn': 2.0, 's': 3.0, 'maybe': 1.0, 'junction': 2.0, 'you': 7.0, 'for': 7.0, 'into': 1.0, 'fabric': 1.0, 'short': 2.0, 'do': 1.0, 'edit': 1.0, 'among': 1.0, 'move': 1.0, 'slot': 4.0, 'make': 1.0, 'room': 1.0, 'my': 6.0, 'are': 7.0, 'agonizing': 1.0, 'britax': 6.0, 'with': 2.0, 'using': 1.0, 'hard': 1.0, 'plastic': 1.0, 'and': 5.0, 'just': 2.0, 'son': 1.0, 'seats': 2.0, 'insert': 1.0, 'somehow': 1.0, 'pants': 1.0, 'setting': 1.0, 'congratulations': 1.0, 'matter': 1.0, 'usability': 1.0, 'now': 1.0, 'space': 2.0, '56': 1.0, 'enough': 2.0, 'who': 2.0, 'vehicle': 1.0, 'rated': 2.0, 'might': 1.0, 'ski': 1.0, 'plenty': 1.0, 'cheaper': 1.0, 'like': 2.0, 'fine': 1.0, 'bunched': 1.0, 'configured': 1.0, 'ninja': 1.0, 'batman': 1.0, 'points': 1.0, 'he': 1.0, 'love': 1.0, 'need': 1.0, 'harness': 3.0, 'also': 1.0, 'sitting': 1.0, 'as': 4.0, 'alleged': 1.0, 't': 4.0, 'belt': 1.0, 'likely': 1.0, 'too': 3.0, '3': 3.0, 'lb': 1.0, 'weight': 1.0, 'shoulder': 1.0, 'limit': 1.0, 'has': 1.0, 'anyway': 1.0, 'again': 1.0, 'which': 3.0, '43': 1.0, 'case': 1.0, 'booster': 1.0, 'squeeze': 1.0, 'migrate': 1.0, 'finally': 1.0, 'i': 10.0, 'scheme': 1.0, 'ridiculously': 1.0, 'secure': 1.0, 'star': 1.0, 'them': 1.0, 'to': 15.0, 'right': 1.0, 'issue': 2.0, 'they': 5.0, 'bit': 6.0, 'than': 5.0, 'consumer': 2.0, 'research': 1.0, 'quite': 1.0, 'magazine': 2.0, 'name': 1.0, 'highest': 1.0, 'convertible': 1.0, 'safety': 2.0, 'least': 1.0, 'flimsier': 2.0, 'padding': 1.0, 'cons': 2.0, 'buckles': 2.0, 'harder': 1.0, 'adult': 1.0, 'an': 2.0, 'buckle': 2.0, 'operate': 2.0}
Word element => {'come': 1.0, 'hope': 1.0, 'unforseen': 1.0, 'barring': 1.0, 'purchase': 1.0, 'quite': 1.0, 'put': 1.0, 'before': 1.0, 'sun': 1.0, 'parked': 1.0, 'components': 1.0, 'even': 1.0, 'tends': 1.0, 'husband': 1.0, 'cars': 1.0, 'interiors': 1.0, 'mine': 1.0, 'yuk': 1.0, 'plaid': 1.0, 'flowers': 1.0, 'obnoxious': 1.0, 'years': 1.0, 'no': 2.0, 'little': 1.0, 'nice': 1.0, 'back': 1.0, 'any': 1.0, 'idea': 1.0, 's': 3.0, 'stay': 1.0, 'charcoal': 1.0, 'course': 1.0, 'on': 1.0, 'throw': 1.0, 'styling': 1.0, 'prefers': 1.0, 'store': 1.0, 'are': 1.0, 'britax': 1.0, 'out': 1.0, 'looking': 1.0, 'does': 1.0, 'proteciton': 1.0, 'head': 1.0, 'routing': 1.0, 'think': 2.0, 'model': 1.0, 'older': 1.0, 'stability': 1.0, 'adds': 1.0, 'holder': 2.0, 'system': 1.0, 'tether': 1.0, 'latch': 2.0, 'secure': 2.0, 'later': 1.0, 'very': 1.0, 'either': 1.0, 'view': 1.0, 'extra': 1.0, 'block': 1.0, 'a': 3.0, 'we': 4.0, 't': 3.0, 'like': 6.0, 'will': 5.0, 'can': 1.0, 'spaces': 1.0, 'so': 1.0, 'as': 6.0, 'grow': 1.0, 'seats': 2.0, 'did': 1.0, 'keep': 1.0, 'recalls': 1.0, 'blends': 1.0, 'have': 3.0, 'use': 2.0, 'her': 6.0, 'good': 2.0, 'get': 1.0, 'months': 2.0, 'for': 5.0, 'assemble': 1.0, 'grows': 1.0, 'this': 4.0, 'want': 1.0, 'is': 7.0, 'with': 5.0, 'down': 1.0, 'turned': 1.0, 'also': 3.0, 'us': 1.0, 'pretty': 1.0, 'to': 15.0, 'hoping': 1.0, 'problems': 1.0, 'that': 5.0, 'three': 1.0, 'into': 1.0, 'you': 2.0, 'when': 2.0, 'blind': 1.0, 'last': 1.0, 'am': 2.0, 'arms': 1.0, 'and': 13.0, 'or': 1.0, 'need': 4.0, 'etc': 1.0, 'day': 1.0, 'old': 1.0, 'hot': 1.0, 'toys': 1.0, 'point': 1.0, 'our': 1.0, 'watches': 1.0, 'cow': 1.0, 'of': 4.0, 'the': 23.0, 'be': 3.0, 'right': 1.0, 'll': 2.0, 'my': 6.0, 'didn': 1.0, 'eventually': 1.0, 'starting': 1.0, 'it': 9.0, 'cool': 2.0, 'window': 1.0, 'car': 6.0, 'graco': 2.0, 'gray': 1.0, 'wise': 1.0, 'got': 1.0, 'daughter': 2.0, 'cup': 2.0, 'booster': 1.0, '14': 1.0, 'who': 1.0, '12': 1.0, 'padding': 1.0, 'answer': 1.0, 'problem': 1.0, 'doesn': 1.0, 'easy': 2.0, 'putting': 1.0, 'i': 9.0, 'well': 4.0, 'buying': 1.0, 'continue': 1.0, 'end': 1.0, 'harness': 1.0, 'weight': 1.0, 'height': 1.0, 'sippy': 1.0, 'affordable': 1.0, 'up': 1.0, 'tried': 1.0, 'seems': 2.0, 'until': 1.0, 'big': 3.0, 'enough': 1.0, 'not': 3.0, '5': 1.0, 'seat': 5.0, 'in': 8.0, 'm': 1.0, 'used': 1.0, 'seatbelt': 2.0, 'from': 2.0, 'happy': 1.0, 'one': 6.0, 'rear': 2.0, 'facing': 1.0, 'versitile': 1.0, 'print': 1.0, 'but': 3.0, 'aren': 1.0, 'all': 1.0, 'an': 1.0, 'ever': 1.0, 'fits': 2.0, 'other': 1.0, 'without': 1.0, 'mother': 2.0, 'she': 5.0, 'baby': 2.0, 'was': 1.0, 'sedan': 1.0, 'suv': 1.0}
Word element => {'car': 1.0, 'longer': 1.0, 'no': 1.0, 'he': 1.0, 'until': 1.0, 'his': 1.0, 'us': 1.0, 'too': 1.0, 'for': 1.0, 'year': 1.0, 'needs': 1.0, 'in': 1.0, 'tall': 1.0, 'a': 2.0, 'convertible': 1.0, 'my': 1.0, 'old': 1.0, 'i': 1.0, '2': 1.0, 'great': 1.0, 'was': 1.0, 'wanted': 1.0, 'him': 1.0, 'harness': 1.0, 'seat': 2.0, 'that': 1.0, 'but': 1.0, 'stoll': 1.0, 'will': 1.0, 'last': 1.0}
Word element => {'back': 1.0, 'put': 1.0, 'fieldt': 1.0, 'times': 1.0, 'out': 1.0, 'here': 1.0, 'fit': 1.0, 'have': 2.0, 'cups': 1.0, 'cup': 1.0, 'needed': 1.0, 'which': 1.0, 'safety': 1.0, 'taller': 1.0, 'older': 1.0, 'gets': 1.0, 'as': 2.0, 'carseat': 2.0, 'taken': 1.0, 'finally': 1.0, 'researched': 1.0, 'last': 1.0, 'her': 2.0, 'would': 1.0, 'several': 1.0, 'down': 1.0, 'for': 4.0, 'time': 2.0, 'tall': 1.0, 'and': 6.0, 'easy': 1.0, 'sold': 1.0, 'moms': 1.0, 'us': 1.0, 'pain': 1.0, 'carseats': 1.0, 'kids': 1.0, 'this': 4.0, 'jeans': 1.0, 'like': 2.0, 'get': 1.0, 'scan': 1.0, 'hate': 1.0, 'convertible': 1.0, 'there': 1.0, 'are': 1.0, '2': 1.0, 'so': 2.0, 'can': 1.0, 'of': 1.0, 'longer': 1.0, 'the': 10.0, 'a': 4.0, 's': 1.0, 'well': 1.0, 'i': 10.0, 'ratings': 1.0, 'got': 1.0, 'daughter': 2.0, 'had': 1.0, 'when': 1.0, 'what': 2.0, 'purchased': 1.0, 'buying': 2.0, 'with': 1.0, 'to': 5.0, 'that': 3.0, 'remove': 1.0, 'choose': 1.0, 'is': 4.0, 'say': 1.0, 'outgrow': 1.0, 'seat': 3.0, 'in': 3.0, 'wrong': 1.0, 'my': 3.0, 'me': 1.0, 'those': 1.0, 'really': 1.0, 'customer': 1.0, 'material': 1.0, 'long': 1.0, 'on': 3.0, 'rating': 1.0, 'too': 2.0, 'one': 2.0, 'was': 3.0, 'been': 1.0, 'amazon': 1.0, 'hear': 1.0, 'fits': 1.0, 'all': 2.0, 'other': 1.0, 'after': 1.0, 'chose': 1.0, 'read': 1.0, 'very': 1.0, 'both': 1.0, 'we': 2.0, 'reviews': 1.0, 'came': 1.0, 'glad': 1.0, 'did': 1.0, 'it': 2.0, 'many': 1.0, 'she': 2.0, 'trips': 1.0, 'always': 1.0, 'them': 2.0, 'has': 1.0, 'great': 5.0, 'nice': 1.0, 'second': 1.0, 'holder': 1.0, 'raise': 1.0, 'husband': 1.0, 'head': 1.0, 'something': 3.0, 'says': 1.0, 'its': 3.0, 'comfy': 1.0, 'car': 2.0, 'support': 1.0}
Word element => {'degrees': 1.0, 'new': 1.0, 'just': 1.0, 'think': 1.0, 'i': 1.0, 'but': 1.0, 'doesn': 2.0, 'forward': 1.0, 'his': 3.0, 'carseat': 1.0, 'when': 1.0, 'able': 1.0, 'sit': 1.0, 'falls': 1.0, 'little': 1.0, 'yet': 1.0, 'my': 1.0, 'in': 2.0, 'head': 1.0, 'like': 1.0, 'the': 2.0, 'asleep': 1.0, 'brand': 1.0, 'old': 1.0, '0': 1.0, 'perfect': 1.0, 'this': 2.0, 'he': 2.0, 'hard': 1.0, 'loves': 1.0, '21': 1.0, 'it': 4.0, 'month': 1.0, 'take': 1.0, 'more': 1.0, 'is': 5.0, 'fall': 1.0, 'upright': 1.0, 'evenflow': 2.0, 'setup': 1.0, 'much': 2.0, 'easier': 1.0, 'unbuckle': 1.0, 'because': 1.0, 'does': 1.0, 'than': 1.0, 'and': 2.0, 'up': 1.0, 'space': 1.0, 'outside': 1.0, 'to': 2.0, 'as': 1.0, 'seat': 1.0, 'clips': 1.0, 'are': 1.0, 't': 2.0, 'a': 1.0}
Word element => {'value': 1.0, 'to': 1.0, 'seat': 1.0, 'in': 1.0, 'him': 1.0, 'just': 1.0, 'and': 1.0, 'had': 2.0, 'loves': 1.0, 'even': 2.0, 'reclines': 1.0, 'works': 1.0, 'harness': 1.0, 'top': 1.0, 'quickly': 1.0, 'some': 1.0, 'was': 2.0, 'on': 2.0, 'ready': 1.0, 'his': 1.0, 'year': 1.0, 'little': 1.0, 'very': 1.0, 'face': 1.0, 'seats': 2.0, 'the': 4.0, 'i': 2.0, 'sport': 1.0, 'outgrowing': 1.0, 'my': 1.0, 'son': 1.0, 'facing': 1.0, 'last': 1.0, 'a': 1.0, '15': 1.0, 'for': 1.0, 'bought': 1.0, 'one': 1.0, 'until': 1.0, 'great': 2.0, '1': 1.0, 'comfortable': 1.0, 'forward': 2.0, 'will': 1.0, 'cubbies': 1.0, 'old': 2.0, 'kept': 1.0, 'graco': 1.0, 'comfort': 1.0, 'convertible': 2.0, 'infant': 1.0, 'car': 2.0, 'wish': 1.0, 'this': 1.0, 'month': 1.0, 'it': 1.0, 'he': 2.0, 'forever': 1.0, 'their': 1.0, 'never': 1.0, 'keeps': 1.0, 'slots': 1.0, 'with': 1.0, 'adjusting': 1.0, 'growing': 1.0, 'height': 1.0, 'absolutely': 1.0}
Word element => {'great': 1.0, 'price': 1.0, 'harnesses': 1.0, 'alternative': 1.0, 'much': 1.0, 'started': 1.0, 'into': 1.0, 'marathon': 1.0, 'been': 1.0, 'loves': 2.0, 'it': 5.0, 'him': 2.0, 'checking': 1.0, 'picking': 1.0, 'roundabout': 1.0, 'inconvenience': 1.0, 'i': 5.0, 'the': 8.0, 'heavy': 1.0, 'dig': 1.0, 'family': 1.0, 'my': 2.0, 'those': 1.0, 'minor': 1.0, 'we': 2.0, 'a': 6.0, 't': 1.0, 'recaro': 2.0, 'chore': 1.0, 'get': 2.0, 'and': 5.0, 'seats': 1.0, 'when': 2.0, 'harnessed': 1.0, 'young': 1.0, 'that': 2.0, 'easily': 1.0, 'looking': 1.0, 'such': 2.0, 'for': 2.0, '65': 1.0, 'sport': 1.0, 'britax': 1.0, 'them': 1.0, 'always': 1.0, 'have': 4.0, 'but': 2.0, 'change': 1.0, 'sitting': 1.0, 'himup': 1.0, 'his': 1.0, '40': 2.0, 'cup': 2.0, '2yr': 1.0, 'to': 4.0, 'in': 2.0, 'seat': 4.0, 'any': 2.0, 'was': 2.0, 'store': 1.0, 'doesn': 1.0, 'after': 1.0, 'can': 1.0, 'so': 3.0, 'research': 1.0, 'out': 3.0, 'keep': 1.0, 'found': 1.0, 'this': 1.0, 'wish': 1.0, 'at': 2.0, 'is': 4.0, 'old': 1.0, 'wonderful': 1.0, 'front': 1.0, 'son': 1.0, 'gets': 1.0, 'under': 1.0, 'holder': 2.0, 'good': 1.0, 'which': 1.0, 'he': 3.0, 'love': 1.0, 'far': 1.0, 'falling': 1.0, 'better': 1.0, 'than': 1.0, 'only': 2.0, 'usually': 1.0, 'on': 2.0, 've': 1.0, 'used': 1.0, 'thing': 1.0, 'they': 1.0, 'd': 1.0, 'buckle': 2.0, 'an': 1.0, 'attachment': 1.0, 'back': 1.0, 'outgrew': 1.0, 'from': 2.0}
Word element => {'would': 1.0, 'that': 1.0, 'so': 3.0, 'fabric': 1.0, 'bad': 1.0, 'and': 3.0, 'cusions': 1.0, 'came': 1.0, 'now': 1.0, 'item': 2.0, 'missing': 1.0, 'using': 1.0, 'cheap': 1.0, 'for': 2.0, 'friend': 1.0, 'smell': 1.0, 'feature': 1.0, 'are': 2.0, 'the': 6.0, 'but': 2.0, '2': 1.0, 'to': 1.0, 'seat': 1.0, 'recommend': 1.0, 'was': 2.0, 'doesn': 1.0, 'belt': 1.0, 'white': 1.0, 'car': 1.0, 'with': 1.0, 'it': 3.0, 'skin': 1.0, 'comparing': 1.0, 'stuff': 1.0, 'finished': 1.0, 'is': 2.0, 'really': 1.0, 'dirty': 1.0, 'from': 1.0, 'storage': 1.0, 'baby': 1.0, 'enough': 1.0, 'overall': 1.0, 'head': 1.0, 'support': 1.0, 'this': 1.0, 'soft': 1.0, 'recline': 2.0, 'there': 1.0, 'plastic': 1.0, 'handrests': 1.0, 'not': 3.0, 'poorly': 1.0, 'a': 2.0, 'we': 1.0, 't': 1.0, 's': 1.0}
Word element => {'investment': 1.0, 'worth': 1.0, 'also': 1.0, 'price': 1.0, 'old': 1.0, 'an': 1.0, 'months': 1.0, 'is': 1.0, 'our': 1.0, 'definitely': 1.0, 'car': 1.0, 'amazing': 1.0, 'what': 1.0, 'comfortable': 1.0, 'do': 1.0, 'and': 2.0, 'son': 1.0, 'very': 1.0, 'seat': 1.0, 'just': 1.0, 'loves': 1.0, '22': 1.0, 'he': 1.0, 'it': 1.0, 'the': 1.0, 'great': 1.0, 'so': 1.0, 'we': 1.0, 'a': 1.0}
Word element => {'in': 1.0, 'complain': 1.0, 'nice': 1.0, 'never': 1.0, 'holder': 1.0, 'love': 1.0, 'protection': 1.0, 'too': 1.0, 'kids': 2.0, 'cup': 1.0, 'my': 2.0, 'seat': 2.0, 'good': 1.0, 'a': 2.0, 'is': 4.0, 'car': 1.0, 'and': 2.0, 'it': 4.0, 'this': 2.0, 'only': 1.0, 'con': 1.0, 'but': 1.0, 'bit': 1.0, 'great': 1.0, 'the': 2.0, 'such': 1.0, 'heavy': 1.0, 'bulky': 1.0, 'provides': 1.0, 'worth': 1.0}
Word element => {'recommend': 1.0, 'spills': 1.0, 've': 1.0, 'we': 1.0, 'nicely': 1.0, 'up': 1.0, 'cleans': 1.0, 'fabric': 1.0, 'oh': 1.0, 'with': 1.0, 'issues': 1.0, 'gets': 1.0, 'definitely': 1.0, 'keeps': 2.0, 'like': 1.0, 'which': 1.0, 'know': 2.0, 'sleeping': 1.0, 'never': 1.0, 'some': 1.0, 'by': 1.0, 'seats': 1.0, 'rating': 1.0, 'a': 6.0, 's': 1.0, 't': 1.0, 'could': 1.0, 'stars': 1.0, 'kept': 1.0, 'wanted': 1.0, '5': 2.0, 'and': 5.0, 'you': 1.0, 'when': 1.0, 'as': 1.0, 'heavy': 1.0, 'more': 1.0, 'is': 5.0, 'loves': 1.0, 'on': 2.0, 'put': 1.0, 'from': 3.0, 'while': 1.0, 'son': 4.0, 'not': 1.0, 'our': 1.0, 'to': 2.0, 'car': 5.0, 'it': 6.0, 'secures': 1.0, 'me': 1.0, 'may': 1.0, 'my': 5.0, 'looks': 1.0, 'higher': 1.0, 'highly': 1.0, 'this': 7.0, 'sleeper': 1.0, 'couple': 1.0, 'weight': 1.0, 'well': 1.0, 'i': 9.0, 'cupholder': 1.0, 'tight': 1.0, 'would': 2.0, 'harness': 1.0, 'sharp': 1.0, 'than': 1.0, 'point': 1.0, 'that': 2.0, 'problems': 1.0, 'inexpensive': 1.0, 'old': 1.0, 'cubbies': 1.0, 'people': 1.0, 'the': 10.0, 'longer': 1.0, 'but': 3.0, 'quality': 1.0, 'fantastic': 1.0, 'option': 1.0, 'safer': 1.0, 'seat': 6.0, 'in': 4.0, 'very': 3.0, 'say': 1.0, 'comfortable': 1.0, '1': 1.0, 'nice': 1.0, 'steel': 1.0, 'he': 2.0, 'had': 2.0, 'no': 2.0, 'about': 1.0, 'day': 1.0, 'unlike': 1.0, 'headrest': 1.0, 'other': 1.0, 'combo': 1.0, 'his': 1.0, 'head': 1.0, 'frame': 1.0, 'upright': 1.0, 'stays': 1.0, 'built': 1.0, 'finally': 1.0, 'have': 3.0, 'wasn': 1.0, 'market': 1.0, 'sure': 1.0, 'give': 1.0, 'black': 1.0, 'grey': 1.0, 'color': 1.0, 'ordered': 1.0, 'if': 1.0}
Word element => {'needed': 1.0, 'ride': 1.0, 'safe': 1.0, 'have': 1.0, 'that': 1.0, 'glad': 1.0, 'with': 1.0, 'happy': 1.0, 'very': 1.0, 'possible': 1.0, 'point': 1.0, '5': 1.0, 'car': 2.0, 'extra': 1.0, 'needing': 1.0, 'an': 1.0, 'but': 1.0, 'as': 4.0, 'seat': 2.0, 'our': 4.0, 'to': 3.0, 'long': 2.0, 'affordable': 1.0, 'came': 1.0, 'it': 2.0, 'counter': 1.0, 'children': 1.0, 'purchase': 1.0, 'family': 1.0, 'marathon': 1.0, 'graco': 1.0, 'am': 1.0, 'when': 1.0, 'are': 2.0, 'britax': 2.0, 'the': 4.0, 'is': 2.0, 'more': 1.0, 'for': 2.0, 'grandparents': 1.0, 'or': 1.0, 'us': 1.0, 'occasional': 1.0, 'in': 3.0, 'trip': 1.0, 'dad': 1.0, 'we': 3.0, 'a': 3.0, 's': 1.0, 'reviewed': 1.0, 'truck': 1.0, 'its': 1.0, 'much': 1.0, 'nautilus': 2.0, 'then': 1.0, 'harnass': 1.0, 'part': 1.0, 'and': 2.0, 'third': 1.0, 'equally': 1.0, 'kids': 1.0, 'this': 1.0, 'perfect': 1.0, 'allows': 1.0, 'keep': 1.0}
Word element => {'any': 1.0, 'really': 1.0, 'expensive': 1.0, 'should': 1.0, 'place': 1.0, 'experts': 1.0, 'sorry': 1.0, 'was': 1.0, 'line': 1.0, 'right': 1.0, 'set': 1.0, 'material': 1.0, 'regular': 1.0, 'new': 1.0, 'going': 1.0, 'heat': 1.0, 'have': 2.0, 'his': 1.0, 'son': 1.0, 'detach': 1.0, 'not': 1.0, 'feared': 1.0, 'stick': 1.0, 'bottom': 2.0, 'price': 1.0, 'year': 1.0, 'harness': 1.0, '5': 2.0, 'without': 1.0, 'spent': 1.0, 'degree': 1.0, 'never': 1.0, 'would': 2.0, 'negates': 1.0, 'people': 1.0, 'half': 1.0, 'both': 1.0, 'better': 2.0, 'backseat': 1.0, 'our': 1.0, 'middle': 1.0, 'little': 2.0, 'specifically': 1.0, '110': 1.0, 'about': 1.0, 'lodged': 1.0, 'untangle': 1.0, 'for': 1.0, 'fabric': 2.0, 'to': 12.0, 'live': 1.0, 'might': 1.0, 'we': 4.0, 'belt': 1.0, 'ago': 1.0, 't': 3.0, 's': 2.0, 'm': 1.0, 'seat': 12.0, 'in': 4.0, 'buckle': 3.0, 'first': 1.0, 'crannies': 1.0, 'rests': 1.0, 'amazon': 1.0, 'so': 3.0, 'warmer': 1.0, 'is': 9.0, 'more': 2.0, 'fan': 1.0, '4': 2.0, 'i': 11.0, '3': 3.0, 'on': 1.0, 'arm': 1.0, 'scared': 1.0, 'from': 3.0, 'hard': 3.0, 'while': 1.0, 'and': 7.0, 'since': 1.0, '1': 1.0, 'clean': 4.0, 'car': 8.0, 'this': 7.0, 'be': 3.0, 'trying': 1.0, 'bought': 2.0, 'than': 1.0, 'row': 2.0, 'huge': 2.0, 'one': 2.0, 'rubber': 1.0, 'after': 2.0, 'aspect': 1.0, 'use': 5.0, 'drains': 1.0, 'sooo': 1.0, 'able': 3.0, 'things': 1.0, 'nooks': 1.0, 'climate': 1.0, 'wasn': 1.0, 'out': 1.0, 'wearing': 1.0, '2': 1.0, 'food': 1.0, 'of': 5.0, 'the': 17.0, 'point': 2.0, 'started': 2.0, 'covers': 2.0, 'like': 4.0, 'very': 1.0, 'cannot': 1.0, 'school': 1.0, 'pieces': 2.0, 'operate': 1.0, 'hair': 1.0, 'crafts': 1.0, 'sink': 1.0, 'get': 2.0, 'know': 1.0, 'easy': 1.0, 'into': 1.0, 'fears': 1.0, 'because': 2.0, 'that': 3.0, 'a': 7.0, 'small': 1.0, 'under': 3.0, 'quarter': 1.0, 'it': 10.0, 'bunch': 1.0, 'listened': 1.0, 'much': 4.0, 'put': 1.0, 'do': 1.0, 'when': 1.0, 'what': 1.0, 'extremely': 2.0, 'gross': 1.0, 'also': 2.0, 'will': 1.0, 'scares': 1.0, 'my': 2.0, 'me': 2.0, 'especially': 1.0, 'where': 2.0, 'off': 3.0, 'see': 1.0, 'isn': 1.0, 'buckles': 1.0, 'don': 1.0, 'if': 1.0, 'rust': 1.0, 'less': 1.0, 'water': 1.0, 'up': 3.0, 'takes': 1.0, 'playing': 1.0, 'an': 1.0, 'adult': 1.0, 'years': 1.0, 'no': 1.0}
Word element => {'would': 1.0, 'loves': 1.0, 'cupholders': 1.0, 'also': 1.0, 'by': 1.0, 'safety': 1.0, 'highly': 1.0, 'rated': 1.0, 'according': 1.0, 'comfortable': 1.0, 'bulky': 1.0, 'and': 1.0, 'too': 1.0, 'use': 1.0, 'easy': 1.0, 'very': 1.0, 'back': 1.0, 'high': 1.0, 'my': 3.0, 'affordable': 1.0, 'magazines': 1.0, 'well': 1.0, 'on': 1.0, '4': 1.0, 'i': 2.0, 'but': 1.0, 'money': 1.0, 'longer': 1.0, 'daughter': 2.0, 'booster': 1.0, 'others': 1.0, 'some': 1.0, 'is': 3.0, 'more': 1.0, 'the': 5.0, 'feasibly': 1.0, 'age': 1.0, 'in': 2.0, 'consumer': 1.0, 'after': 1.0, 'year': 1.0, 'decided': 1.0, 'a': 2.0, 'go': 1.0, 'could': 1.0, 'nautilus': 1.0, 'graco': 1.0, 'trick': 1.0, 'research': 1.0, 'she': 1.0, 'it': 3.0, 'doing': 1.0, 'this': 1.0, 'recommend': 1.0, 'was': 1.0, 'seat': 2.0, 'to': 4.0, 'worth': 1.0, 'where': 1.0, 'for': 2.0, 'not': 1.0, 'me': 1.0, 'five': 1.0, 'at': 1.0, 'keep': 1.0, 'her': 1.0, 'does': 1.0, 'old': 1.0, 'point': 1.0, 'harness': 1.0}
Word element => {'recommend': 1.0, 'convertible': 1.0, 'type': 1.0, 'any': 1.0, 'fall': 1.0, 'head': 1.0, 'position': 1.0, 'reclined': 2.0, 'left': 1.0, 'always': 1.0, 'other': 2.0, 'up': 2.0, 'winter': 1.0, 'fit': 1.0, 'big': 1.0, 'she': 2.0, 'day': 1.0, 'since': 1.0, 'has': 2.0, 'daughter': 1.0, 'tighten': 1.0, 'grab': 1.0, 'me': 1.0, 'length': 2.0, 'no': 1.0, 'his': 2.0, 'tall': 3.0, 'outgrew': 1.0, 'reason': 1.0, 'only': 1.0, 'turning': 1.0, 'straps': 1.0, 'find': 1.0, '8yrs': 1.0, 'now': 3.0, 'as': 1.0, 'height': 1.0, 'britax': 1.0, 'that': 9.0, 'because': 1.0, 'will': 2.0, 'changed': 1.0, 'youngest': 1.0, 'crotch': 1.0, 'handle': 1.0, '42lbs': 1.0, 'at': 3.0, 'link': 1.0, 'included': 1.0, 'is': 10.0, 'can': 4.0, 'so': 3.0, 'being': 1.0, 'if': 1.0, 'not': 4.0, 'do': 1.0, 'store': 1.0, 'accident': 1.0, 'their': 4.0, 'belts': 1.0, 'than': 4.0, 'smaller': 1.0, 'started': 3.0, 'come': 1.0, 'video': 1.0, 'anything': 1.0, 'didn': 1.0, 'asleep': 1.0, 'back': 3.0, 'mind': 1.0, 'sunshine': 3.0, 'booster': 3.0, 'in': 8.0, 'seat': 8.0, 'really': 2.0, 'negative': 2.0, 'bunch': 1.0, 'been': 1.0, 'went': 1.0, 'write': 1.0, 'but': 2.0, 'got': 1.0, '5': 1.0, 'one': 1.0, '5yrs': 1.0, 'the': 27.0, 'doing': 1.0, 'these': 1.0, 'are': 2.0, 'my': 5.0, 'room': 1.0, 'after': 4.0, 'nautilus': 2.0, 'age': 4.0, 'justify': 1.0, 'still': 4.0, 'don': 1.0, 'about': 2.0, 'kids': 4.0, 'this': 8.0, 'models': 1.0, 'soon': 1.0, 'moved': 1.0, 'like': 3.0, '75': 1.0, 'fact': 1.0, 'what': 1.0, 'when': 4.0, 'had': 7.0, 'purchased': 3.0, 'oldest': 2.0, 'cupholder': 1.0, 'hadn': 1.0, 'chime': 1.0, 'help': 1.0, 'months': 1.0, 'read': 1.0, 'say': 2.0, 'honest': 1.0, 'where': 1.0, 'many': 2.0, 'others': 1.0, 'take': 1.0, 'reviews': 2.0, 'we': 4.0, 'use': 1.0, 'seeing': 2.0, 'hurt': 1.0, 'size': 1.0, 'and': 18.0, 'just': 6.0, 'on': 5.0, 'although': 1.0, '42': 1.0, 'carseat': 2.0, 'long': 1.0, 'did': 1.0, 'time': 2.0, 'longer': 1.0, 'removable': 1.0, 'sure': 2.0, 'loved': 2.0, 'enough': 3.0, 'ours': 1.0, 'orginally': 1.0, 'force': 1.0, 'weight': 1.0, 'too': 1.0, '3': 1.0, 'here': 1.0, '4yrs': 2.0, 'turned': 1.0, 'am': 2.0, 'graco': 4.0, 'to': 17.0, 'onto': 1.0, 'our': 4.0, 'how': 1.0, 'bodies': 1.0, 'child': 1.0, 'mine': 1.0, 'son': 4.0, 'doesn': 1.0, 'normally': 1.0, 's': 2.0, 't': 7.0, 'belt': 1.0, 'cost': 1.0, 'a': 8.0, 'small': 1.0, 'treated': 1.0, 'babies': 1.0, 'more': 2.0, 'having': 2.0, 'go': 1.0, '5pt': 3.0, 'weighs': 1.0, 'think': 2.0, 'another': 1.0, 'harness': 3.0, 'picture': 1.0, 'with': 3.0, 'using': 4.0, '2': 4.0, 'going': 1.0, 'kid': 2.0, 'i': 23.0, 'finally': 1.0, 'race': 1.0, 'plenty': 1.0, 'cheaper': 1.0, 'yet': 1.0, 'car': 1.0, 'driver': 1.0, 'research': 1.0, 'he': 6.0, 'looked': 1.0, 'couldn': 1.0, 'knowing': 1.0, 'younger': 1.0, 'were': 2.0, 'it': 8.0, 'be': 4.0, 'sold': 1.0, 'brand': 1.0, 'carseats': 2.0, 'slim': 1.0, 'close': 1.0, 'surprised': 1.0, 'they': 5.0, 'issue': 1.0, 'side': 2.0, 'model': 1.0, 'note': 1.0, 'for': 6.0, 'however': 1.0, 'get': 1.0, 'able': 2.0, 'keep': 1.0, 'stop': 1.0, '11': 1.0, '1': 2.0, 'said': 1.0, 'came': 1.0, 'liked': 1.0, 'until': 2.0, 'all': 2.0, 'ones': 1.0, 'yr': 1.0, 'saw': 1.0, 'told': 1.0, 'out': 1.0, 'immediatley': 1.0, 'each': 1.0, 'around': 1.0, 'of': 9.0, 'old': 5.0, 'even': 2.0, 'used': 1.0, 'her': 2.0, 'little': 1.0, 'was': 8.0, 'cubbies': 1.0, 'unlike': 1.0, 'who': 1.0, 'found': 1.0, 'have': 3.0, 'remember': 1.0, 'strap': 3.0, 'highly': 1.0, 'given': 1.0, 'children': 1.0, 'gave': 1.0, 'jacket': 1.0, 'an': 2.0, 'info': 1.0, 'review': 1.0}
Word element => {'looking': 1.0, 'nice': 1.0, 'holder': 1.0, 'additional': 1.0, 'cup': 1.0, 'like': 1.0, 'padding': 1.0, 'a': 2.0, 'seems': 1.0, 'in': 1.0, 'both': 1.0, 'another': 1.0, 'look': 1.0, 'to': 2.0, 'boys': 3.0, 'lot': 1.0, 'yr': 1.0, 'there': 1.0, 'of': 2.0, '1': 1.0, 'and': 2.0, 'designed': 1.0, 'they': 2.0, 'with': 1.0, 'be': 1.0, 'bought': 1.0, 'buy': 1.0, 'old': 1.0, 'i': 2.0, 'comfortable': 1.0, 'for': 1.0, 'love': 1.0, 'our': 1.0, 'that': 2.0, 'will': 2.0, 'seats': 1.0, 'grow': 1.0, 'we': 1.0, 'nicely': 2.0, 'these': 1.0, '2': 1.0, 'the': 3.0, 'just': 1.0, 'seat': 2.0, 'not': 1.0, 'sit': 1.0, 'have': 1.0}
Word element => {'holder': 1.0, 'cup': 1.0, 'size': 1.0, 'glad': 1.0, 'price': 1.0, 'm': 1.0, 'lol': 1.0, 'things': 1.0, 'about': 1.0, 'are': 1.0, 'adults': 1.0, 'love': 1.0, 'picky': 1.0, 'so': 1.0, 'bauer': 2.0, 'kinds': 1.0, 'well': 1.0, 'an': 1.0, 'carseat': 1.0, 'its': 1.0, 'works': 1.0, 'i': 5.0, 'material': 1.0, 'does': 1.0, 'usually': 1.0, 'eddie': 2.0, 'couple': 1.0, 'and': 3.0, 'to': 2.0, 'as': 6.0, 'son': 1.0, 'have': 2.0, 'my': 1.0, 'happy': 1.0, 'of': 2.0, 'one': 3.0, 'bought': 2.0, 'months': 1.0, 'say': 1.0, 'compared': 1.0, 'that': 1.0, 'those': 1.0, 'not': 1.0, 'straps': 1.0, 'job': 1.0, 'the': 3.0, 'we': 1.0, 'a': 1.0, 'ago': 1.0, 's': 2.0, 't': 2.0, 'comfortable': 2.0, 'great': 3.0, 'bulkier': 1.0, 'buckle': 1.0, 'in': 1.0, 'but': 1.0, 'aren': 2.0, 'it': 5.0, 'looks': 1.0, 'this': 1.0, 'soft': 1.0, 'kids': 1.0}
Word element => {'great': 1.0, 'overall': 1.0, 'worth': 1.0, 'neck': 1.0, 'her': 1.0, 'dig': 1.0, 'not': 1.0, 'because': 1.0, 'doesn': 1.0, 'into': 1.0, 'that': 2.0, 'although': 1.0, 'the': 4.0, 'only': 1.0, 'this': 1.0, 'love': 2.0, 'for': 1.0, 'will': 1.0, 'also': 2.0, 'one': 1.0, 'months': 1.0, 'of': 1.0, 't': 2.0, 'a': 1.0, 'i': 5.0, 'need': 1.0, 'couple': 1.0, 'comfy': 1.0, 'and': 2.0, 'had': 1.0, 'seat': 2.0, 'to': 1.0, 'comes': 1.0, 'have': 1.0, 'car': 2.0, 'grows': 1.0, 'your': 1.0, 'don': 1.0, 'child': 2.0, 'it': 4.0, 'covers': 1.0, 'looks': 1.0, 'super': 1.0, 'fact': 1.0, 'another': 1.0, 'my': 1.0, 'seem': 1.0, 'with': 2.0, 'complain': 1.0, 'like': 1.0, 'money': 1.0, 'shoulder': 1.0, 'strap': 1.0, 'so': 1.0, 'straps': 1.0}
Word element => {'a': 1.0, 'again': 1.0, 'grow': 1.0, 'would': 1.0, 'enjoy': 1.0, 'daughter': 1.0, 'vehicle': 1.0, 'anyone': 1.0, 'seems': 1.0, 'in': 2.0, 'hook': 1.0, 'definitely': 1.0, 'together': 1.0, 'really': 1.0, 'is': 2.0, 'seat': 2.0, 'up': 1.0, 'of': 1.0, 'decided': 1.0, 'buy': 1.0, 'i': 4.0, 'my': 2.0, 'happy': 1.0, 'so': 2.0, 'how': 1.0, 'am': 1.0, 'go': 1.0, 'this': 2.0, 'with': 2.0, 'it': 4.0, 'will': 1.0, 'put': 1.0, 'quality': 1.0, 'and': 4.0, 'love': 1.0, 'for': 1.0, 'heartbeat': 1.0, 'price': 2.0, 'her': 1.0, 'even': 1.0, 'recommend': 1.0, 'easy': 1.0, 'great': 2.0, 'the': 2.0, 'to': 5.0, 'its': 1.0, 'was': 1.0}
Word element => {'year': 1.0, 'six': 1.0, 'cause': 1.0, 'need': 1.0, 'some': 1.0, 'expected': 1.0, 'wider': 1.0, 'function': 1.0, 'great': 1.0, 'aspect': 1.0, 'on': 1.0, 'not': 1.0, 'impossible': 1.0, 'next': 1.0, 'comment': 1.0, 'easier': 1.0, 'with': 3.0, 'teasing': 1.0, 'smoother': 1.0, 'instillation': 1.0, 'latch': 2.0, 'perfect': 1.0, 'are': 2.0, 'they': 3.0, 'holes': 1.0, 'stashing': 1.0, 'cubby': 1.0, 'little': 3.0, 'loves': 1.0, '3yr': 1.0, 'good': 1.0, 'o': 1.0, 'convertible': 1.0, 'perfectly': 1.0, 'arm': 1.0, 'holder': 1.0, 'mind': 1.0, 'both': 1.0, 'replaced': 1.0, 'comfortable': 1.0, 'says': 1.0, 'protect': 1.0, 'outside': 1.0, 'strong': 1.0, 'from': 3.0, 'feels': 1.0, 'over': 1.0, 'hard': 1.0, 'soft': 1.0, 'three': 1.0, 'into': 1.0, 'wrap': 1.0, 'head': 2.0, 'think': 2.0, 'better': 1.0, 'goes': 1.0, 'help': 1.0, 'will': 3.0, 'worth': 1.0, 'now': 1.0, 'figure': 1.0, 'like': 1.0, 'rather': 1.0, 'to': 10.0, 'our': 3.0, 'mom': 1.0, 'feel': 1.0, 'any': 1.0, 'tall': 2.0, 'lose': 1.0, 'arms': 1.0, 'and': 7.0, 'his': 2.0, 'kid': 1.0, 'lot': 1.0, 'too': 4.0, 'happy': 1.0, 'assembly': 1.0, 'belts': 2.0, 'wanting': 1.0, 'yet': 1.0, 'love': 1.0, 'he': 10.0, 'five': 4.0, 'these': 2.0, 'wise': 1.0, 'room': 2.0, 'such': 1.0, 'for': 7.0, 'parked': 1.0, 'the': 20.0, 'of': 4.0, 'm': 2.0, 'seat': 7.0, 'in': 10.0, 'found': 1.0, 'bit': 1.0, 'had': 6.0, 'was': 7.0, 'then': 3.0, 'fine': 1.0, 'we': 5.0, 'sides': 1.0, 's': 6.0, 'small': 1.0, 'confident': 1.0, 'a': 15.0, 'might': 3.0, 'my': 5.0, 'told': 1.0, 'nazi': 1.0, 'replace': 1.0, 'booster': 3.0, 'that': 6.0, 'been': 2.0, 'torso': 2.0, 'car': 2.0, 'go': 1.0, 'figured': 1.0, '6yr': 1.0, 'up': 1.0, 'toys': 1.0, 'point': 4.0, 'old': 5.0, 'putting': 1.0, 'well': 2.0, 'i': 18.0, 'son': 2.0, 'height': 2.0, 'ordered': 1.0, 'so': 6.0, 'can': 1.0, 'back': 6.0, 'allowed': 1.0, 'do': 1.0, 'much': 2.0, 'put': 3.0, 'weight': 1.0, 'using': 1.0, 'chance': 1.0, 'built': 1.0, 'drink': 1.0, 'be': 3.0, '21': 1.0, 'him': 2.0, 'it': 10.0, 'harness': 1.0, 'unbuckle': 1.0, 'd': 1.0, 'seats': 3.0, 'just': 2.0, 'but': 5.0, 'mode': 1.0, 'when': 2.0, 'piece': 1.0, 'were': 1.0, 'tighten': 1.0, 'please': 2.0, 'problem': 2.0, 'out': 1.0, 'got': 1.0, 'place': 1.0, 'escape': 1.0, 'you': 2.0, 'able': 2.0, 'winter': 1.0, 'if': 3.0, 'still': 1.0, 'stay': 2.0, 'tried': 2.0, 'until': 1.0, '7yr': 1.0, 'loosen': 2.0, 'took': 1.0, 'hit': 1.0, 'even': 1.0, 'buckle': 1.0, 'very': 4.0, 'himself': 1.0, 'did': 1.0, 'wears': 1.0, 'as': 2.0, 'heavy': 2.0, 'coat': 1.0, 'have': 3.0, 'all': 2.0, 'other': 2.0, 'an': 1.0, 'removing': 1.0, 'artist': 1.0, 'cant': 1.0, 'this': 1.0, 'nautilus': 3.0, 'is': 5.0}
Word element => {'handy': 1.0, 'very': 1.0, 'child': 1.0, 'this': 1.0, 'holder': 1.0, 'cup': 1.0, 'really': 2.0, 'seat': 1.0, 'well': 2.0, 'the': 2.0, 'made': 1.0, 'is': 2.0, 'with': 1.0, 'protect': 1.0, 'padding': 1.0, 'to': 1.0}
Word element => {'katy': 1.0, 'graco': 1.0, 'thanks': 1.0, 'carseat': 1.0, 'recommend': 1.0, 'lbs': 1.0, 'up': 1.0, 'safe': 1.0, 'from': 1.0, 'converts': 1.0, 'since': 1.0, 'won': 1.0, 'believe': 1.0, 'instructions': 1.0, 'clear': 1.0, 'plain': 1.0, 's': 1.0, 'manual': 2.0, 'instruction': 1.0, 'read': 1.0, 'cover': 1.0, 'protective': 1.0, 'crotch': 1.0, 'carseats': 1.0, 'highly': 1.0, 'this': 3.0, 'better': 1.0, 'their': 2.0, 'far': 1.0, 'mother': 1.0, 'sonia': 1.0, 'reclining': 1.0, 'and': 5.0, 'our': 1.0, 'to': 6.0, 'seats': 2.0, 'cushiony': 1.0, 'had': 1.0, 'car': 3.0, 'originally': 1.0, 'area': 1.0, 'anymore': 1.0, 'would': 1.0, 'got': 1.0, 'daughter': 1.0, 'tx': 1.0, 'seat': 2.0, 'in': 4.0, 'm': 1.0, 'for': 4.0, 'stars': 1.0, 'one': 2.0, 'ways': 1.0, 'are': 1.0, 'first': 1.0, 'booster': 1.0, '4': 1.0, 'i': 3.0, 'enough': 2.0, 'not': 1.0, 'even': 1.0, 'buckle': 1.0, 'around': 2.0, 'that': 1.0, 'fall': 1.0, 'these': 2.0, 'superior': 1.0, 'purchased': 1.0, 'oldest': 1.0, 'rate': 1.0, 'like': 1.0, 'by': 1.0, 'bauer': 1.0, 'a': 6.0, 'we': 4.0, '100': 1.0, 'another': 1.0, 'girls': 1.0, 'they': 3.0, 'comfort': 1.0, '5': 2.0, 'under': 1.0, 'can': 2.0, 'so': 2.0, 'cushion': 1.0, 'buy': 2.0, 'straps': 1.0, 'loves': 1.0, 'materials': 1.0, 'child': 1.0, 'used': 1.0, 'safety': 1.0, 'features': 1.0, 'it': 5.0, 'deal': 1.0, 'language': 1.0, 'many': 1.0, 'she': 1.0, 'spanish': 1.0, '3': 1.0, 'grows': 1.0, 'waaay': 1.0, 'on': 1.0, 'positions': 1.0, 'of': 1.0, 'the': 7.0, 'good': 1.0, 'asleep': 1.0, 'head': 2.0, 'separate': 1.0, 't': 3.0, 'rest': 2.0, 'with': 2.0, 'cockpit': 1.0, '2': 2.0, 'wraps': 2.0, 'safer': 1.0, 'eddie': 1.0, 'has': 3.0, 'them': 2.0, 'what': 1.0, 'when': 1.0, 'fits': 1.0, 'my': 1.0, 'fact': 1.0, 'is': 2.0, 'look': 1.0, 'snug': 1.0, 'have': 2.0, 'your': 1.0, 'feel': 1.0, 'pictures': 1.0, 'match': 1.0, 'much': 1.0, 'groin': 1.0, 'harness': 1.0, 'unbuckle': 1.0, 'point': 1.0}
Word element => {'driving': 1.0, 'falling': 1.0, 'from': 1.0, 'enough': 1.0, 'not': 1.0, 'bit': 1.0, 'back': 1.0, 'can': 1.0, 'many': 1.0, 'though': 1.0, 'even': 1.0, 'position': 1.0, 'comfortable': 1.0, 'no': 1.0, 'just': 2.0, 'there': 1.0, 'seats': 2.0, 'facing': 1.0, 'forward': 2.0, 'only': 1.0, 'baby': 2.0, 'taking': 1.0, 'they': 1.0, 'you': 1.0, 'when': 2.0, 'one': 1.0, 'getting': 1.0, 'fact': 1.0, 'my': 1.0, 'another': 1.0, 'fits': 1.0, 'options': 1.0, 'out': 1.0, 'be': 1.0, 'grandparents': 1.0, 'for': 5.0, 'lots': 1.0, 'rest': 1.0, 's': 1.0, 'a': 2.0, 'we': 2.0, 'are': 4.0, 'it': 5.0, 'recline': 1.0, 'this': 1.0, 'adjusting': 1.0, 'with': 2.0, 'quick': 1.0, 'fall': 1.0, 'is': 5.0, 'of': 2.0, 'child': 1.0, 'up': 1.0, 'brakes': 1.0, 'all': 1.0, 'our': 3.0, 'to': 5.0, 'seat': 1.0, 'prevent': 1.0, 'care': 1.0, 'making': 1.0, 'sturdy': 1.0, 'and': 3.0, 'little': 3.0, 'very': 3.0, 'price': 1.0, 'best': 1.0, 'tighten': 1.0, 'happy': 1.0, 'choice': 1.0, 'car': 2.0, 'definitely': 1.0, 'make': 1.0, 'guy': 2.0, 'asleep': 1.0, 'the': 8.0, 'issue': 1.0, 'head': 2.0, 'applying': 1.0, 'adjusts': 1.0, 'in': 2.0, 'growing': 1.0, 'that': 1.0, 'babies': 1.0, 'way': 1.0, 'straps': 1.0, 'get': 1.0, 'sure': 1.0, 'easy': 1.0, 'down': 1.0, 'loosen': 1.0, 'will': 1.0}
Word element => {'cent': 1.0, 'every': 1.0, 'worth': 1.0, 'product': 1.0, 'overall': 1.0, 'would': 1.0, 'him': 1.0, 'loves': 1.0, 'durable': 1.0, 'it': 2.0, 'this': 1.0, 'who': 1.0, 'is': 2.0, 'feels': 1.0, 'my': 1.0, 'great': 2.0, '2': 2.0, 'more': 1.0, 'the': 1.0, 'seat': 2.0, 'no': 1.0, 'to': 1.0, '1': 1.0, 'get': 1.0, 'fighting': 1.0, 'in': 1.0, 'his': 1.0, 'buy': 1.0, 'i': 1.0, 'cloth': 1.0, 'son': 1.0, 'very': 1.0}
Word element => {'belt': 1.0, 'same': 1.0, 'child': 1.0, 'chair': 1.0, 'secure': 1.0, 'there': 1.0, 'your': 2.0, 'in': 1.0, 'don': 1.0, 'way': 1.0, 's': 1.0, 'you': 1.0, 'if': 1.0, 'seat': 3.0, 'no': 1.0, 'booster': 2.0, 'system': 2.0, 'latch': 2.0, 'as': 2.0, 'year': 1.0, 'recommend': 1.0, 'last': 1.0, 'car': 3.0, 'my': 1.0, 't': 2.0, 'the': 4.0, 'have': 2.0, 'like': 1.0, 'and': 2.0, 'to': 1.0, 'now': 1.0, 'i': 3.0, 'purchased': 1.0, 'product': 1.0, 'we': 1.0, 'second': 1.0, 'a': 3.0, 'well': 1.0, 'for': 1.0, 'one': 1.0, 'love': 1.0, 'wouldn': 1.0, 'this': 3.0, 'with': 2.0, 'it': 1.0, 'works': 1.0}
Word element => {'lot': 1.0, 'cup': 1.0, 'snack': 1.0, 'likes': 1.0, 'really': 1.0, 'he': 1.0, 'toys': 1.0, 'fries': 1.0, 'french': 1.0, 'old': 1.0, 'cubbies': 1.0, 'lots': 1.0, 'locked': 1.0, 'easiest': 1.0, 'place': 1.0, 'the': 4.0, 'these': 1.0, 'it': 2.0, 'wouldn': 1.0, 'with': 1.0, 'stability': 1.0, 'install': 1.0, 'say': 1.0, 'legs': 1.0, 'a': 1.0, 's': 1.0, 't': 2.0, 'we': 1.0, 'have': 1.0, 'protector': 1.0, 'of': 3.0, 'in': 1.0, 'also': 1.0, 'each': 1.0, 'pinch': 1.0, 'happy': 1.0, 'my': 1.0, 'm': 1.0, 'by': 1.0, 'when': 1.0, 'car': 1.0, 'all': 1.0, 'to': 2.0, 'although': 1.0, 'into': 1.0, 'that': 1.0, 'one': 1.0, 'for': 1.0, 'two': 1.0, 'i': 3.0, 'and': 3.0, 'get': 2.0, 'security': 1.0, 'very': 1.0, 'little': 1.0, 'guy': 1.0, 'hold': 1.0, 'like': 1.0, 'so': 1.0, 'provides': 1.0, 'his': 3.0, 'legstraps': 1.0, 'can': 1.0, 'pinched': 1.0, 'they': 1.0}
Word element => {'buy': 1.0, 'good': 1.0, 'price': 1.0, 'still': 1.0, 'adjust': 1.0, 'for': 2.0, 'chairs': 1.0, 'latch': 1.0, 'crotch': 1.0, 'the': 5.0, 'these': 1.0, 'seats': 1.0, 'comfortable': 1.0, 'install': 1.0, 'of': 2.0, 'constantly': 1.0, 'on': 1.0, 'round': 1.0, 'graco': 1.0, 'safety': 1.0, 'i': 1.0, 'in': 1.0, 'also': 1.0, 'effort': 1.0, 'click': 1.0, 'purchased': 1.0, 'an': 1.0, 'avoid': 1.0, 'but': 2.0, 'back': 1.0, 'to': 5.0, 's': 1.0, 'a': 5.0, 'another': 1.0, 'at': 1.0, 'lot': 1.0, 'are': 1.0, 'britax': 3.0, 'strap': 2.0, 'half': 1.0, 'easier': 1.0, 'than': 1.0, 'dropping': 1.0, 'feels': 1.0, 'enough': 1.0, 'little': 1.0, 'and': 3.0, '500': 1.0, 'too': 1.0, 'flimsier': 1.0, 'is': 3.0, 'harder': 1.0, 'far': 1.0, 'search': 1.0, 'not': 1.0, 'annoying': 1.0, 'it': 3.0, 'affect': 1.0}
Word element => {'about': 1.0, 'thinking': 1.0, 'two': 1.0, 'sometimes': 1.0, 'infant': 1.0, 'have': 1.0, 'an': 2.0, 'be': 1.0, 'hands': 1.0, 'might': 1.0, 'returning': 1.0, 'that': 1.0, 'worries': 1.0, 'child': 1.0, 'cannot': 1.0, 'emergency': 1.0, 'in': 1.0, 'buckle': 1.0, 'pushes': 1.0, 'grip': 1.0, 'on': 1.0, 'time': 1.0, 'down': 1.0, 'a': 1.0, 'my': 1.0, 'happy': 1.0, 'almost': 1.0, 'the': 1.0, 'not': 2.0, 'am': 1.0, 'i': 5.0, 'plus': 1.0, 'struggle': 1.0, 'release': 1.0, 'is': 1.0, 'really': 1.0, 'with': 1.0, 'it': 6.0, 'hard': 1.0, 'use': 1.0, 'try': 1.0, 'every': 1.0, 'to': 2.0, 'me': 1.0, 'get': 1.0}
Word element => {'more': 1.0, 'several': 1.0, 'us': 1.0, 'will': 1.0, 'and': 1.0, '2nd': 1.0, 'so': 1.0, 'much': 1.0, 'a': 1.0, 'seat': 1.0, 'loved': 1.0, 'have': 1.0, 'wonderful': 1.0, 'be': 1.0, 'bought': 1.0, 'other': 1.0, 'we': 2.0, '3': 1.0, 'one': 1.0, 'for': 3.0, 'years': 1.0, 'that': 1.0, 'our': 1.0, 'car': 1.0, 'with': 1.0, 'this': 1.0, 'it': 1.0, 's': 1.0, 'been': 1.0, 'now': 1.0}
Word element => {'him': 1.0, 'feel': 1.0, 'in': 2.0, 'price': 1.0, 'am': 1.0, 'comfortable': 1.0, 'parents': 1.0, 'asking': 1.0, 'and': 2.0, 'secure': 1.0, 'but': 1.0, 'prices': 1.0, 'other': 1.0, 'cars': 1.0, 'the': 1.0, 'such': 1.0, 'it': 2.0, 'with': 2.0, 'choice': 1.0, 'happy': 1.0, 'my': 3.0, 'are': 1.0, 'boy': 1.0, 'is': 1.0, 'researching': 1.0, 'many': 1.0, 'was': 1.0, 'buying': 1.0, 'seat': 1.0, 'reasonable': 1.0, 'his': 1.0, 'putting': 1.0, 'i': 3.0, 'after': 1.0, 'so': 1.0, '34': 2.0, 'there': 1.0, 'of': 1.0, 'available': 1.0, 'at': 1.0, 'struggled': 1.0, 'a': 1.0, 'wide': 1.0, 'son': 2.0, 'big': 1.0, 'range': 1.0}
Word element => {'a': 1.0, 'holder': 1.0, 'cup': 1.0, 'has': 1.0, 'son': 1.0, 'my': 1.0, 'for': 1.0, 'comfortable': 1.0, 'arrived': 1.0, 'earlier': 1.0, 'it': 1.0, 'and': 2.0, 'very': 1.0, 'expected': 1.0, 'was': 1.0, 'than': 1.0, 'easy': 1.0, 'to': 1.0, 'install': 1.0}
Word element => {'kids': 1.0, 'my': 1.0, 'like': 1.0, 'and': 1.0, 'bulky': 1.0, 'a': 1.0, 'this': 1.0, 'is': 2.0, 'not': 1.0, 'our': 1.0, 'third': 1.0, 'we': 1.0, 'one': 2.0, 'much': 1.0, 'love': 1.0, 'it': 3.0, 'so': 1.0}
Word element => {'happy': 1.0, 'comfortable': 1.0, 'is': 1.0, 'ask': 1.0, 'sits': 1.0, 'vehicle': 1.0, 'currently': 1.0, 'this': 1.0, 'questions': 1.0, 'the': 2.0, 'was': 1.0, 'no': 1.0, 'he': 2.0, 'seat': 1.0, 'features': 1.0, 'bought': 1.0, 'and': 3.0, 'in': 2.0, 'safety': 1.0, 'for': 1.0, 'it': 3.0, 's': 2.0}
Word element => {'ohwell': 1.0, 'about': 1.0, 'okay': 1.0, 'out': 1.0, 'padding': 1.0, 'thats': 1.0, 'extra': 1.0, 'have': 1.0, 'take': 1.0, 'buckle': 2.0, 'in': 1.0, 'little': 2.0, 'might': 1.0, 'a': 1.0, 'it': 2.0, 'only': 1.0, 'this': 1.0, 'for': 1.0, 'one': 2.0, 'the': 5.0, 'room': 1.0, 'is': 2.0, 'kind': 1.0, 'easy': 1.0, 'store': 1.0, 'be': 1.0, 'plenty': 1.0, 'complaint': 1.0, 'install': 1.0, 'already': 1.0, 'some': 1.0, 'loves': 1.0, 'to': 3.0, 'seat': 1.0, 'tough': 1.0, 'and': 2.0, 'than': 1.0, 'i': 3.0, 'old': 1.0, 'areas': 1.0, 'can': 1.0, 'but': 3.0, 'my': 1.0, 'rests': 1.0, 'cup': 1.0, 'bummed': 1.0, 'think': 1.0, '3': 1.0, 'year': 1.0, 'of': 2.0, 'cubby': 1.0, 'under': 1.0, 'storage': 1.0, 'both': 1.0, 'good': 1.0, 'different': 1.0, 'her': 1.0, 'arm': 1.0, 'reason': 1.0, 'saw': 1.0, 'holder': 1.0}
Word element => {'prefers': 1.0, 'around': 1.0, 'messed': 1.0, 'stuck': 1.0, 'wish': 1.0, 'really': 1.0, 'end': 1.0, 'straps': 1.0, 'tighten': 1.0, 'much': 1.0, 'had': 1.0, 'opinion': 1.0, 'for': 1.0, 'cheap': 3.0, 'as': 3.0, 'to': 5.0, 'tether': 1.0, 'have': 2.0, 'pruchased': 1.0, 'well': 1.0, 'i': 2.0, 'two': 1.0, 'frontier': 1.0, 'never': 2.0, 'design': 1.0, 'cheaply': 1.0, 'before': 1.0, 'would': 1.0, 'weeks': 1.0, 'now': 1.0, 'no': 1.0, 'vehicle': 3.0, 'save': 1.0, 'seat': 1.0, 'in': 11.0, 'seats': 1.0, 'and': 5.0, 'there': 1.0, 'britax': 6.0, 'rarely': 1.0, 'always': 2.0, 'way': 1.0, 'cushion': 2.0, 'we': 3.0, 's': 2.0, 'a': 2.0, 'go': 1.0, 't': 1.0, 'was': 2.0, 'nautilis': 1.0, 'replaced': 1.0, 'crotch': 2.0, 'wife': 2.0, 'd': 1.0, 'place': 1.0, 'time': 3.0, 'thought': 1.0, 'it': 6.0, 'she': 1.0, 'few': 1.0, 'this': 1.0, 'with': 3.0, 'daughter': 4.0, 'graco': 5.0, 'better': 1.0, 'every': 3.0, 'possible': 1.0, 'under': 1.0, 'adjust': 1.0, 'gets': 2.0, 'strap': 2.0, 'difficult': 1.0, 'slips': 1.0, 'forcing': 2.0, 'the': 17.0, 'of': 2.0, 'my': 10.0, 'me': 2.0, 'dig': 1.0, 'out': 2.0, 'or': 1.0, 'speaking': 1.0, 'by': 1.0, 'bunches': 1.0, 'up': 1.0, 'don': 1.0, 'when': 1.0, 'car': 3.0, 'again': 1.0, 'bucks': 1.0, 'you': 1.0, 'is': 3.0, 'sits': 1.0, 'even': 2.0, 'buckle': 2.0, 'comparison': 1.0, 'can': 2.0, 'built': 1.0, 'stays': 1.0, 'be': 2.0, 'latch': 2.0, 'downright': 1.0, 'unbuckle': 1.0, 'made': 1.0, 'chest': 1.0, 'tricky': 1.0, 'lastly': 1.0, 'allow': 1.0}
Word element => {'have': 1.0, 'store': 1.0, 'in': 1.0, 'booster': 1.0, 'into': 1.0, 'would': 1.0, 'turns': 1.0, 'is': 2.0, 'way': 1.0, 'by': 1.0, 'gave': 1.0, 'yes': 1.0, 'walked': 1.0, 'difficult': 1.0, 'seat': 3.0, 'a': 3.0, 'car': 2.0, 'the': 1.0, 'heavy': 1.0, 'it': 3.0, 'this': 3.0, 'but': 1.0, 'i': 3.0, 'as': 1.0, 'and': 1.0, 'gift': 1.0, 'if': 1.0, 'to': 1.0, 'had': 1.0, 'seen': 1.0}
Word element => {'unisex': 1.0, 'good': 1.0, 'clean': 1.0, 'easy': 1.0, 'very': 1.0, 'a': 1.0, 'to': 1.0, 'its': 1.0, 'cup': 1.0, 'so': 1.0, 'got': 1.0, 'purchaised': 1.0, 'and': 2.0, 'like': 1.0, 'the': 1.0, 'grear': 1.0, 'seat': 3.0, 'car': 3.0, 'only': 1.0, 'it': 1.0, 'this': 2.0, 'in': 1.0, '2011': 1.0, 'wish': 1.0, 'other': 2.0, 'we': 3.0, 'much': 1.0, 'colors': 1.0, 'another': 2.0, 'wose': 1.0, 'for': 1.0, 'one': 1.0, 'i': 1.0, 'have': 1.0, 'thing': 1.0, 'holder': 1.0, 'would': 1.0}
Word element => {'when': 1.0, 'evident': 1.0, 'be': 1.0, 'should': 1.0, 'difference': 1.0, 'appropriate': 1.0, 'ordering': 1.0, 'reveal': 1.0, 'is': 3.0, 'item': 2.0, 'big': 1.0, 'that': 2.0, 'of': 1.0, 'there': 1.0, 'description': 1.0, 'not': 2.0, 'does': 1.0, 'the': 2.0, 'for': 2.0, 'baby': 1.0, 'facing': 2.0, 'a': 1.0, 'toward': 1.0, 'this': 3.0, 'it': 1.0, 'only': 1.0, 'designed': 1.0, 'back': 1.0, 'forward': 1.0}
Word element => {'highly': 1.0, 'this': 2.0, 'recommend': 1.0, 'was': 1.0, 'thought': 1.0, 'of': 2.0, 'into': 1.0, 'that': 1.0, 'know': 1.0, 'me': 1.0, 'lets': 1.0, 'i': 1.0, 'etc': 1.0, 'great': 1.0, 'comfortable': 1.0, 'product': 2.0, 'for': 2.0, 'be': 1.0, 'old': 1.0, 'unused': 1.0, 'owner': 1.0, 'deal': 1.0, 'the': 8.0, '2': 1.0, 'such': 1.0, 'feels': 1.0, 'is': 4.0, 'seems': 1.0, 'in': 1.0, 'graco': 1.0, 'year': 1.0, 'very': 2.0, 'from': 1.0, 'attention': 1.0, 'nautilus': 1.0, 'car': 1.0, 'compartment': 1.0, 'works': 1.0, 'likes': 1.0, 'well': 2.0, 's': 1.0, 'a': 3.0, 'and': 4.0, 'drink': 1.0, 'holder': 1.0, 'previous': 1.0, 'manual': 1.0, 'plus': 1.0, 'built': 2.0, 'set': 1.0, 'up': 1.0, 'solid': 1.0, 'an': 1.0, 'engineering': 1.0, 'upgrade': 1.0, 'to': 3.0, 'seat': 5.0, 'as': 1.0, 'our': 1.0, 'put': 1.0, 'hooks': 1.0, 'easy': 1.0, 'extra': 1.0, 'my': 1.0, 'details': 1.0, 'attachments': 1.0, 'storage': 1.0}
Word element => {'okey': 1.0, 'but': 1.0, 'easy': 1.0, 'is': 2.0, 'briax': 1.0, 'think': 1.0, 'i': 1.0, 'opinion': 1.0, 'dirty': 1.0, 'loved': 1.0, 'better': 1.0, 'when': 1.0, 'graco': 2.0, 'my': 2.0, 'in': 1.0, 'well': 1.0, 's': 1.0, 'clean': 1.0, 'husband': 1.0, 'to': 1.0, 'its': 1.0, 'this': 2.0, 'it': 1.0, 'anyway': 1.0}
Word element => {'take': 1.0, 'need': 1.0, 'understand': 1.0, 'your': 1.0, 'directions': 1.0, 'the': 1.0, 'definitely': 1.0, 'install': 1.0, 'this': 1.0, 'car': 1.0, 'time': 1.0, 'is': 1.0, 'a': 2.0, 'seat': 1.0, 'hard': 1.0, 'little': 1.0, 'were': 1.0, 'great': 1.0, 'it': 1.0, 'was': 1.0, 'difficult': 1.0, 'to': 3.0}
Word element => {'bigger': 1.0, 'little': 1.0, 'skinny': 1.0, 'weight': 1.0, 'perfectly': 1.0, 'and': 1.0, 'her': 4.0, 'carseats': 1.0, 'when': 1.0, 'out': 1.0, '4': 1.0, 'months': 1.0, 'grew': 1.0, 'old': 1.0, 'year': 1.0, 'britax': 1.0, 'of': 2.0, '6': 1.0, 'my': 1.0, 'ago': 1.0, 'we': 1.0, 'bought': 1.0, 'accommodates': 1.0, 'this': 2.0, 'almost': 1.0, 'mostly': 1.0, 'about': 1.0, 'height': 2.0, 'because': 1.0}
Word element => {'use': 1.0, 'clean': 1.0, 'easy': 2.0, 'sides': 1.0, 'switch': 1.0, 'since': 1.0, 'comfortable': 1.0, 'great': 1.0, 'is': 1.0, 'harness': 1.0, 'very': 1.0, 'little': 1.0, 'drink': 1.0, 'recall': 1.0, 'for': 1.0, 'love': 1.0, 'the': 6.0, 'adjustable': 1.0, 'updated': 1.0, 'have': 2.0, 'us': 1.0, 'point': 1.0, 'cubbies': 1.0, 'seats': 1.0, 'and': 5.0, 'pieces': 1.0, 'were': 1.0, 'that': 2.0, 'sent': 1.0, 'we': 1.0, 'a': 1.0, 'them': 1.0, 'out': 1.0, 'even': 1.0, 'store': 1.0, 'bottles': 1.0, 'toys': 1.0, 'like': 1.0, 'hold': 1.0, 'graco': 1.0, 'crayons': 1.0, 'quick': 1.0, 'kids': 2.0, 'holders': 1.0, 'are': 2.0, 'just': 1.0, 'large': 1.0, 'overall': 1.0, 'deep': 1.0, 'water': 1.0, 'themselves': 1.0, 'snap': 1.0, 'enough': 1.0, 'our': 1.0, 'to': 4.0, 'can': 1.0, 'most': 1.0, 'replacements': 1.0, 'there': 1.0, 'two': 2.0, 'etc': 1.0, '4': 1.0}
Word element => {'when': 1.0, 'just': 1.0, 'probably': 1.0, 'will': 1.0, 'every': 1.0, 'worth': 1.0, 'is': 2.0, 'feel': 1.0, 'so': 1.0, 'daughter': 1.0, 'one': 4.0, 'used': 1.0, 'buckle': 1.0, 'me': 3.0, 'baby': 1.0, 'helping': 1.0, 'was': 4.0, 'hr': 1.0, 'basic': 1.0, '7': 1.0, 'given': 1.0, 'anticipated': 1.0, 'ready': 1.0, 'features': 1.0, 'fight': 1.0, 'with': 1.0, 'he': 2.0, 'this': 1.0, 'doing': 1.0, 'difficulty': 1.0, 'had': 5.0, 'impetus': 1.0, 'i': 7.0, 'old': 1.0, 'put': 1.0, 'on': 1.0, 'expensive': 1.0, 'where': 1.0, 'for': 2.0, 'model': 1.0, 'cartrip': 1.0, 'the': 6.0, 'researched': 1.0, 'off': 1.0, 'that': 1.0, 'loves': 1.0, 'other': 1.0, 'making': 1.0, 'offended': 1.0, 'and': 6.0, 'getting': 1.0, 'finally': 1.0, 'an': 1.0, 'but': 2.0, 'awhile': 1.0, 'may': 1.0, 'another': 1.0, 'purchase': 1.0, 'my': 2.0, 'before': 1.0, 'carseat': 1.0, '13': 1.0, 'in': 4.0, 'penney': 1.0, 'she': 2.0, 'it': 6.0, 'month': 1.0, 'buy': 1.0, 'grandson': 1.0, 'due': 1.0, 'wanted': 1.0, 'adequate': 1.0, 'him': 2.0, 'out': 1.0, 'of': 1.0, 'a': 1.0, 'very': 1.0, 'like': 2.0, 'as': 1.0, 'to': 1.0, 'all': 1.0}
Word element => {'would': 1.0, 'in': 1.0, 'included': 1.0, 'booster': 1.0, 'other': 1.0, 'any': 1.0, 'have': 1.0, 'won': 1.0, 'fact': 1.0, 'too': 1.0, 'daughter': 1.0, 'definitely': 1.0, 'car': 1.0, 'seat': 2.0, 'that': 3.0, 'for': 2.0, 'comfortable': 1.0, '1': 1.0, 'and': 2.0, 'like': 2.0, 'as': 1.0, 'year': 1.0, 'very': 1.0, 'product': 1.0, 'bought': 1.0, 'to': 2.0, 'buy': 1.0, 'old': 1.0, 'i': 4.0, 'adjust': 1.0, 'it': 4.0, 'is': 3.0, 'recommend': 1.0, 'she': 1.0, 'easy': 1.0, 'carseat': 1.0, 'her': 2.0, 'seatbelt': 1.0, 't': 1.0, 'the': 2.0}
Word element => {'departure': 1.0, 'before': 1.0, 'days': 1.0, 'two': 1.0, 'package': 1.0, 'long': 1.0, 'make': 1.0, 'flying': 1.0, 'was': 1.0, 'short': 1.0, 'day': 1.0, 'miss': 1.0, 'shipping': 1.0, 'error': 1.0, 'amazon': 2.0, 'great': 2.0, 'overall': 1.0, 'am': 1.0, 'but': 1.0, 'way': 2.0, 'seats': 1.0, 'are': 1.0, 'there': 1.0, 'service': 1.0, 'if': 1.0, 'know': 1.0, 'don': 1.0, 'holder': 1.0, 'alot': 2.0, 'mom': 1.0, 'keeps': 1.0, 'thanks': 2.0, 'design': 1.0, 'rests': 1.0, 'cup': 1.0, 'toyota': 1.0, 'like': 1.0, 'nissan': 1.0, 'of': 3.0, 'the': 12.0, 'to': 7.0, 'our': 2.0, 'grow': 1.0, 'as': 1.0, 'would': 2.0, 'either': 1.0, 'also': 2.0, 'seat': 3.0, 'in': 3.0, 'can': 2.0, 'back': 1.0, 'most': 1.0, 'buy': 1.0, 'hand': 1.0, 'finds': 1.0, 'and': 7.0, 'sometimes': 1.0, 'fascinating': 1.0, 'toys': 1.0, 'sure': 1.0, 'store': 1.0, 'she': 6.0, 'loves': 2.0, 'got': 1.0, 'daughter': 2.0, 'corolla': 1.0, 'months': 2.0, 'bought': 1.0, 'her': 6.0, 'for': 2.0, 'story': 1.0, 'a': 4.0, 'cost': 1.0, 't': 1.0, 'ago': 1.0, 'we': 1.0, 'could': 1.0, 'again': 1.0, 'car': 1.0, 'thought': 1.0, 'it': 7.0, 'recline': 2.0, 'me': 1.0, 'my': 2.0, 'all': 3.0, 'fits': 1.0, 'has': 1.0, 'cars': 1.0, 'this': 3.0, 'few': 1.0, 'pockets': 1.0, 'with': 1.0, 'well': 2.0, 'i': 6.0, 'colour': 1.0, 'think': 2.0, 'its': 4.0, 'harness': 1.0, '16': 1.0, 'do': 1.0, 'gender': 1.0, 'neutral': 1.0, 'more': 2.0, 'that': 1.0, 'fall': 1.0, 'sleeps': 1.0, 'they': 1.0, 'sleeping': 1.0, 'sturdy': 1.0, 'selecting': 1.0, 'pulsar': 1.0, 'is': 3.0, 'snug': 1.0, 'prevent': 1.0, 'plays': 1.0, 'very': 1.0, 'monitor': 1.0, 'which': 1.0, 'side': 1.0, 'good': 1.0, 'made': 2.0, 'food': 1.0, 'feature': 1.0, 'concerns': 1.0, 'offer': 1.0, 'adjustments': 1.0, 'somehow': 1.0, 'head': 1.0, 'does': 1.0, 'forward': 1.0, 'when': 2.0, 'happened': 1.0, 'be': 1.0, 'fair': 1.0, 'though': 1.0, 'one': 1.0, 'rear': 1.0, 'child': 1.0, 'facing': 1.0, 'while': 1.0, 'love': 1.0, 'he': 1.0}
Word element => {'purchase': 1.0, 'this': 1.0, 'with': 1.0, 'am': 1.0, 'chairs': 1.0, 'other': 1.0, 'back': 1.0, 'too': 1.0, 'when': 1.0, 'sleeping': 1.0, 'year': 1.0, 'install': 1.0, 'she': 1.0, 'easy': 1.0, 'didn': 1.0, 'i': 1.0, 'old': 1.0, 'like': 1.0, 'straight': 1.0, 'wasn': 1.0, 'head': 1.0, 'and': 2.0, 'happy': 2.0, 'on': 1.0, 'over': 1.0, 'to': 1.0, 'was': 4.0, 'price': 1.0, 'her': 2.0, 'a': 1.0, 'all': 1.0, '8': 1.0, 'move': 1.0, 'hr': 1.0, 'trip': 1.0, '2': 1.0, 'great': 1.0, 't': 2.0}
Word element => {'product': 1.0, 'overall': 1.0, 'but': 1.0, 'straight': 1.0, 'too': 1.0, 'sitting': 1.0, 'kid': 1.0, 'of': 1.0, 'has': 1.0, 'think': 1.0, 'good': 1.0, 'my': 1.0, 'cup': 1.0, 'holder': 1.0, 'lot': 1.0, 'a': 2.0, 'comfortable': 1.0, 'and': 3.0, 'comes': 1.0, 's': 1.0, 'sometimes': 1.0, 'it': 2.0, 'the': 2.0, 'great': 2.0, 'handy': 1.0, 'recline': 1.0, 'feel': 1.0, 'really': 1.0, 'padding': 1.0, 'is': 3.0, 'not': 1.0, 'i': 2.0}
Word element => {'limit': 1.0, 'choose': 1.0, 'altho': 1.0, 'time': 1.0, 'so': 1.0, '15': 1.0, 'philosophy': 1.0, 'lbs': 1.0, 'endorse': 1.0, 'safety': 1.0, 'passenger': 1.0, 'other': 1.0, 'academy': 1.0, 'convertible': 1.0, 'their': 1.0, 'limits': 1.0, 'height': 1.0, 'maximum': 1.0, 'minimum': 1.0, 'pediatrics': 1.0, 'not': 1.0, 'the': 3.0, 'aware': 1.0, '2': 2.0, 'booster': 1.0, 'seats': 1.0, 'are': 1.0, 'forward': 1.0, 'my': 1.0, 'absolute': 1.0, 'fact': 1.0, 'year': 1.0, 'months': 1.0, 'organizations': 1.0, 'one': 2.0, 'him': 1.0, 'be': 1.0, 'preferably': 1.0, 'full': 1.0, 'this': 2.0, 'american': 1.0, 'it': 1.0, 'is': 4.0, 'grandson': 1.0, 'backward': 1.0, 'rear': 3.0, 'at': 2.0, 'keep': 3.0, 'recommended': 2.0, 'we': 1.0, 'a': 2.0, 'possible': 1.0, 'facing': 5.0, 'to': 5.0, 'seat': 2.0, 'as': 2.0, 'least': 2.0, '3': 1.0, 'your': 2.0, 'means': 1.0, 'they': 1.0, 'up': 1.0, 'child': 3.0, 'of': 3.0, 'in': 3.0, 'age': 1.0, 'years': 1.0, 'and': 3.0, '20': 1.0, 'pounds': 1.0, 'weight': 3.0, '24': 1.0, 'carseat': 1.0, 'long': 1.0, 'until': 2.0, 'old': 1.0}
Word element => {'the': 1.0, 'best': 1.0, 'very': 1.0, 'seems': 1.0, 'weights': 1.0, '40': 1.0, 'versitle': 1.0, 'sturdy': 1.0, 'use': 1.0, 'comfortable': 1.0, 'for': 3.0, 'price': 1.0, 'years': 1.0, 'grandson': 1.0, 'and': 3.0, 'lbs': 1.0, 'my': 1.0, 'bought': 1.0, 'product': 1.0, 'be': 1.0, 'had': 1.0, 'to': 1.0, 'will': 1.0, 'four': 1.0, 'able': 1.0, 'he': 2.0, 'christmas': 1.0, 'this': 2.0, 'it': 2.0, 'amazon': 1.0, 'is': 2.0, 'many': 1.0}
Word element => {'old': 1.0, '11': 1.0, '25': 1.0, 'far': 1.0, 'so': 1.0, 'good': 1.0, 'no': 1.0, 'made': 1.0, 'cheaply': 1.0, 'buckle': 1.0, 'plastic': 1.0, 'connect': 1.0, 'smell': 1.0, 'assemble': 1.0, 'love': 1.0, 'easy': 1.0, 'sure': 1.0, 'that': 1.0, 'box': 1.0, 'like': 1.0, 'smelled': 1.0, 'of': 3.0, 'out': 2.0, 'see': 1.0, 'parts': 1.0, 'high': 1.0, 'forward': 1.0, 'eucalyptus': 1.0, 'childs': 1.0, 'than': 1.0, 'cons': 1.0, 'bricks': 1.0, 'pros': 1.0, 'is': 4.0, 'not': 2.0, 'clasp': 1.0, 'hard': 2.0, 'month': 1.0, 'it': 2.0, 'thankfully': 1.0, 'had': 1.0, 'pound': 1.0, 'car': 1.0, 'why': 2.0, 'seat': 1.0, 'all': 1.0, 'to': 3.0, 'as': 2.0, 'one': 1.0, 'i': 3.0, 'my': 1.0, 'oil': 1.0, 'are': 3.0, 'perplexed': 1.0, 'quality': 1.0, 'softer': 1.0, 'and': 3.0, 'wish': 1.0, 'this': 1.0, 'carseats': 1.0, 'husband': 1.0, 'shape': 2.0, 'head': 1.0, 'cradles': 1.0, 'has': 1.0, 'a': 3.0, 'better': 1.0, 'the': 7.0, 'without': 1.0, 'windows': 1.0, 'pushing': 1.0, 'although': 1.0, 'little': 1.0, 'back': 1.0, 'lumbar': 2.0, 'mostly': 1.0, 'decent': 1.0, 'support': 2.0, 'over': 1.0, 'mmmm': 1.0, 'up': 1.0, 'child': 3.0, 'materials': 1.0, 'reclines': 1.0, 'can': 1.0, 'most': 2.0, 'sitting': 1.0}
Word element => {'quickly': 1.0, 'pretty': 1.0, 'but': 1.0, 'key': 1.0, 'lasting': 1.0, 'from': 2.0, 'coming': 1.0, '30': 1.0, 'seat': 1.0, 'adjusted': 1.0, 'system': 1.0, 'fit': 1.0, 'around': 1.0, 'the': 4.0, 'great': 1.0, 'overlaps': 1.0, 'chicco': 2.0, 'strap': 1.0, 'have': 1.0, 'all': 1.0, 'its': 1.0, 'before': 1.0, 'long': 1.0, 'and': 1.0, 'with': 1.0, 'only': 1.0, 'product': 1.0, 'i': 2.0}
Word element => {'system': 1.0, 'with': 1.0, 'outgrown': 1.0, 'for': 3.0, 'liked': 1.0, 'comfortable': 1.0, 'give': 1.0, 'toddler': 2.0, 'this': 1.0, 'it': 3.0, 'was': 1.0, 'seat': 2.0, 'to': 3.0, '3': 1.0, 'orbit': 1.0, 'who': 2.0, 'toys': 1.0, 'little': 1.0, 'very': 1.0, 'needed': 1.0, 'had': 1.0, 'purchased': 1.0, 'his': 1.0, 'year': 1.0, 'sturdy': 1.0, 'old': 1.0, 'step': 1.0, 'we': 1.0, 'a': 2.0, 'well': 1.0, 'latch': 1.0, 'cup': 1.0, 'holder': 1.0, 'pockets': 1.0, 'previous': 1.0, 'cars': 1.0, 'storage': 1.0, 'small': 1.0, 'is': 2.0, 'more': 1.0, 'spacious': 1.0, 'having': 1.0, 'does': 1.0, 'sister': 1.0, 'than': 1.0, 'hers': 1.0, 'booster': 1.0, 'next': 1.0, 'convert': 1.0, 'anchors': 1.0}
Word element => {'ease': 1.0, 'with': 1.0, 'comfort': 1.0, 'the': 1.0, 'ride': 1.0, 'both': 1.0, 'seat': 1.0, 'age': 1.0, 'have': 1.0, 'two': 1.0, 'grandchlidren': 1.0, 'and': 2.0, 'i': 1.0, 'one': 1.0, 'year': 1.0, 'in': 2.0, 'apart': 1.0, 'they': 1.0}
Word element => {'them': 1.0, 'meets': 1.0, 'important': 1.0, 'comfort': 1.0, 'can': 1.0, 'are': 1.0, 'reviews': 1.0, 'all': 1.0, 'disagree': 1.0, 'have': 1.0, 'and': 4.0, 'seats': 1.0, 'car': 2.0, 'safety': 1.0, 'm': 1.0, 'up': 1.0, 'britax': 1.0, 'i': 3.0, 'seat': 1.0, 'some': 1.0, 't': 1.0, 'great': 1.0, 'the': 3.0, 'had': 2.0, 'to': 1.0, 'used': 1.0, 'several': 1.0, 'but': 1.0, 'having': 1.0, 'this': 2.0, 'research': 1.0, '3': 1.0, 'needed': 1.0, 'price': 2.0, 'did': 1.0, 'adds': 1.0}
Word element => {'simple': 1.0, 'to': 1.0, 'conversion': 1.0, 'a': 2.0, 'was': 1.0, 'granddaughter': 1.0, 'very': 1.0, 'it': 1.0, 'while': 1.0, 'booster': 1.0, 'my': 1.0, 'nice': 1.0, 'car': 1.0, 'growing': 1.0, 'seat': 2.0, 'has': 2.0, 'been': 1.0, 'lasted': 1.0}
Word element => {'protection': 1.0, 'support': 1.0, 'good': 1.0, 'that': 1.0, 'other': 1.0, 'a': 1.0, 'got': 1.0, 'just': 1.0, 'maybe': 1.0, 'great': 1.0, 'the': 3.0, 'son': 1.0, 'and': 2.0, 'like': 1.0, 'works': 1.0, 'carseat': 2.0, 'my': 1.0, 'annoying': 1.0, 'than': 1.0, '5': 1.0, 'how': 1.0, 'harness': 1.0, 'stuck': 1.0, 'cruddy': 1.0, 'beefy': 1.0, 'i': 2.0, 'trigger': 1.0, 'however': 1.0, 'spot': 1.0, 'to': 1.0, 'looks': 1.0, 'is': 2.0, 'release': 1.0, 'gets': 1.0, 'comfortable': 1.0, 'one': 1.0, 'often': 1.0, 'this': 1.0, 'it': 1.0}
Word element => {'going': 1.0, 'too': 1.0, 'strong': 1.0, 'seat': 3.0, 'toddler': 1.0, 'but': 1.0, 'posting': 1.0, 'is': 2.0, 'totally': 2.0, 'much': 1.0, 'car': 2.0, 'with': 1.0, 'he': 1.0, 'this': 2.0, 'after': 1.0, 'so': 1.0, 'am': 1.0, 'i': 1.0, 'time': 1.0, 'your': 1.0, 'still': 1.0, 'worth': 1.0, 'money': 1.0, 'my': 1.0, 'the': 3.0, 'booster': 1.0, 'child': 1.0, 'use': 1.0, 'loved': 1.0, 'already': 1.0, 'in': 1.0, 'and': 1.0}
Word element => {'child': 1.0, 'your': 2.0, 'sturdy': 1.0, 'enough': 1.0, 'bit': 1.0, 'supported': 1.0, 'be': 1.0, 'doesn': 1.0, 'overall': 1.0, 'head': 1.0, 'comfort': 1.0, 'thing': 1.0, 'only': 1.0, 'seem': 1.0, 'siblings': 1.0, 'between': 1.0, 'truck': 1.0, 'carseat': 3.0, 'before': 1.0, 'having': 1.0, 'also': 1.0, 'in': 2.0, 'mico': 1.0, 'out': 1.0, 'fits': 1.0, 'would': 2.0, 'each': 1.0, '100': 1.0, 'and': 4.0, 'grew': 1.0, 'researching': 1.0, 'more': 1.0, 'sleeps': 1.0, 'is': 5.0, 'product': 1.0, 'for': 3.0, 'recently': 1.0, 'lot': 1.0, 'she': 2.0, 'mid': 1.0, 'two': 1.0, 'i': 4.0, 'did': 1.0, 'recline': 1.0, 'wish': 1.0, 'this': 4.0, 'to': 1.0, 'seat': 3.0, 'of': 3.0, 'britax': 1.0, 't': 1.0, 's': 1.0, 'a': 5.0, 'we': 2.0, 'other': 1.0, 'purchased': 1.0, 'car': 1.0, 'wonderfully': 1.0, 'change': 1.0, '80': 1.0, 'but': 1.0, 'the': 5.0, 'great': 2.0, 'nicely': 1.0, 'price': 1.0, 'dollar': 1.0, 'like': 2.0, 'dad': 1.0, 'her': 3.0, 'tag': 1.0, 'graco': 1.0, 'that': 1.0, 'convertable': 1.0, 'through': 1.0, 'when': 1.0, 'fantastic': 1.0, 'lbs': 1.0}
Word element => {'graco': 1.0, 'other': 1.0, 'junked': 1.0, 'just': 1.0, 'with': 1.0, 'child': 1.0, 'rest': 1.0, 'comfortably': 2.0, '1st': 2.0, 'very': 2.0, 'son': 2.0, 'and': 2.0, '20': 1.0, 'car': 3.0, 'the': 5.0, 'it': 1.0, 'this': 2.0, 'you': 1.0, 'while': 1.0, 'slide': 1.0, 'from': 1.0, 'bang': 1.0, 'side': 1.0, 'bought': 1.0, 'months': 1.0, 'more': 1.0, 'is': 1.0, 'sleeps': 2.0, 'every': 1.0, 'buck': 1.0, 'spend': 1.0, 'overall': 1.0, 'head': 2.0, 'i': 2.0, 'have': 1.0, 'tummy': 1.0, 'my': 2.0, 'another': 2.0, 'for': 2.0, 'where': 1.0, 'built': 1.0, 'used': 1.0, 'down': 1.0, 'seat': 4.0, 'to': 1.0, 'importantly': 1.0, 'his': 1.0, 'almost': 1.0, 'touching': 1.0, 'impressed': 1.0, 'on': 1.0, 'guards': 1.0, 'of': 2.0, 'offer': 1.0, 's': 1.0, 'a': 1.0, 'sits': 1.0, 'safety': 2.0, 'cushioned': 1.0}
Word element => {'installing': 1.0, 'or': 1.0, 'occasionally': 1.0, 'only': 1.0, 'its': 1.0, 'day': 2.0, 'benefit': 1.0, 'others': 1.0, 'snap': 1.0, 'simple': 1.0, 'connectors': 2.0, 'latch': 1.0, 'wings': 1.0, 'tighter': 1.0, 'bigger': 1.0, 'outweigh': 1.0, 'since': 1.0, 'head': 1.0, 'impact': 1.0, 'side': 2.0, 'better': 1.0, 'might': 1.0, 'more': 1.0, 'feel': 1.0, 'easier': 1.0, 'positives': 1.0, 's': 2.0, 'much': 1.0, 'do': 1.0, 'recaro': 3.0, 'you': 4.0, 'on': 1.0, 'easy': 4.0, 'overall': 1.0, 'kind': 1.0, 'when': 3.0, 'what': 1.0, 'nice': 2.0, 'wheel': 1.0, 'some': 1.0, 'these': 1.0, 'eddie': 1.0, 'has': 3.0, 'out': 2.0, 'matter': 1.0, 'belts': 2.0, 'than': 1.0, 'for': 2.0, 'from': 1.0, 'running': 1.0, 'have': 5.0, 'hooks': 1.0, 'it': 5.0, 'this': 1.0, 'duty': 1.0, 'we': 2.0, 'belt': 3.0, 't': 3.0, 'a': 1.0, 'toyota': 1.0, 'far': 1.0, 'movement': 2.0, 'graco': 4.0, 'our': 3.0, 'in': 4.0, 'seat': 2.0, 'to': 3.0, 'different': 1.0, '5': 1.0, 'second': 1.0, 'car': 5.0, 'most': 1.0, 'they': 1.0, 'rollers': 1.0, 'aren': 1.0, 'but': 2.0, 'convertible': 1.0, 'seats': 4.0, 'and': 12.0, 'disadvantages': 1.0, 'best': 1.0, 'are': 1.0, 'britax': 4.0, 'nicer': 1.0, 'pull': 1.0, 'bauer': 1.0, 'nautilus': 1.0, 'is': 4.0, 'sits': 1.0, 'currently': 1.0, 'very': 1.0, 'pockets': 1.0, 'smooth': 2.0, 'buck': 1.0, 'adjustable': 1.0, 'bang': 1.0, 'like': 3.0, 'care': 1.0, 'nearly': 1.0, 'materials': 3.0, 'don': 1.0, 'often': 1.0, 'stuck': 1.0, 'as': 4.0, 'heavy': 1.0, 'because': 1.0, 'easily': 1.0, 'advantages': 2.0, 'that': 6.0, 'say': 1.0, 'unique': 1.0, 'handy': 1.0, 'storage': 2.0, 'while': 1.0, 'facing': 1.0, 'all': 1.0, 'other': 3.0, 'an': 1.0, 'so': 1.0, 'can': 1.0, 'headrest': 1.0, 'no': 1.0, 'premium': 2.0, 'the': 17.0, 'of': 3.0, 'protection': 1.0, 'colors': 1.0, 'sophisticated': 1.0, 'get': 1.0, 'negatives': 2.0, 'use': 1.0, 'i': 3.0, 'would': 1.0, 'rear': 1.0, 'instead': 1.0, 'feed': 1.0, 'quality': 1.0, 'adjusting': 2.0, 'height': 1.0}
Word element => {'bought': 1.0, 'i': 1.0, 'which': 1.0, '65': 1.0, 'to': 1.0, 'up': 1.0, 'harness': 1.0, 'point': 1.0, 'the': 2.0, 'great': 1.0, 'older': 1.0, 'this': 1.0, 'it': 3.0, '5': 1.0, 'a': 1.0, 'is': 3.0, 'car': 1.0, 'ponds': 1.0, 'kids': 2.0, 'for': 2.0, 'comfortable': 1.0, 'reason': 1.0, 'seems': 1.0, 'very': 1.0, 'straps': 1.0, 'seat': 1.0, 'not': 1.0, 'entangled': 1.0, 'do': 1.0, 'and': 1.0, 'get': 1.0}
Word element => {'darker': 1.0, 'also': 1.0, 'i': 1.0, 'fabric': 1.0, 'bonus': 1.0, 'a': 1.0, 'is': 2.0, 'the': 3.0, 'my': 1.0, 'car': 1.0, 'toddler': 1.0, 'like': 1.0, 'and': 1.0, 'loves': 1.0, 'great': 1.0, 'it': 1.0, 'holder': 1.0, 'seat': 1.0, 'cup': 1.0}
Word element => {'up': 1.0, 'protect': 1.0, 'meant': 1.0, 'reason': 1.0, 'some': 1.0, 'belt': 1.0, 'center': 1.0, 'sliding': 1.0, 'different': 1.0, 'seats': 1.0, 'and': 4.0, 'the': 4.0, 'great': 1.0, 'ratings': 1.0, 'that': 1.0, 'our': 1.0, 'has': 1.0, 'they': 1.0, 'a': 2.0, 'keeps': 1.0, 'are': 1.0, 'blocking': 1.0, 'due': 1.0, 'release': 1.0, 'flaw': 1.0, 'second': 1.0, 'is': 2.0, 'it': 1.0, 'this': 2.0, 'good': 1.0, 'value': 1.0, 'we': 1.0, 'pad': 1.0, 'purchased': 1.0, 'to': 2.0, 'for': 1.0, 'newest': 1.0, 'one': 3.0, 'model': 1.0, 'low': 1.0, 'gassing': 1.0, 'out': 1.0, 'high': 1.0}
Word element => {'child': 1.0, 'when': 1.0, 'to': 1.0, 'holder': 1.0, 'should': 1.0, 'it': 1.0, 'installed': 1.0, 'reach': 1.0, 'and': 1.0, 'like': 1.0, 'be': 1.0, 'material': 1.0, 'on': 1.0, 'releasing': 1.0, 'difficult': 1.0, 'seat': 1.0, 'the': 2.0, 'covering': 1.0, 'metal': 2.0, 'anchors': 1.0, 'cup': 1.0, 'my': 1.0, 'snug': 1.0, 'i': 2.0, 'study': 1.0, 'comfortable': 1.0, 'have': 1.0, 'difficulty': 1.0, 'hooks': 1.0, 'strapped': 1.0, 'if': 1.0, 'as': 2.0, 'very': 1.0, 'from': 1.0, 'seems': 1.0, 'in': 2.0, 'car': 1.0}
Word element => {'happy': 1.0, 'are': 1.0, 'i': 1.0, 'booster': 1.0, 'backless': 1.0, 'older': 1.0, 'he': 1.0, 'then': 1.0, 'later': 1.0, 'seatbelts': 1.0, 'used': 1.0, 'recomend': 1.0, 'because': 1.0, 'other': 1.0, 'in': 1.0, 'forward': 1.0, 'did': 1.0, 'his': 1.0, 'when': 2.0, 'with': 3.0, 'like': 1.0, 'trip': 1.0, 'not': 1.0, 'needing': 1.0, 'were': 1.0, 'so': 1.0, 'seats': 2.0, 'who': 1.0, 'transition': 1.0, 'toys': 1.0, '3': 1.0, 'a': 4.0, 'we': 5.0, 'old': 1.0, 'purchased': 1.0, 'small': 1.0, 'have': 1.0, 'kids': 1.0, 'this': 3.0, 'fell': 1.0, 'month': 1.0, 'it': 5.0, '5': 1.0, 'actually': 1.0, 'for': 2.0, 'can': 1.0, '2': 2.0, 'fall': 1.0, 'is': 3.0, 'my': 3.0, 'car': 1.0, 'be': 2.0, 'within': 1.0, 'soon': 2.0, 'and': 4.0, 'great': 1.0, 'nice': 1.0, '1': 1.0, 'has': 1.0, 'roomy': 1.0, 'very': 1.0, 'little': 1.0, 'good': 1.0, 'loves': 1.0, 'gets': 1.0, 'son': 3.0, 'storage': 1.0, 'head': 1.0, 'places': 1.0, 'to': 3.0, 'seat': 3.0, 'cups': 1.0, 'few': 1.0, 'over': 1.0, 'asleep': 1.0, 'the': 1.0, 'reach': 1.0, 'thanksgiving': 1.0, 'made': 1.0, '7': 1.0, 'also': 1.0, 'hour': 1.0}
Word element => {'and': 1.0, 'sturdy': 1.0, 'use': 1.0, 'car': 1.0, 'ability': 1.0, 'thing': 1.0, 'durable': 1.0, 'this': 1.0, 'only': 1.0, 'up': 1.0, 'seat': 1.0, 'is': 1.0, 'on': 1.0, 'very': 1.0, 'from': 1.0, 'to': 1.0, 'its': 1.0, 'been': 1.0, 'little': 1.0, 'the': 2.0, 'great': 1.0, 'though': 1.0, 'missing': 1.0, 'for': 1.0, 'our': 1.0, 'infancy': 1.0, 'girl': 1.0}
Word element => {'use': 1.0, 'good': 1.0, 'sat': 1.0, 'has': 1.0, 'after': 1.0, 'under': 1.0, 'out': 1.0, 'easy': 1.0, 'get': 1.0, 'backward': 1.0, 'buckle': 1.0, 'with': 1.0, 'strap': 1.0, 'the': 6.0, 'wanted': 1.0, 'tough': 1.0, 'and': 5.0, 'over': 1.0, 'time': 1.0, 'is': 4.0, 'on': 1.0, 'extend': 1.0, 'this': 1.0, 'adjust': 1.0, 'he': 3.0, 'got': 1.0, 'in': 2.0, 'seems': 1.0, 'his': 1.0, 'year': 1.0, 'product': 1.0, 'for': 4.0, 'comfortable': 1.0, 'most': 1.0, 'four': 1.0, 'falls': 1.0, 'have': 1.0, 'otherwise': 1.0, 'i': 1.0, 'because': 1.0, 'our': 1.0, 'to': 4.0, 'seat': 3.0, '40': 1.0, 's': 1.0, 'we': 3.0, 'a': 3.0, '5': 1.0, 'old': 1.0, 'point': 1.0, 'harness': 1.0, 'that': 2.0, 'been': 1.0, 'about': 1.0, 'it': 6.0, 'month': 1.0, 'from': 1.0, 'part': 1.0, 'using': 1.0, 'like': 1.0, 'lbs': 1.0, 'easily': 1.0, 'always': 1.0, 'straps': 1.0, 'him': 2.0, 'be': 1.0, 'my': 1.0, 'biggest': 1.0, 'down': 1.0, 'bottom': 1.0, 'complaint': 1.0}
Word element => {'operate': 1.0, 'feels': 1.0, 'pain': 1.0, 'saves': 1.0, 'that': 3.0, 'parts': 1.0, 'so': 1.0, 'child': 2.0, 'graco': 1.0, 'is': 2.0, 'padding': 1.0, 'rest': 1.0, 'a': 2.0, 'of': 1.0, 'some': 1.0, 'not': 2.0, 'the': 2.0, 'buying': 1.0, 'was': 1.0, 'removed': 1.0, 'car': 1.0, 'easy': 1.0, 'area': 1.0, 'and': 5.0, 'on': 1.0, 'grows': 1.0, 'only': 1.0, 'looks': 1.0, 'it': 1.0, 'seat': 1.0, 'to': 2.0, 'as': 1.0, 'but': 1.0, 'money': 1.0, 'can': 1.0, 'be': 1.0, 'each': 1.0, 'part': 1.0, 'does': 1.0, 'sturdy': 1.0, 'his': 1.0, 'again': 2.0, 'thing': 1.0, 'have': 1.0, 'i': 1.0, 'did': 1.0, 'sleeping': 1.0, 'like': 1.0, 'overall': 1.0, 'head': 2.0, 'enough': 1.0, 'install': 1.0, 'great': 1.0, 'near': 1.0, 'for': 1.0}
Word element => {'thing': 1.0, 'use': 1.0, 'easy': 1.0, 'to': 1.0, 'be': 1.0, 'nice': 1.0, 'features': 1.0, 'is': 2.0, 'for': 2.0, 'years': 1.0, 'perfect': 1.0, 'in': 1.0, 'this': 1.0, 'it': 1.0, 'toddlers': 1.0, 'can': 1.0, 'used': 1.0, 'several': 1.0, 'because': 1.0, 'of': 1.0, 'and': 1.0, '1': 1.0, 'the': 1.0, '3': 1.0}
Word element => {'worth': 1.0, 'britax': 1.0, 'compared': 1.0, 'need': 1.0, 'or': 1.0, 'until': 1.0, 'on': 1.0, 'a': 1.0, 'i': 1.0, 'price': 1.0, 'about': 1.0, 'used': 1.0, 'one': 1.0, 'for': 1.0, 'other': 1.0, 'install': 1.0, 'month': 1.0, 'this': 1.0, 'it': 1.0, 'got': 1.0, 'to': 3.0, 'much': 1.0, 'reinstall': 1.0, 'are': 1.0, 'the': 3.0, 'more': 1.0, 'uninstall': 1.0, 'vehicle': 1.0, 'latches': 1.0, 'not': 1.0, 'difficult': 1.0}
Word element => {'family': 1.0, 'friends': 1.0, 'nap': 1.0, 'people': 1.0, 'safe': 1.0, 'reads': 1.0, 'and': 2.0, 'think': 2.0, 'your': 1.0, 'loves': 1.0, 'that': 3.0, 'daughter': 1.0, 'recommend': 1.0, 'together': 2.0, 'if': 1.0, 'when': 2.0, 'anymore': 1.0, 'anything': 2.0, 'care': 1.0, 'making': 1.0, 'before': 1.0, 'driving': 1.0, 'saying': 1.0, 'no': 1.0, 'take': 2.0, 'reviews': 2.0, 'a': 2.0, 's': 1.0, 't': 2.0, 'alot': 2.0, 'the': 8.0, 'of': 2.0, 'there': 1.0, 'many': 1.0, 'she': 2.0, 'be': 1.0, 'comfortable': 1.0, 'one': 1.0, 'easier': 1.0, 'putting': 2.0, 'i': 7.0, 'well': 1.0, 'it': 6.0, 'thought': 1.0, 'read': 1.0, 'very': 3.0, 'highly': 1.0, 'this': 3.0, 'hard': 1.0, 'in': 2.0, 'seat': 6.0, 'all': 1.0, 'nowadays': 2.0, 'to': 6.0, 'grow': 1.0, 'as': 1.0, 'instrutions': 1.0, 'bash': 1.0, 'easy': 1.0, 'know': 1.0, 'them': 2.0, 'also': 2.0, 'seats': 1.0, 'come': 1.0, 'need': 1.0, 'done': 1.0, 'out': 2.0, 'than': 1.0, 'belts': 1.0, 'move': 1.0, 'inconvenient': 1.0, 'up': 1.0, 'don': 2.0, 'child': 2.0, 'children': 1.0, 'not': 1.0, 'my': 1.0, 'looks': 1.0, 'me': 1.0, 'problem': 1.0, 'you': 3.0, 'things': 1.0, 'for': 3.0, 'was': 1.0, 'vacuum': 1.0, 'is': 4.0, 'look': 1.0, 'at': 1.0, 'time': 1.0, 'can': 1.0, 'so': 1.0, 'car': 1.0, 'really': 1.0, 'agree': 1.0, 'with': 1.0, 'are': 1.0, 'use': 1.0, '3': 1.0, 'taking': 1.0, 'should': 1.0, 'would': 1.0}
Word element => {'last': 1.0, 'car': 1.0, 'hoping': 1.0, 'while': 1.0, 'am': 1.0, 'purposes': 1.0, 'future': 1.0, 'feature': 1.0, 'good': 2.0, 'is': 1.0, 'the': 1.0, 'so': 1.0, 'month': 1.0, 'a': 4.0, 'seat': 2.0, 'has': 1.0, 'my': 1.0, 'ago': 1.0, 'cup': 1.0, 'holder': 1.0, 'far': 1.0, 'it': 4.0, 'this': 2.0, 'feel': 1.0, 'purchased': 1.0, 'about': 1.0, 'i': 3.0, 'daughter': 1.0, 'likes': 1.0, 'seems': 1.0, 'for': 1.0, 'comfortable': 1.0, 'that': 2.0, 'me': 1.0, 'and': 1.0, 'will': 1.0, 'fact': 1.0}
Word element => {'grow': 1.0, 'hopefully': 1.0, 'lb': 1.0, 'about': 1.0, 'is': 1.0, 'undo': 1.0, 'so': 1.0, 'to': 1.0, 'turned': 1.0, 'far': 1.0, 'she': 1.0, 'easy': 2.0, 'will': 1.0, 'but': 1.0, 'seems': 1.0, 'my': 1.0, 'are': 1.0, 'great': 1.0, '26': 1.0, 'for': 2.0, 'transitioned': 1.0, 'daughter': 1.0, 'mom': 1.0, 'just': 2.0, 'not': 1.0, 'with': 1.0, 'it': 1.0, 'this': 2.0, '1': 1.0, 'and': 2.0, 'we': 1.0, 'into': 1.0, 'buckles': 1.0, 'carseat': 2.0, 'her': 2.0}
Word element => {'friends': 1.0, 'recommend': 1.0, 'out': 1.0, 'use': 1.0, 'get': 1.0, 'will': 2.0, 'purchase': 1.0, 'highly': 1.0, 'this': 1.0, 'feel': 1.0, 'road': 1.0, 'glad': 1.0, 'go': 1.0, 'a': 3.0, 't': 1.0, 'we': 7.0, 'reviews': 1.0, 'did': 1.0, 'cargo': 1.0, 'favorable': 1.0, 'reading': 1.0, 'adjust': 2.0, 'our': 2.0, 'was': 1.0, 'can': 1.0, 'so': 2.0, 'harness': 3.0, 'country': 1.0, 'comfort': 1.0, 'seat': 1.0, 'in': 3.0, 'regular': 1.0, 'almost': 1.0, 'year': 1.0, 'secure': 2.0, 'my': 4.0, 'of': 5.0, 'the': 11.0, 'place': 1.0, 'reach': 1.0, 'good': 1.0, 'asleep': 1.0, 'whatsoever': 1.0, 'after': 1.0, 'turns': 1.0, 'for': 4.0, 'holder': 1.0, 'actually': 1.0, 're': 1.0, 'where': 1.0, 'love': 1.0, 's': 1.0, 'van': 2.0, 'seemed': 1.0, 'graco': 1.0, 'purchased': 1.0, 'fact': 1.0, 'old': 1.0, 'pain': 1.0, 'plenty': 1.0, 'allows': 1.0, 'i': 2.0, 'butt': 1.0, 'and': 7.0, 'hated': 1.0, 'first': 1.0, 'it': 9.0, 'son': 3.0, 'about': 1.0, 'moment': 1.0, 'from': 1.0, 'feels': 1.0, 'very': 2.0, 'decided': 1.0, 'used': 1.0, 'latch': 1.0, 'nautilus': 1.0, 'is': 3.0, 'around': 1.0, 'easy': 1.0, 'lots': 1.0, 'useful': 1.0, 'many': 1.0, 'other': 1.0, 'placed': 1.0, 'seats': 1.0, 'have': 2.0, 'town': 1.0, 'falls': 1.0, 'never': 1.0, 'some': 2.0, 'couldn': 1.0, 'even': 1.0, 'complaints': 1.0, 'pinching': 1.0, 'there': 2.0, 'padding': 1.0, 'head': 1.0, 'because': 1.0, 'that': 3.0, 'been': 1.0, 'into': 1.0, 'if': 1.0, 'weight': 1.0, 'years': 1.0, 'no': 1.0, 'limit': 1.0, 'to': 4.0, 'high': 1.0, '4': 1.0, 'cup': 1.0, 'booster': 1.0, 'down': 1.0}
Word element => {'car': 1.0, 'husband': 1.0, 'd': 1.0, 'esp': 1.0, 'another': 1.0, 'money': 1.0, 'spend': 1.0, 'want': 1.0, 'kids': 1.0, 'perfect': 1.0, 'after': 1.0, 'for': 2.0, 'wasn': 1.0, 'out': 3.0, 'which': 1.0, 'eddie': 1.0, 'was': 3.0, 'than': 1.0, 'usually': 1.0, 'w': 2.0, 'better': 1.0, 'open': 1.0, 'much': 1.0, 's': 4.0, 'a': 1.0, 'but': 3.0, '2': 2.0, 'sitting': 2.0, 'about': 1.0, 'didn': 2.0, 'been': 1.0, 'sturdy': 2.0, 'almost': 1.0, 'had': 1.0, 'the': 8.0, 'booster': 1.0, 'year': 1.0, 'climbs': 2.0, 'buckles': 1.0, 'two': 2.0, 'skinny': 1.0, 'old': 1.0, 'my': 4.0, 'i': 1.0, 'well': 3.0, 'comfortably': 1.0, 'bauer': 1.0, 'by': 1.0, 'incline': 1.0, 'be': 1.0, 'sleeps': 1.0, 'comfortable': 1.0, 'say': 1.0, 'back': 2.0, 'limited': 1.0, 'concerned': 1.0, 'him': 1.0, 'it': 3.0, 'and': 6.0, 'himself': 1.0, 'so': 1.0, 'needs': 1.0, 'pros': 1.0, 'son': 2.0, 'difficult': 1.0, 'to': 6.0, 'high': 1.0, 'straight': 1.0, 'is': 2.0, 'nautilus': 1.0, 'not': 3.0, 'bit': 1.0, 'easy': 1.0, 'legs': 1.0, 'get': 1.0, 'base': 1.0, 'buckle': 4.0, 'fit': 1.0, 'pinches': 1.0, 't': 3.0, 'farther': 1.0, 'long': 1.0, 'on': 3.0, 'seat': 1.0, 'in': 3.0, 'offcons': 1.0, 'britax': 1.0, 'are': 1.0, 'some': 1.0, 'we': 1.0, 'fine': 1.0, 'reviews': 1.0, 'cushioned': 1.0, 'placement': 2.0, 'conclusion': 1.0, 'fits': 1.0, 'an': 1.0, 'issue': 1.0, 'us': 1.0, 'inconvenient': 1.0, 'one': 1.0, 'too': 1.0, 'happy': 1.0, '1': 1.0, 'legged': 1.0, 'since': 2.0, 'yet': 1.0, 'he': 1.0, 'need': 2.0, 'retrieve': 1.0}
Word element => {'connect': 1.0, 'breeze': 1.0, 'use': 1.0, 'day': 2.0, 'referring': 1.0, 'very': 1.0, 'are': 1.0, 'secure': 1.0, 'an': 1.0, 'and': 3.0, 'difficult': 1.0, 'it': 1.0, 'first': 1.0, 'the': 8.0, 'vehicle': 1.0, 'my': 1.0, 'a': 1.0, 's': 2.0, 'you': 1.0, 'well': 1.0, 'seat': 3.0, 'to': 6.0, 'm': 2.0, 'safety': 1.0, 'designed': 1.0, 'for': 1.0, 'seemingly': 1.0, 'nice': 1.0, 'comfortable': 1.0, 'that': 3.0, 'is': 2.0, 'release': 1.0, 'having': 1.0, 'hand': 1.0, 'knowledge': 1.0, 'obviously': 1.0, 'car': 2.0, 'straps': 3.0, 'take': 1.0, 'enormous': 1.0, 'amount': 1.0, 'gripe': 1.0, 'of': 1.0, 'up': 1.0, 'effort': 1.0, 'tighten': 1.0, 'i': 2.0, 'talking': 1.0, 'no': 1.0, 'about': 1.0, 'make': 1.0, 'only': 2.0, 'harness': 1.0, 'mind': 1.0, 'me': 1.0, 'not': 1.0, 'those': 1.0}
Word element => {'facing': 1.0, 'accommodate': 1.0, 'it': 1.0, 'since': 1.0, '1': 1.0, 'bear': 1.0, 'expensive': 1.0, 'more': 1.0, 'models': 1.0, 'far': 1.0, 'cupholders': 1.0, 'l': 1.0, 'o': 1.0, 'unpleasant': 1.0, 've': 1.0, 'integrated': 1.0, 'better': 1.0, 'standard': 1.0, 'arm': 2.0, 'size': 1.0, 'cavities': 1.0, 'another': 1.0, 'hollowed': 1.0, 'crayons': 1.0, 'sunglasses': 1.0, 'storing': 1.0, 'effortless': 1.0, 'temper': 1.0, 'writhing': 1.0, 'so': 1.0, 'only': 1.0, 'simply': 1.0, 'memorials': 1.0, 'plus': 1.0, 'britax': 2.0, 'are': 2.0, 'by': 1.0, 'browse': 1.0, 'morbidity': 1.0, 'into': 1.0, 'spree': 1.0, 'full': 1.0, 'not': 1.0, 'search': 1.0, 'year': 1.0, 'toddler': 1.0, 'child': 1.0, 'proper': 1.0, 'your': 1.0, 'on': 2.0, 'booster': 2.0, 'don': 1.0, 'shoulder': 1.0, 'past': 1.0, 'but': 1.0, 'for': 4.0, 'rear': 1.0, 'one': 1.0, 'mind': 1.0, 'crash': 1.0, 'my': 2.0, 'now': 1.0, 'deploy': 1.0, 'to': 5.0, 'in': 7.0, 'seat': 4.0, 'other': 1.0, 'all': 1.0, 'this': 3.0, 'latches': 1.0, 'doesn': 1.0, 'youtube': 1.0, 'enter': 1.0, 'smoothly': 1.0, 'harness': 3.0, 'do': 1.0, 'aforementioned': 1.0, 'imagine': 1.0, 'a': 9.0, 'rest': 2.0, 'likes': 1.0, 't': 2.0, 'like': 1.0, 'cheap': 1.0, 'blown': 1.0, 'essentials': 1.0, 'tragic': 1.0, 'cringe': 1.0, 'watch': 1.0, '300': 1.0, 'if': 1.0, 'want': 3.0, '5': 3.0, 'you': 2.0, 'toys': 1.0, 'violent': 1.0, 'point': 3.0, 'test': 1.0, 'and': 8.0, 'of': 1.0, 'the': 12.0, 'good': 1.0, 'asleep': 1.0, 'side': 2.0, 'just': 1.0, 'dummy': 1.0, 'simple': 1.0, 'car': 2.0, 'with': 2.0, 'capacity': 1.0, 'very': 1.0, 'tantrum': 1.0, 'single': 1.0, 'conventional': 1.0, '40': 1.0, 'enough': 1.0, 'experiences': 1.0, 'spend': 1.0, 'fitting': 1.0, 'comfortable': 1.0, 'each': 1.0, 'operation': 1.0, 'graco': 1.0, 'during': 1.0, 'configuration': 1.0, 'is': 3.0, 'nautilus': 1.0, 'kid': 2.0, 'than': 1.0, 'reach': 1.0, 'belts': 1.0, 'strap': 1.0, 'loves': 1.0, '20': 1.0, 'that': 1.0, 'fall': 1.0, 'easy': 1.0, 'parents': 1.0, 'pounds': 2.0, 'exceedingly': 1.0, 'had': 1.0, 'configure': 1.0, 'internal': 1.0, 'personally': 1.0, 'components': 1.0, 'locks': 1.0, 'adjustment': 1.0, 'operate': 1.0, 'i': 2.0, 'cupholder': 1.0, 'well': 1.0, 'bracket': 1.0, 'children': 1.0, 'handed': 1.0}
Word element => {'go': 1.0, 'way': 1.0, 'think': 1.0, 'others': 1.0, 'price': 1.0, 'considering': 1.0, 'very': 1.0, 'of': 1.0, 'appears': 1.0, 'install': 1.0, 'in': 1.0, 'also': 1.0, 'is': 2.0, 'and': 2.0, 'comparison': 1.0, 'need': 1.0, 'your': 1.0, 'that': 1.0, 'i': 3.0, 'buy': 1.0, 'seat': 4.0, 'a': 1.0, 'with': 1.0, 'grows': 1.0, 'it': 3.0, 'this': 3.0, 'child': 1.0, 'her': 1.0, 'will': 2.0, 'be': 2.0, 'was': 1.0, 'to': 5.0, 'great': 1.0, 'the': 3.0, 'easy': 1.0, 'last': 1.0, 'comfortable': 1.0, 'love': 1.0, 'for': 1.0}
Word element => {'son': 1.0, 'when': 1.0, 'another': 1.0, 'buy': 1.0, 'daughter': 1.0, 'we': 2.0, 'like': 1.0, 'older': 1.0, 'the': 1.0, 'car': 1.0, 'chair': 1.0, 'will': 1.0, 'because': 1.0, 'it': 1.0, 'fits': 1.0, 'probably': 1.0, 'new': 1.0, 'grand': 2.0, 'gets': 1.0, 'better': 1.0, 'our': 2.0}
Word element => {'forth': 1.0, 'back': 1.0, 'moving': 1.0, 'despite': 1.0, 'around': 1.0, 'when': 1.0, 'baby': 1.0, 'on': 1.0, 'with': 1.0, 'ease': 1.0, 'worth': 1.0, 'can': 1.0, 'just': 1.0, 'better': 1.0, 'for': 3.0, 'match': 1.0, 'glad': 1.0, 'us': 1.0, 'got': 1.0, 'bit': 1.0, 'though': 1.0, 'this': 1.0, 'research': 1.0, 'it': 6.0, 'much': 1.0, 'only': 1.0, 'seemed': 1.0, 's': 1.0, 't': 2.0, 'a': 4.0, 'we': 2.0, 'cars': 2.0, 'lot': 1.0, 'easy': 1.0, 'of': 3.0, 'very': 1.0, 'and': 7.0, 'jiggle': 1.0, 'issue': 1.0, 'getting': 1.0, 'did': 1.0, 'fact': 1.0, 'another': 1.0, 'doesn': 1.0, 'was': 2.0, 'an': 1.0, 'without': 1.0, 'the': 5.0, 'straps': 2.0, 'find': 1.0, 'are': 1.0, 'coat': 1.0, 'would': 1.0, 'breeze': 1.0, 'car': 1.0, 'had': 1.0, 'operate': 1.0, 'to': 3.0, 'seat': 2.0, 'in': 2.0, 'out': 1.0, 'm': 3.0, 'price': 3.0, 'both': 1.0, 'comfort': 1.0, 'has': 1.0, 'changing': 1.0, 'totally': 1.0, 'that': 1.0, 'been': 1.0, 'while': 1.0, 'one': 1.0, 'i': 3.0, 'two': 1.0, 'trying': 1.0}
Word element => {'away': 1.0, 'blows': 1.0, 'my': 1.0, 'wouldn': 1.0, 'booster': 1.0, 'lx': 1.0, 'primary': 1.0, 'ease': 1.0, 'installed': 1.0, 'could': 1.0, 'way': 1.0, 'as': 1.0, 'half': 2.0, 'slack': 1.0, 'evenflo': 1.0, 'have': 3.0, 'are': 1.0, 'strap': 2.0, 'push': 1.0, 'you': 1.0, 'bear': 1.0, 'harnessed': 1.0, 'that': 2.0, 'buckles': 1.0, 'behind': 1.0, 'worth': 1.0, 'seats': 3.0, 'chase': 1.0, 'if': 1.0, 'problem': 1.0, 'through': 1.0, 'design': 1.0, 'poor': 1.0, 'get': 1.0, 'beginning': 1.0, 'button': 1.0, 'car': 6.0, 'were': 1.0, 'tighten': 1.0, 'together': 1.0, 'with': 2.0, 'buying': 1.0, 'it': 8.0, 'and': 4.0, 'getting': 1.0, 'youtube': 1.0, 'to': 6.0, 'in': 3.0, 'seat': 10.0, 'was': 2.0, 'backseat': 1.0, 'watched': 1.0, 'used': 1.0, 'very': 2.0, 'hard': 1.0, 'a': 7.0, 'we': 1.0, 'summer': 1.0, 'from': 1.0, 'allow': 1.0, 'nuts': 1.0, 'on': 3.0, 'your': 1.0, '3': 1.0, 'putting': 2.0, 'i': 4.0, 'pliers': 1.0, 'won': 1.0, 'real': 1.0, 'set': 1.0, 'pain': 1.0, 'release': 1.0, 'kids': 1.0, 'headrest': 1.0, 'bulk': 1.0, 'there': 1.0, 'at': 1.0, 'nautilus': 1.0, 'is': 2.0, 'more': 1.0, 'adjust': 1.0, '6': 1.0, 'less': 1.0, 'up': 2.0, 'before': 1.0, 'day': 1.0, 'like': 1.0, 'cost': 2.0, 'belt': 2.0, 't': 4.0, 'wrestling': 1.0, 'the': 21.0, 'of': 2.0, 'also': 1.0, 'not': 1.0, 'much': 2.0, 'padding': 1.0, 'for': 5.0, 'be': 3.0, 'sitters': 1.0, '2': 3.0, 'but': 2.0, 'comfort': 1.0, 'aren': 2.0, 'own': 1.0, 'cars': 1.0, 'gray': 1.0, 'these': 2.0, 'good': 1.0, 'enough': 1.0, 'main': 1.0, 'video': 1.0, 'price': 1.0, 's': 1.0, 'secondary': 2.0, 'after': 1.0, 'perfect': 1.0, 'ended': 1.0, 'bought': 1.0}
Word element => {'learn': 1.0, 'well': 1.0, 'oh': 1.0, 'beginning': 1.0, 'from': 1.0, 'live': 1.0, 'disappointed': 1.0, 'in': 1.0, 'was': 1.0, 'to': 2.0, 'selling': 1.0, 'buying': 1.0, 'car': 1.0, 'for': 2.0, 'purchased': 1.0, 'will': 1.0, 'constantly': 1.0, 'own': 1.0, 'very': 1.0, 'and': 5.0, 'just': 2.0, 'not': 1.0, 'say': 1.0, 'that': 1.0, 'company': 1.0, 'my': 1.0, 'these': 1.0, 'arms': 1.0, 'two': 1.0, 'i': 4.0, 'buy': 1.0, 'up': 1.0, 'seats': 1.0, 'come': 1.0, 'loose': 1.0, 'straps': 1.0, 'buckles': 1.0, 'much': 1.0, 'the': 6.0, 'myself': 1.0, 'britax': 3.0, 'are': 1.0, 'harder': 1.0, 'nautilus': 1.0, 'order': 1.0, 'manueuver': 1.0, 'after': 1.0, 'ended': 1.0, 'could': 1.0, 'we': 1.0, 'a': 1.0, 'year': 1.0, 'kick': 1.0}
Word element => {'second': 1.0, 'more': 1.0, 'or': 1.0, 'shipping': 1.0, 'pay': 1.0, 'didn': 1.0, 'car': 2.0, '20': 1.0, 'the': 2.0, 'target': 1.0, 'look': 1.0, 'was': 2.0, 'posted': 1.0, 'went': 1.0, 'were': 1.0, 'next': 1.0, 'tax': 1.0, 'that': 1.0, 'here': 1.0, 'sturdy': 1.0, 'of': 1.0, 'reading': 1.0, 'britax': 1.0, 'set': 1.0, 'i': 5.0, 'two': 2.0, 'at': 1.0, 'booster': 1.0, 'reviews': 1.0, 'had': 1.0, 'purchased': 1.0, 'excellent': 1.0, 'these': 1.0, 'some': 1.0, 'lower': 1.0, 'on': 2.0, 'after': 1.0, 'just': 1.0, 'physically': 1.0, 'amazon': 2.0, 'for': 1.0, 'product': 1.0, 'and': 2.0, 'month': 1.0, 'it': 1.0, 'buying': 1.0, 'with': 1.0, 'our': 1.0, 'to': 4.0, 'seat': 2.0, 'as': 2.0, 'originally': 1.0, 'out': 1.0, 'but': 1.0, 't': 1.0, 'a': 1.0, 'much': 1.0, 'm': 1.0, 'price': 1.0, 'tag': 1.0, 'able': 1.0, 'purchase': 1.0, 'save': 1.0}
Word element => {'unbuckle': 1.0, 'also': 1.0, 'easy': 2.0, 'straps': 1.0, 'safety': 1.0, 'are': 2.0, 'added': 1.0, '65lbs': 1.0, 'be': 1.0, 'harness': 1.0, 'point': 1.0, 'five': 1.0, 'come': 1.0, 'years': 1.0, 'easily': 1.0, 'detachable': 1.0, 'great': 1.0, 'comfortable': 1.0, 'for': 2.0, 'fit': 1.0, 'love': 2.0, 'one': 1.0, 'is': 2.0, 'up': 1.0, 'child': 2.0, 'into': 1.0, 'buckle': 1.0, 'safe': 1.0, 'sippy': 1.0, 'i': 2.0, 'tried': 1.0, 'can': 2.0, 'she': 1.0, 'looks': 1.0, 'it': 5.0, 'this': 1.0, 'with': 1.0, 'cup': 1.0, 'adjust': 1.0, 'extremely': 1.0, 'how': 1.0, 'well': 3.0, 'in': 3.0, 'adjusts': 1.0, 'used': 1.0, 'built': 2.0, 'very': 2.0, 'and': 5.0, 'the': 4.0, 'holder': 1.0, 'definitely': 1.0, 'plus': 1.0, 'a': 2.0, 'we': 1.0, 'had': 1.0, 'sleep': 1.0, 'seat': 4.0, 'as': 2.0, 'to': 6.0, 'my': 2.0, 'another': 1.0, 'loosen': 1.0, 'collapsed': 1.0, 'every': 1.0, 'time': 1.0, 'booster': 1.0, 'daughter': 1.0, 'your': 1.0, 'put': 1.0, 'her': 1.0}
Word element => {'well': 1.0, 'seats': 1.0, 'plushy': 1.0, 'with': 1.0, 'concern': 1.0, 'if': 1.0, 'so': 1.0, 'them': 1.0, 'plushiest': 1.0, 'not': 1.0, 'fabric': 1.0, 'in': 1.0, 'secure': 1.0, 'an': 1.0, 'here': 1.0, 'this': 4.0, 'it': 1.0, 'i': 2.0, 'buy': 1.0, 've': 1.0, 'else': 1.0, 'comfy': 1.0, 'and': 2.0, 'all': 1.0, 'seat': 1.0, 'to': 2.0, 'was': 2.0, 'one': 1.0, 'color': 1.0, 'selling': 1.0, 'price': 1.0, 'anywhere': 1.0, 'amazon': 1.0, 'more': 1.0, 'around': 1.0, 'is': 5.0, 'job': 1.0, 'the': 9.0, 'deal': 1.0, 'get': 1.0, 'easy': 1.0, 'does': 1.0, 'than': 1.0, 'incredible': 1.0, 'which': 1.0, 'like': 1.0, 'lower': 1.0, 'some': 1.0, 'of': 3.0, 'reviews': 1.0, 'on': 1.0, 'think': 1.0, 'high': 1.0, 'threading': 1.0, 'that': 2.0, 'comfortable': 1.0, 'big': 1.0, 's': 1.0, 'matrix': 1.0, 'we': 1.0, 't': 1.0, 'a': 3.0, 'rating': 1.0, 'looked': 1.0, 'part': 1.0, 'carseat': 1.0, 'expensive': 1.0, 'for': 1.0, 'us': 2.0, 'didn': 1.0, 'safety': 1.0, 'got': 2.0}
Word element => {'still': 1.0, 'pick': 1.0, 'want': 1.0, 'overall': 1.0, 'grows': 1.0, 'getting': 1.0, 'have': 1.0, 'with': 2.0, 'grow': 1.0, 'good': 1.0, 'different': 1.0, '3': 1.0, 'con': 1.0, 'many': 1.0, 'deal': 1.0, 'spending': 1.0, 'others': 1.0, 'thing': 1.0, 'through': 1.0, 'around': 1.0, 'rests': 1.0, 'arm': 1.0, 'into': 1.0, 'buckle': 1.0, 'also': 1.0, 'pro': 1.0, 'another': 1.0, 'trying': 2.0, 'carrying': 1.0, 'makes': 1.0, 'on': 2.0, 'hold': 1.0, 'real': 1.0, 'years': 1.0, 'no': 1.0, 'compared': 1.0, 'using': 1.0, 'shift': 1.0, 'move': 5.0, 'sturdy': 1.0, 'go': 1.0, 'place': 2.0, 'has': 1.0, 'put': 1.0, 'do': 1.0, 'awkward': 1.0, 'heavy': 2.0, 'as': 3.0, 'issue': 1.0, 's': 2.0, 'up': 1.0, 'change': 1.0, 'could': 2.0, 'will': 2.0, 'by': 1.0, 'when': 3.0, 'seatbelt': 3.0, 'from': 2.0, 'closer': 1.0, 'away': 1.0, 'half': 1.0, '43lbs': 1.0, 'bar': 1.0, '7in': 1.0, '3ft': 1.0, 'though': 1.0, 'problem': 1.0, 'son': 3.0, 'pros': 1.0, 'but': 2.0, 'sitting': 1.0, 'point': 2.0, '5': 2.0, 'room': 1.0, 'a': 19.0, 't': 8.0, 'back': 5.0, 'old': 4.0, 'fact': 1.0, 'holder': 3.0, 'harness': 2.0, 'reach': 1.0, 'tired': 1.0, 'm': 1.0, 'seat': 9.0, 'our': 3.0, 'ever': 1.0, 'an': 2.0, 'all': 1.0, 'was': 2.0, 'doesn': 1.0, 'comfortable': 1.0, 'worry': 1.0, 'crotch': 3.0, 'pretty': 1.0, 'to': 21.0, 'high': 3.0, 'where': 1.0, 'time': 1.0, 'new': 1.0, 've': 1.0, 'easily': 1.0, 'that': 8.0, 'because': 1.0, 'having': 1.0, 'some': 2.0, 'consider': 1.0, 'car': 10.0, 'this': 9.0, 'him': 1.0, 'it': 19.0, 'recline': 1.0, 'yet': 1.0, 'he': 3.0, 'love': 2.0, 'far': 1.0, 'wont': 1.0, 'got': 1.0, 'are': 2.0, 'loves': 1.0, 'difficult': 2.0, 'inch': 1.0, 'position': 1.0, 'strap': 3.0, 'gets': 1.0, 'transferring': 1.0, 'there': 2.0, 'so': 2.0, 'can': 2.0, 'headrest': 1.0, 'carry': 1.0, 'cons': 2.0, 'finds': 1.0, 'something': 1.0, 'straps': 1.0, 'out': 3.0, 'i': 11.0, 'or': 5.0, 'feature': 1.0, 'between': 1.0, 'we': 3.0, 'then': 1.0, 'reviews': 1.0, 'vehicles': 1.0, '139': 1.0, 'upright': 1.0, 'convert': 1.0, 'the': 20.0, 'of': 4.0, 'sits': 1.0, 'is': 11.0, 'may': 2.0, 'my': 4.0, 'me': 4.0, 'not': 4.0, 'and': 15.0, 'really': 2.0, 'like': 2.0, 'easy': 2.0, 'access': 1.0, 'had': 3.0, 'under': 1.0, 'inclined': 1.0, 'you': 1.0, 'completely': 1.0, 'couldn': 1.0, 'use': 4.0, 'for': 5.0, 'reclines': 1.0, 'important': 1.0, 'don': 3.0, 'isn': 2.0, 'happy': 1.0, 'one': 2.0, 'lot': 2.0, 'seats': 1.0, 'just': 1.0, 'enough': 3.0, 'price': 1.0, 'child': 2.0, 'everything': 1.0, 'later': 1.0, 'very': 4.0, 'being': 1.0, 'backless': 2.0, 'seatpros': 1.0, 'cup': 3.0, 'booster': 5.0, 'seen': 1.0, 'adjustable': 1.0, 'taller': 1.0, 'be': 3.0, 'adjusted': 1.0, 'about': 3.0, 'haven': 1.0}
Word element => {'child': 1.0, 'second': 1.0, 'so': 1.0, 'while': 1.0, 'for': 1.0, 'last': 1.0, 'will': 1.0, 'very': 2.0, 'best': 1.0, 'the': 4.0, 'a': 1.0, 's': 1.0, 't': 2.0, 'my': 2.0, 'cup': 1.0, 'anymore': 1.0, 'was': 2.0, 'about': 1.0, 'thing': 1.0, 'sat': 1.0, 'didn': 2.0, 'loved': 1.0, 'use': 2.0, 'this': 2.0, 'she': 4.0, 'colorful': 1.0, 'it': 5.0, 'first': 1.0, 'car': 3.0, 'to': 2.0, 'seat': 3.0, 'because': 1.0, 'not': 1.0, 'started': 1.0, 'liked': 1.0, 'stable': 1.0, 'once': 2.0, 'at': 1.0, 'daughter': 1.0, 'in': 1.0, 'install': 1.0, 'and': 2.0, 'like': 1.0, 'holder': 1.0, 'design': 1.0, 'pretty': 2.0, 'is': 1.0, 'plan': 1.0, 'enough': 1.0, 'can': 1.0, 'but': 1.0, 'care': 1.0, 'i': 1.0, 'am': 1.0, 'easy': 1.0, 'sure': 1.0}
Word element => {'as': 1.0, 'beautiful': 1.0, 'like': 1.0, 'feel': 1.0, 'him': 1.0, 'holder': 1.0, 'his': 1.0, 'put': 1.0, 'can': 1.0, 'comfortable': 1.0, 'so': 1.0, 'making': 1.0, 'because': 1.0, 'and': 2.0, 'seats': 1.0, 'sit': 1.0, 'child': 1.0, 'fits': 1.0, 'up': 2.0, 'of': 1.0, 'lbs': 1.0, '65': 1.0, 'cadillac': 1.0, 'grown': 1.0, 'the': 2.0, 'cup': 1.0, 'my': 1.0, 'well': 1.0, 'a': 2.0, 'is': 3.0, 'car': 1.0, 'grandson': 1.0, 'loves': 1.0, 'look': 1.0, 'to': 3.0, 'sippy': 1.0, 'at': 2.0, 'least': 1.0, 'he': 1.0, 'this': 1.0, 'it': 3.0, 'in': 2.0}
Word element => {'guess': 1.0, 'i': 1.0, 'friendly': 1.0, 'user': 1.0, 'not': 1.0, 'this': 2.0, 'car': 2.0, 'seat': 2.0, 'the': 2.0, 'wasa': 1.0, 'unbuckle': 1.0, 'difficult': 1.0, 'especially': 1.0, 'use': 1.0, 'hated': 1.0, 'to': 1.0, 'buckle': 1.0, 'grandmas': 1.0, 'and': 1.0}
Word element => {'belt': 1.0, 'base': 1.0, 'll': 1.0, 'little': 1.0, 'he': 1.0, 'when': 1.0, 'and': 1.0, 'head': 1.0, 'piece': 1.0, 'with': 2.0, 'uses': 1.0, 'daughter': 1.0, 'booster': 1.0, 'forward': 1.0, 'they': 1.0, 'compartments': 1.0, 'seatbelt': 1.0, 'it': 3.0, 'one': 1.0, 'long': 1.0, 've': 1.0, 'quite': 1.0, 'kids': 2.0, 'this': 2.0, 'carseats': 1.0, 'gets': 1.0, 'son': 1.0, 'facing': 1.0, 'we': 3.0, 'a': 6.0, 'are': 2.0, 'the': 6.0, 'but': 1.0, '2': 1.0, 'currently': 1.0, 'because': 1.0, 'our': 2.0, 'as': 3.0, 'seat': 2.0, 'just': 1.0, 'few': 1.0, 'over': 1.0, 'had': 1.0, 'years': 1.0, 'i': 2.0, 'is': 1.0, 'there': 1.0, 'plus': 1.0, 'toys': 1.0, 'or': 1.0, 'cup': 1.0, 'taller': 1.0, 'holder': 1.0, 'great': 1.0, 'feel': 1.0, 'use': 2.0, 'knowing': 1.0, 'have': 1.0, 'love': 2.0, 'for': 2.0, 'snacks': 1.0, 'impact': 1.0, 'safer': 1.0, 'side': 1.0, 'protection': 1.0, 'point': 1.0, '5': 1.0}
Word element => {'with': 1.0, 'go': 1.0, 'heck': 1.0, 'very': 1.0, 'need': 1.0, 'if': 1.0, 'point': 2.0, 'five': 2.0, 'better': 1.0, 'maybe': 1.0, 'disliked': 1.0, 'really': 1.0, 're': 1.0, 'they': 1.0, 'joke': 1.0, 'buckles': 1.0, 'safer': 1.0, 'much': 2.0, 'system': 2.0, 'am': 1.0, 'last': 1.0, 'prior': 1.0, 'them': 1.0, 'figure': 1.0, 'struggle': 1.0, 'lot': 1.0, 'super': 1.0, 'parking': 1.0, 'albertsons': 1.0, 'straw': 1.0, 'screamed': 1.0, 'while': 1.0, 'not': 1.0, 'could': 1.0, 'out': 2.0, 'baby': 1.0, 'inspections': 1.0, 'multiple': 1.0, 'buckle': 1.0, 'even': 1.0, 'wow': 1.0, 'somehow': 1.0, 'loosen': 1.0, 'overall': 2.0, 'sunshine': 1.0, 'than': 1.0, 'considerably': 1.0, 'about': 1.0, 'you': 1.0, 'things': 1.0, 'made': 2.0, 'outing': 1.0, 'good': 1.0, 'was': 6.0, 'crotch': 1.0, 'had': 4.0, 'purchased': 1.0, 'twisted': 3.0, 'harnesses': 1.0, 'child': 4.0, 'that': 4.0, 'booster': 1.0, '4': 1.0, 'case': 1.0, 'to': 10.0, 'surprised': 1.0, 'any': 1.0, 'china': 2.0, 'for': 2.0, 'expensive': 2.0, 'four': 1.0, 'adjustment': 1.0, '2': 1.0, 'but': 2.0, 'inspected': 1.0, 'bit': 1.0, 'after': 2.0, 'carseat': 3.0, '1': 1.0, 'and': 7.0, 'here': 1.0, 'across': 1.0, 'consistently': 2.0, 'new': 1.0, 'heard': 1.0, 'use': 1.0, 'well': 1.0, 'i': 11.0, 'a': 9.0, 't': 2.0, 'the': 19.0, 'of': 4.0, 'adequately': 1.0, 'cheapy': 2.0, 'how': 1.0, 'our': 2.0, 'hopeful': 1.0, 'are': 4.0, '65': 4.0, 'takes': 1.0, 'less': 1.0, 'goes': 1.0, 'own': 1.0, 'without': 1.0, 'days': 1.0, 'considering': 1.0, 'level': 1.0, 'harness': 2.0, 'returned': 1.0, 'straps': 4.0, 'kids': 2.0, 'this': 5.0, 'click': 1.0, 'recently': 1.0, 'diono': 2.0, 'seat': 3.0, 'in': 7.0, 'convinced': 1.0, 'needed': 1.0, 'it': 7.0, 'heavy': 1.0, 'as': 2.0, 'annoying': 1.0, 'constructed': 1.0, 'latch': 2.0, 'radian': 5.0, 'pulling': 1.0, 'chest': 1.0, 'an': 1.0, 'dissatisfied': 1.0, 'second': 2.0, 'construction': 2.0, 'compared': 1.0, 'lesser': 1.0, 'quality': 1.0, 'material': 1.0, 'plastic': 2.0, 'recommend': 1.0, 'piece': 1.0, 'is': 4.0, 'likely': 1.0, 'gotten': 1.0, 'ours': 1.0, 'wasn': 1.0, 'properly': 1.0, 'would': 2.0, 'hold': 1.0, 'reasons': 1.0, 'my': 3.0, 'only': 1.0, 'accident': 1.0, 'get': 1.0, 'wouldn': 1.0, 'break': 1.0, 'secure': 1.0, 'so': 4.0, 'clips': 1.0, 'difficult': 2.0, 'challenge': 1.0, 'perhaps': 1.0, 'just': 2.0, 'elements': 1.0, 'quite': 1.0, 'when': 1.0, 'hurry': 1.0, 'car': 1.0, '3': 1.0}
Word element => {'two': 1.0, 'little': 1.0, 'hang': 1.0, 'top': 1.0, 'ordered': 1.0, 'well': 1.0, 'a': 1.0, 'is': 1.0, 'as': 1.0, 'son': 1.0, 'the': 2.0, 'my': 1.0, 'although': 1.0, 'to': 2.0, 'i': 2.0, 'of': 1.0, 'difficult': 1.0, 'seat': 1.0, 'like': 2.0, 'get': 1.0, 'do': 1.0, 'and': 1.0, 'it': 1.0, 'this': 1.0, 'buckle': 1.0, 'seems': 1.0}
Word element => {'separately': 1.0, 'them': 1.0, 'had': 1.0, 'now': 1.0, 'regret': 1.0, 'well': 1.0, 'has': 1.0, 'last': 1.0, 'converts': 1.0, 'stages': 1.0, 'next': 1.0, 'that': 2.0, 'companies': 1.0, 'first': 2.0, 'and': 2.0, 'seats': 1.0, 'impact': 1.0, 'for': 2.0, 'wish': 1.0, 'this': 2.0, 'found': 1.0, 'becomes': 1.0, 'i': 3.0, 'great': 1.0, 'more': 1.0, 'the': 8.0, 'she': 1.0, 'it': 1.0, 'disliked': 1.0, 'year': 1.0, 'car': 4.0, 'cushioning': 1.0, 'buying': 2.0, 'only': 1.0, 'granddaughter': 1.0, 'idea': 1.0, 'of': 1.0, '6': 1.0, 'we': 1.0, 'needs': 1.0, 'side': 1.0, 'lasts': 1.0, 'shame': 1.0, '3': 2.0, 'on': 1.0, 'bought': 1.0, 'one': 1.0, 'months': 1.0, 'stroller': 3.0, 'making': 1.0, 'as': 2.0, 'least': 1.0, 'our': 1.0, 'seat': 4.0, 'stability': 1.0, 'combo': 2.0, '8': 1.0, 'should': 1.0, 'at': 1.0, 'real': 1.0}
Word element => {'comfortable': 1.0, 'naps': 1.0, 'seems': 1.0, 'our': 1.0, '13': 1.0, 'month': 1.0, 'in': 1.0, 'old': 1.0, 'and': 1.0, 'very': 2.0, 'is': 1.0, 'he': 1.0, 'seat': 1.0, 'happy': 1.0, 'easily': 1.0, 'new': 1.0, 'his': 1.0}
Word element => {'cars': 1.0, 'between': 1.0, 'pretty': 1.0, 'kid': 1.0, 'seems': 1.0, 'in': 1.0, 'wish': 1.0, 'well': 1.0, 'works': 1.0, 'it': 3.0, 'him': 1.0, 'think': 1.0, 'out': 1.0, 'i': 2.0, 'like': 1.0, 'ok': 1.0, 'switch': 1.0, 'to': 3.0, 'its': 1.0, 'relatively': 1.0, 'easy': 1.0, 'and': 3.0, 'get': 1.0, 'were': 1.0, 'that': 1.0, 'easier': 1.0}
Word element => {'other': 1.0, 'any': 1.0, 'go': 1.0, 't': 1.0, 'sit': 1.0, 'for': 1.0, 'comfortable': 1.0, 'very': 1.0, 'is': 1.0, 'condition': 1.0, 'but': 1.0, 'car': 1.0, 'hesitant': 1.0, 'seat': 1.0, 'of': 1.0, 'online': 1.0, 'perfect': 1.0, 'in': 2.0, 'month': 1.0, 'came': 1.0, 'to': 1.0, 'buying': 1.0, 'was': 1.0, 'old': 1.0, 'i': 5.0, 'my': 1.0, 'went': 1.0, 'a': 1.0, 'ahead': 1.0, 'with': 1.0, 'wouldn': 1.0, 'it': 2.0, 'and': 2.0, 'did': 2.0, 'brand': 1.0, '14': 1.0, 'am': 1.0, 'glad': 1.0, 'kinda': 1.0, 'so': 1.0, 'everything': 1.0}
Word element => {'safety': 1.0, 'compromising': 1.0, 'on': 1.0, 'forth': 1.0, 'back': 1.0, 'never': 1.0, 'certainly': 1.0, 'great': 1.0, 'which': 1.0, 'well': 1.0, 'fastened': 1.0, 'basis': 1.0, 'car': 1.0, 'out': 1.0, 'sure': 1.0, 'get': 1.0, 'seem': 1.0, 'not': 1.0, 'but': 1.0, 'can': 1.0, 'it': 5.0, 'because': 1.0, 'installed': 1.0, 'without': 1.0, 'the': 5.0, 'that': 3.0, 'with': 1.0, 'this': 2.0, 'only': 1.0, 'works': 1.0, 'and': 2.0, 'tall': 2.0, 'finding': 1.0, 'problem': 1.0, 'could': 1.0, 'a': 3.0, 'we': 5.0, 'regular': 1.0, 'in': 1.0, 'always': 1.0, 'once': 1.0, 'of': 4.0, 'almost': 1.0, '40': 1.0, 'booster': 1.0, 'daughter': 1.0, 'us': 1.0, 'had': 2.0, 'now': 1.0, 'our': 1.0, 'seat': 4.0, 'to': 3.0, 'for': 1.0, 'love': 1.0, 'm': 1.0, 'years': 1.0, 'yrs': 1.0, 'transfer': 2.0, 'old': 1.0, 'two': 1.0, '4': 1.0, 'i': 3.0, 'so': 1.0, 'versatility': 1.0, 've': 2.0, '43': 1.0, 'allow': 1.0, 'will': 1.0, 'lbs': 1.0, 'easily': 1.0, 'later': 1.0, 'life': 1.0, 'lightweight': 1.0, 'my': 1.0, 'complaint': 1.0, 'is': 3.0}
Word element => {'hybrid': 1.0, 'large': 1.0, 'a': 1.0, 'want': 2.0, 'if': 2.0, 'compact': 1.0, 'frontier': 1.0, 'britax': 1.0, 'go': 2.0, 'you': 2.0, 'sent': 1.0, 'age': 1.0, 'at': 1.0, 'first': 1.0, 'it': 2.0, 'very': 1.0, 'my': 2.0, 'more': 1.0, 'the': 3.0, 'for': 3.0, 'buckle': 1.0, 'safety': 1.0, 'kids': 1.0, 'daughter': 1.0, 'something': 1.0, 'that': 1.0, 'were': 1.0, 'buckles': 1.0, 'sitting': 1.0, 'back': 2.0, 'impossible': 1.0, 'and': 3.0, 'do': 1.0, 'me': 1.0, 'far': 1.0, '4': 1.0, 'on': 2.0, 'difficult': 1.0, 'seat': 2.0, 'to': 1.0, 'was': 2.0, 'so': 1.0}
Word element => {'course': 1.0, 'of': 1.0, 'safe': 1.0, 'comfortable': 1.0, 'be': 1.0, 'him': 1.0, 'while': 1.0, 'car': 2.0, 'this': 3.0, '30': 1.0, 'am': 2.0, 'lbs': 1.0, 'head': 1.0, 'true': 1.0, 'their': 1.0, 'mostly': 1.0, 'over': 1.0, 'child': 1.0, 'wondering': 1.0, 'sleeping': 1.0, 'problems': 1.0, 'possible': 1.0, 'son': 1.0, 'about': 2.0, 'years': 1.0, 'i': 4.0, 'one': 1.0, 'parents': 1.0, 'as': 4.0, 'to': 1.0, 'any': 1.0, 'seat': 2.0, 'well': 1.0, 'has': 1.0, 'in': 2.0, 'complaining': 1.0, 'first': 1.0, 'stuck': 1.0, 'had': 1.0, 'w': 1.0, 'have': 1.0, 'read': 1.0, 's': 1.0, '26': 1.0, 'a': 1.0, 'few': 1.0, 'slumping': 1.0, 'reviews': 1.0, 'between': 1.0, 'the': 1.0, 'fit': 1.0, 'my': 1.0, 'is': 1.0, 'if': 1.0, 'want': 1.0, 'and': 3.0, 'tall': 1.0}
Word element => {'bought': 1.0, 'm': 1.0, 'than': 1.0, 'sometimes': 1.0, 'in': 1.0, 'buckle': 1.0, 'bottom': 1.0, 'about': 1.0, 'snap': 1.0, 'like': 1.0, 'didn': 1.0, 'thing': 1.0, 't': 1.0, 'the': 3.0, 'priced': 1.0, 'to': 2.0, 'was': 1.0, 'other': 1.0, 'finally': 1.0, 'reasonably': 1.0, 'car': 2.0, 'overall': 1.0, 'that': 3.0, 'seat': 3.0, 'good': 1.0, 'a': 2.0, 'found': 1.0, 'comfortable': 1.0, 'for': 1.0, 'happy': 1.0, 'my': 1.0, '11': 1.0, 'month': 1.0, 'hard': 1.0, 'only': 1.0, 'it': 2.0, 'i': 4.0, 'old': 1.0, 'is': 3.0, 'practical': 1.0, 'get': 1.0, 'and': 2.0, 'comfy': 1.0}
Word element => {'children': 1.0, 'not': 1.0, 'hard': 1.0, 'already': 1.0, '37lbs': 1.0, 'close': 1.0, 'strap': 1.0, 'recommend': 1.0, 'crotch': 1.0, 'mentioned': 1.0, 'limits': 1.0, 'be': 1.0, 'time': 1.0, 'so': 1.0, 'unless': 1.0, 'in': 3.0, 'skinny': 1.0, 'harness': 1.0, 'weight': 2.0, 'turned': 1.0, 'fitting': 1.0, 'with': 2.0, 'higher': 1.0, 'it': 1.0, 'perfect': 1.0, 'this': 3.0, 'is': 2.0, 'at': 1.0, 'who': 2.0, 'the': 4.0, 'he': 1.0, '99': 1.0, 'larger': 1.0, 'there': 1.0, '65lbs': 1.0, 'always': 1.0, 'way': 2.0, 'but': 1.0, 'weighs': 1.0, 'i': 2.0, 'kid': 1.0, 'a': 3.0, 's': 1.0, 'going': 1.0, 'nice': 1.0, 'seemed': 1.0, '97': 1.0, 'as': 1.0, 'to': 1.0, 'seat': 3.0, 'just': 2.0, 'no': 1.0, 'would': 2.0, 'super': 2.0, 'they': 1.0, 'percentile': 1.0, 'has': 2.0, 're': 1.0, 'reviewer': 1.0, 'another': 1.0, 'my': 2.0, 'too': 1.0, 'tall': 1.0, 'and': 2.0, 'thought': 1.0, 'purchased': 1.0, 'fit': 1.0, 'for': 3.0, 'child': 2.0, '3': 1.0, 'been': 1.0, 'height': 1.0}
Word element => {'awesome': 1.0, 'price': 1.0, 'is': 1.0, 'door': 1.0, 'two': 1.0, 'the': 1.0, 'great': 1.0, '20lbs': 1.0, 'weights': 1.0, 'got': 1.0, 'seat': 2.0, '10': 1.0, 'my': 2.0, 'small': 1.0, 'for': 1.0, 'in': 1.0, 'loves': 1.0, 'he': 2.0, 'this': 1.0, 'it': 1.0, 'i': 1.0, 'and': 3.0, 'easy': 1.0, 'to': 1.0, 'tc': 1.0, 'month': 1.0, 'take': 1.0, 'out': 1.0, 'put': 1.0, 'scion': 1.0}
Word element => {'excellent': 1.0, 'an': 1.0, 'taking': 1.0, 'years': 1.0, 'year': 2.0, 'from': 1.0, 'why': 1.0, 'for': 2.0, 'one': 1.0, 'using': 1.0, 'sits': 1.0, 'the': 1.0, 'use': 2.0, 'way': 1.0, 'you': 2.0, 'this': 2.0, 'only': 1.0, 'need': 1.0, 'foolishly': 1.0, 'get': 1.0, 'now': 1.0, 'away': 2.0, 'and': 1.0, 'rear': 1.0, 'it': 5.0, 'looks': 1.0, 'is': 1.0, 'in': 1.0, 'said': 1.0, 'if': 1.0, 'to': 1.0, 'seat': 2.0, 't': 2.0, 'a': 2.0, 'storage': 1.0, 'facing': 1.0, 'meaning': 1.0, 'can': 2.0, 'four': 1.0, 'don': 1.0, 'threw': 1.0, 'that': 1.0, 'box': 1.0, 'before': 1.0, 'learning': 1.0, 'i': 2.0, 'otherwise': 1.0, 'good': 1.0, 'be': 1.0}
Word element => {'be': 1.0, 're': 1.0, 'sure': 1.0, 'wrong': 1.0, 'not': 1.0, 'miss': 1.0, 'or': 1.0, 'been': 1.0, 'that': 1.0, 'can': 1.0, 'but': 2.0, 'reason': 1.0, 'in': 1.0, 'something': 1.0, 've': 1.0, 'because': 1.0, 'son': 1.0, 'is': 2.0, 'it': 1.0, 'looks': 1.0, 'padding': 1.0, 'complains': 1.0, 'rating': 1.0, 'the': 6.0, 'nice': 1.0, '1': 1.0, 'and': 3.0, 'graco': 1.0, 'for': 2.0, 'if': 1.0, 'functions': 1.0, 'periots': 1.0, 'challenging': 1.0, 'car': 2.0, 'nautilus': 1.0, 'real': 1.0, 'safe': 1.0, 'pretty': 1.0, 'about': 1.0, 'sturdy': 1.0, 'his': 1.0, 'part': 1.0, 'back': 2.0, 'overall': 1.0, 'hurting': 1.0, 'with': 1.0, 'doing': 1.0, 'this': 1.0, 'of': 1.0, '34': 2.0, 'well': 1.0, 'has': 1.0, 'little': 1.0, 'feels': 2.0, 'harsh': 1.0, 'seat': 4.0, 'to': 2.0, 'cushion': 1.0, 'sit': 1.0, '3': 1.0, 'constantly': 1.0, 'on': 1.0, 'my': 1.0, 'extended': 1.0, 's': 1.0, 'we': 2.0, 'tried': 1.0, 'hit': 1.0, 'some': 1.0, 'lower': 2.0, 'add': 1.0}
Word element => {'hope': 1.0, 'child': 1.0, 'last': 1.0, 'recommend': 1.0, 'awesome': 1.0, 'to': 1.0, 'was': 1.0, 'word': 1.0, 'like': 1.0, 'protected': 1.0, 'his': 2.0, 'buy': 1.0, 'i': 1.0, 'old': 1.0, 'one': 1.0, 'comfortable': 1.0, 'for': 2.0, 'very': 1.0, 'year': 1.0, 'who': 1.0, 'tall': 1.0, '5': 1.0, 'a': 1.0, 'well': 1.0, 'said': 1.0, 'is': 6.0, 'restraint': 1.0, 'have': 2.0, 'we': 2.0, 'highly': 1.0, 'chest': 1.0, 'height': 1.0, 'age': 1.0, 'seat': 1.0, '34': 2.0, 'of': 1.0, 'older': 1.0, 'it': 2.0, 'this': 2.0, 'he': 2.0, 'car': 1.0, 'back': 1.0, 'perfect': 1.0, 'the': 2.0, 'adjustable': 1.0, 'and': 2.0}
Word element => {'like': 1.0, 'replacing': 1.0, 'replaced': 1.0, 'other': 1.0, 'if': 1.0, 'second': 1.0, 'one': 2.0, 'bought': 1.0, 'these': 1.0, 'already': 1.0, 'drink': 1.0, 'holder': 1.0, 'cup': 1.0, 'toys': 1.0, 'are': 1.0, 'there': 1.0, 'cubbies': 1.0, 'old': 1.0, 'issues': 2.0, 'of': 2.0, 'twisting': 1.0, 'with': 4.0, 'not': 1.0, 'comfortable': 1.0, 'nice': 1.0, 'great': 1.0, 'straps': 2.0, 'little': 1.0, 'very': 2.0, 'will': 2.0, 'seems': 1.0, 'also': 1.0, 'easy': 2.0, 'so': 2.0, 'follow': 1.0, 'options': 1.0, 'looked': 1.0, 'adjust': 1.0, 'he': 1.0, 'she': 2.0, 'it': 4.0, 'i': 4.0, 'buy': 1.0, 'outgrown': 1.0, 'for': 5.0, 'hopefully': 1.0, 'my': 3.0, 'car': 2.0, 'enjoy': 1.0, 'together': 1.0, 'in': 3.0, 'this': 3.0, 'perfect': 1.0, 'now': 1.0, 'was': 3.0, '2': 1.0, 'far': 1.0, 'mother': 1.0, 'deal': 1.0, 'the': 4.0, 'son': 2.0, 'height': 1.0, 'years': 2.0, 't': 1.0, 'a': 5.0, 'has': 1.0, 'installation': 1.0, 'into': 1.0, 'that': 3.0, 'had': 3.0, 'purchased': 1.0, 'woulnd': 1.0, 'any': 2.0, 'to': 5.0, 'as': 1.0, 'seat': 3.0, 'all': 1.0, 'be': 2.0, 'him': 1.0, 'multiple': 1.0, 'have': 4.0, 'coming': 1.0, 'come': 1.0, 'seats': 2.0, 'option': 1.0, 'grows': 1.0, 'put': 1.0, 'her': 2.0, 'and': 5.0, 'super': 1.0}
Word element => {'pleased': 1.0, 'seems': 1.0, 'blessing': 1.0, 'dangling': 1.0, 'longer': 1.0, 'overall': 1.0, 'head': 1.0, 'sons': 1.0, 'recliner': 1.0, 'no': 1.0, 'several': 1.0, 'comfortable': 1.0, 'car': 2.0, 'sturdy': 1.0, 'his': 1.0, 'complaints': 1.0, 'personal': 1.0, 'my': 3.0, 'other': 1.0, 'between': 1.0, 'need': 1.0, 'parents': 1.0, 'recommend': 1.0, 'son': 1.0, 'cars': 1.0, 'difficult': 1.0, 'not': 1.0, 'seat': 3.0, 'to': 4.0, 'although': 1.0, 'frustrating': 1.0, 'seats': 2.0, 'take': 1.0, 'heavy': 1.0, 'sleeps': 1.0, 'is': 7.0, 'reason': 1.0, 'itself': 1.0, 'in': 4.0, 'than': 1.0, 'because': 2.0, 'does': 1.0, '4': 1.0, 'i': 3.0, 'point': 1.0, 'loves': 1.0, 'that': 1.0, 'gave': 1.0, 'am': 1.0, 'times': 1.0, 'fallen': 1.0, 'when': 1.0, 'it': 7.0, 'while': 1.0, 'clasp': 1.0, 'hard': 1.0, 'share': 1.0, 'for': 1.0, 'stars': 1.0, 'asleep': 1.0, 'the': 7.0, 'job': 1.0, 'off': 1.0, 'or': 1.0, 'of': 3.0, 'has': 1.0, 'well': 1.0, 'a': 2.0, '5': 2.0, 'and': 4.0, 'get': 1.0, 'harness': 1.0, 'do': 1.0, 'work': 1.0, 'can': 1.0, 'this': 1.0, 'strongly': 1.0, 'trying': 1.0, 'be': 1.0, 'instead': 1.0, 'grumpy': 1.0, 'very': 5.0, 'sleeping': 1.0, 'child': 1.0, 'out': 1.0, 'he': 2.0, 'addition': 1.0}
Word element => {'style': 1.0, 'safety': 1.0, 'in': 1.0, 'ridding': 1.0, 'are': 1.0, 'they': 1.0, 'pleased': 1.0, 'child': 1.0, 'about': 1.0, 'second': 1.0, 'his': 1.0, 'grand': 2.0, 'very': 1.0, 'son': 1.0, 'could': 1.0, 'and': 2.0, 'our': 2.0, 'bought': 2.0, 'not': 1.0, 'was': 1.0, 'other': 1.0, 'we': 2.0, 'stop': 1.0, 'talking': 1.0, 'how': 1.0, 'great': 1.0, 'this': 1.0, 'it': 1.0, 'a': 1.0, 'parents': 1.0, 'for': 2.0, 'one': 1.0}
Word element => {'well': 1.0, 'nice': 1.0, 'really': 1.0, 'is': 1.0, 'of': 1.0, 'top': 1.0, 'holder': 1.0, 'rest': 2.0, 'arm': 2.0, 'under': 1.0, 'as': 1.0, 'cubby': 1.0, 'little': 1.0, 'her': 2.0, 'cup': 1.0, 'my': 1.0, 'parents': 1.0, 'rides': 1.0, 'for': 1.0, 'also': 1.0, 'in': 3.0, 'seat': 3.0, 'toys': 1.0, 'car': 2.0, 'this': 1.0, 'purchased': 1.0, 'granddaughter': 1.0, 'to': 1.0, 'i': 1.0, 'same': 1.0, 'she': 1.0, 'holes': 1.0, 'the': 7.0, 'great': 1.0, 'and': 1.0, 'have': 1.0, 'likes': 1.0, 'put': 1.0}
Word element => {'drain': 1.0, 'though': 1.0, 'cup': 1.0, 'removable': 1.0, 'and': 2.0, 'wasnt': 1.0, 'like': 2.0, 'quality': 1.0, 'a': 3.0, 'modern': 1.0, 'that': 1.0, 'most': 1.0, 'feel': 1.0, 'with': 1.0, 'it': 3.0, 'i': 2.0, 'uses': 1.0, 'materials': 1.0, 'had': 1.0, 'overstuffed': 1.0, 'to': 3.0, 'its': 1.0, 'clean': 1.0, 'easy': 2.0, 'all': 1.0, 'install': 1.0, 'of': 1.0, 'would': 1.0}
Word element => {'we': 1.0, 'have': 1.0, 'saw': 1.0, 'loved': 1.0, 'already': 2.0, 'different': 2.0, 'vehicle': 1.0, 'car': 2.0, 'knew': 1.0, 'in': 1.0, '2nd': 1.0, 'needed': 1.0, 'because': 1.0, 'seat': 2.0, 'a': 3.0, 'i': 5.0, 'when': 1.0, 'for': 1.0, 'one': 2.0, 'the': 2.0, 'same': 2.0, 'brand': 1.0, 'it': 1.0, 'this': 1.0, 'only': 1.0, 'wanted': 1.0, 'color': 1.0}
Word element => {'unlock': 1.0, 'time': 1.0, 'a': 1.0, 'length': 1.0, 'while': 1.0, 'increase': 1.0, 'how': 1.0, 'out': 1.0, 'every': 1.0, 'sturdy': 1.0, 'enough': 1.0, 'around': 1.0, 'feels': 1.0, 'easy': 1.0, 'all': 1.0, 'not': 1.0, 'just': 1.0, 'support': 1.0, 'the': 2.0, 'are': 1.0, 'and': 2.0, 'quick': 1.0, 'belts': 1.0, 'provides': 1.0, 'installation': 1.0, 'takes': 1.0, 'kidcons': 1.0, 'figure': 1.0, 'pros': 1.0, 'its': 1.0, 'was': 1.0, 'to': 3.0, 'too': 1.0, 'short': 1.0, 'i': 1.0, 'could': 1.0}
Word element => {'family': 1.0, 'our': 1.0, 'over': 1.0, 'than': 1.0, 'person': 1.0, 'perfect': 1.0, 'in': 1.0, 'for': 1.0, 'computer': 1.0, 'quaility': 1.0, 'item': 1.0, 'nicer': 1.0, 'it': 1.0, 'this': 1.0, 'the': 1.0, 'showed': 1.0, 'great': 1.0, 't': 1.0, 'fit': 1.0, 'we': 1.0, 'be': 1.0, 'was': 1.0, 'happier': 1.0, 'couldn': 1.0, 'and': 1.0}
Word element => {'same': 1.0, 'way': 1.0, 'safest': 1.0, 'harnessing': 1.0, 'rear': 1.0, 'lbs': 1.0, 'enough': 1.0, '40': 1.0, 'harness': 1.0, 'only': 1.0, 'convertable': 1.0, 'about': 1.0, 'up': 1.0, 'child': 1.0, 'later': 1.0, '3': 2.0, 'soon': 1.0, 'and': 3.0, 'big': 1.0, '1': 2.0, 'seats': 2.0, 'than': 1.0, 'recommend': 1.0, 'she': 1.0, 'it': 5.0, 'this': 2.0, 'buying': 1.0, 'with': 1.0, 'for': 2.0, 'love': 1.0, 'i': 3.0, 'graco': 1.0, 'will': 2.0, 'most': 1.0, 'nautilus': 1.0, 'outgrow': 1.0, 'in': 3.0, 'be': 1.0, 'anyone': 1.0, 'race': 1.0, 'facing': 1.0, 'son': 1.0, 'is': 2.0, 'longer': 1.0, 'the': 6.0, 'car': 2.0, 'harnesses': 1.0, 'transition': 1.0, 'that': 2.0, 'into': 1.0, 'loves': 1.0, 'daughter': 1.0, 'booster': 1.0, 'extended': 2.0, 'b': 1.0, 'fact': 1.0, 'my': 2.0, 'his': 2.0, 'new': 1.0, 'calls': 1.0, 'matrixthis': 1.0, 'of': 1.0, 'design': 1.0, 'best': 1.0, 'c': 1.0, 'd': 1.0, 'highly': 1.0, 'as': 2.0, 'seat': 7.0, 'to': 3.0, 's': 2.0, 'a': 1.0}
Word element => {'child': 1.0, 'hard': 1.0, 'pull': 1.0, 'need': 1.0, 'really': 1.0, 'like': 1.0, 'enough': 1.0, 'well': 1.0, 'very': 2.0, 'suv': 1.0, 'purchased': 1.0, 'out': 1.0, 'it': 3.0, 'this': 1.0, 'only': 1.0, 'that': 1.0, 'into': 1.0, 'move': 1.0, 'we': 1.0, 'was': 1.0, 'tight': 1.0, 'fits': 1.0, 'my': 3.0, 'cup': 1.0, 'infant': 1.0, 'car': 2.0, 'his': 1.0, 'ready': 1.0, 'option': 1.0, 'back': 1.0, 'of': 1.0, 'our': 1.0, 'to': 4.0, 'seat': 2.0, 'not': 1.0, 'i': 5.0, 'love': 1.0, 'feel': 1.0, 'comfortable': 1.0, 'the': 4.0, 'holder': 1.0, 'secure': 1.0, 'seems': 1.0, 'in': 1.0, 'and': 1.0, 'getting': 1.0, 'is': 3.0, 'easy': 1.0, 'adjust': 1.0, 'ensure': 1.0, 'toddler': 1.0, 'height': 1.0, 'down': 1.0, 'complaint': 1.0, 'sometimes': 1.0, 'worry': 1.0, 'when': 1.0, 'am': 1.0, 'straps': 1.0}
Word element => {'45in': 1.0, '36': 1.0, '6': 1.0, 'features': 1.0, 'beware': 1.0, 'just': 1.0, 'comfortably': 1.0, 'has': 1.0, 'well': 1.0, 'reinstall': 1.0, 'able': 1.0, 'if': 1.0, 'being': 1.0, 'out': 1.0, 'never': 1.0, 'like': 1.0, 'in': 2.0, 'safety': 1.0, 'their': 1.0, 'once': 1.0, 'of': 3.0, 'lbs': 1.0, 'you': 1.0, 'again': 1.0, 'easily': 1.0, 'office': 1.0, 'local': 1.0, 'felt': 1.0, 'it': 5.0, 'honda': 1.0, '2004': 1.0, 'star': 1.0, 'could': 2.0, 'a': 2.0, 'rating': 1.0, 'for': 3.0, 'love': 1.0, 'struggled': 1.0, 'enough': 1.0, 'installers': 1.0, 'exception': 1.0, 'one': 1.0, 'huge': 1.0, 'not': 3.0, 'otherwise': 1.0, 'two': 1.0, 'i': 6.0, 'with': 1.0, 'this': 3.0, 'seat': 6.0, 'to': 5.0, 'say': 1.0, 'important': 1.0, 'that': 1.0, 'risk': 1.0, 'do': 1.0, 'and': 3.0, 'have': 3.0, 'due': 1.0, 'car': 4.0, 'pilot': 1.0, 'my': 1.0, 'fits': 1.0, 'vehicle': 1.0, 'tightly': 2.0, 'anchors': 1.0, 'does': 1.0, 'online': 1.0, 'great': 1.0, '1': 1.0, 'install': 1.0, 'the': 4.0, 'way': 1.0, 'was': 1.0, 'belt': 1.0, 'are': 1.0, 'yr': 1.0, 'made': 1.0, 'weeks': 1.0, 'very': 1.0, 'inspectors': 2.0, 'wathced': 1.0, 'read': 1.0, 'old': 1.0, 'type': 1.0, 'instrucions': 1.0, 'videos': 1.0, 'get': 2.0, 'talked': 1.0, 'experts': 1.0, 'took': 1.0, 'then': 1.0}
Word element => {'happy': 1.0, 'super': 1.0, 'am': 1.0, 'waited': 1.0, 'small': 1.0, 'about': 1.0, 'her': 2.0, 'carseat': 1.0, 'is': 2.0, 'want': 1.0, '4th': 1.0, 'so': 1.0, 'time': 1.0, 'this': 2.0, 'only': 1.0, 'with': 2.0, 'loves': 1.0, 'birthday': 1.0, 'it': 3.0, 'truly': 1.0, 'she': 4.0, 'the': 1.0, 'get': 1.0, 'perfectly': 1.0, '30lbs': 1.0, 'my': 1.0, 'fits': 1.0, 'age': 1.0, 'in': 1.0, 'and': 2.0, 'loads': 1.0, 'of': 1.0, 'talks': 1.0, '20': 1.0, 'room': 1.0, 'i': 2.0, 'buy': 1.0, 'for': 2.0, 'cheap': 1.0, 'did': 1.0, 'kinda': 1.0, 'not': 1.0, 'to': 3.0, 'all': 1.0, 'grow': 1.0, 'seat': 2.0, 'we': 1.0, 'a': 1.0, 'daughter': 1.0, 'booster': 1.0}
Word element => {'asleep': 1.0, 'falls': 1.0, 'i': 1.0, 'reclined': 1.0, 'good': 1.0, 'he': 1.0, 'seat': 1.0, 'not': 1.0, 'another': 1.0, 'doesn': 1.0, 'and': 1.0, 'value': 1.0, 'car': 1.0, 'product': 1.0, 'head': 1.0, 'my': 1.0, 'so': 1.0, 'as': 3.0, 'son': 1.0, 's': 1.0, 'seem': 1.0, 't': 1.0, 'comfortable': 1.0, 'own': 1.0, 'if': 1.0}
Word element => {'carseat': 1.0, 'need': 1.0, 'no': 1.0, 'my': 1.0, 'till': 1.0, 'hopefully': 1.0, 's': 1.0, 'easier': 1.0, 'place': 1.0, 'back': 1.0, 'make': 1.0, 'goes': 1.0, 'automatically': 1.0, 'on': 1.0, 'elastic': 1.0, 'piece': 1.0, 'but': 1.0, 'as': 1.0, 'to': 8.0, 'in': 2.0, 'seat': 2.0, 'between': 1.0, 'and': 3.0, 'straps': 1.0, 'cheapness': 1.0, 'awesome': 2.0, 'like': 1.0, 'had': 1.0, 'reclining': 1.0, 'third': 1.0, 'out': 1.0, 'buckles': 2.0, 'don': 1.0, 'child': 3.0, 'price': 2.0, 'reason': 4.0, 'holder': 1.0, 'harness': 1.0, 'much': 1.0, 'do': 1.0, 't': 1.0, 'a': 4.0, 'will': 2.0, 'could': 1.0, 'longer': 1.0, 'of': 4.0, 'the': 16.0, 'safe': 1.0, 'i': 9.0, 'cup': 1.0, 'booster': 1.0, 'so': 5.0, 'time': 1.0, 'boy': 1.0, 'pt': 1.0, 'for': 1.0, 'love': 4.0, 'second': 1.0, 'more': 2.0, 'versatile': 1.0, 'lock': 1.0, 'are': 2.0, 'britax': 1.0, 'first': 1.0, '65lb': 1.0, 'this': 1.0, 'it': 10.0, 'with': 1.0, 'just': 1.0, '5': 1.0, 'costs': 1.0, 'factor': 1.0, 'helpful': 1.0, '100lb': 1.0, 'down': 1.0, 'clearly': 1.0, 'quality': 1.0, 'purchased': 1.0, 'coarse': 1.0, 'because': 1.0, 'that': 4.0, 'probably': 1.0, 'give': 1.0, 'not': 1.0, 'all': 1.0, 'an': 2.0, 'scimp': 1.0, 'somewhere': 1.0, 'us': 1.0, 'also': 1.0, 'fourth': 1.0, 'going': 1.0, 'childs': 1.0, 'crotch': 1.0, 'sucks': 1.0, 'you': 1.0, 'what': 1.0, 'when': 1.0, 'am': 1.0, 'have': 3.0, '40lb': 1.0, 'they': 3.0, 'fish': 1.0, 'every': 1.0, 'is': 8.0, 'at': 1.0, 'sits': 1.0, 'very': 1.0, 'yay': 1.0, 'two': 1.0, 'little': 1.0, 'trying': 1.0, 'connection': 1.0, 'made': 1.0, 'user': 1.0, 'friendly': 1.0, 'better': 1.0, 'think': 1.0, 'sew': 1.0}
Word element => {'l': 1.0, 'bench': 1.0, 'old': 1.0, 'an': 2.0, 'back': 1.0, 'setting': 1.0, 'recline': 1.0, 've': 1.0, 'unit': 1.0, 'easiest': 1.0, 'truck': 1.0, 'holding': 1.0, 'while': 1.0, 'get': 1.0, 'somehow': 1.0, 'have': 1.0, 'and': 4.0, 'shape': 1.0, 'overall': 1.0, 'wks': 1.0, 'seats': 1.0, 'otherwise': 1.0, 'i': 2.0, 'are': 1.0, 'britax': 1.0, 'used': 2.0, 'style': 1.0, 'not': 2.0, 'my': 1.0, 'low': 1.0, 'high': 1.0, 'pulling': 1.0, 'place': 1.0, 'the': 10.0, 'can': 1.0, 'shoulder': 1.0, '2': 1.0, 'adjust': 1.0, 'liner': 2.0, 'first': 1.0, 'your': 1.0, 'think': 1.0, 'put': 1.0, 's': 1.0, 'a': 1.0, 'we': 3.0, 'peg': 1.0, 'like': 3.0, 'had': 2.0, 'daughter': 1.0, 'slides': 1.0, 'in': 3.0, 'where': 1.0, 'fit': 1.0, 'is': 1.0, 'around': 1.0, 'totally': 1.0, 'her': 1.0, 'different': 1.0, 'it': 3.0, 'she': 2.0, 'did': 1.0, 'shaped': 1.0, 'keep': 1.0, 'at': 1.0, 'seat': 3.0, 'to': 2.0, 'all': 1.0, 'pickup': 1.0, 'sit': 1.0, 'always': 1.0, 'straps': 2.0, 'child': 1.0, 'over': 1.0, 'bit': 1.0, 'so': 2.0, 'complained': 1.0, 'you': 1.0}
Word element => {'use': 1.0, 'to': 1.0, 'easy': 1.0, 'very': 1.0, 'seat': 1.0, 'great': 1.0}
Word element => {'apart': 1.0, 'take': 1.0, 'easy': 1.0, 'fine': 1.0, 'that': 1.0, 'itself': 1.0, 'doesn': 1.0, 'she': 1.0, 'it': 1.0, 'recline': 1.0, 'this': 1.0, 'with': 1.0, 'car': 2.0, 'but': 1.0, '2': 2.0, 'the': 2.0, 'works': 1.0, 'end': 1.0, 'just': 2.0, '1': 1.0, 'and': 3.0, 'year': 1.0, 'daughter': 1.0, 'where': 1.0, 'quite': 1.0, 'when': 1.0, 'alright': 1.0, 'secure': 1.0, 'seems': 1.0, 'old': 1.0, 'be': 1.0, 'reclining': 1.0, 'wash': 1.0, 'up': 1.0, 'all': 1.0, 'seat': 3.0, 'sleep': 1.0, 'to': 3.0, 'actual': 1.0, 'a': 1.0, 't': 1.0, 'we': 2.0, 'go': 1.0, 'on': 1.0, 'longer': 1.0, 'is': 1.0, 'at': 1.0, 'lot': 1.0, 'trips': 1.0, 'still': 1.0, 'my': 1.0, 'tight': 1.0, 'needs': 1.0, 'so': 1.0}
Word element => {'not': 1.0, 'out': 1.0, 'test': 1.0, 'family': 1.0, 'hopefully': 1.0, 'factor': 1.0, 'account': 1.0, 'course': 1.0, 'pinch': 1.0, 'get': 1.0, 'depth': 1.0, 's': 2.0, 'clip': 1.0, 'our': 2.0, 'made': 1.0, 'your': 1.0, 'feel': 1.0, 'parts': 1.0, 'thread': 1.0, 're': 1.0, 'remove': 1.0, 'shoulder': 1.0, 'height': 1.0, 'adjust': 1.0, '3': 1.0, 'must': 1.0, 'youtube': 1.0, 'goodness': 1.0, 'difficult': 2.0, 'mail': 1.0, 'once': 1.0, 'thin': 1.0, 'insert': 1.0, 'unsnap': 1.0, 'chest': 1.0, 'infant': 1.0, 'removal': 2.0, 'from': 2.0, 'slot': 1.0, 'front': 1.0, 'consuming': 1.0, 'disappointing': 1.0, 'found': 1.0, 'bit': 1.0, '90': 1.0, 'can': 1.0, 'so': 2.0, 'named': 1.0, 'off': 1.0, 'safety': 2.0, 'wouldn': 1.0, 'best': 1.0, 'ratings': 1.0, 'i': 5.0, 'on': 1.0, 'for': 4.0, 'time': 3.0, 'model': 2.0, 'reports': 1.0, 'had': 1.0, 'up': 1.0, 'thank': 1.0, 'product': 1.0, 'child': 1.0, 'hard': 1.0, 'over': 1.0, 'graco': 1.0, 'value': 1.0, 'originally': 1.0, 'recommend': 1.0, 'were': 1.0, 'about': 1.0, 'several': 1.0, 'a': 5.0, 'we': 5.0, 'belt': 1.0, 'replacement': 1.0, 'ago': 1.0, 't': 4.0, 'order': 1.0, 'million': 1.0, 'high': 1.0, 'to': 11.0, 'as': 1.0, 'bought': 1.0, 'install': 1.0, '1': 1.0, 'came': 2.0, 'carseat': 1.0, 'month': 1.0, 'it': 5.0, 'ease': 1.0, 'and': 11.0, '2nd': 1.0, 'happy': 1.0, 'quite': 1.0, 'of': 4.0, 'person': 1.0, 'the': 12.0, 'replace': 1.0, 'compared': 1.0, 'stuck': 1.0, 'fingered': 1.0, 'this': 4.0, 'recall': 1.0, 'release': 2.0, 'with': 2.0, 'won': 1.0, 'panic': 1.0, 'but': 2.0, 'needed': 1.0, 'encounter': 1.0, 'because': 1.0, 'that': 4.0, 'been': 1.0, 'was': 3.0, 'crotch': 1.0, 'safe': 1.0, 'consumer': 1.0, 'consulted': 1.0, 'cheaply': 1.0, 'apparently': 1.0, 'nearly': 1.0, 'mechanism': 2.0, 'used': 1.0, 'seat': 2.0, 'in': 4.0, 'even': 1.0, 'buckle': 4.0, 'my': 1.0, 'britax5': 1.0, 'have': 3.0, 'cut': 1.0, 'straps': 2.0, 'little': 1.0, 'would': 2.0, 'weeks': 1.0, 'later': 1.0, 'wasn': 1.0, 'purchase': 1.0, 'only': 1.0, 'its': 1.0, 'placed': 1.0, 'seats': 1.0, 'recalled': 1.0, 'similar': 1.0, 'installation': 1.0, 'recently': 1.0, 'issue': 1.0, 'britax': 1.0, 'first': 2.0, 'bad': 1.0, 'has': 1.0, 'detach': 1.0, 'issues': 1.0, 'is': 3.0, 'somewhat': 1.0, 'short': 1.0, 'back4': 1.0, '2': 2.0, 'adjustment': 1.0}
Word element => {'lot': 1.0, 'catches': 1.0, 'one': 1.0, 'old': 1.0, 'vs': 1.0, 'sitting': 1.0, 'in': 1.0, 'level': 1.0, 'eye': 1.0, 'enjoys': 1.0, 's': 1.0, 'fan': 1.0, 'he': 1.0, 'this': 1.0, 'it': 1.0, 'mechanism': 1.0, 'some': 1.0, 'no': 1.0, 'sticky': 1.0, 'otherwise': 1.0, 'more': 1.0, 'the': 2.0, 'a': 2.0, 'complaints': 1.0, 'not': 1.0, 'getting': 1.0, 'buckling': 1.0, 'and': 1.0, 'of': 2.0, 'takes': 1.0, 'view': 1.0, 'carseat': 1.0, 'his': 1.0, 'used': 1.0, 'raised': 1.0, 'our': 1.0, 'to': 1.0, 'outside': 1.0, 'as': 1.0, 'big': 1.0, 'son': 1.0, 'definitely': 1.0}
Word element => {'of': 1.0, 'for': 1.0, 'in': 1.0, 'perfect': 1.0, 'holders': 1.0, 'car': 2.0, 'growing': 1.0, 'seat': 2.0, '1': 1.0, 'cup': 1.0, 'no': 1.0, 'your': 1.0, '3': 1.0, 'is': 1.0, 'on': 1.0, 'are': 1.0, 'the': 6.0, 'more': 1.0, 'child': 1.0, 'best': 1.0, 'part': 1.0, 'about': 1.0, 'bottles': 1.0, 'floor': 1.0}
Word element => {'items': 1.0, 'other': 1.0, 'are': 1.0, '2': 1.0, 't': 1.0, 'looks': 1.0, 'it': 1.0, 'first': 1.0, 'sleeping': 1.0, 'using': 1.0, 'for': 1.0, 'great': 2.0, 'comfortable': 1.0, 'and': 2.0, '3': 1.0, 'down': 1.0, 'now': 1.0, 'asleep': 1.0, 'my': 1.0, 'whose': 1.0, 'just': 1.0, 'seat': 4.0, 'than': 1.0, 'because': 1.0, '2nd': 1.0, 'i': 1.0, 'still': 1.0, 'purchased': 1.0, 'years': 1.0, 'of': 2.0, 'about': 1.0, 'thing': 1.0, 'is': 3.0, 'side': 1.0, 'so': 1.0, 'this': 4.0, 'kids': 2.0, 'follow': 1.0, 'very': 3.0, 'fast': 1.0, 'while': 1.0, 'was': 1.0, 'doesn': 1.0, 'back': 1.0, 'tilt': 1.0, 'over': 1.0, 'much': 1.0, 'that': 2.0, 'head': 1.0, 'uncomfortable': 1.0, 'one': 2.0, 'sometime': 1.0, 'hang': 1.0, 'they': 1.0}
Word element => {'were': 1.0, 'leans': 1.0, 'head': 1.0, 'her': 1.0, 'fix': 1.0, 'able': 1.0, 'upright': 1.0, 'sitting': 1.0, 'is': 2.0, 'she': 2.0, 'problem': 1.0, 'if': 1.0, 'with': 1.0, 'this': 2.0, 'loves': 1.0, 'by': 1.0, 'when': 1.0, 'too': 1.0, 'daughter': 1.0, 'to': 1.0, 'had': 1.0, 'my': 1.0, '2': 1.0, 'the': 3.0, 'pleased': 1.0, 'am': 1.0, 'sleeping': 1.0, 'year': 1.0, 'very': 1.0, 'old': 1.0, 'i': 1.0, 'car': 1.0, 'seat': 1.0, 'we': 2.0, 'a': 1.0, 'product': 1.0, 'adjusting': 2.0, 'little': 1.0, 'but': 1.0, 'forward': 1.0, 'trouble': 1.0, 'recline': 2.0}
Word element => {'tops': 1.0, 'new': 1.0, 'graco': 1.0, 'love': 1.0, 'smooshed': 1.0, 'squished': 1.0, 'their': 1.0, 'having': 1.0, 'previously': 1.0, 'nautilus': 2.0, 'had': 1.0, 'accident': 1.0, 'one': 1.0, 'color': 1.0, 'older': 1.0, 'i': 3.0, 'of': 1.0, 'there': 1.0, 'replaced': 1.0, 'material': 1.0, 'really': 1.0, 'is': 4.0, 'a': 2.0, '3': 3.0, 'lot': 1.0, 'carseats': 1.0, 'this': 2.0, 'recent': 1.0, 'padding': 1.0, 'carseat': 1.0, 'after': 1.0, 'any': 1.0, 'to': 1.0, 'all': 4.0, 'family': 1.0, 'owned': 1.0, 'my': 1.0, 'vehicle': 1.0, 'the': 3.0, 'motor': 1.0, 'and': 3.0, 'jewels': 1.0, 'but': 2.0, 'n': 2.0, 'not': 1.0, 'in': 2.0, 'garnet': 1.0, '1': 2.0, 'nice': 1.0, 'saves': 1.0, 'beautiful': 1.0, 'crotch': 1.0, 'extra': 1.0, 'unlike': 1.0, 'like': 1.0, 'version': 2.0, 'that': 1.0, 'kiddos': 1.0, 'from': 1.0}
Word element => {'comfortably': 1.0, 'or': 2.0, 'have': 3.0, 'to': 6.0, 'storage': 1.0, 'are': 2.0, 'coats': 1.0, 'where': 1.0, 'for': 3.0, 'trips': 1.0, 'north': 1.0, 'percentile': 2.0, 'in': 3.0, 'age': 1.0, 'we': 2.0, 'a': 6.0, 't': 3.0, 'could': 2.0, 'cup': 1.0, '4': 2.0, 'i': 4.0, 'allow': 1.0, 'from': 3.0, 'while': 2.0, 'no': 1.0, 'about': 1.0, 'item': 1.0, 'hour': 1.0, 'with': 3.0, 'complain': 1.0, 'sleep': 1.0, 'back': 1.0, 'carseat': 1.0, 'walmart': 1.0, 'live': 1.0, 'made': 1.0, 'weight': 1.0, 'winter': 1.0, 'us': 1.0, 'yrs': 1.0, 'height': 1.0, 'my': 2.0, 'more': 3.0, 'at': 2.0, '98th': 1.0, 'is': 1.0, 'child': 2.0, 'many': 1.0, 'buckle': 1.0, 'november': 1.0, 'compartments': 1.0, 'problems': 1.0, 'and': 3.0, 'too': 1.0, 'march': 1.0, 'he': 1.0, 'doesn': 2.0, 'crotch': 1.0, 'twist': 1.0, 'being': 1.0, 'if': 1.0, 'bribe': 1.0, 'recline': 1.0, 'it': 7.0, 'him': 1.0, 'bought': 1.0, 'essential': 1.0, 'be': 1.0, 'like': 1.0, 'holder': 1.0, 'both': 1.0, 'perspective': 1.0, 'of': 1.0, 'the': 6.0, 'longer': 1.0, '95th': 1.0, 'really': 1.0, 'present': 1.0, 'easy': 1.0, 'an': 1.0, 'issue': 1.0, 'do': 1.0, 'its': 1.0, 'this': 2.0, 'few': 1.0, 'issues': 1.0, 'required': 1.0, '1': 1.0, 'little': 2.0, 'nice': 1.0, 'bear': 1.0, 'clean': 1.0, '2': 1.0, 'don': 1.0, 'shoulder': 1.0, 'straps': 1.0, 'coax': 1.0, 'way': 1.0, '3': 1.0, 'either': 1.0, 'would': 1.0}
Word element => {'taller': 1.0, 'hight': 1.0, 'adjust': 1.0, 'use': 1.0, 'can': 1.0, 'perfect': 1.0, 'choose': 1.0, 'there': 1.0, 'but': 1.0, 'harness': 2.0, 'point': 2.0, 'and': 1.0, 'five': 2.0, 'still': 2.0, 'needed': 2.0, 'buy': 1.0, 'old': 1.0, 'i': 2.0, 'the': 2.0, 't': 1.0, 'great': 1.0, 'weren': 1.0, 'new': 1.0, 'his': 1.0, 'too': 1.0, 'a': 2.0, 'many': 1.0, 'is': 3.0, 'from': 1.0, 'son': 1.0, 'car': 1.0, 'he': 2.0, 'this': 2.0, 'one': 3.0, 'for': 1.0, 'my': 1.0, 'small': 1.0, 'seat': 2.0, 'because': 2.0, 'to': 2.0, 'was': 1.0}
Word element => {}
Word element => {'come': 1.0, 'be': 1.0, 'grow': 1.0, 'as': 1.0, 'seat': 1.0, 'to': 4.0, 'used': 1.0, 'set': 1.0, 'great': 1.0, 'the': 9.0, 'is': 1.0, 'close': 1.0, 'versatility': 1.0, 'allow': 1.0, '30': 1.0, 'of': 1.0, 'rather': 1.0, 'years': 1.0, 'price': 1.0, 'about': 1.0, 'rest': 1.0, 'was': 1.0, 'belt': 1.0, 'crotch': 1.0, 'styrofoam': 1.0, 'on': 1.0, 'but': 1.0, 'back': 1.0, 'than': 1.0, 'other': 1.0, 'satisfied': 1.0, 'chair': 1.0, 'cheaper': 1.0, 'at': 1.0, 'retailers': 1.0, 'makes': 1.0, 'looks': 1.0, 'it': 2.0, 'with': 1.0, 'and': 1.0, 'tough': 1.0, 'children': 1.0, 'fasten': 1.0, 'will': 1.0, 'also': 1.0, 'in': 1.0, 'concerned': 1.0, 'amazon': 1.0, 'use': 1.0, 'overall': 1.0, 'head': 1.0, 'for': 1.0, 'product': 1.0, 'especially': 1.0, 'that': 1.0}
Word element => {'face': 1.0, 'down': 1.0, 'another': 1.0, 'hunt': 1.0, 'when': 1.0, 'what': 1.0, 'great': 2.0, 'secure': 1.0, 'graco': 1.0, 'boys': 1.0, 'can': 1.0, 'so': 2.0, 'very': 1.0, 'as': 1.0, 'to': 3.0, 'our': 3.0, 'in': 4.0, 'seat': 2.0, 'price': 1.0, 'year': 3.0, 'two': 3.0, 'i': 6.0, 'etc': 1.0, 'a': 6.0, 's': 3.0, 'we': 5.0, 'have': 4.0, 'okay': 1.0, 'didn': 1.0, 'even': 1.0, 'though': 1.0, 'delivered': 1.0, 'month': 2.0, 'comfortable': 1.0, 'love': 2.0, 'for': 2.0, 'where': 1.0, 't': 2.0, 'fit': 1.0, 'swapped': 1.0, 'arm': 1.0, 'originally': 1.0, 'height': 1.0, 'be': 1.0, 'it': 4.0, 'him': 1.0, 'bought': 1.0, 'carseat': 1.0, 'was': 1.0, 'few': 1.0, 'this': 5.0, 'perfect': 1.0, 'is': 4.0, 'around': 1.0, 'compact': 1.0, 'old': 5.0, 'forward': 2.0, 'store': 1.0, 'kiddos': 1.0, 'but': 1.0, 'because': 1.0, 'that': 3.0, 'been': 1.0, 'wasn': 1.0, 'out': 2.0, 'nine': 2.0, 'facing': 2.0, 'difficult': 1.0, 'cars': 1.0, 'seats': 3.0, 'just': 1.0, 'll': 1.0, 'right': 1.0, 'peer': 1.0, 'and': 4.0, 'hog': 1.0, 'one': 2.0, 'rear': 2.0, 'too': 1.0, 'seems': 1.0, 'until': 1.0, 'see': 1.0, 'window': 1.0, 'car': 2.0, 'middle': 1.0, 'toyota': 1.0, 'all': 1.0, 'other': 1.0, 'had': 1.0, 'really': 1.0, 'months': 1.0, 'get': 1.0, 'the': 11.0, 'of': 1.0, 'realize': 1.0, 'on': 1.0, 'think': 2.0, 'leather': 1.0, 'with': 1.0, 'they': 1.0, 'up': 1.0, 'much': 1.0, 'room': 1.0, 'sequoia': 1.0, 'rests': 1.0, 'narrow': 1.0, 'enough': 1.0, 'would': 1.0, 'nicely': 1.0}
Word element => {'will': 1.0, 'last': 1.0, 'they': 1.0, 'since': 1.0, 'padding': 1.0, 'have': 3.0, 'seat': 2.0, 'boosters': 1.0, 'we': 2.0, 'other': 1.0, 'on': 1.0, 'hopefully': 1.0, 'than': 1.0, 'two': 2.0, 'year': 1.0, 'any': 1.0, 'years': 1.0, 'daughter': 1.0, 'great': 1.0, 'the': 2.0, 'these': 2.0, 'of': 1.0, 'and': 2.0, 'my': 2.0, 'convert': 1.0, 'are': 1.0, 'bought': 2.0, 'easier': 1.0, 'buy': 1.0, 'i': 1.0, 'old': 1.0, 'had': 1.0, 'to': 3.0, 'tighten': 1.0, 'later': 1.0, 'this': 1.0, 'seats': 2.0, 'youngest': 1.0, 'for': 2.0, 'one': 2.0, 'love': 3.0, 'straps': 1.0}
Word element => {'beat': 1.0, 'be': 1.0, 'his': 1.0, 'putting': 1.0, 'loves': 1.0, 'genius': 1.0, 'holder': 2.0, 'of': 2.0, 'out': 2.0, 'also': 1.0, 'in': 3.0, 'sitting': 1.0, 'for': 1.0, 'comfortable': 1.0, 'that': 1.0, 'price': 1.0, 'incredibly': 1.0, 'son': 1.0, 'is': 3.0, 't': 1.0, 'sits': 1.0, 'the': 5.0, 'great': 1.0, 'can': 2.0, 'seat': 2.0, 'it': 2.0, 'he': 2.0, 'this': 2.0, 'and': 3.0, 'cup': 2.0, 'my': 1.0, 'high': 1.0, 'enough': 1.0, 'car': 1.0, 'window': 1.0, 'so': 1.0, 'a': 1.0, 'see': 1.0}
Word element => {'vaguely': 1.0, 'but': 1.0, 'their': 1.0, 'annoying': 1.0, 'as': 1.0, 'our': 1.0, 'very': 2.0, 'little': 2.0, 'a': 4.0, 'we': 1.0, 'could': 1.0, 'this': 1.0, 'snagged': 1.0, 't': 2.0, 'rest': 1.0, 'after': 1.0, 'adjusts': 1.0, 'toy': 1.0, 'under': 1.0, 'cupholder': 1.0, 'weight': 1.0, 'result': 1.0, 'system': 1.0, 'son': 1.0, 'pros': 1.0, 'stuck': 1.0, 'ready': 1.0, 'toting': 1.0, 'are': 1.0, 'britax': 1.0, 'harness': 1.0, 'by': 1.0, 'when': 2.0, 'switch': 1.0, 'things': 1.0, 'safe': 1.0, 'even': 1.0, 'buckle': 1.0, 'backless': 1.0, 'booster': 2.0, 'older': 1.0, 'place': 1.0, 'appeals': 1.0, 'deal': 1.0, 'padding': 1.0, 'side': 1.0, 'is': 3.0, 'price': 1.0, 'child': 1.0, 'my': 2.0, 'may': 1.0, 'another': 1.0, 'to': 2.0, 'high': 1.0, '2nd': 1.0, 'limits': 1.0, 'boy': 1.0, 'they': 1.0, 'between': 1.0, 'head': 2.0, 'like': 2.0, 'and': 3.0, 'slots': 1.0, 'with': 1.0, 'comfortable': 1.0, 'for': 4.0, 'on': 3.0, 'much': 1.0, 'put': 1.0, 'storage': 1.0, 'velcro': 1.0, 'it': 1.0, 'seatbelt': 1.0, 'car': 1.0, 'always': 1.0, 'doesn': 2.0, 'have': 1.0, 'cons': 1.0, 'guard': 1.0, 'something': 1.0, 'back': 2.0, 'the': 11.0, 'of': 1.0, 'can': 2.0, 'headrest': 1.0, 'portion': 1.0, 'taken': 1.0, 'out': 1.0, 'seat': 4.0, 'in': 2.0, 'also': 1.0, 'get': 2.0, 'legs': 1.0, 'or': 1.0, 'some': 1.0, 'reason': 1.0, 'occur': 1.0, 'not': 1.0, 'belts': 1.0, 'huge': 1.0}
Word element => {'vehicle': 1.0, 'their': 1.0, 'enough': 1.0, 'impressed': 1.0, 'reasonable': 1.0, 'this': 1.0, 'minor': 1.0, 'prefer': 1.0, 'storage': 1.0, 'extra': 2.0, 's': 1.0, 'down': 1.0, 'remove': 1.0, 'need': 1.0, 'often': 1.0, 'agree': 1.0, 'husband': 1.0, 'install': 1.0, 'mentioned': 1.0, 'am': 1.0, 'car': 1.0, 'window': 1.0, 'back': 1.0, 'out': 1.0, 'view': 1.0, 'son': 1.0, 'height': 1.0, 'issue': 2.0, 'lot': 1.0, 'one': 2.0, 'have': 1.0, 'safety': 2.0, 'about': 1.0, 'side': 1.0, 'which': 1.0, 'good': 1.0, 'feel': 1.0, 'place': 1.0, 'holding': 1.0, 'special': 1.0, 'around': 1.0, 'his': 2.0, 'loves': 1.0, 'buy': 1.0, 'outings': 1.0, 'possible': 1.0, 'point': 2.0, 'old': 1.0, 'drop': 1.0, 'five': 2.0, 'able': 1.0, 'important': 1.0, 'pricey': 1.0, 'm': 1.0, 'in': 3.0, 'seat': 4.0, 'as': 4.0, 'our': 2.0, 'to': 11.0, 'reviews': 1.0, 'we': 4.0, 'could': 1.0, 't': 1.0, 'harness': 2.0, 'much': 1.0, 'not': 2.0, 'can': 1.0, 'headrest': 2.0, 'so': 2.0, 'but': 5.0, 'until': 1.0, 'big': 1.0, 'very': 3.0, 'price': 1.0, 'product': 1.0, 'year': 1.0, 'on': 1.0, 'long': 1.0, 'obstructs': 1.0, 'carseat': 1.0, 'collects': 1.0, 'grown': 1.0, 'now': 1.0, 'was': 9.0, 'six': 1.0, 'needed': 1.0, 'time': 1.0, 'remain': 1.0, 'original': 1.0, 'easy': 1.0, 'grandson': 3.0, 'him': 1.0, 'it': 8.0, 'build': 1.0, 'use': 1.0, 'up': 2.0, 'don': 1.0, 'the': 14.0, 'of': 5.0, 'small': 1.0, 'a': 7.0, 'slight': 1.0, 'added': 1.0, 'us': 2.0, 'also': 1.0, 'treasure': 1.0, 'head': 1.0, 'neck': 1.0, 'drawn': 1.0, 'adjustable': 1.0, 'booster': 2.0, 'replace': 1.0, 'cup': 1.0, 'wanted': 2.0, 'protection': 1.0, 'get': 1.0, 'seats': 2.0, '1': 1.0, 'provide': 1.0, 'what': 1.0, 'give': 2.0, 'there': 1.0, 'many': 1.0, 'for': 5.0, 'exceptional': 1.0, 'carseats': 1.0, 'they': 1.0, 'were': 1.0, 'graco': 1.0, '3': 1.0, 'has': 1.0, 'inconvenience': 1.0, 'i': 6.0, 'look': 1.0, 'is': 4.0, 'at': 1.0, 'he': 3.0, 'odd': 1.0, 'britax': 1.0, 'are': 1.0, 'first': 1.0, 'that': 3.0, 'because': 1.0, 'other': 1.0, 'all': 1.0, 'an': 2.0, 'treasures': 1.0, 'attractive': 1.0, 'and': 5.0, 'either': 1.0, 'would': 2.0, 'bulky': 1.0, 'with': 3.0, 'color': 1.0, 'holder': 2.0, 'must': 1.0, 'be': 1.0, 'bonus': 1.0, 'learning': 1.0, 'my': 5.0}
Word element => {'dig': 1.0, 'you': 1.0, 'sit': 1.0, 'easy': 1.0, 'it': 3.0, 'longer': 1.0, 'legs': 1.0, 'between': 1.0, 'goes': 1.0, 'this': 1.0, 'very': 1.0, 'strap': 1.0, 'are': 1.0, 'breathable': 1.0, 'than': 1.0, 'gray': 1.0, 'slightly': 2.0, 'about': 1.0, 'thing': 1.0, 'bravo': 2.0, 'material': 1.0, 'ride': 1.0, 'after': 1.0, 'so': 1.0, 'editions': 1.0, 'the': 12.0, 'that': 3.0, 'second': 3.0, 'more': 1.0, 'is': 2.0, 'want': 1.0, 'would': 2.0, 'basic': 1.0, 'doesn': 1.0, 'change': 1.0, 'but': 1.0, 'weeks': 1.0, 's': 1.0, 'matrix': 2.0, 't': 2.0, 'a': 5.0, 'my': 2.0, 'then': 1.0, 'nautilus': 4.0, 'for': 5.0, 'uncomfortable': 1.0, 'one': 1.0, 'son': 1.0, 'year': 1.0, 'on': 3.0, 'main': 1.0, 'buying': 1.0, 'purchased': 1.0, 'had': 1.0, 'seat': 4.0, 'as': 1.0, 'to': 5.0, 'car': 3.0, 'washable': 1.0, 'cheaper': 2.0, 'i': 5.0, 'old': 1.0, 'darker': 1.0, 'buy': 1.0, 'planned': 1.0, 'in': 3.0, 'only': 1.0, 'much': 1.0, 'rode': 1.0, 'have': 3.0, 'couple': 1.0, 'comfy': 1.0, 'and': 3.0, 'padded': 1.0, 'didn': 1.0, 'him': 1.0, 'be': 3.0}
Word element => {'i': 1.0, 'price': 1.0, 'down': 1.0, 'straight': 1.0, 'from': 1.0, 'keep': 1.0, 'head': 2.0, 'tilting': 1.0, 'under': 1.0, 'put': 1.0, 'small': 1.0, 'have': 1.0, 'up': 1.0, 'staright': 1.0, 'reccommend': 1.0, 'fits': 1.0, 'the': 4.0, 'would': 1.0, 'it': 2.0, 'he': 4.0, 'inconvenience': 1.0, 'old': 1.0, 'inches': 1.0, 'sleeps': 1.0, 'is': 3.0, 'him': 1.0, 'be': 1.0, 'u': 1.0, 'loves': 1.0, 'grandson': 1.0, 'chair': 2.0, 'his': 4.0, 'great': 1.0, 'big': 1.0, 'to': 2.0, 'our': 2.0, 'as': 3.0, 'seat': 2.0, 'not': 1.0, '45': 1.0, '42': 1.0, 'p': 1.0, 'outgrew': 1.0, 'negative': 1.0, 'lbs': 1.0, 'when': 2.0, 'and': 2.0, 'too': 1.0, 'bought': 1.0, 'one': 1.0, 'for': 2.0, 'boy': 1.0, 'calls': 1.0, 'maybe': 1.0, 'of': 1.0, 'strongly': 1.0, 'this': 2.0, 'recline': 1.0, 'only': 1.0, 'much': 1.0, 'a': 1.0, 'we': 2.0, 'pillow': 1.0, 'hoped': 1.0, 'in': 1.0, 'ford': 1.0, 'amount': 1.0, 'truck': 1.0}
Word element => {'product': 1.0, 'really': 1.0, 'sippy': 1.0, 'holder': 1.0, 'puts': 1.0, 'seat': 1.0, 'rest': 1.0, 'man': 1.0, 'out': 1.0, 'little': 2.0, 'cup': 1.0, 'my': 1.0, 'great': 1.0, 'the': 2.0, 'has': 1.0, 'makes': 1.0, 'a': 1.0, 'look': 1.0, 'also': 1.0, 'in': 2.0, 'king': 1.0, 'like': 1.0, 'spreads': 1.0, 'and': 1.0, 'he': 2.0, 'this': 1.0, 'it': 1.0, 'his': 2.0, 'hands': 1.0, 'arm': 1.0, 'on': 1.0}
Word element => {'product': 1.0, 'would': 1.0, 'then': 1.0, 'other': 1.0, '50': 1.0, 'highly': 1.0, 'about': 1.0, 'sticks': 1.0, 'on': 1.0, 'clasp': 1.0, 'that': 2.0, 'little': 1.0, 'my': 2.0, 'like': 1.0, 'and': 2.0, 'as': 1.0, 'very': 1.0, 'does': 1.0, 'seat': 3.0, 'only': 1.0, 'this': 2.0, 'installing': 1.0, 'time': 1.0, 'boy': 1.0, 'i': 2.0, 'putting': 1.0, 'car': 1.0, 'together': 1.0, 'was': 1.0, 'of': 1.0, 'intuitive': 1.0, 'the': 5.0, 'gripe': 1.0, 'recommend': 1.0, 'easy': 1.0, 'side': 1.0, 'left': 1.0, 'really': 1.0, 'is': 1.0}
Word element => {'in': 1.0, 'old': 1.0, 'year': 1.0, 'he': 1.0, '6': 1.0, 'moving': 1.0, 'it': 3.0, 'daily': 1.0, 'children': 1.0, 'harnessed': 2.0, 'is': 2.0, 'really': 1.0, 'be': 2.0, 'and': 3.0, 'one': 1.0, 'love': 1.0, 'for': 1.0, 'i': 4.0, 'recommend': 1.0, 'to': 3.0, 'seat': 2.0, 'the': 2.0, 'heavy': 1.0, 'a': 5.0, 'well': 3.0, 'friends': 1.0, 'so': 1.0, 'bit': 1.0, 'technician': 1.0, 'price': 1.0, 'best': 1.0, 'on': 1.0, 'this': 2.0, 'pain': 1.0, '65': 1.0, 'am': 1.0, 'lbs': 1.0, 'car': 4.0, 'basis': 1.0, 'would': 1.0, 'installs': 1.0, 'that': 1.0, 'often': 1.0, 'fits': 2.0, 'from': 1.0, 'part': 1.0, 'most': 1.0, 'but': 1.0, 'can': 1.0, 'child': 1.0, 'up': 1.0, 'by': 1.0}
Word element => {'your': 1.0, 'even': 1.0, 'recommend': 1.0, 'highly': 1.0, 'but': 1.0, 'love': 1.0, 'for': 5.0, 'and': 3.0, 'easily': 2.0, 'of': 1.0, 'britax': 2.0, 'price': 1.0, 'rest': 1.0, 'half': 1.0, 'head': 1.0, 'deep': 1.0, 'installed': 1.0, 'than': 1.0, 'say': 1.0, 'is': 4.0, 'second': 1.0, 'many': 1.0, 'i': 4.0, 'bought': 1.0, 'car': 3.0, 'main': 2.0, 'we': 1.0, 'boulevard': 2.0, 'carseats': 1.0, 'this': 2.0, 'it': 2.0, 'have': 1.0, 'the': 8.0, 'wiped': 1.0, 'other': 1.0, 'naps': 1.0, 'cup': 1.0, 'holder': 1.0, 'would': 2.0, 'which': 1.0, 'enough': 1.0, 'bottle': 1.0, 'our': 1.0, 'as': 1.0, 'to': 1.0, 'not': 1.0, 'cushy': 1.0, 'over': 1.0, 'unlike': 1.0, 'topple': 1.0, 'slightly': 1.0, 'less': 1.0}
Word element => {'got': 1.0, 'for': 2.0, 'so': 1.0, 'out': 1.0, 'child': 1.0, 'getting': 1.0, 'accident': 1.0, 'an': 1.0, 'were': 1.0, 'that': 2.0, 'case': 1.0, 'in': 3.0, 'require': 1.0, 'ready': 1.0, 'knife': 1.0, '157': 1.0, 'problem': 1.0, 'a': 3.0, 'we': 5.0, 'both': 1.0, 'before': 1.0, '10': 1.0, 'same': 2.0, 'there': 1.0, 'impossible': 1.0, 'had': 3.0, 'the': 7.0, 'my': 1.0, 'serious': 1.0, 'awhile': 1.0, 'have': 2.0, 'it': 1.0, 'not': 1.0, '00': 1.0, 'is': 2.0, 'this': 2.0, 'release': 3.0, 'realized': 1.0, 'daughter': 1.0, 'harder': 1.0, 'and': 1.0, 'to': 4.0, 'all': 1.0, 'seat': 3.0, 'as': 1.0, 'very': 1.0, 'mine': 1.0, 'rated': 1.0, 'night': 1.0, 'main': 1.0, 'at': 3.0, 'months': 1.0, 'one': 1.0, 'bought': 2.0, 'safe': 1.0, 'buckle': 2.0, 'lasted': 1.0, 'has': 1.0, 'i': 2.0, 'become': 1.0, 'belt': 1.0, 'increasingly': 1.0, 'times': 1.0, 'close': 1.0, 'defect': 1.0, 'last': 1.0, 'would': 2.0, 'car': 2.0, 'cut': 1.0, 'off': 1.0, 'immediately': 1.0, 'quite': 1.0}
Word element => {'will': 1.0, 'value': 1.0, 'graco': 1.0, 'quality': 1.0, 'position': 1.0, 'looking': 1.0, 'more': 2.0, 'out': 1.0, 'sightlines': 1.0, 'wonderfully': 1.0, 'went': 1.0, 'recent': 1.0, 'buying': 1.0, 'returning': 1.0, 'up': 1.0, 'ended': 1.0, 'open': 1.0, 'over': 1.0, 'top': 1.0, 'center': 1.0, 'disappoint': 1.0, 'seam': 1.0, 'huge': 1.0, 'cut': 1.0, 'doesn': 1.0, 'underneath': 1.0, 'grandma': 2.0, 'to': 4.0, 'be': 1.0, 'treks': 1.0, 'kid': 1.0, 'something': 1.0, 'she': 1.0, 'recline': 1.0, 'it': 4.0, 'haul': 1.0, 'knew': 1.0, 'but': 1.0, 'likely': 1.0, 'past': 1.0, '2': 1.0, 'trek': 1.0, 'modest': 1.0, 'frontier': 2.0, 'into': 1.0, 'that': 2.0, 'was': 3.0, 'little': 1.0, 'second': 2.0, 'windows': 1.0, 'years': 1.0, 'marathon': 2.0, 'old': 1.0, 'loved': 1.0, 'purchased': 1.0, 'excellent': 1.0, 'had': 1.0, 'for': 5.0, 'accustomed': 1.0, '3': 1.0, 'better': 1.0, 'incredibly': 1.0, 'think': 1.0, 'considered': 1.0, 'a': 7.0, 's': 4.0, 't': 2.0, 'good': 1.0, 'which': 1.0, 'based': 1.0, 'this': 3.0, 'holders': 1.0, 'used': 1.0, 'upright': 1.0, 'features': 1.0, 'cosmetic': 1.0, 'our': 2.0, 'most': 1.0, 'back': 1.0, 'sleep': 1.0, 'experience': 1.0, 'with': 2.0, 'natural': 1.0, 'the': 19.0, 'we': 7.0, 'moving': 1.0, 'reviews': 1.0, 'positive': 1.0, 'friend': 1.0, 'getting': 1.0, 'like': 2.0, 'and': 6.0, 'trip': 1.0, 'cup': 1.0, 'across': 1.0, 'rests': 1.0, 'big': 1.0, 'arm': 1.0, 'pad': 1.0, 'short': 2.0, 'would': 1.0, 'adequate': 1.0, 'miserable': 1.0, 'has': 3.0, '5': 1.0, 'hour': 1.0, 'car': 1.0, 'awful': 1.0, 'resulted': 1.0, 'brother': 1.0, 'twofold': 1.0, 'experienced': 1.0, 'town': 1.0, 'much': 3.0, 'do': 2.0, 'fussing': 1.0, 'product': 1.0, 'year': 1.0, 'zero': 1.0, 'is': 3.0, 'around': 1.0, 'jaunts': 1.0, 'seat': 8.0, 'in': 3.0, 'hadn': 1.0, 'uncomfortable': 1.0, 'tilt': 1.0, 'i': 1.0, 'need': 1.0, 'feature': 1.0, 'problem': 1.0, 'are': 1.0, 'britax': 4.0, 'first': 1.0, 'even': 1.0, 'enjoy': 1.0, 'if': 5.0, 'you': 5.0, 'her': 2.0, 'use': 1.0, 'padding': 2.0, 'on': 1.0, 'long': 2.0, 're': 2.0, 'just': 2.0, 'driving': 1.0, 'flap': 1.0, 'probably': 2.0}
Word element => {'and': 1.0, 'with': 1.0, 'miles': 1.0, 'at': 1.0, 'booster': 1.0, 'holder': 1.0, 'him': 1.0, 'car': 1.0, 'the': 5.0, 'my': 2.0, 'assurance': 1.0, 'cup': 1.0, 'grandson': 1.0, 'is': 4.0, 'than': 1.0, 'but': 1.0, 'needs': 1.0, 'buckle': 1.0, 'a': 2.0, 'we': 2.0, 'safety': 2.0, 'traveling': 1.0, 'when': 1.0, '3000': 1.0, 'for': 1.0, 'rather': 1.0, 'of': 2.0, 'he': 3.0, 'this': 2.0, 'only': 1.0, 'his': 2.0, 'year': 1.0, 'in': 2.0, 'age': 1.0, 'about': 1.0, 'great': 1.0, 'big': 1.0, 'feel': 1.0, 'still': 2.0, 'frustration': 1.0, '45': 1.0, 'took': 1.0, 'two': 1.0, 'pounds': 1.0, 'on': 2.0, 'comfort': 1.0, 'has': 1.0, 'room': 1.0, 'getting': 1.0, 'seat': 5.0, 'grow': 1.0, 'to': 1.0, 'vacations': 1.0}
Word element => {'like': 1.0, 'car': 3.0, 'of': 1.0, 'good': 1.0, 'cadillac': 1.0, 'heavy': 1.0, 'the': 1.0, 'and': 2.0, 'seats': 1.0, 'comfortable': 1.0, 's': 1.0, 'durable': 1.0, 'it': 2.0, 'hard': 1.0, 'to': 2.0, 'transport': 1.0, 'very': 2.0, 'as': 2.0, 'from': 1.0, 'recline': 1.0, 'is': 1.0, 'not': 1.0, 'would': 1.0, 'we': 1.0}
Word element => {'adequate': 1.0, 'jacket': 1.0, 'rarely': 1.0, 'florida': 1.0, 'disappointed': 1.0, 'live': 1.0, 'used': 1.0, 'be': 2.0, 'there': 1.0, 'than': 1.0, 'shorter': 1.0, 'are': 1.0, 'much': 1.0, 'harness': 1.0, 'second': 1.0, 'use': 2.0, 'straps': 2.0, 'way': 2.0, 'off': 1.0, 'walmart': 1.0, 'went': 1.0, 'at': 1.0, 'this': 2.0, 'thought': 1.0, 'weather': 1.0, 'really': 1.0, 'on': 1.0, 'heavy': 1.0, 'nicely': 1.0, 'first': 2.0, 'is': 4.0, 'state': 1.0, 'would': 1.0, 'new': 1.0, 'a': 4.0, 'slot': 1.0, 'it': 1.0, 'she': 3.0, 'very': 1.0, 'read': 1.0, 'will': 1.0, 'can': 1.0, 'but': 1.0, 'may': 1.0, 'my': 1.0, 'fact': 1.0, 'nope': 1.0, 'one': 2.0, 'where': 1.0, 'fit': 1.0, 'for': 2.0, 'tried': 1.0, 'given': 1.0, 'pounds': 1.0, '4': 1.0, 'i': 5.0, 'old': 1.0, 'big': 1.0, 'not': 2.0, 'graco': 2.0, 'and': 2.0, 'too': 1.0, 'soon': 1.0, 'her': 2.0, 'cold': 1.0, 'carseat': 2.0, 'you': 2.0, 'am': 2.0, 'if': 1.0, 'being': 1.0, 'so': 2.0, 'current': 1.0, 'year': 1.0, 'girl': 1.0, 'the': 10.0, 'reviews': 1.0, 'crotch': 2.0, 'no': 1.0, '33': 1.0, 'about': 1.0, 'comfortsport': 2.0, 'buckle': 2.0, 'outgrow': 1.0, 'in': 5.0, 'looking': 1.0, 'close': 2.0, 'actual': 1.0, 'all': 1.0, 'seat': 1.0, 'to': 4.0, 'south': 1.0, 'that': 1.0, 'difficult': 1.0, 'still': 1.0}
Word element => {'buy': 1.0, 'a': 1.0, 'car': 1.0, 'two': 2.0, 'purchased': 1.0, 'good': 2.0, 'seats': 1.0, 'quality': 1.0, 'reasonably': 1.0, 'second': 1.0, 'was': 1.0, 'priced': 1.0, 'i': 1.0, 'one': 1.0, 'require': 1.0, 'is': 1.0, 'the': 1.0, 'grandkids': 1.0, 'this': 2.0, 'have': 1.0}
Word element => {'kid': 1.0, 'an': 1.0, 'there': 1.0, 'if': 1.0, 'major': 1.0, 'holder': 2.0, 'cup': 1.0, 'rests': 1.0, 'their': 1.0, 'has': 1.0, 'side': 2.0, 'even': 1.0, 'while': 1.0, 'head': 2.0, 'in': 1.0, 'can': 2.0, 'most': 1.0, 'what': 1.0, 'comfortable': 1.0, 'also': 1.0, 'car': 3.0, 'be': 2.0, 'any': 1.0, 'cups': 1.0, 'all': 1.0, 'sleep': 1.0, 'seat': 1.0, 'outside': 1.0, 'to': 5.0, 'look': 1.0, 'harness': 3.0, 'place': 1.0, 'babes': 1.0, 'the': 16.0, 'on': 1.0, 'think': 2.0, 'good': 3.0, 'far': 1.0, 'pros': 1.0, 'really': 1.0, 'very': 2.0, 'you': 1.0, 'gives': 1.0, 'son': 1.0, 'apt': 1.0, 'liked': 1.0, 'satisfied': 1.0, 'sturdy': 1.0, 'support': 3.0, 'already': 1.0, 'feature': 1.0, 'i': 3.0, 'product': 2.0, 'for': 4.0, 'we': 3.0, 'could': 1.0, 'which': 1.0, 'sleeping': 1.0, 'using': 1.0, 'like': 1.0, 'though': 2.0, 'cushion': 1.0, 'into': 1.0, 'been': 1.0, 'elevationcons': 1.0, 'improved': 1.0, 'none': 1.0, 'must': 1.0, 'have': 1.0, 'kids': 2.0, 'this': 3.0, 'convenient': 1.0, 'with': 2.0, 'it': 4.0, 'one': 1.0, 'months': 1.0, 'holds': 1.0, 'more': 1.0, 'is': 5.0, 'say': 1.0, 'useful': 1.0, 'are': 1.0, 'improvement': 1.0, 'enough': 1.0, 'literally': 1.0, 'elevation': 1.0, 'my': 1.0, 'so': 4.0, 'needs': 1.0}
Word element => {'seat': 1.0, 'this': 1.0, 'be': 1.0, 'to': 1.0, 'she': 1.0, 'i': 1.0, 'expecting': 1.0, 'it': 1.0, 'comfortable': 1.0, 'that': 1.0, 'seems': 1.0, 'our': 1.0, 'in': 1.0, 'daughter': 1.0, 'was': 1.0, 'not': 1.0, 'would': 1.0, 'very': 1.0, 'like': 1.0, 'but': 1.0}
Word element => {'concerned': 1.0, 'am': 1.0, 'far': 1.0, 'booster': 1.0, 'really': 1.0, 'convertible': 1.0, 'this': 1.0, 'it': 7.0, 'is': 3.0, 'durable': 1.0, 'rear': 2.0, 'said': 1.0, 'forward': 1.0, 'will': 1.0, 'that': 2.0, 'bought': 1.0, 'car': 2.0, 'not': 2.0, 'be': 3.0, 'pediatrician': 1.0, 'so': 2.0, 'but': 2.0, 'can': 2.0, '2': 1.0, 'facing': 3.0, 'alas': 1.0, 'thinking': 1.0, 'i': 2.0, 'labeled': 1.0, 'old': 1.0, 'mistakenly': 1.0, 'appear': 1.0, 'great': 1.0, 'until': 1.0, 'or': 1.0, 'recommends': 1.0, 'years': 1.0, 'another': 1.0, 'use': 1.0, 'for': 2.0, 'year': 1.0, 'very': 1.0, 'installed': 1.0, 'does': 1.0, 'as': 3.0, 'our': 1.0, 'seat': 2.0, 'to': 1.0, 'could': 1.0, 'we': 1.0, 'a': 3.0, 'chair': 1.0, 'only': 1.0, 'do': 1.0, 'preschoolers': 1.0}
Word element => {'end': 1.0, 'fro': 1.0, 'it': 1.0, 'user': 1.0, 'use': 1.0, 'easy': 1.0, 'for': 1.0, 'deisgn': 1.0, 'not': 1.0, 'and': 1.0, 'very': 1.0, 'quality': 1.0, 'like': 1.0, 'materials': 1.0, 'designed': 1.0, 'poor': 1.0, 'to': 1.0, 'eway': 1.0, 'these': 1.0, 'used': 1.0, 'across': 1.0, 'whenver': 1.0, 'iphone': 1.0, 'i': 1.0, 'products': 1.0, 'cam': 1.0, 'good': 1.0, 'think': 1.0, 'tht': 1.0}
Word element => {'won': 1.0, 'puzzles': 1.0, 'goes': 1.0, 'remember': 1.0, 'much': 1.0, 'try': 1.0, 'hour': 1.0, 'an': 1.0, 'me': 1.0, 'back': 1.0, 'pain': 1.0, 'cleaning': 1.0, 'about': 1.0, 'thing': 1.0, 'whole': 1.0, 'take': 1.0, 'you': 3.0, 'older': 1.0, 'they': 1.0, 'everything': 1.0, 'if': 2.0, 'apart': 2.0, 'taken': 2.0, 'be': 1.0, 'second': 1.0, 'amazon': 1.0, 'purchased': 1.0, 'so': 2.0, 'suppose': 1.0, 'have': 1.0, 'must': 1.0, 'sells': 1.0, 'it': 5.0, 'mind': 1.0, 'with': 1.0, 've': 1.0, '99': 1.0, 'my': 2.0, 'happy': 1.0, 'huge': 1.0, 'bought': 1.0, 'one': 2.0, 'where': 1.0, 'for': 4.0, 'daughter': 1.0, 'by': 1.0, 'year': 1.0, 'son': 1.0, 'of': 1.0, 'up': 1.0, 'cheaper': 1.0, 'car': 1.0, 'the': 2.0, 'basically': 1.0, 'and': 2.0, 'seats': 1.0, 'put': 1.0, 'on': 1.0, 'these': 1.0, 'waaaay': 1.0, 'way': 1.0, 't': 1.0, 'a': 2.0, 'we': 3.0, 's': 2.0, 'than': 1.0, 'buy': 2.0, 'i': 2.0, 'baby': 1.0, 'who': 1.0, 'like': 2.0, 'been': 1.0, 'that': 1.0, 'last': 1.0, '189': 1.0, 'good': 1.0, 'grow': 1.0, 'as': 1.0, 'to': 4.0, '100lbs': 1.0, 'can': 1.0}
Word element => {'those': 1.0, 'with': 1.0, 'up': 1.0, 'weeks': 1.0, 'good': 1.0, 'last': 1.0, 'twist': 1.0, 'many': 1.0, 'take': 1.0, 'i': 1.0, 'try': 1.0, 'so': 1.0, 'time': 1.0, 'taking': 1.0, 'something': 1.0, 've': 1.0, 'new': 2.0, 'sent': 1.0, 'has': 1.0, 'daunting': 1.0, 'company': 1.0, 'safely': 1.0, 'as': 1.0, 'to': 4.0, 'it': 1.0, 'foot': 1.0, 'un': 1.0, 'seats': 4.0, 'out': 2.0, 'couple': 1.0, 'and': 2.0, 'armrests': 1.0, 'storage': 1.0, 'issues': 1.0, 'though': 2.0, 'for': 2.0, 'in': 2.0, 'making': 1.0, 'adults': 1.0, 'have': 1.0, 'are': 2.0, 'the': 15.0, 'but': 1.0, '2': 2.0, 'fun': 1.0, 'space': 1.0, 'kids': 1.0, 'areas': 1.0, 'of': 3.0, 'impossible': 1.0, 'there': 1.0, 'really': 1.0, 'cup': 1.0, 'like': 1.0, 'little': 1.0, 'prints': 1.0, 'holder': 1.0, 'teen': 1.0, 'one': 1.0, 'huge': 1.0, 'on': 1.0, 'a': 1.0, 'we': 1.0, 'smallest': 1.0, 'use': 2.0, 'these': 1.0, 'already': 2.0, 'them': 4.0, 'more': 1.0, 'hardware': 1.0, 'is': 2.0, 'zero': 1.0, 'between': 1.0, 'even': 2.0, 'pre': 1.0, 'straps': 5.0, 'had': 1.0, 'thought': 1.0, 'twisted': 1.0, 'several': 1.0, 'times': 2.0, 'within': 1.0}
Word element => {'happy': 1.0, 'all': 1.0, 'move': 1.0, 'doesnt': 1.0, 'our': 1.0, 'used': 1.0, 'in': 1.0, 'very': 1.0, 'year': 1.0, 'strap': 1.0, 'it': 1.0, 'with': 1.0, 'this': 2.0, 'the': 2.0, 'provided': 1.0, 'clips': 1.0, 'on': 1.0, 'old': 1.0, 'i': 1.0, 'surprised': 1.0, 'seat': 1.0, '1': 1.0, 'and': 1.0, 'to': 1.0, 'was': 1.0, 'at': 2.0, 'how': 1.0, 'for': 1.0, 'tight': 1.0, 'fits': 1.0}
Word element => {'review': 1.0, 'silly': 1.0, 'this': 1.0, 'use': 1.0, 'your': 1.0, '3': 1.0, 'left': 1.0, 'resting': 1.0, 'sure': 1.0, 'padding': 1.0, 'some': 2.0, 'could': 1.0, 'might': 1.0, 'rest': 1.0, 't': 3.0, 'go': 1.0, 'a': 2.0, 'head': 2.0, 'gets': 1.0, 'cars': 1.0, 'child': 2.0, 'don': 1.0, 'from': 1.0, 'hard': 1.0, 'as': 2.0, 'to': 6.0, 'be': 1.0, 'here': 1.0, 'cup': 1.0, 's': 3.0, 'sense': 1.0, 'car': 2.0, 'all': 2.0, 'other': 1.0, 'far': 1.0, 'haven': 1.0, 'with': 2.0, 'buying': 1.0, 'so': 2.0, 'can': 2.0, 'but': 1.0, 'come': 1.0, 'i': 7.0, 'or': 2.0, 'feature': 2.0, 'ratings': 1.0, 'holder': 1.0, 'compare': 1.0, 'say': 1.0, 'is': 1.0, 'larger': 1.0, '1': 1.0, 'me': 2.0, 'not': 1.0, 'right': 1.0, 'important': 1.0, 'it': 3.0, 'recline': 1.0, 'wish': 1.0, 'does': 1.0, 'prevent': 1.0, 'very': 2.0, 'little': 1.0, 'how': 1.0, 'much': 1.0, 'do': 3.0, 'they': 2.0, 'really': 1.0, 'for': 1.0, 'and': 2.0, 'keep': 1.0, 'safe': 2.0, 'instead': 1.0, 'buckle': 3.0, 'blame': 1.0, 'still': 1.0, 'if': 3.0, 'think': 1.0, 'designers': 1.0, 'useful': 1.0, 'doesn': 1.0, 'that': 5.0, 'easily': 1.0, 'in': 2.0, 'm': 1.0, 'had': 2.0, 'type': 1.0, 'the': 7.0, 'of': 2.0, 'safety': 2.0, 'seats': 2.0, 'just': 1.0, 'crappy': 1.0, 'now': 1.0, 'part': 1.0, 'though': 1.0, 'which': 1.0, 'like': 1.0, 'about': 1.0, 'checked': 1.0, 'seems': 2.0, 'see': 1.0}
Word element => {'her': 1.0, 'get': 1.0, 'out': 1.0, 'install': 1.0, 'to': 2.0, 'easy': 2.0, 'choice': 1.0, 'my': 1.0, 'and': 3.0, 'grand': 1.0, 'in': 1.0, 'safety': 1.0, 'daughter': 1.0, 'great': 1.0, 'it': 1.0, 'loves': 1.0, 'this': 1.0, 'seat': 1.0, 'is': 1.0, 'a': 1.0}
Word element => {'does': 1.0, 'not': 1.0, 'seat': 1.0, '2': 1.0, 'under': 1.0, 'passed': 1.0, 'required': 1.0, 'purchased': 1.0, 'after': 1.0, 'that': 2.0, 'fault': 1.0, 'be': 1.0, 'could': 1.0, 'whatever': 1.0, 'held': 1.0, 'clean': 1.0, 'has': 2.0, 'is': 2.0, 'on': 1.0, 'fabric': 1.0, 'spilled': 1.0, 'issues': 1.0, 'install': 1.0, 'of': 1.0, 'up': 1.0, 'shortly': 1.0, 'episodes': 1.0, 'this': 1.0, 'children': 1.0, 'it': 4.0, 'only': 1.0, 'was': 1.0, 'to': 3.0, 'easy': 2.0, 'my': 3.0, 'daughter': 1.0, 'in': 1.0, 'law': 1.0, 'a': 2.0, 'and': 3.0, 'couple': 1.0, 'facebackwards': 1.0, 'i': 1.0, 'vomit': 1.0}
Word element => {'safe': 1.0, 'does': 1.0, 'be': 1.0, 'to': 1.0, 'cheap': 2.0, 'the': 2.0, 'are': 1.0, 'not': 1.0, 'installed': 1.0, 'material': 1.0, 'look': 1.0, 'design': 1.0, 'designed': 1.0, 'pads': 1.0, 'thin': 1.0, 'too': 1.0, 'way': 1.0, 'it': 1.0, 's': 1.0}
Word element => {'expensive': 1.0, 'brands': 1.0, 'than': 1.0, 'read': 1.0, 'recommend': 1.0, 'ones': 1.0, 'the': 3.0, 'few': 1.0, 'positive': 1.0, 'considering': 1.0, 'graco': 1.0, 'other': 1.0, 'car': 2.0, 'my': 1.0, 'happy': 1.0, 'went': 1.0, 'were': 1.0, 'high': 1.0, 'too': 1.0, 'and': 2.0, 'wife': 1.0, 'purchasing': 1.0, 'i': 3.0, 'did': 1.0, 'better': 1.0, 't': 1.0, 'we': 4.0, 'a': 2.0, 'this': 2.0, 'research': 1.0, 'with': 1.0, 'it': 1.0, 'before': 1.0, 'ton': 1.0, 'all': 1.0, 'seat': 2.0, 'of': 1.0, 'reviews': 1.0, 'are': 1.0, 'amazon': 1.0, 'more': 1.0, 'is': 1.0, 'so': 1.0, 'then': 1.0, 'nautilus': 1.0, 'would': 1.0, 'highly': 1.0, 'isn': 1.0, 'priced': 1.0, 'on': 1.0, 'think': 1.0}
Word element => {'us': 1.0, 'r': 1.0, 'based': 1.0, 'just': 1.0, 'price': 1.0, 'same': 1.0, 'reviews': 1.0, 'between': 1.0, 'quality': 1.0, 'difference': 2.0, 'bought': 1.0, 'frontier': 1.0, 'his': 1.0, 'leg': 1.0, 'is': 3.0, 'see': 1.0, 'in': 3.0, 'it': 3.0, 'try': 1.0, 'do': 1.0, 'only': 2.0, 'looked': 1.0, 'you': 2.0, 'not': 5.0, 'britax': 2.0, 'strap': 1.0, 'babies': 1.0, 'that': 1.0, 'beautiful': 1.0, 'the': 6.0, 'place': 1.0, '2': 1.0, 'but': 2.0, 'car': 2.0, '31': 1.0, 'to': 1.0, 'seat': 2.0, 'as': 3.0, 'under': 1.0, 'son': 1.0, 'child': 1.0, 'and': 4.0, 'soon': 1.0, 'may': 1.0, 'my': 1.0, 'high': 1.0, 'bottom': 1.0, 'lb': 1.0, 'right': 1.0, 'now': 1.0, 'maestro': 1.0, 'giant': 1.0, 'about': 1.0, 'on': 1.0, 'resist': 1.0, '3': 1.0, 're': 1.0, 'foot': 1.0, 'so': 1.0, 'go': 1.0, 'could': 1.0, 'a': 3.0, 's': 1.0, 'we': 5.0, 'be': 1.0, 'talking': 1.0, 'here': 1.0, 'did': 1.0, 'buy': 2.0, 'evenflo': 1.0, 'at': 1.0}
Word element => {'house': 1.0, 'fiund': 1.0, 'hard': 1.0, 'free': 1.0, '15': 1.0, 'time': 1.0, 'bugs': 1.0, 'this': 1.0, 'one': 1.0, 'reassemble': 1.0, 'should': 1.0, 'able': 1.0, 'you': 1.0, 'cleaning': 1.0, 'year': 1.0, '40': 1.0, 'enough': 1.0, 'they': 1.0, 'how': 1.0, 'a': 4.0, 'see': 1.0, 'washable': 1.0, 'point': 1.0, 'old': 2.0, 'say': 1.0, 'at': 1.0, 'is': 3.0, '5': 2.0, 'harness': 1.0, 'do': 2.0, 'weight': 1.0, 'for': 3.0, 'me': 1.0, 'my': 2.0, 'sitting': 1.0, 'their': 2.0, 'because': 1.0, 'that': 1.0, 'rated': 1.0, 'them': 2.0, 'up': 2.0, 'sippy': 1.0, 'children': 1.0, 'don': 1.0, 'benc': 1.0, 'back': 1.0, 'car': 1.0, '3': 4.0, 'on': 2.0, '2': 2.0, 'machine': 1.0, 'all': 2.0, 'to': 7.0, 'in': 5.0, 'seat': 9.0, 'pads': 1.0, 'practice': 1.0, 'have': 1.0, 'type': 1.0, 'had': 1.0, 'now': 1.0, 'i': 5.0, 'just': 1.0, 'effects': 1.0, 'the': 13.0, 'convert': 1.0, 'of': 5.0, 'still': 1.0, 'tahoe': 1.0, 'features': 1.0, 'line': 1.0, 'use': 1.0, 'under': 1.0, 'same': 1.0, 't': 1.0, 'fit': 1.0, 'belt': 1.0, 'only': 2.0, 'narrow': 1.0, 'whatever': 1.0, 'with': 1.0, 'width': 1.0, 'very': 1.0, 'cubbys': 1.0, 'easy': 1.0, 'get': 1.0, 'install': 2.0, '1': 1.0, 'great': 1.0, 'integrated': 1.0, 'cups': 1.0, 'booster': 2.0, 'cup': 1.0, 'holders': 1.0, 'ready': 1.0, 'kids': 2.0, 'there': 1.0, 'and': 5.0, 'tedious': 1.0, 'are': 2.0, 'minutes': 2.0, 'extra': 1.0, 'each': 1.0, 'keep': 1.0, 'personal': 1.0, 'lined': 1.0, 'it': 1.0, 'covers': 1.0, 'remove': 1.0, 'will': 1.0, 'sit': 1.0, 'when': 1.0, 'not': 1.0, 'can': 3.0, 'so': 1.0, 'part': 1.0, 'bonus': 1.0, 'be': 2.0}
Word element => {'step': 1.0, 'skip': 1.0, 'forced': 1.0, 'other': 1.0, 'for': 1.0, 'allow': 1.0, 'not': 1.0, 'does': 2.0, 'being': 1.0, 'additional': 1.0, 'well': 1.0, 'a': 1.0, 'yielded': 1.0, 'that': 2.0, 'incorrect': 1.0, 'which': 1.0, 'information': 1.0, 'to': 1.0, 'was': 1.0, 'booster': 1.0, 'some': 3.0, 'then': 2.0, 'after': 1.0, 'chosen': 1.0, 'apparently': 1.0, 'rear': 2.0, 'places': 1.0, 'forward': 1.0, 'will': 2.0, 'than': 1.0, 'say': 1.0, 'research': 2.0, 'this': 1.0, 'it': 3.0, 'can': 1.0, 'be': 1.0, 'show': 1.0, 'facing': 3.0, 'and': 1.0}
Word element => {'respond': 1.0, 'to': 2.0, 'and': 1.0, 'used': 1.0, 'a': 1.0, 'before': 1.0, 'it': 1.0, 'month': 1.0, 'for': 1.0, 'most': 1.0, 'yet': 1.0, 'company': 1.0, 'the': 1.0, 'my': 2.0, 'zippers': 1.0, 'emails': 1.0, 'broke': 1.0, 'has': 1.0, 'of': 1.0}
Word element => {'worth': 1.0, 'was': 1.0, 'just': 1.0, 'use': 1.0, 'so': 1.0, 'of': 1.0, 'part': 1.0, 'zipper': 1.0, 'has': 1.0, 'with': 2.0, 'side': 2.0, 'probably': 1.0, 'stripes': 2.0, 'top': 1.0, 'on': 2.0, 'think': 1.0, 'seems': 1.0, 'reversible': 1.0, 'decently': 1.0, 'not': 1.0, 'way': 1.0, 'you': 4.0, 'it': 4.0, 'this': 2.0, 'flowers': 1.0, 'assumed': 1.0, 'means': 1.0, 'pointing': 1.0, 'however': 1.0, 'cover': 1.0, 'is': 2.0, 'cute': 1.0, 'be': 1.0, 'pillow': 2.0, 'that': 3.0, 'case': 1.0, 'to': 3.0, 'the': 12.0, 'made': 1.0, 'out': 2.0, 'i': 1.0, 'two': 1.0, 'sided': 1.0, 'bottom': 1.0, 'inside': 1.0, 'meant': 1.0, 't': 1.0, 's': 2.0, 'might': 1.0, 'could': 1.0, 'in': 1.0, 'turn': 1.0, 'broad': 1.0, 'really': 1.0, 'flip': 1.0, 'across': 1.0, 'and': 2.0, 'pattern': 2.0, 'reveal': 1.0, 'wouldn': 1.0, 'complementary': 1.0, 'thought': 1.0, 'what': 1.0, 'but': 1.0, 'can': 1.0, 'up': 1.0, 'boppy': 1.0, 'over': 1.0, 'see': 1.0, 'other': 1.0}
Word element => {'happy': 1.0, 'how': 1.0, 'see': 1.0, 'to': 1.0, 'wait': 1.0, 'extra': 1.0, 'for': 1.0, 'washes': 1.0, 'middle': 2.0, 'girl': 2.0, 'with': 2.0, 'that': 2.0, 'thought': 2.0, 'cute': 1.0, 'after': 1.0, 'was': 5.0, 'says': 1.0, 'really': 2.0, 'is': 1.0, 'in': 2.0, 'said': 1.0, 'boppy': 3.0, 'nice': 1.0, 'have': 2.0, 'a': 4.0, 't': 2.0, 'the': 4.0, 'it': 6.0, 'purchase': 1.0, 'family': 1.0, 'my': 4.0, 'one': 1.0, 'originals': 1.0, 'little': 3.0, 'can': 1.0, 'but': 3.0, 'bears': 3.0, 'multiple': 1.0, 'am': 1.0, 'boys': 1.0, 'bear': 1.0, 'when': 1.0, 'washings': 1.0, 'came': 1.0, 'slipcover': 1.0, 'script': 1.0, 'far': 1.0, 'loved': 1.0, 'became': 1.0, 'of': 2.0, 'suprised': 1.0, 'because': 1.0, 'super': 1.0, 'lumpy': 1.0, 'i': 7.0, 'two': 2.0, 'perfect': 1.0, 'this': 2.0, 'soft': 1.0, '3': 1.0, 'also': 1.0, 'and': 2.0, 'has': 1.0, 'so': 2.0, 'boy': 1.0, 'previous': 1.0, 'didn': 1.0, 'picture': 1.0}
Word element => {'so': 1.0, 'versatile': 1.0, 'is': 1.0, 'i': 1.0, 's': 1.0, 'it': 2.0, 'love': 1.0, 'my': 2.0, 'boppy': 1.0, 'favorite': 1.0, 'single': 1.0, 'product': 1.0, 'baby': 1.0, 'because': 1.0}
Word element => {'recommend': 1.0, 'cozy': 1.0, 'including': 1.0, 'twenty': 1.0, 'least': 1.0, 'while': 1.0, 'on': 4.0, 'perfect': 1.0, 'highly': 1.0, 'this': 1.0, 'you': 2.0, 's': 3.0, 'a': 8.0, 't': 1.0, 'also': 1.0, 'than': 2.0, 'out': 1.0, 'use': 1.0, 'are': 1.0, 'diapers': 1.0, 'even': 2.0, 'got': 1.0, 'typically': 1.0, 'them': 1.0, 'new': 2.0, 'would': 1.0, 'item': 1.0, 'besides': 1.0, 'super': 1.0, 'to': 5.0, 'lie': 1.0, 'i': 4.0, 'other': 1.0, 'an': 1.0, 'pillow': 3.0, 'and': 3.0, 'for': 6.0, 'boppy': 3.0, 'up': 2.0, 'don': 1.0, 'over': 1.0, 'each': 1.0, 'absolute': 1.0, 'my': 2.0, 'at': 1.0, 'is': 6.0, 'it': 6.0, 'higher': 1.0, 'with': 1.0, 'must': 1.0, 'have': 2.0, 'son': 1.0, 're': 1.0, 'legs': 1.0, 'cover': 2.0, 'soft': 2.0, 'mother': 1.0, 'of': 1.0, 'the': 6.0, 'knew': 1.0, 'that': 2.0, 'had': 1.0, 'was': 1.0, 'nursing': 2.0, 'thing': 1.0, 'need': 1.0, 'or': 2.0, 'your': 2.0, 'any': 1.0, 'probably': 1.0, 'mom': 1.0, 'baby': 7.0, 'dad': 1.0, 'which': 2.0, 'sleep': 1.0, 'back': 1.0, 'by': 1.0, 'little': 3.0, 'so': 1.0, 'bit': 1.0, 'hunch': 1.0, 'great': 3.0, 'lay': 1.0, 'lap': 1.0, 'since': 1.0, 'ones': 1.0, 'too': 1.0, 'one': 3.0, 'lot': 1.0, 'keeping': 1.0, 'props': 1.0, 'but': 1.0, 'removable': 1.0, 'not': 2.0, 'floor': 1.0, 'much': 1.0, 'more': 2.0, 'considering': 1.0, 'dollars': 1.0, 'washing': 1.0, 'helps': 1.0, 'price': 1.0, 'saves': 1.0, 'bare': 1.0, 'overall': 1.0, 'thirty': 1.0, 'five': 1.0}
Word element => {'recommend': 1.0, 'plan': 1.0, 'while': 1.0, 'help': 1.0, 'use': 1.0, 'her': 1.0, 'uses': 1.0, 'useful': 1.0, 'older': 1.0, 'surprisingly': 1.0, 'gets': 1.0, 'item': 2.0, 'months': 1.0, 'during': 1.0, 'kept': 1.0, 'in': 3.0, 'on': 2.0, 'therefore': 1.0, 'vote': 1.0, 'thing': 1.0, 'no': 1.0, 'best': 1.0, 'gave': 1.0, 'breastfeeding': 2.0, 'into': 1.0, 'loved': 1.0, 'times': 1.0, 'just': 1.0, 'a': 3.0, 'then': 1.0, 'we': 1.0, 'used': 1.0, 'whatever': 1.0, 'only': 1.0, 'put': 2.0, 'much': 1.0, 'however': 1.0, 'played': 1.0, 'so': 1.0, 'up': 2.0, 'boppy': 1.0, 'hang': 1.0, 'there': 1.0, 'course': 1.0, 'that': 2.0, 'because': 1.0, 'baby': 4.0, 'out': 1.0, 'wasn': 1.0, 'playing': 1.0, 'fits': 1.0, 'be': 1.0, 'pillow': 1.0, 'is': 3.0, 'breastfriend': 2.0, 'against': 1.0, 'to': 6.0, 'prefer': 1.0, 'for': 6.0, 'sit': 1.0, 'roll': 1.0, 'my': 2.0, 'me': 1.0, 'and': 9.0, 'definitely': 1.0, 'better': 2.0, 'several': 1.0, 'cozy': 1.0, 'would': 1.0, 'too': 1.0, 'held': 1.0, 'couch': 1.0, 'away': 1.0, 'neutral': 1.0, 'from': 2.0, 'friend': 1.0, 'edge': 1.0, 'the': 13.0, 'of': 1.0, 't': 1.0, 'rest': 1.0, 'first': 1.0, 'cute': 1.0, 'around': 2.0, 'his': 2.0, 'little': 2.0, 'being': 1.0, 'very': 1.0, 'head': 2.0, 'most': 1.0, 'back': 2.0, 'far': 1.0, 'love': 1.0, 'he': 2.0, 'i': 5.0, 'slept': 1.0, 'also': 2.0, 'liked': 1.0, 'flat': 2.0, 'was': 2.0, 'able': 1.0, 'crevice': 1.0, 'gender': 1.0, 'see': 1.0, 'feel': 1.0, 'getting': 1.0, 'cover': 1.0, 'with': 1.0, 'it': 9.0, 'him': 2.0, 'bears': 1.0, 'really': 1.0, 'without': 1.0, 'soft': 1.0, 'highly': 1.0, 'few': 1.0, 'this': 2.0}
Word element => {'course': 1.0, 'boobies': 1.0, 'tools': 1.0, 'fasten': 1.0, 'favor': 1.0, 'shift': 1.0, 'process': 1.0, 'chewed': 1.0, 'get': 2.0, 'not': 2.0, 'yourself': 1.0, 'do': 2.0, 'hoping': 1.0, 'in': 2.0, 'holding': 1.0, 'with': 1.0, 'to': 3.0, 'feeding': 1.0, 'such': 1.0, 'reason': 1.0, 'aside': 1.0, 'does': 1.0, 'having': 2.0, 'of': 2.0, 'this': 1.0, 'it': 6.0, 'first': 1.0, 'son': 1.0, 'around': 1.0, 'is': 3.0, 'my': 1.0, 'by': 1.0, 'why': 1.0, 'challenging': 1.0, 'mess': 1.0, 'i': 2.0, 'latch': 1.0, 'mom': 1.0, 'issue': 1.0, 'worst': 1.0, 'and': 6.0, 'getting': 1.0, 'from': 1.0, 'while': 1.0, 'part': 1.0, 'thing': 1.0, 'you': 3.0, 'am': 1.0, 'ever': 1.0, 'so': 2.0, 'time': 1.0, 's': 2.0, 'a': 4.0, 'up': 1.0, 'proper': 1.0, 'shifts': 1.0, 'mother': 1.0, 'far': 1.0, 'then': 1.0, 'baby': 2.0, 'have': 1.0, 'flat': 1.0, 'rolls': 1.0, 'important': 1.0, 'right': 2.0, 'job': 1.0, 'place': 1.0, 'the': 10.0, 'without': 1.0, 'brest': 1.0, 'think': 1.0, 'crevice': 1.0, 'between': 1.0, 'friend': 1.0, 'an': 1.0, 'pillow': 2.0, 'that': 1.0, 'into': 1.0, 'breastfeeding': 1.0, 'enough': 1.0, 'for': 2.0}
Word element => {'bill': 1.0, 'asthetic': 1.0, 'am': 1.0, 'i': 2.0, 'really': 1.0, 'material': 1.0, 'pleasing': 1.0, 'consultant': 1.0, 'be': 1.0, 'great': 1.0, 'the': 4.0, 'search': 1.0, 'not': 1.0, 'excellent': 1.0, 'due': 1.0, 'have': 1.0, 'lactation': 1.0, '10wks': 1.0, 'breastfriend': 1.0, 'know': 1.0, 'like': 1.0, 'soft': 1.0, 'this': 2.0, 'with': 1.0, 'for': 2.0, 'well': 1.0, 'fits': 1.0, 'another': 2.0, 'will': 2.0, 'most': 1.0, 'but': 1.0, 'work': 1.0, 'breastfeeding': 1.0, 'minimalist': 1.0, 'design': 1.0, 'a': 2.0, 'we': 1.0, 'if': 1.0, 'of': 2.0, 'different': 1.0, 'gender': 1.0, 'knew': 1.0, 'child': 1.0, 'boppy': 1.0, 'and': 2.0, 'are': 1.0, 'tool': 1.0, 'adjuncts': 1.0, 'to': 1.0, 'was': 1.0, 'primarily': 1.0, 'nursery': 1.0, 'in': 1.0}
Word element => {'comfortable': 1.0, 't': 1.0, 'won': 1.0, 'to': 1.0, 'have': 1.0, 'thing': 1.0, 'very': 2.0, 'nice': 1.0, 'this': 1.0, 'only': 1.0, 'it': 2.0, 'think': 1.0, 'who': 1.0, 'i': 1.0, 'my': 1.0, 'baby': 1.0, 'enjoy': 1.0, 'be': 1.0, 'pillow': 1.0, 'will': 1.0, 'but': 1.0, 'me': 1.0, 'also': 1.0, 's': 1.0}
Word element => {'am': 1.0, 'now': 1.0, 'glad': 1.0, 'times': 1.0, 'washed': 1.0, 'have': 1.0, 'home': 1.0, 'at': 1.0, 'newborn': 1.0, 'on': 2.0, 'pillow': 3.0, 'really': 1.0, 'is': 4.0, 'nice': 1.0, 'perfectly': 1.0, 'and': 4.0, 'very': 2.0, 'this': 2.0, 'it': 3.0, 'fit': 1.0, 'slipcover': 2.0, 'boppy': 1.0, 'great': 1.0, 'the': 5.0, 'are': 1.0, 'breastfeed': 1.0, 'my': 1.0, 'too': 1.0, '3': 1.0, 'everytime': 1.0, 'soft': 2.0, 'still': 2.0, 'cute': 1.0, 'back': 1.0, 'bears': 1.0, 'purchased': 1.0, 'use': 1.0, 'i': 5.0}
Word element => {'finally': 1.0, 'him': 1.0, 'time': 1.0, 'them': 1.0, 'loves': 1.0, 'arrange': 1.0, 'absolutely': 1.0, 'worth': 1.0, 'became': 1.0, 'just': 1.0, 'cent': 1.0, 'thought': 1.0, 'purchased': 1.0, 'every': 2.0, 'use': 1.0, 'i': 4.0, 'have': 1.0, 'son': 1.0, 'must': 1.0, 'definite': 1.0, 'is': 2.0, 'a': 1.0, 'could': 1.0, 'one': 1.0, 'for': 1.0, 'pillows': 2.0, 'had': 1.0, 'to': 3.0, 'having': 1.0, 'newborn': 1.0, 'it': 2.0, 'this': 1.0, 'first': 1.0, 'feed': 2.0, 'uncomfortable': 1.0, 'weeks': 1.0, 'annoying': 1.0, 'my': 2.0, 'the': 2.0, 'and': 4.0, 'did': 1.0, 'few': 1.0}
Word element => {'wait': 1.0, 'don': 1.0, 'definitely': 1.0, 'couple': 1.0, 'changed': 1.0, 'price': 2.0, 'received': 1.0, 'also': 1.0, 'spits': 1.0, 'after': 1.0, 'another': 1.0, 'have': 1.0, 'can': 1.0, 'so': 1.0, 'second': 1.0, 'softer': 1.0, 'want': 1.0, 'you': 3.0, 'colorful': 1.0, 'covers': 1.0, 'regular': 1.0, 'having': 1.0, 'loved': 1.0, 'really': 1.0, 've': 1.0, 'put': 1.0, 'floor': 1.0, 'adult': 1.0, 'nap': 1.0, 'they': 1.0, 'as': 2.0, 'snuggly': 1.0, 'stripes': 1.0, 'neutral': 1.0, 'now': 1.0, 'material': 1.0, 'days': 1.0, 'soft': 1.0, 'found': 1.0, 'cover': 3.0, 'version': 1.0, 'using': 1.0, 'registered': 1.0, 'front': 1.0, 'use': 4.0, 'wonderful': 1.0, 'ahead': 1.0, 'started': 1.0, 'velvet': 1.0, 'sure': 1.0, 'get': 2.0, 'went': 1.0, 'into': 1.0, 'breastfeeding': 2.0, 'word': 1.0, 'any': 1.0, 'to': 7.0, 'love': 1.0, 'for': 9.0, 'one': 2.0, 'boppy': 3.0, 'over': 2.0, 'up': 2.0, 'listed': 1.0, 'and': 6.0, 'getting': 2.0, 'splurge': 1.0, 'are': 1.0, 'first': 2.0, 'it': 4.0, 'fine': 1.0, 'we': 1.0, 't': 3.0, 'a': 4.0, 's': 1.0, 'wasn': 1.0, 'prop': 1.0, 'noticed': 1.0, 'on': 4.0, 'fall': 1.0, 'that': 2.0, 'because': 1.0, 'everywhere': 1.0, 'of': 3.0, 'ran': 1.0, 'the': 13.0, 'babywe': 1.0, 'fits': 1.0, 'playing': 1.0, 'place': 1.0, 'our': 1.0, 'how': 1.0, 'would': 2.0, 'pay': 1.0, 'back': 1.0, 'create': 1.0, 'ready': 1.0, 'napping': 1.0, 'but': 4.0, 'matches': 1.0, 'position': 1.0, 'difficult': 1.0, 'retail': 1.0, 'i': 11.0, 'well': 1.0, 'with': 1.0, 'its': 1.0, 'decor': 1.0, 'at': 1.0, 'tried': 2.0, 'lap': 1.0, 'edge': 1.0, 'gift': 1.0, 'good': 1.0, 'rounded': 1.0, 'made': 1.0, 'haven': 1.0, 'pillow': 1.0, 'right': 1.0, 'cushion': 2.0, 'tummy': 1.0, 'next': 1.0, 'has': 1.0, 'mybrestfriend': 1.0, 'full': 1.0, 'recommend': 2.0, 'overhang': 1.0, 'more': 1.0, 'sells': 1.0, 'in': 1.0, 'wedge': 1.0, 'baby': 6.0, 'many': 1.0, 'every': 1.0, 'if': 2.0, 'course': 1.0, 'development': 1.0, 'highly': 1.0, 'rocking': 1.0, 'this': 5.0, 'bottle': 2.0, 'uses': 1.0, 'luxe': 1.0, 'time': 2.0, 'feeding': 2.0, 'support': 1.0, 'learning': 1.0, 'head': 2.0, 'during': 1.0, 'around': 2.0, 'when': 4.0, 'sit': 1.0}
Word element => {'uses': 1.0, 'months': 1.0, 'never': 1.0, 'it': 1.0, 'great': 1.0, 'many': 1.0, 'is': 1.0, 'anything': 1.0, 'use': 2.0, 'baby': 1.0, 'will': 1.0, 'my': 1.0, 'else': 1.0, 'i': 1.0, 'old': 1.0, 'still': 1.0, 'product': 1.0, 'and': 2.0, 'very': 1.0, 'we': 1.0, 'what': 1.0, 'a': 1.0, '9': 1.0, 'practical': 1.0, 'has': 1.0}
Word element => {'comfortable': 1.0, 'and': 1.0, 'feeding': 1.0, 'perfect': 1.0, 'also': 1.0, 'shape': 1.0, 'our': 1.0, 'extremely': 1.0, 'this': 1.0, 'is': 3.0, 'the': 2.0, 'one': 2.0, 'of': 1.0, 'first': 1.0, 'useful': 1.0, 'for': 2.0, 'most': 1.0, 'bought': 1.0, 'accessory': 1.0, 'we': 1.0}
Word element => {'extremely': 1.0, 'and': 1.0, 'cute': 1.0, 'soft': 1.0, 'so': 1.0, 'wash': 1.0, 'cover': 1.0, 'that': 1.0, 'boppy': 1.0, 'which': 1.0, 'love': 1.0, 's': 1.0, 'spew': 1.0, 'easy': 1.0, 'babies': 1.0, 'all': 1.0, 'to': 1.0, 'is': 1.0, 'this': 1.0, 'it': 1.0, 'with': 1.0, 'important': 1.0, 'the': 1.0, 'i': 1.0, 'liquids': 1.0}
Word element => {'that': 1.0, 'printed': 1.0, 'it': 2.0, 'buying': 1.0, 'are': 1.0, 'if': 1.0, 'side': 7.0, 'fine': 1.0, 'but': 2.0, 'back': 2.0, 'so': 2.0, 'looked': 1.0, 'this': 2.0, 'i': 2.0, 'just': 1.0, 'furry': 1.0, 'mostly': 1.0, 'bought': 1.0, 'material': 1.0, 'pillow': 1.0, '34': 4.0, 'of': 2.0, 'cover': 1.0, 'grey': 1.0, 'chevron': 3.0, 'should': 1.0, 'actually': 1.0, 'for': 1.0, 'product': 1.0, 'fit': 1.0, 'cute': 1.0, 'print': 2.0, 'is': 4.0, 'more': 1.0, 'careful': 1.0, 'the': 10.0, 'a': 1.0, 't': 1.0, 'other': 1.0, 'have': 1.0, 'zippered': 2.0, 'and': 1.0, 'put': 1.0, 'on': 4.0, 'its': 1.0, 'know': 1.0, 'like': 1.0, 'because': 1.0, 'maybe': 1.0, 'having': 1.0, 'pretty': 1.0, 'you': 2.0, 'don': 1.0, 'baby': 1.0, 'as': 2.0, 'far': 1.0, 'functionality': 1.0}
Word element => {'l': 2.0, 'cover': 1.0, 'compliments': 1.0, 'lots': 1.0, 'gotten': 1.0, 'on': 1.0, 'is': 1.0, 'this': 2.0, 'have': 1.0, 'of': 1.0, 'has': 1.0, 'held': 1.0, 'well': 1.0, 'and': 1.0, 'up': 1.0, 'very': 1.0, 'beautiful': 1.0, 'i': 1.0}
Word element => {'quality': 1.0, 'of': 1.0, 'on': 1.0, 'it': 3.0, 'mail': 1.0, 'opened': 1.0, 'and': 2.0, 'the': 4.0, 'sewn': 1.0, 'mother': 1.0, 'slipcover': 1.0, 'seamstress': 1.0, 'when': 1.0, 'returned': 1.0, 'always': 1.0, 'halfway': 1.0, 'in': 3.0, 'boppy': 1.0, 'together': 1.0, 'to': 1.0, 'was': 1.0, 'be': 1.0, 't': 1.0, 'a': 2.0, 'stitching': 1.0, 'law': 1.0, 'brand': 1.0, 'good': 1.0, 'or': 1.0, 'just': 2.0, 'have': 2.0, 'considered': 1.0, 'zipper': 1.0, 'disappointed': 1.0, 'disconnected': 1.0, 'i': 4.0, 'otherwise': 1.0, 'this': 2.0, 'soft': 1.0, 'wasn': 1.0, 'got': 1.0, 'even': 1.0, 'luckily': 1.0, 'my': 1.0, 'is': 2.0, 'really': 1.0, 'would': 1.0, 'cute': 1.0, 'lack': 1.0}
Word element => {'that': 1.0, 'covers': 1.0, 'any': 1.0, 'found': 1.0, 'inexpensive': 1.0, 'haven': 1.0, 'of': 1.0, 'middle': 1.0, 'boppy': 2.0, 'feedings': 1.0, 'cover': 1.0, 't': 1.0, 'the': 3.0, 'for': 1.0, 'love': 1.0, 'this': 1.0, 'it': 1.0, 'night': 1.0, 'i': 2.0, 'beautiful': 1.0, 'pink': 1.0, 'side': 2.0, 'is': 2.0, 'are': 1.0, 'wonderfully': 1.0, 'soft': 1.0, 'and': 1.0, 'printed': 1.0, 's': 1.0, 'expensive': 1.0, 'but': 1.0}
Word element => {'better': 1.0, 'anywhere': 1.0, 'even': 1.0, 'at': 1.0, 'people': 1.0, 'of': 2.0, 'reviews': 1.0, 'read': 1.0, 'though': 1.0, 'real': 1.0, 'isn': 1.0, 'top': 1.0, 'instead': 1.0, 'complaint': 1.0, 'bottom': 1.0, 'inside': 1.0, 'put': 1.0, 'think': 1.0, 'on': 4.0, 'reversible': 1.0, 'be': 1.0, 've': 1.0, 'would': 1.0, 'about': 1.0, 'thing': 1.0, 'can': 1.0, 'change': 1.0, 'but': 2.0, 'all': 1.0, 'outside': 1.0, 'to': 2.0, 'any': 2.0, 'great': 1.0, 'comfortable': 1.0, 'product': 1.0, 'actually': 1.0, 'for': 2.0, 'love': 2.0, 'color': 3.0, 'one': 3.0, 'so': 1.0, 'after': 1.0, 'than': 1.0, 'cover': 4.0, 'is': 6.0, 'more': 1.0, 'the': 11.0, 'zipper': 2.0, 'have': 3.0, 'other': 3.0, 'covers': 1.0, 'it': 6.0, 'complain': 1.0, 'with': 3.0, 'wonderful': 1.0, 'baby': 1.0, 'softer': 1.0, 'in': 3.0, 'i': 8.0, 'me': 1.0, 'not': 3.0, 'washing': 1.0, 'material': 1.0, 'pillow': 1.0, 'only': 1.0, 'much': 2.0, 'either': 1.0, 'had': 1.0, 'problems': 2.0, 'extra': 1.0, 'definitely': 1.0, 'don': 1.0, 'placement': 2.0, 'wash': 1.0, 'boppy': 2.0, 'recommend': 1.0, 't': 3.0, 'a': 2.0, 'this': 4.0, 'soft': 2.0, 'which': 1.0, 'like': 1.0, 'well': 1.0, 'comfort': 1.0, 'or': 1.0, 'worth': 1.0, 'fact': 1.0, 'another': 1.0, 'tight': 1.0, 'my': 2.0, 'fits': 1.0, 'and': 3.0, 'too': 1.0, 'loose': 1.0}
Word element => {'go': 1.0, 'anything': 1.0, 'perfect': 1.0, 'for': 1.0, 'bed': 1.0, 'size': 1.0, 'great': 1.0, 'the': 2.0, 'of': 1.0, 'up': 2.0, 'folds': 1.0, 'travel': 1.0, 'and': 1.0, 'perfectly': 1.0, 'it': 2.0, 'this': 1.0, 'briefcase': 1.0, 'i': 2.0, 'used': 1.0, 'flight': 1.0, 'on': 2.0, 'a': 2.0, 'military': 1.0, 'to': 1.0, 'was': 1.0, 'that': 1.0, 'could': 1.0, 'open': 1.0}
Word element => {'well': 1.0, 'quality': 1.0, 'are': 1.0, 'they': 1.0, 'on': 1.0, 'good': 1.0, 'embroidered': 1.0, 'and': 2.0, 'them': 2.0, 'along': 1.0, 'recommend': 1.0, 'she': 1.0, 'my': 1.0, 'for': 1.0, 'daughter': 1.0, 'the': 1.0, 'these': 1.0, 'up': 1.0, 'of': 2.0, 'two': 1.0, 'purchased': 1.0, 'took': 1.0, 'i': 2.0, 'had': 1.0, 'to': 1.0, 'was': 1.0, 'would': 1.0, 'grandmother': 1.0, 'have': 1.0, 'name': 1.0, 'ladybug': 1.0, 'born': 1.0, 'go': 1.0, 'with': 1.0, 'room': 1.0, 'held': 1.0, 'theme': 1.0, 'before': 1.0, 'even': 1.0, 'her': 3.0}
Word element => {'blanket': 1.0, 'looking': 1.0, 'when': 1.0, 'for': 1.0, 'one': 1.0, 'i': 2.0, 'other': 1.0, 'than': 1.0, 'give': 1.0, 'larger': 1.0, 'slightly': 1.0, 'and': 1.0, 'very': 1.0, 'as': 1.0, 'more': 1.0, 'the': 1.0, 'careful': 1.0, 'small': 1.0, 'is': 2.0, 'it': 3.0, 'purchased': 1.0, 'gift': 1.0, 'cute': 1.0, 'still': 2.0, 'be': 1.0, 'but': 2.0, 'will': 1.0, 'a': 2.0, 'would': 1.0}
Word element => {'it': 1.0, 'for': 1.0, 'back': 1.0, 'time': 1.0, 'my': 1.0, 'the': 1.0, 'a': 1.0, 'professional': 1.0, 'nature': 1.0, 'as': 1.0, 'and': 1.0, 'wildlife': 1.0, 'photographer': 1.0, 'i': 1.0, 'me': 1.0, 'all': 1.0, 'use': 1.0, 'loves': 1.0, 'this': 1.0, 'cart': 1.0}
Word element => {'would': 1.0, 'practical': 1.0, 'how': 1.0, 'predicted': 1.0, 'lifestyle': 1.0, 'prams': 1.0, 'off': 1.0, 'boot': 1.0, 'attempt': 1.0, 'issue': 2.0, 'an': 2.0, 'extension': 1.0, 'investigating': 1.0, 'wheels': 2.0, 'my': 1.0, 'large': 1.0, 'standard': 1.0, 'thing': 1.0, 'bump': 1.0, 'person': 1.0, 'eccentric': 1.0, 'something': 1.0, 'handlebar': 1.0, 'will': 1.0, 'around': 1.0, 'cart': 1.0, 'common': 1.0, 'make': 1.0, 'thinking': 2.0, 'baby': 1.0, 're': 1.0, 'realise': 1.0, 'handle': 2.0, 'people': 1.0, 'when': 1.0, 'weird': 1.0, 'cargo': 1.0, 'makes': 1.0, 'bottom': 1.0, 'love': 1.0, 'solid': 1.0, 'situations': 1.0, 'other': 2.0, 'fits': 1.0, 'all': 3.0, 'along': 1.0, 't': 6.0, 'so': 3.0, 'birthday': 1.0, 'used': 1.0, 'aisle': 1.0, 'feet': 1.0, 'home': 2.0, 'shops': 1.0, 'on': 1.0, 'long': 1.0, 'bags': 2.0, 'heavy': 3.0, 'as': 2.0, 'some': 3.0, 'wheel': 1.0, 'fantastic': 2.0, 'of': 9.0, 'the': 20.0, 'not': 5.0, 'suppose': 1.0, 'feel': 2.0, 'style': 1.0, 'probably': 2.0, 'big': 1.0, 'or': 2.0, 'small': 1.0, 'in': 3.0, 'helmet': 1.0, 'a': 18.0, 'bag': 1.0, 'light': 1.0, 'looking': 2.0, 'smaller': 2.0, 'shop': 1.0, 'use': 1.0, 'up': 2.0, 'water': 1.0, 'fragile': 2.0, 'change': 3.0, 'for': 7.0, 'hammer': 1.0, 'that': 3.0, 'been': 1.0, 'has': 1.0, 'trolley': 2.0, 'yesterday': 1.0, 'easier': 1.0, 'do': 2.0, 'much': 1.0, 'put': 1.0, 'sooo': 1.0, 'checkout': 1.0, 'worried': 1.0, 'me': 1.0, 'slightly': 2.0, 'i': 30.0, 'have': 1.0, 'found': 1.0, 'modify': 1.0, 'drive': 2.0, 'work': 3.0, 'clear': 1.0, 'over': 1.0, 'no': 2.0, 'about': 2.0, 'purse': 1.0, 'seem': 1.0, 'be': 1.0, 'it': 36.0, 'player': 1.0, 'yet': 1.0, 'car': 4.0, 'cool': 1.0, 'rigid': 1.0, 'might': 1.0, 'convenient': 1.0, 'drop': 1.0, 've': 5.0, 'always': 1.0, 'most': 1.0, 'groceries': 2.0, 'handles': 1.0, 'free': 2.0, 'now': 1.0, 'right': 1.0, 'to': 17.0, 'floor': 1.0, 'straight': 1.0, 'pretty': 2.0, 'job': 1.0, 'bike': 2.0, 'whenever': 1.0, 'carry': 2.0, '2': 1.0, 'stiff': 1.0, 'clothes': 1.0, 'discomfort': 1.0, 'soap': 1.0, 'fruit': 2.0, 'shoes': 1.0, 'towel': 1.0, 'next': 1.0, 'toiletries': 1.0, 'which': 1.0, 'coles': 1.0, 'gravel': 1.0, 'heap': 1.0, 'can': 3.0, 'is': 4.0, 'at': 1.0, 'than': 2.0, 'riding': 1.0, 'through': 1.0, 'into': 3.0, 'quite': 1.0, 'flat': 1.0, 'reasonably': 3.0, 'wouldn': 1.0, 'more': 3.0, 'perfect': 2.0, 'nimble': 1.0, 'things': 2.0, 'you': 3.0, 'family': 1.0, 'cakes': 1.0, 'shopping': 3.0, 'life': 1.0, 'australia': 1.0, 'goes': 1.0, 'transfer': 1.0, 'hand': 2.0, 'out': 1.0, 'literally': 1.0, 'fridge': 1.0, 'pram': 4.0, 'unpack': 1.0, 'weeks': 1.0, 'seems': 2.0, 'and': 10.0, 'just': 3.0, 'tried': 1.0, 'park': 1.0, 'but': 6.0, 'don': 3.0, 'still': 3.0, 'incredibly': 1.0, 'think': 1.0, 'suspension': 1.0, 'by': 1.0, 'parking': 1.0, 'though': 1.0, 'walk': 3.0, 'build': 1.0, 'brake': 1.0, 'sometimes': 1.0, 'carrying': 3.0, 'loads': 1.0, 'fantastically': 1.0, 'maneuverable': 1.0, 'mp3': 1.0, 'steer': 1.0, 'using': 1.0, 'with': 4.0, 'grass': 1.0, 'absolutely': 1.0, 'got': 1.0, 'grocery': 1.0, 'one': 1.0, 'try': 1.0, 'never': 1.0, 'lunch': 1.0, 'take': 2.0, 'like': 5.0, 'fine': 1.0, 'find': 1.0, 'ways': 1.0, 'very': 2.0, 'need': 2.0, 'handy': 1.0, 'really': 2.0, 'sorts': 1.0, 'appearance': 1.0, 'gutters': 2.0, 'pick': 1.0, 'generally': 2.0, 'tip': 1.0, 'unless': 1.0, 'cake': 1.0, 'raise': 1.0, 'folds': 1.0, 'front': 1.0, 'often': 1.0, 'get': 4.0, 'couldn': 1.0, 'capacity': 1.0, 'could': 1.0, 'm': 3.0, 's': 15.0, 'doesn': 1.0, 'days': 1.0, 'handling': 1.0, 'only': 2.0, 'couple': 1.0, 'bicycle': 1.0, 'd': 2.0, 'easily': 2.0, 'looks': 2.0, 'this': 3.0}
Word element => {'newborn': 1.0, 'forward': 1.0, 'look': 1.0, 'so': 1.0, 'unbuttoned': 1.0, 'coat': 1.0, 'child': 1.0, 'up': 1.0, 'glad': 1.0, 'bundled': 1.0, 'have': 2.0, 'bean': 1.0, 'with': 3.0, 'used': 1.0, 'straps': 1.0, 'loosening': 1.0, 'by': 1.0, 'in': 2.0, 'sling': 1.0, 'using': 2.0, 'regularly': 1.0, 'wear': 1.0, 'that': 1.0, 'been': 1.0, 'old': 1.0, 'i': 7.0, '4': 1.0, 'about': 1.0, 'second': 1.0, 'nurse': 1.0, 'was': 4.0, 'had': 1.0, 'son': 1.0, 'little': 1.0, 'very': 1.0, 'our': 1.0, 'all': 1.0, 'to': 4.0, 'as': 1.0, 'from': 1.0, 'recieve': 1.0, 'easy': 1.0, 'this': 4.0, 'it': 4.0, 'carrier': 2.0, 'we': 1.0, 'a': 6.0, 'friend': 1.0, 'comfortably': 1.0, 'gift': 1.0, 'absolutely': 1.0, 'am': 1.0, 'when': 2.0, 'often': 1.0, 'my': 2.0, 'and': 5.0, 'comfortable': 1.0, 'great': 1.0, 'myself': 1.0, 'hands': 1.0, 'the': 4.0, 'free': 1.0, 'on': 1.0, 'put': 1.0, 'alternative': 1.0, 'got': 1.0, 'months': 1.0, 'hang': 1.0, 'once': 1.0, 'of': 1.0, 'feels': 1.0, 'material': 1.0, 'amazing': 1.0, 'winter': 1.0, 'able': 1.0}
Word element => {'together': 1.0, 'all': 1.0, 'up': 1.0, 'ended': 1.0, 'on': 1.0, 'c': 1.0, 'nice': 1.0, 'a': 2.0, 'so': 1.0, 'stain': 1.0, 'my': 1.0, 'sent': 1.0, 'expensive': 1.0, 'also': 1.0, 'with': 1.0, 'it': 3.0, 'i': 3.0, 'for': 1.0, 'such': 1.0, 'back': 1.0, 'an': 1.0, 'expected': 1.0, 'much': 1.0, 'came': 1.0, 'bag': 2.0, 'buying': 1.0, 'was': 1.0, 'bigger': 1.0, 'different': 1.0, 'b': 1.0, 'than': 1.0}
Word element => {'just': 1.0, 'place': 1.0, 'bag': 1.0, 'enclosed': 1.0, 'mixture': 1.0, 'was': 1.0, 'better': 1.0, 'feel': 1.0, 'aching': 1.0, 'my': 1.0, 'made': 1.0, 'and': 2.0, 'relax': 1.0, 'no': 1.0, 'good': 1.0, 'of': 1.0, 'it': 2.0, 'this': 1.0, 'only': 1.0, 'with': 1.0, 'in': 1.0, 'having': 2.0, 'put': 1.0, 'weeks': 1.0, 'etc': 1.0, 'a': 2.0, 'twins': 1.0, 'after': 1.0, '8': 1.0, 'thing': 1.0, 'over': 1.0, 'breast': 1.0, 'pain': 1.0, 'i': 1.0, 'breasts': 2.0, 'developed': 1.0, 'nasty': 1.0, 'case': 1.0, 'your': 1.0, 'mastitis': 1.0, 'the': 2.0, 'that': 1.0}
Word element => {'hate': 1.0, 'which': 1.0, 'coats': 1.0, 'product': 1.0, 'for': 1.0, 'need': 1.0, 'cozy': 1.0, 'just': 1.0, 'i': 1.0, 'hats': 1.0, 'perfect': 1.0, 'normally': 1.0, 'covers': 1.0, 'drenched': 1.0, 'was': 1.0, 'no': 1.0, 'clothing': 1.0, 'bad': 1.0, 'fun': 1.0, 'appointments': 1.0, 'work': 1.0, 'blankets': 1.0, '2': 1.0, 'have': 1.0, 'been': 1.0, 'dr': 1.0, 'helpful': 1.0, 'taking': 1.0, 'wear': 1.0, 'their': 2.0, 'were': 2.0, 'at': 1.0, 'sons': 1.0, 'and': 5.0, 'very': 1.0, 'with': 1.0, 'to': 3.0, 'my': 1.0, 'when': 2.0, 'you': 1.0, 'carriers': 1.0, 'out': 1.0, 'them': 3.0, 'they': 4.0, 'so': 1.0, 'time': 1.0, 'kept': 1.0, 'blowing': 1.0, 'cover': 1.0, 're': 1.0, 'off': 1.0, 'stay': 1.0, 'not': 1.0, 'we': 2.0, 'a': 1.0, 'then': 1.0, 'tried': 1.0, 'trying': 1.0, 'putting': 1.0, 'first': 1.0, 'sweating': 1.0, 'in': 1.0, 'such': 1.0, 'these': 2.0, 'carrying': 1.0, 'snowsuits': 1.0, 'great': 1.0, 'nice': 1.0, 'dress': 1.0, 'twin': 1.0, 'big': 1.0, 'mistake': 1.0}
Word element => {'offer': 1.0, 'with': 1.0, 'then': 1.0, 'twice': 1.0, 'or': 1.0, 'little': 2.0, 'twirl': 1.0, 'interested': 1.0, 'isn': 1.0, 'for': 1.0, 'range': 1.0, 'in': 1.0, 'age': 1.0, 'within': 1.0, 'baby': 1.0, 'my': 1.0, 'ok': 1.0, 'unpleasant': 1.0, 'toys': 1.0, 'downright': 1.0, 'unmusical': 1.0, 'engineered': 1.0, 'birdie': 1.0, 'tool': 1.0, 'moves': 1.0, 'musical': 1.0, 'only': 1.0, 'its': 1.0, 'ridiculously': 1.0, 'usefulness': 1.0, 'the': 7.0, 'limit': 1.0, 'about': 1.0, 'recommended': 1.0, 'toy': 3.0, 'but': 2.0, 'this': 2.0, 'more': 1.0, 'is': 2.0, 'once': 1.0, 'packaging': 1.0, 'of': 1.0, 'good': 1.0, 'maybe': 1.0, 'because': 1.0, 'xylophone': 1.0, 't': 1.0, 's': 4.0, 'a': 3.0, 'that': 2.0, 'tone': 1.0, 'should': 1.0, 'except': 1.0, 'on': 3.0, 'make': 1.0, 'take': 1.0, 'i': 2.0, 'two': 1.0, 'she': 1.0, 'it': 3.0, 'looks': 1.0, 'wielding': 1.0, 've': 1.0, 'anyway': 1.0, 'over': 1.0, 'sound': 1.0, 'shelf': 1.0, 'adults': 1.0, 'unwrap': 1.0, 'are': 1.0, 'to': 4.0, 'any': 1.0, 'least': 1.0, 'bars': 1.0, 'ever': 1.0, 'they': 1.0, 'not': 2.0, 'heard': 1.0, 'guess': 1.0, 'kid': 1.0}
Word element => {'other': 1.0, 'design': 1.0, 'correctly': 1.0, 'fired': 1.0, 'great': 1.0, 'would': 1.0, 'tuned': 1.0, 'hard': 1.0, 'properly': 1.0, '6': 1.0, 'how': 2.0, 'them': 1.0, 'teaches': 1.0, 'toy': 2.0, 'musical': 1.0, 'over': 1.0, 'don': 1.0, 'someone': 1.0, 'am': 1.0, 'now': 1.0, 'hope': 1.0, 'by': 1.0, 'bars': 3.0, 'exposed': 1.0, 'top': 1.0, 'and': 3.0, 'actually': 1.0, 'supposed': 1.0, 'be': 3.0, 'of': 4.0, 'toys': 1.0, 'is': 2.0, 'item': 1.0, 'kids': 1.0, 'this': 4.0, 'children': 1.0, 'tune': 3.0, 'it': 4.0, 'unit': 1.0, 'make': 1.0, 'therefore': 1.0, 'learn': 1.0, 'that': 2.0, 'musician': 1.0, 'to': 5.0, 'was': 5.0, 'the': 6.0, 'defective': 1.0, 'tone': 1.0, 'aware': 1.0, 'badly': 1.0, 'help': 1.0, 'if': 2.0, 'want': 1.0, 'same': 1.0, 'however': 1.0, 'two': 2.0, 'i': 5.0, 'perfectly': 1.0, '8': 1.0, 'produced': 1.0, 'figuring': 1.0, 'deaf': 1.0, 'bought': 1.0, 'manufacturing': 1.0, 't': 1.0, 'a': 5.0, 'were': 1.0, 'assume': 1.0, 'out': 2.0, 'replacement': 1.0, 'must': 1.0, 'in': 2.0, 'my': 1.0, 'company': 1.0, 'exact': 1.0, 'are': 1.0, 'lamaze': 1.0, 'mass': 1.0, 'returned': 1.0, 'way': 1.0, 'defect': 1.0}
Word element => {'to': 1.0, 'trying': 1.0, 'notes': 1.0, 'enjoys': 1.0, 'the': 1.0, 'my': 1.0, 'almost': 1.0, 'and': 1.0, 'loves': 1.0, 'this': 1.0, 'xylophone': 1.0, 'baby': 1.0, 'she': 1.0, 'on': 1.0, 'is': 1.0, '8': 1.0, 'bang': 1.0, 'months': 1.0}
Word element => {'am': 1.0, 'just': 1.0, 'babies': 1.0, 'likes': 1.0, 'of': 1.0, 'wish': 1.0, 'based': 1.0, 'some': 1.0, 'customer': 1.0, 'than': 1.0, 'maybe': 1.0, 'images': 1.0, 'bigger': 2.0, 'lot': 1.0, 'played': 1.0, 'happy': 2.0, 'are': 1.0, 'anyway': 1.0, 'the': 3.0, 'on': 1.0, 'i': 3.0, 'it': 6.0, 'expecting': 1.0, 'was': 1.0, 'look': 1.0, 'animal': 1.0, 'stuffed': 1.0, 'be': 1.0, 'a': 3.0, 'little': 1.0, 'mine': 1.0, 'smaller': 1.0, 'bit': 1.0, 'so': 1.0, 'made': 1.0, 'to': 1.0, 'our': 1.0, 'baby': 1.0, 'do': 1.0, 'but': 2.0, 'music': 1.0, 'if': 1.0, 'longer': 1.0, 'is': 1.0, 'glorified': 1.0, 'makes': 1.0, 'her': 1.0, 'then': 1.0}
Word element => {'anyone': 1.0, 'recommend': 1.0, 'just': 1.0, 'tunes': 1.0, 'to': 2.0, 'different': 1.0, 'so': 1.0, 'has': 1.0, 'ways': 1.0, 'months': 1.0, 'several': 1.0, 'we': 1.0, 'play': 1.0, 'can': 1.0, 'child': 1.0, 'saw': 1.0, 'loved': 1.0, 'gift': 1.0, 'bought': 2.0, 'how': 1.0, 'the': 2.0, 'grandchild': 1.0, 'my': 1.0, 'a': 2.0, '1': 1.0, 'and': 1.0, 'i': 2.0, 'love': 1.0, 'for': 3.0, 'one': 1.0, 'pay': 1.0, 'developmental': 1.0, 'with': 1.0, 'this': 1.0, 'it': 3.0, 'first': 1.0, 'highly': 1.0, 'another': 1.0, 'baby': 2.0, 'toy': 1.0, 'many': 1.0, 'is': 1.0, 'that': 1.0}
Word element => {'hit': 1.0, 'new': 1.0, 'with': 1.0, 'for': 2.0, 'another': 2.0, 'get': 2.0, 'can': 1.0, 'until': 1.0, 'guess': 1.0, 'mouth': 1.0, 'hand': 1.0, 'her': 1.0, 'part': 2.0, 'jump': 1.0, 'old': 1.0, 'whinny': 1.0, 'i': 4.0, 'told': 1.0, 'motion': 1.0, 'at': 1.0, 'now': 1.0, 'store': 1.0, 'was': 1.0, 'more': 1.0, 'is': 2.0, 'said': 1.0, 'toy': 1.0, 'colors': 1.0, 'baby': 2.0, 'wore': 1.0, '6': 1.0, 'shower': 1.0, 'of': 3.0, 'originally': 1.0, 'gift': 2.0, 'months': 1.0, 'bought': 2.0, 'one': 2.0, 'and': 7.0, 'to': 3.0, 'as': 2.0, 'favorite': 1.0, 's': 1.0, 'a': 4.0, 'bright': 1.0, 'the': 6.0, 'attracted': 1.0, 'they': 4.0, 'it': 5.0, 'she': 2.0, 'noise': 1.0, 'hope': 1.0, 'by': 1.0, 'just': 2.0, 'making': 1.0, 'use': 1.0, 'so': 2.0, 'much': 2.0, 'laughs': 2.0, 'seems': 1.0, 'batteries': 1.0, 'loves': 1.0, 'been': 1.0, 'couple': 1.0, 'out': 1.0, 'have': 1.0}
Word element => {'real': 1.0, 'buy': 1.0, 'just': 1.0, 'should': 1.0, 'sign': 1.0, 'he': 2.0, 'every': 1.0, 'husband': 1.0, 'my': 1.0, 'baby': 1.0, 'rather': 1.0, 'off': 2.0, 'sets': 1.0, 'set': 1.0, 'activate': 1.0, 'device': 1.0, 'the': 2.0, 'past': 1.0, 'but': 2.0, '5': 1.0, 'sure': 1.0, 'get': 1.0, 'teething': 1.0, 'sound': 2.0, 'in': 1.0, 'pony': 2.0, 'color': 1.0, 'with': 1.0, 'this': 2.0, 'attention': 1.0, 'her': 3.0, 'ribbons': 1.0, 'on': 1.0, 'much': 1.0, 'old': 1.0, 'and': 2.0, 'pattern': 1.0, 'pull': 1.0, 'daughter': 1.0, 'easily': 1.0, 'when': 1.0, 'that': 1.0, 'loves': 2.0, 'girl': 1.0, 'almost': 1.0, '4': 1.0, 'i': 2.0, 'texture': 1.0, 'capture': 1.0, 'would': 1.0, 'letting': 1.0, 'time': 1.0, 'so': 1.0, 'hug': 1.0, 'is': 5.0, 'bigger': 1.0, 'it': 9.0, 'month': 1.0, 'she': 2.0, 'ordered': 1.0, 'our': 2.0, 'to': 3.0, 'as': 4.0, 'little': 1.0, 'very': 1.0, 'expected': 1.0, 'has': 1.0, 'well': 1.0, 'stars': 1.0, 'for': 3.0, 's': 1.0, 'walks': 1.0, 'a': 4.0, 'we': 1.0, 'great': 1.0, 'big': 1.0, 'feel': 1.0, 'than': 1.0, 'chew': 1.0, 'pretty': 1.0, 'safe': 1.0}
Word element => {'when': 1.0, 'makes': 1.0, 'mesmerized': 1.0, 'year': 1.0, 'are': 2.0, 'my': 1.0, 'and': 2.0, 'as': 1.0, 'noise': 1.0, 'it': 2.0, 'love': 1.0, 'absolutely': 1.0, 'were': 1.0, 'this': 1.0, 'triplets': 1.0, 'given': 1.0, 'still': 1.0, 'old': 1.0, 'toy': 1.0, 'gift': 1.0, 'a': 2.0, 'they': 2.0}
Word element => {'it': 1.0, 'growing': 1.0, 'him': 1.0, 'to': 1.0, 'and': 1.0, 'very': 1.0, 'whistles': 1.0, 'have': 1.0, 't': 1.0, 'the': 2.0, 'my': 1.0, 'for': 1.0, 'into': 1.0, 'loves': 1.0, 'good': 1.0, 'toy': 1.0, 'price': 1.0, 'looking': 1.0, 'forward': 1.0, 'doesn': 1.0, 'but': 1.0, 'tags': 1.0, 'bells': 1.0, 'month': 1.0, 'little': 1.0, 'old': 1.0, 'six': 1.0, 'i': 1.0, 'm': 1.0}
Word element => {'up': 1.0, 'thumbs': 1.0, '2': 1.0, 'adult': 1.0, 'baby': 1.0, 'presents': 1.0, 'other': 1.0, 'his': 1.0, 'long': 1.0, 'was': 2.0, 'and': 3.0, 'pony': 1.0, 'online': 1.0, 'couldn': 1.0, 'surprise': 1.0, 'shopping': 1.0, 'christmas': 1.0, 'with': 1.0, 'he': 1.0, 'even': 1.0, 'got': 1.0, 'guy': 1.0, 'on': 1.0, 'in': 2.0, 'be': 2.0, 'him': 3.0, 'love': 1.0, 'little': 1.0, 'my': 2.0, 'doing': 1.0, 'found': 1.0, 'i': 3.0, 'old': 1.0, 'when': 2.0, 'bettter': 1.0, 'imagine': 1.0, 'of': 1.0, 'course': 1.0, 'the': 2.0, 'test': 1.0, 'persuaded': 1.0, 'to': 4.0, 'our': 1.0, 'acid': 1.0, '8': 1.0, 'fell': 1.0, 'month': 1.0, 'definitely': 1.0, 'person': 1.0, 'grandson': 1.0, 'latched': 1.0, 'let': 1.0, 'a': 1.0, 't': 1.0, 'go': 1.0, 'enough': 1.0, 'explore': 1.0}
Word element => {'heat': 1.0, 'from': 1.0, 'and': 1.0, 'very': 1.0, 't': 2.0, 'doesn': 2.0, 'well': 2.0, 'cups': 1.0, 'stick': 1.0, 'it': 2.0, 'him': 2.0, 'the': 2.0, 'that': 1.0, 'suction': 1.0, 'does': 1.0, 'busy': 1.0, 'one': 1.0, 'but': 1.0, 'keep': 2.0, 'of': 1.0}
Word element => {'term': 1.0, 'long': 1.0, 'would': 1.0, 'is': 2.0, 'improvements': 2.0, 'hear': 1.0, 'rattle': 1.0, 'i': 1.0, 'cloth': 1.0, 'it': 3.0, 'this': 2.0, 'loud': 1.0, 'hard': 1.0, 'with': 1.0, 'not': 1.0, 'just': 1.0, 'shake': 1.0, 'core': 1.0, 'the': 5.0, 'crinkly': 1.0, 'playability': 1.0, 'grab': 1.0, 'these': 1.0, 'some': 1.0, 'at': 1.0, 'no': 1.0, 'of': 3.0, 'loved': 1.0, 'use': 1.0, 'in': 1.0, 'littleones': 1.0, 'easy': 1.0, 'for': 1.0, 'could': 1.0, 'toy': 2.0, 'but': 2.0, 'inside': 1.0, 'to': 4.0, 'all': 1.0, 'have': 1.0, 'idea': 1.0, 'you': 1.0, 'greatly': 1.0, 'and': 1.0, 'leaves': 1.0, 'really': 1.0, 'material': 1.0, 'improve': 1.0, 'are': 1.0, 'make': 1.0, 'noise': 1.0, 'them': 1.0, 'both': 1.0}
Word element => {'returned': 1.0, 'i': 1.0, 'definitely': 1.0, 'weak': 1.0, 'make': 1.0, 'to': 1.0, 'sound': 3.0, 'product': 1.0, 'be': 1.0, 'sounds': 1.0, 'chime': 1.0, 'might': 1.0, 'doesn': 1.0, 'inside': 1.0, 'but': 1.0, 'balls': 1.0, 'plastic': 1.0, 'chimes': 1.0, 'makes': 1.0, 'description': 1.0, 't': 1.0, 'the': 1.0, 'it': 5.0, 'this': 2.0, 'only': 1.0, 'like': 1.0, 'a': 2.0, 'slight': 1.0, 'rattle': 2.0, 'says': 1.0, 'of': 1.0, 'there': 1.0, 'few': 1.0, 'little': 1.0}
Word element => {'working': 1.0, 'well': 1.0, 'a': 1.0, 'by': 1.0, 'easy': 1.0, 'are': 1.0, 'rubber': 1.0, 'of': 1.0, 'out': 1.0, 'is': 1.0, 'heck': 1.0, 'shake': 1.0, 'fact': 1.0, 'reason': 1.0, 'for': 1.0, 'got': 1.0, 'green': 2.0, 'whole': 1.0, 'i': 1.0, 'that': 2.0, 'this': 1.0, 'it': 2.0, 'thingies': 1.0, 'has': 1.0, 'to': 1.0, 'was': 1.0, 'grab': 2.0, 'the': 6.0, 'these': 1.0, 'cute': 1.0, 'plastic': 1.0, 'can': 1.0, 'looking': 1.0, 'things': 1.0, 'toy': 2.0, 'baby': 2.0, 'on': 1.0, 'and': 2.0}
Word element => {'carry': 1.0, 'easily': 1.0, 'could': 1.0, 'around': 1.0, 'move': 1.0, 'is': 1.0, 'son': 1.0, 'on': 1.0, 'segments': 1.0, 'a': 1.0, 'them': 1.0, 'able': 1.0, 'when': 1.0, 'it': 2.0, 'he': 4.0, 'this': 1.0, 'loved': 2.0, 'baby': 1.0, 'my': 1.0, 'the': 2.0, 'easy': 1.0, 'was': 2.0, 'to': 3.0, 'grip': 1.0, 'teethe': 1.0, 'and': 2.0, 'for': 1.0, 'fact': 1.0, 'that': 2.0}
Word element => {'highly': 1.0, 'made': 1.0, 'nicely': 1.0, 'a': 1.0, 'with': 1.0, 'this': 2.0, 'is': 4.0, 'have': 2.0, 'ultimate': 1.0, 'my': 1.0, 'triangles': 1.0, 'price': 1.0, 'mirror': 1.0, 'fun': 1.0, 'no': 1.0, 'things': 1.0, 'or': 1.0, 'babies': 1.0, 'loves': 1.0, 'i': 1.0, 'other': 1.0, 'toys': 2.0, 'boy': 1.0, 'popping': 1.0, 'rotated': 1.0, 'for': 2.0, 'had': 1.0, 'all': 1.0, 'as': 1.0, 'to': 1.0, 'how': 1.0, 'thick': 1.0, 'recommended': 1.0, 'toy': 3.0, 'much': 1.0, 'them': 2.0, 'pyramid': 2.0, 'hanging': 1.0, 'the': 6.0, 'ring': 1.0, 'at': 1.0, 'since': 1.0, 'lamaze': 1.0, 'are': 1.0, 'rubber': 1.0, 'spots': 1.0, 'and': 1.0, 'rings': 1.0, 'also': 1.0, 'sound': 1.0, 'on': 2.0, 'make': 1.0, 'idea': 1.0, 'when': 1.0, 'bottom': 1.0, 'of': 1.0, 'there': 1.0}
Word element => {'hand': 1.0, 'his': 1.0, 'putting': 1.0, 'opening': 1.0, 'colors': 1.0, 'he': 1.0, 'has': 1.0, 'up': 1.0, 'and': 3.0, 'my': 1.0, 'baby': 1.0, 'textures': 1.0, '7': 1.0, 'months': 1.0, 'loves': 2.0, 'this': 1.0, 'through': 1.0, 'old': 1.0, 'toy': 1.0, 'different': 1.0, 'makes': 1.0, 'it': 3.0, 'noise': 1.0}
Word element => {'sound': 1.0, 'inside': 1.0, 'there': 1.0, 'their': 1.0, 'at': 1.0, 'let': 1.0, 'for': 1.0, 'your': 1.0, 'time': 1.0, 'they': 1.0, 'mat': 1.0, 'activity': 1.0, '5': 1.0, 'my': 1.0, 'reflection': 1.0, 'son': 1.0, 'from': 1.0, 'little': 1.0, 'one': 1.0, 'hang': 1.0, 'during': 1.0, 'an': 1.0, 'makes': 1.0, 'old': 1.0, 'loves': 1.0, 'good': 2.0, 'month': 1.0, 'it': 2.0, 'and': 2.0, 'moved': 1.0, 'sitting': 1.0, 'can': 1.0, 'pleasant': 1.0, 'plastic': 1.0, 'click': 1.0, 'also': 2.0, 'look': 1.0, 'tummy': 1.0, 'practice': 1.0, 'rattle': 1.0, 'texture': 1.0, 'the': 2.0, 'triangles': 1.0, 'which': 2.0, 'stimulation': 2.0, 'nice': 1.0, 'you': 1.0, 'when': 1.0, 'are': 1.0, 'chewing': 1.0, 'is': 3.0, 'a': 3.0, 'audible': 1.0}
Word element => {'hope': 1.0, 'you': 2.0, 'box': 1.0, 'another': 1.0, 'buying': 1.0, 'planning': 1.0, 'so': 1.0, 'increased': 1.0, 'recently': 1.0, 'had': 1.0, 'fortunately': 1.0, 'solid': 1.0, 'they': 2.0, 'that': 1.0, 'problems': 1.0, 'deep': 1.0, 'term': 1.0, 'say': 1.0, 'my': 5.0, 'about': 1.0, 'several': 1.0, 'nothing': 1.0, 'fingers': 2.0, 'never': 1.0, 'supply': 1.0, 'have': 4.0, 'zipper': 2.0, 'son': 1.0, 'flat': 1.0, '1': 1.0, 'great': 1.0, 'each': 1.0, 'too': 1.0, 'try': 1.0, 'one': 1.0, 'home': 1.0, 'is': 2.0, 'at': 3.0, 'leaking': 1.0, 'good': 1.0, 'outing': 1.0, 'be': 2.0, 'other': 1.0, 'all': 1.0, 'fill': 1.0, 'lucky': 1.0, 'if': 1.0, 'stay': 1.0, 'small': 1.0, 'a': 4.0, '5': 1.0, 'after': 2.0, 'occasionally': 1.0, 'this': 1.0, 'bubbles': 1.0, 'only': 1.0, 'do': 1.0, 'bags': 4.0, 'freeze': 2.0, 'am': 1.0, 'times': 1.0, 'old': 1.0, 'well': 1.0, 'i': 11.0, 'two': 1.0, 'any': 2.0, 'mom': 1.0, 'pump': 3.0, 'easy': 1.0, 'months': 1.0, 'get': 1.0, 'work': 1.0, 'freezer': 1.0, 'but': 2.0, '2': 1.0, 'most': 1.0, 'and': 5.0, 'when': 1.0, 'seal': 1.0, 'between': 1.0, 'pouring': 1.0, 'these': 3.0, 'week': 1.0, 'reading': 1.0, 'careful': 1.0, 'for': 2.0, 'double': 1.0, 'emergency': 1.0, 'reviews': 2.0, 'then': 2.0, 'to': 7.0, 'pretty': 1.0, 'milk': 1.0, 'just': 1.0, 'lansinoh': 1.0, 'cinch': 1.0, 'bag': 2.0, 'the': 8.0, 'of': 2.0, 'right': 1.0, 'way': 1.0, 'with': 2.0, 'line': 2.0, 'rid': 1.0, 'now': 1.0, 'air': 1.0, 'm': 1.0, 'in': 2.0, 'also': 1.0, 'definite': 1.0, 'bad': 2.0, 'are': 3.0, 'lock': 2.0, 'plus': 1.0, 'lay': 1.0, 'them': 3.0, 'standard': 1.0, 'door': 1.0, 'seemed': 1.0, 'store': 1.0, 'amount': 1.0, 'on': 2.0, 'long': 1.0}
Word element => {'return': 1.0, 'will': 1.0, 'very': 1.0, 'about': 1.0, 'worry': 1.0, 'have': 2.0, 'now': 1.0, 'thawing': 1.0, 'upon': 1.0, 'stored': 1.0, 'but': 1.0, 'am': 1.0, 'when': 1.0, 'fine': 1.0, 'were': 2.0, 'realized': 1.0, 'so': 1.0, 'time': 1.0, 'leak': 1.0, 'binder': 1.0, '6': 1.0, 'of': 4.0, 'indeed': 1.0, 'clip': 2.0, 'used': 1.0, 'ounces': 1.0, 'the': 4.0, 'by': 1.0, 'just': 1.0, 'i': 9.0, 'stating': 1.0, 'because': 1.0, 'leaking': 1.0, 'was': 2.0, 'then': 1.0, 'loved': 1.0, 'disappointed': 1.0, 'post': 1.0, 'night': 1.0, 'them': 5.0, 'stock': 1.0, 'producing': 1.0, 'a': 2.0, 'pumped': 1.0, 'middle': 1.0, 'pumping': 2.0, 'comment': 1.0, 'like': 1.0, 'into': 3.0, 'that': 2.0, 'bags': 1.0, 'held': 1.0, 'my': 3.0, 'bed': 1.0, 'medela': 1.0, 'pump': 1.0, 'directly': 1.0, 'they': 2.0, 'would': 1.0, 'new': 1.0, 'each': 1.0, 'try': 1.0, 'much': 1.0, 'milk': 1.0, 'and': 3.0, 'me': 1.0, 'in': 2.0, 'others': 1.0, 'these': 3.0, 'some': 1.0, 'leaked': 2.0, 'to': 5.0, 'as': 1.0, 'all': 2.0, 'over': 1.0}
Word element => {'interested': 1.0, 'keeps': 1.0, 'look': 1.0, 'cute': 1.0, 'tools': 1.0, 'teaching': 1.0, 'great': 1.0, 'inaffectual': 1.0, 'so': 1.0, 'are': 3.0, 'by': 2.0, 'easily': 1.0, 'like': 1.0, 'chunky': 1.0, 'and': 4.0, 'magnets': 1.0, 'do': 1.0, 'more': 1.0, 'is': 1.0, 'there': 1.0, 'grasped': 1.0, 'recommendation': 1.0, 'not': 4.0, 'little': 1.0, 'very': 2.0, 'ordinary': 1.0, 'stackers': 1.0, 'year': 1.0, 'stick': 1.0, 'since': 1.0, 'see': 1.0, 'age': 1.0, 'well': 1.0, 'toy': 1.0, 'about': 1.0, 'actually': 1.0, 'for': 2.0, 'kids': 1.0, 'this': 1.0, 'children': 1.0, 'hands': 1.0, 'the': 2.0, 'these': 3.0, 'different': 1.0, '2': 1.0, 'but': 2.0, 'work': 1.0, 'use': 2.0, 'balance': 1.0, 'them': 3.0, 'my': 2.0, 'magnetism': 1.0, 'i': 2.0, '4': 1.0, 'as': 1.0, 'to': 3.0, 'teach': 1.0, 'toys': 1.0, 'things': 1.0, 'correct': 1.0, 'what': 1.0, 'than': 1.0, 'having': 1.0, 'does': 2.0}
Word element => {'playing': 1.0, 'enjoyed': 1.0, 's': 1.0, 'things': 1.0, 'reflect': 1.0, 'has': 1.0, 'can': 1.0, 'off': 1.0, 'loves': 1.0, 'baby': 1.0, 'plus': 1.0, 'my': 1.0, 'the': 1.0, 'are': 1.0, 'and': 2.0, 'with': 1.0, 'he': 2.0, 'it': 3.0, 'this': 1.0, 'shiny': 1.0, 'cute': 1.0, 'mirrored': 1.0, 'really': 2.0, 'is': 1.0, 'side': 1.0, 'where': 1.0, 'a': 1.0, 'see': 1.0, 'himself': 1.0, 'ends': 1.0}
Word element => {'babies': 1.0, 'teething': 1.0, 'for': 1.0, 'nice': 1.0, 'are': 1.0, 'earlier': 1.0, 'didn': 1.0, 'regret': 1.0, 'and': 1.0, 'only': 1.0, 'parent': 1.0, 'highly': 1.0, 'about': 1.0, 'another': 1.0, 'by': 1.0, 'recommended': 2.0, 'we': 2.0, 'solution': 1.0, 'toothbrush': 1.0, 'that': 1.0, 'were': 1.0, 'our': 2.0, 'also': 1.0, 'whites': 1.0, 't': 1.0, 'these': 2.0, 'the': 2.0, 'make': 1.0, 'a': 1.0, 'know': 1.0, 'not': 1.0, 'spiffies': 1.0, 'fan': 1.0, 'want': 1.0, 'is': 2.0, 'but': 1.0, 'toddler': 1.0, 'still': 1.0, 'to': 1.0, 'stay': 1.0, 'sure': 1.0, 'his': 1.0, 'of': 1.0, 'pearly': 1.0, 'them': 1.0, 'clean': 1.0}
Word element => {'my': 1.0, 'of': 1.0, '2': 1.0, 'to': 1.0, 'gift': 1.0, 'friend': 1.0, 'each': 1.0, 'received': 2.0, 'a': 2.0, 'them': 1.0, 'decided': 1.0, 'from': 1.0, 'as': 1.0, 'rosary': 1.0, 'it': 1.0, 'this': 1.0, 'buy': 1.0, 'i': 3.0, 'home': 1.0, 'one': 1.0, 'for': 2.0, 'beautiful': 1.0, 'while': 1.0, 'they': 1.0, 'their': 1.0, 'were': 1.0, 'sisters': 1.0, 'away': 1.0, 'compliments': 1.0, 'watching': 1.0, 'after': 1.0, 'so': 1.0, 'many': 1.0, 'on': 1.0}
Word element => {'cute': 1.0, 'nearly': 1.0, 'though': 1.0, 'bjorn': 1.0, 'about': 1.0, 'we': 1.0, 'hand': 1.0, 'under': 1.0, 'video': 1.0, 'sling': 3.0, 'head': 2.0, 'even': 1.0, 'his': 3.0, 'newborn': 1.0, 'reaching': 1.0, 'too': 1.0, 'and': 4.0, 'towel': 1.0, 'suggests': 1.0, 'with': 1.0, 'rave': 1.0, 'my': 1.0, 'up': 3.0, 'to': 2.0, 'lbs': 2.0, 'was': 3.0, 'minutes': 1.0, 'store': 1.0, 'inches': 1.0, 'very': 1.0, 'a': 4.0, 's': 3.0, 'birth': 1.0, 'when': 3.0, 'sit': 1.0, 'just': 1.0, 'your': 1.0, 'baby': 2.0, 'never': 1.0, 'be': 1.0, 'until': 1.0, 'really': 1.0, 'have': 1.0, 'far': 1.0, 'he': 5.0, 'few': 1.0, 'this': 2.0, 'old': 1.0, 'distributed': 1.0, 'putting': 1.0, 'i': 2.0, 'etc': 1.0, 'fit': 1.0, 'enough': 2.0, 'do': 1.0, 'hold': 2.0, 'use': 2.0, 'in': 2.0, 'for': 1.0, 'cry': 1.0, 'different': 1.0, 'legs': 1.0, 'months': 1.0, 'position': 1.0, 'scrunched': 1.0, 'd': 1.0, 'after': 1.0, '22': 1.0, 'now': 1.0, 'hip': 1.0, 'away': 1.0, 'that': 2.0, '8': 1.0, 'on': 2.0, 'long': 1.0, 'would': 2.0, 'impedes': 1.0, 'can': 1.0, 'but': 1.0, '9': 1.0, 'him': 2.0, 'it': 5.0, 'bend': 1.0, 'as': 3.0, 'annoying': 1.0, 'side': 1.0, 'big': 2.0, 'arm': 1.0, 'forward': 1.0, 'not': 2.0, 'uncomfortably': 1.0, 'weight': 1.0, 'at': 2.0, 'is': 1.0, 'unevenly': 1.0, 'also': 1.0, 'movement': 1.0, 'the': 9.0, 'of': 1.0, '24': 1.0, 'forget': 1.0, 'wearing': 1.0, 'dishes': 1.0, 'or': 1.0, 'other': 1.0}
Word element => {'ended': 1.0, 'baby': 3.0, 'bjorn': 2.0, 'comfortable': 1.0, 'one': 1.0, 'as': 5.0, 'this': 2.0, 't': 2.0, 'the': 2.0, 'thought': 1.0, 'didn': 1.0, 'hard': 2.0, 'wife': 1.0, 'type': 1.0, 'up': 2.0, 'child': 1.0, 'over': 1.0, 'on': 3.0, 'your': 3.0, 'isn': 1.0, 'weight': 1.0, 'muscles': 1.0, 'different': 1.0, 'specific': 1.0, 'stance': 1.0, 'using': 1.0, 'body': 1.0, 'etc': 1.0, 'both': 1.0, 'although': 1.0, 'long': 1.0, 'does': 1.0, 'it': 1.0, 'she': 2.0, 'much': 2.0, 'end': 1.0, 'my': 1.0, 'preferring': 1.0, 'front': 1.0, 'depends': 1.0, 'backpack': 1.0, 'upper': 1.0, 'are': 1.0, 'periods': 1.0, 'back': 1.0, 'but': 1.0, 'work': 1.0, 'lower': 1.0, 'some': 1.0}
Word element => {'would': 1.0, 'for': 1.0, 'able': 1.0, 'be': 1.0, 'won': 1.0, 'thought': 1.0, 'although': 1.0, 'worth': 1.0, 'well': 1.0, 'nearly': 1.0, 'say': 1.0, 'somewhat': 1.0, 'money': 1.0, 'baby': 1.0, 'my': 2.0, 'outgrowing': 1.0, 'small': 1.0, 't': 1.0, 'the': 2.0, 'and': 3.0, 'yard': 1.0, 'play': 1.0, 'is': 3.0, 'how': 1.0, 'ever': 1.0, 'he': 1.0, 'it': 4.0, 'durable': 1.0, 'use': 1.0, 'already': 1.0, 'sturdy': 1.0, 'easy': 1.0, 'was': 1.0, 'to': 2.0, 'up': 1.0, 'fold': 1.0, 'long': 1.0, 'down': 1.0, 'i': 2.0, 'as': 2.0, 'son': 1.0, 'must': 1.0}
Word element => {'amazon': 1.0, 'prime': 1.0, 'the': 1.0, 'lot': 1.0, 'a': 1.0, 'sevice': 1.0, 'price': 1.0, 'i': 1.0, 'fast': 1.0, 'delivery': 1.0, 'of': 1.0, 'good': 1.0, 'very': 1.0, 'and': 2.0, 'excellent': 1.0, 'product': 1.0, 'service': 1.0, 'recomend': 1.0}
Word element => {'did': 1.0, 'he': 1.0, 'away': 1.0, 'good': 1.0, 'just': 1.0, 'lifesaver': 1.0, 'get': 1.0, 'easy': 1.0, 'solid': 1.0, 'very': 1.0, 'way': 1.0, 'wasn': 1.0, 'boy': 1.0, 'time': 1.0, 'on': 1.0, 'arrived': 1.0, 'from': 2.0, 'were': 1.0, 'that': 1.0, 'was': 3.0, 'wanted': 1.0, 'spot': 1.0, 'had': 1.0, 'stuffed': 1.0, 'it': 3.0, 'this': 2.0, 'first': 1.0, 'there': 1.0, 'of': 1.0, 'one': 3.0, 'for': 2.0, 'traveling': 1.0, 'son': 1.0, 'home': 4.0, 'yard': 2.0, 'animals': 1.0, 'shipped': 1.0, 'mother': 1.0, 'my': 1.0, 'plane': 1.0, 'in': 3.0, 'christmas': 1.0, 'law': 1.0, 't': 1.0, 's': 2.0, 'we': 2.0, 'a': 3.0, 'old': 1.0, 'i': 1.0, 'trip': 1.0, 'brought': 1.0, 'play': 2.0, 'and': 5.0, 'long': 1.0, 'ready': 1.0, 'year': 1.0, 'his': 2.0, 'flimsy': 1.0, 'at': 2.0, 'safe': 1.0, 'blankets': 1.0, 'have': 1.0, 'slept': 1.0, 'secure': 1.0, 'him': 1.0, 'any': 1.0, 'our': 2.0, 'to': 4.0, 'as': 3.0, 'sleep': 1.0}
Word element => {'a': 1.0, 'like': 1.0, 'face': 1.0, 'on': 1.0, 'wants': 1.0, 'baby': 1.0, 'the': 2.0, 'when': 1.0, 'her': 1.0, 'down': 1.0, 'reduce': 1.0, 'to': 2.0, 'hood': 1.0, 'there': 2.0, 'that': 1.0, 'car': 1.0, 'which': 1.0, 'in': 2.0, 'sleeping': 1.0, 'and': 2.0, 'all': 1.0, 'cheap': 1.0, 'settings': 1.0, 'is': 5.0, 'it': 1.0, 'has': 1.0, 'awake': 1.0, 'light': 1.0, 'seats': 1.0, 'sitting': 1.0, 'no': 1.0, 'two': 1.0, 'safe': 1.0, 'recline': 1.0, 'for': 1.0, 'comfortable': 1.0, 'one': 1.0, 'downside': 1.0, 'sleep': 1.0, 'almost': 1.0, 'stroller': 1.0, 'put': 1.0, 'toddler': 1.0, 'simple': 1.0, 'other': 1.0}
Word element => {'well': 1.0, 'ordered': 1.0, 'have': 1.0, 'sets': 1.0, '2nd': 1.0, 'both': 1.0, 'price': 1.0, 'much': 1.0, 'rides': 1.0, 'grandparents': 1.0, 'for': 3.0, 'plush': 1.0, 'that': 1.0, 'out': 1.0, 'her': 1.0, 'seats': 1.0, 'and': 4.0, 'get': 2.0, 'facing': 1.0, 'how': 1.0, 'did': 3.0, 'properly': 1.0, 'this': 4.0, 'research': 1.0, 'she': 2.0, 'it': 2.0, 'car': 3.0, 'husband': 2.0, 'an': 1.0, 'them': 1.0, 'of': 2.0, 'as': 1.0, 'our': 1.0, 'to': 2.0, 'seat': 2.0, 'awesome': 1.0, 'on': 2.0, 'more': 2.0, 'is': 6.0, 'longer': 1.0, 'anticipated': 1.0, 'rear': 1.0, 'take': 1.0, 'safe': 3.0, 'lot': 1.0, 'at': 1.0, 'one': 1.0, 'i': 4.0, 'vehicle': 1.0, 'often': 1.0, 'my': 4.0, 'little': 2.0, 'than': 1.0, 'a': 6.0, 'we': 1.0, 'install': 2.0, 'comfortable': 1.0, 'feel': 1.0, 'which': 1.0, 'like': 1.0, 'easily': 1.0, 'daughter': 1.0, 'deal': 2.0, 'the': 2.0, 'moment': 1.0, 'in': 3.0, 'but': 3.0, 'can': 1.0}
Word element => {'child': 1.0, 'harness': 1.0, 'very': 1.0, 'down': 1.0, 'tighten': 2.0, 'strength': 1.0, 'put': 1.0, 'rear': 1.0, 'level': 1.0, 'is': 3.0, 'takes': 1.0, 'fine': 1.0, 'it': 8.0, 'the': 8.0, 'not': 1.0, 'difficult': 1.0, 'middle': 1.0, 'facing': 1.0, 'cosco': 1.0, 'in': 3.0, 'was': 1.0, 'week': 1.0, 'car': 2.0, 'because': 1.0, 'installed': 2.0, 'camry': 1.0, 'couldn': 1.0, 'and': 1.0, 'noodle': 1.0, 'seniors': 1.0, 'front': 1.0, 'use': 3.0, 'had': 3.0, 'purchased': 1.0, 'grandma': 1.0, 'allow': 1.0, 'movement': 1.0, 'for': 2.0, 'meant': 1.0, 'toyota': 1.0, 'scenera': 1.0, 'which': 1.0, 'latch': 1.0, 'system': 1.0, 'that': 1.0, 'seat': 4.0, 'to': 6.0, 'ourselves': 1.0, 'as': 1.0, 't': 1.0, 'a': 3.0, 's': 1.0, 'we': 6.0, 'could': 1.0, 'have': 1.0, 'once': 2.0, 'of': 1.0}
Word element => {'the': 1.0, 'to': 1.0, 'great': 1.0, 'it': 1.0, 'installation': 1.0, 'a': 1.0, 'carry': 1.0, 'seat': 2.0, 'price': 1.0, 'light': 1.0, 'spare': 1.0, 'use': 1.0, 'easy': 2.0, 'for': 2.0, 'and': 1.0, 'as': 1.0, 'travel': 1.0}
Word element => {'car': 1.0, 'this': 1.0, 'one': 1.0, '2nd': 2.0, 'right': 1.0, 'like': 2.0, 'thin': 1.0, 'frame': 1.0, 'was': 1.0, 'to': 1.0, 'so': 1.0, '1': 1.0, 'and': 1.0, 'getting': 1.0, 'my': 1.0, 're': 2.0, 'with': 1.0, 'it': 3.0, 'the': 4.0, 'deal': 1.0, 'feels': 1.0, 'is': 1.0, 'sitting': 1.0, 's': 1.0, 'a': 3.0, 'year': 1.0, 'little': 1.0, 'very': 1.0, 'old': 1.0, 'i': 2.0, 'likes': 1.0, 'wide': 1.0, 'material': 1.0, 'no': 1.0, 'installing': 1.0, 'easy': 2.0, 'cushion': 1.0, 'straps': 1.0, 'plastic': 1.0, 'adjust': 1.0, 'they': 1.0, 'are': 1.0, 'rather': 1.0, 'for': 2.0, 'price': 1.0, 'paying': 1.0, 'on': 1.0, 'think': 1.0, 'good': 1.0, 'you': 2.0, 'am': 1.0}
Word element => {'44': 1.0, 'for': 1.0, 'mart': 1.0, 'same': 1.0, 'you': 1.0, 'but': 1.0, 'i': 1.0, 'about': 1.0, '00': 1.0, 'can': 1.0, 'it': 1.0, 'love': 2.0, 'seat': 2.0, 'find': 1.0, 'the': 1.0, 'everything': 1.0, 'this': 2.0, 'care': 1.0, 'fabric': 1.0, 'and': 1.0, 'wal': 1.0, 'at': 1.0, 'else': 1.0}
Word element => {'there': 1.0, 'out': 1.0, 'safest': 1.0, 'the': 1.0, 'one': 1.0, 'seats': 1.0, 'and': 1.0, 'price': 1.0, 'a': 1.0, 'of': 1.0, 'seat': 1.0, 'fine': 1.0, 'is': 2.0, 'well': 1.0, 'great': 1.0, 'works': 2.0, 'it': 3.0, 'isn': 1.0, 'this': 1.0, 't': 1.0, 'perfect': 1.0, 'but': 1.0}
Word element => {'comfort': 1.0, 'quality': 1.0, 'vast': 1.0, 'but': 1.0, 'more': 1.0, 'for': 1.0, 'sale': 1.0, 'you': 1.0, 'getting': 1.0, 're': 1.0, 'baby': 1.0, 'install': 1.0, 'padded': 2.0, 'comfortable': 1.0, 'head': 2.0, '30': 1.0, 'royal': 1.0, 'visit': 1.0, 'normal': 1.0, 'thin': 1.0, 'seems': 1.0, 'serve': 1.0, 'pain': 1.0, 'this': 1.0, 'on': 2.0, 'improvement': 1.0, 'safety': 2.0, 'even': 1.0, 'wouldn': 1.0, 'actually': 1.0, 'and': 6.0, 'plastic': 1.0, 'he': 1.0, 'lot': 1.0, 'at': 2.0, 'is': 5.0, 'second': 1.0, 'hazard': 1.0, 'a': 8.0, 't': 1.0, 'high': 1.0, 'to': 3.0, 'am': 1.0, 'when': 1.0, 'while': 1.0, 'use': 2.0, 'purchased': 1.0, 'grandma': 2.0, 'passenger': 1.0, 'ratings': 1.0, 'well': 2.0, 'i': 3.0, 'collision': 1.0, 'very': 4.0, 'little': 1.0, 'does': 1.0, 'since': 1.0, 'find': 1.0, 'flimsy': 1.0, 'surprised': 1.0, 'house': 1.0, 'it': 3.0, 'its': 1.0, 'much': 1.0, 'maxi': 2.0, 'can': 1.0, 'so': 4.0, 'time': 1.0, 'only': 1.0, 'function': 1.0, 'have': 1.0, 'not': 1.0, 'forward': 2.0, 'asleep': 1.0, 'which': 4.0, 'car': 1.0, 'consider': 1.0, 'if': 1.0, 'his': 2.0, 'neck': 1.0, 'floppy': 1.0, 'seat': 5.0, 'in': 3.0, 'that': 2.0, 'always': 1.0, 'next': 1.0, 'during': 1.0, 'lead': 1.0, 'damage': 1.0, 'bulky': 1.0, 'takes': 1.0, 'the': 7.0, 'massive': 1.0, 'of': 1.0, 'we': 3.0, 'leg': 1.0, 'spinal': 1.0, 'room': 2.0, 'as': 1.0, 'falls': 3.0, 'priori': 2.0, 'my': 1.0, 'mother': 1.0, 'suv': 1.0, 'gets': 1.0, 'by': 1.0, 'home': 1.0, 's': 3.0, 'cosi': 2.0, 'get': 1.0, 'tons': 1.0, 'better': 1.0, 'compact': 1.0}
Word element => {'much': 1.0, 'cost': 1.0, 'should': 1.0, 'alone': 1.0, 'that': 1.0, 'on': 1.0, 'worth': 1.0, 'take': 1.0, 'they': 1.0, 'but': 1.0, 'around': 1.0, 'is': 4.0, 'padding': 1.0, 'rear': 1.0, 'with': 1.0, 'this': 2.0, 'the': 3.0, '20': 1.0, 'paid': 1.0, '39': 1.0, 'nanny': 1.0, '18': 1.0, 'backup': 1.0, 'old': 1.0, 'are': 1.0, 're': 1.0, 'using': 1.0, 'for': 2.0, 'comfortable': 1.0, 'little': 1.0, 'very': 1.0, 'we': 4.0, 's': 2.0, 'a': 3.0, 'going': 1.0, 'sparse': 1.0, 'when': 1.0, 'daughter': 1.0, 'amazon': 1.0, 'use': 1.0, 'travel': 1.0, 'short': 1.0, 'and': 1.0, 'highly': 1.0, 'rated': 1.0, 'in': 2.0, 'lightweight': 1.0, 'crash': 1.0, 'car': 1.0, 'tests': 1.0, 'seat': 1.0, 'to': 1.0, 'as': 1.0, 'our': 1.0, 'shipping': 1.0, 'facing': 1.0, 'it': 3.0, 'month': 1.0, 'she': 1.0, 'lb': 1.0, 'trips': 1.0}
Word element => {'for': 1.0, 'nice': 1.0, 'very': 1.0, 'needing': 1.0, 'travel': 2.0, 'and': 1.0, 'on': 1.0, 'purchased': 1.0, 'to': 4.0, 'was': 2.0, 'carseat': 2.0, 'would': 1.0, 'with': 1.0, 'it': 1.0, 'only': 1.0, 'this': 2.0, 'the': 1.0, 'great': 1.0, 'lightweight': 1.0, 'take': 1.0, 'install': 1.0, 'anyone': 1.0, 'a': 2.0, 'price': 2.0, 'i': 1.0, 'easy': 1.0, 'recommend': 1.0, 'airline': 1.0, 'seat': 2.0}
Word element => {'it': 3.0, 'functions': 1.0, 'over': 1.0, 'car': 1.0, 'as': 1.0, 'thin': 1.0, 'a': 2.0, 'seat': 1.0, 'with': 1.0, 'is': 2.0, 'not': 1.0, 'plastic': 1.0, 'but': 1.0, 'cover': 1.0, 'comfortable': 1.0, 'hard': 1.0}
Word element => {'appreciate': 1.0, 'safe': 1.0, 'pain': 1.0, 'cosco': 1.0, 'eventually': 1.0, 'discomfort': 1.0, 'keeps': 1.0, 'any': 1.0, 'appeared': 1.0, 'he': 1.0, 'installs': 1.0, 'myself': 1.0, 'jinxed': 1.0, 'overall': 1.0, 'whiny': 1.0, 'just': 1.0, 'might': 1.0, 'lack': 1.0, 'about': 1.0, 'complain': 1.0, 'people': 1.0, 'home': 1.0, 'fussy': 1.0, 'case': 1.0, 'items': 1.0, 'extra': 1.0, 'which': 1.0, 'now': 1.0, 'air': 1.0, 'wheels': 1.0, 'totewith': 1.0, 'asafefit': 1.0, 'anytime': 1.0, 'do': 1.0, 'want': 1.0, 'think': 1.0, 'process': 1.0, 'birthing': 1.0, 'compared': 1.0, 'grandparents': 1.0, 'part': 1.0, 'install': 1.0, 'clip': 1.0, 'vehicles': 1.0, 'relative': 1.0, 'no': 1.0, 'middle': 2.0, 'has': 1.0, 'cars': 1.0, 'large': 1.0, 'even': 2.0, 'found': 1.0, 'installed': 1.0, 's': 3.0, 'especially': 1.0, 'where': 1.0, 'never': 2.0, 'seatback': 1.0, 'from': 1.0, 'away': 1.0, 'out': 1.0, 'back': 1.0, 'locking': 1.0, 'headache': 1.0, 'correctly': 1.0, 'up': 2.0, 'when': 1.0, 'sit': 1.0, 'of': 3.0, 'the': 20.0, 'upgrade': 1.0, 'zone': 1.0, 'truck': 1.0, 'system': 2.0, 'travel': 3.0, 'use': 1.0, 'instructions': 1.0, 'it': 8.0, 'felt': 1.0, 'graco': 2.0, 'caused': 1.0, 'used': 3.0, 'ideal': 1.0, 'we': 6.0, 'core': 1.0, 'who': 1.0, 'vehicle': 2.0, 'me': 1.0, 'my': 3.0, 'properly': 1.0, 'tight': 1.0, 'soon': 1.0, 'convertible': 2.0, 'had': 3.0, 'twisted': 1.0, 'isn': 1.0, 'this': 3.0, 'son': 2.0, 'but': 2.0, 'rolled': 2.0, 'as': 2.0, 'to': 11.0, 'our': 7.0, 'm': 1.0, 'in': 12.0, 'seat': 12.0, 'and': 9.0, 'so': 1.0, 'can': 1.0, 'lightweight': 1.0, 'strength': 1.0, 'was': 2.0, 'more': 1.0, 'babies': 1.0, 'husband': 1.0, 'again': 1.0, 'car': 6.0, 'for': 5.0, 'makes': 1.0, 'snugride': 1.0, 'kid': 1.0, 'finally': 1.0, 'traveling': 1.0, 'things': 1.0, 'you': 4.0, 't': 1.0, 'fit': 2.0, 'spare': 1.0, 'enter': 1.0, 'second': 1.0, 'obviously': 1.0, 'not': 2.0, 'i': 5.0, 'well': 1.0, 'facing': 1.0, 'while': 1.0, 'purchased': 1.0, 'carried': 1.0, 'make': 1.0, 'on': 1.0, 'around': 1.0, 'sits': 1.0, 'is': 5.0, 'nonetheless': 1.0, 'caught': 1.0, 'with': 2.0, 'big': 1.0, 'arm': 1.0, 'time': 1.0, 'lowery': 1.0, 'main': 1.0, 'background': 1.0, '65': 1.0, 'britax': 2.0, 'are': 2.0, 'blanket': 1.0, 'marathon': 1.0, 'tricky': 1.0, 'be': 2.0, 'onyx': 1.0, 'latch': 3.0, 'or': 2.0, 'nice': 1.0, 'little': 1.0, 'that': 1.0, 'because': 3.0, 'they': 1.0, 'padding': 1.0, 'attached': 1.0, 'if': 1.0, 'follow': 1.0, 'greatest': 1.0, 'one': 3.0, 'rear': 2.0, 'store': 1.0, 'thread': 2.0, 'sure': 2.0, 'get': 2.0, 'anything': 1.0, 'should': 1.0, 'using': 1.0, 'scoop': 1.0, 'position': 2.0, 'scenera': 1.0, 'passage': 1.0, 'must': 3.0, 'have': 4.0, 'a': 11.0, 'small': 1.0, 'several': 1.0, 'towels': 1.0}
Word element => {'good': 1.0, 'paid': 1.0, 'their': 1.0, 'cause': 1.0, 'legs': 2.0, 'pulling': 1.0, 'by': 1.0, 'out': 1.0, 'so': 1.0, 'connected': 1.0, 'how': 1.0, 'realize': 1.0, 'you': 2.0, 'if': 1.0, 'tight': 1.0, 'both': 1.0, 'get': 1.0, 'hard': 2.0, 'like': 1.0, 'complain': 1.0, 'straps': 2.0, 'parents': 1.0, 'did': 1.0, 'need': 1.0, 'near': 1.0, 'nice': 1.0, 'things': 1.0, 'have': 3.0, 'would': 1.0, 'standards': 1.0, 'think': 3.0, 'or': 1.0, 'don': 1.0, 'meet': 1.0, 'europe': 1.0, 'feature': 1.0, 'two': 1.0, 'i': 6.0, 'about': 1.0, 'positions': 1.0, 'even': 1.0, 'got': 1.0, 'safety': 1.0, 'has': 1.0, 'because': 3.0, 'heard': 1.0, 'not': 2.0, 'rear': 1.0, 'ones': 1.0, 'are': 1.0, 'normal': 1.0, 'all': 4.0, 'seat': 4.0, 'to': 3.0, 'recline': 1.0, 'this': 3.0, 'american': 1.0, 'it': 10.0, 'reclined': 1.0, 'can': 1.0, 'but': 4.0, 'doesn': 1.0, 'forward': 1.0, 's': 3.0, 'we': 1.0, 't': 2.0, 'a': 5.0, 'the': 4.0, 'deal': 1.0, 'that': 2.0, 'breaker': 1.0, 'still': 1.0, 'under': 1.0, 'facing': 2.0, 'more': 1.0, 'is': 2.0, 'in': 2.0, 'said': 1.0, 'for': 1.0, 'connects': 1.0, 'some': 1.0, 'rides': 1.0, 'long': 1.0, 'car': 3.0}
Word element => {'hope': 1.0, 'purchase': 1.0, 'box': 1.0, 'say': 1.0, 'needless': 1.0, 'really': 1.0, 'reports': 1.0, 'reviews': 2.0, 'amazon': 2.0, 'price': 1.0, 'bought': 1.0, 'alone': 1.0, 'consumer': 1.0, 'safe': 1.0, 'am': 1.0, 'tab': 1.0, 'release': 1.0, 'down': 1.0, 'holding': 1.0, 'even': 1.0, 'up': 1.0, 'pressed': 1.0, 'being': 1.0, 'cheaper': 1.0, 'perhaps': 1.0, 'back': 3.0, 'most': 2.0, 'like': 1.0, 'front': 2.0, 'mechanism': 1.0, 'all': 1.0, 'secured': 1.0, 'literally': 1.0, 'into': 1.0, 'within': 1.0, 'problem': 2.0, 'system': 1.0, 'things': 1.0, 'able': 1.0, 'rear': 1.0, 'weight': 1.0, 'latch': 1.0, 'size': 1.0, 'against': 1.0, 'to': 10.0, 'as': 3.0, 'disappointed': 1.0, 'our': 2.0, 'importantly': 1.0, 'least': 1.0, 'days': 1.0, 'minimal': 1.0, 'while': 1.0, 'facing': 2.0, 'but': 2.0, '2': 1.0, 't': 3.0, 'a': 4.0, 'wife': 1.0, 'let': 1.0, 'moderate': 1.0, 'driving': 1.0, 'about': 2.0, 'seat': 9.0, 'in': 4.0, 'inch': 1.0, 'and': 6.0, 'at': 2.0, 'is': 4.0, 'level': 1.0, 'more': 1.0, 'wrong': 1.0, 'my': 4.0, '1': 1.0, 'any': 1.0, 'feel': 2.0, 'for': 3.0, 'weigh': 1.0, 'that': 2.0, 'use': 1.0, 'her': 5.0, 'now': 1.0, 'triumph': 1.0, 'getting': 1.0, 'thinking': 1.0, '4': 1.0, 'sturdy': 1.0, 'they': 4.0, 'kneeling': 1.0, 'girls': 1.0, 'car': 5.0, 'seats': 4.0, 's': 2.0, 'advance': 1.0, 'transporting': 1.0, 'secondary': 1.0, '3': 1.0, 'surprisingly': 1.0, 'older': 1.0, 'ordered': 1.0, 'didn': 3.0, 'of': 3.0, 'the': 17.0, 'this': 1.0, 'few': 2.0, 'tightening': 3.0, 'these': 3.0, 'evenflo': 1.0, 'younger': 1.0, 'buy': 1.0, 'be': 3.0, 'are': 1.0, 'first': 1.0, 'see': 1.0, 'off': 1.0, 'above': 1.0, 'enough': 3.0, '205': 1.0, 'was': 11.0, 'lbs': 1.0, 'allowance': 1.0, 'when': 2.0, 'on': 3.0, 'i': 12.0, 'daughters': 1.0, 'not': 2.0, 'forward': 1.0, 'thought': 1.0, 'it': 6.0, 'she': 2.0, 'absolutely': 1.0, 'went': 1.0, 'impossible': 2.0, 'sufficient': 2.0, 'tighten': 4.0, 'helps': 1.0, '5': 1.0, 'inches': 1.0, 'distance': 1.0, 'nice': 1.0, 'little': 1.0, 'based': 1.0, 'which': 2.0, 'good': 1.0, 'side': 2.0, 'much': 1.0, 'blocks': 1.0, 'than': 1.0, 'came': 1.0, 'boy': 1.0, 'would': 4.0, 'adequate': 1.0, 'second': 1.0, 'truly': 1.0, 'daughter': 1.0, '8': 1.0, 'moved': 1.0, 'months': 1.0, 'old': 1.0, 'average': 1.0}
Word element => {'located': 1.0, 'brittax': 1.0, 'other': 1.0, 'did': 1.0, 'use': 1.0, 'carseat': 2.0, 'main': 1.0, 'well': 1.0, 'so': 2.0, 'time': 1.0, 'not': 1.0, 'me': 1.0, 'just': 1.0, 'if': 2.0, 'see': 1.0, 'try': 1.0, 'friend': 1.0, 'is': 7.0, 'rear': 1.0, 'second': 1.0, 'every': 1.0, 'really': 1.0, 'of': 1.0, 'strap': 2.0, 'in': 1.0, 'buckle': 1.0, 'problems': 3.0, 'very': 2.0, 'low': 1.0, 'wouldn': 1.0, 'even': 1.0, 'recommend': 1.0, 'was': 2.0, 'fingers': 1.0, 'location': 1.0, 'had': 2.0, 'position': 1.0, 'i': 8.0, 'two': 1.0, 'happy': 1.0, 'my': 3.0, 'with': 2.0, 'higher': 1.0, 'she': 1.0, 'it': 6.0, 'hard': 3.0, 'release': 3.0, 'this': 1.0, 'but': 3.0, 'have': 4.0, 'a': 2.0, 't': 5.0, 'price': 1.0, 'up': 1.0, 'don': 4.0, 'into': 1.0, 'any': 1.0, 'as': 1.0, 'to': 4.0, 'seat': 1.0, 'facing': 1.0, 'difficult': 1.0, 'depressing': 1.0, 'day': 1.0, 'insanely': 1.0, 'too': 1.0, 'and': 4.0, 'the': 8.0, 'reach': 1.0, 'strong': 1.0, 'your': 1.0, 'finger': 1.0, 'button': 3.0, 'major': 1.0, 'depress': 2.0}
Word element => {'products': 1.0, 'cosco': 1.0, 'with': 1.0, 'done': 1.0, 'm': 1.0, 'push': 1.0, '2': 1.0, '5': 1.0, 'designed': 1.0, 'stroller': 1.0, 'between': 1.0, 'seemingly': 1.0, 'better': 1.0, 'get': 1.0, 'somehow': 1.0, 'instead': 1.0, 'just': 1.0, 'have': 1.0, 'sincerely': 1.0, 'under': 1.0, 'serious': 1.0, 'in': 1.0, 'a': 2.0, 'we': 1.0, 'enough': 1.0, 'around': 1.0, 'is': 3.0, 'that': 5.0, 'someone': 1.0, 'am': 1.0, 'infants': 1.0, 'the': 1.0, 'and': 4.0, 'old': 1.0, 'thinking': 1.0, 'i': 6.0, 'if': 1.0, 'thrown': 1.0, 'does': 1.0, 'his': 1.0, 'newborns': 1.0, 'especially': 1.0, 'lb': 1.0, 'bought': 2.0, 'be': 2.0, 'my': 2.0, 'period': 1.0, 'time': 2.0, 'car': 3.0, 'me': 1.0, 'approved': 1.0, 'not': 1.0, '6': 1.0, 'of': 3.0, 'for': 5.0, '18': 1.0, 'it': 2.0, 'month': 1.0, 'wish': 1.0, 'wreck': 1.0, 'this': 4.0, 'recline': 1.0, 'safe': 1.0, 'over': 1.0, 'child': 1.0, 'nearly': 1.0, 'feel': 1.0, 'seat': 3.0, 'to': 4.0, 'any': 1.0, 'were': 1.0, 'shudder': 1.0, 'think': 1.0, 'returned': 1.0, 'way': 1.0, 'head': 1.0, 'neck': 1.0, 'astonished': 1.0, 'would': 3.0}
Word element => {'purchased': 1.0, 'actually': 1.0, 've': 1.0, 'i': 1.0, 'light': 1.0, 'two': 1.0, 'safe': 1.0, 'super': 1.0, 'for': 1.0, 'one': 1.0, 'does': 1.0, 'bought': 1.0, 'workhorse': 1.0, 'the': 1.0, 'a': 1.0, 'inexpensive': 1.0, 'cushioning': 1.0, 'is': 1.0, 'others': 1.0, 'car': 2.0, 'have': 1.0, 'grandparents': 1.0, 'home': 1.0, 'and': 2.0, 'as': 2.0, 'while': 1.0, 'this': 1.0, 'it': 1.0, 'seat': 2.0, 'not': 1.0, 'much': 1.0, 'its': 1.0}
Word element => {'run': 1.0, 'baby': 1.0, 'this': 1.0, 'ordered': 1.0, 'cute': 1.0, 'mustang': 1.0, 'up': 1.0, 'lives': 1.0, 'glad': 2.0, 'm': 2.0, 'planning': 1.0, 'one': 1.0, 'love': 1.0, 'i': 4.0, 'to': 4.0, 'well': 1.0, 'the': 3.0, 'nicely': 1.0, 'seems': 1.0, 'in': 1.0, 'really': 1.0, 'very': 1.0, 'and': 1.0, 'reputation': 1.0, 'like': 1.0, 'back': 1.0, 'ready': 1.0, 'forward': 1.0, 'of': 1.0, 'fits': 1.0, 'my': 1.0, 're': 1.0, 'colors': 1.0, 'though': 1.0, 'not': 1.0, 'use': 1.0, 'regularly': 1.0, 'until': 1.0, 'think': 1.0, 'it': 4.0, 'she': 1.0, 'facing': 1.0, 'we': 3.0, 'a': 1.0, 's': 1.0, 'sit': 1.0, 'its': 1.0, 'works': 1.0, 'trial': 1.0, 'did': 1.0}
Word element => {'perfect': 1.0, 'trips': 1.0, 'car': 1.0, 'but': 1.0, 'second': 1.0, 'padding': 1.0, 'is': 1.0, 's': 1.0, 'easy': 1.0, 'or': 1.0, 'ship': 1.0, 'to': 3.0, 'grama': 1.0, 'we': 1.0, 'for': 2.0, 'that': 1.0, 'our': 2.0, 'a': 2.0, 'trip': 1.0, 'seat': 1.0, 'purchased': 1.0, 'then': 1.0, 'this': 1.0, 'shorter': 1.0, 'install': 1.0, 'and': 1.0, 'adjust': 1.0, 'less': 2.0, 'the': 1.0, 'cost': 1.0, 'plus': 1.0, 'britax': 2.0, 'there': 1.0}
Word element => {'her': 1.0, 'bother': 1.0, 'airline': 1.0, 'trip': 1.0, 'rental': 1.0, 'is': 2.0, 'padding': 1.0, 'on': 1.0, 'with': 1.0, 'it': 2.0, 'this': 1.0, 'us': 1.0, 'daughter': 1.0, 'decided': 1.0, 'seem': 1.0, 'cars': 1.0, 'seat': 2.0, 'as': 1.0, 'to': 4.0, 'husband': 1.0, 'purchased': 1.0, 'car': 1.0, 'for': 3.0, 'purchase': 1.0, 'my': 2.0, 'also': 1.0, 'take': 1.0, 'light': 1.0, 'great': 1.0, 'comfortable': 1.0, 'install': 1.0, 'seats': 1.0, 'approved': 1.0, 'isn': 1.0, 'the': 2.0, 'we': 2.0, 'a': 4.0, 's': 1.0, 't': 2.0, 'carry': 1.0, 'easy': 1.0, 'since': 1.0, 'lot': 1.0, 'in': 1.0, 'itself': 1.0, 'plane': 1.0, 'and': 1.0, 'enough': 1.0, 'there': 1.0, 'of': 1.0, 'money': 1.0, 'but': 1.0, 'didn': 1.0}
Word element => {'daughter': 1.0, 'the': 1.0, 'worked': 1.0, 'from': 1.0, 'this': 1.0, '22': 1.0, 'home': 1.0, 'easy': 1.0, 'in': 1.0, 'outdoor': 1.0, 'i': 1.0, 'old': 1.0, 'a': 2.0, 's': 1.0, '1000': 1.0, 'bought': 1.0, 'be': 1.0, 'carseat': 2.0, 'grandma': 1.0, 'at': 1.0, 'safe': 1.0, 'that': 1.0, 'temperatures': 1.0, 'out': 1.0, 'use': 1.0, 'miles': 1.0, 'house': 1.0, 'secure': 1.0, 'standard': 1.0, 'size': 1.0, 'sedan': 1.0, 'is': 1.0, 'it': 2.0, 'month': 1.0, 'and': 2.0, 'withstood': 1.0, 'great': 1.0, 'install': 1.0, 'seemed': 1.0, 'to': 3.0, 'our': 1.0, 'seat': 1.0, 'high': 1.0, 'fits': 1.0, 'my': 1.0, 'for': 1.0, '18': 1.0, 'lb': 1.0}
Word element => {'luck': 1.0, 'if': 1.0, 'safely': 1.0, 'expletives': 1.0, 'lots': 1.0, 'far': 1.0, 'an': 2.0, 'about': 1.0, 'tech': 1.0, 'bought': 1.0, 'checked': 1.0, 'purchase': 1.0, 'and': 6.0, 'get': 1.0, 'you': 2.0, 'when': 1.0, 'am': 1.0, 'we': 1.0, 'next': 1.0, 'installed': 1.0, 'installation': 1.0, 'that': 2.0, 's': 1.0, 'secondary': 1.0, 'many': 1.0, 'it': 3.0, 'this': 5.0, 'carseats': 1.0, 'kids': 1.0, 'once': 1.0, 'seat': 2.0, 'as': 1.0, 'to': 4.0, 'after': 1.0, 'car': 2.0, 'impossible': 2.0, 'of': 2.0, 'the': 3.0, 'sunshine': 1.0, 'i': 4.0, 'by': 1.0, 'facing': 1.0, 'son': 1.0, 'will': 1.0, 'travel': 1.0, 'front': 1.0, 'broken': 1.0, 'carseat': 5.0, 'used': 1.0, 'for': 2.0, 'expensive': 1.0, 'was': 1.0, 'have': 1.0, 'extra': 1.0, 'time': 2.0, 'be': 2.0, 'patience': 2.0, 'found': 1.0, 'however': 1.0, 'are': 2.0, 'britax': 1.0, 'worth': 1.0, 'rear': 1.0, 'one': 1.0, 'too': 1.0, 'lot': 1.0, 'at': 1.0, 'may': 1.0, 'my': 1.0, 'me': 1.0, 'several': 1.0, 've': 1.0, 'hour': 1.0, 'opted': 1.0, '2': 1.0, 'so': 1.0, 'can': 1.0, 'but': 1.0, 'significantly': 1.0, 'more': 1.0, 'nails': 1.0, 'marathon': 1.0, 'xlst': 1.0, 'over': 1.0, 'a': 4.0, 'confident': 1.0, 'correctly': 1.0, 'age': 2.0, '3': 1.0, 'perhaps': 1.0, 'face': 1.0, 'install': 1.0, 'easier': 1.0, 'ways': 1.0, 'off': 1.0, 'purpose': 1.0, 'from': 1.0, 'good': 1.0}
Word element => {'do': 1.0, 'expected': 1.0, 'brighter': 1.0, 'seems': 1.0, 'seat': 1.0, 'infant': 1.0, 'son': 1.0, 'cosco': 1.0, 'is': 1.0, 'padding': 1.0, 'a': 1.0, 'like': 1.0, 'my': 2.0, 'replace': 1.0, 'more': 1.0, 'the': 1.0, 'bought': 1.0, 'this': 1.0, 'it': 3.0, 'will': 1.0, 'but': 2.0, 'green': 1.0, 'i': 2.0, 'than': 1.0, 'wish': 1.0, 'to': 2.0, 'had': 1.0, 'little': 1.0}
Word element => {'worth': 1.0, 'britax': 1.0, 'with': 1.0, 'isn': 1.0, 'car': 3.0, 'station': 1.0, 'out': 1.0, 'facing': 1.0, 'pretty': 1.0, 'hang': 1.0, 'installing': 1.0, 'this': 2.0, 'it': 5.0, 'is': 4.0, 'rear': 1.0, 'you': 1.0, 'the': 6.0, 'great': 2.0, 's': 1.0, 'we': 4.0, 'a': 4.0, 't': 1.0, 'heavy': 1.0, 'carseat': 2.0, 'for': 2.0, 'done': 1.0, 'do': 1.0, 'use': 1.0, 'travel': 2.0, 'seat': 1.0, 'any': 1.0, 'to': 4.0, 'of': 2.0, 'once': 1.0, 'second': 1.0, 'expect': 1.0, 'and': 4.0, 'too': 1.0, 'that': 1.0, 'installation': 1.0, 'everything': 1.0, 'correctly': 1.0, 'little': 1.0, 'tricky': 1.0, 're': 1.0, 'taking': 1.0, 'in': 2.0, 'fire': 1.0, 'would': 1.0, 'make': 1.0, 'easy': 1.0, 'get': 2.0, 'sure': 1.0, 'have': 2.0, 'money': 1.0, 'most': 1.0, 'but': 2.0, 'i': 1.0}
Word element => {'reports': 1.0, 'consumer': 1.0, 'top': 1.0, 'while': 1.0, 'loved': 1.0, 'enough': 1.0, 'comfortable': 1.0, 'cause': 1.0, 'which': 1.0, 'movement': 1.0, 'excessive': 1.0, 'injury': 1.0, 'years': 1.0, 'equipment': 1.0, 'used': 1.0, 'has': 1.0, 'who': 1.0, 'someone': 1.0, 'as': 1.0, 'also': 1.0, 'padding': 3.0, 'note': 1.0, 'solid': 1.0, 'racing': 1.0, 'rock': 1.0, 'do': 1.0, 'lack': 2.0, 'once': 1.0, 'repeat': 1.0, 'more': 3.0, 'a': 4.0, 'test': 1.0, 'helps': 1.0, 'unit': 2.0, 'cheap': 1.0, 'like': 1.0, 'maintaining': 1.0, 'will': 1.0, 'is': 8.0, 'holds': 1.0, 'reason': 1.0, 'design': 1.0, 'loose': 2.0, 'same': 1.0, 'if': 2.0, 'i': 1.0, 'some': 1.0, 'safety': 5.0, 'products': 1.0, 'cosco': 1.0, 'tightener': 1.0, 'tight': 1.0, 'strap': 3.0, 's': 5.0, 'tad': 1.0, 'up': 1.0, 'than': 1.0, 'brands': 1.0, 'not': 2.0, 'use': 1.0, 'most': 1.0, 'can': 3.0, 'better': 1.0, 'they': 3.0, 'purposely': 1.0, 'and': 4.0, 'getting': 1.0, 'why': 1.0, 'seats': 1.0, 'knee': 1.0, 'install': 1.0, 'pointers': 1.0, '200': 1.0, 'expensive': 1.0, 'come': 1.0, 'where': 1.0, 'on': 4.0, 'make': 2.0, 'therefore': 1.0, 'bad': 1.0, 'first': 1.0, 'this': 5.0, 'tighten': 3.0, 've': 1.0, 'down': 1.0, 'perfectly': 2.0, 'loosen': 1.0, 'system': 1.0, 'here': 2.0, 'dorel': 1.0, 'be': 2.0, 'too': 1.0, 'ones': 1.0, 'your': 1.0, 'idea': 1.0, 'push': 1.0, 'you': 5.0, 'must': 1.0, 'the': 22.0, 'of': 4.0, 'that': 1.0, 'seen': 1.0, 'case': 1.0, 'about': 1.0, 'odds': 1.0, 'car': 2.0, 'mounting': 1.0, 'pulling': 1.0, 'extra': 1.0, 'great': 1.0, 'nil': 1.0, 'it': 9.0, 'all': 1.0, 'other': 1.0, 'an': 1.0, 'seat': 4.0, 'in': 1.0, 'to': 8.0, 'pulled': 1.0, 'straight': 2.0, 'length': 1.0, 'unhook': 1.0, 'clip': 1.0, 'button': 1.0, 'fails': 1.0, 'feature': 2.0, 'or': 1.0, 'need': 2.0, 'tip': 1.0, 'over': 1.0, 'measure': 1.0, 'unbuckled': 1.0, 'by': 2.0, 'pull': 1.0, 'taking': 1.0, 'point': 1.0, 'take': 1.0, 'then': 3.0, 'allows': 1.0, 'with': 1.0, 'buckle': 1.0, 'even': 1.0, 'shorten': 1.0, 'get': 2.0}
Word element => {'rides': 1.0, 'he': 1.0, 'in': 2.0, 'baby': 1.0, 'use': 2.0, 'just': 1.0, 'i': 1.0, 'cushioning': 1.0, 'so': 1.0, 'the': 3.0, 'and': 1.0, 'that': 1.0, 'does': 1.0, 'low': 1.0, 'since': 1.0, 'trips': 1.0, 'it': 8.0, 'this': 1.0, 'small': 2.0, 'have': 2.0, 'due': 1.0, 'need': 1.0, 'car': 5.0, 'more': 2.0, 'is': 3.0, 'long': 1.0, 'padding': 2.0, 'well': 1.0, 'not': 2.0, 'good': 1.0, 'or': 2.0, 'for': 2.0, 'one': 2.0, 'nice': 1.0, 'comfortable': 2.0, 'if': 2.0, 'grandfather': 1.0, 'move': 1.0, 'price': 1.0, 'but': 3.0, 'you': 2.0, 'a': 3.0, 's': 3.0, 'our': 1.0, 'any': 1.0, 'seat': 1.0, 'to': 3.0, 'absence': 1.0, 'from': 1.0, 'easy': 1.0, 'often': 1.0, 'lightweight': 1.0, 'another': 1.0, 'may': 1.0, 'fits': 1.0, 'child': 1.0, 'be': 1.0, 'your': 1.0, 'on': 1.0, 'complete': 1.0, 'of': 1.0}
Word element => {'price': 1.0, 'too': 1.0, 'can': 1.0, 'looking': 1.0, 'good': 1.0, 'install': 1.0, 'easy': 1.0, 'is': 1.0, 'car': 3.0, 'our': 2.0, 'be': 2.0, 'the': 1.0, 't': 2.0, 'cosco': 1.0, 'and': 1.0, 'couldn': 1.0, 'acts': 1.0, 'secondary': 1.0, 'we': 1.0, 'seat': 2.0, 'with': 1.0, 'it': 2.0, 'as': 1.0, 'comfortable': 1.0, 'for': 1.0, 'my': 1.0, 'beat': 1.0, 'to': 1.0, 'happier': 1.0, 'husband': 1.0, 'way': 1.0, 'scenera': 1.0, 's': 1.0, 'in': 1.0, 'perfect': 1.0, 'either': 1.0, 'convertible': 1.0, 'every': 1.0}
Word element => {'consignment': 1.0, 'sell': 1.0, 'maybe': 1.0, 'installing': 1.0, 'pain': 1.0, 'much': 1.0, 'traveling': 1.0, 'spare': 1.0, 'keep': 1.0, 'sure': 1.0, 'marathon': 1.0, '65': 1.0, 'ride': 1.0, 'replace': 1.0, 'wanted': 1.0, 'weigh': 1.0, 'light': 1.0, 'tall': 1.0, 'also': 1.0, 'long': 1.0, 'want': 2.0, 'as': 4.0, 'other': 1.0, 'into': 1.0, 're': 1.0, 'adjustment': 1.0, 'while': 1.0, 'ass': 1.0, 'plastic': 1.0, 'scrapes': 1.0, 'work': 1.0, 'family': 1.0, 'junk': 1.0, 'frugal': 1.0, 'riddance': 1.0, 'gift': 1.0, 'god': 1.0, 'done': 1.0, 'beast': 1.0, 'square': 1.0, 'deal': 1.0, 'sigh': 1.0, 'normal': 1.0, 'than': 1.0, 'side': 2.0, 'amount': 1.0, 'more': 1.0, 'fair': 1.0, 'good': 2.0, 'no': 1.0, 'dried': 1.0, 'put': 1.0, 'went': 1.0, 'now': 3.0, 'snugride': 2.0, 'did': 2.0, 'graco': 1.0, 'parenting': 1.0, 'has': 1.0, 'yet': 1.0, 'car': 5.0, 'arms': 1.0, '6': 1.0, 'too': 1.0, 'cars': 1.0, 'meantime': 1.0, 'but': 5.0, 'at': 1.0, 'shelve': 1.0, 'keeping': 1.0, 'literally': 1.0, 'could': 2.0, 'things': 1.0, 'tell': 1.0, 'days': 1.0, 'position': 1.0, 'possible': 1.0, 'difficult': 1.0, 'tightened': 1.0, 'facing': 1.0, 'in': 11.0, 'seat': 10.0, 'allowance': 1.0, 'later': 2.0, 'himself': 1.0, 'properly': 1.0, 'would': 1.0, 'edited': 1.0, 'he': 2.0, 'tight': 1.0, 'enough': 2.0, 'house': 1.0, 'child': 1.0, 'try': 1.0, 'price': 1.0, 'jetta': 1.0, 'be': 3.0, 'it': 23.0, 'this': 8.0, 'washed': 1.0, 'because': 2.0, 'that': 5.0, 'fall': 1.0, 'december': 2.0, 'very': 2.0, 'find': 1.0, 'why': 1.0, 'looking': 1.0, 'does': 2.0, 'longer': 2.0, 'fit': 2.0, 't': 2.0, 'for': 6.0, '10': 1.0, 'husband': 1.0, '2002': 1.0, 'registered': 1.0, 'the': 22.0, 'experience': 1.0, 'seriously': 1.0, 'say': 2.0, 'when': 4.0, 'had': 3.0, 'reports': 2.0, 'loosened': 1.0, 'become': 1.0, 'cupholder': 1.0, 'was': 8.0, 'either': 1.0, 'expecting': 1.0, 'consumer': 2.0, 'color': 2.0, 'us': 1.0, 'actually': 1.0, 'understatement': 1.0, 'bane': 1.0, 'these': 1.0, 'first': 1.0, 'not': 4.0, 'me': 1.0, 'are': 1.0, 'my': 13.0, 'to': 23.0, 'our': 3.0, 'recommendation': 1.0, 'any': 1.0, 'day': 2.0, 'appealed': 1.0, 'belt': 1.0, 'five': 2.0, 'butter': 1.0, 'took': 1.0, 'convertible': 1.0, 'safety': 1.0, 'latch': 2.0, 'trip': 1.0, 'until': 3.0, 'off': 1.0, 'install': 2.0, 'face': 3.0, 'if': 2.0, 'great': 2.0, 'tech': 1.0, 'of': 13.0, 'even': 3.0, 'old': 1.0, 'what': 1.0, 'fact': 1.0, 'front': 2.0, 'complained': 1.0, 'shop': 1.0, 'use': 4.0, 'have': 3.0, 'go': 2.0, 'doesn': 1.0, 'm': 2.0, 's': 4.0, 'we': 8.0, 'a': 20.0, 'fiddling': 1.0, 'small': 1.0, 'rocks': 1.0, '22': 1.0, 'an': 3.0, 'all': 3.0, 'again': 2.0, 'which': 1.0, 'his': 2.0, 'thank': 1.0, 'months': 2.0, 'able': 2.0, 'however': 2.0, 'get': 3.0, 'i': 22.0, 'finally': 1.0, 'sheriff': 1.0, 'from': 2.0, 'june': 1.0, '11': 1.0, 'one': 1.0, 'got': 1.0, 'out': 4.0, 'constantly': 1.0, 'just': 3.0, 'and': 16.0, 'crap': 1.0, 'back': 3.0, 'with': 9.0, 'bursting': 1.0, 'manage': 1.0, 'probably': 1.0, 'before': 1.0, 'am': 1.0, '9': 1.0, 'scenera': 1.0, 'noodles': 1.0, '8': 1.0, 'ease': 1.0, 'hours': 4.0, 'can': 1.0, 'is': 7.0, 'tugging': 1.0, 'piece': 2.0, 'adjusting': 1.0, 'fine': 1.0, 'like': 1.0, 'leave': 1.0, '2': 3.0, 'itself': 1.0, 'add': 1.0, 'on': 3.0, 'or': 4.0, 'garage': 1.0, 'spent': 2.0, 'never': 1.0, 'over': 2.0, 'period': 1.0, 'green': 1.0, 'pregnant': 1.0, 'trying': 3.0, 'declaring': 1.0, 'seats': 1.0, 'yesterday': 1.0, 'son': 5.0, 'needed': 2.0, 'liked': 2.0, 'new': 2.0, 'installation': 1.0, 'worked': 2.0, 'year': 2.0, 'recall': 1.0, 'big': 1.0, 'nice': 1.0, 'infant': 2.0, 'though': 1.0, 'shallow': 1.0, 'so': 5.0, 'playtex': 1.0, 'sippy': 1.0, 'cups': 1.0, 'recent': 1.0, 'road': 1.0, 'peanut': 1.0, 'incident': 1.0, 'will': 3.0, 'cover': 3.0, 'around': 2.0, 'least': 1.0, 'still': 1.0, 'sassy': 1.0, 'don': 1.0, 'messing': 1.0, 'rear': 2.0, 'pool': 1.0, 'somehow': 1.0}
Word element => {'i': 1.0, 'highly': 1.0, 'and': 1.0, 's': 1.0, 'assemble': 1.0, 'to': 1.0, 'this': 1.0, 'car': 1.0, 'is': 1.0, 'the': 2.0, 'recommend': 1.0, 'seat': 1.0, 'weight': 1.0, 'comfortable': 1.0, 'best': 1.0, 'for': 1.0, 'light': 1.0, 'price': 1.0, 'it': 3.0, 'was': 1.0, 'easy': 1.0}
Word element => {'count': 1.0, 'in': 2.0, 'appears': 1.0, 'says': 1.0, 'install': 1.0, 'be': 1.0, 'to': 2.0, 'simple': 1.0, 'value': 1.0, 'some': 1.0, 'and': 1.0, 'quality': 1.0, 'grandson': 1.0, 'my': 1.0, 't': 1.0, 'great': 2.0, 'it': 1.0, 'that': 2.0, 'comfortable': 1.0, 'his': 1.0, 'really': 1.0, 'is': 1.0, 'not': 1.0, 'plastic': 1.0, 'places': 1.0, 'don': 1.0}
Word element => {'i': 1.0, 'cleaning': 1.0, 'removeable': 1.0, 'would': 1.0, 'holder': 1.0, 'cup': 1.0, 'easily': 1.0, 'far': 1.0, 'everyone': 1.0, 'was': 1.0, 'had': 1.0, 've': 1.0, 'we': 1.0, 'minor': 1.0, 'wiped': 1.0, 'and': 1.0, 'infant': 1.0, 'from': 1.0, 'seat': 1.0, 'great': 1.0, 'the': 3.0, 'upgrade': 1.0, 'a': 1.0, 'recommend': 1.0, 'easy': 1.0, 'facing': 2.0, 'car': 1.0, 'it': 2.0, 'this': 2.0, 'is': 2.0, 'rear': 1.0, 's': 1.0, 'convertible': 1.0, 'be': 1.0, 'so': 2.0, 'can': 1.0, 'size': 1.0, 'spill': 1.0, 'forward': 1.0, 'off': 1.0, 'or': 1.0, 'for': 3.0, 'age': 1.0, 'any': 1.0}
Word element => {'price': 1.0, 'for': 1.0, 'quite': 1.0, 'be': 1.0, 'you': 5.0, 'so': 2.0, 'evenly': 1.0, 'adjustments': 1.0, 'are': 1.0, 'on': 2.0, 'make': 2.0, 'strap': 2.0, 'position': 1.0, 'proper': 1.0, 'up': 1.0, 'latch': 1.0, 'into': 1.0, 'that': 2.0, 'seat': 1.0, 'in': 1.0, 'they': 1.0, 'have': 1.0, 'trial': 1.0, 'harness': 1.0, 'each': 1.0, 'end': 1.0, 'locks': 1.0, 'loose': 1.0, 'out': 2.0, 'effort': 1.0, 'll': 1.0, 'once': 1.0, 'necessary': 1.0, 'mind': 1.0, 'with': 2.0, 'of': 2.0, 'the': 6.0, 'careful': 1.0, 'place': 1.0, 'tightened': 1.0, 't': 1.0, 'a': 3.0, 's': 1.0, 'daughter': 1.0, 'to': 6.0, 'pretty': 1.0, 'take': 2.0, 'helps': 1.0, 'mean': 1.0, 'car': 2.0, 'mentioned': 1.0, 'definitely': 1.0, 'day': 1.0, 'get': 2.0, 'sure': 1.0, 'and': 4.0, 'this': 2.0, 'it': 4.0, 'doesn': 1.0, 'all': 1.0, 'fits': 1.0, 'tight': 1.0, 'comfortable': 1.0, 'great': 1.0, 'too': 4.0, 'one': 5.0, 'essentially': 1.0, 'single': 1.0, 'error': 1.0, 'figure': 1.0, 'is': 3.0, 'does': 1.0, 'her': 1.0, 'seats': 1.0, 'bit': 1.0, 'easy': 1.0, 'however': 1.0, 'keep': 1.0, 'them': 1.0, 'but': 2.0, 'similarly': 1.0, 'our': 1.0, 'how': 1.0, 'particular': 1.0, 'vacation': 1.0, 'travel': 1.0, 'by': 1.0, 'good': 2.0, 'side': 1.0, 'which': 1.0, 'well': 1.0, 'i': 1.0, 'not': 1.0, 'those': 1.0, 'due': 1.0, 'previously': 1.0, 'issues': 1.0, 'check': 1.0, 'straps': 1.0, 'some': 1.0}
Word element => {'loved': 1.0, 'light': 1.0, 'cruising': 1.0, 'quite': 1.0, 'price': 1.0, 'years': 1.0, 'everyday': 1.0, 'use': 2.0, 'now': 2.0, 'old': 2.0, 'so': 1.0, 'much': 2.0, 'on': 1.0, 'husband': 2.0, 'cheaper': 1.0, 'one': 2.0, 'decided': 2.0, 'finally': 1.0, 'the': 4.0, 'switching': 1.0, 'consumer': 1.0, 'truck': 1.0, 'after': 2.0, 'get': 1.0, 'born': 1.0, 'including': 1.0, 'thing': 2.0, 'carseat': 6.0, 'her': 2.0, 'vehicle': 1.0, 'fits': 1.0, 'purchase': 1.0, 'my': 6.0, 'cars': 1.0, 'prior': 1.0, 'i': 6.0, 'nicely': 1.0, 'heavy': 1.0, '2009': 1.0, 'in': 5.0, 'seems': 2.0, 'daughter': 2.0, 'green': 1.0, 'reviewing': 1.0, 'and': 6.0, 'too': 1.0, 'seat': 1.0, 'to': 7.0, 'expecting': 1.0, 'was': 1.0, 'switch': 1.0, 'it': 4.0, 'this': 5.0, '2': 1.0, 'can': 1.0, 'escape': 1.0, 's': 1.0, 'we': 1.0, 'a': 3.0, 'well': 1.0, 'being': 1.0, 'reports': 1.0, 'what': 1.0, 'had': 1.0, 'purchased': 1.0, 'ford': 1.0, 'almost': 1.0, 'sturdy': 2.0, 'struggle': 1.0, 'from': 2.0, 'day': 2.0, 'never': 2.0, 'for': 2.0, 'grandparents': 1.0, 'expensive': 1.0, 'love': 3.0, 'fit': 1.0, 'enough': 1.0, 'car': 3.0, 'not': 2.0, 'lime': 1.0, 'comfortable': 1.0, 'mention': 1.0, 'fancy': 1.0, 'gave': 1.0, 'that': 2.0, 'more': 1.0, 'say': 1.0, 'is': 3.0}
Word element => {'looking': 1.0, 'every': 1.0, 'met': 1.0, 'visiting': 1.0, 'grandson': 1.0, 'this': 1.0, 'my': 1.0, 'the': 1.0, 'are': 1.0, 'seat': 2.0, 'stringent': 1.0, 'for': 2.0, 'was': 1.0, 'to': 1.0, 'had': 1.0, 'a': 1.0, 'ca': 1.0, 'baby': 1.0, 'choose': 1.0, 'i': 2.0, 'uk': 2.0, 'rules': 1.0, 'requirement': 1.0, 'on': 1.0, 'seats': 1.0, 'from': 1.0, 'very': 1.0, 'and': 1.0}
Word element => {'everyday': 1.0, 'damages': 1.0, 'if': 1.0, 'won': 1.0, 'use': 2.0, 'probably': 1.0, 'be': 1.0, 'll': 2.0, 'longer': 1.0, 'buckling': 1.0, 'makes': 1.0, 'side': 1.0, 'roundabouts': 1.0, 'care': 1.0, 'other': 1.0, 'tighter': 1.0, 'that': 1.0, 'when': 1.0, 'again': 1.0, 'you': 1.0, 'challenge': 1.0, 'sometimes': 2.0, 'also': 1.0, 'is': 1.0, 'even': 1.0, 'straps': 1.0, 'getting': 1.0, 'needs': 1.0, 'bit': 1.0, 'little': 1.0, 'husband': 1.0, 'which': 1.0, 'loose': 1.0, 'them': 2.0, 'would': 1.0, 'than': 3.0, 'roundabout': 1.0, 'lighter': 1.0, 'adjusting': 1.0, 'with': 2.0, 'it': 2.0, 'stick': 1.0, 'hard': 1.0, 'one': 1.0, 'bought': 1.0, 'i': 4.0, 'two': 2.0, 'kneeling': 1.0, 'of': 2.0, 'describe': 1.0, 'airline': 1.0, 'only': 2.0, 'fly': 2.0, 'much': 4.0, 'seats': 3.0, 'since': 2.0, 'these': 1.0, 'the': 9.0, 'they': 1.0, 'tolerable': 1.0, 'process': 1.0, 'shoulder': 2.0, 'but': 2.0, 'not': 1.0, 'to': 3.0, 'as': 3.0, 'our': 1.0, 'seat': 1.0, 'better': 1.0, 'kids': 1.0, 'this': 1.0, 'found': 1.0, 'virtually': 1.0, 'impossible': 1.0, 'get': 2.0, 'and': 1.0, 'my': 1.0, 'tight': 1.0, 'for': 1.0, 'fit': 2.0, 'regular': 1.0, 'in': 2.0, 'car': 1.0, 'on': 1.0, 'definitely': 1.0, 'pulling': 1.0, 'improve': 1.0, 'are': 1.0, 'managed': 1.0, 'strap': 2.0, 't': 1.0, 's': 1.0, 'we': 4.0, 'a': 4.0, 'could': 2.0}
Word element => {'right': 1.0, 'is': 1.0, 'so': 2.0, 'or': 1.0, 'needing': 1.0, 'won': 1.0, 'of': 1.0, 't': 1.0, 'the': 3.0, 'me': 1.0, 'probably': 1.0, 'and': 2.0, 'quality': 1.0, 'year': 1.0, 'son': 1.0, 'very': 1.0, 'pleased': 1.0, 'm': 1.0, 'now': 1.0, 'buying': 1.0, 'another': 1.0, 'price': 2.0, 'i': 3.0, 'for': 1.0, 'one': 1.0, 'before': 1.0, 'carseat': 1.0, 'in': 1.0, 've': 1.0, 'read': 1.0, 'my': 2.0, 'consumer': 1.0, 'reports': 1.0, 'this': 2.0, 'with': 1.0, 'first': 1.0, 'be': 1.0, 'bought': 1.0, 'three': 1.0}
Word element => {'need': 1.0, 'we': 1.0, 'finish': 1.0, 'cure': 1.0, 'want': 2.0, 'who': 1.0, 'product': 1.0, 'great': 1.0, 'plan': 1.0, 'now': 1.0, 'searching': 1.0, 'for': 5.0, 'not': 1.0, 'although': 1.0, 'appealing': 1.0, 'glossy': 3.0, 'does': 1.0, 'than': 1.0, 'that': 7.0, 'when': 1.0, 'traditional': 1.0, 'mushy': 1.0, 'those': 2.0, 'weather': 1.0, 'protected': 1.0, 'get': 1.0, 'con': 1.0, 'in': 1.0, 'keeps': 1.0, 'balms': 3.0, 'stays': 1.0, 'be': 1.0, 'but': 3.0, 'gloss': 1.0, 'aren': 1.0, 'needed': 1.0, 'find': 1.0, 'mild': 1.0, 'so': 1.0, 'without': 1.0, 'soft': 2.0, 'hint': 1.0, 'this': 4.0, 'me': 2.0, 'my': 7.0, 'though': 1.0, 'lip': 7.0, 'often': 1.0, 'pros': 2.0, 'course': 1.0, 'cons': 1.0, 'do': 2.0, 'chapped': 1.0, 'its': 1.0, 'and': 6.0, 'has': 2.0, 'keep': 4.0, 'it': 6.0, 'with': 1.0, 'putting': 1.0, 'i': 11.0, 'to': 10.0, 'all': 4.0, 'as': 1.0, 'smile': 1.0, 'also': 2.0, 'will': 1.0, 'start': 1.0, 'like': 4.0, 'looking': 1.0, 'lips': 3.0, 'using': 1.0, 'pocket': 1.0, 'day': 2.0, 'reapply': 1.0, 'some': 1.0, 'add': 1.0, 'really': 1.0, 'apply': 1.0, 'from': 1.0, 's': 1.0, 't': 2.0, 'a': 6.0, 'the': 3.0, 'of': 3.0, 'natural': 2.0, 'doesn': 1.0, 'seem': 1.0, 'very': 1.0, 'nice': 1.0, 'little': 1.0, 'better': 1.0, 'think': 2.0, 'long': 1.0, 'on': 1.0, 'pleasant': 1.0, 'solid': 1.0, 'yet': 1.0, 'scent': 1.0, 'sweet': 1.0, 'fruit': 1.0, 'biggest': 1.0, 'shimmer': 1.0, 'at': 1.0, 'notice': 1.0, 'is': 2.0, 'husband': 1.0, 'more': 1.0, 'after': 1.0, 'just': 1.0, 'lets': 1.0, 'have': 1.0, 'balm': 4.0, 'non': 1.0, 'brand': 1.0}
Word element => {'moisturizes': 1.0, 'mild': 1.0, 'has': 1.0, 'try': 1.0, 'mint': 1.0, 'don': 1.0, 'smell': 1.0, 'those': 1.0, 'but': 1.0, 'aroma': 1.0, 'minty': 1.0, 'and': 2.0, 'reasons': 1.0, 'like': 2.0, 'to': 1.0, 'bees': 1.0, 't': 1.0, 'great': 1.0, 'the': 3.0, 'burt': 1.0, 'of': 2.0, 's': 1.0, 'well': 1.0, 'a': 2.0, 'sweet': 1.0, 'too': 2.0, 'm': 1.0, 'products': 1.0, 'i': 2.0, 'for': 1.0, 'one': 2.0, 'it': 1.0, 'this': 2.0, 'product': 1.0, 'big': 1.0, 'why': 1.0, 'that': 1.0, 'their': 1.0, 'lip': 1.0, 'fan': 1.0, 'is': 3.0, 'regular': 1.0, 'balm': 1.0}
Word element => {'disappointed': 1.0, 'be': 1.0, 'won': 1.0, 'house': 1.0, 'couple': 1.0, 'that': 2.0, 'next': 1.0, 'down': 1.0, 'effort': 1.0, 'close': 2.0, 'but': 2.0, 'enough': 1.0, 'eight': 1.0, 'off': 1.0, 'themselves': 1.0, 'or': 2.0, 'holds': 1.0, 'is': 1.0, 'more': 2.0, 'door': 2.0, 'received': 1.0, 'second': 1.0, 'baby': 1.0, 'small': 2.0, 'a': 5.0, 't': 3.0, 's': 4.0, 'and': 3.0, 'normal': 1.0, 'my': 2.0, 'fact': 1.0, 'longer': 1.0, 'of': 2.0, 'the': 6.0, 'can': 5.0, 'so': 3.0, 'slams': 1.0, 'force': 1.0, 'trying': 1.0, 'gift': 1.0, 'children': 1.0, 'one': 3.0, 'i': 4.0, 'getting': 1.0, 'thinking': 1.0, 'bedroom': 1.0, 'come': 1.0, 'with': 2.0, 'convenient': 1.0, 'it': 10.0, 'first': 1.0, 'to': 5.0, 'as': 1.0, 'doors': 2.0, 'open': 1.0, 'son': 2.0, 'no': 4.0, 'about': 1.0, 'some': 1.0, 'spent': 1.0, 'edges': 1.0, 'on': 1.0, 'push': 1.0, 'you': 2.0, 'they': 1.0, 'months': 2.0, 'get': 1.0, 'sure': 1.0, 'stronger': 1.0, 'rubbery': 1.0, 'two': 1.0, 'little': 1.0, 'sharp': 1.0, 'only': 1.0, 'shower': 1.0, 'sibling': 1.0, 'parts': 1.0, 'kid': 1.0, 'than': 1.0, 'way': 1.0, 'use': 1.0, 'other': 1.0, 'injure': 1.0, 'love': 1.0, 'far': 1.0, 'mine': 1.0, 'haven': 1.0, 'find': 2.0, '1': 1.0, 'for': 3.0, '10': 1.0, 'once': 1.0, 'these': 1.0, 'shut': 2.0, 'saying': 1.0, 'something': 1.0, 'not': 1.0, 'safe': 1.0, 'just': 1.0, 'tug': 1.0, 'loose': 1.0, '2': 2.0, 'wind': 1.0, 'm': 2.0, 'in': 2.0}
Word element => {'chair': 1.0, 'using': 1.0, 'over': 1.0, 'up': 1.0, 'rest': 1.0, 'ended': 1.0, 'florida': 1.0, 'us': 1.0, 'visit': 1.0, 'daughter': 1.0, 'my': 1.0, 'day': 1.0, 'just': 1.0, 'came': 2.0, 'keep': 1.0, 'this': 1.0, 'only': 1.0, 'now': 1.0, 'was': 4.0, 'we': 1.0, 'a': 1.0, 'ago': 1.0, 'baby': 2.0, 'that': 1.0, 'pleased': 1.0, 'these': 1.0, 'sits': 1.0, 'behind': 1.0, 'had': 1.0, 'purchased': 1.0, 'i': 2.0, 'one': 2.0, 'handle': 1.0, 'disappointing': 1.0, 'but': 1.0, 'cart': 1.0, 'has': 1.0, 'coverage': 1.0, 'of': 3.0, 'grocery': 1.0, 'in': 2.0, 'disappointed': 1.0, 'it': 4.0, 'covers': 2.0, 'have': 1.0, 'as': 1.0, 'to': 3.0, 'all': 2.0, '5': 1.0, 'before': 2.0, 'her': 2.0, 'very': 2.0, 'big': 1.0, 'and': 4.0, 'the': 5.0, 'reach': 1.0, 'where': 1.0, 'is': 1.0, 'not': 1.0, 'purel': 1.0, 'enough': 1.0, 'front': 1.0, 'years': 1.0, 'absolutely': 1.0, 'no': 1.0, 'on': 1.0, 'sides': 1.0}
Word element => {'back': 1.0, 'sending': 1.0, 'pvc': 1.0, 'is': 1.0, 'there': 1.0, 'now': 1.0, 'had': 1.0, 'months': 1.0, 'it': 3.0, 'this': 2.0, 'ache': 1.0, 'i': 4.0, 'odor': 1.0, 'tried': 1.0, 'touch': 1.0, 'for': 1.0, 'though': 1.0, 'even': 2.0, 'three': 1.0, 'so': 1.0, 'bag': 3.0, 'have': 2.0, 'emits': 1.0, 'and': 2.0, 'do': 1.0, 'continued': 1.0, 'has': 1.0, 'makes': 1.0, 'airing': 1.0, 'out': 1.0, 'over': 1.0, 'don': 1.0, 'to': 2.0, 'any': 1.0, 'a': 1.0, 't': 1.0, 'the': 3.0, 'want': 1.0, 'of': 1.0, 'blankets': 1.0, 'or': 1.0, 'baby': 1.0, 'clothes': 1.0, 'that': 1.0, 'toxic': 1.0, 'put': 1.0, 'in': 2.0, 'my': 2.0, 'smell': 1.0, 'throat': 1.0, 'hurt': 1.0, 'head': 1.0}
Word element => {'them': 1.0, 'with': 1.0, 'plays': 1.0, 'just': 1.0, 'now': 1.0, 'off': 1.0, 'top': 1.0, 'out': 1.0, 'figured': 1.0, 'were': 1.0, 'well': 1.0, 'cute': 1.0, 'pooh': 1.0, 'use': 1.0, '1': 1.0, 'and': 1.0, 'they': 1.0, 'these': 1.0, 'the': 5.0, 's': 1.0, 't': 1.0, 'i': 2.0, 'cups': 1.0, 'to': 2.0, 'was': 1.0, 'had': 1.0, 'stay': 1.0, 'point': 1.0, 'old': 1.0, 'young': 1.0, 'themed': 1.0, 'for': 1.0, 'bought': 1.0, 'one': 1.0, 'winnie': 1.0, 'really': 1.0, 'is': 1.0, 'year': 1.0, 'very': 1.0, 'son': 1.0, 'birthday': 1.0, 'children': 1.0, 'only': 1.0, 'looked': 1.0, 'how': 1.0, 'he': 2.0, 'party': 1.0, 'my': 2.0, 'at': 2.0, 'thing': 1.0, 'tops': 1.0, 'didn': 1.0, 'on': 1.0, 'over': 1.0, 'covered': 1.0, 'in': 1.0, 'pull': 1.0, 'water': 1.0}
Word element => {'that': 1.0, 'won': 1.0, 'buy': 1.0, 'would': 1.0, 'new': 1.0, 'brand': 1.0, 'still': 1.0, 'owning': 1.0, 'of': 1.0, 'year': 1.0, 'than': 1.0, 'more': 1.0, 'after': 1.0, 'carry': 1.0, 'again': 1.0, 'when': 1.0, 'compliments': 1.0, 'much': 1.0, 'big': 1.0, 'everything': 1.0, 'will': 2.0, 'also': 1.0, 'in': 2.0, 'looks': 1.0, 'it': 8.0, 'this': 2.0, 'with': 1.0, 'last': 1.0, 'clean': 1.0, 'out': 1.0, 'inside': 1.0, 'but': 2.0, 'get': 1.0, 'easy': 1.0, 'fun': 1.0, 'dry': 1.0, 'they': 1.0, 'and': 3.0, 'i': 5.0, 'keeps': 1.0, 'are': 2.0, 'really': 1.0, 'diaper': 2.0, 'the': 4.0, 'loved': 1.0, 'bag': 4.0, 'always': 1.0, 'brilliant': 1.0, 'sippy': 1.0, 'baby': 1.0, 'pockets': 1.0, 'even': 1.0, 'so': 4.0, 'bottle': 1.0, 'not': 1.0, 'huge': 1.0, 'fit': 2.0, 'my': 1.0, 'rain': 1.0, 'daughters': 1.0, 'think': 1.0, 'to': 2.0, 'cups': 1.0, 'have': 2.0, 'coming': 1.0, 'handles': 1.0, 'over': 1.0, 'colors': 1.0, 'sides': 1.0, 't': 1.0, 's': 2.0, 'a': 3.0}
Word element => {'protection': 1.0, 'not': 1.0, 'but': 1.0, 'again': 1.0, 'so': 1.0, 'keeps': 1.0, 'care': 1.0, 'heat': 2.0, 'then': 1.0, 'dust': 2.0, 'will': 1.0, 'tore': 1.0, 'handle': 1.0, 'one': 1.0, 'given': 1.0, 'on': 2.0, 'and': 2.0, 'buy': 1.0, 'day': 2.0, 'his': 1.0, 'hurry': 1.0, 'from': 1.0, 'durable': 1.0, 'it': 7.0, 'i': 3.0, 'have': 1.0, 'outside': 1.0, 'seat': 2.0, 'all': 1.0, 'stitching': 1.0, 'black': 1.0, '5': 1.0, 'than': 1.0, 'door': 1.0, 'for': 2.0, 'stars': 1.0, 'caught': 1.0, 'say': 1.0, 'is': 3.0, 'more': 3.0, 'the': 1.0, 'if': 1.0, 'better': 1.0, 'would': 2.0, 'got': 1.0, 'cooler': 1.0, 'was': 2.0, 'son': 2.0, 'still': 1.0, 'in': 1.0, 'useable': 1.0, 'thought': 1.0, 'my': 2.0, 'a': 3.0, 's': 2.0, 'car': 2.0, 'like': 1.0, 'slightly': 1.0, 'nothing': 1.0, 'since': 1.0, 'at': 1.0, 'of': 1.0, 'cover': 2.0}
Word element => {'his': 1.0, 'carry': 1.0, 'way': 1.0, 'on': 1.0, 'wee': 1.0, 'buying': 1.0, 'him': 1.0, 'here': 1.0, 'be': 1.0, 'that': 1.0, 'substantial': 1.0, 'when': 1.0, 'complained': 1.0, 'difference': 1.0, 'and': 1.0, 'i': 6.0, 'tried': 1.0, 'shortly': 1.0, 'now': 1.0, 'what': 1.0, 'had': 1.0, 'haven': 1.0, 'shade': 4.0, 'doesn': 1.0, 'but': 2.0, 'other': 1.0, 'leave': 1.0, 'have': 2.0, 'in': 2.0, 'for': 6.0, 'another': 1.0, 'my': 4.0, 'seat': 4.0, 'week': 1.0, 'car': 5.0, 'sun': 4.0, 'the': 7.0, 'job': 1.0, 'notice': 1.0, 'we': 1.0, 't': 2.0, 'a': 3.0, 's': 2.0, 'about': 1.0, 'will': 1.0, 'folding': 1.0, 'it': 5.0, 'son': 1.0, 'fold': 2.0, 'some': 1.0, 'or': 1.0, 'users': 1.0, 'like': 1.0, 'should': 1.0, 'one': 2.0, 'bought': 1.0, 'cool': 1.0, '99': 1.0, '6': 1.0, 'rarely': 1.0, 'up': 3.0, 'cheaper': 1.0, 'is': 2.0, 'bit': 1.0, 'paid': 1.0, 'does': 1.0}
Word element => {'every': 1.0, 'use': 1.0, 'i': 1.0, 'mine': 1.0, 'the': 1.0, 'a': 1.0, 'is': 2.0, 'and': 1.0, 'day': 1.0, 'must': 1.0, 'very': 1.0, 'to': 2.0, 'it': 1.0, 'this': 1.0, 'moved': 1.0, 'my': 1.0, 'arizona': 1.0, 'but': 1.0, 'we': 1.0, 'hot': 1.0, 'car': 1.0, 'nothing': 1.0, 'so': 1.0, 'gets': 1.0, 'daughter': 1.0, 's': 1.0, 'just': 1.0, 'seat': 1.0, 'compared': 1.0}
Word element => {'day': 1.0, 'a': 1.0, 'on': 1.0, 'to': 1.0, 'returning': 1.0, 'keep': 1.0, 'seat': 1.0, 'cooler': 1.0, 's': 1.0, 'first': 1.0, 'it': 1.0, 'helps': 1.0, 'does': 1.0, 'job': 1.0, 'or': 1.0, 'buy': 1.0, 'and': 1.0, 'definitely': 1.0, 'hot': 2.0, 'car': 2.0, 'so': 1.0, 'much': 1.0, 'buckles': 1.0, 'straps': 1.0, 'aren': 1.0, 'great': 1.0, 'the': 3.0, 't': 1.0, 'when': 1.0, 'too': 1.0}
Word element => {'cooler': 1.0, 'little': 1.0, 'their': 1.0, 'wanting': 1.0, 'anyone': 1.0, 'this': 1.0, 'recommend': 1.0, 'improvement': 1.0, 'but': 1.0, 'degrees': 1.0, '90': 1.0, 'when': 1.0, 'would': 1.0, 've': 2.0, 'in': 2.0, 'style': 1.0, 'it': 5.0, 'have': 1.0, 'fabric': 2.0, 'boulevard': 1.0, 'using': 1.0, 'for': 1.0, 'been': 1.0, 'helper': 1.0, 'black': 1.0, 'onyx': 1.0, 'i': 4.0, 'britax': 1.0, 'of': 1.0, 'mommy': 1.0, 'sun': 1.0, 'the': 3.0, 's': 4.0, 'we': 1.0, 'a': 4.0, 't': 1.0, 'and': 2.0, 'hot': 3.0, 'temperature': 1.0, 'to': 2.0, 'outside': 1.0, 'seat': 1.0, 'shade': 1.0, 'car': 1.0, 'week': 1.0, 'will': 1.0, 'about': 1.0, 'definite': 1.0, 'don': 1.0, 'now': 1.0, 'warm': 1.0, 'noticed': 1.0, 'surface': 1.0, 'think': 1.0, 'on': 2.0, 'definitely': 1.0, 'days': 2.0, 'gets': 1.0, 'still': 1.0, 'anything': 1.0, 'reduction': 1.0, 'keep': 2.0, 'one': 1.0, 'cool': 1.0}
Word element => {'worth': 1.0, 'is': 1.0, 'on': 1.0, 'i': 1.0, 'so': 1.0, 'if': 1.0, 'price': 1.0, 'did': 1.0, 'a': 1.0, 'the': 1.0, 'bought': 1.0, 'decent': 1.0, 'sun': 1.0, 'sale': 1.0, 'was': 1.0, 'good': 1.0, 'job': 1.0, 'of': 1.0, 'it': 4.0, 'protection': 1.0}
Word element => {'manner': 1.0, 'tiemly': 1.0, 'arrived': 1.0, 'hot': 1.0, 'a': 2.0, 'complains': 1.0, 'in': 1.0, 'for': 1.0, 'son': 1.0, 's': 1.0, 'car': 1.0, 'great': 1.0, 'works': 1.0, 'of': 1.0, 'seat': 2.0, 'no': 1.0, 'he': 1.0, 'bought': 1.0, 'longer': 1.0}
Word element => {'where': 1.0, 'product': 2.0, 'or': 4.0, 'off': 1.0, 'covered': 1.0, 'hot': 1.0, 'purchase': 1.0, 'my': 1.0, 'seats': 1.0, 'in': 1.0, 'screen': 1.0, 'super': 1.0, 'tell': 1.0, 'an': 1.0, 'car': 2.0, 'dangerous': 1.0, 'been': 1.0, 'that': 1.0, 'we': 1.0, 'a': 3.0, 'always': 1.0, 'should': 1.0, 'and': 4.0, 'across': 1.0, 'child': 1.0, 'towel': 2.0, 'everyone': 1.0, 'run': 1.0, 'shade': 2.0, 'live': 1.0, 'is': 2.0, 'with': 2.0, 'this': 3.0, 'it': 1.0, 'item': 1.0, 'must': 1.0, 'falls': 1.0, 'have': 3.0, 'tried': 1.0, 'i': 2.0, 'the': 4.0, 'slips': 1.0, 'either': 1.0, 'mother': 2.0, 'then': 1.0, 'az': 1.0, 'every': 1.0, 'to': 3.0, 'seat': 1.0, 'be': 1.0, 'about': 1.0}
Word element => {'off': 1.0, 'easily': 1.0, 'and': 1.0, 'keeping': 1.0, 'seat': 1.0, 'for': 1.0, 'lightweight': 1.0, 'great': 2.0, 'the': 3.0, 'a': 1.0, 'days': 1.0, 'is': 3.0, 'on': 1.0, 'product': 2.0, 'to': 2.0, 'taken': 1.0, 'it': 2.0, 'this': 1.0, 'car': 1.0, 'hot': 1.0, 'stretches': 1.0, 'far': 1.0, 'cover': 1.0, 'from': 1.0, 'cool': 1.0, 'enough': 1.0, 'top': 1.0, 'bottom': 1.0}
Word element => {'will': 1.0, 'find': 1.0, 'the': 2.0, 'needed': 1.0, 'to': 2.0, 'blaring': 1.0, 'i': 1.0, 'my': 1.0, 'arizona': 1.0, 'out': 1.0, 'living': 1.0, 'in': 1.0, 'getitng': 1.0, 'a': 1.0, 'sun': 1.0, 'good': 1.0, 'keep': 1.0, 'seat': 1.0, 'this': 1.0, 'quick': 1.0, 'way': 1.0, 'do': 1.0, 'and': 2.0, 'sons': 1.0, 'definitely': 1.0, 'hot': 1.0, 'car': 1.0, 'trick': 1.0, 'from': 1.0, 'going': 1.0, 'when': 1.0, 'too': 1.0}
Word element => {'use': 1.0, 'm': 1.0, 'so': 1.0, 'will': 1.0, 'seems': 1.0, 'elastic': 1.0, 'done': 1.0, 'be': 1.0, 'hand': 1.0, 'toddler': 1.0, 'squirming': 1.0, 'have': 1.0, 'sure': 1.0, 'get': 1.0, 'little': 1.0, 'is': 1.0, 'from': 1.0, 'buckles': 1.0, 'keeps': 1.0, 'sit': 1.0, 'death': 1.0, 'skin': 1.0, 'sweating': 1.0, 'metal': 1.0, 'old': 1.0, 'i': 3.0, 'repeated': 1.0, 'cover': 3.0, 'cut': 1.0, '13': 1.0, 'in': 4.0, 'about': 1.0, 'live': 1.0, 'you': 1.0, 'when': 1.0, 'am': 1.0, 'how': 1.0, 'one': 1.0, 'bought': 1.0, 'degree': 1.0, 'the': 4.0, 'florida': 1.0, 'and': 4.0, 'probably': 1.0, '95': 1.0, 'britax': 1.0, 'heat': 1.0, 'worried': 1.0, 'can': 1.0, 'but': 1.0, 'most': 1.0, 'my': 1.0, 'carseat': 1.0, 'burning': 1.0, 'having': 1.0, 'does': 1.0, 'stand': 1.0, 'down': 1.0, 'her': 2.0, 'south': 1.0, 'that': 1.0, 'a': 3.0, 's': 1.0, 'up': 1.0, 'nearly': 1.0, 'sturdy': 1.0, 'importantly': 1.0, 'hot': 2.0, 'this': 2.0, 'month': 1.0, 'it': 4.0, 'really': 2.0, 'constantly': 1.0, 'on': 2.0, 'to': 4.0, 'as': 1.0, 'seat': 1.0, 'difficult': 1.0, 'gets': 1.0}
Word element => {'weather': 1.0, 'presummer': 1.0, 'hot': 1.0, 'easy': 1.0, 'its': 1.0, 'fits': 1.0, 'my': 2.0, 'states': 1.0, 'would': 1.0, 'free': 1.0, 'heat': 1.0, 'have': 1.0, 'must': 1.0, 'leave': 1.0, 'definantly': 1.0, 'sunshades': 1.0, 'not': 1.0, 'to': 1.0, 'seat': 3.0, 'what': 1.0, 'car': 2.0, 'thicker': 2.0, 'bright': 1.0, 'so': 1.0, 'bit': 2.0, 'warm': 1.0, 'little': 3.0, 'totally': 1.0, 'dont': 1.0, 'this': 3.0, 'it': 6.0, 'taken': 1.0, 'covertible': 1.0, 'be': 2.0, 'job': 1.0, 'the': 9.0, 'say': 1.0, 'completely': 1.0, 'is': 4.0, 'more': 1.0, 'cooler': 2.0, 'keep': 1.0, 'if': 2.0, 'good': 1.0, 'sun': 1.0, 'on': 1.0, 'put': 1.0, 'think': 1.0, 'product': 2.0, 'for': 5.0, 'price': 1.0, 'does': 3.0, 'than': 1.0, 'inside': 1.0, 'especially': 1.0, 'one': 1.0, 'bought': 1.0, 'cool': 1.0, 'but': 3.0, 'will': 1.0, 'windows': 2.0, 'up': 1.0, 'are': 1.0, 'description': 1.0, 'and': 3.0, 'out': 1.0, 'son': 1.0, 'still': 2.0, 'great': 1.0, 'feel': 1.0, 'then': 1.0, 'again': 1.0, 'when': 1.0, 'off': 1.0, 'cover': 1.0, 'i': 3.0, 'were': 1.0, 'a': 5.0, 'could': 1.0, 'might': 1.0}
Word element => {'climates': 1.0, 'cold': 1.0, 'his': 1.0, 'wads': 1.0, 'it': 4.0, 'summer': 2.0, 'is': 1.0, 'flesh': 1.0, 'and': 3.0, 'not': 2.0, 'me': 1.0, 'being': 1.0, 'use': 1.0, 'buckles': 1.0, 'scorching': 1.0, 'does': 2.0, 'burning': 1.0, 'the': 6.0, 'while': 1.0, 'from': 2.0, 'son': 1.0, 'goes': 1.0, 'shade': 1.0, 'throughout': 1.0, 'we': 1.0, 'a': 1.0, 'cool': 1.0, 'sun': 2.0, 'into': 1.0, 'fingers': 1.0, 'keep': 3.0, 'main': 1.0, 'seat': 4.0, 'our': 1.0, 'to': 2.0, 'center': 1.0, 'of': 1.0, 'up': 1.0, 'fairly': 1.0, 'hot': 2.0, 'perk': 1.0, 'for': 2.0, 'my': 2.0, 'trying': 1.0, 'buckle': 1.0, 'must': 1.0, 'small': 1.0, 'on': 1.0, 'easy': 1.0}
Word element => {'complain': 1.0, 'trouble': 1.0, 'champ': 1.0, 'shade': 1.0, 'live': 1.0, 'how': 1.0, 'started': 3.0, 'i': 3.0, 'when': 2.0, 'daughter': 1.0, 'anymore': 1.0, 'doesn': 1.0, 'was': 3.0, 'seat': 1.0, 'to': 2.0, 'complaining': 1.0, 'my': 1.0, 't': 1.0, 'a': 2.0, 'we': 1.0, 'since': 1.0, 'lot': 1.0, 'easy': 1.0, 'hard': 1.0, 'this': 1.0, 'she': 3.0, 'it': 2.0, 'about': 1.0, 'april': 1.0, 'her': 2.0, 'only': 1.0, 'works': 1.0, 'texas': 1.0, 'knew': 1.0, 'car': 2.0, 'and': 3.0, 'the': 2.0, 'in': 3.0, 'cry': 1.0, 'weather': 1.0, 'hot': 1.0, 'has': 1.0, 'would': 1.0, 'complaints': 1.0, 'got': 1.0, 'glad': 1.0, 'find': 1.0, 'sun': 1.0, 'is': 1.0, 'put': 1.0, 'on': 1.0, 'like': 1.0}
Word element => {'seats': 1.0, 'other': 1.0, 'decided': 1.0, 'one': 1.0, 'buy': 1.0, 'waste': 1.0, 'difference': 1.0, 'super': 1.0, 'money': 1.0, 'but': 2.0, 'hot': 2.0, 'less': 1.0, 'slightly': 1.0, 'buckles': 1.0, 'makes': 1.0, 'noticed': 1.0, 'hguess': 1.0, 'not': 2.0, 'so': 1.0, 'keeps': 1.0, 'paper': 1.0, 'car': 2.0, 'careful': 1.0, 'the': 3.0, 'through': 1.0, 'trying': 1.0, 'be': 1.0, 'for': 1.0, 'fit': 1.0, 'product': 1.0, 'seat': 1.0, 'to': 4.0, 'somewhat': 1.0, 'i': 4.0, 'too': 1.0, 'going': 1.0, 't': 2.0, 's': 2.0, 'a': 3.0, 'don': 1.0, 'over': 1.0, 'poke': 1.0, 're': 1.0, 'pull': 1.0, 'my': 2.0, 'carseat': 1.0, 'it': 8.0, 'with': 1.0, 'is': 1.0, 'finger': 1.0, 'big': 1.0, 'britax': 1.0, 'boulevard': 1.0, 'works': 1.0, 'much': 2.0, 'was': 1.0, 'doesn': 1.0, 'you': 2.0, 'esp': 1.0, 'when': 3.0, 'easily': 1.0, 'have': 3.0, 'baby': 1.0, 'in': 1.0, 'think': 1.0, 'on': 1.0, 'stuff': 1.0, 'your': 1.0, 'arms': 1.0, 'pretty': 1.0, 'of': 1.0, 'reflectant': 1.0}
Word element => {'use': 1.0, 'forget': 1.0, 'we': 1.0, 'sometimes': 1.0, 'that': 1.0, 'our': 1.0, 's': 1.0, 'saved': 1.0, 'soooooo': 1.0, 'thing': 1.0, 'to': 1.0, 'comes': 1.0, 'it': 2.0, 'this': 1.0, 'only': 1.0, 'vegas': 1.0, 'times': 1.0, 'handy': 1.0, 'little': 1.0, 'one': 1.0, 'from': 1.0, 'a': 1.0, 'in': 2.0, 'burned': 1.0, 'bum': 1.0, 'the': 1.0, 'problem': 1.0, 'many': 1.0, 'is': 1.0}
Word element => {'do': 1.0, 'like': 1.0, 'car': 1.0, 'their': 1.0, 'windows': 1.0, 'have': 1.0, 'don': 1.0, 'they': 1.0, 'been': 1.0, 'playground': 1.0, 'carseat': 1.0, 'the': 8.0, 'it': 4.0, 'definitely': 1.0, 'very': 1.0, 'and': 2.0, 'sun': 1.0, 'help': 1.0, 'summer': 1.0, 'really': 1.0, 'live': 1.0, 'from': 1.0, 'while': 1.0, 'if': 1.0, 'being': 1.0, 'daughter': 1.0, 'someone': 1.0, 'when': 1.0, 'in': 2.0, 'i': 4.0, 'texas': 1.0, 'gets': 1.0, 'under': 1.0, 'so': 1.0, 'kept': 1.0, 'fact': 1.0, 'my': 1.0, 't': 2.0, 'we': 1.0, 'are': 1.0, 'tinted': 1.0, 'at': 1.0, 'actually': 1.0, 'love': 1.0, 'carseatcool': 1.0, 'has': 1.0, 'hot': 2.0, 'well': 1.0, 'keeping': 1.0, 'loved': 1.0, 'would': 1.0, 'doesn': 1.0, 'recommend': 1.0, 'as': 2.0, 'seat': 1.0, 'to': 1.0, 'especially': 1.0}
Word element => {'seat': 1.0, 'keeping': 1.0, 'job': 1.0, 'to': 1.0, 'seems': 1.0, 'does': 1.0, 'get': 1.0, 'we': 1.0, 'hot': 1.0, 'and': 1.0, 'the': 1.0, 'my': 1.0, 'this': 1.0, 'item': 1.0, 'do': 1.0, 'car': 2.0, 'its': 1.0, 'because': 1.0, 'it': 2.0, 'cool': 1.0, 'bought': 1.0, 'summer': 1.0, 'was': 1.0}
Word element => {'brand': 1.0, 'order': 1.0, 'should': 1.0, 'don': 1.0, 'toxic': 1.0, 'messy': 1.0, 'risk': 1.0, 'only': 1.0, 'will': 1.0, 'found': 1.0, 'this': 1.0, 'with': 1.0, 'covered': 1.0, 'be': 3.0, 'couple': 1.0, 'similar': 1.0, 'and': 2.0, 'but': 2.0, 'inside': 1.0, 'is': 2.0, 'fine': 1.0, 'hers': 1.0, 't': 1.0, 'might': 1.0, 'a': 3.0, 's': 1.0, 'another': 2.0, 'my': 1.0, 'of': 3.0, 'these': 1.0, 'the': 3.0, 'when': 1.0, 'mom': 1.0, 'mine': 2.0, 'months': 1.0, 'bought': 2.0, 'one': 3.0, 'product': 1.0, 'for': 2.0, 'two': 1.0, 'i': 7.0, 'after': 1.0, 'opened': 1.0, 'know': 1.0, 'which': 2.0, 'car': 2.0, 'it': 4.0, 'white': 2.0, 'fabric': 1.0, 'thing': 2.0, 'have': 2.0, 'if': 1.0, 'layer': 1.0, 'use': 1.0, 'in': 1.0, 'disintegrated': 1.0, 'powder': 1.0, 'able': 1.0, 'turned': 1.0, 'totally': 1.0, 'been': 1.0, 'into': 1.0, 'sort': 1.0, 'awful': 1.0, 'not': 3.0, 'to': 1.0, 'seat': 1.0, 'as': 2.0, 'would': 1.0}
Word element => {'though': 1.0, 'compact': 1.0, 'better': 1.0, 'do': 1.0, 'would': 1.0, 'of': 1.0, 'out': 1.0, 'baby': 1.0, 'after': 1.0, 'free': 1.0, 'stretch': 1.0, 'it': 9.0, 'omega': 1.0, 'car': 2.0, 'has': 1.0, 'hot': 1.0, 'for': 1.0, 'product': 1.0, 'who': 1.0, '1st': 1.0, 'handed': 1.0, 'store': 1.0, 'doesn': 2.0, 'places': 1.0, 'maybe': 1.0, 'building': 1.0, 'you': 1.0, 'when': 1.0, 'daughter': 1.0, 'even': 1.0, 'safety': 1.0, 'alpha': 1.0, 'my': 1.0, 'and': 1.0, 'block': 1.0, 'air': 1.0, 'in': 2.0, 'also': 1.0, 'over': 1.0, 'this': 1.0, 'pain': 1.0, 'gaps': 1.0, 'on': 1.0, 'smaller': 1.0, 'so': 1.0, 'from': 1.0, 'more': 1.0, 'completely': 1.0, 'is': 2.0, 's': 1.0, 't': 2.0, 'a': 3.0, 'seat': 5.0, 'all': 1.0, 'to': 2.0, 'use': 1.0, 'doubt': 1.0, 'especially': 1.0, 'putting': 1.0, 'taking': 2.0, 'cover': 1.0, 'off': 1.0, 'hands': 1.0, 'the': 4.0, 'job': 1.0, 'i': 1.0, 'two': 2.0}
Word element => {'that': 1.0, 'recommend': 1.0, 'burn': 1.0, 'won': 1.0, 'but': 1.0, 'be': 1.0, 'still': 1.0, 'll': 1.0, 'it': 2.0, 'munchkin': 1.0, 'your': 1.0, 'from': 1.0, 'bits': 1.0, 'their': 1.0, 'with': 1.0, 'ac': 1.0, 'in': 3.0, 'ones': 1.0, 'degree': 1.0, 'interior': 1.0, 'little': 1.0, 'f': 1.0, 'car': 3.0, 'burning': 1.0, '120': 1.0, 'placing': 1.0, 'lives': 1.0, 'up': 1.0, 'of': 1.0, 'warm': 1.0, 'metal': 1.0, 'live': 1.0, 'extreme': 1.0, 'the': 5.0, 'place': 1.0, 'degrees': 1.0, 'everyone': 1.0, 'an': 1.0, 'always': 1.0, '130': 1.0, 'summers': 2.0, 'us': 1.0, 'i': 2.0, 't': 1.0, 'we': 3.0, 'a': 1.0, 'area': 1.0, 'get': 1.0, '140': 1.0, 'is': 1.0, 'traumatic': 1.0, 'parent': 1.0, 'cover': 1.0, 'product': 1.0, 'where': 1.0, 'for': 2.0, 'even': 2.0, 'before': 1.0, 'though': 1.0, 'have': 1.0, 'any': 1.0, 'to': 2.0, 'seat': 1.0, 'all': 1.0, 'kids': 1.0, 'this': 2.0, 'crank': 1.0, 'helps': 1.0, 'keep': 1.0}
Word element => {'parts': 1.0, 'your': 2.0, 'towel': 1.0, 'see': 1.0, 'car': 1.0, 'parking': 1.0, 'cover': 1.0, 're': 1.0, 'you': 1.0, 'being': 1.0, 'if': 1.0, 'just': 1.0, 'heat': 1.0, 'more': 1.0, 'blocker': 1.0, 'sun': 2.0, 'carseat': 1.0, 'regarding': 1.0, 'kept': 1.0, 'also': 1.0, 'where': 1.0, 'but': 1.0, 'can': 1.0, 'stored': 1.0, 'most': 1.0, 'august': 1.0, 'this': 2.0, 'with': 1.0, 'skin': 1.0, 'it': 4.0, 'shield': 1.0, 'little': 1.0, 'than': 1.0, 'because': 1.0, 'burning': 1.0, 'ca': 1.0, 'always': 1.0, 'way': 1.0, 'one': 1.0, 'drove': 1.0, 'otherwise': 1.0, 'i': 3.0, 'in': 3.0, 'child': 1.0, 'up': 1.0, 'of': 4.0, 'handy': 1.0, 'metal': 2.0, 'too': 2.0, 'and': 1.0, 'from': 1.0, 'recently': 1.0, 'wa': 1.0, 'then': 1.0, 'through': 1.0, 'wanted': 1.0, 'small': 1.0, 'have': 1.0, 'help': 1.0, 'my': 1.0, 'forgot': 1.0, 'the': 5.0, 's': 1.0, 'a': 3.0, 't': 1.0, 'something': 1.0, 'keep': 2.0, 'his': 1.0, 'as': 2.0, 'to': 5.0, 'all': 2.0, 'seat': 1.0, 'didn': 1.0, 'cooler': 1.0, 'avoid': 1.0, 'time': 1.0, 'co': 1.0, 'against': 1.0, 'buckles': 1.0, 'hot': 1.0, 'seriously': 1.0, 'nv': 1.0, 'use': 1.0, 'about': 1.0}
Word element => {'investment': 1.0, 'parked': 1.0, 'sitting': 1.0, 'a': 1.0, 'when': 1.0, 'out': 1.0, 'keep': 1.0, 'cooler': 1.0, 'seat': 2.0, 'is': 1.0, 'don': 1.0, 'helps': 1.0, 'of': 1.0, 'metal': 1.0, 'in': 1.0, 'good': 1.0, 'sun': 1.0, 'parts': 1.0, 'definitely': 1.0, 'car': 2.0, 'hot': 1.0, 'the': 4.0, 't': 1.0, 'get': 1.0, 'blazing': 1.0}
Word element => {'reviews': 1.0, 'previous': 1.0, 'expected': 1.0, 'than': 1.0, 'more': 1.0, 'thin': 1.0, 'material': 1.0, 'use': 1.0, 'seatbelt': 1.0, 'nearly': 1.0, 'up': 1.0, 'times': 1.0, 'what': 1.0, 'when': 2.0, 'you': 1.0, 'have': 3.0, 'there': 1.0, 'does': 1.0, 'myself': 1.0, 'squirmy': 1.0, 'buckle': 1.0, 'help': 1.0, 'burned': 1.0, 'was': 1.0, 'chicco': 1.0, 'and': 3.0, 'my': 3.0, 'on': 5.0, 'much': 1.0, 'put': 1.0, 'this': 3.0, 'for': 1.0, 'using': 1.0, 'a': 4.0, 's': 2.0, 'fit': 1.0, 't': 2.0, 'but': 2.0, 'summer': 1.0, 'would': 1.0, 'weeks': 1.0, 'i': 8.0, 'been': 3.0, 'that': 2.0, 'tend': 1.0, 'wrap': 1.0, 'into': 1.0, 'about': 1.0, 'nextfit': 1.0, 'the': 10.0, 'of': 1.0, 'in': 3.0, 'seat': 5.0, 'our': 1.0, 'job': 1.0, 'pretty': 1.0, 'hoping': 1.0, 'to': 5.0, 'daughter': 1.0, 'pull': 1.0, 'gets': 1.0, 'very': 2.0, 'two': 1.0, 'little': 2.0, 'car': 6.0, 'hot': 2.0, 'had': 1.0, 'covered': 1.0, 'with': 1.0, 'sun': 1.0, 'it': 7.0, 'shade': 1.0, 'leaning': 1.0, 'substantial': 1.0, 'don': 1.0, 'buckles': 1.0, 'feel': 1.0, 'at': 1.0, 'is': 2.0, 'hard': 1.0, 'facing': 1.0, 'while': 1.0, 'one': 1.0, 'caveats': 1.0, 'rear': 1.0, 'jam': 1.0, 'all': 1.0, 'other': 1.0, 've': 1.0, 'down': 1.0, 'between': 1.0, 'back': 1.0, 'also': 2.0, 'awkward': 1.0, 'off': 1.0, 'where': 1.0, 're': 1.0, 'holding': 1.0, 'toddler': 1.0, 'wasn': 1.0, 'really': 1.0, 'found': 1.0, 'easy': 1.0, 'just': 1.0, 'throw': 1.0, 'based': 1.0, 'side': 1.0, 'not': 1.0}
Word element => {'will': 1.0, 'cool': 1.0, 'summer': 1.0, 'your': 1.0, 'when': 1.0, 'it': 3.0, 's': 2.0, 'whole': 1.0, 'comes': 1.0, 'very': 1.0, 'easy': 1.0, 'cover': 1.0, 'the': 1.0, 'keep': 1.0, 'seat': 2.0, 'car': 2.0, 'to': 1.0, 'useful': 1.0}
Word element => {'worth': 1.0, 'better': 1.0, 'be': 1.0, 'could': 1.0, 'extra': 1.0, 'layer': 1.0, 'that': 2.0, 'feel': 1.0, 'stars': 1.0, 'buckles': 2.0, 'scorching': 1.0, 'or': 1.0, 'was': 2.0, 'doesn': 3.0, 'about': 2.0, 'to': 3.0, 'my': 2.0, 'often': 1.0, 'came': 1.0, 'carseat': 1.0, 'c': 1.0, 'once': 1.0, 'south': 1.0, 'case': 1.0, 'humid': 1.0, 've': 1.0, 'year': 1.0, 'from': 1.0, 'around': 1.0, 'completely': 1.0, 'is': 2.0, 'more': 1.0, 'cool': 1.0, 'nearly': 1.0, 'decided': 1.0, 'underneath': 2.0, 'sun': 2.0, 'her': 6.0, 'does': 1.0, 'old': 1.0, 'keep': 1.0, 'would': 1.0, 'summer': 2.0, 'anymore': 2.0, 'help': 1.0, 'burned': 1.0, 'really': 3.0, 'gets': 1.0, 'if': 1.0, 'still': 2.0, 'daughter': 1.0, 'complaining': 1.0, 'seat': 4.0, 'in': 4.0, 'itself': 1.0, '2': 1.0, 'but': 3.0, 'work': 2.0, 'the': 9.0, 'without': 1.0, 's': 2.0, 'needed': 1.0, 'complain': 1.0, 'started': 1.0, 'hot': 8.0, 'wouldn': 1.0, 'didn': 2.0, 'this': 3.0, 'she': 1.0, 'live': 1.0, 'i': 7.0, 'well': 1.0, 'roundabout': 1.0, 'it': 10.0, 'shade': 1.0, 'on': 2.0, 'britax': 1.0, 't': 6.0, 'carset': 1.0, 'fairly': 1.0, 'were': 1.0, 'throw': 1.0, 'sit': 1.0, 'especially': 1.0, 'bare': 1.0, 'get': 2.0, 'legs': 1.0, 'enough': 1.0, 'which': 1.0, 'b': 1.0, 'tried': 1.0, 'given': 1.0, 'so': 2.0, 'bit': 2.0, 'mere': 1.0, 'out': 1.0, 'for': 1.0, '10': 2.0, 'too': 1.0, 'try': 1.0, 'a': 6.0, 'small': 1.0, 'just': 3.0, 'by': 1.0, 'little': 3.0, 'blanket': 3.0, 'helps': 1.0, '5': 1.0}
Word element => {'really': 1.0, 'using': 1.0, 'read': 1.0, 'needed': 1.0, 'coast': 1.0, 'never': 1.0, 'gulf': 1.0, 'the': 3.0, 'behind': 1.0, 'in': 1.0, 'but': 1.0, 'suggested': 1.0, 'when': 1.0, 'this': 4.0, 'it': 4.0, 'constant': 1.0, '34': 2.0, 'of': 2.0, 'up': 1.0, 'live': 1.0, 'until': 1.0, 'is': 2.0, 'amazon': 2.0, 'why': 1.0, 'stick': 1.0, 'i': 6.0, 'product': 3.0, 'love': 1.0, 'for': 1.0, 'cheap': 1.0, 'works': 1.0, 'do': 1.0, 'and': 2.0, 'days': 1.0, '100': 1.0, 'year': 1.0, 'temps': 1.0, 'several': 1.0, 'months': 1.0, 'out': 1.0, 'foolproof': 1.0, 'just': 1.0, 'not': 1.0, 'texas': 1.0, 'knew': 1.0, 'roll': 1.0, 'carseat': 1.0, 'a': 1.0, 'we': 1.0, 'are': 1.0}
Word element => {'other': 1.0, 'in': 1.0, 'use': 1.0, 'that': 1.0, 'carrier': 1.0, 'car': 1.0, 'infant': 1.0, 'over': 1.0, 'well': 1.0, 'had': 1.0, 'i': 3.0, 'it': 3.0, 'with': 1.0, 'and': 4.0, 'base': 1.0, 'chose': 1.0, 'baby': 2.0, 'snug': 1.0, 'have': 2.0, 'we': 3.0, 'a': 6.0, 'brand': 1.0, 'am': 1.0, 'shade': 1.0, 'work': 2.0, 'but': 1.0, 'difficult': 1.0, 'to': 5.0, 'seat': 1.0, 'put': 1.0, 'on': 2.0, 'is': 3.0, 'one': 1.0, 'fit': 1.0, 'for': 2.0, 'britax': 1.0, 'larger': 1.0, 'carseat': 2.0, 'better': 1.0, 'if': 1.0, 'which': 1.0, 'hand': 1.0, 'hold': 1.0, 'get': 1.0, 'sure': 1.0, 'chicco': 1.0, 'backseat': 1.0, 'maneuver': 1.0, 'fits': 1.0, 'try': 1.0, 'the': 4.0, 'large': 1.0, 'corners': 1.0, 'new': 1.0, 'would': 1.0, 'advocate': 1.0, 'smaller': 1.0, 'reason': 1.0}
Word element => {'in': 1.0, 'carseat': 1.0, 'not': 1.0, 'but': 1.0, 'gets': 1.0, 'dog': 1.0, 'have': 1.0, 'we': 1.0, 'the': 3.0, 'everywhere': 1.0, 'car': 1.0, 'dogs': 1.0, 'cool': 1.0, 'and': 2.0, 'also': 1.0, 'hair': 1.0, 'it': 1.0, 'will': 1.0, 'clean': 1.0, 'keeps': 1.0, 'seat': 1.0, 'keep': 1.0}
Word element => {'works': 1.0, 'absolutely': 1.0, 'truly': 1.0, 'worth': 1.0, 'seat': 1.0, 'car': 1.0, 'off': 1.0, 'on': 1.0, 'is': 1.0, 'how': 1.0, 'considering': 1.0, 'but': 1.0, 'qualifty': 1.0, 'poor': 1.0, 'i': 2.0, 'often': 1.0, 'one': 1.0, 'big': 1.0, 'as': 1.0, 'must': 1.0, 'bought': 1.0, '34': 2.0, 'well': 1.0, 'pulled': 1.0, 'a': 3.0, 'are': 1.0, 'sound': 1.0, 'savers': 1.0, 'have': 2.0, 'it': 1.0, 'this': 1.0, 'recommend': 1.0, 'might': 1.0, 'little': 1.0, 'the': 1.0, 'these': 1.0, 'two': 1.0, 'had': 1.0, 'which': 1.0, 'money': 1.0, 'simply': 1.0, 'wore': 1.0, 'out': 1.0, 'and': 3.0, 'burn': 1.0, 'ripped': 1.0}
Word element => {'storage': 1.0, 'connected': 1.0, 'ask': 1.0, 'about': 1.0, 'tons': 1.0, 'had': 1.0, 'other': 1.0, 'during': 1.0, 'four': 1.0, 'i': 1.0, 'of': 1.0, 'up': 1.0, 'keep': 1.0, 'to': 2.0, 'our': 2.0, 'summer': 1.0, 'months': 1.0, 'cool': 2.0, 'these': 1.0, 'roll': 1.0, 'nice': 2.0, 'car': 2.0, 'hot': 1.0, 'moms': 1.0, 'and': 2.0, 'me': 1.0, 'get': 1.0, 'seats': 1.0, 'so': 1.0, 'have': 1.0, 'small': 1.0, 'them': 1.0, 'when': 1.0, 'kids': 1.0, 'they': 3.0, 'worrying': 1.0, 'see': 1.0, 'loading': 1.0, 'in': 1.0, 'the': 4.0, 'without': 1.0, 'waiting': 1.0, 'for': 2.0, 'or': 1.0, 'burnt': 1.0, 'will': 1.0, 'even': 1.0, 'elastic': 1.0, 'ac': 1.0, 'with': 1.0}
Word element => {'in': 1.0, 'child': 1.0, 'baby': 1.0, 'way': 2.0, 'still': 1.0, 'are': 1.0, 'sometimes': 1.0, 'doesnt': 1.0, 'wouldnt': 1.0, 'everyday': 1.0, 'keeping': 2.0, 'so': 1.0, 'great': 1.0, 'big': 1.0, 'part': 1.0, 'hott': 1.0, 'from': 1.0, 'to': 2.0, 'seat': 1.0, 'outside': 1.0, 'carseat': 3.0, 'used': 1.0, 'than': 1.0, 'does': 3.0, 'a': 2.0, 'ago': 1.0, 'my': 1.0, 'fits': 1.0, 'i': 4.0, 'ordered': 1.0, 'about': 1.0, 'it': 8.0, 'this': 2.0, 'its': 1.0, 'only': 1.0, 'weeks': 1.0, 'most': 1.0, 'but': 2.0, 'nicely': 1.0, 'and': 6.0, 'getting': 1.0, 'product': 1.0, 'for': 1.0, 'fit': 1.0, 'have': 3.0, 'sunlight': 1.0, 'good': 1.0, 'the': 7.0, 'job': 2.0, 'off': 1.0, 'direct': 1.0, 'of': 1.0, 'worried': 1.0, 'heat': 1.0, 'or': 1.0, 'buckles': 2.0, 'hot': 2.0, 'was': 1.0, 'caomplaint': 1.0, 'plastic': 2.0, 'how': 1.0, 'more': 1.0, 'is': 4.0, 'that': 1.0, 'depending': 1.0, 'put': 1.0, '3': 1.0, 'on': 2.0, 'if': 1.0}
Word element => {'way': 1.0, 'suggest': 1.0, 'did': 1.0, 'glad': 1.0, 'you': 1.0, 'am': 1.0, 'sure': 1.0, 'radiant': 1.0, 'carseat': 1.0, 'baking': 1.0, 'us': 1.0, 'let': 1.0, 'know': 1.0, 'cannot': 1.0, 'handicapped': 1.0, 'granddaughter': 1.0, 'find': 1.0, 'because': 1.0, 'than': 1.0, '114': 1.0, 'access': 1.0, 'on': 1.0, '104': 1.0, 'registered': 2.0, 'she': 2.0, 'it': 2.0, 'found': 1.0, 'inside': 2.0, 'windows': 1.0, 'up': 1.0, 'interior': 1.0, 'the': 17.0, 'even': 1.0, 'have': 1.0, 'truck': 6.0, 'i': 7.0, 'in': 7.0, 'summer': 1.0, 'is': 4.0, 'sun': 4.0, 'mommy': 2.0, 'and': 5.0, 'nc': 1.0, 'temperature': 1.0, 'hot': 1.0, 'removed': 1.0, 'car': 6.0, 'with': 1.0, 'of': 4.0, 'direct': 1.0, 'keep': 1.0, 'tinted': 1.0, 'cab': 3.0, 'another': 1.0, 'checked': 1.0, 'my': 5.0, 'heat': 2.0, 'silver': 1.0, 'placed': 1.0, 'live': 1.0, 'shade': 3.0, 'that': 3.0, 'helper': 2.0, 'thermometer': 3.0, '93': 1.0, 'cool': 1.0, 'experiment': 1.0, 'one': 1.0, 'severely': 1.0, 'actually': 1.0, 'where': 1.0, 'for': 1.0, 'under': 1.0, 'a': 1.0, 's': 2.0, 'degrees': 2.0, 'hotter': 1.0, 'to': 2.0, 'seat': 6.0, 'outside': 1.0, 'was': 2.0, 'can': 1.0, 'sitting': 1.0, 'her': 1.0, 'sunlight': 1.0, 'hours': 1.0}
Word element => {'hope': 1.0, 'and': 1.0, 'them': 1.0, 'on': 1.0, 'put': 1.0, 'doesn': 1.0, 'were': 1.0, 'however': 1.0, 'guess': 1.0, 'phoenix': 1.0, 'convinced': 1.0, 'hurt': 1.0, 'when': 1.0, 'i': 3.0, 'buy': 1.0, 'inside': 1.0, 'an': 1.0, 'oven': 1.0, 'not': 1.0, 'it': 1.0, 'she': 1.0, 'feels': 1.0, 'my': 1.0, 'they': 2.0, 'that': 1.0, 'these': 2.0, 'the': 4.0, 'suggested': 1.0, 'vehicles': 1.0, 'set': 1.0, 'of': 2.0, 'going': 1.0, 'we': 1.0, 't': 2.0, 'a': 1.0, 'see': 1.0, 'in': 1.0, 'degrees': 1.0, 'cheap': 1.0, 'for': 2.0, '115': 1.0, 'seat': 1.0, 'our': 1.0, 'to': 3.0, 'outside': 1.0, 'wife': 1.0, 'from': 1.0, 'car': 1.0, 'is': 1.0, 'be': 1.0, 'so': 2.0, 'but': 1.0, 'work': 1.0, 'can': 1.0, 'doing': 1.0, 'its': 1.0, 'much': 1.0, 'best': 1.0, 'm': 1.0, 'protect': 1.0}
Word element => {'new': 1.0, 'registry': 1.0, 'september': 1.0, 'one': 2.0, 'due': 1.0, 'beat': 1.0, 'can': 1.0, 'for': 2.0, 'you': 1.0, 'when': 1.0, 'use': 1.0, 'front': 1.0, 'back': 1.0, 'pocket': 1.0, 'ball': 1.0, 'smash': 1.0, 'i': 3.0, 'away': 1.0, 'load': 1.0, 'not': 1.0, 'me': 1.0, 'of': 3.0, 'rest': 1.0, 'so': 1.0, 'buckles': 1.0, 'end': 1.0, 'much': 1.0, 'car': 3.0, 'well': 1.0, 'hot': 1.0, 'area': 1.0, 'get': 1.0, 'and': 6.0, 'with': 3.0, 'just': 2.0, 'greater': 1.0, 'it': 6.0, 'allows': 1.0, 'drive': 1.0, 'this': 2.0, 'in': 2.0, 'still': 1.0, 'an': 1.0, 'toddler': 2.0, 'live': 1.0, 'shade': 2.0, 'phoenix': 1.0, 'at': 1.0, 'tinted': 2.0, 'marks': 1.0, 'the': 13.0, 'metro': 1.0, 'even': 1.0, 'cooler': 1.0, 'windows': 2.0, 'into': 2.0, 'that': 1.0, 'suv': 1.0, 'hurts': 1.0, 'as': 1.0, 'seat': 3.0, 'to': 2.0, 't': 1.0, 'a': 1.0, 'we': 1.0, 's': 1.0, 'could': 1.0, 'have': 1.0, 'leave': 1.0, 'is': 1.0, 'right': 1.0, 'burn': 1.0, 'stuff': 1.0, 'on': 3.0, 'another': 1.0, 'my': 3.0, 'little': 3.0, 'legs': 1.0, 'than': 1.0, 'sun': 2.0, 'm': 1.0, 'price': 1.0, 'best': 1.0, 'touch': 1.0, 'keeps': 1.0}
Word element => {'this': 1.0, 'think': 1.0, 'really': 1.0, 'parts': 1.0, 'belt': 1.0, 'touching': 1.0, 'hate': 1.0, 'use': 1.0, 'not': 1.0, 'if': 1.0, 'hot': 1.0, 'well': 3.0, 'carrier': 1.0, 'cover': 1.0, 'and': 2.0, 'like': 2.0, 'in': 1.0, 'it': 7.0, 'with': 1.0, 'be': 1.0, 'seems': 2.0, 'also': 1.0, 'will': 4.0, 'but': 1.0, 'work': 2.0, 'baby': 2.0, 'don': 1.0, 'the': 4.0, 'need': 1.0, 'due': 1.0, 'june': 1.0, 'keep': 1.0, 'at': 1.0, 'booster': 2.0, 'is': 1.0, 'left': 1.0, 'until': 1.0, 'period': 1.0, 'from': 1.0, 'son': 1.0, 'seat': 4.0, 'as': 1.0, 'looking': 1.0, 'cooler': 1.0, 'should': 1.0, 'car': 1.0, 'product': 1.0, 'for': 3.0, 'long': 1.0, 'of': 1.0, 'may': 1.0, 'hopefully': 1.0, 'my': 1.0, 't': 1.0, 'a': 1.0, 's': 1.0, 'time': 1.0, 'so': 1.0, 'i': 3.0}
Word element => {'touches': 1.0, 'places': 1.0, 'top': 1.0, 'great': 1.0, 'makes': 1.0, 'will': 1.0, 'also': 1.0, 'elastic': 1.0, 'with': 1.0, 'in': 1.0, 'hold': 1.0, 'and': 1.0, 'together': 1.0, 'scrunch': 1.0, 'just': 1.0, 'bottom': 1.0, 'rubberband': 2.0, 'this': 2.0, 'only': 1.0, 'car': 4.0, 'getting': 1.0, 'free': 1.0, 'away': 1.0, 'of': 1.0, 'parked': 1.0, 'where': 2.0, 'for': 2.0, 'was': 2.0, 'you': 1.0, 'when': 1.0, 'm': 1.0, 'i': 2.0, 'touch': 1.0, 'thing': 2.0, 's': 1.0, 'a': 3.0, 'hot': 1.0, 'well': 1.0, 'at': 1.0, 'keep': 2.0, 'as': 1.0, 'outside': 1.0, 'to': 4.0, 'seat': 4.0, 'not': 1.0, 'cover': 3.0, 'my': 1.0, 'does': 1.0, 'wrap': 1.0, 'place': 1.0, 'the': 11.0, 'job': 1.0, 'from': 1.0, 'while': 1.0, 'cool': 1.0, 'entire': 3.0, 'it': 3.0, 'felt': 1.0, 'around': 1.0, 'is': 2.0, 'dust': 2.0, 'child': 2.0, 'over': 1.0, 'degress': 1.0, 'can': 1.0, '80': 1.0, 'but': 1.0, 'your': 1.0, 'put': 1.0, 'easy': 1.0, 'there': 1.0, 'very': 2.0, 'f': 1.0, 'little': 1.0, 'looking': 1.0, 'extra': 1.0}
Word element => {'perfectly': 1.0, 'britax': 1.0, 'worth': 1.0, 'low': 1.0, 'with': 1.0, 'over': 2.0, 'wear': 1.0, 'thin': 1.0, 'very': 1.0, 'was': 1.0, 'have': 1.0, 'touched': 1.0, 'is': 2.0, 'which': 1.0, 'yesterday': 1.0, 'day': 2.0, 'only': 1.0, 'works': 1.0, 'direct': 1.0, 'parked': 1.0, 'of': 1.0, 'surprised': 1.0, 'touch': 1.0, 'i': 8.0, 'so': 1.0, 'bit': 1.0, 'time': 2.0, 'well': 2.0, 'has': 1.0, 'hot': 3.0, 'warm': 1.0, 'old': 1.0, 'metal': 1.0, 'car': 3.0, 'mo': 1.0, 'seat': 1.0, 'all': 2.0, 'to': 1.0, 'sunlight': 1.0, 'her': 1.0, '21': 1.0, 'gets': 1.0, 'in': 3.0, 'start': 1.0, 'spend': 1.0, 'fits': 1.0, 'my': 2.0, 'the': 3.0, 'could': 1.0, 'a': 3.0, 's': 2.0, 't': 1.0, 'because': 1.0, 'few': 1.0, 'barely': 1.0, 'when': 1.0, 'am': 1.0, 'times': 1.0, 'too': 1.0, 'asking': 1.0, 'and': 6.0, 'get': 1.0, 'every': 1.0, 'az': 1.0, 'expect': 1.0, 'she': 1.0, 'it': 12.0, 'how': 1.0, 'extremely': 1.0, 'had': 2.0, 'thought': 1.0, 've': 1.0, 'something': 1.0, 'price': 1.0, '34': 2.0, 'd': 1.0, 'take': 1.0, 'here': 1.0, 'chance': 1.0, 'off': 1.0, 'legs': 1.0, 'eight': 1.0, 'bucks': 1.0, 'on': 2.0, 'got': 1.0, 'didn': 1.0, 'but': 1.0, 'can': 1.0, 'work': 2.0}
Word element => {'complain': 1.0, 'doesn': 1.0, 'she': 1.0, 'now': 1.0, 'that': 2.0, 'kept': 1.0, 'wife': 1.0, 'in': 1.0, 'complaining': 1.0, 'well': 1.0, 'my': 2.0, 'booster': 1.0, 't': 1.0, 'the': 1.0, 'her': 2.0, 'works': 1.0, 'product': 2.0, 'older': 1.0, 'this': 2.0, 'seat': 2.0, 'is': 2.0, 'daughter': 1.0, 'too': 1.0, 'car': 1.0, 'hot': 2.0, 'and': 1.0, 'sun': 1.0, 'purchase': 1.0}
Word element => {'they': 1.0, 'sometimes': 1.0, 'baby': 1.0, 'them': 1.0, 'burn': 1.0, 'anymore': 1.0, 'parts': 1.0, '2nd': 1.0, 'got': 1.0, 'even': 1.0, 'so': 1.0, 'practically': 1.0, 'did': 1.0, 'fingers': 1.0, 'nothing': 1.0, 'probably': 1.0, 'and': 2.0, 'difference': 1.0, 'car': 1.0, 'literally': 1.0, 'aren': 1.0, 'can': 1.0, 'hot': 3.0, 'has': 1.0, 'i': 4.0, 'roast': 1.0, 'tried': 1.0, 'summer': 1.0, 'slow': 1.0, 'your': 1.0, 'on': 2.0, 'bumbum': 1.0, 'in': 1.0, 't': 1.0, 's': 4.0, 'a': 4.0, 'new': 1.0, 'would': 1.0, 've': 1.0, 'state': 1.0, 'metal': 1.0, 'warm': 1.0, 'you': 1.0, 'cook': 2.0, 'of': 1.0, 'being': 1.0, 'covering': 1.0, 'for': 1.0, 'where': 1.0, 'the': 5.0, 'are': 1.0, 'scorching': 1.0, 'little': 1.0, 'inside': 1.0, 'it': 1.0, 'this': 2.0, 'with': 2.0, 'towel': 1.0, 'shade': 1.0, 'live': 1.0, 'made': 1.0, 'frying': 1.0, 'my': 3.0, 'to': 1.0, 'seat': 4.0, 'just': 2.0, 'bought': 1.0, 'one': 2.0, 'huge': 1.0, 'that': 3.0}
Word element => {'s': 1.0, 'think': 1.0, 'i': 1.0, 'helpful': 1.0, 'it': 1.0, 'without': 1.0, 'that': 2.0, 'soo': 1.0, 'we': 1.0, 'don': 2.0, 'hot': 1.0, 'any': 1.0, 'have': 1.0, 't': 2.0, 'on': 1.0, 'metal': 2.0, 'the': 2.0, 'seat': 1.0, 'car': 2.0, 'gets': 1.0}
Word element => {'still': 1.0, 'gets': 1.0, 'from': 1.0, 'off': 1.0, 'heat': 1.0, 'keeping': 1.0, 'it': 5.0, 'this': 1.0, 'with': 1.0, 'pleasantly': 1.0, 'outside': 1.0, 'seat': 2.0, 'any': 1.0, 'but': 1.0, 'surprised': 1.0, 'when': 1.0, 'i': 2.0, 'read': 1.0, 'lot': 1.0, 'hot': 2.0, 'well': 1.0, 'real': 1.0, '70': 1.0, 'rip': 1.0, 'of': 2.0, 'arrived': 1.0, 'reviews': 1.0, 'had': 2.0, 'was': 1.0, 'my': 2.0, 'often': 1.0, 'thing': 1.0, 'and': 4.0, 'did': 1.0, 'if': 2.0, 'the': 6.0, 'job': 2.0, 'quite': 1.0, 'good': 1.0, 'a': 2.0, 't': 1.0, 'we': 2.0, 'britax': 1.0, 'aggressive': 1.0, 'haven': 1.0, 'get': 1.0, 'tears': 1.0, 'use': 1.0, 'burning': 1.0, 'expectations': 1.0, 'does': 2.0, 'maybe': 1.0, 'low': 1.0, 'were': 1.0, 'for': 1.0, 'fit': 1.0, 'product': 1.0, 'super': 1.0, 'would': 1.0}
Word element => {'using': 1.0, 'after': 1.0, 'extremely': 1.0, 'feel': 1.0, 'still': 1.0, 'buckles': 1.0, 'heat': 1.0, 'seat': 1.0, 'not': 1.0, 'or': 1.0, 'does': 1.0, 'if': 1.0, 'hot': 2.0, 'car': 1.0, 'help': 1.0, 'my': 1.0, 'seems': 1.0, 'in': 1.0, 'entrap': 1.0, 'baby': 1.0, 'difference': 1.0, 'and': 3.0, 'hate': 1.0, 'putting': 1.0, 'i': 2.0, 'thought': 1.0, 'it': 3.0, 'this': 1.0, 'might': 1.0, 'the': 3.0, 't': 1.0, 'can': 1.0, 'summer': 1.0, 'really': 1.0, 'seem': 1.0, 'to': 2.0, 'during': 1.0, 'tell': 1.0, 'a': 1.0}
Word element => {'use': 1.0, 'handy': 1.0, 'easily': 1.0, 'making': 1.0, 'away': 1.0, 'child': 1.0, 'folds': 1.0, 'up': 1.0, 'to': 1.0, 'heating': 1.0, 'from': 1.0, 'this': 1.0, 'seat': 1.0, 'really': 1.0, 'a': 1.0, 'does': 1.0, 'was': 1.0, 'idea': 1.0, 'the': 2.0, 'prevent': 1.0, 'great': 1.0, 'it': 3.0, 'sun': 1.0}
Word element => {'but': 1.0, 's': 1.0, 'carseat': 1.0, 'baby': 2.0, 'our': 1.0, 'of': 1.0, 'is': 1.0, 'really': 1.0, 'temp': 1.0, 'the': 3.0, 'holding': 1.0, 'find': 1.0, 'definitely': 1.0, 'other': 1.0, 'i': 1.0, 'one': 1.0, 'difficult': 1.0, 'to': 1.0, 'get': 1.0, 'lowers': 1.0, 'on': 1.0, 'this': 1.0, 'it': 1.0, 'with': 1.0, 'hand': 1.0}
Word element => {'install': 1.0, 'to': 1.0, 'easy': 1.0, 'my': 1.0, 'loves': 1.0, 'it': 1.0, 'and': 1.0, 'very': 1.0, 'his': 1.0, 'new': 1.0, 'seat': 1.0, 'son': 1.0, 'is': 1.0, 'comfortable': 1.0}
Word element => {'members': 1.0, 'back': 1.0, 'brings': 1.0, 'amazon': 1.0, 'hope': 1.0, 'it': 1.0, 'year': 1.0, 'likes': 1.0, 'name': 1.0, 'was': 1.0, 'easy': 1.0, 'that': 3.0, 'reviews': 1.0, 'install': 1.0, 'this': 4.0, 'only': 1.0, 'thingabout': 1.0, 'com': 1.0, 'for': 5.0, 'three': 1.0, 'since': 1.0, 'boy': 1.0, 'cup': 1.0, 'as': 2.0, 'to': 3.0, 'seat': 9.0, 'good': 3.0, 'little': 1.0, 'very': 1.0, 'looked': 1.0, 'from': 1.0, 'best': 1.0, 'the': 6.0, 'reach': 1.0, 'market': 1.0, 'i': 1.0, 'view': 1.0, 'were': 1.0, 'low': 1.0, 'not': 1.0, 'minor': 1.0, 'around': 1.0, 'is': 2.0, 'side': 1.0, 'saw': 1.0, 'holder': 1.0, 'and': 2.0, 'too': 1.0, 'aside': 1.0, 'on': 1.0, 's': 1.0, 'a': 1.0, 'we': 1.0, 'one': 1.0, 'bought': 1.0, 'purchase': 1.0, 'my': 3.0, 'another': 1.0, 'old': 2.0, 'brand': 1.0}
Word element => {'machine': 1.0, 'cushion': 1.0, 'threw': 1.0, 'new': 2.0, 'storage': 1.0, 'out': 1.0, '3': 1.0, 'just': 1.0, 'life': 1.0, 'also': 1.0, 'now': 1.0, 'limit': 1.0, 'in': 1.0, 'said': 1.0, 'reviews': 1.0, 'other': 1.0, 'of': 2.0, 'this': 4.0, 'only': 1.0, 'old': 1.0, 'i': 3.0, 'husband': 1.0, 'was': 2.0, 'our': 1.0, 'to': 1.0, 'everyone': 1.0, 'washing': 1.0, '6': 1.0, 'battery': 1.0, 'about': 4.0, 'baby': 3.0, 'it': 4.0, 'she': 2.0, 'home': 1.0, 'used': 1.0, 'took': 1.0, 'loved': 1.0, 'hospital': 1.0, 'chair': 4.0, 'until': 1.0, 'time': 2.0, 'rave': 1.0, 'but': 1.0, 'understand': 1.0, 'from': 2.0, 'nickname': 1.0, 'the': 10.0, 'my': 4.0, 'daughter': 2.0, 'totally': 1.0, 'gave': 1.0, 'came': 1.0, 'little': 2.0, 'timer': 1.0, 'daughters': 1.0, 'is': 4.0, 'having': 1.0, 'we': 3.0, 'a': 1.0, 'bunny': 2.0, 'who': 1.0, '1st': 1.0, 'friend': 2.0, 'love': 3.0, 'for': 2.0, 'actually': 1.0, 'negative': 1.0, 'know': 1.0, 'vibration': 1.0, 'like': 2.0, 'months': 1.0, 'one': 1.0}
Word element => {'3': 1.0, 'go': 1.0, 'will': 1.0, 'a': 2.0, 'been': 1.0, 'has': 1.0, 'is': 2.0, 'good': 1.0, 'think': 2.0, 'jump': 1.0, 'don': 1.0, '6months': 1.0, 'at': 1.0, 'slow': 1.0, 'to': 3.0, 'was': 2.0, 'like': 1.0, 'as': 1.0, 'son': 1.0, 'decided': 1.0, 'decision': 1.0, 'old': 1.0, 'i': 3.0, 'happy': 1.0, 'my': 1.0, 'breastfeed': 1.0, 'it': 1.0, 'with': 1.0, 'he': 3.0, 'level': 3.0, 'we': 1.0, 'frustrated': 1.0, 't': 1.0, '2': 1.0, 'the': 2.0, 'nipple': 1.0, 'seemed': 1.0, '1': 1.0, 'and': 1.0, 'getting': 1.0, 'how': 1.0}
Word element => {'1st': 1.0, 'of': 1.0, 'flow': 1.0, 'frustrated': 1.0, 'change': 1.0, 'must': 1.0, 'dr': 1.0, 'lot': 1.0, 'a': 1.0, 'helps': 1.0, 'you': 1.0, 's': 1.0, 'will': 1.0, 'with': 2.0, 'brown': 1.0, 'the': 4.0, 'nipple': 2.0, '2nd': 1.0, 'when': 1.0, 'colic': 1.0, 'or': 1.0, 'they': 2.0, '3': 1.0, 'turn': 1.0, 'slow': 1.0, 'to': 1.0, 'mo': 1.0, 'get': 1.0, 'stage': 2.0}
Word element => {'thank': 1.0, 'will': 1.0, 'baby': 1.0, 'we': 2.0, 'this': 2.0, 'to': 1.0, 'product': 1.0, 'on': 1.0, 'is': 1.0, 'the': 1.0, 'nipple': 1.0, 'you': 1.0, 'that': 2.0, 'latch': 1.0, 'like': 1.0, 'only': 1.0, 'our': 1.0, 'found': 1.0}
Word element => {'here': 1.0, 'online': 1.0, 'really': 1.0, 'you': 1.0, 'item': 1.0, 'on': 1.0, 'an': 1.0, 'although': 1.0, 'quick': 1.0, 'at': 1.0, 'stores': 1.0, 'buy': 1.0, 'mortar': 1.0, 'do': 1.0, 'and': 1.0, 'to': 4.0, 'find': 1.0, 'gift': 1.0, 'dr': 1.0, 'a': 1.0, 'as': 3.0, 'very': 2.0, 'own': 1.0, 'if': 2.0, 'parents': 1.0, 'for': 1.0, 'in': 1.0, 'they': 2.0, 'more': 1.0, 'replace': 1.0, 'the': 1.0, 'these': 1.0, 'have': 1.0, 'all': 1.0, 'babies': 1.0, 'wide': 1.0, 'much': 1.0, 'useful': 1.0, 'brown': 1.0, 'neck': 1.0, 'cheaper': 1.0, 'add': 1.0, 'bottles': 1.0, 'sell': 1.0, 'few': 1.0, 'too': 1.0, 'brick': 1.0}
Word element => {'regular': 1.0, 'tall': 1.0, 'switching': 1.0, 'up': 1.0, 'we': 1.0, 'her': 1.0, 'whole': 1.0, '8': 1.0, 'all': 1.0, 'wide': 1.0, 'oz': 1.0, 'mouth': 3.0, 'but': 1.0, 'ended': 1.0, 'baby': 2.0, 'my': 2.0, 'are': 1.0, 'nipple': 2.0, 't': 1.0, 'the': 5.0, 'be': 1.0, 'selling': 1.0, 'to': 2.0, 'nipples': 2.0, 'can': 1.0, 'huge': 1.0, 'get': 1.0, 'and': 5.0, 'it': 1.0, 'mos': 1.0, 'a': 1.0, 'bottles': 2.0, 'might': 1.0, 'lot': 1.0, 'take': 1.0, 's': 1.0, 'in': 2.0, 'their': 1.0, '4': 1.0}
Word element => {'3': 1.0, 'baby': 1.0, 'when': 1.0, '2': 1.0, 'level': 1.0, 'using': 1.0, 'the': 1.0, 'started': 1.0, 'say': 1.0, 'old': 1.0, 'much': 1.0, 'to': 1.0, 'months': 1.0, 'about': 2.0, 'nipples': 1.0, 'they': 1.0, 'these': 1.0, 'was': 1.0, 'not': 1.0, 'expected': 1.0, 'work': 1.0, 'as': 1.0}
Word element => {'get': 1.0, 'add': 1.0, 'you': 1.0, 'if': 1.0, 'also': 1.0, 'fast': 1.0, 'separately': 1.0, 'doesn': 1.0, 'was': 2.0, 'the': 3.0, 'clogged': 1.0, '2': 1.0, 'my': 2.0, 'dr': 1.0, 'in': 1.0, 'brown': 1.0, 'with': 1.0, 'a': 1.0, 'we': 1.0, 't': 2.0, 's': 1.0, 'unlike': 1.0, 'buy': 1.0, 'old': 1.0, 'set': 1.0, 'always': 1.0, 'came': 1.0, 'they': 2.0, 'leak': 1.0, 'nipples': 3.0, 'rice': 1.0, 'bottles': 1.0, 'it': 1.0, 'month': 1.0, 'she': 3.0, 'size': 3.0, 'bottle': 1.0, 'so': 1.0, 'don': 1.0, 'at': 1.0, 'to': 2.0, 'our': 1.0, 'all': 1.0, 'perfectly': 1.0, '8': 1.0, 'had': 1.0, 'flow': 1.0, 'preemie': 1.0, 'is': 1.0, 'fit': 1.0, 'for': 1.0, '1': 2.0, 'great': 1.0, 'until': 1.0, '4': 1.0, 'months': 1.0, 'because': 1.0, 'drank': 1.0, 'and': 1.0, 'too': 1.0}
Word element => {'separately': 1.0, 'making': 1.0, 'nipples': 1.0, 'should': 1.0, '8': 1.0, 'have': 1.0, 'instead': 1.0, 'larger': 1.0, 'do': 1.0, 'ounce': 1.0, '1': 1.0, 'though': 1.0, 'of': 1.0, 'forcing': 1.0, 'gripe': 1.0, 'nipple': 2.0, '2': 3.0, 'the': 4.0, 'major': 1.0, 'with': 3.0, 'come': 2.0, 'definitely': 1.0, 'buy': 2.0, 'one': 1.0, 'for': 2.0, 's': 2.0, 'a': 6.0, 'why': 1.0, 'flow': 1.0, 'drinking': 1.0, 'than': 2.0, 'seems': 1.0, 'regular': 1.0, 'more': 2.0, 'level': 5.0, 'is': 1.0, 'bottles': 2.0, 'it': 2.0, 'she': 1.0, 'nipped': 1.0, 'large': 1.0, 'by': 1.0, 'us': 2.0, 'bottle': 1.0, 'time': 2.0, 'your': 1.0, 'they': 1.0, 'them': 1.0, 'baby': 1.0, 'i': 1.0, '4': 1.0, 'ounces': 1.0, 'at': 1.0, 'ready': 1.0, 'like': 1.0, 're': 1.0, 'to': 1.0}
Word element => {'time': 1.0, 'size': 1.0, 'be': 1.0, 'definitely': 1.0, 'i': 1.0, 'eating': 1.0, 'ingests': 1.0, 'it': 1.0, 'she': 1.0, 'of': 1.0, 'amount': 1.0, 'help': 1.0, 'seem': 1.0, 'her': 1.0, 'for': 1.0, 'enough': 1.0, '1': 1.0, 'and': 2.0, 'flow': 1.0, 'baby': 2.0, 'frustrated': 1.0, 'is': 1.0, 'level': 3.0, 'reason': 1.0, 'ordered': 1.0, 'nipples': 1.0, 'have': 2.0, 'this': 1.0, 'buying': 1.0, 'with': 2.0, 'come': 1.0, '2': 1.0, 'the': 8.0, 'these': 2.0, 'nipple': 1.0, 's': 1.0, 'we': 4.0, 't': 1.0, 'not': 1.0, 'our': 2.0, 'to': 2.0, 'realized': 1.0, 'when': 2.0, 'that': 1.0, 'been': 1.0, 'very': 2.0, 'happy': 1.0, 'are': 1.0, 'air': 1.0, 'brown': 1.0, 'do': 1.0, 'pack': 1.0, 'much': 1.0, 'bottles': 1.0, 'while': 1.0, 'closest': 1.0, '3': 1.0, 'dr': 1.0, 'on': 1.0, 'breast': 1.0, 'will': 1.0, 'spit': 1.0, 'anymore': 1.0, 'was': 3.0, 'doesn': 1.0, 'up': 1.0}
Word element => {'anyone': 1.0, 'would': 1.0, 'i': 1.0, 'and': 1.0, 'helped': 1.0, 'browns': 1.0, 'use': 1.0, 'dr': 1.0, 'we': 1.0, 'littlest': 1.0, 'system': 1.0, 'for': 1.0, 'to': 1.0, 'immensly': 1.0, 'had': 1.0, 'bottle': 1.0, 'have': 1.0, 'bad': 1.0, 'a': 1.0, 'gas': 1.0, 'only': 1.0, 'problems': 1.0, 'as': 1.0, 'these': 1.0, 'nipple': 1.0, 'great': 2.0, 'on': 1.0, 'my': 1.0, 'highly': 1.0, 'baby': 1.0, 'recommend': 1.0, 'bottles': 1.0, 'she': 1.0, 'colic': 1.0, 's': 1.0}
Word element => {'brown': 1.0, 'from': 1.0, 'he': 1.0, 'flow': 1.0, 'love': 1.0, 'actually': 1.0, 'more': 1.0, 'is': 1.0, 'size': 1.0, 'down': 1.0, 'let': 1.0, 'pretty': 1.0, 'have': 1.0, 'happen': 1.0, 'shot': 1.0, 'it': 2.0, 'forth': 1.0, 'always': 1.0, 'up': 1.0, 'breast': 2.0, 'dr': 1.0, 'strong': 1.0, 'on': 2.0, 'and': 4.0, '1': 1.0, 'getting': 1.0, 'nipple': 1.0, 'the': 4.0, 'by': 1.0, 'i': 3.0, 'read': 1.0, 'you': 1.0, 'feeding': 2.0, 'so': 2.0, 'bottle': 2.0, 'give': 1.0, 'between': 1.0, 'forever': 1.0, 're': 1.0, 'my': 1.0, 's': 1.0, 'going': 1.0, 'a': 5.0, 'somewhere': 1.0, 'back': 1.0, '2': 2.0, 'but': 1.0, 'that': 1.0, 'babies': 1.0, 'win': 2.0, 'if': 1.0, 'move': 1.0, 'should': 1.0, 'be': 1.0, 'our': 1.0, 'to': 4.0, 'urged': 1.0, 'was': 4.0, 'daycare': 1.0, 'because': 1.0, 'gets': 1.0, 'son': 1.0, 'decided': 1.0, 'taking': 1.0, 'hesitant': 1.0, 'like': 1.0, 'frustrated': 1.0, 'breastfed': 1.0, 'at': 1.0, 'first': 1.0}
Word element => {'mix': 1.0, 'in': 1.0, 'need': 1.0, 'very': 1.0, 'as': 1.0, 'to': 1.0, 'was': 2.0, 'get': 1.0, 'and': 1.0, 'perfectly': 1.0, 'bibs': 1.0, 'sucking': 1.0, 'browns': 1.0, 'of': 1.0, 'dr': 1.0, 'my': 2.0, 'out': 1.0, 'child': 1.0, 'fits': 1.0, 'the': 2.0, 'these': 1.0, 'nipples': 1.0, 'already': 1.0, 'on': 1.0, 'previous': 1.0, 'super': 1.0, 'cereal': 1.0, 'hard': 1.0}
Word element => {'everyone': 1.0, 'easier': 1.0, 'just': 1.0, 'be': 1.0, 'use': 1.0, 'll': 2.0, 'quicker': 1.0, 'emptied': 1.0, 'came': 1.0, 'forgot': 1.0, 'efficient': 1.0, 'went': 1.0, 'eventually': 1.0, 'my': 1.0, 'switch': 1.0, 'to': 6.0, 'sometimes': 1.0, 'from': 1.0, 'directly': 1.0, 'when': 2.0, '3': 1.0, 'on': 2.0, '4': 1.0, 'i': 2.0, 'tried': 1.0, 'since': 2.0, 'chokes': 1.0, 'this': 2.0, 'have': 1.0, 'much': 1.0, 'its': 1.0, 'skipped': 1.0, 'the': 2.0, 's': 1.0, 'a': 2.0, 't': 1.0, 'baby': 1.0, 'size': 3.0, 'too': 1.0, 'and': 4.0, 'it': 4.0, 'she': 5.0, 'definitely': 1.0, 'didn': 1.0, 'like': 1.0, 'time': 1.0, 'bottle': 1.0, 'bit': 1.0, 'fast': 1.0, 'spills': 1.0, 'what': 1.0, 'used': 1.0, 'than': 1.0, 'does': 1.0, 'but': 1.0, 'feel': 1.0, 'up': 1.0, 'is': 1.0}
Word element => {'no': 1.0, 'have': 1.0, 'we': 1.0, 'and': 1.0, 'almost': 1.0, 'our': 1.0, 'need': 1.0, 'like': 1.0, 'supplement': 1.0, 'had': 1.0, 'to': 1.0, 'occasions': 1.0, 'use': 1.0, 'exclusively': 1.0, 'rare': 1.0, 'doesn': 1.0, 'when': 1.0, 'confusion': 1.0, 'breastfed': 1.0, 'baby': 1.0, 'tommy': 1.0, 'these': 1.0, 't': 1.0, 'ones': 1.0, 'the': 1.0, 'nipple': 2.0, 'tippee': 1.0, 'breast': 1.0, 'on': 1.0, 'collapse': 1.0}
Word element => {'one': 1.0, 'in': 1.0, '7': 1.0, 'size': 1.0, 'so': 1.0, 'after': 1.0, 'soon': 1.0, 'get': 1.0, '3': 1.0, 'to': 3.0, 'used': 1.0, 'bored': 1.0, 'shifting': 1.0, 'baby': 1.0, 'she': 1.0, 'my': 1.0, '2': 1.0, 'the': 1.0, 'very': 1.0, 'from': 2.0, 'drank': 1.0, 'volume': 1.0, 'increased': 1.0, 'go': 1.0, '5': 1.0, 'oz': 2.0, '6': 1.0}
Word element => {'older': 1.0, 'until': 1.0, 'are': 1.0, 'bought': 1.0, 'ones': 1.0, 'because': 2.0, 'making': 1.0, 'old': 1.0, 'i': 2.0, 'gag': 1.0, 'of': 1.0, 'she': 2.0, 'month': 1.0, 'it': 1.0, 'only': 1.0, 'first': 1.0, 'my': 1.0, 'the': 5.0, 'these': 2.0, 'things': 1.0, 'them': 1.0, 'baby': 2.0, 'sippy': 1.0, 'fast': 3.0, '6': 1.0, 'how': 1.0, 'wasn': 1.0, 'out': 2.0, 'pretty': 1.0, 'if': 1.0, 'crazy': 1.0, 'was': 1.0, 'and': 2.0, 'milk': 1.0, 'furious': 1.0, 'would': 1.0, 'used': 2.0, 'back': 1.0, 'liquid': 1.0, 'saving': 1.0, 'drinking': 1.0, 'flow': 1.0, 'suggest': 1.0, 'put': 1.0, 'your': 1.0, 'comes': 2.0, 'is': 2.0, 'in': 1.0, 'regular': 1.0, 'from': 1.0, 'to': 2.0, 'cups': 2.0, 'or': 1.0, 'box': 1.0, 'that': 1.0, 't': 1.0, 's': 1.0, 'we': 1.0}
Word element => {'for': 1.0, 'use': 1.0, 'be': 1.0, 'many': 1.0, 'washings': 1.0, 'nipples': 1.0, 'need': 1.0, 'has': 1.0, 'faster': 1.0, 'even': 1.0, 'before': 1.0, 'same': 1.0, 'drink': 1.0, 'able': 1.0, 'are': 1.0, 'next': 1.0, 'that': 1.0, 'fine': 1.0, 'will': 1.0, 'adjusted': 1.0, 'he': 2.0, 'stopped': 1.0, 'it': 2.0, 'first': 1.0, 'only': 1.0, 'big': 1.0, 'from': 1.0, 'son': 1.0, 'day': 1.0, 'they': 4.0, 'ready': 1.0, 'his': 1.0, 'speed': 1.0, 'down': 2.0, 'in': 2.0, 'started': 1.0, 'them': 1.0, 'go': 1.0, 'might': 1.0, 'we': 3.0, 'a': 5.0, 'switched': 1.0, 'when': 2.0, 'never': 1.0, 'moving': 1.0, 'levels': 1.0, 'difference': 1.0, 'too': 1.0, 'and': 2.0, 'was': 1.0, 'child': 1.0, 'up': 2.0, 'each': 1.0, 'bit': 1.0, 'makes': 1.0, 'noticed': 1.0, 'fast': 1.0, 'my': 1.0, 'slowing': 2.0, 'drinking': 1.0, 'had': 2.0, 'flow': 1.0, 'at': 3.0, 'on': 1.0, '3': 1.0, 'make': 1.0, '4': 1.0, 'two': 1.0, 'mess': 1.0, 'the': 3.0, 'level': 3.0, 'is': 1.0, 'but': 1.0, 'to': 5.0, 'as': 1.0, 'our': 2.0, 'after': 1.0, 'experience': 1.0, 'took': 1.0, 'held': 1.0, 'bottles': 1.0, 'or': 2.0}
Word element => {'months': 1.0, '6': 1.0, 'about': 1.0, 'since': 1.0, 'little': 1.0, 'been': 1.0, 'my': 1.0, 'bottles': 1.0, 'man': 1.0, 'mouth': 1.0, 'brown': 1.0, 'exactly': 1.0, 'are': 1.0, 'dr': 1.0, 's': 1.0, 'i': 1.0, 'these': 2.0, 'nipples': 1.0, 'like': 1.0, 'described': 1.0, 'and': 1.0, 'we': 1.0, 'wide': 1.0, 'have': 1.0, 'for': 1.0, 'love': 1.0, 'using': 1.0}
Word element => {'older': 1.0, 'them': 1.0, 'from': 1.0, 'if': 1.0, 'i': 2.0, 'old': 1.0, 'to': 4.0, 'was': 2.0, 'got': 1.0, 'these': 3.0, 'the': 3.0, 'with': 1.0, '8': 1.0, 'using': 1.0, 'daughter': 1.0, 'when': 1.0, 'idea': 1.0, 'not': 1.0, 'at': 1.0, 'my': 1.0, 'great': 2.0, '1': 1.0, 'sure': 1.0, 'get': 1.0, 'milk': 1.0, 'and': 1.0, '3': 1.0, 'go': 1.0, 'a': 3.0, 's': 1.0, 'it': 1.0, 'month': 1.0, 'she': 3.0, 'gets': 1.0, 'still': 3.0, 'used': 1.0, 'working': 1.0, 'out': 1.0, 'of': 1.0, 'time': 1.0, 'bottle': 1.0, 'little': 1.0, 'chocked': 1.0, 'for': 2.0, 'product': 1.0, 'be': 1.0, 'more': 1.0, 'level': 2.0, 'is': 1.0, 'though': 1.0, 'will': 1.0}
Word element => {'product': 1.0, 'great': 2.0, 'work': 1.0, 'baby': 1.0, 'next': 1.0, 'more': 1.0, 'i': 1.0, 'they': 1.0, 'used': 1.0, 'just': 1.0, 'them': 1.0, 'a': 2.0, 'had': 1.0, 'for': 2.0, 'year': 1.0, 'and': 2.0, 'bought': 1.0, 'half': 1.0}
Word element => {'droplets': 1.0, 'steady': 1.0, 'whereas': 1.0, 'form': 1.0, 'droplet': 1.0, 'a': 5.0, 't': 2.0, 'hole': 1.0, 'started': 1.0, 'too': 3.0, 'and': 5.0, 'but': 1.0, 'can': 1.0, '2': 5.0, 'it': 3.0, 'bottles': 1.0, 'neck': 1.0, 'drinking': 1.0, 'my': 1.0, 'enough': 2.0, 'chokes': 1.0, 'in': 1.0, 'not': 2.0, 'faster': 2.0, 'just': 3.0, 'says': 1.0, 'babies': 1.0, 'disagree': 1.0, 'wide': 1.0, 'say': 1.0, 'to': 3.0, 'as': 2.0, '4': 1.0, 'cups': 1.0, '3': 4.0, 'on': 1.0, 'think': 1.0, 'about': 1.0, 'aren': 1.0, 'they': 1.0, 'isn': 1.0, 'there': 1.0, 'their': 1.0, 'are': 2.0, 'these': 5.0, 'of': 1.0, 'the': 4.0, 'whoever': 1.0, 'really': 1.0, 'much': 1.0, 'bit': 1.0, 'from': 1.0, 'big': 2.0, '1': 2.0, 'good': 1.0, 'then': 1.0, 'we': 1.0, 'reviews': 1.0, 'difference': 1.0, 'stage': 11.0, '6': 1.0, 'notice': 1.0, 'is': 1.0, 'at': 1.0, '5': 1.0, 'before': 1.0, 'except': 1.0, 'months': 1.0, 'planning': 1.0, 'am': 1.0, 'you': 2.0, 'buying': 1.0, 'with': 1.0, 'that': 8.0, 'because': 1.0, 'than': 1.0, 'have': 2.0, 'fast': 3.0, 'i': 5.0, 'coming': 2.0, 'read': 1.0, 'slow': 1.0, 'very': 1.0, 'many': 1.0, 'saying': 1.0, 'drip': 1.0, 'tears': 1.0, 'nipples': 5.0, 'quickly': 1.0, 'drink': 1.0, 'for': 1.0, 'year': 1.0, 'old': 1.0, 'transitioning': 1.0, 'also': 1.0, 'will': 1.0, 'every': 1.0, 'if': 1.0, 'hold': 1.0, 'sippy': 1.0, 'water': 1.0, 'watch': 1.0, 'out': 3.0, 'stream': 1.0, 'see': 1.0, 'them': 1.0, 'has': 1.0}
Word element => {'are': 1.0, 'they': 1.0, 'when': 1.0, 'baby': 1.0, 'my': 1.0, 'ok': 1.0, 'it': 2.0, 'month': 1.0, 'level': 2.0, '6': 2.0, 'although': 1.0, 'was': 1.0, 'to': 1.0, 'the': 1.0, 'nipple': 1.0, 'just': 1.0, 'used': 1.0, '9': 1.0, 'better': 1.0, 'for': 1.0, '1': 1.0, 'think': 1.0, 'is': 1.0, 'buy': 1.0, 'months': 2.0, '4': 1.0}
Word element => {'got': 1.0, 'review': 1.0, 'not': 1.0, 'to': 3.0, 'as': 3.0, 'however': 1.0, 'for': 1.0, 'product': 1.0, 'challenging': 1.0, 'would': 1.0, 've': 1.0, 'cozy': 1.0, 'be': 2.0, 'here': 1.0, 'assembling': 2.0, 'purchased': 1.0, 'find': 2.0, '1': 2.0, 'and': 1.0, 'store': 1.0, 'you': 2.0, 'a': 2.0, 'maybe': 2.0, 's': 4.0, 'from': 2.0, 'tuned': 1.0, 'crib': 2.0, 'out': 2.0, 'nothing': 1.0, '1st': 2.0, 'also': 1.0, 'hour': 1.0, 'before': 1.0, 'well': 2.0, 'i': 6.0, 'two': 2.0, 'this': 2.0, 'mattress': 1.0, 'tax': 1.0, 'because': 1.0, 'that': 2.0, 'expected': 1.0, 'box': 2.0, 'thought': 1.0, 'it': 4.0, 'think': 1.0, 'different': 1.0, 'deal': 1.0, 'read': 1.0, 'wrong': 1.0, '99': 1.0, 'there': 2.0, 'were': 1.0, 'parts': 1.0, 'with': 2.0, 'manual': 2.0, 'note': 1.0, 'another': 1.0, 'me': 1.0, 'my': 1.0, 'may': 1.0, 'all': 1.0, 'fits': 1.0, 'suggestion': 1.0, 'at': 1.0, 'is': 1.0, 'start': 1.0, 'drawer': 2.0, 'using': 1.0, 'good': 1.0, 'which': 1.0, 'in': 2.0, 'tool': 1.0, 'instructions': 1.0, '2': 1.0, 'second': 1.0, 'remember': 1.0, 'have': 1.0, 'hard': 1.0, 'open': 1.0, 'the': 9.0, 'of': 1.0, 'target': 2.0, 'manuals': 1.0, 'them': 1.0, 'couldn': 1.0, '139': 1.0, 'now': 1.0, 'then': 1.0, 'just': 1.0, 'follow': 1.0, 'people': 1.0, 'local': 1.0, 'needed': 1.0, 'are': 2.0, 'first': 1.0, 'sealy': 1.0, 't': 1.0, 'rest': 1.0}
Word element => {'durable': 1.0, 'soft': 1.0, 'their': 1.0, 'twin': 1.0, 'boys': 1.0, 'great': 1.0, 'love': 1.0, 'are': 1.0, 'my': 1.0, 'the': 1.0, 'and': 2.0, 'fire': 1.0, 'robes': 2.0, 'engine': 1.0, 'fit': 1.0}
Word element => {'loves': 1.0, 'my': 1.0, 'at': 1.0, 'doesnt': 1.0, 'beautiful': 1.0, 's': 1.0, 'got': 1.0, 'all': 1.0, 'screw': 1.0, 'we': 1.0, 'stripped': 1.0, 'grease': 1.0, 'elbow': 1.0, 'set': 1.0, 'of': 1.0, 'provided': 1.0, 'screws': 1.0, 'little': 1.0, 'because': 1.0, 'together': 2.0, 'eventually': 1.0, 'manner': 1.0, 'son': 1.0, 'timely': 1.0, 'a': 5.0, 'in': 1.0, 'for': 1.0, 'lot': 1.0, 'table': 1.0, 'received': 1.0, 'but': 1.0, 'put': 1.0, 'too': 1.0, 'with': 1.0, 'this': 1.0, 'it': 4.0, 'were': 1.0, 'wobble': 1.0, 'i': 1.0, 'and': 2.0, 'drilled': 1.0, 'was': 1.0, 'rough': 1.0, 'to': 1.0, 'holes': 1.0, 'the': 2.0, 'small': 1.0}
Word element => {'for': 1.0, 'm': 1.0, 'i': 1.0, 'minutes': 1.0, 'years': 1.0, 'about': 1.0, 'use': 1.0, 'in': 1.0, 'level': 1.0, 'wrench': 1.0, 'head': 1.0, 'allen': 1.0, 'sure': 1.0, 'chair': 1.0, 'built': 1.0, 'which': 1.0, 'thing': 1.0, '20': 1.0, 'together': 1.0, 'set': 1.0, 'came': 1.0, 'and': 4.0, 'is': 1.0, 'great': 1.0, 'heavy': 1.0, 'the': 2.0, 'well': 1.0, 'a': 1.0, 'rare': 1.0, 'assemble': 1.0, 'days': 1.0, 'theese': 1.0, 'this': 1.0, 'looked': 1.0, 'with': 1.0, 'it': 3.0, 'last': 1.0, 'needed': 1.0, 'table': 1.0, 'easy': 1.0, 'was': 3.0, 'to': 3.0, 'will': 1.0, 'ready': 1.0, 'put': 1.0}
Word element => {'can': 1.0, 'an': 1.0, 'both': 1.0, 'works': 1.0, 'for': 1.0, 'overall': 1.0, 'issue': 1.0, 'splat': 2.0, 'it': 3.0, 'this': 2.0, 'great': 2.0, 'the': 3.0, 'colors': 1.0, 'are': 1.0, 'i': 1.0, 'mat': 2.0, 'like': 1.0, 'and': 4.0, 'thin': 1.0, 'away': 1.0, 'a': 1.0, 'is': 2.0, 'chair': 1.0, 'course': 1.0, 'qualities': 1.0, 'girls': 1.0, 'has': 1.0, 'of': 2.0, 'up': 1.0, 'any': 1.0, 'to': 2.0, 'good': 1.0, 'clean': 1.0, 'easy': 1.0, 'folds': 1.0, 'however': 1.0, 'so': 2.0, 'really': 1.0, 'material': 1.0, 'with': 1.0, 'adjusting': 1.0, 'be': 2.0, 'very': 1.0, 'bunches': 1.0, 'folded': 1.0, 'easily': 1.0, 'boys': 1.0, 'you': 1.0, 'under': 1.0, 'high': 1.0, 'have': 1.0, 'lot': 1.0, 'keep': 1.0, 'that': 2.0, 'would': 1.0}
Word element => {'loves': 1.0, 'grab': 1.0, 'as': 1.0, 'to': 1.0, 'tries': 1.0, 'actually': 1.0, 'bright': 1.0, 'very': 2.0, 'nursing': 1.0, 'have': 1.0, 'pumping': 1.0, 'using': 1.0, 'like': 1.0, 'cover': 1.0, 'my': 2.0, 'tolerate': 1.0, 'but': 1.0, 'will': 1.0, 'use': 1.0, 'well': 3.0, 'i': 4.0, '4': 1.0, 'does': 2.0, 'its': 1.0, 'works': 1.0, 'month': 1.0, 'it': 6.0, 'this': 1.0, 'he': 3.0, 'tried': 1.0, 'mainly': 1.0, 'son': 1.0, 'under': 1.0, 'pattern': 2.0, 'and': 1.0, 'being': 1.0, 'if': 1.0, 'sleepy': 1.0, 'is': 5.0, 'around': 1.0, 'though': 1.0, 'neck': 1.0, 'at': 1.0, 'not': 1.0, 'those': 1.0, 'am': 2.0, 'when': 2.0, 'times': 1.0, 'job': 1.0, 'wrap': 1.0, 'the': 5.0, 'adjustable': 1.0, 'belt': 1.0, 'clasp': 1.0, 'active': 1.0, 'designed': 1.0}
Word element => {'storage': 1.0, 'cute': 1.0, 'handy': 1.0, 'but': 1.0, 'her': 1.0, 'naps': 1.0, 'of': 1.0, 'hammock': 1.0, 'couple': 1.0, 'has': 2.0, 'baby': 1.0, 'mostly': 1.0, 'room': 1.0, 'bedroom': 1.0, 'master': 1.0, 'swing': 1.0, 'glad': 1.0, 'only': 1.0, 'living': 1.0, 'nursery': 1.0, 'than': 1.0, 'white': 1.0, 'this': 3.0, 'with': 1.0, 'as': 1.0, 'to': 1.0, 'constructed': 1.0, 'moses': 1.0, 'girl': 1.0, 'been': 1.0, 'basket': 2.0, 'really': 1.0, 'she': 1.0, 'it': 4.0, 'looks': 1.0, 'believe': 1.0, 'the': 4.0, 'great': 1.0, 'i': 2.0, 'picture': 1.0, 'was': 1.0, 'beautiful': 1.0, 'solidly': 1.0, 'my': 1.0, 'cream': 1.0, 'and': 5.0, 'shopped': 1.0, 'subtle': 1.0, 'between': 1.0, 'am': 1.0, 'you': 1.0, 'contrast': 1.0, 'for': 3.0, 'one': 1.0, 'sleeps': 1.0, 'is': 2.0, 'more': 1.0, 'around': 1.0, 'far': 1.0, 'whether': 1.0, 's': 1.0, 'a': 2.0, 'quite': 1.0, 'or': 2.0, 'taken': 1.0, 'pleased': 1.0, 'classic': 1.0, 'elegant': 1.0, 'versatile': 1.0, 'so': 1.0, 'boy': 1.0, 'leads': 1.0, 'in': 3.0}
Word element => {'enough': 1.0, 'sturdy': 1.0, 'seem': 1.0, 'them': 1.0, 'hasn': 1.0, 'daughter': 1.0, 'of': 1.0, 'apart': 1.0, 'in': 1.0, 'gates': 1.0, 'problem': 1.0, 'all': 1.0, 'have': 1.0, 'to': 1.0, 'husband': 1.0, 'pulled': 1.0, 'front': 1.0, 'well': 1.0, 'work': 1.0, 'they': 2.0, 'easier': 1.0, 'besides': 1.0, 'door': 1.0, 'than': 1.0, 'wish': 1.0, 'much': 1.0, 'though': 1.0, 'baby': 1.0, 'simply': 1.0, 'looked': 1.0, 'nicer': 1.0, 'doors': 1.0, 'my': 3.0, 'no': 2.0, 't': 2.0, 'the': 2.0, '2': 1.0, 'putting': 1.0, 'i': 1.0, 'old': 1.0, 'complaints': 1.0, 'can': 1.0, 'year': 1.0, 'open': 1.0, 'and': 3.0, 'me': 2.0}
Word element => {'different': 1.0, 'made': 1.0, 'to': 2.0, 'the': 1.0, 'have': 1.0, 'adults': 1.0, 'for': 1.0, 'doors': 1.0, 'off': 1.0, 'lot': 1.0, 'really': 1.0, 'hard': 1.0, 'it': 1.0, 'this': 1.0, 'us': 1.0, 'decision': 1.0, 'i': 1.0, 'frankly': 1.0, 'open': 1.0, 'and': 1.0, 'in': 1.0, 'seems': 1.0, 'fall': 1.0, 'a': 2.0, 'makes': 1.0, 'retrospect': 1.0, 'would': 1.0}
Word element => {'time': 1.0, 'this': 1.0, 'money': 1.0, 'investing': 1.0, 'need': 1.0, 'easy': 1.0, 'pop': 1.0, 'really': 1.0, 'off': 1.0, 'but': 1.0, 'will': 1.0, 'i': 2.0, 'okay': 1.0, 'these': 1.0, 'the': 1.0, 'more': 3.0, 'expected': 1.0, 'you': 2.0, 'what': 1.0, 'and': 2.0, 'get': 1.0, 'purchase': 1.0, 'are': 1.0, 'paid': 1.0, 'for': 1.0, 'to': 1.0, 'be': 1.0}
Word element => {'knobs': 1.0, 'if': 1.0, 'shaped': 1.0, 'oval': 1.0, 'on': 1.0, 'anything': 1.0, 'door': 1.0, 'doors': 1.0, 'useless': 1.0, 'my': 2.0, 'made': 1.0, 'completely': 1.0, 'product': 1.0, 'old': 1.0, 'was': 1.0, 'to': 1.0, 'this': 1.0, 'it': 2.0, 'only': 1.0, 'easier': 1.0, 'for': 1.0, 'open': 1.0, 'year': 1.0, '3': 1.0}
Word element => {'running': 1.0, 'child': 1.0, 'that': 1.0, 'this': 1.0, 'recommend': 1.0, 'these': 2.0, 'the': 3.0, 'kid': 1.0, 'right': 1.0, 'year': 1.0, 'from': 1.0, 'for': 1.0, 'out': 1.0, 'keeping': 1.0, 'good': 1.0, 'depot': 1.0, 'off': 1.0, 'your': 1.0, 'designed': 1.0, 'i': 3.0, 'old': 1.0, 'bought': 1.0, 'anyone': 1.0, 'be': 1.0, 'and': 1.0, 'door': 3.0, 'home': 1.0, 'is': 1.0, 'say': 1.0, 'may': 1.0, 'my': 1.0, 'are': 1.0, 'at': 1.0, 'about': 1.0, 'no': 1.0, 'not': 2.0, 'worried': 1.0, 'just': 1.0, 'opening': 1.0, 'rip': 1.0, 'them': 2.0, 'with': 1.0, 'problem': 1.0, 'snaps': 1.0, 'their': 1.0, 'better': 1.0, 'have': 1.0, 'any': 1.0, 'glue': 1.0, 'to': 3.0, 'together': 2.0, 'hold': 1.0, '2': 1.0, 'can': 2.0, 'but': 1.0, 'shout': 1.0, 'super': 1.0, 'would': 1.0}
Word element => {'turn': 1.0, 'to': 1.0, 'for': 1.0, 'handle': 1.0, 'frustration': 1.0, 'yes': 1.0, 'adults': 1.0, 'creates': 1.0, 'the': 2.0, 'it': 2.0, 'also': 1.0, 'would': 1.0, 'stop': 1.0, 'from': 1.0, 'kids': 1.0, 'opening': 1.0, 'however': 1.0, 'door': 1.0}
Word element => {'does': 1.0, 'door': 1.0, 'then': 1.0, 'opens': 1.0, 'and': 2.0, 'child': 1.0, 'sticks': 1.0, 'his': 1.0, 'off': 1.0, 'work': 1.0, 'not': 1.0, 'fingers': 1.0, 'pulls': 1.0, 'in': 1.0, 'cover': 1.0, 'my': 1.0, 'the': 2.0}
Word element => {'while': 1.0, 'son': 1.0, 'open': 1.0, 'inside': 1.0, 'but': 1.0, 'us': 1.0, 'for': 3.0, 'parents': 1.0, 'i': 1.0, 'these': 1.0, 'the': 5.0, 'interior': 1.0, 'including': 1.0, 'several': 1.0, 'a': 1.0, 's': 1.0, 'ago': 1.0, 'unfortunately': 1.0, 'my': 1.0, 'one': 1.0, 'bought': 1.0, 'months': 2.0, 'remove': 1.0, 'only': 1.0, 'of': 1.0, 'handed': 1.0, 'at': 1.0, 'room': 2.0, '20': 1.0, 'effective': 1.0, 'himself': 1.0, 'now': 1.0, 'doors': 1.0, 'to': 2.0, 'short': 1.0, 'knows': 1.0, 'lock': 1.0, 'doorknob': 1.0, 'house': 1.0, 'cover': 2.0, 'in': 1.0, 'his': 2.0, 'even': 1.0, 'he': 2.0, 'how': 1.0, 'door': 1.0, 'and': 1.0, 'me': 1.0, 'they': 1.0, 'were': 1.0}
Word element => {'amazon': 1.0, 'sell': 1.0, 't': 1.0, 'don': 1.0, 'make': 1.0, 'parents': 1.0, 'yes': 1.0, 'instead': 1.0, 'them': 1.0, 'has': 1.0, 'but': 2.0, 'magazine': 1.0, 'grips': 1.0, 'necessary': 1.0, 's': 1.0, 'moment': 1.0, 'proudest': 1.0, 'not': 1.0, 'buy': 1.0, 'hand': 2.0, 'slippery': 1.0, 'open': 1.0, 'trying': 1.0, 'had': 1.0, 'i': 1.0, 'those': 2.0, 'impossible': 1.0, 'grip': 2.0, '2': 2.0, 'moon': 1.0, 'being': 1.0, 'actual': 1.0, 'one': 1.0, 'for': 1.0, 'folks': 1.0, 'dark': 1.0, 'following': 1.0, 'why': 1.0, 'nearly': 2.0, 'up': 1.0, 'covers': 1.0, 'it': 5.0, 'door': 4.0, 'created': 1.0, 'get': 1.0, 'on': 3.0, 'your': 5.0, 'put': 1.0, 'time': 1.0, 'can': 3.0, 'so': 1.0, 'summation': 1.0, 'once': 1.0, 'these': 2.0, 'knob': 3.0, 'pads': 1.0, 'place': 1.0, 'hands': 1.0, 'have': 3.0, 'a': 5.0, 'small': 1.0, 'man': 1.0, 'come': 1.0, 'pointing': 1.0, 'okay': 1.0, 'getting': 1.0, 'squeeze': 2.0, 'vaccinations': 1.0, 'to': 4.0, 'find': 1.0, '1': 1.0, 'of': 2.0, 'the': 9.0, 'finger': 1.0, 'horrible': 2.0, 'travel': 1.0, 'and': 7.0, 'diseases': 1.0, 'perfected': 1.0, 'cover': 1.0, 'brand': 1.0, 'old': 1.0, 'this': 1.0, 'in': 2.0, 'if': 3.0, 'every': 1.0, 'index': 1.0, 'turn': 2.0, 'are': 4.0, 'lotioned': 1.0, 'first': 1.0, 'temper': 1.0, 'from': 1.0, 'snaps': 1.0, 'we': 1.0, 'then': 1.0, 'how': 1.0, 'luck': 2.0, 'they': 2.0, 'between': 1.0, 'thumb': 1.0, 'holes': 1.0, 'pull': 1.0, 'rubbery': 2.0, 'tantrums': 1.0, 'together': 1.0, 'apart': 2.0, 'reach': 1.0, 'way': 1.0, 'some': 1.0, 'jenky': 1.0, 'that': 4.0, 'with': 2.0, 'bought': 1.0, 'effort': 1.0, 'bat': 1.0, 'reasons': 1.0, 'my': 2.0, 'product': 1.0, 'child': 1.0, 'year': 1.0, 'handle': 1.0, 'is': 3.0, 'at': 1.0, 'ages': 1.0, 'pops': 1.0, 'or': 1.0, 'wet': 1.0, 'evil': 1.0, 'which': 1.0, 'good': 2.0, 'things': 2.0, 'you': 4.0, 'able': 1.0, 'little': 1.0, 'two': 1.0, 'sometimes': 1.0}
Word element => {'be': 1.0, 'somewhere': 1.0, 'shouldn': 1.0, 'is': 1.0, 'surprise': 1.0, 'then': 1.0, 'protected': 1.0, 'figured': 1.0, 'the': 3.0, 'these': 2.0, 'very': 1.0, 'not': 2.0, 'do': 1.0, 'and': 2.0, 'pantry': 1.0, 'brand': 1.0, 'old': 1.0, 'worse': 1.0, 'quickly': 1.0, 'c': 1.0, 'bought': 1.0, 'they': 1.0, 'buy': 1.0, 'defeat': 1.0, '20': 1.0, 'out': 2.0, 'baby': 1.0, 'them': 1.0, 'month': 1.0, 'take': 1.0, 'how': 1.0, 'he': 3.0, 'keep': 1.0, 'everything': 1.0, 'if': 1.0, 'of': 1.0, 'work': 1.0, 'but': 1.0, 'can': 1.0, 'even': 2.0, 'cover': 2.0, 'off': 1.0, 'think': 1.0, 'our': 1.0, 'to': 2.0, 'doors': 1.0, 'wants': 1.0, 'are': 1.0, 'another': 1.0, 'b': 1.0, 'than': 1.0, 'having': 1.0, 've': 1.0, 't': 1.0, 'we': 1.0, 'a': 1.0, 'you': 2.0}
Word element => {'if': 1.0, 'star': 1.0, '0': 1.0, 'rate': 1.0, 'me': 1.0, 'are': 1.0, 'their': 1.0, 'do': 1.0, 'didn': 1.0, 'out': 1.0, 'figure': 1.0, 'smart': 1.0, 'on': 2.0, 'installed': 1.0, 'three': 1.0, 'from': 1.0, 'year': 1.0, 'them': 3.0, 'child': 1.0, 'these': 2.0, 'remove': 1.0, 'covers': 2.0, 'it': 2.0, 'come': 1.0, 'about': 1.0, 'took': 1.0, 'i': 3.0, 'two': 2.0, 'fifteen': 1.0, 'by': 1.0, 'd': 2.0, 'm': 1.0, 'doorknobs': 1.0, 'my': 1.0, 'seconds': 1.0, 'as': 2.0, 'to': 6.0, 'in': 1.0, 'pieces': 1.0, 'that': 1.0, 'together': 1.0, 'and': 2.0, 'job': 1.0, 'the': 5.0, 'reach': 1.0, 'obviously': 1.0, 'quite': 1.0, 'worthless': 1.0, 'old': 2.0, 'unsnap': 1.0, 'time': 1.0, 'they': 2.0, 'could': 1.0, 't': 1.0, 'we': 1.0, 's': 1.0, 'a': 1.0, 'completely': 1.0, 'is': 1.0, 'how': 1.0, 'door': 1.0, 'off': 1.0, 're': 1.0, 'doorknob': 2.0, 'snap': 1.0, 'enough': 2.0, 'get': 1.0, 'easy': 1.0, 'sure': 1.0}
Word element => {'buy': 1.0, 'not': 1.0, 'will': 1.0, 'apart': 1.0, 'pulls': 1.0, 'cheap': 1.0, 'childproof': 1.0, 'from': 1.0, 'thing': 1.0, 'is': 1.0, 'off': 1.0, 'right': 1.0, 'took': 1.0, 'because': 1.0, 'stair': 1.0, 'at': 1.0, 'latch': 1.0, 'remove': 1.0, 'didnt': 1.0, 'm': 1.0, 'wee': 1.0, 'well': 1.0, 'in': 2.0, 'and': 3.0, 'imagine': 1.0, 'of': 3.0, 'down': 1.0, 'floor': 1.0, 'travel': 1.0, 'knobs': 1.0, 'be': 1.0, 'second': 1.0, 'plastic': 1.0, 'door': 4.0, 'laws': 1.0, 'was': 2.0, 'i': 6.0, 'old': 3.0, 'just': 1.0, 'apartments': 1.0, 'again': 1.0, 'easily': 1.0, 'when': 1.0, 'excited': 1.0, 'this': 2.0, 'so': 2.0, 'got': 1.0, 'connects': 1.0, 'these': 3.0, 'can': 1.0, '2': 4.0, 'furthest': 1.0, 'the': 11.0, 'stairs': 1.0, 'a': 3.0, 'we': 4.0, 'live': 2.0, 'bathroom': 1.0, 'my': 3.0, 'duplex': 1.0, 'year': 3.0, 'son': 2.0, 'to': 4.0, 'as': 1.0, 'forth': 1.0, 'knows': 1.0, 'stairway': 1.0, 'that': 3.0, 'top': 1.0, 'back': 1.0, 'on': 4.0, 'put': 2.0, 'glad': 2.0, 'able': 1.0, 'hand': 1.0, 'which': 1.0, 'opens': 1.0, 'ding': 1.0, 'room': 1.0}
Word element => {'smile': 1.0, 'work': 1.0, 'hopefully': 1.0, 'next': 1.0, 'solver': 1.0, 'proud': 1.0, 'at': 1.0, 'feel': 1.0, 'your': 2.0, 'alone': 1.0, 'hard': 3.0, 'open': 3.0, 'over': 1.0, 'knows': 1.0, 'couple': 1.0, 'taking': 1.0, 'keep': 1.0, 'don': 1.0, 'kid': 1.0, 'cuz': 1.0, 'for': 4.0, 'hammer': 1.0, 'arn': 1.0, 'product': 3.0, 'year': 1.0, 'works': 1.0, 'do': 2.0, 'much': 1.0, 'mean': 1.0, 'there': 2.0, 'give': 1.0, 'pull': 2.0, 'home': 1.0, 'come': 2.0, 'are': 3.0, 'my': 7.0, 'may': 1.0, 'me': 1.0, 'eventually': 1.0, 'secure': 1.0, 'will': 4.0, 'doors': 2.0, 'them': 5.0, 'up': 1.0, 'if': 3.0, 'whacks': 1.0, 'style': 2.0, 'far': 2.0, 'several': 2.0, 'mad': 1.0, 'about': 2.0, 'front': 1.0, 'fact': 1.0, 'i': 12.0, 'well': 1.0, 'thinking': 1.0, 'times': 1.0, 'few': 1.0, 'this': 3.0, 'been': 1.0, 'nails': 1.0, 'other': 2.0, 'an': 1.0, 'way': 1.0, 'all': 1.0, 'lil': 1.0, 'removing': 1.0, 'have': 6.0, 'remember': 1.0, 'chances': 1.0, 'gets': 1.0, 'just': 2.0, 'and': 11.0, 'has': 2.0, 'gotten': 2.0, 'press': 1.0, 'by': 1.0, 'after': 2.0, 'was': 1.0, 'typically': 1.0, 'to': 17.0, 'job': 1.0, 'leaves': 1.0, 'know': 1.0, 'problem': 1.0, 'now': 2.0, 'choosing': 1.0, 'one': 5.0, 'try': 1.0, 'decided': 1.0, 'move': 2.0, 'his': 1.0, 'say': 3.0, 'some': 4.0, 'these': 5.0, 'a': 7.0, 'the': 19.0, 'like': 3.0, 'covers': 1.0, 'cheap': 1.0, 'hand': 1.0, 'talking': 1.0, 'ppl': 3.0, 'with': 5.0, 'using': 1.0, 'lighten': 1.0, 'worth': 1.0, 'order': 1.0, 'condition': 1.0, 'acrylic': 1.0, 'more': 1.0, 'perfect': 1.0, 'always': 2.0, 'most': 2.0, 'you': 1.0, 'weak': 2.0, 'tightness': 1.0, 'but': 6.0, 'apart': 1.0, '2': 1.0, 'so': 5.0, 'enough': 3.0, 'off': 5.0, 'won': 1.0, 'he': 5.0, 'pressure': 2.0, 'door': 5.0, 'escape': 1.0, 'make': 3.0, 'sure': 2.0, 'that': 6.0, 'awhile': 1.0, 'can': 8.0, 'is': 3.0, 'in': 3.0, 'toy': 1.0, 'best': 1.0, 'different': 1.0, 'not': 2.0, 'as': 4.0, 'on': 2.0, 'weaken': 2.0, 'plastic': 1.0, 'time': 1.0, 'friend': 1.0, 'her': 2.0, 'use': 2.0, 'reasons': 1.0, 'had': 1.0, 'type': 1.0, 'show': 1.0, 'how': 1.0, 'sugar': 1.0, 'item': 1.0, 'closing': 1.0, 'herself': 1.0, 'seen': 1.0, 'case': 1.0, 'they': 8.0, 'replace': 1.0, 'seem': 3.0, 'trouble': 2.0, 'get': 1.0, 'forget': 1.0, 'usualy': 1.0, 'want': 1.0, 'swing': 1.0, 'who': 2.0, 'from': 1.0, 'harder': 1.0, 'takes': 1.0, 'weaknesses': 1.0, 'having': 1.0, 'usual': 1.0, 'better': 1.0, 'parent': 1.0, 'part': 1.0, 'ease': 1.0, 'it': 2.0, 'own': 1.0, 'be': 2.0, 'their': 1.0, 't': 4.0, 'friends': 1.0, 'others': 1.0, 'usually': 1.0, 'money': 1.0, 'or': 2.0, 'effort': 1.0, 'son': 2.0, 'easier': 1.0, 'needed': 1.0, 'around': 1.0, 'each': 1.0, 'must': 1.0, 'bucket': 1.0, 'kids': 1.0, 'out': 1.0, 'wit': 1.0, 'things': 1.0, 'old': 1.0, 'of': 5.0, 'even': 2.0, 'instead': 1.0, 'never': 1.0, 'take': 1.0, 'us': 1.0, 'kinds': 1.0, 'mine': 1.0, 'being': 1.0}
Word element => {'anything': 1.0, 'not': 1.0, 'would': 1.0, 'easy': 1.0, 'inside': 1.0, 'toddler': 1.0, 'rubber': 1.0, 'with': 1.0, 'this': 1.0, 'are': 1.0, 'the': 4.0, 'ones': 1.0, 'discontinue': 1.0, 'version': 1.0, 'cover': 1.0, 'at': 1.0, '1st': 1.0, 'bought': 1.0, 'rather': 1.0, 'of': 1.0, 'we': 2.0, 'a': 1.0, 'seemed': 1.0, 'safety': 1.0, 'they': 1.0, 'makes': 1.0, 'door': 2.0, 'after': 1.0, 'for': 2.0, 'all': 1.0, 'to': 3.0, 'our': 2.0, 'it': 2.0, 'remove': 1.0, 'on': 2.0, 'knob': 2.0, 'also': 1.0, 'doorknobs': 2.0, 'very': 1.0, 'open': 1.0, 'difficult': 1.0, 'slightly': 1.0, 'adult': 1.0, 'have': 2.0, 'average': 1.0, 'larger': 1.0, 'standard': 1.0, 'maybe': 1.0, 'than': 1.0, 'i': 1.0, 'removed': 1.0, 'them': 1.0, 'and': 1.0}
Word element => {'pantry': 1.0, 'out': 1.0, 'toddler': 1.0, 'chasing': 1.0, 'that': 1.0, 'now': 1.0, 'time': 1.0, 'so': 1.0, 'where': 1.0, 'a': 1.0, 't': 1.0, 'we': 3.0, 'on': 1.0, '3': 1.0, 'when': 1.0, 'barely': 1.0, 'within': 1.0, 'together': 1.0, 'year': 1.0, 'hands': 1.0, 'the': 4.0, 'apart': 2.0, 'pieces': 1.0, 'more': 1.0, 'noted': 1.0, 'went': 1.0, 'joy': 1.0, 'children': 1.0, 'covers': 1.0, 'it': 3.0, 'sorrow': 1.0, 'learn': 1.0, 'take': 1.0, 'came': 1.0, 'seconds': 1.0, 'just': 1.0, 'how': 1.0, 'as': 1.0, 'our': 2.0, 'to': 3.0, 'scotch': 1.0, 'old': 1.0, 'i': 1.0, 'clear': 1.0, 'have': 1.0, 'touched': 1.0, 'others': 1.0, 'some': 1.0, 'tape': 1.0, 'and': 2.0, 'aren': 1.0, '2': 2.0, 'can': 1.0, 'but': 1.0, 'knob': 1.0, 'secure': 1.0, 'used': 1.0, 'much': 1.0, 'works': 1.0, 'of': 2.0, 'cover': 1.0, 'snap': 1.0, 'fine': 1.0}
Word element => {'areas': 1.0, 'certainly': 1.0, 'toy': 1.0, 'heavy': 1.0, 'hitting': 1.0, 'or': 1.0, 'unsafe': 1.0, 'right': 1.0, 'keep': 1.0, 'repeatedly': 1.0, 'at': 1.0, 'squeezing': 1.0, 'figured': 1.0, 'removed': 1.0, 'and': 1.0, 'over': 1.0, 'together': 2.0, 'halves': 1.0, 'i': 1.0, 'two': 1.0, 'little': 2.0, 'very': 1.0, 'be': 1.0, 'knobs': 1.0, 'from': 1.0, 'them': 2.0, 'can': 2.0, '2': 1.0, 'out': 3.0, 'it': 1.0, 'remove': 1.0, 'covers': 1.0, 'wanted': 2.0, 'as': 1.0, 'to': 4.0, 'hands': 1.0, 'the': 6.0, 'these': 3.0, 'ones': 2.0, 'snap': 1.0, 'doorknob': 2.0, 'photo': 1.0, 'found': 1.0, 'based': 1.0, '6': 1.0, 'are': 1.0, 'depend': 1.0, 'purchase': 1.0, 'my': 3.0, 'by': 3.0, 'wouldn': 1.0, 'inaccurate': 1.0, 'that': 1.0, 'of': 3.0, 'once': 1.0, 'no': 1.0, 'accident': 1.0, 'kind': 1.0, 'decided': 1.0, 'year': 2.0, 'an': 1.0, 'they': 2.0, 'effort': 1.0, 'longer': 1.0, 'really': 1.0, 'on': 2.0, 'carried': 1.0, 'her': 1.0, 't': 1.0, 'we': 5.0, 'a': 2.0, 'give': 1.0, 'not': 1.0, 'son': 2.0, 'difficult': 1.0, 'try': 1.0, 'only': 1.0, 'with': 3.0, 'actually': 2.0, 'product': 1.0, 'for': 1.0, 'point': 1.0, 'old': 2.0, 'purchased': 1.0, 'operate': 1.0, 'small': 1.0}
Word element => {'30': 1.0, 'alone': 1.0, 'install': 1.0, 'fail': 1.0, 'how': 1.0, 'brand': 1.0, 'going': 1.0, 'better': 1.0, 'when': 1.0, 'what': 1.0, 'exactly': 1.0, 'goes': 1.0, 's': 1.0, 'don': 2.0, 'opening': 1.0, 'want': 1.0, 'really': 1.0, 'those': 1.0, 'bother': 1.0, 'doesn': 1.0, 'weeks': 1.0, 'by': 1.0, 'at': 1.0, 'like': 1.0, 'covers': 1.0, 'devil': 1.0, 'outside': 1.0, 'opened': 1.0, 'cover': 1.0, 'manage': 1.0, 'does': 1.0, 'getting': 3.0, 'about': 2.0, 'trying': 1.0, 'another': 2.0, 'am': 1.0, 'last': 2.0, 'for': 2.0, 'great': 1.0, 'worked': 1.0, 'glue': 1.0, 'super': 1.0, 'there': 1.0, 'soon': 1.0, 'anytime': 1.0, 'you': 2.0, 'able': 1.0, 'whole': 1.0, 'no': 2.0, 'around': 1.0, 'tape': 2.0, 'packing': 2.0, 'time': 3.0, 'seam': 1.0, 'will': 1.0, 'doors': 1.0, 'could': 2.0, 'ago': 1.0, 't': 7.0, 'used': 1.0, 'seconds': 1.0, 'didn': 2.0, 'resembling': 1.0, 'tabs': 1.0, 'more': 2.0, 'door': 5.0, '6': 1.0, 'buy': 1.0, 'something': 1.0, 'to': 14.0, 'least': 1.0, 'into': 1.0, 'wrap': 1.0, 'holes': 1.0, 'know': 2.0, 'however': 1.0, 'on': 8.0, 'put': 4.0, 'making': 1.0, 'back': 1.0, 'but': 3.0, 'thing': 2.0, '2': 4.0, 'so': 1.0, 'can': 1.0, 'm': 1.0, 'in': 4.0, 'now': 1.0, 'almost': 2.0, 'waiting': 1.0, 'proof': 2.0, 'out': 1.0, 'start': 1.0, 'kind': 1.0, 'pop': 1.0, 'street': 1.0, 'not': 2.0, 'again': 2.0, 'times': 1.0, 'are': 2.0, 'package': 1.0, 're': 2.0, 'see': 1.0, 'off': 5.0, 'hesitate': 1.0, 'my': 1.0, 'please': 1.0, 'within': 1.0, 'be': 2.0, 'once': 1.0, 'room': 1.0, 'these': 3.0, 'days': 1.0, 'all': 3.0, 'ever': 1.0, 'year': 1.0, 'child': 1.0, 'takes': 1.0, 'less': 1.0, 'up': 1.0, 'good': 1.0, 'old': 1.0, 'only': 2.0, 'fine': 1.0, 'we': 8.0, 'take': 1.0, 'then': 2.0, 'instead': 1.0, 'even': 1.0, 'took': 1.0, 'recut': 1.0, 'the': 18.0, 'of': 6.0, 'finger': 1.0, 'feel': 1.0, 'over': 3.0, 'open': 1.0, 'front': 1.0, 'her': 3.0, 'use': 1.0, 'it': 9.0, 'baby': 1.0, 'she': 4.0, 'since': 2.0, 'find': 2.0, 'way': 1.0, 'than': 3.0, 'did': 1.0, 'and': 8.0, 'wouldn': 1.0, 'break': 1.0, 'secure': 2.0, 'they': 1.0, 'cut': 1.0, 'down': 1.0, 'clear': 1.0, 'still': 1.0, 'if': 4.0, 'need': 1.0, 'few': 2.0, 'this': 1.0, 'them': 5.0, 'has': 2.0, 'won': 1.0, 'one': 1.0, 'held': 1.0, 'little': 1.0, 'very': 1.0, 'get': 2.0, 'months': 2.0, 'with': 1.0, 'i': 4.0, 'a': 7.0, 'confident': 1.0, 'concerned': 1.0, 'easily': 1.0, 'problems': 1.0, 'that': 3.0}
Word element => {'everytime': 1.0, 'door': 1.0, 'find': 1.0, 'can': 1.0, 'from': 1.0, 'i': 1.0, 'night': 1.0, 'at': 1.0, 'for': 2.0, 'convenient': 1.0, 'work': 1.0, 'but': 1.0, 'in': 2.0, 'they': 1.0, 'glowed': 1.0, 'you': 2.0, 'that': 2.0, 'realize': 1.0, 'even': 1.0, 'didnt': 1.0, 'bought': 1.0, 'knob': 1.0, 'the': 2.0, 'dark': 1.0, 'late': 1.0, 'if': 1.0, 'it': 2.0, 'me': 1.0, 'do': 1.0, 'freaks': 1.0, 'know': 1.0, 'made': 1.0, 'them': 1.0, 'out': 1.0, 'we': 2.0, 'dont': 1.0, 'coming': 1.0, 'when': 1.0, 'going': 1.0, 'its': 1.0, 'to': 1.0}
Word element => {'twisting': 1.0, 'way': 1.0, 'adjust': 1.0, 'then': 1.0, 'of': 2.0, 'in': 1.0, 'aches': 1.0, 'need': 1.0, 'and': 1.0, 'it': 1.0, 'first': 1.0, 'only': 1.0, 'off': 1.0, 'on': 1.0, 'to': 4.0, 'snap': 2.0, 'week': 1.0, 'but': 2.0, 'work': 1.0, 'operate': 1.0, 'wrist': 1.0, 'a': 1.0, 'when': 1.0, 'tough': 1.0, 'comfortable': 1.0, 'using': 1.0, 'for': 1.0, 'great': 1.0, 'these': 1.0, 'the': 4.0, 'child': 1.0, 'problem': 1.0, 'easy': 2.0, 'might': 1.0, 'have': 1.0}
Word element => {'others': 1.0, 'how': 1.0, 'not': 1.0, 'appear': 1.0, 'no': 1.0, 'must': 1.0, 'best': 1.0, 'are': 1.0, 'sure': 1.0, 'cross': 1.0, 'ones': 1.0, 'red': 1.0, 'knob': 1.0, 'the': 2.0, 'where': 2.0, 'fair': 1.0, 'those': 1.0, 'to': 2.0, 'american': 1.0, 'than': 1.0, 'you': 2.0, 'a': 1.0, 'available': 1.0, 'of': 1.0, 'have': 1.0, 'longer': 1.0, 'sooner': 1.0, 'figure': 1.0, 'but': 1.0, 'will': 1.0, 'covers': 1.0, 'out': 1.0, 'child': 1.0, 'uncomfortably': 1.0, 'turn': 1.0, 'press': 2.0, 'on': 1.0, 'part': 1.0, 'this': 1.0, 'it': 1.0, 'in': 1.0, 'order': 1.0}
Word element => {'15': 1.0, 'been': 1.0, 'that': 1.0, 've': 1.0, 'keep': 2.0, 'who': 1.0, 'my': 2.0, 'minutes': 1.0, 'another': 1.0, 'eventually': 1.0, 'reviewer': 1.0, 'happy': 1.0, 'cooking': 1.0, 'very': 1.0, 'decided': 1.0, 'go': 1.0, 'a': 2.0, 't': 2.0, 'different': 1.0, 'good': 1.0, 'online': 1.0, 'with': 2.0, 'looked': 1.0, 'while': 1.0, 'to': 12.0, 'children': 1.0, 'seem': 1.0, 'them': 5.0, 'covers': 1.0, 'she': 1.0, 'month': 1.0, 'it': 1.0, 'out': 3.0, 'inside': 1.0, 'house': 4.0, 'using': 1.0, 'wonder': 1.0, 'door': 1.0, 'babysitter': 1.0, 'how': 1.0, 'tape': 1.0, 'shower': 1.0, 'set': 1.0, 'have': 1.0, 'neighbors': 1.0, 'autistic': 1.0, 'i': 9.0, 'these': 1.0, 'knob': 1.0, 'will': 1.0, 'of': 2.0, 'the': 5.0, 'without': 1.0, 'get': 1.0, 'sure': 1.0, 'and': 4.0, 'twins': 1.0, 'boys': 1.0, 'they': 3.0, 'thank': 1.0, 'at': 1.0, 'is': 1.0, 'around': 1.0, 'figure': 1.0, 'now': 1.0, 'haven': 1.0, 'off': 1.0, 'tried': 1.0, 'take': 2.0, 'apart': 2.0, 'but': 1.0, 'thing': 1.0, 'about': 1.0, 'said': 1.0, 'm': 3.0, 'in': 1.0, 'use': 1.0, 'scotch': 1.0, 'together': 1.0, 'harder': 1.0, 'make': 1.0, 'can': 1.0, 'so': 1.0, 'love': 1.0, 'far': 1.0, 'for': 2.0, 'tleast': 1.0, 'don': 1.0, 'ahve': 1.0, 'worry': 1.0, 'do': 2.0, 'goodness': 1.0, 'what': 1.0, 'or': 1.0, 'need': 1.0, 'having': 1.0, 'escape': 1.0, 'still': 1.0, 'every': 1.0}
Word element => {'them': 1.0, 'removing': 1.0, 'success': 1.0, 'slightest': 1.0, 'toddler': 1.0, 'and': 1.0, 'low': 1.0, 'sets': 1.0, 'which': 1.0, 'tried': 1.0, 'again': 1.0, 'of': 1.0, 'reasonably': 1.0, 'be': 1.0, 'proof': 1.0, 'bar': 1.0, 'either': 1.0, 'can': 1.0, 'but': 1.0, 'most': 1.0, 'saying': 1.0, 've': 2.0, 'in': 2.0, 'really': 1.0, 'side': 1.0, 'isn': 1.0, 'on': 1.0, 'put': 1.0, 'your': 2.0, 'much': 2.0, 're': 1.0, 'cover': 1.0, 'doorknob': 1.0, 'our': 1.0, 'doors': 1.0, 'to': 5.0, 'adult': 1.0, 'fingers': 1.0, 'is': 2.0, 'say': 1.0, 'others': 1.0, 'some': 1.0, 'these': 1.0, 'they': 2.0, 'holes': 1.0, 'it': 2.0, 'useless': 1.0, 'are': 1.0, 'best': 1.0, 'compared': 1.0, 'stick': 1.0, 'yet': 1.0, 'or': 1.0, 'without': 1.0, 'the': 6.0, 'job': 1.0, 'this': 2.0, 'found': 1.0, 'has': 1.0, 'well': 1.0, 'since': 1.0, 'easy': 1.0, 'get': 1.0, 'done': 2.0, 't': 1.0, 'we': 3.0, 'a': 2.0, 's': 1.0, 'awkward': 1.0, 'little': 1.0, 'through': 1.0, 'effort': 1.0, 'especially': 1.0, 'have': 2.0, 'weird': 1.0, 'narrow': 1.0, 'doorknobs': 1.0}
Word element => {'nuf': 1.0, 'yey': 1.0, 'opened': 1.0, 'removed': 1.0, 'two': 1.0, 'and': 2.0, 'cover': 2.0, 'into': 1.0, 'reached': 1.0, 'lock': 1.0, 'turned': 2.0, 'voice': 1.0, 'sweet': 1.0, 'high': 1.0, 'promptly': 1.0, 'in': 1.0, 'said': 2.0, 'ok': 1.0, 'abc': 1.0, 'saying': 1.0, 'using': 1.0, 'like': 1.0, 'was': 1.0, 'an': 1.0, 'then': 1.0, 'took': 1.0, 'large': 1.0, '3': 2.0, 'you': 1.0, 'my': 1.0, 'his': 3.0, 'year': 2.0, 'opportunity': 1.0, 'open': 2.0, 'loudly': 1.0, 'grandson': 1.0, 'keep': 1.0, 'arthritic': 1.0, 'from': 1.0, 'while': 2.0, 'with': 2.0, 'these': 2.0, 'knob': 4.0, 'hands': 2.0, 'the': 7.0, 's': 2.0, 't': 1.0, 'a': 1.0, 'we': 3.0, 'this': 1.0, 'escaping': 2.0, 'husband': 1.0, 'slightly': 1.0, 'fingers': 1.0, 'unlocked': 1.0, 'live': 1.0, 'watched': 1.0, 'old': 2.0, 'child': 2.0, 'it': 1.0, 'covers': 1.0, 'smart': 1.0, 'grand': 1.0, 'childish': 1.0, 'got': 1.0, 'clapping': 1.0, 'couldn': 1.0, 'me': 1.0, 'as': 1.0, 'doors': 1.0, 'outside': 1.0, 'our': 1.0, 'to': 2.0, 'any': 1.0, 'kept': 1.0, 'bolt': 1.0, 'mommy': 1.0, 'chirped': 1.0, 'asked': 1.0, 'show': 2.0, 'but': 1.0, 'can': 1.0, 'how': 2.0, 'he': 4.0, 'door': 3.0}
Word element => {'booo': 1.0, 'great': 1.0, 'so': 1.0, 'dollars': 1.0, 'free': 1.0, 'membership': 1.0, 'bought': 1.0, 'never': 1.0, 'outdo': 1.0, 'me': 1.0, 'not': 3.0, 'does': 2.0, 'buy': 2.0, 'and': 2.0, 'us': 1.0, 'like': 1.0, 'them': 1.0, 'baby': 3.0, 'make': 1.0, 'they': 1.0, 'price': 2.0, 'competitive': 1.0, 'paid': 1.0, 'more': 1.0, 'is': 5.0, 'amazon': 4.0, 'but': 2.0, 'piccy': 1.0, 'the': 3.0, 'diaper': 1.0, 'in': 3.0, 'else': 1.0, 'after': 1.0, 'would': 1.0, 'prime': 1.0, 'have': 4.0, 'to': 1.0, 'as': 2.0, 'all': 1.0, 'competition': 1.0, 'it': 5.0, 'looked': 1.0, '5': 1.0, 'canopy': 1.0, 'could': 1.0, 'a': 1.0, 'rating': 1.0, 'that': 2.0, 'love': 1.0, 'where': 1.0, 'stars': 1.0, 'for': 1.0, 'equate': 1.0, 'bed': 1.0, 'this': 1.0, 'found': 1.0, 'fact': 1.0, 'another': 1.0, 'toy': 1.0, 'store': 1.0, 'their': 1.0, 'should': 2.0, 'r': 1.0, 'given': 1.0, 'closer': 1.0, 'less': 2.0, 'goes': 1.0, 'sure': 1.0, 'dafne': 1.0, 'still': 1.0, 'shipping': 1.0, 'iteam': 2.0, 'iteams': 1.0, 'paying': 1.0, 'bag': 1.0, 'be': 1.0, 'stacker': 1.0, 'i': 7.0, 'etc': 2.0, 'setting': 1.0, 'pillows': 1.0, '10': 1.0, 'if': 1.0}
Word element => {'of': 1.0, 're': 1.0, 'covers': 3.0, 'outlet': 3.0, 'you': 1.0, 'and': 2.0, 'like': 1.0, 'locks': 1.0, 'an': 1.0, 'to': 2.0, 'the': 3.0, 'i': 1.0, 'generic': 1.0, 'adult': 1.0, 'some': 1.0, 'it': 1.0, 'is': 1.0, 'if': 1.0, 'unlatch': 1.0, 'cabinet': 1.0, 'easy': 1.0, 'even': 1.0, 'than': 1.0, 'easier': 1.0, 'remove': 1.0}
Word element => {'to': 1.0, 'them': 1.0, 'unamused': 1.0, 'totally': 1.0, 'm': 1.0, 'recommend': 1.0, 'seller': 1.0, 'contacted': 1.0, 'and': 2.0, 'ago': 1.0, 'month': 1.0, 'bad': 1.0, 'i': 4.0, 'or': 1.0, 'good': 1.0, 'anything': 1.0, 'anyone': 1.0, 'honestly': 1.0, 'can': 1.0, 'wouldn': 1.0, 'this': 1.0, 'it': 2.0, 'about': 1.0, 'product': 1.0, 'ordered': 1.0, 'still': 1.0, 'because': 1.0, 'haven': 1.0, 'even': 1.0, 'say': 1.0, 'than': 1.0, 'received': 1.0, 'though': 1.0, 'the': 1.0, 't': 3.0, 'more': 1.0, 'a': 1.0}
Word element => {'items': 1.0, 'better': 1.0, 'best': 1.0, 'plastic': 1.0, 'because': 1.0, 'broken': 1.0, 'outlet': 1.0, 'on': 1.0, 'doorknob': 1.0, 'buy': 1.0, 'putting': 1.0, 'll': 2.0, 'such': 1.0, 'the': 4.0, 'you': 3.0, 'see': 1.0, 'have': 1.0, 'all': 2.0, 'package': 1.0, 'quality': 1.0, 'but': 1.0, 'to': 2.0, 'really': 1.0, 'looks': 1.0, 'it': 1.0, 'nice': 1.0, 'need': 2.0, 'separately': 1.0, 'in': 1.0, 'one': 1.0, 'covers': 2.0, 'them': 1.0, 're': 2.0, 'crappy': 1.0, 'things': 1.0, 'at': 1.0, 'different': 1.0, 'times': 1.0, 'by': 1.0, 'they': 1.0, 'time': 1.0}
Word element => {'save': 1.0, 'only': 1.0, 'about': 1.0, 'package': 1.0, 'in': 2.0, 'back': 1.0, 'these': 1.0, 'very': 1.0, 'they': 2.0, 'with': 1.0, 'pull': 1.0, 'glad': 1.0, 'easily': 1.0, 'when': 1.0, 'seen': 1.0, 'am': 1.0, 'are': 1.0, 'nicer': 1.0, 'replaced': 1.0, 'look': 1.0, 'first': 2.0, 'ones': 2.0, 'switched': 1.0, 'so': 1.0, 'stay': 1.0, 'cabinet': 2.0, 'also': 1.0, 'knob': 2.0, 'things': 1.0, 'mainly': 1.0, 't': 1.0, 'could': 1.0, 'a': 1.0, 'pulled': 1.0, 'buy': 1.0, 'ever': 1.0, 'were': 1.0, 'that': 3.0, 'work': 2.0, 'money': 2.0, 'saved': 1.0, 'thinking': 1.0, 'i': 8.0, 'old': 2.0, 'clear': 1.0, 'all': 1.0, 'to': 3.0, 'was': 1.0, 'had': 1.0, 'locks': 2.0, 'out': 3.0, 'protectors': 4.0, 'them': 4.0, 'apart': 1.0, 'outlet': 2.0, 'the': 16.0, 'say': 1.0, 'more': 1.0, 'once': 1.0, 'of': 1.0, 'waste': 1.0, 'your': 1.0, 'on': 2.0, 'have': 1.0, 'this': 3.0, 'covers': 2.0, 'month': 1.0, 'it': 1.0, 'he': 3.0, 'by': 1.0, 'for': 1.0, 'kit': 3.0, 'actually': 1.0, '18': 1.0, 'would': 1.0, 'biggest': 1.0, 'come': 1.0, 'went': 2.0, 'within': 1.0, 'made': 1.0, 'seconds': 1.0, 'tend': 1.0, 'because': 2.0, 'don': 1.0, 'outlets': 2.0, 'and': 4.0, 'attractive': 1.0, 'instantly': 1.0, 'took': 1.0, 'luvs': 2.0, 'cheapo': 1.0, 'never': 1.0, 'safety': 2.0, 'got': 1.0, 'off': 1.0, 'bought': 1.0}
Word element => {'impossible': 1.0, 'any': 1.0, 'and': 1.0, 'stick': 1.0, 'a': 1.0, 'the': 2.0, 'flat': 1.0, 'are': 1.0, 'adults': 1.0, 'without': 1.0, 'effort': 1.0, 'my': 1.0, 'pull': 1.0, 'covers': 2.0, 'out': 2.0, 'pulls': 1.0, 'little': 2.0, 'guy': 1.0, 'pain': 1.0, 'fingers': 1.0, 'to': 2.0, 'old': 1.0, 'fashioned': 1.0, 'they': 1.0, 'for': 2.0}
Word element => {'fingers': 1.0, 'adult': 1.0, 'challenge': 1.0, 'making': 1.0, 'new': 1.0, 'time': 1.0, 'one': 1.0, 'even': 1.0, 'safety': 1.0, 'were': 1.0, 'replace': 1.0, 'course': 1.0, 'pull': 1.0, 'only': 1.0, 'much': 1.0, 'use': 1.0, 'in': 1.0, 'electric': 1.0, 'used': 1.0, 'store': 1.0, 'was': 1.0, 'design': 1.0, 'purchased': 1.0, 'thought': 1.0, 'first': 1.0, '1st': 1.0, 'at': 3.0, 'out': 2.0, 'when': 1.0, 'you': 1.0, 'well': 1.0, 'we': 2.0, 'a': 3.0, 'but': 1.0, 'work': 1.0, 'cords': 1.0, 'cabinet': 1.0, 'ridges': 2.0, 'con': 1.0, 'easy': 2.0, 'will': 1.0, 'knob': 1.0, 'clever': 1.0, 'ones': 2.0, 'the': 8.0, 'pro': 1.0, 'price': 1.0, 'tightly': 1.0, 'another': 1.0, 'them': 1.0, 'baby': 2.0, 'have': 1.0, 'this': 1.0, 'with': 1.0, 'is': 1.0, 'really': 1.0, 'very': 2.0, 'figure': 1.0, 'good': 1.0, 'which': 1.0, 'fit': 1.0, 'for': 4.0, '4': 2.0, 'our': 1.0, 'latches': 1.0, 'to': 6.0, 'spend': 1.0, 'too': 1.0, 'and': 1.0, 'buy': 1.0, 'brand': 1.0, 'old': 1.0, 'better': 1.0, 'attach': 1.0, '9': 1.0, 'same': 1.0, 'outlet': 2.0, 'that': 2.0, 'are': 1.0, 'smooth': 1.0, 'door': 1.0, 'plastic': 1.0, 'of': 2.0, 'rather': 1.0, 'than': 1.0, 'make': 1.0, 'it': 2.0, 'covers': 3.0, 'month': 1.0}
Word element => {'worth': 1.0, 'still': 1.0, 'though': 1.0, 'doors': 1.0, 'it': 1.0, 'great': 1.0, 'locks': 1.0, 'only': 1.0, 'set': 1.0, 'fit': 1.0, 'my': 1.0, 'the': 1.0, 'door': 1.0, 'on': 1.0, 'knob': 1.0, 'inside': 1.0}
Word element => {'cabinets': 1.0, 'of': 3.0, 'kiddo': 1.0, 'out': 2.0, 've': 1.0, 'the': 3.0, 'they': 2.0, 'at': 1.0, 'drawers': 1.0, 'way': 1.0, 'work': 1.0, 'pivot': 1.0, 'but': 1.0, 're': 1.0, 'well': 2.0, 'a': 1.0, 'off': 1.0, 'sort': 1.0, 'already': 1.0, 'keeping': 1.0, 'fragile': 1.0, 'we': 1.0, 'break': 1.0, 'and': 3.0, 'couple': 1.0, 'had': 1.0}
Word element => {'infant': 1.0, 'an': 1.0, 'not': 1.0, 'meant': 1.0, 'cute': 1.0, 'bigger': 1.0, 's': 1.0, 'him': 1.0, 'it': 1.0, 'than': 1.0, 'but': 2.0, 'perfect': 1.0, 'i': 1.0, 'arrived': 1.0, 'condition': 1.0, 'quickly': 1.0, 'bought': 1.0, 'my': 1.0, 'item': 2.0, 'grandson': 1.0, 'in': 1.0, 'for': 2.0}
Word element => {'wanted': 1.0, 'what': 1.0, 'color': 1.0, 'in': 1.0, 'disappointed': 1.0, 'totally': 1.0, 'but': 2.0, 'confused': 1.0, 'not': 2.0, 'just': 3.0, 'on': 1.0, 'checked': 1.0, 'got': 1.0, 'so': 1.0, 'when': 1.0, 'm': 2.0, 'impressive': 1.0, 'front': 1.0, 'maybe': 1.0, 'the': 3.0, 'page': 1.0, 'like': 1.0, 'it': 1.0, 'definitely': 1.0, 'says': 1.0, 'i': 7.0, 'green': 1.0, 'thought': 1.0, 'although': 1.0, 'pouch': 1.0, 'fine': 1.0}
Word element => {'anyone': 1.0, 'product': 1.0, 'definitely': 1.0, 'would': 1.0, 'days': 1.0, 'sunny': 1.0, 'those': 1.0, 'remove': 1.0, 'and': 1.0, 'wind': 1.0, 'run': 1.0, 'great': 1.0, 'the': 1.0, 'my': 1.0, 'thing': 1.0, 'to': 2.0, 'was': 1.0, 'recommend': 1.0, 'easy': 1.0, 'lot': 1.0, 'a': 1.0, 'absolutely': 1.0, 'this': 3.0, 'it': 1.0, 'i': 4.0, 'just': 1.0, 'much': 1.0, 'purchased': 1.0, 'love': 1.0, 'for': 2.0, 'too': 1.0, 'daughter': 1.0, 'so': 1.0, 'is': 1.0, 'fairly': 1.0}
Word element => {'returned': 1.0, 'have': 1.0, 'would': 1.0, 'shape': 1.0, 'or': 1.0, 'incorrect': 1.0, 'so': 1.0, 'every': 1.0, 'had': 1.0, 'brains': 1.0, 'good': 1.0, 'if': 2.0, 'sure': 1.0, 'give': 1.0, 'not': 1.0, 'which': 1.0, 'often': 1.0, 'my': 1.0, 'are': 2.0, 'and': 3.0, 'tiny': 1.0, 'do': 1.0, 'matching': 1.0, 'am': 1.0, 'you': 2.0, 'creepy': 1.0, 'developing': 1.0, 'up': 1.0, 'tell': 1.0, '34': 4.0, 'mirror': 2.0, 'star': 1.0, 'color': 1.0, 'one': 1.0, 'it': 3.0, 'this': 3.0, 'is': 3.0, 'strange': 1.0, 'toy': 2.0, 'baby': 1.0, 'your': 1.0, 'they': 1.0, 'saved': 1.0, 'i': 5.0, 'because': 1.0, 'item': 1.0, 'will': 2.0, 'but': 1.0, 'friend': 1.0, 'an': 1.0, 'any': 1.0, 'to': 1.0, 'laptop': 1.0, 'image': 1.0, 'love': 1.0, 'for': 2.0, 'lights': 1.0, 'especially': 1.0, 'a': 1.0, 'bright': 1.0, 'the': 4.0, 'buttons': 1.0, 'box': 1.0, 'gave': 1.0, 'that': 2.0, 'pushed': 1.0, 'in': 1.0, 'very': 1.0, 'flash': 1.0, 'fast': 1.0}
Word element => {'happy': 1.0, 'everybody': 1.0, 'service': 1.0, 'got': 1.0, 'with': 1.0, 'replacement': 1.0, 'by': 1.0, 'good': 1.0, 'paid': 1.0, 'postage': 1.0, 'returned': 1.0, 'toys': 1.0, 'swapped': 1.0, 'from': 1.0, 'charge': 1.0, 'enjoys': 1.0, '21': 1.0, 'day': 2.0, 'next': 1.0, 'customer': 1.0, 'doorstep': 1.0, 'had': 1.0, 'they': 1.0, 'amazon': 3.0, 'contacted': 1.0, 'shipping': 1.0, 'still': 1.0, 'but': 1.0, 'online': 1.0, 'of': 1.0, 'video': 1.0, 'fine': 1.0, 'button': 2.0, 'loved': 1.0, 'pressed': 2.0, 'posted': 1.0, 'said': 1.0, 'however': 1.0, 'works': 1.0, 'granddaughter': 2.0, 'refund': 1.0, 'was': 1.0, 'i': 4.0, 'when': 2.0, 'sheep': 2.0, 'instantly': 1.0, 'embarrassing': 1.0, 'be': 1.0, 'playing': 1.0, 'defective': 1.0, 'the': 11.0, 'elephant': 2.0, 'it': 6.0, 'she': 4.0, 'birthday': 1.0, 'as': 1.0, 'immature': 1.0, 'year': 1.0, 'mix': 1.0, 'another': 1.0, 'my': 3.0, 'party': 1.0, 'present': 1.0, '1': 1.0, 'and': 5.0, 'lit': 2.0, 'for': 3.0, 'bought': 2.0, 'one': 4.0, 'up': 3.0, 'baa': 1.0, 'trumpeted': 1.0, 'young': 1.0, 'old': 1.0, 'noticed': 1.0, 'would': 1.0, 'although': 1.0, 'long': 1.0, 'before': 1.0, 'time': 1.0, 'me': 1.0, 'man': 1.0, 'not': 1.0, 'waived': 1.0, 'this': 1.0, 'lost': 1.0, 'on': 2.0, 'other': 1.0, 's': 1.0, 'a': 4.0, 'guests': 1.0, 'at': 1.0}
Word element => {'durability': 1.0, 'somewhat': 1.0, 'speaks': 1.0, 'which': 1.0, 'yet': 1.0, 'broken': 1.0, 'reasonable': 1.0, 'christmas': 1.0, 'have': 1.0, 'the': 2.0, 'long': 1.0, 'for': 2.0, 'attention': 1.0, 'pay': 1.0, 'toy': 2.0, 'expect': 1.0, 'two': 1.0, 'i': 4.0, 'guess': 1.0, 'only': 1.0, 'and': 1.0, 'too': 1.0, 'so': 1.0, 'todler': 1.0, 'd': 1.0, 'but': 1.0, 'can': 1.0, 'you': 1.0, 'seen': 1.0, 'if': 1.0, 'not': 3.0, 'exactly': 1.0, 'to': 3.0, 'as': 2.0, 'interesting': 1.0, 'had': 1.0, 'thought': 1.0, 'here': 1.0, 'be': 1.0, 'bought': 1.0, 'she': 1.0, 'it': 8.0, 'looks': 1.0, 't': 1.0, 's': 4.0, 'might': 1.0, 'a': 3.0, 'little': 1.0, 'her': 1.0, 'good': 1.0, 'different': 1.0, 'anything': 1.0, 'shelf': 1.0, 'itself': 1.0, 'in': 1.0, 'person': 1.0, 'on': 2.0, 'got': 1.0}
Word element => {'impressed': 1.0, 'ms': 1.0, 'mr': 1.0, 'if': 1.0, 'even': 1.0, 'out': 1.0, 'finish': 1.0, 'will': 1.0, 'pushing': 1.0, 'phrase': 1.0, 'pushed': 2.0, 'time': 1.0, 'every': 1.0, 'button': 3.0, 'start': 1.0, 'a': 1.0, 't': 1.0, 'doesn': 1.0, 'like': 1.0, 'especially': 1.0, 'about': 1.0, 'thing': 1.0, 'in': 1.0, 'level': 1.0, 'is': 4.0, 'do': 1.0, 'i': 3.0, 'old': 1.0, 'perfect': 1.0, 'this': 2.0, 'toy': 1.0, 'girls': 1.0, 'images': 1.0, 'show': 1.0, 'love': 1.0, 'lit': 1.0, 'easy': 1.0, 'loud': 1.0, 'excellant': 1.0, 'm': 1.0, 'mirror': 1.0, 'twin': 1.0, 'voice': 1.0, 'durability': 1.0, 'quality': 1.0, 'the': 9.0, 'my': 1.0, 'or': 1.0, 'volume': 1.0, 'that': 2.0, '16': 1.0, 'they': 1.0, 'month': 1.0, 'unlike': 1.0, 'and': 4.0, 'too': 2.0, 'v': 1.0, 'toys': 1.0, 'one': 2.0, 'tech': 1.0, 'have': 1.0, 'little': 1.0, 'brightly': 1.0, 'over': 3.0, 'sound': 1.0, 'up': 1.0, 'once': 1.0, 'of': 1.0, 'push': 1.0, 'are': 1.0, 'to': 2.0, 'see': 1.0, 'keeps': 1.0, 'design': 1.0, 'lots': 1.0, 'different': 1.0, 'buttons': 1.0}
Word element => {'less': 1.0, 'no': 1.0, 'purchase': 1.0, 'was': 1.0, 'not': 1.0, 'bought': 1.0, 'son': 1.0, 'zippo': 1.0, 'for': 2.0, 'my': 1.0, 'metal': 1.0, 'offers': 1.0, 'thrilled': 1.0, 'he': 1.0, 'christmas': 1.0, 'this': 1.0, 'it': 1.0, 'the': 1.0, 'great': 1.0, 'i': 1.0, 's': 1.0, 'highest': 1.0, 'that': 1.0, 'quality': 1.0, 'but': 1.0, 'a': 1.0}
Word element => {'use': 1.0, 'on': 1.0, 'wasted': 1.0, 'stupid': 1.0, 'and': 5.0, 'too': 1.0, 'me': 1.0, 'my': 2.0, 'business': 1.0, 'care': 1.0, 'amazon': 1.0, 'through': 1.0, 'order': 4.0, 'however': 1.0, 'items': 1.0, '99': 2.0, 'completely': 1.0, 'bringing': 1.0, 'is': 2.0, 'refill': 1.0, 'since': 1.0, '1': 1.0, 'find': 1.0, 'purchase': 1.0, 'usually': 1.0, '7': 1.0, 'more': 1.0, 'charged': 1.0, 'purchased': 1.0, 'had': 3.0, 'correct': 1.0, 'final': 1.0, 'all': 4.0, 'to': 3.0, 'as': 1.0, 'ticked': 1.0, 'itself': 2.0, 'in': 3.0, 'for': 2.0, 'which': 1.0, 'shipping': 4.0, 'taken': 1.0, 'it': 3.0, 'i': 12.0, 'the': 15.0, 'of': 3.0, 'impression': 1.0, '3': 1.0, 'put': 1.0, 'also': 1.0, 'item': 1.0, 'was': 3.0, '5': 1.0, 'that': 5.0, '15': 2.0, 'pak': 1.0, 'am': 1.0, 'about': 1.0, 'no': 1.0, 'total': 1.0, 'under': 1.0, 'same': 1.0, 'if': 2.0, 'product': 3.0, 'price': 1.0, 'unavailable': 1.0, 'can': 1.0, '00': 1.0, 'so': 1.0, 'cost': 1.0, 'fit': 1.0, 't': 3.0, 'review': 1.0, 'single': 1.0, 'very': 1.0, 'werent': 1.0, 'first': 1.0, 'bad': 1.0, 'enough': 1.0, 'off': 1.0, 'liner': 2.0, 'went': 1.0, 'inside': 1.0, 'container': 1.0, 'their': 1.0, 'even': 2.0, 'don': 1.0, 'dekor': 1.0, 'changed': 1.0, 'design': 1.0, 'bought': 1.0, 'inexcusable': 1.0, 'mind': 1.0, 'with': 1.0, 'than': 1.0, '2003': 1.0, 'but': 1.0, 'a': 2.0, 'small': 1.0, 'didn': 1.0, 'ordered': 1.0, 'this': 1.0}
Word element => {'given': 1.0, 'no': 1.0, 'money': 1.0, 'the': 1.0, 'worth': 1.0, 'not': 1.0, 'as': 1.0, 'info': 1.0, 'present': 1.0, 'but': 1.0, 'a': 1.0, 'clock': 1.0, 'unfortunately': 1.0, 'was': 1.0, 'before': 1.0, 'certainly': 1.0, 'lasted': 1.0, 'only': 1.0, 'it': 3.0, 'christmas': 1.0, 'this': 1.0, 'stopped': 1.0, '6': 1.0, 'months': 1.0, 'purchased': 1.0, 'keeping': 1.0, 'time': 1.0, 'warranty': 1.0, 'is': 2.0, 'looks': 1.0, 'nice': 1.0}
Word element => {'for': 1.0, 'value': 1.0, 'in': 1.0, 'clock': 2.0, 'a': 1.0, 'frog': 1.0, 'great': 2.0, 'the': 4.0, 'cute': 1.0, 'and': 1.0, 'as': 1.0, 'very': 1.0, 'best': 1.0, 'looks': 1.0, 'is': 2.0, 'this': 1.0, 'that': 2.0, 'our': 1.0, 'price': 1.0, 'ticks': 1.0, 'baby': 1.0, 's': 1.0, 'nursery': 1.0, 'back': 1.0, 'eyes': 1.0, 'feature': 1.0, 'move': 1.0, 'forth': 1.0}
Word element => {'hassle': 1.0, 'does': 1.0, 'but': 2.0, 'you': 1.0, 'the': 2.0, 'work': 1.0, 'not': 2.0, 'would': 1.0, 'cute': 1.0, 'hand': 1.0, 'know': 1.0, 'item': 1.0, 'this': 1.0, 'worth': 1.0, 'by': 1.0, 'clock': 1.0, 'never': 1.0, 'second': 1.0}
Word element => {'nursery': 1.0, 'our': 1.0, 'didn': 1.0, 'eye': 1.0, 'in': 1.0, 'perfect': 1.0, 'well': 1.0, 'clock': 1.0, 'know': 1.0, 'like': 1.0, 'very': 1.0, 'move': 1.0, 'keeps': 1.0, 'when': 1.0, 'i': 1.0, 'bought': 1.0, 'this': 2.0, 'it': 2.0, 't': 1.0, 'great': 1.0, 's': 1.0, 'built': 1.0, 'they': 1.0, 'time': 1.0, 'really': 1.0, 'looks': 1.0}
Word element => {'lady': 1.0, 'hormonal': 1.0, 'with': 1.0, 'messing': 1.0, 'for': 1.0, 'thanks': 1.0, 'ordered': 1.0, 'not': 1.0, 'was': 1.0, 'it': 1.0, 'pregnant': 1.0, 'first': 1.0, 'they': 1.0, 'clock': 2.0, 'a': 2.0, 'sent': 1.0, 'replacement': 1.0, 'the': 2.0, 'broken': 1.0, 'then': 1.0, 'i': 2.0, 'when': 1.0, 'got': 1.0}
Word element => {'well': 1.0, 's': 1.0, 'money': 1.0, 'it': 1.0, 'their': 1.0, 'to': 1.0, 'daughter': 1.0, 'put': 1.0, 'worth': 1.0, 'swinging': 1.0, 'little': 2.0, 'with': 1.0, 'is': 1.0, 'hypnotic': 1.0, 'my': 1.0, 'the': 2.0, 'clock': 1.0, 'quiet': 1.0, 'sleep': 1.0, 'but': 1.0, 'active': 1.0, 'this': 1.0, 'eyes': 1.0}
Word element => {'fix': 1.0, 'have': 1.0, 'bother': 1.0, 'apart': 1.0, 'take': 1.0, 'easy': 1.0, 'and': 1.0, 'on': 1.0, 'but': 1.0, 'back': 1.0, 'like': 1.0, 'clock': 1.0, 'still': 1.0, 'cute': 1.0, 'arm': 1.0, 'goes': 1.0, 'eyes': 1.0, 'left': 1.0, 'the': 2.0, 'that': 1.0, 'swing': 1.0, 'i': 1.0, 'when': 1.0, 'it': 4.0, 'was': 2.0, 'to': 4.0, 'right': 2.0, 's': 1.0, 'hour': 1.0, 'downside': 1.0, 'arrived': 1.0, 'a': 2.0, 'popped': 1.0, 'good': 1.0, 'off': 1.0}
Word element => {'75': 1.0, 'than': 1.0, 'paying': 1.0, 'or': 1.0, 'worth': 1.0, 'not': 1.0, 'pretty': 1.0, 'itself': 1.0, 'cloth': 1.0, 'material': 1.0, 'per': 1.0, 'labels': 1.0, 'idiot': 1.0, 'their': 1.0, 'keep': 1.0, 'are': 1.0, 'off': 1.0, 'come': 1.0, 'quality': 2.0, 'good': 2.0, 'item': 1.0, 'overpriced': 1.0, 'although': 1.0, 'ultra': 1.0, 'decor': 1.0, 'warning': 3.0, 'some': 2.0, 'such': 1.0, 'they': 3.0, 'on': 1.0, 'your': 1.0, 'that': 3.0, 'must': 1.0, 'have': 4.0, 'leave': 1.0, 'thing': 1.0, 'about': 1.0, 'disclaimer': 1.0, 'wood': 2.0, 'i': 1.0, 'cheap': 1.0, 'days': 1.0, 'miyo': 1.0, 'stuck': 1.0, 'this': 4.0, 'with': 1.0, 'sticky': 1.0, 'couple': 1.0, 'designed': 1.0, 'worst': 1.0, 'and': 4.0, 'of': 2.0, 'how': 1.0, 'received': 1.0, 'a': 1.0, 't': 2.0, 'ago': 1.0, 'over': 2.0, 'it': 3.0, 'remove': 1.0, 'profit': 1.0, 'greedy': 1.0, 'the': 7.0, 'ugly': 1.0, 'used': 1.0, 'use': 1.0, 'alternatively': 1.0, 'paper': 2.0, 'easily': 1.0, 'you': 3.0, 'just': 1.0, 'can': 4.0, 'so': 1.0, 'juts': 1.0, 'neatly': 1.0, 'leaves': 1.0, 'margin': 1.0, 'as': 2.0, 'all': 2.0, 'glue': 3.0, 'to': 1.0, 'more': 1.0, 'is': 3.0, 'scrape': 1.0, 'much': 1.0, 'papers': 2.0, 'nails': 1.0, 'still': 2.0}
Word element => {'from': 1.0, 'drink': 1.0, 'help': 1.0, 'for': 1.0, 'experience': 1.0, 'fun': 1.0, '6': 1.0, 'still': 1.0, 'is': 1.0, 'to': 1.0, 'now': 1.0, 'my': 1.0, 'cup': 1.0, 'month': 1.0, 'right': 1.0, 'can': 1.0, 'with': 1.0, 'he': 1.0, 'this': 1.0, 'it': 2.0, 'hold': 1.0, 'interesting': 1.0, 'and': 1.0, 'ease': 1.0, 'an': 1.0, 'but': 1.0, 'needs': 1.0}
Word element => {'uses': 1.0, 'still': 1.0, 'loves': 1.0, 'drinking': 1.0, '2': 1.0, 'after': 1.0, 'refused': 1.0, 'very': 1.0, 'from': 2.0, 'a': 2.0, 'bottle': 1.0, 'drink': 1.0, 'now': 1.0, 'to': 1.0, 'old': 1.0, 'daughter': 1.0, 'years': 1.0, 'my': 1.0, 'cup': 1.0, 'few': 1.0, 'she': 2.0, 'times': 1.0, 'durable': 1.0, 'this': 1.0, 'it': 2.0, 's': 1.0, 'and': 1.0}
Word element => {'fingers': 1.0, 'size': 1.0, 'are': 1.0, 'they': 1.0, 'opened': 1.0, 'when': 1.0, 'appeared': 1.0, 'handles': 1.0, 'from': 1.0, 'drink': 1.0, 'straight': 1.0, 'head': 1.0, 'keep': 1.0, 'sippy': 1.0, 'too': 1.0, 'and': 4.0, 'yoghurt': 1.0, 'curious': 1.0, '8': 1.0, 'small': 2.0, 'have': 1.0, 'but': 1.0, 'can': 1.0, 'work': 1.0, 'would': 1.0, 'rather': 1.0, 'not': 1.0, 'bought': 1.0, 'despite': 1.0, 'i': 3.0, 'bend': 1.0, 'perfect': 1.0, 'this': 1.0, 'plastic': 1.0, 'he': 3.0, 'with': 1.0, 'hands': 1.0, 'without': 1.0, 'the': 7.0, 'we': 1.0, 'a': 1.0, 'cup': 5.0, 'if': 1.0, 'price': 1.0, 'actually': 1.0, 'love': 1.0, 'for': 2.0, 'expensive': 1.0, 'because': 1.0, 'does': 3.0, 'his': 4.0, 'cups': 1.0, 'to': 2.0, 'doidy': 1.0, 'any': 1.0, 'our': 1.0, 'empty': 1.0, 'it': 3.0, 'month': 1.0, 'picked': 1.0, 'sipped': 1.0, 'old': 1.0, 'problems': 1.0, 'up': 1.0, 'over': 1.0, 'box': 1.0, 'backwards': 1.0, 'was': 1.0, 'anymore': 1.0, 'like': 1.0}
Word element => {'tried': 1.0, 'glad': 1.0, 'm': 1.0, 'thought': 1.0, 'have': 1.0, 'would': 1.0, 'i': 2.0, 'watched': 1.0, 'down': 1.0, 'in': 2.0, 'it': 7.0, 'this': 2.0, 'use': 1.0, 'gimmick': 1.0, 'other': 1.0, 'my': 1.0, 'cup': 1.0, 'now': 1.0, 'was': 2.0, 'key': 1.0, '18': 1.0, 'help': 1.0, 'at': 1.0, 'he': 3.0, 'addition': 1.0, 'around': 1.0, 'months': 2.0, 'offering': 1.0, 'and': 4.0, 'still': 1.0, 'son': 2.0, 'very': 1.0, '10': 1.0, 'a': 2.0, 'we': 2.0, 's': 2.0, 'recommended': 1.0, 'well': 1.0, 'see': 1.0, 'designed': 1.0, 'really': 2.0, 'does': 1.0, 'liquid': 1.0, 'to': 3.0, 'cups': 1.0, 'as': 2.0, 'our': 1.0, 'the': 3.0, 'friend': 1.0, 'control': 1.0, 'but': 1.0, 'can': 1.0, 'drinking': 1.0, 'started': 1.0, 'baby': 1.0, 'helping': 1.0, 'tilted': 1.0, 'looked': 1.0, 'fluid': 1.0, 'loves': 1.0, 'that': 1.0, 'totally': 1.0}
Word element => {'see': 1.0, 'herself': 1.0, 'by': 1.0, 'lap': 1.0, 'introduce': 1.0, 'trying': 1.0, 'seriously': 1.0, 'was': 2.0, 'tried': 1.0, 'now': 1.0, 'weeks': 1.0, 'exclusively': 1.0, 'little': 2.0, 'breastfed': 1.0, 'three': 1.0, 'when': 3.0, 's': 1.0, 'we': 2.0, 'a': 5.0, 'going': 1.0, 'to': 3.0, 'our': 1.0, 'doidy': 1.0, 'would': 2.0, 'started': 1.0, 'baby': 1.0, 'about': 1.0, 'with': 1.0, 'she': 6.0, 'it': 2.0, 'is': 2.0, 'old': 1.0, 'realized': 1.0, '10': 1.0, 'for': 1.0, 'bottle': 1.0, 'bit': 2.0, 'milk': 1.0, 'play': 1.0, 'and': 3.0, 'then': 1.0, 'what': 1.0, 'on': 1.0, 'up': 1.0, 'over': 1.0, 'months': 1.0, 'freak': 1.0, 'sight': 1.0, 'the': 3.0, 'out': 1.0, 'grabbed': 1.0, 'introduced': 1.0, 'cup': 1.0, 'quite': 1.0, 'immediately': 1.0, 'handles': 1.0}
Word element => {'sturdiness': 1.0, 'definitely': 1.0, 'glad': 1.0, 'm': 1.0, 'regards': 1.0, 'dancing': 1.0, 'stop': 1.0, 's': 1.0, 't': 1.0, 'can': 1.0, 'still': 1.0, 'online': 1.0, 'before': 1.0, 'certainly': 1.0, 'information': 1.0, 'the': 4.0, 'is': 2.0, 'more': 1.0, 'wife': 1.0, 'from': 1.0, 'functionality': 1.0, 'read': 1.0, 'very': 2.0, 'be': 1.0, 'material': 1.0, 'as': 3.0, 'to': 2.0, 'recommend': 1.0, 'was': 2.0, 'she': 1.0, 'looks': 2.0, 'it': 6.0, 'this': 2.0, 'durable': 1.0, 'buying': 1.0, 'with': 1.0, 'i': 6.0, 'quite': 1.0, 'received': 1.0, 'and': 4.0, 'need': 1.0, 'bag': 3.0, 'everything': 2.0, 'washable': 1.0, 'feels': 1.0, 'enough': 1.0, 'likes': 1.0, 'expected': 1.0, 'well': 1.0, 'for': 4.0, 'size': 2.0, 'large': 1.0, 'contain': 1.0, 'when': 1.0, 'you': 1.0, 'would': 2.0, 'an': 1.0, 'outing': 1.0, 'impressed': 1.0, 'your': 1.0, 'baby': 1.0, 'plus': 1.0, 'joy': 1.0, 'my': 1.0}
Word element => {'resting': 1.0, 'on': 2.0, 'worn': 1.0, 'has': 1.0, 'new': 1.0, 'ground': 1.0, 'a': 1.0, 'needing': 1.0, 'out': 1.0, 'monthly': 1.0, 'reason': 1.0, 'wash': 1.0, 'from': 1.0, 'very': 1.0, 'son': 1.0, 'is': 4.0, 'almost': 1.0, 'm': 2.0, 'buying': 1.0, 'my': 1.0, 'the': 4.0, 'use': 1.0, 'bag': 1.0, 'only': 1.0, 'durable': 1.0, 'daily': 1.0, 'this': 1.0, 'it': 5.0, 'i': 5.0, '3': 1.0, 'edges': 1.0, 'and': 2.0, 'because': 1.0, 'huge': 1.0, 'thinking': 1.0, 'bottom': 1.0, 'of': 1.0, 'same': 1.0, 'love': 3.0, 'one': 2.0, 'exact': 1.0, 'again': 1.0}
Word element => {'well': 1.0, 'baby': 1.0, 'i': 1.0, 'your': 1.0, 'durable': 1.0, 'for': 1.0, 'could': 1.0, 'diaper': 1.0, 'is': 2.0, 'everything': 1.0, 'you': 1.0, 'this': 2.0, 'bag': 2.0, 'up': 1.0, 'and': 1.0, 'need': 1.0, 'huge': 1.0, 'love': 1.0, 'cleans': 1.0, 'possibly': 1.0, 'it': 2.0, 'fits': 1.0}
Word element => {'things': 1.0, 'boys': 1.0, 'is': 1.0, 'organized': 1.0, 'i': 1.0, 'my': 1.0, 'the': 2.0, 'for': 1.0, 'design': 1.0, 'very': 1.0, 'pockets': 1.0, 'and': 2.0, 'how': 1.0, 'big': 1.0, 'great': 1.0, 'love': 1.0, 'were': 1.0, 'baby': 1.0, 'its': 1.0}
Word element => {'good': 1.0, 'in': 1.0, 'can': 1.0, 'did': 1.0, 'but': 1.0, 'loose': 1.0, 'amount': 1.0, 'reorder': 1.0, 'what': 1.0, 'of': 2.0, 'time': 1.0, 'has': 1.0, 'just': 1.0, 'lots': 1.0, 'and': 2.0, 'i': 2.0, 's': 1.0, 'needed': 1.0, 'one': 1.0, 'for': 1.0, 'my': 1.0, 'great': 1.0, 'the': 1.0, 'due': 1.0, 'little': 1.0, 'space': 1.0, 'monster': 1.0, 'had': 1.0, 'to': 2.0, 'it': 1.0, 'first': 1.0, 'a': 1.0, 'stitching': 1.0, 'return': 1.0}
Word element => {'needs': 1.0, 'that': 1.0, 'things': 1.0, 'every': 1.0, 'baby': 1.0, 'mom': 1.0, 'extra': 1.0, 'all': 1.0, 'those': 1.0, 'to': 1.0, 'enough': 1.0, 'is': 1.0, 'a': 1.0, 'diaper': 1.0, 'cute': 1.0, 'this': 1.0, 'bag': 1.0, 'very': 1.0, 'quality': 1.0, 'and': 1.0, 'keep': 1.0, 'good': 1.0, 'big': 1.0}
Word element => {'graco': 1.0, 'before': 1.0, 'ugly': 1.0, 'the': 1.0, 'using': 1.0, 'gotten': 1.0, 'had': 1.0, 'wish': 1.0, 'it': 2.0, 's': 1.0, 'one': 1.0, 'i': 3.0, 'cute': 1.0, 'lots': 1.0, 'was': 1.0, 'material': 1.0, 'sooner': 1.0, 'of': 1.0, 'good': 1.0, 'has': 1.0, 'and': 1.0, 'space': 1.0}
Word element => {'in': 1.0, 'have': 1.0, 'should': 1.0, 'price': 1.0, 'twice': 1.0, 'requested': 1.0, 'postage': 1.0, 'up': 1.0, 'ended': 1.0, 'out': 1.0, 'n': 1.0, 'hope': 1.0, 'spacious': 1.0, 'find': 1.0, 'gift': 1.0, 'ordered': 1.0, 'she': 1.0, 'mom': 1.0, 'place': 1.0, 'the': 6.0, 'big': 1.0, 'great': 1.0, 'my': 1.0, 'due': 1.0, 'paying': 1.0, 'bag': 3.0, 'girl': 1.0, 'this': 2.0, 'first': 2.0, 'compact': 1.0, 'durable': 1.0, 'folding': 1.0, 'and': 1.0, 'very': 2.0, 'thru': 1.0, 'likes': 1.0, 'born': 1.0, 'color': 1.0, 'bought': 1.0, 'u': 2.0, 'fren': 1.0, 'as': 1.0, 'to': 2.0, 'was': 1.0, 'for': 2.0, 'much': 1.0, 'packing': 1.0, 'time': 1.0, 'is': 1.0, 'enough': 1.0, 'last': 1.0, 'her': 1.0, '2nd': 1.0, 'if': 1.0, '3rd': 1.0, 'of': 2.0, 'packaging': 2.0, 'i': 1.0, 'shipped': 2.0, 'within': 1.0, 'a': 2.0, 's': 2.0, 'cos': 1.0, 'no': 1.0, 'but': 1.0}
Word element => {'good': 1.0, 'him': 2.0, 'cover': 1.0, 'they': 1.0, 'and': 1.0, 'doggie': 1.0, 'every': 1.0, 'purchased': 1.0, 'were': 1.0, 'dont': 1.0, 'baby': 2.0, 'now': 1.0, 'is': 2.0, 'why': 1.0, 'a': 1.0, 'are': 1.0, 'my': 2.0, 'tuck': 1.0, 'at': 1.0, 'blankets': 1.0, 'only': 1.0, 'main': 1.0, 'have': 1.0, 'the': 1.0, 'great': 1.0, 'these': 1.0, 'home': 1.0, 'night': 1.0, 'i': 2.0, '11yrs': 1.0, 'old': 1.0, 'so': 1.0, 'in': 1.0, 'reason': 1.0, 'there': 1.0}
Word element => {'bed': 1.0, 'baby': 1.0, 'bought': 1.0, 'for': 1.0, 'it': 1.0, 'great': 1.0, 'soft': 1.0, 'i': 2.0, 'cuddly': 1.0, 'read': 1.0, 'doll': 1.0, 'other': 1.0, 'purpose': 1.0, 'reviews': 1.0, 'very': 1.0, 'and': 3.0, 'the': 2.0, 'my': 1.0, 'happy': 1.0, 'with': 1.0, 'purchase': 1.0}
Word element => {'picture': 1.0, 'lighter': 1.0, 'and': 1.0, 'choking': 1.0, 'is': 2.0, 'which': 1.0, 'all': 1.0, 'hassled': 1.0, 'poor': 1.0, 'to': 2.0, 'expect': 1.0, 'buy': 1.0, 'cheap': 1.0, 'i': 1.0, 'strings': 1.0, 'a': 2.0, 'did': 1.0, 'will': 1.0, 'quality': 1.0, 'very': 1.0, 'corners': 1.0, 'thin': 1.0, 'hanging': 1.0, 'it': 3.0, 'my': 1.0, 'not': 2.0, 'started': 1.0, 'such': 1.0, 'the': 2.0, 'are': 1.0, 'baby': 1.0, 'be': 1.0, 'suck': 1.0, '4': 1.0, 'on': 2.0, 'that': 2.0}
Word element => {'you': 1.0, 'oomfort': 1.0, 'this': 1.0, 'he': 1.0, 'frayed': 1.0, 'torn': 1.0, 'thank': 1.0, 'has': 1.0, 'them': 1.0, 'none': 1.0, 'laundry': 1.0, 'course': 1.0, 'and': 2.0, 'downstairs': 1.0, 'we': 2.0, '8': 1.0, 'have': 1.0, 'bag': 1.0, 'or': 1.0, 'loves': 1.0, '23': 1.0, 'months': 1.0, 'from': 1.0, 'son': 1.0, 'old': 1.0, 'night': 2.0, 'my': 1.0, 'gets': 1.0, 'rotation': 1.0, 'of': 3.0, 'keep': 1.0, 'in': 1.0, 'great': 1.0, 'the': 1.0, 'these': 1.0, 'diaper': 1.0, 'which': 1.0, 'upstairs': 1.0, 'between': 1.0, 'his': 1.0, 'daycare': 1.0, 'car': 1.0}
Word element => {'glad': 1.0, 'got': 1.0, 'everyday': 1.0, 'played': 1.0, 'far': 1.0, 'so': 2.0, 'had': 1.0, 'leaks': 1.0, 'problems': 1.0, 'no': 1.0, 'durable': 1.0, 'minutes': 1.0, 'than': 1.0, 'many': 1.0, 'take': 1.0, 'set': 1.0, 'way': 1.0, 'of': 1.0, 'out': 1.0, 'easy': 1.0, 'get': 1.0, 'up': 2.0, 'fold': 1.0, 'with': 1.0, 'blower': 1.0, 'am': 1.0, 'when': 1.0, 'be': 1.0, 'bought': 1.0, 'children': 1.0, 'summers': 1.0, 'it': 9.0, 'found': 1.0, 'kids': 3.0, 'this': 1.0, 'where': 1.0, 'love': 1.0, 'for': 2.0, 'they': 2.0, 'less': 1.0, 'live': 1.0, 'active': 1.0, 'the': 5.0, 'very': 3.0, 'best': 1.0, 'and': 7.0, 'do': 1.0, 'bounce': 1.0, 'i': 5.0, 'two': 1.0, 'done': 1.0, 'bouncer': 1.0, 'since': 1.0, 'who': 1.0, 'hot': 1.0, 'needed': 1.0, 'each': 1.0, 'something': 1.0, 'as': 2.0, 'any': 1.0, 'our': 1.0, 'to': 2.0, 'down': 1.0, 'inside': 1.0, 'off': 1.0, 're': 1.0, 'house': 2.0, 'can': 1.0, '2': 1.0, 'but': 1.0, 'is': 3.0, 'fine': 1.0, 'my': 3.0, 'fits': 1.0, 'turn': 1.0, 'in': 3.0, 'are': 1.0, 'dinning': 1.0, '5': 3.0, 'room': 1.0, 'small': 2.0, 'have': 2.0, 's': 1.0, 'we': 3.0, 'a': 1.0, 'blast': 1.0, 'part': 1.0}
Word element => {'how': 1.0, 'boy': 1.0, 'twin': 2.0, 'just': 1.0, 'purchasing': 1.0, 'that': 2.0, 'name': 1.0, 'clean': 1.0, 'wash': 1.0, 'up': 2.0, 'will': 1.0, 'voila': 1.0, 'spit': 1.0, 'at': 1.0, 'ups': 1.0, 'cover': 1.0, 'regular': 1.0, 'use': 3.0, 'more': 2.0, 'even': 1.0, 'think': 2.0, 'washed': 1.0, 'then': 1.0, 'loved': 2.0, 'not': 1.0, 'give': 1.0, 'now': 1.0, 'born': 1.0, 'much': 1.0, 'pack': 2.0, 'for': 4.0, 'love': 1.0, 'white': 2.0, 'out': 1.0, 'and': 7.0, 'absolutely': 1.0, 's': 1.0, 'we': 1.0, 'a': 1.0, 'were': 2.0, 'black': 2.0, 'i': 10.0, '4': 2.0, 'they': 3.0, 'these': 1.0, 'the': 6.0, 'again': 1.0, 'you': 2.0, 'when': 1.0, 'twins': 1.0, 'after': 1.0, 'bought': 1.0, 'winter': 3.0, 'swaddlers': 3.0, 'as': 2.0, 'leave': 1.0, 'have': 1.0, 'must': 1.0, 'of': 2.0, 'shower': 1.0, 'pool': 1.0, 'an': 1.0, 'girly': 1.0, 'can': 1.0, 'blankets': 1.0, 'but': 1.0, 'because': 1.0, 'another': 1.0, 'my': 5.0, 'absolute': 1.0, 'gifts': 1.0, 'are': 1.0, 'them': 6.0, 'baby': 1.0, 'accidently': 1.0, 'it': 3.0, 'she': 2.0, 'be': 1.0, 'warmth': 3.0, 'summer': 1.0, 'girlfriend': 2.0, 'opened': 1.0, 'purchsed': 1.0, 'realized': 1.0, 'or': 1.0}
Word element => {'as': 1.0, 'just': 1.0, 'weight': 1.0, 'which': 1.0, 'anything': 1.0, 'travel': 1.0, 'blankets': 1.0, 'for': 1.0, 'love': 1.0, 'swaddling': 1.0, 'they': 2.0, 'are': 2.0, 'ones': 1.0, 'great': 2.0, 'these': 1.0, 'more': 1.0, 'the': 2.0, 'i': 1.0, 'a': 1.0, 'wonderful': 1.0, 'size': 1.0, 'too': 1.0, 'you': 1.0, 'get': 1.0, 'softer': 1.0, 'wash': 1.0, 'also': 1.0, 'have': 1.0, 'summer': 1.0}
Word element => {'other': 1.0, 'immediately': 1.0, 'messy': 1.0, 'alone': 1.0, 'stand': 1.0, 'need': 1.0, 'bulky': 1.0, 'no': 1.0, 'there': 1.0, 'now': 1.0, 'use': 1.0, 'mechanism': 1.0, 'anti': 1.0, 'cleaning': 1.0, 'quick': 1.0, 'nice': 1.0, 'install': 1.0, 'closing': 1.0, 'easy': 2.0, 'floor': 1.0, 'her': 1.0, 'like': 1.0, 'purchased': 1.0, 'stool': 1.0, 'feet': 2.0, 'his': 2.0, 'rest': 2.0, 'sized': 1.0, 'so': 1.0, 'potty': 4.0, 'and': 1.0, 'appropriately': 1.0, 'toddler': 2.0, 'toilet': 2.0, 'an': 3.0, 'adult': 1.0, 'forward': 1.0, 'just': 1.0, 'screaming': 1.0, 'that': 1.0, 'into': 1.0, 'or': 2.0, 'clinging': 1.0, 'another': 1.0, 'bathroom': 1.0, 'of': 1.0, 'really': 1.0, 'attractive': 1.0, 'blends': 1.0, 'right': 1.0, 'room': 1.0, 'opening': 2.0, 'but': 1.0, 'removable': 1.0, 'can': 3.0, 'decor': 1.0, 'unlike': 1.0, 'release': 1.0, 'this': 1.0, 'slam': 1.0, 'it': 3.0, 'he': 2.0, 'love': 1.0, 'for': 4.0, 'sit': 1.0, 'all': 1.0, 'our': 3.0, 'seat': 4.0, 'to': 4.0, 'without': 2.0, 'the': 5.0, 'design': 1.0, 'positioned': 1.0, 'ring': 2.0, 'sides': 1.0, 'son': 1.0, 'still': 1.0, 'unstable': 1.0, 'comfortably': 2.0, 'has': 3.0, 'we': 2.0, 's': 4.0, 'go': 1.0, 'a': 6.0, 'around': 1.0, 'is': 2.0, 'on': 3.0}
Word element => {'terrific': 1.0, 'was': 1.0, 'we': 1.0, 'lot': 1.0, 'have': 1.0, '8': 1.0, 'five': 1.0, 'and': 2.0, 'gets': 1.0, 'used': 1.0, 'second': 1.0, 'is': 1.0, 'a': 1.0, 'the': 2.0, 'it': 1.0, 'this': 1.0, 'first': 1.0, 'lasted': 1.0, 'price': 1.0, 'years': 1.0, 'one': 2.0, 'for': 1.0, 'grandchildren': 1.0, 'our': 1.0, 'that': 1.0}
Word element => {'probably': 1.0, 'middle': 1.0, 'thing': 1.0, 'll': 1.0, 'are': 1.0, 'kids': 1.0, 'reminded': 1.0, 'unique': 1.0, 'pricey': 1.0, 'kinda': 1.0, 'adult': 1.0, 'you': 1.0, 'if': 1.0, 'hurt': 1.0, 't': 2.0, 'just': 2.0, 'says': 1.0, 'by': 2.0, 'a': 6.0, 's': 4.0, 'to': 5.0, 'our': 1.0, 'falls': 1.0, 'as': 3.0, 'an': 1.0, 'all': 2.0, 'was': 3.0, 'now': 2.0, 'petite': 1.0, 'for': 5.0, 'product': 2.0, 'potty': 5.0, 'but': 4.0, 'house': 1.0, 'seat': 2.0, 'in': 4.0, 'won': 1.0, 'regular': 2.0, 'and': 5.0, 'too': 3.0, 'time': 1.0, 'tall': 1.0, 'big': 1.0, 'toilets': 1.0, 'months': 1.0, 'long': 1.0, 'on': 5.0, '3': 1.0, 'think': 1.0, 'mother': 1.0, 'without': 1.0, 'me': 1.0, 'my': 3.0, 'can': 2.0, 'lightweight': 2.0, 'lid': 3.0, 'school': 1.0, 'daughter': 1.0, 'is': 3.0, 'around': 1.0, 'she': 3.0, 'it': 8.0, '18': 1.0, 'yr': 1.0, 'side': 1.0, 'made': 1.0, 'pediatrician': 1.0, 'little': 2.0, 'been': 1.0, 'use': 1.0, 'her': 6.0, 'different': 1.0, 'trained': 1.0, 'have': 1.0, 'minutes': 1.0, 'extra': 1.0, 'with': 1.0, 'only': 1.0, '19': 1.0, 'old': 1.0, 'i': 2.0, 'less': 1.0, 'up': 2.0, 'sit': 3.0, 'fingers': 1.0, 'tended': 1.0, 'until': 1.0, 'climb': 2.0, 'tried': 1.0, 'stool': 2.0, 'between': 1.0, '15': 1.0, 've': 1.0, 'down': 1.0, 'thin': 1.0, 'slide': 1.0, 'under': 1.0, 'fear': 1.0, 'much': 2.0, 'do': 1.0, 'butt': 1.0, 'herself': 2.0, 'this': 2.0, 'has': 1.0, 'we': 2.0, 'difference': 1.0, 'independently': 1.0, 'open': 1.0, 'troubles': 1.0, 'the': 10.0, 'of': 1.0, 'need': 1.0, 'world': 1.0, 'falling': 1.0, 'husband': 1.0, 'installed': 1.0, 'than': 1.0, 'that': 2.0, 'because': 1.0, 'no': 1.0, 'lift': 1.0, 'though': 1.0, 'like': 1.0, 'easy': 1.0}
Word element => {'works': 1.0, 'training': 1.0, 'selling': 1.0, 'anyone': 1.0, 'be': 1.0, 'slowly': 1.0, 'closes': 1.0, 'bold': 1.0, 'fringe': 1.0, 'adults': 1.0, 'children': 2.0, 'product': 1.0, 'for': 2.0, 'use': 1.0, 'very': 1.0, 'easy': 2.0, 'fabulous': 1.0, 'best': 1.0, 'both': 1.0, 'absolutely': 1.0, 'always': 1.0, 'and': 4.0, 'household': 1.0, 'bathroom': 1.0, 'my': 1.0, 'point': 1.0, 'problems': 1.0, 'son': 1.0, 'install': 1.0, 'big': 1.0, 'in': 3.0, 'should': 1.0, 'better': 1.0, 'even': 1.0, 'having': 1.0, 'than': 1.0, 'with': 2.0, 'this': 3.0, 'he': 2.0, 'slam': 1.0, 'it': 3.0, 'elongated': 1.0, 'so': 1.0, 'potty': 3.0, 'expected': 1.0, 'i': 4.0, 'recommend': 1.0, 'doesn': 1.0, 'was': 4.0, 'had': 1.0, 'a': 2.0, 't': 1.0, 's': 1.0, 'we': 1.0, 'have': 1.0, 'toilet': 1.0, 'an': 1.0, 'anxiety': 1.0, 'seats': 1.0, 'letters': 1.0, 'needless': 1.0, 'sitting': 2.0, 'not': 1.0, 'to': 3.0, 'seat': 3.0, 'staying': 1.0, 'while': 1.0, 'put': 1.0, 'on': 2.0, 'them': 1.0, 'beautifully': 1.0, 'some': 1.0, 'about': 1.0, 'the': 4.0, 'after': 1.0, 'that': 3.0, 'ordered': 1.0, 'benefit': 1.0, 'say': 1.0, 'is': 3.0}
Word element => {'seems': 1.0, 'made': 1.0, 'break': 1.0, 'like': 1.0, 'feels': 1.0, 'it': 4.0, 'person': 1.0, 'not': 1.0, 'i': 2.0, 'adult': 1.0, 'an': 1.0, 'are': 1.0, 'kid': 1.0, 'sitting': 1.0, 'but': 2.0, 'can': 1.0, 'in': 1.0, 'm': 1.0, '34': 2.0, 'front': 1.0, 'peeing': 1.0, 'there': 1.0, 'chair': 1.0, 'very': 1.0, 'little': 1.0, 'big': 1.0, 'great': 1.0, 'the': 4.0, 'pee': 1.0, 'a': 3.0, 't': 1.0, 'doing': 1.0, 'this': 1.0, 'move': 1.0, 'if': 2.0, 'would': 1.0, 'guard': 1.0, 'so': 1.0, 'needs': 1.0, 'potty': 1.0, 'from': 1.0, 'no': 1.0, 'stable': 1.0, 'of': 1.0, 'once': 1.0, 'to': 3.0, 'is': 3.0, 'your': 3.0, 'on': 3.0, 'already': 1.0, 'try': 1.0, 'habit': 1.0, 'have': 1.0, 'sit': 1.0, 'perfectly': 1.0, 'down': 1.0, 'skill': 1.0, 'when': 1.0, 'you': 1.0, 'mastered': 1.0, 'how': 1.0, 'ready': 1.0, 'girl': 1.0, 'closed': 1.0, 'and': 1.0, 'up': 1.0, 'child': 1.0, 'anyway': 1.0, 'don': 1.0, 'business': 1.0, 'splash': 1.0, 'lid': 1.0}
Word element => {'pinched': 1.0, 'risk': 1.0, 'big': 1.0, 'one': 1.0, 'most': 1.0, 'up': 1.0, 've': 1.0, 'stand': 1.0, 'having': 1.0, 'also': 2.0, 'love': 1.0, 'solid': 1.0, 'he': 3.0, 'about': 1.0, 'but': 2.0, 'right': 1.0, 'supposed': 1.0, 'find': 1.0, 'since': 1.0, 'who': 1.0, 'regular': 1.0, 'than': 2.0, 'thinner': 1.0, 'bit': 2.0, 'indeed': 1.0, 'rim': 1.0, 'myself': 1.0, 'adult': 1.0, 'problem': 1.0, 'possible': 1.0, 'standing': 1.0, 'switch': 1.0, 'patient': 1.0, 'you': 1.0, 'goes': 1.0, 'make': 1.0, 'enough': 1.0, 'trainers': 1.0, 'recommend': 1.0, 'piece': 1.0, 'toilette': 1.0, 'told': 1.0, 'best': 1.0, 'messy': 1.0, 'be': 2.0, 'plastic': 1.0, 'installing': 1.0, 'attentive': 1.0, 'mess': 1.0, 'something': 1.0, 'was': 5.0, 'getting': 1.0, 'beautiful': 1.0, 'which': 1.0, 'made': 1.0, 'good': 1.0, 'negative': 1.0, 'surprised': 1.0, 'else': 1.0, 'bother': 1.0, 'attachment': 1.0, 'top': 2.0, 'said': 1.0, 'people': 1.0, 'as': 3.0, 'all': 4.0, 'in': 2.0, 'seat': 5.0, 'seats': 1.0, 'just': 2.0, 'why': 1.0, 'understand': 1.0, 'fit': 1.0, 't': 2.0, 'a': 10.0, 'might': 1.0, 's': 3.0, 'of': 7.0, 'the': 14.0, 'while': 1.0, 'pee': 1.0, 'due': 1.0, 'what': 1.0, 'when': 1.0, 'like': 1.0, 'cheap': 1.0, 'for': 2.0, 'me': 2.0, 'my': 4.0, 'didn': 1.0, 'reviewer': 1.0, 'bathroom': 1.0, 'high': 1.0, 'to': 10.0, 'trainer': 1.0, 'doubts': 1.0, 'case': 1.0, 'problems': 1.0, 'concerned': 1.0, 'that': 3.0, 'with': 2.0, 'highly': 1.0, 'few': 2.0, 'this': 1.0, 'him': 1.0, 'it': 12.0, 'reviews': 1.0, 'read': 2.0, 'very': 2.0, 'had': 2.0, 'now': 1.0, 'anything': 1.0, 'days': 1.0, 'looking': 1.0, 'extra': 1.0, 'don': 1.0, 'anyone': 1.0, 'and': 7.0, 'ordering': 1.0, 'comfortable': 1.0, 'experience': 1.0, 'say': 2.0, 'husband': 1.0, 'more': 1.0, 'not': 3.0, 'is': 6.0, 'at': 3.0, 'they': 2.0, 'sturdy': 1.0, 'child': 2.0, 'year': 1.0, 'his': 1.0, '2': 1.0, 'quality': 1.0, 'their': 1.0, 'sitting': 2.0, 'old': 1.0, 'even': 2.0, 'took': 1.0, 'immediately': 1.0, 'complaint': 1.0, 'kid': 1.0, 'so': 3.0, 'time': 1.0, 'peeing': 1.0, 'potty': 1.0, 'would': 1.0, 'boy': 2.0, 'no': 4.0, 'have': 5.0, 'running': 1.0, 'spend': 1.0, 'i': 11.0, 'putting': 1.0, 'on': 3.0, 'guard': 2.0, 'toilet': 2.0, 'some': 1.0, 'breeze': 1.0, 'parents': 1.0, 'soon': 1.0, 'there': 2.0, 'bigger': 1.0, 'expecting': 1.0, 'if': 1.0, 'boys': 1.0, 'first': 2.0, 'are': 2.0, 'training': 1.0}
Word element => {'user': 1.0, 'by': 1.0, 'operated': 1.0, 'promptly': 1.0, 'excitedly': 1.0, 'what': 1.0, 'when': 1.0, 'guy': 1.0, 'little': 2.0, 'arrived': 1.0, 'box': 1.0, 'this': 1.0, 'few': 1.0, 'family': 1.0, 'simple': 1.0, 'one': 1.0, 'mounted': 1.0, 'pro': 1.0, 'short': 1.0, 'is': 3.0, 'trained': 1.0, 'xpress': 1.0, 'newly': 1.0, 'quickly': 1.0, 'accident': 1.0, 'lead': 1.0, 'transferred': 1.0, 'much': 1.0, 'later': 2.0, 'be': 4.0, 'heinous': 1.0, 'had': 2.0, 'stench': 1.0, 'plastic': 1.0, 'our': 1.0, 'putrid': 1.0, 'how': 1.0, 'washing': 1.0, 'new': 1.0, 'time': 1.0, 'on': 2.0, 'portable': 1.0, 'toil': 1.0, 'responsible': 1.0, 'couple': 1.0, 'senses': 1.0, 'me': 1.0, 'my': 5.0, 'eventually': 1.0, 'i': 9.0, 'trainer': 1.0, 'to': 7.0, 'as': 2.0, 'in': 1.0, 'seat': 3.0, 'his': 1.0, 'friendly': 1.0, 'used': 2.0, 'been': 1.0, 'into': 1.0, 'easily': 1.0, 'that': 2.0, 'ancient': 1.0, 'training': 2.0, 'perfectly': 1.0, 'there': 2.0, 'was': 1.0, 'conceal': 1.0, 'aloud': 1.0, 'asked': 1.0, 'course': 1.0, 'watching': 1.0, 'has': 1.0, 'rome': 1.0, 'finger': 1.0, 'unrealistic': 1.0, 'of': 5.0, 'the': 10.0, 'he': 2.0, 'yet': 1.0, 'a': 10.0, 'we': 2.0, 's': 2.0, 't': 1.0, 'since': 1.0, 'potty': 5.0, 'human': 1.0, 'must': 2.0, 'wash': 1.0, 'water': 1.0, 'up': 1.0, 'don': 1.0, 'open': 1.0, 'over': 1.0, 'placement': 1.0, 'and': 9.0, 'away': 2.0, 'better': 2.0, 'byproduct': 1.0, 'subjecting': 1.0, 'sat': 1.0, 'call': 1.0, 'magical': 1.0, 'waterway': 1.0, 'big': 1.0, 'stood': 1.0, 'said': 2.0, 'care': 1.0, 'costs': 1.0, 'removal': 1.0, 'walked': 1.0, 'days': 1.0, 'computer': 1.0, 'something': 2.0, 'hand': 1.0, 'real': 1.0, 'ah': 1.0, 'will': 1.0, 'after': 2.0, 'thorough': 1.0, 'began': 1.0, 'search': 2.0, 'him': 1.0, 'thought': 1.0, 'it': 6.0, 'already': 1.0, 'such': 2.0, 'found': 1.0, 'task': 1.0, 'however': 1.0, 'torturous': 1.0, 'can': 1.0, 'consumption': 1.0, 'seats': 1.0, 'placed': 1.0, 'top': 1.0, 'fits': 1.0, 'helped': 1.0, 'all': 1.0, 'an': 2.0, 'toilet': 3.0, 'elongated': 1.0, 'expect': 1.0, 'adult': 1.0, 'outcome': 1.0, 'repetitive': 1.0, 'toddler': 2.0, 'product': 2.0}
Word element => {'toddler': 1.0, 'potty': 1.0, 'don': 1.0, 'baby': 1.0, 'as': 1.0, 'from': 1.0, 'to': 2.0, 'switch': 1.0, 'sturdy': 1.0, 'looks': 1.0, 'is': 3.0, 'on': 1.0, 'your': 1.0, 'hesitate': 1.0, 'safe': 1.0, 'once': 1.0, 'little': 1.0, 'seat': 3.0, 'well': 1.0, 'a': 2.0, 'down': 1.0, 'love': 1.0, 'one': 1.0, 'comfortable': 1.0, 'using': 2.0, 'it': 1.0, 'with': 1.0, 'this': 3.0, 'fit': 1.0, 'extremely': 1.0, 'buy': 1.0, 'putting': 1.0, 'our': 2.0, 't': 1.0, 'great': 2.0, 'the': 3.0, 'up': 1.0, 'and': 5.0, 'stool': 1.0, 'perfect': 2.0}
Word element => {'training': 1.0, 'potty': 1.0, 'positive': 1.0, 'made': 1.0, 'really': 1.0, 'using': 1.0, 'comfortable': 1.0, 'more': 1.0, 'overall': 1.0, 'make': 1.0, 'tuck': 1.0, 'big': 1.0, 'not': 1.0, 's': 1.0, 'in': 1.0, 'seat': 2.0, 'size': 1.0, 'total': 1.0, 'than': 1.0, 'covers': 1.0, 'problem': 2.0, 've': 1.0, 'install': 1.0, 'recommend': 1.0, 'were': 1.0, 'they': 2.0, '2': 2.0, 'but': 3.0, 'most': 1.0, 'closing': 1.0, 'get': 1.0, 'deal': 1.0, 'she': 3.0, 'it': 5.0, 'difference': 1.0, 'we': 1.0, 'fit': 1.0, 't': 5.0, 'could': 1.0, 'have': 3.0, 'if': 1.0, 'them': 3.0, 'toilet': 3.0, 'slim': 1.0, 'much': 1.0, 'do': 2.0, 'when': 2.0, 'you': 1.0, 'and': 8.0, 'got': 1.0, 'daughter': 2.0, 'i': 7.0, '4': 2.0, 'two': 1.0, 'issue': 1.0, 'to': 2.0, 'any': 1.0, 'an': 1.0, 'all': 1.0, 'least': 1.0, 'was': 2.0, 'doesn': 1.0, 'had': 3.0, 'now': 2.0, 'around': 1.0, 'highly': 1.0, 'this': 5.0, 'with': 3.0, 'correctly': 1.0, 'age': 1.0, 'about': 2.0, 'no': 2.0, 'for': 3.0, 'love': 2.0, 'too': 1.0, 'one': 1.0, 'uncomfortable': 1.0, 'move': 1.0, 'mechanism': 1.0, 'cover': 1.0, 'lid': 4.0, '3': 2.0, 'seats': 1.0, 'just': 2.0, 'easy': 1.0, 'found': 1.0, 'bit': 2.0, 'so': 1.0, 'hasn': 1.0, 'us': 1.0, 'yes': 1.0, 'of': 2.0, 'the': 7.0, 'flush': 1.0, 'elongated': 1.0, 'adult': 1.0, 'fingers': 1.0, 'at': 2.0, 'is': 5.0, 'ring': 1.0, 'over': 1.0, 'don': 3.0, 'year': 1.0, 'child': 1.0, 'or': 2.0, 'bothered': 1.0, 'first': 1.0, 'are': 2.0, 'top': 3.0, '1': 2.0, 'since': 2.0, 'find': 1.0, 'be': 1.0, 'hang': 1.0, 'there': 1.0, 'a': 7.0, 'small': 2.0, 'slight': 1.0, 'my': 3.0, 'downsides': 1.0, 'being': 1.0, 'slow': 1.0, 'squished': 1.0, 'smaller': 1.0, 'her': 2.0, 'use': 1.0}
Word element => {'on': 1.0, 'the': 1.0, 'are': 1.0, 'fence': 1.0, 'you': 1.0, 'buy': 1.0, 'to': 1.0, 'asks': 1.0, 'hesitate': 1.0, 'love': 1.0, 'it': 3.0, 'everyone': 1.0, 'i': 1.0, 'where': 1.0, 'we': 1.0, 'got': 1.0, 'if': 1.0, 'wouldn': 1.0, 't': 1.0}
Word element => {'install': 1.0, 'simple': 1.0, 'very': 1.0, 'and': 1.0, 'enough': 1.0, 'is': 1.0, 'my': 2.0, 'kids': 1.0, 'girl': 1.0, 'sturdy': 1.0, 'seat': 1.0, 'to': 2.0, 'this': 1.0, 'toilet': 1.0, 'use': 1.0, 'especially': 1.0, 'love': 1.0, 'it': 1.0}
Word element => {'great': 1.0, 's': 1.0, 'still': 1.0, 're': 1.0, 'six': 1.0, 'years': 1.0, 'made': 1.0, 'cleaning': 1.0, 'brands': 1.0, 'way': 1.0, 'than': 1.0, 'about': 1.0, 'whole': 1.0, 'seats': 3.0, 'move': 1.0, '12': 2.0, 'regular': 1.0, 'stood': 1.0, 'said': 1.0, 'in': 1.0, 'seat': 8.0, 'our': 1.0, 'as': 1.0, 'i': 3.0, 'after': 1.0, 'much': 1.0, 'use': 1.0, 'adult': 2.0, 'slid': 1.0, 'but': 1.0, 'so': 2.0, 'can': 1.0, 'toilet': 8.0, 'kid': 1.0, 'all': 3.0, 'an': 2.0, 'other': 1.0, 'we': 2.0, 'a': 2.0, 'child': 1.0, 'later': 1.0, 'wobbly': 1.0, 'reading': 1.0, 'like': 1.0, 'stable': 1.0, 'try': 1.0, 'happy': 2.0, 'one': 3.0, 'been': 2.0, 'problems': 1.0, 'that': 4.0, 'three': 1.0, 'into': 1.0, 'on': 1.0, 'around': 1.0, 'top': 1.0, 'bother': 1.0, 'announced': 1.0, 'and': 8.0, 'this': 5.0, 'with': 2.0, 'it': 7.0, 'she': 3.0, 'these': 1.0, '2011': 1.0, 'old': 1.0, 'adapter': 1.0, 'had': 1.0, 'was': 4.0, 'when': 1.0, 'easier': 1.0, 'likes': 1.0, 'install': 1.0, 'to': 4.0, 'pulled': 1.0, 'up': 1.0, 'less': 1.0, 'also': 1.0, 'better': 1.0, 'should': 2.0, 'wanted': 2.0, 'bathroom': 1.0, 'daughter': 2.0, 'looks': 1.0, 'my': 4.0, 'me': 1.0, 'birthday': 1.0, 'present': 1.0, 'proudly': 1.0, 'get': 1.0, 'using': 3.0, 'looking': 1.0, 'is': 5.0, 'at': 1.0, 'time': 1.0, 'worried': 1.0, 'new': 1.0, 'really': 1.0, 'husband': 1.0, 'he': 1.0, 'of': 5.0, 'the': 8.0, 'award': 1.0, 'best': 1.0, 'inventions': 1.0, 'such': 1.0, 'for': 1.0, 'stays': 1.0, 'be': 2.0, 'removed': 1.0}
Word element => {'toddlers': 1.0, 'for': 1.0, 'will': 1.0, 'size': 1.0, 'buying': 1.0, 'i': 1.0, 'sure': 1.0, 'great': 1.0, 'and': 1.0, 'item': 1.0, 'owners': 1.0, 'recommend': 1.0, 'sturdy': 1.0, 'me': 1.0, 'easy': 1.0, 'right': 1.0, 'to': 2.0, 'install': 1.0, 'contacted': 1.0, 'wiggly': 1.0, 'the': 1.0, 'make': 1.0}
Word element => {'home': 1.0, 'uses': 1.0, 'would': 1.0, 'goes': 1.0, 'if': 1.0, 'when': 1.0, 'down': 2.0, 'put': 1.0, 'prefer': 1.0, 'arrived': 1.0, 'very': 2.0, 'again': 1.0, 'go': 1.0, 's': 1.0, 'a': 2.0, 'we': 2.0, 'but': 2.0, 'bath': 1.0, 'she': 4.0, 'it': 4.0, 'slam': 1.0, 'and': 2.0, 'gave': 1.0, 'has': 2.0, 'tell': 1.0, 'tactic': 1.0, 'latest': 1.0, 'potty': 4.0, 'needs': 1.0, 'interest': 1.0, 'can': 1.0, 'so': 3.0, 'her': 2.0, 'well': 1.0, 'putting': 1.0, 'i': 4.0, '4': 1.0, 'feature': 1.0, 'little': 1.0, 'showing': 1.0, 'two': 1.0, 'hesitate': 1.0, 'may': 1.0, 'lid': 2.0, 'daddy': 1.0, 'these': 1.0, 'once': 1.0, 'the': 9.0, 'of': 1.0, 'mommy': 1.0, 'problem': 1.0, 'us': 1.0, 'avoid': 1.0, 'upstairs': 1.0, 'daughter': 1.0, 'for': 4.0, 'bathroom': 1.0, 'stars': 1.0, 'using': 2.0, 'stall': 1.0, 'far': 1.0, 'toilets': 1.0, 'bedtime': 1.0, 'this': 1.0, 'in': 2.0, 'seat': 2.0, 'our': 2.0, 'to': 9.0, 'buying': 1.0, 'downstairs': 1.0, 'with': 1.0, 'additional': 2.0, 'all': 1.0, 'an': 1.0, 'toilet': 1.0, 'training': 1.0, 'was': 1.0, 'install': 1.0, 'after': 2.0, 'excited': 1.0, 'although': 1.0, 'could': 1.0, 'will': 2.0, 'seems': 1.0, 'add': 1.0, 'diagrams': 1.0, 'been': 1.0, 'instruction': 1.0, 'be': 3.0, 'better': 1.0, 'those': 1.0, 'not': 4.0, 'who': 1.0, 'easy': 1.0, 'familiar': 1.0, 'installing': 1.0, 'seats': 2.0, 'used': 1.0, 'purchase': 1.0, 'quickly': 1.0, 'only': 2.0, 'play': 1.0, 'about': 1.0, 'no': 1.0, 'finished': 1.0, 'out': 1.0, '5': 1.0, 'that': 1.0, 'because': 1.0, 'does': 1.0, 'practice': 1.0, 'have': 2.0, 'ordered': 1.0, 'themselves': 1.0, 'major': 1.0}
Word element => {'order': 1.0, 'my': 1.0, 'with': 1.0, 'helpful': 1.0, 'was': 1.0, 'easy': 1.0, 'fit': 1.0, 'wouldn': 1.0, 'and': 2.0, 'that': 1.0, 'out': 1.0, 'others': 1.0, 'many': 1.0, 'are': 2.0, 'there': 2.0, 'elongated': 1.0, 'thankful': 1.0, 'i': 1.0, 'him': 1.0, 'the': 4.0, 'problem': 1.0, 'not': 1.0, 'find': 1.0, 'having': 1.0, 'because': 1.0, 'this': 2.0, 'he': 1.0, 'very': 1.0, 'little': 1.0, 'round': 1.0, 'taking': 1.0, 'of': 1.0, 'clean': 1.0, 'will': 1.0, 't': 1.0, 'go': 1.0, 'potty': 1.0, 'design': 1.0, 'never': 1.0, 'removable': 1.0, 'cool': 1.0, 'one': 2.0, 'seat': 3.0, 'actual': 1.0, 'our': 4.0, 'to': 4.0, 'his': 1.0, 'finally': 1.0, 'an': 1.0, 'toilet': 2.0, 'kid': 1.0, 'after': 1.0, 'off': 1.0, 'or': 1.0, 'bath': 1.0, 'portable': 1.0, 'am': 1.0, 'again': 1.0, 'when': 1.0, 'adult': 1.0, 'great': 1.0, 'install': 1.0, 'big': 1.0, 'son': 1.0, 'best': 1.0, 'back': 1.0, 'needed': 1.0, 'said': 1.0, 'it': 3.0, 'solved': 1.0, 'looks': 2.0, 'is': 1.0, 'likes': 1.0, 'version': 1.0, 'like': 1.0, 'smiling': 1.0, 'at': 1.0}
Word element => {'original': 1.0, 'from': 1.0, 'use': 1.0, 'case': 1.0, 'easy': 1.0, 'other': 1.0, 'down': 1.0, 'falling': 1.0, 'seems': 1.0, 'first': 1.0, 'weird': 1.0, 'was': 1.0, 'had': 1.0, 'thought': 1.0, 'solve': 1.0, 'which': 1.0, 'spring': 1.0, 'has': 1.0, 'up': 1.0, 'adult': 2.0, 'in': 1.0, 'said': 1.0, 'their': 1.0, 'better': 1.0, 'plastic': 1.0, 'am': 1.0, 'when': 1.0, 'barely': 1.0, 'you': 1.0, 'little': 1.0, 'going': 1.0, 'notice': 1.0, 'a': 2.0, 'and': 3.0, 'they': 2.0, 'toilet': 3.0, 'about': 1.0, 'told': 1.0, 'would': 3.0, 'tobuy': 1.0, 'contacted': 1.0, 'it': 8.0, 'this': 2.0, 'confirm': 1.0, 'asked': 1.0, 'is': 3.0, 'replaced': 1.0, 'fine': 1.0, 'screws': 1.0, 'them': 1.0, 'out': 1.0, 'on': 2.0, 'kohler': 6.0, 'dual': 1.0, 'i': 6.0, 'buy': 1.0, 'bathroom': 1.0, 'another': 1.0, 'lid': 1.0, 'lip': 1.0, 'fits': 1.0, 'my': 5.0, 'these': 2.0, 'install': 1.0, 'great': 2.0, 'wtf': 1.0, 'persuade': 1.0, 'of': 5.0, 'equivalent': 1.0, 'seat': 2.0, 'to': 7.0, 'short': 1.0, 'wanted': 1.0, 'stay': 1.0, 'me': 1.0, 'not': 3.0, 'than': 1.0, 'because': 1.0, 'just': 2.0, 'strange': 1.0, 'got': 1.0, 'try': 1.0, 'one': 2.0, 'fit': 2.0, 'product': 4.0, 'for': 2.0, 'elongated': 1.0, 'off': 1.0, 'but': 2.0, 'ebay': 1.0, '20': 1.0, 'at': 1.0, 'bucks': 1.0, 'problem': 1.0, 'shipped': 1.0, 'the': 8.0, 'flush': 1.0}
Word element => {'too': 1.0, 'clean': 1.0, 'easy': 1.0, 'seat': 1.0, 'the': 1.0, 'still': 1.0, 'in': 1.0, 'which': 1.0, 'upstairs': 1.0, 'toilet': 1.0, 'smaller': 1.0, 'my': 2.0, 'every': 1.0, 'son': 1.0, 'i': 2.0, 'potty': 1.0, 'product': 1.0, 'now': 1.0, 'to': 2.0, 'one': 1.0, 'love': 1.0, 'put': 1.0, 'house': 1.0, 'on': 1.0, 'allowed': 1.0, 'go': 1.0, 'down': 1.0, 'five': 1.0, 'and': 2.0, 'it': 1.0, 'this': 1.0, 'he': 1.0, 'prefers': 1.0, 's': 2.0}
Word element => {'prefer': 1.0, '4': 1.0, 'reason': 1.0, 'set': 1.0, 'in': 1.0, 'came': 1.0, 'favorite': 1.0, 'after': 1.0, 'about': 2.0, 'hospital': 1.0, 'left': 1.0, 'get': 1.0, 'we': 2.0, 'go': 1.0, 't': 1.0, '3': 1.0, 'guy': 1.0, 'on': 1.0, '15oz': 1.0, '5lbs': 1.0, 'but': 1.0, 'a': 3.0, 'tiny': 1.0, 'its': 1.0, 'only': 1.0, 'much': 3.0, 'born': 1.0, 'my': 5.0, 'when': 2.0, 'washing': 1.0, 'actually': 1.0, 'swaddles': 2.0, 'with': 1.0, 'just': 2.0, 'now': 1.0, 'for': 2.0, 'the': 6.0, 'aden': 1.0, 'great': 1.0, 'these': 4.0, 'others': 1.0, 'they': 2.0, 'first': 1.0, 'are': 5.0, 'old': 1.0, 'overheated': 1.0, 'soft': 1.0, 'swaddle': 1.0, 'getting': 2.0, 'softer': 2.0, 'i': 7.0, 'well': 1.0, 'star': 1.0, 'easier': 1.0, 'them': 2.0, 'has': 1.0, 'little': 2.0, 'very': 1.0, 'however': 2.0, 'found': 1.0, 'bit': 1.0, 'so': 1.0, 'clothes': 1.0, 'was': 2.0, 'to': 9.0, 'anais': 1.0, 'as': 2.0, 'stroller': 1.0, 'our': 1.0, 'son': 1.0, 'good': 1.0, 'that': 4.0, 'because': 3.0, 'big': 1.0, 'breathable': 1.0, 'and': 5.0, 'don': 1.0, 'have': 3.0, 'bamboo': 1.0, 'striped': 1.0, 'worry': 1.0, 'be': 2.0, 'is': 5.0, 'at': 1.0, 'been': 1.0, 'sons': 1.0, 'complaint': 1.0, 'able': 1.0, 'blankets': 3.0, 'night': 1.0, 'everytime': 1.0, 'rating': 1.0, 'pattern': 1.0, 'too': 2.0, 'one': 2.0, 'way': 2.0, 'dye': 1.0, 'paint': 1.0, 'him': 1.0, 'it': 7.0, 'he': 2.0, 'love': 1.0, 'yet': 1.0, 'wash': 2.0, 'use': 2.0, 'rough': 1.0, 'though': 1.0, 'stiff': 1.0, 've': 1.0, 'weeks': 1.0, 'would': 1.0, 'seems': 1.0, 'liked': 1.0}
Word element => {'best': 1.0, 'what': 1.0, 'you': 2.0, 'would': 1.0, 'of': 1.0, 'they': 1.0, 'swaddles': 2.0, 'softness': 1.0, 'pay': 1.0, 'loves': 1.0, 'these': 2.0, 'the': 2.0, 'get': 1.0, 'and': 2.0, 'quality': 1.0, 'newborn': 1.0, 'larger': 1.0, 'than': 1.0, 'other': 1.0, 'we': 1.0, 'our': 1.0, 'were': 1.0, 'for': 1.0, 'given': 1.0, 'buy': 1.0, 'are': 2.0, 'again': 1.0, 'high': 1.0, 'definitely': 1.0}
Word element => {'about': 1.0, 'friend': 1.0, 'amazon': 1.0, 'ordered': 1.0, 'much': 1.0, 'loved': 1.0, 'well': 1.0, 'to': 1.0, 'our': 1.0, 'as': 1.0, 'laundry': 1.0, 'great': 1.0, 'up': 1.0, 'held': 1.0, 'have': 2.0, 'husband': 1.0, 'for': 3.0, 'love': 1.0, 'enough': 1.0, 'these': 1.0, 'receiving': 1.0, 'texture': 1.0, 'large': 1.0, 'mill': 1.0, 'of': 3.0, 'hospital': 1.0, 'search': 1.0, 'not': 1.0, 'after': 1.0, 'being': 1.0, 'wraps': 1.0, 'run': 1.0, 'out': 1.0, 'baby': 1.0, 'them': 1.0, 'from': 2.0, 'your': 1.0, 'they': 1.0, 'discovering': 1.0, 'my': 2.0, 'rushed': 1.0, 'the': 7.0, 'something': 1.0, 'and': 3.0, 'in': 2.0, 'are': 1.0, 'suitable': 1.0, 'he': 1.0, 'swaddling': 2.0, 'found': 1.0, 'a': 7.0, 'we': 3.0, 'blankets': 3.0, 'work': 1.0, 'now': 1.0, 'discharged': 1.0, 'older': 1.0, 'fabulously': 1.0, 'daughter': 1.0, 'is': 1.0, 'so': 1.0, 'bit': 1.0, 'she': 1.0, 'that': 3.0, 'loves': 1.0, 'material': 1.0}
Word element => {'right': 1.0, 'fit': 1.0, 'so': 1.0, 'theme': 1.0, 'love': 1.0, 'was': 1.0, 'perfect': 1.0, 'blankets': 1.0, 'the': 2.0, 'my': 2.0, 'baby': 1.0, 'these': 1.0, 'stars': 1.0, 'in': 1.0, 'patterns': 1.0, 'for': 2.0, 'nursery': 1.0, 'july': 1.0}
Word element => {'design': 1.0, 'looking': 1.0, 'recommend': 1.0, 'soft': 1.0, 'and': 1.0, 'perfect': 1.0, 'too': 1.0, 'just': 1.0, 'would': 1.0, 'weight': 1.0, 'others': 1.0, 'pretty': 1.0, 'are': 2.0, 'my': 1.0, 'though': 1.0, 'much': 1.0, 'receiving': 1.0, 'for': 2.0, 'blankets': 1.0, 'sale': 1.0, 'only': 1.0, 'that': 3.0, 'so': 2.0, 'small': 1.0, 'after': 1.0, 'these': 1.0, 'the': 4.0, 'ones': 1.0, 'old': 1.0, 'i': 2.0, 'use': 1.0, 'now': 1.0, 'many': 2.0, 'is': 3.0, 'baby': 2.0, 'about': 1.0, 'on': 1.0, '4': 1.0, 'months': 1.0}
Word element => {'future': 1.0, 'buying': 1.0, 'end': 1.0, 'will': 2.0, 'we': 1.0, 'off': 1.0, 'rays': 1.0, 'sun': 1.0, 'keep': 1.0, 'perfect': 1.0, 'pinch': 1.0, 'breastfeeding': 1.0, 'for': 2.0, 'cover': 1.0, 'go': 1.0, 'our': 2.0, 'have': 1.0, 'than': 2.0, 'anais': 1.0, 're': 2.0, 'they': 3.0, 'grab': 1.0, 'amazing': 1.0, 'cutest': 1.0, 'anyone': 1.0, 'and': 5.0, 'baby': 2.0, 'don': 2.0, 'with': 3.0, 'order': 1.0, 'by': 1.0, 'giraffe': 1.0, 'smaller': 1.0, 'wash': 1.0, 'her': 2.0, 'so': 1.0, 'can': 1.0, 'too': 1.0, 'one': 2.0, 'expecting': 1.0, 'every': 1.0, 'if': 1.0, 'know': 1.0, 'harmful': 1.0, 'using': 1.0, 'blankets': 3.0, 'things': 2.0, 'i': 7.0, 'patterns': 1.0, 'is': 2.0, 'worry': 1.0, 'say': 1.0, 'said': 1.0, 'in': 5.0, 'walk': 1.0, 'about': 2.0, 't': 3.0, 'these': 6.0, 'it': 2.0, 'already': 1.0, 'swaddling': 2.0, 'had': 1.0, 'little': 1.0, 'been': 1.0, 'that': 1.0, 'gift': 1.0, 'good': 2.0, 'happily': 1.0, 'a': 6.0, 'stuffing': 1.0, 'wad': 1.0, 'the': 7.0, 'of': 5.0, 'face': 1.0, 'help': 1.0, 'make': 2.0, 'softer': 2.0, 'breeze': 1.0, 'more': 3.0, 'husband': 1.0, 'gotten': 1.0, 'become': 1.0, 'used': 1.0, 'thicker': 1.0, 'style': 1.0, 'my': 2.0, 'me': 1.0, 'blanket': 1.0, 'was': 1.0, 'much': 1.0, 'swaddle': 4.0, 'what': 1.0, 'when': 2.0, 'to': 8.0, 'pulled': 1.0, 'breathable': 1.0, 'big': 1.0, 'aden': 1.0, 'now': 1.0, 'out': 3.0, 'his': 1.0, 'are': 3.0, 'first': 1.0, 'any': 1.0, 'words': 1.0, 'were': 1.0, 's': 3.0, 'ha': 1.0, 'far': 2.0, 'love': 1.0, 'he': 1.0, 'addition': 1.0, 'won': 1.0, 'anything': 1.0, 'else': 1.0, 'up': 1.0, 'less': 1.0, 'likely': 2.0, 'break': 1.0, 'best': 1.0}
Word element => {'yes': 1.0, 'ultimately': 1.0, 'age': 1.0, 'at': 1.0, 'still': 2.0, 'bit': 1.0, 'size': 1.0, 'swaddle': 1.0, 'popularity': 1.0, 'better': 1.0, 'their': 1.0, 'that': 1.0, 'like': 1.0, 'get': 1.0, 'blanket': 2.0, 'are': 2.0, 'rave': 1.0, 'can': 1.0, 'but': 2.0, 'guess': 1.0, 'wowed': 1.0, 'old': 1.0, 'just': 1.0, 'by': 1.0, 'square': 1.0, 'and': 4.0, 'too': 1.0, 'given': 1.0, 'expected': 1.0, 'works': 1.0, 'do': 2.0, 'much': 1.0, 'generous': 1.0, 'reviews': 1.0, 'they': 3.0, 'the': 3.0, 'fabric': 1.0, 'all': 1.0, 'to': 1.0, 'be': 1.0, 'receiving': 1.0, 'these': 1.0, 'decent': 1.0, 'feel': 1.0, 'nice': 2.0, 'this': 1.0, 'soft': 1.0, 'sometimes': 1.0, 'we': 1.0, 'a': 3.0, 'on': 1.0, 'my': 1.0, 'almost': 2.0, 'i': 3.0, 'two': 1.0, 'month': 1.0, 'there': 1.0, 'hospital': 1.0, 'is': 1.0}
Word element => {'moms': 1.0, 'fashionista': 1.0, 'most': 1.0, 'off': 1.0, 'and': 1.0, 'suitable': 1.0, 'fabric': 1.0, 'soft': 1.0, 'as': 2.0, 'very': 1.0, 'fashionable': 1.0, 'color': 3.0, 'vibrant': 1.0, 'up': 1.0, 'washed': 1.0, 'not': 1.0, 'expected': 1.0, 'is': 1.0, 'the': 3.0, 'great': 1.0, 'come': 1.0, 'it': 2.0, 'i': 2.0, 'had': 1.0, 'love': 1.0, 'for': 2.0, 'but': 1.0, 'has': 1.0, 'makes': 1.0, 'no': 1.0, 'once': 1.0}
Word element => {'you': 1.0, 'times': 1.0, 'how': 1.0, 'get': 1.0, 'blankies': 1.0, 'the': 4.0, 'target': 1.0, 'extra': 1.0, 'looking': 1.0, 'and': 1.0, 'similar': 1.0, 'sell': 1.0, 'isn': 1.0, 'important': 1.0, 'problem': 1.0, 'aiden': 1.0, 'never': 2.0, 'anais': 1.0, 'breathable': 1.0, 're': 1.0, 'so': 1.0, 'bit': 1.0, 't': 1.0, 'a': 3.0, 'soft': 1.0, 'swaddling': 1.0, 'also': 1.0, 'spit': 1.0, 'matter': 1.0, 'from': 1.0, 'pay': 1.0, 'son': 2.0, 'no': 1.0, 'about': 1.0, 'them': 1.0, 'quality': 1.0, 'baby': 1.0, 'for': 2.0, 'one': 2.0, 'wiping': 1.0, 'blanket': 1.0, 'are': 1.0, 'my': 2.0, 'they': 3.0, 'by': 1.0, 'just': 1.0, 'birth': 1.0, 'it': 1.0, 'month': 1.0, 'old': 1.0, 'used': 1.0, 'his': 1.0, 'these': 2.0, 'but': 2.0, 'blankets': 1.0, 'many': 1.0, 'safe': 1.0, 'at': 3.0, '13': 1.0, 'since': 1.0, 'pulled': 1.0, 'wash': 1.0, 'over': 1.0, 'up': 1.0, 'same': 1.0, 'everything': 1.0, 'covering': 1.0, 'during': 1.0, 'object': 1.0, 'all': 1.0, 'as': 2.0, 'to': 4.0, 'sleep': 2.0, 'quite': 1.0, 'note': 1.0, 'ideal': 1.0, 'serving': 1.0, 'been': 1.0, 'loves': 1.0, 'that': 1.0, 'with': 1.0, 'crib': 1.0, 'has': 2.0, 'comfort': 1.0, 'face': 1.0, 'which': 1.0, 'first': 2.0, 'concerned': 1.0, 'me': 1.0}
Word element => {'daughter': 1.0, 'to': 1.0, 'had': 1.0, 'loved': 1.0, 'absolutely': 1.0, 'anais': 1.0, 'aden': 1.0, 'nursery': 1.0, 'my': 3.0, 'pretty': 1.0, 'be': 1.0, 'can': 1.0, 'son': 1.0, 'changing': 1.0, 'soft': 1.0, 'and': 4.0, 'table': 1.0, 'girly': 1.0, 'prints': 1.0, 'stylish': 1.0, 'matched': 1.0, 'used': 3.0, 'so': 3.0, 'swaddle': 1.0, 'are': 1.0, 'actually': 1.0, 'perfect': 1.0, 'many': 1.0, 'cover': 1.0, 'blankets': 1.0, 'things': 1.0, 'buy': 1.0, 'i': 3.0, 'for': 4.0, 'one': 1.0, 'of': 1.0, 'them': 2.0, 'a': 1.0, 'ones': 1.0, 'great': 1.0, 'the': 1.0}
Word element => {'endless': 1.0, 'canopy': 1.0, 'cover': 1.0, 'swaddling': 1.0, 'blanket': 1.0, 'burp': 1.0, 'anything': 1.0, 'my': 2.0, 'and': 2.0, 'as': 1.0, 'blankets': 1.0, 'nanny': 1.0, 'for': 3.0, 'love': 1.0, 'families': 1.0, 'can': 1.0, 'them': 1.0, 'when': 1.0, 'cloth': 1.0, 'i': 1.0, 'work': 1.0, 'a': 1.0, 'multiples': 1.0, 'use': 1.0, 'these': 1.0, 'they': 1.0, 'used': 1.0, 'uses': 1.0, 'expecting': 1.0, 'cousin': 1.0, 'bought': 1.0, 'be': 1.0}
Word element => {'finally': 1.0, 'glad': 1.0, 'worth': 1.0, 'disappointed': 1.0, 'near': 1.0, 'beautiful': 1.0, 'am': 1.0, 'purchased': 1.0, 'vibrant': 1.0, 'swaddles': 1.0, 'swaddle': 1.0, 'oh': 1.0, 'and': 3.0, 'get': 1.0, 'from': 1.0, 'day': 1.0, 'now': 1.0, 'colors': 4.0, 'any': 1.0, 'wraps': 1.0, 'thicker': 1.0, 'a': 3.0, 'is': 1.0, 'more': 2.0, 'the': 6.0, 'these': 2.0, 'normal': 1.0, 'are': 2.0, 'they': 2.0, 'well': 1.0, 'has': 1.0, 'so': 1.0, 'boy': 1.0, 'price': 1.0, 'absolutely': 1.0, 'than': 1.0, 'perfect': 1.0, 'son': 1.0, 'seem': 1.0, 'little': 1.0, 'girl': 1.0, 'my': 2.0, 'daughter': 1.0, 'where': 1.0, 'scooped': 1.0, 'up': 1.0, 'loves': 1.0, 'she': 1.0, 'it': 2.0, 'who': 1.0, 'will': 2.0, 'but': 1.0, 'be': 1.0, 'here': 1.0, 'i': 2.0, 'no': 1.0}
Word element => {'contact': 1.0, 'going': 1.0, 'old': 1.0, 'friends': 2.0, 'so': 1.0, 'bought': 1.0, 'too': 1.0, 'one': 1.0, 'middle': 1.0, 'find': 1.0, 'a': 3.0, 't': 2.0, 'covered': 1.0, 'crib': 1.0, 'asked': 1.0, 'still': 1.0, 'if': 1.0, 'have': 1.0, 'it': 3.0, 'month': 1.0, 'he': 5.0, 'worry': 1.0, 'say': 1.0, 'to': 7.0, 'anais': 1.0, 'as': 1.0, 'was': 4.0, 'minutes': 1.0, 'swaddles': 1.0, 'until': 1.0, 'm': 1.0, 'in': 5.0, 'out': 1.0, 'are': 2.0, 'for': 4.0, 'around': 2.0, 'his': 3.0, 'spent': 1.0, 'used': 2.0, 'they': 2.0, 'freak': 1.0, 'little': 2.0, 'blankets': 2.0, 'able': 1.0, 'night': 2.0, 'them': 4.0, 'she': 2.0, 'baby': 2.0, 'i': 7.0, 'seen': 1.0, '4': 1.0, 'flipped': 1.0, 'had': 3.0, 'would': 1.0, 'weeks': 1.0, 'aden': 1.0, 'loved': 1.0, 'of': 3.0, 'the': 12.0, 'these': 3.0, '12': 1.0, 'who': 3.0, 'didn': 1.0, 'babies': 3.0, 'because': 2.0, 'that': 1.0, 'after': 1.0, 'my': 3.0, 'me': 1.0, 'but': 1.0, 'horrified': 1.0, 'front': 1.0, 'with': 1.0, 'her': 4.0, 'newborn': 1.0, 'call': 1.0, 'take': 1.0, 'er': 3.0, 'be': 1.0, 'wrapped': 1.0, 'during': 1.0, 'nap': 1.0, 'somehow': 1.0, 'three': 1.0, 'hospital': 1.0, 'breathe': 2.0, 'very': 1.0, 'himself': 1.0, 'swaddle': 1.0, 'makes': 1.0, 'pinned': 1.0, 'did': 1.0, 'doctor': 1.0, 'from': 2.0, 'back': 1.0, 'and': 5.0, 'arms': 1.0, 'several': 1.0, 'down': 1.0, '8': 1.0, 'face': 2.0, 'couldn': 1.0, 'big': 1.0, 'breathable': 1.0, '911': 1.0, 'listless': 1.0, 'although': 1.0, 'accident': 1.0}
Word element => {'hold': 1.0, 'not': 1.0, 'expensive': 1.0, 'them': 1.0, 'to': 1.0, 'had': 1.0, 'we': 1.0, 'and': 1.0, 'though': 1.0, 'in': 1.0, 'up': 1.0, 'fairly': 1.0, 'there': 1.0, 'which': 1.0, 'him': 1.0, 'little': 1.0, 'my': 1.0, 'are': 3.0, 'blankets': 2.0, 'they': 2.0, 'boy': 1.0, 'that': 1.0, 'i': 2.0, 'found': 1.0, 'swaddling': 1.0, 'only': 1.0, 'he': 1.0, 'loves': 1.0, 'the': 1.0, 'great': 1.0, 'these': 1.0, 't': 1.0, 'have': 2.0, 'week': 1.0, 'snags': 1.0, 'but': 1.0, 'don': 1.0, 'one': 1.0, 'for': 2.0, 'love': 1.0, 'overheat': 1.0}
Word element => {'regret': 1.0, 'of': 1.0, 'second': 1.0, 'glad': 1.0, 'figured': 1.0, 'good': 1.0, 'were': 1.0, 'expensive': 1.0, 'reviews': 1.0, 'they': 1.0, 'buying': 1.0, 'was': 1.0, 'in': 1.0, 'also': 1.0, 'just': 1.0, 'not': 2.0, 'did': 1.0, 'swaddle': 1.0, 'so': 4.0, 'as': 1.0, 'sleep': 1.0, 'to': 2.0, 'big': 1.0, 'm': 1.0, 'd': 1.0, 'best': 1.0, 'are': 1.0, 'blanket': 1.0, 'try': 1.0, 'only': 1.0, 'perfect': 1.0, 'this': 1.0, 'it': 3.0, 'is': 3.0, 'my': 1.0, 'the': 5.0, 'heavy': 1.0, 'these': 1.0, 'and': 1.0, 'get': 1.0, 'that': 2.0, 'enough': 1.0, 'one': 1.0, 'bought': 1.0, 'have': 2.0, 'i': 5.0, 'them': 2.0, 'baby': 3.0, 'night': 1.0, 'probably': 1.0, 'size': 1.0, 'breathable': 1.0, 'he': 1.0, 'how': 1.0, 'overheats': 1.0, 'at': 1.0, 'but': 1.0, 'blankets': 1.0, 'about': 1.0, 'thing': 1.0, 'no': 1.0, 'if': 1.0, 's': 2.0, 't': 1.0, 'we': 4.0, 'didn': 1.0, 'idea': 1.0, 'hesitant': 1.0, 've': 1.0, 'would': 1.0, 'ever': 1.0}
Word element => {'target': 1.0, 'cheaper': 1.0, 'get': 1.0, 'even': 1.0, 'his': 1.0, 'you': 1.0, 'when': 1.0, 'he': 1.0, 'big': 1.0, 'really': 1.0, 'though': 1.0, 'summer': 1.0, 'my': 1.0, 'can': 1.0, 'blankets': 1.0, 'at': 2.0, 'too': 1.0, 'and': 2.0, 'love': 1.0, 'for': 1.0, 'now': 1.0, 'if': 1.0, '10': 1.0, 'months': 1.0, 'i': 2.0, 'old': 1.0, 'them': 1.0, 'night': 1.0, 'wants': 1.0, 'son': 1.0, 'still': 1.0, 'they': 2.0, 'these': 2.0, 'heavily': 1.0, 'a': 2.0, 'we': 1.0, 'go': 1.0, 'is': 1.0, 'say': 1.0, 'perfect': 2.0, 'in': 2.0, 'air': 1.0, 'are': 3.0, 'blanket': 1.0, 'conditioned': 1.0, 'place': 1.0, 'or': 1.0, 'crib': 1.0, 'time': 1.0, 'so': 1.0, 'weight': 1.0, 'light': 2.0, 'just': 1.0, 'will': 1.0}
Word element => {'well': 1.0, 'wash': 1.0, 'weight': 1.0, 'light': 1.0, 'these': 1.0, 'are': 1.0, 'the': 1.0, 'new': 1.0, 'perfect': 1.0, 'and': 1.0, 'blankets': 1.0, 'every': 1.0, 'baby': 1.0, 'or': 1.0, 'swaddles': 1.0, 'for': 1.0}
Word element => {'after': 1.0, 'snease': 1.0, 'runny': 1.0, 'even': 1.0, 'got': 2.0, 'painfull': 1.0, 'at': 1.0, 'allergy': 1.0, 'that': 1.0, 'started': 1.0, 'baby': 1.0, 'my': 1.0, 'rid': 2.0, 'get': 1.0, 'many': 1.0, 'house': 1.0, 'her': 1.0, 'clean': 1.0, 'to': 4.0, 'had': 1.0, 'out': 1.0, 'filter': 1.0, 'have': 1.0, 'dryer': 2.0, 'in': 3.0, 'much': 1.0, 'only': 1.0, 'give': 1.0, 'not': 1.0, 'dusts': 3.0, 'lots': 1.0, 'nose': 1.0, 'would': 1.0, 'jungle': 1.0, 'she': 1.0, 'it': 11.0, 'great': 1.0, 'the': 5.0, 'a': 2.0, 's': 1.0, 'breath': 1.0, 't': 2.0, 'loved': 1.0, 'too': 1.0, 'and': 6.0, 'disaster': 1.0, 'worst': 1.0, 'couldn': 1.0, 'are': 1.0, 'blanket': 2.0, 'couln': 1.0, 'jam': 1.0, 'pinks': 1.0, 'from': 1.0, 'pink': 1.0, 'be': 1.0, 'aden': 2.0, 'buy': 1.0, 'thougnt': 1.0, 'bought': 1.0, 'one': 1.0, 'of': 4.0, 'muslin': 1.0, 'will': 1.0, 'also': 2.0, 'wash': 1.0, 'whenever': 1.0, 'use': 1.0, 'amazon': 1.0, 'swaddle': 1.0, 'however': 1.0, 'costs': 1.0, 'less': 1.0, 'mouth': 1.0, 'anais': 2.0, 'than': 1.0, 'i': 10.0, '4': 1.0, 'was': 1.0, 'choice': 1.0, 'put': 1.0, 'therefore': 1.0, 'think': 2.0, 'washed': 1.0, '6': 1.0, 'dried': 1.0, 'times': 2.0, 'organic': 1.0, 'but': 2.0, 'dry': 1.0, 'makes': 1.0}
Word element => {'sleeping': 1.0, 'they': 2.0, 'beautiful': 1.0, 'breathable': 1.0, 'while': 1.0, 'beach': 1.0, 'in': 1.0, 'for': 1.0, 'light': 1.0, 'are': 3.0, 'everything': 1.0, 'and': 1.0, 'perfectly': 1.0, 'texas': 1.0, 'i': 1.0, 'the': 3.0, 'these': 2.0, 'or': 1.0, 'sun': 1.0, 'use': 2.0, 'stroller': 1.0, 'on': 1.0, 'to': 1.0, 'keep': 1.0, 'living': 1.0, 'them': 2.0, 'out': 1.0, 'wrap': 1.0, 'up': 1.0, 'at': 1.0}
Word element => {'bedsheet': 1.0, 'strollers': 1.0, 'my': 1.0, 'of': 1.0, 'bassinet': 1.0, 'line': 1.0, 'to': 1.0, 'also': 1.0, 'twins': 1.0, 'swaddle': 2.0, 'as': 2.0, 'it': 1.0, 'only': 1.0, 'even': 1.0, 'use': 2.0, 'a': 2.0, 'can': 1.0, 'for': 1.0, 'love': 1.0, 'the': 1.0, 'these': 1.0, 'you': 1.0, 'their': 1.0, 'that': 1.0, 'i': 3.0, 'when': 1.0, 'your': 1.0, 'accomodate': 1.0, 'them': 1.0, 'unlike': 1.0, 'newborns': 1.0, 'have': 1.0, 'playpens': 1.0, 'babies': 1.0, 'and': 1.0, 'get': 1.0, 'bigger': 1.0, 'other': 1.0, 'wraps': 1.0}
Word element => {'soft': 1.0, 'are': 1.0, 'they': 1.0, 'love': 1.0, 'year': 1.0, 'these': 1.0, '2': 2.0, 'out': 1.0, 'hoooked': 1.0, 'babies': 1.0, 'that': 1.0, 'blankets': 2.0, 'recieving': 1.0, 'my': 1.0, 'durable': 1.0, 'this': 1.0, '1': 1.0, 'and': 3.0, 'hate': 1.0, 'regular': 1.0, 'absolutely': 1.0, '9': 1.0, 'grow': 1.0, 'old': 2.0, 'buy': 1.0, 'i': 1.0, 'of': 1.0, 'stylish': 1.0, 'you': 1.0, 'immidiatley': 1.0, 'week': 1.0, 'will': 1.0, 'both': 1.0, 'flannel': 1.0, 'be': 1.0}
Word element => {'old': 1.0, 'quality': 1.0, 'rave': 1.0, 'weeks': 1.0, 'three': 1.0, 'is': 1.0, 'about': 1.0, 'baby': 1.0, 'they': 1.0, 'her': 1.0, 'when': 1.0, 'daughter': 1.0, 'continues': 1.0, 'for': 2.0, 'in': 1.0, 'newborn': 1.0, 'purchased': 1.0, 'my': 1.0, 'great': 1.0, 'these': 1.0, 'the': 3.0, 'blankets': 2.0, 'she': 2.0, 'immediately': 1.0, 'and': 2.0, 'me': 1.0, 'called': 1.0, 'thrilled': 1.0, 'mail': 1.0, 'with': 1.0, 'to': 1.0, 'now': 1.0, 'was': 1.0, 'arrived': 1.0, 'them': 1.0}
Word element => {'product': 1.0, 'still': 1.0, 'older': 1.0, 'rags': 1.0, 'up': 1.0, 'and': 1.0, 'cover': 1.0, 'breastfeeding': 1.0, 'swaddling': 1.0, 'them': 2.0, 'use': 2.0, 'used': 1.0, 'because': 1.0, 'blankets': 1.0, 'things': 1.0, 'my': 2.0, 'are': 1.0, 'son': 1.0, 'from': 1.0, 'burp': 1.0, 'think': 1.0, 'we': 1.0, 'great': 1.0, 'the': 1.0, 'these': 1.0, 'they': 1.0, 'hiding': 1.0, 'i': 2.0, 'about': 1.0, 'that': 1.0, 'thought': 1.0, 'but': 1.0, 'to': 1.0, 'husband': 1.0, 'now': 2.0, 'have': 1.0, 'spit': 1.0, '12': 1.0, 'in': 1.0, 'honestly': 1.0, 'summer': 1.0, 'is': 1.0, 'many': 1.0, 'useful': 1.0, 'for': 3.0, 'so': 1.0}
Word element => {'very': 1.0, '44inch': 1.0, 'set': 1.0, 'i': 2.0, 'these': 1.0, 'december': 1.0, 'they': 3.0, 'but': 1.0, 'all': 1.0, 'now': 1.0, '47inch': 1.0, 'smaller': 1.0, 'are': 2.0, 'if': 1.0, 'bought': 1.0, 'unsure': 1.0, 'were': 1.0, 'disappointed': 1.0, 'in': 2.0, 'pattern': 1.0, 'july': 1.0, 'swaddled': 1.0, 'same': 1.0, 'and': 3.0, 'everything': 1.0, 'ordered': 1.0, 'a': 1.0, 'second': 1.0}
Word element => {'though': 1.0, 'down': 1.0, 'go': 1.0, 'wait': 1.0, 'repeat': 1.0, 'induce': 1.0, 'size': 2.0, 'and': 5.0, 'larger': 1.0, 'perfect': 1.0, 'this': 1.0, 'for': 4.0, 'reviews': 1.0, 'they': 1.0, 'open': 1.0, 'blankets': 1.0, 'but': 1.0, 'coordinated': 1.0, 'if': 1.0, 'pack': 1.0, 'ago': 1.0, 'a': 5.0, 'might': 1.0, 'our': 1.0, 'to': 5.0, 'that': 2.0, 'on': 1.0, 'washed': 1.0, 'buyers': 1.0, 'not': 2.0, 'color': 1.0, 'bought': 1.0, 'me': 2.0, 'my': 1.0, 'these': 3.0, 'by': 1.0, 'just': 2.0, 'while': 1.0, 'weave': 1.0, 'like': 1.0, 'package': 1.0, 'glowing': 1.0, 'after': 1.0, 'experience': 1.0, 'material': 1.0, 'really': 1.0, 'birth': 1.0, 'i': 6.0, 'threads': 1.0, 'other': 1.0, 'anything': 1.0, 'it': 2.0, 'four': 1.0, 'opened': 1.0, 'the': 12.0, 'of': 4.0, 'quality': 1.0, 'softer': 1.0, 'means': 1.0, 'will': 1.0, 'get': 1.0, 'try': 1.0, 'one': 1.0, 'lot': 1.0, 'use': 1.0, 'out': 1.0, 'loose': 1.0, 'plus': 1.0, 'are': 1.0, 'fact': 1.0, 'inexpensive': 1.0, 'price': 2.0, 'swaddling': 1.0, 'summer': 1.0, 'would': 3.0, 'purchase': 1.0, 'only': 1.0, 'biggest': 1.0, 'expect': 1.0, 'based': 1.0, 'good': 1.0, 'others': 1.0, 'baby': 1.0, 'unfortunately': 1.0, 'unfinished': 1.0, 'hemmed': 1.0, 'edges': 1.0, 'have': 2.0, 'is': 2.0, 'look': 1.0, 'daughter': 1.0, 'contrary': 1.0, 'did': 1.0, 'seem': 1.0, 'rougher': 1.0, 'gotten': 1.0, 'buy': 1.0, 'feels': 1.0, 'however': 1.0, 'bit': 2.0, 'again': 1.0, 's': 1.0, 'maybe': 1.0, 'point': 1.0, 'alone': 1.0}
Word element => {'need': 1.0, 'recommend': 1.0, 'highly': 1.0, 'sooooo': 1.0, 'would': 1.0, 'larger': 1.0, 'definitely': 1.0, '8': 1.0, 'about': 1.0, 'until': 1.0, 'swaddled': 1.0, 'liked': 1.0, 'outgrow': 1.0, 'only': 1.0, 'quickly': 1.0, 'nearly': 1.0, 'quality': 1.0, 'good': 1.0, 'as': 2.0, 'smaller': 1.0, 'are': 6.0, 'august': 1.0, 'aren': 1.0, 'they': 7.0, 'thin': 2.0, 'extreme': 1.0, 'swaddle': 2.0, 'getting': 1.0, 'can': 1.0, 'so': 3.0, 'born': 1.0, 'up': 2.0, 'over': 1.0, 'hospital': 1.0, 'gosh': 1.0, 'these': 5.0, 'brought': 1.0, 'using': 1.0, 'washer': 1.0, 'found': 1.0, 'know': 1.0, 'very': 2.0, 'son': 3.0, 'still': 1.0, 'cuddle': 1.0, 'say': 1.0, 'more': 1.0, 'how': 1.0, 'home': 1.0, 'haven': 1.0, 'but': 2.0, 'and': 7.0, 'since': 2.0, 'keep': 1.0, 'is': 1.0, 'at': 1.0, 'may': 1.0, 'my': 4.0, 'old': 1.0, 'm': 1.0, 'in': 3.0, 'worth': 1.0, 'air': 1.0, 've': 2.0, 'from': 2.0, 'allow': 1.0, 'super': 2.0, 'to': 3.0, 'your': 1.0, 'any': 1.0, 'all': 1.0, 'word': 1.0, 'heat': 1.0, 'been': 1.0, 'problems': 1.0, 'because': 2.0, 'that': 3.0, 'loves': 1.0, 'for': 3.0, 'he': 3.0, 'love': 1.0, 'especially': 1.0, 'caution': 1.0, 'expensive': 2.0, 'them': 3.0, 'baby': 3.0, 'was': 5.0, 'clothes': 1.0, 'long': 1.0, 'flow': 1.0, 'warm': 1.0, 'had': 1.0, 'not': 1.0, 'him': 2.0, '9': 2.0, 'burning': 1.0, 'it': 2.0, 'won': 1.0, 'i': 7.0, 'well': 1.0, 't': 4.0, 'a': 2.0, 'be': 2.0, '47x47': 1.0, 'needed': 1.0, 'newborn': 1.0, 'oh': 1.0, 'with': 3.0, 'last': 1.0, 'dryer': 1.0, 'boutique': 1.0, 'without': 1.0, 'soft': 1.0, 'the': 9.0, 'of': 2.0, 'make': 1.0, 'sure': 1.0, 'months': 3.0, 'get': 1.0, 'able': 1.0, 'blankets': 5.0, 'you': 5.0, 'alabama': 1.0, 'held': 1.0, 'ones': 3.0, 'fine': 1.0, 'then': 1.0}
Word element => {'perfect': 1.0, 'summer': 1.0, 'fabric': 1.0, 'i': 1.0, 'uses': 1.0, 'love': 1.0, 'money': 1.0, 'these': 1.0, 'them': 1.0, 'fabulous': 1.0, 'blankets': 1.0, 'and': 1.0, 'my': 1.0, 'are': 2.0, 'the': 2.0, 'for': 2.0, 'in': 1.0, 'many': 1.0, 'there': 1.0, 'opinion': 1.0, 'so': 2.0, 'lightweight': 1.0, 'worth': 1.0}
Word element => {'best': 1.0, 'one': 1.0, 'giraffe': 1.0, 'i': 1.0, 'girls': 1.0, 'cute': 1.0, 'jam': 1.0, 'have': 1.0, 'does': 1.0, 'swaddled': 1.0, 'be': 1.0, 'liked': 1.0, 'never': 1.0, 'son': 1.0, 'my': 1.0, 'boys': 1.0, 'when': 1.0, 'even': 1.0, 'set': 1.0, 'used': 1.0, 'overheat': 1.0, 'love': 2.0, 'for': 3.0, 'or': 1.0, 'yet': 1.0, 'jungle': 1.0, 'riding': 1.0, 'we': 1.0, 't': 1.0, 'these': 2.0, 'the': 4.0, 'doesn': 1.0, 'amazingly': 1.0, 'he': 2.0, 'with': 2.0, 'sooooo': 1.0, 'come': 1.0, 'that': 1.0, 'to': 2.0, 'our': 2.0, 'enough': 1.0, 'light': 1.0, 'month': 1.0, 'are': 5.0, '7': 1.0, 'among': 1.0, 'cuddle': 1.0, 'is': 1.0, 'they': 6.0, 'items': 1.0, 'blankets': 1.0, 'but': 1.0, 'most': 1.0, 'in': 1.0, 'baby': 1.0, 'softer': 1.0, 'trendy': 1.0, 'car': 1.0, 'get': 1.0, 'and': 3.0, 'each': 1.0, 'true': 1.0, 'this': 1.0, 'functional': 1.0, 'old': 1.0, 'handy': 1.0, 'spit': 1.0, 'wash': 1.0, 'up': 1.0, 'always': 1.0, 'messes': 1.0, 'clean': 1.0}
Word element => {'worry': 1.0, 'half': 1.0, 'rough': 1.0, 'piece': 1.0, 'extra': 1.0, 'actually': 1.0, 'snag': 1.0, 'doesn': 1.0, 'taking': 1.0, 'careful': 1.0, 'at': 1.0, 'velcro': 2.0, 'bag': 2.0, 'diaper': 1.0, 'tip': 1.0, 'softer': 1.0, 'better': 1.0, 'blanket': 2.0, 'same': 1.0, 'from': 1.0, '4': 1.0, 'set': 1.0, 'sauna': 1.0, 'like': 1.0, 't': 3.0, 'opening': 1.0, 'don': 2.0, 'cover': 2.0, 'nursing': 1.0, 'also': 1.0, 'hot': 1.0, 'got': 1.0, 'work': 1.0, 'over': 2.0, 'we': 3.0, 'a': 7.0, 'hardly': 1.0, 's': 2.0, 'need': 1.0, 'or': 2.0, 'out': 3.0, 'stains': 1.0, 'easily': 1.0, 'that': 2.0, 'easier': 1.0, 'sized': 1.0, 'to': 3.0, 'your': 2.0, 'feel': 1.0, 'any': 1.0, 'had': 3.0, 'wish': 1.0, 'would': 1.0, 'swaddling': 1.0, 'choose': 1.0, 'soft': 1.0, 'this': 2.0, 'which': 1.0, 'putting': 1.0, 'well': 2.0, 'i': 5.0, 'for': 3.0, 'too': 2.0, 'one': 2.0, 'get': 1.0, 'months': 1.0, 've': 1.0, 'pilling': 1.0, 'bigger': 1.0, 'if': 3.0, 'every': 1.0, 'd': 1.0, 'do': 1.0, 'much': 2.0, 'only': 1.0, 'arms': 1.0, 'and': 13.0, 'tuck': 1.0, 'shut': 1.0, 'these': 2.0, 'sleeping': 2.0, 'they': 3.0, 'ours': 1.0, 'no': 2.0, 'about': 2.0, 'but': 2.0, 're': 1.0, 'come': 1.0, 'be': 1.0, 'generously': 1.0, 'are': 4.0, 'first': 2.0, 'little': 1.0, 'single': 1.0, 'can': 1.0, 'so': 4.0, 'price': 1.0, 'year': 1.0, 'never': 1.0, 'some': 1.0, 'spent': 1.0, 'now': 2.0, 'hesitant': 1.0, 'have': 1.0, 'you': 5.0, 'blankets': 2.0, 'complaints': 1.0, 'was': 1.0, 'has': 1.0, 'target': 1.0, 'them': 1.0, 'lay': 1.0, 'an': 1.0, 'other': 1.0, 'although': 1.0, 'cold': 2.0, 'throw': 1.0, 'best': 1.0, 'fleece': 1.0, 'on': 2.0, 'top': 2.0, 'the': 8.0, 'of': 3.0, 'wear': 1.0, 'it': 6.0, 'baby': 1.0, 'she': 1.0, 'in': 5.0, 'larger': 1.0, 'crib': 1.0, 'youngest': 1.0, 'wash': 2.0, 'use': 2.0, 'her': 4.0, '8': 1.0, 'by': 1.0, 'my': 2.0, 'me': 1.0, 'not': 3.0, 'day': 1.0, 'rocknplay': 1.0, 'fold': 1.0, 'makes': 1.0, 'restraint': 1.0, 'around': 1.0}
Word element => {'hasn': 1.0, 'guessing': 1.0, 'm': 1.0, 'dyes': 1.0, 'any': 1.0, 'all': 1.0, 'rough': 1.0, 'very': 1.0, 'is': 1.0, 'complaint': 1.0, 'adorable': 1.0, 'each': 1.0, 'feeling': 1.0, 'daughter': 1.0, 'striped': 1.0, 'have': 1.0, 'these': 2.0, 'such': 1.0, 'wash': 1.0, 'over': 1.0, 'the': 3.0, 'deal': 1.0, 'weight': 1.0, 'never': 1.0, 'my': 2.0, 'are': 2.0, 'i': 3.0, 'love': 1.0, 'they': 3.0, 'offer': 1.0, 'too': 1.0, 'and': 5.0, 'only': 1.0, 'do': 1.0, 'get': 1.0, 'once': 1.0, 'of': 2.0, 'because': 1.0, 'one': 2.0, 'huge': 1.0, 'taken': 1.0, 'pink': 1.0, 'piece': 1.0, 'mind': 1.0, 'with': 2.0, 'her': 1.0, 'out': 1.0, 'it': 1.0, 'she': 1.0, 'was': 1.0, 'won': 1.0, 'hot': 1.0, 'totally': 1.0, 'that': 2.0, 't': 2.0, 's': 1.0, 'a': 2.0, 'light': 1.0, 'heat': 1.0, 'sids': 1.0, 'being': 1.0, 'in': 1.0, 'regular': 1.0, 'really': 2.0, 'from': 1.0, 'designs': 1.0, 'occurance': 1.0, 'gotten': 1.0, 'days': 1.0, 'softer': 2.0}
Word element => {'scarf': 1.0, 'shawl': 1.0, 'wearing': 1.0, 'carrier': 1.0, 'shoulders': 1.0, 'help': 1.0, 'out': 1.0, 'looks': 1.0, 'it': 2.0, 'rock': 1.0, 'or': 2.0, 'stroller': 1.0, 'carseat': 1.0, 'throw': 1.0, 'better': 1.0, 'bonus': 1.0, 'like': 2.0, 'nursing': 1.0, 'colored': 1.0, 'an': 2.0, 'use': 1.0, 'improptu': 1.0, 'yourself': 1.0, 'over': 3.0, 'drape': 1.0, 'warmth': 1.0, 'brightly': 1.0, 'layers': 1.0, 'more': 1.0, 'smaller': 1.0, 'baby': 1.0, 'them': 3.0, 'random': 1.0, 'light': 3.0, 'white': 1.0, 'have': 2.0, 'with': 3.0, 'etc': 1.0, 'i': 6.0, 'for': 1.0, 'love': 1.0, 'my': 1.0, 'tight': 1.0, 'a': 4.0, 'added': 1.0, 'are': 5.0, 'the': 7.0, 'some': 1.0, 'these': 4.0, 'into': 1.0, 'owls': 1.0, 'that': 1.0, 'set': 2.0, 'fold': 1.0, 'type': 1.0, 'draped': 1.0, 'second': 1.0, 'block': 2.0, 'play': 1.0, 'and': 5.0, 'naps': 1.0, 'other': 1.0, 'aden': 1.0, 'got': 1.0, 'great': 1.0, 'nice': 2.0, 'big': 2.0, 'of': 2.0, 'muslin': 1.0, 'in': 2.0, 'will': 1.0, 'also': 3.0, 'swaddles': 1.0, 'swaddle': 1.0, 'general': 1.0, 'bumblebees': 1.0, 'because': 2.0, 'anais': 1.0, 'breathable': 1.0, 'they': 2.0, 'weight': 1.0, 'cover': 1.0, 'enough': 2.0, 'make': 1.0, 'swaddlers': 1.0, 'as': 3.0, 'to': 5.0, 'am': 1.0, 'squares': 1.0, 'you': 2.0, 'blankets': 3.0, 'can': 2.0}
Word element => {'mom': 1.0, 'ring': 1.0, 'or': 1.0, 'long': 1.0, '3': 1.0, 'your': 1.0, 'wedding': 1.0, 'time': 1.0, 'they': 1.0, 'ever': 1.0, 'especially': 1.0, 'with': 1.0, 'first': 1.0, 'enough': 2.0, 'parent': 1.0, 'these': 1.0, 'the': 4.0, 'are': 3.0, 'i': 1.0, 'overheated': 1.0, 'doesn': 1.0, 'sharp': 1.0, 'nails': 1.0, 'only': 1.0, 'wiggle': 1.0, 't': 1.0, 'a': 3.0, 'best': 1.0, 'grow': 1.0, 'to': 2.0, 'as': 1.0, 'large': 1.0, 'swaddle': 1.0, 'blankets': 1.0, 'if': 2.0, 'keep': 1.0, 'out': 1.0, 'thinness': 2.0, 'and': 1.0, 'of': 4.0, 'muslin': 2.0, 'baby': 2.0, 'them': 2.0, 'softer': 1.0, 'wash': 1.0, 'is': 2.0, 'warm': 1.0, 'not': 1.0, 'gets': 1.0, 'downfall': 1.0, 'that': 1.0, 'does': 1.0, 'snag': 1.0, 'am': 1.0, 'you': 3.0, 'easily': 1.0, 'have': 1.0}
Word element => {'top': 1.0, 'is': 1.0, 'weather': 1.0, 'layer': 1.0, 'of': 1.0, 'this': 1.0, 'soft': 1.0, 'larger': 1.0, 'light': 1.0, 'cloth': 1.0, '4': 1.0, 'i': 1.0, 'and': 2.0, 'gotten': 1.0, 'get': 1.0, 'the': 3.0, 'ones': 1.0, 'had': 1.0, 'as': 2.0, 'to': 1.0, 'now': 1.0, 'product': 1.0, 'for': 2.0, 'bought': 1.0, 'grandchild': 1.0, 'my': 2.0, 'shrinkage': 1.0, 'seeing': 1.0, 'after': 1.0, 'newest': 1.0, 'reminicient': 1.0, 'a': 3.0, 'cooler': 1.0, 'diapers': 1.0, 'washed': 1.0, 'on': 1.0, 'friend': 1.0, 'own': 1.0, 'gift': 1.0, 'children': 1.0, 'with': 1.0, 'notch': 1.0, 'they': 2.0, 'much': 1.0, 'than': 1.0, 'ordering': 1.0, 'used': 1.0, 'average': 1.0, 'these': 2.0, 'receiving': 1.0, 'are': 3.0, 'blanket': 1.0, 'softer': 1.0, 'little': 1.0, 'no': 1.0, 'am': 1.0}
Word element => {}
Word element => {'is': 1.0, 'the': 3.0, 'are': 2.0, 'fine': 1.0, 'good': 1.0, 'stitching': 1.0, 'really': 3.0, 'materials': 2.0, 'nice': 1.0, 'just': 1.0, 'soft': 1.0, 'high': 1.0, 'and': 2.0, 'quality': 1.0}
Word element => {'penny': 1.0, 'every': 1.0, 'be': 1.0, 'moms': 1.0, 'recommend': 1.0, 'versatile': 1.0, 'as': 1.0, 'moneys': 1.0, 'will': 2.0, 'know': 1.0, 'pricey': 1.0, 'although': 1.0, 'how': 1.0, 'like': 1.0, 'else': 1.0, 'breathability': 1.0, 'anything': 1.0, 'no': 1.0, 'all': 1.0, 'seperate': 1.0, 'material': 1.0, 'amazing': 1.0, 'really': 1.0, 'kicking': 1.0, 'deal': 1.0, 'baby': 2.0, 'softer': 1.0, 'them': 1.0, 'become': 1.0, 'find': 1.0, 'does': 1.0, 'big': 1.0, 'breathable': 1.0, 'and': 9.0, 'tuck': 2.0, 'do': 3.0, 'don': 2.0, 'cotton': 1.0, 'chance': 2.0, 'i': 9.0, 'feet': 1.0, 'size': 2.0, 'but': 3.0, 'their': 3.0, 'because': 4.0, 'that': 3.0, 'blanket': 1.0, 'are': 6.0, 'a': 4.0, 't': 3.0, 'tight': 2.0, 'my': 3.0, 'for': 1.0, 'wrap': 2.0, '20th': 1.0, 'cover': 1.0, 'more': 1.0, 'trick': 1.0, 'room': 1.0, 'these': 4.0, 'on': 1.0, 'long': 1.0, 'chic': 1.0, 'his': 2.0, 'age': 1.0, 'patterns': 1.0, 'notice': 1.0, 'is': 6.0, '98th': 1.0, 'dry': 1.0, 'man': 1.0, 'perfect': 1.0, 'to': 5.0, 'unswaddled': 1.0, 'swaddle': 2.0, 'getting': 1.0, 'can': 4.0, 'so': 1.0, 'with': 2.0, 'hard': 1.0, 'from': 1.0, 'him': 2.0, 'it': 1.0, 'trap': 1.0, 'they': 7.0, 'extra': 1.0, 'another': 1.0, '100': 1.0, 'he': 1.0, 'which': 2.0, 'must': 1.0, 'dryer': 1.0, 'happening': 1.0, 'reducing': 2.0, 'also': 1.0, 'blankets': 1.0, 'you': 2.0, 'when': 1.0, 'get': 3.0, 'skinny': 1.0, 'little': 1.0, 'nice': 2.0, 'chances': 1.0, 'the': 6.0, 'of': 5.0, 'suffocation': 1.0, 'very': 3.0, 'being': 1.0, 'thin': 1.0, 'perk': 1.0, 'keep': 1.0, 'scream': 1.0, 'lot': 1.0, 'warm': 1.0, 'sids': 1.0, 'just': 1.0, 'wash': 2.0, 'off': 1.0, 'see': 1.0, 'yes': 1.0, 'there': 1.0, 'worth': 2.0, 'lint': 2.0, 'in': 3.0, 'm': 1.0, 'done': 1.0}
Word element => {'fabric': 1.0, 'almost': 1.0, 'because': 1.0, 'big': 1.0, 'no': 1.0, 'dry': 3.0, 'dries': 1.0, 'thin': 1.0, 'hung': 1.0, 'up': 1.0, 'held': 1.0, 'they': 2.0, 'washing': 1.0, '6': 1.0, 'daughter': 1.0, 'rotation': 1.0, 'well': 2.0, 'were': 1.0, 'used': 2.0, 'deal': 1.0, 'hanging': 1.0, 'the': 11.0, 'already': 1.0, 'these': 2.0, 's': 1.0, 'we': 2.0, 't': 1.0, 'in': 4.0, 'swaddling': 2.0, 'perfect': 1.0, 'of': 2.0, 'muslin': 1.0, 'not': 1.0, 'do': 1.0, 'only': 1.0, 'heavy': 1.0, 'first': 2.0, 'it': 1.0, 'recommend': 1.0, 'fast': 1.0, 'during': 1.0, 'pilled': 1.0, 'stretch': 1.0, 'put': 2.0, 'blankets': 1.0, 'but': 2.0, 'new': 1.0, 'warn': 1.0, 'our': 1.0, 'to': 4.0, 'all': 1.0, 'them': 6.0, 'made': 1.0, 'out': 2.0, 'machine': 1.0, 'parents': 1.0, 'actually': 1.0, 'stars': 1.0, 'for': 1.0, 'months': 1.0, 'one': 1.0, 'and': 6.0, 'however': 1.0, 'time': 1.0, 'size': 1.0, 'slightly': 1.0, 'came': 2.0, 'very': 1.0, 'dryer': 3.0, 'misshapen': 1.0, 'hence': 1.0, 'really': 2.0, 'highly': 1.0, 'material': 1.0, 'i': 4.0, '4': 2.0, 'is': 3.0, 'didn': 1.0}
Word element => {'colder': 1.0, 'colors': 1.0, 'winter': 1.0, 'tight': 1.0, 'for': 2.0, 'and': 1.0, 'size': 1.0, 'so': 1.0, 'perfect': 1.0, 'weather': 1.0, 'than': 1.0, 'are': 3.0, 'swaddling': 1.0, 'white': 1.0, 'they': 1.0, 'gorgeous': 1.0, 'thicker': 1.0, 'a': 1.0, 'little': 1.0, 'regular': 1.0, 'the': 3.0, 'these': 1.0, 'ones': 1.0, 'great': 1.0, 'or': 1.0}
Word element => {'do': 1.0, 'it': 1.0, 'seen': 1.0, 'ever': 1.0, 'dream': 1.0, 'than': 1.0, 'stuffed': 1.0, 'more': 1.0, 'completely': 1.0, 'was': 1.0, 'trap': 1.0, 'them': 1.0, 'white': 1.0, 'out': 1.0, 'faded': 1.0, 'in': 1.0, 'wash': 1.0, 'brilliant': 1.0, 'though': 1.0, 'colors': 2.0, 'after': 1.0, 'delicate': 1.0, 'that': 1.0, 'silky': 1.0, 've': 1.0, 'lint': 2.0, 'the': 6.0, 'these': 1.0, 'blanket': 1.0, 'are': 3.0, 'cold': 1.0, 'they': 2.0, 'dry': 1.0, 'me': 1.0, 'not': 2.0, 'nice': 1.0, 'opened': 1.0, 'to': 1.0, 'as': 2.0, 'get': 1.0, 'kind': 1.0, 'blankets': 1.0, 'smooth': 1.0, 'pictures': 1.0, 'soft': 3.0, 'want': 1.0, 'if': 1.0, 'fluffy': 2.0, 'look': 1.0, 'of': 2.0, 'makes': 1.0, 'old': 1.0, 'i': 2.0, 'first': 1.0, 'tumble': 1.0, 'make': 2.0, 'on': 1.0, 'low': 1.0, 'dryer': 1.0, 'heat': 1.0, 'tons': 1.0, 'my': 1.0, 'and': 1.0, 'sense': 1.0, 'burst': 1.0}
Word element => {'swaddled': 1.0, 'be': 1.0, 'when': 1.0, 'as': 1.0, 'of': 1.0, 'have': 1.0, 'they': 1.0, 'because': 1.0, 'it': 1.0, 'worth': 1.0, 'get': 1.0, 'to': 2.0, 'longer': 1.0, 'is': 1.0, 'people': 1.0, 'many': 1.0, 'that': 1.0, 'no': 1.0, 'blankets': 1.0, 'so': 1.0, '47': 1.0, 'same': 1.0, 'accent': 1.0, 'are': 1.0, 'the': 3.0, 'these': 2.0, 'use': 2.0, 'will': 1.0, 'but': 1.0, 'for': 1.0, 'needs': 1.0, 'pieces': 1.0, 'muslin': 1.0, 'in': 1.0, 'swaddling': 1.0, 'gorgeous': 1.0, 'pastel': 1.0, 'i': 1.0, 'think': 1.0, 'extra': 1.0, 'baby': 1.0, 'years': 1.0, 'colors': 2.0, 'money': 1.0}
Word element => {'become': 1.0, 'only': 1.0, 'several': 1.0, 'them': 2.0, 'washed': 1.0, 'up': 1.0, 'spits': 1.0, 'times': 1.0, 'who': 1.0, 'product': 1.0, 'quality': 1.0, 'aden': 2.0, 'swaddle': 1.0, 'love': 3.0, 'by': 1.0, 'buy': 1.0, 'products': 1.0, 'i': 1.0, 'husband': 1.0, 'and': 3.0, 'softer': 2.0, 'having': 1.0, 'newborn': 2.0, 'purchased': 1.0, 'my': 1.0, 'these': 3.0, 'great': 1.0, 'the': 1.0, 'actually': 1.0, 'are': 1.0, 'anais': 2.0, 'wraps': 2.0, 'we': 3.0, 'all': 1.0, 'have': 2.0, 'they': 1.0, 'ever': 1.0, 'a': 2.0}
Word element => {'of': 1.0, 'packs': 1.0, 'sell': 1.0, 'too': 1.0, 'cheaper': 1.0, 'needed': 1.0, 'don': 2.0, 'i': 2.0, 'that': 1.0, 'pricey': 1.0, 'little': 2.0, 'swaddle': 1.0, 's': 1.0, 'but': 1.0, 'know': 1.0, 'okay': 1.0, 'huge': 1.0, 'and': 3.0, 'in': 1.0, 'newborn': 1.0, 't': 2.0, 'these': 1.0, 'the': 2.0, 'are': 1.0, 'a': 3.0, 'fabulous': 1.0, 'for': 1.0, 'bad': 1.0, 'four': 1.0, 'fabric': 1.0, 'cool': 1.0, 'really': 1.0, 'is': 1.0, 'they': 1.0, 'time': 1.0, 'it': 1.0, 'soft': 1.0, 'warm': 1.0, 'two': 1.0, 'blankets': 2.0, 'at': 1.0, 'same': 1.0}
Word element => {'at': 1.0, 'high': 1.0, 'no': 1.0, 'wash': 2.0, 'goes': 1.0, 'use': 1.0, 'continually': 1.0, 'they': 2.0, 'which': 2.0, 'know': 1.0, 'you': 2.0, 'swaddle': 1.0, 'each': 1.0, 'slightly': 1.0, 'has': 1.0, 'hint': 1.0, 'one': 3.0, 'dry': 1.0, 'packs': 1.0, 'maintenance': 1.0, 'way': 1.0, 'always': 1.0, 'blankie': 1.0, 'change': 1.0, 'diaper': 1.0, 'down': 1.0, 'him': 1.0, 'buy': 1.0, 'lay': 1.0, 'last': 1.0, 'different': 1.0, 'clean': 1.0, 'very': 1.0, 'on': 1.0, 'continuously': 1.0, 'during': 1.0, 'weeks': 1.0, 'set': 1.0, 'used': 2.0, 'beautifully': 1.0, 'these': 1.0, 'the': 2.0, 'uuml': 1.0, 'birthing': 1.0, 'lightweight': 1.0, 'my': 3.0, 'are': 2.0, 'all': 1.0, 'as': 1.0, 'patterns': 1.0, 'to': 3.0, 'was': 2.0, 'newborn': 1.0, 'muslin': 1.0, 'in': 4.0, 'and': 5.0, 'them': 1.0, 'from': 1.0, 'later': 1.0, 'large': 1.0, 'two': 1.0, 'become': 1.0, 'soft': 1.0, 'swaddling': 1.0, 'this': 2.0, 'he': 1.0, 'oh': 1.0, 'gift': 1.0, 'for': 3.0, 'restaurant': 2.0, 'we': 1.0, 't': 1.0, 'a': 7.0, 'law': 2.0, 'after': 1.0, 'even': 1.0, 'didn': 1.0, 'surface': 1.0, 'want': 1.0, 'into': 1.0, 'that': 2.0, 'nephew': 1.0, 'breastfeeding': 1.0, 'enough': 1.0, 'cover': 1.0, 'sister': 1.0, 'suite': 1.0, 'ber': 1.0, 'sis': 1.0, 'nice': 1.0}
Word element => {'do': 1.0, 'getting': 1.0, 'some': 2.0, 'note': 1.0, 'worker': 1.0, 'co': 1.0, 'takes': 1.0, 'pleased': 1.0, 'am': 1.0, 'wrap': 1.0, 'grows': 1.0, 'larger': 1.0, 'o': 1.0, 'w': 1.0, 'hot': 1.0, 'it': 3.0, 'good': 1.0, 'gift': 1.0, 'which': 1.0, 'little': 1.0, 'used': 1.0, 'move': 1.0, '40x40': 1.0, 'not': 2.0, 'safe': 1.0, '30x30': 1.0, 'recommended': 1.0, 'and': 11.0, 'local': 1.0, 'keeps': 1.0, 'restricted': 1.0, 'feel': 1.0, 'idea': 1.0, 'ac': 1.0, 'but': 5.0, 'you': 1.0, 'blankets': 2.0, 'classes': 2.0, 'practiced': 1.0, 's': 2.0, 't': 2.0, 'buy': 1.0, 'internet': 1.0, 'several': 2.0, 'about': 1.0, 'x': 1.0, 'with': 4.0, 'too': 2.0, 'one': 2.0, 'for': 3.0, 'blanket': 2.0, 'are': 6.0, 'shower': 2.0, 'wrapping': 2.0, 'since': 1.0, 'find': 2.0, 'received': 1.0, '99': 1.0, 'when': 2.0, 'goal': 1.0, 'was': 1.0, 'to': 6.0, 'luck': 1.0, 'how': 1.0, 'our': 3.0, 'birthing': 1.0, 'anais': 1.0, 'as': 5.0, 'hawaii': 2.0, 'i': 4.0, 'etc': 1.0, '4': 1.0, 'were': 4.0, 'muslin': 1.0, 'wife': 1.0, 'went': 1.0, 'may': 1.0, 'my': 1.0, 'these': 4.0, 'of': 2.0, 'the': 8.0, 'a': 6.0, 'small': 2.0, 'practice': 1.0, 'hospitals': 1.0, 'have': 2.0, 'calms': 1.0, 'can': 4.0, 'so': 3.0, 'baby': 10.0, 'heard': 1.0, 'usa': 1.0, 'swaddling': 3.0, 'found': 1.0, 'soft': 1.0, 'this': 1.0, 'they': 10.0, 'ever': 1.0, 'next': 1.0, 'use': 2.0, 'couldn': 1.0, 'home': 1.0, 'shops': 1.0, 'because': 2.0, 'that': 2.0, 'toysrus': 1.0, 'or': 2.0, 'warm': 1.0, 'had': 1.0, 'very': 4.0, 'wraps': 1.0, 'we': 6.0, 'take': 1.0, 'then': 1.0, 'on': 1.0, '40': 3.0, 'liked': 1.0, 'cotten': 1.0, 'brands': 1.0, 'flexible': 1.0, 'although': 1.0, 'aden': 1.0, 'light': 4.0, 'especially': 1.0, 'living': 1.0, 'types': 1.0, 'pack': 1.0, 'in': 2.0, 'specific': 1.0, 'important': 2.0, 'even': 1.0, 'searched': 2.0, 'practical': 1.0, 'snug': 1.0, 'at': 1.0, 'is': 1.0}
Word element => {'she': 2.0, 'happiest': 1.0, 'gets': 1.0, 'i': 2.0, 'when': 1.0, 'twins': 1.0, 'bought': 1.0, 'are': 2.0, 'the': 3.0, 'these': 2.0, 'my': 1.0, 'a': 2.0, 'friend': 1.0, 'set': 1.0, 'of': 2.0, 'they': 3.0, 'recently': 1.0, 'on': 1.0, 'with': 1.0, 'only': 1.0, 'had': 1.0, 'copy': 1.0, 'to': 1.0, 'for': 1.0, 'along': 1.0, 'sooo': 1.0, 'like': 1.0, 'block': 1.0, 'and': 2.0, 'stop': 1.0, 'cute': 1.0, 'sometimes': 1.0, 'soft': 1.0, 'swaddling': 1.0, 'her': 1.0, 'how': 1.0, 'worked': 1.0, 'crying': 1.0, 'out': 1.0, 'baby': 2.0, 'magic': 1.0, 'them': 1.0, 'in': 1.0, 'said': 1.0, 'asked': 1.0, 'is': 1.0, 'thing': 1.0, 'that': 1.0}
Word element => {'baby': 1.0, 'a': 1.0, 'them': 1.0, 'just': 1.0, 'i': 1.0, 'cute': 1.0, 'so': 1.0, 'love': 1.0, 'for': 3.0, 'are': 3.0, 'they': 2.0, 'breathable': 1.0, 'nursing': 1.0, 'blankets': 2.0, 'necessity': 1.0, 'each': 1.0, 'the': 1.0, 'these': 1.0, 'great': 1.0, 'swaddling': 1.0, 'soft': 1.0, 'wonderful': 1.0, 'burping': 1.0, 'use': 2.0, 'beautifully': 1.0, 'patterns': 1.0, 'everyday': 1.0, 'softer': 1.0, 'perfect': 1.0, 'wash': 2.0, 'and': 4.0, 'get': 1.0, 'with': 1.0, 'summer': 1.0}
Word element => {'hold': 1.0, 'to': 1.0, 'enough': 1.0, 'just': 1.0, 'fabric': 1.0, 'as': 1.0, 'swaddling': 1.0, 'a': 1.0, 'they': 1.0, 'textured': 1.0, 'three': 1.0, 'in': 1.0, 'muslin': 1.0, 'can': 1.0, 'my': 1.0, 'are': 1.0, 'blankets': 1.0, 'shape': 1.0, 'and': 1.0, 'wrong': 1.0, 'go': 1.0, 'this': 1.0, 'with': 1.0, 'you': 1.0, 'set': 1.0, 'how': 1.0, 'child': 2.0, 'is': 2.0, 'second': 1.0, 'great': 2.0, 'the': 2.0, 'ones': 1.0, 'i': 1.0, 'used': 1.0, 'number': 2.0, 'tight': 1.0, 'one': 1.0, 'for': 3.0}
Word element => {'now': 1.0, 'set': 1.0, 'bought': 1.0, 'out': 1.0, 'went': 1.0, 'my': 2.0, 'another': 2.0, 'up': 1.0, 'breathable': 2.0, 'enough': 1.0, 'eight': 1.0, 'cover': 1.0, 'have': 3.0, 'too': 1.0, 'had': 1.0, 'plus': 1.0, 'are': 3.0, 'not': 2.0, 'they': 3.0, 'and': 6.0, 'overheating': 1.0, 'double': 1.0, 'or': 3.0, 'burp': 1.0, 'as': 3.0, 'blankets': 3.0, 'so': 1.0, 'can': 3.0, 'but': 1.0, 'few': 1.0, 'life': 1.0, 'been': 1.0, 'because': 1.0, 'that': 1.0, 'different': 1.0, 'we': 3.0, 'small': 1.0, 'a': 2.0, 't': 4.0, 'down': 1.0, 'nursing': 1.0, 'shower': 1.0, 'these': 3.0, 'cloths': 2.0, 'of': 1.0, 'the': 6.0, 'hands': 1.0, 'for': 1.0, 'love': 1.0, 'in': 2.0, 'regular': 1.0, 'reduced': 1.0, 'worry': 1.0, 'swaddled': 1.0, 'soft': 2.0, 'were': 1.0, 'pack': 1.0, 'best': 1.0, 'tummy': 1.0, 'status': 1.0, 'is': 2.0, 'only': 1.0, 'houdini': 1.0, 'provide': 1.0, 'it': 1.0, 'don': 2.0, 'isn': 1.0, 'undo': 1.0, 'time': 1.0, 'uses': 1.0, 'well': 1.0, 'i': 4.0, 'about': 1.0, 'them': 1.0, 'always': 1.0, 'if': 1.0, 'to': 4.0, 'colder': 1.0, 'when': 2.0, 'her': 1.0, 'use': 1.0, 'privacy': 1.0, 'our': 1.0, 'stroller': 1.0, 'from': 1.0, 'designs': 1.0, 'sun': 1.0, 'husband': 1.0, 'two': 1.0, 'little': 1.0, 'see': 1.0, 'baby': 2.0, 'others': 1.0, 'she': 2.0, 'many': 1.0, 'other': 1.0, 'future': 1.0, 'received': 1.0, 'also': 1.0, 'after': 1.0, 'either': 1.0, 'swaddling': 2.0, 'weeks': 1.0, 'using': 1.0}
Word element => {}
Word element => {'with': 1.0, 'warm': 1.0, 'nice': 1.0, 'swaddling': 1.0, 'cozy': 1.0, 'swaddle': 1.0, 'so': 1.0, 'the': 1.0, 'are': 3.0, 'and': 2.0, 'blankets': 1.0, 'you': 1.0, 'theses': 1.0, 'use': 1.0, 'easy': 1.0, 'can': 1.0, 'them': 1.0, 'thin': 1.0, 'best': 1.0, 'year': 1.0, 'round': 1.0, 'they': 2.0, 'because': 1.0, 'an': 1.0, 'to': 1.0}
Word element => {'particular': 1.0, 'singles': 1.0, 'could': 1.0, 'is': 1.0, 'wish': 1.0, 'soft': 1.0, 'are': 1.0, 'special': 1.0, 'uses': 1.0, 'loves': 1.0, 'print': 1.0, 'still': 1.0, 'now': 1.0, 'was': 1.0, 'when': 1.0, 'buy': 1.0, 'i': 1.0, 'for': 1.0, 'love': 1.0, 'my': 2.0, 'blankets': 2.0, 'son': 1.0, 'as': 2.0, 'lightweight': 1.0, 'these': 1.0, 'they': 2.0, 'his': 1.0, 'used': 1.0, 'a': 3.0, 'them': 4.0, 'in': 1.0, 'newborn': 1.0, 'we': 1.0, 'so': 1.0, 'swaddle': 1.0, 'you': 1.0, 's': 1.0, 'were': 1.0, 'awesome': 1.0, 'that': 2.0, 'only': 1.0, 'blankie': 1.0, 'he': 2.0, 'toddler': 1.0}
Word element => {'rave': 1.0, 'nothing': 1.0, 'well': 1.0, 'it': 6.0, 'during': 1.0, 'suffocating': 1.0, 'so': 3.0, 'weight': 3.0, 'stroller': 2.0, 'or': 2.0, 'carrier': 2.0, 'use': 2.0, 'when': 1.0, 'you': 2.0, 'your': 1.0, '3': 1.0, 'good': 1.0, 'swaddle': 1.0, 'however': 1.0, 'helps': 1.0, 'like': 1.0, 'which': 1.0, 'light': 3.0, 'large': 1.0, 'maybe': 1.0, 'because': 2.0, 'than': 1.0, 'better': 1.0, 'blanket': 2.0, 'are': 4.0, 'too': 1.0, 'and': 3.0, 'can': 1.0, 'blankets': 2.0, 'but': 3.0, 'an': 1.0, 'also': 1.0, 'will': 1.0, 'pack': 1.0, 'first': 1.0, 'swaddles': 1.0, 'cover': 2.0, 'caved': 1.0, 'i': 6.0, 'about': 3.0, 'don': 2.0, 'baby': 4.0, 'see': 1.0, 'toddlers': 1.0, 'bigger': 1.0, 'since': 2.0, 's': 4.0, 'a': 7.0, 't': 2.0, 'decent': 1.0, 'receiving': 1.0, 'these': 3.0, 'what': 1.0, 'say': 1.0, 'is': 4.0, 'regular': 1.0, 'said': 1.0, 'rather': 1.0, 'leg': 1.0, 'of': 1.0, 'feel': 1.0, 'nice': 2.0, 'great': 2.0, 'big': 3.0, 'desperate': 1.0, 'they': 5.0, 'the': 3.0, 'deal': 1.0, 'was': 1.0, 'arm': 1.0, 'everyone': 1.0, 'for': 7.0, 'cost': 1.0, 'something': 1.0, 'were': 1.0, 'that': 2.0, 'summer': 2.0, 'help': 1.0, 'my': 2.0, 'newborn': 2.0, 'as': 2.0, 'all': 1.0, 'to': 4.0, 'sleep': 1.0, 'raved': 1.0, 'how': 1.0, 'being': 1.0, 'swaddling': 3.0, 'months': 2.0, 'bought': 1.0}
Word element => {'them': 1.0, 'you': 1.0, 'nighttime': 1.0, 'and': 1.0, 'love': 1.0, 'for': 1.0, 'll': 1.0, 'longer': 1.0, 'sleeping': 1.0, 'him': 1.0, 'keep': 1.0, 'anais': 1.0, 'aden': 1.0, 'out': 1.0, 'are': 1.0, 'square': 1.0, 'us': 1.0, 'large': 1.0, 'swaddling': 1.0, 'they': 2.0, 'get': 2.0, 'do': 1.0, 'only': 1.0, 'it': 1.0, 'blankets': 4.0, 'mom': 1.0, 'encourage': 1.0, 'want': 1.0, 'many': 1.0, 'really': 1.0, 'a': 3.0, 'of': 2.0, 'takes': 1.0, 'two': 1.0, 'i': 3.0, 'old': 1.0, 'as': 1.0, 'to': 5.0, 'enough': 2.0, 'these': 2.0, '2mo': 1.0, 'others': 1.0, 'use': 1.0, 'that': 1.0, 'were': 1.0, 'gifted': 1.0, 'give': 1.0, 'little': 1.0, 'or': 1.0, 'good': 1.0, 'stretch': 1.0, 'the': 2.0, 'hands': 1.0, 'swaddle': 1.0, 'naps': 1.0, 'other': 1.0, 'lightweight': 1.0, 'my': 1.0, 'make': 1.0, 'guy': 1.0, 'under': 1.0, 'minutes': 1.0, 'his': 1.0}
Word element => {'with': 1.0, 'friends': 1.0, 'my': 1.0, 'recommend': 1.0, 'definitely': 1.0, 'would': 1.0, 'satisfied': 1.0, '100': 1.0, 'to': 1.0, 'was': 1.0, 'expensive': 1.0, 'reading': 1.0, 'hesitant': 1.0, 'but': 1.0, 'i': 5.0, '1': 1.0, 'no': 1.0, 'the': 1.0, 'these': 2.0, '2': 1.0, 'after': 1.0, 'kinda': 1.0, 'star': 1.0, 'were': 1.0, 'thought': 1.0, 'lint': 1.0, 'say': 1.0, 'babies': 1.0, 'have': 1.0, 'ratings': 1.0, 'must': 1.0, 'problems': 1.0, 'am': 1.0}
Word element => {'love': 2.0, 'they': 1.0, 'hold': 1.0, 'times': 1.0, 'many': 2.0, 'them': 1.0, 'up': 1.0, 'washed': 1.0, 'but': 1.0, 'since': 1.0, 'have': 1.0, 'designs': 1.0, 'degrees': 1.0, 'below': 1.0, 'gets': 1.0, 'where': 1.0, '50': 1.0, 'live': 1.0, 'hardly': 1.0, 'purchased': 1.0, 'use': 1.0, 've': 1.0, 'in': 1.0, 'we': 2.0, 'blankets': 1.0, 'florida': 1.0, 'and': 2.0, 'with': 1.0, 'it': 1.0, 'durable': 1.0, 'only': 1.0, 'are': 1.0, 'more': 1.0, 'these': 1.0, 'great': 2.0, 'the': 1.0, 'lightweight': 1.0, 'ones': 1.0, 'i': 2.0}
Word element => {'definitely': 1.0, 'would': 1.0, 'face': 1.0, 'her': 1.0, 'blankets': 1.0, 'loves': 1.0, 'because': 1.0, 'breathable': 1.0, 'that': 1.0, 'fact': 1.0, 'weeks': 1.0, '8': 1.0, 'we': 1.0, 'recommend': 1.0, 'she': 2.0, 'every': 1.0, 'was': 1.0, 'i': 3.0, 'by': 1.0, 'when': 1.0, 'daughter': 1.0, 'the': 1.0, 'these': 2.0, 'they': 2.0, 'my': 1.0, 'are': 2.0, 'bought': 1.0, 'for': 1.0, 'love': 2.0, 'them': 1.0, 'soft': 1.0, 'get': 1.0, 'and': 1.0, 'with': 1.0, 'softer': 1.0, 'wash': 1.0}
Word element => {'it': 1.0, 'but': 1.0, 'pricey': 1.0, 'little': 1.0, 'wonderfully': 1.0, 'up': 1.0, 'and': 1.0, 'pretty': 1.0, 'i': 2.0, 'her': 1.0, 'soft': 1.0, 'to': 2.0, 'much': 1.0, 'wash': 1.0, 'newborn': 1.0, 'infant': 1.0, 'these': 1.0, 's': 1.0, 'daughter': 2.0, 'for': 1.0, 'use': 1.0, 'purchased': 2.0, 'loved': 1.0, 'my': 1.0, 'them': 2.0, 'well': 1.0, 'a': 3.0, 'swaddle': 1.0, 'so': 1.0, 'as': 1.0, 'baby': 1.0, 'worth': 1.0, 'gift': 1.0, 'friend': 1.0}
Word element => {'second': 1.0, 'again': 1.0, 'forward': 1.0, 'made': 1.0, 'purchases': 1.0, 'was': 1.0, 'they': 4.0, 'like': 2.0, 'thin': 2.0, 'lately': 1.0, 'still': 1.0, 'son': 1.0, 'find': 1.0, 'sized': 1.0, 'does': 1.0, 'home': 1.0, 'store': 1.0, 'sent': 1.0, 'but': 1.0, 'airy': 1.0, 'we': 2.0, 't': 2.0, 'a': 3.0, 'came': 2.0, 'cold': 1.0, 'best': 2.0, 're': 2.0, 'my': 4.0, 'how': 1.0, 'shower': 1.0, 'he': 1.0, 'yet': 1.0, 'or': 1.0, 'look': 1.0, 'at': 2.0, 'keep': 1.0, 'and': 4.0, 'one': 1.0, 'too': 1.0, 'quite': 1.0, 'these': 2.0, 'kept': 1.0, 'stretch': 1.0, 'snugger': 1.0, 'so': 4.0, 'were': 1.0, 'early': 1.0, 'sheets': 1.0, 'to': 7.0, 'as': 1.0, 'protect': 1.0, 'husband': 1.0, 'receiving': 2.0, 'sun': 1.0, 'had': 1.0, 'of': 2.0, 'the': 6.0, 'hospital': 1.0, 'three': 1.0, 'wrap': 1.0, 'used': 1.0, 'kiddo': 1.0, 'baby': 2.0, 'target': 1.0, 'them': 2.0, 'i': 5.0, 'him': 3.0, 'cozy': 1.0, 've': 1.0, 'january': 1.0, 'those': 1.0, 'went': 1.0, 'weather': 2.0, 'with': 1.0, 'plenty': 1.0, 'through': 1.0, 'material': 2.0, 'little': 4.0, 'over': 1.0, 'don': 1.0, 'blankets': 2.0, 'you': 2.0, 'have': 2.0, 'your': 2.0, 'think': 1.0, 'hadn': 1.0, 'in': 1.0, 'their': 1.0, 'muir': 1.0, 'swaddle': 1.0, 'burrito': 1.0, 'wiggle': 1.0, 'out': 1.0, 'been': 1.0, 'using': 2.0, 'light': 1.0, 'john': 1.0, 'for': 3.0, 'weeks': 1.0, 'summer': 1.0, 'someday': 1.0, 'hot': 1.0, 'from': 1.0, 'farmers': 1.0, 'child': 1.0, 'markets': 1.0, 'this': 1.0}
Word element => {'compliments': 1.0, 'sheets': 1.0, 'bed': 1.0, 'buy': 1.0, 'off': 1.0, 'am': 1.0, 'so': 1.0, 'fitted': 1.0, 'prints': 1.0, 'seems': 1.0, 'my': 1.0, 'static': 1.0, 'being': 1.0, 'of': 1.0, 'really': 1.0, 'summer': 1.0, 'fabulous': 1.0, 'replace': 1.0, 'added': 1.0, 'reviewers': 1.0, 'are': 1.0, 'anyway': 1.0, 'worried': 1.0, 'for': 1.0, 'chance': 1.0, 'like': 1.0, 'bonus': 1.0, 'which': 1.0, 'brought': 1.0, 'a': 1.0, 'swaddles': 2.0, 'after': 1.0, 'wraps': 3.0, 'loved': 1.0, 'took': 1.0, 'hot': 1.0, 'well': 1.0, 'jj': 1.0, 'was': 1.0, 'as': 1.0, 'to': 4.0, 'cole': 1.0, 'about': 1.0, 'new': 2.0, 'lint': 2.0, 'issue': 1.0, 'and': 3.0, 'these': 3.0, 'some': 1.0, 'i': 4.0, 'two': 1.0, 'thicker': 1.0, 'mentioned': 1.0, 'but': 1.0, 'washes': 1.0, 'with': 2.0, 'come': 1.0, 'white': 2.0, 'out': 1.0, 'non': 2.0, 'swaddle': 1.0, 'did': 1.0, 'baby': 1.0, 'clothes': 1.0, 'softer': 1.0, 'the': 5.0, 'without': 1.0}
Word element => {'are': 1.0, 'that': 1.0, 'eyes': 1.0, 'her': 1.0, 'of': 1.0, 'keep': 1.0, 'sun': 1.0, 'or': 1.0, 'is': 1.0, 'breathable': 1.0, 'while': 1.0, 'to': 2.0, 'enough': 1.0, 'it': 1.0, 'only': 1.0, 'blankets': 2.0, 'and': 1.0, 'sleeping': 1.0, 'as': 2.0, 'my': 2.0, 're': 1.0, 'for': 1.0, 'love': 2.0, 'using': 2.0, 'a': 2.0, 'out': 1.0, 'them': 1.0, 'like': 1.0, 'blanket': 1.0, 'the': 3.0, 'great': 1.0, 'these': 1.0, 'they': 1.0, 'not': 1.0, 'i': 3.0, 'fact': 1.0, 'but': 1.0, 'stroller': 2.0, 'infant': 1.0, 'cover': 2.0, 's': 1.0, 'swaddling': 1.0, 'large': 1.0}
Word element => {'size': 1.0, 'large': 1.0, 'he': 1.0, 'of': 1.0, 'great': 1.0, 'absolutely': 1.0, 'love': 1.0, 'grows': 1.0, 'as': 1.0, 'since': 1.0, 'them': 2.0, 'daily': 1.0, 'the': 2.0, 'my': 1.0, 'use': 1.0, 'birth': 1.0, 'is': 1.0, 'son': 1.0}
Word element => {'too': 1.0, 'sheet': 1.0, 'crib': 1.0, 'buying': 1.0, 'youngest': 1.0, 'our': 1.0, 'print': 1.0, 'brave': 1.0, 'liam': 1.0, 'store': 1.0, 'box': 1.0, 'purchased': 1.0, 'up': 1.0, 'set': 2.0, 'what': 1.0, 'have': 1.0, 'this': 1.0, 'we': 1.0, 'at': 1.0, 'blankets': 1.0, 'softer': 1.0, 'and': 2.0, 'ended': 1.0, 'anais': 1.0, 'is': 1.0, 'aden': 1.0, 'target': 1.0, 'but': 1.0, 'than': 1.0, 'a': 3.0, 'the': 3.0, 'for': 1.0, 'love': 2.0, 'can': 1.0, 'buy': 1.0, 'i': 2.0, 'son': 1.0, 'big': 1.0, 'from': 1.0, 'larger': 1.0, 'yiu': 1.0}
Word element => {'recommend': 1.0, 'would': 1.0, 'buy': 1.0, 'extra': 1.0, 'worth': 1.0, 'additional': 1.0, 'packs': 1.0, 'smaller': 1.0, 'listed': 1.0, 'less': 1.0, 'there': 1.0, 'ordering': 1.0, 'attention': 1.0, 'more': 1.0, 'is': 2.0, 'personally': 1.0, 'her': 1.0, 'online': 1.0, 'money': 1.0, 'but': 1.0, 'blankets': 1.0, 'and': 3.0, 'me': 1.0, 'sure': 1.0, 'get': 2.0, 'expensive': 2.0, 'love': 2.0, 'for': 1.0, 'daughter': 1.0, 'again': 1.0, 'you': 1.0, 'when': 2.0, 'had': 1.0, 'hunted': 1.0, 'only': 1.0, 'she': 1.0, 'it': 1.0, 'with': 1.0, 'they': 3.0, 'some': 2.0, 'these': 3.0, 'the': 7.0, 'my': 3.0, 'handed': 1.0, 'down': 2.0, 'favorite': 1.0, 'of': 1.0, 'i': 5.0, 'large': 1.0, 'soft': 1.0, 'are': 4.0, 'blanket': 1.0, 'that': 1.0, 'pay': 1.0, 'still': 1.0, 'son': 1.0, 'patterns': 1.0, 'to': 4.0, 'as': 1.0, 'well': 1.0, 'size': 3.0, 'than': 1.0, 'sister': 1.0, 'breathable': 1.0, 'seems': 1.0, 'them': 1.0, 'softer': 1.0, 'wash': 1.0, 'highly': 1.0, 'material': 1.0, 'every': 1.0, 'think': 1.0, '3': 1.0, 'make': 1.0}
Word element => {'beautiful': 1.0, 'my': 1.0, 'on': 1.0, 'compliments': 1.0, 'of': 1.0, 'tons': 1.0, 'get': 1.0, 'warm': 1.0, 'that': 1.0, 'summer': 1.0, 'folded': 1.0, 'in': 1.0, 'perfect': 1.0, 'for': 2.0, 'love': 2.0, 'insulation': 1.0, 'mine': 1.0, 'nursing': 1.0, 'especially': 1.0, 'arizona': 1.0, 'i': 4.0, 'they': 3.0, 'these': 1.0, 'the': 1.0, 'around': 1.0, 'more': 2.0, 'carry': 1.0, 'and': 4.0, 'will': 1.0, 'stroller': 1.0, 'definitely': 1.0, 'be': 2.0, 'keep': 1.0, 'a': 5.0, 'chill': 1.0, 'blankets': 1.0, 'can': 1.0, 'breathable': 1.0, 'because': 1.0, 'so': 1.0, 'getting': 1.0, 'swaddle': 1.0, 'large': 1.0, 'yet': 1.0, 'everywhere': 1.0, 'use': 1.0, 'it': 1.0, 'to': 1.0, 'as': 1.0, 'are': 2.0, 'blanket': 2.0, 'enough': 1.0, 're': 1.0, 'off': 1.0, 'cover': 2.0}
Word element => {'cute': 1.0, 'design': 1.0, 'great': 1.0, 'glad': 1.0, 'm': 1.0, 'i': 2.0, 'very': 2.0, 'little': 1.0, 'stretch': 1.0, 'breathe': 1.0, 'but': 1.0, 'bit': 1.0, 'so': 1.0, 'able': 1.0, 'material': 1.0, 'cotton': 1.0, 'be': 2.0, 'she': 2.0, 'is': 3.0, 'there': 1.0, 'of': 2.0, 'loves': 1.0, 'sun': 1.0, 'use': 1.0, 'soft': 1.0, 'perfect': 1.0, 'my': 1.0, 'also': 1.0, 'will': 1.0, 'doesn': 1.0, 'quality': 1.0, 'baby': 1.0, 'only': 1.0, 'do': 1.0, 'get': 1.0, 'girl': 1.0, 'off': 1.0, 'cover': 1.0, 'these': 3.0, 'job': 1.0, 'the': 4.0, 'to': 3.0, 'swaddled': 1.0, 'for': 1.0, 'several': 1.0, 'bought': 1.0, 'months': 1.0, 't': 1.0, 'a': 3.0, 'we': 1.0, 'carseat': 1.0, 'her': 1.0, 'lot': 1.0, 'keep': 1.0, 'because': 1.0, 'not': 1.0, 'extremely': 1.0, 'thick': 2.0, 'and': 3.0, 'too': 1.0, 'hot': 1.0, 'they': 4.0, 'blanket': 1.0, 'are': 2.0}
Word element => {'out': 1.0, 'arms': 1.0, 'stretch': 1.0, 'easily': 1.0, 'can': 1.0, 'is': 1.0, 'flexible': 1.0, 'the': 1.0, 'swaddling': 1.0, 'very': 1.0, 'good': 2.0, 'product': 1.0, 'however': 1.0, 'soft': 1.0, 'for': 2.0, 'enough': 1.0, 'skin': 1.0, 'because': 1.0, 'baby': 3.0, 'material': 1.0, 'not': 1.0, 'so': 1.0}
Word element => {'nurse': 1.0, 'waistband': 1.0, 'pull': 1.0, 'ups': 1.0, 'nursing': 1.0, 'suppose': 1.0, 'distracting': 1.0, 'go': 1.0, 'everywhere': 1.0, 'us': 1.0, 'take': 1.0, 'hotel': 1.0, 'stay': 1.0, 'having': 1.0, 'trips': 1.0, 'helpful': 1.0, 'an': 1.0, 'been': 1.0, 'has': 1.0, 'stays': 1.0, 'minutes': 1.0, 'play': 1.0, 'toy': 1.0, 'do': 1.0, 'want': 2.0, 'don': 3.0, 'going': 1.0, 're': 2.0, 'great': 1.0, 'if': 2.0, 'boy': 1.0, 'counting': 1.0, '13': 1.0, 'from': 3.0, 'well': 1.0, 'receiving': 1.0, 'typical': 1.0, 'than': 2.0, 'bigger': 1.0, 'much': 2.0, 'name': 1.0, 'birds': 1.0, 'cried': 1.0, 'with': 4.0, 'regulatory': 1.0, 'size': 2.0, 'babies': 2.0, 'bellies': 1.0, 'ability': 1.0, 'continue': 1.0, 'motor': 1.0, 'fold': 1.0, 'love': 1.0, 'development': 1.0, 'technique': 4.0, 'keeps': 2.0, 'pain': 1.0, 'the': 22.0, 'covered': 1.0, 'of': 7.0, 'swaddled': 6.0, 'review': 1.0, 'soothe': 1.0, 's': 5.0, 'fabulously': 1.0, 'was': 2.0, 'swaddling': 7.0, 'would': 1.0, 'on': 8.0, 'realize': 1.0, 'evidence': 1.0, 'he': 4.0, 'him': 9.0, 'kept': 1.0, 'figured': 2.0, 'improved': 1.0, 'then': 3.0, 'crying': 1.0, 'we': 8.0, 'neuromuscular': 1.0, 'months': 6.0, 'physiologic': 1.0, 'get': 2.0, 'pediatrics': 1.0, 'right': 3.0, 'to': 22.0, 'preemie': 1.0, 'first': 3.0, 'basic': 1.0, 'sights': 1.0, 'that': 9.0, 'were': 2.0, '7': 1.0, 'too': 2.0, 'weight': 1.0, 'up': 3.0, 'says': 1.0, 'few': 2.0, 'this': 3.0, 'reason': 2.0, 'longer': 4.0, 'looking': 1.0, 'room': 1.0, 'are': 4.0, 'my': 5.0, 'lightweight': 1.0, 'so': 7.0, 'adapt': 1.0, 'knew': 1.0, 'none': 1.0, 'these': 6.0, 'once': 1.0, 'didn': 3.0, 'ordered': 1.0, 'excessively': 1.0, 'distress': 1.0, 'three': 3.0, 'when': 8.0, 'some': 1.0, 'roll': 1.0, 'i': 14.0, 'ride': 1.0, 'group': 1.0, 'slept': 1.0, 'how': 6.0, 'onto': 1.0, 'our': 3.0, 'stroller': 3.0, 'light': 1.0, 'received': 1.0, 'had': 1.0, 'break': 1.0, 'but': 6.0, 'wanted': 1.0, 'blankets': 8.0, 'night': 1.0, 'you': 2.0, 'they': 7.0, 't': 6.0, 'fit': 1.0, 'everything': 1.0, 'regular': 2.0, 'them': 7.0, 'arouse': 1.0, 'baby': 7.0, 'about': 2.0, 'snoozes': 1.0, 'busy': 1.0, 'cover': 3.0, 'will': 1.0, 'canary': 3.0, 'massage': 1.0, 'better': 1.0, 'reported': 1.0, '8': 1.0, 'sleep': 3.0, 'back': 1.0, 'figure': 1.0, 'in': 7.0, 'seat': 2.0, 'out': 8.0, 'infants': 3.0, 'toasty': 1.0, 'work': 1.0, 'hard': 1.0, 'sleeping': 1.0, 'over': 2.0, 'for': 7.0, 'unbuttoning': 1.0, 'self': 1.0, 'settle': 1.0, 'instead': 1.0, 'swaddle': 5.0, 'especially': 1.0, 'use': 2.0, 'keep': 1.0, 'lying': 1.0, 'down': 2.0, 'its': 3.0, 'seems': 1.0, 'risk': 1.0, 'fabulous': 1.0, 'shirt': 1.0, 'same': 2.0, 'stretches': 2.0, 'have': 1.0, 'laying': 1.0, 'more': 1.0, 'perfect': 1.0, 'belly': 2.0, 'organization': 1.0, 'without': 1.0, 'sids': 1.0, 'hence': 1.0, 'not': 3.0, 'different': 1.0, 'search': 1.0, 'youtube': 1.0, 'double': 4.0, 'note': 1.0, 'specialty': 1.0, 'journal': 1.0, 'thin': 1.0, 'fine': 1.0, 'like': 3.0, 'lot': 1.0, 'miracle': 1.0, 'signals': 1.0, 'son': 1.0, 'somewhat': 1.0, 'until': 1.0, 'blanket': 4.0, 'hit': 1.0, 'a': 15.0, 'nap': 6.0, 'those': 1.0, 'worked': 2.0, 'little': 1.0, 'and': 13.0, 'warm': 1.0, 'tried': 1.0, 'just': 3.0, 'hated': 1.0, 'anais': 1.0, 'less': 3.0, 'as': 1.0, 'any': 1.0, 'draping': 1.0, 'all': 3.0, 'other': 1.0, 'rather': 1.0, 'compared': 1.0, 'parents': 1.0, 'thing': 1.0, 'situation': 1.0, 'lead': 1.0, 'at': 2.0, 'can': 5.0, 'is': 3.0, 'aden': 1.0, 'till': 1.0, 'around': 1.0, 'their': 1.0, 'while': 2.0, 'safe': 1.0, 'also': 3.0, 'need': 1.0, 'or': 3.0, 'world': 1.0, 'cage': 1.0, 'give': 2.0, 'second': 1.0, 'lie': 1.0, 'reach': 1.0, 'it': 4.0, 'be': 1.0, 'interesting': 1.0, 'car': 3.0, 'time': 2.0, 'top': 2.0}
Word element => {'much': 1.0, 'options': 1.0, 'color': 1.0, 'many': 1.0, 'as': 1.0, 'stick': 1.0, 'compare': 1.0, 'not': 2.0, 'did': 1.0, 'aden': 1.0, 'were': 1.0, 'circles': 1.0, 'anais': 1.0, 'ended': 1.0, 'stripes': 1.0, 'but': 2.0, 'up': 1.0, 'how': 1.0, 'softness': 1.0, 'so': 2.0, 'to': 2.0, 'was': 1.0, 'rough': 1.0, 'i': 2.0, 'in': 2.0, 'disappointed': 1.0, 'have': 1.0, 'fabric': 1.0, 'bamboo': 2.0, 'gets': 1.0, 'by': 1.0, 'coarse': 1.0, '4': 1.0, 'on': 1.0, 'nicer': 1.0, 'excited': 1.0, 'with': 1.0, 'these': 2.0, 'the': 3.0, 'super': 1.0, 'blankets': 1.0, 'two': 1.0}
Word element => {'after': 1.0, 'hospital': 1.0, 'm': 1.0, 'little': 1.0, 'pink': 1.0, 'bigger': 1.0, 'easier': 1.0, 'than': 1.0, 'much': 1.0, 'to': 2.0, 'white': 1.0, 'them': 1.0, 'work': 1.0, 'blue': 1.0, 'ones': 1.0, 'lines': 1.0, 'the': 2.0, 'for': 1.0, 'one': 1.0, 'love': 1.0, 'with': 1.0, 'delivery': 1.0, 'and': 1.0, 'softer': 1.0, 'stretchier': 1.0, 'took': 1.0, 'i': 1.0, 'glad': 1.0, 'we': 1.0}
Word element => {'same': 1.0, 'virtually': 1.0, 'organics': 1.0, 'with': 1.0, 'four': 1.0, 'organic': 1.0, 'aden': 2.0, 'star': 1.0, 'swaddle': 3.0, 'so': 1.0, 'packs': 1.0, 'haveaden': 1.0, 'children': 1.0, 'on': 2.0, '4': 2.0, 'i': 3.0, 'am': 1.0, 'and': 2.0, 'determined': 1.0, 'much': 1.0, 'only': 1.0, 'pack': 2.0, 'far': 1.0, 'use': 1.0, 'wraps': 1.0, 'sky': 1.0, 'to': 1.0, 'word': 1.0, 'wishing': 1.0, 'blue': 1.0, 'quality': 1.0, 'are': 2.0, 'andaden': 1.0, 'the': 3.0, 'wrap': 1.0, 'my': 1.0, 'paparazzi': 1.0, 'purchasing': 1.0, 'expensive': 1.0, 'for': 1.0, 'many': 1.0, 'plan': 1.0, 'more': 2.0, 'anais': 4.0, 'because': 1.0, 'they': 1.0, 'very': 1.0, 'stick': 1.0, 'good': 1.0, 'just': 1.0, 'large': 1.0, 'swaddling': 1.0, 'muslin': 1.0, 'of': 1.0, 'one': 1.0, 'advice': 1.0, 'though': 1.0}
Word element => {'pillow': 1.0, 'nursing': 1.0, 'what': 1.0, 'however': 1.0, 'swaddle': 2.0, 'plus': 1.0, 'definite': 1.0, 'a': 3.0, 'is': 1.0, 'infancy': 1.0, 'amazing': 1.0, 'light': 1.0, 'was': 1.0, 'big': 1.0, 'to': 2.0, 'as': 2.0, 'blankets': 2.0, 'me': 1.0, 'are': 4.0, 'lightweight': 1.0, 'cuddly': 1.0, 'becoming': 1.0, 'they': 3.0, 'shades': 1.0, 'cover': 1.0, 'enough': 2.0, 'incredibly': 1.0, 'baby': 1.0, 'soft': 1.0, 'and': 2.0, 'sold': 1.0, 'babies': 1.0, 'that': 1.0, 'use': 1.0, 'during': 1.0, 'hot': 1.0, 'these': 2.0, 'texas': 1.0, 'overheated': 1.0, 'i': 1.0, 'summers': 1.0, 'the': 2.0, 'without': 1.0, 'throughout': 1.0, 'he': 1.0, 'grows': 1.0, 'am': 1.0, 'which': 1.0, 'using': 1.0, 'sun': 1.0}
Word element => {'reasonable': 1.0, 'package': 1.0, 'also': 1.0, 'eye': 1.0, 'keep': 1.0, 'money': 1.0, 'line': 1.0, 'bottom': 1.0, 'after': 1.0, 'even': 1.0, 'dryer': 1.0, 'worth': 1.0, 'lint': 1.0, 'washing': 1.0, 'dozen': 1.0, 'each': 2.0, 'with': 1.0, 'softer': 1.0, 'stitched': 1.0, 'nicely': 1.0, 'seams': 1.0, 'do': 1.0, 'general': 1.0, 'go': 1.0, '14': 1.0, 'currently': 1.0, 'nighttime': 1.0, 'both': 1.0, 'swaddled': 1.0, 'once': 1.0, '47': 1.0, 'blankets': 1.0, 'you': 2.0, '4': 1.0, 'daytime': 1.0, 'seen': 1.0, 'to': 5.0, 'as': 1.0, 'sleep': 1.0, 'still': 1.0, 'if': 1.0, 'same': 1.0, 'want': 1.0, 'responds': 1.0, 'washes': 1.0, 'weeks': 1.0, 'swaddling': 2.0, 'soft': 1.0, 'instructional': 1.0, 'thinner': 1.0, 'by': 1.0, 'of': 1.0, 'the': 14.0, 'different': 1.0, 'square': 2.0, 'naps': 1.0, 'set': 1.0, 'used': 1.0, 'comments': 1.0, 'tad': 1.0, 'less': 2.0, 'her': 1.0, 'smaller': 2.0, 'so': 3.0, 'time': 3.0, 'my': 3.0, 'were': 1.0, 'will': 1.0, 'seems': 2.0, 'but': 3.0, 'work': 1.0, 'on': 4.0, 'sleeping': 1.0, 'they': 2.0, 'double': 3.0, 'them': 1.0, 'target': 1.0, 'original': 1.0, 'sheds': 1.0, '44': 1.0, 'big': 1.0, 'check': 1.0, 'purchased': 1.0, 'maybe': 1.0, 'usually': 1.0, 'size': 4.0, 'functionally': 1.0, 'fabric': 1.0, 'for': 5.0, 'difference': 1.0, 'and': 4.0, 'description': 1.0, 'class': 1.0, 'little': 2.0, 'discount': 1.0, 'at': 3.0, 'is': 9.0, 'i': 6.0, 'well': 1.0, 'a': 8.0, 've': 1.0, 'lot': 1.0, 'ones': 1.0, 'are': 2.0, 'first': 2.0, 'described': 1.0, 'amazon': 1.0, 'from': 3.0, 'looked': 1.0, 'sellers': 1.0, 'swaddle': 5.0, 'stellalouella': 1.0, 'effective': 1.0, 'in': 3.0, 'posted': 1.0, 'packaging': 1.0, 'learned': 1.0, 'get': 2.0, 'about': 2.0, 'there': 2.0, 'other': 1.0, 'an': 4.0, 'finally': 1.0, 'price': 1.0, 'video': 1.0, 'just': 1.0, 'tube': 1.0, 'thought': 1.0, 'it': 4.0, 'baby': 1.0, 'she': 2.0, 'signal': 1.0, 'like': 2.0, 'cannot': 1.0, 'bit': 1.0, 'however': 1.0, 'know': 1.0, 'expensive': 1.0, 'uncomfortable': 1.0, 'daughter': 2.0, 'out': 1.0, 'your': 1.0, 'eaily': 1.0, 'rest': 1.0}
Word element => {'my': 1.0, 'am': 1.0, 'stuff': 1.0, 'on': 3.0, 'lot': 1.0, 'well': 1.0, 'they': 2.0, 'plus': 1.0, 'face': 1.0, 'baby': 1.0, 'because': 1.0, 'these': 2.0, 'the': 1.0, 'must': 1.0, 'have': 2.0, 'able': 1.0, 'let': 1.0, 'spits': 1.0, 'are': 4.0, 'amazing': 1.0, 'clothing': 1.0, 'a': 2.0, 's': 2.0, 'around': 1.0, 'it': 2.0, 'all': 1.0, 'to': 4.0, 'floor': 1.0, 'his': 1.0, 'doing': 1.0, 'soft': 1.0, 'up': 1.0, 'wash': 1.0, 'in': 3.0, 'very': 1.0, 'great': 1.0, 'big': 1.0, 'i': 2.0, 'four': 1.0, 'blankets': 1.0, 'alternate': 1.0, 'can': 1.0, 'lay': 1.0, 'one': 1.0, 'opinion': 1.0, 'for': 1.0, 'whatever': 1.0, 'be': 1.0, 'him': 1.0, 'and': 4.0, 'play': 1.0, 'drools': 1.0, 'room': 1.0}
Word element => {'do': 1.0, 'continue': 1.0, 'will': 1.0, 'light': 1.0, 'son': 1.0, 'for': 1.0, 'one': 1.0, 'use': 1.0, 'got': 1.0, 'so': 1.0, 'needs': 1.0, 'in': 1.0, 'other': 2.0, 'when': 2.0, 'rags': 1.0, 'i': 3.0, 'blankets': 1.0, 'them': 1.0, 'out': 1.0, 'covers': 1.0, 'fabulous': 1.0, 'him': 1.0, 'to': 3.0, 'as': 2.0, 'our': 1.0, 'these': 2.0, 'the': 1.0, 'they': 1.0, 'blanket': 1.0, 'are': 1.0, 'he': 1.0, 'gift': 1.0, 'forget': 1.0, 'keep': 1.0, 'if': 1.0, 'recommended': 1.0, 'shower': 1.0, 'of': 1.0, 'sun': 1.0, 'burp': 1.0, 'we': 1.0, 'a': 2.0, 's': 1.0, 'his': 1.0, 'stroller': 1.0, 'nursing': 1.0, 'have': 1.0, 'my': 1.0, 'many': 1.0, 'and': 3.0, 'moms': 1.0}
Word element => {'soft': 1.0, 'you': 1.0, 'months': 1.0, '65281': 1.0, 'use': 1.0, 'than': 1.0, 'i': 1.0, 'bought': 1.0, 'to': 1.0, '1': 1.0, 'has': 1.0, 'baby': 1.0, 'been': 1.0, '36': 1.0, 'used': 1.0, 'more': 3.0, 'dollars': 1.0, 'the': 3.0}
Word element => {'on': 1.0, 'these': 2.0, 'my': 2.0, 'lightweight': 1.0, 'the': 1.0, 'other': 1.0, 'wraps': 1.0, 'swaddled': 1.0, 'newborn': 1.0, 'also': 2.0, 'lb': 1.0, 'sun': 1.0, 'i': 2.0, 'blankets': 1.0, 'very': 1.0, 'as': 1.0, '9': 1.0, 'love': 1.0, 'for': 2.0, 'where': 1.0, 'when': 2.0, 'they': 2.0, 'won': 1.0, 'well': 1.0, 'walks': 1.0, 'going': 1.0, 't': 1.0, 'a': 1.0, 'wrapped': 1.0, 'large': 1.0, 'smaller': 1.0, 'so': 1.0, 'are': 2.0, 'stay': 1.0, 'around': 1.0, 'squirms': 1.0, 'her': 1.0, 'and': 2.0, 'absolutely': 1.0, 'arms': 1.0, 'she': 1.0, 'stays': 1.0, 'nice': 1.0, 'climate': 1.0, 'warmer': 1.0, 'use': 1.0, 'legs': 1.0, 'cover': 1.0, 'stroller': 1.0}
Word element => {'of': 1.0, 'king': 1.0, 'good': 2.0, 'are': 1.0, 'they': 2.0, 'if': 1.0, 'some': 1.0, 'car': 1.0, 'his': 1.0, 'him': 1.0, 'seat': 1.0, 'carrying': 1.0, 'william': 1.0, 'while': 1.0, 'grandchild': 1.0, 're': 1.0, 'my': 2.0, 'is': 1.0, 'in': 4.0, 'the': 2.0, 'these': 1.0, 'due': 1.0, 'have': 1.0, 'lol': 1.0, 'saw': 1.0, 'was': 1.0, 'had': 1.0, 'to': 2.0, 'i': 3.0, 'daughter': 1.0, 'when': 1.0, 'bought': 1.0, 'prince': 2.0, 'for': 2.0, 'one': 1.0, 'future': 2.0, 'deliver': 1.0, 'law': 1.0, 'a': 1.0, 'baby': 1.0, 'october': 1.0, 'enough': 2.0, 'new': 1.0, 'george': 1.0, 'england': 1.0, 'wrapped': 1.0}
Word element => {'price': 1.0, 'half': 1.0, 'and': 1.0, 'softer': 1.0, 'much': 1.0, 'so': 1.0, 'but': 1.0, 'were': 1.0, 'that': 1.0, 'thought': 1.0, 'they': 2.0, 'brand': 1.0, 'like': 1.0, 'as': 2.0, 'size': 1.0, 'not': 1.0, 'would': 1.0, 'blankets': 1.0, 'at': 1.0, 'are': 1.0, 'these': 1.0, 'the': 3.0, 'i': 3.0, 'found': 1.0, 'soft': 1.0, 'be': 1.0, 'store': 1.0, 'a': 1.0, 'off': 1.0, 'of': 1.0, 'set': 1.0}
Word element => {'complaints': 1.0, 'they': 1.0, 'requested': 1.0, 'have': 1.0, 'this': 1.0, 'with': 1.0, 'called': 1.0, 'dad': 1.0, 'on': 1.0, 'listed': 1.0, 'the': 2.0, 'that': 1.0, 'new': 2.0, 'baby': 1.0, 'any': 1.0, 'and': 1.0, 'registry': 1.0, 'not': 1.0, 'was': 1.0, 'mom': 1.0}
Word element => {'the': 1.0, 'in': 1.0, 'for': 1.0, 'great': 1.0, 'prints': 1.0, 'live': 1.0, 'with': 1.0, 'this': 1.0, 'liked': 1.0, 'product': 1.0, 'always': 1.0, 'soft': 1.0, 'hot': 1.0, 'and': 1.0, 'large': 1.0, 'so': 1.0, 'fun': 1.0, 'many': 1.0, 'i': 1.0, 'climate': 1.0, 'uses': 1.0}
Word element => {'find': 1.0, 'easier': 1.0, 'had': 1.0, 'wish': 1.0, 'trying': 1.0, 'be': 3.0, 'been': 2.0, 'that': 5.0, 'box': 1.0, 'have': 2.0, 'found': 2.0, 'this': 1.0, 'information': 2.0, 'piece': 1.0, 's': 2.0, 't': 1.0, 'now': 1.0, 'to': 9.0, 'all': 1.0, 'wanted': 2.0, 'of': 5.0, 'the': 16.0, 'these': 1.0, 'mention': 2.0, 'today': 1.0, 'about': 1.0, 'and': 4.0, 'blankets': 3.0, 'write': 1.0, 'but': 2.0, 'by': 1.0, 'just': 1.0, 'exactly': 1.0, 'world': 1.0, 'come': 1.0, 'hard': 1.0, 'looked': 1.0, 'arrival': 1.0, 'are': 4.0, 'described': 1.0, 'first': 2.0, 'shortly': 1.0, 'washing': 1.0, 'buy': 1.0, 'i': 11.0, 'review': 1.0, 'country': 1.0, 'them': 1.0, 'baby': 1.0, 'quality': 1.0, 'products': 2.0, 'child': 1.0, 'product': 1.0, 'they': 1.0, 'time': 1.0, 'could': 1.0, 'will': 1.0, 'manufactured': 1.0, 'a': 3.0, 'origins': 1.0, 'domestically': 1.0, 'emailed': 1.0, 'through': 1.0, 'as': 2.0, 'anais': 1.0, 'only': 1.0, 'company': 2.0, 'website': 1.0, 'my': 1.0, 'australian': 1.0, 'designed': 2.0, 'in': 4.0, 'received': 1.0, 'us': 2.0, 'diligent': 1.0, 'ask': 1.0, 'aden': 1.0, 'manufacture': 2.0, 'prepare': 1.0, 'certainly': 1.0, 'if': 1.0, 'more': 1.0, 'research': 1.0, 'didn': 1.0, 'we': 1.0, 'take': 1.0, 'step': 1.0, 'although': 1.0, 'was': 1.0, 'little': 1.0, 'end': 1.0, 'read': 1.0, 'our': 1.0, 'disappointed': 1.0, 'made': 1.0, 'for': 3.0, 'china': 1.0, 'on': 1.0, 'it': 1.0, 'not': 1.0, 'appear': 1.0}
Word element => {'our': 1.0, 'sheets': 1.0, 'even': 1.0, 'material': 1.0, 'and': 2.0, 'blankets': 1.0, 'as': 2.0, 'nursing': 1.0, 'nice': 1.0, 'cradle': 1.0, 'they': 1.0, 'light': 1.0, 'is': 1.0, 'these': 1.0, 'the': 2.0, 'are': 1.0, 'love': 1.0, 'i': 1.0, 'or': 1.0, 'in': 1.0, 'perfect': 1.0, 'use': 1.0, 'size': 1.0, 'large': 1.0, 'swaddle': 1.0, 'enough': 1.0, 'to': 2.0, 'covers': 1.0}
Word element => {'be': 1.0, 'instantly': 1.0, 'fussy': 1.0, 'little': 1.0, 'time': 1.0, 'would': 1.0, 'him': 1.0, 'happy': 1.0, 'blankets': 1.0, 'and': 1.0, 'up': 1.0, 'very': 1.0, 'as': 2.0, 'was': 1.0, 'to': 2.0, 'newborn': 1.0, 'recommended': 1.0, 'soon': 1.0, 'absolutely': 1.0, 'love': 2.0, 'moms': 1.0, 'easy': 1.0, 'swaddle': 1.0, 'a': 1.0, 'wrap': 1.0, 'wrapped': 1.0, 'these': 1.0, 'new': 1.0, 'he': 2.0, 'with': 1.0, 'them': 2.0, 'calm': 1.0, 'any': 1.0, 'baby': 1.0, 'we': 1.0}
Word element => {'time': 1.0, 'baby': 1.0, 'blow': 1.0, 'periods': 1.0, 'breastfed': 1.0, 'myself': 1.0, 'wrap': 1.0, 'find': 1.0, 'than': 1.0, 'up': 3.0, 'set': 1.0, 'sent': 1.0, 'obviously': 1.0, 'rougher': 1.0, 'a': 2.0, 't': 3.0, 'purchased': 1.0, 'what': 1.0, 'out': 1.0, 'newborn': 1.0, 'long': 1.0, 'on': 2.0, 'were': 3.0, 'muslin': 1.0, 'the': 5.0, 'of': 2.0, 'designs': 3.0, 'blankets': 2.0, 'work': 1.0, 'but': 1.0, 'soft': 1.0, 'they': 4.0, 'as': 2.0, 'drying': 1.0, 'diaper': 1.0, 'cloths': 1.0, 'bought': 1.0, 'them': 6.0, 'needing': 1.0, 'and': 5.0, 'perfectly': 1.0, 'with': 1.0, 'sale': 1.0, 'have': 1.0, 'i': 9.0, 'two': 1.0, 'second': 1.0, 'immediately': 1.0, 'even': 2.0, 'didn': 1.0, 'guess': 1.0, 'swaddles': 1.0, 'skin': 1.0, 'swaddle': 3.0, 'so': 3.0, 'to': 3.0, 'against': 1.0, 'for': 3.0, 'wanted': 1.0, 'stars': 1.0, 'after': 1.0, 'washing': 1.0, 'only': 1.0, 'much': 2.0, 'do': 1.0, 'because': 4.0, 'that': 1.0, 'gave': 1.0, 'spitting': 1.0, 'frequently': 1.0, 'want': 1.0, 'consider': 1.0, 'wrapping': 1.0, 'cute': 1.0, 'are': 2.0, 'me': 1.0, 'my': 1.0, 'these': 1.0, 'tightly': 1.0, 'occasional': 1.0, 'in': 1.0, 'packed': 1.0, 'back': 1.0, 'bother': 1.0, 'amazon': 1.0, 'around': 1.0, 'burp': 1.0, 'which': 1.0, 'also': 1.0, 'zulily': 1.0, 'bibs': 1.0, 'kind': 1.0, 'rough': 1.0, 'it': 1.0, 'doesn': 1.0, 'won': 1.0, 'be': 1.0, 'wrapped': 1.0, 'wash': 1.0, 'her': 1.0}
Word element => {'definitely': 1.0, 'light': 1.0, 'is': 1.0, 'material': 1.0, 'they': 2.0, 'newborn': 2.0, 'mom': 1.0, 'anais': 1.0, 'i': 5.0, 'absolutely': 1.0, 'love': 2.0, 'for': 1.0, 'the': 4.0, 'a': 4.0, 't': 2.0, 'baby': 3.0, 'them': 2.0, 'started': 1.0, 'know': 1.0, 'giving': 1.0, 'too': 1.0, 'and': 2.0, 'get': 2.0, 'aden': 1.0, 'great': 1.0, 'big': 1.0, 'must': 1.0, 'have': 2.0, 'gifts': 1.0, 'blanket': 1.0, 'are': 2.0, 'necessity': 1.0, 'cold': 1.0, 'when': 2.0, 'again': 1.0, 'super': 1.0, 'swaddling': 1.0, 'even': 1.0, 'used': 1.0, 'as': 1.0, 'to': 1.0, 'doesn': 2.0, 'was': 1.0, 'has': 1.0, 'well': 1.0, 'hot': 2.0, 'or': 1.0, 'covers': 1.0, 'it': 2.0, 'that': 2.0, 'breastfeeding': 1.0, 'so': 2.0, 'there': 1.0}
Word element => {'gift': 1.0, 'summer': 1.0, 'for': 1.0, 'esp': 1.0, 'great': 1.0, 'awesome': 1.0, 'the': 1.0, 'are': 1.0, 'this': 1.0}
Word element => {'have': 1.0, 'wraps': 1.0, 'best': 2.0, 'definitely': 1.0, 'light': 1.0, 'covers': 1.0, 'them': 1.0, 'for': 1.0, 'love': 1.0, 'swaddling': 1.0, 'cloths': 1.0, 'in': 2.0, 'seen': 1.0, 'looking': 1.0, 'without': 1.0, 'like': 1.0, 'and': 1.0, 'blankets': 2.0, 'the': 2.0, 'these': 1.0, 'they': 1.0, 'after': 1.0, 'but': 1.0, 'stroller': 1.0, 'work': 1.0, 'will': 1.0, 'baby': 2.0, 'colors': 2.0, 'wonderfully': 1.0, 'are': 1.0, 'my': 1.0, 'gorgeous': 1.0, 'is': 1.0, 'i': 3.0, 'be': 1.0, 'useful': 1.0, 'expensive': 1.0, 'etc': 1.0, 'even': 1.0, 'burp': 1.0, 'think': 1.0, 'uninterested': 1.0}
Word element => {'considering': 1.0, 'if': 1.0, 'gift': 1.0, 'shower': 1.0, 'new': 1.0, 'is': 1.0, 'adorable': 1.0, 'dry': 1.0, 'for': 1.0, 'love': 1.0, 'baby': 2.0, 'them': 1.0, 'i': 5.0, 'so': 1.0, 'order': 1.0, 'after': 1.0, 'getting': 1.0, 'did': 1.0, 'swaddle': 1.0, 'you': 1.0, 'am': 1.0, 'needed': 1.0, 'easy': 1.0, 'very': 1.0, 'patterns': 1.0, 'to': 2.0, 'as': 6.0, 'glad': 1.0, 'my': 2.0, 'seeing': 1.0, 'me': 1.0, 'not': 2.0, 'reviews': 1.0, 'they': 6.0, 'believe': 1.0, 'the': 2.0, 'heavy': 1.0, 'great': 2.0, 'such': 1.0, 'these': 2.0, 'knew': 1.0, 'light': 1.0, 'cover': 1.0, 'wash': 1.0, 'aren': 1.0, 'but': 1.0, 'blankets': 1.0, 'can': 1.0, 'this': 1.0, 'perfect': 1.0, 'soft': 1.0, 'be': 1.0, 't': 1.0, 'a': 5.0, 'favorite': 1.0, 'nursing': 1.0, 'sold': 1.0, 'and': 1.0, 'too': 2.0, 'play': 1.0, 'size': 1.0, 'mat': 1.0, 'are': 8.0, 'blanket': 2.0, 'positive': 1.0, 'sun': 1.0, 'shade': 1.0}
Word element => {'needed': 1.0, 'what': 1.0, 'light': 1.0, 'large': 1.0, 'they': 1.0, 'who': 1.0, 'and': 1.0, '1': 1.0, 'around': 1.0, 'my': 1.0, 'sleeper': 1.0, 'are': 2.0, 'he': 1.0, 'with': 1.0, 'is': 1.0, 'for': 1.0, 'very': 1.0, 'son': 1.0, 'year': 1.0, 'these': 2.0, 'got': 1.0, 'loves': 1.0, 'old': 1.0, 'i': 1.0, 'dragging': 1.0, 'a': 2.0, 'blanket': 1.0, 'exactly': 1.0, 'weight': 1.0, 'him': 1.0, 'but': 2.0, 'perfect': 1.0, 'also': 1.0, 'hot': 1.0}
Word element => {'my': 1.0, 'have': 1.0, 'wish': 1.0, 'hot': 1.0, 'too': 1.0, 'prevent': 1.0, 'would': 1.0, 'weight': 1.0, 'feeding': 1.0, 'are': 2.0, 'these': 1.0, 'two': 1.0, 'blankets': 1.0, 'breast': 1.0, 'from': 1.0, 'as': 2.0, 'big': 1.0, 'really': 1.0, 'swaddling': 1.0, 'getting': 1.0, 'and': 1.0, 'impressed': 1.0, 'children': 1.0, 'first': 1.0, 'grows': 1.0, 'with': 3.0, 'had': 1.0, 'was': 1.0, 'i': 3.0, 'they': 2.0, 'your': 1.0, 'enough': 1.0, 'baby': 2.0, 'you': 1.0, 'light': 1.0, 'cover': 1.0, 'can': 1.0, 'use': 1.0, 'them': 2.0, 'a': 1.0}
Word element => {'penny': 1.0, 'every': 1.0, 'definitely': 1.0, 'are': 1.0, 'cold': 1.0, 'won': 1.0, 'know': 1.0, 'diaper': 1.0, 'out': 1.0, 'loosely': 1.0, 'warm': 1.0, 'also': 1.0, 'side': 1.0, 'the': 1.0, 'on': 1.0, 'him': 1.0, 'be': 1.0, 'worth': 1.0, 'tends': 1.0, 'isn': 1.0, 'breathable': 1.0, 'though': 2.0, 'to': 4.0, 'swaddle': 3.0, 'so': 2.0, 'soft': 1.0, 'with': 1.0, 'it': 2.0, 'stomach': 1.0, 'get': 2.0, 'and': 4.0, 'i': 4.0, 'incredibly': 1.0, 'arms': 1.0, 'absolutely': 1.0, 'love': 1.0, 'for': 1.0, 'overheating': 1.0, 'double': 1.0, 'they': 4.0, 'public': 1.0, 'standing': 1.0, 'these': 2.0, 'underneath': 1.0, 'my': 2.0, 'each': 1.0, 've': 1.0, 'in': 2.0, 'can': 1.0, 'blankets': 1.0, 'he': 2.0, 'rarely': 1.0, 'warmer': 1.0, 'use': 1.0, 'baby': 1.0, 'softer': 1.0, 'them': 1.0, 'that': 2.0, 'used': 1.0, 'even': 1.0, 'quite': 1.0, 't': 2.0, 's': 1.0, 'we': 1.0, 'a': 2.0, 'large': 2.0, 'just': 2.0, 'few': 1.0, 'times': 1.0, 'enough': 4.0, 're': 3.0, 'cover': 2.0, 'wash': 1.0, 'up': 1.0, 'while': 2.0, 'nursing': 1.0}
Word element => {'sophisticated': 1.0, 'prints': 1.0, 'swaddling': 1.0, 'size': 1.0, 'large': 1.0, 'extra': 1.0, 'i': 2.0, 'is': 2.0, 'great': 2.0, 'dc': 1.0, 'for': 2.0, 'attractive': 1.0, 'this': 1.0, 'think': 2.0, 'area': 1.0, 'are': 1.0, 'the': 3.0, 'ridiculously': 1.0, 'very': 1.0, 'and': 2.0, 'hot': 1.0, 'fabric': 1.0, 'summer': 1.0}
Word element => {'magic': 1.0, 'off': 1.0, 'right': 1.0, 'drifts': 1.0, 'perfectly': 1.0, 'work': 1.0, 's': 1.0, 'swaddle': 1.0, 'necessity': 1.0, 'absolute': 1.0, 'an': 1.0, 'still': 2.0, 'old': 1.0, '4': 1.0, 'adorable': 1.0, 'swaddled': 1.0, 'wrapped': 1.0, 'loosely': 1.0, 'gorgeous': 1.0, 'just': 1.0, 'baby': 1.0, 'beautiful': 1.0, 'photos': 1.0, 'used': 1.0, 'repeatedly': 1.0, 'have': 2.0, 'something': 1.0, 'temperature': 1.0, 'adjust': 1.0, 'like': 2.0, 'out': 1.0, 'really': 1.0, 'its': 2.0, 'as': 2.0, 'least': 1.0, 'to': 3.0, 'quality': 1.0, 'breathable': 1.0, 'than': 1.0, 'soft': 1.0, 'laying': 1.0, 'perfect': 1.0, 'so': 2.0, 'tall': 1.0, 'backdrop': 1.0, 'time': 1.0, 'us': 1.0, 'compact': 1.0, 'frequently': 1.0, 'tight': 1.0, 'swaddling': 1.0, 'bulky': 1.0, 'or': 3.0, 'need': 1.0, 'looks': 1.0, 'me': 1.0, 'those': 1.0, 'not': 1.0, 'about': 1.0, 'play': 1.0, 'cloths': 1.0, 'prevent': 1.0, 'cannot': 1.0, 'version': 1.0, 'myself': 1.0, 'now': 1.0, 'splurged': 1.0, 'on': 4.0, 'and': 13.0, 'overheating': 1.0, 'enough': 1.0, 'cover': 1.0, 'tasteful': 1.0, 'but': 2.0, '2': 1.0, 'they': 6.0, 'aren': 1.0, 'layer': 1.0, 'month': 1.0, 'same': 1.0, 'smaller': 1.0, 'use': 2.0, 're': 2.0, 'wearily': 1.0, 'receiving': 1.0, 'sun': 1.0, 'burp': 1.0, 'good': 1.0, 'are': 6.0, 'blanket': 1.0, 'i': 8.0, 'say': 1.0, 'seriously': 1.0, 'at': 1.0, 'able': 1.0, 'blankets': 3.0, 'things': 1.0, 'r': 1.0, 'with': 1.0, 'only': 1.0, 'we': 1.0, 't': 1.0, 'nursing': 2.0, '10': 1.0, 'for': 3.0, 'useless': 1.0, 'shade': 1.0, 'him': 2.0, 'it': 1.0, 'tummy': 1.0, 'them': 3.0, 'target': 1.0, 'always': 1.0, 'mats': 1.0, 'was': 2.0, 'dreamland': 1.0, 'a': 4.0, 'small': 1.0, 'hot': 3.0, 'even': 2.0, 'muslin': 1.0, 'prints': 1.0, 'the': 6.0, 'of': 1.0, 'tightly': 1.0, 'these': 8.0, 'once': 1.0, 'available': 1.0, 'babies': 1.0, 'inches': 1.0, 'cold': 1.0, 'car': 1.0, 'bedtime': 1.0, 'threw': 1.0, 'naptime': 1.0, 'ones': 1.0, 'too': 5.0, 'one': 1.0, 'he': 2.0, 'yet': 1.0, 'roll': 1.0, 'when': 1.0, 'in': 5.0, 'm': 1.0}
Word element => {'throw': 1.0, 'mouth': 1.0, 'put': 1.0, 'clutch': 1.0, 'also': 1.0, 'be': 1.0, 'loves': 1.0, 'still': 1.0, 'eight': 1.0, 'likes': 1.0, 'has': 1.0, 'months': 1.0, 'six': 1.0, 'is': 1.0, 'daughter': 1.0, 'get': 1.0, 'really': 1.0, 'size': 1.0, 'sleeping': 1.0, 'they': 1.0, 'lightweight': 1.0, 'trouble': 1.0, 'never': 1.0, 'other': 1.0, 'target': 1.0, 'before': 1.0, 'down': 1.0, 'at': 1.0, 'keep': 1.0, 'up': 5.0, 'then': 1.0, 'away': 1.0, 'now': 1.0, 'thin': 1.0, 'weeks': 1.0, 'would': 4.0, 'was': 2.0, 'have': 1.0, 'none': 1.0, 'arms': 1.0, 'about': 2.0, 'all': 1.0, 'to': 3.0, 'our': 2.0, 'received': 1.0, 'for': 2.0, 'so': 2.0, 'herself': 1.0, 'could': 1.0, 'we': 3.0, 'her': 6.0, 'different': 1.0, 'but': 1.0, 'blankets': 3.0, 'smack': 1.0, 'these': 2.0, 'some': 1.0, 'and': 10.0, 'baby': 2.0, 'them': 4.0, 'out': 1.0, 'are': 2.0, 'wrapping': 1.0, 'little': 1.0, 'just': 1.0, 'large': 1.0, 'wrapped': 3.0, 'hands': 1.0, 'the': 4.0, 'allows': 1.0, 'this': 1.0, 'swaddling': 2.0, 'minute': 1.0, 'old': 2.0, 'two': 1.0, 'i': 3.0, 'lay': 1.0, 'safe': 1.0, 'many': 1.0, 'pop': 1.0, 'you': 1.0, 'again': 1.0, 'when': 1.0, 'she': 3.0, 'in': 4.0, 'of': 3.0, 'wake': 1.0, 'born': 1.0, 'face': 1.0, 'picked': 1.0}
Word element => {'s': 1.0, 'second': 1.0, 'it': 1.0, 'absolute': 1.0, 'loves': 1.0, 'same': 1.0, 'gifted': 1.0, 'son': 1.0, 'them': 2.0, 'favorite': 1.0, 'blankets': 1.0, 'and': 1.0, 'my': 2.0, 'are': 1.0, 'the': 2.0, 'these': 1.0, 'set': 1.0, 'we': 1.0, 've': 2.0, 'everyone': 1.0, 'purchased': 1.0, 'feel': 1.0, 'i': 1.0, 'too': 1.0}
Word element => {'will': 1.0, 'gift': 1.0, 'less': 1.0, 'not': 1.0, 'small': 1.0, 'of': 1.0, 'ones': 1.0, 'bunch': 1.0, 'side': 1.0, 'pricey': 1.0, 'you': 2.0, 'call': 1.0, 'ask': 1.0, 'judgement': 1.0, 'it': 1.0, 'that': 1.0, 'disinfect': 1.0, 'like': 1.0, 'low': 1.0, 'dry': 1.0, 'spring': 1.0, 'cold': 1.0, 'instructions': 1.0, 'warm': 3.0, 'keep': 1.0, 'still': 1.0, 'in': 1.0, 'tumble': 1.0, 'down': 1.0, 're': 1.0, 'my': 1.0, 's': 1.0, 't': 2.0, 'a': 5.0, 'going': 1.0, 'more': 1.0, 'say': 1.0, 'is': 1.0, 'do': 1.0, 'get': 2.0, 'great': 1.0, 'nice': 1.0, 'love': 1.0, 'cheap': 1.0, 'for': 6.0, 'but': 2.0, 'work': 1.0, 'change': 1.0, 'blankets': 2.0, 'most': 1.0, 'are': 5.0, 'overheating': 1.0, 'they': 7.0, 'on': 3.0, 'washed': 1.0, 'guy': 1.0, 'your': 1.0, 'so': 6.0, 'larger': 1.0, 'perfect': 1.0, 'soft': 2.0, 'while': 1.0, 'the': 3.0, 'place': 1.0, 'breathable': 2.0, 'than': 2.0, 'him': 1.0, 'throwing': 1.0, 'about': 1.0, 'as': 1.0, 'to': 3.0, 'these': 3.0, 'receiving': 1.0, 'or': 2.0, 'just': 2.0, 'too': 1.0, 'and': 7.0, 'play': 1.0, 'with': 2.0, 'really': 1.0, 'material': 1.0, 'dried': 1.0, 'little': 1.0, 'very': 1.0, 'them': 4.0, 'baby': 1.0, 'softer': 1.0, 'don': 2.0, 'wash': 2.0, 'each': 1.0, 'i': 3.0, 'worry': 1.0}
Word element => {'thank': 1.0, 'wonderful': 1.0, 'their': 1.0, 'enough': 1.0, 'cannot': 1.0, 'every': 1.0, 'this': 2.0, 'from': 1.0, 'something': 1.0, 'anais': 1.0, 'dream': 1.0, 'also': 1.0, 'sheets': 1.0, 'have': 2.0, 'born': 1.0, 'pack': 1.0, 'with': 1.0, 'snuggle': 1.0, 'in': 1.0, 'wash': 1.0, 'fell': 1.0, 'since': 1.0, 'a': 2.0, 'get': 1.0, 'about': 1.0, 'security': 1.0, 'no': 1.0, 'blankets': 5.0, 'received': 1.0, 'swaddled': 1.0, 'baby': 1.0, 'softer': 1.0, 'them': 2.0, 'shower': 1.0, 'of': 1.0, 'products': 1.0, 'issies': 1.0, 'these': 2.0, 'say': 1.0, 'more': 2.0, 'the': 4.0, 'etc': 3.0, 'two': 1.0, 'i': 3.0, 'old': 1.0, 'daughters': 1.0, 'and': 6.0, 'play': 1.0, 'purchesed': 1.0, 'are': 2.0, 'company': 2.0, 'purchase': 1.0, 'my': 2.0, 'instantly': 1.0, 'stroller': 1.0, 'great': 1.0, 'twin': 1.0, 'for': 1.0, 'love': 1.0, 'were': 1.0, 'although': 1.0, 'set': 1.0, 'sets': 1.0, 'when': 1.0, 'you': 2.0, 'they': 3.0, 'girls': 1.0, 'aden': 1.0, 'now': 2.0, 'year': 1.0, 'longer': 1.0, 'being': 1.0, 'make': 1.0}
Word element => {'penny': 1.0, 'much': 1.0, 'jam': 1.0, 'jungle': 1.0, 'size': 1.0, 'first': 1.0, 'made': 1.0, 'that': 3.0, 'set': 1.0, 'second': 1.0, 'good': 1.0, 'enough': 3.0, 'breathable': 1.0, 'so': 2.0, 'things': 1.0, 'problem': 1.0, 'him': 1.0, 'swaddle': 1.0, 'able': 1.0, 'were': 2.0, 'these': 4.0, 'purchased': 2.0, 'pattern': 1.0, 'and': 5.0, 'worth': 2.0, 'say': 1.0, 'is': 2.0, 'every': 1.0, 'really': 4.0, 'messes': 1.0, 'muslin': 1.0, 'of': 4.0, 'pricey': 1.0, 'it': 3.0, '6': 1.0, 'he': 2.0, 'months': 1.0, '4': 3.0, 'i': 3.0, 'can': 1.0, 'blankets': 1.0, 'but': 2.0, 'subject': 1.0, 'love': 1.0, 'actually': 1.0, 'product': 1.0, 'for': 1.0, 'said': 1.0, 'in': 3.0, 'blanket': 1.0, 'are': 1.0, 'without': 1.0, 'the': 5.0, 'they': 2.0, 'purchase': 1.0, 'company': 1.0, 'may': 1.0, 'still': 1.0, 'seem': 1.0, 'nice': 2.0, 'big': 1.0, 'folded': 1.0, 'when': 2.0, 'large': 1.0, 'by': 1.0, 'them': 3.0, 'baby': 2.0, 'about': 2.0, 'was': 3.0, 'our': 2.0, 'sleep': 1.0, 'all': 1.0, 'to': 3.0, 'little': 2.0, 't': 2.0, 'a': 1.0, 'we': 6.0, 'easier': 1.0, 'half': 1.0, 'think': 1.0, 'make': 1.0, 'weren': 1.0, 'found': 1.0, 'this': 2.0, 'soft': 1.0, 'swaddling': 1.0, 'same': 1.0, 'being': 1.0, 'enjoyed': 1.0, 'swaddled': 1.0, 'since': 1.0}
Word element => {'wonderful': 1.0, 'little': 1.0, 'shipped': 1.0, 'with': 1.0, 'this': 1.0, 'service': 1.0, 'people': 1.0, 'price': 1.0, 'i': 4.0, 'ones': 1.0, 'such': 1.0, 'these': 2.0, 'was': 1.0, 'absouletly': 1.0, 'got': 1.0, 'an': 1.0, 'new': 1.0, 'several': 1.0, 'purchased': 1.0, 'excellent': 1.0, 'friends': 1.0, 'will': 1.0, 'unique': 1.0, 'most': 1.0, 'blankets': 2.0, 'quickly': 1.0, 'me': 1.0, 'myself': 1.0, 'received': 1.0, 'have': 1.0, 'are': 1.0, 'you': 1.0, 'again': 1.0, 'your': 1.0, 'constantly': 1.0, 'and': 3.0, 'asking': 1.0, 'for': 2.0, 'love': 1.0, 'where': 1.0, 'few': 1.0, 'by': 1.0, 'within': 1.0, 'them': 1.0, 'they': 1.0, 'thank': 1.0, 'were': 1.0, 'a': 1.0, 'buy': 1.0, 'definitely': 1.0, 'days': 1.0}
Word element => {'future': 1.0, 'in': 1.0, 'more': 1.0, 'stretchable': 1.0, 'and': 2.0, 'done': 1.0, 'so': 1.0, 'against': 1.0, 'feels': 1.0, 'enough': 1.0, 'soft': 1.0, 'i': 3.0, 'great': 1.0, 'wrap': 1.0, 'the': 4.0, 'ones': 1.0, 'these': 2.0, 'currently': 1.0, 'it': 4.0, 'skin': 1.0, 'research': 1.0, 'rave': 1.0, 'will': 1.0, 'amazing': 1.0, 'material': 1.0, 'about': 1.0, 'baby': 1.0, 'a': 1.0, 't': 1.0, 's': 3.0, 'for': 2.0, 'make': 1.0, 'your': 1.0, 'little': 1.0, 'tons': 1.0, 'super': 1.0, 've': 1.0, 'of': 2.0, 'up': 1.0, 'obvious': 1.0, 'are': 1.0, 'can': 1.0, 'most': 1.0, 'purchase': 1.0, 'recommended': 1.0, 'have': 1.0, 'll': 1.0, '8': 1.0, 'stocked': 1.0, 'definitely': 1.0}
Word element => {'too': 1.0, 'fantastic': 1.0, 'pretty': 1.0, 'cute': 1.0, 'though': 1.0, 'winter': 1.0, 'for': 1.0, 'tight': 1.0, 'here': 1.0, 'cool': 1.0, 'enough': 2.0, 'ca': 1.0, 'wrap': 1.0, 'designs': 1.0, 's': 1.0, 'up': 1.0, 'matching': 1.0, 'and': 4.0, 'to': 2.0, 'about': 1.0, 'baby': 2.0, 'their': 1.0, 'awesome': 1.0, 'in': 3.0, 'are': 2.0, 'big': 1.0, 'great': 1.0, 'the': 1.0, 'lightweight': 1.0, 'these': 1.0, 'not': 1.0, 'bibs': 1.0, 'worry': 1.0, 'norcal': 1.0, 'smothering': 1.0, 'summer': 2.0, 'said': 1.0, 'we': 1.0, 'live': 1.0, 'it': 1.0}
Word element => {'definitely': 1.0, 'would': 1.0, 'breathable': 1.0, 'soft': 1.0, 'and': 2.0, 'blankets': 1.0, 'these': 1.0, 'products': 1.0, 'i': 2.0, 'money': 1.0, 'recommend': 1.0, 'big': 1.0, 'really': 1.0, 'wish': 1.0, 'hadn': 1.0, 'are': 1.0, 'my': 1.0, 'wasted': 1.0, 'on': 1.0, 't': 1.0, 'other': 1.0, 'swaddling': 1.0}
Word element => {'seat': 1.0, 'swaddling': 1.0, 'car': 1.0, 'stroller': 1.0, 'her': 1.0, 'to': 1.0, 'we': 1.0, 'are': 1.0, 'the': 1.0, 'cover': 1.0, 'best': 1.0, 'and': 1.0, 'blankets': 1.0, 'for': 2.0, 'babes': 1.0, 'summer': 1.0, 'these': 1.0, 'used': 1.0, 'them': 1.0}
Word element => {'have': 1.0, 'comfiness': 1.0, 'should': 1.0, 'him': 1.0, 'hold': 1.0, 'we': 1.0, 'every': 1.0, 'baby': 2.0, 'as': 1.0, 'and': 1.0, 'such': 1.0, 'adore': 1.0, 'these': 1.0, 'they': 1.0, 'are': 1.0, 'so': 2.0, 'cozy': 2.0, 'for': 2.0, 'i': 1.0, 'us': 1.0}
Word element => {'enough': 1.0, 'is': 1.0, 'large': 1.0, 'also': 1.0, 'family': 1.0, 'just': 1.0, 'would': 1.0, 'what': 1.0, 'to': 1.0, 'i': 1.0, 'size': 1.0, 'needed': 1.0, 'price': 1.0, 'soft': 1.0, 'good': 1.0, 'recommend': 1.0, 'this': 1.0, 'and': 1.0, 'very': 1.0, 'friends': 1.0}
Word element => {'christmas': 1.0, 'busy': 1.0, 'right': 1.0, 'quickly': 1.0, 'pretty': 1.0, 'shipped': 1.0, 'also': 1.0, 'was': 2.0, 'great': 1.0, 'daily': 1.0, 'no': 1.0, 're': 1.0, 'designs': 1.0, 'neutral': 1.0, 'time': 1.0, 'boy': 1.0, 'in': 1.0, 'brand': 1.0, 'same': 1.0, 'had': 1.0, 'mother': 1.0, 'to': 1.0, 'gift': 1.0, 'worth': 1.0, 'cute': 1.0, 'very': 1.0, 'used': 1.0, 'set': 1.0, 'that': 1.0, 'wash': 1.0, 'recommended': 1.0, 'girls': 1.0, 'baby': 1.0, 'around': 1.0, 'is': 3.0, 'with': 3.0, 'blankie': 1.0, 'she': 1.0, 'it': 3.0, 'i': 3.0, 'one': 1.0, 'product': 1.0, 'love': 1.0, 'for': 2.0, 'my': 1.0, 'wear': 1.0, 'better': 1.0, 'they': 3.0, 'some': 1.0, 'these': 2.0, 'sure': 1.0, 'get': 1.0, 'and': 5.0, 'new': 1.0, 've': 2.0, 'super': 1.0, 'this': 1.0, 'soft': 1.0, 'money': 1.0, 'but': 2.0, 'four': 1.0, 'blankets': 1.0, 'can': 1.0, 'the': 7.0, 'without': 1.0, 'you': 1.0, 'seen': 1.0, 'live': 1.0, 'design': 2.0, '3': 1.0, 'on': 2.0, 'swaddle': 1.0, 'particular': 1.0, 'give': 1.0, 'not': 1.0, 'style': 1.0, 'of': 4.0, 'there': 1.0, 'years': 1.0, 'best': 2.0, 'tear': 1.0, 'usually': 1.0, 'going': 1.0, 'could': 1.0, 't': 1.0, 's': 1.0, 'a': 2.0, 'highly': 1.0, 'every': 1.0, 'plain': 1.0, 'white': 1.0, 'out': 1.0, 'are': 2.0, 'blanket': 1.0}
Word element => {'couple': 1.0, 'rather': 1.0, 'expensive': 1.0, 'keep': 1.0, 'd': 1.0, 'again': 1.0, 'instead': 1.0, 'order': 1.0, 'making': 1.0, 'this': 1.0, 'from': 1.0, 'parents': 1.0, 'softer': 1.0, 'fact': 1.0, 'new': 2.0, 'our': 1.0, 'just': 1.0, 'll': 1.0, 'but': 1.0, 'think': 1.0, 'definitely': 1.0, 'house': 1.0, 'do': 1.0, 'much': 1.0, 'specifically': 1.0, 'spend': 1.0, 'have': 4.0, 'as': 4.0, 'to': 8.0, 'all': 2.0, 'elsewhere': 1.0, 'could': 1.0, 'a': 5.0, 't': 4.0, 'still': 1.0, 'if': 4.0, 'same': 1.0, 'way': 2.0, 'huge': 1.0, 'than': 3.0, 'different': 1.0, 'they': 7.0, 'large': 1.0, 'between': 1.0, '35': 1.0, 'local': 1.0, 'getting': 2.0, 'and': 9.0, 'my': 1.0, 'me': 2.0, 'may': 1.0, 'sure': 1.0, 'store': 1.0, 'was': 4.0, 'size': 1.0, 'originals': 2.0, 'when': 2.0, 'what': 3.0, 'had': 2.0, '34': 4.0, 'price': 1.0, 'after': 1.0, 'sells': 1.0, 'more': 3.0, 'around': 1.0, 'these': 5.0, 'it': 1.0, 'thought': 4.0, 'already': 1.0, 'were': 2.0, 'that': 4.0, 'two': 2.0, 'here': 2.0, 'be': 2.0, 'realized': 1.0, 'ordered': 2.0, 'differentiate': 1.0, 'returning': 1.0, 'found': 1.0, 'with': 1.0, 'weren': 2.0, 'on': 5.0, 'blankets': 3.0, 'identical': 1.0, 'raves': 2.0, 'or': 1.0, 'spending': 1.0, 'others': 1.0, 'many': 1.0, 'deal': 2.0, 'baby': 2.0, 'them': 3.0, 'about': 2.0, 'version': 1.0, 'brand': 2.0, 'buying': 1.0, 'everyone': 3.0, 'which': 1.0, 'side': 2.0, 'i': 21.0, 'well': 2.0, 'see': 1.0, 'couldn': 1.0, 'not': 1.0, 'stick': 1.0, 'turned': 1.0, 'out': 1.0, 'amazing': 2.0, 'says': 1.0, 'arrived': 1.0, 'slightly': 1.0, 'tell': 1.0, 'compared': 1.0, 'reviews': 1.0, 'fine': 1.0, 'difference': 1.0, 'refer': 1.0, 'at': 2.0, 'since': 1.0, 'name': 1.0, 'surprised': 1.0, 'feel': 1.0, 'the': 16.0, 'of': 2.0, '100': 1.0, 'money': 2.0, 'bought': 2.0, 'fabric': 1.0, 'for': 5.0, 'amazon': 1.0, 'also': 1.0, 'lot': 1.0, 'ones': 2.0, 'would': 1.0, 'each': 2.0, 'gotten': 1.0, 'in': 3.0, 'hadn': 1.0, 'girl': 1.0, 're': 1.0, 'enough': 1.0, 'are': 4.0, 'inches': 2.0, 'so': 3.0, 'smaller': 3.0, 'decision': 1.0, 'wound': 1.0, 'less': 2.0, 'up': 1.0}
Word element => {'hot': 1.0, 'it': 1.0, 'of': 1.0, 'weight': 1.0, 'to': 1.0, 'my': 1.0, 'them': 1.0, 'made': 2.0, 'they': 1.0, 'the': 5.0, 'these': 1.0, 'for': 2.0, 'got': 1.0, 'size': 1.0, 'months': 1.0, 'process': 1.0, 'summer': 2.0, 'i': 1.0, 'swaddle': 1.0, 'lighter': 1.0, 'were': 1.0, 'newborn': 1.0, 'perfect': 2.0, 'easy': 1.0, 'because': 1.0, 'larger': 1.0, 'swaddling': 1.0, 'very': 1.0, 'and': 1.0}
Word element => {'out': 1.0, 'been': 1.0, 'he': 5.0, '5mth': 1.0, 'natured': 1.0, 'old': 1.0, 'i': 1.0, 'have': 1.0, 'able': 1.0, 'born': 1.0, 'are': 1.0, 'the': 3.0, 'these': 2.0, 'at': 1.0, 'since': 1.0, 'bust': 1.0, 'gift': 1.0, 'seriously': 1.0, 'best': 1.0, 'very': 1.0, 'swaddles': 1.0, 'swaddle': 2.0, 'to': 3.0, 'any': 1.0, 'baby': 1.0, 'and': 2.0, 'me': 1.0, 'active': 1.0, 'showers': 1.0, 'except': 1.0, 'also': 1.0, 'of': 2.0, 'muslin': 1.0, 'is': 2.0, 'has': 1.0, 'likes': 1.0, 'hot': 1.0, 'this': 1.0, 'allows': 1.0, 'thinness': 1.0, 'him': 1.0, 'way': 1.0, 'was': 1.0, 'doesn': 1.0, 'overheat': 1.0, 'my': 1.0, 't': 1.0, 'a': 1.0, 'go': 1.0}
Word element => {'amazon': 1.0, 'she': 1.0, 'friend': 1.0, 'for': 1.0, 'in': 1.0, 's': 2.0, 'swaddle': 1.0, 'it': 2.0, 'just': 1.0, 'my': 1.0, 'll': 1.0, 'bought': 1.0, 'be': 1.0, 'great': 1.0, 'more': 1.0, 'the': 1.0, 'mother': 1.0, 'a': 1.0, 'very': 1.0, 'thanks': 1.0, 'nice': 1.0, 'think': 1.0, 'i': 3.0, 'buy': 1.0, 'time': 1.0, 'next': 1.0}
Word element => {'be': 1.0, 'recommend': 1.0, 'won': 1.0, 'you': 1.0, 'best': 1.0, 'soft': 3.0, 'bought': 1.0, 't': 1.0, 'grandson': 1.0, 'highly': 1.0, 'and': 1.0, 'for': 1.0, 'new': 1.0, 'our': 1.0, 'these': 1.0, 'they': 1.0, 'sorry': 1.0, 'are': 1.0, 'the': 1.0}
Word element => {'friend': 1.0, 'grandchildren': 2.0, 'my': 2.0, 'cool': 1.0, 'still': 1.0, 'warm': 1.0, 'babies': 1.0, 'soft': 1.0, 'when': 2.0, 'so': 1.0, 'are': 1.0, 'and': 2.0, 'blankets': 1.0, 'hot': 1.0, 'but': 2.0, 'these': 2.0, 'it': 1.0, 'can': 1.0, 's': 2.0, 'outside': 1.0, 'wish': 1.0, 'now': 1.0, 'had': 2.0, 'for': 2.0, 'i': 4.0, 'buy': 1.0, 'them': 1.0}
Word element => {'cute': 1.0, 'carseat': 1.0, 'covers': 2.0, 'nursing': 1.0, 'still': 1.0, 'son': 1.0, 'size': 1.0, 'is': 2.0, 'thin': 1.0, 'aden': 1.0, 'smaller': 1.0, 'target': 1.0, 'that': 1.0, 'brand': 1.0, 'good': 1.0, 'different': 1.0, 'bought': 1.0, 'penny': 1.0, 'every': 1.0, 'large': 2.0, 'worried': 1.0, 'loved': 1.0, 'worth': 1.0, 'super': 1.0, 'hesitant': 1.0, 'very': 3.0, 'a': 5.0, 'lot': 1.0, 'since': 1.0, 'i': 5.0, 'softest': 1.0, 'like': 1.0, 'no': 1.0, 'about': 2.0, 'quality': 1.0, 'baby': 2.0, 'was': 2.0, 'as': 1.0, 'to': 2.0, 'how': 1.0, 'he': 2.0, 'they': 8.0, 'overheating': 1.0, 'make': 2.0, 're': 1.0, 'enough': 1.0, 'spending': 1.0, 'only': 1.0, 'much': 1.0, 'great': 2.0, 'near': 1.0, 'feel': 1.0, 'big': 1.0, 'seemed': 1.0, 'where': 1.0, 'for': 1.0, 'love': 1.0, 'what': 1.0, 'my': 2.0, 'born': 1.0, 'in': 2.0, 'also': 3.0, 'are': 7.0, 'blanket': 1.0, 'august': 1.0, 'him': 1.0, 'be': 1.0, 'swaddles': 1.0, 'swaddle': 2.0, 'receiving': 1.0, 'these': 2.0, 'the': 3.0, 'anais': 1.0, 'breathable': 1.0, 'too': 1.0, 'and': 6.0, 'soft': 1.0, 'found': 1.0, 'this': 1.0, 'perfect': 2.0, 'swaddling': 1.0, 'but': 2.0, 'blankets': 2.0}
Word element => {'loss': 1.0, 'take': 1.0, 'other': 1.0, 'enough': 1.0, 'happy': 1.0, 'that': 1.0, 'way': 1.0, 'no': 1.0, 'picnic': 1.0, 'went': 1.0, 'just': 1.0, 'not': 2.0, 'of': 3.0, 'set': 2.0, 'keep': 1.0, 'three': 2.0, 'print': 1.0, 'straight': 1.0, 'one': 2.0, 'i': 5.0, 'and': 3.0, 'excellent': 1.0, 'had': 1.0, 'to': 3.0, 'this': 1.0, 'it': 3.0, 'with': 3.0, 'but': 1.0, 'blankets': 1.0, 'four': 2.0, 'doggy': 1.0, 'fabric': 2.0, 'blanket': 3.0, 'are': 1.0, 'the': 7.0, 'flying': 1.0, 'goodwill': 1.0, 'have': 1.0, 'striped': 1.0, 'is': 2.0, 'stiff': 1.0, 'awful': 1.0, 'even': 1.0, 'swaddle': 1.0, 'softener': 1.0, 'chose': 1.0, 'after': 1.0, 'm': 1.0, '34': 2.0, 'numerous': 1.0, 'said': 1.0, 'in': 1.0, 'washes': 1.0, 'could': 1.0, 'a': 4.0, 'would': 2.0, 'use': 1.0, 'baby': 2.0, 'because': 1.0, 'maybe': 2.0, 'be': 1.0}
Word element => {'or': 1.0, 'babies': 1.0, 'useful': 1.0, 'to': 1.0, 'be': 1.0, 'summer': 1.0, 'receivers': 1.0, 'in': 1.0, 'perfect': 1.0, 'but': 1.0, 'cooked': 1.0, 'very': 1.0, 'and': 1.0, 'need': 1.0, 'blankets': 1.0, 'stylish': 1.0, 'who': 1.0, 'beautiful': 1.0, 'traditional': 1.0, 'these': 1.0, 'for': 1.0, 'love': 1.0, 'covered': 1.0, 'not': 1.0, 'baby': 1.0}
Word element => {'blankie': 1.0, 'huge': 1.0, 'and': 2.0, 'blankets': 1.0, 'to': 1.0, 'theyre': 1.0, 'are': 1.0, 'my': 1.0, 'so': 1.0, 'swaddle': 1.0, 'the': 1.0, 'great': 2.0, 'these': 2.0, 'as': 1.0, 'son': 1.0, 'time': 1.0, 'uses': 1.0, 'have': 1.0, 'all': 1.0, 'for': 1.0, 'soft': 1.0, 'swaddling': 1.0, 'later': 1.0, 'a': 1.0}
Word element => {'nice': 1.0, 'colors': 1.0, 'multitude': 1.0, 'white': 1.0, 'plain': 1.0, 'come': 1.0, 'me': 1.0, 'way': 1.0, 'be': 1.0, 'would': 1.0, 'figured': 1.0, 'homecoming': 1.0, 'george': 1.0, 'public': 1.0, 'they': 4.0, 'isn': 1.0, 'infancy': 1.0, 'or': 1.0, 'drawn': 1.0, 'feeding': 1.0, 'in': 2.0, 'expensive': 1.0, 'for': 3.0, 'one': 1.0, 'investigate': 1.0, 'under': 1.0, 'when': 1.0, 'am': 1.0, 'pleased': 1.0, 'light': 1.0, 'large': 1.0, 'larger': 1.0, 'breast': 1.0, 'little': 1.0, 'very': 2.0, 'aren': 1.0, 'but': 1.0, 'blankets': 2.0, 'with': 1.0, 's': 1.0, 'a': 4.0, 't': 2.0, 'blanket': 1.0, 'are': 2.0, 'the': 3.0, 'heavier': 1.0, 'them': 1.0, 'i': 3.0, 'news': 1.0, 'needed': 1.0, 'last': 1.0, 'babe': 1.0, 'too': 1.0, 'and': 1.0, 'into': 1.0, 'because': 2.0, 'these': 1.0, 'media': 1.0, 'was': 1.0, 'radar': 1.0, 'to': 1.0, 'of': 3.0, 'perfect': 2.0, 'swaddling': 1.0, 'pictures': 1.0, 'prince': 1.0}
Word element => {'making': 1.0, 'anais': 1.0, 'aden': 1.0, 'thank': 1.0, 'shower': 1.0, 'even': 1.0, 'about': 1.0, 'has': 1.0, 'everyone': 1.0, 'tell': 1.0, 'i': 1.0, 'swaddling': 1.0, 'very': 1.0, 'sun': 1.0, 'from': 1.0, 'carseat': 1.0, 'the': 1.0, 'also': 1.0, 'every': 1.0, 'such': 1.0, 'these': 3.0, 'great': 3.0, 'with': 2.0, 'it': 2.0, 'yr': 1.0, 'is': 1.0, 'fall': 1.0, 'present': 1.0, 'get': 1.0, 'and': 2.0, 'seriously': 1.0, 'toddler': 1.0, 'product': 1.0, 'love': 1.0, 'for': 7.0, 'cuddly': 1.0, 'close': 1.0, 'they': 3.0, 'my': 2.0, 'are': 3.0, 'light': 1.0, 'pregnant': 1.0, '2': 1.0, 'but': 1.0, 'blankets': 1.0, 'winter': 1.0, 'cover': 2.0, 'enough': 2.0, 'summer': 1.0, 'old': 2.0, 'that': 1.0, 'loves': 1.0, 'or': 2.0, '3': 1.0, 'mo': 1.0, 'cuddles': 1.0, 'so': 1.0, 'we': 1.0, 'a': 4.0, 'must': 1.0, 'to': 1.0, 'any': 1.0, 'quality': 1.0, 'softer': 1.0, 'baby': 2.0, 'if': 1.0, 'you': 2.0, 'need': 1.0, 'wash': 1.0, 'up': 1.0, 'nursing': 1.0}
Word element => {'products': 1.0, 'thickness': 1.0, 'anais': 1.0, 'mouth': 1.0, 'breathable': 1.0, 'usually': 1.0, 'find': 1.0, 'china': 1.0, 'for': 1.0, 'expensive': 1.0, 'months': 1.0, 'is': 2.0, 'this': 1.0, 'freely': 1.0, 'soft': 1.0, 'breath': 1.0, 'a': 5.0, 'we': 1.0, 't': 1.0, 'be': 1.0, 'over': 1.0, 'up': 1.0, 'don': 1.0, 'blanket': 1.0, 'are': 4.0, 'very': 2.0, 'construction': 1.0, 'and': 6.0, 'hold': 1.0, 'downside': 1.0, 'muslin': 2.0, 'in': 2.0, 'most': 1.0, 'can': 1.0, 'deals': 1.0, 'large': 1.0, 'same': 1.0, 'safety': 1.0, 'size': 1.0, 'washings': 1.0, 'makes': 1.0, 'your': 1.0, 'on': 2.0, 'aden': 1.0, 'great': 2.0, 'shapes': 1.0, 'well': 1.0, 'still': 1.0, 'if': 3.0, 'repeated': 1.0, 'dream': 1.0, 'all': 4.0, 'able': 1.0, 'blankets': 1.0, 'you': 4.0, 'will': 1.0, 'us': 1.0, 'also': 1.0, 'these': 1.0, 'wise': 1.0, 'nose': 1.0, 'prices': 1.0, 'to': 3.0, 'pretty': 1.0, 'put': 1.0, 'much': 1.0, 'of': 2.0, 'the': 2.0, 'cloth': 1.0, 'they': 3.0, 'cut': 1.0, 'into': 2.0, 'different': 2.0, 'layered': 1.0, 'have': 2.0, '12': 1.0, '2': 1.0, 'thing': 1.0, 'wraps': 1.0, '6': 1.0, 'bibs': 1.0, 'quite': 1.0, 'with': 1.0, 'after': 1.0, '9': 1.0, 'use': 1.0, 'amazon': 1.0, 'although': 1.0, 'watch': 1.0, 'fluctuate': 1.0, 'happy': 1.0, 'lot': 1.0, 'need': 1.0, 'huge': 1.0, 'particular': 1.0, 'colors': 1.0, 'good': 1.0, 'made': 1.0}
Word element => {'still': 1.0, 'ones': 1.0, 'are': 1.0, 'warm': 1.0, 'overheat': 1.0, 'not': 2.0, 'or': 1.0, 'breeze': 1.0, 'from': 1.0, 'protect': 1.0, 'easier': 1.0, 'were': 1.0, 'little': 1.0, 'didn': 1.0, 'it': 2.0, 'with': 1.0, 'draft': 1.0, 'about': 1.0, 'baby': 1.0, 'much': 2.0, 'received': 1.0, 'guy': 1.0, 'think': 1.0, 'more': 1.0, 'these': 2.0, 'soft': 1.0, 'perfect': 1.0, 'found': 1.0, 'when': 1.0, 'for': 1.0, 'arrived': 1.0, 'i': 3.0, 'two': 1.0, 'shower': 1.0, 'of': 2.0, 'quite': 1.0, 'immediately': 1.0, 'my': 1.0, 'ordered': 1.0, 'gauzy': 1.0, 'as': 2.0, 'to': 1.0, 'was': 1.0, 'could': 1.0, 't': 1.0, 'a': 4.0, 'him': 1.0, 'in': 2.0, 'because': 1.0, 'they': 1.0, 'slightly': 1.0, 'so': 1.0, 'nice': 1.0, 'big': 1.0, 'the': 4.0, 'wrap': 1.0, 'stretchy': 1.0, 'blankets': 2.0, 'organic': 2.0, 'but': 3.0, 'four': 1.0, 'summer': 1.0, 'light': 1.0, 'weather': 1.0, 'material': 1.0}
Word element => {'47x47': 1.0, 'mentioned': 1.0, 'description': 1.0, 'product': 1.0, 'at': 1.0, 'look': 1.0, 'sure': 1.0, 'make': 1.0, 'purchase': 1.0, 'great': 2.0, 'still': 1.0, 'son': 1.0, 'he': 4.0, '6': 1.0, 'stopped': 1.0, 'covers': 1.0, 'something': 1.0, 've': 2.0, 'for': 3.0, 'expensive': 1.0, 'size': 2.0, 'just': 1.0, 'life': 1.0, 'looking': 1.0, 'light': 1.0, 'baby': 1.0, 'them': 2.0, 'you': 1.0, 'blankets': 1.0, 'but': 2.0, 'receiving': 1.0, 'these': 5.0, 's': 1.0, 't': 1.0, 'those': 1.0, 'right': 1.0, 'lasting': 1.0, 'swaddling': 1.0, 'perfect': 1.0, 'even': 1.0, 'his': 2.0, 'kind': 1.0, 'and': 6.0, 'my': 1.0, 'other': 1.0, 'all': 2.0, 'to': 1.0, 'positive': 1.0, 'ps': 1.0, 'about': 1.0, 'are': 8.0, 'blanket': 1.0, 'gifts': 1.0, 'we': 1.0, 'reviews': 2.0, 'aren': 1.0, 'they': 8.0, 'glad': 1.0, 'week': 1.0, 'else': 1.0, 'so': 3.0, 'a': 3.0, 'small': 1.0, 'have': 1.0, 'after': 3.0, 'holding': 1.0, 'in': 1.0, 'm': 1.0, 'swaddled': 1.0, 'i': 8.0, 'did': 1.0, 'purchased': 1.0, 'had': 1.0, 'being': 1.0, 'reading': 1.0, 'the': 5.0, 'of': 2.0, 'shower': 1.0, 'loves': 1.0, 'been': 1.0, 'really': 1.0, 'started': 1.0, 'hot': 1.0, 'when': 1.0, 'sleeps': 1.0, 'because': 2.0, 'than': 1.0, 'as': 2.0, 'heavy': 1.0, 'also': 2.0, 'bought': 2.0, 'get': 2.0, 'months': 1.0, 'long': 1.0, 'now': 1.0, 'washed': 1.0, 'too': 2.0, 'lot': 1.0, 'up': 1.0, '3rd': 1.0, 'perfectly': 1.0, 'nursing': 1.0, 'used': 1.0, 'myself': 1.0, 'liked': 1.0, 'better': 1.0, 'aprons': 1.0, 'big': 1.0, 'loved': 1.0, 'enough': 1.0, 'cover': 1.0}
Word element => {'had': 1.0, 'every': 1.0, 'use': 1.0, 'have': 1.0, 'we': 1.0, 'stores': 1.0, 'box': 1.0, 'in': 1.0, 'you': 1.0, 'definitely': 1.0, 'them': 1.0, 'out': 1.0, 'quality': 1.0, 'and': 2.0, 'day': 1.0, 'best': 1.0, 'of': 1.0, '6': 1.0, 'there': 2.0, 'i': 2.0, 'buy': 2.0, 'comparison': 1.0, 'they': 1.0, 'better': 1.0, 'blankets': 2.0, 'no': 1.0, 'more': 1.0, 'ones': 1.0, 'these': 3.0, 'the': 2.0, 'is': 1.0, 'specific': 1.0, 'size': 1.0, 'are': 3.0, 'boutique': 1.0, '47x47': 1.0, 'much': 1.0, 'bigger': 1.0, 'wish': 1.0, 'than': 1.0}
Word element => {'did': 1.0, 'particular': 1.0, 'had': 1.0, 'things': 1.0, 'size': 1.0, 'and': 2.0, 'texture': 1.0, 'we': 1.0, 'the': 2.0, 'great': 1.0, 'these': 1.0, 'safety': 1.0, 'swaddlers': 1.0, 'all': 1.0, 'true': 1.0, 'it': 1.0, 'this': 1.0, 'heard': 1.0, 'purchased': 1.0, 'disappoint': 1.0, 'of': 2.0, 'set': 1.0, 'not': 1.0, 'because': 1.0, 'about': 1.0, 'colors': 1.0}
Word element => {'spent': 1.0, 'well': 1.0, 'unexpected': 1.0, 'an': 1.0, 'out': 1.0, 'too': 2.0, 'when': 1.0, 'they': 3.0, 'adequately': 1.0, 'sun': 1.0, 'were': 1.0, 'had': 1.0, 'money': 1.0, 'blankets': 1.0, 'do': 1.0, 'sleeps': 1.0, 'are': 1.0, 'best': 1.0, 'i': 3.0, 'muslin': 1.0, 'up': 2.0, 'wash': 1.0, 'spit': 1.0, 'also': 1.0, 'swaddled': 1.0, 'start': 1.0, 'my': 1.0, 'coming': 1.0, 'small': 2.0, 'so': 1.0, 'job': 1.0, 'the': 2.0, 'these': 1.0, 'ones': 1.0, 'big': 1.0, 'great': 1.0, 'would': 1.0, 'undone': 1.0, 'overnight': 1.0, 'use': 1.0, 'really': 2.0, 'stay': 1.0, 'soft': 1.0, 'sometimes': 1.0, 'wipe': 1.0, 'baby': 1.0, 'them': 1.0, 'discovered': 1.0, 'a': 1.0, 'car': 1.0, 'to': 3.0, 'as': 1.0, 'seat': 1.0, 're': 1.0, 'cover': 1.0, 'keep': 1.0}
Word element => {'girl': 1.0, 'my': 1.0, 'for': 1.0, 'buying': 1.0, 'be': 1.0, 'will': 1.0, 'swaddle': 1.0, 'service': 1.0, 'customer': 1.0, 'their': 1.0, 'no': 1.0, 'soft': 2.0, 'only': 1.0, 'unravel': 1.0, 'these': 3.0, 'the': 5.0, 'because': 1.0, 'washing': 1.0, 'little': 2.0, 'was': 1.0, 'to': 1.0, 'after': 2.0, 'package': 2.0, 'time': 1.0, 'are': 3.0, 'out': 1.0, 'concerned': 1.0, 'first': 1.0, 'when': 1.0, 'they': 3.0, 'bamboo': 1.0, 'i': 5.0, 't': 1.0, 'a': 5.0, 'feel': 1.0, 'pulled': 1.0, 'washed': 1.0, 'and': 2.0, 'me': 1.0, 'drying': 1.0, 'became': 1.0, 'of': 3.0, 'once': 1.0, 'blankets': 4.0, 'didn': 1.0, 'even': 1.0, 'started': 1.0, 'them': 3.0, 'softer': 1.0, 'though': 1.0, 'rocks': 1.0, 'at': 1.0, '1st': 1.0, 'emailed': 1.0, 'sent': 1.0, 'an': 1.0, 'huge': 1.0, 'one': 1.0, 'entire': 1.0, 'cost': 1.0, 'super': 1.0, 'new': 1.0}
Word element => {'recommend': 1.0, 'definitely': 1.0, 'would': 1.0, 'comfortable': 1.0, 'allowing': 1.0, 'or': 1.0, 'thinner': 1.0, 'car': 1.0, 'hot': 1.0, 'purposes': 1.0, 'you': 1.0, 'when': 1.0, 'example': 1.0, 'for': 3.0, 'using': 1.0, 'multiple': 1.0, 'be': 2.0, 'wonderful': 1.0, 'swaddle': 1.0, 'so': 1.0, 'and': 1.0, 'can': 1.0, 'blankets': 2.0, 'are': 2.0, 'used': 1.0, 'i': 1.0, 'etc': 1.0, 'these': 2.0, 'the': 2.0, 'they': 1.0, 'want': 1.0, 'onlookers': 1.0, 'bigger': 1.0, 'stroller': 1.0, 'than': 1.0, 'material': 1.0, 'weather': 1.0, 'cover': 3.0, 'nursing': 1.0, 'curious': 1.0, 'your': 1.0, 'make': 1.0, 'baby': 3.0, 'them': 2.0, 'swaddling': 1.0, 'perfect': 1.0, 'regular': 1.0, 'in': 1.0, 'still': 2.0, 'seat': 1.0, 'to': 2.0, 'from': 1.0, 'while': 1.0}
Word element => {'weather': 1.0, 'chilly': 1.0, 'be': 1.0, 'it': 1.0, 'since': 1.0, 'february': 1.0, 'in': 1.0, 'due': 1.0, 'baby': 1.0, 'them': 1.0, 'use': 1.0, 'vey': 1.0, 'summer': 1.0, 'including': 1.0, 'washings': 1.0, 'sure': 1.0, 'new': 1.0, 've': 1.0, 'numerous': 1.0, 'up': 3.0, 'and': 2.0, 'old': 1.0, 'hold': 1.0, '17': 1.0, 'through': 1.0, 'had': 1.0, 'll': 2.0, 'especially': 1.0, 'nursing': 1.0, 'they': 2.0, 'these': 2.0, 'son': 1.0, 'been': 1.0, 'babies': 1.0, 'changing': 1.0, 'with': 1.0, 'my': 1.0, 'months': 1.0, 'spit': 1.0, 'well': 1.0, 'four': 1.0, 'blankets': 1.0, 'are': 2.0, 'of': 1.0, 'multi': 1.0, 'for': 2.0, 'purpose': 1.0, 'car': 1.0, 'seat': 1.0, 'bleach': 1.0, 'not': 1.0, 'canopy': 1.0, 'good': 1.0, 'clean': 1.0, 'cover': 1.0, 'pad': 1.0, 'i': 2.0, 'etc': 1.0, 'how': 1.0, 'much': 1.0}
Word element => {'very': 1.0, 'something': 1.0, 'bought': 1.0, 'only': 1.0, 'blankets': 1.0, 'but': 1.0, 'we': 1.0, 'they': 2.0, 'particularly': 1.0, 'would': 1.0, 'are': 2.0, 'love': 1.0, 'i': 2.0, 'don': 1.0, 'want': 1.0, 'these': 1.0, 'ones': 2.0, 'the': 2.0, 't': 1.0, 'think': 1.0, 'bamboo': 1.0, 'cozy': 1.0, 'soft': 1.0, 'if': 1.0, 'try': 1.0, 'you': 1.0}
Word element => {'in': 1.0, 'fits': 1.0, 'and': 1.0, 'face': 1.0, 'babys': 1.0, 'over': 1.0, 'by': 1.0, 'gets': 1.0, 'if': 1.0, 'good': 1.0, 'through': 1.0, 'easy': 1.0, 'fantastic': 1.0, 'are': 2.0, 'they': 1.0, 'use': 1.0, 'easily': 1.0, 'blanket': 1.0, 'milti': 1.0, 'weight': 1.0, 'that': 2.0, 'blankets': 3.0, 'as': 2.0, 'during': 1.0, 'used': 2.0, 'breath': 1.0, 'swaddle': 1.0, 'i': 1.0, 'likes': 1.0, 'bag': 1.0, 'light': 2.0, 'lightweight': 1.0, 'these': 1.0, 'the': 1.0, 'accident': 1.0, 'my': 1.0, 'summer': 1.0, 'is': 1.0, 'any': 2.0, 'baby': 1.0, 'nolonger': 1.0, 'it': 2.0, 'now': 1.0, 'to': 2.0, 'be': 1.0, 'swaddled': 1.0, 'a': 1.0}
Word element => {'dark': 1.0, 'very': 1.0, 'them': 1.0, 'now': 1.0, 'clothes': 1.0, 'way': 1.0, 'with': 1.0, 'only': 1.0, 'hard': 1.0, 'this': 1.0, 'washings': 1.0, 'few': 1.0, 'even': 1.0, 'wash': 2.0, 'in': 2.0, 'wish': 1.0, 'note': 1.0, 'a': 1.0, 'caution': 1.0, 'were': 1.0, 'after': 1.0, 'items': 1.0, 'blankets': 1.0, 'like': 1.0, 'i': 2.0, 'baby': 1.0, 'more': 1.0, 'the': 2.0, 'these': 2.0, 'jewel': 1.0, 'learned': 1.0, 'they': 1.0, 'rich': 1.0, 'love': 1.0, 'one': 1.0, 'tones': 1.0, 'there': 1.0, 'of': 1.0, 'and': 1.0, 'do': 1.0, 'bleed': 1.0}
Word element => {'every': 1.0, 'worth': 1.0, 'kids': 1.0, 'loves': 1.0, 'had': 1.0, 'giant': 1.0, 'a': 1.0, 'burrito': 1.0, 'securely': 1.0, 'up': 1.0, 'babies': 1.0, 'swaddling': 1.0, 'like': 1.0, 'blanket': 1.0, 'are': 2.0, 'my': 2.0, 'two': 1.0, 'blankets': 1.0, 'and': 1.0, 'these': 2.0, 'they': 2.0, 'for': 2.0, 'love': 1.0, 'would': 1.0, 'him': 1.0, 've': 1.0, 'perfect': 1.0, 'little': 1.0, 'is': 1.0, 'wish': 1.0, '5': 1.0, 'guy': 1.0, 'months': 1.0, 'i': 3.0, 'old': 1.0, 'it': 1.0, 'he': 1.0, 'older': 2.0, 'this': 1.0, 'penny': 1.0, 'wraps': 1.0}
Word element => {'but': 1.0, 'little': 1.0, 'a': 1.0, 'their': 1.0, 'for': 1.0, 'wishing': 1.0, 'of': 1.0, 'comment': 1.0, 'same': 1.0, 'have': 1.0, 'friends': 1.0, 'and': 1.0, 'i': 2.0, 'so': 1.0, 'blankets': 1.0, 'many': 1.0, 'amazing': 1.0, 'worth': 1.0, 'gift': 1.0, 'are': 2.0, 'my': 3.0, 'can': 1.0, 'without': 1.0, 'the': 1.0, 't': 1.0, 'these': 2.0, 'they': 2.0, 'uses': 1.0, 'believe': 1.0, 'survived': 1.0, 'it': 1.0, 'shower': 1.0, 'with': 1.0, 'first': 2.0, 'had': 1.0, 'now': 1.0, 'to': 1.0, 'pricy': 1.0, 'made': 1.0, 'child': 2.0, 'them': 1.0, 'go': 1.0}
Word element => {'recommending': 1.0, 'deserve': 1.0, 'size': 1.0, 'many': 1.0, 'pretty': 1.0, 'be': 1.0, 'fold': 1.0, 'you': 1.0, 'if': 1.0, 'friends': 1.0, 'so': 2.0, 'because': 1.0, 'warm': 2.0, 'cool': 1.0, 'keep': 1.0, 'about': 1.0, 'thing': 1.0, 'm': 2.0, 'best': 1.0, 'the': 1.0, 'purpose': 1.0, 's': 1.0, 'days': 1.0, 'out': 2.0, 'very': 1.0, 'too': 1.0, 'and': 10.0, 'can': 1.0, 'but': 1.0, 'blankets': 3.0, 'airy': 1.0, 'positive': 1.0, 'mom': 1.0, 'light': 1.0, 'says': 1.0, 'in': 3.0, 'wash': 2.0, 'surprised': 1.0, 'law': 1.0, 'make': 1.0, 'my': 3.0, 'are': 4.0, 'good': 1.0, 'her': 2.0, 'used': 1.0, 'got': 1.0, 'breathy': 1.0, 'even': 1.0, 'expensive': 1.0, 'highest': 1.0, 'reviews': 1.0, 'they': 8.0, 'some': 1.0, 'these': 2.0, 'is': 1.0, 'more': 1.0, 'come': 2.0, 'soft': 2.0, 'this': 1.0, 'praise': 1.0, 'after': 2.0, 'how': 1.0, 'washing': 1.0, 'not': 2.0, 'drying': 1.0, 'truly': 1.0, 'well': 1.0, 'airier': 1.0, 'i': 3.0, 'other': 1.0, 'own': 1.0, 'now': 1.0, 'flatter': 2.0, 'to': 2.0, 'all': 2.0, 'weather': 1.0, 'every': 1.0, 'them': 5.0, 'softer': 1.0, 'baby': 2.0, 'that': 2.0, 'loves': 1.0}
Word element => {'washed': 1.0, 'get': 2.0, 'soft': 1.0, 'aden': 1.0, 'time': 1.0, 'anais': 1.0, 'are': 1.0, 'make': 1.0, 'the': 1.0, 'softest': 1.0, 'every': 1.0, 'baby': 1.0, 'softer': 1.0, 'and': 1.0, 'blankets': 1.0, 'so': 1.0, 'ever': 1.0, 'they': 2.0, 'pretty': 1.0, 'these': 1.0, 'swaddle': 1.0, 'wraps': 1.0}
Word element => {'now': 1.0, 'at': 1.0, 'include': 1.0, 've': 1.0, 'nursing': 1.0, 'from': 1.0, 'while': 1.0, 'up': 1.0, 'covering': 1.0, 'will': 1.0, 'also': 1.0, 'different': 1.0, '5': 1.0, 'teaches': 1.0, 'had': 1.0, 'the': 2.0, 'already': 1.0, 'dvd': 1.0, 'these': 2.0, 'happiest': 1.0, 'showers': 1.0, 'grows': 1.0, 'your': 1.0, 'on': 2.0, 'after': 1.0, 'a': 3.0, 'watching': 1.0, 'i': 4.0, 'ways': 1.0, 'first': 1.0, 'several': 1.0, 'that': 1.0, 'well': 1.0, 'kinds': 1.0, 'soothe': 1.0, 'in': 2.0, 'to': 2.0, 'as': 1.0, 'block': 1.0, 'and': 3.0, 'bought': 3.0, 'one': 2.0, 'for': 2.0, 'of': 1.0, 'baby': 4.0, 'them': 1.0, 'more': 1.0, 'is': 1.0, 'video': 1.0, 'summer': 1.0, 'wish': 1.0, 'perfect': 1.0, 'swaddling': 1.0, 'large': 1.0, 'work': 1.0, 'blankets': 1.0, 'gifts': 1.0, 'called': 1.0, 'are': 1.0, 'they': 1.0, 'crying': 1.0, 're': 1.0, 'enough': 2.0, 'my': 1.0, 'lightweight': 1.0, 'georgia': 1.0, 'use': 1.0}
Word element => {'herself': 1.0, 'or': 1.0, 'finger': 1.0, 'sucks': 1.0, 'while': 2.0, 'breathable': 1.0, 'soft': 1.0, 'soothes': 1.0, 'old': 1.0, 'snug': 1.0, 'my': 2.0, 'happy': 1.0, 'lo': 1.0, 'are': 1.0, 'bought': 1.0, 'these': 3.0, 'she': 1.0, 'it': 1.0, 'month': 1.0, 'were': 1.0, 'large': 1.0, 'by': 1.0, '6': 1.0, 'i': 2.0, 'two': 1.0, 'blankets': 2.0, 'and': 2.0, 'get': 1.0, 'friends': 1.0, 'so': 1.0, 'swaddle': 1.0, 'they': 1.0, 'am': 1.0, 'outgrown': 1.0, 'recommended': 1.0, 'has': 1.0, 'likes': 1.0, 'other': 1.0, 'provide': 1.0, 'a': 1.0, 'her': 2.0, 'good': 1.0, 'also': 2.0, 'them': 1.0, 'softer': 1.0, 'wash': 1.0, 'still': 1.0, 'seem': 1.0, 'sleep': 1.0, 'all': 1.0, 'to': 4.0, 'with': 1.0, 'each': 1.0, 'hold': 1.0, 'on': 1.0}
Word element => {'regards': 1.0, 'best': 1.0, 'very': 1.0, 'product': 1.0, 'close': 1.0, 'even': 1.0, 'texture': 1.0, 'out': 1.0, 'came': 1.0, 'am': 1.0, 'cycle': 1.0, 'on': 1.0, 'to': 1.0, 'rough': 1.0, 'its': 1.0, 'few': 1.0, 'every': 1.0, 'gantle': 1.0, 'and': 1.0, 'not': 1.0, 'know': 2.0, 'quality': 1.0, 'years': 1.0, 'for': 2.0, 'disappointed': 1.0, 'in': 1.0, 'a': 2.0, 'noa': 1.0, 'item': 1.0, 'i': 5.0, 'hello': 1.0, 'time': 3.0, 'high': 1.0, 'perchased': 1.0, 'the': 3.0, 'past': 1.0, 'of': 1.0, 'washed': 1.0, 'this': 2.0, 'it': 2.0, 'first': 1.0}
Word element => {'too': 1.0, 'prints': 1.0, 'cutest': 1.0, 'have': 1.0, 'sun': 1.0, 'from': 1.0, 'and': 2.0, 'it': 1.0, 'worth': 1.0, 'light': 1.0, 'they': 2.0, 'great': 2.0, 'these': 2.0, 'the': 4.0, 'are': 2.0, 'airy': 1.0, 'so': 1.0, 're': 1.0, 'them': 1.0, 'for': 1.0, 'in': 1.0, 'baby': 1.0, 'throwing': 1.0, 'to': 1.0, 'over': 1.0, 'is': 1.0, 'summer': 1.0, 'quality': 1.0, 'shade': 1.0}
Word element => {'had': 1.0, 'wish': 1.0, 'so': 1.0, 'are': 1.0, 'how': 1.0, 'swaddle': 1.0, 'to': 2.0, 'start': 1.0, 'flannel': 1.0, 'have': 2.0, 'out': 1.0, 'his': 1.0, 'long': 1.0, 'kicking': 1.0, 'size': 1.0, 'rectangular': 1.0, 'the': 9.0, 'lightweight': 1.0, 'my': 1.0, 'useless': 1.0, 'we': 2.0, 'standard': 1.0, 'him': 1.0, 'cotton': 1.0, 'in': 1.0, 'i': 6.0, 'is': 2.0, 'son': 1.0, 'from': 2.0, 'nice': 1.0, 'feel': 1.0, 'big': 1.0, 'skeptical': 1.0, 'of': 1.0, 'hospital': 1.0, 'touch': 1.0, 'reason': 1.0, 'keeps': 1.0, 'these': 2.0, 'receiving': 1.0, 'legs': 1.0, 're': 1.0, 'enough': 1.0, 'been': 1.0, 'bought': 2.0, 'one': 1.0, 'love': 2.0, 'and': 2.0, 'too': 1.0, 'when': 1.0, 'm': 1.0, 'think': 1.0, 'opened': 1.0, 'package': 1.0, 'was': 1.0, 'now': 1.0, 'blankets': 2.0, 'but': 1.0, 'generous': 1.0, 'they': 3.0}
Word element => {'weird': 1.0, 'prints': 1.0, 'reflect': 1.0, 'of': 2.0, 'there': 1.0, 'pack': 2.0, 'it': 1.0, 'from': 2.0, 'out': 1.0, 'and': 4.0, 'ordered': 1.0, 'still': 1.0, 'cute': 1.0, 'just': 1.0, 'pictured': 3.0, 'where': 1.0, 'stars': 1.0, 'here': 2.0, '4': 1.0, 'i': 5.0, 'not': 1.0, 'accurate': 2.0, 'would': 2.0, '2': 2.0, 'but': 3.0, 'blue': 1.0, 'edit': 1.0, 'colours': 2.0, 'charming': 3.0, '5': 1.0, 'than': 1.0, 'have': 2.0, 'found': 1.0, 'this': 1.0, 'item': 1.0, 'amazon': 1.0, 'fine': 1.0, 'colour': 1.0, 'are': 4.0, 'mind': 1.0, 'the': 9.0, 'is': 1.0, 'prince': 3.0, 'more': 2.0, 'same': 1.0, 'teal': 1.0, 'olive': 1.0, 'liked': 1.0, 'they': 4.0, 'true': 1.0, 'that': 1.0, 'were': 2.0, 't': 1.0, 's': 3.0, 'don': 1.0, 'on': 1.0, 'think': 1.0, 're': 1.0, 'rated': 1.0, 'them': 2.0, 'patterns': 1.0, 'as': 1.0, 'to': 1.0, 'what': 1.0}
Word element => {'with': 1.0, 'one': 1.0, 'him': 1.0, 'love': 1.0, 'taking': 1.0, 'to': 2.0, 'also': 1.0, 'swaddle': 1.0, 'baby': 1.0, 'in': 1.0, 'this': 1.0, 'lol': 1.0, 'her': 1.0, 'started': 1.0, 'my': 1.0, 'older': 1.0, 'brother': 1.0, 'bed': 1.0, 'has': 1.0}
Word element => {'give': 1.0, 'to': 1.0, 'favorite': 1.0, 'my': 1.0, 'of': 1.0, 'it': 1.0, 'worth': 1.0, 'especially': 1.0, 'gifts': 1.0, 'but': 1.0, 'one': 1.0, 'for': 1.0, 'in': 1.0, 'newborn': 1.0, 'pricey': 1.0, 'blankets': 1.0, 'very': 1.0, 'best': 1.0, 'you': 1.0, 'absolute': 1.0, 'are': 2.0, 'swaddling': 1.0, 'warm': 1.0, 'the': 1.0, 'these': 1.0, 'your': 1.0, 'they': 1.0, 'if': 1.0, 'live': 1.0, 'a': 1.0, 'area': 1.0, 'so': 1.0}
Word element => {'the': 2.0, 'having': 1.0, 'by': 1.0, 'sunshades': 1.0, 'off': 1.0, 'toity': 1.0, 'hot': 1.0, 'within': 1.0, 'or': 1.0, '5': 1.0, 'mothers': 1.0, 'designs': 1.0, 'miracle': 1.0, 'of': 2.0, 'showing': 1.0, 'it': 2.0, 'not': 3.0, 'that': 2.0, 'stroller': 1.0, 'cloud': 1.0, 'over': 1.0, 'breaks': 1.0, 'soft': 1.0, 'swaddling': 2.0, '45': 1.0, 'tho': 1.0, 'min': 1.0, 'b': 1.0, 'my': 1.0, 'for': 4.0, 'using': 1.0, 'blanket': 3.0, 'out': 1.0, 'baby': 1.0, 'them': 2.0, 'summers': 1.0, 'm': 1.0, 'do': 1.0, 'works': 1.0, 'much': 1.0, 'please': 1.0, 'their': 1.0, 'better': 1.0, 'pretty': 1.0, 'they': 1.0, 'r': 1.0, 'i': 3.0, 'horrible': 1.0, 'use': 1.0, 'more': 1.0, 'blankets': 1.0, 'now': 1.0, 'spf': 1.0, 'so': 1.0, 'all': 1.0, 'as': 1.0, 'see': 1.0, 's': 2.0, 'a': 1.0, 'lot': 1.0, 'hoity': 1.0}
Word element => {'not': 1.0, 'did': 1.0, 'i': 1.0, 'shrink': 1.0, 'don': 1.0, 'they': 1.0, 'hope': 1.0, 'for': 1.0, 'daughter': 1.0, 'light': 1.0, 'soft': 1.0, 'bablies': 1.0, 'bit': 1.0, 'size': 1.0, 'summer': 1.0, 'spendy': 1.0, 'perfect': 1.0, 'but': 1.0, 'their': 1.0, 'were': 1.0, 't': 1.0, 'great': 1.0, 'it': 1.0, 'and': 1.0, 'a': 1.0, 'worth': 1.0, 'was': 1.0, 'prewash': 1.0, 'oversized': 1.0, 'blankets': 1.0, 'at': 1.0, 'surprized': 1.0}
Word element => {'to': 1.0, 'little': 1.0, 'baby': 1.0, 'will': 1.0, 'wonderful': 1.0, 'size': 1.0, 'grow': 1.0, 'washings': 1.0, 'blankets': 1.0, 'softer': 1.0, 'a': 1.0, 'are': 2.0, '2': 1.0, 'the': 1.0, 'stiff': 1.0, 'when': 1.0, 'with': 1.0, 'first': 1.0, 'bought': 1.0, 'so': 1.0, 'after': 1.0, 'continue': 1.0, 'they': 1.0, 'do': 1.0, 'and': 1.0, 'getting': 1.0, 'should': 1.0}
Word element => {'how': 1.0, 'sp': 1.0, 'feeling': 1.0, 'expecting': 1.0, 'just': 1.0, 'fine': 1.0, 'i': 2.0, 'was': 2.0, 'lightweight': 1.0, 'by': 2.0, 'spoiled': 1.0, 'pricey': 1.0, 'muslin': 1.0, 'bamboo': 1.0, 'a': 2.0, 'wow': 1.0, 'the': 2.0, 'are': 3.0, 'like': 1.0, 'since': 1.0, 'blankets': 1.0, 'they': 1.0, 'these': 2.0}
Word element => {'definitely': 1.0, 'pricey': 1.0, 'bit': 1.0, 'a': 1.0, 't': 1.0, 'weren': 1.0, 'if': 1.0, 'more': 1.0, 'i': 2.0, 'worth': 1.0, 'by': 1.0, 'it': 1.0, 'love': 1.0, 'they': 1.0, 'these': 1.0, 'blankets': 1.0, 'and': 1.0, 'but': 1.0, 'aden': 1.0, 'buy': 1.0, 'anais': 1.0, 'would': 1.0, 'lots': 1.0}
Word element => {'in': 1.0, 'purchasing': 1.0, 'dry': 1.0, 'initial': 1.0, 'wash': 1.0, 'up': 3.0, 'during': 1.0, 'large': 1.0, 'well': 1.0, 'hot': 1.0, 'cycle': 1.0, 'will': 2.0, 'been': 1.0, 'that': 1.0, 'time': 1.0, 'so': 1.0, 'cover': 1.0, 'enough': 1.0, 'fantastic': 1.0, 'more': 2.0, 'tummy': 1.0, 'isn': 1.0, 'little': 1.0, 'used': 1.0, 'target': 1.0, 'nursing': 1.0, 'site': 1.0, 'thin': 1.0, 'weeks': 1.0, 'free': 1.0, 'they': 3.0, 'ones': 1.0, 'already': 1.0, 'these': 2.0, 'not': 3.0, 'because': 1.0, 'love': 1.0, 'for': 4.0, 'their': 1.0, '3': 1.0, 'guy': 1.0, 'on': 2.0, 'and': 3.0, 'sold': 2.0, 'i': 7.0, 'the': 8.0, 'website': 1.0, 'almost': 1.0, 'held': 1.0, 'yet': 1.0, 'or': 1.0, 'purchased': 2.0, 'end': 1.0, 'try': 1.0, 'higher': 1.0, 'same': 2.0, 'if': 1.0, 'decided': 1.0, 'seem': 1.0, 'shipping': 2.0, 't': 1.0, '47x47': 1.0, 'a': 7.0, 'future': 1.0, 'since': 2.0, 'blankets': 1.0, 'baby': 1.0, 'them': 1.0, 'quality': 3.0, 'due': 1.0, 'paying': 1.0, 'wanted': 1.0, 'our': 1.0, 'as': 3.0, 'to': 2.0, 'use': 1.0, 'amazon': 1.0, 'get': 2.0, 'ad': 1.0, 'have': 2.0, 'prime': 1.0, 'would': 1.0, 'exactly': 1.0, 'be': 2.0, 'bru': 1.0, 'through': 2.0, 'are': 2.0, 'high': 1.0, 'direct': 1.0, 'from': 2.0, 'while': 1.0, 'probably': 1.0, 'size': 2.0}
Word element => {'loved': 1.0, 'priced': 1.0, 'were': 1.0, 'baby': 2.0, 'them': 1.0, 'early': 1.0, 'very': 1.0, 'and': 2.0, 'daughter': 1.0, 's': 1.0, 'reasonable': 1.0, 'came': 1.0, 'so': 1.0, 'did': 1.0, 'swaddlers': 1.0, 'these': 1.0, 'my': 1.0, 'the': 2.0}
Word element => {'worth': 1.0, 'expensive': 1.0, 'but': 1.0, 'work': 1.0, 'and': 2.0, 'for': 1.0, 'it': 1.0, 'this': 1.0, 'keep': 1.0, 'material': 1.0, 'short': 1.0, 'll': 1.0, 'great': 3.0, 'these': 1.0, 'the': 2.0, 'feel': 1.0, 'touch': 1.0, 'i': 1.0, 'stretchy': 1.0, 'is': 1.0, 'swaddling': 1.0, 'soft': 1.0, 'look': 1.0, 'to': 1.0, 'extremely': 1.0, 'breathable': 1.0, 'slightly': 1.0}
Word element => {'every': 1.0, 'getting': 1.0, 'be': 1.0, 'swaddles': 1.0, 'use': 2.0, 'infant': 1.0, 'an': 1.0, 'still': 1.0, 'son': 1.0, 'when': 1.0, 'it': 2.0, 'with': 2.0, 'of': 2.0, 'for': 1.0, 'one': 1.0, 'going': 1.0, 'a': 2.0, 'or': 1.0, 'these': 3.0, 'my': 2.0, 'would': 1.0, 'hesitant': 1.0, 'overeating': 1.0, 'and': 2.0, 'very': 1.0, 'i': 4.0, 'wish': 1.0, 'soft': 1.0, 'out': 1.0, 'concern': 1.0, 'are': 3.0, 'blanket': 1.0, 'toddler': 1.0, 'past': 1.0, 'blankets': 1.0, 'but': 1.0, 'night': 1.0, 'them': 1.0, 'quality': 1.0, 'was': 2.0, 'as': 1.0, 'sleep': 1.0, 'to': 3.0, 'breathable': 1.0, 'over': 1.0, 'year': 1.0, 'his': 1.0, 'face': 1.0, 'light': 1.0, 'knowing': 1.0, 'enough': 1.0, 'tiny': 1.0, 'that': 2.0, 'fear': 1.0, 'is': 1.0, 'give': 1.0, 'not': 2.0, 'purchased': 1.0, 'had': 1.0, 'excellent': 1.0, 'holes': 1.0, 'they': 1.0, 'have': 1.0, 'the': 1.0, 'unraveled': 1.0, 'bit': 1.0, 'in': 1.0}
Word element => {'parent': 1.0, 'gift': 1.0, 'wonderful': 1.0, 'than': 1.0, 'my': 1.0, 'more': 1.0, 'texture': 1.0, 'for': 1.0, 'in': 1.0, 'is': 1.0, 'love': 1.0, 'new': 1.0, 'brilliant': 1.0, 'i': 2.0, 'infant': 1.0, 'think': 1.0, 'a': 1.0, 'wrapping': 1.0, 'these': 1.0, 'any': 1.0, 'up': 1.0, 'blankets': 1.0}
Word element => {'summer': 1.0, 'white': 1.0, 'nice': 1.0, 'wrap': 1.0, 'find': 1.0, 'my': 1.0, 'all': 1.0, 'to': 1.0, 'in': 1.0, 'muslin': 1.0, 'newborn': 1.0, 'great': 1.0, 'can': 1.0, 'without': 1.0, 'getting': 1.0, 'blankets': 1.0, 'swaddle': 1.0, 'so': 1.0, 'hot': 1.0, 'value': 1.0, 'i': 1.0, 'her': 1.0, 'too': 1.0, 'this': 1.0}
Word element => {'girl': 1.0, 'next': 1.0, 'case': 1.0, 'ones': 1.0, 'pink': 1.0, 'set': 1.0, 'order': 1.0, 'just': 1.0, 'is': 1.0, 'more': 1.0, 'buy': 1.0, 'excuse': 1.0, 'an': 1.0, 'time': 1.0, 'get': 1.0, 'they': 1.0, 'neck': 1.0, 'additional': 1.0, 'in': 3.0, 've': 2.0, 'swaddle': 1.0, 'purchased': 2.0, 'rotten': 1.0, 'every': 2.0, 'might': 1.0, 'could': 1.0, 'a': 3.0, 'well': 1.0, 'and': 4.0, 'one': 1.0, 'love': 4.0, 'for': 3.0, 'seem': 1.0, 'son': 1.0, 'rolled': 1.0, 'spoiled': 1.0, 'the': 4.0, 'support': 1.0, 'already': 1.0, 'rides': 1.0, 'these': 3.0, 'my': 1.0, 'lightweight': 1.0, 'i': 8.0, 'best': 1.0, 'ton': 1.0, 'uses': 1.0, 'think': 2.0, 'lots': 1.0, 'item': 1.0, 'first': 1.0, 'of': 5.0, 'wash': 1.0, 'up': 1.0, 'but': 1.0, 'have': 2.0, '8': 1.0, 'nursing': 1.0, 'wish': 1.0, 'found': 1.0, 'other': 1.0, 'softer': 1.0, 'night': 1.0, 'baby': 3.0, 'them': 3.0, 'are': 1.0, 'blanket': 1.0, 'car': 2.0, 'trips': 1.0, 'patterns': 1.0, 'seat': 1.0, 'as': 1.0, 'to': 3.0, 'store': 1.0, 'cover': 1.0}
Word element => {'all': 1.0, 'them': 1.0, 'use': 1.0, 'find': 1.0, 'beautifully': 1.0, 'wash': 1.0, 'so': 2.0, 'stay': 1.0, 'recommend': 1.0, 'time': 1.0, 'they': 1.0, 'the': 1.0, 'these': 1.0, 'cuddly': 1.0, 'versatile': 1.0, 'are': 1.0, 'blankets': 1.0, 'as': 1.0, 'soft': 1.0, 'i': 1.0, 'would': 1.0, 'a': 1.0, 'practical': 1.0, 'packs': 1.0, 'and': 3.0, 'getting': 1.0, 'couple': 1.0, 'you': 2.0, 'will': 1.0}
Word element => {'this': 1.0, 'have': 1.0, 'blankets': 1.0, 'old': 1.0, 'about': 1.0, 'perfect': 1.0, 'muslin': 1.0, 'also': 1.0, 'good': 1.0, 'say': 1.0, 'our': 1.0, 'enough': 1.0, 'can': 1.0, 'second': 1.0, 'is': 1.0, 'my': 1.0, 't': 1.0, 'these': 1.0, 'the': 1.0, 'set': 1.0, 'love': 3.0, 'for': 2.0, 'print': 1.0, '10wk': 1.0, 'everything': 1.0, 'star': 1.0}
Word element => {'softer': 2.0, 'just': 1.0, 'every': 1.0, 'used': 1.0, 'blankies': 1.0, 'get': 1.0, 'and': 3.0, 'is': 1.0, 'he': 1.0, 'are': 2.0, '34': 2.0, 'originally': 1.0, 'day': 1.0, 'best': 1.0, 'son': 1.0, 'for': 1.0, '2': 1.0, 'the': 1.0, 'these': 2.0, 'ever': 1.0, 'they': 2.0, 'my': 1.0, 'high': 1.0, 'that': 1.0, 'thought': 1.0, 'ordered': 1.0, 'i': 2.0, 'now': 1.0, 'was': 1.0, 'a': 1.0, 'thin': 1.0, 'bit': 1.0, 'considering': 1.0, 'price': 1.0, 'money': 1.0, 'spent': 1.0, 'blankets': 1.0}
Word element => {'baby': 1.0, 'new': 1.0, 'for': 1.0, 'must': 1.0, 'a': 1.0, 'them': 1.0, 'wash': 1.0, 'you': 1.0, 'definite': 1.0, 'time': 1.0, 'absolutely': 1.0, 'love': 1.0, 'do': 1.0, 'they': 1.0, 'these': 1.0, 'get': 1.0, 'really': 1.0, 'any': 1.0, 'softer': 1.0, 'blankets': 1.0, 'and': 1.0, 'each': 1.0}
Word element => {'down': 1.0, 'favorite': 1.0, 'our': 1.0, 'swaddling': 1.0, 'for': 1.0, 'than': 1.0, 'function': 1.0, 'purpose': 1.0, 'as': 1.0, 'quality': 1.0, 'and': 4.0, 'high': 1.0, 'blankets': 2.0, 'super': 1.0, 'well': 1.0, 'is': 1.0, 'with': 1.0, 'are': 1.0, 'more': 1.0, 'the': 1.0, 'these': 1.0, 'they': 1.0, 'patterns': 1.0, 'aden': 1.0, 'hands': 1.0, '47': 1.0, 'sweet': 1.0, 'square': 1.0, 'wash': 1.0, 'all': 1.0, 'have': 1.0, 'anais': 1.0, 'lots': 1.0}
Word element => {'extra': 1.0, 'fluffier': 1.0, 'in': 1.0, 'so': 1.0, 'smaller': 1.0, 'count': 1.0, 'thread': 1.0, 'less': 1.0, 'size': 1.0, 'probably': 1.0, 'fabric': 1.0, 'then': 1.0, 'price': 1.0, 'full': 1.0, 'had': 1.0, 't': 1.0, 'these': 3.0, 'great': 1.0, 'the': 4.0, 'ones': 3.0, 'cheaper': 1.0, 'wash': 1.0, 'with': 1.0, 'it': 1.0, 'come': 1.0, 'get': 1.0, 'and': 5.0, 'each': 1.0, 'wait': 1.0, 'dollars': 1.0, 'do': 1.0, 'much': 2.0, 'well': 1.0, 'subject': 1.0, 'they': 2.0, 'target': 1.0, 'can': 1.0, 'line': 1.0, 'out': 1.0, 'says': 1.0, 'my': 1.0, 'are': 4.0, 'all': 1.0, 'to': 2.0, 'use': 1.0, 'i': 3.0, 'want': 1.0, 'us': 1.0, 'thinner': 1.0, 'stains': 1.0, 'babies': 1.0, 'that': 1.0, 'better': 1.0, 'softer': 1.0, 'them': 1.0, 'quality': 1.0, 'you': 1.0, 'than': 1.0, 'find': 1.0, 'menton': 1.0, 'at': 1.0, 'tried': 1.0, 'r': 1.0, 'worth': 1.0, 'or': 1.0, 'for': 1.0, '35': 1.0}
Word element => {'not': 1.0, 'just': 1.0, 'very': 1.0, 'nursing': 1.0, 'down': 2.0, 'while': 1.0, 'still': 1.0, 'covering': 1.0, 'everything': 2.0, 'ground': 1.0, 'means': 1.0, 'generous': 1.0, 'between': 1.0, 'double': 1.0, 'size': 1.0, 'their': 1.0, 'having': 1.0, 'laying': 1.0, 'perfect': 2.0, 'wish': 1.0, 'soft': 3.0, 'is': 4.0, 'on': 1.0, '3': 1.0, 'us': 2.0, 'in': 1.0, 'go': 1.0, 'a': 1.0, 't': 2.0, 's': 1.0, 'to': 3.0, 'all': 2.0, 'as': 3.0, 'warm': 1.0, 'had': 1.0, 'which': 2.0, 'version': 2.0, 'get': 3.0, 'months': 1.0, 'for': 2.0, 'love': 1.0, 'i': 8.0, 'two': 1.0, '4': 2.0, 'known': 1.0, 'baby': 1.0, 'them': 1.0, 'softer': 1.0, 'about': 1.0, 'thing': 1.0, 'these': 5.0, 'hands': 1.0, 'bought': 1.0, 'believe': 1.0, 'first': 1.0, 'are': 3.0, 'with': 2.0, 'blankets': 3.0, 'they': 3.0, 'aren': 1.0, 'but': 2.0, 'used': 1.0, 'his': 2.0, 'times': 1.0, 'bundling': 1.0, 'have': 1.0, 'favorite': 1.0, 'up': 1.0, 'don': 1.0, 'stroller': 1.0, 'use': 1.0, 'time': 1.0, 'and': 3.0, 'number': 1.0, 'only': 1.0, 'much': 2.0, 'washes': 1.0, 'would': 1.0, 'mention': 1.0, 'because': 1.0, 'everywhere': 1.0, 'that': 1.0, 'thinner': 1.0, 'quite': 1.0, 'snuggle': 1.0, 'even': 1.0, 'after': 1.0, 'the': 6.0, 'of': 2.0, 'wrong': 1.0, 'washing': 1.0, '34': 4.0, 'ply': 2.0, 'felt': 1.0, 'him': 2.0, 'it': 1.0, 'me': 2.0, 'my': 1.0, 'find': 1.0, 'friend': 1.0, 'single': 1.0, 'touch': 1.0}
Word element => {'experience': 1.0, 'overall': 1.0, 'told': 1.0, 'about': 1.0, 'complain': 1.0, 'can': 1.0, 'which': 1.0, 'a': 2.0, 'items': 1.0, 'i': 2.0, 'sometimes': 1.0, 'arrive': 1.0, 'would': 1.0, 'but': 1.0, 'quality': 1.0, 'coming': 1.0, 'described': 1.0, 'like': 1.0, 'good': 2.0, 'early': 1.0, 'just': 1.0, 'very': 1.0, 'as': 2.0, 'day': 2.0, 'came': 1.0, 'product': 2.0, 'what': 1.0, 'works': 1.0, 'get': 1.0, 'and': 1.0, 'perfectly': 1.0, 'looked': 1.0, 'this': 1.0, 'it': 3.0, 'for': 2.0, 'buying': 1.0, 'hoping': 1.0, 'was': 3.0, 'needed': 1.0, 'arrived': 1.0, 'on': 1.0, 'great': 1.0, 't': 1.0, 'the': 1.0, 'said': 1.0, 'amazon': 1.0}
Word element => {'breathable': 1.0, 'hot': 1.0, 'and': 1.0, 'not': 2.0, 'started': 1.0, 'was': 1.0, 'using': 1.0, 'for': 2.0, 'heavy': 1.0, 'these': 1.0, 't': 1.0, 'didn': 1.0, 'month': 1.0, 'like': 2.0, 'blanket': 2.0, 'swaddling': 1.0, 'i': 2.0, 'too': 3.0, 'my': 1.0, 'as': 1.0, 'kind': 1.0, 'big': 1.0, 'son': 1.0, 'we': 2.0, 'it': 3.0, 'stopped': 1.0, 'since': 1.0, 'a': 1.0, 'after': 1.0, 'swaddle': 1.0, 'so': 1.0}
Word element => {'through': 1.0, 'than': 1.0, 'inches': 1.0, 'few': 1.0, 'even': 1.0, 'amazon': 1.0, 'bought': 1.0, 'worth': 1.0, 'expensive': 1.0, 'sold': 1.0, 'bit': 1.0, 'like': 1.0, 's': 2.0, 'we': 3.0, 't': 2.0, 'a': 3.0, 'my': 3.0, 'another': 2.0, 'sun': 1.0, 'head': 1.0, 'ones': 1.0, 'too': 1.0, 'and': 6.0, 'when': 4.0, 'times': 1.0, 'desperation': 1.0, 'r': 2.0, 'nursing': 1.0, 'public': 1.0, 'while': 1.0, 'cover': 3.0, 'enough': 1.0, 'them': 2.0, 'how': 1.0, 'our': 1.0, 'to': 7.0, 'any': 1.0, 'set': 2.0, 'by': 1.0, 'bright': 1.0, 'i': 8.0, 'well': 2.0, 'blankets': 1.0, 'but': 1.0, 'size': 1.0, 'because': 1.0, 'that': 1.0, 'more': 1.0, 'babies': 2.0, 'were': 3.0, 'swaddle': 2.0, 'large': 2.0, 'swaddling': 2.0, 'stretch': 1.0, 'use': 1.0, 'larger': 1.0, 'purchased': 2.0, 'don': 2.0, 'over': 1.0, 'favorite': 1.0, 'up': 1.0, 'these': 2.0, 'thickness': 1.0, 'weight': 1.0, 'can': 1.0, 'so': 2.0, 'needs': 1.0, 'he': 2.0, 'fold': 2.0, 'totally': 1.0, 'under': 1.0, 'depending': 1.0, 'on': 2.0, 'lap': 1.0, 'washed': 1.0, 'warm': 1.0, 'or': 1.0, 'car': 1.0, 'cool': 1.0, 'keep': 1.0, 'is': 2.0, 'at': 1.0, 'arm': 1.0, 'cradling': 1.0, 'his': 1.0, 'get': 1.0, 'sweaty': 1.0, 'nearby': 1.0, 'skin': 2.0, 'in': 2.0, 'seat': 1.0, 'm': 1.0, 'thought': 1.0, 'it': 4.0, 'him': 1.0, 'have': 1.0, 'dried': 1.0, 'baby': 2.0, 'many': 3.0, 'they': 2.0, 'first': 1.0, 'are': 1.0, 'blanket': 1.0, 'holding': 1.0, 'out': 1.0, 'the': 5.0, 'of': 1.0, 'also': 1.0, 'us': 2.0, 'reason': 1.0, 'light': 1.0, 'looking': 1.0, 'for': 1.0, 'which': 1.0, 'good': 1.0}
Word element => {'so': 1.0, 'are': 1.0, 'seat': 1.0, 'car': 1.0, 'summer': 1.0, 'work': 1.0, 'well': 2.0, 'up': 1.0, 'new': 1.0, 'with': 1.0, 'covers': 1.0, 'clean': 1.0, 'them': 1.0, 'share': 1.0, 'were': 1.0, 'my': 2.0, 'blankets': 2.0, 'year': 1.0, 'best': 1.0, 'as': 1.0, 'your': 1.0, 'they': 4.0, 'soft': 1.0, 'swaddling': 1.0, 'we': 1.0, 'the': 1.0, 'infants': 1.0, 'these': 1.0, '2': 2.0, 'sisters': 1.0, 'and': 2.0, '1': 1.0, 'old': 1.0, 'to': 2.0, 'for': 3.0, 'love': 2.0, 'continues': 1.0, 'she': 1.0, 'her': 2.0, 'refuses': 1.0}
Word element => {'a': 1.0, 'i': 1.0, 'beautiful': 1.0, 'fabric': 1.0, 'will': 1.0, 'gift': 1.0, 'worth': 1.0, 'every': 1.0, 'and': 3.0, 'be': 1.0, 'to': 1.0, 'are': 1.0, 'using': 1.0, 'for': 2.0, 'colors': 1.0, 'baby': 1.0, 'years': 1.0, 'come': 1.0, 'penny': 1.0, 'these': 1.0, 'such': 1.0, 'the': 2.0, 'more': 1.0, 'great': 1.0}
Word element => {'soft': 1.0, 'they': 1.0, 'help': 1.0, 'and': 2.0, 'son': 1.0, 'loves': 1.0, 'i': 2.0, 'them': 3.0, 'breathable': 1.0, 'to': 2.0, 'sleep': 1.0, 'stroller': 1.0, 'use': 2.0, 'shade': 1.0, 'in': 2.0, 'him': 1.0, 'are': 1.0, 'my': 1.0, 'the': 1.0}
Word element => {'not': 1.0, 'certainly': 1.0, 'is': 1.0, 'through': 1.0, 'burp': 1.0, 'lint': 1.0, 'were': 2.0, 'of': 2.0, 'washed': 1.0, 'seller': 2.0, 'fine': 1.0, 'today': 1.0, 'whole': 1.0, 'i': 4.0, 'this': 3.0, 'from': 3.0, 'the': 6.0, 'decent': 1.0, 'these': 2.0, 'bunch': 1.0, 'ones': 2.0, 'set': 1.0, 'damaged': 1.0, 'had': 1.0, 'purchased': 4.0, 'just': 2.0, 'and': 6.0, 'amazon': 2.0, 'nordstrom': 2.0, 'perfectly': 1.0, 'another': 1.0, 'anais': 2.0, 'at': 2.0, 'three': 1.0, 'ripped': 1.0, 'after': 2.0, 'else': 1.0, 'wash': 2.0, 'anyone': 1.0, 'same': 2.0, 'different': 1.0, 'design': 1.0, 'tell': 1.0, 'has': 1.0, 'makes': 1.0, 'experienced': 1.0, 'but': 1.0, 'blankets': 4.0, 'four': 1.0, 'can': 1.0, 'are': 1.0, 'clothes': 1.0, 'them': 1.0, 'quality': 1.0, 'aden': 2.0}
Word element => {'material': 1.0, 'nice': 1.0, 'cloths': 1.0, 'much': 1.0, 'very': 1.0, 'as': 2.0, 'blankets': 1.0, 'use': 1.0, 'but': 1.0, 'happy': 1.0, 'are': 1.0, 'we': 1.0, 'comfy': 1.0, 'and': 1.0, 'get': 1.0, 'muslins': 1.0, 'just': 1.0, 'not': 1.0, 'swaddles': 1.0, 'these': 1.0, 'with': 1.0, 'towels': 1.0, 'of': 1.0, 'out': 1.0, 'them': 1.0, 'covers': 1.0, 'burp': 1.0}
Word element => {'recommend': 1.0, 'highly': 1.0, 'much': 1.0, 'it': 1.0, 'do': 1.0, 'and': 2.0, 'as': 2.0, 'very': 1.0, 'm': 1.0, 'wrap': 1.0, 'i': 3.0, 'my': 1.0, 'one': 1.0, 'for': 1.0, 'looking': 1.0, 'soft': 1.0, 'perfect': 1.0, 'muslin': 1.0, 'was': 1.0, 'swaddle': 1.0, 'so': 1.0, 'glad': 1.0, 'bought': 1.0, 'fabric': 1.0, 'the': 1.0, 'these': 1.0, 'lets': 1.0, 'loves': 1.0, 'hope': 1.0, 'breathable': 1.0, 'lil': 1.0}
Word element => {'packages': 1.0, 'swaddle': 2.0, 'so': 3.0, 'can': 1.0, 't': 1.0, 'these': 1.0, 'the': 1.0, 'two': 1.0, 'become': 2.0, 'i': 3.0, 'overheated': 1.0, 'are': 3.0, 'ordered': 1.0, 'swaddling': 2.0, 'perfect': 1.0, 'also': 1.0, 'over': 1.0, 'large': 1.0, 'wrapped': 1.0, 'happy': 1.0, 'lightweight': 1.0, 'my': 1.0, 'easily': 1.0, 'am': 1.0, 'you': 1.0, 'baby': 4.0, 'clothes': 1.0, 'that': 1.0, 'they': 2.0, 'won': 1.0, 'easier': 1.0, 'has': 1.0, 'for': 1.0, 'wraps': 1.0, 'nice': 1.0, 'expert': 1.0, 'and': 1.0, 'it': 1.0, 'is': 1.0, 'to': 1.0, 'husband': 1.0, 'buying': 1.0, 'securely': 1.0, 'even': 1.0, 'an': 1.0, 'keep': 1.0, 'at': 1.0, 'would': 1.0, 'recommend': 1.0}
Word element => {'again': 1.0, 'would': 1.0, 'absolutely': 1.0, 'warmer': 1.0, 'during': 1.0, 'nice': 1.0, 'so': 1.0, 's': 1.0, 'and': 1.0, 'seat': 1.0, 'car': 1.0, 'cover': 1.0, 'easily': 1.0, 'them': 1.0, 'or': 1.0, 'buy': 1.0, 'i': 4.0, 'around': 1.0, 'really': 1.0, 'had': 2.0, 'weather': 1.0, 'wish': 1.0, 'baby': 1.0, 'years': 1.0, 'about': 1.0, 'wrapping': 1.0, 'been': 1.0, 'known': 1.0, 'large': 1.0, 'son': 1.0, 'these': 2.0, 'the': 3.0, 'it': 2.0, 'only': 1.0, 'with': 1.0, 'first': 1.0, 'up': 1.0, '6': 1.0, 'my': 1.0, 'ago': 1.0, 'for': 1.0, 'love': 1.0, 'can': 1.0, 'size': 1.0}
Word element => {'neck': 1.0, 'around': 1.0, 'tie': 1.0, 'you': 1.0, 'if': 1.0, 'nursing': 1.0, 'a': 1.0, 'be': 1.0, 'can': 1.0, 'comfortable': 1.0, 'weight': 1.0, 'is': 1.0, 'my': 1.0, 'are': 3.0, 'blankets': 1.0, 'incredible': 1.0, 'and': 2.0, 'most': 1.0, 'cover': 1.0, 'light': 1.0, 'your': 1.0, 'they': 2.0, '3': 1.0, 'still': 1.0, 'to': 1.0, 'uses': 1.0, 'used': 1.0, 'his': 1.0, 'as': 1.0, 'son': 1.0, 'big': 1.0, 'the': 1.0, 'these': 1.0, 'great': 1.0, 'so': 1.0, 'swaddle': 1.0}
Word element => {'resolved': 1.0, 'it': 1.0, 'but': 1.0, 'issue': 1.0, 'be': 2.0, 'this': 1.0, 'know': 1.0, 'people': 1.0, 'can': 2.0, 'so': 1.0, 'just': 1.0, 'star': 1.0, 'review': 1.0, 'product': 1.0, 'service': 1.0, 'than': 2.0, 'aden': 1.0, 'an': 1.0, 'other': 1.0, 'have': 2.0, 'and': 5.0, 'gift': 1.0, 'anais': 1.0, 'as': 1.0, 'to': 2.0, 'recieved': 1.0, 'sending': 1.0, 'did': 1.0, 'am': 2.0, 'threw': 1.0, 'shower': 1.0, 'with': 5.0, 'registry': 1.0, 'really': 1.0, 'they': 4.0, 'gorgeous': 1.0, 'will': 2.0, 'forward': 1.0, 'worst': 1.0, 'blankets': 6.0, '2': 1.0, 'identical': 1.0, 'take': 1.0, 'came': 2.0, 'looking': 1.0, 'threads': 1.0, 'i': 11.0, 'two': 1.0, '4': 1.0, 'washer': 1.0, 'immediately': 1.0, 'snag': 1.0, 'was': 2.0, 'delicate': 1.0, 'after': 3.0, 'package': 1.0, 'these': 2.0, 'others': 1.0, 'of': 4.0, 'the': 13.0, 'box': 1.0, 'everywhere': 1.0, 'that': 3.0, 'initially': 1.0, 'been': 1.0, 'detergent': 1.0, 'washing': 1.0, 'also': 1.0, 'batch': 1.0, 'received': 1.0, 'out': 4.0, 'update': 2.0, 'snagged': 2.0, 't': 1.0, 'replacement': 2.0, 'sadly': 1.0, 'couple': 1.0, 'them': 1.0, 'by': 2.0, 'in': 1.0, 'sad': 1.0, 'face': 1.0, '12': 2.0, 'what': 1.0, '13': 2.0, 'notice': 1.0, 'at': 2.0, 'a': 9.0, 'emailed': 1.0, 'my': 2.0, 'me': 1.0, 'those': 1.0, 'new': 2.0, 'pack': 2.0, 'off': 1.0, 'see': 1.0, 'happensupdate': 1.0, '10': 1.0, 'from': 1.0, 'while': 1.0, 'happy': 1.0, 'one': 2.0, 'themselves': 1.0, 'didn': 1.0, 'were': 2.0, 'wash': 2.0, 'smaller': 2.0, 'inches': 1.0, 'leaving': 1.0, 'very': 2.0, 'customer': 1.0, 'quality': 1.0, 'their': 1.0, 'replacements': 1.0, 'unhappy': 1.0, 'are': 1.0, 'first': 1.0, 'impressed': 1.0}
Word element => {'everyone': 1.0, 'to': 1.0, 'recommend': 1.0, 'u': 1.0, 'wash': 1.0, 'softer': 1.0, 'get': 1.0, 'definitely': 1.0, 'm': 1.0, 'years': 1.0, 'use': 1.0, 'will': 1.0, 'around': 1.0, 'carrying': 1.0, 'always': 1.0, 'plus': 1.0, 'little': 1.0, 'keep': 1.0, 'he': 1.0, 'only': 1.0, 'blankets': 2.0, 'these': 1.0, 'ones': 1.0, 'the': 3.0, 'are': 1.0, 'my': 1.0, 'for': 1.0, 'love': 1.0, 'i': 4.0, 'sure': 1.0, 'dream': 1.0, 'they': 2.0, 'boy': 1.0, 'like': 1.0, 'blanket': 1.0, 'linus': 1.0, 'looks': 1.0, 'is': 1.0, 'as': 1.0, 'from': 1.0, 'peanuts': 1.0}
Word element => {'mention': 1.0, 'product': 1.0, 'reccommend': 1.0, 'times': 1.0, 'used': 1.0, 'day': 1.0, 'up': 1.0, 'using': 1.0, 'myself': 1.0, 'much': 1.0, 'so': 2.0, 'in': 2.0, 'air': 2.0, 'growth': 1.0, 'when': 1.0, 'babies': 1.0, 'breastfeeding': 1.0, 'grow': 1.0, 'to': 4.0, 'as': 3.0, 'our': 1.0, 'size': 1.0, 'but': 2.0, 'will': 1.0, 'also': 1.0, 'not': 2.0, 'i': 3.0, 'and': 4.0, 'found': 1.0, 'sold': 1.0, 'better': 1.0, 'pillow': 1.0, 'll': 1.0, 'true': 1.0, 'smaller': 1.0, 'inches': 1.0, 'several': 1.0, 'bigger': 2.0, 'is': 4.0, 'at': 1.0, 'highly': 1.0, 'this': 2.0, 'freely': 1.0, 'on': 3.0, 'keeps': 1.0, 'your': 1.0, 'rapid': 1.0, 'allows': 1.0, 'with': 1.0, 'only': 1.0, 'it': 10.0, 'my': 1.0, 'underneath': 1.0, 'tight': 1.0, 'giving': 1.0, 's': 2.0, 'a': 5.0, 'ordered': 1.0, 'being': 2.0, 'another': 1.0, 'extra': 1.0, 'soft': 1.0, 'tell': 1.0, 'we': 1.0, 'then': 1.0, 'review': 1.0, 'hot': 1.0, 'blanket': 1.0, 'for': 2.0, 'again': 1.0, 'cool': 1.0, 'one': 2.0, 'ones': 1.0, 'handy': 1.0, 'why': 1.0, 'just': 1.0, 'swaddler': 1.0, 'everything': 1.0, 'wife': 1.0, 'breastfeed': 1.0, 'public': 1.0, 'you': 1.0, 'things': 1.0, 'areas': 1.0, 'great': 1.0, 'wrapped': 1.0, 'stays': 1.0, 'pass': 2.0, 'comfortable': 1.0, 'cover': 2.0, 'many': 1.0, 'becomes': 1.0, 'she': 1.0, 'baby': 2.0, 'that': 1.0, 'because': 1.0, 'through': 2.0, 'material': 1.0, 'swaddle': 1.0, 'about': 2.0, 'awesome': 1.0, 'like': 1.0, 'target': 2.0, 'always': 1.0, 'gift': 1.0, 'based': 1.0, 'made': 1.0, 'side': 1.0, 'the': 6.0, 'of': 1.0, 'comes': 1.0, 'once': 1.0, 'allowing': 1.0, 'are': 1.0, 'plus': 1.0, 'extremely': 1.0}
Word element => {'them': 1.0, 'love': 1.0, 'brand': 1.0, 'bother': 1.0, 'too': 1.0, 'had': 1.0, 'george': 1.0, 'prince': 1.0, 'pack': 2.0, 'with': 1.0, 'this': 1.0, 'others': 1.0, 'is': 1.0, 'many': 1.0, 'like': 1.0, 'down': 1.0, 'brands': 1.0, 'hands': 1.0, 'other': 2.0, 'do': 1.0, 'and': 3.0, 'quality': 1.0, 'of': 1.0, 'up': 1.0, 'most': 1.0, 'ones': 1.0, 'these': 1.0, 't': 1.0, 'the': 4.0, 'are': 3.0, 'tried': 1.0, 'i': 1.0, 'aden': 1.0, 'any': 1.0, 'don': 1.0, 'anais': 1.0, 'pilling': 1.0, 'best': 2.0, 'they': 1.0, 've': 1.0, 'wash': 1.0, 'so': 1.0, 'well': 1.0, 'without': 1.0}
Word element => {'offer': 1.0, 'has': 1.0, 'so': 1.0, 'use': 1.0, 'than': 1.0, 'just': 1.0, 'all': 1.0, 'aden': 1.0, 'many': 1.0, 'that': 1.0, 'to': 2.0, 'product': 1.0, 'enough': 1.0, 'in': 1.0, 'more': 1.0, 'large': 1.0, 'soft': 1.0, 'and': 2.0, 'perfectly': 1.0, 'love': 1.0, 'ways': 1.0, 'a': 1.0, 'blanket': 1.0, 'this': 1.0, 'anais': 1.0}
Word element => {'price': 1.0, 'totally': 1.0, 'retail': 1.0, 'below': 1.0, 'worth': 1.0, 'found': 1.0, 'be': 1.0, 'so': 1.0, 'for': 1.0, 'many': 1.0, 'amazon': 1.0, 'on': 1.0, 'huge': 1.0, 'and': 1.0, '40': 1.0, 'blankets': 2.0, 'but': 1.0, 'work': 1.0, 'makeshift': 1.0, 'to': 1.0, 'was': 1.0, 'score': 1.0, 'soft': 1.0, 'amazing': 1.0, 'they': 2.0, 'afford': 1.0, 'the': 1.0, 'these': 1.0, 'full': 1.0, 'are': 2.0, 'can': 2.0, 'seriously': 1.0, 'set': 1.0, 'sunshades': 1.0, 'burp': 1.0, 'as': 3.0, 'changing': 1.0, 'this': 1.0, 'it': 1.0, 'pad': 1.0, 'you': 2.0, 'able': 1.0, 'name': 1.0, 'buy': 1.0, 'cloth': 1.0, 'i': 1.0}
Word element => {'filter': 1.0, 'huge': 1.0, 'due': 1.0, 'thinner': 1.0, 'wash': 2.0, 'lint': 1.0, 'each': 2.0, 'after': 1.0, 'then': 1.0, 'many': 1.0, 'anything': 1.0, 'awesome': 1.0, 'prongs': 1.0, 'wearing': 1.0, 'snags': 2.0, 'about': 1.0, 'cotton': 1.0, 'be': 2.0, 'figure': 1.0, 'very': 1.0, 'snag': 2.0, 'tend': 1.0, 'loss': 1.0, 'they': 3.0, 'rings': 1.0, 'also': 2.0, 'tears': 1.0, 'get': 3.0, 'if': 2.0, 'way': 1.0, 'however': 1.0, 'time': 1.0, 'so': 1.0, 'swaddle': 2.0, 'overheat': 1.0, 'for': 1.0, 'may': 1.0, 'tight': 1.0, 'he': 1.0, 'this': 3.0, 'these': 1.0, 'great': 1.0, 'careful': 1.0, 'the': 9.0, 'doesn': 1.0, 's': 1.0, 't': 1.0, 'a': 1.0, 'softer': 1.0, 'baby': 2.0, 'happiest': 1.0, 'amounts': 1.0, 'sharp': 1.0, 'try': 1.0, 'risk': 1.0, 'extra': 1.0, 'dryer': 1.0, 'have': 1.0, 'must': 1.0, 'snug': 1.0, 'but': 1.0, 'can': 1.0, '2': 1.0, 'blankets': 1.0, 'in': 2.0, 'on': 1.0, 'easily': 1.0, 'you': 4.0, 'happened': 1.0, 'i': 1.0, '4': 1.0, 'and': 3.0, 'tuck': 1.0, 'block': 1.0, 'ripping': 1.0, 'by': 1.0, 'evidenced': 1.0, 'heat': 1.0, 'corners': 1.0, 'are': 2.0, 'blanket': 1.0, 'of': 5.0, 'overlook': 1.0, 'well': 1.0, 'has': 1.0, 'fl': 1.0, 'out': 1.0, 'as': 3.0, 'to': 6.0, 'our': 1.0}
Word element => {'go': 1.0, 'sleep': 1.0, 'older': 1.0, 'wiggly': 1.0, 'great': 1.0, 'reviewer': 1.0, 'another': 1.0, 'by': 1.0, 'youtube': 1.0, 'on': 1.0, 'double': 1.0, 'out': 1.0, 'also': 1.0, 'like': 1.0, 'needs': 1.0, 'year': 1.0, 'sure': 1.0, 'there': 1.0, 'corner': 1.0, 'top': 1.0, 'enjoy': 1.0, 'if': 1.0, 'still': 2.0, 'bigger': 1.0, 'now': 1.0, 'way': 2.0, 'that': 1.0, 'my': 4.0, 'up': 2.0, 'don': 1.0, 'blanket': 1.0, 'are': 2.0, 'doubled': 1.0, 'but': 2.0, 'blankets': 4.0, 'will': 1.0, 'check': 1.0, 'breathable': 2.0, 'expensive': 1.0, 'for': 3.0, 'fold': 1.0, 'love': 1.0, 'who': 1.0, 'colicky': 1.0, 'can': 1.0, 'constantly': 1.0, 'so': 2.0, 'swaddle': 5.0, 'need': 1.0, 'is': 2.0, 'babies': 1.0, 'more': 2.0, 'brother': 1.0, 'sleeps': 1.0, 'swaddling': 1.0, 'summer': 1.0, 'really': 1.0, 'to': 7.0, 'was': 2.0, 'thinking': 1.0, '4': 1.0, 'they': 2.0, 'generous': 1.0, 'lightness': 1.0, 'when': 1.0, 'folded': 1.0, 'recommended': 1.0, 'and': 4.0, 'only': 1.0, 'do': 1.0, 'much': 1.0, 'too': 1.0, 'one': 1.0, 'bought': 1.0, 'secure': 1.0, 'triangle': 1.0, 'works': 1.0, 'soft': 1.0, 'perfect': 1.0, 'this': 1.0, 'eyes': 2.0, 'answer': 1.0, 'as': 2.0, 'diaper': 1.0, 'room': 1.0, 'these': 2.0, 'of': 3.0, 'the': 9.0, 'winter': 1.0, 'nature': 1.0, 'be': 1.0, 'form': 1.0, 'constant': 1.0, 'down': 1.0, 've': 1.0, 'started': 1.0, 'them': 1.0, 'light': 1.0, 'bag': 1.0, 'using': 1.0, 'hood': 1.0, 'nursing': 1.0, 'cover': 2.0, 'it': 6.0, 'baby': 2.0, 'she': 3.0, 'instead': 1.0, 'even': 1.0, 'think': 1.0, 'better': 1.0, 'plenty': 1.0, 'with': 3.0, 'use': 2.0, 'her': 5.0, 'skeptical': 1.0, 'covered': 1.0, 'size': 1.0, 'in': 4.0, 'm': 2.0, 'small': 1.0, 'a': 5.0, 't': 1.0, 's': 4.0, 'little': 1.0, 'say': 1.0, 'comfortable': 1.0, 'worry': 1.0, 'rolls': 1.0, 'swaddled': 1.0, 'i': 13.0, 'well': 1.0, 'half': 1.0, 'monitored': 1.0, 'key': 1.0, 'did': 1.0, 'makes': 1.0, 'easy': 1.0, 'newborn': 1.0}
Word element => {'right': 1.0, 'it': 1.0, 'be': 1.0, 'or': 1.0, 'these': 1.0, 'are': 4.0, 'swaddle': 1.0, 'tight': 1.0, 'body': 1.0, 'needs': 1.0, 'also': 2.0, 'still': 1.0, 'if': 3.0, 't': 1.0, 'a': 3.0, 'flexible': 1.0, 'tells': 1.0, 'standard': 1.0, 'runs': 1.0, 'other': 1.0, 'have': 1.0, 'nursing': 1.0, 'doing': 1.0, 'full': 1.0, 'swaddling': 2.0, 'baby': 2.0, 'good': 3.0, 'burp': 1.0, 'outgrown': 1.0, 'you': 2.0, 'someone': 1.0, 'great': 1.0, 'big': 2.0, 'that': 1.0, 'changing': 1.0, 'they': 4.0, 'your': 1.0, 'toy': 1.0, 'has': 1.0, 'hot': 1.0, 'car': 1.0, 'and': 2.0, 'too': 2.0, 'warm': 1.0, 'aren': 1.0, 'blankets': 3.0, 'can': 1.0, 'multipurpose': 1.0, 'pad': 1.0, 'cover': 1.0, 'to': 1.0, 'as': 1.0, 'seat': 1.0, 'shade': 2.0, 'stroller': 1.0, 'cloth': 1.0, 'etc': 1.0}
Word element => {'aden': 1.0, 'reason': 1.0, 'able': 1.0, 'were': 1.0, 'weight': 1.0, 'percentile': 1.0, 'more': 1.0, 'is': 1.0, 'my': 1.0, 'big': 1.0, 'anais': 1.0, 'because': 1.0, 'about': 1.0, 'burp': 1.0, 'swaddle': 2.0, 'uses': 1.0, 'have': 1.0, 'how': 1.0, 'blankets': 2.0, 'but': 2.0, '90': 1.0, 'so': 1.0, 'original': 1.0, 'of': 1.0, 'skeptical': 1.0, '4': 1.0, 'i': 5.0, 'soft': 1.0, 'found': 2.0, 'they': 5.0, 'anything': 1.0, 'target': 1.0, 'pretty': 2.0, 'products': 1.0, 'some': 1.0, 'discontinued': 1.0, 'already': 1.0, 'these': 2.0, 'the': 5.0, 'stock': 1.0, 'ones': 2.0, 'first': 1.0, 'loved': 1.0, 'through': 1.0, 'friend': 1.0, 'case': 1.0, 'that': 2.0, 'pricey': 1.0, 'had': 1.0, 'was': 1.0, 're': 3.0, 'we': 1.0, 'a': 1.0, 'baby': 1.0, 'clothes': 1.0, 'them': 3.0, 'at': 2.0, 'super': 2.0, 'covers': 1.0, 'she': 1.0, 'draped': 1.0, 'are': 3.0, 'up': 2.0, 'over': 1.0, 'why': 1.0, 'car': 2.0, 'all': 1.0, 'as': 2.0, 'to': 4.0, 'seat': 2.0, 'just': 2.0, 'age': 1.0, 'in': 4.0, 'summer': 1.0, 'months': 2.0, 'bought': 2.0, 'him': 1.0, 'multiple': 1.0, 'be': 1.0, 'love': 2.0, 'expensive': 1.0, 'for': 3.0, 'and': 3.0, 'good': 1.0, 'sure': 1.0}
Word element => {'washes': 1.0, 'many': 1.0, 'remaind': 1.0, 'recommend': 1.0, 'good': 1.0, 'product': 1.0, 'color': 1.0, 'will': 1.0, 'same': 1.0, 'its': 1.0, 'after': 2.0, 'elasticity': 1.0, 'a': 1.0, 'the': 2.0, 'but': 1.0, 'loses': 1.0, 'while': 1.0}
Word element => {'light': 1.0, 'breathable': 1.0, 'very': 1.0, 'and': 2.0, 'is': 2.0, 'it': 1.0, 'perfect': 1.0, 'blanket': 1.0, 'fabric': 1.0, 'summer': 1.0, 'a': 2.0, 'roomy': 1.0, 's': 1.0, 'swaddle': 1.0, 'for': 1.0, 'infant': 1.0, 'its': 1.0, 'size': 1.0}
Word element => {'clean': 1.0, 'easy': 1.0, 'light': 1.0, 'to': 1.0, 'breathable': 1.0, 'thin': 1.0, 'largest': 1.0, 'and': 2.0, 'blankets': 1.0, 'nursing': 1.0, 'softest': 1.0, 'for': 1.0, 'seat': 1.0, 'bassinet': 1.0, 'weight': 1.0, 'multifunction': 1.0, 'cover': 1.0, 'car': 1.0, 'swaddling': 1.0, 'over': 1.0}
Word element => {'color': 1.0, 'from': 1.0, 'bought': 1.0, 'the': 1.0, 'target': 1.0, 'than': 1.0, 'pretty': 1.0, 'better': 1.0, 'very': 1.0, 'nice': 1.0, 'feels': 2.0, 'this': 1.0, 'soft': 1.0, 'so': 1.0, 'wash': 1.0, 'after': 1.0, 'product': 1.0, 'first': 1.0, 'one': 2.0}
Word element => {'pattern': 1.0, 'mash': 1.0, 'monster': 1.0, 'the': 1.0, 'new': 1.0, 'really': 1.0, 'recommend': 1.0, 'aden': 1.0, 'any': 1.0, 'highly': 1.0, 'and': 1.0, 'also': 1.0, 'parents': 1.0, 'never': 1.0, 'love': 1.0, 'great': 1.0, 'anais': 1.0, 'to': 1.0, 'product': 1.0, 'disappoint': 1.0, 'that': 1.0, 'i': 1.0, 'would': 1.0}
Word element => {'buy': 1.0, 'learners': 1.0, 'little': 1.0, 'practical': 1.0, 'tidy': 1.0, 'fun': 1.0, 'more': 2.0, 'see': 1.0, 'watch': 1.0, 'thoughts': 1.0, 'initial': 1.0, 'then': 1.0, 'include': 1.0, 'also': 1.0, 'have': 1.0, 'and': 3.0, 'such': 1.0, 'these': 1.0, 'of': 1.0, 'without': 1.0, 'herself': 1.0, 'was': 3.0, 'look': 1.0, 'makes': 1.0, 'old': 1.0, '4': 1.0, 'i': 7.0, '7': 1.0, 'one': 1.0, 'advice': 1.0, 'bought': 1.0, 'months': 2.0, 'about': 2.0, 'thought': 1.0, 'what': 1.0, 'than': 1.0, 'does': 1.0, 'now': 1.0, 'weird': 1.0, 'given': 1.0, 'using': 1.0, 'for': 2.0, 'love': 1.0, 'just': 1.0, 'by': 2.0, 'idea': 1.0, 'am': 1.0, 'when': 1.0, 'daughter': 1.0, 'loves': 1.0, 'this': 4.0, 'with': 1.0, 'great': 1.0, '1': 1.0, 'much': 1.0, 'assistance': 1.0, 'do': 1.0, 'or': 1.0, 'cup': 2.0, 'my': 4.0, '6': 1.0, 'own': 1.0, 'friend': 1.0, 'can': 1.0, '2': 1.0, 'why': 1.0, 'friends': 1.0, 'so': 2.0, '3': 1.0, 'it': 4.0, 'she': 4.0, 'we': 1.0, 'going': 2.0, 'a': 2.0, 's': 1.0, 'never': 1.0, 'use': 1.0, 'wrong': 1.0, 'them': 2.0, 'started': 1.0, 'at': 1.0, '16': 1.0, 'tell': 1.0, 'drink': 1.0, 'to': 3.0, 'all': 1.0}
Word element => {'new': 1.0, 'the': 1.0, 'babies': 1.0, 'all': 1.0, 'our': 1.0, 'at': 1.0, 'months': 2.0, 'uses': 1.0, '10': 1.0, 'when': 1.0, 'daughter': 1.0, 'cup': 1.0, 'using': 1.0, 'started': 1.0, 'we': 2.0, '20': 1.0, 'old': 1.0, 'still': 1.0, 'was': 1.0, 'now': 1.0, 'to': 1.0, 'she': 1.0, 'this': 1.0, 'it': 2.0, 'give': 1.0, 'as': 1.0, 'gifts': 1.0}
Word element => {'there': 1.0, 'getting': 1.0, 're': 1.0, 'herself': 1.0, 'up': 1.0, 'exactly': 1.0, 'not': 1.0, 'months': 1.0, 'down': 1.0, '8': 1.0, 'pretty': 1.0, 'her': 1.0, 'tried': 1.0, 'research': 1.0, 'still': 1.0, 'cup': 2.0, 'some': 1.0, 'sippy': 1.0, 'at': 2.0, 'friend': 1.0, 'few': 1.0, 'were': 1.0, 'this': 1.0, 'found': 1.0, 'doing': 1.0, 'spillage': 1.0, 'was': 1.0, 'otherwise': 1.0, 'i': 3.0, 'speech': 1.0, 'times': 1.0, 'hold': 1.0, 'per': 1.0, 'avoid': 1.0, 'therapist': 1.0, 'from': 2.0, 'lifting': 1.0, 'out': 2.0, 'and': 2.0, 'putting': 1.0, 'trying': 1.0, 'within': 1.0, 'figured': 1.0, 'car': 1.0, 's': 2.0, 'we': 2.0, 'a': 1.0, 'it': 4.0, 'she': 3.0, 'able': 1.0, 'our': 1.0, 'cups': 1.0, 'to': 4.0, 'all': 1.0, 'have': 1.0, 'drink': 1.0, 'much': 2.0, 'without': 1.0, 'the': 3.0, 'but': 2.0, 'guide': 1.0, 'after': 1.0, 'base': 1.0, 'recommendations': 1.0, 'of': 1.0}
Word element => {'bath': 1.0, 'graded': 1.0, 'and': 1.0, 'rarely': 1.0, 'daughter': 1.0, 'that': 1.0, 'down': 1.0, 'used': 1.0, 'except': 1.0, 'than': 1.0, 'better': 1.0, 'toy': 1.0, 'any': 1.0, 'of': 1.0, 'is': 1.0, 'regular': 1.0, 'really': 1.0, 'my': 1.0, 'cup': 2.0, 'have': 1.0, 'all': 1.0, 'i': 1.0, 'buy': 1.0, 'reviews': 1.0, 'in': 1.0, 'plastic': 1.0, 'kid': 1.0, 'drawn': 1.0, 'it': 3.0, 'this': 2.0, 'the': 1.0, 'great': 1.0, 't': 1.0, 'bought': 1.0, 'a': 3.0, 'help': 1.0, 'drink': 1.0, 'now': 1.0, 'to': 3.0, 'doesn': 1.0, 'train': 1.0, 'your': 1.0, 'from': 1.0}
Word element => {'cup': 1.0, 'way': 1.0, 'can': 1.0, 'tell': 1.0, 'those': 1.0, 'but': 1.0, 'theraphy': 1.0, 'far': 1.0, 'who': 1.0, 'designed': 1.0, 'has': 1.0, 'as': 1.0, 'son': 1.0, 'for': 2.0, 'this': 1.0, 'only': 2.0, 'is': 3.0, 'change': 1.0, 'great': 1.0, 'that': 1.0, 'our': 1.0, 'product': 1.0, 'be': 1.0, 'bought': 1.0, 'thing': 1.0, 'would': 1.0, 'i': 2.0, 'handles': 1.0, 'a': 1.0, 'feeding': 1.0, 'little': 2.0, 'hands': 1.0, 'bigger': 1.0}
Word element => {'of': 1.0, 'full': 1.0, 'nose': 1.0, 'times': 1.0, 'few': 1.0, 'water': 1.0, 'mouth': 1.0, 'reaching': 1.0, 'was': 1.0, 'his': 1.0, 'liquid': 1.0, 'when': 1.0, 'month': 1.0, 'were': 1.0, 'improvement': 1.0, 'be': 1.0, 'likes': 1.0, '10': 1.0, 'gotten': 1.0, 'and': 1.0, 'my': 1.0, 'the': 2.0, 'it': 2.0, 'he': 2.0, 'with': 1.0, 'only': 1.0, 'this': 1.0, 'using': 1.0, 'would': 1.0, 'if': 1.0, 'old': 1.0, 'clear': 1.0, 'so': 1.0, 's': 1.0, 'you': 1.0, 'could': 1.0, 'a': 2.0, 'see': 1.0}
Word element => {'at': 2.0, 'it': 2.0, 'with': 1.0, 'doesn': 3.0, 'aged': 1.0, 'straw': 1.0, 'i': 1.0, 'one': 1.0, 'bought': 1.0, 'friends': 1.0, 'drinking': 1.0, 'all': 1.0, 'cups': 4.0, 'any': 2.0, 'this': 2.0, 'kids': 1.0, 'based': 1.0, 'up': 1.0, 'recommendations': 1.0, 'my': 2.0, 'using': 1.0, 'like': 1.0, 'toddler': 1.0, 'straight': 1.0, 't': 3.0, 'from': 2.0, 'now': 1.0, 'similar': 1.0, 'and': 3.0, 'much': 1.0, 'prefers': 1.0, 'regular': 3.0, 'is': 1.0, 'skip': 1.0, 'adult': 1.0, 'down': 1.0, 'cup': 1.0, 'or': 1.0, 'if': 1.0, 'kid': 1.0, 'on': 1.0, 'your': 1.0, 'make': 1.0, 'practice': 1.0, 'sense': 1.0, 'give': 1.0, 'baby': 1.0, 'them': 1.0}
Word element => {'bright': 1.0, 'in': 1.0, 'washes': 1.0, 'and': 1.0, 'weight': 1.0, 'works': 1.0, 'to': 1.0, 'help': 1.0, 'out': 1.0, 'dishwasher': 1.0, 'of': 1.0, 'too': 1.0, 'color': 1.0, 'lite': 1.0, 'regular': 1.0, 'into': 1.0, 'transition': 1.0, 'drinking': 1.0, 'well': 1.0, 'cups': 1.0}
Word element => {'think': 1.0, 'little': 1.0, 'weight': 1.0, 'size': 1.0, 'right': 1.0, 'the': 1.0, 're': 2.0, 'in': 1.0, 'fact': 1.0, 'but': 1.0, 'need': 1.0, 'very': 1.0, 'for': 2.0, 'development': 1.0, 'do': 1.0, 'and': 3.0, 'oral': 1.0, 'promotes': 1.0, 'sippy': 1.0, 'no': 1.0, 'use': 1.0, 'hands': 1.0, 'easy': 1.0, 'that': 1.0, 'thought': 1.0, 'to': 1.0, 'tiny': 1.0, 'cups': 1.0, 'when': 1.0, 'though': 1.0, 'received': 1.0, 'them': 1.0, 'they': 3.0, 'first': 1.0, 'looked': 1.0, 'overpriced': 1.0, 'i': 3.0, 'cheap': 1.0}
Word element => {'us': 1.0, 'will': 1.0, 'what': 1.0, 'exactly': 1.0, 'this': 1.0, 'wise': 1.0, 'other': 1.0, 'messy': 1.0, 'plain': 1.0, 'sippy': 1.0, 'floor': 1.0, 'waste': 1.0, 'second': 1.0, 'well': 1.0, 'away': 1.0, 'now': 1.0, 'three': 1.0, 'look': 1.0, 'fine': 2.0, 'is': 4.0, 'says': 1.0, 'just': 3.0, 'out': 4.0, 'over': 1.0, 'child': 1.0, 'drink': 2.0, 'and': 3.0, 'probably': 1.0, 'does': 1.0, 'because': 1.0, 'maybe': 1.0, 'was': 2.0, 'all': 1.0, 'any': 1.0, 'to': 1.0, 'of': 4.0, 'he': 4.0, 'it': 7.0, 'cup': 6.0, 'my': 2.0, 'until': 1.0, '1': 2.0, 'great': 1.0, 'money': 1.0, 'but': 1.0, 'can': 1.0, 'past': 1.0, '2': 1.0, 'dumping': 1.0, 'works': 1.0, 'got': 1.0, 'then': 2.0, 'where': 1.0, 'for': 3.0, 'young': 2.0, 'gets': 1.0, 'still': 1.0, 'son': 2.0, 'i': 1.0, 'you': 1.0, 'when': 1.0, 'problem': 1.0, 'if': 1.0, 'they': 2.0, 'enough': 2.0, 'need': 1.0, 'help': 1.0, 'drinking': 1.0, 's': 1.0, 'could': 1.0, 'a': 4.0, 'are': 1.0, 'that': 1.0, 'their': 1.0, 'the': 5.0, 'playing': 1.0, 'your': 1.0, 'think': 1.0, 'age': 1.0, 'in': 1.0, 'water': 1.0, 'fun': 1.0}
Word element => {'7': 1.0, 'is': 1.0, 'prevent': 1.0, 'trying': 1.0, 'life': 1.0, 'my': 1.0, 'more': 1.0, 'dear': 1.0, 'old': 1.0, 'i': 2.0, 'practice': 1.0, 'as': 1.0, 'think': 1.0, 'good': 1.0, 'holding': 1.0, 'gets': 1.0, 'use': 1.0, 'be': 1.0, 'kiddo': 1.0, 'fun': 1.0, 'he': 1.0, 'older': 1.0, 'this': 1.0, 'will': 1.0, 'helpful': 1.0, 'to': 2.0, 'now': 1.0, 'months': 1.0, 'on': 1.0, 'spills': 1.0, 'am': 1.0, 'for': 1.0}
Word element => {'see': 1.0, 'can': 1.0, 'i': 1.0, 't': 1.0, 'the': 5.0, 'baby': 2.0, 'problem': 1.0, 'for': 1.0, 'use': 1.0, 'easy': 1.0, 'water': 1.0, 'yellow': 1.0, 'to': 2.0, 'still': 1.0, 'only': 1.0, 'he': 1.0, 'is': 4.0, 'needs': 1.0, 'help': 1.0, 'hold': 1.0, 'drinks': 1.0, 'my': 2.0, 'cup': 2.0, 'color': 1.0, 'where': 1.0, 'when': 1.0, 'too': 1.0, 'however': 1.0, 'light': 1.0}
Word element => {'146': 1.0, 'sol': 1.0, 'ttl': 1.0, 'prd': 1.0, 'ryp': 1.0, 'cr': 1.0, 'ref': 1.0, 'amazon': 1.0, 'www': 1.0, 'http': 1.0, 'price': 1.0, 'gp': 1.0, 'high': 1.0, 'prefer': 1.0, 'at': 1.0, 'drinking': 1.0, 'b003u6gos8': 1.0, 'get': 1.0, 'help': 1.0, 'seem': 1.0, 'when': 1.0, 'different': 1.0, 'than': 1.0, 'despite': 1.0, 'several': 1.0, 'of': 2.0, 'babybjorn': 1.0, 'types': 1.0, 'cup': 2.0, 'my': 1.0, 'cm': 1.0, 'open': 1.0, 'from': 1.0, 'i': 2.0, 'was': 1.0, 'all': 1.0, 'cups': 1.0, 'to': 5.0, 'fingers': 1.0, 'offered': 1.0, 'never': 1.0, 'inexperienced': 1.0, 'it': 3.0, 'this': 1.0, 'he': 1.0, 'cared': 1.0, 'smaller': 1.0, 'time': 1.0, 'they': 1.0, 'product': 1.0, 'com': 1.0, 'for': 3.0, 'hang': 1.0, 'one': 1.0, 'baby': 1.0, 'an': 1.0, 'but': 1.0, 'handles': 1.0, 'learn': 1.0, 'drink': 1.0, 'very': 1.0, 'little': 1.0, 'didn': 1.0, 'seemed': 1.0, 'interesting': 1.0, 'and': 1.0, 'much': 2.0, 'the': 4.0, 's': 1.0, 't': 1.0, 'are': 1.0, 'ought': 1.0, 'grab': 1.0, 'him': 2.0, 'be': 1.0, 'slant': 1.0}
Word element => {'beginner': 1.0, 'a': 1.0, 'i': 1.0, 'it': 2.0, 'we': 1.0, '11': 1.0, 'introduced': 1.0, 'this': 1.0, 'cup': 1.0, 'recommend': 1.0, 'around': 1.0, 'really': 1.0, 'months': 1.0, 'as': 1.0, 'highly': 1.0, 'and': 1.0, 'my': 1.0, 'son': 1.0, 'likes': 1.0}
Word element => {'value': 1.0, 'enjoy': 1.0, 'babies': 1.0, 'but': 1.0, 'of': 1.0, 'sound': 1.0, 'though': 1.0, 'preference': 1.0, 'on': 1.0, 'depending': 1.0, 'which': 1.0, 'nice': 1.0, 'issue': 1.0, 'and': 1.0, 'described': 1.0, 'kind': 1.0, 'as': 1.0, 'its': 1.0, 'comes': 1.0, 'low': 1.0, 'works': 1.0, 'overall': 1.0, 'anyway': 1.0, 'actually': 1.0, 'a': 1.0, 'settings': 1.0, 'really': 1.0, 'is': 3.0, 'worths': 1.0, 'baby': 1.0, 'the': 2.0, 'can': 1.0, 'item': 1.0, '3': 1.0, 'one': 1.0, 'for': 1.0, 'melody': 1.0, 'it': 2.0, 'with': 1.0, 'picked': 1.0, 'that': 1.0, 'be': 1.0}
Word element => {'how': 1.0, 'lit': 1.0, 'if': 1.0, 'be': 1.0, 'cooler': 1.0, 'would': 1.0, 'provide': 1.0, 'doesn': 1.0, 'so': 1.0, 'center': 1.0, 'in': 1.0, 'right': 1.0, 'a': 2.0, 'stimulation': 1.0, 'my': 1.0, 'are': 1.0, 'to': 1.0, 'look': 1.0, 'daughter': 1.0, 'at': 1.0, 'it': 3.0, 'only': 1.0, 'this': 1.0, 'more': 1.0, 'the': 2.0, 't': 2.0, 'ton': 1.0, 'sounds': 2.0, 'likes': 1.0, 'colors': 1.0, 'little': 1.0, 'i': 1.0, 'mostly': 1.0, 'think': 1.0, 'up': 1.0, 'of': 2.0, 'there': 1.0, 'that': 1.0, 'many': 1.0, 'and': 2.0, 'isn': 1.0, 'they': 1.0}
Word element => {'what': 1.0, 'great': 1.0, 'it': 1.0, 'daughter': 1.0, 'grand': 1.0, 'product': 1.0, 'old': 1.0, 'mth': 1.0, 'this': 1.0, 'along': 1.0, 'mat': 1.0, 'jolly': 1.0, '2': 1.0, 'with': 1.0, 'is': 2.0, 'a': 2.0, '41': 1.0, 'my': 1.0, 'the': 1.0, 'loving': 1.0, 'terrific': 1.0, 'idea': 1.0, 'jumper': 1.0}
Word element => {'playing': 1.0, 'make': 1.0, 'sounds': 1.0, 'loves': 1.0, 'grandson': 1.0, 'our': 1.0, 'mat': 1.0, 'fun': 1.0, 'we': 1.0, 'as': 2.0, 'able': 1.0, 'was': 1.0, 'would': 1.0, 'while': 1.0, 'thought': 1.0, 'it': 1.0, 'to': 1.0, 'being': 1.0, 'musical': 1.0, 'be': 1.0}
Word element => {'item': 1.0, 'sized': 1.0, 'getting': 1.0, 'big': 1.0, 'very': 1.0, 'flowergirl': 1.0, 'for': 1.0, 'gift': 2.0, 'my': 2.0, 'are': 1.0, 'great': 1.0, 'this': 1.0, 'wedding': 1.0, 'it': 1.0, 'a': 2.0, 'was': 1.0, 'at': 1.0, 'sweet': 1.0, 'but': 1.0, 'basket': 1.0, 'not': 1.0, 'know': 1.0, 'just': 1.0, 'fairly': 1.0, 'small': 1.0, 'so': 1.0, 'that': 1.0, 's': 1.0, 'you': 1.0}
Word element => {'gift': 1.0, 'to': 1.0, 'month': 1.0, 'learners': 1.0, 'love': 1.0, 'for': 1.0, 'my': 2.0, 'just': 1.0, 'started': 1.0, 'great': 1.0, 'the': 1.0, 'little': 1.0, 'hang': 1.0, 'old': 1.0, 'six': 1.0, 'shower': 1.0, 'it': 2.0, 'this': 2.0, 'with': 1.0, 'getting': 1.0, 'and': 1.0, 'is': 2.0, 'really': 1.0, 'of': 1.0, 'new': 1.0, 'go': 1.0}
Word element => {'use': 1.0, 'cup': 1.0, 'my': 1.0, 'and': 2.0, 'up': 1.0, 'pick': 1.0, 'when': 1.0, 'sippy': 1.0, 'regular': 1.0, 'is': 2.0, 'difficult': 1.0, 'just': 2.0, 'i': 1.0, 'this': 1.0, 'with': 2.0, 'children': 1.0, 'older': 1.0, 'was': 1.0, 'purchased': 1.0, 'had': 1.0, 'time': 1.0, '10': 1.0, 'information': 1.0, 'need': 1.0, 'having': 1.0, 'maybe': 1.0, 'she': 1.0, 'it': 3.0, 'month': 1.0, 'a': 2.0, 'well': 1.0, 'describes': 1.0, 'drink': 1.0, 'properly': 1.0, 'from': 1.0, 'old': 1.0, 'problems': 1.0, 'cups': 1.0, 'doidy': 1.0, 'to': 2.0, 'as': 1.0, 'can': 1.0, 'but': 2.0, 'the': 3.0, 'handles': 1.0, 'on': 1.0, 'product': 1.0, 'be': 1.0, 'made': 1.0}
Word element => {'kid': 1.0, 'teaches': 1.0, 'excellent': 1.0, 'small': 1.0, 'regular': 1.0, 'problems': 1.0, 'how': 1.0, 'impairments': 1.0, 'for': 1.0, 'drink': 1.0, 'quickly': 1.0, 'at': 1.0, 'picked': 1.0, 'with': 2.0, 'very': 1.0, 'up': 2.0, 'and': 7.0, 'months': 2.0, '8': 1.0, 'able': 1.0, 'pick': 1.0, 'bad': 1.0, '7': 1.0, 'was': 1.0, 'now': 1.0, 'when': 1.0, 'by': 1.0, 'all': 1.0, 'to': 3.0, 'doidy': 2.0, 'cups': 1.0, 'speech': 2.0, 'i': 2.0, 'cup': 4.0, 'my': 1.0, 'ditch': 1.0, 'sippy': 1.0, 'started': 1.0, 'baby': 3.0, 'it': 6.0, 'she': 3.0, '10': 1.0, 'like': 1.0, 'know': 1.0, 'teeth': 2.0, 'using': 1.0, 'table': 1.0, 'hold': 1.0, 'your': 2.0, 'on': 1.0, 'put': 1.0, 'herself': 1.0, 'back': 1.0, 'training': 1.0, 'the': 3.0, 'big': 1.0, 'great': 1.0, 'go': 1.0, 'a': 4.0, 's': 3.0, 'is': 1.0, 'say': 1.0, 'cause': 1.0, 'they': 1.0, 'are': 2.0}
Word element => {'those': 1.0, 'not': 1.0, 'have': 1.0, 'however': 1.0, 'food': 1.0, 'good': 1.0, 'off': 1.0, 'get': 1.0, 'getting': 1.0, 'really': 1.0, 'which': 1.0, 'nice': 1.0, 've': 2.0, 'i': 5.0, 'guess': 1.0, 'and': 2.0, 'bowls': 2.0, 'other': 1.0, 'these': 2.0, 'is': 2.0, 'more': 1.0, 'the': 2.0, 'seal': 1.0, 'they': 2.0, 't': 1.0, 'a': 2.0, 'reverse': 1.0, 'size': 1.0, 'bit': 1.0, 'overall': 1.0, 'are': 4.0, 'ok': 1.0, 'seem': 1.0, 'than': 2.0, 'solid': 1.0, 'tops': 2.0, 'properly': 1.0, 'hard': 1.0, 'this': 1.0, 'purchased': 1.0, 'had': 1.0, 'always': 1.0, 'end': 1.0, 'to': 1.0, 'all': 1.0, 'don': 1.0, 'up': 1.0, 'over': 1.0, 'when': 1.0, 'them': 1.0, 'open': 1.0, 'better': 1.0, 'problem': 1.0, 'that': 2.0}
Word element => {'highly': 1.0, 'recommend': 1.0, 'keeps': 1.0, 'with': 1.0, 'us': 1.0, 'or': 1.0, 'it': 2.0, 'refrigerator': 1.0, 'we': 1.0, 'microwave': 1.0, 'portions': 1.0, 'to': 2.0, 'in': 2.0, 'perfect': 1.0, 'use': 1.0, 'package': 1.0, 'reheat': 1.0, 'take': 1.0}
Word element => {'spent': 1.0, 'well': 1.0, 'of': 1.0, 'made': 1.0, 'adores': 1.0, 'we': 2.0, 'machine': 1.0, 'everyone': 1.0, 'justify': 1.0, 'they': 2.0, 'beautifully': 1.0, 'these': 2.0, 'believe': 1.0, 'the': 2.0, 'ones': 1.0, 'buy': 1.0, 'i': 2.0, 'was': 1.0, 'dolls': 1.0, 'them': 1.0, 'quality': 2.0, 'our': 1.0, 'as': 1.0, 'heirloom': 1.0, 'and': 2.0, 'perfectly': 1.0, 'gifts': 1.0, 'are': 2.0, 'disposable': 1.0, 'very': 1.0, 'little': 1.0, 'for': 1.0, 'in': 1.0, 'high': 1.0, 'up': 1.0, 'lives': 1.0, 'materials': 1.0, 'ours': 1.0, 'on': 1.0, 'occasionally': 1.0, 'toys': 1.0, 'not': 1.0, 'hold': 1.0, 'which': 1.0, 'more': 1.0, 'is': 1.0, 'how': 1.0, 'delicate': 1.0, 'price': 1.0, 'money': 1.0}
Word element => {'best': 1.0, 'another': 1.0, 'recommend': 1.0, 'will': 1.0, 'really': 1.0, 'training': 2.0, 'youngest': 1.0, 'version': 1.0, 'going': 1.0, 'are': 1.0, 'we': 1.0, 'since': 1.0, 'regular': 1.0, 'oldest': 1.0, 'moved': 1.0, 'trouble': 1.0, 'better': 1.0, 'but': 2.0, 'cheap': 1.0, 'never': 1.0, 'some': 2.0, 'child': 6.0, 'don': 1.0, 'possible': 1.0, 'enables': 1.0, 'son': 1.0, 'potty': 6.0, 'on': 4.0, 'often': 1.0, 'made': 1.0, 'ons': 2.0, 'may': 1.0, 'my': 3.0, 'one': 1.0, 'that': 2.0, 'because': 2.0, 'easily': 1.0, 'safe': 1.0, 'stores': 2.0, 'with': 1.0, 'from': 1.0, 'as': 3.0, 'pretty': 1.0, 'to': 9.0, 'm': 1.0, 'in': 3.0, 'seat': 6.0, 'moment': 1.0, 'saves': 2.0, 'exactly': 1.0, 'penny': 1.0, 'til': 1.0, 'works': 1.0, 'put': 2.0, 'much': 3.0, 'size': 1.0, 'elongated': 2.0, 'adult': 1.0, 'so': 1.0, 'can': 1.0, 'advertised': 1.0, 'ever': 1.0, 'other': 1.0, 'those': 1.0, 'now': 1.0, 'worth': 3.0, 'or': 2.0, 'was': 2.0, 'doesn': 1.0, 'it': 10.0, 'this': 4.0, 'and': 7.0, 'break': 1.0, 'waiting': 1.0, 't': 2.0, 's': 6.0, 'a': 2.0, 'purchasing': 1.0, 'believe': 1.0, 'pee': 1.0, 'for': 3.0, '10': 1.0, 'toilets': 1.0, 'last': 1.0, 'sturdy': 1.0, 'department': 1.0, 'every': 1.0, 'than': 1.0, 'way': 1.0, 'when': 1.0, 'sit': 1.0, 'flips': 1.0, 'add': 2.0, 'buy': 2.0, 'have': 2.0, 'yes': 1.0, 'off': 1.0, 'i': 3.0, 'actually': 2.0, 'independently': 1.0, 'use': 2.0, 'faster': 1.0, 'seats': 1.0, 'each': 1.0, 'be': 2.0, 'your': 3.0, 'capable': 1.0, 'the': 13.0, 'of': 3.0, 'using': 1.0, 'toilet': 2.0, 'before': 1.0, 'costs': 1.0, 'he': 2.0, 'our': 1.0, 'how': 1.0, 'is': 2.0, 'more': 1.0, 'starts': 1.0, 'you': 5.0, 'able': 3.0, 'big': 1.0, 'go': 1.0, 'figured': 1.0, 'out': 1.0, 'soon': 1.0, 'there': 1.0, 'by': 1.0, 'stabilize': 1.0, 'himself': 1.0, 'new': 1.0, 'time': 3.0, 'model': 1.0}
Word element => {'been': 1.0, 'weight': 1.0, 'light': 1.0, 'otherwise': 1.0, 'but': 1.0, 'would': 1.0, 'something': 1.0, 'baths': 1.0, 'mommy': 1.0, 'same': 1.0, 'her': 1.0, 'feels': 1.0, 'training': 1.0, 'very': 1.0, 'really': 1.0, 'lids': 1.0, 'much': 1.0, 'or': 1.0, 'feature': 1.0, 'i': 7.0, 'little': 2.0, 'between': 1.0, 'they': 1.0, 'knows': 1.0, 'go': 2.0, 't': 3.0, 'a': 4.0, 'going': 1.0, 'she': 4.0, 'tool': 1.0, 'slam': 1.0, 'it': 4.0, 'potty': 6.0, 'needs': 1.0, 'so': 3.0, 'are': 1.0, 'insert': 1.0, 'don': 3.0, 'daddy': 1.0, 'helpful': 1.0, 'lid': 4.0, 'bathroom': 1.0, 'for': 5.0, 'love': 1.0, 'not': 2.0, 'my': 2.0, 'me': 1.0, 'if': 1.0, 'every': 1.0, 'stay': 1.0, 'just': 1.0, 'that': 5.0, 'into': 1.0, 'biggest': 1.0, 'time': 1.0, 'new': 2.0, 'is': 3.0, 'comes': 1.0, 'honestly': 1.0, 'having': 1.0, 'this': 1.0, 'great': 2.0, '1': 2.0, 'big': 1.0, 'the': 13.0, 'have': 4.0, 'was': 2.0, 'toilets': 1.0, 'pretty': 1.0, 'to': 9.0, 'fact': 1.0, 'old': 2.0, 'relay': 1.0, 'and': 7.0, 'year': 2.0, 'us': 1.0, 'lift': 1.0, '2': 4.0, 'thing': 1.0, 'as': 1.0, 'heavy': 1.0, 'you': 3.0, 'sit': 1.0, 'when': 1.0, 'again': 1.0, 'move': 1.0, 'has': 2.0, 'them': 2.0, 'say': 1.0, 'worry': 1.0, 'back': 2.0, 'sitting': 2.0, 'their': 1.0, 'fingers': 1.0, 'an': 1.0, 'selling': 1.0, 'issue': 1.0, 'elongated': 1.0, 'with': 2.0, 'durability': 1.0, 'while': 1.0, 'wood': 2.0, 'like': 3.0, 'close': 2.0, 'on': 5.0, 'long': 1.0, 'where': 1.0, 're': 1.0, 'people': 2.0, 'house': 1.0, 'then': 1.0, 'we': 2.0, 'difference': 1.0, 'moving': 1.0, 'in': 1.0, 'm': 2.0, 'maybe': 1.0, 's': 3.0, 'giving': 2.0, 'ours': 1.0, 'mother': 1.0, 'order': 1.0, 'one': 2.0, 'ones': 1.0, 'our': 2.0, 'shopping': 1.0}
Word element => {'happy': 1.0, 'design': 1.0, 'or': 1.0, 'seats': 1.0, 'still': 1.0, 'does': 1.0, 'case': 1.0, 'that': 1.0, 'complaint': 1.0, 'perfectly': 1.0, 'adult': 1.0, 'just': 1.0, 'slender': 1.0, 'by': 2.0, 'pinched': 1.0, 'thighs': 1.0, 'am': 1.0, 'i': 2.0, 'tall': 1.0, 'and': 3.0, 'toddler': 1.0, 'for': 1.0, 'training': 1.0, 'made': 1.0, 'year': 1.0, 's': 1.0, 'a': 2.0, 't': 1.0, 'rump': 1.0, 'fearful': 1.0, 'the': 8.0, 'isn': 1.0, '26lbs': 1.0, '2': 2.0, 'but': 3.0, 'malfunction': 1.0, 'very': 2.0, 'little': 1.0, 'trained': 1.0, 'have': 1.0, 'smaller': 1.0, 'so': 1.0, 'potty': 2.0, 'lid': 1.0, 'fits': 1.0, 'my': 1.0, 'cleaning': 1.0, '1': 1.0, 'easier': 1.0, 'has': 1.0, 'well': 2.0, 'is': 5.0, 'in': 1.0, 'regular': 1.0, 'on': 4.0, 'ends': 1.0, 'her': 3.0, 'do': 1.0, 'only': 1.0, 'tiny': 1.0, 'much': 2.0, 'works': 1.0, 'potties': 1.0, 'being': 2.0, 'm': 1.0, 'both': 1.0, 'fun': 1.0, 'at': 1.0, 'any': 1.0, 'as': 1.0, 'all': 1.0, 'to': 1.0, 'seat': 5.0, 'those': 1.0, 'not': 3.0, 'top': 2.0, 'parent': 1.0, 'enough': 1.0, 'of': 3.0, 'mentioned': 1.0, 'way': 1.0, 'always': 1.0, 'up': 1.0, 'toilet': 1.0, 'old': 1.0, 'sanitary': 1.0, 'others': 1.0, 'slam': 1.0, 'she': 1.0, 'it': 1.0, 'this': 3.0, 'floor': 1.0, 'which': 1.0}
Word element => {'us': 1.0, 'much': 1.0, 'very': 1.0, 'use': 1.0, 'have': 1.0, 'ordered': 1.0, 'we': 2.0, 'wonderful': 1.0, 'toilet': 3.0, 'don': 1.0, 'convenient': 1.0, 'a': 1.0, 'on': 1.0, 'seat': 3.0, 'keep': 1.0, 't': 1.0, 'the': 3.0, 'granddaughter': 1.0, 'to': 2.0, 'putting': 1.0, 'easier': 1.0, 'that': 1.0, 'our': 1.0, 'and': 1.0, 'off': 1.0, 'is': 1.0, 'regular': 1.0, 'in': 1.0, 'for': 2.0, 'order': 1.0}
Word element => {'material': 1.0, 'sturdy': 1.0, 'more': 1.0, 'were': 1.0, 'if': 1.0, 'existed': 1.0, 'don': 2.0, 'seems': 2.0, 'daughter': 1.0, 'big': 1.0, 'install': 1.0, 'great': 1.0, 'comfortable': 2.0, 'hair': 1.0, 'brushing': 1.0, 'smashed': 1.0, 'on': 3.0, 'potty': 2.0, 'my': 2.0, 'gave': 1.0, 'actually': 1.0, 'for': 1.0, 'stars': 2.0, 'she': 1.0, 'it': 9.0, 'lids': 1.0, 'get': 1.0, 'didn': 1.0, 'even': 1.0, 'down': 2.0, 'her': 3.0, 'fingers': 1.0, 'to': 5.0, 'seat': 1.0, 'our': 1.0, 'was': 1.0, 'and': 5.0, 'easy': 1.0, 'know': 1.0, 'like': 4.0, 'child': 1.0, 'product': 2.0, 'teeth': 1.0, 'a': 3.0, 't': 4.0, 's': 1.0, 'going': 1.0, 'is': 5.0, 'easily': 1.0, 'that': 2.0, 'because': 2.0, 'fall': 1.0, 'this': 3.0, 'so': 1.0, 'can': 1.0, 'daddy': 1.0, 'lid': 1.0, 'four': 1.0, 'but': 1.0, 'wonderful': 1.0, 'arrived': 1.0, 'only': 1.0, 'quickly': 1.0, 'of': 2.0, 'doing': 1.0, 'the': 6.0, 'design': 1.0, 'reason': 1.0, 'i': 7.0, 'have': 1.0, 'you': 1.0, 'push': 1.0, 'are': 1.0, 'has': 1.0, 'them': 1.0, 'won': 1.0, 'regular': 1.0, 'we': 1.0, 'fine': 1.0, 'also': 1.0, 'us': 1.0, 'made': 2.0, 'weight': 1.0, 'out': 2.0, 'mommy': 1.0, 'plastic': 1.0, 'when': 1.0, 'sit': 1.0, 'toilet': 1.0, 'or': 2.0, 'held': 1.0, 'one': 1.0, 'very': 1.0, 'feel': 2.0, 'flimsy': 1.0, 'love': 2.0, 'far': 1.0, 'bust': 1.0, 'something': 1.0, 'would': 1.0, 'give': 1.0, 'five': 1.0}
Word element => {'inches': 1.0, '40': 1.0, 'pounds': 1.0, '44': 1.0, 'around': 1.0, 'easy': 1.0, 'perfect': 1.0, 'of': 1.0, 'seat': 2.0, 'design': 1.0, 'for': 1.0, 'year': 1.0, 'daughter': 1.0, 'and': 2.0, 'like': 1.0, 'the': 3.0, 'my': 1.0, 'it': 1.0, 'was': 1.0, 'look': 1.0, 'to': 1.0, 'i': 1.0, 'old': 1.0, 'install': 1.0, 'tall': 1.0, 'who': 1.0, 'is': 2.0, '5': 1.0, 'weights': 1.0}
Word element => {'recommend': 1.0, 'expectation': 1.0, 'beyond': 1.0, 'of': 1.0, 'part': 1.0, 'adult': 1.0, 'even': 1.0, 'toilet': 1.0, 'or': 1.0, 'chairs': 1.0, 'potty': 1.0, 'her': 1.0, 'clean': 1.0, 'up': 1.0, 'don': 1.0, 'relieved': 1.0, 'all': 1.0, 'to': 1.0, 'seat': 2.0, 'excellent': 1.0, 'have': 1.0, 'independent': 1.0, 'm': 1.0, 'daughter': 1.0, 'third': 1.0, 'only': 1.0, 'this': 4.0, 'quality': 1.0, 'regular': 1.0, 'in': 2.0, 'second': 1.0, 'the': 3.0, 'is': 4.0, 'more': 1.0, 'i': 7.0, 'old': 1.0, 'product': 1.0, 'cheap': 1.0, 'for': 2.0, 'hold': 1.0, 'transitional': 1.0, 'using': 1.0, 'expected': 1.0, 'than': 1.0, 'satisfied': 1.0, 'other': 1.0, 'am': 1.0, 'buying': 1.0, 't': 1.0, 's': 2.0, 'a': 2.0, 'family': 1.0, 'my': 3.0, 'bathroom': 1.0, 'that': 1.0, 'loves': 1.0, 'bought': 1.0, 'one': 2.0, '23': 1.0, 'months': 1.0, 'on': 1.0, 'feel': 1.0, 'comfortable': 2.0, 'climbing': 1.0, 'and': 2.0, 'but': 2.0, 'sitting': 2.0, 'it': 4.0, 'truly': 1.0, 'she': 1.0, 'very': 1.0}
Word element => {'wish': 1.0, 'gets': 1.0, 'she': 1.0, 'having': 1.0, 'nice': 1.0, 'be': 1.0, 'will': 1.0, 'swing': 1.0, 'potty': 1.0, 'than': 1.0, 'wider': 1.0, 'get': 2.0, 'kid': 1.0, 'regular': 1.0, 'happens': 1.0, 'thing': 1.0, 'pants': 1.0, 'same': 1.0, 'under': 1.0, 'end': 1.0, 'otherwise': 1.0, 'used': 3.0, 'tucked': 1.0, 'make': 2.0, 'called': 1.0, 'pee': 1.0, 'reminiscence': 1.0, 'have': 4.0, 'bathroom': 2.0, 'before': 1.0, 'quick': 1.0, 'week': 1.0, 'since': 2.0, 'cleaning': 1.0, 'touch': 1.0, 'some': 2.0, 'much': 1.0, 'do': 1.0, 'down': 1.0, 'sanitize': 1.0, 've': 2.0, 'would': 1.0, 'boy': 1.0, 'every': 1.0, 'if': 1.0, 'times': 1.0, 'splashes': 1.0, 'middle': 1.0, 'ago': 1.0, 't': 4.0, 'isn': 2.0, 'hinge': 1.0, 'slam': 1.0, 'comfortable': 1.0, 'actually': 1.0, 'size': 1.0, 'better': 1.0, 'standard': 1.0, 'restroom': 1.0, 'use': 2.0, 'yet': 1.0, 'he': 5.0, 'doesn': 2.0, 'must': 1.0, 'into': 2.0, 'non': 1.0, 'three': 1.0, 'all': 3.0, 'closed': 1.0, 'transition': 1.0, 'did': 1.0, 'keep': 1.0, 'now': 4.0, 'styrofoam': 1.0, 'important': 1.0, 'also': 1.0, 'lift': 2.0, 'really': 2.0, 'sponge': 1.0, 'existing': 1.0, 'ended': 1.0, 'so': 3.0, 'but': 3.0, 'past': 1.0, 'advertised': 1.0, 'needs': 1.0, 'padded': 1.0, 'big': 1.0, 'great': 2.0, 'install': 2.0, 'sure': 1.0, 'store': 1.0, 'trying': 1.0, 'minutes': 1.0, 'because': 1.0, 'that': 4.0, 'went': 1.0, 'wife': 1.0, 'from': 1.0, 'very': 2.0, 'year': 4.0, 'one': 4.0, 'half': 2.0, 'i': 10.0, 'bang': 1.0, 'cheap': 1.0, 'supposed': 1.0, 'getting': 1.0, 'and': 11.0, 'a': 13.0, 's': 1.0, 'has': 1.0, 'always': 1.0, 'up': 5.0, 'hard': 1.0, 'over': 2.0, '34': 4.0, 'the': 31.0, 'of': 8.0, 'packaging': 1.0, 'these': 1.0, 'once': 1.0, 'in': 2.0, 'seat': 13.0, 'as': 3.0, 'seats': 2.0, 'just': 2.0, 'using': 1.0, 'light': 1.0, 'lid': 1.0, 'gross': 1.0, 'on': 3.0, 'him': 1.0, 'it': 22.0, 'remove': 1.0, 'first': 1.0, 'with': 2.0, 'this': 6.0, 'had': 5.0, 'clean': 3.0, 'different': 1.0, 'at': 1.0, 'is': 7.0, 'his': 2.0, 'around': 1.0, 'when': 5.0, 'started': 1.0, 'something': 1.0, 'time': 3.0, 'new': 1.0, 'ordered': 1.0, 'to': 15.0, 'straight': 1.0, 'right': 2.0, 'away': 1.0, 'box': 1.0, 'elmo': 1.0, 'shipping': 1.0, 'prime': 1.0, 'daughter': 1.0, 'foam': 1.0, 'got': 1.0, 'smelled': 1.0, 'functioned': 1.0, 'may': 1.0, 'my': 2.0, 'me': 2.0, 'gotten': 2.0, 'no': 1.0, 'walk': 1.0, 'about': 2.0, 'was': 8.0, 'worries': 1.0, 'there': 2.0, 'forward': 1.0, 'took': 2.0, 'we': 2.0, 'then': 1.0, 'for': 4.0, 'searching': 1.0, '10': 1.0, 'old': 4.0, 'guard': 1.0, 'toilet': 2.0, 'urine': 1.0, 'top': 2.0, 'installed': 1.0, 'quite': 1.0, 'training': 2.0, 'good': 1.0, 'side': 1.0, 'you': 1.0, 'night': 1.0, 'loud': 1.0, 'things': 2.0, 'couple': 1.0, 'weight': 1.0, 'found': 1.0, 'easy': 2.0}
Word element => {'exactly': 1.0, 'as': 1.0, 'size': 1.0, 'adult': 1.0, 'appropriate': 1.0, 'are': 1.0, 'cool': 1.0, 'enter': 1.0, 'bathrooms': 1.0, 'small': 1.0, 'of': 1.0, 'all': 1.0, 'have': 1.0, 'this': 2.0, 'the': 3.0, 't': 1.0, 'we': 2.0, 'us': 1.0, 'solved': 1.0, 'potty': 1.0, 'issues': 1.0, 'baths': 1.0, 'bath': 1.0, 'either': 1.0, 'try': 1.0, '5': 1.0, 'for': 2.0, 'in': 2.0, 'what': 1.0, 'works': 1.0, 'seat': 5.0, 'our': 2.0, 'toddler': 1.0, 'an': 1.0, 'house': 1.0, 'shape': 1.0, '1': 1.0, 'and': 4.0, 'didn': 1.0, 'fine': 1.0, 'is': 3.0, 'want': 1.0, 'well': 2.0, 'a': 2.0, 'to': 2.0, 'needed': 1.0, 'store': 1.0}
Word element => {'very': 1.0, 'apo': 1.0, 'made': 1.0, 'gift': 1.0, 'shower': 1.0, 'would': 1.0, 'down': 1.0, 'up': 1.0, 'easy': 1.0, 'slam': 1.0, 'doesn': 1.0, 'issue': 1.0, 'different': 1.0, 'cloth': 1.0, 'spend': 1.0, 'how': 1.0, 'consider': 1.0, 'math': 1.0, 'expensive': 1.0, 'before': 1.0, '129': 1.0, 'have': 1.0, 'us': 1.0, 'also': 2.0, 'shipped': 1.0, 'd': 1.0, 'didn': 1.0, 'as': 1.0, 'town': 1.0, '31': 1.0, 'does': 1.0, 'giving': 1.0, 's': 5.0, 'could': 1.0, 'a': 6.0, 'go': 1.0, 'baby': 1.0, 'she': 1.0, 'it': 8.0, 'using': 1.0, '17': 1.0, 'daughter': 1.0, 'fits': 1.0, 'inches': 1.0, 'little': 2.0, 'that': 4.0, 'lbs': 1.0, 'times': 1.0, 'happy': 1.0, 'one': 1.0, 'piece': 1.0, 'with': 2.0, 'out': 1.0, 'couple': 1.0, 'stool': 1.0, '24': 1.0, 'at': 1.0, 'is': 4.0, 'more': 1.0, 'be': 1.0, 'seller': 1.0, 'now': 1.0, 'beyond': 1.0, 'had': 1.0, 'to': 7.0, 'started': 1.0, 'wipe': 1.0, 'them': 3.0, 'not': 3.0, 'my': 2.0, 'me': 2.0, 'but': 1.0, 't': 2.0, 'fit': 1.0, 'for': 4.0, 'happier': 1.0, 'europe': 2.0, 'i': 6.0, 'remove': 1.0, 'works': 1.0, 'much': 1.0, 'bum': 2.0, 'do': 2.0, 'poop': 1.0, 'anyone': 1.0, 'and': 6.0, 'while': 1.0, 'seat': 4.0, 'in': 2.0, 'live': 2.0, 'perfect': 1.0, 'this': 5.0, 'great': 1.0, 'big': 1.0, 'place': 1.0, 'use': 1.0, 'her': 1.0, 'why': 1.0, 'please': 1.0, 'possible': 1.0, 'off': 1.0, 'enough': 1.0, 'their': 1.0, 'thank': 1.0, 'child': 1.0, 'toilet': 2.0, 'makes': 1.0, 'when': 2.0, 'sit': 1.0, 'on': 2.0, 'they': 2.0, 'diapers': 1.0, 'are': 3.0, 'the': 8.0, 'of': 2.0, 'day': 1.0, 'says': 1.0, 'wants': 1.0, 'buy': 1.0, 'claim': 1.0, 'or': 1.0, 'let': 1.0, 'if': 2.0, 'so': 2.0, 'potty': 2.0, 'you': 4.0, 'inclined': 1.0, 'months': 1.0, 'get': 1.0, 'move': 1.0, 'used': 1.0, 'work': 1.0, 'infants': 1.0, 'pre': 1.0, 'training': 1.0, 'stage': 1.0, 'we': 1.0, 'take': 1.0, 'then': 1.0, 'these': 1.0}
Word element => {'falling': 1.0, 'about': 1.0, 'ready': 1.0, 'flip': 1.0, 'find': 1.0, 'does': 1.0, 'because': 1.0, 'have': 1.0, 'independent': 1.0, 'be': 1.0, 'helping': 1.0, 'problem': 1.0, 'legs': 1.0, 'her': 3.0, 'over': 1.0, 'managed': 1.0, 'not': 3.0, '32lbs': 1.0, 'kid': 1.0, 'secure': 1.0, 'also': 1.0, 'item': 1.0, 'had': 1.0, 'in': 1.0, 'regular': 1.0, 'more': 1.0, 'is': 2.0, 'herself': 1.0, 'this': 2.0, 'with': 2.0, 'worried': 1.0, 'life': 1.0, 'put': 1.0, 'on': 2.0, '3': 1.0, 'bowl': 1.0, 'well': 1.0, 'pee': 1.0, 'the': 5.0, 'comfortable': 1.0, 'install': 1.0, 'great': 1.0, 'all': 1.0, 'to': 6.0, 'seat': 5.0, 'as': 3.0, 'yo': 1.0, 'better': 1.0, 'open': 2.0, 'ring': 1.0, 'and': 8.0, 'if': 1.0, 'get': 1.0, 'kind': 1.0, 'easy': 1.0, 'looks': 1.0, 'it': 5.0, 'she': 5.0, 'lid': 1.0, 'my': 1.0, 'fits': 1.0, 'close': 1.0, 'go': 1.0, 'going': 1.0, 's': 4.0, 'a': 4.0, 'we': 1.0, 'preserver': 1.0, 'were': 1.0, 'that': 3.0, 'when': 1.0, 'outgrown': 1.0, 'potty': 2.0, 'sits': 1.0, 'cushioned': 1.0, 'handles': 1.0, 'of': 1.0, 'always': 1.0, 'using': 1.0, 'like': 1.0, 'can': 1.0, 'but': 2.0}
Word element => {'simple': 1.0, 'taking': 1.0, 'breeze': 1.0, 'upstairs': 1.0, 'with': 1.0, 'for': 1.0, 'love': 1.0, 'it': 3.0, 'fell': 1.0, 'one': 2.0, 'bought': 1.0, 'child': 2.0, 'apart': 1.0, 'if': 1.0, 'this': 1.0, 'found': 1.0, 'i': 4.0, 'known': 1.0, 'in': 1.0, 'had': 2.0, 'seat': 1.0, 'not': 1.0, 'adult': 1.0, 'sooner': 1.0, 'amazon': 1.0, 'is': 4.0, 'friend': 2.0, 'few': 1.0, 'a': 4.0, 'and': 4.0, 'kohler': 1.0, 'on': 1.0, 'only': 1.0, 'try': 1.0, 'the': 4.0, 'great': 1.0, 'design': 1.0, 'beautiful': 1.0, 'thing': 1.0, 'does': 1.0, 'her': 1.0, 'pinch': 1.0, 'times': 1.0, 'complained': 1.0, 'installation': 1.0, 'been': 1.0, 'gave': 1.0, 'that': 1.0, 'daughter': 1.0, 'pinched': 1.0, 'will': 1.0, 'bathroom': 1.0, 'my': 2.0, 'purchase': 1.0, 'another': 1.0}
Word element => {'overall': 2.0, 'out': 1.0, 'kind': 1.0, 'quality': 1.0, 'them': 1.0, 'these': 1.0, 'purchasing': 1.0, 'there': 2.0, 'instead': 1.0, 'good': 1.0, 'her': 1.0, 'just': 1.0, 'wish': 1.0, 'this': 1.0, 'because': 1.0, 'learn': 1.0, 'got': 1.0, 'didn': 1.0, 'through': 1.0, 'old': 2.0, 'my': 2.0, 'wide': 1.0, 'have': 1.0, 'small': 1.0, 'likes': 1.0, 'has': 1.0, 'children': 1.0, 'better': 2.0, 'be': 2.0, 'would': 2.0, 'wider': 1.0, 'were': 1.0, 'year': 2.0, 'almost': 2.0, 'only': 1.0, 'with': 1.0, 'she': 1.0, 'it': 3.0, 'toilet': 1.0, 'use': 1.0, 'trained': 1.0, 'brake': 1.0, 'not': 1.0, 'bit': 1.0, 'the': 10.0, 'fine': 1.0, 'is': 2.0, 'they': 1.0, 't': 1.0, 'could': 1.0, 's': 1.0, 'a': 4.0, 'might': 1.0, 'narrow': 1.0, 'or': 1.0, 'fittings': 1.0, 'top': 1.0, 'you': 4.0, 'seem': 1.0, 'however': 1.0, 'move': 1.0, 'if': 2.0, 'sides': 1.0, 'tighten': 1.0, 'designed': 1.0, 'adult': 2.0, 'as': 1.0, 'seat': 4.0, 'to': 7.0, 'i': 3.0, 'waste': 1.0, 'slip': 1.0, 'broke': 1.0, 'hang': 1.0, 'one': 1.0, 'mine': 1.0, 'feel': 1.0, 'comfortable': 1.0, 'of': 6.0, 'are': 2.0, 'very': 1.0, 'stars': 1.0, 'fit': 1.0, 'where': 1.0, 'hand': 2.0, 'like': 1.0, 'money': 1.0, 'but': 2.0, 'can': 1.0, 'sitting': 1.0, 'therefore': 1.0, '3': 2.0, 'on': 3.0, '5': 1.0, 'opening': 1.0, 'edge': 1.0, 'thing': 1.0}
Word element => {'yet': 1.0, 'through': 1.0, 'fallen': 1.0, 't': 1.0, 'haven': 1.0, 'we': 1.0, 'neat': 1.0, 'bathroom': 1.0, 'stars': 1.0, 'saw': 1.0, 'more': 1.0, 'that': 2.0, 'gave': 1.0, 'or': 1.0, 'child': 1.0, 'friends': 1.0, 'potty': 3.0, 'so': 1.0, 'adult': 1.0, 'gives': 1.0, 'you': 2.0, 'as': 1.0, 'to': 4.0, 'kinda': 1.0, 'not': 1.0, 'my': 2.0, 'me': 1.0, 'bathe': 1.0, 'could': 1.0, 's': 2.0, 'toilet': 1.0, 'had': 1.0, 'and': 2.0, 'be': 1.0, 'house': 2.0, 'cover': 2.0, 'top': 2.0, 'who': 1.0, 'i': 7.0, '4': 1.0, 'held': 1.0, 'one': 2.0, 'it': 9.0, 'is': 2.0, 'at': 1.0, 'sits': 1.0, 'the': 6.0, 'have': 1.0, 'a': 6.0, 'small': 1.0, 'when': 1.0, 'sit': 1.0, 'stronger': 1.0, 'appreciate': 1.0, 'this': 2.0, 'highly': 1.0, 'for': 1.0, '10': 1.0, 'uses': 1.0, 'on': 3.0, 'put': 1.0, 'seat': 2.0, 'in': 4.0, 'reason': 1.0, 'using': 1.0, 'eliminated': 1.0, 'having': 1.0, 'training': 1.0, 'made': 2.0, 'room': 1.0, '5': 1.0, 'just': 1.0, 'compliments': 1.0, 'easy': 1.0, 'months': 1.0, 'get': 1.0, 'install': 1.0, 'did': 1.0, 'about': 1.0, 'mins': 1.0, 'with': 1.0, 'only': 1.0, 'screwdriver': 1.0, 'daughter': 1.0, 'thinks': 1.0, 'has': 1.0, 'her': 1.0, 'piece': 1.0, 'recommend': 1.0, '8': 1.0, 'later': 1.0, 'from': 1.0, '2': 1.0, '2012': 1.0, 'there': 1.0, 'she': 1.0, 'many': 1.0, 'an': 1.0, 'other': 1.0, 'moms': 1.0, 're': 1.0, 'come': 1.0, 'if': 1.0, 'still': 1.0}
Word element => {'worth': 1.0, 'out': 1.0, 'week': 1.0, 'about': 1.0, 'her': 1.0, 'floor': 1.0, 'every': 1.0, 'peed': 1.0, 'enough': 1.0, 'took': 1.0, 'far': 1.0, 'sit': 1.0, 'didn': 1.0, 'if': 1.0, 'gave': 1.0, 'breeze': 1.0, 'cleaning': 1.0, 'm': 1.0, 'by': 2.0, 'daughter': 1.0, 'well': 2.0, 'removal': 1.0, 'only': 1.0, 'dumping': 1.0, 'on': 2.0, 'uses': 1.0, 'one': 1.0, 'insisted': 1.0, 'stars': 1.0, 'for': 1.0, 'love': 1.0, 'makes': 1.0, 'old': 1.0, 'step': 1.0, 'figure': 1.0, 'little': 1.0, 'sure': 1.0, 'easy': 1.0, 'because': 2.0, 'this': 2.0, 'with': 1.0, 'penney': 1.0, 'she': 4.0, 'it': 5.0, 'the': 6.0, 'my': 1.0, 'back': 1.0, 'herself': 2.0, 'is': 1.0, 'great': 2.0, 'big': 1.0, 'to': 1.0, 'all': 2.0, 'seat': 2.0, 'as': 1.0, 'you': 1.0, 'can': 1.0, 'of': 1.0, 'imagine': 1.0, 'help': 1.0, 'involved': 1.0, 'now': 1.0, 's': 1.0, 't': 1.0, 'a': 4.0, 'purchased': 1.0, 'stool': 1.0, 'year': 1.0, 'girl': 1.0, 'potty': 1.0, '4': 1.0, 'i': 4.0, 'two': 1.0, 'mess': 1.0, 'feature': 1.0}
Word element => {'then': 1.0, 'time': 1.0, 'long': 1.0, 'the': 3.0, 'use': 2.0, 'sturdy': 1.0, 'was': 1.0, 'still': 1.0, 'simple': 1.0, 'design': 1.0, 'feels': 1.0, 'have': 1.0, '25': 1.0, 'able': 2.0, 'this': 1.0, 'quick': 1.0, 'is': 2.0, 'our': 1.0, 'to': 4.0, 'seat': 3.0, 'comfortable': 1.0, 'fit': 1.0, 'for': 1.0, 'very': 1.0, 'and': 4.0, 'do': 1.0, 'over': 1.0, 'that': 1.0, 'installation': 1.0, 'daughter': 1.0, 'a': 1.0, 'we': 2.0, 's': 2.0, 'it': 1.0, 'she': 4.0, 'bigger': 1.0, 'weighs': 1.0, 'in': 1.0, 'adult': 1.0, 'size': 1.0, 'portable': 1.0, '3': 1.0, 'diapers': 1.0, 'will': 1.0, 'back': 1.0, 'like': 1.0, 'be': 2.0, 'bottom': 1.0, 'll': 1.0, 'rest': 1.0, 'once': 1.0}
Word element => {'stick': 1.0, 're': 1.0, 'read': 1.0, 'bathroom': 1.0, 'second': 1.0, 'our': 1.0, 'brand': 1.0, 'getting': 1.0, 'about': 1.0, 'most': 1.0, 'problem': 1.0, 'probably': 1.0, 'premie': 1.0, 'born': 1.0, 'side': 1.0, 'so': 1.0, 'can': 1.0, 'either': 1.0, 'would': 2.0, 'wipe': 1.0, 'to': 3.0, 'as': 1.0, 'was': 2.0, 'recommend': 1.0, 'installation': 1.0, 'loves': 1.0, 'been': 1.0, 'will': 1.0, 'seats': 2.0, 'her': 2.0, 'out': 1.0, 'i': 3.0, 'potty': 2.0, 'easy': 2.0, 'bit': 1.0, 'encouraged': 1.0, 'sit': 1.0, 'when': 1.0, 'you': 1.0, 'my': 2.0, 'lid': 1.0, 'and': 7.0, 'one': 1.0, 'too': 1.0, 'the': 17.0, 'of': 2.0, 'yuck': 1.0, 'has': 2.0, 'won': 2.0, 'that': 1.0, 'fall': 1.0, 'completely': 2.0, 'really': 1.0, 'for': 5.0, 'using': 2.0, 'like': 2.0, 'process': 1.0, 'but': 3.0, '2': 1.0, 'months': 1.0, 'decided': 1.0, 'mechanism': 1.0, 'forgo': 1.0, 'super': 1.0, 'same': 1.0, 'have': 1.0, 'different': 1.0, 'anti': 1.0, 'considered': 1.0, '8': 1.0, 'going': 1.0, 'complaint': 1.0, 'reviews': 1.0, 'we': 3.0, 'small': 2.0, 'a': 4.0, 'rest': 1.0, 't': 3.0, 'toilet': 1.0, 'training': 2.0, 'with': 3.0, 'this': 3.0, 'wish': 1.0, 'kids': 1.0, 'thought': 1.0, 'starting': 1.0, 'it': 4.0, 'slam': 1.0, 'others': 1.0, 'she': 5.0, 'us': 1.0, 'rings': 1.0, 'hazard': 1.0, 'needed': 1.0, 'herself': 1.0, 'toddler': 2.0, 'child': 2.0, 'up': 1.0, 'poke': 1.0, 'not': 1.0, 'clean': 1.0, 'support': 1.0, 'all': 1.0, 'other': 1.0, 'brands': 1.0, 'had': 1.0, 'some': 1.0, 'never': 1.0, 'only': 1.0, 'stays': 1.0, 'be': 2.0, 'opening': 1.0, '5': 1.0, 'on': 3.0, 'wide': 1.0, 'even': 1.0, 'is': 3.0, 'at': 1.0, 'years': 1.0, 'old': 1.0, 'still': 1.0, 'somewhat': 1.0, 'seat': 5.0, 'in': 1.0}
Word element => {'have': 1.0, 'not': 1.0, 'size': 1.0, 'toddler': 1.0, 'enough': 1.0, 'parent': 1.0, 'new': 1.0, 'on': 1.0, '3': 1.0, 'top': 1.0, 'is': 3.0, 'her': 1.0, 'good': 1.0, 'different': 1.0, 'actual': 1.0, 'seat': 1.0, 'to': 2.0, 'all': 1.0, 'ring': 1.0, 'issues': 1.0, 'available': 1.0, 'are': 1.0, 'products': 1.0, 'out': 1.0, 'used': 1.0, 'down': 1.0, 'right': 1.0, 'i': 4.0, 'old': 1.0, 'things': 1.0, 'tried': 1.0, 'that': 4.0, 'will': 1.0, 'rings': 1.0, 'room': 1.0, '5': 1.0, 'ordering': 1.0, 'leaving': 1.0, 'toilet': 1.0, 'recommend': 1.0, 'minutes': 1.0, 'using': 1.0, 'it': 2.0, 'one': 1.0, 'bought': 1.0, 'love': 1.0, 'for': 4.0, 'product': 2.0, 'the': 4.0, 'my': 3.0, 'and': 4.0, '10': 2.0, 'year': 1.0, 'very': 1.0, 'daughter': 2.0, '13': 1.0, 'in': 1.0, 'can': 1.0, '2': 2.0, 'but': 1.0, 'work': 1.0, 'they': 1.0, 'this': 3.0, 'dont': 1.0, 'found': 1.0, 'got': 1.0, 'baby': 1.0, 'them': 1.0, 'within': 1.0, 'million': 1.0, 'a': 4.0, 'just': 1.0, 'few': 1.0, 'accidents': 1.0, 'buy': 1.0, 'days': 1.0, 'of': 3.0, 'installed': 1.0, 'seats': 1.0, 'about': 1.0, 'you': 1.0, 'easily': 1.0, 'sat': 1.0}
Word element => {'not': 1.0, 'because': 1.0, 'enough': 1.0, 'off': 2.0, 'star': 2.0, 'after': 1.0, 'training': 1.0, 'an': 1.0, 'helped': 1.0, 'but': 2.0, 'i': 1.0, 'so': 1.0, 'potty': 1.0, 'you': 1.0, 'this': 1.0, 'first': 1.0, 'knock': 1.0, 'with': 1.0, 'really': 1.0, 'is': 1.0, 'product': 1.0, 'for': 1.0, 'knocked': 1.0, 'slowly': 1.0, 'they': 2.0, 'awesome': 1.0, 'were': 1.0, 'it': 1.0, 'slam': 2.0, 'a': 3.0, 's': 1.0, 't': 2.0, 'tight': 1.0, 'my': 1.0, 'son': 1.0, 'few': 2.0, 'one': 1.0, 'huge': 1.0, 'months': 2.0, 'seats': 1.0, 'moved': 1.0, 'and': 2.0, 'didn': 1.0, 'down': 3.0, 'loosened': 1.0, 'don': 1.0, 'up': 1.0, 'now': 1.0, 'to': 2.0, 'have': 1.0, 'deal': 1.0, 'the': 2.0, 'place': 1.0, 'them': 1.0}
Word element => {'got': 1.0, 'she': 1.0, 'store': 1.0, 'didn': 1.0, 'white': 1.0, 'soon': 1.0, 'plain': 1.0, 's': 1.0, 'removable': 1.0, 'fumble': 1.0, 'toy': 1.0, 'installed': 1.0, 'install': 1.0, 'want': 1.0, 'looks': 1.0, 'considered': 1.0, 'to': 2.0, 'few': 1.0, 'and': 3.0, 'a': 4.0, 'i': 2.0, 'old': 1.0, 'took': 1.0, 'seat': 4.0, 'first': 1.0, 'with': 1.0, 'it': 2.0, 'only': 1.0, 'this': 1.0, 'the': 1.0, 't': 1.0, 'great': 1.0, 'for': 1.0, 'as': 2.0, 'year': 1.0, 'daughter': 1.0, 'minutes': 1.0, 'toilet': 1.0, 'my': 1.0, 'two': 1.0, 'used': 1.0, 'even': 2.0, 'her': 1.0, 'training': 1.0, 'though': 1.0, 'potty': 1.0}
Word element => {'creating': 1.0, 'so': 1.0, 'thank': 1.0, 'be': 1.0, 'never': 1.0, 'will': 1.0, 'you': 1.0, 'again': 1.0, 'easily': 1.0, 'wonderful': 1.0, 'use': 1.0, 'sanitary': 1.0, 'before': 1.0, 'other': 1.0, 've': 1.0, 'i': 2.0, 'us': 1.0, 'kids': 3.0, 'of': 1.0, 'lift': 1.0, 'thing': 1.0, 'have': 1.0, 'had': 1.0, 'comfortable': 1.0, 'product': 1.0, 'expensive': 1.0, 'for': 2.0, 'love': 1.0, 'using': 1.0, 'that': 2.0, 'were': 1.0, 'and': 2.0, 'done': 1.0, 'seats': 3.0, 'very': 1.0, 'outstanding': 1.0, 'best': 1.0, 'these': 3.0, 'a': 1.0, 'we': 2.0, 't': 2.0, 'without': 1.0, 'the': 4.0, 'they': 3.0, 'are': 4.0, 'my': 1.0, 'them': 3.0, 'sleek': 1.0, 'do': 1.0, 'much': 3.0, 'can': 1.0, 'but': 1.0, 'training': 1.0, 'didn': 1.0, 'compare': 1.0, 'at': 1.0, 'more': 2.0, 'is': 2.0, 'up': 1.0, 'don': 1.0, 'it': 1.0, 'remove': 1.0, 'all': 3.0, 'to': 2.0, 'seat': 1.0, 'after': 1.0}
Word element => {'happy': 1.0, 'am': 1.0, 'in': 1.0, 'at': 1.0, 'complaints': 1.0, 'no': 1.0, 'adult': 1.0, 'ours': 1.0, 'hers': 1.0, 'which': 2.0, 'knows': 1.0, 'will': 1.0, 'nice': 1.0, 'big': 1.0, 'not': 1.0, 'was': 1.0, 'buying': 1.0, 'she': 2.0, 'it': 4.0, 'where': 1.0, 'love': 1.0, 'clips': 1.0, 'and': 6.0, 'had': 1.0, 'stool': 1.0, 'bought': 2.0, 'into': 2.0, 'that': 1.0, 'step': 1.0, 'old': 1.0, 'very': 1.0, 'little': 3.0, 'potty': 2.0, 'before': 1.0, 'room': 1.0, '5': 1.0, 'this': 3.0, 'wish': 1.0, 'girl': 1.0, 'go': 1.0, 'a': 4.0, 'we': 3.0, 'lifesaver': 1.0, 'other': 1.0, 'but': 1.0, '2': 1.0, 'i': 3.0, 'mess': 1.0, 'the': 2.0, 'fall': 1.0, 'is': 5.0, 'on': 1.0, 'stuff': 1.0, 'training': 1.0, 'always': 1.0, 'of': 1.0, 'bottom': 1.0, 'gross': 1.0, 'have': 1.0, 'skipped': 1.0, 'all': 3.0, 'to': 1.0, 'seat': 5.0, 'our': 1.0, 'any': 1.0, 'fits': 1.0, 'my': 1.0, 'her': 1.0, 'good': 1.0, 'girls': 1.0, 'has': 1.0}
Word element => {'though': 1.0, 'cute': 1.0, 'is': 1.0, 'than': 1.0, 'it': 1.0, 'this': 2.0, 'she': 2.0, 'baby': 1.0, 'and': 2.0, 'quite': 1.0, 'would': 1.0, 'annoying': 1.0, 'my': 1.0, 'like': 1.0, 'wasn': 1.0, 'thought': 1.0, 'didn': 1.0, 'i': 1.0, 'one': 1.0, 'possibly': 1.0, 'taking': 1.0, 'to': 1.0, 'since': 1.0, 'a': 1.0, 'more': 1.0, 't': 2.0, 'liking': 1.0, 'sophie': 2.0, 'darn': 1.0, 'sure': 1.0, 'squeaks': 1.0, 'definitely': 1.0, 'louder': 1.0}
Word element => {'mouth': 1.0, 'the': 1.0, 'my': 1.0, 'toy': 1.0, 'to': 1.0, 'pie': 1.0, 'her': 3.0, 'knobs': 1.0, 'daughther': 1.0, 'loves': 1.0, 'little': 1.0, 'pink': 1.0, 'safe': 1.0, 'perfect': 1.0, 'in': 1.0, 'are': 1.0, 'chewing': 1.0, 'i': 1.0, 'for': 2.0, 'love': 1.0, 'it': 1.0, 'that': 1.0, 'is': 1.0, 'put': 1.0}
Word element => {'purchase': 1.0, 'very': 1.0, 'good': 1.0, 'big': 1.0, 'a': 2.0, 'my': 1.0, 'daughter': 1.0, 'it': 1.0, 'hit': 1.0, 'chew': 1.0, 'indeed': 1.0, 'on': 1.0, 'continues': 1.0, 'loves': 1.0, 'this': 1.0, 'to': 2.0, 'toy': 1.0, 'be': 1.0}
Word element => {'bucks': 1.0, 'six': 1.0, 'get': 1.0, 'wal': 1.0, 'return': 1.0, 'mart': 1.0, 'm': 1.0, 'haven': 1.0, 'but': 1.0, 'unsatisfactory': 1.0, 'okay': 1.0, 'ceiling': 1.0, 'yet': 1.0, 'or': 1.0, 'back': 1.0, 'star': 1.0, 'create': 1.0, 'and': 2.0, 'designs': 1.0, 'are': 1.0, 'they': 1.0, 'that': 1.0, 'is': 2.0, 'gone': 1.0, 'wall': 1.0, 'no': 1.0, 'have': 2.0, 'bulb': 2.0, 'right': 1.0, 'two': 1.0, 'i': 5.0, 've': 1.0, 'entering': 1.0, 'comment': 1.0, 'not': 3.0, 'replacement': 2.0, 'actual': 1.0, 'to': 3.0, 'all': 1.0, 'as': 2.0, 'outside': 1.0, 'pack': 1.0, 'do': 1.0, 'only': 3.0, 'with': 1.0, 'lens': 1.0, 'it': 1.0, 'my': 1.0, 'owned': 1.0, 'direct': 1.0, 'the': 12.0, 'nightlight': 1.0, 'going': 1.0, 't': 1.0, 'a': 2.0, 'bright': 1.0, 'looking': 1.0, 'day': 1.0, 'days': 1.0, 'for': 5.0, 'stars': 1.0, 'problem': 1.0, 'moon': 1.0, 'shut': 2.0, 'if': 2.0, 'did': 1.0, 'so': 1.0, 'just': 1.0, 'few': 1.0, 'light': 6.0, 'seems': 1.0, 'will': 1.0, 'off': 2.0, 'sun': 1.0, 'combined': 1.0, 'shapes': 1.0, 'stays': 1.0, 'room': 1.0, 'conditions': 2.0, 'now': 1.0, 'overhead': 1.0, 'overcast': 1.0, 'on': 3.0}
Word element => {'alone': 1.0, 'when': 1.0, 'i': 1.0, 'once': 1.0, 'was': 1.0, 'to': 1.0, 'wanted': 1.0, 'and': 1.0, 'the': 2.0, 'rails': 2.0, 'my': 1.0, 'bit': 1.0, 'decided': 1.0, 'son': 1.0, 'teething': 1.0, 'it': 1.0, 'he': 3.0, 'this': 2.0, 'left': 1.0, 'protected': 1.0, 'his': 2.0, 'put': 1.0, 'onto': 1.0, 'crib': 2.0, 'mouth': 1.0}
Word element => {'added': 1.0, 'teether': 1.0, 'bonus': 1.0, 'you': 1.0, 'that': 1.0, 'fact': 1.0, 'am': 1.0, 'i': 1.0, 'so': 2.0, 'marks': 1.0, 'teeth': 1.0, 'still': 1.0, 'son': 2.0, 'my': 2.0, 'far': 1.0, 'hold': 1.0, 'washed': 1.0, 'off': 2.0, 'and': 5.0, 'one': 1.0, 'tight': 1.0, 'be': 1.0, 'product': 1.0, 'to': 3.0, 'can': 2.0, 'the': 1.0, 'great': 1.0, 'crib': 2.0, 'though': 1.0, 'left': 1.0, 'is': 3.0, 'on': 1.0, 'this': 1.0, 'come': 1.0, 'taken': 1.0, 'it': 4.0, 'velcro': 1.0, 'loving': 1.0, 'even': 1.0, 'used': 1.0, 'a': 1.0, 'gummi': 1.0, 'rail': 1.0, 'add': 1.0, 'last': 1.0, 'started': 1.0}
Word element => {'my': 1.0, 'items': 1.0, 'useful': 1.0, 'toys': 1.0, 'teether': 1.0, 'attach': 1.0, 'can': 2.0, 'you': 2.0, 'one': 2.0, 'loops': 1.0, 'love': 1.0, 'buy': 1.0, 'cloth': 1.0, 'i': 1.0, 'too': 2.0, 'cute': 1.0, 'and': 1.0, 'chewed': 1.0, 'most': 1.0, 'already': 1.0, 'has': 1.0, 'your': 1.0, 'loves': 1.0, 'or': 1.0, 'if': 1.0, 'that': 1.0, 'awesome': 1.0, 'little': 1.0, 'crib': 1.0, 'an': 1.0, 'product': 2.0, 'to': 2.0, 'is': 6.0, 'infant': 1.0, 'rail': 1.0, 'extremely': 1.0, 'of': 1.0, 'up': 1.0, 'the': 3.0, 'baby': 1.0, 'any': 1.0, 'about': 1.0, 'a': 1.0, 'must': 1.0, 'durable': 1.0, 'this': 3.0, 'it': 3.0}
Word element => {'potentially': 1.0, 'would': 1.0, 'dryer': 1.0, 'not': 2.0, 'dry': 1.0, 'machine': 1.0, 'washing': 1.0, 'air': 1.0, 'in': 1.0, 'a': 1.0, 'toys': 1.0, 'add': 1.0, 'if': 1.0, 'being': 1.0, 'well': 2.0, 'price': 1.0, 'great': 1.0, 'recommend': 1.0, 'highly': 1.0, 'bonus': 1.0, 'teeth': 2.0, 'rail': 1.0, 'take': 1.0, 'is': 2.0, 'herself': 1.0, 'course': 1.0, 'on': 3.0, 'perfect': 1.0, 'this': 4.0, 'with': 1.0, 'able': 1.0, 'eating': 1.0, 'older': 1.0, 'pull': 1.0, 'my': 1.0, 'her': 3.0, 'and': 1.0, 'soon': 1.0, 'sure': 1.0, 'learned': 1.0, 'time': 1.0, 'washes': 1.0, 'still': 2.0, 'had': 1.0, 'chewing': 2.0, 'to': 5.0, 'as': 3.0, 'from': 2.0, 'damage': 2.0, 'child': 1.0, 'up': 2.0, 'of': 1.0, 'it': 6.0, 'stopped': 1.0, 'she': 5.0, 'learn': 1.0, 'crib': 2.0, 'paint': 1.0, 'started': 1.0, 'no': 1.0, 'let': 1.0, 'worth': 1.0, 'or': 2.0, 'cover': 1.0, 'off': 1.0, 'the': 3.0, 'easily': 1.0, 'when': 1.0, 'by': 1.0, 'got': 1.0, 'did': 1.0, 'can': 1.0, 'but': 1.0, 'i': 2.0}
Word element => {'cargo': 1.0, 'in': 1.0, 'stroller': 1.0, 'up': 1.0, 'be': 1.0, 'of': 1.0, 'ahead': 1.0, 'just': 1.0, 'great': 1.0, 'holds': 1.0, 'way': 1.0, 'fit': 1.0, 'for': 2.0, 'with': 2.0, 'hold': 1.0, 'know': 1.0, 'willing': 1.0, 'folding': 1.0, 'stow': 1.0, 'fussy': 1.0, 'snaps': 1.0, 'do': 1.0, 'works': 1.0, 'used': 1.0, 'it': 5.0, 'wish': 1.0, 'this': 2.0, 'won': 1.0, 'easier': 1.0, 'well': 1.0, 'm': 2.0, 'and': 4.0, 'five': 1.0, 'get': 1.0, 'at': 2.0, 've': 1.0, 'shield': 1.0, 'bottom': 1.0, 'stay': 1.0, 'rain': 1.0, 'but': 1.0, 'four': 1.0, 'on': 2.0, 'shape': 1.0, 'amazed': 1.0, 'enough': 1.0, 'now': 1.0, 'to': 3.0, 'i': 3.0, 'or': 1.0, 'he': 1.0, 'how': 1.0, 'you': 1.0, 'times': 1.0, 'easily': 1.0, 'underneath': 1.0, 'fits': 1.0, 'my': 1.0, 'fold': 1.0, 'under': 1.0, 'son': 1.0, 'seem': 1.0, 'feet': 1.0, 'deal': 1.0, 'the': 7.0, 'a': 1.0, 'we': 1.0, 's': 2.0, 't': 2.0, 'time': 1.0, 'bit': 1.0, 'so': 1.0, 'that': 4.0, 'breathe': 1.0, 'they': 1.0, 'bulkiness': 1.0, 'dry': 1.0, 'wraps': 1.0, 'side': 1.0, 'was': 1.0, 'vents': 1.0, 'doesn': 1.0}
Word element => {'plush': 1.0, 'makes': 1.0, 'look': 1.0, 'deceiving': 1.0, 'picture': 1.0, 'not': 1.0, 'material': 1.0, 'nylon': 1.0, 'this': 1.0, 'but': 1.0, 'puffy': 1.0, 'far': 1.0, 'is': 2.0, 'from': 1.0, 'a': 1.0, 'thin': 1.0, 'being': 1.0, 'cover': 1.0, 'it': 3.0, 's': 2.0, 'and': 2.0, 'very': 1.0}
Word element => {'expensive': 1.0, 'an': 1.0, 'times': 1.0, 'error': 1.0, 'and': 1.0, 'trial': 1.0, 'almost': 1.0, 'through': 1.0, 'you': 1.0, 'a': 1.0, 'wording': 1.0, 'at': 1.0, 'no': 1.0, 'so': 1.0, 'however': 1.0, 'up': 1.0, 'set': 1.0, 'there': 1.0, 'is': 1.0, 'figure': 1.0, 'to': 3.0, 'was': 3.0, 'didn': 1.0, 'crib': 2.0, 'stokke': 1.0, 't': 1.0, 'guide': 1.0, 'the': 3.0, 'love': 1.0, 'were': 1.0, 'very': 1.0, 'presented': 1.0, 'i': 2.0, 'appreciate': 1.0, 'out': 1.0, 'how': 1.0, 'process': 1.0, 'instructions': 1.0, 'pictures': 1.0, 'assembling': 1.0, 'assemble': 1.0, 'difficult': 1.0, 'because': 2.0, 'this': 1.0, 'it': 5.0, 'only': 1.0, 'with': 1.0}
Word element => {'worth': 1.0, 'save': 1.0, 'trying': 1.0, 'in': 3.0, 'regular': 1.0, 'go': 1.0, 'doorframes': 1.0, 'we': 1.0, 't': 2.0, 'ebay': 1.0, 'out': 1.0, 'don': 1.0, 'aren': 1.0, 'they': 2.0, 'your': 1.0, 'on': 1.0, 'off': 1.0, 'enough': 2.0, 'house': 1.0, 're': 1.0, 'are': 1.0, 'taking': 1.0, 'just': 2.0, 'by': 1.0, 'you': 1.0, 'child': 1.0, 'toddler': 1.0, 'converts': 1.0, 'if': 1.0, 'easily': 1.0, 'that': 1.0, 'mattressesi': 1.0, 'it': 6.0, 'this': 1.0, 'old': 1.0, 'i': 4.0, 'safely': 1.0, 'crib': 4.0, 'system': 1.0, 'stokke': 2.0, 'son': 1.0, 'bed': 1.0, 'love': 1.0, 'can': 1.0, 'so': 2.0, 'a': 5.0, 'small': 2.0, 'great': 1.0, 'sleepi': 1.0, 'money': 1.0, 'bought': 1.0, 's': 2.0, 'cleaner': 1.0, 'around': 1.0, 'panel': 1.0, '10': 1.0, 'for': 2.0, 'china': 1.0, 'apartment': 1.0, 'trouble': 1.0, 'standard': 1.0, 'ground': 1.0, 'mini': 1.0, 'and': 5.0, 'low': 1.0, 'w': 1.0, 'netherlands': 1.0, 'beautiful': 1.0, 'was': 2.0, 'the': 8.0, 'of': 1.0, 'through': 1.0, 'took': 1.0, 'wood': 1.0, 'side': 1.0, 'made': 1.0, 'which': 1.0, 'would': 1.0, 'cared': 1.0, 'also': 1.0, 'about': 1.0, 'no': 1.0, 'all': 1.0, 'fits': 1.0, 'my': 1.0, 'when': 2.0, 'roll': 1.0, 'to': 3.0, 'bassinet': 1.0, 'had': 2.0, 'real': 1.0, 'altered': 1.0, 'is': 1.0, 'at': 2.0, 'not': 1.0, 'dry': 1.0, 'sheets': 3.0, 'dollars': 1.0, 'finding': 1.0, 'bumper': 2.0, 'or': 1.0, 'something': 1.0, 'buy': 1.0}
Word element => {'nap': 1.0, 'after': 2.0, 'baby': 1.0, 'didn': 1.0, 'frequently': 1.0, 'come': 1.0, 'especially': 1.0, 'while': 1.0, 'wheels': 1.0, 'cheaper': 1.0, 'are': 1.0, 'than': 1.0, 'much': 1.0, 'unsure': 1.0, 'im': 1.0, 'year': 1.0, 'price': 2.0, 'new': 1.0, 'allowed': 1.0, 'have': 2.0, 'would': 2.0, 'our': 1.0, 'budget': 1.0, 'them': 1.0, 'until': 1.0, 'off': 1.0, 'see': 1.0, 'squishing': 1.0, 'once': 1.0, 'room': 1.0, 'but': 2.0, 'chewed': 1.0, 'the': 10.0, 'ends': 1.0, 'moved': 1.0, 'months': 1.0, 'one': 2.0, 'th': 1.0, 'in': 6.0, 'space': 1.0, 'keep': 1.0, 'times': 2.0, 'when': 2.0, 'ended': 1.0, 'barely': 1.0, 'seemed': 1.0, 'day': 1.0, 'marks': 1.0, 'owners': 1.0, 'we': 5.0, 's': 4.0, 't': 2.0, 'and': 7.0, 'really': 1.0, 'cherry': 1.0, 'set': 1.0, 'used': 2.0, 'up': 3.0, 'use': 1.0, 'anyway': 1.0, 'don': 1.0, 'son': 1.0, 'utilizes': 1.0, 'as': 1.0, 'all': 1.0, 'himself': 2.0, 'very': 1.0, 'mattresses': 1.0, 'little': 1.0, 'now': 1.0, 'was': 3.0, 'paid': 1.0, 'purchase': 1.0, 'often': 1.0, 'checked': 1.0, 'higher': 1.0, 'corner': 1.0, 'us': 1.0, 'for': 3.0, 'crib': 5.0, 'to': 5.0, 'bassinet': 1.0, 'he': 6.0, 'this': 3.0, 'it': 4.0, 'a': 10.0, 'small': 1.0, 'original': 1.0, 'limbs': 1.0, 'color': 1.0, 'cosleeping': 1.0, 'alternatives': 1.0, 'because': 2.0, 'that': 1.0, 'wheel': 1.0, 'never': 2.0, 'there': 2.0, 'wheeled': 1.0, 'from': 1.0, 'bedroom': 1.0, 'old': 1.0, 'living': 1.0, 'check': 1.0, 'breathable': 1.0, 'bumper': 2.0, 'his': 2.0, 'just': 1.0, 'pacifiers': 1.0, 'oh': 1.0, 'with': 1.0, '13': 1.0, 'no': 2.0, '300': 1.0, 'about': 1.0, 'problem': 1.0, 'its': 2.0, 'knocked': 1.0, 'head': 1.0, 'good': 1.0, 'sleeps': 1.0, 'multiple': 1.0, 'on': 3.0, 'fantastic': 1.0, 'flinging': 1.0, 'bought': 2.0, 'injuries': 1.0, 'rails': 1.0, 'i': 3.0, 'easy': 1.0, 'bit': 1.0, 'know': 1.0, 'looping': 1.0, 'if': 2.0, 'had': 2.0, 'notice': 1.0, 'at': 3.0, 'is': 2.0, 'bars': 1.0, 'look': 1.0}
Word element => {'height': 1.0, 'optionscons': 1.0, 'color': 1.0, 'my': 1.0, 'many': 1.0, 'limited': 2.0, 'around': 1.0, 'here': 1.0, 'move': 1.0, 'easier': 1.0, 'wheels': 1.0, 'crib': 1.0, 'ever': 1.0, 'scratch': 1.0, 'the': 3.0, 'are': 2.0, 'it': 1.0, 'and': 1.0, 'about': 1.0, 'baby': 1.0, 'cons': 1.0, 'bedding': 2.0, 'stylish': 1.0, '300': 1.0, 'stokke': 1.0, 'to': 1.0, 'options': 1.0, 'compact': 1.0, 'of': 2.0, 'mattress': 2.0, 'never': 1.0, 'sales': 1.0, 'ideal': 1.0, 'weight': 1.0, 'goes': 1.0, 'choices': 1.0, 'make': 1.0, 'on': 1.0, 'avg': 2.0, 'free': 1.0, 'hates': 1.0, 'not': 1.0, 'expensive': 1.0, 'for': 1.0, 'babies': 1.0, 'who': 1.0, 'pros': 2.0, 'above': 1.0, 'in': 1.0}
Word element => {'very': 1.0, 'purchase': 1.0, 'every': 1.0, 'worth': 1.0, 'knew': 1.0, 'once': 1.0, 'bit': 1.0, 'pricey': 1.0, 'although': 1.0, 'over': 1.0, 'all': 1.0, 'and': 3.0, 'hour': 1.0, 'house': 1.0, 'quality': 1.0, 'an': 1.0, 'less': 1.0, 'in': 1.0, 'crib': 1.0, 'assembled': 2.0, 'beautiful': 1.0, 'was': 3.0, 'with': 1.0, 'it': 2.0, 'this': 2.0, 'the': 3.0, 'great': 1.0, 'can': 1.0, 'a': 1.0, 'mini': 1.0, 'wheel': 1.0, 'than': 1.0, 'wood': 1.0, 'looks': 1.0, 'is': 1.0, 'happy': 1.0, 'high': 1.0, 'penny': 1.0, 'we': 2.0, 'easily': 1.0}
Word element => {'spots': 1.0, 'bumbers': 1.0, 'make': 1.0, 'going': 1.0, 'pieces': 1.0, 'those': 1.0, 'knocked': 1.0, 'fit': 1.0, 'rails': 1.0, 'wood': 1.0, 'large': 1.0, 'wonder': 2.0, 'using': 1.0, 'nice': 1.0, 'be': 4.0, 'not': 4.0, '5': 1.0, 'wondered': 1.0, 'lasting': 1.0, '30': 1.0, 'this': 3.0, 'mattress': 1.0, 'and': 5.0, 'found': 1.0, 'sold': 1.0, 'as': 4.0, 'to': 6.0, 'son': 2.0, 'beds': 1.0, 'me': 1.0, 'my': 3.0, '3': 1.0, 'on': 5.0, 'furniture': 1.0, 'double': 1.0, 'they': 2.0, 'his': 1.0, 'around': 2.0, 'still': 1.0, 'course': 1.0, 'there': 1.0, 'months': 1.0, 's49': 1.0, 'now': 2.0, 'bed': 2.0, 'for': 5.0, 'conversion': 1.0, 'kit': 1.0, 'where': 1.0, 'crib': 3.0, 'was': 1.0, 'had': 1.0, 'he': 1.0, '99': 1.0, 'plastic': 1.0, 'with': 1.0, 'recommend': 1.0, 'piece': 1.0, 'him': 2.0, 'it': 7.0, 'old': 2.0, 'i': 11.0, 'own': 1.0, 'until': 1.0, 'see': 1.0, 'a': 2.0, 'that': 4.0, 'into': 2.0, 'convert': 1.0, 'of': 2.0, 'the': 6.0, 'so': 1.0, 'can': 4.0, 'goodwill': 1.0, 'but': 2.0, 'ebay': 1.0, '2': 1.0, 'much': 1.0, 'keep': 1.0, 'move': 1.0, 'seeing': 1.0, 'bumpers': 2.0, 'space': 1.0, 'jr': 1.0, 'these': 2.0, 'cribs': 1.0, 'made': 1.0, 'head': 1.0, 'cl': 2.0, '14': 1.0, 'figured': 1.0, 'people': 1.0, 'would': 3.0, 'sell': 1.0, 'has': 1.0, 'them': 2.0, 'roll': 1.0, 'when': 1.0, 'score': 1.0, 'am': 2.0, 'years': 1.0, 'converted': 1.0, 'guess': 1.0, 'cheaper': 1.0, 'why': 1.0, 'just': 1.0, '4': 1.0, 'replace': 1.0, 'will': 2.0, 'also': 1.0, 'is': 4.0, 'look': 1.0, 'or': 1.0, 'then': 1.0, 'chairs': 1.0, 'like': 1.0, 'want': 1.0}
Word element => {'here': 1.0, 'who': 1.0, 'someone': 1.0, 'find': 1.0, 'very': 1.0, 'better': 1.0, 'ship': 1.0, 'something': 1.0, 'change': 1.0, 'trying': 1.0, 'researched': 1.0, 'have': 1.0, 'stuck': 1.0, 'gets': 1.0, 'which': 2.0, 'as': 2.0, 'never': 1.0, 'nightmare': 1.0, 'been': 2.0, 's': 4.0, 'guard': 1.0, 'attach': 1.0, 'pain': 1.0, 'is': 3.0, 'bed': 3.0, 'whole': 1.0, 'cover': 1.0, 'design': 1.0, 'sleeping': 2.0, 'while': 2.0, 'too': 1.0, 'anyone': 1.0, 'and': 7.0, 'just': 2.0, 'spins': 1.0, 'on': 2.0, 'noticed': 1.0, 'hasn': 1.0, 'way': 1.0, 'happening': 1.0, 'will': 4.0, 'popular': 1.0, 'failed': 1.0, 'but': 2.0, '2': 1.0, 'carrier': 1.0, 'bolts': 1.0, 'has': 1.0, 'stripped': 1.0, 'them': 1.0, 'started': 1.0, 'when': 2.0, 'recommend': 1.0, 'were': 2.0, 'tighten': 1.0, 'was': 2.0, 'screws': 1.0, 'had': 2.0, 'to': 10.0, 'other': 1.0, 'all': 1.0, 'leaves': 1.0, 'easy': 1.0, 'months': 1.0, 'get': 2.0, 'stokke': 2.0, 'son': 4.0, 'battle': 1.0, 'marks': 1.0, 'short': 1.0, 'due': 1.0, 'called': 1.0, 'bought': 2.0, 'already': 1.0, 'it': 9.0, 'few': 1.0, 'rail': 1.0, 'this': 6.0, 'mattress': 1.0, 'looked': 1.0, 'from': 2.0, 'completely': 1.0, 'leg': 1.0, 'we': 5.0, 'a': 6.0, 'go': 1.0, 'move': 1.0, 'turns': 1.0, 'after': 1.0, 'can': 1.0, 'so': 3.0, 'worked': 1.0, 'room': 2.0, 'unique': 1.0, 'customers': 1.0, 'off': 1.0, 'until': 1.0, 'maneuver': 1.0, 'my': 4.0, 'i': 5.0, 'well': 1.0, 'outgrown': 1.0, '1000': 1.0, 'not': 2.0, 'also': 1.0, 'poorly': 1.0, 'crib': 5.0, 'designed': 1.0, 'times': 1.0, 'paint': 1.0, 'nothing': 1.0, 'their': 1.0, 'wheels': 1.0, 'covers': 1.0, 'care': 1.0, 'about': 1.0, 'including': 1.0, '10': 1.0, 'for': 2.0, 't': 2.0, 'cost': 1.0, 'new': 1.0, 'home': 1.0, 'depot': 1.0, 'of': 1.0, 'the': 11.0, 'longer': 1.0, 'or': 1.0, 'bumper': 4.0, 'now': 3.0, 'thin': 1.0, 'in': 1.0, 'm': 1.0, 'with': 1.0, 'korea': 1.0, 'teething': 1.0, 'eating': 1.0, 'dealing': 1.0, 'rails': 1.0, 'does': 1.0, 'guards': 3.0, 'velcro': 1.0, 'shape': 1.0, 'head': 1.0, 'bad': 1.0, 'are': 1.0, 'because': 3.0, 'fall': 1.0, 'that': 3.0, 'bangs': 1.0, 'around': 1.0, 'his': 1.0, 'yet': 1.0, 'odd': 1.0, 'he': 4.0}
Word element => {'will': 1.0, 'less': 1.0, 'nice': 1.0, 'as': 1.0, 'just': 1.0, 'about': 1.0, 'versatility': 1.0, 'we': 3.0, 's': 2.0, 'a': 3.0, 'bookshelf': 1.0, 'move': 1.0, 'went': 1.0, 'room': 2.0, 'hardwoods': 1.0, 'his': 4.0, 'all': 1.0, 'son': 2.0, 'size': 1.0, 'stokke': 1.0, 'under': 1.0, 'often': 1.0, '4': 1.0, 'i': 6.0, 'thinking': 1.0, 'out': 1.0, 'replacement': 1.0, 'purchase': 1.0, 'company': 1.0, 'biggest': 1.0, 'would': 1.0, 'in': 4.0, 'not': 3.0, 'my': 3.0, 'me': 2.0, 'retrieve': 1.0, 'removing': 1.0, 'wonderful': 1.0, 'you': 1.0, 'able': 1.0, 'have': 2.0, 'and': 5.0, 'look': 2.0, 'is': 3.0, 'it': 3.0, 'he': 1.0, 'received': 1.0, 'this': 1.0, 'with': 2.0, '2': 1.0, 'place': 1.0, 'think': 1.0, 'except': 1.0, 'overall': 1.0, 'crib': 8.0, 'been': 1.0, 'because': 1.0, 'that': 2.0, 'wheels': 6.0, 'together': 1.0, 'the': 13.0, 'of': 9.0, 'drawback': 1.0, 'set': 2.0, 'are': 2.0, 'lock': 1.0, 'came': 1.0, 'now': 2.0, 'considering': 1.0, 'do': 1.0, 'money': 1.0, 'called': 1.0, 'purchasing': 1.0, 'pad': 1.0, 'structure': 1.0, 'for': 2.0, 'keep': 1.0, 'to': 4.0, 'pretty': 1.0, 'stay': 1.0, 'service': 1.0, 'walnut': 1.0, 'good': 1.0, 'sent': 2.0, 'close': 1.0, 'even': 1.0, 'though': 1.0, 'they': 2.0, 'know': 1.0, 'like': 1.0, 'find': 2.0, 'colored': 1.0, 'locked': 1.0, 'position': 1.0, 'white': 2.0, 'again': 3.0, 'one': 1.0, 'live': 1.0, 'staying': 1.0, 'can': 2.0, 'so': 1.0, 'today': 1.0, 'despite': 1.0, 'center': 2.0, 'from': 1.0, 'was': 1.0, 'honestly': 1.0, 'what': 1.0}
Word element => {'recommend': 1.0, 'definitely': 1.0, 'satisfied': 1.0, 'very': 1.0, 'week': 1.0, 'need': 1.0, 'off': 1.0, 'born': 1.0, 'thing': 1.0, 'can': 1.0, 'but': 1.0, 'four': 1.0, 'greatest': 2.0, 'even': 1.0, 'didn': 1.0, 'got': 1.0, 'on': 1.0, 'function': 1.0, 'only': 2.0, 'get': 2.0, 'and': 8.0, 'especially': 1.0, 'is': 4.0, 'around': 1.0, 'serial': 1.0, 'sleepi': 1.0, 'bought': 1.0, 'live': 1.0, 'wheels': 1.0, 'crib': 3.0, 'playpen': 1.0, 'to': 1.0, 'high': 1.0, 'design': 1.0, 'stokke': 2.0, 'under': 1.0, 'just': 2.0, 'by': 1.0, 'in': 5.0, 'closet': 1.0, 'it': 8.0, 'this': 2.0, 'about': 1.0, 'walk': 1.0, 'received': 2.0, 'have': 2.0, 'great': 1.0, 'longer': 1.0, 'the': 8.0, 'space': 1.0, 'bucks': 1.0, 'saved': 1.0, 's': 1.0, 'city': 1.0, 'replacement': 1.0, 't': 1.0, 'ago': 1.0, 'for': 3.0, 'such': 1.0, 'house': 1.0, 'regret': 1.0, 'i': 8.0, 'putting': 1.0, 'be': 2.0, 'first': 1.0, 'that': 2.0, 'everywhere': 1.0, 'because': 1.0, 'price': 1.0, 'no': 1.0, 'years': 1.0, 'my': 4.0, 'me': 1.0, 'now': 2.0, 'still': 2.0, 'if': 1.0, 'would': 3.0, 'move': 1.0, 'apartment': 1.0, 'used': 1.0, 'damaged': 1.0, 'hundred': 1.0, 'second': 1.0, 'right': 1.0, 'living': 1.0, 'number': 1.0, 'will': 1.0, 'warranty': 1.0, 'couple': 1.0, 'buying': 1.0, 'oh': 1.0, 'with': 1.0, 'fits': 1.0, 'other': 1.0, 'cs': 1.0, 'amazon': 1.0, 'from': 1.0, 'within': 1.0, 'part': 1.0, 'tiny': 1.0, 'small': 1.0, 'a': 4.0, 'emailed': 1.0, 'usa': 1.0}
Word element => {'over': 1.0, 'color': 1.0, 'and': 2.0, 'items': 1.0, 'very': 1.0, 'as': 1.0, 'nursery': 1.0, 'totes': 1.0, 'stokke': 1.0, 'for': 1.0, 'time': 1.0, 'they': 2.0, 'heavy': 1.0, 'great': 1.0, 'these': 1.0, 'are': 3.0, 'sturdy': 1.0, 'good': 1.0, 'a': 2.0, 'well': 1.0, 'to': 1.0, 'wipe': 1.0, 'clean': 1.0, 'compliment': 1.0, 'maintain': 1.0, 'their': 1.0}
Word element => {'from': 1.0, 'go': 1.0, 'guy': 1.0, 'have': 1.0, 'and': 1.0, 'my': 2.0, 'receive': 1.0, 'can': 1.0, 'wait': 1.0, 'bit': 1.0, 'a': 1.0, 'like': 1.0, 'not': 1.0, 'little': 1.0, 'didn': 1.0, 'crib': 2.0, 'stokke': 1.0, 'version': 1.0, 'm': 1.0, 'his': 2.0, 'mattress': 3.0, 'i': 5.0, 'this': 2.0, 't': 2.0, 'the': 2.0, 'for': 1.0, 'one': 1.0, 'love': 1.0, 'find': 1.0, 'absolutely': 1.0, 'is': 1.0, 'second': 1.0, 'bassinet': 1.0, 'are': 1.0, 'actually': 1.0, '2nd': 1.0, 'soft': 1.0, 'surprised': 1.0, 'buying': 1.0, 'was': 1.0, 'to': 3.0, 'child': 1.0, 'out': 1.0, 'that': 1.0, 'of': 1.0, 'there': 1.0}
Word element => {'crib': 1.0, 'sleepi': 1.0, 'stokke': 1.0, 'a': 1.0, 'when': 1.0, 'options': 1.0, 'other': 1.0, 'have': 1.0, 'no': 1.0, 'safe': 1.0, 'because': 1.0, 'just': 1.0, 'but': 1.0, 'doesn': 1.0, 'baby': 1.0, 'is': 3.0, 'which': 1.0, 'for': 1.0, 'extremely': 1.0, 't': 1.0, 'comfy': 1.0, 'mattress': 1.0, 'you': 2.0, 'seem': 1.0, 's': 1.0, 'very': 1.0, 'hard': 1.0, 'this': 1.0, 'it': 3.0, 'buy': 1.0, 'guess': 1.0, 'i': 1.0, 'overpriced': 1.0, 'serves': 1.0, 'purpose': 1.0}
Word element => {'me': 1.0, 'makes': 1.0, 'sheets': 1.0, 'so': 1.0, 'light': 1.0, 'seems': 1.0, 'like': 1.0, 'sleeping': 1.0, 'this': 1.0, 'my': 1.0, 'for': 1.0, 'daughter': 1.0, 'easier': 1.0, 'likes': 1.0, 'mattress': 1.0, 'changing': 1.0, 'it': 2.0, 'on': 1.0, 'is': 1.0}
Word element => {'there': 1.0, 'be': 1.0, 'like': 1.0, 'using': 1.0, 'parents': 1.0, 'excited': 1.0, 'said': 1.0, 'they': 2.0, 'from': 1.0, 'flights': 1.0, 'note': 1.0, 'side': 1.0, 'traveling': 1.0, 'parent': 1.0, 'must': 1.0, 'mind': 1.0, 'what': 1.0, 'faa': 1.0, 'approved': 1.0, 'should': 1.0, 'pricey': 1.0, 'see': 1.0, 'yes': 1.0, 'were': 1.0, 'stress': 1.0, 'recommend': 1.0, 'install': 1.0, 'cannot': 1.0, 'very': 1.0, 'but': 2.0, 'attendants': 1.0, 'during': 1.0, 'seat': 1.0, 'exactly': 1.0, 'preparing': 1.0, 'comfortable': 1.0, 'also': 1.0, 'compact': 1.0, 'horrific': 1.0, 'have': 2.0, 'daunting': 1.0, 'mid': 1.0, 'entire': 1.0, 'my': 1.0, 'aboard': 1.0, 'meltdown': 1.0, 'for': 3.0, 'cost': 1.0, 'fit': 1.0, 'use': 2.0, 'best': 1.0, 'any': 1.0, 'your': 2.0, 'flight': 3.0, 'on': 3.0, 'lax': 1.0, 'without': 1.0, 'the': 15.0, 'of': 5.0, 'little': 2.0, 'two': 1.0, 'i': 4.0, 'etc': 1.0, 'you': 3.0, 'purchased': 1.0, 'had': 1.0, 'suggest': 1.0, 'more': 2.0, 'husband': 1.0, 'to': 6.0, 'our': 3.0, 'old': 2.0, 'generally': 1.0, 'point': 1.0, 'cross': 1.0, 'system': 4.0, 'yourself': 1.0, 'beauty': 1.0, 'systems': 2.0, 'at': 2.0, 'is': 10.0, 'commented': 1.0, 'child': 1.0, 'product': 1.0, 'year': 2.0, 'video': 1.0, 'required': 1.0, 'peace': 1.0, '1': 1.0, 'and': 10.0, 'small': 4.0, 'imagine': 1.0, 'a': 6.0, 'we': 2.0, 'air': 1.0, 'angeles': 1.0, 'felt': 2.0, 'highly': 1.0, 'this': 3.0, 'carseats': 1.0, 'instructional': 1.0, 'with': 3.0, 'that': 4.0, 'country': 1.0, '5': 3.0, 'inside': 2.0, 'tote': 1.0, 'by': 1.0, 'pull': 1.0, 'tie': 1.0, 'security': 1.0, 'summer': 1.0, 'bulky': 1.0, 'travel': 1.0, 'will': 1.0, 'boarding': 1.0, 'fits': 1.0, 'luggage': 1.0, 'save': 2.0, 'carry': 1.0, 'patience': 1.0, 'bit': 1.0, 'easy': 2.0, 'worst': 1.0, 'difficult': 1.0, 'enough': 2.0, '3': 4.0, 'manuevering': 1.0, 'children': 3.0, 'airport': 1.0, 'again': 1.0, 'car': 1.0, 'seats': 1.0, 'not': 1.0, 'if': 1.0, 'boosters': 1.0, 'cares': 3.0, 'having': 1.0, 'it': 7.0, 'lug': 1.0, 'harness': 1.0, 'secure': 1.0, 'extremely': 2.0, 'extra': 1.0, '100': 1.0, 'safe': 2.0, 'los': 1.0, 'through': 1.0, 'backpack': 1.0, 'watch': 1.0, 'can': 1.0, 'so': 1.0, 'are': 1.0}
Word element => {'age': 1.0, 'kids': 1.0, 'with': 1.0, 'who': 1.0, 'friends': 1.0, 'overall': 1.0, 'would': 2.0, 'old': 1.0, 'normal': 1.0, 'than': 1.0, 'anymore': 1.0, 'didn': 1.0, 'our': 1.0, 'we': 1.0, 't': 2.0, 'up': 2.0, 'having': 1.0, 'slipping': 2.0, 'travel': 1.0, 'will': 1.0, 'prop': 1.0, 'i': 6.0, 'two': 2.0, 'daughter': 3.0, 'seats': 1.0, 'plane': 2.0, 'beats': 1.0, 'flight': 1.0, 'on': 2.0, 'put': 1.0, 'think': 1.0, 'back': 2.0, 'complain': 1.0, 'lugging': 1.0, 'year': 1.0, 'product': 1.0, 'for': 2.0, 'exactly': 1.0, 'loved': 1.0, 'took': 1.0, 'only': 1.0, 'works': 1.0, 'first': 1.0, 'highly': 1.0, 'this': 1.0, 'ended': 1.0, 'perfect': 1.0, 'it': 9.0, 'she': 3.0, 'sure': 1.0, 'that': 3.0, 'gave': 1.0, 'her': 2.0, 'down': 1.0, 'had': 1.0, 'let': 1.0, 'yet': 1.0, 'build': 1.0, 'comfortable': 1.0, 'say': 1.0, 'is': 5.0, 'to': 6.0, 'in': 2.0, 'hadn': 1.0, 'seat': 4.0, 'all': 2.0, 'was': 4.0, 'looking': 1.0, 'extra': 1.0, 'issue': 1.0, 'my': 4.0, 'me': 1.0, 'heard': 1.0, 'and': 8.0, 'kept': 3.0, 'weighs': 1.0, 'lightweight': 1.0, 'so': 4.0, 'easy': 2.0, 'bit': 1.0, 'blanket': 1.0, 'from': 2.0, 'tucking': 1.0, 'about': 2.0, '2': 1.0, 'normally': 1.0, '29lbs': 1.0, 'bigger': 1.0, 'the': 9.0, 'person': 1.0, 'of': 4.0, 'a': 3.0, 'small': 1.0, 'what': 1.0, 'when': 1.0, '4': 1.0, 'leather': 1.0, 'seen': 1.0, 'older': 1.0, 'attendants': 1.0, 'be': 1.0, 'car': 2.0, 'us': 2.0, 'room': 1.0, 'taken': 1.0, 'by': 1.0, 'kicking': 1.0, 'front': 1.0, 'recommend': 1.0, 'were': 1.0, 'excited': 1.0, 'off': 1.0, 'see': 1.0, 'they': 1.0, 'but': 1.0, 'really': 1.0, 'prevent': 1.0, 'very': 1.0}
Word element => {'time': 1.0, 'a': 1.0, 'toys': 1.0, 'special': 1.0, 'fuss': 1.0, 'did': 1.0, 'whole': 1.0, 'old': 1.0, 'the': 1.0, '2': 2.0, 'around': 1.0, 'some': 1.0, 'carry': 1.0, 'safe': 1.0, 'use': 1.0, 'not': 1.0, 'know': 1.0, 'entertained': 1.0, 'we': 1.0, 'during': 1.0, 'year': 1.0, 'very': 1.0, '1': 1.0, 'and': 2.0, 'peace': 1.0, 'easy': 2.0, 'she': 2.0, 'compact': 1.0, 'had': 1.0, 'to': 3.0, 'was': 2.0, 'mind': 1.0, 'movie': 1.0, 'of': 1.0, 'us': 1.0, 'gave': 1.0, 'it': 2.0, 'our': 2.0, 'flight': 1.0, 's': 1.0, 'light': 1.0, 'weight': 1.0, 'so': 2.0}
Word element => {'limitations': 1.0, 'critical': 1.0, 'stars': 1.0, '2': 1.0, 'use': 1.0, 'real': 1.0, 'acceptable': 1.0, 'mean': 1.0, 'interference': 1.0, 'lap': 1.0, 'both': 1.0, 'flaws': 1.0, 'safe': 1.0, 'will': 1.0, 'eye': 1.0, 'careful': 1.0, 'with': 4.0, 'yes': 1.0, 'can': 2.0, 'so': 1.0, 'do': 1.0, 'rate': 1.0, 'chest': 4.0, 'and': 4.0, 'it': 5.0, 'ease': 1.0, 'nor': 1.0, 'pass': 1.0, 'then': 1.0, 'through': 1.0, 'clip': 1.0, 'main': 2.0, 'two': 1.0, 'slip': 1.0, 'you': 7.0, 'air': 1.0, 'in': 5.0, 'seat': 3.0, 'commercial': 1.0, 'our': 2.0, 'to': 6.0, 'other': 1.0, 'all': 1.0, 'works': 2.0, 'airline': 1.0, 'for': 3.0, 'where': 1.0, 'place': 1.0, 'not': 3.0, 'stay': 1.0, 'a': 6.0, 's': 1.0, 'belt': 3.0, 'was': 2.0, 'at': 1.0, 'is': 7.0, 'more': 1.0, 'like': 1.0, 'using': 1.0, 'advertised': 2.0, 'but': 3.0, 'this': 3.0, 'system': 1.0, 'your': 1.0, 'idea': 1.0, 'probably': 1.0, 'taking': 1.0, 'while': 1.0, 'allow': 1.0, 'seatbelt': 1.0, 'from': 1.0, 'back': 1.0, 'child': 1.0, 'product': 3.0, 'toddler': 3.0, 'buckles': 1.0, 'undo': 2.0, 'loops': 1.0, 'which': 2.0, 'good': 1.0, 'behind': 3.0, 'that': 4.0, 'as': 4.0, 'yours': 1.0, 'work': 2.0, 'hard': 1.0, 'over': 1.0, 'flight': 1.0, 'on': 1.0, 'make': 1.0, 'voila': 1.0, 'summary': 1.0, 'buckled': 2.0, 'however': 1.0, 'easy': 1.0, 'get': 1.0, 'sure': 1.0, 'son': 1.0, 'fold': 1.0, 'buckle': 1.0, 'keep': 1.0, 'restraint': 4.0, 'did': 1.0, 'plastic': 1.0, 'i': 1.0, 'well': 1.0, 'first': 1.0, 'there': 1.0, 'biggest': 1.0, 'prevents': 1.0, 'something': 1.0, 'problem': 1.0, 'world': 1.0, 'suitable': 1.0, 'or': 1.0, 'need': 1.0, 'sit': 1.0, 'no': 1.0, 'one': 1.0, 'tray': 1.0, 'of': 1.0, 'the': 17.0, 'person': 2.0, 'sitting': 2.0, 'their': 1.0, 'down': 1.0, 'll': 2.0, 'they': 1.0, 'want': 1.0}
Word element => {'install': 1.0, 'though': 1.0, 'transport': 1.0, 'happy': 1.0, 'slip': 2.0, 'no': 1.0, 'got': 1.0, 'had': 1.0, 'purchased': 1.0, 'he': 3.0, 'this': 1.0, 'restless': 1.0, 'started': 1.0, 'the': 2.0, '2': 2.0, 'more': 1.0, 'gave': 1.0, 'into': 1.0, 'readjusting': 1.0, 'almost': 1.0, 'year': 1.0, 'for': 1.0, 'our': 1.0, 'to': 4.0, 'item': 1.0, 'hour': 2.0, 'a': 1.0, 'we': 2.0, 's': 1.0, 'finally': 1.0, 'an': 1.0, 'handy': 1.0, 'old': 1.0, 'i': 1.0, 'boy': 1.0, 'down': 2.0, 'in': 1.0, 'numerous': 1.0, 'only': 1.0, 'harness': 1.0, 'since': 1.0, 'flight': 2.0, 'up': 1.0, 'was': 2.0, 'crotch': 1.0, 'continued': 1.0, 'strap': 1.0, 'and': 4.0, 'easy': 1.0, 'get': 1.0, 'there': 1.0, 'mad': 1.0, 'after': 1.0, 'when': 1.0, 'unbuckling': 1.0, 'times': 1.0}
Word element => {'bag': 1.0, 'store': 1.0, 'easy': 1.0, 's': 1.0, 'restless': 1.0, 'got': 1.0, 'install': 1.0, 'in': 1.0, 'seat': 2.0, 'job': 1.0, 'to': 10.0, 'our': 1.0, 'ticket': 1.0, 'own': 1.0, 'needed': 1.0, 'allowed': 1.0, 'his': 1.0, 'when': 2.0, 'kids': 1.0, 'this': 1.0, '3': 1.0, 'hour': 1.0, 'will': 1.0, 'travelling': 1.0, 'seoul': 1.0, '2': 1.0, 'shoulder': 1.0, 't': 1.0, 'we': 1.0, 'did': 1.0, 'restraint': 4.0, 'have': 3.0, 'he': 2.0, 'restrain': 1.0, 'manual': 1.0, 'wouldn': 1.0, 'alone': 1.0, 'included': 1.0, 'so': 1.0, 'onto': 1.0, 'year': 1.0, 'product': 1.0, 'for': 1.0, 'bought': 1.0, 'old': 1.0, 'and': 4.0, 'carseat': 1.0, 'had': 3.0, '12': 1.0, 'was': 4.0, 'clipped': 1.0, 'be': 1.0, 'straps': 1.0, 'something': 1.0, 'allow': 1.0, 'that': 5.0, 'on': 1.0, 'flight': 3.0, 'staff': 1.0, 'told': 1.0, 'my': 3.0, 'may': 1.0, 'me': 1.0, 'approved': 2.0, 'not': 1.0, 'only': 2.0, 'car': 1.0, 'those': 1.0, 'went': 1.0, 'were': 1.0, 'cares': 1.0, 'worked': 1.0, 'produce': 1.0, 'before': 1.0, 'instruction': 1.0, 'information': 1.0, 'a': 1.0, 'card': 1.0, 'shows': 1.0, 'lug': 1.0, 'him': 1.0, 'it': 4.0, 'is': 3.0, 'attempted': 1.0, 'faa': 2.0, 'glad': 1.0, 'left': 1.0, 'items': 1.0, 'behind': 1.0, 'seats': 1.0, 'just': 2.0, 'aware': 1.0, 'backpack': 1.0, 'show': 1.0, 'proof': 1.0, 'out': 1.0, 'they': 1.0, 'use': 1.0, 'with': 1.0, 'smooth': 1.0, 'i': 8.0, 'well': 1.0, 'complaint': 1.0, 'son': 1.0, 'you': 2.0, 'able': 1.0, 'slip': 1.0, 'the': 12.0, 'device': 1.0, 'of': 1.0}
Word element => {'home': 1.0, 'seem': 1.0, 'several': 1.0, 'purse': 1.0, 'be': 1.0, 'with': 1.0, 'bag': 1.0, 'travel': 1.0, 'very': 1.0, 'was': 1.0, 'trip': 1.0, 'kept': 1.0, 'during': 2.0, 'total': 1.0, '5': 1.0, 'had': 1.0, 'flights': 2.0, 'of': 1.0, 'backpack': 1.0, 'easy': 1.0, 'harnesses': 1.0, 'easily': 1.0, 'you': 1.0, 'it': 3.0, 'only': 1.0, 'wearing': 1.0, 'from': 1.0, 'year': 1.0, 'were': 1.0, 'alaska': 1.0, 'kids': 1.0, 'found': 1.0, 'recent': 1.0, 'everyone': 2.0, 'coast': 1.0, 't': 1.0, 'we': 2.0, 's': 1.0, 'a': 3.0, 'i': 1.0, 'used': 1.0, 'cares': 1.0, 'seated': 1.0, 'for': 2.0, 'east': 1.0, 'and': 4.0, 'the': 6.0, 'worth': 1.0, 'or': 1.0, 'behind': 1.0, 'my': 2.0, 'didn': 1.0, 'olds': 1.0, 'investment': 1.0, 'great': 1.0, 'install': 2.0, 'car': 1.0, 'in': 1.0, 'beats': 1.0, 'lugging': 1.0, 'sleep': 1.0, 'our': 3.0, 'to': 5.0, 'seat': 1.0, 'lower': 1.0, 'inconvenience': 1.0, 'on': 2.0, '3': 1.0, 'your': 1.0, 'comes': 1.0, 'is': 2.0, 'uncomfortable': 1.0, 'tray': 1.0, 'having': 1.0, 'able': 1.0, 'polite': 1.0, 'ask': 1.0, 'accommodating': 1.0, 'definitely': 2.0, 'person': 1.0, 'flight': 2.0, 'child': 1.0, 'hours': 1.0, 'their': 1.0, 'that': 2.0, 'so': 1.0, '2': 1.0, 'can': 2.0}
Word element => {'what': 1.0, 'visit': 1.0, 'old': 1.0, 'are': 1.0, 'rides': 1.0, 'one': 2.0, 'for': 1.0, 'on': 1.0, 'don': 1.0, 'highly': 1.0, 'kept': 1.0, 'both': 1.0, 'd': 1.0, 't': 1.0, 'a': 2.0, 'recommended': 1.0, 'well': 1.0, 'active': 1.0, 'place': 1.0, 'four': 1.0, 'wriggling': 1.0, 'know': 1.0, 'very': 1.0, 'year': 1.0, 'and': 2.0, 'do': 1.0, 'i': 3.0, 'two': 1.0, 'plane': 1.0, 'in': 2.0, 'as': 1.0, 'to': 1.0, 'with': 1.0, 'this': 1.0, 'older': 1.0, 'out': 1.0, 'them': 1.0, 'will': 1.0, 'buy': 1.0, 'definitely': 1.0, 'family': 1.0, 'my': 1.0, 'have': 1.0, 'younger': 1.0, 'daughter': 1.0, 'until': 1.0, 'they': 1.0, 'bit': 1.0}
Word element => {'belt': 1.0, 'vs': 1.0, 'regular': 1.0, 'in': 1.0, 'her': 1.0, 'of': 1.0, 'advantages': 1.0, 'negated': 1.0, 'which': 1.0, 'under': 1.0, 'from': 1.0, 'having': 1.0, 'tend': 1.0, 'does': 1.0, 'top': 1.0, 'and': 2.0, 'heads': 1.0, 'complaint': 1.0, 'this': 1.0, 'harness': 2.0, 'worked': 1.0, 'ok': 1.0, 'old': 1.0, 'for': 1.0, 'seat': 2.0, 'to': 2.0, 'our': 1.0, 'that': 2.0, 'something': 1.0, 'goes': 1.0, '12': 1.0, 'on': 1.0, 'a': 2.0, 'might': 1.0, 'it': 2.0, 'month': 1.0, 'she': 2.0, 'bigger': 1.0, 'there': 2.0, 'around': 1.0, 'is': 4.0, 'strap': 2.0, 'push': 1.0, 'my': 1.0, 'work': 1.0, 'their': 1.0, 'better': 1.0, 'times': 1.0, 'when': 1.0, 'little': 1.0, 'chief': 1.0, 'several': 1.0, 'no': 1.0, 'between': 1.0, 'legs': 1.0, 'the': 5.0, 'without': 1.0, 'grippy': 1.0, 'straps': 1.0, 'sit': 1.0, 'forward': 1.0, 'slid': 1.0, 'out': 1.0}
Word element => {'federally': 1.0, 'say': 1.0, 'their': 1.0, 'buyers': 1.0, 'should': 1.0, 'do': 1.0, 'but': 1.0, 'without': 1.0, 'approval': 1.0, 'federal': 1.0, 'approved': 1.0, 'they': 2.0, 'ignore': 1.0, 'why': 1.0, 'which': 1.0, 'stating': 1.0, 'airline': 1.0, 'know': 1.0, 'because': 1.0, 'fly': 1.0, 'airlines': 2.0, 'is': 3.0, 'waste': 1.0, 'check': 1.0, 'caution': 1.0, 'a': 1.0, 'don': 2.0, 'refused': 1.0, 'misleading': 1.0, 'it': 3.0, 'first': 1.0, 'with': 1.0, 'sellers': 1.0, 'only': 1.0, 'this': 1.0, 'the': 3.0, 't': 2.0, 'i': 2.0, 'delta': 1.0, 'or': 1.0, 'its': 1.0, 'was': 1.0, 'to': 3.0, 'allow': 2.0, 'use': 1.0, 'how': 1.0}
Word element => {'awe': 1.0, 'have': 1.0, 'all': 1.0, 'parents': 1.0, 'for': 1.0, 'comfortable': 1.0, 'to': 1.0, 'had': 1.0, 'was': 1.0, 'and': 2.0, 'on': 1.0, 'the': 3.0, 'of': 1.0, 'has': 1.0, 'car': 1.0, 'were': 1.0, 'our': 1.0, 'seat': 2.0, 'lugging': 1.0, 'tired': 1.0, 'her': 2.0, 'got': 1.0, 'other': 1.0, 'daughters': 1.0, 'we': 1.0, 'plane': 1.0, 'it': 1.0, 'this': 2.0, 'seriously': 1.0, 'dream': 1.0, 'been': 1.0, 'a': 1.0, 'keeps': 1.0, 'actually': 1.0, 'in': 2.0}
Word element => {'better': 1.0, 'think': 1.0, 'but': 1.0, 'large': 1.0, 'works': 1.0, 'her': 1.0, 'what': 1.0, 'to': 2.0, 'i': 1.0, 'old': 1.0, 'small': 1.0, 'on': 1.0, 'understand': 1.0, 'our': 1.0, 'for': 2.0, 'one': 1.0, 'kids': 1.0, 'too': 2.0, 'going': 1.0, 'is': 2.0, 'herself': 1.0, 'really': 1.0, 'and': 1.0, 'physically': 1.0, 'struggles': 1.0, 'free': 1.0, 'just': 1.0, 'not': 1.0, 'year': 1.0, 'from': 1.0, 'older': 1.0, 'this': 1.0, 'it': 2.0, 's': 1.0}
Word element => {'well': 1.0, 'problems': 1.0, 'with': 1.0, 'able': 1.0, 'by': 1.0, 'travel': 1.0, 'flight': 1.0, 'over': 1.0, 'would': 1.0, 'undoing': 1.0, 'upright': 1.0, 'them': 1.0, 'lap': 1.0, 'under': 1.0, 'little': 1.0, 'down': 1.0, 'he': 2.0, 'enough': 1.0, 'legs': 1.0, 'between': 1.0, 'went': 1.0, 'that': 1.0, 'takes': 1.0, 'definitly': 1.0, 'far': 1.0, 'downfall': 1.0, 'and': 3.0, 'couldn': 1.0, 'not': 1.0, 'car': 1.0, 'my': 1.0, 'asleep': 1.0, 'without': 1.0, 'the': 9.0, 'comfortable': 1.0, 'seemed': 1.0, 'great': 1.0, 'no': 1.0, 'bulky': 1.0, 'fall': 1.0, 'is': 2.0, 'belts': 1.0, 'task': 1.0, 'kid': 1.0, 'can': 1.0, 'in': 5.0, 'slide': 1.0, 'from': 1.0, 'kick': 1.0, 'hurry': 1.0, 'pull': 1.0, 'together': 1.0, 'sense': 1.0, 'bit': 1.0, 'so': 2.0, 'it': 2.0, 'harness': 1.0, 'only': 1.0, 't': 2.0, 'a': 8.0, 's': 2.0, 'you': 1.0, 'way': 1.0, 'i': 2.0, 'or': 1.0, 'as': 1.0, 'all': 1.0, 'seat': 4.0, 'to': 5.0, 'recommend': 1.0, 'belt': 1.0, 'was': 2.0, 'there': 1.0, 'strapped': 1.0, 'him': 1.0, 'be': 2.0, 'get': 1.0, 'easy': 1.0, 'normal': 1.0, 'strap': 1.0, 'carry': 1.0, 'put': 1.0, 'on': 2.0, 'minute': 1.0, 'carries': 1.0, 'wish': 1.0}
Word element => {'waste': 1.0, 'complete': 1.0, 'which': 1.0, 'crash': 1.0, 'across': 1.0, 'seatbelt': 1.0, 'used': 1.0, 'them': 1.0, 'reinstall': 1.0, 'we': 2.0, 'then': 1.0, 'remove': 1.0, 'd': 1.0, 'order': 1.0, 'informed': 1.0, 'attendant': 1.0, 'table': 2.0, 'tray': 1.0, 'use': 1.0, 'her': 3.0, 'couldn': 1.0, 'that': 2.0, 'prayed': 1.0, 'mentioned': 1.0, 'final': 1.0, 'useless': 1.0, 'torso': 1.0, 'place': 1.0, 'kind': 1.0, 're': 1.0, 'seats': 1.0, 'vinyl': 1.0, 'wiggly': 1.0, 'you': 2.0, 'e': 1.0, 'if': 1.0, 'between': 1.0, 'there': 1.0, 'have': 3.0, 'strap': 2.0, 'top': 1.0, 'harness': 1.0, 'much': 1.0, 'once': 1.0, 'however': 1.0, 'thank': 1.0, 'child': 4.0, 'open': 1.0, 'over': 1.0, 'manner': 1.0, 'all': 1.0, 'slim': 1.0, 'as': 2.0, 'straps': 8.0, 'carseats': 1.0, 'release': 1.0, 'lap': 1.0, 'slipped': 1.0, 'who': 1.0, 'pounds': 1.0, 'i': 9.0, 'this': 1.0, 'savvy': 1.0, 'heavens': 1.0, 'shorter': 1.0, 'for': 3.0, '26': 1.0, 'a': 3.0, 'could': 1.0, 'tightened': 1.0, 'fit': 1.0, 't': 4.0, 'old': 1.0, 'attaching': 1.0, 'is': 2.0, 'with': 3.0, 'leather': 2.0, 'first': 1.0, 'were': 3.0, 'to': 5.0, 'high': 1.0, 'pretty': 1.0, 'even': 1.0, 'buckle': 2.0, 'worsened': 1.0, 'wrestled': 1.0, 'was': 4.0, 'weighs': 1.0, 'average': 1.0, 'it': 3.0, 'up': 1.0, 'clavicle': 1.0, '27': 1.0, 'and': 10.0, 'too': 2.0, 'securing': 1.0, 'behind': 1.0, 'about': 1.0, 'no': 2.0, 'fail': 3.0, 'sol': 1.0, 'son': 2.0, 'height': 1.0, 'of': 4.0, 'the': 22.0, 'twisted': 1.0, 'so': 2.0, 'simply': 1.0, 'buckles': 2.0, 'flipped': 1.0, 'our': 1.0, 'how': 1.0, 'he': 1.0, 'backwards': 1.0, 'loose': 1.0, 'month': 1.0, 'gave': 1.0, 'while': 1.0, 'matter': 1.0, 'finally': 1.0, 'straw': 1.0, 'start': 1.0, 'not': 1.0, 'legs': 1.0, 'get': 1.0, 'second': 1.0, 'issue': 1.0, 'fixing': 1.0, 'arose': 1.0, 'what': 1.0, 'when': 2.0, 'time': 1.0, 'fastening': 1.0, 'me': 2.0, 'my': 2.0, 'seat': 3.0, 'm': 1.0, 'in': 3.0, 'realized': 1.0, 'didn': 3.0, 'money': 1.0, 'bought': 1.0, 'adjusted': 1.0, 'carriers': 1.0, 'chest': 1.0, 'almost': 1.0, 'his': 3.0, 'flight': 2.0, 'noticed': 1.0, 'on': 3.0, 'near': 1.0, 'during': 1.0, 'problem': 1.0, 'slid': 1.0, 'down': 2.0, 'she': 1.0, 'others': 1.0}
Word element => {'let': 1.0, 'will': 1.0, 'airlines': 1.0, 'international': 1.0, 'did': 2.0, 'lap': 1.0, 's': 1.0, 'a': 3.0, 'chin': 1.0, 'happen': 1.0, 'up': 1.0, 'child': 1.0, 'keeps': 2.0, 'or': 1.0, 'around': 1.0, 'is': 4.0, 'say': 1.0, 'harness': 3.0, 'much': 3.0, 'place': 2.0, 'careful': 1.0, 'while': 1.0, 'down': 1.0, 'under': 2.0, 'middle': 1.0, 'sliding': 1.0, 'kids': 1.0, 'kid': 1.0, 'you': 1.0, 'complaints': 1.0, 'even': 1.0, 'our': 1.0, 'as': 1.0, 'booked': 1.0, 'however': 1.0, 'read': 1.0, 'very': 1.0, 'and': 3.0, 'domestic': 1.0, 'coming': 1.0, 'i': 4.0, 'to': 3.0, 'fixed': 1.0, 'husband': 1.0, 'bought': 1.0, 'months': 1.0, 'for': 1.0, 'seat': 4.0, 'in': 3.0, '14': 1.0, 'that': 1.0, 'because': 1.0, 'than': 1.0, 'about': 1.0, 'baby': 3.0, 'them': 1.0, 'flight': 1.0, 'on': 2.0, 'not': 4.0, 'my': 3.0, 'me': 1.0, 'kept': 1.0, 'part': 1.0, 'during': 1.0, 'though': 1.0, 'was': 1.0, 'leather': 1.0, 'it': 3.0, '2': 1.0, 'most': 1.0, 'but': 2.0, 'can': 1.0, 'likes': 1.0, 'hold': 2.0, 'use': 2.0, 'her': 2.0, 'the': 8.0, 'of': 2.0, 'usa': 1.0, 'time': 1.0, 'were': 1.0, 'allowed': 1.0, 'we': 3.0, 'then': 1.0, 'take': 1.0, 'safe': 1.0, 'off': 1.0, 'think': 1.0, 'better': 1.0, 'carrying': 1.0, 'option': 1.0, 'car': 1.0, 'this': 3.0, 'expert': 1.0, 'us': 1.0, 'also': 1.0, 'am': 1.0, 'all': 1.0, 'an': 1.0, 'still': 1.0, 'course': 1.0, 'just': 1.0, 'be': 1.0}
Word element => {'improvement': 1.0, 'needs': 1.0, 'great': 1.0, 'review': 1.0, 'second': 1.0, 'reason': 1.0, 'only': 1.0, 'too': 1.0, 'make': 1.0, 'determine': 1.0, 'their': 1.0, 'through': 1.0, 'once': 1.0, 'ps': 1.0, 'carry': 1.0, 'said': 1.0, 'word': 1.0, 'not': 1.0, 'nope': 1.0, 'something': 1.0, 'want': 1.0, 'was': 5.0, 'i': 3.0, 'while': 1.0, 'star': 1.0, 'xray': 1.0, 'printed': 1.0, 'extra': 2.0, 'label': 1.0, 'sure': 1.0, 'return': 1.0, 'being': 2.0, 'vacation': 1.0, 'consisted': 1.0, 'home': 2.0, 'really': 1.0, 'who': 1.0, 'fly': 1.0, 'allowed': 1.0, 'they': 2.0, 'should': 1.0, 'class': 2.0, 'down': 1.0, 'plan': 1.0, 'around': 2.0, 'kiddo': 1.0, 'place': 1.0, 'safe': 1.0, 'ensure': 1.0, 'fabulous': 1.0, 'harness': 4.0, 'for': 5.0, 'cares': 3.0, 'glad': 1.0, 'came': 1.0, 'time': 1.0, 'wide': 2.0, 'purchased': 1.0, 'aside': 1.0, 'had': 1.0, 'what': 1.0, 'when': 1.0, 'execution': 1.0, 'you': 4.0, 'your': 3.0, 'idea': 2.0, 'old': 1.0, 'point': 2.0, 'on': 7.0, 'flight': 6.0, '4': 1.0, 'faa': 1.0, 'to': 6.0, 'item': 1.0, 'our': 4.0, 'as': 1.0, 'out': 1.0, 'watched': 1.0, 'less': 1.0, 'reviewed': 1.0, 'product': 1.0, 'toddler': 2.0, 'child': 1.0, 'year': 1.0, 'along': 1.0, 'belt': 4.0, 't': 3.0, 'take': 1.0, 'we': 4.0, 'will': 1.0, 'could': 1.0, 'at': 1.0, 'look': 1.0, 'is': 3.0, 'checklists': 1.0, 'have': 3.0, 'a': 7.0, 'small': 1.0, 'squeezed': 1.0, 'followed': 1.0, 'infant': 1.0, 'flying': 2.0, 'suitcase': 1.0, 'wrap': 1.0, 'riding': 1.0, 'this': 4.0, 'perfect': 1.0, 'it': 6.0, 'with': 4.0, 'videos': 1.0, 'but': 3.0, 'machine': 1.0, '2': 1.0, 'tsa': 1.0, 'especially': 1.0, 're': 2.0, 'enough': 2.0, 'seat': 3.0, 'in': 4.0, 'an': 2.0, 'all': 2.0, 'coach': 1.0, 'space': 1.0, 'forget': 1.0, 'serious': 1.0, 'placed': 1.0, 'why': 2.0, 'seats': 1.0, 'lap': 1.0, '1': 1.0, 'nice': 1.0, 'wasn': 2.0, 's': 3.0, 'sinking': 1.0, 'portion': 1.0, 'advised': 1.0, 'the': 25.0, 'of': 4.0, 'can': 1.0, 'so': 5.0, 'kept': 1.0, 'making': 1.0, 'my': 2.0, 'son': 2.0, 'if': 3.0, 'still': 2.0, 'uncomfortable': 1.0, 'and': 5.0, 'trip': 1.0, 'first': 3.0, 'are': 1.0, 'would': 2.0, 'been': 1.0, 'because': 2.0, 'concerned': 1.0, 'that': 3.0, 'instructions': 2.0, 'adjusted': 1.0, 'cared': 1.0, 'set': 1.0, 'waste': 1.0, 'five': 2.0, 'exactly': 1.0, 'problem': 2.0, 'attendants': 2.0, 'even': 1.0, 'keep': 1.0, 'restraint': 1.0}
Word element => {'use': 1.0, 'happy': 1.0, 'overall': 1.0, 'strap': 1.0, 'have': 1.0, 'there': 1.0, 'will': 1.0, 'also': 1.0, 'his': 1.0, 'pressed': 1.0, 'way': 1.0, 'straps': 1.0, 'neck': 2.0, 'had': 1.0, 'into': 1.0, 'that': 1.0, 'only': 1.0, 'much': 1.0, 'life': 1.0, 'made': 1.0, 'didn': 1.0, '2yr': 2.0, 'me': 1.0, 'take': 1.0, 'was': 4.0, 'old': 2.0, 'i': 8.0, 'pillow': 1.0, 'lug': 1.0, 'an': 1.0, 'own': 1.0, 'my': 5.0, 'bought': 1.0, 'be': 1.0, 'stored': 1.0, '2': 1.0, 'wish': 2.0, 'this': 2.0, 'with': 1.0, 'again': 1.0, 'am': 1.0, 'when': 2.0, 'making': 1.0, 'trip': 1.0, 'to': 5.0, 'seat': 1.0, 'carrying': 1.0, 'easier': 1.0, 'well': 1.0, 'country': 1.0, 'want': 1.0, 't': 1.0, 'a': 6.0, 'and': 3.0, 'across': 1.0, 'put': 1.0, 'on': 4.0, 'asleep': 1.0, 'the': 3.0, 'deal': 1.0, 'fell': 1.0, 'it': 2.0, 'nor': 1.0, 'would': 1.0, 'reasonably': 1.0, 'able': 1.0, 'infant': 1.0, 'car': 1.0, 'legs': 1.0, 'off': 2.0, 'good': 1.0, 'plane': 1.0, 'while': 1.0, 'between': 1.0, 'littleones': 1.0, 'easy': 2.0, 'carry': 1.0, 'for': 2.0}
Word element => {'gift': 1.0, 'put': 1.0, 'minutes': 1.0, 'waiting': 1.0, 'more': 1.0, 'with': 1.0, 'flights': 1.0, 'or': 1.0, 'rent': 1.0, 'carry': 1.0, 'feet': 1.0, 'carseats': 1.0, 'doing': 1.0, 'recline': 1.0, 'able': 1.0, '10': 1.0, 'being': 1.0, 'use': 1.0, 'squashing': 1.0, 'front': 1.0, 'person': 1.0, 'seats': 1.0, 'into': 1.0, 'how': 1.0, 'worrying': 2.0, 'so': 2.0, 'happier': 1.0, 'are': 2.0, 'toddlers': 2.0, 'tote': 1.0, 'families': 1.0, 'in': 5.0, 'away': 1.0, 'of': 1.0, 'the': 15.0, 'stoll': 1.0, 'toddler': 1.0, 'purchased': 1.0, 'i': 2.0, 'fit': 1.0, 'for': 7.0, 'aisle': 1.0, 'louise': 1.0, 'idea': 1.0, 'traveling': 1.0, 'am': 1.0, 'while': 1.0, 'and': 4.0, 'a': 4.0, 'well': 1.0, 'safety': 1.0, 'harnesses': 1.0, 'about': 2.0, 'no': 2.0, 'bulky': 1.0, 'several': 1.0, 'inventor': 1.0, 'specialist': 1.0, 'safely': 1.0, 'coastal': 1.0, 'cpst': 1.0, 'must': 1.0, 'airlines': 1.0, 'small': 2.0, 'clients': 1.0, 'have': 3.0, 'parents': 4.0, 'spoken': 1.0, 'sit': 1.0, 'grandchildren': 1.0, 'should': 1.0, 'their': 3.0, 'seat': 2.0, 'to': 5.0, 'all': 2.0, 'as': 2.0, 'great': 1.0, 'big': 1.0, 'my': 1.0, 'airline': 2.0, 'harness': 3.0, 'bi': 1.0, 'can': 2.0, 'sack': 1.0, 'stow': 1.0, 'cares': 4.0, 'carseat': 2.0, 'below': 1.0, 'restrained': 1.0, 'child': 1.0, 'flight': 1.0, 'it': 1.0, 'passenger': 1.0, 'packs': 1.0}
Word element => {'anyone': 1.0, 'harness': 1.0, 'totally': 1.0, 'would': 1.0, 'waiting': 1.0, 'flight': 1.0, 'on': 1.0, 'saw': 1.0, 'at': 1.0, 'who': 1.0, 'see': 1.0, 'didn': 1.0, 'yr': 1.0, 'it': 1.0, 'she': 2.0, 'easy': 1.0, 'and': 1.0, 'how': 1.0, 'paid': 1.0, 'her': 3.0, '2': 2.0, 'possibly': 1.0, 'the': 1.0, '1': 1.0, 'great': 1.0, 'with': 2.0, 'kids': 1.0, 'this': 3.0, 'point': 1.0, 'old': 1.0, 'i': 3.0, 'destination': 1.0, 'purchased': 1.0, 'my': 3.0, 'a': 2.0, 't': 1.0, 'could': 1.0, 'for': 3.0, 'daughter': 4.0, 'alone': 1.0, 'recommend': 1.0, 'was': 2.0, 'everyone': 1.0, 'traveling': 2.0, 'said': 1.0, 'is': 1.0, 'carry': 1.0, 'car': 3.0, 'as': 1.0, 'to': 2.0, 'seat': 2.0, 'their': 1.0, 'were': 1.0, 'luggage': 1.0, 'through': 1.0, 'airport': 1.0, '34': 2.0, 'by': 1.0, 'light': 1.0, 'use': 1.0, 'travel': 3.0, 'compliments': 1.0}
Word element => {'planes': 1.0, 'between': 1.0, 'extra': 1.0, 'some': 1.0, 'sure': 1.0, 'early': 1.0, 'allow': 1.0, 'little': 1.0, 'for': 1.0, 'is': 1.0, 'to': 4.0, 'be': 1.0, 'easy': 2.0, 'harness': 1.0, 'put': 1.0, 'time': 3.0, 'next': 1.0, 'boarding': 1.0, 'enough': 1.0, 'do': 1.0, 'this': 1.0, 'it': 1.0, 'in': 1.0, 'also': 1.0, 'the': 1.0, 'on': 1.0, 'allowed': 1.0, 'remove': 1.0, 'flight': 1.0}
Word element => {'of': 1.0, 'but': 1.0, 'be': 1.0, 'travel': 1.0, 'against': 1.0, 'turbulence': 1.0, 'buckles': 1.0, 'neck': 1.0, 'causing': 1.0, 'some': 1.0, 'child': 2.0, 'them': 1.0, 'high': 1.0, 'too': 1.0, 'for': 1.0, 'aircraft': 1.0, 'very': 1.0, 'good': 2.0, 'to': 2.0, 'sleep': 1.0, 'harness': 1.0, 'attempt': 1.0, 'have': 1.0, 'are': 1.0, 'protected': 1.0, 'the': 4.0, 'is': 2.0, 'more': 1.0, 'if': 1.0, 'they': 1.0, 'your': 1.0, 'on': 1.0, 'in': 1.0, 'said': 1.0, 'plane': 1.0, 'placed': 1.0, 'knowing': 1.0, 'otherwise': 1.0, 's': 1.0, 'a': 1.0, 'like': 1.0, 'device': 1.0, 'comforting': 1.0, 'case': 1.0, 'that': 1.0, 'than': 1.0, 'by': 1.0, 'just': 1.0, 'lap': 1.0, 'it': 1.0, 'band': 1.0}
Word element => {'experience': 1.0, 'opinion': 1.0, 'were': 1.0, 'not': 1.0, 'those': 1.0, 'upside': 1.0, 'flips': 1.0, 'better': 2.0, 'can': 1.0, 'airplane': 2.0, 'toddler': 1.0, 'cares': 3.0, 'trip': 1.0, 'portion': 1.0, 'return': 1.0, 'worked': 1.0, 'had': 1.0, 'and': 3.0, 'used': 1.0, 'previously': 1.0, 'smaller': 1.0, 'time': 1.0, 'regular': 1.0, 'in': 2.0, 'belt': 6.0, 'on': 3.0, 'flight': 3.0, 'over': 1.0, 'variables': 1.0, 'use': 1.0, 'magically': 1.0, 'say': 1.0, 'around': 1.0, 'is': 3.0, 'fine': 2.0, 'bringing': 1.0, 'the': 15.0, 'with': 1.0, 'red': 2.0, 'going': 1.0, 'a': 2.0, 't': 3.0, 'small': 1.0, 'car': 2.0, 'ok': 1.0, 'very': 1.0, 'if': 4.0, 'present': 1.0, 'easy': 1.0, 'our': 1.0, 'seat': 4.0, 'to': 3.0, 'pass': 1.0, 'remained': 1.0, 'install': 1.0, 'storage': 1.0, 'versus': 1.0, 'probably': 1.0, 'down': 1.0, 'loosen': 1.0, 'or': 1.0, 'tends': 2.0, 'neck': 1.0, 'of': 3.0, '5': 1.0, 'hour': 1.0, 'also': 1.0, 'rub': 1.0, 'back': 2.0, 'only': 1.0, 'works': 1.0, 'harness': 1.0, '40lbs': 1.0, 'my': 3.0, 'went': 1.0, 'main': 1.0, 'duration': 1.0, 'toddlers': 2.0, 'he': 1.0, 'didn': 1.0, 'wouldn': 1.0, 'it': 2.0, 'i': 6.0, 'buy': 1.0, 'again': 1.0}
Word element => {'help': 1.0, 'sit': 1.0, 'child': 1.0, 'your': 1.0, 'rug': 1.0, 'non': 1.0, 'bring': 1.0, 'them': 1.0, 'solution': 1.0, 'so': 1.0, 'slip': 2.0, 'could': 1.0, 'given': 1.0, 'really': 1.0, 'secure': 1.0, 'also': 1.0, 'wondered': 1.0, 'uncomfortable': 1.0, 'getting': 1.0, 'slipping': 1.0, 'kept': 1.0, 'and': 2.0, 'similar': 1.0, 'interested': 1.0, 'more': 2.0, 'is': 2.0, 'of': 3.0, 'the': 7.0, 'or': 1.0, 'much': 1.0, 'put': 2.0, 'think': 1.0, 'never': 1.0, 'letting': 1.0, 'would': 4.0, 'behind': 1.0, 'about': 1.0, 'under': 1.0, 'month': 1.0, 'attendants': 1.0, 'piece': 1.0, 'were': 3.0, '18': 1.0, 'used': 1.0, 'recent': 1.0, 'this': 2.0, 'on': 3.0, 'flight': 2.0, 'tray': 1.0, 'too': 1.0, 'one': 2.0, 'fabric': 1.0, 'for': 3.0, 'you': 1.0, 'meant': 1.0, 'cooperative': 1.0, 'tables': 1.0, 'before': 1.0, 'had': 1.0, 'was': 2.0, 'comfortable': 1.0, 'crotch': 1.0, 'to': 6.0, 'as': 1.0, 'old': 1.0, 'i': 3.0, 'small': 1.0, 'a': 6.0, 'we': 1.0, 'belt': 1.0, 't': 1.0, 'keep': 1.0, 'restraint': 1.0, 'very': 2.0, 'my': 3.0, 'entire': 1.0, 'me': 1.0, 'stay': 1.0, 'easy': 2.0, 'use': 2.0, 'like': 2.0, 'which': 1.0, 'carseat': 1.0, 'although': 1.0, 'an': 2.0, 'other': 1.0, 'all': 2.0, 'helped': 1.0, 'strap': 1.0, 'useful': 1.0, 'son': 2.0, 'understand': 1.0, 'he': 2.0, 'our': 1.0, 'how': 2.0, 'needed': 1.0, 'carrier': 1.0, 'even': 1.0, 'it': 4.0, 'him': 1.0, 'be': 5.0, 'passengers': 1.0, 'strapped': 1.0, 'seat': 1.0, 'in': 3.0, 'time': 1.0, 'accident': 1.0, 'only': 1.0, 'negative': 1.0, 'tigtened': 1.0, 'that': 2.0, 'their': 1.0, 'younger': 1.0, 'children': 1.0, 'didn': 1.0, 'panel': 1.0, 'she': 1.0, 'baby': 1.0, 'seats': 1.0, 'down': 1.0, 'flights': 1.0, 'seen': 1.0, 'leather': 1.0, 'with': 1.0, 'they': 1.0, 'slippery': 1.0, 'since': 1.0, 'lap': 1.0, 'way': 1.0}
Word element => {'ones': 1.0, 'their': 1.0, 'better': 1.0, 'something': 1.0, 'or': 1.0, 'strap': 1.0, 'of': 1.0, 'sort': 1.0, 'some': 1.0, 'there': 1.0, 'landing': 1.0, 'off': 1.0, 'take': 1.0, 'during': 1.0, 'be': 1.0, 'him': 1.0, 'bottom': 1.0, 'out': 1.0, 'in': 2.0, 'slides': 1.0, 'son': 1.0, 'sit': 1.0, 'straps': 1.0, 'the': 4.0, 'matter': 1.0, 'every': 1.0, 'skinny': 2.0, 'car': 1.0, 'than': 1.0, 'that': 1.0, 'flights': 1.0, 'have': 3.0, 'this': 1.0, 'it': 6.0, 'with': 1.0, 'adjust': 1.0, 'how': 1.0, 'he': 1.0, 'constantly': 1.0, 'on': 1.0, 'lbs': 1.0, 's': 2.0, 'a': 2.0, 'we': 1.0, 't': 2.0, 'year': 2.0, 'for': 1.0, 'love': 2.0, 'tall': 1.0, 'and': 4.0, 'great': 1.0, '1': 1.0, 'an': 1.0, '2': 3.0, 'work': 1.0, 'but': 1.0, 'taking': 1.0, 'old': 2.0, 'i': 3.0, 'entire': 1.0, 'upright': 2.0, 'used': 1.0, 'to': 3.0, 'our': 1.0, 'as': 1.0, 'seat': 3.0, 'crotch': 1.0, 'minutes': 1.0, 'doesn': 1.0, 'was': 1.0, 'easier': 1.0, 'recommended': 1.0, 'few': 3.0, 'by': 1.0, '28': 1.0, 'needs': 1.0, 'friends': 1.0, 'keep': 1.0, 'who': 1.0, 'however': 1.0, 'don': 1.0, 'no': 1.0, 'about': 1.0, 'tight': 1.0, 'my': 2.0, 'is': 1.0}
Word element => {'car': 1.0, 'plane': 1.0, 'onto': 1.0, 'airport': 1.0, 'than': 2.0, 'use': 1.0, 'much': 1.0, 'to': 2.0, 'through': 1.0, 'the': 4.0, 'keeps': 1.0, 'seat': 2.0, 'carry': 1.0, 'and': 2.0, 'safer': 1.0, 'very': 1.0, 'child': 1.0, 'using': 1.0, 'belt': 1.0, 'a': 2.0, 'alone': 1.0, 'easy': 1.0, 'lot': 1.0, 's': 1.0, 'easier': 1.0, 'it': 1.0, 'this': 1.0}
Word element => {'herself': 1.0, 'up': 1.0, 'safe': 1.0, 'buckle': 1.0, 'while': 1.0, 'short': 1.0, 'keeps': 1.0, 'carry': 1.0, 'this': 2.0, 'trying': 1.0, 'putting': 1.0, 'easy': 1.0, 'get': 1.0, 'like': 1.0, 'adults': 1.0, 'the': 1.0, 'a': 1.0, 'we': 1.0, 't': 1.0, 'my': 3.0, 'high': 1.0, 'had': 1.0, 'daughter': 3.0, 'and': 1.0, 'too': 1.0, 'problem': 1.0, 'so': 1.0, 'wear': 1.0, 'after': 1.0, 'wants': 1.0, 'only': 1.0, 'do': 1.0, 'try': 1.0, 'harness': 2.0, 'it': 2.0, 'she': 2.0, 'entertained': 1.0, 'always': 1.0, 'of': 2.0, 'no': 1.0, 'to': 4.0, 'seat': 1.0, 'not': 2.0, 'won': 1.0, 'for': 2.0, 'her': 1.0, 'does': 2.0, 'is': 1.0, 'loves': 2.0, 'that': 2.0, 'course': 1.0, 'mean': 1.0, 'on': 1.0, 'your': 1.0, 'kid': 1.0, 'belt': 1.0, 'minutes': 1.0, 'out': 1.0, '20': 1.0, 'but': 1.0, 'quality': 1.0}
Word element => {'flight': 1.0, 'single': 1.0, 'highly': 1.0, 'would': 1.0, 'home': 1.0, 'had': 1.0, 'at': 1.0, 'since': 1.0, 'chair': 1.0, 'simple': 1.0, 'pretty': 1.0, 'recommend': 1.0, 'was': 1.0, 'be': 1.0, 'carseat': 1.0, 'enough': 1.0, 'brought': 1.0, 'comfortable': 1.0, 'great': 1.0, 'such': 1.0, 'infant': 1.0, 'especially': 1.0, 'nursing': 1.0, 'and': 2.0, 'do': 1.0, 'by': 1.0, 'us': 1.0, 'i': 2.0, 'cross': 1.0, 'times': 1.0, 'with': 3.0, 'it': 1.0, 'the': 1.0, 'myself': 1.0, 'several': 1.0, 'country': 1.0, 'to': 4.0, 'flew': 1.0, 'our': 1.0, 'hook': 1.0, 'toddler': 1.0, 'even': 1.0, 'alternative': 1.0, 'around': 1.0, 'is': 1.0, 'airlines': 1.0, 'practiced': 1.0, 'a': 5.0, 'we': 2.0, 'usually': 1.0, 'this': 3.0, 'carseats': 1.0, 'independence': 1.0, 'them': 1.0, 'will': 1.0, 'luggage': 1.0, '2': 1.0, 'but': 1.0, 'most': 1.0, 'for': 2.0, 'one': 1.0, 'older': 1.0, 'free': 1.0, 'lugging': 1.0, 'allowed': 1.0, 'checked': 1.0, 'my': 1.0}
Word element => {'pocket': 1.0, 'outside': 1.0, 'small': 1.0, 'fits': 1.0, 'take': 1.0, 'of': 1.0, 'up': 1.0, 'set': 1.0, 'easy': 1.0, 'and': 1.0, 'flying': 1.0, 'when': 1.0, 'times': 1.0, 'our': 2.0, 'have': 1.0, 'we': 1.0, 'several': 1.0, 'is': 1.0, 'it': 1.0, 'this': 2.0, 'with': 1.0, 'on': 2.0, 'toddler': 1.0, 'carry': 1.0, 'super': 1.0, 'no': 1.0, 'anymore': 1.0, 'need': 1.0, 'to': 2.0, 'bring': 1.0, 'great': 1.0, 'the': 3.0, 'down': 1.0, 'used': 1.0, 'carseat': 1.0, 'in': 1.0, 'airplane': 1.0}
Word element => {'put': 1.0, 'time': 1.0, 'because': 1.0, 'it': 2.0, 'althought': 1.0, 'look': 1.0, 'takes': 1.0, 'advise': 1.0, 'together': 1.0, 'not': 1.0, 'the': 3.0, 'flight': 1.0, 'attendant': 1.0, 'use': 1.0, 'safe': 1.0, 'me': 1.0, 'product': 1.0, 'to': 2.0}
Word element => {'a': 1.0, 'impractical': 1.0, 'crotch': 1.0, 'belt': 3.0, 'also': 1.0, 'secure': 2.0, 'be': 1.0, 's': 1.0, 'could': 3.0, 'straps': 2.0, 'quite': 1.0, 'shoulder': 2.0, 'work': 1.0, 'so': 2.0, 'my': 1.0, 'were': 1.0, 'low': 1.0, 'pulled': 1.0, 'high': 1.0, 'to': 1.0, 'our': 1.0, 'as': 1.0, 'table': 1.0, 'around': 1.0, 'tray': 1.0, 'uncomfortable': 1.0, 'son': 1.0, 'options': 1.0, 'must': 1.0, 'no': 1.0, 'whole': 2.0, 'is': 3.0, 'at': 1.0, 'three': 1.0, 'position': 1.0, 'enough': 1.0, 'off': 1.0, 'back': 1.0, 'making': 1.0, 'secured': 1.0, 'not': 2.0, 'there': 1.0, 'america': 1.0, 'under': 1.0, 'gave': 1.0, 'of': 1.0, 'the': 15.0, 'shoulders': 1.0, 'this': 1.0, 'wish': 1.0, 'adjust': 1.0, 'he': 1.0, 'bottom': 2.0, 'wraps': 1.0, 'traps': 1.0, 'reality': 1.0, 'use': 1.0, 'flying': 1.0, 'child': 3.0, 'up': 1.0, 'on': 2.0, 'flight': 2.0, 'from': 3.0, 'seat': 3.0, 'in': 1.0, 'turbulence': 1.0, 'wiggle': 1.0, 'approved': 1.0, 'do': 1.0, 'out': 2.0, 'virgin': 1.0, 'i': 2.0, 'had': 1.0, 'used': 1.0, 'an': 1.0, 'faa': 1.0, 'car': 1.0, 'and': 3.0, 'vertical': 1.0, 'limits': 1.0, 'too': 1.0, 'cried': 1.0, 'that': 1.0, 'because': 2.0, 'him': 1.0, 'it': 1.0, 'for': 2.0, 'stars': 1.0, 'though': 1.0, 'slid': 1.0, 'during': 1.0, 'landing': 1.0, 'these': 1.0, 'we': 3.0, 'take': 1.0, 'fine': 1.0, 'really': 1.0, 'they': 1.0, 'are': 1.0}
Word element => {'returned': 1.0, 'i': 1.0, 'head': 1.0, 'their': 1.0, 'above': 1.0, 'well': 1.0, 'otherwise': 1.0, 'child': 1.0, 'your': 1.0, 'order': 1.0, 'problem': 1.0, 'in': 1.0, 'for': 1.0, 'effective': 1.0, 'table': 1.0, 'to': 2.0, 'product': 1.0, 'be': 1.0, 'only': 1.0, 'it': 2.0, 'this': 1.0, 'sit': 1.0, 'have': 1.0, 'of': 2.0, 'sitting': 1.0, 'block': 1.0, 'tray': 1.0, 'is': 2.0, 'red': 1.0, 'behind': 1.0, 'great': 1.0, 'the': 5.0, 'straps': 1.0, 'truly': 1.0, 'concept': 1.0, 'you': 1.0, 'person': 1.0}
Word element => {'for': 1.0, 'wait': 1.0, 'out': 1.0, 'disembark': 1.0, 'allowed': 1.0, 'problem': 1.0, 'no': 1.0, 'off': 1.0, 'take': 1.0, 'us': 1.0, 'able': 1.0, 'set': 1.0, 'chairs': 1.0, 'their': 1.0, 'strap': 1.0, 'seats': 1.0, 'car': 1.0, 'saw': 1.0, 'other': 1.0, 'took': 1.0, 'sort': 1.0, 'now': 1.0, 'the': 4.0, 'think': 1.0, 'your': 2.0, 'it': 7.0, 'this': 2.0, 'with': 3.0, 'restrain': 1.0, 'was': 1.0, 'doesn': 1.0, 'of': 2.0, 'having': 1.0, 'does': 1.0, 'safely': 1.0, 'give': 1.0, 'easily': 1.0, 'you': 2.0, 'point': 2.0, 'into': 1.0, 'that': 2.0, 'resembles': 1.0, 'complete': 1.0, 'safety': 1.0, 'felling': 1.0, '5': 1.0, 'under': 1.0, 't': 2.0, 'a': 3.0, 'go': 1.0, 'empty': 1.0, 'only': 1.0, 'harness': 1.0, 'completely': 1.0, 'is': 2.0, 'plane': 1.0, 'in': 1.0, 'families': 1.0, 'said': 1.0, 'and': 3.0, 'most': 1.0, 'can': 2.0, 'slip': 1.0, 'time': 1.0, 'so': 1.0, 'up': 1.0, 'child': 3.0, 'don': 1.0, 'i': 2.0, '4': 1.0, 'thinking': 1.0, 'held': 1.0, 'sleep': 1.0, 'to': 7.0, 'seat': 1.0, 'all': 1.0, 'while': 2.0, 'compared': 1.0}
Word element => {'turbulence': 1.0, 'during': 1.0, 'secure': 1.0, 'still': 1.0, 'would': 1.0, 'on': 1.0, 'and': 1.0, 'down': 1.0, 'lug': 1.0, 'him': 1.0, 'alone': 1.0, 'i': 4.0, 'old': 1.0, 'was': 4.0, '2': 2.0, 'heavy': 1.0, 'the': 3.0, 'this': 1.0, 'with': 1.0, 'only': 1.0, 'moving': 1.0, 'tight': 1.0, 'my': 3.0, 'want': 1.0, 'go': 1.0, 't': 2.0, 'a': 1.0, 'for': 3.0, '1': 1.0, 'comfortable': 1.0, 'his': 1.0, 'year': 1.0, 'very': 1.0, 'from': 1.0, 'so': 1.0, 'didn': 2.0, 'got': 1.0, 'use': 1.0, 'it': 4.0, 'normally': 1.0, 'short': 1.0, 'car': 1.0, 'as': 2.0, 'flew': 1.0, 'to': 2.0, 'seat': 2.0, 'kind': 1.0, 'easy': 1.0, 'flight': 1.0, 'child': 2.0, 'thing': 1.0, 'like': 1.0, 'that': 1.0, 'of': 2.0, 'slid': 1.0, 'back': 1.0, 'around': 1.0}
Word element => {'well': 2.0, 'airlines': 1.0, 'accustomed': 1.0, 'to': 2.0, 'as': 1.0, 'and': 1.0, 'sleep': 1.0, 'easy': 1.0, 'use': 1.0, 'are': 1.0, 'the': 1.0, 'support': 1.0, 'made': 1.0, 'works': 1.0, 'great': 1.0, 'it': 2.0, 'kid': 1.0, 'for': 2.0, 'a': 1.0, 'good': 1.0}
Word element => {'well': 1.0, 'sit': 1.0, 'be': 1.0, 'problem': 1.0, 'them': 1.0, 'on': 1.0, 'keep': 1.0, 'however': 1.0, 'down': 1.0, 'slide': 1.0, 'so': 1.0, 'no': 1.0, 'there': 1.0, 'said': 1.0, 'others': 1.0, 'like': 1.0, 'drawback': 1.0, 'eye': 1.0, 'cares': 1.0, 'car': 1.0, 'the': 8.0, 'behind': 1.0, 'and': 3.0, 'didn': 1.0, 'perfect': 1.0, 'kids': 1.0, 'this': 1.0, 'it': 5.0, 'younger': 1.0, 'have': 2.0, 'year': 2.0, 'great': 2.0, '1': 2.0, 'big': 1.0, 'worked': 2.0, 'very': 1.0, 'want': 1.0, 's': 1.0, 't': 4.0, 'we': 2.0, 'a': 3.0, 'not': 2.0, 'just': 2.0, 'shouldn': 1.0, 'is': 2.0, 'around': 1.0, 'system': 1.0, 'legs': 1.0, 'enough': 1.0, 'seat': 2.0, 'to': 3.0, 'for': 2.0, 'product': 1.0, 'old': 2.0, 'clear': 1.0, 'easy': 1.0, 'strap': 2.0, 'use': 1.0, 'issue': 2.0, 'head': 2.0, 'lug': 1.0, 'an': 3.0, 'can': 1.0, '2': 4.0, 'but': 2.0, 'was': 3.0, 'doesn': 1.0, 'position': 1.0, 'high': 1.0, 'they': 1.0, 'between': 1.0, 'cause': 1.0, 'that': 2.0, 'only': 1.0, 'much': 1.0, 'of': 1.0, 'up': 1.0, 'don': 1.0, 'anyway': 1.0}
Word element => {'re': 1.0, 'look': 1.0, 'me': 1.0, 'toddler': 1.0, 'be': 1.0, 'will': 2.0, 'they': 2.0, 'realizing': 1.0, 'flying': 1.0, 'help': 1.0, 'happy': 1.0, 'install': 1.0, 'hours': 1.0, 'their': 1.0, 'lower': 2.0, 'behind': 1.0, 'person': 1.0, 'ask': 1.0, 'everyone': 1.0, 'side': 1.0, 'down': 1.0, 'installs': 1.0, 'tray': 1.0, 'months': 1.0, 'experience': 1.0, 'after': 2.0, 'only': 1.0, 'fly': 1.0, '18': 1.0, 'crazy': 1.0, 'was': 1.0, 'have': 1.0, 'rolls': 1.0, '6': 1.0, 'he': 2.0, 'this': 2.0, 'with': 2.0, 'product': 1.0, 'neatly': 1.0, 'you': 3.0, 'when': 1.0, 'i': 1.0, 'cross': 1.0, 'like': 1.0, 'using': 1.0, 'at': 1.0, 'lot': 1.0, 'a': 4.0, 'we': 1.0, 'them': 1.0, 'started': 1.0, 'lugging': 1.0, 'to': 6.0, 'seat': 4.0, 'my': 2.0, 'horrible': 1.0, 'asking': 1.0, 'and': 2.0, 'son': 2.0, 'car': 2.0, 'through': 1.0, 'beauty': 1.0, 'the': 5.0, 'is': 2.0, 'more': 2.0, 'airport': 1.0, 'complaints': 1.0, 'little': 1.0, 'up': 1.0, 'quickly': 1.0, 'about': 1.0, 'no': 1.0, 'country': 1.0, 'has': 1.0, 'than': 2.0, 'does': 1.0, 'his': 1.0, 'but': 1.0, 'sitting': 1.0, 'regular': 1.0, 'in': 1.0}
Word element => {'him': 1.0, 'get': 1.0, 'tried': 1.0, 'we': 1.0, 'bloody': 1.0, 'screamed': 1.0, 'son': 1.0, 'my': 1.0, 'days': 1.0, 'few': 1.0, 'a': 1.0, 'be': 1.0, 'for': 1.0, 'to': 3.0, 'when': 1.0, 'going': 1.0, 'are': 1.0, 'the': 3.0, 'make': 1.0, 'you': 2.0, '34': 2.0, 'your': 1.0, 'plane': 3.0, 'if': 1.0, 'tip': 1.0, 'toddler': 1.0, 'use': 1.0, 'try': 1.0, 'on': 5.0, 'murder': 1.0, 'sure': 1.0, 'this': 2.0, 'it': 1.0, 'out': 1.0, 'them': 1.0, 'prior': 1.0, 'little': 1.0, 'pretending': 1.0}
Word element => {'worth': 1.0, 'securely': 1.0, 'with': 2.0, 'it': 3.0, 'wouldn': 1.0, 'this': 1.0, 'comes': 1.0, 'to': 3.0, 'the': 3.0, 'really': 3.0, 'also': 2.0, 'lap': 2.0, 'a': 2.0, 't': 1.0, 's': 3.0, 'money': 1.0, '2': 1.0, 'but': 2.0, 'inside': 1.0, 'out': 1.0, 'i': 2.0, 'old': 1.0, 'just': 1.0, 'worried': 1.0, 'simple': 1.0, 'able': 1.0, 'sit': 2.0, 'be': 1.0, 'cd': 1.0, 'that': 1.0, 'written': 1.0, 'instruction': 1.0, 'card': 1.0, 'printed': 1.0, 'label': 1.0, 're': 1.0, 'good': 1.0, 'product': 1.0, 'for': 1.0, 'belt': 1.0, 'was': 1.0, 'childeren': 1.0, 'figure': 1.0, 'little': 1.0, 'when': 1.0, 'and': 2.0, 'too': 2.0, 'between': 1.0, 'they': 1.0, 'on': 2.0, '3': 1.0, 'your': 1.0}
Word element => {'descent': 1.0, 'rapid': 1.0, 'or': 1.0, 'pocket': 1.0, 'an': 1.0, 're': 1.0, 'know': 1.0, 'don': 1.0, 'buckled': 1.0, 'but': 1.0, 'point': 1.0, 'some': 2.0, 'fall': 1.0, 'place': 1.0, 'restraint': 1.0, 'can': 1.0, 'kid': 3.0, 'your': 1.0, 'something': 1.0, 'along': 1.0, 'definitely': 2.0, 'think': 1.0, 'that': 3.0, 'life': 1.0, 'decision': 1.0, 'pillow': 3.0, 'safety': 2.0, 'landing': 2.0, 'purchasing': 1.0, 'injuries': 1.0, '65': 1.0, 'first': 1.0, 'spending': 1.0, 'injury': 1.0, 'no': 2.0, 'car': 3.0, 'would': 2.0, 'boy': 1.0, 'bumpy': 1.0, 'air': 2.0, 'had': 2.0, 'experienced': 1.0, 'as': 6.0, 'if': 4.0, 'forward': 3.0, 'not': 2.0, 'expecting': 1.0, 'system': 1.0, 'cares': 1.0, 'waking': 1.0, 'sc': 1.0, 'keep': 2.0, 'stop': 2.0, 'short': 1.0, 'hard': 2.0, 'problem': 2.0, 'acceleration': 2.0, 'range': 1.0, 'restrained': 2.0, 'more': 2.0, 'changing': 1.0, 'about': 3.0, 'possible': 2.0, 'thought': 1.0, 'because': 2.0, 'charleston': 1.0, 'one': 4.0, 'try': 2.0, 'those': 1.0, 'weather': 1.0, 'ride': 1.0, 'prevent': 1.0, 'himself': 1.0, 'slow': 1.0, 'braking': 1.0, 'seats': 2.0, '10mo': 1.0, 'it': 1.0, 'be': 1.0, 'nov': 1.0, 'knew': 1.0, 'land': 1.0, 'were': 3.0, '2012': 1.0, 'motor': 6.0, 'grandchild': 2.0, 'my': 2.0, 'jet': 1.0, 'just': 1.0, 'and': 18.0, 'trip': 1.0, 'flying': 1.0, 'bodies': 1.0, 'feels': 1.0, 'from': 1.0, 'me': 1.0, '3yr': 1.0, 'the': 29.0, 'chicago': 1.0, 'this': 2.0, 'with': 4.0, 'round': 1.0, 'in': 5.0, 'seat': 3.0, 'for': 8.0, 'backs': 1.0, 'decided': 1.0, 'we': 6.0, 'flight': 5.0, 'on': 8.0, 'flew': 2.0, 'make': 2.0, 'takeoff': 2.0, 'i': 12.0, 'two': 1.0, 'at': 5.0, 'pelvis': 1.0, 'side': 2.0, 'again': 1.0, 'which': 1.0, 'fast': 1.0, 'myself': 1.0, 'potential': 1.0, 'reversed': 1.0, 'suffered': 1.0, 'our': 2.0, 'item': 1.0, 'right': 1.0, 'to': 10.0, 'bought': 1.0, 'against': 1.0, 'use': 3.0, 'other': 2.0, 'bumps': 1.0, 'jets': 1.0, 'was': 11.0, 'belt': 3.0, 't': 2.0, 'found': 1.0, 'have': 2.0, 'plane': 2.0, 'remember': 1.0, 'been': 1.0, 'device': 1.0, 'get': 1.0, 'able': 1.0, 'you': 3.0, 'falling': 1.0, 'pushing': 1.0, 'braked': 1.0, 'lap': 2.0, 'boarded': 1.0, 'entire': 1.0, 'engines': 1.0, 'between': 1.0, 'children': 1.0, 'sensations': 1.0, 'before': 1.0, 'there': 2.0, 'harness': 2.0, 'sitting': 1.0, 'their': 1.0, 'asleep': 1.0, 'back': 2.0, 'gaaaasssss': 1.0, 'him': 3.0, 'he': 7.0, 'looked': 3.0, 'episode': 1.0, 'broken': 1.0, 'while': 1.0, 'waist': 1.0, 'step': 1.0, 'over': 3.0, 'sleeping': 1.0, 'return': 1.0, 'sure': 1.0, 'delayed': 1.0, 'going': 2.0, '2': 1.0, 'hours': 1.0, '8pm': 1.0, 'awake': 1.0, 'then': 1.0, 'only': 4.0, 'minute': 1.0, 'until': 1.0, 'kick': 1.0, 'off': 2.0, 'shoulder': 1.0, 'took': 2.0, 'of': 6.0, 'even': 1.0, 'enjoyed': 1.0, 'during': 1.0, 'smiled': 1.0, 'out': 1.0, 'told': 1.0, 'bring': 1.0, 'boat': 6.0, 'go': 2.0, 'so': 3.0, 'ask': 1.0, 'did': 3.0, 'kind': 2.0, 'time': 1.0, 'understood': 1.0, 'away': 1.0, 'by': 1.0, 'after': 1.0, 'when': 1.0, 'his': 1.0, 'head': 1.0, 'droopy': 1.0, 'didn': 1.0, 'offer': 1.0, 'hit': 1.0, 'a': 11.0, 'bag': 1.0, 'pretzels': 1.0, 'up': 2.0, 'comfortable': 2.0}
Word element => {'great': 1.0, 'a': 1.0, 'mates': 1.0, 'is': 1.0, 'child': 1.0, 'haul': 1.0, 'makes': 1.0, 'comfortable': 2.0, 'that': 1.0, 'seat': 2.0, 'product': 1.0, 'to': 1.0, 'taking': 1.0, 'much': 1.0, 'one': 1.0, 'easier': 1.0, 'are': 1.0, 'the': 3.0, 'less': 1.0, 'toddler': 1.0, 'car': 1.0}
Word element => {'this': 1.0, 'return': 1.0, 'will': 1.0, 'in': 1.0, 'airplane': 1.0, 'my': 1.0, 'the': 2.0, 'whichheld': 1.0, 'plane': 1.0, 'securely': 1.0, 'child': 1.0, 'fastened': 1.0, 'keep': 1.0, 'just': 1.0, 'seat': 1.0, 'not': 1.0, 'thing': 1.0, 'definitely': 1.0, 'together': 1.0, 'does': 1.0, 'unbuckling': 1.0, 'kid': 1.0, 'seatbelt': 1.0, 'i': 1.0, 'whole': 1.0, 'kept': 1.0, 'so': 1.0}
Word element => {'system': 1.0, 'knows': 1.0, 'aware': 1.0, 'do': 2.0, 'wouldn': 1.0, 'more': 1.0, 'little': 1.0, 'your': 2.0, 'non': 1.0, 'seatbelt': 1.0, 'addition': 1.0, 'couple': 1.0, 'be': 3.0, 'll': 1.0, 'than': 1.0, 'younger': 1.0, 'my': 2.0, 'also': 1.0, 'been': 2.0, 'have': 2.0, 'shown': 1.0, 'unlock': 1.0, 'if': 2.0, 'liner': 2.0, 'slide': 2.0, 'leather': 1.0, 'with': 2.0, 'maybe': 1.0, 'airplane': 2.0, 'kept': 2.0, 'to': 7.0, 'in': 5.0, 'seat': 2.0, 'least': 1.0, 'as': 1.0, 'doesn': 1.0, 'there': 1.0, 'but': 1.0, 'almost': 2.0, 'child': 1.0, 'year': 1.0, 'his': 2.0, 'used': 2.0, 'because': 2.0, 'that': 4.0, 'them': 1.0, 'next': 1.0, 'inches': 1.0, 'recommend': 1.0, 'piece': 1.0, 'rubbery': 1.0, 'himself': 1.0, 'very': 2.0, 'landing': 1.0, 'and': 1.0, 'too': 1.0, 'one': 3.0, 'for': 3.0, 'just': 1.0, 'show': 1.0, 'reclining': 1.0, 'belt': 1.0, 't': 4.0, 'pad': 1.0, 'etc': 1.0, 'old': 1.0, 'thing': 1.0, '2': 3.0, 'dishes': 1.0, 'flight': 2.0, 'up': 1.0, 'was': 5.0, 'lbs': 1.0, 'difficult': 1.0, 'position': 1.0, 'down': 2.0, 've': 1.0, 'at': 1.0, 'this': 4.0, 'him': 3.0, 'it': 7.0, 'careful': 1.0, '33': 1.0, 'i': 7.0, 'well': 2.0, 'regular': 1.0, 'won': 1.0, 'son': 3.0, 'under': 2.0, 'back': 1.0, 'had': 2.0, 'weeks': 1.0, 'would': 2.0, 'sliding': 1.0, 'tight': 1.0, 'slippery': 1.0, 'enough': 1.0, 'attendant': 1.0, 'off': 1.0, 'tall': 1.0, 'time': 1.0, 'so': 3.0, 'could': 1.0, 'will': 2.0, 'cares': 1.0, 'having': 1.0, 'worked': 1.0, 'bring': 1.0, 'install': 1.0, 'a': 5.0, 'small': 1.0, 'the': 6.0, 'of': 3.0, 'kitchen': 1.0, 'shelf': 1.0, 'issue': 1.0, 'padding': 1.0, 'although': 1.0, 'bottom': 1.0, 'he': 4.0, 'line': 1.0, 'slip': 2.0, 'baby': 1.0, 'swing': 1.0, 'how': 2.0, 'our': 2.0, 'stroller': 1.0, '29': 1.0, 'or': 1.0, 'easy': 1.0, 'keep': 1.0, 'did': 1.0, 'not': 2.0, 'want': 1.0, 'fine': 1.0, 'we': 2.0, 'take': 1.0, 'didn': 1.0, 'push': 1.0}
Word element => {'fly': 1.0, 'must': 1.0, 'you': 1.0, 'if': 1.0, 'easier': 1.0, 'one': 1.0, 'little': 1.0, 'travel': 1.0, 'a': 1.0, 'convenient': 1.0, 'light': 1.0, 'up': 1.0, 'there': 1.0, 'set': 1.0, 'much': 1.0, 'useful': 1.0, 'to': 1.0, 'use': 1.0, 'most': 1.0, 'the': 1.0, 'is': 2.0, 'far': 1.0, 'compact': 1.0, 'easy': 1.0, 'and': 2.0, 'accessories': 1.0, 'flying': 1.0, 'by': 1.0, 'out': 1.0, 'with': 1.0, 'this': 2.0, 'it': 2.0, 'makes': 1.0}
Word element => {'remove': 1.0, 'set': 1.0, 'great': 1.0, 'i': 3.0, 'appease': 1.0, 'other': 1.0, 'very': 1.0, 'two': 1.0, 'little': 1.0, 'there': 2.0, 'they': 1.0, 'on': 2.0, 'flight': 1.0, 'up': 2.0, 'product': 1.0, 'manageable': 1.0, 'child': 1.0, 'regional': 1.0, 'willing': 1.0, 'imagine': 1.0, 'a': 3.0, 'means': 1.0, 'could': 2.0, 'then': 1.0, 'we': 1.0, 'install': 1.0, 'was': 4.0, 'belt': 1.0, 'to': 8.0, 'our': 1.0, 'cabin': 1.0, 'in': 5.0, 'seat': 3.0, 'easy': 2.0, 'planes': 1.0, 'trip': 1.0, 'and': 6.0, 'which': 1.0, 'side': 2.0, 'sat': 1.0, 'at': 1.0, 'is': 2.0, 'more': 1.0, 'thing': 1.0, 'one': 2.0, 'tray': 1.0, 'for': 1.0, 'it': 4.0, 'first': 1.0, 'this': 1.0, 'car': 1.0, 'onto': 1.0, 'both': 2.0, 'aisle': 1.0, 'not': 1.0, 'lugging': 1.0, 'main': 1.0, 'karma': 1.0, 'seats': 1.0, 'especially': 1.0, 'come': 1.0, 'keep': 1.0, 'did': 1.0, 'since': 1.0, 'lap': 1.0, 'plane': 1.0, 'have': 2.0, 'so': 2.0, 'ask': 1.0, 'compact': 2.0, 'us': 1.0, 'of': 3.0, 'the': 15.0, 'person': 1.0, 'behind': 1.0, 'down': 1.0, 'flights': 1.0, 'lower': 1.0, 'attach': 2.0, 'were': 1.0, 'help': 1.0, 'probably': 1.0, 'hope': 1.0, 'that': 4.0, 'tight': 1.0, 'sliding': 1.0, 'would': 2.0, 'biggest': 1.0, 'monster': 1.0, 'front': 2.0, 'has': 1.0, 'them': 1.0, 'still': 1.0, 'if': 1.0, 'cases': 1.0, 'than': 1.0, 'way': 1.0, 'strap': 1.0, 'even': 1.0, 'base': 1.0, 'from': 1.0, 'under': 1.0, 'issue': 1.0, 'had': 1.0, 'with': 1.0}
Word element => {'shows': 1.0, 'accompanying': 1.0, 'enough': 1.0, '3': 1.0, 'on': 4.0, 'your': 1.0, 'soooooo': 1.0, 'them': 1.0, 'help': 1.0, 'happy': 1.0, 'no': 1.0, 'off': 1.0, 'take': 2.0, 'interest': 1.0, 'when': 2.0, 'you': 3.0, 'lower': 1.0, 'carrying': 1.0, 'some': 1.0, 'use': 3.0, 'travel': 1.0, 'instructions': 1.0, 'using': 1.0, 'easy': 1.0, 'and': 4.0, 'dvd': 1.0, 'asking': 1.0, 'me': 1.0, 'everyone': 1.0, 'had': 2.0, 'to': 8.0, 'in': 1.0, 'seat': 1.0, 'as': 2.0, 'be': 1.0, 'trying': 1.0, 'more': 1.0, 'is': 3.0, 'comes': 1.0, 'about': 1.0, 'behind': 2.0, 'worth': 1.0, 'tray': 1.0, 'part': 1.0, 'hard': 1.0, 'would': 1.0, 'peaked': 1.0, 'something': 1.0, 'only': 1.0, 'put': 1.0, 'much': 1.0, 'this': 4.0, 'thought': 1.0, 'it': 5.0, 'of': 2.0, 'device': 1.0, 'the': 9.0, 'person': 1.0, 'definitely': 1.0, 'were': 2.0, 'seats': 1.0, 'us': 1.0, 'airplane': 1.0, 'how': 2.0, 'table': 1.0, 'easier': 1.0, 'they': 2.0, 'comfort': 1.0, 'i': 2.0, 'complimented': 1.0, 'well': 1.0, 's': 1.0, 't': 1.0, 'car': 1.0, 'but': 1.0, 'board': 1.0, 'done': 1.0, 'children': 1.0, 'their': 2.0, 'younger': 1.0, 'investment': 1.0, 'for': 1.0, 'child': 1.0, 'up': 1.0, 'safety': 1.0, 'sanity': 1.0, 'an': 1.0, 'by': 1.0, 'than': 2.0, 'way': 1.0, 'clear': 1.0, 'if': 1.0, 'written': 1.0, 'that': 1.0, 'quick': 1.0, 'with': 2.0, 'set': 1.0, 'a': 1.0, 'small': 1.0, 'card': 1.0, 'isn': 1.0}
Word element => {'toddlers': 1.0, 'everyonetraveling': 1.0, 'definitely': 1.0, 'would': 1.0, 'never': 1.0, 'on': 1.0, 'passengers': 1.0, 'restrain': 1.0, 'us': 1.0, 'tough': 1.0, 'even': 2.0, 'and': 1.0, 'use': 1.0, 'recommend': 1.0, 'easy': 1.0, 'had': 1.0, 'to': 2.0, 'i': 1.0, 'whole': 1.0, 'old': 1.0, 'place': 1.0, 'it': 1.0, 'he': 2.0, 'with': 2.0, 'have': 1.0, 'not': 1.0, 'slept': 1.0, 'problem': 1.0, 'did': 1.0, 'installation': 1.0, 'kept': 1.0, 'my': 1.0, 'infants': 1.0, 'behind': 1.0, 'the': 3.0, 'safe': 1.0, 'two': 1.0, 'any': 1.0, 'years': 1.0, 'in': 1.0, 'complained': 1.0, 'time': 2.0, 'boy': 1.0, 'entire': 1.0}
Word element => {'fit': 1.0, 'they': 1.0, 'ages': 1.0, 'are': 1.0, 'my': 1.0, 'kids': 1.0, 'to': 1.0, 'very': 2.0, 'best': 1.0, 'seats': 2.0, 'travel': 2.0, 'flying': 1.0, 'and': 4.0, 'nicely': 1.0, 'the': 2.0, 'them': 1.0, 'made': 1.0, 'than': 1.0, 'easy': 1.0, 'much': 1.0, 'better': 1.0, 'small': 1.0, 'so': 1.0, 'for': 3.0, 'comfortable': 1.0, 'daughters': 1.0, 'along': 1.0, 'we': 1.0, 'thing': 1.0, 'have': 1.0, 'would': 1.0, 'never': 1.0, 'their': 1.0, 'overseas': 1.0, 'toddlers': 1.0, 'is': 1.0, 'two': 2.0, 'car': 1.0, 'come': 1.0, 'with': 1.0, 'it': 1.0}
Word element => {'like': 1.0, 'fine': 1.0, 'did': 1.0, 'use': 1.0, 'couldn': 1.0, 'stressed': 1.0, 'so': 1.0, 'in': 1.0, 'plane': 1.0, 'boarded': 1.0, 'top': 1.0, 'fit': 1.0, 'of': 1.0, 'disney': 1.0, 'just': 1.0, 'not': 1.0, 'car': 1.0, 'the': 5.0, 'at': 1.0, 'was': 2.0, 'lug': 1.0, 'issue': 1.0, 'want': 1.0, 'annoyed': 1.0, 'is': 1.0, 'won': 1.0, 'over': 1.0, 'on': 1.0, 'girl': 1.0, 'year': 1.0, 'range': 1.0, 'didn': 2.0, 'got': 1.0, 'this': 3.0, 'first': 1.0, 'take': 1.0, 'seat': 3.0, 'to': 3.0, 'our': 1.0, 'that': 2.0, 'old': 1.0, '4': 1.0, 'i': 3.0, 'it': 2.0, 'she': 2.0, 'height': 1.0, 'but': 2.0, 't': 4.0, 'we': 4.0, 'a': 3.0, 'and': 1.0, 'class': 1.0, 'bet': 1.0, 'works': 1.0, 'strapped': 1.0, 'larger': 1.0, 'because': 1.0, 'find': 1.0, 'out': 1.0, 'big': 1.0, 'great': 1.0, 'until': 1.0}
Word element => {'never': 1.0, 'up': 1.0, 'ended': 1.0, 'i': 1.0, 'and': 1.0, 'necessary': 1.0, 'not': 1.0, 'so': 1.0, 'down': 1.0, 'plane': 1.0, 'unless': 1.0, 'also': 1.0, 'sitting': 1.0, 'doesn': 1.0, 'using': 2.0, 'person': 1.0, 'tell': 1.0, 'be': 1.0, 'listing': 1.0, 'it': 1.0, 'with': 1.0, 'traveled': 1.0, 'this': 2.0, 'behind': 1.0, 't': 2.0, 'the': 3.0, 'actually': 1.0, 'are': 1.0, 'your': 1.0, 'going': 1.0, 'when': 1.0, 'child': 1.0, 'you': 2.0, 'awkward': 1.0, 'twice': 1.0, 'item': 1.0, 'can': 2.0, 'use': 1.0, 'that': 2.0, 'their': 1.0, 'is': 3.0, 'tray': 1.0}
Word element => {'use': 1.0, 'easy': 1.0, 'super': 1.0, 'usual': 1.0, 'it': 3.0, 'with': 2.0, 'he': 1.0, 'too': 1.0, 'and': 2.0, 'little': 1.0, 'found': 1.0, 'used': 2.0, 'five': 1.0, 'before': 1.0, 'year': 1.0, 'almost': 1.0, 'his': 1.0, 'much': 1.0, 'harness': 1.0, 'i': 1.0, 'two': 1.0, 'business': 1.0, 'my': 1.0, 'the': 3.0, 'cares': 1.0, 'life': 1.0, 'be': 1.0, 'hour': 1.0, 'old': 1.0, 'point': 1.0, '3': 1.0, 'on': 1.0, 'flights': 1.0, 'three': 1.0, 'at': 1.0, 'since': 1.0, 'saver': 1.0, 'pretty': 1.0, 'pun': 1.0, 'was': 1.0, 'intended': 1.0, 'a': 2.0, 'we': 1.0, 'practiced': 1.0, 'home': 1.0, 'boy': 1.0, 'bit': 1.0, 'trip': 1.0, 'as': 1.0, 'to': 3.0, 'seat': 1.0, 'is': 1.0, 'restraint': 1.0, 'in': 1.0, 'car': 1.0}
Word element => {'falling': 1.0, 'her': 2.0, 'with': 1.0, 'little': 1.0, 'old': 2.0, 'i': 1.0, 'who': 1.0, 'easy': 1.0, 'sure': 1.0, 'didn': 1.0, 'got': 1.0, 'too': 2.0, 'and': 2.0, 't': 1.0, 'a': 5.0, 'inhibit': 1.0, 'was': 1.0, 'belt': 2.0, 'all': 1.0, 'to': 3.0, 'seat': 3.0, 'not': 1.0, 'just': 1.0, 'is': 2.0, 'around': 1.0, 'booster': 1.0, 'small': 1.0, 'my': 2.0, 'asleep': 1.0, 'the': 1.0, 'child': 2.0, 'it': 5.0, 'circumstances': 1.0, 'year': 2.0, 'comfortable': 1.0, 'install': 1.0, 'big': 1.0, 'for': 2.0, 'in': 4.0, 'airplane': 1.0, 'lap': 1.0, 'car': 2.0, 'definitely': 1.0, 'four': 2.0, 'but': 1.0, 'an': 1.0, 'will': 1.0, 'put': 1.0, 'on': 2.0, 'from': 1.0, 'wearing': 1.0, 'while': 1.0, 'm': 1.0, 'protect': 1.0, 'possible': 1.0, 'better': 1.0, 'than': 1.0}
Word element => {'date': 1.0, 'estimated': 1.0, 'did': 1.0, 'return': 1.0, 'upper': 1.0, 'an': 1.0, 'anything': 1.0, 'and': 3.0, 'amazon': 1.0, 'well': 1.0, 'manufacturer': 1.0, 'which': 1.0, '40': 1.0, 'on': 1.0, 'process': 1.0, 'four': 1.0, 'restraint': 1.0, 'able': 1.0, 'my': 2.0, 'was': 1.0, 'unfortunately': 1.0, 'fast': 1.0, 'weighs': 1.0, 'old': 1.0, 'prior': 1.0, 'pounds': 1.0, 'i': 4.0, 'receipt': 1.0, 'daughter': 2.0, 'reviewed': 1.0, 'year': 1.0, 'test': 1.0, 'saw': 1.0, 'never': 1.0, 'sites': 1.0, 'in': 2.0, 'unpacked': 1.0, 'looking': 1.0, 'who': 1.0, 'at': 1.0, 'of': 2.0, 'once': 1.0, 'exceeds': 1.0, 'flight': 1.0, '38': 1.0, 'this': 1.0, 'arrive': 1.0, 'it': 1.0, 'user': 1.0, 'painless': 1.0, 'purchased': 1.0, 'reviews': 1.0, 'about': 1.0, 'several': 1.0, 'inserts': 1.0, 'were': 1.0, 'that': 1.0, 'not': 1.0, 'because': 1.0, 'as': 2.0, 'to': 2.0, 'website': 1.0, 'the': 5.0, 'for': 1.0, 'product': 2.0, 'inches': 1.0, 'read': 1.0, 'after': 1.0, 'package': 1.0, 'there': 1.0, 'is': 1.0, 's': 2.0, 'we': 1.0, 'a': 1.0, 'height': 2.0, 'airplane': 1.0, 'limit': 2.0}
Word element => {'my': 1.0, 'have': 1.0, 'saved': 1.0, 'i': 1.0, 'making': 1.0, 'not': 1.0, 'just': 1.0, 'down': 1.0, 'because': 2.0, 'does': 1.0, 'slide': 1.0, 'everything': 1.0, 'same': 1.0, 'do': 1.0, 'they': 1.0, 'using': 2.0, 'the': 5.0, 'loose': 1.0, 'unlikely': 1.0, 'bother': 1.0, 'for': 1.0, 'product': 1.0, 'be': 2.0, 'expected': 1.0, 'money': 1.0, 'but': 1.0, 'an': 1.0, 'it': 3.0, 'level': 1.0, 'more': 1.0, 'is': 1.0, 'wish': 1.0, 'this': 1.0, 'provided': 2.0, 'second': 1.0, 'of': 2.0, 'as': 1.0, 'any': 1.0, 'to': 1.0, 'helpful': 1.0, 'during': 1.0, 'could': 1.0, 't': 1.0, 'we': 1.0, 'unexpected': 1.0, 'safety': 2.0, 'didn': 1.0, 'would': 1.0, 'drop': 1.0, 'or': 1.0, 'turbulence': 1.0, 'on': 1.0, 'child': 1.0, 'flight': 1.0, 'belt': 1.0}
Word element => {'small': 1.0, 'traveling': 1.0, 'would': 1.0, 'saver': 1.0, 'time': 1.0, 'of': 1.0, 'much': 1.0, 'how': 1.0, 'worth': 1.0, 'i': 1.0, 'old': 1.0, 'year': 1.0, 'parents': 1.0, 'for': 2.0, 'everyone': 1.0, 'was': 1.0, 'to': 2.0, 'had': 1.0, '3': 1.0, 'comment': 1.0, 'trip': 1.0, 'a': 2.0, 'well': 1.0, 'super': 1.0, 'loved': 1.0, 'other': 1.0, 'my': 1.0, 'the': 1.0, 'bought': 1.0, 'about': 1.0, 'money': 1.0, 'recommend': 1.0, 'easy': 1.0, 'even': 1.0, 'install': 1.0, 'children': 1.0, 'with': 1.0, 'this': 2.0, 'it': 2.0, 'he': 1.0}
Word element => {'helpful': 1.0, 'stayed': 1.0, 'would': 2.0, 'legs': 1.0, 'dvd': 1.0, 'strap': 1.0, 'certainly': 1.0, 'i': 2.0, 'she': 2.0, 'it': 3.0, 'older': 1.0, 'pretty': 1.0, 'be': 2.0, 'pricey': 1.0, 'see': 1.0, 'middle': 1.0, 'between': 1.0, 'ended': 1.0, 'beneficial': 1.0, 'a': 3.0, 't': 1.0, 'the': 3.0, 'liking': 1.0, 'need': 1.0, 'my': 2.0, 'for': 2.0, 'child': 1.0, 'don': 1.0, 'up': 1.0, 'flights': 1.0, 'not': 1.0, 'just': 1.0, 'and': 1.0, 'mostly': 1.0, 'in': 1.0, 'agree': 1.0, 'lap': 1.0, 'but': 1.0, 'can': 1.0, 'imagine': 1.0, 'when': 1.0, 'is': 1.0, 'time': 1.0, 'bit': 1.0, 'was': 1.0, '23': 1.0, 'months': 1.0, 'future': 1.0, 'at': 1.0}
Word element => {'pack': 1.0, 'an': 1.0, 'love': 1.0, 'for': 2.0, 'plane': 1.0, 'in': 1.0, 'next': 1.0, 'they': 2.0, 'time': 1.0, 'on': 1.0, 'flight': 1.0, 'i': 2.0, 'when': 1.0, 'and': 1.0, 'too': 1.0, 'this': 2.0, 'kids': 1.0, 't': 1.0, 'their': 1.0, 'extra': 1.0, 'legs': 1.0, 'naturally': 1.0, 'seats': 1.0, 'got': 1.0, 'my': 2.0, 'purchase': 1.0, 'use': 1.0, 'long': 1.0, 'car': 1.0, 'restraint': 1.0, 'forward': 1.0, 'system': 1.0, 'complain': 1.0, 'them': 1.0, 'but': 1.0, 'can': 1.0, 'the': 2.0, 'reach': 1.0, 'having': 1.0, 'because': 1.0, 'of': 1.0, 'chest': 1.0, 'to': 1.0, 'any': 1.0, 'clip': 1.0, 'would': 1.0, 'was': 1.0, 'recommend': 1.0, 'easy': 1.0}
Word element => {'price': 1.0, 'terms': 1.0, 'off': 1.0, 'rip': 1.0, 'a': 1.0, 'needing': 1.0, 'of': 1.0, 'up': 1.0, 'end': 1.0, 'did': 1.0, 'we': 1.0, 'itself': 1.0, 'in': 1.0, 'seems': 1.0, 'harness': 1.0, 'not': 1.0, 'fine': 1.0, 't': 1.0, 'the': 1.0, 'was': 1.0, 'to': 1.0, 'use': 1.0, 'but': 1.0, 'it': 2.0, 'can': 1.0, 'sure': 1.0, 'so': 1.0, 'i': 1.0, 'say': 1.0, 'for': 1.0}
Word element => {'stay': 1.0, 'money': 1.0, 'ended': 1.0, 'it': 2.0, 'away': 1.0, 'and': 1.0, 'of': 1.0, 'up': 1.0, 'plane': 1.0, 'easy': 1.0, 'waste': 1.0, 'on': 2.0, 'put': 1.0, 'to': 2.0, 'being': 1.0, 'loose': 1.0, 'cannot': 1.0, 'the': 2.0, 'know': 1.0, 'not': 1.0, 'so': 1.0, 'returned': 1.0, 'kids': 1.0, 'that': 1.0, 'you': 1.0, 'protect': 1.0, 'them': 1.0, 'amazon': 1.0}
Word element => {'purchase': 1.0, 'pleased': 1.0, 'big': 1.0, 'carrying': 1.0, 'worry': 1.0, 'without': 1.0, 'enough': 1.0, 'fit': 1.0, 'adjusted': 1.0, 'extremely': 1.0, 'secure': 1.0, 'installing': 1.0, 'once': 1.0, 'no': 2.0, 'about': 2.0, 'slipping': 1.0, 'carry': 1.0, 'would': 1.0, 'straps': 1.0, 'something': 1.0, 'have': 3.0, 'to': 8.0, 'as': 1.0, 'item': 1.0, 'our': 2.0, 'addition': 1.0, 'he': 3.0, 'luggage': 1.0, 'all': 2.0, 'other': 1.0, 'adjustable': 1.0, 'a': 4.0, 'might': 1.0, 'old': 1.0, 'having': 1.0, 'worked': 1.0, 'arrived': 1.0, 'purchases': 1.0, 'around': 1.0, 'his': 2.0, 'rental': 1.0, 'seat': 5.0, 'in': 3.0, '2': 2.0, 'him': 2.0, 'it': 3.0, 'this': 5.0, 'taking': 2.0, 'also': 1.0, 'compact': 1.0, 'us': 1.0, 'of': 1.0, 'the': 3.0, 'device': 1.0, 'for': 2.0, 'anxious': 1.0, 'year': 1.0, 'toddler': 1.0, 'traveling': 1.0, 'times': 1.0, 'sit': 1.0, 'when': 3.0, 'you': 1.0, 'were': 1.0, 'perfectly': 2.0, 'and': 6.0, 'had': 3.0, 'destination': 1.0, 'was': 5.0, 'alone': 1.0, 'problem': 1.0, 'with': 5.0, 'out': 1.0, 'convenience': 1.0, 'read': 1.0, 'some': 1.0, 'stressful': 1.0, 'we': 5.0, 'reviews': 1.0, 'did': 2.0, 'rent': 1.0, 'try': 1.0, 'got': 1.0, 'couple': 1.0, 'antsy': 1.0, 'cumbersome': 1.0, 'wanted': 1.0, 'my': 1.0, 'me': 1.0, 'are': 1.0, 'boarded': 1.0, '1': 1.0, 'since': 1.0, 'so': 1.0, 'problems': 1.0, 'that': 1.0, 'at': 1.0, 'is': 2.0, 'car': 5.0, 'consider': 1.0, 'deciding': 1.0, 'use': 1.0, 'vs': 1.0, 'your': 1.0, 'i': 6.0, 'well': 1.0, 'worth': 1.0, 'flying': 1.0}
Word element => {'much': 1.0, 'complain': 1.0, 'didn': 1.0, 'direct': 1.0, 'old': 1.0, 'trip': 1.0, 'our': 1.0, 'for': 1.0, 'from': 1.0, 'year': 1.0, 'cincinnati': 1.0, 'too': 1.0, 'round': 1.0, 'flight': 1.0, 'my': 1.0, 'bought': 1.0, 'this': 1.0, 'it': 1.0, 'to': 2.0, 'was': 1.0, 'francisco': 1.0, 'easy': 1.0, 'set': 1.0, 'up': 1.0, 'san': 1.0, 'and': 1.0, 't': 1.0, '2': 1.0}
Word element => {'those': 1.0, 'said': 1.0, 'choking': 1.0, 'were': 1.0, 'notice': 1.0, 'don': 1.0, 'didnt': 1.0, 'silly': 2.0, 'seems': 1.0, 'they': 3.0, 'all': 2.0, 'other': 1.0, 'as': 2.0, 'issue': 2.0, 'down': 2.0, 'slide': 1.0, 'legs': 1.0, 'between': 1.0, 'strap': 1.0, 'wish': 1.0, 'traveling': 1.0, 'huge': 1.0, 'than': 1.0, 'does': 1.0, 'be': 2.0, 'would': 4.0, 'harness': 3.0, 'skeptical': 1.0, 'around': 1.0, 'plan': 1.0, 'convinced': 1.0, 'did': 2.0, 'but': 3.0, 'small': 1.0, 'a': 8.0, 'will': 1.0, 'could': 4.0, 'reviews': 1.0, 'we': 1.0, 'taking': 1.0, 'you': 2.0, 'able': 3.0, 'had': 3.0, 'otherwise': 1.0, 'just': 3.0, 'airplane': 2.0, 'restraints': 1.0, 'parent': 1.0, 'better': 1.0, 'think': 2.0, 'carseat': 1.0, 'of': 4.0, 'the': 14.0, 'old': 2.0, 'was': 5.0, 't': 1.0, 'belt': 1.0, 'to': 12.0, 'sleep': 2.0, 'in': 4.0, 'seat': 1.0, 'if': 3.0, 'still': 3.0, 'about': 4.0, 'told': 1.0, 'thing': 1.0, 'child': 2.0, 'year': 2.0, 'very': 2.0, 'two': 3.0, 'little': 1.0, 'nothing': 1.0, 'like': 3.0, 'not': 5.0, 'my': 2.0, 'me': 2.0, 'this': 8.0, 'him': 2.0, 'lug': 1.0, 'thought': 2.0, 'it': 3.0, 'with': 2.0, 'seem': 1.0, 'airport': 1.0, 'fight': 1.0, 'far': 2.0, 'he': 9.0, 'want': 1.0, 'really': 3.0, 'plane': 1.0, 'have': 5.0, 'unhook': 1.0, 'when': 2.0, 'sit': 3.0, 'got': 1.0, 'first': 3.0, 'set': 1.0, 'comments': 1.0, 'up': 1.0, 'for': 1.0, 'worried': 1.0, 'time': 1.0, 'so': 3.0, 'bit': 1.0, 'and': 2.0, 'second': 1.0, 'immediately': 1.0, 'strapped': 1.0, 'car': 1.0, 'i': 10.0, 'well': 1.0, 'having': 1.0, 'worked': 1.0, 'minutes': 1.0, 'extra': 1.0, 'them': 1.0, 'has': 1.0, 'next': 2.0, 'been': 1.0, 'because': 1.0, 'that': 7.0, 'wanted': 1.0, 'unhooked': 1.0, 'choke': 2.0, 'top': 1.0, 'slid': 1.0, 'part': 1.0, 'lean': 1.0, 'last': 1.0, 'on': 8.0, 'flight': 2.0, 'realize': 1.0, 'too': 1.0, 'one': 1.0}
Word element => {'minutes': 1.0, 'than': 1.0, 'more': 1.0, 'place': 1.0, 'cannot': 1.0, 'simply': 1.0, 'car': 1.0, 'into': 1.0, 'strapped': 1.0, 'kids': 1.0, 'able': 1.0, 'be': 1.0, 'tightest': 1.0, 'ie': 1.0, 'harness': 3.0, 'everything': 1.0, 'larger': 1.0, 'there': 1.0, 'around': 1.0, 'about': 1.0, 'no': 1.0, 'are': 1.0, 'tolerate': 1.0, 'strap': 1.0, 'who': 1.0, 'is': 3.0, 'at': 1.0, 'since': 2.0, 'something': 1.0, 'toddlers': 1.0, 'one': 1.0, 'lot': 1.0, 'setting': 1.0, 'assuming': 1.0, 'center': 1.0, 'our': 2.0, 'unable': 1.0, 'as': 3.0, 'point': 1.0, 'was': 5.0, 'belt': 1.0, 'minimum': 1.0, 'upright': 1.0, 'others': 1.0, 'she': 5.0, 'it': 4.0, 'of': 4.0, 'the': 7.0, 'asleep': 1.0, 'flight': 1.0, 'on': 2.0, 'for': 5.0, 'using': 1.0, 'a': 3.0, '15': 1.0, 'due': 1.0, 'toddler': 2.0, 'this': 3.0, 'worked': 1.0, 'keep': 1.0, 'restraint': 1.0, 'did': 1.0, 'and': 3.0, 'just': 2.0, 'her': 2.0, 'but': 3.0, 'their': 1.0, 'sitting': 1.0, 'or': 1.0, '29': 1.0, 'to': 4.0, 'length': 1.0, 'seat': 2.0, 'in': 3.0, 'i': 2.0, 'well': 1.0, 'airplane': 1.0, 'thinking': 1.0, 'getting': 1.0, 'sat': 1.0, 'reviews': 1.0, 'fine': 2.0, 'take': 1.0, 'off': 1.0, 'enough': 1.0, 'size': 1.0, 'landing': 1.0, 'little': 1.0, 'fell': 1.0, 'during': 1.0, 'times': 1.0, 'duration': 1.0, 'turbulent': 1.0, 'am': 2.0, 'also': 1.0, 'comparison': 1.0, 'so': 2.0, '20': 1.0, 'that': 4.0, '22lbs': 1.0, 'crotch': 1.0, 'comfortable': 1.0, 'slide': 1.0, 'down': 1.0, 'faa': 1.0, 'regulations': 1.0, 'sliding': 1.0, 'most': 1.0, 'back': 1.0, 'up': 1.0, 'stay': 1.0, 'every': 1.0, 'month': 1.0, 'often': 1.0, 'not': 1.0, 'an': 1.0, 'issue': 1.0, 'amazed': 1.0, 'parents': 1.0, 'seem': 1.0}
Word element => {'seat': 1.0, 'car': 1.0, 'carry': 1.0, 'much': 1.0, 'but': 1.0, 'on': 1.0, 'sleep': 1.0, 'them': 1.0, 'for': 1.0, 'so': 1.0, 'harder': 1.0, 'easier': 1.0, 'that': 1.0, 'easy': 3.0, 'set': 1.0, 'up': 1.0, 'like': 1.0, 'to': 3.0, 'product': 1.0, 'than': 1.0, 'packing': 1.0, '2': 1.0, 'with': 1.0, 'it': 4.0, 'this': 1.0, 'makes': 1.0, 'my': 1.0, 'use': 1.0, 'feel': 1.0, 'is': 4.0, 'side': 1.0, 'a': 2.0, 'down': 1.0, 'very': 1.0, 'yo': 1.0, 'big': 1.0, 'kid': 1.0}
Word element => {'much': 1.0, 'too': 1.0, 'used': 1.0, 'not': 1.0, 'is': 1.0, 'as': 1.0, 'item': 1.0, 'curious': 1.0, 'were': 1.0, 'passengers': 1.0, 'buckled': 1.0, 'being': 1.0, 'enjoyed': 1.0, 'about': 1.0, 'baby': 1.0, 'my': 1.0, 'up': 1.0, 'set': 1.0, 'adjutanle': 1.0, 'pretty': 1.0, 'was': 1.0, 'to': 3.0, 'easy': 1.0, 'straps': 1.0, 'the': 2.0, 'in': 1.0, 'travel': 1.0, 'recieved': 1.0, 'on': 1.0, 'children': 1.0, 'this': 1.0, 'it': 2.0, 'mail': 1.0, 'with': 2.0, 'plane': 1.0, 'nice': 1.0, 'toddler': 1.0, 'quickly': 1.0, 'carry': 1.0, 'came': 1.0, 'bag': 1.0, 'fit': 1.0, 'your': 1.0}
Word element => {'car': 1.0, 'heavy': 1.0, 'carrying': 1.0, 'than': 1.0, 'we': 1.0, 'more': 1.0, 'the': 2.0, 'convenient': 1.0, 'light': 1.0, 'cares': 1.0, 'harness': 1.0, 'love': 1.0, 'it': 1.0, 'large': 1.0, 's': 1.0, 'weight': 1.0, 'much': 1.0, 'seats': 1.0, 'and': 1.0}
Word element => {'crew': 1.0, 'assistance': 1.0, 'parent': 1.0, 'single': 1.0, 'deal': 1.0, 'big': 1.0, 'wasn': 1.0, 'concern': 1.0, 'suspect': 1.0, 'acknowledgement': 1.0, 'help': 2.0, 'restraint': 1.0, 'from': 2.0, 'prevented': 1.0, 'them': 1.0, 'carried': 1.0, 'guidelines': 1.0, 'tsa': 1.0, 'delta': 1.0, 'used': 1.0, 'his': 1.0, 'pillow': 1.0, 'shoulder': 1.0, 'actually': 1.0, 'us': 5.0, 'neckone': 1.0, 'after': 1.0, 'though': 2.0, 'say': 1.0, 'go': 1.0, 'forced': 1.0, 'were': 1.0, 'allow': 2.0, 'enough': 2.0, 'deep': 1.0, 'was': 2.0, 'back': 1.0, 'when': 1.0, 'traveling': 1.0, 'happened': 1.0, 'behind': 2.0, 'makes': 1.0, 'worse': 1.0, 'they': 1.0, 'accommodating': 1.0, 'passenger': 3.0, 'flights': 1.0, 'without': 1.0, 'physically': 2.0, 'son': 1.0, 'both': 1.0, 'bit': 1.0, 'its': 1.0, 'under': 2.0, 'tightly': 1.0, 'cinch': 1.0, 'needless': 1.0, 'depending': 1.0, 'annoying': 1.0, 'belt': 1.0, 't': 2.0, 'flight': 6.0, 'on': 8.0, 'liner': 2.0, 'simply': 4.0, 'worked': 1.0, 'inadvertently': 1.0, 'will': 1.0, 'something': 1.0, 'top': 1.0, 'kind': 1.0, 'time': 1.0, 'did': 4.0, 'keep': 3.0, 'sure': 2.0, 'thread': 1.0, 'wrong': 1.0, 'short': 1.0, 'add': 1.0, 'itself': 3.0, 'down': 2.0, 'slide': 2.0, 'threaded': 1.0, 'liability': 1.0, 'allowing': 1.0, 'faced': 1.0, 'lack': 1.0, 'these': 1.0, 'common': 1.0, 'one': 2.0, 'held': 1.0, 'their': 2.0, 'actual': 1.0, 'thanks': 1.0, 'feature': 1.0, 'couple': 2.0, 'chair': 1.0, 'features': 1.0, 'refused': 1.0, 'slip': 1.0, 'but': 7.0, 'board': 1.0, 'attendants': 1.0, 'most': 3.0, 'configuration': 1.0, 'dining': 1.0, 'first': 1.0, 'well': 1.0, 'policy': 1.0, 'bedlam': 1.0, 'i': 6.0, 's': 1.0, 'm': 3.0, 'seat': 9.0, 'category': 1.0, 'henceforth': 1.0, 'purchased': 1.0, 'really': 2.0, 'if': 6.0, 'print': 1.0, 'every': 1.0, 'tighter': 1.0, 'want': 2.0, 'choice': 1.0, 'you': 10.0, 'are': 5.0, 'my': 1.0, 'however': 1.0, 'get': 3.0, 'causing': 1.0, 'off': 1.0, 'between': 2.0, 'reviews': 1.0, 'we': 12.0, 'difference': 1.0, 'so3': 1.0, 'very': 3.0, 'across': 1.0, 'may': 4.0, 'products': 1.0, 'product': 3.0, 'year': 1.0, 'amidst': 1.0, 'child': 1.0, 'this': 13.0, 'leg': 1.0, 'each': 1.0, 'around': 3.0, 'impatient': 1.0, 'tray': 6.0, 'bias': 1.0, 'problems': 2.0, 'put': 2.0, 'strap': 4.0, 'points': 1.0, 'others': 1.0, 'your': 3.0, 'many': 1.0, 'ended': 1.0, 'she': 1.0, 'or': 6.0, 'wriggling': 1.0, 'drawer': 1.0, 'comment': 1.0, 'straps': 1.0, 'reflected': 1.0, 'kid': 6.0, 'described': 1.0, 'which': 4.0, 'the': 46.0, 'doing': 2.0, 'have': 5.0, 'there': 3.0, 'proved': 1.0, 'a': 29.0, 'forcing': 1.0, 'confident': 1.0, 'since': 1.0, 'not': 6.0, 'different': 2.0, 'returned': 1.0, 'all': 3.0, 'way': 4.0, 'ask': 1.0, 'huge': 1.0, 'no': 1.0, 'slack': 1.0, 'transporting': 1.0, 'creates': 1.0, 'advice': 1.0, 'whoever': 1.0, 'car': 1.0, 'our': 3.0, 'struggling': 1.0, 'right': 1.0, 'to': 28.0, 'any': 1.0, 'pretty': 1.0, 'airlines': 1.0, 'threads': 1.0, 'against': 1.0, 'is': 16.0, 'at': 1.0, 'completely': 2.0, 'followed': 1.0, 'underneath': 1.0, 'here': 1.0, 'latter': 1.0, 'other': 2.0, 'and': 18.0, 'through': 1.0, 'towards': 1.0, 'point': 2.0, 'passengers': 1.0, 'place': 2.0, 'reader': 1.0, 'missed': 1.0, 'perhaps': 1.0, 'remind': 1.0, 'attendant': 2.0, 'mentioned': 1.0, 'seen': 1.0, 'mentioning': 1.0, 'parents': 2.0, 'expecting': 1.0, 'either': 2.0, 'do': 2.0, 'much': 1.0, 'same': 1.0, 'harness': 3.0, 'need': 2.0, 'also': 2.0, 'another': 1.0, 'loose': 1.0, 'align': 2.0, 'that': 5.0, 'placed': 1.0, 'kitchen': 1.0, 'ease': 1.0, 'involvement': 1.0, 'neck': 1.0, 'going': 1.0, '2': 2.0, 'even': 3.0, 'annoyance': 1.0, 'of': 11.0, 'old': 1.0, 'perfect': 1.0, 'holding': 1.0, 'house': 1.0, 'him': 3.0, 'own': 1.0, 'be': 3.0, 'it': 20.0, 'planning': 1.0, 'useless': 1.0, 'piece': 1.0, 'carry': 1.0, 'in': 6.0, 'slipping': 1.0, 'purchase': 1.0, 'for': 5.0, 'such': 2.0, 'luggage': 1.0, 'so': 2.0, 'had': 2.0, 'tested': 1.0, 'few': 2.0, 'times': 1.0, 'sit': 1.0, 'shut': 1.0, 'as': 2.0, 'accurately': 2.0, 'reviewers': 1.0, 'note': 3.0, 'easy': 2.0, 'legs': 1.0, 'minute': 1.0, 'two': 1.0, 'over': 6.0, 'hard': 2.0, 'flatly': 1.0, 'secure': 1.0, 'home': 1.0, 'using': 1.0, 'prop': 1.0, 'with': 5.0, 'means': 2.0, 'kids': 2.0, 'etc': 1.0, 'still': 1.0, 'reviewer': 1.0, 'don': 1.0, 'about': 2.0, 'use': 2.0, 'some': 3.0, 'included1': 1.0, 'while': 1.0, 'harder': 1.0, 'important': 1.0, 'swing': 1.0, 'probably': 2.0, 'before': 1.0, 'up': 3.0, 'move': 1.0, 'negative': 1.0}
Word element => {'using': 1.0, 'who': 1.0, 'friends': 1.0, 'with': 1.0, 'out': 1.0, 'unbuckle': 1.0, 'get': 1.0, 'easy': 1.0, 'of': 1.0, 'removal': 1.0, 'starting': 1.0, 'and': 1.0, 'adjustment': 1.0, 'straps': 1.0, 'always': 1.0, 'worth': 1.0, 'behind': 1.0, 'on': 1.0, 'flight': 2.0, 'the': 6.0, 'only': 1.0, 'this': 3.0, 'need': 1.0, 'saw': 1.0, 'information': 1.0, 'around': 1.0, 'system': 1.0, 'no': 1.0, 'slip': 1.0, 'life': 1.0, 'attendant': 1.0, 'even': 1.0, 'her': 1.0, 'me': 1.0, 'was': 4.0, 'had': 2.0, 'you': 1.0, 'when': 3.0, 'shared': 1.0, 'daughter': 2.0, 'i': 3.0, 'carseat': 1.0, 'regarding': 1.0, 'have': 4.0, 'restraint': 1.0, 'helped': 1.0, 'saver': 1.0, 'lug': 1.0, 'own': 1.0, 's': 1.0, 'a': 2.0, 'us': 1.0, 'ask': 1.0, 'liked': 1.0, 'my': 2.0, 'also': 2.0, 'appreciated': 1.0, 'in': 2.0, 'that': 1.0, 'it': 5.0, 'she': 2.0, 'money': 1.0, 'sitting': 1.0, 'all': 1.0, 'to': 5.0, 'seat': 1.0, 'during': 1.0, 'antsy': 1.0, 'people': 1.0, 'product': 2.0, 'for': 1.0, 'seated': 1.0}
Word element => {'you': 1.0, 'with': 1.0, 'car': 1.0, 'big': 1.0, 'carrying': 1.0, 'weight': 1.0, 'off': 1.0, 'take': 1.0, 'approved': 2.0, 'is': 4.0, 'light': 1.0, 'just': 1.0, 'but': 1.0, 'use': 1.0, 'we': 2.0, 'unlike': 1.0, 'extra': 1.0, 'yet': 2.0, 'for': 3.0, 'have': 1.0, 'thing': 1.0, 'item': 1.0, 'the': 6.0, 'without': 1.0, 'faa': 1.0, 'arrived': 1.0, 'quickly': 1.0, 'device': 1.0, 'like': 1.0, 'landing': 1.0, 'very': 1.0, 'best': 1.0, 'and': 5.0, 'first': 1.0, 'this': 1.0, 'tiny': 1.0, 'only': 1.0, 'fast': 1.0, 'having': 1.0, 'airplane': 2.0, 'in': 1.0, 'shipping': 1.0, 'pay': 1.0, 'll': 1.0, 'need': 1.0, 'keep': 1.0, 'own': 2.0, 'seat': 3.0, 'to': 3.0, 'our': 1.0, 'that': 2.0, '18': 1.0, 'looks': 1.0, 'it': 3.0, 'month': 1.0, 'old': 1.0, 'happy': 1.0, 'your': 1.0, 'on': 1.0, 'his': 1.0, 'part': 1.0, 'so': 1.0, 'time': 1.0}
Word element => {'car': 1.0, 'around': 1.0, 'lugging': 1.0, 'than': 1.0, 'easier': 1.0, 'still': 1.0, 'utility': 1.0, 'will': 1.0, 'awake': 1.0, 'your': 1.0, 'recommend': 1.0, 'would': 1.0, 'only': 1.0, 'quickly': 1.0, 'protection': 1.0, 'kept': 1.0, 'somewhat': 1.0, 'alleviated': 1.0, 'minimum': 1.0, 'extent': 1.0, 'maximum': 1.0, 'belt': 2.0, 'lap': 2.0, 's': 4.0, 'using': 2.0, 'restrained': 1.0, 'basically': 1.0, 'installed': 1.0, 'pressed': 1.0, 'opened': 1.0, 'faa': 2.0, 'when': 2.0, 'but': 4.0, 'situation': 1.0, '2': 1.0, 'it': 6.0, 'some': 1.0, 'she': 3.0, 'others': 1.0, 'did': 2.0, 'time': 1.0, 'so': 1.0, 'attendant': 1.0, 'hips': 1.0, 'fatal': 1.0, 'trachea': 1.0, '3': 1.0, 'against': 1.0, 'length': 1.0, 'to': 3.0, 'severely': 1.0, 'as': 3.0, '8': 1.0, '5th': 1.0, 'label': 1.0, 'that': 1.0, 'concerned': 1.0, 'prominent': 1.0, 'at': 1.0, 'is': 2.0, 'looks': 1.0, 'me': 1.0, 'my': 3.0, 'may': 1.0, 'down': 1.0, 'flights': 1.0, 'quizzical': 1.0, 'hour': 1.0, 'missing': 1.0, 'reverted': 1.0, 'for': 1.0, 'from': 1.0, 'satisfied': 1.0, 'slide': 1.0, 'buckle': 3.0, 'seat': 3.0, 'in': 3.0, 'approved': 2.0, 'explained': 1.0, 'product': 1.0, 'year': 1.0, 'child': 4.0, 'less': 1.0, 'up': 1.0, 'loved': 1.0, 'old': 1.0, 'occur': 1.0, 'on': 4.0, 'flight': 2.0, 'noticed': 1.0, 'point': 2.0, 'slept': 1.0, 'i': 6.0, 'strap': 1.0, 'provides': 1.0, 'special': 1.0, 'used': 1.0, 'her': 3.0, 'legs': 1.0, 'get': 1.0, 'beneath': 1.0, 'and': 4.0, 'stayed': 1.0, 'tightening': 1.0, 'this': 6.0, 'tray': 1.0, 'resulted': 1.0, 'passenger': 1.0, 'there': 1.0, 'limit': 1.0, 'no': 1.0, 'behind': 1.0, 'about': 2.0, 'concern': 1.0, 'just': 1.0, 'annoyance': 1.0, 'all': 1.0, 'other': 1.0, 'chest': 1.0, 'passengers': 1.0, 'problem': 1.0, 'though': 1.0, 'something': 1.0, 'a': 2.0, 'showed': 1.0, 'future': 1.0, 'indeed': 1.0, 'flaw': 1.0, 'issue': 1.0, 'the': 19.0, 'of': 2.0, 'device': 1.0, 'which': 2.0, 'was': 6.0, 'solve': 1.0, 'cooperative': 1.0, 'plane': 1.0, 'have': 1.0, 'harness': 1.0, 'between': 1.0, 'pressing': 1.0}
Word element => {'one': 1.0, 'than': 1.0, 'use': 1.0, 'safe': 1.0, 'the': 2.0, 'll': 1.0, 'fly': 1.0, 'to': 2.0, 'system': 1.0, 'takes': 1.0, 'simple': 1.0, 'very': 1.0, 'and': 2.0, 'a': 1.0, 'is': 1.0, 'install': 1.0, 'keeps': 1.0, 'less': 1.0, 'kids': 1.0, 'secure': 1.0, 'minute': 1.0, 'i': 1.0, 'never': 1.0, 'without': 1.0}
Word element => {'trips': 1.0, 'getting': 1.0, 'seem': 1.0, 'i': 1.0, 'used': 1.0, 'fun': 1.0, 'that': 1.0, 'thinks': 1.0, 'belt': 1.0, 'think': 1.0, 'on': 1.0, '5': 1.0, 'trip': 1.0, 'because': 1.0, 'his': 1.0, 'preoccupied': 1.0, 'in': 2.0, 've': 1.0, 'kept': 1.0, 'remove': 1.0, 'it': 3.0, 'this': 2.0, 'with': 1.0, 'quick': 1.0, 'the': 4.0, 'is': 2.0, 'he': 4.0, 'extremely': 1.0, 'hour': 1.0, 'as': 2.0, 'seat': 6.0, 'our': 2.0, 'to': 5.0, 'had': 2.0, 'use': 1.0, 'difficulty': 1.0, 'flight': 1.0, 'up': 1.0, 'once': 1.0, 'of': 3.0, 'flights': 1.0, 'similar': 1.0, 'and': 4.0, 'easy': 2.0, 'get': 1.0, 'undo': 1.0, 'toddler': 1.0, 'hook': 1.0, 'for': 1.0, 'fit': 1.0, 'him': 2.0, 'car': 2.0, 'reminded': 1.0, 'didn': 2.0, 'ask': 1.0, 'out': 2.0, 'entire': 1.0, 't': 2.0, 'a': 1.0, 'we': 2.0, '2': 1.0, 'past': 2.0, 'can': 1.0}
Word element => {'t': 1.0, 'don': 1.0, 'no': 1.0, 'about': 3.0, 'been': 1.0, 'that': 1.0, 'not': 1.0, 'airline': 1.0, 'fly': 2.0, 'do': 1.0, 'papers': 1.0, 'harness': 3.0, 'out': 3.0, 'last': 1.0, 's': 2.0, 'we': 3.0, 'you': 1.0, 'to': 4.0, 'all': 1.0, 'before': 1.0, 'used': 1.0, 'u': 1.0, 'which': 1.0, '5': 1.0, 'taught': 1.0, 'old': 1.0, 'registered': 1.0, 'say': 1.0, 'is': 1.0, 'crossed': 1.0, 'them': 1.0, 'has': 2.0, 'this': 1.0, 'know': 2.0, 'found': 1.0, 'carriers': 1.0, '6': 1.0, 'our': 1.0, 'how': 1.0, '2': 1.0, 'the': 15.0, 'have': 3.0, 'print': 2.0, 'board': 1.0, 'are': 2.0, 'tokyo': 1.0, 'pacific': 1.0, 'watch': 1.0, 'who': 2.0, 'times': 2.0, 'future': 1.0, 'glad': 1.0, 'and': 1.0, 'ones': 2.0, 'too': 1.0, 'product': 3.0, 'year': 1.0, 'harnesses': 1.0, 'help': 1.0, 'united': 1.0, 'yet': 1.0, 'they': 2.0, 'if': 1.0, 'still': 1.0, 'a': 1.0, 'object': 1.0, 'so': 2.0, 'ask': 2.0, 'with': 2.0, 'cockpit': 1.0, 'red': 1.0, 'captain': 1.0, 'in': 4.0, 'book': 1.0, 'states': 1.0, 'speak': 1.0, 'it': 2.0, 'cares': 1.0, 'allowed': 1.0, 'guidelines': 2.0, 'us': 1.0, 'also': 3.0, 'off': 1.0, 'allow': 1.0, 'from': 1.0, 'faa': 1.0, 'carry': 1.0, 'self': 1.0, 'these': 1.0, 'some': 1.0, 'including': 1.0, 'bag': 1.0, 'many': 2.0, 'attendants': 2.0, 'install': 1.0, 'just': 1.0, '8': 1.0, 'flyers': 1.0, 'flights': 1.0, 'flight': 3.0, 'on': 1.0}
Word element => {'airport': 1.0, 'around': 1.0, 'have': 1.0, 'don': 2.0, 're': 1.0, 'a': 1.0, 'and': 1.0, 'kids': 1.0, 'you': 3.0, 'what': 1.0, 'this': 2.0, 'with': 1.0, 'now': 1.0, 'fly': 1.0, 'if': 1.0, 'missing': 1.0, 'i': 1.0, 'use': 1.0, 'instead': 1.0, 'of': 1.0, 'terminal': 1.0, 'seat': 1.0, 'know': 1.0, 'lugging': 1.0, 'the': 1.0, 't': 2.0, 'bulky': 1.0, 'car': 1.0}
Word element => {'safe': 1.0, 'are': 2.0, 'kids': 1.0, 'seats': 1.0, 'bag': 1.0, 'checked': 1.0, 'or': 2.0, 'pocket': 1.0, 'in': 1.0, 'fits': 1.0, 'and': 2.0, 'use': 1.0, 'home': 1.0, 'easy': 1.0, 'small': 1.0, 'so': 1.0, 'pain': 1.0, 'a': 2.0, 'an': 1.0, 'to': 2.0, 'young': 1.0, 'left': 1.0, 'traveling': 1.0, 'is': 2.0, 'period': 1.0, 'this': 2.0, 'with': 1.0, 'children': 1.0, 're': 1.0, 'you': 1.0, 'if': 1.0, 'big': 2.0, 'must': 1.0, 'we': 1.0, 'what': 1.0, 'used': 1.0, 'car': 2.0, 'bulky': 1.0, 'the': 2.0, 'absolute': 1.0, 'seat': 1.0, 'product': 2.0, 'drag': 1.0, 'onto': 1.0, 'plane': 1.0}
Word element => {'restraint': 1.0, 'my': 1.0, 'good': 1.0, 'behind': 1.0, 'issues': 1.0, 'sitting': 1.0, 'strap': 1.0, 'that': 1.0, 'with': 2.0, 'only': 1.0, 'this': 2.0, 'felt': 1.0, 'it': 2.0, 'great': 1.0, 'around': 1.0, 'more': 1.0, 'was': 2.0, 'had': 1.0, 'all': 1.0, 'to': 2.0, 'i': 2.0, 'you': 1.0, 'when': 1.0, 'loose': 1.0, 'while': 1.0, 'taking': 1.0, 'tool': 1.0, 'adjust': 1.0, '6': 1.0, 'came': 1.0, 'long': 1.0, 'trips': 1.0, 'down': 1.0, 'hours': 1.0, 'and': 1.0, 'slightly': 1.0, 'slid': 1.0, 'little': 2.0, 'on': 1.0, 'child': 1.0, 'flight': 1.0, 'the': 5.0, 'deal': 1.0, 'a': 3.0, 's': 2.0, 'way': 1.0, 'own': 1.0, 'thing': 1.0, 'about': 2.0, 'half': 1.0, 'through': 1.0, 'difficult': 1.0, 'having': 2.0, 'in': 2.0, 'air': 1.0, 'people': 1.0}
Word element => {'for': 1.0, 'baby': 1.0, 're': 1.0, 'if': 1.0, 'always': 1.0, 'addtion': 1.0, 'airplane': 1.0, 'than': 1.0, 'rather': 1.0, 'car': 1.0, 'passenger': 1.0, 'other': 1.0, 'had': 1.0, 'forth': 1.0, 'back': 2.0, 'nuisance': 1.0, 'toddler': 1.0, 'big': 2.0, 'from': 1.0, 'worked': 1.0, 'go': 2.0, 'a': 5.0, 'you': 1.0, 'traveling': 1.0, 'is': 1.0, 'i': 1.0, 'checked': 1.0, 'my': 3.0, 'grandson': 2.0, 'at': 1.0, 'since': 2.0, 'who': 1.0, 'this': 1.0, 'it': 2.0, 'also': 1.0, 'item': 1.0, '21': 1.0, 'and': 3.0, 'especially': 1.0, 'perfectly': 1.0, 'can': 2.0, 'sitting': 1.0, 'la': 1.0, 'ny': 1.0, 'bought': 1.0, 'months': 1.0, 'put': 1.0, 'on': 2.0, 'gate': 1.0, 'the': 7.0, 'just': 1.0, 'his': 1.0, 'used': 1.0, 'own': 1.0, 'daughter': 1.0, 'carseat': 2.0, 'cares': 1.0, 'was': 1.0, 'belt': 1.0, 'itself': 1.0, 'plane': 1.0, 'in': 5.0, 'he': 1.0, 'addition': 1.0, 'loved': 1.0, 'roller': 1.0, 'be': 2.0, 'him': 1.0, 'using': 1.0, 'trip': 1.0, 'which': 2.0, 'like': 1.0, 'to': 1.0, 'seat': 4.0, 'any': 1.0}
Word element => {'leave': 1.0, 'off': 1.0, 'forget': 1.0, 'don': 1.0, 'just': 1.0, 'take': 1.0, 'cumbersome': 1.0, 'less': 1.0, 'car': 1.0, 'check': 1.0, 'time': 1.0, 'you': 1.0, 'when': 2.0, 'granddaughter': 1.0, 'taken': 1.0, 'he': 1.0, 'this': 3.0, 'month': 1.0, 'it': 5.0, 'and': 6.0, 'grandson': 2.0, 'convenient': 1.0, 'another': 1.0, 'purchase': 1.0, 'my': 4.0, '2': 4.0, 'advice': 1.0, 'one': 1.0, 'bought': 1.0, 'is': 3.0, 'kudos': 1.0, 'carry': 1.0, 'old': 2.0, 'i': 2.0, 'because': 1.0, 'inventor': 1.0, 'was': 1.0, 'product': 1.0, 'for': 2.0, 'round': 1.0, 'to': 5.0, 'seat': 3.0, 'flights': 1.0, 'secure': 1.0, 'will': 1.0, 'plane': 1.0, 'in': 1.0, 'put': 1.0, 'your': 1.0, 'on': 2.0, 'easy': 1.0, '1': 1.0, 'great': 1.0, 'install': 1.0, 't': 1.0, 's': 3.0, 'a': 1.0, 'confortable': 1.0, 'could': 1.0, 'use': 2.0, 'year': 1.0, 'his': 1.0, 'using': 1.0, 'trip': 1.0, 'restriction': 1.0, 'arms': 1.0, 'the': 5.0, 'hands': 1.0, 'without': 1.0}
Word element => {'recommend': 1.0, 'i': 1.0, 'than': 1.0, 'manuals': 1.0, 'check': 1.0, 'crew': 1.0, 'from': 1.0, 'press': 1.0, 'carry': 1.0, 'told': 1.0, 'been': 1.0, 'have': 1.0, 'seat': 1.0, 'know': 1.0, 'belt': 1.0, 'sometimes': 1.0, 're': 1.0, 'for': 1.0, 'love': 1.0, 'using': 1.0, 'cares': 1.0, 'and': 2.0, 'this': 1.0, 'it': 2.0, 'only': 1.0, 'faa': 1.0, 'seatbelt': 1.0, 'other': 1.0, 'we': 3.0, 'highly': 1.0, 'ask': 1.0, 'don': 1.0, 'kiddo': 1.0, 'to': 2.0, 'now': 1.0, 'release': 1.0, 'second': 1.0, 'is': 2.0, 't': 1.0, 'the': 5.0, 'allowed': 1.0, 'flight': 2.0, 'problem': 1.0, 'their': 1.0, 'attendants': 1.0, 'our': 2.0, 'that': 3.0}
Word element => {'is': 1.0, 'bonus': 1.0, 'which': 1.0, 'accidentally': 1.0, 'out': 1.0, 'try': 1.0, 'old': 1.0, 'i': 1.0, 'seat': 1.0, 'to': 2.0, 'had': 2.0, 'now': 1.0, 'this': 1.0, 'perfect': 1.0, 'in': 2.0, 'kick': 1.0, 'year': 1.0, 'decided': 1.0, 'very': 1.0, 'hours': 1.0, 't': 1.0, 'we': 2.0, 'a': 2.0, 'well': 1.0, '1': 3.0, 'and': 3.0, 'couldn': 1.0, 'short': 1.0, 'my': 1.0, 'the': 3.0, '2': 4.0, 'flight': 1.0, 'front': 1.0, 'instructions': 2.0, 'time': 1.0, 'did': 1.0, 'dvd': 1.0, 'with': 1.0, 'illustrated': 1.0, 'are': 1.0, 'easy': 1.0, 'it': 3.0, 'she': 1.0, 'understand': 1.0, 'installed': 1.0, 'about': 1.0, 'was': 1.0, 'minutes': 1.0, 'her': 1.0, 'were': 1.0, 'that': 1.0, 'far': 1.0, 'legs': 1.0, 'enough': 1.0, 'back': 1.0}
Word element => {'safe': 1.0, 'keeps': 1.0, 'about': 1.0, 'not': 1.0, 'is': 1.0, 'daughter': 1.0, 'happy': 1.0, 'my': 1.0, 'plan': 1.0, 'and': 2.0, 'seats': 1.0, 'other': 1.0, 'say': 1.0, 'who': 1.0, 'on': 2.0, 'to': 1.0, 'now': 1.0, 'her': 1.0, 'works': 1.0, 'trips': 1.0, 'used': 1.0, 'twice': 1.0, 'can': 1.0, 'it': 3.0, 've': 1.0, 'i': 3.0, 'am': 1.0, 'the': 2.0, 'quite': 1.0, 'envy': 1.0, 'of': 1.0, 'parents': 1.0, 'drag': 1.0, 'car': 1.0, 'although': 1.0, 'that': 1.0, 'their': 1.0}
Word element => {'being': 1.0, 'science': 1.0, 'rocket': 1.0, 'airplane': 1.0, 'figured': 1.0, 'problem': 1.0, 'didn': 1.0, 'that': 2.0, 'low': 1.0, 'out': 1.0, 'feet': 1.0, 'easy': 1.0, 'bag': 1.0, 'enough': 2.0, 'unhook': 1.0, 'small': 1.0, 'is': 3.0, 'only': 1.0, 'harness': 1.0, 'which': 1.0, 'trip': 1.0, 'smaller': 1.0, 'checked': 1.0, 'my': 1.0, 'cares': 1.0, 'carseat': 2.0, 'both': 1.0, 'ways': 1.0, 'on': 5.0, 'freedom': 1.0, 'flight': 1.0, 'toddler': 1.0, 'after': 1.0, 'stop': 1.0, 'bought': 1.0, 'one': 1.0, 'fit': 1.0, 'for': 3.0, 'potential': 1.0, 'i': 2.0, 'old': 1.0, '5': 1.0, 'staff': 1.0, 'taken': 1.0, 'with': 1.0, 'it': 3.0, 'how': 1.0, 'he': 3.0, '2': 1.0, 'the': 8.0, 'discouraged': 1.0, 'had': 1.0, 'belt': 1.0, 'was': 2.0, 'kick': 1.0, 'his': 3.0, 'board': 2.0, 'year': 1.0, 'while': 1.0, 'from': 1.0, 't': 1.0, 'a': 4.0, 'front': 2.0, 'planes': 1.0, 'not': 1.0, 'me': 1.0, 'and': 6.0, 'bringing': 1.0, 'needed': 1.0, 'bother': 1.0, 'carry': 1.0, 'until': 1.0, 'install': 2.0, 'fascinating': 1.0, 'then': 1.0, 'kept': 2.0, 'kicking': 1.0, 'plane': 1.0, 'wiggling': 1.0, 'in': 3.0, 'of': 2.0, 'him': 2.0, 'to': 4.0, 'seat': 3.0, 'our': 1.0, 'last': 1.0}
Word element => {'around': 1.0, 'crawl': 1.0, 'trying': 1.0, 'not': 1.0, 'of': 1.0, 'worry': 1.0, 'eases': 1.0, 'seats': 1.0, 'car': 1.0, 'to': 3.0, 'down': 1.0, 'used': 1.0, 'safe': 1.0, 'them': 2.0, 'get': 1.0, 'and': 3.0, 'each': 1.0, 'right': 1.0, 'kid': 1.0, 'parents': 1.0, 'for': 2.0, 'one': 1.0, 'young': 1.0, 'fly': 1.0, 'mind': 1.0, 'keeps': 1.0, 'are': 2.0, 'about': 1.0, 'whenever': 1.0, 'use': 1.0, 'having': 1.0, 'perfect': 1.0, 'have': 2.0, 'the': 1.0, 'these': 1.0, 'they': 2.0, 'we': 3.0, 'traveling': 1.0, 'is': 1.0, 'a': 1.0, 'must': 1.0, 'children': 1.0, 'this': 1.0, 'with': 1.0, 'it': 2.0}
Word element => {'years': 1.0, 'an': 1.0, 'than': 2.0, 'safe': 1.0, 'at': 1.0, 'little': 1.0, 'alone': 2.0, 'money': 1.0, 'intended': 1.0, 'belt': 2.0, 'planes': 1.0, 'a': 4.0, 'check': 1.0, 'well': 1.0, 'one': 1.0, 'for': 4.0, 'safety': 1.0, 'the': 4.0, 'is': 3.0, 'more': 1.0, 'adult': 1.0, 'if': 1.0, 'car': 1.0, 'frankly': 1.0, 'this': 2.0, 'lap': 3.0, 'curb': 1.0, 'and': 3.0, 'couple': 1.0, 'bring': 1.0, 'install': 1.0, 'are': 2.0, 'less': 1.0, 'made': 1.0, 'adults': 1.0, 'belts': 1.0, 'quite': 1.0, 'unsafe': 1.0, 'devise': 1.0, 'easy': 1.0, 'seat': 1.0, 'to': 1.0, 'worth': 1.0, 'times': 1.0, 'you': 1.0, 'fly': 1.0, 'childs': 1.0, 'during': 1.0, 'on': 1.0, 'your': 1.0}
Word element => {'sites': 1.0, 'here': 1.0, 'cheaper': 1.0, 'way': 1.0, 'well': 1.0, 'legs': 1.0, 'between': 1.0, 'strap': 1.0, 'changed': 1.0, 'see': 1.0, 'that': 1.0, 'only': 1.0, 'but': 1.0, 'worked': 1.0, 'things': 1.0, 'other': 2.0, 'free': 1.0, 'bag': 1.0, 'compared': 1.0, 'wonderfully': 1.0, 'pound': 1.0, 'weighs': 1.0, 'bulky': 1.0, 'easy': 2.0, 'check': 1.0, 'was': 1.0, 'had': 1.0, 'clunky': 1.0, 'husband': 1.0, 'carseat': 3.0, 'her': 1.0, 'able': 2.0, 'row': 1.0, 'have': 1.0, 'it': 5.0, 'this': 1.0, 'with': 1.0, 'were': 2.0, 'awesome': 4.0, 'product': 1.0, 'for': 1.0, 'meant': 1.0, 'overseas': 1.0, 'share': 1.0, 'under': 1.0, 'contraption': 1.0, 'and': 4.0, 'then': 1.0, 'took': 1.0, 'two': 1.0, 'i': 2.0, 'like': 1.0, 'which': 1.0, 'trip': 1.0, 'maybe': 1.0, 'because': 1.0, 'go': 1.0, 'might': 1.0, 't': 1.0, 'a': 5.0, 'we': 3.0, 'around': 1.0, 'is': 2.0, 'recently': 1.0, 'hands': 1.0, 'the': 4.0, 'place': 2.0, 'observance': 1.0, 'put': 1.0, 'on': 1.0, 'my': 4.0, 'daughter': 2.0, 'plane': 1.0, 'in': 3.0, 'plenty': 1.0, 'or': 2.0, 'room': 1.0, 'move': 1.0, 'did': 1.0, 'to': 9.0, 'our': 2.0, 'seat': 2.0, 'as': 2.0, 'didn': 1.0}
Word element => {'thanks': 1.0, 'us': 1.0, 'for': 1.0, 'travel': 1.0, 'possibilities': 1.0, 'opens': 1.0, 'helped': 1.0, 'easy': 1.0, 'really': 2.0, 'traveling': 1.0, 'i': 1.0, 'up': 1.0, 'of': 1.0, 'no': 1.0, 'thoughts': 1.0, 'and': 3.0, 'very': 2.0, 'were': 1.0, 'in': 1.0, 'to': 1.0, 'was': 1.0, 'a': 2.0, 'preschooler': 1.0, 'have': 1.0, 'it': 1.0, 'this': 1.0, 'him': 1.0, 'harness': 1.0, 'nightmare': 1.0, 'got': 1.0, 'however': 1.0, 'install': 1.0, 'amazing': 1.0, 'energetic': 1.0, 'we': 1.0, 'fuss': 1.0, 'strapped': 1.0}
Word element => {'quick': 1.0, 'really': 1.0, 'off': 1.0, 'are': 1.0, 'like': 1.0, 'buckle': 1.0, 'straps': 1.0, 'down': 1.0, 'tighten': 1.0, 'back': 1.0, 'slip': 1.0, 'car': 1.0, 'plane': 2.0, 'on': 1.0, 'our': 1.0, 'seat': 4.0, 'to': 2.0, 'adjust': 1.0, 'he': 2.0, 'this': 2.0, 'it': 5.0, 'big': 1.0, '1': 1.0, 'and': 7.0, 'was': 1.0, 'at': 1.0, 'my': 1.0, 'old': 2.0, 'i': 1.0, 'bought': 1.0, 'year': 1.0, 'approved': 1.0, 'the': 8.0, '2': 1.0, 'is': 4.0, 'more': 1.0, '5': 2.0, 'no': 1.0, 'about': 1.0, 'onto': 1.0, 'best': 1.0, 'years': 2.0, 'son': 2.0, 'still': 1.0, 'holding': 1.0, 'into': 1.0, 'loves': 1.0, 'just': 1.0, 'by': 1.0, 'faa': 1.0, 'now': 1.0, 'federal': 1.0, 'trying': 2.0, 'aviation': 1.0, 'ago': 1.0, 'a': 4.0, 'we': 3.0, 'administration': 1.0, 'harness': 1.0, 'works': 1.0, 'boy': 1.0, 'time': 1.0, 'so': 1.0, 'fast': 1.0, 'get': 2.0, 'easy': 2.0, 'over': 1.0, 'up': 3.0, 'of': 1.0, 'line': 1.0, 'product': 1.0, 'folks': 1.0}
Word element => {'alone': 1.0, 'not': 1.0, 'car': 1.0, 'lug': 1.0, 'and': 1.0, 'while': 1.0, 'didn': 1.0, 'traveling': 1.0, 'i': 3.0, 'old': 1.0, 'seat': 1.0, 'to': 2.0, 'was': 3.0, 'pleased': 1.0, 'used': 1.0, 'down': 1.0, 'because': 1.0, '14': 1.0, 'does': 1.0, 'have': 2.0, 'the': 3.0, 'this': 1.0, 'with': 3.0, 'only': 1.0, 'he': 1.0, 'purchase': 1.0, 'my': 2.0, 'him': 1.0, 'it': 3.0, 'month': 1.0, 'son': 1.0, 'worked': 1.0, 'very': 2.0, 'so': 1.0, 'between': 1.0, 'that': 2.0, 'well': 1.0, 't': 1.0, 'a': 1.0, 'did': 1.0, 'legs': 1.0, 'occasionally': 1.0, 'slip': 1.0, 'carry': 1.0, 'strap': 1.0, 'con': 1.0, 'easy': 1.0, 'but': 1.0, 'use': 1.0}
Word element => {'overall': 1.0, 'low': 1.0, 'a': 1.0, 'we': 3.0, 's': 3.0, 'safe': 1.0, 'buckle': 3.0, 'for': 3.0, 'be': 1.0, 'wanting': 1.0, 'kept': 1.0, 'experience': 2.0, 'made': 1.0, 'was': 4.0, 'recommend': 1.0, 'special': 2.0, 'used': 1.0, 'seat': 4.0, 'high': 1.0, 'to': 10.0, 'own': 2.0, 'having': 1.0, 'airplane': 1.0, 'on': 2.0, 'your': 1.0, 'great': 1.0, 'install': 1.0, 'seemed': 1.0, 'so': 1.0, 'can': 1.0, 'but': 1.0, 'as': 1.0, 'hawaii': 1.0, 'recently': 1.0, 'old': 1.0, 'had': 2.0, 'my': 3.0, 'it': 3.0, 'she': 3.0, 'effectively': 1.0, 'seatbelt': 1.0, 'with': 2.0, 'first': 1.0, 'this': 4.0, 'before': 1.0, 'his': 1.0, 'very': 2.0, 'and': 4.0, 'flights': 1.0, 'never': 1.0, 'been': 1.0, 'daughter': 3.0, 'avoid': 1.0, 'that': 1.0, 'easy': 2.0, 'her': 5.0, 'use': 2.0, 'i': 2.0, 'either': 1.0, 'would': 1.0, 'early': 1.0, 'height': 1.0, 'an': 1.0, 'boarding': 1.0, 'if': 2.0, 'flew': 1.0, 'possible': 1.0, 'the': 9.0, 'person': 1.0, 'behind': 2.0, 'you': 2.0, 'could': 2.0, 'disturbing': 1.0, 'will': 1.0, 'or': 2.0, 'need': 1.0, 'lower': 1.0, 'tray': 1.0, 'happy': 1.0, 'too': 2.0, 'one': 2.0, 'right': 1.0, 'table': 1.0, 'like': 1.0, 'product': 3.0, 'year': 1.0, 'child': 2.0, 't': 1.0, 'belt': 3.0, 'likes': 1.0, 'they': 1.0, 'do': 1.0, 'plane': 1.0, 'not': 1.0, '2': 1.0, 'thing': 1.0, 'didn': 1.0, 'chest': 1.0, 'unbuckle': 1.0, 'level': 1.0, 'challenging': 1.0, 'adjust': 1.0, 'just': 1.0}
Word element => {'served': 1.0, 'really': 1.0, 'then': 1.0, 'required': 1.0, 'were': 1.0, 'seat': 1.0, 'for': 1.0, 'very': 1.0, 'bets': 1.0, 'we': 1.0, 'during': 1.0, 'and': 2.0, 'my': 1.0, 'the': 1.0, 'flights': 1.0, 'several': 1.0, 'have': 1.0, 'long': 1.0, 'used': 1.0, 'toddler': 1.0, 'only': 1.0, 'this': 1.0, 'it': 1.0, 'helpful': 1.0, 'has': 1.0, 'been': 1.0, 'purpose': 1.0, 'its': 1.0, 'was': 1.0, 'harness': 1.0, 'warn': 1.0, 'when': 1.0}
Word element => {'made': 1.0, 'improvements': 1.0, 'approval': 1.0, 'faa': 1.0, 'went': 1.0, 'given': 1.0, 'but': 1.0, 'what': 1.0, 'also': 1.0, 'messing': 1.0, 'slouch': 1.0, 'positioning': 1.0, 'leg': 1.0, 'lack': 1.0, 'for': 1.0, 'backs': 1.0, 'curved': 1.0, 'flush': 1.0, 'red': 1.0, 'process': 1.0, 'better': 1.0, 'up': 1.0, 'ends': 1.0, 'installation': 1.0, 'not': 4.0, 'clip': 2.0, 'are': 1.0, 'described': 1.0, 'travelmate': 1.0, 'might': 1.0, 'a': 6.0, 'travel': 1.0, 'means': 1.0, 'could': 2.0, 's': 1.0, 'detach': 1.0, 'airport': 1.0, 'through': 4.0, 'order': 1.0, 'traveling': 1.0, 'flaws': 1.0, 'this': 2.0, 'worth': 2.0, 'or': 1.0, 'car': 5.0, 'lie': 1.0, 'to': 8.0, 'as': 1.0, 'can': 1.0, 'comparison': 1.0, 'use': 1.0, 'front': 3.0, 'if': 1.0, 'certainly': 1.0, 'go': 2.0, 'improved': 1.0, 'kicking': 2.0, 'don': 1.0, 'over': 1.0, 'cares': 2.0, 'be': 2.0, 'rare': 1.0, 'consists': 1.0, 'slip': 1.0, 'harness': 3.0, 'do': 1.0, 'upon': 1.0, 'prevented': 1.0, 'that': 2.0, 'is': 6.0, 'seat': 11.0, 'in': 12.0, 'overpriced': 1.0, 'have': 3.0, 'plane': 1.0, 'any': 2.0, 'your': 3.0, 'on': 2.0, 'the': 24.0, 'of': 11.0, 'spots': 1.0, 'back': 1.0, 'like': 1.0, 'from': 2.0, 'accessory': 1.0, 'him': 1.0, 'it': 10.0, 'lug': 1.0, 'and': 3.0, 'couple': 1.0, 'reaching': 1.0, 'does': 1.0, 'ease': 1.0, 'child': 3.0, 'product': 2.0, 'toddler': 2.0, 'get': 2.0, 'however': 3.0, 'easy': 1.0, 'security': 1.0, 'etc': 1.0, 'putting': 1.0, 'feet': 1.0, 'i': 2.0, 'two': 1.0, 'installing': 1.0, 'airplane': 1.0, 'them': 2.0, 'location': 2.0, 'has': 1.0, 'puts': 1.0, 'perfect': 2.0, 'range': 2.0, 'mostly': 1.0, 'my': 1.0, 'pros': 1.0, 'son': 1.0, 'under': 1.0, 'install': 1.0, 'run': 1.0, 't': 1.0, 'belt': 1.0, 'was': 2.0, 'minutes': 1.0, 'aligning': 1.0, 'something': 1.0, 'straps': 2.0, 'cons': 1.0, 'strap': 2.0, 'neck': 1.0, 'reviewers': 1.0, 'you': 3.0, 'able': 2.0, 'chest': 2.0, 'flying': 1.0, 'careful': 1.0, 'alone': 1.0, 'with': 5.0, 'all': 2.0, 'an': 1.0, 'other': 1.0}
Word element => {'far': 1.0, 'compatible': 1.0, 'future': 1.0, 'll': 1.0, 'off': 1.0, 'took': 1.0, 'reached': 1.0, 'once': 1.0, 'almost': 1.0, 'cruising': 1.0, 'upright': 1.0, 'seated': 1.0, 'pillows': 1.0, 'similar': 1.0, 'uncomfortably': 1.0, 'head': 3.0, 'way': 1.0, 'her': 3.0, 'got': 1.0, 'daughter': 1.0, 'effect': 1.0, 'clothesline': 1.0, 'caused': 2.0, 'waste': 1.0, 'cradle': 1.0, 'profile': 1.0, 'very': 3.0, 'coach': 1.0, 'line': 1.0, 'delta': 1.0, 'as': 2.0, 'belt': 1.0, 't': 1.0, 'altitude': 1.0, 'stuffing': 1.0, 'a': 7.0, 'seats': 2.0, 'were': 1.0, 'passengers': 1.0, 'it': 8.0, 'picture': 1.0, 'work': 1.0, 'but': 3.0, 'sitting': 1.0, 'standard': 1.0, 'process': 1.0, 'so': 1.0, 'can': 1.0, 'shoulder': 1.0, 'plane': 1.0, 'seat': 5.0, 'bucket': 1.0, 'in': 6.0, 'place': 1.0, 'angle': 1.0, 'like': 2.0, 'easy': 1.0, 'know': 1.0, 'i': 3.0, 'contoured': 2.0, 'take': 1.0, 'we': 3.0, 'then': 1.0, 'installing': 1.0, 'our': 2.0, 'disappointed': 1.0, 'hoping': 1.0, 'to': 7.0, 'pretty': 1.0, 'had': 2.0, 'was': 4.0, 'she': 1.0, 'unfortunately': 1.0, 'pull': 1.0, 'by': 1.0, 'large': 1.0, 'overall': 1.0, 'form': 1.0, 'car': 1.0, 'flights': 2.0, 'stable': 1.0, 'enough': 1.0, 'around': 2.0, 'more': 2.0, 'is': 1.0, 'carrying': 1.0, 'few': 1.0, 'this': 4.0, 'and': 4.0, 'dealt': 1.0, 'didn': 1.0, 'versus': 1.0, 'on': 4.0, 'any': 1.0, 'your': 2.0, 'convenience': 1.0, 'make': 1.0, 'directly': 1.0, 'back': 1.0, 'while': 2.0, 'you': 5.0, 'getting': 1.0, 'sat': 2.0, 'my': 1.0, 'may': 1.0, 'tight': 1.0, 'comfortable': 1.0, 'backs': 1.0, 'for': 5.0, 'adult': 1.0, 'nothing': 1.0, 'system': 1.0, 'attach': 1.0, 'red': 2.0, 'with': 3.0, 'strap': 3.0, 'did': 2.0, 'restraint': 2.0, 'loop': 1.0, 'that': 1.0, 'whole': 1.0, 'seatback': 1.0, 'the': 18.0, 'device': 1.0, 'of': 4.0, 'person': 1.0, 'behind': 2.0, 'lap': 1.0, 'anchor': 1.0, 'straps': 1.0, 'when': 2.0, 'sit': 1.0, 'trouble': 1.0, 'seatbacks': 1.0, 'forward': 1.0, 'not': 1.0, 'flat': 1.0}
Word element => {'so': 1.0, 'last': 1.0, 'recommend': 1.0, 'perfectly': 1.0, 'couple': 1.0, 'a': 2.0, 'convenient': 1.0, 'and': 2.0, 'tall': 1.0, 'easy': 1.0, 'sure': 1.0, 'there': 1.0, '34': 1.0, 'of': 1.0, 'this': 2.0, 'it': 1.0, 'room': 1.0, '40': 1.0, 'carry': 1.0, 'safe': 1.0, 'is': 4.0, 'more': 2.0, 'the': 1.0, 'child': 1.0, 'lightweight': 1.0, 'my': 1.0, 'fits': 1.0, 'i': 2.0, 'am': 1.0, 'will': 1.0, 'us': 1.0, 'removal': 1.0, 'lot': 1.0, 'trips': 1.0, 'breeze': 1.0, 'would': 1.0, 'only': 1.0, 'its': 1.0, 'harness': 1.0, 'grow': 1.0, 'to': 3.0, 'all': 1.0, 'for': 2.0, 'air': 2.0, 'travel': 2.0, 'installation': 1.0, 'that': 1.0, 'approved': 1.0}
Word element => {'sleep': 1.0, 'comfortable': 1.0, 'more': 1.0, 'been': 1.0, 'think': 1.0, 'wobbling': 1.0, 'just': 1.0, 'head': 1.0, 'her': 1.0, 'harness': 1.0, 'asleep': 1.0, 'daughter': 1.0, 'them': 1.0, 'issues': 1.0, 'any': 1.0, 'to': 6.0, 'not': 3.0, 'approved': 1.0, 'did': 1.0, 'frontier': 1.0, 'strap': 3.0, 'says': 1.0, 'by': 1.0, 'faa': 1.0, 'said': 1.0, 'seat': 2.0, 'in': 5.0, 'have': 3.0, 'plane': 1.0, 'is': 2.0, 'product': 1.0, 'share': 1.0, 'actually': 1.0, 'be': 2.0, 'kansas': 1.0, 'slide': 1.0, 'from': 1.0, 'and': 4.0, 'between': 2.0, 'one': 1.0, 'using': 1.0, 'like': 1.0, 'around': 1.0, 'europe': 1.0, 'will': 1.0, 'missing': 1.0, 'city': 1.0, 'imagine': 1.0, 'a': 7.0, 'we': 1.0, 't': 1.0, 'go': 1.0, 'see': 1.0, 'right': 1.0, 'ways': 1.0, 'don': 1.0, 'flight': 3.0, 'on': 5.0, 'few': 1.0, 'this': 4.0, 'it': 5.0, 'of': 2.0, 'the': 5.0, 'denver': 1.0, 'than': 1.0, 'does': 1.0, 'both': 1.0, 'works': 1.0, 'only': 1.0, 'used': 1.0, 'fell': 1.0, 'attendants': 1.0, 'our': 1.0, 'how': 2.0, 'adjust': 1.0, 'tangle': 1.0, 'worked': 1.0, 'because': 1.0, 'that': 3.0, 'safer': 1.0, 'sort': 1.0, 'great': 1.0, 'option': 1.0, 'who': 1.0, 'obviously': 1.0, 'thus': 1.0, 'car': 3.0, 'disclaimer': 1.0, 'cannot': 1.0, 'relaying': 1.0, 'was': 2.0, 'i': 6.0, 'no': 1.0, 'told': 1.0, 'about': 1.0, 'expertise': 1.0, 'area': 1.0, 'what': 1.0, 'someone': 1.0, 'my': 2.0, 'underneath': 1.0, 'another': 1.0, 'old': 1.0, 'weeks': 1.0, 'would': 5.0, 'out': 1.0, 'concern': 1.0, 'legs': 1.0, 'there': 1.0, '2yr': 1.0, 'catch': 1.0, 'things': 1.0}
Word element => {'for': 1.0, 'security': 1.0, 'maximizecomfort': 1.0, 'will': 1.0, 'strap': 1.0, 'child': 1.0, 'up': 1.0, 'line': 1.0, 'nonejust': 1.0, 'seatcons': 1.0, 'letting': 1.0, 'like': 1.0, 'kid': 1.0, 'on': 2.0, 'your': 3.0, 'installationmakes': 1.0, 'sure': 1.0, 'easy': 1.0, 'bringing': 1.0, 'above': 1.0, 'pros': 1.0, 'family': 1.0, 'from': 1.0, 'sit': 1.0, 'way': 1.0, 'got': 1.0, 'enough': 1.0, 'is': 1.0, 'airplane': 2.0, 'plane': 1.0, 'in': 3.0, 'kiddo': 1.0, 'pro': 1.0, 'the': 12.0, 'him': 1.0, 'be': 2.0, 'minute': 1.0, 'this': 3.0, 'car': 3.0, 'it': 1.0, 'she': 2.0, 'little': 1.0, 'because': 1.0, 'back': 1.0, 'lugging': 1.0, 'by': 1.0, 'just': 2.0, 'one': 2.0, 'two': 1.0, 'i': 4.0, 'was': 1.0, 'actual': 1.0, 'all': 1.0, 'our': 2.0, 'seat': 6.0, 'to': 4.0, 'feel': 1.0, 'big': 1.0, 'and': 1.0, 'too': 1.0, 'us': 1.0, 'when': 1.0, 'additionally': 1.0, 'that': 3.0, 'avoid': 2.0, 'pricedconvenience': 1.0, 'toddler': 1.0, 'adults': 1.0, 'book': 1.0, 'shoulder': 1.0, 'can': 1.0, 'but': 1.0, 'helps': 1.0, 'not': 2.0, 'embarrassment': 1.0, 'tired': 1.0, 'kicking': 1.0, 'use': 1.0, 'front': 2.0, 'her': 2.0, 'separated': 1.0, 'could': 1.0, 's': 2.0, 'suppose': 1.0, '34': 2.0, 'best': 1.0, 'onto': 2.0, 'd': 1.0, 'reasonably': 1.0, 'of': 6.0, 'rather': 1.0}
Word element => {'us': 1.0, 'work': 1.0, 'didn': 1.0, 'with': 1.0, 'wrong': 1.0, 'physically': 1.0, 'there': 1.0, 'since': 1.0, 'stars': 1.0, '2': 1.0, 'but': 1.0, 'flights': 1.0, 'used': 1.0, 'gave': 1.0, 'forcibly': 1.0, 'after': 1.0, 'refused': 1.0, 'family': 1.0, 'for': 4.0, 'first': 1.0, 'working': 1.0, 'landing': 1.0, 'off': 1.0, 'enough': 2.0, 'time': 1.0, 'safe': 1.0, '3': 1.0, 'flight': 1.0, 'on': 2.0, 'outside': 2.0, 'to': 4.0, 'as': 1.0, 'works': 1.0, 'without': 1.0, 'asleep': 1.0, 'great': 1.0, 'your': 1.0, 'any': 1.0, 'feel': 1.0, 'rest': 1.0, 't': 3.0, 'a': 3.0, 'take': 1.0, 'we': 3.0, 'go': 1.0, 'wasn': 2.0, 'nothing': 1.0, 'out': 2.0, 'concerns': 1.0, 'just': 2.0, 'hope': 2.0, 'buckle': 1.0, 'instead': 1.0, 'ebay': 1.0, 'glad': 1.0, 'flat': 1.0, 'son': 2.0, 'product': 1.0, 'year': 1.0, 'his': 2.0, 'from': 1.0, 'this': 3.0, 'contained': 1.0, 'lady': 1.0, 'holding': 1.0, 'rented': 1.0, 'experience': 1.0, 'comfortable': 1.0, 'crotch': 1.0, 'others': 1.0, 'unfortunately': 1.0, 'was': 4.0, 'recommend': 1.0, 'actually': 1.0, 'up': 1.0, 'the': 7.0, 'of': 6.0, 'buying': 1.0, 'in': 1.0, 'seat': 1.0, 'm': 1.0, 'outright': 1.0, 'marks': 1.0, 'and': 6.0, 'old': 1.0, 'i': 3.0, 'stated': 1.0, 'my': 1.0, 'fell': 1.0, 'flies': 1.0, 'our': 4.0, 'item': 1.0, 'strap': 1.0, 'would': 4.0, 'be': 1.0, 'close': 1.0, 'definitely': 1.0, 'again': 1.0, 'car': 1.0, 'keep': 1.0, 'did': 2.0, 'restraint': 1.0, 'that': 1.0, 'more': 1.0, 'convince': 1.0, 'it': 12.0, 'him': 3.0, 'wear': 3.0, 'no': 1.0, 'about': 1.0, 'got': 1.0, 'therefore': 1.0, 'renting': 1.0, 'right': 1.0, 'through': 1.0, 'he': 3.0, 'bottom': 1.0, 'when': 1.0, 'you': 1.0, 'make': 1.0, 'restraints': 1.0, 'left': 1.0, 'reviewers': 1.0, 'neck': 1.0, 'other': 1.0, 'have': 2.0, 'overall': 1.0, 'one': 1.0, 'if': 1.0, 'not': 1.0}
Word element => {'airport': 1.0, 'through': 1.0, 'car': 1.0, 'lug': 1.0, 'not': 1.0, 'have': 2.0, 'glad': 1.0, 'so': 1.0, 'old': 1.0, 'whole': 1.0, 'four': 1.0, 'restraint': 1.0, 'due': 1.0, 'were': 3.0, 'that': 1.0, 'off': 1.0, 'good': 1.0, 'take': 1.0, 'year': 1.0, 'for': 2.0, 'extra': 1.0, 'overall': 1.0, 'happy': 1.0, 'landing': 1.0, 'fall': 1.0, 'more': 1.0, 'harness': 2.0, 'and': 2.0, 'couldn': 1.0, 'get': 1.0, 'with': 1.0, 'thrilled': 1.0, 'on': 2.0, 'flight': 1.0, 'had': 1.0, 'seat': 1.0, 'our': 1.0, 'as': 1.0, 'to': 5.0, 'the': 6.0, 'asleep': 1.0, 'provided': 1.0, 'daughter': 1.0, 'wasn': 1.0, 'it': 2.0, 'she': 2.0, 'wear': 1.0, 'of': 1.0, 'turbulence': 1.0, 'because': 1.0, 'hoping': 1.0, 'in': 1.0, 'we': 3.0, 't': 2.0, 'a': 2.0, 'position': 1.0}
Word element => {'than': 1.0, 'better': 1.0, 'own': 1.0, 'in': 1.0, 'bag': 1.0, 'came': 1.0, 'and': 1.0, 'compact': 1.0, 'that': 1.0, 'carrying': 1.0, 'know': 1.0, 'seat': 2.0, 'its': 1.0, 'was': 3.0, 'to': 1.0, 'through': 1.0, 'all': 1.0, 'have': 1.0, 'small': 1.0, 'so': 1.0, 'definitely': 1.0, 'car': 3.0, 'money': 1.0, 'another': 1.0, 'a': 2.0, 'bought': 1.0, 'i': 4.0, 't': 2.0, 'the': 2.0, 'airport': 1.0, 'sad': 1.0, 'dealing': 1.0, 'but': 2.0, 'we': 1.0, 'never': 1.0, 'even': 1.0, 'used': 2.0, 'with': 1.0, 'this': 1.0, 'wouldn': 1.0, 'it': 4.0, 'didn': 1.0, 'little': 1.0, 'for': 2.0}
Word element => {'flights': 1.0, 'books': 1.0, 'video': 1.0, 'with': 1.0, 'shorter': 1.0, 'child': 1.0, 'is': 1.0, 'adult': 1.0, 'an': 1.0, 'if': 1.0, 'car': 1.0, 'restraints': 1.0, 'trip': 1.0, 'not': 2.0, 'they': 2.0, 'seats': 1.0, 'the': 5.0, 'or': 3.0, 'airlines': 1.0, 'triplet': 1.0, 'their': 2.0, 'were': 1.0, 'that': 1.0, '23': 1.0, 'bought': 1.0, 'adolescent': 1.0, 'grandsons': 1.0, '28': 1.0, 'by': 2.0, 'required': 1.0, 'my': 1.0, 'purchase': 1.0, 'seated': 1.0, 'for': 3.0, 'cares': 1.0, 'parents': 1.0, 'at': 2.0, 'three': 1.0, 'who': 1.0, 'entertain': 1.0, 'lbs': 1.0, 'boys': 1.0, 'neither': 1.0, 'i': 2.0, 'a': 1.0, 'weighed': 1.0, 'accompanied': 1.0, 'and': 2.0, 'of': 1.0, 'necessary': 1.0, 'sister': 1.0, 'never': 1.0, 'would': 1.0, 'used': 1.0, 'recommend': 1.0, 'anyone': 1.0, 'them': 2.0, 'least': 1.0, 'as': 1.0, 'time': 1.0, 'simply': 1.0, 'are': 1.0}
Word element => {'recommended': 1.0, 'her': 1.0, 'both': 2.0, 'they': 2.0, 'will': 1.0, 'his': 1.0, 'board': 1.0, 'nap': 1.0, 'and': 1.0, 'the': 3.0, 'help': 1.0, 'aspect': 1.0, 'if': 1.0, 'flight': 1.0, 'your': 2.0, 'put': 1.0, 'on': 2.0, 'kid': 1.0, 'in': 2.0, 'of': 2.0, 'harness': 1.0, 'do': 1.0, 'its': 2.0, 'highly': 1.0, 'every': 1.0, '2': 1.0, 'most': 1.0, 'off': 2.0, 'safest': 1.0, 'easy': 1.0, 'recommend': 1.0, '1': 1.0, 'great': 1.0, 'comfortable': 1.0, 'one': 1.0, 'readca': 1.0, 'for': 2.0, 'love': 1.0, 'you': 1.0, 'i': 1.0, 'bringing': 1.0, 's': 1.0, 'a': 1.0, 'neck': 1.0, 'own': 1.0, 'pillow': 1.0, 'little': 1.0, 'seat': 2.0, 'as': 1.0, 'need': 1.0, 'it': 1.0, 'this': 1.0}
Word element => {'pounds': 1.0, '33': 2.0, 'was': 2.0, 'we': 1.0, 'appropriate': 1.0, 'would': 1.0, 'though': 1.0, 'guidelines': 1.0, 'size': 1.0, 'note': 1.0, 'otherwise': 1.0, 'old': 1.0, 'downside': 1.0, 'definite': 1.0, 'aware': 1.0, 'be': 2.0, 'tried': 1.0, 'by': 1.0, 'son': 2.0, 'should': 1.0, 'stopped': 1.0, 'out': 1.0, 'putting': 1.0, 'i': 2.0, 'threads': 1.0, '4': 1.0, 'bag': 1.0, 'little': 1.0, 'very': 1.0, 'may': 1.0, 'my': 4.0, 'underneath': 1.0, 'and': 2.0, '1': 2.0, 'install': 1.0, 'about': 2.0, 'purse': 1.0, 'car': 1.0, 'for': 2.0, 'because': 1.0, 'that': 6.0, 'avoid': 1.0, 'bit': 1.0, 'smaller': 1.0, 'use': 1.0, 'red': 2.0, 'convenient': 1.0, 'with': 2.0, 't': 1.0, 'a': 7.0, 's': 5.0, 'once': 1.0, 'comes': 1.0, 'at': 1.0, 'is': 6.0, 'around': 1.0, 'to': 3.0, 'end': 1.0, 'try': 1.0, 're': 2.0, 'if': 4.0, 'check': 1.0, 'lugging': 1.0, 'back': 1.0, 'so': 2.0, 'can': 1.0, 'thing': 1.0, '2': 1.0, 'unusual': 1.0, 'faa': 1.0, 'way': 1.0, 'huge': 1.0, 'tray': 1.0, 'pound': 1.0, 'on': 2.0, 'your': 2.0, 'when': 1.0, 'inevitably': 1.0, 'it': 8.0, 'seatbelt': 1.0, 'this': 6.0, 'carseat': 2.0, 'squiggle': 1.0, 'but': 3.0, 'board': 1.0, 'forming': 1.0, 'seat': 1.0, 'in': 3.0, 'plane': 1.0, 'airplane': 2.0, 'used': 1.0, 'friendly': 1.0, 'trying': 1.0, 'you': 4.0, 'approved': 1.0, 'not': 2.0, 'destination': 1.0, 'fits': 1.0, 'an': 2.0, 'great': 1.0, 'throw': 1.0, 'takes': 1.0, 'start': 1.0, 'seconds': 1.0, 'goes': 1.0, 'strap': 2.0, 'the': 12.0, 'of': 3.0, 'harness': 2.0, 'neighbor': 1.0, '30': 1.0, 'table': 1.0, 'legs': 1.0, 'get': 1.0, 'black': 1.0, 'there': 3.0, 'first': 1.0, 'through': 1.0, 'he': 2.0, 'bottom': 1.0, 'down': 1.0, 'hand': 1.0, 'straps': 1.0, 'age': 1.0, '34': 3.0, 'point': 1.0, 'system': 2.0, 'will': 2.0, 'slipping': 1.0, 'between': 1.0, 'they': 3.0, 'year': 1.0, 'child': 2.0, 'issue': 1.0, 'crafty': 1.0}
Word element => {'friend': 1.0, 'that': 1.0, 'was': 1.0, 'to': 1.0, 'stated': 1.0, 'much': 2.0, 'next': 1.0, 'sitting': 1.0, 'just': 1.0, 'child': 1.0, 'did': 1.0, 'better': 1.0, 'useless': 2.0, 'my': 1.0, 'the': 1.0, 'so': 1.0, 'it': 2.0, 'harness': 1.0, 'without': 1.0, 'effort': 1.0, 'took': 1.0, 'gave': 1.0, 'too': 2.0, 'me': 1.0, 'away': 1.0, 'already': 1.0, 'which': 1.0}
Word element => {'much': 1.0, 'thats': 1.0, 'bucks': 1.0, 'paid': 1.0, 'other': 1.0, 'use': 1.0, 'way': 1.0, 'straps': 1.0, 'right': 1.0, 'didnt': 2.0, 'idea': 1.0, 'no': 1.0, 'watched': 1.0, 'was': 2.0, 'any': 1.0, 'to': 4.0, 'seat': 2.0, 'because': 1.0, 'lug': 1.0, 'too': 1.0, 'and': 5.0, 'get': 1.0, 'me': 1.0, 'wouldnt': 1.0, 'so': 1.0, 'i': 7.0, 'old': 1.0, 'the': 6.0, '80': 1.0, '2': 2.0, 'behind': 1.0, 'guy': 1.0, 'my': 2.0, 'have': 1.0, 'this': 1.0, 'undid': 1.0, 'it': 7.0, 'also': 1.0, 'hour': 1.0, 'video': 1.0, 'is': 1.0, 'asked': 1.0, 'annoyed': 1.0, 'a': 2.0, 'fit': 1.0, 'product': 1.0, 'for': 5.0, 'struggled': 1.0, 'read': 1.0, 'table': 1.0, 'info': 1.0, 'son': 1.0, 'still': 1.0, 'what': 2.0, 'had': 1.0, 'hooked': 1.0, 'flight': 3.0, 'up': 1.0, 'him': 1.0, 'move': 1.0, 'year': 1.0, 'his': 1.0, 'bought': 1.0, 'tray': 1.0, 'big': 1.0, 'install': 1.0, 'car': 1.0, 'attendent': 1.0}
Word element => {'but': 1.0, 'even': 1.0, 'manufacturer': 1.0, 'months': 1.0, 'suggest': 1.0, 'not': 1.0, 'so': 1.0, 'haven': 1.0, 'loosely': 1.0, '18': 2.0, '15': 1.0, 'size': 1.0, 'compare': 1.0, 'd': 1.0, 'somewhat': 1.0, 'short': 1.0, 'petite': 1.0, 'is': 1.0, 'may': 1.0, 'my': 1.0, 'old': 3.0, 'used': 1.0, 'by': 1.0, 'possible': 1.0, 'safe': 1.0, 'keep': 1.0, 'travel': 1.0, 'who': 1.0, 'fit': 1.0, 'belt': 1.0, 't': 2.0, 'reccommendation': 1.0, 'didn': 1.0, 'turned': 1.0, 'it': 3.0, 'like': 1.0, 'seatbelt': 1.0, 'kids': 1.0, 'recessed': 1.0, 'car': 1.0, 'big': 1.0, 'install': 1.0, 'items': 1.0, 'fewer': 1.0, 'anyone': 1.0, 'and': 11.0, 'to': 8.0, 'our': 1.0, 'harness': 3.0, 'only': 1.0, 'time': 1.0, 'her': 1.0, 'smaller': 1.0, 'seat': 2.0, 'in': 3.0, 'luggage': 1.0, 'secure': 1.0, 'carry': 1.0, 'a': 5.0, 'remove': 1.0, 'without': 1.0, 'wants': 1.0, 'toddlers': 1.0, 'up': 1.0, 'ton': 1.0, 'flight': 1.0, 'on': 4.0, 'portable': 1.0, 'any': 2.0, 'your': 1.0, 'checked': 2.0, 'grownups': 1.0, 'i': 7.0, 'have': 4.0, 'able': 2.0, '8': 1.0, 'inside': 1.0, 'thin': 1.0, 'traveled': 1.0, 'year': 2.0, 'child': 2.0, 'harnesses': 1.0, 'their': 3.0, 'table': 2.0, 'easier': 1.0, 'much': 1.0, 'overseas': 2.0, 'for': 2.0, 'seated': 1.0, 'recommend': 1.0, 'were': 3.0, 'with': 2.0, 'drawback': 1.0, 'would': 3.0, 'bulky': 1.0, '2': 4.0, 'these': 1.0, 'some': 1.0, 'made': 1.0, 'off': 1.0, 'own': 2.0, 'was': 5.0, 'jets': 1.0, 'being': 1.0, 'very': 2.0, 'compact': 1.0, 'way': 1.0, 'than': 1.0, '6': 1.0, 'politely': 1.0, 'safely': 1.0, 'umbrella': 1.0, 'folded': 1.0, 'sit': 1.0, 'when': 2.0, 'light': 1.0, 'bag': 1.0, 'waited': 1.0, 'under': 1.0, 'month': 1.0, 'felt': 1.0, 'super': 1.0, 'found': 1.0, 'easy': 1.0, 'little': 1.0, 'beneath': 1.0, 'problems': 1.0, 'that': 4.0, '3': 1.0, 'older': 1.0, 'tray': 3.0, 'back': 1.0, 'as': 2.0, 'bags': 2.0, 'unable': 1.0, 'the': 15.0, 'of': 2.0, 'person': 1.0, 'be': 1.0, 'we': 8.0, 'moving': 1.0, 'then': 1.0, 'still': 1.0, 'if': 2.0, 'asked': 1.0, 'around': 1.0, 'they': 1.0, 'this': 3.0, 'highly': 1.0, 'minded': 1.0, 'seats': 1.0, 'placed': 1.0, 'sign': 1.0}
Word element => {'flying': 1.0, 'for': 1.0, 'great': 1.0, 'sure': 1.0, 'am': 1.0, 'special': 1.0, 'screamed': 1.0, 'needs': 1.0, 'on': 2.0, 'son': 1.0, 'work': 1.0, 'but': 1.0, 'to': 1.0, 'we': 2.0, 'other': 1.0, 'use': 1.0, 'got': 1.0, 'our': 1.0, 'vacation': 1.0, 'when': 1.0, 'i': 1.0, 'putting': 1.0, 'tried': 1.0, 'with': 1.0, 'this': 1.0, 'children': 1.0, 'it': 2.0, 'would': 1.0, 'him': 1.0, 'at': 1.0, 'home': 1.0}
Word element => {'been': 1.0, 'rehersal': 1.0, 'even': 1.0, 'took': 1.0, 'work': 1.0, 'deciding': 1.0, 'factor': 1.0, 'key': 1.0, 'red': 1.0, 'doubt': 1.0, 'short': 1.0, 'for': 3.0, 'great': 1.0, 'without': 1.0, 'airplane': 1.0, 'airport': 1.0, 'through': 1.0, 'going': 2.0, 'return': 1.0, 'tried': 1.0, 'easy': 1.0, 'bit': 1.0, 'your': 1.0, 'probably': 1.0, 'idea': 2.0, 'good': 2.0, 'wasn': 1.0, 'all': 2.0, 'boarding': 1.0, 'easier': 1.0, 'right': 1.0, 'new': 1.0, 'beforehand': 1.0, 'say': 1.0, 'experience': 1.0, 'will': 1.0, 'could': 2.0, 'lugging': 1.0, 'parked': 1.0, 'just': 1.0, 'not': 2.0, 'car': 3.0, 'chance': 1.0, 'should': 2.0, 'something': 1.0, 'straps': 1.0, 'content': 1.0, 'reasonably': 2.0, 'flights': 1.0, 'down': 1.0, 'given': 1.0, 'settled': 2.0, 'improvements': 1.0, 'used': 1.0, 'toy': 1.0, 'meal': 1.0, 'lot': 1.0, 'happy': 1.0, 'son': 3.0, 'approval': 1.0, 'retrospect': 1.0, 'cares': 5.0, 'parental': 1.0, 'faa': 1.0, 'quality': 1.0, 'but': 3.0, 'process': 1.0, '2': 1.0, 'is': 5.0, 'd': 3.0, 'are': 1.0, 'our': 4.0, 'in': 8.0, 'seat': 5.0, 'as': 1.0, 'lower': 1.0, 'construction': 1.0, 'upset': 1.0, 'here': 1.0, 'system': 5.0, 'possible': 1.0, 'slid': 1.0, 'initial': 1.0, 'wonderful': 1.0, 'old': 1.0, 'with': 3.0, 'of': 3.0, 'the': 24.0, 'dc': 1.0, 'were': 1.0, 'pretty': 1.0, 'to': 8.0, 'high': 1.0, 'that': 2.0, 'initially': 1.0, 'boston': 1.0, 'fly': 1.0, 'mostly': 1.0, 'eye': 1.0, '5': 1.0, 'before': 2.0, 'jetblue': 3.0, 'we': 8.0, 'advance': 1.0, 'maybe': 1.0, 's': 2.0, 'imagine': 1.0, 'a': 11.0, 'introducing': 1.0, 'excellent': 1.0, 'excitement': 1.0, 'had': 1.0, 'whether': 1.0, 'impressions': 1.0, 'and': 7.0, 'trip': 2.0, 'like': 1.0, 'bought': 1.0, 'able': 1.0, 'also': 1.0, 'us': 1.0, 'restraint': 4.0, 'child': 1.0, 'price': 2.0, 'year': 1.0, 'from': 1.0, 'while': 2.0, 'washington': 1.0, 'tray': 1.0, 'after': 2.0, 'went': 1.0, 'sleep': 1.0, 'back': 1.0, 'so': 5.0, 'didn': 2.0, 'costly': 1.0, 'folks': 1.0, 'web': 1.0, 'trips': 1.0, 'site': 1.0, 'long': 1.0, 'on': 3.0, 'flight': 3.0, 'strap': 4.0, 'crew': 1.0, 'let': 2.0, 'no': 2.0, 'driving': 1.0, 'behind': 1.0, 'about': 1.0, 'or': 2.0, 'concerns': 1.0, 'out': 2.0, 'lug': 1.0, 'him': 5.0, 'it': 5.0, 'was': 5.0, 't': 3.0, 'belt': 1.0, 'minutes': 1.0, 'others': 1.0, 'some': 2.0, 'plane': 1.0, 'have': 5.0, 'well': 2.0, 'i': 3.0, 'inconvenience': 1.0, 'pointed': 1.0, 'get': 2.0, 'legs': 2.0, 'temperment': 1.0, 'there': 1.0, 'between': 2.0, 'he': 5.0, 'acknowledges': 1.0, 'would': 2.0, 'lap': 1.0, 'still': 1.0, 'course': 1.0, 'if': 1.0, 'under': 2.0, 'tears': 1.0}
Word element => {'travel': 1.0, 'worth': 1.0, 'moneys': 1.0, 'definitely': 1.0, 'you': 2.0, 'years': 1.0, 'be': 1.0, 'highly': 1.0, 'nothing': 1.0, 'bag': 1.0, '5': 1.0, 'room': 1.0, 'took': 1.0, 'will': 1.0, 'also': 1.0, 'them': 1.0, 'up': 2.0, 'reminder': 1.0, 'so': 2.0, 'once': 1.0, 'of': 1.0, 'out': 1.0, 'they': 2.0, 'if': 1.0, 'being': 1.0, 'this': 1.0, 'kids': 1.0, 'found': 1.0, 'belts': 1.0, 'know': 1.0, 'like': 3.0, 'to': 4.0, 'had': 1.0, 'twin': 1.0, 'great': 1.0, 'adjustable': 2.0, 'with': 1.0, 'only': 2.0, 'your': 1.0, 'on': 1.0, 'i': 5.0, 'old': 2.0, 'by': 1.0, 'just': 1.0, 'those': 1.0, 'not': 1.0, 'used': 2.0, 'back': 1.0, 'can': 2.0, '2': 1.0, 'but': 2.0, 'florida': 1.0, 'and': 6.0, 'the': 6.0, 'myself': 1.0, 'it': 7.0, 'seatbelt': 2.0, 'from': 1.0, 'year': 2.0, 'little': 1.0, 'very': 2.0, 'carseat': 2.0, 'came': 1.0, 'cares': 1.0, 'my': 3.0, 'tight': 1.0, 'half': 1.0, 'girls': 2.0, 'get': 3.0, 'easy': 1.0, 'product': 1.0, 'assemble': 1.0, 'recommend': 1.0, 'was': 6.0, 'doesn': 1.0, 'belt': 1.0, 'weighs': 1.0, 'kept': 1.0, 'plane': 1.0, 'in': 3.0, 'problem': 1.0, 'that': 2.0, 'enough': 2.0, 'a': 4.0, 't': 2.0, 's': 1.0}
Word element => {'upright': 1.0, 'shoulders': 1.0, 'her': 1.0, 'my': 1.0, 'held': 1.0, 'first': 1.0, 'during': 1.0, 'have': 1.0, 'nice': 1.0, 'm': 1.0, 'differently': 1.0, 'book': 1.0, 'rule': 1.0, 'since': 1.0, 'interpret': 1.0, 'one': 1.0, 'then': 1.0, 'even': 1.0, 'so': 1.0, 'packing': 1.0, 'forbid': 1.0, 'before': 1.0, 'your': 1.0, 'on': 2.0, 'setting': 1.0, 'and': 3.0, 'was': 4.0, 'i': 4.0, 'flight': 3.0, 'up': 2.0, 'year': 2.0, 'by': 2.0, 'she': 1.0, 'it': 5.0, 'this': 1.0, 'with': 1.0, 'were': 1.0, 'that': 1.0, 'item': 1.0, 'the': 7.0, 'plane': 1.0, '2': 2.0, 'but': 1.0, 'use': 3.0, 'continental': 1.0, 'stars': 1.0, 'for': 1.0, 'could': 1.0, 'might': 1.0, 'ago': 1.0, 'we': 1.0, 'going': 1.0, 'a': 1.0, 'allowed': 1.0, 'check': 1.0, 'second': 1.0, 'of': 3.0, 'leg': 2.0, 'approached': 1.0, 'told': 1.0, 'its': 1.0, 'airline': 4.0, 'staff': 2.0, 'car': 1.0, 'sleep': 1.0, 'to': 4.0, 'as': 1.0, 'our': 2.0, 'seat': 1.0, 'any': 1.0, 'old': 1.0, 'non': 1.0, 'not': 1.0, 'approved': 1.0, 'restraint': 1.0, 'system': 1.0, 'giving': 1.0, 'be': 1.0, 'sure': 1.0}
Word element => {'recalled': 1.0, 'hasn': 1.0, 'i': 1.0, 'safety': 1.0, 'children': 1.0, 'heavily': 1.0, 'monitored': 1.0, 'chest': 1.0, 'get': 1.0, 'an': 1.0, 'in': 1.0, 'effort': 1.0, 'down': 1.0, 'chock': 1.0, 'can': 2.0, 'car': 1.0, 'between': 1.0, 'out': 1.0, 'japan': 1.0, 'slide': 1.0, 'from': 1.0, 'very': 1.0, 'believe': 1.0, 'the': 6.0, 'themselves': 1.0, 'legs': 1.0, 'requirements': 1.0, 'child': 1.0, 'flight': 1.0, 'since': 1.0, 'with': 1.0, 'this': 4.0, 'used': 1.0, 'listed': 1.0, 'not': 2.0, 'purchased': 1.0, 'my': 1.0, 'purchase': 1.0, 'us': 1.0, 'by': 1.0, 'on': 2.0, 'your': 1.0, 'across': 1.0, 'description': 1.0, 'and': 2.0, 'meats': 1.0, 'toddler': 4.0, 'product': 1.0, 'for': 3.0, 'effective': 1.0, 'as': 2.0, 'seat': 1.0, 'our': 1.0, 'to': 3.0, 'all': 1.0, 'size': 1.0, 'lack': 1.0, 'recently': 1.0, 'better': 1.0, 'of': 1.0, 'there': 1.0, 'do': 1.0, 'harness': 1.0, 'products': 1.0, 'tuned': 1.0, 'been': 1.0, 'into': 1.0, 'choking': 1.0, 'like': 1.0, 'manufacturer': 1.0, 'device': 1.0, 'is': 1.0, 'no': 1.0, 'are': 1.0, 'normal': 1.0, 'strap': 2.0, 't': 1.0, 's': 2.0, 'a': 4.0, 'we': 1.0, 'go': 1.0}
Word element => {'happy': 1.0, 're': 1.0, 'gripe': 1.0, 'the': 2.0, 'planes': 1.0, 'belt': 2.0, 'don': 1.0, 'my': 1.0, 'adults': 1.0, 'one': 1.0, 'i': 1.0, 'have': 2.0, 'snug': 1.0, 'restraints': 1.0, 'very': 2.0, 'why': 1.0, 'and': 4.0, 'never': 1.0, 'better': 1.0, 'if': 2.0, 'seems': 1.0, 'lap': 1.0, 'that': 1.0, 'kids': 1.0, 'is': 4.0, 'portable': 1.0, 'on': 1.0, 'your': 1.0, 'they': 1.0, 'understood': 1.0, 'toddler': 1.0, 'artist': 1.0, 'an': 1.0, 'we': 1.0, 't': 1.0, 'a': 1.0, 'sliding': 1.0, 'can': 1.0, 'from': 1.0, 'slide': 1.0, 'out': 1.0, 'below': 1.0, 'durable': 1.0, 'yes': 1.0, 'issue': 1.0, 'overall': 1.0, 'escape': 1.0, 'even': 1.0, 'not': 1.0, 'simple': 1.0}
Word element => {'dr': 1.0, 'seats': 1.0, 'something': 1.0, 'drive': 1.0, 'even': 1.0, 'single': 1.0, 'exchange': 1.0, 'store': 1.0, 'us': 1.0, 'more': 1.0, 'dealbreakers': 1.0, 'issues': 1.0, 'families': 2.0, 'really': 1.0, 'easier': 1.0, 'clean': 1.0, 'upholstery': 1.0, 'padding': 1.0, 'very': 1.0, 'does': 1.0, 'camry': 1.0, 'backseat': 1.0, 'children': 2.0, 'flimsy': 1.0, 'three': 2.0, 'however': 1.0, 'bit': 1.0, 'sturdily': 1.0, 'as': 2.0, 'to': 5.0, 'our': 2.0, 'great': 1.0, 'flaws': 1.0, 'this': 4.0, 'sedan': 1.0, 'turbobooster': 2.0, 'two': 1.0, 'nice': 3.0, 'is': 3.0, 'look': 1.0, 'overall': 1.0, 'full': 1.0, 'together': 1.0, '4': 1.0, 'booster': 5.0, 'pull': 1.0, 'a': 10.0, 'middle': 1.0, 'has': 2.0, 'cars': 1.0, 'grey': 1.0, 'enough': 1.0, 'seems': 2.0, 'connect': 1.0, 'seat': 2.0, 'in': 4.0, '1': 1.0, 'colored': 1.0, 'some': 1.0, 'my': 1.0, 'may': 1.0, 'the': 13.0, 'of': 6.0, 'for': 6.0, 'fabric': 1.0, 'be': 5.0, 'trying': 1.0, 'bought': 1.0, 'lot': 1.0, 'one': 3.0, 'when': 2.0, 'you': 4.0, 'got': 1.0, 'safety': 1.0, 'it': 6.0, 'cosco': 1.0, 'child': 2.0, 'sound': 1.0, 'out': 2.0, 'like': 3.0, 'with': 2.0, 'width': 2.0, '17': 1.0, 'box': 1.0, 'and': 2.0, 'doesn': 2.0, 'fit': 1.0, 't': 2.0, 'belt': 1.0, 'back': 2.0, 'but': 3.0, '2': 1.0, 'so': 1.0, 'can': 1.0, 'on': 3.0, '3': 1.0, 'while': 1.0, 'use': 1.0, 'sealt': 1.0, 'are': 2.0, 'positioners': 1.0, 'would': 4.0, 'either': 1.0, 'which': 2.0, 'side': 3.0, 'only': 2.0, 'put': 2.0, 'much': 2.0, 'i': 2.0, 'cupholder': 3.0, 'will': 1.0, 'means': 1.0, 'if': 1.0, 'going': 1.0, 'drivers': 1.0, 'have': 2.0, 'room': 1.0, 'including': 1.0, 'ours': 1.0, 'inches': 1.0, 'inch': 2.0, 'unless': 1.0, 'wider': 1.0, 'than': 3.0, 'other': 1.0, 'graco': 2.0, 'not': 2.0, 'makes': 1.0, 'or': 1.0, 'world': 1.0, 'we': 1.0, 'difference': 1.0}
Word element => {'ve': 1.0, 'ok': 1.0, 'told': 1.0, 'not': 1.0, 'stringent': 1.0, 'be': 1.0, 'unbuckle': 2.0, 'have': 1.0, 'overall': 1.0, 'issue': 1.0, 'color': 1.0, 'happy': 1.0, 'really': 1.0, 'enough': 1.0, 'is': 1.0, 'her': 2.0, 'pleased': 1.0, 'used': 1.0, 'outgrown': 1.0, 'product': 1.0, 'fit': 1.0, 'for': 1.0, 'the': 5.0, 'she': 7.0, 'it': 2.0, 'car': 2.0, 'this': 2.0, '30': 1.0, 'until': 1.0, '1': 2.0, 'tall': 1.0, 'and': 1.0, 'perfectly': 1.0, 'only': 1.0, 'granddaughter': 1.0, 'had': 3.0, 'ensuring': 1.0, 'seat': 4.0, 'to': 4.0, 'belt': 1.0, 'was': 3.0, 'on': 1.0, 'i': 6.0, 'pounds': 1.0, 'understood': 1.0, 'ordered': 1.0, 'who': 1.0, 'at': 1.0, 'line': 1.0, 'booster': 1.0, '35': 1.0, 'very': 1.0, 'inches': 1.0, 'been': 1.0, 'that': 3.0, 'other': 1.0, 'seats': 1.0, 'my': 1.0, 'fits': 1.0, 'concerned': 1.0, 'regular': 1.0, 'in': 2.0, 'wasn': 2.0, 'bold': 1.0, 'with': 2.0, 'pink': 1.0, 't': 2.0, 's': 1.0, 'can': 1.0, '2': 3.0, 'but': 1.0}
Word element => {'child': 1.0, 'adjustable': 1.0, 'also': 1.0, 'is': 1.0, 'seat': 2.0, 'booster': 1.0, 'assembly': 1.0, 'this': 1.0, 'was': 1.0, 'belt': 1.0, 'delivered': 1.0, 'promptly': 1.0, 'easy': 1.0, 'grows': 1.0, 'as': 1.0, 'and': 1.0, 'position': 1.0, 'installation': 1.0, 'went': 1.0, 'to': 1.0, 'product': 1.0, 'smoothly': 1.0}
Word element => {'last': 1.0, 'will': 1.0, 'but': 1.0, 'caused': 1.0, 'which': 1.0, 'always': 1.0, 'have': 1.0, 'if': 1.0, 'out': 2.0, 'buying': 1.0, 'piece': 1.0, 'with': 1.0, 'problem': 1.0, 'room': 1.0, 'up': 1.0, 'take': 2.0, 'simple': 1.0, 'him': 1.0, 'product': 1.0, 'for': 1.0, 'one': 2.0, 'buy': 1.0, 'fell': 1.0, 'it': 5.0, 'this': 2.0, 'use': 2.0, 'got': 1.0, 'born': 1.0, 'finally': 1.0, 'shower': 1.0, 'of': 2.0, 'kneeling': 1.0, 'during': 1.0, 't': 1.0, 'a': 3.0, 'we': 2.0, 'after': 1.0, 'doesn': 1.0, 'recommend': 1.0, 'was': 1.0, 'husband': 1.0, 'split': 2.0, 'constant': 1.0, 'tub': 1.0, 'would': 1.0, 'new': 1.0, 'guard': 2.0, '2005': 1.0, 'years': 2.0, 'door': 1.0, 'pleasant': 1.0, 'foam': 1.0, 'elbow': 1.0, 'in': 1.0, 'daughter': 1.0, 'back': 1.0, 'hopefully': 1.0, 'another': 2.0, 'eventually': 1.0, 'my': 2.0, '4': 2.0, 'i': 3.0, 'really': 1.0, 'because': 1.0, 'does': 1.0, 'had': 1.0, 'what': 1.0, 'bath': 1.0, 'make': 1.0, 'am': 1.0, 'you': 2.0, 'when': 1.0, 'times': 1.0, 'is': 2.0, 'asked': 1.0, 'more': 1.0, 'the': 4.0, 'only': 1.0, 'much': 1.0, 'do': 1.0, 'and': 2.0, 'track': 1.0, 'me': 1.0, 'any': 1.0, 'to': 1.0, 'as': 1.0, 'has': 1.0, 'well': 1.0, 'splitting': 1.0, 'since': 1.0, 'that': 3.0}
Word element => {'stairway': 1.0, 'side': 1.0, 'very': 1.0, 'each': 1.0, 'the': 2.0, 'on': 1.0, 'is': 1.0, 'room': 1.0, 'gate': 1.0, 'wonderful': 1.0, 'of': 2.0, 'to': 1.0, 'leaves': 1.0, 'plenty': 1.0, 'safe': 1.0, 'easy': 1.0, 'use': 1.0}
Word element => {'review': 1.0, 'edit': 1.0, 'recommend': 1.0, 'wrong': 1.0, 'anymore': 1.0, 'goes': 1.0, 'something': 1.0, 'before': 1.0, 'closer': 1.0, 'jumping': 1.0, 'okay': 1.0, 'be': 1.0, 'going': 2.0, 'just': 1.0, 'now': 1.0, 'been': 1.0, 'up': 3.0, 'after': 1.0, 'used': 1.0, 'move': 1.0, 'step': 1.0, 'doesn': 1.0, 'ledge': 1.0, 'would': 1.0, 'properly': 1.0, 'close': 1.0, 'as': 2.0, 'exactly': 1.0, 'but': 1.0, 'need': 1.0, 'cat': 1.0, 'when': 1.0, 'what': 1.0, 'does': 1.0, 'onto': 1.0, 'wanted': 1.0, 'stars': 1.0, '4': 1.0, 'give': 1.0, 'working': 1.0, 'get': 2.0, 'minutes': 1.0, 'husband': 3.0, 'took': 1.0, 'two': 1.0, 'gate': 1.0, 'from': 1.0, 'skip': 1.0, 'pressure': 1.0, 'for': 4.0, 'watch': 1.0, 'through': 1.0, 'installed': 3.0, 'top': 2.0, 'back': 2.0, 'on': 4.0, '33': 2.0, 'my': 7.0, 'ancor': 1.0, 'over': 2.0, 'open': 2.0, 'work': 1.0, 'money': 1.0, 't': 4.0, 'we': 4.0, 'without': 1.0, 'stairs': 3.0, 'a': 6.0, 'small': 1.0, 'have': 5.0, 'about': 2.0, 'walk': 2.0, 'thing': 1.0, 'gates': 2.0, 'is': 2.0, 'comes': 1.0, 'want': 2.0, 'if': 2.0, 'well': 2.0, 'i': 13.0, 'returned': 1.0, 'return': 1.0, 'pushed': 1.0, '35': 1.0, 'old': 1.0, 'makes': 2.0, 'seem': 1.0, 'ordering': 1.0, 'seconds': 1.0, 'didn': 3.0, 'daughter': 1.0, 'got': 3.0, 'sided': 1.0, 'and': 23.0, 'quite': 1.0, 'its': 1.0, 'extention': 1.0, 'mount': 1.0, 'options': 1.0, 'seems': 1.0, 'climb': 1.0, 'yes': 1.0, 'held': 1.0, 'too': 1.0, 'lot': 2.0, 'space': 1.0, 'our': 1.0, 'he': 1.0, 'bottom': 1.0, 'down': 3.0, 'the': 12.0, 'of': 6.0, 'hold': 1.0, 'spend': 1.0, 'big': 1.0, 'curve': 1.0, 'install': 2.0, 'latch': 1.0, 'tired': 1.0, 'using': 1.0, 'science': 1.0, 'reason': 1.0, 'having': 1.0, 'some': 2.0, 'fall': 1.0, 'because': 2.0, 'that': 3.0, 'into': 1.0, 'with': 3.0, 'it': 21.0, 'same': 1.0, 'month': 2.0, 'anyway': 1.0, 'few': 2.0, 'this': 3.0, 'te': 1.0, 'was': 2.0, 'out': 2.0, '18': 1.0, 'easy': 3.0, 'things': 1.0, 'you': 4.0, 'screw': 1.0, '30': 1.0, 'right': 2.0, 'pulled': 1.0, 'to': 17.0, 'straight': 1.0, 'drywall': 1.0, 'm': 1.0, 'in': 1.0, 'they': 1.0, 'will': 2.0, 'come': 2.0, 'thats': 1.0, 'not': 3.0, 'both': 1.0, 'rocket': 1.0, 'do': 3.0, '34': 1.0, 'crappy': 1.0, 'walls': 1.0, 'can': 4.0, 'so': 3.0, 'townhouse': 1.0, 'screws': 2.0, 'had': 1.0, 'template': 1.0, 'very': 1.0}
Word element => {'had': 1.0, 've': 1.0, 'top': 1.0, 'part': 1.0, 'bottom': 1.0, 'picture': 1.0, 'can': 1.0, 'as': 1.0, 'to': 1.0, 'nice': 1.0, 'cute': 2.0, 'see': 1.0, 'print': 1.0, 'always': 1.0, 'products': 1.0, 'very': 1.0, 'starting': 1.0, 'and': 3.0, 'area': 1.0, 'get': 1.0, 'for': 1.0, 'love': 1.0, 'just': 1.0, 'because': 1.0, 'their': 1.0, 'months': 1.0, 'one': 1.0, 'bought': 1.0, 'are': 1.0, 'dwell': 1.0, 'space': 1.0, 'this': 2.0, 'zipper': 1.0, 'sale': 1.0, 'it': 3.0, 'is': 3.0, 'owl': 1.0, '3': 1.0, 'on': 2.0, 'won': 1.0, 'i': 5.0, '4': 1.0, 'studio': 1.0, 'yellow': 1.0, 'was': 2.0, 'bottle': 1.0, 'so': 2.0, 'update': 1.0, 't': 1.0, 'the': 3.0, 'take': 1.0, 'bag': 1.0, 'only': 1.0, 'slim': 1.0, 'much': 1.0, 'in': 2.0, 'disappointed': 1.0, 'how': 1.0, 'noticed': 1.0, 'compliments': 1.0, '20': 1.0, 'my': 1.0, '12i': 1.0, 'you': 1.0, 'when': 1.0, 'holder': 1.0}
Word element => {'why': 1.0, 're': 1.0, 'fantastic': 1.0, 'you': 1.0, 'really': 2.0, 'unreasonable': 1.0, 'paying': 1.0, 'simple': 1.0, 'admittedly': 1.0, 'there': 1.0, 'then': 1.0, 'versatile': 1.0, 'much': 1.0, 'would': 1.0, 'convenient': 1.0, 'with': 1.0, 'interfere': 1.0, 'wouldn': 1.0, 'at': 1.0, 'top': 1.0, 'handle': 1.0, 'unisex': 1.0, 'than': 1.0, 'missing': 1.0, 'also': 1.0, 'blessedly': 1.0, 'high': 2.0, 'such': 1.0, 'some': 1.0, 'hours': 1.0, 'longer': 1.0, 'this': 2.0, 'marks': 1.0, '4': 1.0, 'i': 2.0, 'the': 5.0, 'but': 4.0, 'sleek': 1.0, 'print': 1.0, 'compliments': 1.0, 'get': 1.0, 'and': 6.0, 'out': 1.0, 'couple': 1.0, 'gets': 1.0, 'not': 1.0, 'give': 1.0, 'style': 1.0, 'very': 2.0, 'stars': 1.0, 'product': 2.0, 'for': 5.0, 'bottle': 2.0, 'time': 1.0, '3': 1.0, 'make': 1.0, 'on': 1.0, 'your': 1.0, 'looks': 2.0, 'it': 8.0, 'loses': 1.0, 't': 1.0, 's': 3.0, 'a': 3.0, 'price': 1.0, 'fun': 1.0, 'points': 1.0, 'sophisticated': 1.0, 'function': 1.0, 'design': 1.0, 'keeps': 1.0, 'cold': 1.0, 'insulator': 1.0, 'bottles': 1.0, 'pretty': 1.0, 'warm': 1.0, 'of': 1.0, 'plus': 1.0, 'all': 1.0, 'any': 1.0, 'that': 2.0, 'more': 1.0, 'is': 1.0, 'comes': 1.0}
Word element => {'tag': 1.0, 'price': 1.0, 'more': 1.0, 'something': 1.0, 'out': 1.0, 'picked': 1.0, 'baby': 1.0, 'with': 2.0, 'be': 2.0, 'roomy': 1.0, 'studio': 1.0, 'doubt': 1.0, 'the': 3.0, 'canvas': 1.0, 'look': 1.0, 'overstuffed': 1.0, 'dwell': 1.0, 'no': 1.0, 'as': 2.0, 'and': 2.0, 'empty': 1.0, 'do': 1.0, 'not': 1.0, 'yielding': 1.0, 'of': 1.0, 'packed': 1.0, 'overall': 1.0, 'bag': 2.0, 'i': 5.0, 'which': 1.0, 'will': 1.0, 'but': 2.0, 'it': 6.0, 'looks': 2.0, 'makes': 1.0, 'love': 2.0, 'for': 1.0, 'effect': 1.0, 'essentials': 1.0, 'stiff': 1.0, 'person': 1.0, 'cute': 1.0, 'chic': 1.0, 'this': 2.0, 'waxed': 1.0, 'wish': 1.0, 'lesser': 1.0, 'have': 2.0, 'when': 2.0, 'waterproofing': 1.0, 'seen': 1.0, 's': 3.0, 'could': 2.0, 'a': 2.0, 'might': 1.0}
Word element => {'pocket': 1.0, 'in': 1.0, 'putting': 1.0, 'animal': 1.0, 'right': 2.0, 'honing': 1.0, 'is': 1.0, 'animals': 1.0, '5': 1.0, 'skills': 1.0, 'abc': 1.0, 'age': 1.0, 'two': 1.0, 'to': 1.0, 'younger': 1.0, 'loves': 1.0, 'by': 1.0, 'gave': 1.0, 'sons': 1.0, 'and': 2.0, 'older': 1.0, 'this': 1.0, 'it': 1.0, 'sister': 1.0, 'mos': 1.0, 'my': 3.0, '2': 1.0, 'the': 4.0, 'they': 1.0, 'his': 1.0, 'both': 1.0, 'little': 1.0, 'love': 1.0, 'one': 2.0, '8': 1.0, 'all': 1.0}
Word element => {'in': 1.0, 'up': 1.0, 'little': 1.0, 'this': 1.0, 'excited': 1.0, 'm': 1.0, 'a': 1.0, 'go': 1.0, 'here': 1.0, 'i': 2.0, 'cuddle': 1.0, 'heard': 1.0, 'boy': 1.0, 'isn': 1.0, 'cute': 2.0, 'so': 1.0, 'towel': 1.0, 'bedding': 1.0, 'baby': 1.0, 'oh': 1.0, 'and': 1.0, 'my': 2.0, 'for': 1.0, 'yet': 1.0, 'are': 1.0, 't': 1.0, 'the': 1.0, 'but': 1.0, 'must': 1.0, 'from': 1.0, 'matches': 1.0, 'to': 2.0, 'towels': 1.0, 'what': 1.0, 'hooded': 1.0, 'way': 1.0}
Word element => {'different': 1.0, 'buy': 1.0, 'towel': 1.0, 'in': 2.0, 'fast': 1.0, 'dries': 1.0, 'cozy': 1.0, 'will': 1.0, 'seems': 1.0, 'he': 1.0, 'stores': 1.0, 'off': 1.0, 'cover': 1.0, 'infant': 1.0, 'and': 1.0, 'too': 1.0, 'x': 1.0, 'designs': 1.0, 'from': 1.0, 'were': 1.0, 'to': 1.0, 'had': 1.0, 'i': 4.0, 'old': 1.0, 'tried': 1.0, 'small': 1.0, 'so': 1.0, 'my': 1.0, 'inches': 1.0, 'little': 1.0, 'month': 1.0, 'it': 3.0, 'for': 1.0, 'liked': 1.0, 'bought': 1.0, 'one': 1.0, 'him': 1.0, 'towels': 3.0, '9': 1.0, 'hooded': 1.0, 'like': 1.0, 'out': 1.0, 'made': 1.0, 'because': 1.0, 'those': 2.0, 'not': 1.0, 'larger': 1.0, 'large': 1.0, 'son': 1.0, 'measurements': 1.0, 'more': 1.0, 'is': 2.0, 'the': 1.0, '30': 2.0, 'this': 3.0, 'perfect': 1.0, 'size': 1.0, 'cheaply': 1.0, 'nice': 1.0, 'quality': 1.0, 'character': 1.0, 'chain': 1.0}
Word element => {'too': 1.0, 'adorable': 1.0, 'time': 1.0, 'some': 1.0, 'quite': 1.0, 'to': 1.0, 'will': 1.0, 'size': 1.0, 'use': 1.0, 'decent': 1.0, 'and': 1.0, 'able': 1.0, '8': 1.0, 'we': 2.0, 'love': 1.0, 'for': 2.0, 'month': 1.0, 'infant': 1.0, 'he': 1.0, 'it': 2.0, 'this': 2.0, 'my': 1.0, 'out': 1.0, 'made': 1.0, 'be': 1.0, 'bought': 1.0, 'old': 1.0, 'i': 1.0, 'the': 2.0, 'ones': 1.0, 'grew': 1.0, 'is': 2.0, 'pattern': 1.0, 'soft': 1.0, 'a': 1.0, 'since': 1.0, 'well': 1.0}
Word element => {'it': 1.0, 'as': 2.0, 'son': 1.0, 'to': 1.0, 'likes': 1.0, 'able': 1.0, 'been': 1.0, 'hope': 1.0, 'much': 1.0, 'sold': 1.0, 'in': 1.0, 'haven': 1.0, 'blanket': 2.0, 'i': 3.0, 't': 1.0, 'red': 1.0, 'the': 3.0, 'action': 1.0, 'see': 1.0, 'bright': 1.0, 'soft': 1.0, 'colors': 1.0, 'super': 1.0, 'do': 1.0, 'and': 1.0, 'me': 1.0, 'although': 1.0, 'our': 1.0, 'that': 1.0}
Word element => {'lineup': 1.0, 'into': 1.0, 'play': 1.0, 'the': 1.0, 't': 1.0, 'as': 1.0, 'son': 1.0, 'never': 1.0, 'way': 1.0, 's': 1.0, 'tags': 1.0, 'my': 1.0, 'are': 1.0, 'toy': 1.0, 'make': 1.0, 'enough': 1.0, 'fine': 1.0, 'soft': 1.0, 'it': 3.0, 'with': 1.0, 'advertised': 1.0, 'just': 1.0, 'didn': 1.0, 'wanted': 1.0, 'to': 1.0, 'its': 1.0}
Word element => {'buy': 1.0, 'good': 1.0, 'overall': 1.0, 'or': 1.0, 'him': 1.0, 'to': 1.0, 'was': 4.0, 'took': 1.0, 'i': 2.0, 'slow': 1.0, 'he': 2.0, 'only': 2.0, 'it': 3.0, 'hours': 1.0, 'for': 3.0, 'is': 1.0, 'son': 1.0, 'are': 1.0, 'the': 7.0, 'nipple': 2.0, 'a': 2.0, 'we': 1.0, 't': 1.0, 'flies': 1.0, 'unless': 1.0, 'top': 1.0, 'complaint': 1.0, 'wide': 1.0, 'out': 2.0, 'breastfed': 1.0, 'who': 1.0, 'right': 2.0, 'away': 1.0, 'that': 1.0, 'sometimes': 1.0, 'few': 1.0, 'just': 2.0, 'like': 1.0, 'know': 1.0, 'of': 1.0, 'my': 1.0, 'starts': 1.0, 'choking': 1.0, 'flow': 1.0, 'bottle': 2.0, 'so': 1.0, 'don': 1.0, 'if': 2.0, 'and': 2.0, 'milk': 1.0, 'too': 1.0, 'fast': 1.0}
Word element => {'fantastic': 1.0, 'buggy': 1.0, 'mountain': 1.0, 'thanks': 1.0, 'totally': 1.0, 'he': 1.0, 'perego': 1.0, 'peg': 1.0, 't': 1.0, 'won': 1.0, 'and': 6.0, 'crowded': 1.0, 'is': 4.0, 'breeze': 2.0, 'a': 5.0, 'could': 1.0, 'go': 3.0, 's': 1.0, 'wheels': 4.0, 'i': 5.0, 'roads': 1.0, 'main': 2.0, 'keep': 1.0, 'bigger': 1.0, 'course': 1.0, 'turn': 1.0, 'families': 1.0, 'north': 1.0, 'mb': 1.0, 'loves': 2.0, 'little': 1.0, 'bob': 1.0, 'easily': 2.0, '100': 1.0, 'such': 1.0, 'for': 2.0, 'become': 1.0, 'mountains': 2.0, 'lie': 1.0, 'to': 2.0, 'all': 1.0, 'as': 1.0, 'shopping': 1.0, 'our': 4.0, 'stroller': 8.0, 'but': 2.0, 'so': 7.0, 'can': 4.0, 'twins': 1.0, 'terrain': 1.0, 'making': 1.0, 'most': 1.0, 'heavier': 1.0, 'four': 1.0, 'use': 1.0, 'front': 1.0, 'purchased': 1.0, 'babies': 1.0, 'husband': 2.0, 'just': 1.0, 'cascade': 1.0, 'it': 7.0, 'with': 4.0, 'stores': 1.0, 'amazing': 1.0, 'beach': 1.0, 'we': 2.0, 'take': 1.0, 'has': 3.0, 'them': 1.0, 'strollers': 1.0, 'wheel': 1.0, 'much': 3.0, 'do': 1.0, 'nursery': 1.0, 'in': 3.0, 'cabin': 1.0, 'you': 1.0, 'push': 1.0, 'are': 1.0, 'my': 4.0, 'one': 1.0, 'hand': 1.0, 'typical': 1.0, 'make': 1.0, '3': 1.0, 'on': 1.0, 'handling': 1.0, 'curbs': 1.0, 'park': 2.0, 'no': 2.0, 'big': 1.0, 'made': 1.0, 'gravel': 1.0, 'protrudes': 1.0, 'dirt': 1.0, 'problem': 2.0, 'anywhere': 2.0, 'this': 2.0, 'friend': 1.0, 'double': 1.0, 'pivot': 1.0, 'even': 1.0, 'jogging': 2.0, 'compact': 1.0, 'awesome': 1.0, 'rather': 1.0, 'the': 13.0, 'of': 1.0, 'than': 2.0, 'car': 1.0, 'now': 2.0, 'grass': 1.0, 'garden': 1.0, 'or': 2.0}
Word element => {'far': 1.0, 'by': 1.0, 'and': 1.0, 'creams': 1.0, 'rash': 1.0, 'works': 1.0, 'love': 1.0, 'the': 1.0, 'tried': 1.0, 'different': 1.0, 'we': 1.0, 'this': 2.0, 'have': 1.0, 'i': 1.0, '4': 1.0, 'best': 1.0, 'diapr': 1.0, 'stuff': 1.0, 'kinds': 1.0, 'of': 1.0}
Word element => {'swears': 1.0, 'also': 1.0, 'friends': 1.0, 'mommy': 1.0, 've': 1.0, 'spread': 1.0, 'all': 1.0, 'to': 1.0, 'easy': 1.0, 'which': 1.0, 'now': 1.0, 'thin': 1.0, 'little': 1.0, 'very': 2.0, 'after': 1.0, 'joke': 1.0, 'gone': 1.0, 'no': 1.0, 'application': 2.0, 'first': 2.0, 'with': 1.0, 'arbonne': 1.0, 'worse': 1.0, 't': 1.0, 'other': 1.0, 'converted': 1.0, 'anything': 1.0, 'rash': 4.0, 'of': 1.0, 'diaper': 3.0, 'the': 7.0, 'almost': 1.0, 'his': 1.0, 'hair': 1.0, 'anti': 1.0, 'dryer': 1.0, 'required': 1.0, 'gets': 1.0, 'you': 1.0, 'when': 2.0, 'working': 1.0, 'list': 1.0, 'by': 1.0, 'screaming': 1.0, 'bad': 1.0, 'i': 3.0, 'makes': 1.0, 'old': 1.0, 'never': 1.0, 'this': 2.0, 'try': 1.0, 'works': 1.0, 'only': 1.0, 'forget': 1.0, 'fungal': 1.0, 'sound': 1.0, 'll': 2.0, 'starts': 1.0, 'cream': 2.0, 'my': 2.0, '9': 1.0, 'did': 1.0, 'it': 2.0, 'month': 1.0, 'and': 5.0, 'everything': 1.0, 'air': 2.0, 'dry': 2.0, 'petroleum': 1.0, 'paste': 1.0, 'jelly': 1.0, 'butt': 1.0, 'out': 1.0, 'goes': 1.0, 'is': 3.0, 'make': 1.0, 'on': 2.0, 'stuff': 1.0, 'changing': 1.0, 'that': 1.0, 'actually': 1.0, 'daycare': 1.0, 'doesn': 1.0}
Word element => {'promises': 1.0, 'their': 1.0, 'deliver': 1.0, 'products': 1.0, 'critical': 1.0, 'really': 1.0, 'on': 1.0, 'stuff': 1.0, 'great': 1.0, 'out': 1.0, 'to': 2.0, 'slowly': 1.0, 'buy': 1.0, 'run': 1.0, 'bust': 1.0, 'gift': 1.0, 'under': 1.0, 'of': 1.0, 'leg': 1.0, 'anything': 1.0, 'with': 1.0, 'this': 2.0, 'it': 2.0, 'stopped': 1.0, 'no': 1.0, 'monster': 1.0, 'i': 4.0, 'two': 1.0, 'try': 1.0, 'daughter': 1.0, 'm': 2.0, 'in': 2.0, 'heat': 1.0, 'my': 1.0, 'the': 4.0, 'area': 1.0, 'house': 1.0, 'law': 1.0, 'and': 5.0, 'me': 1.0, 'rash': 2.0, 'immediately': 1.0, 't': 2.0, 'a': 2.0, 's': 1.0, 'from': 1.0, 'angels': 1.0, 'is': 2.0, 'was': 1.0, 'healing': 1.0, 'babies': 1.0, 'gave': 1.0, 'that': 2.0, 'awful': 1.0, 'willing': 1.0, 'itching': 1.0, 'tubes': 1.0, 'so': 1.0, 'don': 2.0}
Word element => {'has': 1.0, 'up': 1.0, 'for': 1.0, 'my': 1.0, 'and': 1.0, 'couple': 1.0, 'loves': 1.0, 'along': 1.0, 'other': 1.0, 'a': 2.0, 'prefers': 1.0, 'these': 3.0, 'ache': 1.0, 'belly': 1.0, 'sister': 1.0, 'with': 1.0, 'purchased': 1.0, 'i': 1.0, 'bottles': 1.0, 'she': 3.0, 'nipples': 3.0, 'absolutely': 1.0, 'over': 1.0, 'baby': 1.0, 'any': 1.0, 'her': 1.0, 'spits': 1.0, 'never': 2.0}
Word element => {'correct': 1.0, 'been': 1.0, 'stars': 1.0, 'few': 3.0, 'this': 4.0, 'at': 1.0, 'look': 1.0, 'looked': 2.0, 'nice': 1.0, 'price': 2.0, 'product': 2.0, '6': 1.0, 'side': 1.0, 'good': 2.0, 'similar': 1.0, 'bonnets': 1.0, 'floaties': 1.0, 'heavy': 2.0, 'as': 3.0, 'bottom': 1.0, 'my': 1.0, 'are': 5.0, 'because': 1.0, 'that': 5.0, 'problems': 1.0, 'blocks': 1.0, 'than': 1.0, 'have': 3.0, 'ones': 3.0, 'out': 2.0, 'floating': 1.0, 'up': 1.0, 'ended': 1.0, 'us': 2.0, 'received': 1.0, '25': 1.0, 'quality': 1.0, 'their': 1.0, 'whereas': 1.0, 'about': 3.0, 'off': 1.0, 'areas': 1.0, 'honest': 1.0, 'liquid': 1.0, 'were': 3.0, 'shipment': 1.0, 'so': 2.0, 'is': 2.0, 'can': 2.0, 'float': 1.0, 'not': 1.0, 'states': 1.0, 'dock': 1.0, 'used': 3.0, 'front': 1.0, 'what': 2.0, 'when': 2.0, 'left': 1.0, 'odor': 1.0, 'get': 2.0, 'shopper': 1.0, 'pics': 1.0, 'these': 2.0, 'the': 22.0, 'of': 5.0, 'ducks': 7.0, 'think': 2.0, 'little': 1.0, 'unbalanced': 1.0, 'bought': 1.0, 'better': 1.0, 'noticed': 1.0, 'stores': 1.0, 'case': 1.0, 'shower': 2.0, 'do': 1.0, 'quickly': 1.0, 'batch': 1.0, 'hats': 1.0, 'decorations': 4.0, 'intent': 1.0, 'in': 8.0, 'for': 7.0, 'table': 1.0, 'picture': 1.0, 'with': 6.0, 'using': 2.0, 'baby': 2.0, 'others': 1.0, 'them': 6.0, 'but': 3.0, 'could': 1.0, 'scratches': 1.0, 'top': 1.0, 'did': 1.0, 'decoration': 2.0, 'floated': 1.0, 'shipped': 1.0, 'bad': 3.0, 'we': 1.0, 't': 6.0, 'a': 10.0, 'rattle': 1.0, 'i': 16.0, 'floatability': 1.0, 'on': 2.0, 'items': 1.0, 'beautiful': 1.0, 'flawless': 1.0, 'ordered': 2.0, 'border': 1.0, 'punch': 1.0, 'm': 1.0, 's': 5.0, 'expensive': 1.0, 'orders': 1.0, 'other': 1.0, 'an': 1.0, 'places': 1.0, 'description': 3.0, 'stinky': 1.0, 'worry': 1.0, 'here': 1.0, 'half': 1.0, 'slight': 1.0, 'going': 1.0, 'to': 2.0, 'people': 2.0, 'fixed': 1.0, 'thank': 1.0, 'read': 1.0, 'therefore': 1.0, 'paint': 3.0, 'very': 1.0, 'it': 9.0, 'be': 2.0, 'initial': 1.0, 'flawed': 1.0, 'you': 3.0, 'rubbing': 1.0, 'some': 1.0, 'goes': 1.0, 'posting': 1.0, 'was': 2.0, 'beyond': 1.0, 'warns': 1.0, 'really': 1.0, 'please': 1.0, 'problem': 1.0, 'note': 1.0, 'may': 1.0, 'looks': 1.0, 'drink': 1.0, 'me': 2.0, 'or': 1.0, 'rubs': 1.0, 'due': 1.0, 'bulk': 1.0, 'packaging': 1.0, 'only': 5.0, 'minute': 1.0, 'should': 1.0, 'especially': 1.0, 'since': 1.0, 'tried': 1.0, 'and': 10.0, 'just': 2.0, 'see': 2.0, 'real': 1.0, 'missing': 1.0, 've': 3.0, 'while': 1.0, 'back': 1.0, '12': 1.0, 'didn': 2.0, 'luckily': 1.0, 'amazon': 1.0, 'new': 1.0, 'order': 4.0, 'last': 1.0, 'had': 2.0, 'still': 1.0, 'don': 1.0, 'isn': 1.0, 'days': 1.0, 'event': 1.0, 'they': 8.0, 'overall': 1.0, 'ok': 1.0, 'more': 1.0, 'wouldn': 1.0, 'before': 1.0, 'probably': 1.0, 'again': 1.0, 'if': 3.0, 'great': 1.0, 'disappointed': 1.0, 'closely': 1.0, 'would': 1.0, 'got': 1.0, 'too': 1.0, 'goodness': 1.0, '3': 1.0}
Word element => {'top': 1.0, 'on': 1.0, 'of': 1.0, 'some': 1.0, 's': 1.0, 'daughter': 1.0, 'for': 2.0, 'baby': 1.0, 'cake': 1.0, 'as': 1.0, 'my': 1.0, 'these': 1.0, 'the': 1.0, 'it': 1.0, 'shower': 2.0, 'this': 1.0, 'got': 1.0, 'so': 1.0, 'be': 1.0, 'to': 1.0, 'cute': 1.0, 'planning': 1.0, 'a': 2.0, 'and': 2.0, 'do': 1.0, 'pond': 1.0, 'will': 1.0, 'put': 1.0}
Word element => {}
Word element => {'them': 1.0, 'like': 1.0, 'so': 1.0, 're': 1.0, 'mini': 1.0, 'overall': 1.0, 'are': 1.0, 'thing': 1.0, 'very': 1.0, 'big': 1.0, 'must': 1.0, 'cute': 1.0, 'absolutely': 1.0, 'tiny': 1.0, 'you': 1.0, 'that': 1.0, 'expect': 1.0, 'things': 1.0, 'consider': 1.0, 'but': 2.0, 'loved': 1.0, 'ducks': 5.0, 'buying': 1.0, 'i': 2.0, 'when': 1.0, 'stated': 1.0, '2': 1.0, 'float': 1.0, 'these': 3.0, 't': 2.0, 'the': 1.0, 'they': 1.0, 'has': 1.0, 'seller': 1.0, 'explicitly': 1.0, 'don': 2.0, 'second': 1.0}
Word element => {'hit': 1.0, 'a': 1.0, 'party': 1.0, 'pool': 1.0, 'baby': 1.0, 'truly': 1.0, 'shower': 1.0, 'mini': 1.0, 'boy': 1.0, 'rubber': 1.0, 'duckies': 1.0, 'addition': 1.0, 'were': 2.0, 'an': 1.0, 'adorable': 1.0, 'to': 1.0, 'they': 1.0, 'these': 1.0, 'our': 1.0}
Word element => {'mom': 1.0, 'out': 1.0, 'be': 1.0, 'to': 1.0, 'bummed': 1.0, 'over': 1.0, 'fall': 1.0, 'on': 1.0, 'upright': 1.0, 'side': 1.0, 'their': 1.0, 'bought': 1.0, 'baby': 1.0, 'and': 1.0, 'for': 1.0, 'the': 1.0, 'shower': 1.0, 'a': 1.0, 'these': 1.0, 'they': 2.0, 'wouldn': 1.0, 't': 1.0, 'float': 1.0}
Word element => {'threw': 1.0, 'baby': 1.0, 'daughter': 1.0, 'for': 2.0, 'them': 1.0, 'these': 1.0, 'my': 1.0, 'shower': 1.0, 'the': 1.0, 'mini': 1.0, 'were': 2.0, '34': 2.0, 'came': 1.0, 'perfect': 1.0, 'but': 1.0, 'just': 1.0, 'and': 1.0, 'as': 1.0, 'i': 2.0, 'definitely': 1.0, 'ordered': 1.0}
Word element => {'upside': 1.0, 'top': 1.0, 'something': 1.0, 'down': 1.0, 'want': 1.0, 'that': 1.0, 'you': 1.0, 'they': 2.0, 'not': 1.0, 'heavy': 1.0, 'do': 1.0, 'ducks': 1.0, 'flip': 1.0, 'and': 1.0, 'very': 1.0, 'floats': 1.0, 'order': 1.0, 'the': 1.0, 'are': 3.0, 'small': 1.0, 'if': 1.0, 'cute': 1.0, 'but': 1.0}
Word element => {'food': 1.0, 'touching': 1.0, 'or': 1.0, 'just': 1.0, 'size': 1.0, 'perfect': 1.0, 'favor': 1.0, 'are': 1.0, 'they': 1.0, 'put': 1.0, 'but': 1.0, 'late': 1.0, 'too': 1.0, 'out': 1.0, 'them': 2.0, 'party': 1.0, 'a': 2.0, 'as': 1.0, 'terrible': 1.0, 'for': 2.0, 'used': 1.0, 'aftertaste': 1.0, 'cupcake': 1.0, 'don': 2.0, 'baby': 1.0, 'bought': 1.0, 'toppers': 1.0, 'shower': 1.0, 'it': 2.0, 'these': 1.0, 'the': 1.0, 't': 2.0, 'and': 2.0, 'do': 1.0, 'on': 2.0, 'really': 1.0, 'left': 1.0, 'frosting': 1.0, 'cute': 1.0, 'found': 1.0}
Word element => {'ducky': 1.0, 'have': 1.0, 'if': 1.0, 'would': 1.0, 'good': 1.0, 'quality': 1.0, 'toppers': 1.0, 'even': 1.0, 'used': 1.0, 'cupcake': 1.0, 'baby': 1.0, 'use': 1.0, 'intended': 1.0, 'loved': 2.0, 'again': 1.0, 'are': 1.0, 'float': 1.0, 'the': 2.0, 'ever': 1.0, 'they': 2.0, 'not': 2.0, 'at': 1.0, 'do': 2.0, 'my': 2.0, 'states': 1.0, 'shower': 1.0, 'it': 1.0, 'theme': 1.0, 'absolutely': 1.0, 'hit': 1.0, 'were': 1.0, 'husband': 1.0, 'was': 1.0, 'to': 1.0, 'items': 1.0, 'so': 1.0, 'i': 4.0, 'them': 4.0, 'a': 2.0, 'as': 3.0, 'big': 1.0}
Word element => {'upright': 1.0, 't': 1.0, 'and': 1.0, 'heavy': 1.0, 'top': 1.0, 'bowl': 1.0, 'i': 1.0, 'got': 1.0, 'they': 1.0, 'these': 1.0, 'in': 1.0, 'for': 1.0, 'shower': 1.0, 'a': 2.0, 'were': 1.0, 'punch': 1.0, 'baby': 1.0, 'to': 1.0, 'didn': 1.0, 'float': 2.0}
Word element => {'good': 1.0, 'are': 1.0, 'not': 1.0, 'did': 1.0, 'turn': 1.0, 'should': 1.0, 'quality': 1.0, 'but': 3.0, 'duckies': 2.0, 'sized': 1.0, 'it': 1.0, 'expecting': 1.0, 'small': 1.0, 'regualr': 1.0, 'so': 1.0, 'i': 2.0, 'out': 1.0, 'was': 1.0, 'to': 1.0, 'be': 1.0, 'maybe': 1.0, 'have': 1.0, 'read': 1.0, 'these': 1.0, 'the': 2.0, 'is': 1.0, 'fine': 1.0, 'print': 1.0}
Word element => {'size': 1.0, 'right': 1.0, 'don': 1.0, 'they': 2.0, 'side': 1.0, 'many': 1.0, 'small': 1.0, 'so': 1.0, 'are': 2.0, 'because': 1.0, 'my': 2.0, 'to': 1.0, 'daughter': 1.0, 'gave': 1.0, 'little': 1.0, 'up': 1.0, 'there': 1.0, 'of': 3.0, 'off': 1.0, 'good': 1.0, 'some': 2.0, 'bunch': 1.0, 'big': 1.0, 'cake': 1.0, 'it': 1.0, 'were': 2.0, 'for': 1.0, 'in': 2.0, 'approximately': 1.0, 'bought': 1.0, 's': 1.0, 'decorations': 1.0, 'i': 2.0, 'a': 3.0, 'mini': 1.0, 'float': 1.0, 't': 1.0, 'these': 1.0, 'the': 2.0, 'most': 1.0, 'ducks': 2.0, 'bag': 1.0, 'thumb': 1.0, 'condition': 1.0, 'and': 2.0}
Word element => {'adorable': 1.0, 'don': 1.0, 'them': 1.0, 'didn': 1.0, 'if': 1.0, 'so': 2.0, 'they': 3.0, 'float': 2.0, 't': 2.0, 'these': 1.0, 'are': 2.0, 'ducks': 1.0, 'you': 1.0, 'that': 1.0, 'alittle': 1.0, 'but': 2.0, 'put': 1.0, 'water': 1.0, 'i': 1.0, 'was': 1.0, 'in': 1.0, 'disappointed': 1.0, 'cute': 1.0, 'still': 1.0}
Word element => {'quite': 1.0, 'rest': 1.0, 'as': 1.0, 'half': 1.0, 'use': 1.0, 'in': 1.0, 'could': 1.0, 'strange': 1.0, 'were': 1.0, 'that': 1.0, 'cute': 1.0, 'are': 1.0, 'imperfections': 1.0, 'ugly': 1.0, 'on': 1.0, 'batch': 1.0, 'i': 3.0, 'enough': 1.0, 'but': 1.0, 'the': 4.0, 'these': 1.0, 'paint': 2.0, 'there': 1.0, 'of': 3.0, 'recommend': 1.0, 'received': 1.0, 'would': 1.0, 'not': 1.0, 'made': 1.0, 'them': 4.0, 'only': 1.0}
Word element => {'fun': 1.0, 'grandson': 1.0, 'if': 1.0, 'take': 1.0, 'had': 1.0, 'wanted': 1.0, 'to': 2.0, 'just': 1.0, 'with': 1.0, 'shower': 1.0, 'float': 1.0, 'the': 4.0, 'for': 1.0, 'in': 1.0, 'them': 5.0, 'guests': 1.0, 'baby': 1.0, 'right': 1.0, 'scattered': 1.0, 'size': 1.0, 'decorations': 1.0, 'used': 1.0, 'punch': 1.0, 'allowed': 1.0, 'on': 2.0, 'guest': 1.0, 'tables': 1.0, 'and': 1.0, 'table': 1.0, 'playing': 1.0, 'were': 1.0, 'buffet': 1.0}
Word element => {'though': 1.0, 'upright': 1.0, 'they': 2.0, 'favors': 1.0, 'for': 1.0, 'float': 1.0, 't': 1.0, 'these': 1.0, 'the': 1.0, 'small': 1.0, 'to': 1.0, 'shower': 1.0, 'with': 1.0, 'go': 1.0, 'my': 1.0, 're': 1.0, 'a': 1.0, 'baby': 1.0, 'don': 1.0, 'bought': 1.0, 'gift': 1.0, 'i': 1.0, '4': 1.0, 'perfect': 1.0, 'x6': 1.0, 'size': 1.0, 'bag': 1.0}
Word element => {'big': 1.0, 'hit': 1.0, 'decorations': 1.0, 'everyone': 1.0, 'lol': 1.0, 'cute': 1.0, 'loved': 1.0, 'a': 1.0, 'them': 2.0, 'they': 1.0, 'used': 1.0, 'very': 1.0, 'as': 2.0, 'in': 1.0, 'were': 1.0, 'punch': 1.0, 'floating': 1.0, 'well': 1.0}
Word element => {'toys': 1.0, 'are': 1.0, 'be': 1.0, 'bought': 1.0, 'adorable': 1.0, 'as': 3.0, 'tables': 1.0, 'some': 1.0, 'placed': 1.0, 'branches': 1.0, 'child': 1.0, 'them': 1.0, 'mini': 1.0, 'well': 1.0, 'a': 2.0, 'baby': 1.0, 'hang': 1.0, 'shower': 1.0, 'decorate': 2.0, 'or': 1.0, 'off': 1.0, 'mommy': 1.0, 'novelty': 1.0, 'ones': 2.0, 'the': 3.0, 'these': 1.0, 'decorations': 1.0, 'used': 2.0, 'your': 1.0, 'they': 1.0, 'to': 3.0, 'bath': 1.0, 'purchased': 1.0, 'ducks': 3.0, 'i': 4.0, 'around': 1.0, 'new': 1.0, 'bigger': 1.0, 'advice': 1.0, 'for': 2.0, 'tree': 1.0, 'and': 3.0, 'were': 1.0, 'perfect': 1.0, 'can': 1.0, 'size': 1.0}
Word element => {'sure': 1.0, 'am': 1.0, 'i': 1.0, 'much': 1.0, 'be': 1.0, 'are': 2.0, 'advertised': 1.0, 'shower': 2.0, 'smaller': 1.0, 'my': 2.0, 'than': 1.0, 'hit': 1.0, 'baby': 2.0, 'but': 2.0, 'will': 1.0, 'favors': 1.0, 'still': 1.0, 'cute': 2.0, 'super': 1.0, 'we': 1.0, 'for': 2.0, 'using': 1.0, 'a': 1.0, 'these': 1.0, 'as': 1.0, 'huge': 1.0}
Word element => {'homes': 1.0, 'went': 1.0, 'they': 1.0, 'offered': 1.0, 'new': 2.0, 'saved': 1.0, 'after': 1.0, 'everything': 1.0, 'be': 1.0, 'mommy': 2.0, 'tables': 2.0, 'mini': 1.0, 'put': 1.0, 'flowers': 1.0, 'it': 1.0, 'middle': 1.0, 'ducks': 1.0, 'added': 1.0, 'and': 5.0, 'few': 1.0, 'fairy': 1.0, 'pot': 1.0, 'a': 3.0, 'we': 4.0, 'daughters': 1.0, 'them': 1.0, 'baby': 1.0, 'about': 1.0, 'these': 1.0, 'the': 6.0, 'great': 1.0, 'duckies': 1.0, 'in': 1.0, 'ducky': 1.0, 'little': 1.0, 'were': 1.0, 'around': 1.0, 'confetti': 1.0, 'enough': 1.0, 'adorable': 1.0, 'at': 1.0, 'scattered': 1.0, 'my': 1.0, 'shower': 1.0, 'of': 1.0, 'up': 2.0, 'door': 1.0, 'people': 1.0, 'filled': 1.0, 'thought': 1.0, 'had': 1.0, 'all': 1.0, 'as': 1.0, 'to': 3.0, 'was': 2.0, 'for': 2.0, 'set': 1.0, 'chairs': 1.0, '60': 1.0, 'prize': 1.0, '75': 1.0, 'girls': 1.0}
Word element => {'problem': 1.0, 'it': 1.0, 'wasn': 1.0, 'like': 1.0, 'a': 1.0, 'since': 1.0, 'and': 1.0, 'them': 2.0, 'they': 1.0, 'makes': 1.0, 'duckies': 1.0, 'about': 1.0, 'bonnet': 1.0, 'there': 1.0, 'many': 1.0, 'look': 1.0, 'rubber': 1.0, 'cheap': 1.0, 'i': 1.0, 'didn': 1.0, 'use': 1.0, 'but': 1.0, 'more': 1.0, 'the': 1.0, 'chickens': 1.0, 't': 2.0, 'something': 1.0, 'were': 2.0, 'so': 2.0}
Word element => {'baby': 1.0, 'sex': 1.0, 'party': 1.0, 'a': 1.0, 'for': 2.0, 'use': 1.0, 'perfect': 1.0, 'to': 3.0, 'reveal': 1.0, 'gender': 1.0, 'be': 1.0, 'bought': 1.0, 'their': 1.0, 'theme': 1.0, 'of': 1.0, '34': 2.0, 'guess': 1.0, 'the': 1.0, 'these': 1.0, 'waddle': 1.0, 'people': 1.0, 'with': 1.0, 'it': 1.0, 'size': 1.0, 'hold': 1.0, 'as': 2.0}
Word element => {'baby': 1.0, 'at': 1.0, 'ducks': 1.0, 'for': 1.0, 'bobbin': 1.0, 'we': 1.0, 'great': 1.0, 'i': 2.0, 'loved': 1.0, 'size': 1.0, 'from': 1.0, 'shower': 1.0, 'are': 1.0, 'the': 3.0, 'these': 1.0, 'seen': 1.0, 'first': 1.0, 'is': 1.0, 'time': 1.0, 'them': 1.0}
Word element => {'good': 1.0, 'i': 3.0, 'that': 1.0, 'were': 3.0, 'if': 1.0, 'ordered': 1.0, 'so': 2.0, 'd': 1.0, 'could': 1.0, 'a': 2.0, 'they': 2.0, 'hit': 1.0, 'these': 1.0, 'the': 2.0, 'big': 1.0, 'centerpieces': 1.0, 'at': 1.0, 'and': 3.0, 'tiny': 1.0, 'do': 1.0, 'are': 1.0, 'scattered': 1.0, 'twice': 1.0, 'purchase': 1.0, 'my': 1.0, 'shower': 1.0, 'it': 1.0, 'have': 1.0, 'over': 1.0, 'would': 1.0, 'cute': 1.0, 'amount': 1.0, 'or': 1.0, 'larger': 1.0, 'ducks': 1.0, 'when': 1.0, 'was': 1.0, 'everyone': 1.0, 'done': 1.0, 'wanted': 1.0, 'all': 2.0, 'to': 1.0, 'said': 1.0, 'take': 1.0, 'baby': 1.0, 'them': 1.0, 'home': 1.0, 'around': 1.0, 'say': 1.0}
Word element => {'without': 1.0, 'lost': 1.0, 'would': 1.0, 'she': 1.0, 'new': 1.0, 'her': 1.0, 'give': 1.0, 'and': 1.0, 'away': 1.0, 'throw': 1.0, 'on': 1.0, 'my': 2.0, 'for': 2.0, 'initially': 1.0, 'have': 2.0, 'ones': 1.0, 'these': 1.0, 'toy': 1.0, 'baby': 1.0, 'just': 1.0, 'because': 1.0, 'be': 1.0, 'bought': 1.0, 'granddaughters': 1.0, 'i': 3.0, 'now': 1.0, 'to': 2.0, 'has': 1.0, 'favorite': 1.0, 'them': 3.0, 'watch': 1.0, 'keep': 1.0, 'hand': 1.0, 'shower': 1.0, 'it': 1.0, 'wholes': 1.0, 'become': 1.0, 'yorkie': 1.0, 's': 1.0}
Word element => {'complaints': 1.0, 'no': 1.0, 'fact': 1.0, 'us': 1.0, 'too': 1.0, 'loves': 1.0, 'from': 1.0, 'son': 1.0, 'there': 1.0, 's': 1.0, 'about': 1.0, 'table': 1.0, 'great': 1.0, 'the': 2.0, 'hi': 1.0, 'is': 2.0, 'out': 1.0, 'it': 3.0, 'only': 1.0, 'this': 2.0, 'far': 1.0, 'chair': 3.0, 'tall': 1.0, 'especially': 1.0, 'top': 1.0, 'enough': 1.0, 'to': 1.0, 'reach': 1.0, 'spins': 1.0, 'that': 2.0, 'awesome': 1.0, 'our': 2.0, 'so': 1.0, 'everything': 1.0, 'has': 1.0, 'been': 1.0}
Word element => {'something': 1.0, 'that': 1.0, 'like': 1.0, 'nothing': 1.0, 'really': 1.0, 'but': 1.0, 'and': 1.0, 'very': 1.0, 'great': 1.0, 'the': 1.0, 'works': 1.0, 'down': 1.0, 'a': 2.0, 'calm': 1.0, 'citrus': 1.0, 'to': 1.0, 'much': 1.0, 'seems': 1.0, 'smells': 1.0, 'area': 1.0, 'this': 1.0, 'have': 1.0, 'i': 1.0, 'not': 1.0, 'smell': 2.0, 'noticed': 1.0, 'light': 1.0, 'of': 2.0, 'bum': 1.0, 'sort': 1.0}
Word element => {'don': 1.0, 'spray': 1.0, 'butt': 1.0, 'wipe': 1.0, 'cleanup': 1.0, 'easier': 1.0, 'exactly': 1.0, 'only': 1.0, 'this': 1.0, 'with': 2.0, 'it': 1.0, 'cloth': 2.0, 'our': 1.0, 'as': 1.0, 'from': 1.0, 'described': 1.0, 'daughter': 1.0, 't': 1.0, 'a': 2.0, 'we': 1.0, 's': 1.0, 'even': 1.0, 'diapers': 1.0, 'bag': 1.0, 'cleaner': 1.0, 'her': 1.0, 'my': 1.0, 'diaper': 1.0, 'great': 1.0, 'in': 1.0, 'though': 1.0, 'use': 3.0, 'warmer': 1.0, 'i': 2.0, '4': 1.0, 'home': 1.0, 'who': 1.0, 'at': 1.0, 'lot': 1.0, 'smells': 1.0, 'those': 1.0, 'not': 1.0, 'too': 1.0, 'and': 1.0, 'get': 1.0, 'on': 1.0, 'strong': 1.0, '3': 1.0, 'squirts': 1.0, 'complements': 1.0, 'moist': 1.0, 'or': 1.0, 'makes': 1.0, 'friends': 1.0}
Word element => {'well': 1.0, 'just': 1.0, 'baby': 1.0, 'as': 1.0, 'worked': 1.0, 'changing': 1.0, 'me': 1.0, 'diapers': 1.0, 'inhale': 1.0, 'cough': 1.0, 'right': 1.0, 'ran': 1.0, 'if': 1.0, 'to': 1.0, 'was': 2.0, 'after': 1.0, 'expensive': 1.0, 'cold': 1.0, 'i': 1.0, 'concerned': 1.0, 'made': 1.0, 'out': 1.0, 'safe': 1.0, 'quickly': 1.0, 'it': 2.0, 'rinsing': 1.0, 'also': 1.0, 'in': 1.0, 'water': 1.0}
Word element => {'no': 1.0, 'it': 1.0, 'absorb': 1.0, 'instantly': 1.0, 'with': 2.0, 'squirt': 1.0, 'ability': 1.0, 'cleaning': 1.0, 'their': 1.0, 'for': 1.0, 'buy': 1.0, 'but': 1.0, 'were': 1.0, 'wish': 1.0, 'complaint': 1.0, 'only': 1.0, 'clean': 2.0, 'have': 1.0, 'really': 2.0, 'of': 1.0, 'up': 1.0, 'couple': 1.0, 'a': 3.0, 'well': 1.0, 'these': 2.0, 'is': 1.0, 'more': 1.0, 'the': 2.0, 'diaper': 1.0, 'very': 2.0, 'and': 5.0, 'toss': 1.0, 'make': 1.0, 'my': 3.0, 'own': 1.0, 'keep': 1.0, 'so': 2.0, 'softer': 1.0, 'them': 2.0, 'baby': 1.0, 'wipe': 2.0, 'spot': 1.0, 'grab': 1.0, 'oh': 1.0, 'messy': 1.0, 'solution': 2.0, 'problems': 1.0, 'young': 1.0, 'one': 1.0, 'squirts': 1.0, 'give': 1.0, 'those': 1.0, 'okay': 1.0, 'diapers': 1.0, 'never': 1.0, 'done': 1.0, 'need': 1.0, 'than': 1.0, 'i': 10.0, 'two': 1.0, 'when': 1.0, 'again': 1.0, 'unless': 1.0, 'miss': 1.0, 'they': 3.0, 'absorbency': 1.0, 'daughter': 1.0, 'd': 1.0, 'm': 1.0, 'into': 1.0, 'pail': 1.0}
Word element => {'purchases': 1.0, 'future': 1.0, 'an': 1.0, 'be': 2.0, 'seem': 1.0, 'other': 1.0, 'my': 1.0, 'spot': 1.0, 'in': 1.0, 'will': 1.0, 'also': 1.0, 'loose': 1.0, 'amazon': 2.0, 'changed': 1.0, 'is': 2.0, 'as': 1.0, 'to': 3.0, 'recommend': 1.0, 'was': 1.0, 'wanted': 1.0, 'them': 2.0, 'pleased': 1.0, 'fake': 2.0, 'this': 1.0, 'soft': 1.0, 'decided': 1.0, 'very': 2.0, 'from': 6.0, 'i': 8.0, 'through': 1.0, 'then': 1.0, 'order': 1.0, 'so': 1.0, 'after': 1.0, 'different': 1.0, 'tag': 1.0, 'fabric': 1.0, 'cottonbabies': 2.0, 'wipes': 2.0, 'some': 1.0, 'these': 3.0, 'the': 7.0, 'ones': 4.0, 'buying': 1.0, 'with': 1.0, 'going': 1.0, 'a': 1.0, 's': 1.0, 'point': 1.0, 'disappointed': 1.0, 'purchasing': 1.0, 'bumgenius': 1.0, 'ordered': 3.0, 'directly': 2.0, 'they': 2.0, 'design': 1.0, 'seller': 1.0, 'or': 1.0, 'are': 4.0, 'for': 1.0, 'actually': 1.0, 'stitched': 2.0, 'perfectly': 1.0, 'thin': 1.0, 'cotttonbabies': 1.0, 'but': 1.0, 'that': 2.0, 'either': 1.0, 'what': 1.0, 'not': 1.0, 'poorly': 1.0, 'stitching': 1.0, 'coming': 1.0}
Word element => {'wiping': 1.0, 'love': 1.0, 'for': 1.0, 'the': 1.0, 'with': 2.0, 'but': 1.0, 'handy': 1.0, 'cloth': 1.0, 'ordering': 1.0, 'my': 1.0, 'are': 2.0, 'around': 1.0, 'more': 1.0, 'these': 1.0, 'own': 1.0, 'pretty': 1.0, 'keep': 1.0, '3': 1.0, 'soft': 1.0, 'because': 1.0, 'few': 1.0, 'messes': 1.0, 'of': 1.0, 'they': 2.0, 'packs': 1.0, 'dry': 1.0, 'and': 2.0, 'in': 1.0, 'so': 1.0, 'am': 1.0, 'a': 2.0, 'well': 2.0, 'have': 1.0, 'had': 1.0, 'them': 3.0, 'wipe': 1.0, 'faces': 1.0, 'no': 1.0, 'super': 1.0, 'noses': 1.0, 'absorbancy': 1.0, 'issues': 1.0, 'house': 1.0, 'enough': 1.0, 'etc': 1.0, 'i': 4.0, 'texture': 1.0, 'diapers': 1.0, 'even': 1.0, 'up': 1.0, 'wash': 1.0, 'poopy': 1.0, 'wipes': 1.0, 'warmer': 1.0, 'to': 1.0, 'as': 2.0}
Word element => {'them': 1.0, 'alternative': 1.0, 'packs': 1.0, 'a': 1.0, 'and': 2.0, 'of': 1.0, 'up': 1.0, 'wipes': 1.0, 'great': 1.0, 'these': 2.0, 'have': 2.0, 'i': 2.0, 'shrinking': 1.0, 'no': 2.0, 'two': 1.0, 'super': 1.0, 'soft': 1.0, 'piling': 1.0, 'that': 1.0, 'love': 2.0, 'given': 1.0, 'we': 1.0, 'disposable': 1.0, 'are': 1.0}
Word element => {'that': 1.0, 'something': 1.0, 'hold': 1.0, 'wipes': 1.0, 'and': 1.0, 'very': 1.0, 'they': 1.0, 'will': 1.0, 'but': 1.0, 'diapers': 1.0, 'genious': 1.0, 'dryer': 1.0, 'even': 1.0, 'became': 1.0, 'for': 1.0, 'love': 1.0, 'bum': 1.0, 'its': 1.0, 'look': 1.0, 'rough': 1.0, 'softness': 1.0, 'after': 2.0, 'i': 1.0, 'when': 1.0, 'too': 1.0, 'not': 1.0, 'washing': 2.0, 'stiff': 1.0, 'dried': 1.0, 'in': 1.0, 'these': 1.0, 'the': 1.0}
Word element => {'especially': 1.0, 'baby': 1.0, 'again': 1.0, 'buying': 1.0, 'with': 1.0, 'would': 2.0, 'they': 1.0, 'condition': 1.0, 'your': 1.0, 'on': 1.0, 'arrived': 2.0, 'cycle': 1.0, 'gentle': 1.0, 'wash': 1.0, 'machine': 1.0, 'after': 1.0, 'even': 1.0, 'is': 2.0, 'if': 1.0, 'everything': 1.0, 'time': 1.0, 'so': 3.0, 'at': 1.0, '7': 1.0, 'teething': 1.0, 'right': 1.0, 'her': 1.0, 'the': 1.0, 'orange': 3.0, 'stated': 1.0, 'i': 5.0, 'old': 1.0, 'point': 1.0, 'saw': 1.0, 'business': 1.0, 'my': 1.0, 'cat': 1.0, 'in': 2.0, 'daughter': 1.0, 'sofia': 1.0, 'for': 2.0, 'had': 1.0, 'as': 3.0, 'to': 2.0, 'recommend': 1.0, 'was': 1.0, 'do': 1.0, 'only': 1.0, 'its': 1.0, 'mouth': 1.0, 'soon': 1.0, 'and': 4.0, 'seller': 2.0, 'ofcourse': 2.0, 'soft': 1.0, 'this': 4.0, 'perfect': 2.0, 'taggie': 3.0, 'felt': 1.0, 'month': 1.0, 'it': 5.0, 'she': 1.0, 'definitely': 1.0, 'buy': 2.0, 'tags': 1.0, 'a': 2.0, 'we': 1.0, 'have': 1.0, 'an': 1.0, 'tabby': 1.0, 're': 1.0, 'named': 1.0, 'loves': 2.0, 'bob': 1.0, 'kitty': 1.0, 'toy': 1.0}
Word element => {'money': 1.0, 'waste': 1.0, 'bad': 1.0, 'especially': 1.0, 'readings': 1.0, 'so': 1.0, 'given': 1.0, 'for': 1.0, 'what': 1.0, 'does': 1.0, 'later': 1.0, 'cost': 1.0, 'unreliable': 1.0, '9': 1.0, 'trust': 1.0, 'son': 1.0, 'need': 1.0, '10': 1.0, 'anything': 1.0, 'is': 3.0, 'your': 1.0, 'time': 1.0, 'you': 1.0, 's': 1.0, 'take': 1.0, 'reads': 1.0, 'i': 2.0, 'my': 1.0, 'not': 2.0, 'accurate': 1.0, 'but': 1.0, '97': 1.0, 'do': 2.0, 'temperature': 1.0, 'and': 3.0, 'can': 1.0, 'minutes': 1.0, '7': 1.0, 'with': 1.0, 'this': 2.0, 'it': 4.0, 'first': 1.0, 'thermometer': 1.0, 'then': 1.0, 't': 1.0, 'the': 3.0, '99': 1.0}
Word element => {'as': 1.0, 'easy': 1.0, 'moves': 1.0, 'out': 1.0, 'assembly': 1.0, 'it': 1.0, 'looked': 1.0, 'this': 1.0, 'play': 1.0, 'bassinet': 1.0, 'plus': 1.0, 'of': 2.0, 'well': 1.0, 'a': 2.0, 'weeks': 1.0, 'for': 2.0, 'pen': 1.0, 'stood': 1.0, 'the': 2.0, 'i': 1.0, 'because': 1.0, 'mobile': 1.0, 'ease': 1.0, 'and': 2.0, 'storage': 1.0, 'soft': 1.0, 'sides': 1.0, 'its': 1.0, 'was': 1.0}
Word element => {'investments': 1.0, 'best': 1.0, 'one': 1.0, 'snaps': 1.0, 'releases': 1.0, 'quick': 2.0, 'five': 2.0, 'course': 1.0, 'hands': 1.0, 'place': 1.0, 'into': 1.0, 'back': 2.0, 'in': 2.0, 'surprisingly': 1.0, 'nursery': 1.0, 'living': 1.0, 'tiny': 1.0, 'considering': 1.0, 'thing': 2.0, 'whole': 1.0, 'side': 1.0, 'attaches': 1.0, 'home': 1.0, 'storage': 1.0, 'infant': 1.0, 'while': 1.0, 'great': 1.0, 'when': 2.0, 'two': 1.0, 'little': 1.0, 'that': 1.0, 'changing': 1.0, 'our': 6.0, 'as': 4.0, 'to': 6.0, 'brought': 1.0, 'table': 1.0, 'hold': 1.0, 'and': 8.0, 'play': 1.0, 'waiting': 1.0, 'months': 1.0, 'tall': 1.0, 'main': 1.0, 'well': 1.0, 'ready': 1.0, 'his': 1.0, 'an': 1.0, 'ever': 1.0, 'boy': 2.0, 'for': 3.0, 'was': 3.0, 'had': 1.0, 'then': 1.0, 'we': 4.0, 's': 6.0, 'ago': 1.0, 't': 1.0, 'unit': 1.0, 'with': 4.0, 'fold': 1.0, 'he': 3.0, 'this': 4.0, 'full': 1.0, 'him': 1.0, '9': 1.0, 'it': 9.0, 'room': 1.0, 'since': 1.0, 'edge': 1.0, 'the': 6.0, 'of': 4.0, 'stable': 1.0, 'house': 1.0, 'enough': 1.0, 'now': 3.0, 'has': 1.0, 'stripped': 1.0, 'but': 2.0, 'just': 1.0, 'yard': 1.0, 'bouncing': 1.0, 'baby': 2.0, 'night': 1.0, 'use': 1.0, 'travel': 1.0, 'crib': 1.0, 'size': 1.0, 'served': 2.0, 'isn': 1.0, 'perfect': 1.0, 'bed': 1.0, 'at': 1.0, 'is': 1.0, 'very': 4.0, 'himself': 1.0, 'getting': 1.0, 'takes': 1.0, 'up': 3.0, 'there': 1.0, 'not': 1.0, 'out': 1.0, 'secure': 1.0, 'us': 2.0, 'compact': 1.0, 'also': 1.0, 'down': 1.0, 'stand': 1.0, 've': 1.0, 'found': 1.0, 'easy': 3.0, 'pop': 2.0}
Word element => {'end': 1.0, 'stuff': 1.0, 'on': 1.0, 'constantly': 1.0, 'did': 1.0, 'out': 2.0, 'feet': 1.0, 'flimsy': 2.0, 'to': 1.0, 'them': 1.0, 'baby': 2.0, 'for': 2.0, 'tripping': 1.0, 'people': 1.0, 'is': 3.0, 'high': 1.0, 'my': 1.0, 'are': 1.0, 'the': 5.0, 'one': 1.0, 'mobile': 1.0, 'changing': 1.0, 'felt': 1.0, 'it': 4.0, 'way': 1.0, 'notice': 1.0, 'a': 3.0, 's': 1.0, 'yard': 1.0, 'and': 3.0, 'play': 1.0, 'too': 1.0, 'over': 1.0, 'not': 1.0, 'secure': 1.0, 'feeling': 1.0, 'of': 1.0, 'moves': 1.0, 'some': 1.0, 'infant': 1.0, 'insecure': 1.0, 'organizer': 1.0, 'i': 3.0, 'tried': 1.0, 'like': 1.0, 'stick': 1.0, 'part': 1.0, 'wish': 1.0, 'different': 1.0, 'would': 1.0, 'falls': 1.0, 'have': 1.0}
Word element => {'recommend': 1.0, 'bar': 1.0, 'loves': 1.0, '5': 1.0, 'husband': 1.0, 'bag': 1.0, 'carrying': 1.0, 'ended': 1.0, 'adjustable': 1.0, 'anything': 1.0, 'get': 1.0, 'hard': 1.0, 'stores': 1.0, 'malls': 1.0, 'ideal': 1.0, 'because': 1.0, 'standard': 1.0, 'through': 2.0, 'thing': 1.0, 'whole': 1.0, 'hatch': 1.0, 'liberty': 1.0, 'would': 1.0, 'car': 1.0, 'heavy': 1.0, 'it': 6.0, 'put': 1.0, 'stroller': 5.0, 'fine': 1.0, 'takes': 2.0, 'right': 1.0, 'out': 1.0, 'newborn': 1.0, 'apart': 1.0, 'in': 4.0, 'up': 3.0, 'negotiate': 1.0, 'not': 2.0, 'almost': 1.0, 'opted': 1.0, 'ride': 1.0, 'so': 2.0, 'stowage': 1.0, 'i': 6.0, 'handle': 1.0, 'back': 1.0, 'attachment': 1.0, 'the': 8.0, 'most': 1.0, 'can': 2.0, 'but': 3.0, 'terrain': 1.0, 'fits': 2.0, 'my': 5.0, 'enough': 1.0, 'types': 1.0, 'instead': 1.0, 'smooth': 1.0, 'jeep': 1.0, 'drive': 1.0, 'this': 2.0, 'kids': 1.0, 'height': 1.0, 'compartment': 1.0, 'february': 1.0, '6': 1.0, 'how': 1.0, '17': 1.0, 'using': 1.0, 'for': 4.0, 'love': 1.0, 'bought': 1.0, 'months': 1.0, 't': 2.0, 's': 1.0, 'go': 1.0, 'a': 4.0, 'well': 1.0, 'snuzzler': 1.0, 'navigate': 1.0, 'space': 1.0, 'lot': 1.0, 'keep': 1.0, 'him': 1.0, 'comfy': 1.0, 'and': 3.0, 'worked': 1.0, 'great': 1.0, 'big': 2.0, 'is': 4.0, 'wheels': 1.0, 'they': 1.0, 'doors': 1.0, 'any': 1.0, 'to': 3.0, 'all': 1.0, 'of': 3.0}
Word element => {'on': 1.0, 'dont': 1.0, 'would': 1.0, 'mini': 1.0, 'city': 1.0, 'overall': 1.0, 'kids': 1.0, 'those': 1.0, 'ride': 1.0, 'think': 1.0, 'better': 2.0, 'offers': 1.0, 'suppose': 1.0, 'things': 1.0, 'double': 2.0, 'great': 1.0, 'teds': 1.0, 'phil': 1.0, 'offered': 1.0, 'had': 1.0, 'evaulation': 1.0, 'this': 5.0, 'jogged': 1.0, 'miss': 1.0, 'jogger': 1.0, 'store': 1.0, 'wide': 1.0, 'too': 1.0, 'compact': 1.0, 'size': 2.0, 'its': 1.0, 'safe': 1.0, 'due': 1.0, 'wont': 1.0, 'trunk': 1.0, 'suv': 2.0, 'around': 2.0, 'buy': 1.0, 'mess': 1.0, 'into': 3.0, 'locked': 1.0, 'by': 1.0, 'pull': 1.0, 'ackward': 1.0, 'place': 2.0, 'hold': 1.0, 'have': 2.0, 'but': 3.0, 'however': 2.0, 'easy': 2.0, 'out': 2.0, 'very': 1.0, 'dirt': 1.0, 'want': 1.0, 'road': 1.0, 'strollers': 1.0, 'am': 2.0, 'when': 1.0, 'ruggedized': 1.0, 'handles': 1.0, 'little': 2.0, 'walks': 1.0, 'wonder': 1.0, 'feels': 1.0, 'wifes': 1.0, 'a': 10.0, 'stroller': 15.0, 'down': 1.0, 'cautious': 1.0, 'effort': 1.0, 'way': 3.0, 'cons': 1.0, 'an': 1.0, 'all': 2.0, 'closed': 1.0, 'cups': 1.0, 'heavy': 1.0, 'diaper': 1.0, 'as': 2.0, 'features': 1.0, 'top': 1.0, 'position': 2.0, 'dash': 1.0, 'should': 1.0, 'in': 5.0, 'can': 2.0, 'partial': 1.0, 'terrain': 1.0, 'be': 4.0, 'purchased': 1.0, 'bar': 2.0, 'rate': 1.0, 'like': 3.0, 'has': 2.0, 'manner': 1.0, 'they': 1.0, 'does': 1.0, 'collaps': 1.0, 'ease': 1.0, 'close': 2.0, 'thats': 1.0, 'and': 12.0, 'well': 1.0, 'i': 11.0, 'items': 1.0, 'vehicle': 1.0, 'rated': 1.0, 'quality': 2.0, 'not': 5.0, 'bring': 1.0, 'having': 1.0, 'that': 1.0, 'because': 3.0, 'bias': 1.0, 'it': 5.0, 'hanging': 1.0, 'made': 1.0, 'side': 1.0, 'more': 1.0, 'realistic': 1.0, 'open': 1.0, 'over': 2.0, 'pros': 1.0, 'comes': 1.0, 'cover': 1.0, 'covering': 1.0, 'stay': 1.0, 'section': 1.0, 'amazing': 1.0, 'the': 25.0, 'of': 4.0, 'width': 1.0, 'with': 3.0, 'pockets': 1.0, 'jogging': 1.0, 'even': 1.0, 'child': 1.0, 'product': 1.0, 'tipping': 1.0, 'handled': 1.0, 'soft': 1.0, 'bag': 1.0, 'guilty': 1.0, 'me': 1.0, 'accesories': 1.0, 'my': 4.0, 'purse': 1.0, 'wheel': 1.0, 'never': 1.0, 'hey': 1.0, 'just': 2.0, 'handle': 2.0, 'is': 9.0, 'look': 1.0, 'to': 8.0, 'high': 1.0, 'baby': 1.0, 'many': 2.0, 'for': 2.0, 'such': 1.0, 'seating': 2.0, 'strong': 1.0, 'upright': 1.0, 'almost': 1.0, 'frame': 1.0, 'comfortable': 1.0, 'isles': 1.0, 'slants': 1.0, 'difference': 1.0, 'feature': 1.0, 'or': 1.0, 'tons': 1.0, 'get': 1.0}
Word element => {'uneven': 1.0, 'tires': 1.0, 'outside': 1.0, 'if': 1.0, 'would': 1.0, 'had': 1.0, 'remarked': 1.0, 'was': 1.0, 'number': 1.0, 'run': 1.0, 'power': 1.0, 'exercising': 1.0, 'cars': 1.0, 'lifting': 1.0, 'weight': 1.0, 'least': 1.0, 'seems': 1.0, 'everyone': 1.0, 'any': 1.0, 'out': 2.0, 'lift': 1.0, 'heavy': 1.0, 'but': 2.0, 'heavily': 1.0, 'van': 1.0, 'will': 1.0, 'errands': 2.0, 'car': 1.0, 'taking': 1.0, 'appropriate': 1.0, 'not': 2.0, 'issue': 1.0, '1000': 1.0, 'running': 2.0, 'have': 4.0, 'walking': 2.0, 'extras': 1.0, 'goes': 1.0, 'up': 1.0, 'child': 1.0, 'go': 2.0, 'two': 1.0, 'walks': 3.0, 'fit': 1.0, 't': 2.0, 'a': 5.0, 'one': 7.0, 'describe': 1.0, 'cadillac': 1.0, 'bought': 1.0, 'curbs': 1.0, 'jogger': 1.0, 'features': 1.0, 'take': 2.0, 'in': 6.0, 'use': 1.0, 'to': 8.0, 'however': 1.0, 'know': 2.0, 'easy': 2.0, 've': 1.0, 'down': 2.0, 'complaint': 1.0, 'large': 3.0, 'by': 1.0, 'i': 11.0, 'etc': 1.0, 'met': 1.0, 'turning': 1.0, 'needs': 1.0, 'twins': 2.0, 'you': 3.0, 'great': 2.0, 'love': 1.0, 'for': 8.0, 'it': 4.0, 'sidewalks': 1.0, 'this': 6.0, 'with': 5.0, 'surfaces': 1.0, 'stores': 1.0, 'ever': 1.0, 'all': 1.0, 'other': 2.0, 'how': 1.0, 'stroller': 10.0, 'me': 1.0, 'my': 3.0, 'boys': 2.0, 'are': 4.0, 'recommended': 1.0, 'and': 14.0, 'don': 2.0, 'discontinuing': 1.0, 'seats': 2.0, 'why': 1.0, 'very': 5.0, 'many': 1.0, 'baby': 1.0, 'strollers': 3.0, 'plush': 1.0, 'ways': 1.0, 'through': 1.0, 'door': 1.0, 'walk': 3.0, 'no': 2.0, 'exactly': 1.0, 'naps': 1.0, 'separately': 1.0, 'comfortable': 1.0, 'belly': 1.0, 'dog': 1.0, 'problem': 2.0, 'radius': 1.0, 'is': 11.0, 'at': 2.0, 'much': 1.0, 'only': 3.0, 'better': 1.0, 'than': 2.0, 'long': 2.0, 'on': 3.0, 'even': 1.0, 'jogging': 1.0, 'light': 1.0, 'looking': 1.0, 'straps': 1.0, 'buy': 1.0, 'so': 3.0, 'can': 2.0, 'aisles': 1.0, 'because': 1.0, 'that': 4.0, 'wanted': 1.0, 'side': 2.0, 'threaded': 1.0, 'like': 1.0, 'rather': 2.0, 'the': 14.0, 'of': 4.0, 'twin': 2.0, 'tandem': 1.0, 'back': 2.0, 'store': 1.0, 'boards': 1.0, 'everything': 1.0, 'be': 1.0, 'parents': 1.0, 'bar': 1.0, 'trays': 1.0, 'someone': 1.0, 'otherwise': 1.0, 'rain': 1.0, 'bonnet': 1.0, 'after': 1.0}
Word element => {'rolling': 1.0, 'car': 1.0, 'a': 1.0, 'and': 1.0, 'amazing': 1.0, 'being': 1.0, 'is': 2.0, 'shoulders': 1.0, 'only': 1.0, 'this': 1.0, 'think': 1.0, 'as': 1.0, 'from': 2.0, 'thing': 1.0, 'an': 1.0, 'stroller': 1.0, 'we': 1.0, 'miss': 1.0, 'that': 2.0, 'one': 1.0, 'seatbelts': 1.0, 'down': 1.0, 'works': 1.0, 'way': 1.0, 'the': 2.0, 'same': 1.0, 'perfect': 1.0, 'in': 1.0}
Word element => {'used': 1.0, 'time': 1.0, 'stain': 1.0, 'big': 1.0, 'straps': 1.0, 'wash': 1.0, 'at': 1.0, 'seats': 1.0, 'security': 1.0, 'feeling': 1.0, 'pay': 1.0, 'small': 1.0, 'but': 2.0, 'nicely': 1.0, 'heavy': 1.0, 'never': 1.0, 'll': 1.0, 'with': 1.0, 'betting': 1.0, 'd': 1.0, 'price': 1.0, 'm': 1.0, 'washed': 1.0, 'impressed': 1.0, 'on': 1.0, 'strollers': 1.0, 'them': 4.0, 'putting': 1.0, 'instead': 1.0, 'their': 1.0, 'these': 1.0, 'carrying': 1.0, 'it': 6.0, 'pain': 1.0, 'carseats': 1.0, 'this': 2.0, 'wasn': 1.0, 'newborn': 1.0, 'definately': 1.0, 'base': 2.0, 'installed': 1.0, 'new': 1.0, 'super': 1.0, 'drop': 1.0, 'recommend': 1.0, 'was': 4.0, 'i': 7.0, 'let': 2.0, 'the': 10.0, 'my': 1.0, 'fabric': 2.0, 'different': 1.0, 's': 2.0, 't': 3.0, 'a': 6.0, 'see': 2.0, 'entire': 1.0, 'one': 1.0, 'bought': 1.0, 'dismantling': 1.0, 'colors': 1.0, 'has': 1.0, 'brand': 1.0, 'chore': 1.0, 'makes': 1.0, 'to': 4.0, 'seat': 2.0, 'brought': 1.0, 'version': 1.0, 'like': 2.0, 'know': 1.0, 'of': 3.0, 'for': 2.0, 'looked': 1.0, 'properly': 2.0, 'you': 5.0, 'twins': 1.0, 'when': 1.0, 'that': 2.0, 'into': 1.0, 'very': 2.0, 'also': 1.0, 'secure': 1.0, 'click': 1.0, 'running': 1.0, 'connected': 1.0, 'what': 2.0, 'didn': 2.0, 'weight': 1.0, 'those': 1.0, 'and': 3.0, 'moms': 1.0, 'level': 1.0, 'is': 1.0, 'around': 1.0}
Word element => {'purchase': 1.0, 'decent': 1.0, 'though': 1.0, '60': 1.0, 'overall': 1.0, 'at': 1.0, 'look': 1.0, 'to': 1.0, 'than': 1.0, 'other': 1.0, 'anything': 1.0, 'suitable': 1.0, 'imagine': 1.0, 'stringy': 1.0, 'i': 1.0, 'cheap': 1.0, 'kind': 1.0, 'cute': 1.0, 'them': 1.0, 'sheet': 1.0, 'just': 1.0, 'of': 2.0, 'set': 1.0, 'really': 2.0, 'is': 3.0, 't': 1.0, 'booties': 1.0, 'the': 3.0, 'my': 1.0, 'pair': 1.0, 'a': 3.0, 'small': 1.0, '10th': 1.0, 'little': 1.0, 'bed': 1.0, 'for': 3.0, 'infant': 1.0, 'quality': 1.0, 'but': 1.0, 'toddler': 1.0, 'low': 1.0, 'mattress': 1.0, 'can': 1.0, 'item': 1.0}
Word element => {'and': 1.0, 'is': 1.0, 'perfect': 1.0, 'but': 1.0, 'intact': 1.0, 'months': 1.0, 'a': 1.0, 'for': 1.0, 'here': 1.0, 'i': 1.0, 'it': 2.0, 'adorable': 1.0, 'be': 1.0, 't': 1.0, 'haven': 1.0, 'used': 1.0, 'yet': 1.0, 'the': 1.0, 'not': 1.0, 'few': 1.0, 'baby': 1.0, 'will': 1.0}
Word element => {'much': 1.0, 'fix': 1.0, 'and': 1.0, 'the': 1.0, 'on': 1.0, 'closed': 1.0, 'thank': 1.0, 'they': 3.0, 'mistake': 1.0, 'so': 1.0, 'order': 1.0, 'minutes': 1.0, 'a': 1.0, 'it': 2.0, 'my': 1.0, 'went': 1.0, 'you': 1.0, 'way': 2.0, 'i': 1.0, 'to': 1.0, 'fixed': 1.0, 'thier': 1.0, '3': 1.0, 'before': 1.0, 'for': 1.0, 'day': 1.0, 'made': 1.0, 'out': 1.0, 'of': 1.0}
Word element => {'born': 1.0, 'were': 1.0, 'love': 1.0, 'worth': 1.0, 'materials': 1.0, 'my': 1.0, 'mostly': 1.0, 'will': 1.0, 'doesn': 1.0, 'loved': 1.0, 'it': 4.0, 'this': 1.0, 'great': 1.0, 'the': 1.0, 't': 1.0, 'grandson': 1.0, 's': 1.0, 'also': 1.0, 'cheap': 1.0, 'i': 1.0, 'product': 1.0, 'buying': 1.0, 'look': 1.0, 'new': 1.0}
Word element => {'s': 1.0, 'baby': 1.0, 'theme': 1.0, 'great': 1.0, 'price': 1.0, 'for': 2.0, 'any': 1.0, 'quality': 1.0, 'room': 1.0, 'is': 1.0, 'a': 1.0, 'so': 2.0, 'but': 1.0, 'you': 1.0, 'won': 1.0, 't': 1.0, 'value': 1.0, 'the': 1.0, 'find': 1.0, 'better': 1.0}
Word element => {'well': 1.0, 'they': 1.0, 'looking': 1.0, 'similar': 1.0, 'as': 1.0, 'very': 1.0, 'been': 1.0, 'were': 1.0, 'something': 1.0, 'for': 1.0, 'i': 3.0, 'when': 1.0, 'expensive': 1.0, 'bag': 1.0, 'came': 1.0, 'upon': 1.0, 'diaper': 1.0, 'the': 1.0, 'have': 1.0, 'had': 2.0, 'to': 1.0, 'was': 1.0, 'but': 1.0, 'surprised': 1.0, 'it': 1.0, 'this': 1.0, 'with': 1.0}
Word element => {'room': 1.0, 's': 1.0, 'boy': 1.0, 'my': 1.0, 'looks': 1.0, 'now': 1.0, 'very': 1.0, 'as': 1.0, 'go': 1.0, 'how': 1.0, 'so': 1.0, 'on': 1.0, 'in': 1.0, 'pieces': 1.0, 'but': 1.0, 'will': 1.0, 'forms': 1.0, 'fact': 1.0, 'and': 3.0, 'i': 3.0, 'are': 3.0, 't': 1.0, 'the': 6.0, 'made': 1.0, 'comforter': 1.0, 'that': 1.0, 'for': 1.0, 'yet': 1.0, 'love': 2.0, 'this': 1.0, 'it': 3.0, 'good': 1.0, 'embroidered': 1.0, 'baby': 1.0, 'don': 1.0, 'colors': 1.0, 'vibrant': 1.0, 'washed': 1.0, 'well': 1.0, 'solid': 1.0, 'all': 1.0, 'have': 1.0, 'item': 1.0, 'know': 1.0, 'not': 1.0}
Word element => {'nice': 1.0, 'but': 1.0, 'cute': 1.0, 'how': 1.0, 'and': 1.0, 'washes': 1.0, 'know': 1.0, 'its': 1.0, 'dont': 1.0, 'a': 1.0, 'feels': 1.0, 'with': 1.0, 'fabric': 1.0, 'feel': 1.0, 'it': 2.0, 'havent': 1.0, 'used': 1.0, 'disapointing': 1.0, 'yet': 1.0, 'bit': 1.0, 'so': 1.0}
Word element => {'because': 1.0, 'crib': 1.0, 'hit': 1.0, 'times': 1.0, 'will': 1.0, 'on': 2.0, 'stepping': 1.0, 'has': 1.0, 'up': 1.0, 'use': 1.0, 'his': 1.0, 'sturdy': 1.0, 'not': 2.0, 'do': 1.0, 'and': 3.0, 'designs': 1.0, 'pieces': 1.0, 'is': 5.0, 'print': 1.0, 'cute': 1.0, 'found': 1.0, 'ark': 1.0, 'been': 1.0, 'that': 2.0, 'all': 1.0, 'our': 1.0, 'crushing': 1.0, 'of': 2.0, 'i': 1.0, 'old': 1.0, 'cheap': 1.0, 'for': 1.0, 'my': 1.0, 'the': 7.0, 'cutest': 1.0, 'head': 1.0, 'husband': 1.0, 'noah': 1.0, 'biggest': 1.0, 'super': 1.0, 'but': 1.0, 'like': 1.0, 'it': 3.0, 'with': 1.0, 'he': 3.0, 'came': 1.0, 's': 1.0, 'we': 1.0, 'could': 1.0, 'a': 1.0, 'flimsy': 1.0, 'at': 1.0, 'since': 1.0, 'lot': 1.0, 'so': 2.0, 'stand': 1.0, '8': 1.0, 'bumper': 2.0, 'complaint': 1.0, 'son': 1.0, 'one': 1.0, 'months': 1.0, 'ever': 1.0}
Word element => {'bag': 1.0, 'a': 1.0, 'got': 1.0, 'all': 1.0, 'absolutely': 1.0, 'love': 1.0, 'i': 2.0, 'wonderful': 1.0, 'it': 4.0, 'this': 1.0, 'is': 1.0, 'pieces': 1.0, 'what': 1.0, 'crib': 1.0, 'baby': 1.0, 'will': 1.0, 'diaper': 1.0, 'the': 1.0, 'are': 1.0, 'and': 1.0, 's': 1.0, 'exactly': 1.0, 'be': 1.0, 'set': 1.0, 'there': 1.0, 'plus': 1.0, 'says': 1.0}
Word element => {'five': 1.0, 'four': 1.0, 'rated': 1.0, 'choking': 1.0, 'enough': 1.0, 'that': 1.0, 'because': 2.0, 'storage': 1.0, 'deteriorate': 1.0, 'having': 1.0, 'chance': 1.0, 'take': 1.0, 'loose': 1.0, 'break': 2.0, 'concern': 1.0, 'unlikely': 1.0, 'parts': 1.0, 'ends': 1.0, 'beaded': 1.0, 'although': 1.0, 'profit': 1.0, 'donate': 1.0, 'else': 1.0, 'down': 1.0, 'hand': 1.0, 'only': 1.0, 'with': 1.0, 'would': 3.0, 'personally': 1.0, 'in': 1.0, 'very': 1.0, 'little': 2.0, 'provide': 1.0, 'due': 1.0, 'various': 1.0, 'bell': 2.0, 'fastened': 2.0, 'infant': 1.0, 'all': 1.0, 'an': 1.0, 'be': 3.0, 'attract': 1.0, 'many': 1.0, 'colorful': 1.0, 'it': 6.0, 'tactile': 1.0, 'to': 12.0, 'star': 2.0, 'easier': 1.0, 'become': 2.0, 'toy': 9.0, 'i': 4.0, 'well': 1.0, 'toxic': 1.0, 'your': 1.0, 'perlina': 3.0, 'edges': 1.0, 'his': 1.0, 'size': 1.0, 'as': 2.0, 'unable': 1.0, 'surfaces': 1.0, 'anyone': 1.0, 'and': 7.0, 'seem': 1.0, 'hands': 1.0, 'cord': 1.0, 'for': 2.0, 'make': 2.0, 'significant': 1.0, 'clutching': 3.0, 'strung': 1.0, 'seems': 1.0, 'will': 1.0, 'interest': 1.0, 'perfect': 1.0, 'conditions': 1.0, 'this': 4.0, 'than': 1.0, 'does': 1.0, 'grasp': 1.0, 's': 3.0, 'small': 1.0, 'tiny': 1.0, 'a': 5.0, 'child': 1.0, 'haba': 1.0, 'toys': 1.0, 'the': 22.0, 'attention': 1.0, 'of': 6.0, 'market': 1.0, 'beads': 2.0, 'noise': 1.0, 'each': 1.0, 'shapes': 1.0, 'is': 4.0, 'more': 1.0, 'finished': 1.0, 'which': 1.0, 'side': 1.0, 'made': 1.0, 'was': 1.0, 'dye': 1.0, 'or': 3.0, 'pull': 1.0, 'my': 2.0, 'however': 1.0, 'grandson': 2.0, 'blue': 1.0, 'non': 2.0, 'begins': 1.0, 'further': 1.0, 'fairly': 1.0, 'are': 3.0, 'matte': 1.0, 'when': 2.0, 'ones': 1.0, 'one': 2.0, 'smaller': 1.0, 'stretch': 1.0, 'use': 3.0, 'gnaw': 1.0, 'appears': 1.0, 'teething': 2.0, 'aid': 1.0, 'loops': 2.0, 'loves': 1.0, 'flat': 1.0, 'portion': 1.0, 'especially': 1.0, 'hazards': 1.0, 'gums': 1.0, 'sore': 1.0, 'center': 1.0, 'from': 1.0, 'colorfast': 1.0, 'not': 4.0, 'on': 7.0, 'amount': 1.0, 'securely': 2.0}
Word element => {'a': 1.0, 's': 1.0, 'room': 1.0, 'son': 1.0, 'cute': 1.0, 'bag': 1.0, 'for': 1.0, 'diaper': 1.0, 'shipped': 1.0, 'my': 1.0, 'the': 2.0, 'or': 1.0, 'was': 2.0, 'it': 1.0, 'perfect': 1.0, 'easy': 1.0, 'newborn': 1.0, 'once': 1.0, 'to': 1.0, 'set': 1.0, 'very': 1.0, 'up': 1.0, 'and': 1.0}
Word element => {'company': 1.0, 'stated': 1.0, 'and': 1.0, 'up': 1.0, '100': 1.0, 'i': 2.0, 'buy': 1.0, 'soft': 1.0, 'so': 1.0, 'again': 1.0, 'yes': 1.0, 'is': 2.0, 'then': 1.0, 'better': 1.0, 'keep': 1.0, 'good': 1.0, 'expectation': 1.0, 'the': 1.0, 'will': 1.0, 'work': 1.0, 'as': 1.0, 'from': 1.0, 'cotton': 1.0, 'it': 2.0, 'this': 1.0}
Word element => {'buys': 1.0, 'one': 1.0, 'hope': 1.0, 'upset': 1.0, 'am': 1.0, 'defective': 1.0, 'have': 1.0, 'back': 1.0, '33': 1.0, 'out': 1.0, 'h': 1.0, 'are': 1.0, 'blanket': 1.0, 'like': 1.0, 'for': 1.0, 'pads': 1.0, 'to': 2.0, 'very': 1.0, 'later': 2.0, 'days': 1.0, 'no': 1.0, 'gotten': 1.0, 'day': 2.0, 'on': 2.0, 'washed': 1.0, 'make': 1.0, 'frogs': 1.0, '12': 2.0, 'apart': 1.0, 'else': 1.0, '85': 1.0, 'everything': 1.0, 'bumper': 1.0, 'falling': 1.0, 'took': 1.0, 'wash': 1.0, 'anyway': 1.0, 'waited': 1.0, '15': 1.0, 'so': 2.0, 'wish': 1.0, 'crib': 2.0, 'hadn': 2.0, 'had': 1.0, 'lily': 1.0, 'really': 1.0, 't': 2.0, 'could': 2.0, 's': 1.0, 'set': 2.0, 'about': 2.0, 'when': 1.0, 'again': 1.0, 'received': 2.0, 'with': 1.0, 'it': 2.0, 'its': 1.0, 'do': 1.0, 'dollars': 1.0, 'was': 4.0, 'refund': 1.0, 'kinda': 1.0, 'immediately': 1.0, 'would': 1.0, 'com': 1.0, 'but': 2.0, 'policy': 1.0, 'exception': 1.0, 'and': 10.0, 'me': 1.0, 'my': 1.0, 'chance': 1.0, 'yet': 1.0, 'furious': 1.0, 'sewn': 1.0, 'patches': 1.0, 'they': 3.0, 'i': 15.0, 'coming': 1.0, 'got': 2.0, 'onto': 1.0, 'told': 1.0, 'best': 1.0, 'product': 3.0, 'price': 1.0, 're': 1.0, 'phone': 1.0, 'off': 1.0, 'see': 1.0, 'returning': 1.0, 'offers': 1.0, '7': 1.0, 'return': 1.0, 'a': 5.0, 'emailed': 1.0, 'if': 1.0, 'asked': 1.0, 'all': 1.0, 'an': 1.0, '66': 1.0, 'call': 1.0, 'this': 4.0, 'few': 1.0, 'hours': 1.0, 'half': 1.0, 'the': 8.0, 'of': 2.0, 'amazon': 1.0, 'been': 1.0, 'only': 2.0, 'company': 2.0, 'paid': 1.0}
Word element => {'inlove': 1.0, 'and': 1.0, 'items': 1.0, 'its': 1.0, 'ruuff': 1.0, 'itss': 1.0, 'i': 2.0, 'solf': 1.0, 'love': 1.0, 'supper': 1.0, 'free': 1.0, 'really': 1.0, 'this': 1.0, 'it': 2.0, 'come': 1.0, 'with': 2.0, 'all': 1.0, 'not': 1.0, 'just': 1.0, 'the': 2.0, 'well': 1.0, 'fall': 1.0, 'as': 1.0, 'shipping': 1.0, 'wooooww': 1.0}
Word element => {'amazing': 1.0, 'looks': 1.0, 's': 1.0, 'this': 1.0, 'set': 1.0, 'now': 1.0, 'room': 1.0, 'is': 1.0, 'we': 1.0, 'everything': 1.0, 'expectations': 1.0, 'wanted': 1.0, 'and': 1.0, 'more': 1.0, 'baby': 1.0, 'exceeded': 1.0, 'our': 1.0}
Word element => {'hope': 1.0, 'washed': 1.0, 't': 2.0, 'quality': 1.0, 'apart': 1.0, 'haven': 1.0, 'better': 1.0, 'yet': 1.0, 'the': 2.0, 'doesn': 1.0, 'a': 1.0, 'price': 1.0, 'fall': 1.0, 's': 1.0, 'perfect': 1.0, 'i': 2.0, 'though': 1.0, 'for': 1.0, 'wish': 1.0, 'so': 1.0, 'sheets': 1.0, 'it': 3.0, 'were': 1.0}
Word element => {'the': 1.0, 'throw': 1.0, 'trash': 1.0, 'in': 1.0, 'had': 1.0, 'not': 2.0, 'too': 1.0, 'good': 1.0, 'to': 1.0, 'once': 1.0, 'it': 3.0, 'cute': 1.0, 'worth': 1.0, 'wash': 1.0, 'but': 1.0, 'very': 1.0, 'and': 1.0}
Word element => {'cute': 1.0, 'should': 1.0, 'what': 1.0, 'am': 1.0, 'all': 2.0, 'padding': 2.0, 'do': 1.0, 'much': 1.0, 'there': 2.0, 'set': 1.0, 'look': 1.0, 'right': 1.0, 'not': 4.0, 'was': 3.0, 'everyone': 1.0, 'really': 1.0, 'material': 1.0, 'bought': 2.0, 'consideration': 1.0, 'took': 1.0, 'i': 6.0, 'baby': 1.0, 'does': 1.0, 'because': 1.0, 'sister': 1.0, 'satisfied': 1.0, 'liked': 1.0, 'into': 1.0, 'greatest': 1.0, 'reviews': 1.0, 'for': 4.0, 'actually': 1.0, 'decoration': 1.0, 'it': 5.0, 'she': 1.0, 'my': 1.0, 'the': 7.0, 'is': 3.0, 'more': 1.0, 'her': 1.0, 'in': 2.0, 'bumper': 1.0, 'this': 1.0, 'soft': 1.0, 'knew': 1.0, 'new': 1.0, 'would': 1.0, 'and': 4.0, 'pattern': 1.0, 'too': 1.0, 'safety': 1.0, 'so': 2.0, 's': 1.0, 'read': 1.0, 'very': 1.0, 'no': 1.0, 'but': 1.0, 'crib': 1.0}
Word element => {'far': 1.0, 'so': 1.0, 'compliments': 1.0, 'lots': 1.0, 'cute': 1.0, 'two': 1.0, 'love': 1.0, 'the': 1.0, 'this': 1.0, 'that': 1.0, 'set': 1.0, 'one': 1.0, 'window': 1.0, 'had': 1.0, 'valences': 1.0, 'of': 2.0, 'very': 1.0, 'up': 1.0, 'only': 1.0, 'sets': 1.0}
Word element => {'last': 1.0, 'expect': 1.0, 'don': 1.0, 'back': 1.0, 'stitch': 1.0, 'able': 1.0, 'anything': 1.0, 'or': 1.0, 'unravel': 1.0, 'rail': 1.0, 'on': 1.0, 'tying': 1.0, 'off': 1.0, 'ties': 1.0, 'one': 1.0, 'have': 1.0, 'did': 1.0, 'multiple': 1.0, 'be': 1.0, 'as': 1.0, 'to': 4.0, 'way': 1.0, 'couple': 1.0, 'get': 1.0, 'price': 2.0, 'afraid': 1.0, 'for': 3.0, 'but': 4.0, 'an': 1.0, 'blue': 1.0, 'they': 1.0, 'reviews': 1.0, 'yes': 1.0, 'the': 9.0, 'of': 3.0, 'some': 1.0, 'things': 1.0, 'he': 1.0, 'fall': 1.0, 'is': 3.0, 'it': 8.0, 'looks': 1.0, 'really': 1.0, 'however': 1.0, 'bright': 1.0, 'didn': 1.0, 'okay': 2.0, 'like': 1.0, 'reading': 1.0, 'know': 1.0, 'after': 1.0, 'order': 1.0, 'recommend': 1.0, 'was': 4.0, 'set': 1.0, 'pleased': 1.0, 'i': 7.0, 'little': 2.0, 't': 2.0, 'a': 3.0, 's': 3.0, 'brighter': 1.0, 'should': 1.0, 'them': 1.0, 'subdued': 1.0, 'said': 1.0, 'in': 1.0, 'kids': 1.0, 'this': 1.0, 'pictures': 1.0, 'easily': 1.0, 'you': 2.0, 'when': 1.0, 'and': 2.0, 'green': 2.0, 'too': 1.0, 'slightly': 1.0, 'bumper': 1.0, 'now': 1.0, 'thin': 1.0, 'that': 1.0}
Word element => {'again': 1.0, 'designs': 1.0, 'soho': 1.0, 'anything': 1.0, 'never': 1.0, 'would': 1.0, 'please': 1.0, '1': 1.0, 'worst': 1.0, 'do': 2.0, 'star': 1.0, 'flusing': 1.0, 'material': 1.0, 'not': 2.0, 'fabric': 1.0, 'the': 4.0, 'quality': 1.0, 'from': 1.0, 'very': 2.0, 'like': 1.0, 'waste': 1.0, 'ever': 2.0, 'your': 1.0, 'buy': 1.0, 'cheap': 1.0, 'i': 2.0, 'money': 2.0, 'to': 1.0, 'its': 1.0, 'even': 1.0, 'down': 1.0, 'is': 1.0, 'want': 1.0, 'toilet': 1.0, 'give': 1.0}
Word element => {'also': 1.0, 'nice': 1.0, 'it': 1.0, 'worth': 1.0, 'its': 2.0, 'having': 1.0, 'soft': 1.0, 'if': 1.0, 'to': 1.0, 'being': 1.0, 'different': 1.0, 'are': 1.0, 'like': 1.0, 'know': 1.0, 'and': 1.0, 'a': 1.0, 'don': 1.0, 'have': 1.0, 't': 1.0, 'set': 1.0, 'you': 1.0, 'what': 1.0}
Word element => {'yet': 1.0, 'born': 1.0, 'son': 1.0, 'product': 1.0, 'in': 1.0, 'am': 1.0, 'quality': 1.0, 'good': 1.0, 'like': 1.0, 'seem': 1.0, 'designs': 1.0, 'been': 1.0, 'blue': 1.0, 'they': 2.0, 'ruffle': 1.0, 'green': 2.0, 'is': 2.0, 'crib': 1.0, 'either': 1.0, 'would': 1.0, 'manufacturers': 1.0, 'have': 5.0, 'dryer': 1.0, 'those': 1.0, 'me': 1.0, 'may': 1.0, 'my': 4.0, 'holds': 1.0, 'around': 1.0, 'disappointed': 1.0, 'how': 1.0, 'wrong': 1.0, 'washing': 1.0, 'on': 6.0, 'washed': 2.0, 'depending': 1.0, 'considered': 1.0, 'different': 2.0, 'a': 4.0, 't': 4.0, 'your': 1.0, 'flimsy': 1.0, 'thin': 2.0, 'with': 1.0, 'was': 2.0, 'for': 3.0, 'frogs': 1.0, 'should': 2.0, 'say': 1.0, 'registered': 1.0, 'ended': 1.0, 'baby': 1.0, 'diaper': 2.0, 'light': 1.0, 'bag': 2.0, 'need': 2.0, 'the': 18.0, 'of': 3.0, 'up': 2.0, 'wash': 2.0, 'don': 3.0, 'sister': 1.0, 'this': 2.0, 'found': 1.0, 'already': 1.0, 'it': 3.0, 'i': 13.0, 'one': 1.0, 'too': 1.0, 'and': 12.0, 'when': 2.0, 'again': 1.0, '80': 1.0, 'but': 1.0, 'blankets': 1.0, 'most': 1.0, 'very': 3.0, 'read': 1.0, 'got': 1.0, 'dried': 1.0, 'changing': 2.0, 'shipping': 1.0, 'opened': 1.0, 'money': 1.0, 'instructions': 3.0, 'before': 1.0, 'new': 2.0, 'time': 1.0, 'blanket': 3.0, 'plus': 1.0, 'are': 3.0, 'gentle': 2.0, 'cycle': 2.0, 'to': 2.0, 'all': 1.0, 'pads': 1.0, 'hand': 2.0, 'waste': 1.0, 'set': 3.0, 'comforter': 1.0, 'no': 2.0, 'pad': 2.0, 'snags': 1.0, 'even': 1.0, 'took': 1.0, 'out': 1.0, 'buying': 1.0, 'low': 1.0, 'going': 1.0, 'heat': 1.0, 'hasn': 1.0, 'paid': 1.0, 'usually': 1.0, 'only': 1.0, 'followed': 1.0, 'guess': 1.0, 'lily': 1.0, 'sheet': 4.0, 'came': 1.0, 'apart': 1.0, 'everything': 1.0, 'there': 2.0, 'seams': 1.0, 'that': 2.0, 'problems': 1.0, 'everywhere': 1.0, 'figured': 1.0, 'plain': 1.0, 'parents': 1.0}
Word element => {'baby': 1.0, 'care': 1.0, 'take': 1.0, 'to': 2.0, 'grooming': 1.0, 'quality': 1.0, 'really': 1.0, 'most': 1.0, 'for': 1.0, 'one': 2.0, 'of': 3.0, 'set': 1.0, 'i': 3.0, 'guess': 1.0, 'makes': 1.0, 'these': 1.0, 'the': 3.0, 'ok': 1.0, 'it': 1.0, 'you': 1.0, 's': 1.0, 'no': 1.0, 'things': 1.0, 'babies': 1.0, 'have': 3.0, 'used': 1.0, 'good': 1.0, 'think': 1.0}
Word element => {'clear': 1.0, 'separately': 1.0, 'buying': 1.0, 'off': 1.0, 'better': 1.0, 'been': 1.0, 'have': 1.0, 'else': 1.0, 'recommend': 1.0, 'wouldn': 1.0, 'zippers': 1.0, 'velcro': 1.0, 'flimsy': 1.0, 'worst': 1.0, 'probably': 1.0, 'bag': 2.0, 'design': 1.0, 'poor': 1.0, 'just': 2.0, 'is': 3.0, 'together': 1.0, 'stay': 1.0, 'something': 1.0, 'would': 2.0, 'spot': 1.0, 'great': 1.0, 'the': 8.0, 'a': 3.0, 't': 2.0, 'too': 1.0, 'and': 3.0, 'break': 1.0, 'nail': 1.0, 'in': 3.0, 'detach': 1.0, 'having': 1.0, 'i': 5.0, 'cheap': 2.0, 'handy': 1.0, 'are': 4.0, 'clippers': 1.0, 'this': 3.0, 'first': 1.0, 'it': 4.0, 'before': 1.0, 'nasal': 1.0, 'to': 1.0, 'as': 1.0, 'all': 3.0, 'comb': 1.0, 'hairbrush': 1.0, 'putting': 1.0, 'anyone': 1.0, 'be': 1.0, 'there': 2.0, 'of': 3.0, 'material': 1.0, 'really': 2.0, 'products': 3.0, 'some': 2.0, 'other': 1.0, 'so': 1.0, 'however': 1.0, 'won': 1.0, 'purchase': 1.0, 'my': 1.0, 'another': 1.0, 'reviewer': 1.0, 'baby': 1.0, 'them': 2.0, 'using': 2.0, 'like': 1.0, 'purchased': 1.0, 'had': 1.0, 'aspirator': 1.0, 'part': 2.0, 'while': 1.0, 'apart': 1.0, 'if': 1.0, 'makeup': 1.0, 'or': 2.0, 'held': 1.0, 'squeezing': 1.0, 'differently': 1.0, 'again': 1.0, 'when': 1.0}
Word element => {'one': 1.0, 'square': 1.0, 'back': 1.0, 'm': 1.0, 'now': 1.0, 'because': 1.0, 'sent': 1.0, 'disappointing': 1.0, 'above': 1.0, 'an': 1.0, 'at': 1.0, 'option': 1.0, 'given': 1.0, 'seller': 1.0, 'me': 1.0, 'not': 2.0, 'of': 1.0, 'completely': 1.0, 'very': 1.0, 'specifically': 1.0, 'ordered': 1.0, 'ordering': 1.0, 'different': 2.0, 'i': 4.0, 'for': 1.0, 'product': 3.0, 'based': 1.0, 'this': 4.0, 'with': 1.0, 'only': 1.0, 'contacting': 1.0, 'item': 5.0, 'contents': 1.0, 'the': 6.0, 'but': 2.0, '2': 1.0, 'received': 1.0, 'after': 2.0, 'refund': 1.0, 'was': 4.0, 'request': 1.0, 'described': 1.0, 'to': 1.0, 'as': 1.0, 'a': 2.0, 'return': 1.0, 'and': 3.0, 'description': 1.0, 'similar': 1.0, 'on': 1.0, '3': 1.0, 'exchange': 1.0, 'features': 1.0, 'amazon': 1.0, 'listed': 1.0, 'learned': 1.0, 'possible': 1.0, 'my': 1.0}
Word element => {'billy': 1.0, 'you': 1.0, 'kid': 1.0, 'for': 1.0, 'room': 1.0, 'most': 2.0, 'perfect': 3.0, 'deal': 1.0, 'sets': 1.0, 'so': 2.0, 'day': 1.0, 'thick': 1.0, 'great': 1.0, 'the': 5.0, 'my': 1.0, 'are': 1.0, 'house': 1.0, 'loves': 1.0, 'mommy': 1.0, 'think': 1.0, 'next': 1.0, 'is': 1.0, 'its': 1.0, 'to': 2.0, 'came': 1.0, 'it': 2.0, 'not': 1.0, 'like': 1.0, 'blankets': 1.0, 'expensive': 1.0, 'sweet': 1.0, 'where': 1.0, 'touch': 1.0, 'i': 1.0, 'a': 1.0}
Word element => {'be': 1.0, 'couldn': 1.0, 'after': 1.0, 'order': 1.0, 'days': 1.0, '3': 1.0, 'to': 1.0, 'i': 5.0, 'and': 5.0, 'get': 1.0, 'just': 1.0, 'expecting': 1.0, 'got': 2.0, 'in': 2.0, 'the': 3.0, 'great': 2.0, 'me': 1.0, 'shipper': 1.0, 'soft': 1.0, 'this': 3.0, 'mail': 1.0, 'wasn': 1.0, 'know': 1.0, 'like': 1.0, 'my': 1.0, 'love': 1.0, 'for': 1.0, 'set': 2.0, 'of': 1.0, 'only': 1.0, 'much': 1.0, 'from': 1.0, 'very': 1.0, 'price': 1.0, 'because': 1.0, 'usually': 1.0, 'you': 2.0, 'happier': 1.0, 'prints': 1.0, 'what': 1.0, 'pay': 1.0, 'but': 1.0, 'quality': 1.0, 'is': 1.0, 'it': 3.0, 'looks': 1.0, 't': 2.0, 'a': 1.0, 'graphics': 1.0, 'wonderful': 1.0}
Word element => {'bumper': 1.0, 'and': 1.0, 'blanky': 1.0, 'never': 1.0, 's': 1.0, 'fit': 2.0, 'the': 2.0, 'right': 1.0, 'to': 1.0, 'that': 1.0, 'many': 1.0, 'no': 1.0, 'good': 1.0, 'changer': 1.0, 'material': 1.0, 'thing': 1.0, 'is': 2.0, 'useless': 1.0, 'diaper': 1.0, 'maby': 1.0}
Word element => {'room': 1.0, 'look': 1.0, 'blue': 1.0, 'dark': 1.0, 'how': 1.0, 'll': 1.0, 'so': 1.0, 'girl': 1.0, 'with': 1.0, 'other': 1.0, 'm': 1.0, 'price': 1.0, 'worth': 1.0, 'well': 1.0, 'plaid': 1.0, 'tying': 1.0, 'think': 1.0, 'would': 1.0, 'which': 1.0, 'back': 1.0, 'tie': 1.0, 'have': 1.0, 'kind': 2.0, 'pastel': 1.0, 'expecting': 1.0, 'was': 1.0, 'online': 1.0, 'see': 2.0, 'is': 5.0, 'to': 1.0, 'any': 2.0, 'exact': 1.0, 'for': 1.0, 'velcro': 1.0, 'assumed': 1.0, 'judging': 1.0, 'not': 2.0, 'underneath': 1.0, 'they': 3.0, 'place': 1.0, 'the': 15.0, 'we': 1.0, 'a': 5.0, 't': 1.0, 'safer': 1.0, 'show': 4.0, 'bib': 1.0, 'lot': 1.0, 'cheaper': 1.0, 'don': 1.0, 'materials': 1.0, 'bright': 2.0, 'however': 1.0, 'everything': 1.0, 'else': 1.0, 'seem': 1.0, 'you': 4.0, 'though': 1.0, 'colors': 1.0, 'brighter': 1.0, 'high': 1.0, 'one': 1.0, 'color': 1.0, 'send': 1.0, 'quality': 1.0, 'crib': 1.0, 'lime': 3.0, 'set': 4.0, 'of': 1.0, 'comforter': 1.0, 'that': 1.0, 'picture': 1.0, 'purple': 1.0, 'i': 4.0, 'much': 3.0, 'do': 1.0, 'pretty': 1.0, 'green': 3.0, 'and': 3.0, 'too': 1.0, 'by': 1.0, 'in': 4.0, 'this': 1.0, 'pictures': 3.0, 'does': 1.0, 'than': 3.0}
Word element => {'bed': 1.0, 'on': 1.0, 'this': 1.0, 'wait': 1.0, 'can': 1.0, 'hot': 1.0, 'have': 1.0, 'in': 1.0, 'because': 1.0, 'to': 3.0, 'my': 1.0, 't': 1.0, 'the': 3.0, 'almost': 1.0, 'put': 1.0, 'but': 1.0, 'week': 1.0, 'deliver': 1.0, 'a': 3.0, 'texas': 1.0, 'i': 2.0, 'took': 1.0, 'super': 1.0, 'we': 1.0, 'standard': 1.0, 'tonight': 1.0, 'door': 1.0, 'is': 2.0, 'feels': 1.0, 'set': 1.0, 'cute': 1.0, 'soft': 1.0, 'do': 1.0, 'delivery': 1.0, 'and': 1.0, 'climate': 1.0, 'thin': 1.0, 'like': 2.0, 'satin': 1.0, 'that': 1.0, 'comforter': 1.0, 'little': 1.0}
Word element => {'anything': 1.0, 'would': 1.0, 'product': 1.0, 'for': 1.0, 'responsibility': 1.0, 'no': 1.0, 'taken': 1.0, 'have': 1.0, 'they': 1.0, 'gift': 1.0, 'since': 1.0, '10xs': 1.0, 'apart': 1.0, 'got': 1.0, 'then': 1.0, 'a': 4.0, 'there': 1.0, 'useless': 1.0, 'it': 5.0, 'first': 1.0, 'i': 3.0, 'the': 5.0, 'are': 2.0, 'colors': 1.0, 'worse': 1.0, 'stain': 1.0, 'after': 1.0, 'open': 1.0, 'from': 1.0, 'compared': 1.0, 'this': 1.0, 'pictures': 1.0, 'again': 1.0, 'when': 1.0, 'top': 1.0, 'very': 1.0, 'faded': 1.0, 'material': 1.0, 'that': 2.0, 'next': 1.0, 'received': 1.0, 'washing': 1.0, 'started': 1.0, 'because': 1.0, 'fall': 1.0, 'and': 3.0, 'was': 4.0, 'refund': 1.0, 'to': 4.0, 'all': 1.0, 'off': 1.0, 'seller': 2.0, 'amazon': 1.0, 'refusing': 1.0, 'not': 3.0, 'me': 2.0, 'give': 1.0, 'here': 1.0, 'within': 1.0, '7': 1.0, 'ever': 1.0, 'buy': 1.0, 'days': 1.0, 'sending': 1.0, 'did': 1.0}
Word element => {'mom': 1.0, 'daughter': 1.0, 'since': 1.0, 'forward': 1.0, 'dissapointed': 1.0, 'really': 1.0, 'highly': 1.0, 'help': 1.0, 'no': 1.0, 'of': 1.0, '34': 2.0, 'set': 1.0, 'the': 3.0, 'made': 1.0, 'pieces': 1.0, 'in': 1.0, 'is': 2.0, 'use': 1.0, 'amazon': 1.0, 'this': 2.0, 'first': 2.0, 'it': 1.0, 'washed': 2.0, 'your': 1.0, 'will': 1.0, 'and': 5.0, 'product': 3.0, 'where': 1.0, 'half': 1.0, 'looking': 1.0, 'buy': 1.0, 'you': 2.0, 'to': 2.0, 'was': 3.0, 'store': 1.0, 'seller': 1.0, 'my': 1.0, 'save': 1.0, 'most': 1.0, 'money': 1.0, 'can': 1.0, 'are': 1.0, 'time': 1.0, 'sheet': 1.0, 'so': 1.0, 'thin': 1.0, 'would': 1.0, 'paper': 1.0, 'never': 1.0, 'go': 1.0, 'a': 3.0, 'we': 1.0, 'ripped': 1.0, 'poorly': 1.0, 'not': 1.0, 'because': 1.0, 'them': 2.0, 'quality': 1.0, 'exchange': 1.0}
Word element => {'s': 1.0, 'fabric': 1.0, 'came': 1.0, 'set': 1.0, 'pillows': 1.0, 'litte': 1.0, 'it': 1.0, 'advertised': 1.0, 'with': 1.0, 'is': 3.0, 'wish': 1.0, 'start': 1.0, 'and': 1.0, 'ok': 2.0, 'as': 1.0, 'comforter': 1.0, 'pistacchio': 1.0, 'green': 2.0, 'i': 2.0, 'your': 1.0, 'more': 1.0, 'the': 6.0, 'great': 1.0, 'for': 2.0, 'love': 1.0, 'bed': 1.0, 'price': 1.0, 'baby': 1.0, 'color': 1.0, 'not': 1.0, 'exactly': 1.0}
Word element => {'got': 1.0, 'less': 1.0, 'spend': 1.0, 'my': 1.0, 'went': 1.0, 'set': 1.0, '4pc': 1.0, 'only': 1.0, 'for': 2.0, 'all': 2.0, 'to': 1.0, 'much': 1.0, 'being': 1.0, 'ahead': 1.0, 'a': 1.0, 'well': 2.0, 'half': 1.0, 'than': 1.0, 'say': 1.0, 'but': 1.0, 'quality': 1.0, 'and': 5.0, 'else': 1.0, 'not': 1.0, 'nice': 1.0, 'at': 1.0, 'spent': 1.0, '150': 1.0, 'over': 1.0, 'i': 1.0, 'cheap': 1.0, 'more': 1.0, 'the': 2.0, 'worth': 1.0, 'sets': 1.0, 'money': 1.0, 'looking': 1.0, 'penny': 1.0, 'other': 1.0, 'them': 1.0}
Word element => {'i': 1.0, 'china': 1.0, 'made': 1.0, 'hand': 1.0, 'very': 1.0, 'from': 1.0, 'like': 1.0, 'and': 2.0, 'reality': 1.0, 'am': 1.0, 'shop': 1.0, 'beautiful': 1.0, 'not': 1.0, 'photos': 1.0, 'here': 1.0, 'dutty': 1.0, 'times': 1.0, 'quality': 1.0, 'but': 1.0, 'even': 1.0, 'bright': 1.0, 'after': 1.0, 'so': 3.0, 'really': 1.0, 'is': 1.0, 'second': 1.0, 'looks': 1.0, 'disappointed': 1.0, 'in': 3.0, 'had': 1.0, 'its': 2.0, 'dots': 1.0, 'it': 1.0, 'still': 1.0, 'bad': 1.0, 'have': 1.0, '3': 1.0, 'washed': 1.0}
Word element => {'boats': 1.0, 'son': 1.0, 'room': 1.0, 'effective': 1.0, 's': 1.0, 'products': 1.0, 'perfectly': 1.0, 'love': 4.0, 'it': 2.0, 'was': 1.0, 'cost': 1.0, 'and': 1.0, 'the': 1.0, 'my': 2.0, 'baby': 1.0, 'loves': 1.0, 'sailboats': 1.0, 'this': 1.0, 'fit': 1.0}
Word element => {'youmichelle': 1.0, 'gift': 1.0, 'can': 1.0, 'thank': 1.0, 'shades': 1.0, 'little': 1.0, 'baby': 1.0, 'many': 1.0, 'of': 1.0, 'blue': 1.0, 'great': 1.0, 'the': 1.0, 'for': 1.0, 'sailor': 1.0, 'perfect': 1.0, 'be': 1.0, 'blended': 1.0, 'shower': 1.0, 'it': 2.0, 'with': 1.0, 'anything': 1.0, 's': 2.0, 'a': 1.0, 'well': 1.0, 'that': 1.0, 'reversible': 1.0, 'as': 1.0}
Word element => {'though': 1.0, 'satisfied': 1.0, 'with': 2.0, 'came': 1.0, 'design': 1.0, 'like': 1.0, 'really': 2.0, 'very': 1.0, 'nicest': 1.0, 'crib': 1.0, 'will': 1.0, 'also': 1.0, 'shows': 1.0, 'do': 1.0, 'much': 2.0, 'different': 2.0, 'prominant': 1.0, 'in': 1.0, 'rid': 1.0, 'part': 1.0, 'hard': 1.0, 'that': 2.0, 'comforter': 1.0, 'pillow': 1.0, 'smell': 1.0, 'earthy': 1.0, 'price': 1.0, 'thing': 1.0, 'whole': 1.0, 'about': 1.0, 'bed': 1.0, 'color': 1.0, 'one': 3.0, 'too': 1.0, 'green': 1.0, 'and': 6.0, 'nice': 1.0, 'still': 1.0, 'well': 1.0, 'expected': 1.0, 'to': 2.0, 'this': 2.0, 'just': 1.0, 'large': 1.0, 'pictured': 1.0, 'picture': 2.0, 'got': 2.0, 'it': 5.0, 'looks': 1.0, 'the': 13.0, 'is': 4.0, 'more': 2.0, 'work': 1.0, 'money': 1.0, 'but': 2.0, 'i': 8.0, 'recieved': 1.0, 'what': 2.0, 'weird': 1.0, 'set': 6.0, 'of': 3.0, 'however': 1.0, 'if': 3.0, 'am': 1.0, 'you': 3.0, 'nicer': 2.0, 'are': 2.0, 'fit': 1.0, 'for': 1.0, 'cheap': 1.0, 'picky': 2.0, 'get': 2.0, 'kind': 1.0, 'unsure': 1.0, 'spending': 1.0, 'looking': 1.0, 'would': 1.0, 'was': 3.0, 'recommend': 1.0, 'make': 1.0, 'portable': 1.0, 'on': 1.0, 'go': 1.0, 's': 1.0, 'wont': 1.0, 'a': 4.0, 'than': 3.0, 'does': 1.0, 'because': 1.0, 'have': 2.0}
Word element => {'looking': 1.0, 'bed': 1.0, 'used': 1.0, 'would': 1.0, 'was': 1.0, 'thing': 1.0, 'be': 1.0, 'pillow': 3.0, 'it': 2.0, 'with': 1.0, 'diaper': 1.0, 'the': 2.0, 'but': 2.0, 'know': 1.0, 'not': 3.0, 'okay': 1.0, 'just': 1.0, 'every': 1.0, 'as': 1.0, 'very': 1.0, 'big': 1.0, 'regular': 1.0, 'is': 3.0, 'really': 2.0, 'of': 1.0, 'a': 4.0, 'piece': 1.0, 'foam': 1.0, 'cheap': 1.0, 'i': 1.0, 'bag': 1.0, 'cover': 1.0}
Word element => {'purchase': 1.0, 'bib': 1.0, 'them': 1.0, 'did': 2.0, 'what': 1.0, 'have': 1.0, 'no': 1.0, 'wall': 1.0, 'am': 1.0, 'idea': 1.0, 'squares': 1.0, 'easily': 1.0, 'of': 1.0, '2': 1.0, 'but': 2.0, 'comforter': 1.0, 'it': 4.0, 'makes': 1.0, 'not': 3.0, 'kinda': 1.0, 'which': 2.0, 'sp': 1.0, 'curtins': 1.0, 'suade': 1.0, 'more': 1.0, 'is': 4.0, 'argile': 1.0, 'sack': 1.0, 'diaper': 1.0, 'toy': 1.0, 'set': 2.0, 'damage': 1.0, 'up': 1.0, 'without': 1.0, 'the': 10.0, 'this': 1.0, 'perfect': 1.0, 'green': 4.0, 'and': 6.0, 'reusable': 1.0, 'setting': 1.0, 'they': 1.0, 'condition': 1.0, 'on': 2.0, 'arrived': 1.0, 'clean': 1.0, 'trim': 1.0, 'grey': 1.0, 'bag': 3.0, 'came': 1.0, 'with': 3.0, 'date': 1.0, 'happy': 2.0, 'before': 1.0, 'bumper': 1.0, 'inside': 1.0, 'recive': 1.0, 'are': 2.0, 'zip': 1.0, 'day': 1.0, 'seem': 1.0, 'shipping': 1.0, 'little': 1.0, 'very': 2.0, 'pictured': 1.0, 'freyed': 1.0, 'estimated': 1.0, 'a': 3.0, 'delivered': 1.0, 'okay': 1.0, 'got': 1.0, 'pulled': 1.0, '1': 1.0, 'nice': 1.0, 'designs': 1.0, 'recieve': 1.0, 'base': 1.0, 'after': 1.0, 'delivery': 1.0, 'items': 1.0, 'ctib': 1.0, 'so': 1.0, 'washing': 1.0, 'soho': 1.0, 'crib': 1.0, 'i': 5.0, 'was': 2.0, 'that': 1.0, 'all': 1.0, 'expensive': 1.0, 'actually': 2.0, 'product': 1.0, 'cheap': 1.0, 'for': 1.0, 'in': 2.0, 'brown': 3.0}
Word element => {'padding': 1.0, 'some': 1.0, 'company': 1.0, 'would': 2.0, 'bad': 1.0, 'isn': 1.0, 'blankets': 1.0, 'need': 1.0, 'child': 1.0, 'your': 1.0, 'will': 1.0, 'climates': 1.0, 'colder': 1.0, 'live': 1.0, 'however': 2.0, 'extra': 2.0, 'person': 1.0, 'shocked': 1.0, 'this': 1.0, 'only': 1.0, 'in': 3.0, '13': 1.0, 'reason': 1.0, 'bought': 1.0, 'pillow': 2.0, 'the': 10.0, 'got': 1.0, 'bumper': 1.0, 'inch': 1.0, 't': 1.0, 'a': 3.0, 'was': 3.0, 'all': 3.0, 'to': 1.0, 'and': 3.0, 'nice': 1.0, 'great': 1.0, '1': 1.0, 'you': 1.0, 'when': 1.0, 'packaging': 1.0, 'thought': 1.0, 'been': 1.0, 'that': 2.0, 'piece': 1.0, 'i': 4.0, '4': 1.0, 'set': 2.0, 'there': 1.0, 'because': 1.0, 'price': 1.0, 'cute': 2.0, 'still': 1.0, 'so': 1.0, 'sprung': 1.0, 'have': 2.0, 'small': 1.0, 'if': 2.0, 'everything': 1.0, 'compforter': 1.0, 'around': 1.0, 'is': 3.0, 'it': 3.0, 'looks': 1.0, 'product': 2.0, 'for': 2.0, 'very': 2.0, 'looked': 1.0, 'from': 1.0, 'mail': 1.0, 'thin': 1.0, 'like': 1.0, 'thick': 1.0}
Word element => {'bought': 1.0, 'also': 1.0, 'price': 1.0, 'a': 1.0, 'happy': 1.0, 'mobile': 1.0, 'got': 1.0, 'matching': 1.0, 'this': 1.0, 'at': 1.0, 'baby': 1.0, 'the': 1.0, 'my': 1.0, 'shower': 1.0, 'washed': 1.0, 'great': 1.0, 'it': 2.0, 'set': 1.0, 'very': 1.0, 'and': 3.0, 'up': 1.0}
Word element => {'white': 1.0, 'room': 1.0, 'on': 1.0, 'lavender': 1.0, 'it': 1.0, 'good': 1.0, 'included': 1.0, 'is': 1.0, 'in': 1.0, 'eg': 1.0, 'can': 1.0, 'dust': 1.0, 'goes': 1.0, 'we': 1.0, 'and': 1.0, 'ruffle': 1.0, 'that': 1.0, 'set': 1.0, 'there': 1.0, 'some': 1.0, 'things': 1.0, 'are': 1.0, 'great': 1.0, 't': 2.0, 'the': 4.0, 'a': 1.0, 'for': 1.0, 'crib': 2.0, 'use': 1.0, 'convertible': 1.0, 'but': 1.0, 'doesn': 1.0, 'work': 1.0, 'quality': 1.0}
Word element => {'network': 1.0, 'in': 1.0, 'connectivity': 1.0, 'absotuetly': 1.0, 'it': 1.0, 'internet': 1.0, 'home': 1.0, 'wireless': 2.0, 'this': 1.0, 'with': 1.0, 'is': 1.0, 'advertised': 1.0, 'not': 1.0, 'as': 1.0, 'interfere': 1.0, 'all': 1.0, 'destroys': 1.0, 'but': 1.0, 'our': 1.0, 'monitor': 1.0, 'they': 1.0, 'claim': 1.0, 'to': 1.0}
Word element => {'save': 1.0, 'auto': 1.0, 'shut': 2.0, 'doesn': 1.0, 'adaptor': 1.0, 'into': 1.0, 'though': 1.0, 'hand': 1.0, 'having': 1.0, 'm': 1.0, 'bit': 1.0, 'used': 1.0, 'button': 2.0, 'hit': 2.0, 'mins': 1.0, 'minutes': 1.0, 'ability': 2.0, 'needed': 1.0, 'digital': 3.0, 'to': 9.0, 'our': 4.0, 'had': 2.0, 'kids': 1.0, 'few': 1.0, 'this': 3.0, 'when': 3.0, 'you': 5.0, 'didn': 1.0, 'keep': 1.0, 'did': 1.0, 'nor': 1.0, 'it': 14.0, 'channel': 1.0, 'up': 1.0, 'off': 2.0, 'see': 3.0, '2': 3.0, 'ac': 1.0, 'but': 3.0, 'on': 5.0, 'channels': 1.0, 'i': 3.0, 'or': 1.0, 'feature': 1.0, 'they': 2.0, 'has': 3.0, 'neighbor': 1.0, 'no': 3.0, 'suppose': 1.0, 'old': 1.0, 'works': 1.0, 'rechargeable': 1.0, 'only': 2.0, 'for': 3.0, 't': 2.0, 'then': 1.0, 'we': 7.0, 'plug': 1.0, 'maybe': 1.0, 's': 2.0, '1': 2.0, 'max': 1.0, 'breif': 1.0, 'big': 1.0, 'nice': 1.0, 'both': 1.0, 'mind': 1.0, 'drawback': 2.0, 'allows': 1.0, 'with': 1.0, 'overall': 1.0, 'have': 3.0, 'nonstop': 1.0, 'a': 4.0, 'small': 1.0, 'bulky': 1.0, 'summer': 6.0, 'issues': 1.0, 'infant': 6.0, 'not': 3.0, 'and': 6.0, '2nd': 1.0, 'one': 9.0, 'too': 2.0, 'picture': 1.0, 'interference': 2.0, 'monitor': 3.0, 'constantly': 1.0, 'can': 2.0, 'so': 6.0, 'from': 1.0, 'child': 2.0, 'video': 1.0, 'camera': 2.0, 'was': 3.0, 'the': 23.0, 'longer': 2.0, 'great': 1.0, 'option': 1.0, 'although': 1.0, 'loved': 1.0, 'love': 1.0, 'far': 1.0, 'better': 1.0, 'quality': 1.0, 'baby': 3.0, 'than': 2.0, 'also': 1.0, 'batteries': 2.0, 'screen': 4.0, 'size': 1.0, 'is': 3.0, 'because': 1.0, 'that': 3.0, '5': 1.0, 'like': 3.0, 'zoom': 1.0, 'made': 1.0, 'really': 1.0, 'there': 1.0, 'are': 1.0, 'an': 1.0, 'other': 2.0, 'use': 1.0, 'just': 1.0, 'view': 4.0}
Word element => {'get': 1.0, 'hope': 1.0, 'save': 1.0, 'again': 1.0, 'same': 1.0, 'totally': 1.0, 'shades': 1.0, 'takes': 1.0, 'closed': 1.0, 'daytime': 1.0, 'anyways': 1.0, 'time': 1.0, 'like': 1.0, 'naps': 1.0, 'rooms': 1.0, 'darkened': 1.0, 'sleep': 1.0, 'usually': 1.0, 'are': 1.0, 'who': 1.0, 'useful': 1.0, 'figured': 1.0, 'also': 2.0, 'white': 3.0, 'challenge': 1.0, 'be': 3.0, 'find': 2.0, 'we': 1.0, 'babies': 1.0, 'husband': 1.0, 'by': 1.0, 'misplaced': 1.0, 'people': 1.0, 'some': 1.0, 'bigger': 1.0, 'still': 1.0, 'if': 2.0, 'know': 1.0, 's': 2.0, 't': 4.0, 'here': 1.0, 'size': 1.0, 'crib': 2.0, 'lcd': 1.0, 'money': 1.0, 'bought': 1.0, 'system': 1.0, 'color': 2.0, 'son': 1.0, 'returned': 1.0, 'no': 1.0, 'about': 1.0, 'almost': 1.0, 'his': 2.0, 'decent': 1.0, 'has': 1.0, 'portable': 1.0, 'on': 2.0, 'my': 7.0, 'wasn': 1.0, 'read': 2.0, 'little': 1.0, 'what': 1.0, 'used': 1.0, 'mine': 1.0, 'infant': 2.0, 'week': 1.0, 'have': 2.0, 'basically': 2.0, 'would': 3.0, 'summer': 2.0, 'help': 1.0, 'old': 2.0, 'well': 1.0, 'i': 4.0, 'helps': 1.0, '5': 2.0, 'monitor': 2.0, 'picture': 5.0, 'wireless': 1.0, 'that': 5.0, 'this': 4.0, 'it': 6.0, 'higher': 1.0, '3': 1.0, 'useless': 1.0, 'and': 8.0, 'one': 4.0, 'too': 5.0, 'digital': 2.0, 'was': 2.0, 'discovered': 1.0, 'review': 2.0, 'surveillance': 1.0, 'does': 1.0, 'huge': 1.0, 'way': 2.0, 'reach': 1.0, 'than': 1.0, 'previous': 1.0, 'noise': 1.0, 'quality': 2.0, 'after': 1.0, 'using': 1.0, 'for': 3.0, 'lw2002w': 1.0, 'receiver': 3.0, 'screen': 2.0, 'is': 8.0, 'small': 1.0, 'a': 7.0, 'tiny': 1.0, 'from': 3.0, 'far': 1.0, 'not': 3.0, 'with': 2.0, 'the': 12.0, 'of': 1.0, 'night': 1.0, 'you': 1.0, 'idea': 1.0, 'so': 7.0, 'can': 3.0, 'but': 3.0, 'see': 1.0, 'much': 1.0, 'floor': 1.0, 'black': 3.0, 'lorex': 1.0, 'there': 2.0, 'kid': 1.0, 'in': 4.0, 'year': 1.0, 'camera': 2.0, 'feature': 1.0, 'or': 1.0, 'don': 1.0, 'isn': 1.0, 'positioned': 1.0, 'to': 2.0, 'high': 1.0, 'just': 1.0, 'yours': 1.0, 'as': 1.0, 'zoom': 1.0, 'good': 2.0, 'blurs': 1.0}
Word element => {'ceiling': 1.0, 'clear': 1.0, 'are': 1.0, 'monitors': 1.0, 'daughter': 2.0, 'my': 1.0, 'on': 3.0, 'is': 2.0, 'comes': 1.0, 'out': 1.0, 'walls': 1.0, 'upstairs': 1.0, 'blanks': 1.0, 'where': 1.0, 'mode': 1.0, 'important': 1.0, 'me': 1.0, 'not': 1.0, 'really': 1.0, 'into': 1.0, 'that': 1.0, 'color': 1.0, 'see': 1.0, 'our': 2.0, 'sleep': 1.0, 'to': 2.0, 'static': 2.0, 'and': 4.0, 'too': 1.0, 'alert': 1.0, 'goes': 1.0, 'live': 1.0, 'the': 7.0, 'defective': 1.0, 'tried': 2.0, 'feature': 1.0, 'i': 4.0, 'foot': 1.0, 'infant': 1.0, 'by': 1.0, 'light': 1.0, 'much': 1.0, 'first': 3.0, 'this': 2.0, 'with': 2.0, 'it': 3.0, 'get': 2.0, 'work': 1.0, 'but': 2.0, '2': 1.0, 'condo': 2.0, 'summer': 1.0, 'sq': 1.0, 'should': 1.0, 'through': 1.0, 'then': 1.0, 'picture': 1.0, 'previous': 1.0, 'even': 1.0, 'didn': 1.0, 'safety': 1.0, 'got': 1.0, 'back': 1.0, 'saying': 1.0, 'turn': 1.0, 'in': 2.0, 'screen': 1.0, '1450': 1.0, 'noise': 2.0, '5': 1.0, 't': 1.0, 's': 1.0, 'a': 4.0, 'we': 5.0, 'go': 1.0, 'preface': 1.0, 'was': 1.0, 'had': 1.0, 'from': 1.0, 'small': 1.0, 'have': 1.0, 'several': 1.0, 'no': 1.0, 'or': 2.0, 'makes': 1.0, 'interference': 1.0, 'manually': 1.0, 'when': 2.0, 'you': 1.0, 'downstairs': 1.0, 'need': 1.0, 'image': 2.0, 'lot': 1.0, 'of': 1.0}
Word element => {'arrived': 1.0, 'has': 1.0, 'the': 1.0, 'about': 1.0, 'sure': 1.0, 'to': 3.0, 'product': 1.0, 'r': 1.0, 'weeks': 1.0, 'two': 1.0, 'my': 1.0, 'ship': 1.0, 'almost': 1.0, 'because': 1.0, 'just': 1.0, 'not': 3.0, 'would': 1.0, 'home': 1.0, 'item': 1.0, 'babies': 1.0, 'have': 1.0, 'up': 1.0, 'gone': 1.0, 'still': 1.0, 'worth': 1.0, 'took': 1.0, 'i': 1.0, 'us': 1.0, 'and': 1.0, 'this': 1.0, 'it': 3.0, 'picked': 1.0}
Word element => {'not': 1.0, 'with': 2.0, 'computer': 1.0, 'my': 1.0, 'am': 2.0, 'oh': 1.0, 'first': 1.0, 'other': 1.0, 'anyone': 1.0, 'great': 3.0, 'the': 6.0, 't': 1.0, 'problems': 1.0, 'interference': 1.0, 'best': 1.0, 'far': 2.0, 'good': 1.0, 'really': 1.0, 'is': 3.0, 'has': 1.0, 'ive': 1.0, 'quality': 1.0, 'video': 2.0, 'but': 1.0, 'and': 4.0, 'monitor': 2.0, 'monitors': 2.0, 'wifi': 1.0, 'bad': 1.0, 'no': 1.0, 'thing': 1.0, 'been': 1.0, 'by': 1.0, 'sound': 1.0, 'don': 1.0, 'threw': 1.0, 'waste': 1.0, 'your': 1.0, '3': 1.0, 'on': 3.0, 'this': 2.0, 'try': 1.0, 'works': 2.0, 'only': 1.0, 'it': 3.0, 'one': 3.0, 'love': 1.0, 'time': 1.0, 'so': 2.0, 'small': 1.0, 'worth': 1.0, 'having': 2.0, 'because': 1.0, 'i': 3.0, 'screen': 1.0, 'would': 1.0, 'recommend': 1.0, 'any': 1.0, 'to': 1.0}
Word element => {'baby': 1.0, 'our': 1.0, 'on': 1.0, 'keep': 1.0, 'can': 1.0, 'yet': 1.0, 'need': 1.0, 'what': 1.0, 'doing': 1.0, 'in': 1.0, 'want': 1.0, 'eye': 1.0, 'happy': 1.0, 'done': 1.0, 'get': 1.0, 'and': 3.0, 'very': 1.0, 'old': 1.0, 'to': 3.0, 'product': 1.0, 'be': 2.0, 'month': 1.0, 'are': 1.0, '2': 1.0, 'the': 3.0, 'a': 1.0, 'an': 1.0, 'house': 1.0, 'quality': 1.0, 'video': 1.0, 'have': 1.0, 'with': 1.0, 'this': 1.0, 'we': 5.0, 'of': 1.0, 'audio': 1.0, 'wherever': 1.0, 'allow': 1.0, 'us': 1.0}
Word element => {'altogether': 1.0, 'different': 1.0, 'those': 1.0, 'this': 1.0, 'work': 1.0, 'features': 2.0, 'although': 1.0, 'scan': 1.0, 'returned': 1.0, 'unhappy': 1.0, 'was': 1.0, 'possible': 1.0, 'volume': 1.0, 'to': 5.0, 'visible': 1.0, 'sunlight': 1.0, 'no': 2.0, 'battery': 1.0, 'red': 1.0, 'extremely': 1.0, 'received': 1.0, 'all': 2.0, 'other': 1.0, 'an': 3.0, 'toys': 1.0, 'large': 1.0, 'just': 1.0, 'lost': 1.0, 'white': 1.0, 'and': 5.0, 'signal': 1.0, 'like': 2.0, 'it': 2.0, 'know': 1.0, 'tv': 1.0, 'reject': 1.0, 'bright': 1.0, 'a': 3.0, 't': 1.0, 'standards': 1.0, 'would': 2.0, 'screen': 2.0, 'don': 1.0, 'sound': 1.0, 'looks': 2.0, 'my': 1.0, 'color': 2.0, 'almost': 1.0, 'or': 1.0, 'well': 1.0, 'i': 5.0, 'appear': 1.0, 'even': 1.0, 'if': 3.0, 'of': 1.0, 'the': 17.0, 'be': 2.0, 'zoom': 1.0, 'lowest': 1.0, 'faded': 2.0, 'picture': 2.0, 'monitor': 2.0, '10': 1.0, 'for': 3.0, 'where': 1.0, 'not': 1.0, 'completely': 1.0, 'static': 1.0, 'set': 2.0, 'hiss': 1.0, 'night': 1.0, 'you': 1.0, 'when': 5.0, 'audio': 2.0, 'factory': 1.0, 'seen': 1.0, 'pink': 1.0, 'gives': 1.0, 'see': 1.0, 'on': 3.0, 'continuously': 1.0, 'old': 1.0, 'has': 1.0, 'making': 1.0, 'most': 1.0, 'so': 2.0, 'can': 1.0, 'but': 1.0, 'its': 1.0, 'at': 3.0, 'vision': 1.0, 'is': 9.0, 'look': 2.0, 'in': 3.0, 'nothing': 2.0, 'outside': 2.0, 'receiver': 2.0, 'product': 4.0, 'camera': 1.0, 'video': 1.0, 'remain': 1.0, 'that': 3.0, 'lasts': 1.0, 'up': 1.0, 'less': 1.0, 'than': 1.0, 'trying': 1.0, 'minutes': 1.0, 'constant': 1.0, 'black': 2.0, 'there': 1.0, 'room': 1.0}
Word element => {'position': 1.0, 'just': 1.0, 'or': 1.0, 'having': 1.0, 'even': 1.0, 'back': 1.0, 'internet': 1.0, 'connect': 1.0, 'light': 1.0, 'by': 1.0, 'cons': 2.0, 'rearrange': 1.0, 'affect': 1.0, 'love': 1.0, 'far': 1.0, 'green': 1.0, 'and': 4.0, 'off': 1.0, 'tried': 1.0, 'am': 1.0, '3': 1.0, 'on': 3.0, 'townhouse': 1.0, 'story': 1.0, 'a': 2.0, 's': 1.0, 'level': 1.0, 'in': 2.0, 'camera': 2.0, 'if': 1.0, 'turn': 2.0, 'have': 1.0, 'to': 12.0, 'our': 1.0, 'four': 2.0, 'work': 2.0, 'constantly': 1.0, 'can': 1.0, '2': 1.0, '4': 1.0, 'two': 2.0, 'i': 4.0, 'incredible': 1.0, 'there': 4.0, 'live': 1.0, 'settings': 1.0, 'all': 2.0, 'other': 1.0, 'chose': 1.0, 'interference': 1.0, 'best': 2.0, 'monitor': 7.0, 'router': 1.0, 'rocks': 1.0, '1': 2.0, 'since': 1.0, 'static': 3.0, 'used': 1.0, 'with': 2.0, 'this': 4.0, 'is': 6.0, 'at': 2.0, 'vision': 1.0, 'first': 1.0, 'are': 1.0, 'called': 1.0, 'no': 3.0, 'about': 1.0, 'noise': 1.0, 'baby': 1.0, 'you': 1.0, 'monitors': 1.0, 'night': 1.0, 'unit': 1.0, 'blinks': 1.0, 'avoid': 1.0, 'daughter': 1.0, 'company': 1.0, 'my': 1.0, 'fact': 1.0, 'out': 1.0, 'absolutely': 1.0, 'nothing': 1.0, 'do': 1.0, 'it': 4.0, 'blink': 1.0, 'for': 1.0, '20': 1.0, 'that': 1.0, 'has': 1.0, 'next': 1.0, 'then': 1.0, 'we': 3.0, 'fine': 1.0, 'listen': 1.0, 'sure': 1.0, 'get': 1.0, 'will': 1.0, 'does': 2.0, 'not': 2.0, 'bother': 1.0, 'her': 2.0, 'now': 1.0, 'right': 2.0, 'table': 1.0, 'connection': 1.0, 'wireless': 1.0, 'the': 16.0, 'of': 1.0, 'time': 1.0, 'problem': 1.0, 'though': 1.0}
Word element => {'recommended': 1.0, 'audio': 1.0, 'range': 1.0, 'product': 1.0, 'we': 1.0, 've': 1.0, 'a': 1.0, 'using': 1.0, 'is': 3.0, '2': 1.0, 'highyl': 1.0, 'good': 2.0, 'really': 1.0, 'great': 2.0, 'it': 1.0, 'for': 1.0, 'years': 1.0, 'pic': 1.0, 'and': 2.0, 'been': 1.0, 'its': 1.0}
Word element => {'returning': 1.0, 'anyone': 1.0, 'recommend': 1.0, 'laptop': 1.0, 'any': 1.0, 'default': 1.0, '6': 1.0, 'router': 1.0, 'changed': 1.0, 'come': 1.0, 'channel': 1.0, 'seems': 1.0, '2009': 1.0, 'june': 1.0, 'due': 1.0, 'thought': 1.0, 'not': 6.0, 'under': 1.0, 'hear': 1.0, 'same': 1.0, 'more': 1.0, 'wireless': 4.0, 'buying': 1.0, 'reason': 1.0, 'crib': 1.0, 'rather': 1.0, 'if': 4.0, 'in': 4.0, 'daughter': 2.0, 'on': 7.0, 'put': 1.0, 'much': 2.0, 'first': 3.0, 'night': 2.0, 'loud': 1.0, 'you': 4.0, 'problem': 2.0, 'part': 1.0, 'standing': 1.0, 'than': 2.0, 'w': 1.0, 'focus': 3.0, 'interference': 1.0, 'meant': 1.0, 'may': 1.0, 'b': 1.0, 'see': 1.0, 'base': 1.0, 'extremely': 1.0, '11': 2.0, 'bright': 1.0, 'went': 1.0, 'months': 1.0, 'get': 2.0, 'one': 2.0, 'color': 1.0, 'so': 1.0, 'comparison': 1.0, '1mb': 1.0, 'unless': 1.0, 'amazon': 1.0, 'we': 4.0, 'a': 6.0, 't': 1.0, 'employees': 1.0, 'try': 1.0, 'price': 1.0, 'camera': 2.0, 'best': 1.0, 'monitor': 5.0, 'next': 3.0, 'that': 4.0, 'problems': 1.0, 'box': 1.0, 'soft': 1.0, 'works': 1.0, 'computer': 1.0, 'handheld': 1.0, 'vision': 1.0, 'this': 4.0, 'right': 1.0, 'to': 13.0, 'well': 2.0, 'sleeping': 1.0, 'know': 1.0, 'and': 12.0, 'issue': 2.0, 'very': 1.0, 'big': 1.0, 'nice': 1.0, 'two': 1.0, 'little': 1.0, 'was': 4.0, 'store': 1.0, 'had': 4.0, 'talked': 1.0, '25': 1.0, 'experience': 1.0, 'the': 37.0, 'return': 1.0, 'downgrade': 1.0, 'thing': 2.0, 'normally': 1.0, 'slight': 1.0, '2': 1.0, 'less': 1.0, 'as': 2.0, 'whole': 1.0, 'no': 2.0, 'gotten': 1.0, 'purchased': 1.0, 'zooming': 2.0, 'sound': 4.0, 'up': 2.0, 'major': 1.0, 'or': 1.0, 'feature': 2.0, 'also': 1.0, 'need': 1.0, 'setting': 2.0, 'others': 1.0, 'deal': 1.0, 'handset': 1.0, 'other': 1.0, 'all': 2.0, 'pregnant': 1.0, 'broken': 1.0, 'but': 3.0, 'defaults': 1.0, 'reviewers': 1.0, 'for': 4.0, 'tilt': 1.0, 'here': 1.0, 'have': 6.0, 'running': 1.0, 'wife': 2.0, 'happened': 1.0, 'bed': 2.0, 'when': 4.0, 'sleeper': 1.0, 'since': 2.0, '900mhz': 1.0, 'did': 1.0, 'time': 2.0, '4ghz': 1.0, 'model': 1.0, 'static': 2.0, 'sometimes': 1.0, 'our': 1.0, 'network': 1.0, 'even': 1.0, 'old': 1.0, 'graco': 1.0, 'there': 1.0, 'bring': 1.0, 'soon': 1.0, 'woke': 1.0, 'three': 1.0, 'picture': 1.0, 'with': 3.0, 'turn': 2.0, 'is': 10.0, 'downstairs': 1.0, 'before': 2.0, 'minor': 1.0, 'longer': 1.0, 'does': 2.0, 'sharing': 1.0, 'stand': 1.0, 'down': 1.0, 'fix': 1.0, 'its': 1.0, 'are': 2.0, 'my': 5.0, 'room': 3.0, 'lens': 1.0, '9': 2.0, 'am': 1.0, 'review': 1.0, 'understand': 1.0, 'out': 1.0, 'file': 1.0, 'it': 13.0, 'own': 1.0, 'be': 1.0, 'by': 1.0, 'after': 1.0, 'mounted': 1.0, 'minutes': 1.0, 'would': 2.0, 'liked': 1.0, 'weight': 1.0, 'noted': 1.0, 'second': 1.0, 'viewer': 1.0, 'around': 1.0, 'resets': 1.0, 'played': 1.0, 'feed': 1.0, 'about': 2.0, 'could': 1.0, 'intermittent': 1.0, 'simple': 1.0, 'i': 18.0, 'finally': 1.0, 'sounds': 1.0, 'like': 1.0, 'wasn': 1.0, 'breaker': 1.0, 'kills': 1.0, 'your': 1.0, 'g': 1.0, 'forget': 2.0, 'away': 1.0, 'from': 2.0, 'then': 3.0, 'only': 1.0, 'pulling': 1.0, 'between': 1.0, 'morning': 1.0, 'connecting': 1.0, '18mb': 1.0, 'decide': 1.0, 'want': 1.0, 'edit': 1.0}
Word element => {'brand': 1.0, 'decent': 1.0, 'some': 1.0, 'batteries': 1.0, 'supplied': 1.0, 'changed': 1.0, 'better': 1.0, 'been': 1.0, 'has': 1.0, 'night': 1.0, 'apart': 1.0, 'works': 1.0, 'left': 1.0, 'transmitter': 1.0, 'do': 1.0, 'does': 2.0, 'kill': 1.0, 'turning': 1.0, 'confirm': 1.0, '4': 1.0, 'after': 1.0, 'overall': 1.0, 'and': 4.0, 'be': 1.0, 'so': 1.0, 'can': 2.0, 'ones': 1.0, 'happy': 2.0, 'too': 1.0, 'haven': 1.0, 'purchasing': 1.0, 'thinking': 1.0, 'time': 5.0, 'sometimes': 2.0, 'while': 1.0, 'charge': 2.0, 'charger': 1.0, 'disappear': 1.0, 'worked': 1.0, 'bad': 1.0, 'found': 1.0, 'have': 2.0, 'flat': 1.0, 'read': 1.0, 'may': 1.0, 'me': 1.0, 'not': 3.0, 'back': 1.0, 'disabled': 1.0, 'but': 4.0, 'although': 1.0, 'before': 1.0, 'yes': 1.0, 'seems': 2.0, 'm': 2.0, 'in': 3.0, 'child': 1.0, 'camera': 3.0, 'yet': 1.0, 'distract': 1.0, 'or': 2.0, 'monitor': 2.0, 'picture': 1.0, 'strange': 1.0, 't': 2.0, 'a': 8.0, 'fine': 1.0, 'then': 1.0, 'reviews': 1.0, 'we': 3.0, 'could': 1.0, 'dark': 1.0, 'especially': 1.0, 'come': 1.0, 'major': 1.0, 'friendly': 1.0, 'since': 2.0, 'wireless': 3.0, 'point': 1.0, 'to': 5.0, 'network': 2.0, 'our': 1.0, 'was': 2.0, 'problems': 1.0, 'that': 7.0, 'all': 3.0, 'other': 1.0, 'for': 3.0, 'complains': 1.0, 'out': 1.0, 'still': 2.0, 'every': 1.0, 'turn': 1.0, 'if': 2.0, 'later': 2.0, 'being': 1.0, 'it': 10.0, 'as': 2.0, 'annoying': 1.0, 'update': 1.0, 'long': 1.0, 'on': 6.0, 'receiver': 4.0, 'unit': 2.0, 's': 3.0, 'maybe': 1.0, 'power': 1.0, 'send': 1.0, 'i': 6.0, 'well': 1.0, 'wifi': 1.0, 'seem': 2.0, 'months': 1.0, 'get': 1.0, 'sure': 1.0, 'what': 1.0, 'when': 4.0, 'is': 6.0, 'this': 4.0, 'few': 2.0, 'just': 1.0, 'using': 1.0, 'light': 1.0, 'also': 1.0, 'plugged': 2.0, 'times': 1.0, 'hours': 1.0, 'disconnecting': 1.0, 'problem': 1.0, 'battery': 2.0, 'good': 1.0, 'connection': 1.0, 'switch': 1.0, 'with': 4.0, '99': 1.0, 'the': 20.0, 'of': 1.0, 'ok': 1.0, 'from': 1.0, 'flashing': 1.0}
Word element => {'though': 1.0, 'size': 1.0, 'negative': 1.0, 'the': 2.0, 'would': 2.0, 'well': 1.0, 'one': 1.0, 'you': 1.0, 'if': 1.0, 'noticed': 1.0, 'that': 1.0, 'wireless': 1.0, 'home': 1.0, 'not': 1.0, 'promised': 1.0, 'have': 1.0, 'as': 1.0, 'worked': 1.0, 'makes': 1.0, 'has': 1.0, 'far': 1.0, 'but': 1.0, 'small': 1.0, 'so': 1.0, 'any': 1.0, 'interference': 1.0, 'be': 2.0, 'despite': 1.0, 'multiple': 1.0, 'devices': 1.0, 'also': 1.0, 'screen': 1.0, 'in': 1.0, 'portable': 1.0, 'my': 1.0, 'only': 2.0, 'this': 3.0, 'it': 3.0, 'want': 1.0, 'is': 1.0, 'works': 1.0, 'expensive': 1.0}
Word element => {'screen': 1.0, 'cheaper': 1.0, 'infant': 1.0, 'summer': 1.0, 'by': 1.0, 'bestview': 1.0, 'charge': 1.0, 'was': 2.0, 'unit': 1.0, 'and': 2.0, 'loose': 1.0, 'adapter': 1.0, 'interfered': 1.0, 'claims': 1.0, 'their': 1.0, 'port': 1.0, 'unable': 1.0, 'network': 3.0, 'to': 3.0, 'as': 2.0, 'there': 1.0, 'monitor': 3.0, 'the': 8.0, 'house': 1.0, 'but': 2.0, 'this': 1.0, 'ac': 1.0, 'with': 2.0, 'it': 2.0, 'completely': 2.0, 'say': 1.0, 'is': 1.0, 'in': 1.0, 'has': 1.0, 'well': 1.0, 'review': 1.0, 'not': 1.0, 'short': 1.0, 'despite': 1.0, 'be': 1.0, 'weeks': 1.0, 'friendly': 1.0, 't': 1.0, 'a': 3.0, 's': 1.0, 'its': 1.0, 'only': 1.0, 'much': 1.0, 'messed': 1.0, 'bigger': 1.0, 'three': 1.0, 'indeed': 1.0, 'alternative': 1.0, 'didn': 1.0, 'even': 1.0, 'came': 1.0, 'wireless': 3.0, 'long': 1.0, 'neighbors': 1.0, 'complained': 1.0, 'last': 1.0, 'after': 1.0, 'on': 1.0}
Word element => {'issue': 1.0, 'unusable': 1.0, 'interferences': 1.0, 'cameras': 1.0, 'multiple': 1.0, 'function': 1.0, 'of': 1.0, 'lack': 1.0, 'off': 1.0, 'and': 3.0, 'makes': 2.0, 'than': 1.0, 'because': 1.0, 'otherwise': 1.0, 'i': 1.0, 'quite': 1.0, 'other': 1.0, 'apparently': 1.0, 'technology': 1.0, 'special': 2.0, '11b': 1.0, 'my': 1.0, '4ghz': 2.0, 'takes': 1.0, '802': 1.0, 'networks': 1.0, 'it': 7.0, 'with': 2.0, 'not': 2.0, 'n': 1.0, 'wish': 1.0, 'this': 2.0, 'their': 1.0, 'wireless': 1.0, 'g': 1.0, 'the': 6.0, 'virtually': 1.0, 'great': 1.0, 'big': 1.0, 'wifi': 1.0, 'network': 1.0, 'turning': 1.0, 'itself': 1.0, 'due': 1.0, 'operates': 1.0, 'one': 1.0, 'cycle': 1.0, 'frequency': 1.0, 'seems': 1.0, 'down': 1.0, 'monitor': 2.0, 'specifically': 1.0, 'as': 2.0, 'to': 2.0, 'advertised': 2.0, 'exception': 1.0, '2': 2.0, 'work': 1.0, 'doesn': 1.0, 'beeps': 1.0, 'when': 1.0, 'is': 1.0, 'case': 1.0, 'that': 3.0, 'totally': 1.0, 's': 2.0, 't': 2.0, 'a': 3.0, 'for': 2.0, 'product': 1.0, 'mostly': 1.0, 'calls': 1.0, 'wasn': 1.0, 'unacceptable': 1.0, 'out': 1.0, 'interfere': 1.0, 'on': 2.0}
Word element => {'would': 1.0, 'no': 1.0, 'range': 1.0, 'has': 1.0, 'that': 1.0, 'were': 1.0, 'daughter': 1.0, 'sound': 2.0, 'disappointed': 1.0, 'infant': 1.0, 'feature': 1.0, 'i': 3.0, 'zoom': 1.0, 'tried': 1.0, 'by': 1.0, 'just': 1.0, 'give': 1.0, 'not': 2.0, 'recieved': 1.0, 'this': 1.0, 'it': 2.0, 'quality': 2.0, 'back': 1.0, 'video': 3.0, 'and': 6.0, 'very': 2.0, 'monitor': 1.0, 'handheld': 1.0, 'but': 2.0, 'can': 1.0, 'stars': 1.0, 'love': 3.0, 'hi': 2.0, 'already': 1.0, 'then': 1.0, 'had': 1.0, 'turn': 1.0, 'off': 1.0, 'until': 1.0, 'good': 2.0, 'def': 2.0, 'my': 1.0, 'interference': 1.0, 'makes': 1.0, 'we': 1.0, 'a': 1.0, '5': 1.0, 'noise': 1.0, 'feedback': 1.0, 'automatically': 1.0, 'pan': 1.0, 'still': 1.0, 'the': 6.0, 'turns': 1.0, 'on': 1.0, 'is': 2.0, 'summmer': 1.0, 'definitely': 1.0, 'adequate': 1.0}
Word element => {'230': 1.0, 'could': 1.0, 'price': 1.0, 'best': 1.0, 'ordered': 1.0, 'much': 1.0, 'proximity': 1.0, 'work': 1.0, 'stage': 1.0, 'absolutely': 1.0, 'other': 1.0, 'near': 1.0, 'monitors': 1.0, 'quality': 1.0, 'vision': 1.0, 'there': 1.0, 'past': 1.0, 'color': 1.0, 'sensitive': 1.0, 'immediately': 1.0, 'front': 1.0, 'push': 1.0, 'level': 1.0, 'parent': 1.0, 'making': 2.0, 'option': 1.0, 'number': 1.0, 'not': 3.0, 'always': 1.0, 'set': 3.0, 'lost': 1.0, 'yet': 1.0, 'die': 1.0, 'crystal': 1.0, 'amazing': 1.0, 'oblivious': 1.0, 'about': 1.0, 'side': 2.0, 'll': 1.0, 'annoyed': 1.0, 'enough': 1.0, 'once': 1.0, 'comparison': 1.0, 'power': 1.0, 'light': 7.0, 'her': 1.0, 'tiled': 1.0, 'confident': 1.0, 'workspace': 1.0, 'down': 1.0, 'setting': 2.0, 'live': 1.0, 'annoying': 1.0, 'keep': 1.0, '25': 1.0, 'within': 1.0, 'laptop': 2.0, 'wi': 1.0, 'interferes': 1.0, 'pros': 1.0, 'list': 1.0, 'rock': 1.0, 'long': 1.0, 'found': 1.0, 'have': 6.0, 'love': 1.0, 'daughter': 1.0, 'from': 2.0, '192': 1.0, 'get': 1.0, 'batteries': 1.0, 'shipping': 3.0, 'including': 3.0, '200': 1.0, 'working': 1.0, 'sure': 1.0, 'she': 1.0, 'make': 1.0, 'distance': 1.0, 'on': 10.0, 'check': 1.0, 'jerk': 1.0, 'night': 2.0, 'paid': 2.0, 'warning': 2.0, 'shuts': 2.0, 'hear': 2.0, 'types': 1.0, 'or': 5.0, 'mhz': 1.0, 'does': 2.0, 'looking': 1.0, 'reason': 1.0, 'offer': 2.0, 'unit': 6.0, 'sounds': 2.0, 'wasn': 2.0, '1': 3.0, 'since': 1.0, 'flickered': 1.0, 'give': 1.0, 'order': 1.0, 'minutes': 1.0, 'alseep': 1.0, 'sets': 1.0, 'months': 3.0, '900': 1.0, 'dark': 1.0, 'want': 2.0, 'if': 8.0, 'service': 1.0, '1st': 7.0, 'parental': 1.0, 'mind': 1.0, 'noise': 2.0, 'large': 1.0, 'happenings': 1.0, 'arrival': 1.0, 'hysteria': 1.0, 'nursery': 3.0, 'no': 3.0, 'years': 1.0, 'computer': 1.0, 'tiling': 1.0, 'remain': 1.0, 'clear': 1.0, 'sleeping': 1.0, 'extended': 1.0, 'lose': 1.0, 'blown': 1.0, 'means': 1.0, 'else': 1.0, 'kids': 2.0, 'full': 1.0, 'itself': 2.0, 'in': 9.0, 'those': 1.0, 'already': 1.0, 'especially': 1.0, 'use': 2.0, 'high': 1.0, 'right': 1.0, 'to': 25.0, 'sensitivity': 1.0, 'rooms': 1.0, 'beeps': 1.0, 'are': 1.0, 'room': 3.0, 'my': 18.0, 'me': 2.0, 'i': 25.0, 'newborn': 1.0, 'solid': 1.0, 'loses': 1.0, 'rate': 1.0, 't': 4.0, 'two': 1.0, 'ago': 1.0, 'a': 15.0, 'every': 1.0, 'video': 8.0, 'child': 9.0, 'someone': 1.0, 'am': 1.0, 'unless': 2.0, 'turns': 1.0, 'by': 2.0, 'after': 2.0, '08280': 1.0, '2': 2.0, 'happens': 1.0, 'purchased': 1.0, 'repeatedly': 1.0, 'look': 1.0, 'resulting': 1.0, 'reasons': 1.0, 'had': 3.0, 'loudly': 1.0, 'was': 5.0, 'any': 3.0, '10': 3.0, 'lowest': 1.0, 'audio': 3.0, 'closed': 1.0, 'cannot': 3.0, 'find': 1.0, 'very': 4.0, 'complaints': 3.0, 'you': 2.0, 'safety': 8.0, 'graco': 5.0, 'before': 1.0, 'minor': 1.0, 'screaming': 1.0, 'bring': 1.0, 'digital': 3.0, 'frequently': 1.0, 'monitor': 23.0, 'close': 1.0, 'interference': 1.0, 'just': 1.0, 'july': 1.0, 'and': 15.0, 'using': 5.0, 'with': 7.0, 'def': 1.0, 'it': 10.0, 'be': 5.0, 'few': 5.0, 'this': 9.0, 'dying': 1.0, 'imonitor': 10.0, 'brings': 1.0, 'technology': 1.0, 'essentially': 1.0, 'through': 2.0, 'into': 1.0, 'that': 15.0, 'troubleshooting': 1.0, 'problems': 1.0, 'been': 2.0, 'blue': 1.0, 'thought': 1.0, 'possible': 1.0, 'now': 2.0, 'problem': 1.0, 'both': 1.0, 'somewhat': 1.0, 'son': 3.0, 'bright': 1.0, 'off': 2.0, 'see': 3.0, 'actual': 1.0, 'lightly': 1.0, 'desperate': 1.0, 'least': 1.0, 'unhelpful': 1.0, 'each': 2.0, 'prefer': 1.0, 'fi': 1.0, 'something': 2.0, 'the': 72.0, 'process': 2.0, 'noticed': 1.0, 'wanted': 1.0, 'due': 1.0, 'wireless': 2.0, 'listening': 1.0, 'screen': 1.0, 'feet': 3.0, 'home': 2.0, 'myself': 3.0, 'without': 2.0, 'still': 1.0, 'don': 1.0, 'kind': 1.0, 'time': 3.0, 'awake': 1.0, 'perhaps': 1.0, 'component': 1.0, 'given': 1.0, 'battery': 3.0, 'but': 5.0, 'as': 3.0, 'during': 1.0, 'out': 1.0, 'severe': 1.0, 'when': 8.0, 'running': 1.0, 'low': 1.0, 'layout': 1.0, 'so': 7.0, 'is': 18.0, 'can': 7.0, 'do': 2.0, 'having': 2.0, 'open': 1.0, 'ask': 1.0, 'folded': 1.0, 'available': 1.0, 's': 3.0, 'customer': 1.0, 'crying': 1.0, 'called': 1.0, 'peace': 1.0, 'assistance': 1.0, 'replace': 1.0, 'they': 1.0, 'denied': 1.0, 'also': 5.0, 'experiences': 1.0, 'reads': 1.0, 'away': 2.0, 'frequent': 1.0, 'properly': 1.0, 'image': 7.0, 'all': 2.0, 'tends': 1.0, 'first': 2.0, 'wondered': 1.0, 'show': 1.0, 'for': 14.0, 'seconds': 4.0, 'only': 1.0, 'then': 2.0, 'superior': 2.0, 'never': 3.0, 'inside': 1.0, 'take': 1.0, 'displays': 2.0, 'button': 1.0, 'goes': 1.0, 'message': 1.0, 'better': 1.0, 'comes': 1.0, 'these': 1.0, 'adequate': 1.0, 'up': 4.0, 'knowing': 1.0, 'initializing': 2.0, 'completely': 1.0, 'greatest': 1.0, 'initialization': 1.0, 'second': 2.0, 'tax': 3.0, 'imaging': 2.0, 'useless': 1.0, 'periods': 1.0, 'its': 3.0, 'sleep': 1.0, 'connection': 4.0, 'must': 2.0, 'flashes': 1.0, 'at': 6.0, 'paired': 1.0, 'which': 2.0, 'monitoring': 2.0, 'again': 1.0, 'apparent': 1.0, 'anyway': 1.0, 'nevers': 1.0, 'has': 6.0, 'caused': 1.0, 'old': 1.0, 'of': 14.0, 'even': 5.0, 'started': 1.0}
Word element => {'lifespan': 1.0, 'month': 1.0, 'nine': 1.0, 'something': 1.0, 'product': 1.0, 'beware': 1.0, 'buyer': 1.0, 'claim': 1.0, 'warranty': 1.0, 'response': 1.0, 'received': 1.0, 'next': 1.0, 'that': 2.0, 'your': 1.0, 'on': 1.0, 'think': 1.0, 'for': 4.0, 'keeping': 1.0, 'said': 1.0, 'life': 1.0, 'bigger': 1.0, 'little': 1.0, 'very': 2.0, 'could': 2.0, 't': 1.0, 'we': 5.0, 'a': 6.0, 'screen': 1.0, 'would': 2.0, 'don': 1.0, 'over': 1.0, 'damage': 1.0, 'replacing': 1.0, 'battery': 2.0, 'several': 1.0, 'and': 4.0, 'too': 1.0, 'bit': 1.0, 'was': 1.0, 'sound': 1.0, 'resolve': 1.0, 'improved': 1.0, 'baby': 1.0, 'did': 2.0, 'receiver': 1.0, 'getting': 1.0, 'nearly': 1.0, 'caused': 1.0, 'before': 1.0, 'be': 3.0, 'bought': 1.0, 'months': 1.0, 'with': 3.0, 'date': 1.0, 'research': 1.0, 'expensive': 1.0, '200': 1.0, 'this': 4.0, '9': 1.0, 'it': 4.0, 'were': 2.0, 'paid': 1.0, 'quite': 2.0, 'is': 2.0, 'i': 2.0, 'well': 1.0, 'expected': 1.0, 'there': 1.0, 'monitor': 2.0, 'picture': 1.0, 'interference': 1.0, 'old': 1.0, 'warm': 1.0, 'an': 1.0, 'solid': 1.0, 'no': 3.0, 'years': 1.0, 'our': 2.0, 'to': 3.0, 'contrary': 1.0, 'daughter': 1.0, 'now': 1.0, 'the': 9.0, 'of': 1.0, 'longer': 2.0, 'works': 1.0, 'last': 1.0, 'am': 1.0, 'happened': 1.0, 'not': 2.0, 'positive': 1.0, 'issue': 1.0, 'what': 1.0, 'charged': 1.0, 'but': 3.0, 'so': 2.0, 'can': 1.0, 'most': 1.0, 'seems': 1.0, 'batteries': 2.0, 'good': 3.0, 'plan': 1.0, 'connection': 1.0, 'made': 1.0, 'housing': 1.0, 'casing': 1.0, 'issues': 1.0, 'likely': 1.0, 'have': 1.0}
Word element => {'awful': 3.0, 'soho': 1.0, 'bureau': 1.0, 'business': 1.0, 'better': 1.0, 'filing': 1.0, 'charge': 1.0, 'basically': 2.0, 'i': 6.0, 'sixty': 1.0, 'depot': 1.0, 'bedding': 2.0, 's': 2.0, 'going': 1.0, 'safe': 1.0, 'contact': 1.0, 'came': 1.0, 'detergent': 1.0, 'or': 1.0, 'about': 1.0, 'behind': 1.0, 'no': 2.0, 'baby': 5.0, 'as': 2.0, 'to': 5.0, 'an': 1.0, 'all': 2.0, 'wash': 2.0, 'over': 1.0, 'seams': 1.0, 'that': 1.0, 'but': 1.0, 'arrive': 1.0, 'it': 3.0, 'product': 4.0, 'designs': 1.0, 'exploded': 1.0, 'machine': 1.0, 'return': 2.0, 'promptly': 1.0, 'knows': 1.0, 'a': 2.0, 'stuffing': 1.0, 'and': 8.0, 'met': 1.0, 'ends': 1.0, 'did': 2.0, 'for': 1.0, 'fabric': 2.0, 'have': 2.0, 'with': 3.0, 'where': 1.0, 'come': 2.0, 'this': 4.0, 'flaws': 1.0, 'ordered': 1.0, 'offer': 1.0, 'instructions': 1.0, 'the': 8.0, 'of': 1.0, 'everyone': 1.0, 'apart': 2.0, 'inside': 1.0, 'stand': 1.0, 'my': 2.0, 'company': 1.0, 'blatant': 1.0, 'repair': 1.0, 'washing': 1.0, 'clothing': 1.0, 'poorly': 1.0, 'not': 1.0, 'manufactured': 1.0, 'sewn': 1.0, 'mine': 1.0, 'correctly': 1.0, 'any': 2.0, 'probably': 1.0, 'spilling': 1.0, 'will': 1.0, 'shred': 1.0, 'contacted': 1.0, 'even': 1.0, 'was': 1.0, 'refusal': 1.0, 'their': 1.0, 'customer': 1.0, 'support': 1.0, 'per': 1.0, 'in': 3.0, 'm': 2.0, 'seamstress': 1.0, 'out': 1.0, 'success': 1.0, 'you': 2.0, 'bucks': 1.0, 'who': 1.0, 'is': 3.0, 'at': 1.0, 'luckily': 1.0, 'washed': 1.0, 'friend': 1.0, 'graciously': 1.0, 'manufacturers': 1.0, 'noting': 1.0, 'injunction': 1.0, 'sewing': 1.0, 'offered': 1.0, 'had': 1.0}
Word element => {'couldn': 1.0, 'owns': 1.0, 'toy': 1.0, 'quality': 1.0, 'be': 2.0, 'might': 1.0, 'as': 1.0, 'money': 1.0, 'extra': 1.0, 'definitely': 1.0, 'any': 1.0, 'toys': 2.0, 'himself': 3.0, 'splurging': 1.0, 'entertained': 1.0, 'can': 1.0, 'so': 1.0, 'walls': 1.0, 'when': 1.0, 'am': 1.0, 'unless': 1.0, 'marks': 1.0, 'day': 1.0, 'from': 1.0, 'son': 2.0, 'carpet': 1.0, 'loved': 1.0, 'got': 1.0, 'didn': 1.0, 'hasn': 1.0, 'purchase': 1.0, 'my': 2.0, 'quite': 1.0, 'and': 7.0, 'find': 1.0, 't': 5.0, 'could': 1.0, 'wasn': 1.0, 'walkers': 1.0, 'or': 2.0, '8': 1.0, 'to': 4.0, 'up': 3.0, 'over': 1.0, 'the': 13.0, 'of': 3.0, 'rather': 1.0, 'reviews': 1.0, 'read': 1.0, 'old': 2.0, 'i': 6.0, 'for': 1.0, 'expensive': 1.0, 'happy': 1.0, 'one': 2.0, 'months': 2.0, 'walking': 2.0, 'ended': 1.0, 'on': 4.0, 'furniture': 1.0, 'although': 1.0, 'yet': 1.0, 'he': 11.0, 'walk': 2.0, 'with': 3.0, 'this': 4.0, 'was': 3.0, 'doesn': 1.0, 'attached': 2.0, 'worth': 1.0, 'now': 2.0, 'time': 1.0, 'walker': 2.0, 'uses': 1.0, 'pull': 2.0, 'house': 1.0, 'than': 2.0, 'nine': 1.0, 'not': 1.0, 'happier': 1.0, 'around': 2.0, 'his': 1.0, 'own': 1.0, 'm': 1.0, 'confident': 1.0, 'easily': 2.0, 'that': 1.0, 'into': 1.0, 'playing': 1.0, 'all': 3.0, 'helped': 1.0, 'push': 1.0, 'left': 1.0, 'slammed': 1.0, 'it': 9.0, 'him': 1.0, 'faster': 1.0, 'still': 1.0, 'if': 1.0, 'have': 1.0, 'also': 1.0, 'highest': 1.0, 'really': 1.0, 'at': 1.0, 'is': 1.0, 'floors': 1.0, 'tip': 1.0, 'has': 2.0, 'tries': 1.0, 'side': 1.0, 'front': 1.0, 'back': 1.0, 'but': 1.0, 'enjoys': 1.0, 'hardwood': 1.0}
Word element => {'baby': 1.0, 'price': 1.0, 'and': 1.0, 'perfect': 1.0, 'in': 1.0, 'loves': 1.0, 'or': 1.0, 'for': 2.0, 'one': 1.0, 'cold': 1.0, 'weather': 2.0, 'very': 2.0, 'climates': 1.0, 'looking': 1.0, 'right': 1.0, 'item': 1.0, 'this': 1.0, 'patterns': 1.0, 'seemed': 1.0, 'nice': 1.0, 'warm': 1.0, 'at': 1.0, 'caribbean': 1.0, 'some': 1.0, 'of': 1.0, 'the': 3.0, 'others': 1.0, 'summer': 1.0, 'is': 1.0, 'thick': 1.0, 'whether': 1.0, 'but': 1.0}
Word element => {'of': 1.0, 'something': 1.0, 'bucks': 1.0, 'in': 1.0, 'd': 1.0, 'quality': 1.0, 'put': 1.0, 'but': 1.0, 'all': 1.0, 'made': 1.0, 'more': 1.0, 'the': 2.0, 'better': 1.0, 'pretty': 1.0, 'pay': 1.0, 'cheap': 1.0, 'i': 2.0, 'one': 1.0, 's': 1.0, 'it': 3.0, 'went': 1.0, 'washer': 1.0, 'get': 1.0, 'and': 2.0, 'to': 1.0, 'is': 1.0, 'side': 1.0, 'a': 1.0, 'filling': 1.0, 'few': 1.0}
Word element => {'highly': 1.0, 'price': 1.0, 'quality': 1.0, 'excellent': 1.0, 'lol': 1.0, 'brown': 1.0, 'out': 2.0, 'already': 1.0, 'has': 1.0, 'from': 1.0, 'son': 1.0, 'grand': 1.0, 'although': 1.0, 'and': 1.0, 'charlie': 1.0, 'my': 1.0, 'little': 1.0, 'he': 1.0, 'with': 1.0, 'it': 2.0, 'recieving': 1.0, 'won': 1.0, 'great': 1.0, 'grown': 1.0, 't': 1.0, 'leave': 1.0, 'recommend': 1.0, 'home': 1.0, 'linus': 1.0, 'blanket': 1.0, 'like': 1.0}
Word element => {'this': 1.0, 'reccomend': 1.0, 'established': 1.0, 'better': 1.0, 'ways': 1.0, 'do': 1.0, 'and': 2.0, 'pictures': 1.0, 'by': 1.0, 'deceived': 1.0, 'brands': 1.0, 'both': 1.0, 'online': 1.0, 'more': 1.0, 'the': 1.0, 't': 1.0, 'be': 1.0, 'product': 2.0, 'poor': 1.0, 'had': 2.0, 'to': 3.0, 'not': 1.0, 'because': 1.0, 'description': 1.0, 'buy': 1.0, 'i': 4.0, 'for': 1.0, 'mine': 1.0, 'lost': 1.0, 'return': 1.0, 'don': 1.0, 'money': 1.0, 'pay': 1.0, 'shipping': 1.0}
Word element => {'nicer': 1.0, 'print': 1.0, 'exactly': 1.0, 'pretty': 1.0, 'back': 1.0, 'flat': 1.0, 'have': 1.0, 'can': 1.0, 'you': 1.0, 'that': 1.0, 'basket': 1.0, 'down': 2.0, 'drop': 1.0, 'fortune': 1.0, 'seats': 1.0, 'both': 1.0, 'only': 1.0, 'much': 1.0, 'harness': 1.0, 'point': 1.0, '5': 1.0, 'the': 7.0, 'great': 1.0, 'in': 2.0, 'more': 1.0, 'is': 3.0, 'amazon': 1.0, 'looks': 1.0, 'it': 6.0, 'this': 2.0, 'does': 1.0, 'duoglide': 1.0, 'long': 1.0, 'even': 1.0, 'i': 1.0, 'bag': 1.0, 'fit': 1.0, 'working': 1.0, 'far': 1.0, 'just': 1.0, 'modern': 1.0, 'not': 1.0, 'stroller': 2.0, 'received': 1.0, 'my': 2.0, 'minivan': 1.0, 'couple': 1.0, 'description': 1.0, 'and': 4.0, 'ago': 1.0, 'a': 3.0, 'detailed': 1.0, 'days': 1.0, 'on': 1.0, '3': 1.0, 'so': 2.0, 'unfold': 1.0, 'of': 1.0, 'husband': 1.0, 'was': 2.0, 'able': 1.0, 'like': 1.0, 'unload': 1.0, 'while': 3.0, 'from': 2.0, 'storage': 1.0, 'son': 1.0, 'little': 1.0, 'access': 1.0, 'very': 1.0, 'infant': 1.0, 'car': 1.0, 'holding': 1.0, 'seat': 1.0, 'to': 2.0, 'our': 1.0, 'has': 2.0, 'or': 1.0}
Word element => {'just': 1.0, 'requred': 1.0, 'minimum': 1.0, 'cellphone': 1.0, 'that': 1.0, 'storage': 1.0, 'tires': 1.0, 'bin': 1.0, 'mom': 1.0, 'holder': 2.0, 'cup': 2.0, 'be': 1.0, 'heavy': 1.0, 'not': 1.0, 'hood': 1.0, 'closing': 1.0, 'little': 1.0, 'front': 2.0, 'stuff': 1.0, 'rear': 1.0, 'of': 3.0, 'perfectly': 1.0, 'bottom': 1.0, 'completely': 1.0, 'would': 1.0, 'disney': 1.0, 'got': 1.0, 'even': 1.0, 'both': 2.0, 'because': 1.0, 'does': 2.0, 'lot': 1.0, 'trips': 1.0, 'fits': 2.0, 'assembly': 1.0, 'child': 1.0, 'the': 8.0, 'but': 1.0, '2': 1.0, 'it': 7.0, 'old': 1.0, 'i': 2.0, '4': 1.0, 'year': 1.0, 'they': 1.0, 'and': 6.0, 'have': 2.0, 'loved': 2.0, 's': 2.0, 'we': 1.0, 'a': 8.0, 'wont': 1.0, 'keeper': 1.0, 'this': 2.0, 'recline': 1.0, 'plus': 2.0, 'trays': 2.0, 'though': 1.0, 'te': 1.0, 'hang': 1.0, 'tray': 1.0, 'one': 2.0, 'for': 2.0, 'back': 1.0, 'enough': 1.0, 'thought': 1.0, 'had': 1.0, 'seat': 1.0, 'as': 3.0, 'to': 1.0, 'sleep': 1.0, 'girls': 1.0, 'comfortably': 1.0, 'several': 1.0, 'strolelr': 1.0, 'trouble': 1.0, 'lean': 1.0, 'survived': 1.0, 'airpor': 1.0}
Word element => {'looks': 1.0, 'great': 1.0, 'it': 1.0, '76': 1.0, 'the': 1.0, 'been': 1.0, 'our': 1.0, 'newest': 1.0, 'grandchild': 1.0, 'years': 1.0, 'for': 1.0, 'in': 2.0, 'is': 1.0, 'that': 1.0, 'a': 1.0, 'using': 1.0, 'famil': 1.0, 'this': 1.0, 'bassinet': 1.0, 'has': 1.0}
Word element => {'with': 1.0, 'good': 1.0, 'my': 1.0, 'wasn': 1.0, 'satisfied': 1.0, 'but': 1.0, 'thought': 1.0, 'was': 2.0, 'measuring': 1.0, 'as': 2.0, 'and': 1.0, 'feminine': 1.0, 'wrong': 1.0, 'can': 2.0, 'fault': 1.0, 't': 1.0, 'this': 1.0, 'fit': 1.0, 'product': 1.0, 'be': 2.0, 'pretty': 1.0, 'used': 1.0, 'alone': 1.0}
Word element => {'it': 1.0, 'worth': 1.0, 'its': 2.0, 'easily': 1.0, 'very': 1.0, 'heavy': 1.0, 'nice': 1.0, 'our': 1.0, 'stains': 1.0, 'fabric': 1.0, 'although': 1.0, 'newborn': 1.0, 'right': 1.0, 'out': 1.0, 'of': 1.0, 'the': 1.0, 'fit': 1.0, 'hospital': 1.0}
Word element => {'glad': 1.0, 'are': 1.0, 'carseat': 1.0, 'awesome': 1.0, 'weighs': 1.0, 'longer': 1.0, 'your': 1.0, 'will': 1.0, 'that': 1.0, 'much': 1.0, 'heaver': 1.0, 'more': 1.0, 'is': 2.0, 'picture': 1.0, 'didn': 1.0, 'little': 2.0, 'car': 2.0, 'gender': 1.0, 'baby': 3.0, 'this': 3.0, 'it': 5.0, 'the': 4.0, 'ones': 1.0, 'then': 3.0, 'know': 1.0, 'generic': 1.0, 'of': 1.0, 'up': 1.0, 'something': 1.0, 'soooo': 1.0, 'some': 1.0, 'and': 3.0, 'shows': 1.0, 'wanted': 1.0, 'our': 1.0, 'seat': 2.0, 'to': 2.0, 'i': 1.0, 'buy': 1.0, 'you': 3.0, 'we': 3.0, 't': 1.0, 's': 3.0, 'a': 4.0, 'but': 1.0, 'designed': 1.0, 'for': 1.0, 'love': 2.0, 'fit': 2.0, 'bigger': 1.0, '12': 1.0, 'bought': 1.0, 'cuter': 1.0, 'one': 2.0, 'months': 1.0, 'lighter': 3.0, 'so': 2.0, 'want': 2.0, 'if': 2.0}
Word element => {'haba': 1.0, 'we': 1.0, 'other': 1.0, 'from': 1.0, 'match': 1.0, 'also': 1.0, 'by': 1.0, 'block': 1.0, 'month': 1.0, 'opening': 1.0, 'without': 1.0, 'she': 1.0, 'my': 1.0, 'ten': 1.0, 'the': 5.0, 'sorter': 1.0, 'baby': 1.0, 'toy': 2.0, 'already': 1.0, 'purchased': 1.0, 'being': 1.0, 'to': 1.0, 'this': 2.0, 'loves': 1.0, 'i': 2.0, 'have': 1.0, 'able': 1.0, 'blocks': 2.0, 'put': 1.0, 'inside': 1.0, 'because': 1.0, 'basket': 1.0, 'just': 1.0, 'love': 1.0, 'for': 1.0, 'using': 1.0, 'shape': 1.0}
Word element => {'you': 1.0, 'seen': 1.0, 'one': 1.0, 'slightly': 1.0, 'for': 2.0, 'does': 1.0, 'having': 1.0, 'block': 1.0, 'same': 1.0, 'into': 1.0, 'young': 1.0, 'that': 3.0, 'been': 1.0, 'initially': 1.0, 'go': 1.0, 'a': 6.0, 's': 1.0, 'like': 1.0, 'holes': 2.0, 'they': 2.0, 'inside': 1.0, 'age': 1.0, '8': 1.0, 'doubt': 1.0, 'supposed': 1.0, '3': 1.0, 'on': 2.0, 'in': 4.0, 'put': 1.0, 'explained': 1.0, '50': 1.0, 'comes': 1.0, 'spent': 1.0, 'would': 4.0, 'toy': 2.0, 'i': 9.0, 'thinking': 1.0, 'with': 1.0, 'this': 3.0, 'perfect': 1.0, 'first': 1.0, 'will': 1.0, 'square': 3.0, 'encourages': 1.0, 'of': 3.0, 'the': 7.0, 'person': 1.0, 'sent': 1.0, 'not': 3.0, 'sorter': 1.0, 'to': 8.0, 'any': 1.0, 'have': 6.0, 'blocks': 1.0, 'guess': 1.0, 'rectangular': 2.0, 'ok': 1.0, 'but': 3.0, 'work': 1.0, 'think': 2.0, 'better': 1.0, 'which': 1.0, 'side': 1.0, 'made': 1.0, 'called': 1.0, 'haba': 1.0, 'problem': 1.0, 'trouble': 1.0, 'get': 1.0, 'fit': 3.0, 't': 2.0, 'replacement': 1.0, 'out': 1.0, 'it': 10.0, 'thought': 1.0, 'hole': 4.0, 'didn': 2.0, 'how': 1.0, 'act': 1.0, 'also': 1.0, 'us': 1.0, 'free': 1.0, 'away': 1.0, 'value': 1.0, 'great': 1.0, 'customer': 1.0, 'sideways': 2.0, 'if': 3.0, 'turn': 2.0, 'service': 1.0, 'figure': 1.0, '30': 1.0, 'right': 1.0, 'an': 1.0, 'infant': 1.0, 'solving': 1.0, 'critical': 1.0, 'is': 3.0, 'at': 1.0}
Word element => {'fun': 1.0, 's': 1.0, 'stack': 1.0, 'played': 1.0, 'little': 1.0, 'and': 1.0, 'will': 1.0, 'quality': 1.0, 'to': 1.0, 'be': 1.0, 'great': 1.0, 'the': 2.0, 'made': 1.0, 'years': 1.0, 'toy': 1.0, 'wooden': 1.0, 'up': 1.0, 'beautifully': 1.0, 'for': 2.0, 'one': 1.0, 'blocks': 1.0, 'it': 1.0, 'this': 1.0, 'with': 1.0}
Word element => {'enough': 1.0, 'well': 1.0, 'positioned': 1.0, 'have': 1.0, 'with': 2.0, 'it': 3.0, 'this': 1.0, 'times': 1.0, 'far': 1.0, 'out': 2.0, 'couple': 1.0, 'and': 2.0, 't': 1.0, 'a': 3.0, 'the': 3.0, 'my': 1.0, 'used': 1.0, 'carseat': 1.0, 'husband': 1.0, 'our': 1.0, 'to': 1.0, 'for': 1.0, 'one': 1.0, 've': 1.0, 'in': 1.0, 'maybe': 1.0, 'installed': 1.0, 'so': 2.0, 'bumps': 1.0, 'i': 3.0, 'straps': 1.0, 'nudge': 1.0, 'success': 1.0, 'of': 3.0, 'don': 1.0, 'teeny': 1.0, 'or': 1.0, 'only': 1.0, 'tiny': 1.0, 'fall': 1.0, 'ongoing': 1.0, 'slightest': 1.0, 'placing': 1.0, 'baby': 1.0, 'taking': 1.0, 'course': 1.0, 'hooks': 1.0, 'foresee': 1.0, 'variety': 1.0, 'be': 1.0, 'involves': 1.0, 'nudges': 1.0, 'an': 1.0, 'problem': 1.0}
Word element => {'box': 1.0, 'donation': 1.0, 'goodwill': 1.0, 'and': 1.0, 'finally': 1.0, 'took': 1.0, 'i': 1.0, 'threw': 1.0, 'on': 2.0, 'until': 1.0, 'wouldn': 1.0, 'not': 1.0, 'seat': 1.0, 'my': 1.0, 'things': 1.0, 'infant': 1.0, 'out': 1.0, 'them': 2.0, 'stayed': 1.0, 'backseat': 1.0, 't': 1.0, 'the': 3.0, 'these': 1.0, 'they': 2.0, 'when': 1.0, 'where': 1.0, 'in': 2.0, 'stay': 1.0, 'wound': 1.0, 'use': 1.0, 'of': 1.0, 'up': 1.0, 'bummer': 1.0, 'floor': 1.0}
Word element => {'for': 1.0, 'one': 1.0, 'process': 1.0, 'seat': 2.0, 'quicker': 1.0, 'car': 1.0, 'in': 1.0, 'make': 1.0, 'helps': 1.0, 'use': 1.0, 'to': 1.0, 'easy': 1.0, 'super': 1.0, 'easier': 1.0, 'solves': 1.0, 'is': 1.0, 'really': 2.0, 'a': 2.0, 'it': 1.0, 'this': 2.0, 'gone': 1.0, 'have': 1.0, 'without': 1.0, 'seatbelt': 1.0, 'his': 1.0, 'what': 1.0, 'long': 1.0, 'so': 1.0, 'i': 3.0, 'am': 2.0, 'how': 1.0, 'child': 1.0, 'idea': 1.0, 'problem': 1.0, 'constantly': 1.0, 'getting': 2.0, 'and': 3.0, 'great': 1.0, 'the': 2.0, 'pulling': 1.0, 'my': 2.0, 'straps': 1.0, 'son': 1.0, 'from': 1.0, 'each': 1.0, 'much': 1.0, 'underneath': 1.0}
Word element => {'it': 1.0, 'really': 1.0, 'good': 1.0, 'in': 1.0, 'look': 1.0, 'picture': 1.0, 'i': 2.0, 't': 1.0, 'actually': 1.0, 'haven': 1.0, 'seen': 1.0, 'they': 1.0, 'do': 1.0, 'like': 1.0, 'any': 1.0, 'as': 1.0, 'the': 1.0, 'yet': 1.0, 'but': 1.0}
Word element => {'ll': 1.0, 'is': 1.0, 'fast': 2.0, 'trying': 1.0, 'think': 2.0, 'newborns': 1.0, 'about': 1.0, 'us': 1.0, 'fine': 1.0, 'yourself': 1.0, 'works': 1.0, 'do': 2.0, 'it': 3.0, 'month': 1.0, '9': 1.0, 'nipple': 2.0, 'old': 1.0, 'problems': 1.0, 'flow': 3.0, 'had': 1.0, 'people': 1.0, 'solves': 1.0, 'are': 2.0, 'the': 7.0, 'ones': 1.0, 'great': 1.0, 'well': 2.0, 'we': 1.0, 's': 1.0, 'hole': 1.0, 't': 3.0, 'a': 4.0, 'free': 1.0, 'chemical': 1.0, 'mouth': 1.0, 'into': 1.0, 'that': 3.0, 'been': 1.0, 'mess': 1.0, 'i': 10.0, 'have': 4.0, 'thinkbaby': 1.0, 'good': 1.0, 'they': 2.0, 'searching': 1.0, 'green': 2.0, 'and': 4.0, 'wide': 1.0, 'long': 1.0, 'hard': 2.0, 'with': 4.0, 'for': 2.0, 'love': 1.0, 'often': 1.0, 'vents': 1.0, 'doesn': 1.0, 'also': 1.0, 'these': 1.0, 'some': 1.0, 'worth': 1.0, 'medium': 1.0, 'bottles': 2.0, 'know': 2.0, 'which': 1.0, 'plastic': 1.0, 'but': 4.0, 'can': 1.0, 'don': 2.0, 'to': 2.0, 'grow': 3.0, 'as': 1.0, 'use': 1.0, 'leak': 2.0, 'nipples': 1.0, 'bit': 2.0, 'vent': 1.0, 'bottle': 1.0, 'so': 1.0}
Word element => {'is': 1.0, 'mission': 1.0, 'now': 1.0, 'at': 1.0, 'don': 1.0, 'leaked': 1.0, 'better': 1.0, 'medela': 1.0, 'of': 1.0, 'a': 1.0, 't': 1.0, 's': 6.0, 'are': 2.0, 'son': 3.0, 'sometimes': 1.0, 'after': 1.0, 'bottle': 1.0, 'so': 2.0, 'because': 1.0, 'thinkbaby': 1.0, 'clean': 1.0, 'sippy': 1.0, 'them': 2.0, 'brown': 1.0, 'pricey': 1.0, 'were': 4.0, 'all': 1.0, 'to': 6.0, 'had': 1.0, 'nice': 1.0, 'next': 1.0, 'that': 1.0, 'loves': 1.0, 'but': 4.0, 'get': 1.0, 'easy': 1.0, 'bottles': 8.0, 'switching': 1.0, 'these': 2.0, 'my': 4.0, 'bpa': 3.0, 'momo': 1.0, 'the': 1.0, 'without': 2.0, 'plastic': 1.0, 'am': 1.0, 'easily': 1.0, 'evenflo': 3.0, 'i': 4.0, 'then': 2.0, 'break': 1.0, 'glass': 2.0, 'switched': 1.0, 'for': 2.0, 'ordered': 1.0, 'reasonable': 1.0, 'leak': 1.0, 'glad': 1.0, 'replace': 1.0, 'nipples': 2.0, 'and': 2.0, 'too': 1.0, 'from': 1.0, 'hard': 1.0, 'with': 1.0, 'they': 5.0, 'suck': 1.0, 'dr': 1.0, 'on': 1.0}
Word element => {'handles': 1.0, 'on': 1.0, 'keeps': 1.0, 'of': 1.0, 'juice': 2.0, 'a': 3.0, 'he': 1.0, 'it': 1.0, 'with': 1.0, 'for': 1.0, 'little': 1.0, 'tool': 1.0, 'toddler': 1.0, 'man': 1.0, 'from': 1.0, 'out': 1.0, 'squeezing': 1.0, 'great': 1.0, 'the': 3.0, 'and': 1.0, 'box': 2.0, 'like': 1.0, 'hanging': 1.0, 'seems': 1.0, 'to': 2.0}
Word element => {'clip': 1.0, 'pacifier': 1.0, 'overpriced': 1.0, 'bit': 1.0, 'a': 1.0, 'quite': 1.0, 'to': 1.0, 'product': 1.0, 'for': 1.0, 'one': 3.0, 'picture': 1.0, 'reality': 1.0, 'clips': 1.0, 'believe': 1.0, 'receive': 2.0, 'title': 1.0, 'and': 1.0, 'of': 2.0, 'leads': 1.0, 'the': 2.0, 'will': 1.0, 'all': 1.0, '5': 1.0, 'you': 2.0, 's': 1.0, 'pictured': 1.0, 'this': 1.0, 'only': 2.0, 'it': 1.0, 'in': 1.0}
Word element => {'fine': 1.0, 'even': 1.0, 'problem': 1.0, 'found': 1.0, 'worked': 1.0, 'or': 2.0, 'no': 1.0, 'have': 1.0, 'another': 1.0, 'and': 6.0, 'so': 1.0, 'regularly': 1.0, 'update': 1.0, 'between': 1.0, 'we': 3.0, 've': 2.0, 'seems': 1.0, 'past': 1.0, 'any': 1.0, 'our': 1.0, 'that': 2.0, 'collapsing': 2.0, 'who': 1.0, 'these': 1.0, 'the': 7.0, 'nipple': 5.0, 'used': 1.0, 'good': 1.0, 'inversion': 1.0, 'old': 1.0, 'flow': 1.0, 'had': 2.0, 'it': 1.0, 'month': 1.0, 'son': 1.0, 'looked': 1.0, 'from': 1.0, 'though': 1.0, 'ring': 4.0, 'comes': 1.0, 'is': 1.0, 'one': 2.0, 'ten': 1.0, 'weeks': 1.0, 'recommended': 1.0, 'maybe': 1.0, '4': 1.0, 'for': 2.0, 'stars': 1.0, 'instead': 1.0, 'nipples': 1.0, 'leak': 1.0, 'was': 1.0, 'leaking': 1.0, 'interchanged': 1.0, 'with': 1.0}
Word element => {'germany': 1.0, 'knowing': 1.0, 'good': 1.0, 'reassuring': 1.0, 's': 1.0, 'cute': 1.0, 'so': 1.0, 'wheels': 1.0, 'little': 1.0, 'the': 1.0, 'on': 1.0, 'china': 1.0, 'play': 1.0, 'along': 1.0, 'beautifully': 1.0, 'especially': 1.0, 'clutching': 1.0, 'not': 2.0, 'would': 1.0, 'very': 1.0, 'from': 1.0, 'baby': 1.0, 'toy': 4.0, 'less': 1.0, 'made': 2.0, 'safe': 1.0, 'expect': 1.0, 'i': 2.0, 'is': 6.0, 'for': 1.0, 'love': 1.0, 'with': 1.0, 'this': 2.0, 'it': 5.0, 'that': 1.0, 'and': 3.0, 'haba': 2.0, 'a': 3.0, 'since': 1.0, 'in': 1.0, 'company': 1.0, 'also': 1.0, 'to': 1.0, 'rolls': 1.0, 'my': 1.0, 'push': 1.0}
Word element => {'new': 1.0, 'my': 1.0, 'brand': 1.0, 'for': 2.0, 'look': 1.0, 'always': 1.0, 'toys': 2.0, 'good': 1.0, 'quality': 1.0, 'very': 1.0, 'and': 1.0, 'baby': 1.0, 'with': 1.0, 'pleased': 1.0, 'fun': 1.0, 'makes': 1.0, 'this': 1.0, 'grandchildren': 1.0, 'i': 1.0, 'unique': 1.0, 'toy': 1.0, 'haba': 2.0}
Word element => {'bottle': 1.0, 'using': 1.0, 'with': 1.0, 'problem': 1.0, 'doesn': 1.0, 'one': 1.0, 'it': 1.0, 'this': 2.0, 'mos': 1.0, 'but': 1.0, 'has': 1.0, 'learned': 1.0, 'valve': 1.0, 'trouble': 1.0, 'nipple': 1.0, 'the': 2.0, 'my': 2.0, 'avent': 1.0, 'onto': 1.0, 'be': 1.0, 'he': 2.0, '6': 1.0, 'of': 1.0, 'latching': 1.0, 'seems': 1.0, 'son': 1.0, 'as': 1.0, 'appropriate': 1.0, 'for': 1.0, 'switched': 1.0, 'used': 1.0, 'suggested': 1.0, 'when': 2.0, 'ages': 1.0, '3': 1.0, 'bottles': 1.0, 'wasn': 1.0, 'nursing': 1.0, 'working': 1.0, 'then': 1.0, 'have': 1.0, 'must': 1.0, 'anti': 1.0, 'i': 1.0, 'previously': 1.0, 'bpa': 1.0, 'and': 2.0, 'interesting': 1.0, 'gas': 1.0, 'a': 1.0, 't': 2.0, 'we': 1.0, 'no': 1.0, 'colic': 1.0, 'is': 1.0, 'little': 1.0}
Word element => {'on': 1.0, 'big': 1.0, 'chews': 1.0, 'bc': 1.0, 'often': 1.0, 'are': 1.0, 'get': 1.0, 'eventhough': 1.0, 'and': 2.0, 'with': 1.0, 'cereal': 1.0, 'has': 1.0, 'them': 2.0, 'reflux': 1.0, 'my': 1.0, 'too': 1.0, 'daughter': 1.0, 'we': 2.0, 'design': 1.0, 'in': 1.0, 'still': 1.0, 'nipples': 1.0, 'holes': 1.0, 'the': 1.0, 'replace': 1.0, 'great': 2.0, 'these': 1.0, 'acid': 1.0, 'a': 1.0, 'since': 2.0, 'cross': 1.0, 'cut': 1.0, 'to': 1.0, 'was': 1.0, 'milk': 1.0, 'needed': 1.0, 'she': 2.0, 'have': 1.0, 'born': 1.0, 'her': 1.0, 'were': 1.0}
Word element => {'waste': 1.0, 'not': 1.0, 'rattles': 1.0, 'still': 1.0, 'cute': 1.0, 'now': 1.0, 'cut': 1.0, 'safe': 1.0, 'better': 1.0, 'figure': 1.0, 'sturdy': 1.0, 'looked': 1.0, 'less': 1.0, 'disappointed': 1.0, 'be': 1.0, 'or': 1.0, 'come': 1.0, 'both': 1.0, 'said': 1.0, 'day': 1.0, 'appointment': 1.0, 'least': 1.0, 'as': 1.0, 'to': 3.0, 'showed': 1.0, 'infants': 1.0, 'i': 5.0, 'lose': 1.0, 'when': 1.0, 'mom': 1.0, 'daughter': 2.0, 'off': 3.0, 'myself': 1.0, 'the': 10.0, 'hands': 3.0, 'was': 2.0, 'crazy': 1.0, 'and': 6.0, 'she': 4.0, 'it': 6.0, 'this': 1.0, 'with': 1.0, 'says': 1.0, '6': 2.0, 'got': 1.0, 'loved': 1.0, 'than': 1.0, 'choking': 1.0, 'chew': 1.0, 'for': 3.0, 'so': 2.0, 'chocking': 1.0, 'my': 3.0, 'a': 2.0, 'could': 1.0, 'we': 2.0, 'doctor': 2.0, 's': 4.0, 'on': 1.0, 'chewed': 1.0, 'but': 3.0, 'next': 1.0, 'box': 1.0, 'that': 3.0, 'sorry': 1.0, 'thought': 3.0, 'were': 1.0, 'hazards': 2.0, 'total': 1.0, 'lot': 1.0, 'at': 3.0, 'since': 1.0, 'check': 1.0, 'hair': 2.0, 'toy': 1.0, 'warned': 1.0, 'is': 1.0, 'are': 2.0, 'known': 1.0, 'they': 1.0, 'suck': 1.0, 'everything': 1.0, 'months': 1.0, 'decided': 1.0}
Word element => {'thank': 1.0, 'stocking': 1.0, 'made': 1.0, 'my': 1.0, 'in': 2.0, 'and': 1.0, 'very': 1.0, 'delicate': 1.0, 't': 1.0, 'definitely': 1.0, 'is': 1.0, 'it': 2.0, 'size': 1.0, 'can': 1.0, 'wait': 1.0, 'not': 1.0, 'well': 1.0, 'a': 1.0, 'you': 1.0, 's': 1.0, 'choking': 1.0, 'hazard': 1.0, 'i': 1.0, 'to': 1.0, '7mo': 1.0, 'but': 1.0, 'put': 1.0}
Word element => {'our': 1.0, 'in': 1.0, 'toy': 1.0, 'but': 1.0, 'satisfying': 1.0, 'fancy': 1.0, 'while': 1.0, 'studied': 1.0, 'hold': 1.0, 'even': 1.0, 'wood': 1.0, 'well': 1.0, 'a': 4.0, 'of': 1.0, 'good': 2.0, 'made': 3.0, 'my': 2.0, 'second': 1.0, 'want': 1.0, 'is': 5.0, 'fine': 1.0, 'case': 1.0, 'product': 1.0, 'husband': 1.0, 'to': 3.0, 'with': 1.0, 'it': 5.0, 'this': 1.0, 'more': 1.0, 't': 1.0, 'materials': 1.0, 'however': 1.0, 'just': 1.0, 'interested': 1.0, 'not': 2.0, 'and': 2.0, 'interesting': 1.0, 'she': 1.0, 'parents': 1.0, 'for': 2.0, 'one': 1.0, 'little': 1.0, 'didn': 1.0}
Word element => {'his': 1.0, 'hasn': 1.0, 'yay': 1.0, 'birthday': 1.0, '1st': 1.0, 'several': 1.0, 'joy': 1.0, 'my': 1.0, 'son': 1.0, 'decided': 1.0, 'and': 4.0, 'for': 2.0, 'the': 3.0, 'other': 1.0, 'a': 1.0, 't': 1.0, 'we': 1.0, 'this': 3.0, 'it': 2.0, 'first': 1.0, 'toys': 1.0, 'teether': 1.0, 'plastic': 1.0, 'he': 4.0, 'received': 1.0, 'tile': 1.0, 'swipe': 1.0, 'can': 1.0, 'but': 1.0, 'as': 1.0, 'to': 2.0, 'was': 1.0, 'spin': 4.0, 'less': 1.0, 'hardwood': 1.0, 'learned': 1.0, 'floor': 1.0, 'loves': 1.0, 'watching': 1.0, 'haba': 1.0, 'things': 1.0, 'toy': 1.0, 'himself': 1.0, 'used': 1.0, 'rays': 1.0, 'easily': 1.0, 'on': 1.0, 'make': 1.0}
Word element => {'delights': 1.0, 'just': 1.0, 'disappointed': 1.0, 'and': 1.0, 'as': 1.0, 'never': 1.0, 'products': 1.0, 'been': 2.0, 'simply': 1.0, 'this': 1.0, 'have': 2.0, 'haba': 2.0, 'are': 1.0, 'buying': 1.0, 'outstanding': 1.0, 'usual': 1.0, 'i': 1.0, 'years': 1.0, 'for': 1.0}
Word element => {'on': 1.0, 'brand': 1.0, 'well': 1.0, 'love': 1.0, 'i': 1.0, 'a': 1.0, 's': 2.0, 'trying': 1.0, 'up': 1.0, 'of': 2.0, 'baby': 1.0, 'in': 1.0, 'age': 1.0, 'end': 1.0, 'my': 2.0, 'haba': 1.0, 'rid': 1.0, 'toys': 2.0, 'sunshine': 1.0, 'the': 3.0, 'made': 1.0, 'home': 1.0, 'mouth': 1.0, 'especially': 1.0, 'awfully': 1.0, 'those': 1.0, 'that': 1.0, 'are': 1.0, 'chewing': 1.0, 'and': 2.0, 'son': 1.0, 'to': 1.0, 'as': 2.0, 'elastic': 1.0, 'rays': 1.0, 'this': 1.0, 'plastic': 1.0, 'he': 1.0, 'sun': 1.0, 'infant': 1.0, 'occupied': 1.0, 'long': 1.0, 'his': 1.0, 'anything': 1.0, 'else': 1.0, 'adorable': 1.0, 'keep': 1.0, 'at': 1.0, 'cute': 1.0}
Word element => {'face': 1.0, 'smiling': 1.0, 'nice': 1.0, 'tho': 1.0, 'not': 1.0, 'chewing': 1.0, 'like': 1.0, 'finger': 1.0, 'for': 2.0, 'good': 1.0, 'so': 1.0, 'much': 1.0, 'bit': 1.0, 'shapes': 1.0, 'can': 1.0, 'be': 1.0, 'easy': 1.0, 'find': 1.0, 'more': 1.0, 'the': 1.0, 'colors': 1.0, 'toy': 1.0, 'magica': 1.0, 'spun': 1.0, 'by': 1.0, 'interest': 1.0, 'to': 1.0, 'was': 1.0, 'loved': 1.0, 'bright': 1.0, 'a': 1.0}
Word element => {'catching': 1.0, 'ear': 1.0, 'wish': 1.0, 'how': 1.0, 'mouth': 1.0, 'does': 1.0, 'will': 1.0, 'it': 10.0, 'think': 1.0, 'months': 1.0, '4': 1.0, 'i': 8.0, 'seemed': 1.0, '101': 1.0, 'feel': 1.0, 'stocking': 1.0, 'faint': 1.0, 'in': 5.0, 'her': 1.0, 'good': 1.0, 'before': 1.0, 'large': 1.0, 'just': 1.0, 'palm': 1.0, 'open': 1.0, 'babe': 2.0, 's': 2.0, 'a': 5.0, 't': 1.0, 'away': 1.0, 'and': 5.0, 'tucked': 1.0, 'too': 1.0, 'very': 2.0, 'little': 2.0, 'size': 2.0, 'with': 3.0, '34': 2.0, 'rays': 1.0, 'to': 7.0, 'least': 1.0, 'on': 4.0, 'long': 1.0, 'update': 1.0, 'out': 1.0, 'flexy': 1.0, 'don': 1.0, 'of': 2.0, 'the': 9.0, 'place': 1.0, 'cardboard': 1.0, 'showed': 1.0, 'are': 1.0, 'bad': 1.0, 'cute': 1.0, 'for': 2.0, 'term': 1.0, 'so': 1.0, 'about': 1.0, 'she': 2.0, 'baby': 1.0, 'when': 1.0, 'intrigued': 1.0, 'would': 1.0, 'recommend': 1.0, 'was': 3.0, 'christmas': 1.0, 'bag': 1.0, 'still': 1.0, 'ready': 1.0, 'shipping': 2.0, 'box': 1.0, 'other': 1.0, 'items': 1.0, 'upon': 1.0, 'got': 1.0, 'black': 1.0, 'markings': 1.0, 'but': 1.0, 'face': 1.0, 'able': 1.0, 'seller': 1.0, 'rub': 1.0, 'marks': 1.0, 'sending': 1.0, 'off': 1.0, 'people': 1.0, 'point': 1.0, 'like': 1.0, 'hold': 1.0, 'most': 1.0, 'back': 1.0, 'll': 1.0, 'inside': 1.0, 'be': 1.0, 'lazy': 1.0, 'bell': 1.0, 'at': 2.0, 'is': 1.0, 'more': 1.0, 'sounding': 1.0}
Word element => {'i': 1.0, 'back': 1.0, 'sanity': 1.0, 'would': 2.0, 'recommend': 1.0, 'she': 1.0, 'could': 1.0, 'are': 1.0, 'they': 1.0, 'ever': 1.0, 'cups': 3.0, 'take': 2.0, 'months': 1.0, 'sippy': 2.0, 'best': 1.0, 'brought': 1.0, 'not': 1.0, 'after': 1.0, 'thing': 1.0, 'get': 1.0, 'the': 2.0, 'these': 3.0, 'my': 2.0, 'breastfeed': 1.0, 'highly': 1.0, 'baby': 1.0, 'to': 1.0, 'a': 1.0, 'bottle': 1.0, '6': 1.0, 'were': 1.0, 'only': 1.0}
Word element => {'munchkin': 1.0, 'it': 2.0, 'this': 1.0, 'first': 1.0, 'son': 2.0, 'from': 2.0, '1st': 1.0, 'you': 1.0, 'cup': 2.0, 'sippy': 2.0, 'right': 1.0, 'can': 1.0, 'to': 2.0, 'was': 1.0, 'bottle': 1.0, 'two': 1.0, 'i': 1.0, 'read': 1.0, '5': 1.0, 'before': 2.0, 'even': 1.0, 'the': 6.0, 's': 1.0, 'a': 1.0, 't': 1.0, 'my': 3.0, 'b': 1.0, 'book': 1.0, 'making': 1.0, 'transition': 1.0, 'day': 1.0, 'relief': 1.0, 'and': 1.0, 'me': 1.0, 'defenitely': 1.0, 'pretty': 1.0, 'prepared': 1.0, 'stars': 1.0, 'for': 2.0, 'love': 1.0, 'totally': 1.0, 'that': 1.0, 'about': 1.0, 'unfold': 1.0, 'however': 1.0, 'lil': 1.0, 'imagine': 1.0, 'battle': 1.0, 'of': 1.0, 'having': 1.0, 'works': 1.0, 'much': 1.0, 'try': 1.0}
Word element => {'another': 1.0, 'purchase': 1.0, 'am': 1.0, 'did': 1.0, 'like': 1.0, 'would': 1.0, 'one': 2.0, 'finally': 1.0, 'to': 1.0, 'hoping': 1.0, 'was': 1.0, 'and': 2.0, 'take': 1.0, 'will': 1.0, 'this': 1.0, 'with': 1.0, 'it': 2.0, 'he': 3.0, 'hopes': 1.0, 'write': 1.0, 'hates': 1.0, 'on': 1.0, 'decided': 1.0, 'son': 1.0, 'the': 2.0, 'truly': 1.0, 'my': 1.0, 'reviews': 1.0, 'rarely': 1.0, 'going': 1.0, 'cups': 1.0, 'i': 4.0, 'something': 1.0, 'disappointed': 1.0, 'unless': 1.0, 'in': 1.0, 'sippy': 1.0, 'product': 1.0, 'bought': 1.0, 'so': 1.0, 'is': 1.0, 'amazon': 1.0, 'many': 1.0, 'always': 1.0, 'of': 1.0, 'them': 1.0}
Word element => {'wonderfully': 1.0, 'holding': 1.0, 'use': 1.0, 'constant': 1.0, 'even': 1.0, 'order': 1.0, 'now': 1.0, 'two': 1.0, 'been': 1.0, 'have': 1.0, 'rack': 1.0, 'safe': 1.0, 'clean': 1.0, 'easy': 1.0, 'knocks': 1.0, 'head': 1.0, 'dishwasher': 1.0, 'his': 1.0, 'hurt': 1.0, 'want': 1.0, 't': 1.0, 'wouldn': 1.0, 'play': 1.0, 'walls': 1.0, 'plastic': 1.0, 'thin': 1.0, 'like': 1.0, 'rather': 1.0, 'extended': 1.0, 'exclusively': 1.0, 'for': 3.0, 'try': 1.0, 'scream': 1.0, 'be': 2.0, 'not': 3.0, 'just': 1.0, 'anyone': 1.0, 'and': 5.0, 'top': 1.0, 'similar': 1.0, 'does': 3.0, 'has': 1.0, 'them': 2.0, 'some': 1.0, 'never': 1.0, 'weeks': 1.0, 'would': 2.0, 'time': 1.0, 'worried': 1.0, 'new': 1.0, 'drop': 1.0, 'same': 1.0, 'period': 1.0, 'with': 3.0, 'he': 4.0, 'answer': 1.0, 'else': 1.0, 'd': 1.0, 'after': 1.0, 'experience': 1.0, 'hold': 1.0, 'using': 2.0, 'since': 1.0, 'when': 1.0, 'able': 1.0, 'you': 1.0, 'baby': 4.0, 'many': 1.0, 'was': 2.0, 'against': 1.0, 'trainer': 1.0, 'to': 9.0, 'any': 1.0, 'stay': 1.0, 'if': 3.0, 'take': 2.0, 'we': 2.0, '5': 1.0, 'different': 1.0, 'problem': 1.0, 'taken': 1.0, 'because': 3.0, 'combination': 1.0, 'spout': 1.0, 'a': 4.0, 'imagine': 1.0, 'by': 1.0, 'bottles': 1.0, 'need': 1.0, 'or': 1.0, 'b': 1.0, 'tried': 1.0, 'see': 1.0, 'floor': 1.0, 'him': 2.0, 'it': 11.0, 'bottle': 3.0, 'this': 5.0, 'of': 6.0, 'the': 8.0, 'fed': 1.0, 'without': 1.0, 'at': 2.0, 'is': 5.0, 'will': 2.0, 'us': 1.0, 'also': 1.0, 'i': 4.0, 'well': 1.0, 'more': 2.0, 'babies': 1.0, 'loves': 1.0, 'but': 2.0, 'handles': 1.0, 'being': 1.0, 'very': 2.0, 'himself': 1.0, 'worked': 1.0, 'up': 1.0, 'sippy': 3.0, 'takes': 1.0, 'great': 1.0, 'unlike': 2.0, 'an': 1.0, 'all': 1.0, 'other': 1.0, 'sippies': 2.0, 'leak': 1.0, 'refused': 1.0, 'likely': 1.0, 'months': 1.0, 'tons': 1.0, 'get': 1.0, 'on': 2.0, 'as': 1.0, 'heavy': 1.0}
Word element => {'have': 1.0, 'people': 1.0, 'other': 1.0, 'leak': 1.0, 'house': 1.0, 'no': 1.0, 'this': 1.0, 'only': 2.0, 'he': 2.0, 'it': 2.0, 'doesn': 1.0, 'was': 1.0, 'early': 1.0, 'him': 1.0, 'terrible': 1.0, 'that': 1.0, 'everywhere': 1.0, 'cup': 1.0, 'would': 1.0, 'nursed': 1.0, 'my': 1.0, 'lid': 1.0, 'of': 1.0, 'there': 1.0, 't': 1.0, 'transitioned': 1.0, 'one': 1.0, 'drink': 1.0, 'bottle': 1.0, 'from': 1.0, 'i': 1.0, 'took': 1.0, 'and': 2.0, 'noticed': 1.0, 'type': 1.0, 'leaks': 1.0, 'these': 1.0, 'great': 1.0, 'the': 2.0, 'to': 2.0, 'as': 3.0, 'cups': 1.0, 'are': 2.0, 'sippy': 1.0, 'baby': 1.0, 'them': 1.0, 'long': 1.0, 'even': 1.0, 'easily': 1.0, 'you': 1.0, 'on': 1.0, 'screw': 1.0, 'right': 1.0, 'will': 1.0, 'drag': 1.0, 'around': 1.0}
Word element => {'happy': 1.0, 'at': 1.0, 'doesn': 1.0, 'think': 1.0, 'takes': 1.0, 'right': 1.0, 'don': 1.0, 'because': 1.0, 'and': 1.0, 'drip': 1.0, 'milk': 1.0, 'shake': 1.0, 'when': 1.0, 'baby': 2.0, 'about': 1.0, 'old': 1.0, 'i': 5.0, '9mo': 1.0, 'girl': 1.0, 'my': 2.0, 'trainer': 1.0, 'cup': 1.0, 'she': 1.0, 'it': 5.0, 'have': 1.0, '8': 1.0, 'months': 1.0, 'formula': 1.0, 'known': 1.0, 'bit': 1.0, 'bottle': 2.0, 'the': 5.0, 'but': 2.0, 'process': 1.0, '2': 1.0, 'great': 1.0, 'ones': 1.0, 'from': 1.0, 't': 2.0, 'a': 1.0, 'ago': 1.0, 's': 2.0, 'we': 2.0, 'all': 1.0, 'to': 1.0, 'ordering': 1.0, 'in': 1.0, 'also': 1.0, 've': 1.0, 'would': 1.0, 'that': 1.0, 'loves': 1.0, 'best': 1.0, 'm': 1.0, 'just': 2.0, 'once': 1.0, 'spout': 1.0, 'of': 1.0, 'more': 1.0, 'is': 3.0, 'had': 1.0, 'leaks': 1.0, 'this': 2.0, 'wish': 1.0, 'soft': 1.0, 'close': 1.0, 'unlike': 1.0, 'nuk': 1.0, 'easy': 1.0, 'hold': 1.0}
Word element => {'yet': 1.0, 'teats': 1.0, 'haven': 1.0, 'and': 1.0, 'all': 1.0, 'does': 1.0, 'leak': 1.0, 'up': 1.0, 'held': 1.0, 'over': 1.0, 'bpa': 1.0, 'change': 1.0, 'is': 2.0, 'to': 1.0, 'had': 1.0, 'now': 1.0, 'has': 1.0, 'free': 1.0, 'not': 1.0, 'because': 1.0, 'just': 1.0, 'loves': 1.0, 'product': 1.0, 'bought': 1.0, 'at': 1.0, 'sippy': 1.0, 'i': 2.0, 'a': 1.0, 'son': 1.0, 'year': 1.0, 't': 1.0, 'nicely': 1.0, '2': 1.0, 'the': 2.0, 'ago': 1.0, 'my': 1.0, 'cup': 2.0, 'this': 2.0, 'it': 2.0, 'he': 1.0}
Word element => {'sippy': 1.0, 'normal': 1.0, '34': 2.0, 'take': 1.0, 'getting': 1.0, 'trouble': 1.0, 'flow': 1.0, 'fast': 1.0, 'rarely': 1.0, 'how': 1.0, 'away': 1.0, 're': 1.0, '20': 1.0, 'back': 1.0, 'suck': 1.0, 'know': 1.0, 'like': 1.0, 'refused': 1.0, 'having': 1.0, 'does': 1.0, 'mouth': 1.0, 'in': 1.0, 'your': 1.0, 'put': 1.0, 'on': 2.0, 'washed': 1.0, 'after': 1.0, 'her': 2.0, 'quickly': 1.0, 'very': 1.0, 'took': 3.0, 'developmental': 1.0, 'waited': 1.0, 'due': 1.0, 'you': 1.0, 'bottle': 2.0, 'bit': 1.0, 's': 1.0, 'a': 4.0, 'to': 8.0, 'just': 2.0, 'she': 6.0, 'it': 14.0, 'much': 1.0, 'only': 1.0, 'this': 3.0, 'with': 2.0, 'there': 1.0, 'leak': 1.0, 'right': 2.0, 'worse': 1.0, 'takes': 1.0, 'introduced': 2.0, 'con': 1.0, 'love': 1.0, 'fit': 1.0, 'would': 1.0, 've': 1.0, 'delays': 1.0, 'is': 2.0, 'recommend': 1.0, 'minutes': 1.0, 'leaking': 1.0, 'if': 2.0, 'keep': 1.0, 'noticed': 1.0, 'loose': 1.0, 'held': 1.0, 'tends': 1.0, 'cup': 3.0, 'or': 1.0, '1': 1.0, 'until': 1.0, 'and': 6.0, 'too': 2.0, 'collapses': 1.0, 'daughter': 1.0, 'my': 1.0, 'lid': 1.0, 'tight': 2.0, 'twist': 1.0, 'easier': 1.0, 'grips': 1.0, 'spout': 2.0, 'will': 1.0, 'anyone': 1.0, 'be': 1.0, 'the': 4.0, 'deal': 1.0, 'flows': 1.0, 'i': 8.0, '4': 1.0, 'child': 1.0, 'nearly': 1.0, 'still': 1.0}
Word element => {'off': 1.0, 'be': 1.0, 'won': 1.0, 'feel': 1.0, 'store': 1.0, 'successful': 1.0, 'after': 1.0, 'rid': 1.0, 'stage': 1.0, 'far': 1.0, 'yet': 1.0, 'he': 2.0, 'son': 1.0, 'but': 2.0, 'money': 1.0, 'can': 1.0, 'to': 5.0, 'all': 4.0, 'not': 2.0, 'cups': 1.0, 'cup': 2.0, 'confident': 1.0, 'a': 8.0, 'brown': 1.0, 'in': 2.0, 'reassemble': 1.0, 'had': 1.0, 'parts': 1.0, 'that': 2.0, 'holds': 1.0, 'completely': 2.0, 'say': 1.0, 'become': 1.0, 'my': 1.0, 'annoying': 1.0, 'cupboard': 1.0, 'for': 1.0, 'dr': 1.0, 'full': 1.0, 'only': 2.0, 'works': 1.0, 'start': 1.0, 'wash': 1.0, 'sippy': 2.0, 'up': 1.0, 'happy': 1.0, 'one': 1.0, 'too': 2.0, 'milk': 1.0, 'trip': 1.0, 'and': 2.0, 'when': 1.0, 'excessively': 1.0, 'the': 8.0, 'of': 3.0, 'on': 2.0, 'amount': 1.0, 'is': 4.0, 'at': 1.0, 'spent': 1.0, 'around': 1.0, 'his': 4.0, 'grocery': 1.0, 'cringe': 1.0, 'have': 4.0, 'little': 1.0, 't': 2.0, 'likes': 1.0, 'them': 3.0, 'has': 1.0, 'with': 5.0, 'hand': 1.0, 'flips': 1.0, 'we': 2.0, 'take': 1.0, 'upside': 1.0, 'haven': 1.0, 'down': 1.0, 'll': 1.0, 'i': 8.0, 'feet': 1.0, 'smiling': 1.0, 'play': 1.0, 'shakes': 1.0, 'quite': 1.0, 'messy': 1.0, 'ordeal': 1.0, 'it': 7.0, 'him': 1.0, 'here': 1.0, 'problem': 1.0, 'leaking': 1.0, 's': 2.0, 'maybe': 1.0, 'drop': 1.0, 'there': 1.0, 'vs': 1.0, 'this': 3.0, 'bottle': 1.0, 'kid': 1.0, 'soaked': 1.0, 'onesie': 1.0, 'way': 1.0, 'top': 1.0, 'bottles': 3.0, 'screwed': 1.0, 'now': 1.0, 'adding': 1.0, 'disassemble': 1.0, 'will': 1.0, 'where': 2.0, 're': 1.0, 'point': 1.0, 'get': 1.0}
Word element => {'didn': 1.0, 'bottles': 1.0, 'these': 1.0, 'few': 1.0, 'quite': 1.0, 'thorugh': 1.0, 'went': 1.0, 'until': 1.0, 'great': 1.0, 'are': 1.0, 'they': 1.0, 'new': 1.0, 'buy': 1.0, '3': 1.0, 'then': 1.0, 'if': 1.0, 'disappear': 1.0, 'washing': 1.0, 'of': 2.0, 't': 1.0, 'a': 4.0, 'after': 2.0, 'but': 1.0, 'letters': 1.0, '2': 2.0, 'the': 8.0, 'use': 2.0, 'be': 1.0, 'measurements': 2.0, 'still': 2.0, 'months': 2.0, 'today': 1.0, 'about': 1.0, 'anymore': 1.0, 'was': 1.0, 'all': 1.0, 'to': 2.0, 'now': 1.0, 'she': 1.0, 'it': 2.0, 'this': 3.0, 'only': 3.0, 'with': 1.0, 'know': 1.0, 'numbers': 1.0, 'using': 1.0, 'love': 1.0, 'for': 1.0, 'i': 8.0, 'bottle': 6.0, 'since': 1.0, 'have': 1.0, 'will': 3.0, 'in': 2.0, 'daughter': 2.0, 'february': 1.0, 'you': 2.0, 'am': 1.0, 'my': 2.0, '2011': 1.0, 'and': 5.0, 'milk': 2.0, 'need': 3.0, 'knows': 1.0, 'morning': 1.0, 'give': 1.0, 'not': 1.0, 'her': 1.0, 'used': 1.0, 'from': 1.0, 'while': 2.0, 'part': 1.0, 'been': 1.0, 'that': 3.0, 'is': 2.0, 'nothing': 1.0, '9': 1.0, 'evening': 1.0, 'else': 1.0, 'satisfied': 1.0}
Word element => {'bottle': 1.0, 'being': 1.0, 'while': 1.0, 'though': 1.0, 'seems': 2.0, 'will': 1.0, 'doesn': 1.0, 'he': 1.0, 'it': 2.0, 'with': 1.0, 'my': 1.0, 'sippy': 2.0, 'at': 1.0, 'regular': 1.0, 'is': 2.0, 'i': 1.0, 'old': 1.0, 'love': 1.0, 'for': 2.0, '7': 1.0, 'a': 3.0, 't': 2.0, 'without': 1.0, 'the': 3.0, 'nipple': 1.0, 'like': 1.0, 'and': 2.0, 'me': 1.0, 'get': 1.0, 'shape': 1.0, 'still': 1.0, 'son': 1.0, 'take': 2.0, 'months': 1.0, 'won': 1.0, 'on': 1.0, 'leak': 1.0, 'of': 1.0, 'to': 4.0, 'all': 1.0, 'able': 1.0, 'cup': 2.0, 'or': 1.0, 'handles': 1.0, 'this': 3.0, 'soft': 1.0, 'tender': 1.0, 'gums': 1.0, 'be': 1.0, 'him': 1.0, 'used': 1.0}
Word element => {'us': 1.0, 'ones': 1.0, 'more': 1.0, 'it': 1.0, 'this': 2.0, 'upset': 1.0, 'i': 1.0, 'm': 1.0, 'chair': 1.0, 'grandson': 1.0, 'high': 1.0, 'cup': 1.0, 'from': 2.0, 'as': 1.0, 'was': 1.0, 'drinking': 1.0, 'expensive': 1.0, 'for': 2.0, 'bought': 1.0, 'one': 1.0, 'upon': 1.0, 'dropped': 2.0, 'training': 1.0, 'but': 1.0, 'broke': 1.0, 'didn': 1.0, 'that': 1.0, 'been': 1.0, 'the': 1.0, 'good': 1.0, 'last': 1.0, 'longer': 1.0, 'a': 1.0, 'going': 1.0, 's': 1.0, 't': 1.0, 'we': 1.0, 'couple': 1.0, 'dollar': 1.0, 'and': 1.0, 'my': 1.0, 'family': 1.0, 'are': 1.0, 'they': 1.0, 'still': 1.0, 'strong': 1.0, 'just': 1.0, 'having': 1.0, 'being': 1.0, 'same': 1.0, 'no': 1.0}
Word element => {'be': 1.0, 'great': 1.0, 'just': 1.0, 'at': 1.0, 'buying': 1.0, 'with': 1.0, 'involved': 1.0, 'was': 1.0, 'there': 1.0, 'cup': 1.0, 'instantly': 1.0, 'take': 1.0, 'is': 3.0, 'dauther': 1.0, 'have': 1.0, 'down': 1.0, '8': 1.0, 'drinks': 1.0, 'formula': 3.0, 'only': 1.0, 'this': 3.0, 'purchases': 1.0, 'and': 4.0, 'old': 1.0, 'i': 3.0, 'it': 2.0, 'month': 1.0, 'she': 3.0, 'one': 3.0, 'for': 1.0, 'no': 1.0, 'about': 1.0, 'all': 1.0, 'to': 1.0, 'cups': 1.0, 'desperation': 1.0, '11': 1.0, 'from': 1.0, 'water': 1.0, 'types': 1.0, 'another': 1.0, 'my': 2.0, 'of': 3.0, 'sippy': 5.0, 'juice': 1.0, 'kitchen': 1.0, 'the': 2.0, 'will': 2.0, 'work': 1.0, 'but': 1.0, 'drink': 1.0, 'different': 1.0, 'her': 4.0, 'out': 3.0, 'a': 1.0, 'we': 1.0, 'use': 1.0, 'dr': 1.0, 'in': 1.0, 'brown': 1.0, 'mix': 1.0, 'well': 1.0, 'that': 2.0, 'took': 1.0, 'working': 1.0, 'still': 1.0, 'would': 1.0, 'cabinet': 1.0, 'not': 1.0}
Word element => {'with': 1.0, 'designed': 1.0, 's': 1.0, 'do': 1.0, 'will': 1.0, 'other': 1.0, 'think': 1.0, 'others': 1.0, 'issues': 2.0, 'use': 1.0, 'wouldn': 1.0, 'that': 1.0, 'won': 1.0, '12': 1.0, 'had': 2.0, 'this': 1.0, 'bottle': 1.0, 'time': 1.0, 'trick': 2.0, 'nipple': 3.0, 'from': 1.0, 'difficult': 1.0, 'was': 2.0, 'cave': 2.0, 'spill': 1.0, 'mo': 1.0, 'week': 1.0, 'as': 2.0, 'so': 5.0, 'can': 1.0, 'but': 4.0, 'on': 1.0, 'save': 1.0, 'to': 9.0, 'trainer': 2.0, 'lid': 1.0, 'my': 2.0, 'website': 1.0, 'the': 16.0, 'soft': 1.0, 'without': 2.0, 'their': 1.0, 'a': 5.0, 't': 3.0, 'check': 1.0, 'top': 1.0, 'here': 1.0, 'old': 1.0, 'buy': 1.0, 'i': 6.0, 'possible': 1.0, 'though': 1.0, 'transition': 2.0, 'review': 1.0, 'one': 1.0, 'for': 2.0, 'even': 2.0, 'didn': 1.0, 'posting': 1.0, 'money': 1.0, 'bought': 1.0, 'called': 1.0, 'sippy': 4.0, 'started': 1.0, '8': 1.0, 'inside': 1.0, '99': 1.0, 'far': 1.0, 'he': 2.0, 'cups': 1.0, 'cup': 7.0, 'you': 1.0, 'switching': 1.0, 'get': 1.0, 'sure': 1.0, 'and': 7.0, 'milk': 2.0, 'bam': 1.0, 'exactly': 1.0, 'handles': 2.0, 'same': 1.0, 'like': 1.0, 'leaking': 1.0, 'which': 1.0, 'him': 2.0, 'it': 7.0, 'are': 1.0, 'first': 1.0, 'after': 4.0, 'couple': 1.0, 'out': 1.0, 'tries': 1.0, 'your': 1.0, 'keeps': 1.0, 'mishap': 1.0, 'worked': 1.0, 'great': 2.0, 'then': 1.0, 'luck': 1.0, 'or': 1.0, 'falling': 1.0, 'm': 1.0, 'in': 2.0, 'frequent': 1.0, 'introduced': 1.0, 'tight': 1.0, 'sucking': 1.0, 'making': 1.0, 'caused': 1.0, 'have': 1.0, 'until': 1.0, 'tried': 1.0, 'at': 1.0, 'is': 3.0, 'no': 3.0, 'born': 2.0, 'free': 2.0}
Word element => {'received': 1.0, 'disappointed': 1.0, 'just': 1.0, 'shocked': 1.0, 'this': 1.0, 'with': 1.0, 'took': 1.0, 'i': 2.0, 'never': 1.0, 'size': 1.0, 'balls': 1.0, 'lack': 1.0, 'see': 1.0, 'was': 1.0, 'right': 1.0, 'look': 1.0, 'actual': 1.0, 'to': 2.0, 'supervision': 1.0, 'but': 2.0, 'secure': 1.0, 'my': 1.0, 'the': 4.0, 'daughter': 1.0, 'when': 1.0, 'm': 1.0, 'materials': 1.0, 'so': 1.0, 'really': 3.0, 'of': 3.0, 'like': 1.0, 'certain': 1.0, 'has': 1.0, 'toy': 2.0, 'it': 5.0, 'she': 1.0, 'her': 1.0, 'amount': 1.0, 'and': 1.0, 'play': 2.0, 'does': 2.0, 'mouth': 1.0, 'in': 2.0, 'require': 1.0, 'construction': 1.0, 'very': 1.0, 'they': 1.0, 'seem': 1.0, 'a': 2.0, 'go': 1.0, 's': 1.0, 'nice': 1.0}
Word element => {'in': 1.0, 'toys': 1.0, 'haba': 1.0, 'definitely': 1.0, 'theme': 1.0, 'very': 1.0, 'even': 1.0, 'really': 1.0, 'toy': 1.0, 'own': 1.0, 'off': 1.0, 'not': 1.0, 'those': 1.0, 'velcros': 1.0, 'will': 1.0, 'also': 2.0, 'bells': 1.0, 'part': 1.0, 'magnets': 1.0, 'with': 2.0, 'bug': 2.0, 'each': 2.0, 'son': 1.0, 'it': 6.0, 'about': 1.0, 'was': 1.0, 'our': 1.0, 'center': 1.0, 'to': 2.0, 'this': 1.0, 'soft': 1.0, 'purchase': 1.0, 'my': 1.0, 'and': 6.0, 'detaches': 1.0, 'couple': 1.0, 'bought': 1.0, 'more': 1.0, 'is': 2.0, 'his': 1.0, 'mirrors': 1.0, 'he': 4.0, '6': 1.0, 'of': 1.0, 'old': 1.0, 'above': 1.0, 'now': 1.0, 'hung': 1.0, 'weeks': 3.0, 'girly': 1.0, 'smiles': 1.0, 'but': 1.0, 'i': 4.0, '4': 1.0, 'when': 2.0, 'future': 1.0, 'at': 1.0, 'for': 1.0, 's': 6.0, 'we': 1.0, 'a': 1.0, 'staring': 1.0, 'follows': 1.0, 'the': 3.0, 'spin': 1.0, 'be': 1.0, 'talking': 1.0, 'goes': 1.0, 'made': 1.0, 'them': 2.0, 'started': 1.0, 'which': 1.0, 'table': 1.0, 'like': 2.0, 'been': 1.0, 'changing': 1.0, 'butterflies': 2.0, 'that': 2.0, 'fabric': 1.0, 'so': 1.0}
Word element => {'through': 1.0, 'all': 1.0, 'giggles': 1.0, 'smiles': 1.0, 'chats': 1.0, 'she': 1.0, 'we': 1.0, 'above': 1.0, 'our': 2.0, 'and': 3.0, 'table': 1.0, 'daughter': 1.0, 'have': 1.0, 'this': 1.0, 'loves': 1.0, 'changing': 2.0, 'it': 1.0}
Word element => {'each': 1.0, 'or': 1.0, 'link': 1.0, 'big': 1.0, 'ears': 1.0, 'configurations': 1.0, 'in': 2.0, 'light': 1.0, 'it': 1.0, 'with': 1.0, 'older': 1.0, 'sometimes': 1.0, 'monkey': 2.0, 'high': 1.0, 'is': 1.0, 'farm': 1.0, 'course': 1.0, 'put': 1.0, 'on': 1.0, 'chew': 1.0, 'attaching': 1.0, 'to': 4.0, 'two': 1.0, 'i': 1.0, 'found': 1.0, 'these': 1.0, 'without': 1.0, 'the': 6.0, 'my': 1.0, 'lightweight': 1.0, 'and': 4.0, 'interesting': 1.0, 'cheaply': 1.0, 'links': 3.0, 'an': 1.0, 'toddler': 1.0, 'since': 1.0, 'at': 1.0, 'fleet': 1.0, 'likes': 1.0, 'enough': 2.0, 'for': 1.0, 'young': 1.0, 'even': 1.0, 'lift': 1.0, 'textures': 1.0, 'very': 2.0, 'hold': 1.0, 'are': 2.0, 'quality': 1.0, 'baby': 3.0, 'visually': 1.0, 'of': 1.0, 'different': 2.0, 'also': 2.0, 'a': 2.0, 'might': 1.0, 'enjoy': 1.0}
Word element => {'it': 1.0, 'love': 1.0, 'just': 1.0, 'son': 1.0, 'my': 1.0}
Word element => {'idea': 1.0, 'a': 1.0, 'been': 1.0, 'would': 1.0, 'children': 1.0, 'out': 1.0, 'eventually': 1.0, 'are': 2.0, 'they': 3.0, 'two': 1.0, 'i': 6.0, 'money': 1.0, 'bought': 1.0, 'decided': 1.0, 'for': 1.0, 'expensive': 1.0, 'more': 1.0, 'letters': 1.0, 'and': 6.0, 'tough': 1.0, 'cheaper': 1.0, 'pleased': 1.0, 'up': 3.0, 'store': 1.0, 'was': 1.0, 'doesn': 1.0, 'kids': 1.0, 'this': 2.0, 'found': 1.0, 'by': 1.0, 'just': 1.0, 'going': 1.0, 't': 2.0, 'could': 1.0, 'we': 1.0, 'twins': 1.0, 'threw': 1.0, 'am': 1.0, 'can': 1.0, 'so': 2.0, 'time': 1.0, 'with': 2.0, 'is': 3.0, 'look': 1.0, 'to': 2.0, 'old': 1.0, 'brand': 1.0, 'buy': 1.0, 'great': 2.0, 'spend': 1.0, 'all': 1.0, 'playing': 1.0, 'anything': 1.0, 'without': 1.0, 'mat': 2.0, 'find': 1.0, 'tear': 1.0, 'than': 1.0, 'year': 1.0, 'best': 1.0, 'from': 1.0, 'mats': 1.0, 'them': 3.0, 'softer': 1.0, 'far': 1.0, 'yet': 1.0, 'but': 1.0, 'corners': 1.0, 'hardwood': 1.0, 'm': 1.0, 'in': 2.0, 'borders': 1.0, 'their': 2.0, 'bedroom': 1.0, 'come': 1.0, 'now': 1.0, 'away': 1.0, 'the': 9.0, 'of': 2.0, 'on': 1.0, 'these': 1.0, 'only': 1.0, 'problem': 1.0, 'see': 1.0, 'tried': 2.0, 'that': 3.0, 'gave': 1.0, 'not': 1.0, 'those': 1.0, 'floor': 1.0, 'do': 1.0, 'match': 1.0, 'good': 1.0, 'terrible': 1.0, 'tile': 1.0, 'thing': 1.0, 'if': 1.0, 'still': 1.0, 'my': 2.0, 'looks': 1.0, 'sets': 1.0, 'it': 1.0, 'have': 2.0, 'glad': 1.0, 'numbers': 1.0}
Word element => {'carpets': 1.0, 'have': 1.0, 'they': 1.0, 'if': 1.0, 'friends': 1.0, 'holding': 1.0, 'it': 1.0, 'this': 1.0, 'only': 1.0, 'tends': 1.0, 'strips': 1.0, 'know': 2.0, 'i': 1.0, 'areas': 1.0, 'easy': 1.0, 'use': 1.0, 'and': 3.0, 'play': 1.0, 'other': 1.0, 'on': 2.0, 'in': 1.0, 'also': 1.0, 'bring': 1.0, 'houses': 1.0, 'hardwood': 1.0, 'the': 4.0, 's': 1.0, 'we': 2.0, 't': 2.0, 'my': 2.0, 'clean': 1.0, 'them': 1.0, 'baby': 2.0, 'up': 2.0, 'over': 1.0, 'don': 2.0, 'well': 1.0, 'likes': 1.0, 'is': 2.0, 'that': 3.0, 'thing': 1.0, 'lift': 1.0, 'to': 4.0, 'outside': 1.0, 'how': 1.0, 'pretty': 1.0, 'safe': 1.0, 'grandparents': 1.0, 'where': 1.0, 'for': 1.0, 'mats': 1.0, 'him': 1.0, 'chew': 1.0, 'than': 1.0}
Word element => {'recommend': 1.0, 'highly': 1.0, 'be': 1.0, 'need': 1.0, 'if': 1.0, 'water': 1.0, 'down': 1.0, 'wipe': 1.0, 'with': 2.0, 'clean': 1.0, 'size': 1.0, 'swallow': 1.0, 'can': 1.0, 'old': 1.0, 'great': 1.0, 'the': 3.0, 'more': 1.0, 'dry': 1.0, 'figured': 1.0, 'son': 1.0, 'are': 1.0, 'my': 2.0, 'love': 1.0, 'where': 1.0, 'easy': 1.0, 'area': 2.0, 'plays': 1.0, 'a': 1.0, 't': 1.0, 'we': 1.0, 'have': 1.0, 'flooring': 1.0, 'tile': 1.0, 'and': 4.0, 'colors': 1.0, 'don': 1.0, 'one': 1.0, 'bought': 1.0, 'i': 1.0, 'two': 1.0, 'sets': 1.0, 'take': 1.0, 'as': 1.0, 'to': 4.0, 'an': 1.0, 'they': 2.0, 'has': 2.0, '9': 1.0, 'out': 1.0, 'edge': 1.0, 'cover': 2.0, 'off': 2.0, 'pieces': 1.0, 'watch': 1.0, 'bite': 2.0, 'so': 2.0, 'how': 1.0, 'he': 1.0, 'swiffer': 1.0, 'month': 1.0, 'it': 1.0, 'on': 1.0, 'that': 1.0}
Word element => {'need': 1.0, 'year': 1.0, '53': 1.0, 'my': 1.0, 'cushioning': 1.0, 'all': 1.0, 'provide': 1.0, 'to': 1.0, 'purchased': 1.0, 'an': 1.0, 'aren': 1.0, 'just': 1.0, 'and': 1.0, 'exercise': 1.0, 'get': 1.0, 'you': 1.0, 'knees': 2.0, 'made': 1.0, 'older': 1.0, 'they': 1.0, 'your': 1.0, 'when': 1.0, 'old': 1.0, 'i': 1.0, 'around': 1.0, 'crawl': 1.0, 'on': 1.0, 'floor': 1.0, 't': 1.0, 'the': 2.0, 'these': 1.0, 'for': 1.0, 'mat': 1.0}
Word element => {'though': 1.0, 'live': 1.0, 'off': 1.0, 'bite': 1.0, 'probably': 1.0, 'easily': 1.0, 'an': 1.0, 'i': 2.0, 'old': 1.0, 'do': 2.0, 'plastic': 1.0, 'but': 1.0, 'can': 1.0, 'if': 1.0, 'these': 2.0, 'great': 1.0, '3t': 1.0, 'comes': 1.0, 'more': 1.0, 'the': 1.0, 'says': 1.0, 'odor': 1.0, 'are': 1.0, 'them': 1.0, 'chunk': 1.0, 'doesn': 1.0, 'mats': 1.0, 'up': 1.0, 'don': 1.0, 'have': 2.0, '8': 1.0, 'lot': 1.0, 'playroom': 1.0, 'like': 1.0, 'in': 1.0, 'my': 1.0, 'she': 3.0, 'it': 2.0, 'month': 1.0, 'daughters': 1.0, 'and': 3.0, 'play': 1.0, 'could': 1.0, 't': 2.0, 'a': 2.0, 'we': 1.0, 'so': 1.0, 'crawl': 1.0, 'comfortably': 1.0, 'put': 1.0, 'on': 1.0, 'make': 1.0, 'sure': 1.0, 'chew': 1.0, 'edging': 1.0, 'to': 1.0, 'as': 1.0}
Word element => {'outside': 1.0, 'months': 1.0, 'out': 1.0, 'left': 1.0, 'after': 1.0, 'gone': 1.0, '2012': 1.0, '17': 1.0, '9': 1.0, 'be': 1.0, 'bad': 1.0, 'probably': 1.0, 'use': 1.0, 'will': 2.0, 'if': 1.0, 'not': 2.0, 'did': 1.0, 'fade': 1.0, 's': 1.0, 'go': 1.0, 'would': 1.0, 'in': 1.0, 'hoping': 1.0, 'foot': 1.0, 'twice': 1.0, '24': 1.0, 'wide': 1.0, '14': 1.0, 'he': 1.0, 'door': 1.0, 'how': 1.0, 'i': 3.0, 'old': 1.0, 'ordered': 1.0, 'still': 1.0, 'the': 7.0, '2': 1.0, 'but': 2.0, 'inside': 1.0, 'sets': 1.0, 'has': 1.0, 'of': 1.0, 'for': 3.0, 'open': 1.0, 'sq': 1.0, 'now': 1.0, 'away': 1.0, 'weeks': 1.0, 'ft': 1.0, 'my': 4.0, 'finally': 1.0, 'an': 1.0, 'smell': 4.0, 'mats': 1.0, 'was': 1.0, 'and': 2.0, 'too': 1.0, 'opening': 1.0, '5': 1.0, 'noise': 1.0, 'room': 1.0, 'much': 1.0, 'loves': 1.0, 'that': 2.0, 'is': 2.0, 'more': 1.0, 'backyard': 1.0, 'month': 1.0, 'it': 6.0, 'you': 1.0, 'hurt': 1.0, 'on': 1.0, 'put': 1.0, 'washed': 1.0, 'strong': 1.0, '3': 1.0, 'baby': 2.0, 'them': 1.0, 'space': 1.0, 'playroom': 3.0, 'at': 1.0}
Word element => {'noggin': 1.0, 's': 1.0, 'perfect': 1.0, 'end': 1.0, 'falls': 1.0, 'didn': 1.0, 'little': 1.0, 'but': 1.0, 'an': 1.0, 'so': 1.0, 'made': 1.0, 'we': 2.0, 'when': 1.0, 'kids': 1.0, 'edges': 1.0, 'shape': 1.0, 'he': 1.0, 'it': 2.0, 'the': 2.0, 't': 1.0, 'saved': 1.0, 'up': 1.0, 'for': 1.0, 'using': 1.0, 'odd': 1.0, 'has': 1.0, 'definitely': 1.0, 'guy': 1.0}
Word element => {'room': 1.0, 'that': 1.0, 'playing': 1.0, 'cute': 1.0, 'held': 1.0, 'my': 1.0, 'pulling': 1.0, 'happy': 1.0, 'are': 2.0, 'great': 1.0, 'far': 1.0, 'we': 3.0, 'have': 2.0, 'they': 2.0, 'hardwood': 1.0, 'had': 1.0, 'now': 1.0, 'our': 2.0, 'to': 2.0, 'for': 1.0, 'mats': 1.0, 'is': 1.0, 'serious': 1.0, 'son': 1.0, 'very': 2.0, 'large': 1.0, 'play': 1.0, 'and': 3.0, 'so': 2.0, 'not': 1.0, 'constantly': 1.0, 'them': 1.0, 'apart': 1.0, 'in': 1.0, 'up': 1.0, 'of': 1.0, 'well': 1.0, 'these': 1.0, 'some': 1.0, 'months': 1.0, 'bought': 1.0, 'floor': 1.0, 'sets': 1.0, 'connected': 1.0, '2': 2.0, 'most': 1.0, 'together': 1.0, 'enough': 1.0, 'cover': 1.0}
Word element => {'yoga': 1.0, 'do': 1.0, 'out': 1.0, 'cushion': 1.0, 'extra': 1.0, 'work': 1.0, 'and': 1.0, 'like': 1.0, 'the': 2.0, 'fun': 1.0, 'colors': 1.0, 'cushioning': 1.0, 'mats': 1.0, 'provide': 1.0, 'i': 3.0, 'when': 2.0, 'good': 1.0, 'for': 2.0}
Word element => {'of': 1.0, 'some': 1.0, 'movement': 1.0, 'fitness': 1.0, 'workout': 1.0, 'any': 1.0, 'weights': 1.0, 'lifting': 1.0, 'or': 1.0, 'good': 1.0, 'for': 2.0, '172': 1.0, 'type': 2.0, 'is': 2.0, 'weight': 1.0, 'static': 1.0, 'my': 1.0, 'anything': 1.0, 'need': 1.0, 'since': 1.0, 'pieces': 1.0, 'softer': 1.0, 'i': 1.0, 'pounds': 1.0, 'on': 1.0, '4': 1.0, 'with': 1.0, 'it': 1.0, 'then': 1.0, 'anymore': 1.0, 'insanity': 1.0, 'concrete': 1.0, 'exercise': 1.0, 'probably': 1.0, 'exercises': 1.0, 'do': 1.0, 'staying': 1.0, 'to': 1.0, 'bought': 1.0, 'after': 1.0, 'not': 2.0, 'together': 1.0, 'but': 1.0, 'week': 1.0, 'are': 1.0}
Word element => {'excellent': 1.0, 'this': 1.0, 'with': 1.0, 'pleased': 1.0, 'are': 1.0, 'at': 1.0, 'very': 1.0, 'day': 1.0, 'to': 2.0, 'wanted': 1.0, 'each': 1.0, 'something': 1.0, 'for': 1.0, 'safety': 1.0, 'where': 1.0, 'fill': 1.0, 'my': 2.0, 'these': 1.0, 'the': 2.0, 'employee': 1.0, 'i': 2.0, 'cushion': 1.0, 'product': 1.0, 'bought': 1.0, 'floor': 1.0, 'store': 1.0, 'stands': 1.0, 'send': 1.0, 'orders': 1.0, 'we': 2.0, 'child': 1.0, 'out': 1.0}
Word element => {'basement': 1.0, 'concrete': 1.0, 'over': 1.0, 'and': 4.0, 'were': 1.0, 'our': 2.0, 'these': 1.0, 'they': 1.0, 'carpeted': 1.0, 'in': 1.0, 'years': 1.0, 'love': 2.0, 'comfortable': 1.0, 'for': 1.0, 'durable': 1.0, 'playroom': 1.0, 'have': 2.0, 'i': 3.0, 'them': 3.0, 'so': 1.0, 'easy': 1.0, 'had': 1.0, 'to': 1.0, 'install': 1.0, 'been': 1.0, 'super': 1.0, 'put': 1.0}
Word element => {'of': 1.0, 'big': 1.0, 'i': 1.0, 'area': 1.0, 'the': 2.0, 'my': 1.0, 'and': 1.0, 'product': 1.0, 'child': 1.0, 'love': 1.0, 'great': 2.0, 'it': 2.0, 'size': 1.0, 'looks': 1.0, 'pieces': 1.0, 'on': 1.0, 'his': 1.0, 'loves': 1.0, 'play': 1.0}
Word element => {'clean': 1.0, 'interlocking': 1.0, 'the': 2.0, 'these': 1.0, 'up': 1.0, 'of': 2.0, 'sets': 1.0, 'some': 1.0, 'two': 1.0, 'fact': 1.0, 'they': 1.0, 'makes': 1.0, 'floor': 1.0, 'bought': 1.0, 'larger': 1.0, 'for': 1.0, 'mats': 2.0, 'liked': 1.0, 'i': 2.0, 'easier': 1.0, 'that': 1.0, 'were': 1.0, 'it': 2.0, 'in': 1.0, 'size': 1.0, 'than': 1.0, 'other': 1.0}
Word element => {'especially': 1.0, 'grandparents': 1.0, 'recommend': 1.0, 'definitely': 1.0, 'would': 1.0, 'spilled': 1.0, 'is': 1.0, 'if': 1.0, 'easily': 1.0, 'them': 1.0, 'clean': 1.0, 'games': 1.0, 'or': 2.0, 'toys': 1.0, 'play': 1.0, 'on': 2.0, 'not': 1.0, 'something': 1.0, 'grandchildren': 1.0, 'i': 2.0, 'super': 1.0, 'at': 1.0, 'fun': 1.0, 'my': 1.0, 'are': 3.0, 'anyone': 1.0, 'also': 1.0, 'in': 1.0, 'parents': 1.0, 'comfortable': 1.0, 'for': 1.0, 'mats': 2.0, 'the': 1.0, 'these': 2.0, 'used': 1.0, 'they': 4.0, 's': 1.0, 'children': 1.0, 'only': 1.0, 'look': 1.0, 'colorful': 2.0, 'to': 4.0, 'playroom': 1.0, 'sit': 1.0}
Word element => {'more': 1.0, 'buying': 1.0, 'money': 1.0, 'spills': 1.0, 'have': 2.0, 'worth': 1.0, 'almost': 1.0, 'edges': 1.0, 'as': 1.0, 'any': 1.0, 'to': 1.0, 'cushion': 1.0, 'waving': 1.0, 'up': 1.0, 'child': 1.0, 'don': 1.0, 'easy': 1.0, 'wipeable': 1.0, 'are': 2.0, 's': 1.0, 'go': 2.0, 'a': 1.0, 'extra': 1.0, 'baby': 1.0, 'pool': 1.0, 'stuff': 1.0, 'on': 2.0, 'is': 1.0, 'around': 1.0, 'with': 3.0, 'cushioning': 1.0, 'people': 1.0, 'mind': 1.0, 'down': 1.0, 'even': 1.0, 'for': 2.0, 'always': 1.0, 'them': 6.0, 'mats': 1.0, 'put': 2.0, 'floor': 1.0, 'sneezes': 1.0, 'clean': 1.0, 'good': 1.0, 'or': 1.0, 'other': 2.0, 'playing': 1.0, 'these': 1.0, 'happen': 1.0, 'they': 2.0, 'take': 2.0, 'we': 1.0, 'reviews': 1.0, 'hardwood': 1.0, 'concrete': 1.0, 'perfect': 1.0, 'this': 2.0, 'in': 1.0, 'outter': 1.0, 'yard': 1.0, 'my': 4.0, 'me': 1.0, 'and': 5.0, 'become': 1.0, 'part': 1.0, 'from': 1.0, 'her': 1.0, 'use': 1.0, 'bothers': 1.0, 'connect': 1.0, 'i': 5.0, 'well': 2.0, 't': 1.0, 'likes': 1.0, 'each': 1.0, 'read': 1.0, 'everywhere': 1.0, 'concerned': 1.0, 'that': 1.0, 'under': 1.0, 'loose': 1.0, 'away': 1.0, 'mat': 2.0, 'will': 2.0, 'the': 6.0, 'of': 1.0, 'be': 2.0, 'nature': 1.0, 'daughter': 1.0, 'can': 1.0, 'so': 1.0, 'still': 1.0, 'if': 1.0, 'it': 1.0, 'you': 2.0, 'torn': 1.0, 'perimeter': 1.0, 'edge': 1.0, 'off': 1.0, 'where': 1.0, 're': 1.0}
Word element => {'lot': 1.0, '6x8': 1.0, 'spits': 1.0, 'on': 2.0, 'gets': 1.0, 'son': 1.0, 'carpet': 2.0, 'seem': 1.0, 'enough': 1.0, 'but': 1.0, 'blankets': 2.0, 'so': 2.0, 'can': 1.0, 'down': 1.0, 'grandmas': 1.0, 'somehow': 1.0, 'we': 2.0, 'a': 5.0, 'is': 1.0, 'more': 1.0, 'be': 1.0, 'off': 1.0, 'tried': 1.0, 'old': 1.0, 'rolls': 1.0, 'have': 2.0, 'to': 3.0, 'our': 1.0, 'end': 1.0, 'my': 1.0, 'month': 1.0, 'often': 1.0, 'whenever': 1.0, 'was': 1.0, 'breaks': 1.0, '7': 1.0, 'up': 2.0, 'allergic': 1.0, 'great': 1.0, 'padded': 1.0, 'shapes': 1.0, 'tightly': 1.0, 'these': 3.0, 'letters': 1.0, 'and': 4.0, 'play': 3.0, 'similar': 1.0, 'washing': 1.0, 'he': 3.0, 'huge': 1.0, 'baby': 1.0, 'out': 1.0, 'also': 2.0, 'will': 1.0, 'in': 1.0, 'mats': 3.0, 'them': 1.0, 'always': 1.0, 'rash': 1.0, 'his': 1.0, 'putting': 1.0, 'i': 4.0, 'two': 1.0, 'ordered': 1.0, 'him': 1.0, 'it': 1.0, 'sets': 1.0, 'link': 1.0, 'the': 3.0, 'of': 2.0, 'now': 1.0, 'touches': 1.0, 'easy': 1.0, 'area': 1.0, 'again': 1.0, 'clean': 1.0, 'for': 3.0, 'sturdy': 1.0, 'they': 3.0, 'like': 2.0, 'which': 1.0, 'choking': 1.0, 'dont': 1.0, 'other': 1.0, 'because': 1.0, 'that': 1.0, 'hazard': 1.0, 'together': 1.0, 'cutout': 1.0, 'were': 1.0, 'house': 1.0, 'half': 1.0, 'products': 1.0, 'price': 1.0, 'are': 1.0, 'plus': 1.0, 'probably': 1.0, 'buy': 1.0}
Word element => {'d': 1.0, 'themselves': 1.0, 'shipping': 1.0, 'although': 1.0, 'edge': 1.0, 'smooth': 1.0, 'have': 1.0, 'of': 1.0, 'out': 1.0, 'much': 1.0, 'only': 1.0, 'use': 1.0, 'they': 2.0, 'an': 1.0, 'it': 2.0, 'month': 1.0, 'excellent': 1.0, '6': 2.0, '4': 1.0, 'i': 2.0, 'old': 1.0, 'bought': 1.0, 'outside': 1.0, 'as': 3.0, 'to': 1.0, 'the': 4.0, 'intelligent': 1.0, 'cracks': 1.0, 'was': 2.0, 'mats': 3.0, 'for': 1.0, 'a': 2.0, 'safe': 1.0, 'this': 1.0, 'with': 2.0, 'come': 1.0, 'and': 1.0, 'play': 1.0, 'other': 1.0, 'daughter': 1.0, 'border': 1.0, 'interlock': 1.0, 'each': 1.0, 'almost': 2.0, 'worth': 1.0, 'or': 1.0, 'that': 3.0, 'into': 1.0, 'good': 1.0, 'especially': 1.0, 'perfectly': 1.0, 'area': 1.0, 'get': 1.0, 'make': 1.0, 'crevice': 1.0, 'stuff': 1.0, 'say': 1.0, 'is': 1.0, 'can': 2.0, 'fact': 1.0, 'my': 1.0, 'another': 1.0, 'no': 1.0, 'thing': 1.0, 'so': 1.0, 'you': 1.0}
Word element => {'negative': 1.0, 'anything': 1.0, 'elsewhere': 1.0, 'weren': 1.0, 'space': 1.0, 'covers': 1.0, 'big': 1.0, 'comparable': 1.0, 'since': 1.0, 'cost': 1.0, 'complaint': 1.0, 'ok': 1.0, 'bother': 1.0, 'relative': 1.0, 'visiting': 1.0, 'maybe': 1.0, 'squared': 1.0, 'floor': 1.0, 'abc': 1.0, 'ft': 1.0, 'sq': 1.0, 'us': 1.0, 'coming': 1.0, 'time': 1.0, 'he': 1.0, 'meaning': 1.0, 'yet': 1.0, 'crawling': 1.0, 't': 4.0, 'wasn': 1.0, 'would': 2.0, 'weeks': 1.0, 'completely': 1.0, 'area': 2.0, 'traffic': 1.0, 'high': 2.0, 'unless': 1.0, 'schemes': 1.0, 'cute': 1.0, 'look': 1.0, 'otherwise': 1.0, 'months': 1.0, 'pitched': 1.0, 'thetadpoles': 2.0, 'suggest': 1.0, 'tadpoles': 1.0, 'has': 1.0, 'because': 1.0, 'is': 4.0, 'out': 3.0, '1': 1.0, 'thicker': 3.0, 'this': 5.0, 'slightly': 2.0, 'one': 2.0, 'got': 1.0, 'foam': 2.0, 'priciest': 1.0, 'buy': 1.0, 'great': 2.0, 'if': 5.0, 'don': 1.0, 'still': 1.0, 'get': 2.0, 'shipping': 2.0, 'free': 2.0, '16': 3.0, 'much': 2.0, 'recyclamat': 1.0, 'directly': 1.0, 'overall': 1.0, 'they': 9.0, 'threw': 1.0, 'there': 1.0, 'available': 1.0, '8': 2.0, 'kmart': 1.0, 'ours': 2.0, 'years': 1.0, 'no': 1.0, 'have': 5.0, 'brand': 3.0, 'yellow': 1.0, 'buying': 1.0, 'so': 3.0, 'these': 13.0, 'using': 1.0, 'playmat': 1.0, 'with': 5.0, 'mats': 11.0, 'them': 8.0, 'next': 1.0, 'budget': 1.0, 'from': 5.0, 'complete': 1.0, 'purpose': 1.0, 'almost': 1.0, 'being': 2.0, 'edu': 2.0, 'problem': 1.0, 'now': 1.0, 'do': 1.0, 'walking': 2.0, 'owned': 5.0, 'you': 6.0, 'when': 4.0, 'piecethe': 1.0, 'i': 10.0, 'well': 3.0, '6pks': 1.0, 'under': 2.0, 'green': 2.0, 'alphabet': 2.0, 'at': 2.0, 'safe': 1.0, 'letters': 2.0, 'd': 1.0, 'about': 2.0, 'play': 3.0, 'good': 2.0, 'described': 2.0, 'stay': 2.0, 'which': 3.0, 'differences': 1.0, 'thick': 1.0, 'lower': 2.0, 'even': 1.0, 'of': 8.0, 'brands': 1.0, 'than': 5.0, 'huge': 1.0, 'two': 3.0, 'ago': 1.0, 'a': 13.0, 'following': 1.0, 'tried': 1.0, 'and': 4.0, 'just': 7.0, 'while': 1.0, 've': 6.0, 'brown': 1.0, 'last': 1.0, 'down': 1.0, '4pks': 1.0, 'difference': 2.0, 'cheaper': 2.0, 'sit': 1.0, 'as': 2.0, 'to': 12.0, 'had': 2.0, 'wouldn': 1.0, 'more': 3.0, 'say': 2.0, 'the': 23.0, 'experience': 1.0, 'entirely': 1.0, 'involves': 1.0, 'think': 2.0, 'another': 1.0, 'are': 13.0, 'my': 3.0, 'norks': 1.0, 'other': 2.0, 's': 4.0, 'ever': 1.0, 'pieces': 2.0, 'for': 6.0, 'that': 6.0, 'few': 1.0, 'fall': 1.0, 'variety': 2.0, 'going': 1.0, 'apart': 2.0, '2': 6.0, 'four': 1.0, 'taken': 1.0, 'allows': 1.0, 'color': 5.0, 'past': 1.0, 'but': 12.0, 'multi': 2.0, 'share': 1.0, 'corners': 1.0, 'we': 12.0, 'called': 1.0, 'comes': 2.0, 'bought': 1.0, 'set': 7.0, 'money': 2.0, 'really': 3.0, 'edushape': 3.0, 'identical': 1.0, '3': 1.0, 'laid': 1.0, 'around': 1.0, 'each': 1.0, 'prefer': 1.0, 'check': 1.0, 'mat': 6.0, 'only': 3.0, 'include': 1.0, 'flooring': 1.0, 'worth': 2.0, '4': 2.0, 'colors': 2.0, '7': 1.0, 'red': 1.0, 'blue': 2.0, 'amazon': 1.0, 'admit': 1.0, 'different': 2.0, 'edges': 1.0, 'not': 5.0, 'enough': 1.0, 'longer': 1.0, 'removable': 1.0, 'justify': 1.0, 'by': 2.0, 'after': 2.0, 'price': 3.0, 'here': 1.0, 'on': 3.0, 'go': 1.0, 'their': 2.0, 'within': 1.0, '6x6ft': 1.0, '25': 1.0, 'll': 1.0, 'real': 1.0, 'waste': 1.0, 'see': 1.0, 'be': 1.0, 'sold': 2.0, 'it': 6.0, 'own': 3.0, 're': 5.0, 'come': 1.0, 'alternative': 1.0, 'point': 1.0, 'barely': 1.0, 'stor': 1.0, '240147': 1.0, 'definitely': 1.0, 'solid': 2.0, 'ones': 3.0, 'also': 2.0, 'or': 4.0, 'types': 1.0, 'technically': 1.0, 'three': 1.0, 'best': 1.0, 'tiles': 2.0, 'grandchild': 1.0, 'useless': 1.0, 'piece': 4.0, 'website': 1.0, 'were': 3.0, 'in': 4.0, 'together': 2.0, 'over': 1.0, '18': 1.0, 'getting': 1.0, 'decided': 1.0, 'will': 1.0, '36': 2.0, 'numbers': 1.0, 'son': 2.0, 'norsk': 6.0, 'both': 3.0, 'your': 1.0, 'brownand': 1.0, 'any': 2.0, 'already': 1.0, 'significantly': 1.0, 'makes': 1.0, 'avoiding': 1.0, 'total': 1.0, 'thinner': 1.0, 'reason': 1.0}
Word element => {'the': 1.0, 'can': 1.0, 'arrived': 1.0, 'prices': 1.0, 'i': 2.0, 'use': 2.0, 'for': 2.0, 'box': 1.0, 'blocking': 1.0, 'and': 2.0, 'home': 1.0, 'storage': 1.0, 'these': 1.0, 'choice': 1.0, 'knitted': 1.0, 'quickly': 1.0, 'projects': 1.0, 'sipping': 1.0, 'good': 2.0}
Word element => {'about': 1.0, 'mom': 1.0, 'im': 1.0, 'wish': 1.0, 'couch': 1.0, 'half': 1.0, 'break': 1.0, 'usually': 1.0, 'while': 1.0, 'it': 2.0, 'away': 1.0, 'be': 1.0, 'nap': 1.0, 'going': 1.0, 'however': 1.0, 'easy': 1.0, 'set': 1.0, 'sitting': 1.0, 'blankets': 2.0, 'stick': 1.0, 'down': 3.0, 'alone': 1.0, 'head': 2.0, 'was': 3.0, 'thats': 1.0, 'layed': 1.0, 'i': 5.0, 'first': 1.0, 'plus': 1.0, 'working': 1.0, 'our': 2.0, 'all': 2.0, 'to': 5.0, 'underneath': 1.0, 'also': 1.0, 'for': 2.0, 'a': 7.0, 'take': 1.0, 'then': 1.0, 'we': 2.0, 'time': 1.0, 'safetly': 1.0, 'and': 7.0, 'very': 1.0, 'do': 1.0, 'put': 1.0, 'floor': 1.0, 'bought': 2.0, 'months': 1.0, 'laying': 1.0, 'live': 1.0, 'but': 2.0, 'hardwood': 1.0, 'made': 1.0, 'long': 1.0, 'on': 2.0, 'over': 1.0, 'hard': 2.0, 'from': 2.0, 'with': 1.0, 'she': 3.0, 'many': 1.0, 'around': 1.0, 'because': 2.0, 'fall': 1.0, 'have': 1.0, 'them': 1.0, 'mats': 1.0, 'always': 1.0, 'cushion': 2.0, '6': 1.0, 'basement': 1.0, 'concrete': 1.0, 'slab': 1.0, 'old': 2.0, 'living': 1.0, 'no': 1.0, 'surface': 1.0, 'still': 1.0, 'sideways': 1.0, 'if': 1.0, 'everything': 2.0, 'shes': 1.0, 'so': 1.0, 'add': 1.0, 'some': 1.0, 'when': 1.0, 'sit': 1.0, 'roll': 1.0, 'or': 3.0, 'backwards': 1.0, 'did': 1.0, 'not': 1.0, 'like': 1.0, 'thicker': 1.0, 'this': 1.0, 'bunch': 1.0, 'the': 6.0, 'of': 1.0, 'under': 1.0, 'month': 1.0, 'lil': 3.0, 'floors': 1.0, 'is': 4.0, 'at': 1.0, 'look': 1.0, 'exploration': 1.0, 'even': 1.0, 'cluttered': 1.0, 'in': 2.0, 'these': 2.0, 'room': 1.0, 'soft': 1.0, 'soooo': 1.0, 'rough': 1.0, 'position': 1.0, 'her': 4.0, 'up': 3.0, '7': 1.0, 'paranoid': 1.0, 'scoots': 1.0, 'now': 2.0, 'mat': 3.0, 'just': 3.0, 'fell': 1.0, 'during': 1.0, 'thick': 1.0, 'enough': 1.0, 'should': 1.0}
Word element => {'ordering': 1.0, 'one': 1.0, 'them': 2.0, 'received': 1.0, 'quick': 1.0, 'on': 1.0, 'i': 1.0, 'choke': 1.0, 's': 1.0, 'floors': 1.0, 'my': 2.0, 'are': 1.0, 'after': 1.0, 'small': 1.0, 'protect': 1.0, 'baby': 2.0, 'don': 1.0, 'was': 1.0, 'to': 1.0, 'could': 1.0, 'head': 1.0, 'thick': 1.0, 'sturdy': 1.0, 'super': 1.0, 'no': 1.0, 'enough': 1.0, 'that': 1.0, 'our': 1.0, 'hardwood': 1.0, 'day': 1.0, 'shipping': 1.0, 'from': 1.0, 'these': 1.0, 't': 1.0, 'have': 1.0, 'smell': 1.0, 'and': 1.0, 'pieces': 1.0}
Word element => {'mats': 1.0, 'good': 1.0, 'they': 1.0, 'understand': 1.0, 'disappointing': 1.0, 'why': 1.0, 'accustomed': 1.0, 'won': 1.0, 'don': 1.0, 'over': 1.0, 'here': 2.0, 'hawaii': 1.0, 'i': 2.0, 'but': 2.0, 'can': 1.0, 'it': 3.0, 'this': 2.0, 'with': 1.0, 'all': 1.0, 'to': 4.0, 'deal': 1.0, 'the': 5.0, 'is': 1.0, 'more': 1.0, 'order': 1.0, 'so': 1.0, 'mat': 1.0, 'still': 1.0, 'these': 1.0, 'some': 1.0, 'reason': 1.0, 'ones': 1.0, 'yes': 1.0, 'are': 1.0, 'ocean': 1.0, 'u': 1.0, 'and': 2.0, 't': 3.0, 's': 4.0, 'we': 1.0, 're': 1.0, 'wanted': 1.0, 'paying': 1.0, 'have': 1.0, 'things': 1.0, 'shipped': 1.0, 'ship': 2.0, 'what': 1.0, 'for': 1.0, 'folks': 1.0}
Word element => {'car': 1.0, 'camping': 1.0, 'than': 3.0, 'matter': 1.0, 'packs': 1.0, 'compared': 1.0, 'works': 1.0, 'without': 1.0, 'slightly': 1.0, 'padding': 1.0, 'i': 7.0, 'well': 1.0, 'games': 2.0, 'carpet': 4.0, 'cleanable': 1.0, 'them': 4.0, 'with': 3.0, 'mats': 5.0, 'has': 1.0, 'solution': 1.0, 'kinect': 2.0, 'think': 2.0, 'definitely': 1.0, 'ground': 2.0, 'wheels': 1.0, 'hardness': 1.0, 'from': 6.0, 'about': 2.0, 'play': 3.0, 'his': 1.0, 'around': 1.0, 'out': 3.0, 'fact': 1.0, 'unfinished': 2.0, 'may': 1.0, 'sports': 1.0, 'you': 1.0, 'skid': 1.0, 'when': 2.0, 'some': 4.0, 'roll': 1.0, 'traditional': 1.0, 'playing': 1.0, 'create': 2.0, 'other': 1.0, 'an': 1.0, 'potentially': 1.0, 'living': 1.0, 'the': 27.0, 'these': 2.0, 'had': 1.0, 'after': 1.0, 'though': 2.0, 'thick': 2.0, 'in': 9.0, 'stayed': 1.0, 'concrete': 3.0, '240sqft': 1.0, 'normally': 1.0, 'area': 3.0, 'rug': 1.0, 'tent': 2.0, 'pretty': 1.0, 'cold': 1.0, 'to': 7.0, 'our': 3.0, 'uncomfortable': 1.0, 'theater': 1.0, 'better': 2.0, 'bought': 1.0, 'dropped': 1.0, 'being': 1.0, 'overly': 1.0, 'very': 1.0, 'for': 4.0, 'which': 1.0, 'made': 1.0, 'xbox': 1.0, 'takes': 1.0, 'as': 3.0, 'less': 1.0, 'rugs': 1.0, 'water': 1.0, 'isn': 1.0, 'was': 4.0, 'love': 1.0, 'accidental': 1.0, 't': 2.0, 'their': 1.0, 'wrestling': 1.0, 'we': 2.0, 'take': 1.0, 'a': 5.0, 'large': 1.0, 'hard': 1.0, 'edge': 1.0, '1': 1.0, 'plan': 1.0, 'painted': 2.0, 'it': 6.0, 'son': 1.0, 'somewhat': 1.0, 'surface': 1.0, 'etc': 1.0, 'floor': 6.0, 'much': 1.0, 'put': 2.0, 'slippery': 1.0, 'enough': 1.0, 'stick': 1.0, 'kids': 2.0, 'grey': 1.0, 'same': 1.0, 'cases': 1.0, 'tears': 1.0, 'off': 1.0, 'is': 3.0, 'basement': 5.0, 'can': 2.0, 'squishy': 1.0, 'but': 3.0, 'gripping': 1.0, 'fatigue': 1.0, 'knees': 1.0, 'arts': 1.0, 'like': 1.0, 'my': 2.0, 'room': 1.0, 'are': 4.0, 'improved': 1.0, 'of': 9.0, 'even': 3.0, 'hot': 1.0, 'have': 1.0, 'afraid': 1.0, 'they': 3.0, 'reservation': 1.0, 'dragged': 1.0, 'if': 1.0, 'sock': 1.0, 'martial': 1.0, 'walk': 1.0, '3': 2.0, '8': 2.0, '2': 1.0, 'leave': 1.0, 'end': 1.0, 'worked': 1.0, 'putting': 1.0, 'cars': 1.0, 'morning': 1.0, 'recommend': 1.0, 'this': 1.0, 'sitting': 1.0, 'thickness': 1.0, 'or': 2.0, 'wouldn': 1.0, 'more': 3.0, 'protect': 1.0, 'up': 1.0, 'adequate': 1.0, 'provide': 2.0, 'am': 2.0, 'additionally': 1.0, 'pads': 1.0, 'slide': 1.0, 'now': 1.0, 'contemplating': 1.0, 'scooted': 1.0, '10': 1.0, 'ordering': 1.0, 'importantly': 1.0, 'feet': 1.0, 'home': 1.0, 'order': 1.0, 'foam': 1.0, 'down': 2.0, 'brown': 1.0, 'us': 1.0, 'level': 1.0, 'been': 1.0, 'insulation': 2.0, 'resistant': 1.0, 'cool': 1.0, 'playroom': 1.0, 'most': 1.0, 'back': 1.0, 'on': 5.0, 'items': 1.0, 'suit': 1.0, 'tiles': 1.0, 'especially': 1.0, 'easily': 1.0, 'sure': 1.0, 'did': 1.0, 'time': 1.0, 'complaining': 1.0, 'and': 11.0, 'just': 1.0, 'pick': 1.0}
Word element => {'them': 1.0, 'value': 1.0, 'worries': 1.0, 'how': 1.0, 'locked': 1.0, 'i': 1.0, 'makes': 1.0, 'love': 2.0, 'and': 1.0, 'pin': 1.0, 'are': 1.0, 'too': 1.0, 'when': 1.0, 'pins': 1.0, 'safety': 1.0, 'great': 2.0, 'the': 1.0, 'these': 1.0, 'is': 1.0, 'it': 2.0, 'with': 1.0, 'you': 1.0, 'close': 1.0, 'easy': 1.0, 'use': 1.0, 'to': 1.0, 'no': 1.0}
Word element => {'4': 1.0, 'stars': 2.0, '3': 1.0, 'from': 1.0, 'updated': 1.0, 'this': 1.0, 'compromise': 1.0, 'use': 1.0, 'in': 1.0, 'been': 1.0, 'one': 1.0, 'no': 1.0, 'about': 1.0, 're': 1.0, 'since': 2.0, 'total': 1.0, 'at': 1.0, 'a': 3.0, 's': 2.0, 'through': 1.0, 'tip': 2.0, 'would': 1.0, 'time': 1.0, 'new': 1.0, 'good': 1.0, 'first': 1.0, 'with': 1.0, '7': 1.0, 'up': 1.0, 'and': 2.0, 'quality': 2.0, 'was': 1.0, 'anymore': 1.0, 'bent': 2.0, 'resulting': 1.0, 'cheap': 1.0, 'for': 1.0, 'me': 1.0, 'my': 1.0, 'i': 6.0, 'ok': 1.0, 'concrete': 1.0, 'as': 2.0, 'bend': 1.0, 'diaper': 2.0, '2': 1.0, 'bought': 1.0, 'money': 1.0, 'so': 2.0, 'can': 1.0, 'but': 1.0, 'these': 1.0, 'of': 3.0, 'the': 11.0, 'on': 1.0, 'update': 1.0, '16': 1.0, 'packs': 1.0, 'it': 3.0, '9': 1.0, 'else': 1.0, 'an': 1.0, 'other': 1.0, 'all': 1.0, 'pins': 4.0, 'ended': 1.0, 'after': 1.0, 'were': 1.0, 'because': 1.0, 'that': 5.0, 'off': 1.0, 'tried': 1.0, 'seems': 2.0, 'sell': 1.0, 'poke': 1.0, 'true': 1.0, 'did': 1.0, 't': 1.0, 'along': 1.0, 'get': 1.0, 'worth': 1.0, 'or': 1.0, 'year': 1.0, 'later': 1.0, 'part': 1.0, 'however': 1.0, 'found': 1.0, 'grinding': 1.0, 'be': 1.0, 'to': 4.0, 'pretty': 1.0, 'fixed': 1.0, 'by': 1.0, 'just': 2.0, 've': 1.0, 'down': 1.0, 'using': 1.0, 'they': 2.0, 'metal': 1.0, 'point': 1.0, 'out': 1.0, 'file': 1.0, 'even': 1.0, 'running': 1.0, 'sidewalk': 1.0, 'isn': 1.0, 'acceptable': 1.0, 'quite': 1.0, 'sharp': 1.0, 'when': 1.0, 'feel': 1.0, 'probably': 1.0}
Word element => {'uses': 1.0, 'my': 1.0, 'important': 1.0, 'be': 1.0, 'disposable': 1.0, 'diapers': 1.0, 'today': 1.0, 'use': 1.0, 'due': 1.0, 'pins': 1.0, 'the': 2.0, 'these': 2.0, 'used': 1.0, 'to': 3.0, 'difficult': 1.0, 'it': 1.0, 'however': 1.0, 'i': 1.0, 'find': 2.0, 'mechanism': 1.0, 'for': 2.0, 'other': 1.0, 'anymore': 1.0, 's': 1.0, 'purposes': 1.0, 'and': 1.0, 'locking': 1.0}
Word element => {'safe': 1.0, 'keep': 1.0, 'gotta': 1.0, 'results': 1.0, 'test': 1.0, 'per': 1.0, 'listed': 1.0, 'poor': 1.0, 'good': 1.0, 'best': 1.0, 'these': 1.0, 'the': 2.0, 'them': 5.0, 'for': 3.0, 'bought': 2.0, 'months': 1.0, 'one': 3.0, 'article': 1.0, 'little': 1.0, 'read': 1.0, 'car': 1.0, 'just': 1.0, 'is': 1.0, 'too': 1.0, 'and': 4.0, 'iihs': 1.0, 'only': 1.0, 'she': 1.0, 'it': 1.0, 'each': 1.0, 'of': 1.0, '6': 1.0, 'booster': 1.0, 'daughter': 1.0, 'when': 1.0, 'i': 5.0, 'using': 1.0, 'like': 1.0, 'crash': 1.0, 'my': 1.0, 'another': 1.0, 'about': 1.0, 'had': 1.0, 'year': 1.0, 'from': 1.0, 'have': 1.0, 'carseats': 1.0, 'found': 1.0, 'our': 1.0, 'to': 2.0, 'onsale': 1.0, '2': 2.0, 'but': 1.0, 'stored': 1.0, 'so': 1.0, 'be': 1.0, 'here': 1.0, 't': 1.0, 'a': 2.0, 's': 1.0, 'won': 1.0, 'half': 1.0, 'has': 1.0}
Word element => {'fair': 1.0, 'was': 1.0, 'however': 1.0, 'flimsy': 1.0, 'is': 1.0, 'works': 1.0, 'well': 1.0, 'but': 1.0, 'the': 3.0, 'are': 1.0, 'cheap': 1.0, 'and': 2.0, 'materials': 1.0, 'back': 1.0, 'construction': 1.0, 'price': 1.0, 'rather': 1.0}
Word element => {'front': 1.0, 'opens': 1.0, 'that': 1.0, 'an': 1.0, 'with': 1.0, 'something': 1.0, 'was': 1.0, 'did': 1.0, 't': 1.0, 'didn': 1.0, 'it': 1.0, 'she': 1.0, 'nervous': 1.0, 'wish': 1.0, 'this': 1.0, 'bottom': 1.0, 'on': 1.0, 'suction': 1.0, 'no': 1.0, 'there': 2.0, '5': 1.0, 'legs': 1.0, 'however': 1.0, 'everywhere': 1.0, 'baby': 4.0, 'rest': 3.0, 'months': 1.0, 'one': 1.0, 'liked': 1.0, 'and': 7.0, 'i': 2.0, 'my': 1.0, 'float': 1.0, 'able': 1.0, 'have': 1.0, 'like': 2.0, 'which': 1.0, 'swivel': 1.0, 'is': 3.0, 'really': 1.0, 'because': 1.0, 'having': 1.0, 'in': 4.0, 'also': 1.0, 'of': 1.0, 'up': 1.0, 'arm': 3.0, 'being': 2.0, 'hurting': 1.0, 'made': 1.0, '17lbs': 1.0, 'little': 1.0, 'very': 2.0, 'hard': 1.0, 'out': 2.0, 'get': 2.0, 'tub': 1.0, 'reach': 1.0, 'the': 9.0, 'without': 1.0, 'fill': 1.0, 'her': 1.0, 'keep': 1.0, 'idea': 1.0, 'you': 1.0, 'old': 1.0, 'warm': 1.0, 'makes': 1.0, 'cups': 1.0, 'to': 6.0, 'seat': 1.0}
Word element => {'you': 1.0, 'thank': 1.0, 'month': 1.0, '6': 1.0, 'my': 1.0, 'confrotable': 1.0, 'is': 1.0, 'arm': 1.0, 'place': 1.0, 'in': 1.0, 'around': 1.0, 'staying': 1.0, 'problem': 1.0, 'did': 1.0, 'glad': 1.0, 'splashing': 1.0, 'm': 1.0, 'no': 1.0, 'some': 1.0, 'love': 1.0, 'purchasing': 1.0, 'for': 1.0, 'item': 1.0, 'before': 1.0, 'myself': 1.0, 'and': 3.0, 'the': 2.0, 'read': 1.0, 'old': 1.0, 'i': 5.0, 'not': 1.0, 'concerns': 1.0, 'with': 1.0, 'this': 1.0, 'it': 2.0, 'son': 1.0, 'decided': 1.0, 'from': 1.0, 'another': 1.0, 'reviews': 1.0, 'posting': 1.0, 'however': 1.0, 'had': 2.0, 'to': 1.0, 'pad': 1.0, 'mothers': 1.0, 'try': 1.0}
Word element => {'because': 1.0, 'that': 1.0, 'use': 1.0, 'try': 1.0, 'bath': 1.0, 'i': 1.0, 'old': 2.0, 'ring': 1.0, 'from': 1.0, 'twins': 1.0, 'rounded': 1.0, 'the': 4.0, 'nicely': 1.0, 'this': 2.0, 'thrilled': 1.0, 'with': 1.0, 'have': 1.0, 'are': 1.0, 'product': 1.0, 'seat': 3.0, 'our': 2.0, 'to': 3.0, 'was': 1.0, '10': 1.0, 'months': 1.0, 'and': 1.0, 'edges': 1.0, 'new': 1.0, 'legs': 1.0, 'house': 1.0, 'has': 2.0, 's': 1.0, 'we': 1.0, 't': 1.0, 'a': 3.0, 'tub': 2.0, 'attaches': 1.0, 'textured': 1.0, 'bottom': 1.0, 'of': 1.0, 'problem': 1.0, 'keep': 1.0, 'solved': 1.0, 'side': 1.0, 'quite': 1.0, 'couldn': 1.0, 'securely': 1.0, 'scraping': 1.0, 'baby': 1.0}
Word element => {'secure': 1.0, 'and': 1.0, 'safe': 1.0, 'looking': 1.0, 'anyone': 1.0, 'something': 1.0, 'would': 1.0, 'much': 2.0, 'time': 1.0, 'bath': 1.0, 'made': 1.0, 'part': 1.0, 'this': 2.0, 'set': 1.0, 'up': 2.0, 'there': 1.0, 'it': 2.0, 'she': 3.0, 'infant': 1.0, 'lock': 1.0, 'recommend': 1.0, 'was': 1.0, 'had': 1.0, 'outgrowing': 1.0, 'my': 1.0, 'bought': 1.0, 'once': 1.0, 'no': 1.0, 'with': 1.0, 'fitting': 1.0, 'out': 1.0, 'problems': 1.0, 'daughter': 1.0, 'her': 3.0, 'sit': 1.0, 'easier': 1.0, 'likes': 1.0, 'i': 2.0, 'since': 2.0, 's': 1.0, 'could': 1.0, 'a': 1.0, 'unassisted': 1.0, 'tricky': 1.0, 'inside': 1.0, 'seat': 1.0, 'to': 3.0, 'our': 2.0, 'standard': 1.0, 'bathtub': 1.0, 'being': 1.0, 'loves': 1.0, 'or': 1.0, 'in': 2.0, 'most': 1.0, 'but': 1.0, 'can': 1.0, 'easy': 1.0, 'tub': 2.0, 'get': 2.0, 'little': 1.0, 'legs': 1.0, 'for': 2.0, 'the': 1.0}
Word element => {'other': 1.0, 'warning': 1.0, 'away': 1.0, 'throwing': 1.0, 'do': 1.0, 'thank': 1.0, 'in': 1.0, 'her': 4.0, 'flipped': 1.0, 'top': 1.0, 'back': 1.0, 'am': 1.0, 'when': 1.0, 'literally': 1.0, 'alone': 1.0, 'head': 1.0, 'turned': 2.0, 'daughter': 1.0, 'over': 2.0, 'one': 2.0, 'months': 2.0, 'goes': 1.0, 'that': 1.0, 'part': 1.0, 'bottom': 1.0, '8': 1.0, 'down': 1.0, 'it': 2.0, 'this': 3.0, 'with': 2.0, 'and': 4.0, 'never': 2.0, 'few': 1.0, '1st': 1.0, 'second': 3.0, 'seati': 1.0, 'a': 2.0, 'tubside': 1.0, 'had': 2.0, 'was': 2.0, 'liked': 1.0, 'on': 2.0, 'bath': 1.0, 'the': 7.0, 'even': 1.0, 'safety': 1.0, 'sits': 1.0, 'edge': 1.0, 'suchioned': 1.0, 'of': 3.0, 'get': 1.0, 'tub': 2.0, 'securely': 1.0, 'if': 1.0, 'i': 5.0, 'leave': 1.0, 'have': 2.0, 'snug': 1.0, 'sitting': 1.0, 'can': 1.0, 'parents': 1.0, 'somewhat': 1.0, 'for': 3.0, 'product': 1.0, 'fit': 1.0, 'all': 2.0, 'to': 1.0, 'seat': 2.0, 'will': 1.0, 'not': 2.0, 'stay': 1.0, 'today': 1.0, 'god': 1.0, 'my': 2.0}
Word element => {'job': 1.0, 'other': 1.0, 'problem': 1.0, 'no': 1.0, 'up': 1.0, 'can': 1.0, 'my': 1.0, 'that': 2.0, 'large': 1.0, 'so': 1.0, 'does': 1.0, 'his': 1.0, 'cover': 1.0, 'is': 2.0, 'requires': 1.0, 'bath': 1.0, 'exceptions': 1.0, 'are': 1.0, 'full': 1.0, 'love': 1.0, 'i': 1.0, 'big': 1.0, 'product': 1.0, 'be': 1.0, 'with': 2.0, 'it': 1.0, 'this': 1.0, 'to': 2.0, 'its': 2.0, 'xon': 1.0, 'rather': 1.0, '1': 1.0, 'and': 2.0, 'holes': 1.0, '2': 2.0, 'great': 2.0, 'the': 3.0, 'than': 1.0, 'leg': 1.0, 'legs': 1.0, 'half': 1.0, 'seat': 1.0, 'stand': 1.0, 'just': 1.0}
Word element => {'narrow': 1.0, 'it': 1.0, 'as': 1.0, 'seat': 1.0, 'too': 1.0, 'fine': 1.0, 'but': 1.0, 'arm': 1.0, 'cannot': 1.0, 'be': 1.0, 'used': 1.0, 'bathtubs': 1.0, 'is': 2.0, 'on': 1.0, 'the': 2.0, 'older': 1.0}
Word element => {'little': 1.0, 'fun': 1.0, 'the': 1.0, 'his': 1.0, 'her': 1.0, 'enjoys': 1.0, 'really': 1.0, 'she': 1.0, 'and': 2.0, 'month': 1.0, '9': 1.0, 'sister': 1.0, 'with': 1.0, 'it': 1.0, 'can': 1.0, 'join': 1.0, 'bathing': 1.0, 'a': 1.0, 'have': 2.0, 'i': 2.0, 'old': 2.0, 'bathtub': 1.0, 'am': 1.0, 'worry': 1.0, 'in': 2.0, 'also': 2.0, 'free': 1.0, 'my': 1.0, '3': 1.0, 'year': 1.0, 'son': 1.0}
Word element => {'hoped': 1.0, 'than': 1.0, 'okay': 1.0, 'should': 1.0, 'each': 1.0, 'after': 1.0, 'but': 2.0, 'a': 5.0, 's': 2.0, 'provides': 1.0, 'product': 1.0, 'for': 2.0, 't': 3.0, 'fit': 1.0, 'both': 1.0, 'overall': 1.0, 'didn': 1.0, 'can': 3.0, 'so': 3.0, 'bit': 2.0, 'alternative': 1.0, 'bathe': 1.0, 'was': 2.0, 'had': 2.0, 'to': 5.0, 'our': 1.0, 'as': 2.0, 'tub': 2.0, 'get': 1.0, 'with': 1.0, 'this': 2.0, 'like': 3.0, 'seem': 1.0, 'son': 1.0, 'need': 1.0, 'anything': 1.0, 'oldest': 1.0, 'quite': 1.0, 'my': 4.0, 'secure': 1.0, 'an': 1.0, 'i': 7.0, 'time': 2.0, 'new': 1.0, 'little': 3.0, 'guy': 1.0, 'and': 4.0, 'couldn': 1.0, 'down': 1.0, 'stand': 3.0, 'that': 5.0, 'bigger': 1.0, 'turn': 2.0, 'm': 1.0, 'seat': 2.0, 'in': 2.0, 'while': 1.0, 'use': 2.0, 'fact': 2.0, 'old': 1.0, 'just': 1.0, 'started': 1.0, 'baby': 1.0, 'pulling': 1.0, 'is': 1.0, 'at': 2.0, 'keep': 1.0, 'first': 1.0, 'much': 1.0, 'seated': 1.0, 'happy': 1.0, 'try': 1.0, 'think': 1.0, 'squirmy': 1.0, 'it': 10.0, '9': 1.0, 'him': 1.0, 'be': 2.0, 'although': 1.0, 'on': 2.0, 'long': 1.0, 'does': 2.0, 'we': 1.0, 'trapped': 1.0, 'shouldn': 1.0, 'more': 1.0, 'shake': 1.0, 'primo': 1.0, 'right': 1.0, 'used': 2.0, 'once': 1.0, 'the': 8.0, 'of': 1.0, 'pull': 1.0, 'water': 1.0, 'now': 1.0, 'far': 1.0, 'bottom': 1.0, 'he': 2.0, 'say': 1.0, 'comfortable': 1.0, 'not': 1.0, 'guys': 1.0, 'you': 2.0, 'upside': 1.0, 'month': 1.0, 'same': 1.0}
Word element => {'are': 1.0, 'any': 1.0, 'need': 1.0, 'and': 3.0, 'of': 1.0, 'seat': 1.0, 'am': 1.0, 'they': 1.0, 'ever': 1.0, 'to': 2.0, 'item': 1.0, 'this': 3.0, 'mother': 2.0, 'the': 2.0, 'love': 1.0, 'invaluable': 1.0, 'twins': 1.0, 'times': 1.0, 'i': 4.0, 'recommend': 1.0, 'hands': 1.0, 'two': 1.0, 'at': 1.0, 'would': 1.0, 'have': 1.0, 'all': 1.0, 'is': 1.0, 'best': 1.0}
Word element => {'both': 1.0, 'fun': 1.0, 'house': 1.0, 'have': 1.0, 'far': 1.0, 'water': 1.0, 'use': 1.0, 'down': 1.0, 'made': 1.0, 'upside': 1.0, 'recommend': 1.0, 'parents': 1.0, 'sit': 1.0, 'better': 1.0, 'can': 1.0, 'so': 1.0, 'time': 2.0, 'lot': 1.0, 'at': 2.0, 'little': 1.0, 'just': 1.0, 'they': 2.0, 'them': 3.0, 'bath': 1.0, 'make': 1.0, 'put': 1.0, 'had': 1.0, '5': 1.0, 'over': 1.0, 'months': 2.0, 'were': 2.0, 'the': 12.0, 'these': 2.0, 'fill': 1.0, 'away': 1.0, 'now': 2.0, 'all': 1.0, 'to': 2.0, 'our': 1.0, 'seat': 4.0, 'because': 2.0, 'not': 1.0, 'of': 4.0, 'my': 1.0, 'fact': 1.0, 'couple': 1.0, 'too': 1.0, 'and': 3.0, 'would': 1.0, 've': 1.0, 'turning': 1.0, 'in': 2.0, 'also': 1.0, 'babies': 1.0, 'that': 1.0, 'been': 1.0, '4': 1.0, 'i': 3.0, 'tried': 1.0, 'hangs': 1.0, 'seats': 2.0, 'for': 4.0, 'arm': 1.0, 'side': 1.0, 'is': 1.0, 'sure': 1.0, 'tub': 1.0, 'it': 1.0, 'only': 1.0, 'we': 2.0, 'a': 3.0, 'going': 1.0, 'mom': 1.0, 'anywhere': 1.0, 'hook': 1.0, 'has': 1.0, 'nice': 1.0, 'drains': 1.0, 'after': 1.0, 'bathing': 1.0, 'rest': 1.0, 'know': 1.0, 'like': 1.0, 'dad': 1.0, 'easily': 1.0, 'twins': 1.0, 'when': 1.0, 'boys': 1.0}
Word element => {'over': 1.0, 'tip': 1.0, 'a': 1.0, 'of': 1.0, 'fears': 1.0, 'problem': 1.0, 'no': 2.0, 'still': 1.0, '6': 1.0, 'us': 1.0, 'happily': 1.0, 'in': 2.0, 'she': 3.0, 'it': 3.0, 'this': 2.0, 'with': 2.0, 'made': 1.0, 'fits': 1.0, 'easy': 1.0, 'tub': 1.0, 'has': 2.0, 'time': 1.0, 'not': 1.0, 'bath': 1.0, 'restrictions': 1.0, 'comfy': 1.0, 'loves': 1.0, 'sits': 1.0, 'playing': 1.0, 'without': 1.0, 'the': 1.0, 'is': 2.0, 'leave': 1.0, 'her': 5.0, 'sturdy': 1.0, 'tubby': 1.0, 'year': 1.0, 'for': 1.0, 'brother': 1.0, 'very': 1.0, 'old': 2.0, 'i': 1.0, '11': 1.0, 'easily': 1.0, 'seat': 3.0, 'as': 1.0, 'any': 1.0, 'would': 1.0, 'sitting': 1.0, 'but': 1.0, 'lets': 1.0, 'too': 1.0, 'and': 5.0, 'play': 1.0, 'unattended': 1.0, 'now': 1.0, 'months': 1.0}
Word element => {'uncomfortable': 1.0, 'hangs': 1.0, 'of': 1.0, 'sort': 1.0, 'leans': 1.0, 'had': 1.0, 'reason': 1.0, 'only': 1.0, 'everyone': 1.0, 'padding': 1.0, 'long': 1.0, 'used': 1.0, 'nice': 1.0, 'bathtime': 1.0, 'takes': 1.0, 'looks': 1.0, 'it': 6.0, 'he': 2.0, 'with': 3.0, 'that': 1.0, 'loves': 1.0, 'his': 1.0, 'mobility': 1.0, 'edge': 1.0, 'worry': 1.0, 'little': 3.0, 'a': 5.0, 'my': 3.0, 'just': 1.0, 'because': 1.0, 'give': 1.0, 'not': 1.0, 'to': 1.0, 'hate': 1.0, 'son': 2.0, 'him': 2.0, 'out': 1.0, '4': 1.0, 'i': 4.0, 'leisurely': 2.0, 'baths': 1.0, 'take': 1.0, 'wanted': 1.0, 'toys': 1.0, 'splashing': 1.0, 'and': 5.0, 'too': 1.0, 'where': 1.0, 'stars': 1.0, 'for': 1.0, 'love': 1.0, 'the': 3.0, 'turns': 1.0, 'playing': 1.0, 'hands': 1.0, 'now': 1.0, 'free': 1.0, 'can': 1.0, 'bath': 2.0, 'about': 1.0, 'wish': 1.0, 'tipping': 1.0, 'child': 1.0, 'freedom': 1.0, 'over': 3.0, 'more': 1.0, 'around': 2.0, 'is': 2.0}
Word element => {'winner': 1.0, 'a': 1.0, 'install': 1.0, 'i': 1.0, 'this': 1.0, 'seat': 1.0, 'its': 1.0, 'to': 2.0, 'easy': 1.0, 'even': 1.0, 'easier': 1.0, 'assemble': 1.0, 'like': 1.0, 'and': 1.0}
Word element => {'price': 3.0, '35': 1.0, 'insane': 1.0, 'sellers': 2.0, '30': 1.0, 'this': 2.0, 'there': 1.0, 'of': 1.0, 'auction': 1.0, 'ish': 1.0, 'check': 1.0, 'off': 1.0, 'so': 1.0, 'however': 1.0, 'original': 1.0, 'between': 1.0, 'places': 1.0, 'it': 4.0, 'ashamed': 1.0, 's': 4.0, 'you': 2.0, 'completely': 1.0, 'is': 3.0, 'online': 1.0, 'for': 1.0, 'and': 3.0, 'asking': 2.0, 'freaking': 1.0, 'robbery': 1.0, 'ticks': 1.0, 'should': 1.0, 'be': 1.0, 'yourself': 1.0, 'the': 1.0, 'great': 1.0, 'another': 1.0, 'bathseat': 1.0, 'definitely': 1.0, '20': 1.0, 'me': 1.0, 'not': 1.0, 'or': 2.0, 'seller': 1.0, 'worth': 2.0, 'can': 1.0, 'most': 1.0, 'but': 1.0, 'selling': 1.0, 'which': 1.0}
Word element => {'mind': 1.0, 'but': 1.0, 'area': 1.0, 'foot': 1.0, 'secured': 1.0, 'in': 1.0, 'window': 2.0, 'be': 3.0, 'thin': 1.0, 'like': 2.0, 'hold': 2.0, 'have': 1.0, 'over': 2.0, 'which': 1.0, 'good': 1.0, 'expensive': 1.0, 'for': 4.0, 'quite': 1.0, 'velcro': 1.0, 'specific': 1.0, 'tent': 1.0, 'were': 1.0, 'saw': 1.0, 'better': 4.0, 'most': 1.0, 'can': 1.0, 'real': 1.0, 'a': 4.0, 'could': 1.0, 'cover': 3.0, 'enough': 1.0, 'legs': 1.0, 'pleased': 1.0, 'only': 2.0, 'this': 2.0, 'kids': 1.0, 'with': 2.0, 'tied': 1.0, 'that': 3.0, 'easily': 1.0, 'very': 1.0, 'single': 1.0, 'figure': 1.0, 'and': 3.0, 'two': 1.0, 'out': 1.0, 'am': 1.0, 'strollers': 2.0, 'place': 1.0, 'tie': 1.0, 'the': 12.0, 'of': 1.0, 'difficult': 1.0, 'year': 1.0, 'at': 1.0, 'is': 3.0, 'had': 1.0, 'was': 1.0, 'lays': 1.0, 'to': 4.0, 'stroller': 3.0, 'our': 2.0, 'ones': 1.0, 'one': 1.0, 'has': 1.0, 'i': 7.0, 'well': 1.0, 'stiff': 1.0, 'plastic': 1.0, 'large': 1.0, 'see': 1.0, 'everything': 1.0, 'it': 7.0, 'other': 2.0, 'fits': 1.0, 'may': 1.0, 'my': 1.0, 'fit': 1.0, 't': 3.0, 'fairly': 1.0, 'on': 4.0, 'web': 1.0, '3': 1.0, 'base': 1.0, 'searched': 1.0, 'jogging': 1.0, 'material': 5.0, 'ties': 1.0, 'handles': 1.0, 'plus': 1.0, 'sides': 1.0, 'some': 1.0, 'fold': 1.0, 'bottom': 1.0, 'also': 1.0, 'clear': 1.0, 'if': 1.0, 'stoller': 1.0, 'there': 1.0, 'don': 2.0, 'isn': 1.0, 'fine': 1.0, 'olds': 1.0, 'somewhat': 1.0, 'bulky': 1.0, 'would': 1.0}
Word element => {'available': 1.0, 'of': 1.0, 'bottom': 1.0, 'and': 3.0, 'yesterday': 1.0, 'weather': 1.0, 'constantly': 1.0, 'works': 1.0, 'for': 1.0, 'love': 3.0, 'changing': 1.0, 'to': 3.0, 'store': 1.0, 'easy': 2.0, 'cover': 2.0, 'stroller': 1.0, 'put': 1.0, 'it': 1.0, 'this': 2.0, 'elements': 1.0, 'is': 3.0, 'live': 1.0, 'happened': 1.0, 'sleet': 1.0, 'on': 1.0, 'remove': 1.0, 'we': 1.0, 'in': 2.0, 'mn': 1.0, 'have': 1.0, 'all': 1.0, 'rain': 1.0, 'great': 1.0, 'the': 4.0, 'snow': 1.0}
Word element => {'em': 1.0, 'but': 1.0, 'washings': 1.0, 'of': 1.0, 'after': 1.0, 'faded': 1.0, 'definitely': 1.0, 'clothes': 1.0, 'on': 1.0, 'couple': 1.0, 'and': 1.0, 'colors': 2.0, 'design': 1.0, 'my': 1.0, 'nice': 1.0, 'sharp': 1.0, 'absorbent': 1.0, 'bibs': 2.0, 'spits': 1.0, 'love': 2.0, 'still': 1.0, 'save': 1.0, 'son': 1.0, 'very': 1.0, 'changing': 1.0, 'a': 2.0, 'i': 1.0, 'whole': 1.0, 'lot': 1.0, 'the': 2.0, 'these': 1.0, 'really': 1.0, 'us': 1.0, 'his': 1.0}
Word element => {'good': 1.0, 'a': 1.0, 'find': 1.0, 'to': 1.0, 's': 1.0, 'hard': 1.0, 'it': 1.0, 'bib': 1.0, 'future': 1.0, 'other': 1.0, 'than': 1.0, 'in': 1.0, 'perfect': 1.0, 'and': 2.0, 'very': 1.0, 'they': 1.0, 'our': 1.0, 'are': 2.0, 'the': 1.0, 'these': 2.0, 'more': 1.0, 'larger': 1.0, 'absorbent': 1.0, 'bibs': 2.0, 'for': 1.0, '4': 1.0, 'old': 1.0, 'i': 1.0, 'month': 1.0, 'baby': 1.0, 'will': 1.0, 'definitely': 1.0, 'purchase': 1.0, 'of': 1.0}
Word element => {'bad': 1.0, 'very': 1.0, 'fabrics': 1.0, 'after': 1.0, 'colors': 1.0, 'the': 3.0, 'first': 1.0, 'on': 1.0, 'wash': 1.0, 'away': 1.0, 'all': 1.0, 'bibs': 1.0, 'were': 1.0, 'washed': 1.0}
Word element => {'am': 1.0, '12': 1.0, 'for': 1.0, 'terrible': 1.0, 'with': 1.0, 'own': 1.0, 'popular': 1.0, 'unlike': 1.0, 'much': 1.0, 'works': 1.0, 'velcro': 2.0, 'pants': 1.0, 'see': 1.0, 'floor': 1.0, 'us': 1.0, 'onto': 1.0, 'at': 1.0, 'bib': 1.0, 'down': 1.0, 'spill': 1.0, 'doesn': 1.0, 'usually': 1.0, 'i': 1.0, '4': 1.0, 'spit': 1.0, 'week': 1.0, 'boutique': 1.0, 'have': 2.0, 'amazon': 1.0, 'spitty': 1.0, 'she': 1.0, 'cheaper': 1.0, 'don': 1.0, 'up': 2.0, 'of': 2.0, 'very': 1.0, 'and': 6.0, 'excited': 1.0, 'great': 1.0, 'big': 1.0, '1': 1.0, 'baby': 2.0, 'them': 2.0, 'feeding': 2.0, 'bought': 1.0, 'dozens': 1.0, 'through': 1.0, 'per': 2.0, 'on': 2.0, 'absorbent': 1.0, 'some': 1.0, 'these': 2.0, 'we': 3.0, 'a': 2.0, 'go': 1.0, 't': 2.0, 'the': 4.0, 'spits': 1.0, 'are': 3.0, 'that': 2.0, 'absolute': 1.0, 'favorites': 1.0, 'so': 2.0, 'after': 1.0, 'they': 2.0, 'as': 1.0, 'our': 1.0, 'to': 3.0, 'bibs': 3.0, 'really': 1.0, 'change': 1.0, 'outfit': 1.0, 'off': 1.0, 'enough': 1.0, 'cover': 1.0, 'her': 3.0, 'shirt': 1.0, 'each': 1.0}
Word element => {'seller': 1.0, 'recommend': 1.0, 'would': 1.0, 'attach': 1.0, 'at': 1.0, 'velcro': 1.0, 'is': 2.0, 'there': 1.0, 'arrived': 1.0, 'bibs': 1.0, 'cute': 1.0, 'they': 3.0, 'the': 1.0, 'these': 1.0, 'our': 1.0, 'were': 2.0, 'soft': 2.0, 'pictured': 1.0, 'which': 1.0, 'nonprofit': 1.0, 'i': 2.0, 'for': 1.0, 'product': 1.0, 'bought': 1.0, 'enough': 1.0, 'colors': 1.0, 'and': 3.0, 'timely': 1.0, 'very': 1.0, 'as': 1.0, 'good': 1.0, 'not': 1.0, 'how': 1.0, 'thick': 2.0, 'extremely': 1.0, 'back': 1.0, 'quality': 1.0, 'but': 1.0}
Word element => {'what': 1.0, 'on': 1.0, 'time': 2.0, 'material': 1.0, 'i': 1.0, 'it': 1.0, 'like': 1.0, 'because': 1.0, 'dont': 1.0, 'out': 1.0, 'the': 4.0, 'get': 2.0, 'texture': 1.0, 'of': 1.0, 'job': 1.0, 'me': 1.0, 'easy': 1.0, 'right': 1.0, 'to': 3.0, 'frame': 1.0, 'wash': 1.0}
Word element => {'this': 1.0, 'with': 1.0, 'wrong': 1.0, 'go': 1.0, 'months': 1.0, 'never': 1.0, '10': 1.0, 'my': 1.0, '2': 1.0, 'the': 1.0, 'price': 1.0, 'product': 2.0, 'old': 1.0, 'crazy': 1.0, 'love': 1.0, 'for': 2.0, 'perfect': 2.0, 'son': 1.0, 'day': 1.0, 'we': 1.0, '3': 1.0, 'change': 1.0, 'bibs': 2.0, 'like': 1.0, 'his': 1.0, 'times': 1.0, 'a': 1.0}
Word element => {'velcro': 1.0, 'dry': 1.0, 'gentle': 1.0, 'washings': 1.0, 'heat': 1.0, 'few': 1.0, 'only': 1.0, 'that': 1.0, 'eating': 1.0, 'size': 1.0, 'opening': 1.0, 'complaint': 1.0, 'down': 1.0, 'used': 1.0, 'chest': 1.0, 'her': 3.0, 'good': 1.0, 'cover': 1.0, 'off': 1.0, 'one': 1.0, 'tray': 1.0, 'is': 4.0, 'after': 1.0, 'cute': 1.0, 'less': 1.0, 'wiping': 1.0, 'really': 1.0, 'bibs': 1.0, 'noticeably': 1.0, 'like': 1.0, 'overall': 1.0, 'are': 2.0, 'i': 1.0, 'and': 2.0, 'done': 2.0, 'most': 1.0, 'job': 1.0, 'the': 5.0, 'already': 1.0, 'these': 1.0, 'my': 2.0, 'low': 1.0, 'high': 1.0, 'to': 2.0, 'frequently': 1.0, 'they': 2.0, 'chair': 1.0, 'face': 1.0, 'cold': 1.0, 'although': 1.0, 'neck': 1.0, 'kind': 1.0, 'great': 1.0, 'big': 1.0, 'of': 1.0, 'for': 2.0, 'terry': 1.0, 'gets': 1.0, 'when': 1.0, 'functional': 1.0, 'soft': 1.0, 'it': 1.0, 'she': 1.0, 'a': 2.0, 's': 1.0}
Word element => {'set': 1.0, 'my': 1.0, 'is': 1.0, 'this': 1.0, 'i': 1.0, 'ordered': 2.0, 'much': 1.0, 'liked': 1.0, 'these': 1.0, 'second': 1.0, 'about': 1.0, '5': 1.0, 'months': 1.0, 'ago': 1.0, 'and': 1.0, 'them': 1.0, 'so': 1.0}
Word element => {'way': 1.0, 'out': 1.0, 'that': 1.0, 'found': 1.0, 'i': 1.0, 'wash': 1.0, 'melt': 1.0, 'price': 1.0, 'turn': 1.0, 'hard': 1.0, 'first': 1.0, 'with': 1.0, 'only': 1.0, 'for': 1.0, 'will': 1.0, 'back': 1.0, 'done': 1.0, 'get': 1.0, 'a': 1.0, 'great': 1.0, 'the': 4.0, 'medium': 1.0, 'is': 1.0, 'on': 1.0, 'u': 1.0, 'thing': 1.0, 'have': 1.0, 'to': 1.0, 'they': 1.0, 'your': 1.0, 'job': 1.0, 'or': 2.0, 'low': 1.0, 'dryer': 1.0}
Word element => {'drier': 1.0, 'keeps': 1.0, 'do': 1.0, 'items': 1.0, 'plastic': 1.0, 'oxiclean': 1.0, 'dreft': 1.0, 'at': 1.0, 'find': 1.0, 'usually': 1.0, 'in': 1.0, 'immediately': 1.0, 'rinse': 2.0, 'admit': 1.0, 'this': 1.0, 'freely': 1.0, 'will': 1.0, 'staining': 1.0, 'are': 3.0, 've': 4.0, 'fun': 1.0, 'no': 1.0, 'well': 2.0, 'i': 11.0, 'before': 1.0, 'enjoyed': 1.0, 'sturdy': 1.0, 'pictured': 1.0, 'just': 1.0, 'variety': 1.0, 'short': 1.0, 'other': 1.0, 'have': 2.0, 'it': 1.0, 'felt': 1.0, 'is': 2.0, 'really': 1.0, 'bibs': 3.0, 'the': 5.0, 'these': 2.0, 'great': 2.0, 'a': 1.0, 'we': 2.0, 't': 3.0, 'food': 1.0, '2': 1.0, 'and': 9.0, 'too': 1.0, 'dried': 1.0, 'read': 1.0, 'reviews': 1.0, 'they': 5.0, 'were': 1.0, 'got': 1.0, 'didn': 1.0, 'exactly': 1.0, 'feeding': 1.0, 'that': 2.0, 'been': 1.0, 'put': 1.0, 'think': 1.0, 'time': 1.0, 'so': 1.0, 'washer': 1.0, 'using': 1.0, 'fit': 1.0, 'where': 1.0, 'for': 1.0, 'clothes': 1.0, 'backing': 1.0, 'them': 3.0, 'clean': 2.0, 'months': 1.0, 'had': 2.0, 'issues': 1.0, 'wash': 1.0, 'don': 2.0, 'up': 1.0, 'not': 1.0, 'any': 1.0, 'problems': 1.0, 'mind': 1.0, 'with': 2.0}
Word element => {'again': 1.0, 'buy': 1.0, 'd': 1.0, 'i': 1.0, 't': 1.0, 'wet': 1.0, 'clothes': 1.0, 'so': 1.0, 'under': 1.0, 'very': 1.0, 'don': 1.0, 'thin': 2.0, 'job': 1.0, 'get': 2.0, 'side': 1.0, 'fabric': 1.0, 'layer': 1.0, 'with': 1.0, 'the': 1.0, 'done': 1.0, 'but': 1.0, 'plastic': 1.0}
Word element => {'nice': 1.0, 'want': 1.0, 'if': 1.0, 'for': 1.0, 'pay': 1.0, 'it': 1.0, 'only': 1.0, 'i': 1.0, 'cheap': 1.0, 'guess': 1.0, 'serves': 1.0, 'smaller': 1.0, 'what': 1.0, 'carters': 1.0, 'than': 1.0, 'use': 1.0, 'at': 1.0, 'looking': 1.0, 'home': 1.0, 'purpose': 1.0, 'its': 1.0, 'quality': 1.0, 'but': 1.0, 'will': 1.0, 'u': 3.0, 'them': 1.0, 'expected': 1.0, 'though': 1.0, 'and': 1.0, 'get': 2.0}
Word element => {'future': 1.0, 'products': 1.0, 'of': 1.0, 'these': 1.0, 'in': 1.0, 'for': 1.0, 'apply': 1.0, 'i': 1.0, 'much': 1.0, 'on': 1.0, 'time': 1.0, 'thanks': 1.0, 'same': 1.0, 'all': 1.0, 'expected': 1.0, 'was': 2.0, 'll': 1.0, 'the': 1.0, 'that': 1.0, 'type': 1.0, 'and': 1.0, 'quality': 1.0}
Word element => {'in': 1.0, 'posted': 1.0, 'bibs': 1.0, 'wasn': 1.0, 'of': 2.0, 'as': 1.0, 'because': 1.0, 'the': 3.0, 't': 1.0, 'sayings': 1.0, 'bought': 1.0, 'i': 1.0, 'picture': 1.0, 'shown': 1.0, 'sad': 1.0, 'to': 1.0, 'here': 1.0, 'receiving': 1.0, 'designs': 1.0, 'say': 1.0, 'after': 1.0, 'this': 2.0, 'it': 2.0, 'that': 1.0, 'were': 1.0}
Word element => {'on': 1.0, 'animals': 1.0, 'little': 1.0, 'the': 1.0, 'love': 1.0, 'great': 2.0, 'nice': 1.0, 'bib': 1.0, 'each': 1.0, 'dry': 1.0, 'and': 2.0, 'plastic': 1.0, 'babys': 1.0, 'colors': 1.0, 'clothes': 1.0, 'soft': 1.0, 'also': 1.0, 'keep': 1.0, 'big': 1.0, 'has': 1.0, 'backing': 1.0, 'product': 1.0, 'to': 1.0}
Word element => {'match': 1.0, 'to': 1.0, 'babys': 1.0, 'colors': 1.0, 'outfit': 1.0, 'different': 1.0, 'in': 1.0, 'easy': 1.0, 'my': 1.0, 'are': 1.0, 'i': 1.0, 'love': 1.0, 'it': 1.0, 'bibs': 1.0, 'cute': 1.0, 'thats': 1.0, 'comes': 1.0, 'washes': 1.0, 'very': 2.0, 'and': 1.0}
Word element => {'lol': 1.0, 'bibs': 1.0, 'like': 1.0, 'piece': 1.0, 'with': 1.0, 'looks': 1.0, 'it': 1.0, 'thin': 1.0, 'now': 1.0, 'off': 1.0, 'good': 1.0, 'pay': 1.0, 'cut': 1.0, 'terrycloth': 1.0, 'dryer': 1.0, 'had': 1.0, 'what': 1.0, 'deal': 1.0, 'the': 5.0, 'melted': 1.0, 'price': 1.0, 'onto': 1.0, 'to': 1.0, 'all': 1.0, 'bad': 1.0, 'itself': 1.0, 'in': 1.0, 'i': 3.0, 'am': 1.0, 'you': 3.0, 'a': 2.0, 's': 1.0, 'left': 1.0, 'get': 1.0, 'and': 1.0, 'for': 2.0, 'one': 1.0, 'star': 1.0, 'because': 1.0, 'not': 1.0, 'but': 1.0, 'can': 1.0, 'use': 1.0, 'backing': 2.0, 'them': 1.0, 'of': 2.0, 'once': 1.0, 'gave': 1.0, 'that': 1.0}
Word element => {'hours': 1.0, 'few': 1.0, 'bibs': 1.0, '3': 1.0, 'through': 1.0, 'will': 1.0, 'off': 1.0, 'pay': 1.0, 'm': 1.0, 'my': 1.0, 'are': 2.0, 'care': 1.0, 'i': 3.0, 'old': 1.0, 'sending': 1.0, 'did': 1.0, 'great': 1.0, 'these': 1.0, 'go': 1.0, 'a': 3.0, 't': 1.0, 'job': 1.0, 'the': 1.0, 'high': 1.0, 'were': 1.0, 'not': 3.0, 'okay': 1.0, 'in': 1.0, 'resistant': 1.0, 'find': 1.0, 'expectations': 1.0, 'for': 2.0, 'they': 2.0, 'so': 1.0, '6': 1.0, 'to': 2.0, 'machine': 1.0, 'daycare': 1.0, 'what': 1.0, 'don': 1.0, 'them': 1.0, 'much': 1.0, 'happens': 1.0, 'do': 1.0, 'too': 1.0, 'and': 2.0, 'but': 1.0, 'thin': 1.0, 'super': 1.0, 'would': 1.0, 'water': 1.0, 'she': 1.0, 'say': 1.0, 'is': 1.0, 'drool': 1.0}
Word element => {'life': 1.0, 'and': 1.0, 'eater': 1.0, 'messy': 1.0, 'is': 1.0, 'son': 1.0, 'my': 1.0, 'clothes': 1.0, 's': 1.0, 'child': 1.0, 'through': 1.0, 'doesn': 1.0, 'back': 1.0, 'plastic': 1.0, 'your': 1.0, 'has': 1.0, 'onto': 1.0, 'be': 1.0, 'much': 1.0, 'expected': 1.0, 'soak': 1.0, 'now': 1.0, 'to': 1.0, 'was': 2.0, 'extra': 1.0, 'i': 4.0, 'saver': 1.0, 'better': 1.0, 't': 1.0, 'the': 2.0, 'great': 1.0, 'these': 2.0, 'than': 1.0, 'were': 1.0, 'thought': 1.0, 'use': 2.0, 'so': 2.0, 'it': 4.0, 'this': 1.0, 'some': 1.0, 'primarily': 1.0, 'could': 1.0, 'bibs': 3.0, 'price': 1.0, 'since': 1.0, 'a': 3.0, 'are': 1.0}
Word element => {'week': 1.0, 'here': 1.0, 'will': 1.0, 'who': 1.0, 'this': 1.0, 'grandson': 1.0, 'be': 1.0, 'first': 1.0, 'my': 1.0, 'the': 1.0, 'are': 1.0, 'so': 1.0, 'bibs': 1.0, 'cute': 1.0, 'and': 1.0, 'bought': 1.0, 'we': 1.0, 'these': 1.0, 'durable': 1.0, 'for': 1.0}
Word element => {'of': 1.0, 'times': 1.0, '40': 1.0, 'after': 1.0, 'same': 1.0, 'colors': 1.0, 'pocket': 1.0, 'its': 1.0, 'tiny': 1.0, '1': 1.0, 'and': 4.0, 'use': 2.0, 'purchased': 1.0, 'for': 1.0, 'wash': 1.0, 'home': 1.0, 'easy': 2.0, 'i': 1.0, 'it': 2.0, 'usually': 1.0, 'including': 1.0, 'frequently': 1.0, 'bag': 1.0, 'need': 1.0, 'one': 1.0, 'months': 1.0, 'daycare': 1.0, 'the': 5.0, 'these': 1.0, 'at': 1.0, 'bib': 1.0, 'used': 1.0, 'set': 1.0, 'still': 1.0, 'fold': 1.0, '8': 1.0, 'have': 1.0, 'bid': 1.0, 'is': 2.0, 'something': 1.0, 'each': 2.0, 'quite': 1.0, 'fabric': 1.0, 'good': 1.0, 'or': 1.0, 'machine': 1.0, 'ago': 1.0, 'a': 1.0, 'number': 1.0, 'meal': 1.0, 'by': 2.0, 'useful': 1.0, 'are': 2.0, 'in': 3.0, 'resistant': 1.0, 'hand': 1.0, 'put': 1.0, 'as': 2.0, 'to': 4.0, 'any': 1.0}
Word element => {'while': 1.0, 'play': 1.0, 'kid': 1.0, 'block': 1.0, 't': 1.0, 'wouldn': 1.0, 'looking': 1.0, 'suggest': 1.0, 'would': 1.0, 'kept': 1.0, 'during': 1.0, 'they': 5.0, 'hours': 1.0, 'two': 1.0, 'material': 2.0, 'bibs': 6.0, 'these': 2.0, 'some': 1.0, 'arms': 1.0, 'anyone': 1.0, 'and': 2.0, 'small': 1.0, 'a': 3.0, 'but': 1.0, 'food': 1.0, 'four': 1.0, 'started': 1.0, 'them': 2.0, 'it': 3.0, 'with': 1.0, 'for': 5.0, 'when': 2.0, 'feeling': 1.0, 'line': 1.0, 's': 3.0, 'heavily': 1.0, 'fine': 1.0, 'are': 2.0, 'absorbant': 1.0, 'out': 1.0, 'towel': 1.0, 'of': 2.0, 'the': 6.0, 'great': 1.0, 'big': 1.0, 'backing': 1.0, 'plastic': 1.0, 'he': 1.0, 'size': 1.0, 'three': 3.0, 'at': 1.0, 'cheap': 1.0, 'like': 1.0, 'my': 1.0, 'can': 1.0, 'so': 2.0, 'time': 1.0, 'very': 3.0, 'worked': 1.0, 'son': 1.0, 'every': 1.0, 'still': 3.0, 'difficult': 1.0, 'themselves': 1.0, 'clothes': 1.0, 'was': 2.0, 'to': 7.0, 'as': 4.0, 'drool': 2.0, 'switching': 1.0, 'months': 2.0, 'around': 1.0, 'his': 2.0, 'mostly': 1.0, 'before': 1.0, 'not': 2.0, 'dry': 1.0, 'had': 1.0, 'issues': 1.0, 'neck': 1.0, 'seams': 1.0, 'easily': 1.0, 'that': 2.0, 'got': 2.0, 'older': 1.0, 'tried': 1.0, 'smaller': 1.0, 'use': 1.0, 'other': 1.0, 'were': 1.0, 'stuck': 1.0, 'in': 1.0, 'your': 1.0, 'stood': 1.0, 'clean': 1.0, 'made': 2.0, 'which': 1.0, 'good': 1.0, 'eating': 1.0, 'last': 1.0, 'durable': 1.0, 'i': 3.0, 'well': 1.0, 'only': 1.0, 'up': 1.0, 'few': 1.0, 'washings': 1.0, 'came': 1.0, 'apart': 1.0, 'price': 1.0, 'did': 1.0}
Word element => {'well': 1.0, 'neck': 1.0, 'fit': 1.0, 'dont': 1.0, 'for': 1.0, 'smaller': 1.0, 'however': 1.0, 'around': 1.0, 'big': 1.0, 'the': 1.0, 'are': 1.0, 'these': 1.0, 'they': 2.0, 'babies': 1.0, 'nice': 1.0, 're': 1.0, 'very': 1.0, 'and': 2.0, 'waterproof': 1.0, 'bibs': 1.0, 'cute': 1.0}
Word element => {'enough': 1.0, 'best': 1.0, 'to': 1.0, 'much': 1.0, 'perfectly': 1.0, 'it': 3.0, 'for': 1.0, 'love': 1.0, 'have': 1.0, 'survived': 1.0, 'good': 2.0, 'washed': 1.0, 'drools': 1.0, 'they': 1.0, 'options': 1.0, 'so': 1.0, 'a': 1.0, 'since': 1.0, 'but': 1.0, 'quality': 1.0, 'my': 1.0, 'the': 2.0, 'price': 1.0, 'baby': 1.0, 'many': 1.0, 'is': 1.0, 'not': 1.0}
Word element => {'item': 1.0, 'one': 1.0, 'to': 1.0, 'has': 1.0, 'he': 2.0, 'and': 1.0, 'spitter': 1.0, 'happy': 1.0, 'of': 1.0, 'that': 1.0, 'needing': 2.0, 'were': 2.0, 'most': 1.0, 'either': 1.0, 'are': 2.0, 'what': 1.0, 'just': 1.0, 'resistant': 1.0, 'like': 1.0, 'bibs': 2.0, 'we': 3.0, 'would': 1.0, 'exactly': 1.0, 'than': 1.0, 'water': 1.0, 'have': 2.0, 'a': 2.0, 'more': 1.0, 'the': 3.0, 'these': 2.0, 't': 1.0, 'heavy': 1.0, 'but': 1.0, 'backing': 1.0, 'wear': 1.0, 'surface': 1.0, 'or': 1.0, 'didn': 1.0, 'absorb': 1.0}
Word element => {'change': 1.0, 'will': 1.0, 'have': 2.0, 'u': 2.0, 'if': 1.0, 'so': 1.0, 'fyi': 1.0, 'by': 1.0, 'then': 2.0, 'washing': 2.0, 'baby': 1.0, 'them': 5.0, 'started': 1.0, 'was': 1.0, 'thin': 1.0, 'now': 1.0, 'smelled': 1.0, 'dry': 1.0, 'they': 4.0, 'letting': 1.0, 'and': 4.0, 'i': 3.0, 'tried': 1.0, 'my': 1.0, 'these': 1.0, 'a': 2.0, 'ago': 1.0, 't': 2.0, 'great': 1.0, 'the': 1.0, 'it': 1.0, 'month': 1.0, 'messy': 1.0, '9': 1.0, 'bibs': 2.0, 'are': 2.0, 'bought': 1.0, 'months': 1.0, 'several': 1.0, 'actually': 2.0, 'for': 2.0, 'themselves': 1.0, 'well': 1.0, 'funny': 2.0, 'lot': 1.0, 'since': 1.0, 'smell': 1.0, 'had': 1.0, 'drying': 1.0, 'after': 1.0, 'haven': 2.0, 'tearing': 1.0, 'price': 1.0, 'to': 2.0, 'any': 1.0, 'old': 1.0, 'problems': 1.0, 'with': 1.0, 'or': 1.0, 'anything': 1.0}
Word element => {'dsnt': 1.0, 'better': 1.0, 'son': 1.0, 'big': 1.0, 'its': 1.0, 'it': 1.0, 'n': 2.0, 'for': 1.0, 'food': 1.0, 'been': 1.0, 'dont': 1.0, 'choke': 1.0, 'i': 1.0, 'or': 2.0, 'looking': 1.0, 'wha': 1.0, 'that': 2.0, 'wet': 1.0, 'stained': 1.0, 'is': 1.0, 'my': 2.0, 'clothes': 1.0, 'way': 2.0, 'bib': 1.0, 'sons': 1.0, 'get': 1.0, 'ny': 1.0, 'his': 1.0, 'drinks': 1.0, 'just': 1.0, 'perfect': 1.0}
Word element => {'10': 1.0, 'pack': 1.0, 'to': 1.0, 'delighted': 1.0, 'was': 1.0, 'so': 1.0, 'you': 1.0, 'they': 1.0, 'can': 1.0, 'have': 1.0, 'enough': 1.0, 'baby': 1.0, 'bibs': 1.0, 'i': 1.0, 'when': 1.0, 'the': 1.0, 'find': 1.0, 'start': 1.0, 'never': 1.0, 'teething': 1.0}
Word element => {'perfect': 1.0}
Word element => {'cutie': 1.0, 'soooo': 1.0, 'are': 1.0, 'so': 1.0, 'it': 1.0, 'just': 1.0, 'be': 1.0, 'droolers': 1.0, 'plastic': 1.0, 'perfect': 1.0, 'wash': 1.0, 'true': 1.0, 'colors': 1.0, 'don': 1.0, 'machine': 1.0, 'its': 2.0, 'as': 1.0, 'bib': 1.0, 't': 1.0, 'the': 1.0, 'get': 1.0, 'deformed': 1.0, 'i': 1.0, 'mine': 1.0, 'for': 1.0, 'one': 1.0, 'accidentally': 1.0, 'warned': 1.0, 'will': 1.0, 'put': 1.0, 'on': 1.0}
Word element => {'lengthwise': 1.0, 'were': 1.0, 'however': 1.0, 'bib': 1.0, 'standard': 1.0, 'these': 1.0, 'they': 1.0, 'thought': 1.0, 'this': 1.0, 'would': 1.0, 'not': 1.0, 'i': 2.0, 'expect': 1.0, 'did': 1.0, 'bibs': 1.0, 'to': 1.0, 'be': 2.0, 'size': 1.0, 'so': 1.0, 'the': 1.0, 'small': 2.0}
Word element => {'keeping': 1.0, 'their': 1.0, 'whatever': 1.0, 'joke': 1.0, 'words': 1.0, 'toad': 1.0, 't': 1.0, 'doesn': 1.0, 'awesome': 1.0, 'if': 1.0, 'serve': 1.0, 'got': 1.0, 'each': 1.0, 'just': 1.0, 'following': 1.0, 'through': 2.0, 'toadally': 1.0, 'smaller': 1.0, 'back': 1.0, 'plastic': 1.0, '6': 1.0, 'rather': 1.0, 'weight': 1.0, 'have': 2.0, 'of': 3.0, 'the': 11.0, 'these': 4.0, 'some': 1.0, 'both': 1.0, 'i': 5.0, 'cloth': 1.0, 'old': 3.0, 'laundry': 1.0, 'footsteps': 1.0, 'boys': 1.0, 'are': 5.0, 'my': 6.0, 'tight': 1.0, 'day': 1.0, 'bibs': 2.0, 'in': 3.0, 'going': 1.0, 'a': 3.0, 's': 1.0, 'kids': 1.0, 'been': 1.0, 'that': 2.0, 'drooling': 1.0, 'they': 2.0, 'lacking': 1.0, 'since': 1.0, 'keep': 2.0, 'and': 3.0, 'was': 1.0, '3': 1.0, 'on': 3.0, 'months': 1.0, 'too': 1.0, 'one': 1.0, 'than': 2.0, 'nine': 1.0, 'light': 1.0, 'says': 1.0, 'month': 1.0, 'it': 2.0, 'snug': 1.0, 'is': 1.0, 'finish': 1.0, 'his': 1.0, 'around': 1.0, 'so': 1.0, 'droolers': 1.0, 'can': 1.0, 'but': 3.0, 'past': 1.0, 'do': 1.0, 'think': 1.0, 'pack': 1.0, 'anything': 1.0, 'to': 2.0, 'all': 1.0, 'help': 1.0, 'with': 1.0, 'store': 1.0, 'kiddos': 1.0, 'shirts': 1.0, 'dry': 3.0, 'will': 1.0, '12': 1.0, 'purchased': 1.0, 'two': 3.0, 'little': 2.0, 'ok': 2.0, 'neck': 1.0, 'year': 1.0, 'commented': 1.0, 'region': 1.0, 'purpose': 1.0, 'from': 1.0, 'designs': 1.0, 'those': 1.0, 'were': 1.0, 'big': 1.0, 'he': 1.0, 'snugness': 1.0, 'helps': 1.0, 'has': 1.0, 'always': 1.0, 'them': 1.0, 'side': 1.0, 'good': 1.0}
Word element => {'looking': 1.0, 'was': 1.0, 'appear': 1.0, 'what': 1.0, 'however': 1.0, 'action': 1.0, 'for': 1.0, 'in': 1.0, 'while': 1.0, 'i': 3.0, 'expecting': 1.0, 'm': 1.0, 'exactly': 1.0, 'be': 1.0, 'to': 1.0, 'still': 1.0, 'out': 1.0, 'they': 1.0, 'haven': 1.0, 'this': 1.0, 't': 1.0, 'tried': 1.0, 'yet': 1.0}
Word element => {'job': 1.0, 'fun': 1.0, 'are': 1.0, 'them': 1.0, 'on': 1.0, 'sayings': 1.0, 'so': 1.0, 'got': 1.0, 'they': 3.0, 'the': 2.0, 'these': 1.0, 'a': 1.0, 'done': 1.0, 'get': 1.0, 'and': 2.0, 're': 2.0, 'my': 1.0, 'for': 1.0, 'messy': 1.0, 'awesome': 1.0, 'which': 1.0, 'cheap': 1.0, 'i': 1.0, 'eater': 1.0, 'extremely': 1.0, 'have': 1.0, 'is': 1.0, 'plus': 1.0, 'you': 1.0, 'when': 1.0, 'kids': 1.0, '3': 1.0}
Word element => {'ll': 1.0, 'them': 1.0, 'issue': 1.0, 'melting': 1.0, 'experience': 1.0, 'say': 1.0, 'sure': 1.0, 'fine': 2.0, 'why': 1.0, 'just': 2.0, 'fit': 1.0, '18': 1.0, 'son': 1.0, 'also': 1.0, 'your': 1.0, 'on': 1.0, 'keeping': 1.0, 'time': 1.0, 'hard': 1.0, 'if': 1.0, 'buying': 1.0, 'be': 2.0, 'bib': 2.0, 'stars': 1.0, 'melted': 1.0, 'and': 6.0, 'do': 2.0, 'design': 1.0, 'reason': 1.0, 'sewn': 1.0, 'their': 2.0, 'shortcuts': 1.0, 'about': 2.0, 'despite': 1.0, 'dorky': 1.0, 'months': 1.0, 'get': 1.0, 'found': 1.0, 'this': 2.0, 'noting': 1.0, 'when': 1.0, 'you': 5.0, 'again': 1.0, 'lbs': 1.0, 'was': 2.0, 'function': 1.0, 'set': 2.0, 'faucet': 1.0, 'they': 4.0, 'vinyl': 2.0, 'large': 1.0, 'between': 1.0, 'accidentally': 1.0, 'so': 4.0, 'a': 4.0, 'go': 1.0, 'days': 1.0, 'waterproof': 1.0, 'less': 1.0, 'change': 1.0, 'most': 1.0, 'but': 4.0, 'little': 1.0, 'two': 1.0, 'month': 1.0, 'him': 2.0, 'it': 2.0, 're': 1.0, 'my': 3.0, 'considering': 1.0, 'more': 2.0, 'is': 5.0, 'warned': 1.0, 'all': 1.0, 'shortcut': 1.0, 'other': 2.0, 'are': 3.0, 'inexpensive': 1.0, 'old': 1.0, 'drools': 1.0, 'for': 3.0, 'reviewers': 1.0, 'expensive': 1.0, 'his': 2.0, 'than': 2.0, 'find': 1.0, 'rather': 1.0, 'care': 1.0, 'cheap': 2.0, 'like': 2.0, 'kind': 1.0, 'bibs': 3.0, 'fare': 1.0, 'those': 1.0, 'though': 1.0, 'diaper': 1.0, 'as': 1.0, 'preemie': 1.0, 'to': 1.0, 'of': 4.0, 'the': 8.0, 'that': 2.0, 'thrilled': 1.0, 'layer': 1.0, 'cloth': 1.0, 'sized': 1.0, 'layers': 1.0, 'm': 1.0, 'in': 2.0, 'dry': 3.0, 'not': 5.0, 'itself': 1.0, 'will': 1.0, 'ten': 1.0, 'ones': 1.0, 'one': 3.0, 'price': 2.0, 'have': 2.0, 'dryer': 1.0, '4': 3.0, 'misshapen': 1.0, 'expect': 1.0, 'let': 1.0, 'these': 2.0, 'through': 1.0, 'keep': 1.0, 'did': 1.0, 'i': 7.0, 'well': 1.0, 'air': 1.0, 'worth': 2.0, 'now': 1.0}
Word element => {'definitely': 1.0, 'will': 1.0, 'teething': 2.0, 'a': 1.0, 'go': 1.0, 'baby': 1.0, 'clean': 1.0, 'get': 1.0, 'and': 3.0, 'very': 2.0, 'dry': 1.0, 'on': 1.0, 'with': 2.0, 'kept': 1.0, 'meals': 1.0, 'good': 1.0, 'my': 1.0, 'shirts': 1.0, 'drool': 1.0, 'were': 1.0, 'their': 1.0, 'more': 1.0, 'the': 1.0, 'heavy': 1.0, 'babies': 1.0, 'kids': 1.0, 'when': 1.0}
Word element => {'you': 2.0, 'sure': 1.0, 'good': 1.0, 'quality': 1.0, 'and': 1.0, 'they': 1.0, 'make': 1.0, 'the': 2.0, 'laundry': 1.0, 'them': 2.0, 'close': 1.0, 'don': 1.0, 'though': 1.0, 'design': 2.0, 'in': 1.0, 'when': 1.0, 'picture': 1.0, 't': 1.0, 'have': 1.0}
Word element => {'mom': 1.0, 'one': 1.0, 'for': 1.0, 'size': 1.0, 'and': 2.0, 'a': 2.0, 'the': 2.0, 'were': 1.0, 'great': 2.0, 'little': 2.0, 'is': 1.0, 'animals': 1.0, 'gift': 1.0, 'this': 1.0, 'soooooo': 1.0, 'cute': 1.0}
Word element => {'colors': 1.0, 'seep': 1.0, 'these': 1.0, 'the': 2.0, 'are': 3.0, 'food': 1.0, 'drink': 1.0, 'adorable': 1.0, 'through': 1.0, 'to': 1.0, 'pictures': 1.0, 'bright': 1.0, 'cute': 1.0, 't': 1.0, 'super': 1.0, 'allow': 1.0, 'and': 2.0, 'don': 1.0}
Word element => {'price': 1.0, 'worth': 1.0, 'long': 1.0, 'very': 1.0, 'neck': 1.0, 'i': 1.0, 'doesn': 1.0, 'but': 1.0, 'has': 1.0, 'last': 1.0, 'recommend': 1.0, 'around': 1.0, 'material': 1.0, 'rough': 1.0, 'a': 1.0, 'towel': 1.0, 'not': 2.0, 'because': 1.0, 't': 1.0, 'great': 1.0, 'the': 3.0, 'is': 1.0, 'do': 1.0, 'and': 1.0, 'it': 1.0, 'this': 1.0, 'velcro': 1.0, 'that': 1.0, 'concept': 1.0, 'you': 1.0, 'goes': 1.0}
Word element => {'to': 1.0, 'closure': 1.0, 'loved': 1.0, 'it': 2.0, 'velcro': 1.0, 'highly': 1.0, 'of': 1.0, 'recommend': 1.0, 'a': 2.0, 'use': 1.0, 'easy': 1.0, 'instead': 1.0, 'all': 1.0, 'tie': 1.0, 'parents': 1.0, 'for': 1.0, 'had': 1.0, 'wish': 1.0}
Word element => {'baby': 1.0, 'top': 1.0, 'thick': 1.0, 'by': 1.0, 'one': 1.0, 'returning': 1.0, 'after': 1.0, 'own': 1.0, 'made': 1.0, 'actually': 1.0, 'stick': 1.0, 'fabric': 1.0, 'load': 1.0, 'other': 1.0, 'attaching': 1.0, 'to': 2.0, 'any': 1.0, 'my': 1.0, 'destroying': 1.0, 'works': 1.0, 'risk': 1.0, 'carrying': 1.0, 'sense': 1.0, 'would': 1.0, 'great': 1.0, 'pulled': 3.0, 'and': 3.0, 'not': 2.0, 'in': 2.0, 'opened': 1.0, 'velcro': 5.0, 'band': 1.0, 'it': 4.0, 'hooded': 1.0, 'terry': 1.0, 'with': 1.0, 'this': 3.0, 'duty': 1.0, 'off': 1.0, 'or': 2.0, 'worth': 1.0, 'machine': 1.0, 'i': 3.0, 'more': 1.0, 'is': 3.0, 'time': 1.0, 'onto': 1.0, 'be': 1.0, 'towel': 6.0, 'out': 1.0, 'make': 1.0, 'washed': 1.0, 'of': 5.0, 'loops': 1.0, 'when': 1.0, 'wrecked': 1.0, 'that': 1.0, 'concept': 1.0, 'wonderful': 1.0, 'money': 1.0, 'but': 1.0, 'washing': 1.0, 'answer': 1.0, 'stuck': 1.0, 'first': 1.0, 'heavy': 1.0, 'snaps': 1.0, 'without': 1.0, 'the': 16.0, 'stretchy': 2.0, 'a': 3.0, 's': 1.0, 'could': 2.0, 'head': 1.0, 'item': 1.0, 'knit': 2.0, 'wash': 1.0, 'over': 1.0, 'adult': 1.0}
Word element => {'recommend': 1.0, 'i': 1.0, 'bathtime': 1.0, 'made': 1.0, 'seems': 1.0, 'not': 1.0, 'a': 1.0, 'chest': 1.0, 'done': 1.0, 'getting': 2.0, 'keeps': 1.0, 'are': 1.0, 'drenched': 1.0, 'quickly': 1.0, 'as': 3.0, 'dry': 2.0, 'this': 2.0, 'scoop': 1.0, 'it': 2.0, 'easier': 1.0, 'well': 1.0, 'apron': 3.0, 'is': 2.0, 'highly': 1.0, 'really': 1.0, 'new': 1.0, 'you': 3.0, 'for': 1.0, 'just': 1.0, 'warm': 1.0, 'handy': 1.0, 'and': 7.0, 'moms': 1.0, 'can': 1.0, 'the': 3.0, 'without': 1.0, 'him': 1.0, 'out': 1.0, 'baby': 1.0, 'them': 1.0, 'easy': 1.0, 'get': 1.0, 'towel': 1.0, 'of': 1.0, 'fold': 1.0, 'your': 1.0, 'bath': 1.0, 'onto': 1.0, 'over': 1.0, 'his': 1.0, 'much': 1.0, 'yourself': 1.0, 'squirmy': 1.0, 'slippery': 1.0, 'back': 1.0, 're': 1.0, 'babies': 1.0, 'into': 1.0, 'hooded': 1.0}
Word element => {'in': 1.0, 'and': 1.0, 'getting': 1.0, 'wet': 1.0, 'mom': 1.0, 'when': 2.0, 'a': 2.0, 'protect': 1.0, 'is': 2.0, 'doubling': 1.0, 'from': 2.0, 'intends': 1.0, 'which': 1.0, 'transitional': 1.0, 'this': 2.0, 'it': 3.0, 'do': 1.0, 'only': 1.0, 'velcro': 1.0, 'i': 3.0, 'does': 1.0, 'even': 1.0, 'hair': 1.0, 'apron': 1.0, '95': 1.0, 'for': 1.0, 'love': 1.0, 'bed': 1.0, 'as': 1.0, 'to': 4.0, 'towel': 1.0, 'baby': 1.0, '12': 1.0, 'what': 1.0, 'ponytail': 1.0, '2011': 1.0, 'may': 1.0, 'my': 2.0, 'perfectly': 1.0, 'complaint': 1.0, 'that': 1.0, 'the': 1.0, 'carrying': 1.0, 'ouch': 1.0, 'always': 1.0, 'up': 1.0, 'sticks': 1.0, 'have': 1.0, 'bath': 1.0, 'on': 1.0, 'bought': 1.0, 'also': 1.0, 'item': 1.0}
Word element => {'i': 3.0, 'original': 1.0, 'disgusting': 1.0, 'was': 2.0, 'had': 1.0, 'wanted': 1.0, 'bassinet': 1.0, 'pretty': 1.0, 'to': 2.0, 'our': 1.0, 'the': 3.0, 'family': 1.0, 'my': 1.0, 'cradle': 2.0, 'thicker': 1.0, 'years': 1.0, 'one': 1.0, 'daughter': 1.0, 'in': 1.0, 'also': 1.0, 'that': 1.0, 'been': 1.0, 'little': 1.0, 'very': 1.0, 'it': 2.0, 'restoration': 1.0, 'with': 1.0, 'mattress': 1.0, 'perfect': 1.0, 'this': 1.0, 'found': 1.0, 'which': 1.0, 'excited': 1.0, 'nice': 1.0, 'for': 2.0, 'fit': 1.0, 'a': 4.0, 's': 1.0, 'quality': 1.0, 'find': 1.0, 'than': 1.0, 'some': 1.0, 'paired': 1.0, 'so': 1.0, 'sheet': 1.0, 'on': 1.0, 'use': 1.0, 'amazon': 1.0}
Word element => {'recommend': 1.0, 'thick': 1.0, 'inches': 1.0, 's': 1.0, 'in': 1.0, 'worried': 1.0, 'fit': 1.0, 'going': 1.0, 'definitely': 1.0, '30': 1.0, 'a': 1.0, 'not': 1.0, 'to': 1.0, 'was': 2.0, 'old': 1.0, 'i': 2.0, 'but': 1.0, 'fits': 1.0, 'this': 1.0, 'advertised': 1.0, 'it': 2.0, 'and': 1.0, 'perfectly': 1.0, '2': 1.0, 'the': 1.0, 'bassinet': 1.0, 'are': 1.0, 'dimensions': 1.0, 'year': 1.0, 'as': 1.0}
Word element => {'serviceable': 1.0, 'is': 2.0, 'overall': 1.0, 'cradle': 1.0, 'somewhat': 1.0, 'antique': 1.0, 'for': 1.0, 'purchased': 1.0, 'kind': 1.0, 'mattress': 1.0, 'dimensions': 1.0, 'uncommon': 1.0, 'i': 1.0, 'of': 1.0, 'completely': 1.0, 'thin': 1.0, 'but': 1.0, 'fits': 1.0, 'with': 1.0, 'this': 1.0, 'it': 1.0, 'the': 1.0, 'great': 1.0, 'and': 1.0}
Word element => {'previous': 1.0, 'size': 1.0, 'mattress': 1.0, 'm': 1.0, 'fit': 1.0, 'receive': 1.0, 'people': 1.0, 'really': 1.0, 'comments': 1.0, 'bassinet': 1.0, 'i': 2.0, 'expect': 1.0, 'happy': 1.0, 'my': 1.0, 'that': 1.0, 'awesome': 1.0, 'baby': 1.0, 'price': 1.0, 'this': 2.0, 'with': 1.0, 'it': 1.0, 'to': 1.0, 'was': 1.0, 'better': 1.0, 'than': 1.0, 'from': 1.0}
Word element => {'baby': 1.0, 'my': 1.0, 'padded': 1.0, 'comfortably': 1.0, 'soft': 1.0, 'perfectly': 1.0, 'davinci': 1.0, 'for': 1.0, 'in': 1.0, 'handle': 1.0, 'futura': 1.0, 'and': 2.0, 'enough': 1.0, 'cradle': 1.0, 'sleep': 1.0, 'fits': 1.0, 'easy': 1.0, 'to': 2.0}
Word element => {'warmth': 1.0, 'softness': 1.0, 'add': 1.0, 'cover': 1.0, 'waterproof': 1.0, 'did': 1.0, 'fits': 1.0, 'price': 1.0, 'firm': 1.0, 'baby': 1.0, 'time': 1.0, 'cradle': 2.0, 'am': 1.0, 'thickness': 1.0, 'short': 1.0, 'great': 1.0, 'the': 3.0, 'enough': 1.0, 'fit': 1.0, 'i': 2.0, 'purchase': 1.0, 'use': 1.0, 'a': 3.0, 'is': 2.0, 'comfortable': 1.0, 'for': 3.0, 'mattress': 3.0, 'my': 1.0, 'happy': 1.0, 'and': 3.0, 'this': 2.0, 'with': 1.0, 'durable': 1.0, 'it': 2.0, 'in': 1.0, 'perfect': 1.0, 'seems': 2.0, 'to': 2.0}
Word element => {'fits': 1.0, 'perfectly': 1.0, 'it': 1.0, 'first': 1.0, 'child': 1.0, 'her': 1.0, 'expecting': 1.0, 'who': 1.0, 'this': 1.0, 'description': 1.0, 'is': 2.0, 'a': 2.0, 'that': 2.0, 'nice': 1.0, 'mattress': 1.0, 'daughter': 1.0, 'for': 2.0, 'i': 2.0, 'bought': 1.0, 'cradle': 1.0, 'the': 1.0, 'my': 1.0, 'made': 1.0}
Word element => {'cradle': 1.0, 'onto': 1.0, 'is': 1.0, 'just': 1.0, 'right': 1.0, 'mattress': 1.0, 'crib': 1.0, 'for': 1.0, 'the': 2.0, 'my': 1.0, 'baby': 1.0, 'perfectly': 1.0, 'it': 1.0, 'this': 1.0, 'fit': 1.0}
Word element => {'thickness': 1.0, 'also': 1.0, 'perfect': 1.0, 'the': 2.0, 'that': 1.0, 'an': 1.0, 'satisified': 1.0, 'a': 2.0, 'daughter': 1.0, 'cradle': 3.0, 'right': 1.0, 'looking': 1.0, 'old': 1.0, 'i': 3.0, 'mattress': 1.0, 'used': 1.0, 'very': 1.0, 'as': 1.0, 'was': 3.0, 'wanted': 1.0, 'and': 2.0, 'wooden': 1.0, 'years': 1.0, 'baby': 1.0, 'for': 3.0, '26': 1.0, 'my': 2.0, 'grandchild': 1.0, 'ago': 1.0, 'fit': 1.0, 'new': 1.0, 'this': 1.0, 'it': 1.0}
Word element => {'uncle': 1.0, 'cradle': 1.0, 'perfectly': 1.0, 'worked': 1.0, 'this': 1.0, 'thick': 1.0, 'was': 1.0, 'i': 1.0, 'for': 1.0, 'had': 1.0, '2': 1.0, 'time': 1.0, 'mattress': 1.0, 'a': 1.0, 'that': 1.0, 'hard': 1.0, 'right': 1.0, 'made': 1.0, 'my': 1.0, 'the': 2.0, 'find': 1.0, 'sized': 1.0}
Word element => {'fine': 1.0, 'in': 1.0, 'crammed': 1.0, 'thought': 1.0, 'first': 1.0, 'at': 1.0, 'snugly': 1.0, 'very': 1.0, 'fit': 1.0, 'also': 1.0, 'filthy': 1.0, 'expect': 1.0, 'used': 2.0, 'we': 1.0, 't': 1.0, 'a': 2.0, 'big': 1.0, 'pulled': 1.0, 'd': 1.0, 'if': 1.0, 'did': 1.0, 'husband': 1.0, 'was': 2.0, 'wipe': 1.0, 'buying': 1.0, 'into': 1.0, 'box': 1.0, 'like': 1.0, 'fits': 1.0, 'my': 1.0, 'the': 2.0, 'side': 1.0, 'got': 1.0, 'arrive': 1.0, 'looks': 1.0, 'it': 9.0, 'just': 2.0, 'mattress': 1.0, 'this': 1.0, 'walked': 1.0, 'today': 1.0, 'too': 1.0, 'and': 3.0, 'i': 4.0, 'asked': 1.0, 'on': 2.0, 'of': 1.0, 'there': 2.0, 'does': 1.0, 'clorox': 1.0, 'off': 1.0, 'has': 1.0, 'out': 1.0, 'shoe': 1.0, 'to': 1.0, 'as': 1.0, 'print': 1.0, 'bought': 1.0, 'one': 1.0, 'cradle': 1.0, 'wipes': 1.0, 'but': 2.0, 'something': 1.0, 'new': 1.0, 'easily': 1.0, 'when': 2.0, 'someone': 1.0, 'you': 1.0, 'don': 1.0}
Word element => {'recommend': 1.0, 'definitely': 1.0, 'would': 1.0, 'accident': 1.0, 'an': 1.0, 'of': 1.0, 'in': 1.0, 'like': 1.0, 'covered': 1.0, 'support': 1.0, 'great': 1.0, 'we': 2.0, 'cradle': 2.0, 'case': 1.0, 'material': 1.0, 'bought': 1.0, 'for': 2.0, 'mattress': 1.0, 'decent': 1.0, 'got': 1.0, 'that': 1.0, 'a': 5.0, 'is': 2.0, 'really': 1.0, 'provides': 1.0, 'at': 1.0, 'yard': 1.0, 'with': 1.0, 'this': 2.0, 'sale': 1.0, 'it': 2.0, 'vinyl': 1.0, 'and': 2.0, 'perfectly': 1.0, 'fits': 1.0, 's': 1.0, 'pretty': 1.0, 'thick': 1.0}
Word element => {'sheet': 1.0, 'fitted': 1.0, 'this': 1.0, 'with': 1.0, 'happy': 1.0, 'am': 1.0, 'all': 1.0, 'finished': 1.0, 'for': 1.0, 'priced': 1.0, 'and': 1.0, 'edges': 1.0, 'i': 1.0, 'fancy': 1.0, 'over': 2.0, 'nothing': 1.0, 'a': 2.0, 'little': 1.0, 'aren': 1.0, 'just': 1.0, 'quality': 1.0, 'elastic': 1.0, 'but': 1.0, 'quickly': 1.0, 'nicely': 1.0, 'the': 2.0, 't': 1.0, 'sewn': 1.0, 'onto': 1.0, 'strip': 1.0, 'of': 1.0}
Word element => {'on': 1.0, 'problem': 1.0, 'set': 1.0, 'no': 1.0, 'girls': 1.0, 'great': 1.0, 'mattress': 1.0, 'fitting': 1.0, 'nice': 1.0, 'my': 2.0, 'perfect': 1.0, 'woven': 1.0, 'cradle': 1.0, 'fabric': 1.0, 'color': 1.0, 'crib': 1.0, 'for': 1.0, 'sheet': 1.0, 'soft': 1.0, 'sweet': 1.0}
Word element => {'collecion': 1.0, 'bedding': 1.0, 'basket': 1.0, 'is': 1.0, 'nice': 1.0, 'size': 1.0, 'diapers': 1.0, 'nicely': 1.0, 'and': 2.0, 'wipes': 1.0, 'box': 1.0, 'for': 1.0, 'durable': 1.0, 'matches': 1.0}
Word element => {'trip': 1.0, 'more': 1.0, 'handle': 1.0, 'this': 1.0, 'expect': 1.0, 'of': 1.0, 'out': 1.0, 'trips': 1.0, 'bag': 1.0, 'diaper': 1.0, 'have': 1.0, 'anything': 1.0, 'town': 1.0, 'do': 1.0, 'much': 1.0, 'not': 1.0, 'well': 1.0, 'everything': 1.0, 'than': 1.0, 'because': 1.0, 'find': 1.0, 'pacifiers': 1.0, 'just': 1.0, 'few': 1.0, 'wallets': 1.0, 'to': 3.0, 'our': 2.0, 'happy': 1.0, 'my': 1.0, 'purchase': 1.0, 'pad': 1.0, 'extra': 2.0, 'both': 1.0, 't': 1.0, 'a': 3.0, 'we': 5.0, 's': 2.0, 'cloth': 2.0, 'pouches': 1.0, 'with': 1.0, 'so': 1.0, 'organized': 1.0, 'and': 3.0, 'room': 2.0, 'fit': 1.0, 'for': 3.0, 'easily': 2.0, 'keys': 1.0, 'husband': 1.0, 'blanket': 1.0, 'are': 2.0, 'changing': 1.0, 'park': 1.0, 'no': 1.0, 'x': 1.0, 'wouldn': 1.0, 'diapers': 1.0, 'guy': 1.0, 'stuff': 1.0, 'put': 1.0, 'wipes': 1.0, 'solution': 1.0, 'bottles': 1.0, 'hide': 1.0, 'can': 1.0, '2': 1.0, 'the': 2.0, 'etc': 2.0, 'i': 2.0, 'two': 1.0, '4': 1.0, 'oz': 1.0, 'onesie': 1.0, 'wipe': 1.0, 'baby': 1.0, 'larger': 1.0, 'there': 2.0, 'burp': 1.0, 'in': 1.0, 'front': 1.0, 'very': 1.0, 'little': 2.0}
Word element => {'black': 1.0, 'just': 1.0, 'diaper': 1.0, 'cute': 2.0, 'still': 2.0, 'its': 1.0, 'own': 1.0, 'backpack': 1.0, 'get': 1.0, 'mine': 1.0, 'like': 1.0, 'hand': 1.0, 'out': 1.0, 'ones': 1.0, 'liked': 1.0, 'he': 2.0, 'him': 1.0, 'husband': 1.0, 'said': 2.0, 'carrying': 1.0, 'mind': 1.0, 'wouldnt': 1.0, 'looks': 1.0, 'she': 2.0, 'it': 6.0, 'this': 4.0, 'first': 1.0, 'can': 1.0, 'work': 1.0, 'but': 2.0, 'emblem': 1.0, 'tons': 1.0, 'little': 3.0, 'of': 3.0, 'asked': 1.0, 'is': 1.0, 'around': 1.0, 'to': 4.0, 'bag': 1.0, 'wanted': 1.0, 'something': 1.0, 'cart': 1.0, 'on': 1.0, 'stuff': 1.0, 'your': 2.0, 'has': 2.0, 'wanting': 1.0, 'you': 1.0, 'when': 1.0, 'pak': 1.0, 'my': 1.0, 'pretty': 1.0, 'so': 2.0, 'small': 1.0, 'if': 2.0, 'everything': 1.0, 'one': 2.0, 'for': 2.0, 'wont': 1.0, 'a': 4.0, 'pockets': 1.0, 'i': 2.0, 'the': 2.0, 'showed': 1.0, 'straps': 1.0, 'are': 1.0, 'nice': 1.0, 'and': 5.0, 'man': 1.0, 'give': 1.0, 'not': 2.0, 'lot': 1.0, 'flimsy': 1.0, 'that': 1.0, 'gave': 1.0, 'took': 1.0, 'niece': 1.0, 'her': 3.0, 'quality': 1.0, 'baby': 3.0, 'them': 1.0}
Word element => {'quick': 1.0, 'enough': 1.0, 'soft': 1.0, 'plenty': 1.0, 'with': 1.0, 'fill': 1.0, 'you': 1.0, 'case': 2.0, 'wipes': 2.0, 'compact': 1.0, 'pad': 2.0, 'free': 1.0, 'best': 1.0, 'airplane': 1.0, 'might': 1.0, 'thinking': 1.0, 'are': 1.0, 'everyday': 2.0, 'really': 1.0, 'down': 1.0, 'hanging': 1.0, 'strap': 1.0, 'less': 1.0, 'make': 1.0, 'edges': 1.0, 'burned': 1.0, 'they': 1.0, 'cut': 1.0, 'black': 1.0, 'dots': 1.0, 'polka': 1.0, 'threw': 1.0, 'last': 1.0, 'mind': 1.0, 'straps': 1.0, 'says': 1.0, 'mini': 1.0, 'on': 1.0, 'funny': 1.0, 'does': 1.0, 'especially': 1.0, 'where': 1.0, 'side': 2.0, 'despite': 1.0, 'about': 1.0, 'shoulder': 1.0, 'but': 3.0, 'most': 1.0, 'back': 2.0, 'for': 9.0, 'expensive': 2.0, 't': 1.0, 'fit': 1.0, 'solid': 1.0, 'he': 2.0, 'love': 2.0, 'snacks': 2.0, 'toys': 1.0, 'started': 1.0, 'when': 1.0, 'to': 6.0, 'since': 1.0, '1': 2.0, 'trip': 2.0, 'and': 12.0, 'york': 1.0, 'carried': 2.0, 'stuff': 4.0, 'clothes': 1.0, 'was': 5.0, 'changes': 1.0, 'more': 1.0, 'husband': 2.0, 'issue': 1.0, 'can': 3.0, 'so': 2.0, 'a': 5.0, 'year': 1.0, 'describe': 1.0, 'from': 2.0, 'expletives': 1.0, 'videos': 1.0, 'got': 1.0, 'using': 1.0, 'bag': 8.0, 'need': 2.0, 'old': 1.0, 'took': 1.0, 'la': 1.0, 'i': 6.0, 'traveled': 1.0, 'it': 11.0, 'little': 1.0, 'two': 2.0, 'showing': 1.0, 'search': 1.0, 'bigger': 1.0, 'stay': 1.0, 'diaper': 6.0, 'of': 3.0, 'the': 18.0, 'end': 1.0, 'changing': 2.0, 'put': 2.0, 'much': 2.0, 'pack': 2.0, 'my': 3.0, 'minutes': 1.0, 'another': 1.0, 'because': 2.0, 'compartments': 1.0, 'that': 3.0, 'material': 1.0, 'backpack': 3.0, 'found': 2.0, 'few': 1.0, 'this': 4.0, 'an': 1.0, 'happy': 1.0, 'one': 2.0, 'september': 1.0, 'huge': 1.0, 'home': 1.0, 'by': 2.0, 'dads': 1.0, 'new': 1.0, 'time': 1.0, 'main': 1.0, 'convinced': 1.0, 'doesn': 1.0, 'youtube': 1.0, 'our': 4.0, 'how': 1.0, 'm': 1.0, 'in': 5.0, 'remember': 1.0, 'have': 3.0, 'had': 2.0, 'weeks': 1.0, 'now': 1.0, 'holds': 1.0, 'look': 1.0, 'is': 5.0, 'next': 1.0, 'has': 1.0, '2': 1.0, 'killing': 1.0, 'fresh': 1.0, 'compartment': 1.0, 'front': 1.0, 'finding': 1.0, 'only': 1.0, 'quickly': 1.0, 'moving': 1.0, 'we': 10.0, 'take': 1.0, 'will': 1.0}
Word element => {'recommended': 1.0, 'is': 1.0, 'how': 1.0, 'always': 1.0, 'mom': 1.0, 'everyone': 1.0, 'me': 1.0, 'and': 2.0, 'for': 1.0, 'considered': 1.0, 'loved': 1.0, 'got': 1.0, 'used': 1.0, 'can': 1.0, 'space': 1.0, 'shower': 1.0, 'it': 3.0, 'nicer': 1.0, 'are': 1.0, 'great': 1.0, 'the': 2.0, 'useful': 1.0, 'person': 1.0, 'much': 1.0, 'be': 1.0, 'in': 1.0, 'highly': 1.0, 'baby': 1.0, 'colors': 1.0, 'gift': 1.0, 'unisex': 1.0, 'tells': 1.0, 'must': 1.0, 'very': 1.0, 'as': 1.0, 'have': 1.0, 'savy': 1.0, 'i': 1.0, 'a': 2.0}
Word element => {'customers': 1.0, 'trick': 1.0, 'what': 2.0, 'no': 1.0, 'there': 1.0, 'of': 2.0, 'in': 1.0, 'also': 1.0, 'pockets': 4.0, 'this': 1.0, 'with': 1.0, 'come': 1.0, 'bag': 1.0, 'outer': 1.0, 'it': 1.0, 'looks': 1.0, 'say': 1.0, 'is': 2.0, 'side': 1.0, 'great': 1.0, 'the': 8.0, 'diaper': 1.0, 'just': 1.0, 'not': 1.0, 'to': 1.0, 'as': 3.0, 'all': 1.0, 'back': 1.0, 'i': 1.0, 'stated': 3.0, 'so': 1.0, 'bit': 1.0, 'advertising': 1.0, 'does': 1.0, 'front': 1.0, 'description': 1.0, 'and': 5.0, 'get': 2.0, 'you': 2.0, 't': 2.0, 'a': 1.0, 's': 1.0, 'don': 2.0, 'free': 1.0, 'box': 1.0, 'actually': 1.0, 'product': 1.0, 'inner': 1.0, 'disposal': 1.0, 'bags': 1.0, 'think': 1.0, 'but': 1.0, 'false': 1.0}
Word element => {'bulky': 1.0, 'not': 1.0, 'her': 2.0, 'child': 1.0, 'was': 1.0, 'my': 1.0, 'purchased': 1.0, 'for': 2.0, 'first': 1.0, 'this': 2.0, 'loves': 1.0, 'bag': 1.0, 'who': 1.0, 'i': 1.0, 'expecting': 1.0, 'she': 1.0, 'baby': 1.0, 'large': 1.0, 'niece': 1.0, 's': 1.0, 'enough': 1.0, 'all': 1.0, 'but': 1.0, 'of': 1.0, 'needs': 1.0}
Word element => {'sent': 1.0, 'around': 1.0, 'like': 1.0, 'nylon': 1.0, 'inner': 2.0, 'things': 1.0, 'two': 2.0, 'stated': 1.0, 'as': 1.0, 'have': 1.0, 'description': 1.0, 'not': 1.0, 'did': 1.0, 'drawback': 1.0, 'bag': 2.0, 'exterior': 1.0, 'only': 1.0, 'this': 1.0, 'it': 3.0, 'be': 1.0, 'would': 1.0, 'since': 1.0, 'a': 1.0, 't': 1.0, 'interior': 1.0, 'great': 1.0, 'the': 7.0, 'liked': 1.0, 'for': 1.0, 'was': 2.0, 'had': 1.0, 'size': 1.0, 'good': 1.0, 'don': 1.0, 'mesh': 1.0, 'any': 1.0, 'money': 1.0, 'colors': 1.0, 'and': 1.0, 'i': 4.0, 'pockets': 4.0, 'back': 1.0, 'inside': 1.0, 'floating': 1.0, 'fact': 1.0, 'thought': 1.0, 'that': 2.0}
Word element => {'to': 1.0, 'pink': 1.0, 'husband': 1.0, 'dark': 1.0, 'of': 1.0, 'after': 1.0, 'bother': 1.0, 'them': 1.0, 'never': 1.0, 'pockets': 1.0, 'are': 1.0, 'there': 1.0, 'year': 1.0, 'makes': 1.0, 'brand': 1.0, 'old': 2.0, 'that': 1.0, 'been': 1.0, 'me': 2.0, 'up': 1.0, 'child': 1.0, 'out': 1.0, 'doesnt': 1.0, 'handles': 1.0, '3rd': 1.0, 'dirt': 1.0, 'being': 2.0, 'through': 1.0, 'enough': 1.0, 'purchased': 1.0, 'use': 3.0, 'new': 1.0, 've': 1.0, 'brown': 1.0, 'in': 1.0, 'doesn': 1.0, 'was': 1.0, 'is': 1.0, 'trust': 1.0, 'interior': 1.0, 'best': 1.0, 'great': 1.0, 'nice': 2.0, 'big': 1.0, 'owned': 1.0, 'my': 2.0, 'diaper': 1.0, 'love': 1.0, 'closure': 1.0, 'for': 4.0, '4': 1.0, 'i': 6.0, 'this': 2.0, 'looks': 1.0, 'month': 1.0, 'it': 5.0, 'bag': 2.0, 'zipper': 1.0, 'have': 2.0, 'pack': 1.0, 'so': 3.0, 'day': 1.0, 'ever': 1.0, 'no': 1.0, 'several': 2.0, 'bags': 1.0, 'still': 2.0, 'plenty': 1.0, 'the': 4.0, 'without': 2.0, 'girly': 2.0, 'but': 1.0, 'can': 1.0, 'show': 1.0, '7': 1.0, 'and': 5.0, 'too': 2.0, 'an': 1.0, 'color': 1.0, 'months': 1.0, 'huge': 1.0, 'entire': 1.0, 'carry': 1.0, 'everyday': 2.0, 'room': 1.0, 't': 1.0, 's': 1.0, 'a': 1.0}
Word element => {'done': 2.0, 'enough': 1.0, 'dumb': 1.0, 'm': 1.0, 'make': 1.0, '3': 2.0, 'on': 2.0, 'nice': 1.0, 'and': 3.0, 'wipes': 2.0, 'worth': 3.0, 'or': 1.0, 'free': 1.0, 'project': 1.0, 'pop': 1.0, 'than': 1.0, 'nothing': 1.0, 'glue': 2.0, 'martha': 1.0, 'was': 1.0, 'knew': 1.0, 'some': 1.0, 'if': 1.0, 'use': 2.0, 'amazon': 1.0, '5': 1.0, 'store': 1.0, 'market': 1.0, 'more': 2.0, 'would': 2.0, 'huggies': 1.0, 'however': 1.0, 'simply': 1.0, 'my': 1.0, 'family': 1.0, 'brand': 1.0, 'to': 2.0, 'job': 1.0, 'you': 3.0, 'times': 1.0, 'a': 8.0, 'go': 1.0, 't': 1.0, '30': 2.0, 'it': 3.0, 'with': 1.0, '00': 5.0, 'can': 1.0, 'but': 2.0, 'item': 1.0, 'seriously': 1.0, 'onto': 1.0, 'fabric': 1.0, '10': 1.0, 'for': 1.0, 'ed': 1.0, 'pay': 1.0, 'stamped': 1.0, 'glued': 1.0, 'bottom': 1.0, 'well': 2.0, 'i': 6.0, 'this': 2.0, 'thrifty': 1.0, 'cloth': 1.0, 'steward': 1.0, 'the': 4.0, 'of': 3.0, 'crafts': 1.0, 'container': 2.0, 'see': 1.0, 'own': 1.0, 'ms': 2.0, 'lid': 1.0, 'angie': 2.0, '1': 1.0, 'since': 1.0, 'is': 2.0, 'at': 2.0, 'just': 1.0, 'holds': 1.0, 'hope': 1.0, 'got': 1.0, 'requested': 1.0, 'as': 1.0, 'leave': 1.0, 'review': 1.0, 'expected': 1.0, 'here': 1.0, 'be': 1.0, 'quality': 1.0, 'up': 1.0, 'after': 1.0, 'isn': 1.0, 'homeless': 1.0, 'anything': 1.0, 'good': 1.0, 'side': 1.0, 'gift': 1.0, 'from': 1.0, 'very': 1.0, 'flea': 1.0, 'mom': 1.0}
Word element => {'much': 1.0, 'deal': 1.0, 'quickly': 1.0, 'though': 1.0, 'said': 1.0, 'complaints': 1.0, 'alleviate': 1.0, 'extra': 1.0, 'crotch': 1.0, 'between': 1.0, 'swap': 2.0, 'easily': 2.0, 'does': 1.0, 'similar': 1.0, 'store': 1.0, 'could': 3.0, 'part': 1.0, 'being': 1.0, 'table': 1.0, 'accessory': 1.0, 'an': 2.0, 'd': 1.0, 'improvements': 1.0, 'sure': 1.0, 'make': 2.0, 'due': 1.0, 'earlier': 1.0, 'pull': 1.0, 'their': 1.0, 'climbed': 1.0, 'kids': 1.0, 'high': 1.0, 'to': 21.0, 'wiping': 2.0, 'were': 1.0, 'run': 2.0, 'dirty': 1.0, 'minimalistic': 1.0, 'or': 1.0, 'clip': 1.0, 'cost': 1.0, 't': 5.0, 'a': 15.0, 'changed': 1.0, 'sink': 1.0, 'mutsy': 1.0, 'cleaning': 2.0, 'kitchen': 1.0, 'other': 2.0, 'bugged': 1.0, 'eliminated': 1.0, 'hate': 1.0, 'suspect': 1.0, 'easy': 4.0, 'familiar': 1.0, 'than': 1.0, 'quick': 3.0, 'bit': 1.0, 'chair': 3.0, 'from': 3.0, 'now': 2.0, 'older': 1.0, 'piece': 1.0, 'useless': 1.0, '3': 2.0, 'true': 1.0, 'll': 2.0, 'toothbrush': 4.0, 'joints': 2.0, 'even': 2.0, 'of': 9.0, 'no': 2.0, 'easier': 1.0, 'both': 1.0, 'people': 2.0, 'what': 2.0, 'when': 3.0, 'had': 1.0, 'would': 1.0, 'bar': 5.0, 'on': 4.0, 'update': 1.0, 'connected': 1.0, 'child': 3.0, 'sticking': 1.0, 'adding': 1.0, 'will': 2.0, 'i': 20.0, 'footprint': 1.0, 'trays': 1.0, 'give': 1.0, 'food': 3.0, 'hang': 1.0, 'there': 1.0, 'not': 3.0, 'can': 3.0, 'is': 6.0, 'have': 5.0, 'found': 1.0, 'bead': 1.0, 'at': 3.0, 'wipe': 1.0, 'out': 7.0, 'clean': 3.0, 'stokke': 1.0, 'size': 3.0, 'may': 1.0, 'difficulty': 1.0, 'are': 1.0, 'my': 4.0, 'me': 2.0, 'crevices': 1.0, 'away': 1.0, 'themselves': 1.0, 'that': 6.0, 'silicone': 1.0, 'stubbed': 1.0, 'used': 4.0, 'decided': 1.0, 'use': 1.0, 'decent': 1.0, 'trip': 1.0, 'anyone': 1.0, 'do': 5.0, 'while': 1.0, 'clipped': 1.0, 'tools': 1.0, 've': 2.0, 'in': 6.0, 's': 1.0, 'm': 2.0, 'seat': 4.0, 'know': 1.0, 're': 1.0, 'get': 3.0, 'back': 4.0, 'unoccupied': 1.0, 'model': 1.0, 'with': 6.0, 'this': 4.0, 'few': 1.0, 'without': 1.0, 'works': 1.0, 'love': 1.0, 'huge': 1.0, 'all': 1.0, 'way': 1.0, 'tray': 11.0, 'grade': 1.0, 'around': 4.0, 'breaker': 1.0, 'wasn': 1.0, 'like': 2.0, 'as': 6.0, 'comparable': 1.0, 'over': 3.0, 'clear': 1.0, 'which': 1.0, 'stay': 1.0, 'toes': 1.0, 'bucks': 1.0, 'really': 1.0, 'apply': 1.0, 'gets': 1.0, 'under': 1.0, 'chairs': 2.0, 'was': 2.0, 'difficult': 1.0, 'strap': 2.0, 'look': 1.0, 'built': 1.0, 'own': 1.0, 'it': 7.0, 'be': 4.0, 'install': 1.0, 'sized': 1.0, 'up': 1.0, 'owned': 1.0, 'you': 2.0, 'bolts': 1.0, 'others': 1.0, 'points': 1.0, 'take': 1.0, 'legs': 1.0, 'only': 1.0, 'then': 1.0, 'whip': 1.0, 'we': 2.0, 'into': 1.0, 'considering': 1.0, 'should': 2.0, 'seconds': 1.0, 'tilt': 1.0, 'for': 5.0, 'tube': 1.0, 'and': 26.0, 'just': 3.0, 'eliminate': 1.0, 'how': 2.0, 'years': 1.0, 'our': 2.0, 'worked': 1.0, 'having': 1.0, 'need': 2.0, 'sitting': 1.0, 'harness': 5.0, 'reviewer': 1.0, 'don': 3.0, 'adjust': 1.0, 'shoulder': 2.0, 'find': 1.0, 'if': 5.0, 'great': 1.0, 'throw': 1.0, 'us': 1.0, 'point': 2.0, 'feature': 1.0, 'couple': 2.0, 'started': 1.0, 'entire': 1.0, 'straps': 4.0, 'first': 1.0, '2': 1.0, 'going': 1.0, 'so': 7.0, 'cut': 1.0, 'let': 1.0, 'they': 2.0, 'them': 3.0, 'off': 2.0, 'until': 2.0, 'instead': 2.0, 'waist': 1.0, 'one': 1.0, 'got': 1.0, 'keep': 1.0, 'bib': 1.0, 'did': 1.0, 'time': 1.0, 'top': 1.0, 'choking': 1.0, 'hazard': 1.0, 'open': 1.0, 'reducer': 4.0, 'ago': 1.0, 'won': 1.0, 'about': 1.0, 'age': 1.0, 'svan': 6.0, 'review': 1.0, 'climbing': 1.0, 'exist': 1.0, 'the': 45.0, 'experience': 1.0, 'last': 1.0}
Word element => {'snuggly': 1.0, 'pretty': 1.0, 'pillow': 1.0, 'gender': 1.0, 'price': 1.0, 'fits': 2.0, 'the': 3.0, 'product': 1.0, 'well': 1.0, 'for': 1.0, 'color': 1.0, 'it': 1.0, 'great': 2.0, 'love': 1.0, 'either': 1.0}
Word element => {'easy': 1.0, 'a': 1.0, 'great': 1.0, 'backup': 1.0, 'catastrophes': 1.0, 'perfect': 1.0, 'cover': 1.0, 'on': 1.0, 'months': 1.0, 'never': 1.0, 'few': 1.0, 'little': 2.0, 'baby': 1.0, 'and': 2.0, 'necessary': 1.0, 'absolutely': 1.0, 'put': 1.0, 'an': 1.0, 'to': 2.0, 'practice': 1.0, 'fit': 1.0, 'slipcover': 1.0, 'those': 1.0, 'extra': 1.0, 'for': 2.0, 'is': 3.0, 'you': 1.0, 'what': 1.0, 'that': 1.0, 'know': 1.0, 'bodily': 1.0, 'going': 1.0, 'fluid': 1.0, 'of': 1.0, 'with': 1.0, 'this': 1.0, 'first': 1.0, 'come': 1.0, 'out': 1.0}
Word element => {'didn': 1.0, 'even': 2.0, 'faded': 1.0, 't': 2.0, 'haven': 1.0, 'great': 1.0, 'wash': 1.0, 'accidentally': 1.0, 'they': 1.0, 'designs': 1.0, 'and': 4.0, 'slipcover': 2.0, 'additional': 1.0, 'compares': 1.0, 'dryer': 1.0, 'have': 2.0, 'to': 3.0, 'all': 1.0, 'other': 1.0, 'extra': 1.0, 'i': 6.0, 'or': 1.0, 'bottles': 1.0, 'exclusively': 1.0, 'my': 1.0, 'in': 2.0, 'pacifiers': 1.0, 'it': 4.0, 'with': 1.0, 'come': 1.0, 'absolutely': 1.0, 'ordered': 1.0, 'cute': 1.0, 'using': 1.0, 'product': 1.0, 'love': 2.0, 'for': 2.0, 'no': 2.0, 'breastfeeding': 1.0, 'been': 1.0, '2': 1.0, 'more': 1.0, 'the': 2.0, 'one': 2.0, 'months': 1.0, 'needs': 1.0, 'so': 2.0, 'far': 1.0, 'many': 1.0, 'pillow': 1.0, 'friend': 1.0, 'an': 2.0, 'shrink': 1.0, 'am': 2.0, 'when': 1.0, 'brest': 1.0, 'on': 1.0, 'put': 2.0, 'washed': 1.0}
Word element => {'very': 1.0, 'worked': 1.0, 'this': 1.0, 'use': 1.0, 'in': 1.0, 'brest': 1.0, 'is': 1.0, 'years': 1.0, 'about': 1.0, 'friend': 1.0, 'backup': 1.0, 'washed': 1.0, '2': 1.0, 'the': 2.0, 'ago': 1.0, 'my': 1.0, 'and': 1.0, 'just': 1.0, 'while': 1.0, 'needed': 1.0, 'so': 1.0, 'well': 1.0, 'a': 1.0, 'one': 1.0, 'can': 1.0, 'bought': 1.0, 'be': 1.0, 'we': 1.0, 'other': 1.0}
Word element => {'fabric': 1.0, 'thick': 1.0, 'pretty': 1.0, 'cute': 1.0, 'i': 1.0, 'very': 1.0, 'up': 1.0, 'washes': 1.0, 'and': 1.0, 'not': 1.0, 'are': 1.0, 'the': 1.0, 'is': 1.0, 'colors': 2.0, 'cover': 1.0, 'this': 1.0, 'wish': 1.0, 'in': 1.0, 'they': 1.0, 'were': 1.0, 'after': 1.0, 'bolder': 1.0, 'holds': 1.0, 'bright': 1.0, 'well': 1.0, 'several': 1.0}
Word element => {'too': 1.0, 'at': 1.0, 'staring': 1.0, 'baby': 1.0, 'design': 1.0, 'pretty': 1.0, 'a': 1.0, 'very': 1.0, 'and': 2.0, 'nothing': 1.0, 'loves': 1.0, 'except': 1.0, 'much': 1.0, 'to': 1.0, 'that': 1.0, 'my': 1.0, 'the': 1.0, 'fits': 1.0, 'is': 1.0, 'add': 1.0, 'pillow': 1.0, 'it': 2.0, 'great': 1.0}
Word element => {'getting': 1.0, 'to': 1.0, 'well': 1.0, 'held': 1.0, 'slipcover': 1.0, 'i': 1.0, 'used': 1.0, 'washed': 1.0, 'two': 1.0, 'this': 1.0, 'pillow': 1.0, 'of': 1.0, 'up': 1.0, 'nursing': 1.0, 'the': 1.0, 'my': 1.0, 'style': 1.0, 'last': 1.0, 'children': 1.0, 'for': 1.0}
Word element => {'far': 1.0, 'held': 1.0, 'better': 2.0, 'is': 1.0, 'has': 1.0, 'time': 1.0, 'same': 1.0, 'which': 1.0, 'purchased': 1.0, 'deluxe': 1.0, 'on': 1.0, 'very': 1.0, 'only': 1.0, 'and': 2.0, 'one': 1.0, 'i': 3.0, 'foam': 1.0, 'not': 1.0, 'so': 1.0, 'after': 1.0, 'was': 1.0, 'cover': 2.0, 'at': 1.0, 'fun': 1.0, 'quality': 2.0, 'zipper': 2.0, 'but': 1.0, 'made': 1.0, 'the': 6.0, 'pattern': 1.0, 'insert': 1.0, 'well': 1.0, 'bright': 1.0, 'in': 1.0, 'disappointed': 1.0, 'wash': 1.0, 'am': 1.0, 're': 1.0, 'up': 1.0, 'covering': 1.0, 'broke': 1.0}
Word element => {'price': 1.0, 'fantastic': 1.0, 'perfectly': 1.0, 'too': 1.0, 'friend': 1.0, 'i': 1.0, 'breast': 1.0, 'very': 1.0, 'm': 1.0, 'happy': 2.0, 'pillow': 1.0, 'with': 2.0, 'this': 2.0, 'product': 2.0, 'design': 1.0, 'lovely': 1.0, 'fits': 1.0, 'my': 1.0, 'the': 1.0}
Word element => {'happen': 1.0, 'that': 1.0, 'reason': 1.0, 'so': 1.0, 'not': 1.0, 'and': 1.0, 'care': 1.0, 'weeks': 1.0, 'no': 1.0, 'two': 1.0, 'developed': 1.0, 'face': 1.0, 'less': 1.0, 'than': 1.0, 'directions': 1.0, 'for': 2.0, 'was': 2.0, 'to': 2.0, 'had': 2.0, 'it': 3.0, 'i': 2.0, 'the': 3.0, '2': 1.0, 'holes': 1.0, 'roughly': 1.0, 'on': 2.0, 'pillow': 1.0, 'used': 1.0, 'before': 1.0, 'part': 1.0, 'lays': 1.0, 'there': 1.0, 'washed': 1.0, 'of': 1.0, 'baby': 1.0, 'cover': 1.0, 'according': 1.0}
Word element => {'beginning': 1.0, 'hours': 1.0, 'every': 1.0, 'feeding': 1.0, 'feed': 1.0, 'still': 1.0, 'other': 1.0, 'not': 1.0, 'rags': 1.0, 'are': 1.0, 'burps': 1.0, 'up': 1.0, 'in': 1.0, 'wash': 1.0, 'spitting': 1.0, 'enough': 1.0, 'learning': 1.0, 'it': 1.0, 'can': 2.0, 'big': 1.0, 'as': 2.0, 'cover': 2.0, 'that': 1.0, 'have': 1.0, 'to': 1.0, 'am': 1.0, 'so': 1.0, 'between': 1.0, 'i': 1.0, 'you': 1.0, 's': 1.0, 'go': 1.0, 'milk': 1.0, 'breast': 1.0, 'everywhere': 1.0, 'and': 2.0, 'me': 1.0, 'is': 1.0, 'apparently': 1.0, 'leaking': 1.0, '2': 1.0, 'great': 1.0, 'the': 3.0, 'another': 1.0, 'baby': 1.0}
Word element => {'was': 1.0, 'spit': 1.0, 'picture': 1.0, 'or': 1.0, 'accidents': 1.0, 'of': 1.0, 'spills': 1.0, 'case': 1.0, 'nice': 1.0, 'great': 1.0, 'slip': 1.0, 'cover': 1.0, 'in': 1.0, 'up': 1.0, 'very': 1.0, 'to': 2.0, 'true': 1.0, 'have': 1.0, 'color': 1.0, 'two': 1.0, 'hand': 1.0, 'on': 1.0}
Word element => {'price': 1.0, 'though': 1.0, 'usable': 1.0, 'still': 1.0, 's': 1.0, 'foam': 1.0, 'of': 1.0, 'for': 2.0, 'very': 1.0, 'as': 3.0, 'spare': 1.0, 'is': 2.0, 'cover': 2.0, 'fit': 1.0, 'my': 1.0, 'made': 1.0, 'the': 6.0, 'pillow': 2.0, 'bought': 1.0, 'fabric': 1.0, 'i': 1.0, 'this': 1.0, 'it': 2.0, 'okay': 1.0, 'outline': 1.0, 'not': 2.0, 'a': 1.0, 'well': 2.0, 'original': 1.0, 'seams': 1.0, 'and': 2.0, 'do': 1.0, 'thinner': 1.0}
Word element => {'pretty': 1.0, 'colors': 1.0, 'amazing': 1.0, 'is': 1.0, 's': 1.0, 'my': 1.0, 'home': 1.0, 'great': 1.0, 'it': 1.0, 'we': 1.0, 've': 1.0, 'toy': 2.0, 'to': 1.0, 'daughter': 1.0, 'had': 1.0, 'for': 2.0, 'this': 1.0, 'and': 1.0, 'all': 1.0, 'me': 1.0, 'bring': 1.0}
Word element => {'again': 1.0, 'business': 1.0, 'of': 1.0, 'one': 1.0, 'i': 2.0, 'already': 1.0, 'described': 1.0, 'blankets': 2.0, 'as': 1.0, 'very': 2.0, 'were': 2.0, 'replacements': 1.0, 'these': 1.0, 'the': 1.0, 'identical': 1.0, 'shipment': 1.0, 'would': 1.0, 'rapid': 1.0, 'do': 1.0, 'and': 1.0, 'impressed': 1.0, 'happy': 1.0, 'be': 1.0, 'had': 1.0, 'was': 2.0, 'to': 1.0}
Word element => {'recommend': 1.0, 'item': 1.0, 'comfort': 1.0, 'infant': 1.0, 'an': 1.0, 'gave': 1.0, 'days': 1.0, 'cant': 1.0, 'immediately': 1.0, 'of': 1.0, 'was': 1.0, 'to': 2.0, 'under': 1.0, 'knows': 1.0, 'him': 2.0, 'exactly': 1.0, 'alternative': 1.0, 'as': 1.0, 'son': 1.0, 'a': 4.0, 'are': 2.0, 'shirts': 1.0, 'my': 1.0, 'time': 1.0, 'they': 2.0, 'our': 2.0, 'enough': 1.0, 'cumbersome': 1.0, 'we': 1.0, 'silkies': 1.0, 'loves': 1.0, 'the': 1.0, 'great': 1.0, 'blanket': 1.0, 'couple': 1.0, 'and': 3.0, 'this': 1.0, 'first': 1.0, 'it': 3.0, 'he': 1.0, 'before': 1.0, 'his': 1.0, 'what': 1.0, 'for': 4.0, 'wife': 1.0, 'wore': 1.0, 'i': 2.0}
Word element => {'blankets': 1.0, 'updated': 1.0, 'be': 1.0, 'smaller': 1.0, 'if': 1.0, 'towel': 1.0, 'kitchen': 1.0, 'size': 2.0, 'about': 1.0, 'probably': 1.0, 'small': 1.0, 'physical': 1.0, 'actually': 1.0, 'are': 3.0, 'they': 3.0, 'believe': 1.0, 'sized': 1.0, 'to': 2.0, 'normal': 1.0, 'was': 1.0, 'would': 1.0, 'a': 2.0, 'as': 3.0, 'assumed': 1.0, 'of': 2.0, 'there': 1.0, 'that': 2.0, 'blanket': 2.0, 'nothing': 1.0, 'with': 1.0, 'this': 1.0, 'it': 1.0, 'ordered': 1.0, 'i': 2.0, 'when': 1.0, 'picture': 1.0, 'not': 1.0, 'description': 2.0, 'needs': 1.0, 'in': 1.0, 'the': 7.0, 'is': 1.0, 'lead': 1.0, 'or': 1.0, 'someone': 1.0}
Word element => {'set': 1.0, 'ordered': 1.0, 'else': 1.0, 'anything': 1.0, 'chewing': 1.0, 'also': 1.0, 'teething': 1.0, 'holding': 1.0, 'won': 2.0, 'so': 1.0, 'edge': 1.0, 'each': 1.0, 'inches': 1.0, 'about': 1.0, '15': 1.0, 'who': 1.0, 'third': 1.0, 'update': 1.0, 'with': 2.0, 'bring': 1.0, 'sure': 1.0, 'easy': 1.0, 'size': 1.0, 'this': 1.0, 'perfect': 1.0, 'face': 2.0, 'sleeping': 1.0, 'hold': 1.0, 'his': 2.0, 'never': 1.0, 'pick': 1.0, 'be': 1.0, 'him': 2.0, 'love': 1.0, 'for': 1.0, 'uncovering': 1.0, 'enough': 2.0, 'too': 1.0, 'and': 4.0, 'of': 2.0, 'but': 1.0, 'blankets': 4.0, 'make': 1.0, 'portable': 1.0, 'on': 5.0, 'etc': 1.0, '4': 1.0, 'months': 2.0, 'still': 1.0, 'son': 2.0, 'hates': 1.0, 'now': 3.0, 'rub': 1.0, 'them': 1.0, 'tired': 1.0, 'old': 2.0, 'loves': 4.0, 'or': 1.0, 'these': 4.0, 'they': 4.0, 'have': 1.0, 'small': 2.0, 'my': 2.0, 'blanket': 2.0, 'are': 5.0, 'asleep': 1.0, 'the': 3.0, 'without': 3.0, 'himself': 1.0, 'go': 1.0, 'a': 1.0, 't': 3.0, 'we': 2.0, 'over': 1.0, 'up': 2.0, 'don': 1.0, 'our': 1.0, 'sleep': 1.0, 'to': 6.0, 'any': 1.0, 'bears': 1.0, 'he': 3.0, 'it': 1.0, 'chew': 1.0, 'having': 1.0, 'falling': 1.0, 'just': 3.0, 'by': 1.0, '11': 1.0, 'when': 2.0, 'is': 2.0}
Word element => {'highly': 1.0, 'other': 1.0, 'material': 1.0, 'on': 2.0, 'soft': 1.0, 'perfect': 1.0, 'size': 2.0, 'can': 1.0, 'silky': 1.0, 'that': 1.0, 'because': 1.0, 'not': 1.0, 'am': 1.0, 'expensive': 1.0, 'worried': 1.0, 'purchase': 1.0, 'have': 1.0, 'i': 2.0, 'one': 3.0, 'blanket': 1.0, 'velvet': 1.0, 'my': 1.0, 'little': 2.0, 'sleeps': 1.0, 'the': 1.0, 't': 1.0, 'more': 1.0, 'great': 1.0, 'a': 2.0, 'is': 3.0, 'bonding': 1.0, 'blankets': 1.0, 'and': 3.0, 'very': 1.0, 'breath': 1.0, 'comforting': 1.0, 'recommended': 1.0, 'better': 1.0, 'to': 1.0, 'it': 2.0, 'this': 2.0, 'with': 1.0, 'he': 2.0}
Word element => {'purchase': 1.0, 'been': 1.0, 'clear': 1.0, 'should': 1.0, 'have': 1.0, 'this': 1.0, 'terrible': 1.0, 'made': 1.0, 'the': 1.0, '2': 1.0, 'is': 1.0, 'a': 1.0, 'frame': 1.0, 'no': 1.0, 'larger': 1.0, 'to': 1.0, 'tiny': 1.0, 'emphatically': 1.0, 'than': 1.0, 'holds': 1.0, 'prior': 1.0, 'super': 1.0, 'photo': 1.0}
Word element => {'about': 1.0, 'camper': 1.0, 'a': 1.0, '15': 1.0, 'all': 1.0, 'me': 1.0, 'i': 1.0, '00': 1.0, 'can': 1.0, 'this': 1.0, 't': 1.0, 'believe': 1.0, 'that': 1.0, 'something': 1.0, 'so': 1.0, 'freaking': 1.0, 'small': 1.0, 'at': 1.0, 'not': 1.0, 'would': 1.0, 'happy': 1.0, 'almost': 1.0, 'cost': 1.0}
Word element => {'small': 1.0, 'the': 1.0, 'since': 1.0, 'it': 1.0, 'get': 1.0, 'fit': 1.0, 'this': 1.0, 'is': 2.0, 'frame': 1.0, 'so': 2.0, 'cut': 1.0, 'a': 1.0, 'down': 1.0, 'cute': 1.0, 'had': 1.0, 'to': 3.0, 'i': 1.0, 'picture': 1.0}
Word element => {'ref': 1.0, 'amazon': 1.0, 'title': 1.0, 'www': 1.0, 'see': 1.0, 'you': 1.0, 'rev': 1.0, 'purchased': 1.0, 'associated': 1.0, 'link': 1.0, 'duped': 1.0, 'there': 1.0, 'larger': 1.0, 'gp': 1.0, 'were': 1.0, 'just': 1.0, 'no': 1.0, 'thing': 1.0, 'little': 1.0, 'sweet': 1.0, 'with': 2.0, 'last': 1.0, 'wish': 1.0, 'this': 2.0, 'it': 6.0, 'been': 1.0, 'that': 1.0, 'frame': 4.0, 'now': 1.0, 'niece': 1.0, 'b0012q5f0q': 1.0, 'product': 1.0, 'com': 1.0, '5x7': 1.0, 'for': 1.0, 'one': 1.0, 'cr': 1.0, 'is': 5.0, 'really': 2.0, 'the': 5.0, 'mention': 1.0, 'feel': 1.0, 'great': 1.0, 'go': 1.0, 's': 2.0, 'a': 4.0, 'they': 1.0, 'cm': 1.0, 'should': 1.0, 'make': 1.0, 'prod': 1.0, 've': 1.0, 'something': 1.0, 'state': 1.0, 'its': 1.0, 'tiny': 1.0, 'much': 1.0, 'i': 8.0, 'guess': 1.0, 'can': 1.0, 'but': 1.0, 'was': 1.0, 'beautiful': 1.0, 'expecting': 1.0, 'size': 3.0, 'like': 2.0, 'and': 1.0, 'clearly': 1.0, 'of': 2.0, 'so': 1.0, 'smaller': 1.0, 'purchase': 1.0, 'my': 1.0, 'christmas': 1.0, 'ordered': 1.0, 'gorgeous': 1.0, 'to': 3.0, 'as': 2.0, 'present': 1.0, 'm': 1.0, 'embarrassed': 1.0, 'than': 1.0, 'because': 1.0, 'give': 1.0, 'http': 1.0, 'll': 1.0, 'have': 1.0}
Word element => {'since': 1.0, 'tried': 1.0, 'hasn': 1.0, 'still': 1.0, 'afterwards': 1.0, 'soon': 1.0, 'up': 1.0, 'closing': 1.0, 'kept': 1.0, 'them': 1.0, 'trying': 1.0, 't': 1.0, 'the': 1.0, 'great': 1.0, 'gave': 1.0, 'product': 1.0, 'opening': 1.0, 'right': 1.0, 'to': 1.0, 'stopped': 1.0, 'he': 1.0, 'this': 1.0, 'my': 1.0, 'doors': 1.0, 'and': 2.0, 'away': 1.0, 'from': 1.0, 'worked': 1.0, 'open': 1.0, 'toddler': 1.0, 'but': 1.0}
Word element => {'well': 1.0, 'actually': 1.0, 'have': 1.0, 'you': 1.0, 'pretty': 1.0, 'if': 1.0, 'it': 3.0, 'and': 1.0, 'like': 1.0, 'blends': 1.0, 'be': 1.0, 'installed': 1.0, 'to': 2.0, 'was': 1.0, 'after': 1.0, 'door': 1.0, 'looks': 1.0, 'relatively': 1.0, 'easy': 1.0, 'just': 1.0, 'even': 1.0, 'guard': 2.0, 'same': 1.0, 'picture': 1.0, 'off': 1.0, 'stays': 1.0, 'in': 1.0, 'numerous': 1.0, 'the': 4.0, 'pull': 1.0, 'my': 1.0, 'secured': 1.0, 'attempt': 1.0, 'from': 1.0, 'son': 1.0}
Word element => {'twins': 1.0, 'my': 1.0, 'off': 1.0, 'getting': 1.0, 'little': 1.0, 'have': 1.0, 'screws': 1.0, 'if': 1.0, 'dont': 1.0, 'simple': 1.0, 'something': 1.0, 'in': 1.0, 'worry': 1.0, 'like': 1.0, 'pinched': 1.0, 'rods': 1.0, 'looks': 1.0, 'welding': 1.0, 'square': 1.0, 'you': 1.0, 'worth': 1.0, 'fingers': 1.0, 'had': 1.0, 'to': 3.0, 'its': 1.0, 'about': 1.0, 'money': 1.0, 'skills': 1.0, 'two': 1.0, 'with': 2.0, 'the': 2.0, 'holes': 1.0, 'drills': 1.0, 'through': 1.0, 'make': 1.0, 'fit': 1.0}
Word element => {'long': 1.0, 'because': 1.0, 'there': 1.0, 'out': 1.0, 'other': 1.0, 'some': 1.0, 'up': 1.0, 'over': 1.0, 'really': 1.0, 'cleaning': 1.0, 'loveys': 1.0, 'got': 1.0, 'if': 1.0, 'one': 1.0, 'new': 1.0, 'ordering': 1.0, 'i': 3.0, 'for': 1.0, 'love': 1.0, 'of': 2.0, 'm': 1.0, 'years': 1.0, 'after': 1.0, 'show': 1.0, 'finally': 1.0, 'can': 2.0, 'but': 1.0, 'when': 1.0, 'daughter': 2.0, 'gets': 1.0, 'be': 1.0, 'him': 2.0, 'leave': 1.0, 'toy': 1.0, 'well': 2.0, 'has': 2.0, 'isn': 1.0, 'now': 1.0, 'had': 1.0, 'recommend': 1.0, 'was': 1.0, 'place': 1.0, 'the': 4.0, 'home': 1.0, 'she': 4.0, 'mostly': 1.0, 'five': 1.0, 'starting': 1.0, 'and': 3.0, 'her': 2.0, 'his': 1.0, 'almost': 1.0, 'held': 1.0, 'retired': 1.0, 'or': 1.0, 'put': 1.0, 'washed': 1.0, 'guy': 3.0, 'allowed': 1.0, 'at': 1.0, 'since': 1.0, 'magic': 1.0, 'baby': 1.0, 'original': 1.0, 'always': 2.0, 'convince': 1.0, 'is': 2.0, 'sleeps': 1.0, 'with': 2.0, 'he': 7.0, 'age': 1.0, 'in': 3.0, 'my': 2.0, 'fact': 1.0, 'house': 1.0, 'time': 1.0, 'so': 4.0, 'special': 2.0, 's': 6.0, 't': 1.0, 'a': 4.0, 'go': 1.0, 'all': 1.0, 'to': 2.0, 'outside': 1.0, 'very': 1.0, 'that': 4.0, 'case': 1.0, 'this': 1.0, 'lost': 1.0, 'soft': 1.0}
Word element => {'s': 1.0, 'style': 1.0, 'going': 2.0, 'clutching': 1.0, 'before': 1.0, 'and': 1.0, 'like': 2.0, 'to': 1.0, 'huggable': 1.0, 'sleep': 1.0, 'think': 1.0, 'little': 1.0, 'fuzzy': 1.0, 'soft': 1.0, 'out': 1.0, 'winky': 2.0, 'he': 3.0, 'of': 2.0, 'around': 1.0, 'lightweight': 1.0, 'great': 1.0, 'a': 2.0, 'is': 3.0, 'cloud': 1.0, 'minute': 1.0, 'i': 1.0, 'our': 1.0, 'rolling': 1.0, 'very': 1.0, 'son': 1.0, 'crying': 1.0, 'for': 1.0}
Word element => {'cuddle': 1.0, 'feel': 1.0, 'to': 1.0, 'textures': 1.0, 'just': 1.0, 'for': 1.0, 'gives': 1.0, 'grandson': 1.0, 'loves': 1.0, 'and': 4.0, 'my': 1.0, 'the': 3.0, 'are': 1.0, 'bought': 1.0, 'satin': 1.0, 'he': 1.0, 'this': 2.0, 'it': 1.0, 'i': 1.0, 'incredibly': 1.0, 'head': 1.0, 'back': 1.0, 'front': 1.0, 'soft': 2.0, 'child': 1.0, 'is': 1.0, 'different': 1.0}
Word element => {'though': 1.0, 'a': 1.0, 's': 1.0, 'it': 1.0, 'buddy': 1.0, 'buggy': 1.0, 'have': 1.0, 'other': 1.0, 'the': 3.0, 'is': 2.0, 'advertised': 1.0, 'different': 1.0, 'we': 1.0, 'fur': 1.0, 'material': 1.0, 'not': 1.0, 'lamb': 1.0, 'cute': 1.0, 'soft': 1.0, 'and': 1.0, 'as': 3.0, 'quite': 1.0}
Word element => {'the': 1.0, 'snuggle': 1.0, 'to': 1.0, 'products': 1.0, 'fabric': 1.0, 'likes': 1.0, 'gund': 1.0, 'this': 1.0, 'is': 1.0, 'touch': 1.0, 'so': 1.0, 'soft': 1.0, 'absolutely': 1.0, 'highly': 1.0, 'and': 2.0, 'our': 1.0, 'because': 1.0, 'little': 1.0, 'one': 1.0, 'recommend': 1.0, 'he': 1.0, 'adores': 1.0, 'all': 1.0}
Word element => {'spell': 1.0, 'break': 1.0, 'couldn': 1.0, 'just': 1.0, 'cute': 1.0, 'he': 2.0, 'best': 1.0, 'did': 1.0, 'stinky': 1.0, 'green': 1.0, 'and': 4.0, 'huggy': 1.0, '1': 1.0, 'this': 1.0, 'come': 1.0, 'first': 1.0, 'it': 1.0, 'she': 1.0, 'lambi': 2.0, 'always': 1.0, 'disgustingly': 1.0, 'away': 1.0, 'now': 1.0, 'was': 2.0, 'to': 3.0, 'that': 1.0, 'had': 1.0, 'thought': 1.0, 'winky': 1.0, 'closest': 1.0, 'loved': 1.0, 'took': 1.0, 'i': 2.0, 'buddy': 1.0, 'well': 1.0, 'lovey': 1.0, 'permanently': 1.0, 'daughters': 1.0, 't': 1.0, 'might': 1.0, 'could': 1.0, 'a': 1.0, 'we': 1.0, 'right': 1.0, 'find': 1.0, 'still': 1.0, 'the': 3.0, 'my': 1.0, 'have': 1.0, 'winner': 1.0, 'love': 1.0, 'but': 2.0, 'back': 1.0, 'alas': 1.0, 'you': 1.0, 'your': 1.0, 'is': 1.0, 'favorite': 1.0, 'cuddly': 1.0, 'his': 2.0, 'ears': 1.0, 'are': 1.0}
Word element => {'price': 1.0, 'about': 1.0, 'really': 1.0, 'unhappy': 1.0, 'but': 1.0, 'it': 1.0, 'i': 4.0, 'bought': 2.0, 'the': 1.0, 'my': 1.0, 'am': 2.0, 'car': 1.0, 'to': 1.0, 'this': 1.0, 'other': 1.0, 'put': 1.0, 'into': 1.0, 'glad': 1.0}
Word element => {'family': 1.0, 'italians': 1.0, 'those': 1.0, 'america': 1.0, 'bless': 1.0, 'god': 1.0, 'on': 2.0, '3': 3.0, 'think': 1.0, 'absolutely': 1.0, 'years': 1.0, 'both': 1.0, 'say': 1.0, 'have': 1.0, 'elses': 1.0, 'w': 1.0, 'accents': 1.0, 'mob': 1.0, 'love': 1.0, 'can': 2.0, '2': 1.0, 'but': 3.0, 'someone': 1.0, 'prego': 2.0, 'car': 2.0, 'familia': 1.0, 'made': 1.0, 'for': 3.0, 'china': 1.0, 'yr': 1.0, 'felt': 1.0, 'it': 6.0, 'to': 4.0, 'as': 1.0, 'was': 3.0, 'beast': 1.0, 'forward': 1.0, 'not': 1.0, 'give': 1.0, 'we': 4.0, 'a': 4.0, 's': 1.0, 'seat': 2.0, 'in': 2.0, 'reason': 1.0, 'ok': 1.0, 'easily': 2.0, 'young': 1.0, 'that': 1.0, 'next': 1.0, 'italian': 2.0, 'preg': 1.0, 'son': 1.0, 'making': 1.0, 'back': 1.0, 'pay': 1.0, 'i': 12.0, 'do': 2.0, 'only': 3.0, 'and': 10.0, 'like': 1.0, 'know': 1.0, 'perego': 1.0, 'money': 1.0, 'bought': 2.0, 'this': 1.0, 'kids': 1.0, 'our': 1.0, 'stroller': 2.0, 'an': 1.0, 'italy': 2.0, 'kept': 1.0, 'helping': 1.0, 'mi': 1.0, 'my': 3.0, 'second': 1.0, 'hard': 1.0, 'over': 1.0, 'am': 3.0, 'last': 2.0, '5': 1.0, 'working': 1.0, 'are': 1.0, 'wife': 1.0, 'from': 1.0, 'will': 2.0, 'year': 1.0, 'spent': 1.0, '1': 2.0, 'since': 1.0, 'try': 1.0, 'lot': 1.0, '40': 1.0, 'knowing': 1.0, 'idk': 1.0, 'if': 1.0, 'the': 8.0, 'of': 1.0, 'when': 1.0, 'goal': 1.0, 'rest': 1.0, 'couple': 1.0, 'were': 1.0, 'done': 1.0, 'way': 1.0, 'safe': 2.0, 'now': 1.0}
Word element => {'recommend': 1.0, 'shipping': 1.0, 'in': 1.0, 'for': 1.0, 'wife': 1.0, 'extra': 2.0, 'my': 2.0, 'are': 1.0, 'bases': 1.0, 'find': 1.0, 'need': 1.0, 'and': 2.0, 'i': 1.0, 'base': 1.0, 'austin': 1.0, 'truck': 1.0, 'few': 1.0, 'that': 1.0, 'their': 1.0, 'sotres': 1.0, 'carry': 1.0, 'the': 2.0, 'great': 1.0, 'service': 1.0, 'quick': 1.0}
Word element => {'cars': 1.0, 'with': 1.0, 'used': 1.0, 'at': 1.0, 'free': 1.0, 'inspector': 1.0, 'nhtsa': 2.0, 'an': 2.0, 'by': 1.0, 'officer': 1.0, 'inspected': 1.0, 'favor': 1.0, 'and': 2.0, 'baby': 1.0, 'incorrectly': 1.0, 'are': 1.0, 'seats': 1.0, 'over': 1.0, 'craftsmanship': 1.0, 'good': 1.0, 'italy': 1.0, 'buy': 1.0, 'definitely': 1.0, 'i': 2.0, 'not': 1.0, 'there': 1.0, 'great': 1.0, 'features': 1.0, 'in': 1.0, 'said': 1.0, 'say': 1.0, 'is': 1.0, 'station': 1.0, 'base': 1.0, 'knew': 1.0, 'for': 4.0, 'shelled': 1.0, 'both': 1.0, 'police': 1.0, 'd': 1.0, 'price': 1.0, 'my': 1.0, 'family': 2.0, 'of': 1.0, 'multi': 1.0, 'infant': 2.0, 'car': 4.0, 'made': 1.0, 'spare': 1.0, 'nuff': 1.0, 'local': 1.0, 'again': 1.0, 'you': 3.0, 'it': 3.0, 'yourself': 1.0, 'do': 1.0, 'much': 1.0, 'seat': 4.0, 'any': 1.0, 'to': 3.0, 'your': 2.0, 'except': 1.0, 'inspection': 1.0, 'find': 2.0, 'installed': 1.0, 'does': 1.0, 'location': 1.0, 'what': 1.0, 'have': 2.0, 's': 2.0, 'a': 5.0, 'pricey': 1.0, 'were': 1.0, 'the': 7.0, 'job': 1.0, 'installation': 2.0, 'that': 2.0, 'into': 1.0, 'little': 1.0, '80': 1.0, 'but': 1.0, 'certified': 2.0, 'if': 1.0, 'convenience': 1.0, 'out': 1.0, 'peg': 1.0, 'site': 1.0, 'perego': 1.0, 'verified': 1.0, 'about': 1.0, 'despite': 1.0, 'probably': 1.0, 'getting': 1.0}
Word element => {'bases': 1.0, 'option': 1.0, 'having': 1.0, 'quality': 1.0, 'new': 1.0, 'one': 1.0, 'parent': 1.0, 'lucky': 1.0, 'for': 2.0, 'from': 1.0, 'very': 1.0, 'child': 1.0, 'fits': 1.0, 'vehicle': 2.0, 'have': 2.0, 'is': 2.0, 'this': 1.0, 'it': 2.0, 'the': 5.0, 'infants': 1.0, 'are': 1.0, 'not': 2.0, 'so': 2.0, 'extra': 1.0, 'buy': 2.0, 'base': 1.0, 'move': 1.0, 'seats': 1.0, 'two': 1.0, 'car': 3.0, 'need': 1.0, 'vehicles': 1.0, 'convenient': 2.0, 'we': 3.0, 's': 1.0, 'a': 1.0, 'and': 2.0, 'in': 2.0, 'most': 1.0, 'mention': 1.0, 'recommend': 1.0, 'clips': 1.0, 'next': 1.0, 'into': 1.0, 'stroller': 1.0, 'also': 1.0, 'will': 1.0, 'absolutely': 1.0, 'peg': 1.0, 'perego': 1.0, 'all': 1.0, 'seat': 2.0, 'to': 7.0, 'any': 1.0}
Word element => {'favors': 1.0, 'of': 1.0, 'part': 1.0, 'as': 1.0, 'milk': 1.0, 'glass': 1.0, 'added': 1.0, 'and': 1.0, 'special': 1.0, 'gifts': 1.0, 'bottles': 1.0, 'add': 1.0, 'looking': 1.0, 'if': 1.0, 're': 1.0, 'party': 1.0, 'throughout': 1.0, 'a': 3.0, 'them': 2.0, 'you': 1.0, 'shower': 1.0, 'this': 1.0, 'is': 1.0, 'left': 1.0, 'bowls': 1.0, 'the': 2.0, 'great': 1.0, 'touch': 1.0, 'buy': 1.0, 'i': 2.0, 'to': 3.0, 'had': 1.0, 'in': 1.0, 'friend': 1.0, 'who': 1.0}
Word element => {'nothing': 1.0, 'ok': 1.0, 'mints': 1.0, 'accurate': 1.0, 'all': 1.0, 'themselves': 1.0, 'writing': 1.0, 'these': 1.0, 'were': 2.0, 'a': 1.0, 'pictures': 1.0, 'cute': 1.0, 'tasted': 1.0, 'addition': 1.0, 'to': 1.0, 'centered': 1.0, 'and': 2.0, 'friends': 1.0, 'special': 1.0, 'baby': 1.0, 'the': 2.0, 'my': 1.0, 'shower': 1.0}
Word element => {'fashion': 1.0, 'a': 1.0, 'in': 1.0, 'came': 1.0, 'everything': 1.0, 'they': 2.0, 'four': 1.0, 'didn': 1.0, 'but': 1.0, 'really': 1.0, 'recommend': 1.0, 'good': 1.0, 'product': 1.0, 'gave': 1.0, 'because': 1.0, 'would': 1.0, 'i': 2.0, 'timely': 1.0, 'very': 2.0, 'and': 1.0, 'this': 1.0, 'looked': 1.0, 'on': 1.0, 't': 1.0, 'great': 1.0, 'the': 1.0, 'stars': 1.0, 'taste': 1.0, 'tables': 1.0}
Word element => {'cute': 1.0, 'two': 1.0, 'fine': 1.0, 'bought': 1.0, 've': 1.0, 'was': 1.0, 'but': 1.0, 'i': 2.0, 'when': 1.0, 'bag': 1.0, 'should': 1.0, 'the': 1.0, 'small': 1.0, 'it': 3.0, 'looked': 1.0, 'arrived': 1.0, 'out': 1.0, 'very': 1.0, 'worked': 1.0, 'addition': 1.0, 'and': 1.0, 'a': 1.0, 'novelty': 1.0, 'thought': 1.0, 'candy': 1.0}
Word element => {'be': 1.0, 'will': 1.0, 'event': 1.0, 'how': 1.0, 'your': 1.0, 'on': 1.0, 'taste': 1.0, 'of': 1.0, 'to': 1.0, 'any': 1.0, 'actions': 1.0, 'or': 1.0, 'sort': 1.0, 'good': 1.0, 'parties': 1.0, 'i': 1.0, 'is': 1.0, 'want': 1.0, 'see': 1.0, 'fancy': 2.0, 'that': 1.0, 'local': 1.0, 'you': 3.0, 'other': 1.0, 'serving': 1.0, 'this': 1.0, 'hosting': 1.0, 'it': 1.0, 'thing': 1.0, 'use': 1.0, 'a': 2.0, 'guests': 1.0, 'can': 1.0, 'but': 1.0, 'still': 1.0, 'the': 1.0, 'value': 1.0, 'too': 1.0, 'its': 1.0, 'much': 1.0, 'what': 1.0, 'for': 2.0, 'actually': 1.0, 'depends': 1.0, 'get': 1.0, 'getting': 1.0, 'another': 1.0, 'may': 1.0, 'was': 2.0, 'store': 1.0, 'reconsider': 1.0, 'alternative': 1.0, 'from': 1.0}
Word element => {'shower': 1.0, 'baby': 1.0, 'something': 1.0, 'wonderful': 1.0, 'favors': 1.0, 'little': 1.0, 'need': 1.0, 'idea': 1.0, 'just': 1.0, 'party': 1.0, 'a': 2.0, 'they': 1.0, 'great': 1.0, 'these': 1.0, 'are': 2.0, 'cute': 1.0, 'pictures': 1.0, 'if': 1.0, 'saying': 1.0, 'recommend': 1.0, 'and': 1.0, 'each': 1.0, 'on': 1.0, 'for': 2.0, 'one': 1.0, 'definitely': 1.0, 'you': 1.0}
Word element => {'yourself': 1.0, 'do': 1.0, 'favor': 1.0, '2': 1.0, 'people': 1.0, 'loved': 1.0, 'a': 1.0, 'them': 1.0, 'get': 1.0, '48': 1.0, 'extra': 1.0, 'was': 1.0, 'not': 1.0, 'and': 1.0, 'each': 1.0, 'since': 1.0, 'took': 1.0, 'enough': 1.0, 'some': 1.0, 'guests': 1.0}
Word element => {'them': 1.0, 'loved': 1.0, 'at': 1.0, 'and': 1.0, 'each': 1.0, 'to': 1.0, 'bought': 1.0, 'baby': 1.0, 'these': 1.0, 'the': 1.0, 'my': 2.0, 'shower': 2.0, 'guests': 1.0, 'for': 1.0, 'daughter': 2.0, 's': 2.0, 'i': 1.0, 'added': 1.0, 'favor': 1.0, '2': 1.0}
Word element => {'peppermints': 1.0, 'are': 1.0, 'regular': 1.0, 'disapointed': 1.0, 'be': 1.0, 'hard': 1.0, 'will': 1.0, 'dinner': 1.0, 'mints': 2.0, 'expecting': 1.0, 'these': 2.0, 'big': 1.0, 'were': 1.0, 'i': 1.0, 'like': 1.0, 'type': 1.0, 'very': 1.0, 'and': 1.0, 'but': 1.0, 'hit': 1.0, 'cute': 1.0, 'if': 1.0, 'you': 2.0}
Word element => {'also': 1.0, 'arrived': 1.0, 'store': 1.0, 'bags': 1.0, 'cute': 2.0, 'organza': 1.0, 'for': 1.0, 'i': 1.0, 'if': 1.0, 'like': 1.0, 'dollar': 1.0, 'and': 3.0, 'a': 4.0, 'hosting': 1.0, 'of': 1.0, 'shower': 1.0, 'these': 2.0, 'great': 1.0, 'favor': 2.0, 'one': 1.0, 'bought': 1.0, 'at': 1.0, 'adorable': 1.0, 'little': 2.0, 'very': 1.0, 'are': 3.0, 'favors': 1.0, 'you': 1.0, 'when': 1.0, 'the': 3.0, 'candy': 1.0, 'were': 1.0, 'pacifiers': 1.0, 'baby': 1.0, 'them': 1.0, 'in': 2.0, 'back': 1.0, 'saying': 1.0, 'inexpensive': 1.0, 'so': 1.0, 'look': 1.0, 'just': 1.0, 'picture': 1.0, 'must': 1.0, 'have': 1.0, 'put': 1.0, 'on': 1.0, 'they': 3.0, 'condition': 1.0}
Word element => {'though': 1.0, 'your': 1.0, 'if': 1.0, 'enough': 1.0, 'be': 1.0, 'would': 1.0, 'rubber': 1.0, 'i': 2.0, 'my': 1.0, 'are': 1.0, 'favor': 2.0, 'only': 1.0, 'it': 1.0, 'with': 1.0, 'in': 1.0, 'along': 1.0, 'the': 1.0, 'these': 3.0, 't': 1.0, 'put': 1.0, 'duckie': 1.0, 'keychains': 1.0, 'and': 1.0, 'very': 1.0, 'wrapped': 1.0, 'cute': 1.0, 'boxes': 1.0, 'don': 1.0, 'think': 1.0, 'were': 1.0, 'candy': 1.0, 'that': 1.0}
Word element => {'friend': 1.0, 'a': 1.0, 'to': 1.0, 'again': 1.0, 'buy': 1.0, 'would': 2.0, 'scented': 1.0, 'strong': 1.0, 'should': 1.0, 'this': 1.0, 'have': 1.0, 'these': 1.0, 'bought': 1.0, 'are': 1.0, 'the': 1.0, 'more': 1.0, 'nice': 1.0, 'recommend': 1.0, 'of': 1.0, 'and': 1.0, 'very': 2.0, 'mints': 1.0}
Word element => {'toys': 1.0, 'packed': 1.0, 'weight': 1.0, 'their': 1.0, 'strains': 1.0, 'old': 2.0, 'three': 1.0, 'lifestyle': 1.0, 'don': 1.0, 'but': 2.0, 'trunks': 1.0, 'car': 2.0, 'doesn': 1.0, 'heavy': 1.0, 'room': 1.0, 'cargo': 1.0, 'through': 1.0, 'door': 2.0, 'open': 1.0, 'umbrella': 1.0, 'when': 1.0, 'great': 1.0, 'fantastic': 1.0, 'which': 1.0, 'like': 2.0, 'hold': 3.0, 'in': 1.0, 'seat': 1.0, 'most': 1.0, 'sleep': 1.0, 'take': 1.0, 'time': 1.0, 'still': 1.0, 'every': 1.0, 'if': 2.0, 'under': 1.0, 'same': 1.0, 'being': 1.0, 'easily': 1.0, 'that': 1.0, 'hand': 2.0, 'toddlers': 1.0, 'own': 1.0, 'yes': 1.0, 'off': 1.0, 'especially': 1.0, 're': 1.0, 'or': 4.0, 'have': 4.0, 'flat': 1.0, 'fit': 1.0, 't': 5.0, 'a': 9.0, 's': 2.0, 'won': 1.0, 'failed': 1.0, 'comfortably': 1.0, 'at': 2.0, 'is': 4.0, 'say': 1.0, 'single': 1.0, 'there': 1.0, 'stroller': 2.0, 'taking': 1.0, 'you': 5.0, 'able': 1.0, 'are': 1.0, 'find': 1.0, 'anywhere': 1.0, 'wanted': 1.0, 'else': 1.0, 'this': 1.0, 'kids': 1.0, 've': 1.0, 'letting': 1.0, 'each': 1.0, 'i': 8.0, 'had': 2.0, 'one': 4.0, 'bottom': 1.0, 'love': 2.0, 'for': 2.0, 'wheel': 1.0, 'wear': 1.0, 'it': 8.0, 'many': 1.0, 'she': 1.0, 'break': 1.0, 'and': 11.0, 'with': 4.0, 'your': 1.0, 'grows': 1.0, 'child': 1.0, 'year': 3.0, 'toddler': 2.0, 'nothing': 1.0, 'out': 1.0, 'of': 1.0, 'the': 6.0, 'ability': 1.0, 'perfect': 1.0, 'walking': 1.0, 'half': 3.0, 'both': 2.0, 'seats': 1.0, 'face': 1.0, 'to': 4.0, 'lie': 1.0, 'enough': 1.0, 'loved': 1.0, 'infant': 1.0, 'facing': 2.0, 'my': 4.0, 'me': 1.0, 'front': 1.0, 'now': 2.0, 'steering': 1.0, 'they': 2.0, 'fits': 2.0, 'an': 1.0, 'all': 1.0, 'other': 2.0, 'so': 3.0, 'can': 3.0, 'pluses': 1.0, 'play': 1.0, 'about': 1.0, 'hasn': 1.0, 'simply': 1.0, 'only': 1.0, 'amazing': 1.0, 'steer': 1.0}
Word element => {'1000': 1.0, 'use': 1.0, 'also': 1.0, 'seats': 1.0, 'or': 1.0, 'tires': 1.0, 'big': 1.0, 'great': 1.0, 'service': 1.0, 'for': 1.0, 'worst': 1.0, 'perego': 1.0, 'break': 1.0, 'peg': 1.0, 'later': 1.0, 'but': 1.0, '2': 1.0, 'dealer': 1.0, 'participating': 1.0, 'bucks': 1.0, 'total': 1.0, 'at': 1.0, 'favor': 1.0, 'fixed': 1.0, 'combined': 1.0, '25': 1.0, 'about': 1.0, 'company': 1.0, 'my': 1.0, 'using': 1.0, 'way': 1.0, 'steering': 2.0, 'months': 1.0, 'one': 1.0, 'would': 1.0, 'doesn': 2.0, 'was': 3.0, 'what': 1.0, 'had': 2.0, 'veer': 1.0, 'the': 9.0, 'problems': 1.0, 'any': 1.0, 'to': 3.0, 'as': 1.0, 'it': 9.0, 'buy': 1.0, 'steer': 1.0, 'yourself': 1.0, 'do': 1.0, 'only': 2.0, 'wheel': 1.0, 't': 3.0, 'a': 5.0, 'were': 2.0, 'this': 2.0, 'kids': 2.0, 'i': 2.0, 'recieved': 1.0, 'of': 2.0, 'there': 1.0, 'is': 1.0, 'completely': 1.0, 'out': 1.0, 'stroller': 2.0, 'every': 1.0, 'customer': 1.0, 'lock': 2.0, 'gift': 1.0, 'side': 1.0, 'time': 2.0, 'so': 1.0, 'graco': 1.0, 'misused': 1.0, 'again': 3.0, 'lbs': 1.0, 'when': 1.0, 'you': 3.0, 'have': 2.0, '6th': 1.0, 'off': 1.0, 'box': 1.0, 'into': 1.0, 'want': 1.0, 'if': 1.0, 'didn': 1.0, 'dual': 1.0, 'on': 2.0, 'your': 1.0, 'street': 1.0, 'in': 1.0, 'then': 3.0, 'waste': 1.0, 'broke': 2.0, 'and': 5.0, 'not': 1.0}
Word element => {'one': 1.0, 'looks': 1.0, 'but': 1.0, 'will': 1.0, 'is': 1.0, 'around': 1.0, 'you': 1.0, 'compliments': 1.0, 'and': 2.0, 'great': 1.0, 'the': 7.0, 'diaper': 1.0, 'plenty': 1.0, 'aware': 1.0, 'falls': 1.0, 'black': 2.0, 'a': 2.0, 'what': 1.0, 'expect': 1.0, 'quickly': 1.0, 'no': 1.0, 'solid': 1.0, 'bag': 2.0, 'not': 1.0, 'lining': 1.0, 'would': 1.0, 'of': 2.0, 'rather': 1.0, 'offered': 1.0, 'for': 3.0, 'get': 1.0, 'model': 1.0, 'price': 1.0, 'peg': 1.0, 'longer': 1.0, 'produced': 1.0, 'perego': 1.0, 'was': 3.0, 'made': 1.0, 'problem': 1.0, 'replacement': 2.0, 'shipping': 1.0, 'paloma': 1.0, 'which': 1.0, 'apart': 1.0, '10': 1.0, 'being': 1.0, 'so': 1.0}
Word element => {'stations': 1.0, 'use': 1.0, 'chaning': 1.0, 'pad': 1.0, 'also': 1.0, 'outfit': 1.0, 'with': 1.0, 'goes': 1.0, 'absolutely': 1.0, 'straps': 1.0, 'dirty': 1.0, 'they': 1.0, 'coach': 1.0, 'look': 1.0, 'born': 1.0, 'onces': 1.0, 'purses': 1.0, 'designer': 1.0, 'my': 1.0, 'any': 1.0, 'as': 2.0, 'to': 4.0, 'has': 2.0, 'won': 1.0, 'you': 5.0, 'no': 1.0, 'purse': 1.0, 'getting': 1.0, 'did': 1.0, 'if': 1.0, 'other': 1.0, 'anything': 1.0, 'nice': 2.0, 'attach': 1.0, 'research': 1.0, 'this': 4.0, 'it': 4.0, 'more': 1.0, 'is': 5.0, 'brands': 1.0, 'find': 1.0, 'the': 3.0, 'stroller': 1.0, 'practical': 1.0, 'diaper': 3.0, 'belive': 1.0, 'and': 4.0, 'similar': 1.0, 'sturdy': 1.0, 'worried': 1.0, 'before': 1.0, 'long': 1.0, 'bag': 3.0, 'color': 1.0, 'one': 2.0, 'i': 3.0, 'for': 4.0, 'cheap': 1.0, 'much': 1.0, 'me': 1.0, 'not': 2.0, 'can': 2.0, 'change': 2.0, 'most': 1.0, 'but': 1.0, 'started': 1.0, 'baby': 3.0, 'quality': 1.0, 'were': 1.0, 'high': 1.0, 'are': 1.0, 'looking': 1.0, 'that': 3.0, 's': 1.0, 't': 1.0, 'a': 3.0, 'could': 1.0, 'putting': 1.0, 'be': 1.0, 'on': 1.0, 'your': 4.0, 'so': 4.0, 'time': 1.0, 'beautiful': 2.0, 'was': 1.0}
Word element => {'would': 1.0, 'regular': 1.0, 'an': 1.0, 'to': 1.0, 'again': 1.0, 'are': 2.0, 'find': 1.0, 'they': 2.0, 'the': 1.0, 'these': 3.0, 'says': 1.0, 'daughter': 1.0, 'awesome': 1.0, 'years': 1.0, 'in': 1.0, 'bought': 1.0, 'buy': 1.0, 'i': 3.0, 'bottle': 1.0, 'can': 1.0, 'she': 1.0, 'remember': 1.0, 'for': 1.0, 'using': 1.0, 'hard': 1.0, '22': 1.0, 'stores': 1.0, 'my': 1.0, 'ago': 1.0}
Word element => {'returned': 1.0, 'be': 1.0, 'too': 1.0, 'when': 1.0, 'properly': 1.0, 'refund': 1.0, 'doesn': 1.0, 'didn': 1.0, 'i': 2.0, 'tried': 2.0, 'nipples': 1.0, 'still': 1.0, 'used': 1.0, 'results': 1.0, 'holes': 1.0, 'the': 8.0, 'great': 1.0, 'time': 1.0, 'with': 1.0, 'this': 2.0, 'it': 2.0, 'altered': 1.0, 'for': 1.0, 'product': 3.0, 'in': 2.0, 'have': 1.0, 'small': 1.0, 'were': 1.0, 'baby': 2.0, 'sucking': 1.0, 'would': 1.0, 'not': 3.0, 'through': 1.0, 'to': 1.0, 't': 2.0, 'hole': 2.0, 'go': 1.0, 'a': 2.0, 'little': 1.0, 'very': 1.0, 'unhappy': 1.0, 'once': 1.0, 'is': 1.0, 'enlarge': 1.0, 'opened': 1.0, 'or': 1.0, 'past': 1.0, 'work': 2.0, 'but': 2.0, 'food': 1.0, 'can': 1.0}
Word element => {'spoon': 1.0, 'w': 1.0, 'used': 2.0, 'trying': 1.0, 'over': 1.0, 'on': 1.0, 'to': 4.0, 'patience': 1.0, 'has': 1.0, 'ever': 1.0, 'time': 1.0, 'learn': 1.0, 'with': 1.0, 'it': 1.0, 'is': 3.0, 'the': 2.0, 'these': 1.0, 'a': 3.0, 'eat': 1.0, 'that': 1.0, 'both': 1.0, 'best': 1.0, 'no': 1.0, 'thing': 1.0, 'fumble': 1.0, 'especially': 1.0, 'for': 2.0, 'this': 1.0, 'perfect': 1.0, 'meal': 1.0, 'you': 1.0, 'when': 1.0, 'mom': 1.0, 'need': 1.0, 'clean': 1.0, 'baby': 3.0, 'them': 1.0, 'hungry': 1.0, 'my': 2.0, 'give': 1.0, 'stay': 1.0, 'me': 1.0, 'i': 2.0, 'shower': 1.0, 'of': 1.0, 'always': 1.0, 'children': 1.0, 'gift': 1.0}
Word element => {'shopping': 1.0, 'easy': 1.0, 'love': 1.0, 'have': 1.0, 'grandson': 1.0, 'blue': 1.0, 'experience': 1.0, 'had': 1.0, 'for': 2.0, 'grand': 1.0, 'and': 1.0, 'came': 1.0, 'an': 1.0, 'purchased': 1.0, 'to': 2.0, 'daughters': 1.0, 'here': 1.0, 'the': 2.0, 'find': 1.0}
Word element => {'recommend': 1.0, 'product': 1.0, 'no': 1.0, 'feeding': 1.0, 'spoon': 1.0, 'when': 1.0, 'your': 1.0, 'nurser': 1.0, 'i': 2.0, 'for': 2.0, 'thing': 1.0, 'best': 1.0, 'mess': 1.0, 'the': 2.0, 'started': 1.0, 'is': 1.0, 'eat': 1.0, 'food': 2.0, 'highly': 1.0, 'baby': 3.0, 'sassy': 1.0, 'starts': 1.0, 'to': 1.0, 'used': 1.0, 'this': 1.0, 'with': 1.0, 'first': 1.0, 'it': 2.0, '3': 1.0, 'months': 1.0, 'and': 1.0, 'then': 1.0}
Word element => {'godsend': 1.0, 'a': 1.0, 'been': 1.0, 'and': 1.0, 'quickly': 1.0, 'very': 1.0, 'product': 1.0, 'received': 1.0, 'were': 1.0, 'has': 1.0, 'they': 1.0, 'the': 1.0, 'these': 1.0, 'babies': 1.0, 'everywhere': 1.0, 'when': 1.0, 'i': 3.0, 'one': 1.0, 'for': 1.0, 'could': 1.0, 'used': 1.0, 'online': 1.0, 'my': 2.0, 'find': 1.0, 'use': 1.0, 'but': 1.0, 'to': 1.0, 'granddaughter': 1.0, 'it': 1.0, 'children': 1.0, 'looked': 1.0, 'with': 2.0, 'only': 1.0, 'them': 1.0}
Word element => {'purchase': 1.0, 'are': 1.0, 'satisfied': 1.0, 'we': 1.0, 'works': 1.0, 'easily': 1.0, 'product': 1.0, 'time': 1.0, 'cleans': 1.0, 'bit': 1.0, 'all': 1.0, 'formula': 1.0, 'just': 1.0, 'very': 1.0, 'from': 1.0, 'transition': 1.0, 'easy': 1.0, 'an': 1.0, 'adding': 1.0, 'in': 1.0, 'daughter': 1.0, 'for': 1.0, 'well': 1.0, 'a': 2.0, 'law': 1.0, 'at': 2.0, 'new': 1.0, 'my': 2.0, 'the': 2.0, 'these': 1.0, 'ordered': 1.0, 's': 1.0, 'i': 1.0, 'took': 1.0, 'request': 1.0, 'baby': 1.0, 'granddaughter': 1.0, 'to': 2.0, 'right': 1.0, 'them': 1.0, 'away': 1.0, 'and': 2.0, 'with': 1.0, 'cereal': 1.0, 'it': 1.0, 'is': 1.0}
Word element => {'later': 1.0, 'transition': 1.0, 'can': 1.0, 'start': 1.0, 'first': 1.0, 'spoon': 2.0, 'with': 1.0, 'mess': 1.0, 'gigantic': 1.0, 'nor': 1.0, 'time': 1.0, 'feeding': 1.0, 'works': 1.0, 'sharp': 1.0, 'any': 2.0, 'as': 1.0, 'to': 4.0, 'our': 1.0, 'properly': 1.0, 'for': 1.0, 'com': 1.0, 'have': 1.0, 'altogether': 1.0, 'discontinued': 1.0, 'between': 1.0, 'when': 1.0, 'what': 1.0, 'be': 2.0, 'infant': 1.0, 'they': 1.0, 'cut': 1.0, 'area': 1.0, 'cereal': 2.0, 'stopped': 1.0, 'insert': 1.0, 'were': 1.0, 'carrying': 1.0, 'throw': 1.0, 'in': 4.0, 'turning': 1.0, 'turn': 1.0, 'follows': 1.0, '1': 1.0, 'nipple': 6.0, 'once': 1.0, 'because': 1.0, 'away': 1.0, 'altered': 1.0, 'retail': 1.0, 'i': 2.0, 'case': 1.0, 'stores': 1.0, '4': 1.0, 'however': 1.0, 'found': 2.0, 'repeating': 1.0, 'this': 1.0, 'them': 1.0, 'feeders': 1.0, 'baby': 1.0, 'tiny': 2.0, 'a': 9.0, 'ordered': 1.0, 'hole': 3.0, 'flattening': 1.0, 'amazon': 1.0, 'and': 5.0, 'pile': 1.0, 'lump': 2.0, 'will': 3.0, 'increase': 2.0, 'cutting': 1.0, 'clog': 2.0, 'b': 1.0, 'my': 1.0, 'you': 4.0, 'or': 1.0, 'best': 1.0, 'all': 1.0, 'an': 1.0, 'strainer': 1.0, 'x': 2.0, 'about': 1.0, 'no': 1.0, 'is': 2.0, 'at': 2.0, 'stock': 1.0, 'existing': 1.0, 'by': 1.0, 'forefinger': 1.0, 'screaming': 1.0, 'holes': 1.0, 'thumb': 1.0, 'using': 1.0, 'must': 2.0, 'knife': 1.0, 'slit': 1.0, 'inch': 1.0, 'flow': 1.0, 'on': 1.0, 'long': 1.0, 'then': 1.0, 'size': 2.0, 'quarter': 1.0, 'procedure': 1.0, 'making': 1.0, 'done': 1.0, 'the': 18.0, 'of': 3.0, 'longer': 1.0}
Word element => {'death': 1.0, 'can': 1.0, 'choke': 1.0, 'dangerous': 1.0, 'alone': 1.0, 'child': 1.0, 'thats': 1.0, 'with': 2.0, 'info': 1.0, 'love': 1.0, 'saver': 1.0, 'are': 3.0, 'eats': 1.0, 'however': 1.0, 'made': 1.0, 'not': 2.0, 'inside': 1.0, '8': 2.0, 'wont': 1.0, 's': 1.0, 'a': 9.0, 'could': 1.0, 'plunger': 1.0, 'other': 1.0, 'these': 5.0, 'cheaply': 1.0, 'feeder': 2.0, '7': 1.0, 'everyone': 1.0, 'july': 1.0, 'my': 2.0, 'only': 4.0, 'without': 1.0, 'works': 1.0, 'month': 1.0, 'already': 1.0, 'it': 4.0, 'baby': 1.0, 'she': 1.0, 'junk': 1.0, '4': 1.0, 'broke': 1.0, 'i': 7.0, 'one': 5.0, 'months': 1.0, 'piece': 1.0, 'old': 1.0, 'in': 5.0, 'dishwasher': 1.0, 'just': 1.0, 'life': 1.0, 'by': 1.0, 'option': 1.0, 'that': 1.0, 'at': 1.0, 'is': 3.0, 'more': 1.0, 'till': 1.0, 'few': 1.0, 'this': 3.0, 'wish': 1.0, 'gets': 2.0, '3': 1.0, 'put': 2.0, 'better': 1.0, 'process': 1.0, 'think': 1.0, 'your': 3.0, 'ordered': 1.0, 'set': 1.0, 'the': 5.0, 'of': 4.0, 'them': 2.0, 'oz': 3.0, 'be': 1.0, 'and': 8.0, 'anyone': 1.0, 'nightmare': 1.0, 'girl': 1.0, 'since': 1.0, 'washed': 1.0, 'find': 1.0, 'does': 1.0, 'leave': 1.0, 'as': 2.0, 'to': 2.0, 'little': 1.0, 'would': 2.0, 'screams': 1.0, 'about': 1.0, '6': 2.0, 'you': 1.0, 'end': 1.0, 'im': 1.0, 'complete': 1.0, 'back': 1.0, 'stay': 1.0, 'if': 2.0, 'or': 2.0, 'food': 3.0, 'mad': 1.0, 'need': 1.0, 'knows': 1.0, 'for': 2.0, 'take': 1.0, 'then': 1.0, 'when': 1.0, 'breaks': 1.0, 'have': 1.0, 'some': 1.0, 'never': 4.0, 'hand': 1.0}
Word element => {'well': 1.0, 'price': 1.0, 'reasonable': 1.0, 'as': 1.0, 'very': 1.0, 'at': 1.0, 'spoon': 1.0, 'life': 1.0, 'really': 1.0, 'time': 1.0, 'with': 1.0, 'my': 1.0, 'this': 2.0, 'item': 1.0, 'grandson': 1.0, 'real': 1.0, 'helped': 1.0, 'who': 1.0, 'cannot': 1.0, 'use': 1.0, 'saver': 1.0, 'a': 1.0}
Word element => {'anything': 1.0, 'eat': 1.0, 'he': 1.0, 'before': 1.0, 'up': 1.0, 'nipple': 1.0, 'out': 1.0, 'very': 1.0, 'for': 2.0, 'so': 1.0, 'ii': 1.0, 'forced': 1.0, 'really': 2.0, 'is': 2.0, 'some': 1.0, 'let': 1.0, 'it': 4.0, 'with': 1.0, 'was': 1.0, 'to': 1.0, 'runny': 1.0, 'just': 1.0, 'leaks': 1.0, 'thought': 1.0, 'would': 1.0, 'allow': 1.0, 'something': 1.0, 'not': 1.0, 'me': 1.0, 'when': 1.0, 'beginners': 1.0, 'baby': 3.0, 'small': 1.0, 'himself': 1.0, 'my': 1.0, 'feed': 1.0, '3': 1.0, 'the': 3.0, 'clogged': 1.0, 'but': 1.0, 'food': 3.0, '2': 1.0, 'and': 2.0, 'too': 1.0, 'even': 1.0, 'like': 1.0, 'applesauce': 1.0, 'different': 1.0, 'mess': 1.0, 'i': 1.0, 'things': 1.0, 'tried': 1.0, 'disappointed': 1.0, 'made': 1.0, 'could': 1.0, 'hole': 1.0, 's': 1.0, 'a': 1.0, 'bottom': 1.0, 'connected': 1.0}
Word element => {'he': 1.0, 'they': 1.0, 'a': 1.0, 'of': 1.0, 'loved': 1.0, 'use': 1.0, 'these': 1.0, 'great': 1.0, 'expected': 1.0, 'perfect': 1.0, 've': 1.0, 'order': 1.0, 'small': 1.0, 'after': 1.0, 'decided': 1.0, 'as': 1.0, 'and': 3.0, 'were': 2.0, 'needing': 1.0, 'to': 4.0, 'care': 1.0, 'just': 1.0, 'feeders': 2.0, 'easy': 2.0, 'bottles': 1.0, 'them': 1.0, 'clean': 1.0, 'i': 1.0, 'used': 1.0, 'many': 1.0, 'baby': 1.0, 'years': 1.0, 'ago': 1.0, 'infant': 2.0, 'take': 1.0}
Word element => {'huge': 1.0, 'makes': 1.0, 'out': 1.0, 'food': 1.0, 'slip': 1.0, 'take': 1.0, 'will': 1.0, 'also': 1.0, 'feeder': 1.0, 'pieces': 1.0, 'parts': 1.0, '5': 1.0, 'with': 1.0, 'then': 1.0, 'use': 2.0, 'hassle': 1.0, 'of': 2.0, 'squish': 1.0, 'them': 2.0, 'sideways': 1.0, 'child': 1.0, 'because': 1.0, 'sister': 1.0, 'first': 1.0, 'love': 1.0, 'for': 1.0, 'more': 1.0, 'already': 1.0, 'these': 1.0, 'nipple': 2.0, 'the': 3.0, 're': 1.0, 'and': 4.0, 'used': 2.0, 'her': 1.0, 'this': 1.0, 'found': 1.0, 'plunging': 1.0, 'style': 1.0, 'it': 2.0, 'she': 2.0, 'seemed': 1.0, 'had': 1.0, 'all': 2.0, 'to': 6.0, 'would': 1.0, 'be': 1.0, 'easier': 1.0, 'larger': 1.0, 'mess': 1.0, 'i': 1.0, '4': 1.0, 'plate': 1.0, 'time': 1.0, 'bottle': 1.0, 'feeding': 1.0, 'when': 2.0, 'you': 3.0, 'a': 3.0, 's': 1.0, 'your': 1.0, 'on': 1.0, 'dr': 1.0, 'brown': 1.0, 'size': 1.0, 'or': 1.0, 'y': 1.0, 'have': 2.0, 'my': 1.0, 'fool': 1.0}
Word element => {'grandbabies': 1.0, 'twin': 1.0, 'with': 1.0, 'use': 1.0, 'this': 2.0, 'my': 3.0, 'kids': 1.0, 'as': 1.0, 'babies': 1.0, 'gave': 1.0, 'product': 1.0, 'to': 2.0, 'law': 1.0, 'in': 1.0, 'had': 1.0, 'for': 1.0, 'daughter': 1.0}
Word element => {'reduces': 1.0, 'significantly': 1.0, 'strainer': 1.0, 'after': 1.0, 'love': 1.0, 'bottom': 1.0, 'once': 1.0, 'right': 1.0, 'sure': 1.0, 'little': 1.0, 'nice': 1.0, 'be': 1.0, 'would': 1.0, 'assembled': 2.0, 'parts': 1.0, 'self': 1.0, 'didn': 1.0, 'say': 1.0, 'will': 1.0, 'dealing': 1.0, 'wouldn': 1.0, 'push': 1.0, 'you': 1.0, 'able': 1.0, 'things': 1.0, 'making': 1.0, 'if': 2.0, 'found': 1.0, 'bit': 2.0, 'know': 1.0, 'getting': 1.0, 'up': 2.0, 'completely': 2.0, 'while': 1.0, 'between': 1.0, 'happier': 1.0, 'formula': 1.0, 'in': 7.0, 'do': 1.0, 'put': 3.0, 'amount': 1.0, 'on': 4.0, 'but': 2.0, '2': 1.0, 'several': 1.0, 'point': 1.0, 'started': 1.0, 'not': 1.0, 'there': 1.0, 'give': 1.0, 'nipple': 1.0, 'feeder': 2.0, 'better': 1.0, 'definitely': 1.0, 'without': 1.0, 'days': 1.0, 'plate': 2.0, 'day': 1.0, 'then': 1.0, 'we': 8.0, 'a': 10.0, 'old': 1.0, 'place': 1.0, 'baby': 1.0, 'she': 7.0, 'hasn': 1.0, 'only': 2.0, 'try': 1.0, 'are': 2.0, 'first': 1.0, 'eating': 1.0, 'us': 1.0, 'taking': 1.0, 'has': 5.0, 'tears': 1.0, 'anyone': 1.0, 'and': 6.0, 'reflux': 1.0, 'until': 1.0, 'that': 4.0, 'instruction': 1.0, 'been': 3.0, 'challenge': 1.0, 'loves': 1.0, 'doctor': 1.0, 'from': 2.0, 'decided': 2.0, 'get': 2.0, 'months': 1.0, 'difficulty': 1.0, 'huge': 1.0, 'told': 1.0, 'sweet': 1.0, 'cereal': 7.0, 'her': 8.0, 'package': 1.0, 'come': 1.0, 'girl': 1.0, 'current': 1.0, 'keeping': 1.0, 'spoon': 3.0, 'lifesaver': 1.0, 'needed': 1.0, 'top': 1.0, 'my': 1.0, 'for': 2.0, 't': 4.0, 'fit': 1.0, 'start': 1.0, 'die': 1.0, 'rice': 5.0, 'already': 1.0, 'it': 14.0, 'speak': 1.0, '4': 1.0, 'pretty': 1.0, 'feedings': 2.0, 'to': 13.0, 'as': 1.0, 'all': 2.0, 'i': 3.0, 'well': 1.0, 'hill': 1.0, 'had': 1.0, 'so': 1.0, 'make': 1.0, 'help': 1.0, 'instructions': 1.0, 'ending': 1.0, 'doing': 1.0, 'the': 18.0, 'of': 5.0, 'just': 1.0, 'screaming': 1.0, 'wasn': 1.0, 'enough': 1.0, 'keep': 1.0, '1': 1.0, 'since': 1.0, 'is': 6.0, 'at': 2.0, 'recommend': 1.0, 'full': 1.0, 'highly': 1.0, 'bottle': 4.0, 'few': 1.0, 'this': 4.0, 'feeding': 2.0, 'vacuum': 1.0, 'was': 1.0, 'explanatory': 1.0, 'with': 4.0, 'out': 1.0, 'throwing': 1.0, 'over': 1.0, 'air': 2.0, 'now': 1.0, 'times': 1.0, 'thicken': 1.0, 'even': 1.0, 'spitting': 1.0, 'refuses': 1.0, 'have': 5.0, 'some': 2.0}
Word element => {'ie': 1.0, 'like': 1.0, 'i': 1.0, 'not': 1.0, 'was': 2.0, 'can': 1.0, 'marvin': 1.0, 'and': 1.0, 'purchase': 1.0, 'for': 1.0, 'in': 1.0, 'starving': 1.0, 'years': 1.0, 'our': 2.0, 'be': 1.0, 'product': 1.0, 'bought': 1.0, 'it': 1.0, 'this': 2.0, 'area': 1.0, 'a': 1.0, 'saver': 1.0, 'life': 1.0, 'back': 1.0, 'twenty': 1.0, 'ago': 1.0}
Word element => {'use': 1.0, 'ready': 1.0, 'bag': 1.0, 'just': 1.0, 'easy': 1.0, 'at': 1.0, 'some': 1.0, 'while': 1.0, 'or': 1.0, 'car': 1.0, 'in': 2.0, 'saver': 1.0, 'life': 1.0, 'shopping': 1.0, 'they': 2.0, 'with': 1.0, 'pack': 1.0, 'have': 1.0, 'them': 1.0, 'clean': 1.0, 'run': 1.0, 'are': 5.0, 'my': 1.0, 'a': 2.0, 'point': 1.0, 'you': 3.0, 'used': 1.0, 'diaper': 1.0, 'the': 3.0, 'these': 2.0, 'great': 1.0, 'when': 1.0, 'daughter': 1.0, 'year': 1.0, 'from': 1.0, 'any': 1.0, 'baby': 1.0, 'about': 1.0, '5': 1.0, 'on': 1.0, 'months': 1.0, 'old': 2.0, 'to': 3.0, 'done': 1.0, 'getting': 1.0, 'and': 2.0, '1': 1.0}
Word element => {'needed': 1.0, 'bib': 1.0, 'out': 1.0, 'when': 1.0, 'contraption': 1.0, 'amazed': 1.0, 'especially': 1.0, 'and': 1.0, 'himself': 1.0, 'ready': 1.0, 's': 1.0, 'bottle': 1.0, 'own': 1.0, 'his': 1.0, 'hold': 1.0, 'can': 1.0, 'baby': 2.0, 'feeder': 1.0, 'because': 1.0, 'at': 1.0, 'neat': 1.0, 'no': 2.0, 'once': 1.0, 'so': 1.0, 'throws': 1.0, 'for': 1.0, 'eating': 1.0, 'he': 2.0, 'it': 3.0, 'this': 2.0, 'stop': 1.0, 'saves': 1.0, 'great': 1.0, 'mess': 1.0, 'unless': 1.0, 'your': 2.0, 'time': 1.0, 'people': 1.0, 'is': 3.0, 'feeds': 1.0}
Word element => {'girl': 1.0, 'who': 1.0, 'them': 1.0, 'for': 1.0, 'love': 1.0, 'sassy': 1.0, 'feeders': 1.0, 'are': 1.0, 'my': 2.0, 'feeding': 1.0, 'bottle': 1.0, 'i': 2.0, 'is': 2.0, 'great': 1.0, 'the': 2.0, '2': 1.0, 'it': 1.0, 'eating': 1.0, 'with': 2.0, 'say': 1.0, 'its': 1.0, 'to': 2.0, 'problems': 3.0, 'best': 1.0, 'daughter': 1.0, 'sensory': 1.0, 'babies': 1.0, 'have': 2.0, 'all': 1.0, 'able': 1.0, 'her': 1.0, 'and': 1.0, 'stage': 1.0, 'no': 1.0, 'helps': 1.0, 'baby': 2.0, 'eat': 1.0, 'food': 1.0}
Word element => {'you': 1.0, 'formula': 1.0, 'than': 1.0, 'other': 1.0, 'man': 1.0, 'little': 1.0, 'knowing': 1.0, 'ease': 1.0, 'at': 1.0, 'wanted': 1.0, 'to': 4.0, 'now': 1.0, 'thank': 1.0, 'tummy': 1.0, 'feeder': 1.0, 'it': 3.0, 'eating': 1.0, 'cereal': 3.0, 'he': 2.0, 'this': 1.0, 'him': 4.0, 'is': 1.0, 'more': 2.0, 'i': 2.0, 'from': 2.0, 'blame': 1.0, 'spoon': 4.0, 'my': 2.0, 'and': 4.0, 'much': 1.0, 'do': 1.0, 'get': 1.0, 'son': 1.0, 'still': 1.0, 'rice': 1.0, 'nothing': 1.0, 'wasn': 1.0, 'don': 1.0, 'baby': 2.0, 't': 3.0, 'a': 3.0, 'liquid': 1.0, 'with': 3.0, 'frustrating': 1.0, 'his': 1.0, 'awesome': 1.0, 'in': 2.0, 'that': 1.0, 'loves': 1.0, 'mommy': 1.0, 'so': 2.0, 'was': 1.0, 'doesn': 1.0, 'getting': 1.0, 'satisfying': 1.0, 'food': 2.0, 'but': 1.0, 'can': 1.0, 'frustrate': 1.0, 'waiting': 1.0, 'bowl': 1.0, 'on': 1.0, 'feel': 1.0}
Word element => {'product': 1.0, 'great': 1.0, 't': 1.0, 'isn': 1.0, 'messy': 1.0, 'feeding': 1.0, 'spoon': 1.0, 'than': 1.0, 'daughter': 1.0, 'for': 1.0, 'grand': 1.0, 'new': 1.0, 'and': 2.0, 'my': 1.0, 'item': 1.0, 'purchased': 1.0, 'to': 1.0, 'much': 1.0, 'way': 1.0, 'i': 1.0, 'is': 1.0, 'this': 1.0, 'it': 1.0, 'cereal': 1.0, 'a': 2.0, 'fruits': 1.0, 'perfect': 1.0, 'feed': 1.0, 'etc': 1.0, 'baby': 1.0, 'easier': 1.0}
Word element => {'can': 1.0, 'you': 1.0, 'if': 1.0, 'latex': 1.0, 'recommend': 1.0, 'feeding': 1.0, 'regular': 1.0, 'even': 1.0, 'bad': 1.0, 'smelling': 1.0, 'boiling': 1.0, 'started': 1.0, 'cleaning': 1.0, 'them': 2.0, 'purchased': 1.0, 'my': 2.0, 'ago': 1.0, 'highly': 1.0, 'years': 1.0, 'had': 2.0, 'daughter': 1.0, 'which': 1.0, 'i': 2.0, 'the': 1.0, 'these': 1.0, 'deteriorating': 1.0, 'nipples': 1.0, 'for': 1.0, 'love': 1.0, 'and': 3.0, 'son': 1.0, 'very': 1.0, 'convenient': 1.0, 'so': 1.0, 'after': 1.0, 'however': 1.0, 'immediately': 1.0, 'set': 1.0, 'with': 2.0, 'this': 1.0, '4': 1.0, 'silicone': 1.0}
Word element => {'on': 1.0, 'of': 2.0, 'if': 1.0, 'this': 2.0, 'nipple': 1.0, 'the': 3.0, 't': 1.0, 'other': 1.0, 'stars': 1.0, 'give': 1.0, 'didn': 1.0, '5': 1.0, 'than': 1.0, 'part': 1.0, 'i': 1.0, 'spot': 1.0, 'feeder': 1.0, 'easily': 1.0, 'that': 1.0, 'so': 1.0, 'd': 1.0, 'stain': 1.0, 'function': 1.0, 'product': 1.0, 'is': 1.0}
Word element => {'fit': 1.0, 'no': 1.0, 'like': 1.0, 'after': 1.0, 'together': 1.0, 'my': 1.0, 'made': 1.0, 'days': 1.0, 'pieces': 1.0, 'in': 1.0, 'back': 1.0, 'niece': 1.0, 'buy': 1.0, 'i': 1.0, 'one': 2.0, 'from': 1.0, 'stay': 1.0, 'who': 1.0, 'warped': 1.0, 'the': 2.0, 'these': 1.0, 'remember': 1.0, 'cheaply': 1.0, 'longer': 1.0, 'is': 2.0, 'was': 2.0, 'had': 1.0, 'now': 1.0, 'when': 1.0, '28': 1.0, 'it': 2.0, 'this': 1.0, 'do': 1.0, 'and': 2.0, 'did': 1.0, 'washing': 1.0, 'not': 2.0}
Word element => {'fine': 1.0, 'is': 1.0, 'foods': 1.0, 'at': 1.0, 'solid': 1.0, 'food': 1.0, 'eat': 1.0, 'learning': 1.0, 'the': 1.0, 'great': 1.0, 'to': 3.0, 'product': 1.0, 'stage': 1.0, 'and': 2.0, 'very': 1.0, 'as': 1.0, 'babies': 2.0, 'promised': 1.0, 'pureed': 1.0, 'convenient': 1.0, 'out': 1.0, 'price': 1.0, 'about': 1.0, 'liked': 1.0, 'parents': 1.0, 'earliest': 1.0, 'when': 2.0, 'too': 1.0, 'would': 1.0, 'easy': 1.0, 'recommend': 1.0, 'use': 1.0, 'delivered': 1.0, 'purchase': 1.0, 'it': 1.0, 'with': 1.0}
Word element => {'child': 1.0, 'my': 1.0, 'around': 1.0, 'was': 1.0, 'when': 1.0, 'i': 2.0, 'well': 1.0, 'is': 1.0, 'had': 1.0, 'wish': 1.0, 'awesome': 1.0, 'and': 1.0, 'first': 1.0, 'product': 1.0, 'an': 1.0, 'to': 1.0, 'it': 1.0, 'works': 1.0, 'easy': 1.0, 'use': 1.0, 'this': 1.0, 'extremely': 1.0}
Word element => {'when': 1.0, 'used': 1.0, 'we': 2.0, 'daughter': 1.0, 'and': 1.0, 'clean': 1.0, 'my': 1.0, 'the': 2.0, 'stay': 1.0, 'cap': 1.0, 'on': 2.0, 'loves': 1.0, 't': 1.0, 'go': 1.0, 'them': 2.0, 'want': 1.0, 'to': 2.0, 'didn': 1.0, 'easy': 1.0, 'it': 1.0, 'was': 2.0}
Word element => {'2pk': 1.0, 'nursers': 1.0, 'day': 1.0, 'than': 1.0, 'expected': 1.0, 'would': 1.0, 'green': 1.0, 'i': 2.0, 'all': 1.0, 'busy': 1.0, 'that': 1.0, '4oz': 1.0, 'started': 1.0, 'sooner': 1.0, 'recommend': 1.0, 'arrived': 1.0, 'product': 1.0, 'to': 1.0, 'it': 1.0, 'this': 1.0, 'item': 1.0, 'sassy': 1.0, 'using': 1.0, 'parents': 1.0, 'highly': 1.0, 'baby': 1.0, 'food': 1.0}
Word element => {'stroller': 1.0, '3': 1.0, 'the': 1.0, 'well': 1.0, 'work': 1.0, 'happy': 1.0, 'cameleon': 1.0, 'to': 1.0, 'these': 1.0, 'snug': 1.0, 'found': 1.0, 'have': 1.0, 'comfy': 1.0, 'for': 1.0, 'which': 1.0, 'washable': 1.0, 'cute': 1.0, 'bugaboo': 1.0, 'so': 1.0, 'sheets': 1.0}
Word element => {'future': 1.0, 'again': 1.0, 'bassinet': 2.0, 'then': 1.0, 'my': 4.0, 'in': 1.0, 'durable': 1.0, 'for': 3.0, 'beautiful': 1.0, '1967': 1.0, 'fit': 1.0, 'grandson': 2.0, 'just': 1.0, 'hopefully': 1.0, 'old': 1.0, 'be': 1.0, 'sheet': 2.0, 'is': 1.0, 'son': 1.0, 'and': 2.0, 'was': 1.0, 'used': 1.0, 'great': 1.0, 'the': 3.0, 'upgraded': 2.0, 'will': 1.0}
Word element => {'looking': 1.0, 'who': 1.0, 'or': 1.0, 'just': 1.0, 'infant': 1.0, 'my': 1.0, 'cloth': 1.0, 'i': 3.0, 'child': 1.0, 'wash': 3.0, 'anyone': 2.0, 'rough': 1.0, 'after': 1.0, 'sponge': 4.0, 'so': 1.0, 'an': 1.0, 'love': 1.0, 'for': 2.0, 'one': 1.0, 'with': 2.0, 'we': 2.0, 'a': 4.0, 'to': 2.0, 'our': 1.0, 'were': 1.0, 'little': 1.0, 'when': 2.0, 'son': 1.0, 'gets': 1.0, 'felt': 1.0, 'is': 2.0, 'using': 2.0, 'like': 1.0, 'the': 3.0, 'great': 1.0, 'soap': 1.0, 'size': 1.0, 'and': 2.0, 'perfect': 1.0, 'this': 3.0, 'soft': 2.0, 'young': 1.0, 'makes': 1.0, 'switched': 1.0, 'lather': 1.0, 'his': 1.0, 'would': 1.0, 'was': 1.0, 'recommend': 1.0, 'clothes': 1.0, 'baby': 1.0}
Word element => {'for': 1.0, 'ever': 1.0, 'of': 1.0, 'brand': 1.0, 'll': 1.0, 'be': 1.0, 'will': 1.0, 'out': 1.0, 'the': 2.0, 'my': 2.0, 'buy': 1.0, 'i': 3.0, 'decided': 1.0, 'perfect': 1.0, 'soft': 1.0, 'recommended': 1.0, 'when': 1.0, 'm': 1.0, 'try': 1.0, 'on': 1.0, 'natural': 2.0, 'friend': 1.0, 'awesome': 1.0, 'baby': 2.0, 'sponge': 2.0, 'so': 1.0, 'well': 1.0, 'a': 1.0, 'now': 1.0, 'to': 1.0, 'only': 1.0, 'with': 1.0, 'path': 1.0, 'this': 2.0, 'it': 1.0}
Word element => {'soft': 1.0, 'wonderfully': 1.0, 'in': 1.0, 'for': 2.0, 'a': 2.0, 'harsh': 1.0, 'kind': 1.0, 'my': 1.0, 'felt': 1.0, 'bought': 1.0, 'spa': 1.0, 'baby': 1.0, 'skin': 1.0, 'it': 4.0, 'i': 3.0, 'of': 1.0, 'bathroom': 1.0, 'slightly': 1.0, 's': 1.0, 'thought': 1.0, 'but': 1.0, 'used': 1.0, 'and': 1.0, 'look': 1.0, 'was': 1.0}
Word element => {}
Word element => {'after': 1.0, 'out': 1.0, 'one': 1.0, 'i': 1.0, 'month': 1.0, 'it': 2.0, 'love': 1.0, 'that': 1.0, 'to': 2.0, 'use': 1.0, 'throw': 1.0, 'until': 1.0, 'so': 1.0, 'fell': 1.0, 'used': 1.0, 'apart': 1.0, 'for': 1.0, 'had': 1.0}
Word element => {'hygiene': 1.0, 'months': 1.0, 'anyway': 1.0, 'replacing': 1.0, 'wouldn': 1.0, 'an': 1.0, 'have': 2.0, 'my': 1.0, 'ready': 1.0, 'but': 1.0, 'now': 1.0, 'weeks': 1.0, 'will': 1.0, 'pulling': 1.0, 'days': 1.0, 'so': 1.0, 'update': 1.0, 'couple': 2.0, 'i': 3.0, 'it': 6.0, 'soft': 1.0, 'this': 2.0, 'mind': 1.0, 'with': 1.0, 'using': 1.0, 'love': 1.0, 'for': 2.0, 'yet': 1.0, 't': 1.0, 's': 2.0, 'a': 2.0, 'baby': 3.0, 'few': 1.0, 'and': 4.0, 'play': 1.0, 'other': 1.0, 'disintegrated': 1.0, 'in': 3.0, 'the': 2.0, 'tub': 1.0, 'likes': 1.0, 'has': 2.0, 'been': 2.0, 'next': 1.0, 'complained': 1.0, 'tearing': 1.0, 'at': 1.0, 'not': 1.0, 'to': 1.0, 'as': 1.0, 'reviewers': 1.0, 'if': 1.0, 'happens': 1.0, 'post': 1.0, 'sponge': 1.0, 'of': 1.0}
Word element => {'stars': 1.0, '3': 1.0, 'break': 1.0, 'are': 1.0, 'sponges': 1.0, 'sure': 1.0, 'm': 1.0, 'i': 1.0, 'but': 1.0, 'breaking': 1.0, 'some': 1.0, 'quite': 1.0, 'last': 1.0, 'in': 1.0, 'apart': 1.0, 'before': 1.0, 'used': 1.0, 'bad': 1.0, 'not': 2.0, 'to': 1.0, 'was': 1.0, 'together': 1.0, 'is': 1.0, 'worked': 1.0, 'as': 1.0, 'so': 1.0, 'sponge': 2.0, 'it': 4.0, 'this': 1.0, 'a': 1.0, 'well': 1.0, 'still': 1.0, 'general': 1.0, 'persay': 1.0, 'while': 2.0, 'being': 1.0, 'time': 1.0, 'recently': 1.0, 'though': 1.0, 'supposed': 1.0, 'fell': 1.0, 'pretty': 1.0, 'did': 1.0}
Word element => {'little': 1.0, 'perfect': 1.0, 'becomes': 1.0, 'wet': 1.0, 'when': 1.0, 'i': 1.0, 'for': 2.0, 'baby': 2.0, 'and': 3.0, 'very': 1.0, 'soft': 2.0, 'product': 1.0, 'super': 2.0, 'once': 1.0, 'hard': 1.0, 'it': 4.0, 'first': 1.0, 'this': 1.0, 'a': 1.0, 'pulled': 1.0, 'stiff': 1.0, 'out': 1.0, 'great': 1.0, 'the': 1.0, 'is': 1.0, 'felt': 1.0, 'package': 1.0, 'however': 1.0, 'you': 1.0}
Word element => {'months': 1.0, 'couple': 1.0, 'they': 1.0, 'as': 1.0, 'these': 1.0, 'gets': 1.0, 'when': 1.0, 'us': 1.0, 'wet': 1.0, 'soft': 1.0, 'for': 1.0, 'adults': 1.0, 'is': 1.0, 'want': 1.0, 'a': 2.0, 'out': 1.0, 'them': 1.0, 'it': 1.0, 'after': 1.0, 'wear': 1.0, 'so': 2.0, 'wash': 1.0, 'much': 1.0, 'than': 1.0, 'i': 1.0, 'cloth': 1.0, 'we': 1.0, 'better': 1.0, 'keep': 1.0, 'buying': 1.0}
Word element => {'to': 1.0, 'enjoy': 1.0, 'seems': 1.0, 'my': 1.0, 'but': 1.0, 'a': 1.0, 've': 1.0, 'cheaper': 1.0, 'i': 2.0, 'it': 4.0, 's': 2.0, 'very': 1.0, 'think': 1.0, 'recommend': 1.0, 'could': 1.0, 'for': 1.0, 'skin': 1.0, 'little': 1.0, 'been': 1.0, 'baby': 2.0, 'delicate': 1.0, 'soft': 1.0}
Word element => {'gonna': 1.0, 're': 1.0, 'what': 1.0, 'know': 1.0, 'never': 1.0, 'so': 1.0, 'different': 1.0, 'are': 1.0, 'they': 1.0, 'a': 2.0, 'i': 5.0, 'old': 1.0, 'six': 1.0, 'tried': 1.0, 'apart': 2.0, 'tore': 1.0, 'baby': 1.0, '2': 1.0, 'the': 1.0, 'these': 1.0, 'another': 1.0, 'my': 1.0, 'fell': 1.0, 'it': 3.0, 'first': 1.0, 'really': 1.0, 'amazon': 1.0, 'natural': 1.0, 'at': 1.0, 'was': 2.0, 'hoping': 1.0, 'this': 1.0, 'soft': 3.0, 'and': 3.0, 'before': 1.0, 'market': 1.0, 'get': 2.0, 'year': 1.0, 'from': 2.0, 'day': 1.0, 'cheap': 1.0, 'for': 1.0, 'bought': 1.0, 'months': 1.0, 'one': 3.0, 'all': 1.0, 'least': 1.0, 'world': 1.0, 'lasted': 1.0, 'buddy': 1.0, 'sponge': 2.0, 'of': 1.0, 'think': 1.0, 'bath': 1.0, 'not': 1.0, 'you': 2.0, 'am': 1.0, 'ordering': 1.0, 'that': 1.0}
Word element => {'sold': 1.0, 'should': 1.0, 'be': 1.0, 'product': 1.0, 'baby': 1.0, 'a': 1.0, 'is': 2.0, 'as': 1.0, 'am': 1.0, 'of': 1.0, 'once': 1.0, 'the': 2.0, 'used': 1.0, 'sponge': 2.0, 'saw': 1.0, 'in': 2.0, 'first': 1.0, 'this': 2.0, 'it': 3.0, 'were': 1.0, 'found': 1.0, 'bugs': 2.0, 'i': 5.0, 'when': 1.0, 'not': 2.0, 'was': 1.0, 'speachless': 1.0, 'visible': 1.0, 'time': 1.0, 'they': 1.0, 'dry': 1.0, 'dangerous': 1.0, 'but': 1.0, 'and': 1.0, 'couple': 1.0, 'get': 1.0, 'wet': 1.0}
Word element => {'treat': 1.0, 'delicate': 1.0, 'quite': 1.0, 'last': 1.0, 'had': 1.0, 'have': 1.0, 'skin': 1.0, 'first': 1.0, 'it': 1.0, 'on': 1.0, 'great': 1.0, 'comfortable': 1.0, 'for': 1.0, 'love': 1.0, 'wet': 1.0, 'fragile': 1.0, 'only': 1.0, 'try': 1.0, 'this': 1.0, 'soft': 3.0, 'i': 1.0, 'issue': 1.0, 'they': 4.0, 'such': 1.0, 'some': 1.0, 'these': 1.0, 'the': 3.0, 'and': 6.0, 'too': 1.0, 'washes': 1.0, 'one': 1.0, 'decided': 1.0, 'again': 1.0, 'my': 2.0, 'dozen': 1.0, 'baby': 2.0, 'them': 2.0, 'loves': 1.0, 'that': 1.0, 'since': 1.0, 'time': 1.0, 'so': 1.0, 'once': 1.0, 'sponge': 2.0, 'sponges': 2.0, 'after': 1.0, 's': 1.0, 'a': 4.0, 'we': 2.0, 'treated': 1.0, 'like': 1.0, 'are': 6.0, 'normal': 1.0, 'as': 1.0, 'to': 1.0, 'very': 2.0, 'little': 1.0, 'ripped': 1.0, 'same': 1.0, 'apart': 1.0}
Word element => {'pricey': 1.0, 'bit': 1.0, 'be': 1.0, '4': 1.0, '3': 1.0, 'every': 1.0, 'one': 1.0, 'new': 1.0, 'a': 2.0, 'have': 1.0, 'face': 1.0, 'washed': 1.0, 'get': 1.0, 'do': 1.0, 'getting': 1.0, 'may': 1.0, 'she': 1.0, 'baby': 1.0, 'hates': 1.0, 'so': 1.0, 'sponge': 2.0, 'you': 1.0, 'loves': 1.0, 'my': 1.0, 'anything': 1.0, 'is': 1.0, 'disposable': 1.0, 'weeks': 1.0, 'but': 1.0, 'wash': 1.0, 'cloth': 1.0, 'it': 1.0, 'this': 2.0, 'with': 2.0, 'only': 1.0, 'to': 1.0, 'towels': 1.0, 'her': 1.0, 'etc': 1.0, 'okay': 1.0}
Word element => {'smaller': 1.0, 'even': 1.0, 'gets': 1.0, 'tooooooo': 1.0, 's': 1.0, 'way': 1.0, 'all': 1.0, 'itself': 1.0, 'so': 1.0, 'small': 1.0, 'sponge': 1.0, 'but': 1.0, 'and': 1.0, 'shipping': 1.0, 'out': 1.0, 'fast': 1.0, 'becuz': 1.0, 'store': 1.0, 'to': 2.0, 'in': 1.0, 'bought': 2.0, 'one': 1.0, 'i': 3.0, 'specified': 1.0, 'same': 2.0, 'the': 5.0, 'is': 4.0, 'thought': 1.0, 'package': 1.0, 'not': 1.0, 'just': 1.0, 'good': 1.0, 'almost': 1.0, 'use': 1.0, 'wet': 1.0, 'try': 1.0, 'convenient': 1.0, 'since': 1.0, 'there': 1.0, 'at': 1.0, 'once': 1.0, 'no': 1.0, 'size': 1.0, 'this': 1.0, 'looked': 1.0, 'it': 4.0}
Word element => {'apart': 1.0, 'pieces': 1.0, 'seashell': 1.0, 'have': 1.0, 'hospital': 1.0, 'some': 1.0, 'does': 1.0, 'in': 1.0, 'said': 1.0, 'is': 1.0, 'baby': 1.0, 'of': 1.0, 'sponge': 2.0, 'and': 2.0, 'me': 1.0, 'the': 2.0, 'given': 1.0, 'faster': 1.0, 'extremely': 1.0, 's': 1.0, 'well': 1.0, 'this': 2.0, 'soft': 1.0, 'lathers': 1.0, 'using': 2.0, 'which': 2.0, 'they': 1.0, 'reviewer': 1.0, 'another': 1.0, 'my': 1.0, 'easy': 1.0, 're': 1.0, 'enough': 1.0, 'as': 2.0, 'to': 2.0, 'was': 1.0, 'had': 1.0, 'great': 1.0, 'feel': 1.0, 'fell': 1.0, 'it': 3.0, 'remove': 1.0, 'i': 2.0, 'but': 1.0, 'can': 1.0, 'bathe': 1.0, 'much': 1.0, 'opposed': 1.0, 'previously': 1.0}
Word element => {'is': 1.0, 'him': 1.0, 'scrub': 1.0, 'can': 1.0, 'breeze': 1.0, 'quicker': 1.0, 'have': 1.0, 'down': 1.0, 'before': 1.0, 'using': 1.0, 's': 1.0, 'soap': 2.0, 'through': 1.0, 'stressful': 1.0, 'of': 2.0, 'less': 1.0, 'fraction': 1.0, 'going': 1.0, 'bottles': 1.0, '1': 1.0, 'and': 5.0, 'very': 2.0, 'baby': 2.0, 'was': 2.0, 'makes': 1.0, 'time': 2.0, 'they': 1.0, 'aren': 1.0, 'the': 2.0, 't': 1.0, 'it': 1.0, 'this': 1.0, 'i': 5.0, 'cheap': 1.0, 'gentle': 1.0, 'quickly': 1.0, 'creates': 1.0, '10th': 1.0, 'so': 1.0, 'sponge': 1.0, 'a': 4.0, 'nice': 1.0, 'active': 1.0, 'lather': 1.0, 'bath': 2.0, 'use': 1.0}
Word element => {'sturdy': 1.0, 'and': 1.0, 'well': 1.0, 'works': 1.0, 'it': 1.0, 'hoped': 1.0, 'i': 1.0, 'old': 1.0, 'but': 1.0, 'perfect': 1.0, 'than': 1.0, 'my': 1.0, 'is': 1.0, '2': 1.0, 'for': 1.0, 'year': 1.0, 'little': 1.0, 'its': 1.0, 'a': 1.0, 'smaller': 1.0}
Word element => {'happy': 1.0, 're': 1.0, 'baths': 1.0, 'of': 1.0, 'good': 1.0, 'holds': 1.0, 'and': 2.0, 'size': 1.0, 'did': 1.0, 'pretty': 1.0, 'our': 1.0, 'lot': 1.0, 'we': 3.0, 'a': 2.0, 'really': 1.0, 'is': 1.0, 'on': 1.0, 'sponge': 2.0, 'water': 1.0, 'use': 1.0, 'purchased': 1.0, 'to': 1.0, 'newborn': 1.0, 'this': 1.0, 'first': 1.0, 'it': 1.0, 'for': 1.0, 'her': 1.0}
Word element => {'down': 1.0, 'meaning': 1.0, 'tummy': 1.0, 'baby': 1.0, 't': 1.0, 'fall': 1.0, 'because': 1.0, 'also': 1.0, 'chair': 1.0, 'sturdy': 1.0, 'a': 4.0, 'horizontally': 1.0, 'not': 2.0, 'screw': 1.0, 'buckle': 1.0, 'holes': 1.0, 'on': 1.0, 'adjustablethis': 1.0, 'am': 1.0, 'in': 1.0, 'seat': 2.0, 'pads': 1.0, 'room': 1.0, 'attachment': 1.0, 'summary': 1.0, 'allows': 1.0, 'this': 2.0, 'functional': 1.0, 'collect': 1.0, 'cover': 2.0, 'to': 7.0, 'high': 1.0, 'my': 2.0, 'push': 1.0, 'you': 1.0, 'starts': 1.0, 'bleach': 1.0, 'here': 1.0, 'multiple': 1.0, 'single': 1.0, 'velcro': 1.0, 'highchair': 1.0, 'for': 2.0, 'attractive': 2.0, 'amazing': 1.0, 'apply': 1.0, 'really': 1.0, 'using': 1.0, 'but': 2.0, 'tray': 1.0, 'unless': 1.0, 'after': 1.0, 'can': 1.0, 'so': 1.0, 'is': 5.0, 'more': 2.0, 'pros': 1.0, 'stuck': 1.0, 'and': 5.0, 'fold': 1.0, 'gets': 1.0, 'up': 1.0, 'easilytallcons': 1.0, 'year': 1.0, 'child': 1.0, 'wash': 1.0, 'strips': 1.0, 'underneath': 2.0, 'designlegs': 1.0, 'unusually': 1.0, 'drawbacks': 1.0, 'holestray': 1.0, 'big': 1.0, 'closer': 1.0, 'rot': 1.0, 'perhaps': 1.0, 'trapped': 1.0, 'padding': 2.0, 'messy': 1.0, 'food': 3.0, 'or': 2.0, 'putting': 1.0, 'i': 4.0, 's': 2.0, 'cleaner': 1.0, 'getting': 1.0, 'problem': 3.0, 'weekly': 1.0, 'exacerbated': 1.0, 'it': 2.0, 'think': 1.0, 'amounts': 1.0, 'one': 1.0, 'try': 1.0, 'the': 8.0, 'of': 1.0, 'have': 1.0, 'stylish': 2.0, 'started': 1.0, 'has': 1.0, 'them': 1.0, 'plastic': 1.0, 'bags': 1.0, 'significant': 1.0, 'smell': 1.0, 'help': 1.0, 'very': 1.0, 'prevent': 1.0, 'piece': 1.0, 'seems': 1.0, 'largely': 1.0, 'good': 1.0, 'eliminate': 1.0}
Word element => {'around': 1.0, 'move': 1.0, 'wipe': 1.0, 'easy': 1.0, 'that': 1.0, 'manoeuvre': 1.0, 'screw': 1.0, 'hard': 2.0, 'it': 2.0, 'with': 1.0, 'velcro': 2.0, 'way': 2.0, 'child': 2.0, 'clean': 2.0, 'bulky': 1.0, 'the': 5.0, 'holes': 1.0, 'second': 1.0, 'this': 2.0, 'found': 1.0, 'i': 4.0, 'used': 1.0, 'chair': 1.0, 'be': 1.0, 'bought': 1.0, 'all': 1.0, 'to': 4.0, 'price': 1.0, 'years': 1.0, 'lightweight': 1.0, 'my': 2.0, 'too': 2.0, 'and': 6.0, 'four': 1.0, 'food': 1.0, 'fraction': 1.0, 'got': 1.0, 'first': 1.0, 'heavy': 1.0, 'stuck': 1.0, 'in': 1.0, 'time': 1.0, 'especially': 1.0, 'scraps': 1.0, 'of': 2.0, 'would': 1.0, 'for': 3.0, 'highchair': 2.0, 'not': 1.0, 'was': 1.0, 'recommend': 1.0, 'out': 1.0, 'third': 1.0, 's': 1.0, 'a': 2.0, 'simple': 1.0}
Word element => {'house': 1.0, 'places': 1.0, 'other': 1.0, 'moving': 1.0, 'ease': 1.0, 'four': 1.0, 'had': 1.0, 'go': 1.0, 'could': 1.0, 'if': 1.0, 'different': 1.0, 'would': 1.0, 'than': 1.0, 'think': 1.0, 'better': 1.0, 'little': 1.0, 'designed': 1.0, 'be': 1.0, 'expected': 1.0, 'price': 1.0, 'for': 2.0, 'which': 1.0, 'like': 2.0, 'cannot': 1.0, 'pads': 2.0, 'get': 1.0, 'not': 5.0, 'on': 2.0, 'them': 3.0, 'out': 3.0, 'easy': 1.0, 'soak': 2.0, 'clean': 3.0, 'ate': 1.0, 'time': 2.0, 'food': 4.0, 'so': 5.0, 'can': 2.0, 'but': 3.0, '2': 2.0, 'wheels': 1.0, 'sitting': 1.0, 'hate': 1.0, 'son': 2.0, 'gets': 1.0, 'from': 1.0, 'while': 1.0, 'stick': 1.0, 'hard': 2.0, 'you': 4.0, 'complaints': 1.0, 'yes': 1.0, 'strap': 1.0, 'look': 1.0, 'sits': 1.0, 'is': 4.0, 'features': 1.0, 'and': 8.0, 'scrub': 1.0, '1': 1.0, 'padded': 1.0, 'there': 1.0, 'chair': 3.0, 'highchair': 1.0, 'love': 4.0, 'of': 5.0, 'the': 22.0, 'my': 3.0, 'wish': 1.0, 'trays': 1.0, 'wash': 1.0, 'seat': 5.0, 'in': 6.0, 'dishwasher': 1.0, 'under': 1.0, 'month': 1.0, 'i': 8.0, 'velcro': 3.0, 'where': 1.0, 'come': 2.0, 'puffs': 1.0, 'this': 4.0, 'with': 2.0, 'are': 1.0, 'first': 1.0, 'stuck': 1.0, 'back': 1.0, 'connects': 1.0, 'it': 11.0, 'already': 1.0, 'stained': 1.0, 'etc': 1.0, 'surface': 1.0, 'annoying': 1.0, 'falls': 1.0, 'have': 2.0, 'cheerios': 1.0, 'really': 3.0, 'appreciate': 1.0, 's': 3.0, 'a': 3.0, 'one': 1.0, 'try': 1.0, 'put': 1.0, 'do': 2.0, 'up': 1.0, 'water': 1.0, 'front': 1.0, 'buy': 1.0, 'hand': 1.0, 'straps': 1.0, 'sink': 1.0, 'easily': 1.0, 'that': 1.0, 'because': 1.0, 'also': 1.0, 'us': 1.0, 'mom': 1.0, 'extra': 1.0, 'waste': 1.0, 'cleaning': 1.0, 'to': 9.0, 'high': 3.0}
Word element => {'same': 1.0, 'about': 1.0, 'fantastic': 1.0, 'high': 1.0, 'flair': 1.0, 'boon': 1.0, 'being': 2.0, 'very': 3.0, 'in': 2.0, 'wheels': 1.0, 'use': 1.0, 'end': 2.0, 'honest': 1.0, 'tray': 2.0, 'transitions': 1.0, 'also': 2.0, 'us': 1.0, 'tip': 2.0, 'probably': 1.0, 'before': 2.0, 'back': 3.0, 'dimensions': 1.0, 'so': 5.0, 'open': 1.0, 'over': 3.0, 'practical': 1.0, 'magnetized': 1.0, 'isn': 1.0, 'don': 2.0, 'compact': 1.0, 'can': 3.0, 'is': 13.0, 'at': 1.0, 'up': 9.0, 'really': 2.0, 'pretty': 1.0, 'design': 1.0, 'beast': 1.0, 'months': 1.0, 'reviews': 2.0, 'we': 2.0, 'take': 1.0, 'the': 28.0, 'footprint': 2.0, 'granted': 1.0, 'will': 2.0, 'could': 1.0, 'am': 1.0, 'downside': 1.0, 'this': 6.0, 'tiny': 1.0, 'a': 12.0, 'confident': 1.0, 'adjustment': 1.0, 'll': 1.0, 'to': 9.0, 'right': 1.0, 'feeding': 1.0, 'table': 1.0, 'me': 1.0, 'tile': 1.0, 'he': 4.0, 'far': 2.0, 'fold': 1.0, 'love': 1.0, 'pulling': 1.0, 'eating': 1.0, 'good': 4.0, 'which': 2.0, 'got': 1.0, 'purchased': 1.0, 'must': 1.0, 'chair': 2.0, 'couple': 1.0, 'and': 8.0, '6': 1.0, 'arms': 1.0, 'son': 2.0, 'pros': 1.0, 'purchasing': 2.0, 'height': 1.0, 'from': 3.0, 'because': 1.0, 'combination': 1.0, 'that': 1.0, 'mess': 1.0, 'something': 1.0, 'i': 12.0, 'pointed': 1.0, 'well': 1.0, 'begins': 1.0, 'of': 5.0, 'old': 1.0, 'folded': 4.0, 'when': 6.0, 'away': 2.0, 'now': 1.0, 'have': 3.0, 'island': 1.0, 'each': 1.0, 'leg': 1.0, 'around': 1.0, 't': 7.0, 'himself': 1.0, 'likes': 1.0, 'see': 1.0, 'seems': 1.0, 'tilt': 1.0, 'stylish': 1.0, 'already': 1.0, 'purees': 1.0, 'thing': 3.0, 'aren': 2.0, 'they': 2.0, 'pregnant': 1.0, 'cleaning': 1.0, 'but': 4.0, 'some': 1.0, 'my': 2.0, 'issues': 1.0, 'like': 1.0, 'legs': 2.0, 'only': 1.0, 'cheap': 1.0, 'kitchen': 1.0, 'other': 1.0, 'funky': 1.0, 'reviewers': 1.0, '40': 1.0, 'tipping': 1.0, 'times': 1.0, 'out': 1.0, 'cons': 1.0, 'greatest': 1.0, 'his': 3.0, 'lot': 1.0, 'large': 1.0, 'snap': 1.0, 'strap': 1.0, 'seat': 1.0, 'push': 1.0, 'our': 1.0, 'get': 1.0, 'able': 1.0, 'often': 1.0, 'caught': 1.0, 'on': 5.0, 'long': 1.0, 'doesn': 1.0, 'm': 1.0, 's': 1.0, 'maneuver': 1.0, 'sides': 1.0, 'has': 1.0, 'gotten': 1.0, 'short': 1.0, 'time': 1.0, 've': 1.0, 'down': 1.0, 'been': 1.0, 'with': 3.0, 'using': 1.0, 'does': 2.0, 'looking': 1.0, 'be': 6.0, 'own': 1.0, 'it': 23.0, 'molded': 1.0, 'way': 2.0, 'door': 1.0, 'go': 1.0, 'sit': 2.0, 'whole': 1.0, 'as': 3.0, 'not': 2.0, 'food': 2.0, 'or': 2.0, 'look': 3.0, 'filled': 1.0, 'was': 1.0, 'fingers': 1.0, 'velcro': 1.0, 'couch': 1.0, 'porch': 1.0, 'lower': 1.0, 'convenient': 1.0, 'didn': 1.0, 'gets': 1.0, 'chairs': 1.0, 'know': 1.0, 'if': 1.0, 'ability': 1.0, 'tilting': 1.0, 'nice': 3.0, 'big': 1.0, 'enough': 1.0, 'bring': 1.0, 'extremely': 1.0, 'eat': 1.0, 'after': 2.0, 'though': 1.0, 'bit': 1.0, 'drawback': 1.0, 'would': 1.0, 'currently': 1.0, 'belly': 1.0, 'through': 1.0, 'fabric': 1.0, 'into': 1.0}
Word element => {'mz': 1.0, 'inglesina': 1.0, 'that': 1.0, 'believe': 1.0, 'baby': 1.0, 'your': 1.0, 'for': 1.0, 'seat': 1.0, 'purchase': 1.0, 'to': 1.0, 'think': 1.0, 'seeking': 1.0, 'than': 1.0, 'chair': 2.0, 'happy': 1.0, 'is': 2.0, 'are': 1.0, 'buy': 1.0, 'the': 4.0, 'great': 2.0, 'with': 1.0, 'it': 1.0, 'very': 1.0, 'option': 1.0, 'quality': 1.0, 'and': 1.0, 'we': 2.0, 'design': 1.0, 'of': 1.0, 'better': 1.0, 'if': 1.0, 'a': 2.0}
Word element => {'floor': 1.0, 'onto': 1.0, 'push': 1.0, 'way': 1.0, 's': 2.0, 'there': 1.0, 'of': 2.0, 'between': 1.0, 'no': 1.0, 'design': 1.0, 'lots': 1.0, 'baby': 3.0, 'the': 8.0, 'adjustable': 1.0, 'fall': 1.0, 'is': 4.0, 'tray': 3.0, 'eat': 1.0, 'want': 1.0, 'for': 2.0, 'in': 1.0, 'lap': 1.0, 'food': 1.0, 'distance': 1.0, 'not': 3.0, 'problem': 1.0, 'also': 1.0, 'will': 1.0, 'too': 1.0, 'and': 1.0, 'your': 2.0, 'to': 2.0, 'up': 1.0, 'over': 1.0, 'his': 2.0, 'very': 1.0, 'son': 2.0, 'i': 2.0, 'buy': 1.0, 'right': 1.0, 'plate': 2.0, 'against': 1.0, 'lip': 1.0, 'my': 2.0, 'easy': 1.0, 'poor': 1.0, 'stomach': 1.0, 'enough': 1.0, 'would': 1.0, 'again': 1.0, 'deep': 1.0}
Word element => {'so': 1.0, 'another': 1.0, 'get': 1.0, 'd': 1.0, 'inserts': 1.0, 'include': 1.0, 'between': 1.0, 'snap': 1.0, 'enough': 1.0, 'make': 1.0, 'stuff': 1.0, 'via': 1.0, 'u': 1.0, 'hold': 1.0, 'is': 3.0, 'handle': 1.0, 'angles': 1.0, 'temporary': 1.0, 'they': 1.0, 'metal': 1.0, 'back': 1.0, 'locking': 1.0, 'slip': 1.0, 'two': 1.0, 'some': 1.0, 'horizontal': 1.0, 'several': 1.0, 'tubing': 1.0, 'stand': 1.0, 'used': 1.0, 'set': 1.0, 'nestled': 1.0, 'round': 1.0, 'together': 1.0, 'stroller': 2.0, 'work': 1.0, 'of': 3.0, 'the': 14.0, 'bungee': 1.0, 'emt': 1.0, 'a': 5.0, 'we': 4.0, 'go': 1.0, 'stairs': 1.0, 'fit': 1.0, 't': 1.0, 'bar': 2.0, 'had': 1.0, 'gates': 1.0, 'uppababy': 2.0, 'board': 1.0, 'shaped': 1.0, '50': 1.0, 'and': 3.0, 'hooks': 2.0, 'hardware': 1.0, 'it': 3.0, 'with': 3.0, 'adjust': 1.0, 'hose': 1.0, 'vista': 2.0, 'attachment': 1.0, 'room': 1.0, 'in': 2.0, 'clamps': 1.0, 'everything': 1.0, 'else': 1.0, 'attach': 1.0, 'plastic': 1.0, 'generic': 1.0, 'about': 1.0, 'behind': 1.0, 'skate': 1.0, 'does': 1.0, 'detach': 1.0, 'from': 2.0, 'few': 1.0, 'hack': 1.0, 'seconds': 1.0, 'haven': 1.0, 'you': 3.0, 'what': 1.0, 'when': 1.0, 'or': 1.0, 'need': 1.0, 'pretty': 1.0, 'to': 8.0, 'bassinet': 2.0, 'for': 2.0, 'cord': 1.0, 'compare': 1.0, 'up': 3.0, 'out': 1.0, 'way': 1.0, 'backwards': 1.0, 'have': 1.0, 'proprietary': 1.0, 'there': 1.0, 'product': 1.0, 'uppa': 1.0, 'toddler': 1.0, 'tried': 1.0, 'baby': 1.0}
Word element => {'here': 1.0, 'quality': 1.0, 'for': 1.0, 'love': 1.0, 'in': 1.0, 'only': 1.0, 'this': 1.0, 'with': 1.0, 'after': 1.0, 'i': 3.0, 'old': 1.0, 'exactly': 1.0, 'it': 3.0, 'month': 2.0, 'cover': 2.0, 'way': 1.0, 'disappointed': 1.0, 'less': 1.0, 'washes': 1.0, 'm': 1.0, 'the': 5.0, 'more': 1.0, 'having': 1.0, 'tear': 1.0, 'than': 1.0, 'week': 1.0, 'will': 2.0, '6': 1.0, 'leak': 1.0, 'my': 1.0, 'fits': 1.0, 'laminated': 1.0, 'couple': 1.0, 'and': 1.0, 'material': 1.0, 'has': 1.0, 'a': 3.0, 'ago': 1.0, 'separated': 1.0, 'from': 1.0, 'very': 1.0, 'fabric': 1.0, 'but': 1.0, 'most': 1.0, 'then': 1.0, 'ordered': 1.0, 'likely': 1.0, 'start': 1.0, 'to': 1.0}
Word element => {'longer': 1.0, 'doesn': 1.0, 'longevity': 1.0, 'not': 1.0, 'functionality': 1.0, 'with': 1.0, 'satisfied': 1.0, 'm': 1.0, 'like': 1.0, 'gussets': 1.0, 'look': 3.0, 'started': 1.0, 'really': 1.0, 'brand': 1.0, 'along': 1.0, 'bummis': 1.0, 'time': 1.0, 'same': 1.0, 'the': 4.0, 'several': 1.0, 'design': 1.0, 'rumparooz': 1.0, 'other': 1.0, 'in': 1.0, 'wash': 1.0, 'waistband': 1.0, 'has': 1.0, 'well': 1.0, 'purchased': 1.0, 'leaks': 1.0, 'good': 1.0, 'preventing': 1.0, 'week': 1.0, 'far': 1.0, 'i': 5.0, 'this': 2.0, '3': 1.0, 'product': 1.0, 'stars': 1.0, 'comes': 1.0, 'and': 6.0, 'to': 3.0, 'as': 3.0, 'bestbottoms': 1.0, 'great': 1.0, 'but': 2.0, '2': 1.0, 'gave': 1.0, 'less': 1.0, 'when': 1.0, 'much': 1.0, 'only': 1.0, 'works': 1.0, 'it': 3.0, 'covers': 2.0, 'showing': 1.0, 'brands': 1.0, 'tear': 1.0, 'because': 2.0, 'than': 1.0, 'bought': 1.0, 'months': 1.0, 'going': 1.0, 't': 1.0, 'a': 3.0, 'ago': 1.0, 'cover': 1.0, 're': 2.0, 'of': 4.0, 'once': 1.0, 'they': 2.0, 'such': 1.0, 'these': 2.0, 'already': 1.0, 'at': 1.0, 'lot': 1.0, 'ragged': 1.0, 'signs': 1.0, 'compare': 1.0, 'their': 1.0, 'wear': 1.0}
Word element => {'clean': 1.0, 'look': 1.0, 'will': 1.0, 'even': 1.0, 'diapers': 1.0, 'your': 1.0, 'don': 1.0, 'want': 1.0, 'if': 1.0, 'secondly': 1.0, 'washing': 1.0, 'wears': 1.0, 'many': 1.0, 'so': 1.0, 'area': 1.0, 'with': 2.0, 'first': 1.0, 'velcro': 1.0, 'side': 1.0, 'material': 1.0, 'really': 1.0, 'very': 1.0, 'flaps': 1.0, 'enclosure': 1.0, 'issues': 1.0, 'in': 1.0, 'design': 1.0, 'fall': 1.0, 'this': 1.0, 'molded': 1.0, 'without': 1.0, 'the': 7.0, 'these': 1.0, 'such': 1.0, 'diaper': 3.0, 'way': 1.0, 'for': 1.0, 'product': 1.0, 'be': 2.0, 'to': 2.0, 'we': 1.0, 't': 3.0, 'a': 5.0, 'sturdy': 1.0, 'rash': 1.0, 'use': 2.0, 'couple': 1.0, 'long': 1.0, 'are': 3.0, 'unfortunately': 1.0, 'there': 2.0, 'gets': 1.0, 'under': 1.0, 'seem': 1.0, 'fold': 1.0, 'gives': 1.0, 'easily': 2.0, 'unless': 1.0, 'you': 4.0, 'when': 2.0, 'and': 2.0, 'tough': 1.0, 'reuse': 1.0, 'undo': 1.0, 'instantly': 1.0, 'stains': 1.0, 'that': 1.0, 'into': 1.0, 'means': 1.0, 'they': 2.0, 'dirty': 3.0, 'baby': 2.0, 'them': 2.0, 'hold': 1.0, 'which': 1.0, 'can': 3.0, 'screaming': 1.0, 'bleach': 1.0, 'squirming': 1.0}
Word element => {'superior': 1.0, 'over': 1.0, 'proven': 1.0, 'which': 1.0, 'ruining': 1.0, 'bummis': 1.0, 'each': 1.0, 'laundry': 1.0, 'went': 1.0, 'closed': 1.0, 'sure': 1.0, 'washing': 1.0, 'before': 1.0, 'checked': 1.0, 'double': 1.0, 'is': 1.0, 'completely': 1.0, 'tabs': 1.0, 'more': 1.0, 'far': 1.0, 'he': 2.0, 'plastic': 1.0, 'when': 3.0, 'times': 1.0, 'quite': 1.0, 'velcro': 3.0, 'than': 1.0, 'like': 1.0, 'much': 2.0, 'try': 1.0, 'they': 3.0, 'but': 2.0, 'waste': 1.0, 'brand': 2.0, 'time': 1.0, 'new': 1.0, 'would': 5.0, 'out': 3.0, 'to': 9.0, 'typically': 1.0, 'just': 3.0, 'few': 1.0, 'son': 2.0, 'for': 3.0, 'a': 3.0, 'further': 1.0, 't': 1.0, 'thirsties': 3.0, 'moving': 1.0, 'we': 2.0, 'go': 2.0, 'and': 5.0, 'flexibility': 1.0, 'these': 2.0, 'of': 3.0, 'the': 12.0, 'hanging': 1.0, 'money': 1.0, 'bought': 1.0, 'be': 3.0, 'as': 2.0, 'diaper': 2.0, 'offer': 1.0, 'wraps': 1.0, 'had': 3.0, 'feel': 2.0, 'wash': 1.0, 'use': 1.0, 'have': 2.0, 'don': 1.0, 'lived': 1.0, 'with': 2.0, 'because': 1.0, 'that': 2.0, 'thought': 1.0, 'ruined': 1.0, 'it': 3.0, 'was': 2.0, 'make': 1.0, 'anymore': 1.0, 'undone': 3.0, 'my': 2.0, 'me': 1.0, 'not': 1.0, 'diapers': 1.0, 'will': 1.0, 'could': 1.0, 'sticking': 2.0, 'even': 1.0, 'about': 1.0, 'stick': 1.0, 've': 1.0, 'several': 1.0, 'year': 1.0, 'around': 1.0, 'his': 4.0, 'decision': 1.0, 'throw': 1.0, 'were': 2.0, 'has': 1.0, 'always': 2.0, 'them': 3.0, 'due': 1.0, 'in': 3.0, 'get': 2.0, 'from': 1.0, 'while': 1.0, 'nap': 2.0, 'regret': 1.0, 'pajama': 1.0, 'half': 1.0, 'i': 8.0, 'well': 1.0, 'off': 1.0, 'pants': 1.0, 'come': 3.0, 'though': 1.0, 'during': 1.0, 'there': 1.0, 'all': 1.0, 'playing': 1.0, 'other': 2.0, 'also': 1.0}
Word element => {'fit': 1.0, 'well': 1.0, 'has': 1.0, 'lining': 1.0, 'the': 6.0, 'more': 1.0, 'these': 1.0, 'others': 1.0, 'much': 1.0, 'have': 2.0, 'wraps': 1.0, 'are': 1.0, 'mind': 1.0, 'defeats': 1.0, 'does': 1.0, 'very': 1.0, 'plastic': 1.0, 'seen': 1.0, 'but': 1.0, 'diapers': 1.0, 'pliable': 1.0, 'far': 2.0, 'interior': 1.0, 'price': 1.0, 'not': 1.0, 'material': 1.0, 'snap': 1.0, 'great': 1.0, 'feel': 1.0, 'use': 1.0, 'as': 9.0, 'to': 4.0, 'purpose': 1.0, 'it': 1.0, 'this': 1.0, 'like': 1.0, 'which': 1.0, 'compared': 1.0, 'in': 1.0, 'them': 1.0, 'softer': 1.0, 'my': 1.0, 'movement': 1.0, 'sort': 1.0, 'of': 2.0, 'cloth': 1.0, 'i': 1.0, 'a': 2.0, 'thirsties': 2.0, 'and': 1.0}
Word element => {'few': 1.0, 'a': 1.0, 'pick': 1.0, 'wait': 1.0, 'can': 1.0, 'this': 1.0, 'loved': 1.0, 'cover': 1.0, 'messes': 1.0, 'cute': 1.0, 'thirsties': 1.0, 'me': 1.0, 'easy': 1.0, 'fits': 1.0, 'up': 1.0, 'always': 1.0, 'stain': 1.0, 'easily': 1.0, 'doesn': 1.0, 'but': 1.0, 'put': 1.0, 'hold': 1.0, 'in': 1.0, 'to': 2.0, 'over': 1.0, 'won': 1.0, 'on': 1.0, 'more': 1.0, 't': 2.0, 'great': 1.0, 'super': 1.0}
Word element => {'bummis': 1.0, 'blame': 1.0, 'not': 1.0, 'nature': 1.0, 'laundry': 1.0, 'exception': 1.0, 'into': 1.0, 'fold': 1.0, 'still': 1.0, 'just': 2.0, 'i': 4.0, 'center': 1.0, 'waist': 1.0, 'all': 1.0, 'neutral': 1.0, 'gender': 1.0, 'leaks': 1.0, 'keep': 2.0, 'help': 2.0, 'easy': 1.0, 'downside': 1.0, 'to': 2.0, 'job': 1.0, 'place': 1.0, 'canada': 1.0, 'them': 4.0, 'ahead': 1.0, 'baby': 1.0, 'in': 8.0, 'helpful': 1.0, 'cover': 3.0, 'off': 1.0, 'fail': 1.0, 'bought': 1.0, 'one': 1.0, 'pinch': 1.0, 'larger': 1.0, 'a': 6.0, 'might': 1.0, 'tabs': 1.0, 'more': 1.0, 'is': 9.0, 'great': 2.0, 'went': 1.0, 'sizes': 1.0, 'really': 1.0, 'it': 4.0, 'covers': 1.0, 'this': 5.0, 'do': 3.0, 'only': 1.0, 'couple': 1.0, 'but': 2.0, 'print': 1.0, 'does': 1.0, 'that': 3.0, 'because': 1.0, 't': 2.0, 'fit': 1.0, 'stiff': 1.0, 'falling': 1.0, 'or': 2.0, 'crinkly': 1.0, 'the': 9.0, 'of': 2.0, 'meant': 1.0, 'you': 3.0, 'aren': 1.0, 'they': 1.0, 'gives': 1.0, 'and': 7.0, 'lose': 1.0, 'break': 1.0, 'velcro': 5.0, 'lay': 1.0, 'very': 1.0, 'prefolds': 1.0, 'made': 1.0, 'good': 1.0, 'so': 1.0, 'time': 1.0, 'gussets': 1.0, 'don': 1.0, 'have': 3.0, 'cutting': 1.0, 'use': 1.0, 'belly': 1.0, 'no': 1.0, 'will': 2.0, 'then': 1.0, 'take': 1.0, 'hundreds': 1.0, 'washed': 1.0, 'ordered': 1.0, 'eventually': 1.0, 'stickiness': 1.0, 'cute': 1.0, 'are': 1.0, 'contained': 1.0, 'way': 1.0, 'with': 1.0, 'onsie': 1.0, 'once': 1.0, 'these': 1.0}
Word element => {'were': 1.0, 'bigger': 1.0, 'again': 1.0, 'buy': 1.0, 'clean': 1.0, 'though': 1.0, 'first': 1.0, 'sort': 1.0, 'pail': 1.0, 'in': 3.0, 'has': 1.0, 'so': 1.0, 'wet': 1.0, 'from': 1.0, 'clothing': 1.0, 'still': 2.0, 'interior': 1.0, 'best': 1.0, 'need': 1.0, 'change': 1.0, 'work': 1.0, 'but': 1.0, 'babies': 1.0, 'have': 1.0, 'reason': 1.0, 'would': 1.0, 'following': 1.0, 'which': 1.0, 'like': 1.0, 'for': 4.0, 'stars': 1.0, 'absorb': 1.0, 'wipe': 1.0, 'baby': 2.0, 'capacity': 1.0, 'covers': 1.0, 'it': 8.0, 'this': 2.0, 'with': 3.0, 'really': 1.0, 'more': 1.0, 'preemie': 1.0, 'is': 3.0, 'cover': 4.0, 'market': 1.0, 'five': 1.0, 'edges': 1.0, 'size': 1.0, 'urine': 1.0, 'getting': 1.0, 'did': 1.0, '9': 1.0, 'cute': 1.0, 'not': 1.0, 'give': 1.0, 'up': 1.0, 'of': 4.0, '6': 1.0, 'suspect': 2.0, 'always': 1.0, 'defeats': 1.0, 'diaper': 4.0, 'fits': 1.0, 'my': 1.0, 'to': 4.0, 'i': 10.0, 'pounds': 2.0, 'prevents': 1.0, 'the': 12.0, 'prefolds': 2.0, 'purpose': 1.0, 'why': 1.0, 'use': 2.0, 'go': 1.0, 's': 1.0, 'a': 3.0, 'weight': 1.0, '16': 1.0, 'having': 1.0, 'usually': 1.0, 'sized': 1.0, 'tend': 1.0, 'some': 1.0, 'and': 1.0, 'tuck': 1.0, 'inside': 1.0}
Word element => {'leak': 1.0, 'single': 1.0, 'had': 1.0, 'to': 1.0, 'have': 2.0, 'underneath': 1.0, '14': 1.0, 'wish': 1.0, '5': 1.0, 'lbs': 1.0, 'premium': 1.0, 'only': 1.0, 'son': 1.0, 'prefold': 1.0, 'my': 1.0, 'gerber': 1.0, 'use': 1.0, 'more': 1.0, 'the': 1.0, 'these': 1.0, 'medium': 1.0, 'they': 1.0, 'yet': 1.0, 'love': 1.0, 'and': 2.0, 'perfectly': 1.0, 'weighs': 1.0, 'i': 4.0, 'bought': 2.0, 'size': 1.0, 'but': 1.0, 'work': 1.0, 'we': 1.0, 'a': 2.0}
Word element => {'however': 1.0, 'feel': 1.0, 'use': 1.0, 'already': 1.0, 'some': 1.0, 'bummis': 1.0, 'out': 1.0, 'super': 2.0, 'lining': 1.0, 'whisper': 2.0, 'covers': 1.0, 'it': 3.0, 'made': 1.0, 'shiny': 1.0, 'item': 1.0, 'plastic': 1.0, 'wrap': 2.0, 'the': 5.0, 'cute': 1.0, 'still': 1.0, 'i': 3.0, 'picture': 1.0, 'leaks': 1.0, 'had': 1.0, 'in': 1.0, 'like': 1.0, 'as': 4.0, 'and': 3.0, 'inside': 2.0, 'just': 2.0, 'not': 1.0, 'is': 1.0, 'more': 1.0, 'holds': 1.0, 'quite': 1.0, 'well': 1.0, 'has': 1.0, 'than': 1.0, 'was': 1.0, 'expecting': 1.0, 'a': 1.0, 's': 1.0, 'of': 2.0, 'material': 1.0, 'this': 1.0, 'soft': 1.0, 'often': 1.0, 'works': 1.0}
Word element => {'out': 1.0, 'laid': 1.0, 'when': 1.0, 'fast': 1.0, 'dries': 1.0, 'plastic': 1.0, 'since': 1.0, 'drier': 1.0, 'don': 1.0, 'wash': 1.0, 'in': 2.0, 'them': 1.0, 'clothes': 1.0, 'other': 1.0, 'catch': 1.0, 'style': 1.0, 'daughter': 1.0, 'i': 2.0, 'tried': 1.0, 'chubby': 1.0, 'is': 1.0, 'around': 1.0, 'put': 1.0, 'on': 1.0, 'make': 1.0, 'had': 1.0, 'to': 5.0, 'different': 1.0, 'legs': 1.0, 'attach': 1.0, 've': 1.0, 'my': 1.0, 'are': 1.0, 'well': 1.0, 'and': 3.0, 'they': 1.0, 'better': 1.0, 'bummis': 2.0, 't': 1.0, 's': 1.0, 'we': 1.0, 'a': 2.0, 'thirsties': 1.0, 'definitely': 1.0, 'choose': 1.0, 'from': 1.0, 'fit': 1.0, 'for': 1.0, 'wish': 1.0, 'this': 1.0, 'it': 3.0, 'velcro': 1.0, 'size': 1.0, 'but': 2.0, 'works': 1.0, 'really': 1.0, 'so': 1.0, 'remember': 1.0, 'use': 1.0, 'just': 1.0, 'easy': 1.0, 'sure': 1.0, 'the': 5.0, 'or': 1.0, 'inside': 2.0, 'll': 1.0}
Word element => {'size': 1.0, 'the': 1.0, 'need': 1.0, 'will': 1.0, 'satisfied': 1.0, 'very': 1.0, 'overall': 1.0, 'dry': 1.0, 'complaint': 1.0, 'water': 1.0, 'only': 1.0, 'it': 4.0, 'with': 1.0, 'washes': 1.0, 'seperate': 1.0, 'and': 6.0, 'leaks': 1.0, 'more': 1.0, 'is': 2.0, 'diaper': 1.0, 'when': 1.0, 'you': 2.0, 'soap': 1.0, 'next': 1.0, 'that': 1.0, 'enough': 1.0, 'cover': 1.0, 'one': 2.0, 'for': 2.0, 'of': 2.0, 'always': 1.0, 'are': 1.0, 'buy': 1.0, 'ever': 1.0, 'this': 2.0, 'full': 1.0, 'perfect': 1.0, 'in': 1.0, 'my': 3.0, 'fits': 1.0, 'them': 1.0, 'favorites': 1.0, 'minor': 1.0, 'not': 1.0, 'to': 2.0, 'soak': 1.0, 'i': 3.0, 'rinse': 2.0, 'diapers': 1.0, 'put': 1.0, 'but': 1.0, 'hardly': 1.0, 'a': 3.0, 'pail': 2.0, 'great': 1.0, 'until': 1.0, 'suppose': 1.0, 'have': 3.0, 'load': 1.0, 'then': 1.0}
Word element => {'other': 1.0, 'them': 1.0, 'able': 1.0, 'will': 1.0, 'use': 2.0, 'of': 2.0, 'one': 1.0, 'months': 1.0, 'after': 1.0, 'now': 1.0, 'tell': 1.0, 'well': 1.0, 'are': 1.0, 'some': 2.0, 'had': 1.0, 'girl': 1.0, 'same': 1.0, 'if': 1.0, 'be': 2.0, 'can': 2.0, 'but': 1.0, '7': 1.0, 'run': 1.0, 'seem': 1.0, 'they': 3.0, 'for': 1.0, 'fit': 2.0, 'by': 1.0, 'daughter': 1.0, 'when': 2.0, 'little': 1.0, 'very': 1.0, 'made': 1.0, 'less': 1.0, 'weight': 2.0, 'velcro': 1.0, 'the': 7.0, 't': 2.0, 'we': 5.0, 'those': 1.0, 'absolutely': 1.0, 'say': 1.0, 'more': 1.0, 'is': 2.0, 'holds': 1.0, 'on': 2.0, 'think': 1.0, 'spot': 1.0, 'until': 1.0, 'bummis': 1.0, 'have': 4.0, 'far': 1.0, 'loved': 1.0, 'brands': 1.0, 'than': 1.0, 'better': 1.0, 'brand': 2.0, 'up': 2.0, 'don': 1.0, 'i': 4.0, 'helpful': 1.0, 'though': 1.0, 'bigger': 1.0, 'since': 1.0, 'another': 1.0, 'my': 2.0, 'smaller': 1.0, 'really': 1.0, 'skinny': 1.0, 'length': 1.0, 'in': 2.0, 'would': 1.0, 've': 1.0, 'and': 3.0, 'long': 1.0, 'even': 1.0, 'her': 2.0, 'covers': 1.0, 'she': 1.0, 'moves': 1.0, 'as': 2.0, 'pudge': 1.0, 'all': 1.0, 'our': 2.0, 'to': 3.0, 'next': 2.0, 'probably': 1.0, 'size': 2.0, 'sizing': 2.0, 'kept': 1.0}
Word element => {'time': 1.0, 'gross': 1.0, 'getting': 1.0, 'they': 1.0, 'the': 1.0, 'work': 1.0, 'but': 1.0, 'we': 1.0, 'over': 1.0, 'personally': 1.0, 'up': 1.0, 'like': 1.0, 'ends': 1.0, 'don': 1.0, 't': 1.0, 'velcro': 1.0}
Word element => {'willing': 1.0, 'not': 1.0, 'cover': 1.0, 'smalls': 1.0, 'snaps': 1.0, 'would': 1.0, 'saw': 1.0, 'reached': 1.0, 'increase': 1.0, 'out': 1.0, 'was': 1.0, 'were': 2.0, 'use': 1.0, 'about': 1.0, 'say': 1.0, 'replaced': 1.0, 'always': 1.0, 'needing': 1.0, 'before': 2.0, 'mediums': 2.0, 'through': 1.0, 'it': 2.0, 'any': 1.0, 'total': 2.0, '6': 1.0, '4': 1.0, 'legs': 1.0, 'waist': 1.0, 'around': 1.0, 'if': 1.0, 'certainly': 1.0, 'still': 1.0, 'all': 1.0, 'handling': 1.0, 'moderately': 1.0, 'problem': 1.0, 'shot': 1.0, 'range': 3.0, 'll': 1.0, 'primarily': 1.0, 'substantially': 1.0, 'different': 1.0, 'snug': 1.0, 'is': 3.0, 't': 1.0, 'fit': 7.0, 'for': 8.0, 'or': 1.0, 'only': 2.0, 'preference': 1.0, 'this': 3.0, 'kids': 2.0, 'that': 4.0, 'substantial': 1.0, 'gussets': 1.0, 'far': 1.0, 'can': 1.0, 'so': 2.0, 'know': 1.0, 'bit': 1.0, 'am': 2.0, 'whisper': 1.0, 'getting': 1.0, 'more': 1.0, 'babies': 1.0, 'styles': 1.0, 'and': 8.0, 'years': 1.0, 'no': 2.0, 'two': 2.0, 'i': 10.0, 'action': 1.0, 'used': 2.0, 'have': 5.0, 'even': 1.0, 'cloth': 2.0, 'personal': 1.0, 'but': 3.0, 'sized': 1.0, 'stash': 2.0, 'able': 1.0, 'trade': 1.0, 'durability': 3.0, 'definitely': 1.0, 'unlike': 1.0, 'third': 1.0, 'my': 6.0, 'most': 1.0, 'exclusively': 1.0, 'reviews': 1.0, 'they': 5.0, 'pocket': 1.0, 'these': 4.0, 'of': 5.0, 'the': 12.0, 'made': 1.0, 'based': 2.0, 'which': 3.0, 'prefolds': 2.0, 'be': 2.0, 'a': 6.0, 'thirsties': 3.0, 's': 1.0, 'work': 1.0, 'over': 1.0, 'up': 1.0, 'covers': 3.0, 'longest': 1.0, 'had': 1.0, 'what': 1.0, 'stuffed': 1.0, 'rating': 1.0, 'one': 3.0, 'being': 1.0, 'very': 3.0, 'on': 4.0, 'slender': 1.0, 'baby': 2.0, 'superbrites': 1.0, 'chunky': 2.0, 'wide': 1.0, 'both': 1.0, 'runner': 1.0, 'child': 3.0, 'price': 1.0, 'great': 1.0, 'reason': 1.0, 'bummis': 1.0, 'prefer': 3.0, '2': 2.0, 'wraps': 1.0, 'bulkier': 1.0, 'to': 4.0, 'pretty': 1.0, 'way': 1.0, 'particular': 1.0, 'than': 1.0, 'clean': 1.0, 'consider': 1.0, 'in': 2.0, 'renewing': 1.0, 'trim': 1.0, 'diaper': 2.0, 'snappied': 1.0, 'with': 3.0, 'diapers': 3.0, 'are': 5.0, 'first': 2.0, 'spectacularly': 1.0, 'come': 1.0, 'size': 2.0, '1': 1.0, 'fitteds': 1.0}
Word element => {'cute': 1.0, 'fit': 1.0, 'thighs': 1.0, 'lady': 1.0, 'little': 1.0, 'my': 1.0, 'sure': 1.0, 'm': 1.0, 'chunky': 1.0, 'do': 1.0, 'and': 2.0, 'well': 1.0, 'leg': 1.0, 'also': 1.0, 'skinny': 1.0, 'says': 1.0, 'description': 1.0, 'issues': 1.0, 'with': 1.0, 'durable': 1.0, 'pul': 1.0, 'some': 1.0, 'super': 1.0, 'gussets': 1.0, 'rarely': 1.0, 'wipe': 1.0, 'so': 1.0, 'are': 3.0, 'has': 1.0, 'they': 4.0, 'like': 2.0, 'very': 2.0, 'any': 1.0, 'i': 3.0, 'fits': 1.0, 'covers': 1.0, 'clean': 1.0, 'on': 1.0, 'but': 1.0, 'inside': 1.0, 'babes': 1.0, 'the': 4.0, 'these': 2.0, 'great': 2.0, 'have': 1.0, 'really': 1.0, 'leaking': 1.0}
Word element => {'effective': 1.0, 'also': 1.0, 'against': 1.0, 'rise': 1.0, 'up': 1.0, 'curled': 1.0, 'he': 1.0, 'velcro': 2.0, 'hard': 1.0, 'fantastic': 1.0, 'when': 1.0, 'that': 2.0, 'sharp': 1.0, 'tabs': 2.0, 'is': 1.0, 'really': 1.0, 'have': 3.0, 'his': 1.0, 'duo': 1.0, 'corners': 1.0, 'body': 1.0, 'gussets': 1.0, 'like': 1.0, 'softer': 1.0, 'them': 1.0, 'baby': 1.0, 'legs': 1.0, 'cut': 1.0, 'actually': 1.0, 'overall': 1.0, 'are': 1.0, 'adjustable': 1.0, 'my': 1.0, 'high': 1.0, 'they': 2.0, 'the': 4.0, 'wrap': 1.0, 'very': 1.0, 'as': 1.0, 'not': 1.0, 's': 1.0, 'a': 2.0, 'thirsties': 2.0, 'i': 1.0, 'would': 1.0, 'suggest': 1.0, 'alternative': 1.0, 'and': 1.0}
Word element => {'go': 1.0, 'am': 1.0, 'careful': 1.0, 'down': 1.0, 'they': 1.0, 'long': 1.0, 'over': 1.0, 'good': 1.0, 'say': 1.0, 'brands': 1.0, 'slew': 1.0, 'kids': 1.0, 'lot': 1.0, 'my': 1.0, 'me': 1.0, 'looks': 1.0, 'whole': 1.0, 'bag': 1.0, 'walmart': 1.0, 'headed': 1.0, 'garment': 1.0, 'with': 2.0, 'opinion': 1.0, 'another': 1.0, 'tabs': 1.0, 'is': 1.0, 'at': 1.0, 'print': 1.0, 'but': 3.0, 'past': 1.0, 'dry': 1.0, 'months': 1.0, 'think': 1.0, 'or': 1.0, 'once': 1.0, 'your': 1.0, 'probably': 1.0, 'and': 10.0, 'couple': 1.0, 'a': 8.0, 's': 5.0, 't': 1.0, 'like': 2.0, 'covers': 2.0, 'it': 6.0, 'haul': 1.0, 'some': 1.0, 'knew': 1.0, 'colorful': 1.0, 'for': 2.0, 'way': 1.0, 'matter': 1.0, 'inner': 1.0, 'liked': 1.0, 'its': 1.0, 'thing': 1.0, 'machine': 1.0, 'warm': 1.0, 'had': 2.0, 'to': 6.0, 'all': 2.0, 'something': 1.0, 'hand': 1.0, 'mess': 1.0, 'wash': 3.0, 'wool': 1.0, 'm': 1.0, 'in': 3.0, 'arrives': 1.0, 'having': 1.0, 'i': 6.0, 'putting': 1.0, 'velcro': 1.0, 'cleaves': 1.0, 'this': 2.0, 'puffed': 1.0, 'lightening': 1.0, 'displeasing': 1.0, 'four': 1.0, 'cover': 2.0, 'onto': 1.0, 'polyester': 2.0, 'tried': 1.0, 'outer': 1.0, 'body': 1.0, 'diaper': 4.0, 'of': 2.0, 'the': 12.0, 'point': 1.0, 'diapering': 1.0, 'hot': 1.0, 'laundry': 1.0, 'up': 1.0, 'water': 1.0, 'have': 2.0, 'dryer': 1.0, 'plastic': 2.0, 'that': 1.0, 'layer': 2.0, 'away': 2.0, 'here': 1.0, 'weird': 1.0, 'let': 1.0, 'no': 2.0, 'mail': 1.0, 'feels': 1.0, 'from': 2.0, 'cloth': 2.0, 'hitched': 1.0, 'rendering': 1.0, 'how': 1.0, 'luck': 1.0, 'aesthetically': 1.0, 'still': 1.0, 'came': 1.0, 'icky': 1.0, 'cotton': 1.0, 'isn': 1.0, 'just': 1.0, 'about': 2.0, 'ride': 1.0, 'landfills': 1.0, 'after': 1.0, 'are': 1.0, 'crackling': 1.0, 'working': 1.0, 'bad': 1.0, 'cute': 1.0, 'also': 1.0, 'softer': 1.0, 'baby': 1.0, 'gentler': 1.0, 'always': 1.0, 'next': 1.0, 'easy': 1.0, 'hang': 1.0, 'pretend': 1.0, 'pampers': 1.0, 'when': 1.0, 'only': 1.0, 'sleek': 1.0}
Word element => {'fray': 1.0, 'fade': 1.0, 'don': 1.0, 'easy': 1.0, 'fastened': 1.0, 'stay': 1.0, 'they': 1.0, 'months': 1.0, 'clean': 1.0, 'them': 1.0, 'been': 1.0, '13': 1.0, 've': 1.0, 'our': 1.0, 'we': 2.0, 'diapers': 1.0, 't': 1.0, 'these': 1.0, 'great': 1.0, 'using': 1.0, 'love': 1.0, 'continued': 1.0, 'are': 2.0, 'well': 1.0, 'since': 1.0, 'and': 2.0, 'son': 1.0, 'to': 1.0, 'was': 1.0, 'now': 1.0, 's': 1.0, 'bummis': 1.0, 'born': 1.0, 'have': 1.0, 'he': 1.0, 'or': 1.0, 'almost': 1.0}
Word element => {'brites': 1.0, 'purchasing': 1.0, 'be': 1.0, 'definitely': 1.0, 'diaper': 1.0, 'next': 1.0, 'when': 1.0, 'prints': 1.0, 'there': 1.0, 'wish': 1.0, 'easy': 1.0, 'because': 1.0, 'some': 1.0, 'these': 1.0, 'poop': 1.0, 'newborn': 1.0, 'containment': 1.0, 'sturdy': 1.0, 'strong': 1.0, 'velcro': 1.0, 'with': 1.0, 'used': 1.0, 'will': 1.0, 'also': 1.0, 'need': 1.0, 'motherease': 1.0, 'bulkier': 1.0, 'use': 1.0, 'enough': 1.0, 'breastfed': 1.0, 'at': 2.0, 'sandies': 1.0, 'super': 2.0, 'were': 2.0, 'to': 2.0, 'our': 2.0, 'they': 4.0, 'long': 1.0, 'even': 3.0, 'bummis': 2.0, '8': 1.0, 'and': 2.0, 'too': 2.0, 'daughter': 1.0, 'liquidy': 1.0, 'several': 1.0, 'worst': 1.0, 'size': 4.0, 'great': 1.0, '1': 1.0, 'big': 1.0, 'once': 1.0, 'of': 2.0, 'have': 1.0, 'small': 2.0, 'first': 1.0, 'prefolds': 1.0, 'the': 4.0, 'thin': 1.0, 'send': 1.0, 'them': 2.0, 'one': 1.0, 'liked': 1.0, 'in': 2.0, 'colors': 1.0, 'fitteds': 1.0, 'though': 1.0, 'so': 1.0, 'bit': 1.0, 'daycare': 1.0, 'was': 1.0, 'up': 1.0, 'over': 2.0, 'birth': 1.0, 'but': 1.0, 'for': 1.0, 'fit': 1.0, 'more': 2.0, 'is': 1.0, 'kissaluvs': 1.0, 'around': 1.0, 'we': 4.0, 'brite': 1.0, 'a': 1.0, 'better': 1.0, 'covers': 2.0, 'she': 1.0, 'month': 1.0, 'pounds': 1.0, 'i': 2.0, 'really': 2.0, 'are': 2.0, 'roomy': 1.0}
Word element => {'need': 1.0, 'when': 1.0, 'more': 1.0, 'order': 1.0, 'after': 1.0, 'to': 1.0, 'pail': 1.0, 'both': 1.0, 'next': 1.0, 'them': 2.0, 'then': 1.0, 'size': 5.0, 'sizes': 1.0, 'really': 1.0, 'came': 1.0, 'dry': 1.0, 'plan': 1.0, 'prefolds': 1.0, 'these': 2.0, 'some': 1.0, 'that': 2.0, 'were': 2.0, 'put': 1.0, 'do': 1.0, 't': 1.0, 'super': 1.0, 'before': 1.0, '4': 3.0, 'i': 9.0, 'my': 1.0, 'another': 1.0, 'but': 2.0, 'bulky': 1.0, 'weeks': 1.0, 'couple': 3.0, 'for': 2.0, 'fabric': 1.0, 'a': 6.0, 'small': 2.0, 'can': 1.0, 'so': 2.0, 'prefold': 1.0, 'very': 1.0, 'ok': 1.0, 'worked': 1.0, 'son': 1.0, 'matches': 1.0, 'he': 1.0, 'fold': 1.0, 'early': 1.0, '9': 2.0, 'him': 1.0, 'it': 1.0, 'was': 3.0, 'had': 1.0, 'purchased': 1.0, 'in': 4.0, 'use': 1.0, 'front': 1.0, 'found': 1.0, 'bummis': 1.0, 'born': 2.0, 'they': 3.0, 'between': 1.0, 'and': 3.0, 'up': 2.0, 'don': 1.0, 'work': 1.0, 'over': 1.0, 'perfectly': 1.0, 'lb': 1.0, 'inside': 2.0, 'snappi': 1.0, 'with': 2.0, 'their': 1.0, 'better': 1.0, 'find': 2.0, 'than': 1.0, 'does': 1.0, 'only': 1.0, 'usually': 1.0, 'if': 1.0, 'close': 1.0, 'diaper': 3.0, 'thirsties': 1.0, 'leak': 1.0, 'covers': 3.0, 'rather': 1.0, 'brite': 1.0, 'just': 1.0, 'wet': 1.0, 'this': 1.0, 'few': 1.0, 'even': 1.0, 'night': 1.0, 'around': 1.0, 'is': 1.0, 'pound': 1.0, 'on': 2.0, 'legs': 1.0, 'get': 1.0, 'different': 1.0, 'switch': 1.0, 'back': 1.0, 'forth': 1.0, 'of': 1.0, 'the': 9.0, 'changings': 2.0, 'ones': 1.0, 'one': 2.0, 'while': 1.0}
Word element => {'time': 1.0, 'just': 1.0, 'and': 1.0, 'it': 1.0, 'loved': 1.0, 'this': 1.0, 'was': 2.0, 'a': 1.0, 'received': 1.0, 'friend': 1.0, 'they': 1.0, 'quickly': 1.0, 'gift': 1.0, 'sent': 1.0, 'to': 1.0, 'for': 1.0, 'in': 1.0, 'ii': 1.0, 'had': 1.0, 'shower': 1.0, 'the': 1.0, 'my': 1.0}
Word element => {'several': 1.0, 'colours': 1.0, 'in': 1.0, 'though': 1.0, 'even': 1.0, 'few': 1.0, 'after': 1.0, 'sick': 1.0, 'was': 1.0, 'so': 1.0, 'design': 1.0, 'soft': 2.0, 'vimse': 2.0, 'strong': 1.0, '3': 1.0, 'imse': 2.0, 'i': 3.0, 'harshly': 1.0, 'cloth': 1.0, 'and': 1.0, 'edges': 1.0, 'skin': 1.0, 'durable': 2.0, 'newborn': 1.0, 'also': 1.0, 'that': 1.0, 'into': 1.0, 'for': 1.0, 'it': 2.0, 'covers': 2.0, 'sight': 1.0, 'the': 6.0, 'great': 1.0, 'a': 1.0, 't': 1.0, 'diaper': 1.0, 'bunching': 1.0, '8lb': 1.0, 'size': 1.0, 'far': 2.0, 'but': 2.0, 'of': 3.0, 'cover': 1.0, 'elasticated': 1.0, '16lb': 1.0, 'they': 1.0, 'don': 1.0, 'them': 1.0, 'baby': 1.0, 'press': 1.0, 'need': 1.0, 'different': 1.0, 'last': 1.0, 'outgrows': 1.0, 'prefer': 1.0, 'less': 1.0, '17lbs': 1.0, 'to': 1.0, 'as': 1.0, '11': 1.0, 'is': 1.0, 'around': 1.0, 'bought': 1.0, 'months': 2.0, 'superbrite': 1.0, 'bumpy': 1.0, 'small': 1.0}
Word element => {'s': 1.0, 'baby': 1.0, 'hurt': 1.0, 'can': 1.0, 'scratchy': 1.0, 'thirsties': 1.0, 'similar': 1.0, 'expensive': 1.0, 're': 1.0, 'they': 1.0, 'wrap': 1.0, 'gussets': 1.0, 'so': 1.0, 'popular': 1.0, 'wraps': 1.0, 'other': 1.0, 'bummis': 1.0, 'stiffer': 1.0, 'easier': 1.0, 'over': 1.0, 'help': 1.0, 'material': 1.0, 'improvement': 1.0, 'to': 1.0, 'are': 1.0, 'care': 1.0, 'more': 1.0, 'the': 5.0, 'these': 1.0, 'than': 1.0, 'leg': 1.0, 'belly': 1.0, 'it': 1.0, 'velcro': 1.0, 'with': 1.0, 'for': 1.0, 'and': 3.0, 'is': 2.0, 'leaks': 1.0, 'an': 1.0, 'but': 1.0}
Word element => {'purchased': 1.0, 'toy': 1.0, 'pricey': 1.0, 'made': 1.0, 'i': 1.0, 'array': 1.0, 'very': 2.0, 'is': 2.0, 'it': 3.0, 'this': 1.0, 'together': 1.0, 'to': 1.0, 'was': 1.0, 'well': 1.0, 'a': 2.0, 'wide': 1.0, 'of': 1.0, 'toys': 1.0, 'good': 1.0, 'montessori': 1.0, 'little': 1.0, 'quality': 1.0, 'put': 1.0, 'but': 1.0}
Word element => {'haba': 1.0, 'expecting': 1.0, 'was': 1.0, 'glossy': 1.0, 'wood': 1.0, 'stain': 1.0, 'of': 2.0, 'mentioned': 1.0, 'not': 2.0, 'thing': 1.0, 'anywhere': 1.0, 'buy': 1.0, 'plastic': 1.0, 'longer': 1.0, 'attention': 1.0, 'ok': 1.0, 'keeps': 1.0, 'montessori': 1.0, 'great': 1.0, 'nice': 1.0, 'like': 1.0, 'version': 1.0, 'which': 1.0, 'so': 2.0, 'far': 1.0, 'order': 1.0, '5': 1.0, 'also': 1.0, 'rings': 1.0, 'finish': 1.0, 'times': 1.0, 'you': 3.0, 'year': 1.0, 'though': 1.0, 'ring': 1.0, 'is': 3.0, 'more': 3.0, 'job': 1.0, 'the': 4.0, 'my': 2.0, '18': 1.0, 'same': 1.0, 'this': 2.0, 'with': 1.0, 'it': 3.0, 'month': 1.0, 'old': 2.0, '4': 1.0, 'i': 2.0, 'have': 1.0, 'that': 4.0, 'loves': 1.0, 'her': 2.0, 'stack': 1.0, 'on': 1.0, '3': 2.0, 'than': 3.0, 'does': 1.0, 'because': 1.0, 'early': 1.0, 'each': 1.0, 'has': 1.0, 'paint': 1.0, 'size': 1.0, 'but': 1.0, 'can': 2.0, 'a': 3.0, 's': 3.0, 'hole': 1.0, 'quality': 1.0, 'them': 1.0, 'as': 2.0, 'to': 2.0, 'any': 1.0, 'please': 1.0, 'color': 1.0, 'one': 1.0, 'bought': 1.0, 'cheap': 1.0, 'brother': 1.0, 'for': 1.0, 'daughter': 1.0, 'and': 1.0, 'play': 1.0, 'an': 1.0}
Word element => {'come': 1.0, 'use': 1.0, 'lot': 1.0, 'know': 1.0, 'happy': 1.0, 'yet': 1.0, 'really': 1.0, 't': 1.0, 'goes': 1.0, 'now': 1.0, 'after': 1.0, 'hang': 1.0, 'holes': 1.0, 'hard': 1.0, 'bottom': 1.0, 'he': 4.0, 'any': 2.0, 'emphasis': 1.0, 'learning': 1.0, 'entire': 1.0, 'looks': 1.0, 'more': 3.0, 'last': 1.0, 'grain': 1.0, 'see': 1.0, 'you': 5.0, 'fine': 1.0, 'stain': 2.0, 'its': 2.0, 'since': 3.0, '1': 3.0, 'off': 1.0, 'bright': 1.0, 'buy': 1.0, 'shown': 1.0, 'something': 2.0, 'most': 1.0, 'kid': 1.0, 'teal': 1.0, 'same': 1.0, 'mine': 1.0, 'attached': 1.0, 'stacked': 1.0, 'sides': 1.0, 'my': 5.0, 'are': 7.0, 'rings': 8.0, 'aligning': 1.0, 'made': 2.0, 'which': 1.0, 'a': 15.0, 'time': 1.0, 'top': 1.0, 'smallest': 2.0, 'an': 1.0, 'other': 3.0, 'jumping': 1.0, 'to': 10.0, 'as': 5.0, 'still': 1.0, 'if': 2.0, 'son': 3.0, 'flat': 1.0, 'year': 1.0, 'product': 2.0, 'dowel': 3.0, 'price': 1.0, 'colors': 4.0, 'motor': 1.0, 'ring': 10.0, 'can': 3.0, 'is': 13.0, 'at': 1.0, 'stack': 2.0, '8': 2.0, 'pictures': 1.0, 'this': 5.0, 'regard': 2.0, 'have': 4.0, 'grimm': 3.0, 'chipping': 1.0, 'with': 6.0, 'stacking': 5.0, 'the': 35.0, 'because': 1.0, 'that': 8.0, 'wooden': 2.0, 'about': 5.0, 'sizes': 1.0, 'tiny': 1.0, '2014': 1.0, 'roll': 1.0, 'when': 2.0, 'toy': 6.0, 'decided': 1.0, 'review': 1.0, 'in': 10.0, 'hole': 1.0, 'purchased': 1.0, 'had': 3.0, 'type': 1.0, '25': 1.0, 'their': 1.0, 'i': 6.0, 'well': 1.0, 'two': 1.0, 'little': 1.0, 'very': 4.0, 'plays': 1.0, 'set': 1.0, 'pleasing': 1.0, 'tall': 1.0, 'diameter': 2.0, 'chose': 1.0, 'but': 5.0, 'base': 4.0, 'on': 6.0, 'long': 1.0, 'control': 1.0, 'tower': 2.0, 'then': 1.0, 'only': 2.0, 'thick': 1.0, 'everyday': 1.0, 'got': 1.0, '5': 4.0, 'one': 3.0, 'all': 5.0, 'ones': 1.0, 'color': 1.0, '4': 1.0, 'order': 1.0, 'wood': 2.0, 'months': 1.0, 'except': 1.0, 'liked': 1.0, 'has': 1.0, 'them': 1.0, 'size': 2.0, 'between': 1.0, 'apparent': 1.0, 'dump': 1.0, 'while': 1.0, 've': 2.0, 'admired': 1.0, 'collection': 1.0, 'concern': 1.0, 'inch': 1.0, 'no': 4.0, 'years': 2.0, 'exception': 1.0, 'definitely': 1.0, 'doesn': 1.0, 's': 4.0, 'ever': 1.0, 'inches': 3.0, 'expensive': 1.0, 'we': 2.0, 'middle': 1.0, 'paint': 2.0, 'range': 1.0, 'old': 2.0, 'of': 11.0, 'aesthetically': 1.0, 'amazon': 1.0, 'safety': 1.0, 'pleasant': 1.0, 'there': 4.0, 'hold': 2.0, 'satisfying': 1.0, 'also': 2.0, 'acting': 1.0, 'puzzle': 1.0, 'conical': 1.0, 'than': 3.0, 'bit': 1.0, 'get': 1.0, 'however': 1.0, '3': 2.0, 'weight': 1.0, 'heft': 1.0, 'want': 1.0, 'topmost': 1.0, 'halfway': 1.0, 'through': 1.0, 'toys': 2.0, 'cap': 1.0, 'vibrant': 1.0, 'chance': 1.0, 'will': 2.0, 'break': 2.0, 'worrywart': 1.0, 'likely': 1.0, 'measures': 1.0, 'mainly': 1.0, 'someone': 1.0, 'would': 1.0, 'it': 8.0, 'be': 1.0, 'determined': 1.0, 'worry': 1.0, 'each': 1.0, 'around': 1.0, 'or': 1.0, 'without': 1.0, 'purchase': 1.0, 'for': 7.0, 'pieces': 2.0, 'sturdy': 1.0, 'nearby': 1.0, 'not': 1.0, 'defect': 1.0, 'and': 13.0, 'just': 1.0, 'keep': 1.0, 'knows': 1.0, 'mind': 1.0, 'differences': 1.0, 'likes': 1.0, 'out': 2.0, 'step': 1.0, 'beginning': 1.0}
Word element => {'lol': 1.0, 'bought': 1.0, 'ever': 1.0, 'i': 1.0, 'exspencive': 1.0, 'never': 1.0, 'baby': 1.0, 'she': 1.0, 'cat': 2.0, 'no': 1.0, 'a': 1.0, 'in': 1.0, 'bed': 2.0, 'for': 1.0, 'liked': 1.0, 'to': 1.0, 'early': 1.0, 'basket': 1.0, 'my': 1.0, 'rolled': 1.0, 'cause': 1.0, 'sturdy': 1.0, 'most': 1.0, 'use': 1.0, 'over': 2.0, 'roll': 1.0, 'and': 1.0, 'though': 1.0, 'room': 1.0, 'it': 2.0, 'this': 1.0}
Word element => {'pink': 1.0, 'didnt': 1.0, 'had': 1.0, 'regret': 1.0, 'nurse': 1.0, 'just': 1.0, 'by': 1.0, 'designed': 1.0, 'was': 1.0, 'feed': 1.0, 'get': 2.0, 'tub': 1.0, 'out': 1.0, 'used': 1.0, 'even': 1.0, 'twin': 1.0, 'knew': 1.0, 'these': 1.0, 'boys': 1.0, 'you': 1.0, 'twins': 2.0, 'items': 2.0, 'one': 2.0, 'bought': 2.0, 'babies': 1.0, 'that': 2.0, 'were': 2.0, 'gear': 1.0, 'two': 4.0, 'i': 7.0, 'known': 1.0, 'once': 2.0, 'of': 6.0, 'wobbly': 1.0, 'up': 1.0, 'there': 1.0, 'the': 5.0, 'believe': 1.0, 'to': 1.0, 'as': 1.0, 'all': 1.0, 'seat': 2.0, 'not': 1.0, 'them': 1.0, 'comfotable': 1.0, 'on': 1.0, 'bath': 1.0, 'can': 1.0, 'most': 1.0, 'more': 1.0, 'completely': 1.0, 'is': 1.0, 'it': 2.0, 'felt': 1.0, 'mom': 2.0, 'list': 1.0, 'my': 1.0, 'useful': 2.0, 'and': 2.0, 'won': 1.0, 'unstable': 1.0, 'at': 2.0, 'lot': 1.0, 'this': 1.0, 'weren': 1.0, 't': 3.0, 'a': 3.0, 'could': 1.0, 'so': 1.0, 'bottle': 1.0, 'bathe': 1.0, 'they': 1.0, 'seats': 1.0, 'never': 1.0, 'or': 1.0}
Word element => {'m': 1.0, '9': 1.0, 'worth': 1.0, 'indignant': 1.0, 'at': 1.0, 'they': 1.0, 'of': 2.0, 'complaint': 1.0, 'bit': 1.0, 'so': 2.0, 'about': 1.0, 'boxes': 1.0, 'juice': 1.0, 'product': 1.0, 'for': 1.0, 'point': 1.0, 'out': 1.0, 'plastic': 2.0, 'plain': 1.0, 'trim': 1.0, 'more': 1.0, 'is': 4.0, 'looks': 1.0, 'it': 6.0, 'this': 2.0, 'pictured': 2.0, 'whold': 1.0, 'nothing': 1.0, 'looking': 1.0, 'sent': 2.0, 'little': 1.0, 'very': 2.0, 'daughter': 1.0, 'disappointed': 1.0, 'in': 3.0, 'what': 2.0, 'long': 1.0, 'does': 2.0, 'find': 1.0, 's': 1.0, 'a': 2.0, 't': 1.0, 'holder': 2.0, 'cheaper': 1.0, '4': 1.0, 'i': 3.0, 'dwink': 1.0, 'which': 1.0, 'like': 2.0, 'version': 2.0, 'me': 1.0, 'not': 2.0, 'small': 2.0, 'have': 1.0, 'tall': 1.0, 'too': 1.0, 'and': 2.0, 'straw': 1.0, 'thicker': 1.0, 'here': 1.0, 'happened': 1.0, 'one': 2.0, 'all': 1.0, 'as': 2.0, 'to': 2.0, 'any': 2.0, 'that': 3.0, 'case': 2.0, 'leaves': 1.0, 'misrepresentation': 1.0, 'the': 11.0, 'job': 1.0, 'my': 1.0, 'squirt': 1.0, 'was': 3.0, 'yellow': 1.0, 'doesn': 1.0}
Word element => {'box': 1.0, 'juice': 1.0, 'after': 1.0, 'you': 2.0, 'sure': 1.0, 'and': 1.0, 'oh': 1.0, 'holder': 1.0, 'turns': 1.0, 'she': 1.0, 'every': 1.0, 'its': 1.0, 'if': 1.0, 'make': 1.0, 'should': 1.0, 'upside': 1.0, 'mean': 1.0, 'from': 1.0, 'i': 1.0, 'it': 2.0, 'this': 1.0, 'have': 1.0, 'mommy': 1.0, 'down': 1.0, 'the': 4.0, 'in': 2.0, 'perfect': 1.0, 'hole': 1.0, 'straw': 2.0, 'put': 2.0, 'will': 1.0, 'spill': 1.0, 'but': 1.0, 'besides': 1.0, 'that': 1.0}
Word element => {'keep': 1.0, 'still': 1.0, 'covered': 1.0, 'not': 1.0, 'part': 1.0, 'the': 1.0, 'my': 1.0, 'appropriately': 1.0, 'product': 1.0, 'to': 3.0, 'i': 2.0, 'squeeze': 1.0, 'get': 2.0, 'but': 1.0, 'use': 2.0, 'immediately': 1.0, 'cannot': 1.0, 'in': 1.0, 'or': 1.0, 'good': 1.0, 'trying': 1.0, 'concept': 1.0, 'they': 1.0, 'is': 2.0, 'children': 1.0, 'this': 1.0, 'it': 2.0, 'take': 1.0, 'that': 1.0, 'their': 1.0, 'drink': 1.0, 'them': 1.0, 'out': 1.0}
Word element => {'box': 1.0, 'pull': 1.0, 'a': 1.0, 'when': 1.0, 'bother': 1.0, 'pointless': 1.0, 'big': 1.0, 'way': 1.0, 'child': 1.0, 'out': 2.0, 'can': 1.0, 'right': 2.0, 'fell': 1.0, 'all': 1.0, 'they': 1.0, 'and': 2.0, 'boxes': 1.0, 'dwink': 1.0, 'i': 3.0, 'tried': 1.0, 'holder': 1.0, 'the': 2.0, 'universal': 1.0, 'of': 1.0, 'for': 1.0, 'extra': 1.0, 'to': 2.0, 'was': 1.0, 'just': 1.0, 'because': 1.0, 'not': 1.0, 'with': 1.0, 'drinkbox': 1.0, 'this': 3.0, 'paid': 1.0, 'is': 2.0, 'thought': 1.0, 'cute': 1.0, 'brands': 1.0, 'however': 1.0, '5': 1.0, 'different': 1.0, 'juice': 2.0}
Word element => {'for': 1.0, 'sizes': 1.0, 'box': 1.0, 'hands': 1.0, 'cute': 1.0, 'sturdy': 1.0, 'cup': 1.0, 'holder': 1.0, 'is': 2.0, 'very': 1.0, 'and': 2.0, 'purpose': 1.0, 'serves': 1.0, 'pouch': 1.0, 'various': 1.0, 'little': 1.0, 'its': 1.0, 'holds': 1.0, 'juice': 1.0}
Word element => {'likes': 1.0, 'he': 1.0, 'to': 1.0, 'son': 1.0, 'it': 2.0, 'hold': 1.0, 'milk': 1.0, 'my': 1.0, 'small': 1.0, 'and': 3.0, 'medium': 1.0, 'using': 1.0, 'juice': 1.0, 'fits': 1.0, 'easy': 1.0, 'boxes': 1.0, 'pouches': 1.0, 'for': 1.0}
Word element => {'back': 1.0, 'have': 1.0, 'get': 1.0, 'excited': 1.0, 'really': 1.0, 'was': 1.0, 'received': 1.0, '35lbs': 2.0, 'not': 1.0, 'know': 1.0, 'can': 1.0, 'it': 4.0, 'this': 4.0, 'come': 1.0, 'with': 1.0, 'used': 1.0, 'misleading': 1.0, 'says': 2.0, 'of': 1.0, 'there': 1.0, 'newborns': 1.0, 'weighs': 1.0, 'sling': 4.0, 'product': 1.0, 'for': 2.0, 'true': 1.0, 'package': 1.0, 'be': 1.0, 'purchased': 1.0, 'pissed': 1.0, 'newborn': 2.0, 'in': 1.0, 'send': 1.0, 'baby': 1.0, 'don': 1.0, 'to': 2.0, 'any': 1.0, 'today': 1.0, 'about': 1.0, 'my': 1.0, '18lbs': 2.0, 'the': 4.0, 't': 1.0, 'is': 3.0, '24': 1.0, 'description': 1.0, 'and': 3.0, 'on': 1.0, 'use': 1.0, 'instructions': 1.0, 'i': 6.0, '4': 1.0, 'months': 1.0, 'that': 3.0, 'now': 2.0, 'm': 1.0, 'information': 1.0}
Word element => {'product': 1.0, 'on': 1.0, 'you': 1.0, 'likes': 1.0, 'i': 2.0, 'your': 1.0, 'so': 1.0, 'one': 1.0, 'sling': 2.0, 'my': 1.0, 'in': 2.0, 'daughter': 1.0, 'being': 2.0, 'once': 1.0, 'to': 1.0, 'spend': 1.0, 'like': 1.0, 'the': 1.0, 't': 1.0, 'maybe': 1.0, 'didn': 1.0, 'before': 1.0, 'used': 1.0, 'this': 1.0, 'it': 1.0, 'would': 1.0, 'borrow': 1.0, 'a': 1.0, 'see': 1.0, 'if': 1.0, 'baby': 1.0}
Word element => {'tends': 1.0, 'there': 1.0, 'helps': 1.0, 'resting': 1.0, 'only': 1.0, 'dangerous': 1.0, 'be': 1.0, 'which': 1.0, 'they': 1.0, 'almost': 1.0, 'neck': 1.0, 'their': 3.0, 'upward': 1.0, 'facing': 1.0, 'at': 1.0, 'is': 4.0, 'face': 1.0, 'positioned': 1.0, 'trick': 1.0, 'wearing': 1.0, 'once': 2.0, 'inside': 1.0, 'trying': 1.0, 'arm': 1.0, 'head': 2.0, 'slide': 1.0, 'bed': 1.0, 'technique': 1.0, 'newborn': 2.0, 'diagonally': 1.0, 'where': 1.0, 'especially': 1.0, 'baby': 5.0, 'scrunched': 1.0, 'position': 3.0, 'how': 1.0, 'learn': 1.0, 'crossed': 1.0, 'does': 1.0, 'slings': 1.0, 'extremely': 1.0, 'bottom': 1.0, 'he': 4.0, 'bjorn': 1.0, 'than': 2.0, 'bum': 1.0, 'put': 2.0, 'much': 5.0, 'heavy': 1.0, 'are': 3.0, 'first': 1.0, 'occasion': 1.0, 'better': 1.0, 'did': 1.0, 'of': 2.0, 'the': 19.0, 'longer': 1.0, 'practice': 1.0, 'have': 3.0, 'rolls': 1.0, 'railing': 1.0, 'could': 1.0, 'small': 2.0, 'a': 6.0, 'ago': 1.0, 's': 4.0, 'son': 1.0, 'around': 2.0, 'his': 1.0, 'year': 1.0, 'child': 1.0, 'over': 1.0, 'up': 2.0, 'wash': 1.0, 'old': 1.0, 'easier': 1.0, 'right': 1.0, 'was': 3.0, 'when': 2.0, 'am': 2.0, 'times': 1.0, 'motion': 1.0, 'you': 3.0, 'liked': 1.0, 'using': 2.0, 'like': 2.0, 'quite': 1.0, 'sling': 7.0, 'calm': 1.0, 'my': 6.0, 'carrying': 1.0, 'some': 1.0, 'just': 2.0, 'l': 1.0, 'hot': 1.0, 'started': 1.0, 'bought': 1.0, 'but': 2.0, 'so': 4.0, 'can': 2.0, 'week': 1.0, 'get': 1.0, 'bit': 1.0, 'easy': 1.0, 'away': 1.0, 'properly': 1.0, 'summer': 1.0, 'weeks': 1.0, 'and': 11.0, 'too': 2.0, 'move': 1.0, 'used': 2.0, 'stopped': 1.0, 'him': 2.0, 'it': 15.0, 'few': 1.0, 'this': 2.0, 'feet': 1.0, 'slept': 1.0, 'well': 1.0, 'i': 8.0, 'even': 1.0, 'fed': 1.0, 'on': 3.0, 'second': 1.0, 'born': 1.0, 'back': 2.0, 'straight': 1.0, 'to': 8.0, 'all': 1.0, 'down': 1.0, 'several': 1.0, 'no': 1.0, 'day': 1.0, 'babies': 1.0, 'more': 1.0, 'husband': 1.0, 'until': 1.0, 'own': 2.0, 'find': 1.0, 'since': 1.0, 'need': 1.0, 'in': 8.0, 'm': 1.0, 'breast': 1.0, 'that': 2.0, 'adjustable': 1.0, 'needs': 1.0, 'parts': 1.0, 'fabric': 2.0, 'really': 1.0, 'them': 1.0, 'has': 2.0, 'always': 1.0, 'then': 1.0, 'we': 3.0, 'take': 2.0, 'with': 3.0, 'not': 2.0}
Word element => {'safe': 1.0, 'money': 1.0, 'don': 1.0, 'buy': 1.0, 'ever': 1.0, 'worst': 1.0, 'issues': 1.0, 'something': 1.0, 'position': 1.0, 'carrying': 1.0, 'if': 1.0, 'researching': 1.0, 'wear': 1.0, 'way': 1.0, 'there': 2.0, 'carrier': 1.0, 'back': 1.0, 'seconds': 1.0, 'literally': 1.0, 'after': 1.0, 'kills': 1.0, 'off': 1.0, 'then': 1.0, 'took': 1.0, 'he': 1.0, 'in': 1.0, 'him': 1.0, 'just': 1.0, '4': 1.0, 'i': 8.0, 'almost': 1.0, 'now': 2.0, 'was': 6.0, 'more': 1.0, 'is': 3.0, 'with': 1.0, 'found': 1.0, '30': 1.0, 'this': 2.0, 'try': 1.0, 'only': 1.0, 'out': 1.0, 'itty': 1.0, 'use': 1.0, 'me': 1.0, 'and': 6.0, 'comfortable': 2.0, '1': 1.0, 'soo': 1.0, 'neck': 1.0, 'let': 1.0, 'another': 1.0, 'my': 4.0, 'towards': 1.0, 'before': 1.0, 'safety': 1.0, 'even': 1.0, 'years': 1.0, 'no': 1.0, 'today': 1.0, 'about': 2.0, 'son': 2.0, 'recalled': 2.0, 'have': 2.0, 'as': 1.0, 'to': 1.0, 'all': 1.0, 'been': 1.0, 'using': 2.0, 'your': 1.0, 'put': 2.0, '3': 1.0, 'sister': 1.0, 'because': 1.0, 'started': 1.0, 't': 1.0, 'could': 1.0, 'ago': 1.0, 's': 1.0, '13': 1.0, 'who': 1.0, 'at': 1.0, 'since': 1.0, 'for': 2.0, 'bitty': 1.0, '7': 1.0, 'it': 11.0, 'month': 1.0, 'lbs': 2.0, 'barely': 1.0, 'when': 1.0, 'months': 2.0, 'bought': 1.0, 'uncomfortable': 1.0}
Word element => {'mom': 1.0, 'would': 1.0, 'get': 1.0, 'easier': 1.0, 'much': 1.0, 'needs': 1.0, 'so': 1.0, 'but': 1.0, 'bijorn': 1.0, 'baby': 2.0, 'have': 1.0, 'want': 1.0, 'chores': 1.0, 'also': 2.0, 'it': 1.0, 'stroller': 1.0, 'sling': 2.0, 'down': 1.0, 'perfectly': 1.0, 'similar': 1.0, 'and': 6.0, 'those': 1.0, 'me': 1.0, '23': 1.0, 'be': 1.0, 'weights': 1.0, 'am': 1.0, 'lbs': 1.0, 'he': 2.0, 'old': 1.0, '4': 1.0, 'i': 5.0, 'for': 4.0, 'product': 3.0, 'doing': 1.0, 'this': 5.0, 'allows': 1.0, 'any': 1.0, 'to': 3.0, 'out': 3.0, 'just': 1.0, 'what': 1.0, 'trips': 1.0, 'in': 3.0, 'fits': 2.0, 'my': 3.0, 'days': 1.0, 'looking': 1.0, 'pulling': 1.0, 'son': 2.0, 'is': 3.0, '5': 1.0, 'the': 2.0, '1': 1.0, 'great': 2.0, 'years': 1.0, 'm': 1.0, 'on': 2.0, 'put': 2.0, 'with': 1.0, 'quick': 1.0, '140lbs': 1.0, 'hip': 1.0, 'of': 2.0, 'hate': 1.0, 'always': 1.0, 't': 1.0, 'go': 1.0, 's': 1.0, 'a': 3.0, 'recommend': 1.0, 'doesn': 1.0, 'was': 2.0, 'store': 1.0}
Word element => {'restrooms': 1.0, 'public': 1.0, 'in': 1.0, 'station': 1.0, 'cover': 1.0, 'enough': 1.0, 'be': 1.0, 'could': 1.0, 'size': 1.0, 'wish': 1.0, 'and': 1.0, 'pricey': 1.0, 'little': 1.0, 's': 1.0, 'because': 1.0, '4': 1.0, 'gave': 1.0, 'botton': 1.0, 'changing': 1.0, 'very': 1.0, 'quality': 1.0, 'is': 1.0, 'the': 4.0, 'cloth': 1.0, 'i': 2.0, 'clean': 1.0, 'to': 4.0, 'pack': 1.0, 'chaning': 1.0, 'easy': 1.0, 'it': 2.0, 'with': 1.0, 'comparing': 1.0, 'a': 2.0, 'convenient': 1.0, 'good': 1.0, 'feature': 1.0, 'other': 1.0, 'my': 1.0, 'portable': 1.0, 'larger': 1.0, 'stars': 1.0, 'damp': 1.0, 'pads': 1.0}
Word element => {'sure': 1.0, 'gifts': 1.0, 'baby': 1.0, 'these': 1.0, 'buy': 1.0, 'day': 1.0, 'for': 2.0, 'see': 1.0, 'nozzle': 1.0, 'likes': 1.0, 'would': 1.0, 'nose': 1.0, 'results': 1.0, 'even': 1.0, 'on': 1.0, 'believe': 1.0, 'the': 4.0, 'a': 1.0, 's': 1.0, 't': 1.0, '6': 1.0, 'shower': 1.0, 'of': 1.0, 'an': 1.0, 'doesn': 1.0, 'this': 1.0, 'quick': 1.0, 'she': 1.0, 'it': 2.0, 'month': 1.0, 'use': 2.0, 'bat': 1.0, 'my': 1.0, 'bend': 1.0, 'painless': 1.0, 'as': 1.0, 'all': 1.0, 'to': 3.0, 'empty': 1.0, 'afterwards': 1.0, 'eye': 1.0, 'disposable': 2.0, 'reservoir': 2.0, 'her': 1.0, 'clean': 1.0, 'me': 1.0, 'and': 1.0, 'working': 1.0, 'nothing': 1.0, 'so': 1.0, 'best': 1.0, 'you': 2.0, 'when': 2.0, 'thanks': 1.0, 'i': 3.0, 'disposables': 1.0, 'one': 1.0, 'tip': 1.0}
Word element => {'others': 1.0, 'tried': 1.0, 'recommend': 1.0, 'day': 1.0, 'inside': 1.0, 'good': 1.0, 'clean': 1.0, 'off': 1.0, 'family': 1.0, 'my': 2.0, 'pull': 1.0, 'and': 4.0, 'get': 1.0, 'friends': 1.0, 'time': 2.0, 'of': 5.0, 'up': 1.0, 'waste': 1.0, 'at': 1.0, 'total': 1.0, 'just': 2.0, 'a': 2.0, 'were': 1.0, 'frustrating': 1.0, 'awesome': 1.0, 'nothing': 1.0, 'balloon': 1.0, 'this': 4.0, 'it': 1.0, 'your': 1.0, '3': 1.0, 'one': 1.0, 'months': 1.0, 'bought': 1.0, 'you': 1.0, 'when': 1.0, 'twins': 1.0, 'old': 1.0, 'i': 1.0, 'about': 1.0, 'baby': 1.0, 'are': 1.0, 'the': 6.0, 'end': 2.0, 'works': 2.0, 'used': 1.0, 'is': 2.0, 'that': 1.0, 'changing': 1.0, 'must': 1.0, 'have': 1.0, 'as': 2.0, 'to': 1.0, 'all': 2.0, 'product': 2.0, 'for': 1.0, 'parents': 1.0, 'tips': 1.0, 'instead': 1.0, 'bulbs': 1.0, 'every': 1.0, 'out': 1.0}
Word element => {'suck': 1.0, 'became': 1.0, 'dried': 1.0, 'tried': 1.0, 'trust': 1.0, 'really': 1.0, 'part': 1.0, 'forget': 1.0, 'out': 1.0, 'newborn': 1.0, 'know': 1.0, 'good': 1.0, 'her': 1.0, 'clean': 1.0, 'year': 1.0, 'ever': 1.0, '5': 2.0, 'you': 4.0, 'gives': 1.0, 'only': 2.0, 'once': 1.0, 'chased': 1.0, 'packaging': 1.0, 'says': 1.0, 'need': 1.0, 'done': 2.0, 'get': 2.0, 'me': 1.0, 'not': 2.0, 'thing': 1.0, 'with': 2.0, 'it': 6.0, 'and': 5.0, 'aspirator': 1.0, 'graco': 1.0, 'deflated': 1.0, 'this': 2.0, 'kids': 1.0, 'happy': 1.0, 'my': 2.0, 'owned': 1.0, 'already': 1.0, 'use': 2.0, 'child': 1.0, 'seconds': 2.0, 'nasal': 1.0, 'both': 1.0, 'item': 1.0, 'sanitary': 1.0, 'recently': 1.0, 'waste': 1.0, 'second': 1.0, 'were': 1.0, 'what': 1.0, 'purchased': 1.0, 'thought': 1.0, 'gave': 1.0, 'that': 3.0, 'birth': 1.0, 'any': 1.0, 'to': 5.0, 'was': 1.0, 'job': 2.0, 'the': 6.0, 'a': 2.0, 'we': 1.0, 't': 2.0, 'clogged': 1.0, '2': 1.0, 'but': 2.0, 'didn': 2.0, 'if': 1.0, 'want': 1.0, 'same': 1.0, 'one': 2.0, 'on': 2.0, 'than': 1.0, 'does': 1.0, 'because': 1.0, 'having': 1.0, 'disposable': 2.0, 'collection': 1.0, 'would': 1.0, 'nose': 1.0, 'super': 1.0, 'carry': 1.0, 'i': 6.0, 'two': 1.0, 'for': 1.0, 'meant': 1.0, 'have': 2.0, 'is': 1.0, 'more': 2.0, 'around': 1.0}
Word element => {'money': 1.0, 'saved': 1.0, 'had': 1.0, 'gimmick': 1.0, 'one': 1.0, 'lived': 1.0, 'guess': 1.0, 'queen': 1.0, 'gadget': 2.0, 'solution': 1.0, 'another': 1.0, 'amazon': 1.0, 'product': 1.0, 'when': 2.0, 'name': 1.0, 'idea': 1.0, 'times': 2.0, 'you': 1.0, 'also': 1.0, 'inflatable': 1.0, 'used': 1.0, 'tip': 4.0, 'husband': 1.0, 'more': 2.0, 'today': 1.0, 'supposed': 1.0, 'catch': 1.0, 'which': 1.0, 'looking': 1.0, 'using': 1.0, 'squeeze': 1.0, 'wish': 1.0, 'liked': 1.0, 'awake': 1.0, 'me': 1.0, 'my': 4.0, 'several': 1.0, 'other': 1.0, 'fills': 1.0, 'than': 2.0, 'developed': 1.0, 'have': 1.0, 'must': 1.0, 'congestion': 1.0, 'month': 1.0, 'use': 1.0, 'comes': 1.0, 'once': 2.0, 'device': 1.0, 'the': 14.0, 'of': 4.0, '4': 1.0, 'calls': 1.0, 'i': 7.0, 'seems': 1.0, 'tried': 1.0, 'mucus': 4.0, 'old': 1.0, 'it': 3.0, 'him': 1.0, 'within': 1.0, 'since': 1.0, 'only': 1.0, 'much': 1.0, 'this': 3.0, 'release': 1.0, 'suction': 1.0, 'repeating': 1.0, 'provided': 1.0, 'models': 1.0, 'he': 1.0, 'is': 5.0, 'at': 1.0, 'clogs': 1.0, 'causing': 1.0, 'each': 1.0, 'nightly': 1.0, 'noticeable': 1.0, 'bulb': 1.0, 'balloon': 3.0, 'that': 5.0, 'to': 8.0, 'was': 1.0, 'up': 2.0, 'chamber': 1.0, 'happens': 1.0, '2': 1.0, 'process': 1.0, 'but': 2.0, 'seconds': 1.0, 'syringe': 1.0, 'am': 1.0, 'beginning': 1.0, 'done': 1.0, '15': 1.0, 'deflate': 1.0, 'air': 1.0, 'in': 1.0, 'took': 1.0, 'for': 2.0, '10': 1.0, 'stay': 1.0, 'if': 1.0, 'get': 1.0, 'a': 2.0, 'on': 2.0, 'amount': 1.0, 'hard': 1.0, 'and': 1.0, 'out': 1.0, 'so': 1.0, 'went': 1.0, 'back': 2.0, 'by': 1.0, 'hygenic': 2.0, 'hospital': 1.0}
Word element => {'at': 1.0, 'given': 1.0, 'wouldn': 1.0, 'review': 1.0, 'step': 1.0, 'the': 6.0, 'rub': 1.0, 't': 1.0, 'a': 3.0, 'could': 1.0, 'package': 1.0, 'images': 1.0, 'on': 2.0, 'waste': 1.0, 'adhesive': 1.0, 'spray': 1.0, 'how': 1.0, 'awful': 1.0, 'opened': 1.0, 'that': 2.0, 'out': 1.0, 'made': 1.0, 'all': 1.0, 'any': 1.0, 'to': 3.0, 'what': 1.0, 'had': 1.0, 'would': 1.0, 'have': 2.0, 'wall': 1.0, 'whole': 1.0, 'thing': 1.0, 'wound': 1.0, 'up': 1.0, 'trash': 1.0, 'of': 1.0, 'just': 1.0, 'find': 1.0, 'because': 1.0, 'throwing': 1.0, 'process': 1.0, '2': 1.0, 'money': 1.0, 'in': 2.0, 'give': 1.0, 'this': 1.0, 'stars': 1.0, 'product': 1.0, 'needed': 1.0, 'star': 1.0, 'use': 1.0, 'amazon': 1.0, 'keeps': 1.0, 'otherwise': 1.0, 'mess': 1.0, 'i': 7.0, 'thinking': 1.0, 'before': 1.0, 'forgot': 1.0}
Word element => {'by': 1.0, 'off': 1.0, 'paper': 1.0, 'see': 1.0, 'quickly': 1.0, 'transferred': 2.0, 'spent': 1.0, 'amount': 1.0, 'if': 2.0, 'same': 1.0, 'fish': 2.0, 'multiple': 1.0, 'transfer': 2.0, 'transer': 1.0, 'will': 1.0, 'rubbed': 1.0, 'to': 3.0, 'degree': 1.0, 'peeling': 1.0, 'of': 2.0, 'edge': 1.0, 'held': 1.0, 'on': 2.0, 'yes': 1.0, 'managed': 1.0, 'are': 1.0, 'you': 1.0, 'finish': 1.0, 'these': 1.0, 'great': 1.0, 'not': 1.0, 'had': 1.0, 'look': 1.0, 'was': 4.0, 'they': 2.0, '90': 1.0, 'time': 2.0, 'smooth': 1.0, 'required': 1.0, 'a': 4.0, 'going': 1.0, 'we': 1.0, 'the': 11.0, 'transfers': 1.0, 'lifts': 1.0, 'she': 1.0, 'it': 3.0, 'first': 2.0, 'quick': 1.0, 'with': 1.0, 'were': 1.0, 'there': 2.0, 'spraying': 1.0, 'stickers': 1.0, 'painted': 1.0, 'wall': 2.0, 'no': 2.0, 'at': 2.0, 'gentle': 1.0, 'and': 3.0, 'adhesive': 1.0, 'my': 1.0, 'applying': 1.0, 'one': 1.0, 'gently': 1.0, 'very': 2.0, 'rub': 1.0, 'hard': 2.0, 'wife': 1.0, 'stick': 2.0, 'this': 1.0, 'carefully': 1.0, 'popsicle': 1.0, 'angle': 2.0, 'took': 1.0, 'i': 1.0, 'long': 1.0, 'itself': 1.0, 'in': 2.0, 'meantime': 1.0}
Word element => {'went': 1.0, 'texture': 1.0, 'one': 1.0, 'and': 2.0, 'surface': 1.0, 'on': 2.0, 'them': 1.0, 'peeling': 1.0, 'smooth': 1.0, 'already': 1.0, 'are': 1.0, 'they': 1.0, 'time': 1.0, 'worth': 1.0, 'same': 1.0, 'transfers': 1.0, 'look': 1.0, 'to': 1.0, 'vs': 1.0, 'challenging': 1.0, 'sandy': 1.0, 'bit': 1.0, 'both': 1.0, 'applied': 2.0, 'with': 1.0, 'it': 1.0, 'great': 1.0, 'the': 3.0, 'more': 1.0, 'these': 2.0, 'stickers': 2.0, 'back': 1.0, 'but': 2.0, 'a': 3.0, 'well': 2.0, 'of': 1.0, 'were': 1.0, 'that': 1.0, 'we': 2.0, 'apply': 1.0, 'some': 1.0, 'at': 1.0}
Word element => {'get': 1.0, 'look': 1.0, 'to': 1.0, 'sports': 1.0, 'package': 1.0, 'than': 1.0, 'also': 1.0, 'about': 1.0, 'of': 3.0, 'antique': 1.0, 'the': 4.0, 'more': 1.0, 'on': 1.0, 'is': 1.0, 'bit': 1.0, 'small': 1.0, 'so': 1.0, 'a': 2.0, 'size': 1.0, 'looking': 2.0, 'edge': 1.0, 'little': 1.0, 'kind': 1.0, 'biggest': 1.0, 'one': 2.0, 'grapefruit': 1.0, 'you': 1.0, 'nice': 1.0, 'need': 1.0}
Word element => {'time': 1.0, 'about': 1.0, 'little': 1.0, 'say': 1.0, 'i': 1.0, 'therefore': 1.0, 'yet': 1.0, 'can': 1.0, 'appear': 1.0, 'them': 2.0, 'to': 1.0, 'be': 1.0, 'as': 1.0, 'described': 1.0, 'used': 1.0, 'we': 1.0, 'this': 2.0, 'have': 1.0, 'at': 1.0, 'not': 1.0}
Word element => {'been': 1.0, 'have': 1.0, 'would': 1.0, 'otherwise': 1.0, 'me': 1.0, 'take': 1.0, 'room': 1.0, 'kids': 1.0, 'for': 1.0, 'but': 2.0, 'can': 2.0, 'looking': 1.0, 'once': 1.0, 'be': 1.0, 'good': 2.0, 'decals': 1.0, 'job': 1.0, 'applied': 1.0, 'so': 1.0, 'they': 2.0, 't': 1.0, 'the': 2.0, 'my': 1.0, 'removed': 1.0, 'a': 1.0, 'i': 3.0, 'move': 1.0, 'lot': 1.0, 'with': 2.0, 'need': 1.0, 'that': 1.0, 'were': 1.0, 'something': 1.0}
Word element => {'order': 1.0, 'probably': 1.0, 'were': 1.0, 'ordered': 1.0, 'not': 1.0, 'so': 1.0, 'are': 1.0, 'it': 3.0, 'make': 1.0, 'on': 1.0, 'glued': 1.0, 'scissors': 1.0, 'with': 1.0, 'just': 1.0, 'disappointed': 1.0, 'again': 1.0, 'am': 1.0, 'in': 1.0, 'seahorse': 1.0, 'half': 1.0, 'dolphin': 1.0, 'cut': 1.0, 'turtle': 1.0, 'will': 1.0, 'also': 1.0, 'many': 1.0, 'pretty': 1.0, 'project': 1.0, 'pair': 1.0, 'of': 4.0, 'finally': 1.0, 'sea': 1.0, 'company': 2.0, 'bathroom': 1.0, 'my': 1.0, 'coral': 1.0, 'bought': 2.0, 'name': 1.0, 'and': 6.0, 'all': 1.0, 'as': 1.0, 'more': 1.0, 'tropical': 1.0, 'is': 3.0, 'a': 3.0, 'i': 6.0, 'wall': 2.0, 'other': 1.0, 'fish': 1.0, 'from': 3.0, 'stick': 1.0, 'part': 1.0, 'this': 3.0, 'decor': 1.0, 'out': 2.0, 'night': 1.0, 'them': 5.0, 'they': 1.0, 'mural': 1.0, 'however': 1.0, 'the': 6.0, 'great': 2.0, 'ones': 1.0, 'lines': 1.0, 'same': 1.0, 'have': 1.0, 'stickers': 1.0, 'very': 2.0, 'matt': 1.0, 'ripped': 1.0, 'turned': 1.0, 'was': 1.0, 'sad': 1.0, 'product': 2.0, 'mare': 1.0, 'that': 2.0, 'shame': 1.0, 'did': 2.0}
Word element => {'walls': 1.0, 'recommend': 1.0, 'they': 2.0, 'these': 1.0, 'the': 1.0, 'look': 1.0, 'to': 2.0, 'once': 1.0, 'be': 1.0, 'addition': 1.0, 'beautiful': 2.0, 'got': 1.0, 'wall': 1.0, 'would': 1.0, 'transferred': 1.0, 'can': 1.0, 'and': 1.0, 'getting': 1.0, 'but': 1.0, 'a': 2.0, 'them': 3.0, 'little': 1.0, 'as': 1.0, 'temperamental': 1.0, 'on': 1.0, 'i': 2.0, 'buy': 1.0, 'again': 1.0}
Word element => {'great': 1.0, 'worked': 1.0, 'these': 1.0}
Word element => {'didn': 1.0, 'transferring': 1.0, 'and': 1.0, 'any': 1.0, 'unless': 1.0, 'several': 1.0, 'on': 2.0, 'different': 1.0, 'tried': 1.0, 'i': 1.0, 'means': 1.0, 'surfaces': 1.0, 'these': 1.0, 't': 2.0, 'have': 1.0, 'other': 1.0, 'work': 1.0, 'affixing': 1.0, 'it': 1.0, 'wouldn': 1.0, 'recommend': 1.0, 'of': 1.0, 'them': 2.0, 'you': 1.0}
Word element => {'none': 1.0, 'nice': 1.0, 'rather': 1.0, 'it': 1.0, 'for': 1.0, 'another': 1.0, 'order': 1.0, 'came': 1.0, 'they': 2.0, 'less': 1.0, 'when': 1.0, 'walls': 1.0, 'were': 3.0, 'thought': 1.0, 'products': 1.0, 'guess': 1.0, 'i': 4.0, 's': 1.0, 'niece': 1.0, 'even': 1.0, 'dimensions': 1.0, 'a': 1.0, 'them': 1.0, 'the': 4.0, 'my': 1.0, 'though': 1.0, 'decorate': 1.0, 'complete': 1.0, 'in': 1.0, 'little': 1.0, 'bigger': 1.0, 'bought': 1.0, 'look': 1.0, 'had': 1.0, 'to': 3.0, 'set': 1.0, 'there': 1.0, 'bathroom': 1.0}
Word element => {'off': 1.0, 'came': 1.0, 'rub': 1.0, 'simple': 1.0, 'world': 1.0, 'of': 1.0, 'time': 1.0, 'spending': 1.0, 'that': 1.0, 'fear': 1.0, 'biggest': 1.0, 'my': 1.0, 'after': 1.0, 'so': 1.0, 'material': 1.0, 'also': 1.0, 'the': 4.0, 'scracht': 1.0, 'used': 1.0, 'to': 3.0, 'tire': 1.0, 'beautiful': 1.0, 'picture': 1.0, 'each': 1.0, 'wall': 1.0, 'you': 1.0, 'is': 3.0, 'on': 1.0, 'all': 1.0, 'have': 1.0, 'some': 1.0, 'and': 1.0, '1': 1.0, 'will': 1.0, 'scratching': 1.0, 'but': 1.0, 'for': 1.0, 'a': 2.0, 'minute': 1.0, 'half': 1.0, 'make': 1.0, 'with': 1.0, 'it': 1.0, 'fragil': 1.0, 'very': 2.0, 'stick': 1.0}
Word element => {'future': 1.0, 'in': 1.0, 'again': 1.0, 'buy': 1.0, 'will': 1.0, 'i': 1.0, 'easily': 1.0, 'looked': 2.0, 'didnt': 1.0, 'on': 1.0, 'the': 2.0, 'great': 1.0, 'walls': 1.0, 'pretty': 1.0, 'and': 1.0, 'very': 1.0, 'peel': 1.0, 'of': 1.0}
Word element => {'whole': 1.0, 'only': 1.0, 'up': 1.0, 'ended': 1.0, 'using': 1.0, 'them': 1.0, 'the': 3.0, 'sheet': 1.0, 'stickers': 1.0, 'received': 1.0, '3': 1.0, 'already': 1.0, 'coming': 1.0, 'off': 1.0, 'of': 2.0, 'were': 1.0, 'paper': 1.0, 'when': 1.0, 'i': 2.0}
Word element => {'comments': 1.0, 'being': 1.0, 'still': 1.0, 'while': 1.0, 'keeps': 1.0, 'spots': 1.0, 'everyone': 1.0, 'clear': 1.0, 'wings': 1.0, 'light': 1.0, 'dragonflies': 1.0, 'that': 2.0, 'been': 1.0, 'have': 1.0, 'of': 2.0, 'transferred': 1.0, 'like': 1.0, 'which': 2.0, 'at': 1.0, 'image': 1.0, 'all': 1.0, 'to': 3.0, 'had': 1.0, 'look': 1.0, 'tell': 1.0, 'need': 1.0, 'simple': 1.0, 'daughters': 1.0, 'easy': 1.0, 'these': 1.0, 'more': 1.0, 'the': 5.0, 'great': 1.0, 'are': 3.0, 'it': 4.0, 'with': 1.0, 'apply': 1.0, 'parts': 2.0, 'ruin': 1.0, 'rubbing': 1.0, 'very': 2.0, 'subtle': 1.0, 'and': 5.0, 'couple': 1.0, 'i': 3.0, 'something': 1.0, 've': 2.0, 'in': 2.0, 'magic': 1.0, 'them': 3.0, 'on': 2.0, 'months': 1.0, 'over': 1.0, 'my': 1.0, 'room': 1.0, 'for': 1.0, 'wall': 2.0, 'about': 1.0, '18': 1.0, 'they': 1.0, 'didn': 1.0, 'even': 1.0, 'cleaned': 1.0, 't': 1.0, 's': 1.0, 'a': 2.0, 'colored': 1.0, 'eraser': 1.0}
Word element => {'did': 1.0, 'better': 1.0, 'stick': 1.0, 'off': 1.0, 'walls': 1.0, 'fallen': 1.0, 'idea': 1.0, 'in': 1.0, 'had': 2.0, 'to': 1.0, 'half': 1.0, 'than': 2.0, 'these': 2.0, 'the': 5.0, 'replace': 1.0, 'but': 2.0, 'disappointing': 1.0, 'were': 1.0, 'left': 1.0, 'is': 1.0, 'type': 1.0, 'super': 1.0, 'about': 1.0, 'no': 1.0, 'cute': 1.0, 'less': 1.0, 'be': 1.0, 'much': 1.0, 'adorable': 1.0, 'day': 1.0, 'very': 1.0, 'one': 1.0, 'i': 2.0, 'them': 2.0, 'luck': 1.0, 'desired': 1.0, 'even': 1.0, 'stickers': 2.0, 'have': 2.0, 'other': 1.0, 'on': 1.0, 'remove': 1.0, 'adhesive': 1.0, 'reapplying': 1.0, 'and': 2.0, 'not': 1.0, 'a': 1.0, 'tried': 1.0, 'problem': 1.0, 'with': 1.0}
Word element => {'sticker': 1.0, 'longer': 1.0, 'little': 1.0, 'a': 2.0, 'took': 1.0, 'stickers': 1.0, 'than': 1.0, 'transfers': 1.0, 'walls': 1.0, 'it': 2.0, 'have': 1.0, 'clouds': 1.0, 'easy': 1.0, 'you': 1.0, 'just': 1.0, 'not': 1.0, 'are': 1.0, 'great': 1.0, 'the': 1.0, 'pretty': 1.0, 'was': 1.0, 'look': 1.0, 'to': 2.0, 'rub': 1.0, 'them': 1.0, 'onto': 1.0, 'they': 1.0, 'your': 1.0, 'do': 1.0}
Word element => {'wall': 1.0, 'rather': 1.0, 'on': 1.0, 'came': 1.0, 'wife': 1.0, 'the': 2.0, 'more': 1.0, 'got': 1.0, 'wanted': 1.0, 'looked': 1.0, 'than': 1.0, 'wax': 1.0, 'but': 1.0, 'these': 1.0, 'they': 2.0, 'to': 2.0, 'paper': 1.0, 'great': 1.0, 'stick': 1.0}
Word element => {'he': 1.0, 'words': 1.0, 'new': 1.0, 'would': 2.0, 'applied': 1.0, 'home': 1.0, 'wasnt': 1.0, 'son': 1.0, 'cloud': 1.0, 'tear': 1.0, 'learned': 1.0, 'easy': 1.0, 'very': 1.0, 'are': 1.0, 'night': 1.0, 'them': 2.0, 'removing': 1.0, 'up': 1.0, 'thank': 1.0, 'screw': 1.0, 'if': 1.0, 'also': 1.0, 'application': 1.0, 'sons': 1.0, 'and': 3.0, 'horrible': 1.0, 'gloss': 1.0, 'complicated': 1.0, 'i': 5.0, 'when': 2.0, 'you': 2.0, 'the': 9.0, 'these': 3.0, 'rather': 2.0, 'of': 2.0, 'in': 1.0, 'leaving': 1.0, 'note': 2.0, 'been': 1.0, 'that': 4.0, 'this': 1.0, 'stuck': 1.0, 'first': 2.0, 'room': 1.0, 'unglossed': 1.0, 'only': 1.0, 'sand': 2.0, 'half': 1.0, 'expected': 1.0, 'applying': 1.0, '50': 1.0, 'few': 1.0, 'large': 1.0, 'no': 1.0, 'wall': 5.0, 'about': 1.0, 'least': 1.0, 'to': 6.0, 'now': 1.0, 'have': 3.0, 'goodness': 1.0, 'my': 2.0, 'requires': 1.0, 'did': 1.0, 'please': 2.0, 'better': 1.0, 'kit': 1.0, 'actually': 1.0, 'for': 3.0, 'one': 1.0, 'process': 1.0, 'needless': 1.0, 'say': 2.0, 'is': 2.0, 'looks': 1.0, 'a': 4.0, 'portion': 1.0, 'consumer': 1.0, 'fustrated': 1.0, 'amount': 1.0, 'there': 3.0, 'results': 1.0, 'spent': 1.0, 'on': 2.0}
Word element => {'buy': 1.0, 'will': 1.0, 'scratched': 1.0, 'be': 1.0, 'them': 1.0, 'much': 1.0, 'take': 1.0, 'won': 1.0, 'children': 1.0, 'animals': 1.0, 'look': 1.0, 'have': 1.0, 'protective': 1.0, 'is': 1.0, 'film': 2.0, 'of': 1.0, 'rather': 1.0, 'or': 1.0, 'fragile': 1.0, 'again': 1.0, 'you': 1.0, 'that': 1.0, 'are': 1.0, 'amazing': 1.0, 'cover': 1.0, 'sooooo': 1.0, 'it': 2.0, 'come': 1.0, 'wrinkle': 1.0, 'they': 2.0, 'time': 1.0, 'but': 1.0, 'cloud': 1.0, 'very': 1.0, 'rub': 1.0, 'hard': 1.0, 'from': 1.0, 'ends': 1.0, 'and': 2.0, 'thin': 1.0, 'away': 1.0, 'not': 1.0, 'me': 1.0, 'where': 1.0, 'for': 3.0, 's': 1.0, 't': 2.0, 'a': 1.0, 'long': 1.0, 'per': 1.0, 'took': 1.0, 'minute': 1.0, 'at': 1.0, 'to': 3.0, 'as': 2.0, 'least': 1.0, '10': 1.0, 'up': 1.0, 'don': 1.0, 'the': 3.0, 'reach': 1.0, 'place': 1.0, 'in': 1.0}
Word element => {'pleased': 1.0, 'blue': 1.0, 'looking': 1.0, 'realistic': 1.0, 'large': 1.0, 'easier': 1.0, 'were': 1.0, 'son': 1.0, 'hang': 1.0, 'airplanes': 2.0, 'some': 1.0, 'these': 2.0, 'the': 3.0, 'clouds': 1.0, 'hubby': 1.0, 'ordered': 1.0, 'stick': 1.0, 'peel': 1.0, 'we': 2.0, 't': 1.0, 's': 1.0, 'much': 2.0, 'room': 1.0, 'to': 2.0, 'sky': 1.0, 'look': 3.0, 'and': 5.0, 'up': 3.0, 'once': 1.0, 'of': 1.0, 'on': 1.0, 'put': 3.0, 'but': 2.0, 'in': 1.0, 'are': 2.0, 'my': 2.0, 'went': 1.0, 'with': 2.0, 'excited': 1.0, 'very': 3.0, 'rubbing': 1.0, 'how': 1.0, 'he': 1.0, 'it': 2.0, 'moveable': 1.0, 'again': 1.0, 'fantastic': 2.0, 'wasn': 1.0, 'about': 1.0, 'smoothly': 1.0, 'them': 2.0, 'onto': 1.0, 'walls': 2.0, 'got': 1.0, 'they': 2.0}
Word element => {'good': 1.0, 'far': 1.0, 'so': 2.0, 'patio': 1.0, 'as': 1.0, 'them': 2.0, 'a': 2.0, 'covered': 1.0, 'applying': 1.0, 'but': 1.0, 'transfers': 1.0, 'is': 1.0, 'bath': 1.0, 'are': 1.0, 'great': 1.0, 'the': 1.0, 'these': 1.0, 'clouds': 1.0, 'used': 1.0, 'hassle': 1.0, 'i': 1.0, 'kitchen': 1.0, 'wallpaper': 1.0, 'paste': 1.0, 'ceiling': 1.0, 'to': 2.0, 'attach': 1.0, 'of': 1.0}
Word element => {'category': 1.0, 'buyers': 1.0, 'learned': 1.0, 'lesson': 1.0, 'filing': 1.0, 'am': 1.0, '7x12': 1.0, 'spend': 1.0, 'design': 1.0, 'get': 1.0, 'so': 1.0, 'beware': 1.0, 'math': 1.0, 'in': 2.0, 'flowers': 1.0, 'counted': 1.0, 'have': 1.0, 'each': 1.0, 'wait': 1.0, 'is': 2.0, 'more': 1.0, 'say': 1.0, 'still': 1.0, 'was': 2.0, 'about': 1.0, 'no': 1.0, 'dollars': 1.0, 'wall': 1.0, 'for': 4.0, 'product': 2.0, 'actually': 1.0, '25': 1.0, 'to': 6.0, 'one': 1.0, 'actual': 1.0, 'you': 3.0, 'success': 1.0, 'need': 1.0, '29': 1.0, 'kind': 1.0, 'stick': 1.0, 'now': 1.0, 'rub': 3.0, 'peel': 1.0, 'even': 1.0, 'got': 1.0, 'picture': 2.0, 'there': 2.0, 'give': 1.0, 'photos': 1.0, 'not': 4.0, 'my': 2.0, 'me': 1.0, 'negative': 1.0, 'this': 3.0, 'minutes': 1.0, '100': 1.0, 'like': 1.0, 'know': 2.0, 'which': 1.0, 'rubbed': 1.0, 'packet': 1.0, 'also': 1.0, 'might': 1.0, 'review': 2.0, 'since': 1.0, '1': 1.0, 'basically': 1.0, 'big': 3.0, 'and': 7.0, 'pictured': 1.0, 'a': 2.0, 'tiny': 1.0, 'i': 9.0, '4': 1.0, 'of': 6.0, 'the': 9.0, 'are': 2.0, '84': 1.0, 'using': 1.0, 'reason': 1.0, 'stickers': 6.0, 'did': 2.0, 'they': 3.0, 'will': 1.0, 'means': 1.0, 'packets': 1.0, 'although': 1.0, 'because': 1.0, 'that': 2.0, 'it': 3.0, 'personal': 1.0, 'sort': 1.0, 'be': 1.0, 'people': 1.0, 'mind': 1.0, 'transfer': 1.0, 'thing': 1.0, '2': 3.0, 'money': 1.0, 'only': 1.0, 'preference': 1.0, 'usually': 1.0, 'biggest': 1.0, 'do': 3.0, 'disappointment': 1.0, 'when': 1.0, 'what': 1.0, 'who': 1.0, '12': 1.0, 'on': 1.0, 'realize': 1.0, 'amount': 1.0, 'rest': 1.0, 'please': 1.0, 'would': 1.0, 'medium': 1.0, 'has': 1.0, 'guarantee': 1.0, 'rarely': 1.0, 'them': 1.0, 'flower': 2.0, 'very': 1.0, 'two': 1.0, 'little': 1.0, 'show': 1.0, 'take': 1.0, 'attracted': 1.0}
Word element => {'generally': 1.0, 'place': 1.0, 's': 1.0, 'properly': 1.0, 'tighten': 1.0, 'difficult': 1.0, 'are': 1.0, 'chair': 1.0, 'hold': 1.0, 'straps': 1.0, 'move': 2.0, 'mentioned': 1.0, 'we': 3.0, 'a': 2.0, 't': 2.0, 'pinkat': 1.0, 'akids': 1.0, 'and': 3.0, 'you': 2.0, 'able': 1.0, 'be': 1.0, 'to': 4.0, 'our': 2.0, 'as': 3.0, 'use': 3.0, 'her': 2.0, 'low': 1.0, 'simply': 1.0, 'not': 3.0, 'do': 1.0, 'much': 2.0, 'niece': 2.0, 'works': 1.0, 'mother': 1.0, 'uses': 1.0, 'originally': 1.0, 'law': 1.0, 'height': 1.0, 'the': 7.0, 'of': 1.0, 'i': 2.0, 'well': 3.0, 'tray': 1.0, 'for': 7.0, 'too': 1.0, 'one': 1.0, 'seated': 1.0, 'love': 1.0, 'great': 1.0, 'once': 1.0, 'these': 1.0, 'old': 1.0, 'my': 5.0, '4': 1.0, 'booster': 2.0, 'but': 2.0, 'so': 4.0, 'can': 2.0, 'which': 1.0, 'it': 10.0, 'nor': 1.0, 'seat': 2.0, 'in': 3.0, 'also': 2.0, 'toddler': 1.0, 'year': 1.0, 'home': 1.0, 'is': 4.0, 'at': 4.0, 'mothers': 1.0, 'just': 1.0, 'table': 2.0, 'right': 1.0, 'they': 2.0, 'sell': 1.0, 'has': 3.0, 'puts': 1.0, 'them': 4.0, 'she': 1.0, 'baby': 1.0, 'w': 1.0, 'mart': 1.0, 'probably': 1.0, 'cheaper': 1.0, 'up': 1.0, 'picked': 1.0, 'where': 1.0, 'come': 1.0, 'however': 1.0, 'blue': 1.0, 'easily': 1.0, 'that': 2.0, 'though': 1.0, 'call': 1.0, 'ours': 1.0, 'no': 1.0, 'very': 1.0, 'being': 1.0, 'restrained': 1.0, 'doesn': 1.0, 'reach': 1.0, 'belts': 1.0, 'ii': 1.0, 'with': 2.0, 'neice': 1.0, 'or': 1.0, 'out': 1.0, 'wouldn': 1.0, 'really': 1.0, 'portable': 1.0, 'other': 1.0}
Word element => {'ordered': 1.0, 'just': 1.0, 'secured': 1.0, 'child': 1.0, 'adjust': 1.0, 'absorbs': 1.0, 'because': 1.0, 'second': 2.0, 'can': 1.0, 'removable': 1.0, 'the': 5.0, 'is': 3.0, 'more': 1.0, 'out': 1.0, 'wait': 1.0, 'simple': 1.0, 'wanted': 1.0, 'had': 2.0, 'try': 1.0, 'helps': 1.0, 'chair': 2.0, 'haven': 1.0, 'certainly': 1.0, 'this': 1.0, 'buying': 1.0, 'with': 1.0, 'receive': 1.0, 'before': 1.0, 'have': 3.0, '8': 1.0, 'any': 1.0, 'to': 3.0, 'all': 1.0, 'it': 8.0, 'month': 1.0, 'like': 1.0, 'and': 4.0, 'cloth': 1.0, 'tray': 1.0, 'one': 2.0, 'save': 1.0, 'space': 1.0, 'at': 1.0, 'old': 1.0, 'problems': 1.0, 'handy': 1.0, 'been': 1.0, 'buy': 1.0, 'waterproof': 1.0, 'although': 1.0, 'would': 1.0, 'until': 1.0, 'nice': 1.0, 'everything': 1.0, 'if': 1.0, 't': 2.0, 'we': 5.0, 'a': 1.0, 'easily': 1.0, 'twins': 1.0, 'finish': 1.0, 'on': 1.0}
Word element => {'under': 1.0, 'pads': 1.0, 'same': 1.0, 'would': 1.0, 'again': 1.0, 'over': 1.0, 'all': 1.0, 'i': 2.0, 'chair': 3.0, 'that': 1.0, 'felt': 1.0, 'really': 2.0, 'is': 1.0, 'kitchen': 1.0, 's': 1.0, 'roomy': 1.0, 'save': 2.0, 'wooden': 1.0, 'years': 1.0, 'love': 1.0, 'for': 2.0, 'seat': 1.0, 'great': 1.0, '2': 1.0, 've': 1.0, 'we': 2.0, 'had': 2.0, 'to': 3.0, 'space': 1.0, 'get': 1.0, 'do': 1.0, 'and': 1.0, 'it': 5.0, 'this': 2.0, 'only': 1.0, 'even': 1.0, 'scratched': 1.0, 'a': 1.0, 'put': 1.0, 'but': 1.0, 'toddler': 1.0, 'my': 3.0, 'if': 1.0, 'problem': 1.0}
Word element => {'played': 1.0, 'tray': 1.0, 'toys': 1.0, 'some': 1.0, 'him': 1.0, 'in': 1.0, 'on': 2.0, 'seat': 2.0, 'time': 1.0, 'has': 1.0, 'pregnant': 1.0, 'purchased': 1.0, 'my': 1.0, 'i': 3.0, 'one': 1.0, 'for': 4.0, 'gave': 1.0, 'daugher': 1.0, 'he': 1.0, 'it': 1.0, 'this': 3.0, 'floor': 1.0, 'product': 1.0, 'friends': 1.0, 'and': 4.0, 'son': 1.0, 'baby': 1.0, 'to': 1.0, 'its': 1.0, 'sat': 2.0, 'long': 1.0, 'her': 3.0, 'used': 1.0, 'tv': 1.0, 'front': 1.0, 'a': 2.0, 'the': 3.0, 'great': 1.0, 'of': 1.0, 'set': 1.0}
Word element => {'to': 1.0, 'able': 1.0, 'not': 1.0, 'then': 1.0, 'even': 1.0, 'may': 1.0, 'lot': 1.0, 'need': 1.0, 'room': 1.0, 're': 1.0, 'of': 2.0, 'sticker': 1.0, 'see': 1.0, 'a': 4.0, 'appropriate': 1.0, 'on': 2.0, 'the': 2.0, 'these': 1.0, 'more': 1.0, 'small': 1.0, 'in': 1.0, 'will': 1.0, 'decorating': 1.0, 'book': 1.0, 'be': 2.0, 'sheets': 1.0, 'you': 3.0, 'wall': 2.0, 'very': 1.0, 'butterflies': 2.0, 'were': 2.0, 'than': 1.0, 'three': 1.0, 'large': 2.0, 'flower': 1.0, 'would': 1.0, 'vibrant': 1.0, 'stickers': 2.0, 'if': 1.0, 'ish': 1.0, 'colors': 1.0}
Word element => {'before': 1.0, 'review': 1.0, 'product': 2.0, 'from': 1.0, 'away': 1.0, 'keep': 1.0, 'hard': 1.0, '25': 1.0, 'holds': 1.0, 'into': 1.0, 'crawls': 1.0, 'sometimes': 1.0, 'turn': 1.0, 'babies': 1.0, 'zebras': 1.0, 'purple': 1.0, 'little': 1.0, 'month': 1.0, 'babylike': 1.0, 'be': 1.0, 'minor': 1.0, 'bought': 2.0, 'are': 2.0, 'but': 2.0, 'would': 1.0, 'weeks': 1.0, '5': 1.0, 'have': 3.0, 'while': 1.0, 'complaint': 1.0, 'done': 1.0, 'get': 1.0, '15': 1.0, 'about': 2.0, 'within': 1.0, 'on': 2.0, 'put': 1.0, 'getting': 1.0, 'and': 9.0, 'written': 1.0, 'soon': 1.0, 'minutes': 1.0, 'another': 1.0, 'me': 1.0, 'my': 4.0, 'old': 1.0, 'fact': 1.0, 'age': 1.0, 'big': 3.0, 'comfortable': 1.0, 'son': 3.0, 'out': 2.0, 'taking': 1.0, 'we': 2.0, 'take': 1.0, 'never': 1.0, 'gentle': 1.0, 's': 3.0, 'figured': 1.0, 'a': 6.0, 'small': 1.0, 'smaller': 1.0, 'swing': 7.0, 'does': 1.0, 'only': 3.0, 'usually': 1.0, 'us': 1.0, 'also': 2.0, 'could': 1.0, 'will': 1.0, 'lbs': 2.0, 'was': 4.0, 'purchased': 1.0, 'colors': 2.0, 'portable': 1.0, 'wanted': 2.0, 'extremely': 2.0, 'allows': 1.0, 'with': 2.0, 'highly': 1.0, 'this': 3.0, 'recommend': 1.0, 'together': 1.0, 'up': 2.0, 'the': 13.0, 'of': 5.0, 'fabric': 1.0, 'for': 6.0, 'than': 1.0, 'assemble': 1.0, 'odd': 1.0, 'far': 1.0, 'he': 3.0, 'love': 2.0, 'mobile': 2.0, '24': 1.0, 'space': 1.0, 'happy': 1.0, 'too': 2.0, 'one': 3.0, 'lot': 1.0, 'debated': 1.0, '20': 1.0, 'because': 2.0, 'that': 4.0, 'loves': 2.0, 'something': 2.0, 'had': 2.0, 'songs': 1.0, 'how': 1.0, 'our': 2.0, 'to': 6.0, 'in': 2.0, 'seat': 1.0, 'bright': 1.0, 'home': 1.0, 'house': 1.0, 'gliding': 1.0, 'him': 1.0, 'glider': 3.0, 'it': 10.0, 'as': 1.0, 'falls': 1.0, 'annoying': 1.0, 'being': 1.0, 'very': 4.0, 'when': 1.0, 'good': 1.0, 'asleep': 1.0, 'which': 3.0, 'easy': 1.0, 'any': 1.0, 'surprised': 1.0, 'large': 1.0, 'deal': 1.0, 'baby': 1.0, 'has': 3.0, 'thing': 1.0, '2': 1.0, 'his': 1.0, 'music': 3.0, 'rotates': 1.0, 'grow': 1.0, 'knobs': 1.0, 'so': 3.0, 'speed': 1.0, 'not': 3.0, 'i': 14.0, 'fast': 1.0, 'instead': 1.0, 'things': 1.0, 'motion': 1.0, 'several': 1.0, 'different': 1.0, 'all': 1.0, 'an': 1.0, 'overhead': 2.0, 'is': 2.0, 'at': 3.0, 'look': 1.0}
Word element => {'19': 1.0, 'though': 1.0, 'enough': 1.0, 'fast': 1.0, 'still': 1.0, 'swinging': 1.0, 'while': 1.0, 'in': 1.0, 'catch': 1.0, 'other': 1.0, 'bars': 2.0, 'hold': 1.0, 'to': 2.0, 'on': 1.0, '3': 1.0, 'her': 2.0, 'different': 1.0, 'sticks': 1.0, '5': 1.0, 'swings': 3.0, 'was': 1.0, 'now': 1.0, 'old': 1.0, 'pounds': 1.0, 'i': 3.0, 'tried': 1.0, 'used': 1.0, 'out': 2.0, 'gliders': 1.0, 'what': 1.0, 'even': 2.0, 'have': 2.0, 'bad': 1.0, 'kids': 1.0, 'this': 3.0, 'far': 1.0, 'sure': 1.0, 'so': 2.0, 'travel': 2.0, 'side': 1.0, '7': 2.0, 'my': 3.0, 'since': 1.0, 'rocks': 1.0, '2': 1.0, 'the': 5.0, 'she': 1.0, 'it': 2.0, 'month': 1.0, 'and': 3.0, 'months': 2.0, 'one': 1.0, 'comfortable': 1.0, 'for': 1.0, 'is': 3.0, 'arms': 2.0, 'best': 1.0, 'very': 1.0, 'not': 1.0, 'reviewers': 1.0, 'are': 1.0, 'talking': 1.0, 'thing': 1.0, 'about': 1.0, 'baby': 2.0, 'sturdy': 1.0, 'if': 1.0}
Word element => {'we': 1.0, 'nap': 1.0, 'a': 1.0, 'takes': 1.0, 'love': 1.0, 'it': 4.0, 'sometimes': 1.0, 's': 1.0, 'very': 1.0, 'still': 1.0, 'old': 1.0, 'resistant': 1.0, 'my': 1.0, 'excellent': 1.0, 'two': 1.0, 'in': 1.0, 'years': 1.0, 'is': 1.0, 'son': 1.0}
Word element => {'accomidate': 1.0, '7': 1.0, 'carseat': 1.0, 'long': 1.0, 'if': 1.0, 'can': 1.0, 'money': 1.0, 'spending': 1.0, 'with': 1.0, 'mind': 1.0, 'don': 1.0, 'beginning': 1.0, 'convertible': 1.0, 'have': 2.0, 'probably': 1.0, 'seats': 1.0, 'now': 1.0, 'limit': 1.0, 'old': 1.0, 'son': 2.0, 'about': 2.0, 'not': 1.0, 'm': 2.0, 'new': 1.0, 'something': 1.0, 'would': 1.0, 'each': 1.0, 'the': 7.0, 'also': 2.0, 'said': 1.0, 'in': 3.0, 'time': 1.0, 'so': 2.0, 'it': 4.0, 'this': 6.0, 'research': 1.0, 'had': 1.0, 'reports': 1.0, 'purchased': 2.0, 'use': 2.0, 'liked': 1.0, 'weight': 1.0, 'purchasing': 2.0, 'for': 3.0, 'love': 2.0, 'stroller': 2.0, 'think': 1.0, 'put': 1.0, 'i': 13.0, 'extra': 1.0, 'looking': 1.0, 'did': 1.0, 'approaching': 1.0, 'car': 7.0, 'together': 1.0, 'going': 1.0, 't': 1.0, 'a': 5.0, 'at': 1.0, 'keep': 1.0, 'lot': 1.0, 'easy': 2.0, 'known': 1.0, 'before': 1.0, 'even': 1.0, 'of': 2.0, 'into': 1.0, 'that': 3.0, 'my': 2.0, 'vehicle': 1.0, 'fits': 1.0, 'out': 1.0, 'know': 1.0, 'which': 1.0, 'find': 1.0, 'maybe': 1.0, 'than': 1.0, 'very': 3.0, 'seat': 8.0, 'to': 4.0, 'crazy': 1.0, 'recommend': 1.0, 'was': 2.0, 'more': 2.0, 'is': 4.0, 'comes': 1.0, 'and': 3.0, 'mths': 1.0, 'its': 1.0, 'only': 1.0, 'do': 2.0, 'consumer': 1.0, 'base': 2.0, '7mths': 1.0, 'easily': 1.0}
Word element => {'best': 1.0, 'label': 1.0, 'without': 1.0, 'but': 1.0, 'labels': 1.0, 'wish': 1.0, 'signs': 1.0, 'shows': 1.0, 'material': 2.0, 'hate': 1.0, 'model': 1.0, 'particular': 1.0, 'they': 1.0, 'lb': 1.0, '35': 1.0, 'babies': 1.0, 'their': 1.0, 'compare': 1.0, 'if': 1.0, 'softer': 2.0, 'you': 3.0, 'maybe': 1.0, 's': 3.0, 't': 2.0, 'a': 2.0, 'foam': 1.0, 'graco': 3.0, 'of': 1.0, 'the': 10.0, 'hands': 1.0, 'on': 4.0, 'cover': 1.0, 'just': 1.0, 'seats': 3.0, 'regular': 1.0, 'baby': 2.0, 'many': 1.0, 'we': 3.0, 'difference': 1.0, 'ones': 1.0, 'limits': 1.0, 'one': 2.0, 'for': 5.0, 'had': 2.0, 'when': 1.0, 'what': 1.0, 'child': 2.0, 'don': 2.0, 'should': 1.0, 'in': 2.0, 'seat': 6.0, 'to': 3.0, 'prefer': 1.0, 'weight': 1.0, 'about': 1.0, 'car': 10.0, 'back': 1.0, 'gracopedic': 2.0, 'similar': 1.0, 'and': 6.0, 'months': 1.0, 'moved': 1.0, 'market': 2.0, 'few': 1.0, 'this': 3.0, 'it': 5.0, 'with': 4.0, 'are': 1.0, 'first': 2.0, 'leave': 1.0, 'heavy': 1.0, 'under': 1.0, 'different': 3.0, 'no': 1.0, 'limit': 1.0, 'years': 1.0, 'colors': 1.0, 'there': 2.0, 'fast': 1.0, 'i': 6.0, 'buy': 1.0, 'recommend': 1.0, 'were': 1.0, 'neutral': 1.0, 'questions': 1.0, 'will': 1.0, 'your': 1.0, 'feel': 1.0, 'second': 1.0, 'immediately': 1.0, 'scratch': 1.0, 'much': 1.0, 'have': 1.0, '20': 1.0, 'that': 1.0, 'newborn': 1.0, 'concern': 1.0, 'is': 2.0, 'around': 1.0, 'laying': 1.0, 'hard': 1.0, 'from': 1.0, 'plastic': 1.0, 'he': 1.0, 'infant': 2.0, '6': 1.0, 'our': 3.0, 'how': 1.0, 'itself': 1.0, 'not': 3.0, 'blisters': 1.0, 'ware': 1.0, 'us': 1.0, 'lbs': 1.0, 'was': 3.0, 'old': 1.0, 'feeling': 1.0, 'since': 1.0, 'carry': 3.0, 'women': 1.0, 'me': 1.0, 'my': 1.0, 'honestly': 1.0, 'easy': 1.0, 'know': 1.0, 'so': 1.0, 'can': 1.0}
Word element => {'least': 1.0, 'nap': 1.0, 'they': 1.0, 'their': 1.0, 'love': 1.0, 'kids': 1.0, 'friends': 1.0, 'have': 1.0, 'child': 1.0, 'your': 1.0, 'any': 1.0, 'or': 1.0, 'be': 1.0, 'removable': 1.0, 'head': 1.0, 'my': 1.0, 'every': 1.0, 'material': 1.0, 'fabric': 1.0, 'for': 3.0, 'her': 3.0, 'lightly': 1.0, 'does': 1.0, 'expectation': 1.0, 'was': 1.0, 'old': 1.0, 'into': 1.0, 'can': 1.0, 'so': 3.0, 'time': 2.0, 'not': 4.0, 'n': 1.0, 'to': 1.0, 'as': 2.0, 'them': 1.0, 'has': 1.0, 'seats': 1.0, 'why': 2.0, 'infant': 1.0, 'because': 2.0, 'that': 2.0, 'everywhere': 1.0, 't': 1.0, 'small': 1.0, 'added': 1.0, 'a': 5.0, 'go': 1.0, 'don': 1.0, 'up': 1.0, 'the': 10.0, 'of': 2.0, 'going': 1.0, 'soaked': 1.0, 'buy': 1.0, 'i': 5.0, 'house': 1.0, 'people': 1.0, 'safe': 1.0, 'whose': 1.0, 'platinum': 2.0, 'support': 2.0, 'car': 2.0, 'again': 1.0, 'when': 3.0, 'we': 4.0, 'take': 1.0, 'reviews': 1.0, 'and': 4.0, 'yes': 1.0, 'see': 1.0, 'daughter': 1.0, 'snuzzler': 2.0, 'this': 4.0, 'with': 5.0, 'it': 2.0, 'many': 1.0, 'she': 4.0, 'but': 1.0, 'back': 1.0, 'out': 1.0, 'baseline': 1.0, 'understand': 1.0, 'absolutely': 1.0, 'covered': 1.0, 'seat': 4.0, 'in': 5.0, 'sweat': 2.0, 'amazing': 1.0, 'only': 1.0, 'much': 2.0, '3': 1.0, 'hates': 1.0, 'type': 1.0, 'had': 1.0, 'abandon': 1.0, 'snap': 1.0, 'carseat': 3.0, 'would': 1.0, 'weeks': 1.0, 'screams': 1.0, 'breathe': 1.0, 'being': 1.0, 'very': 2.0, 'dream': 1.0, 'an': 1.0, 'inconsolably': 1.0, 'snugride': 1.0, 'keep': 1.0, 'short': 1.0, 'possible': 1.0, 'dressed': 1.0, 'used': 1.0, 'move': 1.0, 'big': 1.0, 'where': 1.0, 'girl': 1.0, 'our': 1.0, 'stroller': 1.0, 'get': 1.0, 'are': 1.0, 'at': 1.0, 'is': 8.0, 'look': 1.0, 'by': 1.0, 'way': 1.0, 'thing': 1.0}
Word element => {'old': 1.0, 'now': 1.0, 'find': 1.0, 'place': 1.0, 'cheapest': 1.0, 'walmart': 1.0, '140': 1.0, 'about': 1.0, 'paid': 1.0, 'stroller': 1.0, 'terrain': 1.0, 'x': 1.0, 'sale': 1.0, 'extra': 2.0, 'bought': 1.0, 'install': 1.0, 'however': 1.0, 'easy': 1.0, 'sun': 1.0, 'therefore': 1.0, '30': 1.0, 'key': 1.0, 'secure': 1.0, 'back': 1.0, 'larger': 1.0, 'attach': 1.0, 'compatible': 1.0, 'does': 1.0, 'cover': 1.0, 'need': 1.0, 'shoulder': 1.0, 'jeep': 1.0, 'positioned': 1.0, 'after': 1.0, 'keeps': 1.0, 'your': 1.0, 'threading': 1.0, 'still': 1.0, 'if': 1.0, 'comes': 1.0, 'difficult': 1.0, 'strap': 3.0, 'where': 1.0, 'button': 1.0, 'chicco': 1.0, 'no': 2.0, 'press': 1.0, 'just': 1.0, 'system': 1.0, 'harness': 1.0, 'very': 2.0, 'pull': 1.0, 'velboa': 1.0, 'infant': 1.0, 'base': 2.0, 'instead': 1.0, 'am': 2.0, 'head': 1.0, 'retighten': 1.0, 'did': 2.0, 'having': 1.0, 'pleased': 1.0, 'up': 1.0, 'like': 2.0, 'covers': 1.0, 'angle': 1.0, 'must': 1.0, 'have': 7.0, 'love': 1.0, 'bottom': 1.0, 'models': 1.0, 'with': 2.0, 'snuzzler': 1.0, 'foam': 2.0, 'brands': 2.0, 'soft': 1.0, 'remove': 1.0, 'anything': 1.0, 'choose': 1.0, 'both': 1.0, 'add': 1.0, 'buy': 1.0, 'straps': 1.0, 'hand': 1.0, 'lotus': 1.0, 'read': 2.0, 'arms': 1.0, 'and': 9.0, 'down': 1.0, 'platinum': 1.0, 'exstensively': 1.0, 'for': 4.0, 'but': 1.0, 'com': 2.0, 'expensive': 1.0, 'stars': 1.0, 'car': 2.0, 'to': 9.0, 'this': 3.0, 'wish': 1.0, 'choosing': 1.0, 'baby': 1.0, 'she': 3.0, 'it': 7.0, 'on': 4.0, 'graco': 2.0, 'prior': 1.0, 'i': 13.0, 'gracopedic': 2.0, 'stated': 1.0, 'stores': 1.0, '4': 1.0, 'features': 1.0, 'amazon': 1.0, 'sonar': 1.0, 'seat': 6.0, 'in': 4.0, 'also': 2.0, 'a': 3.0, 'go': 1.0, 'could': 2.0, 'liberty': 1.0, 'check': 1.0, 'vision': 1.0, 'at': 3.0, 'look': 1.0, 'is': 7.0, 'handle': 2.0, 'out': 3.0, 'sport': 1.0, 'are': 2.0, 'then': 1.0, 'reviews': 2.0, 'pink': 1.0, 'they': 1.0, 'complaints': 1.0, 'you': 2.0, 'using': 1.0, 'looking': 1.0, 'can': 2.0, '2': 2.0, 'that': 2.0, 'more': 3.0, 'babies': 2.0, 'their': 2.0, 'compare': 1.0, 'not': 2.0, 'forward': 1.0, 'yard': 1.0, 'none': 1.0, 'some': 1.0, 'softness': 1.0, 'notch': 1.0, 'thickness': 1.0, 'due': 2.0, 'department': 1.0, 'toys': 1.0, 'the': 24.0, 'of': 4.0, 'had': 2.0, 'used': 2.0, 'created': 1.0, 'model': 1.0, 'quite': 1.0, 'fuss': 1.0, 'too': 1.0, 'one': 1.0, 'months': 2.0, 'hard': 1.0, 'while': 1.0, 'summer': 1.0, 'would': 4.0, 's': 1.0, 'preferred': 1.0, 'hang': 1.0, 'give': 1.0, 'my': 1.0, 'website': 1.0, 'me': 1.0, '5': 2.0, 'fit': 1.0, 'rest': 1.0, 'further': 1.0, 'enabled': 1.0, 'off': 1.0, 'see': 1.0, 'was': 2.0, 'her': 1.0, 'smaller': 1.0, 'felt': 1.0, 'under': 1.0, 'put': 1.0, 'much': 1.0, 'all': 1.0, 'other': 2.0, 'an': 2.0}
Word element => {'want': 1.0, 'after': 1.0, 'around': 1.0, 'thumb': 1.0, 'blindly': 1.0, 'strap': 1.0, 'note': 1.0, 'last': 1.0, 'never': 1.0, 'disappointment': 1.0, 'under': 1.0, 'winter': 1.0, 'which': 3.0, 'sleeping': 1.0, 'know': 1.0, 'top': 1.0, 'there': 1.0, 'buy': 1.0, 'straps': 4.0, 'adjust': 1.0, 'so': 1.0, 'can': 1.0, 'when': 1.0, 'by': 1.0, 'why': 1.0, 'just': 2.0, 'through': 1.0, 'nightmare': 1.0, 'a': 7.0, 's': 2.0, 'second': 1.0, 'again': 1.0, 'car': 2.0, 'other': 1.0, 'have': 4.0, 'baby': 8.0, 'about': 1.0, 'clothing': 1.0, 'not': 1.0, 'two': 1.0, 'stated': 1.0, 'i': 3.0, 'pounds': 1.0, 'try': 1.0, 'one': 2.0, 'way': 1.0, 'huge': 2.0, 'for': 2.0, 'goes': 1.0, 'grown': 1.0, 'the': 12.0, 'users': 1.0, 'or': 2.0, 'only': 1.0, 'main': 1.0, 'uses': 1.0, 'this': 5.0, 'up': 1.0, 'major': 1.0, 'are': 1.0, 'first': 1.0, 'cannot': 1.0, 'very': 1.0, 'inches': 1.0, 'to': 6.0, 'does': 1.0, 'use': 1.0, 'used': 1.0, 'move': 1.0, 'elongating': 1.0, 'lengthen': 1.0, 'tighten': 1.0, 'piece': 1.0, 'easily': 1.0, 'that': 2.0, 'into': 1.0, 'seat': 3.0, 'in': 3.0, 'between': 1.0, 'get': 1.0, 'months': 1.0, 'negatives': 1.0, 'legs': 2.0, 'snap': 1.0, 'grows': 1.0, 'especially': 1.0, 'bundle': 1.0, 'if': 2.0, 'every': 1.0, 'any': 1.0, 'your': 3.0, 'mom': 1.0, 'problem': 1.0, 'cold': 1.0, 'climate': 1.0, 'adjustment': 1.0, 'squeaky': 1.0, 'wearing': 1.0, 'cloth': 1.0, 'awkward': 1.0, 'as': 2.0, 'diaper': 1.0, 'me': 2.0, 'my': 2.0, '18': 1.0, 'and': 7.0, '27': 1.0, 'handle': 1.0, 'is': 9.0, 'at': 1.0, '5': 1.0, 'has': 1.0, 'it': 1.0, 'already': 1.0, 'out': 1.0, 'reason': 2.0, 'bulky': 1.0, 'would': 2.0, 'loved': 1.0, 'be': 1.0, 'you': 5.0, 'loud': 1.0, 'able': 1.0}
Word element => {'safe': 1.0, 'very': 1.0, 'safety': 1.0, 'important': 1.0, 'most': 1.0, '4': 1.0, '5': 1.0, 'under': 1.0, 'both': 1.0, 'and': 2.0, 'since': 1.0, 'be': 1.0, 'we': 1.0, 'confident': 1.0, 'small': 1.0, 'a': 5.0, 's': 1.0, 'course': 1.0, 'if': 2.0, 'hold': 1.0, 'like': 2.0, 'using': 2.0, 'than': 2.0, 'usage': 1.0, 'has': 1.0, 'won': 1.0, 'from': 1.0, 'compared': 1.0, 'feel': 1.0, 'great': 1.0, 't': 1.0, 'snagged': 1.0, 'normal': 1.0, 'else': 1.0, 'makes': 1.0, 'material': 2.0, 'really': 1.0, 'up': 2.0, '6': 1.0, 'of': 1.0, 'the': 9.0, 'm': 1.0, 'seat': 4.0, 'our': 1.0, 'car': 2.0, 'past': 1.0, 'but': 2.0, 'been': 1.0, 'that': 3.0, 'something': 1.0, 'would': 2.0, 'thing': 2.0, 'about': 1.0, 'for': 3.0, 'color': 1.0, 'well': 1.0, 'i': 11.0, 'older': 1.0, 'neutral': 1.0, 'now': 1.0, 'this': 4.0, 'already': 1.0, 'it': 6.0, 'knew': 1.0, 'colorful': 1.0, 'look': 2.0, 'at': 2.0, 'is': 5.0, 'husband': 1.0, 'more': 2.0, 'end': 1.0, 'do': 1.0, 'another': 1.0, 'me': 1.0, 'looks': 1.0, 'my': 2.0, 'fact': 1.0, 'lightweight': 1.0, 'others': 1.0, 'deal': 1.0, 'baby': 3.0, 'road': 1.0, 'when': 1.0, 'you': 3.0, 'friends': 1.0, 'smaller': 1.0, 'chicco': 1.0, 'just': 1.0, 'seats': 1.0, 'durable': 1.0, 'wish': 1.0, 'liked': 1.0, 'are': 1.0, 'bothered': 1.0, 'first': 1.0, 've': 1.0, 'down': 1.0, 'platinum': 1.0, 'had': 1.0, 'opted': 1.0, 'months': 1.0, 'get': 1.0, 'sure': 1.0, 're': 1.0, 'to': 1.0, 'pretty': 1.0, 'will': 2.0, 'have': 1.0, 'average': 1.0, 'or': 1.0, 'outgrow': 1.0, 'one': 2.0, 'lot': 3.0, 'too': 1.0, 'only': 1.0, 'quickly': 1.0}
Word element => {'convertible': 1.0, 'graco': 2.0, 'so': 1.0, 'carefuli': 1.0, 'improper': 1.0, 'could': 1.0, 'cars': 1.0, 'most': 2.0, 'happens': 2.0, 'if': 5.0, 'fits': 3.0, 'all': 1.0, 'extra': 1.0, 'buy': 1.0, 'do': 2.0, 'put': 1.0, 'bum': 1.0, 'handle': 2.0, 'adjustable': 1.0, 've': 2.0, 'you': 8.0, 'platinum': 1.0, 'on': 4.0, 'birth': 1.0, 'comfortably': 1.0, 'didn': 1.0, 'booths': 1.0, 'clean': 1.0, 'car': 4.0, 'window': 1.0, 'nice': 1.0, 'sex': 1.0, 'curve': 1.0, 'sometimes': 2.0, 'easy': 4.0, 'good': 2.0, 'side': 2.0, 'weight': 1.0, 'not': 4.0, 'before': 1.0, 'probably': 2.0, 'your': 2.0, 'any': 1.0, 'i': 8.0, 'plus': 1.0, 'base': 3.0, 'but': 2.0, 'securely': 1.0, 'neutral': 1.0, '25': 1.0, 'happy': 2.0, 'outgrows': 1.0, 'back': 1.0, '335i': 1.0, 'suv': 1.0, 'allows': 1.0, 'color': 1.0, 'months': 1.0, 'however': 2.0, 'get': 2.0, 'model': 1.0, 'with': 7.0, 'using': 2.0, 'such': 1.0, 'fabric': 1.0, 'are': 2.0, 'my': 4.0, 'me': 1.0, 'our': 2.0, 'to': 13.0, 'length': 1.0, 'high': 2.0, 'grow': 1.0, 'seat': 7.0, 'in': 8.0, 'one': 2.0, 'grocery': 1.0, '6': 1.0, 'the': 16.0, 'pros': 1.0, 'proper': 1.0, 'flat': 1.0, 'heavy': 3.0, 'off': 1.0, 'seems': 1.0, 'snugride': 1.0, 'did': 1.0, 'been': 2.0, 'forth': 1.0, 'because': 2.0, 'heads': 1.0, 'easily': 1.0, 'imagine': 1.0, 'hit': 1.0, 'a': 9.0, 'small': 1.0, 'out': 2.0, 'without': 1.0, 'lifting': 1.0, 'we': 4.0, 't': 2.0, 'hard': 2.0, 'child': 4.0, 'baby': 4.0, 'carts': 1.0, 'already': 1.0, 'sort': 1.0, 'lead': 1.0, 'at': 1.0, 'seatbelt': 1.0, '2': 1.0, 'slight': 1.0, 'center': 1.0, 'from': 1.0, 'restaurant': 1.0, '16lbs': 1.0, 'bottom': 1.0, 'an': 3.0, 'rocks': 1.0, 'crabby': 1.0, 'babies': 1.0, 'she': 2.0, 'make': 1.0, 'help': 1.0, 'sure': 1.0, 'thread': 1.0, 'its': 2.0, 'this': 5.0, '32': 1.0, 'eyes': 1.0, 'safe': 1.0, 'surface': 1.0, 'cons': 1.0, 'carry': 1.0, 'low': 1.0, 'roof': 2.0, 'bmw': 1.0, 'couldn': 1.0, 'lift': 1.0, 'install': 4.0, 'up': 1.0, 'and': 8.0, 'tried': 1.0, 'constantly': 1.0, 'is': 2.0, 'can': 1.0, 'releases': 1.0, 'chose': 1.0, 'awake': 1.0, 'that': 3.0, 'o': 1.0, 'there': 1.0, 'never': 1.0, 'some': 1.0, 'by': 1.0, 'though': 1.0, 'now': 2.0, 'problem': 1.0, 'newborn': 1.0, 'purchase': 1.0, 'for': 5.0, 'tilt': 1.0, 'head': 1.0, 'protector': 1.0, 'viewing': 1.0, 'although': 1.0, 'backwards': 1.0, 'own': 1.0, 'it': 9.0, 'be': 1.0, 'taller': 1.0, 'pain': 1.0, 'adjust': 1.0, 'jostles': 1.0, 'chairs': 1.0, 'gets': 1.0, 'forwards': 1.0, 'really': 3.0, 'press': 1.0, 'no': 1.0, 'both': 1.0, 'made': 2.0, 'sunshade': 1.0, 'around': 1.0, 'each': 1.0, 's': 2.0, 'will': 3.0, 'cover': 1.0, 'sun': 1.0, 'angle': 1.0, 'or': 1.0, 'they': 1.0, 'over': 1.0, 'sleeping': 1.0, 'dark': 1.0, 'want': 1.0, 'find': 1.0, 'very': 1.0, 'even': 1.0, 'of': 3.0, 'old': 1.0, 'bet': 1.0, 'have': 7.0, 'hot': 1.0, 'know': 1.0, 're': 2.0, 'harness': 1.0, 'when': 2.0}
Word element => {'side': 1.0, 'while': 1.0, 'up': 1.0, 'alot': 1.0, 'woken': 1.0, 'chair': 1.0, 'perfect': 1.0, 'out': 1.0, 'run': 1.0, 'nice': 1.0, 'when': 1.0, 'buttons': 2.0, 'if': 4.0, 'want': 1.0, 'another': 1.0, 'my': 2.0, 'complained': 1.0, 'lovely': 1.0, 'say': 1.0, 'appearance': 1.0, 'and': 2.0, 'clicks': 1.0, 'highly': 1.0, 'this': 4.0, 'few': 1.0, 'different': 1.0, 'has': 1.0, 's': 1.0, 't': 1.0, 'car': 6.0, 'infant': 1.0, 'who': 1.0, 'was': 2.0, 'doesn': 1.0, 'reason': 1.0, 'looking': 1.0, 'close': 1.0, 'well': 1.0, 'i': 3.0, 'as': 2.0, 'all': 1.0, 'to': 2.0, 'decided': 1.0, 'tons': 1.0, 'search': 1.0, 'cameleon': 1.0, 'not': 3.0, 'then': 1.0, 'reviews': 1.0, 'on': 3.0, 'make': 2.0, 'stood': 1.0, 'seat': 4.0, 'in': 1.0, 'of': 4.0, 'the': 12.0, 'graco': 1.0, 'something': 1.0, 'would': 1.0, 'snugride': 1.0, 'just': 1.0, 'why': 1.0, 'seats': 2.0, 'that': 3.0, 'because': 1.0, 'does': 1.0, 'carrying': 1.0, 'it': 5.0, 'slam': 1.0, 'is': 4.0, 'at': 1.0, 'look': 1.0, 'problem': 1.0, 'bugaboo': 1.0, 'base': 1.0, 'released': 1.0, 'purchased': 1.0, 'bar': 1.0, 'also': 1.0, 'about': 1.0, 'a': 5.0, 'loudness': 1.0, 'mil': 1.0, 'but': 1.0, 'first': 1.0, 'are': 1.0, 'knew': 1.0, 'gentle': 1.0, 'same': 1.0, 'releasing': 1.0, 'recommend': 1.0, 'were': 1.0, 'needless': 1.0, 'really': 1.0, 'you': 4.0, 'loud': 2.0, 'adjusting': 1.0, 'noise': 2.0, 'door': 1.0, 'specific': 1.0, 'gently': 2.0, 'others': 1.0, 'baby': 1.0}
Word element => {'snowing': 1.0, 'raining': 1.0, 'starts': 1.0, 'if': 1.0, 'shed': 1.0, 'umbrella': 1.0, 'getting': 1.0, 'for': 1.0, 'heat': 1.0, 'were': 1.0, 'like': 1.0, 'entirely': 1.0, 'seats': 1.0, 'never': 1.0, 'lots': 2.0, 'cold': 1.0, 'long': 1.0, 'guessing': 1.0, 'too': 2.0, 'and': 2.0, 'the': 8.0, 'nice': 1.0, 'great': 1.0, 'loosen': 1.0, 'warm': 1.0, 'or': 2.0, 'tighten': 1.0, 'had': 1.0, 'stroller': 1.0, 'sunny': 1.0, 'fear': 1.0, 'is': 2.0, 'with': 1.0, 'this': 2.0, 'covers': 1.0, 'it': 3.0, 'happens': 1.0, 'only': 1.0, 'so': 1.0, 'plate': 1.0, 'bit': 1.0, 'time': 1.0, 'hence': 1.0, 'easy': 2.0, 'con': 1.0, 's': 1.0, 'walks': 2.0, 'we': 3.0, 'go': 2.0, 'a': 2.0, 'front': 1.0, 'to': 3.0, 'seat': 1.0, 'have': 1.0, 'why': 1.0, 'car': 3.0, 'straps': 1.0, 'find': 1.0, 'you': 1.0, 'little': 1.0, 'snap': 2.0, 'silver': 1.0, 'in': 5.0, 'buckle': 1.0, 'once': 1.0, 'of': 3.0, 'into': 2.0, 'that': 1.0, 'on': 3.0, 'days': 1.0, 'baby': 3.0, 'would': 1.0, 'overheat': 1.0, 'wintertime': 1.0, 'i': 2.0, 'm': 1.0}
Word element => {'before': 1.0, 'infant': 1.0, 'out': 1.0, 'larger': 1.0, 'know': 1.0, 'knowing': 1.0, 'short': 1.0, 'more': 1.0, 'occur': 1.0, 'problem': 1.0, 'solved': 1.0, 't': 1.0, 'only': 1.0, 'hasn': 1.0, 'have': 2.0, 'buy': 1.0, 'gone': 1.0, 'straps': 1.0, 'way': 1.0, 'seems': 1.0, 'harness': 1.0, 'winter': 1.0, 'with': 1.0, 'especially': 1.0, 'struggle': 1.0, 'been': 2.0, 'past': 1.0, 'growth': 1.0, 'strapped': 1.0, 'average': 1.0, 'real': 1.0, 'exactly': 1.0, 'new': 1.0, 'time': 1.0, 'model': 1.0, 'tall': 2.0, 'inches': 1.0, 'their': 1.0, '25': 1.0, 'version': 1.0, '15': 1.0, 'get': 2.0, 'months': 1.0, '5': 2.0, 'all': 1.0, 'fits': 1.0, 'me': 1.0, 'my': 3.0, 'details': 1.0, 'go': 1.0, 'a': 8.0, 's': 3.0, 'according': 1.0, 'idea': 1.0, 'length': 1.0, 'to': 6.0, 'job': 1.0, 'he': 2.0, 'ugly': 1.0, 'of': 3.0, 'the': 12.0, 'great': 1.0, 'little': 2.0, 'nice': 2.0, 'does': 2.0, 'having': 2.0, 'and': 6.0, 'base': 1.0, 'important': 1.0, 'lbs': 1.0, 'was': 2.0, 'car': 3.0, 'why': 2.0, 'on': 2.0, 'too': 2.0, 'one': 3.0, 'adjusted': 1.0, 'bought': 1.0, 'product': 1.0, 'actually': 2.0, 'old': 2.0, '35': 1.0, 'what': 1.0, 'when': 1.0, 'secondhand': 1.0, 'i': 9.0, 'wondering': 1.0, 'looked': 1.0, 'from': 1.0, 'few': 1.0, 'this': 3.0, 'wish': 1.0, '30': 1.0, 'him': 1.0, 'it': 8.0, 'are': 1.0, 'covered': 1.0, 'registered': 1.0, 'baby': 3.0, 'many': 1.0, 'ride': 1.0, 'obvious': 1.0, 'so': 1.0, 'coat': 1.0, 'also': 2.0, 'will': 1.0, 'seat': 5.0, 'in': 4.0, 'getting': 1.0, 'items': 1.0, 'digress': 1.0, '4': 1.0, 'case': 1.0, 'because': 2.0, 'that': 2.0, 'jogger': 1.0, 'patterns': 1.0, 'look': 1.0, 'snug': 1.0, 'is': 2.0, 'our': 1.0, 'representing': 1.0, 'stroller': 1.0, 'chose': 1.0, 'but': 1.0, 'simple': 1.0, 'pregnant': 1.0, 'man': 1.0, 'not': 1.0, 'really': 1.0, 'had': 1.0, 'bigger': 1.0, 'loud': 1.0, 'versions': 1.0, 'did': 1.0, 'makes': 1.0, 'snugride': 1.0, 'graco': 1.0, 'for': 5.0, '32': 1.0, 'we': 1.0, 'maximum': 2.0, 'weight': 1.0, 'each': 1.0, 'state': 1.0, 'tight': 1.0, 'weeks': 1.0, 'would': 2.0, 'keeping': 1.0, 'hold': 1.0, 'numbers': 1.0, 'charts': 1.0, 'glossed': 1.0, 'over': 1.0, 'no': 1.0, 'they': 1.0, 'yesterday': 1.0, 'ugh': 1.0, 'be': 1.0, '22': 1.0, 'now': 2.0}
Word element => {'you': 1.0, 'replace': 1.0, 'is': 1.0, 'so': 1.0, 'thank': 1.0, 'heatrbroken': 1.0, 'we': 1.0, 'ornaments': 1.0, 'able': 1.0, 'all': 1.0, 'about': 1.0, 'just': 2.0, 'of': 2.0, 'hold': 1.0, 'a': 1.0, 'smashed': 1.0, 'had': 1.0, 'was': 3.0, 'to': 2.0, 'my': 1.0, 'happy': 2.0, 'over': 1.0, 'i': 4.0, 'but': 1.0, 'daughter': 1.0, 'past': 1.0, 'this': 3.0, 'christmas': 1.0, 'that': 1.0, 'were': 1.0, 'our': 2.0, 'for': 1.0, 'one': 2.0, 'tree': 1.0, 'fell': 1.0, 'get': 1.0, 'and': 2.0}
Word element => {'spots': 1.0, 'fixing': 1.0, 'one': 1.0, 'jail': 1.0, 'over': 2.0, 'supposed': 2.0, 'actually': 1.0, 'change': 1.0, 'walk': 1.0, 'you': 13.0, 'set': 1.0, 'built': 1.0, 'stays': 1.0, 'solidly': 1.0, 'unscaleable': 1.0, 'only': 2.0, 'can': 2.0, 'is': 8.0, 'here': 1.0, 'e': 1.0, 'cell': 1.0, 'extension': 4.0, 'not': 4.0, 'page': 1.0, 'this': 6.0, 'but': 4.0, 'instead': 1.0, 'soon': 1.0, 'discourge': 1.0, 'say': 1.0, 'feedback': 1.0, 'beautiful': 1.0, 'as': 4.0, 'have': 7.0, 'that': 12.0, 'so': 4.0, 'mar': 1.0, 'something': 2.0, 'up': 2.0, 'says': 1.0, 'step': 1.0, 'clarify': 1.0, 'way': 1.0, 'all': 1.0, 'problem': 1.0, 'though': 1.0, 'kidco': 1.0, 'extra': 1.0, 'looks': 1.0, 'standard': 2.0, 'open': 5.0, 'think': 2.0, 'side': 1.0, 'which': 1.0, 'don': 5.0, 'walkover': 1.0, 'arrived': 1.0, 'the': 19.0, 'even': 1.0, 'ultimately': 1.0, 'of': 3.0, 'doing': 1.0, 'gate': 4.0, 't': 7.0, 'fit': 1.0, 'approaching': 1.0, 'doesn': 1.0, 's': 1.0, 'a': 8.0, 'being': 2.0, 'posts': 1.0, 'try': 1.0, 'such': 2.0, 'for': 2.0, 'very': 1.0, 'knew': 1.0, 'some': 1.0, 'be': 2.0, 'it': 20.0, 'constantly': 1.0, 'bore': 1.0, 'tried': 1.0, 'and': 11.0, 'tall': 1.0, 'kind': 2.0, 'time': 1.0, 'torn': 1.0, 'nice': 1.0, 'there': 2.0, 'sacrifice': 1.0, 'close': 1.0, 'does': 1.0, 'looking': 1.0, 'know': 1.0, 'able': 1.0, 'however': 1.0, 'patience': 1.0, 'like': 1.0, 'rather': 1.0, 'willing': 1.0, 'institutional': 1.0, 'to': 22.0, 'item': 1.0, 'will': 4.0, 'mark': 1.0, 'doxie': 1.0, 'than': 3.0, 'gateway': 1.0, 'bet': 1.0, 'dachshund': 1.0, 'on': 4.0, 'make': 1.0, 'was': 2.0, 'rubber': 2.0, 'or': 3.0, 'also': 2.0, 'need': 2.0, 'according': 1.0, 'what': 2.0, 'when': 1.0, 'my': 2.0, 'are': 4.0, 'damage': 2.0, 'want': 1.0, 'walls': 3.0, 'installation': 1.0, 'adhere': 1.0, 'at': 1.0, 'notes': 1.0, 'instructions': 1.0, 'laid': 1.0, 'out': 1.0, 'i': 15.0, 'simple': 1.0, 'really': 1.0, 'shouldn': 1.0, 'them': 1.0, 'except': 1.0, 'amazon': 1.0, 'seemed': 2.0, 'bought': 1.0, 'comes': 3.0, 'patch': 1.0, 'direction': 1.0, 'with': 4.0, '1': 1.0, 'leave': 1.0, 'center': 1.0, '2': 2.0, 'thing': 1.0, 'directions': 1.0, 'other': 3.0, 'state': 1.0, 'detrmined': 1.0, 'agile': 1.0, 'should': 1.0, 'joy': 1.0, '4': 1.0, 'cups': 1.0, 'replace': 1.0, 'obviously': 1.0, 'typo': 1.0, 'pins': 2.0, 'screw': 1.0, 'although': 2.0, 'per': 1.0, 'in': 1.0, 'use': 2.0, 'screws': 1.0, 'put': 1.0, 'onto': 1.0, 'pressure': 3.0, 'plates': 3.0, 'through': 1.0, 'into': 2.0, 'houses': 1.0, 'gates': 1.0, 'least': 1.0, 'if': 4.0, 'sticky': 1.0, 'tape': 1.0, 'tear': 1.0, 'wallpaper': 1.0, 'paint': 4.0, 'remove': 1.0, 'said': 1.0, 'used': 1.0, 'caused': 1.0, 'wierdly': 1.0, 'naturally': 1.0, 'stoppers': 1.0, 'pull': 1.0, 'down': 1.0, 'point': 1.0, 'no': 1.0, 'would': 1.0, 'far': 1.0, 'go': 2.0, 'door': 1.0, 'wall': 1.0, 'needed': 1.0, 'both': 2.0, 'easier': 1.0}
Word element => {'arms': 1.0, 'my': 1.0, 'in': 1.0, 'no': 1.0, 'has': 1.0, 'sturdy': 1.0, 'because': 1.0, 'fairly': 1.0, 'baby': 1.0, 'and': 2.0, 'latch': 1.0, 'bars': 1.0, 'nice': 1.0, 'itself': 1.0, 'gate': 1.0, 'is': 3.0, 'it': 2.0, 'hard': 1.0, 'with': 1.0, 'the': 3.0, 'unlatch': 1.0, 'problem': 1.0, 's': 1.0, 'to': 1.0, 'one': 1.0, 'handed': 1.0}
Word element => {'one': 1.0, 'us': 1.0, 'shipped': 1.0, 'amazon': 1.0, 'because': 1.0, 'both': 1.0, 'will': 1.0, 'instructions': 2.0, 'should': 1.0, 'home': 1.0, 'no': 2.0, 'has': 1.0, 'and': 1.0, 'the': 2.0, 'with': 1.0, 'it': 2.0, 'opened': 1.0, 'box': 1.0, 'buy': 1.0, 'we': 2.0, 'or': 2.0, 'depot': 1.0, 'website': 1.0, 'says': 1.0, 'have': 2.0, 'hardware': 2.0, 'to': 3.0, 'go': 1.0, 'screws': 1.0}
Word element => {'and': 1.0, 'open': 1.0, 'how': 1.0, 'product': 1.0, 'i': 1.0, 'or': 1.0, 'which': 1.0, 'for': 2.0, 'proof': 1.0, 'looking': 1.0, 'what': 1.0, 'up': 1.0, 'close': 1.0, 'totally': 1.0, 'figure': 1.0, 'is': 2.0, 'gate': 1.0, 'out': 1.0, 'them': 1.0, 'it': 1.0, 'this': 1.0, 'once': 1.0, 'no': 1.0, 'around': 1.0, 'sturdy': 1.0, 'you': 1.0, 'way': 1.0, 'great': 1.0, 'was': 1.0, 'to': 2.0, 'ferret': 1.0, 'climb': 1.0, 'under': 1.0}
Word element => {'and': 1.0, 'very': 2.0, 'install': 1.0, 'type': 1.0, 'looks': 1.0, 'easy': 1.0, 'purchase': 1.0, 'use': 1.0, 'to': 1.0, 'was': 1.0, 'gates': 1.0, 'gate': 1.0, 'than': 1.0, 'wood': 1.0, 'were': 1.0, 'much': 1.0, 'thus': 1.0, 'or': 1.0, 'this': 1.0, 'with': 1.0, 'it': 1.0, 'nicer': 1.0, 'the': 1.0, 'mesh': 1.0, 'we': 1.0, 'happy': 1.0}
Word element => {'built': 1.0, 'nice': 1.0, 'during': 1.0, 'day': 1.0, 'open': 1.0, 'keep': 1.0, 'looking': 1.0, 'can': 1.0, 'tired': 1.0, 'was': 1.0, 'and': 3.0, 'our': 1.0, 'well': 1.0, 'a': 1.0, 'new': 1.0, 'needed': 1.0, 'for': 1.0, 'one': 2.0, 'of': 1.0, 'opens': 1.0, 'stepping': 1.0, 'ways': 1.0, 'gate': 1.0, 'over': 1.0, 'puppy': 1.0, 'the': 2.0, 'i': 3.0, 'old': 1.0, 'is': 1.0, 'perfect': 1.0, 'this': 1.0, 'it': 2.0, 'both': 1.0}
Word element => {'they': 1.0, 'probably': 1.0, 'part': 1.0, 'top': 1.0, 'need': 1.0, 'dog': 1.0, 'kid': 1.0, 'you': 2.0, 'if': 1.0, 'latch': 2.0, 'bit': 1.0, 'is': 3.0, 'thing': 1.0, 'automatically': 1.0, 'convenient': 1.0, 'acquard': 1.0, 'of': 1.0, 'open': 1.0, 'better': 1.0, 'get': 1.0, 'sure': 1.0, 'easy': 1.0, 'this': 1.0, 'll': 1.0, 'direction': 1.0, 'write': 1.0, 'used': 2.0, 'only': 1.0, 'works': 1.0, 'm': 1.0, 'both': 1.0, 'now': 1.0, 'was': 3.0, 're': 1.0, 'enough': 2.0, 'learn': 1.0, 'feels': 1.0, 'own': 1.0, 'solid': 1.0, 'constantly': 1.0, 'on': 1.0, 'impressed': 1.0, 'closed': 1.0, 'and': 3.0, 'using': 1.0, 'for': 2.0, 'mechanism': 1.0, 'one': 3.0, 'ways': 1.0, 'gate': 1.0, 'the': 7.0, 's': 2.0, 'a': 2.0, 't': 3.0, 'won': 1.0, 'half': 1.0, 'review': 1.0, 'i': 6.0, 'night': 2.0, 'something': 1.0, 've': 1.0, 'in': 2.0, 'it': 5.0, 'looks': 1.0, 'really': 2.0, 'door': 1.0, 'big': 1.0, 'install': 1.0, 'excited': 1.0, 'great': 1.0, 'nice': 1.0, 'haven': 1.0, 'to': 6.0, 'any': 1.0, 'other': 1.0, 'gates': 1.0, 'after': 1.0, 'can': 1.0, 'but': 2.0, 'been': 1.0, 'that': 4.0, 'also': 1.0, 'swings': 2.0, 'opening': 1.0}
Word element => {'areas': 1.0, 'other': 1.0, 'house': 1.0, 'from': 1.0, 'dog': 1.0, 'gate': 2.0, 'looks': 1.0, 'still': 1.0, 'to': 1.0, 'great': 1.0, 'required': 1.0, 'and': 1.0, 'but': 1.0, 'of': 1.0, 'keep': 1.0, 'good': 1.0, 'installation': 1.0, 'mounting': 1.0}
Word element => {'be': 1.0, 'elderly': 1.0, 'or': 1.0, 'toddlers': 1.0, 'if': 1.0, 'strength': 1.0, 'up': 1.0, 'and': 2.0, 'sturdy': 1.0, 'a': 1.0, 'well': 1.0, 'also': 1.0, 'made': 1.0, 'install': 1.0, 'twist': 1.0, 'lift': 1.0, 'works': 1.0, '2': 1.0, 'nicely': 1.0, 'great': 1.0, 'to': 6.0, 'hands': 1.0, 'easy': 1.0, 'gate': 2.0, 'want': 1.0, 'is': 3.0, 'not': 1.0, 'because': 1.0, 'young': 1.0, 'using': 1.0, 'for': 1.0, 'only': 1.0, 'it': 2.0, 'hard': 1.0, 'children': 2.0, 'open': 3.0, 'you': 2.0, 'able': 1.0, 'thing': 1.0, 'have': 1.0}
Word element => {'regret': 1.0, 'buy': 1.0, 'other': 1.0, 'an': 1.0, 'too': 1.0, 'anticipate': 1.0, 'don': 1.0, 'as': 3.0, 'test': 1.0, 'finding': 1.0, 'start': 1.0, 'we': 1.0, 'bedding': 1.0, 'a': 4.0, 'so': 2.0, 'time': 2.0, 'in': 4.0, 'my': 2.0, 'may': 1.0, 'javis': 1.0, 'no': 1.0, 'but': 2.0, '2': 3.0, 'dots': 1.0, 'want': 1.0, 'business': 1.0, 'his': 2.0, 'year': 1.0, 'beloved': 1.0, 'searched': 1.0, 'than': 1.0, 'you': 2.0, 'things': 1.0, 'starts': 1.0, 'blankets': 2.0, 'blaket': 1.0, 'davis': 1.0, 'is': 3.0, 'more': 1.0, 'be': 2.0, 'old': 1.0, 'do': 1.0, 'much': 3.0, 'company': 1.0, 'hasn': 1.0, 'only': 1.0, 'issue': 1.0, 'attached': 1.0, 'needed': 1.0, 'he': 2.0, 'lost': 1.0, 'bit': 1.0, 'found': 2.0, 'now': 1.0, 'worth': 1.0, 'or': 1.0, 'and': 6.0, '1': 1.0, 'wont': 1.0, 'school': 1.0, 'great': 1.0, 'decided': 1.0, 'daycare': 2.0, 'from': 1.0, 'pre': 1.0, 'hard': 1.0, 'son': 2.0, 'if': 1.0, 'still': 1.0, 'minky': 2.0, 'very': 1.0, 'when': 2.0, 'i': 7.0, 'ratings': 1.0, 'wasn': 1.0, 'seemed': 1.0, 'sure': 1.0, 'poor': 2.0, 'others': 1.0, 'deal': 1.0, 'of': 2.0, 'longer': 1.0, 'the': 2.0, 'with': 4.0, 'nap': 1.0, 'send': 1.0, 'them': 1.0, 'quality': 2.0, 'have': 2.0, 'him': 1.0, 'it': 7.0, 'ruined': 1.0, 'never': 1.0, 'stripes': 1.0, 'had': 2.0, 'days': 1.0, 'soft': 1.0, 'anything': 1.0, 'been': 1.0, 'blue': 1.0, 'this': 3.0, 'few': 2.0, 'passed': 1.0, 'didn': 1.0, 'ordered': 1.0, 'to': 6.0, 'high': 1.0, 'replaced': 1.0, 'hopes': 1.0, 'not': 1.0, 'how': 1.0, 'disappointed': 1.0, 'super': 1.0, 'comfy': 1.0, 't': 4.0, 'likes': 1.0}
Word element => {'with': 1.0, 'large': 1.0, 'making': 1.0, 'invest': 1.0, 're': 1.0, 'guess': 1.0, 'first': 1.0, 'since': 1.0, 'around': 1.0, 'processor': 2.0, 'using': 1.0, 've': 1.0, 'ease': 1.0, 'unscrewed': 1.0, 'get': 1.0, 'holes': 1.0, 'one': 1.0, 'paper': 1.0, 'stick': 1.0, 'washing': 1.0, 'if': 1.0, 'apart': 1.0, 'take': 1.0, 'also': 1.0, 'solid': 1.0, 'in': 3.0, 'batches': 1.0, 'on': 1.0, 'loving': 1.0, 'early': 1.0, 'clip': 1.0, 'used': 1.0, 'speed': 1.0, 'down': 1.0, 'unable': 1.0, 'vegetables': 1.0, 'fruits': 1.0, 'you': 1.0, 'am': 1.0, 'beans': 1.0, 'very': 1.0, 'big': 1.0, 'had': 1.0, 'thought': 1.0, 'parts': 1.0, 'were': 1.0, 'certain': 1.0, 'getting': 1.0, 'convenience': 1.0, 'out': 2.0, 'strain': 1.0, 'good': 2.0, 'i': 7.0, 'and': 2.0, 'green': 1.0, 'it': 9.0, 'attempt': 1.0, 'this': 2.0, 'come': 1.0, 'imagine': 1.0, 'of': 4.0, 'sore': 1.0, 'always': 1.0, 'because': 1.0, 'difficult': 2.0, 'not': 2.0, 'for': 2.0, 'so': 1.0, 'be': 3.0, 'all': 1.0, 'to': 7.0, 'was': 2.0, 'able': 1.0, 'that': 1.0, 'been': 1.0, 'initially': 1.0, 'push': 1.0, 'my': 2.0, 'd': 1.0, 'arms': 1.0, 'got': 1.0, 'didn': 1.0, 'important': 1.0, 'fine': 1.0, 'could': 1.0, 't': 2.0, 'a': 4.0, 'the': 5.0, 'deal': 1.0, 'can': 1.0, 'work': 1.0, 'process': 1.0, 'food': 5.0, 'but': 2.0}
Word element => {'30': 1.0, 'good': 1.0, 'home': 1.0, 'mini': 1.0, 'buying': 1.0, 'much': 1.0, 'relatives': 1.0, 'product': 1.0, 'all': 2.0, 'apples': 1.0, 'may': 1.0, 'banana': 1.0, 'traveling': 1.0, 'going': 1.0, 'cabinet': 1.0, 're': 2.0, 'visiting': 1.0, 'plastic': 1.0, 'white': 1.0, 'steam': 1.0, 'stain': 1.0, 'will': 1.0, 'potato': 1.0, 'sweet': 1.0, 'carrots': 1.0, 'tote': 2.0, 'green': 1.0, 'and': 5.0, 'as': 2.0, 'long': 1.0, 'on': 4.0, 'your': 2.0, 'clasp': 1.0, 'part': 1.0, 's': 1.0, 'a': 6.0, 'you': 10.0, 'easily': 1.0, 'sure': 2.0, 'up': 1.0, 'water': 1.0, 'extra': 1.0, 'very': 2.0, 'it': 4.0, 'with': 3.0, 'ones': 1.0, 'try': 1.0, 'one': 1.0, 'for': 1.0, 'cheap': 1.0, 'mill': 4.0, 'warm': 1.0, 'run': 1.0, 'puree': 2.0, 'would': 1.0, 'make': 1.0, 'help': 1.0, 'makerand': 1.0, 'peel': 1.0, 'kidco': 1.0, 'baby': 1.0, 'or': 5.0, 'food': 6.0, '2': 1.0, 'but': 1.0, 'don': 1.0, 'assembly': 1.0, 'suggestions': 1.0, 'cleaning': 1.0, 'time': 1.0, 'great': 2.0, 'to': 3.0, 'job': 1.0, 'everything': 1.0, 'prepare': 1.0, 'if': 4.0, 'meals': 1.0, 'little': 1.0, 'two': 1.0, 'is': 3.0, 'at': 3.0, 'keep': 3.0, 'waist': 1.0, 'must': 2.0, 'be': 2.0, 'usually': 1.0, '1': 1.0, 'find': 1.0, 'does': 1.0, 'soft': 1.0, 'just': 1.0, 'this': 1.0, 'few': 1.0, 'in': 3.0, 'not': 1.0, 'itself': 1.0, 'when': 1.0, 'gallon': 1.0, 'bulk': 1.0, 'there': 1.0, 'zip': 1.0, 'are': 1.0, 'first': 2.0, 'lock': 1.0, 'bag': 1.0, 'smoothly': 1.0, 'forth': 1.0, 'short': 1.0, 't': 1.0, 'blade': 1.0, 'separately': 1.0, 'no': 1.0, 'foods': 1.0, 'ridiculous': 1.0, 'processor': 1.0, 'happier': 1.0, 'dishwasher': 1.0, 'bends': 1.0, 'how': 1.0, 'making': 2.0, 'back': 1.0, 'snap': 1.0, 'off': 2.0, 'money': 1.0, 'instructions': 1.0, 'were': 2.0, 'so': 2.0, 'can': 4.0, 'included': 1.0, 'sold': 1.0, 'however': 1.0, 'tips': 1.0, 'terrific': 1.0, 'the': 8.0, 'of': 1.0, 'rinse': 1.0, 'some': 1.0}
Word element => {'go': 1.0, 'ever': 1.0, 'where': 1.0, 'you': 2.0, 'to': 2.0, 'starting': 1.0, 'little': 1.0, 'solid': 1.0, 'perfect': 2.0, 'is': 2.0, 'this': 1.0, 'trips': 1.0, 'have': 1.0, 'the': 3.0, 'baby': 1.0, 'storage': 1.0, 'product': 1.0, 'case': 1.0, 'eat': 1.0, 'food': 1.0, 'so': 1.0, 'added': 1.0, 'for': 2.0, 'one': 1.0, 'convenience': 1.0, 'feed': 1.0}
Word element => {'fast': 1.0, 'though': 1.0, 'paid': 1.0, 'clean': 1.0, 'delivered': 1.0, 'use': 1.0, 'little': 2.0, 'worth': 1.0, 'found': 1.0, 'your': 1.0, 'class': 1.0, 'food': 2.0, 'a': 3.0, 'baby': 2.0, 'don': 1.0, 'want': 1.0, 'at': 1.0, 'making': 1.0, 'of': 1.0, 'job': 1.0, 'for': 1.0, 'one': 1.0, 'i': 3.0, 'what': 1.0, 'used': 1.0, 'does': 1.0, 'and': 3.0, 'hard': 2.0, 'it': 5.0, 'if': 1.0, 'you': 1.0, 'these': 1.0, 'the': 1.0, 't': 1.0, 'was': 2.0, 'to': 3.0, 'crazy': 1.0, 'puree': 1.0}
Word element => {'product': 1.0, 'different': 1.0, 'would': 1.0, 'over': 1.0, 'is': 1.0, 'disappointment': 1.0, 'also': 1.0, 'plastic': 1.0, 'right': 1.0, 'of': 1.0, 'metal': 1.0, 'do': 1.0, 'white': 1.0, 'arrived': 1.0, 'shows': 1.0, 'but': 2.0, 'seal': 1.0, 'the': 4.0, 'and': 1.0, 'too': 1.0, 'when': 1.0, 'buy': 1.0, 'definitely': 1.0, 'grate': 2.0, 'really': 1.0, 'grinder': 1.0, 'kind': 1.0, 'easy': 1.0, 'picture': 1.0, 'was': 1.0, 'now': 1.0, 'may': 1.0, 'tight': 1.0, 'making': 1.0, 'not': 1.0, 'it': 3.0, 'hard': 1.0, 'this': 1.0, 'with': 1.0, 'improve': 1.0, 'push': 1.0, 'down': 1.0, 'use': 2.0, 'a': 3.0, 'could': 1.0, 's': 1.0, 'flimsy': 1.0, 'at': 1.0, 'to': 2.0, 'all': 1.0, 'if': 1.0, 'i': 2.0}
Word element => {'gift': 1.0, 'makes': 1.0, 'received': 2.0, 'these': 1.0, 'dot': 1.0, 'for': 2.0, 'one': 2.0, 'wish': 1.0, 'soft': 1.0, 'this': 3.0, 'blanket': 2.0, 'a': 1.0, 'go': 1.0, 's': 2.0, 'when': 1.0, 'you': 1.0, 'niece': 1.0, 'features': 1.0, 'great': 1.0, 'trimmed': 1.0, 'time': 1.0, 'so': 1.0, 'satin': 1.0, 'fabric': 1.0, 'adults': 1.0, 'have': 3.0, 'my': 2.0, 'made': 1.0, 'night': 1.0, 'them': 2.0, 'wherever': 1.0, 'it': 1.0, 'minky': 1.0, 'their': 1.0, 'bed': 1.0, 'incredibly': 1.0, 'in': 2.0, 'they': 2.0, 'chocolate': 1.0, 'and': 3.0, 'with': 1.0, 'pink': 1.0, 'polka': 1.0, 'that': 1.0, 'nephew': 1.0, 'blankets': 1.0, 'at': 1.0, 'trim': 1.0, 'blue': 1.0, 'latched': 1.0, 'onto': 1.0, 'both': 1.0, 'shower': 1.0, 'of': 1.0, 'to': 1.0, 'll': 1.0, 'especially': 1.0}
Word element => {'so': 1.0, 'much': 1.0, 'just': 1.0, 'daughter': 1.0, 'to': 1.0, 'colors': 1.0, 'years': 1.0, 'soft': 1.0, '3': 1.0, 'we': 2.0, 'as': 1.0, 'match': 1.0, 'pink': 1.0, 'son': 1.0, 'time': 1.0, 'uses': 1.0, 'great': 1.0, 'the': 2.0, 'blue': 1.0, 'love': 1.0, 'for': 2.0, 'one': 2.0, 'given': 1.0, 'were': 1.0, 'my': 2.0, 'ago': 1.0, 'new': 1.0, 'still': 1.0, 'looks': 1.0, 'got': 1.0, 'brand': 1.0, 'and': 3.0, 'durable': 1.0, 'this': 1.0, 'it': 3.0, 'he': 1.0, 'all': 1.0}
Word element => {'cover': 1.0, 'light': 1.0, 'up': 1.0, 'comfort': 1.0, 'babies': 1.0, 'money': 1.0, 'the': 2.0, 'worth': 1.0, 'definately': 1.0, 'a': 1.0, 'well': 1.0, 'oh': 1.0, 'lost': 1.0, 'places': 1.0, 'is': 1.0, 'many': 1.0, 'brought': 1.0, 'to': 1.0, 'had': 1.0, 'we': 1.0, 'sleeping': 1.0, 'year': 1.0, 'cuddly': 1.0, 'pretty': 1.0, 'and': 2.0, 'but': 1.0, 'quality': 1.0, 'i': 1.0, 'old': 1.0, 'much': 1.0, 'for': 2.0, 'insisted': 1.0, 'taking': 1.0, 'my': 1.0, 'high': 1.0, 'soft': 2.0, 'so': 3.0, 'loved': 2.0, 'blankey': 1.0, 'she': 3.0, 'this': 1.0, 'it': 6.0, '4': 1.0, 'on': 1.0, 'everywhere': 1.0, 'while': 2.0}
Word element => {'another': 1.0, 'there': 1.0, 'colored': 1.0, 'but': 1.0, 'attracts': 1.0, 'hair': 1.0, 'beforehand': 1.0, 'design': 1.0, 'pet': 1.0, 'its': 1.0, 'content': 1.0, 'was': 2.0, 'two': 1.0, 'i': 6.0, 'love': 1.0, 'the': 4.0, 'have': 2.0, 'all': 1.0, 'cats': 1.0, 'not': 2.0, 'option': 1.0, 'three': 1.0, 'known': 1.0, 'indoor': 1.0, 'with': 1.0, 'this': 2.0, 'wisest': 1.0, 'picked': 1.0, 'of': 3.0, 'carrier': 1.0, 'tan': 1.0, 'and': 3.0, 'am': 1.0, 'a': 2.0, 'black': 1.0, 'dog': 1.0, 'fur': 1.0, 'versatility': 1.0, 'so': 1.0, 'm': 1.0, 'd': 1.0, 'color': 1.0, 'choice': 1.0, 'if': 2.0, 'lint': 1.0, 've': 1.0, 'would': 1.0, 'definitely': 1.0, 'fabric': 2.0, 'different': 1.0, 'sure': 1.0, 'kind': 1.0}
Word element => {'when': 4.0, 'that': 6.0, 'loves': 1.0, 'temperture': 1.0, 'body': 1.0, 'falls': 1.0, 'sit': 1.0, 'as': 2.0, 'plus': 1.0, 'blocking': 1.0, 'seem': 1.0, '190': 1.0, 'there': 1.0, 'other': 2.0, 'all': 2.0, 'much': 4.0, '16': 1.0, 'put': 1.0, 'do': 1.0, 'would': 2.0, 'cozy': 1.0, 'down': 1.0, 'same': 1.0, 'since': 4.0, '1': 1.0, 'take': 1.0, 'reviews': 1.0, 'middle': 1.0, 'we': 3.0, 'getting': 1.0, 'needing': 1.0, 'has': 2.0, 'me': 3.0, 'are': 2.0, 'my': 6.0, 'newborn': 1.0, 'out': 4.0, 'baby': 8.0, 'simplicity': 1.0, 'it': 8.0, 'against': 1.0, 'to': 7.0, 'length': 1.0, 'so': 6.0, 'is': 9.0, 'can': 2.0, 'carrier': 5.0, 'belle': 1.0, 'herself': 1.0, 'law': 1.0, 'registered': 1.0, 'crotch': 2.0, 'keeps': 2.0, 'your': 1.0, 'mine': 1.0, 'carriers': 2.0, 'ensuring': 1.0, 'this': 6.0, 'suspended': 1.0, 'have': 3.0, 'found': 1.0, 'however': 2.0, 'i': 9.0, 'wind': 2.0, 'thing': 1.0, 'and': 8.0, 'warm': 2.0, 'was': 3.0, 'lbs': 3.0, 'groceries': 1.0, 'now': 1.0, 'air': 1.0, 'use': 4.0, 'her': 9.0, 't': 2.0, 'across': 1.0, 'along': 1.0, 'a': 7.0, 'mall': 1.0, 'head': 1.0, 'positive': 1.0, 'in': 7.0, 'snug': 1.0, 'doesn': 1.0, 's': 5.0, 'm': 1.0, 'coverage': 1.0, 'bjorn': 5.0, 'button': 1.0, 'she': 5.0, 'ended': 1.0, 'but': 2.0, 'considerations': 1.0, 'else': 1.0, 'kids': 2.0, 'shower': 1.0, 'old': 1.0, 'of': 8.0, 'the': 24.0, 'friend': 1.0, 'poke': 1.0, 'don': 1.0, 'exact': 1.0, 'carrying': 1.0, 'freezing': 1.0, 'good': 2.0, 'hat': 1.0, 'side': 1.0, 'things': 1.0, 'brother': 1.0, 'myself': 1.0, 'asleep': 1.0, 'checked': 1.0, 'for': 7.0, 'purchase': 1.0, 'then': 2.0, 'only': 1.0, 'on': 7.0, 'months': 1.0, 'trouble': 1.0, 'ergo': 1.0, 'weights': 1.0, 'not': 3.0, 'forward': 2.0, 'definitely': 1.0, 'block': 1.0, 'allow': 1.0, 'blowing': 1.0, 'fabric': 1.0, 'into': 1.0, 'product': 1.0, 'look': 1.0, 'built': 1.0, 'design': 1.0, 'with': 1.0, 'more': 3.0, 'bit': 1.0, 'than': 1.0, 'without': 2.0, 'complicated': 1.0, 'were': 1.0, 'guys': 1.0, 'used': 1.0, 'single': 1.0, 'him': 1.0, 'ready': 1.0, 'he': 3.0, 'd': 1.0, 'prefer': 1.0, 'its': 1.0, 'both': 1.0, 'tall': 1.0, 'top': 1.0, 'time': 1.0, 'up': 1.0, 'says': 1.0, 'impact': 1.0, 'heard': 1.0, '6': 1.0, 'strong': 2.0, 'one': 2.0, '5': 1.0, '120': 1.0, 'enough': 1.0, 'carry': 2.0, 'shoulders': 1.0, 'facing': 2.0, 'reason': 1.0, 'husband': 2.0, 'purchased': 1.0, '3': 2.0, 'too': 1.0, 'weight': 3.0, 'walk': 1.0, 'about': 2.0, 'around': 1.0, 'shopping': 1.0, 'his': 2.0, 'limit': 1.0, 'evenly': 1.0, 'materials': 2.0, 'short': 1.0, 'does': 1.0, 'concern': 1.0, 'bet': 1.0, 'developing': 1.0, 'from': 1.0, 'who': 1.0, 'spine': 1.0, 'sure': 1.0, 'great': 2.0, 'if': 2.0, 'best': 1.0, 'seems': 1.0, 'distributed': 1.0, 'winter': 2.0, 'instead': 1.0, 'low': 1.0, 'being': 1.0, 'by': 1.0}
Word element => {'option': 1.0, 'consider': 1.0, 'facing': 1.0, 'front': 1.0, 'on': 3.0, 'than': 2.0, 'find': 1.0, 'mouth': 1.0, 'more': 2.0, 'is': 8.0, 'slightly': 1.0, 'your': 1.0, 'probably': 1.0, 'big': 1.0, 'say': 1.0, 'comfortable': 1.0, 'nice': 1.0, 'however': 2.0, 'needs': 1.0, 'my': 4.0, 'another': 2.0, 'not': 1.0, 'heard': 1.0, 'are': 2.0, 'in': 2.0, 'bjorn': 3.0, 'said': 1.0, 'because': 3.0, 'that': 4.0, 'awesome': 1.0, 'usable': 1.0, 'to': 6.0, 'an': 1.0, 'all': 2.0, 'right': 1.0, 'being': 2.0, 'got': 1.0, 'if': 1.0, 'every': 1.0, 'material': 2.0, 'really': 1.0, 'puts': 2.0, 'them': 1.0, 'getting': 1.0, 'and': 3.0, 'for': 1.0, 'where': 1.0, 'one': 4.0, 'i': 4.0, 'pounds': 1.0, 'prefers': 1.0, 'most': 1.0, 'so': 2.0, 'can': 1.0, 'carriers': 2.0, 'her': 1.0, 's': 4.0, 'going': 1.0, 't': 1.0, 'out': 2.0, 'smelling': 1.0, 'with': 1.0, 'parent': 1.0, 'this': 2.0, 'ergo': 5.0, 'baby': 4.0, 'she': 2.0, 'have': 1.0, 'small': 1.0, 'get': 1.0, 'used': 1.0, 'longer': 1.0, 'the': 13.0, 'of': 3.0, 'weight': 3.0, 'goes': 1.0, 'which': 2.0, 'made': 1.0, 'less': 1.0, 'when': 1.0, 'you': 1.0, 'it': 1.0, 'wear': 1.0, 'take': 1.0, 'general': 1.0, 'much': 1.0, 'now': 1.0, '19': 1.0, 'shoulders': 1.0, 'some': 1.0, 'point': 1.0, 'chemically': 1.0, 'thing': 1.0, 'they': 1.0, 'both': 1.0, 'hips': 1.0, 'd': 1.0, 'had': 1.0, 'recommend': 1.0, 'just': 1.0}
Word element => {'if': 1.0, 'recall': 1.0, 't': 2.0, 'didn': 1.0, 'returned': 1.0, 'tried': 1.0, 'short': 2.0, 'uncomfortable': 1.0, 'rider': 2.0, 'expensive': 1.0, 'very': 2.0, 'support': 2.0, 'using': 1.0, 'but': 2.0, 'cooler': 1.0, 'cover': 1.0, 'lacks': 1.0, 'as': 1.0, 'blue': 1.0, 'comes': 1.0, 'gray': 1.0, 'air': 1.0, 'rn': 1.0, 'ouml': 1.0, 'thebabybj': 1.0, 'weather': 1.0, 'also': 2.0, 'padding': 1.0, 'hurt': 1.0, 'infantino': 1.0, 'started': 1.0, 'shoulders': 1.0, 'when': 1.0, 'better': 1.0, 'weight': 1.0, 'distributes': 1.0, 'original': 1.0, 'active': 1.0, 'bjorn': 3.0, 'this': 2.0, 'before': 1.0, 'our': 1.0, 'stroller': 1.0, 'more': 3.0, 'time': 2.0, 'hours': 1.0, 'down': 1.0, 'several': 1.0, 'sometimes': 1.0, 'old': 1.0, 'will': 2.0, 'back': 3.0, 'sling': 2.0, 'carrier': 6.0, 'toile': 1.0, 'you': 4.0, 'traveling': 1.0, 'was': 3.0, 'lbs': 4.0, 'a': 7.0, 's': 5.0, 'front': 1.0, 'use': 2.0, 'carried': 1.0, 'be': 2.0, 'bought': 1.0, 'money': 2.0, 'sitting': 1.0, 'don': 1.0, 'shoulder': 1.0, 'much': 2.0, 'well': 2.0, 'i': 12.0, 'summer': 1.0, 'would': 2.0, 'white': 1.0, 'position': 1.0, 'known': 2.0, 'warm': 1.0, 'had': 4.0, 'wish': 2.0, 'soft': 1.0, 'perfect': 1.0, 'extremely': 1.0, 'adjust': 1.0, 'about': 2.0, 'no': 2.0, 'separately': 1.0, 'ergo': 5.0, 'comfortably': 1.0, 'or': 3.0, 'in': 10.0, 'sooner': 2.0, 'especially': 1.0, 'at': 1.0, 'is': 2.0, 'of': 1.0, 'the': 15.0, 'errands': 1.0, 'product': 1.0, 'year': 1.0, 'child': 2.0, 'washable': 1.0, 'mesh': 1.0, 'up': 1.0, 'even': 1.0, 'hit': 3.0, 'my': 4.0, 'me': 3.0, 'and': 8.0, 'for': 7.0, 'comfortable': 2.0, 'your': 2.0, 'mom': 2.0, 'than': 2.0, 'difficulty': 2.0, '90': 1.0, 'after': 2.0, 'unlike': 1.0, 'carriers': 1.0, 'black': 1.0, 'there': 3.0, 'have': 3.0, 'lets': 1.0, 'they': 1.0, 'sleeping': 1.0, 'hold': 1.0, 'hood': 1.0, 'warmer': 1.0, 'can': 2.0, 'strength': 1.0, 'lightweight': 1.0, 'so': 5.0, 'included': 1.0, 'because': 2.0, '20': 3.0, 'that': 2.0, 'to': 5.0, 'hiking': 1.0, 'waist': 1.0, 'nap': 1.0, 'facing': 1.0, 'public': 1.0, 'too': 1.0, 'one': 1.0, 'machine': 1.0, 'hand': 1.0, 'saved': 2.0, 'straps': 1.0, 'it': 14.0, 'however': 1.0, 'sold': 1.0, 'know': 1.0, 'easy': 1.0, 'both': 1.0, 'fits': 1.0, 'other': 1.0, 'an': 1.0, 'nurse': 1.0, 'insert': 1.0, 'allows': 1.0, 'with': 2.0, 'infants': 1.0, 'tested': 1.0, '2007': 1.0, 'available': 1.0, 'baby': 13.0, 'dad': 1.0, 'many': 1.0, 'made': 1.0, 'colorsi': 1.0, 'used': 3.0, 'since': 1.0}
Word element => {'did': 1.0, 'ours': 1.0, '15': 1.0, 'about': 1.0, 'start': 1.0, 'overstimulated': 1.0, 'hurt': 1.0, 'tired': 1.0, 'in': 2.0, 'fun': 1.0, 'out': 2.0, 'face': 2.0, 'ride': 1.0, 'control': 1.0, 'head': 1.0, 'will': 2.0, 'larger': 1.0, 'easy': 1.0, 'bit': 1.0, 'once': 2.0, 'without': 1.0, 'parent': 1.0, 'by': 1.0, 'home': 1.0, 'much': 1.0, 'put': 4.0, 'with': 1.0, 'allows': 1.0, 'design': 1.0, 'simple': 1.0, 'frequently': 1.0, 'sleeps': 1.0, 'than': 1.0, 'weighs': 1.0, 'weight': 1.0, 'like': 1.0, '2': 1.0, 'at': 1.0, 'is': 7.0, 'blanket': 1.0, 's': 4.0, 'a': 8.0, 'we': 2.0, 't': 1.0, 'you': 5.0, 'when': 5.0, 'if': 1.0, 'virtues': 1.0, 'as': 2.0, 'our': 1.0, 'to': 11.0, 'down': 3.0, 'comfortable': 1.0, 'interact': 1.0, 'until': 1.0, 'towelsling': 1.0, 'irregularly': 1.0, 'video': 1.0, 'sure': 1.0, 'and': 7.0, 'each': 1.0, 'born': 1.0, 'stress': 1.0, 'were': 2.0, 'allowing': 1.0, 'backpack': 1.0, 'watch': 1.0, 'deciding': 1.0, 'its': 1.0, 'lbs': 2.0, 'was': 1.0, '3': 1.0, 'your': 6.0, 'on': 3.0, 'later': 1.0, 'while': 1.0, 'hard': 1.0, 'clasp': 1.0, 'daughter': 1.0, 'good': 2.0, 'which': 1.0, 'gift': 1.0, 'other': 1.0, 'an': 1.0, 'of': 1.0, 'the': 20.0, 'moves': 1.0, 'friend': 1.0, 'ergo': 3.0, 'has': 4.0, 'she': 5.0, 'baby': 7.0, 'distributing': 1.0, 'took': 1.0, 'babybjorn': 1.0, 'money': 1.0, 'bought': 1.0, 'too': 1.0, 'one': 1.0, 'get': 3.0, 'moved': 1.0, 'months': 1.0, 'least': 1.0, 'handed': 1.0, '12': 1.0, 'who': 1.0, 'yourself': 1.0, 'hips': 1.0, 'it': 4.0, 'versatile': 1.0, 'arm': 1.0, 'her': 3.0, 'use': 2.0, 'sling': 2.0, 'carrier': 1.0, 'sleep': 1.0, 'most': 3.0, 'back': 2.0, 'needed': 1.0, 'into': 1.0, 'easily': 1.0, 'that': 1.0, 'waking': 1.0, 'todler': 1.0, 'stage': 1.0, 'also': 2.0, 'us': 1.0, 'can': 3.0, 'ask': 1.0, 'week': 1.0, 'infant': 1.0, 'realized': 1.0, 'be': 2.0, 'less': 1.0, 'up': 1.0, 'shoulder': 2.0, 'don': 1.0, 'transfer': 1.0, 'buy': 1.0, 'straps': 1.0, 'world': 1.0, 'or': 5.0, 'for': 2.0, 'instruction': 1.0, 'given': 1.0, 'waste': 1.0, 'backbabybjorn': 1.0, 'insert': 1.0, 'just': 1.0, 'perfect': 1.0, 'are': 1.0, 'first': 1.0}
Word element => {'energy': 1.0, 'higher': 1.0, 'versatile': 1.0, 'then': 1.0, 'half': 1.0, '2': 1.0, 'torso': 1.0, 'older': 1.0, 'have': 2.0, 'strapped': 1.0, 'world': 1.0, 'or': 2.0, 'hour': 1.0, 'an': 1.0, 'around': 1.0, 'will': 1.0, 'old': 1.0, 'style': 1.0, 'kangaroo': 1.0, 'now': 1.0, 'level': 1.0, 'comfortable': 1.0, 'belly': 1.0, 'down': 2.0, 'there': 1.0, 'know': 1.0, 'shoulders': 1.0, 'requires': 1.0, 'head': 2.0, 'up': 1.0, 'chest': 2.0, 'carriers': 1.0, 'most': 1.0, 'lower': 3.0, 'they': 1.0, 'comfort': 1.0, 'helpful': 1.0, 'your': 3.0, 'sit': 1.0, 'positioned': 1.0, 's': 1.0, 'problem': 1.0, 'think': 1.0, 'out': 4.0, 'face': 2.0, 'allowed': 1.0, 'kind': 1.0, 'happily': 1.0, 'which': 2.0, 'again': 1.0, 'wrap': 5.0, 'quite': 1.0, 'carrier': 4.0, 'body': 1.0, 'as': 2.0, 'to': 17.0, 'least': 1.0, 'newborn': 1.0, 'wasn': 1.0, 'm': 1.0, 'in': 7.0, 'bjorn': 2.0, 'amenable': 1.0, 'was': 4.0, '1': 1.0, 'since': 1.0, 'is': 4.0, 'at': 3.0, 'likes': 1.0, 't': 2.0, 'used': 1.0, 'who': 3.0, 'loving': 1.0, 'the': 14.0, 'of': 4.0, 'second': 1.0, 'intention': 1.0, 'didn': 1.0, 'even': 3.0, 'try': 1.0, 'held': 1.0, 'one': 1.0, 'happy': 4.0, 'ergo': 6.0, 'toted': 1.0, 'miserable': 1.0, 'my': 9.0, 'heard': 1.0, 'called': 1.0, 'bought': 1.0, 'get': 2.0, 'months': 1.0, 'interact': 1.0, 'own': 1.0, 'eagerly': 1.0, 'tried': 1.0, 'i': 7.0, 'two': 1.0, 'born': 1.0, 'ride': 6.0, 'wrapped': 1.0, 'be': 6.0, 'would': 1.0, 'over': 1.0, 'work': 1.0, 'but': 1.0, 'allows': 1.0, 'with': 5.0, 'closer': 1.0, 'hip': 1.0, 'him': 1.0, 'it': 5.0, 'baby': 1.0, 'unfortunately': 1.0, 'she': 9.0, 'inward': 1.0, 'first': 1.0, 'only': 1.0, 'and': 11.0, 'if': 2.0, 'every': 1.0, 'still': 1.0, 'son': 1.0, 'hips': 1.0, 'd': 2.0, 'years': 1.0, 'constantly': 1.0, 'can': 1.0, 'so': 4.0, 'more': 1.0, 'for': 5.0, 'such': 1.0, 'great': 1.0, 'about': 3.0, 'them': 1.0, 'hoped': 1.0, 'you': 2.0, 'things': 1.0, 'able': 1.0, 'her': 4.0, 'use': 2.0, 'facing': 6.0, 'while': 1.0, 'position': 1.0, 'loves': 1.0, 'that': 5.0, 'child': 2.0, 'year': 2.0, 'want': 1.0, 'outward': 1.0, 'refuses': 1.0, 'this': 2.0, 'kids': 3.0, 'makes': 1.0, 'than': 2.0, 'way': 2.0, 'row': 1.0, 'wanted': 1.0, 'screamed': 2.0, 'a': 9.0, 'nonstop': 1.0, 'he': 1.0, 'refused': 2.0, 'anything': 1.0, 'not': 1.0, 'forward': 2.0, 'daughter': 2.0, 'also': 1.0, 'couple': 1.0, 'insisted': 1.0, 'near': 1.0, 'on': 4.0, 'being': 1.0, 'after': 1.0, 'positions': 1.0, 'six': 1.0, 'before': 1.0, 'carry': 1.0}
Word element => {'carry': 1.0, 'after': 1.0, 'sore': 1.0, 'are': 1.0, 'weight': 1.0, 'used': 1.0, 'than': 1.0, 'wear': 1.0, 'much': 1.0, 'soooo': 1.0, 'so': 2.0, 'cent': 1.0, 'every': 1.0, 'store': 1.0, 'was': 3.0, 'now': 1.0, 'puts': 1.0, 'year': 1.0, 'best': 1.0, 'all': 1.0, 'any': 1.0, 'to': 5.0, 'as': 1.0, 'comfortable': 1.0, 'bring': 1.0, 'spend': 1.0, '1': 2.0, 'not': 1.0, 'me': 1.0, 'and': 2.0, 'shoulders': 1.0, 'her': 2.0, 'hips': 1.0, 'nervous': 1.0, 'up': 1.0, 'child': 1.0, 'more': 1.0, 'is': 3.0, 'my': 1.0, 'the': 5.0, 'small': 1.0, 'rolls': 1.0, 'have': 2.0, 'other': 2.0, 'this': 1.0, 'she': 4.0, 'it': 7.0, 'you': 1.0, 'outgrown': 1.0, 'when': 1.0, 'i': 5.0, 'old': 1.0, 'bought': 1.0, 'be': 1.0, 'pouch': 1.0, 'had': 1.0, 'purchased': 1.0, 'loved': 1.0, 'carrier': 2.0, 'money': 1.0, '2': 1.0, 'but': 2.0, 'ever': 2.0, 'close': 1.0, 'your': 3.0, 'on': 1.0, '3': 1.0, 'still': 1.0, 'loves': 1.0, 'everywhere': 1.0, 'worth': 1.0, 'or': 1.0, 'go': 1.0, 'in': 1.0, 'calls': 1.0, 'at': 2.0, 'baby': 1.0, 'amusement': 1.0, 'thing': 1.0, 'park': 1.0}
Word element => {'also': 1.0, 'shower': 1.0, 'of': 1.0, 'these': 2.0, 'the': 4.0, 'myself': 1.0, 'giving': 1.0, 'be': 1.0, 'well': 1.0, 't': 2.0, 'a': 1.0, 'seem': 1.0, 'don': 1.0, 'lamb': 1.0, 'for': 2.0, 'love': 1.0, 'they': 3.0, 'showers': 2.0, 'always': 2.0, 'cute': 1.0, 'give': 1.0, 'i': 4.0, 'baby': 1.0, 'them': 2.0, 'and': 4.0, 'much': 1.0, 'do': 1.0, 'get': 1.0, 'to': 2.0, 'as': 2.0, 'so': 3.0, 'are': 2.0, 'gifts': 2.0, 'have': 1.0, 'kid': 1.0, 'monkey': 1.0, 'awwws': 1.0, 'but': 1.0, 'can': 1.0, 'speak': 1.0, 'received': 1.0, 'how': 2.0, 'soft': 1.0, 'kids': 1.0, 'when': 1.0, 'or': 1.0, 'durable': 1.0, 'passed': 1.0, 'plan': 1.0, 'around': 1.0, 'keep': 1.0, 'at': 1.0, 've': 1.0, 'purchased': 1.0, 'several': 1.0}
Word element => {'loved': 1.0, 'but': 1.0, 'machine': 1.0, 'been': 1.0, 'washed': 1.0, 'of': 2.0, 's': 2.0, 'lovey': 1.0, 'is': 1.0, 'course': 1.0, 'my': 1.0, 'it': 1.0, 'this': 1.0, 'a': 1.0, 'ton': 1.0, 'fluffy': 1.0, 'favorite': 1.0, 'times': 1.0, 'and': 1.0, 'son': 1.0, 'as': 1.0, 'still': 2.0, 'holds': 1.0, 'together': 1.0, 'not': 1.0}
Word element => {'great': 1.0, 'wash': 1.0, 'everywhere': 1.0, 'of': 1.0, 'search': 1.0, 'went': 1.0, 'stores': 1.0, 'be': 2.0, 'grandsons': 1.0, 'are': 1.0, 'grandmother': 1.0, 'both': 1.0, 'out': 1.0, 'made': 1.0, 'the': 4.0, 'ones': 1.0, 't': 1.0, 'a': 1.0, 'well': 1.0, 'for': 1.0, 'one': 2.0, 'in': 2.0, 'had': 1.0, 'my': 1.0, 'gund': 1.0, 'so': 1.0, 'i': 3.0, 'found': 2.0, 'find': 1.0, 'again': 1.0, 'when': 1.0, 'would': 1.0, 'new': 1.0, 'baby': 1.0, 'couldn': 1.0, 'and': 1.0, 'anymore': 1.0, 'on': 1.0, 'amazon': 1.0, 'is': 1.0, 'it': 1.0, 'taken': 1.0, 'just': 1.0, 'like': 1.0, 'other': 1.0, 'they': 2.0, 'monkey': 1.0, 'blankets': 1.0, 'but': 1.0, 'can': 1.0}
Word element => {'soft': 1.0, 'so': 1.0, 'at': 1.0, 'comforting': 1.0, 'and': 1.0, 'friends': 1.0, 'best': 1.0, 'grandchildren': 1.0, 'they': 2.0, 'bedtime': 1.0, 'my': 1.0, 'the': 1.0, 'are': 2.0, 'their': 1.0, 'gund': 1.0, '5': 1.0, 'of': 1.0, 'loved': 1.0, 'have': 1.0, 'them': 1.0}
Word element => {'stronger': 1.0, 'much': 1.0, 'i': 1.0, 'underside': 1.0, 'did': 1.0, 'older': 1.0, 'my': 1.0, 'the': 3.0, 'gund': 1.0, 'satin': 1.0, 'not': 1.0, 'material': 2.0, 'on': 2.0, 'like': 1.0, 'type': 1.0, 'as': 2.0}
Word element => {'little': 1.0, 'his': 1.0, 'new': 1.0, 'around': 1.0, 'see': 1.0, 'wait': 1.0, 'can': 1.0, 'carrying': 1.0, 'know': 1.0, 'baby': 1.0, 'every': 1.0, 'wish': 1.0, 'them': 1.0, 'they': 1.0, 'get': 1.0, 'do': 1.0, 'back': 1.0, 'things': 1.0, 'it': 1.0, 'i': 4.0, 'for': 1.0, 'love': 1.0, 'one': 1.0, 'would': 1.0, 'to': 1.0, 'was': 1.0, 'bring': 1.0, 't': 1.0, 'these': 1.0, 'the': 1.0, 'monkey': 1.0, 'my': 2.0, 'bunny': 1.0, 'grandson': 1.0, 'favorite': 1.0}
Word element => {'time': 1.0, 'comfycozy': 1.0, 'will': 1.0, 'out': 1.0, 'the': 1.0, 'i': 3.0, 'everyday': 1.0, 'it': 10.0, 'with': 1.0, 'he': 1.0, 'older': 1.0, 'and': 3.0, 'using': 1.0, 'which': 1.0, 'like': 3.0, 'blanket': 2.0, 'very': 1.0, 'doesn': 1.0, 'silk': 1.0, 'baby': 1.0, 't': 2.0, 's': 3.0, 'a': 3.0, 'because': 1.0, 'bottom': 1.0, 'slides': 1.0, 'overall': 1.0, 'this': 1.0, 'soft': 1.0, 'stay': 1.0, 'glad': 1.0, 'really': 1.0, 'has': 1.0, 'put': 1.0, 'washed': 1.0, 'on': 1.0, 'you': 1.0, 'when': 1.0, 'gets': 2.0, 'good': 2.0, 'size': 1.0, 'where': 1.0, 'for': 3.0, 'my': 1.0, 'be': 1.0, 'him': 1.0, 'to': 1.0, 'around': 1.0, 'cuddle': 1.0, 'used': 1.0, 'don': 1.0, 'washable': 1.0, 'new': 1.0, 've': 1.0, 'long': 1.0, 'came': 1.0}
Word element => {'receive': 1.0, 'or': 1.0, 'gift': 1.0, 'times': 1.0, 'through': 1.0, 've': 1.0, 'companion': 1.0, 'bed': 1.0, 'issue': 1.0, 'places': 1.0, 'take': 1.0, 'wonderful': 1.0, 'use': 1.0, 'small': 1.0, 'little': 1.0, 'though': 1.0, 'cross': 1.0, 'great': 1.0, 'big': 1.0, 'nice': 1.0, 'spreading': 1.0, 'by': 1.0, 'an': 1.0, 'pillow': 2.0, 'lamby': 2.0, 'see': 1.0, 'at': 1.0, 'since': 1.0, 's': 1.0, 'a': 8.0, 'up': 1.0, 'of': 2.0, 'hold': 1.0, 'ours': 1.0, 'fur': 1.0, 'give': 1.0, 'not': 1.0, 'between': 1.0, 'reviews': 1.0, 'is': 5.0, 'but': 1.0, 'monkey': 1.0, 'without': 1.0, 'the': 8.0, 'washing': 1.0, 'he': 2.0, 'it': 2.0, 'other': 1.0, 'for': 1.0, 'lamb': 2.0, 'that': 2.0, 'loves': 1.0, 'my': 1.0, 'may': 1.0, 'blanket': 4.0, 'multiple': 1.0, 'here': 1.0, 'top': 2.0, 'put': 1.0, 'on': 3.0, 'make': 1.0, '4': 1.0, 'texture': 1.0, 'i': 2.0, 'old': 1.0, 'from': 1.0, 'son': 1.0, 'drying': 1.0, 'animal': 1.0, 'stuffed': 1.0, 'had': 1.0, 'was': 1.0, 'machines': 1.0, 'actual': 1.0, 'as': 1.0, 'to': 4.0, 'almost': 1.0, 'year': 1.0, 'his': 2.0, 'night': 1.0, 'baby': 1.0, 'too': 1.0, 'and': 3.0, 'bit': 1.0, 'so': 1.0, 'this': 1.0, 'soft': 1.0, 'well': 1.0, 'review': 1.0, 'has': 1.0, 'likes': 1.0}
Word element => {'buy': 1.0, 'a': 1.0, 'night': 1.0, 'with': 1.0, 'laid': 1.0, 'good': 1.0, 'around': 1.0, 'really': 1.0, 'this': 1.0, 'likes': 1.0, 'blanky': 1.0, 'the': 1.0, 'first': 1.0, 'all': 1.0, 'day': 1.0, 'baby': 1.0, 'she': 2.0, 'got': 1.0, 'it': 2.0}
Word element => {'definitely': 1.0, 'would': 1.0, 'monday': 1.0, 'with': 1.0, 'back': 1.0, 'weekends': 1.0, 'on': 2.0, 'bath': 1.0, 'home': 1.0, 'weekdays': 1.0, 'during': 1.0, 'lambs': 1.0, 'his': 1.0, 'bedtime': 1.0, 'or': 1.0, 'time': 1.0, 'nap': 1.0, 'comes': 2.0, 'hand': 1.0, 'original': 1.0, 'of': 3.0, 'the': 5.0, 'my': 1.0, 'taken': 1.0, '18': 1.0, 'same': 1.0, 'recommend': 1.0, 'daycare': 2.0, 'upgraded': 1.0, 'was': 2.0, 'dare': 1.0, 'had': 1.0, 'turned': 1.0, 'now': 1.0, 'be': 1.0, 'him': 3.0, '21': 1.0, 'exactly': 1.0, 'it': 1.0, 'month': 1.0, 'old': 2.0, 'one': 4.0, 'months': 1.0, '4': 1.0, 'lovey': 1.0, 'when': 2.0, 'this': 2.0, 'and': 4.0, 'has': 1.0, '24': 1.0, 'have': 2.0, 'to': 6.0, 'all': 1.0, 'at': 1.0, 'since': 1.0, 'total': 1.0, 'not': 1.0, 'them': 1.0, 'that': 1.0, 'a': 3.0, 'we': 3.0, 't': 1.0, 's': 1.0, '6': 1.0, 'he': 2.0, 'how': 1.0, 'much': 1.0, 'little': 1.0, 'for': 1.0, 'lamb': 1.0, 'means': 1.0, 'lives': 1.0, 'don': 1.0, 'in': 1.0}
Word element => {'wrong': 1.0, 'go': 1.0, 'can': 1.0, 'cute': 1.0, 'and': 1.0, 'all': 1.0, 'they': 1.0, 'incredibly': 1.0, 'years': 1.0, 't': 1.0, 'infants': 1.0, 'times': 1.0, 'friends': 1.0, 'bought': 1.0, 'several': 1.0, 've': 1.0, 'i': 1.0, 'for': 2.0, 'love': 1.0, 'with': 1.0, 'sister': 1.0, 'this': 2.0, 'it': 1.0, 'my': 1.0, 's': 1.0, 'super': 1.0, 'kids': 1.0, 'soft': 1.0, 'hung': 1.0, 'on': 1.0, 'to': 1.0, 'them': 1.0}
Word element => {'meant': 1.0, 'my': 1.0, 'mark': 1.0, 'but': 1.0, 'annually': 1.0, 'them': 1.0, 'replace': 1.0, 'have': 1.0, 'old': 1.0, 'utilizes': 1.0, 'son': 1.0, 'washes': 1.0, 'weekly': 1.0, 'constant': 1.0, 'after': 1.0, 'wash': 1.0, 'doesn': 1.0, 'would': 1.0, 'thing': 1.0, 'looks': 1.0, 'it': 9.0, 'he': 3.0, 'with': 1.0, 'year': 1.0, 'his': 2.0, 'her': 1.0, 'wouldn': 1.0, 'even': 1.0, 'in': 1.0, 'droopy': 1.0, 'loves': 1.0, 'that': 4.0, '34': 2.0, 'of': 2.0, 'more': 1.0, 'around': 1.0, 'say': 1.0, 'is': 4.0, 'had': 1.0, 'sheepy': 1.0, 'probably': 1.0, 'crib': 1.0, 'give': 1.0, 'and': 3.0, 'down': 1.0, 'favorite': 1.0, 'hold': 1.0, 'call': 1.0, 'soft': 1.0, 'large': 1.0, 'mots': 1.0, 'easy': 1.0, 'well': 1.0, 'has': 1.0, 'toy': 1.0, 'as': 2.0, 'any': 1.0, 'to': 5.0, 'goes': 1.0, 'tug': 1.0, 'ears': 1.0, 'other': 1.0, 'everywhere': 2.0, 'be': 1.0, 'him': 2.0, 'totes': 1.0, 'so': 1.0, 'throws': 1.0, 'serves': 1.0, 's': 1.0, 'we': 1.0, 't': 2.0, 'a': 2.0, 'blanket': 2.0, 'than': 1.0, 'because': 1.0, 'kid': 1.0, 'i': 3.0, 'only': 1.0, 'try': 1.0, 'out': 1.0, 'the': 1.0}
Word element => {'cooking': 1.0, 'my': 1.0, 'in': 1.0, 'fresh': 1.0, 'able': 1.0, 'grow': 1.0, 's': 1.0, 'and': 1.0, 'it': 1.0, 'great': 1.0, 'herbs': 1.0, 'tasty': 1.0, 'to': 3.0, 'be': 1.0, 'easy': 1.0, 'use': 1.0}
Word element => {'plant': 1.0, 'have': 1.0, 'later': 1.0, 'weeks': 1.0, 'few': 1.0, 'a': 2.0, 'noticed': 1.0, 'these': 1.0, 'sprouting': 1.0, 'are': 1.0, 'very': 1.0, 'one': 1.0, 'i': 2.0, 'to': 1.0, 'easy': 1.0, 'use': 1.0, 'in': 1.0, 'seeds': 1.0, 'week': 1.0}
Word element => {'garden': 1.0, 'unusual': 1.0, 'planting': 1.0, 'enjoy': 1.0, 'will': 1.0, 'online': 1.0, 'his': 1.0, 'but': 1.0, 'consummate': 1.0, 'not': 2.0, 'i': 1.0, 'have': 2.0, 'due': 1.0, 'usual': 1.0, 'loved': 1.0, 'convenience': 1.0, 'of': 3.0, 'their': 1.0, 'season': 2.0, 'these': 1.0, 'edamame': 1.0, 'the': 3.0, 'seeds': 1.0, 'purchase': 1.0, 'joy': 1.0, 'my': 2.0, 'one': 1.0, 'for': 2.0, 'our': 1.0, 'all': 1.0, 'to': 3.0, 'husband': 1.0, 'what': 1.0, 'had': 1.0, 'something': 2.0, 'so': 1.0, 'yet': 1.0, 'gardener': 1.0, 'planted': 1.0, 'common': 1.0, 'little': 1.0, 'stuffers': 1.0, 'find': 1.0, 'plant': 1.0, 'is': 1.0, 'and': 1.0, 'this': 1.0, 'stocking': 1.0, 'was': 1.0, 'father': 1.0, 'we': 1.0, 'a': 2.0, 's': 1.0, 'day': 1.0, 'when': 1.0, 'crops': 1.0}
Word element => {'coming': 1.0, 'for': 1.0, 'give': 1.0, 'not': 2.0, 'would': 1.0, 'expect': 1.0, 'i': 2.0, '5': 1.0, 's': 1.0, 'planted': 1.0, 'them': 2.0, 'up': 2.0, 'and': 1.0, 'you': 1.0, 'what': 1.0, 'came': 1.0, 'that': 1.0, 'stars': 1.0, 'they': 1.0, 'pretty': 1.0, 'much': 1.0}
Word element => {'else': 1.0, 'plants': 1.0, 'these': 2.0, 'be': 1.0, 'below': 1.0, 'link': 1.0, 'stems': 1.0, 'around': 1.0, 'to': 1.0, 'elastic': 1.0, 'with': 1.0, 'net': 2.0, 'obviously': 1.0, 'mesh': 2.0, 'ate': 1.0, 'fine': 1.0, 'blamed': 1.0, 'not': 1.0, 'purchased': 1.0, 'had': 1.0, 'everything': 2.0, 'the': 7.0, '500': 1.0, 'put': 1.0, 'on': 2.0, '5': 1.0, 'nearly': 1.0, 'only': 1.0, 'seeds': 1.0, 'end': 1.0, 'at': 1.0, 'quickly': 1.0, 'come': 1.0, 'looked': 1.0, 'we': 1.0, 't': 1.0, 'a': 2.0, 'great': 1.0, '1': 1.0, 'good': 1.0, 'or': 1.0, '100': 1.0, 'in': 1.0, 'minnesota': 1.0, 'summer': 1.0, 'grew': 1.0, 'very': 2.0, 'beans': 2.0, 'year': 1.0, 'hot': 1.0, 'i': 2.0, 'saved': 1.0, 'cannot': 1.0, 'rate': 1.0, 'comment': 1.0, 'months': 1.0, 'germination': 1.0, 'entire': 1.0, 'so': 2.0, 'for': 1.0, 'that': 1.0, 'next': 1.0, 'untouched': 1.0, 'crop': 1.0, 'they': 1.0, 'japanese': 1.0, 'taste': 1.0, '2': 1.0, 'can': 1.0, 'but': 2.0, 'bad': 1.0, 'have': 1.0, 'beetles': 2.0, 'would': 1.0, 'leaving': 1.0, 'eaten': 1.0}
Word element => {'plants': 1.0, 'strongest': 1.0, 'vigor': 1.0, 'soil': 1.0, 'garden': 1.0, 'that': 1.0, 'sprang': 1.0, 'the': 2.0, 'such': 1.0, 'these': 1.0, 'of': 1.0, 'out': 1.0, 'cull': 1.0, 'half': 1.0, 'space': 1.0, 'with': 1.0, 'i': 1.0, 'for': 1.0, 'had': 1.0, 'to': 2.0, 'about': 1.0, 'just': 1.0, 'have': 1.0, 'enough': 1.0, 'biggest': 1.0}
Word element => {'inches': 1.0, '2': 1.0, 'covered': 1.0, 'seen': 1.0, 'before': 1.0, 'have': 1.0, 'i': 1.0, 'that': 1.0, 'packages': 1.0, 'square': 1.0, 'it': 2.0, 'about': 3.0, 'includes': 1.0, '25': 1.0, 'the': 1.0, '20': 1.0, '3': 1.0, '1': 1.0, 'of': 1.0, 'seeds': 1.0, 'regular': 1.0}
Word element => {'cheep': 1.0, 'so': 1.0, 'in': 1.0, 'envelope': 1.0, 'arrived': 1.0, 'seeds': 1.0, 'too': 1.0, 'if': 1.0, 'were': 2.0, 'they': 3.0, 'upset': 1.0, 'a': 2.0, 'price': 1.0, 'don': 1.0, 'padded': 1.0, 'undamaged': 1.0, 'wont': 1.0, 'even': 1.0, 'great': 1.0, 'these': 1.0, 't': 1.0, 'germinate': 1.0, 'i': 1.0, 'be': 1.0, 'because': 1.0}
Word element => {'grow': 1.0, 't': 1.0, 'didn': 1.0, 'they': 1.0}
Word element => {'pesto': 1.0, 'of': 1.0, 'with': 1.0, 'so': 1.0, 'harvesting': 1.0, 'you': 2.0, 'load': 1.0, 'seed': 2.0, 'will': 1.0, 'but': 1.0, 'was': 1.0, 'a': 1.0, 's': 1.0, 'go': 2.0, 'to': 2.0, 'all': 1.0, 'it': 2.0, 'that': 2.0, 'here': 1.0, 'i': 5.0, 'february': 1.0, 'planted': 1.0, 'hot': 1.0, 'and': 3.0, 'growing': 1.0, 'florida': 1.0, 'out': 1.0, 'couple': 1.0, 'in': 3.0, 'worried': 1.0, 'every': 1.0, 'began': 1.0, 'this': 1.0, 'meanwhile': 1.0, 'would': 1.0, 'because': 1.0, 'find': 1.0, 'if': 1.0, 'keep': 2.0, 'picking': 1.0, 'the': 1.0, 'more': 2.0, 'leaves': 2.0, 'll': 1.0, 'off': 1.0, 'days': 1.0, 'they': 2.0, 'may': 1.0, 'eventually': 1.0, 'm': 1.0, 'freezer': 1.0, 'get': 1.0, 'sure': 1.0, 'end': 1.0}
Word element => {'good': 1.0, 'taste': 1.0, 'and': 2.0, 'as': 1.0, 'very': 1.0, 'month': 1.0, 'again': 1.0, 'are': 1.0, 'my': 1.0, 'they': 2.0, 'nicely': 1.0, 'these': 1.0, 'well': 1.0, 'a': 1.0, 'them': 2.0, 'harvest': 1.0, 'for': 1.0, 'to': 1.0, 'had': 1.0, 'in': 1.0, 've': 2.0, 'about': 2.0, 'i': 3.0, 'growing': 1.0, 'little': 1.0, 'hydroponic': 1.0, 'garden': 1.0, 'harvested': 1.0, 'once': 1.0, 'm': 1.0}
Word element => {'wonderful': 1.0, 'great': 1.0, 's': 1.0, 'warmth': 1.0, 'decent': 1.0, 'little': 1.0, 'and': 2.0, 'like': 1.0, 'each': 1.0, 'is': 1.0, 'stuff': 1.0, 'it': 2.0, 'with': 1.0, 'gangbusters': 1.0, 'this': 1.0, 'light': 1.0, 'grow': 1.0, 'i': 1.0, 'will': 1.0, 'put': 1.0, 'a': 1.0, 'in': 1.0, 'my': 1.0, 'tea': 1.0, 'day': 1.0}
Word element => {'great': 1.0, 'june': 1.0, 'in': 1.0, 'rain': 1.0, 'we': 1.0, 'inches': 1.0, 'a': 1.0, 'got': 1.0, 'needed': 1.0, 'bit': 1.0, 'nitrogen': 1.0, 'rich': 1.0, 'when': 1.0, 'fertilizer': 1.0, 'and': 1.0, 'of': 2.0, 'some': 1.0, 'but': 1.0, 'indoor': 1.0, 'now': 1.0, '10': 1.0, 'time': 1.0}
Word element => {'year': 1.0, 'and': 1.0, 'herbs': 1.0, 'tasty': 1.0, 'this': 1.0, 'harvesting': 1.0, 'havent': 1.0, 'planted': 1.0, 'them': 1.0, 'fr': 1.0, 'looking': 1.0, 'to': 1.0, 'yet': 1.0, 'so': 2.0, 'veggies': 1.0, 'but': 1.0, 'some': 1.0, 'good': 1.0, 'forward': 1.0}
Word element => {'of': 1.0, 'out': 1.0, 'item': 1.0, 'pad': 1.0, 'letter': 1.0, 'numbers': 1.0, 'come': 1.0, 'fine': 1.0, 'interlock': 1.0, 'great': 1.0, 'it': 1.0, 'price': 1.0, 'the': 4.0, 'they': 1.0, 'bigger': 1.0, 'and': 3.0, 'rated': 1.0, 'best': 2.0, 'product': 1.0, 'was': 1.0, 'at': 1.0}
Word element => {'chew': 1.0, 'also': 1.0, 'dog': 1.0, 'apart': 1.0, 'tear': 1.0, 'toy': 1.0, 'to': 1.0, 'baby': 1.0, 'fun': 2.0, 'unfortunately': 1.0, 'the': 3.0, 'makes': 1.0, 'lot': 1.0, 'a': 2.0, 'floor': 1.0, 'cushier': 1.0, 'and': 1.0, 'lots': 1.0, 'of': 1.0, 'for': 2.0}
Word element => {'this': 1.0, 'definitely': 1.0, 'would': 1.0, 'lol': 1.0, 'paint': 1.0, 'used': 1.0, 'drank': 1.0, 'smoked': 1.0, 'people': 1.0, 'out': 1.0, 'turned': 1.0, 'we': 1.0, 'though': 1.0, 'be': 1.0, 'time': 1.0, 'little': 1.0, 'lead': 1.0, 'wonder': 1.0, 'purpose': 1.0, 'with': 2.0, 'love': 1.0, 'for': 2.0, 'on': 3.0, 'a': 1.0, 't': 1.0, 'email': 1.0, 'some': 1.0, 'if': 1.0, 'but': 2.0, 'thin': 1.0, 'now': 1.0, 'how': 1.0, 'our': 1.0, 'as': 3.0, 'all': 2.0, 'than': 1.0, 'does': 1.0, 'serves': 1.0, 'traction': 1.0, 'she': 2.0, 'same': 1.0, 'month': 1.0, 'felt': 1.0, 'rug': 1.0, 'thickness': 1.0, 'safe': 1.0, 'to': 3.0, 'pretty': 1.0, 'called': 1.0, 'are': 1.0, 'can': 1.0, 'so': 4.0, 'provides': 1.0, 'mat': 1.0, 'crawling': 1.0, 'helps': 1.0, 'purchase': 1.0, 'about': 2.0, 'no': 1.0, 'makes': 1.0, 'did': 1.0, 'and': 8.0, 'well': 1.0, 'i': 8.0, 'etc': 2.0, 'old': 1.0, 'tested': 1.0, 'its': 2.0, 'is': 3.0, 'more': 1.0, 'it': 7.0, '9': 1.0, 'thought': 1.0, 'results': 1.0, 'what': 1.0, 'wood': 1.0, 'obsessed': 1.0, 'textures': 1.0, 'someone': 2.0, 'contain': 1.0, 'you': 3.0, 'am': 1.0, 'loves': 1.0, 'that': 2.0, 'the': 7.0, 'scratch': 1.0, 'her': 2.0, 'good': 1.0, 'was': 1.0, 'recommend': 1.0, 'assured': 1.0, 'were': 1.0, 'they': 4.0, 'perfectly': 1.0, 'concerns': 1.0, 'or': 1.0, 'toxicity': 1.0, 'formamide': 1.0, 'actually': 1.0, 'order': 1.0, 'just': 1.0, 'why': 1.0, 'bpa': 1.0, 'taken': 1.0, 'rugs': 1.0, 'pleased': 1.0, 'off': 1.0, 'market': 1.0, 'in': 1.0, 'uk': 1.0, 'will': 2.0, 'test': 1.0, 'like': 1.0, 'spoke': 1.0, 'my': 3.0, 'post': 1.0, 'them': 1.0, 'here': 1.0, 'talking': 1.0, 'using': 1.0, 'reason': 1.0, 'after': 1.0}
Word element => {'happy': 1.0, 'teething': 1.0, 'expected': 1.0, 'much': 1.0, 'a': 2.0, 'pulled': 1.0, 'and': 3.0, 'larger': 1.0, 'colors': 1.0, 'keep': 1.0, 'lot': 1.0, 'different': 1.0, 'ordering': 1.0, 'the': 3.0, 'so': 1.0, 'your': 1.0, 'actually': 1.0, 'for': 1.0, 'is': 1.0, 'with': 1.0, 'this': 1.0, 'set': 2.0, 'bag': 1.0, 'than': 1.0, 'mouth': 1.0, 'buck': 1.0, 'out': 1.0, 'baby': 2.0, 'them': 2.0, 'i': 1.0, 'did': 1.0, 'not': 1.0, 'when': 1.0, 'loves': 2.0, 'that': 1.0, 'know': 1.0, 'numbers': 1.0, 'my': 1.0, 'be': 1.0, 'letters': 1.0, 'can': 1.0, 'but': 1.0, 'son': 1.0, 'stick': 1.0, 'all': 2.0, 'to': 2.0, 'remove': 1.0, 'in': 1.0, 'his': 1.0, 'anything': 1.0}
Word element => {'first': 1.0, 'handling': 1.0, 'shipping': 1.0, 'paying': 1.0, 'after': 1.0, 'ok': 1.0, 'quality': 1.0, 'mailed': 1.0, 'was': 1.0, 'overall': 1.0, 'selling': 1.0, 'before': 1.0, 'out': 1.0, 'quickly': 1.0, 'worked': 1.0, 'have': 1.0, 'why': 1.0, 'not': 2.0, 'm': 1.0, 'that': 1.0, 'match': 2.0, 'could': 1.0, 't': 1.0, 'a': 2.0, 'had': 2.0, 'smelled': 1.0, 'hours': 1.0, 'at': 2.0, 'few': 1.0, 'for': 3.0, 'you': 2.0, 'producing': 1.0, 'alphabetically': 1.0, 'found': 1.0, 'wish': 1.0, 'this': 2.0, 'it': 5.0, 'with': 1.0, 'pieces': 2.0, 'is': 2.0, 'the': 5.0, 'put': 1.0, 'but': 3.0, 'can': 1.0, 'sure': 1.0, 'get': 1.0, 'and': 5.0, 'okay': 1.0, 'strange': 1.0, 'as': 1.0, 'outside': 1.0, 'to': 1.0, 'all': 1.0, 'they': 2.0, 'little': 1.0, 'same': 1.0, 'if': 1.0, 'numbers': 1.0, 'costco': 2.0, 'order': 1.0, 'almost': 1.0, 'of': 1.0, 'don': 1.0, 'up': 1.0, 'air': 1.0, 'in': 1.0, 'borders': 2.0, 'thing': 1.0, 'about': 1.0, 'together': 1.0, 'line': 1.0, 'leaves': 1.0, 'i': 4.0, '4': 1.0}
Word element => {'product': 1.0, 'love': 1.0, 'clorox': 1.0, 'down': 1.0, 'wipe': 2.0, 'accidents': 1.0, 'free': 1.0, 'wet': 1.0, 'just': 2.0, 'little': 1.0, 'getting': 1.0, 'diaper': 2.0, 'also': 1.0, 'penny': 1.0, 'every': 1.0, 'up': 2.0, 'right': 1.0, 'back': 2.0, 'sometimes': 1.0, 'sits': 1.0, 'with': 1.0, 'crawl': 1.0, 'support': 1.0, 'on': 2.0, 's': 1.0, 'notice': 1.0, 'a': 3.0, 'daughter': 1.0, 'when': 2.0, 'gets': 2.0, 'us': 1.0, 'irritated': 1.0, 'old': 1.0, 'bought': 1.0, 'but': 1.0, 'give': 2.0, 'have': 2.0, 'falls': 2.0, 'may': 1.0, 'my': 1.0, 'this': 3.0, 'excited': 1.0, 'and': 5.0, 'play': 2.0, 'finally': 1.0, 'mat': 2.0, 'ordered': 1.0, 'while': 1.0, 'any': 1.0, 'to': 4.0, 'safer': 1.0, '7': 1.0, 'she': 5.0, 'it': 3.0, 'month': 1.0, 'super': 1.0, 'the': 2.0, 'place': 1.0, 'without': 1.0, 'playing': 1.0, 'backwards': 1.0, 'wipes': 1.0, 'clean': 1.0, 'her': 3.0, 'or': 1.0, 'worth': 1.0, 'tile': 1.0, 'head': 1.0, 'playmat': 1.0, 'has': 1.0, 'easy': 1.0, 'area': 1.0, 'tears': 1.0, 'i': 6.0, 'hits': 1.0, 'saved': 1.0, 'time': 1.0, 'so': 2.0, 'many': 1.0}
Word element => {'girl': 1.0, 'for': 1.0, 'this': 1.0, 'just': 1.0, 'want': 1.0, 'old': 1.0, 'to': 1.0, 'i': 2.0, 'puzzle': 1.0, 'ordered': 1.0, 'say': 1.0, 'my': 1.0, 'the': 1.0, 'is': 1.0, 'mat': 1.0, 'month': 1.0, '9': 1.0, 'great': 1.0}
Word element => {'she': 1.0, 'later': 1.0, 'will': 1.0, 'maybe': 1.0, 'numbers': 1.0, 'letters': 1.0, 'don': 1.0, 'walk': 1.0, 'and': 1.0, 'have': 1.0, 'been': 1.0, 'little': 1.0, 'because': 1.0, 'not': 1.0, 'picture': 1.0, 'i': 3.0, 'when': 3.0, 'like': 2.0, 'yes': 1.0, 'older': 1.0, 'come': 1.0, 'it': 6.0, 't': 1.0, 'the': 2.0, 'a': 1.0, 'thicker': 1.0, 'you': 1.0, 's': 1.0, 'would': 1.0, 'shifts': 1.0, 'looks': 1.0, 'is': 2.0, 'on': 2.0, 'out': 1.0, 'child': 1.0, 'that': 1.0, 'thought': 1.0, 'playing': 1.0}
Word element => {'a': 1.0, 'hazards': 1.0, 'likely': 1.0, 'anyway': 1.0, 'are': 1.0, 'which': 1.0, 'the': 1.0, 's': 1.0, 'choking': 1.0, 'you': 2.0, 'many': 1.0, 'pieces': 2.0, 'piece': 1.0, 'on': 1.0, 'if': 1.0, 'too': 1.0, 'and': 1.0, 'bits': 1.0, 'get': 2.0, 'mat': 2.0, 'that': 1.0, 'forever': 1.0, 'it': 1.0, 'this': 1.0, 'play': 1.0, 'has': 1.0, 'your': 1.0, 'for': 1.0, 'one': 2.0, 'little': 2.0, 'to': 1.0, 'be': 1.0, 'll': 1.0, 'putting': 1.0, 'together': 1.0, 'all': 2.0}
Word element => {'apart': 1.0, 'edging': 1.0, 'the': 2.0, 'tiles': 1.0, 'how': 1.0, 'learned': 1.0, 'has': 1.0, 'drawback': 1.0, 'because': 1.0, 'take': 1.0, 'burn': 1.0, 'son': 1.0, 'one': 1.0, 'for': 1.0, 'item': 1.0, 'my': 1.0, 'bought': 1.0, 'i': 1.0, 'enjoys': 1.0, 'crawls': 1.0, 'is': 1.0, 'really': 1.0, 'now': 1.0, 'to': 2.0, 'was': 1.0, 'and': 1.0, 'getting': 1.0, 'this': 1.0, 'he': 4.0, 'it': 1.0, 'rug': 2.0, 'that': 1.0, 'our': 1.0, 'all': 1.0, 'crawl': 1.0, 'on': 2.0, 'over': 1.0}
Word element => {'sure': 1.0, 'm': 2.0, 'mouth': 1.0, 'just': 2.0, 'they': 1.0, 'over': 1.0, 'don': 1.0, 'i': 3.0, 'who': 1.0, 'baby': 2.0, 'teething': 1.0, 'near': 1.0, 'risky': 1.0, 'are': 1.0, 'parts': 1.0, 'fit': 1.0, 'for': 2.0, 'opinion': 2.0, 'my': 2.0, 'in': 1.0, 'design': 1.0, 'please': 1.0, 'their': 2.0, 'part': 1.0, 'small': 2.0, 'have': 2.0, '8': 1.0, '9': 1.0, 'circles': 1.0, '6': 1.0, 'us': 1.0, 'required': 1.0, 'then': 1.0, 'note': 1.0, 'own': 1.0, 'being': 1.0, 'if': 1.0, 'pretty': 1.0, 'rug': 1.0, 'honest': 1.0, 'problem': 1.0, 'its': 1.0, 'as': 1.0, 'to': 6.0, 'was': 1.0, 'protective': 2.0, 'thin': 1.0, 'cushion': 1.0, 'will': 1.0, 'disappointing': 1.0, 'however': 1.0, 'think': 1.0, 'mouths': 1.0, 'put': 2.0, 'on': 3.0, 'is': 3.0, 'course': 1.0, 'looks': 1.0, 'colorful': 1.0, 'it': 4.0, 'this': 2.0, 't': 1.0, 'a': 6.0, 's': 1.0, 'you': 1.0, 'of': 4.0, 'too': 2.0, 'and': 4.0, 'couple': 1.0, 'be': 2.0, 'thinness': 1.0, 'but': 1.0, 'worrisome': 1.0, 'swallow': 1.0, 'removable': 2.0, 'blankets': 1.0, 'these': 1.0, 'some': 1.0, 'enough': 2.0, 're': 2.0, 'accessory': 1.0, 'numbers': 1.0, 'using': 1.0, 'the': 4.0, 'not': 1.0, 'anything': 1.0, 'other': 1.0, 'thing': 1.0, 'about': 1.0, 'into': 2.0, 'that': 2.0, 'little': 1.0, 'very': 2.0, 'specifically': 1.0}
Word element => {'am': 1.0, 'item': 1.0, 'this': 1.0, 'happy': 1.0, 'grow': 1.0, 'continue': 1.0, 'older': 1.0, 'gets': 1.0, 'see': 2.0, 'plus': 1.0, 'certain': 1.0, 'really': 1.0, 'longer': 1.0, 'looking': 1.0, 'no': 1.0, 'ways': 1.0, 'various': 1.0, 'came': 1.0, 'outside': 1.0, 'contrast': 1.0, 'theme': 1.0, 'bugged': 2.0, 'makes': 1.0, 'combo': 1.0, 'growing': 1.0, 'puzzle': 1.0, 'never': 1.0, 'handing': 1.0, 'take': 1.0, 'me': 4.0, 'hand': 1.0, '8': 1.0, 'number': 3.0, 'piece': 1.0, 'pull': 2.0, 'were': 1.0, 'area': 1.0, 'both': 1.0, 'needed': 1.0, 'isn': 1.0, 'padded': 1.0, 'w': 1.0, 'example': 1.0, 'home': 1.0, 'crawling': 1.0, 'super': 1.0, 'arrange': 1.0, 'don': 1.0, 'still': 2.0, 'greatlyshe': 1.0, 'has': 1.0, 'use': 1.0, 'going': 1.0, 'marylou': 1.0, 'blend': 1.0, 'strange': 1.0, 'months': 1.0, 'update': 1.0, 'wife': 1.0, 'crawl': 2.0, 'having': 2.0, 'buy': 1.0, 'trying': 1.0, 'pro': 1.0, 'more': 3.0, 'order': 1.0, 'color': 4.0, 'reviewed': 1.0, 'back': 1.0, 'walking': 1.0, 'do': 3.0, 'much': 3.0, 'fill': 1.0, 'put': 4.0, 'from': 1.0, 'putting': 1.0, 'morning': 2.0, 'down': 5.0, 'enough': 2.0, 'them': 9.0, 'next': 1.0, 'was': 5.0, 'some': 1.0, 'solve': 1.0, 'carpet': 1.0, 'oval': 1.0, 'an': 2.0, 'way': 1.0, 'all': 2.0, 'other': 1.0, 'place': 1.0, 'online': 1.0, 'living': 2.0, 'the': 44.0, 'changed': 2.0, 'when': 4.0, 'letter': 1.0, 'what': 2.0, 'lose': 1.0, 'letters': 4.0, 'lot': 1.0, 'too': 2.0, 'bigger': 3.0, 'space': 4.0, 'stacked': 1.0, 'mixed': 2.0, 'at': 1.0, 'floors': 1.0, 'yoga': 1.0, 'daughters': 1.0, 'i': 17.0, 'out': 3.0, 'during': 2.0, 'into': 1.0, 'momma': 2.0, 'how': 2.0, 'right': 2.0, 'to': 24.0, 'merely': 1.0, 'pulled': 2.0, 'together': 3.0, 'in': 13.0, 'happier': 1.0, 'if': 1.0, 'great': 2.0, 'big': 1.0, 'thrilled': 1.0, 'mat': 2.0, 'grows': 1.0, 'tired': 1.0, 's': 3.0, 'will': 2.0, 'middle': 2.0, 'we': 11.0, 'confirmed': 1.0, 'fun': 1.0, 't': 9.0, 'nap': 3.0, 'a': 12.0, 'small': 1.0, 'surprised': 1.0, 'they': 2.0, 'aren': 1.0, 'comp': 1.0, 'our': 4.0, 'condition': 1.0, 'words': 1.0, 'tried': 1.0, 'and': 22.0, 'just': 1.0, 'posted': 1.0, 'help': 1.0, 'think': 2.0, 'better': 1.0, 'on': 8.0, 'long': 1.0, 'good': 3.0, 'had': 2.0, 'toy': 2.0, 'zcon': 1.0, 'before': 5.0, 'protected': 1.0, 'plastic': 1.0, 'side': 1.0, 'arranging': 1.0, 'one': 2.0, '5': 1.0, 'got': 2.0, 'daughter': 2.0, 'didn': 5.0, 'border': 1.0, '18': 1.0, 'wake': 1.0, 'over': 3.0, 'hard': 1.0, 'up': 12.0, 'change': 1.0, 'every': 2.0, 'play': 6.0, 'toys': 3.0, 'waited': 1.0, 'heart': 1.0, 'make': 3.0, 'she': 15.0, 'part': 1.0, 'baby': 1.0, 'like': 2.0, 're': 1.0, 'know': 2.0, 'future': 1.0, 'rolled': 1.0, 'but': 4.0, 'seem': 2.0, 'shape': 1.0, 'set': 5.0, 'plays': 2.0, 'any': 1.0, 'lay': 1.0, 'being': 1.0, 'day': 2.0, 'surface': 1.0, 'did': 1.0, 'time': 4.0, 'mix': 1.0, 'so': 11.0, 'awhile': 1.0, 'is': 4.0, 'can': 7.0, 'could': 2.0, 'spaces': 1.0, 'due': 1.0, 'be': 3.0, 'it': 7.0, 'soft': 1.0, 'watch': 1.0, 'without': 2.0, 'padding': 1.0, 'pictures': 1.0, 'chunk': 1.0, 'alphabet': 1.0, 'same': 3.0, 'numbers': 1.0, 'colors': 3.0, 'edging': 1.0, 'flat': 1.0, 'that': 7.0, 'fills': 1.0, 'get': 3.0, 'mats': 3.0, 'showed': 1.0, 'with': 9.0, 'are': 4.0, 'room': 4.0, 'my': 2.0, 'may': 1.0, 'completed': 1.0, 'thickness': 1.0, 'also': 2.0, 'actually': 2.0, 'us': 1.0, 'interchangeable': 1.0, 'spell': 1.0, 'you': 1.0, 'wrapped': 1.0, 'night': 1.0, 'packs': 1.0, 'offer': 1.0, 'tell': 1.0, '1': 1.0, 'or': 4.0, 'come': 1.0, 'mom': 1.0, 'her': 12.0, 'little': 1.0, 'have': 2.0, 'its': 3.0, 'fix': 1.0, 'floor': 3.0, 'straight': 1.0, 'setting': 1.0, 'z': 2.0, 'as': 8.0, 'closely': 1.0, 'would': 2.0, 'now': 5.0, 'problem': 1.0, 'orange': 1.0, 'show': 1.0, 'first': 1.0, 'n': 1.0, 'go': 2.0, 'pleased': 1.0, 'learn': 1.0, 'well': 1.0, 'line': 1.0, 'purple': 1.0, 'old': 1.0, 'of': 5.0, 'even': 1.0, 'getting': 1.0, 'previously': 1.0, 'lower': 2.0, 'case': 2.0, '6month': 1.0, 'for': 8.0, 'pieces': 3.0, 'purchase': 2.0, 'then': 2.0, 'only': 1.0, 'edges': 1.0, 'not': 3.0, 'which': 1.0, 'again': 1.0, 'instead': 2.0, 'places': 1.0, 'after': 1.0, 'by': 1.0}
Word element => {'family': 1.0, 'happy': 1.0, 'was': 1.0, 'toy': 1.0, 'audrey': 1.0, 'little': 1.0, 'abc': 1.0, 'this': 1.0, 'with': 1.0, 'space': 1.0, 'were': 2.0, 'toddler': 2.0, 'what': 2.0, 'her': 4.0, 'and': 3.0, 'asking': 1.0, 'educational': 1.0, 'them': 1.0, '29': 1.0, 'in': 1.0, 'learned': 1.0, 'they': 1.0, 'thank': 1.0, 'months': 1.0, 'on': 2.0, 'way': 1.0, 'you': 1.0, 'announcing': 1.0, 'own': 3.0, 'the': 2.0, 'letters': 1.0, 'product': 1.0, 'for': 1.0, 'holding': 1.0, 'up': 1.0, 'us': 1.0, 'to': 2.0, 'our': 2.0, 'all': 1.0, 'best': 1.0, 'from': 1.0, 's': 1.0, 'a': 1.0, 'learn': 1.0, 'self': 1.0, 'directed': 1.0, 'discovery': 1.0, 'much': 1.0, 'time': 1.0, 'so': 1.0}
Word element => {'toddlers': 1.0, 'n': 1.0, 'have': 1.0, 'are': 1.0, 'lots': 1.0, 'keeps': 1.0, 'floors': 1.0, 'rubber': 1.0, 'there': 1.0, 'rather': 1.0, 'of': 1.0, 'that': 3.0, 'money': 1.0, 'work': 1.0, 'ones': 1.0, 'tykes': 1.0, 'the': 2.0, 'nice': 1.0, 'all': 2.0, 'to': 2.0, 'material': 1.0, 'little': 1.0, 'from': 1.0, 'hard': 1.0, 'only': 1.0, 'it': 1.0, 'bonking': 1.0, 'pieces': 1.0, 'in': 1.0, 'more': 1.0, 'is': 1.0, 'on': 1.0, 'together': 1.0, 'value': 1.0, 'when': 1.0, 'a': 3.0, 's': 1.0, 'and': 3.0, 'dents': 1.0, 'exhibiting': 1.0, 'downside': 1.0, 'like': 1.0, 'behavior': 1.0, 'fun': 1.0, 'good': 1.0, 'product': 2.0, 'disassembled': 1.0, 'for': 2.0, 'back': 1.0, 'educational': 1.0}
Word element => {'9months': 1.0, 'sure': 1.0, 'i': 1.0, 'but': 1.0, 'blocks': 1.0, 'the': 1.0, 'soft': 1.0, 'daughter': 1.0, 'and': 1.0, 'pass': 1.0, 'apart': 1.0, 'our': 1.0, 'well': 1.0, 'this': 1.0, 'loves': 1.0, 'is': 1.0, 'phase': 1.0, 'm': 1.0, 'happy': 1.0, 'will': 1.0, 'cushioned': 1.0, 'she': 2.0, 'pulling': 1.0}
Word element => {'solution': 1.0, 'perfect': 1.0, 'falling': 1.0, 'maybe': 1.0, 'about': 1.0, 'worried': 1.0, 'kids': 2.0, 'the': 3.0, 'my': 1.0, 'on': 2.0, 'for': 2.0, 'was': 2.0, 'to': 1.0, 'had': 1.0, 'floor': 1.0, 'bought': 1.0, 'i': 2.0, 's': 1.0, 'a': 1.0, 'party': 1.0, 'well': 1.0, 'floors': 1.0, 'birthday': 1.0, 'and': 2.0, 'hard': 1.0, 'this': 2.0, 'first': 1.0, 'it': 1.0, 'son': 1.0, 'worked': 1.0, 'play': 1.0, 'we': 1.0, 'tile': 1.0}
Word element => {'in': 1.0, 'be': 1.0, 'there': 1.0, 'knows': 1.0, 'future': 1.0, 'who': 1.0, 'out': 1.0, 'with': 1.0, 'mat': 1.0, 'gift': 1.0, 'one': 4.0, 'boys': 1.0, 'a': 3.0, 'and': 4.0, 'me': 1.0, 'home': 1.0, 'was': 1.0, 'to': 1.0, 'more': 1.0, 'comes': 1.0, 'is': 3.0, 'second': 1.0, 'the': 8.0, 'of': 1.0, 'set': 1.0, 'this': 3.0, 'first': 1.0, 'it': 1.0, 'have': 1.0, 'had': 1.0, 'purchased': 1.0, 'delivered': 1.0, 'so': 1.0, 'much': 1.0, 'hitch': 1.0, 'love': 3.0, 'for': 3.0, 'product': 1.0, 'share': 1.0, 'that': 1.0, 'were': 1.0, 'fun': 1.0, 'i': 2.0, 'two': 1.0, 'they': 3.0, 'colors': 1.0, 'may': 1.0, 'my': 3.0, 'fact': 1.0, 'apart': 1.0, 'year': 1.0, 'other': 1.0, 'half': 1.0, 'them': 1.0, 'grandson': 1.0, 'thats': 1.0, 'enough': 1.0, 'fast': 1.0}
Word element => {'small': 1.0, 'from': 1.0, 'carpet': 1.0, 'can': 1.0, 'things': 2.0, 'building': 1.0, 'really': 1.0, 'stronger': 1.0, 'are': 1.0, 'were': 1.0, 'l': 1.0, 'well': 1.0, 'has': 1.0, 'toys': 1.0, 'plus': 1.0, 'inside': 1.0, 'toybox': 1.0, 'clean': 1.0, 'course': 1.0, 'obstacle': 1.0, 'solid': 2.0, 'an': 1.0, 'build': 1.0, 'balance': 1.0, 'soft': 1.0, 'something': 1.0, 'tv': 1.0, 'tables': 1.0, 'end': 1.0, 'front': 1.0, 'on': 1.0, 'put': 2.0, 'back': 1.0, 'them': 4.0, 'out': 2.0, 'and': 7.0, 'other': 4.0, 'shapes': 3.0, 'with': 3.0, '9': 1.0, 'if': 2.0, 'fell': 1.0, 'it': 2.0, 'she': 3.0, 'lot': 1.0, 'bigger': 2.0, 'the': 6.0, 'pulling': 1.0, 'a': 3.0, 'we': 6.0, 't': 1.0, 'ago': 1.0, 'save': 1.0, 'my': 1.0, 'putting': 1.0, 'tiles': 2.0, 'used': 1.0, 'set': 2.0, 'of': 3.0, 'dtr': 1.0, 'was': 2.0, 'as': 1.0, 'our': 1.0, 'to': 1.0, 'had': 2.0, 'stuffed': 1.0, 'loved': 2.0, 'dexterity': 1.0, 'walk': 1.0, 'in': 2.0, 'for': 4.0, 'spills': 1.0, 'pillows': 1.0, 'boxes': 2.0, 'up': 1.0, 'don': 1.0, 'd': 1.0, 'years': 1.0, 'fun': 2.0, 'like': 1.0, 'or': 2.0, 'made': 3.0, 'tunnels': 1.0, 'houses': 1.0, 'they': 3.0, 'collapse': 1.0, 'hurt': 1.0, 'when': 2.0, 'daughter': 1.0, 'these': 1.0, 'add': 1.0, 'learning': 1.0}
Word element => {'when': 1.0, 'uneven': 1.0, 'bit': 1.0, 'a': 1.0, 'of': 1.0, 'understand': 1.0, 'an': 1.0, 'but': 1.0, 'i': 3.0, 'cushion': 1.0, 'together': 1.0, 'and': 2.0, 'walked': 1.0, 'because': 1.0, 'huge': 1.0, 'as': 2.0, 'like': 1.0, 'stay': 1.0, 'for': 1.0, 'love': 1.0, 'letters': 1.0, 'is': 1.0, 'on': 2.0, 'mat': 1.0, 'carpet': 2.0, 'makes': 1.0, 'has': 1.0, 'they': 1.0, 'colors': 1.0, 'don': 1.0, 'great': 1.0, 'the': 3.0, 't': 1.0, 'easy': 1.0, 'surface': 1.0, 'd': 1.0}
Word element => {'were': 1.0, 'about': 1.0, 'just': 1.0, 'worried': 1.0, 'i': 2.0, 'onto': 1.0, 'mind': 1.0, 'sometimes': 1.0, 'come': 1.0, 'it': 2.0, 'he': 3.0, 'do': 1.0, 'now': 1.0, 'sit': 2.0, 'flimsy': 1.0, 'playroom': 1.0, 'wish': 1.0, 'soft': 2.0, 'very': 1.0, 't': 1.0, 'a': 1.0, 'we': 1.0, 'runs': 1.0, 'one': 1.0, 'of': 2.0, 'basement': 1.0, 'inserts': 3.0, 'tumble': 1.0, 'on': 2.0, 'in': 2.0, 'have': 1.0, 'flat': 1.0, 'these': 1.0, 'the': 8.0, 'fall': 1.0, 'more': 1.0, 'my': 2.0, 'out': 1.0, 'them': 1.0, 'area': 1.0, 'easy': 1.0, 'they': 1.0, 'doesn': 1.0, 'bent': 2.0, 'has': 1.0, 'half': 1.0, 'so': 2.0, 'not': 3.0, 'trip': 1.0, 'seem': 1.0, 'son': 2.0, 'carpet': 1.0, 'mat': 2.0, 'as': 1.0, 'to': 2.0, 'our': 1.0, 'any': 1.0, 'am': 1.0, 'gives': 1.0, 'when': 1.0, 'too': 1.0, 'and': 1.0, 'across': 1.0, 'does': 1.0}
Word element => {'two': 1.0, 'pair': 1.0, 'out': 1.0, 'them': 1.0, 'scrapes': 1.0, 'worry': 1.0, 'for': 1.0, 'yard': 2.0, 'good': 1.0, 'addition': 1.0, 'patio': 1.0, 'play': 2.0, 'have': 2.0, 'great': 1.0, 't': 1.0, 'the': 4.0, 'standing': 1.0, 'to': 3.0, 'ideal': 1.0, 's': 1.0, 'under': 1.0, 'legs': 1.0, 'when': 2.0, 'products': 1.0, 'bruises': 1.0, 'i': 2.0, 'gives': 1.0, 'outside': 1.0, 'support': 1.0, 'on': 1.0, 'and': 2.0, 'about': 1.0, 'baby': 1.0, 'don': 1.0}
Word element => {'i': 1.0, 'easily': 1.0, 'able': 1.0, 'and': 2.0, 'falls': 1.0, 'recommend': 1.0, 'she': 1.0, 'great': 1.0, 'for': 2.0, 'in': 1.0, 'highly': 1.0, 'baby': 3.0, 'to': 4.0, 'its': 1.0, 'that': 1.0, 'a': 1.0, 'sitting': 1.0, 'heart': 1.0, 'is': 3.0, 'mat': 2.0, 'hard': 1.0, 'he': 1.0, 'this': 2.0, 'over': 1.0, 'crawl': 2.0, 'soft': 1.0, 'or': 1.0, 'your': 1.0, 'up': 1.0, 'roll': 1.0, 'learning': 1.0, 'enough': 2.0, 'just': 1.0, 'not': 1.0, 'be': 1.0, 'case': 1.0}
Word element => {'plus': 1.0, 'consider': 1.0, 'them': 1.0, 'on': 1.0, 'gnaw': 1.0, 'has': 1.0, 'well': 1.0, 'inside': 1.0, 'off': 1.0, 'also': 1.0, 'hurt': 1.0, 'not': 1.0, 'or': 1.0, 'change': 1.0, 'can': 1.0, 'sitting': 1.0, 'while': 1.0, 'don': 1.0, 'over': 1.0, 'now': 2.0, 'tips': 1.0, 'if': 2.0, 'includes': 1.0, 'her': 1.0, 'for': 4.0, 'with': 1.0, 'ones': 2.0, 'teeth': 1.0, 'know': 1.0, 'like': 1.0, 'numbers': 1.0, 'may': 1.0, 'my': 1.0, 'old': 1.0, 'highly': 1.0, 'least': 1.0, 'as': 1.0, 'to': 3.0, 'once': 1.0, 'of': 2.0, '6': 1.0, 'some': 2.0, 'creates': 1.0, 'recommend': 1.0, 'anything': 1.0, 'other': 1.0, 'and': 4.0, 'play': 2.0, 'floor': 1.0, 'mat': 1.0, 'pieces': 2.0, 't': 1.0, 'we': 1.0, 'a': 3.0, 'at': 1.0, 'since': 1.0, 'safe': 1.0, 'take': 1.0, 'pretty': 1.0, 'border': 1.0, 'nice': 2.0, 'does': 1.0, 'because': 1.0, 'than': 1.0, 'sized': 1.0, 'get': 1.0, 'area': 1.0, 'it': 5.0, 'she': 5.0, 'month': 1.0, 'that': 2.0, 'loves': 1.0, 'more': 1.0, 'comes': 1.0, 'is': 2.0, 'sale': 1.0, 'have': 2.0, 'this': 2.0, 'soft': 1.0, 'i': 3.0, 'otherwise': 1.0, 'the': 4.0, 'place': 1.0, 'hardwood': 1.0, 'floors': 1.0}
Word element => {'mat': 1.0, 'on': 1.0, 'enjoys': 1.0, 'baby': 1.0, 'the': 1.0, 'my': 1.0, 'of': 1.0, 'couple': 1.0, 'it': 2.0, 'smell': 1.0, 'weird': 1.0, 'days': 1.0, 'a': 2.0, 'like': 1.0, 'out': 1.0, 'petro': 1.0, 'to': 1.0, 'playing': 1.0, 'had': 2.0, 'for': 1.0, 'air': 1.0}
Word element => {'however': 1.0, 'in': 1.0, 'price': 1.0, 'better': 1.0, 'found': 1.0, 'cover': 1.0, 'size': 1.0, 'large': 1.0, 'nice': 1.0, 'exactly': 1.0, 'product': 1.0, 'to': 2.0, 'squares': 1.0, 'is': 1.0, 'and': 1.0, 'described': 1.0, 'very': 1.0, 'as': 1.0, 'quickly': 1.0, 'arrived': 1.0, 'it': 1.0, 'this': 1.0, 'what': 1.0, 'playroom': 1.0, 'i': 1.0, 'needed': 1.0, 'design': 1.0, 'area': 1.0, 'dons': 1.0, 'stores': 1.0, 'my': 1.0, 'the': 3.0, 'are': 1.0, 'a': 2.0}
Word element => {'alone': 1.0, 'size': 1.0, 'great': 1.0, 'but': 1.0, 'whatever': 1.0, 'right': 1.0, 'number': 1.0, 'have': 1.0, 'sure': 2.0, 'kind': 1.0, 'better': 1.0, 'definitely': 1.0, 'buy': 1.0, 'crawl': 1.0, 'piece': 1.0, 'for': 4.0, 'room': 1.0, '5': 1.0, 'around': 1.0, 'is': 3.0, 'enough': 1.0, 'off': 1.0, 'there': 2.0, 'give': 1.0, 'not': 1.0, 'are': 3.0, 'roll': 1.0, 'when': 2.0, 'easily': 2.0, 'baby': 1.0, 'letter': 1.0, 'assembled': 1.0, 'a': 5.0, 's': 1.0, 't': 1.0, 'to': 6.0, 'actual': 1.0, 'annoying': 1.0, 'as': 1.0, 'purpose': 1.0, 'serves': 1.0, 'soft': 1.0, 'this': 4.0, 'large': 1.0, 'join': 1.0, 'just': 1.0, 'mat': 2.0, 'floor': 1.0, 'or': 4.0, 'quite': 2.0, 'making': 1.0, 'months': 1.0, 'on': 2.0, 'amount': 1.0, 'the': 10.0, 'of': 1.0, 'space': 1.0, 'assemble': 1.0, 'huge': 1.0, 'blocks': 1.0, 'connect': 1.0, 'next': 1.0, 'corner': 1.0, 'pull': 1.0, 'etc': 1.0, 'i': 3.0, 'and': 6.0, 'letters': 1.0, 'can': 1.0, 'numbers': 1.0, 'side': 2.0, 'which': 2.0, 'covers': 1.0, 'like': 1.0, 'they': 1.0, 'fully': 1.0, 'come': 1.0, 'move': 1.0, 'out': 3.0, 'don': 1.0, 'products': 1.0, 'product': 2.0, 'child': 1.0, 'up': 1.0, 'necessarily': 1.0, 'downsides': 1.0, 'my': 1.0, 'pieces': 1.0, 'got': 1.0, 'it': 3.0, 'him': 1.0, 'block': 2.0, 'trying': 1.0, 'he': 2.0, 'was': 2.0, 'turning': 1.0, 'you': 2.0, 'able': 1.0, 'gag': 1.0, 'very': 2.0, 'himself': 1.0, 'will': 1.0, 'also': 1.0, 'lift': 1.0, 'slip': 1.0, 'm': 1.0}
Word element => {'his': 1.0, 'in': 1.0, 'getting': 1.0, 'm': 1.0, 'great': 1.0, 'him': 1.0, 'cover': 1.0, 'enough': 1.0, 'when': 1.0, 'but': 1.0, 'doesn': 1.0, 'since': 1.0, 'flooring': 1.0, 'wood': 1.0, 'does': 1.0, 'because': 1.0, 'only': 1.0, 'with': 2.0, 'he': 3.0, 'it': 2.0, 'month': 1.0, 'the': 5.0, 'another': 1.0, 'often': 1.0, 'my': 2.0, 'area': 3.0, 'perfect': 1.0, 'on': 1.0, 'thinking': 1.0, '4': 1.0, 'i': 5.0, 'product': 1.0, 'stars': 1.0, 'for': 2.0, 'cushion': 1.0, 'cube': 1.0, '16': 1.0, 'designate': 1.0, 'about': 1.0, 'no': 1.0, 'to': 4.0, 'wanted': 1.0, 'what': 1.0, 'had': 1.0, 'covering': 1.0, 'of': 2.0, 'play': 2.0, 's': 1.0, 't': 2.0, 'a': 3.0, 'we': 1.0, 'set': 2.0, 'tiles': 3.0, 'over': 1.0, 'up': 1.0, 'don': 1.0, 'match': 1.0, 'old': 1.0, 'problems': 1.0, 'foam': 1.0, 'thickness': 1.0, 'already': 1.0, 'made': 1.0, 'out': 1.0, 'gave': 1.0, 'that': 2.0, 'floor': 2.0, 'throws': 1.0, 'more': 1.0, 'fall': 1.0, 'around': 1.0, 'have': 1.0}
Word element => {'over': 1.0, 'are': 1.0, 'if': 1.0, 'they': 1.0, 'possible': 1.0, 'stars': 1.0, 'no': 1.0, 'it': 1.0, 'got': 1.0, 'extremely': 1.0, 'this': 1.0, 'for': 1.0, '10': 1.0, 'dont': 1.0, 'overpay': 1.0, 'walmart': 1.0, 'give': 1.0, 'charging': 1.0, 'i': 1.0, 'at': 1.0, 'would': 1.0}
Word element => {'use': 1.0, 'safe': 1.0, 'edges': 1.0, 'son': 1.0, 'play': 1.0, 'loves': 1.0, 'to': 3.0, 'holes': 1.0, 'the': 2.0, 'small': 1.0, 'make': 1.0, 'with': 1.0, 'it': 2.0, 'for': 1.0, 'love': 1.0, 'letters': 1.0, 'my': 1.0, 'numbers': 1.0, 'i': 1.0, 'baby': 1.0, 'removed': 1.0, 'a': 2.0, 'pieces': 1.0, 'in': 1.0, 'b': 1.0, '8': 1.0, 'etc': 1.0}
Word element => {'safe': 1.0, 'baby': 1.0, 'where': 1.0, 'area': 1.0, 'bought': 1.0, 'big': 1.0, 'enough': 1.0, 'around': 1.0, 'him': 1.0, 'month': 1.0, 'it': 2.0, 'want': 1.0, 'is': 1.0, 'if': 1.0, 'for': 2.0, 'your': 1.0, 'boy': 1.0, 'you': 2.0, 'my': 1.0, 'to': 3.0, 'play': 2.0, 'have': 1.0, 'easy': 1.0, 'clean': 1.0, 'five': 1.0, 'and': 1.0, 'get': 1.0, 'a': 1.0, 'large': 1.0}
Word element => {'reassemble': 1.0, 'convininent': 1.0, 'be': 1.0, 'tiles': 1.0, 'came': 1.0, 'mat': 1.0, 'been': 1.0, 'have': 1.0, 'apart': 2.0, 'better': 1.0, '9': 1.0, 'keeps': 1.0, 'it': 2.0, 'come': 1.0, 'he': 1.0, 'very': 1.0, 'as': 1.0, 'son': 1.0, 'is': 2.0, 'pulling': 1.0, 'my': 1.0, 'disassemble': 1.0, 't': 1.0, 'the': 3.0, 'nice': 1.0, 'to': 1.0, 'look': 1.0, 'though': 1.0, 'removed': 1.0, 'colors': 1.0, 'couldn': 1.0, 'and': 3.0, 'not': 1.0, 'just': 1.0, 'even': 1.0, 'months': 1.0, 'letters': 2.0, 'old': 1.0, 'out': 1.0, 'would': 1.0}
Word element => {'at': 1.0, 'didn': 1.0, 'they': 1.0, 'if': 1.0, 'better': 1.0, 'be': 1.0, 'would': 1.0, 'in': 1.0, 'back': 1.0, 'come': 1.0, 'moving': 1.0, 'putting': 1.0, 'and': 2.0, 'or': 1.0, 'when': 1.0, 'too': 1.0, 'fall': 1.0, 'letters': 2.0, 'easily': 1.0, 'spend': 1.0, 'are': 1.0, 't': 1.0, 'the': 3.0, 'you': 2.0, 'mat': 1.0, 'minutes': 1.0, 'around': 1.0, 'vacuum': 1.0, 'to': 1.0, 'out': 2.0, 'clean': 1.0, '20': 1.0, 'all': 2.0, 'numbers': 1.0}
Word element => {'worth': 1.0, 'that': 1.0, 'but': 1.0, 'can': 1.0, 'thing': 1.0, 'only': 1.0, 'morning': 1.0, 'in': 1.0, 'was': 1.0, 'water': 1.0, 'soap': 1.0, 'with': 2.0, 'thicker': 1.0, 'cleaned': 1.0, 'give': 1.0, 'use': 1.0, 'purchased': 1.0, 'good': 2.0, 'and': 4.0, 'getting': 1.0, 'inexpensive': 1.0, 'glad': 1.0, 'night': 1.0, 'baby': 1.0, 'wish': 1.0, 'this': 1.0, 'he': 1.0, 'cover': 1.0, 'again': 1.0, 'when': 2.0, 'price': 1.0, 'm': 2.0, 'old': 1.0, 'all': 1.0, 'to': 4.0, 'husband': 1.0, 'floor': 2.0, 'mat': 3.0, 'one': 1.0, '5': 1.0, 'be': 1.0, 'him': 1.0, 'crawling': 1.0, 'ready': 1.0, 'his': 1.0, 'tummy': 1.0, 'bit': 1.0, 'time': 1.0, 'the': 4.0, 'is': 1.0, 'more': 1.0, 'it': 5.0, 'month': 1.0, 'colorful': 1.0, 'covers': 1.0, 's': 2.0, 'a': 2.0, 'of': 2.0, 'at': 1.0, 'space': 2.0, 'i': 5.0, 'thinking': 1.0, 'another': 1.0, 'my': 2.0, 'starts': 1.0, 'dried': 1.0, 'very': 1.0, 'easy': 1.0, 'for': 1.0, 'assemble': 2.0, 'amount': 1.0, 'after': 1.0}
Word element => {'business': 1.0, 'people': 1.0, 'excellent': 1.0, 'wonderful': 1.0, 'sellers': 1.0, 'it': 2.0, 'with': 2.0, 'should': 1.0, 'not': 1.0, 'stand': 1.0, 'thing': 1.0, 'must': 1.0, 'have': 1.0, 'months': 1.0, 'but': 2.0, 'will': 2.0, '6': 1.0, 'up': 1.0, 'of': 1.0, 'nice': 1.0, 'very': 1.0, 'infants': 1.0, 'the': 4.0, 'you': 2.0, 'that': 1.0, 'useful': 1.0, 'room': 1.0, 'to': 2.0, 'do': 1.0, 'only': 1.0, 'its': 2.0, 'in': 1.0, 'middle': 1.0, 'a': 1.0, 'for': 1.0, 'where': 2.0, 'just': 1.0, 'by': 1.0, 'put': 1.0, 'your': 1.0, 'hardwood': 1.0, 'strolling': 1.0, 'started': 1.0, 'baby': 1.0, 'them': 1.0, 'walker': 1.0, 'tiles': 1.0, 'cause': 1.0, 'and': 3.0, 'soon': 1.0, 'block': 1.0, 'if': 1.0, 'or': 1.0, 'floors': 1.0}
Word element => {'kids': 1.0, 'and': 1.0, 'of': 1.0, 'the': 2.0, 'purchased': 1.0, 'this': 1.0, 'at': 1.0, 'playing': 1.0, 'middle': 1.0, 'in': 1.0, 'for': 1.0, 'enjoy': 1.0, 'our': 1.0, 'new': 1.0, 'on': 1.0, 'room': 1.0, 'is': 2.0, 'nursery': 1.0, 'church': 1.0, 'great': 1.0, 'it': 3.0}
Word element => {'huge': 1.0, 'did': 1.0, 'out': 1.0, 'taking': 1.0, 'loves': 1.0, 'room': 1.0, 'brightens': 1.0, 'pieces': 1.0, 'also': 1.0, 'doesnt': 1.0, 'head': 1.0, 'her': 1.0, 'the': 2.0, 'my': 1.0, 'at': 1.0, 'who': 1.0, 'for': 1.0, 'time': 1.0, 'it': 2.0, 'this': 1.0, 'got': 1.0, 'so': 1.0, 'i': 2.0, 'daughter': 1.0, 'when': 1.0, 'learning': 1.0, 'hurt': 1.0, 'soft': 1.0, 'mention': 1.0, 'she': 2.0, 'really': 1.0, 'was': 1.0, 'to': 2.0, 'its': 2.0, 'rolls': 1.0, 'on': 1.0, 'crawl': 1.0, 'over': 1.0}
Word element => {'up': 1.0, 'playroom': 1.0, 'filling': 1.0, 'on': 1.0, 'floor': 1.0, 'a': 1.0, 'them': 1.0, 'planning': 1.0, 'with': 1.0, 'this': 2.0, 'loves': 1.0, 'the': 2.0, 't': 1.0, 'i': 2.0, 'old': 1.0, 'mat': 1.0, 'year': 1.0, 'wish': 1.0, 'two': 1.0, 'letters': 1.0, 'removable': 1.0, 'and': 1.0, 'my': 1.0, 'numbers': 1.0, 'hit': 1.0, 'weren': 1.0, 'overall': 1.0, 'm': 1.0, 'is': 1.0}
Word element => {'easily': 1.0, 'off': 1.0, 'rip': 1.0, 'kids': 1.0, 'tiles': 1.0, 'the': 1.0, 'interlocking': 1.0, 'technique': 1.0, 'a': 1.0, 'comes': 1.0, 'company': 1.0, 'wood': 1.0, 'cushioning': 1.0, 'floor': 1.0, 'grips': 1.0, 'have': 1.0, 'provides': 1.0, 'we': 1.0, 'enough': 1.0, 'tile': 1.0, 'reasonable': 1.0, 'both': 1.0, 'with': 1.0, 'hard': 1.0, 'durable': 1.0, 'it': 1.0, 'and': 3.0, 'perfectly': 1.0, 'on': 1.0, 'up': 1.0, 'of': 2.0, 'i': 1.0, 'would': 1.0, 'them': 2.0, 'appreciate': 1.0, 'better': 1.0, 'if': 1.0}
Word element => {'happy': 1.0, 'are': 2.0, 'just': 1.0, 'having': 1.0, 'typical': 1.0, 'table': 1.0, 'room': 1.0, 'shape': 1.0, 'so': 1.0, 'square': 1.0, 'puzzle': 1.0, 'considering': 1.0, 'its': 1.0, 'etc': 1.0, 'i': 1.0, 'house': 1.0, 'make': 1.0, 'put': 1.0, 'pieces': 1.0, 'were': 1.0, 'several': 1.0, 'no': 1.0, 'have': 1.0, 'able': 1.0, 'extra': 1.0, 'since': 1.0, 'changing': 1.0, 'that': 1.0, 'been': 1.0, 'give': 1.0, 'very': 1.0, 'little': 1.0, 'could': 1.0, 'we': 5.0, 'a': 3.0, 's': 1.0, 'my': 1.0, 'in': 1.0, 'perfect': 1.0, 'challenge': 1.0, 'daughter': 1.0, 'more': 1.0, 'around': 1.0, 'is': 1.0, 'instead': 1.0, 'crawling': 1.0, 'course': 1.0, 'carpeting': 1.0, 'our': 1.0, 'to': 3.0, '9': 1.0, 'but': 1.0, 'sitting': 1.0, 'month': 1.0, 'it': 1.0, 'practice': 1.0, 'old': 1.0, 'buying': 1.0, 'cushioning': 1.0, 'crawl': 1.0, 'over': 1.0, 'learning': 1.0, 'these': 1.0, 'the': 3.0, 'mats': 1.0, 'fit': 1.0, 'love': 1.0, 'for': 2.0, 'her': 3.0, 'perfectly': 1.0, 'down': 1.0, 'bedroom': 1.0, 'them': 1.0, 'wood': 1.0, 'floor': 1.0, 'and': 3.0, 'of': 2.0}
Word element => {'plastic': 1.0, 'only': 1.0, 'perfectly': 1.0, 'it': 4.0, 'hard': 1.0, 'this': 2.0, 'wood': 1.0, 'have': 1.0, 'since': 1.0, 'we': 1.0, 'a': 3.0, 'was': 4.0, 'had': 1.0, 'does': 1.0, 'i': 3.0, 'crawl': 1.0, 'on': 1.0, 'looking': 1.0, 'love': 1.0, 'for': 3.0, 'purchasing': 1.0, 'son': 1.0, 'to': 2.0, 'as': 3.0, 'open': 2.0, 'mat': 1.0, 'item': 1.0, 'will': 1.0, 'an': 1.0, 'work': 1.0, 'but': 1.0, 'new': 1.0, 'would': 1.0, 'him': 1.0, 'my': 1.0, 'plus': 1.0, '34': 2.0, 'of': 1.0, 'double': 1.0, 'encased': 1.0, 'educational': 1.0, 'tool': 1.0, 'admit': 1.0, 'flooring': 1.0, 'little': 2.0, 'leary': 1.0, 'the': 3.0, 'said': 1.0, 'condtion': 1.0, 'that': 3.0, 'box': 1.0, 'brand': 1.0}
Word element => {'18': 1.0, 'sell': 1.0, 'however': 1.0, 'floors': 1.0, 'they': 1.0, 'hardwood': 1.0, 'ross': 1.0, 'started': 1.0, 'my': 1.0, 'she': 1.0, 'little': 1.0, 'at': 1.0, 'once': 1.0, 'i': 2.0, 'one': 1.0, 'for': 2.0, 'mat': 1.0, 'mobile': 1.0, 'discovered': 1.0, 'getting': 1.0, 'this': 2.0, 'it': 1.0, '99': 1.0, 'more': 1.0, 'great': 1.0, 'protection': 1.0, 's': 1.0, 'a': 1.0, 'got': 1.0, 'layer': 1.0, 'set': 1.0, 'of': 1.0, 'over': 1.0, 'that': 1.0, 'our': 1.0}
Word element => {'than': 1.0, 'trouble': 1.0, 'seems': 1.0, 'just': 1.0, 'room': 1.0, 'but': 1.0, 'letters': 1.0, 'mat': 1.0, 'son': 1.0, 'worth': 1.0, 'tile': 1.0, 'expecting': 1.0, 'was': 2.0, 'guess': 1.0, 'i': 5.0, 'tried': 1.0, 'the': 4.0, 'this': 1.0, 'used': 1.0, 'puzzle': 1.0, 'it': 3.0, 'attention': 1.0, 'whole': 1.0, 'including': 1.0, 'should': 1.0, 'describe': 1.0, 'of': 1.0, 'up': 1.0, 'paid': 1.0, 'for': 2.0, 'product': 1.0, 'floor': 1.0, 'more': 1.0, 'completely': 1.0, 'fall': 1.0, 'apart': 1.0, 'pieces': 1.0, 'that': 1.0, 'into': 1.0, 'have': 1.0, 'small': 1.0, 'as': 2.0, 'to': 4.0, 'word': 1.0, 'insides': 1.0, 'every': 1.0, 'use': 1.0, 'time': 1.0, 'wasn': 1.0, 'lifting': 1.0, 's': 2.0, 't': 1.0, 'a': 2.0, 'going': 1.0, 'cover': 1.0, 'my': 1.0}
Word element => {'was': 1.0, 'just': 1.0, 'like': 1.0, 'do': 1.0, 'bc': 1.0, 'product': 1.0, 'stars': 1.0, 'overall': 1.0, 'square': 1.0, 'that': 1.0, 'pieces': 1.0, 'out': 1.0, 'them': 1.0, 'better': 1.0, 'in': 1.0, 'also': 1.0, 'padding': 1.0, 'more': 1.0, 'is': 1.0, 'my': 2.0, 'the': 3.0, 'and': 6.0, 'give': 1.0, 'me': 1.0, 'but': 1.0, 'room': 1.0, 'very': 1.0, 'versatile': 1.0, 'have': 1.0, 'pick': 1.0, 'all': 1.0, 'to': 3.0, 'matting': 2.0, 'feel': 1.0, 'already': 1.0, 'has': 1.0, 'learned': 1.0, '4': 1.0, 'i': 4.0, 'extra': 1.0, 'buy': 1.0, 'makes': 1.0, 'old': 1.0, 'easily': 2.0, 'again': 1.0, 'would': 1.0, 's': 1.0, 'could': 1.0, 'a': 1.0, 'thicker': 2.0, 'one': 1.0, 'son': 2.0, 'gets': 2.0, 'durable': 1.0, 'indents': 1.0, 'wish': 1.0, 'this': 3.0, 'nicks': 1.0, 'scratches': 1.0, 'apart': 1.0, 'if': 1.0, '10': 1.0, 'colorful': 1.0, 'it': 2.0, 'month': 1.0, 'take': 2.0, 'how': 1.0}
Word element => {'play': 1.0, 'kids': 1.0, 'for': 1.0, 'area': 1.0, 'soft': 1.0, 'in': 1.0, 'planning': 1.0, 'a': 1.0, 'floor': 1.0, 'be': 1.0, 'to': 2.0, 'can': 1.0, 'configured': 1.0, 'cleans': 1.0, 'another': 1.0, 'setup': 1.0, 'several': 1.0, 'easily': 1.0, 'protects': 1.0, 'they': 1.0, 'buy': 1.0, 'combinations': 1.0, 'while': 1.0, 'different': 1.0, 'and': 1.0, 'the': 2.0, 'easy': 1.0, 'providing': 1.0}
Word element => {'but': 1.0, 'in': 1.0, 'apart': 1.0, 'once': 1.0, 'assemble': 1.0, 'colors': 1.0, 'exploring': 1.0, 'shapes': 1.0, 'really': 1.0, 'so': 1.0, 'alphabets': 1.0, 'the': 2.0, 'around': 1.0, 'toys': 1.0, 'a': 2.0, 'since': 1.0, 'and': 3.0, 'purchase': 1.0, 'playmat': 1.0, 'little': 2.0, 'she': 2.0, 'good': 1.0, 'off': 1.0, 'loves': 2.0, 'difficult': 1.0, 'just': 1.0, 'old': 1.0, 'to': 2.0, 'month': 1.0, 'likes': 1.0, 'all': 3.0, '8': 1.0, 'play': 1.0, 'we': 1.0, 'ever': 1.0, 're': 1.0, 'numbers': 1.0, 'my': 1.0, 'bought': 1.0, 'her': 1.0, 'crawl': 1.0, 'on': 1.0, 'taken': 1.0, 'come': 1.0, 'this': 1.0, 'it': 2.0, 'with': 1.0}
Word element => {'cost': 1.0, 'e': 1.0, 'no': 1.0, 'at': 1.0, 'for': 1.0, 'same': 2.0, 'seen': 1.0, 'have': 1.0, 'i': 2.0, 'thick': 1.0, 'pieces': 1.0, 'is': 1.0, 'almost': 1.0, 'good': 1.0, 'fit': 1.0, 'play': 1.0, 'exactly': 2.0, 'mat': 3.0, 'the': 4.0, 'price': 1.0, 'colors': 1.0, 'our': 1.0, 'very': 1.0, 'as': 1.0, 'shipping': 2.0, 'kids': 1.0, 'expensive': 1.0, 'w': 1.0, 'sale': 1.0, 'advertised': 1.0, 'it': 1.0, 'local': 1.0, 'bright': 1.0, 'a': 2.0, 'store': 1.0, 'lot': 1.0, 'quality': 1.0, 'but': 1.0, 'was': 1.0}
Word element => {'their': 1.0, 'mats': 2.0, 'order': 1.0, 'know': 1.0, 'which': 1.0, 'hahai': 1.0, 'easy': 1.0, 'cleans': 1.0, 'up': 1.0, 'over': 2.0, 'knocked': 1.0, 'gets': 1.0, 'he': 1.0, 'toys': 1.0, 'some': 1.0, 'learning': 1.0, 'so': 2.0, 'floors': 1.0, 'are': 1.0, 'without': 1.0, 'the': 1.0, 'falls': 1.0, 'have': 2.0, 'likes': 1.0, 'old': 1.0, 'also': 1.0, 'europe': 1.0, 'odered': 1.0, 'in': 2.0, 'if': 1.0, 'apart': 1.0, 'or': 1.0, 'tile': 1.0, 'down': 1.0, 'kids': 1.0, 'this': 2.0, 'crawl': 1.0, 'with': 3.0, 'it': 3.0, 'them': 1.0, 'baby': 2.0, 'because': 1.0, 'not': 1.0, 'might': 1.0, 'a': 2.0, 'we': 2.0, 'all': 2.0, 'to': 3.0, 'now': 1.0, 'only': 1.0, 'its': 2.0, 'right': 1.0, 'live': 1.0, 'play': 1.0, 'and': 2.0, 'sons': 1.0, 'both': 1.0, 'fun': 1.0, 'i': 2.0, 'two': 1.0, 'mat': 1.0, 'more': 1.0, 'is': 2.0, 'side': 1.0, 'that': 2.0, 'for': 2.0, 'rooms': 1.0, 'my': 2.0, 'his': 1.0, 'awesome': 1.0, 'year': 1.0, 'mostly': 1.0, 'pretty': 1.0, 'safe': 1.0, 'take': 1.0, 'letters': 1.0, 'can': 1.0, 'but': 1.0, 'nice': 2.0}
Word element => {'recommend': 1.0, 'highly': 1.0, 'hottest': 1.0, 'gets': 1.0, 'which': 1.0, 'door': 1.0, 'of': 1.0, 'glass': 1.0, 'mount': 1.0, 'practical': 1.0, 'screen': 1.0, 'not': 1.0, 'but': 1.0, 'perfectly': 1.0, 'site': 1.0, 'they': 1.0, 'product': 1.0, 'com': 1.0, 'covers': 1.0, 'it': 2.0, 'only': 1.0, 'i': 5.0, 'have': 2.0, 'uk': 1.0, 'part': 1.0, 'from': 1.0, 'my': 2.0, 'sooooo': 1.0, 'sorry': 1.0, 'now': 1.0, 'to': 5.0, 'look': 1.0, 'the': 8.0, 'easy': 1.0, 'stove': 2.0, 'on': 2.0, 'discover': 1.0, 'interesting': 1.0, 'iy': 1.0, 'am': 1.0, 'when': 1.0, 'very': 1.0, 'little': 1.0, 'bought': 1.0, 'lively': 1.0, 'one': 1.0, 'more': 1.0, 'say': 1.0, 'is': 5.0, 'herself': 1.0, 'obviously': 1.0, 'pretty': 1.0, 'totally': 1.0, 'that': 2.0, 'loves': 1.0, 'who': 1.0, 'at': 1.0, 'this': 3.0, 'perfect': 2.0, 'absolutely': 1.0, 'mirror': 1.0, 'and': 3.0, 'a': 1.0, 'height': 1.0, 'her': 1.0, 'in': 1.0, 'turn': 1.0, 'light': 1.0}
Word element => {'hassle': 1.0, 'much': 1.0, 'too': 1.0, 'standard': 1.0, 'buying': 1.0, 'ended': 1.0, 'like': 1.0, 'few': 1.0, 'very': 1.0, 'up': 1.0, 'there': 1.0, 'that': 1.0, 'but': 2.0, 'idea': 1.0, 'the': 2.0, 'great': 1.0, 'are': 1.0, 'a': 2.0, 'regular': 1.0, 'is': 1.0, 'leg': 1.0, 'product': 2.0, 'have': 1.0, 'stores': 1.0, 'enough': 1.0, 'child': 1.0, 'openings': 2.0, 'one': 2.0, 'for': 2.0, 'with': 2.0, 'this': 1.0, 'children': 1.0, 'carts': 1.0, 'two': 2.0, 'i': 1.0}
Word element => {'hope': 1.0, 'purchase': 1.0, 'my': 1.0, 'with': 1.0, 'happy': 1.0, 'overall': 1.0, 'trunk': 1.0, 'key': 1.0, 'drink': 1.0, 'isn': 1.0, 'be': 1.0, 'would': 1.0, 'thought': 1.0, 'bulky': 1.0, 'not': 1.0, 'heavy': 1.0, 'manageable': 1.0, 'but': 2.0, 'and': 3.0, 'couldn': 1.0, 'only': 1.0, 'do': 1.0, 'downside': 1.0, 'squeeze': 1.0, 'triplets': 1.0, 'as': 2.0, 'to': 7.0, 'was': 1.0, 'it': 3.0, 'month': 1.0, 'amazing': 1.0, 'single': 1.0, 'is': 6.0, 'old': 1.0, 'price': 2.0, 'm': 2.0, 'glad': 1.0, 'stroller': 3.0, 'an': 1.0, 'finally': 1.0, 'great': 1.0, 'the': 4.0, 'found': 1.0, 'this': 3.0, 'mommy': 1.0, 'or': 1.0, 'for': 1.0, 'seem': 1.0, 'manuever': 1.0, 'am': 1.0, 'you': 1.0, 'into': 1.0, 'that': 2.0, 'area': 1.0, 'get': 2.0, 'easy': 2.0, 'manage': 1.0, 'in': 1.0, '14': 1.0, 'find': 1.0, 'having': 1.0, 'decent': 1.0, 'range': 1.0, 'from': 1.0, 'helps': 1.0, 'there': 1.0, 'workout': 1.0, 'i': 6.0, 'handbrake': 1.0, 'wheels': 1.0, 'make': 1.0, 'a': 5.0, 't': 2.0, 'go': 1.0}
Word element => {'heavy': 1.0, 'so': 1.0, 'are': 1.0, 'ordeal': 1.0, 'older': 1.0, 'set': 1.0, 'adopting': 1.0, 'life': 1.0, 'does': 1.0, 'brother': 1.0, 'for': 1.0, 'product': 1.0, 'daughter': 1.0, 'pull': 1.0, 'examine': 1.0, 'my': 2.0, 'appropriate': 1.0, 'be': 1.0, 'expect': 1.0, 'kind': 1.0, 'their': 1.0, 'invest': 1.0, 'is': 2.0, 'around': 1.0, 'money': 1.0, 'work': 1.0, 'restraint': 1.0, 'dr': 1.0, 'make': 1.0, 'put': 1.0, 'back': 1.0, 'an': 1.0, 'own': 1.0, 'finally': 1.0, 'wanted': 2.0, 'was': 2.0, 'old': 1.0, 'order': 1.0, 'took': 1.0, 'year': 1.0, 'office': 1.0, 'twins': 1.0, 'you': 3.0, 'when': 2.0, '11': 2.0, 'babies': 1.0, 'into': 1.0, 'box': 5.0, 'like': 1.0, 'seats': 1.0, 'however': 1.0, 'intact': 1.0, 'immediately': 1.0, 'of': 6.0, 'the': 11.0, 'out': 3.0, 'soon': 1.0, 'advise': 1.0, 'play': 1.0, 'and': 3.0, 'with': 3.0, 'it': 4.0, 'looked': 1.0, 'course': 1.0, 'longer': 1.0, 'figure': 1.0, 'all': 1.0, 'as': 2.0, 'our': 1.0, 'to': 5.0, 'center': 1.0, 'straps': 1.0, 'them': 1.0, 'send': 1.0, 'were': 2.0, 'car': 1.0, 'mo': 1.0, 'cut': 2.0, 'in': 2.0, 'easier': 1.0, 'half': 1.0, 'they': 1.0, 'going': 1.0, 'we': 4.0, 'a': 3.0, 'who': 2.0, 'lot': 1.0, 'since': 1.0, 'stroller': 2.0, 'cutter': 1.0, 'whole': 1.0, 'no': 1.0, 'triple': 1.0, 'did': 2.0, 'not': 1.0, 'this': 2.0, 'attempt': 1.0}
Word element => {'are': 1.0, 'and': 1.0, 'parts': 1.0, 'now': 1.0, 'still': 1.0, 'right': 1.0, 'working': 1.0, 'have': 1.0, 'what': 1.0, 'enjoy': 1.0, 'so': 2.0, 'reviews': 1.0, 'a': 1.0, 'attached': 1.0, 'lot': 1.0, 'good': 1.0, 'of': 1.0, 'all': 1.0, 'far': 1.0, 'but': 1.0, 'heard': 1.0, 'bad': 1.0, 'i': 2.0}
Word element => {'garage': 1.0, 'one': 1.0, 'stroller': 1.0, 'so': 1.0, 'tone': 1.0, 'but': 1.0, 'door': 1.0, 'side': 1.0, 'through': 1.0, 'thing': 1.0, 'load': 1.0, 'tahoe': 1.0, 'chevy': 1.0, 'leaving': 1.0, 'an': 1.0, 'because': 1.0, 'if': 1.0, 'like': 1.0, 'know': 1.0, 'up': 1.0, 'don': 1.0, 'second': 1.0, 'touch': 1.0, 'even': 1.0, 'handle': 1.0, 'fold': 1.0, 'of': 3.0, 'easy': 1.0, 'very': 1.0, 'read': 1.0, 'lot': 1.0, 'felt': 1.0, 'it': 7.0, 'drive': 1.0, 'this': 4.0, 'buying': 2.0, 'to': 3.0, 'is': 3.0, 'brake': 1.0, 'people': 1.0, 'that': 3.0, 'experience': 1.0, 'had': 2.0, 'thought': 1.0, 'i': 6.0, 'the': 5.0, 'first': 1.0, 'heavy': 2.0, 'review': 2.0, 'some': 2.0, 'let': 1.0, 'apply': 1.0, 'before': 1.0, 'end': 1.0, 'sand': 1.0, 'product': 2.0, 'and': 6.0, 'not': 2.0, 'me': 2.0, 'tell': 1.0, 'you': 2.0, 'was': 3.0, 'doesn': 1.0, 'in': 1.0, '8217': 2.0, 'close': 1.0, 'wife': 1.0, 'properly': 1.0, 'on': 1.0, 'weight': 1.0, 'less': 1.0, 'force': 1.0, 'another': 1.0, 'my': 1.0, 'we': 1.0, 't': 2.0, 'going': 1.0, 'a': 2.0, 'wont': 1.0}
Word element => {'grown': 1.0, 'out': 1.0, 'they': 1.0, 'now': 1.0, 'price': 1.0, 'very': 1.0, 'easy': 1.0, 'handle': 1.0, 'lock': 1.0, 'the': 4.0, 'also': 1.0, 'wagon': 1.0, 'caravan': 1.0, 'dodge': 1.0, 'radio': 1.0, 'a': 2.0, 'flyer': 1.0, 'over': 1.0, 'stroller': 1.0, 'to': 2.0, 'brakes': 1.0, 'all': 3.0, 'automatically': 1.0, 'anti': 1.0, 'have': 3.0, 'looking': 1.0, 'would': 1.0, 'was': 4.0, 'not': 1.0, 'old': 1.0, 'feature': 1.0, 'i': 4.0, 'you': 1.0, 'when': 1.0, 'twins': 1.0, 'walk': 1.0, 'that': 1.0, '2yr': 1.0, 'moved': 1.0, 'and': 4.0, 'special': 1.0, 'triple': 2.0, 'on': 1.0, '3': 1.0, 'wink': 1.0, 'compacted': 1.0, 'needs': 1.0, 'in': 1.0, 'product': 1.0, 'assemble': 1.0, 'for': 2.0, 'one': 1.0, 'daughter': 1.0, 'considering': 1.0, 'does': 1.0, 'what': 1.0, 'down': 1.0, 'applies': 1.0, 'accommodate': 1.0, 'like': 2.0, 'at': 1.0, 'who': 1.0, 'three': 1.0, 'of': 2.0, 'just': 1.0, 'l': 1.0, 'fairly': 1.0, 'them': 1.0, 'my': 1.0, 'fits': 1.0, 'nice': 1.0, 'until': 1.0, 'release': 1.0, 'perfect': 1.0, 'found': 1.0, 'this': 1.0, 'it': 6.0, 'most': 1.0, 'nicely': 2.0, 'has': 1.0, 'seats': 1.0}
Word element => {'complete': 1.0, 'helping': 1.0, 'thanks': 1.0, 'use': 1.0, 'ready': 1.0, 'is': 1.0, 's': 1.0, 'baby': 1.0, 'go': 1.0, 'made': 1.0, 'sheet': 1.0, 'looking': 1.0, 'the': 3.0, 'my': 1.0, 'find': 1.0, 'been': 2.0, 'now': 1.0, 'to': 2.0, 'had': 2.0, 'soup': 1.0, 'us': 1.0, 'daughter': 1.0, 'we': 1.0, 'alphabet': 1.0, 'up': 1.0, 'set': 2.0, 'bed': 1.0, 'lucky': 1.0, 'for': 3.0, 'given': 1.0, 'matching': 1.0, 'and': 2.0, 'were': 1.0, 'with': 1.0, 'it': 1.0, 'here': 1.0, 'enough': 1.0}
Word element => {'hold': 1.0, 'don': 1.0, 'u': 1.0, 'very': 1.0, 'push': 1.0, 'smooth': 1.0, 'needs': 1.0, 't': 1.0, 'the': 1.0, 'break': 1.0, 'is': 1.0, 'on': 2.0, 'love': 1.0, 'only': 1.0, 'it': 3.0, 'i': 1.0, 'complaint': 1.0, 'top': 1.0, 'have': 2.0, 'something': 1.0, 'own': 1.0, 'keep': 1.0, 'pulled': 1.0, 'back': 1.0, 'to': 4.0, 'its': 1.0, 'so': 1.0}
Word element => {'durable': 1.0, 'more': 1.0, 'far': 1.0, 'needed': 1.0, 's': 2.0, 'walking': 1.0, 'where': 1.0, 'hills': 1.0, 'any': 1.0, 't': 2.0, 'don': 2.0, 'baby': 1.0, 'couple': 1.0, 'automatic': 1.0, 'also': 1.0, 'higher': 1.0, 'toy': 1.0, 'used': 1.0, 'move': 1.0, 'can': 1.0, 'so': 3.0, 'adjustable': 1.0, '100': 1.0, 'extra': 1.0, 'foundations': 1.0, 'low': 1.0, 'very': 1.0, 'not': 2.0, 'because': 1.0, 'that': 3.0, 'keep': 1.0, 'did': 2.0, 'a': 5.0, 'out': 2.0, 'next': 1.0, 'them': 2.0, 'before': 1.0, 'around': 1.0, 'handle': 1.0, 'is': 3.0, 'triple': 1.0, 'holds': 1.0, 'take': 2.0, 'tandem': 1.0, 'twin': 1.0, 'spent': 1.0, 'knew': 1.0, 'was': 2.0, 'had': 1.0, 'summer': 3.0, 'want': 2.0, 'it': 9.0, 'this': 3.0, 'kids': 1.0, 'all': 2.0, 'links': 1.0, 'other': 2.0, 'working': 1.0, 'boys': 1.0, 'breaks': 1.0, 'when': 1.0, 'push': 1.0, 'as': 1.0, 'heavy': 1.0, '2': 1.0, 'currently': 1.0, 'the': 10.0, 'to': 9.0, 'pretty': 1.0, 'job': 1.0, 'reach': 1.0, 'old': 2.0, 'i': 15.0, 'purchasing': 1.0, 'yr': 1.0, 'using': 1.0, 'one': 1.0, 'my': 2.0, 'reasons': 1.0, 'am': 2.0, 'last': 2.0, 'good': 1.0, 'clasped': 1.0, 'exercise': 1.0, 'get': 2.0, 'bit': 1.0, 'easy': 1.0, 'sure': 1.0, 'if': 1.0, 'turn': 1.0, 'turning': 2.0, 'seat': 1.0, 'nieces': 1.0, 'in': 2.0, 'but': 4.0, 'corners': 2.0, '3': 1.0, '4mos': 1.0, 'quad': 2.0, 'will': 3.0, 'stroller': 5.0, 'how': 1.0, 'creak': 1.0, 'front': 1.0, 'two': 1.0, 'little': 2.0, 'while': 1.0, 'although': 1.0, 'step': 1.0, 'does': 1.0, 'have': 5.0, 'radius': 1.0, 'should': 3.0, 'up': 3.0, 'and': 5.0, '50': 2.0, 'go': 1.0, 'wobble': 1.0, 'lb': 3.0, 'doubt': 1.0, 'each': 2.0, '2yrs': 1.0, 'for': 2.0, 'think': 3.0, 'durability': 1.0, 'average': 1.0, '25': 1.0, 'be': 1.0, 'pushing': 1.0, 'sturdy': 1.0, 'they': 1.0, '40': 1.0, 'see': 1.0, 'seems': 1.0, 'tried': 1.0, 'off': 1.0, 'canopy': 1.0}
Word element => {'back': 1.0, 'way': 1.0, '6': 1.0, 'younger': 1.0, 'suggest': 1.0, 'not': 2.0, 'does': 1.0, 'then': 2.0, 'other': 1.0, 'do': 1.0, 'its': 1.0, 'wheel': 1.0, 'months': 1.0, 'one': 1.0, 'against': 1.0, 'down': 1.0, 'break': 1.0, 'few': 1.0, 'job': 1.0, 'the': 6.0, 'infants': 1.0, 'placing': 1.0, 'enjoys': 1.0, 'trying': 1.0, 'two': 1.0, 'i': 2.0, 'rubs': 1.0, 'a': 4.0, 'that': 2.0, 'their': 1.0, 'fits': 1.0, 'family': 1.0, 'are': 1.0, 'of': 1.0, 'there': 1.0, 'set': 1.0, 'breaks': 1.0, 'child': 2.0, 'up': 1.0, 'in': 3.0, 'age': 1.0, 'comfortably': 1.0, 'has': 1.0, 'and': 2.0, 'get': 1.0, 'would': 1.0, 'position': 1.0, 'each': 1.0, 'provider': 1.0, 'daycare': 1.0, 'under': 1.0, 'seats': 2.0, 'ride': 1.0, 'all': 1.0, 'to': 2.0, 'recline': 1.0, 'this': 2.0, 'stuck': 1.0, 'heavy': 1.0, 'first': 1.0, 'backs': 1.0, 'it': 4.0, 'stroller': 3.0, 'is': 2.0, 'really': 1.0, 'am': 1.0, 'folded': 1.0, 'when': 2.0, 'four': 1.0, 'can': 1.0, 'locked': 1.0}
Word element => {'returning': 1.0, 'say': 1.0, 'needless': 1.0, 'out': 1.0, 'are': 1.0, 'way': 1.0, 'all': 2.0, 'don': 1.0, 'seats': 3.0, 'strong': 1.0, 'on': 1.0, 'put': 1.0, 'down': 1.0, 'also': 1.0, 'lift': 1.0, 'am': 1.0, 'butts': 1.0, 'including': 1.0, 'barely': 1.0, 'twins': 2.0, 'could': 2.0, 'a': 3.0, 'so': 2.0, 'via': 1.0, 'take': 1.0, 'delivered': 1.0, 'front': 2.0, 'use': 1.0, 'hit': 1.0, 'shallow': 1.0, 'abf': 1.0, 'very': 3.0, 'big': 1.0, 'kids': 1.0, 'shipping': 1.0, 'and': 6.0, 'guy': 1.0, 'delivery': 1.0, 'he': 1.0, 'month': 1.0, 'this': 2.0, 'it': 9.0, 'recline': 1.0, 'back': 1.0, 'rear': 1.0, 'is': 5.0, '2': 3.0, 'but': 2.0, 'heavy': 2.0, 'above': 1.0, 'the': 13.0, 'my': 3.0, 'b': 1.0, 'was': 2.0, 'carry': 1.0, 'freight': 1.0, 'into': 2.0, 'husband': 1.0, 'babies': 1.0, 'heads': 1.0, 'that': 1.0, 'been': 2.0, 'our': 1.0, 'struggling': 1.0, 'stroller': 2.0, 'year': 2.0, 'sturdy': 1.0, 'driver': 1.0, 'fabrics': 1.0, 'olds': 1.0, 'didn': 1.0, 'extremely': 1.0, 'wouldn': 1.0, 't': 3.0, 'fit': 1.0, 'for': 2.0, 'canopy': 1.0, 'carrier': 1.0, 'quite': 1.0, 'low': 1.0, 'were': 1.0, 'their': 1.0, 'i': 7.0, 'bought': 1.0, 'c': 1.0, 'house': 1.0, 'both': 1.0, 'have': 3.0, 'old': 2.0, 'to': 4.0, 'hoping': 1.0, 'in': 3.0, 'said': 1.0, 'toddlers': 1.0, 'like': 1.0, 'inadequate': 1.0, 'would': 1.0, 'only': 1.0, 'able': 2.0, 'walks': 1.0, 'neighborhood': 1.0, 'get': 1.0, 'truck': 1.0}
Word element => {'made': 1.0, 'glad': 1.0, 'so': 1.0, 'them': 1.0, 'pin': 1.0, 'difficult': 1.0, 'not': 1.0, 'but': 1.0, 'wheels': 1.0, 'drag': 1.0, 'indeed': 1.0, 'do': 1.0, 'basket': 1.0, 'in': 1.0, 'items': 1.0, 'on': 1.0, 'put': 1.0, 'you': 1.0, 'absolutely': 1.0, 'higher': 1.0, 'it': 2.0, 'children': 1.0, 'yes': 1.0, 'they': 1.0, 'reviews': 1.0, 'child': 1.0, 'an': 1.0, 'ideal': 1.0, 'for': 2.0, 'heavy': 1.0, 'the': 9.0, 'neighborhood': 1.0, 'little': 1.0, 'very': 1.0, 'however': 1.0, 'wear': 1.0, 'many': 2.0, 'of': 2.0, 'purchase': 1.0, 'family': 1.0, 'my': 1.0, 'piece': 1.0, 'purposes': 1.0, 'care': 1.0, 'echoing': 1.0, 'other': 1.0, 'solution': 1.0, 'store': 1.0, 'walking': 1.0, 'a': 1.0, 's': 1.0, 'going': 1.0, 'is': 2.0, 'around': 1.0, 'to': 4.0, 'grocery': 1.0, 'also': 1.0, 'heading': 1.0, 'park': 1.0, 'i': 2.0, 'removed': 1.0, 'front': 1.0, 'this': 2.0, 'hats': 1.0, 'canopy': 1.0, 'just': 2.0, 'have': 1.0, 'too': 1.0, 'and': 2.0, 'block': 1.0, 'sun': 1.0, 'if': 1.0}
Word element => {'send': 1.0, 'and': 1.0, 'simple': 1.0, 'did': 1.0, 'us': 1.0, 'kids': 1.0, 'quick': 1.0, 'it': 1.0, 'with': 1.0, 'product': 1.0, 'was': 1.0, 'to': 2.0, 'solid': 1.0, 'want': 1.0, 'a': 1.0, 'good': 1.0, 'company': 1.0, 'in': 1.0, 'the': 3.0, 'have': 1.0, 'ride': 1.0, 'order': 1.0, 'love': 1.0, 'directions': 1.0, 'for': 1.0, 'missing': 1.0, 'part': 2.0, 'but': 1.0}
Word element => {'quite': 1.0, 'upright': 1.0, 'didn': 2.0, 'arrival': 1.0, 'upon': 1.0, 'be': 1.0, 'should': 1.0, 'something': 1.0, 'reclined': 1.0, 'allow': 1.0, 'ours': 1.0, 'by': 1.0, 'note': 1.0, 'technical': 1.0, 'more': 1.0, 'time': 2.0, 'two': 2.0, 'are': 2.0, 'there': 1.0, 'parks': 1.0, 'often': 1.0, 'chips': 1.0, 'infants': 1.0, 'bark': 1.0, 'larger': 1.0, 'okay': 1.0, 'does': 1.0, 'gravel': 1.0, 'mud': 1.0, 'stuck': 1.0, 'gets': 1.0, 'sinks': 1.0, 'trails': 1.0, 'long': 1.0, 'on': 4.0, 'checked': 1.0, 'harder': 1.0, 'heavier': 1.0, 'places': 1.0, 'between': 1.0, 'carry': 1.0, 'assemble': 1.0, 'fully': 1.0, 'room': 1.0, 'have': 1.0, 'lighter': 1.0, 'in': 5.0, 'seat': 1.0, 'to': 7.0, 'least': 1.0, 'car': 1.0, 'infant': 1.0, 'must': 1.0, 'passenger': 1.0, 'olds': 1.0, 'even': 1.0, 'doorways': 1.0, 'i': 1.0, 'well': 2.0, 'buddy': 1.0, 'easier': 1.0, 'a': 7.0, 'take': 1.0, 'moving': 1.0, 'we': 5.0, 'for': 4.0, 't': 4.0, 'fit': 2.0, 'using': 2.0, 'like': 1.0, 'real': 1.0, 'through': 1.0, 'and': 10.0, 'folds': 1.0, 'kids': 3.0, 'this': 2.0, 'release': 1.0, 'duty': 1.0, 'stroller': 1.0, 'ford': 1.0, 'out': 2.0, 'an': 1.0, 'fits': 2.0, 'toddler': 1.0, 'year': 1.0, 'kick': 1.0, 'van': 2.0, 'positives': 1.0, 'sitting': 2.0, 'wheels': 1.0, 'most': 1.0, 'back': 4.0, 'snugly': 1.0, 'them': 2.0, 'next': 2.0, 'easily': 1.0, 'because': 2.0, 'that': 2.0, 'riding': 1.0, 'three': 1.0, 'into': 2.0, 'sets': 1.0, 'it': 15.0, 'also': 2.0, 'automatic': 1.0, 'some': 1.0, 'braking': 1.0, 'system': 1.0, 'probably': 1.0, 'whenever': 1.0, 'you': 2.0, 'when': 2.0, 'folded': 1.0, 'less': 1.0, 'up': 3.0, 'buckles': 2.0, 'don': 2.0, 'seats': 3.0, 'just': 1.0, '12': 1.0, 'as': 4.0, 'awkward': 1.0, 'heavy': 2.0, 'get': 2.0, 'negatives': 1.0, 'use': 1.0, 'much': 1.0, 'too': 1.0, 'held': 1.0, 'one': 3.0, 'try': 2.0, 'tight': 1.0, 'either': 1.0, 'would': 1.0, 'position': 3.0, 'still': 1.0, 'turn': 1.0, 'enjoy': 1.0, 'if': 1.0, 'were': 2.0, 'need': 1.0, 'or': 4.0, 'found': 1.0, 'bit': 1.0, 'can': 1.0, 'so': 2.0, 'meet': 1.0, 'unpaved': 1.0, 'at': 3.0, 'handle': 1.0, 'is': 6.0, 'very': 1.0, 'the': 17.0, 'of': 6.0, 'person': 1.0, 'ends': 1.0, 'pick': 1.0, 'permanently': 1.0, 'activates': 1.0, 'load': 1.0}
Word element => {'seater': 1.0, '4': 1.0, 's': 1.0, 'that': 1.0, 'not': 1.0, 'easy': 1.0, 'very': 1.0, 'assembly': 1.0, 'so': 1.0, 'myself': 1.0, 'together': 1.0, 'bad': 1.0, 'able': 1.0, 'considering': 1.0, 'kids': 1.0, 'full': 1.0, 'haven': 1.0, 'it': 5.0, 'product': 1.0, 'doorways': 1.0, 'push': 1.0, 'especially': 1.0, 'through': 1.0, 'was': 1.0, 'to': 2.0, 'had': 1.0, 'of': 1.0, 'is': 2.0, 'really': 2.0, 'great': 1.0, 't': 1.0, 'chance': 1.0, 'yet': 1.0, 'put': 1.0, 'but': 1.0, 'fits': 1.0, 'i': 2.0, 'and': 1.0, 'like': 1.0, 'easily': 1.0, 'weight': 1.0, 'turns': 1.0, 'a': 2.0, 'well': 1.0}
Word element => {'outside': 1.0, 'ride': 1.0, 'four': 1.0, 'all': 1.0, 'our': 1.0, 'teacher': 1.0, 'is': 2.0, 'care': 1.0, 'to': 1.0, 'for': 2.0, 'infant': 1.0, 'stroller': 1.0, 'in': 2.0, 'perfect': 1.0, 'easy': 1.0, 'child': 1.0, 'infants': 1.0, 'the': 1.0, 'loves': 1.0, 'this': 1.0, 'it': 1.0, 'stores': 1.0, 'a': 2.0, 'closet': 1.0, 'up': 1.0, 'set': 1.0, 'and': 2.0, 'get': 1.0}
Word element => {'covers': 1.0, 'seat': 2.0, 'touches': 1.0, 'head': 1.0, 'low': 1.0, 'unfolding': 1.0, 'place': 1.0, 'in': 1.0, 'belts': 1.0, 'lock': 1.0, 'on': 1.0, 'months': 1.0, 'my': 1.0, 'for': 1.0, '8': 1.0, 'too': 1.0, 'when': 1.0, 'kids': 1.0, 'shade': 2.0, 'stroller': 2.0, 'use': 1.0, 'easy': 1.0, 'yo': 1.0, 'from': 1.0, 'if': 1.0, 'maneuvering': 1.0, 'ranging': 1.0, 'is': 1.0, 'pros': 1.0, 'had': 1.0, 'to': 3.0, 'i': 1.0, 'old': 1.0, 'the': 3.0, '2': 2.0, 'belt': 1.0, 'assemble': 1.0, 'sun': 1.0, 'good': 1.0, 'prefer': 1.0, 'two': 1.0, 'years': 1.0, 'brakescons': 1.0, 'it': 1.0, 'hard': 1.0}
Word element => {'their': 1.0, 'happy': 1.0, 'was': 1.0, 'in': 2.0, 'also': 1.0, 'perfect': 1.0, 'this': 1.0, 'come': 1.0, 'pick': 1.0, 'classy': 1.0, 'have': 1.0, 'my': 2.0, 'lightweight': 1.0, 'great': 2.0, 'hands': 1.0, 'the': 1.0, 'service': 1.0, 'pretty': 1.0, 'if': 1.0, 'when': 1.0, 'i': 5.0, 'basket': 2.0, 'just': 1.0, 'moses': 2.0, 'don': 1.0, 'up': 1.0, 'of': 1.0, 'and': 2.0, 'love': 1.0, 'for': 1.0, 'off': 1.0, 't': 1.0, 's': 4.0, 'a': 2.0, 'brand': 1.0, 'it': 9.0, 'looks': 1.0, 'as': 1.0, 'while': 1.0, 'from': 1.0, 'new': 1.0, 'with': 2.0, 'piece': 1.0, 'made': 1.0, 'baby': 1.0, 'quality': 1.0, 'had': 1.0, 'delivered': 1.0, 'no': 1.0, 'so': 3.0, 'time': 1.0}
Word element => {'that': 1.0, 'used': 1.0, 'want': 1.0, 'if': 2.0, 'many': 1.0, 'good': 1.0, 'last': 1.0, 'i': 1.0, 'little': 1.0, 'years': 1.0, 'price': 1.0, 'obvious': 1.0, 'so': 1.0, 'design': 1.0, 'color': 1.0, 'plus': 1.0, 'but': 1.0, 'shoulder': 1.0, 'carry': 1.0, 'like': 1.0, 'will': 1.0, 'secure': 1.0, 'zipper': 1.0, 'well': 1.0, 'allow': 1.0, 'not': 1.0, 'give': 1.0, 'are': 1.0, 'believe': 1.0, 'extreme': 1.0, 'the': 4.0, 'great': 2.0, 'diaper': 2.0, 'another': 1.0, 'lightweight': 1.0, 'adjustable': 1.0, 'multiple': 1.0, 'compartments': 1.0, 'mom': 2.0, 'functional': 1.0, 'this': 5.0, 'with': 1.0, 'looks': 2.0, 'it': 2.0, 'bag': 7.0, 'closure': 1.0, 'for': 3.0, 'main': 1.0, 'three': 1.0, 'toddlers': 1.0, 'is': 7.0, 'your': 1.0, 'on': 2.0, 'stuff': 1.0, 'or': 2.0, 'things': 1.0, 'mommy': 1.0, 'of': 2.0, 'enough': 1.0, 'expands': 1.0, 'room': 2.0, 'a': 7.0, 's': 1.0, 'plenty': 1.0, 'you': 4.0, 'newborn': 1.0, 'keeping': 1.0, 'out': 1.0, 'durable': 1.0, 'options': 1.0, 'as': 2.0, 'to': 3.0, 'appropriately': 1.0, 'and': 3.0, 'straps': 1.0, 'how': 1.0, 'stylish': 1.0, 'low': 1.0, 'high': 1.0}
Word element => {'strollers': 1.0, 'more': 1.0, 'probably': 1.0, 'lighter': 1.0, 'over': 1.0, 'reason': 1.0, 'protection': 1.0, 'uvb': 1.0, 'uva': 1.0, 'so': 1.0, 'we': 5.0, 'city': 3.0, 'ago': 1.0, 't': 1.0, 'choose': 1.0, 'days': 1.0, 'extra': 1.0, 'just': 1.0, 'even': 1.0, '36': 1.0, 'received': 1.0, 'offer': 1.0, 'pounds': 1.0, 'two': 2.0, 'i': 1.0, 'months': 1.0, 'color': 1.0, 'but': 2.0, 'does': 1.0, 'favoite': 1.0, 'her': 2.0, 'tag': 1.0, 'is': 4.0, 'at': 1.0, 'since': 1.0, 'maclaren': 2.0, 'loves': 1.0, 'it': 2.0, 'looks': 1.0, 'this': 3.0, 'wish': 1.0, 'test': 1.0, 'review': 1.0, 'phil': 1.0, 'was': 2.0, 'inches': 1.0, 'very': 1.0, 'chic': 1.0, 'high': 1.0, 'to': 1.0, 'and': 11.0, 'model': 1.0, 'main': 1.0, 'wide': 1.0, 'worried': 1.0, 'tall': 1.0, 'beautiful': 1.0, 'reviewwe': 1.0, '2007': 1.0, 'from': 1.0, 'four': 1.0, 'below': 1.0, 'of': 1.0, 'the': 13.0, 'xlt': 1.0, 'our': 3.0, 'stroller': 4.0, 'a': 1.0, 'added': 1.0, 'are': 1.0, 'years': 1.0, 'price': 1.0, 'street': 1.0, 'old': 1.0, 'ted': 1.0, 'double': 1.0, 'ride': 1.0, 'literally': 1.0, 'friendly': 1.0, 'move': 1.0, 'daughter': 2.0, 'previous': 1.0, 'sitting': 1.0, 'wheels': 1.0, 'still': 2.0, 'every': 1.0, 'hood': 1.0, 'bit': 1.0, 'somewhat': 1.0, 'cushion': 1.0, 'about': 1.0, 'size': 1.0, 'live': 1.0, 'seat': 1.0, 'in': 2.0, 'said': 1.0, 'ultra': 1.0, 'comfortable': 1.0, 'giggled': 1.0, 'smoothly': 1.0, 'when': 2.0, 'for': 1.0, 'because': 1.0, 'that': 2.0, 'combination': 1.0, '35': 1.0, 'pushed': 1.0, 'quickly': 1.0, 've': 1.0, 'down': 1.0, 'uneven': 1.0, 'put': 1.0, 'do': 1.0, 'list': 1.0, 'isn': 1.0}
Word element => {'cute': 1.0, 'kids': 1.0, 'fun': 1.0, 'are': 1.0, 'few': 1.0, 'but': 1.0, 'use': 2.0, 'one': 1.0, 'i': 3.0, 'think': 2.0, 't': 1.0, 'this': 2.0, 'others': 1.0, 'is': 1.0, 'a': 2.0, 'idea': 1.0, 'for': 2.0, 'great': 1.0, 'pacifiers': 1.0, 'they': 1.0, 'such': 1.0, 'haven': 1.0}
Word element => {'wubs': 1.0, 'dry': 1.0, 'let': 1.0, 'of': 1.0, 'rest': 1.0, 'with': 1.0, 'machine': 1.0, 'washing': 1.0, 'air': 1.0, 'in': 1.0, 'throw': 1.0, 'the': 6.0, 'but': 1.0, 'laundry': 1.0, 'old': 1.0, 'months': 1.0, 'currently': 1.0, 'couldn': 1.0, 'and': 3.0, 'getting': 1.0, 'our': 1.0, 'to': 2.0, 'daughter': 1.0, 'since': 1.0, 'easy': 1.0, 'been': 1.0, 'love': 1.0, 'for': 1.0, 'cat': 1.0, 'my': 1.0, 'own': 1.0, 'wubbanub': 1.0, 'become': 1.0, '3': 1.0, 'resist': 1.0, 'bear': 1.0, 'when': 1.0, 'penguin': 1.0, 'using': 1.0, 'version': 1.0, 'came': 1.0, 'she': 2.0, 'it': 5.0, 'first': 1.0, 'out': 1.0, 't': 1.0, 'a': 1.0, 'we': 4.0, 's': 3.0, 'her': 2.0, 'has': 1.0, 'comfort': 1.0, 'item': 1.0, 'thing': 1.0, 'was': 1.0, 'soothe': 1.0, 'wash': 1.0, 'reaches': 1.0, 'herself': 1.0, 'very': 1.0, 'just': 1.0}
Word element => {'out': 1.0, 'cannot': 1.0, 'so': 1.0, 'wubanub': 1.0, 'into': 1.0, 'ducky': 1.0, 'it': 1.0, 's': 1.0, 'changed': 1.0, 'is': 2.0, 'saw': 1.0, 'we': 3.0, 'when': 1.0, 'love': 1.0, 'wubnubs': 1.0, 'recommended': 1.0, 'colors': 1.0, 'be': 1.0, 'friends': 1.0, 'penguin': 1.0, 'their': 1.0, 'our': 1.0, 'purchased': 1.0, 'son': 1.0, 'adorable': 1.0, 'the': 5.0, 'because': 1.0, 'pacifier': 2.0, 'vibrant': 1.0, 'stitched': 1.0}
Word element => {'plush': 1.0, 'with': 1.0, 'sleeps': 1.0, 'still': 1.0, 'off': 1.0, 'came': 1.0, 'everywhere': 1.0, 'carried': 1.0, 'they': 1.0, 'great': 1.0, 'the': 4.0, 'wubbanubs': 1.0, 'my': 4.0, 'i': 1.0, 'buy': 1.0, 'prevent': 1.0, 'freaking': 1.0, 'are': 1.0, 'this': 2.0, 'for': 1.0, 'daughter': 3.0, 'and': 2.0, 'shortly': 1.0, 'born': 1.0, 'baby': 1.0, 'it': 1.0, 'she': 2.0, 'ended': 1.0, 'after': 1.0, 'so': 1.0, 'was': 2.0, 'husband': 1.0, 'to': 1.0, 'out': 1.0, 'calls': 1.0, 'his': 1.0, '34': 2.0, 'binky': 2.0, 'brainer': 1.0, 'up': 1.0, '6': 1.0, 'little': 1.0, 'penguin': 1.0, 'losing': 1.0, 'we': 1.0, 'a': 2.0, 'about': 1.0, 'no': 1.0, 'because': 2.0, 'having': 1.0, 'second': 1.0, 'bought': 1.0, 'one': 1.0, 'months': 1.0, 'part': 1.0, 'from': 1.0, 'later': 1.0}
Word element => {'take': 1.0, 'hanging': 1.0, 'tipping': 1.0, 'beware': 1.0, 'happy': 1.0, 'very': 1.0, 'looks': 1.0, 'now': 1.0, 'older': 1.0, 'gets': 1.0, 'want': 1.0, 'perhaps': 1.0, 'been': 1.0, 'once': 1.0, 'hasnt': 1.0, 'tray': 1.0, 'disappoint': 1.0, 'justify': 1.0, 'full': 1.0, 'were': 1.0, 'this': 4.0, 'boarding': 1.0, 'other': 1.0, '6': 1.0, 'infant': 1.0, 'airport': 1.0, 'on': 4.0, 'bc': 1.0, 'heart': 1.0, 'errands': 2.0, 'easy': 3.0, 'something': 2.0, 'original': 1.0, 'the': 20.0, 'tag': 1.0, 'use': 2.0, 'our': 1.0, 'hard': 1.0, 'over': 1.0, 'base': 1.0, 'price': 1.0, 'd': 1.0, 'skate': 3.0, 'size': 1.0, 'plug': 1.0, 's': 1.0, 'maybe': 1.0, 'or': 1.0, 'need': 2.0, 'carrier': 1.0, 'bags': 1.0, 'perego': 3.0, 'elements': 1.0, 'me': 1.0, 'regret': 1.0, 'fold': 1.0, 'love': 1.0, 'far': 2.0, 'him': 1.0, 'he': 3.0, 'needed': 2.0, 'son': 2.0, 'is': 7.0, 'at': 2.0, 'was': 6.0, 'would': 1.0, 'had': 2.0, 'seat': 2.0, 'in': 4.0, 'to': 14.0, 'job': 2.0, 'quick': 1.0, 'prior': 1.0, 'buying': 2.0, 'red': 1.0, 'but': 4.0, 'thing': 1.0, 'nice': 3.0, 'could': 1.0, 'will': 2.0, 'complaint': 1.0, 'a': 9.0, 'trip': 1.0, 'just': 1.0, 'and': 4.0, 'with': 1.0, 'using': 3.0, 'stroller': 5.0, 'plane': 1.0, 'found': 1.0, 'have': 3.0, 'turning': 1.0, 'an': 5.0, 'basket': 1.0, 'overhead': 1.0, 'upon': 1.0, 'got': 1.0, 'one': 2.0, 'all': 2.0, 'ones': 1.0, 'bought': 1.0, 'walks': 1.0, 'color': 1.0, 'holder': 1.0, 'otherwise': 1.0, 'months': 2.0, 'test': 1.0, 'its': 4.0, 'husband': 1.0, 'more': 1.0, 'for': 10.0, 'purchase': 2.0, 'primarily': 1.0, 'peg': 3.0, 'lightweight': 3.0, 'so': 5.0, 'absolute': 1.0, '2': 1.0, 'going': 2.0, 'end': 1.0, 'god': 1.0, 'send': 1.0, 'initially': 1.0, 'that': 5.0, 'finally': 1.0, 'i': 16.0, 'well': 1.0, 'shopping': 2.0, 'his': 1.0, 'sooner': 1.0, 'car': 2.0, 'intended': 1.0, 'which': 1.0, 'good': 1.0, 'it': 18.0, 'shade': 2.0, 'be': 4.0, 'disposable': 1.0, 'used': 1.0, 'am': 2.0, 'features': 1.0, 'outside': 2.0, 'adjustable': 1.0, 'cup': 1.0, 'check': 1.0, 'back': 1.0, 'considering': 2.0, 'into': 1.0, 'directly': 1.0, 'you': 4.0, 'inclined': 1.0, 'pull': 1.0, 'out': 3.0, 'baby': 3.0, 'legs': 1.0, 'only': 6.0, 'dont': 2.0, 'hang': 1.0, 'there': 1.0, 'perfectly': 1.0, 'not': 7.0, 'havent': 1.0, 'of': 5.0, 'brands': 1.0, 'overall': 1.0, 'issue': 2.0, 'sun': 2.0, 'might': 1.0, 'as': 1.0, 'really': 1.0, 'great': 2.0, 'exposed': 1.0, 'ive': 1.0, 'if': 2.0, 'course': 1.0, 'my': 8.0, 'are': 2.0, 'we': 4.0, 'bad': 1.0, 'first': 1.0, 'noon': 1.0, 'umbrella': 1.0, 'honestly': 1.0, 'when': 2.0, 'fact': 1.0, 'what': 1.0, 'safely': 1.0, 'useless': 1.0, 'mainly': 1.0, 'who': 1.0, 'from': 1.0, 'either': 1.0, 'do': 1.0, 'unisex': 1.0, 'time': 3.0, 'did': 1.0, 'another': 1.0, 'spend': 1.0, '240': 1.0, '19': 1.0, '99': 1.0, 'essentially': 1.0, 'actually': 1.0, 'protested': 1.0, 'about': 1.0, 'wanted': 1.0, 'make': 1.0, 'cart': 1.0, 'submitted': 1.0, 'didnt': 1.0, 'pretty': 1.0, 'any': 1.0, 'cheaper': 1.0, 'set': 1.0, 'high': 1.0, 'maclaren': 1.0, 'does': 3.0, 'concern': 1.0, 'buy': 2.0, 'having': 1.0}
Word element => {'happy': 1.0, 'very': 1.0, 'took': 1.0, 'no': 1.0, 'the': 2.0, 'great': 1.0, 'was': 4.0, 'to': 4.0, 'had': 2.0, 'at': 2.0, 'and': 2.0, 'florida': 1.0, 'necessary': 1.0, 'few': 1.0, 'disney': 2.0, 'in': 2.0, '7': 1.0, 'ease': 1.0, 'days': 2.0, 'day': 1.0, 'this': 3.0, 'it': 5.0, 'with': 2.0, 'only': 1.0, 'take': 1.0, 'beach': 1.0, 'amazing': 1.0, 'control': 1.0, 'an': 1.0, 'stroller': 3.0, 'on': 1.0, 'a': 2.0, 'we': 5.0, 'could': 1.0, 'are': 1.0, 'push': 1.0, 'bought': 1.0, 'one': 2.0, 'for': 1.0, 'fortunately': 1.0, 'parking': 1.0, 'trip': 1.0, 'hand': 1.0, 'concern': 1.0, '11': 1.0, 'when': 2.0, 'us': 1.0, 'easy': 1.0, 'collapses': 1.0, 'leave': 1.0, 'unbelievable': 1.0, 'purchase': 1.0}
Word element => {'money': 1.0, 'the': 1.0, 'fabulous': 1.0, 'read': 1.0, 'number': 1.0, 'they': 1.0, 'my': 1.0, 'for': 1.0, 'this': 2.0, 'worthe': 1.0, 'until': 1.0, 'granddaughter': 1.0, 'to': 1.0, 'right': 1.0, 'a': 1.0, 'hesitated': 1.0, 'buy': 1.0, 'i': 2.0, 'of': 1.0, 'reviews': 1.0, 'were': 1.0, 'exra': 1.0, 'rave': 1.0, 'stroller': 1.0, 'if': 1.0, 'and': 1.0}
Word element => {'loved': 1.0, 'took': 1.0, 'gravel': 1.0, 'profile': 1.0, 'different': 1.0, 'to': 1.0, 'sunshine': 1.0, 'around': 3.0, 'holds': 1.0, 'down': 1.0, 'stand': 1.0, 'grandma': 1.0, '12': 1.0, 'either': 1.0, '62': 1.0, 'do': 1.0, 'much': 1.0, 'concrete': 1.0, 'park': 1.0, 'no': 1.0, 'when': 1.0, 'folded': 1.0, '2': 1.0, 'kids': 2.0, 'highly': 1.0, 'this': 1.0, 'like': 1.0, 'a': 4.0, 't': 1.0, 's': 1.0, 'for': 2.0, 'dd': 1.0, 'our': 2.0, 'stroller': 2.0, 'awesome': 1.0, 'sturdy': 1.0, 'easy': 1.0, 'jaunt': 1.0, 'folds': 2.0, 'it': 5.0, 'up': 3.0, 'over': 1.0, 'disney': 1.0, 'terrains': 1.0, 'bought': 1.0, 'broken': 1.0, 'grass': 1.0, 'great': 1.0, 'stays': 1.0, 'recommended': 1.0, 'trip': 1.0, 'and': 4.0, 'really': 1.0, 'my': 2.0, 'all': 2.0, 'fits': 1.0, '14': 1.0, 'does': 2.0, 'dime': 1.0, 'yo': 3.0, 'hills': 1.0, 'on': 3.0, '3': 1.0, 'buggy': 1.0, 'buddy': 1.0, 'ton': 1.0, 'while': 1.0, 'from': 1.0, 'doesn': 1.0, 'hook': 1.0, 'straps': 1.0, 'back': 1.0, 'can': 1.0, 'so': 1.0, 'headrest': 1.0, 'loop': 1.0, '3yo': 1.0, 'handles': 1.0, 'the': 6.0, 'odyssey': 1.0, 'of': 1.0, 'extremely': 1.0, 'frame': 1.0, 'tried': 1.0, 'not': 2.0, 'give': 1.0, 'at': 1.0, 'turns': 1.0, 'combis': 1.0, 'also': 1.0, 'easily': 1.0, 'that': 1.0, 'very': 1.0, 'low': 1.0, 'we': 2.0, 'take': 1.0, 'these': 1.0, 'room': 1.0, 'complaints': 1.0}
Word element => {'much': 1.0, 'do': 1.0, 'problem': 1.0, 'cobblestone': 1.0, 'roll': 1.0, 'so': 1.0, 'current': 1.0, 'sturdy': 1.0, 'overall': 1.0, 'hand': 1.0, 'trip': 1.0, 'at': 1.0, 'sequence': 1.0, 'repeated': 1.0, 'on': 1.0, 'think': 1.0, 'unfold': 1.0, 'out': 1.0, 'back': 2.0, 'pretty': 1.0, 'subway': 1.0, 'crowded': 1.0, 'canopy': 1.0, 'kid': 1.0, 'happy': 1.0, 'larger': 1.0, 'umbrella': 1.0, 'strollers': 1.0, 'one': 2.0, 'bought': 1.0, 've': 1.0, 'in': 2.0, 'doesn': 1.0, 'was': 2.0, 'other': 1.0, 'stroller': 1.0, 'o': 1.0, 'with': 2.0, 'wish': 1.0, 'plop': 1.0, 'this': 2.0, 'it': 8.0, 'can': 1.0, 'but': 1.0, '2': 1.0, 'the': 5.0, 'really': 1.0, 'heading': 1.0, 'steer': 1.0, 'days': 1.0, '5': 1.0, 'before': 1.0, 'pricey': 1.0, 'least': 1.0, 'to': 2.0, 'our': 2.0, 'seems': 1.0, 'europe': 1.0, 'i': 3.0, 'you': 1.0, 'times': 1.0, 'again': 1.0, 'easily': 1.0, 'fold': 1.0, 'over': 1.0, 'up': 3.0, 'flights': 1.0, 'of': 1.0, 'compared': 1.0, 'while': 1.0, 'wearing': 1.0, '1': 1.0, 'and': 4.0, 'down': 2.0, 'y': 1.0, 'sling': 1.0, 'far': 1.0, 'then': 2.0, 'carry': 1.0, 'no': 1.0, 'several': 1.0, 't': 1.0, 'we': 2.0, 'could': 1.0, 'a': 1.0, 'stairs': 2.0, 'been': 1.0, 'into': 1.0}
Word element => {'recommend': 1.0, 'would': 1.0, 'color': 1.0, 'the': 1.0, 'close': 1.0, 'open': 1.0, 'nice': 1.0, 'to': 1.0, 'compact': 1.0, 'highly': 1.0, 'and': 4.0, 'quality': 1.0, 'love': 1.0, 'great': 1.0, 'it': 1.0, 'maneuvers': 1.0, 'smooth': 1.0, 'so': 1.0, 'is': 1.0, 'easy': 1.0}
Word element => {'cute': 1.0, 'from': 1.0, 'prepared': 1.0, 'way': 1.0, 'wind': 1.0, 'if': 1.0, 'so': 1.0, 'switch': 1.0, 'crazy': 1.0, 'doesn': 1.0, 'thing': 1.0, 'other': 1.0, '5': 1.0, 'be': 2.0, 'toy': 1.0, 'an': 2.0, 'couldn': 1.0, 'amazon': 1.0, 'used': 1.0, 'clip': 1.0, 'compatible': 1.0, 'extra': 1.0, 'buy': 1.0, 'box': 1.0, 'that': 3.0, 'arrived': 1.0, 'fits': 1.0, 'music': 2.0, 'can': 2.0, 'but': 2.0, 'with': 2.0, 'do': 1.0, 'coordinate': 1.0, 'only': 2.0, 'it': 7.0, 'all': 1.0, 'to': 3.0, '15': 1.0, 'wanted': 1.0, 'adapter': 1.0, 'research': 1.0, 'sweet': 1.0, 'border': 1.0, 'i': 4.0, 'months': 1.0, 'mobile': 5.0, 'bought': 1.0, 'attachment': 2.0, 'and': 3.0, 'saw': 1.0, 'wallpaper': 1.0, 'when': 1.0, 'you': 2.0, 'pea': 1.0, 'this': 2.0, 'found': 1.0, 'for': 4.0, 'love': 1.0, 'make': 1.0, 'on': 3.0, 'standard': 1.0, 'justify': 1.0, 'arm': 1.0, 'go': 1.0, 't': 2.0, 'a': 5.0, 'we': 2.0, 'crib': 2.0, 'have': 2.0, 'wide': 1.0, 'sleigh': 1.0, 'sure': 1.0, 'kind': 1.0, 'the': 7.0, 'curved': 1.0, 'is': 3.0, 'though': 1.0, 'sides': 1.0, 'search': 1.0, 'not': 1.0, 'off': 1.0, 'enough': 1.0, 'did': 1.0, 'some': 1.0, 'absolutely': 1.0, 'arms': 1.0}
Word element => {'adorable': 1.0, 'is': 1.0, 'set': 1.0, 'bedding': 1.0, 'carried': 1.0, 'they': 1.0, 'local': 1.0, 'the': 1.0, 'my': 1.0, 'i': 1.0, 'amazon': 1.0, 'm': 1.0, 'so': 1.0, 'glad': 1.0, 'none': 1.0, 'this': 1.0, 'though': 1.0, 'had': 2.0, 'in': 1.0, 'it': 2.0, 'stock': 1.0, 'stores': 1.0, 'of': 1.0}
Word element => {'serious': 1.0, 'happen': 1.0, 'weeks': 1.0, 'now': 1.0, 'amazon': 2.0, 'more': 1.0, 'is': 2.0, 'received': 1.0, 'saying': 1.0, 'raise': 1.0, 'from': 2.0, '79': 1.0, 'day': 1.0, 'ordered': 1.0, 'call': 1.0, 'price': 2.0, 'this': 2.0, 'item': 1.0, 'next': 1.0, 'they': 2.0, 'paid': 1.0, 'i': 2.0, 'when': 1.0, '97': 1.0, 'then': 1.0, 'list': 1.0, 'was': 3.0, 'to': 1.0, 'expensive': 1.0, 'for': 1.0, 'product': 1.0, 'be': 2.0, 'an': 1.0, '2': 1.0, 'but': 1.0, 'out': 2.0, 'of': 2.0, 'stock': 2.0, 'have': 1.0, 'and': 3.0, 'it': 3.0, 'showing': 1.0, 'remove': 1.0, 'true': 1.0, 'their': 1.0, 'keep': 1.0, 'deal': 1.0, 'the': 2.0, 'so': 1.0, 'what': 1.0, 'ago': 1.0, 'a': 1.0, 's': 1.0, 'told': 1.0, 'me': 1.0, 'not': 1.0}
Word element => {'room': 1.0, 'is': 3.0, 'faces': 1.0, 'goes': 1.0, 'cute': 1.0, 'very': 1.0, 's': 1.0, 'jungle': 1.0, 'addition': 1.0, 'great': 1.0, 'the': 3.0, 'yet': 1.0, 'rug': 2.0, 'with': 1.0, 'it': 2.0, 'this': 1.0, 'crib': 1.0, 'set': 1.0, 'thin': 1.0, 'well': 1.0, 'a': 1.0, 'plush': 1.0, 'baby': 1.0, 'to': 1.0}
Word element => {'shipping': 1.0, 'd': 1.0, 'if': 1.0, 'asked': 1.0, 'out': 1.0, 'receive': 1.0, 'exactly': 1.0, 'original': 1.0, 'be': 1.0, 'said': 2.0, 'impossible': 1.0, 'situation': 1.0, 'send': 2.0, 'opened': 1.0, 'product': 1.0, 'refund': 2.0, 'did': 1.0, 'from': 1.0, 'says': 1.0, 'buy': 1.0, '16': 1.0, 'explained': 1.0, 'do': 1.0, 'better': 1.0, 'you': 1.0, 'refunding': 1.0, 'about': 1.0, 'at': 1.0, 'is': 1.0, 'gallerie': 2.0, 'luck': 1.0, 'how': 1.0, 'round': 1.0, 'edge': 1.0, 'have': 5.0, 'pop': 1.0, 'bad': 1.0, 'are': 2.0, 'half': 2.0, 's': 1.0, 'maybe': 1.0, 'sides': 1.0, 'extremely': 1.0, 'am': 1.0, '4': 1.0, 'seen': 1.0, 'countertop': 1.0, 'it': 2.0, 'sets': 1.0, 'two': 1.0, 'i': 15.0, 'update': 1.0, 'dispensers': 1.0, 'on': 2.0, 'would': 1.0, 'bummed': 1.0, 'of': 5.0, 'the': 14.0, 'least': 1.0, 'hands': 2.0, 'without': 1.0, 'these': 4.0, 'baby': 2.0, 'others': 1.0, 'some': 1.0, 'used': 1.0, 'decided': 1.0, 'one': 1.0, 'pretty': 1.0, 'to': 12.0, 'condition': 1.0, 'any': 1.0, 'been': 2.0, 'amazon': 1.0, 'received': 1.0, 'containers': 2.0, 'and': 10.0, 'get': 3.0, 'wrists': 1.0, 'his': 1.0, 'years': 1.0, 'liked': 1.0, 'for': 3.0, 'open': 5.0, 'hard': 1.0, 'unless': 1.0, 'excited': 1.0, 'order': 3.0, 'receipt': 1.0, 'so': 4.0, 'a': 2.0, 'small': 1.0, 'thumbs': 1.0, 'had': 2.0, 'arthitis': 1.0, 'was': 3.0, 'must': 1.0, 'doesn': 1.0, 'them': 13.0, 'fit': 1.0, 'ago': 1.0, 't': 2.0, 'then': 1.0, 'we': 2.0, 'across': 1.0, 'here': 1.0, 'searched': 1.0, 'even': 3.0, 'came': 1.0, 'm': 2.0, 'in': 2.0, 'money': 3.0, 'stackable': 1.0, 'me': 3.0, 'my': 6.0, 'see': 1.0, 'until': 1.0, 'tried': 3.0, 'but': 2.0, 'not': 3.0, 'husband': 1.0, 'who': 1.0, 'odd': 1.0, '95': 1.0, 'realized': 1.0, 'with': 3.0, 'couldn': 1.0, 'll': 2.0, 'table': 1.0, 'which': 1.0, 'good': 1.0, 'side': 1.0, 'were': 1.0, 'same': 1.0, 'than': 1.0, 'way': 1.0, 'because': 2.0, 'problems': 1.0, 'that': 2.0, 'into': 1.0, 'they': 4.0, 'all': 1.0, 'an': 1.0, 'unable': 1.0, 'as': 2.0, 'diaper': 1.0, '84': 1.0, 'using': 1.0, 'bag': 1.0, 'arthritis': 1.0, 'shape': 1.0, 'sending': 1.0, 'pay': 1.0, 'back': 3.0, 'could': 2.0, 'will': 1.0}
Word element => {'child': 1.0, 'them': 2.0, 'toys': 1.0, 'of': 1.0, 'keeps': 1.0, 'loves': 1.0, 'on': 1.0, 'son': 1.0, 'he': 2.0, 'this': 3.0, 'with': 1.0, 'teeths': 1.0, 'plays': 1.0, 'occupied': 1.0, 'for': 2.0, 'hours': 1.0, 'i': 1.0, 'him': 1.0, 'would': 1.0, 'series': 1.0, 'my': 1.0, 'reccomend': 1.0, 'toy': 2.0, 'any': 1.0}
Word element => {'well': 1.0, 'happy': 1.0, 'plays': 1.0, 'it': 1.0, 'keepsake': 1.0, 'as': 1.0, 'up': 1.0, 'light': 1.0, 'cheeks': 1.0, 'this': 1.0, 'birthday': 2.0, 'was': 1.0, 'a': 2.0, 'big': 1.0, 'with': 1.0, 'daughters': 1.0, 'hit': 1.0, 'made': 1.0, 'the': 1.0, 'my': 1.0, 'first': 1.0}
Word element => {'buy': 1.0, 'a': 1.0, 'cuddly': 1.0, 'so': 1.0, 'is': 2.0, 'and': 1.0, 'birthday': 1.0, 'happy': 1.0, 'it': 2.0, 'great': 2.0, 'my': 1.0, 'this': 2.0, 'doll': 1.0, 'loved': 1.0, 'sings': 1.0, 'was': 1.0, 'granddaughter': 1.0}
Word element => {'lot': 1.0, 'plays': 1.0, 'old': 1.0, 'year': 1.0, 'it': 2.0, 'again': 1.0, 'buy': 1.0, 'my': 1.0, 'the': 1.0, 'with': 1.0, 'is': 1.0, 'a': 2.0, 'gund': 1.0, 'doll': 2.0, 'one': 1.0, 'i': 1.0, 'baby': 1.0, 'quality': 1.0, 'and': 1.0, 'good': 1.0, 'granddaughter': 1.0, 'would': 1.0}
Word element => {'them': 1.0, 'love': 1.0, 'hope': 1.0, 'music': 1.0, 'have': 1.0, 'do': 1.0, 'cute': 1.0, 'look': 1.0, 'i': 2.0, 'ordered': 1.0, '2': 1.0, 'turning': 1.0, 'twin': 1.0, 'that': 2.0, 'the': 1.0, 'are': 1.0, 'girls': 1.0, '1': 1.0, 'gurls': 1.0, 'they': 1.0, 'and': 2.0, 'yea5rold': 1.0}
Word element => {'lives': 1.0, 'girl': 1.0, 'little': 1.0, 'who': 1.0, 'great': 2.0, 'ride': 1.0, 'takes': 1.0, 'their': 1.0, 'dolly': 1.0, 'turning': 1.0, 'it': 1.0, 'this': 1.0, 'loved': 1.0, 'gift': 1.0, 'birthday': 1.0, '1st': 1.0, 'she': 1.0, 'th': 1.0, 'in': 2.0, 'a': 2.0, 'wagon': 1.0, 'her': 1.0, 'all': 1.0, 'has': 1.0, 'time': 1.0, 'gifts': 1.0, 'or': 1.0, 'for': 2.0, 'one': 2.0, 'any': 1.0}
Word element => {'now': 1.0, 'present': 1.0, 'birthdasy': 1.0, 'of': 1.0, 'top': 1.0, 'on': 1.0, 'used': 1.0, 'will': 1.0, 'so': 1.0, 'bought': 1.0, 'is': 1.0, 'must': 2.0, 'no': 1.0, 'i': 3.0, 'book': 1.0, 'quote': 1.0, 'and': 1.0, 'that': 1.0, 'box': 2.0, 'this': 4.0, 'decoration': 1.0, 'looks': 1.0, 'it': 3.0, 'looked': 1.0, 'doll': 2.0, 'go': 1.0, 'a': 2.0, 'however': 1.0, 'else': 1.0, 'came': 1.0, 'thought': 1.0, 'what': 1.0, 'dollar': 1.0, 'like': 2.0, 'hold': 1.0, 'at': 1.0, 'who': 1.0, 'something': 1.0, 'would': 1.0, 'not': 1.0, 'let': 1.0, 'worth': 1.0, 'the': 3.0, '2': 1.0, 'price': 1.0, 'alone': 1.0, 'as': 1.0, 'to': 2.0, 'store': 1.0, 'was': 1.0, 'shipping': 1.0, 'pay': 1.0, 'buy': 1.0, 'day': 1.0, 'definitely': 1.0, 'extra': 1.0, 'for': 1.0, 'my': 1.0, 'niece': 1.0, 'be': 2.0, 'here': 1.0, 'you': 1.0, 'when': 1.0, 'opened': 1.0}
Word element => {'low': 1.0, 'pressured': 1.0, 'but': 1.0, 'in': 1.0, 'alongs': 1.0, 'really': 1.0, 'always': 1.0, 'there': 1.0, 'want': 1.0, 'if': 3.0, 'are': 2.0, 'place': 1.0, 'the': 5.0, 'investment': 1.0, 'feel': 1.0, 'big': 1.0, 'great': 2.0, 'is': 1.0, 'more': 1.0, 'not': 2.0, 'fun': 3.0, 'two': 1.0, 'children': 1.0, 'gift': 4.0, 'ideal': 1.0, 'one': 2.0, 'impact': 1.0, 'for': 1.0, 'love': 1.0, 'worth': 1.0, 'or': 3.0, 'off': 1.0, 'with': 1.0, 'buying': 1.0, 'to': 1.0, 'filler': 1.0, 'different': 1.0, 'than': 1.0, 'first': 1.0, 'audiences': 1.0, 'sing': 1.0, 'a': 2.0, 'guests': 1.0, 'colorful': 1.0, 'showing': 1.0, 'child': 1.0, 'sings': 1.0, 'toy': 1.0, 'and': 1.0, 'do': 1.0, 'how': 1.0, 'along': 1.0, 'purchase': 1.0, 'you': 2.0, 'day': 1.0, 'buy': 1.0}
Word element => {'broken': 1.0, 'wish': 1.0, 'cheap': 1.0, 'very': 1.0, 'seem': 1.0, 'with': 1.0, 'came': 1.0, '16': 1.0, 'check': 1.0, 'big': 1.0, 'support': 1.0, 'pounds': 1.0, 'strong': 1.0, 'okay': 1.0, 'rate': 1.0, 'say': 1.0, 'at': 1.0, 'is': 4.0, 'trying': 1.0, 'be': 2.0, 'break': 2.0, 'bunch': 1.0, 'overwhelmed': 1.0, 'as': 1.0, 'town': 1.0, 'toys': 2.0, 'to': 9.0, 'our': 2.0, 'get': 1.0, 'folds': 1.0, 'sure': 1.0, 'vibrating': 1.0, 'depress': 1.0, 'i': 6.0, 'old': 1.0, 'month': 2.0, 'him': 2.0, 'it': 5.0, 'difficult': 1.0, 'loves': 1.0, 'when': 1.0, '3': 2.0, 'along': 1.0, 'did': 1.0, 'we': 3.0, 'a': 5.0, 'since': 1.0, 'for': 3.0, 'boppy': 2.0, 'up': 2.0, 's': 1.0, 'soothe': 1.0, 'in': 3.0, 'chair': 6.0, 'comfort': 1.0, 'toy': 1.0, 'could': 1.0, 'will': 1.0, 'travel': 3.0, 'bought': 1.0, 'were': 1.0, 'planning': 1.0, 'hang': 1.0, 'cradle': 1.0, 'tends': 1.0, 'and': 4.0, 'trip': 1.0, 'the': 10.0, 'of': 2.0, 'this': 2.0, 'bring': 1.0, 'release': 1.0, 'he': 2.0, 'quite': 1.0, 'out': 1.0, 'compactly': 1.0, 'played': 1.0, 'never': 2.0, 'but': 2.0, 'around': 1.0, 'his': 2.0, 'music': 3.0, 'enough': 1.0, 'removable': 1.0, 'certainly': 1.0, 'buttons': 1.0, 'order': 1.0, 'are': 1.0, 'bit': 2.0, 'strangers': 1.0, 'so': 1.0, 'down': 3.0, 'work': 1.0, 'hard': 1.0, 'additionally': 1.0, 'does': 1.0, 'not': 3.0, 'my': 3.0, 'me': 1.0, 'directly': 1.0, 'son': 1.0, 'face': 1.0, 'fortunately': 1.0, 'soother': 1.0, 'by': 1.0, 'that': 3.0, 'easily': 1.0, 'because': 1.0, 'concerned': 1.0, 'bother': 1.0, 'wanted': 2.0, 'exchange': 1.0, 'boy': 1.0, 'would': 1.0, 'have': 1.0, 'available': 1.0, 'date': 1.0, 'bar': 1.0, 'overall': 1.0, 'd': 1.0}
Word element => {'absolutely': 1.0, 'room': 1.0, 'new': 1.0, 'quality': 1.0, 'substantial': 1.0, 'gorgeous': 1.0, 'a': 1.0, 'and': 1.0, 'is': 3.0, 'son': 1.0, 'says': 1.0, 'shore': 1.0, 'for': 1.0, 'who': 1.0, 'grandson': 2.0, 'my': 3.0, 'the': 1.0, 'assemble': 1.0, 'expecting': 1.0, 'i': 2.0, 'entire': 1.0, 'bought': 2.0, 'south': 1.0, 's': 1.0, 'collection': 1.0, 'first': 1.0, 'this': 1.0, 'he': 1.0, 'it': 2.0, 'to': 1.0, 'was': 1.0, 'easy': 1.0}
Word element => {'size': 1.0, 'now': 1.0, 'really': 2.0, 'noticeable': 1.0, 'straight': 1.0, 'crack': 1.0, 'edge': 1.0, 'opening': 1.0, 'of': 1.0, 'in': 1.0, 'sits': 1.0, 'it': 1.0, 'so': 1.0, 'stability': 1.0, 'there': 2.0, 'think': 1.0, 'or': 1.0, 'happy': 1.0, 'quite': 1.0, 'fit': 1.0, 'not': 2.0, 'because': 1.0, 'would': 1.0, 'otherwise': 1.0, 'i': 3.0, 'prior': 1.0, 'open': 1.0, 'ordering': 1.0, 'read': 1.0, 'my': 1.0, 'the': 6.0, 't': 1.0, 'but': 3.0, 'have': 1.0, 'able': 1.0, 'defects': 1.0, 'original': 1.0, 'enough': 1.0, 'lucky': 1.0, 'be': 1.0, 'molding': 1.0, 'unfortunately': 1.0, 'doesn': 1.0, 'was': 1.0, 'reviews': 1.0, 'this': 1.0, 'with': 2.0, 'all': 1.0, 'to': 3.0, 'any': 1.0, 'and': 4.0, 'husband': 1.0, 'issue': 1.0, 'an': 1.0, 'hoped': 1.0, 'more': 1.0, 'hardware': 1.0, 'is': 2.0, 'mounting': 1.0, 'cut': 1.0, 'out': 1.0, 'middle': 1.0, 'measurements': 1.0, 'right': 1.0, 'door': 1.0, 'adjust': 1.0}
Word element => {'sturdy': 1.0, 'awesome': 1.0, 'are': 1.0, 'lol': 1.0, 'helping': 1.0, '34': 2.0, 'for': 1.0, 'in': 1.0, 'especially': 1.0, 'cute': 1.0, 'year': 1.0, 'very': 2.0, 'the': 2.0, 'my': 1.0, 'instructions': 1.0, 'piece': 1.0, 'price': 1.0, 'about': 1.0, 'a': 1.0, 'is': 1.0, 'with': 1.0, 'this': 1.0, 'it': 1.0, 'together': 1.0, 'put': 1.0, 'an': 1.0, 'hour': 1.0, 'i': 1.0, 'old': 1.0, 'three': 1.0}
Word element => {'afternoon': 1.0, 'good': 1.0, 'spend': 1.0, 'prepared': 2.0, 'product': 1.0, 'would': 1.0, 'top': 1.0, 'room': 1.0, 'babies': 1.0, 'in': 1.0, 'items': 1.0, 'power': 1.0, 'over': 1.0, 'not': 1.0, 'does': 1.0, 'time': 1.0, 'tall': 1.0, '53': 1.0, 'like': 1.0, 'also': 1.0, 'sturdy': 1.0, 'very': 1.0, 'far': 1.0, 'can': 1.0, 'so': 2.0, 'with': 1.0, 'progress': 1.0, 'had': 1.0, 'seems': 1.0, 'own': 1.0, 'only': 2.0, 'who': 1.0, 'day': 1.0, 'one': 1.0, 'ones': 1.0, 'stating': 1.0, '4': 2.0, 'becomes': 1.0, 'started': 1.0, 'ahead': 1.0, 'dented': 1.0, 'large': 1.0, 'pieces': 2.0, 'took': 1.0, 'progresses': 1.0, 'hit': 1.0, 'something': 2.0, 'wrote': 1.0, 'apparently': 1.0, 'an': 1.0, 'other': 2.0, 'recommend': 1.0, 'piece': 2.0, 'were': 1.0, 'together': 2.0, 'possible': 1.0, 'during': 1.0, 'portion': 1.0, 'missing': 1.0, 'will': 1.0, 'read': 1.0, 'nice': 1.0, 'little': 1.0, 'single': 1.0, 'review': 1.0, 'putting': 1.0, 'i': 9.0, 'well': 2.0, 'arrived': 1.0, 'longer': 1.0, 'person': 2.0, 'of': 2.0, 'the': 9.0, 'damaged': 1.0, 'after': 1.0, 'and': 10.0, 'having': 1.0, 'phillips': 1.0, 'for': 2.0, 'assembly': 3.0, 'assemble': 2.0, 'but': 4.0, 'put': 2.0, 'apologies': 1.0, 'on': 2.0, 'shipping': 2.0, 'ready': 1.0, 'few': 1.0, 'this': 3.0, 'pain': 1.0, 'was': 1.0, 'as': 1.0, 'yesterday': 1.0, 'be': 3.0, 'small': 1.0, 'a': 5.0, 't': 1.0, 'go': 1.0, 'hours': 2.0, 'deserves': 1.0, 'at': 1.0, 'is': 2.0, 'processing': 1.0, 'it': 9.0, 'thought': 1.0, 'item': 1.0, 'how': 1.0, 'borrow': 1.0, 'that': 3.0, 'didn': 1.0, 'then': 1.0, 'reviews': 1.0, 'take': 2.0, 'to': 8.0, 'laughed': 1.0, 'pretty': 1.0, 'looks': 1.0, 'my': 1.0, 'me': 1.0, 'wrong': 1.0, 'did': 1.0, 'about': 1.0, '2': 2.0, 'thing': 1.0, '5': 2.0, 'have': 1.0, 'must': 1.0, 'things': 1.0, 'you': 3.0, 'instructions': 1.0, 'forged': 1.0, 'are': 1.0, 'descriptive': 1.0, 'get': 1.0, 'still': 1.0, 'every': 1.0, 'if': 1.0, 'apparent': 1.0, 'need': 1.0, 'note': 1.0, 'screwdriver': 1.0}
Word element => {'baby': 1.0, 'recommend': 1.0, 'overall': 1.0, 'like': 1.0, 'that': 1.0, 'target': 1.0, 'from': 1.0, 'ones': 1.0, 'crystal': 1.0, 'pick': 1.0, 'i': 3.0, 'but': 1.0, 'way': 2.0, 'cost': 1.0, 'would': 1.0, 'ft': 1.0, 'looking': 1.0, 'than': 1.0, 'anyway': 1.0, 'shorter': 1.0, 'its': 1.0, 'piece': 1.0, 'buying': 1.0, 'dimensions': 1.0, '5': 1.0, 'before': 1.0, 'you': 2.0, 'read': 1.0, 'at': 1.0, 'of': 1.0, 'once': 2.0, 'better': 1.0, 'hours': 1.0, 'together': 3.0, 'for': 1.0, 'love': 1.0, 'cuter': 1.0, 'bought': 1.0, 'one': 1.0, 'warning': 1.0, 'the': 4.0, 'about': 1.0, 'many': 1.0, 'sturdy': 1.0, 'twist': 1.0, 'tall': 1.0, 'and': 1.0, 'easy': 1.0, 'sure': 1.0, 'get': 1.0, 'low': 1.0, 'parts': 1.0, 'pieces': 1.0, 'takes': 1.0, 'a': 2.0, 'few': 1.0, 'instructions': 1.0, 'furniture': 1.0, 'think': 1.0, 'put': 1.0, 'make': 1.0, 'on': 1.0, 'are': 1.0, 'though': 1.0, 'knobs': 1.0, 'drawer': 1.0, 'pictures': 1.0, 'this': 1.0, 'dont': 1.0, 'to': 1.0, 'all': 1.0}
Word element => {'white': 1.0, 'great': 1.0, 'knobs': 1.0, 'iron': 1.0, 'wrought': 1.0, 'adding': 1.0, 'reds': 1.0, 'painting': 1.0, 'onions': 1.0, 'potatoes': 1.0, 'produce': 1.0, 'dry': 1.0, 'exposed': 1.0, 'baskets': 1.0, 'own': 1.0, 'up': 1.0, 'don': 1.0, 'thinking': 1.0, 'i': 7.0, 'some': 1.0, 'themed': 1.0, 'as': 1.0, 'part': 1.0, 'assemble': 1.0, 'matter': 1.0, 'flour': 1.0, 'take': 1.0, 'to': 4.0, 'pretty': 1.0, 'fruit': 1.0, 'bill': 1.0, 'wouldn': 1.0, 'didn': 1.0, 'even': 1.0, 'it': 4.0, 'this': 1.0, 'kids': 1.0, 'is': 1.0, 'looks': 1.0, 'my': 4.0, 'mid': 1.0, 'me': 1.0, 'uneven': 1.0, 'cabinet': 1.0, 'perfectly': 1.0, 'inside': 1.0, 'and': 9.0, 'one': 1.0, 'too': 2.0, 'for': 3.0, 'searching': 1.0, 'drawers': 2.0, 'been': 1.0, 'in': 3.0, 'properly': 1.0, 'would': 2.0, 'something': 1.0, 'work': 1.0, 'but': 3.0, 'shelf': 1.0, 'mexican': 1.0, 'have': 1.0, 's': 1.0, 'down': 1.0, 've': 1.0, 'shelves': 2.0, 'like': 1.0, 'boxes': 1.0, 'had': 1.0, 'around': 1.0, 'ect': 1.0, 'tear': 1.0, 'fault': 1.0, 'switch': 1.0, 'left': 1.0, 'area': 1.0, 'right': 1.0, 'can': 2.0, 'so': 1.0, 'door': 2.0, 'snacks': 1.0, 'close': 1.0, 'extra': 1.0, 'sturdy': 1.0, 'very': 1.0, 'put': 1.0, 'floor': 1.0, 'has': 1.0, 'plan': 1.0, 'good': 1.0, 'long': 1.0, 'on': 4.0, 'amount': 1.0, 'the': 8.0, 'of': 1.0, 'room': 2.0, 'messed': 1.0, 'large': 1.0, 'cereal': 1.0, 'top': 1.0, 'fits': 1.0, 'cans': 1.0, 'with': 1.0, 'golds': 1.0, 'sugar': 1.0, 'fit': 1.0, 't': 3.0, 'spare': 1.0, 'turquoise': 1.0, 'that': 1.0, 'appliances': 1.0, 'kitchen': 2.0, 'baking': 1.0, 'pantry': 1.0, 'pans': 1.0, 'small': 2.0, 'a': 2.0, 'added': 1.0}
Word element => {'you': 1.0, 'happy': 1.0, 'very': 2.0, 'good': 1.0, 'looks': 1.0, 'still': 1.0, 'it': 2.0, 'more': 1.0, 'little': 1.0, 'hinge': 1.0, 'door': 1.0, 'i': 1.0, 'expected': 1.0, 'with': 2.0, 'than': 1.0, 'but': 1.0, 'thank': 1.0, 'problems': 1.0, 'alignment': 1.0}
Word element => {'up': 1.0, 'one': 1.0, 'but': 1.0, 'down': 1.0, 'outgassing': 1.0, 'be': 1.0, 'adjusting': 1.0, 'it': 2.0, 'this': 3.0, 'their': 1.0, 'thing': 1.0, 'clear': 1.0, 'took': 1.0, 'said': 1.0, 'door': 1.0, 'rounding': 1.0, 'is': 1.0, 'leave': 1.0, 'am': 1.0, 'when': 2.0, 'you': 1.0, 'definitely': 1.0, 'close': 2.0, 'not': 1.0, 'give': 1.0, 'could': 2.0, 'going': 1.0, 's': 2.0, 'a': 5.0, 'customer': 1.0, 'there': 1.0, 'gap': 2.0, 'of': 1.0, 'adjusted': 1.0, 'the': 2.0, 'called': 1.0, 'd': 1.0, 'star': 1.0, 'service': 1.0, 'on': 1.0, 'look': 1.0, 'was': 1.0, 'and': 1.0, 'if': 2.0, 'to': 2.0, 'any': 1.0, 'half': 2.0, 'an': 1.0, 'inch': 1.0, 'purchase': 1.0, 'i': 4.0, 'failure': 1.0, 'for': 1.0, 'possible': 1.0, 'still': 1.0, 'minimal': 1.0}
Word element => {'of': 1.0, 'pieces': 1.0, 'other': 1.0, 'not': 1.0, 'does': 1.0, 'wood': 2.0, 'loves': 1.0, 'cheap': 1.0, 'i': 1.0, 'beautiful': 1.0, 'like': 1.0, 'easily': 1.0, 'peice': 1.0, 'bought': 1.0, 'assemble': 1.0, 'gift': 1.0, 'and': 2.0, 'as': 1.0, 'a': 3.0, 'since': 1.0, 'really': 1.0, 'put': 1.0, 'to': 1.0, 'furntiure': 1.0, 'she': 1.0, 'easy': 1.0, 'for': 1.0, 'durable': 1.0, 'it': 3.0, 'sister': 1.0, 'my': 1.0, 'point': 1.0, 's': 1.0, 'scratch': 1.0, 'great': 1.0, 'such': 1.0, 'price': 1.0}
Word element => {'item': 1.0, 'totally': 1.0, 'and': 2.0, 'horrible': 1.0, 'a': 1.0, 'money': 1.0, 'then': 1.0, 'less': 1.0, 'the': 1.0, 'warped': 1.0, 'more': 1.0, 'research': 1.0, 'it': 2.0, 'this': 1.0, 'before': 1.0, 'had': 1.0, 'year': 1.0, 'wish': 1.0, 'purchasing': 1.0, 've': 2.0, 'would': 1.0, 'we': 2.0, 'is': 1.0, 'looks': 1.0, 'spent': 1.0}
Word element => {'soon': 1.0, 'recommend': 1.0, 'that': 1.0, 'than': 1.0, 'but': 1.0, 'fix': 1.0, 'have': 1.0, 'everything': 1.0, 'so': 1.0, 'fine': 1.0, 'door': 1.0, 'on': 2.0, 'i': 2.0, 'other': 1.0, 'we': 1.0, 'daughters': 1.0, 'room': 1.0, 'one': 1.0, 'love': 1.0, 'for': 1.0, 'it': 2.0, 'with': 1.0, 'this': 2.0, 'matching': 1.0, 'getting': 1.0, 'perfectly': 1.0, 'and': 3.0, 'my': 1.0, 'the': 4.0, 'bought': 1.0, 'perfect': 1.0, 'size': 1.0, 'problem': 1.0, 'sturdy': 1.0, 'dresser': 1.0, 'highly': 1.0, 'lots': 1.0, 'storage': 1.0, 'hinges': 1.0, 'of': 2.0, 'there': 1.0, 'to': 1.0, 'its': 2.0, 'was': 2.0, 'plan': 1.0, 'a': 1.0}
Word element => {'experience': 1.0, 'whole': 1.0, 'top': 1.0, 'open': 1.0, 'wide': 1.0, 'delivered': 1.0, 'was': 1.0, 'functioning': 1.0, 'not': 2.0, 'dissatisfiying': 1.0, 'are': 2.0, 'they': 1.0, 'drawers': 1.0, 'good': 1.0, 'pretty': 1.0, 'does': 1.0, 'reccommend': 1.0, 'or': 1.0, 'buy': 2.0, 'also': 1.0, 'will': 1.0, 'never': 2.0, 'here': 1.0, 'lesson': 1.0, 'hassle': 1.0, 'a': 1.0, 'tracks': 1.0, 'shore': 2.0, 'piece': 1.0, 'as': 1.0, 'to': 1.0, 'had': 1.0, 'do': 1.0, 'much': 1.0, 'its': 1.0, 'tedious': 1.0, 'on': 2.0, 'furniture': 2.0, 'put': 1.0, 'work': 1.0, 'but': 3.0, 'difficult': 1.0, 'together': 1.0, 'i': 4.0, 'cheap': 2.0, 'of': 5.0, 'highly': 1.0, 'material': 1.0, 'every': 1.0, 'really': 2.0, 'completely': 1.0, 'is': 3.0, 'too': 1.0, 'and': 3.0, 'get': 1.0, 'very': 3.0, 'like': 1.0, 'south': 2.0, 'box': 3.0, 'the': 8.0, 'looks': 1.0, 'it': 6.0, 'again': 2.0, 'you': 1.0, 'have': 1.0, 'ordered': 1.0, 'everything': 1.0, 'far': 1.0, 'well': 1.0, 'has': 1.0, 'so': 2.0, 'time': 1.0, 'some': 1.0, 'sort': 1.0, 'damage': 1.0, 'look': 1.0, 'right': 1.0, 'out': 2.0, 'in': 1.0, 'theory': 1.0, 'would': 2.0, 'way': 1.0, 'return': 1.0, 'by': 1.0}
Word element => {'for': 1.0, 'what': 1.0, 'get': 1.0, 'basically': 1.0, 'bad': 1.0, 'how': 1.0, 'too': 1.0, 'considering': 1.0, 'great': 1.0, 'that': 1.0, 'not': 2.0, 'would': 1.0, 'is': 1.0, 'like': 1.0, 'of': 1.0, 'kind': 1.0, 'much': 1.0, 'but': 1.0, 'quality': 1.0, 'an': 1.0, 'flimsy': 1.0, 'item': 1.0, 'it': 1.0, 'this': 1.0, 'in': 1.0, 'paid': 1.0, 'real': 1.0, 'wood': 1.0, 'cost': 1.0, 'you': 2.0, 's': 1.0}
Word element => {'get': 1.0, 'probably': 1.0, 'id': 1.0, 'of': 1.0, 'made': 2.0, 'well': 1.0, 'looking': 1.0, 'youre': 1.0, 'glad': 1.0, 'dad': 1.0, 'say': 1.0, 'is': 2.0, 'door': 2.0, 'really': 1.0, 'if': 1.0, 'being': 1.0, 'am': 1.0, 'that': 1.0, 'price': 1.0, 'im': 1.0, 'instead': 1.0, 'exact': 1.0, 'i': 3.0, 'for': 2.0, 'cheap': 1.0, 'whole': 1.0, 'bought': 1.0, 'it': 8.0, 'because': 1.0, 'was': 2.0, 'had': 1.0, 'literally': 1.0, 'custom': 1.0, 'should': 1.0, 'said': 1.0, 'in': 1.0, 'design': 1.0, 'this': 1.0, 'dont': 1.0, 'my': 1.0, 'nice': 1.0, 'great': 1.0, 'got': 1.0, 'furniture': 1.0, 'put': 1.0, 'p': 2.0, 'but': 2.0, 'together': 1.0, 'a': 4.0, 'and': 2.0, 'the': 4.0, 'hassel': 1.0, 'hinges': 1.0, 'allow': 1.0, 'to': 1.0, 'as': 3.0, 'very': 1.0, 'colse': 1.0, 'properly': 1.0, 'pleased': 1.0, 'mind': 1.0, 'with': 1.0, 'piece': 2.0}
Word element => {'functional': 1.0, 'bolt': 1.0, 'drill': 1.0, 'use': 1.0, 'be': 1.0, 'would': 1.0, 'wood': 1.0, 'when': 1.0, 'bolts': 1.0, 'half': 1.0, 'but': 1.0, '2': 1.0, 'about': 1.0, 'took': 1.0, 'hang': 1.0, 'other': 1.0, 'his': 1.0, 'board': 1.0, 'the': 4.0, 'cubbies': 1.0, 'i': 1.0, 'good': 2.0, 'assemble': 1.0, 'cheap': 1.0, 'for': 2.0, 'love': 1.0, 'son': 1.0, 'of': 2.0, 'cubby': 1.0, 'parts': 1.0, 'had': 1.0, 'purchased': 1.0, 'newborn': 1.0, 'size': 1.0, 'don': 1.0, 'screws': 1.0, 'send': 1.0, 'clothes': 1.0, 'baby': 1.0, 'and': 6.0, 'looks': 1.0, 'it': 4.0, 'with': 1.0, 's': 1.0, 'we': 2.0, 't': 1.0, 'a': 4.0, 'so': 1.0, 'small': 1.0, 'items': 1.0, 'to': 3.0, 'our': 1.0, 'any': 1.0, 'all': 1.0, 'holes': 1.0, 'drawers': 1.0, 'is': 3.0, 'course': 1.0, 'amazing': 1.0, 'came': 1.0, 're': 1.0, 'useful': 1.0, 'socks': 1.0, 'space': 1.0, 'lot': 1.0, 'caso': 1.0, 'if': 1.0, 'open': 1.0, 'better': 1.0, 'hours': 1.0, 'particle': 1.0}
Word element => {'don': 1.0, 'holes': 1.0, 'alot': 1.0, 'align': 1.0, 'the': 2.0, 'finished': 1.0, 'looks': 1.0, 'right': 1.0, 'to': 1.0, 't': 1.0, 'item': 1.0, 'of': 1.0, 'good': 1.0, 'but': 1.0, 'screw': 1.0, 'it': 1.0, 'was': 1.0, 'because': 1.0, 'hard': 1.0, 'assemble': 1.0}
Word element => {'not': 1.0, 'easy': 1.0, 'less': 1.0, 'so': 1.0, 'example': 1.0, 'almost': 1.0, 'husband': 1.0, 'my': 1.0, 'even': 1.0, 'hours': 1.0, 'complicate': 1.0, 'every': 1.0, 'care': 1.0, 'take': 1.0, 'have': 1.0, 'complicated': 1.0, 'little': 1.0, 'life': 1.0, 'to': 4.0, 'all': 1.0, 'wood': 1.0, 'impossible': 1.0, 'instead': 1.0, 'use': 1.0, 'improve': 1.0, 'and': 3.0, 'do': 1.0, 'its': 1.0, 'look': 1.0, 'fancy': 1.0, 'upscale': 1.0, 'first': 1.0, 'item': 1.0, 'at': 1.0, 'expect': 1.0, 'it': 3.0, 'looks': 1.0, 'order': 1.0, 'beauty': 1.0, 'detail': 1.0, 'if': 2.0, 'be': 1.0, 'ikea': 1.0, 'is': 4.0, 'more': 3.0, 'of': 1.0, 'sight': 1.0, 'the': 4.0, 'cardboard': 2.0, 'back': 1.0, '2': 1.0, 'work': 1.0, 'guide': 1.0, 'but': 3.0, 'terrible': 1.0, 'compare': 1.0, 'bad': 1.0, 'you': 3.0, 'won': 1.0, 'see': 1.0, 'could': 1.0, 't': 3.0, 'a': 2.0, 'assemble': 1.0, 'for': 4.0, 'last': 1.0, 'good': 1.0, 'in': 2.0, 'your': 1.0, 'this': 3.0, 'kids': 1.0, 'quality': 2.0, 'baby': 1.0, 'assembly': 1.0, 'materials': 1.0, 'don': 2.0, 'producers': 1.0, 'room': 1.0, 'ok': 1.0}
Word element => {'built': 1.0, 'understood': 1.0, 'good': 1.0, 'beautiful': 1.0, 'was': 1.0, 'look': 1.0, 'it': 2.0, 'n': 1.0, 'this': 1.0, 'hope': 1.0, 'by': 1.0, 't': 2.0, 'i': 4.0, 'in': 1.0, 'believed': 1.0, 'understand': 1.0, 'reading': 1.0, 'about': 1.0, 'don': 1.0, 'instructions': 3.0, 'on': 2.0, 'pretty': 2.0, 'people': 1.0, 'slow': 1.0, 'door': 1.0, 'how': 1.0, 'am': 1.0, 'chest': 1.0, 'other': 2.0, 'simple': 1.0, 'then': 2.0, 'please': 1.0, 'hrs': 1.0, 'complain': 1.0, 'wit': 1.0, 'the': 2.0, 'myself': 1.0, 'room': 1.0, 'reviews': 1.0, 'they': 1.0, 'that': 2.0, 'aren': 1.0, '2': 1.0, 'but': 1.0, 'anyways': 1.0, 'my': 1.0, 'less': 1.0, 'made': 1.0}
Word element => {'very': 1.0, 'size': 1.0, 'nice': 2.0, 'looked': 1.0, 'adjusts': 1.0, 'drawers': 1.0, 'together': 1.0, 'assembly': 1.0, 'helpful': 1.0, 'cost': 1.0, 'would': 1.0, 'and': 1.0, 'heads': 1.0, 'calm': 1.0, 'patience': 1.0, 'take': 1.0, 'does': 3.0, 'really': 1.0, 'aware': 1.0, 'were': 1.0, 'pieces': 1.0, 'easily': 1.0, 'when': 1.0, 'again': 1.0, 'arrived': 1.0, 'looks': 1.0, 'it': 8.0, 'doing': 1.0, 'this': 2.0, 'nicely': 2.0, 'heavy': 1.0, 'first': 1.0, 'of': 1.0, 'there': 2.0, 'problem': 1.0, 'huge': 1.0, 'just': 1.0, 'reordered': 1.0, 'in': 1.0, 'apart': 1.0, 'so': 2.0, 'time': 2.0, 'job': 1.0, 'the': 8.0, 'assembled': 1.0, 'chest': 1.0, 'awhile': 1.0, 'shipping': 2.0, 'received': 1.0, 'door': 2.0, 'around': 1.0, 'is': 3.0, '2010': 1.0, 'jan': 1.0, 'a': 2.0, 'see': 1.0, 'torn': 1.0, 'fyi': 1.0, 'two': 1.0, 'i': 5.0, 'that': 2.0, 'box': 2.0, 'glide': 1.0, 'falls': 1.0, 'during': 1.0, 'recently': 1.0, 'should': 1.0, 'be': 3.0, 'addressed': 1.0, 'was': 3.0, 'had': 1.0, 'all': 1.0, 'to': 3.0, 'sent': 1.0, 'not': 1.0, 'notified': 1.0, 'back': 1.0, 'but': 3.0, 'before': 1.0, 'even': 1.0, 'got': 1.0, 'call': 1.0, 'for': 2.0, 'fit': 1.0, 'assemble': 1.0, 'where': 1.0}
Word element => {'not': 1.0, 'up': 1.0, 'fixtures': 1.0, 'screws': 1.0, 'some': 1.0, 'do': 1.0, 'and': 2.0, 'the': 1.0, 'nicely': 1.0, 'very': 1.0, 'line': 1.0, 'finished': 1.0, 'shippedhowever': 1.0, 'good': 1.0, 'instructions': 1.0, 'goes': 1.0, 'tell': 1.0, 'are': 1.0, 'packed': 1.0, 'it': 2.0, 'doesnt': 1.0, 'even': 1.0, 'you': 1.0, 'which': 1.0, 'where': 1.0, 'confusing': 1.0, 'vs': 1.0, 'looks': 1.0, 'side': 1.0, 'unfinished': 1.0}
Word element => {'assembly': 1.0, 'easy': 1.0, 'in': 2.0, 'worried': 1.0, 'though': 1.0, 'for': 1.0, 'theme': 1.0, 'fit': 2.0, 'won': 1.0, 'that': 1.0, 'my': 2.0, 't': 1.0, 'the': 1.0, 'seashores': 1.0, 'to': 1.0, 'was': 2.0, 'i': 1.0, 'even': 1.0, 'quick': 1.0, 'this': 1.0, 'it': 2.0, 'is': 1.0, 'a': 1.0, 'nursery': 1.0, 'bathroom': 2.0, 'of': 1.0, 'and': 1.0, 'delivery': 1.0}
Word element => {'of': 1.0, 'waste': 1.0, 'money': 1.0, 'it': 1.0, 'day': 1.0, 'in': 1.0, 'off': 1.0, 'comes': 1.0, 'a': 2.0, 'don': 1.0, 't': 1.0, 'buy': 1.0, 'total': 1.0, 'locks': 1.0, 'these': 1.0, 'they': 1.0, 'do': 1.0, 'was': 1.0, 'work': 1.0, 'not': 1.0, 'the': 1.0, 'adhesive': 1.0}
Word element => {'either': 1.0, 'to': 1.0, '2nd': 1.0, 'mat': 2.0, 'mats': 1.0, 'a': 2.0, 'play': 1.0, 'no': 3.0, 'two': 1.0, 'only': 1.0, 'this': 1.0, 'it': 1.0, 'affix': 1.0, 'tray': 1.0, 'is': 1.0, 'includes': 1.0, 'what': 1.0, 'you': 2.0, 'holes': 1.0, 'the': 2.0, 'small': 1.0, '34': 2.0, 'says': 1.0, 'seems': 1.0, 'in': 1.0, 'sensory': 1.0, 'toy': 3.0, 'description': 1.0, 'not': 1.0, 'and': 3.0, 'get': 2.0}
Word element => {'desirable': 1.0, 'it': 1.0, 'price': 1.0, 'its': 1.0, 'combination': 1.0, 'i': 1.0, 'assembly': 1.0, 'this': 1.0, 'make': 1.0, 'the': 3.0, 'in': 1.0, 'which': 1.0, 'design': 1.0, 'to': 1.0, 'product': 1.0, 'compact': 1.0, 'size': 1.0, 'like': 1.0, 'and': 1.0, 'easy': 1.0, 'of': 1.0}
Word element => {'anyway': 1.0, 'it': 1.0, 'would': 1.0, 'kiddo': 1.0, 'mat': 1.0, 'place': 1.0, 'my': 1.0, 'the': 2.0, 'is': 1.0, 'take': 1.0, 'took': 1.0, 'tray': 1.0, 'toys': 1.0, 'because': 1.0, 'off': 2.0, 'for': 1.0, 'i': 1.0, 'or': 1.0, 'perfect': 1.0, 'snacks': 1.0}
Word element => {'that': 1.0, 'than': 1.0, 'other': 1.0, 'way': 1.0, 'this': 1.0, 'sold': 1.0, 'they': 1.0, 'if': 1.0, 'and': 1.0, 'is': 1.0, 'tray': 2.0, 'could': 1.0, 'like': 1.0, 'be': 1.0, 'easy': 1.0, 'use': 2.0, 'separately': 1.0, 'perfect': 1.0, 'to': 4.0, 'was': 1.0, 'would': 1.0, 'have': 1.0, 'able': 1.0, 're': 1.0, 'my': 1.0, 'great': 1.0, 'ones': 1.0, 'the': 3.0, 'more': 1.0, 'clean': 1.0, 'multiple': 1.0, 'daughter': 1.0, 'i': 3.0, 'buy': 1.0, 'up': 1.0, 'of': 1.0, 'love': 1.0, 'for': 1.0, 'mats': 1.0}
Word element => {'there': 1.0, 'be': 1.0, 'happy': 1.0, 'once': 1.0, 'when': 1.0, 'them': 1.0, 'squish': 1.0, 'so': 1.0, 'legs': 1.0, 'has': 1.0, 'side': 1.0, 'is': 2.0, 'plop': 1.0, 'kept': 1.0, 'he': 4.0, 'it': 2.0, 'only': 1.0, 'but': 2.0, 'his': 1.0, 'other': 1.0, 's': 2.0, 'we': 3.0, 'leaning': 1.0, 'goes': 1.0, 'or': 2.0, 'love': 1.0, 'for': 1.0, 'i': 2.0, 'bebepod': 1.0, 'old': 1.0, 'to': 3.0, 'now': 1.0, 'the': 5.0, 'in': 1.0, 'cry': 1.0, 'and': 4.0, 'under': 1.0, 'son': 2.0, '9': 1.0, 'problem': 1.0, 'chubby': 1.0, 'tray': 3.0, 'one': 1.0, 'months': 1.0, 'put': 1.0, 'on': 2.0, 'just': 2.0, 'toys': 2.0, 'then': 1.0, 'would': 1.0, 'my': 2.0, 'eventually': 1.0, 'reaching': 1.0, 'out': 1.0, 'give': 1.0, 'up': 1.0, 'set': 1.0, 'loves': 1.0, 'that': 2.0, 'have': 2.0, 'some': 1.0, 'crazy': 1.0}
Word element => {'doing': 1.0, 'keep': 1.0, 'we': 1.0, 'long': 1.0, 'as': 2.0, 'last': 1.0, 'like': 1.0, 'soft': 1.0, 'still': 1.0, 'hot': 1.0, 'and': 2.0, 'done': 1.0, 'seems': 1.0, 'in': 1.0, 'wash': 1.0, 'so': 2.0, 'to': 3.0, 'be': 2.0, 'much': 1.0, 's': 2.0, 'are': 1.0, 'cold': 2.0, 'will': 1.0, 'diapers': 1.0, 'put': 1.0, 'but': 1.0, 'cover': 1.0, 'which': 1.0, 'nice': 2.0, 'is': 1.0, 'pain': 1.0, 'on': 3.0, 'with': 1.0, 'it': 7.0, 'this': 1.0, 'i': 1.0, 'cloth': 1.0, 'would': 1.0, 'able': 1.0, 'the': 1.0, 'diaper': 1.0, 'more': 1.0, 'a': 2.0, 'convenient': 1.0}
Word element => {'cover': 1.0, 'loves': 1.0, 'for': 1.0, 'table': 1.0, 'since': 1.0, 'a': 1.0, 'got': 1.0, 'on': 1.0, 'expecting': 1.0, '2nd': 1.0, '18': 1.0, 'finally': 1.0, 'we': 2.0, 'soft': 1.0, 'nice': 1.0, 'and': 1.0, 'comfy': 1.0, 'my': 1.0, 'are': 1.0, 'old': 1.0, 'very': 1.0, 'changing': 1.0, 'son': 1.0, 'our': 1.0, 'this': 1.0, 'with': 1.0, 'it': 2.0, 'mos': 1.0, 'he': 1.0}
Word element => {'fits': 1.0, 'one': 1.0, 'again': 1.0, 'buy': 1.0, 'would': 1.0, 'definitely': 1.0, 'the': 1.0, 'it': 2.0, 'nice': 1.0, 'long': 1.0, 'washer': 1.0, 'soft': 1.0, 'and': 2.0, 'washes': 1.0, 's': 1.0, 'also': 1.0, 'super': 1.0, 'well': 2.0, 'in': 1.0}
Word element => {'recommend': 1.0, 'definitely': 1.0, 'contour': 1.0, 'the': 1.0, 'fits': 1.0, 'pad': 1.0, 'this': 2.0, 'item': 2.0, 'exactly': 1.0, 'would': 1.0, 'was': 1.0, 'expected': 1.0, 'what': 1.0, 'i': 2.0, 'perfectly': 1.0, 'changing': 1.0, 'it': 1.0, 'is': 1.0, 'soft': 1.0, 'and': 1.0}
Word element => {'cleanable': 1.0, 'so': 1.0, 'and': 1.0, 'floors': 1.0, 'story': 1.0, 'on': 2.0, 'is': 3.0, 'place': 2.0, 'to': 1.0, 'an': 1.0, 'item': 1.0, 'great': 2.0, 'it': 2.0, 'changing': 2.0, 'a': 2.0, 'another': 1.0, 'floor': 1.0, 'soft': 1.0, 'easy': 1.0, 'home': 1.0, 'bed': 1.0, 'for': 2.0, 'comfortable': 1.0, 'in': 1.0, 'also': 1.0, 'no': 1.0, 'safe': 1.0, 'two': 1.0}
Word element => {'further': 1.0, 'prevent': 1.0, 'fabric': 1.0, 'stitch': 1.0, 'and': 1.0, 'am': 1.0, 'stitching': 1.0, 'exterior': 1.0, 'on': 1.0, 'well': 1.0, 'additional': 1.0, 'stroller': 1.0, 'bottom': 1.0, 'inside': 1.0, 'but': 1.0, 'cover': 1.0, 'the': 7.0, 'during': 1.0, 'going': 1.0, 't': 1.0, 'we': 1.0, 'bought': 1.0, 'disney': 1.0, 'learning': 1.0, 'first': 1.0, 'it': 3.0, 'with': 1.0, 'how': 1.0, 'back': 1.0, 'bother': 1.0, 'world': 1.0, 'shown': 1.0, 'fit': 2.0, 'for': 1.0, 'trip': 2.0, 'try': 1.0, 'much': 1.0, 'was': 1.0, 'after': 1.0, 'so': 1.0, 'i': 1.0, 'two': 1.0, 'is': 1.0, 'this': 1.0, 'kids': 1.0, 'provided': 1.0, 'impossible': 1.0, 'even': 1.0, 'picture': 1.0, 'get': 1.0, 'into': 1.0, 'packaging': 1.0, 'damage': 1.0, 'over': 1.0, 'don': 1.0, 'trying': 1.0, 'our': 3.0, 'to': 4.0, 'as': 1.0, 'rains': 1.0, 'in': 1.0, 'along': 1.0, 'did': 1.0, 'rip': 1.0}
Word element => {'stroller': 1.0, 'the': 1.0, 'for': 1.0, 'great': 1.0, 'double': 1.0, 'works': 1.0}
Word element => {'doesn': 1.0, 'even': 1.0, 's': 1.0, 'gotten': 1.0, 'overall': 1.0, 'do': 1.0, 'secure': 1.0, 'supposedly': 1.0, 'straps': 1.0, 'served': 1.0, 'pull': 1.0, 'right': 1.0, 'for': 2.0, 'didn': 1.0, 'fit': 3.0, 't': 2.0, 'we': 5.0, 'going': 1.0, 'hanging': 1.0, 'point': 1.0, 'wind': 2.0, 'some': 1.0, 'knew': 1.0, 'space': 1.0, 'since': 1.0, 'keep': 1.0, 'deluxe': 2.0, 'at': 2.0, 'handle': 1.0, 'unpredictable': 1.0, 'trend': 2.0, 'back': 3.0, 'disneyworld': 1.0, 'faces': 1.0, 'ripped': 1.0, 'cover': 1.0, 'squished': 1.0, 'off': 1.0, 'rain': 1.0, 'it': 13.0, 'this': 1.0, 'baby': 2.0, 'seam': 1.0, 'money': 1.0, 'bought': 1.0, 'rained': 1.0, 'next': 1.0, 'into': 2.0, 'because': 1.0, 'that': 3.0, 'stroller': 5.0, 'our': 3.0, 'tandem': 1.0, 'fold': 1.0, 'serious': 1.0, 'shield': 1.0, 'were': 1.0, 'pretty': 1.0, 'to': 7.0, 'high': 1.0, 'from': 2.0, 'purpose': 1.0, 'not': 1.0, 'dry': 1.0, 'its': 1.0, 'had': 1.0, 'get': 2.0, 'trip': 1.0, 'and': 5.0, 'exactly': 1.0, 'would': 1.0, 'hard': 1.0, 'over': 1.0, 'takes': 1.0, 'up': 1.0, 'flight': 1.0, 'on': 3.0, 'during': 1.0, 'though': 2.0, 'again': 1.0, 'folded': 1.0, 'when': 1.0, 'was': 1.0, 'also': 1.0, 'strapped': 1.0, 'perfectly': 1.0, 'there': 1.0, 'a': 2.0, 'small': 1.0, 'have': 3.0, 'i': 4.0, 'catches': 1.0, 'canvas': 1.0, 'bag': 1.0, 'kept': 2.0, 'onto': 1.0, 'the': 14.0, 'of': 2.0, 'works': 1.0, 'days': 1.0, 'boys': 2.0, 'are': 1.0, 'caught': 1.0, 'out': 1.0, 'in': 2.0, 'worth': 1.0, 'air': 1.0, 'impossible': 1.0, 'weather': 1.0, 'great': 1.0, 'but': 1.0, 'underneath': 1.0}
Word element => {'miney': 1.0, 'your': 1.0, 'save': 1.0, 'even': 1.0, 'policy': 1.0, 'return': 1.0, 'completely': 1.0, 'com': 1.0, 'or': 1.0, 'ridiculous': 1.0, 'i': 1.0, 'worse': 2.0, 'is': 1.0, 'which': 1.0, 'item': 1.0, 'know': 1.0, 'and': 1.0, 'baby': 1.0, 'don': 1.0, 'doesn': 1.0, 'haven': 1.0, 't': 2.0, 'the': 1.0, 'tape': 1.0, 'stick': 1.0, 'this': 1.0, 'it': 1.0, 's': 1.0, 'their': 1.0}
Word element => {'another': 1.0, 'on': 1.0, 'can': 1.0, 'a': 1.0, 'dropped': 1.0, 'the': 2.0, 'my': 1.0, 'in': 1.0, 'love': 3.0, 'one': 1.0, 'for': 1.0, 'top': 1.0, 'stove': 1.0, 'i': 3.0, 'does': 1.0, 'bought': 1.0, 'product': 1.0, 'mounted': 1.0, 'purchased': 1.0, 'adhesive': 1.0, 'glue': 1.0, 'is': 1.0, 'not': 1.0, 'hold': 1.0, 'an': 1.0, 'but': 1.0, 'super': 1.0, 'cracked': 1.0, 'counter': 1.0, 'this': 1.0, 'it': 7.0, 'and': 2.0, 'amazing': 1.0}
Word element => {'hope': 1.0, 'choose': 1.0, 'enjoying': 1.0, 'them': 1.0, 'faces': 1.0, 'starbucks': 1.0, 'coffee': 1.0, 'sipping': 1.0, 'hired': 1.0, 'while': 1.0, 've': 1.0, 'europe': 1.0, 'nobody': 1.0, 'went': 1.0, 'turned': 1.0, 'were': 1.0, 'heads': 1.0, 'sturdy': 1.0, 'much': 1.0, 'comfortably': 1.0, 'works': 1.0, 'errands': 1.0, 'use': 1.0, 'every': 1.0, 'thinks': 1.0, 'certainly': 1.0, 'fits': 1.0, 'stars': 1.0, '4': 1.0, 'gave': 1.0, 'thing': 1.0, 'lift': 1.0, 'curves': 1.0, 'turns': 1.0, 'apply': 1.0, 'road': 1.0, 'people': 2.0, 'handle': 1.0, 'turning': 1.0, 'want': 1.0, 'direct': 1.0, 'bother': 1.0, 'seam': 1.0, 'does': 2.0, 'sides': 1.0, 'maneuver': 1.0, 'hard': 1.0, 'somehow': 1.0, 'was': 2.0, 'minus': 2.0, 'detachable': 1.0, 'itself': 1.0, 'streets': 1.0, 'city': 1.0, 'needs': 1.0, 'traveling': 1.0, 'know': 1.0, 'side': 1.0, 'alone': 1.0, 'take': 1.0, 'unfolded': 1.0, 'travel': 1.0, 'somewhat': 1.0, 'things': 1.0, 'now': 1.0, 'virtually': 1.0, 'done': 1.0, 'directions': 2.0, 'remove': 1.0, 'wish': 1.0, 'have': 1.0, 'found': 1.0, 'hot': 1.0, 'back': 2.0, 'unzip': 1.0, 'sun': 2.0, 'covers': 1.0, 'canopy': 3.0, 'try': 1.0, 'hide': 1.0, 'did': 2.0, 'am': 1.0, 'yet': 2.0, 'car': 2.0, 'small': 2.0, 'trank': 2.0, 'fabric': 1.0, 'into': 2.0, 'google': 1.0, 'search': 1.0, 'those': 3.0, 'ride': 2.0, 'impossible': 2.0, 'they': 1.0, 'comfort': 2.0, 'some': 2.0, 'roll': 1.0, 'pulling': 1.0, 'either': 1.0, 'do': 3.0, 'put': 3.0, 'reveal': 1.0, 'a': 13.0, 'prams': 1.0, 'or': 3.0, 'sell': 1.0, 'obstacles': 1.0, 'open': 1.0, 'think': 1.0, 'example': 1.0, 'any': 1.0, 'pretty': 1.0, 'to': 24.0, 'space': 1.0, 'forget': 1.0, 'day': 2.0, 'since': 4.0, 'sure': 3.0, 'store': 2.0, 'cadillac': 1.0, 'cot': 1.0, 'carry': 2.0, 'other': 1.0, 'you': 19.0, 'great': 1.0, 'if': 6.0, 'running': 1.0, 'flat': 1.0, 'last': 1.0, 'reclines': 1.0, 'others': 1.0, 'something': 1.0, 'buy': 1.0, 'good': 1.0, 'products': 1.0, 'compromising': 1.0, 'on': 4.0, 'long': 1.0, 'make': 1.0, 'well': 2.0, 'i': 26.0, 'has': 2.0, 'days': 1.0, 'asked': 1.0, '1': 1.0, 'tell': 2.0, 'herself': 1.0, 'god': 1.0, 'large': 3.0, 'perfectly': 1.0, 'there': 3.0, 'wheals': 1.0, 'feel': 2.0, 'fanny': 1.0, 'where': 2.0, 'many': 2.0, 'your': 2.0, 'big': 1.0, 'nice': 3.0, 'suv': 2.0, 'wide': 1.0, 'walks': 1.0, 'around': 2.0, 'perfect': 1.0, 'more': 1.0, 'completely': 2.0, 'at': 3.0, 'seat': 7.0, 'air': 2.0, 'using': 1.0, 'direction': 1.0, 'with': 8.0, 'this': 16.0, 'be': 4.0, 'it': 23.0, 'ross': 1.0, 'terrain': 1.0, 'swivels': 1.0, 'year': 1.0, 'insert': 1.0, 'stroller': 21.0, 'lot': 2.0, 'shopping': 2.0, 'got': 2.0, 'one': 3.0, 'ones': 1.0, 'all': 3.0, 'way': 1.0, 'but': 6.0, 'rolled': 2.0, 'turn': 2.0, 'is': 25.0, 'can': 6.0, 'so': 7.0, 'spaces': 2.0, 'without': 3.0, 'cots': 1.0, 'wheels': 2.0, 'talking': 1.0, 'ever': 1.0, 's': 3.0, 'ago': 2.0, 't': 4.0, 'tiny': 1.0, 'along': 1.0, 'fit': 2.0, 'mighty': 1.0, 'sitting': 1.0, 'need': 3.0, 'also': 3.0, 'that': 7.0, 'because': 3.0, 'everywhere': 1.0, 'first': 1.0, 'lock': 1.0, 'folded': 1.0, 'huge': 5.0, 'pumped': 1.0, 'and': 24.0, 'just': 4.0, 'shoppers': 1.0, 'by': 3.0, 'heels': 1.0, 'born': 1.0, 'believe': 1.0, 'the': 47.0, 'even': 2.0, 'old': 1.0, 'of': 10.0, 'find': 1.0, 'why': 1.0, 'very': 4.0, 'secure': 1.0, 'will': 8.0, 'separately': 1.0, 'about': 3.0, '3': 2.0, 'too': 1.0, 'walk': 2.0, 'tagging': 1.0, 'whole': 1.0, 'less': 1.0, 'as': 6.0, 'suspension': 1.0, 'beautiful': 1.0, 'mesh': 1.0, 'like': 4.0, 'few': 1.0, 'englacha': 1.0, 'times': 1.0, 'years': 2.0, 'no': 1.0, 'are': 3.0, 'my': 6.0, 'me': 5.0, 'making': 3.0, 'easily': 2.0, 'looks': 2.0, 'children': 1.0, 'part': 1.0, 'baby': 8.0, 'classic': 2.0, 'owed': 1.0, 'chassis': 2.0, 'ventilation': 1.0, 'not': 7.0, 'thought': 2.0, 'pram': 2.0, 'models': 1.0, 'sharp': 2.0, 'new': 1.0, 'liked': 1.0, 'appears': 1.0, 'bit': 1.0, 'then': 1.0, 'peg': 2.0, 'perego': 2.0, 'storage': 3.0, 'under': 1.0, 'roads': 1.0, 'an': 3.0, 'basket': 1.0, 'nothing': 1.0, 'would': 3.0, 'enough': 1.0, 'tight': 2.0, 'compare': 1.0, 'size': 2.0, 'plico': 1.0, 'her': 1.0, 'mom': 1.0, 'little': 1.0, 'p3': 1.0, 'purchased': 1.0, 'go': 4.0, 'extraordinary': 1.0, 'similar': 1.0, 'for': 15.0, 'marshals': 1.0, 'second': 1.0, 'what': 4.0, 'front': 3.0, 'don': 3.0, 'smaller': 1.0, 'swivel': 2.0, '2': 1.0, 'leave': 1.0, 'going': 1.0, 'pass': 2.0, 'wise': 1.0, 'option': 2.0, 'in': 12.0, 'entrance': 1.0, 'from': 3.0, 'monster': 1.0, 'avoiding': 1.0, 'dirty': 1.0, 'trying': 2.0, 'able': 3.0, 'get': 1.0, 'when': 4.0, 'thats': 1.0, 'child': 2.0, 'mine': 1.0, 'tall': 1.0, 'including': 1.0, 'smooth': 1.0, 'groceries': 1.0, 'clothes': 1.0}
Word element => {'sit': 1.0, 'wed': 1.0, 'nfl': 1.0, 'then': 1.0, '10': 1.0, 'and': 1.0, 'gets': 1.0, 'cheaper': 1.0, 'here': 1.0, 'till': 1.0, 'baby': 2.0, 'mom': 1.0, 'for': 1.0, 'the': 1.0, 'my': 2.0, 'shower': 1.0, 'brother': 1.0, 't': 1.0, 'love': 1.0, 'it': 1.0, 'can': 1.0, 'wait': 1.0}
Word element => {'puppets': 1.0, 'other': 1.0, 'the': 1.0, 'about': 1.0, 'sure': 1.0, 'am': 1.0, 'product': 1.0, 'a': 1.0, 'good': 1.0, 'not': 3.0, 'would': 2.0, 'as': 2.0, 'quality': 1.0, 'i': 2.0, 'expect': 1.0, 'from': 1.0, 'baby': 1.0, 'again': 1.0, 'buy': 1.0, 'einstein': 1.0}
Word element => {'out': 1.0, 'got': 1.0, 'because': 1.0, 'one': 2.0, 'another': 1.0, 'buy': 1.0, 'the': 1.0, 'my': 1.0, 'child': 1.0, 'is': 1.0, '7': 1.0, 'he': 1.0, 'loves': 1.0, 'this': 1.0, 'we': 1.0, 'had': 1.0, 'worn': 1.0, 'first': 1.0, 'still': 1.0, 'to': 1.0}
Word element => {'twins': 1.0, 'my': 1.0, 'old': 1.0, 'still': 1.0, '2': 1.0, 'is': 1.0, 'he': 1.0, 'him': 1.0, 'love': 1.0, 'great': 2.0, 'bard': 1.0, 'and': 1.0, 'quality': 1.0, 'i': 1.0, 'conditions': 1.0, 'have': 1.0, 'in': 1.0, 'year': 2.0, 'had': 1.0, 'for': 1.0, 'over': 1.0, 'a': 1.0}
Word element => {'up': 1.0, 'is': 1.0, 'her': 1.0, 'uses': 1.0, 'double': 1.0, 'need': 1.0, 'who': 1.0, 'personal': 1.0, 'baby': 2.0, 'new': 1.0, 'for': 2.0, 'washable': 1.0, 'travel': 1.0, 'bought': 1.0, 'an': 1.0, 'since': 1.0, 'a': 5.0, 'as': 3.0, 'and': 2.0, 'loved': 1.0, 'extremely': 1.0, 'i': 1.0, 'she': 2.0, 'still': 1.0, 'gift': 1.0, 'absolutely': 1.0, 'now': 1.0, 'to': 1.0, 'machine': 1.0, 'bag': 3.0, 'expectant': 1.0, 'light': 1.0, 'this': 1.0, 'it': 2.0, 'with': 2.0, 'all': 2.0, 'grown': 1.0, 'diaper': 1.0, 'mother': 2.0, 'the': 2.0, 'compartments': 1.0}
Word element => {'purchase': 1.0, 'decent': 1.0, 'wheeled': 1.0, 'from': 1.0, 'keeps': 1.0, 'them': 1.0, 'wide': 1.0, 'are': 1.0, 'in': 1.0, 'overall': 1.0, 'running': 1.0, 'tires': 1.0, 'or': 2.0, 'it': 6.0, 'tripping': 1.0, 'excellently': 1.0, 'ground': 1.0, 'of': 1.0, 'up': 2.0, 'but': 3.0, 'stroller': 1.0, 'trouble': 1.0, 'than': 1.0, 'teal': 1.0, 'i': 2.0, 'heavier': 1.0, 'the': 6.0, 'color': 1.0, 'high': 1.0, 'expected': 1.0, 'since': 1.0, 'keep': 1.0, 'image': 1.0, 'was': 2.0, 'to': 2.0, 'open': 1.0, 'ocean': 1.0, 'got': 1.0, 'easy': 1.0, 'and': 2.0, 'very': 1.0, 'trendy': 1.0, 'little': 1.0, 'into': 1.0, 'that': 1.0, 'back': 1.0, 'handle': 1.0, 'bit': 1.0, 'steers': 1.0, 'extra': 1.0, 'unlike': 1.0, 'close': 2.0, 'bars': 1.0, 'is': 2.0, 'curbs': 1.0, 'more': 1.0, 'scrape': 1.0, '3': 1.0, 'stuff': 1.0, 'except': 1.0, 'on': 2.0, 'if': 1.0, 'you': 1.0, 'tipping': 1.0, 'this': 2.0, 'dont': 1.0, 'hold': 1.0, 's': 1.0, 'steps': 1.0, 'a': 4.0, 'going': 1.0}
Word element => {'lots': 1.0, 'cool': 1.0, 'seems': 2.0, 'adjustable': 1.0, 'daughter': 1.0, 'and': 2.0, 'very': 3.0, 'folds': 1.0, 'my': 1.0, 'together': 1.0, 'to': 1.0, 'put': 1.0, 'an': 1.0, 'easy': 2.0, 'it': 2.0, 'compliments': 1.0, 'loves': 1.0, 'handle': 1.0, 'comfortable': 1.0, 'has': 1.0, 'sturdy': 1.0, 'stears': 1.0, 'eaily': 1.0, 'of': 1.0, 'up': 1.0, 'plus': 1.0, 'really': 1.0, 'looks': 1.0}
Word element => {'opposed': 1.0, 'as': 1.0, 'them': 1.0, 'use': 1.0, 'make': 1.0, 'characters': 1.0, 'fun': 1.0, 'hold': 1.0, 'easy': 1.0, 'are': 1.0, 'sesame': 1.0, 'daughter': 1.0, 'the': 1.0, '2': 1.0, 'want': 1.0, 'is': 1.0, 'course': 1.0, 'and': 3.0, 'my': 1.0, 'for': 1.0, 'love': 1.0, 'elmo': 1.0, 'they': 1.0, 'so': 1.0, 'with': 1.0, 'this': 1.0, 'fingers': 1.0, 'to': 3.0, 'was': 1.0, 'a': 1.0, 'in': 1.0, 'street': 1.0, 'perfect': 1.0, 'utensils': 1.0, 'of': 2.0, 'set': 1.0, 'her': 3.0}
Word element => {'product': 1.0, 'still': 1.0, 'is': 1.0, 'whatever': 1.0, 'for': 1.0, 'month': 1.0, 'great': 2.0, 'abby': 1.0, 'set': 2.0, 'works': 1.0, 'what': 1.0, 'son': 2.0, 'loves': 1.0, 'intended': 1.0, 'but': 1.0, 'purple': 1.0, 'exactly': 1.0, '20': 1.0, 'and': 2.0, 'my': 2.0, 'old': 1.0, 'i': 2.0, 'received': 1.0, 'a': 3.0, 'it': 2.0, 'with': 1.0, 'this': 1.0, 'background': 1.0, 'not': 1.0}
Word element => {'hold': 1.0, 'to': 1.0, 'little': 1.0, 'for': 1.0, 'easy': 1.0, 'handles': 1.0, 'and': 1.0, 'one': 1.0, 'i': 1.0, 'love': 1.0, 'my': 1.0, 'are': 1.0, 'the': 3.0, 'this': 1.0, 'juice': 2.0, 'adjustable': 1.0, 'box': 2.0, 'top': 1.0, 'holder': 1.0, 'keeps': 1.0, 'secure': 1.0, 'nice': 1.0}
Word element => {'great': 1.0, 'apart': 1.0, 'can': 1.0, 'old': 1.0, '2yr': 1.0, 'so': 1.0, 'in': 2.0, 'snap': 1.0, 'part': 1.0, 'top': 1.0, 'get': 1.0, 'street': 1.0, 'seems': 1.0, 'also': 2.0, 'product': 1.0, 'expensive': 1.0, 'brands': 1.0, 'son': 1.0, 'all': 2.0, 'to': 3.0, 'as': 1.0, 'is': 1.0, 'really': 1.0, 'take': 1.0, 'many': 1.0, 'and': 1.0, 'with': 1.0, 'this': 1.0, 'awfully': 1.0, 'durable': 1.0, 'problem': 1.0, 'grease': 1.0, 'the': 3.0, 'i': 2.0, 'juice': 3.0, 'however': 1.0, 'squeeze': 1.0, 'like': 3.0, 'has': 2.0, 'it': 8.0, 'solved': 1.0, 'box': 2.0, 'that': 1.0, 'sesame': 1.0, 'characters': 1.0, 'on': 1.0, 'how': 1.0, 'my': 3.0, 'fact': 1.0, 'fits': 1.0, 'different': 1.0, 'sizes': 1.0, 'of': 1.0, 'takes': 1.0, 'boxes': 1.0, 'holder': 1.0, 'elbow': 1.0, 't': 1.0, 's': 1.0, 'a': 2.0, 'very': 1.0, 'little': 1.0}
Word element => {'soon': 1.0, 'more': 1.0, 'ordering': 1.0, 'll': 1.0, 'up': 1.0, 'takes': 1.0, 'worth': 1.0, 'boxes': 2.0, 'no': 1.0, 'bag': 2.0, 'wait': 1.0, 've': 2.0, 'tall': 1.0, 'and': 7.0, 'raises': 1.0, 'accommodates': 1.0, 'gifts': 1.0, 'or': 1.0, 'out': 2.0, 'lifts': 1.0, 'month': 1.0, 'compartment': 2.0, 'inner': 2.0, 'for': 4.0, 'without': 1.0, 'place': 1.0, 'the': 8.0, 'of': 4.0, 'a': 5.0, 'fit': 1.0, 'ago': 1.0, 's': 2.0, 'juice': 4.0, 'holder': 2.0, 'box': 3.0, 'that': 2.0, 'what': 1.0, 'ss': 1.0, 'back': 1.0, 'placement': 1.0, 'shirts': 1.0, 'child': 1.0, 'received': 1.0, 'wonder': 1.0, 'bulky': 1.0, 'either': 1.0, 'weeks': 1.0, 'remember': 1.0, 'squishing': 1.0, 'it': 6.0, 'stained': 1.0, 'already': 1.0, 'easy': 2.0, 'lot': 1.0, 'this': 2.0, 'few': 1.0, 'just': 1.0, 'changed': 1.0, 'diaper': 1.0, 'belongs': 1.0, 'tried': 1.0, 'soaked': 1.0, 'housing': 1.0, 'short': 1.0, 'etc': 1.0, 'put': 1.0, 'strong': 1.0, 'make': 1.0, 'on': 1.0, 'did': 1.0, 'they': 1.0, 'ever': 1.0, 'all': 2.0, 'to': 4.0, 'work': 1.0, 'but': 1.0, 'fine': 1.0, 'lowers': 1.0, 'so': 1.0, 'used': 1.0, 'with': 1.0, 'has': 1.0, 'i': 8.0, 'well': 1.0, 'you': 1.0, 'your': 2.0, 'name': 1.0, 'e': 1.0, 'in': 2.0, 'safe': 1.0, 'must': 1.0, 'my': 3.0, 'busy': 1.0, 'both': 1.0, 'house': 1.0, 'is': 2.0, 'dishwasher': 1.0, 'around': 1.0, 'solid': 1.0, 'handles': 1.0, 'space': 1.0, '24': 1.0, 'old': 1.0, 'carry': 1.0, 'be': 1.0, 'drink': 1.0, 'little': 1.0, 'side': 1.0}
Word element => {'with': 1.0, 'although': 1.0, 'like': 1.0, 'that': 2.0, 'box': 1.0, 'i': 2.0, 'blue': 1.0, 'yellow': 1.0, 'different': 1.0, 'son': 2.0, 'his': 1.0, 'does': 1.0, 'the': 3.0, 'my': 2.0, 'pull': 2.0, 'really': 1.0, 'it': 2.0, 'from': 2.0, 'part': 2.0, 'hard': 1.0, 'size': 1.0, 't': 1.0, 's': 1.0, 'small': 1.0, 'short': 1.0, 'to': 2.0, 'had': 1.0, 'just': 2.0, 'out': 1.0, 'juice': 3.0, 'some': 1.0, 'holder': 1.0, 'likes': 1.0, 'well': 1.0, 'inner': 1.0, 'product': 2.0, 'for': 1.0, 'but': 1.0, 'work': 1.0, 'can': 1.0, 'most': 1.0, 'use': 1.0, 'boxes': 2.0, 'this': 2.0, 'found': 1.0, 'push': 1.0, 'are': 1.0, 'too': 1.0}
Word element => {'somewhere': 1.0, 'them': 1.0, 'm': 1.0, 'down': 1.0, 'slides': 1.0, 'piece': 1.0, 'having': 1.0, 'over': 1.0, 'anyway': 1.0, 'up': 1.0, 'thing': 1.0, 'whole': 1.0, 'spilling': 1.0, 'out': 3.0, 'little': 1.0, 'time': 1.0, 'he': 3.0, 'this': 2.0, 'perfect': 1.0, 'didn': 1.0, 'even': 1.0, 'take': 1.0, 'we': 1.0, 'ago': 1.0, 't': 5.0, 'going': 1.0, 's': 2.0, 'anywhere': 2.0, 'party': 1.0, 'lid': 2.0, 'these': 1.0, 'the': 10.0, 'straw': 1.0, 'one': 1.0, 'selling': 1.0, 'for': 2.0, 'expensive': 1.0, 'dozen': 1.0, 'and': 7.0, 'd': 1.0, 'or': 1.0, 'i': 5.0, 'mess': 1.0, 'buy': 2.0, 'pulling': 1.0, 'extra': 1.0, 'favors': 1.0, 'are': 2.0, 'year': 1.0, 'awesome': 1.0, 'importantly': 1.0, 'as': 2.0, 'hoping': 1.0, 'to': 4.0, 'all': 1.0, 'was': 2.0, 'worth': 1.0, 'now': 2.0, 'handles': 1.0, 'find': 3.0, 'birthday': 1.0, 'so': 1.0, 'can': 4.0, 'but': 1.0, 'money': 1.0, 'got': 1.0, 'juice': 4.0, 'at': 1.0, 'is': 3.0, 'more': 1.0, 'squeeze': 1.0, 'son': 2.0, 'create': 1.0, 'cannon': 1.0, 'lids': 1.0, 'young': 1.0, 'that': 3.0, 'kids': 1.0, 'box': 2.0, 'have': 1.0, 'clean': 1.0, '3rd': 1.0, 'there': 1.0, 'any': 1.0, 'keeps': 2.0, 'it': 3.0, 'him': 1.0, 'from': 2.0, 'yanking': 1.0, 'locking': 2.0, 'most': 1.0, 'making': 1.0, 'with': 1.0, 'they': 1.0, 're': 1.0, 'why': 1.0, 'just': 1.0, 'my': 2.0, 'bases': 1.0, 'a': 6.0, 'imagine': 1.0, 'those': 1.0, 'style': 1.0, 'turn': 1.0, 'still': 1.0, 'if': 1.0}
Word element => {'it': 1.0, 'love': 1.0, 'to': 1.0, 'juice': 1.0, 'clean': 1.0, 'every': 1.0, 'packaging': 1.0, 'size': 1.0, 'easy': 1.0, 'fits': 1.0, 'of': 1.0, 'and': 2.0, 'type': 1.0, 'box': 1.0}
Word element => {'appreciated': 1.0, 'she': 1.0, 'and': 1.0, 'girl': 1.0, 'not': 1.0, 'could': 1.0, 'cute': 1.0, 'find': 1.0, 'my': 1.0, 's': 1.0, 'it': 3.0, 'old': 1.0, 'i': 2.0, '4': 1.0, 'very': 1.0, 'year': 1.0, 'as': 2.0, 'defects': 1.0, 'though': 1.0, 'much': 2.0, 'to': 1.0, 'no': 1.0, 'of': 1.0, 'cat': 1.0, 'real': 1.0, 'gave': 1.0, 'siamese': 1.0, 'course': 1.0, 'a': 1.0}
Word element => {'above': 1.0, 'soft': 1.0, 'expected': 1.0, 's': 1.0, 'i': 2.0, 'picture': 1.0, 'than': 1.0, 'just': 1.0, 'delivered': 1.0, 'it': 2.0, 'this': 1.0, 'and': 2.0, 'like': 1.0, 'fluffy': 1.0, 'which': 1.0, 'for': 1.0, 'was': 2.0, 'hoping': 1.0, 'what': 1.0, 'sooner': 1.0, 'really': 1.0, 'is': 1.0, 'looks': 1.0, 'the': 1.0}
Word element => {'of': 1.0, 'resourceful': 1.0, 'removed': 1.0, 'easily': 1.0, 'other': 1.0, 'to': 1.0, 'crib': 2.0, 'even': 1.0, 'didn': 2.0, 'most': 1.0, 'work': 1.0, 'finding': 1.0, 'so': 1.0, 'kept': 1.0, 'prior': 1.0, 'i': 2.0, 'correctly': 1.0, 'tried': 1.0, 'my': 2.0, 'the': 5.0, 's': 1.0, 't': 2.0, 'a': 1.0, 'bite': 2.0, 'different': 1.0, 'wood': 1.0, 'babies': 1.0, 'that': 1.0, 'by': 1.0, 'few': 1.0, 'more': 1.0, 'is': 3.0, 'son': 2.0, 'from': 1.0, 'rail': 5.0, 'not': 1.0, 'me': 2.0, 'and': 4.0, 'bumper': 2.0, 'perfectly': 1.0, 'wide': 1.0, 'brands': 1.0, 'than': 1.0, 'standard': 1.0, 'attractive': 1.0, 'guards': 2.0, 'on': 3.0, 'snap': 1.0, 'gummy': 1.0, 'has': 1.0, 'fit': 2.0, 'product': 1.0, 'gnawing': 1.0, 'would': 1.0, 'definitely': 1.0, 'ingesting': 1.0, 'recommend': 1.0, 'this': 1.0, 'it': 2.0}
Word element => {'projects': 1.0, 'fun': 1.0, 'it': 2.0, 'with': 2.0, 'used': 1.0, 'his': 1.0, 'play': 2.0, 'addition': 2.0, 'extremely': 1.0, 'in': 4.0, 'i': 2.0, 'tie': 1.0, 'bought': 1.0, 'my': 1.0, 'for': 2.0, 'using': 1.0, 'son': 1.0, 'very': 1.0, 'as': 3.0, 'to': 2.0, 'look': 1.0, 'use': 1.0, 'playdough': 1.0, 'have': 1.0, 'we': 1.0, 'a': 3.0, 'drawstring': 1.0, 'apron': 1.0, 'well': 1.0, 'painting': 1.0, 'off': 1.0, 'this': 2.0, 'drawing': 1.0, 'markers': 1.0, 'wipes': 1.0, 'when': 1.0, 'easily': 1.0, 'playing': 1.0, 'the': 3.0, 'kitchen': 1.0, 'adjustable': 1.0, 'many': 1.0, 'more': 1.0, 'is': 1.0, 'around': 1.0, 'or': 1.0, 'neck': 1.0, 'back': 1.0, 'size': 1.0, 'forward': 1.0}
Word element => {'12x12': 1.0, 'barley': 1.0, '5': 1.0, '12x13': 1.0, 'is': 2.0, 'with': 1.0, 'go': 1.0, 'doesnt': 1.0, 'sizedoing': 1.0, 'were': 1.0, 'and': 3.0, 'butt': 1.0, 'registry': 1.0, 'they': 2.0, 'it': 6.0, 'on': 2.0, 'except': 1.0, 'put': 2.0, 'some': 1.0, 'these': 1.0, 'great': 2.0, 'the': 5.0, 'was': 2.0, 'disapointed': 1.0, 'would': 2.0, 'here': 1.0, 'be': 1.0, 'in': 1.0, 'my': 2.0, 'had': 2.0, 'correct': 1.0, 'two': 1.0, 'i': 2.0, 'got': 2.0, 'picture': 3.0, 'or': 1.0, 'thats': 2.0, 'quite': 1.0, 'are': 2.0, 'this': 3.0, 'full': 2.0, 'product': 2.0, 'actually': 1.0, 'not': 3.0, 'size': 2.0, 'but': 1.0, 'babys': 1.0, 'can': 1.0, 'maybe': 1.0, 'of': 1.0, 'baby': 1.0, 'them': 1.0, 'research': 1.0, '12x12in': 1.0, 'that': 1.0, 'been': 1.0, 'if': 1.0, 'bigger': 1.0, 'tiny': 1.0, 'considering': 1.0, 'price': 1.0, 'im': 1.0}
Word element => {'use': 2.0, 'much': 1.0, 'get': 1.0, 'mid': 1.0, 'table': 1.0, 'out': 1.0, 'soak': 1.0, 'changing': 3.0, 'pee': 1.0, 'the': 5.0, 'these': 2.0, 'great': 1.0, 'work': 1.0, 'but': 1.0, 'change': 1.0, 'many': 1.0, 'is': 1.0, 'multi': 1.0, 'of': 2.0, 'during': 1.0, 'those': 1.0, 'things': 1.0, 'are': 1.0, 'perfect': 2.0, 'lap': 1.0, 'well': 1.0, 't': 1.0, 's': 1.0, 'for': 2.0, 'they': 2.0, 'putting': 1.0, 'i': 3.0, 'under': 1.0, 'baby': 1.0, 'up': 2.0, 'wash': 1.0, 'don': 1.0, 'events': 1.0, 'have': 2.0, 'behind': 1.0, 'held': 1.0, 'ordered': 1.0, 'washings': 1.0, 'almost': 1.0, 'never': 1.0, 'cover': 1.0, 'pad': 2.0, 'because': 1.0, 'to': 3.0, 'pads': 1.0, 'both': 1.0, 'sizes': 1.0, 'size': 2.0}
Word element => {'filling': 1.0, 'what': 1.0, 'not': 1.0, 'lap': 1.0, 'these': 1.0, 'haven': 1.0, 'far': 1.0, 'so': 2.0, 'after': 1.0, '100': 1.0, 'washing': 1.0, 'held': 1.0, 'don': 1.0, 'up': 1.0, 'appears': 1.0, 'pros': 1.0, 'unbleached': 1.0, 'in': 1.0, 'soft': 1.0, 'line': 1.0, 'advertised': 1.0, 'organic': 2.0, 'have': 1.0, 'flannel': 1.0, 'be': 1.0, 'cotton': 2.0, 'quilted': 1.0, 'top': 2.0, 'washedbottom': 1.0, 'remember': 1.0, 'stained': 1.0, 'that': 2.0, 'like': 1.0, 'as': 1.0, 'to': 2.0, 'the': 4.0, 'also': 2.0, 'farcons': 1.0, 'backing': 1.0, 'them': 1.0, 'they': 1.0, 'are': 1.0, 'pill': 1.0, 't': 2.0, 'a': 1.0, 'is': 3.0, 'plan': 1.0, 'very': 1.0, 'little': 1.0, 'layer': 1.0, 'being': 1.0, 'i': 1.0, 'and': 1.0, 'absorbent': 1.0, 'on': 1.0, 'size': 2.0, 'bigger': 1.0, 'keep': 1.0, 'buying': 1.0, 'mind': 1.0}
Word element => {'transfer': 1.0, 'for': 1.0, 'allow': 1.0, 'to': 4.0, 'an': 1.0, 'play': 1.0, 'have': 1.0, 'holding': 2.0, 'he': 1.0, 'uses': 1.0, 'or': 1.0, 'multiple': 1.0, 'pads': 1.0, 'wash': 1.0, 'a': 2.0, 'baby': 2.0, 'bassinet': 1.0, 'sleeps': 1.0, 'unclothed': 1.0, 'after': 1.0, 'his': 1.0, 'before': 1.0, 'even': 1.0, 'these': 1.0, 'the': 1.0, 'smoother': 1.0, 'changing': 1.0, 'from': 1.0, 'as': 1.0}
Word element => {'move': 1.0, 'they': 1.0, 'just': 1.0, '3': 1.0, 'and': 1.0, 'sons': 1.0, 'useless': 1.0, 'my': 1.0, 'crib': 1.0, 'organic': 1.0, 'product': 1.0, 'old': 1.0, 'i': 1.0, 'its': 1.0, 'mo': 1.0, 'was': 1.0, 'made': 1.0, 'the': 1.0, 'nicely': 1.0, 'as': 1.0, 'crumple': 1.0, 'up': 2.0, 'that': 1.0, 'small': 1.0, 'however': 1.0, 'is': 2.0, 'it': 3.0, 'this': 1.0, 'when': 1.0, 'too': 1.0, 'liked': 1.0, 'for': 1.0, 'in': 1.0, 'pad': 1.0, 'use': 1.0, 'a': 1.0, 'spit': 1.0}
Word element => {'needed': 1.0, 'never': 1.0, 'car': 1.0, 'our': 1.0, 'but': 1.0, 'put': 1.0, 'in': 1.0, 'savers': 1.0, 'to': 1.0, 'them': 1.0, 'and': 1.0, 'they': 1.0, 'haven': 1.0, 'versions': 1.0, 'one': 1.0, 'for': 2.0, 'seat': 1.0, 'just': 1.0, 'good': 1.0, 'really': 3.0, 'of': 1.0, 'a': 1.0, 'awhile': 1.0, 're': 1.0, 'use': 1.0, 'loved': 1.0, 'it': 1.0, 'this': 2.0, 'found': 2.0, 'i': 3.0, 'too': 1.0, 'small': 2.0, 'these': 1.0, 't': 1.0, 'the': 1.0, '2': 1.0, 'life': 1.0, 'larger': 1.0, 'be': 1.0, 'product': 1.0}
Word element => {'entirely': 1.0, 'stars': 1.0, 'reason': 1.0, 'are': 1.0, 'quite': 1.0, 'protect': 1.0, 'doubts': 1.0, 'serious': 1.0, 'no': 1.0, 'or': 1.0, 'indispensable': 1.0, 'softness': 1.0, 'affect': 1.0, 'but': 2.0, 'would': 2.0, 'washes': 1.0, 'after': 1.0, 'pilled': 1.0, 'isn': 1.0, 'cotton': 1.0, 's': 1.0, 'a': 7.0, 'we': 2.0, 't': 5.0, 'mat': 6.0, 'little': 2.0, 'breathe': 1.0, 'very': 1.0, 'mattress': 2.0, 'expensive': 2.0, 'share': 1.0, 'where': 1.0, 'for': 1.0, '2': 1.0, 'slightly': 1.0, 'swap': 1.0, 'materials': 1.0, 'position': 1.0, 'new': 1.0, 'prefer': 1.0, 'each': 1.0, 'breastfeeding': 1.0, 'that': 4.0, 'really': 1.0, 'made': 1.0, 'side': 1.0, 'leaks': 2.0, 'protected': 2.0, '5wo': 1.0, 'ordering': 1.0, 'well': 2.0, 'i': 8.0, '4': 3.0, 'mess': 1.0, '100': 1.0, 'another': 2.0, 'my': 2.0, 'laying': 1.0, 'bed': 1.0, 'these': 4.0, 'it': 6.0, 'with': 2.0, 'from': 1.0, 'son': 1.0, 'have': 4.0, 'pack': 1.0, 'simply': 1.0, 'function': 1.0, 'only': 2.0, 'also': 1.0, 'wool': 1.0, 'm': 1.0, 'in': 4.0, 'newborn': 1.0, 'out': 1.0, 'co': 1.0, 'so': 1.0, 'currently': 1.0, 'pads': 1.0, 'to': 1.0, 'saturated': 1.0, 'our': 2.0, 'on': 1.0, 'catch': 1.0, 'countless': 1.0, 'occasions': 1.0, 'wouldn': 1.0, 'didn': 1.0, 'be': 1.0, 'this': 2.0, 'rotation': 1.0, 'morning': 1.0, 'did': 1.0, 'keep': 1.0, 'natural': 2.0, 'of': 4.0, 'the': 11.0, 'up': 1.0, 'laundry': 1.0, 'type': 1.0, 'downside': 1.0, 'sleep': 1.0, 'washer': 1.0, 'is': 6.0, 'many': 1.0, 'baby': 1.0, 'and': 6.0, 'sweats': 1.0, 'blankets': 1.0, 'able': 1.0, 'night': 1.0, 'doesn': 2.0, 'firecracker': 1.0, 'during': 1.0, 'wet': 1.0, 'his': 1.0, 'lot': 1.0, 'one': 2.0, 'etc': 1.0, 'day': 1.0, 'give': 1.0, 'there': 1.0, 'goes': 1.0, 'has': 2.0, 'mats': 1.0, 'if': 2.0, 'stay': 1.0, 'as': 1.0, 'diaper': 1.0, 'body': 1.0, 'heavy': 1.0, 'yes': 1.0}
Word element => {'purchases': 1.0, 'best': 1.0, 'car': 1.0, 'of': 2.0, 'back': 1.0, 'surface': 1.0, 'quick': 1.0, 'or': 1.0, 'floor': 1.0, 'time': 1.0, 'naked': 1.0, 'some': 1.0, 'these': 1.0, 'diaper': 1.0, 'a': 1.0, 'we': 1.0, 'since': 1.0, 'well': 1.0, 'bed': 1.0, 'for': 2.0, 'have': 1.0, 'topper': 1.0, 'i': 2.0, 'drool': 1.0, 'change': 1.0, 'one': 1.0, 'bought': 1.0, 'tummy': 1.0, 'flannel': 1.0, 'my': 3.0, 'changing': 1.0, 'been': 1.0, 'they': 1.0, 'to': 4.0, 'our': 2.0, 'pads': 1.0, 'soft': 1.0, 'catching': 1.0, 'day': 1.0, 'lay': 1.0, 'on': 2.0, 'in': 2.0, 'also': 1.0, 'milk': 1.0, 'and': 2.0, 'give': 1.0, 'needing': 1.0, 'me': 1.0, 'great': 1.0, 'blowout': 1.0, 'the': 5.0, 'without': 1.0, 'cosleep': 1.0, 'sheets': 1.0, 'every': 1.0, 'use': 1.0, 'is': 1.0, 'holds': 1.0, 'up': 1.0, 'rare': 1.0, 'frequent': 1.0, 'washes': 1.0, 'baby': 3.0, 'them': 1.0}
Word element => {'worn': 1.0, 'looked': 1.0, 'on': 1.0, 'fuzz': 1.0, 'little': 1.0, 'really': 1.0, 'balls': 1.0, 'of': 1.0, 'nice': 1.0, 'large': 1.0, 'soon': 1.0, 'pad': 1.0, 'and': 1.0, 'as': 2.0, 'washed': 1.0, 'but': 1.0, 'i': 1.0, 'it': 2.0, 'had': 1.0, 'tons': 1.0}
Word element => {'gifts': 1.0, 'give': 1.0, 'staple': 1.0, 'them': 2.0, 'ours': 1.0, 'bedwettings': 1.0, 'sheets': 1.0, 'toddler': 1.0, 'cover': 1.0, 're': 1.0, 'house': 1.0, 'actually': 1.0, 'such': 1.0, 'for': 2.0, 'number': 1.0, 'infants': 1.0, 'bed': 1.0, 'between': 1.0, 'they': 1.0, 'training': 1.0, 'during': 1.0, 'washing': 2.0, 'potty': 1.0, 've': 2.0, 'super': 1.0, 'each': 2.0, 'sofa': 1.0, 'these': 3.0, 'protect': 1.0, 'minimize': 1.0, 'd': 1.0, 'launder': 1.0, 'our': 2.0, 'mattress': 2.0, 'pain': 1.0, 'kids': 1.0, 'used': 2.0, 'that': 4.0, 'as': 2.0, 'diaper': 2.0, 'than': 1.0, 'reach': 1.0, 'getting': 1.0, 'and': 6.0, 'the': 7.0, 'of': 2.0, 'up': 1.0, 'washable': 1.0, 'softer': 1.0, 'clothes': 1.0, 'with': 4.0, 'absorbant': 1.0, 'we': 4.0, 'a': 2.0, 'furniture': 1.0, 'stuff': 1.0, 'from': 1.0, 'spit': 1.0, 'also': 1.0, 'serve': 1.0, 'least': 1.0, 'drool': 1.0, 'malfunctions': 1.0, 'remove': 1.0, 'i': 4.0, 'pad': 2.0, 'etc': 1.0, 'keep': 2.0, 'dryable': 1.0, 'is': 1.0, 'at': 1.0, 'one': 1.0, 'spare': 1.0, 'in': 4.0, 'other': 1.0, 'an': 1.0, 'car': 1.0, 'consider': 1.0, 'emergency': 1.0, 'blowout': 1.0, 'diapers': 1.0, 'beautifully': 1.0, 'rather': 1.0, 'like': 1.0, 'changing': 1.0, 'much': 1.0, 'get': 1.0, 'wipeable': 1.0, 'bleach': 1.0, 'able': 1.0, 'machine': 1.0, 'to': 4.0, 'high': 1.0, 'heat': 1.0, 'station': 1.0, 'messy': 1.0, 'merely': 1.0, 'bag': 1.0, 'have': 1.0, '12': 1.0, 'this': 1.0, 'rotation': 1.0}
Word element => {'crib': 1.0, 'will': 1.0, 'pristine': 1.0, 'a': 2.0, 'remain': 1.0, 'still': 1.0, 'backs': 1.0, 'probably': 1.0, 'and': 2.0, 'me': 1.0, 'white': 1.0, 'out': 1.0, 'them': 1.0, 'm': 1.0, 'daughter': 1.0, 'though': 1.0, 'buy': 1.0, 'i': 3.0, 'tested': 1.0, 'size': 3.0, 'washings': 1.0, 'my': 1.0, 'smaller': 1.0, 'things': 1.0, 'several': 1.0, 'for': 2.0, 'love': 2.0, 'the': 4.0, 'more': 1.0, 'these': 1.0, 'fan': 1.0, 'is': 1.0, 'big': 1.0, 'as': 1.0, 'this': 1.0, 'with': 2.0, 'only': 2.0, 'her': 1.0, 'even': 1.0, 'top': 1.0, 'soft': 1.0, 'slightly': 1.0, 'has': 2.0, 'pilled': 1.0, 'also': 1.0}
Word element => {'house': 1.0, 'around': 1.0, 'having': 1.0, 'days': 1.0, 'always': 1.0, 'sit': 1.0, 'when': 1.0, 'is': 2.0, 'even': 1.0, 'to': 2.0, 'breastfed': 1.0, 'keep': 1.0, 'baby': 2.0, 'clothes': 1.0, 'oxiclean': 2.0, 'stain': 1.0, 'size': 1.0, 'off': 1.0, 'good': 1.0, 'wash': 1.0, 'use': 1.0, 'my': 1.0, 'another': 1.0, 'right': 1.0, 'table': 1.0, 'like': 1.0, 'be': 2.0, 'no': 1.0, 'super': 2.0, 'would': 1.0, 'upstairs': 1.0, 'stains': 1.0, 'changing': 1.0, 'easily': 1.0, 'because': 1.0, 'that': 4.0, 'into': 1.0, 'review': 1.0, 'maybe': 1.0, 's': 3.0, 'should': 1.0, 'cotton': 1.0, 'substantial': 1.0, 'they': 9.0, 'your': 1.0, 'pretreater': 1.0, 'and': 3.0, 'necessary': 1.0, 'a': 5.0, 'imagine': 1.0, 'comes': 1.0, 'these': 1.0, 'of': 1.0, 'the': 5.0, 'well': 2.0, 'i': 3.0, 'fabric': 1.0, 'for': 3.0, 't': 2.0, 'fit': 1.0, 'with': 1.0, 'pills': 1.0, 'downstairs': 1.0, 'too': 1.0, 'one': 2.0, 'fluffy': 1.0, 'on': 2.0, 'but': 3.0, 'work': 1.0, 'organic': 2.0, 'so': 3.0, 'can': 1.0, 'it': 1.0, 'son': 1.0, 'kudos': 1.0, 'seem': 1.0, 're': 2.0, 'come': 1.0, 'out': 1.0, 'dryer': 1.0, 'doesn': 1.0, 'must': 1.0, 'bag': 1.0, 'puffy': 2.0, 'very': 1.0, 'comfy': 1.0, 'diapers': 1.0, 'poo': 1.0, 'are': 2.0, 'plus': 1.0, 'although': 1.0, 'said': 1.0, 'purchase': 1.0, 'only': 2.0, 'an': 1.0, 'aesthetic': 1.0, 'problem': 1.0, 'con': 1.0, 'easy': 1.0, 'as': 2.0, 'diaper': 1.0}
Word element => {'items': 1.0, 'essential': 1.0, '5': 1.0, 'top': 1.0, 'now': 1.0, 'whim': 1.0, 'registry': 1.0, 'my': 1.0, 'added': 1.0, 'luck': 1.0, 'at': 1.0, 'since': 1.0, 'it': 3.0, 'that': 1.0, 'for': 1.0, 'love': 1.0, 'little': 1.0, 'fabric': 1.0, 'day': 1.0, 'twice': 1.0, 'probably': 1.0, 'and': 3.0, 'new': 1.0, 'in': 2.0, 'try': 1.0, 'judgments': 1.0, 'i': 2.0, 'two': 1.0, 'any': 1.0, 'to': 3.0, 'our': 3.0, 'although': 1.0, 'leaks': 1.0, 'pad': 1.0, 're': 1.0, 'one': 2.0, 'bed': 1.0, 'on': 2.0, 'your': 1.0, 'with': 3.0, 'having': 1.0, 'aside': 1.0, 'package': 1.0, 'organic': 1.0, 'change': 2.0, 'but': 2.0, 'time': 1.0, 'pills': 1.0, 'co': 1.0, 'once': 1.0, 'of': 3.0, 'sleeping': 2.0, 'hours': 1.0, 'packages': 1.0, 'is': 2.0, 'more': 1.0, 'nice': 1.0, 'snoozy': 3.0, 'diaper': 1.0, 'leave': 1.0, 'have': 2.0, 's': 2.0, 'we': 5.0, 'a': 5.0, 'middle': 1.0, 'water': 1.0, 'resistent': 1.0, 'soft': 1.0, 'mattress': 1.0, 'the': 5.0, 'prevents': 1.0, 'ordered': 1.0, 'sheets': 1.0, 'started': 1.0, 'baby': 3.0, 'night': 1.0, 'snoozies': 1.0, 'when': 1.0, 'blowouts': 1.0, 'or': 2.0}
Word element => {'onsies': 1.0, 'cute': 1.0, 'skip': 1.0, 'girls': 1.0, 'my': 1.0, 'something': 1.0, 'that': 1.0, 'from': 1.0, 'many': 1.0, 'so': 1.0, 'saved': 1.0, 'practical': 1.0, 'rug': 1.0, 'use': 1.0, 'of': 1.0, 'around': 1.0, 'for': 1.0, 'bed': 1.0, 'are': 1.0, 'bassinet': 1.0, 'need': 1.0, 'get': 1.0, 'and': 1.0, 'll': 1.0, 'surfaces': 1.0, 'the': 4.0, 'you': 1.0, 'them': 3.0, 'they': 1.0, 'time': 1.0, 'registry': 1.0, 'your': 1.0, 'on': 2.0, 'couch': 1.0, 'this': 1.0, 'put': 2.0, 'house': 1.0, 'twin': 1.0, 'crib': 1.0, 'leakyfaucets': 1.0, 'have': 1.0, 'tummy': 1.0, 'four': 1.0, 'all': 2.0, 'pack': 1.0, 'play': 1.0, 'we': 1.0}
Word element => {'m': 1.0, 'wonderfully': 1.0, 'glad': 1.0, 'hold': 1.0, 'wash': 1.0, 'they': 1.0, 'time': 2.0, 'have': 1.0, 'all': 1.0, 'tummy': 1.0, 'and': 2.0, 'changes': 1.0, 'splurge': 1.0, 'we': 4.0, 'so': 1.0, 'everything': 1.0, 'etc': 1.0, 'what': 1.0, 'didn': 1.0, 'purchase': 1.0, 'use': 1.0, 'realize': 1.0, 'were': 1.0, 'it': 1.0, 'them': 3.0, 'on': 1.0, 'deal': 1.0, 'was': 1.0, 'i': 1.0, 'night': 1.0, 'bed': 1.0, 'for': 1.0, 'a': 2.0, 'middle': 1.0, 'up': 1.0, 'of': 1.0, 't': 1.0, 'great': 1.0, 'these': 1.0, 'diaper': 1.0, 'the': 3.0}
Word element => {'transitioning': 1.0, 'room': 1.0, 'his': 1.0, 'in': 1.0, 'they': 1.0, 'he': 2.0, 'and': 1.0, 'get': 1.0, 'll': 2.0, 'stay': 1.0, 'minor': 1.0, 'but': 1.0, 'doesn': 1.0, 'anymore': 2.0, 'mattress': 1.0, 'soft': 1.0, 'problem': 1.0, 'set': 2.0, 'once': 1.0, 'of': 2.0, 'protectors': 1.0, 'relatively': 1.0, 'baby': 1.0, 'another': 2.0, 'portable': 2.0, 'son': 1.0, 'that': 3.0, 'changing': 2.0, 'very': 1.0, 'while': 2.0, 'these': 1.0, 'the': 5.0, 'is': 1.0, 'around': 1.0, 'tables': 1.0, 're': 1.0, 'enough': 1.0, 'house': 1.0, 'ordering': 1.0, 'love': 1.0, 'supersoft': 1.0, 'texture': 1.0, 'i': 1.0, 'have': 1.0, 'pads': 1.0, 'our': 1.0, 'any': 1.0, 'as': 3.0, 'all': 1.0, 'at': 2.0, 'it': 1.0, 'cotton': 1.0, 'first': 1.0, 'a': 1.0, 'we': 3.0, 't': 2.0, 'pilly': 1.0, 's': 3.0, 'if': 1.0, 'surface': 1.0, 'so': 2.0, 'diapers': 1.0, 'got': 1.0, 'quite': 1.0, 'wash': 1.0, 'out': 2.0, 'need': 1.0, 'bag': 1.0, 'isn': 1.0}
Word element => {'bag': 1.0, 'in': 1.0, 'also': 1.0, 'd': 1.0, 'organic': 1.0, 'are': 1.0, 'my': 1.0, 'a': 2.0, 'mini': 1.0, 'as': 1.0, 'changing': 2.0, 'love': 1.0, 'table': 1.0, 'cosleeper': 1.0, 'pad': 1.0, 'use': 1.0, 'to': 1.0, 'diaper': 1.0, 'great': 1.0, 'the': 1.0, 'nicely': 1.0, 'these': 1.0, 'they': 3.0, 'travel': 1.0, 'be': 1.0, 'bought': 1.0, 'i': 2.0, 'and': 2.0, 'reach': 1.0, 'on': 1.0, 'uses': 1.0, 'arm': 1.0, 's': 1.0, 'fit': 1.0, 'both': 1.0, 'that': 1.0}
Word element => {'highly': 1.0, 'and': 2.0, 'few': 1.0, 'different': 1.0, 'brands': 2.0, 'than': 1.0, 'other': 1.0, 've': 1.0, 'i': 2.0, 'tried': 1.0, 'larger': 1.0, 'soft': 1.0, 'much': 1.0, 'potty': 1.0, 'are': 3.0, 'the': 2.0, 'these': 3.0, 'great': 1.0, 'they': 2.0, 'we': 1.0, 'a': 2.0, 'well': 2.0, 'best': 1.0, 'very': 1.0, 'worked': 1.0, 'recommend': 1.0, 'was': 1.0, 'mats': 1.0, 'expecting': 1.0, 'size': 1.0, 'like': 1.0, 'use': 1.0, 'compared': 1.0, 'waterproof': 2.0, 'definitely': 1.0, 'bought': 1.0, 'with': 2.0, 'to': 3.0, 'as': 1.0, 'our': 2.0, 'diapers': 1.0, 'most': 1.0, 'change': 1.0, 'but': 1.0, 'training': 1.0, 'toddler': 1.0, 'have': 1.0, 'newborn': 1.0, 'out': 1.0}
Word element => {'shrink': 1.0, 'will': 1.0, 'them': 1.0, 'but': 2.0, 'cushiony': 1.0, 'doesn': 1.0, 'put': 1.0, 'on': 2.0, 'waterproof': 1.0, 'bottom': 1.0, 'of': 1.0, 'because': 1.0, 'table': 1.0, 'easy': 1.0, 'changing': 2.0, 'great': 1.0, 'these': 1.0, 'the': 6.0, 'family': 1.0, 'are': 3.0, 'for': 2.0, 'ordered': 1.0, 'dryer': 1.0, 'must': 1.0, 'have': 2.0, 'i': 1.0, 'two': 1.0, 'they': 4.0, 'packs': 1.0, 'if': 1.0, 'soft': 1.0, 'and': 1.0, 'top': 1.0, 'through': 1.0, 'leaks': 1.0, 'or': 1.0, 'while': 1.0, 'she': 1.0, 'it': 1.0, 't': 2.0, 'a': 1.0, 'go': 1.0, 'our': 1.0, 'to': 2.0, 'machine': 1.0, 'pad': 1.0, 'clean': 1.0, 'pees': 1.0, 'in': 2.0, 'wash': 1.0, 'don': 1.0}
Word element => {'in': 1.0, 'bun': 1.0, 'few': 1.0, 'good': 1.0, 'are': 1.0, 'yrs': 1.0, 'buying': 1.0, 'now': 1.0, 'son': 1.0, 'use': 1.0, 'still': 2.0, 'plastic': 1.0, 'than': 1.0, 'first': 2.0, 'for': 4.0, 'sure': 1.0, 'favorite': 1.0, 'kinds': 1.0, 'a': 2.0, 'baby': 1.0, 'been': 1.0, 're': 1.0, 'my': 4.0, 'be': 1.0, 'll': 1.0, 'bought': 1.0, 'old': 1.0, 'i': 3.0, 'oven': 1.0, 'but': 2.0, 'more': 1.0, '2': 2.0, 'ones': 1.0, 'lines': 1.0, 'the': 3.0, 'these': 1.0, 'they': 1.0, 'better': 1.0, 'have': 1.0, 'of': 1.0, 'always': 1.0, 'pads': 1.0, 'soft': 1.0, 'breathe': 1.0, 'couple': 1.0, 'and': 1.0}
Word element => {'intended': 1.0, 'size': 1.0, 'right': 1.0, 'price': 1.0, 'quality': 1.0, 'good': 1.0, 'edging': 1.0, 'just': 2.0, 'edge': 1.0, 'but': 1.0, 'bound': 1.0, 'nicely': 1.0, 'had': 1.0, 'wish': 1.0, 'hard': 1.0, 'with': 1.0, 'n': 2.0, 'use': 1.0, 'horrible': 1.0, 'sheets': 1.0, 'almost': 1.0, 'playard': 1.0, 'twins': 1.0, 'so': 1.0, 'are': 3.0, 'bassinet': 1.0, 'the': 5.0, 'these': 2.0, 'twin': 1.0, 'great': 1.0, 'of': 1.0, 'up': 2.0, 'graco': 1.0, 'that': 1.0, 'bassinets': 1.0, 'stitched': 1.0, 'only': 1.0, 'pack': 2.0, 'have': 2.0, 'for': 3.0, 'fit': 1.0, 'perfectly': 1.0, 'complaint': 1.0, 'and': 3.0, 'play': 2.0, 'lifesaver': 1.0, 'soak': 1.0, 'put': 1.0, 'on': 2.0, 'will': 1.0, 'spit': 1.0, 'our': 1.0, 'to': 2.0, 'pads': 1.0, 'a': 3.0, 'they': 3.0, 'i': 2.0, 'be': 1.0, 'ordering': 1.0, 'hand': 1.0, 'my': 2.0, 'more': 1.0, 'is': 1.0}
Word element => {'them': 1.0, 'this': 1.0, 'register': 1.0, 'who': 1.0, 'something': 1.0, 'new': 1.0, 'get': 1.0, 'to': 1.0, 'all': 1.0, 'spitting': 1.0, 'also': 1.0, 'ended': 1.0, 'about': 1.0, 'don': 1.0, 'up': 2.0, 'of': 3.0, 'moms': 1.0, 'and': 2.0, 'changes': 1.0, 'an': 1.0, 'was': 1.0, 'had': 1.0, 'boy': 1.0, 'they': 1.0, 'infant': 1.0, 'ordered': 1.0, 'laid': 1.0, 'when': 1.0, 'little': 1.0, 'just': 1.0, 'he': 1.0, 'these': 2.0, 'myself': 1.0, 'the': 3.0, 'diaper': 1.0, 'love': 1.0, 'for': 4.0, 'bed': 1.0, 'one': 1.0, 'reflux': 1.0, 'my': 2.0, 'furniture': 1.0, '3': 1.0, 'on': 3.0, 'everything': 1.0, 'bouncer': 1.0, 'are': 1.0, 'size': 1.0, 'but': 1.0, 'can': 1.0, 't': 1.0, 'bedding': 1.0, 'a': 1.0, 'changing': 1.0, 'like': 1.0, 'know': 1.0, 'table': 1.0, 'be': 1.0, 'floor': 1.0, 'always': 1.0, 'couch': 1.0, 'saved': 1.0, 'i': 4.0, 'etc': 1.0, 'sets': 1.0, 'used': 1.0}
Word element => {'ended': 1.0, 'being': 1.0, 'test': 1.0, 'say': 1.0, 'definitely': 1.0, 'would': 1.0, 'another': 1.0, 'purchase': 1.0, 'the': 2.0, 'happy': 1.0, 'am': 1.0, 'overall': 1.0, 'abuse': 1.0, 'how': 1.0, 'using': 1.0, 'hold': 1.0, 'comment': 1.0, 'so': 1.0, 'well': 1.0, 'for': 3.0, 'cushiony': 1.0, 'can': 1.0, 'work': 1.0, 'but': 2.0, 'trouble': 1.0, 'really': 1.0, 'big': 1.0, 'that': 3.0, 'changing': 1.0, 'had': 1.0, 'i': 6.0, 'one': 1.0, 'bought': 2.0, 'disintegration': 1.0, 'use': 2.0, 're': 2.0, 'pad': 1.0, 'too': 1.0, 'and': 4.0, 'a': 1.0, 't': 2.0, 'bunchable': 1.0, 'these': 1.0, 'such': 1.0, 'they': 3.0, 'purpose': 2.0, 'dry': 2.0, 'bassinet': 1.0, 'cold': 1.0, 'mattress': 1.0, 'low': 1.0, 'as': 2.0, 'to': 2.0, 'pads': 1.0, 'line': 1.0, 'haven': 1.0, 'lot': 1.0, 'multi': 1.0, 'of': 1.0, 'with': 2.0, 'liners': 1.0, 'or': 2.0, 'also': 1.0, 'up': 2.0, 'wash': 1.0, 'in': 1.0, 'shrinkage': 1.0, 'things': 1.0, 'on': 2.0}
Word element => {'highly': 1.0, 'too': 1.0, 'wash': 1.0, 'dry': 1.0, 'they': 1.0, 'organic': 1.0, 'soft': 1.0, 'washable': 1.0, 'multitasker': 1.0, 'i': 2.0, 'for': 1.0, 'one': 2.0, 'what': 1.0, 'exactly': 1.0, 'a': 2.0, 'is': 1.0, 'this': 1.0, 'of': 1.0, 'around': 1.0, 'pad': 1.0, 'use': 1.0, 'great': 1.0, 'the': 2.0, 'changing': 1.0, 'recommend': 1.0, 'needed': 1.0, 'table': 1.0, 'and': 2.0, 'house': 1.0}
Word element => {'held': 1.0, 'far': 1.0, 'so': 1.0, 'well': 1.0, 'a': 1.0, 'have': 2.0, 'are': 1.0, 'they': 2.0, 'up': 1.0, 'there': 1.0, 'of': 2.0, 'keep': 1.0, 'soft': 1.0, 'pads': 1.0, 'on': 1.0, 'waterproof': 1.0, 'i': 1.0, 'when': 1.0, 'top': 1.0, 'we': 3.0, 'bit': 1.0, 'bedroom': 1.0, 'very': 1.0, 'changing': 1.0, 'these': 1.0, 'the': 3.0, 'use': 1.0, 'pad': 1.0, 'cover': 1.0, 'and': 2.0, 'padding': 1.0, 'change': 1.0, 'wash': 1.0, 'in': 2.0, 'one': 2.0, 'love': 1.0, 'for': 1.0, 'baby': 1.0}
Word element => {'n': 1.0, 'spray': 1.0, 'less': 1.0, 'wash': 1.0, 'up': 1.0, 'on': 1.0, 'make': 1.0, 'll': 1.0, 'you': 1.0, 'worth': 1.0, 'paint': 1.0, 'markers': 1.0, 'use': 1.0, 'price': 1.0, 'both': 1.0, 'solve': 1.0, 'strings': 1.0, 'tie': 1.0, 'apron': 1.0, 'of': 1.0, 'for': 2.0, 'love': 1.0, 'excellent': 1.0, 'because': 1.0, 'around': 1.0, 'more': 1.0, 'is': 1.0, 'this': 1.0, 'top': 1.0, 'that': 1.0, 'mess': 1.0, 'i': 1.0, 'problems': 1.0, 'old': 3.0, 'we': 1.0, 't': 1.0, 'a': 1.0, '15': 1.0, 'my': 2.0, 'at': 1.0, 'bib': 2.0, 'it': 3.0, 'covers': 1.0, 'month': 1.0, 'spoon': 1.0, 'needs': 1.0, 'year': 1.0, 'from': 1.0, 'bibs': 1.0, 'waist': 1.0, 'all': 1.0, 'was': 1.0, 'low': 1.0, 'her': 1.0, 'long': 1.0, '2': 1.0, 'but': 1.0, 'work': 1.0, 'food': 1.0, 'dropping': 1.0, 'off': 1.0, 'too': 1.0, 'and': 3.0, 'didn': 1.0, 'smudges': 1.0, 'still': 1.0, 'under': 1.0, 'dirty': 1.0, 'length': 1.0, 'the': 9.0, 'playing': 1.0, 'hands': 1.0}
Word element => {'design': 1.0, 'cute': 1.0, 'really': 1.0, 'apron': 1.0, 'cooking': 1.0, 'or': 1.0, 'smock': 1.0, 'while': 1.0, 'dry': 1.0, 'site': 1.0, 'does': 1.0, 'clothes': 1.0, 'keep': 1.0, 'few': 1.0, 'in': 1.0, 'also': 1.0, 'that': 1.0, 'year': 1.0, 'very': 1.0, 's': 2.0, 'a': 1.0, 'her': 1.0, 'different': 1.0, 'water': 1.0, '2': 1.0, 'my': 1.0, 'lightweight': 1.0, 'great': 1.0, 'waterproof': 1.0, 'on': 1.0, 'i': 2.0, 'old': 1.0, 'aprons': 1.0, 'perfect': 1.0, 'this': 2.0, 'it': 3.0, 'what': 1.0, 'purchased': 1.0, 'got': 1.0, 'as': 1.0, 'to': 1.0, 'table': 1.0, 'is': 1.0, 'one': 1.0, 'art': 1.0, 'for': 2.0, 'actually': 1.0, 'playing': 1.0, 'the': 2.0, 'job': 1.0, 'too': 1.0, 'and': 1.0, 'only': 1.0, 'do': 1.0, 'would': 1.0, 'an': 1.0}
Word element => {'used': 1.0, 'either': 1.0, 'complementing': 1.0, 'us': 1.0, 'third': 1.0, 'every': 1.0, 'i': 2.0, 'otherwise': 1.0, 'bugaboo': 3.0, 'practice': 1.0, 'takes': 2.0, 'easy': 2.0, 'be': 1.0, 'can': 1.0, 'mode': 1.0, 'but': 1.0, 'master': 1.0, 'little': 1.0, 'a': 3.0, 't': 1.0, 's': 1.0, 'prefer': 1.0, 'once': 1.0, 'stoping': 1.0, 'begining': 1.0, 'lot': 1.0, 'space': 1.0, 'trips': 1.0, 'folding': 2.0, 'it': 3.0, 'cover': 1.0, 'requires': 1.0, 'reviewer': 1.0, 'my': 2.0, 'asking': 1.0, 'out': 1.0, 'very': 4.0, 'stroll': 1.0, 'manufacturer': 1.0, 'downside': 1.0, 'hand': 1.0, 'reason': 1.0, 'using': 2.0, 'unintentionally': 1.0, 'unfolding': 1.0, 'that': 2.0, 'don': 1.0, 'wash': 1.0, 'hard': 1.0, 'over': 1.0, 'pops': 1.0, 'cheaper': 2.0, 'why': 1.0, 'car': 4.0, 'at': 2.0, 'is': 7.0, 'more': 1.0, 'stroller': 4.0, 'even': 1.0, 'not': 2.0, 'you': 1.0, 'follow': 1.0, 'instructions': 1.0, 'your': 1.0, 'probably': 1.0, 'do': 2.0, 'only': 1.0, 'and': 8.0, 'person': 1.0, 'of': 2.0, 'the': 7.0, 'sear': 1.0, 'they': 1.0, 'both': 1.0, 'comfortable': 1.0, 'for': 3.0, 'baby': 1.0, 'making': 1.0, 'all': 1.0, 'other': 1.0, 'previous': 1.0, 'noise': 1.0, 'after': 1.0, 'this': 1.0, 'few': 1.0, 'months': 1.0, 'usage': 1.0, 'trunk': 1.0, 'seat': 3.0, 'in': 2.0, 'catching': 1.0, 'suv': 1.0, 'side': 1.0, 'plastic': 1.0, 'lock': 1.0, 'are': 1.0, 'somewhat': 1.0, 'feels': 1.0, 'than': 1.0, 'recommend': 1.0, 'on': 2.0, 'long': 1.0, 'eye': 1.0, 'with': 3.0, 'to': 2.0, 'bassinet': 1.0, 'or': 3.0, 'frame': 1.0, 'definitely': 1.0}
Word element => {'a': 1.0, 'gift': 1.0, 'my': 1.0, 'nephew': 1.0, 'seahawks': 1.0, 'wear': 1.0, 'little': 1.0, 'hit': 1.0, 'were': 1.0, 'our': 1.0, 'the': 3.0, 'great': 2.0, 'these': 1.0, 'as': 1.0, 'and': 2.0, 'received': 1.0, 'superbowl': 1.0, 'bibs': 1.0, 'was': 1.0, 'to': 2.0, 'watch': 1.0, 'game': 1.0, 'looked': 1.0, 'he': 1.0, 'with': 1.0, 'winning': 1.0, 'dad': 1.0, 'mom': 1.0}
Word element => {'ones': 1.0, 'militiple': 1.0, 'bought': 1.0, 'and': 1.0, 'love': 1.0, 'mine': 1.0, 'i': 2.0, 'where': 1.0, 'this': 1.0, 'find': 1.0, 'good': 1.0, 'no': 1.0, 'product': 1.0, 'to': 1.0, 'complaints': 1.0, 'particular': 1.0, 'hard': 1.0, 'style': 1.0, 'live': 1.0, 'is': 1.0}
Word element => {'likes': 1.0, 'really': 2.0, 'make': 1.0, 'your': 1.0, 'that': 1.0, 'replace': 1.0, 'cheap': 1.0, 'are': 1.0, 'can': 1.0, 'but': 1.0, 'long': 1.0, 'top': 1.0, 'yes': 1.0, 'liked': 1.0, 'easy': 2.0, '1': 1.0, 'child': 2.0, 'out': 1.0, 'have': 2.0, 'dont': 1.0, 'this': 2.0, 'children': 1.0, 'from': 1.0, 'hard': 1.0, 'only': 1.0, 'tried': 1.0, 'the': 6.0, 'off': 2.0, 'drink': 1.0, 'you': 1.0, 'when': 1.0, 'number': 2.0, 'and': 5.0, 'milk': 2.0, '5': 1.0, 'as': 1.0, 'all': 1.0, 'cups': 1.0, 'our': 1.0, 'to': 5.0, 'was': 1.0, 'at': 2.0, 'transtion': 1.0, 'them': 2.0, 'sippy': 2.0, 'some': 2.0, 'take': 1.0, 'silicon': 1.0, 'year': 1.0, 'is': 4.0, 'fall': 1.0, 'go': 1.0, 'we': 2.0, 'a': 2.0, 'of': 3.0, 'it': 4.0, 'she': 3.0, 'did': 1.0, 'not': 1.0, 'hold': 1.0, 'straws': 1.0, 'like': 1.0, 'they': 2.0, 'suck': 1.0, 'bottle': 2.0, 'so': 2.0, 'last': 1.0, 'her': 2.0, 'longer': 1.0, 'favorite': 1.0, 'worth': 1.0, 'cup': 3.0, 'would': 1.0}
Word element => {'her': 2.0, 'different': 1.0, 'hold': 1.0, 'she': 3.0, 'it': 5.0, 'month': 1.0, 'hands': 1.0, 'easy': 1.0, 'little': 2.0, 'very': 1.0, 'drink': 1.0, 'sipper': 2.0, 'will': 1.0, 'also': 1.0, 'and': 4.0, 'that': 2.0, 'been': 1.0, 'into': 2.0, 'after': 1.0, 'finally': 1.0, 'a': 5.0, 's': 3.0, 'this': 2.0, 'spillage': 1.0, 'my': 2.0, 't': 1.0, 'likes': 1.0, 'winner': 1.0, 'worth': 1.0, 'upright': 1.0, 'the': 9.0, 'of': 4.0, 'variety': 1.0, 'pleased': 1.0, 'sippy': 1.0, 'have': 1.0, 'from': 3.0, 'with': 2.0, 'anytime': 1.0, 'but': 1.0, 'old': 1.0, 'makes': 1.0, 'arm': 1.0, 'which': 1.0, 'happily': 1.0, 'side': 2.0, 'grip': 1.0, 'outstretched': 1.0, 'for': 2.0, '10': 1.0, 'kinds': 1.0, 'oz': 1.0, 'down': 2.0, 've': 2.0, 'cups': 1.0, 'cup': 5.0, 'bottom': 1.0, 'yet': 1.0, 'sports': 1.0, 'is': 2.0, 'right': 1.0, 'isn': 1.0, 'able': 1.0, 'put': 1.0, 'on': 1.0, 'had': 1.0, '13': 1.0, 'no': 2.0, 'even': 1.0, 'when': 1.0, 'flings': 1.0, 'to': 4.0, 'length': 1.0, 'high': 1.0, 'ounce': 1.0, 'chair': 1.0, 'there': 1.0, 'purchase': 1.0, 'only': 1.0, 'measurement': 1.0, 'well': 1.0, 'i': 1.0, 'first': 1.0, 'sport': 1.0, 'pouring': 1.0, 'liquid': 1.0, 'overall': 1.0, 'measuring': 1.0, 'we': 2.0, 'then': 1.0, 'adds': 1.0, 'step': 2.0, 'daughter': 1.0, 'loves': 1.0, 'enjoyment': 1.0, 'particular': 1.0, 'trying': 1.0, 'extra': 1.0}
Word element => {'down': 1.0, 'upside': 1.0, 'drinks': 1.0, 'from': 2.0, 'little': 1.0, 'about': 1.0, 'care': 1.0, 'really': 1.0, 'don': 1.0, 'vent': 1.0, 'so': 1.0, 'leaks': 1.0, 'sometimes': 1.0, 'does': 1.0, 'because': 1.0, 'reason': 1.0, 'lot': 1.0, 'the': 4.0, 'easilysafer': 1.0, 'not': 1.0, 'easy': 1.0, 'poking': 1.0, 'well': 1.0, 'review': 1.0, 'likes': 1.0, 'nuby': 1.0, 'cup': 3.0, 'eye': 1.0, 'pull': 1.0, 'lid': 1.0, 'my': 5.0, 'holdcleans': 1.0, 'sippy': 1.0, 'and': 1.0, 'when': 1.0, '11': 1.0, 'son': 4.0, 'leaking': 1.0, 'was': 1.0, 'now': 1.0, 'old': 1.0, '4': 1.0, 'i': 4.0, 'holds': 1.0, 'is': 2.0, 'this': 1.0, 'with': 2.0, 'liquidthe': 1.0, 'it': 4.0, 'month': 1.0, 'then': 1.0, 'hole': 1.0, 't': 1.0, 'a': 4.0, 'like': 1.0, 'straws': 1.0, 'to': 3.0, 'cups': 2.0, 'prefers': 1.0, 'but': 2.0, 'stars': 1.0, 'for': 1.0, 'love': 2.0, 'afraid': 1.0, 'of': 3.0, 'here': 1.0, 'him': 1.0, 'his': 1.0, 'out': 3.0, 'gave': 1.0, 'that': 1.0, 'straw': 2.0, 'why': 1.0, 'figured': 1.0, 'he': 2.0, 'plastic': 1.0, 'how': 1.0}
Word element => {'week': 1.0, 'had': 1.0, 'his': 1.0, 'in': 1.0, 'teeth': 1.0, 'indented': 1.0, 'something': 1.0, 'besides': 1.0, 'that': 1.0, 'there': 1.0, 'of': 2.0, 'if': 1.0, 'acting': 1.0, 'my': 1.0, 'as': 1.0, 'very': 1.0, 'son': 1.0, 'it': 4.0, 'found': 2.0, 'this': 1.0, 'he': 2.0, 'only': 2.0, 'then': 1.0, 'loved': 1.0, 'than': 1.0, 'chew': 1.0, 'mouth': 1.0, 'first': 1.0, 'unhappy': 1.0, 'but': 1.0, 'was': 1.0, 'at': 1.0, 'where': 1.0, 'product': 1.0, 'and': 3.0, 'small': 1.0, 'with': 1.0, 'piece': 2.0, 'even': 1.0, 'wouldn': 1.0, 'silicone': 1.0, 'on': 2.0, 'the': 2.0, 'could': 1.0, 'a': 3.0, 't': 2.0, 'has': 1.0, 'i': 2.0, 'less': 1.0, 'haven': 1.0, 'seen': 1.0, 'be': 1.0, 'him': 1.0, 'chewing': 1.0, 'came': 1.0, 'couple': 1.0, 'loose': 1.0, 'is': 1.0}
Word element => {'alone': 1.0, 'that': 1.0, 'in': 1.0, 'paid': 1.0, 'at': 1.0, 'arrived': 1.0, 'on': 1.0, 'piece': 1.0, 'nope': 1.0, 'cups': 1.0, 'have': 1.0, 'this': 3.0, 'poorly': 1.0, 'be': 1.0, 'for': 1.0, 'one': 3.0, 'been': 1.0, 'stupidly': 1.0, 'few': 1.0, 'rate': 1.0, 'my': 1.0, 'cup': 1.0, 'amazing': 1.0, 'better': 1.0, 'plastic': 1.0, 'seriously': 1.0, 'because': 1.0, 'just': 3.0, 'had': 1.0, 'shipping': 1.0, 'from': 1.0, 'more': 1.0, 'red': 1.0, 'these': 1.0, 'figured': 1.0, 'the': 1.0, 'based': 1.0, 'of': 2.0, 'photo': 1.0, 'i': 5.0, 'presented': 1.0, 'would': 1.0, 'get': 1.0, 'doorstep': 1.0, 'a': 1.0}
Word element => {'recommend': 1.0, 'i': 1.0, 'at': 2.0, 'frequently': 1.0, 'used': 1.0, 'all': 2.0, 'have': 1.0, 'new': 1.0, 'would': 1.0, 'unfortunate': 1.0, 'is': 1.0, 'became': 1.0, 'on': 1.0, 'they': 1.0, 'our': 1.0, 'full': 1.0, 'boys': 1.0, 'toddlers': 1.0, 'been': 1.0, 'twin': 1.0, 'product': 1.0, 'floor': 1.0, 'bought': 1.0, 'and': 4.0, 'we': 1.0, 'useless': 1.0, 'cup': 2.0, 'my': 1.0, 'the': 2.0, 'cracked': 1.0, 'this': 3.0, 'it': 4.0, 'using': 1.0, 'for': 1.0, 'one': 1.0, 'as': 1.0, 'son': 1.0, 'day': 1.0, 'not': 2.0, 'started': 1.0, 'just': 1.0, 'dropped': 1.0, 'was': 2.0}
Word element => {'not': 1.0, 'apart': 1.0, 'rip': 1.0, 'start': 1.0, 'they': 1.0, 'but': 1.0, 'work': 1.0, 'fall': 1.0, 'is': 1.0, 'after': 2.0, 'leaking': 2.0, 'was': 1.0, 'noticed': 1.0, 'old': 1.0, 'tried': 1.0, 'for': 1.0, 'the': 4.0, 'valve': 1.0, 'these': 1.0, 'nipple': 1.0, 'starts': 1.0, 'my': 1.0, '15': 1.0, 'a': 3.0, 'loves': 1.0, 'until': 1.0, 'or': 1.0, 'to': 3.0, 'as': 1.0, 'from': 1.0, 'gets': 1.0, 'by': 1.0, 'ready': 1.0, 'week': 2.0, 'plastic': 1.0, 'he': 1.0, 'month': 1.0, 'it': 2.0, 'drinking': 1.0, 'material': 1.0, 'breaks': 1.0, 'down': 1.0, 'hazard': 1.0, 'bed': 1.0, 'quickly': 1.0, 'try': 1.0, 'creates': 1.0, 'impressed': 1.0, 'make': 1.0, 'washed': 1.0, 've': 1.0, 'in': 1.0, 'dishwasher': 1.0, 'hand': 1.0, 'and': 3.0, 'choking': 1.0, 'i': 2.0, '4': 1.0, 'good': 1.0, 'different': 1.0, 'times': 1.0}
Word element => {}
Word element => {'laundry': 1.0, 'breastfeeding': 1.0, 'one': 2.0, 'for': 4.0, 'love': 1.0, 'using': 1.0, 'so': 2.0, 'have': 2.0, 'they': 4.0, 'these': 1.0, 'the': 2.0, 'large': 1.0, 'or': 1.0, '5': 1.0, 'compliments': 1.0, 'i': 3.0, 'buy': 1.0, 'of': 2.0, 'available': 1.0, 'very': 2.0, 'as': 1.0, '2': 1.0, 'blankets': 1.0, 'and': 4.0, 'get': 1.0, 'great': 1.0, '1': 1.0, 'each': 1.0, 'a': 2.0, 'cover': 1.0, 're': 4.0, 'often': 1.0, 'my': 1.0, 'floor': 1.0, 'blanket': 2.0, 'them': 2.0, 'baby': 1.0, 'attractive': 1.0, 'on': 1.0, 'soft': 1.0, 'swaddling': 1.0, 'perfect': 1.0, 'in': 1.0, 'everyday': 1.0, 'use': 1.0, 'you': 1.0, 'when': 1.0, 'is': 1.0}
Word element => {'glad': 1.0, 'sleep': 1.0, 'car': 2.0, 'or': 1.0, 'stairs': 1.0, 'city': 2.0, 's': 1.0, 'we': 3.0, 'stroller': 4.0, 'house': 1.0, 'over': 1.0, 'up': 1.0, 'all': 2.0, 'eurotote': 1.0, 'as': 1.0, 'being': 1.0, 'want': 1.0, 'like': 1.0, 'a': 8.0, 'added': 1.0, 'blanket': 1.0, 'this': 5.0, 'effect': 1.0, 'love': 1.0, 'for': 1.0, 'ago': 1.0, 't': 2.0, 'fit': 2.0, 'same': 1.0, 'month': 2.0, 'it': 6.0, 'one': 1.0, 'bought': 1.0, 'down': 2.0, 'carrier': 2.0, 'with': 2.0, 'calms': 1.0, 'have': 1.0, 'and': 4.0, 'quickly': 1.0, 'about': 1.0, 'thing': 1.0, 'no': 1.0, 'my': 2.0, 'b': 1.0, 'longer': 1.0, 'of': 1.0, 'the': 11.0, 'little': 2.0, 'w': 2.0, 'three': 1.0, 'i': 5.0, 'got': 1.0, 'daughter': 1.0, 'seat': 2.0, 'in': 6.0, 'age': 1.0, 'really': 2.0, 'any': 1.0, 'your': 1.0, 'make': 1.0, 'put': 1.0, 'transport': 1.0, 'has': 1.0, 'baby': 3.0, 'jogger': 1.0, 'at': 1.0, 'is': 1.0, 'sleeps': 1.0, 'mini': 2.0, 'double': 2.0, 'they': 1.0, 'time': 1.0, 'so': 2.0, 'didn': 2.0, 'alternative': 1.0, 'old': 1.0, 'adapter': 1.0, 'girl': 1.0, 'safely': 1.0, 'c': 1.0, 'better': 1.0, 'bonus': 1.0, 'be': 1.0, 'able': 1.0, 'supine': 1.0, 'position': 1.0, 'sway': 1.0, 'swaddling': 1.0, 'would': 1.0, 'wanted': 1.0, 'to': 4.0, 'bassinet': 1.0, 'that': 2.0, 'but': 1.0, 'fantastic': 1.0, 'also': 1.0, 'champ': 1.0, 'swaddler': 1.0, 'just': 1.0, 'use': 3.0, 'her': 2.0}
Word element => {'close': 1.0, 'keep': 1.0, 'to': 1.0, 'need': 1.0, 'active': 1.0, 'what': 1.0, 'a': 2.0, 'reviews': 1.0, 'grand': 1.0, 'comfortable': 1.0, 'young': 1.0, 'for': 1.0, 'other': 1.0, 'of': 1.0, 'appearances': 1.0, 'off': 1.0, 'baby': 2.0, 'will': 1.0, 'way': 1.0, 'on': 1.0, 'onjfirst': 1.0, 'this': 1.0, 'it': 1.0, 'the': 1.0, 'great': 1.0, 'seems': 1.0, 'like': 1.0, 'couple': 1.0, 'and': 2.0, 'bought': 1.0, 'be': 1.0, 'just': 1.0}
Word element => {'buy': 1.0, 'would': 1.0, 'heavy': 1.0, 'the': 4.0, 'child': 2.0, 'if': 1.0, 'won': 1.0, 'your': 1.0, 'on': 2.0, 'right': 1.0, 'fit': 1.0, 'leg': 1.0, 'is': 3.0, 'months': 2.0, 'tray': 1.0, 'stay': 1.0, 'good': 1.0, 'loves': 1.0, 'again': 1.0, 'idea': 1.0, 'works': 1.0, 'what': 1.0, 'it': 3.0, 'he': 1.0, '15': 1.0, 'see': 1.0, 'floor': 1.0, 'allows': 1.0, 'doesn': 1.0, 'will': 1.0, 'things': 1.0, 'and': 2.0, 'too': 1.0, 'small': 1.0, 'after': 1.0, 'about': 1.0, 'four': 2.0, 'old': 1.0, 'weighs': 1.0, 'pounds': 1.0, 'i': 1.0, 'be': 1.0, 'him': 1.0, 'seat': 2.0, 'our': 1.0, 'to': 1.0, 't': 2.0, 'a': 1.0, 'going': 1.0, 's': 1.0}
Word element => {'own': 1.0, 'up': 1.0, 'start': 1.0, 'kids': 1.0, 'of': 1.0, 'used': 1.0, 'before': 1.0, 'muscles': 1.0, 'works': 1.0, 'w': 1.0, 'others': 1.0, 've': 1.0, 'it': 3.0, 'outgrow': 1.0, 'i': 3.0, 'six': 1.0, 'on': 1.0, 'think': 1.0, 'or': 1.0, 'like': 1.0, 'using': 1.0, 'for': 1.0, 'the': 4.0, 'problem': 1.0, 'had': 1.0, 'is': 1.0, 'have': 1.0, 'at': 1.0, 'months': 1.0, 'their': 2.0, 'back': 1.0, 'are': 1.0, 'not': 1.0, 'any': 1.0, 'least': 1.0, 'seat': 1.0, 'never': 1.0, 'developed': 1.0, 'enough': 1.0, 'best': 1.0, 'my': 1.0, 'b': 1.0, 'time': 1.0, 'they': 1.0, 'bouncy': 1.0, 'swing': 1.0, 'too': 1.0, 'soon': 1.0, 'and': 1.0, 'sitting': 1.0, 'bumbo': 1.0, 'can': 1.0}
Word element => {'unsafe': 1.0, 'pediatrician': 1.0, 'mention': 1.0, 'going': 1.0, 'feel': 1.0, 'probably': 1.0, 'or': 1.0, 'time': 1.0, 'tummy': 1.0, 'lots': 1.0, 'having': 1.0, 'be': 1.0, 'rather': 1.0, 'would': 1.0, 'of': 2.0, 'the': 8.0, 'problem': 1.0, 'ready': 1.0, 'enough': 1.0, 'build': 1.0, 'wasn': 1.0, 'muscles': 1.0, 'it': 3.0, 'using': 1.0, 'cannot': 1.0, 't': 2.0, 'save': 1.0, '5': 1.0, 'room': 1.0, 'ages': 1.0, 'side': 1.0, 'couldn': 1.0, 'floor': 1.0, 'and': 4.0, 'too': 2.0, 'am': 1.0, 'beginning': 1.0, 'by': 2.0, 'just': 1.0, 'daughter': 2.0, 'times': 1.0, 'when': 1.0, 'sit': 1.0, 'four': 1.0, 'can': 2.0, 'money': 1.0, 'have': 2.0, 'strong': 1.0, 'long': 1.0, 'on': 3.0, 'think': 1.0, 'that': 2.0, 'because': 1.0, 'than': 1.0, 'lap': 1.0, 'find': 1.0, 'in': 5.0, 'seat': 1.0, 'high': 1.0, 'to': 5.0, 'was': 4.0, 'anymore': 1.0, '4': 2.0, 'i': 8.0, 'months': 3.0, 'old': 2.0, 'with': 1.0, 'children': 1.0, 'then': 1.0, 'we': 1.0, 'fine': 1.0, 'is': 1.0, 'look': 1.0, 'right': 1.0, 'started': 1.0, 'toys': 1.0, 'youngest': 1.0, 'chair': 5.0, 'instead': 1.0, 'turned': 1.0, '6': 1.0, 'strongly': 1.0, 'flipped': 1.0, 'had': 1.0, '12': 1.0, 'went': 1.0, 'playing': 1.0, 'other': 1.0, 'stretched': 1.0, 'about': 1.0, 'behind': 1.0, 'neck': 1.0, 'herself': 1.0, 'back': 1.0, 'my': 4.0, 'me': 1.0, 'over': 1.0, 'd': 1.0, 'belly': 1.0, 'say': 1.0, 'used': 1.0, 'this': 3.0, 'under': 1.0, 'total': 1.0, 'now': 1.0, 'her': 4.0, 'use': 1.0, 'she': 6.0, 'others': 1.0, 'sitting': 2.0, 'their': 1.0, 'for': 1.0, 'diapers': 1.0}
Word element => {'ordered': 1.0, 'what': 1.0, 'exactly': 1.0, 'received': 1.0, 'state': 1.0, 'one': 1.0, 'package': 1.0, 'got': 1.0, 'packaged': 1.0, 'order': 1.0, 'my': 1.0, 'the': 1.0, 'very': 1.0, 'well': 1.0, 'a': 1.0, 'go': 1.0, 'over': 1.0, 'on': 3.0, 'bedding': 1.0, 'saturday': 1.0, 'have': 1.0, 'crib': 1.0, 'fast': 1.0, 'i': 4.0, 'and': 2.0, 'tuesday': 1.0, 'turn': 1.0, 'did': 1.0, 'around': 1.0, 'only': 1.0, 'it': 1.0, 'to': 1.0}
Word element => {'our': 1.0, 'out': 1.0, 'to': 1.0, 'this': 1.0, 'expect': 1.0, 'i': 1.0, 'child': 1.0, 'high': 1.0, 'fabric': 1.0, 'the': 2.0, 'is': 2.0, 'bedding': 1.0, 'great': 1.0, 'last': 1.0, 'nice': 1.0, 'of': 1.0, 'has': 1.0, 'held': 1.0, 'all': 1.0, 'quality': 1.0, 'and': 2.0, 'up': 1.0, 'very': 1.0}
Word element => {'purchase': 1.0, 'my': 1.0, 'am': 1.0, 'gift': 1.0, 'made': 1.0, 'the': 1.0, 'bib': 1.0, 'embroidery': 1.0, 'an': 1.0, 'well': 3.0, 'a': 3.0, 'is': 4.0, 'as': 1.0, 'very': 3.0, 'adorable': 1.0, 'timely': 1.0, 'with': 1.0, 'it': 3.0, 'this': 2.0, 'and': 3.0, 'done': 1.0, 'was': 1.0, 'packaged': 1.0, 'came': 1.0, 'in': 1.0, 'manner': 1.0, 'pleased': 1.0, 'soft': 1.0, 'i': 1.0, 'bought': 1.0}
Word element => {'our': 1.0, 'everywhere': 1.0, 'of': 1.0, 'is': 1.0, 'really': 1.0, 'has': 1.0, 'the': 2.0, 'my': 1.0, 'happy': 1.0, 'product': 1.0, 'grandson': 1.0, 'am': 1.0, 'quality': 1.0, 'and': 1.0, 'i': 1.0, 'granddaughter': 1.0, 'had': 1.0, 'for': 2.0, 'years': 1.0, 'baby': 1.0, 'lamb': 1.0, 'four': 1.0, 'with': 2.0, 'this': 2.0, 'it': 1.0, 'him': 1.0, 'goes': 1.0}
Word element => {'can': 1.0, 'for': 2.0, 'one': 2.0, 'buy': 1.0, 'i': 1.0, 'when': 1.0, 'bought': 1.0, 'great': 1.0, 'and': 2.0, 'soft': 1.0, 'is': 1.0, 'son': 1.0, 'blanket': 1.0, 'loves': 1.0, 'my': 1.0, 'it': 1.0, 'this': 1.0, 'he': 2.0, 'was': 1.0, 'a': 1.0, 'any': 1.0, 'baby': 2.0, 'quality': 1.0, 'will': 1.0, 'gift': 1.0, 'still': 1.0, 'we': 2.0}
Word element => {'over': 1.0, 'years': 1.0, 'for': 1.0, 'gifts': 1.0, 'been': 1.0, 'have': 1.0, 'this': 1.0, 'a': 1.0, 'the': 1.0, 'always': 1.0, '10': 1.0, 'is': 1.0, 'with': 1.0, 'giving': 1.0, 'kids': 1.0, 'hit': 1.0, 'as': 1.0, 'and': 1.0, 'parents': 1.0, 'i': 1.0}
Word element => {'thanks': 1.0, 'naturally': 1.0, 'new': 1.0, 'the': 1.0, 'replace': 1.0, 'find': 1.0, 'so': 1.0, 'am': 1.0, 'when': 1.0, 'bear': 3.0, 'preschool': 1.0, 'gund': 1.0, 'takes': 1.0, 'olds': 1.0, 'easy': 1.0, 'she': 2.0, 'sleeps': 2.0, 'every': 1.0, 'very': 1.0, 'year': 1.0, '3': 1.0, 'body': 1.0, 'happy': 1.0, 'my': 1.0, 'blanket': 1.0, 'head': 1.0, 'now': 1.0, 'wanted': 1.0, 'was': 1.0, 'to': 3.0, 'amazon': 1.0, 'second': 1.0, 'is': 1.0, 'daily': 1.0, 'with': 2.0, 'this': 2.0, 'it': 3.0, 'old': 1.0, 'i': 2.0, 'night': 1.0, 'and': 3.0, 'daycare': 1.0}
Word element => {'everything': 1.0, 'have': 1.0, 'should': 1.0, 'own': 1.0, 'fabricate': 1.0, 'did': 1.0, 'need': 1.0, 'now': 2.0, 'was': 1.0, 'our': 1.0, 'to': 3.0, 'by': 1.0, 'when': 1.0, 'm': 1.0, 'sized': 1.0, 'scouring': 1.0, 'bed': 3.0, 'bought': 1.0, 'full': 1.0, 'this': 1.0, 'it': 3.0, 'come': 2.0, 'with': 2.0, 'convert': 1.0, 'business': 1.0, 'specs': 1.0, 'great': 1.0, 'the': 3.0, 'were': 1.0, '2008': 1.0, 'or': 1.0, 'in': 2.0, 'not': 1.0, 'kit': 1.0, 'for': 1.0, 'conversion': 2.0, 'and': 1.0, 'simplicity': 1.0, 'some': 1.0, '2013': 1.0, 'has': 1.0, 'gone': 1.0, 'of': 1.0, 'rails': 2.0, 'out': 1.0, 'i': 2.0, 'a': 2.0, 'we': 3.0, 'internet': 1.0, 'either': 1.0, 'use': 1.0, 'pregnant': 1.0, 'can': 1.0}
Word element => {'says': 1.0, 'isn': 1.0, 'have': 1.0, 'not': 1.0, 'm': 1.0, 'something': 1.0, 'rig': 1.0, 'able': 1.0, 'be': 1.0, 'will': 1.0, 'husband': 1.0, 'luckily': 1.0, 'happy': 1.0, 'sort': 1.0, 'rails': 1.0, 'toddler': 1.0, 'but': 2.0, 'great': 1.0, 'the': 4.0, 'it': 8.0, 'come': 1.0, 'with': 1.0, 'my': 1.0, 'convert': 1.0, 'well': 1.0, '2013': 1.0, 'crib': 1.0, 'that': 1.0, 'into': 1.0, '2008': 1.0, 'finally': 1.0, 'frame': 1.0, 'bed': 5.0, 'is': 1.0, 'around': 1.0, 'fit': 1.0, 'in': 2.0, 'wouldn': 1.0, 'didn': 1.0, 'converting': 1.0, 'got': 1.0, 'what': 1.0, 'had': 1.0, 'purchased': 1.0, 'any': 1.0, 'to': 4.0, 'as': 1.0, 'because': 1.0, 'sized': 2.0, 'and': 2.0, 'i': 5.0, 'buy': 1.0, 'bought': 1.0, 'hence': 1.0, 'simply': 1.0, 'so': 1.0, 't': 4.0, 'a': 3.0, 'we': 2.0, 'could': 1.0, 'together': 1.0, 'name': 1.0, 'of': 2.0, 'since': 1.0, 'at': 1.0, 'this': 2.0, 'full': 2.0, 'mattress': 1.0, 'recommend': 1.0, 'doesn': 1.0, 'was': 1.0, 'store': 1.0}
Word element => {'definitely': 1.0, 'would': 1.0, 'completely': 1.0, 'not': 1.0, 'so': 1.0, 'beautiful': 1.0, 'week': 1.0, 'last': 1.0, 'their': 1.0, 'buying': 1.0, 'on': 1.0, 'cider': 2.0, 'wanted': 1.0, 'too': 1.0, '2nd': 1.0, 'was': 1.0, 'color': 3.0, 'cherry': 2.0, 'going': 1.0, 'out': 3.0, 'sold': 1.0, 'said': 1.0, 'us': 1.0, 'target': 1.0, 'nice': 1.0, 'a': 4.0, 'disappointed': 1.0, 'our': 5.0, 'eat': 2.0, 'right': 1.0, 'up': 1.0, '7': 1.0, 'through': 1.0, 'we': 2.0, 'then': 1.0, 'hour': 1.0, 'seems': 1.0, 'wants': 1.0, 'about': 2.0, 'month': 1.0, 'second': 1.0, 'of': 1.0, 'the': 12.0, '2': 4.0, 'wooden': 1.0, 'crib': 6.0, 'm': 1.0, 'in': 5.0, 'he': 6.0, 'this': 5.0, 'bought': 2.0, 'room': 1.0, 'once': 1.0, 'hours': 2.0, 'bed': 2.0, 'outgrowing': 1.0, 'went': 1.0, 'looks': 1.0, 'my': 2.0, 'cushy': 1.0, 'business': 1.0, 'around': 2.0, 'his': 2.0, 'missed': 1.0, 'dark': 1.0, 'sleep': 1.0, 'back': 1.0, 'an': 1.0, 'r': 1.0, 'put': 1.0, 'babies': 1.0, 'husband': 1.0, 'woke': 1.0, '1': 2.0, 'and': 7.0, 'choice': 1.0, 'night': 3.0, 'simplicity': 1.0, 'baby': 1.0, 'old': 1.0, 'slept': 2.0, 'i': 6.0, 'recommend': 1.0, 'were': 1.0, 'together': 1.0, 'breastfed': 1.0, 'look': 1.0, 'is': 7.0, 'at': 2.0, 'walls': 1.0, 'by': 2.0, 'because': 2.0, 'that': 3.0, 'thrilled': 1.0, 'but': 3.0, 'napping': 1.0, 'they': 1.0, 'sturdy': 1.0, 'comfort': 1.0, 't': 1.0, 'likes': 1.0, 'which': 1.0, 's': 2.0, 'maybe': 1.0, 'pillowtop': 1.0, 'for': 1.0, 'some': 1.0, 'reason': 2.0, 'it': 5.0, 'him': 1.0, 'here': 1.0, 'spoiled': 1.0, 'quietly': 1.0, 'even': 1.0, 'when': 1.0, 'sleeps': 1.0, 'awake': 1.0, 'to': 5.0, 'straight': 1.0, 'bassinet': 1.0, 'against': 1.0, 'lie': 1.0, 'white': 1.0, 'way': 1.0, 'son': 1.0, 'hate': 1.0, 'contrast': 1.0, 'slats': 1.0, 'company': 1.0, 'usually': 1.0, 'quickly': 1.0, 'whatever': 1.0, 'first': 1.0, 'are': 1.0, 'doesn': 1.0, 'time': 1.0, 'new': 1.0, 'very': 2.0}
Word element => {'have': 1.0, 'iwould': 1.0, 'than': 1.0, 'perhaps': 1.0, 'are': 1.0, 'of': 1.0, 'giraffes': 1.0, 'otherwise': 1.0, 'larger': 1.0, 'lambs': 1.0, 'soft': 1.0, 'and': 2.0, 'adorable': 1.0, 'very': 1.0, 'the': 3.0, '2': 2.0, 'is': 1.0, 'upcoming': 1.0, 'but': 1.0, 'gund': 2.0, 'twins': 1.0, 'i': 1.0, 'liked': 1.0, 'for': 2.0, 'one': 1.0, 'purchased': 1.0, 'use': 1.0, 'while': 1.0, 'other': 1.0, 'perfect': 1.0, 'in': 1.0, 'wash': 1.0, 'slightly': 1.0, 'they': 1.0}
Word element => {'quality': 1.0, 'very': 1.0, 'ears': 1.0, 'little': 1.0, 'soft': 2.0, 'hold': 1.0, 'without': 1.0, 'wont': 1.0, 'and': 3.0, 'my': 1.0, 'because': 1.0, 'recommend': 1.0, 'she': 3.0, 'great': 1.0, 'these': 1.0, '2': 1.0, 'much': 1.0, 'sleep': 1.0, 'loves': 1.0, 'old': 1.0, 'buy': 1.0, 'i': 2.0, 'with': 1.0, 'it': 4.0, 'daughter': 1.0, 'when': 1.0, 'gave': 1.0, 'so': 1.0, 'fall': 1.0, 'we': 1.0, 'her': 1.0, 'asleep': 1.0, 'its': 1.0, 'now': 1.0, 'had': 1.0, 'to': 3.0, 'was': 1.0, 'highly': 1.0, 'snuggles': 1.0, 'about': 1.0, 'months': 1.0, 'of': 1.0, '6': 1.0}
Word element => {'future': 1.0, 'first': 1.0, 'family': 1.0, 'my': 2.0, 'definitely': 1.0, 'wonderful': 1.0, 'silky': 1.0, 'is': 4.0, 'really': 1.0, 'animal': 1.0, 'the': 5.0, 'in': 2.0, 'it': 7.0, 'with': 1.0, 'but': 2.0, 'inside': 1.0, 'will': 2.0, 'package': 1.0, 'head': 1.0, 'to': 3.0, 'all': 2.0, 'fabric': 1.0, 'that': 3.0, 'babies': 2.0, 'able': 1.0, 'than': 1.0, 'smaller': 1.0, 'when': 1.0, 'i': 1.0, 'was': 3.0, 'expecting': 1.0, 'on': 3.0, 'kind': 2.0, 'empty': 1.0, 'much': 1.0, 'be': 3.0, 'opens': 1.0, 'little': 1.0, 'and': 3.0, 'satiny': 2.0, 'of': 1.0, 'has': 1.0, 'this': 1.0, 'soft': 2.0, 'for': 1.0, 'love': 1.0, 'choice': 1.0, 'being': 1.0, 'touched': 1.0, 'something': 1.0, 'super': 1.0, 'face': 1.0, 'hold': 1.0, 'a': 1.0, 'baby': 1.0}
Word element => {'saw': 1.0, 'like': 1.0, 'security': 1.0, 'large': 1.0, 'better': 1.0, 'much': 1.0, 'is': 1.0, 'friends': 1.0, 'attachment': 2.0, 'these': 1.0, 'attached': 1.0, 'children': 1.0, 'as': 1.0, 'machne': 1.0, 'washing': 1.0, 'loss': 1.0, 'no': 2.0, 'about': 1.0, 'that': 2.0, 'been': 1.0, 'from': 1.0, 'silky': 1.0, 'different': 1.0, 'be': 2.0, 'has': 1.0, 'buddy': 2.0, 'manufacturer': 1.0, 'my': 1.0, 'another': 1.0, 'gund': 1.0, 'months': 1.0, 'get': 3.0, 'sure': 1.0, 'successful': 1.0, 'we': 1.0, 'reviews': 1.0, 'the': 6.0, 'of': 4.0, 'enough': 1.0, 'time': 1.0, 'new': 2.0, 'would': 1.0, 'one': 6.0, 'lot': 1.0, 'small': 1.0, 'a': 7.0, 'baby': 1.0, 'did': 1.0, 'blanket': 2.0, 'normal': 1.0, 'old': 2.0, 'type': 1.0, 'i': 5.0, 'jealousy': 1.0, 'little': 1.0, 'two': 1.0, 'born': 1.0, 'buddies': 1.0, 'to': 6.0, 'wanted': 2.0, 'now': 1.0, 'granddaughter': 1.0, 'also': 1.0, 'how': 1.0, 'item': 1.0, 'having': 1.0, 'sister': 1.0, 'than': 2.0, 'it': 1.0, 'this': 1.0, 'days': 1.0, 'soft': 1.0, 'case': 1.0, 'seen': 1.0, 'seven': 1.0, 'bear': 1.0, 'by': 1.0, 'or': 2.0, 's': 1.0, 'conflicts': 1.0, 'read': 1.0, 'arise': 1.0, 'can': 1.0, 'so': 2.0, 'however': 1.0, 'found': 1.0, 'bit': 1.0, 'and': 4.0, 'on': 1.0, 'for': 5.0, 'searching': 1.0, 'such': 1.0, 'was': 2.0, 'other': 1.0, 'an': 1.0, 'certainly': 1.0, 'imaged': 1.0, 'choice': 1.0, 'very': 2.0, 'being': 1.0, 'with': 1.0, 'side': 2.0, 'plush': 1.0, '28': 1.0, 'washable': 1.0, 'up': 1.0, 'head': 1.0, 'size': 1.0, 'machine': 1.0, 'surprise': 1.0, 'larger': 1.0, 'd': 1.0, 'but': 1.0, 'excellent': 1.0, 'really': 1.0, 'problem': 1.0, 'her': 1.0, 'use': 1.0, 'emergency': 1.0, 'back': 1.0, 'in': 2.0}
Word element => {'size': 1.0, 'out': 1.0, 'want': 1.0, 'if': 1.0, 'original': 1.0, 'washing': 1.0, 'purchased': 1.0, 'great': 1.0, 'makes': 1.0, 'like': 1.0, 'hand': 1.0, 'know': 1.0, 'which': 1.0, 'parts': 1.0, 'matter': 1.0, 'hard': 1.0, 'every': 1.0, 'we': 5.0, 's': 5.0, 'a': 4.0, 'little': 1.0, 'very': 1.0, 'night': 1.0, 'daughter': 1.0, 'when': 2.0, 'as': 2.0, 'sleep': 3.0, 'to': 3.0, 'now': 1.0, 'adores': 1.0, 'spare': 1.0, 'goes': 1.0, 'her': 4.0, 'my': 1.0, 'frog': 2.0, 'uses': 1.0, 'absolutely': 1.0, 'cute': 1.0, 'she': 4.0, 'it': 5.0, 'turning': 1.0, 'with': 1.0, 'months': 1.0, 'one': 2.0, 'where': 1.0, 'for': 3.0, 'toy': 2.0, 'has': 1.0, 'but': 1.0, 'next': 1.0, 'been': 1.0, 'week': 1.0, 'cuddling': 1.0, 'hands': 1.0, 'the': 3.0, 'cuddle': 1.0, 'is': 1.0, 'time': 1.0, 'so': 2.0, 'perfect': 2.0, 'this': 3.0, 'soft': 1.0, 'green': 1.0, 'and': 3.0, 'just': 1.0, 'light': 2.0, 'there': 1.0, 'blanket': 2.0, 'are': 3.0, 'no': 2.0}
Word element => {'great': 1.0, 'loved': 1.0, 'huggy': 1.0, 'quality': 1.0, 'gund': 1.0, 'all': 1.0, 'have': 1.0, 'comforting': 1.0, 'and': 2.0, 'cuddly': 1.0, 'soft': 1.0, 'new': 1.0, 'buddies': 1.0, 'his': 1.0, 'w': 1.0, 'gift': 1.0, 's': 2.0, 'never': 1.0, 'boy': 1.0, 'a': 1.0, 'as': 1.0, 'very': 1.0, 'it': 3.0, 'this': 1.0, 'favorite': 1.0, 'bed': 1.0, 'baby': 1.0, 'toy': 1.0, 'to': 1.0, 'bought': 2.0, 'leaves': 1.0, 'home': 1.0, 'other': 1.0, 'goes': 1.0, 'or': 1.0, 'them': 1.0, 'out': 1.0}
Word element => {'employees': 1.0, 'our': 1.0, 'born': 1.0, 'also': 1.0, 'will': 1.0, 'baby': 1.0, 'shipped': 1.0, 'cuddly': 1.0, 'these': 1.0, 'and': 1.0, 'super': 1.0, 'quickly': 1.0, 'soft': 1.0, 'adorable': 1.0, 's': 1.0, 'sometime': 1.0, 'to': 1.0, 'was': 1.0, 'this': 1.0, 'definitely': 1.0, 're': 1.0, 'them': 1.0, 'order': 1.0, 'again': 1.0, 'we': 1.0, 'use': 1.0, 'for': 1.0}
Word element => {'highly': 1.0, 'cuddly': 1.0, 'soft': 1.0, 'so': 1.0, 'night': 1.0, 'every': 1.0, 'uses': 1.0, 'recommend': 1.0, 'he': 1.0, 'bought': 1.0, 'his': 1.0, 'brother': 1.0, 'grandson': 1.0, 'loves': 1.0, 'absolutely': 1.0, 'it': 1.0, 'small': 1.0, 'my': 1.0, 'the': 1.0, 'lamb': 1.0, 'children': 1.0, 'which': 1.0, 'for': 2.0}
Word element => {'bear': 4.0, 'when': 2.0, 'dirty': 1.0, 'suck': 1.0, 'imaginable': 1.0, 'which': 1.0, 'don': 2.0, 'boon': 1.0, 'owie': 1.0, '4': 1.0, 'i': 3.0, 'friend': 1.0, 'smell': 1.0, 'has': 1.0, 'turns': 1.0, 'without': 1.0, 'you': 2.0, 'night': 1.0, 'sleeps': 1.0, 'every': 1.0, 'still': 1.0, 'gets': 1.0, 'child': 1.0, 'year': 1.0, 'something': 1.0, 'would': 1.0, 'my': 2.0, 'machine': 1.0, 'now': 1.0, 'to': 8.0, 'sleep': 1.0, 'was': 2.0, 'is': 6.0, 'at': 1.0, 'space': 1.0, 'daughter': 2.0, '6': 2.0, 'given': 2.0, 'blanket': 1.0, '5': 2.0, 'an': 1.0, 'potentially': 1.0, 'one': 1.0, 'and': 5.0, 'within': 1.0, 'two': 1.0, 'upset': 1.0, 'little': 1.0, 't': 3.0, 's': 2.0, 'we': 1.0, 'with': 2.0, 'or': 3.0, 'inseparable': 1.0, 'this': 1.0, 'it': 10.0, 'she': 2.0, 'whenever': 1.0, 'washable': 1.0, 'carry': 1.0, 'wash': 1.0, 'her': 2.0, 'want': 2.0, 'your': 1.0, 'on': 1.0, 'stuff': 1.0, 'gave': 1.0, 'filthy': 1.0, 'months': 1.0, 'get': 2.0, 'used': 1.0, 'so': 3.0, 'can': 1.0, 'losing': 1.0, 'four': 1.0, 'but': 2.0, 'a': 3.0, 'imagine': 1.0, 'the': 3.0, 'of': 1.0, 'life': 1.0, 'biggest': 1.0, 'only': 1.0, 'risk': 1.0, 'stars': 1.0, 'love': 3.0, 'have': 2.0, 'out': 1.0, 'everywhere': 1.0, 'that': 2.0, 'because': 1.0, 'big': 1.0, 'not': 1.0, 'in': 2.0, 'bag': 1.0, 'up': 1.0, 'takes': 1.0, 'hard': 1.0}
Word element => {'tears': 1.0, 'have': 1.0, 'or': 1.0, 'glad': 1.0, 'm': 1.0, 'i': 1.0, 'infant': 1.0, 'an': 1.0, 'control': 1.0, 'gently': 1.0, 'does': 1.0, 'woke': 1.0, 'when': 1.0, 'pull': 1.0, 'daughter': 1.0, 'tag': 1.0, 'too': 1.0, 'and': 2.0, 'play': 2.0, 'we': 2.0, 'would': 2.0, 'broken': 2.0, 'young': 1.0, 'old': 1.0, 'with': 2.0, 'mornings': 1.0, 'in': 2.0, 'she': 4.0, 'it': 4.0, 'month': 1.0, 'had': 2.0, 'was': 1.0, 'now': 1.0, 'crib': 2.0, 'up': 1.0, 'of': 2.0, 'dog': 1.0, 'broke': 1.0, 'toy': 1.0, 'to': 5.0, 'our': 1.0, 'hands': 1.0, 'the': 10.0, 'hanging': 1.0, 'playing': 1.0, 'that': 2.0, 'recently': 1.0, 'ring': 1.0, 'pulls': 1.0, 'on': 3.0, 'limply': 1.0, 'make': 1.0, 'but': 1.0, 'music': 1.0, 'off': 1.0, 'say': 1.0, 'is': 5.0, '7': 1.0, 'side': 1.0, 'impossible': 1.0, 'dangles': 1.0, 'understand': 1.0, 'hard': 1.0, 'while': 1.0, 'fix': 1.0, 'just': 1.0}
Word element => {'right': 1.0, 'us': 1.0, 'got': 1.0, 'great': 1.0, 'was': 1.0, 'seller': 1.0, 'use': 1.0, 'couldn': 1.0, 'way': 1.0, 'by': 1.0, 'first': 1.0, 'away': 1.0, 'older': 1.0, 'he': 1.0, 'it': 2.0, 'has': 1.0, 'plays': 1.0, 'already': 1.0, 'all': 1.0, 'i': 2.0, 'two': 1.0, 'sons': 1.0, 'and': 4.0, 'carter': 1.0, 'their': 1.0, 'where': 1.0, 'love': 1.0, 'for': 2.0, 'one': 1.0, 'son': 2.0, 'animals': 1.0, 'lullaby': 1.0, 'stuffed': 1.0, 'had': 1.0, 'the': 6.0, 'snafoo': 1.0, 'but': 1.0, '2': 1.0, 'my': 3.0, 'dog': 1.0, 'bedtime': 1.0, 'replacement': 1.0, 'out': 1.0, 'so': 1.0, 'this': 1.0, 'found': 1.0, 'have': 1.0, 'younger': 1.0, 't': 1.0, 'a': 3.0, 's': 1.0, 'we': 2.0, 'into': 1.0, 'that': 2.0, 'loves': 1.0, 'bear': 2.0, 'times': 1.0, 'cord': 1.0, 'knot': 1.0, 'came': 1.0, 'retracted': 1.0}
Word element => {'receive': 1.0, 'expecting': 1.0, 'was': 1.0, 'compare': 1.0, 'nothing': 1.0, 'what': 1.0, 'had': 1.0, 'you': 1.0, 'arrived': 1.0, 'is': 5.0, 'fine': 2.0, 'not': 2.0, 'product': 1.0, 'softer': 1.0, 'my': 1.0, 'the': 5.0, 's': 1.0, 't': 1.0, 'i': 2.0, 'child': 1.0, 'replacing': 1.0, 'picture': 1.0, 'worn': 1.0, 'in': 1.0, 'itself': 1.0, 'exactly': 1.0, 'but': 2.0, 'like': 1.0, 'out': 1.0, 'wasn': 1.0, 'head': 1.0, 'bought': 1.0, 'one': 1.0, 'that': 1.0, 'needed': 1.0, 'looks': 1.0, 'it': 7.0, 'she': 1.0, 'too': 1.0, 'and': 1.0, 'to': 2.0, 'as': 2.0, 'fooled': 1.0, 'there': 1.0, 'badly': 1.0, 'no': 1.0, 'emblem': 1.0, 'on': 1.0, 'front': 1.0, 'pictured': 1.0, 'much': 1.0, 'because': 1.0, 'does': 1.0, 'than': 1.0, 'appear': 1.0, 'original': 1.0, 'if': 1.0}
Word element => {'cuddly': 1.0, 'get': 1.0, 'and': 1.0, 'so': 1.0, 'up': 1.0, 'gund': 1.0, 'back': 1.0, 'a': 2.0, 'need': 1.0, 'blanket': 2.0, 'c': 1.0, 'i': 1.0, 'bear': 2.0, 'when': 1.0, 'son': 1.0, 'is': 1.0, 'one': 2.0, 'for': 1.0, 'wash': 1.0, 'in': 1.0, 'short': 1.0, 'my': 1.0, 'the': 2.0, 's': 1.0, 'bee': 2.0, 'item': 1.0, 'it': 1.0, 'this': 2.0, 'soft': 1.0, 'call': 1.0, 'b': 1.0, 'we': 2.0, 'adores': 1.0, 'just': 1.0, 'worth': 1.0, 'ordered': 1.0, 'gotta': 1.0, 'price': 1.0, 'another': 1.0}
Word element => {'likes': 1.0, 'if': 1.0, 'funny': 1.0, 'so': 1.0, 'play': 1.0, 'as': 1.0, 'is': 1.0, 'new': 1.0, 'who': 1.0, 'grandson': 1.0, 'loves': 1.0, 'my': 1.0, 'love': 1.0, 'for': 1.0, 'playing': 1.0, 'then': 1.0, 'got': 1.0, '4': 1.0, 'months': 1.0, 'trying': 1.0, 's': 2.0, 'i': 2.0, 'old': 1.0, 'now': 1.0, 'to': 1.0, 'with': 1.0, 'this': 1.0, 'he': 4.0, 'it': 5.0, 'and': 1.0, 'talk': 1.0}
Word element => {'soon': 1.0, 'will': 1.0, 'they': 1.0, 'm': 1.0, 'i': 1.0, 'teddy': 1.0, 'first': 1.0, 'love': 1.0, 'sure': 1.0, 'great': 1.0, 'their': 1.0, 'twin': 1.0, 'them': 1.0, 'grandsons': 1.0, 's': 1.0, 'born': 1.0, 'dec': 1.0, '3': 1.0, 'more': 1.0, 'my': 1.0, 'are': 1.0, 'sleeping': 1.0, 'with': 1.0}
Word element => {'penny': 1.0, 'every': 1.0, 'worth': 1.0, 'on': 1.0, 'sleeps': 1.0, 'and': 3.0, 'pottery': 1.0, 'land': 1.0, 'carter': 1.0, 'just': 1.0, 'nod': 1.0, 's': 2.0, 'we': 3.0, 'a': 1.0, 'the': 2.0, 'both': 1.0, 'of': 1.0, 'use': 1.0, 'fits': 1.0, 'right': 1.0, 'from': 1.0, 'crib': 2.0, 'that': 1.0, 'sheets': 1.0, 'originally': 1.0, 'had': 1.0, 'was': 1.0, 'our': 3.0, 'to': 1.0, 'in': 1.0, 'regular': 1.0, 'spring': 1.0, 'barn': 1.0, 'fit': 1.0, 'for': 1.0, 'decided': 1.0, 'one': 1.0, 'great': 1.0, 'comfortable': 1.0, 'baby': 1.0, 'but': 2.0, 'firm': 1.0, 'so': 1.0, 'mattress': 2.0, 'this': 1.0, 'soft': 1.0, 'springy': 1.0, 'buy': 1.0, 'old': 1.0, 'perfectly': 1.0, '8': 1.0, 'it': 3.0, 'month': 1.0}
Word element => {'exposed': 1.0, 'gassing': 1.0, 'toxins': 1.0, 'best': 1.0, 'did': 1.0, 'off': 1.0, 'knowing': 1.0, 'better': 1.0, 'their': 1.0, 'there': 1.0, 'out': 1.0, 'in': 2.0, 'minimize': 1.0, 'chemicals': 1.0, 'one': 1.0, 'potentially': 1.0, 'of': 3.0, 'cribs': 1.0, 'less': 1.0, 'harmful': 1.0, 'contains': 1.0, 'cotton': 1.0, 'organic': 1.0, 'spend': 1.0, 'great': 1.0, 'the': 4.0, 'it': 3.0, 'with': 2.0, 'we': 5.0, 'a': 5.0, 'quite': 1.0, 'and': 6.0, 'is': 4.0, 'year': 1.0, 'little': 1.0, 'mattresses': 1.0, 'very': 1.0, 'on': 1.0, 'last': 1.0, 'found': 1.0, 'this': 3.0, 'mattress': 4.0, 'pleased': 1.0, 'used': 1.0, 'for': 1.0, 'babies': 1.0, 'that': 4.0, 'been': 1.0, 'half': 1.0, 'has': 1.0, 'substantial': 1.0, 'are': 1.0, 'family': 1.0, 'my': 1.0, 'high': 1.0, 'feels': 1.0, 'baby': 1.0, 'quality': 1.0, 'have': 1.0, 'others': 1.0, 'when': 1.0, 'time': 1.0, 'so': 1.0, 'went': 1.0, 'however': 1.0, 'sleeping': 2.0, 'like': 1.0, 'which': 1.0, 'compared': 1.0, 'always': 1.0, 'firmness': 1.0, 'son': 1.0, 'visiting': 1.0, 'seem': 1.0, 'rested': 1.0, 'lot': 2.0, 'flimsy': 1.0, 'not': 1.0, 'supportive': 1.0, 'our': 2.0, 'to': 3.0, 'reason': 1.0}
Word element => {'us': 1.0, 'old': 1.0, 'bed': 1.0, 'twin': 1.0, 'year': 1.0, 'spent': 1.0, 'some': 1.0, 'why': 1.0, 'maybe': 1.0, 'too': 1.0, 'and': 3.0, 'pricy': 1.0, 'it': 4.0, 'with': 1.0, 'naturpedic': 1.0, 'so': 1.0, 'now': 1.0, 'newborn': 1.0, 'in': 1.0, 'liked': 1.0, 'expensive': 1.0, 'brother': 1.0, 'for': 3.0, 'much': 1.0, 'though': 1.0, 'daughter': 1.0, 'just': 1.0, 'by': 1.0, 'when': 1.0, 'skimp': 1.0, 'one': 1.0, 'bought': 2.0, 'be': 1.0, 'my': 2.0, 'but': 1.0, '2': 2.0, 'the': 1.0, 'years': 1.0, 'crib': 1.0, 'known': 1.0, 'didn': 1.0, 'is': 2.0, 'being': 1.0, 'gimmicks': 1.0, 'used': 1.0, 'to': 1.0, 'our': 2.0, 'new': 2.0, 'born': 1.0, 'like': 1.0, 'truth': 1.0, 'a': 1.0, 'we': 4.0, 's': 1.0, 't': 1.0, 'go': 1.0}
Word element => {'long': 1.0, 'time': 1.0, 'well': 1.0, 'safe': 1.0, 'such': 1.0, 'sleeping': 1.0, 'knowing': 1.0, 'ease': 1.0, 'considering': 1.0, 'much': 2.0, 'at': 1.0, 'flimsy': 1.0, 'than': 1.0, 'rather': 1.0, 'd': 1.0, 'heavy': 2.0, 'on': 2.0, 'begins': 1.0, 'bed': 2.0, 'toddler': 1.0, 'use': 1.0, 'durable': 1.0, 'be': 4.0, 'will': 2.0, 'seems': 1.0, 'down': 1.0, 'perfectly': 1.0, 'with': 2.0, 'it': 9.0, 'feel': 1.0, 'great': 2.0, 'excited': 1.0, 'really': 1.0, 'more': 1.0, 'is': 2.0, 'he': 1.0, 'how': 3.0, 'pleased': 1.0, 'used': 2.0, 'spent': 1.0, 'his': 1.0, 'other': 1.0, 'i': 5.0, 'bought': 1.0, 'this': 1.0, 'mattress': 2.0, 'allows': 1.0, 'worth': 1.0, 'yet': 1.0, 'jumping': 1.0, 'my': 2.0, 'baby': 2.0, 'a': 2.0, 'we': 1.0, 's': 2.0, 't': 1.0, 'the': 6.0, 'upcoming': 1.0, 'arrival': 1.0, 'there': 1.0, 'are': 1.0, 'no': 1.0, 'funny': 1.0, 'when': 1.0, 'am': 2.0, 'smells': 1.0, 'compared': 1.0, 'money': 1.0, 'but': 2.0, 'firm': 1.0, 'organic': 1.0, 'to': 3.0, 'little': 1.0, 'very': 1.0, 'mattresses': 1.0, 'and': 5.0, 'that': 1.0, 'haven': 1.0, 'made': 1.0, 'in': 2.0, 'us': 1.0, 'up': 1.0, 'materials': 1.0, 'crib': 2.0, 'size': 1.0, 'for': 5.0, 'fit': 1.0}
Word element => {'daughter': 1.0, 'loves': 1.0, 'this': 2.0, 'like': 1.0, 'wonderfully': 1.0, 'little': 1.0, 'exerciser': 1.0, 'is': 1.0, 'an': 1.0, 'just': 1.0, 'my': 1.0, 'made': 2.0, 'adults': 1.0}
Word element => {'6': 1.0, 'years': 1.0, '5': 1.0, 'review': 1.0, 'younger': 1.0, 'ran': 1.0, 'the': 2.0, 'bought': 1.0, 'thing': 1.0, 'likes': 1.0, 'on': 1.0, '4': 1.0, 'i': 3.0, 'is': 1.0, 'nephew': 1.0, 'using': 1.0, 'for': 3.0, 'or': 1.0, 'almost': 1.0, 'try': 1.0, 'my': 1.0, 'was': 1.0, 'to': 2.0, 'like': 1.0, 'maybe': 1.0, 'morning': 1.0, 'workout': 1.0, 'and': 1.0, 'me': 1.0, 'thought': 1.0, 'agree': 1.0, 'so': 1.0, 'would': 1.0, 'children': 1.0, 'first': 1.0, 'christmas': 2.0, 'with': 2.0, 'he': 4.0, 'this': 3.0, 'it': 1.0}
Word element => {'workout': 1.0, 'him': 1.0, 'watch': 1.0, 'pleasure': 1.0, 'sports': 1.0, 'dad': 1.0, 'is': 3.0, 'his': 1.0, 'a': 3.0, 'grandson': 1.0, 'feels': 1.0, 'fit': 1.0, 'play': 1.0, 'the': 1.0, 'great': 1.0, 'made': 1.0, 'camper': 1.0, 'involved': 1.0, 'i': 1.0, 'my': 1.0, 'happy': 1.0, 'trainer': 1.0, 'and': 1.0, 'it': 1.0, 'he': 3.0, 'has': 1.0, 'now': 1.0, 'to': 3.0, 'be': 1.0, 'in': 2.0, 'all': 1.0}
Word element => {'will': 1.0, 'messed': 1.0, 'display': 1.0, 'hooked': 1.0, 'stride': 1.0, 'unlrelated': 1.0, 'peddles': 1.0, 'yet': 1.0, 'forwards': 1.0, 'out': 1.0, 'figured': 1.0, 'properly': 1.0, 'not': 3.0, 'computer': 3.0, 'his': 1.0, 'bike': 2.0, 'really': 1.0, 'imaginitive': 1.0, 'with': 1.0, 'ride': 1.0, 'come': 1.0, 'issues': 1.0, 'plus': 1.0, 'easily': 1.0, 'it': 4.0, 'this': 1.0, '1': 1.0, 'soon': 1.0, 'too': 1.0, 'and': 6.0, 'likes': 2.0, 'has': 4.0, 'we': 1.0, 'going': 1.0, 'time': 1.0, 'so': 1.0, 'buttons': 1.0, 'working': 1.0, 'far': 1.0, 'any': 1.0, 'all': 1.0, 'our': 1.0, 'as': 4.0, 'to': 8.0, 'now': 1.0, 'was': 2.0, 'for': 2.0, 'product': 1.0, 'assemble': 1.0, 'uses': 1.0, 'loving': 1.0, 'the': 6.0, 'son': 4.0, 'say': 1.0, 'is': 5.0, 'reviewer': 1.0, 'another': 1.0, 'my': 4.0, 'issue': 1.0, 'running': 1.0, 'respond': 1.0, 'walker': 1.0, 'he': 4.0, 'how': 2.0, 'lcd': 1.0, 'fairly': 1.0, 'up': 4.0, 'get': 1.0, 'easy': 1.0, 'exercise': 1.0, 'show': 1.0, 'said': 1.0, 'air': 1.0, 'in': 1.0, 'no': 1.0, 'simple': 1.0, 'moving': 1.0, 'design': 1.0, 'alternate': 1.0, '2': 1.0, 'but': 3.0, 'etc': 1.0, 'i': 1.0, 'have': 1.0, 'able': 1.0, 'backwards': 1.0, 'that': 1.0, 'loves': 1.0, 'been': 1.0, '3': 1.0, 'strong': 1.0, 'on': 2.0, 'him': 1.0, 'use': 1.0}
Word element => {'highly': 1.0, 'price': 1.0, 'worth': 1.0, 'bigger': 1.0, 'small': 1.0, 'being': 1.0, 'it': 1.0, 'built': 1.0, 'equipment': 1.0, 'real': 2.0, 'frame': 1.0, 'recommend': 1.0, 'was': 1.0, 'metal': 1.0, 'of': 2.0, 'adjustable': 1.0, 'is': 4.0, 'a': 3.0, 'kinds': 1.0, 'well': 2.0, 'see': 1.0, 'piece': 1.0, 'the': 3.0, 'deal': 1.0, 'and': 2.0, 'its': 3.0, 'only': 1.0, 'do': 1.0, 'parts': 1.0, 'little': 1.0, 'very': 1.0, '1': 1.0, 'big': 1.0, 'son': 1.0, 'solid': 1.0, 'no': 2.0, 'sturdy': 1.0, 'extremely': 1.0, 'plastic': 1.0, 'workout': 1.0, 'like': 1.0, 'made': 1.0, 'miniature': 1.0, 'bench': 2.0, 'i': 3.0, 'this': 1.0, 'kids': 1.0, 'perfect': 1.0, 'wish': 1.0, '2': 2.0, 'can': 1.0, 'but': 3.0, 'my': 1.0, 'so': 1.0, 'for': 2.0, 'here': 1.0, 'him': 1.0}
Word element => {'together': 1.0, 'well': 1.0, 'able': 1.0, 'was': 1.0, 'ways': 1.0, 'new': 1.0, 'because': 1.0, 'find': 1.0, 'is': 1.0, 'marathon': 1.0, 'ended': 1.0, 'buy': 1.0, 'day': 1.0, 'very': 1.0, 'little': 1.0, 'which': 1.0, 'like': 2.0, 'older': 1.0, 'that': 1.0, 'loves': 1.0, 'climbs': 1.0, 'sturdy': 1.0, 'awesome': 1.0, 'year': 1.0, 'even': 1.0, 'up': 1.0, 'pace': 1.0, 'an': 1.0, 'own': 1.0, 'at': 2.0, 'always': 1.0, 'their': 1.0, 'propelled': 1.0, 'so': 4.0, 'get': 2.0, 'and': 12.0, 'our': 1.0, 'to': 6.0, 'short': 1.0, 'wanted': 1.0, 'running': 1.0, 'husband': 1.0, 'in': 1.0, 'thank': 1.0, 'treadmill': 2.0, 'getting': 1.0, 'self': 1.0, 'use': 1.0, 'loved': 1.0, 'every': 1.0, 'weather': 1.0, 'you': 1.0, 'when': 1.0, 'the': 3.0, '2010': 1.0, 'both': 1.0, 'everyday': 1.0, 'bad': 1.0, 'two': 1.0, '4': 1.0, 'i': 2.0, 'old': 2.0, 'redmon': 1.0, 'purchase': 1.0, 'my': 4.0, 'are': 1.0, 'exercise': 4.0, 'run': 5.0, 'months': 1.0, 'decided': 1.0, 'kids': 3.0, 'this': 2.0, 'it': 4.0, '1': 3.0, 'excited': 2.0, 'with': 2.0, 'they': 7.0, 'were': 3.0, 'put': 1.0, 'think': 1.0, 'on': 2.0, '3': 1.0, 'of': 1.0, 'daddy': 3.0, 'mommy': 3.0, 'see': 1.0, '6': 1.0, 'how': 1.0, 'fast': 1.0, 'but': 1.0, 'cleveland': 1.0, '2': 3.0, 'can': 1.0, 'a': 2.0, 'we': 1.0, 's': 2.0}
Word element => {'up': 1.0, 'hold': 1.0, 'like': 1.0, 'brother': 1.0, 'very': 1.0, 'day': 1.0, 'use': 1.0, 'then': 1.0, 'sturdy': 1.0, 'every': 1.0, 'history': 1.0, 'rest': 1.0, 'walker': 1.0, 'air': 1.0, 'will': 2.0, 'an': 1.0, 'machine': 1.0, 'to': 2.0, 'wanted': 1.0, 'know': 1.0, 'nephew': 1.0, 'for': 2.0, 'it': 4.0, 'he': 2.0, 'this': 1.0, 'great': 1.0, 'the': 2.0, 't': 1.0, 'went': 1.0, 'my': 1.0, 'bought': 1.0, 'i': 4.0, '5th': 1.0, 'so': 1.0, 'found': 1.0, 'birthday': 1.0, 'little': 1.0, 'didn': 1.0, 'used': 1.0, 'his': 2.0, 'what': 1.0, 'exercise': 1.0, 'do': 1.0, 'looks': 1.0, 'is': 2.0, 'amazon': 1.0}
Word element => {'time': 1.0, 'workout': 1.0, 'us': 1.0, 'shares': 1.0, 'and': 1.0, '100': 1.0, '2': 1.0, 'is': 1.0, 'loves': 1.0, 'old': 1.0, 'now': 1.0, 'to': 1.0, 'we': 1.0, 'as': 2.0, 'son': 1.0, 'year': 1.0, 'running': 1.0, 'happy': 1.0, 'my': 1.0, 'work': 1.0, 'out': 2.0, 'see': 1.0, 'works': 1.0, 'with': 1.0, 'this': 1.0, 'he': 2.0, 'it': 1.0, 'him': 1.0, 'nice': 1.0, 'so': 1.0}
Word element => {'love': 1.0, 'find': 1.0, 'except': 1.0, 'think': 1.0, 'that': 2.0, 'difficult': 1.0, 'middle': 1.0, 'caused': 1.0, 'front': 1.0, '80': 1.0, 'hole': 1.0, 'we': 1.0, 's': 1.0, 'part': 1.0, 'also': 1.0, 'item': 1.0, 'will': 2.0, 'which': 3.0, 'covered': 1.0, 'kiddos': 1.0, 'probably': 1.0, 'fact': 1.0, 'rubber': 1.0, 'broken': 2.0, 'was': 3.0, 'belt': 1.0, 'on': 1.0, 'noticed': 2.0, 'cap': 1.0, 'slips': 1.0, 'a': 3.0, 'imagine': 1.0, 'anticipated': 1.0, 'wrong': 2.0, 'my': 2.0, 'me': 1.0, 'say': 1.0, 'notice': 1.0, 'is': 2.0, 'red': 1.0, 'quick': 1.0, 'of': 3.0, 'the': 14.0, 'let': 1.0, 'end': 1.0, 'try': 1.0, 'not': 2.0, 'creates': 1.0, 'were': 1.0, 'arrival': 1.0, 'first': 2.0, 'highly': 1.0, 'this': 3.0, 'kids': 3.0, 'it': 4.0, 'nor': 1.0, 'soo': 1.0, 'arrived': 1.0, 'bolt': 1.0, 'when': 1.0, 'again': 1.0, 'thing': 3.0, 'frequently': 1.0, 'missing': 1.0, 'bar': 1.0, 'suggest': 1.0, 'next': 1.0, 'has': 1.0, 'i': 5.0, 'well': 1.0, 'large': 1.0, 'by': 1.0, 'tear': 1.0, 'in': 2.0, 'additionally': 1.0, 'excited': 1.0, 'after': 1.0, 'out': 1.0, 'to': 1.0, 'cracked': 1.0, 'as': 2.0, 'left': 1.0, 'assembly': 1.0, 'difficulty': 1.0, 'can': 2.0, 'so': 1.0, 'for': 2.0, 'awesome': 1.0, 'would': 2.0, 'cross': 1.0, 'something': 2.0, 'buy': 2.0, 'and': 4.0, 'anyone': 1.0, 'be': 2.0, 'else': 2.0, 'they': 1.0, 'repacked': 1.0, 'you': 1.0, 'night': 1.0, 'returned': 1.0, 'before': 1.0}
Word element => {'years': 1.0, 'at': 1.0, 'big': 1.0, 'plenty': 1.0, 'wearing': 1.0, 'top': 1.0, 'counter': 1.0, 'small': 1.0, 'have': 1.0, 'don': 1.0, 'runs': 1.0, 'on': 3.0, 'fast': 1.0, 'me': 1.0, 'him': 2.0, 'tell': 1.0, 'wd40': 1.0, 'little': 1.0, 'can': 1.0, 'but': 2.0, 'started': 1.0, 'worry': 1.0, '5': 2.0, 'it': 7.0, 'this': 2.0, 'much': 1.0, 'only': 1.0, 'so': 1.0, 'walls': 1.0, 'off': 1.0, 'because': 1.0, 'bouncing': 1.0, '4t': 1.0, 'his': 1.0, 'year': 1.0, 'still': 1.0, 'son': 1.0, 'two': 1.0, 'i': 4.0, 'wind': 1.0, 'old': 1.0, 'crazy': 1.0, 'was': 2.0, 'least': 1.0, 'outside': 1.0, 'to': 6.0, 'had': 1.0, 'the': 4.0, 'my': 2.0, 'when': 1.0, 'squeek': 1.0, 'lose': 1.0, 'with': 2.0, 'mind': 1.0, 'cold': 1.0, 'winter': 1.0, 'bought': 1.0, 'about': 3.0, 'head': 1.0, 'issue': 1.0, 'side': 1.0, 'hitting': 1.0, 'show': 1.0, 'run': 1.0, 'too': 1.0, 'and': 6.0, 'play': 1.0, 't': 1.0, 'going': 1.0, 'a': 4.0, 'go': 2.0, 'we': 1.0, 'item': 1.0, 'right': 1.0, 'has': 1.0, 'like': 1.0, 'using': 1.0, 'fit': 1.0, 'jumps': 1.0, 'for': 3.0, 'how': 1.0, 'fixed': 1.0, 'he': 6.0, '6': 1.0, 'now': 2.0, 'weeks': 1.0, 'more': 1.0, 'around': 1.0, 'is': 4.0, 'been': 1.0, 'that': 3.0, 'christmas': 1.0, 'uses': 1.0}
Word element => {'fun': 1.0, 'its': 1.0, 'but': 1.0, '3': 1.0, 'about': 1.0, 'my': 1.0, 'bought': 1.0, 'son': 1.0, 'loves': 1.0, 'him': 1.0, 'it': 2.0, 'for': 1.0, 'wish': 1.0, 'was': 1.0, 'would': 1.0, 'i': 1.0, 'when': 1.0, 'hav': 1.0, 'he': 1.0}
Word element => {'purchase': 1.0, 'use': 1.0, 'but': 1.0, 't': 1.0, 'desn': 1.0, 'she': 1.0, 'this': 1.0, 'it': 2.0, 'old': 1.0, 'machine': 1.0, 'to': 1.0, 'three': 1.0, 'my': 1.0, 'everyday': 1.0, 'wanting': 1.0, 'mine': 1.0, 'stops': 1.0, 'get': 1.0, 'her': 1.0, 'year': 1.0, 'from': 1.0, 'on': 1.0, 'loves': 1.0, 'good': 1.0}
Word element => {'grow': 1.0, 'soon': 1.0, 'will': 1.0, 'is': 1.0, 'problem': 1.0, 'yrs': 1.0, 'and': 1.0, 'very': 1.0, 'like': 1.0, 'working': 1.0, 'loves': 1.0, 'purchased': 1.0, 'yr': 1.0, '4': 1.0, 'old': 1.0, 'i': 1.0, 'for': 1.0, 'only': 1.0, 'he': 2.0, 'durable': 1.0, 'wish': 1.0, 'had': 1.0, 'ago': 1.0, 'my': 1.0, 'out': 2.0, 'made': 1.0, 'bought': 1.0, 'daddy': 1.0, 'bench': 1.0, 'seems': 1.0, 'well': 1.0, 'the': 1.0, '2': 1.0}
Word element => {'ages': 1.0, 'reccommend': 1.0, 'or': 1.0, 'think': 1.0, '6': 2.0, 'size': 1.0, 'something': 1.0, 'so': 1.0, 'little': 1.0, 'as': 2.0, 'he': 2.0, 'son': 1.0, 'hour': 1.0, 'half': 1.0, 'took': 1.0, 'fix': 1.0, 'off': 1.0, 'did': 1.0, 'box': 1.0, 'picture': 1.0, 'went': 1.0, 'out': 1.0, 'directions': 1.0, 'missing': 1.0, 'couple': 1.0, 'although': 2.0, 'were': 1.0, 'together': 2.0, 'was': 3.0, 'various': 1.0, 'however': 1.0, 'easy': 2.0, 'found': 1.0, 'use': 1.0, 'her': 1.0, 'keeps': 1.0, 'blanket': 2.0, 'push': 1.0, 'alternating': 1.0, 'also': 3.0, 'and': 7.0, 'about': 1.0, 'play': 1.0, 'not': 2.0, 'stand': 1.0, 'down': 1.0, 'where': 1.0, 'especially': 1.0, 'back': 2.0, 'enjoys': 1.0, 'but': 3.0, 'without': 1.0, 'no': 1.0, 'traditional': 1.0, 'times': 1.0, 'fallen': 1.0, 'to': 7.0, 'playing': 1.0, 'an': 1.0, 'all': 1.0, 'outside': 1.0, 'from': 2.0, 'center': 1.0, 'purpose': 1.0, 'its': 1.0, 'for': 7.0, '3': 2.0, 'on': 10.0, 'active': 1.0, '2011': 1.0, 'old': 2.0, 'purchase': 1.0, 'hasn': 1.0, 'well': 1.0, 'i': 8.0, 'a': 9.0, 's': 1.0, 'fairly': 1.0, 'likes': 2.0, 't': 3.0, 'take': 1.0, 'we': 1.0, 'lot': 2.0, 'multiple': 1.0, 'forth': 2.0, 'rock': 1.0, 'been': 1.0, 'pieces': 2.0, 'steps': 1.0, 'daughter': 1.0, 'got': 1.0, 'enjoy': 1.0, 'every': 1.0, 'over': 3.0, 'up': 1.0, 'opening': 1.0, 'don': 2.0, 'uses': 2.0, 'looking': 1.0, 'occupied': 1.0, 'swings': 2.0, 'christmas': 1.0, 'this': 3.0, 'single': 1.0, 'very': 2.0, 'big': 3.0, 'since': 1.0, '1': 1.0, 'throw': 1.0, 'great': 1.0, 'child': 1.0, 'year': 2.0, 'they': 1.0, 'sturdy': 2.0, 'day': 2.0, 'me': 1.0, 'my': 3.0, 'entire': 1.0, 'get': 1.0, 'legs': 1.0, 'months': 1.0, 'machine': 1.0, '2': 2.0, 'thing': 1.0, 'when': 2.0, 'sit': 1.0, 'has': 2.0, 'always': 1.0, 'pretend': 1.0, 'deal': 1.0, 'inteded': 1.0, 'she': 8.0, 'baby': 1.0, 'because': 1.0, 'does': 1.0, 'at': 1.0, 'sits': 1.0, 'is': 5.0, 'would': 5.0, 'have': 4.0, '9': 1.0, 'it': 22.0, 'thought': 1.0, 'with': 2.0, 'by': 2.0, 'figure': 1.0, 'now': 1.0, 'benefit': 1.0, 'set': 1.0, 'carpet': 1.0, 'getting': 1.0, 'the': 8.0, 'of': 3.0, 'much': 1.0, 'put': 2.0, 'do': 1.0, 'exercise': 2.0, 'which': 1.0, 'during': 1.0, 'winter': 1.0}
Word element => {'up': 1.0, 'pick': 1.0, 'repackage': 1.0, 'apart': 1.0, 'take': 1.0, 'through': 1.0, 'hard': 1.0, 'unit': 1.0, 'my4': 1.0, 'treadmill': 1.0, 'difficult': 1.0, 'that': 3.0, 'fall': 1.0, 'very': 1.0, 'and': 4.0, 'get': 1.0, 'beside': 1.0, 'disappointed': 1.0, 'bought': 1.0, 'my': 2.0, 'schedule': 1.0, 'tread': 1.0, 'husband': 1.0, 'our': 1.0, 'as': 2.0, 'to': 6.0, 'was': 1.0, 'had': 1.0, '6': 1.0, 'old': 2.0, 'i': 2.0, '4': 1.0, 'on': 1.0, 'struggled': 1.0, 'for': 1.0, 'hassle': 1.0, 'use': 3.0, 'the': 3.0, 'move': 1.0, 'it': 1.0, 'she': 1.0, 'would': 1.0, 'year': 2.0, 'almost': 1.0, 'off': 1.0, 'so': 1.0, 'bit': 1.0, 'didn': 1.0, 'work': 1.0, 'video': 1.0, 'shown': 1.0, 'a': 2.0, 'we': 2.0, 't': 1.0, 'go': 1.0}
Word element => {'want': 1.0, 'didn': 1.0, 'were': 1.0, 'parts': 1.0, 'was': 1.0, 'since': 1.0, 'file': 1.0, 'metal': 1.0, 'used': 1.0, 'petal': 1.0, 'screw': 1.0, 'get': 1.0, 'order': 1.0, 'in': 2.0, 'months': 1.0, 'on': 1.0, 'included': 1.0, 'winter': 1.0, 'both': 1.0, 'sent': 1.0, 'backward': 1.0, 'is': 3.0, '1': 2.0, 'great': 1.0, 'the': 3.0, 'holes': 1.0, 'work': 1.0, 'can': 1.0, 't': 1.0, 'a': 3.0, 'be': 1.0, 'lowest': 1.0, 'will': 1.0, 'and': 3.0, 'setting': 1.0, 'flaws': 1.0, 'perfect': 2.0, 'this': 1.0, 'very': 2.0, 'construction': 2.0, 'fit': 1.0, 'for': 4.0, 'my': 1.0, 'forward': 1.0, 'active': 1.0, 'while': 1.0, 'it': 2.0, 'she': 1.0, 'muscles': 1.0, 'last': 1.0, 'back': 1.0, 'needed': 1.0, 'which': 1.0, 'know': 1.0, 'its': 1.0, 'pedal': 1.0, 'had': 1.0, 'all': 1.0, 'seat': 1.0, 'to': 3.0, 'filed': 1.0, 'so': 1.0, 'detailed': 1.0, 'sturdy': 2.0, 'child': 1.0, 'assembly': 1.0, 'otherwise': 1.0, 'i': 3.0, 'two': 1.0, 'minor': 2.0, 'of': 1.0}
Word element => {'unpleasant': 1.0, 'generally': 1.0, 'made': 1.0, 'which': 1.0, 'to': 1.0, 'all': 1.0, 'and': 2.0, 'use': 1.0, 'horrible': 1.0, 'away': 1.0, 'meantime': 1.0, 'does': 1.0, 'what': 2.0, 'will': 1.0, 'but': 2.0, 'work': 1.0, 'chemical': 1.0, 'be': 1.0, 'is': 2.0, 'accurate': 1.0, 'terrible': 1.0, 'that': 1.0, 'it': 4.0, 'this': 1.0, 'never': 1.0, 'breathing': 1.0, 'children': 1.0, 'rode': 1.0, 'smell': 2.0, 'are': 1.0, 'reviews': 1.0, 'eventually': 1.0, 'my': 1.0, 'the': 4.0, 'pedaling': 1.0, 'you': 1.0, 'regarding': 1.0, 'resistance': 2.0, 'in': 2.0, 'there': 2.0, 't': 1.0, 'go': 1.0, 'a': 1.0, 'dial': 1.0, 'product': 1.0, 'for': 1.0, 'didn': 1.0, 'ride': 1.0, 'so': 1.0, 'was': 2.0, 'very': 1.0, 'loose': 1.0, 'no': 1.0, 'at': 1.0}
Word element => {'concept': 1.0, 'like': 1.0, 'but': 1.0, 'bigger': 1.0, 'should': 1.0, 'nice': 1.0, 'weight': 1.0, 'bench': 1.0, 'a': 1.0, 'the': 2.0, '3': 1.0, 'foam': 1.0, 'i': 1.0, 'or': 1.0, 'for': 1.0, 'year': 1.0, 'be': 1.0, 'product': 1.0, 'younger': 1.0, 'old': 1.0}
Word element => {'best': 1.0, 'xmas': 1.0, 'love': 1.0, 'it': 2.0, 'she': 1.0, 'loves': 1.0, 'this': 1.0, 'with': 1.0, 'is': 1.0, 'me': 1.0, 'perfect': 1.0, 'gift': 1.0, 'wants': 1.0, 'for': 1.0, 'my': 1.0, 'i': 1.0, 'niece': 1.0, 'workout': 1.0, 'who': 1.0, 'always': 1.0, 'to': 1.0}
Word element => {'hero': 1.0, 'be': 2.0, 'anyone': 1.0, 'health': 1.0, 'joins': 1.0, 'will': 1.0, 'also': 1.0, 'and': 7.0, 'couldn': 1.0, 'son': 1.0, 'dad': 3.0, 'is': 3.0, 'grandfather': 1.0, 'into': 1.0, 'was': 1.0, 'it': 3.0, 'first': 1.0, 'he': 3.0, 'great': 2.0, 'grandson': 2.0, 'to': 2.0, 'our': 3.0, 'of': 1.0, 'his': 4.0, 'fitness': 1.0, 'wait': 1.0, 'bonding': 1.0, 'gift': 1.0, 'find': 1.0, 'for': 3.0, 'bought': 1.0, 'one': 1.0, 'going': 1.0, 'we': 1.0, 'a': 3.0, 't': 1.0, 's': 1.0, 'equipment': 1.0, 'enjoys': 1.0, 'workout': 1.0, 'i': 1.0, 'when': 1.0, 'bodybuilder': 1.0, 'grandpa': 2.0, 'are': 1.0, 'loved': 1.0, 'working': 1.0, 'out': 1.0, 'them': 1.0, 'time': 1.0, 'choice': 1.0, 'if': 1.0}
Word element => {'would': 1.0, 'closer': 1.0, 'baby': 1.0, 'animal': 2.0, 'stuffed': 2.0, 'between': 1.0, 'somewhere': 1.0, 'size': 2.0, 'does': 1.0, 'and': 3.0, 'sucking': 1.0, 'different': 1.0, 'stand': 1.0, 'especially': 1.0, 'learning': 1.0, 'top': 1.0, 'he': 2.0, 'with': 2.0, 'silky': 1.0, 'in': 1.0, 'enjoys': 1.0, 'a': 2.0, 's': 1.0, 'when': 1.0, 'playing': 1.0, 'the': 6.0, 'my': 1.0, 'riding': 1.0, 'it': 3.0, 'month': 1.0, 'great': 1.0, 'underside': 1.0, 'horse': 1.0, 'his': 1.0, 'almost': 1.0, 'tags': 1.0, 'like': 1.0, 'old': 1.0, 'on': 2.0, '10': 1.0, 'loves': 1.0, 'mane': 1.0, 'i': 2.0, 'two': 1.0, 'textures': 1.0, 'blanket': 2.0, 'sensory': 1.0, 'are': 1.0, 'for': 2.0, 'say': 1.0, 'cuddle': 1.0, 'is': 3.0, 'soft': 1.0, 'fur': 1.0, 'car': 1.0, 'cuddling': 1.0, 'to': 2.0, 'as': 3.0, 'much': 1.0}
Word element => {'vela': 1.0, 'perego': 1.0, 'on': 1.0, 'my': 2.0, 'size': 1.0, 'organizer': 1.0, 'fits': 1.0, 'stroller': 2.0, 'perfect': 1.0, 'peg': 1.0, 'for': 1.0, 'great': 2.0, 'cell': 1.0, 'phone': 1.0, 'and': 2.0, 'keys': 1.0}
Word element => {'careful': 1.0, 'are': 1.0, 'you': 1.0, 'was': 1.0, 'bag': 1.0, 'stroller': 1.0, 'perfect': 1.0, 'even': 1.0, 'and': 1.0, 'my': 1.0, 'if': 1.0, 'jogging': 1.0, 'a': 2.0, 'needed': 1.0, 'bottles': 1.0, 'i': 1.0, 'or': 1.0, 'for': 2.0, 'love': 1.0, 'this': 1.0, 'it': 1.0, 'that': 1.0, 'has': 1.0, 'place': 1.0, 'water': 1.0, 'soda': 1.0, 'cups': 1.0}
Word element => {'cheaper': 1.0, 'bottles': 1.0, 'water': 1.0, 'reusable': 1.0, 'great': 1.0, 'worked': 1.0, 'space': 1.0, 'open': 1.0, 'has': 1.0, 'large': 2.0, 'holds': 1.0, 'pouch': 1.0, 'recommend': 1.0, 'use': 1.0, 'practical': 1.0, 'but': 1.0, 'in': 1.0, 'organizer': 3.0, 'etc': 1.0, 'i': 4.0, 'stated': 1.0, 'hold': 3.0, 'picture': 1.0, 'aria': 1.0, 'what': 1.0, 'something': 1.0, 'would': 1.0, 'was': 2.0, 'store': 1.0, 'to': 2.0, 'and': 5.0, 'twin': 1.0, 'tons': 1.0, 'single': 1.0, 'read': 1.0, 'very': 1.0, 'good': 1.0, 'side': 1.0, 'many': 1.0, 'double': 1.0, 'perego': 1.0, 'pocket': 1.0, 'you': 1.0, 'peg': 1.0, 'real': 1.0, 'stroller': 2.0, 'as': 1.0, 'diaper': 1.0, 'on': 2.0, 'held': 1.0, 'one': 4.0, 'lot': 1.0, 'different': 1.0, 'small': 1.0, 'a': 6.0, 'reviews': 1.0, 'we': 1.0, 'did': 1.0, 'from': 1.0, 'websites': 1.0, 'overall': 1.0, 'compred': 1.0, 'of': 2.0, 'the': 8.0, 'sunshine': 2.0, 'without': 1.0, 'have': 1.0, 'name': 1.0, 'bag': 2.0, 'light': 1.0, 'looking': 1.0, 'everyday': 1.0, 'during': 1.0, 'wanted': 1.0, 'kept': 1.0, 'research': 1.0, 'hooks': 1.0, 'it': 4.0, '3': 1.0, 'useless': 1.0, 'for': 3.0, 'drinks': 3.0, 'cheap': 1.0, 'product': 1.0, 'prices': 1.0, 'looks': 1.0, 'my': 1.0, 'keys': 1.0, 'search': 1.0, 'not': 2.0, 'reviewer': 1.0, 'ordered': 1.0, 'highly': 1.0, 'this': 4.0, 'kids': 2.0, 'buggy': 1.0, 'returned': 1.0, 'way': 2.0, 'an': 1.0, 'other': 1.0, 'here': 1.0, 'just': 2.0, 'why': 1.0, 'there': 2.0, 'at': 1.0, 'snug': 1.0, 'is': 4.0, 'say': 1.0, 'no': 2.0, 'so': 1.0, 'can': 1.0, 'least': 1.0, 'fight': 1.0, 'buying': 1.0, 'width': 1.0, 'pockets': 1.0, 'plus': 1.0, 'are': 2.0, 'organizers': 1.0, 'zippered': 2.0, 'disney': 1.0, 'totally': 1.0, 's': 2.0, 'maybe': 1.0, 'worth': 1.0}
Word element => {'collapsed': 1.0, 'folded': 1.0, 'i': 2.0, 'storage': 1.0, 'bit': 1.0, 'have': 1.0, 'up': 1.0, 'of': 1.0, 'disney': 1.0, 'in': 1.0, 'keep': 1.0, 'and': 2.0, 'surprised': 1.0, 'stroller': 4.0, 'easy': 1.0, 'maps': 1.0, 'nicely': 1.0, 'great': 2.0, 'the': 2.0, 'my': 1.0, 'was': 3.0, 'to': 4.0, 'that': 2.0, 'were': 1.0, 'receipts': 1.0, 'drinks': 1.0, 'well': 2.0, 's': 1.0, 'extra': 1.0, 'attach': 1.0, 'we': 2.0, 'his': 1.0, 'used': 1.0, 'it': 2.0, 'this': 1.0, 'on': 2.0, 'very': 1.0, 'as': 2.0, 'son': 1.0, 'when': 2.0}
Word element => {'it': 1.0, 'cups': 1.0, 'skinnier': 1.0, 'maybe': 1.0, 'perfectly': 1.0, 'and': 1.0, 'bottles': 1.0, 'watch': 1.0, 'weight': 1.0, 'purposes': 1.0, 'you': 1.0, 'just': 2.0, 'suits': 1.0, 'hooks': 1.0, 'additional': 1.0, 'how': 1.0, 'really': 2.0, 'my': 1.0, 'cup': 1.0, 'sippy': 1.0, 'space': 1.0, 'storage': 1.0, 'are': 2.0, 'nice': 1.0, 'the': 2.0, 'great': 1.0, 'meant': 1.0, 'much': 1.0, 'but': 1.0, 'holders': 1.0, 'put': 1.0, 'water': 1.0, 'on': 1.0, 'them': 1.0, 'for': 1.0}
Word element => {'you': 1.0, 'when': 1.0, 'back': 1.0, 'pocket': 1.0, 'long': 1.0, 'well': 1.0, 'compartment': 1.0, 'at': 1.0, 'main': 1.0, 'no': 1.0, 'sippy': 1.0, 'black': 1.0, 'front': 1.0, 'like': 1.0, 'i': 4.0, 'useless': 1.0, 'it': 1.0, 'works': 1.0, 'only': 2.0, 'shows': 1.0, 'bag': 1.0, 'mention': 1.0, 'there': 1.0, 'clearly': 1.0, 'of': 1.0, 'however': 2.0, 'quite': 1.0, 'is': 4.0, 'comes': 1.0, 'was': 1.0, 'the': 10.0, 'a': 1.0, 't': 1.0, 'nicely': 1.0, 'color': 1.0, 'seller': 1.0, 'cup': 1.0, 'and': 3.0, 'sold': 1.0, 'description': 1.0, 'picture': 1.0, 'wouldn': 1.0, 'okay': 1.0, 'advised': 1.0, 'this': 3.0, 'holders': 2.0, 'that': 1.0, 'known': 1.0, 'contacted': 1.0, 'have': 2.0, 'in': 5.0, 'brown': 2.0, 'itself': 1.0, 'had': 1.0, 'purchased': 1.0, 'cups': 2.0, 'product': 4.0, 'fit': 1.0}
Word element => {'type': 1.0, 'different': 1.0, 'buy': 1.0, 'will': 1.0, 'case': 1.0, 'just': 1.0, 'back': 1.0, 'can': 1.0, 'so': 1.0, 'keeping': 1.0, 'shrinkage': 1.0, 'pilling': 1.0, 'no': 1.0, 'good': 1.0, 'rack': 1.0, 'flat': 1.0, 'lay': 1.0, 'drop': 1.0, 'loveys': 1.0, 'having': 1.0, 'pillowcase': 1.0, 'didn': 1.0, 'and': 5.0, 'toss': 1.0, 'out': 1.0, 'store': 1.0, 'was': 2.0, 'ber': 1.0, 'than': 1.0, 'call': 1.0, 'have': 1.0, 'blankie': 1.0, 'want': 1.0, 's': 6.0, 'we': 5.0, 'along': 1.0, 't': 2.0, 'going': 1.0, 'a': 8.0, 'when': 4.0, 'animal': 3.0, 'sorry': 1.0, 'stuffed': 1.0, 'another': 3.0, 'toy': 1.0, 'them': 1.0, 'site': 1.0, 'has': 1.0, 'cheap': 1.0, 'for': 1.0, 'old': 1.0, 'point': 1.0, 'this': 1.0, 'found': 1.0, 'or': 2.0, 'carries': 1.0, 'loves': 1.0, 'gave': 1.0, 'amazon': 1.0, 'been': 2.0, 'that': 2.0, 'our': 1.0, 'to': 7.0, 'drying': 1.0, 'as': 4.0, 'it': 5.0, 'him': 4.0, 'multiple': 1.0, 'now': 1.0, 'more': 1.0, 'business': 1.0, 'around': 2.0, 'is': 1.0, '2': 1.0, 'but': 1.0, 'blanket': 1.0, 'eye': 1.0, '5': 1.0, 'year': 2.0, 'uuml': 1.0, 'daughter': 1.0, 'brings': 1.0, 'wash': 1.0, 'smaller': 1.0, 'her': 5.0, 'large': 1.0, 'about': 1.0, 'bed': 2.0, 'sick': 1.0, 'weren': 1.0, 'with': 5.0, 'moomoo': 1.0, 'cutestbabytoy': 1.0, 'if': 1.0, 'every': 1.0, 'probably': 1.0, 'online': 1.0, 'dubbed': 1.0, 'baby': 1.0, 'she': 3.0, 'washings': 1.0, 'up': 4.0, 'ones': 1.0, 'one': 2.0, 'held': 2.0, 'lot': 1.0, 'since': 1.0, 'of': 2.0, 'the': 3.0, 'house': 1.0, 'end': 1.0, 'read': 1.0, 'on': 4.0, 'bath': 1.0, 'i': 4.0, 'putting': 1.0, 'slept': 1.0, 'm': 1.0, 'in': 6.0, 'you': 1.0, 'night': 1.0, 'grab': 1.0, 'whatever': 1.0, 'only': 1.0, 'new': 1.0, 'worried': 1.0, 'time': 1.0, 'love': 1.0, 'he': 4.0, 'dry': 1.0, 'not': 1.0, 'my': 2.0, 'me': 1.0, 'taking': 1.0, 'other': 2.0, 'great': 1.0}
Word element => {'got': 1.0, 'them': 1.0, 'out': 1.0, 'stuffing': 1.0, 'disappointed': 1.0, 'body': 1.0, 'without': 1.0, 'animal': 1.0, 'was': 1.0, 'stuffed': 1.0, 'is': 1.0, 'lionel': 1.0, 'i': 3.0, 'little': 1.0, 'twin': 1.0, 'one': 1.0, 'for': 1.0, 'niece': 1.0, 'bunny': 1.0, 'only': 1.0, 'it': 1.0, 'this': 2.0, 'more': 1.0, 'the': 2.0, 'went': 1.0, 'my': 1.0, 'else': 1.0, 'so': 1.0, 'small': 1.0, 'and': 4.0, 'nephew': 1.0, 'ordered': 1.0, 'something': 1.0, 'thought': 1.0, 'but': 1.0, 'would': 1.0, 'not': 1.0, 'be': 1.0, 'a': 4.0, 'lovey': 1.0, 'large': 1.0, 'like': 3.0, 'blanket': 2.0}
Word element => {'animals': 1.0, 'buying': 1.0, 'due': 1.0, 'another': 1.0, 'one': 1.0, 'too': 2.0, 'does': 1.0, 'am': 2.0, 'just': 1.0, 'big': 1.0, 'how': 3.0, '6': 1.0, 'knew': 1.0, 'some': 1.0, 'so': 4.0, 'other': 1.0, 'ever': 1.0, 'in': 4.0, 'cat': 1.0, 'when': 1.0, 'traveling': 1.0, 'bear': 1.0, 'size': 2.0, 'but': 1.0, '2': 2.0, 'surprised': 1.0, 'planning': 1.0, 'were': 1.0, 'people': 1.0, '1': 1.0, 'since': 1.0, 'hand': 1.0, 'hold': 1.0, 'typical': 1.0, 'hands': 1.0, 's': 3.0, 't': 1.0, 'losing': 1.0, 'take': 1.0, 'we': 1.0, 'bunny': 1.0, 'person': 1.0, 'the': 4.0, 'of': 4.0, 'baby': 1.0, 'many': 1.0, 'she': 3.0, 'it': 13.0, 'dog': 1.0, 'fell': 1.0, 'been': 1.0, 'for': 5.0, 'actually': 1.0, 'love': 3.0, 'may': 1.0, 'my': 2.0, 'glad': 1.0, 'stashed': 1.0, 'bought': 2.0, 'about': 1.0, 'i': 9.0, 'etc': 1.0, 'two': 1.0, 'old': 1.0, 'makes': 1.0, 'had': 1.0, 'now': 1.0, 'attached': 1.0, 'away': 1.0, 'was': 2.0, 'doesn': 1.0, 'to': 3.0, 'as': 1.0, 'and': 6.0, 'this': 1.0, 'perfect': 2.0, 'seen': 1.0, 'ups': 1.0, 'soft': 1.0, 'daughter': 2.0, 'before': 1.0, 'once': 1.0, 'room': 1.0, 'her': 2.0, 'think': 1.0, 'on': 2.0, 'know': 1.0, 'easy': 2.0, 'months': 1.0, 'get': 1.0, 'have': 2.0, 'bunch': 1.0, 'a': 1.0, 'small': 1.0, 'purses': 1.0, 'or': 2.0, 'them': 1.0, 'has': 1.0, 'cars': 1.0, 'planes': 1.0, 'also': 1.0, 'multiples': 1.0, 'unique': 1.0, 'more': 1.0, 'fear': 1.0, 'at': 1.0, 'is': 2.0, 'back': 1.0, 'with': 1.0, 'up': 1.0, 'comments': 1.0, 'because': 1.0, 'not': 1.0}
Word element => {'order': 1.0, 'ridiculous': 1.0, 'upset': 1.0, 'away': 1.0, 'here': 1.0, 'reviews': 1.0, 'write': 1.0, 'back': 1.0, 'sites': 1.0, 'never': 1.0, 'gifts': 1.0, 'shown': 1.0, 'buy': 1.0, 'favorite': 1.0, 'for': 1.0, 'product': 1.0, 'variety': 1.0, 'seeing': 1.0, 'in': 1.0, 'door': 1.0, 'is': 1.0, 'on': 3.0, 'arrived': 1.0, 'size': 2.0, 'listed': 1.0, 'the': 4.0, 'if': 2.0, 'hand': 1.0, 'get': 1.0, 'and': 3.0, 'go': 1.0, 't': 1.0, 'a': 5.0, 'my': 3.0, 'purchase': 1.0, 'had': 3.0, 'what': 1.0, 'purchased': 1.0, 'rip': 2.0, 'not': 1.0, 'would': 1.0, 'furious': 1.0, 'was': 3.0, 'as': 1.0, 'all': 1.0, 'to': 4.0, 'step': 1.0, 'packaging': 1.0, 'saved': 1.0, 'i': 10.0, 'off': 2.0, 'typing': 1.0, 'helpful': 1.0, 'wasted': 1.0, 'elephant': 1.0, 'it': 3.0, 'this': 3.0, 'with': 1.0, 'even': 1.0, 'wouldn': 1.0, 'have': 2.0, 'medium': 1.0, 'that': 1.0, 'been': 2.0, 'box': 1.0, 'excited': 1.0, 'bubble': 1.0, 'am': 3.0, 'finally': 1.0, 'no': 1.0, 'future': 1.0, 'bigger': 1.0, 'because': 1.0, 'than': 1.0, 'such': 1.0, 'some': 1.0, 'knew': 1.0, 'time': 1.0, 'friends': 1.0, 'so': 3.0, 'do': 1.0, 'tiny': 1.0}
Word element => {'total': 1.0, 'prevent': 1.0, 'order': 1.0, 'll': 1.0, 'attached': 1.0, 'first': 1.0, 'husband': 1.0, 'washing': 1.0, 'how': 1.0, 'face': 1.0, 'dragged': 1.0, 'though': 1.0, 'item': 1.0, 'or': 2.0, 'with': 1.0, 'bed': 1.0, 'out': 1.0, 'newborn': 1.0, 'than': 1.0, 'needs': 1.0, 'smaller': 1.0, 'fact': 1.0, 'my': 2.0, 'in': 1.0, 'snuggle': 1.0, 'be': 1.0, 'any': 1.0, 'to': 8.0, 'was': 1.0, 'old': 1.0, 'becomes': 1.0, 'i': 4.0, '4': 1.0, 'put': 1.0, 'on': 1.0, 'infant': 1.0, 'gets': 1.0, 'elicited': 1.0, 'smothered': 1.0, 'lost': 1.0, 'soft': 1.0, 'perfect': 1.0, 'this': 2.0, 'for': 1.0, 'daughter': 1.0, 'breakdown': 1.0, 'by': 1.0, 'turns': 1.0, 'admit': 1.0, 'expected': 1.0, 'and': 4.0, 'do': 1.0, 'month': 1.0, 'it': 7.0, 'she': 3.0, 'smiles': 1.0, 'but': 1.0, 'can': 1.0, 'easily': 1.0, 'worry': 1.0, 'hold': 1.0, 'that': 2.0, 'loves': 2.0, 'next': 1.0, 'over': 1.0, 'up': 1.0, 'don': 1.0, 'several': 1.0, 'about': 1.0, 's': 1.0, 'a': 2.0, 't': 1.0, 'small': 1.0, 'have': 2.0, 'her': 4.0, 'if': 2.0, 'being': 1.0, 'not': 1.0}
Word element => {'review': 1.0, 'have': 1.0, 'kids': 1.0, 'it': 5.0, 'going': 1.0, 'a': 1.0, 'to': 4.0, 'had': 2.0, 'stars': 1.0, 'for': 2.0, 'one': 1.0, 'i': 1.0, 'together': 1.0, 'not': 2.0, 'few': 1.0, 'just': 1.0, 'white': 1.0, 'clips': 2.0, 'included': 1.0, 'keep': 1.0, 'tape': 1.0, 'no': 1.0, 'good': 1.0, 'quality': 1.0, 'on': 2.0, 'put': 2.0, 'back': 2.0, 'will': 1.0, 'and': 4.0, 'break': 1.0, 'its': 1.0, 'do': 1.0, 'the': 5.0, 'are': 1.0, 'easily': 1.0, 'take': 1.0, 'better': 1.0, 'chain': 1.0, 'their': 1.0, 'dolls': 2.0, 'more': 1.0, 'is': 2.0, 'fall': 1.0, 'if': 1.0, 'apart': 1.0, 'display': 1.0, 'would': 1.0, 'forth': 1.0, 'but': 1.0, 'can': 1.0, 'trick': 1.0}
Word element => {}
Word element => {'feeding': 1.0, 'when': 1.0, 'hold': 1.0, 'for': 1.0, 'chemicals': 1.0, 'son': 1.0, 'very': 3.0, 'much': 1.0, 'pba': 1.0, 'up': 1.0, 'colic': 1.0, 'he': 1.0, 'with': 1.0, 'these': 1.0, 'without': 1.0, 'the': 1.0, 'heavy': 1.0, 'had': 1.0, 'excellent': 1.0, 'not': 2.0, 'or': 1.0, 'bottles': 2.0, 'easy': 1.0, 'take': 1.0, 'are': 2.0, 'my': 2.0, 'happy': 1.0, 'parent': 1.0, 're': 1.0, 'other': 1.0, 'never': 1.0, 'design': 1.0, 'and': 2.0, 'a': 1.0, 'i': 2.0, 'm': 1.0, 'baby': 1.0, 'them': 2.0, 'would': 1.0, 've': 1.0, 'spit': 1.0, 'also': 1.0, 'recommended': 1.0, 'as': 1.0, 'to': 2.0, 'any': 2.0, 'all': 1.0, 'is': 1.0, 'cute': 1.0, 'they': 2.0, 'friends': 1.0, 'so': 1.0}
Word element => {'around': 1.0, 'on': 1.0, 'hold': 1.0, 'her': 2.0, 'easy': 1.0, 'seem': 1.0, 'like': 2.0, 'properly': 1.0, 'wouldn': 1.0, 'really': 1.0, 'down': 1.0, 'than': 1.0, 'way': 1.0, 'screw': 1.0, 'nipples': 2.0, 'kinds': 1.0, 'won': 1.0, 'different': 1.0, 'change': 1.0, 'ready': 1.0, 'previously': 1.0, 'will': 2.0, 'breastflow': 1.0, 'been': 1.0, 'into': 2.0, 'years': 1.0, 'were': 2.0, 'we': 3.0, 'a': 4.0, 'fit': 1.0, 't': 3.0, 's': 1.0, 'time': 1.0, 'new': 2.0, 'my': 1.0, 'fact': 1.0, 'after': 1.0, 'bottles': 7.0, 'are': 1.0, 'first': 1.0, 'with': 2.0, 'brand': 2.0, 'putting': 1.0, 'i': 13.0, 'completely': 1.0, 'maintenance': 2.0, 'daughter': 1.0, 'bout': 1.0, 'thrush': 1.0, 'and': 5.0, 'sterilizing': 1.0, 'knew': 1.0, 'some': 1.0, 'colorful': 1.0, 'it': 3.0, 'was': 4.0, 'purchased': 1.0, 'wanted': 1.0, 'didn': 1.0, 'even': 2.0, 'that': 5.0, 'because': 2.0, 'lot': 1.0, 'ones': 2.0, 'of': 4.0, 'the': 13.0, 'place': 1.0, 'comes': 1.0, 'these': 2.0, 'required': 2.0, 'feel': 1.0, 'comfortable': 1.0, 'for': 2.0, 'using': 3.0, 'bottle': 1.0, 'decided': 1.0, 'pretty': 1.0, 'to': 4.0, 'as': 2.0, 'get': 1.0, 'types': 1.0, 'own': 1.0, 'off': 1.0, 'just': 2.0, 'placed': 1.0, 'they': 4.0, 'when': 3.0, 'also': 1.0, 'received': 1.0, 'correctly': 1.0, 'plastic': 1.0, 'has': 1.0, 'them': 3.0, 'had': 2.0, 'offered': 1.0, 'screws': 1.0, 'surpised': 1.0, 'learn': 1.0, 'exactly': 1.0, 'much': 1.0, 'all': 2.0, 'other': 2.0, 'bottom': 1.0, 'leak': 1.0, 'portion': 2.0, 'o': 1.0, 'there': 1.0, 'frustrated': 1.0, 'two': 1.0, 'little': 1.0, 'white': 1.0, 'is': 1.0, 'ring': 1.0, 'be': 2.0, 'liked': 2.0, 'fitted': 1.0, 'still': 1.0, 'if': 2.0, 'not': 1.0, 'per': 1.0, 'in': 2.0, 'right': 1.0, 'over': 1.0, 'top': 1.0}
Word element => {'product': 1.0, 'would': 1.0, 'in': 1.0, 'times': 1.0, 'at': 1.0, 'which': 1.0, 'mover': 1.0, 'can': 1.0, 'that': 2.0, 'is': 2.0, 'my': 2.0, 'recommend': 1.0, 'she': 1.0, 'fully': 1.0, 'a': 2.0, 'thru': 1.0, 'see': 1.0, 'well': 2.0, 's': 1.0, 'job': 1.0, 'concern': 1.0, 'keep': 1.0, 'shaker': 1.0, 'child': 1.0, 'covers': 1.0, 'does': 1.0, 'canopy': 1.0, 'frustrates': 1.0, 'nasty': 1.0, 'nooks': 1.0, 'bug': 1.0, 'only': 1.0, 'it': 2.0, 'this': 2.0, 'all': 3.0, 'to': 1.0, 'those': 1.0, 'i': 1.0, 'bugs': 1.0, 'and': 3.0, 'away': 1.0, 'as': 1.0, 'cranies': 1.0, 'from': 1.0, 't': 1.0, 'the': 2.0, 'baby': 2.0}
Word element => {'season': 1.0, 'in': 1.0, 'off': 1.0, 'blow': 1.0, 'definitely': 1.0, 'and': 1.0, 'places': 1.0, 'multiple': 1.0, 'secures': 1.0, 'be': 1.0, 'it': 1.0, 'wouldn': 2.0, 'its': 1.0, 'to': 1.0, 'double': 1.0, 'easiest': 1.0, 'easy': 1.0, 'providing': 1.0, 'not': 1.0, 'fit': 1.0, 'except': 1.0, 'must': 1.0, 'very': 2.0, 'disney': 1.0, 'fold': 1.0, 'up': 2.0, 'cover': 1.0, 'rainy': 1.0, 'a': 3.0, 'world': 1.0, 'covers': 1.0, 'but': 1.0, 'stroller': 1.0, 'doesn': 1.0, 'thing': 1.0, 'rain': 1.0, 'possible': 1.0, 't': 3.0, 'the': 3.0, 'great': 2.0, 'surface': 1.0, 'for': 3.0, 'handle': 1.0, 'every': 1.0, 'sturdy': 1.0, 'tailored': 1.0, 'fog': 1.0}
Word element => {'never': 1.0, 'if': 1.0, 'do': 2.0, 'stroller': 1.0, 'his': 1.0, 'old': 1.0, 'with': 1.0, 'stuck': 1.0, 'receive': 2.0, 'm': 1.0, 'you': 2.0, 'when': 1.0, 'of': 1.0, 'different': 1.0, 'gotten': 2.0, 'so': 1.0, 'time': 1.0, 've': 1.0, 'each': 1.0, 'department': 1.0, 'customer': 1.0, 'emailed': 1.0, 'for': 2.0, 'sept': 1.0, 'service': 1.0, 'credit': 1.0, 'today': 1.0, 'going': 1.0, 'a': 3.0, 'cover': 3.0, 'month': 2.0, 'it': 3.0, 'meanwhile': 1.0, 'this': 3.0, '22': 1.0, 'answer': 1.0, 'received': 1.0, 'still': 1.0, 'ordered': 1.0, 'i': 6.0, 'have': 6.0, 'stock': 2.0, 'charged': 1.0, 'later': 1.0, 'mothers': 3.0, 'from': 1.0, 'happy': 3.0, 'purchase': 1.0, 'my': 2.0, 'use': 1.0, 'amazon': 1.0, '3': 1.0, 'on': 1.0, 'called': 1.0, 'card': 1.0, 'august': 1.0, '25': 1.0, 'rain': 4.0, 'lists': 1.0, 'as': 1.0, 'to': 4.0, 'and': 5.0, 'not': 3.0, 'me': 1.0, 'claims': 1.0, 'that': 1.0, 'please': 1.0, 'their': 2.0, 'baby': 2.0, 'is': 1.0, 'jogger': 1.0, 'in': 3.0, 'because': 1.0, 'does': 1.0, 'but': 1.0, 'without': 1.0, 'the': 4.0, 'website': 1.0, 'they': 1.0, 'will': 1.0, 'item': 3.0, 'failed': 1.0, 'communicate': 1.0}
Word element => {'best': 1.0, 'work': 1.0, 'in': 1.0, 'drop': 1.0, 'about': 2.0, '6months': 1.0, '9month': 1.0, 'and': 4.0, 's': 1.0, 'a': 4.0, 'discovered': 1.0, 'birth': 1.0, 'bottle': 4.0, 'irregularly': 1.0, 'has': 2.0, 'give': 1.0, 'latex': 1.0, 'i': 5.0, 'old': 1.0, 'at': 1.0, 'breastfed': 1.0, 'who': 1.0, 'unsuccessful': 1.0, 'it': 1.0, 'with': 1.0, 'item': 1.0, 'my': 3.0, 'purchased': 1.0, 'had': 2.0, 'was': 2.0, 'to': 1.0, 'for': 1.0, 'daughter': 4.0, 'is': 1.0, 'read': 1.0, 'anything': 1.0, 'however': 1.0, 'through': 1.0, 'playtex': 1.0, 'try': 1.0, 'trial': 1.0, 'have': 1.0, 'error': 1.0, 'willing': 1.0, 'refused': 1.0, 'like': 1.0, 'nipple': 1.0, 'the': 1.0, 'this': 3.0, 'found': 1.0, 'been': 1.0, 'that': 1.0}
Word element => {'however': 1.0, 'anything': 1.0, 'about': 1.0, 'read': 1.0, 'refuses': 1.0, 'month': 1.0, 'is': 1.0, 'daughter': 2.0, 'for': 1.0, 'to': 1.0, 'was': 2.0, 'had': 2.0, 'my': 2.0, 'the': 2.0, 'willing': 1.0, '7': 1.0, 'item': 1.0, 'it': 1.0, 'this': 2.0, 'unsuccessful': 1.0, 'who': 1.0, 'try': 1.0, 'most': 1.0, 'purchased': 1.0, 'old': 1.0, 'i': 2.0, 'time': 1.0, 'has': 1.0, 'irregularly': 1.0, 'of': 1.0, 'give': 1.0, 'bottle': 3.0, 'been': 1.0, 'breastfed': 1.0, 'and': 2.0, 'a': 2.0}
Word element => {'get': 1.0, 'formula': 1.0, 'with': 1.0, 'using': 1.0, 'one': 2.0, 'have': 1.0, 'course': 1.0, 'of': 1.0, 'just': 3.0, 'also': 2.0, 'will': 2.0, 'in': 1.0, 'trying': 1.0, 'is': 2.0, 'has': 1.0, 'parent': 2.0, 'ideal': 1.0, 'finally': 1.0, 'relieved': 1.0, 'sterilized': 1.0, 'if': 1.0, '10': 1.0, 'obviously': 1.0, 'baby': 4.0, 'don': 1.0, 'take': 2.0, 'taken': 1.0, 'used': 1.0, 'online': 1.0, 'went': 2.0, 'eventually': 1.0, 'purchase': 1.0, 'my': 4.0, 'opinion': 1.0, 'love': 1.0, 'for': 2.0, 'ones': 1.0, 'without': 1.0, 'the': 4.0, 'a': 4.0, 't': 1.0, 'those': 1.0, 'not': 4.0, 'because': 2.0, 'would': 4.0, 'keep': 1.0, 'who': 1.0, 'breastfed': 4.0, 'time': 2.0, 'bottle': 7.0, 'two': 1.0, 'i': 13.0, 'it': 9.0, 'she': 2.0, 'you': 2.0, 'when': 3.0, 'us': 1.0, 'her': 1.0, 'different': 1.0, 'switch': 2.0, 'all': 1.0, 'any': 6.0, 'to': 8.0, 'took': 1.0, 'through': 1.0, 'looking': 1.0, 'hesitation': 1.0, 'natural': 2.0, 'nurser': 2.0, 'they': 2.0, 'that': 3.0, 'gave': 1.0, 'babies': 1.0, 'tried': 1.0, 'r': 1.0, 'carry': 1.0, 'but': 1.0, 'yellow': 1.0, 'recommend': 2.0, 'was': 1.0, 'anymore': 1.0, 'this': 2.0, 'found': 1.0, 'immediately': 1.0, 'suggest': 1.0, 'had': 1.0, 'adiri': 2.0, 'purchased': 1.0, 'received': 1.0}
Word element => {'strange': 1.0, 'down': 1.0, 'upside': 1.0, 'also': 1.0, 'in': 1.0, 'about': 1.0, 'baby': 1.0, 'right': 1.0, 'be': 1.0, 'would': 1.0, 'designed': 1.0, 'worried': 1.0, 'uniquely': 1.0, 'soft': 1.0, 'for': 1.0, 'liked': 1.0, 'anything': 1.0, 'my': 1.0, 'the': 2.0, 'great': 1.0, 'more': 1.0, 'when': 1.0, 'to': 1.0, 'was': 5.0, 'wean': 1.0, 'bottle': 1.0, 'liquids': 1.0, 'putting': 1.0, 'tried': 1.0, 'i': 5.0, 'hated': 1.0, 'trying': 1.0, 'think': 1.0, 'however': 1.0, 'thought': 1.0, 'that': 1.0, 'leaking': 1.0, 'really': 1.0, 'son': 1.0, 'confused': 1.0, 'than': 1.0, 'and': 4.0, 'this': 1.0, 'he': 1.0, 'it': 3.0}
Word element => {'3': 1.0, '2': 1.0, '1': 1.0, 'stage': 1.0, 'love': 1.0, 'issue': 1.0, 'never': 1.0, 'go': 1.0, 'helping': 1.0, 'been': 1.0, 'amazing': 1.0, 'mine': 2.0, 'barring': 1.0, 'try': 1.0, 'think': 1.0, 'on': 6.0, 'make': 1.0, 'screwed': 1.0, 're': 1.0, 'come': 1.0, 'cap': 4.0, 'tightly': 1.0, 'little': 1.0, 'really': 1.0, 'directions': 1.0, 'baby': 2.0, 'following': 1.0, 'curve': 1.0, 'an': 1.0, 'all': 1.0, 'length': 1.0, 'to': 6.0, 'probably': 1.0, 'any': 1.0, 'have': 3.0, 'say': 1.0, 'at': 2.0, 'is': 3.0, 't': 3.0, 'a': 6.0, 'going': 1.0, 'those': 1.0, 'not': 1.0, 'give': 1.0, 'be': 1.0, 's': 4.0, 'giving': 1.0, 'had': 3.0, 'easily': 1.0, 'breast': 1.0, 'that': 5.0, 'into': 1.0, 'them': 1.0, 'next': 1.0, 'more': 2.0, 'babies': 1.0, 'was': 1.0, 'doesn': 1.0, 'don': 1.0, 'over': 1.0, 'i': 6.0, 'but': 2.0, 'trouble': 1.0, 'nipple': 2.0, 'learning': 1.0, 'leaky': 1.0, 'first': 1.0, 'him': 1.0, 'thought': 1.0, 'it': 16.0, 'with': 2.0, 'godsend': 1.0, 'and': 8.0, 'matter': 1.0, 'way': 1.0, 'when': 2.0, 'sit': 1.0, 'between': 1.0, 'large': 1.0, 'insulting': 1.0, 'didn': 1.0, 'seconds': 1.0, 'you': 5.0, 'upside': 1.0, 'reading': 1.0, 'falls': 1.0, 'body': 1.0, 'the': 13.0, 'of': 2.0, 'will': 3.0, 'also': 1.0, 'seat': 1.0, 'in': 1.0, 'bit': 1.0, 'few': 2.0, 'bottle': 3.0, 'so': 1.0, 'sure': 1.0, 'liquid': 1.0, 'leak': 2.0, 'now': 1.0, 'upright': 2.0, 'we': 1.0, 'then': 3.0, 'take': 1.0, 'off': 1.0, 'press': 1.0, 'let': 1.0, 'for': 1.0, 'before': 1.0, 'test': 1.0, 'did': 1.0, 'dribbles': 1.0, 'turn': 3.0, 'if': 1.0, 'nothing': 1.0, 'out': 1.0, 'down': 2.0, 'car': 1.0, 'pressing': 1.0}
Word element => {'soft': 1.0, 'not': 1.0, 'recommend': 1.0, 'highly': 1.0, 'would': 1.0, 'i': 1.0, 'touch': 1.0, 'special': 1.0, 'an': 1.0, 'pillows': 1.0, 'extra': 3.0, 'penny': 1.0, 'my': 1.0, 'the': 2.0, 'added': 1.0, 'every': 1.0, 'worth': 1.0, 'too': 3.0, 'daughter': 1.0, 'in': 1.0, 'only': 1.0, 'this': 1.0, 'it': 4.0, 'amazing': 1.0, 'set': 2.0, 'bedding': 2.0, 'really': 1.0, 'looks': 1.0, 'is': 3.0, 'room': 1.0, 'could': 1.0, 'like': 1.0, 'comfy': 1.0, 'accessories': 1.0, 'and': 3.0, 'be': 1.0, 'gorgeous': 1.0, 'a': 1.0, 'magazine': 1.0, 's': 2.0, 'wall': 1.0, 'art': 1.0}
Word element => {'adorable': 1.0, 'very': 1.0, 'and': 1.0, 'second': 1.0, 'purchased': 1.0, 'so': 1.0, 'town': 1.0, 'out': 1.0, 'was': 1.0, '34': 2.0, 'leaving': 1.0, 'these': 1.0, 'puppy': 2.0, 'or': 1.0, 'behind': 1.0, 'old': 1.0, 'i': 1.0, 'getting': 1.0, 'soft': 1.0, 'scared': 1.0, 'the': 1.0, 'without': 1.0, 'can': 1.0, '16': 1.0, 'his': 1.0, 'one': 1.0, 'love': 1.0, 'gives': 1.0, 'baby': 1.0, 'incredibly': 2.0, 'of': 3.0, 'shower': 1.0, 'received': 1.0, 'he': 1.0, 'month': 1.0, 'it': 5.0, 'gift': 1.0, 'gross': 1.0, 'my': 1.0, 'family': 1.0, 'to': 1.0, 'sleep': 1.0, 'as': 1.0, 'all': 1.0, 'have': 1.0, 'wash': 1.0, 'also': 1.0, 'regularly': 1.0, 'visiting': 1.0, 'were': 1.0, 's': 1.0, 't': 1.0, 'we': 3.0, 'a': 2.0, 'losing': 1.0, 'from': 1.0, 'while': 1.0}
Word element => {'silk': 1.0, 'of': 1.0, 'feeling': 1.0, 'daughter': 1.0, 'think': 1.0, 'i': 1.0, 'grandchildren': 1.0, 'for': 2.0, 'love': 2.0, 'it': 1.0, 'has': 1.0, 'two': 1.0, 'who': 1.0, 'face': 1.0, 'my': 2.0, 'these': 1.0, 'great': 1.0, 'the': 3.0, 'keep': 1.0, 'cutest': 1.0, 'material': 1.0, 'to': 1.0, 'wanted': 1.0, 'fingers': 1.0, 'herself': 1.0, 'is': 1.0, 'little': 1.0}
Word element => {'out': 1.0, 'with': 1.0, 'live': 1.0, 'little': 1.0, 'our': 1.0, 'boy': 1.0, 'that': 1.0, 'one': 1.0, 'we': 1.0, 'item': 1.0, 'bought': 1.0, 'as': 1.0, 'a': 1.0, 'excellent': 1.0, 'backup': 1.0, 'cannot': 1.0, 'an': 1.0, 'for': 1.0, 'it': 1.0, 'existing': 1.0}
Word element => {'sleep': 1.0, 'to': 2.0, 'are': 1.0, 'real': 1.0, 'i': 1.0, 'boys': 1.0, 'infants': 1.0, 'puppy': 1.0, 'a': 2.0, 'will': 1.0, 'and': 2.0, 'know': 1.0, 'girls': 1.0, 'given': 1.0, 'love': 1.0, 'is': 2.0, 'with': 1.0, 'it': 1.0, 'this': 1.0, 'soft': 1.0, 'from': 1.0, 'experience': 1.0, 'blanket': 1.0, 'incredibly': 1.0, 'toy': 1.0, 'welcome': 1.0, 'blankets': 1.0, 'safe': 1.0, 'both': 1.0, 'before': 1.0, 'long': 1.0}
Word element => {'happier': 1.0, 'so': 1.0, 'needed': 1.0, 'wash': 1.0, 'up': 1.0, 'silky': 1.0, 'lovie': 1.0, 'i': 3.0, 'old': 1.0, 'night': 1.0, 'bought': 2.0, 'be': 1.0, 'her': 1.0, 'good': 1.0, 'that': 1.0, 'loves': 1.0, 'and': 3.0, 'couldn': 1.0, 'has': 1.0, '18': 1.0, 'she': 3.0, 'it': 3.0, 'month': 1.0, 'spunky': 1.0, 'really': 1.0, 'is': 1.0, 'for': 2.0, 'daughter': 1.0, 'my': 1.0, 'another': 1.0, '34': 2.0, 'snuggles': 1.0, 'inside': 1.0, 'this': 1.0, 'soft': 1.0, 'desperately': 1.0, 'the': 1.0, 'a': 1.0, 's': 1.0, 't': 1.0, '1': 1.0, 'nice': 1.0, 'smooth': 1.0, 'as': 1.0, 'sleep': 1.0, 'to': 2.0, 'option': 1.0, 'at': 1.0}
Word element => {'one': 1.0, 'what': 1.0, 'depending': 1.0, 'days': 1.0, 'of': 1.0, 'every': 1.0, 'them': 1.0, 'washes': 1.0, 'doll': 1.0, 'worked': 1.0, 'in': 2.0, 'couple': 1.0, 'out': 1.0, 'replacement': 1.0, 'second': 1.0, 'buying': 1.0, 'with': 1.0, 'lost': 1.0, 'this': 1.0, 'carrying': 1.0, 'just': 4.0, 'named': 1.0, 'enough': 1.0, 'to': 2.0, 'was': 2.0, 'old': 1.0, 'about': 1.0, 'trade': 1.0, 'favorite': 1.0, 'week': 1.0, 'wound': 1.0, 'well': 2.0, 'toy': 1.0, 'has': 2.0, 'around': 2.0, 'sleeps': 1.0, 'dirty': 1.0, 'reviews': 1.0, 'it': 5.0, 'she': 4.0, 'case': 1.0, 'been': 2.0, 'my': 1.0, 'kiddos': 1.0, 'daughter': 1.0, 'when': 1.0, 'lucy': 1.0, 'chew': 1.0, 'since': 2.0, 'too': 1.0, 'and': 3.0, 'drags': 1.0, 'the': 3.0, 'or': 1.0, 'everywhere': 1.0, 'on': 3.0, 'sounds': 1.0, 'start': 1.0, 'teething': 1.0, 'bite': 1.0, 'something': 1.0, 'nose': 1.0, 'like': 1.0, 'which': 1.0, 'reading': 1.0, 'wash': 1.0, 'up': 2.0, 'other': 2.0, 'going': 1.0, 'a': 1.0, 's': 2.0, 'we': 3.0, 'did': 1.0}
Word element => {'spoke': 1.0, 'boy': 1.0, 'heart': 1.0, 'athletic': 1.0, 'big': 1.0, 'new': 1.0, 'his': 2.0, 'a': 2.0, 'blue': 1.0, 'puppy': 2.0, 'him': 1.0, 'asked': 1.0, 'find': 1.0, 'my': 1.0, 'could': 1.0, 'd': 1.0, 'i': 1.0, 'if': 1.0, 'grandson': 1.0, 'because': 1.0, 'worn': 1.0, 'had': 2.0, 'to': 2.0, 'out': 2.0, 'this': 1.0, 'it': 1.0, 'he': 1.0, 'throw': 1.0, 'while': 1.0}
Word element => {'highly': 1.0, 'grow': 1.0, 'as': 1.0, 'for': 1.0, 'size': 1.0, 'great': 1.0, 'soft': 1.0, 'super': 1.0, 's': 1.0, 'spunky': 2.0, 'and': 2.0, 'a': 1.0, 'since': 1.0, 'purchase': 1.0, 'kids': 1.0, 'us': 1.0, 'daughter': 1.0, 'they': 1.0, 'has': 1.0, 'my': 1.0, 'our': 1.0, 'second': 1.0, 'is': 2.0, 'he': 1.0, 'with': 1.0, 'this': 1.0, 'him': 1.0, 'huggybuddies': 1.0, 'recommend': 1.0, 'she': 1.0, 'had': 1.0, 'was': 1.0, 'of': 1.0, '6': 1.0, 'i': 1.0, 'old': 1.0, 'goes': 1.0, '4': 1.0, 'months': 1.0, 'everywhere': 1.0}
Word element => {'this': 1.0, 'i': 1.0, 'for': 1.0, 'problems': 1.0, 'girls': 1.0, 'recommend': 1.0, 'no': 1.0, 'great': 1.0, 'product': 1.0, 'spunky': 1.0, 'like': 1.0, 'came': 1.0, 'sent': 1.0, 'just': 1.0, 'little': 1.0, 'promised': 1.0, 'shipment': 1.0, 'with': 1.0, 'on': 1.0, 'time': 1.0, 'was': 1.0}
Word element => {'luck': 1.0, 'had': 1.0, 'favorite': 1.0, 'no': 1.0, 'at': 1.0, 'stores': 1.0, 'my': 1.0, 'tried': 1.0, 'the': 1.0, 'baby': 1.0, 'she': 2.0, 'god': 1.0, 'and': 2.0, 'very': 1.0, 'daughter': 1.0, 'for': 1.0, 'plush': 1.0, 'friendly': 1.0, 'soft': 1.0, 'child': 1.0, 'goes': 1.0, 'looking': 1.0, 's': 1.0, 'takes': 1.0, 'it': 2.0, 'everywhere': 1.0}
Word element => {'lol': 1.0, 'like': 1.0, 'everywhere': 1.0, 'around': 1.0, 'she': 2.0, 'her': 2.0, 'soft': 1.0, 'a': 1.0, 'for': 2.0, 'paci': 1.0, 'and': 2.0, 'just': 1.0, 'tad': 1.0, 'know': 1.0, 'newborn': 1.0, 'right': 1.0, 'my': 1.0, 'drag': 1.0, 'bought': 1.0, 'i': 2.0, 'gets': 1.0, 'too': 1.0, 'as': 1.0, 'very': 1.0, 'adorable': 1.0, 'big': 1.0, 'to': 1.0, 'its': 1.0, 'now': 1.0, 'want': 1.0, 'realized': 1.0, 'is': 1.0, 'will': 1.0, 'but': 1.0, 'older': 1.0, 'this': 2.0, 'it': 1.0}
Word element => {'for': 1.0, 'gift': 1.0, 'out': 1.0, 'them': 1.0, 'keep': 1.0, 'use': 1.0, 'best': 1.0, 'from': 1.0, 'switching': 1.0, 'dirty': 1.0, 'so': 1.0, 'sleep': 1.0, 'have': 2.0, 'without': 1.0, 'can': 1.0, 'this': 1.0, '19': 1.0, 'is': 2.0, 'girl': 2.0, 'notices': 1.0, 'little': 1.0, 'she': 2.0, 'because': 1.0, 'my': 2.0, 'before': 1.0, 'her': 2.0, 'the': 1.0, 't': 1.0, 'puppy': 2.0, 'says': 1.0, 'night': 2.0, 'i': 3.0, 'months': 1.0, '4': 1.0, 'bought': 1.0, 'ever': 1.0, 'they': 1.0, 'gotten': 1.0, 'and': 1.0, 'get': 1.0}
Word element => {'washed': 1.0, 've': 1.0, 'snagged': 1.0, 'has': 1.0, 'note': 1.0, 'give': 1.0, 'doesn': 1.0, 'a': 1.0, 't': 1.0, 'the': 3.0, 'other': 2.0, 'on': 1.0, 'good': 1.0, 'silky': 2.0, 'attention': 1.0, 's': 1.0, 'very': 1.0, 'as': 3.0, 'soft': 1.0, 'cute': 1.0, 'side': 2.0, 'he': 1.0, 'it': 4.0, 'size': 1.0, 'i': 3.0, 'wish': 1.0, 'any': 1.0, 'baby': 1.0, 'one': 1.0, 'liked': 1.0, 'much': 1.0, 'and': 2.0, 'do': 1.0, 'just': 1.0}
Word element => {'them': 1.0, 'having': 1.0, 'loveys': 1.0, 'love': 1.0, 'will': 1.0, 'girls': 1.0, 'my': 1.0, 'these': 2.0, 'for': 2.0, 'christmas': 1.0, 'twin': 1.0, 'granddaughters': 1.0, 'i': 2.0, 'am': 1.0, 'got': 1.0, 'so': 1.0, 'sweet': 1.0, 'soft': 1.0, 'monogrammed': 1.0, 'and': 1.0, 'know': 1.0}
Word element => {'friends': 1.0, 'buying': 1.0, 'start': 1.0, 'will': 1.0, 'max': 1.0, 'my': 1.0, 'many': 1.0, 'had': 1.0, 'luckily': 1.0, 'shape': 1.0, 'their': 1.0, 'kept': 1.0, 'still': 1.0, 'gifts': 1.0, 'are': 1.0, 'them': 1.0, 'two': 1.0, 'i': 2.0, 'bulky': 1.0, 'back': 1.0, 'too': 2.0, 'and': 3.0, 'school': 1.0, 'they': 4.0, 'one': 5.0, 'who': 1.0, 'at': 1.0, 'three': 1.0, 'pack': 1.0, 'much': 1.0, 'home': 1.0, 'wash': 1.0, 'child': 2.0, 'how': 1.0, 'sleep': 1.0, 'to': 1.0, 'least': 1.0, 'as': 2.0, 'our': 1.0, 'all': 1.0, 'babies': 1.0, 'loves': 1.0, 'or': 1.0, 'soft': 1.0, 'this': 2.0, 'children': 1.0, 'emergencies': 2.0, 'come': 1.0, 'now': 1.0, 'is': 1.0, 'hasn': 1.0, 'handy': 1.0, 'realized': 1.0, 'well': 1.0, 'comfort': 1.0, 'have': 4.0, 'small': 1.0, 'after': 1.0, 'weekly': 1.0, 'terrific': 1.0, 'if': 1.0, '34': 4.0, 'of': 2.0, 'aren': 1.0, 'can': 2.0, 'a': 2.0, 'we': 3.0, 't': 4.0, 'without': 1.0, 'the': 2.0, 'find': 1.0, 'these': 1.0, 'others': 1.0, 'in': 2.0, 'very': 1.0, 'appearances': 1.0, 'traveling': 1.0, 'when': 1.0, 'you': 1.0, 're': 1.0, 'for': 6.0, 'fit': 1.0, 'carry': 1.0, 'make': 1.0, 'on': 1.0}
Word element => {'hand': 1.0, 'my': 1.0, 'be': 1.0, 'the': 3.0, 'for': 1.0, 'to': 2.0, 'myself': 1.0, 'have': 1.0, 'closely': 1.0, 'blame': 1.0, 'a': 1.0, 'guess': 1.0, 'i': 2.0, 'discription': 1.0, 'size': 2.0, 'but': 1.0, 'is': 1.0, 'reading': 1.0, 'of': 2.0, 'not': 1.0, 'snot': 1.0, 'this': 1.0, 'only': 1.0, 'it': 1.0, 'rag': 1.0, 'may': 1.0}
Word element => {'nice': 1.0, 'had': 1.0, 'so': 1.0, 'with': 1.0, 'given': 1.0, 'one': 1.0, 'love': 1.0, 'for': 1.0, 'her': 2.0, 'it': 2.0, 'she': 2.0, 'needed': 1.0, 'gift': 1.0, 'find': 1.0, 'well': 1.0, 'just': 1.0, 'i': 2.0, 'buy': 1.0, 'of': 1.0, 'washed': 1.0, 'in': 2.0, 'wash': 1.0, 'daughter': 1.0, 'these': 1.0, 'more': 1.0, 'often': 1.0, 'my': 1.0, 'three': 1.0, 'case': 1.0, 'they': 1.0, 'got': 1.0, 'soft': 1.0, 'lost': 1.0, 'or': 1.0, 'to': 3.0, 'as': 2.0, 'sleep': 1.0, 'sucking': 1.0, 'bunny': 1.0, 'a': 3.0, 't': 1.0, 'go': 1.0, 'was': 2.0, 'doesn': 1.0, 'remains': 1.0, 'have': 1.0, 'dummy': 1.0, 'really': 1.0, 'soon': 1.0, 'and': 2.0}
Word element => {'exchanging': 1.0, 'be': 1.0, 'will': 1.0, 'animals': 1.0, 'like': 1.0, 'not': 1.0, 'so': 1.0, 'different': 1.0, 'a': 1.0, 'options': 1.0, 'made': 1.0, 'is': 1.0, 'to': 1.0, 'dinosaur': 1.0, 'and': 1.0, 'one': 1.0, 'for': 2.0, 'cozies': 1.0, 'things': 1.0, 'up': 1.0, 'of': 4.0, 'good': 1.0, 'rest': 1.0, 'years': 1.0, 'lots': 1.0, 'heard': 1.0, 'i': 3.0, 'fabric': 1.0, 'babies': 1.0, 'have': 1.0, 'soft': 2.0, '3': 1.0, 'body': 1.0, 'ordered': 1.0, 'these': 1.0, 'the': 4.0, 'it': 3.0, 'enjoying': 1.0, 's': 2.0}
Word element => {'from': 1.0, 'choose': 1.0, 'many': 1.0, 'lovey': 1.0, 'make': 1.0, 'softness': 1.0, 'size': 1.0, 'just': 1.0, 'are': 1.0, 'these': 1.0, 'no': 1.0, 'still': 1.0, 'second': 1.0, 'is': 1.0, 'said': 1.0, 'perfect': 1.0, 'lost': 1.0, 'down': 1.0, 'my': 1.0, 'mos': 1.0, 'first': 1.0, 'and': 6.0, 'styles': 1.0, 'getting': 1.0, 'daughter': 1.0, 'so': 1.0, 'time': 3.0, 'has': 2.0, 'colors': 1.0, 'twice': 1.0, '6': 1.0, 'since': 1.0, 'at': 1.0, 'she': 2.0, 'her': 1.0, 'last': 1.0, 'being': 1.0, 'any': 1.0, 'to': 4.0, 'attached': 1.0, 'now': 1.0, 'right': 2.0, 'look': 1.0, 'turned': 1.0, 'two': 1.0, 'i': 1.0, 'backup': 1.0, 'baby': 1.0, 'night': 1.0, 'almost': 1.0, 'kick': 1.0, 'the': 5.0, 'myself': 1.0, 'for': 3.0, 'bed': 1.0, 'me': 1.0, 'not': 1.0, 'after': 1.0, 'bunny': 4.0, 'a': 1.0, 'go': 1.0, 'been': 2.0, 'that': 1.0, 'house': 1.0, 'upside': 1.0}
Word element => {'american': 1.0, 'north': 1.0, 'too': 1.0, 'reasonable': 1.0, 'a': 1.0, 'very': 1.0, 'bear': 1.0, 'i': 2.0, 'love': 1.0, 'it': 1.0, 'price': 1.0, 'cute': 1.0, 'soft': 1.0, 'for': 1.0, 'newborn': 1.0, 'perfect': 1.0, 'safe': 1.0, 'got': 1.0, 'at': 1.0}
Word element => {'mind': 1.0, 'favorite': 1.0, 'preggers': 1.0, 'apple': 1.0, 'designed': 1.0, 'this': 1.0, 'green': 1.0, 'to': 1.0, 'was': 3.0, 'nice': 2.0, 'candy': 1.0, 'know': 1.0, 'and': 1.0, 'in': 1.0, 'flavor': 2.0, 'it': 1.0, 'sucking': 1.0, 'hard': 1.0, 'definitely': 1.0, 'helped': 1.0, 'nausea': 1.0, 'with': 2.0}
Word element => {'this': 1.0, 'move': 1.0, 'boost': 1.0, 'metabolism': 1.0, 'before': 2.0, 'protein': 1.0, 'index': 1.0, 'glycemic': 1.0, 'other': 1.0, 'morning': 1.0, 'eating': 1.0, 'you': 1.0, 'idea': 1.0, 'for': 2.0, 'cottage': 1.0, 'of': 1.0, 's': 1.0, 'a': 3.0, 'high': 1.0, 'low': 1.0, 'were': 1.0, 'that': 1.0, 'stuff': 1.0, 'your': 1.0, 'think': 1.0, 'on': 1.0, 'chance': 1.0, 'trying': 1.0, 'them': 2.0, 'made': 1.0, 'will': 1.0, 'medicinal': 1.0, 'day': 1.0, 'or': 2.0, 'bed': 1.0, 'sick': 1.0, 'feel': 1.0, 'food': 1.0, 'money': 1.0, 'work': 1.0, 'but': 2.0, 'most': 1.0, 'it': 1.0, 'she': 1.0, 'recommend': 1.0, 'with': 1.0, 'nausea': 1.0, 'onto': 1.0, 'd': 3.0, 'while': 1.0, 'wife': 2.0, 'and': 2.0, 'cheese': 1.0, 'waste': 1.0, 'difference': 1.0, 'my': 2.0, 'tried': 1.0, 'i': 4.0, 'they': 5.0, 'these': 1.0, 'help': 1.0, 'nothing': 1.0, 'like': 2.0, 'did': 1.0, 'better': 1.0, 'good': 2.0, 'her': 1.0, 'all': 1.0, 'least': 1.0, 'to': 3.0, 'no': 1.0, 'at': 1.0, 'hoped': 1.0, 'still': 1.0, 'try': 1.0, 'flavors': 1.0, 'are': 1.0, 'taste': 1.0, 'real': 1.0, 'than': 1.0, 'candies': 1.0, 'give': 1.0, 'not': 1.0, 'without': 1.0, 'the': 3.0, 'candy': 1.0}
Word element => {'me': 1.0, 'cause': 1.0, 'would': 1.0, 'to': 2.0, 'found': 1.0, 'i': 1.0, 'idea': 1.0, 'be': 1.0, 'because': 1.0, 'not': 1.0, 'might': 1.0, 'the': 1.0, 'these': 1.0, 'use': 1.0, 'already': 1.0, 'package': 1.0, 'especially': 1.0, 'are': 1.0, 'them': 1.0, 'nauseous': 1.0, 'reflux': 1.0, 'your': 1.0, 'they': 2.0, 'in': 1.0, 'lozenges': 1.0, 'so': 1.0, '12': 1.0, 'if': 2.0, 'hard': 1.0, 'only': 1.0, 'a': 1.0, 'well': 1.0, 's': 1.0, 'you': 1.0, 'best': 1.0, 'kind': 1.0, 'as': 1.0, 'big': 1.0, 'have': 1.0, 'bad': 1.0, 'there': 1.0, 'of': 1.0, 'gag': 2.0}
Word element => {'not': 1.0, 'palm': 1.0, 'hold': 1.0, 'your': 1.0, 'd': 1.0, 'decent': 1.0, 'cleaning': 1.0, 'standard': 1.0, 'better': 1.0, 'somehow': 1.0, 'peel': 1.0, 'would': 1.0, 'wish': 1.0, 'nicely': 1.0, 'wipe': 1.0, 'plastic': 1.0, 'although': 1.0, 'her': 2.0, 'unit': 1.0, 'doubt': 1.0, 's': 2.0, 'rated': 1.0, 'like': 2.0, 'purple': 1.0, 'i': 6.0, 'over': 1.0, 'work': 1.0, '2': 2.0, 'shift': 4.0, 'most': 1.0, 'oldshorn': 1.0, 'are': 2.0, 'offer': 1.0, 'poor': 1.0, 'gear': 3.0, 'curl': 1.0, 'down': 1.0, 'or': 1.0, 'with': 2.0, 'volume': 1.0, 'just': 2.0, 'control': 2.0, 'reccommend': 1.0, 'finally': 1.0, 'toys': 1.0, 'press': 1.0, 'response': 1.0, 'up': 5.0, 'latercons': 1.0, 'sound': 1.0, 'isn': 1.0, 'don': 1.0, 'the': 17.0, 'of': 3.0, 'for': 6.0, 'opinion': 1.0, 'cloth': 1.0, 'lights': 1.0, 'ok': 1.0, 'my': 4.0, 'looks': 1.0, 'month': 2.0, 'responding': 2.0, 'it': 7.0, 'baby': 3.0, 'she': 2.0, 'pros': 1.0, 'small': 1.0, 'a': 6.0, 'generated': 1.0, 't': 2.0, 'wheel': 4.0, 'horn': 1.0, 'do': 2.0, 'much': 1.0, 'only': 1.0, 'end': 1.0, 'oldsboth': 1.0, 'frantically': 1.0, 'few': 1.0, 'this': 3.0, 'one': 1.0, 'electronic': 1.0, 'see': 1.0, 'off': 2.0, 'playing': 2.0, 'all': 3.0, 'key': 4.0, 'set': 1.0, 'and': 10.0, 'input': 1.0, '3': 2.0, 'on': 1.0, 'buttons': 2.0, 'turn': 3.0, 'in': 4.0, 'daughter': 2.0, 'hand': 1.0, 'something': 1.0, 'wants': 1.0, 'easy': 1.0, 'however': 2.0, 'is': 5.0, 'to': 8.0, 'pretty': 1.0, 'starts': 1.0, 'able': 1.0, 'lightseveral': 1.0, 'things': 1.0, 'choice': 1.0, 'when': 3.0, 'finish': 1.0, 'parts': 1.0, 'turning': 1.0, 'ends': 1.0, 'face': 1.0, 'sometimes': 1.0, 'toy': 1.0, 'action': 1.0, 'programming': 1.0, 'song': 2.0, 'can': 1.0, 'so': 1.0, 'time': 1.0, 'because': 1.0, 'that': 2.0, 'honk': 1.0, 'noise': 1.0, 'very': 1.0, 'plays': 1.0, 'tap': 2.0, 'fun': 1.0, 'from': 2.0, 'start': 1.0, 'design': 1.0, 'specific': 1.0, 'will': 1.0}
Word element => {'beautiful': 1.0, 'are': 1.0, 'colors': 1.0, 'the': 1.0, 'quality': 1.0, 'good': 1.0, 'is': 1.0, 'that': 2.0, 'realize': 1.0, 'blanket': 1.0, 'be': 1.0, 'supposed': 1.0, 'it': 3.0, 'blankie': 1.0, 'and': 1.0, 'probably': 1.0, 'if': 1.0, 'to': 1.0, 'was': 1.0, 'would': 1.0, 's': 1.0, 'i': 1.0, 'a': 1.0, 'instead': 1.0, '34': 4.0, 'of': 1.0, 'very': 2.0, 'called': 1.0, 'however': 1.0, 'small': 1.0}
Word element => {'if': 1.0, 'd': 1.0, 'used': 1.0, 'will': 1.0, 'can': 1.0, 'but': 1.0, 'eacute': 1.0, 'born': 1.0, 'enough': 1.0, 'big': 1.0, 'be': 3.0, 'that': 2.0, 'in': 1.0, 'hoping': 1.0, 'kind': 1.0, 'else': 2.0, 'anything': 2.0, 'tiny': 1.0, 'much': 2.0, 'small': 1.0, 'ribbon': 1.0, 'embroidered': 1.0, 'name': 1.0, 'her': 2.0, 'am': 1.0, 'use': 1.0, 'show': 1.0, 'adding': 1.0, 'i': 5.0, 'so': 2.0, 'sleep': 1.0, 'to': 2.0, 'least': 1.0, 'as': 2.0, 'wrapped': 1.0, 'just': 2.0, 'give': 1.0, 'additions': 1.0, 'not': 1.0, 'was': 4.0, 'than': 1.0, 'sister': 1.0, 'with': 2.0, 'it': 9.0, 'blankie': 1.0, 'and': 4.0, 'way': 1.0, 'such': 1.0, 'my': 1.0, 'little': 2.0, 's': 1.0, 'a': 6.0, 'dr': 1.0, 'on': 3.0, 'more': 2.0, 'is': 4.0, 'girl': 1.0, 'theme': 1.0, 'myself': 1.0, 'the': 4.0, 'without': 1.0, 'anyhow': 1.0, 'looking': 1.0, 'binkie': 1.0, 'size': 1.0, 'since': 1.0, 'adorable': 1.0, 'at': 2.0, 'seuss': 1.0, 'regardless': 1.0, 'new': 1.0, 'soooo': 1.0, 'of': 2.0, 'love': 1.0, 'for': 5.0, 'jumped': 1.0, 'really': 1.0, 'material': 1.0, 'incredibly': 1.0, 'this': 1.0, 'doing': 1.0, 'soft': 1.0, 'perfect': 1.0, 'security': 1.0, 'cor': 1.0, 'getting': 2.0, 'did': 1.0, 'realize': 1.0, 'blanket': 1.0}
Word element => {'backups': 1.0, 'or': 1.0, 'buying': 1.0, 'am': 1.0, 'happen': 1.0, 'sure': 1.0, 'and': 3.0, 'more': 1.0, 'is': 1.0, 'became': 1.0, 'it': 3.0, 'he': 1.0, 'at': 1.0, 'doesn': 1.0, 'was': 1.0, 'to': 2.0, 'be': 1.0, 'my': 1.0, 'cuddly': 1.0, 'his': 1.0, 'before': 1.0, 'grandbaby': 1.0, 'for': 2.0, 'newest': 1.0, 'born': 1.0, 'bought': 1.0, 'one': 2.0, 'months': 2.0, 'favorite': 1.0, 'seems': 1.0, 'well': 1.0, 'check': 1.0, 'make': 1.0, '3': 1.0, 'put': 1.0, 'together': 1.0, 'of': 1.0, 'the': 1.0, 'previous': 1.0, 'two': 1.0, 'i': 2.0, 'seams': 1.0, 'reviews': 1.0, 'made': 1.0, 'out': 1.0, 'comment': 1.0, 'just': 1.0, 'several': 1.0, 'about': 1.0, 'coming': 2.0, 'open': 1.0, 'stuffing': 1.0, 't': 1.0, 'a': 1.0, 'we': 1.0, 'soft': 1.0, 'this': 2.0, 'carefully': 1.0}
Word element => {'we': 1.0, 'nose': 1.0, 'just': 1.0, 'hold': 1.0, 'to': 1.0, 'he': 1.0, 'soft': 1.0, 'the': 1.0, 'my': 1.0, 'lovey': 1.0, 'love': 1.0, 'it': 3.0, 'and': 2.0, 'quality': 1.0, 'very': 1.0, 'loves': 2.0, 'this': 1.0, 'on': 1.0, 'suck': 1.0, 'son': 1.0, 'is': 1.0, 'excellent': 1.0}
Word element => {'soft': 1.0, 'cute': 1.0, 'so': 1.0, 'quickly': 1.0, 'bought': 1.0, 'falls': 1.0, 'my': 1.0, 'and': 2.0, 'friends': 1.0, 'baby': 2.0, 'hugs': 1.0, 'official': 1.0, 'for': 1.0, 'is': 1.0, 'his': 1.0, 'it': 3.0, 'blankie': 1.0, 'asleep': 1.0, 'he': 1.0}
Word element => {'a': 1.0, 'already': 1.0, 'we': 1.0, 'this': 1.0, 'he': 1.0, 'approved': 1.0, 'has': 1.0, 'gone': 1.0, 'of': 1.0, 'keep': 1.0, 'loves': 1.0, 'good': 1.0, 'blanket': 1.0, 'son': 1.0, 'through': 1.0, 'my': 1.0, 'more': 1.0, 'few': 1.0, 'and': 2.0, 'quality': 1.0, 'just': 1.0, 'ordering': 1.0, 'them': 1.0, 'child': 1.0}
Word element => {'baby': 1.0, 'new': 1.0, 'there': 1.0, 'blanket': 1.0, 'this': 1.0, 'about': 1.0, 'soon': 1.0, 'excited': 1.0, 'my': 1.0, 'and': 1.0, 'coming': 1.0, 'son': 1.0, 'for': 1.0, 'daughter': 1.0, 'in': 1.0, 'law': 1.0, 'they': 1.0, 'it': 1.0, 'love': 1.0, 'were': 1.0, 'so': 1.0}
Word element => {'dimensions': 1.0, 'give': 1.0, 'disappointed': 1.0, 'needs': 1.0, 'description': 1.0, 'or': 1.0, 'and': 1.0, 'picture': 1.0, '8': 1.0, 'of': 2.0, 'size': 2.0, 'product': 1.0, 'x12': 1.0, 'to': 1.0, 'was': 1.0, 'tiny': 1.0, 'super': 1.0, 'about': 1.0, 'a': 1.0, 'so': 1.0, 'small': 1.0, 'the': 3.0, 'more': 1.0, 'mitt': 1.0, 'is': 2.0, 'thought': 1.0, 'oven': 1.0, 'an': 1.0, 'stroller': 1.0, 'but': 1.0, 'products': 1.0, 'i': 1.0, 'it': 3.0, '12': 1.0, 'blanket': 1.0, 'like': 1.0}
Word element => {'again': 1.0, 'will': 1.0, 'fine': 1.0, 'out': 1.0, 'dryer': 1.0, 'old': 1.0, 'it': 1.0, 'to': 1.0, 'machine': 1.0, 'weight': 1.0, 'feet': 1.0, '6': 1.0, 'came': 1.0, 'month': 1.0, 'light': 1.0, 'soft': 1.0, 'my': 1.0, 'the': 2.0, 'and': 4.0, 'likes': 1.0, 'small': 1.0, 'so': 5.0, 'washing': 1.0, 'purchase': 1.0, 'already': 1.0, 'chew': 1.0, 'suck': 1.0, 'on': 1.0, 's': 1.0, 'been': 1.0, 'in': 1.0}
Word element => {'spent': 1.0, 'money': 1.0, 'not': 1.0, 'big': 1.0, 'then': 1.0, 'even': 1.0, 'but': 1.0, 'i': 2.0, 'picture': 1.0, 'it': 2.0, 'butit': 1.0, 'so': 1.0, 'make': 1.0, 'the': 2.0, 'blanket': 1.0, 'was': 2.0, 'buying': 1.0, 'look': 1.0, 'a': 2.0, 'wont': 1.0, 'cover': 1.0, 'thought': 1.0, 'that': 2.0, 'leg': 1.0, 'other': 1.0, 'worth': 1.0, 'cute': 1.0}
Word element => {'overall': 1.0, 'van': 1.0, 'install': 1.0, 'makes': 1.0, 'latch': 1.0, 'and': 1.0, 'straps': 1.0, 'adjusting': 1.0, 'no': 1.0, 'in': 1.0, 'seems': 1.0, 'daughter': 1.0, '9': 1.0, 'to': 1.0, 'had': 1.0, 'mo': 1.0, 'my': 2.0, 'great': 2.0, 'the': 3.0, 'seat': 2.0, 'fit': 1.0, 'all': 1.0, 'have': 1.0, 'snap': 1.0, 'like': 1.0, 'problems': 1.0, 'very': 1.0, 'i': 2.0, 'comfortable': 1.0, 'it': 2.0, 'this': 1.0, 'with': 2.0, 'a': 3.0, 'really': 1.0, 'is': 1.0, 'padding': 1.0, 'soft': 1.0}
Word element => {'decoration': 1.0, 'hold': 1.0, 'would': 1.0, 'for': 1.0, 'to': 3.0, 'baby': 1.0, 'and': 1.0, 'as': 2.0, 'rattles': 1.0, 'or': 1.0, 'so': 1.0, 'is': 2.0, 'easy': 1.0, 'recommend': 1.0, 'teether': 1.0, 'a': 2.0, 'rattle': 1.0, 'also': 1.0, 'i': 1.0, 'tie': 1.0, 'this': 1.0, 'shower': 1.0, 'cute': 2.0, 'gift': 1.0}
Word element => {'again': 1.0, 'buy': 1.0, 'would': 1.0, 'for': 1.0, 'well': 1.0, 'out': 1.0, 'as': 1.0, 'seems': 1.0, 'working': 1.0, 'this': 2.0, 'them': 1.0, 'a': 1.0, 'baby': 1.0, 'shower': 1.0, 'gift': 1.0, 'it': 1.0, 'purchased': 1.0, 'to': 1.0, 'be': 1.0}
Word element => {'deere': 1.0, 'and': 1.0, 'as': 1.0, 'know': 1.0, 'several': 1.0, 'gift': 1.0, 'the': 1.0, 'a': 1.0, 'have': 1.0, 'loved': 1.0, 'given': 1.0, 'you': 1.0, 'i': 1.0, 'recipients': 1.0, 'this': 1.0, 'it': 1.0, 'higly': 1.0, 'would': 1.0, 'recommend': 1.0, 'of': 1.0, 'if': 1.0, 'loves': 1.0, 'someone': 1.0, 'john': 1.0, 'times': 1.0, 'who': 1.0}
Word element => {'it': 1.0, 'on': 1.0, 'so': 1.0, 'the': 1.0, 'my': 1.0, 'i': 2.0, 'up': 1.0, 'and': 2.0, 'made': 1.0, 'them': 1.0, 'a': 1.0, 'boys': 1.0, 'brush': 3.0, 'love': 1.0, 'teeth': 3.0, 'twin': 1.0, 'song': 1.0, 'sing': 1.0, 'we': 1.0, 'their': 2.0, 'that': 1.0, 'while': 1.0, 'chew': 1.0, 'then': 1.0, 'they': 1.0}
Word element => {'pretty': 1.0, 'hold': 1.0, 'toothbrushes': 1.0, 'than': 1.0, 'easier': 1.0, 'months': 1.0, 'seem': 1.0, 's': 1.0, 'well': 1.0, 'a': 1.0, '15': 1.0, 'still': 1.0, 'much': 1.0, 'to': 1.0, 'now': 1.0, 'the': 1.0, 'these': 1.0, 'they': 1.0, 'brand': 1.0, 'are': 1.0, 'my': 1.0, 'brush': 1.0, 'finger': 1.0, 'using': 1.0, 'love': 1.0, 'and': 1.0, 'old': 1.0, 'i': 1.0, 'toothbrush': 1.0, 'use': 1.0, 'it': 1.0, 'this': 1.0, 'too': 1.0, 'style': 1.0, 'up': 1.0, 'of': 1.0, 'twins': 1.0, 'so': 1.0}
Word element => {'little': 1.0, 'for': 1.0, 'kidos': 1.0, 'they': 1.0, 'these': 2.0, 'the': 1.0, 'my': 1.0, 'are': 1.0, 'in': 1.0, 'daughter': 1.0, 'frigerator': 1.0, 'must': 1.0, 'i': 2.0, 'loves': 1.0, 'and': 1.0, 'put': 1.0, 'an': 1.0, 'amazing': 1.0, 'teething': 1.0, 'bought': 1.0, 'tool': 1.0, 'have': 1.0, 'four': 1.0, 'of': 1.0, 'them': 1.0, 'a': 1.0}
Word element => {'just': 1.0, 'of': 2.0, 'i': 1.0, 'so': 1.0, 'which': 1.0, 'good': 1.0, 'in': 4.0, 'could': 1.0, 'to': 1.0, 'was': 1.0, 'teething': 1.0, 'sometimes': 1.0, 'he': 3.0, 'while': 1.0, 'mouth': 2.0, 'we': 1.0, 'the': 1.0, 'these': 1.0, 'son': 1.0, 'loved': 1.0, 'have': 1.0, 'end': 1.0, 'my': 1.0, 'case': 1.0, 'portion': 1.0, 'll': 1.0, 'still': 1.0, 'made': 1.0, 'them': 3.0, 'a': 2.0, 'me': 1.0, 'squeeze': 1.0, 'and': 1.0, 'tied': 1.0, 'fact': 1.0, 'put': 1.0, 'both': 1.0, 'shoelace': 1.0, 'nervous': 1.0, 'his': 2.0}
Word element => {'well': 1.0, 'about': 1.0, 'at': 1.0, 'mine': 1.0, 'dishwasher': 1.0, 'in': 1.0, 'i': 2.0, 'the': 1.0, 'these': 2.0, 'agree': 1.0, 'loves': 2.0, 'with': 1.0, 'teether': 1.0, 'molars': 1.0, '8': 1.0, 'easy': 1.0, 'it': 1.0, 'she': 1.0, 'bunch': 1.0, 'all': 1.0, 'to': 2.0, 'positive': 1.0, 'reviews': 1.0, 'clean': 1.0, 'baby': 1.0, 'started': 1.0, 'them': 1.0, '11': 1.0, 'months': 1.0, 'put': 1.0, 'on': 1.0, 'and': 2.0, 'chew': 1.0, 'got': 1.0, 'front': 1.0, 'my': 1.0, 'kid': 1.0, 'we': 1.0, 'a': 2.0, 's': 1.0, 'of': 1.0, 'plus': 1.0, 'up': 1.0, 'using': 1.0, 'like': 1.0, 'teeth': 2.0, 'hold': 1.0, 'really': 1.0}
Word element => {'tradition': 1.0, 'you': 1.0, 'bit': 1.0, 'yourself': 1.0, 'contours': 1.0, 'curved': 1.0, 'really': 1.0, 'help': 1.0, 'side': 1.0, 'to': 10.0, 'did': 1.0, 'a': 4.0, 'brushing': 1.0, 'started': 1.0, 'different': 1.0, 'in': 2.0, 'toothbrushes': 1.0, 't': 1.0, 'fit': 2.0, 'it': 10.0, 'baby': 3.0, 'she': 7.0, 'hold': 1.0, 'like': 2.0, 'teeth': 1.0, 'hand': 1.0, 'traditional': 1.0, 'when': 4.0, 'were': 1.0, 'want': 1.0, 'same': 1.0, 'type': 1.0, 'old': 1.0, 'training': 1.0, 'cleans': 1.0, 'these': 2.0, 's': 2.0, 'requirements': 1.0, 'chews': 1.0, 'her': 9.0, 'use': 2.0, 'hurting': 2.0, 'purchased': 1.0, 'i': 6.0, 'and': 8.0, 'for': 3.0, 'searching': 1.0, 'one': 1.0, 'get': 1.0, 'months': 1.0, 'fingers': 1.0, 'mouth': 4.0, 'find': 1.0, 'easily': 2.0, 'that': 2.0, 'because': 1.0, 'my': 2.0, 'may': 1.0, 'daughter': 1.0, 'harder': 1.0, 'would': 2.0, 'was': 1.0, 'trying': 2.0, 'minutes': 1.0, 'of': 3.0, 'brush': 4.0, 'finger': 2.0, 'the': 6.0, 'top': 1.0, 'herself': 2.0, 'bottom': 1.0, 'time': 2.0, 'handle': 1.0, 'at': 1.0, 'is': 3.0, 'without': 1.0, 'soft': 1.0, 'this': 1.0, 'don': 1.0, 'buddy': 1.0, 'poke': 1.0, 'up': 1.0, 'have': 1.0, 'automatically': 1.0, 'worry': 1.0, 'about': 1.0, 'stabbing': 1.0, 'or': 2.0, 'poking': 1.0, 'save': 1.0, 'gag': 1.0, 'with': 3.0, 'toothbrush': 4.0, 'hard': 1.0, 'stick': 1.0, 'on': 2.0, 'nine': 1.0, 'bristles': 1.0, 'fear': 1.0, 'do': 1.0, 'not': 1.0, 'enjoys': 1.0, 'so': 1.0, 'can': 2.0, 'just': 2.0, 'meal': 1.0, 'after': 1.0, 'could': 1.0, 'will': 1.0, '15': 1.0, 'even': 1.0, 'flip': 1.0, 'all': 1.0, 'other': 1.0}
Word element => {'hesitate': 1.0, 'cortina': 1.0, 'love': 1.0, 'locks': 1.0, 'type': 1.0, 'sun': 1.0, 'pounds': 1.0, 'may': 1.0, 'child': 1.0, 'changing': 1.0, 'try': 1.0, 'unbeatable': 1.0, 'any': 2.0, 'able': 1.0, '30': 1.0, 'trade': 1.0, 'chicco': 1.0, 'compatible': 1.0, 'takes': 1.0, 'offers': 1.0, 'awkward': 1.0, 'heavier': 1.0, 'why': 1.0, 'traditional': 1.0, 'recommend': 2.0, 'overall': 1.0, 'strap': 1.0, 'fix': 1.0, 'home': 1.0, 'at': 1.0, 'durability': 1.0, 'actually': 1.0, 'us': 1.0, 'problem': 2.0, 'this': 4.0, 'few': 2.0, 'tackle': 1.0, 'feel': 1.0, 'through': 1.0, 'or': 2.0, 'gravel': 1.0, 'strolling': 1.0, 'use': 1.0, 'car': 3.0, 'though': 1.0, 'infant': 1.0, '6': 1.0, 'sits': 1.0, 'handle': 2.0, '75': 1.0, 'wasn': 1.0, 'full': 4.0, 'tromping': 1.0, 'about': 1.0, 'since': 1.0, 'had': 2.0, 'aside': 1.0, 'was': 2.0, 'when': 3.0, 'cramped': 1.0, 'well': 2.0, 'fast': 1.0, 'broke': 1.0, 'fairly': 1.0, 'friends': 1.0, 't': 6.0, 'separate': 2.0, 'only': 3.0, 'need': 1.0, 'harness': 2.0, 'upright': 1.0, 'sustain': 1.0, 'not': 4.0, 'style': 1.0, 'park': 1.0, 'but': 4.0, 'holders': 1.0, 'complete': 2.0, 'back': 1.0, 'in': 5.0, 'seat': 3.0, 'straighter': 1.0, 'isn': 1.0, 'unbelievable': 1.0, 'nearly': 1.0, 'up': 3.0, 'motivated': 1.0, 'glad': 1.0, 'higher': 1.0, 'would': 3.0, 've': 2.0, 'height': 1.0, 'on': 3.0, 'best': 1.0, 'completely': 1.0, 'packages': 1.0, 'wouldn': 1.0, 'more': 2.0, 'adjustable': 2.0, 'case': 1.0, 'cup': 1.0, 'instead': 1.0, 'so': 2.0, 'compact': 1.0, 'is': 10.0, 'can': 1.0, 'behind': 1.0, 'dime': 1.0, 'i': 19.0, 'finally': 1.0, 'impressed': 1.0, 'complaint': 1.0, 'next': 1.0, 'classic': 1.0, 'hours': 2.0, 'jogging': 1.0, 'baby': 2.0, 'she': 3.0, 'front': 1.0, 'folds': 1.0, 'strollers': 3.0, 'umbrella': 2.0, 'than': 5.0, 'all': 1.0, 'way': 2.0, 'keep': 1.0, 'folding': 1.0, 'the': 19.0, 'protection': 1.0, 'even': 2.0, 'of': 7.0, 'decided': 1.0, 'turns': 1.0, 'we': 3.0, 'city': 1.0, 'a': 16.0, 'other': 1.0, 'bumps': 1.0, 'sure': 1.0, 'velcro': 1.0, 'store': 2.0, 'wheel': 1.0, 'researching': 2.0, 'fit': 1.0, 'easy': 2.0, 'infinitely': 1.0, 'accidentally': 1.0, 'less': 2.0, 'as': 4.0, 'room': 1.0, 'my': 8.0, 'her': 1.0, 'little': 1.0, 'jogger': 3.0, 'spent': 2.0, 'swivel': 1.0, 'smaller': 1.0, 'halves': 1.0, 'some': 1.0, 'girl': 1.0, 'come': 1.0, 're': 1.0, 'terrain': 1.0, 'stroller': 11.0, 'our': 1.0, 'shopping': 1.0, 'wanting': 1.0, 'jeep': 1.0, 'skipping': 1.0, 'provide': 1.0, 'cherokee': 1.0, 'that': 5.0, 'one': 2.0, 'night': 1.0, 'you': 2.0, 'cars': 1.0, 'morning': 1.0, 'backed': 1.0, 'over': 1.0, 'accessory': 1.0, 'scratches': 1.0, 'could': 1.0, 'really': 2.0, 'wheels': 2.0, 'been': 1.0, 'sustained': 1.0, 'if': 2.0, 'it': 22.0, 'be': 3.0, 'to': 11.0, 'and': 15.0, 'just': 1.0, 'out': 1.0, 'everything': 1.0, 'else': 1.0, 'from': 3.0, 'intact': 1.0, 'no': 2.0, 'snug': 1.0, 'm': 5.0, 'ever': 3.0, 's': 8.0, 'doesn': 2.0, 'usable': 1.0, 'seem': 1.0, 'have': 2.0, 'husband': 1.0, 'purchased': 1.0, 'think': 2.0, 'another': 2.0, 'truly': 1.0, 'for': 5.0, 'centers': 1.0, 'pieces': 1.0, 'off': 1.0, 'neither': 1.0, 'don': 1.0, 'still': 2.0, 'abuse': 1.0, 'bunch': 1.0, 'with': 3.0, 'system': 1.0, 'do': 1.0, 'end': 1.0, 'keyfit': 1.0, 'mechanism': 1.0, 'did': 1.0, 'kind': 1.0, 'european': 1.0, 'buy': 1.0, 'an': 1.0, 'basket': 1.0, 'needs': 1.0, 'months': 1.0, 'storage': 1.0, 'enough': 1.0, 'most': 2.0, 'space': 2.0, 'want': 1.0, 'bruises': 1.0, 'd': 2.0, 'suggest': 1.0, 'big': 1.0, 'size': 5.0, 'real': 1.0, 'there': 2.0, 'maneuverability': 1.0, 'secure': 1.0, 'left': 1.0, 'collapsed': 1.0, 'here': 1.0, 'half': 1.0}
Word element => {'after': 1.0, 'll': 1.0, 'excellent': 1.0, 'shipping': 2.0, 'free': 1.0, 'got': 1.0, 'others': 1.0, 'was': 1.0, 'competitive': 1.0, 'price': 1.0, 'would': 1.0, 'else': 1.0, 'one': 1.0, 'no': 1.0, 'when': 1.0, 'me': 1.0, 'shipped': 1.0, 'use': 1.0, 'amazon': 2.0, 'from': 2.0, 'they': 1.0, 'directly': 1.0, 'like': 1.0, 'head': 1.0, 'of': 1.0, 'took': 1.0, 'i': 8.0, 'the': 9.0, 'yet': 1.0, 'in': 2.0, 'hawaii': 2.0, 'update': 1.0, 'out': 2.0, 'covers': 1.0, 'it': 5.0, 'time': 1.0, 'tuesday': 1.0, 'and': 2.0, 'stroller': 2.0, 'back': 1.0, 'on': 3.0, 'received': 1.0, 'wait': 1.0, 'used': 1.0, 'reclines': 1.0, 'haven': 1.0, 'friday': 1.0, 'more': 1.0, 'is': 1.0, 'really': 1.0, 'very': 2.0, 'this': 1.0, 'soft': 1.0, 'box': 1.0, 'that': 1.0, 'way': 1.0, 't': 2.0, 'a': 1.0, 's': 1.0, 'get': 1.0, 'folds': 1.0, 'easy': 1.0, 'canopy': 1.0, 'actually': 2.0, 'baby': 1.0, 'but': 2.0, 'can': 1.0, 'seat': 2.0, 'all': 1.0, 'to': 3.0, 'ordered': 2.0, 'sidewalk': 1.0}
Word element => {'out': 1.0, 'taking': 1.0, 'by': 1.0, 'bag': 1.0, 'prefer': 1.0, 'of': 1.0, 'a': 1.0, '34': 2.0, 'you': 2.0, 'the': 2.0, 'pails': 1.0, 'diaper': 1.0, 'gives': 1.0, 'fresh': 1.0, 'scent': 1.0, 'size': 1.0, 'choose': 1.0, 'as': 2.0, 'and': 1.0, 'often': 1.0, 'it': 1.0, 'simplifies': 1.0, 'can': 1.0}
Word element => {'no': 1.0, 'stinky': 1.0, 'odor': 1.0, 'soak': 1.0, 'great': 1.0, 'rooms': 1.0, 'last': 1.0, 'a': 1.0, 'brand': 1.0, 'long': 1.0, 'time': 1.0, 'product': 1.0, 'name': 1.0, 'up': 1.0, 'bags': 1.0, 'refills': 1.0, 'refill': 1.0}
Word element => {'it': 1.0, 'the': 1.0, 'older': 1.0, 'born': 1.0, 'new': 1.0, 'doesn': 1.0, 'a': 1.0, 'room': 1.0, 'having': 1.0, 'handy': 1.0, 'recommend': 1.0, 'quick': 1.0, 'to': 2.0, 'up': 1.0, 'very': 1.0, 'and': 3.0, 'friends': 1.0, 'change': 1.0, 'out': 1.0, 't': 1.0, 'this': 1.0, 'smell': 1.0, 'would': 1.0}
Word element => {'biodegradable': 1.0, 'previous': 1.0, 'than': 1.0, 'job': 1.0, 'do': 1.0, 'containing': 1.0, 'complaints': 1.0, 'no': 1.0, 'absolutely': 1.0, 'dirty': 1.0, 'hands': 1.0, 'my': 1.0, 'it': 1.0, 'with': 1.0, 'better': 1.0, 'dekor': 1.0, 'known': 1.0, 'a': 1.0, 'refills': 2.0, 'well': 2.0, 'really': 1.0, 'is': 1.0, 'anything': 1.0, 'much': 1.0, 'contains': 1.0, 'though': 1.0, 'odors': 1.0, 'not': 1.0, 'toss': 1.0, 'as': 3.0, 'best': 1.0, 'that': 1.0, 'pail': 1.0, 'around': 1.0, 'love': 1.0, 'competitors': 1.0, 'don': 1.0, 'these': 1.0, 'diaper': 3.0, 'the': 5.0, 't': 1.0, 'have': 1.0, 'odor': 1.0, 'its': 1.0, 'to': 2.0, 'i': 2.0, 'touch': 1.0}
Word element => {'955': 1.0, 'p': 1.0, 'phone': 1.0, 'by': 1.0, 'my': 1.0, 'but': 1.0, 'website': 1.0, 'their': 1.0, '770': 1.0, 'on': 1.0, 'system': 1.0, 'to': 1.0, 'was': 1.0, 'and': 1.0, 'company': 1.0, 'order': 1.0, 'called': 1.0, 'just': 1.0, 'didn': 1.0, 'took': 1.0, 'old': 1.0, 'buy': 1.0, 'i': 1.0, 'non': 1.0, 'biodegradable': 1.0, 'they': 1.0, '3': 2.0, '5060': 1.0, 'for': 2.0, '95': 1.0, 'plus': 2.0, 'the': 4.0, 't': 1.0, 'pack': 2.0, 'able': 1.0, 'have': 1.0, '21': 1.0, 'item': 1.0}
Word element => {'other': 1.0, 'no': 1.0, 'son': 1.0, 'complaints': 1.0, 'our': 1.0, 'used': 1.0, 'better': 1.0, 'ago': 1.0, 'since': 1.0, 'and': 2.0, 'like': 1.0, 'remove': 1.0, 'months': 1.0, '8': 1.0, 'born': 1.0, 'pails': 1.0, 'easy': 1.0, 'just': 1.0, 'than': 1.0, 'was': 1.0, 'to': 1.0, 'install': 1.0, 'diaper': 1.0, 'the': 1.0, 'style': 1.0, 'function': 1.0}
Word element => {'these': 1.0, 'buy': 1.0, 'bedrooms': 1.0, 'people': 1.0, 'why': 1.0, 'issue': 1.0, 'now': 1.0, 'fans': 1.0, 'panasonic': 1.0, 'throughput': 1.0, 'high': 1.0, 'house': 1.0, 'floors': 1.0, 'second': 1.0, 'first': 1.0, 'guest': 1.0, 'pales': 2.0, 'diaper': 1.0, 'broken': 1.0, 'never': 2.0, 'better': 1.0, 'dyes': 1.0, 'on': 1.0, 'put': 2.0, 'strong': 1.0, 'have': 3.0, 'degrade': 1.0, 'understand': 1.0, 'bags': 3.0, 'that': 2.0, 'the': 16.0, 'generation': 1.0, 'diapers': 6.0, 'bathrooms': 1.0, 'will': 1.0, 'option': 1.0, 'use': 2.0, 'mask': 1.0, 'an': 2.0, 'smell': 4.0, 'bag': 1.0, 'with': 1.0, 'both': 2.0, 'really': 1.0, 'this': 1.0, 'functional': 1.0, 'excellent': 1.0, 'minor': 1.0, 'not': 1.0, 'seventh': 1.0, 'being': 1.0, 'less': 1.0, 'live': 1.0, 'product': 1.0, 'for': 1.0, 'love': 1.0, 'and': 4.0, 'means': 1.0, 'they': 1.0, 'only': 2.0, 'biodegradable': 4.0, 'our': 1.0, 'as': 2.0, 'to': 3.0, 'normal': 1.0, 'expose': 1.0, 'in': 3.0, 'composting': 1.0, 'biodegradation': 1.0, 'well': 1.0, 'is': 3.0, 'trash': 1.0, 'of': 3.0, 'liners': 1.0, 'or': 1.0, 'sooner': 2.0, 'flushing': 1.0, 'could': 1.0, 'a': 2.0, 'we': 7.0, 'city': 1.0, 'lack': 1.0, 'perfume': 2.0, 'plastic': 1.0}
Word element => {'twice': 1.0, 'wrong': 1.0, 'noted': 1.0, 'clearly': 1.0, 'sizes': 1.0, 'sustainability': 1.0, 'one': 3.0, 'disposing': 1.0, 'usable': 2.0, 'to': 11.0, 'chlorinated': 1.0, 'which': 1.0, 'notice': 1.0, 'microscopic': 1.0, 'into': 1.0, 'that': 6.0, 'concerned': 1.0, 'degrade': 1.0, '3': 1.0, 're': 2.0, 'themselves': 1.0, 'photo': 1.0, 'out': 1.0, 'natural': 1.0, 'the': 19.0, '1000': 1.0, 'of': 7.0, 'brands': 1.0, 'down': 3.0, 'chemical': 1.0, '1': 1.0, 'since': 1.0, 'break': 2.0, 'ecosystems': 2.0, 'at': 1.0, 'conventional': 1.0, 'does': 2.0, 'first': 1.0, 'my': 1.0, 'are': 11.0, 'disposable': 2.0, 'liner': 1.0, 'use': 3.0, 'stretch': 1.0, 'u': 1.0, 'be': 1.0, 'it': 5.0, 'wear': 1.0, 'or': 3.0, 'biodegradable': 7.0, 'noticed': 1.0, 'amount': 1.0, 'long': 1.0, 'only': 1.0, 'then': 1.0, 'difference': 3.0, 'we': 6.0, 'granules': 1.0, '500': 1.0, 'itself': 1.0, 'add': 2.0, 'pails': 1.0, 'and': 8.0, 'liners': 2.0, 'couple': 1.0, 'billion': 1.0, 'bags': 2.0, 'sized': 1.0, 'up': 1.0, 'diaper': 5.0, 'as': 4.0, 'decade': 1.0, 'ended': 1.0, 'make': 2.0, 'convenience': 1.0, 'another': 1.0, 'think': 3.0, 'better': 1.0, 'pail': 2.0, 'about': 3.0, 'how': 2.0, 'any': 1.0, 'your': 1.0, 'spending': 1.0, 'i': 13.0, 'if': 4.0, 'great': 2.0, 'products': 2.0, 'price': 1.0, 'these': 2.0, 'is': 3.0, 'can': 6.0, 'so': 5.0, 'levels': 1.0, 'annually': 1.0, 'comparison': 1.0, '2': 1.0, 'do': 1.0, 'much': 1.0, 'general': 1.0, 'comments': 1.0, 'components': 1.0, 'get': 1.0, 'sure': 1.0, 'services': 1.0, 'what': 1.0, 'when': 1.0, 'breaks': 1.0, 'used': 3.0, 'reviewers': 1.0, 'you': 5.0, 'owe': 1.0, 'am': 1.0, 'plastic': 1.0, 'furthermore': 1.0, 'did': 1.0, 'air': 1.0, 'now': 3.0, 'non': 2.0, 'in': 7.0, 'years': 1.0, 'our': 6.0, 'stinky': 1.0, 'have': 4.0, 'they': 3.0, 'would': 2.0, 'generally': 1.0, 'estimated': 1.0, 'by': 3.0, 'land': 1.0, 'very': 1.0, 'thank': 1.0, 'read': 1.0, 'opting': 1.0, 't': 4.0, 'ignorant': 1.0, 'small': 1.0, 'ourselves': 1.0, 'tax': 1.0, 'organisms': 1.0, 'least': 1.0, 'children': 2.0, 'ago': 1.0, 'won': 1.0, 'wherever': 2.0, 'term': 1.0, 'worked': 1.0, 'choose': 2.0, 'reducing': 2.0, 'option': 3.0, 'ultimate': 1.0, 'there': 1.0, 'different': 1.0, 'not': 6.0, 'landfills': 1.0, 'those': 1.0, 'grandchildren': 1.0, 'will': 1.0, 'boat': 1.0, 'suffer': 1.0, 'checking': 1.0, 'who': 2.0, 'from': 1.0, 'a': 9.0, 'bag': 1.0, 'breakdown': 1.0, 'options': 2.0, 'dispose': 1.0, 'has': 1.0, 'them': 1.0, 'encourage': 1.0, 'for': 4.0, 'me': 1.0, 'g': 1.0, 'recommend': 1.0, 'were': 1.0, 'pollution': 4.0, 'other': 1.0, 'way': 1.0, 'cranky': 1.0, 'all': 1.0, 'an': 1.0, 'float': 1.0, 'unhappy': 1.0, 'parents': 2.0, 'responsibility': 1.0, 'sooner': 2.0, 'generating': 1.0, 'far': 1.0, 'responsibly': 1.0, 'waste': 1.0, 'with': 2.0, '18': 1.0, 'doesn': 2.0, 's': 2.0, 'assume': 1.0, 'higher': 1.0, 'haven': 1.0, 'done': 1.0, 'diapers': 4.0, 'biodegradability': 1.0, 'but': 1.0, 'mean': 1.0, 'little': 1.0, 'folks': 1.0, 'more': 1.0, 'on': 1.0, 'items': 1.0, 'bulk': 1.0, 'thinking': 1.0, 'kids': 1.0, 'frustration': 1.0, 'washable': 1.0, 'want': 1.0, 'dekor': 1.0, 'making': 1.0}
Word element => {'pail': 1.0, 'diaper': 1.0, 'always': 1.0, 'of': 3.0, 'suddenly': 1.0, 'you': 1.0, 'daughter': 1.0, 'sensitive': 1.0, 'room': 1.0, 'why': 1.0, 'wondering': 1.0, 'after': 1.0, 'so': 1.0, 'otherwise': 1.0, 'i': 3.0, 'suggest': 1.0, 'purchased': 1.0, 'these': 1.0, 'besides': 1.0, 'are': 1.0, 'disposable': 1.0, 'days': 1.0, 'version': 1.0, 'environmentally': 1.0, 'block': 1.0, 'dekor': 1.0, 'being': 1.0, 'if': 1.0, 'stick': 1.0, 'bags': 3.0, 'it': 1.0, 'with': 3.0, 'the': 4.0, 'refill': 1.0, 'without': 1.0, 'going': 1.0, 's': 1.0, 't': 1.0, 'we': 1.0, 'non': 1.0, 'realized': 1.0, 'realizing': 1.0, 'really': 1.0, 'biodegradable': 3.0, 'do': 1.0, 'not': 1.0, 'smelled': 1.0, 'odors': 1.0, 'at': 1.0, 'our': 1.0, 'poo': 1.0, 'all': 1.0, 'diapers': 2.0, 'don': 1.0, 'think': 1.0, 're': 1.0, 'reusable': 1.0, 'concerned': 1.0}
Word element => {'deals': 1.0, 'and': 1.0, 'liners': 1.0, 'for': 1.0, 'repeat': 1.0, 'become': 1.0, 'source': 1.0, 'purchase': 1.0, 'great': 2.0, 'service': 1.0, 'the': 1.0, 'are': 1.0, 'my': 1.0, 'packs': 1.0, 'go': 1.0, 'best': 1.0, 'multiple': 1.0, 'customer': 1.0, 'has': 1.0, 'usually': 1.0, 'product': 1.0, 'to': 1.0}
Word element => {'confused': 1.0, 'just': 1.0, 'diapers': 1.0, 'non': 1.0, 'size': 2.0, 'fits': 1.0, 'and': 1.0, 'this': 2.0, 'it': 4.0, 'with': 1.0, 'about': 1.0, 'don': 2.0, 'preference': 1.0, 'to': 1.0, 'things': 1.0, 'two': 1.0, 'i': 2.0, 've': 1.0, 'for': 1.0, 'diaper': 1.0, 'but': 1.0, '2': 1.0, 'plus': 1.0, 'dekor': 1.0, 'if': 3.0, 'order': 1.0, 'you': 3.0, 'have': 2.0, 'so': 1.0, 'smaller': 1.0, 're': 1.0, 'is': 1.0, 'not': 2.0, 'biodegradable': 2.0, 'using': 1.0, 'like': 1.0, 'version': 1.0, 'years': 1.0, 'm': 1.0, 'get': 1.0, 'sure': 1.0, 'been': 1.0, 'that': 1.0, 't': 2.0, 's': 1.0, 'a': 2.0, 'since': 1.0, '1': 1.0, 'big': 1.0, 'the': 4.0, 'refill': 1.0, 'deal': 1.0, 'note': 1.0, 'filling': 1.0}
Word element => {'better': 1.0, 'feel': 1.0, 'but': 1.0, 'contains': 1.0, 'each': 1.0, 'and': 1.0, 'refills': 1.0, 'bags': 1.0, 'as': 1.0, 'least': 1.0, 'remember': 1.0, 'that': 1.0, 'box': 1.0, 'are': 1.0, 'for': 1.0, 'great': 1.0, 'diaper': 1.0, 'these': 1.0, 'sets': 1.0, 'of': 1.0, 'at': 1.0, 'two': 1.0, 'no': 1.0, 'being': 1.0, 'green': 1.0, 'i': 2.0, 'have': 1.0, 'idea': 1.0}
Word element => {'contains': 1.0, 'leaks': 1.0, 'no': 1.0, 'it': 1.0, 'company': 1.0, 'great': 1.0, 'the': 1.0, 'would': 1.0, '34': 2.0, 'and': 2.0, 'bags': 1.0, 'use': 1.0, 'biodegradable': 2.0, 'from': 1.0, 'smell': 1.0, 'we': 1.0, 'honest': 1.0, 'have': 1.0, 'been': 1.0, 'silly': 1.0, 'to': 1.0, 'product': 1.0, 'diapers': 1.0, 'put': 1.0, 'into': 1.0, 'them': 1.0, 'non': 1.0}
Word element => {'had': 2.0, 'if': 1.0, 'odor': 1.0, 'problem': 1.0, 'dekor': 1.0, 'previous': 1.0, 'would': 1.0, 'big': 1.0, 'problems': 1.0, 'different': 1.0, 'negative': 1.0, 'were': 1.0, 'that': 1.0, 'although': 1.0, 'known': 1.0, 'not': 2.0, 'i': 7.0, 'don': 1.0, 'refills': 2.0, 'have': 1.0, 'any': 2.0, 'all': 1.0, 't': 3.0, 'the': 5.0, 'these': 1.0, 'diaper': 2.0, 'say': 1.0, 'is': 1.0, 'with': 1.0, 'it': 1.0, 'route': 1.0, 'from': 1.0, 'understand': 1.0, 'read': 1.0, 'they': 2.0, 'reviews': 1.0, 'are': 1.0, 'biodegradable': 1.0, 'haven': 1.0, 'at': 1.0, 'and': 1.0, 'really': 1.0, 'appreciate': 1.0, 'disposal': 1.0, 'love': 1.0, 'system': 1.0, 'economical': 1.0, 'can': 1.0, 'most': 1.0}
Word element => {'should': 1.0, 'fit': 1.0, 'no': 1.0, 'job': 1.0, 'the': 2.0, 'do': 1.0, 'they': 2.0, 'these': 1.0, 'well': 1.0, 'as': 1.0, 'refill': 1.0, 'but': 1.0, 'you': 1.0, 'can': 1.0, 'love': 1.0, 'complaints': 1.0, 'a': 1.0, 'diaper': 1.0, 'not': 1.0, 'probably': 1.0, 'pail': 2.0}
Word element => {'in': 1.0, 'fallen': 1.0, 'has': 1.0, 'star': 1.0, 'ranks': 1.0, 'five': 1.0, 'that': 1.0, 'bio': 1.0, 'what': 2.0, 'degradable': 1.0, 'smell': 1.0, 'good': 1.0, 'bag': 1.0, 'have': 1.0, 'pointed': 1.0, 'out': 1.0, 'block': 1.0, 'and': 2.0, 'why': 1.0, 'bags': 1.0, 'changes': 1.0, 'still': 2.0, 'begrudgingly': 1.0, 'others': 1.0, 'decrease': 1.0, 'less': 1.0, 'is': 1.0, 'more': 1.0, 'the': 4.0, 'a': 5.0, 't': 1.0, 'boo': 1.0, 'new': 1.0, 'cost': 2.0, 'if': 1.0, 'diapers': 1.0, 'work': 1.0, 'aren': 1.0, 'give': 1.0, 'three': 1.0, 'this': 1.0, 'it': 2.0, 'appears': 1.0, 'as': 1.0, 'to': 1.0, 'be': 1.0, 'increase': 1.0, 'hiss': 1.0, 'shame': 1.0, 'feature': 1.0, 'i': 1.0, 'product': 1.0, 'stars': 1.0, 'does': 1.0, 'because': 1.0}
Word element => {'bags': 1.0, 'upgrade': 1.0, 'step': 1.0, 'extra': 1.0, 'take': 1.0, 'sense': 1.0, 'makes': 1.0, 'it': 1.0, 'us': 1.0, 'these': 1.0, 'the': 9.0, 'knot': 1.0, 'diapers': 1.0, 'they': 1.0, 'reviews': 1.0, 'biodegradable': 1.0, 'negative': 1.0, 'a': 1.0, 'since': 2.0, 'but': 1.0, 'work': 1.0, 'change': 1.0, '2008': 1.0, 'into': 1.0, 'off': 1.0, 'if': 2.0, 'dekor': 1.0, 'there': 1.0, 'bottom': 1.0, 'of': 2.0, 'not': 1.0, 'was': 1.0, 'product': 1.0, 'for': 1.0, 'in': 3.0, 'great': 1.0, 'install': 1.0, 'cut': 1.0, 'sure': 1.0, 'kind': 1.0, 'very': 1.0, 'little': 1.0, 'waste': 1.0, 'when': 1.0, 'easily': 1.0, 'you': 2.0, 'tie': 1.0, 'too': 1.0, 'and': 2.0, 'bag': 1.0, 'done': 1.0, 'back': 1.0, 'top': 1.0, 'use': 1.0, 'to': 1.0, 'all': 1.0, 'any': 1.0}
Word element => {'34': 2.0, 'resounding': 1.0, 'either': 1.0, 'as': 1.0, 'does': 2.0, 'or': 1.0, 'warrants': 1.0, 'rating': 1.0, 'a': 2.0, '1': 2.0, 'case': 1.0, 'product': 1.0, 'to': 1.0, 'it': 2.0, 'this': 2.0, 'not': 1.0, 'work': 2.0, '0': 1.0, 'say': 1.0, 'vs': 1.0, 'in': 1.0, 'happy': 1.0, 'binary': 1.0, 'really': 1.0, 'is': 1.0}
Word element => {'odor': 1.0, 'to': 1.0, 'use': 1.0, 'easy': 1.0, 'tone': 1.0, 'must': 1.0, 'down': 1.0, 'a': 1.0, 'if': 1.0, 'you': 1.0, 'diaper': 1.0, 'the': 2.0, 'are': 2.0, 'have': 1.0, 'they': 1.0, 'these': 1.0, 'plus': 1.0, 'and': 1.0, 'refill': 1.0, 'dekor': 1.0, 'bags': 1.0}
Word element => {'temperatures': 1.0, 'deal': 1.0, 'don': 1.0, 'some': 1.0, 'compared': 1.0, 'priced': 1.0, 'friendly': 1.0, 'environmentally': 1.0, 'with': 2.0, 'capacity': 1.0, 'having': 1.0, 'loves': 1.0, 'has': 1.0, 'companies': 1.0, 'one': 1.0, 'since': 1.0, 'bag': 1.0, 'reason': 1.0, 'efficient': 1.0, 'born': 1.0, '85': 1.0, 'really': 2.0, 'registry': 1.0, 'about': 2.0, 'recommendations': 1.0, 'of': 1.0, 'the': 9.0, 'weather': 1.0, 'those': 1.0, 'me': 1.0, 'not': 4.0, 'give': 1.0, 'than': 1.0, 'use': 2.0, 'a': 5.0, 'fairly': 1.0, 'ago': 1.0, 't': 2.0, 'going': 1.0, 'trashcan': 3.0, 'well': 2.0, 'i': 4.0, 'you': 2.0, 'review': 1.0, 'temperature': 1.0, 'greats': 1.0, 'when': 3.0, 'what': 1.0, 'high': 1.0, 'biodegradable': 1.0, 'to': 6.0, 'other': 2.0, 'all': 1.0, 'was': 1.0, 'easier': 1.0, 'right': 1.0, 'our': 2.0, 'item': 1.0, 'on': 1.0, 'definitely': 1.0, 'think': 1.0, 'recommended': 1.0, 'and': 2.0, 'been': 1.0, 'because': 3.0, 'that': 2.0, 'only': 1.0, 'much': 1.0, 'do': 1.0, 'are': 1.0, 'first': 1.0, 'above': 1.0, 'few': 1.0, 'this': 3.0, 'kids': 1.0, 'it': 5.0, 'why': 1.0, 'were': 1.0, 'start': 1.0, 'stars': 2.0, 'child': 1.0, 'year': 1.0, 'product': 2.0, 'gets': 2.0, 'had': 3.0, 'warm': 1.0, 'these': 1.0, 'systems': 3.0, 'diaper': 1.0, 'as': 1.0, 'annoying': 1.0, 'bags': 3.0, 'they': 1.0, 'aren': 1.0, 'but': 1.0, 'four': 1.0, 'whether': 1.0, 'good': 2.0, 'is': 7.0, 'at': 3.0, 'minimizing': 1.0, 'smell': 3.0, 'dekor': 1.0, 'or': 2.0, 'ambient': 1.0, 'so': 2.0, 'be': 1.0, 'talking': 1.0, 'slightly': 1.0, 'five': 1.0, 'real': 1.0, 'presence': 1.0, 'unbearable': 1.0, 'if': 1.0, 'have': 1.0, 'easy': 1.0, 'know': 1.0, 'in': 1.0, 'm': 1.0, 'overall': 1.0, 'option': 1.0, 'great': 1.0, 'especially': 1.0}
Word element => {'on': 1.0, 'tail': 1.0, 'bright': 1.0, 'and': 1.0, 'textures': 1.0, 'long': 1.0, 'different': 1.0, 'daughter': 1.0, 'colors': 1.0, 'likes': 1.0, 'of': 1.0, 'really': 2.0, 'this': 1.0, 'enjoys': 2.0, 'to': 1.0, 'toy': 1.0, 'she': 2.0, 'chew': 1.0, 'all': 1.0, 'my': 1.0, 'the': 2.0}
Word element => {'also': 1.0, 'they': 1.0, 'had': 1.0, 'corduroy': 1.0, 'my': 2.0, 'velvet': 1.0, 'fabrics': 1.0, 'different': 1.0, 'babies': 2.0, 'sensory': 1.0, 'have': 2.0, 'for': 4.0, 'love': 2.0, 'bought': 1.0, 'plush': 1.0, 'first': 1.0, 'it': 5.0, 'cotton': 1.0, 'the': 2.0, 'great': 2.0, 'sewn': 1.0, 'son': 1.0, 'very': 1.0, 'is': 2.0, 'mouth': 1.0, 'does': 1.0, 'i': 4.0, 'a': 3.0, 'horse': 2.0, 'and': 6.0, 'friends': 1.0, 'so': 2.0, '3': 1.0, 'like': 1.0, 'cute': 1.0, 'experience': 1.0, 'them': 1.0, 'this': 2.0, 'soft': 1.0, 'eyes': 1.0, 'ensure': 1.0, 'provide': 1.0, 'safety': 1.0, 'highly': 1.0, 'recommend': 1.0, 'girls': 1.0, 'boys': 1.0, 'who': 1.0, 'much': 1.0, 'of': 1.0}
Word element => {'product': 1.0, 'licensed': 1.0, 'john': 1.0, 'deere': 1.0, 'price': 1.0, 'time': 1.0, 'all': 1.0, 'molars': 1.0, 'is': 2.0, 'we': 1.0, 'and': 1.0, 'getting': 2.0, 'teeth': 1.0, 'she': 3.0, 'older': 1.0, 'it': 2.0, 'first': 1.0, 'this': 1.0, 'great': 1.0, 'the': 2.0, 't': 2.0, 'gets': 1.0, 'when': 1.0, 'use': 1.0, 'didn': 2.0, 'child': 1.0, 'my': 1.0, 'understand': 1.0, 'much': 1.0, 'bit': 1.0, 'used': 1.0, 'her': 1.0, 'down': 1.0, 'for': 2.0, 'vibrate': 1.0, 'to': 2.0, 'now': 1.0, 'that': 1.0}
Word element => {'disappear': 1.0, 'tears': 1.0, 'face': 1.0, 'his': 1.0, 'to': 1.0, 'few': 1.0, 'hang': 1.0, 'him': 1.0, 'a': 2.0, 'tries': 1.0, 'took': 1.0, 'loves': 1.0, 'on': 1.0, 'my': 1.0, 'the': 2.0, 'and': 1.0, 'get': 1.0, 'it': 3.0, 'this': 1.0, 'he': 1.0, 'son': 1.0, 'big': 1.0, 'but': 1.0, 'of': 1.0, 'vibrates': 1.0, 'when': 1.0, 'gets': 1.0, 'smile': 1.0}
Word element => {'make': 1.0, 'hold': 1.0, 'have': 1.0, 'i': 1.0, '4mth': 1.0, 'it': 4.0, 'works': 1.0, 'but': 1.0, 'takes': 1.0, 'too': 1.0, 'to': 2.0, 'old': 1.0, 'much': 1.0, 'vibrate': 1.0, 'for': 1.0, 'pressure': 1.0, 'a': 1.0}
Word element => {'lol': 1.0, 'stronger': 1.0, 'late': 1.0, 'maybe': 1.0, 'teethers': 1.0, 'that': 2.0, 'have': 1.0, 'babies': 1.0, 'again': 1.0, 'jaws': 1.0, 'crying': 1.0, 'vibrate': 1.0, 'for': 3.0, 'a': 1.0, 'teethe': 1.0, 'press': 2.0, 'really': 1.0, 'then': 1.0, 'on': 1.0, 'he': 1.0, 'this': 1.0, 'it': 2.0, 'i': 2.0, 'get': 1.0, 'and': 1.0, 'continuously': 1.0, 'before': 1.0, 'down': 2.0, 'even': 1.0, 'had': 2.0, 'to': 4.0, 'was': 1.0, 'temporary': 1.0, 'early': 1.0, 'not': 1.0, 'started': 1.0, 'just': 1.0, 'distracter': 1.0, 'baby': 1.0, 'the': 1.0}
Word element => {'of': 1.0, 'handy': 1.0, 'in': 2.0, 'come': 1.0, 'will': 1.0, 'product': 1.0, 'this': 2.0, 'first': 1.0, 'it': 4.0, 'hard': 2.0, 'but': 1.0, 'work': 1.0, 'out': 1.0, 'try': 1.0, 'then': 1.0, 'i': 2.0, 'six': 1.0, 'son': 1.0, 'let': 1.0, 'at': 1.0, 'the': 2.0, 'my': 1.0, 'started': 1.0, 'not': 1.0, 'bottom': 1.0, 'him': 1.0, 'teeth': 1.0, 'getting': 1.0, 'and': 1.0, 'teether': 1.0, 'able': 1.0, 'stage': 1.0, 'he': 3.0, 'received': 1.0, 'his': 1.0, 'we': 3.0, 'could': 1.0, 'bite': 2.0, 'enough': 2.0, 'make': 2.0, 'to': 3.0, 'was': 1.0, 'now': 1.0, 'vibrate': 1.0, '5': 1.0, 'bought': 1.0, 'months': 2.0, 'introduced': 1.0, 'when': 2.0, 'am': 1.0, 'again': 1.0, 'is': 1.0, 'teething': 1.0, 'anticiapting': 1.0, 'next': 1.0, 'that': 1.0}
Word element => {'john': 1.0, 'gift': 1.0, 'but': 1.0, 'of': 1.0, 'most': 1.0, 'your': 1.0, 'time': 1.0, 'isn': 1.0, 'for': 2.0, 'vibrate': 1.0, 'saw': 1.0, 'loves': 1.0, 'on': 1.0, 'reviews': 1.0, 'bought': 1.0, 'vibrating': 1.0, 'get': 1.0, 'and': 2.0, 'hard': 1.0, 'this': 1.0, 'it': 3.0, 't': 1.0, 'great': 2.0, 'the': 5.0, 'cutest': 1.0, 'i': 1.0, 'have': 1.0, 'thing': 1.0, 'deere': 1.0, 'baby': 2.0, 'gummy': 1.0, 'corn': 1.0, 'so': 1.0, 'function': 1.0, 'however': 1.0, 'you': 1.0, 'to': 2.0, 'push': 1.0, 'fan': 1.0, 'is': 1.0, 'really': 1.0}
Word element => {'strong': 1.0, 'still': 1.0, 'used': 1.0, 'being': 1.0, 'so': 1.0, 'using': 1.0, '7': 1.0, 'is': 3.0, 'loved': 1.0, 'boys': 1.0, 'of': 1.0, 'son': 1.0, 'now': 2.0, 'was': 1.0, 'going': 1.0, 'by': 1.0, 'when': 1.0, 'old': 1.0, 'i': 2.0, 'months': 1.0, '4': 1.0, 'ago': 1.0, 'my': 3.0, 'bought': 1.0, 'almost': 1.0, 'toy': 1.0, 'baby': 2.0, 'years': 1.0, 'with': 1.0, 'first': 1.0, 'this': 3.0, 'it': 3.0, 'great': 1.0, 'has': 1.0, 'been': 1.0, 'a': 1.0, 'and': 3.0, 'have': 1.0, 'pregnant': 1.0, 'teether': 3.0, 'all': 1.0, '3': 2.0}
Word element => {'life': 1.0, 'and': 1.0, 'loved': 1.0, 'got': 1.0, 'once': 1.0, 'but': 1.0, 'great': 1.0, 'him': 1.0, 'son': 1.0, 'is': 1.0, 'my': 1.0, 'toy': 1.0, 'was': 1.0, 'to': 3.0, 'be': 1.0, 'take': 1.0, '34': 2.0, 'saver': 1.0, 'did': 1.0, 'a': 2.0, 'down': 1.0, 'bit': 1.0, 'able': 1.0, 'loves': 1.0, 'bite': 1.0, 'he': 2.0, 'it': 6.0, 'this': 1.0, 'hard': 1.0, 'enough': 1.0, 'for': 1.0, 'vibrate': 1.0}
Word element => {'satisfying': 1.0, 'watch': 1.0, 'figure': 2.0, 'teether': 1.0, 'once': 1.0, 'to': 1.0, 't': 1.0, 'can': 1.0, 'for': 2.0, 'love': 1.0, 'wrong': 1.0, 'go': 1.0, 'this': 1.0, 'it': 5.0, 'with': 1.0, 'entertaining': 1.0, 'they': 3.0, 'that': 1.0, 'them': 2.0, 'out': 2.0, 'vibrates': 1.0, 'us': 1.0, 'when': 1.0, 'bite': 1.0, 'and': 2.0, 'you': 1.0, 's': 1.0, 'so': 1.0, 'funny': 1.0}
Word element => {'price': 1.0, 'worth': 1.0, 'in': 1.0, 'for': 1.0, 'we': 1.0, 'the': 2.0, 'my': 1.0, 'and': 2.0, 'it': 2.0, 'saw': 1.0, 'grandson': 1.0, 'loves': 1.0, 'this': 1.0, 'cheaper': 1.0, 'store': 1.0, 'toy': 1.0, 'fun': 1.0, 'what': 1.0, 'was': 1.0, 'than': 1.0}
Word element => {'would': 1.0, 'concerned': 1.0, 'sanitize': 1.0, 'safely': 1.0, 'just': 1.0, 'm': 1.0, 'i': 1.0, 'how': 1.0, 'cute': 1.0, 'looked': 1.0, 'got': 1.0, 'this': 1.0, 'a': 1.0, 'baby': 1.0, 'they': 1.0, 'our': 1.0, 'as': 1.0, 'friends': 1.0, 'gift': 1.0, 'farming': 1.0, 'for': 1.0, 'it': 2.0}
Word element => {'receiving': 1.0, 'upon': 1.0, 'his': 1.0, 'gift': 1.0, 'is': 2.0, 'my': 2.0, 'cutest': 1.0, 'the': 1.0, 'die': 1.0, 'i': 1.0, 'have': 1.0, 'teether': 1.0, 'seen': 1.0, 'a': 1.0, 'farmer': 1.0, 'and': 1.0, 'deere': 1.0, 'son': 2.0, 'as': 2.0, 'it': 1.0, 'with': 1.0, 'this': 2.0, 'hard': 1.0, 'grandson': 1.0, 'who': 1.0, 'john': 1.0, 'ever': 1.0, 'lover': 1.0, 'was': 2.0, 'delighted': 1.0}
Word element => {'make': 1.0, 'has': 1.0, '10': 1.0, 'grandson': 1.0, 't': 1.0, 'my': 1.0, 'wasn': 1.0, 'for': 1.0, 'month': 1.0, 'got': 1.0, 'vibrate': 1.0, 'am': 1.0, 'to': 2.0, 'old': 1.0, 'i': 2.0, 'neither': 1.0, 'impressed': 1.0, 'hard': 1.0, 'he': 2.0, 'this': 1.0, 'it': 2.0, 'therefore': 1.0, 'seems': 1.0, 'as': 1.0, 'if': 1.0, 'quite': 1.0, 'bite': 1.0}
Word element => {'clean': 1.0, 'cute': 1.0, 'a': 2.0, 'certainly': 1.0, 'item': 1.0, 'for': 1.0, 'and': 2.0, 'very': 1.0, 'bought': 1.0, 'rubbery': 1.0, 's': 1.0, 'kernels': 1.0, 'this': 1.0, 'it': 3.0, 'coworker': 1.0, 'received': 1.0, 'difficult': 1.0, 'i': 2.0, 'however': 1.0, 'dirty': 1.0, 'to': 1.0, 'was': 1.0, 'the': 1.0, 'when': 1.0, 'where': 1.0}
Word element => {'well': 1.0, 'looks': 1.0, 'idea': 1.0, 'cute': 2.0, 'really': 1.0, 'but': 1.0, 'and': 2.0, 'a': 2.0, 'made': 1.0, 'make': 1.0, 'the': 1.0, 'little': 1.0, 'hard': 1.0, 'vibrate': 1.0, 'for': 1.0, 'month': 1.0, 'it': 2.0, 'old': 1.0, 'to': 1.0, '8': 1.0, 'bite': 1.0}
Word element => {'waste': 1.0, 'a': 1.0, 't': 1.0, 'doesn': 1.0, 'really': 1.0, 'is': 2.0, 'get': 1.0, 'her': 1.0, 'down': 1.0, 'i': 3.0, 'tried': 1.0, 'she': 2.0, 'it': 5.0, 'this': 2.0, 'now': 1.0, 'older': 1.0, 'my': 1.0, 'would': 3.0, 'to': 3.0, 'as': 1.0, 'like': 1.0, 'difficult': 1.0, 'just': 1.0, 'and': 1.0, 'too': 2.0, 'daughter': 1.0, 'teether': 2.0, 'have': 1.0, 'babies': 1.0, 'thought': 1.0, 'but': 1.0, 'work': 2.0, 'vibrate': 1.0, 'for': 2.0, 'though': 2.0, 'of': 1.0, 'bite': 1.0, 'think': 1.0, 'perhaps': 1.0, 'better': 1.0, 'design': 1.0, 'update': 1.0, 'after': 1.0, 'several': 1.0, 'cool': 1.0, 'months': 1.0, 'young': 1.0, 'non': 1.0, 'appears': 1.0, 'use': 1.0, 'again': 1.0}
Word element => {'be': 1.0, 'seems': 1.0, 'texture': 1.0, 'biting': 1.0, 'on': 3.0, 'even': 1.0, 'down': 1.0, 'works': 1.0, 'actually': 1.0, 'teether': 2.0, 'without': 1.0, 'looking': 1.0, 'turn': 1.0, 'soft': 1.0, 'adorable': 1.0, 'an': 1.0, 'to': 2.0, 'loves': 1.0, 'it': 1.0, 'this': 1.0, 'only': 1.0, 'like': 1.0, 'is': 1.0, 'just': 1.0, 'not': 1.0, 'controls': 1.0, 'the': 8.0, 'simply': 1.0, 'baby': 2.0, 'vibrating': 1.0, 'vibration': 2.0, 'i': 1.0, 'gums': 1.0, 'soothing': 1.0, 'by': 1.0, 'when': 1.0, 'that': 1.0}
Word element => {'teeth': 1.0, 'few': 1.0, 'his': 1.0, 'for': 1.0, 'to': 2.0, 'finally': 1.0, 'work': 1.0, 'at': 1.0, 'not': 1.0, 'how': 1.0, 'learned': 1.0, 'cute': 1.0, 'son': 1.0, '10': 1.0, 'my': 1.0, 'bite': 1.0, 'is': 1.0, 'really': 2.0, 'make': 1.0, 'around': 1.0, 'first': 1.0, 'this': 2.0, 'it': 1.0, 'helpful': 1.0, 'himself': 1.0, 'on': 1.0, 'months': 1.0, 'so': 1.0}
Word element => {'cute': 1.0, 's': 1.0, 'on': 1.0, 'my': 1.0, 'also': 1.0, 'therapist': 1.0, 'a': 1.0, 'loves': 1.0, 'for': 1.0, 'son': 1.0, 'from': 1.0, 'as': 1.0, 'and': 1.0, 'to': 1.0, 'we': 1.0, 'his': 1.0, 'sensory': 1.0, 'recommendation': 1.0, 'issues': 1.0, 'purchased': 1.0, 'chew': 1.0, 'this': 1.0, 'he': 1.0, 'it': 2.0, 'looks': 1.0}
Word element => {'out': 1.0, 'hasn': 1.0, 'great': 1.0, 'figured': 1.0, 't': 1.0, 'he': 3.0, 'it': 4.0, 'thinks': 1.0, 'old': 1.0, 'to': 2.0, '7': 1.0, 'my': 1.0, 'make': 1.0, 'yet': 2.0, 'loves': 1.0, 'bite': 1.0, 'how': 1.0, 'vibrate': 1.0, 'but': 1.0, 'also': 1.0, 'month': 1.0, 'teething': 1.0, 'is': 2.0, 'just': 1.0, 'not': 1.0}
Word element => {'us': 1.0, 'worth': 1.0, 'massagers': 1.0, 'other': 1.0, 'little': 1.0, 'gum': 1.0, 'enough': 1.0, 'large': 1.0, 'handle': 1.0, 'make': 1.0, 'stuff': 1.0, 'bag': 1.0, 'in': 1.0, 'than': 1.0, 'find': 1.0, 'shape': 1.0, 'calm': 1.0, 'always': 1.0, 'money': 1.0, 'but': 1.0, 'work': 1.0, 'must': 1.0, 'expensive': 1.0, 'for': 2.0, 'effect': 1.0, 'to': 4.0, 'massaging': 1.0, 'loves': 1.0, 'use': 1.0, 'at': 1.0, 'since': 1.0, 'lot': 1.0, 's': 2.0, 'a': 4.0, 'when': 1.0, 'pop': 1.0, 'he': 4.0, 'color': 1.0, 'months': 1.0, 'full': 1.0, 'this': 2.0, 'pain': 2.0, 'looked': 1.0, 'from': 2.0, 'seem': 1.0, 'gets': 1.0, 'son': 1.0, 'makes': 1.0, 'old': 1.0, 'it': 9.0, 'showing': 1.0, 'out': 1.0, 'signs': 1.0, 'would': 3.0, 'thing': 1.0, 'my': 1.0, 'pull': 1.0, 'more': 1.0, 'is': 1.0, 'around': 1.0, 'through': 1.0, 'of': 4.0, 'immediately': 1.0, 'has': 1.0, 'purchased': 1.0, 'had': 1.0, 'him': 2.0, 'grab': 1.0, 'his': 1.0, '4': 1.0, 'i': 4.0, 'two': 1.0, 'hold': 1.0, 'like': 1.0, 'teeth': 1.0, 'finally': 1.0, 'starting': 1.0, 'and': 2.0, 'easy': 2.0, 'get': 1.0, 'down': 1.0, 'bottom': 1.0, 'everytime': 1.0, 'bit': 1.0, 'fussy': 1.0, 'the': 6.0, 'teething': 1.0, 'start': 1.0, 'diaper': 1.0, 'teether': 1.0, 'chewing': 1.0}
Word element => {'feet': 1.0, 'his': 1.0, 'teether': 1.0, 'have': 1.0, 'that': 1.0, 'my': 1.0, 'more': 1.0, 'the': 1.0, 'friends': 1.0, 'and': 1.0, 'swear': 1.0, 'but': 1.0, 'fun': 1.0, 'some': 1.0, 'vibrations': 1.0, 'stand': 1.0, 'by': 1.0, 'baby': 1.0, 'i': 1.0, 'thinks': 1.0, 'this': 1.0, 'it': 2.0, 's': 1.0, 'to': 1.0, 'on': 2.0, 'feel': 1.0}
Word element => {'its': 1.0, 'to': 1.0, 'way': 1.0, 'trying': 1.0, 'is': 1.0, 'through': 1.0, 'make': 1.0, 'new': 1.0, 'has': 1.0, 'tooth': 1.0, 'the': 1.0, 'my': 1.0, 'times': 1.0, 'washed': 1.0, 'several': 1.0, 'hand': 1.0, 'soothes': 1.0, 'been': 1.0, 'a': 1.0, 'vibration': 1.0, 'and': 2.0, 'son': 1.0, 'at': 1.0, 'surprised': 1.0, 'but': 1.0, 'loves': 1.0, 'he': 1.0, 'durable': 1.0, 'first': 1.0, 'it': 1.0, 'him': 1.0, 'whenever': 1.0}
Word element => {'break': 1.0, 'very': 1.0, 'hard': 2.0, 'neither': 1.0, 'which': 1.0, 'vibration': 1.0, 'the': 1.0, 'less': 1.0, 'loves': 1.0, 'that': 1.0, 'so': 1.0, 'stimulation': 1.0, 'helps': 1.0, 'in': 1.0, 'nor': 1.0, 'it': 1.0, 'she': 3.0, 'really': 1.0, 'her': 3.0, 'chewing': 1.0, 'daughter': 1.0, 'often': 1.0, 'my': 1.0, 'purchased': 1.0, '4': 1.0, 'i': 1.0, 'needed': 1.0, 'longer': 1.0, 'to': 5.0, 'give': 1.0, 'seeking': 1.0, 'friend': 1.0, 'are': 1.0, 'sensory': 3.0, 'have': 2.0, 'able': 1.0, 'peers': 1.0, 'disorder': 1.0, 'input': 1.0, 'too': 2.0, 'and': 6.0, 'easy': 1.0, 'get': 1.0, 'biting': 2.0, 's': 1.0, 'a': 2.0, 'fantastic': 1.0, 'has': 1.0, 'toy': 1.0, 'years': 1.0, 'processing': 1.0, 'son': 1.0, 'children': 2.0, 'this': 3.0, 'spd': 1.0, 'with': 1.0, 'he': 2.0, 'for': 3.0, 'things': 1.0, 'given': 1.0, 'one': 1.0, 'issues': 1.0, 'is': 3.0, 'chews': 1.0, 'of': 1.0, 'work': 1.0, 'can': 1.0, '2': 1.0, 'then': 1.0, 'teethers': 1.0, 'by': 1.0, 'year': 1.0, 'his': 2.0, 'was': 3.0, 'daycare': 1.0, 'mouth': 1.0, 'find': 1.0, 'because': 1.0, 'who': 3.0, 'toddlers': 1.0, 'at': 1.0, 'these': 1.0, 'some': 2.0, 'clothing': 1.0, 'no': 1.0, 'or': 2.0, 'inappropriate': 1.0, 'bite': 2.0, 'strong': 1.0, 'put': 1.0, 'on': 2.0, 'constantly': 1.0, '3': 1.0, 'bites': 1.0, 'old': 2.0, 'anything': 1.0, 'other': 1.0}
Word element => {'not': 1.0, 'sure': 1.0, 'dishwasher': 1.0, 'air': 1.0, 'soap': 1.0, 'water': 1.0, 'boiling': 1.0, 'use': 1.0, 'submerged': 1.0, 'never': 1.0, 've': 1.0, 'i': 2.0, 'though': 1.0, 'note': 1.0, 'us': 1.0, 'for': 1.0, 'buy': 1.0, 'clean': 2.0, 'good': 1.0, 'because': 1.0, 'just': 2.0, 'enough': 1.0, 'over': 1.0, 'up': 1.0, 'quite': 1.0, 'originally': 1.0, 'wasn': 1.0, 'my': 1.0, 'chews': 1.0, '6m': 1.0, 'thing': 1.0, 'it': 10.0, 'this': 1.0, 'he': 4.0, 'also': 1.0, 's': 2.0, 'a': 3.0, 't': 1.0, 'heavy': 1.0, 'the': 3.0, 'holds': 1.0, 'is': 3.0, 'strong': 1.0, 'on': 2.0, 'bites': 1.0, 'old': 1.0, 'as': 1.0, 'to': 4.0, 'now': 1.0, 'dry': 1.0, 'cut': 1.0, 'but': 1.0, 'too': 1.0, 'starting': 1.0, 'and': 3.0, 'bottom': 1.0, 'down': 1.0, 'hard': 1.0, 'part': 2.0, 'safe': 1.0, 'flips': 1.0, 'pretty': 2.0, 'teeth': 1.0, 'hold': 1.0, 'which': 1.0, 'activates': 1.0, 'that': 1.0, 'loves': 1.0, 'massager': 1.0, 'yellow': 1.0, 'at': 1.0, 'little': 2.0, 'rubbery': 1.0, 'simply': 1.0, 'so': 1.0, 'sometimes': 1.0}
Word element => {'vibrate': 1.0, 'make': 1.0, 'him': 1.0, 'bite': 1.0, 'son': 1.0, 'is': 1.0, 'for': 2.0, 'just': 1.0, 'later': 1.0, 'like': 1.0, 'and': 2.0, 'my': 1.0, 'but': 1.0, 'will': 1.0, 'to': 1.0, 'now': 1.0, 'its': 2.0, 'hard': 1.0, 'it': 3.0, 'he': 2.0, 'clunky': 1.0, 'maybe': 1.0, '8': 1.0, 'months': 1.0, 'heavy': 1.0, 'too': 1.0, 'when': 1.0, 'even': 1.0, 'does': 1.0}
Word element => {'vibrate': 1.0, 'toy': 1.0, 'to': 1.0, 'useful': 1.0, 'make': 1.0, 'learning': 1.0, 'is': 1.0, 'not': 1.0, 've': 1.0, 'used': 1.0, 'this': 1.0, 'it': 1.0, 'only': 1.0, 'we': 1.0, 'entertained': 1.0, 'teether': 1.0, 'son': 1.0, 'best': 1.0, 'for': 2.0, 'teething': 1.0, 'months': 1.0, 'the': 1.0, 'motor': 1.0, 'ever': 1.0, 'has': 1.0, 'been': 1.0, 'my': 1.0, 'coordination': 1.0}
Word element => {'recommened': 1.0, 'will': 1.0, 'does': 1.0, '8': 1.0, 'for': 1.0, 'baby': 1.0, 'my': 1.0, 'i': 2.0, 'old': 1.0, 'bought': 1.0, 'be': 1.0, 'he': 1.0, 'it': 5.0, 'because': 1.0, 'not': 3.0, 'months': 1.0, 'on': 1.0, 'is': 2.0, 'may': 1.0, 'heavy': 1.0, 'interesting': 1.0, 'and': 1.0, 'look': 1.0, 'to': 1.0, 'colorful': 1.0}
Word element => {'by': 1.0, 'i': 1.0, 'item': 1.0, 'on': 2.0, 'add': 1.0, 'therefore': 1.0, 'only': 1.0, 'it': 1.0, 'like': 1.0, 'thing': 1.0, 'was': 2.0, 'onnly': 1.0, 'awsome': 1.0, 'an': 2.0, 'is': 1.0, 'just': 1.0, 'use': 1.0, 'and': 1.0, 'about': 1.0, 'deere': 1.0, 'any': 1.0, 'good': 1.0, 'cup': 1.0, 'toss': 1.0, 'as': 2.0, 'ther': 1.0, 'product': 2.0, 'take': 1.0, 'the': 4.0, 'sippy': 1.0, 'own': 1.0, 'couldnt': 1.0, 'pretty': 1.0, 'love': 1.0, 'study': 1.0, 'so': 1.0, 'design': 1.0, 'we': 1.0, 'john': 1.0, 'them': 2.0, 'alot': 1.0, 'ididnt': 1.0, 'there': 2.0, 'plus': 1.0}
Word element => {'much': 1.0, 'so': 1.0, 'doesn': 1.0, 'toddler': 1.0, 'an': 1.0, 'for': 1.0, 'be': 1.0, 'may': 1.0, 'who': 1.0, 'chair': 1.0, 'sippy': 1.0, 'sometimes': 1.0, 'old': 1.0, 't': 1.0, 'these': 2.0, 'the': 3.0, 'drop': 1.0, 'lids': 1.0, '1': 1.0, 'high': 1.0, 'my': 1.0, 'cup': 1.0, 'older': 1.0, 'he': 1.0, 'only': 1.0, 'better': 1.0, 'problem': 1.0, 'loves': 1.0, 'off': 1.0, 'cups': 2.0, 'pop': 1.0, 'when': 1.0, 'is': 1.0, 'drops': 1.0, 'son': 1.0, 'year': 1.0, 'from': 1.0, 'his': 1.0}
Word element => {'no': 1.0, 'dishwasher': 1.0, 'in': 1.0, 'them': 1.0, 'i': 1.0, 'everyday': 1.0, 'with': 1.0, 'n': 1.0, 'use': 2.0, 'problems': 1.0, 'toss': 1.0, 'but': 2.0, 'for': 3.0, 'take': 1.0, 'cups': 1.0, 'fall': 1.0, 'not': 1.0, 'do': 2.0, 'over': 1.0, 'the': 1.0, 'great': 2.0, 'these': 1.0, 'they': 2.0, 'are': 1.0, 'real': 1.0, 'up': 1.0, 'leak': 1.0, 'if': 1.0, 'have': 1.0, 'held': 1.0}
Word element => {'cute': 1.0, 'striped': 1.0, 'with': 1.0, 'made': 1.0, 'stripes': 1.0, 'style': 1.0, 'pack': 1.0, 'children': 1.0, 'will': 1.0, 'worth': 1.0, 'their': 1.0, 'said': 1.0, 'used': 1.0, 'soft': 1.0, 'wish': 1.0, 'this': 1.0, 'doubler': 1.0, 'prefold': 1.0, 'wrap': 2.0, 'the': 11.0, 'diapered': 1.0, 'son': 1.0, 'best': 1.0, 'now': 2.0, 'had': 2.0, 'two': 1.0, 'i': 1.0, 'boys': 1.0, 'favorite': 2.0, 'down': 1.0, 'some': 1.0, 'these': 2.0, 'already': 1.0, 'then': 2.0, 'use': 1.0, 'on': 1.0, '3': 1.0, 'future': 1.0, 'who': 1.0, 'handed': 1.0, 'well': 1.0, 'girls': 1.0, 'acommodate': 1.0, 'multi': 1.0, 'of': 3.0, 'last': 1.0, 'fabric': 1.0, 'outside': 1.0, 'as': 1.0, 'all': 3.0, 'great': 1.0, 'twin': 1.0, 'wraps': 1.0, 'classicly': 1.0, 'mine': 1.0, 'design': 1.0, 'too': 1.0, 'moms': 1.0, 'and': 9.0, 'chocolate': 1.0, 'they': 3.0, 't': 1.0, 'a': 3.0, 'first': 1.0, 'stitching': 1.0, 'velcro': 1.0, 'it': 4.0, 'was': 2.0, 'doesn': 1.0, 'thing': 1.0, 'about': 1.0, 'quality': 1.0, 'baby': 1.0, 'is': 3.0, 'type': 1.0, 'for': 1.0, 'fit': 2.0, 'velour': 1.0, 'are': 1.0, 'pill': 1.0, 'my': 2.0, 'fits': 1.0, 'money': 1.0, 'can': 1.0}
Word element => {'are': 1.0, 'you': 1.0, 'if': 1.0, 'money': 1.0, 'worth': 1.0, 'all': 1.0, 'size': 1.0, 'was': 1.0, 'wish': 1.0, 'using': 1.0, 'one': 2.0, 'cloth': 1.0, 'i': 1.0, 'other': 1.0, 'diapers': 1.0, 'but': 2.0, 'of': 1.0, 'far': 1.0, 'favorite': 1.0, 'is': 2.0, 'fits': 1.0, 'covers': 2.0, 'a': 2.0, 'purchased': 1.0, 'number': 1.0, 'by': 1.0, 'my': 1.0, 'flexible': 1.0, 'this': 1.0, 'it': 2.0, 'and': 1.0, 'as': 2.0, 'not': 1.0, 'diaper': 1.0, 'the': 2.0, 'bulky': 1.0}
Word element => {'curles': 1.0, 'baby': 1.0, 'a': 1.0, 'several': 1.0, 'sharp': 1.0, 'when': 1.0, 'too': 1.0, 'but': 1.0, 'use': 1.0, 'that': 1.0, 'soft': 1.0, 'and': 2.0, 'breathable': 1.0, 'through': 1.0, 'scratch': 1.0, 'the': 2.0, 'made': 1.0, 'started': 1.0, 'notesed': 1.0, 'i': 1.0, 'one': 1.0, 'it': 2.0, 'washings': 1.0, 'cover': 1.0, 'month': 1.0, 'material': 1.0, 'after': 2.0, 'of': 2.0, 'is': 2.0, 'leaking': 1.0, 'also': 1.0, 'can': 1.0, 'velkro': 1.0}
Word element => {'picture': 1.0, 'amazon': 1.0, 'in': 1.0, 'look': 1.0, 'doesn': 1.0, 'be': 1.0, 'other': 1.0, 'match': 1.0, 'get': 1.0, 'keep': 1.0, 'will': 2.0, 'sunlight': 1.0, 'bright': 1.0, 'the': 6.0, 'but': 2.0, '2': 2.0, 'more': 1.0, 'is': 2.0, 'aware': 1.0, 'really': 1.0, 'try': 1.0, 'granddaughter': 1.0, 'wanted': 1.0, 'frame': 3.0, 'what': 1.0, 'had': 1.0, 'matting': 1.0, 'to': 3.0, 'for': 1.0, 'i': 4.0, '34': 2.0, 'of': 3.0, 'boy': 1.0, 'and': 3.0, 'matching': 1.0, '1': 1.0, 'pink': 3.0, 'faded': 2.0, 'very': 1.0, 'same': 1.0, 'because': 1.0, 'me': 1.0, 'not': 1.0, 'this': 3.0, 'looks': 1.0, 'it': 4.0, 'new': 1.0, 'girl': 1.0, 'frames': 1.0, 'colored': 1.0, 'mat': 1.0, 'coral': 1.0, 'one': 2.0, 'bought': 2.0, 'color': 3.0, 's': 1.0, 't': 1.0, 'a': 3.0, 'ago': 1.0, 'pretty': 1.0, 'yrs': 1.0, 'like': 2.0, 'my': 1.0, 'may': 1.0, 'have': 1.0, 'been': 1.0, 'just': 1.0, 'by': 1.0}
Word element => {'that': 1.0, 'why': 1.0, 'really': 1.0, 'job': 1.0, 'its': 1.0, 'it': 3.0, 'but': 1.0, 'chemical': 1.0, 'does': 2.0, 'even': 1.0, 'fit': 1.0, 'have': 1.0, 'and': 2.0, 'great': 1.0, 'storng': 1.0, 'well': 1.0, 'a': 1.0, 'smell': 1.0, 'not': 1.0, 'if': 1.0, 'way': 1.0, 'you': 1.0, 'appealing': 1.0, 'in': 1.0, 'wash': 1.0, 'over': 2.0}
Word element => {'worth': 1.0, 'well': 1.0, 'money': 1.0, '2': 1.0, 'now': 1.0, 'who': 1.0, 'limbs': 1.0, 'her': 3.0, 'constantly': 1.0, 'after': 1.0, 'was': 1.0, 'i': 4.0, 'putting': 1.0, 'night': 1.0, 'bought': 1.0, 'tool': 1.0, 'the': 4.0, 'great': 1.0, 'my': 2.0, 'first': 1.0, 'active': 1.0, 'crib': 2.0, 'in': 2.0, 'product': 1.0, 'for': 3.0, 'originally': 1.0, '6': 1.0, 'of': 1.0, 'she': 1.0, 'it': 2.0, 'month': 1.0, 'old': 1.0, 'realized': 1.0, 'caught': 1.0, 'is': 2.0, 'a': 1.0, 'trapping': 1.0, 'getting': 1.0, 'nuk': 1.0, 'when': 1.0, 'daughter': 1.0, 'rails': 1.0, 'out': 1.0, 'mouth': 1.0, 'this': 2.0, 'wish': 1.0, 'during': 1.0, 'would': 1.0, 'falls': 1.0, 'have': 1.0, 'purchased': 1.0, 'also': 1.0, 'item': 1.0}
Word element => {'mom': 1.0, 'works': 1.0, '2': 1.0, 'that': 1.0, 'see': 1.0, 'back': 1.0, 'solid': 1.0, 'have': 1.0, 'spongy': 1.0, 'heartedly': 1.0, 'give': 1.0, 'feel': 1.0, 'padded': 1.0, 'install': 1.0, 'very': 2.0, 'it': 4.0, 'for': 1.0, 'pieces': 1.0, 'were': 1.0, 'exactly': 1.0, 'with': 2.0, 'answer': 1.0, 'he': 2.0, 'soft': 2.0, 'this': 3.0, 'and': 5.0, 'looking': 1.0, 'gotten': 1.0, 'easy': 1.0, 'get': 1.0, 'the': 6.0, 'crib': 3.0, 'slats': 1.0, 'first': 1.0, 'stuck': 1.0, 'roll': 1.0, 'i': 3.0, 'took': 1.0, 'happy': 1.0, 'woke': 1.0, 'nervous': 1.0, 'almost': 1.0, 'his': 2.0, 'whole': 1.0, 'about': 1.0, 'night': 1.0, 'baby': 1.0, 'screaming': 1.0, 'bumper': 4.0, 'would': 2.0, 'recommend': 1.0, 'was': 3.0, 'had': 1.0, 'against': 1.0, 'so': 3.0, 'after': 1.0, 'original': 1.0, 'using': 1.0, 'face': 1.0, 'in': 3.0, 'regular': 1.0, 'side': 1.0, 'comes': 1.0, 'around': 1.0, 'is': 1.0, 'any': 1.0, 'sleep': 1.0, 'to': 5.0, 'our': 2.0, 's': 2.0, 'a': 3.0, 'we': 2.0, 'out': 2.0, 'up': 1.0, 'leg': 1.0, 'trying': 1.0, 'because': 1.0, 'breathable': 2.0}
Word element => {'sleep': 1.0, 'while': 1.0, 'safe': 1.0, 'they': 1.0, 'your': 1.0, 'keep': 1.0, 'way': 1.0, 'an': 1.0, 'such': 1.0, 'so': 1.0, 'items': 1.0, 'and': 3.0, 'favorite': 1.0, 'of': 1.0, 'any': 1.0, 'baby': 2.0, 'my': 1.0, 'much': 2.0, 'to': 2.0, 'comfortable': 1.0, 'love': 1.0, 'one': 1.0, 'easy': 1.0, 'recommend': 1.0, 'cheaper': 1.0, 'i': 1.0, 'is': 2.0, 'parent': 1.0, 'it': 4.0, 'this': 1.0, 'other': 1.0, 'safer': 1.0, 'than': 1.0, 'bumpers': 1.0, 'would': 1.0}
Word element => {'cute': 1.0, 'as': 1.0, 'up': 1.0, 'tries': 1.0, 'too': 1.0, 'when': 1.0, 'soft': 1.0, 'inside': 1.0, 'feet': 1.0, 'hands': 1.0, 'one': 1.0, 'pull': 1.0, 'my': 1.0, 'time': 1.0, 'on': 2.0, 'to': 2.0, 'into': 1.0, 'bars': 1.0, 'place': 1.0, 'lil': 1.0, 'the': 2.0, 'a': 2.0, 'though': 1.0, 'safely': 1.0, 'little': 2.0, 'crib': 1.0, 'out': 1.0, 'just': 2.0, 'ttrial': 1.0, 'breatheable': 1.0, 'get': 1.0, 'and': 2.0, 'collapses': 1.0, 'type': 1.0, 'error': 1.0, 's': 1.0, 'depending': 1.0, 'advertised': 1.0, 'it': 1.0, 'he': 1.0, 'first': 1.0, 'hard': 1.0, 'this': 1.0, 'keeps': 1.0}
Word element => {'and': 1.0, 'shapes': 1.0, 'cribs': 1.0, 'to': 1.0, 'made': 1.0, 'be': 1.0, 'limbs': 1.0, 'his': 1.0, 'caught': 1.0, 'of': 2.0, 'sizes': 1.0, 'all': 1.0, 'have': 1.0, 'would': 1.0, 'night': 1.0, 'between': 1.0, 'a': 1.0, 'baby': 1.0, 'our': 1.0, 'every': 1.0, 'bumper': 1.0, 'times': 1.0, 'can': 1.0, 'without': 1.0, 'the': 1.0, 'slats': 1.0, 'crib': 1.0, 'multiple': 1.0, 'it': 1.0, 'this': 1.0, 'with': 1.0, 'bit': 1.0, 'fit': 1.0, 'ingenuity': 1.0}
Word element => {'get': 1.0, 'creative': 1.0, 'prepared': 1.0, 'slat': 1.0, 'sizes': 1.0, 'little': 1.0, 'its': 1.0, 'decent': 1.0, 'to': 2.0, 'be': 1.0, 'product': 1.0, 'styles': 1.0, 'a': 2.0, 'doesn': 1.0, 'have': 1.0, 't': 1.0, 'work': 1.0, 'well': 1.0, 'crib': 1.0, 'for': 1.0, 'but': 1.0, 'all': 1.0}
Word element => {'everyone': 1.0, 'that': 3.0, 'thing': 1.0, 'haha': 1.0, 'even': 1.0, 'wouldn': 1.0, 'mouth': 1.0, 'breathable': 1.0, 'over': 3.0, 'completely': 2.0, 'more': 1.0, 'put': 1.0, 'on': 3.0, 'but': 1.0, 'p': 1.0, 'fine': 1.0, 'we': 2.0, 'breath': 1.0, 'a': 5.0, 's': 4.0, 'go': 1.0, 'money': 1.0, 'bought': 1.0, 'careful': 1.0, 'and': 8.0, 'comfy': 1.0, 'hurt': 1.0, 'well': 1.0, 'i': 6.0, 'plush': 1.0, 'was': 2.0, 'anymore': 1.0, 'had': 1.0, 'to': 9.0, 'as': 3.0, 'sleep': 1.0, 'all': 1.0, 'when': 3.0, 'roll': 1.0, 'peek': 1.0, 'my': 2.0, 'purchase': 1.0, 'tried': 1.0, 'own': 2.0, 'time': 1.0, 'can': 1.0, 'so': 1.0, 'learned': 2.0, 'kind': 1.0, 'get': 1.0, 'before': 1.0, 'her': 5.0, 'parent': 1.0, 'hits': 1.0, 'it': 7.0, 'baby': 2.0, 'she': 2.0, 'not': 2.0, 'little': 3.0, 'very': 2.0, 'this': 4.0, 'thicker': 1.0, 'be': 1.0, 'trying': 1.0, 'padded': 1.0, 'rolls': 1.0, 'certainly': 1.0, 'tighter': 1.0, 'the': 6.0, 'of': 3.0, 'wake': 1.0, 'crib': 3.0, 'probably': 1.0, 'really': 1.0, 'or': 1.0, 'would': 2.0, 't': 1.0, 'fit': 1.0, 'our': 1.0, 'how': 1.0, 'pull': 2.0, 'down': 2.0, 'up': 3.0, 'mesh': 1.0, 'wish': 2.0, 'expect': 1.0, 'out': 1.0, 'first': 1.0, 'cute': 1.0, 'recommend': 1.0, 'were': 1.0, 'settle': 1.0, 'worth': 1.0, 'now': 1.0, 'herself': 1.0, 'is': 2.0, 'bars': 1.0, 'at': 1.0, 'm': 1.0, 'one': 3.0, 'happy': 1.0, 'with': 1.0}
Word element => {'thru': 1.0, 'toys': 1.0, 'liner': 1.0, 'opposed': 1.0, 'as': 1.0, 'is': 1.0, 'to': 2.0, 'fall': 1.0, 'those': 1.0, 'breathable': 1.0, 'corners': 1.0, 'like': 2.0, 'only': 1.0, 'that': 2.0, 'snuggle': 1.0, 'in': 1.0, 'crib': 1.0, 'for': 1.0, 'mine': 1.0, 'or': 1.0, 'i': 1.0, 'especially': 1.0, 'infants': 1.0, 'the': 5.0, 'rail': 1.0, 'style': 1.0, 'corner': 1.0, 'and': 1.0, 'paci': 1.0, 'do': 1.0, 'up': 1.0, 'of': 1.0, 'thing': 1.0, 'not': 1.0}
Word element => {'picture': 1.0, 'nice': 1.0, 'liek': 1.0, 'a': 1.0, 'the': 1.0, 'are': 1.0, 'purple': 1.0, 'exactly': 1.0, 'works': 1.0, 'as': 1.0, 'described': 1.0, 'and': 1.0, 'just': 1.0, 'easy': 1.0, 'perfect': 1.0, 'for': 1.0, 'daughter': 1.0, 'pretty': 1.0, 'our': 1.0, 'they': 1.0}
Word element => {'crib': 1.0, 'his': 1.0, 'in': 1.0, 'knowing': 1.0, 'from': 1.0, 'get': 2.0, 'what': 1.0, 'very': 1.0, 'hurt': 1.0, 'am': 1.0, 'product': 1.0, 'on': 1.0, 'together': 1.0, 'happy': 1.0, 'velcro': 1.0, 'with': 2.0, 'it': 1.0, 'that': 2.0, 'comfortable': 1.0, 'feel': 1.0, 'friends': 1.0, 'and': 4.0, 'not': 1.0, 'me': 1.0, 'i': 4.0, 'be': 1.0, 'choke': 1.0, 'by': 2.0, 'option': 1.0, 'is': 2.0, 'more': 1.0, 'the': 1.0, 'cause': 1.0, 'my': 2.0, 'family': 1.0, 'recommending': 1.0, 'safer': 1.0, 'to': 1.0, 'all': 1.0, 'fabric': 1.0, 'dopne': 1.0, 'ties': 1.0, 'can': 2.0, 'hazards': 1.0, 't': 1.0, 'a': 1.0, 'comfort': 1.0, 'well': 1.0, 'baby': 2.0, 'mesh': 1.0, 'yet': 1.0, 'held': 1.0, 'or': 1.0, 'other': 1.0, 'will': 1.0, 'also': 1.0, 'how': 1.0, 'surprised': 1.0, 'thick': 1.0, 'breathable': 1.0, 'this': 3.0, 'soft': 1.0}
Word element => {'crib': 1.0, 'head': 1.0, 'his': 1.0, 'on': 1.0, 'starting': 1.0, 'months': 1.0, 'when': 1.0, '30': 1.0, 'we': 1.0, '6': 1.0, 'settled': 1.0, 'up': 1.0, 'and': 2.0, 'never': 1.0, 's': 1.0, 'baby': 1.0, 'about': 1.0, 'to': 1.0, 'was': 3.0, 'stayed': 2.0, 'flimsy': 1.0, 'item': 1.0, 'reaching': 1.0, 'carter': 1.0, 'the': 4.0, 'for': 3.0, 'one': 2.0, 'from': 1.0, 'store': 1.0, 'hit': 1.0, 'that': 1.0, 'put': 1.0, 'but': 1.0, 'he': 1.0, 'this': 1.0, 'it': 1.0}
Word element => {'waste': 1.0, 'took': 1.0, 'tangled': 1.0, 'and': 3.0, 'away': 2.0, 'get': 1.0, 'the': 3.0, 'right': 2.0, 'to': 1.0, 'was': 1.0, 'off': 1.0, 'ripped': 1.0, 'it': 7.0, 'looks': 1.0, 'posts': 1.0, 'you': 1.0, 'of': 2.0, 'has': 1.0, 'crib': 3.0, 'which': 1.0, 'baggy': 1.0, 'tie': 1.0, 'two': 1.0, 'i': 2.0, 'mine': 1.0, 'strings': 1.0, 'one': 1.0, 'huge': 1.0, 'not': 1.0, 'product': 1.0, 'fit': 1.0, 'more': 1.0, 'is': 3.0, 'around': 1.0, 'a': 1.0, 'does': 1.0, 'standard': 1.0, 'this': 1.0, 'perfect': 1.0, 'in': 2.0, 'picture': 1.0, 'money': 1.0, 'but': 1.0, 'out': 1.0, 'ridiculous': 1.0, 'loose': 1.0, 'worried': 1.0, 'that': 1.0, 'tight': 1.0, 'my': 1.0, 'daughter': 1.0, 'would': 1.0}
Word element => {'kids': 1.0, 'other': 1.0, 'wish': 1.0, 'moms': 1.0, 'would': 1.0, 'in': 1.0, 'highly': 1.0, 'baby': 1.0, 'my': 2.0, 'leaving': 1.0, 'suggest': 1.0, 'comfortable': 1.0, 'had': 1.0, 'to': 1.0, 'was': 1.0, 'all': 1.0, 'thing': 1.0, 'not': 1.0, 'like': 1.0, 'sleeping': 1.0, 'very': 2.0, 'did': 1.0, 'otherwise': 1.0, 'doesn': 1.0, 'this': 2.0, 'with': 3.0, 'only': 1.0, 'it': 2.0, 'i': 3.0, 'that': 3.0, 'rails': 1.0, 'felt': 1.0, 'the': 3.0, 't': 1.0, 'fit': 1.0, 'crib': 2.0, 'liner': 1.0, 'has': 1.0, 'thick': 1.0, 'bars': 1.0, 'a': 1.0, 'well': 1.0}
Word element => {'not': 1.0, 'done': 1.0, 'gets': 1.0, 'up': 1.0, 'back': 1.0, 'pull': 1.0, 'have': 1.0, 'night': 1.0, 'between': 1.0, 'in': 1.0, 'lot': 1.0, 'tend': 1.0, 'does': 1.0, 'stuffed': 1.0, 'bulky': 1.0, 'and': 3.0, 'last': 1.0, 'portion': 1.0, 'solid': 1.0, 'wood': 1.0, 's': 1.0, 'a': 1.0, 't': 4.0, 'job': 1.0, 'the': 9.0, 'two': 1.0, 'i': 6.0, 'slide': 1.0, 'while': 1.0, 'part': 1.0, 'isn': 2.0, 'has': 1.0, 'on': 1.0, 'your': 1.0, 'favorite': 1.0, 'down': 1.0, 'bumper': 1.0, 'slatted': 1.0, 'way': 1.0, 'most': 1.0, 'can': 1.0, 'but': 2.0, 'work': 2.0, 'will': 1.0, 'crib': 6.0, 'around': 1.0, 'of': 2.0, 'my': 2.0, 'end': 1.0, 'only': 1.0, 'mattress': 1.0, 'this': 1.0, 'didn': 1.0, 'wouldn': 1.0, 'month': 1.0, 'it': 7.0, 'to': 2.0, 'all': 1.0, 'as': 1.0, 'sides': 1.0, 'realize': 1.0, 'been': 1.0, 'that': 3.0, 'for': 4.0, 'type': 1.0, 'you': 1.0, 'when': 1.0, 'bought': 1.0, 'bumpers': 1.0, 'be': 1.0, 'so': 1.0, 'sure': 1.0, 'like': 2.0, 'using': 1.0, 'know': 1.0, 'each': 1.0, 've': 1.0, 'use': 1.0, 'front': 1.0}
Word element => {'legs': 1.0, 'arms': 1.0, 'her': 2.0, 'through': 1.0, 'to': 1.0, 'sticking': 1.0, 'color': 1.0, 'easy': 1.0, 'perfect': 1.0, 'and': 2.0, 'the': 1.0, 'my': 1.0, 'they': 1.0, 'keep': 1.0, 'crib': 1.0, 'in': 1.0, 'daughter': 1.0, 'slats': 1.0, 'install': 1.0, 'from': 1.0}
Word element => {'rambunctious': 1.0, 'have': 1.0, 'just': 1.0, 'job': 1.0, 'awesome': 1.0, 'really': 1.0, 'looks': 1.0, 'some': 1.0, 'finally': 1.0, 'baby': 2.0, 'does': 1.0, 'down': 1.0, 'pulling': 1.0, 'color': 1.0, 'breathable': 1.0, 'and': 2.0, 'up': 1.0, 'love': 1.0, 'velcro': 1.0, 'with': 1.0, 'only': 1.0, 'it': 5.0, 'to': 1.0, 'its': 4.0, 'a': 3.0, 'small': 1.0, 'great': 1.0, 'the': 3.0, 'slips': 1.0, 'bumper': 1.0, 'green': 1.0, 'i': 3.0, 'industrial': 1.0, 'pretty': 2.0, 'easy': 2.0, 'put': 1.0, 'but': 2.0, 'though': 1.0, 'slap': 1.0, 'on': 3.0, 'crib': 1.0}
Word element => {'product': 1.0, 'very': 1.0, 'is': 1.0, 'looks': 1.0, 'way': 1.0, 'baby': 1.0, 'great': 1.0, 'the': 3.0, 'something': 1.0, 'could': 1.0, 'crib': 1.0, 'install': 1.0, 'through': 1.0, 'she': 1.0, 'easy': 1.0, 'pretty': 2.0, 'wanted': 1.0, 'to': 2.0, 'was': 1.0, 'i': 2.0, 'too': 1.0, 'when': 1.0, 'it': 3.0, 'love': 1.0, 'breath': 1.0, 'my': 1.0, 'rolled': 1.0, 'up': 1.0, 'of': 1.0, 'sides': 1.0}
Word element => {'good': 1.0, 'really': 1.0, 'and': 1.0, 'it': 1.0, 'looks': 1.0, 'got': 1.0, 'i': 1.0, 'them': 1.0, 'a': 1.0, 'little': 1.0, 'all': 1.0, 'but': 1.0, 'confused': 1.0, 'on': 2.0, 'how': 1.0, 'together': 1.0, 'was': 1.0, 'at': 1.0, 'put': 2.0, 'first': 1.0, 'to': 1.0}
Word element => {'fluffy': 1.0, 'the': 1.0, 'traditional': 1.0, 'especially': 1.0, 'anyone': 1.0, 'liners': 1.0, 'this': 2.0, 'is': 1.0, 'a': 1.0, 'recommend': 1.0, 'replace': 1.0, 'nice': 1.0, 'durable': 1.0, 'crib': 1.0, 'mesh': 1.0, 'to': 2.0, 'liner': 1.0, 'i': 1.0, 'would': 1.0}
Word element => {'pleased': 1.0, 'very': 1.0, 'overall': 1.0, 'satisfactory': 1.0, 'is': 1.0, '34': 2.0, 'with': 1.0, 'construction': 1.0, 'fit': 1.0, 'great': 1.0, 'month': 1.0, 'were': 1.0, 'a': 1.0, 'for': 1.0, 'in': 1.0, 'everything': 1.0, 'order': 1.0, 'materials': 1.0, 'so': 1.0, 'use': 1.0, 'package': 1.0, 'and': 1.0, 'was': 1.0, 'professional': 1.0, 'instructions': 1.0, 'simple': 1.0, 'solid': 1.0, 'customer': 1.0, 'quality': 1.0, 'chased': 1.0, 'or': 1.0, 'service': 1.0}
Word element => {'would': 1.0, 'we': 1.0, 'time': 1.0, 'every': 1.0, 'up': 1.0, 'plus': 1.0, 'anyway': 1.0, 'recommended': 1.0, 'sheets': 1.0, 's': 1.0, 'what': 1.0, 'changed': 1.0, 'is': 2.0, 'kept': 1.0, 'correctly': 1.0, 'didn': 1.0, 'all': 1.0, 'on': 1.0, 'sliding': 1.0, 'but': 1.0, 'put': 1.0, 'maybe': 1.0, 'without': 1.0, 'i': 2.0, 'around': 1.0, 'get': 1.0, 'and': 1.0, 'it': 3.0, 'looked': 1.0, 'terrible': 1.0, 'was': 1.0, 'messed': 1.0, 'much': 1.0, 'the': 1.0, 't': 1.0, 'more': 1.0, 'often': 1.0, 'one': 1.0, 'comfortable': 1.0, 'which': 2.0}
Word element => {'sids': 1.0, 'worried': 1.0, 'looking': 1.0, 'recommend': 1.0, 'absolutely': 1.0, 'would': 1.0, 'wanted': 1.0, 'material': 1.0, 'mesh': 1.0, 'does': 1.0, 'breathable': 1.0, 'install': 1.0, 'easy': 1.0, 'very': 2.0, 'so': 1.0, 'week': 1.0, 'it': 3.0, 'had': 1.0, 'have': 1.0, 'try': 1.0, 'soft': 1.0, 'this': 2.0, 'others': 1.0, 'anyone': 1.0, 'him': 1.0, '5': 1.0, 'baby': 1.0, 'about': 2.0, 'my': 1.0, 'love': 1.0, 'product': 2.0, 'for': 3.0, 'bumper': 2.0, 'starting': 1.0, 'and': 4.0, 'rolling': 1.0, 'using': 1.0, 'like': 2.0, 'out': 1.0, 'many': 1.0, 'old': 1.0, 'i': 6.0, 'rungs': 1.0, 'to': 5.0, 'months': 1.0, 'decided': 2.0, 'ago': 1.0, 'a': 6.0, 'opt': 1.0, 'he': 1.0, 'with': 1.0, 'research': 1.0, 'leg': 1.0, 'of': 2.0, 'scooching': 1.0, 'almost': 1.0, 'his': 1.0, 'is': 2.0, 'around': 1.0, 'far': 1.0, 'through': 1.0, 'in': 1.0, 'stuck': 1.0, 'crib': 1.0, 'give': 1.0, 'but': 1.0, '2': 1.0, 'job': 1.0, 'the': 2.0, 'now': 1.0, 'weeks': 1.0, 'finding': 1.0, 'after': 1.0, 'or': 1.0, 'arm': 1.0, 'who': 1.0, 'lot': 1.0}
Word element => {'you': 1.0, 'drive': 1.0, 'this': 1.0, 'perfectionist': 1.0, 'if': 1.0, 'pretty': 1.0, 'at': 1.0, 'look': 1.0, 'just': 1.0, 'still': 1.0, 'mesh': 1.0, 'baby': 1.0, 'decided': 1.0, 'little': 1.0, 'very': 1.0, 'worked': 1.0, 'stuck': 1.0, 'in': 1.0, 'reason': 1.0, 'might': 1.0, 'a': 2.0, 't': 1.0, 'we': 1.0, 'get': 1.0, 'and': 1.0, 'leg': 1.0, 'so': 1.0, 'time': 1.0, 'has': 1.0, 'liner': 2.0, 'putting': 1.0, 'i': 1.0, 'slowly': 1.0, 'crib': 3.0, 'active': 1.0, 'doesn': 1.0, 'was': 1.0, 'after': 1.0, 'job': 1.0, 'the': 8.0, 'seeing': 1.0, 'her': 2.0, 'because': 1.0, 'does': 2.0, 'it': 3.0, 'try': 1.0, 'only': 1.0, 'wonderful': 1.0, 'gave': 1.0, 'sleep': 1.0, 'our': 1.0, 'to': 2.0, 'all': 1.0, 'for': 1.0, 'stars': 1.0, 'not': 1.0, 'stay': 1.0, 'up': 1.0, 'way': 1.0, 'down': 1.0, '5th': 1.0, 'bunches': 1.0, 'nuts': 1.0, 'your': 1.0, 'on': 1.0, 'four': 1.0, 'but': 1.0}
Word element => {'we': 1.0, 'each': 1.0, 'put': 1.0, 'back': 1.0, 'be': 1.0, 'slide': 1.0, 'down': 1.0, 'does': 1.0, 'it': 1.0, 'time': 1.0, 'has': 1.0, 'free': 1.0, 'up': 1.0, 'of': 1.0, 'no': 1.0, 'far': 1.0, 'easy': 1.0, 't': 1.0, 'more': 1.0, 'the': 4.0, 'get': 1.0, 'and': 3.0, 'screams': 1.0, 'install': 1.0, 'crib': 1.0, 'slats': 1.0, 'so': 1.0, 'got': 1.0, 'to': 2.0, 'was': 1.0, 'night': 1.0, 'because': 1.0, 'baby': 2.0, 'pulled': 1.0, 'middle': 1.0, 'a': 1.0, 'leg': 1.0, 'in': 2.0, 'stuck': 1.0, 'can': 1.0}
Word element => {'others': 1.0, 'bars': 1.0, 'also': 1.0, 'in': 1.0, 'like': 1.0, 'head': 1.0, 'her': 1.0, 'likes': 1.0, 'that': 1.0, 'my': 1.0, 'sleep': 1.0, 'good': 1.0, 'said': 1.0, 'is': 3.0, 'on': 1.0, 'here': 1.0, 'i': 1.0, 'for': 1.0, 'love': 1.0, 'the': 2.0, 'great': 2.0, 'baby': 1.0, 'helps': 1.0, 'price': 1.0, 'bumper': 1.0, 'a': 2.0, 'confusing': 1.0, 'little': 1.0, 'at': 1.0, 'catcher': 1.0, 'with': 1.0, 'this': 1.0, 'it': 2.0, 'first': 1.0, 'to': 2.0, 'paci': 1.0, 'and': 2.0, 'get': 1.0, 'but': 1.0, 'fits': 1.0}
Word element => {'yarn': 1.0, 'ball': 1.0, 'with': 1.0, 'kitten': 1.0, 'like': 1.0, 'of': 2.0, 'an': 1.0, 'get': 1.0, 'delighted': 1.0, '00am': 1.0, '5': 1.0, 'at': 1.0, 'since': 1.0, 'morning': 1.0, 'in': 1.0, 'up': 2.0, 'wakes': 2.0, 'minutes': 2.0, 'bats': 1.0, 'forth': 1.0, 'back': 1.0, 'them': 1.0, 'out': 2.0, '30': 2.0, 'this': 1.0, 'swatting': 1.0, 'lazy': 1.0, 'extra': 1.0, 'untie': 1.0, 'just': 1.0, 'i': 4.0, 'about': 1.0, 'tie': 1.0, 'had': 1.0, 'crib': 1.0, 'else': 1.0, 'for': 2.0, 'actually': 1.0, 'when': 1.0, 'am': 2.0, 'someone': 1.0, 'that': 2.0, 'loves': 1.0, 'have': 1.0, 'sit': 1.0, 'around': 2.0, 'more': 1.0, 'because': 1.0, 'than': 1.0, 'protecting': 1.0, 'kid': 1.0, 'while': 1.0, 'from': 1.0, 'worked': 1.0, 'sleep': 1.0, 'our': 1.0, 'to': 3.0, 'as': 2.0, 's': 1.0, 'a': 3.0, 'really': 1.0, 'turns': 1.0, 'deal': 1.0, 'the': 4.0, 'distraction': 1.0, 'good': 1.0, 'her': 1.0, 'ribbons': 2.0, 'it': 2.0, 'she': 4.0, 'too': 1.0, 'and': 2.0, 'harm': 1.0, 'then': 1.0, 'there': 1.0}
Word element => {'baby': 1.0, 'for': 1.0, 'use': 1.0, 'want': 1.0, 'wouldn': 1.0, 'i': 2.0, 'really': 1.0, 't': 1.0, 'this': 1.0, 'to': 1.0, 'product': 1.0, 'breathable': 1.0, 'my': 1.0, 'the': 1.0, 'anything': 1.0, 'is': 1.0, 'else': 1.0, 'material': 1.0, 'ingenious': 1.0, 'like': 1.0, 'and': 1.0}
Word element => {'worth': 1.0, 'out': 1.0, 'straighten': 1.0, 'have': 1.0, 'think': 1.0, 'problem': 1.0, 'only': 1.0, 'anymore': 1.0, 'stuck': 2.0, 'in': 2.0, 'his': 2.0, 'get': 2.0, 'help': 1.0, 'legs': 2.0, 'not': 1.0, 'i': 5.0, 'really': 1.0, 'the': 2.0, 'my': 1.0, 'holes': 1.0, 'cause': 1.0, 'find': 1.0, 'to': 3.0, 'wanted': 1.0, 'now': 1.0, 'bars': 1.0, 'him': 1.0, 'bumpers': 1.0, 'trusted': 1.0, 'but': 2.0, 'would': 1.0, 'something': 1.0, 'that': 2.0, 'so': 1.0, 'boy': 1.0, 'has': 1.0, 'he': 2.0, 'with': 1.0, 'never': 1.0, 'moving': 1.0, 'found': 1.0, 'this': 1.0, 'felt': 1.0, 'it': 6.0, 'always': 1.0, 'did': 1.0, 'is': 2.0, 'more': 1.0, 'around': 1.0, 'at': 1.0, 'lot': 1.0, 't': 1.0, 'a': 1.0, 's': 1.0, 'times': 1.0, 'when': 1.0, 'sense': 1.0, 'comfortable': 1.0, 'using': 1.0, 'don': 1.0}
Word element => {'air': 1.0, 'mesh': 1.0, 'purple': 1.0, 'light': 1.0, 'is': 1.0, 'product': 1.0, 'pink': 1.0, 'they': 1.0, 'just': 1.0, 'allowed': 1.0, 'wish': 1.0, 'legs': 1.0, 'it': 1.0, 'this': 2.0, 'with': 1.0, 'works': 1.0, 'her': 1.0, 'lets': 1.0, 'crib': 1.0, 'something': 1.0, 'in': 2.0, 'stuck': 1.0, 'got': 1.0, 'grandchild': 1.0, 'my': 1.0, 'great': 1.0, 'the': 4.0, 'more': 1.0, 'thru': 1.0, 'a': 1.0, 'since': 1.0, 'sticking': 1.0, 'out': 1.0, 'straddling': 1.0, 'bars': 1.0, 'bumpers': 1.0, 'had': 2.0, 'to': 1.0, 'i': 2.0, 'buy': 1.0, 'no': 1.0}
Word element => {'problems': 1.0, 'had': 1.0, 'but': 1.0, 'not': 1.0, 'up': 1.0, 'very': 1.0, 'it': 2.0, 'works': 1.0, 'well': 1.0, 'does': 1.0, 'i': 2.0, 'said': 1.0, 'have': 1.0, 'no': 1.0, 'stay': 1.0, 'some': 1.0, 'read': 1.0, 'that': 1.0, 'reviews': 1.0}
Word element => {'recommend': 1.0, 'highly': 1.0, 'satisfied': 1.0, 'm': 1.0, 'bought': 1.0, 'is': 1.0, 'breathable': 1.0, 'because': 1.0, 'the': 2.0, 'up': 1.0, 'right': 1.0, 'when': 1.0, 'safe': 1.0, 'him': 1.0, 'also': 1.0, 'use': 1.0, 'he': 2.0, 'so': 1.0, 'collapses': 1.0, 'and': 1.0, 'them': 1.0, 'by': 1.0, 'with': 2.0, 'rolls': 1.0, 'have': 1.0, 'table': 1.0, 'rolling': 1.0, 'see': 1.0, 'i': 5.0, 'old': 1.0, 't': 1.0, 's': 3.0, 'hard': 1.0, 'from': 1.0, 'love': 1.0, 'has': 1.0, 'limbs': 1.0, 'cushion': 1.0, 'crib': 1.0, 'can': 1.0, 'but': 1.0, 'an': 2.0, 'this': 3.0, 'pictures': 1.0, 'perfect': 1.0, 'in': 1.0, 'main': 1.0, 'climb': 1.0, 'odd': 1.0, '13': 1.0, 'to': 3.0, 'beyond': 1.0, 'attached': 1.0, 'now': 1.0, 'though': 1.0, 'son': 1.0, 'still': 1.0, 'out': 1.0, 'bumper': 4.0, 'perfectly': 1.0, 'reason': 1.0, 'keeps': 2.0, 'fits': 1.0, 'my': 1.0, 'it': 10.0, 'month': 1.0, 'hurting': 1.0, 'bars': 1.0, 'himself': 1.0, 'that': 1.0, 'next': 1.0, 'changing': 1.0, 'into': 1.0, 'or': 1.0, 'even': 1.0, 'sticking': 1.0, 'of': 1.0}
Word element => {'upset': 1.0, 'super': 1.0, 'leg': 1.0, 'get': 1.0, 'her': 1.0, 'stuck': 2.0, 'in': 1.0, 'with': 1.0, 'this': 1.0, 'only': 1.0, 'getting': 1.0, 'bars': 1.0, 'place': 1.0, 'the': 3.0, 'limb': 1.0, 'back': 1.0, 'sticking': 1.0, 'mesh': 1.0, 'two': 1.0, 'i': 2.0, 'through': 1.0, 'took': 1.0, 'had': 2.0, 'now': 1.0, 'was': 1.0, 'problem': 1.0, 'if': 1.0, 'properly': 1.0, 'about': 2.0, 'no': 1.0, 'actually': 1.0, 'idea': 1.0, 'as': 1.0, 'to': 2.0, 'our': 1.0, 'put': 2.0, 'on': 1.0, 'before': 1.0, 'it': 3.0, 'she': 1.0, 'baby': 2.0, 'night': 1.0, 'started': 1.0, 'crawling': 2.0, 'one': 1.0, 'lazy': 1.0, 'hours': 1.0, 'recently': 1.0, 'be': 1.0, 'liner': 1.0, 'changed': 1.0, 'we': 2.0, 'a': 3.0, 'bedding': 1.0, 'and': 4.0, 'too': 1.0}
Word element => {'weight': 1.0, 'way': 1.0, 'still': 1.0, 'times': 1.0, 'at': 1.0, 'wish': 1.0, 'love': 1.0, 'get': 2.0, 'getting': 1.0, 'and': 3.0, 'their': 1.0, 'parts': 1.0, 'my': 2.0, 'are': 2.0, 'them': 1.0, 'easy': 1.0, 'used': 1.0, 'the': 3.0, 'these': 1.0, 'they': 2.0, 'when': 1.0, 'kids': 3.0, 'older': 1.0, 'velcro': 2.0, 'with': 1.0, 'on': 1.0, 'able': 1.0, 'all': 1.0, 'have': 1.0, 'i': 2.0, 'was': 1.0, 'to': 3.0, 'put': 1.0, 'help': 1.0, 'stronger': 2.0, 'keep': 1.0, 'stuck': 2.0, 'body': 1.0, 'gives': 1.0, 'as': 2.0, 'from': 1.0}
Word element => {'picture': 1.0, 'about': 1.0, 'ordered': 1.0, 'i': 1.0, 'in': 1.0, 'crib': 1.0, 'put': 1.0, 'color': 1.0, 'not': 1.0, 'and': 1.0, 'like': 2.0, 'nice': 1.0, 'was': 1.0, 'to': 1.0, 'although': 1.0, 'easy': 1.0, 'the': 3.0, 'traditional': 1.0, 'looked': 1.0, 'it': 3.0, 'feels': 1.0, 'looks': 1.0, 'is': 1.0, 'pretty': 1.0, 'soft': 1.0, 'thick': 1.0, 'a': 1.0, 'bumper': 1.0}
Word element => {'fast': 1.0, 'super': 1.0, 'recommend': 1.0, 'etc': 1.0, 'the': 1.0, 'price': 1.0, 'baby': 1.0, 'out': 1.0, 'try': 1.0, 'a': 1.0, 'to': 2.0, 'product': 2.0, 'also': 1.0, 'seems': 1.0, 'with': 1.0, 'it': 2.0, 'this': 2.0, 'fit': 1.0, 'have': 1.0, 'and': 1.0, 'very': 1.0, 'but': 1.0, 'quality': 1.0, 'going': 1.0, 'we': 1.0, 'until': 1.0, 'good': 1.0, 'arent': 1.0, 'on': 1.0, 'expecting': 1.0, 'd': 1.0, 'so': 1.0, 'shipped': 1.0, '2013': 1.0, 'i': 2.0, 'for': 1.0, 'appearance': 1.0, 'feb': 1.0, 'yet': 1.0}
Word element => {'overall': 1.0, 'seems': 1.0, 'up': 1.0, 'velcro': 1.0, 'pretty': 1.0, 'feels': 1.0, 'top': 1.0, 'part': 1.0, 'ribbon': 1.0, 'okay': 1.0, 'sheets': 1.0, 'but': 1.0, 'change': 1.0, 'been': 1.0, 'have': 1.0, 'install': 1.0, 'quality': 1.0, 'relatively': 1.0, 'of': 1.0, 'with': 1.0, 'mind': 1.0, 'piece': 1.0, 'me': 1.0, 'give': 1.0, 'it': 3.0, 'buy': 1.0, 'bars': 1.0, 'does': 1.0, 'breathable': 1.0, 'far': 1.0, 'through': 2.0, 'is': 1.0, 'around': 1.0, 'legs': 1.0, 'and': 5.0, 'visual': 1.0, 'easy': 1.0, 'get': 1.0, 'his': 3.0, 'arms': 1.0, 'i': 5.0, 'again': 1.0, 'lose': 1.0, 'without': 1.0, 'the': 7.0, 'my': 2.0, 'stuck': 1.0, 'he': 2.0, 'son': 1.0, 'test': 1.0, 'cheap': 1.0, 'actually': 1.0, 'for': 1.0, 'bought': 1.0, 'one': 1.0, 'directions': 1.0, 'crib': 1.0, 'well': 1.0, 'has': 1.0, 'won': 1.0, 'able': 2.0, 'pacifiers': 1.0, 'overnight': 1.0, 'bumper': 2.0, 'wanted': 1.0, 'as': 2.0, 'all': 1.0, 'to': 4.0, 'was': 2.0, 's': 1.0, 't': 1.0, 'a': 2.0, 'held': 1.0, 'or': 1.0, 'tends': 1.0, 'shove': 1.0, 'face': 2.0, 'right': 2.0, 'so': 3.0, 'against': 1.0, 'anything': 1.0, 'this': 3.0, 'soft': 1.0, 'strong': 1.0, 'on': 1.0, 'put': 1.0, 'would': 1.0, 'nose': 1.0, 'removing': 1.0, 'breathe': 1.0}
Word element => {'mother': 1.0, 'product': 1.0, 'recommend': 1.0, 'grandmother': 1.0, 'would': 1.0, 'soft': 1.0, 'very': 1.0, 'and': 1.0, 'our': 1.0, 'animals': 1.0, 'this': 1.0, 'grandson': 1.0, 'colorful': 1.0, 'appoved': 1.0, 'i': 1.0, 'enjoys': 1.0, 'the': 1.0, 'yes': 1.0, 'fun': 1.0}
Word element => {'over': 1.0, 'crib': 2.0, 'his': 2.0, 'used': 1.0, 'getting': 1.0, 'and': 1.0, 'this': 1.0, 'with': 1.0, 'it': 2.0, 'stopped': 1.0, 'because': 2.0, 'old': 1.0, 'started': 2.0, 'night': 1.0, 'slats': 1.0, 'between': 1.0, 'the': 1.0, 'careful': 1.0, 'stuck': 1.0, 'arms': 1.0, 'when': 2.0, 'was': 3.0, 'its': 1.0, 'had': 1.0, 'were': 1.0, 'constantly': 1.0, '3': 1.0, 'on': 2.0, 'months': 2.0, 'son': 1.0, 'about': 1.0, 'to': 1.0, 'our': 1.0, 'any': 1.0, 'check': 1.0, 'we': 3.0, 'a': 1.0, 'position': 1.0, 'each': 1.0, 'never': 1.0, 'pottery': 1.0, 'using': 2.0, 'rolling': 1.0, 'trouble': 1.0, 'barn': 1.0, 'around': 1.0, 'he': 3.0, '6': 1.0}
Word element => {'terrific': 1.0, 'works': 1.0, 'product': 1.0, 'plus': 1.0, 'at': 1.0, 'send': 1.0, 'promise': 1.0, 'had': 1.0, 'within': 1.0, 'minutes': 1.0, 'was': 2.0, 'to': 3.0, 'her': 2.0, 'leg': 1.0, 'of': 1.0, 'bed': 1.0, 'arrived': 1.0, 'marks': 1.0, 'princess': 1.0, 'the': 3.0, 'company': 1.0, 'my': 1.0, 'certainly': 1.0, 'went': 1.0, 'bumper': 1.0, 'one': 2.0, 'bought': 1.0, 'slat': 1.0, 'this': 1.0, 'she': 1.0, 'it': 2.0, 'very': 2.0, 'reply': 1.0, 'little': 1.0, 'dangling': 1.0, 'crib': 1.0, 'because': 1.0, 'morning': 1.0, 'i': 5.0, 'when': 1.0, 'through': 1.0, 'get': 1.0, 'and': 4.0, 'impressed': 1.0, 'on': 2.0, 'with': 1.0, 'piece': 1.0, 'charge': 1.0, 'while': 1.0, 'replacement': 1.0, 'out': 1.0, 'wasn': 1.0, 'ordered': 1.0, 'chocolate': 1.0, 't': 1.0, 'a': 4.0, 'in': 1.0, 'brown': 1.0, 'no': 1.0, 'several': 1.0, 'bothered': 1.0, 'picture': 1.0, 'stain': 1.0, 'sent': 1.0}
Word element => {'better': 1.0, 'sleeping': 1.0, 'are': 1.0, 'looking': 1.0, 'was': 1.0, 'and': 4.0, 'get': 2.0, 'getting': 1.0, 'his': 4.0, 'what': 1.0, 'crib': 1.0, 'little': 1.0, 'in': 2.0, 'stuck': 2.0, 'also': 1.0, 'perfect': 1.0, 'this': 2.0, 'he': 2.0, 'moving': 1.0, 'it': 2.0, 'much': 1.0, 'so': 1.0, 'against': 1.0, 'for': 1.0, 'product': 1.0, 'move': 1.0, 'great': 1.0, 'prevents': 1.0, 'the': 2.0, 'rails': 2.0, 'my': 1.0, 'mo': 1.0, 'padding': 1.0, 'son': 1.0, '5': 1.0, 'enough': 1.0, 'legs': 2.0, 'would': 2.0, 'him': 1.0, 'head': 1.0, 'up': 1.0, 'from': 1.0, 'while': 1.0, 'around': 2.0, 'is': 1.0, 'sleeps': 1.0, 'bumper': 1.0, 'has': 1.0, 'just': 3.0, 'we': 1.0, 's': 1.0, 'a': 1.0, 'both': 1.0, 'arms': 1.0, 'i': 1.0}
Word element => {'5': 1.0, 'about': 1.0, 'took': 1.0, 'install': 1.0, 'easy': 1.0, 'set': 2.0, 'of': 1.0, 'place': 1.0, 'in': 1.0, 'crib': 2.0, 'the': 1.0, 'traditional': 1.0, 'ordered': 1.0, 'we': 1.0, 'is': 1.0, 'a': 1.0, 'only': 1.0, 'come': 1.0, 'this': 1.0, 'with': 1.0, 'it': 3.0, 'to': 1.0, 'was': 1.0, 'matches': 1.0, 'that': 1.0, 'our': 1.0, 'and': 1.0, 'very': 1.0, 'bumpers': 1.0, 'nice': 1.0, 'minutes': 1.0, 'looking': 1.0}
Word element => {'does': 1.0, 'really': 1.0, 'see': 1.0, 'my': 1.0, 'm': 1.0, 'bumpers': 1.0, 'buy': 1.0, 'using': 1.0, 'switch': 1.0, 'away': 1.0, 'store': 1.0, 'planning': 1.0, 'function': 1.0, 'still': 1.0, 'cribs': 1.0, 'drop': 1.0, 'so': 2.0, 'just': 3.0, 'posting': 1.0, 'not': 1.0, 'route': 1.0, 'have': 1.0, 'pics': 1.0, 'reviewers': 1.0, 'the': 10.0, 'until': 1.0, 'great': 1.0, 'said': 1.0, 'out': 1.0, 'much': 1.0, 'all': 1.0, 'to': 5.0, 'bumper': 3.0, 'front': 1.0, 'use': 3.0, 'then': 1.0, 'no': 1.0, 'about': 1.0, 'point': 1.0, 'you': 5.0, 'separate': 1.0, 'other': 1.0, 'side': 1.0, 'wraps': 1.0, 'this': 2.0, 'it': 5.0, 'and': 5.0, 'that': 3.0, 'work': 1.0, '2': 1.0, 'can': 3.0, 'particular': 1.0, 'crib': 5.0, 'for': 2.0, 'cradle': 4.0, 'if': 2.0, 're': 2.0, 'a': 1.0, 's': 2.0, 'going': 1.0, 'pieces': 1.0, 'long': 2.0, 'with': 1.0, 'piece': 4.0, 'i': 3.0, '4': 1.0, 'is': 1.0, 'say': 1.0, 'around': 1.0, 'on': 1.0, 'think': 1.0, 'your': 2.0, '3': 1.0, 'of': 3.0, 'need': 1.0, 'wanted': 1.0, 'short': 2.0}
Word element => {'keep': 1.0, 'will': 1.0, 'see': 1.0, 'few': 1.0, 'now': 1.0, 'legs': 1.0, 'better': 1.0, 'but': 1.0, 'had': 1.0, 'give': 1.0, 'not': 1.0, 'ties': 1.0, 'well': 1.0, 'tighten': 1.0, 'tried': 1.0, 'all': 1.0, 'to': 1.0, 'as': 5.0, 'video': 1.0, 'installation': 1.0, 'watched': 1.0, 'him': 1.0, 'suffocating': 1.0, 'fabric': 1.0, 'baggy': 1.0, 'making': 1.0, 'than': 1.0, 'installed': 1.0, 'because': 2.0, 'little': 4.0, 'edge': 1.0, 'crib': 3.0, 'of': 5.0, 'top': 1.0, 'for': 1.0, 'fit': 1.0, 'instructed': 1.0, 'bit': 1.0, 'against': 1.0, 'the': 12.0, 'side': 2.0, 'if': 1.0, 'want': 1.0, 'between': 1.0, 'stomach': 1.0, 'kind': 1.0, 'it': 4.0, 'and': 5.0, 'hoped': 1.0, 'squishes': 1.0, 'arms': 1.0, 'im': 1.0, 'happy': 1.0, 'velcro': 1.0, 'nervous': 1.0, 'his': 2.0, 'my': 1.0, 'guy': 1.0, 'on': 2.0, 'around': 1.0, 'more': 2.0, 'is': 1.0, 'sleeps': 1.0, 'ok': 1.0, 'reason': 1.0, 's': 1.0, 't': 1.0, 'a': 4.0, 'we': 1.0, 'days': 1.0, 'bulk': 1.0, 'extra': 1.0, 'll': 1.0, 'loosen': 1.0, 'bottom': 1.0, 'bunches': 1.0, 'bumper': 1.0, 'limbs': 1.0, 'were': 1.0, 'got': 1.0, 'sticking': 2.0, 'out': 2.0, 'i': 6.0, 'up': 1.0, 'don': 1.0}
Word element => {'but': 1.0, 'buy': 1.0, 'i': 1.0, 'product': 1.0, 'where': 1.0, '34': 2.0, 're': 1.0, 'placed': 1.0, 'isn': 2.0, 'wide': 1.0, 'spokes': 1.0, 'convertible': 1.0, 'near': 1.0, 'big': 1.0, '1': 1.0, '3': 2.0, 'never': 1.0, 'mine': 1.0, 'way': 1.0, 'not': 1.0, 'seems': 1.0, 'also': 1.0, 'head': 1.0, 'issue': 1.0, 'an': 1.0, 'that': 1.0, 'so': 2.0, 'strings': 1.0, 'again': 1.0, 'you': 1.0, 'move': 1.0, 'problem': 1.0, 'deal': 1.0, 'reach': 1.0, 'the': 7.0, 'didn': 1.0, 'crib': 4.0, 'in': 2.0, 'it': 4.0, 'perfect': 1.0, 'this': 1.0, 'around': 1.0, 'is': 2.0, 'caught': 1.0, 'sleeping': 1.0, 'know': 1.0, 'all': 1.0, 'to': 2.0, 'was': 1.0, 'tight': 1.0, 'my': 2.0, 'would': 3.0, 'and': 4.0, 'get': 1.0, 'do': 2.0, 'matter': 1.0, 'child': 1.0, 'up': 1.0, 'there': 2.0, 'screaming': 1.0, 'his': 2.0, 'he': 2.0, 'how': 2.0, 'because': 1.0, 'breathable': 1.0, 'arm': 1.0, 'or': 1.0, 'son': 1.0, 'gap': 1.0, 'of': 2.0, 'wake': 1.0, 'leg': 1.0, 'back': 1.0, 'helped': 1.0, 'down': 1.0, 'inside': 1.0, 'bumper': 1.0, 'we': 1.0, 't': 3.0, 'a': 3.0, 'lot': 1.0, 'tie': 1.0, 'about': 2.0, 'no': 2.0, 'suffocation': 1.0, 'slip': 1.0, 'worry': 1.0, 'they': 1.0, 'be': 1.0, 'bumpers': 2.0}
Word element => {'protection': 1.0, 'this': 1.0, 'facing': 1.0, 'limbs': 1.0, 'that': 1.0, 'against': 1.0, 'out': 1.0, 'fits': 1.0, 'suffocate': 1.0, 'protects': 1.0, 'get': 2.0, 'and': 4.0, 'well': 1.0, 'rolls': 1.0, 'up': 1.0, 'of': 1.0, 'crib': 1.0, 'could': 1.0, 'hurt': 1.0, 'the': 2.0, 't': 1.0, 'recommended': 1.0, 'if': 1.0, 'baby': 1.0, 'won': 1.0, 'ends': 1.0, 'over': 1.0}
Word element => {'stands': 1.0, 'happy': 1.0, 'since': 1.0, 'have': 1.0, 'arm': 1.0, 'babies': 1.0, 'pressure': 1.0, 'light': 1.0, 'crumble': 1.0, 'limbs': 3.0, 'over': 2.0, 'up': 2.0, 'get': 2.0, 'legs': 1.0, 'arms': 1.0, 'litttle': 1.0, 'night': 1.0, 'would': 5.0, 'no': 1.0, 'lift': 1.0, 'about': 1.0, 'more': 1.0, 'caught': 2.0, 'around': 1.0, 'roll': 2.0, 'apparently': 1.0, 'began': 1.0, 'useful': 1.0, 'great': 1.0, 'nice': 1.0, 'carter': 2.0, 'softness': 1.0, 'imobile': 1.0, 'between': 1.0, 'needs': 1.0, 'so': 1.0, 'sleeping': 1.0, 'hand': 1.0, 'bumper': 9.0, 'buy': 1.0, '4': 1.0, 'i': 10.0, 'what': 1.0, 'her': 4.0, 'was': 5.0, 'wanted': 1.0, 'spacing': 1.0, 'nursery': 1.0, 'stay': 1.0, 'liked': 2.0, 'for': 1.0, 'idea': 1.0, 'am': 1.0, 'when': 2.0, 'daughter': 2.0, 'a': 1.0, 's': 2.0, 'shopping': 1.0, 'born': 1.0, 'summer': 1.0, 'soon': 1.0, 'and': 11.0, 'the': 15.0, 'wake': 1.0, 'of': 5.0, 'torn': 1.0, 'type': 1.0, 'brand': 2.0, 'because': 1.0, 'breathable': 2.0, 'work': 1.0, 'pregnant': 1.0, 'but': 2.0, 'my': 2.0, 'turn': 1.0, 'in': 3.0, 'beginning': 1.0, 'to': 5.0, 'as': 4.0, 'screams': 1.0, 'little': 1.0, 'very': 2.0, 'under': 1.0, 'possible': 1.0, 'months': 1.0, 'one': 2.0, 'cool': 1.0, 'bought': 2.0, 'she': 2.0, 'it': 4.0, 'while': 2.0, 'looked': 1.0, 'put': 1.0, 'on': 1.0, 'crib': 2.0}
Word element => {'stuck': 1.0, 'once': 1.0, 'leg': 1.0, 'her': 1.0, 'hasn': 1.0, 'my': 1.0, 'material': 1.0, 'daughter': 1.0, 'corner': 1.0, 'each': 1.0, 'since': 1.0, 'keep': 1.0, 'at': 1.0, 'color': 1.0, 'months': 1.0, 't': 1.0, 'a': 2.0, 'gone': 1.0, 'brighter': 1.0, 'goo': 1.0, 'removed': 1.0, 'double': 1.0, 'manufacturer': 1.0, 'inch': 1.0, 'slatted': 1.0, 'place': 1.0, 'the': 8.0, 'dollars': 1.0, 'crossed': 1.0, 'sided': 1.0, 'arrived': 1.0, 'remove': 1.0, 'it': 5.0, 'soft': 1.0, 'this': 3.0, 'pink': 1.0, 'with': 3.0, 'ordered': 1.0, 'worth': 1.0, 'taller': 1.0, 'saw': 1.0, 'gotten': 1.0, 'extra': 1.0, 'is': 5.0, 'and': 2.0, 'fingers': 1.0, 'was': 1.0, 'to': 4.0, 'so': 2.0, 'however': 1.0, 'i': 5.0, 'list': 1.0, 'should': 1.0, 'measurements': 1.0, 'tape': 1.0, 'happy': 1.0, 'somewhere': 1.0, 'in': 3.0, 'cribs': 1.0, 'post': 1.0, 'install': 1.0, 'product': 2.0, 'few': 2.0, 'avoid': 1.0, 'thanks': 1.0, 'easily': 1.0, '11': 1.0, 'when': 2.0, 'injury': 1.0, 'easy': 1.0, 'installed': 1.0, 'than': 1.0, 'standard': 1.0, 'does': 1.0, 'bumper': 2.0, 'down': 1.0, 'used': 1.0, 'slip': 1.0, 'some': 1.0}
Word element => {'option': 1.0, 'healthy': 1.0, 'safe': 1.0, 'also': 1.0, 'cushioning': 1.0, 'has': 1.0, 'legs': 1.0, 'very': 2.0, 'little': 2.0, 'keeps': 1.0, 'great': 1.0, 'works': 1.0, 'now': 1.0, 'couple': 1.0, 'opinion': 1.0, 'for': 2.0, 'used': 1.0, 'have': 1.0, 'this': 2.0, 'get': 1.0, 'her': 1.0, 'arms': 1.0, 'both': 1.0, 'even': 1.0, 'got': 1.0, 'had': 1.0, 'was': 1.0, 'all': 2.0, 'to': 1.0, 'i': 5.0, 'night': 2.0, '3': 1.0, 'old': 1.0, 'realized': 1.0, 'soundly': 1.0, 'want': 1.0, 'way': 1.0, 'it': 3.0, 'she': 2.0, 'month': 1.0, 'is': 2.0, 'sleeps': 1.0, 'shifted': 1.0, 'waking': 1.0, 'months': 1.0, 'decided': 1.0, 'through': 3.0, 'each': 1.0, 'too': 1.0, 'and': 7.0, 'over': 1.0, 'up': 1.0, 'my': 2.0, 'the': 8.0, 'arm': 1.0, 'or': 2.0, 'leg': 1.0, 'they': 1.0, 'slats': 1.0, 'crib': 3.0, 'in': 4.0, 'did': 1.0, 'not': 1.0, 'breathable': 1.0, 'because': 1.0, 'know': 1.0, 'a': 4.0, 'thick': 1.0, 'bumper': 1.0, 'suffocate': 1.0, 'plush': 1.0, 'can': 1.0, 'that': 1.0, 'time': 1.0, 'so': 1.0}
Word element => {'great': 1.0, 'it': 2.0, 'this': 3.0, 'with': 2.0, 'color': 1.0, 'my': 1.0, 'pleased': 1.0, 'idea': 1.0, 'am': 1.0, 'origional': 1.0, 'breathable': 1.0, 'happening': 1.0, 'bumpers': 1.0, 'i': 3.0, 'bumper': 3.0, 'purchased': 1.0, 'up': 1.0, 'really': 2.0, 'green': 1.0, 'and': 2.0, 'did': 1.0, 'getting': 1.0, 'which': 1.0, 'like': 1.0, 'from': 1.0, 'an': 1.0, 'job': 1.0, 'whoever': 1.0, 'the': 4.0, 'sytles': 1.0, 'put': 1.0, 'on': 1.0, 'alternative': 1.0, 'crib': 2.0, 'for': 1.0, 'was': 2.0, 'as': 1.0, 'to': 1.0, 'easy': 1.0, 'helps': 1.0, 'baby': 1.0, 'in': 2.0, 'stuck': 1.0, 'preventing': 1.0, 'came': 1.0, 'a': 2.0, 's': 4.0, 'of': 2.0, 'leg': 1.0, 'safer': 1.0, 'arm': 1.0, 'slat': 1.0, 'before': 1.0}
Word element => {'install': 1.0, 'easy': 1.0, 'liner': 1.0, 'suffocate': 1.0, 'nothing': 1.0, 'purchased': 1.0, 'keeping': 1.0, 'by': 1.0, 'in': 2.0, 'order': 1.0, 'so': 1.0, 'legs': 1.0, 'safe': 1.0, 'at': 1.0, 'transitioned': 1.0, 'works': 1.0, 'his': 2.0, 'sticking': 1.0, 'this': 1.0, 'with': 1.0, 'as': 2.0, 'son': 1.0, 'well': 1.0, 'a': 1.0, 'early': 1.0, 'keep': 1.0, 'problem': 1.0, 'yes': 1.0, 'was': 1.0, 'to': 2.0, 'had': 1.0, 'three': 1.0, 'crib': 2.0, 'ensuring': 1.0, 'and': 2.0, 'arms': 1.0, 'our': 1.0, 'out': 1.0, 'of': 1.0, 'great': 1.0, 'the': 2.0, 'appendages': 1.0, 'weeks': 1.0, 'we': 2.0, 'would': 1.0, 'him': 3.0}
Word element => {'install': 1.0, 'easy': 1.0, 'are': 1.0, 'suffocate': 1.0, 'quite': 1.0, 'do': 1.0, 'which': 1.0, 'over': 1.0, 'if': 1.0, 'that': 1.0, 'knowing': 1.0, 'night': 1.0, 'made': 1.0, 'guys': 1.0, 'cribs': 2.0, 'other': 2.0, 'standard': 1.0, 'differently': 1.0, 'they': 4.0, 'while': 1.0, 'bumpers': 1.0, 'small': 1.0, 'born': 1.0, 'however': 1.0, 'roll': 1.0, 'these': 1.0, 'the': 1.0, 'were': 2.0, 'well': 2.0, 'won': 1.0, 'easier': 1.0, 'of': 1.0, 'labeled': 1.0, 'said': 2.0, 'one': 4.0, 'i': 3.0, 'twins': 1.0, 'when': 1.0, 'and': 1.0, 'too': 1.0, 'graco': 1.0, 'often': 1.0, 'fits': 2.0, 'my': 4.0, 'was': 2.0, 'purchased': 1.0, 'had': 1.0, 'fit': 2.0, 'say': 1.0, 'around': 1.0, 'slightly': 1.0, 'crib': 1.0, 'very': 1.0, 'slatted': 1.0, 'little': 2.0, 't': 1.0, 'a': 2.0, 'way': 1.0, 'return': 1.0, 'soft': 1.0, 'this': 3.0, 'perfect': 1.0, 'needless': 1.0, '2': 1.0, 'can': 1.0, 'as': 2.0, 'all': 1.0, 'to': 4.0, 'sleep': 1.0, 'at': 1.0}
Word element => {'plain': 1.0, 'not': 1.0, 'looks': 1.0, 'still': 1.0, 'after': 1.0, 'nice': 1.0, 'bumpers': 1.0, 'easy': 1.0, '3rd': 1.0, 'crib': 2.0, 'for': 2.0, 'using': 1.0, 'bought': 1.0, 'product': 2.0, 'children': 1.0, 'first': 1.0, 'this': 2.0, 'my': 2.0, 'traditional': 1.0, 'the': 1.0, 'made': 1.0, 'child': 1.0, 'i': 1.0, 'two': 1.0, 'has': 1.0, 'rest': 1.0, 'me': 1.0, 'and': 2.0}
Word element => {'ago': 1.0, 'much': 1.0, 'liner': 1.0, 'product': 1.0, 'breathable': 1.0, 'so': 2.0, 'in': 1.0, 'mesh': 1.0, 'a': 1.0, 'them': 1.0, 'great': 1.0, 'the': 1.0, 'better': 1.0, 'is': 1.0, 'many': 1.0, 'ways': 1.0, 'than': 1.0, 'have': 1.0, 'someone': 1.0, 'should': 1.0, 'crib': 1.0, 'invented': 1.0, 'before': 1.0, 'long': 2.0}
Word element => {'bumpers': 1.0, 'with': 1.0, 'startle': 1.0, 'but': 2.0, 'hurt': 1.0, 'someone': 1.0, 'does': 3.0, 'breathable': 1.0, 'not': 2.0, 'rails': 1.0, 'legs': 1.0, 'enough': 1.0, 'slide': 1.0, 'from': 1.0, 'and': 2.0, 'arms': 1.0, 'onto': 1.0, 'be': 1.0, 'turns': 1.0, 'without': 1.0, 'allowing': 2.0, 'parts': 1.0, 'every': 1.0, 'through': 1.0, 'material': 2.0, 'while': 1.0, 'facing': 2.0, 'fail': 1.0, 'son': 1.0, 'seem': 1.0, 'who': 1.0, 'three': 1.0, 'so': 1.0, 'pretty': 1.0, 'to': 8.0, 'outside': 1.0, 'our': 1.0, 'as': 1.0, 'in': 1.0, 'month': 1.0, 'him': 2.0, 'it': 5.0, 'side': 3.0, 'is': 4.0, 'more': 1.0, 'a': 4.0, 'then': 1.0, 'we': 1.0, 'have': 1.0, 'wiggler': 1.0, 'crib': 5.0, 'his': 3.0, 'almost': 1.0, 'this': 3.0, 'he': 4.0, 'the': 12.0, 'of': 3.0, 'once': 1.0, 'night': 1.0, 'baby': 1.0, 'old': 1.0, 'migrates': 1.0, 'easy': 1.0, 'bumper': 1.0, 'inside': 2.0, 'suffocate': 1.0, 'keeps': 1.0, 'there': 1.0, 'are': 1.0, 'two': 1.0, 'move': 1.0, 'become': 1.0, 'gets': 1.0, 'layers': 1.0, 'cannot': 2.0, 'very': 1.0, 'over': 1.0, 'open': 1.0, 'up': 1.0, 'mesh': 2.0, 'edge': 1.0, 'finer': 1.0, 'for': 1.0, 'safer': 1.0, 'sucks': 1.0, 'thick': 1.0, 'on': 1.0, 'install': 1.0, 'climbing': 1.0, 'well': 1.0, 'all': 1.0, 'an': 1.0, 'alternative': 1.0, 'assistant': 1.0, 'infant': 1.0, 'older': 1.0, 'boy': 1.0, 'either': 1.0, 'because': 1.0, 'that': 1.0, 'glad': 1.0, 'came': 1.0}
Word element => {'be': 1.0, 'this': 2.0, 'it': 1.0, 'son': 1.0, 'waking': 1.0, 'my': 1.0, 'that': 1.0, 'easier': 1.0, 'were': 1.0, 'knowing': 1.0, 'little': 2.0, 'slats': 1.0, 'crib': 1.0, 'i': 4.0, 'night': 1.0, 'took': 1.0, 'projected': 1.0, 'when': 1.0, 'glad': 1.0, 'at': 1.0, 'was': 1.0, 'finally': 1.0, 'so': 1.0, 'a': 2.0, 't': 1.0, 'the': 3.0, 'slept': 1.0, 'one': 1.0, 'product': 1.0, 'love': 1.0, 'of': 3.0, 'his': 1.0, 'what': 1.0, 'limbs': 1.0, 'wouldn': 1.0, 'got': 1.0, 'sticking': 1.0, 'out': 1.0, 'bumper': 2.0, 'longer': 1.0, 'amazon': 1.0, 'get': 1.0, 'because': 1.0, 'than': 1.0, 'but': 1.0, 'to': 1.0, 'all': 2.0, 'in': 1.0}
Word element => {'has': 1.0, 'that': 1.0, 'recommend': 1.0, 'would': 1.0, 'i': 1.0, 'bars': 2.0, 'crib': 2.0, 'anyone': 1.0, 'in': 1.0, 'stuck': 1.0, 'foot': 1.0, 'or': 1.0, 'hand': 1.0, 'a': 2.0, 'could': 1.0, 'assembly': 1.0, 'definitely': 1.0, 'online': 1.0, 'but': 1.0, 'just': 1.0, 'as': 1.0, 'get': 1.0, 'and': 1.0, 'to': 1.0, 'was': 2.0, 'color': 1.0, 'the': 4.0, 'we': 1.0, 'got': 1.0, 'bumper': 1.0, 'confusing': 1.0, 'when': 1.0, 'helps': 1.0, 'baby': 1.0, 'is': 1.0, 'with': 1.0, 'looked': 1.0, 'it': 2.0, 'this': 2.0, 'moving': 1.0, 'around': 1.0}
Word element => {'bed': 1.0, 'convertable': 1.0, 'crib': 1.0, 's': 1.0, 'my': 1.0, 'son': 1.0, 'on': 2.0, 'it': 2.0, 'i': 1.0, 'still': 1.0, 'to': 1.0, 'his': 1.0, 'color': 1.0, 'easy': 1.0, 'use': 2.0, 'very': 1.0, 'and': 2.0, 'toddler': 1.0, 'nice': 1.0, 'a': 1.0, 'neutral': 1.0, 'used': 1.0}
Word element => {'t': 1.0, 'couldn': 1.0, 'upside': 1.0, 'we': 2.0, 'going': 1.0, 'a': 4.0, 's': 1.0, 'directions': 1.0, 'crib': 2.0, 'over': 2.0, 'after': 2.0, 'ends': 1.0, 'fitting': 1.0, 'with': 2.0, 'awful': 1.0, 'an': 1.0, 'package': 1.0, 'excitedly': 1.0, 'realized': 1.0, 'amazon': 1.0, 'brought': 1.0, 'not': 1.0, 'wrong': 2.0, 'magazine': 1.0, 'breathable': 1.0, 'purchased': 1.0, 'had': 3.0, 'possibly': 1.0, 'bumper': 5.0, 'down': 1.0, 'i': 4.0, 'handling': 1.0, 'and': 6.0, 'that': 2.0, 'their': 1.0, 'time': 1.0, 'target': 1.0, 'parent': 1.0, 'advertised': 1.0, 'but': 1.0, 'thought': 1.0, 'it': 7.0, 'secures': 1.0, 'my': 2.0, 'looks': 1.0, 'to': 2.0, 'ticked': 1.0, 'was': 3.0, 'saw': 1.0, 'sewn': 1.0, 'online': 1.0, 'idea': 1.0, 'fantastic': 1.0, 'since': 1.0, 'rolling': 1.0, 'lot': 1.0, 'side': 1.0, 'made': 1.0, 'researched': 1.0, 'on': 3.0, 'put': 1.0, 'waited': 1.0, 'number': 1.0, 'the': 18.0, 'of': 3.0, 'properly': 1.0, 'ribbon': 2.0, 'weeks': 1.0, 'now': 1.0, 'before': 1.0, 'taking': 1.0, 'products': 1.0, 'product': 1.0, 'out': 1.0, 'securing': 1.0, 'lost': 1.0, 'so': 1.0, 'receipt': 1.0, 'there': 1.0, 'slats': 1.0, 'no': 1.0, 'returning': 1.0, 'suffocate': 1.0, 'best': 1.0, 'in': 2.0, 'm': 1.0, 'mesh': 1.0, 'facing': 1.0, 'gets': 1.0, 'way': 1.0, 'frayed': 1.0, 'first': 1.0, 'she': 1.0, 'baby': 1.0, 'at': 1.0, 'is': 2.0, 'around': 1.0, 'husband': 1.0, 'more': 1.0, 'her': 1.0, 'home': 1.0, 'pushed': 1.0, 'terrible': 1.0}
Word element => {'design': 1.0, 'needs': 1.0, 'top': 1.0, 's': 1.0, 'from': 1.0, 'velcro': 1.0, 'this': 3.0, 'with': 1.0, 'next': 1.0, 'bumper': 5.0, 'down': 1.0, 'her': 3.0, 'ribbons': 1.0, 'old': 1.0, 'bassinet': 1.0, 'yes': 1.0, 'hanging': 1.0, 'the': 9.0, 'crib': 2.0, 'in': 2.0, 'also': 1.0, 'for': 1.0, 'was': 2.0, '3': 1.0, 'put': 1.0, 'by': 1.0, 'baby': 1.0, 'months': 1.0, 'too': 1.0, 'and': 2.0, 'tall': 1.0, 'trapped': 1.0, 'about': 1.0, 'thing': 1.0, 'is': 1.0, 'of': 1.0, 'than': 1.0, 'changes': 1.0, 'louder': 1.0, 'under': 2.0, 'crying': 1.0, 'foot': 1.0, 'rim': 1.0, 'some': 1.0, 'already': 1.0, 'rides': 1.0, 'lower': 1.0, 'theading': 1.0, 'slats': 1.0, 'usual': 1.0, 'between': 1.0, 'she': 1.0, 'solved': 1.0, 'problem': 1.0, 'i': 2.0, 'two': 1.0}
Word element => {'leg': 1.0, 'arm': 1.0, 'an': 1.0, 'e': 1.0, 'himself': 1.0, 'him': 1.0, 'sleeps': 1.0, 'keeps': 1.0, 'so': 1.0, 'his': 1.0, 'lot': 1.0, 'through': 1.0, 'squirms': 1.0, 'while': 1.0, 'hurting': 1.0, 'place': 1.0, 'breathable': 1.0, 'recommended': 1.0, 'the': 1.0, 'my': 1.0, 'a': 2.0, 'not': 2.0, 'bumper': 2.0, 'in': 2.0, 'squeezing': 1.0, 'though': 1.0, 'slats': 1.0, 'crib': 2.0, 'i': 2.0, 'liked': 1.0, 'one': 1.0, 'that': 2.0, 'he': 2.0, 'older': 1.0, 'it': 1.0, 'this': 2.0, 'to': 1.0, 'was': 2.0, 'now': 1.0, 'from': 1.0, 'son': 1.0, 'is': 1.0}
Word element => {'just': 1.0, 'its': 1.0, 'pull': 1.0, 'being': 1.0, 'him': 1.0, 'about': 1.0, 'm': 1.0, 'very': 1.0, 'is': 1.0, 'velcro': 1.0, 'difference': 1.0, 'made': 1.0, 'hasn': 1.0, 'use': 1.0, 'and': 1.0, 'concerned': 1.0, 'stuck': 1.0, 'in': 1.0, 'get': 1.0, 'leg': 1.0, 'able': 1.0, 'sliding': 2.0, 'however': 1.0, 'so': 2.0, 'opted': 1.0, 'or': 1.0, 'ribbons': 1.0, 'good': 1.0, 'i': 5.0, 'not': 2.0, 'pulled': 1.0, 'the': 9.0, 'tight': 1.0, 'my': 1.0, 'often': 1.0, 'for': 1.0, 'guidelines': 1.0, 'crib': 2.0, 'between': 1.0, 'slats': 2.0, 've': 1.0, 'would': 1.0, 'following': 1.0, 'safety': 1.0, 'arm': 1.0, 'did': 1.0, 'sons': 1.0, 'keep': 1.0, 'strong': 1.0, 'put': 1.0, 'can': 1.0, 'but': 3.0, 'this': 1.0, 'annoying': 1.0, 'it': 5.0, 'breathable': 1.0, 'secure': 1.0, 'happening': 1.0, 't': 1.0, 'a': 2.0, 's': 1.0, 'enough': 1.0, 'top': 2.0, 'as': 2.0, 'to': 5.0, 'into': 1.0, 'that': 2.0, 'from': 1.0, 'keeps': 2.0, 'bumper': 3.0, 'down': 2.0, 'causing': 1.0, 'bunch': 1.0}
Word element => {'using': 1.0, 'safe': 1.0, 'in': 1.0, 'legs': 1.0, 'arms': 1.0, 'other': 1.0, 'there': 1.0, 'keep': 1.0, 'since': 1.0, 'still': 1.0, 'it': 3.0, 'modifying': 1.0, 'this': 1.0, 'statements': 1.0, 'triple': 1.0, 'wrap': 1.0, 'the': 7.0, 'that': 2.0, 'no': 1.0, 'despite': 1.0, 'however': 1.0, 'designed': 1.0, 'crib': 2.0, 'around': 1.0, 'is': 2.0, 'post': 1.0, 'cribs': 1.0, 'feel': 1.0, 'stretched': 1.0, 'well': 1.0, 'does': 1.0, 'one': 2.0, 'of': 1.0, 'up': 1.0, 'open': 1.0, 'and': 3.0, 'kind': 1.0, 'get': 1.0, 'not': 2.0, 'product': 1.0, 'fit': 2.0, 'oeuf': 1.0, 'bumper': 2.0, 'classic': 1.0, 'i': 6.0, 'fits': 1.0, 'company': 1.0, 'checked': 1.0, 'leaving': 1.0, 'use': 1.0, 'instructions': 2.0, 'a': 1.0, 's': 1.0, 'might': 1.0, 'could': 1.0, 'all': 1.0, 'constructed': 1.0, 'as': 1.0, 'to': 3.0, 'ended': 1.0, 'try': 1.0, 'end': 2.0, 'corner': 2.0, 'just': 1.0, 'by': 1.0}
Word element => {'would': 1.0, 'that': 1.0, 'slat': 1.0, 'last': 1.0, 'just': 1.0, 'and': 3.0, 'getting': 1.0, 'do': 1.0, 'will': 2.0, 'but': 2.0, 'recommend': 1.0, 'bumps': 1.0, 'head': 1.0, 'stop': 2.0, 'around': 1.0, 'fall': 1.0, 'these': 1.0, 'the': 5.0, 'won': 1.0, 'definitely': 1.0, 'm': 1.0, 'arms': 1.0, 'i': 4.0, 'night': 1.0, 'legs': 1.0, 'not': 1.0, 'conceive': 1.0, 'with': 2.0, 'bumpers': 1.0, 'liner': 1.0, 'of': 2.0, 'no': 1.0, 'crib': 2.0, 'they': 1.0, 'slats': 1.0, 'okay': 1.0, 'didn': 1.0, 'from': 1.0, 'stuck': 1.0, 'in': 2.0, 'make': 1.0, 'sure': 1.0, 'pacifiers': 1.0, 'out': 1.0, 'missed': 1.0, 'don': 1.0, 'middle': 1.0, 'could': 1.0, 't': 3.0, 'going': 1.0, 'a': 1.0, 'have': 1.0, 'all': 1.0, 'bigger': 1.0, 'stretch': 1.0, 'quite': 1.0, 'way': 1.0}
Word element => {'use': 1.0, 'before': 1.0, 'need': 1.0, 'first': 1.0, 'little': 1.0, 'a': 1.0, 'more': 1.0, 'of': 1.0, 'mind': 1.0, 'piece': 1.0, 'me': 1.0, 'traditional': 1.0, 'gives': 1.0, 'even': 1.0, 'happen': 1.0, 'these': 1.0, 'the': 4.0, 'then': 1.0, 'breathing': 1.0, 'able': 1.0, 'does': 1.0, 'breathable': 1.0, 'head': 1.0, 'hard': 1.0, 'also': 1.0, 'unlikely': 1.0, 'in': 1.0, 'holes': 1.0, 'they': 3.0, 'are': 3.0, 'against': 1.0, 'safe': 2.0, 'crib': 1.0, 'and': 7.0, 'protect': 1.0, 'arms': 1.0, 'if': 3.0, 'stronger': 1.0, 'bumps': 1.0, 'pacifiers': 1.0, 'them': 2.0, 'baby': 2.0, 'have': 1.0, 'rolls': 1.0, 'that': 1.0, 'into': 1.0, 'sturdy': 1.0, 'bumpers': 3.0, 'be': 3.0, 'can': 1.0, 'but': 1.0, 'washed': 1.0, 'put': 2.0, 'on': 3.0, 'to': 3.0, 'as': 1.0, 'difficult': 1.0, 'gets': 1.0, 'at': 1.0, 'keep': 1.0, 'bigger': 1.0, 'pull': 1.0, 'down': 1.0, 'tightly': 1.0, 'may': 1.0, 'tight': 1.0, 'legs': 1.0, 'enough': 1.0}
Word element => {'dreams': 1.0, 'wakes': 1.0, 'through': 1.0, 'limbs': 1.0, 'poking': 1.0, 'baby': 1.0, 'highly': 1.0, 'stays': 1.0, 'it': 1.0, 'reccomend': 1.0, 'carners': 1.0, 'up': 2.0, 'triky': 1.0, 'anyone': 1.0, 'be': 1.0, 'velcro': 1.0, 'side': 1.0, 'had': 1.0, 'was': 2.0, 'used': 1.0, 'lines': 1.0, 'he': 4.0, 'this': 3.0, 'breathe': 1.0, 'has': 1.0, 'well': 1.0, 'easier': 1.0, 'still': 1.0, 'son': 1.0, 'get': 2.0, 'and': 4.0, 'getting': 1.0, 'sweet': 1.0, 'trouble': 1.0, 'fact': 1.0, 'my': 1.0, 'i': 3.0, 've': 1.0, 'stuck': 2.0, 'in': 2.0, 'that': 2.0, 'been': 1.0, 'slats': 2.0, 'crib': 3.0, 'months': 1.0, 'put': 1.0, 'on': 2.0, 'using': 1.0, 'product': 1.0, 'for': 1.0, 'love': 1.0, 'his': 2.0, 'almost': 1.0, 'to': 4.0, 'sleep': 1.0, 'but': 1.0, 'can': 3.0, 'feet': 1.0, '16': 1.0, 'place': 1.0, 'the': 7.0, 'hands': 1.0, 'wake': 1.0, 'of': 4.0, 'screaming': 2.0, 'easily': 1.0, 'when': 1.0, 'a': 2.0, 'breath': 1.0, 'we': 1.0, 'no': 1.0, 'able': 1.0, 'knowing': 1.0, 'if': 1.0, 'bit': 1.0, 'against': 1.0}
Word element => {'we': 1.0, 'that': 1.0, 'perfectly': 1.0, 'and': 2.0, 'one': 1.0, 'has': 1.0, 'head': 1.0, 'works': 1.0, 'his': 1.0, 'still': 1.0, 'baby': 1.0, 'bumps': 1.0, 'so': 1.0, 'each': 1.0, 'wide': 1.0, 'install': 1.0, 'on': 2.0, 'side': 2.0, 'is': 1.0, 'easy': 1.0, 'but': 1.0, 'well': 1.0, 'a': 2.0, 'wood': 1.0, 'not': 1.0, 'to': 1.0, 'was': 1.0, 'bought': 1.0, 'leaves': 1.0, 'slats': 2.0, 'crib': 1.0, 'hers': 1.0, 'in': 1.0, 'with': 2.0, 'it': 3.0, 'why': 1.0, 'as': 1.0, 'fits': 1.0, 'showing': 1.0, 'shown': 1.0, 'great': 1.0, 'the': 2.0, 'friend': 1.0, 'picture': 1.0, 's': 1.0, 'concept': 1.0}
Word element => {'too': 1.0, 'falling': 1.0, 'from': 1.0, 'their': 3.0, 'side': 1.0, 'so': 1.0, 'unfortunately': 1.0, 'was': 4.0, 'did': 1.0, 'thru': 3.0, 'mean': 1.0, 'limbs': 1.0, 'always': 1.0, 'loved': 1.0, 'order': 1.0, 'allowing': 1.0, 'babies': 1.0, 'that': 1.0, 'had': 1.0, 'against': 1.0, 'to': 4.0, 'an': 1.0, 'all': 1.0, 'mom': 1.0, 'head': 1.0, 'product': 2.0, 'fit': 1.0, 'exactly': 1.0, 'this': 5.0, 'dont': 1.0, 'cribs': 2.0, 'say': 2.0, 'is': 1.0, 'around': 1.0, 'and': 3.0, 'i': 11.0, 'gotta': 1.0, 'found': 1.0, 'know': 1.0, 'a': 1.0, 'could': 1.0, 'between': 2.0, 'slats': 3.0, 'sleeping': 1.0, 'they': 4.0, 'twins': 3.0, 'what': 1.0, 'when': 2.0, 'looking': 1.0, 'crib': 2.0, 'why': 1.0, 'here': 1.0, 'space': 1.0, 'bumpers': 1.0, 'make': 2.0, 'on': 1.0, 'of': 2.0, 'the': 5.0, 'would': 2.0, 'something': 1.0, 'wind': 1.0, 'makers': 1.0, 'breathe': 1.0, 'old': 1.0, 'slipping': 1.0, 'wide': 1.0, 'worried': 1.0, 'wrapped': 1.0, 'dislocate': 1.0, 'stopped': 1.0, 'it': 4.0, '11': 1.0, 'didnt': 1.0, 'wamt': 1.0, 'anyway': 1.0, 'use': 1.0, 'are': 2.0, 'for': 3.0, 'suffocating': 1.0, 'risk': 1.0, 'works': 1.0, 'still': 2.0, 'but': 1.0, 'ordered': 1.0, 'arm': 1.0, 'wonders': 1.0, 'breathable': 2.0, 'up': 2.0, 'mesh': 2.0, 'trust': 1.0, 'my': 2.0, 'me': 1.0, 'sure': 1.0, 'months': 1.0, 'almost': 1.0, 'now': 1.0, 'hesitant': 1.0, 'have': 1.0, 'keeping': 1.0, 'toys': 1.0}
Word element => {'update': 1.0, 'amazon': 1.0, 'full': 1.0, 'a': 1.0, 'need': 2.0, 'you': 1.0, 'to': 4.0, 'from': 2.0, 'use': 2.0, 'birth': 1.0, 'liner': 1.0, 'coverage': 1.0, 'site': 1.0, 'years': 1.0, 'for': 1.0, 'description': 2.0, 'the': 4.0, 'buy': 1.0, 'i': 1.0, 'received': 1.0, 'item': 1.0, 'and': 1.0, 'says': 2.0, '34': 2.0, 'there': 1.0, 'up': 1.0, 'it': 1.0, '9': 1.0, '3': 1.0, 'otherwise': 1.0, 'on': 1.0, 'months': 1.0}
Word element => {'better': 1.0, 'something': 1.0, 'in': 1.0, 'stuck': 1.0, 'thighs': 1.0, 'legs': 1.0, 'baby': 1.0, 'poor': 1.0, 'due': 1.0, 'look': 1.0, 'to': 2.0, 'still': 1.0, 'kid': 1.0, 'the': 1.0, 'these': 1.0, 'gets': 1.0, 'there': 1.0, 'up': 1.0, 'of': 1.0, 'for': 1.0, 'one': 1.0, 'old': 1.0, 'i': 1.0, 'year': 1.0, 'ratings': 1.0, 'got': 1.0, 'my': 1.0, 'high': 1.0, 'is': 1.0, '1': 1.0, 'and': 3.0, 'pushes': 1.0, 'piece': 1.0, 'her': 2.0, 'down': 1.0}
Word element => {'solid': 1.0, 'sides': 1.0, 'only': 1.0, 'around': 1.0, 'very': 1.0, 'all': 1.0, 'have': 1.0, 'needed': 1.0, 'girls': 1.0, 'style': 1.0, 'on': 1.0, 'be': 1.0, 'can': 1.0, 'and': 4.0, 'arms': 1.0, 'i': 3.0, 'any': 1.0, 'baby': 1.0, 'keep': 1.0, 'liners': 1.0, 'little': 1.0, 'crib': 3.0, 'breathable': 1.0, 'was': 1.0, 'to': 1.0, 'designed': 1.0, 'they': 3.0, 'one': 2.0, 'love': 1.0, 'way': 2.0, 'cribs': 1.0, 'different': 1.0, 'legs': 1.0, 'because': 1.0, 'not': 1.0, 'back': 1.0, 'inside': 1.0, 'these': 1.0, 'the': 6.0, 'my': 2.0, 'are': 1.0, 'second': 1.0, 'is': 1.0, 'front': 1.0, 'a': 1.0, 'used': 2.0, 'hazard': 1.0}
Word element => {'legs': 2.0, 'and': 2.0, 'poke': 1.0, 'get': 1.0, 'crib': 2.0, 'in': 1.0, 'stuck': 2.0, 'that': 1.0, 'old': 1.0, 'i': 2.0, 'his': 3.0, 'down': 1.0, 'of': 1.0, 'with': 1.0, '6': 1.0, 'he': 2.0, 'out': 3.0, 'rolls': 1.0, 'our': 1.0, 'to': 2.0, 'was': 1.0, 'well': 1.0, 'wants': 1.0, 'gets': 1.0, 'when': 1.0, 'for': 1.0, 'love': 1.0, 'normally': 1.0, 'it': 3.0, 'month': 1.0, 'works': 1.0, 'happens': 1.0, 'between': 1.0, 'the': 3.0, 'bars': 1.0, 'no': 1.0, 'pull': 1.0, 'peek': 1.0, 'can': 1.0, 'but': 1.0, 'this': 1.0, 'dont': 1.0, 'which': 1.0, 'around': 1.0, 'more': 1.0, 'is': 1.0, 'goal': 1.0, 'aiming': 1.0}
Word element => {'wish': 1.0, 'works': 1.0, 'said': 1.0, 'sids': 1.0, 'suffocating': 1.0, 'rebreathing': 1.0, 'about': 1.0, 'worry': 1.0, 'than': 1.0, 'rather': 1.0, 'tucked': 1.0, 'stays': 1.0, 'from': 1.0, 'bumping': 1.0, 'prevent': 1.0, 'corners': 1.0, 'nights': 1.0, 'most': 1.0, 'corner': 1.0, 'into': 1.0, 'has': 2.0, 'son': 1.0, 'much': 1.0, 'visible': 1.0, 'ago': 1.0, 'fairly': 2.0, 'likes': 1.0, 'problem': 2.0, 'touch': 2.0, 'sides': 1.0, 'long': 1.0, 'on': 4.0, 'short': 2.0, 'head': 1.0, 'material': 2.0, 'fasteners': 2.0, 'be': 2.0, 'it': 11.0, 'product': 1.0, 'cons': 1.0, 'some': 2.0, 'never': 1.0, 'my': 1.0, 'are': 6.0, 'first': 1.0, 'there': 2.0, 'easy': 1.0, 'know': 1.0, 'dangerous': 1.0, 'top': 1.0, 'mattress': 1.0, 'week': 1.0, 'single': 1.0, 'not': 3.0, 'waking': 1.0, 'have': 5.0, 'had': 2.0, 'cut': 1.0, 'so': 2.0, 'day': 1.0, 'since': 2.0, 'other': 1.0, 'an': 2.0, 'arm': 2.0, 'well': 1.0, 'we': 4.0, 'a': 11.0, 'imagine': 2.0, 'to': 19.0, 'lie': 1.0, 'as': 1.0, 'leave': 1.0, 'look': 1.0, 'is': 2.0, 'textured': 1.0, 'with': 2.0, 'picture': 1.0, 'description': 1.0, 'our': 1.0, 'deliberately': 1.0, 'serve': 1.0, 'options': 1.0, 'sleep': 1.0, 'grab': 1.0, 'yes': 2.0, 'see': 1.0, 'rolling': 1.0, 't': 1.0, 'rate': 1.0, 'because': 2.0, 'easily': 3.0, 'that': 2.0, '34': 2.0, 'swaddling': 1.0, 'would': 8.0, 'ribbon': 1.0, 'this': 6.0, 'pain': 1.0, 'side': 1.0, 'bed': 1.0, 'co2': 1.0, 'the': 25.0, 'change': 1.0, 'major': 1.0, 'whether': 1.0, 'three': 1.0, 'month': 1.0, 'same': 1.0, 'definitely': 1.0, 'shown': 1.0, 'advertising': 1.0, 'buy': 1.0, 'specifically': 1.0, 'satin': 1.0, 'even': 1.0, 'of': 6.0, 'old': 1.0, 'edged': 1.0, 'night': 2.0, 'installing': 2.0, 'you': 2.0, 'or': 1.0, 'was': 4.0, 'disappointed': 1.0, 'recommend': 1.0, 'mobile': 1.0, 'got': 1.0, 'one': 2.0, '5': 1.0, 'getting': 1.0, 'panicking': 1.0, 'his': 5.0, 'each': 1.0, 'around': 1.0, 'panicky': 1.0, 'stuck': 1.0, 'based': 1.0, 'in': 9.0, 'm': 2.0, 'they': 5.0, 'between': 1.0, 'tends': 1.0, 'falling': 1.0, 'slats': 1.0, 'no': 1.0, 'traditional': 1.0, 'crib': 2.0, 'helped': 1.0, 'several': 1.0, 'down': 1.0, 'again': 2.0, 'states': 1.0, 'consider': 1.0, 'times': 1.0, 'exterior': 1.0, 'stop': 1.0, 'keep': 1.0, 'place': 2.0, 'but': 4.0, 'don': 1.0, 'super': 1.0, 'still': 1.0, 'located': 1.0, 've': 1.0, 'while': 1.0, 'ends': 2.0, 'baby': 2.0, 'could': 1.0, 'attaches': 1.0, 'lining': 1.0, 'will': 1.0, 'able': 1.0, 'however': 2.0, 'inconvenience': 1.0, 'get': 3.0, 'more': 4.0, 'babies': 1.0, 'apt': 1.0, 'uses': 1.0, 'velcro': 2.0, 'secure': 1.0, 'say': 1.0, 'further': 1.0, 'these': 1.0, 'been': 3.0, 'him': 2.0, 'ties': 4.0, 'he': 2.0, 'necessary': 1.0, 'equally': 1.0, 'does': 1.0, 'up': 3.0, 'install': 1.0, 'purpose': 1.0, 'also': 1.0, 'y': 1.0, 'avoid': 1.0, 'like': 3.0, 'and': 11.0, 'just': 2.0, 'oversight': 1.0, 'at': 3.0, 'bait': 1.0, 'pull': 1.0, 'i': 16.0, 'finally': 1.0, 'seems': 1.0, 'true': 1.0, 'for': 1.0, 'front': 1.0, 'bumpers': 1.0, 'used': 1.0, 'make': 1.0, 'very': 1.0, 'hard': 1.0, 'out': 2.0, 'way': 1.0, 'all': 2.0, 'sheets': 2.0, 'back': 2.0, 'worked': 1.0, 'bunch': 1.0, 'go': 1.0, 'before': 1.0, 'minor': 1.0, 'sheet': 1.0, 'putting': 1.0, 'quite': 1.0, 'spit': 1.0, 'next': 1.0, 'extra': 1.0, 'hassle': 1.0, 'otherwise': 1.0, 'mother': 1.0, 'though': 1.0, 'bumper': 5.0, 'by': 1.0, 'after': 1.0}
Word element => {'crib': 1.0, 'against': 1.0, 'doesn': 1.0, 'boy': 1.0, 'lil': 2.0, 'especially': 1.0, 'satisfied': 1.0, 'guy': 1.0, 'my': 2.0, 'so': 1.0, 'head': 1.0, 'worry': 1.0, 'bumper': 1.0, 't': 2.0, 'have': 1.0, 'his': 2.0, 'does': 1.0, 'love': 1.0, 'with': 1.0, 'this': 1.0, 'it': 2.0, 'awesome': 1.0, 'that': 1.0, 'anymore': 1.0, 's': 1.0, 'mesh': 1.0, 'don': 1.0, 'its': 1.0, 'to': 1.0, 'bump': 1.0, 'definitely': 1.0, 'very': 1.0}
Word element => {'way': 1.0, 'wrong': 1.0, 'up': 1.0, 'generation': 1.0, 'at': 2.0, 'not': 1.0, 'would': 1.0, 'didn': 1.0, 'crib': 1.0, 'all': 2.0, 'have': 1.0, 'fit': 1.0, 'the': 2.0, 't': 1.0, 'we': 2.0, 'our': 1.0, 'next': 1.0, 'from': 1.0, 'baby': 1.0, 'dream': 1.0, 'it': 2.0, 'rig': 1.0, 'fitting': 1.0, 'was': 1.0, 'had': 1.0, 'to': 1.0}
Word element => {'shape': 1.0, 'still': 1.0, 'several': 1.0, 'have': 1.0, 'easy': 1.0, 'very': 1.0, 'it': 4.0, 'see': 1.0, 'times': 1.0, 'you': 1.0, 'and': 4.0, 'do': 1.0, 'him': 1.0, 'washed': 1.0, 'put': 1.0, 'on': 2.0, 'crawl': 1.0, 'check': 1.0, 'i': 3.0, 'so': 1.0, 'screaming': 1.0, 'night': 1.0, 'baby': 1.0, 'in': 2.0, 'crib': 1.0, 'through': 2.0, 's': 2.0, 'a': 1.0, 't': 1.0, 'the': 4.0, 'great': 2.0, 'he': 2.0, 'this': 1.0, 'sleeping': 1.0, 'my': 1.0, 'push': 1.0, 'because': 1.0, 'around': 1.0, 'caught': 1.0, 'me': 1.0, 'not': 1.0, 'his': 1.0, 'arm': 1.0, 'or': 1.0, 'wake': 1.0, 'leg': 1.0, 'pediatricians': 1.0, 'was': 2.0, 'had': 1.0, 'wasn': 1.0, 'rails': 1.0, 'use': 1.0, 'bumper': 1.0, 'to': 3.0, 'pads': 1.0, 'can': 1.0, 'but': 1.0, 'would': 3.0, 'something': 1.0, 'safe': 1.0, 'alternative': 1.0}
Word element => {'our': 1.0, 'well': 1.0, 'and': 1.0, 'very': 1.0, 'it': 1.0, 'can': 1.0, 'works': 1.0, 'one': 1.0, 'don': 1.0, 'off': 1.0, 'baby': 1.0, 'shaped': 1.0, 'we': 1.0, 'pull': 1.0, 'this': 1.0, 't': 2.0, 'fit': 1.0, 'have': 1.0, 'bumpers': 1.0, 'but': 1.0, 'the': 1.0, 'oddly': 1.0, 'crib': 1.0}
Word element => {'bumper': 1.0, 'in': 1.0, 'regular': 1.0, 'by': 1.0, 'sids': 1.0, 'risk': 1.0, 'increasing': 1.0, 'problem': 1.0, 'has': 1.0, 'without': 1.0, 'the': 4.0, 'these': 1.0, 'of': 3.0, 'slats': 1.0, 'crib': 2.0, 'i': 2.0, 'arms': 1.0, 'and': 2.0, 'get': 1.0, 'getting': 1.0, 'attractive': 1.0, 'had': 1.0, 'was': 2.0, 'stuck': 1.0, 'functional': 1.0, 'wish': 1.0, 'this': 1.0, 'with': 1.0, 'nicer': 1.0, 'outside': 1.0, 'to': 2.0, 'our': 1.0, 'were': 1.0, 'having': 1.0, 'because': 1.0, 'maybe': 1.0, 'looking': 1.0, 'we': 1.0, 'a': 3.0, 'her': 1.0, 'decorative': 1.0, 'able': 1.0, 'legs': 1.0, 'trim': 1.0, 'made': 1.0, 'out': 1.0, 'better': 1.0, 'if': 1.0, 'solved': 1.0, 'it': 3.0, 'higher': 1.0, 'baby': 1.0, 'quality': 1.0, 'but': 1.0, 'ribbon': 1.0, 'would': 1.0, 'be': 1.0, 'rate': 1.0, 'more': 1.0, 'is': 1.0}
Word element => {'finding': 1.0, 'for': 2.0, 'great': 1.0, 'the': 2.0, 'had': 1.0, 'wanted': 1.0, 'was': 2.0, 'gift': 1.0, 'works': 1.0, 'what': 1.0, 'i': 2.0, 'guess': 1.0, 'just': 1.0, 'perfect': 1.0, 'is': 1.0, 'time': 1.0, 'a': 2.0, 'match': 1.0, 'right': 1.0, 'color': 1.0, 'nursery': 1.0, 'shower': 1.0, 'this': 2.0, 'hard': 1.0, 'it': 1.0}
Word element => {'suffocating': 1.0, 'worry': 1.0, 'have': 1.0, 'anymore': 1.0, 'about': 1.0, 'don': 2.0, 'challenge': 1.0, 'bit': 1.0, 'a': 2.0, 'to': 1.0, 'was': 1.0, 'which': 1.0, 'grandkids': 1.0, 'bought': 1.0, 'their': 1.0, 'for': 1.0, 'stuck': 2.0, 'in': 1.0, 'they': 2.0, 'of': 2.0, 'sleeping': 1.0, 'my': 1.0, 't': 2.0, 'these': 1.0, '2': 1.0, 'the': 1.0, 'while': 1.0, 'i': 2.0, 'them': 2.0, 'and': 1.0, 'get': 1.0, 'getting': 1.0, 'installing': 1.0, 'legs': 1.0, 'kept': 1.0, 'after': 1.0, 'twin': 1.0, 'slats': 1.0}
Word element => {'up': 1.0, 'hold': 1.0, 'sucker': 1.0, 'panel': 1.0, 'paper': 1.0, 'step': 1.0, 'includes': 1.0, 'says': 2.0, 'worried': 1.0, 'life': 1.0, 'people': 1.0, 'short': 1.0, 'confusing': 2.0, 'be': 4.0, 'here': 1.0, 'package': 1.0, 'rest': 1.0, 'ends': 1.0, 'will': 1.0, 'could': 1.0, 'a': 3.0, 's': 1.0, 'one': 1.0, 'directions': 3.0, 'huh': 1.0, 'hard': 2.0, 'while': 1.0, 'well': 2.0, 'i': 5.0, 'actually': 1.0, 'for': 2.0, 'seriously': 1.0, 'saying': 1.0, 'scratching': 1.0, 'long': 1.0, 'on': 4.0, 'probably': 1.0, 'your': 1.0, 'other': 2.0, '2': 1.0, 'but': 2.0, 'read': 1.0, 'little': 1.0, 'darn': 1.0, 'about': 2.0, 'panels': 1.0, 'velcro': 1.0, 'and': 6.0, 'need': 1.0, 'bumper': 3.0, 'with': 1.0, 'this': 2.0, 'pictures': 1.0, 'of': 2.0, 'the': 13.0, 'doing': 1.0, 'was': 2.0, 'pretty': 2.0, 'fixed': 1.0, 'to': 2.0, 'as': 1.0, 'how': 2.0, 'our': 1.0, 'install': 1.0, 'were': 2.0, 'heads': 1.0, 'that': 2.0, 'it': 4.0, 'thought': 1.0, 'dear': 1.0, 'even': 1.0, 'got': 1.0, 'using': 2.0, 'reference': 1.0, 'looks': 1.0, 'my': 1.0, 'fact': 1.0, 'husband': 1.0, 'finally': 1.0, 'side': 2.0, 'good': 1.0, 'in': 1.0, 'surprisingly': 1.0, 'you': 1.0, 'tough': 1.0, 'd': 1.0, 'best': 1.0, 'think': 1.0, 'better': 1.0, 'off': 1.0, 'just': 1.0, 'following': 1.0, 'would': 1.0, 'uh': 1.0, 'first': 1.0, 'we': 1.0, 'reviews': 1.0, 'then': 1.0, 'start': 1.0, 'judgement': 1.0, 'sturdy': 1.0, 'holds': 1.0}
Word element => {'floor': 1.0, 'on': 1.0, 'up': 1.0, 'still': 1.0, 'we': 1.0, 'extra': 1.0, 'thing': 1.0, 'would': 1.0, 'adding': 1.0, 'the': 4.0, 'tried': 1.0, 'slats': 1.0, 'through': 1.0, 'ties': 1.0, 'it': 1.0, 'pacifiers': 1.0, 'slide': 1.0, 'weaving': 1.0, 'ended': 1.0, 'simply': 1.0, 'etc': 1.0, 'mattress': 1.0, 'down': 1.0, 'a': 1.0, 'into': 1.0, 'bunch': 1.0, 'against': 1.0, 'and': 1.0}
Word element => {'looks': 1.0, 'work': 1.0, 'baby': 1.0, 'stop': 1.0, 'would': 1.0, 'was': 1.0, 'head': 1.0, 'our': 1.0, 'that': 1.0, 'a': 1.0, 'between': 1.0, 'for': 1.0, 'slats': 1.0, 'crib': 1.0, 'feet': 1.0, 'looking': 1.0, 'hands': 1.0, 'i': 1.0, 'from': 1.0, 'bumping': 1.0, 'his': 2.0, 'and': 1.0, 'getting': 1.0, 'product': 1.0, 'suck': 1.0, 'great': 2.0, 'the': 1.0}
Word element => {'wood': 1.0, 'satin': 1.0, 'on': 1.0, 'slick': 2.0, 'but': 1.0, 'up': 1.0, 'lot': 1.0, 'keep': 1.0, 'helped': 1.0, 'little': 3.0, 'crib': 1.0, 'didn': 1.0, 'legs': 2.0, 'her': 2.0, 'inside': 1.0, 'down': 1.0, 'stuck': 1.0, 'this': 4.0, 'it': 5.0, 'only': 1.0, 'product': 1.0, 'is': 2.0, 'slats': 2.0, 'between': 1.0, 'kept': 2.0, 'the': 6.0, 'great': 2.0, 'a': 4.0, 't': 2.0, 'my': 2.0, 'overall': 2.0, 'bought': 1.0, 'one': 1.0, 'i': 3.0, 'getting': 1.0, 'get': 1.0, 'and': 2.0, 'because': 1.0, 'out': 1.0, 'pacifiers': 1.0, 'that': 2.0, 'fat': 1.0, 'like': 1.0, 'thing': 1.0, 'about': 1.0, 'recommend': 1.0, 'doesn': 1.0, 'was': 1.0, 'had': 1.0, 'all': 2.0, 'to': 3.0, 'tendency': 1.0, 'slide': 1.0, 'help': 2.0, 'friends': 1.0, 'bit': 1.0, 'has': 1.0, 'ties': 2.0}
Word element => {'any': 1.0, 'complain': 1.0, 'no': 1.0, 'there': 1.0, 'use': 1.0, 'very': 1.0, 'out': 1.0, 'used': 1.0, 'to': 3.0, 'bit': 1.0, 'little': 1.0, 'needs': 1.0, 'tell': 1.0, 'did': 1.0, 'time': 1.0, 'they': 2.0, 'but': 1.0, 'i': 3.0, 'fitured': 1.0, 'like': 1.0, 'idea': 1.0, 'can': 1.0, 'wonderful': 1.0, 'it': 5.0, 'this': 3.0, 'convenient': 1.0, 'a': 3.0, 'is': 3.0, 'bought': 1.0, 'friends': 1.0, 'product': 1.0, 'for': 2.0, 'something': 1.0, 'my': 1.0, 'more': 1.0, 'great': 1.0, 'the': 1.0, 'am': 1.0, 'after': 1.0, 'so': 1.0, 'glad': 1.0, 'friend': 1.0, 'get': 1.0, 'me': 1.0, 'and': 3.0, 'do': 1.0}
Word element => {'product': 1.0, 'friend': 1.0, 'a': 1.0, 'recommend': 1.0, 'would': 1.0, 'cover': 1.0, 'bumpers': 1.0, 'half': 1.0, 'than': 1.0, 'still': 1.0, 'is': 1.0, 'crib': 2.0, 'over': 1.0, 'all': 1.0, 'of': 2.0, 'placements': 1.0, 'for': 1.0, 'in': 1.0, 'great': 1.0, 'the': 5.0, 'but': 2.0, 'use': 1.0, 'cloth': 1.0, 'i': 2.0, 'size': 1.0, 'looking': 1.0, 'what': 1.0, 'hold': 1.0, 'better': 1.0, 'ties': 1.0, 'had': 1.0, 'was': 2.0, 'to': 4.0, 'place': 1.0, 'that': 1.0, 'were': 1.0, 'this': 1.0, 'only': 1.0, 'velcro': 1.0, 'it': 1.0, 'off': 1.0, 'and': 1.0, 'get': 1.0}
Word element => {'annoying': 1.0, 'sheet': 1.0, 'place': 1.0, 'over': 1.0, 'slides': 1.0, 'morning': 1.0, 'up': 1.0, 'she': 1.0, 'what': 1.0, 'when': 2.0, 'pulling': 1.0, 'about': 1.0, 're': 1.0, 'if': 1.0, 'places': 1.0, 'so': 1.0, 'you': 1.0, 'double': 1.0, 'way': 1.0, 'had': 1.0, 'suggest': 1.0, 'to': 4.0, 'our': 1.0, 'short': 1.0, 'around': 2.0, 'picky': 1.0, 'bows': 1.0, 'think': 1.0, 'one': 4.0, 'too': 1.0, 'and': 4.0, 'attached': 2.0, 'away': 1.0, 'does': 2.0, 'breathable': 3.0, 'find': 1.0, 'not': 2.0, 'i': 7.0, '4': 1.0, 'a': 4.0, 's': 5.0, 'we': 1.0, 'm': 1.0, 'in': 2.0, 'pieces': 1.0, 'returning': 1.0, 'with': 1.0, 'piece': 1.0, 'it': 11.0, 'kind': 1.0, 'because': 2.0, 'that': 4.0, 'crib': 3.0, 'right': 2.0, 'table': 2.0, 'cheap': 1.0, 'like': 2.0, 'the': 8.0, 'of': 3.0, 'there': 1.0, 'are': 2.0, 'fit': 1.0, 't': 2.0, 'separate': 1.0, 'have': 1.0, 'all': 2.0, 'other': 1.0, 'an': 1.0, 'wouldn': 1.0, 'didn': 1.0, 'chose': 1.0, 'but': 2.0, 'for': 2.0, 'fabric': 3.0, 'feel': 1.0, 'great': 1.0, 'cus': 1.0, 'needed': 1.0, 'price': 3.0, 'compared': 1.0, 'wrap': 2.0, 'non': 1.0, 'on': 1.0, 'long': 1.0, 'liners': 1.0, 'do': 1.0, 'put': 1.0, 'changing': 3.0, 'match': 1.0, 'priced': 1.0, 'set': 1.0, 'was': 1.0, 'bars': 1.0, 'is': 1.0, 'at': 1.0, 'supposed': 1.0, '3': 1.0, '70': 1.0, 'ridiculous': 1.0, 'also': 1.0, 'has': 1.0, 'trouble': 1.0, 'matches': 1.0, 'staying': 1.0, 'would': 1.0, 'sliding': 1.0, 'down': 2.0, 'looks': 1.0, 'my': 1.0, 'two': 1.0, 'little': 1.0}
Word element => {'slots': 1.0, 'between': 1.0, 'arms': 1.0, 'to': 2.0, 'poor': 1.0, 'liner': 1.0, 'were': 1.0, 'the': 2.0, 'very': 2.0, 'stuck': 1.0, 'in': 1.0, 'directions': 1.0, 'for': 1.0, 'install': 1.0, 'hard': 1.0, 'kegs': 1.0, 'baby': 1.0, 'itself': 1.0, 'is': 1.0, 'purchased': 1.0, 'doing': 1.0, 'does': 1.0, 'what': 1.0, 'not': 1.0, 'crib': 3.0, 'allow': 1.0, 'and': 2.0, 'get': 1.0}
Word element => {'back': 1.0, 'readjusting': 1.0, 'little': 1.0, 'takes': 1.0, 'but': 1.0, 'put': 1.0, 'on': 1.0, 'kind': 1.0, 'sheet': 1.0, 'nice': 1.0, 'between': 1.0, 'stuck': 1.0, 'be': 1.0, 'is': 3.0, 'really': 1.0, 'it': 4.0, 'pain': 1.0, 'this': 2.0, 'helps': 1.0, 'alone': 1.0, 'noticed': 1.0, 'changing': 1.0, 'that': 1.0, 'color': 1.0, 'one': 1.0, 'for': 1.0, 'i': 2.0, 'quality': 1.0, 'baby': 1.0, 'night': 1.0, 'thing': 1.0, 'have': 1.0, 'would': 3.0, 'just': 1.0, 'because': 1.0, 'definitely': 1.0, 'though': 1.0, 'rails': 1.0, 'keeping': 1.0, 'bumper': 1.0, 'recommend': 1.0, 'up': 1.0, 'with': 2.0, 'buying': 1.0, 'piece': 1.0, 'mind': 1.0, 'arms': 1.0, 'and': 3.0, 'legs': 1.0, 'in': 3.0, 'leg': 1.0, 'of': 2.0, 'wake': 1.0, 'place': 1.0, 'the': 4.0, 'crib': 2.0, 'didn': 1.0, 'to': 1.0, 'all': 2.0, 'our': 1.0, 'as': 2.0, 'well': 2.0, 'before': 1.0, 'his': 1.0, 'arrived': 1.0, 't': 1.0, 'a': 3.0, 'we': 1.0, 'during': 1.0}
Word element => {'weeks': 1.0, 'baby': 1.0, 'since': 1.0, 'useful': 1.0, 'if': 1.0, 'other': 1.0, 'more': 1.0, 'so': 1.0, 'longer': 1.0, 'velcro': 1.0, 'pieces': 1.0, 'made': 1.0, 'remains': 1.0, 'have': 2.0, 'better': 1.0, 'should': 1.0, 'just': 1.0, 'stuck': 1.0, 'or': 1.0, 'her': 1.0, 'will': 3.0, 'daughter': 1.0, 'that': 1.0, 'for': 1.0, 'product': 1.0, 'where': 1.0, 'fit': 2.0, 'wasn': 1.0, 'the': 8.0, 'a': 1.0, 'could': 1.0, 't': 1.0, 'never': 1.0, 'positioned': 1.0, 'another': 1.0, 'my': 3.0, 'it': 5.0, 'this': 1.0, 'on': 1.0, 'took': 1.0, 'flexibility': 1.0, 'i': 1.0, 'whole': 1.0, 'not': 2.0, 'me': 1.0, 'across': 1.0, 'and': 3.0, 'get': 2.0, 'enough': 1.0, 'forever': 1.0, 'was': 1.0, 'purpose': 1.0, 'try': 1.0, 'long': 2.0, 'than': 2.0, 'because': 1.0, 'sized': 1.0, 'standard': 1.0, 'installed': 1.0, 'seen': 1.0, 'you': 2.0, 'posts': 1.0, 'to': 4.0, 'all': 1.0, 'due': 1.0, 'way': 1.0, 'thick': 1.0, '6': 1.0, 'how': 1.0, 'regardless': 1.0, 'leg': 1.0, 'of': 1.0, 'one': 1.0, 'arm': 1.0, 'slat': 2.0, 'here': 1.0, 'be': 4.0, 'crib': 2.0, 'covered': 1.0, 'manufacturer': 1.0, 'know': 1.0, 'which': 1.0, 'in': 1.0, 'piece': 1.0, 'mind': 1.0, 'defeats': 1.0}
Word element => {'gift': 1.0, 'now': 1.0, 'having': 1.0, 'down': 1.0, 'bought': 1.0, 'for': 1.0, 'product': 1.0, 'single': 1.0, 'toddler': 1.0, 'finally': 1.0, 'until': 1.0, 'in': 1.0, 'only': 1.0, 've': 1.0, 'overnighted': 1.0, 'had': 1.0, 'this': 5.0, 'found': 1.0, 'bedroom': 1.0, 'cried': 1.0, 'bed': 2.0, 'is': 3.0, 'caught': 1.0, 'of': 1.0, 'leg': 1.0, 'best': 1.0, 'c': 1.0, 'sell': 2.0, 'knows': 1.0, 'go': 1.0, 'we': 1.0, 'rollover': 1.0, 't': 2.0, 'hands': 1.0, 'the': 5.0, 'your': 1.0, 'slats': 1.0, 'between': 1.0, 'they': 3.0, 'i': 5.0, 'today': 1.0, 'about': 1.0, 'them': 1.0, 'baby': 2.0, 'was': 1.0, 'all': 1.0, 'to': 3.0, 'look': 1.0, 'friends': 1.0, 'so': 1.0, 'worried': 1.0, 'use': 1.0, 'when': 1.0, 'fantastic': 1.0, 'you': 1.0, 'babies': 1.0, 'into': 3.0, 'that': 2.0, 'breathe': 1.0, 'will': 1.0, 'can': 1.0, 'but': 2.0, 'won': 1.0, 'bumpers': 1.0, 'be': 1.0, 'convertible': 1.0, 'able': 1.0, 'at': 1.0, 'who': 1.0, 'why': 1.0, 'got': 1.0, 'even': 1.0, 'her': 5.0, 'cute': 1.0, 'give': 1.0, 'those': 1.0, 'not': 1.0, 'practical': 1.0, 'b': 1.0, 'my': 3.0, 'daughter': 1.0, 'and': 4.0, 'moved': 2.0, 'crib': 2.0, 'used': 1.0, '6mos': 1.0, 'it': 2.0, 'she': 1.0, 'immediately': 1.0}
Word element => {'details': 1.0, 'time': 1.0, 'no': 1.0, 'in': 1.0, 'into': 1.0, 'then': 1.0, 'read': 1.0, 'she': 1.0, 'home': 1.0, 'daughters': 1.0, 'went': 2.0, 'my': 2.0, 'labor': 1.0, 'city': 1.0, 'another': 1.0, 'and': 2.0, 'couple': 1.0, 'the': 4.0, 'through': 1.0, 'fine': 1.0, 'amazon': 1.0, 'take': 1.0, 'ordering': 1.0, 'first': 1.0, 'only': 1.0, 'it': 1.0, 'for': 1.0, 'to': 5.0, 'had': 1.0, 'mom': 1.0, 'warehouse': 1.0, 'when': 1.0, 'i': 1.0, 'window': 1.0, 'careful': 1.0, 'be': 1.0, 'allows': 1.0, 'return': 2.0, 'a': 1.0, 'days': 1.0, 'hospital': 1.0, 'of': 1.0, 'out': 1.0}
Word element => {'love': 1.0, 'then': 1.0, 'but': 1.0, '7': 1.0, 'much': 1.0, 'rely': 1.0, 'pounding': 1.0, 'figured': 1.0, 'use': 1.0, 'weeks': 1.0, 'stretching': 1.0, 'also': 1.0, 'bump': 1.0, 'does': 1.0, 'enough': 1.0, 'not': 2.0, 'feels': 1.0, 'although': 1.0, 'until': 1.0, 'padded': 1.0, 'little': 2.0, 'was': 2.0, 'i': 3.0, 'on': 3.0, '5': 1.0, 'lot': 1.0, 'kept': 1.0, 'against': 1.0, 'so': 2.0, 'could': 1.0, 's': 1.0, 'a': 3.0, 'crib': 2.0, 'bumper': 1.0, 'did': 1.0, 'getting': 1.0, 'too': 1.0, 'and': 4.0, 'get': 2.0, 'limbs': 1.0, 'from': 2.0, 'still': 1.0, 'sagging': 1.0, 'son': 2.0, 'when': 1.0, 'job': 1.0, 'the': 6.0, 'between': 1.0, 'holes': 1.0, 'baby': 2.0, 'started': 3.0, 'above': 1.0, 'plush': 1.0, 'stuck': 2.0, 'in': 2.0, 'downside': 1.0, 'rolling': 1.0, 'him': 1.0, 'more': 2.0, 'is': 1.0, 'level': 1.0, 'around': 3.0, 'sturdy': 1.0, 'awesome': 1.0, 'his': 4.0, 'soft': 1.0, 'wish': 1.0, 'mattress': 1.0, 'feet': 1.0, 'out': 1.0, 'rails': 1.0, 'stylish': 1.0, 'or': 1.0, 'months': 2.0, 'smothering': 1.0, 'several': 1.0, 'no': 1.0, 'face': 1.0, 'my': 4.0, 'fits': 1.0, 'tightly': 1.0, 'snugly': 1.0, 'after': 2.0, 'tucks': 1.0, 'below': 1.0, 'once': 1.0, 'of': 2.0, 'there': 1.0, 'helped': 1.0, 'are': 1.0, 'as': 2.0, 'to': 2.0, 'it': 13.0, 'looks': 1.0}
Word element => {'teethers': 1.0, 'multisense': 1.0, 'pacifiers': 1.0, 'gifts': 1.0, 'baby': 1.0, 'know': 1.0, 'new': 1.0, 'these': 1.0, 'well': 1.0, 'set': 1.0, 'easy': 1.0, 'really': 1.0, 'if': 1.0, 'vented': 1.0, 'not': 1.0, 'lovely': 1.0, 'out': 1.0, 'at': 1.0, 'climb': 1.0, 'giving': 1.0, 'multiple': 1.0, 'be': 2.0, 'will': 2.0, 'herself': 1.0, 'that': 1.0, 'about': 1.0, 'plasic': 1.0, 'pull': 1.0, 'collapses': 1.0, 'daughter': 1.0, 'follow': 1.0, 'described': 1.0, 'you': 1.0, 'easily': 1.0, 'when': 3.0, 'but': 1.0, 'factory': 1.0, 'of': 1.0, '6': 1.0, 'suffocation': 1.0, 'directions': 1.0, 'crib': 2.0, 'layers': 1.0, 'very': 2.0, 'little': 1.0, 'cushion': 1.0, 'the': 6.0, 'fits': 1.0, 'my': 1.0, 'i': 3.0, 'old': 1.0, 'm': 1.0, 'arms': 2.0, 'wubbanub': 1.0, 'slats': 1.0, 'between': 1.0, 'along': 1.0, 'getting': 1.0, 'and': 4.0, 'fabric': 1.0, 'good': 1.0, 'her': 4.0, 'works': 1.0, 'even': 1.0, 'this': 2.0, 'paranoid': 1.0, 'stuck': 1.0, 'in': 3.0, 'y': 1.0, 'risks': 1.0, 'bumper': 3.0, 'life': 1.0, 'just': 1.0, 'mommies': 1.0, 'all': 2.0, 'to': 4.0, 'as': 2.0, 'tries': 2.0, 'keeps': 1.0, 'enough': 1.0, 'legs': 1.0, 'kept': 1.0, 'adds': 1.0, 'a': 2.0, 'for': 1.0, 'bed': 1.0, 'head': 1.0, 'looks': 1.0, 'month': 1.0, 'it': 4.0, 'she': 3.0, 'up': 3.0, 'scoots': 1.0, 'is': 3.0, 'with': 1.0, 'flexable': 1.0}
Word element => {'s': 1.0, 'months': 1.0, 'on': 1.0, 'them': 1.0, 'now': 1.0, 'had': 1.0, '8': 1.0, 'have': 2.0, 'my': 1.0, 'color': 1.0, 'for': 2.0, 'love': 1.0, 'breathable': 1.0, 'through': 1.0, 'but': 1.0, 'great': 2.0, 'these': 1.0, 'they': 2.0, 'sturdy': 1.0, 'us': 1.0, 'going': 1.0, 'are': 1.0, 'prevent': 1.0, 'i': 1.0, 'bumpers': 1.0, 'selections': 1.0, 'hands': 1.0, 'and': 3.0, 'feet': 1.0, 'worked': 1.0, 'son': 1.0, 'from': 1.0, 'little': 1.0, 'slats': 1.0, 'crib': 2.0, 'we': 1.0}
Word element => {'newborns': 1.0, 'with': 1.0, 'parents': 1.0, 'for': 1.0, 'highly': 1.0, 'worked': 1.0, 'babies': 1.0, 'have': 1.0, 'against': 1.0, 'recommend': 1.0, 'she': 1.0, 'if': 1.0, 'allowed': 1.0, 'around': 1.0, 'great': 1.0, 'these': 1.0, 'the': 3.0, 'caught': 1.0, 'started': 1.0, 'wiggling': 1.0, 'breath': 1.0, 'kept': 1.0, 'shifting': 1.0, 'crib': 2.0, 'also': 1.0, 'in': 1.0, 'newborn': 1.0, 'wanted': 1.0, 'to': 2.0, 'head': 2.0, 'when': 1.0, 'and': 3.0, 'get': 1.0, 'bumper': 1.0, 'got': 1.0, 'nervous': 1.0, 'her': 4.0, 'something': 1.0, 'our': 1.0, 'that': 1.0, 'limbs': 1.0, 'but': 1.0}
Word element => {'been': 1.0, 's': 1.0, 'crib': 1.0, 'slats': 1.0, 'out': 1.0, 'great': 1.0, 'it': 1.0, 'love': 1.0, 'this': 2.0, 'legs': 1.0, 'thing': 1.0, 'liner': 1.0, 'of': 2.0, 'keeps': 1.0, 'the': 2.0, 'my': 1.0, 'babys': 1.0, 'i': 1.0, 'arms': 1.0, 'and': 1.0}
Word element => {'spindles': 1.0, 'through': 1.0, 'legs': 1.0, 'or': 1.0, 'arms': 1.0, 'stick': 1.0, 'able': 1.0, 'being': 1.0, 'of': 1.0, 'edges': 1.0, 'and': 1.0, 'i': 2.0, 'gets': 1.0, 'when': 1.0, 'the': 5.0, 'on': 1.0, 'assemble': 1.0, 'feel': 1.0, 'product': 1.0, 'exactly': 1.0, 'safe': 1.0, 'close': 1.0, 'crib': 2.0, 'wanted': 1.0, 'to': 3.0, 'was': 1.0, 'this': 1.0, 'her': 1.0, 'does': 1.0, 'what': 1.0, 'knowing': 1.0, 'baby': 1.0, 'easy': 1.0, 'she': 1.0, 'without': 1.0, 'can': 1.0, 'breathe': 1.0}
Word element => {'still': 1.0, 'but': 1.0, 'times': 1.0, 'several': 1.0, 'bit': 1.0, 'tried': 1.0, 'i': 2.0, 'perfect': 1.0, 's': 1.0, 'does': 1.0, 'the': 2.0, 'pulling': 1.0, 'states': 1.0, 'mesh': 1.0, 'bought': 1.0, 'have': 1.0, 'it': 5.0, 'this': 1.0, 'some': 1.0, 'of': 1.0, 'tighter': 1.0, 'is': 1.0, 'regular': 1.0, 'saggy': 1.0, 'job': 1.0, 'outlawed': 1.0, 'sticking': 1.0, 'sagged': 1.0, 'a': 1.0, 'since': 1.0, 'hate': 1.0, 'and': 2.0, 'bumpers': 1.0, 'while': 1.0, 'that': 1.0, 'our': 1.0, 'rearranging': 1.0, 'crib': 2.0, 'little': 2.0, 'one': 1.0, 'kept': 1.0, 'liner': 1.0, 'limbs': 1.0, 'out': 1.0}
Word element => {'great': 1.0, 'been': 1.0, 'have': 1.0, 'needed': 1.0, 'realized': 1.0, 'stuck': 1.0, 'legs': 1.0, 'but': 1.0, 'at': 1.0, 'several': 1.0, 'no': 1.0, 'tried': 1.0, 'deciding': 1.0, 'mind': 1.0, 'peace': 1.0, 'better': 1.0, 'got': 1.0, 'even': 1.0, 'her': 6.0, 'miracle': 1.0, 'rails': 1.0, 'out': 1.0, 'something': 1.0, 'letting': 1.0, 'arrived': 1.0, 'moment': 1.0, 'rolling': 1.0, 'were': 1.0, 'occasions': 1.0, 'site': 1.0, 'around': 1.0, 'is': 1.0, 'time': 2.0, 'so': 3.0, 'of': 3.0, 'once': 1.0, 'hard': 1.0, 'baby': 1.0, 'it': 1.0, 'she': 4.0, 'a': 3.0, 'we': 6.0, 'for': 1.0, 'daughter': 1.0, 'when': 1.0, 'terrified': 1.0, 'had': 2.0, 'was': 2.0, 'all': 1.0, 'our': 3.0, 'to': 1.0, 'everywhere': 1.0, 'on': 2.0, 'put': 1.0, 'video': 1.0, 'in': 3.0, 'own': 1.0, 'before': 1.0, '5': 1.0, 'room': 1.0, 'much': 1.0, 'crib': 1.0, 'sids': 1.0, 'months': 1.0, 'bought': 1.0, 'monitor': 1.0, 'and': 2.0, 'knew': 1.0, 'these': 3.0, 'bumpers': 2.0}
Word element => {'scratchy': 1.0, 's': 1.0, 'breathing': 1.0, 'tested': 1.0, 'when': 1.0, 'cause': 1.0, 'they': 1.0, 'stars': 1.0, 'five': 3.0, 'four': 1.0, 'installed': 1.0, 'function': 1.0, 'hasn': 1.0, 'i': 2.0, 'inconvenience': 1.0, 'well': 1.0, 'washable': 1.0, 'are': 1.0, 'than': 1.0, '2': 1.0, 'used': 1.0, 'where': 1.0, 'minutes': 1.0, 'for': 1.0, '10': 1.0, '5': 1.0, 'entire': 1.0, 'rearrange': 1.0, 'out': 3.0, 'shimmy': 1.0, 'every': 1.0, 'now': 2.0, 'sheets': 5.0, 'mattress': 2.0, 'changing': 3.0, 'is': 1.0, 'as': 1.0, 'annoying': 1.0, 'big': 1.0, 'secure': 1.0, 'screw': 1.0, 'meaning': 1.0, 'tying': 1.0, 'most': 1.0, 'back': 3.0, 'accent': 1.0, 'time': 1.0, 'wide': 1.0, 'had': 2.0, 'have': 2.0, 'safety': 2.0, 'care': 1.0, 'other': 2.0, 'use': 2.0, 'started': 1.0, 'taken': 1.0, 'since': 1.0, 'limb': 2.0, 'resulting': 1.0, 'around': 5.0, 'these': 1.0, 'comes': 1.0, 'but': 3.0, 'this': 2.0, 'few': 1.0, 'sids': 1.0, 'our': 4.0, 'too': 1.0, 'one': 2.0, 'rolling': 1.0, 'which': 1.0, 'hold': 1.0, 'in': 7.0, 'not': 2.0, 'itself': 1.0, 'stuck': 2.0, 'middle': 2.0, 'be': 1.0, 'attachments': 1.0, 'small': 1.0, 'a': 6.0, 't': 2.0, 'ago': 1.0, 'from': 1.0, 'doctor': 1.0, 'fine': 1.0, 'take': 1.0, 'we': 5.0, 'could': 1.0, 'between': 1.0, 'night': 1.0, 'cries': 1.0, 'loud': 1.0, 'you': 1.0, 'bought': 1.0, 'discouraged': 1.0, 'velcro': 1.0, 'of': 11.0, 'the': 26.0, 'deal': 1.0, 'baby': 3.0, 'many': 1.0, 'to': 7.0, 'pretty': 1.0, 'issue': 1.0, 'and': 9.0, 'slats': 3.0, 'traditional': 1.0, 'gotten': 2.0, 'them': 1.0, 'has': 3.0, 'weeks': 1.0, 'would': 3.0, 'boy': 1.0, 'spaces': 1.0, 'so': 1.0, 'suffocation': 1.0, 'limbs': 1.0, 'bed': 1.0, 'through': 1.0, 'ties': 2.0, 'often': 1.0, 'bumpers': 2.0, 'shove': 1.0, 'liner': 2.0, 'due': 1.0, '3': 1.0, 'increased': 1.0, 'organizations': 1.0, 'ardently': 1.0, 'risk': 1.0, 'each': 2.0, 'end': 1.0, 'bumper': 3.0, 'or': 1.0, 'two': 2.0, 'otherwise': 1.0, 'prevented': 1.0, 'pieces': 1.0, 'thought': 1.0, 'it': 10.0, 'secures': 1.0, 'any': 1.0, 'your': 1.0, 'piece': 2.0, 'because': 1.0, 'easily': 1.0, 'that': 4.0, 'three': 1.0, 'into': 1.0, 'perimeter': 1.0, 'crib': 5.0, 'works': 1.0, 'slightly': 1.0, 'liners': 1.0, 'on': 2.0, 'long': 2.0, 'though': 1.0, 'part': 2.0, 've': 1.0, 'stick': 1.0, 'mesh': 1.0, 'takes': 1.0, 'change': 2.0, 'up': 1.0, 'work': 1.0, 'over': 1.0, 'wood': 1.0, 'tie': 1.0, 'flex': 1.0, 'difficult': 1.0, 'loops': 1.0, 'getting': 1.0, 'wasn': 1.0}
Word element => {'cream': 1.0, 'too': 1.0, 'picture': 1.0, 'colored': 1.0, 'in': 1.0, 'looks': 1.0, 'than': 1.0, 'i': 2.0, 'knowing': 1.0, 'little': 1.0, 'my': 1.0, 'the': 3.0, 'great': 1.0, 'one': 2.0, 'love': 1.0, 'can': 1.0, 'cuter': 1.0, 'a': 1.0, 'breathe': 1.0, 'if': 1.0, 'it': 2.0, 'this': 1.0, 'he': 1.0, 'was': 1.0, 'rolls': 1.0, 's': 1.0, 'actually': 1.0, 'against': 1.0, 'purchased': 1.0, 'purchase': 1.0, 'bumper': 1.0}
Word element => {'crib': 1.0, 'rungs': 1.0, 'the': 1.0, 'through': 1.0, 'legs': 1.0, 'not': 1.0, 'a': 1.0, 'bit': 1.0, 'its': 1.0, 'pretty': 1.0, 'super': 1.0, 'anymore': 1.0, 'job': 1.0, 'no': 1.0, 'sags': 1.0, 'or': 1.0, 'does': 1.0, 'arms': 1.0}
Word element => {'problem': 1.0, 'not': 1.0, 'overall': 1.0, 'back': 1.0, 'to': 2.0, 'have': 1.0, 'is': 1.0, 'down': 1.0, 'complaint': 1.0, 'do': 1.0, 'only': 1.0, 'big': 1.0, 'pulled': 1.0, 'stays': 1.0, 'in': 1.0, 'legs': 1.0, 'they': 2.0, 'from': 1.0, 'solution': 1.0, 'of': 1.0, 'bars': 1.0, 'and': 5.0, 'couldn': 1.0, 'feet': 1.0, 'his': 2.0, 'or': 1.0, 'kept': 1.0, 'sticking': 1.0, 'got': 1.0, 'perfect': 1.0, 'this': 1.0, 'he': 2.0, 'keep': 1.0, 'at': 2.0, 'through': 1.0, 'old': 1.0, 'i': 2.0, 'bit': 1.0, 'so': 2.0, 'time': 4.0, 'son': 1.0, 'waking': 1.0, 'arms': 2.0, 'when': 1.0, '3': 1.0, 'asleep': 1.0, 'the': 7.0, 'a': 2.0, 't': 1.0, 'ones': 1.0, 'my': 2.0, 'suffocation': 1.0, 'months': 1.0, 'up': 2.0, 'over': 1.0, 'crib': 2.0, 'himself': 2.0, 'was': 1.0, 'normal': 1.0, 'afraid': 1.0, 'about': 1.0, 'slip': 1.0, 'hazard': 1.0, 'mesh': 1.0, 'that': 2.0, 'were': 1.0, 'be': 1.0, 'liner': 1.0, 'bumpers': 1.0, 'usually': 1.0, 'roll': 1.0, 'these': 1.0, 'pose': 1.0}
Word element => {'been': 1.0, 'enough': 1.0, 'just': 1.0, 'padded': 1.0, 'still': 1.0, 'bumper': 1.0, 'so': 2.0, 'worry': 1.0, 'and': 2.0, 'works': 1.0, 'love': 1.0, 'breathable': 1.0, 'to': 1.0, 'durable': 1.0, 'it': 3.0, 'this': 1.0, 'great': 1.0, 't': 1.0, 'have': 1.0, 'i': 1.0, 'a': 1.0, 'about': 1.0, 'don': 1.0, 'baby': 1.0, 'far': 1.0, 'face': 1.0, 'into': 1.0, 'really': 1.0, 'regular': 1.0, 'you': 1.0, 's': 4.0, 'smooshing': 1.0}
Word element => {'nursery': 1.0, 'themed': 1.0, 'glad': 1.0, 'safari': 1.0, 'portion': 1.0, 'a': 3.0, 'go': 1.0, 't': 1.0, 's': 1.0, 'also': 1.0, 'secure': 1.0, 'directions': 1.0, 'crib': 7.0, 'because': 1.0, 'back': 2.0, 'video': 1.0, 'without': 2.0, 'watching': 1.0, 'add': 1.0, 'our': 1.0, 'how': 3.0, 'have': 3.0, 'artwork': 1.0, 'thing': 1.0, 'no': 1.0, 'this': 3.0, 'are': 1.0, 'first': 2.0, 'it': 8.0, 'website': 1.0, 'my': 1.0, 'looks': 1.0, 'supposed': 1.0, 'style': 1.0, 'confusing': 1.0, 'need': 1.0, 'when': 1.0, 'was': 1.0, 'beautiful': 1.0, 'center': 1.0, 'is': 2.0, 'around': 1.0, 'appropriately': 1.0, 'i': 6.0, 'putting': 1.0, 'liner': 2.0, 'baby': 1.0, 'understood': 1.0, 'way': 1.0, 'watch': 1.0, 'the': 13.0, 'of': 7.0, 'comes': 1.0, 'once': 1.0, 'there': 1.0, 'different': 1.0, 'their': 2.0, 'love': 1.0, 'solid': 1.0, 'where': 1.0, 're': 1.0, 'use': 1.0, 'ribbons': 1.0, 'wasn': 1.0, 'you': 2.0, 'things': 1.0, 'able': 1.0, 'do': 1.0, 'much': 1.0, 'so': 3.0, 'took': 1.0, 'little': 1.0, 'with': 1.0, 'shifting': 1.0, 'on': 2.0, 'flow': 1.0, 'would': 1.0, 'properly': 1.0, 'people': 1.0, 'both': 1.0, 'and': 6.0, 'arms': 1.0, 'in': 1.0, 'm': 1.0, 'met': 1.0, 'mesh': 2.0, 'up': 1.0, 'found': 1.0, 'creative': 1.0, 'however': 1.0, 'videos': 1.0, 'pieces': 1.0, 'got': 1.0, 'your': 1.0, 'keeps': 1.0, 'inside': 1.0, 'very': 1.0, 'being': 1.0, 'installed': 1.0, 'dangerous': 1.0, 'happy': 1.0, 'receive': 1.0, 'compliments': 1.0, 'legs': 1.0, 'get': 1.0, 'tons': 1.0, 'to': 11.0, 'pretty': 1.0}
Word element => {'much': 1.0, 'fabric': 1.0, 'cute': 1.0, 'the': 1.0, 'these': 1.0, 'but': 1.0, 'bumpers': 2.0, 'not': 1.0, 'legs': 1.0, 'work': 1.0, 'great': 1.0, 'little': 1.0, 'arms': 1.0, 'as': 2.0, 'and': 1.0, 'keeping': 1.0, 'safer': 1.0, 'crib': 1.0, 'for': 1.0, 'in': 1.0}
Word element => {'of': 1.0, 'great': 1.0, 'worry': 1.0, 'peace': 1.0, 'to': 2.0, 'have': 2.0, 't': 1.0, 'don': 1.0, 'i': 1.0, 'daughter': 1.0, 'its': 1.0, 'sleeps': 1.0, 'with': 1.0, 'her': 1.0, 'face': 1.0, 'and': 1.0, 'up': 1.0, 'against': 1.0, 'my': 1.0, 'the': 1.0, 'mind': 1.0, 'bumper': 1.0}
Word element => {'us': 1.0, 'depends': 1.0, 'works': 1.0, 'do': 1.0, 'really': 1.0, 'well': 1.0, 'shows': 1.0, 'tube': 1.0, 'videos': 1.0, 'does': 1.0, 'company': 1.0, 'missing': 1.0, 'of': 2.0, 'not': 1.0, 'are': 2.0, 'directions': 1.0, 'the': 2.0, 'proper': 2.0, 'on': 2.0, 'think': 2.0, 'prevent': 1.0, 'far': 1.0, 'however': 1.0, 'come': 1.0, 'face': 1.0, 'helps': 1.0, 'good': 1.0, 'her': 3.0, 'we': 1.0, 'steps': 1.0, 'a': 3.0, 'is': 2.0, 'people': 1.0, 'girl': 1.0, 'issues': 1.0, 'breathe': 1.0, 'installation': 2.0, 'that': 3.0, 'for': 1.0, 'love': 2.0, 'product': 2.0, 'to': 1.0, 'all': 1.0, 'our': 1.0, 'sleep': 1.0, 'how': 1.0, 'shaker': 1.0, 'and': 6.0, 'getting': 1.0, 'ease': 1.0, 'this': 3.0, 'with': 2.0, 'have': 4.0, 'i': 5.0, 'in': 1.0, 'stuck': 1.0, 'you': 1.0, 'mover': 1.0, 'had': 2.0, 'about': 1.0, 'no': 1.0, 'lot': 1.0, 'at': 1.0, 'some': 1.0, 'limbs': 1.0, 'properly': 1.0, 'from': 1.0, 'great': 1.0, 'install': 1.0, 'feel': 1.0, 'knowing': 1.0, 'it': 7.0, 'she': 2.0, 'very': 2.0, 'little': 1.0, 'read': 1.0, 'detail': 1.0, 'if': 1.0, 'gets': 1.0, 'so': 2.0, 'against': 1.0, 'reviews': 1.0, 'success': 1.0, 'trouble': 1.0, 'can': 1.0, 'but': 1.0}
Word element => {'worth': 1.0, 'well': 1.0, 'on': 1.0, 'put': 1.0, 'time': 1.0, 'little': 1.0, 'sure': 1.0, 'five': 1.0, 'moves': 1.0, 'you': 1.0, 'when': 1.0, 'barely': 1.0, 'to': 3.0, 'take': 1.0, 'safe': 1.0, 'once': 1.0, 'stuck': 1.0, 'in': 1.0, 'sheets': 1.0, 'star': 1.0, 'slates': 1.0, 'feet': 1.0, 'i': 2.0, 'bumper': 1.0, 'use': 1.0, 'be': 1.0, 'crib': 1.0, 'daughter': 1.0, 'started': 1.0, 'not': 1.0, 'it': 8.0, 'she': 1.0, 'did': 1.0, 'getting': 1.0, 'and': 3.0, 'my': 1.0, 'her': 1.0, 'product': 1.0, 'for': 2.0, 'actually': 1.0, 'do': 1.0, 'much': 1.0, 'bought': 1.0, 'color': 1.0, 'cuter': 1.0, 'thought': 1.0, 'would': 1.0, 'light': 1.0, 'because': 1.0, 'does': 1.0, 'than': 1.0, 'installed': 1.0, 'pink': 1.0, 'is': 1.0, 'really': 1.0, 'but': 1.0, 'p': 1.0, 'change': 1.0, 's': 5.0, 'a': 3.0, 'perfect': 1.0, 'this': 1.0, 'soft': 1.0, 'the': 5.0, 'job': 1.0, 'problem': 1.0}
Word element => {'mind': 1.0, 'piece': 1.0, 'with': 1.0, 'items': 1.0, 'simple': 1.0, 'those': 1.0, 'one': 1.0, 'minutes': 1.0, '5': 1.0, 'install': 1.0, 'very': 1.0, 'that': 2.0, 'weave': 1.0, 'mesh': 1.0, 'has': 1.0, 'pretty': 1.0, 'easy': 1.0, 'get': 3.0, 'issue': 1.0, 'roll': 1.0, 'over': 1.0, 'on': 1.0, 'they': 2.0, 'pays': 1.0, 'easily': 1.0, 'when': 1.0, 'and': 3.0, 'tough': 1.0, 'started': 1.0, 'down': 1.0, 'stand': 1.0, 'start': 1.0, 'without': 1.0, 'the': 3.0, 'rolling': 1.0, 'would': 1.0, 'kids': 2.0, 'this': 3.0, 'he': 1.0, 'it': 6.0, 'older': 1.0, 'item': 1.0, 'son': 1.0, 'caught': 1.0, 'is': 4.0, 'collapses': 1.0, 'a': 3.0, 'care': 1.0, 'blessing': 1.0, 'tools': 1.0, 'makes': 1.0, 'young': 1.0, 'cheap': 1.0, 'where': 1.0, 'for': 2.0, 'sleep': 1.0, 'any': 1.0, 'our': 1.0, 'as': 1.0, 'to': 4.0, 'his': 1.0, 'breathable': 1.0, 'because': 1.0, 'than': 1.0, 'itself': 1.0, 'age': 1.0, 'in': 1.0, 'crib': 2.0, 'rails': 1.0, 'real': 1.0, 'took': 2.0, 'of': 3.0, 'better': 2.0, 'legs': 1.0, 'pad': 1.0}
Word element => {'sleep': 1.0, 'with': 1.0, 'at': 1.0, 'super': 1.0, 'not': 1.0, 're': 1.0, 'they': 1.0, 'yes': 1.0, 'loved': 1.0, 'little': 1.0, 'crib': 1.0, 'them': 1.0, 'youtube': 1.0, 'to': 2.0, 'go': 1.0, 'a': 1.0, 'which': 1.0, 'for': 1.0, 'the': 1.0, 'these': 2.0, 'night': 1.0, 'fancy': 1.0, 'i': 3.0, 'recommend': 1.0, 'you': 1.0, 'search': 1.0, 'there': 1.0, 'highly': 1.0, 'get': 1.0, 'and': 2.0, 'did': 1.0, 'better': 1.0, 'slept': 1.0, 'if': 1.0, 'order': 1.0, 'breathablebaby': 1.0, 'tutorial': 1.0, 'how': 1.0, 'is': 1.0, 'on': 2.0, 'but': 1.0, 'video': 1.0, 'put': 1.0}
Word element => {'if': 1.0, 'longevity': 1.0, 'now': 1.0, 'month': 1.0, 'for': 1.0, 've': 1.0, 'took': 1.0, 'odor': 1.0, 'washed': 1.0, 'strong': 1.0, 'had': 1.0, 'initial': 1.0, 'only': 1.0, 'face': 1.0, 'his': 1.0, 'pushing': 1.0, 'thing': 1.0, 'about': 3.0, 'before': 1.0, 'worry': 1.0, 'have': 1.0, 'packaging': 1.0, 'of': 1.0, 'leg': 1.0, 'arm': 1.0, 'bothered': 1.0, 'got': 1.0, 'infant': 1.0, 'them': 5.0, 'after': 1.0, 'bit': 1.0, 'against': 1.0, 'so': 2.0, 'me': 1.0, 'not': 1.0, 'can': 1.0, 'but': 1.0, 'smell': 1.0, 'an': 1.0, 'be': 1.0, 'putting': 1.0, 'him': 1.0, 'bumpers': 1.0, 'the': 6.0, 'was': 1.0, 'recommend': 1.0, 'to': 2.0, 'buy': 1.0, 'etc': 1.0, 'i': 7.0, 'aap': 1.0, 'mesh': 1.0, 'since': 2.0, 'we': 1.0, 't': 3.0, 'going': 1.0, 'a': 4.0, 'my': 1.0, 'out': 2.0, 'wasn': 1.0, 'know': 1.0, 'using': 1.0, 'like': 1.0, 'let': 1.0, 'or': 2.0, 'does': 1.0, 'stuck': 1.0, 'air': 1.0, 'in': 2.0, 'crib': 2.0, 'screaming': 1.0, 'few': 1.0, 'when': 1.0, 'times': 1.0, 'and': 2.0, 'woke': 1.0, 'don': 2.0, 'up': 2.0, 'did': 1.0, 'these': 1.0, 'some': 1.0, 'research': 1.0, 'this': 1.0, 'found': 1.0, 'been': 1.0, 'that': 2.0, 'between': 1.0, 'slats': 1.0, 'they': 3.0, 'are': 1.0}
Word element => {'sure': 1.0, 'am': 1.0, 'for': 1.0, 'will': 1.0, 'value': 1.0, 'amazon': 1.0, 'on': 1.0, 'a': 2.0, 'very': 1.0, 'been': 1.0, 'price': 1.0, 'baby': 1.0, 'happy': 1.0, 'my': 1.0, 'start': 1.0, 'more': 1.0, 'great': 2.0, 'the': 2.0, 'rails': 1.0, 'to': 1.0, 'had': 1.0, 'wish': 1.0, 'children': 1.0, 'it': 1.0, 'this': 2.0, 'with': 1.0, 'time': 1.0, 'until': 1.0, 'in': 1.0, 've': 1.0, 'would': 2.0, 'i': 6.0, 'caught': 1.0, 'of': 1.0, 'have': 1.0, 'all': 1.0, 'use': 1.0, 'got': 1.0, 'get': 1.0, 'and': 2.0}
Word element => {'work': 1.0, 'made': 1.0, 'we': 1.0, 'spaced': 1.0, 'get': 1.0, 'adjusting': 1.0, 'some': 1.0, 'fit': 1.0, 'around': 1.0, 'this': 1.0, 'it': 4.0, 'although': 1.0, 'to': 2.0, 'wonderfully': 1.0, 'in': 1.0, 'crib': 1.0, 'which': 1.0, 'works': 1.0, 'does': 1.0, 'not': 1.0, 'takes': 1.0, 'evenly': 1.0, 'rails': 1.0, 'have': 1.0, 'all': 1.0, 'however': 1.0}
Word element => {'have': 1.0, 'need': 1.0, 'just': 1.0, 'not': 1.0, 'will': 1.0, 'the': 3.0, 'to': 2.0, 'its': 1.0, 'through': 1.0, 'around': 1.0, 'this': 1.0, 'it': 1.0, 'of': 1.0, 'leg': 1.0, 'wood': 1.0, '5': 1.0, 'baby': 1.0, 'little': 1.0, 'crib': 1.0, 'no': 1.0, 'keep': 1.0, 'pretty': 1.0, 'padding': 2.0, 'really': 1.0, 'i': 1.0, '4': 1.0, 'kid': 1.0, 'arm': 1.0, 't': 1.0, 'a': 1.0, 's': 1.0, 'or': 1.0, 'sticking': 1.0, 'good': 1.0, 'from': 1.0, 'rolling': 1.0, 'starting': 1.0, 'and': 2.0, 'whacked': 1.0, 'head': 1.0, 'provides': 1.0, 'his': 1.0, 'against': 1.0, 'isn': 1.0, 'be': 1.0, 'meant': 1.0, 'stars': 1.0, 'for': 1.0, 'covering': 1.0, 'but': 1.0, 'most': 1.0}
Word element => {'safe': 1.0, 'is': 3.0, 'i': 2.0, 'it': 2.0, 'love': 1.0, 'that': 1.0, 'this': 1.0, 'breathable': 1.0, 'product': 1.0, 'would': 1.0, 'very': 1.0, 'like': 1.0, 'and': 2.0, 'highly': 1.0, 'reccomend': 1.0}
Word element => {'ending': 1.0, 'from': 1.0, 'pacifiers': 1.0, 'prevented': 1.0, 'don': 1.0, 'crib': 2.0, 'up': 1.0, 'of': 1.0, 'against': 1.0, 'face': 1.0, 'does': 1.0, 'her': 2.0, 'worry': 1.0, 'like': 1.0, 'she': 2.0, 'product': 1.0, 'now': 1.0, 'purpose': 1.0, 'to': 3.0, 'i': 2.0, 'also': 1.0, 'reason': 1.0, 'stars': 1.0, 'am': 1.0, 'and': 1.0, 'five': 1.0, 'giving': 1.0, 'that': 2.0, 'when': 1.0, 'appealing': 1.0, 'not': 1.0, 'behind': 1.0, 't': 2.0, 'the': 5.0, 'side': 1.0, 'is': 1.0, 'def': 1.0, 'this': 1.0, 'only': 1.0, 'it': 4.0, 'isn': 1.0, 'have': 1.0, 'all': 1.0, 'push': 1.0, 'eye': 1.0, 'serves': 1.0, 's': 2.0}
Word element => {'recommend': 1.0, 'definitely': 1.0, 'would': 1.0, 's': 1.0, 'anymore': 1.0, 'rails': 1.0, 'between': 1.0, 'and': 1.0, 'getting': 1.0, 'are': 1.0, 'important': 1.0, 'legs': 1.0, 'her': 1.0, 'to': 2.0, 'off': 1.0, 'holds': 1.0, 'but': 1.0, 'has': 2.0, 'some': 1.0, 'able': 1.0, 'not': 1.0, 'excellent': 1.0, 'really': 1.0, 'looks': 1.0, 'is': 1.0, 'most': 1.0, 'bumper': 1.0, 'it': 5.0, 'this': 2.0, 'the': 2.0, 't': 1.0, 'anyone': 1.0, 'stuck': 1.0, 'in': 1.0, 'breathable': 1.0, 'place': 1.0, 'well': 1.0, 'pull': 1.0, 'my': 1.0, 'i': 1.0, 'tried': 1.0, 'baby': 1.0, 'cushion': 1.0, 'been': 1.0, 'nice': 1.0, 'hasn': 1.0}
Word element => {'why': 1.0, 'places': 1.0, 'many': 1.0, 'in': 1.0, 'sags': 1.0, 'expected': 1.0, 'inconsistency': 1.0, 'each': 2.0, 'now': 1.0, 'wanted': 1.0, 'are': 1.0, 'twins': 1.0, 'crib': 2.0, 'exact': 1.0, 'tie': 1.0, 'big': 1.0, 'to': 1.0, 'our': 2.0, 'as': 1.0, 'then': 1.0, 'had': 1.0, 'purchased': 1.0, 'bumper': 1.0, 'second': 1.0, 'mobile': 1.0, 'one': 2.0, 'months': 1.0, 'on': 2.0, 'this': 3.0, 'only': 1.0, 'item': 1.0, 'same': 3.0, 'too': 1.0, 'i': 3.0, 'two': 3.0, 'ago': 1.0, 'another': 1.0, 'the': 7.0, 'share': 1.0, 'for': 2.0, 'product': 3.0, 'who': 1.0, 'three': 1.0, 'since': 1.0, 'ordered': 1.0, 'last': 1.0, 'so': 1.0, 'time': 3.0, 'but': 1.0, 'bumpers': 2.0, 'of': 2.0, 'rather': 1.0, 'than': 1.0}
Word element => {'could': 1.0, 'never': 1.0, 'but': 1.0, 'website': 1.0, 'very': 1.0, 'the': 2.0, 'in': 1.0, 'crib': 1.0, 'a': 1.0, 'well': 1.0, 'fits': 1.0, 'youtube': 1.0, 'happy': 1.0, 'installation': 1.0, 'bumper': 1.0, 'enough': 1.0, 'looks': 1.0, 'find': 1.0, 'cute': 1.0, 'on': 2.0, 'instructions': 2.0, 'you': 1.0, 'can': 1.0, 'this': 1.0, 'with': 1.0, 'it': 2.0, 'gave': 1.0, 'and': 1.0, 'get': 1.0}
Word element => {'lists': 1.0, 'warning': 1.0, 'made': 1.0, 'only': 1.0, 'is': 2.0, 'say': 1.0, 'would': 1.0, 'cheaply': 1.0, 'isn': 1.0, 'alternative': 1.0, 'safe': 1.0, 'will': 1.0, 'anywhere': 1.0, 'advertisement': 1.0, 'straightening': 1.0, 'too': 1.0, 'and': 1.0, 'up': 1.0, 'definitely': 1.0, 'looking': 1.0, 'pulling': 1.0, 'before': 2.0, 'constantly': 1.0, 'on': 2.0, 'old': 1.0, 'i': 8.0, 'sale': 1.0, 'have': 2.0, 'coming': 1.0, 'product': 1.0, 'actually': 1.0, 'sad': 1.0, 'for': 3.0, 'where': 1.0, 'know': 1.0, 'matter': 1.0, 'seeing': 1.0, 'from': 2.0, 'if': 1.0, 'keep': 1.0, 't': 1.0, 'a': 2.0, 's': 1.0, 'because': 1.0, 'choking': 1.0, 'read': 1.0, 'my': 1.0, 'doubt': 1.0, 'll': 1.0, 'basically': 1.0, 'the': 5.0, 'excited': 1.0, 'great': 1.0, 'other': 1.0, 'nap': 1.0, 'one': 2.0, 'back': 1.0, 'star': 1.0, 'after': 2.0, '6': 1.0, 'of': 2.0, 'tie': 1.0, 'gone': 1.0, 'seriously': 1.0, 'reviews': 1.0, 'this': 2.0, 'found': 2.0, 'month': 1.0, 'it': 7.0, 'recall': 1.0, 'first': 1.0, 'fun': 1.0, 'all': 1.0, 'to': 3.0, 'was': 3.0, 'but': 1.0, 'peek': 1.0, 'out': 1.0, 'his': 1.0, 'what': 1.0, 'size': 1.0, 'crib': 1.0, 'seen': 1.0, 'am': 1.0, 'you': 2.0, 'times': 1.0, 'so': 1.0, 'time': 2.0, 'never': 1.0, 'saw': 2.0, 'case': 1.0, 'next': 1.0, 'that': 4.0, 'here': 1.0, 'be': 1.0, 'him': 1.0}
Word element => {'up': 1.0, 'home': 1.0, 'come': 1.0, 'into': 1.0, 'that': 1.0, 'things': 1.0, 'new': 1.0, 'cycle': 1.0, 'gentle': 1.0, 'worry': 1.0, 'nothing': 1.0, 'absolutely': 1.0, 'have': 1.0, 'now': 1.0, 'dried': 1.0, 'very': 1.0, 'they': 2.0, 'held': 1.0, 'worth': 1.0, 'but': 1.0, 'patience': 1.0, 'at': 1.0, 'suffocation': 1.0, 'bumpers': 2.0, 'the': 3.0, 'sleeper': 1.0, 'found': 1.0, 'i': 7.0, 'old': 2.0, 'fear': 1.0, 'too': 1.0, 'and': 7.0, 'getting': 1.0, 'researched': 1.0, 'needed': 1.0, 'solution': 1.0, 'it': 1.0, 'month': 1.0, 'some': 1.0, 'these': 2.0, 'knew': 1.0, 'nice': 1.0, 'great': 2.0, 'install': 1.0, 'find': 1.0, 'breathable': 1.0, 'for': 2.0, 'recently': 1.0, 'began': 1.0, 'of': 1.0, 'tummy': 1.0, 'look': 1.0, 'takes': 1.0, 'his': 2.0, 'about': 1.0, 'belly': 1.0, '6': 1.0, 'he': 1.0, 'them': 1.0, 'solely': 1.0, 'sleeping': 1.0, 'washed': 1.0, 'on': 2.0, 'removed': 1.0, 'my': 2.0, 'another': 1.0, 'was': 1.0, 'all': 1.0, 'as': 1.0, 'to': 2.0, 'first': 1.0, 'stuck': 1.0, 'in': 1.0, 'feet': 1.0, 'rails': 1.0, 'do': 1.0, 'tiny': 1.0, 'are': 2.0, 'a': 3.0, 'so': 1.0, 'bit': 1.0, 'tricky': 1.0}
Word element => {'would': 1.0, 'way': 1.0, 'figure': 1.0, 'if': 1.0, 'mesh': 1.0, 'non': 1.0, 'suffocating': 1.0, 'maybe': 1.0, 'than': 1.0, 'crib': 1.0, 'his': 1.0, 'meantime': 1.0, 'limb': 1.0, 'just': 1.0, 'by': 2.0, 'herself': 1.0, 'getting': 2.0, 'himself': 1.0, 'likely': 1.0, 'stay': 1.0, 'really': 1.0, 'velcro': 1.0, 'or': 1.0, 'the': 4.0, 'a': 4.0, 'going': 1.0, 't': 2.0, 'start': 1.0, 'like': 1.0, 'out': 1.0, 'newborn': 1.0, 'around': 2.0, 'more': 2.0, 'is': 4.0, 'regular': 1.0, 'in': 3.0, 'said': 1.0, 'child': 2.0, 'to': 2.0, 'all': 1.0, 'as': 2.0, 'soon': 1.0, 'and': 3.0, 'get': 1.0, 'from': 1.0, 'matter': 1.0, 'previous': 1.0, 'much': 1.0, 'do': 1.0, 'works': 1.0, 'moving': 2.0, 'this': 2.0, 'stuck': 2.0, 'first': 1.0, 'it': 6.0, 'reviewers': 1.0, 'have': 1.0, 'tie': 1.0, 'thing': 1.0, 'am': 1.0, 'hurt': 1.0, 'you': 1.0, 'when': 1.0, 'well': 1.0, 'down': 1.0, 'bumper': 5.0, 'keep': 1.0, 'at': 2.0, 'on': 1.0, 'put': 1.0, 'your': 2.0, '3': 1.0, 'i': 2.0, '4': 1.0, 'months': 1.0, 'pull': 1.0, 'better': 1.0, 'their': 1.0, 'arms': 1.0, 'legs': 1.0, 'immobile': 1.0, 'they': 3.0, 'between': 1.0, 'slats': 1.0, 'recommend': 1.0, 'doesn': 2.0, 'how': 1.0, 'tightly': 1.0}
Word element => {'product': 1.0, 'can': 1.0, 'down': 1.0, 'collapse': 1.0, 'side': 1.0, 'climb': 2.0, 'tries': 1.0, 'when': 1.0, 'concern': 1.0, 'ease': 1.0, 'of': 3.0, 'slats': 1.0, 'crib': 3.0, 'edge': 1.0, 'stuck': 1.0, 'his': 3.0, 'getting': 1.0, 'and': 2.0, 'get': 1.0, 'legs': 1.0, 'was': 1.0, 'had': 1.0, 'i': 1.0, 'bumpers': 2.0, 'the': 5.0, 't': 1.0, 'we': 1.0, 'a': 1.0, 'well': 1.0, 'such': 1.0, 'these': 1.0, 'debate': 1.0, 'up': 2.0, 'over': 1.0, 'my': 2.0, 'is': 1.0, 'son': 1.0, 'absolutely': 1.0, 'allow': 1.0, 'something': 1.0, 'he': 3.0, 'with': 1.0, 'which': 1.0, 'know': 1.0, 'like': 1.0, 'thin': 1.0, 'to': 5.0, 'as': 1.0, 'sleep': 1.0, 'face': 1.0, 'great': 1.0, 'pass': 1.0, 'so': 1.0, 'against': 1.0, 'are': 1.0, 'in': 1.0, 'air': 1.0, 'then': 1.0, 'through': 1.0, 'there': 1.0, 'helps': 1.0}
Word element => {'install': 1.0, 'can': 1.0, 'son': 1.0, 'looks': 1.0, 'is': 1.0, 'my': 1.0, 'great': 1.0, 't': 1.0, 'this': 1.0, 'bumper': 1.0, 'good': 1.0, 'think': 1.0, 'limbs': 1.0, 'i': 1.0, 'and': 1.0, 'get': 1.0, 'mesh': 1.0, 'any': 1.0, 'of': 1.0, 'caught': 1.0, 'his': 2.0, 'between': 1.0, 'slats': 1.0, 'little': 1.0, 'crib': 1.0, 'easy': 1.0, 'to': 1.0}
Word element => {'d': 1.0, 'i': 1.0, 'fit': 1.0, 'me': 1.0, 'for': 1.0, 'that': 1.0, 'doesn': 1.0, 'but': 1.0, 'kind': 1.0, 'open': 1.0, 'like': 1.0, 'could': 1.0, 'cannot': 1.0, 'purpose': 1.0, 'to': 2.0, 'still': 1.0, 'ends': 1.0, 'on': 1.0, 'fine': 1.0, 'left': 1.0, 'is': 2.0, 'crib': 2.0, 'slats': 1.0, 'my': 2.0, 'defeats': 1.0, 'are': 2.0, 't': 1.0, 'the': 9.0, 'way': 3.0, 'it': 3.0, 'product': 1.0, 'be': 1.0, 'supposed': 1.0, 'of': 2.0, 'just': 1.0, 'because': 1.0, 'itself': 1.0, 'fabric': 1.0, 'liner': 2.0, 'designed': 1.0, 'overlap': 1.0, 'used': 1.0, 'if': 1.0}
Word element => {'worth': 1.0, 'think': 1.0, 'i': 1.0, 'we': 1.0, 't': 1.0, 'the': 3.0, 'arms': 1.0, 'and': 2.0, 'getting': 1.0, 'her': 2.0, 'does': 1.0, 'not': 1.0, 'claims': 1.0, 'ours': 1.0, 'can': 1.0, 'legs': 1.0, 'cribs': 1.0, 'fit': 2.0, 'it': 5.0, 'this': 2.0, 'pull': 1.0, 'all': 1.0, 'was': 1.0, 'to': 1.0, 'bought': 1.0, 'product': 1.0, 'bars': 1.0, 'loose': 1.0, 'keep': 1.0, 'did': 1.0, 'from': 1.0, 'very': 1.0, 'well': 1.0, 'price': 1.0, 'don': 1.0, 'baby': 1.0, 'easily': 1.0, 'reason': 1.0, 'in': 1.0, 'stuck': 1.0, 'having': 1.0, 'is': 1.0, 'really': 2.0, 'said': 1.0, 'our': 1.0, 'that': 1.0}
Word element => {'these': 1.0, 'safer': 1.0, 'me': 1.0, 'through': 1.0, 'peace': 1.0, 'see': 2.0, 'and': 1.0, 'just': 1.0, 'fussing': 1.0, 'gives': 1.0, 'when': 1.0, 'middle': 1.0, 'is': 1.0, 'best': 1.0, 'crib': 2.0, 'daughter': 1.0, 'with': 1.0, 'mind': 1.0, 'pink': 1.0, 'have': 1.0, 'to': 3.0, 'pieces': 1.0, 'in': 4.0, 'also': 1.0, 'can': 1.0, '2': 1.0, 'bumper': 2.0, 'raise': 1.0, 'mesh': 2.0, 'bulky': 1.0, 'about': 1.0, 'night': 1.0, 'baby': 1.0, 'removing': 1.0, 'the': 7.0, 'place': 1.0, 'i': 3.0, 'first': 1.0, 'doing': 1.0, 'this': 1.0, 'velcro': 1.0, 'she': 3.0, 'it': 4.0, 'what': 1.0, 'reports': 1.0, 'padded': 1.0, 'of': 3.0, 'fairly': 1.0, 'was': 1.0, 'recommend': 1.0, 'easy': 1.0, 'really': 2.0, 'consisted': 1.0, 'bumpers': 3.0, 'cute': 1.0, 'consumer': 1.0, 'they': 3.0, 'attach': 1.0, 'that': 3.0, 'into': 1.0, 'where': 1.0, 'actually': 2.0, 's': 5.0, 'a': 1.0, 'read': 1.0, 'little': 1.0, 'prevent': 1.0, 'part': 1.0, 'from': 1.0, 'should': 2.0, 'their': 1.0, 'hurting': 1.0, 'head': 2.0, 'know': 1.0, 'using': 1.0, 'like': 1.0, 'her': 1.0, 'bump': 1.0, 'starts': 1.0, 'my': 2.0, 'fact': 1.0}
Word element => {'breathing': 1.0, 'take': 1.0, 'that': 1.0, 'feel': 1.0, 'safely': 1.0, 'crib': 1.0, 'outside': 1.0, 'hands': 1.0, 'it': 2.0, 'position': 1.0, 'safe': 1.0, 'no': 1.0, 'how': 1.0, 'recommended': 1.0, 'wherever': 1.0, 'child': 1.0, 'is': 1.0, 'know': 1.0, 'don': 1.0, 'highly': 1.0, 'item': 1.0, 'except': 1.0, 'when': 1.0, 'they': 2.0, 'your': 1.0, 'be': 1.0, 'll': 1.0, 'u': 1.0, 'put': 1.0, 'bed': 1.0, 'for': 1.0, 'you': 2.0, 's': 1.0, 'the': 1.0, 't': 1.0, 'more': 1.0, 'important': 1.0, 'legs': 1.0}
Word element => {'since': 1.0, 'with': 1.0, 'had': 1.0, 'haven': 1.0, 'open': 1.0, 'wubbanub': 1.0, 'her': 1.0, 'lose': 1.0, 'would': 1.0, 'issues': 1.0, 'sides': 1.0, 'solution': 1.0, 'because': 1.0, 'she': 1.0, 'it': 1.0, 'lost': 1.0, 'this': 2.0, 'only': 1.0, 'those': 1.0, 'my': 1.0, 'year': 1.0, 'daughter': 1.0, 'us': 1.0, 'attached': 1.0, 'but': 1.0, 'back': 3.0, 'didn': 1.0, 'crib': 1.0, 'front': 1.0, 'use': 1.0, 'was': 2.0, 'any': 1.0, 'to': 1.0, 'the': 6.0, 'until': 1.0, 'great': 1.0, 'frequently': 1.0, 'about': 1.0, 'using': 1.0, 'for': 1.0, 'we': 4.0, 't': 2.0, 'a': 2.0, 'middle': 1.0, 'pacifiers': 2.0, 'out': 1.0, 'of': 2.0, 'tough': 1.0, 'and': 4.0, 'are': 1.0, 'in': 1.0, 'started': 1.0, 'night': 1.0, 'on': 1.0, 'get': 1.0, 'left': 1.0}
Word element => {'prevent': 1.0, 'enough': 1.0, 'tight': 1.0, 'can': 1.0, 'because': 1.0, 'loose': 1.0, 'seems': 2.0, 'bc': 1.0, 'crib': 1.0, 'to': 2.0, 'have': 1.0, 'other': 1.0, 'wish': 1.0, 'than': 1.0, 'ok': 1.0, 'the': 2.0, 'product': 1.0, 'onto': 1.0, 'figure': 1.0, 'is': 1.0, 'on': 1.0, 'tie': 2.0, 'i': 1.0, 'they': 1.0, 'never': 1.0, 'sides': 1.0, 'would': 1.0, 'out': 1.0, 'another': 1.0, 'you': 1.0, 'way': 1.0, 'this': 1.0, 'it': 4.0, 'always': 1.0, 'of': 1.0, 'problem': 1.0, 'attaching': 1.0}
Word element => {'bumpers': 1.0, 'would': 1.0, 'into': 1.0, 'his': 1.0, 'face': 1.0, 'liner': 2.0, 'to': 1.0, 'crib': 2.0, 'with': 1.0, 'breahtable': 1.0, 'side': 1.0, 'our': 1.0, 'flips': 1.0, 'we': 3.0, 'love': 1.0, 'and': 1.0, 'rests': 1.0, 'so': 1.0, 'like': 1.0, 'worry': 1.0, 'against': 1.0, 'mesh': 2.0, 'baby': 2.0, 'don': 1.0, 'traditional': 1.0, 'the': 3.0, 't': 1.0, 'have': 1.0}
Word element => {'with': 1.0, 'sheets': 1.0, 'easier': 1.0, 'thin': 1.0, 's': 1.0, 'actually': 1.0, 'great': 1.0, 'and': 6.0, 'are': 1.0, 'new': 1.0, 'about': 1.0, 'because': 1.0, 'concerned': 1.0, 'stuck': 1.0, 'sleep': 1.0, 'as': 3.0, 'his': 4.0, 'born': 1.0, 'like': 2.0, 'began': 1.0, 'other': 1.0, 'pros': 1.0, 'son': 1.0, 'two': 1.0, 'switched': 1.0, 'parents': 1.0, 'cons': 1.0, 'lot': 1.0, 'one': 1.0, 'crib': 3.0, 'active': 1.0, 'glad': 1.0, 'older': 1.0, 'seamless': 1.0, 'he': 2.0, 'sleeper': 1.0, 'felt': 1.0, 'it': 11.0, 'many': 1.0, 'to': 7.0, 'pretty': 1.0, 'really': 1.0, 'once': 1.0, 'when': 1.0, 'traditional': 1.0, 'in': 3.0, 'm': 1.0, 'a': 4.0, 'risky': 1.0, 'could': 1.0, 'this': 2.0, 'thicker': 1.0, 'purchased': 1.0, 'had': 1.0, 'bumper': 4.0, 'was': 3.0, 'decorative': 1.0, 'of': 2.0, 'the': 4.0, 'hands': 1.0, 'bumpers': 2.0, 'but': 3.0, 'so': 4.0, 'can': 1.0, 'work': 1.0, 'stop': 1.0, 'much': 2.0, 'works': 1.0, 'any': 1.0, 'keeps': 1.0, 'mine': 1.0, 'from': 1.0, 'seeing': 1.0, 'getting': 1.0, 'i': 8.0, 'feet': 1.0, 'couple': 1.0, 'wasn': 1.0, 'between': 1.0, 'bars': 1.0, 'is': 3.0, 'change': 1.0, 'less': 1.0, 'which': 1.0, 'made': 1.0, 'than': 2.0, 'thick': 2.0, 'got': 3.0, 'pieces': 1.0, 'worrying': 1.0, 't': 1.0, 'fit': 2.0, 'tries': 1.0, 'has': 1.0, 'took': 1.0, 'my': 2.0, 'looks': 1.0, 'me': 1.0, 'sids': 1.0, 'make': 1.0, 'on': 1.0, 'think': 1.0, 'move': 1.0, 'used': 2.0, 'we': 1.0, 'fine': 1.0}
Word element => {'rest': 1.0, 'apart': 1.0, 'if': 1.0, 'm': 1.0, 'so': 1.0, 'take': 1.0, 'wish': 1.0, 'of': 1.0, 'one': 1.0, 'rails': 1.0, 'while': 1.0, 'off': 2.0, 'much': 1.0, 'do': 1.0, 'only': 1.0, 'front': 1.0, 'shorter': 1.0, 'back': 2.0, 'sides': 1.0, 'goes': 2.0, 'piece': 2.0, 'complaint': 1.0, 'longer': 1.0, 'ties': 2.0, 'bed': 1.0, 'pulls': 1.0, 'come': 2.0, 'move': 1.0, 'thing': 1.0, 'that': 4.0, 'thought': 1.0, 'toddler': 1.0, 'realize': 1.0, 'mesh': 1.0, 'baby': 1.0, 'good': 1.0, 'easily': 1.0, 'when': 3.0, 'ripped': 1.0, 'read': 1.0, 'sure': 1.0, 'easy': 1.0, 'done': 1.0, 'too': 3.0, 'and': 2.0, 'job': 1.0, 'the': 11.0, 'around': 2.0, 'is': 2.0, 'more': 1.0, 'great': 1.0, 'tying': 1.0, 'on': 3.0, 'your': 1.0, 'can': 1.0, 'but': 3.0, 'will': 1.0, 'in': 2.0, 'pieces': 1.0, 'crib': 2.0, 'cushioned': 1.0, 'didn': 3.0, 'definitely': 1.0, 'than': 1.0, 'breathable': 1.0, 'to': 3.0, 'care': 1.0, 'for': 2.0, 'it': 5.0, 'sew': 1.0, 'came': 1.0, 'i': 5.0, 'two': 1.0, 'force': 1.0, 'be': 1.0, 'a': 2.0, 's': 2.0, 't': 3.0, 'we': 1.0, 'may': 1.0, 'convert': 1.0, 'my': 3.0, 'still': 1.0, 'gets': 1.0, 'son': 2.0}
Word element => {'just': 1.0, 'is': 1.0, 'there': 1.0, 'put': 1.0, 'we': 1.0, 'on': 1.0, 'install': 1.0, 'baby': 1.0, 'my': 1.0, 'the': 2.0, 'getting': 1.0, 'day': 1.0, 'from': 1.0, 'very': 1.0, 'fits': 1.0, 'easy': 1.0, 'now': 1.0, 'to': 2.0, 'used': 1.0, 'prevents': 1.0, 'his': 1.0, 'legs': 1.0, 'arms': 1.0, 'stuck': 1.0, 'in': 2.0, 'slats': 1.0, 'crib': 1.0, 'first': 1.0, 'it': 4.0, 'only': 1.0, 'he': 2.0, 'well': 1.0, 'pulled': 1.0}
Word element => {'in': 1.0, 'legs': 1.0, 'arms': 1.0, 'don': 1.0, 'we': 3.0, 'it': 4.0, 'and': 1.0, 'issue': 1.0, 'stay': 1.0, 'good': 1.0, 'keeps': 1.0, 'the': 1.0, 'great': 1.0, 't': 2.0, 'have': 1.0, 'of': 1.0, 'up': 1.0, 'which': 1.0, 'need': 1.0, 'is': 1.0, 'looks': 1.0, 'much': 1.0, 'doesn': 1.0, 'but': 1.0, 'an': 1.0, 'wanted': 1.0, 'to': 1.0, 'readjusting': 1.0, 'when': 1.0, 'what': 1.0, 'his': 1.0, 'crib': 1.0, 'little': 1.0}
Word element => {'with': 1.0, 'happy': 1.0, 'very': 1.0, 'overall': 1.0, 'days': 1.0, 'few': 1.0, 'her': 1.0, 'in': 1.0, 'needs': 1.0, 'safe': 1.0, 'spent': 1.0, 'pacifers': 1.0, 'and': 1.0, 'reason': 1.0, 'keeps': 1.0, 'this': 1.0, 'it': 5.0, 'only': 1.0, 'legs': 1.0, '20': 1.0, '5': 1.0, 'thing': 2.0, 'great': 1.0, 'falling': 1.0, 'mother': 1.0, 'set': 1.0, 'best': 1.0, 'from': 1.0, 'i': 3.0, 'completely': 1.0, 'is': 3.0, 'on': 1.0, 'crib': 2.0, 'didn': 1.0, 'give': 1.0, 'out': 1.0, 'being': 1.0, 'tested': 1.0, 'prevents': 1.0, 'hands': 1.0, 'the': 3.0, 'myself': 1.0, 't': 1.0, 'a': 1.0, 'paranoid': 1.0, 'stars': 1.0, 'breathable': 1.0, 'because': 1.0, 'to': 1.0, 'be': 1.0, 'also': 1.0, 'adjusted': 1.0, 'every': 1.0}
Word element => {'happy': 1.0, 'directions': 1.0, 'crib': 2.0, 'in': 1.0, 'issues': 2.0, 'it': 5.0, 'with': 2.0, 'this': 1.0, 'no': 1.0, 'some': 1.0, 'having': 1.0, 'installed': 1.0, 'maybe': 1.0, 'took': 1.0, 'had': 2.0, 'to': 1.0, 'now': 1.0, 'more': 1.0, 'is': 1.0, 'product': 1.0, 'actually': 1.0, 'attractive': 1.0, 'little': 1.0, 'dried': 1.0, 'very': 3.0, 'nicely': 1.0, 'the': 5.0, 'and': 4.0, 'purchase': 1.0, 'my': 1.0, 'nursery': 1.0, 'm': 2.0, 'clear': 1.0, 'postpartum': 1.0, 'i': 6.0, 'thinking': 1.0, 'but': 1.0, 'an': 1.0, 'redoing': 1.0, 'matches': 1.0, 'difficult': 1.0, 'time': 1.0, 'be': 1.0, 'liner': 1.0, 'installing': 1.0, 'over': 1.0, 'think': 1.0, 'washed': 1.0, 'on': 1.0, 'hour': 1.0, 'could': 1.0, 'a': 2.0, 's': 1.0, 'keep': 1.0, 'that': 1.0}
Word element => {'perfect': 1.0, 'fit': 1.0, 'devinci': 1.0, 'we': 1.0, 'sides': 1.0, 'they': 3.0, 'wonderful': 1.0, 'are': 2.0, 'sids': 1.0, 'of': 2.0, 'cushion': 1.0, 'crib': 3.0, 'turning': 1.0, '3': 1.0, 'my': 1.0, 'because': 2.0, 'the': 3.0, 'these': 2.0, 'month': 1.0, 'got': 1.0, 'head': 1.0, 'was': 2.0, 'to': 1.0, 'breathable': 1.0, 'place': 1.0, 'bumpers': 2.0, 'old': 1.0, 'i': 2.0, 'himself': 1.0, 'scared': 1.0, 'and': 3.0, 'have': 1.0, 'all': 1.0, 'bumping': 1.0, 'his': 1.0, 'however': 1.0, 'over': 1.0, 'on': 1.0}
Word element => {'sleep': 1.0, 'nights': 1.0, 'us': 1.0, 'product': 1.0, 'themselves': 1.0, 'could': 1.0, 'stayed': 1.0, 'safety': 1.0, 'for': 1.0, 'supposed': 1.0, 'exactly': 1.0, 'that': 1.0, 'but': 1.0, 'babies': 1.0, 'their': 1.0, 'mention': 1.0, 'is': 2.0, 'at': 1.0, 'would': 1.0, 'getting': 1.0, 'good': 1.0, 'which': 1.0, 'night': 2.0, 'wake': 1.0, 'in': 2.0, 'twisted': 1.0, 'his': 4.0, 'love': 1.0, 'he': 4.0, 'sids': 1.0, 'life': 1.0, 'of': 4.0, 'the': 7.0, 'not': 2.0, 'fixed': 1.0, 'to': 6.0, 'our': 3.0, 'as': 1.0, 'was': 1.0, 'kept': 1.0, 'white': 1.0, 'after': 1.0, 'get': 1.0, 'legs': 1.0, 'caused': 1.0, 'decided': 1.0, 'what': 2.0, 'when': 2.0, 'we': 4.0, 'a': 4.0, 'helped': 1.0, 'measures': 1.0, 'fits': 1.0, 'c': 1.0, 'crib': 3.0, 'slats': 1.0, 'they': 1.0, 'b': 1.0, 'risk': 1.0, 'put': 2.0, 'do': 3.0, 'nice': 1.0, 'pediatrician': 1.0, 'little': 2.0, 'limbs': 1.0, 'born': 1.0, 'unsafe': 1.0, 'throw': 1.0, 'or': 1.0, 'bumper': 2.0, 'perfectly': 1.0, 'inside': 1.0, 'guy': 1.0, 'collapsed': 1.0, 'hearing': 1.0, 'use': 2.0, 'up': 2.0, 'promised': 1.0, 'pacifiers': 2.0, 'out': 2.0, 'sides': 2.0, 'feet': 1.0, 'slept': 1.0, 'i': 2.0, 'if': 1.0, 'stay': 1.0, 'asked': 1.0, 'sleeps': 1.0, 'should': 1.0, 'lot': 1.0, 'crying': 1.0, 'one': 1.0, 'too': 1.0, 'many': 2.0, 'baby': 1.0, 'unfortunately': 1.0, 'she': 1.0, 'boost': 1.0, 'him': 1.0, 'it': 7.0, 'my': 1.0, 'looks': 1.0, 'arms': 2.0, 'and': 6.0, 'recommended': 1.0, 'has': 2.0, 'breathable': 1.0, 'standard': 1.0, 'got': 1.0, 'this': 2.0, 'been': 1.0, 'saver': 1.0, 'really': 1.0, 'were': 1.0, 'guys': 1.0, 'weight': 1.0, 'constantly': 1.0, 'so': 1.0, 'through': 1.0, 'now': 1.0, 'noticed': 1.0, 'people': 1.0, 'saying': 1.0, 'under': 1.0}
Word element => {'from': 1.0, 'keep': 1.0, 'snuggly': 1.0, 'fit': 1.0, 'they': 1.0, 'mesh': 1.0, 'found': 1.0, 'glad': 1.0, 'so': 1.0, 'however': 1.0, 'with': 1.0, 'mind': 1.0, 'are': 1.0, 'sleeps': 1.0, 'daughter': 2.0, 'of': 3.0, 'because': 1.0, 'caught': 2.0, 'my': 2.0, 'ones': 1.0, 'traditional': 1.0, 'the': 3.0, 'look': 1.0, 'was': 2.0, 'love': 1.0, 'nice': 1.0, 'idea': 1.0, 'bumpers': 2.0, 'i': 3.0, 'arms': 1.0, 'straight': 1.0, 'peace': 1.0, 'her': 2.0, 'give': 1.0, 'crib': 1.0, 'slats': 1.0, 'me': 1.0, 'getting': 2.0, 'and': 4.0, 'out': 1.0, 'them': 1.0, 'scary': 1.0, 'inbetween': 1.0}
Word element => {'usuable': 1.0, 'were': 1.0, 'they': 1.0, 'side': 1.0, 'up': 1.0, 'them': 1.0, 'ways': 1.0, 'on': 1.0, 'time': 1.0, 'of': 1.0, 'keep': 1.0, 'tryiing': 1.0, 'crib': 1.0, 'for': 1.0, 'most': 1.0, 'spent': 1.0, 'not': 1.0, 'part': 1.0, 'we': 1.0, 'to': 2.0, 'the': 3.0, 'more': 1.0, 'find': 1.0}
Word element => {'bedding': 1.0, 'color': 1.0, 'just': 1.0, 'adds': 1.0, 'whatever': 1.0, 'for': 1.0, 'little': 1.0, 'crib': 2.0, 'a': 4.0, 'with': 2.0, 'it': 2.0, 'this': 1.0, 'perfect': 1.0, 'in': 1.0, 'stuck': 1.0, 'free': 1.0, 'isn': 1.0, 'bumper': 3.0, 'is': 1.0, 'really': 1.0, 'keep': 1.0, 'easy': 1.0, 'solution': 1.0, 'remember': 1.0, 's': 1.0, 'way': 1.0, 'you': 2.0, 'to': 3.0, 'arms': 1.0, 'getting': 1.0, 'and': 2.0, 'go': 1.0, 'legs': 1.0, 'match': 1.0, 'from': 1.0, 't': 1.0, 'the': 2.0}
Word element => {'crib': 1.0, 'between': 1.0, 'legs': 1.0, 'arms': 1.0, 'his': 1.0, 'baby': 1.0, 'stuck': 1.0, 'this': 1.0, 'bumper': 1.0, 'is': 1.0, 'getting': 1.0, 'great': 1.0, 'very': 1.0, 'and': 2.0, 'rails': 1.0, 'the': 1.0, 'my': 1.0, 'easy': 1.0, 'to': 1.0, 'from': 1.0, 'install': 1.0, 'keeps': 1.0}
Word element => {'cribs': 1.0, 'face': 1.0, 'times': 1.0, 'to': 3.0, 'our': 1.0, 'firmly': 1.0, 'and': 2.0, 'of': 2.0, 'still': 1.0, 'fold': 1.0, 'my': 2.0, 'fits': 1.0, 'press': 1.0, 'over': 1.0, 'on': 2.0, 'crib': 1.0, 'well': 1.0, 'a': 2.0, 'i': 3.0, 'putting': 1.0, 'it': 5.0, 'velcro': 1.0, 'most': 1.0, 'can': 1.0, 'breathe': 1.0, 'tested': 1.0, 'good': 1.0, 'fabric': 1.0, 'through': 1.0, 'product': 1.0, 'fit': 1.0, 'no': 1.0, 'problem': 1.0, 'bunch': 1.0, 'yes': 1.0, 'course': 1.0, 'is': 1.0, 'suspect': 1.0, 'way': 1.0, 'before': 1.0, 'long': 1.0, 'this': 2.0, 'kids': 1.0, 'bed': 1.0, 'join': 1.0, 'the': 2.0, 'pieces': 1.0, 'together': 1.0, 'which': 1.0, 'allow': 1.0, 'would': 2.0}
Word element => {'suffocate': 1.0, 'right': 1.0, 'better': 1.0, 'escape': 1.0, 'aide': 1.0, 'up': 2.0, 'suggest': 1.0, 'overall': 1.0, 'side': 1.0, 'herself': 1.0, 'drop': 1.0, 'its': 1.0, 'allow': 1.0, 'cover': 1.0, 'way': 1.0, 'corner': 1.0, 'an': 1.0, 'all': 1.0, 'other': 3.0, 'front': 1.0, 'part': 1.0, 'exposed': 1.0, 'are': 2.0, 'another': 1.0, 'like': 3.0, 'as': 3.0, 'isn': 1.0, 'safe': 1.0, 'if': 1.0, 'still': 2.0, 'every': 1.0, 'section': 1.0, 'tighter': 1.0, 'slack': 1.0, 'no': 1.0, 'time': 1.0, 'so': 1.0, 'corners': 1.0, 'but': 3.0, 'three': 1.0, 'bedroom': 1.0, 'however': 1.0, 'in': 8.0, 'won': 2.0, 'regular': 3.0, '5': 1.0, 'comes': 1.0, 'room': 1.0, 'usage': 1.0, 'crib': 5.0, 'nothing': 1.0, 'a': 6.0, 'concern': 1.0, 'wasn': 1.0, 'about': 2.0, 'reading': 1.0, 'kept': 1.0, 'covered': 1.0, 'bumpers': 3.0, 'be': 3.0, 'bought': 1.0, 'put': 1.0, 'make': 1.0, 'breathable': 1.0, 'next': 1.0, 'them': 1.0, 'sides': 1.0, 's': 1.0, 'secondary': 1.0, 'to': 11.0, 'was': 2.0, 'travel': 1.0, 'well': 1.0, 'slept': 1.0, 'putting': 1.0, 'i': 13.0, 'little': 2.0, 'two': 2.0, 'and': 6.0, 'one': 2.0, 'too': 1.0, 'months': 1.0, 'get': 1.0, 'sections': 1.0, 'market': 1.0, 'store': 2.0, 'sure': 1.0, 'nursery': 1.0, 'consignment': 1.0, 'for': 5.0, 'safety': 1.0, 'didn': 1.0, 'pieces': 1.0, 'daughter': 2.0, 'pull': 2.0, 'consignement': 1.0, 'my': 5.0, 'stores': 1.0, 'oh': 1.0, 'with': 2.0, 'bumper': 3.0, 'loved': 1.0, 'came': 1.0, 'feel': 1.0, 'idea': 1.0, 'she': 6.0, 'needed': 1.0, 'use': 1.0, 'her': 6.0, 'thing': 1.0, 'bump': 1.0, 'seems': 1.0, 'own': 1.0, 'because': 1.0, 'concerned': 1.0, 'that': 3.0, 'tight': 1.0, 'would': 4.0, 'head': 1.0, 'is': 6.0, 'at': 3.0, 'bars': 1.0, 'the': 15.0, 'of': 3.0, 'want': 1.0, 'there': 2.0, 'saw': 1.0, 'sets': 1.0, 'it': 9.0, 'thought': 1.0, 'when': 3.0, 'what': 1.0, 'great': 1.0, 'face': 1.0, 'install': 1.0, 'after': 1.0, 'finding': 1.0, 'begins': 1.0, 'washing': 1.0, 'on': 2.0, 'noticed': 1.0, 'this': 3.0, 'few': 1.0, 'able': 3.0, 'you': 2.0, 'things': 1.0, 't': 5.0, 'keen': 1.0, 'have': 1.0, 'really': 2.0, 'over': 2.0, 'hard': 1.0}
Word element => {'highly': 1.0, 'lot': 1.0, 'until': 1.0, 'stuck': 1.0, 'in': 2.0, 'wake': 1.0, 'slats': 1.0, 'crib': 1.0, 'for': 1.0, 'some': 1.0, 'get': 2.0, 'the': 1.0, 'my': 1.0, 'and': 3.0, 'too': 1.0, 'arms': 1.0, 'then': 1.0, 'through': 1.0, 'around': 1.0, 'would': 2.0, 'furious': 1.0, 'reason': 1.0, 'never': 1.0, 'wanted': 1.0, 'sleep': 1.0, 'to': 3.0, 'recommend': 1.0, 'was': 2.0, 'constantly': 1.0, 'move': 1.0, 'stick': 1.0, 'out': 2.0, 'her': 4.0, 'little': 1.0, 'figure': 1.0, 'how': 1.0, 'arm': 1.0, 'child': 1.0, 'up': 1.0, 'this': 3.0, 'she': 2.0, 'it': 1.0, 'again': 1.0, 'when': 1.0, 'happened': 2.0, 'a': 1.0, 'i': 1.0, 'bought': 1.0, 'after': 1.0, 'installed': 1.0}
Word element => {'baby': 1.0, 'see': 1.0, 'towards': 1.0, 'walking': 1.0, 'facing': 1.0, 'set': 1.0, 'teh': 1.0, 'when': 1.0, 'so': 2.0, 'side': 2.0, 'only': 1.0, 'is': 2.0, 'of': 1.0, 'gripe': 1.0, 'additional': 1.0, 'design': 3.0, 'very': 1.0, 'velcro': 1.0, 'with': 1.0, 'were': 1.0, 'cribs': 1.0, 'installing': 1.0, 'it': 6.0, 'this': 3.0, 'bumper': 2.0, 'on': 4.0, 'sides': 1.0, 'would': 3.0, 'not': 3.0, 'my': 1.0, 'the': 10.0, 'for': 3.0, 'one': 3.0, 'that': 3.0, 'been': 1.0, 'other': 1.0, 'have': 2.0, 'has': 4.0, 'but': 3.0, 'back': 1.0, 'person': 1.0, 'bars': 1.0, 'using': 1.0, 'like': 1.0, 'and': 3.0, 'get': 1.0, 'done': 1.0, 'instructions': 1.0, 'front': 2.0, 's': 1.0, 'we': 2.0, 'a': 3.0, 'husband': 1.0, 'had': 1.0, 'i': 2.0, 'crib': 4.0, 'unable': 1.0, 'matter': 1.0, 'properly': 1.0, 'if': 1.0, 'outside': 1.0, 'to': 1.0, 'any': 1.0, 'up': 2.0, 'or': 1.0, 'regular': 1.0, 'ended': 1.0, 'cute': 2.0, 'connects': 1.0}
Word element => {'product': 1.0, 'terrific': 1.0, 'furniture': 1.0, 'espresso': 1.0, 'our': 1.0, 'than': 1.0, 'darker': 1.0, 'color': 1.0, 'be': 1.0, 'will': 1.0, 'also': 1.0, 'breathe': 1.0, 'old': 1.0, 'because': 1.0, 'that': 3.0, 'with': 4.0, 'wrong': 1.0, 'in': 3.0, 'so': 1.0, 'crib': 3.0, 'directions': 1.0, 'read': 1.0, 'sleeper': 1.0, 'this': 2.0, 'gives': 1.0, 'when': 1.0, 'able': 1.0, 'you': 2.0, 'son': 1.0, 'month': 1.0, 'him': 1.0, 'it': 7.0, 'liked': 1.0, 'follow': 1.0, 'putting': 1.0, 'i': 3.0, 'normal': 1.0, 'was': 2.0, 'against': 1.0, 'to': 6.0, 'sleep': 1.0, 'worried': 1.0, 'bumper': 2.0, 'looks': 1.0, 'me': 1.0, 'my': 1.0, 'another': 1.0, 'great': 2.0, 'little': 2.0, 'nice': 1.0, 'right': 1.0, 'pictured': 1.0, 'a': 4.0, 't': 2.0, 'he': 4.0, 'peace': 1.0, 'his': 4.0, 'install': 1.0, 'face': 1.0, 's': 2.0, 'sides': 1.0, 'issues': 1.0, 'are': 1.0, 'plus': 1.0, 'over': 1.0, 'don': 1.0, 'the': 8.0, 'of': 3.0, 'even': 1.0, 'didn': 1.0, 'if': 2.0, 'does': 2.0, 'get': 1.0, 'easy': 1.0, 'close': 1.0, 'keeps': 1.0, 'limbs': 1.0, 'from': 1.0, 'getting': 1.0, 'stuck': 1.0, 'no': 1.0, 'slats': 1.0, 'rolls': 1.0, 'is': 3.0, 'snug': 1.0, 'have': 1.0, 'which': 2.0, 'happy': 1.0, 'one': 1.0, 'lot': 1.0, 'really': 1.0, 'think': 1.0, 'about': 2.0, 'gaps': 2.0, 'put': 1.0, 'mind': 1.0, 'co': 1.0, 'people': 1.0, 'take': 1.0, 'had': 1.0, 'and': 3.0, 'instructions': 1.0, 'there': 1.0, 'off': 1.0, 'mesh': 1.0, '7': 1.0, 'up': 1.0, 'change': 1.0, 'sheets': 1.0}
Word element => {'unoccupied': 1.0, 'remains': 1.0, 'arriving': 1.0, 'in': 1.0, 'help': 1.0, 'around': 1.0, 'should': 1.0, 'think': 1.0, 'week': 1.0, 'secure': 1.0, 'placed': 1.0, 'late': 1.0, 'ties': 1.0, 'properly': 1.0, 'get': 1.0, 'challenging': 1.0, 'had': 1.0, 'to': 3.0, 'now': 1.0, 'bottom': 1.0, 'up': 1.0, 'set': 1.0, 'that': 1.0, 'from': 1.0, 'including': 1.0, 'crib': 4.0, 'so': 1.0, 'everything': 1.0, 'the': 6.0, 'have': 1.0, 'itself': 1.0, 'with': 1.0, 'it': 3.0, 'bit': 1.0, 'amazon': 1.0, 'is': 2.0, 'looks': 1.0, 'really': 1.0, 'i': 2.0, 'cute': 1.0, 'found': 1.0, 'baby': 1.0, 'mesh': 1.0, 'already': 1.0, 'bumper': 1.0, 'a': 2.0}
Word element => {'buy': 1.0, 'though': 1.0, 'one': 2.0, 'having': 1.0, 'insist': 1.0, 'if': 1.0, 'using': 1.0, 'on': 2.0, 'plan': 1.0, 'do': 1.0, 'again': 1.0, 'pregnant': 1.0, 'am': 1.0, 'just': 1.0, 'say': 1.0, 'all': 1.0, 'bases': 1.0, 'my': 3.0, 'have': 2.0, 'bumper': 3.0, 'stand': 1.0, 'down': 1.0, 'crib': 2.0, 'stuck': 1.0, 'legs': 2.0, 'fuss': 1.0, 'suffocation': 1.0, 'color': 1.0, 'getting': 1.0, 'arms': 2.0, 'and': 6.0, 'necessary': 1.0, 'the': 10.0, 'of': 2.0, 'over': 1.0, 'covered': 2.0, 'bumpers': 3.0, 'be': 1.0, 'to': 8.0, 'was': 2.0, 'it': 6.0, 'felt': 1.0, 'with': 2.0, 'this': 5.0, 'breathable': 1.0, 'purchased': 1.0, 'originally': 1.0, 'from': 1.0, 'confused': 1.0, 'very': 3.0, 'knowing': 1.0, 'up': 1.0, 'mesh': 1.0, 'hazard': 1.0, 'about': 1.0, 'said': 2.0, 'in': 1.0, 'people': 1.0, 'skip': 1.0, 'safe': 2.0, 'keep': 2.0, 'makes': 1.0, 'they': 2.0, 'were': 2.0, 'some': 1.0, 'others': 1.0, 'would': 2.0, 'any': 1.0, 'keeps': 1.0, 'so': 1.0, 'can': 1.0, '2': 1.0, 'but': 1.0, 't': 1.0, 'fit': 1.0, 'for': 1.0, 'child': 1.0, 'product': 1.0, 'a': 5.0, 'added': 1.0, 'are': 1.0, 'little': 1.0, 'nice': 1.0, '1': 1.0, 'seemed': 1.0, 'great': 1.0, 'nursery': 1.0, 'only': 1.0, 'you': 1.0, 'push': 1.0, 'complaints': 1.0, 'could': 1.0, 'alternative': 1.0, 'because': 2.0, 'that': 3.0, 'through': 2.0, 'ties': 1.0, 'middle': 1.0, 'rails': 1.0, 'i': 7.0, 'feet': 1.0, 'slipping': 1.0, 'when': 1.0, 'traditional': 1.0, 'bit': 1.0, 'easy': 1.0, 'her': 2.0, 'think': 1.0, 'always': 1.0, 'recommendation': 1.0, 'at': 1.0, 'comforted': 1.0, 'bars': 2.0, 'is': 4.0, 'now': 2.0, 'not': 2.0}
Word element => {'fine': 1.0, 'breathe': 1.0, 'still': 1.0, 'could': 1.0, 'test': 1.0, 'face': 1.0, 'around': 1.0, 'wrapped': 1.0, 'then': 1.0, 's': 1.0, 'up': 1.0, 'and': 2.0, 'baby': 1.0, 'because': 1.0, 'sorry': 1.0, 'to': 2.0, 'was': 4.0, 'i': 6.0, 'better': 1.0, 'if': 2.0, 'safe': 2.0, 'against': 1.0, 'but': 1.0, 'your': 1.0, 'liner': 1.0, 'paranoid': 1.0, 'think': 2.0, 'the': 1.0, 'my': 2.0, 'daughter': 1.0, 'would': 1.0, 'never': 1.0, 'be': 2.0, 'bought': 1.0, 'only': 1.0, 'this': 1.0, 'it': 5.0}
Word element => {'well': 1.0, 'its': 1.0, 'do': 1.0, 'sure': 1.0, 'one': 1.0, 'after': 1.0, 'already': 1.0, 'issues': 1.0, 'have': 1.0, 'disappointing': 1.0, 'straight': 1.0, 'velcro': 1.0, 'adjust': 1.0, 'difficult': 1.0, 'install': 1.0, 'went': 1.0, 'husband': 1.0, 'will': 1.0, 'cycle': 1.0, 'item': 1.0, 'installing': 1.0, 'about': 1.0, 'mesh': 1.0, 'it': 7.0, 'this': 2.0, 'my': 1.0, 'purchase': 1.0, 'bumper': 1.0, 'and': 5.0, 'appealing': 1.0, 'got': 1.0, 'safety': 1.0, 'so': 2.0, 'to': 5.0, 'store': 1.0, 'was': 3.0, 'm': 1.0, 'onto': 1.0, '10': 1.0, 'when': 1.0, 'idea': 1.0, 'is': 3.0, 'amazon': 1.0, 'job': 1.0, 'the': 4.0, 'excellent': 1.0, 'not': 1.0, 'able': 1.0, 'warped': 1.0, 'of': 1.0, 'product': 1.0, 'for': 2.0, 'than': 1.0, 'i': 5.0, 'complicated': 1.0, 'up': 1.0, 'cheaper': 1.0, 'wash': 2.0, 'little': 2.0, 'crib': 2.0, 'on': 3.0, 'put': 1.0, 'but': 2.0, 'we': 1.0, 'lined': 1.0, 'a': 6.0, 's': 1.0, 'that': 2.0, 'downrated': 1.0, 'gentle': 2.0, 'through': 1.0, 'in': 1.0, 'air': 1.0, 'why': 1.0, 'ran': 1.0, 'dry': 1.0, 'before': 1.0}
Word element => {'an': 1.0, 'white': 2.0, 'have': 2.0, 'everyone': 1.0, 'to': 1.0, 'recommend': 1.0, 'd': 1.0, 'are': 1.0, 'of': 1.0, 'so': 1.0, 'breathable': 1.0, 'edge': 1.0, 'over': 1.0, 'right': 1.0, 'worries': 1.0, 'boost': 1.0, 'him': 1.0, 'giving': 1.0, 'be': 1.0, 'super': 1.0, 'would': 1.0, 'with': 1.0, 'came': 1.0, 'gone': 1.0, 'no': 1.0, 'at': 1.0, 'most': 1.0, 'but': 2.0, 'crib': 2.0, 'little': 1.0, 'had': 1.0, 'now': 1.0, 'originally': 1.0, 'definitely': 2.0, 'cute': 1.0, 'my': 2.0, 'this': 2.0, 'he': 2.0, 'it': 2.0, 'ugly': 2.0, 'the': 7.0, 'kiddo': 1.0, 'suffocation': 1.0, 'one': 1.0, 'night': 1.0, 'on': 2.0, 'is': 2.0, 'not': 4.0, 'just': 1.0, 'fancy': 1.0, 'that': 2.0, 'and': 5.0, 'getting': 1.0, 'hated': 1.0, 'rails': 1.0, 'storing': 1.0, 'pushes': 1.0, 'importantly': 1.0, 'his': 1.0, 'bumper': 3.0, 'longer': 1.0, 'down': 1.0, 'off': 2.0, 'legs': 1.0, 'stuck': 1.0, 'folding': 1.0, 'also': 1.0, 'through': 1.0, 'i': 4.0, 'become': 1.0, 'bedding': 1.0, 'steps': 1.0, 's': 2.0, 'a': 2.0, 'climber': 1.0, 'when': 1.0, 'great': 1.0, 'big': 1.0}
Word element => {'redesign': 1.0, 'into': 1.0, 'review': 1.0, 'see': 1.0, 'from': 1.0, 'hopefully': 1.0, 'figure': 1.0, 'will': 1.0, 'genius': 1.0, 'doesn': 1.0, 'it': 1.0, 'take': 2.0, 'then': 1.0, 'around': 1.0, 'way': 1.0, 'more': 1.0, 'were': 1.0, 'stay': 1.0, 'if': 1.0, 'bumpers': 4.0, 'breathable': 1.0, 'hard': 1.0, 'knees': 1.0, 'forth': 1.0, 'on': 2.0, 'strong': 1.0, 'months': 1.0, 'bought': 1.0, '8': 1.0, 'consideration': 1.0, 'down': 2.0, 'bumper': 2.0, 'or': 1.0, 'about': 1.0, 'no': 1.0, 'her': 4.0, 'hit': 2.0, 'these': 2.0, 'head': 2.0, 'wasn': 2.0, 'rails': 1.0, 'out': 2.0, 'loose': 1.0, 'comfortable': 1.0, 'padded': 1.0, 'hands': 2.0, 'she': 5.0, 'back': 2.0, 'but': 2.0, '2': 1.0, 'all': 1.0, 'helped': 1.0, 'are': 2.0, 't': 3.0, 'slightly': 1.0, 'crib': 2.0, 'they': 3.0, 'feet': 1.0, 'i': 3.0, 'a': 1.0, 'unattached': 1.0, 'become': 1.0, 'initially': 1.0, 'because': 2.0, 'that': 5.0, 'when': 3.0, 'remainder': 1.0, 'younger': 1.0, 'as': 1.0, 'was': 1.0, 'and': 12.0, 'one': 2.0, 'too': 1.0, 'kind': 1.0, 'started': 1.0, 'them': 3.0, 'just': 1.0, 'someone': 1.0, 'd': 1.0, 'position': 1.0, 'provided': 1.0, 'rocking': 1.0, 'this': 2.0, 'mattress': 1.0, 'padding': 1.0, 'fabric': 1.0, 'for': 1.0, 'my': 2.0, 'main': 1.0, 'gripe': 1.0, 'the': 14.0, 'of': 3.0, 'with': 2.0, 'is': 2.0, 'there': 2.0, 'company': 1.0, 'only': 1.0, 'ties': 2.0, 'm': 1.0, 'in': 2.0, 'front': 1.0, 'constantly': 2.0, 'so': 2.0, 'pretty': 1.0, 'to': 5.0, 'against': 2.0, 'leaves': 1.0, 'got': 1.0, 'daughter': 1.0, 'pull': 1.0, 'push': 1.0, 'able': 1.0, 'would': 2.0, 'sliding': 1.0, 'flat': 1.0, 'proper': 1.0, '7': 1.0, 'up': 1.0, 'bunch': 1.0, 'also': 1.0, 'using': 1.0, 'readjusting': 1.0}
Word element => {'recommend': 1.0, 'was': 1.0, 'oldest': 1.0, 'highly': 1.0, 'material': 1.0, 'mesh': 1.0, 'still': 1.0, 'sids': 1.0, 'worry': 1.0, 'against': 1.0, 'don': 1.0, 'faced': 1.0, 'her': 1.0, 'has': 1.0, 'even': 1.0, 'also': 1.0, 'bumper': 3.0, 'breathable': 1.0, 'now': 1.0, 'old': 2.0, 'i': 6.0, '6': 1.0, 'of': 3.0, 'after': 1.0, 'had': 1.0, 'contained': 1.0, 'my': 4.0, 're': 1.0, 'wall': 1.0, 'pressed': 1.0, 'about': 2.0, 'ordered': 1.0, 'years': 1.0, 'absolutely': 1.0, 'pacifiers': 1.0, 'baby': 1.0, 'night': 2.0, 'them': 1.0, 'wasn': 1.0, 'out': 1.0, 'she': 1.0, 'loses': 1.0, 'month': 2.0, 'it': 2.0, 'wish': 1.0, 'this': 2.0, 'with': 3.0, 'sure': 1.0, 'ago': 1.0, 'breath': 1.0, 'a': 1.0, 's': 1.0, 't': 2.0, 'behind': 1.0, 'the': 9.0, 'use': 1.0, 'instead': 1.0, 'can': 1.0, '2': 3.0, 'but': 1.0, 'when': 3.0, 'am': 1.0, 'since': 1.0, 'at': 2.0, 'sold': 1.0, 'and': 1.0, '1': 1.0, 'they': 3.0, 'fall': 1.0, 'crib': 4.0, 'fishing': 1.0, 'year': 1.0, 'did': 1.0, 'in': 3.0, 'dark': 1.0, 'as': 1.0, 'all': 2.0}
Word element => {'monitor': 1.0, 'just': 1.0, 'regular': 1.0, 'back': 1.0, 'fine': 1.0, 'right': 1.0, 'these': 2.0, 'aware': 1.0, 'the': 2.0, 'bulky': 1.0, 'loose': 1.0, '34': 2.0, 'flimsy': 1.0, 'i': 2.0, 'and': 4.0, 'super': 1.0, 'of': 1.0, 'once': 1.0, 'well': 1.0, 'even': 1.0, 'didn': 1.0, 'crib': 2.0, 'disagree': 1.0, 'have': 1.0, 'be': 1.0, 'bumpers': 2.0, 'are': 1.0, 'ones': 1.0, 'yes': 1.0, 'hype': 1.0, 'surrounding': 1.0, 'fit': 1.0, 'to': 1.0, 'all': 1.0, 'our': 1.0, 'were': 1.0, 'their': 1.0, 'they': 2.0, 'on': 1.0, 'your': 2.0, 't': 1.0, 'a': 1.0, 'go': 1.0, 'we': 1.0, 'breathable': 1.0, 'standard': 1.0, 'will': 1.0, 'also': 1.0, 'am': 1.0, 'respectfully': 1.0, 'you': 2.0, 'witness': 1.0, 'head': 1.0, 'baby': 2.0, 'hitting': 1.0, 'll': 1.0}
Word element => {'put': 1.0, 'together': 1.0, 'velcro': 1.0, 'just': 1.0, 'pieces': 1.0, 'there': 1.0, 'are': 2.0, 'they': 2.0, 'have': 1.0, 'ran': 1.0, 'you': 1.0, 'when': 1.0, 'rails': 1.0, 'crib': 1.0, 'through': 1.0, 'from': 1.0, 'very': 1.0, 'little': 1.0, 'easy': 1.0, 'get': 3.0, 'it': 3.0, 'he': 1.0, 'but': 1.0, 'an': 1.0, 'to': 3.0, 'with': 1.0, 'buying': 1.0, 'two': 1.0, 'i': 6.0, 'across': 1.0, 'and': 2.0, 'green': 1.0, 'one': 2.0, 'purchasing': 1.0, 'love': 1.0, 'once': 1.0, 'of': 1.0, 'the': 2.0, 'in': 3.0, 'stuck': 1.0, 'before': 1.0, 'had': 2.0, 'what': 1.0, 'used': 1.0, 'so': 2.0, 'oldest': 1.0, 'install': 1.0, 'nice': 1.0, 'here': 1.0, 'bumpers': 1.0, 'these': 3.0, 'knew': 1.0, 'foot': 1.0, 'vs': 1.0, 'was': 2.0, 'store': 1.0, 'breathable': 1.0, 'my': 1.0, 'a': 2.0, 'we': 1.0, 'arm': 1.0, 'never': 1.0, 'savings': 1.0, 'would': 1.0, 'bumper': 1.0, 'yes': 1.0, 'occasionally': 1.0, 'or': 1.0}
Word element => {'from': 1.0, 'rescue': 1.0, 'and': 1.0, 'have': 1.0, 'since': 1.0, 'better': 1.0, 'sleeping': 1.0, 'also': 1.0, 're': 1.0, 'result': 1.0, 'go': 1.0, 't': 1.0, 'we': 2.0, 'a': 1.0, 'losing': 1.0, 'getting': 1.0, 'peacefully': 1.0, 'or': 3.0, 'slats': 3.0, 'edge': 1.0, 'feet': 1.0, 'her': 6.0, 'used': 1.0, 'even': 1.0, 'night': 1.0, 'relatively': 1.0, 'baby': 1.0, 'the': 7.0, 'my': 1.0, 'stuck': 2.0, 'in': 3.0, 'this': 2.0, 'sleepers': 1.0, 'i': 1.0, 'as': 1.0, 'to': 3.0, 'animal': 2.0, 'excellent': 1.0, 'stuffed': 1.0, 'had': 1.0, 'now': 1.0, 'an': 1.0, 'liner': 2.0, 'for': 2.0, 'parents': 1.0, 'of': 2.0, 'crib': 4.0, 'directions': 1.0, 'active': 1.0, 'lose': 2.0, 'don': 1.0, 'over': 1.0, 'favorite': 2.0, 'through': 2.0, 'placing': 1.0, 'no': 2.0, 'pacifier': 1.0, 'are': 1.0, 'is': 1.0, 'sleeps': 1.0, 'time': 1.0, 'so': 1.0, 'get': 1.0, 'easy': 1.0, 'it': 1.0, 'she': 1.0, 'follow': 1.0, 'installed': 1.0}
Word element => {'in': 1.0, 'whiteness': 1.0, 'off': 1.0, 'slight': 1.0, 'it': 3.0, 'can': 1.0, 'to': 1.0, 'supposed': 1.0, 'product': 1.0, 'however': 1.0, 'you': 1.0, 'and': 2.0, 'do': 1.0, 'white': 2.0, 'what': 1.0, 'does': 1.0, 'fine': 1.0, 'is': 3.0, 'the': 2.0, 'not': 1.0, 'true': 1.0, 'itself': 1.0, 'have': 1.0, 'we': 1.0, 'crib': 1.0, 'a': 1.0, 'see': 1.0}
Word element => {'out': 1.0, 'tore': 1.0, 'guess': 1.0, 'i': 1.0, 'them': 1.0, 'first': 1.0, 'with': 1.0, 'it': 4.0, 'wrap': 1.0, 'the': 4.0, 'these': 1.0, 'great': 1.0, 'side': 1.0, 'of': 1.0, 'child': 1.0, 'up': 2.0, 'were': 1.0, 'lot': 1.0, 'a': 2.0, 'we': 2.0, 'so': 1.0, 'use': 1.0, 'got': 1.0, 'safety': 1.0, 'idea': 1.0, 'when': 1.0, 'for': 1.0, 'one': 1.0, 'was': 1.0, 'our': 2.0, 'to': 5.0, 'obsessed': 1.0, 'had': 1.0, 'pain': 1.0, 'on': 1.0, 'more': 1.0, 'is': 1.0, 'around': 1.0, 'crib': 1.0, 'double': 1.0, 'eventually': 1.0, 'son': 1.0, 'would': 1.0, 'pull': 1.0, 'himself': 1.0, 'stand': 1.0, 'straps': 1.0, 'holding': 1.0, 'bars': 1.0}
Word element => {'son': 1.0, 'my': 1.0, 'once': 1.0, 'altogether': 1.0, 'problem': 1.0, 'pretty': 1.0, 'only': 1.0, 'remove': 1.0, 'it': 7.0, 'this': 1.0, 'the': 2.0, 'traditional': 1.0, 'doesn': 1.0, 'but': 1.0, 'will': 1.0, 'snug': 1.0, 'bumper': 2.0, 'bought': 1.0, 'be': 1.0, 'is': 2.0, 'around': 1.0, 'just': 1.0, 'not': 1.0, 'would': 1.0, 'probably': 1.0, 'crib': 1.0, 'in': 1.0, 'pieces': 1.0, 'thought': 1.0, 'that': 1.0, 'because': 1.0, 'than': 1.0, 't': 1.0, 'a': 2.0, 's': 4.0, 'long': 1.0, 'and': 2.0, 'safer': 1.0, 'wraps': 1.0, 'bit': 1.0, 'so': 1.0, 'there': 1.0, 'fabric': 1.0, 'separate': 1.0, 'i': 3.0, 'two': 1.0, 'nice': 1.0, 'extra': 1.0, 'looking': 1.0, 'm': 1.0, 'using': 1.0, 'fit': 1.0, 'for': 1.0, 'older': 1.0, 'now': 1.0}
Word element => {'make': 1.0, 'side': 1.0, 'pieces': 1.0, 'can': 1.0, '2': 1.0, 'in': 1.0, 'should': 1.0, 'baby': 1.0, 'buy': 1.0, 'you': 2.0, 'when': 1.0, 'again': 1.0, 'works': 1.0, 'use': 2.0, 'll': 1.0, 'bumper': 1.0, 'just': 1.0, 'worried': 1.0, 'was': 3.0, 'takes': 1.0, 'fine': 1.0, 'right': 1.0, 'quite': 1.0, 'her': 1.0, 'wouldn': 1.0, 'it': 8.0, 'adjusting': 1.0, 'with': 1.0, 'i': 6.0, 'step': 1.0, 'old': 2.0, 'bought': 1.0, 'enough': 1.0, 'comes': 1.0, 'around': 1.0, 'the': 3.0, 'we': 1.0, 't': 2.0, 'a': 5.0, 'mini': 1.0, 'next': 1.0, 'that': 2.0, 'collapsible': 1.0, 'dd': 1.0, 'my': 2.0, 'daughter': 1.0, 'fit': 3.0, 'for': 3.0, 'liked': 1.0, 'size': 1.0, 'crib': 5.0, 'so': 1.0, 'knew': 1.0, 'to': 3.0, 'as': 2.0, 'know': 1.0, 'which': 1.0, 'full': 1.0, 'this': 2.0, 'scared': 1.0, 'style': 1.0, 'me': 1.0, 'starting': 1.0, 'and': 1.0, 'wasn': 1.0, 'about': 1.0, 'new': 1.0, 'drop': 1.0, 'breathability': 1.0, 'of': 1.0, 'because': 1.0, 'however': 1.0, 'move': 1.0, 'played': 1.0, 'while': 1.0}
Word element => {'for': 1.0, 'entire': 1.0, 'can': 1.0, 'works': 1.0, 'mattress': 1.0, 'in': 1.0, 'tuck': 1.0, 'solution': 1.0, 'bars': 1.0, 'top': 1.0, 'out': 1.0, 'tall': 1.0, 'us': 1.0, 'too': 1.0, 'is': 1.0, 'liner': 2.0, 'on': 1.0, 'sticks': 1.0, 'install': 1.0, 'to': 1.0, 'of': 3.0, 'cute': 1.0, 'sides': 1.0, 'very': 1.0, 'and': 2.0, 'tricky': 1.0, 'lower': 1.0, 'you': 1.0, 's': 2.0, 'it': 4.0, 'although': 1.0, 'our': 2.0, 'little': 1.0, 'crib': 2.0, 't': 1.0, 'behind': 1.0, 'the': 8.0, 'are': 1.0, 'see': 1.0, 'a': 1.0, 'front': 1.0, 'but': 1.0, 'back': 1.0, 'than': 1.0, 'so': 1.0}
Word element => {'over': 1.0, 'sleeps': 1.0, 'my': 1.0, 'the': 1.0, 'more': 1.0, 'out': 1.0, 'of': 1.0, 'no': 1.0, 'putting': 1.0, 'hurt': 1.0, 'was': 1.0, 'feet': 1.0, 'that': 1.0, 'crib': 1.0, 'little': 1.0, 'will': 1.0, 'grandson': 1.0, 'he': 2.0, 'this': 1.0, 'product': 1.0, 'his': 1.0, 'works': 1.0, 'worry': 1.0, 'himself': 1.0, 'when': 1.0}
Word element => {'to': 1.0, 'ties': 1.0, 'recommend': 1.0, 'easy': 1.0, 'cribs': 1.0, 'multiple': 1.0, 'fit': 1.0, 'size': 1.0, 'can': 1.0, 'it': 2.0, 'place': 1.0, 'breathable': 1.0, 'how': 1.0, 'i': 1.0, 'install': 1.0, 'and': 2.0, 'up': 1.0, 'great': 1.0, 'the': 1.0, 'are': 1.0, 'extra': 1.0, 'love': 1.0, 'for': 1.0, 'in': 1.0, 'definately': 1.0, 'holding': 1.0}
Word element => {'say': 1.0, 'nothing': 1.0, 'have': 1.0, 'impressive': 1.0, 'its': 1.0, 'perfect': 2.0, 'i': 2.0, 'needed': 1.0, 'to': 1.0, 'exactly': 1.0, 'what': 1.0, 'looking': 1.0, 'very': 1.0, 'and': 1.0, 'else': 1.0, 'material': 1.0, 'was': 1.0, 'for': 1.0}
Word element => {'this': 1.0, 'thank': 1.0, 'breathe': 1.0, 'know': 1.0, 'because': 1.0, 'all': 1.0, 'wants': 1.0, 'cuddle': 1.0, 'against': 1.0, 'god': 1.0, 'and': 1.0, 'corner': 1.0, 'a': 1.0, 'scoot': 1.0, 'loves': 1.0, 'safe': 1.0, 'video': 1.0, 'them': 1.0, 'youtube': 1.0, 'invention': 1.0, 'she': 4.0, 'learn': 1.0, 'how': 1.0, 'simple': 1.0, 'for': 1.0, 'love': 1.0, 'can': 3.0, 'peacefully': 1.0, 'these': 1.0, 'the': 2.0, 'snuggle': 1.0, 'my': 1.0, 'i': 4.0, 'to': 4.0, 'watched': 1.0, 'now': 2.0, 'herself': 2.0, 'is': 1.0, 'bumpers': 2.0, 'knowing': 1.0, 'rest': 1.0, 'baby': 1.0, 'install': 1.0, 'girl': 1.0}
Word element => {'product': 1.0, 'to': 2.0, 'this': 1.0, 'with': 1.0, 'is': 1.0, 'crib': 1.0, 'in': 1.0, 'match': 1.0, 'son': 1.0, 'safer': 1.0, 'his': 1.0, 'love': 1.0, 'my': 1.0, 'the': 1.0, 'that': 1.0, 'i': 1.0, 'not': 1.0, 'at': 1.0, 'blanket': 1.0, 'worry': 1.0, 'have': 1.0, 'all': 1.0, 'do': 1.0, 'and': 1.0, 'ordered': 1.0}
Word element => {'sides': 1.0, 'near': 1.0, 'sleeping': 1.0, 'pain': 1.0, 'the': 2.0, 'about': 1.0, 'baby': 1.0, 'your': 1.0, 'like': 1.0, 'wedged': 1.0, 'after': 1.0, 'but': 2.0, 'still': 1.0, 'save': 1.0, 'forget': 1.0, 'ordered': 1.0, 'trying': 1.0, 'her': 3.0, 'in': 1.0, 'stuck': 1.0, 'it': 1.0, 'this': 2.0, 'a': 1.0, 'leg': 2.0, 'go': 1.0, 'girl': 1.0, 'slats': 1.0, 'crib': 1.0, 'little': 1.0, 'my': 1.0, 'get': 1.0, 'and': 2.0, 'i': 1.0, 'seeing': 1.0, 'evening': 1.0, 'that': 2.0, 'was': 1.0, 'to': 1.0, 'safe': 1.0, 'no': 1.0, 'feel': 1.0, 'instead': 1.0, 'got': 1.0, 'bumper': 1.0}
Word element => {'m': 1.0, 'i': 1.0, 'online': 1.0, 'cheapest': 1.0, 'velcro': 1.0, 'well': 1.0, 'stays': 1.0, 'install': 1.0, 'get': 1.0, 'easy': 1.0, 'very': 1.0, 'out': 1.0, 'falling': 1.0, 'pacifier': 1.0, 'pleased': 1.0, 'used': 1.0, 'what': 1.0, 'and': 2.0, 'play': 2.0, 'during': 2.0, 'n': 2.0, 'from': 1.0, 'hard': 1.0, 'it': 4.0, 'pack': 2.0, 'an': 1.0, 'but': 1.0, 'fits': 1.0, 'my': 1.0, 'extended': 1.0, 'after': 1.0, 'doesn': 1.0, 'was': 5.0, 'all': 1.0, 'outside': 1.0, 'our': 1.0, 'to': 5.0, 'night': 1.0, 'baby': 2.0, 'mesh': 1.0, 't': 1.0, 'a': 2.0, 'in': 3.0, 'slept': 1.0, 'also': 2.0, 'so': 2.0, 'time': 1.0, 'sleeping': 1.0, 'which': 1.0, 'he': 3.0, 'vacation': 1.0, 'crib': 4.0, 'cuddling': 1.0, 'up': 1.0, 'of': 2.0, 'place': 2.0, 'the': 8.0, 'around': 1.0, 'is': 1.0, 'more': 1.0, 'this': 2.0, 'soft': 1.0, 'sides': 1.0, 'having': 1.0, 'breathable': 1.0, 'perfectly': 1.0, 'bumper': 1.0, 'just': 1.0, 'bother': 1.0, 'needed': 1.0, 'snuggly': 1.0, 'on': 1.0, 'make': 1.0, 'his': 2.0, 'edges': 1.0, 'still': 1.0, 'pretty': 1.0, 'safe': 1.0, 'keeps': 1.0}
Word element => {'of': 1.0, 'waste': 1.0, 'while': 1.0, 'could': 1.0, 'so': 1.0, 'we': 3.0, 'store': 1.0, 'have': 1.0, 'took': 1.0, 'touch': 1.0, 'to': 1.0, 'had': 1.0, 'in': 1.0, 'if': 2.0, 'it': 4.0, 'sure': 1.0, 'bought': 1.0, 'see': 1.0, 'a': 2.0, 'not': 2.0, 'would': 1.0, 'very': 1.0, 'but': 1.0, 'plasticy': 1.0, 'chance': 1.0, 'for': 1.0, 'polyestery': 1.0, 'does': 1.0, 'sleep': 1.0, 'off': 1.0, 'good': 1.0, 'the': 2.0, 'money': 1.0, 'any': 1.0, 'baby': 2.0}
Word element => {'buy': 1.0, 'great': 1.0, 'a': 1.0, 's': 2.0, 'alarming': 1.0, 'slats': 1.0, 'crib': 2.0, 'limbs': 1.0, 'liner': 1.0, 'your': 1.0, 'her': 2.0, 'what': 1.0, 'painful': 1.0, 'this': 1.0, 'moving': 1.0, 'getting': 1.0, 'and': 2.0, 'do': 1.0, 'the': 2.0, 'making': 1.0, 'stuck': 1.0, 'in': 2.0, 'mesh': 2.0, 'started': 2.0, 'baby': 2.0, 'i': 1.0, 'when': 1.0, 'it': 3.0, 'she': 1.0, 'their': 1.0, 'sleep': 1.0, 'our': 1.0, 'to': 2.0, 'does': 1.0, 'because': 1.0, 'find': 1.0, 'strangely': 1.0, 'contorted': 1.0, 'crying': 1.0, 'wriggling': 1.0, 'around': 1.0, 'more': 1.0, 'is': 2.0, 'bumper': 1.0, 'priced': 1.0, 'well': 1.0, 'pretty': 1.0, 'safe': 1.0, 'love': 1.0, 'supposed': 1.0}
Word element => {'is': 1.0, 'told': 1.0, 'am': 1.0, 'also': 1.0, 'in': 1.0, 'wash': 1.0, 'put': 1.0, 'but': 1.0, 'use': 1.0, 'easy': 2.0, 'used': 1.0, 'haven': 1.0, 'the': 2.0, 't': 1.0, 'it': 3.0, 'i': 1.0, 'best': 1.0, 'to': 3.0, 'yet': 1.0, 'for': 1.0, 'crib': 2.0, 'a': 1.0, 'thing': 1.0, 'babies': 1.0, 's': 1.0, 'and': 1.0}
Word element => {'knowing': 1.0, 'go': 1.0, 'can': 1.0, 'to': 1.0, 'now': 1.0, 'that': 2.0, 'but': 1.0, 'crib': 1.0, 'white': 1.0, 'safe': 3.0, 'i': 2.0, 'beautiful': 1.0, 'have': 1.0, 'and': 2.0, 'got': 1.0, 'bumper': 1.0, 'most': 1.0, 'bed': 1.0, 'one': 1.0, 'for': 2.0, 'looks': 1.0, 'is': 4.0, 'a': 1.0, 'gorgeous': 1.0, 'the': 2.0, 'pacefully': 1.0, 'my': 2.0, 'best': 1.0, 'pink': 1.0, 'baby': 2.0, 'girl': 1.0, 'this': 1.0, 'with': 1.0, 'it': 2.0, 'part': 1.0, 'her': 2.0}
Word element => {'comfort': 1.0, 'a': 1.0, 'slats': 1.0, 'crib': 1.0, 'in': 1.0, 'feet': 1.0, 'his': 1.0, 'get': 1.0, 'family': 1.0, 'stuck': 1.0, 'loves': 1.0, 'him': 1.0, 'it': 1.0, 'their': 1.0, 'little': 1.0, 'very': 1.0, 'and': 1.0, 'one': 1.0, 'having': 1.0, 'is': 2.0, 'not': 1.0, 'active': 1.0}
Word element => {'problems': 1.0, 'no': 1.0, 'with': 1.0, 'time': 1.0, 'second': 1.0, 'this': 1.0, 'it': 3.0, 'silk': 1.0, 'but': 1.0, 'back': 1.0, 'we': 3.0, 'moved': 1.0, 'and': 4.0, 'get': 1.0, 'construction': 1.0, 'roll': 1.0, 'not': 1.0, 'just': 2.0, 'made': 1.0, 'its': 2.0, 'our': 1.0, 'to': 1.0, 'expected': 1.0, 'clean': 1.0, 'good': 1.0, 'or': 1.0, 'of': 1.0, 'put': 1.0, 'on': 2.0, 'over': 1.0, 'anything': 1.0, 'had': 1.0, 'what': 1.0, 'his': 1.0, 'i': 1.0, 'baby': 1.0, 'would': 1.0, 'off': 2.0, 'legs': 1.0, 'reusable': 1.0, 'stuck': 1.0, 'the': 2.0, 'between': 1.0, 'slats': 1.0, 'because': 1.0, 'installed': 1.0, 'take': 1.0, 'came': 1.0, 'then': 1.0, 'when': 1.0, 'fine': 1.0, 'went': 1.0}
Word element => {'out': 1.0, 'of': 1.0, 'up': 1.0, 'we': 1.0, 'once': 1.0, 'through': 1.0, 'because': 1.0, 'started': 2.0, 'slats': 1.0, 'crib': 2.0, 'wake': 1.0, 'in': 2.0, 'stuck': 1.0, 'have': 1.0, 'getting': 1.0, 'wouldn': 1.0, 'he': 2.0, 'this': 1.0, 'it': 3.0, 'him': 1.0, 'sleeping': 1.0, 'from': 2.0, 'keeps': 1.0, 'is': 1.0, 'suffocating': 1.0, 'bumper': 1.0, 't': 2.0, 'great': 1.0, 'the': 3.0, 'rails': 1.0, 'but': 1.0, 'night': 1.0, 'i': 1.0, 'to': 1.0, 'hanging': 1.0, 'worry': 1.0, 'baby': 1.0, 'don': 1.0, 'about': 1.0}
Word element => {'helped': 1.0, 'makes': 1.0, 'over': 1.0, 'themselves': 1.0, 'get': 1.0, 't': 1.0, 'don': 1.0, 'fling': 1.0, 'so': 1.0, 'collapses': 1.0, 'climb': 1.0, 'through': 1.0, 'then': 1.0, 'up': 1.0, 'hey': 1.0, 'face': 1.0, 'even': 1.0, 'little': 3.0, 'went': 1.0, 'satiny': 1.0, 'child': 1.0, 'product': 1.0, 'bumper': 3.0, 'far': 1.0, 'bottom': 1.0, 'happy': 2.0, 'one': 3.0, 'try': 1.0, 'only': 1.0, 'environment': 1.0, 'and': 6.0, 'as': 4.0, 'to': 7.0, 'they': 1.0, 'sleeping': 1.0, 'safer': 1.0, 'silly': 1.0, 'created': 1.0, 'limb': 1.0, 'confused': 1.0, 'has': 2.0, 'epidemic': 1.0, 'when': 1.0, 'breathe': 1.0, 'old': 1.0, 'that': 2.0, 'my': 4.0, 'not': 1.0, 'was': 3.0, 'recommend': 1.0, 'i': 5.0, 'tiny': 1.0, 'a': 8.0, 'solved': 1.0, 'month': 1.0, 'boost': 1.0, 'it': 5.0, 'nightly': 1.0, 'occurence': 1.0, 'more': 1.0, 'comes': 1.0, 'around': 1.0, 'wraps': 1.0, '2': 1.0, 'but': 3.0, 'this': 3.0, 'with': 4.0, 'put': 2.0, 'on': 1.0, 'any': 1.0, 'your': 1.0, 'stuck': 1.0, 'also': 2.0, 'railing': 1.0, 'will': 1.0, 'satisfied': 1.0, 'beautifully': 1.0, 'made': 1.0, 'home': 2.0, 'for': 1.0, 'fabric': 1.0, 'is': 2.0, 'at': 2.0, 'installation': 1.0, 'top': 1.0, 'back': 1.0, 'reaches': 1.0, 'in': 2.0, 'mommy': 1.0, 'age': 2.0, 'many': 1.0, 'colors': 1.0, 'know': 1.0, 'bit': 1.0, 'time': 1.0, 'instructions': 1.0, 'restful': 1.0, 'front': 2.0, 'first': 1.0, 'are': 1.0, 'vague': 1.0, 'figured': 1.0, 'out': 2.0, 'no': 1.0, 'suggestion': 1.0, 'than': 1.0, 'definitely': 3.0, 'parent': 1.0, 'crib': 2.0, 'longer': 1.0, 'the': 12.0, 'of': 2.0, 'extra': 1.0, 'trying': 1.0}
Word element => {'for': 1.0, 'definitely': 1.0, 'more': 1.0, 'liner': 1.0, 'be': 1.0, 'see': 1.0, 'a': 2.0, 'thru': 1.0, 'would': 1.0, 'was': 2.0, 'normal': 1.0, 'crib': 2.0, 'wish': 1.0, 'it': 1.0, 'this': 2.0, 'have': 1.0, 'i': 3.0, 'like': 1.0, 'and': 2.0, 'bit': 1.0, 'sized': 1.0, 'thought': 1.0, 'mesh': 1.0, 'enough': 1.0, 'long': 1.0}
Word element => {'don': 1.0, 'please': 1.0, 'baby': 2.0, 'this': 1.0, 'trying': 1.0, 'regret': 1.0, 'fully': 1.0, 'never': 1.0, 'children': 1.0, 'your': 1.0, 'put': 1.0, '3': 1.0, 'had': 1.0, 'i': 2.0, 'suffocated': 1.0, 'immediately': 1.0, 'scream': 1.0, 'heard': 1.0, 'needed': 1.0, 'hadn': 1.0, 'room': 1.0, 'crib': 2.0, 'and': 3.0, 'slats': 1.0, 'between': 1.0, 'twins': 1.0, 'stuck': 1.0, 'in': 3.0, 'yesterday': 1.0, 'no': 1.0, 'who': 1.0, 'at': 1.0, 'of': 2.0, 'there': 1.0, 'one': 2.0, 'adults': 1.0, 'sit': 1.0, 'have': 3.0, 'the': 6.0, 'my': 1.0, 'run': 1.0, '7': 1.0, 'got': 2.0, 'bumper': 3.0, 'head': 1.0, 'old': 1.0, 'so': 1.0, 'time': 2.0, 'as': 1.0, 'to': 1.0, 'nap': 1.0, 's': 1.0, 'a': 2.0, 'could': 1.0, 't': 3.0, 'we': 1.0, 'but': 1.0, 'was': 1.0, 'doesn': 1.0, 'month': 1.0, 'it': 1.0, 'she': 3.0, 'yet': 1.0, 'or': 1.0, 'with': 1.0, 'crawl': 1.0, 'were': 1.0, 'assume': 1.0, 'by': 1.0, 'rolling': 1.0, 'if': 1.0, 'her': 2.0, 'nanny': 1.0}
Word element => {'desired': 1.0, 'tighten': 1.0, 'or': 1.0, 'stretch': 1.0, 'velcro': 1.0, 'there': 1.0, 'worried': 1.0, 'you': 1.0, 'if': 1.0, 'would': 1.0, 'is': 1.0, 'around': 1.0, 'your': 1.0, 'gaps': 1.0, 'make': 1.0, 'short': 1.0, 'long': 1.0, 'attached': 1.0, 'gets': 1.0, 'lower': 1.0, 'rail': 1.0, 'front': 1.0, 'crip': 1.0, 'have': 2.0, 'great': 1.0, 'install': 1.0, 'easy': 1.0, 'was': 1.0, 'suffocation': 1.0, 'no': 1.0, 'about': 2.0, 'worry': 1.0, 'using': 1.0, 'ended': 1.0, 'rest': 1.0, 'slatted': 1.0, 'little': 1.0, 'slats': 1.0, 'crib': 1.0, 'bigger': 1.0, 'keep': 1.0, 'are': 1.0, 'helped': 1.0, 'way': 1.0, 'always': 1.0, 'of': 2.0, 'works': 1.0, 'much': 1.0, 'do': 1.0, 'i': 4.0, 'mattress': 1.0, 'this': 5.0, 'piece': 2.0, 'with': 3.0, 'my': 1.0, 'length': 2.0, 'in': 1.0, 'daughter': 1.0, 'corner': 1.0, 'and': 6.0, 'toss': 1.0, 'too': 1.0, 'love': 1.0, 'product': 1.0, 'all': 2.0, 'as': 3.0, 'to': 9.0, 'up': 3.0, 'binky': 1.0, 'has': 1.0, 'good': 1.0, 'her': 3.0, 'recomend': 1.0, 'does': 1.0, 'standard': 1.0, 'down': 1.0, 'bumper': 3.0, 'go': 1.0, 'we': 2.0, 'a': 3.0, 'enough': 1.0, 'legs': 1.0, 'foot': 2.0, 'the': 8.0, 'hanging': 1.0, 'out': 1.0, 'loves': 2.0, 'that': 2.0, 'scoot': 1.0, 'so': 1.0, 'far': 1.0, 'looks': 1.0, 'it': 4.0, 'stopped': 1.0, 'she': 2.0, 'right': 1.0, 'not': 2.0}
Word element => {'recommended': 1.0, 'things': 1.0, 'having': 1.0, 'check': 1.0, 'back': 1.0, 'lets': 1.0, 'us': 3.0, 'that': 2.0, 'plus': 1.0, 'anything': 1.0, 'buried': 1.0, 'face': 1.0, 'getting': 1.0, 'about': 1.0, 'worry': 1.0, 'have': 1.0, 'up': 2.0, 'don': 1.0, 'due': 1.0, 'active': 1.0, 'periods': 1.0, 'slats': 1.0, 'without': 1.0, 'the': 4.0, 'from': 1.0, 'arms': 1.0, 'her': 5.0, 'design': 1.0, 'keeps': 1.0, 'old': 1.0, 'months': 1.0, 'is': 3.0, 'highly': 1.0, 'really': 1.0, 'sit': 1.0, 'poking': 1.0, 'way': 1.0, 'you': 2.0, 'in': 1.0, 'also': 1.0, 'fact': 2.0, 'visibility': 1.0, 'bolstered': 1.0, 'or': 2.0, 'padded': 1.0, 'some': 1.0, 'she': 1.0, 'it': 4.0, 'with': 1.0, '19': 1.0, 'see': 5.0, 'nearby': 1.0, 'during': 1.0, 'misnomer': 1.0, 'mesh': 2.0, 'baby': 2.0, 'bumper': 1.0, 'fine': 1.0, 'isn': 1.0, 'on': 1.0, 'your': 2.0, 'calling': 1.0, 'through': 1.0, 'breathing': 2.0, 'wake': 1.0, 'of': 2.0, 'very': 1.0, 'this': 2.0, 'allows': 1.0, 'for': 1.0, 'comforting': 1.0, 'sleeping': 1.0, 'which': 1.0, 'using': 1.0, 'easy': 1.0, 'and': 7.0, 'against': 1.0, 'bit': 1.0, 'so': 1.0, 'can': 4.0, 'go': 1.0, 's': 1.0, 't': 2.0, 'a': 4.0, 'we': 3.0, 'legs': 1.0, 're': 2.0, 'still': 1.0, 'sleep': 1.0, 'to': 6.0, 'any': 1.0, 'as': 1.0, 'our': 1.0, 'toddler': 1.0, 'who': 1.0}
Word element => {'sleep': 1.0, 'sticking': 1.0, 'keeps': 1.0, 'a': 1.0, 'at': 1.0, 'suffocation': 1.0, 'and': 2.0, 'sids': 1.0, 'of': 1.0, 'alternative': 1.0, 'recommended': 1.0, 'knowing': 1.0, 'bumpers': 1.0, 'safer': 1.0, 'from': 1.0, 'stick': 1.0, 'daughter': 1.0, 'aren': 1.0, 'crib': 4.0, 'is': 1.0, 'herself': 1.0, 'would': 2.0, 'legs': 1.0, 'was': 2.0, 'know': 1.0, 'because': 2.0, 'limbs': 1.0, 'liner': 1.0, 'through': 2.0, 'her': 4.0, 'it': 1.0, 'this': 2.0, 'my': 1.0, 'great': 1.0, 't': 1.0, 'the': 2.0, 'way': 1.0, 'rails': 1.0, 'bought': 1.0, 'night': 1.0, 'i': 4.0, 'on': 1.0, 'so': 2.0, 'afraid': 1.0, 'she': 2.0, 'injure': 1.0, 'that': 2.0}
Word element => {'first': 1.0, 'with': 1.0, 'saw': 1.0, 'this': 1.0, 'wish': 1.0, 'loose': 1.0, 'her': 1.0, 'when': 1.0, 'i': 3.0, 'liner': 2.0, 'putting': 1.0, 'job': 1.0, 'the': 4.0, 'such': 1.0, 'better': 1.0, 's': 1.0, 't': 2.0, 'a': 3.0, 'baby': 2.0, 'mesh': 1.0, 'liners': 1.0, 'that': 1.0, 'breathe': 1.0, 'works': 1.0, 'much': 1.0, 'does': 1.0, 'standard': 1.0, 'than': 1.0, 'breathable': 1.0, 'suffocate': 1.0, 'great': 1.0, 'feel': 1.0, 'product': 1.0, 'love': 1.0, 'for': 1.0, 'one': 1.0, 'my': 2.0, 'tight': 1.0, 'crib': 3.0, 'little': 2.0, 'overall': 1.0, 'ideas': 1.0, 'head': 1.0, 'child': 1.0, 'up': 1.0, 'can': 1.0, 'and': 4.0, 'couldn': 1.0, 'get': 1.0, 'has': 1.0, 'won': 1.0, 'on': 1.0, 'she': 1.0, 'it': 4.0, 'was': 1.0, 'still': 1.0, 'difficult': 1.0, 'safer': 1.0, 'side': 1.0, 'enough': 1.0, 'against': 1.0, 'so': 1.0}
Word element => {'risk': 1.0, 'worth': 1.0, 'not': 1.0, 'should': 1.0, 'isn': 1.0, 'don': 1.0, 'that': 1.0, 'must': 1.0, 'think': 1.0, 'really': 2.0, 'as': 1.0, 'people': 1.0, 'other': 1.0, 'purchase': 1.0, 'trim': 1.0, 'just': 2.0, 'more': 1.0, 'edging': 1.0, 'buy': 1.0, 'satin': 2.0, 'color': 1.0, 'around': 2.0, 'move': 1.0, 'pull': 1.0, 'but': 1.0, 'even': 2.0, 'would': 5.0, 'baby': 1.0, 'she': 3.0, 'it': 9.0, 'thought': 1.0, 'had': 1.0, 'your': 1.0, 'any': 2.0, 'removed': 1.0, 'so': 4.0, 'very': 2.0, 'with': 1.0, 'dangers': 1.0, 'for': 1.0, 'child': 1.0, 'product': 1.0, 'lot': 1.0, 'happy': 1.0, 'too': 2.0, 'recommended': 1.0, 'and': 11.0, 'daughter': 1.0, 'my': 1.0, 'on': 2.0, 't': 3.0, 'okay': 1.0, 'am': 3.0, 'you': 6.0, 'nice': 1.0, 'two': 1.0, 'sure': 1.0, 'easy': 1.0, 'be': 1.0, 'bumpers': 1.0, 'short': 1.0, 'a': 7.0, 'slight': 1.0, 'mattress': 1.0, 'into': 1.0, 'in': 2.0, 'without': 2.0, 'are': 2.0, 'looking': 1.0, 'contributing': 1.0, 'makes': 1.0, 'did': 1.0, 'moves': 1.0, 'the': 10.0, 'of': 4.0, 'wake': 1.0, 'this': 5.0, 'few': 1.0, 'then': 2.0, 'to': 5.0, 'became': 1.0, 'or': 1.0, 'bumper': 4.0, 'down': 1.0, 'crib': 6.0, 'layers': 1.0, 'suffocation': 1.0, 'bought': 1.0, 'aware': 1.0, 'wiggle': 1.0, 'end': 1.0, 'protection': 1.0, 'her': 2.0, 'well': 1.0, 'i': 9.0, 'feet': 1.0, 'tacky': 1.0, 'although': 1.0, 'elegant': 1.0, 'padding': 1.0, 'was': 1.0, 'get': 1.0, 'bumps': 1.0, 'swaddled': 1.0, 'between': 3.0, 'slats': 1.0, 'side': 1.0, 'which': 1.0, 'glad': 1.0, 'does': 1.0, 'breathable': 1.0, 'have': 5.0, 'up': 3.0, 'mesh': 2.0, 'though': 1.0, 's': 2.0, 'sides': 1.0, 'look': 2.0, 'is': 5.0, 'will': 1.0, 'turn': 1.0, 'if': 3.0, 'still': 1.0, 'some': 1.0, 'from': 1.0, 'install': 1.0, 'time': 1.0, 'worried': 1.0, 'uses': 1.0, 'velcro': 1.0, 'ties': 1.0, 'adjustable': 1.0, 'sids': 1.0, 'goes': 1.0, 'regular': 3.0, 'won': 1.0}
Word element => {'well': 1.0, 'sleigh': 1.0, 'as': 1.0, 'to': 1.0, 'easy': 1.0, 'each': 1.0, 'reviews': 1.0, 'negative': 1.0, 'ordering': 1.0, 'mentioned': 1.0, 'adjustment': 1.0, 'there': 1.0, 'up': 2.0, 'solid': 1.0, 'allows': 1.0, 'this': 3.0, 'happy': 1.0, 'fits': 1.0, 'my': 2.0, 'of': 1.0, 'rather': 1.0, 'some': 1.0, 'others': 1.0, 'was': 1.0, 'two': 1.0, 'i': 4.0, 'old': 1.0, 'putting': 1.0, 'perfectly': 1.0, 'bumper': 4.0, 'gaps': 1.0, 'the': 2.0, 'end': 1.0, 'considering': 1.0, 'corner': 1.0, 'daughter': 1.0, '16': 1.0, 'it': 3.0, 'month': 1.0, 'crib': 2.0, 'assemble': 1.0, 'for': 2.0, 'one': 1.0, 'slatted': 1.0, 'very': 1.0, 'read': 1.0, 'room': 1.0, 'before': 1.0, 'like': 1.0, 'ends': 1.0, 'with': 1.0, 'piece': 1.0, 'being': 1.0, 'since': 1.0, 's': 1.0, 'a': 1.0, 'is': 2.0, 'not': 1.0, 'stuffed': 1.0, 'purchased': 1.0, 'animal': 1.0, 'in': 1.0}
Word element => {'picture': 1.0, 'then': 1.0, 'shows': 1.0, 'darker': 1.0, 'color': 1.0, 'love': 1.0, 'fits': 1.0, 'perfect': 2.0, 'today': 1.0, 'easy': 1.0, 'very': 1.0, 'crib': 1.0, 'on': 1.0, 'it': 4.0, 'with': 1.0, 'this': 1.0, 'the': 3.0, 't': 1.0, 'myself': 1.0, 'put': 1.0, 'two': 1.0, 'we': 1.0, 'i': 2.0, 'matches': 1.0, 'its': 1.0, 'was': 1.0, 'and': 2.0, 'couldn': 1.0, 'do': 1.0, 'by': 1.0, 'people': 1.0}
Word element => {'years': 1.0, 'issues': 1.0, 'lovely': 1.0, '25': 1.0, 'about': 1.0, 'no': 1.0, 'of': 1.0, 'any': 1.0, 'to': 1.0, 'pads': 1.0, 'bumper': 1.0, 'had': 1.0, 'purchased': 1.0, 'safety': 1.0, 'for': 1.0, 'yet': 1.0, '30': 1.0, 'this': 1.0, 'with': 2.0, 'it': 1.0, 'item': 1.0, 'certainly': 1.0, 'purchase': 1.0, 'my': 1.0, 'color': 1.0, 'worries': 1.0, 'happy': 1.0, 'new': 1.0, 'different': 1.0, 'the': 3.0, 'from': 1.0, 'problems': 1.0, 'very': 1.0, 'launder': 1.0, 'breathable': 1.0, 'am': 1.0, 'bumpers': 1.0, 'obviously': 1.0, 'grandson': 1.0, 'blue': 1.0, 'but': 1.0, 'is': 1.0, 'ago': 1.0, 'a': 1.0, 'have': 1.0, 'not': 2.0, 'i': 1.0, 'expecting': 1.0}
Word element => {'offers': 1.0, 'breathable': 1.0, 'of': 1.0, 'peace': 1.0, 'splurged': 1.0, 'or': 1.0, 'gifted': 1.0, 'bumpers': 1.0, 'dangerous': 1.0, 'set': 1.0, 'baby': 1.0, 'an': 1.0, 'buy': 1.0, 'printed': 1.0, 'sheets': 2.0, 'loud': 1.0, 'using': 1.0, 'plainness': 1.0, 'don': 1.0, 'up': 1.0, 'i': 2.0, 'boring': 1.0, 'crib': 2.0, 'is': 1.0, 'everything': 1.0, 'if': 1.0, 'want': 2.0, 'dark': 1.0, 'this': 2.0, 'mind': 1.0, 'pink': 1.0, 'with': 2.0, 'fab': 1.0, 'looks': 2.0, 'it': 2.0, 'quilt': 1.0, 'wood': 1.0, 'the': 2.0, 'bedding': 1.0, 'a': 3.0, 't': 2.0, 'and': 4.0, 'bumper': 4.0, 'by': 1.0, 'light': 1.0, 'worried': 1.0, 'look': 2.0, 'was': 1.0, 'get': 2.0, 'easy': 1.0, 'individual': 1.0, 'piecemeal': 1.0, 'super': 1.0, 'would': 2.0, 'install': 1.0, 'great': 1.0, 'nice': 1.0, 'safe': 1.0, 'pretty': 3.0, 'its': 1.0, 'much': 1.0, 'our': 1.0, 'to': 2.0, 'any': 1.0, 'didn': 1.0, 'safety': 1.0, 'expensive': 1.0, 'for': 2.0, 'actually': 1.0, 'reasons': 1.0, 'classy': 1.0, 'traditional': 1.0, 'you': 2.0, 'but': 2.0, 'can': 1.0, 'think': 1.0, 'on': 2.0, 'make': 1.0}
Word element => {'yet': 1.0, 'thin': 1.0, 'seems': 1.0, 'my': 1.0, 'about': 1.0, 'no': 2.0, 'up': 1.0, 'top': 1.0, 'expected': 1.0, 'looking': 1.0, 'is': 2.0, 'suffocaton': 1.0, 'ordered': 1.0, 'issue': 1.0, 'dress': 1.0, 'install': 1.0, 'it': 6.0, 'with': 2.0, 'immediately': 1.0, 'happy': 1.0, 'nicer': 1.0, 'are': 1.0, 'online': 1.0, 'reposition': 1.0, 'fixed': 1.0, 'he': 3.0, 'son': 2.0, 'to': 2.0, 'outside': 2.0, 'our': 1.0, 'that': 1.0, 'typical': 1.0, 'worry': 1.0, 'edge': 1.0, 'before': 1.0, 'his': 1.0, 'the': 7.0, 'time': 1.0, 'so': 1.0, 'easy': 1.0, 'learned': 1.0, 'limbs': 1.0, 'should': 1.0, 'enough': 1.0, 'was': 5.0, 'not': 2.0, 'breathable': 1.0, 'than': 1.0, 'because': 1.0, 'removed': 1.0, 'we': 5.0, 'a': 2.0, 'use': 1.0, 'longer': 1.0, 'bottom': 1.0, 'down': 1.0, 'bumper': 3.0, 'crib': 1.0, 'risk': 2.0, 'very': 1.0, 'little': 1.0, 'in': 1.0, 'stuck': 3.0, 'for': 1.0, 'at': 1.0, 'i': 5.0, '4': 1.0, 'color': 2.0, 'one': 1.0, 'suffocation': 1.0, 'months': 1.0, 'on': 1.0, 'strong': 2.0, 'constantly': 1.0, 'sage': 1.0, 'getting': 2.0, 'green': 1.0, 'and': 7.0, 'rails': 1.0, 'perfect': 1.0, 'this': 2.0, 'found': 2.0, 'putting': 1.0, 'him': 1.0, 'certainly': 1.0, 'ribboned': 1.0, 'face': 1.0, 'once': 1.0, 'leg': 1.0, 'rail': 1.0}
Word element => {'old': 1.0, 'this': 1.0, 'took': 1.0, 'up': 1.0, 'waking': 1.0, 'head': 1.0, 'and': 4.0, 'moving': 1.0, 'cushy': 1.0, 'my': 2.0, 'cushion': 1.0, 'thick': 1.0, 'being': 1.0, 'it': 3.0, 'with': 1.0, 'breathable': 1.0, 'because': 2.0, 'very': 1.0, 'our': 1.0, 'any': 1.0, 'baby': 3.0, 'thin': 1.0, 'the': 5.0, 'was': 1.0, 'doesn': 1.0, 'i': 4.0, 'put': 1.0, 'think': 1.0, 'or': 1.0, 'provide': 1.0, 'sticking': 1.0, 'sleeps': 1.0, 'around': 1.0, 'more': 1.0, 'is': 2.0, 'traditional': 1.0, 'idea': 1.0, 'great': 1.0, '1': 1.0, 'of': 2.0, '8': 1.0, 'bumper': 4.0, 'cool': 1.0, 'bumping': 1.0, 'at': 1.0, 'some': 1.0, 't': 1.0, 's': 2.0, 'a': 2.0, 'see': 1.0, 'screen': 1.0, 'but': 1.0, 'most': 1.0, 'can': 1.0, 'useful': 1.0, 'product': 1.0, 'for': 1.0, 'agaist': 1.0, 'her': 1.0, 'preventing': 1.0, 'off': 1.0, 'foot': 1.0, 'hand': 1.0, 'out': 1.0, 'crib': 2.0, 'function': 1.0, 'between': 1.0, 'slats': 2.0, 'back': 1.0, 'needed': 1.0}
Word element => {'back': 1.0, 'weaving': 1.0, 'by': 1.0, 'mount': 1.0, 'about': 1.0, 'needed': 1.0, 'herself': 1.0, 'we': 2.0, 'a': 4.0, 'go': 1.0, 'were': 1.0, 'something': 1.0, 'into': 1.0, 'do': 1.0, 'mirror': 1.0, 'tends': 1.0, 'slat': 1.0, 'who': 1.0, 'since': 1.0, 'as': 3.0, 'hurting': 1.0, 'daughter': 1.0, 'agreed': 1.0, 'out': 2.0, 'keeping': 1.0, 'in': 2.0, 'day': 1.0, 'catching': 1.0, 'third': 1.0, 'inside': 2.0, 'ordered': 1.0, 'that': 1.0, 'concerned': 1.0, 'crib': 5.0, 'slats': 3.0, 'after': 1.0, 'ends': 1.0, 'chose': 1.0, 'legs': 2.0, 'me': 1.0, 'my': 3.0, 'husband': 1.0, 'more': 1.0, 'is': 3.0, 'around': 3.0, 'bumper': 1.0, 'or': 1.0, 'possibly': 1.0, 'great': 2.0, 'time': 1.0, 'be': 1.0, 'product': 1.0, 'than': 1.0, 'assemble': 1.0, 'for': 2.0, 'with': 1.0, 'this': 3.0, 'practical': 1.0, 'even': 1.0, 'sticking': 1.0, 'the': 8.0, 'of': 3.0, 'ankles': 1.0, 'through': 1.0, 'one': 2.0, 'rolling': 1.0, 'over': 1.0, 'it': 1.0, 'to': 5.0, 'pretty': 1.0, 'easy': 1.0, 'and': 1.0, 'less': 1.0, 'change': 1.0, 'so': 1.0, 'can': 2.0, 'four': 1.0, 'being': 1.0, 'very': 1.0, 'slatted': 1.0, 'versatile': 1.0, 'her': 3.0, 'use': 1.0, 's': 1.0, 'sides': 3.0, 'have': 1.0, 'solid': 1.0, '3': 1.0, 'worrier': 1.0, 'if': 1.0, 'still': 1.0, 'see': 1.0, 'from': 1.0, 'room': 1.0, 'baby': 2.0, 'limbs': 1.0, 'i': 4.0, 'well': 1.0, 'toys': 1.0, 'just': 2.0, 'pacifiers': 1.0, 'was': 1.0, 'you': 2.0, 'able': 1.0}
Word element => {'know': 1.0, 't': 1.0, 'stars': 1.0, 'about': 1.0, '5': 1.0, 'much': 1.0, 'breathable': 1.0, 'baby': 2.0, 'but': 1.0, 'give': 1.0, 'safer': 1.0, 'it': 1.0, 'i': 2.0, 'was': 1.0, 'don': 1.0, 'a': 1.0, 'shower': 1.0, 'bumper': 1.0, 'gift': 1.0}
Word element => {'anything': 1.0, 'preferred': 1.0, 'would': 1.0, 'have': 1.0, 'pad': 1.0, 'bumper': 1.0, 'colors': 1.0, 'but': 1.0, 'over': 1.0, 'white': 1.0, 'a': 1.0, 'go': 1.0, 'traditional': 1.0, 'the': 1.0, 'love': 1.0, 'bigger': 1.0, 'selection': 1.0, 'in': 1.0, 'seems': 1.0, 'to': 1.0, 'almost': 1.0, 'good': 1.0, 'this': 1.0, 'with': 1.0}
Word element => {'cribs': 1.0, 'clearly': 1.0, 'practical': 1.0, 'just': 1.0, 'safe': 1.0, 'enough': 1.0, 'long': 1.0, 'even': 1.0, 'left': 1.0, 'idea': 1.0, 'posts': 1.0, 'awkwardly': 1.0, 'or': 1.0, 'shape': 1.0, 'way': 1.0, 'for': 1.0, 'fit': 3.0, 'standard': 1.0, 'use': 1.0, 'did': 2.0, 'wasn': 1.0, 'out': 1.0, 'heard': 1.0, 'not': 3.0, 'but': 2.0, 'work': 1.0, 'was': 2.0, 'doesn': 2.0, 'wanted': 1.0, 'it': 9.0, 'mail': 1.0, 'and': 4.0, 'bumper': 3.0, 'boasted': 1.0, 'i': 2.0, 'want': 1.0, 'really': 2.0, 'around': 2.0, 'is': 2.0, 'well': 1.0, 'main': 1.0, 'odd': 1.0, 'since': 1.0, 'lot': 1.0, 'whole': 1.0, 'thing': 2.0, 'about': 1.0, 'today': 1.0, 'things': 1.0, 'suffocation': 1.0, 'of': 1.0, 'good': 2.0, 'had': 1.0, 'thought': 1.0, 'would': 1.0, 'form': 1.0, 'be': 1.0, 'this': 3.0, 'perfect': 1.0, 'in': 2.0, 'all': 1.0, 'any': 1.0, 'to': 3.0, 'as': 1.0, 'only': 1.0, 'risk': 1.0, 'crib': 1.0, 'tested': 1.0, 'extremely': 1.0, 'received': 1.0, 'eagerly': 1.0, 'the': 5.0, 'go': 1.0, 'we': 1.0, 'a': 4.0, 't': 3.0, 'gaps': 1.0, 'put': 1.0, 'on': 1.0}
Word element => {'bump': 1.0, 'softer': 1.0, 'is': 1.0, 'but': 1.0, 'at': 1.0, 'thick': 1.0, 'are': 1.0, 'mesh': 1.0, 'i': 1.0, 'care': 1.0, 'product': 1.0, 'this': 1.0, 'he': 3.0, 'it': 3.0, 'problem': 1.0, 'took': 2.0, 'then': 1.0, 'when': 2.0, 'of': 1.0, 'always': 1.0, 'over': 1.0, 'up': 1.0, 'into': 1.0, 'that': 1.0, 'breathe': 1.0, 'cry': 1.0, 'the': 6.0, 'and': 2.0, 'son': 1.0, 'stick': 2.0, 'would': 2.0, 'bumpers': 1.0, 'him': 1.0, 'stock': 1.0, 'have': 1.0, 'able': 1.0, 'his': 4.0, 'bumper': 1.0, 'down': 1.0, 'feet': 3.0, 'out': 2.0, 'crib': 3.0, 'got': 1.0, 'didn': 1.0, 'all': 1.0, 'our': 1.0, 'to': 4.0, 'was': 1.0, 'worry': 1.0, 'about': 2.0, 'not': 2.0, 'than': 1.0, 'because': 1.0, 'put': 1.0, 'face': 1.0, 't': 1.0, 'we': 1.0, 'if': 1.0, 'being': 1.0, '10': 1.0, 'months': 1.0}
Word element => {'law': 1.0, 'in': 1.0, 'what': 1.0, 'legs': 1.0, 'like': 1.0, 'and': 2.0, 'kept': 1.0, 'so': 1.0, 'from': 1.0, 'out': 1.0, 'arms': 1.0, 'inside': 1.0, 'bumper': 3.0, 'most': 1.0, 'the': 2.0, 'these': 1.0, 'my': 2.0, 'falling': 1.0, 'this': 2.0, 'it': 3.0, 'crib': 2.0, 'for': 2.0, 'bought': 1.0, 'one': 1.0, 'daughter': 1.0, 'to': 3.0, 'was': 1.0, 'buying': 1.0, 'things': 1.0, 'about': 2.0, 'are': 1.0, 'care': 1.0, 's': 1.0, 'sister': 1.0, 'breathable': 1.0, 'am': 1.0, 'easy': 2.0, 'put': 1.0, 'on': 1.0, 'take': 1.0, 'of': 1.0, 'is': 1.0, 'her': 2.0, 'clean': 1.0, 'good': 1.0, 'avoid': 1.0, 'that': 1.0, 'i': 3.0, 'thinking': 1.0}
Word element => {'other': 1.0, 'feel': 1.0, 'still': 1.0, 'onto': 1.0, 'despite': 1.0, 'tie': 1.0, 'where': 1.0, 'options': 1.0, 'though': 1.0, 'ties': 1.0, 'hope': 1.0, 'out': 1.0, 'using': 1.0, 'version': 1.0, 'hold': 1.0, 'want': 1.0, 'if': 1.0, 'so': 1.0, 'here': 1.0, 'isn': 1.0, 'smooth': 1.0, 'doesn': 1.0, 'side': 1.0, 'part': 1.0, 'have': 1.0, 'either': 1.0, 'appealing': 1.0, 'option': 1.0, 'lot': 1.0, 'more': 3.0, 'around': 1.0, 'in': 2.0, 'works': 1.0, 'end': 3.0, 'strictly': 1.0, 'of': 2.0, 'once': 1.0, 'we': 1.0, 's': 1.0, 'a': 2.0, 't': 3.0, 'wrap': 1.0, 'the': 9.0, 'they': 2.0, 'baby': 2.0, 'definitely': 1.0, 'blue': 3.0, 'solid': 2.0, 'an': 1.0, 'longer': 1.0, 'bumper': 6.0, 'crib': 4.0, 'size': 1.0, 'yet': 2.0, 'bought': 1.0, 'one': 2.0, 'i': 4.0, 'took': 1.0, 'than': 1.0, 'does': 1.0, 'laying': 1.0, 'breathable': 3.0, 'you': 3.0, 'am': 1.0, 'soon': 1.0, 'and': 4.0, 'get': 1.0, 'very': 3.0, 'need': 1.0, 'wait': 1.0, 'wanted': 1.0, 'any': 1.0, 'all': 2.0, 'as': 3.0, 'to': 6.0, 'it': 5.0, 'moving': 1.0, 'will': 3.0, 'hour': 1.0, 'make': 2.0, 'on': 2.0, 'see': 1.0, 'securely': 1.0, 'confident': 2.0, 'over': 2.0, 'don': 1.0, 'nearly': 1.0, 'up': 2.0, 'that': 3.0, 'give': 1.0, 'me': 1.0, 'not': 2.0, 'stay': 1.0, 'half': 1.0, 'well': 1.0, 'fits': 1.0, 'starts': 1.0}
Word element => {'where': 1.0, 'air': 1.0, 'plus': 1.0, 'baby': 1.0, 'dont': 1.0, 'cute': 1.0, 'still': 1.0, 'look': 1.0, 'to': 2.0, 'you': 3.0, 'crib': 1.0, 'lets': 1.0, 'great': 1.0, 'right': 1.0, 'can': 2.0, 'it': 1.0, 'overthe': 1.0, 'thru': 2.0, 'see': 2.0, 'at': 1.0, 'habe': 1.0, 'they': 1.0, 'your': 1.0, 'so': 1.0, 'and': 1.0, 'get': 1.0}
Word element => {'chance': 1.0, 'fear': 1.0, 'brother': 1.0, 'their': 1.0, 'since': 1.0, 'point': 1.0, 'back': 1.0, 'ready': 1.0, 'box': 1.0, 'as': 1.0, 'given': 1.0, 'wasn': 1.0, 'designed': 1.0, 'poorly': 1.0, 'ours': 1.0, 'was': 1.0, 'would': 1.0, 'ribbon': 1.0, 's': 2.0, 'every': 1.0, 'if': 3.0, 'know': 1.0, 'don': 1.0, 'what': 1.0, 'less': 1.0, 'up': 2.0, 'breathability': 1.0, 'crib': 3.0, 'directions': 2.0, 'stripes': 2.0, 'sids': 1.0, 'make': 1.0, 'supposed': 2.0, 'for': 5.0, 'product': 1.0, 'about': 2.0, 'out': 1.0, 'to': 6.0, 'you': 3.0, 'trying': 1.0, 'be': 2.0, 'will': 1.0, 'i': 7.0, 'but': 3.0, 'paragraph': 1.0, 'thing': 2.0, '2': 1.0, 'inside': 1.0, 'or': 1.0, 'bumper': 2.0, 'solid': 3.0, 'version': 1.0, 'comment': 1.0, 't': 4.0, 'hour': 1.0, 'go': 3.0, 'hole': 1.0, 'we': 2.0, 'm': 1.0, 'in': 3.0, 'posted': 1.0, 'figure': 1.0, 'a': 2.0, 'small': 2.0, 'imagine': 1.0, 'they': 1.0, 'holes': 2.0, 'get': 1.0, 'except': 1.0, 'pics': 1.0, 'end': 1.0, 'of': 8.0, 'the': 27.0, 'wrong': 2.0, 'my': 1.0, 'me': 1.0, 'different': 2.0, 'last': 1.0, 'gift': 1.0, 'side': 6.0, 'good': 1.0, 'sewn': 1.0, 'our': 1.0, 'how': 2.0, 'following': 1.0, 'just': 3.0, 'large': 3.0, 'with': 4.0, 'this': 7.0, 'are': 2.0, 'first': 1.0, 'on': 7.0, 'long': 2.0, 'portion': 1.0, 'there': 1.0, 'and': 4.0, 'facing': 3.0, 'baby': 3.0, 'allowing': 1.0, 'better': 1.0, 'note': 1.0, 'installing': 1.0, 'already': 1.0, 'it': 4.0, 'see': 2.0, 'ends': 2.0, 'everyone': 1.0, 'doesn': 1.0, 'sizes': 1.0, 'according': 1.0, 'feel': 1.0, 'is': 5.0, 'at': 2.0, 'short': 1.0, 'mean': 1.0, 'front': 1.0, 'puts': 1.0, 'has': 2.0, 'half': 2.0, 'installed': 1.0, 'striped': 1.0, 'got': 1.0, 'one': 2.0, 'because': 2.0, 'that': 2.0, 'all': 1.0, 'an': 1.0, 'other': 1.0, 'spent': 1.0, 'some': 1.0, 'can': 2.0, 'so': 1.0}
Word element => {'slats': 1.0, 'into': 1.0, 'help': 1.0, 'looking': 1.0, 'be': 1.0, 'd': 1.0, 'sure': 1.0, 'best': 1.0, 'picture': 1.0, 'more': 1.0, 'trim': 1.0, 'nice': 1.0, 'than': 2.0, 'padded': 2.0, 'thick': 1.0, 'those': 1.0, 'until': 1.0, 'climbing': 1.0, 'month': 1.0, 'thought': 1.0, 'it': 3.0, 'slightly': 1.0, 'remove': 1.0, '12': 1.0, 'had': 1.0, 's': 2.0, 'a': 3.0, 't': 2.0, 'go': 1.0, 'bows': 1.0, 'better': 2.0, 'much': 1.0, 'do': 3.0, 'satin': 1.0, 'gone': 1.0, 'don': 1.0, 'free': 1.0, 'they': 8.0, 'means': 1.0, 'around': 1.0, 'for': 1.0, 'would': 1.0, 'tight': 1.0, 'me': 2.0, 'my': 1.0, 'she': 3.0, 'baby': 2.0, 'down': 2.0, 'bumper': 1.0, 'protection': 1.0, 'kept': 1.0, 'was': 1.0, 'look': 2.0, 'bars': 2.0, 'at': 1.0, 'our': 1.0, 'pulled': 1.0, 'to': 4.0, 'slim': 1.0, 'crazy': 1.0, 'as': 2.0, 'pushing': 1.0, 'now': 2.0, 'almost': 1.0, 'believe': 1.0, 'these': 2.0, 'awesome': 1.0, 'driving': 1.0, 'this': 1.0, 'mattress': 1.0, 'are': 2.0, 'first': 1.0, 'stuck': 1.0, 'and': 3.0, 'banging': 1.0, 'but': 3.0, 'past': 1.0, 'up': 2.0, 'change': 1.0, 'just': 1.0, 'got': 1.0, 'we': 2.0, 'then': 1.0, 'really': 1.0, 'old': 1.0, 'i': 5.0, 'them': 6.0, 'has': 1.0, 'been': 1.0, 'not': 1.0, 'waking': 1.0, 'with': 3.0, 'legs': 1.0, 're': 2.0, 'm': 1.0, 'in': 3.0, 'bumpers': 2.0, 'trick': 1.0, 'keeping': 1.0, 'limbs': 1.0, 'slide': 1.0, 'stay': 1.0, 'every': 1.0, 'if': 2.0, 'on': 1.0, 'positive': 1.0, 'that': 2.0, 'because': 1.0, 'her': 2.0, 'use': 1.0, 'the': 8.0, 'of': 1.0, 'device': 1.0, 'also': 1.0, 'can': 2.0, 'so': 1.0, 'making': 1.0, 'easy': 1.0, 'stands': 1.0, 'sheets': 1.0, 'have': 1.0, 'night': 1.0, 'you': 2.0}
Word element => {'slide': 1.0, 'so': 1.0, 'ties': 1.0, 'up': 2.0, 'appendages': 1.0, 'held': 1.0, 'product': 1.0, 'for': 4.0, 'looking': 2.0, 'if': 3.0, 'nice': 1.0, 'which': 1.0, 'pacifiers': 1.0, 'padding': 1.0, 'there': 1.0, 'something': 2.0, 'breathability': 1.0, 'solid': 1.0, 'with': 2.0, 'good': 1.0, 'panels': 1.0, 'quite': 1.0, 'easy': 1.0, 'pressure': 1.0, 'made': 1.0, 'purchase': 1.0, 'was': 1.0, 'kids': 1.0, 'this': 3.0, 'you': 4.0, 'times': 1.0, 'down': 1.0, 'inside': 1.0, 'well': 1.0, 'are': 3.0, 'managed': 1.0, 'hazards': 1.0, 'feet': 1.0, 'toys': 1.0, 'rigid': 1.0, 'due': 1.0, 'not': 2.0, 'just': 2.0, 'bumpers': 1.0, 'and': 6.0, 'moved': 1.0, 'he': 1.0, 'a': 3.0, 'we': 2.0, 'arm': 1.0, 'safety': 1.0, 'in': 2.0, 'had': 1.0, 'all': 1.0, 'our': 1.0, 'to': 6.0, 'crib': 3.0, 'construction': 1.0, 'little': 2.0, 'month': 1.0, 'old': 1.0, 'i': 1.0, 'son': 1.0, 'installation': 1.0, 'into': 1.0, 'quest': 1.0, 'edges': 2.0, 'his': 3.0, 'roll': 1.0, 'breathing': 1.0, 'through': 2.0, 'can': 1.0, 'but': 1.0, 'needless': 1.0, 'is': 7.0, 'around': 1.0, 'say': 1.0, 'placed': 1.0, 'legs': 1.0, 'ride': 1.0, 'went': 1.0, 'your': 1.0, 'put': 1.0, '3': 1.0, 'on': 1.0, 'find': 1.0, 'safe': 1.0, 'way': 1.0, 'at': 1.0, 'keep': 2.0, 'the': 8.0, 'hands': 1.0, 'applied': 1.0, 'arms': 1.0}
Word element => {'else': 1.0, 'returning': 1.0, 'be': 1.0, 'will': 1.0, 'less': 1.0, 'or': 1.0, 'week': 1.0, 'something': 1.0, 've': 1.0, 'better': 1.0, 'are': 1.0, 'money': 1.0, 'but': 1.0, 'reasons': 1.0, 'safety': 1.0, 'had': 1.0, 'supposedly': 1.0, 'throughout': 1.0, 'to': 6.0, 'now': 1.0, 'that': 2.0, 'like': 2.0, 'able': 2.0, 'a': 1.0, 't': 3.0, 'place': 1.0, 'the': 11.0, 'great': 1.0, 'bars': 2.0, 'while': 1.0, 'i': 4.0, 'have': 1.0, 'leave': 1.0, 'needed': 1.0, 'exposed': 1.0, 'not': 1.0, 'just': 1.0, 'it': 3.0, 'in': 4.0, 'stuck': 1.0, 'crib': 2.0, 'design': 1.0, 'some': 1.0, 'of': 2.0, 'don': 3.0, 'concept': 1.0, 'order': 2.0, 'for': 3.0, 'fit': 1.0, 'is': 4.0, 'around': 1.0, 'your': 1.0, 'think': 1.0, 'put': 1.0, 'save': 1.0, 'tightly': 1.0, 'fact': 1.0, 'my': 1.0, 'daughter': 1.0, 'keep': 1.0, 'who': 1.0, 'you': 1.0, 'barely': 1.0, 'move': 2.0, 'ties': 1.0, 'bumper': 4.0, 'down': 1.0, 'her': 1.0, 'and': 3.0, 'get': 2.0, 'legs': 1.0, 'they': 2.0}
Word element => {'for': 1.0, 'lets': 1.0, 'part': 1.0, 'money': 1.0, 'work': 1.0, 'can': 1.0, 'but': 2.0, 'with': 2.0, 'crib': 1.0, 'face': 1.0, 'many': 1.0, 'back': 1.0, 'herself': 1.0, 'sleeping': 1.0, 'decided': 1.0, 'legs': 1.0, 'edge': 1.0, '5': 1.0, 'was': 1.0, 'to': 5.0, 'my': 3.0, 'safety': 1.0, 'even': 2.0, 'her': 4.0, 'try': 1.0, 'works': 1.0, 'it': 6.0, 'she': 8.0, 'get': 1.0, 'easy': 2.0, 'pops': 1.0, 'alot': 1.0, 'pull': 2.0, 'daughter': 2.0, 'times': 1.0, 'when': 2.0, 'in': 1.0, 'up': 2.0, 'wash': 1.0, 'or': 2.0, 'arms': 1.0, 'found': 1.0, 'i': 5.0, 'buy': 1.0, 'out': 2.0, 'does': 2.0, 'find': 2.0, 'expectations': 1.0, 'breathable': 1.0, 'down': 1.0, 'bottom': 1.0, 'suffocate': 1.0, 'bumper': 1.0, 'so': 2.0, 'that': 2.0, 'if': 1.0, 'planted': 1.0, 'install': 1.0, 'hands': 1.0, 'the': 4.0, 'hanging': 1.0, 'agains': 1.0, 've': 1.0, 'would': 1.0, 'not': 1.0, 'go': 1.0, 't': 1.0, 's': 2.0, 'tucked': 1.0, 'play': 1.0, 'moved': 1.0, 'and': 2.0}
Word element => {'safer': 1.0, 'affordable': 1.0, 'norm': 1.0, 'for': 1.0, 'product': 1.0, 'this': 1.0, 'hope': 1.0, 'becomes': 1.0, 'i': 1.0, 'beds': 1.0, 'toddler': 1.0, 'until': 1.0, 'on': 1.0, 'but': 1.0, 'helpful': 1.0, 'not': 1.0, 'were': 1.0, 'correctly': 1.0, 'attach': 1.0, 'how': 1.0, 'fussing': 1.0, 'very': 1.0, 'figure': 1.0, 'little': 1.0, 'us': 1.0, 'took': 1.0, 'of': 1.0, 'bumpers': 3.0, 'instructions': 1.0, 'use': 1.0, 'couldn': 1.0, 'limbs': 1.0, 'babies': 1.0, 'that': 1.0, 'their': 1.0, 'as': 1.0, 'our': 2.0, 'to': 5.0, 'got': 2.0, 'stayed': 1.0, 'suffocating': 2.0, 'times': 1.0, 'out': 3.0, 'couple': 1.0, 'and': 5.0, 'try': 1.0, 'do': 1.0, 'bumper': 1.0, 'perfectly': 1.0, 'transitioned': 1.0, 'might': 1.0, 't': 1.0, 'we': 4.0, 'a': 5.0, 'well': 1.0, 'crib': 4.0, 'invented': 1.0, 'needed': 1.0, 'in': 2.0, 'stuck': 2.0, 'baby': 1.0, 'worked': 1.0, 'genius': 1.0, 'incredibly': 1.0, 'decided': 1.0, 'from': 1.0, 'arms': 1.0, 'his': 1.0, 'after': 1.0, 'legs': 1.0, 'find': 1.0, 'these': 2.0, 'new': 1.0, 'would': 1.0, 'lot': 1.0, 'climb': 1.0, 'freaking': 1.0, 'keep': 1.0, 'it': 3.0, 'happening': 1.0, 'child': 1.0, 'cribs': 1.0, 'made': 1.0, 'more': 1.0, 'is': 1.0, 'slats': 1.0, 'they': 4.0, 'are': 2.0, 'the': 8.0, 'without': 1.0, 'whoever': 1.0, 'job': 1.0, 'no': 2.0}
Word element => {'up': 1.0, 'has': 1.0, 'out': 1.0, 'figured': 1.0, 'on': 1.0, 'and': 1.0, 'get': 1.0, 'complicated': 1.0, 'which': 1.0, 'climb': 1.0, 'she': 1.0, 'when': 1.0, 'down': 1.0, 'my': 1.0, 'make': 1.0, 'thought': 1.0, 'since': 1.0, 'mini': 1.0, 'a': 3.0, 'go': 1.0, 'for': 1.0, 'been': 1.0, 'little': 1.0, 'crib': 1.0, 'thing': 1.0, 'able': 1.0, 'but': 2.0, 'work': 1.0, 'material': 1.0, 'tried': 1.0, 'i': 1.0, 'still': 1.0, 'husband': 1.0, 'was': 3.0, 'to': 3.0, 'breathable': 1.0, 'this': 1.0, 'it': 5.0, 's': 1.0, 'good': 2.0, 'did': 1.0}
Word element => {'sides': 1.0, 'pieces': 1.0, 'had': 1.0, 'they': 1.0, 'has': 1.0, 'does': 1.0, 'after': 1.0, 'protection': 1.0, 'enough': 1.0, 'would': 1.0, 'that': 2.0, 'first': 1.0, 'since': 1.0, 'at': 1.0, 'weight': 1.0, 'worried': 1.0, 'light': 1.0, 'little': 1.0, 'very': 1.0, 'back': 2.0, 'but': 2.0, 'and': 5.0, 'get': 1.0, 'separate': 1.0, 'stork': 1.0, 'craft': 1.0, 'front': 2.0, 'wrap': 1.0, 'the': 5.0, 'my': 2.0, 'on': 2.0, 'it': 7.0, 'wish': 1.0, 'soft': 1.0, 'this': 2.0, 'durable': 1.0, 'in': 2.0, 'crib': 3.0, 'recently': 1.0, 'received': 1.0, 'have': 1.0, 'seems': 1.0, 'item': 2.0, 'feel': 1.0, '1': 1.0, 'install': 1.0, 'rail': 1.0, 'pressing': 1.0, 'able': 1.0, 'convertible': 1.0, '4': 1.0, 'i': 6.0, 'attempted': 1.0, 'doesn': 1.0, 'was': 2.0, 'properly': 1.0, 'safe': 1.0, 'pretty': 3.0, 'for': 1.0, 'fit': 1.0, 'is': 1.0, 'displayed': 1.0, 'around': 1.0, 'glance': 1.0, 'railing': 1.0, 'are': 1.0, 'different': 2.0, 'still': 1.0, 'a': 1.0, 't': 1.0, 's': 2.0, 'not': 2.0, 'to': 3.0, 'as': 2.0, 'provide': 1.0, 'heights': 2.0, 'picture': 1.0}
Word element => {'collapsable': 1.0, 'and': 1.0, 'her': 1.0, 'crib': 1.0, 'one': 1.0, 'little': 1.0, 'very': 1.0, 'would': 1.0, 'was': 1.0, 'our': 3.0, 'as': 1.0, 'to': 2.0, 'move': 1.0, 'however': 1.0, 'sids': 2.0, 'breathable': 1.0, 'find': 1.0, 'we': 2.0, 'could': 2.0, 'a': 1.0, 'once': 1.0, 'liner': 1.0, 'due': 1.0, 'legs': 1.0, 'concerned': 1.0, 'resistant': 1.0, 'in': 1.0, 'the': 1.0, 'this': 2.0, 'it': 1.0, 'she': 1.0, 'turned': 1.0, 'morning': 1.0, 'us': 1.0, 'addressing': 1.0, 'i': 1.0, 'become': 1.0, 'sticking': 1.0, 'trapped': 1.0, 'over': 1.0, 'product': 1.0, 'feared': 1.0, 'concerns': 2.0, 'out': 1.0, 'addressed': 1.0, 'while': 1.0, 'issues': 1.0, 'around': 1.0, 'is': 1.0, 'completely': 1.0}
Word element => {'brand': 1.0, 'different': 1.0, 'trying': 1.0, 'suggest': 1.0, 'might': 1.0, 'use': 1.0, 'feel': 1.0, 'throughout': 1.0, 'supports': 1.0, 'there': 1.0, 'stand': 1.0, 'better': 1.0, 'think': 1.0, 'slouch': 1.0, '34': 4.0, 'with': 1.0, 'even': 1.0, 'firmer': 1.0, 'expected': 1.0, 'also': 1.0, 'back': 1.0, 'going': 1.0, 'especially': 1.0, 'alone': 1.0, 'stuck': 1.0, 'little': 2.0, 'two': 2.0, 'times': 1.0, 'after': 1.0, 'needs': 1.0, 'between': 1.0, 'they': 1.0, 'was': 3.0, 'son': 1.0, 'concerned': 1.0, 'easily': 1.0, 'that': 1.0, 'doubts': 1.0, 'stiffer': 1.0, 'our': 1.0, 'but': 3.0, 'so': 1.0, 'constantly': 1.0, 'can': 1.0, 'short': 1.0, 'discouraged': 1.0, 'are': 1.0, 'getting': 2.0, 'three': 1.0, 'crib': 3.0, 'pieces': 1.0, 'recommend': 1.0, 'were': 3.0, 'in': 2.0, 'for': 2.0, 'product': 1.0, 'lot': 1.0, 'one': 3.0, 'decided': 1.0, 'has': 1.0, 'need': 1.0, 'or': 1.0, 'bumper': 3.0, 'he': 1.0, 'this': 1.0, 'other': 1.0, 'bone': 1.0, 'a': 11.0, 'front': 1.0, 'break': 1.0, 'couple': 1.0, 'arms': 1.0, 'and': 5.0, 'around': 1.0, 'his': 1.0, 'on': 3.0, 'long': 1.0, 'tight': 1.0, 'would': 3.0, 'without': 1.0, 'breathability': 1.0, 's': 2.0, 'sides': 2.0, 'though': 1.0, 'help': 1.0, 'bumpers': 1.0, 'be': 3.0, 'i': 6.0, 'putting': 1.0, 'breathable': 3.0, 'research': 1.0, 'have': 1.0, 'slats': 1.0, 'no': 1.0, 'about': 1.0, 'safety': 1.0, 'managed': 1.0, 'terms': 1.0, 'seems': 1.0, 'see': 1.0, 'through': 2.0, 'it': 12.0, 'if': 4.0, 'baby': 1.0, 'legs': 1.0, 'get': 2.0, 'mesh': 1.0, 'up': 2.0, 'you': 2.0, 'able': 1.0, 'breathe': 1.0, 'easy': 1.0, 'however': 1.0, 'snug': 1.0, 'is': 1.0, 'not': 1.0, 'really': 1.0, 'the': 10.0, 'of': 6.0, 'person': 1.0, 'my': 1.0, 'husband': 1.0, 'against': 1.0, 'to': 8.0, 'job': 1.0, 'pulled': 2.0, 'which': 1.0, 'hard': 1.0, 'general': 1.0, 'do': 1.0}
Word element => {'mattress': 1.0, 'lowering': 1.0, 'been': 1.0, 'arms': 1.0, 'it': 6.0, 'tries': 1.0, 'night': 1.0, 'unsuccessful': 1.0, 'far': 1.0, 'to': 4.0, 'now': 2.0, 'install': 1.0, 'take': 1.0, 'for': 2.0, 'in': 3.0, 'easy': 1.0, 'just': 2.0, 'so': 2.0, 'minutes': 1.0, 'but': 2.0, 'can': 1.0, 'keeping': 1.0, 'couple': 1.0, 'and': 1.0, 'my': 1.0, 'has': 1.0, 'of': 1.0, 'on': 2.0, 'son': 1.0, 'what': 1.0, 'does': 1.0, 'stand': 1.0, 'down': 1.0, 'his': 2.0, 'worth': 1.0, 'say': 1.0, 're': 1.0, 'legs': 1.0, 'the': 2.0, 'when': 1.0, 'up': 1.0, 'child': 1.0, 'own': 1.0, 'a': 1.0, 's': 1.0, 'we': 2.0, 'instructions': 1.0, 'use': 1.0, 'climb': 1.0, 'keep': 1.0, 'at': 1.0}
Word element => {'action': 1.0, 'wheels': 1.0, 'because': 1.0, 'easily': 1.0, 'move': 1.0, 'able': 1.0, 'being': 1.0, 'clean': 1.0, 'easy': 1.0, 'to': 2.0, 'seat': 1.0, 'cushioned': 1.0, 'table': 1.0, 'or': 1.0, 'sunken': 1.0, 'be': 1.0, 'where': 1.0, 'seated': 1.0, 'for': 5.0, 'his': 1.0, 'minutes': 1.0, 'elevated': 1.0, '7': 1.0, 'pad': 1.0, '40': 1.0, 'who': 1.0, 'space': 1.0, 'at': 2.0, 'happiness': 1.0, 'with': 1.0, 'folding': 1.0, 'remaining': 1.0, 'while': 1.0, 'and': 2.0, 'five': 1.0, 'ease': 1.0, 'chair': 2.0, 'well': 1.0, 'comfort': 1.0, 'this': 1.0, '30': 1.0, 'might': 1.0, 'a': 2.0, 'it': 1.0, 'month': 1.0, 'addition': 1.0, 'dining': 1.0, 'grandchild': 1.0, 'high': 1.0, 'my': 1.0, 'happy': 1.0, 'old': 1.0, 'floor': 1.0, 'six': 1.0, 'positions': 1.0, 'the': 12.0, 'great': 1.0, 'in': 3.0, 'is': 2.0, 'votes': 1.0, 'level': 1.0, 'are': 1.0, 'very': 1.0, 'of': 3.0, 'couch': 1.0, 'parents': 1.0, 'always': 1.0, 'minimum': 1.0, 'keeping': 1.0, 'gets': 1.0, 'required': 1.0, 'storage': 1.0, 'height': 1.0, 'baby': 2.0, 'on': 1.0, 'make': 1.0, 'adults': 1.0}
Word element => {'baby': 1.0, 'stuck': 1.0, 'glad': 1.0, 'am': 1.0, 'longer': 1.0, 'perfectly': 1.0, 'now': 1.0, '15': 1.0, 'no': 1.0, 'about': 1.0, 'took': 1.0, 'points': 1.0, 'inches': 1.0, 'more': 1.0, 'screaming': 1.0, 'few': 1.0, 'sewed': 1.0, 'not': 1.0, 'side': 1.0, 'attachment': 1.0, 'back': 2.0, 'bought': 1.0, 'raised': 1.0, 'however': 1.0, 'beneath': 1.0, 'extends': 1.0, 'ready': 1.0, 'her': 2.0, 'works': 2.0, 'did': 1.0, 'marks': 1.0, 'panel': 1.0, 'pressure': 1.0, 'i': 7.0, 'velcro': 1.0, 'finding': 1.0, 'so': 2.0, 'and': 4.0, 'on': 2.0, 'continuously': 1.0, 'after': 1.0, 'stop': 1.0, 'minutes': 1.0, 'was': 1.0, 'our': 1.0, 'to': 3.0, 'legs': 3.0, 'a': 3.0, 's': 1.0, 'go': 1.0, 'removing': 1.0, 'the': 7.0, 'my': 1.0, 'high': 1.0, 'between': 1.0, 'slats': 1.0, 'crib': 3.0, 'kicks': 1.0, 'from': 1.0, 'that': 1.0, 'daughter': 1.0, 'mattress': 1.0, 'this': 3.0, 'found': 1.0, 'fit': 1.0, 'for': 1.0, 'product': 1.0, 'some': 1.0, 'knew': 1.0, 'drop': 1.0, 'something': 1.0, 'would': 1.0, 'sides': 1.0, 'have': 2.0, 'than': 1.0, 'because': 1.0, 'higher': 1.0, 'it': 4.0, 'she': 1.0, 'over': 2.0, 'up': 1.0, 'liner': 1.0, 'really': 1.0, 'has': 1.0, 'well': 1.0, 'hand': 1.0, 'like': 1.0}
Word element => {'be': 1.0, 'received': 1.0, 'helping': 1.0, 'and': 2.0, 'bought': 1.0, 'so': 2.0, 'correctly': 1.0, 'when': 1.0, 'i': 4.0, 'none': 1.0, 'the': 4.0, 'great': 1.0, 'this': 1.0, 'it': 4.0, 'picture': 1.0, 'wouldn': 1.0, 'is': 2.0, 't': 1.0, 'a': 2.0, 'of': 1.0, 'then': 1.0, 'good': 1.0, 'straps': 1.0, '2': 1.0, 'but': 2.0, 'work': 1.0, 'shows': 1.0, 'sleigh': 1.0, 'crib': 2.0, 'in': 1.0, 'were': 1.0, 'thought': 1.0, 'long': 2.0, 'enough': 1.0, 'product': 1.0, 'fit': 1.0, 'my': 1.0, 'shorter': 1.0, 'sides': 2.0, 'would': 1.0, 'at': 1.0, 'put': 1.0, 'on': 1.0, 'which': 1.0, 'not': 1.0, 'to': 1.0, 'all': 1.0, 'as': 2.0}
Word element => {'gotten': 1.0, 'since': 1.0, 'at': 1.0, 'better': 1.0, 'helped': 1.0, 'yes': 1.0, 'so': 1.0, 'other': 1.0, 'wood': 1.0, 'table': 1.0, 'changing': 1.0, 'plan': 1.0, 'is': 1.0, 'there': 1.0, 'stuck': 2.0, 'in': 1.0, 'he': 2.0, 'this': 2.0, 'end': 1.0, 'only': 1.0, 'higher': 1.0, 'it': 2.0, 'crib': 4.0, 'hasn': 1.0, 'old': 1.0, 'baby': 1.0, 'night': 2.0, 'and': 3.0, 'get': 1.0, 'panels': 1.0, 'would': 2.0, 'christina': 1.0, 'legs': 1.0, '5': 1.0, 'his': 1.0, 'used': 1.0, 'arms': 1.0, 'my': 4.0, 'months': 1.0, 'on': 2.0, 'sleep': 1.0, 'to': 1.0, 'up': 1.0, 'wake': 1.0, 'of': 4.0, 'screaming': 1.0, 'the': 8.0, 'a': 2.0, 't': 2.0, 'son': 1.0, 'middle': 1.0, 'has': 2.0, 'well': 1.0, 'i': 2.0, 'two': 1.0, 'love': 1.0, 'for': 1.0, 'product': 2.0, 'fit': 2.0, 'but': 1.0, 'work': 1.0, 'back': 2.0, 'recommend': 1.0, 'doesn': 1.0, 'between': 1.0, 'they': 1.0, 'really': 2.0, 'panel': 2.0, 'because': 1.0}
Word element => {'be': 1.0, 'should': 1.0, 'idea': 1.0, 'great': 1.0, 'poking': 1.0, 'stop': 1.0, 'learn': 1.0, 'have': 1.0, 'rails': 1.0, 'between': 1.0, 't': 1.0, 'doesn': 1.0, 'if': 1.0, 'absolutely': 1.0, '4': 1.0, 'gaps': 1.0, 'on': 1.0, 'just': 1.0, 'says': 1.0, 'crib': 3.0, 'common': 1.0, 'target': 1.0, 'each': 2.0, 'shield': 2.0, 'very': 2.0, 'from': 1.0, 'kid': 1.0, 'panels': 1.0, 'simplicity': 1.0, 'at': 1.0, 'useless': 1.0, 'it': 3.0, 'this': 1.0, 'advertised': 1.0, 'but': 2.0, 'an': 1.0, 'toddler': 1.0, 'the': 6.0, 'my': 3.0, 'aspen': 1.0, 'side': 1.0, 'left': 1.0, 'completely': 1.0, 'is': 2.0, 'disappointed': 1.0, 'cribs': 2.0, 'sized': 1.0, 'standard': 1.0, 'will': 2.0, 'failed': 1.0, 'as': 1.0, 'all': 3.0, 'to': 4.0, 'legs': 2.0, 'cover': 2.0, 'sticks': 1.0, 'entire': 1.0, 'which': 1.0, 'and': 2.0, 'unprotected': 1.0, 'of': 3.0, 'gap': 1.0, 'corner': 1.0, 'product': 1.0, 'fit': 2.0, 'where': 1.0, 'gets': 1.0, 'through': 1.0, 'precisely': 1.0, 'his': 2.0, 'stuck': 1.0}
Word element => {'use': 1.0, 'turning': 1.0, 'just': 1.0, 'or': 1.0, 'mobile': 1.0, 'non': 1.0, 'stars': 2.0, 'give': 1.0, 'would': 1.0, 'not': 1.0, 'did': 1.0, 'manufacturer': 1.0, 'way': 1.0, 'actually': 1.0, 'for': 4.0, 'his': 1.0, 'instead': 1.0, 'corner': 1.0, 'unfastened': 1.0, 'four': 1.0, 'floppy': 1.0, 'play': 1.0, 'son': 1.0, 'see': 1.0, 'so': 1.0, 'can': 2.0, 'we': 1.0, 'a': 5.0, 's': 2.0, 'as': 1.0, 'all': 2.0, 'to': 3.0, 'like': 2.0, 'but': 2.0, 'corners': 1.0, 'by': 2.0, 'others': 1.0, 'rails': 2.0, 'keeping': 1.0, 'out': 1.0, 'through': 3.0, 'fun': 1.0, 'from': 2.0, 'gets': 1.0, 'noted': 1.0, 'shield': 2.0, 'getting': 1.0, 'monitor': 1.0, 'effective': 2.0, 'my': 2.0, 'place': 2.0, 'crowd': 1.0, 'basically': 1.0, 'have': 1.0, 'legs': 2.0, 'except': 1.0, 'used': 1.0, 'i': 4.0, 'little': 2.0, 'two': 2.0, 'kids': 2.0, 'this': 2.0, 'mattress': 1.0, 'and': 2.0, 'arms': 2.0, 'both': 1.0, 'with': 4.0, 'him': 1.0, 'it': 6.0, 'useless': 1.0, 'also': 1.0, 'sticking': 1.0, 'will': 1.0, 'in': 3.0, 'the': 15.0, 'of': 4.0, 'once': 1.0, 'likes': 1.0, 't': 1.0, 'fairly': 1.0, 'are': 3.0, 'push': 1.0, 'crib': 5.0, 'is': 4.0, 'at': 2.0, 'ones': 1.0, 'when': 1.0, 'what': 1.0, 'don': 1.0, 'video': 1.0, 'product': 1.0, 'child': 1.0, 'only': 1.0, 'quickly': 1.0, 'realized': 1.0, 'our': 2.0, 'how': 1.0, 'be': 1.0, 'relocate': 1.0, 'dismantled': 1.0, 'pieces': 2.0, 'bunch': 1.0, 'inside': 1.0, 'that': 5.0, 'easily': 1.0, 'because': 1.0, 'mesh': 1.0, 'up': 1.0, 'takes': 1.0, 'them': 1.0, 'side': 1.0, 'tougher': 1.0, 'figures': 1.0, 'each': 1.0, 'end': 1.0, 'persistent': 1.0, 'intend': 1.0, 'tug': 1.0, 'rip': 1.0, 'velcro': 1.0, 'toddlers': 1.0, 'straps': 2.0, 'over': 2.0, 'open': 1.0, 'gentle': 1.0, 'never': 1.0, 'left': 1.0, 'fastened': 1.0, 'after': 1.0, 'fortunately': 1.0}
Word element => {'more': 1.0, 'had': 2.0, 'have': 2.0, 'since': 1.0, 'be': 1.0, 'will': 1.0, 'attach': 1.0, 'sure': 1.0, 'make': 1.0, 'on': 1.0, 'some': 1.0, 'sewing': 1.0, 'or': 1.0, 'extra': 1.0, 'like': 1.0, 'using': 1.0, 'again': 1.0, 'when': 1.0, 'you': 3.0, 'then': 1.0, 'became': 1.0, 'midnight': 1.0, 'happy': 1.0, 'velcro': 3.0, 'that': 2.0, 'second': 1.0, 'wife': 1.0, 'crib': 1.0, 'itself': 2.0, 'in': 2.0, 'week': 1.0, 'almost': 1.0, 'his': 1.0, 'time': 1.0, 'this': 2.0, 'useless': 1.0, 'it': 3.0, 'stuck': 1.0, 'first': 1.0, 'waking': 1.0, 'one': 1.0, 'decided': 1.0, 'attaching': 1.0, 'to': 5.0, 'mind': 1.0, 'with': 1.0, 'buying': 1.0, 'leg': 1.0, 'of': 1.0, 'little': 1.0, 'screams': 1.0, 'if': 1.0, 'curdling': 1.0, 'blood': 1.0, 'but': 1.0, '2': 1.0, 'my': 2.0, 'wash': 1.0, 'don': 1.0, 'up': 2.0, 'child': 1.0, 'sticky': 1.0, 'out': 1.0, 'surprises': 1.0, 'world': 1.0, 'and': 2.0, 'i': 1.0, 'yourself': 1.0, 'try': 1.0, 'a': 1.0, 't': 1.0, 's': 1.0, 'we': 3.0, 'for': 1.0, 'product': 1.0, 'actually': 1.0, 'after': 2.0, 'ended': 1.0, 'not': 1.0, 'because': 2.0, 'washing': 1.0, 'greatest': 1.0, 'the': 8.0, 'without': 1.0, 'no': 1.0, 'thing': 1.0}
Word element => {'gets': 1.0, 'finish': 1.0, 'sides': 1.0, 'around': 1.0, 'several': 1.0, 'dirty': 1.0, 'stay': 1.0, 'to': 1.0, 'wanted': 1.0, 'like': 2.0, 'satiny': 1.0, 'sons': 1.0, 'because': 1.0, 'white': 1.0, 'pacifiers': 1.0, 'mesh': 1.0, 'bought': 1.0, 'my': 1.0, 'more': 1.0, 'the': 4.0, 'stays': 1.0, 'seems': 1.0, 'in': 1.0, 'crib': 1.0, 'tabbed': 1.0, 'd': 1.0, 'at': 1.0, 'areas': 1.0, 'i': 3.0, 'night': 1.0, 'quick': 1.0, 'this': 1.0, 'velcro': 2.0, 'put': 1.0, 'pretty': 1.0, 'well': 1.0}
Word element => {'mine': 1.0, 'envy': 1.0, 'target': 1.0, 'munchkin': 1.0, 'the': 1.0, 'fits': 1.0, 'all': 1.0, 'basket': 2.0, 'it': 1.0, 'this': 1.0, 'with': 1.0, 'so': 1.0, 'size': 1.0, 'am': 1.0, 'and': 3.0, 'i': 1.0, 'from': 1.0, 'sorts': 1.0, 'of': 2.0, 'sippy': 1.0, 'friends': 1.0, 'bought': 1.0, 'cups': 1.0, 'baby': 1.0, 'needs': 1.0, 'lot': 1.0, 'a': 1.0, 'happy': 1.0, 'my': 1.0}
Word element => {'useful': 1.0, 'and': 1.0, 'effective': 1.0, 'would': 1.0, 'basket': 1.0, 'open': 1.0, 'to': 1.0, 'be': 1.0, 'portion': 2.0, 'nipples': 1.0, 'include': 1.0, 'an': 1.0, 'doesn': 1.0, 'bottom': 2.0, 'falls': 1.0, 'in': 1.0, 'nothing': 1.0, 'overall': 1.0, 'it': 1.0, 'either': 1.0, 'more': 1.0, 'the': 3.0, 't': 1.0, 'fit': 1.0, 'utensils': 1.0, 'i': 1.0, 'fits': 1.0, 'out': 1.0, 'almost': 1.0, 'or': 1.0, 'think': 1.0, 'without': 1.0, 'opening': 1.0}
Word element => {'heavy': 1.0, 'those': 1.0, 'second': 1.0, 'get': 1.0, 'it': 1.0, 'loved': 1.0, 'changing': 1.0, 'shape': 1.0, 'no': 1.0, 'i': 2.0, 'durable': 1.0, 'nipples': 1.0, 'is': 1.0, 'paraphernalia': 1.0, 'stray': 1.0, 'keep': 1.0, 'better': 1.0, 'these': 1.0, 'one': 2.0, 'love': 1.0, 'for': 4.0, 'loads': 1.0, 'and': 2.0, 'allow': 1.0, 've': 2.0, 'in': 1.0, 'pieces': 1.0, 'also': 1.0, 'they': 3.0, 'means': 1.0, 'big': 1.0, 'of': 3.0, 'year': 1.0, 'almost': 1.0, 'cup': 1.0, 'or': 2.0, 'cleaning': 1.0, 'the': 3.0, 'place': 1.0, 'while': 1.0, 'we': 2.0, 'a': 2.0, 'dish': 1.0, 'plastic': 1.0, '6': 1.0, 'washing': 1.0, 'had': 2.0, 'flow': 1.0, 'water': 1.0, '20': 1.0, '5': 1.0, 'which': 1.0, 're': 1.0, 'enough': 2.0, 'free': 1.0, 'now': 1.0, 'roughly': 1.0, '3': 1.0, 'baby': 1.0, 'them': 1.0, 'sippy': 1.0, 'to': 1.0, 'all': 1.0, 'cups': 1.0, 'lids': 1.0}
Word element => {'happy': 1.0, 'front': 1.0, 'space': 1.0, 'up': 1.0, 'take': 1.0, 'then': 1.0, 'larger': 1.0, 'large': 1.0, 'handles': 1.0, 'cob': 1.0, 'corn': 1.0, 'run': 1.0, 'test': 1.0, '34': 1.0, '18': 1.0, 'ge': 1.0, 'line': 1.0, 'all': 1.0, 'to': 4.0, 'be': 1.0, 'able': 1.0, 'small': 1.0, 'have': 1.0, 'not': 2.0, 'new': 1.0, 'would': 3.0, 'looking': 1.0, 'right': 1.0, 'can': 1.0, 'my': 1.0, 'purchase': 1.0, 'found': 1.0, 'this': 3.0, 'is': 3.0, 'on': 1.0, 'put': 2.0, 'things': 1.0, 'etc': 1.0, 'i': 7.0, 'the': 10.0, 'made': 1.0, 'one': 1.0, 'into': 1.0, 'that': 3.0, 'been': 1.0, 'very': 1.0, 'little': 1.0, 'long': 1.0, 'from': 1.0, 'part': 1.0, 'what': 1.0, 'because': 1.0, 'sized': 1.0, 'does': 1.0, 'bottle': 1.0, 'time': 1.0, 'size': 3.0, 'designed': 1.0, 'want': 1.0, 'if': 1.0, 'you': 2.0, 'a': 3.0, 's': 1.0, 'need': 1.0, 'normally': 1.0, 'it': 2.0, 'remove': 1.0, 'bottom': 1.0, 'of': 2.0, 'nipples': 1.0, 'and': 2.0, 'chose': 1.0, 'lids': 1.0, 'do': 1.0, 'for': 5.0, 'fit': 1.0, 'back': 1.0, 'top': 2.0, 'dishwasher': 3.0, 'in': 3.0}
Word element => {'life': 1.0, 'makes': 1.0, 'much': 2.0, 'out': 1.0, 'helps': 1.0, 'sippy': 1.0, 'and': 2.0, 'so': 2.0, 'items': 1.0, 'easier': 1.0, 'parts': 2.0, 'the': 1.0, 'my': 2.0, 'bottle': 2.0, 'i': 2.0, 'bigger': 1.0, 'imagine': 1.0, 'to': 1.0, 'cups': 1.0, 'could': 1.0, 'wash': 1.0, 'perfect': 1.0, 've': 2.0, 'would': 1.0, 'how': 1.0, 'of': 1.0, 'washed': 1.0, 'without': 1.0, 'it': 1.0, 'this': 1.0}
Word element => {'it': 1.0, 'recommend': 1.0, 'the': 3.0, 'more': 1.0, 'small': 1.0, 'items': 2.0, 'highly': 1.0, 'any': 1.0, 'to': 1.0, 'wanted': 1.0, 'for': 1.0, 'or': 1.0, 'dishwasher': 2.0, 'no': 1.0, 'bottom': 1.0, 'of': 2.0, 'just': 1.0, 'upside': 1.0, 'in': 1.0, 'having': 1.0, 'what': 1.0, 'down': 1.0, 'them': 1.0, 'full': 1.0, 'water': 1.0, 'i': 2.0, 'worse': 1.0, 'fall': 1.0}
Word element => {'are': 1.0, 'kids': 1.0, 'my': 1.0, 'product': 1.0, 'washed': 1.0, 'items': 1.0, 'and': 2.0, 'accommodates': 1.0, 'but': 1.0, 'inside': 1.0, 'separate': 1.0, 'while': 1.0, 'being': 1.0, 'larger': 1.0, 'large': 1.0, 'handy': 1.0, 'little': 2.0, 'grown': 1.0, 'the': 2.0, 'love': 1.0, 'basket': 1.0, 'inhibits': 1.0, 'a': 1.0, 'that': 1.0, 'those': 1.0, 'design': 1.0, 'things': 1.0, 'very': 1.0, 'from': 1.0, 'out': 1.0, 'falling': 1.0}
Word element => {'in': 1.0, 'm': 1.0, 'i': 1.0, 'so': 1.0, 'disappointed': 1.0, 'bought': 1.0, 'we': 1.0, 'this': 1.0, 'has': 1.0, 'it': 2.0, 'great': 1.0, 'but': 1.0, 'the': 1.0, 'latch': 1.0, 'been': 1.0, 'broke': 1.0, 'fairly': 2.0, 'soon': 1.0, 'after': 1.0}
Word element => {'little': 1.0, 'wish': 1.0, 'a': 1.0, 'them': 1.0, 'nipples': 1.0, 'mouth': 1.0, 'overlapping': 1.0, 'the': 1.0, 'it': 1.0, 'without': 1.0, 'basket': 1.0, 'to': 1.0, 't': 1.0, 'over': 1.0, 'big': 1.0, 'longer': 1.0, 'isn': 1.0, 'enough': 1.0, 'i': 1.0, '4': 1.0, 'was': 1.0, 'hold': 1.0, 'wide': 1.0}
Word element => {'him': 1.0, 'has': 1.0, 'your': 1.0, 'if': 1.0, 'chubby': 1.0, 'top': 1.0, 'out': 2.0, 'get': 1.0, 'and': 2.0, 'in': 2.0, 'slide': 1.0, 'that': 1.0, 'piece': 1.0, 'legs': 1.0, 'molded': 1.0, 'you': 1.0, 'way': 1.0, 'high': 2.0, 'from': 1.0, 'must': 1.0, 'open': 2.0, 'it': 1.0, 'this': 2.0, 'chair': 2.0, 'a': 1.0, 'front': 1.0, 'baby': 2.0, 'height': 1.0, 'but': 2.0, 'all': 1.0, 'gray': 1.0, 'levels': 1.0, 'off': 1.0, 'various': 1.0, 'are': 1.0, 'great': 1.0, 'the': 7.0, 'does': 2.0, 'difficult': 1.0, 'not': 2.0, 'of': 2.0, 'up': 2.0, 'is': 2.0, 'tray': 2.0, 'to': 1.0, 'comes': 1.0, 'underneath': 1.0}
Word element => {'cuddly': 1.0, 'very': 1.0, 'everything': 1.0, 'than': 1.0, 'other': 1.0, 'matted': 1.0, 'get': 1.0, 'will': 1.0, 'think': 1.0, 'on': 1.0, 'hair': 1.0, 'but': 1.0, 'can': 1.0, 'looking': 1.0, 'keep': 1.0, 'he': 1.0, 'with': 3.0, 'this': 2.0, 'soft': 2.0, 'wanted': 1.0, 'was': 1.0, 'plush': 1.0, 'baby': 1.0, 'years': 1.0, 'purchase': 1.0, 'my': 2.0, 'for': 3.0, 'it': 3.0, 'fond': 1.0, 'just': 2.0, 'not': 1.0, 'giraffe': 1.0, 'would': 1.0, 'him': 2.0, 'mane': 1.0, 'that': 2.0, 'animal': 1.0, 'stuffed': 2.0, 'what': 2.0, 'santa': 1.0, 'goes': 1.0, 'i': 5.0, 'hoped': 1.0, 'through': 1.0, 'the': 4.0, 'bring': 1.0, 'great': 2.0, 'jungle': 1.0, 'is': 4.0, '123': 1.0, 'crib': 1.0, 'a': 1.0, 'we': 1.0, 'bedding': 1.0, 'pleased': 1.0, 'set': 1.0, 'of': 1.0, 'have': 1.0, 'am': 1.0, 'too': 1.0, 'and': 2.0, 'greatly': 1.0}
Word element => {'like': 1.0, 'our': 1.0, 'was': 1.0, 'to': 1.0, 'great': 1.0, 't': 1.0, 'otherwise': 1.0, 'cleared': 1.0, 'disappointed': 1.0, 'also': 1.0, 'different': 1.0, 'reviewer': 1.0, 'a': 3.0, 'because': 1.0, 'looks': 1.0, 'said': 1.0, 'i': 4.0, '4': 2.0, 'chair': 3.0, 'clearing': 1.0, 'have': 1.0, 'bought': 1.0, 'even': 1.0, 'her': 1.0, 'table': 3.0, 'very': 1.0, 'as': 1.0, 'skirt': 3.0, 'come': 1.0, 'this': 2.0, 'it': 3.0, 'with': 1.0, 'no': 1.0, 'problem': 1.0, 'ordered': 1.0, 'close': 1.0, 'didn': 1.0}
Word element => {'but': 1.0, 'have': 1.0, 'at': 1.0, 'use': 2.0, 'we': 1.0, 'simple': 1.0, 'high': 2.0, 'easy': 1.0, 'home': 2.0, 'chair': 3.0, 'on': 1.0, 'regular': 1.0, 'is': 2.0, 'hook': 1.0, 'do': 1.0, 'away': 2.0, 'to': 1.0, 'convenient': 1.0, 'since': 1.0, 'a': 2.0, 'the': 1.0, 'are': 2.0, 'for': 1.0, 'when': 2.0, 'i': 2.0, 'you': 1.0, 'very': 1.0, 'from': 1.0, 'zooper': 1.0, 'not': 1.0, 'it': 1.0, 'this': 1.0}
Word element => {'want': 1.0, 'parents': 1.0, 'option': 1.0, 'suggest': 1.0, 'so': 1.0, 'happier': 1.0, 'buy': 1.0, 'recommending': 1.0, 'used': 1.0, 'ours': 1.0, 'house': 1.0, 'her': 1.0, 'use': 2.0, 'same': 2.0, 'low': 1.0, 'mother': 1.0, 'bum': 1.0, 'say': 1.0, 'wish': 1.0, 'wash': 1.0, 'meal': 1.0, 'pull': 1.0, 'wipe': 1.0, 'you': 3.0, 'well': 1.0, 'fabric': 1.0, 'dropped': 1.0, 'accidentally': 1.0, 'toddlers': 1.0, 'totaly': 1.0, 'gap': 2.0, 'cover': 1.0, 'will': 2.0, 'luckily': 1.0, 'floor': 1.0, 'leg': 1.0, 'slip': 1.0, 'simply': 2.0, '5th': 1.0, 'no': 1.0, 'up': 9.0, 'knowing': 1.0, 'started': 2.0, 'bottom': 1.0, 'love': 1.0, 'minui': 1.0, 'in': 4.0, 'handysitt': 1.0, 'balanced': 1.0, 'kept': 1.0, 'wanted': 2.0, 'start': 1.0, 'the': 43.0, 'meals': 1.0, 'reasons': 1.0, 'had': 1.0, 'because': 4.0, 'luck': 1.0, 'concerned': 1.0, 'loved': 1.0, 'very': 2.0, 'leaving': 2.0, 'himself': 2.0, 'not': 6.0, 'forward': 1.0, 'an': 2.0, 'recently': 1.0, 'hers': 1.0, 'other': 1.0, 'months': 3.0, 'get': 1.0, 'was': 3.0, 'be': 2.0, 'it': 14.0, 'clipped': 1.0, 'while': 1.0, 'solution': 1.0, 'has': 1.0, 'them': 1.0, 'bring': 1.0, 'are': 1.0, 'issues': 1.0, 'my': 10.0, 'table': 10.0, 'brads': 1.0, 'containing': 1.0, 'hate': 1.0, 'sides': 1.0, 'food': 1.0, 'giving': 1.0, 'possible': 1.0, 'trays': 1.0, 'washes': 1.0, 'folded': 1.0, 'when': 4.0, 'everyday': 1.0, 'am': 2.0, 'good': 2.0, 'eating': 1.0, 'really': 2.0, 'at': 4.0, 'lead': 1.0, 'who': 1.0, 'from': 4.0, 'does': 1.0, 'concern': 1.0, 'review': 1.0, 'for': 7.0, 'reasonable': 1.0, 'right': 2.0, 'to': 11.0, 'high': 1.0, 'actually': 1.0, 'us': 4.0, 'also': 1.0, 'lift': 1.0, '4': 2.0, 'i': 14.0, 'feet': 2.0, 'pulled': 1.0, 'working': 1.0, 'reviews': 1.0, 'bad': 1.0, 'we': 10.0, 'this': 11.0, 'tightening': 1.0, 'chair': 18.0, 'like': 2.0, 'until': 1.0, 'blanket': 1.0, 'reviewers': 1.0, 'could': 5.0, 'leaning': 1.0, 'a': 14.0, 'still': 1.0, 'stay': 1.0, 'that': 9.0, 'placed': 1.0, 'foot': 1.0, 'every': 2.0, 'print': 1.0, 'were': 2.0, 'about': 1.0, 'of': 4.0, 'old': 2.0, 'even': 3.0, 'height': 1.0, 'wont': 1.0, 'practical': 1.0, 'phthalates': 1.0, 'plastic': 1.0, '8': 1.0, 'sturdy': 1.0, 'they': 2.0, 'metal': 1.0, 'sitter': 2.0, 'bpa': 1.0, 'think': 1.0, 'on': 5.0, 'minimal': 1.0, 'work': 1.0, 'over': 1.0, 'back': 1.0, 'making': 1.0, 'legs': 3.0, 'then': 3.0, 'only': 1.0, 'she': 1.0, 'make': 1.0, 'ended': 1.0, 'happen': 1.0, 'point': 3.0, 'barely': 1.0, 'triggers': 1.0, 'hold': 1.0, 'stopped': 3.0, 'tight': 2.0, 'would': 2.0, 'any': 1.0, 'more': 1.0, 'now': 1.0, 'randomly': 1.0, 'restrained': 1.0, 'down': 4.0, 'several': 2.0, 'stand': 1.0, 't': 1.0, 'hanging': 1.0, 'after': 1.0, 'though': 2.0, 'by': 1.0, 'inevitable': 1.0, 'much': 2.0, 'his': 2.0, 'seat': 3.0, 'push': 2.0, 'impractical': 1.0, 'real': 1.0, 'safety': 1.0, 'feel': 1.0, 'surfaced': 1.0, 'quickly': 3.0, 'essentially': 1.0, 'is': 8.0, 'can': 3.0, 'off': 2.0, 'fall': 2.0, 'times': 3.0, 'staying': 1.0, 'have': 1.0, 'sit': 1.0, 'as': 6.0, 'pegs': 1.0, 'all': 3.0, 'way': 1.0, 'go': 1.0, '5': 1.0, 'got': 4.0, 'one': 2.0, 'side': 1.0, 'or': 2.0, 'travel': 1.0, 'son': 7.0, 'both': 3.0, 'bought': 1.0, 'seemed': 1.0, 'unsafe': 1.0, 'against': 1.0, 'comes': 1.0, 'unhooked': 1.0, 'safe': 2.0, 'with': 6.0, 'using': 1.0, 'reason': 1.0, 'restraint': 2.0, 'but': 5.0, 'tightness': 1.0, '7': 1.0, 'straps': 2.0, 'adjust': 1.0, 'loosen': 1.0, 'shoulders': 1.0, 'profile': 1.0, 'chairs': 1.0, 'under': 1.0, 'lose': 1.0, 'gave': 2.0, 'he': 7.0, 'him': 4.0, 'pressure': 1.0, 'nothing': 1.0, 'out': 4.0, 'standing': 1.0, '2': 1.0, 'attached': 1.0, 'put': 3.0, 'strap': 1.0, 'and': 19.0, 'just': 5.0, 'runs': 1.0, 'skirt': 1.0, 'between': 2.0, 'always': 1.0, 'most': 1.0, 'space': 1.0, 'wider': 1.0, 'slouching': 1.0, 'sharing': 1.0, 'hole': 2.0, 'day': 1.0, 'affair': 1.0, 'early': 1.0, 'since': 1.0, 'there': 2.0}
Word element => {'thanks': 1.0, 'enjoy': 1.0, 'we': 1.0, 'us': 2.0, '4': 1.0, 'sitting': 1.0, 'with': 2.0, 'him': 1.0, 'works': 1.0, 'great': 1.0, 'month': 1.0, 'being': 1.0, 'old': 1.0, 'loves': 1.0, 'at': 1.0, 'the': 1.0, 'and': 1.0, 'table': 1.0}
Word element => {'gag': 1.0, 'of': 1.0, 'handle': 1.0, 'in': 1.0, 'or': 1.0, 'chair': 2.0, 'are': 1.0, 'if': 1.0, 'super': 1.0, 'would': 1.0, 'clamp': 1.0, 'because': 1.0, 'stuck': 1.0, 'getting': 1.0, 'was': 1.0, 'that': 2.0, 'one': 1.0, 'chico': 1.0, 't': 1.0, 's': 1.0, 'a': 2.0, 'to': 4.0, 'thought': 1.0, 'grandma': 1.0, 'had': 1.0, 'your': 2.0, 'constantly': 1.0, 'on': 3.0, 'germs': 1.0, 'up': 1.0, '6': 1.0, 'plus': 1.0, 'and': 2.0, 'the': 7.0, 'break': 1.0, 'ones': 2.0, 'adventures': 1.0, 'adjustable': 1.0, 'almost': 1.0, 'can': 1.0, '2': 1.0, 'four': 1.0, 'bean': 1.0, 'looking': 1.0, 'extra': 1.0, 'daughter': 1.0, 'safety': 1.0, 'for': 3.0, 'harness': 1.0, '30': 1.0, 'this': 2.0, 'point': 1.0, 'adds': 1.0, 'at': 1.0, 'keep': 2.0, 'who': 1.0, 'climb': 1.0, 'little': 1.0, 'more': 1.0, 'holds': 1.0, 'is': 2.0, 'annoying': 1.0, 'it': 1.0, 'she': 2.0, 'hand': 1.0, 'like': 2.0, 'table': 1.0, 'still': 1.0, 'trunk': 1.0, 'has': 1.0, 'restaurant': 1.0, 'before': 1.0, 'needs': 1.0, 'clamps': 1.0, 'out': 1.0, 'my': 2.0, 'fits': 1.0, 'every': 1.0, 'you': 1.0, 'lbs': 1.0, 'easily': 1.0, 'thanks': 1.0, 'restaurants': 1.0, 'pounds': 1.0, 'i': 2.0}
Word element => {'house': 1.0, 'too': 1.0, 'isn': 1.0, 'bulky': 1.0, 'take': 2.0, 'you': 1.0, 'cute': 1.0, 't': 1.0, 'wonderful': 1.0, 'and': 2.0, 'it': 3.0, 'great': 2.0, 'grandparents': 1.0, 'worked': 1.0, 'is': 2.0, 'with': 1.0, 'to': 3.0}
Word element => {'travel': 1.0, 'you': 1.0, 'if': 1.0, 'out': 1.0, 'lighter': 1.0, 'much': 1.0, 'are': 1.0, 'plan': 1.0, 'a': 1.0, 'one': 1.0, 'range': 1.0, '3': 1.0, 'note': 1.0, 'which': 1.0, 'didn': 1.0, 'chair': 2.0, 'in': 1.0, 'somewhere': 1.0, 'disappointed': 1.0, 'pleasantly': 1.0, 'there': 2.0, 'of': 1.0, 'by': 1.0, 'find': 1.0, 'is': 2.0, 'lip': 1.0, 'ones': 1.0, 'heavy': 1.0, 'more': 1.0, 'the': 3.0, 't': 1.0, 'but': 1.0, 'surprised': 1.0, 'work': 1.0, 'look': 1.0, 'was': 2.0, 'to': 2.0, 'this': 2.0, 'it': 2.0, 'with': 2.0, '4': 1.0, 'on': 1.0, 'that': 1.0, 'our': 1.0, 'table': 1.0}
Word element => {'about': 1.0, 'being': 1.0, 'second': 1.0, 'actually': 1.0, 'into': 1.0, 'grow': 1.0, 'left': 1.0, 'month': 1.0, 'quite': 1.0, 'this': 1.0, 'had': 1.0, 'out': 2.0, 'goes': 1.0, 'clean': 1.0, 'support': 1.0, 'unsnap': 1.0, 'just': 1.0, 'attach': 1.0, 'do': 1.0, 'if': 2.0, 'down': 2.0, 'through': 1.0, 'old': 1.0, 'run': 1.0, 'little': 1.0, '7': 1.0, 'less': 1.0, 'wipes': 2.0, 'between': 1.0, 'big': 2.0, 'runs': 1.0, 'nylon': 1.0, 'there': 1.0, 'safety': 1.0, 'strap': 2.0, 'brown': 1.0, 'tan': 1.0, 'baby': 2.0, 'plenty': 1.0, 'with': 3.0, 'hard': 1.0, 'looked': 1.0, 'already': 1.0, 'it': 12.0, 'are': 2.0, 'off': 1.0, 'see': 1.0, 'room': 1.0, 'once': 1.0, 'comes': 1.0, 'lack': 1.0, 'take': 2.0, 'we': 5.0, 't': 2.0, 'house': 1.0, 'trim': 1.0, 'opted': 1.0, 'but': 2.0, 'board': 2.0, 'a': 10.0, 'small': 1.0, 'have': 3.0, 'one': 1.0, 'too': 2.0, 'pleasing': 1.0, 'and': 10.0, 'as': 4.0, 'in': 8.0, 'seat': 2.0, 'main': 1.0, 'is': 6.0, 'pic': 1.0, 'at': 1.0, 'to': 4.0, 'high': 2.0, 'chair': 3.0, 'on': 4.0, 'potential': 1.0, 'your': 1.0, 'hook': 2.0, 'way': 1.0, 'huge': 1.0, 'zooper': 1.0, 'especially': 1.0, 'for': 4.0, 'love': 1.0, 'yet': 1.0, 'lap': 1.0, 'colored': 1.0, 'front': 1.0, 'brightly': 1.0, 'thing': 1.0, 'no': 2.0, 'was': 2.0, 'last': 1.0, 'wash': 1.0, 'skirt': 1.0, 'use': 1.0, 'her': 1.0, 'needed': 1.0, 'washer': 1.0, 'back': 3.0, 'colors': 1.0, 'another': 1.0, 'may': 1.0, 'my': 2.0, 'plastic': 3.0, 'our': 3.0, 'item': 1.0, 'design': 1.0, 'simple': 1.0, 'instead': 1.0, 'practical': 1.0, 'clears': 1.0, '4': 1.0, 'table': 3.0, 'though': 1.0, 'problem': 1.0, 'getting': 2.0, 'did': 1.0, 'hooked': 1.0, 'bar': 3.0, 'breeze': 1.0, 'fingers': 1.0, 'clamps': 3.0, 'covered': 2.0, 'you': 4.0, 'don': 2.0, 'get': 1.0, 'nicely': 1.0, 'pinched': 1.0, 'cushioned': 2.0, 'scratches': 1.0, 'sticking': 1.0, 'does': 1.0, 'easily': 2.0, 'that': 2.0, 'because': 1.0, 'not': 2.0, 'pink': 1.0, 'metal': 2.0, 'so': 4.0, 'metoo': 1.0, 'mess': 1.0, 'cushioning': 1.0, 'buy': 2.0, 'the': 18.0, 'of': 4.0, 'suppord': 1.0, 'i': 1.0, 'well': 3.0, 'has': 2.0, 'full': 1.0, 'harness': 1.0}
Word element => {'fold': 1.0, 'out': 1.0, 'work': 1.0, 'still': 1.0, 'them': 1.0, 'wash': 1.0, 'bits': 1.0, 'cloth': 1.0, 'remove': 1.0, 'idea': 1.0, 'no': 1.0, 'therefore': 1.0, 'instructions': 1.0, 'would': 2.0, 'allow': 1.0, 'basic': 1.0, 'infant': 1.0, 'sure': 1.0, 'get': 1.0, 'line': 1.0, 'stiff': 1.0, 'seem': 1.0, 'difficult': 1.0, 'for': 2.0, 'a': 3.0, 't': 1.0, 'we': 2.0, 's': 1.0, 'about': 1.0, 'front': 1.0, 'are': 1.0, 'zip': 1.0, 'suppose': 1.0, 'have': 3.0, 'they': 1.0, 'that': 2.0, 'but': 1.0, 'zipping': 1.0, 'really': 5.0, 'was': 2.0, 'i': 9.0, 'feature': 1.0, 'not': 3.0, 'ad': 1.0, 'finding': 1.0, 'excited': 1.0, 'little': 1.0, 'nice': 1.0, 'this': 4.0, '30': 1.0, 'it': 6.0, 'looks': 2.0, 'safety': 1.0, 'up': 3.0, 'sound': 1.0, 'product': 1.0, 'zippers': 1.0, 'eye': 1.0, 'came': 1.0, 'm': 5.0, 'in': 4.0, 'now': 1.0, 'air': 1.0, 'plainness': 1.0, 'don': 1.0, 'buckles': 1.0, 'why': 1.0, 'just': 2.0, 'unbuckle': 1.0, 'life': 1.0, 'think': 1.0, 'better': 2.0, 'climate': 1.0, 'toddlers': 1.0, 'is': 4.0, 'at': 1.0, 'do': 1.0, 'cheap': 1.0, 'like': 3.0, 'net': 1.0, 'perhaps': 1.0, 'back': 1.0, 'will': 1.0, 'also': 2.0, 'live': 1.0, 'how': 2.0, 'stroller': 5.0, 'disappointed': 1.0, 'which': 1.0, 'good': 1.0, 'ventilation': 1.0, 'made': 1.0, 'warm': 1.0, '00': 1.0, 'so': 1.0, 'kinda': 1.0, 'navy': 1.0, 'the': 12.0, 'of': 1.0, 'been': 1.0, 'blue': 1.0, 'blah': 1.0, 'catching': 1.0, 'real': 1.0, 'to': 8.0, 'pretty': 1.0, 'and': 1.0, 'trying': 1.0, 'another': 1.0, 'actually': 1.0, 'color': 1.0, 'with': 1.0, 'very': 1.0}
Word element => {'a': 1.0, 'done': 1.0, 'could': 1.0, 'they': 1.0, 'rubber': 1.0, 'of': 1.0, 'job': 1.0, 'tires': 1.0, 'sure': 1.0, 'ride': 1.0, 'only': 1.0, 'this': 1.0, 'it': 2.0, 'not': 3.0, 'am': 1.0, 'smooth': 1.0, 'stroller': 2.0, 'have': 1.0, 'all': 1.0, 'better': 1.0, 'if': 1.0, 'pretty': 1.0, 'plastic': 1.0, 'flimsy': 1.0, 'i': 1.0, 'very': 1.0, 'tray': 1.0, 'is': 3.0, 'real': 1.0, 'are': 1.0, 'paid': 1.0, 'worth': 1.0, 'great': 1.0, 'the': 3.0, 'made': 2.0, 'for': 1.0, 'that': 1.0}
Word element => {'bother': 1.0, 'don': 1.0, 'night': 1.0, 'all': 1.0, 'checking': 1.0, 'son': 1.0, 'let': 1.0, 'if': 1.0, 'getting': 1.0, 'am': 1.0, 'product': 1.0, 'but': 1.0, 'over': 1.0, 'work': 1.0, 'nice': 1.0, 'like': 1.0, 'something': 1.0, 'have': 1.0, 'unsafe': 2.0, 'extremely': 1.0, 'off': 1.0, 'liner': 5.0, 'be': 2.0, 'followed': 1.0, 'immediately': 1.0, 'lot': 1.0, 'happy': 1.0, 'for': 2.0, 'new': 4.0, 'how': 1.0, 'our': 1.0, 'as': 2.0, 'sleep': 4.0, 'back': 1.0, 'ready': 1.0, 'even': 2.0, 'contacted': 1.0, 'can': 1.0, 'so': 3.0, 'insert': 3.0, 'company': 2.0, 'wash': 3.0, 'in': 6.0, 'newborn': 3.0, 'my': 3.0, 'me': 1.0, 'received': 1.0, 'basket': 7.0, 'that': 1.0, 'moses': 1.0, 'arrival': 1.0, 'shrunk': 1.0, 'pops': 1.0, 'get': 2.0, 'months': 1.0, 'while': 1.0, 'from': 1.0, 'would': 5.0, 'properly': 1.0, 'i': 14.0, 'on': 5.0, 'put': 1.0, 'bought': 1.0, 'instructions': 1.0, 'bad': 1.0, 'first': 1.0, 'she': 1.0, 'few': 1.0, 'this': 5.0, 'had': 1.0, 'him': 1.0, 'already': 1.0, 'it': 7.0, 'thought': 1.0, 'was': 7.0, 'home': 2.0, 'weight': 1.0, 'and': 9.0, 'sent': 1.0, 'came': 1.0, 'apologized': 1.0, 'a': 7.0, 'fit': 2.0, 't': 3.0, 'whole': 1.0, 'told': 1.0, 'best': 1.0, 'way': 1.0, 'up': 1.0, 'less': 1.0, 'water': 1.0, 'hospital': 2.0, 'collapses': 1.0, 'reshape': 1.0, 'not': 5.0, 'dry': 2.0, 'really': 1.0, 'with': 4.0, 'convenient': 1.0, 'mom': 2.0, 'idea': 1.0, 'when': 2.0, 'is': 3.0, 'cable': 1.0, 'touch': 1.0, 'delivered': 1.0, 'cold': 1.0, 'thick': 1.0, 'washing': 1.0, 'knit': 1.0, 'take': 1.0, 'forever': 1.0, 'just': 1.0, 'placed': 1.0, 'day': 1.0, 'pad': 1.0, 'very': 1.0, 'to': 8.0, 'timely': 1.0, 'they': 1.0, 'manner': 1.0, 'does': 1.0, 'went': 1.0, 'didn': 1.0, 'he': 1.0, 'bottom': 1.0, 'the': 22.0, 'of': 2.0}
Word element => {'doesn': 1.0, 'that': 1.0, 'all': 1.0, 'size': 1.0, 'one': 1.0, 'used': 1.0, 'basket': 1.0, 'infant': 1.0, 'sloping': 1.0, 'creates': 1.0, 't': 1.0, 'the': 1.0, 'fits': 1.0, 'made': 1.0, 'poorly': 2.0, 'baby': 1.0, 'manufacturer': 1.0, 'so': 1.0, 'on': 1.0, 'rolling': 1.0, 'sides': 1.0, 'slides': 1.0, 'is': 1.0, 'lining': 3.0, 'fit': 1.0, 'around': 1.0, 'has': 1.0, 'handles': 1.0, 'in': 1.0, 'it': 1.0, 'fitted': 1.0, 'taken': 1.0, 'a': 2.0}
Word element => {'bag': 1.0, 'than': 1.0, 'a': 2.0, 'like': 1.0, 'color': 1.0, 'fabric': 1.0, 'loved': 1.0, 'kit': 1.0, 'looks': 1.0, 'aditional': 1.0, 'is': 1.0, 'bags': 2.0, 'and': 3.0, 'rahter': 1.0, 'perfect': 1.0, 'additional': 1.0, 'inside': 2.0, 'diapers': 1.0, 'with': 1.0, 'it': 2.0, 'i': 3.0, 'diaper': 1.0, 'the': 3.0, 'for': 1.0, 'fashion': 1.0, 'some': 1.0, 'rather': 1.0, 'would': 1.0, 'sutff': 1.0, 'other': 1.0, 'size': 1.0, 'completed': 1.0, 'bu': 1.0, 'by': 1.0, 'comes': 1.0, 'buying': 1.0}
Word element => {'about': 1.0, 'beautiful': 1.0, 'thinking': 1.0, 'better': 1.0, 'her': 1.0, 'use': 1.0, 'enough': 1.0, 'old': 1.0, 'price': 1.0, 'year': 1.0, '2': 1.0, '1': 2.0, 'myself': 1.0, 'when': 1.0, 'shower': 1.0, 'purchasing': 1.0, 'believe': 1.0, 'bought': 2.0, 'distracted': 1.0, 'anything': 1.0, 'take': 1.0, 'grab': 1.0, 're': 1.0, 'come': 1.0, 'someone': 1.0, 'grandson': 1.0, 'easy': 1.0, 'not': 1.0, 'while': 2.0, 'my': 3.0, 'me': 2.0, 'love': 2.0, 'handles': 2.0, 'right': 2.0, 'but': 3.0, 'cart': 1.0, 'stroller': 1.0, 'shopping': 2.0, 'around': 2.0, 'strap': 1.0, 'unhook': 1.0, 'would': 1.0, 'like': 1.0, 'saw': 1.0, 'clasp': 1.0, 'large': 1.0, 'have': 2.0, 'and': 6.0, 'on': 2.0, 'anchored': 1.0, 'fill': 1.0, 'baby': 1.0, 'many': 1.0, 'pocket': 2.0, 'normal': 1.0, 'everything': 1.0, 'attach': 1.0, 'larger': 2.0, 'there': 1.0, 's': 6.0, 'front': 5.0, 'really': 2.0, 'wippies': 1.0, 'made': 1.0, 'gift': 1.0, 'side': 7.0, 'handle': 1.0, 'is': 6.0, 'more': 1.0, 'outside': 1.0, 'center': 3.0, 'different': 1.0, 'any': 2.0, 'sizes': 1.0, 'size': 1.0, 'get': 1.0, 'tons': 1.0, 'nearly': 1.0, 'used': 1.0, 'back': 2.0, 'sections': 3.0, 'even': 2.0, 'by': 3.0, 'divided': 2.0, 'highly': 1.0, 'this': 5.0, 'bottle': 1.0, 'well': 1.0, 'i': 15.0, 'day': 1.0, 'etc': 1.0, 'carry': 1.0, 'designed': 1.0, 'wrap': 2.0, 'three': 4.0, 'into': 2.0, 'until': 1.0, 'two': 3.0, 'nice': 1.0, 've': 1.0, 'hand': 1.0, 'straps': 2.0, 'something': 1.0, 'each': 2.0, 'wait': 1.0, 'or': 7.0, 'need': 1.0, 'bag': 12.0, 'it': 12.0, 'don': 1.0, 'as': 2.0, 'diaper': 1.0, 'of': 16.0, 'the': 22.0, 'place': 1.0, 'cutest': 1.0, 'bar': 1.0, 'portion': 1.0, 'm': 2.0, 'in': 5.0, 'to': 6.0, 'length': 1.0, 'them': 2.0, 'has': 4.0, 'so': 5.0, 'can': 8.0, 'four': 1.0, 'cup': 1.0, 'seen': 1.0, 'that': 6.0, 'easily': 1.0, 'actually': 2.0, 'for': 5.0, 'niece': 2.0, 'put': 1.0, 'sippy': 1.0, 'inside': 2.0, 'magnetic': 1.0, 'also': 1.0, 'had': 1.0, 'type': 1.0, 'choice': 1.0, 'you': 7.0, 'things': 1.0, 'very': 3.0, 'recommend': 1.0, 'together': 1.0, 'full': 2.0, 'held': 1.0, 'one': 4.0, 'an': 1.0, 'raising': 1.0, 'all': 2.0, 'ever': 1.0, 'other': 3.0, 'cost': 1.0, 't': 4.0, 'along': 1.0, 'hold': 1.0, 'out': 4.0, 'way': 3.0, 'if': 1.0, 'every': 1.0, 'bigger': 1.0, 'zippered': 1.0, 'section': 3.0, 'zipper': 1.0, '100': 1.0, 'another': 1.0, 'pockets': 7.0, 'with': 1.0, 'attached': 1.0, 'no': 1.0, 'a': 8.0, 'tiny': 1.0, 'closer': 1.0, 'unusable': 1.0, 'first': 1.0, 'cute': 1.0, 'diapers': 2.0, 'are': 2.0}
Word element => {'worry': 1.0, '20': 1.0, 'at': 1.0, 'safe': 1.0, 'diaper': 1.0, 'amount': 1.0, 'better': 1.0, 'should': 1.0, 'first': 1.0, 'have': 2.0, 'would': 1.0, 'somewhere': 1.0, 'indication': 1.0, 'an': 1.0, 'there': 1.0, 'bag': 3.0, 'return': 2.0, 'bought': 1.0, 'decided': 1.0, 'so': 2.0, 'pad': 1.0, 'transaction': 1.0, 'on': 1.0, 'but': 1.0, 'change': 1.0, 'to': 4.0, 'i': 8.0, 'pay': 1.0, 'shipping': 1.0, 'gets': 1.0, 'both': 1.0, 'm': 1.0, 'urethane': 2.0, 'if': 1.0, 'want': 2.0, 'horrible': 1.0, 'and': 6.0, 'with': 1.0, 'it': 3.0, 'lost': 1.0, 'full': 1.0, 'wish': 1.0, 'this': 2.0, 'looking': 1.0, 'person': 1.0, 'liked': 1.0, 'for': 1.0, 'product': 1.0, 'you': 1.0, 'smells': 1.0, 'hot': 1.0, 'made': 3.0, 'was': 2.0, 'unfortunately': 1.0, 'my': 1.0, 'place': 1.0, 'myself': 1.0, 'the': 8.0, 'is': 2.0, 'more': 2.0, 'a': 2.0, 's': 2.0, 't': 2.0, 'of': 4.0, 'which': 1.0, 'other': 1.0, 'anything': 1.0, 'worse': 1.0, 'look': 2.0, 'online': 1.0, 'her': 2.0, 'refunded': 1.0, 'in': 5.0, 'attractive': 1.0, 'really': 1.0, 'weather': 1.0, 'brands': 1.0, 'than': 1.0, 'fumes': 1.0, 'are': 2.0, 'me': 1.0, 'not': 4.0, 'been': 1.0, 'that': 2.0, 'what': 1.0, 'either': 1.0, 'worried': 1.0, 'about': 1.0, 'baby': 1.0, 'don': 2.0, 'breathing': 1.0, 'healthy': 1.0, 'unhealthy': 1.0, 'certainly': 1.0}
Word element => {'unsafe': 1.0, 'when': 1.0, 'against': 1.0, 'doesn': 1.0, 'places': 1.0, 'even': 1.0, 'up': 1.0, 'over': 1.0, 'soap': 1.0, 'unsightly': 1.0, 'mild': 1.0, 'with': 1.0, 'is': 4.0, 'who': 1.0, 'chair': 1.0, 'water': 1.0, 'daughter': 2.0, 'less': 1.0, 'she': 1.0, 'secures': 1.0, 'it': 5.0, 'chairs': 1.0, 'peeling': 1.0, 'sponge': 1.0, 'of': 3.0, 'all': 1.0, 'to': 3.0, 'and': 4.0, 'green': 1.0, 'two': 1.0, 'i': 4.0, 'old': 1.0, 'these': 2.0, 'the': 3.0, 'great': 1.0, 'own': 3.0, 'that': 3.0, 'only': 1.0, 'works': 1.0, 'both': 1.0, 'one': 2.0, 'months': 1.0, '20ibs': 1.0, 'rub': 1.0, 'peel': 1.0, 'sitting': 1.0, 'but': 1.0, 'blue': 1.0, 'wonderfully': 2.0, 'week': 1.0, 'very': 1.0, 'small': 1.0, 'however': 1.0, '19': 1.0, 'after': 1.0, 'my': 2.0, 'fits': 1.0, 'clean': 2.0, 'them': 1.0, 'in': 2.0, 'also': 1.0, 'easy': 1.0, 'began': 1.0, 'than': 1.0, 's': 1.0, 't': 1.0, 'a': 2.0, 'use': 1.0}
Word element => {'from': 1.0, 'carry': 1.0, 'always': 1.0, 'not': 1.0, 'large': 1.0, 'bit': 1.0, 'that': 1.0, 'several': 1.0, 'this': 1.0, 'only': 1.0, 'with': 1.0, 'chair': 1.0, 'high': 1.0, 'my': 2.0, 'i': 1.0, 'son': 2.0, 'very': 2.0, 'provides': 1.0, 'it': 2.0, 'truly': 1.0, 'find': 1.0, 'of': 1.0, 'buckles': 1.0, 'a': 2.0, 'attaches': 1.0, 'child': 1.0, 'purchased': 1.0, 'travel': 1.0, 'use': 1.0, 'any': 1.0, 'as': 1.0, 'seat': 6.0, 'to': 6.0, 'which': 1.0, 'comfortable': 1.0, 'seemed': 1.0, 'are': 1.0, 'in': 1.0, 'kind': 1.0, 'easy': 2.0, 'attach': 1.0, 'place': 2.0, 'the': 5.0, 'musty': 1.0, 'booster': 1.0, 'safe': 1.0, 'is': 3.0, 'and': 1.0, 'your': 1.0, 'also': 1.0, 'will': 1.0, 'for': 1.0, 'fit': 1.0, 'securely': 1.0, 'problem': 1.0}
Word element => {'see': 1.0, 'advantage': 1.0, 'only': 1.0, 'base': 1.0, 'food': 1.0, 'clean': 1.0, 'find': 1.0, 'toddler': 1.0, 'run': 1.0, 'occasionally': 1.0, 'have': 2.0, 'half': 1.0, 'into': 1.0, 'that': 3.0, 'now': 1.0, 'seat': 2.0, 'to': 4.0, 'confusing': 1.0, 'my': 2.0, 'added': 1.0, 'are': 2.0, 'the': 9.0, 's': 1.0, 'we': 1.0, 'a': 2.0, 't': 1.0, 'price': 1.0, 'for': 1.0, 'afraid': 1.0, 'and': 5.0, 'straps': 2.0, 'red': 1.0, 'o': 1.0, 'trapped': 1.0, 'didn': 1.0, 'got': 1.0, 'security': 1.0, 'clothing': 1.0, 'no': 1.0, 'glad': 1.0, 'there': 1.0, 'chair': 3.0, 'two': 1.0, 'i': 5.0, 'full': 1.0, 'this': 1.0, 'used': 1.0, 'difficult': 1.0, 'gets': 2.0, 'pay': 1.0, 'y': 1.0, 'longer': 1.0, 'little': 1.0, 'very': 1.0, 'figure': 1.0, 'so': 3.0, 'needs': 1.0, 'in': 1.0, 'them': 3.0, 'out': 1.0, 'you': 1.0, 'when': 1.0, 'am': 1.0, 'how': 1.0, 'it': 2.0, 'remove': 1.0, 'from': 1.0, 'is': 1.0, 'fear': 1.0, 'also': 1.0, 'will': 2.0, 'your': 2.0, 'put': 1.0, 'unsightly': 1.0, 'back': 1.0, 'never': 1.0, 'together': 1.0, 'between': 1.0, 'they': 1.0, 'wet': 1.0, 'just': 1.0, 'one': 1.0, 'color': 1.0, 'hang': 1.0}
Word element => {'old': 1.0, 'he': 1.0, 'buy': 1.0, 'with': 1.0, 'are': 1.0, 'here': 1.0, 'issues': 1.0, 'no': 1.0, 'clean': 1.0, 'her': 1.0, 'put': 1.0, 'doesn': 1.0, 'will': 1.0, 'seems': 1.0, 'comfy': 1.0, 'in': 2.0, 'pushed': 1.0, 'that': 1.0, 'exact': 1.0, 'chair': 2.0, 'far': 1.0, 'take': 1.0, 'same': 1.0, 'atractive': 1.0, 'is': 3.0, 'enough': 1.0, 'off': 1.0, 'fuss': 1.0, 'one': 1.0, 'for': 1.0, 'love': 1.0, 'cute': 1.0, 'attaches': 2.0, 'out': 1.0, 'superior': 1.0, 'purchase': 1.0, 'fits': 1.0, 'my': 3.0, 'hated': 1.0, 'straps': 2.0, 'way': 1.0, 'stays': 1.0, 'until': 1.0, 'great': 1.0, 'kiddo': 1.0, 'the': 5.0, 'our': 1.0, 'to': 4.0, 'seat': 2.0, 'we': 4.0, 't': 3.0, 'a': 1.0, 'securely': 2.0, 'see': 1.0, 'booster': 1.0, 'tried': 1.0, 'artist': 1.0, 'this': 3.0, 'it': 3.0, 'keekaroo': 1.0, 'and': 6.0, 'easy': 1.0, 'get': 1.0, 'happy': 1.0, 'kid': 1.0, 'can': 2.0, 'escape': 1.0, 'even': 2.0, 'very': 2.0, 'son': 1.0, 'under': 1.0, 'like': 1.0, 'table': 1.0, 'so': 1.0, 'you': 2.0, 'when': 3.0}
Word element => {'boys': 1.0, 'big': 1.0, 'like': 1.0, 'table': 1.0, 'can': 1.0, 'meals': 1.0, 'twins': 1.0, 'our': 1.0, 'us': 1.0, 'too': 1.0, 'for': 1.0, 'join': 1.0, 'comfortable': 1.0, 'are': 1.0, 'they': 2.0, 'ordered': 1.0, 'stylish': 1.0, 'at': 1.0, 'booster': 1.0, 'my': 1.0, 'more': 1.0, 'the': 2.0, 'than': 1.0, 'but': 1.0, 'seats': 1.0, 'looked': 1.0, 'this': 1.0, 'only': 1.0, 'other': 1.0, 'we': 1.0, 'because': 1.0, 'seat': 1.0, 'not': 1.0, 'do': 2.0, 'saw': 1.0, 'nice': 1.0, 'now': 1.0, 'husband': 1.0, 'look': 1.0}
Word element => {'been': 1.0, 'has': 1.0, 'other': 1.0, 'is': 1.0, 'than': 1.0, 'under': 1.0, 'perfect': 1.0, 'stuck': 1.0, 'chairs': 1.0, 'food': 1.0, 'pad': 1.0, 'dining': 1.0, 'very': 1.0, 'as': 1.0, 'that': 1.0, 'our': 1.0, 'stars': 1.0, 'to': 2.0, 'and': 1.0, 'perfectly': 1.0, 'love': 1.0, 'gets': 1.0, 'gave': 1.0, 'straps': 1.0, 'item': 1.0, 'hard': 1.0, 'it': 2.0, 'this': 1.0, 'the': 1.0, 'lightweight': 1.0, 'seat': 1.0, 'because': 1.0, 'barstool': 1.0, 'well': 1.0, 'green': 1.0, 'i': 1.0, 'remove': 1.0, '4': 1.0, 'easily': 1.0}
Word element => {'stool': 1.0, 'bistro': 1.0, 'on': 1.0, 'old': 1.0, 'year': 1.0, 'stays': 1.0, '1': 1.0, 'belt': 1.0, 'harness': 1.0, 'chairs': 1.0, 'different': 1.0, 'clean': 1.0, 'both': 1.0, 'of': 1.0, 'because': 1.0, 'just': 2.0, 'color': 2.0, 'high': 1.0, 'were': 1.0, 'from': 1.0, 'they': 1.0, 'move': 1.0, 'retrospect': 1.0, '2': 2.0, 'but': 1.0, 'super': 1.0, 'booster': 1.0, 'i': 3.0, 'two': 1.0, 'prefer': 1.0, 'easy': 2.0, 'our': 2.0, 'as': 1.0, 'to': 3.0, 'out': 1.0, 'toddler': 1.0, 'ordered': 1.0, 'blueberry': 1.0, 'for': 2.0, 'highchair': 1.0, 'kids': 1.0, 'this': 1.0, 'she': 1.0, 'it': 3.0, 'the': 4.0, 'we': 4.0, 'transitioned': 1.0, 'a': 2.0, 't': 2.0, 'don': 2.0, 'mind': 1.0, 'have': 2.0, 'girls': 1.0, 'likes': 1.0, 'green': 2.0, 'and': 4.0, 'in': 2.0, 'should': 1.0, 'waited': 1.0, 'colors': 1.0, 'brighter': 1.0, 'fine': 2.0, 'll': 1.0, 'use': 2.0}
Word element => {'australia': 1.0, 'shown': 1.0, 'and': 1.0, 'ship': 1.0, 'quite': 1.0, 'back': 1.0, 'purple': 1.0, 'be': 1.0, 'to': 1.0, 'from': 1.0, 'as': 2.0, 'pink': 1.0, 'basically': 1.0, 'raspberry': 1.0, 'not': 1.0, 'vibrant': 1.0, 'would': 1.0, 'is': 1.0, 'the': 3.0, 'disappointed': 1.0, 'in': 1.0, 'images': 1.0, 'i': 1.0, 'too': 1.0, 'm': 1.0, 'it': 2.0, 'expensive': 1.0}
Word element => {'though': 1.0, 'cute': 1.0, 'is': 1.0, 'make': 1.0, 'me': 1.0, 'and': 1.0, 'very': 1.0, 'pink': 1.0, 'little': 1.0, 'but': 2.0, 'will': 1.0, 'was': 1.0, 'not': 2.0, 'bag': 2.0, 's': 2.0, 'it': 3.0, 'black': 1.0, 'a': 2.0, 'i': 2.0, 'guess': 1.0, 'thought': 1.0, 'that': 1.0, 'pack': 1.0, 'small': 1.0, 'so': 1.0, 'the': 1.0, 'heavy': 1.0}
Word element => {'higher': 1.0, 'on': 1.0, 'big': 1.0, 'spend': 1.0, 'want': 1.0, 'don': 1.0, 'bucks': 1.0, 'you': 1.0, 'if': 1.0, 'buying': 1.0, 'recommend': 1.0, 'would': 1.0, 'way': 1.0, 'gets': 1.0, 'need': 1.0, 'times': 2.0, 'frame': 1.0, 'snap': 1.0, 'researching': 1.0, 'easy': 2.0, 'found': 1.0, 'few': 1.0, 'this': 6.0, 'provide': 1.0, 'had': 3.0, 'pretty': 1.0, 'to': 9.0, 'sleep': 1.0, 'infant': 2.0, 'car': 3.0, 'what': 1.0, 'when': 1.0, 'graco': 1.0, 'ride': 1.0, 'after': 1.0, 'and': 7.0, 'very': 1.0, 'access': 1.0, 'good': 2.0, 'which': 2.0, 'using': 2.0, 'hand': 1.0, 'have': 1.0, 'months': 3.0, 'fabric': 1.0, 'for': 6.0, 'a': 6.0, 't': 3.0, 'been': 2.0, 'into': 3.0, 'as': 1.0, 'universal': 1.0, 'stroller': 9.0, 'far': 2.0, 'compact': 1.0, 'be': 1.0, 'well': 1.0, 'putting': 1.0, 'i': 5.0, 'end': 1.0, 'restaurants': 1.0, 'overall': 1.0, 'satisfied': 1.0, 'steer': 1.0, 'my': 3.0, 'purchase': 1.0, '2': 1.0, 'so': 2.0, 'lightweight': 2.0, 'can': 2.0, 'with': 6.0, 'smooth': 1.0, 'recline': 1.0, '9': 2.0, 'it': 5.0, 'shade': 1.0, 'use': 1.0, 'at': 1.0, 'is': 3.0, 'its': 4.0, 'was': 2.0, 'doesn': 2.0, 'm': 1.0, 'seat': 6.0, 'in': 4.0, 'taking': 2.0, 'out': 1.0, 'of': 2.0, 'the': 8.0, 'without': 1.0, 'place': 1.0, 'basket': 1.0, 'padded': 1.0, 'bring': 1.0, 've': 1.0, 'baby': 1.0, 'quite': 1.0, 'flat': 1.0, 'pros': 1.0, 'canopy': 1.0, 'happy': 1.0, 'try': 1.0, 'too': 1.0, 'one': 1.0, 'lot': 1.0, 'space': 1.0, 'cons': 1.0, 'adaptor': 1.0, 'extend': 1.0, 'enough': 1.0, 'coverage': 1.0, 'capable': 1.0, 'keeps': 1.0, 'seem': 1.0, 'secure': 1.0, 'just': 1.0, 'even': 2.0, 'buckle': 1.0, 'position': 1.0, 'strap': 1.0, 'though': 1.0, 'no': 1.0, 'that': 1.0, 'problems': 1.0, 'hard': 1.0}
Word element => {'from': 1.0, 'hear': 1.0, 'want': 1.0, 'exactly': 1.0, 'care': 1.0, 'sent': 1.0, 'after': 1.0, 'setting': 1.0, 'they': 2.0, 'between': 1.0, 'no': 1.0, 'down': 1.0, 'or': 1.0, 'way': 2.0, 'what': 1.0, 'either': 1.0, 'not': 2.0, 'stay': 1.0, 'calling': 1.0, 'now': 1.0, 'is': 2.0, 'malleable': 1.0, 'so': 3.0, 'be': 2.0, 'their': 1.0, 'should': 1.0, 'adjustment': 1.0, 'there': 2.0, 'of': 3.0, 'for': 1.0, 'said': 1.0, 'in': 3.0, 'were': 1.0, 'stroller': 4.0, 'back': 1.0, 'but': 3.0, 'new': 1.0, 'would': 1.0, 'bassinet': 1.0, 'that': 4.0, 'initially': 1.0, 'nap': 1.0, 'son': 1.0, 'very': 1.0, 'problems': 1.0, 'adjusting': 1.0, 'with': 2.0, 'has': 1.0, 'won': 1.0, 'coo': 1.0, 'it': 2.0, 'and': 2.0, 'shape': 2.0, 'i': 3.0, 'fact': 1.0, 'company': 2.0, 'bend': 1.0, 'place': 1.0, 'the': 14.0, 'happy': 1.0, 'real': 1.0, 'took': 2.0, 'loved': 1.0, 'got': 1.0, 'started': 1.0, 'using': 1.0, 'trip': 1.0, 'you': 1.0, 'times': 1.0, 'when': 2.0, 'think': 1.0, 'put': 1.0, 'on': 1.0, 'walks': 1.0, 'we': 3.0, 't': 2.0, 'a': 4.0, 'problem': 3.0, 'frame': 1.0, 'all': 2.0, 'seat': 2.0, 'our': 1.0, 'to': 3.0, 'anymore': 1.0, 'was': 3.0, 'bent': 1.0, 'update': 1.0, 'out': 2.0, 'us': 1.0, 'able': 1.0, 'up': 1.0, 'don': 1.0}
Word element => {'packed': 1.0, 'well': 1.0, 'present': 1.0, 'given': 1.0, 'prompt': 1.0, 'month': 1.0, 'it': 1.0, 'shipping': 1.0, 'pretty': 1.0, 'owned': 1.0, 'precious': 1.0, 'as': 1.0, 'very': 1.0, 'and': 2.0, 'sweet': 1.0, 'so': 1.0, 'looks': 1.0, 'with': 1.0, 'grandsons': 1.0, 'one': 1.0, 'picture': 1.0, 'in': 1.0}
Word element => {'much': 1.0, 'guys': 1.0, 'you': 2.0, 'about': 1.0, 'people': 1.0, 'will': 1.0, 'i': 1.0, 'and': 1.0, 'it': 1.0, 'this': 1.0, 'really': 1.0, 'is': 1.0, 'so': 1.0, 'tell': 1.0, 'frame': 1.0, 'the': 1.0, 'cutest': 1.0, 'my': 1.0, 'thank': 1.0, 'sister': 1.0, 'in': 1.0, 'law': 1.0, 'likes': 1.0}
Word element => {'costing': 1.0, 'ends': 1.0, 'cheap': 1.0, 'well': 1.0, 'steep': 1.0, 'cameleon': 1.0, 'seemed': 1.0, 'market': 1.0, 'out': 1.0, 'absolutely': 1.0, 'always': 1.0, 'has': 1.0, '3': 1.0, 'would': 1.0, 'where': 2.0, 'place': 1.0, 'find': 1.0, 'standard': 1.0, 'could': 1.0, 'we': 5.0, 'here': 1.0, 'years': 1.0, 'no': 2.0, 'streets': 1.0, 'on': 1.0, 'in': 4.0, 'is': 2.0, 'not': 3.0, 'icoo': 1.0, 'the': 10.0, 'of': 3.0, 'and': 7.0, 'later': 1.0, 'wobbly': 1.0, 'very': 2.0, 'were': 1.0, 'wheel': 1.0, 'put': 1.0, 'disintegrated': 1.0, 'do': 1.0, 'yourself': 1.0, 'it': 2.0, 'higher': 1.0, 'this': 2.0, 'targo': 1.0, 'with': 2.0, 'after': 1.0, 'crazy': 1.0, 'support': 1.0, '900': 1.0, 'months': 1.0, 'bought': 1.0, 'too': 1.0, 'one': 2.0, 'up': 1.0, 'pleased': 1.0, 'large': 2.0, 'only': 2.0, 'purchase': 1.0, 'my': 1.0, 'use': 1.0, 'respond': 1.0, 'a': 2.0, 'barrings': 2.0, 'terrain': 1.0, 'collapsed': 1.0, 'inside': 1.0, 'nyc': 2.0, 'requests': 1.0, 'us': 2.0, 'manufacturer': 1.0, 'for': 3.0, 'schneiders': 1.0, 'more': 1.0, 'husband': 1.0, 'an': 1.0, 'engineer': 1.0, 'looked': 1.0, 'nine': 1.0, 'apart': 1.0, 'if': 1.0, 'same': 1.0, 'they': 1.0, 'boys': 1.0, 'are': 2.0, 'making': 1.0, 'back': 1.0, 'to': 4.0, 'pulled': 1.0, 'straight': 1.0, 'now': 2.0, 'completely': 1.0, 'calibre': 1.0, 'when': 2.0, 'you': 1.0, 'yet': 1.0, 'he': 1.0, 'was': 1.0, 'favor': 1.0, 'luckily': 1.0, 'gecko': 2.0, 'had': 3.0, 'so': 1.0, 'friends': 1.0, 'looking': 1.0, 'buy': 2.0, 'our': 2.0, 'stroller': 1.0, 'anywhere': 1.0, 'touch': 1.0, 'please': 1.0, 'bugaboo': 1.0, 'price': 1.0, 'customer': 1.0, 'wheels': 3.0, 'quality': 1.0, 'have': 2.0, 'problems': 1.0, 'that': 1.0, '5': 1.0}
Word element => {'enjoy': 1.0, 'problem': 1.0, 'this': 1.0, 'remedy': 1.0, 'disappointed': 1.0, 'will': 2.0, 'hope': 1.0, 'by': 1.0, 'umbillical': 1.0, 'space': 1.0, 'an': 1.0, 'have': 1.0, 'pound': 1.0, '7': 1.0, 'big': 2.0, 'very': 1.0, 'waaaaay': 1.0, 'size': 1.0, 'newborn': 1.0, 'others': 1.0, 'these': 1.0, 'adequate': 1.0, 'wanted': 1.0, 'time': 1.0, 'so': 2.0, 'chemical': 2.0, 'the': 7.0, 'be': 2.0, 'would': 1.0, 'surgery': 1.0, 'land': 1.0, 'that': 2.0, 'girls': 2.0, 'easier': 1.0, 'disposable': 1.0, 'although': 1.0, 'c': 1.0, 'needed': 1.0, 'stands': 1.0, 'sucked': 1.0, 'decided': 1.0, 'two': 1.0, 'disposables': 1.0, 'i': 6.0, 'cloth': 2.0, 't': 1.0, 'a': 3.0, 'we': 1.0, 'going': 2.0, 'us': 1.0, 'with': 1.0, 'are': 2.0, 'too': 1.0, 'and': 5.0, 'can': 2.0, 'but': 1.0, 'alternative': 1.0, 'didn': 1.0, 'diapers': 4.0, 'enough': 1.0, 'leaked': 1.0, 'section': 1.0, 'fit': 1.0, 'love': 1.0, 'for': 5.0, 'liked': 1.0, 'eventually': 1.0, 'recovering': 1.0, 'they': 3.0, 'stump': 1.0, 'twins': 1.0, 'seventh': 2.0, 'on': 1.0, 'sagged': 1.0, 'of': 1.0, 'up': 1.0, 'horribly': 1.0, 'from': 1.0, 'while': 1.0, 'unfortunately': 1.0, 'was': 2.0, 'our': 2.0, 'all': 1.0, 'to': 2.0, 'admire': 1.0, 'what': 1.0, 'generation': 2.0, 'still': 1.0, 'much': 1.0, 'end': 1.0, 'in': 1.0, 'free': 2.0, 'fill': 1.0}
Word element => {'would': 1.0, 'was': 1.0, 'job': 1.0, 'accomplish': 1.0, 'to': 1.0, 'hoping': 1.0, 'def': 1.0, 'easy': 1.0, 'use': 1.0, 'and': 2.0, 'clean': 1.0, 'love': 1.0, 'that': 1.0, 'they': 3.0, 'the': 1.0, 'are': 1.0, 'reversible': 1.0}
Word element => {'covered': 1.0, 'think': 1.0, 'lot': 1.0, 'them': 1.0, 'clean': 1.0, 'most': 1.0, 'but': 1.0, 'pregnant': 1.0, 'to': 2.0, 'its': 1.0, 'son': 2.0, 'may': 1.0, 'my': 2.0, 'went': 1.0, 'own': 1.0, 'when': 2.0, 'now': 1.0, 'attached': 1.0, 'i': 7.0, 'already': 1.0, 'these': 1.0, 'some': 1.0, 'products': 1.0, 'thought': 1.0, 'have': 2.0, 'younger': 1.0, 'neither': 1.0, 'was': 3.0, 'chicco': 1.0, 'crazy': 1.0, 'needed': 2.0, 'everything': 1.0, 'so': 1.0, 'need': 2.0, 'keyfit': 1.0, 'product': 1.0, 'for': 1.0, 'bought': 1.0, 'one': 1.0, 'a': 3.0, 'could': 1.0, 'like': 1.0, 'britax': 1.0, 'cheaper': 1.0, 'up': 1.0, 'carseats': 1.0, 'this': 2.0, 'with': 1.0, 'they': 1.0, 'both': 1.0, 'came': 1.0, 'and': 4.0, 'similar': 1.0, 'never': 1.0, 'spit': 1.0, 'in': 1.0, 'possibly': 1.0, 'the': 1.0, 'car': 1.0, 'not': 1.0}
Word element => {'cute': 1.0, 'washable': 1.0, 'durable': 1.0, 'on': 1.0, 'put': 1.0, 'easy': 1.0, 'purchased': 1.0, 'glad': 1.0, 'am': 1.0, 'neck': 1.0, 'her': 1.0, 'were': 1.0, 'how': 1.0, 'for': 1.0, 'have': 1.0, 'not': 1.0, 'car': 3.0, '14': 1.0, 'came': 1.0, 'perfectly': 2.0, 'and': 6.0, 'jj': 1.0, 're': 1.0, 'strap': 4.0, 'are': 1.0, 'these': 2.0, 'pretty': 1.0, 'did': 1.0, 'they': 2.0, 'digging': 1.0, 'old': 1.0, 'i': 4.0, 'adorable': 1.0, 'with': 2.0, 'pink': 2.0, 'match': 1.0, 'it': 1.0, 'month': 1.0, 'covers': 4.0, 'we': 1.0, 's': 2.0, 't': 1.0, 'go': 1.0, 'cole': 1.0, 'soft': 2.0, 'into': 1.0, 'that': 2.0, 'my': 1.0, 'another': 1.0, 'to': 1.0, 'seat': 3.0, 'any': 1.0, 'didn': 1.0, 'brown': 1.0, 'so': 1.0, 'used': 1.0, 'the': 2.0, 'without': 1.0, 'several': 1.0, 'one': 1.0, 'months': 1.0, 'but': 1.0, 'like': 1.0}
Word element => {'first': 1.0, 'mouth': 1.0, 'in': 1.0, 'child': 2.0, 'should': 1.0, 'if': 1.0, 'note': 1.0, 'as': 1.0, 'reversible': 1.0, 'that': 1.0, 'stuff': 1.0, 'are': 1.0, 'the': 2.0, 'rubber': 1.0, 'puts': 1.0, 'your': 2.0, 'they': 2.0, 'work': 1.0, 'will': 1.0, 'off': 2.0, 'and': 1.0, 'probably': 1.0, 'label': 1.0, 'pull': 2.0, 'sticker': 1.0, 'so': 1.0, 'still': 1.0}
Word element => {'too': 1.0, 'good': 1.0, 'nice': 1.0, 'look': 1.0, 'daughter': 1.0, 'for': 1.0, 'these': 1.0, 'go': 1.0, 'on': 1.0, 'straps': 1.0, 'easy': 1.0, 'comfortable': 1.0, 'my': 1.0, 'make': 1.0, 'the': 1.0, 'shoulder': 1.0, 'and': 2.0, 'very': 2.0}
Word element => {'other': 1.0, 'one': 1.0, 'have': 1.0, 'wash': 1.0, 'get': 1.0, 'easy': 1.0, 'well': 1.0, 'safe': 1.0, 'that': 1.0, 'them': 1.0, 'secure': 1.0, 'protect': 1.0, 'from': 1.0, 'necks': 1.0, 'yo': 1.0, 'and': 2.0, 'good': 1.0, 'the': 4.0, 'these': 1.0, 'great': 1.0, 'my': 2.0, 'off': 1.0, 're': 1.0, 'are': 2.0, 'searching': 1.0, 'they': 1.0, 'flash': 1.0, 'quite': 1.0, 'velcro': 1.0, 'soft': 1.0, 'kids': 1.0, 'what': 1.0, 'be': 1.0, 'sacrifice': 1.0, 'exactly': 1.0, 'otherwise': 1.0, 'i': 1.0, 'was': 1.0, 'as': 2.0, 'to': 4.0, 'for': 1.0, 'bit': 1.0, 'stronger': 1.0, 'you': 1.0, 'twins': 1.0, '5': 1.0, 'rip': 1.0, 'there': 2.0, 'in': 1.0, 'sigh': 1.0, '2': 1.0, 'can': 1.0, 'but': 1.0, 'remove': 1.0, 'covers': 1.0, 'invention': 1.0, 'could': 1.0, 'a': 3.0, 's': 2.0, 'straps': 1.0, 'way': 1.0, 'no': 1.0}
Word element => {'recommend': 1.0, 'would': 1.0, 'are': 1.0, 'they': 1.0, 'neck': 1.0, 'help': 1.0, 'deff': 1.0, 'to': 1.0, 'on': 2.0, 'with': 1.0, 'haven': 1.0, 'trips': 1.0, 'long': 1.0, 'used': 1.0, 'got': 1.0, 'marks': 1.0, 'them': 1.0, 'love': 1.0, 'for': 1.0, 'yet': 1.0, 't': 1.0, 'these': 1.0, 'the': 2.0, 'inside': 1.0, 'but': 1.0, 'feeling': 1.0, 'of': 1.0, 'how': 1.0, 'soft': 1.0}
Word element => {'all': 1.0, 'at': 1.0, 'like': 1.0, 'does': 1.0, 'baby': 2.0, 'my': 2.0, 'the': 3.0, 'more': 2.0, 'would': 1.0, 'was': 1.0, 'impression': 1.0, 'i': 1.0, 'bulkier': 1.0, 'that': 1.0, 'comfortable': 1.0, 'strap': 1.0, 'under': 1.0, 'made': 1.0, 'covers': 1.0, 'but': 1.0, 'this': 1.0, 'with': 1.0, 'it': 2.0, 'not': 1.0, 'strips': 1.0, 'and': 1.0, 'make': 1.0, 'bothersome': 1.0}
Word element => {'washable': 1.0, 'fully': 1.0, 'shoulder': 1.0, 'didn': 1.0, 'seat': 1.0, 'adult': 1.0, 'a': 2.0, 'this': 1.0, 'arm': 1.0, 'buy': 1.0, 'baby': 1.0, 'on': 1.0, 'padding': 1.0, 'is': 1.0, 'for': 3.0, 'sling': 1.0, 'but': 1.0, 'an': 1.0, 's': 1.0, 'rather': 1.0, 'broken': 1.0, 'works': 1.0, 't': 1.0, 'great': 1.0, 'and': 1.0}
Word element => {'bigger': 1.0, 'were': 1.0, 'wished': 1.0, 'pretty': 1.0, 'they': 2.0, 'small': 1.0, 'the': 2.0, 'are': 2.0, 'nice': 1.0, 'like': 1.0, 'and': 1.0, 'only': 1.0, 'straps': 1.0, 'didn': 1.0, 'soft': 1.0, 't': 1.0, 'was': 1.0, 'thing': 1.0, 'i': 1.0}
Word element => {'one': 1.0, 'little': 1.0, 'for': 1.0, 'provide': 1.0, 'perfectly': 1.0, 'seat': 1.0, 'comfort': 1.0, 'the': 2.0, 'are': 1.0, 'exactly': 1.0, 'and': 1.0, 'as': 1.0, 'described': 1.0, 'match': 1.0, 'car': 1.0, 'they': 1.0, 'our': 1.0, 'straps': 1.0, 'gray': 1.0}
Word element => {'of': 1.0, 'keep': 1.0, 'seat': 1.0, 'by': 1.0, 'well': 1.0, 'rubbed': 1.0, 'getting': 1.0, 'straps': 1.0, 'easy': 1.0, 'the': 1.0, 'helps': 1.0, 'his': 1.0, 'car': 1.0, 'my': 1.0, 'happy': 1.0, 'as': 1.0, 'from': 1.0, 'son': 1.0, 'very': 1.0, 'with': 1.0, 'this': 1.0, 'product': 1.0, 'to': 1.0, 'care': 1.0, 'for': 1.0}
Word element => {'off': 1.0, 'pull': 1.0, 'yet': 1.0, 'has': 1.0, 'baby': 1.0, 'perfect': 1.0, 'worked': 1.0, 'product': 1.0, 'neck': 1.0, 'her': 1.0, 's': 1.0, 'too': 1.0, 'daughter': 1.0, 'on': 2.0, 'to': 2.0, 'straps': 1.0, 'didn': 1.0, 'around': 1.0, 'seat': 2.0, 'slip': 1.0, 'our': 2.0, 'were': 1.0, 'car': 2.0, 'the': 1.0, 'red': 1.0, 'these': 1.0, 't': 1.0, 'this': 1.0, 'with': 1.0, 'come': 1.0, 'them': 1.0, 'marks': 1.0, 'covers': 1.0, 'so': 2.0, 'kept': 1.0, 'getting': 1.0, 'and': 1.0, 'easy': 1.0, 'strap': 1.0, 'she': 1.0}
Word element => {'completely': 1.0, 'agree': 1.0, 'shown': 1.0, 'other': 1.0, 'fuzzy': 1.0, 'the': 4.0, 'evenflo': 1.0, 'for': 1.0, 'santee': 1.0, 'i': 3.0, 'two': 1.0, 'side': 1.0, 'covers': 1.0, 'looks': 1.0, 'these': 1.0, 'decent': 1.0, 'very': 2.0, 'quality': 1.0, 'am': 1.0, 'under': 1.0, '10': 1.0, 'nice': 1.0, 'price': 1.0, 'happy': 1.0, 'stylish': 1.0, 'convertible': 1.0, 'lx': 1.0, 'reviewed': 1.0, 'reversible': 1.0, 'that': 2.0, 'one': 2.0, 'color': 1.0, 'bought': 1.0, 'be': 1.0, 'with': 2.0, 'soft': 2.0, 'this': 1.0, 'triumph': 1.0, '65': 1.0, 'car': 1.0, 'as': 1.0, 'seat': 3.0, 'because': 1.0, 'of': 1.0, 'moms': 1.0, 'strap': 1.0, 'needed': 1.0, 'suggested': 1.0, 'would': 1.0}
Word element => {'want': 1.0, 'padding': 1.0, 'it': 1.0, 'way': 1.0, 'can': 1.0, 'this': 1.0, 'keyfit': 1.0, 'like': 1.0, 'worked': 1.0, 'reverse': 1.0, 'with': 1.0, 'perfect': 1.0, 'i': 1.0, 'the': 2.0, 'my': 1.0, 'carseat': 1.0, 'you': 2.0, 'chicco': 1.0, 'that': 1.0}
Word element => {'of': 1.0, 'from': 1.0, 'and': 1.0, 'face': 1.0, 's': 1.0, 'baby': 1.0, 'neck': 1.0, 'this': 1.0, 'protect': 1.0, 'is': 1.0, 'the': 3.0, 'straps': 1.0, 'just': 1.0, 'what': 1.0, 'looking': 1.0, 'to': 1.0, 'i': 1.0, 'carseat': 1.0, 'material': 1.0, 'rough': 1.0, 'was': 1.0, 'for': 1.0}
Word element => {'in': 1.0, 'car': 1.0, 'on': 1.0, 'twist': 1.0, 'shoulder': 1.0, 'good': 1.0, 'seat': 2.0, 'are': 1.0, 'time': 1.0, 'they': 1.0, 'the': 2.0, 'these': 1.0, 'straps': 1.0, 'you': 2.0, 'have': 1.0, 'to': 1.0, 'straighten': 1.0, 'a': 1.0, 'each': 1.0, 'but': 1.0, 'put': 1.0, 'out': 1.0, 'them': 1.0, 'child': 1.0}
Word element => {'penny': 1.0, 'worth': 1.0, 'little': 1.0, 'want': 1.0, 'still': 1.0, 'inserts': 1.0, 'wonderful': 1.0, 'car': 1.0, 'side': 1.0, 'is': 1.0, 'are': 2.0, 'you': 1.0, 'when': 3.0, 'in': 3.0, 'for': 3.0, 'month': 1.0, 'a': 3.0, 'well': 1.0, 'kept': 1.0, 'high': 1.0, 'softness': 1.0, 'but': 1.0, '2': 1.0, 'work': 2.0, 'an': 1.0, 'great': 1.0, 'comfortable': 1.0, 'big': 2.0, 'his': 2.0, 'carseat': 1.0, 'our': 1.0, 'as': 1.0, 'to': 2.0, 'the': 4.0, 'asleep': 1.0, 'old': 1.0, 'head': 3.0, 'every': 1.0, 'material': 1.0, 'too': 1.0, 'and': 3.0, 'extra': 1.0, 'of': 1.0, 'these': 2.0, 'support': 2.0, 'they': 1.0, 'just': 1.0, 'ordered': 1.0, 'thick': 1.0, 'enough': 1.0, 'keep': 1.0, 'flopping': 1.0, 'position': 1.0, 'he': 1.0, 'falls': 1.0, 'quality': 1.0, 'baby': 1.0}
Word element => {'wash': 1.0, 'easy': 1.0, 'removable': 1.0, 'well': 1.0, 'job': 1.0, 'this': 1.0, 'to': 1.0, 'product': 1.0, 'is': 1.0, 'a': 1.0, 'they': 3.0, 'do': 1.0, 'are': 3.0, 'the': 1.0, 'great': 1.0, 'since': 1.0, 'and': 1.0, 'soft': 1.0}
Word element => {'are': 1.0, 'like': 1.0, 'original': 1.0, 'however': 1.0, 's': 1.0, 'my': 1.0, 'carrier': 1.0, 'for': 3.0, 'a': 3.0, 'not': 1.0, 'carseat': 1.0, 'purpose': 1.0, 'was': 1.0, 'quality': 1.0, 'scratching': 1.0, 'but': 1.0, 'they': 2.0, 'baby': 2.0, 'off': 1.0, 'bought': 1.0, 'i': 2.0, 'guard': 1.0, 'as': 1.0, 'probably': 1.0, 'and': 2.0, 'boba': 1.0, 'teething': 1.0, 'their': 1.0, 'were': 1.0, 'always': 1.0, 'falling': 1.0, 'great': 1.0, 'these': 1.0, 'the': 2.0, 'skin': 1.0, 'velcro': 1.0}
Word element => {'glad': 1.0, 'definitely': 1.0, 'soft': 1.0, 'extrememly': 1.0, 'fluffy': 1.0, 'other': 1.0, 'the': 1.0, 'lovely': 1.0, 'is': 2.0, 'side': 2.0, 'reversible': 1.0, 'arrived': 1.0, 'were': 1.0, 'little': 2.0, 'with': 1.0, 'come': 1.0, 'am': 1.0, 'when': 3.0, 'bought': 1.0, 'one': 1.0, 'i': 6.0, 'does': 1.0, 'carseat': 1.0, 'fabric': 1.0, 'her': 2.0, 'both': 1.0, 'already': 1.0, 'these': 4.0, 'my': 1.0, 'for': 1.0, 'actually': 1.0, 'kept': 1.0, 'a': 2.0, 'that': 1.0, 'pinching': 1.0, 'have': 2.0, 'must': 1.0, 'has': 1.0, 'they': 4.0, 'seat': 1.0, 'anyone': 1.0, 'would': 3.0, 'and': 4.0, 'are': 3.0, 'strap': 1.0, 'marks': 1.0, 'out': 1.0, 'she': 1.0, 'solved': 1.0, 'once': 1.0, 'of': 1.0, 'not': 1.0, 'those': 1.0, 'tighten': 1.0, 'problem': 1.0, 'take': 1.0, 'pretty': 1.0, 'attractive': 1.0, 'really': 1.0, 'was': 1.0, 'surprised': 1.0, 'who': 1.0, 'at': 1.0, 'how': 1.0}
Word element => {'glad': 1.0, 'now': 1.0, 'comfortable': 1.0, 'amazon': 1.0, 'looks': 1.0, 'she': 1.0, 'happening': 1.0, 'from': 1.0, 'car': 1.0, 's': 1.0, 'my': 1.0, 'on': 2.0, 'found': 1.0, 'straps': 2.0, 'leaving': 1.0, 'purchased': 1.0, 'stopped': 1.0, 'rubbing': 1.0, 'more': 1.0, 'red': 1.0, 'the': 2.0, 'these': 2.0, 'we': 2.0, 'because': 1.0, 'seat': 1.0, 'that': 1.0, 'were': 3.0, 'them': 1.0, 'marks': 1.0, 'her': 1.0, 'much': 1.0, 'against': 1.0, 'neck': 1.0, 'daughter': 1.0, 'when': 1.0, 'tightened': 1.0, 'and': 2.0}
Word element => {'right': 1.0, 'exactly': 1.0, 'surprise': 1.0, 'of': 2.0, 'tightened': 1.0, 'are': 1.0, 'there': 1.0, 'slip': 1.0, 'easy': 1.0, 're': 1.0, 'they': 1.0, 'them': 1.0, 'want': 1.0, 'those': 1.0, 'stay': 2.0, 'purchases': 1.0, 'year': 1.0, 'shoulders': 1.0, 'last': 1.0, 'solid': 1.0, 'another': 1.0, 'thing': 1.0, 'about': 1.0, 'webbing': 2.0, 'on': 3.0, 'one': 2.0, 'had': 1.0, 'was': 1.0, 've': 1.0, 'got': 1.0, 'which': 1.0, 'these': 2.0, 'grown': 1.0, 'place': 1.0, 'the': 10.0, 'burns': 1.0, 'great': 1.0, 'into': 1.0, 'been': 1.0, 'that': 1.0, '34': 4.0, 'i': 2.0, 'as': 1.0, 'to': 2.0, 'our': 3.0, 'seat': 2.0, 'worried': 1.0, 'just': 1.0, 'oriented': 1.0, 'is': 1.0, 'car': 2.0, 'we': 1.0, 's': 3.0, 'long': 1.0, 'short': 1.0, 'naked': 1.0, 'love': 1.0, 'for': 3.0, 'cheap': 1.0, 'actually': 1.0, 'closure': 1.0, 'but': 1.0, 'shoulder': 1.0, 'way': 1.0, 'story': 2.0, 'straps': 3.0, 'and': 3.0, 'child': 2.0, 'covers': 2.0, 'neck': 1.0, 'have': 1.0, 'worked': 1.0, 'velcro': 1.0, 'kinds': 1.0, 'has': 1.0}
Word element => {'baby': 1.0, 'size': 1.0, 'and': 1.0, 'soft': 1.0, 's': 1.0, 'other': 1.0, 'or': 1.0, 'it': 1.0, 'great': 1.0, 'for': 2.0, 'the': 1.0, 'a': 1.0, 'seat': 1.0, 'of': 1.0, 'car': 1.0, 'perfect': 1.0, 'straps': 1.0, 'stroller': 1.0, 'cover': 1.0, 'swing': 1.0}
Word element => {'there': 1.0, 'out': 1.0, 'price': 1.0, 'same': 1.0, 'around': 1.0, 'but': 1.0, 'recommend': 1.0, 'against': 1.0, 'face': 1.0, 'lean': 1.0, 'shows': 1.0, 'which': 1.0, 'drools': 1.0, 'alseep': 1.0, 'teathing': 1.0, 'chews': 1.0, 'times': 1.0, 'several': 1.0, 'them': 3.0, 'took': 1.0, 'old': 1.0, 'clear': 1.0, 'or': 1.0, 'neck': 1.0, 'much': 1.0, 'highly': 1.0, 'irritating': 1.0, 'her': 4.0, 'because': 2.0, 'seconds': 1.0, 'not': 1.0, 'car': 1.0, 'on': 3.0, 'i': 1.0, '4': 1.0, 's': 1.0, 'we': 2.0, 'expensive': 1.0, 'for': 2.0, 'straps': 1.0, 'they': 6.0, 'the': 2.0, 'reversible': 1.0, 'awesome': 1.0, 'she': 2.0, 'month': 1.0, 'came': 1.0, 'be': 3.0, 'as': 1.0, 'seat': 1.0, 'our': 1.0, 'to': 6.0, 'happier': 1.0, 'look': 2.0, 'either': 1.0, 'had': 1.0, 'purchased': 1.0, 'others': 1.0, 'these': 3.0, 'already': 1.0, 'and': 3.0, 'with': 2.0, 'instuctions': 1.0, 'must': 1.0, 'falls': 1.0, 'have': 1.0, 'my': 1.0, 'daughter': 1.0, 'seems': 1.0, 'seem': 1.0, 'very': 1.0, 'are': 2.0, 'wash': 1.0, 'washable': 1.0, 'seemed': 1.0, 'comfortable': 2.0, 'install': 1.0, 'mention': 1.0}
Word element => {'through': 1.0, 'children': 1.0, 'want': 1.0, 'not': 1.0, 'feels': 1.0, 'burns': 1.0, 'what': 1.0, 'that': 1.0, 'now': 1.0, 'girls': 1.0, 'accident': 1.0, 'car': 2.0, 'in': 1.0, 'belt': 1.0, 'healing': 1.0, 'was': 1.0, 'recommend': 1.0, 'and': 3.0, 'soft': 2.0, 'cozy': 1.0, 'would': 2.0, 'go': 1.0, 'a': 2.0, 'nothing': 1.0, 'ever': 1.0, 'they': 1.0, 'is': 1.0, 'side': 1.0, 'straps': 2.0, 'it': 1.0, 'felt': 1.0, 'truly': 1.0, 'usable': 1.0, 'without': 1.0, 'the': 6.0, 'these': 2.0, 'added': 1.0, 'are': 1.0, 'softest': 1.0, 'sided': 1.0, 'wool': 1.0, 'have': 1.0, 'like': 1.0, 'know': 1.0, 'using': 1.0, 'from': 2.0, 'seat': 1.0, 'to': 2.0, 'as': 1.0, 'though': 2.0, 'my': 3.0, 'kicked': 1.0, 'fuss': 1.0, 'first': 1.0, 'just': 1.0, 'few': 1.0, 'times': 1.0, 'start': 1.0, 'right': 1.0, 'fluffy': 1.0, 'after': 1.0, 'so': 1.0, 'i': 2.0, 'two': 1.0, 'adding': 1.0, 'them': 1.0, 'even': 1.0, 'were': 1.0, 'bumpy': 1.0, 'daughter': 1.0, 'feeling': 1.0}
Word element => {'them': 1.0, 'she': 1.0, 'comfortable': 1.0, 'more': 1.0, 'make': 1.0, 'my': 1.0, 'daughter': 1.0, 'hates': 1.0, 'trails': 1.0, 'who': 1.0, 'would': 1.0, 'help': 1.0, 'car': 1.0, 'loves': 1.0, 'have': 1.0, 'these': 1.0, 'straps': 1.0, 'thought': 1.0, 'her': 1.0, 'rides': 1.0, '8230': 1.0}
Word element => {'really': 1.0, 'ok': 1.0, 'at': 1.0, 'readjust': 1.0, 'to': 1.0, 'have': 1.0, 'out': 1.0, 'slip': 1.0, 'they': 1.0, 'segment': 1.0, 'but': 2.0, 'of': 3.0, 'top': 1.0, 'whole': 1.0, 'cover': 1.0, 'would': 1.0, 'something': 1.0, 'he': 1.0, 'covers': 1.0, 'it': 3.0, 'dug': 1.0, 'looking': 1.0, 'definitely': 1.0, 'sometimes': 2.0, 'purpose': 1.0, 'only': 1.0, 'its': 1.0, 'carseat': 1.0, 'his': 2.0, 'wearing': 1.0, 'however': 1.0, 'when': 1.0, 'i': 5.0, 'bought': 1.0, 'toddler': 1.0, 'a': 3.0, 't': 1.0, 'place': 1.0, 'the': 3.0, 'neck': 1.0, 'straps': 2.0, 'this': 4.0, 'found': 1.0, 'on': 1.0, 'shirt': 1.0, 'my': 1.0, 'so': 2.0, 'bit': 1.0, 'smaller': 1.0, 'expected': 1.0, 'has': 1.0, 'made': 1.0, 'happen': 1.0, 'sure': 1.0, 'into': 1.0, 'that': 2.0, 'doesnt': 1.0, 'was': 2.0, 'anymore': 1.0, 'traffic': 1.0, 'more': 1.0, 'is': 3.0, 'lights': 1.0, 'product': 2.0, 'for': 3.0, 'fit': 1.0, 'nothing': 2.0, 'special': 2.0, 'also': 2.0, 'because': 1.0, 'than': 1.0}
Word element => {'prob': 1.0, 'color': 1.0, 'happy': 1.0, 'then': 1.0, 'lighter': 1.0, 'shades': 1.0, 'two': 1.0, 'at': 1.0, 'brown': 1.0, 'which': 1.0, 'for': 1.0, 'in': 1.0, 'looking': 1.0, 'if': 1.0, 'cute': 1.0, 'does': 1.0, 'picture': 2.0, 'return': 1.0, 'bright': 1.0, 'a': 1.0, 'are': 1.0, 'the': 5.0, 'you': 1.0, 'least': 1.0, 'show': 1.0, 'really': 1.0, 'is': 2.0, 'on': 1.0, 'not': 3.0, 'with': 1.0, 'this': 2.0, 'it': 1.0, 'will': 1.0, 'but': 1.0, 'pink': 3.0, 'very': 2.0, 'pale': 1.0}
Word element => {'was': 1.0, 'as': 1.0, 'and': 1.0, 'with': 1.0, 'shower': 1.0, 'my': 1.0, 'from': 1.0, 'stated': 1.0, 'i': 3.0, 'it': 4.0, 'returned': 1.0, 'love': 1.0, 'a': 1.0, 'just': 1.0, 'but': 2.0, 'came': 1.0, 'set': 1.0, 'baby': 1.0, 'because': 1.0, 'had': 1.0, 'everything': 1.0, 'already': 1.0, 'recieved': 1.0}
Word element => {'will': 1.0, 'know': 1.0, 'compliments': 1.0, 'many': 1.0, 'so': 1.0, 'gotten': 1.0, 'have': 1.0, 'everyone': 1.0, 'wanted': 1.0, 'she': 1.0, 'it': 5.0, 'tax': 2.0, 'pink': 1.0, 'with': 2.0, 'shipping': 2.0, 'too': 1.0, 'and': 5.0, 'else': 1.0, 'after': 1.0, 'finally': 2.0, 'one': 1.0, 'for': 2.0, 'love': 2.0, 'absolutely': 1.0, 'countless': 1.0, 'as': 1.0, 'our': 2.0, 'loved': 1.0, 'through': 1.0, 'top': 1.0, 'girl': 2.0, 'we': 3.0, 'bedding': 1.0, 'little': 2.0, 'sets': 1.0, 'much': 1.0, 'of': 2.0, 'on': 3.0, 'amazon': 1.0, 'way': 1.0, 'less': 1.0, 'free': 1.0, 'chocolate': 1.0, 'searching': 1.0, 'they': 1.0, 'shades': 1.0, 'no': 1.0, 'i': 2.0, 'when': 1.0, 'am': 1.0, 'arrives': 1.0, 'in': 1.0, 'this': 1.0, 'found': 2.0, 'perfect': 1.0, 'the': 2.0, 'twice': 1.0, 'plus': 1.0, 'colors': 1.0, 'are': 1.0}
Word element => {'valance': 1.0, 'a': 1.0, 'to': 1.0, 'have': 1.0, 'you': 1.0, 'great': 1.0, 'order': 1.0, 'looks': 1.0, 'really': 1.0, 'cute': 1.0, 'in': 1.0, 'colors': 1.0, 'will': 1.0, 'little': 1.0, 'girl': 1.0, 'second': 1.0, 's': 1.0, 'room': 1.0, 'are': 1.0, 'my': 1.0, 'the': 1.0}
Word element => {'to': 1.0, 'easy': 1.0, 'nice': 1.0, 'together': 1.0, 'was': 2.0, 'material': 1.0, 'room': 1.0, 'look': 1.0, 'bedding': 1.0, 'quickly': 1.0, 'cute': 1.0, 'and': 3.0, 'put': 1.0, 'arrived': 1.0, 'vibrant': 1.0, 'the': 4.0, 'made': 1.0, 'mobile': 1.0, 'so': 1.0}
Word element => {'i': 1.0, 'presented': 1.0, 'info': 1.0, 'wrong': 1.0, 'important': 1.0, 'most': 1.0, 'pictures': 1.0, 'shown': 1.0, 'description': 1.0, 'just': 1.0, 'not': 2.0, 'probably': 1.0, 'and': 2.0, 'what': 1.0, 'there': 1.0, 'why': 1.0, 'pink': 1.0, 'reason': 1.0, 'in': 3.0, 'for': 1.0, 'crib': 1.0, 'picture': 1.0, 'into': 1.0, 'or': 1.0, '35': 1.0, 'any': 1.0, 'bough': 1.0, 'stars': 1.0, 'that': 1.0, 'besides': 1.0, 'is': 5.0, 'the': 6.0, 'it': 1.0, 'cotton': 1.0, 'this': 1.0, 'only': 1.0, 'first': 1.0, '100': 1.0, 'shows': 1.0, 'reasons': 1.0, 'package': 1.0, 'inside': 2.0, 'no': 1.0, 'flower': 1.0, 'color': 1.0, 'other': 1.0}
Word element => {'cute': 1.0, 'super': 1.0, 'yet': 1.0, 'valence': 1.0, 'are': 1.0, 'with': 2.0, 'side': 1.0, 'really': 1.0, 'down': 1.0, 'one': 1.0, 'bed': 1.0, 'love': 1.0, 'for': 1.0, 'picture': 1.0, 'i': 3.0, 'the': 4.0, 't': 3.0, 'true': 1.0, 'that': 3.0, 'colors': 1.0, 'about': 1.0, 'baby': 1.0, 'which': 1.0, 'hasn': 1.0, 'isn': 1.0, 'big': 1.0, 'to': 1.0, 'as': 1.0, 'enough': 1.0, 'an': 1.0, 'set': 1.0, 'average': 1.0, 'but': 1.0, '2': 1.0, 'can': 1.0, 'window': 1.0, 'this': 1.0, 'wish': 1.0, 'is': 2.0, 'comes': 1.0, 'say': 1.0, 'came': 1.0, 'way': 1.0, 'durability': 1.0, 'valences': 1.0, 'only': 2.0, 'much': 1.0, 'it': 3.0, 'looks': 1.0, 'arrive': 1.0, 'my': 1.0}
Word element => {'in': 1.0, 'beautiful': 1.0, 'when': 1.0, 'i': 1.0, 'for': 1.0, 'one': 1.0, 'came': 1.0, 'that': 1.0, 'arriving': 1.0, 'so': 3.0, 'look': 1.0, 'was': 3.0, 'this': 1.0, 'it': 2.0, 'happy': 1.0, 'my': 1.0, 'made': 1.0, 'great': 1.0, 'the': 1.0, 'little': 1.0, 'is': 1.0, 'room': 1.0, 'soon': 1.0, 'bright': 1.0, 'and': 1.0}
Word element => {'sooner': 1.0, 'not': 1.0, 'complaints': 1.0, 'about': 1.0, 'no': 1.0, 'with': 1.0, 'everyday': 1.0, 'have': 1.0, 'months': 1.0, 'summer': 1.0, 'use': 1.0, 'wonderful': 2.0, 'which': 1.0, 'like': 1.0, 'almost': 1.0, 'incredibly': 1.0, 'fabric': 1.0, 'other': 1.0, 'shirt': 1.0, 'anything': 1.0, 'see': 1.0, 'really': 1.0, 'able': 1.0, 'be': 2.0, 'would': 2.0, 'for': 1.0, 'product': 2.0, 'was': 1.0, 'secure': 2.0, 'completely': 1.0, 'fall': 1.0, 'is': 3.0, 'had': 2.0, 'long': 1.0, 'before': 1.0, 'hard': 1.0, 'how': 1.0, 'moby': 1.0, 'in': 3.0, 'pieces': 1.0, 'my': 1.0, 'get': 1.0, 'friend': 1.0, 'glad': 1.0, 'did': 1.0, 'carrier': 2.0, 'soft': 1.0, 'this': 6.0, 'found': 1.0, 'thinking': 1.0, 'i': 6.0, 'finding': 1.0, 'guess': 1.0, 'so': 1.0, 'month': 1.0, 'it': 5.0, 'she': 1.0, 'lot': 1.0, 'don': 1.0, 'up': 1.0, 'takes': 1.0, 'skeptical': 1.0, 'of': 2.0, 'to': 3.0, 'all': 1.0, 'wrap': 3.0, 'the': 6.0, 'but': 3.0, 'work': 1.0, '2': 1.0, 'out': 3.0, 'am': 1.0, 'gives': 1.0, 'and': 5.0, 'similar': 1.0, 'feel': 1.0, 'support': 1.0, 'than': 1.0, 'find': 1.0, 'because': 1.0, 't': 2.0, 'a': 4.0, 's': 1.0, 'hot': 1.0, 'recommended': 1.0, 'easier': 1.0, 'baby': 3.0, 'that': 2.0, 'into': 1.0}
Word element => {'carrier': 1.0, 'always': 1.0, 'at': 1.0, 'say': 1.0, 'nothing': 1.0, 'absolutely': 1.0, 'lightweight': 1.0, 's': 1.0, 'out': 1.0, 'easy': 1.0, 'facing': 2.0, 'cradle': 1.0, 'far': 1.0, 'so': 1.0, 'months': 1.0, 'all': 1.0, 'bad': 1.0, 'have': 1.0, '8': 1.0, 'we': 1.0, 'to': 1.0, 'now': 1.0, 'is': 2.0, 'daughter': 2.0, 'happy': 1.0, 'my': 2.0, 'about': 1.0, 'baby': 1.0, 'comfortable': 1.0, 'for': 1.0, 'love': 1.0, 'quick': 1.0, 'this': 4.0, 'it': 2.0, 'positions': 1.0, 'i': 3.0, 'old': 1.0, 'and': 3.0, 'wrap': 1.0, 'since': 1.0, 'in': 3.0, 've': 2.0, 'used': 2.0, 'her': 1.0, 'product': 1.0, 'birth': 1.0, 'three': 1.0}
Word element => {'along': 1.0, 'just': 1.0, 'an': 1.0, 'that': 1.0, 'moby': 1.0, 'diaper': 1.0, 'inmy': 1.0, 'needed': 1.0, 'top': 1.0, 'can': 1.0, 'her': 1.0, 'over': 1.0, 'off': 1.0, 'cover': 1.0, 'nursing': 1.0, 'throw': 1.0, 'upright': 1.0, 'because': 1.0, 'stay': 1.0, 'then': 1.0, 'feeding': 1.0, 'position': 1.0, 'hug': 1.0, 'be': 1.0, 'quickly': 1.0, 'for': 1.0, 'love': 1.0, 'in': 2.0, 'newborn': 1.0, 'so': 2.0, 'shower': 1.0, 'this': 2.0, 'even': 2.0, 'wouldn': 1.0, 'two': 1.0, 'i': 8.0, 'tried': 1.0, 'much': 1.0, 'will': 2.0, 'slings': 1.0, 'fall': 1.0, 'is': 3.0, 'many': 1.0, 'and': 7.0, 'bag': 2.0, 'anywhere': 1.0, 'done': 1.0, 'bought': 1.0, 'colors': 1.0, 'baby': 1.0, 'nurse': 1.0, 'wraps': 1.0, 'during': 1.0, 'goes': 1.0, 'best': 1.0, 'extra': 1.0, 'unlike': 1.0, 'day': 1.0, 'have': 5.0, 'gifts': 1.0, 'go': 1.0, 't': 1.0, 'a': 2.0, 'sensitive': 1.0, 'asleep': 2.0, 'the': 4.0, 'without': 1.0, 'anything': 1.0, 'get': 1.0, 'easy': 1.0, 'it': 7.0, 'she': 2.0, 'to': 5.0, '3': 1.0, 'put': 1.0, 'on': 2.0, 'use': 1.0, 'fits': 1.0, 'my': 1.0, 'bring': 1.0, 'reflux': 1.0}
Word element => {'let': 1.0, 'away': 1.0, 'first': 1.0, 'with': 3.0, 'this': 1.0, 'inconspicuousness': 1.0, 'i': 4.0, 'took': 1.0, 'bath': 2.0, 'every': 1.0, 'got': 1.0, 'play': 1.0, 'and': 1.0, 'cover': 3.0, 'baby': 2.0, 'alone': 1.0, 'than': 1.0, 'because': 1.0, 'not': 2.0, 'keep': 1.0, 'did': 1.0, 'rather': 1.0, 'spout': 4.0, 'of': 2.0, 'my': 2.0, 'the': 6.0, 'that': 1.0, 'idea': 1.0, 'which': 1.0, 'would': 3.0, 'following': 1.0, 'leave': 1.0, 'is': 1.0, 'thing': 1.0, 'sharp': 1.0, 'from': 1.0, 'part': 1.0, 'what': 1.0, 'wanted': 1.0, 'for': 1.0, 'chose': 1.0, 'after': 1.0, 'messing': 1.0, 's': 1.0, 'a': 2.0, 'so': 1.0, 'bit': 1.0, 'it': 7.0, 'she': 2.0, 'moldy': 2.0, 'finally': 1.0, 'threw': 1.0}
Word element => {'for': 1.0, 'hole': 1.0, 'works': 1.0, 'i': 1.0, 'recommendations': 1.0, 'knob': 1.0, 'great': 1.0, 'the': 4.0, 'more': 1.0, 'all': 1.0, 'than': 1.0, 'plastic': 1.0, 'reading': 1.0, 'trying': 1.0, 's': 1.0, 'after': 2.0, 'and': 1.0, 'shower': 1.0, 'it': 4.0, 'picked': 1.0, 'durable': 1.0, 'cut': 2.0, 'cover': 1.0, 'ripped': 1.0, 'to': 1.0, 'good': 1.0, 'pre': 1.0}
Word element => {'let': 1.0, 'remove': 1.0, 'over': 1.0, 'bathtime': 1.0, 'when': 1.0, 'feels': 1.0, 'initial': 1.0, 'air': 1.0, 'few': 1.0, 'after': 1.0, 'but': 1.0, 'noticed': 1.0, 'and': 2.0, 'is': 1.0, 'faucet': 1.0, 'up': 1.0, 'a': 3.0, 'bored': 1.0, 'attention': 1.0, 'the': 1.0, 'my': 1.0, 'nonchalant': 1.0, 'for': 2.0, 'perfect': 1.0, 'was': 1.0, 'to': 2.0, 'not': 1.0, 'draw': 1.0, 'dry': 1.0, 'manner': 1.0, 'your': 1.0, 'childs': 1.0, 'hard': 1.0, 'softening': 1.0, 'it': 3.0, 'as': 1.0, 'son': 1.0, 'moment': 1.0}
Word element => {'you': 1.0, 'experienced': 1.0, 'an': 1.0, 'even': 1.0, 'tell': 1.0, 'play': 1.0, 'daughter': 1.0, 'entices': 1.0, 'darling': 1.0, 'just': 1.0, 'clean': 1.0, 'rubber': 1.0, 'i': 4.0, 'my': 1.0, 'colored': 1.0, 'on': 1.0, 'wasted': 1.0, 'more': 1.0, 'the': 3.0, 't': 2.0, 'parent': 1.0, 'with': 1.0, 'this': 2.0, 'wish': 1.0, 'can': 1.0, 'hadn': 1.0, 'animal': 2.0, 'money': 1.0, 'spout': 3.0, 'and': 1.0, 'gotten': 1.0, 'to': 2.0, 'should': 1.0, 'purchased': 1.0, 'instead': 1.0, 'easy': 1.0, 'have': 1.0, 'brightly': 1.0, 'designed': 1.0, 'isn': 1.0}
Word element => {'leaves': 1.0, 'toddler': 1.0, 'alone': 1.0, 'baby': 1.0, 'so': 1.0, 'unappealing': 1.0, 'and': 1.0, 'stealth': 1.0, 'a': 2.0, 'like': 1.0, 'itself': 1.0, 'ones': 2.0, 'the': 3.0, 'more': 1.0, 'is': 2.0, 'bath': 1.0, 'cover': 2.0, 'spout': 2.0, 'found': 1.0, 'i': 1.0, 'even': 1.0, 'it': 2.0, 'only': 1.0, 'this': 2.0, 'perfect': 2.0, 'in': 1.0, 'for': 1.0, 'my': 1.0, 'stores': 1.0, 'boring': 1.0, 'that': 1.0, 'were': 1.0, 'awful': 1.0, 'cartoon': 1.0, 'now': 1.0, 'character': 1.0, 'attracting': 1.0, 's': 1.0, 'attention': 1.0}
Word element => {'amazon': 1.0, 'this': 1.0, 'buy': 1.0, 'slip': 1.0, 'furthermore': 1.0, 'put': 1.0, 'bath': 1.0, 'customer': 1.0, 'tub': 1.0, 'spouts': 1.0, 'for': 4.0, 'please': 1.0, 'should': 1.0, 'on': 1.0, 'long': 2.0, 'off': 2.0, 'see': 1.0, 'a': 4.0, 's': 2.0, 'minor': 1.0, 'hole': 1.0, 'entire': 1.0, 'may': 1.0, 'last': 1.0, 'time': 1.0, 'not': 1.0, 'dry': 1.0, 'you': 3.0, 'causes': 1.0, 'keep': 2.0, 'image': 1.0, 'if': 5.0, 'and': 3.0, 'cover': 6.0, 'take': 2.0, 'reviews': 1.0, 'here': 1.0, 'be': 4.0, 'easy': 1.0, 'however': 1.0, 'agree': 1.0, 'prevent': 2.0, 'to': 5.0, 'little': 2.0, 'downward': 1.0, 'an': 2.0, 'all': 3.0, 'playing': 1.0, 'ones': 1.0, 'extends': 1.0, 'uninterested': 1.0, 'note': 1.0, 'saying': 1.0, 'exposed': 2.0, 'protected': 1.0, 'top': 2.0, 'in': 3.0, 'that': 5.0, 'with': 3.0, 'it': 6.0, 'remove': 1.0, 'so': 1.0, 'can': 2.0, '2': 1.0, 'com': 1.0, 'but': 2.0, 'positive': 1.0, 'each': 1.0, 'end': 2.0, 'only': 1.0, 'sharp': 1.0, 'the': 22.0, 'of': 4.0, 'spout': 5.0, 'shower': 3.0, 'owie': 1.0, 'like': 1.0, 'using': 1.0, 'at': 1.0, 'is': 4.0, 'more': 1.0, 'inconvenience': 1.0, 'i': 1.0, 'well': 2.0, 'could': 1.0, 'will': 4.0, 'knob': 3.0, 'also': 1.0, 'child': 4.0, 'll': 1.0, 'poke': 1.0, 'bathtub': 1.0, 'help': 2.0, 'goes': 1.0, 'down': 1.0, 'need': 1.0, 'suitable': 1.0, 'or': 2.0, 'there': 1.0, '1': 2.0, 'edge': 1.0, 'produce': 1.0, 'injuries': 1.0, 'diverter': 2.0, 'positioned': 1.0, 'toward': 1.0, 'front': 1.0, 'through': 1.0, 'hidden': 1.0, 'from': 2.0, 'your': 4.0, 'flap': 1.0, 'velcro': 1.0, 'removing': 1.0, 'middle': 1.0, 'have': 1.0}
Word element => {'experienced': 1.0, 'from': 1.0, 'review': 1.0, 'save': 1.0, 'hope': 1.0, 'recommend': 1.0, 'would': 1.0, 'ways': 1.0, 'it': 10.0, 'screws': 1.0, 'improved': 2.0, 'a': 2.0, 's': 6.0, 'we': 2.0, 'remove': 3.0, 'rubbed': 1.0, 'also': 1.0, 'pad': 1.0, 'placed': 1.0, 'cover': 3.0, '3': 1.0, 'was': 2.0, 'into': 1.0, 'sign': 2.0, 'month': 1.0, 'loose': 1.0, 'out': 1.0, 'usage': 1.0, 'hot': 1.0, 'face': 2.0, 'moms': 1.0, 'come': 1.0, 'dads': 1.0, 'bright': 1.0, 'head': 1.0, 'her': 1.0, 'wraps': 1.0, 'protection': 2.0, 'warning': 2.0, 'good': 1.0, 'side': 3.0, 'of': 1.0, 'the': 14.0, 'eventually': 1.0, 'are': 1.0, 'first': 1.0, 'highly': 1.0, 'this': 2.0, 'babies': 2.0, 'painful': 2.0, 'eyes': 1.0, 'other': 2.0, 'all': 2.0, 'pads': 1.0, 'outside': 1.0, 'inside': 1.0, 'down': 1.0, 'but': 4.0, 'work': 1.0, 'and': 6.0, 'too': 2.0, 'block': 1.0, 'hate': 1.0, 'way': 1.0, 'old': 1.0, 'i': 2.0, 'seat': 4.0, 'in': 2.0, 'got': 2.0, 'daughter': 2.0, 'gets': 1.0, 'car': 4.0, 'that': 2.0, 'because': 1.0, 'nightmares': 1.0, 'sunlight': 1.0, 'does': 2.0, 'red': 1.0, 'rash': 1.0, 'to': 5.0, 'scar': 1.0, 'for': 3.0, 'on': 3.0, 'long': 1.0, 'time': 1.0, 'can': 3.0, 'so': 3.0, 'sure': 1.0, 'did': 1.0, 'look': 1.0, 'needed': 1.0, 'top': 1.0, 'washing': 1.0, 'you': 1.0, 'when': 1.0, 'have': 1.0, 'sawed': 1.0, 'not': 3.0, 'my': 3.0, 'me': 1.0, 'much': 1.0, 'be': 2.0, 'like': 1.0, 'graco': 1.0, 'yes': 1.0, 'your': 1.0, 'prettiest': 1.0, 'there': 1.0, 'best': 1.0, 'she': 1.0, 'baby': 1.0, 'many': 1.0}
Word element => {'or': 1.0, 'daughter': 1.0, 'we': 1.0, 'one': 1.0, 'our': 1.0, 'were': 1.0, 'and': 1.0, 'issue': 1.0, 'was': 1.0, 'after': 1.0, 'so': 2.0, 'movement': 1.0, 'each': 1.0, 'bit': 2.0, 'of': 1.0, 'up': 1.0, 'shrinks': 1.0, 'product': 1.0, 'makes': 1.0, 'time': 2.0, 'they': 1.0, 'liner': 1.0, 'you': 1.0, 'pees': 1.0, 'end': 1.0, 'smaller': 1.0, 'she': 1.0, 'needed': 1.0, 'lot': 1.0, 'a': 5.0, 'an': 1.0, 'doesn': 1.0, 'bowel': 1.0, 'than': 1.0, 'absorb': 1.0, 'i': 1.0, 'with': 1.0, 'it': 1.0, 'use': 1.0, 'either': 1.0, 'the': 1.0, 't': 1.0, 'enough': 1.0, 'change': 1.0, 'leaking': 1.0}
Word element => {'wash': 1.0, 'them': 2.0, 'packs': 1.0, 'buying': 1.0, 'before': 2.0, 'worthless': 1.0, 'how': 1.0, 'were': 1.0, 'known': 1.0, 'd': 1.0, 'wish': 1.0, 'skip': 1.0, 'would': 1.0, 'thing': 1.0, 'one': 1.0, 'stain': 1.0, 'have': 3.0, 'dryer': 1.0, 'three': 1.0, 'super': 1.0, 've': 3.0, 'each': 1.0, 'two': 2.0, 'in': 2.0, 'tried': 1.0, 'alone': 1.0, 'my': 2.0, 'me': 1.0, 'just': 3.0, 'few': 2.0, 'than': 1.0, 'absorbent': 2.0, 'you': 2.0, 'when': 1.0, 'that': 2.0, 'easily': 1.0, 'pill': 1.0, 'thin': 1.0, 'like': 2.0, 'using': 4.0, 'to': 6.0, 'comparable': 1.0, 'only': 1.0, 'really': 3.0, 'if': 1.0, 'every': 1.0, 'or': 4.0, 'and': 6.0, 'listed': 1.0, 'more': 2.0, 'good': 1.0, 'which': 2.0, 'plan': 1.0, 'is': 1.0, 'as': 1.0, 'diaper': 1.0, 'washings': 1.0, 'these': 9.0, 'some': 1.0, 'cloth': 1.0, 'even': 1.0, 'are': 5.0, 'poo': 1.0, 'diapers': 1.0, 'used': 3.0, 'work': 1.0, 'so': 1.0, 'can': 2.0, 'will': 2.0, 'quality': 1.0, 'doublers': 1.0, 'effectively': 1.0, 'nor': 1.0, 'it': 3.0, 'be': 3.0, 'say': 1.0, 'liner': 2.0, 'they': 9.0, 'a': 4.0, 't': 1.0, 'leaked': 1.0, 'almost': 1.0, 'time': 3.0, 'very': 3.0, 'problem': 1.0, 'thick': 2.0, 'bunch': 1.0, 'any': 3.0, 'probably': 1.0, 'half': 1.0, 'i': 6.0, 'well': 1.0, 'of': 3.0, 'the': 4.0, 'other': 2.0, 'seem': 1.0, 'after': 1.0, 'on': 2.0, 'liners': 5.0, 'amount': 1.0, 'we': 1.0, 'take': 1.0, 'considerable': 1.0, 'whether': 1.0, 'not': 4.0, 'dry': 3.0, 'line': 1.0, 's': 2.0, 'sense': 1.0, 'less': 1.0, 'up': 3.0, 'takes': 1.0, 'makes': 1.0, 'no': 1.0, 'inserts': 2.0, 'clean': 1.0, 'although': 1.0, 'stains': 1.0, 'soft': 1.0, 'days': 1.0}
Word element => {'complaints': 1.0, 'no': 1.0, 'nipples': 1.0, 'flow': 1.0, 'work': 1.0, 'they': 1.0, 'our': 1.0, 'old': 1.0, 'really': 1.0, '7wk': 1.0, 'from': 1.0, 'and': 1.0, 'first': 1.0, 'only': 1.0, 'my': 1.0, 'these': 1.0, 'the': 2.0, 'well': 1.0, 'for': 1.0, 'we': 2.0, 'purchased': 1.0, 'already': 1.0, 'bottles': 1.0, 'needed': 1.0, 'child': 1.0, 'had': 1.0, 'slow': 1.0}
Word element => {'types': 1.0, 'tried': 1.0, 'the': 1.0, 'different': 1.0, 'her': 1.0, 'with': 1.0, 'hours': 1.0, 'wanted': 1.0, 'had': 1.0, 'for': 2.0, 'bottles': 1.0, 'recommend': 1.0, 'it': 1.0, 'babysitters': 1.0, 'she': 1.0, 'then': 2.0, 'my': 4.0, 'high': 1.0, 'been': 1.0, 'breastfed': 1.0, 'use': 1.0, 'hopes': 1.0, 'baby': 4.0, 'to': 1.0, 'any': 1.0, 'nipple': 2.0, 'bought': 1.0, 'dr': 1.0, 'when': 1.0, 'too': 1.0, 'these': 1.0, 'some': 1.0, 'chocks': 1.0, 'more': 1.0, 'is': 1.0, 'really': 1.0, 'leave': 1.0, 'able': 1.0, 'not': 2.0, '100': 1.0, 'we': 1.0, 'a': 1.0, 't': 1.0, 's': 2.0, 'could': 1.0, 'sucks': 1.0, 'hard': 1.0, 'this': 1.0, 'screams': 1.0, 'bottle': 2.0, 'so': 1.0, '4': 1.0, 'i': 3.0, 'but': 2.0, '2': 1.0, 'can': 1.0, 'has': 1.0, 'review': 1.0}
Word element => {'and': 1.0, 'breast': 1.0, 'between': 1.0, 'daughter': 1.0, 'my': 1.0, 'ebf': 1.0, 'not': 1.0, 'about': 1.0, 'to': 1.0, 'much': 1.0, 'milk': 1.0, 'say': 1.0, 'problems': 1.0, 'replacement': 1.0, 'from': 1.0, 'nipples': 1.0, 'takes': 1.0, 'expressed': 1.0, 'a': 1.0, 'bottle': 2.0, 'switching': 1.0, 'the': 1.0, 'these': 1.0, 'great': 1.0, 'with': 1.0, 'no': 1.0}
Word element => {'helps': 1.0, 'lolhope': 1.0, 'thank': 1.0, 'wouldnt': 1.0, 'smaller': 1.0, 'barely': 1.0, 'tl': 1.0, 'acura': 1.0, '06': 1.0, 'so': 1.0, 'because': 1.0, 'sun': 1.0, 'canopy': 1.0, 'flat': 2.0, 'heavy': 1.0, 'rotating': 1.0, 'almost': 1.0, 'but': 1.0, 'comfortably': 1.0, 'long': 2.0, 'on': 7.0, '24': 1.0, 'rotate': 1.0, 'favorite': 2.0, 'change': 1.0, '7': 1.0, 'being': 1.0, 'very': 1.0, 'daughter': 2.0, 'thing': 3.0, '2': 1.0, 'feet': 1.0, 'i': 7.0, 'involved': 1.0, 'out': 2.0, 'now': 2.0, 'slide': 1.0, 'loved': 1.0, 'sure': 1.0, 'market': 1.0, 'as': 1.0, 'up': 5.0, 'diaper': 1.0, 'bending': 1.0, 'still': 1.0, 'stay': 1.0, 'trunk': 1.0, 'under': 1.0, 'flap': 1.0, 'any': 2.0, 'that': 3.0, 'deep': 1.0, 'their': 1.0, 'wheels': 1.0, 'graco': 2.0, 'baby': 2.0, 'folds': 1.0, 'already': 1.0, '30': 2.0, 'to': 6.0, 'right': 2.0, 'true': 1.0, 'few': 1.0, 'with': 5.0, 'strollers': 2.0, 'napping': 1.0, 'am': 1.0, 'was': 3.0, 'loves': 1.0, 'grace': 1.0, 'reason': 1.0, 't': 2.0, '3': 2.0, 'roading': 1.0, 'put': 1.0, 'puts': 1.0, 'has': 1.0, 'features': 1.0, 'hitting': 1.0, 'only': 2.0, 'side': 1.0, 'saving': 1.0, 'tray': 4.0, 'her': 2.0, 'little': 1.0, 'the': 12.0, 'stroller': 3.0, '1': 1.0, 'if': 1.0, 'great': 3.0, 'are': 1.0, 'my': 5.0, 'for': 3.0, 'this': 12.0, '32': 1.0, 'where': 1.0, 'accommodate': 1.0, 'seat': 1.0, 'they': 2.0, 'like': 2.0, 'drinks': 1.0, 'bed': 1.0, 'when': 1.0, 'you': 6.0, 'is': 11.0, 'can': 6.0, 'no': 6.0, 'clips': 1.0, 'here': 2.0, 'a': 8.0, 'nap': 1.0, 'blanket': 2.0, 'got': 1.0, 'one': 7.0, '5': 2.0, 'feature': 1.0, 'or': 1.0, 'dead': 1.0, 'tummy': 1.0, 'flip': 2.0, 'parent': 2.0, 'think': 1.0, 'open': 1.0, 'hang': 1.0, 'there': 2.0, 'give': 1.0, 'said': 1.0, 'in': 3.0, 'non': 1.0, 'and': 16.0, 'just': 2.0, 'crap': 1.0, 'worries': 1.0, 'wonderful': 1.0, '4': 2.0, 'cup': 2.0, 'closed': 1.0, 'nice': 5.0, 'big': 2.0, 'bassinet': 3.0, 'suspension': 1.0, 'have': 3.0, 'could': 1.0, 'spilling': 1.0, 'literally': 1.0, 'sight': 1.0, 'jog': 1.0, 'some': 1.0, 'she': 1.0, 'make': 1.0, 'bounce': 1.0, 'absorbs': 1.0, 'nicely': 1.0, 's': 2.0, 'snug': 2.0, 'inches': 1.0, 'doesn': 1.0, 'sleeping': 1.0, 'over': 1.0, 'wake': 1.0, 'go': 1.0, 'off': 2.0, 'taller': 2.0, 'it': 12.0, 'fully': 1.0, 'be': 1.0, 'bar': 1.0, 'arms': 1.0, '6': 3.0, 'daddy': 1.0, 'mean': 1.0, 'tall': 1.0, 'back': 1.0, 'pain': 1.0, 'needs': 1.0, 'handle': 1.0, 'people': 1.0, 'kicking': 1.0, 'holders': 2.0, 'enclosed': 2.0, 'while': 1.0, 've': 1.0, 'reclines': 1.0, 'down': 1.0, 'had': 2.0, 'bumps': 1.0, 'other': 1.0, 'toned': 1.0, '22': 1.0, 'an': 2.0, 'fits': 2.0, 'love': 1.0, 'child': 1.0, 'keys': 1.0, 'its': 5.0, 'iphone': 1.0, 'of': 3.0, 'even': 1.0, 'actually': 1.0, 'binkies': 1.0, 'close': 1.0, 'etc': 1.0, 'work': 1.0, 'elements': 1.0, 'hand': 2.0, 'lol': 1.0, '8': 1.0, 'really': 2.0, 'ride': 1.0, '35': 1.0, 'car': 2.0, 'secure': 1.0, 'getting': 1.0, 'stars': 1.0, 'not': 1.0, 'fair': 1.0}
Word element => {'positions': 1.0, 'space': 1.0, 'reclining': 1.0, 'of': 1.0, 'good': 2.0, 'jogging': 1.0, 'hand': 1.0, 'lots': 1.0, 'price': 1.0, 'lightweight': 1.0, 'stroller': 2.0, 'all': 1.0, 'very': 1.0, 'folding': 1.0, 'this': 2.0, 'one': 1.0, 'for': 1.0, 'maneuverable': 1.0, 'nice': 1.0, 'note': 1.0, 'a': 2.0, 'that': 1.0, 'is': 1.0, 'not': 1.0}
Word element => {'you': 1.0, 'buy': 1.0, 'must': 1.0, 'birthday': 1.0, 's': 1.0, 'they': 1.0, 'these': 1.0, 'sheets': 1.0, 'adorable': 1.0, 'purchased': 1.0, 'to': 1.0, 'a': 1.0, 'match': 1.0, 'nephew': 1.0, 'heard': 1.0, 'i': 2.0, 'comforter': 1.0, 'are': 1.0, 'the': 1.0, 'my': 1.0, 'thank': 1.0, 'for': 1.0}
Word element => {'us': 1.0, 'for': 1.0, 'set': 1.0, 'talk': 1.0, 'have': 2.0, 'into': 1.0, 'loves': 1.0, 'a': 2.0, 'don': 1.0, 'they': 3.0, 't': 1.0, 'these': 1.0, 'wife': 1.0, 'sheets': 2.0, 'soft': 1.0, 'tread': 1.0, 'high': 1.0, 'my': 2.0, 'are': 2.0, 'count': 1.0, 'son': 1.0, 'very': 1.0, 'getting': 1.0, 'and': 1.0, 'but': 1.0, 'enough': 1.0, 'cool': 1.0, 'i': 1.0, 'now': 1.0, 'to': 1.0}
Word element => {'long': 1.0, 'is': 1.0, 'vader': 1.0, 'scratchy': 1.0, 'for': 1.0, 's': 1.0, 'seem': 1.0, 'sheets': 2.0, 't': 1.0, 'these': 2.0, 'myself': 1.0, 'loves': 1.0, 'so': 1.0, 'however': 1.0, 'not': 1.0, 'would': 1.0, 'guess': 1.0, 'buy': 1.0, 'i': 2.0, 'matter': 1.0, 'and': 2.0, 'doesn': 1.0, 'uncomfortable': 1.0, 'different': 1.0, 'happy': 1.0, 'my': 1.0, 'as': 2.0, 'opinion': 1.0, 'son': 1.0, 'they': 1.0, 'has': 1.0, 'it': 1.0, 'he': 2.0, 'a': 1.0, 'cool': 1.0, 'darth': 1.0}
Word element => {'out': 1.0, 'clone': 1.0, 'another': 1.0, 'find': 1.0, 'there': 1.0, 'set': 2.0, 'was': 1.0, 'bought': 1.0, 'case': 1.0, 'pillow': 1.0, 'could': 1.0, 'head': 1.0, 's': 1.0, 'reason': 1.0, 'vader': 2.0, 'darth': 2.0, 'is': 1.0, 'my': 1.0, 'i': 2.0, 'old': 1.0, 'care': 1.0, 'for': 1.0, 'year': 1.0, 'wars': 1.0, 'nephew': 1.0, 'has': 1.0, 'that': 1.0, 'were': 1.0, 'scratchy': 1.0, 'this': 1.0, 'only': 1.0, 'he': 1.0, 'it': 1.0, 'fabric': 1.0, 'on': 1.0, '4': 1.0, 'low': 1.0, 'and': 1.0, 'quality': 1.0, 'but': 1.0, 'didn': 1.0, 'the': 3.0, 'these': 1.0, 't': 1.0, 'not': 2.0, 'because': 1.0}
Word element => {'incline': 1.0, 'up': 1.0, 'nice': 1.0, 'it': 2.0, 'bridge': 2.0, 'at': 1.0, 'not': 1.0, 'covered': 1.0, 'often': 1.0, 'directions': 1.0, 'to': 2.0, 'look': 1.0, 'is': 1.0, 'the': 3.0, 'function': 1.0, 'well': 1.0, 'does': 1.0, 'both': 1.0, 'but': 1.0, 'train': 1.0, 'in': 2.0, 'stuck': 1.0, 'when': 1.0, 'gets': 1.0, 'going': 1.0}
Word element => {'computer': 1.0, 'they': 1.0, 'appeared': 1.0, 'less': 1.0, 'wider': 1.0, 'bit': 1.0, 'just': 1.0, 'were': 1.0, 'bin': 1.0, 'room': 1.0, 'daughter': 1.0, 'short': 1.0, 'brighter': 1.0, 'colors': 1.0, 'sides': 2.0, 'screen': 1.0, 'would': 1.0, 'wide': 3.0, 'taller': 1.0, 'off': 1.0, 'books': 1.0, '10': 2.0, 'i': 2.0, 'hoped': 1.0, 'wish': 1.0, 'this': 2.0, 'it': 6.0, 'only': 1.0, 'with': 1.0, 'relatively': 1.0, 'lot': 1.0, 'had': 1.0, 'look': 1.0, 'to': 1.0, '34': 2.0, 'of': 2.0, 'square': 1.0, 'tall': 1.0, 'and': 3.0, 'too': 1.0, 'are': 4.0, 'the': 4.0, 'is': 3.0, 'trash': 1.0, 'more': 1.0, 'little': 2.0, 'inches': 2.0, 'gives': 1.0, 'on': 1.0, 'impression': 1.0, 's': 1.0, 'a': 4.0, 'well': 1.0, 'because': 3.0, 'does': 1.0, 'than': 3.0, 'sized': 1.0, 'but': 1.0, 'can': 1.0, 'also': 1.0, 'childrens': 1.0, 'fit': 1.0, 'inside': 1.0, 'coordinates': 1.0, 'pretty': 1.0, 'bathroom': 1.0, 'my': 2.0}
Word element => {'with': 1.0, 'washer': 1.0, 'up': 1.0, 'does': 1.0, 'make': 1.0, 'pull': 1.0, 'have': 1.0, 'time': 1.0, 'all': 1.0, 'don': 1.0, 'blanket': 4.0, 'are': 2.0, 'ok': 2.0, 'has': 1.0, 'them': 1.0, 'now': 3.0, 'thin': 1.0, 'older': 1.0, 'was': 2.0, 'doesn': 1.0, 'or': 1.0, 'theme': 2.0, 'surfing': 1.0, 'disappointed': 2.0, 'in': 3.0, 'however': 1.0, 'hangs': 1.0, 'move': 1.0, 'everything': 1.0, 'else': 1.0, 'nice': 1.0, 'little': 5.0, 'very': 1.0, 'messy': 1.0, 'guy': 2.0, 'find': 1.0, 'washed': 1.0, 'wash': 1.0, 'skirt': 1.0, 'your': 1.0, 'on': 1.0, 'times': 1.0, 'when': 2.0, 'night': 1.0, 'you': 1.0, 'nursery': 1.0, 'usually': 1.0, 'only': 1.0, 'liked': 1.0, 'for': 2.0, 'like': 1.0, 'cheap': 1.0, 'we': 2.0, 'bedding': 1.0, 't': 3.0, 'arrived': 1.0, 'ties': 1.0, 'bed': 1.0, 'available': 1.0, 'set': 1.0, 'it': 8.0, 'this': 1.0, 'mattress': 2.0, 'of': 3.0, 'doing': 1.0, 'the': 13.0, 'looks': 1.0, 'my': 2.0, 'bought': 1.0, 'one': 1.0, 'i': 7.0, 'because': 2.0, 'that': 4.0, 'were': 1.0, 'around': 1.0, 'tear': 1.0, 'his': 1.0, 'couple': 1.0, 'readjust': 1.0, 'and': 4.0, 'couldn': 1.0, 'anything': 1.0, 'constantly': 1.0, 'so': 3.0, 'about': 1.0, 'surf': 1.0, 'super': 1.0, 'add': 1.0, 'to': 3.0, 'quality': 1.0, 'tallest': 1.0, 'as': 1.0, 'top': 1.0, 'over': 1.0, '19': 1.0, 'months': 1.0, 'get': 1.0, 'though': 1.0, 'cold': 1.0, 'bumpers': 1.0, 'but': 1.0, 'a': 7.0, 'small': 1.0, 'there': 1.0, 'properly': 1.0, 'crib': 1.0, 'ton': 1.0, 'height': 1.0, 'down': 1.0, 'gets': 1.0, 'is': 3.0, 'at': 2.0, 'look': 2.0, 'sits': 1.0, 'exception': 1.0, 'better': 1.0, 'ground': 1.0, 'which': 1.0, 'really': 2.0}
Word element => {'pleased': 1.0, 'are': 1.0, 'on': 1.0, 'but': 1.0, 'hasn': 1.0, 'baby': 1.0, 'since': 1.0, 'yet': 1.0, 'very': 2.0, 'test': 1.0, 'haven': 1.0, 'crib': 1.0, 'have': 1.0, 'to': 3.0, 'had': 1.0, 'was': 1.0, 'we': 4.0, 'fits': 1.0, 'sheet': 1.0, 'arrived': 1.0, 'out': 1.0, 'bedding': 1.0, 'set': 2.0, 'our': 1.0, 'that': 2.0, 't': 2.0, 'the': 5.0, 'went': 1.0, 'pieces': 1.0, 'perfect': 1.0, 'this': 2.0, 'with': 2.0, 'it': 2.0, 'only': 1.0, 'like': 1.0, 'found': 1.0, 'mattress': 1.0, 'matched': 1.0, 'snug': 1.0, 'tie': 1.0, 'i': 1.0, 'purchase': 1.0, 'got': 1.0, 'bumper': 1.0, 'stencil': 1.0, 'several': 1.0, 'ties': 1.0}
Word element => {'happy': 1.0, 'am': 1.0, 'known': 1.0, 'my': 1.0, 'all': 2.0, 'other': 1.0, 'winters': 2.0, 'but': 2.0, 'money': 1.0, 'you': 4.0, 'and': 4.0, 'light': 1.0, 'just': 2.0, 'up': 2.0, 'wash': 1.0, 'which': 1.0, 'through': 1.0, 'then': 1.0, 'top': 1.0, 'with': 4.0, 'it': 4.0, 'soft': 1.0, 'remove': 2.0, 'no': 1.0, 'about': 1.0, 'thin': 3.0, 'older': 1.0, 'blanket': 7.0, 'are': 4.0, 'was': 2.0, 'backing': 1.0, 'quality': 2.0, 'very': 1.0, 'more': 1.0, 'is': 4.0, 'sleeps': 1.0, 'filling': 1.0, 'picture': 2.0, 'colors': 3.0, 'a': 6.0, 'bedding': 4.0, 's': 1.0, 'had': 1.0, 'little': 1.0, 'two': 1.0, 'nice': 3.0, 'prettier': 1.0, 'has': 2.0, 'i': 6.0, 'well': 1.0, 'hot': 1.0, 'they': 1.0, 'double': 1.0, 'in': 8.0, 'the': 18.0, 'person': 1.0, 'see': 1.0, 'off': 1.0, 'cover': 2.0, 'think': 2.0, 'your': 1.0, 'to': 4.0, 'not': 2.0, 'sons': 1.0, 'cost': 1.0, 'something': 1.0, 'summer': 1.0, 'would': 1.0, 'same': 1.0, 'expecting': 1.0, 'if': 1.0, 'his': 1.0, 'actually': 1.0, 'fabric': 1.0, 'for': 1.0, 'parts': 1.0, 'hold': 1.0, 'duvet': 1.0, 'cotton': 1.0, 'that': 2.0, 'as': 2.0, 'heavy': 2.0, 'worked': 1.0, 'really': 1.0, 'cold': 1.0, 'thick': 1.0, 'toddler': 1.0, 'inside': 1.0, 'this': 3.0, 'set': 1.0, 'can': 3.0, 'comparison': 1.0, 'so': 1.0, 'will': 1.0, 'need': 1.0, 'else': 1.0, 'infant': 1.0, 'do': 1.0, 'worth': 1.0, 'have': 1.0, 'subdued': 1.0, 'paid': 1.0, '99': 1.0}
Word element => {'see': 1.0, 'glad': 1.0, 'very': 1.0, 'which': 1.0, 'piece': 1.0, '3': 1.0, 'but': 1.0, 'washing': 1.0, 'on': 1.0, 'comment': 1.0, 'dangerous': 1.0, 'bumpers': 1.0, 'use': 1.0, 'far': 1.0, 'toddler': 1.0, 'decorate': 1.0, 'offer': 1.0, 'twin': 1.0, 'into': 1.0, 'be': 1.0, 'put': 1.0, 'can': 1.0, 'so': 2.0, 'time': 1.0, 're': 1.0, 'girl': 2.0, 'some': 1.0, 'spent': 1.0, 'was': 2.0, 'are': 2.0, 'reviews': 1.0, 'we': 4.0, 'a': 4.0, 'bedding': 2.0, 's': 1.0, 'ago': 2.0, 't': 3.0, 'to': 3.0, 'as': 3.0, 'striping': 1.0, 'giggles': 1.0, '4': 1.0, '1': 1.0, 'since': 1.0, 'lab': 4.0, 'cloths': 1.0, 'son': 2.0, 'test': 1.0, 'more': 1.0, 'around': 1.0, '2': 3.0, 'blankets': 1.0, 'bed': 1.0, 'for': 5.0, 'sad': 1.0, 'years': 1.0, 'even': 1.0, 'picture': 1.0, 'didn': 2.0, 'online': 1.0, 'pieces': 1.0, 'black': 1.0, 'in': 4.0, 'set': 4.0, 'november': 1.0, 'trend': 4.0, 'registered': 1.0, 'my': 1.0, 'loved': 2.0, 'wall': 1.0, 'stands': 1.0, 'our': 2.0, 'how': 2.0, 'except': 1.0, 'moved': 1.0, 'and': 6.0, 'him': 1.0, 'it': 3.0, 'tested': 1.0, 'looked': 2.0, 'the': 11.0, 'of': 2.0, 'person': 1.0, 'away': 1.0, 'also': 1.0, 'will': 1.0, 'have': 4.0, 'all': 2.0, 'hamper': 1.0, 'burp': 1.0, 'frames': 2.0, 'they': 1.0, 'i': 11.0, 'well': 1.0, 'after': 1.0, 'baby': 3.0, 'many': 1.0, 'washings': 1.0, 'versailles': 2.0, 'one': 1.0, 'expecting': 1.0, 'if': 1.0, 'want': 1.0, 'ensemble': 1.0, 'conditions': 1.0, 'this': 1.0, 'did': 1.0, 'overjoyed': 1.0, 'decorated': 1.0, 'comes': 1.0, 'room': 1.0, 'that': 2.0, 'because': 2.0, 'animals': 1.0, 'bumper': 2.0, 'or': 1.0, 'without': 1.0, 'days': 1.0, 'anything': 1.0, 'weeks': 1.0, 'would': 1.0}
Word element => {'bag': 1.0, 'messenger': 1.0, 'burp': 1.0, 'ruffle': 1.0, 'bins': 1.0, 'hamper': 1.0, 'also': 1.0, 'would': 1.0, 'new': 1.0, 'like': 1.0, 'up': 1.0, 'held': 1.0, 'has': 1.0, 'valances': 1.0, 'old': 1.0, 'mobile': 1.0, 'months': 1.0, 'note': 1.0, 'bumpers': 3.0, 'to': 1.0, 'was': 1.0, 'now': 1.0, 'being': 1.0, 'but': 2.0, 'the': 7.0, 'ones': 1.0, 'nicely': 1.0, 'about': 1.0, 'giggles': 1.0, 'i': 4.0, 'this': 2.0, 'extremely': 1.0, 'he': 1.0, 'shown': 1.0, 'set': 1.0, 'big': 1.0, 'very': 1.0, 'stripe': 1.0, 'storage': 1.0, 'son': 1.0, 'cloths': 1.0, 'some': 1.0, 'diaper': 1.0, 'changed': 1.0, 'is': 1.0, 'with': 2.0, 'complain': 1.0, 'fit': 1.0, 'happy': 1.0, 'purchase': 1.0, 'my': 1.0, 'bedding': 2.0, 'might': 1.0, 'born': 1.0, 'they': 1.0, 'reviews': 1.0, 'velour': 1.0, 'blanket': 1.0, 'are': 2.0, 'been': 1.0, 'that': 1.0, 'in': 2.0, 'have': 2.0, 'flat': 1.0, 'picture': 1.0, 'rounded': 1.0, 'again': 1.0, 'bear': 1.0, 'clock': 1.0, '11': 1.0, 'you': 1.0, 'get': 1.0, 'green': 1.0, 'and': 3.0, 'standard': 1.0, 'purchased': 2.0, 'before': 1.0}
Word element => {'wasn': 1.0, 's': 1.0, 'baby': 1.0, 'my': 1.0, 'against': 1.0, 'enough': 1.0, 'soft': 1.0, 'impressed': 1.0, 'get': 1.0, 'order': 1.0, 'times': 1.0, 'few': 1.0, 'put': 1.0, 'squares': 1.0, 'would': 2.0, 'be': 1.0, 'material': 1.0, 'not': 1.0, 'to': 3.0, 'was': 2.0, 'hoping': 1.0, 'skin': 1.0, 'it': 3.0, 'i': 3.0, 'what': 1.0, 'that': 1.0, 'seemed': 1.0, 't': 1.0, 'the': 2.0, 'made': 1.0, 'really': 1.0, 'felt': 1.0, 'cheaply': 1.0, 'some': 1.0, 'of': 1.0, 'fabric': 1.0, 'have': 1.0, 'in': 1.0, 'wash': 1.0, 'a': 1.0}
Word element => {'about': 1.0, 'complaints': 1.0, 'i': 2.0, 'no': 1.0, 'really': 1.0, 'like': 1.0, 'crib': 1.0, 'set': 1.0, 'this': 1.0, 'have': 1.0, 'yet': 1.0, 'the': 1.0, 'are': 1.0, 'colors': 1.0, 'it': 1.0, 'great': 1.0}
Word element => {'satisfied': 1.0, 'in': 1.0, 'fast': 1.0, 'shipping': 1.0, 'amazon': 1.0, 'other': 1.0, 'some': 1.0, 'says': 1.0, 'really': 1.0, 'crib': 1.0, 'so': 1.0, 'against': 1.0, 'themselves': 1.0, 'hitting': 1.0, 'yet': 1.0, 'priced': 1.0, 'thick': 1.0, 'made': 1.0, 'very': 1.0, 'super': 2.0, 'is': 2.0, 'are': 2.0, 'blanket': 1.0, 'happy': 1.0, 'received': 1.0, 'extremely': 2.0, 'babies': 1.0, 'been': 1.0, 'item': 1.0, '2': 1.0, 'the': 10.0, 'quality': 1.0, 'looked': 1.0, 'compared': 1.0, 'from': 1.0, 'pleasing': 1.0, 'stylish': 1.0, 'nicely': 1.0, 'above': 1.0, 'first': 2.0, 'has': 3.0, '1': 1.0, 'always': 1.0, 'packaging': 1.0, 'reasonably': 1.0, 'of': 1.0, 'with': 4.0, 'buying': 1.0, 'look': 2.0, 'wanted': 1.0, 'for': 2.0, 'selected': 1.0, 'bumpers': 1.0, 'be': 2.0, 'animals': 1.0, 'things': 1.0, 'i': 1.0, 'two': 1.0, 'before': 1.0, 'protect': 1.0, 'both': 1.0, 'chibi': 1.0, 'over': 1.0, 'child': 1.0, 'sized': 1.0, 'expectations': 1.0, 'purchase': 2.0, 'my': 2.0, 'girlfriend': 2.0, 'legendary': 1.0, 'cute': 1.0, 'after': 1.0, 'viewing': 1.0, 'heads': 1.0, 'and': 6.0, 'surpassed': 1.0, 'reviewing': 1.0, 's': 1.0, 'we': 3.0, 'bedding': 4.0, 'a': 1.0, 'at': 1.0, 'lot': 1.0, 'it': 4.0, 'she': 1.0, 'average': 1.0, 'set': 3.0, 'sets': 2.0, 'all': 1.0, 'to': 6.0, 'any': 1.0, 'our': 2.0, 'make': 1.0, 'soft': 2.0, 'eyes': 2.0, 'perfect': 1.0}
Word element => {'to': 1.0, 'fall': 1.0, 'is': 2.0, 'i': 2.0, 'old': 1.0, 'was': 1.0, 'turned': 1.0, 'came': 1.0, 'really': 2.0, 'amazing': 1.0, 'bought': 1.0, 'my': 1.0, 'happy': 1.0, 'and': 5.0, 'this': 1.0, 'looks': 2.0, 'it': 8.0, 'with': 1.0, 'nephew': 1.0, 'crib': 2.0, 'yesterday': 1.0, 'in': 1.0, '13': 1.0, 'his': 1.0, 'on': 2.0, 'put': 1.0, 'week': 1.0, 'night': 2.0, 'quality': 1.0, 'apart': 1.0, 'everything': 1.0, 'love': 1.0, 'cheap': 1.0, 'for': 1.0, 'fit': 1.0, 'well': 1.0, 'last': 1.0, 'good': 1.0, 'or': 1.0, 'the': 2.0, 'how': 1.0, 'very': 2.0, 'out': 1.0, 'of': 1.0, 'am': 1.0, 'you': 1.0, 'don': 1.0, 'feel': 1.0, 'like': 1.0, 't': 1.0, 'going': 1.0}
Word element => {'recommend': 1.0, 'would': 1.0, 'is': 1.0, 'crib': 1.0, 's': 1.0, 'my': 1.0, 'anyone': 1.0, 'in': 1.0, 'pad': 1.0, 'bumper': 1.0, 'fits': 1.0, 'sheet': 1.0, 'daughter': 1.0, 'when': 1.0, 'i': 2.0, 'comforter': 1.0, 'product': 1.0, 'did': 1.0, 'how': 1.0, 'bedskirt': 1.0, 'notice': 1.0, 'to': 1.0, 'odor': 1.0, 'was': 2.0, 'soft': 1.0, 'pleased': 2.0, 'adorable': 1.0, 'very': 1.0, 'and': 3.0, 'opened': 1.0, 'first': 1.0, 'this': 2.0, 'with': 2.0, 'it': 1.0, 'an': 1.0, 'but': 1.0, 'set': 1.0, 'washed': 1.0, 'everything': 1.0, 'nicely': 1.0, 'the': 3.0}
Word element => {'a': 1.0, 's': 1.0, 'faded': 1.0, 'water': 1.0, 'in': 1.0, 'times': 1.0, 'quite': 1.0, 'blanket': 1.0, 'used': 1.0, 'have': 2.0, 'too': 1.0, 'girl': 1.0, 'soft': 1.0, 'colors': 2.0, 'but': 1.0, 'bedding': 1.0, 'washed': 1.0, 'up': 1.0, 'set': 1.0, 'pale': 1.0, 'strong': 1.0, 'not': 2.0, 'overall': 1.0, 'cold': 1.0, 'are': 1.0, 'great': 1.0, 'the': 4.0, 'my': 1.0, 'often': 1.0, 'love': 1.0, 'this': 1.0, 'it': 2.0, 'and': 3.0, 'buy': 1.0, 'i': 1.0, 'paisley': 1.0, 'months': 1.0, 'many': 1.0, 'is': 3.0, 'adorable': 1.0, 'nine': 1.0, 'still': 1.0, 'holding': 1.0}
Word element => {'purpose': 1.0, 'its': 1.0, 'serves': 1.0, 'sturdiness': 1.0, 'inch': 1.0, '18': 1.0, 'metal': 1.0, 'old': 1.0, 'i': 2.0, 'collections': 1.0, 'initial': 1.0, 'while': 1.0, 'thick': 1.0, 'it': 4.0, 'doll': 1.0, 'for': 3.0, '10': 1.0, 'is': 4.0, 'expect': 1.0, 'second': 1.0, 'the': 5.0, 'daughter': 1.0, 'year': 1.0, 'as': 2.0, 'in': 1.0, 'baby': 1.0, 'my': 1.0, 'another': 1.0, 'enough': 1.0, 'section': 1.0, 'top': 1.0, 'collection': 1.0, 'might': 1.0, 's': 1.0, 'impression': 1.0, 'am': 1.0, 'you': 1.0, 'pattern': 1.0, 'and': 3.0, 'large': 1.0, 'bountiful': 1.0, 'room': 1.0, 'collected': 1.0, 'of': 3.0, 'yarn': 1.0, 'this': 1.0, '30': 1.0, 'using': 1.0, 'like': 1.0, 'her': 3.0, 'clean': 1.0, 'fabric': 1.0, 'although': 1.0, 'not': 1.0}
Word element => {'off': 1.0, 's': 1.0, 'granddaughter': 1.0, 'the': 1.0, 'small': 1.0, 'my': 1.0, 'toys': 1.0, 'keep': 1.0, 'this': 1.0, 'is': 2.0, 'floor': 1.0, 'a': 1.0, 'that': 1.0, 'very': 1.0, 'solid': 1.0, 'to': 1.0, 'being': 1.0, 'fabric': 1.0, 'bin': 1.0, 'storage': 1.0, 'used': 1.0}
Word element => {'notebooks': 1.0, 'reading': 1.0, 'hold': 1.0, 'my': 2.0, 'bedside': 1.0, 'in': 2.0, 'one': 3.0, 'used': 1.0, 'have': 1.0, 'frame': 1.0, 'metal': 1.0, 'materials': 1.0, 'over': 1.0, 'bin': 2.0, 'described': 1.0, 'fabric': 3.0, 'item': 1.0, 'this': 1.0, 'sure': 1.0, 'matches': 1.0, 'not': 2.0, 'style': 1.0, 'etc': 1.0, 'two': 2.0, 'i': 2.0, 'purchased': 1.0, 'sturdy': 1.0, 'of': 4.0, 'they': 2.0, 'some': 1.0, 'decent': 1.0, 'these': 1.0, 'the': 6.0, 'with': 2.0, 'specs': 1.0, 'it': 5.0, 'hard': 1.0, 'bins': 2.0, 'along': 1.0, 'your': 1.0, 'make': 1.0, 'are': 2.0, 'larger': 1.0, 'covered': 1.0, 'size': 3.0, 'look': 2.0, 'right': 1.0, 'is': 5.0, 'product': 1.0, 'for': 2.0, 'as': 2.0, 'to': 2.0, 'our': 2.0, 'decor': 1.0, 'and': 2.0, 'a': 6.0, 'at': 1.0, 'wicker': 1.0, 'lot': 1.0, 'projects': 1.0, 'entryway': 1.0, 'better': 1.0, 'same': 1.0, 'if': 1.0, 'than': 1.0, 'needs': 1.0, 'baskets': 1.0, 'office': 1.0, 'you': 2.0, 'expecting': 1.0, 'basket': 2.0, 'sides': 1.0}
Word element => {'very': 1.0, 'are': 1.0, 'unless': 1.0, 'should': 1.0, 'out': 1.0, 'fall': 2.0, 'tied': 1.0, 'will': 1.0, 'and': 1.0, 'sides': 1.0, 'over': 1.0, 'on': 1.0, 'ribbon': 1.0, 'each': 1.0, 'room': 1.0, 'is': 2.0, 'bag': 3.0, 'can': 1.0, 'wonderful': 1.0, 'reversable': 1.0, 'tight': 1.0, 'one': 1.0, 's': 1.0, 'material': 1.0, 'thing': 1.0, 'sturdy': 1.0, 'of': 2.0, 'lots': 1.0, 'things': 1.0, 'two': 1.0, 'exception': 1.0, 'the': 4.0, 'with': 1.0, 'this': 1.0, 'it': 1.0, 'only': 1.0, 'that': 1.0, 'ribbons': 1.0, 'used': 1.0, 'to': 1.0, 'close': 1.0, 'a': 1.0}
Word element => {'compliments': 1.0, 'many': 1.0, 'front': 1.0, 'name': 1.0, 'had': 1.0, 'reversible': 1.0, 'included': 1.0, 'changing': 1.0, 'got': 1.0, 'pockets': 1.0, 'shower': 1.0, 'of': 1.0, 'plenty': 1.0, 'the': 5.0, 'are': 1.0, 'used': 1.0, 'embroidered': 1.0, 'haven': 1.0, 'actually': 1.0, 'for': 2.0, 'yet': 2.0, 'be': 3.0, 'expected': 1.0, 'received': 1.0, 'than': 1.0, 'i': 6.0, 'this': 1.0, 'registered': 1.0, 'is': 4.0, 'it': 6.0, 'looks': 1.0, 'easy': 1.0, 'bag': 3.0, 'gift': 1.0, 'to': 3.0, 'as': 1.0, 'very': 1.0, 'and': 5.0, 'wiped': 1.0, 'my': 2.0, 'baby': 3.0, 'not': 1.0, 'born': 1.0, 'but': 1.0, 'sturdy': 1.0, 'at': 1.0, 'bigger': 1.0, 'since': 1.0, 'keep': 1.0, 'fabric': 1.0, 'clean': 1.0, 'seems': 1.0, 'waterproof': 1.0, 'friends': 1.0, 'so': 2.0, 'on': 2.0, 'stuff': 1.0, 'your': 1.0, 'think': 1.0, 'pad': 1.0, 'off': 1.0, 's': 2.0, 't': 1.0, 'a': 2.0, 'could': 1.0, 'when': 1.0, 'easily': 1.0, 'there': 1.0}
Word element => {'or': 1.0, 'the': 2.0, 'perfect': 1.0, 'good': 1.0, 'adorable': 1.0, 'beach': 1.0, 'thistowel': 1.0, 'quality': 1.0, 'cute': 1.0, 'bath': 1.0, 'on': 1.0, 'our': 1.0, 'grandson': 1.0, 'so': 1.0, 'looks': 1.0, 'for': 1.0, 'in': 1.0}
Word element => {'not': 1.0, 'just': 1.0, 'else': 1.0, 'everything': 1.0, 'towel': 1.0, 'cheep': 1.0, 'a': 1.0, 'like': 1.0, 'and': 3.0, 'very': 2.0, 'that': 1.0, 'besides': 1.0, 'something': 1.0, 've': 1.0, 'at': 2.0, 'nice': 2.0, 'to': 1.0, 'think': 1.0, 'i': 2.0, 'one': 1.0, 'it': 4.0, 'this': 2.0, 't': 1.0, 's': 1.0, 'soft': 3.0, 'all': 2.0, 'but': 1.0, 'doesn': 1.0, 'bath': 1.0, 'similar': 1.0, 'got': 1.0, 'feel': 1.0, 'looks': 2.0, 'felt': 1.0}
Word element => {'lion': 1.0, 'roars': 1.0, 'well': 1.0, 'tail': 1.0, 'paying': 1.0, 'i': 2.0, 'old': 1.0, 'and': 2.0, 'hate': 1.0, 'adorable': 1.0, 'son': 1.0, 'to': 1.0, 'with': 1.0, 'christmas': 1.0, 'this': 1.0, 'it': 3.0, 'is': 1.0, 'for': 2.0, 'my': 2.0, 'often': 1.0, 'one': 1.0, 'that': 1.0, 'loves': 3.0, 'gave': 1.0, 'bath': 1.0, 'after': 1.0, 'cute': 1.0, 'do': 1.0, 'only': 1.0, 'much': 1.0, 'the': 2.0, 'playing': 1.0, 'stinking': 1.0, 'towel': 2.0, 'but': 1.0, 'oh': 1.0, 'a': 1.0, 's': 1.0, 'down': 1.0, 'while': 1.0, 'wearing': 1.0, 'part': 1.0, 'year': 1.0, 'his': 1.0, 'he': 2.0, '6': 1.0, 'so': 4.0, 'boy': 1.0}
Word element => {'washed': 1.0, 'when': 1.0, 'loose': 1.0, 'because': 1.0, 'off': 1.0, 'loves': 1.0, 'son': 1.0, 'is': 1.0, 'running': 1.0, 'my': 1.0, 'the': 1.0, 'cute': 1.0, 'did': 1.0, 'super': 1.0, 'towel': 1.0, 'few': 1.0, 'tail': 1.0, 'a': 2.0, 'around': 1.0, 'took': 1.0, 'i': 1.0, 'strings': 1.0, 'one': 1.0, 'star': 1.0, 'get': 1.0, 'this': 1.0, 'with': 1.0, 'it': 1.0}
Word element => {'cute': 1.0, 'still': 1.0, 'afterthought': 1.0, 'but': 1.0, 'an': 1.0, 'of': 1.0, 'though': 1.0, 'important': 1.0, 'so': 1.0, 'puppet': 1.0, 'while': 1.0, 'last': 1.0, 'to': 1.0, 'size': 1.0, 'a': 2.0, 's': 3.0, 'also': 1.0, 'perfect': 1.0, 'ears': 1.0, 'too': 1.0, 'daughter': 1.0, 'for': 1.0, 'our': 1.0, 'we': 1.0, 'isn': 1.0, 'makes': 1.0, 'time': 1.0, 'on': 1.0, 'bath': 3.0, 'got': 1.0, 'is': 1.0, 'looks': 1.0, 'fun': 1.0, 'towel': 1.0, 't': 1.0, 'the': 3.0, 'monkey': 1.0, 'with': 1.0, 'this': 1.0, 'it': 5.0, 'and': 1.0, 'kind': 1.0, 'best': 1.0, 'adorable': 1.0, 'her': 1.0, 'little': 1.0}
Word element => {'disappointed': 1.0, 'than': 1.0, 'shorter': 1.0, 'was': 1.0, 'plus': 1.0, 'returning': 1.0, 'be': 1.0, 'designs': 1.0, 'lion': 1.0, 'it': 1.0, 'terry': 1.0, 'but': 1.0, 'will': 1.0, 'ordered': 1.0, 'worth': 1.0, 'dinosaur': 1.0, 'and': 2.0, 'as': 1.0, 'very': 2.0, 'the': 5.0, 'i': 1.0, 'cloth': 1.0, 'cheap': 1.0, 'love': 1.0, 'realized': 1.0, 'is': 1.0, 'feels': 1.0, 'thin': 1.0, 'just': 1.0, 'not': 1.0, 'price': 1.0}
Word element => {'much': 1.0, 'in': 1.0, 'well': 1.0, 'better': 1.0, 'would': 1.0, 'every': 1.0, 'beach': 1.0, 'of': 1.0, 'size': 1.0, 'what': 1.0, 'thought': 1.0, 'him': 1.0, 'snugly': 1.0, 'help': 1.0, 'was': 3.0, 'as': 1.0, 'to': 3.0, 'towels': 2.0, 'warm': 1.0, 'old': 1.0, 'i': 8.0, 'use': 4.0, 'wash': 2.0, 'child': 1.0, 'towel': 5.0, 'for': 1.0, 'bit': 1.0, 'wanting': 1.0, 'my': 2.0, 'another': 1.0, 'baby': 2.0, 'month': 1.0, 'it': 5.0, 'this': 3.0, 'item': 1.0, 'also': 1.0, '6': 1.0, 's': 1.0, 'a': 5.0, 'dry': 1.0, 'thicker': 1.0, 'have': 3.0, 'usual': 1.0, 'which': 1.0, 'like': 3.0, 'hooded': 1.0, 'and': 7.0, 'market': 1.0, 'quite': 1.0, 'bigger': 3.0, 'about': 1.0, 'today': 1.0, 'after': 2.0, 'his': 2.0, 'that': 1.0, 'does': 1.0, 'than': 2.0, 'believe': 1.0, 'the': 4.0, 'make': 1.0, 'bath': 3.0, 'on': 1.0, 'is': 2.0, 'day': 1.0, 'definitely': 1.0, 'cuter': 1.0, 'those': 1.0, 'other': 2.0, 'little': 1.0, 'still': 1.0, 'an': 1.0, 'additional': 1.0}
Word element => {'absorbancy': 1.0, 's': 1.0, 'is': 1.0, 'wise': 1.0, 'size': 1.0, 'few': 1.0, 'a': 1.0, 'least': 1.0, 'for': 1.0, 'using': 1.0, 'continue': 1.0, 'should': 1.0, 'months': 2.0, '6': 1.0, 'we': 2.0, 'quality': 1.0, 'weeks': 1.0, 'able': 1.0, 'have': 1.0, 'born': 1.0, '5': 1.0, 'super': 1.0, 'at': 2.0, 'and': 4.0, 'my': 1.0, 'great': 1.0, 'more': 1.0, '2': 1.0, 'the': 1.0, 'i': 1.0, 'before': 1.0, 'used': 1.0, 'this': 1.0, 'it': 2.0, 'adorable': 1.0, 'son': 1.0, 'from': 1.0, 'be': 1.0, 'bought': 1.0, 'birth': 1.0, 'present': 1.0, 'early': 1.0, 'was': 1.0, 'to': 2.0}
Word element => {'match': 1.0, 'they': 1.0, 'any': 1.0, 'ages': 1.0, 'where': 1.0, 'too': 1.0, 'recommend': 1.0, 'would': 1.0, 'looks': 1.0, 'it': 1.0, 'love': 1.0, 'in': 4.0, 'fell': 1.0, 'be': 1.0, 'to': 1.0, 'did': 1.0, 'meant': 1.0, 'room': 2.0, 're': 1.0, 'are': 1.0, 'a': 2.0, 'black': 1.0, 'great': 1.0, 'the': 1.0, 'these': 3.0, 'think': 1.0, 'i': 2.0, 'just': 1.0, 'all': 2.0, 'we': 1.0, 'and': 2.0, 'windows': 1.0, 'up': 1.0, 'child': 1.0, 'white': 1.0, 'but': 1.0, 'put': 1.0}
Word element => {'room': 1.0, 's': 1.0, 'could': 1.0, 'park': 1.0, 'sooo': 1.0, 'straight': 1.0, 'so': 1.0, 'i': 4.0, 'paisley': 1.0, 'look': 1.0, 'perfectly': 1.0, 'it': 3.0, 'this': 1.0, 'looked': 1.0, 'the': 3.0, 'of': 2.0, 'set': 2.0, 'up': 1.0, 'scrunch': 1.0, 'valence': 1.0, 'are': 1.0, 'that': 1.0, 'our': 1.0, 'bought': 1.0, 'entire': 1.0, 'pretty': 1.0, 'them': 2.0, 'white': 1.0, 'course': 1.0, 'instead': 1.0, 'either': 1.0, 'just': 2.0, 'honestly': 1.0, '2': 1.0, 'but': 1.0, 'put': 1.0, 'cute': 1.0, 'way': 1.0, 'prefer': 1.0, 'having': 1.0, 'scrunched': 1.0, 'plain': 1.0, 'and': 1.0, 'across': 1.0, 'curtain': 1.0, 'matches': 1.0, 'under': 1.0, 'for': 1.0, 'daughter': 1.0}
Word element => {'definitely': 1.0, 'would': 2.0, 'room': 1.0, 'to': 2.0, 'be': 1.0, 'valance': 1.0, 'everything': 1.0, 'this': 1.0, 'it': 3.0, 'anyone': 1.0, 'seems': 1.0, 'just': 2.0, 'buy': 1.0, 'i': 2.0, 'beautiful': 1.0, 'made': 1.0, 'the': 1.0, 'again': 1.0, 'are': 1.0, 'very': 1.0, 'and': 2.0, 'about': 1.0, 'colors': 1.0, 'love': 1.0, 'for': 1.0, 'well': 1.0, 'a': 1.0, 'little': 1.0, 'recommend': 1.0, 'girls': 1.0}
Word element => {'awesome': 1.0, 'linens': 1.0, 'outside': 1.0, 'offically': 1.0, 'take': 1.0, 'line': 1.0, 'expand': 1.0, 'labs': 1.0, 'wish': 1.0, 'only': 1.0, 'example': 1.0, 'bins': 1.0, 'matching': 1.0, 'few': 1.0, 'pocket': 1.0, 'insert': 1.0, 'tie': 1.0, 'clock': 1.0, 'them': 1.0, 'lengthen': 1.0, 'panel': 1.0, 'valance': 1.0, 'each': 1.0, 'would': 2.0, 'ribbon': 1.0, 'wide': 1.0, 'nicely': 1.0, 'ties': 1.0, 'too': 1.0, 'pattern': 1.0, 'quatrefoil': 1.0, 'they': 1.0, 'damask': 2.0, 'over': 1.0, 'rod': 1.0, 'up': 3.0, 'valances': 1.0, 'trend': 2.0, 'bought': 2.0, 'painted': 1.0, 'tchotchkies': 1.0, 'biggie': 1.0, 'exactly': 1.0, 'walls': 2.0, 'these': 1.0, 'some': 1.0, 'red': 2.0, 'with': 1.0, 'big': 1.0, 'percale': 1.0, 'top': 1.0, 'gridwork': 1.0, 'white': 2.0, 'finishing': 1.0, 'window': 2.0, 'update': 2.0, 'under': 1.0, 'loose': 1.0, 'twill': 1.0, 'and': 9.0, 'kitchen': 3.0, 'be': 1.0, 'cabinets': 1.0, 'product': 1.0, 'products': 1.0, 'price': 1.0, 'black': 5.0, 'trimming': 1.0, 'low': 1.0, 'added': 1.0, 'a': 7.0, 'nursery': 1.0, 'lab': 1.0, 'no': 1.0, 'breakfast': 2.0, 'part': 1.0, 'bay': 1.0, 'deep': 2.0, 'that': 3.0, 'm': 1.0, 'in': 4.0, 'sink': 1.0, 'backsplashes': 1.0, 'me': 1.0, 'my': 2.0, 'underneath': 1.0, 'lightweight': 1.0, 'adding': 1.0, 'i': 7.0, 'threads': 1.0, 'warm': 1.0, 'had': 1.0, 'countertops': 1.0, 'was': 1.0, 'minutes': 1.0, 'against': 1.0, 'to': 6.0, 'as': 2.0, 'it': 2.0, 'table': 1.0, 'right': 1.0, 'needed': 1.0, 'accent': 1.0, 'bottom': 2.0, 'far': 1.0, 'weight': 2.0, 'area': 2.0, 'goes': 1.0, 'section': 2.0, 'spending': 1.0, 'more': 1.0, 'versailles': 2.0, 'lighter': 1.0, 'strip': 1.0, 'satin': 3.0, 'is': 4.0, 'at': 1.0, 'makes': 1.0, 'did': 1.0, 'cleaning': 1.0, 'find': 1.0, 'than': 1.0, 'medieval': 1.0, 'but': 1.0, 'for': 4.0, 'fabric': 3.0, '10': 1.0, 'thread': 1.0, 'ends': 1.0, 'collect': 1.0, 'are': 2.0, 'renaissance': 1.0, 'the': 23.0, 'of': 5.0, 'prints': 1.0}
Word element => {'torn': 1.0, 'not': 1.0, 'be': 1.0, 'product': 2.0, 'in': 1.0, 'to': 2.0, 'had': 2.0, 'could': 1.0, 'tear': 1.0, 'it': 5.0, 'repair': 2.0, 'i': 2.0, 'when': 1.0, 'a': 2.0, 'that': 1.0, 'you': 1.0, 'the': 1.0, 'due': 1.0, 'myself': 2.0, 'incident': 1.0, 'ordered': 1.0, 'send': 1.0, 'but': 1.0, 'back': 1.0, 'order': 1.0, 'should': 1.0}
Word element => {'item': 1.0, 'great': 1.0, 'because': 1.0, 'saw': 1.0, 'gave': 1.0, 'that': 1.0, 'easy': 1.0, 'very': 1.0, 'seller': 3.0, 'set': 2.0, 'entire': 1.0, 'but': 1.0, 'process': 1.0, 'in': 2.0, 'although': 1.0, 'comforter': 1.0, 'especially': 1.0, 'to': 1.0, 'white': 1.0, 'made': 2.0, 'bright': 1.0, 'there': 1.0, 'once': 1.0, 'of': 2.0, 'returning': 2.0, 'were': 2.0, 'would': 1.0, 'something': 1.0, 'stars': 1.0, 'cheap': 1.0, 'love': 1.0, 'for': 1.0, '4': 1.0, 'i': 10.0, 'paisley': 1.0, 'part': 1.0, 'from': 2.0, 'just': 1.0, 'look': 1.0, 'lot': 2.0, 'at': 1.0, 'quickly': 1.0, 'did': 2.0, 'pretty': 2.0, 'this': 2.0, 'it': 4.0, 'with': 2.0, 'understood': 1.0, 'match': 1.0, 'surprised': 1.0, 'was': 5.0, 'unfortunately': 1.0, 'the': 12.0, 'how': 1.0, 'received': 1.0, 'pleasantly': 1.0, 'colors': 1.0, 'order': 1.0, 'loved': 1.0, 'really': 1.0, 'sections': 2.0, 'leafy': 2.0, 'person': 1.0, 'looking': 2.0, 'like': 1.0, 'pinks': 1.0, 'a': 2.0, 'could': 1.0, 'pattern': 1.0, 'and': 4.0, 'greens': 1.0, 'stripes': 1.0, 'again': 1.0, 'am': 1.0, 'you': 1.0, 'me': 1.0, 'not': 3.0, 'shipper': 1.0, 'those': 1.0}
Word element => {'and': 1.0, 'this': 1.0, 'on': 1.0, 'wrong': 1.0, 'perfect': 1.0, 'proven': 1.0, 'but': 1.0, 'frail': 1.0, 'they': 2.0, 'looking': 1.0, 'amazing': 1.0, 'are': 1.0, 'my': 1.0, 'in': 1.0, 'worried': 1.0, 'kitchen': 1.0, 'beautiful': 1.0, 'i': 2.0, 'would': 1.0, 'was': 2.0}
Word element => {'in': 1.0, 'disappointed': 1.0, 'little': 1.0, 'a': 1.0, 'but': 1.0, 'them': 1.0, 'use': 1.0, 'one': 2.0, 'does': 1.0, 'i': 1.0, 'need': 2.0, 'only': 1.0, 'very': 1.0, 'up': 1.0, 'valances': 1.0, 'unfortunately': 1.0, 'are': 1.0, 'if': 2.0, 'pretty': 1.0, 'more': 1.0, 'the': 2.0, 'these': 1.0, 'you': 2.0, 'than': 1.0, 'not': 1.0, 'thing': 1.0, 'able': 1.0, 'pattern': 2.0, 'line': 1.0, 'was': 2.0, 'to': 1.0}
Word element => {'for': 1.0, 'felt': 1.0, 'scary': 1.0, 'ones': 1.0, 'little': 2.0, 'your': 1.0, 'and': 5.0, 'later': 1.0, 'about': 1.0, 'full': 1.0, 'allergies': 1.0, 'again': 1.0, 'when': 1.0, 'presumed': 1.0, 'bath': 3.0, 'test': 1.0, 'milk': 1.0, 'just': 2.0, 'worried': 1.0, 'by': 1.0, 'previously': 1.0, 'out': 3.0, 'toe': 1.0, 'incident': 2.0, 'it': 3.0, 'she': 5.0, 'discomfort': 1.0, 'however': 1.0, '2': 1.0, 'past': 1.0, 'but': 1.0, 'without': 1.0, 'my': 2.0, 'may': 1.0, 'something': 1.0, 've': 1.0, 'burt': 1.0, 'used': 1.0, 'taken': 1.0, 'amount': 1.0, 'after': 2.0, 'playing': 1.0, 'other': 1.0, 'find': 1.0, 'bee': 1.0, 's': 2.0, 'small': 1.0, 'a': 1.0, 'welts': 1.0, 'doctor': 1.0, 'comfortable': 1.0, 'of': 2.0, 'the': 5.0, 'incidence': 1.0, 'happily': 1.0, 'products': 1.0, 'struggling': 1.0, 'some': 2.0, 'in': 5.0, 'infant': 1.0, 'fortunately': 1.0, 'been': 1.0, 'that': 2.0, 'had': 3.0, 'pulled': 1.0, 'to': 7.0, 'help': 1.0, 'i': 7.0, 'broke': 1.0, 'head': 1.0, 'hives': 1.0, 'was': 4.0, 'horrible': 2.0, 'her': 4.0, 'use': 1.0, 'strength': 1.0, 'so': 1.0, 'swallowed': 1.0, 'with': 3.0, 'eczema': 1.0, 'dairy': 1.0, 'toys': 1.0, 'getting': 1.0, 'really': 2.0, 'this': 2.0, 'highly': 1.0, 'rinsed': 1.0, 'tried': 1.0, 'off': 1.0, 'enough': 1.0, 'months': 1.0, 'get': 1.0, 'sure': 1.0, 'prednisone': 1.0, 'put': 1.0, 'much': 1.0, 'more': 1.0, 'is': 1.0, 'be': 1.0, 'allergic': 2.0, 'increasing': 1.0, 'girl': 1.0, 'caution': 1.0}
Word element => {'is': 1.0, 'natural': 1.0, 'all': 1.0, 'being': 1.0, 'an': 1.0, 'adore': 1.0, 'because': 1.0, 'just': 1.0, 'lotion': 1.0, 'added': 1.0, 'bath': 1.0, 'time': 1.0, 'bonus': 1.0, 's': 1.0, 'eczema': 1.0, 'daughter': 1.0, 'our': 1.0, 'with': 1.0, 'this': 1.0, 'helps': 1.0, 'smells': 1.0, 'the': 2.0, 'for': 1.0, 'love': 1.0, 'smell': 1.0, 'we': 1.0, 'her': 1.0, 'little': 1.0, 'bit': 1.0, 'of': 1.0, 'matching': 1.0, 'and': 2.0, 'amazing': 1.0, 'bought': 1.0, 'i': 2.0}
Word element => {'great': 1.0, 'that': 1.0, 'how': 1.0, 'whole': 1.0, 'use': 1.0, 'bath': 1.0, 'like': 2.0, 'each': 1.0, 'didn': 1.0, 'haha': 1.0, 'after': 1.0, 'so': 1.0, 'order': 1.0, 'the': 3.0, 'i': 2.0, 'mess': 1.0, 'this': 1.0, 'hard': 1.0, 'it': 5.0, 'soak': 1.0, 'was': 1.0, 'had': 1.0, 'to': 3.0, 'smells': 1.0, 'second': 1.0, 'is': 1.0, 's': 1.0, 't': 1.0, 'a': 3.0, 'floor': 1.0, 'leaves': 1.0, 'scent': 1.0, 'good': 1.0, 'has': 1.0, 'break': 1.0, 'take': 1.0, 'warm': 1.0, 'jackhammer': 1.0, 'in': 2.0, 'also': 1.0, 'up': 1.0, 'spotted': 1.0, 'tub': 1.0, 'curdled': 1.0, 'and': 1.0, 'milk': 2.0, 'than': 1.0, 'right': 1.0, 'powder': 1.0, 'other': 1.0}
Word element => {'lot': 1.0, 'baby': 1.0, 'our': 1.0, 'in': 1.0, 'bubble': 1.0, 't': 2.0, 'his': 2.0, 'isn': 1.0, 'this': 1.0, 'skin': 1.0, 'weekly': 1.0, 'smells': 1.0, 'milk': 1.0, 'soaking': 1.0, 'leaves': 1.0, 'loves': 1.0, 'good': 1.0, 'bath': 2.0, 'smooth': 1.0, 'and': 1.0, 'but': 1.0, 'doesn': 1.0, 'a': 1.0, 'take': 1.0}
Word element => {'them': 1.0, 'from': 1.0, 'yourself': 1.0, 'all': 1.0, 'the': 2.0, 'they': 2.0, 'is': 1.0, 'seller': 2.0, 'communicate': 1.0, 'trustable': 1.0, 'absolutely': 1.0, 'toys': 1.0, 'irresponsible': 1.0, 'oompa': 1.0, 'buying': 1.0, 'to': 1.0, 'it': 1.0, 'this': 1.0, 'order': 1.0, 'and': 1.0, 'do': 1.0, 'just': 1.0, 'not': 2.0, 'safe': 1.0, 'at': 1.0, 'cancelled': 1.0, 'customer': 1.0, 'that': 1.0, 'keep': 1.0, 'did': 1.0, 'non': 1.0}
Word element => {'as': 1.0, 'same': 1.0, 'catch': 1.0, 'not': 1.0, 'did': 1.0, 'amazon': 1.0, 'return': 1.0, 'customer': 1.0, 'using': 1.0, 'crap': 1.0, 'wash': 1.0, 'first': 2.0, 'wouldn': 1.0, 'these': 1.0, 'damaged': 1.0, 'basically': 1.0, 'the': 5.0, 'defective': 2.0, 'shrunk': 2.0, 'one': 2.0, 'color': 1.0, 'and': 3.0, 'but': 1.0, 'package': 1.0, 'after': 1.0, 'was': 2.0, 'normal': 1.0, 'buy': 1.0, 'i': 2.0, 'again': 1.0, 'completely': 1.0, 'faded': 2.0, 'brand': 1.0, 'in': 3.0, 'regular': 1.0, 'flaw': 1.0, 'side': 1.0, 'he': 1.0, 'washing': 1.0, 'detergent': 1.0, 't': 1.0, 'a': 2.0, 'dryer': 1.0, 'what': 1.0, 'temp': 1.0, 'repackaged': 1.0, 'new': 1.0, 'would': 1.0, 'consider': 1.0, 'seem': 1.0, 'fabric': 1.0, 'different': 1.0, 'than': 1.0, 'making': 1.0, 'other': 1.0, 'second': 1.0, 'obviously': 1.0}
Word element => {'high': 1.0, '10': 1.0, 'knees': 1.0, '19': 1.0, 'overall': 1.0, 'clarify': 1.0, 'helpful': 1.0, 'it': 1.0, 'width': 1.0, 'table': 1.0, 'height': 1.0, 'match': 1.0, 'be': 1.0, 'anyone': 1.0, 'cm': 4.0, '23': 2.0, '48': 2.0, 'x': 2.0, '72': 2.0, 'are': 2.0, 'back': 1.0, 'dimensions': 2.0, 'seat': 1.0, 'to': 2.0, 'our': 2.0, 'that': 2.0, 'with': 1.0, 'pink': 1.0, 'son': 1.0, 'for': 4.0, 'art': 1.0, 'chair': 7.0, 'young': 1.0, 'old': 2.0, 'haring': 1.0, 'purchased': 2.0, 'year': 2.0, 'sturdy': 1.0, 'widest': 1.0, 'simple': 1.0, '28': 1.0, '5': 1.0, 'wood': 1.0, 'france': 1.0, 'equally': 1.0, 'made': 2.0, 'lifted': 1.0, 'is': 6.0, 'we': 1.0, 's': 1.0, 'a': 2.0, 'children': 1.0, 'may': 1.0, 'interpretation': 1.0, 'pop': 1.0, 'daughter': 1.0, 'beautiful': 1.0, 'of': 4.0, 'the': 11.0, '2': 1.0, 'keith': 1.0, 'also': 1.0, 'provided': 1.0, 'functional': 1.0, 'this': 2.0, 'perfect': 1.0, 'in': 4.0, 'looking': 1.0, 'blue': 1.0, 'size': 1.0, 'at': 1.0, 'since': 1.0, 'toddlers': 1.0, 'points': 1.0, 'arms': 1.0, 'both': 1.0, 'solid': 1.0, 'assembly': 1.0, 'and': 2.0, 'very': 1.0, 'metric': 1.0}
Word element => {'castanets': 1.0, 'set': 1.0, 'about': 1.0, '3': 1.0, 'yesterday': 1.0, 'sometimes': 1.0, 'what': 1.0, 'when': 2.0, 'am': 1.0, 'last': 1.0, 'her': 2.0, 'have': 1.0, 'wand': 1.0, 'and': 4.0, 'doesn': 1.0, 'straw': 1.0, 'dangerous': 1.0, 'pointy': 1.0, 'with': 1.0, 'for': 1.0, 'jingle': 1.0, 'is': 3.0, 'handle': 1.0, 'one': 4.0, 'triangle': 1.0, 'old': 2.0, 'i': 4.0, 'but': 2.0, 'immediately': 1.0, 'finding': 1.0, 'came': 1.0, 'contact': 1.0, 'chipped': 1.0, 'warrants': 1.0, 'review': 1.0, 'it': 1.0, 'don': 1.0, 'this': 2.0, 't': 2.0, 'of': 4.0, 'the': 15.0, 'product': 1.0, 'year': 2.0, 'open': 1.0, 'their': 1.0, 'stick': 1.0, 'day': 1.0, 'son': 1.0, 'opened': 1.0, 'was': 2.0, 'maracas': 2.0, 'information': 1.0, 'paint': 1.0, 'probably': 1.0, 'off': 2.0, 'house': 1.0, 'puts': 1.0, 'them': 1.0, 'together': 1.0, 'little': 1.0, 'bbs': 1.0, 'spraying': 1.0, 'everywhere': 1.0, 'in': 4.0, 'they': 1.0, 'are': 1.0, 'small': 1.0, 'a': 1.0, 'tiny': 1.0, 'company': 1.0, 'only': 2.0, 'made': 1.0, 'from': 1.0, 'lead': 1.0, 'who': 1.0, 'mouth': 1.0, 'so': 1.0, 'would': 1.0, 'buy': 1.0, 'something': 1.0, 'bang': 1.0, 'like': 1.0, 'to': 1.0, 'get': 1.0, 'touch': 1.0, 'an': 1.0, 'email': 1.0, 'decent': 1.0, 'form': 1.0, 'terrified': 1.0, 'italian': 1.0, 'trust': 1.0, 'my': 1.0, 'me': 1.0, 'everything': 1.0, 'else': 1.0, 'split': 1.0, 'normally': 1.0, 'terrible': 1.0, 'thing': 1.0}
Word element => {'with': 1.0, 'will': 1.0, 'durable': 1.0, 'is': 1.0, 'construction': 1.0, 'fingers': 1.0, 'based': 1.0, 'vegetable': 1.0, 'colorful': 1.0, 'make': 1.0, 'mouths': 1.0, 'except': 1.0, 'are': 2.0, 'they': 2.0, 'perfectly': 1.0, 'stand': 1.0, 'other': 1.0, 'making': 1.0, 'advanced': 1.0, 'that': 2.0, 'instruments': 3.0, 'wooden': 1.0, 'sized': 1.0, 'toys': 1.0, 'wanted': 1.0, 'was': 1.0, 'all': 1.0, 'actual': 1.0, 'to': 2.0, 'appreciate': 1.0, 'made': 2.0, 'looking': 1.0, 'i': 4.0, 'young': 3.0, 'triangle': 1.0, 'one': 1.0, 'music': 2.0, 'were': 1.0, 'sevi': 2.0, 'musical': 1.0, 'not': 1.0, 'poorly': 1.0, 'purchase': 1.0, 'my': 2.0, 'daughter': 1.0, 'by': 1.0, 'child': 2.0, 'up': 1.0, 'could': 1.0, 'a': 1.0, 's': 1.0, 'use': 1.0, 'either': 1.0, 'looked': 1.0, 'flimsy': 1.0, 'at': 1.0, 'safe': 1.0, 'many': 1.0, 'items': 1.0, 'or': 1.0, 'too': 2.0, 'and': 3.0, 'confidence': 1.0, 'products': 1.0, 'beautifully': 1.0, 'these': 1.0, 'the': 4.0, 'actually': 1.0, 'for': 4.0, 'fit': 1.0, 'colors': 1.0, 'help': 1.0, 'bill': 1.0}
Word element => {'being': 1.0, 'receive': 1.0, 'a': 2.0, 'box': 1.0, 'daughter': 2.0, 'be': 1.0, 'within': 1.0, 'would': 1.0, 'waste': 1.0, 'set': 2.0, 'similar': 1.0, 'and': 3.0, 'other': 1.0, 'heartbroken': 1.0, 'opened': 1.0, 'durable': 1.0, 'wooden': 1.0, 'than': 2.0, 'that': 5.0, 'because': 1.0, 'since': 1.0, 'in': 4.0, 'assumed': 1.0, 'year': 1.0, 'expensive': 1.0, 'two': 1.0, 'more': 1.0, 'completely': 1.0, '10': 1.0, 'for': 1.0, 'such': 2.0, 'they': 1.0, 'better': 1.0, 'entryway': 1.0, 'party': 1.0, 'old': 1.0, 'painted': 1.0, 'she': 4.0, 'excited': 2.0, 'online': 2.0, 'even': 2.0, 'her': 3.0, 'give': 1.0, 'wrong': 1.0, 'ended': 1.0, 'family': 1.0, 'instruments': 2.0, 'is': 3.0, 'look': 1.0, 'priority': 1.0, 'to': 4.0, 'was': 6.0, 'minutes': 1.0, 'are': 1.0, 'cute': 2.0, '15': 1.0, 'birthday': 3.0, 'drum': 1.0, 'i': 6.0, 'broke': 2.0, 'middle': 2.0, 'busy': 1.0, 'person': 1.0, 'the': 9.0, 'of': 2.0, 'just': 1.0, 'these': 1.0, 'patting': 1.0, 'did': 2.0, 'with': 2.0, 'something': 1.0, 'hand': 1.0, 'when': 1.0, 'last': 1.0, 'am': 1.0, 'dealing': 1.0, 'know': 1.0, 'office': 1.0, 'but': 1.0, 'policy': 1.0, 'sitting': 1.0, 'sets': 1.0, 'it': 6.0, 'thought': 1.0, 'up': 2.0, 't': 1.0, 'return': 1.0, 'so': 3.0, 'whole': 1.0, 'reason': 1.0, 'night': 1.0, '4': 1.0, 'boxing': 1.0, 'useless': 1.0, 'taking': 1.0, 'my': 5.0, 'post': 1.0, 'shopping': 1.0, 'disappointed': 1.0, 'on': 1.0, 'don': 1.0, 'list': 1.0}
Word element => {'brand': 1.0, 'another': 1.0, 'returned': 1.0, 'sharp': 1.0, 'making': 1.0, 'off': 1.0, 'screw': 1.0, 'one': 1.0, 'caps': 1.0, 'maybe': 1.0, 'before': 1.0, 'erased': 1.0, 'a': 1.0, 'they': 1.0, 'review': 1.0, 'wrote': 1.0, 'this': 1.0, 'it': 2.0, 'thought': 1.0, 'will': 1.0, 'but': 1.0, 'buy': 1.0, 'i': 3.0, 'drum': 2.0, 'and': 3.0, 'boxed': 1.0, 'wrapped': 1.0, 'showed': 1.0, 'the': 3.0, 'of': 1.0, 'up': 1.0, 'metal': 1.0, 'was': 2.0, 'fully': 1.0, 'rusty': 1.0}
Word element => {'and': 1.0, 'caterpiller': 1.0, 'regualar': 1.0, 'a': 1.0, 'perfect': 1.0, 'than': 1.0, 'is': 1.0, 'product': 1.0, 'an': 1.0, 'i': 1.0, 'was': 2.0, 'looking': 1.0, 'awesome': 1.0, 'for': 1.0, 'something': 1.0, 'doll': 1.0, 'this': 2.0, 'other': 1.0}
Word element => {'taken': 1.0, 'has': 1.0, 'tool': 1.0, 'learning': 1.0, 'are': 1.0, 'unless': 1.0, 'let': 1.0, 'course': 1.0, 'three': 1.0, 'them': 1.0, 'with': 2.0, 'problem': 1.0, 'no': 1.0, 'll': 1.0, 'that': 1.0, 'sure': 1.0, 'm': 1.0, 'interest': 1.0, 'time': 1.0, 'bit': 1.0, 'order': 1.0, 'ordered': 1.0, 'still': 1.0, 'any': 1.0, 'to': 3.0, 'watching': 1.0, 'i': 5.0, 'year': 1.0, 'meant': 1.0, 'for': 2.0, 'one': 2.0, 'old': 1.0, 'young': 1.0, 'functions': 1.0, 'great': 2.0, 'mistake': 1.0, '1': 1.0, 'couple': 2.0, 'in': 1.0, 'age': 2.0, 'this': 3.0, 'my': 1.0, 'regret': 1.0, 'the': 4.0, 'ones': 1.0, 'don': 2.0, 'up': 1.0, 'of': 4.0, '3': 1.0, 'favorites': 1.0, 'know': 1.0, 'by': 2.0, 'says': 1.0, 'just': 1.0, 'but': 3.0, 'have': 1.0, 'zipper': 1.0, 'play': 1.0, 'too': 1.0, 'and': 5.0, 'similar': 1.0, 'ordering': 1.0, 'we': 2.0, 's': 2.0, 't': 2.0, 'a': 5.0, 'it': 3.0, 'she': 5.0, 'is': 1.0, 'really': 1.0, 'enjoys': 1.0, 'button': 1.0, 'daughter': 1.0, 'name': 1.0, 'different': 1.0, 'her': 2.0}
Word element => {'good': 1.0, 'is': 1.0, 'quick': 1.0, 'delivery': 1.0, 'product': 1.0, 'much': 1.0, 'enjoyed': 1.0, 'it': 2.0, 'this': 1.0, 'was': 2.0, 'a': 1.0, 'the': 3.0, 'quality': 1.0, 'and': 1.0, 'very': 2.0, 'boy': 1.0, 'nice': 1.0, 'little': 1.0, 'gift': 1.0, 'who': 1.0, 'recieved': 1.0}
Word element => {'delight': 1.0, 'squeals': 1.0, 'at': 1.0, 'old': 1.0, 'this': 1.0, 'stuffed': 1.0, '3': 1.0, 'elephant': 1.0, 'stares': 1.0, 'vibrant': 1.0, 'my': 1.0, 'with': 1.0, 'is': 1.0, 'and': 2.0, 'very': 1.0, 'stimulating': 1.0, 'it': 1.0, 'month': 1.0}
Word element => {'again': 1.0, 'purchase': 1.0, 'but': 1.0, 'return': 1.0, 'care': 1.0, 'granddauhgter': 1.0, 'by': 1.0, 'repaired': 1.0, 'did': 1.0, 'about': 1.0, 'contact': 1.0, 'if': 1.0, 'see': 1.0, 'toy': 2.0, 'review': 1.0, 'didn': 2.0, 'mismatched': 1.0, 'sewn': 2.0, 'the': 9.0, 'it': 2.0, 'with': 1.0, 'on': 1.0, 'elmo': 1.0, 'for': 1.0, 'enough': 1.0, 'legs': 1.0, 'was': 2.0, 'to': 3.0, 'as': 2.0, 'replacement': 1.0, 'young': 1.0, 'problems': 1.0, 'while': 1.0, 'from': 2.0, 't': 2.0, 'a': 4.0, 'are': 3.0, 'this': 3.0, 'eyes': 1.0, 'loved': 1.0, 'stuffed': 1.0, 'purchased': 1.0, 'use': 1.0, 'much': 1.0, 'many': 1.0, 'is': 2.0, 'sideways': 1.0, 'be': 1.0, 'reject': 1.0, 'kisses': 1.0, 'in': 2.0, 'seems': 1.0, 'size': 1.0, 'sold': 1.0, 'and': 3.0, 'there': 1.0, 'were': 1.0, 'me': 2.0, 'not': 4.0, 'correctly': 1.0, 'needed': 1.0, 'resewn': 1.0, 'before': 2.0, 'write': 1.0, 'obviously': 1.0, 'defects': 1.0, 'that': 1.0, 'fisherprice': 1.0, 'i': 3.0, 'they': 1.0, 'dealer': 3.0, 'would': 2.0, 'new': 1.0}
Word element => {'so': 1.0, 'am': 1.0, 'my': 1.0, 'like': 1.0, 'could': 1.0, 'the': 2.0, 'very': 1.0, 'trust': 1.0, 'from': 1.0, 'ordered': 1.0, 'not': 1.0, 'because': 1.0, 'give': 1.0, 'shipped': 1.0, 'grandson': 1.0, 'dirty': 1.0, 'times': 1.0, 'have': 1.0, 'it': 2.0, 'this': 1.0, 'is': 1.0, 'felt': 1.0, 'many': 1.0, 'amazon': 1.0, 'products': 1.0, 'i': 6.0, 'will': 1.0, 'quality': 1.0, 'of': 1.0, 'time': 1.0, 'to': 1.0, 'was': 2.0, 'disappointed': 2.0, 'greatly': 1.0, 'new': 1.0, 'toy': 1.0}
Word element => {'too': 1.0, 'is': 1.0, 'his': 1.0, 'sesame': 1.0, 'street': 1.0, 'and': 1.0, 'purchase': 1.0, 'my': 1.0, 'character': 1.0, 't': 1.0, 'great': 1.0, 'elmo': 2.0, 'for': 1.0, 'love': 1.0, 'favorite': 1.0, 'grandson': 1.0, 'who': 1.0, 'as': 1.0, 'from': 1.0, 'doesn': 1.0, 'kisses': 1.0, 'soft': 1.0, 'bought': 1.0, 'plush': 1.0}
Word element => {'day': 1.0, 'to': 1.0, 'it': 1.0, 'at': 1.0, 'elmo': 1.0, 'received': 1.0, 'my': 1.0, 'loves': 1.0, 'this': 3.0, 'item': 1.0, 'birthday': 1.0, 'and': 1.0, 'friends': 1.0, 'as': 1.0, 'a': 2.0, 'christmas': 1.0, 'bought': 1.0, 'gift': 1.0, 'had': 1.0, 'for': 1.0, 'son': 2.0}
Word element => {'backup': 1.0, 'buying': 1.0, 'will': 1.0, 'item': 1.0, 'seasonal': 1.0, 'appears': 1.0, 'plus': 1.0, 'real': 1.0, 'trips': 1.0, 'bag': 1.0, 'diaper': 1.0, 'stroller': 1.0, 'the': 1.0, 'snuggling': 1.0, 'great': 1.0, 'pressed': 1.0, 'is': 1.0, 'for': 2.0, 'lit': 1.0, 'he': 3.0, 'this': 2.0, 'it': 1.0, 'fits': 1.0, 'my': 2.0, 'was': 1.0, 'phrases': 1.0, 'while': 1.0, 'shopping': 1.0, 'spotted': 1.0, 'showed': 1.0, 'elmo': 4.0, 'one': 1.0, 'son': 2.0, 'tells': 1.0, 'on': 1.0, 'we': 1.0, 'a': 5.0, 'random': 1.0, 'be': 2.0, 'him': 2.0, 'shelf': 1.0, 'charming': 1.0, 'over': 1.0, 'up': 1.0, 'once': 1.0, 'of': 1.0, 'soon': 1.0, 'and': 3.0, 'get': 1.0, 'his': 2.0, 'hand': 1.0, 'to': 2.0, 'as': 2.0, 'all': 1.0, 'size': 1.0, 'nothing': 1.0, 'but': 1.0, 'smiles': 1.0, 'easily': 1.0, 'when': 1.0, 'i': 4.0, 'blows': 1.0, 'in': 1.0, 'said': 1.0, 'kisses': 1.0, 'or': 2.0, 'loves': 1.0, 'so': 2.0, 'cute': 1.0}
Word element => {'pleased': 1.0, 'kisses': 1.0, 'gives': 1.0, 'very': 2.0, 'and': 2.0, 'she': 1.0, '1st': 1.0, 'cute': 1.0, 'birthday': 1.0, 'm': 1.0, 'daughter': 1.0, 'for': 2.0, 'grand': 1.0, 'snuggle': 1.0, 'my': 1.0, 'the': 1.0, 'loves': 1.0, 'purchase': 1.0, 'purchased': 1.0, 'toy': 1.0, 'to': 1.0, 's': 2.0, 'i': 2.0, 'with': 1.0, 'this': 2.0, 'it': 3.0, 'is': 1.0, 'her': 2.0, 'just': 1.0, 'talks': 1.0, 'right': 1.0, 'size': 1.0, 'favorite': 1.0, 'hold': 1.0}
Word element => {'thin': 1.0, 'not': 1.0, 'a': 1.0, 'even': 1.0, 'best': 1.0, 'quality': 1.0, 'construction': 1.0, 'girl': 1.0, 'special': 1.0, 'baby': 1.0, 'any': 1.0, 'and': 3.0, 'heavy': 1.0, 'the': 5.0, 'satin': 1.0, 'cutest': 1.0, 'is': 3.0, 'perfect': 1.0, 'in': 1.0, 'smooth': 1.0, 'most': 1.0, 'stuffed': 1.0, 'for': 1.0, 'one': 1.0, 'your': 1.0, 'ribbon': 1.0, 'beautiful': 1.0, 'cheap': 1.0, 'softest': 1.0, 'life': 1.0, 'this': 1.0, 'it': 1.0, 'bunny': 1.0, 's': 1.0, 'animal': 1.0}
Word element => {'a': 1.0, 'we': 1.0, 'washing': 1.0, 'in': 2.0, 'fine': 1.0, 'is': 1.0, 'have': 1.0, 'guidance': 1.0, 'the': 2.0, 'small': 1.0, 'months': 1.0, 'she': 2.0, 'machine': 1.0, 'to': 1.0, 'its': 1.0, 'was': 1.0, 'at': 1.0, '7': 1.0, 'onto': 1.0, 'soft': 1.0, 'become': 1.0, 'rotation': 1.0, 'when': 1.0, 'daughter': 1.0, 'my': 1.0, 'about': 1.0, 'snuggles': 1.0, 'cleaning': 1.0, 'bedtime': 1.0, 'old': 1.0, 'couple': 1.0, 'and': 2.0, 'has': 1.0, 'latched': 1.0, 'favorite': 1.0, 'her': 1.0, 'this': 1.0, 'it': 2.0, 'with': 1.0, 'contrary': 1.0, 'naptime': 1.0}
Word element => {'disapointed': 1.0, 'you': 1.0, 'collectors': 1.0, 'bay': 1.0, 'bunnies': 1.0, 'for': 1.0, 'be': 1.0, 'adorable': 1.0, 'will': 1.0, 'by': 1.0, 'shipped': 1.0, 'not': 1.0, 'would': 1.0, 'soft': 1.0, 'quickly': 1.0, 'must': 1.0, 'and': 1.0, 'well': 1.0, 'the': 1.0, 'made': 1.0, 'recommend': 1.0, 'a': 1.0}
Word element => {'few': 1.0, 'for': 2.0, 'girl': 1.0, 'new': 1.0, 'our': 1.0, 'little': 1.0, 'lives': 1.0, 'gift': 2.0, 'a': 4.0, 'hold': 1.0, 'this': 1.0, 'it': 1.0, 's': 1.0, 'in': 2.0, 'perfect': 1.0, 'just': 1.0, 'and': 1.0, 'the': 1.0, 'was': 1.0, 'to': 2.0, 'right': 1.0, 'size': 1.0, 'her': 1.0, 'months': 1.0, 'on': 1.0}
IOPub data rate exceeded. The notebook server will temporarily stop sending output to the client in order to avoid crashing it. To change this limit, set the config variable `--NotebookApp.iopub_data_rate_limit`. Current values: NotebookApp.iopub_data_rate_limit=1000000.0 (bytes/sec) NotebookApp.rate_limit_window=3.0 (secs)
Word element => {'mess': 1.0, 'gross': 1.0, 'giant': 1.0, 'entire': 1.0, 'himself': 1.0, 'once': 1.0, 'mentioned': 1.0, 'reviewers': 1.0, 'like': 1.0, 'us': 1.0, 'provides': 1.0, 'his': 1.0, 'on': 2.0, '3': 2.0, 'just': 2.0, 'toward': 1.0, 'not': 4.0, 'other': 1.0, 'playing': 1.0, 'all': 1.0, 'became': 1.0, 'to': 7.0, 'our': 1.0, 'difficult': 1.0, 'gets': 1.0, 'seat': 1.0, 'in': 3.0, 'wash': 1.0, 'laundry': 1.0, 'up': 1.0, 'stuck': 1.0, 'son': 1.0, 'pros': 1.0, 'label': 1.0, 'where': 1.0, 'for': 3.0, 'necessary': 1.0, 'impossible': 1.0, 'there': 1.0, 'chair': 2.0, 'off': 2.0, 'behind': 1.0, 'covered': 1.0, 'space': 2.0, 'shaped': 1.0, 'keep': 1.0, 'legs': 1.0, 'get': 2.0, 'so': 1.0, 'thing': 1.0, '2': 2.0, 'but': 1.0, 'removable': 1.0, 'sitting': 2.0, 'saving': 1.0, 'scooted': 1.0, 'warning': 1.0, 'side': 1.0, '1': 2.0, 'great': 2.0, 'comfortable': 1.0, 'big': 1.0, 'crannies': 1.0, 'clean': 1.0, 'cons': 1.0, 'and': 5.0, 'at': 1.0, 'is': 4.0, 'more': 1.0, 'tray': 1.0, 'of': 2.0, 'the': 11.0, 'deal': 1.0, 'attractive': 1.0, 'dinner': 1.0, 'nooks': 1.0, 'jammed': 1.0, 'really': 1.0, 'design': 1.0, 'into': 1.0, 'that': 1.0, 'or': 2.0, 'food': 3.0, 'crescent': 1.0, '4': 1.0, 'small': 1.0, 'a': 4.0, 'take': 1.0, 'we': 1.0, 'could': 1.0, 's': 2.0, 'swivel': 1.0, 'gigantic': 1.0, 'however': 1.0, 'easy': 1.0, 'unattractive': 1.0, 'toys': 1.0, 'started': 2.0, 'this': 1.0, '5m': 1.0, 'before': 1.0, 'he': 3.0, 'with': 3.0, 'little': 1.0, 'table': 1.0, 'pillow': 1.0, 'front': 1.0, 'install': 1.0, 'dangling': 1.0, 'him': 2.0, 'it': 1.0, 'feed': 1.0, 'even': 1.0, 'sit': 1.0, 'when': 1.0, 'eating': 1.0}
Word element => {'practice': 1.0, 'concept': 1.0, 'do': 1.0, 'husband': 1.0, 'my': 1.0, 'use': 1.0, 'attachment': 1.0, 'by': 1.0, 'washer': 1.0, 'throw': 1.0, 'of': 3.0, 'should': 1.0, 'now': 1.0, 'was': 1.0, 'listened': 1.0, 'clean': 4.0, 'made': 1.0, 'out': 2.0, 'part': 1.0, 'hard': 5.0, 'it': 5.0, 'this': 4.0, 'wouldn': 1.0, 'ordered': 1.0, 'love': 1.0, 'for': 1.0, 'have': 1.0, 'system': 1.0, 'bad': 1.0, 'chair': 3.0, 'i': 5.0, 'cloth': 2.0, 'in': 2.0, 'said': 1.0, 'is': 5.0, 'myself': 1.0, 'the': 6.0, 'great': 2.0, 'despite': 1.0, 'be': 1.0, 'into': 1.0, 'that': 3.0, 'reviews': 1.0, 'idea': 1.0, 'too': 1.0, 'and': 2.0, 'get': 1.0, 'think': 1.0, 'except': 1.0, 'to': 8.0, 'seat': 1.0, 'has': 2.0, 'lots': 1.0, 'crevices': 1.0, 'but': 3.0, 'food': 1.0, 'so': 2.0, 'also': 1.0, 'if': 1.0, 'a': 1.0, 't': 1.0, 'could': 1.0, 'take': 1.0}
Word element => {'happy': 1.0, 'm': 1.0, 'i': 1.0, 'overall': 1.0, 'then': 1.0, 'balance': 1.0, 'to': 1.0, 'have': 1.0, 'if': 1.0, 'table': 1.0, 'tip': 1.0, 'ok': 1.0, 'very': 3.0, 'is': 3.0, 'child': 1.0, 'or': 1.0, 'good': 1.0, 'seat': 2.0, 'swiveling': 1.0, 'counter': 1.0, 'it': 5.0, 'only': 1.0, 'with': 2.0, 'this': 1.0, 't': 1.0, 'the': 2.0, 'issue': 1.0, 'can': 1.0, 'something': 1.0, 'that': 1.0, 'you': 2.0, 'will': 1.0, 'put': 1.0, 'lbs': 1.0, 'over': 1.0, 'convenient': 1.0, 'a': 2.0, '15': 1.0, '20': 1.0, 'in': 1.0}
Word element => {'are': 1.0, 'arms': 1.0, 'her': 1.0, 'or': 1.0, 'now': 1.0, 'when': 2.0, 'corner': 1.0, 'tray': 1.0, 'baby': 5.0, 'broke': 1.0, 'inside': 1.0, 'especially': 1.0, 'ever': 1.0, 'make': 1.0, 'on': 1.0, 'your': 1.0, 'isn': 2.0, 'chair': 1.0, 'swiveling': 2.0, 'and': 2.0, 'is': 1.0, 'caught': 1.0, 'dining': 1.0, 'got': 1.0, 'not': 1.0, 'heard': 1.0, 'swivel': 2.0, 'to': 1.0, 'our': 1.0, 'it': 6.0, 'durable': 1.0, 'skin': 2.0, 'do': 1.0, 'works': 1.0, 've': 1.0, 'for': 1.0, 'the': 5.0, 's': 2.0, 't': 2.0, 'in': 1.0, 'cry': 1.0, 'have': 1.0, 'small': 1.0, 'however': 1.0, 'while': 3.0, 'hard': 1.0, 'wearing': 1.0, 'sleeves': 1.0, 'so': 2.0, 'sure': 1.0, 'poor': 1.0, 'area': 1.0, 'my': 2.0, 'underarm': 1.0, 'at': 1.0, 'of': 1.0, 'i': 2.0, 'never': 1.0}
Word element => {'need': 1.0, 'room': 1.0, 'take': 1.0, 'house': 1.0, 'in': 1.0, 'have': 1.0, 'even': 1.0, 'not': 1.0, 'problem': 1.0, 'first': 1.0, 'it': 3.0, 'this': 3.0, 'older': 1.0, 'from': 1.0, 'too': 1.0, 'and': 4.0, 'up': 1.0, 'child': 1.0, 'a': 2.0, 'ago': 1.0, 'my': 1.0, 'you': 1.0, 'when': 2.0, 'i': 6.0, 'highchair': 1.0, 'love': 1.0, 'loved': 1.0, 'much': 1.0, 'only': 1.0, 'do': 1.0, 'try': 1.0, 'the': 6.0, 'had': 3.0, 'was': 3.0, 'all': 1.0, 'as': 1.0, 'to': 1.0, 'yrs': 1.0, 'w': 1.0, 'chair': 2.0, 'there': 2.0, 'no': 1.0, 'one': 1.0, 'tray': 2.0, 'gap': 1.0, 'they': 1.0, 'between': 1.0, 'so': 1.0, 'version': 1.0, 'table': 1.0, 'would': 1.0, 'is': 1.0, 'fall': 1.0, 'therefore': 1.0, 'on': 1.0, 'floor': 1.0, 'saw': 1.0, 'that': 1.0, '2': 1.0, 'food': 1.0, 'rotates': 1.0, 'well': 1.0, 'has': 1.0}
Word element => {'price': 1.0, 'plus': 1.0, 'ooohs': 1.0, 'recieved': 1.0, 'great': 2.0, 'overall': 1.0, 'took': 1.0, 'together': 1.0, 'back': 1.0, 'putting': 1.0, 'over': 1.0, 'up': 1.0, 'base': 1.0, 'its': 1.0, 'only': 1.0, 'plasitc': 1.0, 'un': 1.0, 'quickly': 1.0, 'but': 1.0, 'food': 1.0, 'does': 1.0, 'so': 2.0, 'made': 1.0, 'many': 1.0, 'reverse': 1.0, 'pretty': 1.0, 'cake': 1.0, 'of': 1.0, 'customer': 1.0, 'and': 7.0, 'sink': 1.0, 'mine': 1.0, 'or': 1.0, 'i': 5.0, 'throw': 1.0, 'high': 1.0, 'off': 1.0, 'snap': 2.0, 're': 1.0, 'just': 4.0, 'itself': 1.0, 'in': 3.0, 'it': 12.0, 'perfect': 1.0, 'this': 2.0, 'from': 3.0, 'hard': 1.0, 'is': 5.0, 'scrub': 1.0, 'get': 1.0, 'area': 1.0, 'there': 1.0, 'chair': 2.0, 'have': 1.0, 'small': 1.0, 'like': 2.0, 'table': 1.0, 'put': 1.0, 'on': 2.0, 'piece': 1.0, 'seat': 1.0, 'to': 3.0, 'was': 1.0, 'the': 5.0, 'when': 1.0, 'you': 1.0, 'are': 1.0, 'dirty': 1.0, 'counter': 1.0, 'reviews': 1.0, 'ready': 1.0, 'a': 4.0, 'go': 1.0, 'kitchen': 1.0, 'other': 1.0, 'compliments': 1.0, 'talks': 1.0, 'no': 1.0, 'about': 1.0, 'dining': 1.0, 'how': 1.0, 'fabric': 1.0, 'clean': 1.0, 'where': 1.0, 'love': 1.0, 'for': 1.0, 'assemble': 1.0, 'aaahs': 1.0, 'bar': 1.0, 'kitchens': 2.0, 'thought': 1.0}
Word element => {'right': 1.0, 'situation': 1.0, 'refusal': 1.0, 'fall': 1.0, 'allowed': 1.0, 'design': 1.0, 'with': 1.0, 'displeased': 1.0, 'very': 1.0, 'but': 1.0, 'fluke': 1.0, 'probably': 1.0, 've': 1.0, 'would': 1.0, 'sure': 1.0, 'm': 1.0, 'overall': 1.0, 'me': 1.0, 'give': 1.0, 'unusable': 1.0, 'wouldn': 1.0, 'got': 1.0, 'time': 1.0, 'by': 1.0, 'company': 2.0, 'repair': 1.0, 'try': 1.0, 'out': 1.0, 'getting': 1.0, 'arrived': 1.0, 'space': 1.0, 'of': 2.0, 'once': 1.0, 'no': 1.0, 'the': 13.0, 'arm': 3.0, 'and': 7.0, 'way': 1.0, 'incident': 1.0, 'i': 6.0, 'this': 3.0, 'small': 1.0, 'have': 1.0, 'dining': 1.0, 'bought': 1.0, 'supposed': 1.0, 'it': 5.0, 'fell': 1.0, '360': 1.0, 'because': 1.0, 'set': 1.0, 'anyway': 1.0, 'up': 1.0, 'metal': 2.0, 'chair': 5.0, 'there': 1.0, 'rotate': 1.0, 'in': 1.0, 'degrees': 1.0, 'stuck': 1.0, 'refund': 1.0, 'was': 6.0, 'to': 5.0, 's': 1.0, 't': 1.0, 'discovered': 1.0, 'a': 4.0, 'we': 1.0, 'could': 1.0, 'going': 1.0, 'nice': 1.0, 'great': 1.0, 'until': 1.0, 'went': 1.0, 'make': 1.0, 'put': 1.0, 'inside': 2.0, 'snap': 2.0, 'silver': 1.0, 'slide': 1.0, 'loved': 1.0, 'through': 1.0, 'became': 1.0, 'been': 1.0, 'that': 2.0, 'totally': 1.0}
Word element => {'again': 1.0, 'buy': 1.0, 'that': 1.0, 'overall': 1.0, 'grandma': 1.0, 'trips': 1.0, 'is': 1.0, 'but': 1.0, 'restaurant': 1.0, 'bother': 1.0, 'good': 1.0, 'clean': 1.0, 'easy': 1.0, 'table': 1.0, 'pretty': 1.0, 'sturdy': 1.0, 'well': 1.0, 'built': 1.0, 'apt': 1.0, 'attach': 1.0, 'live': 1.0, 'for': 2.0, 'in': 1.0, 'sound': 1.0, 'was': 1.0, 'chair': 3.0, 'very': 1.0, 'to': 6.0, 'as': 2.0, 'and': 4.0, 'this': 1.0, 'it': 6.0, 'with': 1.0, 'wouldn': 1.0, 'great': 2.0, 'go': 1.0, 'a': 6.0, 's': 3.0, 'we': 1.0, 't': 1.0, 'tiny': 1.0, 'works': 1.0, 'down': 1.0, 'were': 1.0, 'spins': 1.0, 'i': 4.0, 'have': 1.0, 'us': 1.0, 'able': 1.0, 'would': 1.0, 'drop': 1.0, 'weekend': 1.0, 'the': 2.0, 'leaf': 1.0, 'track': 1.0, 'not': 1.0, 'disassemble': 1.0, 'they': 1.0, 'except': 1.0, 'skirt': 1.0, 'portable': 1.0, 'make': 1.0}
Word element => {'best': 1.0, 'day': 1.0, 'week': 1.0, 'nervous': 1.0, 'sponge': 1.0, 'more': 1.0, 'd': 2.0, 'redesign': 1.0, 'want': 1.0, 'wouldn': 1.0, 'kinda': 1.0, 'fine': 1.0, 'heavy': 1.0, 'cracked': 1.0, 'plastic': 1.0, 'works': 1.0, 'remove': 1.0, 'assemble': 1.0, 'gunky': 1.0, 'eater': 1.0, 'get': 4.0, 'badthe': 2.0, 'rotates': 1.0, 'where': 1.0, 'make': 1.0, 'area': 1.0, 'again': 1.0, 'clean': 2.0, 'hard': 1.0, 'by': 1.0, 'itcons': 1.0, 'off': 1.0, 'do': 2.0, 'put': 1.0, 'floor': 1.0, 'practical': 1.0, 'instead': 1.0, 'makes': 1.0, 'keep': 1.0, 'helps': 1.0, 'gets': 2.0, 'least': 1.0, 'definitely': 1.0, 'think': 1.0, 'just': 1.0, '360': 1.0, 'should': 3.0, 'chicco': 1.0, 'didn': 1.0, 'am': 1.0, 'first': 1.0, 'rotating': 1.0, 'different': 1.0, 'fabric': 1.0, 'for': 2.0, 'degree': 1.0, 't': 3.0, 'a': 6.0, 's': 7.0, 'great': 2.0, 'big': 1.0, 'wipeable': 1.0, 'top': 1.0, 'back': 2.0, 'the': 12.0, 'of': 6.0, 'once': 4.0, 'money': 1.0, 'but': 5.0, 'sitting': 1.0, 'or': 1.0, 'food': 3.0, 'baby': 6.0, 'them': 1.0, 'will': 2.0, 'eyesore': 1.0, 'impossible': 1.0, 'went': 1.0, 'me': 1.0, 'my': 3.0, 'real': 1.0, 'brand': 1.0, 'buying': 1.0, 'with': 1.0, 'be': 6.0, 'everywhere': 1.0, 'because': 3.0, 'that': 3.0, 'debated': 1.0, 'recommend': 1.0, 'wiping': 1.0, 'dirty': 1.0, 'were': 2.0, 'i': 12.0, 'surfaceseat': 1.0, 'still': 1.0, 'if': 2.0, 'mean': 1.0, 'eat': 2.0, 'questions': 1.0, 'between': 1.0, 'items': 1.0, 'permanent': 1.0, 'puffy': 1.0, 'which': 1.0, 'like': 2.0, 'know': 1.0, 'someday': 1.0, 'would': 1.0, 'difficult': 2.0, 'position': 1.0, 'have': 3.0, 'it': 22.0, 'this': 4.0, 'on': 4.0, 'probably': 1.0, 'your': 4.0, 'after': 1.0, 'tray': 2.0, 'really': 2.0, 'glad': 1.0, 'attractive': 1.0, 'at': 2.0, 'is': 6.0, 'chair': 2.0, 'create': 1.0, 'pros': 1.0, 'itself': 1.0, 'not': 4.0, 'washing': 1.0, 'style': 1.0, 'all': 1.0, 'an': 3.0, 'lot': 1.0, 'chairs': 2.0, 'list': 1.0, 'isn': 1.0, 'table': 1.0, 'right': 2.0, 'hang': 2.0, 'give': 1.0, 'lounge': 1.0, 'can': 3.0, 'so': 4.0, 'teaches': 1.0, 'suitcaseif': 1.0, 'before': 1.0, 'seat': 3.0, 'in': 2.0, 'and': 4.0, 'you': 6.0, 'able': 1.0, 'what': 2.0, 'sit': 1.0, 'thing': 1.0, 'machine': 1.0, 'less': 1.0, 'up': 1.0, 'wash': 2.0, 'anyway': 1.0, 'washable': 1.0, 'to': 10.0, 'high': 2.0, 'straight': 1.0, 'very': 4.0, 'sturdy': 1.0, 'messy': 1.0, 'attached': 1.0, 'appropriate': 2.0, 'cover': 3.0}
Word element => {'wish': 1.0, 'entertain': 1.0, 'each': 2.0, 'across': 1.0, 'they': 2.0, 'mommy': 1.0, 'love': 1.0, 'old': 2.0, 'year': 1.0, 'chairs': 2.0, 'on': 1.0, 'these': 1.0, 'say': 1.0, 'acceptable': 1.0, 'having': 1.0, 'from': 1.0, 'wiped': 1.0, 'removed': 1.0, 'be': 1.0, 'daddy': 1.0, 'cover': 2.0, 'chicco': 3.0, 'good': 1.0, 'made': 2.0, 'but': 1.0, '2': 2.0, 'work': 2.0, 'so': 1.0, 'constantly': 1.0, 'can': 1.0, 'not': 5.0, 'i': 4.0, 'son': 1.0, 'complicated': 1.0, 'germ': 1.0, 'this': 3.0, 'some': 1.0, 'approximately': 1.0, 'please': 1.0, 'part': 1.0, 'day': 1.0, 'time': 1.0, 'uses': 1.0, 'about': 1.0, 'supports': 1.0, 'o': 1.0, 'with': 2.0, 'great': 2.0, 'or': 1.0, 'need': 1.0, 'due': 1.0, 'idea': 1.0, 'you': 3.0, 'a': 6.0, 'take': 2.0, 'we': 2.0, 'at': 1.0, 'is': 5.0, 'around': 1.0, 'caddy': 1.0, 'chair': 2.0, 'd': 1.0, 'onto': 1.0, 'after': 1.0, 'ends': 1.0, 'filthy': 1.0, 'clean': 5.0, '10': 1.0, 'for': 3.0, 'fabric': 3.0, 'it': 12.0, 'daughter': 1.0, 'contrary': 1.0, 'truly': 1.0, 'have': 4.0, 'gets': 1.0, 'month': 1.0, 'under': 1.0, 'one': 2.0, 'too': 3.0, 'sitting': 1.0, 'description': 1.0, 'to': 11.0, 'our': 1.0, 'hand': 1.0, 'like': 1.0, 'easier': 1.0, 'theory': 1.0, 'table': 4.0, 'and': 9.0, 'anyone': 1.0, 'm': 1.0, 'seat': 1.0, 'in': 1.0, 'way': 1.0, 'apart': 2.0, 'every': 1.0, 'if': 2.0, 'wash': 3.0, 'who': 1.0, 'could': 1.0, 'means': 1.0, 'will': 2.0, 'however': 1.0, 'easy': 2.0, 'get': 1.0, 'just': 2.0, 'large': 1.0, 'wipe': 2.0, 'my': 2.0, 'all': 1.0, 'other': 3.0, 'kitchen': 1.0, 'phobe': 1.0, 'complaint': 1.0, 'that': 3.0, 'doesn': 1.0, 'tables': 1.0, 't': 2.0, 'fairly': 1.0, 'are': 2.0, 'almost': 1.0, 'didn': 1.0, 'us': 1.0, 'only': 1.0, 'the': 10.0, 'of': 4.0, 's': 1.0, 'sides': 1.0, 'what': 1.0, 'would': 1.0, 'make': 2.0, 'definitely': 3.0, 'hook': 2.0, 'standard': 1.0, 'better': 1.0, 'were': 2.0}
Word element => {'carry': 1.0, 'bulkly': 1.0, 'that': 1.0, 'improvement': 1.0, 'for': 1.0, 'angle': 1.0, 'weird': 1.0, 'a': 2.0, 'from': 1.0, 'child': 2.0, 'your': 2.0, 'don': 1.0, 'if': 1.0, 'clip': 1.0, 'easy': 1.0, 'little': 1.0, 'handy': 1.0, 'to': 4.0, 'its': 1.0, 'just': 1.0, 'comment': 1.0, 'because': 1.0, 't': 1.0, 'the': 3.0, '360': 1.0, 'chicco': 1.0, 'is': 3.0, 'really': 1.0, 'of': 1.0, 'have': 2.0, 'it': 2.0, 'only': 1.0, 'this': 1.0, 'enjoyed': 1.0, 'most': 1.0, 'i': 1.0, 'on': 1.0, 'turns': 1.0, 'feed': 1.0, 'tables': 1.0, 'and': 2.0, 'fact': 1.0, 'chair': 1.0, 'you': 2.0, 'way': 1.0}
Word element => {'wont': 1.0, 'sturdy': 1.0, 'dissapointed': 1.0, 'you': 1.0, 'comfortable': 1.0, 'is': 1.0, 'love': 1.0, 'it': 3.0, 'loves': 1.0, 'easy': 1.0, 'be': 1.0, 'to': 1.0, 'assemble': 1.0, 'very': 1.0, 'and': 2.0, 'my': 1.0, 'grand': 1.0, 'daughter': 1.0}
Word element => {'are': 1.0, 'to': 1.0, 'your': 1.0, 'room': 1.0, 'dining': 1.0, 'separate': 1.0, 'have': 1.0, 'you': 2.0, 'kitchen': 1.0, 'were': 1.0, 'if': 1.0, 'handy': 1.0, 'in': 2.0, 'would': 1.0, 'where': 1.0, 'm': 1.0, 'i': 1.0, '360': 1.0, 'very': 2.0, 'and': 2.0, 'comfortable': 1.0, 'for': 2.0, 'see': 1.0, 'a': 1.0, 'convenient': 1.0, 'out': 1.0, 'come': 1.0, 'eating': 1.0, 'it': 2.0, 'this': 1.0, 'great': 1.0, 't': 1.0, 'the': 4.0, 'baby': 2.0, 'we': 2.0, 'want': 1.0, 'is': 1.0, 'really': 1.0, 'of': 1.0, 'sure': 1.0, 'chair': 2.0, 'haven': 1.0, 'used': 1.0, 'part': 1.0, 'but': 1.0}
Word element => {'i': 1.0, 'heavier': 1.0, 'little': 1.0, 'a': 1.0, 'houses': 1.0, 'this': 1.0, 'car': 1.0, 'expected': 1.0, 'at': 1.0, 'is': 2.0, 'the': 1.0, 'it': 1.0, 'families': 1.0, 'great': 1.0, 'friends': 1.0, 'and': 2.0, 'to': 1.0, 'restaurants': 1.0, 'keep': 1.0, 'in': 1.0, 'than': 1.0, 'use': 1.0}
Word element => {'environment': 1.0, 'eat': 1.0, 'want': 1.0, 'photos': 1.0, 'disgusting': 1.0, 'wipes': 1.0, 'wet': 1.0, 'swabs': 1.0, 'ear': 1.0, 'crevices': 3.0, 'cleaning': 1.0, 'about': 1.0, 'complaint': 1.0, 'frustrating': 1.0, 'shrunk': 1.0, 'if': 2.0, 'washed': 1.0, 'be': 1.0, 'should': 1.0, 'home': 1.0, 'used': 2.0, 'all': 1.0, 'other': 1.0, 'ever': 1.0, 'design': 1.0, 'less': 1.0, 'up': 1.0, 'will': 1.0, 'genius': 1.0, 'there': 2.0, 'secure': 2.0, 'allotted': 1.0, 'space': 1.0, 'sure': 1.0, 'thread': 1.0, 'through': 1.0, 'material': 1.0, 'came': 1.0, 'unstretchable': 1.0, 'made': 1.0, 'toothpicks': 1.0, 'tabs': 3.0, 'sewed': 1.0, 'clean': 7.0, 'son': 2.0, 'gets': 1.0, 'who': 1.0, 'angry': 1.0, 'old': 1.0, 'metal': 1.0, 'them': 1.0, 'has': 3.0, 'right': 1.0, 'table': 1.0, 'using': 1.0, 'of': 2.0, 'the': 18.0, 'gunk': 1.0, 'into': 1.0, 'tend': 1.0, 'three': 2.0, 'makes': 1.0, 'keep': 2.0, 'us': 1.0, 'what': 1.0, 'sit': 1.0, 'so': 4.0, 'can': 3.0, 'or': 1.0, 'food': 1.0, 'but': 3.0, 'because': 1.0, 'problems': 1.0, 'that': 6.0, 'been': 1.0, 'strap': 1.0, 'difficult': 2.0, 'loves': 1.0, 'times': 1.0, 'you': 4.0, 've': 2.0, 'super': 4.0, 'we': 2.0, 's': 4.0, 'tray': 1.0, 'get': 3.0, 'months': 1.0, 'than': 1.0, 'way': 2.0, 'huge': 1.0, 'at': 1.0, 'is': 9.0, 'to': 12.0, 'as': 2.0, 'm': 1.0, 'in': 4.0, 'seat': 3.0, 'chair': 2.0, 'impossible': 5.0, 'child': 1.0, 'year': 1.0, 'with': 4.0, 'item': 1.0, 'how': 2.0, 'hooks': 1.0, 'it': 22.0, 'remove': 1.0, 'this': 4.0, 'knives': 1.0, 'he': 1.0, 'love': 2.0, 'fabric': 3.0, 'for': 1.0, 'short': 2.0, 'day': 1.0, 'and': 9.0, 'your': 1.0, 'idea': 1.0, 'probably': 1.0, 'system': 2.0, 'post': 1.0, 'me': 1.0, 'my': 3.0, '15': 1.0, 'two': 1.0, 'tiny': 1.0, 'a': 7.0, 'imagine': 1.0, 'do': 1.0, 'much': 2.0, 'dropped': 1.0, 'fabulous': 1.0, 'wiped': 1.0, 'on': 5.0, 'make': 2.0, 'even': 1.0, 'feed': 1.0, 'use': 1.0, 'wash': 4.0, 'are': 2.0, 'first': 1.0, 'now': 2.0, 'almost': 2.0, 'air': 1.0, 'figure': 1.0, 'himself': 1.0, 'very': 1.0, 'out': 2.0, 'buy': 1.0, 'ridiculous': 2.0, 't': 1.0, 'fairly': 2.0, 'however': 1.0, 'easy': 3.0, 'gentle': 1.0, 'cycle': 1.0, 'no': 2.0, 'let': 1.0, 'not': 3.0, 'itself': 1.0, 'dry': 1.0, 'regularly': 1.0, 'part': 1.0, 'i': 7.0, 'putting': 1.0, 'most': 1.0, 'back': 2.0, 'comes': 1.0, 'once': 1.0, 'these': 1.0}
Word element => {'work': 2.0, 'do': 1.0, 'me': 1.0, 'and': 2.0, 'table': 1.0, 'dining': 1.0, 'my': 4.0, 'of': 1.0, 'corner': 1.0, 'in': 1.0, 'hooked': 1.0, 'have': 1.0, 'while': 2.0, 'rotates': 1.0, 'can': 1.0, 'your': 2.0, 'i': 2.0, 'helps': 1.0, 'baby': 2.0, 'feeding': 1.0, 'child': 1.0, 'awesome': 1.0, 'for': 1.0, 'chair': 1.0, 'since': 1.0, 'is': 1.0, 'it': 4.0, 'with': 1.0, 'the': 2.0, 'are': 1.0, 'be': 1.0, 'to': 2.0, 'distract': 1.0, 'used': 1.0, 'play': 1.0, 'working': 1.0, 'kitchen': 1.0, 'you': 1.0}
Word element => {'often': 1.0, 'unsnap': 1.0, 'having': 1.0, 'looking': 1.0, 'nasty': 1.0, 'gets': 1.0, 'mush': 1.0, 'feeding': 1.0, 'currently': 1.0, 'going': 1.0, 'we': 5.0, 'a': 5.0, 'while': 1.0, 'product': 1.0, 'just': 1.0, 'worried': 1.0, 'food': 1.0, 'or': 1.0, 'towards': 2.0, 'in': 1.0, 'that': 5.0, 'been': 2.0, 'like': 1.0, 'which': 1.0, 'hold': 1.0, 'bounces': 1.0, 'tables': 2.0, 'both': 1.0, 'skeptical': 1.0, 'secured': 1.0, 'those': 1.0, 'me': 1.0, 'kind': 3.0, 'easy': 1.0, 'chair': 3.0, 'of': 8.0, 'the': 9.0, 'annoying': 1.0, 'heavy': 2.0, 'away': 1.0, 'tips': 1.0, 'and': 6.0, 'wash': 1.0, 'use': 1.0, 'crowd': 1.0, 'have': 4.0, 'love': 1.0, 'he': 3.0, 'few': 1.0, 'this': 1.0, 'table': 4.0, '30': 1.0, 'dont': 1.0, 'took': 1.0, 'restaurants': 1.0, 'can': 4.0, 'so': 4.0, 'needs': 2.0, 'to': 10.0, 'least': 2.0, 'all': 1.0, 'our': 1.0, 'was': 2.0, 'baby': 2.0, 'wipe': 1.0, 'i': 8.0, 'feet': 1.0, 'eat': 1.0, 'turn': 1.0, 'still': 1.0, 'if': 1.0, 'do': 2.0, 'certain': 1.0, 'is': 4.0, 'at': 2.0, 'any': 2.0, 'flimsy': 1.0, 'improvement': 1.0, 'different': 2.0, 'fabric': 2.0, 'clean': 1.0, 'with': 3.0, 'it': 11.0, 'already': 1.0, 'never': 1.0, 'some': 1.0, 'able': 1.0, 'on': 3.0, 'hook': 3.0, 'types': 1.0, 'think': 1.0, 'week': 1.0, 'kinds': 1.0, 'something': 1.0, 'be': 2.0, 'times': 1.0, '40': 1.0, 'aware': 1.0, 'watch': 1.0, 'material': 1.0, 'though': 3.0, 'down': 1.0, 'out': 1.0, 'nothing': 1.0, 'one': 1.0, 'thing': 1.0, 'had': 1.0, 'type': 1.0, 'are': 1.0}
Word element => {'clean': 1.0, 'is': 1.0, 'leaking': 1.0, 'any': 1.0, 'not': 1.0, 'will': 1.0, 'with': 1.0, 'this': 2.0, 'have': 2.0, 'and': 2.0, 'cups': 1.0, 'sippy': 1.0, 'up': 1.0, 'of': 1.0, 'has': 1.0, 'easy': 1.0, 'lot': 1.0, 'we': 1.0, 'long': 1.0, 'a': 1.0, 'tried': 1.0, 'notches': 1.0, 'the': 2.0, 'one': 2.0, 'yet': 1.0, 'to': 2.0, 'be': 1.0, 'very': 1.0, 'problems': 1.0, 'as': 2.0, 'best': 1.0, 'you': 2.0, 'proven': 1.0, 'line': 1.0}
Word element => {'nursed': 1.0, 'previously': 1.0, 'were': 1.0, 'that': 1.0, 'to': 1.0, 'and': 1.0, 'very': 1.0, 'sippy': 1.0, 'cup': 1.0, 'of': 1.0, 'wonderful': 1.0, 'a': 1.0, 'is': 1.0, 'hard': 1.0, 'this': 1.0, 'with': 1.0, 'find': 1.0, 'the': 2.0, 'naturalness': 1.0, 'satisfied': 1.0, 'in': 1.0, 'for': 1.0, 'i': 1.0, 'bottle': 1.0, 'am': 1.0, 'all': 2.0, 'babies': 1.0}
Word element => {'top': 1.0, 'cup': 1.0, 'sippy': 1.0, 'has': 1.0, 'that': 1.0, 'do': 1.0, 'using': 1.0, 'are': 1.0, 'we': 1.0, 'until': 1.0, 'wait': 1.0, 'use': 1.0, 'medium': 1.0, 'seems': 1.0, 'stars': 1.0, '3': 1.0, 'have': 2.0, 'i': 3.0, 'flow': 3.0, 'bottle': 1.0, 'claims': 1.0, 'because': 1.0, 'm': 1.0, 'this': 1.0, 'it': 3.0, 'rating': 1.0, 'a': 3.0, 'will': 1.0, 'but': 2.0, 'nipple': 1.0, 'more': 1.0, 'like': 2.0, 'fast': 2.0, 'now': 1.0, 'to': 3.0, 'was': 1.0, 'hoping': 1.0}
Word element => {'options': 1.0, 'cup': 1.0, 'sippy': 1.0, 'would': 1.0, 'is': 1.0, 'only': 1.0, 'this': 2.0, 'our': 1.0, 'terrible': 1.0, 'market': 1.0, 'and': 2.0, 'a': 1.0, 'drink': 1.0, 'feeding': 1.0, 'bottle': 3.0, 'too': 1.0, 'daughter': 1.0, 'when': 1.0, 'finding': 1.0, 'handle': 1.0, 'love': 2.0, 'switched': 1.0, 'one': 2.0, 'had': 1.0, 'to': 1.0, 'right': 1.0, 'we': 3.0, 'from': 2.0, 'time': 1.0, 'breast': 1.0, 'on': 1.0, 'the': 4.0, 'i': 2.0, 'tried': 1.0, 'just': 1.0, 'about': 1.0, 'every': 1.0}
Word element => {'daughter': 1.0, 'blue': 1.0, 'with': 2.0, 'wound': 1.0, 'pick': 1.0, 'couldn': 1.0, 'really': 1.0, 'thing': 1.0, 'pieces': 1.0, 'got': 1.0, 'my': 2.0, 'for': 3.0, 'train': 1.0, 'she': 1.0, 'month': 1.0, 'it': 5.0, 'color': 1.0, 'one': 1.0, 'bought': 1.0, 'be': 1.0, 'the': 5.0, 'nipple': 1.0, 'since': 1.0, 'at': 1.0, 'would': 1.0, 'rubber': 1.0, 'good': 1.0, 'thinking': 1.0, 'i': 4.0, 'doesn': 1.0, '8': 1.0, 'inside': 1.0, 'bottle': 1.0, '7': 1.0, 'like': 1.0, 'transitional': 1.0, 'sure': 1.0, 'annoyed': 1.0, 'more': 1.0, 'is': 1.0, 'm': 1.0, 'thick': 1.0, 'too': 1.0, 'and': 1.0, 'there': 1.0, 'of': 1.0, 't': 2.0, 'a': 4.0, 's': 3.0, 'ring': 1.0, 'on': 1.0, 'this': 1.0, 'pain': 1.0, 'that': 2.0, 'me': 1.0, 'not': 1.0, 'just': 1.0, 'what': 1.0, 'old': 1.0, 'makes': 1.0, 'all': 2.0, 'to': 1.0, 'up': 1.0, 'wash': 1.0}
Word element => {'found': 1.0, 'best': 1.0, 'the': 1.0, 'is': 1.0, 'am': 1.0, 'i': 3.0, 'problem': 1.0, 'recommended': 1.0, 'born': 1.0, '5': 1.0, 'new': 1.0, 'excellent': 1.0, 'too': 1.0, 'this': 2.0, 'other': 1.0, 'for': 2.0, 'using': 1.0, 'till': 1.0, 'product': 2.0, 'my': 1.0, 'highly': 1.0, 'years': 1.0, 'baby': 1.0, '1': 1.0, 'no': 1.0, 'now': 1.0, 'used': 1.0}
Word element => {'cramps': 1.0, 'stomach': 1.0, 'to': 1.0, 'product': 2.0, 'much': 1.0, 'useful': 1.0, 'recommended': 1.0, 'child': 1.0, 'i': 1.0, 'that': 1.0, 'so': 1.0, 'helped': 1.0, 'excellent': 1.0, 'my': 1.0, 'me': 1.0, 'and': 1.0, 'brother': 1.0, 'very': 1.0, 'this': 1.0, 'he': 1.0, 'your': 1.0, 'has': 1.0, 'been': 1.0, 'reduces': 1.0, 'for': 1.0}
Word element => {'would': 1.0, 'i': 1.0, 'preference': 1.0, 'design': 1.0, 'just': 1.0, 'not': 1.0, 'fault': 1.0, 'that': 1.0, 'a': 1.0, 'well': 1.0, 's': 3.0, 'worked': 1.0, 'gas': 1.0, 'brown': 2.0, 'much': 1.0, 'dr': 2.0, 'they': 1.0, 'nipples': 1.0, 't': 1.0, 'the': 3.0, 'really': 1.0, 'reducing': 1.0, 'my': 1.0, 'love': 1.0, 'for': 1.0, 'personal': 1.0, 'baby': 1.0, 'recommend': 1.0, 'bottles': 2.0, 'she': 1.0, 'but': 1.0, 'doesn': 1.0, 'like': 1.0, 'have': 1.0, 'wide': 1.0}
Word element => {'plastic': 1.0, 'chemical': 1.0, 'could': 1.0, 'to': 5.0, 'but': 1.0, 'perspective': 1.0, 'old': 1.0, 'makes': 2.0, 'month': 1.0, 'it': 2.0, 'milk': 1.0, 'and': 1.0, 'suck': 1.0, 'they': 1.0, 'much': 1.0, 'only': 1.0, 'also': 2.0, 'in': 1.0, 'almost': 1.0, 'air': 1.0, 'sucked': 1.0, 'my': 3.0, 'requires': 1.0, 'baby': 5.0, 'tired': 1.0, 'helps': 1.0, 'versus': 1.0, 'there': 1.0, 'asleep': 1.0, 'five': 1.0, 'given': 1.0, 'choose': 1.0, 'not': 1.0, 'if': 2.0, 'energy': 1.0, '1': 1.0, 'a': 2.0, 's': 1.0, 't': 1.0, 'can': 1.0, 'so': 2.0, 'd': 1.0, 'drinks': 2.0, 'afterward': 1.0, 'easier': 2.0, 'star': 1.0, 'be': 1.0, 'stays': 1.0, 'drink': 2.0, 'he': 2.0, 'bottle': 3.0, 'this': 3.0, 'was': 1.0, 'doesn': 1.0, 'reduce': 1.0, 'amount': 1.0, 'after': 1.0, 'with': 1.0, 'other': 1.0, 'gotten': 2.0, 'comparably': 1.0, 'traditional': 2.0, 'by': 2.0, 'bottles': 4.0, 'of': 1.0, 'the': 8.0, 'longer': 1.0, 'that': 1.0, 'because': 1.0, 'fall': 1.0, 'more': 2.0, 'from': 4.0, 'twice': 1.0, 'parent': 1.0, 'get': 1.0, 'drinking': 1.0, 'neck': 1.0, 'thus': 2.0, 'review': 1.0, 'whereas': 1.0, 'force': 1.0, 'less': 1.0, 'up': 1.0, 'takes': 1.0, 'as': 2.0, 'falls': 1.0, 'have': 1.0, 'fast': 2.0, 'i': 2.0, 'down': 1.0, 've': 1.0, 'born': 1.0, 'however': 1.0, 'free': 1.0, 'glass': 2.0, 'worried': 1.0, 'wide': 1.0, 'perform': 1.0, 'these': 1.0, 'always': 1.0, 'parents': 1.0}
Word element => {'prevention': 1.0, 'are': 1.0, 'these': 1.0, 'hopeful': 1.0, 'but': 1.0, 'if': 1.0, 'will': 1.0, 'exit': 1.0, 'gases': 1.0, 'early': 1.0, '4': 1.0, 'max': 1.0, 'his': 3.0, 'having': 1.0, 'so': 2.0, 'medela': 1.0, 'disposable': 1.0, 'nicu': 1.0, 'using': 2.0, 'similar': 1.0, 'and': 7.0, 'milk': 1.0, 'comment': 1.0, 'right': 1.0, 'thank': 1.0, 'works': 1.0, 'soon': 1.0, 'there': 2.0, 'some': 1.0, 'breastmilk': 1.0, 'two': 1.0, 'little': 1.0, 'ounces': 1.0, 'burps': 1.0, 'look': 1.0, 'is': 1.0, 'way': 1.0, 's': 3.0, 'bottles': 1.0, 'gas': 2.0, 'a': 1.0, 'i': 7.0, 'well': 1.0, 'seems': 1.0, 'spit': 1.0, 'only': 2.0, 'gassy': 2.0, 'find': 1.0, 'since': 1.0, 'expressed': 1.0, 'get': 2.0, 'him': 2.0, 'it': 2.0, 'bottom': 1.0, 'he': 8.0, 'screaming': 1.0, 'deal': 1.0, 'baby': 1.0, 'has': 2.0, 'them': 2.0, 'windi': 1.0, 'started': 1.0, 'my': 2.0, 'god': 1.0, 'nipple': 1.0, 'great': 1.0, 'the': 8.0, 'cranky': 1.0, 'bottle': 1.0, 'this': 1.0, 'eaten': 1.0, 'when': 1.0, 'day': 2.0, 'stop': 1.0, 'other': 1.0, 'sucking': 2.0, 'decided': 1.0, 'too': 1.0, 'one': 1.0, 'to': 5.0, 'as': 3.0, 'noises': 1.0, 'was': 5.0, 'problems': 1.0, 'that': 2.0, 've': 1.0, 'm': 1.0, 'in': 2.0, 'air': 1.0, 'getting': 1.0, 'older': 1.0, 'quick': 1.0, 'with': 1.0, 'from': 2.0, 'ordered': 1.0, 'real': 1.0, 'set': 1.0, 'shipping': 1.0, 'for': 2.0, 'been': 3.0, 'prime': 1.0, 'membership': 1.0, 'cleaned': 1.0, 'any': 1.0, 'according': 1.0, 'instructions': 1.0, 'use': 1.0, 'feeding': 2.0, 'update': 1.0, 'on': 2.0, 'noticed': 1.0, 'we': 1.0, 'then': 1.0, 'difference': 1.0, 'up': 2.0, 'relief': 1.0, 'less': 1.0, 'noise': 1.0, 'during': 1.0, 'afterward': 1.0, 'immediate': 1.0, 'let': 1.0, 'nothing': 1.0, 'out': 1.0, 'despite': 1.0}
Word element => {'colics': 1.0, 'prevent': 1.0, 'to': 1.0, 'your': 1.0, 'help': 1.0, 'baby': 2.0, 'set': 1.0, 'this': 2.0, 'have': 1.0, 'use': 1.0, 'a': 2.0, 'is': 2.0, 'excellent': 1.0, 'complete': 1.0, 'feeding': 1.0, 'kit': 2.0, 'are': 1.0, 'the': 1.0, 'and': 2.0, 'very': 1.0, 'bottles': 2.0, 'my': 1.0, 'portable': 1.0, 'product': 1.0, 'new': 1.0, 'system': 1.0, 'that': 1.0, 'vent': 1.0, 'their': 1.0}
Word element => {'instead': 1.0, 'nice': 2.0, 'which': 1.0, 'are': 1.0, 'leak': 1.0, 'bottles': 3.0, 'other': 1.0, 'in': 1.0, 'looked': 1.0, 'first': 1.0, 'taken': 1.0, 'it': 1.0, 'these': 1.0, 'the': 1.0, 'they': 2.0, 'comparison': 1.0, 'purchased': 1.0, 'use': 1.0, 'to': 4.0, 'was': 2.0, 'look': 1.0, 'received': 1.0, 'how': 1.0, 'huge': 1.0, 'not': 1.0, 'baby': 1.0, 'visually': 1.0, 'them': 1.0, 'at': 3.0, 'prefer': 1.0, 'really': 2.0, 'i': 5.0, 'fan': 1.0, 'aback': 1.0, 'seem': 1.0, 'a': 1.0, 's': 1.0, 'when': 1.0, 'times': 1.0, 'but': 2.0, 'can': 1.0, 'be': 1.0, 'very': 1.0, 'frustrating': 1.0, 'that': 1.0, 'natural': 1.0, 'm': 1.0, 'price': 1.0, 'about': 1.0, 'avent': 1.0, 'my': 1.0}
Word element => {'highly': 1.0, 'hassle': 1.0, 'well': 1.0, 'is': 1.0, 'it': 2.0, 'he': 1.0, 'sooner': 1.0, 'have': 2.0, 'tummy': 1.0, 'months': 1.0, 'spit': 1.0, 'we': 1.0, '3': 1.0, 'would': 1.0, 'recommend': 1.0, 'was': 2.0, 'my': 1.0, 'wish': 1.0, 'sucking': 1.0, 'wife': 1.0, 'and': 2.0, 'do': 1.0, 'them': 1.0, 'baby': 1.0, 'boy': 1.0, 'old': 1.0, 'i': 2.0, 'purchased': 1.0, 'to': 1.0, 'our': 1.0, 'parts': 1.0, 'these': 1.0, 'the': 3.0, 'worth': 1.0, 'bottles': 2.0, 'when': 1.0, 'less': 1.0, 'extra': 2.0, 'gotten': 1.0, 'definitely': 1.0, 'reduced': 1.0, 'which': 1.0, 'amount': 1.0, 'of': 1.0, 'up': 1.0, 'air': 1.0, 'in': 1.0, 'aches': 1.0, 'meant': 1.0, 'for': 1.0, 'be': 1.0, 'cleaned': 1.0, 'but': 1.0}
Word element => {'suit': 1.0, 'specify': 1.0, 'buy': 1.0, 'brand': 1.0, 'friend': 1.0, 'a': 1.0, 'help': 1.0}
Word element => {'by': 1.0, 'clean': 2.0, 'and': 1.0, 'leaked': 1.0, 'are': 1.0, 'these': 2.0, 'the': 1.0, 'working': 1.0, 'i': 2.0, 'love': 1.0, 'for': 1.0, 'brush': 1.0, 'more': 1.0, 'is': 2.0, 'breastfed': 1.0, 'little': 2.0, 'less': 1.0, 'haven': 1.0, 'easy': 1.0, 'them': 1.0, 'relatively': 1.0, 'recommend': 1.0, 'but': 2.0, 'my': 2.0, 'lo': 1.0, 'friends': 1.0, 'needs': 1.0, 'it': 3.0, 'when': 1.0, 'am': 1.0, 'you': 1.0, 't': 1.0, 'gas': 1.0, 's': 1.0, 'a': 1.0, 'pain': 1.0, 'because': 1.0, 'know': 1.0, 'have': 1.0, 'use': 1.0, 'bottles': 3.0, 'worth': 1.0, 'son': 1.0, 'to': 5.0, 'as': 2.0, 'well': 2.0, 'has': 1.0, 'would': 1.0, 'buy': 1.0, 'definitely': 1.0}
Word element => {'kits': 1.0, 'gas': 1.0, 'and': 3.0, 'perfectly': 1.0, 'max': 2.0, 'fill': 2.0, 'these': 2.0, 'the': 3.0, 'great': 2.0, 'amazing': 1.0, 'are': 1.0, 'issue': 1.0, 'overall': 1.0, 'air': 1.0, 'for': 1.0, 'one': 1.0, 'not': 1.0, 'past': 2.0, 'work': 1.0, 'will': 1.0, 'excepts': 1.0, 'son': 1.0, 'very': 1.0, 'with': 1.0, 'do': 2.0, 'only': 1.0, 'so': 1.0, 'burning': 1.0, 'is': 2.0, 'build': 1.0, 'limited': 1.0, 'if': 1.0, 'you': 2.0, 'any': 1.0, 'eliminating': 1.0, 'amount': 1.0, 'boil': 1.0, 'up': 1.0, 'over': 2.0, 'warmer': 1.0, 'out': 1.0, 'thing': 1.0, 'spilling': 1.0, 'while': 1.0, 'heating': 1.0, 'into': 1.0, 'bottles': 3.0, 'or': 1.0}
Word element => {'cleaned': 1.0, 'getting': 1.0, 'about': 1.0, 'confident': 1.0, 'difference': 1.0, 'me': 1.0, 'they': 2.0, 'these': 1.0, 'the': 2.0, 'more': 1.0, 'girls': 1.0, 'so': 1.0, 'a': 2.0, 'we': 1.0, 'feed': 1.0, 'when': 1.0, 'and': 2.0, 'too': 1.0, 'much': 1.0, 'made': 2.0, 'clean': 1.0, 'sanitize': 1.0, 'nooks': 1.0, 'tried': 1.0, 'i': 1.0, 'my': 1.0, 'would': 1.0, 'of': 1.0, 'crannies': 1.0, 'take': 1.0, 'brown': 1.0, 'air': 1.0, 'in': 1.0, 'also': 1.0, 'because': 1.0, 'dr': 1.0, 'pain': 1.0, 'all': 1.0, 'to': 1.0, 'but': 1.0, 'are': 1.0, 'helped': 1.0, 'bottles': 1.0, 'worth': 1.0, 'bags': 1.0, 'she': 1.0, 'it': 2.0, 'one': 1.0, 'huge': 1.0, 'bought': 1.0, 'microwave': 1.0, 'which': 1.0, 'twin': 1.0, 'feel': 1.0}
Word element => {'dishwasher': 1.0, 'well': 1.0, 'a': 1.0, 'have': 1.0, 'clean': 1.0, 'them': 1.0, 'works': 1.0, 'caddy': 1.0, 'used': 1.0, 'to': 2.0, 'now': 1.0, 'with': 1.0, 'wash': 1.0, 'spitting': 1.0, 'guy': 1.0, 'aren': 1.0, 'little': 1.0, 'few': 1.0, 'that': 2.0, 'our': 1.0, 'work': 2.0, 'bottles': 1.0, 'too': 1.0, 'gas': 1.0, 'much': 1.0, 'brown': 1.0, 'once': 1.0, 'dr': 1.0, 'more': 1.0, 't': 1.0, 'great': 1.0, 'the': 1.0, 'they': 2.0, 'has': 1.0, 'very': 1.0, 'up': 1.0, 'issues': 1.0, 'or': 1.0, 's': 1.0, 'you': 1.0, 'and': 2.0, 'get': 1.0}
Word element => {'clean': 1.0, 'time': 1.0, 's': 1.0, 'when': 1.0, 'pieces': 1.0, '34': 2.0, 'up': 1.0, 'spit': 1.0, 'babes': 1.0, 'the': 2.0, 'advantages': 1.0, 'is': 1.0, 'to': 2.0, 'brown': 1.0, 'worth': 1.0, 'still': 1.0, 'rarely': 1.0, 'bottles': 1.0, 'shorter': 1.0, 'eight': 1.0, 'dr': 1.0, 'oz': 1.0, 'like': 1.0, 'very': 1.0, 'it': 2.0, 'i': 1.0, 'convenient': 1.0, 'a': 1.0, 'their': 1.0, 'that': 1.0, 'holds': 1.0, 'have': 2.0, 'sizes': 1.0, 'all': 2.0, 'bottle': 1.0, 'particular': 1.0}
Word element => {'awesome': 1.0, 'are': 1.0, 'these': 1.0, 'according': 1.0, 'too': 1.0, 'those': 1.0, 'loved': 1.0, 'who': 1.0, 'i': 2.0, 'my': 1.0, 'ago': 1.0, 'a': 3.0, 'to': 1.0, 'had': 1.0, 'mine': 1.0, 'for': 1.0, 'of': 1.0, 'set': 1.0, 'loves': 1.0, 'bought': 1.0, 'baby': 2.0, 'friend': 1.0, 'few': 1.0, 'weeks': 1.0, 'and': 2.0, 'her': 1.0, 'used': 1.0, 'soothie': 1.0, 'she': 1.0, 'bottles': 2.0, 'this': 1.0, 'it': 1.0, 'with': 1.0}
Word element => {'bottles': 1.0, 'works': 1.0, 'it': 1.0, 'assuming': 1.0, 'space': 1.0, 'any': 1.0, 'as': 2.0, 'up': 1.0, 'normal': 1.0, 'same': 1.0, 'clean': 1.0, 's': 2.0, 'than': 1.0, 'the': 2.0, 'i': 1.0, 'bottle': 1.0, 'takes': 1.0, 'easier': 1.0, 'dr': 2.0, 'to': 1.0, 'brown': 2.0, 'however': 1.0}
Word element => {'liked': 1.0, 'son': 1.0, 'sized': 1.0, 'neck': 1.0, 'prefers': 1.0, 'daughter': 1.0, 'gas': 1.0, 'on': 1.0, 'down': 1.0, 'cut': 1.0, 'really': 1.0, 'and': 2.0, 'pieces': 1.0, '5': 1.0, 'bottles': 2.0, 'wide': 1.0, 'have': 1.0, 'ones': 2.0, 'the': 2.0, 't': 1.0, 'these': 3.0, 'they': 2.0, 'better': 1.0, 'if': 1.0, 'to': 1.0, 'don': 1.0, 'i': 1.0, 'or': 1.0, 'feed': 1.0, 'assemble': 1.0, 'original': 1.0, 'twins': 1.0, 'total': 1.0, 'not': 1.0, 'would': 1.0, 'care': 1.0, 'are': 1.0, 'my': 3.0, 'awesome': 1.0, 'with': 1.0, 'only': 1.0, 'successfully': 1.0}
Word element => {'to': 2.0, 'much': 1.0, 'i': 2.0, 'narrow': 2.0, 'cheaper': 1.0, 'necks': 1.0, 'are': 2.0, 'they': 1.0, 'free': 1.0, 'prefer': 1.0, 'wash': 1.0, 'harder': 1.0, 'so': 1.0, 'leak': 1.0, 'plus': 1.0, 'the': 4.0, 'ones': 2.0, 'these': 1.0, 'than': 1.0, 'compared': 1.0, 'which': 1.0, 'born': 1.0, 'wide': 1.0, 'have': 1.0, 'and': 1.0}
Word element => {'or': 1.0, 'has': 1.0, 'cleaning': 1.0, 'to': 2.0, 'an': 1.0, 'bottles': 1.0, 'who': 1.0, 'anyone': 1.0, '0': 1.0, 'would': 1.0, 'suggest': 1.0, 'doesnt': 1.0, 'hassle': 1.0, 'i': 1.0, 'these': 1.0, 'productm': 1.0, 'great': 1.0, 'a': 2.0, 'dissatisfied': 1.0, 'want': 1.0, 'baby': 2.0, '6': 1.0, 'difficult': 1.0, 'mos': 1.0, 'with': 1.0}
Word element => {'definitely': 1.0, 'would': 1.0, 'one': 1.0, 'recommend': 1.0, 'narrow': 1.0, 'better': 1.0, 'shapes': 1.0, 'of': 1.0, 'it': 1.0, 'he': 1.0, 'skinny': 1.0, 'in': 1.0, 'style': 1.0, 'like': 1.0, 'have': 1.0, 'loves': 1.0, 'fat': 1.0, 'i': 3.0, 'both': 1.0, 'does': 1.0, 'so': 1.0, 'my': 1.0, 'these': 1.0, 'nipple': 1.0, 'the': 2.0, 'son': 1.0, 'base': 1.0, 'terms': 1.0, 'compared': 1.0, 'to': 1.0}
Word element => {'great': 1.0, 'these': 1.0, 'first': 1.0, 'a': 1.0, 'as': 1.0, 'past': 1.0, 'i': 2.0, 'mom': 1.0, 'recent': 1.0, 've': 1.0, 'time': 1.0, 'with': 1.0, 'dr': 1.0, 'good': 1.0, 'browns': 1.0, 'am': 1.0, 'bottles': 1.0, 'had': 1.0, 'experience': 1.0, 'in': 1.0, 'are': 1.0, 'the': 1.0}
Word element => {'air': 1.0, 'at': 1.0, 'much': 1.0, 'is': 1.0, 'avent': 1.0, 'clean': 1.0, 'care': 1.0, 'product': 1.0, 'i': 1.0, 'because': 1.0, 'not': 1.0, 'to': 1.0, 'was': 2.0, 'one': 1.0, 'for': 1.0, 'and': 1.0, 'up': 1.0, 'that': 1.0, 'parts': 1.0, 'better': 1.0, 'did': 1.0, 'keep': 1.0, 'hard': 1.0, 'this': 1.0, 'it': 1.0, 'with': 1.0, 'all': 1.0, 'preventing': 1.0, 'phillips': 1.0, 'the': 2.0}
Word element => {'unhappy': 1.0, 'this': 1.0, 'consumers': 1.0, 'cheating': 1.0, 'be': 1.0, 'to': 1.0, 'out': 1.0, 'turned': 1.0, 'introduction': 1.0, 'is': 2.0, 'china': 1.0, 'written': 1.0, 'the': 2.0, 'found': 1.0, 'origin': 2.0, 'in': 1.0, 'states': 1.0, 'can': 1.0, 'united': 1.0, 'of': 2.0, 'receive': 1.0}
Word element => {'better': 1.0, 'have': 1.0, 'floor': 1.0, 'bought': 1.0, 'cups': 2.0, 'out': 1.0, 'cup': 4.0, 'flies': 2.0, 'high': 1.0, 'will': 1.0, 'i': 2.0, 'hits': 1.0, 'but': 1.0, 'height': 1.0, 'toddler': 1.0, 'these': 1.0, 'assembled': 1.0, 'the': 6.0, 'nipple': 1.0, 'dissapointed': 1.0, 'every': 1.0, 'purchased': 1.0, 'actually': 1.0, 'very': 1.0, 'properly': 1.0, 'from': 1.0, 'part': 1.0, 'both': 1.0, 'much': 1.0, 'works': 1.0, 'return': 1.0, 'a': 1.0, 'of': 1.0, 'spout': 2.0, 'and': 1.0, 'checked': 1.0, 'off': 1.0, 'it': 1.0, 'this': 1.0, 'with': 1.0, 'dropped': 1.0, 'chair': 1.0, 'time': 1.0, 'makes': 1.0, 'when': 2.0, 'happened': 1.0, 'that': 2.0, 'triple': 1.0, 'nuk': 1.0}
Word element => {'flaw': 1.0, 'production': 1.0, 'design': 1.0, 'handle': 2.0, 'for': 1.0, 'with': 1.0, 'this': 1.0, 'line': 1.0, 'purpose': 1.0, 'get': 1.0, 'spout': 2.0, 'of': 1.0, 'always': 1.0, 'indicated': 1.0, 'reviewers': 1.0, 'life': 1.0, 'by': 1.0, 'i': 3.0, 'other': 1.0, 'or': 1.0, 'cup': 2.0, 'returning': 1.0, 'dismantled': 1.0, 'me': 1.0, 'not': 1.0, 'the': 9.0, 'both': 1.0, 'numerous': 1.0, 'am': 1.0, 'times': 1.0, 'rate': 1.0, 'hold': 1.0, 'no': 1.0, 'at': 1.0, 'so': 1.0, 'baby': 1.0, 'cups': 1.0, 'to': 4.0, 'as': 1.0, 'center': 1.0, 'any': 1.0, 'would': 1.0, 'must': 1.0, 'have': 1.0, 'up': 2.0, 'over': 1.0, 'sideways': 1.0, 'be': 1.0, 'drink': 1.0, 'totally': 1.0, 'defeats': 1.0, 'lined': 1.0, 'could': 1.0, 'avail': 1.0, 'a': 1.0}
Word element => {'always': 1.0, 'issue': 1.0, 'in': 1.0, 'wonderful': 1.0, 'amazon': 1.0, 'but': 1.0, 'one': 1.0, 'received': 1.0, 'size': 1.0, 'loved': 1.0, 'and': 2.0, 'years': 1.0, 'had': 1.0, 'was': 2.0, 'first': 1.0, 'looked': 1.0, 'with': 2.0, 'it': 1.0, 'when': 2.0, 'as': 1.0, 'to': 2.0, 'cups': 1.0, 'these': 1.0, 'the': 4.0, '9': 1.0, 'were': 2.0, 'that': 1.0, 'although': 1.0, 'due': 1.0, 'only': 1.0, 'pack': 1.0, 'my': 1.0, 'cup': 1.0, 'helping': 1.0, 'baby': 2.0, 'them': 4.0, 'styles': 1.0, 'around': 1.0, 'here': 1.0, 'up': 1.0, '3': 1.0, 'of': 2.0, 'spout': 1.0, 'handles': 1.0, 'so': 1.0, 'time': 1.0, 'for': 1.0, 'using': 1.0, 'start': 1.0, 'ago': 1.0, 'a': 1.0, 'glad': 1.0, 'soft': 1.0, 'found': 1.0, 'ordered': 1.0, 'i': 6.0, 'two': 1.0}
Word element => {'product': 1.0, 'recommend': 1.0, 'definitely': 1.0, 'overall': 1.0, 'way': 1.0, 'twist': 1.0, 'about': 1.0, 'but': 1.0, 'put': 1.0, 'spout': 1.0, 'take': 1.0, 'cover': 1.0, 'how': 1.0, 'rubbery': 1.0, 'this': 2.0, 'first': 1.0, 'i': 3.0, 'uses': 1.0, 'it': 2.0, 'she': 1.0, 'now': 1.0, 'all': 1.0, 'to': 1.0, 'is': 2.0, 'still': 1.0, 'forget': 1.0, 'cup': 1.0, 'line': 1.0, 'daughter': 1.0, 'the': 6.0, 'nipple': 1.0, 'sippy': 1.0, 'softer': 1.0, 'in': 1.0, 'like': 2.0, 'and': 2.0, 'lining': 1.0, 'super': 1.0, 'would': 2.0, 'not': 2.0, 'flexible': 1.0, 't': 1.0, 'a': 1.0, 'well': 2.0, 'bottle': 1.0, 'up': 2.0, 'wash': 1.0, 'don': 1.0, 'leak': 1.0, 'when': 1.0, 'unless': 1.0, 'you': 2.0, 'these': 1.0, 'valve': 1.0, 'my': 1.0, 'lid': 2.0, 'mine': 1.0, 'saw': 1.0, 'other': 1.0, 'reviews': 1.0}
Word element => {'spout': 1.0, 'handles': 1.0, 'up': 1.0, 'line': 1.0, 'don': 1.0, 'tip': 1.0, 'spill': 1.0, 'not': 2.0, 'hold': 1.0, 'have': 1.0, 't': 1.0, 'this': 1.0, 'sippy': 1.0, 'cup': 1.0, 'of': 1.0, 'is': 1.0, 'the': 3.0, 'does': 2.0, 'one': 2.0, 'better': 1.0, 'easy': 2.0, 'to': 3.0, 'clean': 1.0}
Word element => {'for': 1.0, 'hand': 1.0, 'above': 1.0, 'these': 1.0, 'without': 1.0, 'the': 5.0, 'think': 1.0, 'your': 1.0, 'on': 1.0, 'decided': 1.0, 'and': 2.0, '7': 1.0, 'looking': 1.0, 'look': 1.0, 'right': 1.0, 'ends': 1.0, 'after': 1.0, 'they': 1.0, 'between': 1.0, 'baby': 1.0, 'sippy': 1.0, 'i': 2.0, 'two': 1.0, 'might': 1.0, 'we': 1.0, 's': 1.0, 'going': 1.0, 'a': 3.0, 'lot': 1.0, 'store': 1.0, 'aisle': 1.0, 'daughter': 1.0, 'line': 1.0, 'spout': 2.0, 'of': 1.0, 'evenly': 1.0, 'cup': 3.0, 'trainer': 1.0, 'my': 1.0, 'are': 1.0, 'back': 1.0, 'cups': 1.0, 'to': 2.0, 'month': 1.0, 'it': 1.0, 'with': 1.0, 'around': 1.0, 'is': 2.0, 'there': 1.0, 'impossible': 1.0, 'handles': 3.0, 'little': 1.0, 'old': 1.0, 'point': 1.0, 'in': 1.0, 'having': 1.0, 'if': 1.0, 'up': 2.0, 'sideways': 1.0}
Word element => {'other': 1.0, 'prefer': 1.0, 'became': 1.0, 'things': 1.0, 'have': 1.0, 'one': 1.0, 'gerber': 1.0, 'cup': 1.0, 'its': 1.0, 'only': 1.0, 'but': 1.0, 'can': 1.0, 'twist': 1.0, 'just': 1.0, 're': 1.0, 'idea': 1.0, 'you': 2.0, 'handles': 4.0, 'with': 2.0, 'spill': 1.0, 'these': 2.0, 'the': 11.0, 'lot': 1.0, 'don': 1.0, 'no': 1.0, 'about': 1.0, 'them': 3.0, 'and': 2.0, 'get': 1.0, 'did': 1.0, 'favorite': 1.0, 'irritating': 1.0, 'really': 1.0, 'is': 1.0, 'thats': 1.0, 'my': 2.0, 'lid': 2.0, 'between': 1.0, 'they': 2.0, 'well': 1.0, 'mouthpiece': 1.0, 'thinking': 1.0, 'i': 5.0, 'ones': 1.0, 'aligned': 1.0, 'liked': 1.0, 'are': 1.0, 'centered': 1.0, 'how': 1.0, 'dislike': 1.0, 'extremely': 1.0, 'part': 1.0, 'while': 1.0, 'son': 1.0, 'difficult': 1.0, 'mis': 1.0, 'cups': 2.0, 'to': 2.0, 'attached': 1.0, 'now': 1.0, 'take': 1.0, 'apart': 1.0, 've': 1.0, 'using': 1.0, 'cannot': 1.0, 'go': 1.0, 't': 2.0, 'a': 2.0, 'we': 1.0, 'that': 3.0, 'been': 1.0, 'on': 2.0, 'right': 1.0, 'way': 2.0, 'so': 1.0}
Word element => {'suck': 1.0, 'too': 1.0, 's': 1.0, 'if': 1.0, 'through': 2.0, 'me': 1.0, 'get': 1.0, 'go': 1.0, 'than': 1.0, 'sucking': 1.0, 'even': 1.0, 'liquid': 2.0, 'amount': 1.0, 'because': 1.0, 'required': 1.0, 'chewable': 1.0, 'hard': 1.0, 'greater': 1.0, 'it': 3.0, 'with': 1.0, 'any': 2.0, 'baby': 1.0, 'cup': 1.0, 'of': 2.0, 'little': 1.0, 'three': 1.0, 'holes': 1.0, 'the': 9.0, 'alot': 1.0, 'provide': 1.0, 'could': 1.0, 'like': 1.0, 'i': 3.0, 'spout': 2.0, 'easy': 1.0, 'inside': 1.0, 'for': 2.0, 'has': 1.0, 'valve': 2.0, 'was': 1.0, 'had': 1.0, 'to': 5.0, 'hold': 1.0, 'so': 1.0, 'however': 1.0, 'on': 2.0, 'remove': 1.0}
Word element => {'cups': 1.0, 'from': 1.0, 'bottle': 1.0, 'switching': 1.0, 'when': 1.0, 'easy': 1.0, 'just': 1.0, 'what': 1.0, 'we': 1.0, 'address': 1.0, 'needed': 1.0, 'apo': 1.0, 'for': 2.0, 'son': 1.0, 'my': 1.0, 'and': 1.0, 'handle': 1.0, 'arrived': 1.0, 'sippy': 1.0, 'quickly': 1.0, 'to': 2.0, 'an': 1.0}
Word element => {'his': 1.0, 'so': 1.0, '10': 1.0, 'around': 1.0, 'happy': 1.0, 'cup': 1.0, 'at': 1.0, 'sippy': 1.0, 'transition': 1.0, 'also': 1.0, 'money': 1.0, 'able': 1.0, 'formula': 1.0, 's': 1.0, 'were': 1.0, 'our': 2.0, 'better': 1.0, 'rice': 2.0, 'cereal': 1.0, 'was': 1.0, 'to': 4.0, 'had': 1.0, 'for': 1.0, 'we': 2.0, 'very': 1.0, 'from': 1.0, 'son': 2.0, 'worked': 1.0, 'of': 1.0, 'than': 1.0, 'nicely': 1.0, 'these': 2.0, 'the': 1.0, 'made': 1.0, 'doctors': 1.0, 'specialty': 1.0, 'saved': 1.0, 'add': 1.0, 'bottles': 2.0, 'a': 2.0, 'months': 1.0, 'ton': 1.0}
Word element => {'for': 1.0, 'it': 1.0, 'off': 1.0, 'rub': 1.0, 'after': 2.0, 'not': 1.0, 'started': 1.0, 'purely': 1.0, 'having': 1.0, 'playtex': 1.0, 'us': 1.0, 'by': 1.0, 'daughter': 1.0, 'bottles': 2.0, 'our': 2.0, 'the': 2.0, 'these': 1.0, 'worth': 1.0, 'nipples': 1.0, 'bought': 1.0, 'we': 1.0, 'comfi': 1.0, 'crack': 1.0, 'week': 1.0, 'hated': 1.0, 'designs': 1.0, 'to': 1.0, 'and': 2.0, 'a': 1.0, 'measurements': 1.0}
Word element => {'ordered': 1.0, 'wish': 1.0, 'is': 1.0, 'several': 1.0, 'noise': 1.0, 'chance': 1.0, 'given': 1.0, 'discontinued': 1.0, 'have': 2.0, 'item': 1.0, 'seem': 1.0, 'awesome': 1.0, 'that': 1.0, 'so': 1.0, 'while': 1.0, 'am': 1.0, 'had': 2.0, 'bleh': 1.0, 'to': 2.0, 'sorry': 1.0, 'i': 5.0, 'makes': 1.0, 'they': 1.0, 'has': 1.0, 'favorite': 1.0, 'of': 2.0, 'both': 1.0, 'been': 1.0, 'little': 2.0, 'funny': 1.0, 'a': 1.0, 'this': 1.0, 'it': 3.0, 'with': 1.0, 'these': 1.0, 'more': 1.0, 'the': 3.0, 'ones': 1.0}
Word element => {'car': 1.0, 'monster': 1.0, 'little': 1.0, 'far': 1.0, 'so': 1.0, 'price': 1.0, 'yet': 1.0, 'makes': 1.0, 'now': 2.0, 'chewing': 1.0, 'started': 1.0, 'no': 1.0, 'belly': 1.0, 'reaction': 1.0, 'white': 1.0, 'black': 1.0, 'at': 1.0, 'stare': 1.0, 'also': 1.0, 'will': 1.0, 'like': 1.0, 'i': 4.0, 'here': 1.0, 'got': 2.0, 'girls': 1.0, 'husband': 1.0, 'awhile': 1.0, 'went': 1.0, 'my': 2.0, 'are': 1.0, 'push': 1.0, 'with': 1.0, 'this': 2.0, 'it': 8.0, 'received': 1.0, 'noise': 1.0, '5': 1.0, 'enjoyed': 2.0, 'before': 1.0, 't': 1.0, 's': 2.0, 'we': 3.0, 'a': 2.0, 'twin': 1.0, 'gift': 1.0, 'seat': 1.0, 'our': 1.0, 'to': 3.0, 'as': 1.0, 'pattern': 1.0, 'and': 2.0, 'not': 1.0, 'me': 1.0, 'do': 1.0, 'favorite': 1.0, 'everytime': 1.0, 'for': 2.0, 'shut': 1.0, 'than': 1.0, 'something': 1.0, 'would': 2.0, 'myself': 1.0, 'playing': 1.0, 'the': 6.0, 'is': 1.0, 'say': 1.0, 'more': 1.0, 'blah': 1.0, 'right': 1.0, 'button': 1.0, 'don': 1.0, 'up': 1.0, 'of': 1.0, 'on': 3.0, 'think': 2.0, 'have': 4.0, 'babies': 1.0, 'bought': 1.0, 'months': 1.0, 'entertainment': 1.0, 'out': 1.0, 'but': 3.0, 'really': 2.0, 'they': 5.0}
Word element => {'yet': 1.0, 'have': 1.0, 'thing': 1.0, 'the': 1.0, 'i': 1.0, 'old': 1.0, 'bought': 1.0, 'be': 1.0, 'right': 1.0, 'could': 1.0, 'loves': 1.0, 'month': 1.0, 'him': 2.0, 'he': 1.0, 'this': 2.0, 'it': 1.0, '4': 1.0, 'toy': 2.0, 'baby': 1.0, 'will': 1.0, 'my': 1.0, 'uncontrollably': 1.0, 'make': 1.0, 'giggle': 1.0, 'best': 1.0, 'crying': 1.0, 'always': 1.0, 'and': 1.0, 'away': 1.0, 'is': 1.0}
Word element => {'really': 1.0, 'use': 1.0, 'match': 1.0, 'much': 1.0, 'its': 1.0, 'hamper': 1.0, 'valance': 1.0, 'that': 1.0, '3': 1.0, 'valances': 2.0, 'window': 2.0, 'sew': 1.0, 'came': 1.0, 'okay': 1.0, 'didn': 1.0, 'cute': 2.0, 'look': 1.0, 'are': 1.0, 'and': 4.0, 'shade': 1.0, 'will': 2.0, 'also': 1.0, 'all': 1.0, 'to': 3.0, 'was': 1.0, 'matches': 2.0, 'would': 1.0, 'both': 1.0, 'price': 3.0, 'get': 1.0, 'fisher': 2.0, 'set': 3.0, 'love': 2.0, 'for': 4.0, 'it': 10.0, 'this': 2.0, 'over': 1.0, 'anyway': 1.0, 'cheaper': 1.0, 'lot': 1.0, 'two': 2.0, 'i': 10.0, 'by': 1.0, 'lamp': 1.0, 'having': 1.0, 'than': 1.0, 'because': 1.0, 'the': 10.0, 'around': 1.0, 'is': 4.0, 'more': 1.0, 'big': 1.0, 'border': 1.0, 'nice': 2.0, 'like': 1.0, 'which': 1.0, 'collection': 1.0, 'plus': 1.0, 'brighter': 1.0, 'am': 2.0, 'when': 1.0, 'you': 2.0, 'see': 2.0, 'going': 1.0, 'notice': 1.0, 't': 1.0, 'bedding': 1.0, 's': 2.0, 'a': 7.0, 'not': 1.0, 'me': 1.0, 'very': 1.0, 'little': 1.0, 'textures': 1.0, 'money': 1.0, 'but': 3.0, 'worth': 1.0, 'with': 2.0, 'zen': 1.0, 'pink': 2.0, 'mobile': 1.0, 'one': 1.0, 'bought': 4.0, 'color': 1.0, 'in': 1.0, 'extra': 1.0, 'person': 1.0, 'boy': 1.0, 'so': 5.0, 'dark': 1.0, 'fabric': 1.0, 'good': 2.0, 'girl': 2.0}
Word element => {'pretty': 1.0, 'life': 1.0, 'real': 1.0, 'pink': 1.0, 'a': 1.0, 'looks': 1.0, 'about': 1.0, 'red': 1.0, 'nice': 1.0, 'like': 1.0, 'very': 2.0, 'only': 1.0, 'in': 1.0, 'caution': 1.0, 'set': 1.0, 'thing': 1.0, 'more': 1.0, 'the': 2.0, 'is': 1.0, 'still': 1.0, 'to': 1.0, 'dark': 2.0}
Word element => {'thanksi': 2.0, 'i': 1.0, 'about': 3.0, 'these': 3.0, 'thanks': 1.0, 'request': 3.0, 'not': 3.0, 'received': 3.0, 'information': 3.0, 'items': 3.0, 'need': 3.0, 'have': 3.0, 'this': 3.0}
Word element => {'s': 1.0, 'bathing': 1.0, 'when': 1.0, 'fun': 1.0, 'and': 1.0, 'my': 1.0, 'more': 2.0, 'daughter': 1.0, 'cute': 1.0, 'likes': 1.0, 'it': 1.0, 'absolutely': 1.0, 'love': 1.0, 'those': 1.0, 'ducks': 1.0, 'time': 1.0, 'having': 1.0, 'bath': 1.0, 'she': 1.0}
Word element => {'them': 1.0, 'if': 1.0, 'springing': 1.0, 'their': 1.0, 'much': 1.0, 'temperature': 1.0, 'you': 1.0, 'easily': 1.0, 'lose': 1.0, 'also': 1.0, 'printed': 1.0, 'through': 1.0, 'see': 1.0, 're': 1.0, 'they': 3.0, 'just': 1.0, 'that': 1.0, 'free': 1.0, 'bpa': 1.0, 'of': 1.0, 'favor': 1.0, 'are': 4.0, 'old': 1.0, 'i': 3.0, 'buy': 1.0, 'different': 1.0, 'her': 1.0, 'phasing': 1.0, 'out': 1.0, 'photography': 1.0, 'ordered': 1.0, 'daughter': 1.0, 'these': 3.0, 'the': 9.0, 'ones': 1.0, 'we': 3.0, 'design': 1.0, 'in': 2.0, 'would': 1.0, 'munchkin': 2.0, 've': 1.0, 'counterparts': 1.0, 'cheap': 1.0, 'where': 1.0, 'for': 2.0, 'consequently': 2.0, 'dora': 1.0, 'not': 1.0, 'gradually': 1.0, 'look': 2.0, 'my': 1.0, 'at': 2.0, 'recommend': 1.0, 'was': 1.0, 'store': 2.0, 'nope': 1.0, 'insulated': 4.0, 'thought': 1.0, 'purchased': 1.0, 'and': 3.0, 'except': 1.0, 'playtex': 1.0, 'on': 1.0, 'cups': 7.0, 'outside': 1.0, 'more': 1.0, 'is': 2.0, 'opaque': 1.0, 'picture': 1.0, 'shorter': 1.0, 'find': 1.0, 'maybe': 1.0, 'because': 1.0, 'than': 2.0, 'can': 1.0, 'but': 1.0, 'it': 1.0}
Word element => {'to': 1.0, 'images': 1.0, 'switch': 1.0, 'different': 1.0, 'time': 2.0, 'with': 1.0, 'my': 1.0, 'baby': 1.0, 'loves': 1.0, 'it': 2.0, 'i': 2.0, 'sides': 2.0, 'looking': 1.0, 'at': 1.0, 'like': 1.0, 'that': 1.0, 'has': 1.0, 'two': 1.0}
Word element => {'travel': 1.0, 'easy': 2.0, 'entertaining': 1.0, 'is': 1.0, 'panel': 1.0, 'highly': 1.0, 'an': 1.0, 'enjoys': 1.0, 'in': 1.0, 'bold': 1.0, 'instantly': 1.0, 'entertained': 1.0, 'this': 3.0, 'he': 2.0, 'took': 1.0, 'i': 2.0, 'old': 2.0, 'still': 1.0, 'son': 1.0, 'at': 1.0, 'gift': 1.0, 'black': 1.0, 'ferguson': 1.0, 'soon': 1.0, 'and': 3.0, 'after': 1.0, 'as': 5.0, 'to': 4.0, 'recommend': 1.0, 'was': 1.0, 'now': 1.0, 'receiving': 1.0, 'my': 1.0, 'the': 3.0, 'with': 1.0, 'red': 1.0, 'wimmer': 1.0, 'infant': 1.0, 'it': 4.0, 'month': 1.0, 'stim': 1.0, 'his': 1.0, 'alternative': 1.0, 'even': 1.0, 'crib': 1.0, 'white': 1.0, 'prints': 1.0, 'we': 1.0, 'a': 2.0, 's': 1.0, 'are': 1.0, 'by': 1.0, 'just': 1.0, 'wash': 1.0, 'over': 1.0, 'bought': 1.0, 'mobile': 2.0, 'months': 1.0, 'put': 1.0, '3': 1.0}
Word element => {'fast': 1.0, 'incredibly': 1.0, 'arrived': 1.0, 'do': 1.0, 'after': 1.0, 'specifically': 1.0, 'order': 1.0, 'being': 1.0, 'same': 1.0, 'want': 1.0, 'if': 2.0, 'again': 1.0, 'you': 6.0, 'showed': 1.0, 'the': 12.0, 'request': 1.0, 'ones': 1.0, 'photo': 3.0, 'lives': 1.0, 'ordering': 1.0, 'their': 1.0, 'that': 6.0, 'good': 1.0, 'specific': 1.0, 'fireman': 1.0, 'people': 1.0, 'represent': 1.0, 'are': 3.0, 'policeman': 1.0, 'i': 9.0, 'beware': 1.0, 'use': 1.0, 'instead': 1.0, 'got': 1.0, 'm': 1.0, 'therapist': 1.0, 'said': 1.0, 'in': 3.0, 'a': 1.0, 'see': 2.0, 'and': 4.0, 'probably': 1.0, 'sure': 1.0, 'get': 1.0, 'which': 1.0, 'children': 1.0, 'for': 1.0, 'to': 2.0, 'ducks': 5.0, 'still': 1.0, 'above': 1.0, 'will': 3.0, 'can': 1.0, 'but': 2.0, 'work': 1.0, 'recieved': 1.0, 'keep': 1.0, 'three': 2.0, 'sports': 1.0, 'coach': 1.0, 'figures': 1.0, 'not': 1.0, 'quality': 1.0, 'them': 1.0, 'may': 2.0, 'make': 1.0, 'think': 1.0}
Word element => {'coach': 1.0, 'have': 1.0, 'would': 1.0, 'consumer': 1.0, 'a': 1.0, 'doctor': 1.0, 'i': 2.0, 'we': 1.0, 'wish': 1.0, 'had': 1.0, 'officer': 1.0, 'pick': 1.0, 'characters': 1.0, 'police': 1.0, 'the': 2.0, 'choice': 1.0, 'liked': 1.0, 'mentioned': 1.0, 'to': 1.0, 'and': 1.0, 'like': 1.0, 'only': 1.0, 'up': 1.0}
Word element => {'addition': 1.0, 'along': 1.0, 'blanket': 1.0, 'tipsy': 1.0, 'little': 1.0, 'will': 1.0, 're': 1.0, 'you': 1.0, 'if': 1.0, 'that': 2.0, 'a': 3.0, 't': 2.0, 'of': 1.0, 'baby': 1.0, 'them': 1.0, 'out': 1.0, 'more': 1.0, 'is': 3.0, 'be': 1.0, 'part': 1.0, 'thought': 1.0, 'what': 1.0, 'sufficient': 1.0, 'her': 1.0, 'would': 3.0, 'overall': 2.0, 'cart': 1.0, 'recommend': 2.0, 'doesn': 1.0, 'thick': 1.0, 'really': 1.0, 'every': 1.0, 'bringing': 1.0, 'isn': 1.0, 'fluffy': 1.0, 'and': 1.0, 'the': 2.0, 'reach': 1.0, 'my': 1.0, 'daughter': 1.0, 'but': 2.0, 'can': 1.0, 'using': 1.0, 'like': 1.0, 'which': 1.0, 'toys': 1.0, 'wanted': 1.0, 'as': 2.0, 'to': 1.0, 'covers': 1.0, 'it': 7.0, 'she': 1.0, 'still': 1.0, 'seem': 1.0, 'interested': 1.0, 'in': 2.0, 'i': 6.0, 'two': 1.0, 'so': 1.0, 'switched': 1.0, 'keep': 1.0, 'entertained': 1.0}
Word element => {'colors': 1.0, 'came': 1.0, 'just': 1.0, 'floor': 1.0, 'off': 1.0, 'them': 1.0, 'pick': 1.0, 'in': 1.0, 'having': 1.0, 'they': 1.0, 'time': 1.0, 'catcher': 1.0, 'as': 1.0, 'catching': 1.0, 'bibs': 1.0, 'her': 1.0, 'for': 1.0, 'waterproof': 1.0, 'is': 1.0, 'food': 1.0, 'are': 1.0, 'my': 1.0, 'misses': 1.0, 'great': 2.0, 'the': 3.0, 'lightweight': 1.0, 'these': 1.0, 'to': 2.0, 'puffs': 1.0, 'daughter': 1.0, 'when': 1.0, 'wish': 1.0, 'mouth': 1.0, 'reach': 1.0, 'energy': 1.0, 'and': 1.0, 'me': 1.0, 'other': 1.0, 'saves': 1.0, 'well': 1.0, 'alot': 1.0, 'up': 1.0, 'of': 1.0}
Word element => {'touching': 1.0, 'your': 1.0, 'could': 3.0, 'a': 7.0, 't': 2.0, 'heat': 1.0, 'going': 1.0, 'by': 1.0, 'and': 5.0, 'frequently': 1.0, 'them': 1.0, 'baby': 2.0, 'body': 1.0, 'which': 1.0, 'wash': 1.0, 'time': 1.0, 'another': 1.0, 'nursing': 1.0, 'would': 1.0, 'much': 2.0, 'consignment': 1.0, 'purchase': 1.0, 'only': 1.0, 'thinking': 1.0, 'i': 6.0, 'stuff': 1.0, 'was': 1.0, 'to': 3.0, 'disturbed': 1.0, 'waist': 1.0, 'washed': 1.0, 'friend': 1.0, 'buy': 1.0, 'for': 2.0, 'one': 3.0, 'bought': 1.0, 'sale': 1.0, 'have': 1.0, 'it': 4.0, 'be': 4.0, 'else': 1.0, 'were': 1.0, 'bodies': 1.0, 'soaking': 1.0, 'into': 1.0, 'realize': 1.0, 'didn': 1.0, 'ordered': 1.0, 'worn': 1.0, 'how': 2.0, 'of': 1.0, 'the': 5.0, 'foam': 1.0, 'so': 2.0, 'can': 1.0, 'but': 1.0, 'disovered': 1.0, 'this': 2.0, 'pillow': 3.0, 'right': 2.0, 'woman': 1.0, 'away': 1.0, 'seems': 1.0, 's': 2.0, 'cleaner': 1.0, 'am': 1.0, 'brest': 1.0, 'you': 2.0, 'feels': 1.0, 'little': 1.0, 'around': 1.0, 'at': 1.0, 'is': 1.0, 'than': 1.0, 'that': 4.0, 'because': 1.0, 'does': 1.0, 'other': 3.0, 'keep': 1.0, 'did': 1.0, 'messy': 1.0, 'somebody': 1.0, 'in': 3.0, 'my': 5.0, 'me': 1.0, 'not': 1.0, 'or': 1.0, 'concerns': 1.0, 'slipcover': 1.0, 'are': 2.0, 'fluids': 1.0, 'pocket': 1.0, 'bigger': 1.0, 'tighter': 1.0, 'if': 1.0, 'where': 1.0, 're': 1.0, 'cover': 1.0, 'had': 3.0, 'warm': 1.0, 'room': 1.0, 'intensify': 1.0}
Word element => {'money': 1.0, 'that': 1.0, 'upset': 1.0, 'm': 1.0, 'buckle': 1.0, 'out': 1.0, 'all': 1.0, 'spent': 1.0, 'let': 1.0, 'strap': 1.0, 'professional': 1.0, 'expensive': 1.0, 'even': 2.0, 'my': 1.0, 'and': 3.0, 'pillow': 2.0, 'is': 1.0, 'on': 2.0, 'of': 1.0, 'has': 1.0, 'sturdy': 1.0, 'then': 1.0, 'fit': 2.0, 'around': 1.0, 'way': 1.0, 'concept': 1.0, 'still': 1.0, 'cleaned': 1.0, 't': 1.0, 'more': 1.0, 'the': 4.0, 'love': 1.0, 'wouldn': 1.0, 'with': 1.0, 'this': 1.0, 'it': 5.0, 'waist': 1.0, 'tried': 1.0, 'i': 4.0, 'an': 1.0, 'easily': 1.0, 'cover': 1.0, 'would': 2.0, 'not': 2.0}
Word element => {'love': 1.0, 'done': 1.0, 'when': 1.0, 'just': 1.0, 'no': 1.0, 'pattern': 1.0, 'or': 1.0, 'can': 1.0, 'you': 1.0, 'so': 1.0, 'over': 2.0, 'make': 1.0, 'fit': 1.0, 'of': 2.0, 'best': 1.0, 'came': 1.0, 'all': 1.0, 'easy': 2.0, 'deluxe': 1.0, 'use': 2.0, 'but': 1.0, 'to': 2.0, 'product': 1.0, 'be': 1.0, 'covers': 2.0, 'clean': 2.0, 'color': 1.0, 'choice': 1.0, 'that': 1.0, 'their': 1.0, 'any': 1.0, 'colors': 1.0, 'adjustment': 1.0, 'the': 3.0, 'great': 1.0, 'it': 6.0, 'putting': 1.0, 'products': 1.0, 'would': 1.0, 'nice': 1.0, 'problem': 1.0, 'pretty': 1.0, 'if': 1.0, 'in': 1.0, 'well': 1.0, 'a': 1.0}
Word element => {'supports': 1.0, 'belts': 1.0, 'like': 1.0, 'up': 1.0, 'boppy': 2.0, 'than': 1.0, 'better': 1.0, 'waaaay': 1.0, 'do': 1.0, 'members': 1.0, 'other': 2.0, 'parents': 1.0, 'mother': 1.0, 'limit': 1.0, 'just': 2.0, 'or': 3.0, 'is': 3.0, 'off': 1.0, 'limited': 1.0, 'baby': 2.0, 'helps': 1.0, 'that': 2.0, 'feed': 2.0, 'this': 2.0, 'with': 1.0, 'caregivers': 1.0, 'it': 4.0, 'still': 1.0, 'however': 1.0, 'thumbs': 1.0, 'bottle': 1.0, 'feeding': 5.0, 'i': 5.0, 'love': 2.0, 'for': 3.0, 'pillow': 1.0, 'friend': 1.0, 'laws': 1.0, 'was': 1.0, 'unfortunately': 1.0, 'in': 2.0, 'any': 1.0, 'our': 1.0, 'to': 2.0, 'as': 2.0, 'use': 2.0, 'breast': 3.0, 'both': 1.0, 'and': 4.0, 'formula': 2.0, 'market': 1.0, 'supporting': 1.0, 'on': 1.0, 'husbands': 1.0, 'brest': 1.0, 'your': 1.0, 'back': 2.0, 'family': 1.0, 'my': 1.0, 'fact': 1.0, 'the': 6.0, 'material': 2.0, 'easily': 1.0, 'good': 1.0, 'wipes': 1.0, 'not': 3.0, 'cold': 1.0, 'manufacturers': 1.0, 'need': 1.0, 's': 1.0, 'a': 1.0}
Word element => {'like': 1.0, 'especially': 1.0, 'more': 1.0, 'much': 1.0, 'makes': 1.0, 'loves': 1.0, 'consultant': 1.0, 'far': 1.0, 'a': 3.0, 'so': 1.0, 'big': 1.0, 'from': 1.0, 'out': 1.0, 'baby': 1.0, 'about': 2.0, 'lactation': 1.0, 'found': 1.0, 's': 1.0, 'wife': 1.0, 'comfortable': 1.0, 'using': 1.0, 'for': 1.0, 'my': 1.0, 'she': 1.0, 'feeding': 1.0, 'been': 1.0, 'ours': 1.0, 'month': 1.0, 'this': 1.0, 'it': 2.0, 'with': 2.0, 'our': 1.0, 'newborn': 1.0, 'and': 1.0}
Word element => {'problem': 1.0, 'learn': 1.0, 'solve': 1.0, 'to': 1.0, 'opportunity': 1.0, 'offers': 1.0, 'stacking': 1.0, 'actually': 1.0, 'when': 1.0, 'picture': 1.0, 'aren': 1.0, 'as': 2.0, 'colors': 1.0, 'stacker': 1.0, 'way': 1.0, 's': 2.0, 'you': 1.0, 'it': 4.0, 'traditional': 1.0, 't': 1.0, 'the': 3.0, 'more': 2.0, 'great': 1.0, 'but': 1.0, 'rings': 1.0, 'than': 1.0, 'still': 1.0, 'much': 1.0, 'bright': 1.0, 'a': 1.0, 'so': 1.0, 'and': 2.0, 'get': 1.0, 'interesting': 1.0}
Word element => {'as': 1.0, 'all': 1.0, 'pictured': 1.0, 'it': 1.0, 'to': 1.0, 'drawn': 1.0, 'colors': 1.0, 'stacker': 1.0, 'on': 1.0, 'son': 1.0, 'this': 1.0, 'puzzle': 1.0, 'muted': 1.0, 'the': 1.0, 'are': 1.0, 'my': 1.0, 'at': 1.0, 'not': 2.0, 'was': 1.0}
Word element => {'recommend': 1.0, 'i': 1.0, 'during': 1.0, 'do': 1.0, 'assistance': 1.0, 'stacking': 1.0, 'day': 1.0, 'many': 1.0, 'is': 4.0, 'friends': 1.0, 'boy': 2.0, 'dates': 1.0, '2': 1.0, 'without': 1.0, 'the': 3.0, 'tried': 1.0, 'my': 2.0, 'it': 3.0, 'how': 1.0, 'he': 4.0, 'this': 2.0, 'puzzle': 1.0, 'then': 1.0, 'got': 2.0, 'highly': 1.0, 'really': 1.0, 'every': 1.0, 'year': 1.0, 'very': 1.0, 'for': 2.0, 'been': 1.0, '5': 1.0, 'months': 1.0, 'since': 2.0, '3': 1.0, 'finally': 1.0, 'learn': 1.0, 'last': 1.0, 'we': 1.0, 'proud': 1.0, 'as': 1.0, 'to': 4.0, 'now': 2.0, 'has': 2.0, 'well': 2.0, 'toy': 3.0, 'complete': 2.0, 'proudly': 1.0, 'until': 1.0, 'challenging': 1.0, 'week': 1.0, 'times': 1.0, 'when': 1.0, 'engaging': 1.0, 'able': 1.0, 'us': 1.0, 'right': 1.0, 'would': 1.0, 'something': 1.0, 'made': 1.0, 'play': 1.0, 'and': 2.0, 'fun': 1.0, 'shows': 1.0}
Word element => {'years': 1.0, 'educational': 1.0, 'good': 1.0, 'be': 1.0, 'i': 1.0, 'not': 2.0, 'if': 1.0, 'into': 1.0, 'really': 1.0, 'plain': 1.0, 'toys': 1.0, 'levels': 2.0, 'daughter': 1.0, 'then': 1.0, 'got': 1.0, 'this': 2.0, 'a': 3.0, 'rod': 1.0, 'interlocked': 1.0, 'colored': 1.0, 'pieces': 2.0, 'added': 1.0, 'are': 1.0, 'the': 6.0, 'when': 1.0, 'traditional': 1.0, 'twist': 1.0, 'is': 2.0, 'think': 1.0, 'on': 1.0, 'months': 1.0, 'with': 2.0, 'piece': 1.0, 'stacking': 2.0, 'wooden': 1.0, 'toy': 2.0, 'figuring': 1.0, 'of': 4.0, 'play': 1.0, 'and': 1.0, 'according': 1.0, 'was': 1.0, 'size': 1.0, '21': 1.0, 'to': 1.0, 'all': 2.0, 'complexity': 1.0, 'will': 2.0, 'for': 1.0, 'fit': 1.0, 'my': 1.0, 'it': 1.0, 'she': 1.0, 'old': 1.0, 'slowly': 1.0, 'couple': 2.0, 'out': 1.0}
Word element => {'to': 1.0, 'if': 1.0, 'given': 1.0, 'have': 1.0, 'well': 1.0, 'take': 1.0, 't': 1.0, 'wood': 1.0, 'stacking': 1.0, 'the': 7.0, 'than': 1.0, 'unique': 1.0, 'rings': 1.0, 'so': 1.0, 'style': 1.0, 'traditional': 1.0, 'when': 1.0, 'stars': 1.0, 'for': 3.0, 'toys': 1.0, 'your': 1.0, 'i': 4.0, 'color': 1.0, 'bought': 1.0, 'cool': 1.0, 'my': 2.0, 'this': 2.0, 'much': 1.0, 'only': 1.0, 'dislike': 1.0, 'son': 1.0, 'true': 1.0, 'better': 1.0, 'hours': 1.0, 'would': 1.0, 'super': 1.0, 'looking': 2.0, 'is': 1.0, 'online': 1.0, 'dull': 1.0, 'that': 2.0, 'were': 2.0, 'colors': 3.0, 'bold': 1.0, 'didn': 1.0, 'picture': 2.0, 'are': 1.0, 'bright': 1.0, 'and': 2.0, 'but': 1.0, 'liked': 1.0, 'opened': 1.0, 'after': 1.0, 'cute': 1.0, 'package': 1.0, 'like': 1.0, 'in': 1.0, 'bland': 1.0, 'just': 1.0, '5': 1.0, 'stained': 1.0}
Word element => {'break': 1.0, 'crack': 1.0, 'piece': 1.0, 'coffee': 1.0, 'our': 1.0, 'dent': 1.0, 'left': 1.0, 'have': 1.0, 'would': 1.0, 'rug': 1.0, 'hit': 1.0, 'fortunately': 1.0, 'real': 1.0, 'am': 1.0, 'threw': 1.0, 'things': 1.0, 'likes': 1.0, 'helped': 1.0, 'skills': 1.0, 'fine': 1.0, 'grip': 1.0, 'good': 1.0, 'strong': 1.0, 'cause': 1.0, 'hands': 1.0, 'two': 1.0, 'using': 1.0, 'managed': 1.0, 'up': 1.0, 'has': 1.0, 'them': 1.0, 'pick': 1.0, 'could': 2.0, 'larger': 1.0, 'realized': 1.0, 'vibrant': 1.0, 'paint': 1.0, 'chipped': 1.0, 'anymore': 1.0, 'colors': 1.0, 'no': 1.0, 'was': 1.0, 'worries': 1.0, 'bit': 1.0, 'having': 1.0, 'not': 4.0, 'those': 1.0, 'photos': 1.0, '5': 1.0, 'in': 2.0, 'damage': 1.0, 'painted': 1.0, 'and': 6.0, 'quality': 1.0, 'description': 1.0, 'to': 3.0, 'here': 1.0, 'i': 5.0, 'well': 1.0, 'a': 6.0, 's': 2.0, 'wood': 2.0, 'motor': 1.0, 'he': 5.0, 'solid': 1.0, 'love': 2.0, 'factor': 1.0, 'yr': 2.0, '18': 1.0, 'this': 2.0, 'with': 4.0, 'throw': 1.0, 'stacking': 1.0, 'mind': 1.0, 'stained': 2.0, 'it': 9.0, 'so': 5.0, 'can': 1.0, 'thing': 1.0, '2': 1.0, 'hardwood': 3.0, 'but': 4.0, 'there': 2.0, 'floors': 1.0, 'is': 11.0, 'puzzle': 2.0, 'more': 1.0, 'many': 1.0, 'as': 4.0, 'heavy': 3.0, 'table': 1.0, 'true': 1.0, 'ways': 1.0, 'are': 4.0, 'first': 1.0, 'on': 3.0, '3': 2.0, 'product': 2.0, 'child': 1.0, 'box': 1.0, 'into': 1.0, 'about': 1.0, 'play': 1.0, 'awesome': 1.0, 'the': 19.0, 'of': 6.0, 'difficult': 1.0, 'because': 1.0, 'that': 9.0, 'young': 1.0, 'downside': 3.0, 'old': 2.0, 'did': 1.0, 'keep': 1.0, '1': 4.0, 'owner': 1.0, 'olds': 1.0, 'pieces': 4.0, 'got': 1.0, 'out': 1.0, 'amazon': 1.0, 'hand': 1.0, 'toddlers': 1.0, 'says': 2.0, 'figure': 1.0, 'now': 2.0, 'yes': 1.0, 'my': 3.0, 'mo': 1.0, 'later': 1.0, 'very': 3.0, 'plays': 1.0, 'for': 3.0, '10': 1.0, 'stacker': 5.0, 'min': 1.0, 'or': 3.0, 'need': 1.0, 'happy': 1.0, 'too': 1.0, 'one': 3.0, 'what': 1.0, 'when': 2.0, 'yo': 2.0, 'trouble': 1.0}
Word element => {'her': 1.0, 'just': 1.0, 'this': 1.0, 'right': 1.0, 'old': 1.0, 'grandaughter': 1.0, 'it': 1.0, 'works': 1.0, 'great': 1.0, 'my': 1.0, 'and': 1.0, 'is': 2.0, '2': 1.0, '5': 1.0, 'for': 1.0, 'years': 1.0}
Word element => {'hdtv': 1.0, 'in': 1.0, 'or': 1.0, '3': 1.0, '000': 1.0, 'his': 1.0, '4': 1.0, 'on': 1.0, 'to': 1.0, 'i': 2.0, 'but': 1.0, 'hide': 1.0, '2': 1.0, 'older': 1.0, 'this': 3.0, 'love': 1.0, 'him': 1.0, 'can': 1.0, 'my': 2.0, 'are': 1.0, 'brother': 1.0, 'year': 1.0, 'son': 1.0, 'from': 1.0, 'they': 1.0, 'pretty': 1.0, 'solid': 1.0, 'afraid': 1.0, '1': 2.0, 'and': 1.0, 'decide': 1.0, 'am': 1.0, 'that': 1.0, 'land': 1.0}
Word element => {'recommendable': 1.0, 'is': 1.0, 'think': 1.0, 'i': 1.0, 'highly': 1.0, 'skills': 1.0, 'his': 1.0, 's': 2.0, 'way': 1.0, 'later': 1.0, 'now': 1.0, 'was': 1.0, 'at': 1.0, 'bit': 1.0, 'a': 1.0, 'why': 1.0, 'year': 1.0, 'son': 1.0, 'has': 1.0, 'time': 1.0, 'for': 1.0, 'loved': 1.0, 'been': 1.0, 'little': 1.0, 'playing': 1.0, 'that': 2.0, 'our': 1.0, 'bought': 1.0, 'we': 1.0, 'plays': 1.0, 'evolved': 1.0, 'the': 2.0, 'than': 1.0, 'with': 3.0, 'this': 1.0, 'older': 1.0, 'he': 2.0, 'it': 4.0, '1': 2.0, 'and': 1.0, 'still': 1.0}
Word element => {'wasn': 1.0, 'us': 1.0, 'understand': 1.0, 'while': 1.0, 'in': 1.0, 'china': 2.0, 'made': 1.0, 'disappointed': 1.0, 'bit': 1.0, 'details': 1.0, 'expect': 1.0, 'would': 1.0, 'm': 1.0, 'price': 1.0, 'address': 1.0, 'then': 1.0, 'got': 1.0, 'the': 7.0, 'take': 2.0, 'but': 1.0, 'particularly': 1.0, 'sit': 1.0, 'inside': 1.0, '8': 1.0, 'enough': 1.0, 'off': 1.0, 'that': 2.0, 'loves': 1.0, 'it': 2.0, 'month': 1.0, 'she': 1.0, 'chipping': 1.0, 'also': 1.0, 'rings': 1.0, 'wood': 1.0, 'anything': 1.0, 'manufactures': 1.0, 'other': 1.0, 'gift': 1.0, 'find': 1.0, 'christmas': 1.0, 'wish': 1.0, 'this': 1.0, 'for': 2.0, 'love': 1.0, 'ring': 1.0, 'rough': 1.0, 'old': 1.0, 'i': 5.0, 'and': 3.0, 'edges': 1.0, 'our': 1.0, 'to': 3.0, 'as': 1.0, 'them': 3.0, 't': 1.0, 's': 1.0, 'we': 2.0, 'a': 3.0, 'apart': 1.0, 'gnaw': 1.0, 'on': 2.0, 'rarely': 1.0, 'how': 1.0, 'more': 1.0, 'is': 1.0, 'dyed': 1.0, 'not': 2.0, 'attention': 1.0, 'painted': 1.0, 'no': 1.0, 'paint': 1.0, 'like': 1.0, 'few': 2.0, 'of': 2.0, 'reviewers': 1.0, 'did': 1.0}
Word element => {'that': 1.0, 'while': 1.0, 'love': 1.0, 'for': 1.0, 'so': 1.0, 'continue': 1.0, 'do': 1.0, 'and': 1.0, 'point': 1.0, 'at': 1.0, 'absolutely': 1.0, 'month': 1.0, 'think': 1.0, 'loves': 1.0, 'i': 1.0, 'old': 1.0, 'to': 2.0, 'right': 1.0, 'my': 1.0, 'great': 1.0, 'the': 1.0, '15': 1.0, 'a': 2.0, 'them': 1.0, 'this': 1.0, 'it': 2.0, 'puzzle': 1.0, 'she': 1.0, 'likes': 1.0, 'her': 1.0, 'what': 1.0, 'stack': 1.0, 'exactly': 1.0, 'never': 1.0, 'pieces': 1.0, 'will': 1.0, 'challenges': 1.0, 'but': 1.0, 'gets': 1.0}
Word element => {'what': 1.0, 'likes': 1.0, 'be': 1.0, 'then': 1.0, 'highly': 1.0, 'for': 1.0, 'son': 1.0, 'from': 1.0, 'intentional': 1.0, 'baby': 1.0, 'accidental': 1.0, 'enough': 1.0, 'after': 1.0, 'an': 1.0, 'car': 1.0, 'pacifiers': 2.0, 'who': 1.0, 'keep': 1.0, 'have': 1.0, 'you': 1.0, 'if': 1.0, 'and': 1.0, 'belong': 1.0, 'too': 1.0, 'in': 1.0, 'tried': 1.0, 'the': 5.0, 'invaluable': 1.0, 'of': 2.0, 'shoulder': 1.0, 'but': 2.0, 'recommend': 1.0, 'doesn': 1.0, 'may': 1.0, 'goodness': 1.0, 'wherever': 1.0, 'little': 1.0, 'out': 3.0, 'found': 1.0, 'this': 2.0, 'addition': 1.0, 'he': 1.0, 'it': 3.0, 'with': 2.0, 've': 1.0, 'something': 1.0, 'already': 1.0, 'others': 1.0, 'require': 1.0, 'ejecting': 1.0, 'harness': 1.0, 'much': 1.0, 'thank': 1.0, 'strap': 1.0, 'pacifier': 1.0, 'curves': 1.0, 'colors': 1.0, 'dependent': 1.0, 'is': 2.0, 's': 1.0, 'we': 2.0, 't': 1.0, 'a': 2.0, 'go': 1.0, 'mouth': 2.0, 'they': 1.0, 'cheeks': 1.0, 'that': 2.0, 'loves': 1.0, 'always': 1.0, 'way': 1.0, 'on': 1.0, 'put': 1.0, 'make': 1.0, 'frustration': 1.0, 'not': 1.0, 'style': 1.0, 'man': 1.0, 'stay': 1.0, 'clothing': 1.0, 'several': 2.0, 'about': 1.0, 'whereas': 1.0, 'as': 1.0, 'seat': 1.0, 'our': 1.0, 'to': 2.0, 'all': 1.0, 'learned': 1.0, 'get': 1.0, 'spit': 1.0}
Word element => {'kids': 1.0, 'i': 1.0, 'them': 2.0, 'seems': 1.0, 'this': 1.0, 'to': 1.0, 'product': 1.0, 'good': 1.0, 'recommenf': 1.0, 'pacifer': 1.0, 'would': 1.0, 'smell': 1.0, 'like': 1.0, 'as': 1.0, 'described': 1.0, 'and': 1.0, 'the': 1.0, 'my': 1.0, 'for': 1.0, 'daughter': 1.0}
Word element => {'here': 1.0, 'it': 1.0, 'great': 1.0, 'locally': 1.0, 'unable': 1.0, 'is': 1.0, 'granddaughter': 1.0, 'same': 1.0, 'pacifier': 1.0, 'given': 1.0, 'to': 3.0, 'find': 2.0, 'the': 2.0, 'my': 1.0, 'in': 1.0, 'this': 1.0, 'hospital': 1.0}
Word element => {'but': 1.0, 'soothie': 1.0, 'good': 2.0, 'not': 1.0, 'time': 1.0, 'few': 1.0, 'as': 2.0, 'son': 1.0, 'my': 1.0, 'months': 1.0, 'although': 1.0, 'its': 1.0, 'to': 2.0, 'be': 1.0, 'lot': 1.0, 'a': 4.0, 'them': 1.0, 'the': 1.0, 'these': 1.0, 'like': 1.0, 'period': 1.0, 'it': 1.0, 'buy': 1.0, 'took': 1.0, 'i': 1.0, 'all': 2.0, 'able': 1.0, 'hold': 1.0, 'in': 2.0, 'for': 1.0, 'his': 1.0, 'mouth': 1.0, 'of': 1.0}
Word element => {'pacifier': 1.0, 'just': 1.0, 'it': 1.0, 'all': 1.0, 'at': 1.0, 'a': 2.0, 'normal': 1.0, 'was': 2.0, 'smell': 1.0, 'when': 1.0, 'daughter': 1.0, 'pacifiers': 1.0, 'and': 1.0, 'newborn': 1.0, 'loved': 1.0, 'i': 1.0, 'calmed': 1.0, 'these': 2.0, 'the': 1.0, 't': 1.0, 'my': 1.0, 'vanilla': 1.0, 'always': 1.0, 'down': 1.0, 'her': 1.0, 'scent': 1.0, 'has': 1.0, 'but': 1.0, 'didn': 1.0}
Word element => {'bedroom': 1.0, 'nice': 1.0, 'and': 1.0, 'far': 1.0, 'happy': 1.0, 'price': 1.0, 'looks': 1.0, 'it': 3.0, 'pottery': 1.0, 'my': 1.0, 'shaky': 1.0, 'definitely': 1.0, 'more': 1.0, 'is': 2.0, 'in': 2.0, 'everything': 1.0, 'store': 1.0, 'container': 1.0, 'solid': 1.0, 'that': 1.0, 'changing': 2.0, 'worked': 1.0, 'than': 2.0, 'wood': 1.0, 'made': 1.0, 'less': 2.0, 'stayed': 1.0, 'graco': 1.0, 'needed': 1.0, 'like': 1.0, 'table': 4.0, 'at': 1.0, 'lot': 1.0, 'child': 1.0, 'mammoth': 1.0, 'still': 1.0, 'son': 2.0, 'lighter': 1.0, 'together': 1.0, 'dresser': 1.0, 'something': 1.0, 'to': 1.0, 'our': 3.0, 'we': 1.0, 'a': 2.0, 's': 2.0, 'sheets': 1.0, 'the': 4.0, 'obviously': 1.0, 'second': 1.0, 'well': 2.0, 'has': 2.0, 'wonderfully': 1.0, 'but': 1.0, 'blankets': 1.0, 'can': 1.0, 'bulky': 1.0, 'shelves': 1.0, 'am': 1.0, 'easily': 1.0, 'barn': 1.0, 'for': 2.0, 'fit': 1.0, 'of': 1.0, 'supplies': 1.0, 'diapers': 1.0, 'wipes': 2.0, 'warmer': 1.0, 'put': 1.0, 'on': 1.0, 'this': 1.0, 'mattress': 1.0, 'i': 4.0, 'etc': 1.0, 'clothes': 1.0, 'protectors': 1.0, 'bought': 1.0, 'so': 1.0, 'smaller': 1.0, 'baskets': 1.0}
Word element => {'happier': 1.0, 'be': 1.0, 'couldn': 1.0, '4': 1.0, 'etc': 1.0, 's': 1.0, 'we': 4.0, 'a': 2.0, 'defects': 1.0, 'been': 1.0, 'that': 3.0, 'thinner': 1.0, 'fancy': 1.0, 'any': 1.0, 'pretty': 1.0, 'to': 4.0, 'our': 2.0, 'without': 1.0, 'minimal': 1.0, 'storage': 1.0, 'recycled': 1.0, 'for': 1.0, 'baskets': 1.0, 'so': 1.0, 'all': 2.0, 'fits': 2.0, 'arrived': 1.0, 'gassing': 1.0, 'off': 1.0, 'dakota': 1.0, 'frame': 1.0, 'packaging': 1.0, 'the': 9.0, 'of': 3.0, 'furniture': 1.0, 'buy': 1.0, 'large': 1.0, 'pleased': 1.0, 'taken': 1.0, 'there': 2.0, 'smell': 1.0, 'friend': 1.0, 'and': 7.0, 'easy': 1.0, 'table': 2.0, 'hold': 1.0, 'bought': 2.0, 'their': 1.0, 'great': 2.0, 'was': 5.0, 'store': 1.0, 'it': 3.0, 'my': 1.0, 'looks': 2.0, 'this': 2.0, 'just': 1.0, 'stuff': 1.0, 'but': 2.0, 'hide': 1.0, 'crib': 1.0, 'designed': 1.0, 'really': 2.0, 'material': 1.0, 've': 1.0, 'shelves': 1.0, 'supports': 1.0, 'use': 1.0, 'front': 1.0, 'sheets': 1.0, 'diapers': 1.0, 'are': 1.0, 'wood': 1.0, 'though': 1.0, 'than': 2.0, 'sturdy': 1.0, 'aren': 1.0, 'they': 1.0, 'very': 1.0, 'as': 1.0, 'heavy': 1.0, 'she': 3.0, 'baby': 1.0, 'well': 2.0, 't': 2.0, 'likes': 1.0, 'weight': 1.0, 'chooses': 1.0, 'commented': 1.0, 'with': 2.0, 'together': 1.0, 'piece': 1.0, 'cat': 1.0, 'when': 1.0, 'taste': 1.0, 'railing': 1.0, 'changing': 1.0, 'put': 1.0, 'much': 1.0, 'recyclable': 1.0, 'safer': 1.0, 'no': 1.0, 'designer': 1.0}
Word element => {'others': 1.0, 'definitely': 1.0, 'would': 1.0, 'whenever': 1.0, 'compliments': 1.0, 'absolutely': 1.0, 'love': 1.0, 'they': 1.0, 'are': 1.0, 'them': 2.0, 'many': 1.0, 'recommend': 1.0, 'carry': 1.0, 'good': 1.0, 'quality': 1.0, 'i': 2.0, 'have': 1.0, 'to': 1.0, 'gotten': 1.0}
Word element => {'good': 1.0, 'money': 1.0, 'lovely': 1.0, 'are': 1.0, 'on': 1.0, 'photo': 1.0, 'japanese': 1.0, 'fan': 2.0, 'in': 1.0, 'prop': 1.0, 'for': 2.0, 'a': 2.0, 'product': 2.0, 'have': 1.0, 'delicate': 1.0, 'used': 1.0, 'made': 1.0, 'i': 1.0, 'flowers': 1.0, 'this': 1.0, 'with': 1.0, 'theme': 1.0, 'very': 1.0, 'the': 3.0, 'session': 1.0, 'nicely': 1.0, 'and': 1.0, 'nice': 1.0, 'an': 1.0, 'but': 1.0}
Word element => {'very': 1.0, 'notice': 1.0, 'worried': 1.0, 'little': 1.0, 'a': 1.0, 'difference': 1.0, 'and': 1.0, 'my': 1.0, 'favors': 1.0, 'overall': 1.0, 'are': 1.0, 'cute': 1.0, 'discolored': 1.0, 'stars': 1.0, 'received': 1.0, '5': 1.0, 'product': 2.0, 'place': 1.0, 'have': 1.0, 'will': 1.0, 'but': 2.0, 'would': 1.0, 'people': 1.0, 'realized': 1.0, 'love': 1.0, 'im': 1.0, 'for': 1.0, 'given': 1.0, 'were': 1.0, 'that': 2.0, 'i': 5.0, 'wedding': 2.0, 'this': 1.0, 'it': 1.0, 'once': 1.0, 'some': 1.0, 'of': 1.0, 'these': 1.0, 'the': 4.0, 'stickers': 1.0, 'to': 1.0, 'had': 1.0, 'on': 1.0, 'notebook': 1.0}
Word element => {'great': 1.0, 'tight': 1.0, 'is': 1.0, 'everything': 1.0, 'plenty': 1.0, 'used': 1.0, 'i': 1.0, 'figure': 1.0, 'got': 1.0, 'off': 1.0, 'enough': 1.0, 'balance': 1.0, 'out': 2.0, 'keeping': 1.0, 'hold': 2.0, 'walking': 1.0, 'when': 2.0, 'tall': 1.0, 'and': 4.0, 'sometimes': 1.0, 'chose': 1.0, 'quite': 1.0, 'already': 1.0, 'took': 1.0, 'loved': 1.0, 's': 1.0, 'a': 2.0, 'we': 2.0, 'to': 1.0, 'our': 1.0, 'into': 1.0, 'rocking': 1.0, 'that': 2.0, 'last': 1.0, 'this': 1.0, 'christmas': 1.0, 'he': 5.0, 'looks': 1.0, 'it': 4.0, 'first': 1.0, 'horses': 1.0, 'his': 2.0, 'year': 1.0, 'still': 1.0, 'under': 1.0, 'son': 1.0, 'hard': 1.0, 'from': 1.0, 'for': 2.0, 'bought': 1.0, 'not': 1.0, 'because': 1.0, 'was': 2.0, 'had': 1.0, 'crawling': 1.0, 'helps': 1.0, 'age': 1.0, 'in': 2.0, 'mind': 1.0, 'the': 3.0, 'many': 1.0, 'of': 2.0, 'old': 1.0, 'rail': 2.0, 'them': 1.0, 'keep': 1.0, 'at': 1.0, 'but': 1.0, 'so': 1.0, 'time': 1.0}
Word element => {'well': 1.0, 'bouquet': 1.0, 'hold': 1.0, 'doesnt': 1.0, 'would': 1.0, 'about': 1.0, 'one': 1.0, 'negative': 1.0, 'say': 1.0, 'that': 1.0, 'were': 1.0, 'if': 1.0, 'are': 1.0, 'mirror': 1.0, 'rattles': 1.0, 'she': 1.0, 'does': 1.0, 'when': 1.0, 'daughter': 1.0, 'very': 1.0, 'year': 1.0, 'to': 1.0, 'crinkles': 1.0, 'was': 1.0, 'at': 1.0, 'months': 1.0, '4': 1.0, 'sounds': 1.0, 'my': 1.0, 'great': 1.0, 'the': 2.0, 'be': 1.0, 'product': 1.0, 'bought': 1.0, 'i': 2.0, 'old': 1.0, 'still': 1.0, 'this': 2.0, 'it': 3.0, 'enjoyed': 1.0, 'then': 1.0, 'shape': 1.0, 'ball': 1.0, '1': 1.0, 'and': 3.0, 'thing': 1.0, 'all': 1.0}
Word element => {'a': 1.0, 'with': 1.0, 'this': 1.0, 'anyone': 1.0, 'reccomand': 1.0, 'would': 1.0, 'for': 1.0, 'i': 1.0, 'one': 1.0, 'made': 1.0, 'hands': 1.0, 'soft': 1.0, 'and': 1.0, 'great': 1.0, 'baby': 1.0, 'little': 2.0, 'to': 1.0, 'those': 1.0, 'well': 1.0, 's': 1.0}
Word element => {'keeping': 1.0, 'policy': 2.0, 'ball': 1.0, 'on': 1.0, 'house': 1.0, 'are': 2.0, 'manual': 1.0, 'colicky': 1.0, 'same': 1.0, 'worked': 1.0, 'using': 1.0, 'rocking': 1.0, 'this': 3.0, 'tried': 1.0, 've': 1.0, 'there': 1.0, 'strolling': 1.0, 'her': 1.0, 'do': 1.0, 'put': 1.0, 'equivalent': 1.0, 'slow': 2.0, '3': 1.0, 'useless': 1.0, 'these': 1.0, 'however': 1.0, 'if': 5.0, '4': 1.0, 'justify': 1.0, 'unless': 1.0, 'luckily': 1.0, 'local': 1.0, 'motion': 2.0, 'you': 2.0, 'traditional': 1.0, 'doesn': 2.0, 'coupon': 1.0, 'that': 2.0, '20': 1.0, 'with': 2.0, 'from': 1.0, 'time': 1.0, 't': 4.0, 'then': 1.0, 'fine': 1.0, 'we': 4.0, 'purchased': 1.0, 'had': 1.0, 'it': 5.0, 'thought': 1.0, 'around': 1.0, 'music': 1.0, 'speed': 1.0, 'so': 1.0, 'can': 1.0, 'she': 5.0, 'baby': 3.0, 'quality': 2.0, 'return': 2.0, 'store': 2.0, 'was': 2.0, 'feature': 1.0, 'or': 4.0, 'soothe': 2.0, 'plug': 1.0, 'wait': 1.0, 'stars': 1.0, 'wanted': 1.0, 'fussy': 2.0, 'stroller': 1.0, 'our': 6.0, 'to': 4.0, 'most': 1.0, 'sleep': 1.0, 'mom': 1.0, 'any': 2.0, 'napper': 1.0, '10': 1.0, 'for': 4.0, 'love': 1.0, 'price': 1.0, 'product': 2.0, 'weeks': 1.0, 'would': 2.0, 'not': 3.0, 'be': 2.0, 'continue': 1.0, 'ability': 1.0, 'issue': 1.0, 'delivery': 1.0, 'couldn': 2.0, 'and': 7.0, 'rock': 1.0, 'amazon': 2.0, 'really': 2.0, 'at': 1.0, 'yoga': 1.0, 'is': 11.0, 'when': 1.0, 'cat': 1.0, 'lo': 3.0, 'efforts': 1.0, 'too': 2.0, 'held': 1.0, 'happy': 1.0, 'mamaroo': 2.0, 'old': 1.0, 'design': 2.0, 'touch': 1.0, 'great': 3.0, 'nice': 1.0, 'sound': 2.0, 'work': 3.0, 'over': 1.0, 'function': 1.0, 'will': 1.0, 'means': 1.0, 'features': 1.0, 'skip': 1.0, 'compare': 2.0, 'sheep': 1.0, 'soothing': 1.0, 'the': 14.0, 'of': 3.0, 'device': 1.0, 'member': 1.0, 'seat': 1.0, 'in': 4.0, 'asleep': 1.0, 'ipod': 1.0, 'mp3': 1.0, 'just': 2.0, 'car': 1.0, 'again': 1.0, 'player': 1.0, 'entire': 1.0, 'futuristic': 1.0, 'i': 2.0, 'well': 2.0, 'has': 1.0, 'out': 1.0, 'its': 3.0, 'us': 1.0, 'also': 1.0, 'a': 5.0, 'small': 1.0, 'enough': 1.0, 'footprint': 1.0, 'swing': 3.0, 'space': 1.0, 'all': 2.0, 'other': 1.0, 'an': 1.0}
Word element => {'snap': 1.0, 'zip': 1.0, 'else': 1.0, 'everything': 1.0, 'place': 1.0, 'one': 1.0, 'instructions': 1.0, 'together': 1.0, 'easy': 1.0, 'extremely': 1.0, 'product': 1.0, 'though': 1.0, 'insert': 1.0, 'overall': 1.0, 'handy': 1.0, 'electric': 1.0, 'sometimes': 1.0, 'plug': 1.0, 'even': 1.0, 'operated': 1.0, 'having': 1.0, '3': 1.0, 'make': 1.0, 'through': 1.0, 'times': 1.0, 'few': 1.0, 'overdose': 1.0, 'less': 1.0, 'tad': 1.0, 'wish': 1.0, 'washable': 1.0, 'removable': 1.0, 'although': 1.0, 'rechargable': 1.0, 'going': 1.0, 'generator': 1.0, 'most': 1.0, 'than': 1.0, '1': 1.0, 'minor': 1.0, 'put': 3.0, 'messes': 1.0, 'once': 1.0, '2': 1.0, 'machine': 1.0, 'washing': 1.0, 'or': 2.0, 'you': 3.0, 'motion': 1.0, 'like': 1.0, 'bouncing': 1.0, 'improvement': 1.0, 'safety': 1.0, 'latch': 1.0, 'minute': 1.0, 'a': 7.0, 'we': 2.0, 'only': 2.0, 'usually': 1.0, 'does': 1.0, 'work': 1.0, 'but': 2.0, 'unexpected': 1.0, 'can': 2.0, 'to': 9.0, 'our': 3.0, 'in': 6.0, 'seat': 4.0, 'as': 1.0, 'seem': 1.0, 'wonders': 1.0, 'ipods': 1.0, 'down': 1.0, 'noisier': 1.0, 'won': 1.0, 't': 4.0, 'likes': 1.0, 'outlet': 1.0, 'well': 2.0, 'softener': 1.0, 'guy': 1.0, 'on': 2.0, 'fabric': 3.0, 'for': 3.0, 'little': 2.0, 'two': 1.0, 'calming': 1.0, 'addition': 1.0, 'from': 1.0, 'features': 1.0, 'baby': 3.0, 'many': 1.0, 'battery': 1.0, 'really': 3.0, 'screw': 1.0, 'option': 1.0, 'great': 5.0, '4moms': 1.0, 'of': 1.0, 'the': 22.0, 'purchased': 1.0, 'softer': 1.0, 'bar': 1.0, 'already': 1.0, 'it': 10.0, 'recline': 1.0, 'thought': 1.0, 'had': 2.0, 'twice': 1.0, 'designers': 1.0, 'load': 1.0, 'where': 1.0, 'swaying': 1.0, 'an': 2.0, 'all': 1.0, 'other': 1.0, 'would': 2.0, 'boy': 1.0, 'time': 1.0, 'websites': 1.0, 'unzipped': 1.0, 'did': 1.0, 'and': 5.0, 'start': 1.0, 'don': 1.0, 'thrown': 1.0, 'isn': 2.0, 'right': 1.0, 'if': 2.0, 'locked': 1.0, 'motor': 1.0, 'he': 1.0, 'are': 1.0, 'balls': 1.0, 'wash': 1.0, 'use': 1.0, 'appreciated': 1.0, 'have': 3.0, 'lifesaver': 1.0, 'newborn': 1.0, 'there': 1.0, 'black': 1.0, 'rough': 1.0, 'white': 3.0, 'hookup': 1.0, 'ipod': 1.0, 'based': 1.0, 'mp3': 1.0, 'thoughtful': 1.0, 'side': 2.0, 'now': 1.0, 'power': 1.0, 'mamaroo': 1.0, 'fact': 2.0, 'swings': 2.0, 'also': 2.0, 'that': 5.0, 'easily': 1.0, 'out': 1.0, 'unload': 1.0, 'was': 5.0, 'notice': 1.0, 'is': 5.0, 'quibbles': 1.0, 'with': 2.0, 'they': 1.0, 'some': 2.0, 'toy': 1.0, 'used': 2.0, 'their': 1.0, 'noise': 2.0, 'recommendations': 1.0, 'programs': 1.0, 'homework': 1.0, 'built': 1.0, 'be': 2.0}
Word element => {'about': 1.0, 'everything': 1.0, 'this': 1.0, 'is': 1.0, 'it': 1.0, 'love': 1.0, 'so': 1.0, 'then': 1.0, 'much': 1.0, 'old': 1.0, 'i': 1.0, 'nicer': 1.0, 'my': 1.0, 'graco': 1.0}
Word element => {'must': 1.0, 'item': 1.0, 'for': 1.0, 'not': 1.0, 'i': 1.0, 'himself': 1.0, 'in': 1.0, 'could': 1.0, 'lay': 1.0, 'put': 1.0, 'will': 1.0, 'better': 1.0, 'mamroo': 1.0, 'we': 1.0, 'be': 1.0, 'have': 1.0, 'all': 1.0, 'held': 1.0, 'ask': 1.0, 'baby': 4.0, 'sing': 1.0, 'the': 3.0, 'my': 1.0, 'that': 3.0, 'since': 1.0, 'a': 4.0, 'to': 7.0, 'had': 1.0, 'was': 2.0, 'has': 1.0, 'time': 1.0, 'changed': 1.0, 'is': 2.0, 'sleep': 2.0, 'loves': 1.0, 'got': 1.0, 'cuddle': 2.0, 'it': 2.0, 'he': 2.0, 'only': 1.0, 'way': 1.0, 'him': 3.0, 'and': 3.0, 'get': 1.0}
Word element => {'this': 1.0, 'or': 1.0, 'zen': 1.0, 'with': 1.0, 'graco': 1.0, 'getting': 1.0, 'probably': 1.0, 'returning': 1.0, 'jammed': 1.0, 'finger': 1.0, 'very': 1.0, 'seem': 1.0, 'its': 1.0, 'for': 1.0, 'where': 1.0, 'slow': 1.0, 'was': 2.0, 'either': 1.0, 'had': 2.0, 'but': 1.0, 'house': 1.0, 'friend': 1.0, 'an': 1.0, 'solid': 1.0, 'at': 1.0, 'became': 1.0, 'it': 5.0, 'too': 1.0, 'and': 2.0, 'i': 2.0, 'bought': 1.0, 'one': 1.0, 'hope': 1.0, 'few': 1.0, 'galt': 1.0, 'compact': 1.0, 'in': 2.0, 'hoop': 1.0, 'also': 1.0, 'apparent': 1.0, 'my': 2.0, 'way': 1.0, 'affect': 1.0, 'chicago': 1.0, 'a': 4.0, 'hardly': 1.0, 'to': 1.0, 'seat': 1.0, 'any': 1.0, 'baby': 2.0, 'm': 1.0, 'price': 2.0, 'on': 1.0, 'days': 1.0, 'looking': 1.0, 'unlike': 1.0, 'helps': 1.0, 'there': 1.0, 'swing': 1.0, 'that': 1.0, 'their': 1.0, 'is': 1.0, 'get': 1.0, 'easy': 1.0, 'fisher': 2.0, 'area': 1.0, 'down': 1.0, 'after': 1.0, 'below': 1.0, 'the': 3.0}
Word element => {'reichel': 1.0, 'cindy': 1.0, 'please': 1.0, 'baby': 1.0, 'your': 2.0, 'make': 1.0, 'looking': 1.0, 'if': 1.0, 'can': 1.0, 'almost': 1.0, 'so': 1.0, 'however': 1.0, 'reasonable': 1.0, 'loud': 1.0, 'be': 1.0, 'motions': 1.0, 'with': 1.0, 'show': 1.0, 'quiet': 1.0, 'today': 1.0, 'the': 5.0, 'are': 1.0, 'nicer': 1.0, 'hear': 1.0, 'concerned': 1.0, 'first': 1.0, 'you': 2.0, 'am': 1.0, 'it': 8.0, 'looks': 1.0, 'is': 3.0, 'stylish': 1.0, 'amazed': 1.0, 'would': 1.0, 'new': 1.0, 'i': 5.0, 'and': 4.0, 'how': 1.0, 'received': 1.0, 'fussy': 1.0, 'than': 1.0, 'even': 1.0, 'try': 1.0, 'works': 1.0, 'life': 1.0, 'just': 1.0, 'mamaroo': 3.0, 'product': 1.0, 'for': 2.0, 'love': 1.0, 'price': 1.0, 'best': 1.0, 'absolutely': 2.0, 'definately': 1.0, 'pictures': 1.0, 'found': 1.0, 'my': 1.0, 'daughter': 1.0, 'soothing': 1.0, 'at': 2.0, 'who': 1.0, 'easier': 1.0, 'has': 1.0, 'very': 4.0, 'little': 2.0, 'due': 1.0, 'have': 1.0, 'all': 1.0, 'our': 1.0, 'to': 2.0, 'was': 2.0, 'teething': 1.0, 'that': 2.0, 'been': 1.0, 'loves': 1.0, 'of': 1.0, 'skeptical': 1.0, 'technique': 1.0, 's': 1.0, 't': 1.0, 'a': 4.0}
Word element => {'had': 1.0, 'like': 1.0, 'regular': 1.0, 'buying': 1.0, 'regret': 1.0, 'got': 1.0, 'of': 2.0, 'months': 1.0, 'first': 1.0, 'dreads': 1.0, 'ability': 1.0, 'way': 1.0, 'moves': 1.0, 'only': 1.0, 'but': 1.0, 'not': 1.0, 'me': 2.0, 'weeks': 1.0, 'away': 1.0, 'too': 1.0, 'and': 4.0, 'new': 1.0, 'was': 1.0, 'who': 1.0, 'called': 1.0, 'kept': 1.0, 'slow': 1.0, 'walk': 1.0, 'a': 4.0, 'rid': 1.0, 'terrible': 1.0, 'tried': 1.0, 'uses': 1.0, 'message': 1.0, 'collecting': 1.0, 'i': 4.0, '4': 1.0, 'my': 2.0, 'company': 2.0, 'newborn': 1.0, 'the': 8.0, 'is': 1.0, 'more': 1.0, 'aware': 1.0, 'obstruction': 1.0, 'nothing': 1.0, 'just': 1.0, 'few': 1.0, 'it': 2.0, 'showing': 1.0, 'child': 1.0, 'dust': 1.0, 'up': 2.0, 'baby': 2.0, 'after': 2.0, 'ended': 1.0, 'base': 1.0, 'fixing': 1.0, 'right': 1.0, 'maybe': 1.0, 'liked': 1.0, 'for': 2.0, 'swing': 4.0, 'to': 1.0, 'as': 1.0, 'reclining': 1.0, 'became': 1.0, 'through': 1.0, 'working': 1.0, 'then': 1.0, 'sending': 1.0, 'awake': 1.0}
Word element => {'buying': 1.0, 'before': 1.0, 'came': 1.0, 'wait': 1.0, 'slight': 1.0, 'a': 1.0, 't': 2.0, 'mobile': 2.0, 'together': 1.0, 'slow': 1.0, 'way': 1.0, 'please': 2.0, 'disapointment': 1.0, 'got': 1.0, 'didn': 1.0, 'even': 2.0, 'return': 1.0, 'sure': 1.0, 'family': 1.0, 'figured': 1.0, 'the': 13.0, 'all': 1.0, 'to': 4.0, 'thing': 1.0, 'told': 1.0, 'would': 2.0, 'on': 3.0, 'put': 2.0, 'your': 1.0, 'once': 2.0, 'was': 5.0, 'friends': 1.0, 'but': 1.0, 'most': 1.0, 'months': 1.0, 'get': 1.0, 'bumbo': 1.0, 'looked': 1.0, 'with': 2.0, 'baby': 3.0, 'she': 4.0, 'this': 3.0, 'how': 1.0, 'item': 1.0, 'seven': 1.0, 'reviews': 1.0, 'i': 8.0, 'buy': 1.0, 'couldn': 1.0, 'registy': 1.0, 'position': 1.0, 'loves': 1.0, 'and': 5.0, 'my': 4.0, 'me': 1.0, 'for': 2.0, 'her': 2.0, 'nanny': 1.0, 'one': 1.0, 'too': 2.0, 'try': 2.0, 'nothing': 1.0, 'out': 2.0, 'first': 1.0, 'hated': 1.0, 'liked': 1.0, 'it': 9.0, 'thought': 1.0, 'maybe': 1.0, 'thrilled': 1.0, 'young': 1.0, 'wonderful': 1.0, 'old': 1.0, 'child': 3.0, 'now': 1.0, 'has': 1.0, 'never': 1.0, 'so': 2.0, 'speed': 1.0, 'down': 1.0, 'really': 1.0, 'simple': 1.0, 'bounce': 1.0, 'is': 5.0, 'at': 1.0, 'setting': 1.0, 'be': 1.0, 'slides': 1.0, 'seat': 2.0, 'in': 2.0, 'when': 1.0, 'straped': 1.0, 'fastest': 1.0, 'reclined': 1.0, 'lame': 1.0, 'nap': 1.0, 'swing': 1.0, 'momaroo': 1.0, 'did': 1.0}
Word element => {'star': 1.0, 'supplying': 1.0, 'before': 1.0, 'audience': 1.0, 'target': 1.0, 'of': 1.0, 'motions': 1.0, 's': 1.0, 'waiting': 1.0, 'easily': 1.0, 'constructed': 1.0, 'baby': 1.0, '5th': 1.0, 'together': 1.0, 'well': 1.0, 'a': 2.0, 'great': 1.0, 'test': 1.0, 'swing': 1.0, 'i': 1.0, 'variety': 1.0, 'till': 1.0, 'm': 1.0, 'it': 2.0, 'with': 2.0, 'only': 1.0, 'our': 1.0, 'went': 1.0, 'arrives': 1.0, 'to': 1.0}
Word element => {'life': 1.0, 'useful': 1.0, 'spending': 1.0, 'recommend': 1.0, 'cannot': 1.0, 'service': 1.0, 'customer': 1.0, 'loud': 1.0, 'quite': 1.0, 'use': 1.0, 'got': 1.0, 'so': 2.0, 'size': 1.0, 'will': 1.0, 'short': 2.0, 'out': 1.0, 'almost': 1.0, 'side': 1.0, 'roll': 1.0, 'care': 1.0, 'have': 1.0, 'i': 4.0, 'much': 2.0, 'harness': 1.0, 'squirmy': 1.0, 'get': 1.0, 'they': 1.0, 'one': 1.0, 'months': 3.0, 'of': 2.0, 'age': 1.0, 'useless': 1.0, 'it': 3.0, 'player': 1.0, 'mp3': 1.0, 'on': 1.0, '3': 1.0, 'your': 2.0, 'has': 2.0, 'plug': 1.0, 'seen': 1.0, 'you': 2.0, 'go': 1.0, 'a': 4.0, 's': 1.0, 'way': 1.0, 'allows': 1.0, 'swing': 1.0, 'edge': 1.0, '5': 2.0, 'room': 1.0, 'motor': 1.0, 'mamaroo': 2.0, 'to': 6.0, 'sleek': 1.0, 'at': 1.0, 'keep': 1.0, 'design': 1.0, 'takes': 1.0, 'up': 2.0, 'and': 4.0, 'the': 9.0, 'appropriate': 2.0, 'less': 1.0, 'select': 1.0, 'chair': 2.0, 'there': 1.0, 'exact': 1.0, 'expensive': 1.0, 'for': 4.0, 'want': 1.0, 'around': 1.0, 'fall': 1.0, 'is': 5.0, 'baby': 3.0, 'hear': 1.0, 'money': 1.0, 'music': 1.0, 'past': 1.0, 'but': 1.0, 'grab': 1.0, 'here': 1.0, 'something': 1.0, 'new': 1.0, 'about': 2.0, 'no': 1.0, 'thing': 1.0, 'that': 1.0, 'into': 1.0, 'babies': 2.0, 'not': 3.0, 'than': 1.0, 'because': 2.0, 'their': 1.0, 'head': 1.0}
Word element => {'enough': 1.0, 'fast': 1.0, 'think': 1.0, 'a': 1.0, 'relaxes': 1.0, 'and': 1.0, 'in': 1.0, 'just': 1.0, 'girl': 1.0, 'my': 1.0, 'chills': 1.0, 'our': 1.0, 'read': 1.0, 'regular': 1.0, 'relief': 1.0, 'glad': 1.0, 'her': 1.0, 'took': 1.0, 'i': 5.0, 'old': 1.0, 'hated': 1.0, 'swing': 3.0, '9': 1.0, 'baby': 2.0, 'its': 2.0, 'to': 1.0, 'was': 1.0, 'reviews': 1.0, 'hesitant': 1.0, 'graco': 1.0, 'm': 1.0, 'purchase': 1.0, 'such': 1.0, 'great': 1.0, 'the': 3.0, 'chance': 1.0, 'costly': 1.0, 'week': 1.0, 'but': 1.0}
Word element => {'an': 1.0, 'is': 2.0, 'its': 1.0, 'only': 1.0, 'attach': 1.0, 'the': 3.0, 'asleep': 1.0, 'fast': 1.0, 'in': 2.0, 'enjoy': 1.0, 'and': 5.0, 'when': 1.0, 'worth': 1.0, 'held': 1.0, 'every': 1.0, 'speed': 1.0, 'wasn': 1.0, 'my': 2.0, 'would': 1.0, 'new': 1.0, 'love': 2.0, 'scream': 1.0, 'did': 1.0, 'since': 1.0, 'being': 1.0, 'charger': 1.0, 'mother': 1.0, 'he': 4.0, 'it': 3.0, 'mamaroo': 3.0, 'son': 1.0, 'not': 2.0, 'his': 2.0, 'low': 1.0, 'papason': 1.0, 'chair': 1.0, 'money': 1.0, 'can': 1.0, 'sitting': 2.0, 'but': 1.0, 'sick': 1.0, 'all': 1.0, 'sleep': 1.0, 'ipod': 2.0, 'stays': 1.0, 'well': 1.0, 'has': 2.0, 'should': 1.0, 'recently': 1.0, 'that': 2.0, 'loves': 1.0, 'been': 2.0, 'lifesaver': 1.0, 'a': 3.0, 't': 1.0, 's': 1.0, 'so': 1.0, 'elevated': 1.0, 'i': 4.0, 'disadvantage': 1.0, 'night': 1.0, 'have': 1.0, 'leave': 1.0, 'on': 2.0}
Word element => {'loved': 1.0, 'liking': 1.0, 'one': 1.0, 'heard': 1.0, 'haven': 1.0, 'shame': 1.0, 'hit': 1.0, 'low': 1.0, 'face': 1.0, 'close': 1.0, 'too': 1.0, 'are': 1.0, 'the': 2.0, 'her': 3.0, 'on': 2.0, 'cause': 1.0, 'they': 2.0, 'reviews': 1.0, 'friend': 1.0, 'room': 1.0, 'before': 1.0, 'of': 1.0, 'shower': 1.0, 'based': 1.0, 'this': 2.0, 'only': 1.0, 'my': 6.0, 'about': 1.0, 'baby': 3.0, 'droop': 1.0, 'was': 1.0, 'had': 1.0, 'i': 8.0, 'recommended': 1.0, 'for': 2.0, 'product': 1.0, 'friends': 1.0, 'so': 2.0, 'wouldn': 1.0, 'even': 2.0, 'got': 1.0, 'balls': 1.0, 'use': 1.0, 'neither': 1.0, 'it': 7.0, 'nor': 1.0, 'will': 1.0, 'money': 1.0, 'but': 1.0, 'way': 1.0, 'sit': 1.0, 'waist': 1.0, 'to': 2.0, 'all': 1.0, 'in': 3.0, 'excited': 1.0, 'great': 1.0, 'a': 4.0, 's': 2.0, 't': 3.0, 'when': 1.0, 'idea': 2.0, 'really': 1.0, 'is': 1.0, 'isn': 1.0, 'something': 1.0, 'child': 1.0, 'at': 1.0, 'interested': 1.0, 'ipad': 1.0, 'sometimes': 1.0, 'station': 1.0}
Word element => {'now': 1.0, 'right': 1.0, '200': 1.0, 'hoping': 1.0, 'spent': 1.0, 'i': 4.0, 'but': 1.0, 'week': 1.0, 'well': 1.0, 'since': 1.0, 'grow': 1.0, 'll': 1.0, 'one': 1.0, 'bought': 1.0, 'doesn': 1.0, 'unfortunately': 1.0, 'my': 1.0, 'into': 1.0, 'much': 1.0, 'she': 1.0, 'it': 4.0, 'loud': 1.0, 'hard': 1.0, 'the': 2.0, 'very': 1.0, 'like': 1.0, '3': 1.0, 'on': 1.0, 'hate': 1.0, 'too': 1.0, 'and': 1.0, 'noise': 1.0, 'old': 1.0, 'makes': 1.0, 'a': 1.0, 't': 1.0, 'could': 1.0, 's': 1.0, 'just': 1.0, 'fabric': 1.0, 'is': 1.0, 'really': 1.0, 'kinda': 1.0, 'm': 1.0, 'd': 1.0, 'this': 1.0, 'wish': 1.0, 'swing': 1.0, 'instead': 1.0, 'use': 1.0}
Word element => {'us': 1.0, 'just': 1.0, 'built': 1.0, 'pretty': 1.0, 'sturdy': 1.0, 'chair': 1.0, 'bouncy': 1.0, 'another': 1.0, 'returning': 1.0, 'waste': 1.0, 'then': 1.0, 'not': 1.0, 'me': 1.0, 'is': 2.0, 'swaying': 1.0, 'comforted': 1.0, 'like': 2.0, 'have': 3.0, 'bouncer': 1.0, 'yesterday': 1.0, 'jiggled': 1.0, 'madder': 1.0, 'that': 1.0, 'i': 2.0, 'baby': 1.0, 'really': 1.0, 'be': 3.0, 'well': 1.0, 'likes': 1.0, 'today': 1.0, 'thing': 1.0, 'sit': 1.0, 'kids': 1.0, 'this': 3.0, 'with': 2.0, 'the': 2.0, 't': 2.0, 'a': 4.0, 'best': 1.0, 'fussy': 2.0, 'bought': 1.0, 'mobile': 1.0, 'bounced': 2.0, 'get': 2.0, 'and': 4.0, 'our': 2.0, 'to': 6.0, 'was': 3.0, 'isn': 1.0, 'look': 1.0, 'fit': 1.0, 'product': 2.0, 'for': 3.0, 'died': 1.0, 'got': 1.0, '2nd': 1.0, 'if': 4.0, 'don': 1.0, 'child': 2.0, 'bust': 1.0, 'it': 5.0, 'she': 3.0, 'would': 1.0, 'in': 1.0, 'already': 1.0, 'happy': 1.0, 'who': 1.0, 'at': 1.0, 'money': 1.0, 'but': 2.0, 'seemed': 1.0, 'your': 1.0, 'make': 1.0, 'her': 1.0, 'am': 1.0, 'when': 1.0, 'you': 3.0}
Word element => {'3': 1.0, 'on': 2.0, 'guy': 2.0, 'after': 1.0, 'even': 1.0, 'acclimatized': 1.0, 'much': 1.0, 'soothe': 1.0, 'was': 1.0, 'recommend': 1.0, 'not': 4.0, 'easy': 1.0, 'fisher': 1.0, 'and': 2.0, 'up': 1.0, 'the': 18.0, 'tried': 1.0, 'old': 1.0, 'getting': 1.0, 'biggest': 1.0, 'sleek': 1.0, 'unit': 4.0, 'as': 2.0, 'all': 1.0, 'draw': 1.0, 'our': 1.0, 'month': 1.0, '4': 1.0, 'son': 1.0, 'really': 2.0, 'is': 8.0, 'say': 1.0, 'till': 1.0, 'around': 2.0, 'one': 2.0, 'for': 3.0, 'love': 1.0, 'with': 2.0, 'you': 1.0, 'loud': 1.0, 'this': 2.0, 'looking': 1.0, 'day': 1.0, 'bought': 1.0, 'money': 1.0, 'have': 1.0, 'it': 8.0, 'thought': 1.0, 'that': 3.0, 'but': 3.0, 'board': 1.0, 'small': 1.0, 'a': 2.0, 'baby': 4.0, 'about': 1.0, 'little': 3.0, 'pay': 1.0, 'back': 1.0, 'slipping': 1.0, 'also': 1.0, 'i': 1.0, 'slept': 1.0, 'did': 1.0, 'keep': 1.0, 'will': 1.0, 'fellows': 1.0, 'down': 1.0, 'assembly': 1.0, 'belts': 1.0, 'would': 1.0, 'weeks': 1.0, 'tight': 1.0, 'get': 2.0, 'legs': 1.0, 'ended': 1.0, 'manufacturer': 1.0, 'has': 1.0, 'made': 1.0, 'straps': 1.0, 'so': 1.0, 'in': 2.0, 'to': 3.0, 'length': 1.0, 'difficult': 1.0, 'strap': 1.0, 'still': 1.0, 'if': 1.0, 'big': 1.0, 'child': 1.0, 'product': 1.0, 'price': 1.0, 'd': 1.0, 'swing': 1.0, 'working': 1.0, 'first': 1.0, 'while': 1.0, 'we': 4.0, 'swinging': 1.0, 'worth': 1.0}
Word element => {'product': 1.0, 'there': 1.0, 'in': 1.0, 'great': 1.0, 'it': 1.0, 'son': 1.0, 'is': 2.0, 'must': 1.0, 'all': 1.0, 'my': 2.0, 'the': 2.0, 'swings': 1.0, 'when': 1.0, 'i': 2.0, 'loves': 1.0, 'have': 1.0, 'used': 1.0, 'out': 1.0, 'say': 1.0, 'he': 1.0, 'favorite': 1.0, 'of': 1.0, 'mamaroo': 1.0}
Word element => {'seat': 1.0, 'cool': 1.0, 'this': 1.0, 'assembly': 1.0, 'is': 1.0, 'a': 1.0, 'super': 1.0, 'quick': 1.0, 'assembled': 1.0, 'in': 1.0, 'minutes': 1.0, 'eight': 1.0, 'very': 1.0}
Word element => {'attached': 1.0, 'items': 1.0, 'time': 1.0, 'its': 1.0, 'used': 1.0, 'toy': 1.0, 'only': 1.0, 'products': 1.0, 'before': 1.0, 'day': 1.0, 'bounce': 1.0, 'close': 1.0, 'come': 1.0, 'with': 1.0, 'satisified': 1.0, 'doesn': 2.0, 'stake': 1.0, 'america': 1.0, 'safety': 1.0, 'understand': 1.0, 'faster': 1.0, 'even': 1.0, 'hard': 1.0, 'am': 1.0, 'motions': 1.0, 'artwork': 1.0, 'staring': 1.0, 'really': 1.0, 'bare': 1.0, 'little': 1.0, 'looked': 1.0, 'response': 1.0, 'i': 4.0, 'due': 1.0, 'suprised': 1.0, 'mobile': 2.0, 'lime': 1.0, 'space': 1.0, 'attractive': 1.0, 'lullabys': 1.0, 'have': 1.0, 'speaker': 1.0, 'a': 3.0, 'maximum': 1.0, 'we': 5.0, 'improved': 1.0, 'go': 2.0, 't': 3.0, 'one': 1.0, 'held': 1.0, 'or': 1.0, 'motion': 1.0, 'granted': 1.0, 'be': 2.0, 'that': 3.0, 'been': 1.0, 'riding': 1.0, 'into': 1.0, 'trusting': 1.0, 'swingthe': 1.0, 'green': 1.0, 'totally': 1.0, 'naturally': 1.0, 'replicating': 1.0, 'refused': 1.0, 'bouncing': 1.0, 'like': 2.0, 'stand': 1.0, 'about': 1.0, 'release': 2.0, 'this': 3.0, 'family': 2.0, 'me': 1.0, 'my': 6.0, 'has': 3.0, 'than': 2.0, 'ball': 1.0, 'sometimes': 1.0, 'couldn': 1.0, 'and': 6.0, 'bits': 1.0, 'quite': 1.0, 's': 4.0, 'demanded': 1.0, 'is': 1.0, 'at': 5.0, 'for': 4.0, 'picky': 1.0, 'the': 17.0, 'of': 9.0, 'less': 1.0, 'favorite': 1.0, 'up': 2.0, 'excerise': 1.0, 'loved': 1.0, 'far': 2.0, 'he': 7.0, 'chomping': 1.0, 'item': 1.0, 'our': 2.0, 'was': 2.0, 'now': 1.0, 'introduced': 1.0, 'would': 2.0, 'weeks': 2.0, 'tried': 1.0, 'seems': 1.0, 'see': 1.0, 'until': 1.0, 'great': 1.0, 'on': 1.0, '12': 1.0, 'week': 1.0, 'slow': 1.0, 'very': 1.0, 'son': 3.0, 'if': 1.0, 'asked': 1.0, 'still': 3.0, 'children': 1.0, 'seem': 2.0, 'end': 1.0, 'wait': 1.0, 'bouncer': 1.0, 'help': 1.0, 'other': 2.0, 'all': 2.0, 'an': 1.0, 'simulate': 1.0, 'speed': 3.0, 'so': 6.0, 'much': 2.0, 'old': 1.0, 'mamaroo': 2.0, 'living': 1.0, 'more': 3.0, '8': 2.0, 'age': 1.0, 'in': 3.0, 'music': 1.0, 'around': 1.0, 'his': 2.0, 'swing': 3.0, 'enjoys': 1.0, 'but': 2.0, 'bones': 1.0, 'became': 2.0, 'to': 13.0, 'high': 1.0, 'had': 2.0, 'unfortunatly': 1.0, 'him': 1.0, 'speak': 1.0, 'it': 12.0, 'bouncers': 1.0, 'ipod': 1.0, 'good': 2.0, 'made': 1.0, 'earth': 1.0, 'house': 1.0, 'not': 3.0, 'hopes': 1.0, 'replaced': 1.0, 'obnoxious': 1.0, 'swings': 1.0, 'looking': 2.0, 'room': 1.0, 'however': 3.0, 'equally': 1.0, 'variety': 2.0, 'does': 2.0, 'think': 1.0, 'better': 1.0, 'bounced': 1.0, 'hook': 1.0, 'becomes': 1.0}
Word element => {'movement': 1.0, 'just': 1.0, 'daily': 1.0, 'naps': 1.0, 'price': 1.0, 'fisher': 1.0, 'papasan': 1.0, 'that': 1.0, 'have': 1.0, 'flat': 1.0, 'their': 1.0, 'for': 2.0, 'didn': 2.0, 'is': 1.0, 'thing': 1.0, 'super': 1.0, 'one': 1.0, 'bought': 1.0, 'cool': 1.0, 'through': 1.0, 'speakers': 1.0, 'her': 2.0, 'or': 1.0, 'two': 1.0, 'i': 2.0, 'your': 1.0, 'can': 1.0, 'swing': 2.0, 'pod': 1.0, 'and': 4.0, 'play': 1.0, 'baby': 1.0, 'never': 1.0, 'looks': 1.0, 'it': 5.0, 'she': 4.0, 'fell': 2.0, 'friends': 1.0, 'the': 2.0, 'asleep': 2.0, 'minutes': 2.0, 'was': 1.0, 'our': 1.0, 'to': 1.0, 'in': 4.0, 'always': 1.0, 'up': 1.0, 'taking': 1.0, 'out': 2.0, 'ended': 1.0, 'after': 1.0, '30': 1.0, 'because': 1.0, 'upset': 1.0, 't': 2.0, 'we': 1.0, 'a': 1.0, 'move': 1.0, 'went': 2.0, 'enough': 2.0, 'house': 1.0}
Word element => {'like': 1.0, 'your': 1.0, 'kind': 1.0, 'figure': 1.0, 'until': 1.0, 'waiting': 1.0, 'suggest': 1.0, 'buying': 1.0, 'about': 1.0, 'thinking': 1.0, 'you': 2.0, 'case': 1.0, 'problem': 1.0, 'be': 1.0, 'birth': 1.0, 'more': 1.0, 'same': 1.0, 'would': 1.0, 'boy': 1.0, 'so': 2.0, 'just': 4.0, 'remotely': 1.0, 'does': 1.0, 'enough': 1.0, 'cool': 1.0, 'jackpot': 1.0, 'modern': 1.0, 'not': 2.0, 'out': 2.0, 'how': 2.0, 'few': 1.0, 'this': 4.0, 'wish': 1.0, 'to': 6.0, 'as': 2.0, 'little': 2.0, 'didn': 1.0, 'got': 1.0, 'that': 5.0, 'had': 2.0, 'even': 1.0, 'hit': 1.0, 'baby': 4.0, 'unfortunately': 1.0, 'was': 2.0, 't': 2.0, 'discovered': 1.0, 'a': 3.0, 'asleep': 1.0, 'products': 1.0, 'product': 2.0, 'he': 4.0, 'love': 2.0, 'for': 1.0, 'expensive': 1.0, 'are': 2.0, 'fast': 2.0, 'i': 9.0, 'what': 1.0, 'when': 1.0, 'traditional': 1.0, 'is': 5.0, 'look': 1.0, 'wanted': 1.0, 'attractive': 1.0, 'really': 1.0, 'gear': 1.0, 'get': 2.0, 'and': 2.0, 'mamaroo': 2.0, 'soon': 1.0, 'there': 2.0, 'will': 2.0, 'keep': 1.0, 'sleeping': 1.0, 'reading': 1.0, 'of': 1.0, 'the': 6.0, 'longer': 1.0, 'down': 2.0, 'especially': 1.0, 'but': 2.0, 'awake': 2.0, 'thought': 2.0, 'already': 1.0, 'him': 4.0, 'it': 5.0, 'my': 3.0, 'looks': 1.0, 'put': 1.0, 'actually': 1.0, 'movements': 2.0, 'seat': 3.0, 'in': 2.0, 'said': 1.0, 'only': 1.0, 'interested': 1.0, 'wouldn': 1.0, 'break': 1.0, 'buy': 1.0, 'swing': 1.0, 'frustrates': 1.0, 'while': 1.0, 'from': 1.0, 'if': 4.0, 'still': 1.0, 'settle': 2.0, 'son': 1.0, 'versatile': 1.0, 'after': 2.0, 'other': 1.0, 'moving': 1.0, 'we': 1.0, 'reviews': 1.0, 'thing': 1.0, 'used': 1.0}
Word element => {'going': 1.0, 'bounce': 1.0, 'your': 1.0, 'kids': 1.0, 'have': 1.0, 'never': 1.0, 'them': 1.0, 'rock': 1.0, 'moms': 1.0, 'way': 1.0, 'engineeers': 1.0, '2': 1.0, 'if': 1.0, 'expecting': 1.0, 'saw': 1.0, 'mine': 1.0, 'studies': 1.0, 'cradle': 1.0, 'videos': 1.0, 'got': 1.0, 'but': 4.0, 'mil': 1.0, 'flopping': 1.0, 'fussy': 1.0, 'baby': 3.0, 'my': 5.0, 'calm': 2.0, 'off': 1.0, 'swing': 2.0, 'naturally': 1.0, 'totally': 1.0, 'that': 2.0, 'over': 1.0, 'up': 1.0, 'really': 1.0, 'babies': 1.0, 'more': 1.0, 'thought': 1.0, 'it': 6.0, 'with': 1.0, 'buying': 1.0, 'pillow': 1.0, 'agree': 2.0, 'there': 2.0, 'even': 2.0, 'instead': 1.0, 'in': 3.0, 'reviewers': 1.0, 'a': 6.0, 'rainforest': 1.0, 'other': 1.0, 'their': 3.0, 'i': 5.0, 'not': 3.0, 'hold': 2.0, 'using': 1.0, 'arms': 1.0, 'and': 9.0, 'found': 1.0, 'sold': 1.0, 'wanted': 1.0, 'wail': 1.0, 'rough': 1.0, 'make': 1.0, 'help': 1.0, 'head': 1.0, 'from': 1.0, 'craigslist': 1.0, 'boutique': 1.0, 'fabric': 1.0, 'fp': 2.0, 'for': 2.0, 'love': 1.0, 'us': 1.0, 'after': 1.0, 'ended': 1.0, 'this': 1.0, 'few': 2.0, 'the': 9.0, 'of': 2.0, 'one': 1.0, 'months': 1.0, 'son': 2.0, 'adores': 1.0, 'mamaroo': 2.0, 'does': 1.0, 'do': 1.0, 'only': 1.0, 'front': 2.0, 'back': 2.0, 'you': 2.0, 'motion': 1.0, 'side': 6.0, 'bounced': 1.0, 'incredibly': 1.0, 'later': 1.0, 'slow': 1.0, 'is': 4.0, 'at': 1.0, 'to': 8.0, 'high': 1.0, 'were': 1.0, 'boys': 1.0, 'first': 1.0, 'had': 1.0, 'reflux': 1.0, 'colic': 1.0, 'would': 1.0, 'weeks': 1.0, 'bulky': 1.0, 'enough': 1.0, 'loved': 1.0, 'we': 3.0, 'then': 1.0, 'his': 1.0, 'was': 1.0, 'speed': 2.0, 'so': 1.0, 'watched': 1.0, 'out': 1.0}
Word element => {'that': 1.0, 'product': 1.0, 'deep': 1.0, 'workss': 1.0, 'to': 2.0, 'by': 1.0, 'us': 1.0, 'light': 1.0, 'month': 1.0, '4': 1.0, 'all': 1.0, 'have': 1.0, 'moving': 1.0, 'this': 3.0, 'invention': 1.0, 'while': 1.0, 'incredible': 1.0, 'nap': 1.0, 'during': 1.0, 'allowing': 1.0, 'most': 1.0, 'a': 2.0, 'great': 1.0, 'the': 3.0, 'is': 2.0, 'i': 1.0, 'old': 1.0, 'transition': 1.0, 'who': 1.0, 'helped': 1.0, 'not': 1.0, 'overcome': 1.0, 'sleep': 2.0, 'from': 1.0, 'day': 1.0, 'does': 1.0, 'long': 1.0, 'her': 2.0, 'mamaroo': 1.0}
Word element => {'worth': 1.0, 'am': 1.0, 'an': 1.0, 'swaddle': 1.0, 'small': 1.0, 'way': 1.0, 'there': 1.0, 'cool': 1.0, 'be': 1.0, 'cost': 1.0, 'would': 1.0, 'if': 1.0, 'being': 1.0, 'well': 1.0, 'likes': 1.0, 'insert': 1.0, 'infant': 2.0, 'made': 1.0, 'wish': 1.0, 'rough': 1.0, 'secure': 1.0, 'also': 1.0, 'seems': 1.0, 'material': 1.0, 'awesome': 1.0, '6lbs4': 1.0, 'baby': 1.0, '4moms': 1.0, 'big': 1.0, 'safely': 1.0, 'because': 1.0, 'style': 1.0, 'the': 6.0, 'nicely': 1.0, 'took': 2.0, 'gave': 1.0, 'that': 2.0, 'includes': 1.0, 'used': 1.0, 'set': 2.0, 'up': 2.0, 'tell': 1.0, 'otherwise': 1.0, 'i': 4.0, '4': 2.0, 'impressed': 1.0, 'on': 1.0, 'guy': 2.0, 'was': 2.0, 'minutes': 1.0, 'can': 2.0, 'even': 1.0, 'got': 1.0, 'mamaroo': 1.0, 'relax': 1.0, 'days': 1.0, 'a': 2.0, 't': 1.0, 'we': 1.0, 'ago': 1.0, 'toby': 1.0, 'too': 1.0, 'soon': 1.0, 'and': 6.0, 'seat': 3.0, 'our': 2.0, 'to': 2.0, 'as': 2.0, 'open': 1.0, 'it': 9.0, 'time': 1.0, 'package': 1.0, 'for': 2.0, 'stars': 1.0, 'love': 1.0, 'how': 1.0, 'about': 1.0, 'quiet': 1.0, 'is': 3.0, 'my': 3.0, 'fits': 1.0, 'harness': 1.0, 'its': 1.0, 'living': 1.0, 'in': 3.0, 'swaddled': 1.0, '5': 1.0, 'room': 1.0, 'little': 2.0}
Word element => {'sale': 1.0, 'garage': 1.0, 'priced': 1.0, 'than': 1.0, 'better': 1.0, 'yet': 1.0, 'mine': 1.0, 'parents': 1.0, 'would': 1.0, 'noise': 1.0, 'white': 1.0, 'enough': 1.0, 'has': 1.0, 'rarely': 1.0, 'problem': 1.0, 'level': 1.0, 'unlike': 1.0, 'should': 1.0, 'motions': 1.0, 'reviewers': 1.0, 'with': 1.0, 'completely': 1.0, 'built': 1.0, 'be': 3.0, 't': 1.0, 'folks': 1.0, 'doesn': 1.0, 'use': 2.0, 'her': 2.0, 'sound': 2.0, 'help': 1.0, 'plug': 2.0, 'peacefully': 1.0, 'or': 2.0, 'awhile': 1.0, 'sleep': 1.0, 'will': 2.0, 'years': 1.0, '13': 1.0, '1': 1.0, 'few': 1.0, 'using': 2.0, 'up': 1.0, 'naturally': 1.0, 'gave': 1.0, 'still': 4.0, 'some': 1.0, 'pricier': 1.0, 'now': 2.0, 'feb': 1.0, 'alot': 1.0, 'go': 2.0, 'we': 7.0, 'a': 8.0, 'bit': 1.0, 'can': 1.0, 'so': 2.0, '2010': 1.0, 'used': 1.0, 'decided': 1.0, 'more': 1.0, 'babies': 1.0, 'fall': 1.0, 'because': 1.0, 'that': 3.0, 'saw': 1.0, 'suppport': 1.0, 'mp3': 1.0, 'which': 1.0, 'like': 2.0, 'as': 4.0, 'body': 1.0, 'swing': 5.0, 'replace': 1.0, 'fisher': 4.0, 'months': 1.0, 'get': 1.0, 'time': 1.0, 'model': 1.0, 'kind': 1.0, 'does': 2.0, 'partially': 2.0, 'us': 1.0, 'feel': 1.0, 'sleepless': 1.0, 'mom': 1.0, 'thingy': 1.0, 'head': 1.0, 'functioning': 2.0, 'but': 4.0, 'flopped': 1.0, 'item': 1.0, 'our': 3.0, 'straight': 1.0, 'high': 1.0, 'job': 1.0, 'to': 6.0, 'seem': 1.0, 'snuzzle': 1.0, 'over': 1.0, 'concept': 1.0, 'for': 10.0, 'was': 7.0, 'well': 1.0, 'i': 7.0, 'price': 4.0, 'child': 1.0, 'out': 2.0, 'newborn': 1.0, 'and': 4.0, 'happy': 2.0, 'sounded': 1.0, 'occasionally': 1.0, 'after': 1.0, 'excited': 1.0, 'option': 1.0, 'agree': 1.0, 'great': 2.0, 'comfortable': 2.0, 'restless': 1.0, 'big': 1.0, 'thought': 2.0, 'it': 8.0, 'many': 1.0, 'baby': 2.0, 'she': 5.0, '2': 3.0, 'nights': 1.0, 'away': 1.0, '150': 1.0, 'thru': 1.0, 'snuzzler': 1.0, 'daughter': 2.0, 'got': 2.0, 'long': 1.0, 'on': 1.0, 'put': 1.0, 'been': 1.0, 'relaxed': 1.0, 'amazon': 1.0, 'fact': 1.0, 'mamaroo': 7.0, '2011': 1.0, 'me': 1.0, 'my': 3.0, 'about': 1.0, 'mostly': 1.0, 'apparently': 1.0, 'have': 3.0, 'off': 1.0, 'tried': 1.0, 'right': 1.0, 'not': 4.0, 'is': 2.0, 'at': 2.0, 'shaped': 1.0, 'seat': 1.0, 'in': 10.0, 'average': 1.0, 'sized': 1.0, 'faster': 1.0, 'just': 3.0, 'doing': 1.0, 'the': 22.0, 'of': 4.0, 'around': 1.0, 'egg': 2.0, 'cradle': 2.0, '9th': 1.0, 'material': 1.0, 'very': 1.0, 'coarse': 1.0, 'night': 1.0, 'you': 2.0, 'comfort': 1.0, 'gives': 2.0, 'cool': 1.0, 'again': 1.0, 'car': 1.0, 'soft': 1.0, 'are': 1.0, 'splurge': 1.0, 'plus': 1.0, 'other': 1.0, 'ever': 1.0, 'rainforest': 1.0, 'all': 1.0, 'helped': 1.0}
Word element => {'snugapuppy': 1.0, 'fisher': 1.0, 'buying': 1.0, 'craigslist': 1.0, 'on': 1.0, 'price': 1.0, 'both': 1.0, 'ended': 1.0, 'should': 1.0, 'doesn': 1.0, 'work': 1.0, 'but': 1.0, 'looking': 1.0, 'selling': 1.0, 'cool': 2.0, 'seems': 1.0, 'thing': 1.0, 'not': 1.0, 'do': 1.0, 'motion': 1.0, 'loves': 1.0, 'before': 2.0, 'and': 2.0, 'too': 1.0, 'lasted': 1.0, 'than': 1.0, 'less': 1.0, 'december': 1.0, 'they': 2.0, 'born': 1.0, 'sit': 1.0, 'highest': 1.0, 'have': 1.0, 'it': 4.0, 'month': 1.0, 'who': 2.0, 'you': 1.0, 'boys': 2.0, 'neither': 1.0, 't': 1.0, 's': 1.0, 'we': 1.0, 'a': 4.0, 'two': 1.0, 'our': 1.0, 'as': 1.0, 'twin': 1.0, 'of': 3.0, 'there': 1.0, 'even': 1.0, 'got': 1.0, 'gifts': 1.0, 'in': 2.0, 'needs': 1.0, 'for': 3.0, 'the': 1.0, 'slow': 2.0, 'purchase': 1.0, 'my': 2.0, 'were': 2.0, 'high': 1.0, 'super': 1.0, 'would': 1.0, 'this': 1.0, 'minute': 1.0, 'just': 1.0, 'screaming': 1.0, 'them': 1.0, 'baby': 1.0, 'these': 1.0, 'setting': 1.0, 'is': 2.0, 'what': 1.0, 'snail': 1.0, 'up': 1.0, 'pace': 1.0, 'if': 1.0}
Word element => {'need': 1.0, 'your': 1.0, 'gears': 1.0, 'left': 1.0, 'use': 2.0, 'be': 2.0, '25': 1.0, 'weight': 1.0, '17': 1.0, 'spare': 1.0, 'room': 1.0, 'when': 1.0, 'large': 1.0, 'child': 1.0, 'product': 2.0, 'price': 1.0, 'using': 1.0, 'swings': 1.0, '6': 1.0, 'have': 2.0, 'us': 1.0, 'complete': 1.0, 'made': 1.0, 'than': 1.0, '30': 1.0, 'loves': 1.0, 'actually': 1.0, 'house': 1.0, 's': 1.0, 'waste': 1.0, 'law': 1.0, 'buying': 1.0, 'minute': 1.0, 'irrated': 1.0, 'will': 1.0, 'means': 1.0, 'could': 2.0, 'slow': 1.0, 'you': 2.0, 'able': 2.0, 'motion': 1.0, 'ok': 2.0, 'mother': 1.0, 'works': 1.0, 'better': 2.0, 'mamaroo': 4.0, 'old': 2.0, 'collecting': 1.0, 'bedroom': 1.0, 'corner': 1.0, 'getting': 1.0, 'sat': 2.0, 'only': 1.0, 'paid': 3.0, 'basically': 2.0, 'by': 2.0, 'up': 1.0, 'annoyed': 1.0, 'seriously': 1.0, 'older': 1.0, 'bit': 1.0, 'off': 1.0, 'see': 1.0, 'tried': 1.0, 'until': 1.0, 'away': 1.0, 'had': 3.0, 'like': 1.0, 'but': 1.0, 'gear': 1.0, 'just': 4.0, 'said': 1.0, 'in': 8.0, 'turn': 1.0, 'sits': 1.0, 'at': 6.0, 'is': 7.0, 'mean': 1.0, 'swing': 4.0, 'dust': 1.0, 'replace': 1.0, 'of': 5.0, 'the': 13.0, 'each': 1.0, 'would': 2.0, 'injured': 1.0, 'as': 5.0, 'to': 10.0, 'our': 4.0, 'other': 1.0, 'an': 1.0, 'all': 4.0, 'there': 2.0, 'soon': 2.0, 'and': 10.0, 'local': 1.0, 'a': 13.0, 'months': 3.0, 'get': 2.0, 'bouncer': 2.0, 'going': 2.0, 'done': 1.0, 'again': 1.0, 'support': 1.0, 'window': 1.0, 'ended': 1.0, 'perfect': 1.0, 'few': 1.0, 'this': 4.0, 'display': 1.0, 'saw': 2.0, 'we': 9.0, 'reviews': 1.0, 'moving': 1.0, 'something': 1.0, 'buy': 3.0, 'for': 13.0, 'already': 1.0, 'him': 2.0, 'thought': 1.0, 'it': 20.0, 'with': 3.0, 'boutique': 1.0, 'begged': 1.0, 'parts': 1.0, 'realized': 1.0, 'eventually': 1.0, '200': 5.0, 'neck': 2.0, 'lbs': 2.0, 'was': 10.0, 'more': 3.0, 'husband': 2.0, 'head': 1.0, 'since': 1.0, '1': 1.0, 'great': 1.0, 'my': 4.0, 'me': 2.0, 'not': 3.0, '2': 2.0, 'thing': 1.0, 'limit': 1.0, 'let': 1.0, 'no': 1.0, 'especially': 1.0, 'can': 1.0, 'so': 5.0, 'new': 1.0, 'time': 2.0, 'baby': 8.0, 'many': 1.0, 'money': 4.0, 'bought': 2.0, 'lot': 1.0, 'one': 2.0, 'before': 1.0, 'born': 1.0, 'over': 1.0, 'work': 1.0, 'hard': 1.0, 'were': 1.0, 'together': 3.0, 'putting': 1.0, 'i': 14.0, 'broke': 1.0, 'sure': 2.0, 'return': 1.0, 'harm': 1.0, 'are': 1.0, 'plus': 1.0, 'first': 1.0, 'working': 1.0, 'got': 1.0, 'after': 1.0, 'arrived': 1.0, 'long': 1.0, 'on': 1.0, 'realize': 1.0, 'that': 10.0, 'did': 1.0, 'son': 1.0, 'around': 1.0, 'his': 2.0, 'put': 4.0, 'much': 2.0, 'love': 1.0, 'he': 8.0}
Word element => {'by': 1.0, 'used': 1.0, 'in': 1.0, 'or': 1.0, 'plugged': 1.0, 'be': 1.0, 'space': 1.0, 'swing': 1.0, 'that': 1.0, 'a': 1.0, 'can': 1.0, 'great': 1.0, 'love': 1.0, 'it': 1.0, 'battery': 1.0, 'takes': 1.0, 'of': 1.0, 'and': 1.0, 'up': 1.0, 'small': 1.0, 'amount': 1.0}
Word element => {'good': 1.0, 'as': 1.0, 'done': 1.0, 'would': 1.0, 'old': 1.0, 'regular': 1.0, 'a': 1.0, 'it': 1.0, 'our': 1.0, 'daughter': 1.0, 'likes': 1.0, 'have': 1.0, 'loves': 1.0, 't': 1.0, 'this': 1.0, 'swing': 2.0, 'just': 2.0, 'but': 1.0, 'i': 1.0, 'wouldn': 1.0, 'say': 1.0, 'baby': 1.0, 'she': 1.0}
Word element => {'these': 1.0, 'of': 2.0, 'my': 1.0, 'the': 1.0, 'chair': 1.0, 'best': 1.0, 'swing': 1.0, 'rocker': 1.0, 'all': 2.0, 'children': 1.0, 'for': 1.0, 'in': 1.0, 'had': 1.0, 'wish': 1.0, 'one': 2.0, 'i': 1.0}
Word element => {'one': 1.0, 'little': 1.0, 'other': 1.0, 'swing': 2.0, 'that': 2.0, 'better': 1.0, 'first': 1.0, 'it': 3.0, 'received': 1.0, 'i': 2.0, 'child': 2.0, 'options': 1.0, 'love': 1.0, 'for': 2.0, 'had': 1.0, 'machine': 1.0, 'soo': 1.0, 'play': 1.0, 'and': 3.0, 'is': 2.0, 'calm': 1.0, 'second': 1.0, 'mamaroo': 1.0, 'the': 4.0, 'fact': 1.0, 'my': 2.0, 'combo': 1.0, 'you': 1.0, 'we': 1.0, 'a': 2.0, 's': 1.0, 'can': 1.0, 'your': 1.0, 'great': 1.0, 'ipod': 1.0, 'smaller': 1.0, 'so': 1.0, 'our': 1.0, 'to': 2.0, 'any': 1.0, 'through': 1.0, 'real': 1.0, 'are': 1.0, 'motions': 1.0, 'speed': 1.0, 'easy': 1.0, 'than': 2.0, 'find': 1.0, 'much': 2.0, 'works': 1.0}
Word element => {'nursery': 1.0, 'great': 1.0, 'this': 1.0, 'it': 1.0, 'instantly': 1.0, 'falls': 1.0, 'swing': 3.0, 'may': 1.0, 'easy': 1.0, 'price': 1.0, 'about': 1.0, 'while': 1.0, 'addition': 1.0, 'he': 1.0, 'how': 1.0, 'two': 1.0, 'mamaroo': 1.0, 'seem': 1.0, 'when': 1.0, 'you': 1.0, 'built': 1.0, 'in': 2.0, 'minutes': 1.0, 'asleep': 1.0, 'the': 5.0, 'disassemble': 1.0, 'sits': 1.0, 'got': 1.0, 'almost': 1.0, 'sturdy': 1.0, 'we': 1.0, 'a': 4.0, 'well': 1.0, 'is': 3.0, 'christmas': 1.0, 'gift': 1.0, 'and': 3.0, 'getting': 1.0, 'little': 1.0, 'very': 1.0, 'high': 1.0, 'definitely': 1.0, 'are': 2.0, 'quality': 1.0, 'assembles': 1.0, 'inside': 1.0, 'there': 1.0, 'travel': 1.0, 'instructions': 1.0, 'on': 1.0, 'loves': 1.0, 'that': 1.0, 'box': 1.0, 'any': 1.0, 'as': 1.0, 'our': 1.0, 'to': 1.0, 'product': 1.0, 'assemble': 1.0, 'for': 2.0, 'boy': 1.0}
Word element => {'well': 1.0, 'stroller': 1.0, 'out': 1.0, 'some': 1.0, 'm': 1.0, 'us': 2.0, 'returned': 1.0, 'does': 1.0, 'i': 2.0, 'cleanwater': 1.0, 'work': 2.0, 'but': 2.0, 'soon': 1.0, 'and': 1.0, 'wanted': 1.0, 'doesn': 1.0, 'was': 1.0, 'it': 5.0, 'this': 1.0, 'with': 2.0, 'think': 1.0, 'dud': 1.0, 'just': 2.0, 'not': 1.0, 'the': 2.0, 'they': 1.0, 'movement': 1.0, 'as': 1.0, 'to': 5.0, 'sleep': 1.0, 'our': 1.0, 'awesome': 1.0, 'baby': 1.0, 're': 1.0, 'enough': 1.0, 'didn': 1.0, 'supposed': 1.0, 'for': 4.0, 'product': 2.0, 'that': 1.0, 'been': 1.0, 'case': 1.0, 'we': 3.0, 't': 2.0, 'go': 1.0, 'a': 2.0, 's': 1.0, 'create': 1.0, 'collection': 1.0, '4moms': 1.0, 'infant': 1.0, 'sure': 1.0, 'tub': 1.0, 'come': 1.0, 'purchased4moms': 1.0}
Word element => {'top': 1.0, 'confidence': 1.0, 'full': 1.0, 'buy': 1.0, 'support': 1.0, 'agents': 1.0, 'notch': 1.0, 'resolved': 1.0, 'issue': 1.0, 'affiliated': 1.0, 'am': 2.0, 'test': 1.0, 'discounts': 1.0, 'where': 1.0, 'insider': 1.0, 'their': 4.0, 'customer': 4.0, 'one': 1.0, 'happy': 1.0, 'word': 1.0, 'awake': 1.0, 'while': 1.0, 'done': 1.0, 'gives': 1.0, 'loves': 1.0, '5': 1.0, 'giggle': 1.0, 'had': 1.0, 'kick': 1.0, 'd': 1.0, 'was': 1.0, 'gradually': 1.0, 'fell': 1.0, 'program': 1.0, 'after': 2.0, 'would': 1.0, 'swing': 1.0, 'opposed': 1.0, 'getting': 1.0, 'train': 1.0, 'hungry': 1.0, '3': 1.0, 'no': 1.0, 'press': 1.0, 'wall': 1.0, 'into': 1.0, 'block': 1.0, 'about': 1.0, 'play': 1.0, 'driving': 1.0, 'by': 1.0, 'gas': 1.0, 'chores': 1.0, 'waste': 1.0, 'needs': 1.0, 'who': 1.0, 'forth': 1.0, 'sleep': 1.0, 'back': 1.0, 'swinging': 1.0, 'stuff': 1.0, 'just': 2.0, 'on': 5.0, 'portable': 1.0, 'movements': 1.0, 'bands': 1.0, 'when': 1.0, 'sit': 3.0, 'i': 4.0, 's': 1.0, 'plug': 1.0, 'phenomenal': 2.0, 'to': 9.0, 'as': 4.0, 'your': 3.0, 'any': 1.0, 'a': 5.0, 'son': 2.0, 'be': 1.0, 'and': 17.0, 'toss': 1.0, 'not': 3.0, 'two': 1.0, 'little': 2.0, 'amazing': 1.0, 'company': 2.0, 'only': 3.0, 'do': 1.0, 'put': 1.0, 'floor': 2.0, 'much': 1.0, 'him': 2.0, 'it': 12.0, 'website': 1.0, 'me': 2.0, 'my': 4.0, 'may': 1.0, 'equally': 1.0, 'at': 1.0, 'is': 6.0, 'comes': 1.0, 'zips': 1.0, 'so': 4.0, 'lightweight': 1.0, 'can': 4.0, 'but': 1.0, 'work': 1.0, '4moms': 2.0, 'great': 2.0, 'happily': 1.0, 'asleep': 1.0, 'ipod': 1.0, 'swings': 2.0, 'will': 1.0, 'around': 1.0, 'music': 1.0, 'his': 2.0, 'took': 1.0, 'feed': 2.0, 'even': 2.0, 'used': 3.0, 'expensive': 1.0, 'for': 2.0, 'the': 11.0, 'of': 3.0, 'wash': 1.0, 'sound': 1.0, 'up': 1.0, 'takes': 1.0, 'earn': 1.0, 'replace': 1.0, 'booster': 1.0, 'mamaroo': 1.0, 'space': 1.0, 'that': 1.0, 'he': 7.0, 'them': 1.0, 'has': 2.0, 'spreading': 1.0, 'easier': 1.0, 'playing': 1.0, 'an': 2.0, 'in': 6.0, 'occasional': 1.0, 'things': 1.0, 'you': 5.0, 'service': 3.0, 'still': 2.0, 'if': 2.0, 'every': 1.0, 'bottle': 3.0, 'this': 4.0, 'few': 2.0, 'hours': 1.0, 'cover': 1.0, 'appreciation': 1.0, 'off': 1.0, 'time': 2.0, 'model': 1.0, 'kind': 1.0, 'days': 1.0, 'anything': 1.0, 'with': 3.0, 'front': 1.0, 'fisher': 1.0, 'elastic': 1.0, 'snaps': 1.0, 'way': 1.0, 'than': 2.0, 'threaded': 1.0, 'like': 1.0, 'product': 1.0, 'products': 1.0, 'price': 1.0, 'watch': 1.0, 'through': 1.0, 'give': 1.0, 'there': 3.0, 'are': 1.0, 'baby': 3.0, 'speakers': 1.0, 'many': 1.0, 'more': 1.0, 'settings': 1.0, 'months': 1.0, 'bouncer': 1.0, 'get': 2.0, 'speeds': 1.0}
Word element => {'much': 1.0, 'move': 1.0, 'ribbon': 1.0, 'flat': 1.0, 'head': 1.0, 'hurts': 1.0, 'obstruction': 1.0, 'rather': 1.0, 'of': 2.0, 'sort': 2.0, 'some': 2.0, 'tied': 1.0, 'when': 1.0, 'loves': 1.0, 'that': 1.0, 'doesnt': 1.0, 'switch': 1.0, 'off': 2.0, 'safety': 1.0, 'squashed': 1.0, 'getting': 2.0, 'system': 1.0, 'fingers': 1.0, 'senses': 1.0, 'curious': 1.0, 'very': 1.0, 'little': 1.0, 'see': 1.0, 'but': 2.0, 'can': 1.0, 'below': 1.0, 'a': 5.0, 'well': 1.0, 'sure': 1.0, 'v1': 1.0, 'balls': 2.0, 'was': 1.0, 'motions': 1.0, 'the': 6.0, 'great': 1.0, 'were': 1.0, 'parts': 1.0, 'plush': 1.0, 'above': 2.0, 'her': 2.0, 'than': 1.0, 'because': 1.0, 'does': 1.0, 'sit': 1.0, 'not': 1.0, 'our': 2.0, 'as': 2.0, 'rolling': 1.0, 'like': 1.0, 'start': 1.0, 'protective': 1.0, 'i': 4.0, 'still': 3.0, 'old': 1.0, 'loooves': 1.0, 'it': 3.0, 'colorful': 1.0, 'month': 1.0, 'she': 1.0, 'moved': 1.0, 'and': 1.0, 'assembly': 1.0, 'motor': 1.0, 'o': 1.0, 'bearing': 1.0, 'quick': 1.0, 'moving': 1.0, 'there': 3.0, '0': 2.0, 'wish': 3.0, 'needs': 1.0, 'bit': 1.0, 'v2': 1.0, 'quiet': 1.0, 'is': 3.0, 'more': 1.0, 'around': 1.0, 'super': 1.0, 'would': 1.0, 'be': 1.0, 'on': 1.0, '3': 1.0, 'skirt': 1.0}
Word element => {'of': 1.0, 'when': 1.0, 'a': 1.0, 'younger': 1.0, 'will': 1.0, 'but': 1.0, 'received': 1.0, 'baby': 1.0, 'colicky': 1.0, 'my': 3.0, 'the': 1.0, 'ever': 1.0, 'have': 1.0, 'loves': 2.0, 'i': 2.0, 'day': 1.0, 'son': 2.0, 'best': 1.0, 'that': 1.0, 'be': 1.0, 'product': 1.0, 'grows': 1.0, 'he': 1.0, 'come': 1.0, 'older': 1.0, 'this': 2.0, 'it': 4.0, 'only': 1.0, 'wish': 1.0, 'had': 1.0, 'for': 1.0, 'sad': 1.0, 'out': 2.0, 'is': 1.0, 'sooner': 1.0}
Word element => {'does': 1.0, 'mom': 1.0, 'says': 1.0, 'enough': 1.0, 'fast': 1.0, 'and': 1.0, 'moves': 1.0, 'oh': 1.0, 'but': 1.0, 'doesn': 2.0, 'boring': 1.0, 'that': 2.0, 'sad': 1.0, 'is': 2.0, 'move': 1.0, 'better': 1.0, 'swing': 3.0, 'the': 2.0, 't': 2.0, 'cry': 1.0, 'in': 1.0, 'wish': 1.0, 'baby': 1.0, 'she': 2.0, 'my': 1.0, 'one': 1.0, 'i': 3.0, 'not': 1.0, 'just': 3.0, 'would': 2.0, 'had': 1.0, 'normal': 1.0, 'day': 1.0, 'from': 1.0, 'bought': 1.0, 'well': 1.0, 'a': 1.0, 'bet': 1.0, 'this': 1.0, 'it': 6.0, 'like': 3.0, 'so': 1.0, 'mobile': 1.0, 'much': 1.0}
Word element => {'looking': 1.0, 'origami': 1.0, 'cool': 2.0, 'us': 1.0, 'investment': 1.0, 'wasn': 1.0, 'hours': 1.0, '3': 1.0, 'grow': 1.0, 'keep': 1.0, 'large': 1.0, 'just': 1.0, 'going': 1.0, 'but': 3.0, 'alas': 1.0, 'modern': 1.0, 'by': 1.0, 'more': 2.0, 'would': 2.0, 'switched': 1.0, 'attached': 1.0, 'pieces': 1.0, 'textures': 1.0, 'had': 2.0, 'they': 1.0, 'maybe': 2.0, 'quickly': 1.0, 'instead': 1.0, 'even': 1.0, 'tag': 1.0, 'her': 1.0, 'very': 3.0, 'not': 2.0, 'mobile': 2.0, 'out': 4.0, 'wants': 1.0, 'bored': 2.0, 'trying': 1.0, 'minutes': 1.0, 'enough': 2.0, 'move': 1.0, 'seem': 2.0, 'doesn': 2.0, 'were': 1.0, 'liked': 1.0, 'wish': 3.0, 'run': 1.0, 'save': 1.0, 'could': 2.0, 'will': 2.0, 'fun': 1.0, 'fabulous': 1.0, 'their': 1.0, 'noise': 1.0, 'feel': 1.0, 'your': 1.0, 'long': 1.0, 'realize': 1.0, 'on': 2.0, 'didn': 1.0, 'be': 2.0, 'built': 1.0, 'through': 1.0, 'iphones': 1.0, 'look': 1.0, 'is': 7.0, 'around': 1.0, 'toes': 1.0, '2': 2.0, 'our': 2.0, 'usable': 1.0, 'hoping': 1.0, 'to': 10.0, 'that': 10.0, 'little': 1.0, 'plugs': 1.0, 'into': 1.0, 'and': 8.0, 'moms': 1.0, 'a': 9.0, 'likes': 1.0, 't': 6.0, 'total': 1.0, 'super': 2.0, 'in': 7.0, 'honestly': 1.0, 'love': 4.0, '10': 1.0, 'ambient': 1.0, 'for': 7.0, 'wanted': 1.0, 'trade': 1.0, 'parent': 2.0, 'off': 1.0, 'this': 4.0, '30': 1.0, 'control': 1.0, 'great': 2.0, 'friend': 1.0, '1': 1.0, 'really': 2.0, 'there': 1.0, 'the': 14.0, 'of': 5.0, 'do': 1.0, 'calm': 1.0, 'my': 4.0, 'as': 2.0, 'bend': 1.0, 'balls': 1.0, 'are': 2.0, 'play': 2.0, 'about': 3.0, 'wall': 1.0, 'she': 7.0, 'speakers': 1.0, 'unfortunately': 1.0, 'baby': 4.0, 'stuck': 1.0, 'entertained': 1.0, 'swing': 9.0, '4': 2.0, 'replace': 1.0, 'know': 1.0, 'easy': 1.0, 'scaring': 1.0, 'one': 1.0, 'lot': 1.0, 'don': 2.0, 'sound': 1.0, 'have': 6.0, 'gets': 1.0, 'adjust': 1.0, 'anything': 1.0, 'like': 2.0, 'good': 1.0, 'which': 1.0, 'with': 5.0, 'volume': 1.0, 'feature': 1.0, 'or': 2.0, 'you': 4.0, 'things': 2.0, 'motion': 1.0, 'can': 2.0, 'so': 5.0, 'speed': 1.0, 'over': 2.0, 'hard': 1.0, 'take': 1.0, 'then': 1.0, 'we': 3.0, 'moving': 1.0, 'am': 1.0, 'strollers': 1.0, 'beginning': 1.0, 'batteries': 3.0, 'bought': 1.0, 'get': 1.0, 'months': 2.0, 'different': 5.0, 'new': 1.0, 'time': 2.0, 'uses': 1.0, 'd': 1.0, 'child': 1.0, 'price': 2.0, 'them': 1.0, 'has': 2.0, 'coming': 1.0, 'fast': 1.0, 'i': 11.0, 'well': 1.0, 'it': 12.0, 'already': 1.0, 'spent': 2.0, 'alone': 1.0, 'every': 1.0, 'if': 2.0, 'when': 1.0, 'sit': 1.0, 'what': 1.0}
Word element => {'of': 3.0, 'there': 1.0, 'purpose': 1.0, 'to': 2.0, 'the': 10.0, 'reiterate': 1.0, 'wheels': 3.0, 'three': 1.0, 'other': 1.0, 'tensioners': 1.0, 'reviewers': 1.0, 'be': 1.0, 'within': 1.0, 'constantly': 1.0, 'on': 2.0, 'won': 1.0, 'fall': 1.0, 'is': 2.0, 'wheel': 1.0, 'that': 1.0, 'back': 2.0, 'will': 2.0, 'inside': 1.0, 'weeks': 1.0, '100': 1.0, 'gasket': 1.0, 'off': 2.0, 'wood': 1.0, 't': 1.0, 'a': 2.0, 'go': 1.0, 'for': 1.0, 'soft': 1.0, 'too': 1.0, 'and': 2.0, 'screw': 1.0, 'contacted': 1.0, 'have': 1.0, 'rubber': 1.0, 'defeats': 1.0, 'strip': 1.0, 'light': 1.0, 'front': 1.0, 'use': 1.0, 'wasted': 1.0, 'it': 1.0, 'fell': 1.0, 'seller': 1.0, 'does': 1.0, 'not': 1.0, 'way': 1.0}
Word element => {'muscle': 1.0, 'some': 1.0, 'need': 1.0, 'forewarned': 1.0, 'colors': 1.0, 'bright': 1.0, 'with': 1.0, 'perfect': 1.0, 'safety': 1.0, 'that': 1.0, 'been': 1.0, 'have': 1.0, 'you': 2.0, 'son': 1.0, 'but': 1.0, 'can': 1.0, 'it': 5.0, 'mandatory': 1.0, 'reviews': 1.0, 'assembled': 1.0, 'the': 6.0, 'is': 2.0, 'more': 1.0, 'read': 1.0, 'requirement': 1.0, 'my': 1.0, 'may': 1.0, 'jolly': 1.0, 'walker': 2.0, 'if': 1.0, 'being': 1.0, 'low': 1.0, 'requiring': 1.0, 'be': 1.0, 'putting': 1.0, 'an': 1.0, 'ideal': 1.0, 'almost': 1.0, 'off': 1.0, 'law': 1.0, 'generated': 1.0, 'a': 3.0, 'in': 1.0, 'seemed': 1.0, 'assemble': 2.0, 'for': 1.0, 'tips': 2.0, 'sweat': 1.0, 'together': 1.0, 'something': 1.0, 'about': 1.0, 'once': 1.0, 'of': 3.0, 'gravity': 1.0, 'screws': 2.0, 'them': 1.0, 'cut': 1.0, 'securely': 1.0, 'and': 2.0, 'i': 2.0, 'strength': 1.0, 'than': 1.0, 'had': 1.0, 'center': 1.0, 'as': 1.0, 'to': 2.0, 'tighten': 1.0, 'cutting': 1.0}
Word element => {'with': 1.0, 'am': 1.0, 'sturdy': 1.0, 'seems': 1.0, 'motion': 1.0, 'used': 1.0, 'great': 1.0, 'until': 1.0, 'while': 1.0, 'high': 1.0, 'very': 2.0, 'walker': 1.0, 'onto': 1.0, 'thrilled': 1.0, 'just': 1.0, 'by': 1.0, 'pulling': 1.0, 'cart': 1.0, 'pushing': 1.0, 'weight': 1.0, 'adds': 1.0, 'which': 1.0, 'in': 1.0, 'books': 1.0, 'her': 1.0, 'holding': 1.0, 'chose': 1.0, 'do': 1.0, 'flying': 1.0, 'down': 1.0, 'stand': 1.0, 'walk': 1.0, 'so': 1.0, 'up': 2.0, 'on': 1.0, 'put': 1.0, 'nothing': 1.0, 'i': 5.0, 'old': 1.0, 'floor': 1.0, 'as': 1.0, 'to': 3.0, 'gets': 1.0, 'wants': 1.0, 'some': 1.0, 'already': 2.0, 'my': 1.0, 'this': 2.0, 'got': 1.0, 'wouldn': 1.0, '9': 1.0, 'product': 1.0, 'for': 2.0, 'pull': 1.0, 'daughter': 1.0, 'who': 1.0, 'toy': 1.0, 'has': 1.0, 'adjustable': 1.0, 'the': 6.0, 'sitting': 1.0, 'but': 1.0, '2': 1.0, 'friction': 2.0, 'it': 7.0, 'month': 1.0, 'she': 4.0, 'and': 4.0, 'across': 1.0, 'around': 1.0, 'is': 2.0, 'wonderful': 1.0, 'basket': 1.0, 'loves': 1.0, 'unpacked': 1.0, 'hours': 1.0, 'a': 2.0, 'ago': 1.0, 't': 1.0, 'go': 1.0, 'we': 1.0, 'have': 2.0}
Word element => {'without': 1.0, 'sure': 1.0, 'wise': 1.0, 'planning': 1.0, 'wan': 1.0, 'personally': 1.0, 'spend': 1.0, 'like': 1.0, 'you': 3.0, 'bother': 1.0, 'should': 1.0, 'manner': 1.0, 'constructed': 1.0, 'distribution': 1.0, 'challenging': 1.0, 'amazon': 1.0, 'through': 1.0, 'returning': 1.0, 'makes': 1.0, 'outside': 1.0, 'retailer': 1.0, 'especially': 1.0, 'phone': 1.0, 'responsive': 1.0, 'into': 1.0, 'designed': 1.0, 'non': 1.0, 'which': 1.0, 'address': 1.0, 'viable': 1.0, 'your': 1.0, 'any': 1.0, 'returns': 1.0, 'or': 1.0, 'had': 1.0, 'be': 1.0, 'contact': 1.0, 'there': 1.0, 'if': 1.0, 'e': 1.0, 'service': 1.0, 'still': 1.0, 'months': 1.0, 'workshop': 2.0, 'worst': 1.0, 'loves': 1.0, 'reason': 1.0, 'purchase': 1.0, 'only': 1.0, 'up': 1.0, 'rebuilt': 1.0, 'construction': 1.0, 'thought': 1.0, 'it': 4.0, 'hardware': 2.0, 'daughter': 2.0, 'line': 1.0, 'enjoys': 1.0, 'but': 2.0, 'most': 1.0, 'back': 1.0, 'child': 2.0, 'a': 2.0, 'attempting': 1.0, 'weight': 2.0, 'not': 2.0, 'slippage': 1.0, 'ability': 1.0, 'number': 1.0, 'wonderful': 2.0, 'hassles': 1.0, 'and': 7.0, 'too': 1.0, 'design': 2.0, 'due': 2.0, 'this': 3.0, 'facilitate': 1.0, 'jolly': 1.0, 'went': 1.0, 'those': 1.0, 'add': 1.0, 'for': 1.0, 'preventing': 1.0, 'on': 3.0, 'can': 2.0, 'so': 1.0, 'constantly': 1.0, 'pressure': 2.0, '12': 1.0, 'website': 1.0, 'my': 3.0, 'place': 1.0, 'item': 2.0, 'us': 1.0, 'also': 2.0, '16': 1.0, 'much': 2.0, 'wheel': 1.0, 'was': 2.0, 'than': 1.0, 'way': 1.0, 'tracking': 1.0, 'bent': 1.0, 'to': 11.0, 'well': 1.0, 'i': 6.0, 'from': 4.0, 'provides': 1.0, 'over': 1.0, 'hard': 1.0, 'just': 1.0, 'after': 1.0, 'walk': 1.0, 'new': 1.0, 'walker': 2.0, 'time': 4.0, 'its': 1.0, 'research': 1.0, 'purchased': 2.0, 'attach': 1.0, 'make': 1.0, 'rubber': 1.0, 'repaired': 1.0, 'spending': 1.0, 'she': 1.0, 'gaskets': 1.0, 'easily': 1.0, 'because': 2.0, 'fall': 1.0, 'that': 3.0, 'each': 1.0, 'off': 1.0, 'wood': 1.0, 'is': 6.0, 'at': 1.0, 'floors': 1.0, 'loosing': 1.0, 'sliding': 1.0, 'essence': 1.0, 'out': 1.0, 'month': 1.0, 'under': 3.0, 'doing': 1.0, 'the': 21.0, 'of': 2.0, 'have': 2.0, 'seller': 1.0, 'attempt': 1.0, 'now': 2.0, 'glued': 1.0, 'them': 1.0, 'customer': 1.0, 'wheels': 2.0, 'quality': 1.0, 'in': 6.0, 'several': 1.0, 'mail': 1.0, 'no': 2.0, 'other': 1.0, 'all': 2.0, 'an': 2.0, 'finally': 1.0, 'prevent': 1.0, 'toy': 1.0, 'decided': 1.0, 'used': 1.0, 'horrible': 1.0, 'body': 1.0, 'are': 1.0, 'summary': 1.0, 'poor': 1.0, 'tipping': 1.0, 'future': 1.0, 'times': 1.0, 'duress': 1.0, 'better': 1.0, 'incredibly': 1.0, 'ground': 1.0, 'twice': 1.0, 'replaced': 1.0, 'with': 1.0}
Word element => {'complaints': 1.0, 'or': 1.0, 'i': 2.0, 'issues': 1.0, 'which': 1.0, 'is': 1.0, 'for': 1.0, 'love': 1.0, 'works': 1.0, 'my': 1.0, 'with': 1.0, 'only': 1.0, 'work': 1.0, 'nosefrida': 2.0, 'that': 1.0, 'so': 1.0, 'any': 1.0, 'baby': 1.0, 'don': 1.0, 'great': 1.0, 'the': 3.0, 'these': 1.0, 't': 1.0, 'thing': 1.0, 'have': 1.0}
Word element => {'glad': 1.0, 'extra': 1.0, 'out': 2.0, 'sucking': 1.0, 'be': 1.0, 'filters': 1.0, 'll': 1.0, 'the': 1.0, 'these': 2.0, 'i': 8.0, 'initially': 1.0, 'nose': 1.0, 'would': 1.0, 'not': 1.0, 'just': 1.0, 'need': 2.0, 'rather': 1.0, 'of': 4.0, 'for': 1.0, 'thought': 1.0, 'nosefrida': 1.0, 'but': 2.0, 'all': 1.0, 'have': 2.0, 'baby': 1.0, 'them': 3.0, 'ahead': 1.0, 'and': 2.0, 'get': 1.0, 'stuff': 1.0, 'your': 1.0, 'on': 1.0, 'bought': 1.0, 'months': 1.0, 'hand': 1.0, 'instead': 1.0, 'running': 1.0, 'my': 2.0, 's': 1.0, 'go': 1.0, 'might': 1.0, 'ago': 1.0, 'you': 2.0, 'when': 1.0, 'd': 1.0, 'm': 2.0, 'three': 1.0, 'now': 1.0, 'opening': 1.0, 'package': 1.0}
Word element => {'want': 1.0, 'from': 1.0, 'gunk': 1.0, 'filters': 1.0, 'and': 1.0, 'do': 2.0, 'it': 2.0, 'snotsucker': 1.0, '34': 2.0, 'keep': 1.0, 'better': 1.0, 'what': 1.0, 'does': 1.0, 'her': 1.0, 'don': 1.0, 'baby': 1.0, 'will': 1.0, 'but': 1.0, 'i': 1.0, 'just': 1.0, 'uh': 1.0, 'supposed': 1.0, 'be': 1.0, 'to': 2.0, 'may': 1.0, 'distasteful': 1.0, 'nose': 1.0, 'where': 1.0, 'going': 1.0, 'when': 1.0, 'm': 1.0, 'feel': 1.0, 'try': 1.0, 'bit': 1.0, 'a': 2.0, 'you': 1.0, 's': 1.0, 'hero': 1.0, 'concept': 1.0, 'willing': 1.0, 't': 1.0, 'the': 4.0, 'has': 1.0, 'stuffy': 1.0, 'anything': 1.0, 'that': 1.0}
Word element => {'them': 1.0, 'use': 1.0, 'happier': 1.0, 'couldn': 1.0, 'away': 1.0, 'to': 1.0, 'be': 1.0, 'right': 1.0, 'shipped': 1.0, 'i': 2.0, 'my': 1.0, 'were': 1.0, 'it': 1.0, 'love': 1.0, 'nosefrida': 1.0, 'and': 2.0, 't': 1.0, 'filters': 1.0, 'they': 1.0, 'these': 1.0, 'keep': 1.0, 'sanitary': 1.0}
Word element => {'airdry': 1.0, 'just': 1.0, 'per': 1.0, 'rinse': 1.0, 'filter': 2.0, 'do': 1.0, 'what': 1.0, 'these': 1.0, 'the': 3.0, 'doesn': 1.0, 'really': 1.0, 'but': 1.0, 'change': 1.0, '4': 1.0, 'i': 3.0, 'safe': 1.0, 'at': 1.0, 'while': 1.0, 'filters': 3.0, 'replacement': 1.0, 'have': 2.0, 'must': 1.0, 'day': 3.0, 'injure': 1.0, 'kids': 1.0, 'that': 2.0, 'their': 2.0, 'it': 1.0, 'nostrils': 1.0, 'maintain': 1.0, 'nosefrida': 1.0, 'with': 1.0, 'and': 3.0, 'is': 1.0, 'say': 1.0, 'are': 1.0, 're': 1.0, 'my': 1.0, 'for': 1.0, 'expensive': 1.0, 'supposed': 1.0, 'noses': 1.0, 'least': 1.0, 'to': 3.0, 'after': 2.0, 'you': 1.0, 'twins': 1.0, 'each': 2.0, 'use': 3.0, 'having': 1.0, 'cleared': 1.0, 'hygiene': 1.0, 'twice': 1.0, 't': 1.0, 's': 2.0, 'a': 3.0}
Word element => {'crackrock': 1.0, 'for': 1.0, 'looking': 1.0, 'using': 1.0, 'seen': 1.0, 'sucker': 2.0, 'sick': 1.0, 'our': 1.0, 'to': 7.0, 'as': 2.0, 'made': 1.0, 'which': 1.0, 'comment': 1.0, 'on': 4.0, 'glowing': 1.0, 'any': 1.0, 'keeps': 1.0, 'i': 4.0, 'product': 2.0, 'recommendation': 1.0, 'has': 1.0, 'review': 1.0, 'led': 1.0, 'because': 1.0, 'borrow': 1.0, 'reminded': 1.0, 'best': 1.0, 'market': 1.0, 'my': 6.0, 'me': 1.0, 'not': 1.0, 'and': 3.0, 'the': 7.0, 'of': 2.0, '431am': 1.0, 'this': 6.0, 'in': 1.0, 'yet': 1.0, 'since': 3.0, 'keep': 1.0, 'black': 1.0, 'have': 2.0, 'addicted': 1.0, 'used': 1.0, 'friday': 1.0, 'described': 1.0, 'snot': 2.0, 'great': 1.0, 'live': 1.0, 'haven': 1.0, 'then': 1.0, 'moving': 1.0, 'we': 3.0, 's': 4.0, 't': 3.0, 'could': 1.0, '70': 1.0, 'purchase': 1.0, 'only': 1.0, 'it': 3.0, 'is': 4.0, 'apparently': 1.0, 'use': 2.0, 'son': 1.0, 'said': 2.0, 'degrees': 1.0, 'initial': 1.0, 'was': 1.0, 'question': 1.0, 'doesn': 2.0, 'alas': 1.0, 'ingesting': 1.0, 'can': 1.0, 'so': 2.0, 'babies': 2.0, 'amazon': 1.0, 'been': 2.0, 'florida': 1.0, 'r': 2.0, 'sinuses': 1.0, 'carry': 2.0, 'had': 1.0, 'no': 1.0, 'answer': 2.0, 'awesome': 1.0, 'us': 2.0, 'logic': 1.0, 'also': 1.0, 'getting': 1.0, 'recently': 1.0, 'they': 1.0, 'suck': 1.0, 'nosefrida': 2.0, 'out': 2.0, 'asked': 1.0, 'still': 1.0, 'if': 2.0, 'clear': 1.0, 'why': 1.0, 'filter': 1.0, 'from': 2.0, 'jack': 3.0, 'nasties': 1.0, 'she': 1.0, 'baby': 1.0, 'easy': 1.0, 'neighbor': 4.0, 'theirs': 1.0}
Word element => {'needed': 1.0, 'that': 1.0, 'when': 1.0, 'one': 1.0, 'product': 1.0, 'strange': 1.0, 'these': 1.0, 'fits': 1.0, 'but': 1.0, 'just': 1.0, 'like': 1.0, 'original': 1.0, 'snot': 1.0, 'are': 1.0, 'the': 2.0, 'truly': 1.0, 'a': 1.0, 'sucker': 1.0, 'bill': 1.0, 'filters': 1.0}
Word element => {'lifesaver': 1.0, 'and': 2.0, 'filters': 1.0, 'around': 1.0, 'going': 1.0, 'lately': 1.0, 'bugs': 1.0, 'old': 1.0, 'gross': 1.0, 'little': 1.0, 'been': 2.0, 'the': 5.0, 'a': 2.0, 'is': 1.0, 'about': 1.0, 'sucking': 1.0, '5': 1.0, 'think': 1.0, 'out': 1.0, 'with': 1.0, 'it': 1.0, 'while': 1.0, 'to': 1.0, 'mo': 1.0, 'boogies': 1.0, 'of': 1.0, 'has': 1.0, 'have': 1.0, 'all': 1.0, 'babies': 1.0, 'nose': 1.0, 'nosefrida': 1.0, 'our': 1.0, 'sick': 1.0}
Word element => {'sucking': 1.0, 'nose': 1.0, 'old': 1.0, 'with': 2.0, 'out': 1.0, 'win': 1.0, 'filters': 2.0, 'baby': 1.0, 'ever': 1.0, 'in': 1.0, 'for': 2.0, 'replacement': 1.0, 'more': 1.0, 'the': 4.0, 'new': 1.0, 'yucky': 1.0, 'best': 1.0, 'invention': 1.0, 'no': 1.0}
Word element => {'weeks': 1.0, 'didn': 1.0, 'they': 1.0, 'said': 1.0, 'accidentally': 1.0, 'have': 1.0, 't': 1.0, 'threw': 1.0, 'bru': 1.0, 'out': 1.0, 'tough': 1.0, 'store': 1.0, 'filter': 1.0, 'that': 1.0, 'came': 1.0, 'it': 1.0, 'for': 1.0, 'in': 1.0, 'locating': 1.0, 'had': 1.0, 'with': 1.0, 'time': 1.0}
Word element => {'sf': 1.0, 'wiping': 1.0, 'face': 1.0, 'everywhere': 1.0, 'on': 1.0, 'over': 1.0, 'all': 1.0, 'snot': 1.0, 'go': 1.0, 'it': 1.0, 'with': 1.0, 'this': 1.0, 'are': 1.0, 'tubing': 1.0, 'change': 1.0, 'anything': 1.0, 'need': 1.0, 'ca': 1.0, 'since': 1.0, 'their': 2.0, 'plasting': 1.0, 'around': 1.0, 'filters': 2.0, 'blow': 1.0, 'out': 1.0, 'from': 1.0, 'germs': 1.0, 'noses': 1.0, 'suck': 1.0, 'to': 2.0, 'in': 1.0, 'cannot': 1.0, 't': 1.0, 'the': 4.0, 'mucus': 1.0, 'good': 1.0, 'or': 2.0, 'baby': 2.0, 'doesn': 1.0, 'toddler': 2.0, 'nose': 1.0, 'way': 1.0, 'you': 1.0, 's': 1.0, 'spread': 1.0, 'your': 2.0, 'they': 1.0}
Word element => {'off': 1.0, 'rid': 1.0, 'get': 1.0, 'son': 1.0, 'my': 1.0, 'catarrh': 1.0, 'aspire': 1.0, 'it': 2.0, 'i': 1.0, 'thought': 1.0, 'didn': 2.0, 't': 2.0, 'difficult': 1.0, 'and': 1.0, 'very': 1.0, 'as': 1.0, 'work': 1.0, 'would': 1.0, 'to': 1.0}
Word element => {'very': 1.0, 'to': 1.0, 'all': 1.0, 'have': 1.0, 'don': 1.0, 'wash': 1.0, 'expensive': 1.0, 'itherwise': 1.0, 'even': 1.0, 'times': 1.0, 'change': 1.0, 'many': 1.0, 'them': 2.0, 'after': 1.0, 'so': 1.0, 'time': 1.0, 'has': 1.0, 'much': 1.0, 'get': 1.0, 'and': 2.0, 'nosefrida': 1.0, 'it': 3.0, 'can': 2.0, 'lo': 1.0, 'my': 2.0, 'are': 1.0, 'i': 1.0, 'a': 1.0, 'lot': 1.0, 't': 1.0, 'the': 2.0, 'these': 1.0, 'evwry': 1.0, 'filters': 1.0, 'love': 1.0, 'for': 1.0, 'suction': 1.0, 'you': 2.0, 'helped': 1.0, 'but': 1.0, 'use': 2.0}
Word element => {'from': 1.0, 'for': 1.0, 'baby': 1.0, 'night': 1.0, 'now': 2.0, 'hours': 1.0, 'amazing': 1.0, 'every': 2.0, 'used': 1.0, 'himself': 1.0, 'stuffed': 1.0, 'has': 1.0, 'on': 3.0, 'shower': 1.0, 'of': 2.0, 'invaluable': 1.0, 'sleeps': 1.0, 'is': 2.0, 'wakes': 1.0, 'use': 1.0, 'rest': 1.0, 'after': 1.0, 'clear': 1.0, 'there': 1.0, 'up': 4.0, 'get': 2.0, 'breathed': 1.0, 'have': 1.0, 'amazed': 1.0, 'when': 1.0, 'am': 2.0, 'and': 6.0, 'bulb': 1.0, 'nose': 1.0, 'bloody': 1.0, 'just': 1.0, 'snot': 1.0, 'bought': 1.0, 'suck': 1.0, 'i': 8.0, 'but': 1.0, 'like': 1.0, 'that': 2.0, 'nasty': 1.0, 'those': 2.0, 'me': 2.0, 'not': 1.0, 'mucous': 1.0, 'couple': 1.0, 'out': 3.0, 'made': 1.0, 'soothe': 1.0, 'was': 1.0, 'all': 1.0, 'to': 5.0, 'thing': 1.0, 'go': 1.0, 'could': 1.0, 'a': 2.0, 'trust': 1.0, 'the': 7.0, 'cry': 1.0, 'seems': 1.0, 'because': 1.0, 'does': 1.0, 'even': 1.0, 'nights': 2.0, 'it': 5.0, 'this': 3.0, 'he': 5.0, 'always': 1.0, 'way': 1.0, 'pull': 1.0, 'my': 1.0, 'breathes': 1.0, 'giving': 1.0, 'noses': 1.0, 'saline': 1.0, 'him': 3.0, 'howl': 1.0, 'buying': 1.0, 'with': 3.0, 'nosefrida': 2.0, 'spritz': 1.0, 'then': 1.0, 'son': 1.0, 'gets': 1.0, 'so': 1.0, 'works': 1.0, 'much': 1.0}
Word element => {'time': 1.0, 'have': 1.0, 'until': 1.0, 'think': 1.0, 'wash': 1.0, 'so': 1.0, 'needed': 1.0, 'much': 1.0, 'usually': 1.0, 'plenty': 1.0, 'replacements': 1.0, 'the': 4.0, 'somehow': 1.0, 'use': 1.0, 'plastic': 1.0, 'because': 1.0, 'my': 1.0, 'end': 2.0, 'i': 6.0, 'over': 2.0, 'and': 1.0, 'of': 1.0, 'up': 1.0, 'again': 1.0, 'nosefrida': 1.0, 'that': 1.0, 'losing': 1.0, 'filters': 1.0, 'now': 1.0}
Word element => {'awesome': 1.0, 'is': 1.0, 'gross': 1.0, 'bulb': 1.0, 'everything': 1.0, 'far': 1.0, 'as': 2.0, 'and': 1.0, 'well': 1.0, 'a': 1.0, 'the': 3.0, 'but': 1.0, 'amazingly': 1.0, 'frida': 1.0, 'have': 1.0, 'joke': 1.0, 'battery': 1.0, 'tried': 1.0, 'i': 1.0, 'operated': 1.0, 'nose': 1.0, 'aspirator': 1.0, 'sounds': 1.0, 'waste': 1.0, 'of': 1.0, 'money': 1.0, 'it': 2.0, 'works': 1.0, 'to': 1.0, 'now': 1.0}
Word element => {'fast': 1.0, 'quite': 1.0, 'but': 1.0, 'actual': 1.0, 'came': 1.0, '4': 1.0, 'on': 1.0, 'through': 1.0, 'filters': 2.0, 'plenty': 1.0, 'meant': 1.0, 'those': 1.0, 'extra': 1.0, 'we': 3.0, 'winter': 1.0, 'these': 1.0, 'the': 5.0, 'went': 1.0, 'my': 1.0, 'in': 1.0, 'middle': 1.0, 'second': 1.0, 'was': 2.0, 'born': 1.0, 'thing': 1.0, 'of': 2.0, 'trick': 1.0, 'worked': 1.0, 'and': 3.0, 'did': 1.0, 'hand': 1.0, 'constantly': 1.0, 'with': 1.0, 'this': 1.0, 'daily': 1.0, 'it': 1.0, 'he': 1.0, 'only': 1.0, 'needed': 2.0, 'used': 1.0, 'his': 1.0, 'nose': 1.0, 'cleaned': 1.0, 'child': 1.0, 'out': 1.0, 'nosefrida': 2.0, 'that': 1.0}
Word element => {'for': 1.0, 'again': 1.0, 'buy': 1.0, 'would': 1.0, 'clean': 1.0, 'keep': 1.0, 'and': 1.0, 'sure': 1.0, 'it': 1.0, 'love': 1.0, 'the': 1.0, 'are': 1.0, 'i': 2.0, 'device': 1.0, 'this': 1.0, 'filters': 1.0, 'so': 1.0, 'easy': 1.0, 'to': 1.0, 'replace': 1.0}
Word element => {'whatsoever': 1.0, 'no': 1.0, 'job': 1.0, 'to': 1.0, 'filter': 1.0, 'there': 1.0, 'write': 1.0, 'what': 1.0, 'works': 1.0, 'it': 3.0, 'absolutely': 1.0, 'love': 1.0, 'really': 1.0, 'is': 2.0, 'well': 1.0, 'a': 1.0, 's': 1.0, 'the': 2.0, 'fantastic': 1.0, 'problems': 1.0, 'very': 1.0, 'i': 1.0, 'filters': 1.0, 'and': 1.0, 'do': 1.0, 'nosefrida': 1.0, 'their': 1.0}
Word element => {'syringe': 1.0, 'bulb': 1.0, 'a': 1.0, 'newborn': 1.0, 'to': 1.0, 'much': 1.0, 'my': 1.0, 't': 1.0, 'the': 2.0, 'more': 1.0, 'snot': 1.0, 'it': 1.0, 'i': 1.0, 'rid': 1.0, 'of': 1.0, 'job': 1.0, 'himself': 1.0, 'did': 1.0, 'something': 1.0, 'easier': 1.0, 'get': 2.0, 'couldn': 1.0, 'and': 1.0, 'needed': 1.0, 'effectively': 1.0, 'than': 1.0}
Word element => {'though': 1.0, 'replace': 1.0, 'real': 1.0, 'glad': 1.0, 'the': 3.0, 'one': 1.0, 'when': 1.0, 'i': 1.0, 'old': 1.0, 'to': 1.0, 'purchased': 1.0, 'as': 1.0, 'this': 1.0, 'not': 1.0, 'at': 1.0, 'same': 1.0, 'time': 1.0, 'sure': 1.0, 'nosefrida': 1.0}
Word element => {'invention': 1.0, 'nose': 1.0, 'enter': 1.0, 'not': 1.0, 'does': 1.0, 'solved': 1.0, 'problem': 1.0, 'or': 1.0, 'newborn': 1.0, 'for': 2.0, 'completely': 1.0, 'nurse': 1.0, 'a': 2.0, 'big': 1.0, 'as': 2.0, 'product': 1.0, 'loved': 1.0, 'am': 1.0, 'other': 1.0, 'satisfied': 1.0, 'matter': 1.0, 'and': 1.0, 'issue': 1.0, 'great': 1.0, 'infants': 1.0, 'mother': 1.0, 'the': 2.0, 'this': 2.0, 'it': 2.0, 'with': 2.0, 'i': 1.0, 'products': 1.0, 'nostrils': 1.0, 'were': 2.0, 'that': 2.0, 'they': 1.0, 'by': 1.0, 'too': 1.0}
Word element => {'products': 1.0, 'accessory': 1.0, 'and': 1.0, 'the': 2.0, 'worked': 1.0, 'it': 1.0, 'filters': 1.0, 't': 1.0, 'realize': 1.0, 'i': 1.0, 'washable': 1.0, 'had': 1.0, 'hose': 1.0, 'liked': 1.0, 'to': 1.0, 'suck': 1.0, 'thru': 1.0, 'a': 1.0, 'additional': 1.0, 'didn': 1.0, 'but': 1.0}
Word element => {'better': 1.0, 'so': 1.0, 'bulbs': 1.0, 'i': 1.0, 'works': 1.0, 'it': 2.0, 'love': 2.0, 'using': 1.0, 'this': 1.0, 'much': 1.0, 'product': 1.0, 'for': 1.0, 'the': 1.0, 'my': 1.0, 'baby': 1.0, 'traditional': 1.0, 'instead': 1.0, 'of': 1.0}
Word element => {'nose': 1.0, 'our': 1.0, 'love': 1.0, 'we': 1.0, 'job': 1.0, 'to': 2.0, 'filter': 1.0, 'done': 1.0, 'get': 1.0, 'and': 1.0, 'necessary': 1.0, 'are': 1.0, 'how': 1.0, 'recommended': 1.0, 'each': 1.0, 'as': 1.0, 'sure': 1.0, 'it': 1.0, 'change': 1.0, 'is': 1.0, 'not': 1.0, 'so': 1.0, 'after': 1.0, 'm': 1.0, 'i': 1.0, 'use': 1.0, 'frida': 1.0, 'but': 1.0, 'easy': 1.0, 'the': 2.0, 'these': 1.0, 'install': 1.0}
Word element => {'amazing': 1.0, 'used': 1.0, 'with': 1.0, 'is': 2.0, 'but': 1.0, 'the': 1.0, 'because': 1.0, 'recommend': 1.0, 'definitely': 1.0, 'doesn': 1.0, 's': 1.0, 'i': 1.0, 't': 1.0, 'that': 1.0, 'what': 1.0, 'product': 1.0, 'exactly': 1.0, 'to': 1.0, 'it': 3.0, 'supposed': 1.0, 'would': 1.0}
Word element => {'my': 2.0, 'and': 1.0, 'me': 1.0, 'like': 1.0, 'torture': 1.0, 'well': 1.0, 'this': 2.0, 'it': 3.0, 'to': 2.0, 'all': 1.0, 'have': 1.0, 'screaming': 1.0, 'just': 1.0, 'humanity': 1.0, 'that': 1.0, 'wife': 1.0, 'waterboarding': 1.0, 'don': 1.0, 'lamb': 1.0, 'for': 2.0, 'yet': 1.0, 'effective': 1.0, 'works': 1.0, 'said': 1.0, 'is': 2.0, 'toddlers': 1.0, 'can': 1.0, 'because': 1.0, 'does': 1.0, 'having': 1.0, 'the': 2.0, 'a': 2.0, 't': 1.0, 'speaking': 1.0, 'administering': 1.0, 'i': 2.0, 'constitution': 2.0, 'necessary': 2.0, 'of': 1.0, 'should': 1.0, 'make': 1.0, 'amended': 1.0, 'be': 1.0, 'crime': 2.0, 'against': 1.0, 'little': 1.0, 'very': 1.0, 'awful': 1.0, 'still': 1.0, 'hear': 1.0}
Word element => {'though': 1.0, 'easier': 1.0, 'proof': 1.0, 'spill': 1.0, 'real': 1.0, 'on': 1.0, 'more': 1.0, 'clean': 1.0, 'little': 1.0, 'it': 1.0, 'i': 1.0, 'and': 1.0, 'to': 1.0, 'kind': 1.0, 'cup': 1.0, 'of': 1.0, 'rather': 1.0, 'would': 1.0, 'spills': 1.0, 'spend': 1.0, 'thin': 1.0, 'a': 2.0}
Word element => {'juice': 1.0, 'vessel': 1.0, 'rack': 1.0, 'preferred': 1.0, 'friendly': 1.0, 'top': 1.0, 'easy': 1.0, 'for': 2.0, 'on': 1.0, 'the': 3.0, 'peeps': 1.0, 'lid': 1.0, 'off': 1.0, 'dishwasher': 1.0, 'adult': 1.0, 'of': 1.0, 'type': 1.0, 'and': 1.0}
Word element => {'too': 1.0, 'lead': 1.0, 'provide': 1.0, 'would': 1.0, 'coating': 1.0, 'plastic': 1.0, 'before': 1.0, 'sort': 1.0, 'if': 1.0, 'sure': 1.0, 'in': 2.0, 'm': 1.0, 'some': 1.0, 'interior': 1.0, 'best': 1.0, 'like': 1.0, 'eco': 1.0, 'or': 2.0, 'vinyl': 1.0, 'not': 2.0, 'strong': 1.0, 'make': 1.0, 'but': 3.0, 'shoulder': 1.0, 'purchased': 1.0, 'had': 2.0, 'when': 1.0, 'what': 1.0, 'another': 1.0, 'my': 2.0, 'fits': 1.0, 'fact': 1.0, 'phthalate': 1.0, 's': 1.0, 'of': 2.0, 'the': 8.0, 'olive': 1.0, 'is': 5.0, 'lunch': 2.0, 'version': 1.0, 'garage': 1.0, 'i': 8.0, 'replace': 1.0, '4': 1.0, 'odor': 2.0, 'to': 4.0, 'our': 1.0, 'as': 1.0, 'lunchbox': 2.0, 'camo': 1.0, 'recommend': 1.0, 'using': 1.0, 'bag': 6.0, 'basic': 1.0, 'it': 6.0, 'fleurville': 1.0, 'felt': 1.0, 'this': 2.0, 'kids': 1.0, 'that': 2.0, 'preschooler': 1.0, 'was': 1.0, 'pvc': 2.0, 'outgas': 1.0, 'also': 1.0, 'received': 1.0, 'foogo': 1.0, 'and': 4.0, 'without': 1.0, 'days': 1.0, 'comfortable': 1.0, 'a': 6.0, 'small': 2.0, 'rinse': 1.0, 'younger': 1.0, 'son': 1.0, 'free': 3.0, 'apple': 1.0, 'very': 1.0, 'preschool': 1.0, 'reassurance': 1.0, 'wanted': 1.0, 'straw': 1.0, 'reservations': 1.0, 'sippy': 1.0, 'much': 1.0, 'do': 1.0, 'else': 1.0, 'really': 1.0, 'appreciate': 1.0, 'outer': 1.0, 'compartment': 1.0, 'difficult': 1.0, 'strap': 1.0, 'however': 1.0, 'strange': 1.0, 'for': 3.0, 'combined': 1.0, 'with': 1.0, 'smallness': 1.0, 'probably': 1.0, 'chemical': 1.0, 'through': 1.0, 'there': 2.0, '3rd': 1.0, 'grade': 1.0}
Word element => {'that': 1.0, 'when': 1.0, 'in': 1.0, 'enough': 1.0, 'scrunch': 1.0, 'what': 1.0, 'or': 1.0, 'up': 1.0, 'windows': 1.0, 'not': 1.0, 'know': 1.0, 'put': 1.0, 'but': 2.0, 'gorgeous': 1.0, 'is': 1.0, 'valance': 1.0, 'i': 5.0, '2': 2.0, 't': 1.0, 'everything': 1.0, 'and': 1.0, 'get': 1.0, 'love': 2.0, 'this': 1.0, 'it': 5.0, 'now': 1.0, 'matches': 1.0, 'had': 1.0, 'to': 1.0, 'don': 1.0, 'did': 1.0, 'if': 1.0, 'we': 2.0, 'extra': 1.0, 'have': 3.0, 'wide': 1.0}
Word element => {'too': 1.0, 'with': 1.0, 'that': 1.0, 'set': 1.0, 'whole': 1.0, 'it': 1.0, 'love': 1.0, 'such': 1.0, 'a': 1.0, 'goes': 1.0, 'soft': 1.0, 'nursery': 1.0, 'valance': 1.0, 'crib': 1.0, 'for': 1.0, 'the': 1.0, 'my': 1.0, 'elegant': 1.0, 'baby': 1.0, 'girls': 1.0, 'just': 1.0}
Word element => {'buy': 1.0, 'you': 1.0, 'pushing': 1.0, 'way': 1.0, 'this': 1.0, 'guess': 1.0, 'inches': 1.0, '12': 1.0, 'to': 2.0, 'least': 1.0, 'at': 1.0, 'if': 1.0, 'of': 2.0, 'that': 2.0, 'reason': 1.0, 'love': 1.0, 'longer': 1.0, '8': 1.0, 'cocalo': 1.0, 'like': 1.0, 'which': 2.0, 'items': 1.0, 'star': 1.0, 'window': 1.0, 'however': 1.0, 'two': 1.0, 'i': 4.0, 'daughters': 1.0, 'was': 1.0, 'beautiful': 1.0, 'my': 1.0, 'are': 2.0, 'the': 6.0, 'these': 1.0, 'match': 1.0, 'from': 1.0, 'in': 1.0, 'length': 1.0, 'they': 2.0, 'designed': 1.0, 'slightly': 1.0, 'daniella': 1.0, 'photo': 1.0, 'foot': 1.0, 'curtains': 1.0, 'a': 1.0, 'other': 1.0, 'rating': 1.0, 'more': 1.0, 'is': 2.0, 'valance': 1.0, 'and': 1.0, 'docked': 1.0, 'too': 1.0, 'short': 1.0, 'have': 1.0, 'an': 1.0, 'average': 1.0, '3': 1.0, 'it': 2.0, 'covers': 1.0, 'would': 1.0, 'look': 1.0, 'only': 1.0, 'nursery': 1.0, 'much': 1.0, 'their': 1.0, 'better': 1.0}
Word element => {'lacking': 1.0, 'cute': 1.0, 'scratchy': 1.0, 'and': 1.0, 'feels': 1.0, 'so': 1.0, 'possible': 1.0, 'count': 1.0, 'thread': 1.0, 'for': 1.0, 'daughter': 1.0, 'rough': 1.0, 'to': 1.0, 'the': 5.0, 'my': 1.0, 'a': 1.0, 'as': 1.0, 'bought': 2.0, 'but': 1.0, 'quality': 2.0, 'lowest': 1.0, 'sheet': 1.0, 'i': 2.0, 's': 2.0, 'nursery': 1.0, 'set': 1.0, 'of': 1.0, 'it': 2.0, 'this': 1.0, 'cotton': 1.0, 'spare': 1.0, 'is': 2.0, 'they': 1.0, 'low': 1.0, 'used': 1.0}
Word element => {'theme': 1.0, 'room': 1.0, 'most': 1.0, 'is': 1.0, 'snickerdoodle': 1.0, 'this': 1.0, 'with': 1.0, 'happy': 1.0, 'am': 1.0, 'and': 3.0, 'quality': 1.0, 'up': 1.0, 'any': 1.0, 'dozen': 1.0, 'half': 1.0, 'them': 1.0, 'sheet': 2.0, 'good': 2.0, 'are': 1.0, 'they': 1.0, 'makes': 1.0, 'crib': 2.0, 'for': 1.0, 'cocalo': 1.0, 'hold': 1.0, 'a': 2.0, 'well': 1.0, 'to': 1.0, 'wear': 1.0, 'washing': 1.0, 'stylish': 1.0, 'sheets': 1.0, 'i': 1.0, 'all': 1.0, 'have': 1.0, 'bought': 1.0}
Word element => {'straight': 1.0, 'making': 1.0, 'in': 1.0, 'are': 1.0, 'care': 1.0, 'need': 1.0, 'stripes': 1.0, 'that': 1.0, 'you': 2.0, 'crooked': 1.0, 'returned': 1.0, 'when': 1.0, 'where': 1.0, 'has': 1.0, 'they': 1.0, 'visible': 1.0, 'photo': 1.0, 'marks': 1.0, 'this': 1.0, 'it': 1.0, 'item': 2.0, 'opening': 1.0, 'from': 1.0, 'take': 1.0, 'cut': 1.0, 'lines': 1.0, 'the': 3.0, 'i': 1.0, 'framed': 1.0, 'tried': 1.0, 'was': 1.0, 'had': 1.0, 'frame': 2.0, 'to': 2.0, 'an': 2.0, 'into': 1.0, 'sure': 1.0, 'dream': 1.0, 'picture': 1.0, 'oval': 1.0, 'shape': 1.0, 'and': 1.0, 'striped': 1.0, 'print': 1.0}
Word element => {'diane': 1.0, 'shipped': 1.0, 'alot': 1.0, 'we': 1.0, 'from': 1.0, 'i': 1.0, 'of': 3.0, 'things': 1.0, 'slip': 1.0, 'sippy': 2.0, 'instead': 1.0, 'but': 1.0, 'say': 1.0, 'packing': 1.0, 'time': 1.0, 'warren': 1.0, 'cups': 3.0, 'sent': 1.0, 'snack': 1.0, 'first': 1.0, 'wanted': 1.0, 'to': 1.0, 'buying': 1.0, 'them': 1.0, 'would': 1.0, 'like': 1.0, 'and': 1.0, 'me': 1.0, 'get': 2.0, 'does': 1.0, 'what': 1.0}
Word element => {'teether': 1.0, 'about': 1.0, 'with': 1.0, 'but': 1.0, 'stick': 1.0, 'like': 1.0, 'particles': 1.0, 'occasionally': 1.0, 'quick': 1.0, 'wash': 1.0, 'whenever': 1.0, 'note': 1.0, 'durable': 1.0, 'little': 1.0, 'nice': 2.0, 'who': 1.0, 'it': 1.0, 'him': 1.0, 'definitely': 1.0, 'satisfy': 1.0, 'chewing': 1.0, 'onto': 1.0, 'wants': 1.0, 'finds': 1.0, 'would': 1.0, 'sucking': 1.0, 's': 2.0, 'quite': 1.0, 'doesn': 1.0, 'arrived': 1.0, 'just': 2.0, 'tooth': 1.0, 'his': 1.0, 'months': 1.0, 'son': 2.0, 'on': 2.0, 'tones': 1.0, 'does': 1.0, 'sunlight': 1.0, 'being': 2.0, 'very': 1.0, 'gleam': 1.0, 'luckily': 1.0, 'teethers': 1.0, 'expected': 2.0, 'had': 1.0, 'since': 1.0, 'please': 1.0, 'grew': 1.0, 'though': 1.0, 'disappointed': 1.0, 'mildly': 1.0, 'beautiful': 1.0, 'still': 4.0, 'looking': 1.0, 'light': 1.0, 'they': 3.0, 'pink': 1.0, 'd': 1.0, 'in': 2.0, 'm': 1.0, 'carefully': 1.0, 'bracelets': 2.0, 'this': 1.0, 'recommend': 1.0, 'full': 1.0, 'hold': 1.0, 'spend': 1.0, 'however': 2.0, 'bit': 1.0, 'only': 1.0, 'simply': 1.0, 'spree': 1.0, 'me': 1.0, 'my': 3.0, 'pulls': 1.0, 'another': 1.0, 'treated': 1.0, 'to': 14.0, 'hands': 1.0, 'least': 1.0, 'was': 3.0, 'by': 1.0, 'bracelet': 1.0, 'necklace': 1.0, 'want': 2.0, 'able': 1.0, 'motion': 1.0, 'you': 4.0, 'choice': 1.0, 'single': 2.0, 'and': 11.0, 'package': 1.0, 'moms': 1.0, 'teething': 2.0, 'expensive': 1.0, 'for': 5.0, 'plastic': 1.0, 'correctly': 1.0, 'all': 2.0, 'other': 1.0, 'can': 1.0, 'first': 1.0, 'are': 5.0, 'instead': 1.0, 'herself': 1.0, 'set': 1.0, 'given': 1.0, 'paying': 2.0, 'he': 4.0, 'yet': 1.0, 'far': 1.0, 'mother': 1.0, 'am': 1.0, 'blind': 1.0, 'young': 1.0, 'that': 6.0, 'because': 2.0, 'used': 1.0, 'decided': 1.0, 'nicely': 1.0, 'count': 1.0, 'product': 1.0, 'products': 2.0, 'these': 8.0, 'well': 1.0, 'i': 14.0, 'baby': 1.0, 'spending': 1.0, 'of': 6.0, 'the': 11.0, 'earthy': 1.0, 'money': 1.0, 'bought': 1.0, 'believe': 1.0, 'small': 1.0, 'a': 12.0, 'more': 2.0, 'dollars': 2.0, 'too': 1.0, 'try': 1.0, 'four': 1.0, 'opened': 1.0, 'afford': 1.0, 'thirty': 1.0, 'glad': 1.0, 'value': 1.0, 'mom': 1.0, 'any': 2.0, 'your': 2.0, 'them': 1.0, 'budget': 1.0, 'time': 2.0, 'cocoa': 1.0, 'actually': 1.0, 'color': 2.0, 'reviewed': 1.0, 'hang': 1.0, 'there': 1.0, 'give': 5.0, 'thirteen': 1.0, 'fun': 1.0, 'from': 2.0, 't': 2.0, 'vendor': 1.0, 'look': 2.0, 'is': 6.0, 'at': 2.0, 'gift': 1.0, 'made': 1.0, 'nature': 1.0, 'cream': 1.0, 'be': 4.0, 'gold': 1.0, 'aware': 1.0, 'freely': 1.0, 'clarification': 1.0, 'really': 1.0, 'as': 1.0, 'unable': 1.0, 'have': 1.0, 'credit': 1.0, 'best': 1.0, 'picture': 1.0, 'or': 2.0, 'should': 1.0, 'rinse': 1.0, 'their': 1.0, 'misleading': 1.0, 'labeled': 1.0, 'chocolate': 1.0, 'when': 2.0, 'what': 1.0, 'appears': 1.0, 'coral': 2.0, 'go': 1.0, 'lighter': 1.0}
Word element => {'buying': 1.0, 'can': 1.0, 'decent': 1.0, 'were': 1.0, 'reviews': 1.0, 'bc': 1.0, 'so': 1.0, 'am': 1.0, 'but': 1.0, 'keep': 1.0, 'pretty': 1.0, 'it': 1.0, 'my': 1.0, 't': 1.0, 'the': 3.0, 'all': 1.0, 'creating': 1.0, 'disappointed': 1.0, 'chewed': 1.0, 'just': 1.0, 'not': 1.0, 'on': 1.0, 'be': 1.0, 'i': 2.0, 'old': 1.0, 'bracelet': 1.0, 'year': 1.0, 'bit': 1.0, 'them': 1.0, 'gem': 1.0, 'through': 1.0, 'should': 1.0, 'necklace': 1.0, 'fairly': 1.0, 'two': 1.0, 'at': 1.0, 'quickly': 1.0, 'hazard': 1.0, 'a': 1.0, 's': 1.0, 'choking': 1.0}
Word element => {'textures': 1.0, 'sensitivity': 1.0, 'with': 1.0, 'descriptions': 1.0, 'led': 1.0, 'grandson': 1.0, 'obsessive': 1.0, 'up': 1.0, 'of': 1.0, 'came': 1.0, 'it': 2.0, 'he': 1.0, 'this': 2.0, 'wish': 1.0, 'bought': 1.0, 'be': 1.0, 'such': 1.0, 'my': 1.0, 'in': 1.0, 'needs': 2.0, 'for': 4.0, 'i': 2.0, 'etc': 1.0, 'his': 1.0, 'cp': 1.0, 'special': 2.0, 'toys': 1.0, 'need': 1.0, 'those': 1.0, 'me': 1.0, 'search': 1.0, 'photos': 1.0, 'not': 2.0, 'and': 1.0, 'description': 1.0, 'the': 3.0, 'believe': 1.0, 'does': 1.0, 'because': 1.0, 'chew': 1.0, 'great': 1.0, 'feel': 1.0, 'however': 1.0, 'like': 1.0, 'a': 1.0, 'could': 1.0, 'include': 1.0, 'would': 1.0, 'something': 1.0, 'to': 3.0, 'as': 1.0}
Word element => {'safe': 1.0, 'said': 1.0, 'that': 1.0, 'probably': 1.0, 'would': 1.0, 'string': 1.0, 'good': 2.0, 'top': 1.0, 'through': 3.0, 'having': 1.0, 'chew': 4.0, 'likes': 1.0, 'goes': 1.0, 'other': 1.0, 'child': 1.0, 'i': 2.0, 'stated': 1.0, 'reviews': 1.0, 'chewing': 1.0, 'my': 1.0, 'the': 7.0, 'on': 3.0, 'is': 6.0, 'course': 1.0, 'where': 1.0, 'product': 2.0, 'however': 1.0, 'doesn': 1.0, 'very': 1.0, 'of': 2.0, 'says': 1.0, 'some': 1.0, 'this': 2.0, 'not': 1.0, 'easily': 1.0, 'strudy': 1.0, 'thicker': 2.0, 'hard': 1.0, 'part': 2.0, 'too': 2.0, 'and': 4.0, 'prone': 1.0, 'it': 2.0, 'she': 2.0, 'also': 1.0, 'quality': 2.0, 'softer': 1.0, 't': 1.0, 'a': 2.0, 's': 1.0, 'know': 1.0, 'like': 2.0, 'to': 4.0, 'as': 3.0, 'any': 1.0, 'preference': 1.0}
Word element => {'pencils': 1.0, 'pens': 1.0, 'lot': 1.0, 've': 1.0, 'would': 1.0, 'grade': 1.0, 'had': 1.0, 'd': 1.0, 'they': 1.0, 'honestly': 1.0, 'when': 1.0, 'again': 1.0, 'one': 1.0, 'to': 1.0, 'addition': 1.0, 'colors': 1.0, 'them': 1.0, 'll': 1.0, 'away': 1.0, 'wish': 1.0, 'this': 1.0, 'walked': 1.0, 'by': 1.0, 'less': 1.0, 'look': 1.0, 'but': 3.0, 'was': 1.0, 'unfortunately': 1.0, 'doesn': 1.0, 'the': 5.0, 'shirts': 1.0, 'of': 3.0, 'pretty': 1.0, 'well': 1.0, 'hair': 1.0, 'it': 7.0, 'part': 1.0, 'looked': 1.0, 'buying': 1.0, 'with': 1.0, 'works': 1.0, 'nails': 1.0, 'worries': 1.0, 'ordinary': 1.0, 'discreet': 1.0, 'because': 1.0, 'anything': 1.0, 'school': 1.0, 'nice': 1.0, 'for': 1.0, 'stylish': 1.0, 'allowing': 1.0, 'too': 1.0, 'and': 4.0, 'like': 2.0, 'out': 1.0, 'chewing': 2.0, 'saved': 2.0, 'i': 3.0, 'put': 1.0, 'on': 2.0, 'we': 1.0, 't': 1.0, 's': 1.0, 'a': 3.0, 'different': 2.0, 'chain': 2.0, 'these': 1.0, 'therapy': 1.0, 'came': 1.0, 'in': 3.0, 'pendant': 1.0, 'no': 1.0, 'about': 1.0, 'bracelet': 1.0, 'necklace': 2.0, 'be': 1.0, 'here': 1.0, 'fingers': 1.0, 'cord': 1.0, 'more': 1.0, 'is': 1.0}
Word element => {'use': 1.0, 'up': 1.0, 'how': 1.0, 'know': 1.0, 'hold': 1.0, 'soon': 1.0, 's': 1.0, 'loves': 1.0, '5': 1.0, 'my': 1.0, 'so': 1.0, 'expecting': 1.0, 'in': 1.0, 'was': 1.0, 'had': 1.0, 'to': 3.0, 'product': 1.0, 'be': 1.0, 'too': 1.0, 'daughter': 1.0, 'bracelet': 1.0, '7': 1.0, 'seen': 1.0, 'person': 1.0, 'never': 1.0, 'will': 1.0, 'rigid': 1.0, 'old': 1.0, 'i': 2.0, 'more': 1.0, 'the': 1.0, 'flexible': 1.0, 'is': 1.0, 'year': 1.0, 'very': 1.0, 'and': 1.0, 'this': 1.0, 'it': 4.0, 'bendy': 1.0}
Word element => {'right': 1.0, 'replace': 1.0, 'if': 1.0, 'attach': 1.0, 'a': 1.0, 'learned': 1.0, 'should': 2.0, 'broke': 1.0, 'until': 1.0, 'twisting': 1.0, 'or': 1.0, 'biting': 1.0, 'noticed': 1.0, 'missing': 2.0, 'hour': 1.0, 'wore': 1.0, 'someone': 1.0, 'you': 1.0, 'again': 1.0, 'his': 1.0, 'before': 1.0, 'on': 1.0, 'than': 1.0, 'chew': 3.0, 'to': 6.0, 'either': 1.0, 'purchased': 1.0, 'had': 1.0, 'he': 6.0, 'with': 1.0, 'first': 3.0, 'it': 6.0, 'i': 6.0, 'string': 2.0, 'classroom': 1.0, 'happy': 1.0, 'purchase': 1.0, 'my': 1.0, 'end': 1.0, 'autistic': 1.0, 'was': 7.0, 'minutes': 1.0, 'child': 1.0, 'have': 3.0, 'an': 1.0, 'something': 2.0, 'next': 1.0, 'that': 2.0, 'product': 2.0, 'for': 4.0, 'in': 1.0, 'kindergarten': 1.0, 'then': 1.0, 'through': 4.0, 'other': 1.0, 'shirt': 1.0, 'and': 4.0, 'lesson': 1.0, 'pleased': 1.0, 'the': 14.0, 'found': 1.0, 'this': 2.0, 'retied': 1.0, '30': 1.0, 'after': 1.0, 'needs': 1.0, 'time': 1.0, 'so': 1.0, 'bit': 3.0, 'rubbery': 1.0, 'cord': 3.0, 'slide': 3.0, 'away': 1.0, 'attached': 1.0, 'of': 1.0, 'day': 2.0, 'bitten': 1.0}
Word element => {'charm': 1.0, 'daughter': 1.0, 'my': 1.0, 'look': 1.0, 'to': 2.0, 'had': 1.0, 'i': 1.0, 'designed': 1.0, 'rectangle': 1.0, 'and': 2.0, 'circle': 1.0, 'teething': 1.0, 'amulet': 1.0, 'actually': 1.0, 'like': 3.0, 'seems': 1.0, 'would': 1.0, 'chomp': 1.0, 'new': 1.0, 'make': 2.0, 'necklace': 2.0, 'design': 1.0, 'be': 1.0, 'picture': 2.0, 'for': 1.0, 'one': 1.0, 'type': 1.0, 'is': 2.0, 'it': 5.0, 'with': 1.0, 'the': 2.0, 'of': 1.0, 'an': 1.0, 'but': 1.0, 'a': 5.0, 'deceiving': 1.0, 'breaks': 1.0, 'that': 1.0}
Word element => {'need': 1.0, 'until': 1.0, 'especially': 1.0, 'give': 1.0, 'so': 1.0, 'however': 1.0, 'price': 1.0, 'boxes': 2.0, 'to': 1.0, 'any': 1.0, 'rest': 1.0, 'awesome': 1.0, 'their': 1.0, 'an': 1.0, 'affordability': 1.0, '4': 1.0, 'i': 4.0, 've': 1.0, 'flat': 1.0, 'bought': 1.0, 'them': 3.0, 're': 1.0, 'useless': 1.0, 'multiple': 1.0, 'of': 3.0, 'immediately': 1.0, 'sets': 1.0, 'for': 1.0, 'love': 1.0, 'stars': 1.0, 'the': 5.0, 'they': 1.0, 'storage': 1.0, 'fold': 1.0, 'middle': 1.0, 'size': 1.0, 'are': 1.0, 'these': 1.0, 'storing': 1.0, 'metal': 1.0, 'rods': 1.0, 'up': 1.0, 'poke': 1.0, 'and': 1.0, 'fabric': 1.0, 'with': 1.0, 'hardly': 1.0, 'use': 2.0, 'out': 1.0, 'convenience': 1.0}
Word element => {'thank': 1.0, 'of': 1.0, 'am': 1.0, 'deal': 1.0, 'a': 1.0, 'this': 1.0, 'so': 1.0, 'twice': 1.0, 'walmart': 1.0, 'going': 1.0, 'daughter': 1.0, 'are': 1.0, 'to': 1.0, 'wanted': 1.0, 'and': 1.0, 'quality': 1.0, 'you': 1.0, 's': 1.0, 'buy': 1.0, 'i': 4.0, 'found': 1.0, 'what': 1.0, 'room': 1.0, 'amazon': 1.0, 'is': 2.0, 'exactly': 1.0, 'my': 1.0, 'color': 1.0, 'price': 2.0, 'for': 3.0, 'love': 1.0, 'exact': 1.0, 'more': 1.0, 'such': 1.0, 'the': 4.0, 'these': 3.0, 'great': 2.0, 'ones': 1.0, 'at': 1.0}
Word element => {'she': 1.0, 'cupcakes': 1.0, 'make': 1.0, 'we': 1.0, 'it': 1.0, 'gave': 1.0, 'a': 2.0, 'new': 1.0, 'as': 1.0, 'say': 1.0, 'needless': 1.0, 'who': 1.0, 'gift': 1.0, 'to': 3.0, 'mom': 1.0, 'loved': 1.0, 'this': 1.0, 'loves': 1.0}
Word element => {'bib': 1.0, 'an': 1.0, 'as': 1.0, 'for': 1.0, 'nursing': 1.0, 'used': 2.0, 'burp': 1.0, 'well': 1.0, 'a': 1.0, 'cloth': 1.0, 'i': 2.0, 'washes': 1.0, 'when': 1.0, 'soft': 1.0, 'actual': 1.0, 'bottle': 1.0, 'feeding': 1.0, 'is': 1.0, 'sooooo': 1.0, 'it': 3.0, 'this': 1.0, 'face': 1.0, 'my': 1.0, 'more': 1.0, 'baby': 1.0, 'wipe': 1.0, 'was': 1.0, 'still': 1.0, 'than': 1.0}
Word element => {'as': 1.0, 'out': 1.0, 'eat': 1.0, 'to': 1.0, 'want': 1.0, 'parents': 1.0, 'for': 2.0, 'saver': 1.0, 'insanity': 1.0, 'pick': 1.0, 'lol': 1.0, 'bottle': 1.0, 'i': 1.0, 'the': 2.0, 'more': 1.0, 'seconds': 1.0, 'family': 1.0, 'again': 1.0, 'joke': 1.0, 'that': 1.0, 'playing': 1.0, 'game': 1.0, 'baby': 1.0, 'over': 1.0, '34': 2.0, 'up': 1.0, 'like': 1.0, 'once': 1.0, 'no': 2.0, 'two': 1.0, 'seriously': 1.0, 'every': 1.0, 'feel': 1.0, 'master': 1.0, 'a': 2.0}
Word element => {'my': 1.0, 'for': 1.0, 'attaches': 1.0, 'securely': 1.0, 'lock': 1.0, 'cup': 2.0, 'or': 1.0, 'and': 2.0, 'slide': 1.0, 'on': 1.0, 'clips': 1.0, 'the': 5.0, 'tried': 2.0, 'sippy': 1.0, 'today': 1.0, 'no': 1.0, 'holds': 1.0, 'is': 2.0, 'more': 2.0, 'around': 1.0, 'nephew': 1.0, 'that': 1.0, 'ing': 1.0, 'velcro': 2.0, 'it': 1.0, 'durable': 1.0, 'strap': 1.0, 'we': 2.0, 'have': 1.0, 'high': 1.0, 'threading': 1.0, 'there': 1.0, 'chair': 1.0, 'stroller': 1.0, 'i': 2.0, 'etc': 1.0, 'rather': 1.0, 'others': 1.0, 'than': 2.0, 'ordering': 1.0, 'this': 1.0, 'found': 1.0, 'end': 1.0, 'much': 2.0, 'user': 1.0, 'friendly': 1.0, 'any': 1.0, 've': 1.0, 'best': 1.0, 'm': 1.0, 'one': 1.0}
Word element => {'for': 1.0, 'on': 1.0, 'sippy': 1.0, 'keeps': 1.0, 'use': 1.0, 'easy': 1.0, 'strollers': 1.0, 'exactly': 1.0, 'our': 1.0, 'and': 2.0, 'cup': 1.0, 'high': 1.0, 'looking': 1.0, 'practical': 1.0, 'chairs': 1.0, 'well': 1.0, 'made': 1.0, 'adjusted': 1.0, 'easily': 1.0, 'etc': 1.0, 'what': 1.0, 'i': 1.0, 'to': 1.0, 'was': 1.0}
Word element => {'to': 1.0, 'had': 1.0, 'they': 2.0, 'store': 1.0, 'in': 1.0, 'for': 1.0, 'you': 1.0, 'offer': 1.0, 'dont': 1.0, 'haha': 1.0, 'same': 1.0, 'kids': 1.0, 'only': 1.0, 'with': 1.0, 'about': 1.0, 'price': 1.0, 'getting': 1.0, 'and': 1.0, 'items': 1.0, 'as': 1.0, 'wish': 1.0, 'wrong': 2.0, 'go': 2.0, 'are': 2.0, 'care': 1.0, 'i': 1.0, 'packaging': 1.0, 'pay': 1.0, 'or': 1.0, 'lack': 1.0, 'bulk': 1.0, 'there': 1.0, 'cant': 2.0, 'of': 1.0, 'great': 1.0, 'more': 1.0, 'the': 6.0, 'these': 2.0, 'ones': 1.0}
Word element => {'safeseat': 1.0, 'of': 2.0, 'really': 1.0, 'good': 1.0, 'parent': 1.0, 'shoulders': 1.0, 'neck': 1.0, 'item': 1.0, 'and': 1.0, 'the': 4.0, 'recommendedit': 1.0, 'have': 1.0, 'babies': 1.0, 'your': 2.0, 'safety': 2.0, 'using': 1.0, 'for': 2.0, 'belts': 1.0, 'safeseats': 1.0, 'usually': 1.0, 'irritates': 1.0, 'any': 1.0, 'highly': 1.0, 'price': 1.0, 'baby': 1.0, 'a': 3.0, 'protects': 1.0, 'must': 1.0}
Word element => {'of': 1.0, 'tube': 1.0, 'fit': 1.0, 'for': 1.0, 'only': 1.0, 'compartment': 1.0, 'inside': 1.0, 'because': 1.0, 'four': 1.0, 'pocket': 1.0, 'stick': 1.0, 'pockets': 1.0, 'even': 1.0, 'feel': 1.0, 'keys': 1.0, 'deluxe': 1.0, 'don': 2.0, 'baby': 1.0, 'i': 4.0, 'when': 1.0, 'handbag': 1.0, 'allow': 1.0, 'new': 1.0, 'cannot': 1.0, 'using': 1.0, 'like': 2.0, 'and': 1.0, 'me': 2.0, 'purse': 1.0, 'it': 2.0, 'with': 1.0, 'gave': 1.0, 'changing': 3.0, 'is': 3.0, 'diaper': 5.0, 'reach': 1.0, 'the': 7.0, 'in': 3.0, 'jar': 1.0, 'cream': 1.0, 'fits': 1.0, 'my': 5.0, 'bag': 3.0, 'carter': 1.0, 'well': 1.0, 'a': 2.0, 't': 2.0, 's': 1.0, 'outside': 1.0, 'as': 1.0, 'to': 4.0, 'all': 1.0, 'small': 2.0, 'have': 1.0, 'essentials': 1.0, 'so': 1.0, 'quickly': 1.0, 'at': 1.0, 'church': 1.0, 'cart': 1.0, 'pad': 2.0, 'off': 1.0, 'this': 2.0, 'allows': 1.0, 'jeep': 1.0, 'entire': 1.0, 'washroom': 1.0, 'long': 1.0, 'goes': 1.0}
Word element => {'good': 1.0, 'to': 1.0, 'useful': 1.0, 'recommend': 1.0, 'easy': 1.0, 'diapers': 1.0, 'and': 3.0, 'very': 1.0, 'product': 1.0, 'bought': 1.0, 'this': 2.0, 'it': 1.0, 'i': 2.0, 'wipes': 1.0, 'whereever': 1.0, 's': 1.0, 'you': 1.0, 'worthy': 1.0, 'go': 1.0, 'carry': 1.0, 'space': 1.0, 'for': 1.0, 'the': 1.0, 'price': 1.0, 'is': 1.0}
Word element => {'find': 1.0, 'touch': 1.0, 'on': 1.0, 'lines': 1.0, 'silver': 1.0, 'outlined': 1.0, 'also': 1.0, 'snaps': 1.0, 'that': 1.0, 'buckle': 1.0, 'like': 1.0, 'extra': 1.0, 'diapers': 1.0, 'pockets': 1.0, 'useful': 1.0, 'easy': 1.0, 'towel': 1.0, 'wet': 1.0, 'with': 2.0, 'cleans': 1.0, 'bag': 1.0, 'friend': 1.0, 'has': 1.0, 'well': 1.0, 'years': 1.0, 'alone': 1.0, 'reflective': 1.0, 'be': 1.0, 'so': 1.0, 'wipes': 1.0, 'last': 2.0, 'lighting': 1.0, 'is': 3.0, 'second': 1.0, 'easily': 1.0, 'folded': 1.0, 'this': 2.0, 'durable': 1.0, 'dim': 1.0, 'it': 3.0, 'the': 5.0, 'diaper': 1.0, 'a': 5.0, 's': 2.0, 'another': 1.0, 'my': 1.0, 'purchase': 1.0, 'purchased': 1.0, 'use': 1.0, 'much': 1.0, 'year': 1.0, 'closure': 1.0, 'for': 5.0, 'bought': 1.0, 'one': 2.0, 'me': 1.0, 'and': 4.0, 'security': 1.0, 'purse': 1.0, 'i': 4.0, 'baby': 2.0, 'quality': 1.0, 'made': 1.0, 'outside': 1.0, 'to': 4.0, 'loved': 1.0, 'through': 1.0, 'shower': 1.0, 'of': 1.0, 'up': 1.0, 'can': 1.0, 'size': 1.0, 'nice': 2.0, 'carry': 1.0, 'or': 1.0, 'throw': 1.0, 'in': 2.0}
Word element => {'modern': 1.0, 'easier': 1.0, 'compact': 1.0, 'neat': 1.0, 's': 1.0, 'very': 1.0, 'changing': 2.0, 'and': 3.0, 'up': 1.0, 'is': 1.0, 'pad': 2.0, 'it': 1.0, 'this': 1.0, 'detaches': 1.0, 'fromcarrying': 1.0, 'making': 1.0, 'just': 1.0, 'great': 1.0, 'the': 1.0, 'diaper': 1.0, 'wipe': 1.0, 'compartment': 1.0, 'made': 1.0, 'cleaning': 1.0, 'accidents': 1.0, 'well': 1.0, 'a': 1.0, 'little': 1.0}
Word element => {'the': 1.0, 'on': 1.0, 'if': 1.0, 'have': 1.0, 'it': 3.0, 's': 3.0, 'nice': 1.0, 'nothing': 1.0, 'durable': 1.0, 'you': 1.0, 'fancy': 1.0, 'but': 1.0, 'to': 1.0, 'compact': 1.0, 'serves': 1.0, 'purpose': 1.0, 'and': 1.0, 'go': 1.0, 're': 1.0, 'a': 1.0}
Word element => {'head': 1.0, 's': 1.0, 'baby': 1.0, 'just': 1.0, 'of': 1.0, 'can': 1.0, 'it': 1.0, 'be': 3.0, 'should': 2.0, 'so': 1.0, 'when': 1.0, 'that': 1.0, 'the': 3.0, 'used': 1.0, 'full': 2.0, 'for': 2.0, 'toddler': 1.0, 'nice': 1.0, 'open': 1.0, 'as': 1.0, 'thicker': 1.0, 'well': 1.0, 'body': 1.0, 'on': 1.0, 'longer': 1.0, 'padding': 1.0, 'pad': 2.0, 'instead': 1.0}
Word element => {'bother': 1.0, 'but': 1.0, 'bulky': 1.0, 'sturdy': 1.0, 'made': 1.0, 'very': 1.0, 'little': 1.0, 'front': 1.0, 'for': 1.0, 'love': 2.0, 'in': 2.0, 'picket': 1.0, 'items': 1.0, 'con': 1.0, 'cheapo': 1.0, 'it': 6.0, 'only': 2.0, 'extra': 1.0, 'wide': 1.0, 'small': 1.0, 'zipper': 1.0, 'put': 1.0, 'issue': 1.0, 'and': 4.0, 'closed': 2.0, 'clips': 1.0, 'just': 2.0, 'even': 1.0, 'well': 1.0, 'has': 1.0, 'hair': 1.0, 'shut': 1.0, 'want': 1.0, 'to': 2.0, 'run': 1.0, 'case': 2.0, 'that': 5.0, 'into': 1.0, 'doesn': 2.0, 'store': 1.0, 'the': 3.0, 'a': 2.0, 's': 3.0, 't': 2.0, 'wipes': 1.0, 'me': 1.0, 'stay': 1.0, 'plastic': 1.0, 'ties': 1.0, 'keep': 1.0, 'is': 2.0, 'around': 1.0, 'i': 4.0, 'etc': 1.0, 'otherwise': 1.0}
Word element => {'worth': 1.0, 'was': 1.0, 'handy': 1.0, 'really': 2.0, 'not': 1.0, 'will': 1.0, 'tube': 1.0, 'because': 1.0, 'tubes': 1.0, 'so': 1.0, 'ointment': 1.0, 'price': 1.0, 'd': 1.0, 'wipe': 1.0, 'tight': 1.0, 'very': 1.0, 'little': 1.0, 'it': 4.0, 'empty': 1.0, 'only': 1.0, 'stick': 1.0, 'honestly': 1.0, 'in': 3.0, 'pocket': 2.0, 'the': 7.0, 'on': 1.0, 'washcloth': 1.0, 'love': 1.0, 'for': 1.0, 'fit': 2.0, 'diapers': 2.0, '2': 1.0, 'change': 1.0, 'but': 2.0, 'sz': 1.0, 'i': 4.0, 'hold': 1.0, 'thing': 1.0, 'would': 1.0, 'holder': 1.0, 'full': 1.0, 'this': 2.0, 'wish': 1.0, 'onesie': 1.0, 'here': 1.0, 'multiple': 1.0, 'us': 1.0, 'more': 1.0, 'is': 2.0, 'holds': 1.0, 'almost': 1.0, 'feel': 1.0, '1': 1.0, 'and': 1.0, 'just': 1.0, 'wet': 1.0, 'plastic': 1.0, 'credit': 1.0, 'zip': 2.0, 'card': 1.0, 'a': 5.0, 's': 1.0, 'could': 1.0, 'we': 1.0, 'to': 1.0, 'outside': 2.0, 'our': 1.0}
Word element => {'looking': 1.0, 'was': 1.0, 'what': 1.0, 'exactly': 1.0, 'compartments': 1.0, 'will': 1.0, 'inside': 1.0, 'it': 2.0, 'with': 1.0, 'that': 1.0, 'new': 1.0, 'i': 3.0, 'bought': 1.0, 'be': 1.0, 'candy': 1.0, 'the': 5.0, 'my': 1.0, 'can': 1.0, 'use': 1.0, 'this': 2.0, 'jeep': 1.0, 'or': 1.0, 'removed': 1.0, 'litter': 1.0, 'storage': 1.0, 'well': 1.0, 'bag': 1.0, 'stuffing': 1.0, 'container': 1.0, 'a': 1.0, 'gas': 1.0, 'in': 2.0, 'ideal': 1.0, 'tissue': 1.0, 'fit': 1.0, 'for': 2.0, 'visits': 1.0, 'gum': 1.0, 'and': 2.0, 'wrappers': 1.0, 'occasional': 1.0, 'between': 2.0, 'station': 1.0, 'comes': 1.0, 'trash': 1.0, 'bin': 1.0, 'to': 1.0, 'as': 3.0, 'seat': 1.0, 'console': 1.0, 'plastic': 1.0, 'door': 1.0}
Word element => {'out': 1.0, 'get': 1.0, 'could': 1.0, 'having': 1.0, 'her': 2.0, 'loved': 2.0, 'in': 2.0, 'piece': 1.0, 'buying': 1.0, 'stores': 1.0, 'off': 1.0, 'around': 1.0, 'more': 1.0, 'awesome': 1.0, 'walk': 1.0, 'crackers': 1.0, 'it': 5.0, 'really': 1.0, 'hour': 1.0, 'also': 1.0, 'some': 2.0, 'knew': 1.0, 'enjoyable': 1.0, 'mind': 1.0, 'both': 1.0, 'flights': 3.0, 'had': 1.0, 'what': 1.0, 'thanking': 1.0, 'animal': 1.0, 'notepad': 1.0, 'to': 2.0, 'our': 2.0, 'that': 1.0, 'because': 3.0, 'sized': 1.0, 'for': 3.0, 'where': 1.0, 'put': 1.0, 'florida': 1.0, 'much': 1.0, 'pack': 3.0, 'washington': 1.0, 'while': 1.0, 'from': 2.0, 'seeing': 1.0, 'backpack': 1.0, 'wild': 1.0, 'old': 1.0, 'took': 1.0, 'i': 8.0, 'year': 1.0, 'state': 1.0, 'this': 3.0, 'wearing': 1.0, '2': 2.0, 'departure': 1.0, 'my': 1.0, 'me': 2.0, 'giving': 1.0, 'energy': 2.0, 'trip': 2.0, 'and': 8.0, 'was': 3.0, 'at': 1.0, 'times': 1.0, 'so': 1.0, 'returning': 1.0, 'bit': 1.0, 'she': 4.0, 'many': 1.0, 'compliments': 1.0, 'stuffed': 1.0, 'grandmotherly': 1.0, 'women': 1.0, '3': 1.0, 'telling': 1.0, 'layover': 1.0, 'children': 1.0, 'harness': 3.0, 'smart': 1.0, 'mom': 1.0, 'remember': 1.0, 'running': 1.0, 'bought': 1.0, 'purchasing': 1.0, 'helped': 1.0, 'all': 1.0, 'other': 1.0, 'myself': 1.0, 'of': 4.0, 'the': 1.0, 'made': 1.0, 'good': 1.0, 'things': 2.0, 'a': 8.0, 'small': 2.0, 'got': 2.0, 'juice': 1.0, 'crayons': 1.0, 'with': 1.0, 'snack': 1.0, 'burn': 1.0, 'boxes': 1.0, 'bag': 1.0, 'between': 2.0, 'goldfish': 1.0}
Word element => {'chest': 1.0, 'hook': 1.0, 'chairs': 1.0, 'in': 1.0, 'sit': 1.0, 'with': 1.0, 'crawl': 1.0, 'at': 1.0, 'movement': 1.0, 'sturdier': 1.0, 'on': 1.0, 'make': 1.0, 'hour': 1.0, 'can': 1.0, 'but': 1.0, 'food': 1.0, 'so': 2.0, 'everything': 1.0, 'bag': 1.0, 'and': 6.0, 'shape': 2.0, 'i': 4.0, 'had': 1.0, '12': 1.0, 'feeding': 1.0, 'extra': 1.0, 'lay': 1.0, 'looking': 1.0, 'size': 3.0, 'he': 1.0, 'plastic': 1.0, 'love': 2.0, 'for': 3.0, 'very': 1.0, 'well': 1.0, 'that': 1.0, 'of': 2.0, 'pump': 1.0, 'backpack': 1.0, 'good': 1.0, 'the': 5.0, 'go': 1.0, 's': 4.0, 'a': 2.0, 't': 2.0, 'my': 2.0, 'his': 1.0, 'continuious': 1.0, 'feeds': 1.0, 'around': 1.0, 'is': 2.0, 'only': 1.0, 'it': 8.0, 'enteralite': 1.0, 'this': 1.0, 'perfect': 1.0, 'thing': 1.0, 'to': 3.0, 'glue': 1.0, 'all': 2.0, 'was': 2.0, 'doesn': 2.0, 'down': 1.0, 'hinder': 1.0, 'inside': 2.0, 'hold': 2.0, 'still': 1.0, 'son': 2.0, 'gets': 1.0, 'tristed': 1.0}
Word element => {'his': 1.0, 'enough': 1.0, 'also': 1.0, 'a': 1.0, 'wearing': 1.0, 'snacks': 1.0, 'just': 1.0, 'thinks': 1.0, 'has': 1.0, 'he': 2.0, 'backpack': 2.0, 'it': 2.0, 'this': 1.0, 'loves': 1.0, 'wonderful': 1.0, 'wear': 1.0, 'my': 1.0, 'room': 1.0, 'is': 2.0, 'son': 1.0, 'pack': 1.0, 'to': 2.0, 'because': 1.0}
Word element => {'works': 1.0, 'it': 1.0, 'but': 1.0, 'public': 1.0, 'general': 1.0, 'for': 1.0, 'daughter': 1.0, 'thinks': 1.0, 'coo': 1.0, 'is': 2.0, 'my': 1.0, 'the': 1.0, 'convinced': 1.0, 'this': 1.0, 'dont': 1.0, 'know': 1.0, 'us': 1.0, 'i': 1.0, 'what': 1.0}
Word element => {'places': 1.0, 'busy': 1.0, 'keep': 1.0, 'help': 1.0, 'great': 2.0, 'way': 1.0, 'for': 2.0, 'kids': 2.0, 'that': 1.0, 'are': 1.0, 'close': 1.0, 'them': 1.0, 'a': 2.0, 'idea': 1.0, 'supper': 1.0, 'active': 1.0, 'taking': 1.0, 'to': 2.0, 'very': 1.0, 'as': 1.0}
Word element => {'for': 1.0, 'size': 1.0, 'breaking': 1.0, 'than': 1.0, 'feeds': 1.0, 's': 1.0, 'hour': 1.0, 'long': 1.0, 'his': 1.0, 'playing': 1.0, 'of': 1.0, 'crawling': 1.0, 'him': 2.0, 'other': 1.0, 'during': 1.0, 'we': 1.0, 'received': 1.0, 'pump': 1.0, 'my': 1.0, 'the': 5.0, 'broke': 1.0, 'week': 1.0, 'zipper': 2.0, 'and': 1.0, 'perfect': 1.0, 'disappointed': 1.0, 'freedom': 1.0, 'within': 1.0, 'son': 1.0, 'uses': 1.0, 'i': 1.0, 'a': 1.0, 'to': 2.0, 'purchased': 1.0, 'so': 1.0, 'eat': 1.0, 'it': 2.0, 'this': 1.0, 'feeding': 1.0, 'allow': 1.0}
Word element => {'item': 1.0, 'this': 1.0, 'happy': 1.0, 'was': 1.0, 'i': 2.0, 'liked': 1.0, 'of': 1.0, 'really': 1.0, 'very': 1.0, 'quality': 2.0, 'and': 1.0, 'great': 1.0, 'the': 2.0, 'my': 1.0, 'looks': 1.0, 'with': 1.0, 'on': 1.0, 'son': 1.0}
Word element => {'snack': 1.0, 'or': 1.0, 'favorite': 1.0, 'carry': 1.0, 'toy': 1.0, 'has': 1.0, 'of': 2.0, 'purpose': 1.0, 'to': 3.0, 'buy': 1.0, 'makes': 1.0, 'old': 1.0, 'double': 1.0, 'you': 1.0, 'strap': 2.0, 'placement': 1.0, 'aware': 1.0, '2': 1.0, 'more': 1.0, 'is': 3.0, 'it': 4.0, 'looks': 1.0, 'a': 5.0, 'and': 4.0, 'pack': 1.0, 'have': 1.0, 'boy': 1.0, 'so': 1.0, 'the': 6.0, 'careful': 1.0, 'cool': 1.0, 'back': 1.0, 'top': 1.0, 'your': 2.0, 'on': 2.0, 'make': 1.0, 'enough': 1.0, 'for': 2.0, 'perfect': 2.0, 'little': 1.0, 'use': 1.0, 'be': 1.0, 'that': 1.0, 'does': 1.0, 'not': 1.0, 'tangle': 1.0, 'kid': 1.0, 'size': 1.0, '5': 1.0, 'awkward': 1.0, 'year': 1.0, 'space': 1.0}
Word element => {'room': 1.0, 'have': 1.0, 'still': 1.0, 'smaller': 1.0, 'pacifier': 1.0, 'even': 1.0, 'backpack': 2.0, 'to': 1.0, 'attaches': 1.0, 'leash': 1.0, 'from': 1.0, 'as': 1.0, 'wipes': 1.0, 'of': 2.0, 'bottom': 1.0, 'baby': 1.0, 'the': 6.0, 'not': 2.0, 'pictured': 1.0, 'otherwise': 1.0, 'is': 1.0, 'in': 1.0, 'perfect': 1.0, 'put': 1.0, 'diapers': 1.0, 'for': 1.0, 'a': 3.0, 'pocket': 1.0, 'package': 1.0, 'thin': 1.0, 'and': 2.0, 'couple': 1.0}
Word element => {'than': 1.0, 'deal': 1.0, 'won': 1.0, 'anything': 1.0, 'idea': 1.0, 'at': 1.0, 'good': 1.0, 'stay': 1.0, 'does': 1.0, 'a': 1.0, 'like': 1.0, 'and': 1.0, 'trouble': 1.0, 'work': 1.0, 'but': 1.0, 'all': 1.0, 'not': 1.0, 'seat': 1.0, 'just': 1.0, 'with': 1.0, 'looked': 1.0, 'attached': 1.0, 'to': 2.0, 't': 1.0, 'the': 1.0, 'more': 1.0, 'really': 1.0, 'is': 1.0}
Word element => {'out': 1.0, 'frustrates': 1.0, 'around': 1.0, 'rotate': 1.0, 'also': 1.0, 'handles': 1.0, 'a': 1.0, 'would': 1.0, 'why': 1.0, 'but': 1.0, 'immediately': 1.0, 'leak': 3.0, 'of': 1.0, 'supervisor': 1.0, 'almost': 1.0, 'daughter': 2.0, 'suggested': 1.0, 'product': 1.0, 'for': 1.0, 'love': 1.0, 'user': 1.0, 'cups': 2.0, 'to': 6.0, 'was': 2.0, 'began': 1.0, 'excited': 1.0, 'it': 1.0, 'i': 4.0, 'tried': 1.0, 'purchase': 1.0, 'my': 2.0, 'products': 1.0, 'these': 2.0, 'and': 6.0, 'me': 1.0, 'get': 1.0, 'bottles': 2.0, 'told': 1.0, 'idea': 1.0, 'want': 1.0, 'everything': 1.0, 'are': 1.0, 'called': 1.0, 'still': 1.0, 'here': 1.0, 'sippy': 2.0, 'them': 1.0, 'defective': 1.0, 'the': 4.0, 'basically': 1.0, 'better': 1.0, 'their': 1.0, 'due': 1.0, 'have': 1.0, 'able': 1.0, 'they': 5.0, 'error': 1.0, 'never': 1.0, 'offered': 1.0, 'that': 2.0, 'been': 1.0, 'there': 3.0, 'replacements': 1.0}
Word element => {'more': 1.0, 'want': 1.0, 'pieces': 1.0, 'gone': 1.0, 'no': 1.0, 'ones': 1.0, 'brown': 1.0, 'extra': 1.0, 'unlike': 1.0, 'great': 1.0, 'has': 1.0, 'this': 1.0, 'site': 1.0, 'they': 1.0, 'seal': 1.0, 'directly': 1.0, 'left': 1.0, 'what': 1.0, 'amazon': 1.0, 'even': 2.0, 'now': 1.0, 'daughter': 1.0, 'where': 2.0, 'for': 1.0, 'love': 2.0, 'to': 1.0, 'cups': 2.0, 'all': 1.0, 'of': 3.0, 'have': 2.0, 'reade': 1.0, 'at': 2.0, 'places': 1.0, 'sippy': 5.0, 'them': 5.0, 'out': 1.0, 'can': 4.0, 'my': 1.0, 'anywhere': 1.0, 'because': 1.0, 'find': 3.0, 'initially': 1.0, 'without': 1.0, 'the': 8.0, 'duane': 1.0, 'i': 4.0, 'dr': 3.0, 'are': 1.0, 'drink': 2.0, 'her': 1.0, 'colors': 1.0, 'bought': 2.0, 'cool': 1.0, 'top': 1.0, 'milk': 2.0, 'and': 2.0, 'she': 1.0, 'it': 3.0, 'only': 2.0, 'anymore': 1.0, 'doesn': 1.0, 'leaking': 1.0, 'bottles': 2.0, 'or': 1.0, 'collapsing': 1.0, 'ago': 1.0, 's': 2.0, 'we': 4.0, 't': 3.0, 'a': 2.0, 'weil': 2.0, 'year': 1.0}
Word element => {'is': 1.0, 'other': 1.0, 'room': 1.0, 'in': 1.0, 'furniture': 1.0, 'dark': 1.0, 'that': 1.0, 'our': 1.0, 'was': 2.0, 'would': 1.0, 'not': 1.0, 'color': 1.0, 'stars': 1.0, 'than': 1.0, '5': 1.0, 'but': 1.0, 'little': 1.0, 'didn': 1.0, 'all': 1.0, 'have': 1.0, 'espresso': 2.0, 'great': 1.0, 'the': 2.0, 'more': 1.0, 't': 1.0, 'it': 3.0, 'finish': 1.0, 'bed': 1.0, 'given': 1.0, 'i': 1.0, 'cherry': 1.0, 'of': 2.0, 'a': 2.0, 'match': 1.0, 'and': 1.0}
Word element => {'7': 1.0, 'or': 1.0, '6': 1.0, '1': 2.0, 'others': 1.0, 'recommend': 1.0, 'would': 1.0, 'shipping': 1.0, 'pricey': 1.0, 'else': 1.0, 'product': 1.0, 'price': 1.0, 'really': 1.0, 's': 1.0, '49lbs': 1.0, 'years': 1.0, 'limit': 1.0, 'weight': 1.0, 'after': 1.0, 'easy': 1.0, 'not': 1.0, 'in': 1.0, 'age': 1.0, 'be': 1.0, 'carried': 1.0, 'on': 2.0, '3': 1.0, 'his': 2.0, 'sturdy': 2.0, 'hours': 1.0, 'safety': 1.0, 'didn': 1.0, 'where': 2.0, 'for': 3.0, 'hour': 1.0, 'point': 1.0, 'old': 3.0, 'which': 1.0, 'asleep': 1.0, 'children': 1.0, 'hands': 1.0, 'bed': 5.0, 'worked': 1.0, 'tricky': 1.0, 'month': 1.0, 'fell': 1.0, 'him': 2.0, 'it': 7.0, 'sleep': 2.0, 'as': 1.0, 'intending': 1.0, 'lbs': 1.0, 'was': 4.0, 'son': 1.0, 'every': 1.0, 'still': 2.0, 'my': 4.0, 'bought': 1.0, 'color': 1.0, '17': 1.0, 'knock': 1.0, 'i': 7.0, 'tipped': 1.0, 'assembly': 1.0, 'uses': 3.0, 'transition': 1.0, 'who': 1.0, 'a': 5.0, 't': 1.0, '50': 1.0, 'and': 5.0, 'carpet': 1.0, 'low': 1.0, 'playpen': 3.0, 'into': 2.0, 'that': 1.0, 'all': 1.0, 'fits': 1.0, 'an': 1.0, 'rolled': 1.0, 'but': 5.0, 'so': 4.0, 'can': 1.0, '2': 3.0, 'rail': 1.0, 'this': 2.0, 'he': 6.0, 'wanted': 1.0, 'onto': 1.0, 'cried': 1.0, 'later': 1.0, 'very': 1.0, 'ok': 1.0, 'free': 1.0, 'want': 1.0, 'over': 1.0, 'happen': 1.0, 'again': 1.0, 'off': 1.0, 'until': 1.0, 'great': 2.0, 'little': 2.0, 'nice': 1.0, 'get': 1.0, 'the': 7.0, 'of': 1.0, '5': 1.0, 'yr': 1.0, 'got': 2.0, 'daughter': 2.0, 'absolutely': 1.0, 'out': 1.0, 'frame': 1.0, 'to': 7.0, 'usable': 1.0, 'at': 1.0, 'is': 4.0, 'wood': 2.0, 'draw': 1.0, 'even': 1.0, 'took': 1.0, 'awesome': 1.0, 'play': 1.0, 'about': 1.0, 'with': 2.0, 'people': 1.0, 'first': 1.0, 'quite': 2.0}
Word element => {'out': 1.0, 'and': 1.0, 'one': 1.0, 'this': 1.0, 'is': 1.0, 'my': 1.0, 'the': 2.0, 'great': 1.0, 'of': 1.0, 'bed': 1.0, 'in': 1.0, 'year': 1.0, 'for': 2.0, 'a': 1.0, 'height': 1.0, 'crawl': 1.0, 'price': 1.0, 'safely': 1.0, 'just': 1.0, 'to': 1.0, 'old': 1.0, 'right': 1.0}
Word element => {'would': 1.0, 'fix': 1.0, 'item': 1.0, 'seems': 1.0, 'bar': 1.0, 'replacement': 1.0, 'if': 1.0, 'want': 1.0, 'they': 1.0, 'prompt': 1.0, 'service': 1.0, 'customer': 1.0, 'although': 1.0, 'called': 1.0, 'an': 1.0, 'very': 1.0, 'me': 3.0, 'not': 2.0, 'and': 2.0, 'sell': 1.0, 'open': 1.0, 'to': 3.0, 'shipping': 1.0, 'pay': 1.0, 'still': 1.0, 'difficult': 1.0, 'is': 1.0, 'drawer': 1.0, 'now': 1.0, 'bed': 4.0, 'for': 3.0, 'why': 1.0, 'pound': 1.0, 'again': 1.0, 'you': 2.0, 'when': 1.0, 'less': 1.0, 'daughter': 1.0, 'one': 1.0, 'months': 1.0, 'on': 3.0, 'blankets': 1.0, '2': 1.0, 'the': 6.0, 'dream': 1.0, 'maybe': 1.0, 'does': 1.0, 'than': 2.0, 'set': 1.0, 'used': 1.0, 'received': 1.0, 'much': 1.0, 'only': 1.0, 'of': 3.0, 'there': 1.0, 'offers': 1.0, 'has': 1.0, '20': 1.0, 'mattress': 1.0, 'this': 2.0, '30': 2.0, 'sheets': 1.0, 'february': 1.0, 'buy': 1.0, 'extra': 1.0, 'close': 1.0, 'person': 1.0, 'bars': 1.0, 'she': 1.0, 'it': 2.0, 'month': 1.0, 'old': 1.0, 'i': 4.0, 'guess': 1.0, 'in': 1.0, 'defected': 1.0, 'defect': 1.0, 'broke': 1.0, 'store': 1.0, 'was': 2.0, 'my': 2.0, 'jumping': 1.0, 'supports': 1.0, 'no': 1.0, 'or': 2.0, 'other': 2.0, 'child': 1.0, 'a': 2.0, 'warranty': 1.0, 'manufacturer': 1.0, 'know': 1.0}
Word element => {'star': 1.0, 'll': 1.0, 'negative': 1.0, 'so': 1.0, 'can': 1.0, 'hung': 1.0, 'point': 1.0, 'behind': 1.0, 'stand': 1.0, 'having': 1.0, 'expectation': 1.0, 'basically': 1.0, 'proceeded': 1.0, 'perplexed': 1.0, 'seemed': 1.0, 'give': 2.0, 'contact': 1.0, 'free': 1.0, 'have': 1.0, 'questioned': 1.0, 'with': 2.0, 're': 1.0, 'told': 1.0, 'deal': 2.0, 'she': 4.0, 'alissa': 1.0, 'finally': 1.0, 'returned': 1.0, 'never': 1.0, 'week': 1.0, 'happened': 1.0, 'mail': 1.0, 'transferred': 1.0, 'answering': 1.0, 'or': 1.0, 'get': 3.0, 'tell': 1.0, 'works': 1.0, 'through': 2.0, 'came': 1.0, 'fourtunately': 1.0, 'now': 1.0, 's': 1.0, 'over': 1.0, 'work': 1.0, 'didn': 2.0, 'minor': 2.0, 'my': 2.0, 'website': 1.0, 'me': 5.0, 'not': 2.0, 'call': 2.0, 'assembling': 1.0, 'sticks': 2.0, 'amazon': 1.0, 'genuinely': 1.0, 'crib': 1.0, 'issues': 1.0, 'arrived': 1.0, 'quickly': 1.0, 'manufacturer': 2.0, 'bed': 2.0, 'out': 1.0, 'her': 1.0, 'climbing': 1.0, 'box': 1.0, 'that': 5.0, 'stars': 1.0, 'start': 1.0, 'number': 3.0, 'old': 1.0, 'companies': 1.0, 'two': 3.0, 'i': 6.0, 'new': 1.0, 'worried': 1.0, 'time': 1.0, 'your': 1.0, 'on': 5.0, 'why': 1.0, 'stuff': 1.0, 'ridiculous': 1.0, 'internet': 1.0, 'furniture': 1.0, 'when': 4.0, 'you': 5.0, 'a': 11.0, 'discovered': 1.0, 'receptionist': 1.0, 'we': 2.0, 'opening': 1.0, 'don': 4.0, 'assembly': 1.0, 'to': 4.0, 'how': 1.0, 'our': 1.0, 'as': 1.0, 'brand': 1.0, 'buying': 1.0, 'waste': 1.0, 'called': 2.0, 'instructions': 1.0, 'bought': 1.0, 'decided': 1.0, 'one': 2.0, 'ones': 1.0, 'broken': 1.0, 'of': 5.0, 'the': 12.0, 'up': 1.0, 'major': 1.0, 'it': 11.0, 'stunning': 1.0, 'few': 1.0, 'this': 3.0, 'issue': 3.0, 'and': 7.0, 'replacement': 1.0, 't': 8.0, 'fit': 2.0, 'voice': 1.0, 'from': 2.0, 'part': 1.0, 'product': 2.0, 'year': 1.0, 'side': 1.0, 'slat': 1.0, 'had': 1.0, 'was': 4.0, 'doesn': 1.0, 'drawer': 1.0, 'correctly': 1.0, 'an': 1.0, 'dream': 2.0, 'all': 1.0, 'other': 1.0, 'reviewers': 1.0, 'are': 1.0, 'kidding': 1.0, 'toll': 1.0, 'they': 4.0, 'customers': 2.0, 'say': 1.0, 'at': 1.0, 'is': 2.0, 'really': 2.0, 'do': 1.0, 'general': 1.0, 'their': 1.0, 'customer': 1.0, 'quality': 1.0, 'sauder': 1.0, 'send': 1.0, 'them': 1.0, 'parts': 1.0, 'found': 1.0, 'disappointing': 1.0, 'but': 3.0, 'back': 1.0, 'most': 1.0, 'like': 1.0, 'happens': 1.0, 'twice': 1.0, 'sell': 1.0, 'kind': 1.0, 'such': 1.0, 'will': 1.0, 'service': 3.0, 'if': 2.0, 'in': 3.0}
Word element => {'accident': 1.0, 'prevent': 1.0, 'enough': 1.0, 'low': 1.0, 'a': 1.0, 'and': 2.0, 'like': 2.0, 'up': 1.0, 'have': 1.0, 'cute': 1.0, 'is': 3.0, 'because': 1.0, 'product': 1.0, 'to': 2.0, 'much': 1.0, 'major': 1.0, 'this': 1.0, 'it': 2.0, 'i': 2.0, 'take': 1.0, 'space': 1.0, 'drawer': 1.0, 'that': 1.0, 'bed': 1.0, 'for': 1.0, 'don': 1.0, 'storage': 1.0, 't': 1.0, 'the': 1.0}
Word element => {'jammies': 1.0, 'drawer': 1.0, 'storage': 1.0, 'te': 1.0, 'and': 1.0, 'boy': 1.0, 'or': 1.0, 'i': 1.0, 'room': 1.0, 'is': 2.0, 'a': 1.0, 'this': 1.0, 'toddler': 1.0, 'it': 1.0, 'love': 1.0, 'great': 2.0, 'bed': 1.0, 'girl': 1.0, 'for': 2.0}
Word element => {'for': 1.0, 'spring': 1.0, 'purchased': 1.0, 'before': 1.0, 'issue': 1.0, 'reviewers': 1.0, 'fellow': 1.0, 'thanks': 1.0, 'solely': 1.0, '5': 1.0, 'than': 1.0, 'comfortable': 1.0, 'who': 1.0, 'single': 1.0, 'review': 1.0, 'half': 1.0, 'item': 3.0, 'also': 3.0, 'seems': 1.0, 'be': 3.0, 'been': 1.0, 'not': 2.0, 'that': 2.0, 'because': 1.0, 'knew': 1.0, 'yard': 1.0, 'still': 1.0, 'in': 5.0, 'baby': 2.0, 'she': 1.0, 'it': 8.0, 'comfy': 1.0, 'daily': 1.0, 'and': 6.0, 'to': 6.0, 'as': 2.0, 'now': 1.0, 'thin': 1.0, 'is': 12.0, 'comes': 2.0, 'together': 2.0, 'my': 3.0, '3': 4.0, 'nice': 1.0, 'two': 1.0, 'well': 1.0, 'slept': 1.0, 'i': 5.0, 'suitable': 1.0, 'thing': 1.0, 'play': 1.0, 'about': 1.0, 'no': 1.0, 'have': 3.0, 'topper': 1.0, '1': 1.0, 'since': 1.0, 'flimsy': 1.0, 'we': 3.0, 'stars': 2.0, 't': 1.0, 'fit': 1.0, 'meant': 1.0, 'original': 1.0, 'on': 6.0, 'update': 1.0, 'this': 8.0, 'mattress': 9.0, 'soft': 1.0, 'much': 1.0, 'put': 2.0, 'pictures': 1.0, 'crib': 1.0, 'size': 2.0, 'space': 1.0, 'covered': 3.0, 'of': 4.0, 'the': 13.0, 'can': 1.0, 'included': 3.0, 'used': 1.0, 'rather': 1.0, 'like': 1.0, 'was': 1.0, 'packaged': 1.0, 'easy': 1.0, 'reason': 1.0, 'using': 1.0, 'looking': 1.0, 'better': 1.0, 'think': 1.0, 'definitely': 1.0, 'lay': 1.0, 'would': 1.0, 'springs': 2.0, 'sleeping': 1.0, 'sturdy': 1.0, 'gave': 1.0, 'month': 1.0, 'same': 1.0, 'biggest': 1.0, 'problem': 1.0, 'with': 3.0, 'shown': 1.0, 'says': 1.0, 'a': 8.0, 'pictured': 1.0, 'inch': 1.0, 'daughter': 1.0, 'foam': 1.0, 'plastic': 1.0, 'too': 1.0, 'one': 1.0, 'far': 1.0, 'sheet': 1.0, 'barely': 1.0, 'walking': 1.0, 'perfect': 1.0, 'bed': 2.0, 'directly': 1.0, 'most': 1.0, 'typical': 1.0, 'mattresses': 1.0, 'market': 1.0}
Word element => {'doing': 1.0, 'are': 1.0, 'what': 1.0, 'pay': 1.0, 'need': 1.0, 'attention': 1.0, 'you': 2.0, 'people': 1.0, 'stuff': 1.0, 'packing': 1.0, 'when': 1.0, 'this': 2.0, 'because': 1.0, 'expected': 1.0, 'have': 1.0, 'all': 1.0, 'am': 1.0, '2gether': 1.0, 'better': 1.0, 'bought': 1.0, 'dissapiinted': 1.0, 'i': 3.0, 'up': 1.0, 'of': 1.0, 't': 1.0, 'the': 1.0, 'necessary': 1.0, 'my': 1.0, 'pieces': 1.0, 'very': 1.0, 'son': 1.0, 'to': 3.0, 'put': 1.0, 'didn': 1.0, 'crib': 1.0}
Word element => {'bought': 1.0, 'already': 1.0, 'extravagant': 1.0, 'room': 2.0, 'come': 1.0, 'with': 2.0, 'it': 1.0, 'first': 2.0, 'does': 1.0, 'this': 3.0, 'mattress': 3.0, 'dimensions': 1.0, 'its': 1.0, 'look': 1.0, 'normal': 1.0, 'will': 1.0, 'your': 1.0, 'put': 1.0, 'work': 1.0, 'to': 2.0, 'all': 2.0, 'small': 2.0, 'have': 2.0, 'is': 4.0, 'footage': 1.0, 'in': 2.0, 'crib': 4.0, 'the': 1.0, 'not': 2.0, 'just': 1.0, 'at': 1.0, 'for': 2.0, 'fit': 1.0, 'although': 1.0, 'please': 1.0, 'an': 1.0, 'own': 1.0, 'want': 1.0, 'if': 2.0, 'thin': 1.0, 'easy': 1.0, 'together': 1.0, 'little': 1.0, 'very': 1.0, 'great': 1.0, 'nice': 1.0, 'looking': 1.0, 'you': 4.0, 'live': 1.0, 'and': 1.0, 'square': 1.0, 'or': 2.0, 'city': 1.0, 'a': 1.0, 'baby': 2.0}
Word element => {'helpful': 1.0, 'review': 1.0, 'hope': 1.0, 'sheets': 2.0, 'standard': 1.0, 'use': 1.0, 'the': 7.0, 'without': 1.0, 'uses': 1.0, 'assembled': 1.0, '36': 1.0, 'help': 1.0, 'not': 5.0, 's': 2.0, 'a': 6.0, 'hour': 1.0, 'also': 2.0, 'will': 1.0, 'vacation': 1.0, 'than': 1.0, 'less': 1.0, 'purchasing': 1.0, 'together': 1.0, 'easy': 1.0, 'mini': 3.0, 'to': 3.0, 'our': 1.0, 'was': 2.0, 'beautiful': 1.0, 'me': 1.0, 'my': 1.0, 'in': 2.0, 'i': 3.0, 'am': 2.0, 'unless': 1.0, 'crib': 8.0, 'husbands': 1.0, 'put': 1.0, 'on': 2.0, 'portable': 2.0, 'pregnant': 1.0, 'can': 1.0, 'fix': 1.0, 'from': 1.0, 'upside': 1.0, 'you': 4.0, 'able': 1.0, 'taking': 1.0, 'have': 1.0, 'at': 1.0, 'is': 7.0, 'plan': 1.0, 'weeks': 1.0, 'fits': 1.0, 'an': 1.0, 'matteresses': 1.0, 'amazingly': 1.0, 'baby': 1.0, 'and': 3.0, 'this': 6.0, 'it': 10.0, 'truly': 1.0, 'wonderfully': 1.0, 'mattress': 1.0, 'mrs': 1.0, 'meaning': 1.0, 'here': 1.0, 'be': 1.0, 'does': 1.0, 'master': 1.0, 'bedroom': 1.0, 'trust': 1.0, 'move': 1.0, '2': 1.0, 'thing': 1.0, 'about': 1.0, 'matteress': 1.0, 'with': 3.0, 'using': 1.0, 'fact': 1.0, 'inexpensive': 1.0, 'downside': 1.0, 'one': 1.0, 'easily': 1.0, 'that': 5.0, 'only': 2.0, '1': 1.0, 'inch': 1.0, 'within': 1.0, 'please': 1.0, 'thick': 1.0, 'for': 1.0, 'bed': 1.0, 'bedside': 1.0, 'are': 1.0, 'very': 1.0, 'what': 1.0, 'makes': 1.0, 'brave': 1.0, 'comes': 1.0, 'room': 3.0, 're': 1.0, 'moving': 1.0, 'or': 1.0}
Word element => {'where': 1.0, 'good': 1.0, 'keep': 1.0, 'away': 1.0, 'just': 1.0, 'because': 1.0, 'not': 2.0, 'can': 1.0, 'size': 1.0, 'standard': 1.0, 'store': 1.0, 'easy': 2.0, 'thought': 1.0, 'quality': 1.0, 'will': 2.0, 'but': 2.0, 'for': 2.0, 'crib': 3.0, 'would': 1.0, 'was': 1.0, 'portable': 1.0, 'you': 1.0, 'word': 1.0, 'wrong': 1.0, 'great': 1.0, 'the': 2.0, 'small': 1.0, 'mean': 1.0, 'i': 4.0, 'storage': 2.0, 'it': 5.0, 'this': 1.0, 'folded': 1.0, 'is': 3.0, 'a': 2.0, 'sure': 1.0, 'edition': 1.0, 'fold': 1.0, 'of': 1.0}
Word element => {'much': 1.0, 'be': 1.0, 'expect': 1.0, 'did': 1.0, 'so': 1.0, 'twins': 1.0, 'after': 1.0, 'together': 1.0, 'realized': 1.0, 'to': 1.0, 'was': 1.0, 'reviews': 1.0, 'put': 1.0, 'and': 1.0, 'the': 2.0, 'of': 1.0, 'crib': 1.0, 'for': 1.0, 'have': 1.0, 'not': 1.0, 'because': 1.0, 'purchased': 1.0, 'price': 1.0, 'i': 5.0, 'this': 1.0, 'it': 3.0, 'my': 1.0, 'smaller': 2.0, 'standard': 1.0, 'than': 1.0, 'cribs': 1.0}
Word element => {'last': 1.0, 'will': 1.0, 'lovely': 1.0, '3': 1.0, 'located': 1.0, 'quality': 1.0, 'sturdy': 1.0, 'friend': 1.0, 'feels': 1.0, 'product': 1.0, 'for': 2.0, 'unless': 1.0, 'downside': 1.0, 'know': 1.0, 'inside': 1.0, 'went': 1.0, 'sized': 1.0, 'warning': 1.0, 'intimidated': 1.0, 'by': 2.0, 'just': 1.0, 'picture': 1.0, 'a': 5.0, 's': 2.0, 'headboard': 1.0, 'haha': 1.0, '34': 2.0, 'finished': 1.0, 'is': 9.0, 'said': 1.0, 'in': 3.0, 'easily': 1.0, 'because': 1.0, 'that': 4.0, 'pieces': 2.0, 'lot': 1.0, 'the': 5.0, 'of': 2.0, 'convertible': 1.0, 'there': 2.0, 'only': 1.0, 'sticker': 1.0, 'end': 1.0, 'nursery': 1.0, 'it': 3.0, 'remove': 1.0, 'this': 3.0, 'sufficient': 1.0, 'together': 1.0, 'were': 1.0, 'full': 1.0, 'solid': 1.0, 'he': 1.0, 'me': 1.0, 'more': 1.0, 'husband': 1.0, 'had': 1.0, 'was': 1.0, 'area': 1.0, 'to': 2.0, 'bigger': 1.0, 'prepare': 1.0, 'annoying': 1.0, 'as': 2.0, 'take': 1.0, 'many': 1.0, 'tall': 1.0, 'time': 1.0, 'needs': 1.0, 'peel': 1.0, 'away': 1.0, 'difficult': 1.0, 'inch': 2.0, 'did': 1.0, 'mini': 1.0, 'strip': 1.0, 'off': 1.0, 'nice': 1.0, 'little': 2.0, 'shown': 1.0, 'gone': 1.0, 'years': 1.0, 'no': 1.0, 'your': 2.0, 'probably': 1.0, 'crib': 4.0, 'even': 1.0, 'took': 1.0, 'on': 1.0, 'long': 1.0, 'assemble': 1.0, 'than': 1.0, 'assembly': 1.0, 'process': 1.0, 'but': 1.0, 'really': 1.0, 'reason': 1.0, 'and': 7.0, 'anyone': 1.0, 'kid': 1.0, 'i': 3.0, 'feet': 1.0}
Word element => {'together': 1.0, 'put': 1.0, 'nephew': 1.0, 'old': 1.0, 'for': 1.0, 'year': 1.0, 'it': 3.0, 'i': 2.0, 'smaller': 1.0, 'me': 1.0, 'thought': 1.0, 'than': 1.0, 'but': 1.0, 'do': 1.0, 'like': 1.0, 'my': 1.0, 's': 1.0, '17': 1.0}
Word element => {'twin': 1.0, 'use': 1.0, 'grows': 1.0, 'handy': 1.0, 'come': 1.0, 'through': 1.0, 'coils': 1.0, 'feel': 1.0, 'worthless': 1.0, 'send': 1.0, 'sturdy': 1.0, 'they': 1.0, 'easily': 1.0, 'that': 1.0, 'baby': 3.0, 'comfy': 1.0, 'will': 2.0, 'though': 2.0, 'as': 4.0, 'day': 1.0, 'pad': 2.0, '34': 1.0, 'my': 1.0, 'me': 1.0, 'on': 1.0, 'mattress': 1.0, 'purchase': 1.0, 'there': 2.0, 'recommend': 1.0, 'together': 3.0, 'be': 3.0, 'it': 10.0, 'bed': 2.0, 'perfect': 1.0, 'also': 1.0, 'puzzles': 1.0, 's': 2.0, 't': 1.0, 'determine': 1.0, 'stationary': 1.0, 'am': 1.0, 'someone': 1.0, 'if': 1.0, 'apart': 1.0, 'this': 2.0, 'few': 1.0, 'but': 2.0, 'and': 6.0, 'letters': 1.0, 'so': 2.0, 'can': 1.0, 'for': 4.0, 'actually': 1.0, 'crib': 6.0, 'bolted': 1.0, 'size': 1.0, 'in': 3.0, '3': 1.0, 'taking': 1.0, 'are': 3.0, 'not': 4.0, 'has': 1.0, 'needing': 1.0, 'portable': 2.0, 'put': 1.0, 'easy': 1.0, 'area': 1.0, 'left': 2.0, 'needed': 1.0, 'looking': 1.0, 'packaging': 1.0, 'then': 1.0, 'leg': 1.0, 'i': 5.0, 'due': 1.0, 'is': 8.0, 'more': 1.0, 'back': 1.0, 'limited': 1.0, 'legs': 1.0, 'of': 1.0, 'the': 10.0, 'casters': 1.0, 'was': 2.0, 'pretty': 1.0, 'to': 7.0, 'space': 1.0, 'who': 1.0, 'arrived': 1.0, 'move': 1.0, 'from': 1.0, 'while': 1.0, 'once': 1.0, 'room': 2.0, 'really': 2.0, 'no': 2.0, 'mechanically': 1.0, 'a': 10.0, 'small': 1.0, 'footprint': 1.0, 'dream': 1.0, 'other': 1.0, 'issue': 1.0, 'toddler': 1.0, 'thank': 1.0, 'goodness': 1.0, 'you': 2.0, 'things': 1.0, 'inclined': 1.0, 'each': 2.0, 'would': 3.0, 'mini': 1.0, 'wasn': 1.0, 'difficult': 1.0, 'bought': 1.0, 'instructions': 1.0, 'front': 1.0, 'opinion': 1.0, 'label': 1.0, 'true': 1.0, 'right': 1.0, 'piec': 1.0, 'with': 4.0, 'component': 1.0, 'frustrating': 1.0, 'open': 1.0, 'labeled': 1.0, 'actual': 1.0, 'try': 1.0, 'seems': 2.0, 'see': 1.0, 'our': 2.0, 'how': 1.0, 'very': 2.0, 'which': 3.0, 'good': 1.0}
Word element => {'mattress': 1.0, 'cones': 1.0, 'around': 1.0, 'move': 1.0, 'bedroom': 1.0, 'our': 1.0, 'fits': 1.0, 'easy': 1.0, 'compact': 1.0, 'very': 1.0, 'different': 1.0, 'wood': 1.0, 'perfectly': 1.0, 'and': 3.0, 'cheap': 1.0, 'love': 1.0, 'usually': 1.0, 'able': 1.0, 'my': 2.0, 'purchase': 1.0, 'also': 1.0, 'in': 2.0, 'colored': 1.0, 'needs': 1.0, 'it': 1.0, 'this': 1.0, 'great': 1.0, 'the': 1.0, 't': 1.0, 'by': 1.0, 'beautifully': 1.0, 'plus': 1.0, 'together': 1.0, 'himself': 1.0, 'help': 1.0, 'which': 2.0, 'to': 2.0, 'was': 1.0, 'husband': 1.0, 'look': 1.0, 'settings': 1.0, 'is': 3.0, 'a': 1.0, 'put': 1.0, 'doesn': 1.0}
Word element => {'easy': 1.0, 'though': 1.0, 'realize': 1.0, 'assemble': 1.0, 'stars': 1.0, 'how': 1.0, 'did': 1.0, 'should': 1.0, 'is': 2.0, 'really': 1.0, 'finishing': 1.0, 'this': 2.0, 'four': 1.0, 'have': 1.0, 'closely': 1.0, 'because': 1.0, 'not': 1.0, 'gave': 1.0, 'i': 2.0, 'small': 1.0, 'the': 1.0, 'more': 1.0, 'crib': 1.0, 'good': 1.0, 'checked': 1.0, 'to': 1.0, 'measurement': 1.0, 'wood': 1.0, 'and': 2.0}
Word element => {'nice': 1.0, 'very': 1.0, 'price': 1.0, 'bought': 1.0, 'sheet': 1.0, 'from': 1.0, 'wife': 1.0, 'hard': 1.0, 'sturdy': 1.0, 'be': 2.0, 'would': 2.0, 'what': 1.0, 'easy': 2.0, 'area': 1.0, 'sure': 1.0, 'get': 1.0, 'bumpers': 1.0, 'space': 1.0, 'to': 3.0, 'as': 2.0, 'was': 2.0, 'its': 4.0, 'living': 1.0, 'even': 1.0, 'okay': 1.0, 'wouldn': 1.0, 'fine': 1.0, 'company': 1.0, 'for': 4.0, 'than': 1.0, 'assemble': 1.0, 'crib': 5.0, 'inside': 1.0, 'those': 1.0, 'give': 1.0, 'not': 1.0, 'the': 8.0, 'new': 1.0, 'assembled': 1.0, 'flimsy': 1.0, 'any': 1.0, 'feel': 1.0, 'until': 1.0, 'see': 1.0, 'small': 1.0, 'a': 7.0, 't': 2.0, 'is': 4.0, 'thought': 1.0, 'it': 5.0, 'my': 1.0, 'looks': 1.0, 'this': 4.0, 'mattress': 7.0, 'i': 7.0, 'takes': 1.0, 'affordable': 1.0, 'great': 2.0, 'spring': 2.0, 'just': 1.0, 'looking': 1.0, 'buy': 1.0, 'and': 9.0, 'you': 5.0, 'move': 1.0, 'apartment': 1.0, 'how': 1.0, 'did': 1.0, 'provided': 2.0, 'inch': 1.0, '3': 1.0, 'think': 1.0, 'thin': 1.0, 'all': 3.0, 'an': 1.0, 'in': 4.0, 'm': 1.0, 'because': 1.0, 'that': 1.0, 'wasn': 1.0, 'baby': 1.0, 'safe': 2.0, 'bigger': 1.0, 'if': 1.0, 'or': 1.0, 'need': 1.0, 'use': 1.0, 'too': 1.0, 'one': 1.0, 'are': 1.0, 'plus': 1.0, 'live': 1.0, 'barely': 2.0, 'bed': 2.0, 'thick': 1.0, 'under': 1.0, 'so': 2.0, 'lightweight': 1.0, 'can': 1.0, 'cheap': 1.0, 'like': 1.0, 'with': 1.0}
Word element => {'you': 1.0, 'under': 1.0, 'a': 1.0, 'but': 1.0, 'when': 1.0, 'babies': 1.0, 'grand': 1.0, 'my': 1.0, 'the': 1.0, 'for': 1.0, 'fixed': 1.0, 'was': 1.0, 'its': 1.0, 'sisters': 1.0, 'visit': 1.0, 'did': 1.0, 'perfect': 1.0, 'just': 1.0, 'yes': 1.0, 'so': 1.0, 'thank': 1.0, 'they': 1.0, 'pad': 1.0, 'that': 2.0, 'came': 1.0, 'it': 3.0, 'with': 2.0, 'is': 1.0, 'really': 1.0, 'blanket': 1.0, 'easily': 1.0, 'thin': 1.0}
Word element => {'a': 1.0, 'that': 1.0, 'nice': 1.0, 'the': 1.0, 'crib': 2.0, 'was': 1.0, 'convertible': 1.0, 'right': 1.0, 'to': 1.0, 'size': 1.0, 'looks': 1.0, 'assemble': 1.0, 'it': 3.0, 'great': 1.0, 'and': 1.0, 'is': 2.0, 'easy': 1.0, 'just': 1.0}
Word element => {'with': 1.0, 'mattressto': 1.0, 'portable': 1.0, '3': 1.0, 'on': 1.0, 'pinch': 1.0, 'in': 1.0, 'as': 1.0, 'front': 1.0, 'i': 5.0, 'space': 1.0, 'would': 1.0, 'something': 1.0, 'that': 1.0, 'crib': 4.0, 'ridiculously': 1.0, 'are': 1.0, 'anyway': 1.0, 'limited': 1.0, 'is': 3.0, 'exactly': 1.0, 'suppose': 1.0, 'have': 1.0, 'so': 2.0, 'smaller': 1.0, 'purchased': 1.0, 'what': 1.0, 'perfect': 1.0, 'this': 2.0, 'mattress': 2.0, 'dream': 1.0, 'than': 1.0, 'standard': 1.0, 'sized': 1.0, 'wanted': 3.0, 'and': 3.0, 'will': 2.0, 'quality': 1.0, 'work': 1.0, 'but': 1.0, 'be': 2.0, 'which': 1.0, 'using': 2.0, 'cosleeper': 1.0, 'fit': 1.0, 'where': 1.0, 'it': 5.0, 'remove': 1.0, 'the': 2.0, 'go': 1.0, 'a': 5.0, 'could': 1.0, 'we': 5.0, 't': 1.0, 'big': 1.0, 'feel': 1.0, 'great': 1.0, 'panel': 1.0, 'convertible': 1.0, 'included': 1.0, 'isn': 1.0, 'me': 1.0, 'not': 1.0}
Word element => {'came': 1.0, 'we': 1.0, 'sturdy': 1.0, 'get': 1.0, 'and': 1.0, 'sleeping': 1.0, 'very': 1.0, 'mattress': 1.0, 'together': 1.0, 'may': 1.0, 'easy': 1.0, 'put': 2.0, 'but': 1.0, 'with': 1.0, 'it': 3.0, 'a': 1.0, 'in': 1.0, 'one': 1.0, 'for': 1.0, 'was': 1.0, 'to': 2.0, 'now': 1.0, 'is': 1.0, 'on': 1.0, 'baby': 1.0, 'the': 1.0}
Word element => {'crib': 1.0, 'not': 1.0, 's': 1.0, 'pin': 1.0, 'a': 2.0, 'that': 1.0, 'mattress': 1.0, 'is': 3.0, 'included': 1.0, 'play': 1.0, 'this': 1.0, 'the': 1.0, 'less': 1.0, 'inch': 1.0, '1': 1.0, 'then': 1.0, 'thick': 1.0}
Word element => {'shipping': 1.0, 'two': 1.0, 'got': 1.0, 'diapers': 1.0, 'directly': 1.0, 'price': 1.0, 'big': 1.0, 'no': 1.0, 'top': 1.0, 'around': 1.0, 'or': 1.0, 'wrap': 1.0, 'i': 1.0, 'as': 1.0, 'using': 1.0, 'did': 1.0, 'together': 1.0, 'this': 3.0, 'days': 1.0, 'soft': 1.0, 'not': 1.0, 'n': 1.0, 'towel': 1.0, 'teether': 1.0, 'yr': 1.0, 'easy': 1.0, 'mini': 2.0, 'tries': 1.0, 'solution': 1.0, 'if': 1.0, 'bigger': 2.0, 'needed': 1.0, 'bother': 1.0, 'rent': 1.0, 'herself': 1.0, 'pack': 1.0, 'much': 1.0, 'do': 1.0, 'put': 1.0, 's': 3.0, 't': 3.0, 'we': 6.0, 'deal': 1.0, 'baby': 5.0, 'ahead': 2.0, 'too': 1.0, 'and': 6.0, 'play': 2.0, 'by': 2.0, '1': 2.0, 'weren': 1.0, 'with': 3.0, 'it': 5.0, 'looks': 1.0, 'taken': 1.0, 'is': 4.0, 'free': 1.0, 'want': 2.0, 'from': 1.0, 'converts': 1.0, 'com': 1.0, 'but': 2.0, 'house': 1.0, 'out': 2.0, 'couple': 1.0, 'room': 3.0, 'helping': 1.0, 'pine': 1.0, 'to': 5.0, 'be': 1.0, 'something': 2.0, 'over': 1.0, 'don': 1.0, 'ordered': 1.0, 'didn': 1.0, 'crib': 3.0, 'probably': 1.0, 'a': 7.0, 'small': 1.0, 'after': 1.0, 'the': 9.0, 'of': 3.0, 'old': 1.0, 'mattress': 2.0, 'visible': 1.0, 'screw': 1.0, 'holes': 1.0, 'means': 1.0, 'us': 1.0, 'sturdy': 1.0, 'fits': 1.0, 'only': 1.0, 'purchase': 1.0, 'leaving': 1.0, 'for': 1.0, 'toys': 1.0, 'books': 1.0, 'day': 1.0, 'perfect': 1.0, 'travelite': 1.0, 'bed': 1.0, 'in': 3.0, 'get': 1.0, 'months': 1.0, 'can': 1.0, 'included': 1.0, 'so': 1.0, 'new': 1.0, 'time': 2.0, 'right': 1.0, 'll': 3.0, 'true': 1.0, 'that': 2.0, 'you': 1.0, 'again': 1.0, 'entirely': 1.0, 'knew': 1.0, 'grew': 1.0, 'shocked': 1.0, 'was': 1.0, 'wood': 1.0, 'good': 1.0, 'which': 1.0}
Word element => {'really': 1.0, 'is': 1.0, 'move': 1.0, 'pretty': 1.0, 'easy': 1.0, 'to': 2.0, 'had': 1.0, 'be': 2.0, 'would': 1.0, 'holder': 1.0, 'by': 1.0, 'it': 2.0, 'the': 4.0, 'holes': 1.0, 'that': 1.0, 'portable': 2.0, 'a': 1.0, 'beds': 1.0, 'with': 1.0, 'mistook': 1.0, 'too': 1.0, 'and': 1.0, 'bed': 1.0, 'one': 1.0, 'for': 1.0, 'but': 1.0, 'disappointing': 1.0, 'of': 1.0, 'screw': 1.0, 'have': 1.0, 'this': 1.0, 'mattress': 2.0, 'has': 1.0, 'about': 1.0, 'no': 1.0, 'some': 1.0, 'i': 1.0, 'threads': 1.0, 'so': 1.0, 'afixed': 1.0, 'other': 1.0, 'way': 1.0, 'read': 1.0, 'very': 1.0, 'folding': 1.0, 'will': 1.0, 'also': 1.0, 'disappointed': 1.0}
Word element => {'to': 2.0, 'one': 1.0, 'panels': 1.0, 'attach': 1.0, 'of': 1.0, 'making': 1.0, 'the': 3.0, 'back': 1.0, 'didnt': 1.0, 'required': 1.0, 'other': 1.0, 'have': 1.0, 'pieces': 1.0, 'unable': 1.0, 'holes': 1.0, 'it': 1.0}
Word element => {'by': 1.0, 'box': 1.0, 'from': 1.0, 'get': 1.0, 'to': 2.0, 'two': 1.0, 'me': 1.0, 'i': 1.0, 'good': 1.0, 'done': 1.0, 'm': 1.0, 'happy': 1.0, 'hours': 1.0, 'crib': 1.0, 'with': 1.0, 'myself': 1.0, 'this': 1.0, 'total': 1.0, 'size': 1.0, 'and': 1.0, 'only': 1.0, 'about': 1.0, 'took': 1.0}
Word element => {'well': 1.0, 'be': 1.0, 'too': 1.0, 'wasn': 1.0, 'there': 1.0, 'built': 1.0, 'you': 1.0, 'bad': 1.0, 'all': 2.0, 'beatiful': 1.0, 'other': 1.0, 'this': 1.0, 'add': 1.0, 'is': 2.0, 'seems': 1.0, 'pieces': 1.0, 'small': 1.0, 't': 1.0, 'the': 4.0, 'bedroom': 1.0, 'excellant': 1.0, 'and': 3.0, 'assembly': 1.0, 'space': 1.0, 'became': 1.0, 'our': 1.0, 'were': 1.0, 'tight': 1.0, 'crib': 2.0, 'to': 1.0, 'was': 1.0, 'nieces': 1.0, 'an': 1.0, 'furniture': 1.0, 'purchase': 1.0}
Word element => {'deal': 1.0, 'still': 1.0, 'it': 1.0, 'buy': 1.0, 'day': 1.0, 'a': 2.0, 'matress': 2.0, 'thick': 1.0, 'inch': 1.0, 'quality': 1.0, 'the': 1.0, 'craftsmanship': 1.0, 'adequate': 1.0, 'good': 3.0, 'really': 1.0, 'with': 1.0, 'on': 1.0, 'is': 1.0, 'not': 1.0, 'maybe': 1.0, '4': 1.0, '1inch': 1.0}
Word element => {'know': 1.0, 'me': 1.0, 'please': 1.0, 'am': 1.0, 'while': 1.0, 'work': 1.0, 'suggestions': 1.0, 'don': 1.0, 'had': 1.0, 'fixed': 1.0, 'jogging': 2.0, 'realistically': 1.0, 'really': 1.0, 'great': 1.0, 'the': 1.0, 'i': 4.0, 'high': 1.0, 'let': 1.0, 'cup': 1.0, 'my': 1.0, 'for': 2.0, 'if': 1.0, 'functions': 1.0, 'hopes': 1.0, 'this': 6.0, 'see': 1.0, 'stroller': 2.0, 'any': 2.0, 'to': 2.0, 'attaching': 1.0, 'all': 1.0, 'of': 1.0, 'are': 1.0, 'way': 1.0, 'issue': 1.0, 'five': 1.0, 't': 1.0, 'a': 2.0, 'could': 2.0, 'be': 2.0, 'your': 1.0, 'on': 1.0, 'except': 1.0, 'bummer': 1.0, 'real': 1.0, 'then': 1.0, 'keep': 1.0, 'total': 1.0, 'star': 1.0, 'secure': 2.0, 'will': 1.0, 'item': 1.0, 'need': 1.0, 'holder': 1.0, 'that': 1.0}
Word element => {'product': 1.0, 'good': 1.0, 'with': 1.0, 'unusable': 1.0, 'completely': 1.0, 'rendering': 1.0, 'crack': 1.0, 'bag': 1.0, 'diaper': 1.0, 'found': 1.0, 'sent': 1.0, 'recently': 1.0, 'temperature': 1.0, 'was': 2.0, 'room': 1.0, 'before': 1.0, 'water': 2.0, 'soaking': 1.0, 'that': 1.0, 'into': 3.0, 'turned': 1.0, 'convertible': 1.0, 'and': 2.0, 'free': 1.0, 'sitter': 1.0, 'bpa': 1.0, 'venting': 1.0, 'disappointed': 1.0, 'made': 1.0, 'feature': 1.0, 'these': 1.0, 'the': 12.0, 'one': 1.0, 'bought': 1.0, 'unique': 1.0, 'because': 1.0, 'not': 2.0, 'night': 1.0, 'usa': 1.0, 'them': 4.0, 'sippy': 1.0, 'started': 1.0, 'or': 1.0, 'cup': 1.0, 'of': 3.0, 'bottom': 1.0, 'in': 4.0, 'small': 2.0, 'noticed': 1.0, 'large': 1.0, 'cracks': 2.0, 'developing': 1.0, 'on': 1.0, 'warmer': 2.0, 'all': 2.0, 'to': 1.0, 'outside': 1.0, 'from': 1.0, 'so': 3.0, 'bottle': 2.0, 'what': 1.0, 'thought': 2.0, 'although': 1.0, 'month': 1.0, 'it': 2.0, 's': 1.0, 'a': 2.0, 'we': 7.0, 'might': 1.0, 'read': 1.0, 'within': 1.0, 'be': 1.0, 'putting': 3.0, 'did': 1.0, 'anything': 1.0, 'whole': 1.0, 'about': 1.0}
Word element => {'really': 1.0, 'expensive': 1.0, 'obviously': 1.0, 'system': 1.0, 'collapse': 1.0, 'does': 1.0, 'is': 1.0, 'work': 1.0, 'but': 1.0, 'well': 2.0, 'very': 1.0, 'doesn': 2.0, 'weil': 1.0, 'nipple': 2.0, 'the': 5.0, 'this': 1.0, 'wouldn': 1.0, 'venting': 1.0, 'like': 1.0, 'slower': 1.0, 'easily': 1.0, 'glass': 1.0, 'breastfed': 1.0, 'bought': 2.0, 'baby': 1.0, 'often': 1.0, 'avent': 1.0, 'my': 1.0, 'exclusively': 1.0, 'slowest': 1.0, 'it': 2.0, 'she': 2.0, 'i': 2.0, 'tried': 1.0, 'that': 1.0, 'flow': 1.0, 'had': 2.0, 'vain': 1.0, 'to': 2.0, 'wanted': 1.0, 'in': 1.0, 'hope': 1.0, 'worth': 1.0, 'latch': 3.0, 'her': 1.0, 'nursers': 1.0, 'and': 3.0, 'couldn': 1.0, 'breast': 1.0, 'platex': 1.0, 'would': 1.0, 'ventaire': 1.0, 'not': 2.0, 't': 4.0, 'we': 2.0, 'might': 1.0, 'go': 1.0, 'back': 1.0, 'on': 3.0, 'playtex': 1.0, 'always': 1.0, 'much': 1.0, 'drowned': 1.0, 'try': 1.0, 'bottle': 1.0, 'so': 2.0}
Word element => {'i': 1.0, 'the': 4.0, 'for': 1.0, 'most': 1.0, 'this': 1.0, 'at': 1.0, 'some': 1.0, 'they': 2.0, 'around': 1.0, 'is': 2.0, 'leaks': 1.0, 'simple': 1.0, 'item': 1.0, 'and': 3.0, 'rotating': 1.0, 'doesn': 1.0, 'of': 1.0, 'leak': 2.0, 'good': 1.0, 'grips': 1.0, 'well': 1.0, 'recap': 1.0, 'have': 1.0, 'least': 1.0, 'to': 1.0, 'cup': 2.0, 'my': 1.0, 'it': 2.0, 'useless': 1.0, 't': 1.0, 's': 1.0, 'pretty': 1.0, 'only': 1.0, 'much': 1.0, 'proof': 1.0, 'then': 1.0, 'real': 1.0, 'are': 2.0, 'sometimes': 1.0, 'holding': 1.0, 'reason': 1.0, 'never': 1.0, 'tighten': 1.0, 'complaint': 1.0, 'down': 1.0, 'time': 1.0, 'so': 1.0, 'just': 1.0}
Word element => {'amazon': 1.0, 'here': 1.0, 'more': 1.0, 'is': 1.0, 'his': 1.0, 'which': 1.0, 'brand': 2.0, 'tippee': 1.0, 'part': 1.0, 'looked': 1.0, 'tommie': 1.0, 'settle': 1.0, 'so': 2.0, 'there': 1.0, 'buy': 1.0, 'r': 1.0, 'change': 1.0, 'but': 2.0, 'nipple': 1.0, 'trouble': 1.0, 'an': 1.0, 'how': 2.0, 'people': 1.0, 'i': 2.0, 'took': 1.0, 'are': 2.0, 'fact': 1.0, 'my': 1.0, 'went': 1.0, 'huge': 2.0, 'not': 1.0, 'similar': 1.0, 'and': 3.0, 'away': 1.0, 'issue': 1.0, 'our': 1.0, 'paci': 2.0, 'to': 3.0, 'they': 2.0, 'the': 3.0, 'replace': 1.0, 'on': 3.0, 'dare': 1.0, 'had': 1.0, 'commented': 1.0, 'son': 1.0, 'buying': 1.0, 'with': 1.0, 'it': 4.0, 'right': 1.0, 'discontinued': 1.0, 'these': 1.0, 'some': 1.0, 'no': 1.0, 'out': 1.0, 'wasn': 1.0, 'for': 2.0, 'love': 1.0, 'us': 2.0, 'spit': 1.0, 'missing': 1.0, 'also': 1.0, 'in': 1.0, 'baby': 1.0, 'them': 2.0, 'usa': 1.0, 'made': 1.0, 'china': 1.0, 'a': 1.0, 'notice': 1.0, 't': 1.0, 's': 2.0, 'we': 4.0, 'needed': 1.0, 'that': 1.0, 'babies': 1.0}
Word element => {'recommend': 1.0, 'highly': 1.0, 'size': 1.0, 'its': 1.0, 'himself': 1.0, 'hold': 1.0, 'nose': 1.0, 'away': 1.0, 'stays': 1.0, 'big': 1.0, 'is': 1.0, 'for': 1.0, 'love': 1.0, 'he': 3.0, 'sticks': 1.0, 'and': 4.0, 'it': 7.0, 'of': 3.0, 'hospital': 1.0, 'from': 2.0, 'shot': 1.0, 'easy': 1.0, 'so': 2.0, 'loves': 1.0, 'gave': 1.0, 'that': 2.0, 'because': 1.0, 'find': 1.0, 'still': 1.0, 'are': 1.0, 'the': 3.0, 'ped': 1.0, 'couldn': 1.0, 'keep': 2.0, 'recommended': 1.0, 'well': 1.0, 'mine': 1.0, 'we': 1.0, 't': 2.0, 'a': 5.0, 's': 3.0, 'with': 1.0, 'piece': 2.0, 'on': 1.0, 'guy': 1.0, 'uses': 1.0, 'outside': 1.0, 'our': 1.0, 'paci': 2.0, 'to': 4.0, 'baby': 1.0, 'wubanub': 1.0, 'not': 1.0, 'those': 1.0, 'my': 1.0, 'soothie': 1.0, 'construction': 1.0, 'little': 2.0, 'in': 2.0, 'i': 2.0, 'safety': 1.0, 'didn': 1.0, 'even': 1.0, 'one': 3.0, 'bought': 1.0, 'attempt': 1.0, 'help': 1.0, 'friend': 1.0, 'can': 2.0, 'but': 2.0, 'work': 1.0, 'kid': 1.0, 'his': 1.0, 'weil': 1.0}
Word element => {'will': 1.0, 'is': 1.0, 'if': 1.0, 'get': 1.0, 'vent': 1.0, 'bottle': 2.0, 'pop': 1.0, 'slight': 1.0, 'for': 1.0, 'too': 1.0, 'and': 3.0, 'it': 2.0, 'collapse': 1.0, 'shake': 1.0, 'through': 1.0, 'then': 2.0, 'pull': 1.0, 'water': 2.0, 'running': 1.0, 'under': 1.0, 'ring': 2.0, 'have': 1.0, 'you': 1.0, 'this': 1.0, 'mentions': 1.0, 'manual': 1.0, 'them': 1.0, 'nipple': 4.0, 'trick': 1.0, 'there': 1.0, 'however': 1.0, 'months': 1.0, 'listen': 1.0, 'leaking': 1.0, 'between': 1.0, 'seal': 1.0, 'they': 1.0, 'drbrowns': 1.0, 'using': 1.0, 'venting': 1.0, 'like': 1.0, 'glass': 1.0, 'start': 2.0, 'lot': 1.0, 'these': 2.0, 'the': 11.0, 'tight': 1.0, 'avent': 1.0, 'that': 2.0, 'over': 1.0, 'browns': 1.0, 'don': 1.0, 's': 1.0, 't': 1.0, 'a': 3.0, 'great': 1.0, '1': 1.0, 'me': 1.0, 'not': 3.0, 'or': 1.0, 'bottles': 1.0, 'let': 1.0, 'tighten': 1.0, 'tried': 1.0, '4': 1.0, 'i': 2.0, 'wet': 2.0, 'just': 2.0, 'by': 1.0, 'off': 2.0, 'of': 3.0, '6': 1.0, 'leak': 1.0, 'pieces': 1.0, 'first': 1.0, 'to': 5.0, 'all': 1.0, 'your': 1.0, 'dr': 1.0, '3': 2.0, 'saying': 1.0, 'secnd': 1.0, 'slightly': 1.0, 'compare': 1.0, 'system': 1.0, 'creates': 1.0, 'do': 2.0, 'only': 1.0, 'works': 1.0, 'even': 2.0, 'third': 1.0, 'after': 2.0, 'year': 1.0, 'unlike': 1.0, 'day': 1.0, 'every': 1.0, 'use': 1.0}
Word element => {'time': 1.0, 'test': 1.0, 'stand': 1.0, 'older': 1.0, 'with': 2.0, 'job': 1.0, 'the': 4.0, 'that': 1.0, 'me': 1.0, 'am': 1.0, 'trend': 1.0, 'than': 1.0, 'but': 1.0, 'didn': 1.0, 'always': 1.0, 'one': 1.0, 'for': 3.0, 'i': 3.0, 'products': 1.0, 'expect': 1.0, 'double': 1.0, 'what': 1.0, 'carseat': 1.0, 'do': 1.0, 'much': 1.0, 'impressed': 2.0, 'on': 1.0, 'daughter': 1.0, 'and': 2.0, 'too': 1.0, 'of': 2.0, 'payed': 2.0, 'is': 1.0, 'we': 1.0, 't': 1.0, 's': 1.0, 'a': 1.0, 'continuing': 1.0, 'this': 2.0, 'based': 1.0, 'jeep': 1.0, 'good': 1.0, 'quality': 1.0, 'baby': 1.0, 'price': 1.0, 'suspicious': 1.0, 'items': 1.0, 'our': 1.0, 'to': 1.0, 'be': 1.0, 'better': 1.0, 'true': 1.0}
Word element => {'bath': 1.0, 'leather': 1.0, 'indents': 1.0, 'towel': 1.0, 'get': 1.0, 'and': 2.0, 'developed': 1.0, 'to': 1.0, 'want': 1.0, 'those': 2.0, 'not': 2.0, 'i': 3.0, 'bought': 1.0, 'blanket': 1.0, 'are': 1.0, 'the': 1.0, 'this': 3.0, 'cherokee': 1.0, 'have': 2.0, 'did': 1.0, 'better': 1.0, 'product': 1.0, 'for': 2.0, 'using': 1.0, 'new': 1.0, 'great': 1.0, 'grand': 1.0, 'made': 1.0, 'my': 1.0, '2011': 1.0, 'fits': 1.0, 'car': 1.0, 'seats': 1.0, 'that': 1.0, 'nasty': 1.0, 'been': 1.0, 'in': 1.0, 'useing': 1.0, 'a': 3.0, 'well': 1.0, 'by': 1.0, 'few': 1.0, 'weeks': 1.0, 'because': 1.0, 'dents': 1.0, 'then': 1.0, 'works': 1.0, 'much': 1.0, 'or': 1.0}
Word element => {'this': 1.0, 'didn': 1.0, 'happy': 1.0, 'other': 1.0, 'knocking': 1.0, 'nothing': 1.0, 'did': 1.0, 'which': 1.0, 'tiny': 1.0, 'dozens': 1.0, 'break': 1.0, 'glass': 1.0, 'broken': 1.0, 'was': 1.0, 'into': 1.0, 'that': 1.0, 'january': 1.0, 'in': 1.0, 'against': 1.0, 'time': 1.0, 'cold': 1.0, 'not': 1.0, 'protect': 1.0, 'm': 1.0, 'sure': 1.0, 'pricey': 1.0, 'pieces': 1.0, 'were': 2.0, 'parts': 1.0, 'for': 3.0, 'i': 5.0, 'what': 1.0, 'purchased': 1.0, 'and': 2.0, 'replacement': 1.0, 't': 1.0, 'a': 2.0, 'these': 4.0, 'the': 5.0, 'they': 4.0, 'little': 1.0, 'baby': 1.0, 'felt': 1.0, 'is': 1.0, 'are': 1.0, 'made': 1.0, 'well': 1.0, 'review': 1.0, 'of': 2.0, 'packaging': 1.0, 'shower': 1.0, 'from': 1.0, 'hard': 1.0, 'gift': 1.0, 'insert': 1.0, 'nipples': 1.0, 'because': 1.0, 'find': 1.0, 'ordered': 1.0, 'shipping': 1.0, 'seem': 1.0, 'plastic': 1.0, 'extremely': 1.0, 'how': 1.0, 'am': 1.0, 'someone': 1.0, 'each': 1.0, 'would': 1.0, 'obtain': 1.0, 'during': 2.0, 'held': 1.0, 'bottles': 3.0, 'themselves': 1.0, 'enough': 1.0, 'as': 1.0, 'to': 2.0, 'reason': 1.0, 'my': 1.0, '3': 1.0, 'star': 1.0, 'an': 1.0}
Word element => {'to': 1.0, 'month': 1.0, 'nine': 1.0, 'easy': 1.0, 'out': 1.0, 'them': 1.0, 'sells': 1.0, 'babiesrus': 1.0, '00': 1.0, '9': 1.0, 'fare': 1.0, '8': 1.0, 'have': 1.0, 'this': 2.0, 'old': 1.0, 'i': 2.0, 'for': 3.0, 'one': 1.0, 'mine': 1.0, 'and': 3.0, 'bought': 2.0, 'leaks': 1.0, 'many': 1.0, 'is': 2.0, 'of': 2.0, 'types': 1.0, 'cup': 3.0, 'my': 2.0, '99': 1.0, 'great': 2.0, 'the': 1.0, 'way': 1.0, 'earth': 1.0, 'drink': 1.0, 'expectations': 1.0, 'excelled': 1.0, 'price': 1.0, 'off': 1.0, 'though': 1.0, 'no': 1.0, 'at': 1.0}
Word element => {'love': 1.0, 'is': 1.0, 'which': 1.0, 'trainers': 1.0, 'other': 1.0, 'and': 1.0, 'why': 1.0, 'as': 1.0, 'recommend': 1.0, 'store': 1.0, 'starter': 1.0, 'highly': 1.0, 'another': 1.0, 'bought': 1.0, 'at': 1.0, 'sippy': 1.0, 'only': 1.0, 'this': 1.0, 'it': 4.0, 'i': 2.0, 'holds': 1.0, 'than': 1.0, 'oz': 1.0, '5': 1.0, 's': 1.0, 'so': 1.0, 'a': 1.0, 'alot': 1.0, 'cup': 2.0, 'smaller': 1.0}
Word element => {'item': 1.0, 'recommend': 1.0, '9': 1.0, 'cold': 1.0, 'liquids': 1.0, 'keeps': 1.0, 'spout': 1.0, 'hours': 1.0, 'better': 1.0, 'do': 1.0, 'much': 1.0, 'thermos': 1.0, 'with': 1.0, 'went': 1.0, 'and': 2.0, 'bin': 1.0, 'every': 1.0, 'use': 1.0, 'single': 1.0, 'into': 1.0, 'that': 1.0, 'time': 1.0, 'son': 1.0, 'worked': 1.0, 'us': 1.0, 'tried': 1.0, 'to': 4.0, 'i': 4.0, 'etc': 1.0, 'leaks': 1.0, 'purchased': 1.0, 'what': 1.0, 'soft': 1.0, 'this': 3.0, 'it': 4.0, 'foogo': 2.0, 'way': 1.0, 'sippy': 1.0, 'whole': 1.0, 'no': 2.0, 'shot': 1.0, 'leaked': 2.0, 're': 1.0, 'we': 2.0, 'a': 3.0, 'top': 1.0, 'for': 3.0, 'find': 1.0, 'kept': 1.0, 'not': 1.0, 'give': 1.0, 'my': 1.0, 'another': 1.0, 'ended': 1.0, 'trying': 1.0, 'throwing': 1.0, 'cup': 6.0, 'or': 1.0, 'screw': 1.0, 'the': 4.0, 'playtex': 1.0, 'on': 1.0, 'recycling': 1.0, 'different': 1.0, 'but': 1.0, 'matter': 1.0, 'did': 1.0, 'up': 2.0, 'just': 1.0}
Word element => {'about': 1.0, 'with': 1.0, 'tell': 1.0, 'but': 1.0, 'used': 1.0, 'because': 1.0, 'maybe': 1.0, 'charm': 1.0, 'one': 1.0, 'months': 1.0, '8': 1.0, 'off': 1.0, 'by': 1.0, 'that': 1.0, 'breastflow': 1.0, 'gave': 1.0, 'daughter': 1.0, 'day': 1.0, 'from': 1.0, 'similar': 1.0, 'and': 5.0, 'during': 1.0, 'other': 1.0, 'bottle': 2.0, 'very': 1.0, 'little': 1.0, 'i': 5.0, 'she': 5.0, 'it': 1.0, 'kids': 1.0, 'this': 4.0, 'its': 1.0, 'certain': 1.0, 'only': 1.0, 'picky': 1.0, 'love': 1.0, 'everyone': 1.0, 'drinking': 1.0, '7': 2.0, 'was': 1.0, 'all': 1.0, 'cups': 1.0, 'to': 3.0, 'at': 1.0, 'bottles': 1.0, 'cup': 3.0, 'my': 1.0, 'went': 1.0, 'the': 3.0, 'is': 1.0, 'a': 2.0, 'girl': 1.0, 'take': 1.0, 'would': 1.0, '24': 1.0, 'pacifiers': 1.0, 'them': 1.0, 'took': 1.0, 'through': 1.0, '5': 1.0, 'know': 1.0, 'like': 2.0, 'refused': 1.0, 'of': 1.0}
Word element => {'easy': 1.0, 'taking': 1.0, 'so': 1.0, 'loose': 1.0, 'fit': 1.0, 'have': 1.0, 'before': 1.0, 'to': 1.0, 'exactly': 1.0, 'color': 1.0, 'put': 1.0, 'do': 1.0, 'and': 2.0, 'good': 1.0, 'off': 1.0, 'job': 1.0, 'you': 3.0, 'investment': 1.0, 'measurements': 1.0, 'is': 2.0, 'on': 2.0, 't': 1.0, 'the': 2.0, 'they': 2.0, 'little': 1.0, 'bottle': 1.0, 'them': 2.0, 'nice': 1.0, 'bc': 1.0, 'fill': 1.0, 'can': 1.0, 'a': 1.0, 'see': 1.0}
Word element => {'on': 1.0, 'after': 1.0, 'materials': 1.0, 'realized': 1.0, 'really': 1.0, 'is': 1.0, 'i': 3.0, 'color': 1.0, 'my': 1.0, 'unfortunately': 1.0, 'high': 1.0, 'which': 1.0, 'seemed': 1.0, 'for': 1.0, 'this': 2.0, 'he': 4.0, 'it': 3.0, 'ring': 1.0, 'the': 1.0, 'quality': 1.0, 'organic': 1.0, 'but': 1.0, 'son': 1.0, 'seem': 1.0, 'attracted': 1.0, 'teething': 1.0, 'well': 1.0, 's': 1.0, 'a': 1.0, 'purchased': 1.0, 'to': 2.0, 'have': 1.0, 'bad': 1.0, 'very': 1.0, 'little': 1.0, 'interest': 1.0, 'and': 1.0, 'too': 1.0, 'in': 2.0, 'uses': 1.0, 'once': 1.0, 'made': 1.0, 'goes': 1.0, 'prefer': 1.0, 'while': 1.0, 'definitely': 1.0, 'not': 1.0, 'chew': 1.0, 'because': 1.0, 'something': 1.0, 'would': 1.0}
Word element => {'well': 1.0, 'plastic': 1.0, 'expensive': 1.0, 'first': 1.0, 'this': 1.0, 'giving': 1.0, 'and': 2.0, 'it': 3.0, 'she': 3.0, 'few': 1.0, 'days': 1.0, 'ring': 2.0, 'after': 1.0, 'so': 1.0, 'at': 1.0, 'like': 1.0, 'to': 2.0, 'but': 3.0, 'naps': 1.0, 'thought': 1.0, 'daughter': 1.0, 'attached': 1.0, 'a': 1.0, 't': 2.0, 'the': 2.0, 'great': 1.0, 'her': 1.0, 'wouldn': 1.0, 'even': 1.0, 'works': 1.0, 'my': 1.0, 'of': 1.0, 'than': 1.0, 'wooden': 1.0, 'became': 1.0, 'loves': 1.0, 'onto': 1.0, 'while': 1.0, 'more': 1.0, 'holds': 1.0, 'is': 2.0, 'i': 1.0, '4': 1.0, 'months': 1.0, 'on': 1.0, 'hasn': 1.0, 'started': 1.0, 'slobber': 1.0, 'teething': 1.0, 'worth': 1.0, 'yet': 1.0, 'toys': 2.0}
Word element => {'will': 1.0, 'someone': 1.0, 'm': 1.0, 'dice': 1.0, 'still': 1.0, 'then': 1.0, 'wet': 1.0, 'ignored': 1.0, 'teething': 1.0, 'the': 2.0, 'no': 1.0, 'at': 1.0, 'contemplating': 1.0, 'tried': 1.0, 'i': 3.0, 'giving': 1.0, 'freezing': 1.0, 'getting': 1.0, 'worst': 1.0, 'and': 3.0, 'of': 1.0, 'clearly': 1.0, 'like': 1.0, 'to': 2.0, 'made': 1.0, 'my': 1.0, 's': 1.0, 'that': 2.0, 'so': 1.0, 'however': 1.0, 'well': 1.0, 'a': 1.0, 'wetting': 1.0, 'is': 1.0, 'play': 2.0, 'he': 1.0, 'with': 2.0, 'this': 2.0, 'it': 7.0, 'not': 1.0, 'refused': 1.0, 'plastic': 1.0, 'his': 1.0, 'even': 1.0, 'dogs': 1.0, 'toy': 1.0, 'baby': 1.0}
Word element => {'better': 1.0, 'feels': 1.0, 'overall': 1.0, 'roughness': 1.0, 'guessing': 1.0, 'm': 1.0, 'one': 1.0, 'normal': 1.0, 'purpose': 1.0, 'week': 1.0, 's': 1.0, 'a': 3.0, 'about': 1.0, 'using': 1.0, 'for': 1.0, 'love': 1.0, 'after': 1.0, 'it': 5.0, 'he': 3.0, 'only': 1.0, 'cotton': 1.0, 'you': 1.0, 'towels': 1.0, 'chewing': 1.0, 'does': 1.0, 'than': 1.0, 'having': 1.0, 'serve': 1.0, 'seems': 1.0, 'still': 1.0, 'son': 1.0, 'ring': 1.0, 'to': 1.0, 'as': 1.0, 'on': 1.0, 'washcloth': 1.0, 'wet': 2.0, 'hates': 1.0, 'generic': 1.0, 'teethers': 1.0, 'that': 1.0, 'loves': 2.0, 'my': 1.0, 'more': 1.0, 'is': 3.0, 'finally': 1.0, 'i': 3.0, 'out': 1.0, 'the': 4.0, 'excess': 1.0, 'enjoy': 1.0, 'name': 1.0, 'water': 1.0, 'get': 1.0, 'con': 1.0, 'but': 3.0, 'organic': 1.0, 'washcloths': 1.0, 'and': 1.0, 'too': 1.0, 'this': 3.0, 'soft': 1.0, 'would': 1.0}
Word element => {'things': 1.0, 'clip': 1.0, 'along': 1.0, 'easy': 1.0, 'perfect': 1.0, 'this': 2.0, 'loved': 1.0, 'of': 1.0, 'concept': 1.0, 'the': 1.0, 'my': 1.0, 'and': 2.0, 'wood': 2.0, 'fabric': 1.0, 'teether': 1.0, '8': 1.0, 'loves': 1.0, 'bite': 1.0, 'take': 1.0, 'month': 1.0, 'i': 2.0, 'old': 1.0, 'to': 3.0, 'be': 1.0, 'natural': 1.0, 'on': 1.0, 'so': 1.0, 'thought': 1.0, 'would': 1.0}
Word element => {'again': 1.0, 'would': 1.0, 'was': 1.0, 'after': 1.0, 'not': 2.0, 'washing': 1.0, 'before': 1.0, 'using': 1.0, 'a': 1.0, 'this': 1.0, 'it': 3.0, 'blanket': 2.0, 'buy': 1.0, 'i': 3.0, 'the': 2.0, 'soft': 1.0, 'bought': 1.0, 'is': 1.0, 'on': 1.0, 'washed': 1.0, '34': 2.0, 'lint': 1.0, 'pretty': 1.0, 'grabber': 1.0, 'hem': 1.0, 'brown': 1.0}
Word element => {'wrapped': 1.0, 'came': 1.0, 'the': 1.0, 'sure': 1.0, 'it': 2.0, 'when': 1.0, 'i': 1.0, 'bought': 1.0, 'and': 1.0, 'loves': 1.0, 'this': 1.0, 'in': 1.0, 'look': 1.0, 'for': 2.0, 'a': 1.0, 'friend': 1.0, 'new': 2.0, 'home': 1.0, 'cute': 1.0, 'did': 1.0, 'her': 1.0, 'baby': 2.0, 'she': 2.0}
Word element => {'bag': 1.0, 'my': 1.0, 'into': 1.0, 'too': 1.0, 'but': 1.0, 'floor': 1.0, 'on': 2.0, 'lie': 1.0, 's': 1.0, 'warmth': 1.0, 'stuff': 1.0, 'is': 1.0, 'cushy': 1.0, 'blanket': 1.0, 'lot': 1.0, 'not': 1.0, 'making': 1.0, 'a': 1.0, 'love': 1.0, 'provides': 1.0, 'absolutely': 1.0, 'without': 1.0, 'our': 1.0, 'that': 2.0, 'sweaty': 1.0, 'hard': 1.0, 'this': 1.0, 'it': 3.0, 'of': 2.0, 'soft': 1.0, 'bulky': 1.0, 'the': 2.0, 'let': 1.0, 'baby': 3.0, 'also': 1.0, 'top': 1.0, 'enough': 1.0, 'to': 2.0}
Word element => {'can': 1.0, 'so': 1.0, 'sent': 1.0, 'what': 1.0, 'not': 1.0, 'as': 1.0, 'why': 1.0, 'is': 2.0, 'obviously': 1.0, 'which': 1.0, 'in': 1.0, 't': 1.0, 'the': 3.0, 'exchange': 1.0, 'pictured': 1.0, 'it': 3.0, 'was': 2.0, 'wanted': 1.0, 'blanket': 2.0, 'i': 4.0, 'one': 1.0, 'that': 1.0, 'football': 1.0, 'delivered': 1.0, 'a': 3.0, 'and': 1.0, 'shape': 1.0, 'of': 1.0, 'while': 1.0, 'gift': 1.0, 'ordered': 2.0, 'cute': 1.0}
Word element => {'binding': 1.0, 'sturdy': 1.0, 'well': 1.0, 'cute': 1.0, 'for': 1.0, 'is': 1.0, 'herself': 1.0, 'in': 1.0, 'washes': 1.0, 'possessive': 1.0, 'my': 1.0, 'bought': 1.0, 'she': 2.0, 'schnauzer': 1.0, 'sleeps': 1.0, 'actually': 1.0, 's': 1.0, 'very': 3.0, 'and': 3.0, 'blanket': 1.0, 'i': 1.0, 'likes': 1.0, 'tucks': 1.0, 'of': 1.0, 'with': 1.0, 'this': 1.0, 'it': 4.0, 'much': 1.0}
Word element => {'quickly': 1.0, 'choice': 1.0, 'so': 1.0, 'arrived': 1.0, 'out': 1.0, 'was': 1.0, 'to': 1.0, 'until': 1.0, 'her': 1.0, 'rare': 1.0, 'of': 2.0, 'who': 1.0, 'trim': 1.0, 'brown': 1.0, 'find': 1.0, 'gift': 1.0, 'birth': 1.0, 'bought': 1.0, 'great': 1.0, 'ones': 1.0, 'the': 4.0, 'are': 1.0, 'one': 1.0, 'for': 1.0, 'loved': 1.0, 'and': 2.0, 'colors': 1.0, 'baby': 2.0, 'waiting': 1.0, 'niece': 1.0, 's': 1.0, 'with': 1.0, 'shower': 1.0, 'this': 2.0, 'it': 3.0, 'is': 3.0, 'soft': 1.0, 'a': 3.0, 'bright': 1.0, 'sex': 1.0, 'she': 2.0, 'snuggly': 1.0, 'neutral': 1.0, 'nice': 1.0, 'i': 1.0, 'green': 1.0}
Word element => {'money': 1.0, 'for': 1.0, 'bad': 1.0, 'off': 1.0, 'peeling': 1.0, 'even': 1.0, 'we': 2.0, 'very': 1.0, 'ok': 1.0, 'blanket': 1.0, 'an': 1.0, 'product': 1.0, 'once': 1.0, 'washed': 2.0, 'water': 1.0, 'threads': 1.0, 'been': 1.0, 'has': 1.0, 'dried': 1.0, 'the': 2.0, 'untill': 1.0, 'in': 1.0, 'paid': 1.0, 'are': 1.0, 'cold': 1.0, 'it': 1.0, 'this': 1.0, 'only': 1.0, 'and': 1.0, 'slowly': 1.0, 'i': 1.0, 'noticed': 1.0, 'that': 1.0}
Word element => {'love': 1.0, 'i': 1.0, 'my': 1.0, 'north': 1.0, 'of': 1.0, 'up': 1.0, 'and': 1.0, 'to': 1.0, 'is': 1.0, 'son': 1.0, 'on': 1.0, 'thing': 1.0, 'feel': 1.0, 'cuddle': 1.0, 'perfect': 1.0, 'blanket': 1.0, 'warm': 1.0, 'with': 1.0, 'this': 1.0, 'it': 2.0, 'him': 1.0, 'the': 2.0, 'these': 1.0, 'keeps': 1.0, 'cold': 1.0, 'dakota': 1.0, 'days': 1.0}
Word element => {'neutral': 1.0, 'baby': 1.0, 'our': 1.0, 'wanted': 1.0, 'and': 1.0, 'blankets': 1.0, 'for': 2.0, 'colors': 1.0, 'feel': 1.0, 'the': 1.0, 'of': 1.0, 'this': 1.0, 'love': 1.0, 'were': 1.0, 'i': 1.0, 'banket': 1.0, 'when': 1.0, 'bedding': 1.0, 'we': 2.0, 'looking': 1.0}
Word element => {'blanket': 1.0, 'new': 1.0, 'hopefully': 1.0, 'so': 1.0, 'my': 1.0, 'washed': 1.0, 'his': 1.0, 'and': 1.0, 'the': 1.0, 't': 1.0, 'cute': 1.0, 'soft': 1.0, 'enjoy': 1.0, 'same': 1.0, 'haven': 1.0, 'stay': 1.0, 'it': 2.0, 'with': 1.0, 'son': 1.0, 'fabric': 1.0, 'waiting': 1.0, 'yet': 1.0, 'for': 1.0, 'its': 1.0, 'to': 1.0}
Word element => {'tear': 1.0, 'wear': 1.0, 'through': 1.0, 'up': 1.0, 'seeing': 1.0, 'looking': 1.0, 'time': 1.0, 'washed': 1.0, 'being': 1.0, 'after': 1.0, 'very': 1.0, 'first': 1.0, 'plush': 1.0, 'heavy': 1.0, 'belongs': 1.0, 'for': 4.0, 'yet': 1.0, 'remained': 1.0, 'nice': 1.0, 'which': 1.0, 'know': 1.0, 'n': 1.0, 'stay': 1.0, 'not': 2.0, 'they': 1.0, 'forward': 1.0, 'nieces': 1.0, 'house': 1.0, 'to': 3.0, 'our': 2.0, 'all': 1.0, 'them': 1.0, 'night': 1.0, 'i': 1.0, 'who': 1.0, 'keep': 1.0, 'at': 1.0, 'nephew': 1.0, 'of': 1.0, 'blankies': 1.0, 'when': 1.0, 'bear': 1.0, 'and': 5.0, 'too': 2.0, 'blanket': 2.0, 'it': 3.0, 'holds': 1.0, 'is': 2.0, 'really': 1.0, 'soft': 2.0, 'this': 2.0, 'recent': 1.0, 'the': 3.0, 'believe': 1.0, 'addition': 1.0, 'how': 2.0, 'my': 1.0, 'neice': 1.0, 'bears': 1.0, 'roster': 1.0, 'most': 1.0, 'can': 1.0, 't': 1.0, 'we': 1.0, 's': 2.0, 'light': 1.0}
Word element => {'buy': 1.0, 's': 1.0, 'color': 1.0, 'too': 1.0, 'washes': 1.0, 'and': 1.0, 'soft': 1.0, 'doesn': 1.0, 'well': 1.0, 'a': 1.0, 'warm': 1.0, 'fade': 1.0, 'very': 1.0, 'year': 1.0, 'from': 1.0, 'durable': 1.0, 'it': 2.0, 'love': 1.0, 't': 1.0, 'great': 1.0, 'been': 1.0, 'we': 1.0, 'washing': 1.0, 'just': 1.0}
Word element => {'it': 1.0, 'and': 1.0, 'still': 1.0, 'old': 1.0, '3': 1.0, 'almost': 1.0, 'bought': 1.0, 'my': 1.0, 'baby': 1.0, 'this': 1.0, 'years': 1.0, 'for': 1.0, 'now': 1.0, 'is': 1.0, 'son': 1.0, 'i': 1.0, 'when': 1.0, 'was': 1.0, 'has': 1.0, 'he': 3.0, 'a': 1.0}
Word element => {'love': 1.0, 'plush': 1.0, 'is': 1.0, 'son': 1.0, 'snuggly': 1.0, 'soft': 1.0, 'green': 1.0, 'right': 1.0, 'his': 1.0, 'him': 1.0, 'blanket': 1.0, 'warm': 1.0, 'loves': 2.0, 'falls': 1.0, 'away': 1.0, 'and': 2.0, 'keeps': 1.0, 'it': 4.0, 'he': 1.0, 'to': 1.0, 'asleep': 1.0, 'my': 1.0, 'snuggle': 1.0, 'in': 1.0, 'inside': 1.0}
Word element => {'too': 1.0, 'quickly': 1.0, 'delivered': 1.0, 'was': 1.0, 'product': 1.0, 'satisfied': 1.0, 'well': 1.0, 'wears': 1.0, 'blanket': 1.0, 'loves': 1.0, 'soft': 1.0, 'it': 2.0, 'absolutely': 1.0, 'washes': 1.0, 'very': 3.0, 'and': 2.0, 'cuddly': 1.0, 'the': 2.0, 'my': 1.0, 'with': 1.0, 'is': 1.0, 'son': 1.0}
Word element => {'buy': 1.0, 'out': 1.0, 'up': 1.0, 'ended': 1.0, 'was': 1.0, 'an': 1.0, 'instead': 1.0, 'either': 1.0, 'screwdriver': 1.0, 'flathead': 1.0, 'like': 1.0, 'build': 1.0, 'set': 1.0, 'used': 1.0, '3': 1.0, 'but': 1.0, '2': 1.0, 'use': 1.0, 'to': 4.0, 'weren': 3.0, 'both': 1.0, 'piece': 1.0, 'how': 1.0, 'flat': 1.0, 'small': 1.0, 'southern': 1.0, 'crinkly': 1.0, 'strange': 1.0, 'sits': 1.0, 'the': 7.0, 'frame': 2.0, 'given': 1.0, 'one': 1.0, 'that': 2.0, 'is': 2.0, 'y': 1.0, 'sooner': 1.0, 'fit': 1.0, 'for': 2.0, 'brittle': 1.0, 'cheap': 1.0, 'fabric': 1.0, 'window': 1.0, 'they': 1.0, 'vinyl': 1.0, 'phillips': 1.0, 'heads': 1.0, 'and': 4.0, 'sounds': 1.0, 'facing': 1.0, 'in': 1.0, 'borders': 1.0, 'x': 1.0, 'about': 2.0, 'quite': 1.0, 'shape': 2.0, 'head': 1.0, 'sun': 1.0, 'comprises': 1.0, 'crack': 1.0, 'it': 4.0, 'already': 1.0, 'feels': 1.0, 'new': 1.0, 'able': 1.0, 'included': 2.0, 'worry': 1.0, 'i': 1.0, 'two': 1.0, 'making': 1.0, 'having': 1.0, 'than': 1.0, 'wrong': 1.0, 'while': 1.0, 'later': 1.0, 'go': 1.0, 't': 3.0, 'a': 6.0, 'exposure': 1.0, 'we': 3.0, 'ordered': 1.0, 'rather': 1.0, 'of': 4.0, 'screws': 3.0, 'quality': 1.0, 'them': 1.0, 'stiff': 1.0, 'corner': 1.0}
Word element => {'member': 1.0, 'would': 1.0, 'line': 1.0, 'bottom': 1.0, 'around': 1.0, '5': 1.0, 'under': 1.0, 'kids': 1.0, 'with': 1.0, 'guard': 1.0, 'each': 1.0, 'install': 1.0, 'friend': 1.0, '1': 1.0, 'stripping': 1.0, 'unconventional': 1.0, 'screwdriver': 3.0, 'screw': 2.0, 'and': 2.0, 'phillips': 1.0, 'get': 1.0, 'can': 2.0, '2': 2.0, 'be': 2.0, 'corner': 1.0, 'recommend': 1.0, 'together': 1.0, 'flathead': 1.0, 'head': 2.0, 'y': 2.0, 'going': 2.0, 'flaw': 1.0, 'hold': 1.0, 'that': 1.0, 'learned': 1.0, 'into': 1.0, 'shaped': 2.0, 'how': 1.0, 'year': 1.0, 'you': 3.0, 'push': 1.0, 'a': 6.0, 'small': 1.0, 'running': 1.0, 'have': 2.0, 'after': 2.0, 'family': 1.0, 'ended': 1.0, 'without': 1.0, 'stretchy': 1.0, 'these': 1.0, '4': 1.0, 'i': 4.0, 'bunched': 1.0, 'old': 1.0, 'almost': 1.0, 'frame': 2.0, 'to': 7.0, 'screens': 1.0, 'ordered': 1.0, 'the': 14.0, 'of': 4.0, 'no': 2.0, 'extended': 1.0, 'windows': 1.0, 'out': 1.0, 'screws': 3.0, 'kidco': 1.0, 'is': 1.0, 'more': 2.0, 'store': 1.0, 'buying': 1.0, 'an': 1.0, 'trying': 1.0, 'extra': 1.0, '3': 1.0, 'idea': 1.0, 'your': 1.0, 'for': 1.0, 'shorter': 1.0, '32': 1.0, '8': 1.0, '34': 2.0, 'needed': 1.0, 'if': 2.0, 'window': 1.0, 'include': 2.0, 'hr': 1.0, 'took': 1.0, 'should': 1.0, 'becoming': 1.0, 'special': 1.0, 'second': 1.0, 'major': 1.0, 'up': 1.0, 'mesh': 2.0, 'or': 1.0, 'need': 1.0, 'where': 1.0, 'fully': 1.0, 'there': 1.0, 'than': 1.0, 'way': 1.0, 'making': 1.0, 'use': 1.0, 'smaller': 1.0, 'hardware': 1.0, 'it': 2.0, 'further': 1.0, 'meshed': 1.0, 'min': 1.0, 'pushed': 1.0, 'my': 2.0, 'me': 1.0, 'approximately': 1.0, '45': 1.0}
Word element => {'fairly': 1.0, 'be': 1.0, 'should': 1.0, 'if': 1.0, 'time': 1.0, 'there': 1.0, 'working': 1.0, 'which': 1.0, 'get': 1.0, 'patience': 1.0, 'measuring': 1.0, 'take': 1.0, 'will': 1.0, 'careful': 1.0, 'the': 3.0, 'building': 1.0, 'kids': 1.0, 'this': 3.0, 'with': 2.0, 'it': 3.0, 'to': 3.0, 'was': 1.0, 'install': 2.0, 'windows': 2.0, 'up': 1.0, 'of': 1.0, 'odd': 1.0, 'you': 2.0, 'am': 1.0, 'post': 1.0, 'live': 1.0, 'and': 6.0, 'handy': 2.0, 'hardly': 1.0, 'a': 2.0, 'not': 2.0, 'unable': 1.0, 'in': 2.0, 'treatments': 1.0, 'apartment': 2.0, 'war': 1.0, 'pre': 1.0, 'or': 1.0, 'instructions': 1.0, 'think': 1.0, 'on': 1.0, 'were': 1.0, 'very': 1.0, 'user': 1.0, 'friendly': 1.0, 'gave': 1.0, 'do': 1.0, 'poned': 1.0, 'one': 1.0, 'family': 1.0, 'eventually': 1.0, 'my': 1.0, 'is': 2.0, 'for': 1.0, 'actually': 1.0, 'awhile': 1.0, 'possible': 1.0, 'i': 4.0, 'two': 1.0, 'particularly': 1.0, 'but': 1.0}
Word element => {'mesh': 1.0, 'duct': 1.0, 'off': 1.0, 'to': 3.0, 'instantly': 1.0, 'doesn': 1.0, 'will': 1.0, 'toddler': 1.0, 'strip': 1.0, 'prevent': 1.0, 'so': 1.0, 'after': 1.0, 'd': 1.0, 'screws': 1.0, 'frustration': 1.0, 'un': 1.0, 'in': 1.0, 'falling': 1.0, 'piping': 1.0, 'adding': 1.0, 'i': 1.0, 'are': 1.0, 'the': 7.0, 'that': 1.0, 'they': 1.0, 'holes': 1.0, 'mountable': 1.0, 'is': 1.0, 'wall': 1.0, 'you': 1.0, 'soft': 1.0, 'this': 2.0, 'taping': 1.0, 'it': 1.0, 'fit': 1.0, 'snugly': 1.0, 'brackets': 1.0, 'out': 1.0, 'ridiculous': 1.0, 'assume': 1.0, 't': 1.0, 's': 1.0, 'discovered': 1.0, 'a': 2.0, 'from': 1.0, 'of': 1.0, 'window': 2.0, 'putting': 1.0, 'within': 1.0, 'be': 1.0, 'better': 1.0}
Word element => {'mind': 1.0, 'of': 1.0, 'peace': 1.0, 'for': 1.0, 'highly': 1.0, 'worth': 1.0, 'totally': 1.0, 'open': 1.0, 'window': 1.0, 'install': 1.0, 'knew': 1.0, 'looking': 1.0, 'covers': 1.0, 'bar': 1.0, 'since': 1.0, 'a': 1.0, 'floor': 1.0, 'the': 1.0, 'but': 1.0, 'perfect': 1.0, 'recommend': 1.0, 'needed': 1.0, 'easy': 2.0, 'hated': 1.0, 'we': 3.0, 'something': 1.0, 'were': 1.0, 'second': 1.0, 'apartment': 1.0, 'it': 1.0, 'moving': 1.0, 'this': 1.0, 'to': 3.0, 'was': 1.0}
Word element => {'nature': 1.0, 'things': 1.0, 'for': 1.0, 'light': 1.0, 'enough': 1.0, 'see': 1.0, 'comes': 1.0, 'more': 1.0, 'quite': 1.0, 'cost': 1.0, 'sturdier': 1.0, 'plants': 1.0, 'seem': 1.0, 'does': 1.0, 'one': 1.0, 'horizontal': 1.0, 'with': 1.0, 'type': 1.0, 'another': 1.0, 'i': 1.0, 'used': 1.0, 'bars': 1.0, 'close': 1.0, 'taut': 1.0, 'not': 1.0, 'that': 3.0, 'into': 1.0, 'or': 1.0, 'the': 4.0, 'your': 1.0, 's': 2.0, 't': 2.0, 'a': 4.0, 'them': 1.0, 'child': 1.0, 'glass': 1.0, 'it': 8.0, 'banging': 1.0, 'will': 1.0, 'keep': 2.0, 'from': 2.0, 'open': 1.0, 'through': 2.0, 'real': 1.0, 'danger': 1.0, 'well': 3.0, 'won': 1.0, 'this': 1.0, 'pain': 1.0, 'mesh': 2.0, 'but': 4.0, 'can': 2.0, 'opening': 1.0, 'touch': 1.0, 'beyond': 1.0, 'several': 1.0, 'inches': 1.0, 'was': 1.0, 'all': 1.0, 'as': 2.0, 'to': 5.0, 'model': 1.0, 'get': 1.0, 'easy': 1.0, 'install': 1.0, 'so': 1.0, 'bit': 2.0, 'of': 2.0, 'always': 1.0, 'have': 2.0, 'window': 2.0, 'be': 1.0, 'you': 4.0, 'easily': 1.0, 'when': 1.0, 'want': 1.0, 'and': 3.0}
Word element => {'able': 1.0, 'am': 1.0, 'when': 1.0, 'proper': 1.0, 'up': 1.0, 'pick': 1.0, 'some': 1.0, 'others': 1.0, 'few': 1.0, 'advice': 1.0, 'follow': 1.0, 'will': 1.0, 'of': 4.0, 'there': 1.0, 'out': 1.0, 'screws': 2.0, '5': 1.0, '8': 1.0, 'y': 2.0, 'supplied': 1.0, 'tools': 1.0, 'together': 2.0, 'would': 1.0, 'it': 2.0, 'but': 1.0, 'can': 1.0, 'small': 2.0, 'everything': 1.0, 'special': 1.0, 'instructions': 1.0, 'i': 6.0, 'the': 4.0, 'assembled': 1.0, 'to': 3.0, 'screwdriver': 1.0, 'look': 1.0, 'had': 1.0, 'be': 1.0, 'even': 1.0, 'put': 2.0, 'on': 1.0, 'except': 1.0, 'are': 1.0, 'shaped': 2.0, 'commenting': 1.0, 'and': 3.0, 'is': 1.0, 'no': 1.0, 'mention': 1.0, 'needed': 1.0, 'unfortunately': 1.0, 'crazy': 1.0, 'needing': 1.0, 'love': 1.0, 'product': 1.0, 'assemble': 1.0, 'pretty': 1.0, 'simple': 1.0, 't': 1.0, 'a': 2.0}
Word element => {'defective': 1.0, 'totally': 1.0, 'shipped': 1.0, 'thing': 1.0, 'like': 1.0, 'did': 1.0, 'really': 1.0, 'trying': 1.0, 'was': 4.0, 'resulting': 1.0, 'larger': 1.0, 'nearly': 1.0, 'started': 2.0, 'screws': 1.0, 'smooth': 1.0, 'isn': 1.0, 'right': 3.0, 'screw': 2.0, 'receiving': 1.0, 'some': 1.0, 'struggling': 1.0, 'if': 1.0, 'on': 3.0, 'put': 4.0, 'make': 1.0, 'no': 2.0, 'big': 1.0, 'ok': 1.0, 'them': 1.0, 'next': 1.0, 'box': 2.0, 'in': 3.0, 'smaller': 2.0, 'returning': 1.0, 'bit': 1.0, 't': 1.0, 's': 2.0, 'could': 1.0, 'might': 1.0, 'making': 1.0, 'together': 1.0, 'reading': 1.0, 'using': 1.0, 'to': 4.0, 'all': 1.0, 'this': 4.0, 'first': 1.0, 'it': 3.0, 'impossible': 1.0, 'inside': 1.0, 'but': 2.0, 'four': 1.0, 'get': 1.0, 'trouble': 1.0, 'what': 1.0, 'when': 1.0, 'where': 1.0, 'coating': 1.0, 'deal': 1.0, 'shredding': 1.0, 'that': 1.0, 'because': 2.0, 'off': 1.0, 'seem': 1.0, 'bracket': 1.0, 'instruction': 1.0, 'relaxed': 1.0, 'pounding': 1.0, 'and': 3.0, 'phillips': 2.0, 'again': 1.0, 'consider': 1.0, 'window': 1.0, 'i': 8.0, 'well': 2.0, 'pointed': 1.0, 'putting': 1.0, 'is': 1.0, 'excited': 1.0, 'after': 3.0, 'wider': 1.0, 'asleep': 1.0, 'side': 1.0, 'figured': 1.0, 'tube': 5.0, 'just': 1.0, 'due': 1.0, 'wait': 1.0, 'step': 1.0, 'plastic': 1.0, 'reviews': 1.0, 'affix': 1.0, 'the': 14.0, 'of': 1.0, 'a': 6.0, 'small': 1.0, 'fell': 1.0, 'problem': 1.0, 'grabbed': 1.0, 'enamel': 1.0, 'my': 1.0, 'driver': 1.0, 'huh': 1.0, 'into': 1.0, 'three': 2.0, 'who': 1.0, 'not': 3.0, 'cross': 1.0, 'seriously': 1.0}
Word element => {'the': 1.0, 'this': 1.0, 'with': 1.0, 'much': 1.0, 'and': 1.0, 'nice': 1.0, 'locking': 1.0, 'safe': 1.0, 'works': 1.0, 'great': 1.0, 'childproof': 1.0, 'window': 1.0, 'in': 1.0, 'safer': 1.0, 'design': 1.0, 'sturdy': 1.0, 'feel': 1.0, 'mesh': 1.0, 'i': 1.0}
Word element => {'right': 1.0, 'shaped': 1.0, 'and': 1.0, 'softer': 1.0, 'use': 1.0, 'that': 1.0, 'nipples': 1.0, 'lot': 1.0, 'she': 2.0, 'daycare': 1.0, 'we': 1.0, 'will': 1.0, 'but': 1.0, 'typically': 1.0, 'they': 1.0, 'time': 1.0, 'just': 1.0, 'started': 1.0, 'my': 1.0, 'are': 2.0, 'bottle': 2.0, 'breastfed': 1.0, 'when': 1.0, 'daughter': 1.0, 'a': 3.0, 'is': 1.0, 'really': 1.0, 'hard': 1.0, 'only': 1.0, 'transitioning': 1.0, 'had': 1.0, 'to': 1.0, 'the': 1.0, 'these': 1.0}
Word element => {'excellent': 1.0}
Word element => {'all': 1.0, 's': 1.0, 'bown': 1.0, 'dr': 1.0, 'standard': 1.0, 'with': 1.0, 'work': 1.0, 'price': 1.0, 'the': 1.0, 'my': 1.0, 'medela': 1.0, 'baby': 1.0, 'bottles': 1.0, 'needed': 1.0, 'and': 2.0, 'very': 1.0, 'they': 1.0, 'nipples': 1.0, 'used': 1.0, 'affordable': 1.0, 'exactly': 1.0, 'to': 1.0}
Word element => {'baby': 1.0, 'speeds': 1.0, 'other': 1.0, 'there': 1.0, 'but': 1.0, 'flow': 1.0, 'slow': 1.0, 'prepared': 1.0, 'case': 1.0, 'hand': 1.0, 'simalac': 1.0, 'a': 2.0, 'mix': 1.0, 'in': 3.0, 'emergency': 1.0, 'wash': 1.0, 'you': 1.0, 'if': 2.0, 'packs': 1.0, 'this': 1.0, 'with': 1.0, 'is': 3.0, 'find': 1.0, 'nipples': 1.0, 'are': 3.0, 'family': 1.0, 'not': 1.0, 'part': 1.0, 'of': 1.0, 'available': 1.0, 'water': 1.0, 'something': 1.0, 'oz': 1.0, 'critical': 1.0, 'your': 1.0, 'on': 1.0, 'for': 1.0, 'kit': 1.0, 'where': 1.0, 'to': 3.0, 'our': 1.0, 'these': 3.0, 'the': 3.0, 'bottles': 3.0, 'or': 1.0, 'pre': 1.0, '8': 1.0, 'must': 1.0, 'have': 1.0, 'i': 2.0, 'use': 1.0, 'happens': 1.0, 'yourself': 1.0, 'try': 1.0, 'formula': 1.0, 'conjunction': 1.0, 'ready': 1.0, 'situation': 1.0, 'feed': 1.0, 'older': 1.0, 'mixed': 1.0, 'parent': 1.0, 'enough': 1.0, 'and': 1.0}
Word element => {'long': 1.0, 'lasts': 1.0, 'clean': 1.0, 'pretty': 1.0, 'feed': 1.0, 'each': 1.0, '10': 1.0, 'the': 1.0, 'on': 1.0, 'he': 1.0, 'with': 2.0, 'this': 1.0, 'comfortable': 1.0, 'for': 2.0, 'around': 1.0, 'is': 1.0, 'change': 1.0, 'son': 1.0, 'very': 1.0, 'else': 1.0, 'bottles': 1.0, 'stove': 1.0, 'easy': 3.0, 'nursing': 2.0, 'that': 1.0, 'babies': 1.0, 'and': 5.0, 'my': 2.0, 'though': 1.0, 'feedings': 1.0, 'are': 3.0, 'medela': 1.0, 'them': 2.0, 'baby': 1.0, 'nipples': 2.0, 'find': 1.0, 'these': 1.0, 'all': 1.0, 'to': 2.0, 'anything': 1.0, 'they': 1.0, 'flow': 1.0, 'sterlize': 1.0, 'not': 2.0, 'those': 1.0, 'after': 1.0, 'stop': 1.0, 'who': 1.0, 'mins': 1.0, 'will': 1.0, 'also': 1.0, 'time': 1.0, 'so': 1.0, 'bottle': 1.0, 'feeding': 1.0, 'a': 1.0, 's': 1.0, 'could': 1.0, 'i': 1.0, 'recommended': 1.0, 'hot': 1.0, 'water': 1.0}
Word element => {'old': 1.0, 'to': 1.0, 'from': 1.0, 'son': 1.0, 'them': 1.0, 'so': 2.0, 'got': 1.0, 'the': 2.0, 'holes': 1.0, 'but': 1.0, '2': 1.0, 'my': 1.0, 'for': 1.0, 'won': 1.0, 'take': 1.0, 'infant': 1.0, 'replace': 1.0, 'nipples': 1.0, 'usable': 1.0, 'beside': 1.0, 'hospital': 1.0, 'other': 1.0, 'a': 1.0, 't': 2.0, 'we': 1.0, 'standard': 1.0, 'this': 2.0, 'it': 1.0, 'small': 1.0, 'have': 1.0, 'handful': 1.0, 'is': 1.0, 'i': 3.0, 'guess': 1.0, 'one': 1.0, 'months': 1.0, 'bought': 1.0, 'flow': 1.0, 'after': 1.0, 'package': 1.0, 'like': 1.0, 'don': 1.0, 'that': 1.0, 'are': 1.0, 'and': 1.0, 'being': 1.0, 'uneven': 1.0, 'not': 1.0}
Word element => {'clean': 1.0, 'if': 1.0, 'worry': 1.0, 'having': 1.0, 'not': 1.0, 'and': 1.0, 'bag': 1.0, 'i': 1.0, 'they': 2.0, 'these': 1.0, 're': 2.0, 'love': 1.0, 'great': 1.0, 'my': 1.0, 'to': 1.0, 'throwing': 1.0, 'sons': 1.0, 'diaper': 1.0, 'for': 1.0, 'in': 1.0}
Word element => {'would': 1.0, 'flow': 1.0, 'are': 1.0, 'come': 1.0, 'collars': 1.0, 'but': 1.0, 'be': 1.0, 'concept': 1.0, 'anyway': 1.0, 'up': 1.0, 'no': 1.0, 'spills': 1.0, 'liquid': 2.0, 'feeding': 1.0, 'start': 1.0, 'right': 1.0, 'pop': 1.0, 'pressure': 1.0, 'that': 2.0, 'seems': 3.0, 'standard': 1.0, 'having': 1.0, 'does': 1.0, 'bottle': 3.0, 'use': 3.0, 'very': 1.0, 'read': 1.0, 'came': 2.0, 'it': 5.0, 'why': 1.0, 'sample': 2.0, 'convenient': 1.0, 'with': 2.0, 'premium': 1.0, 'this': 1.0, 'put': 1.0, 'on': 2.0, 'dr': 1.0, 'kit': 1.0, 'i': 4.0, 'and': 2.0, 'son': 1.0, 'from': 1.0, 'well': 2.0, 'received': 1.0, 'blue': 1.0, 'collar': 5.0, 'all': 1.0, 'to': 7.0, 'regular': 1.0, 'in': 4.0, 'my': 1.0, 'nutrition': 1.0, 'formula': 1.0, 'these': 2.0, 'the': 10.0, 'attach': 1.0, 'nipple': 2.0, 'go': 1.0, 's': 3.0, 'a': 3.0, 't': 2.0, 'nipples': 1.0, 'there': 1.0, 'among': 1.0, 'btw': 1.0, 'powder': 1.0, 'other': 1.0, 'items': 1.0, 'office': 1.0, 'when': 4.0, 'newborn': 2.0, 'out': 2.0, 'ready': 2.0, 'doesn': 2.0, '2oz': 1.0, 'which': 1.0, 'ended': 1.0, 'package': 1.0, 'tried': 1.0, 'tighten': 2.0, 'bottles': 2.0, 'or': 1.0, 'at': 1.0}
Word element => {'while': 1.0, 'like': 1.0, 'true': 1.0, 'same': 1.0, 'have': 1.0, 'not': 1.0, '1': 1.0, 'shape': 1.0, 'do': 1.0, 'enfamil': 1.0, 'refused': 1.0, 'level': 2.0, 'in': 1.0, 'free': 1.0, 'they': 2.0, 'shipping': 1.0, 'nipples': 1.0, 'ordered': 1.0, 'i': 1.0, 'nice': 1.0, 'a': 2.0, 'since': 1.0, 'are': 3.0, '2': 1.0, 'more': 1.0, 'nipple': 1.0, 'these': 2.0, 'the': 6.0, 'my': 1.0, 'however': 1.0, 'boys': 1.0, 'them': 1.0, 'had': 2.0, 'to': 1.0, 'take': 1.0, 'disposables': 1.0, 'nicu': 1.0, 'similac': 2.0}
Word element => {'bottles': 1.0, 'bag': 1.0, 'keep': 1.0, 'use': 1.0, 'to': 1.0, 'now': 1.0, 'few': 1.0, 'familiar': 1.0, 'bought': 1.0, 'babies': 1.0, 'which': 1.0, 'we': 3.0, 'before': 1.0, 'settled': 1.0, 'of': 1.0, 'in': 2.0, 'were': 3.0, 'nicu': 1.0, 'with': 2.0, 'it': 1.0, 'so': 1.0, 'twins': 1.0, 'my': 1.0, 'go': 1.0, 'liked': 1.0, 'for': 1.0, 'using': 1.0, 'since': 1.0, 'a': 3.0, 'on': 2.0, 'nipples': 3.0, 'diaper': 1.0, 'the': 5.0, 'these': 3.0, 'time': 1.0, 'they': 2.0, 'disposable': 2.0, 'started': 1.0, 'excellent': 1.0, 'and': 1.0, 'them': 1.0, 'out': 1.0, 'took': 1.0, 'little': 1.0, 'bit': 1.0}
Word element => {'will': 1.0, 'they': 1.0, 'company': 1.0, 'the': 2.0, 'again': 1.0, 'came': 1.0, 'mail': 1.0, 'in': 1.0, 'i': 1.0, 'use': 1.0, 'satisfied': 1.0, 'quickly': 1.0, 'was': 1.0, 'and': 1.0, 'very': 1.0, 'highly': 1.0}
Word element => {'disposable': 1.0, 'non': 1.0, 'equivalent': 1.0, 'which': 1.0, 'each': 1.0, 'almost': 1.0, 'is': 2.0, 'sure': 1.0, 'dollar': 1.0, 'issue': 1.0, 'to': 1.0, 'was': 1.0, 'work': 1.0, 'i': 1.0, 'when': 1.0, 'on': 1.0, 'their': 1.0, 'our': 1.0, 'vacation': 1.0, 'for': 1.0, 'price': 1.0, 'about': 1.0, 'ones': 1.0, 'great': 1.0, 'these': 1.0, 'the': 1.0, 'high': 1.0, 'my': 1.0, 'a': 1.0, 'local': 1.0, 'water': 1.0, 'w': 1.0, 'not': 1.0, 'washing': 1.0, 'bottles': 1.0, 'only': 1.0, 'them': 1.0}
Word element => {'product': 1.0, 'hotel': 1.0, 'companion': 1.0, 'use': 1.0, 'perfect': 1.0, 'and': 1.0, 'journeys': 1.0, 'baby': 1.0, 'flight': 1.0, 'disposable': 1.0, 'are': 2.0, 'trips': 1.0, 'other': 1.0, 'weekend': 1.0, 'for': 1.0, 'milk': 1.0, 'throw': 1.0, 'similac': 1.0, 'stays': 1.0, 'or': 2.0, 'good': 1.0, 'if': 1.0, 'you': 1.0, 'buying': 1.0}
Word element => {'stores': 1.0, 'in': 1.0, 'plastic': 1.0, 'hard': 1.0, 'some': 1.0, 'sell': 1.0, 'grip': 1.0, 'to': 1.0, 'babies': 1.0, 'replacement': 1.0, 'until': 1.0, 'for': 2.0, 'use': 1.0, 'though': 1.0, 'meant': 1.0, 'any': 1.0, 'easier': 1.0, 'needing': 1.0, 'versus': 1.0, 'and': 1.0, '1': 1.0, 'of': 2.0, 'time': 1.0, 'they': 3.0, 'ones': 1.0, 'the': 2.0, 'great': 1.0, 'these': 1.0, 'even': 1.0, 'used': 1.0, 'are': 3.0, 'clear': 1.0, 'i': 2.0, 'them': 1.0, 'many': 1.0, 'times': 1.0, 'saw': 1.0, 'signs': 1.0}
Word element => {'your': 1.0, 'packaging': 1.0, 'first': 1.0, 'are': 2.0, 'no': 1.0, 'maybe': 2.0, 'made': 1.0, 'out': 4.0, 'couple': 1.0, 'them': 2.0, 'was': 3.0, 'went': 1.0, 'a': 3.0, 'ago': 1.0, 't': 1.0, 'son': 1.0, 'still': 1.0, 'power': 1.0, 'old': 1.0, 'month': 1.0, 'disliked': 1.0, 'it': 1.0, 'sterilized': 1.0, '5': 1.0, 'and': 1.0, 'trip': 1.0, 'like': 3.0, 'feed': 1.0, 'so': 3.0, 'enfamil': 1.0, 'sure': 2.0, 'had': 1.0, 'to': 7.0, 'try': 2.0, 'much': 1.0, 'pack': 1.0, 'hungry': 1.0, 'smaller': 1.0, 'use': 1.0, 'needed': 1.0, 'back': 1.0, 'bottles': 2.0, 'would': 2.0, 'were': 1.0, 'with': 2.0, 'on': 1.0, 'more': 1.0, 'these': 1.0, 'some': 1.0, 'of': 2.0, 'the': 8.0, 'week': 1.0, 'an': 1.0, 'ready': 1.0, 'almost': 1.0, 'purchase': 1.0, 'nipples': 4.0, 'make': 1.0, 'rubber': 1.0, 'baby': 2.0, 'unfortunately': 1.0, 'upcoming': 1.0, 'really': 1.0, 'didn': 1.0, 'because': 3.0, 'that': 3.0, 'silicone': 1.0, 'he': 5.0, 'our': 2.0, 'how': 1.0, 'eat': 1.0, 'but': 3.0, 'we': 3.0, 'then': 1.0, 'order': 1.0, 'spit': 1.0, 'will': 2.0, 'excited': 1.0, 'after': 1.0, 'experience': 1.0, 'sucks': 1.0, 'used': 1.0, 'helpful': 1.0, 'drinking': 1.0, 'from': 1.0, 'problem': 1.0, 'something': 1.0, 'says': 1.0, 'not': 1.0, 'free': 1.0, 'latex': 1.0, 'they': 1.0, 'sort': 1.0, 'bottle': 2.0, 'weekend': 1.0, 'this': 1.0, 'be': 1.0, 'is': 1.0, 'look': 1.0, 'at': 1.0}
Word element => {'always': 1.0, 'mint': 1.0, 'him': 1.0, 'these': 1.0, 'premie': 1.0, 'tie': 1.0, '3': 1.0, 'helped': 1.0, 'until': 1.0, 'and': 1.0, 'son': 1.0, 'as': 1.0, 'my': 1.0, 'condition': 1.0, 'months': 1.0, 'over': 1.0, 'he': 1.0, 'how': 1.0, 'was': 1.0, 'to': 1.0, 'bottles': 1.0, 'store': 1.0, 'use': 1.0, 'learned': 1.0, 'thank': 1.0, 'you': 1.0}
Word element => {'bottles': 1.0, 'very': 1.0, 'regular': 1.0, 'in': 1.0, 'buy': 1.0, 'to': 3.0, 'crazy': 1.0, 'home': 1.0, 'might': 1.0, 's': 1.0, 'come': 1.0, 'it': 1.0, 'with': 3.0, 'things': 1.0, 'carry': 1.0, 'are': 2.0, 'disposable': 1.0, 'nipples': 2.0, 'think': 1.0, 'your': 1.0, 'these': 2.0, 'great': 1.0, 'more': 1.0, 'handy': 1.0, 'but': 1.0, 'back': 1.0, 'just': 2.0, 'love': 1.0, 'people': 1.0, 'you': 1.0, 'when': 1.0, 'out': 1.0, 'toss': 1.0, 'and': 2.0, 'probably': 1.0, 'no': 1.0, 'about': 1.0, 'baby': 1.0, 'need': 1.0, 'they': 2.0, 'dirty': 1.0, 'feed': 1.0, 'i': 3.0, 'otherwise': 1.0, 'travel': 1.0, 'use': 1.0, 'the': 1.0, 'nursetts': 1.0, 'would': 1.0, 'have': 1.0}
Word element => {'will': 1.0, 'daughter': 1.0, 'able': 1.0, 'at': 1.0, 'glad': 1.0, 'find': 1.0, 'in': 1.0, 'for': 1.0, 'nipple': 1.0, 'the': 2.0, 'these': 1.0, 'used': 1.0, 'our': 2.0, 'nicu': 1.0, 'i': 1.0, 'so': 1.0, 'twins': 1.0, 'was': 1.0, 'to': 1.0, 'them': 1.0, 'use': 2.0, 'home': 1.0, 'is': 1.0, 'this': 1.0, 'only': 1.0}
Word element => {'happy': 1.0, 'at': 1.0, 'not': 2.0, 'does': 1.0, 'and': 1.0, 'fit': 1.0, 'this': 2.0, 'item': 1.0, 'purchased': 1.0, 'to': 2.0, 'ready': 1.0, 'bottles': 1.0, 'all': 1.0, 'use': 2.0, 'with': 1.0, 'on': 1.0, 'received': 1.0, 'purchase': 1.0, 'enfamil': 1.0, 'it': 2.0}
Word element => {'them': 1.0, 'reuse': 1.0, 'convenient': 1.0, 'left': 1.0, 'space': 1.0, 'too': 2.0, 'pricey': 1.0, 'are': 1.0, 'enough': 1.0, 'several': 1.0, 'regular': 2.0, 'traveling': 1.0, 'task': 1.0, 'troublesome': 1.0, 'days': 1.0, 'feed': 2.0, 'waiting': 1.0, 'at': 1.0, 'bring': 1.0, 'having': 1.0, 'refill': 1.0, 'advance': 1.0, 'refilled': 1.0, 'they': 1.0, 'for': 2.0, 'much': 2.0, 'overseas': 1.0, 'expensive': 1.0, 'similac': 1.0, 'i': 9.0, 'and': 4.0, 'trip': 2.0, 'grateful': 1.0, 'luggage': 1.0, 'an': 1.0, 'to': 6.0, 'as': 1.0, 'on': 2.0, 'weigh': 1.0, 'although': 1.0, 'with': 2.0, 'bottles': 2.0, 'worth': 1.0, 'still': 1.0, 'every': 1.0, 'did': 2.0, 'mainly': 1.0, 'go': 1.0, 'along': 1.0, 't': 2.0, 'bought': 1.0, 'these': 2.0, 'nursers': 3.0, 'saved': 2.0, 'add': 1.0, 'some': 2.0, 'the': 7.0, 'place': 1.0, 'so': 1.0, 'bottle': 2.0, 'time': 1.0, 'star': 1.0, 'needed': 1.0, 'while': 1.0, 'very': 2.0, 'plane': 1.0, 'have': 2.0, 'a': 5.0, 'small': 1.0, 'drinking': 1.0, 'water': 2.0, 'when': 2.0, 'what': 1.0, 'had': 1.0, 'was': 2.0, 'unsafe': 1.0, '2': 1.0, 'but': 2.0, 'oz': 1.0, 'hungry': 1.0, 'me': 2.0, 'my': 1.0, 'may': 1.0, 'spending': 1.0, 'baby': 2.0, 'take': 1.0, 'then': 1.0, 'in': 2.0, 'm': 1.0, 'per': 1.0, 'more': 1.0, 'bottled': 1.0, 'powder': 1.0, 'formula': 1.0, 'same': 1.0, 'because': 1.0, 'that': 2.0, 'than': 1.0, 'mealtime': 1.0, 'way': 1.0, 'wash': 2.0, 'use': 2.0, 'her': 1.0, 'it': 2.0, 'minus': 1.0, 'mean': 1.0, 'sometimes': 1.0, 'rather': 1.0, 'nurser': 1.0, 'didn': 2.0, 'sanitizing': 1.0, 'from': 3.0, 'wonder': 1.0, 'why': 1.0, 'just': 1.0}
Word element => {'easier': 1.0, 'life': 1.0, 'made': 1.0, 'formula': 1.0, 'readymade': 1.0, 'onto': 1.0, 'did': 2.0, 'while': 2.0, 'landing': 1.0, 'were': 1.0, '6': 1.0, 'of': 2.0, 'with': 1.0, 'month': 1.0, 'it': 1.0, 'i': 5.0, 'old': 1.0, 'ordered': 1.0, 'glad': 1.0, 'nipples': 1.0, 'blessing': 1.0, 'trip': 1.0, 'not': 1.0, 'these': 3.0, 'international': 1.0, 'the': 3.0, 'a': 2.0, 'for': 1.0, 'planning': 1.0, 'one': 1.0, 'much': 1.0, 'pack': 1.0, 'have': 1.0, 'my': 2.0, 'wash': 1.0, 'flight': 1.0, 'on': 1.0, 'and': 2.0, 'first': 1.0, 'reusable': 1.0, 'am': 1.0, 'road': 1.0, 'when': 1.0, 'so': 2.0, 'time': 1.0, 'in': 1.0, 'resources': 1.0, 'takeoff': 1.0, 'to': 1.0, 'had': 1.0, 'especially': 1.0, 'during': 1.0, 'ready': 1.0, 'snapped': 1.0}
Word element => {'hospital': 1.0, 'long': 1.0, 'a': 1.0, 'needed': 1.0, 'my': 1.0, 'what': 1.0, 'baby': 1.0, 'shipped': 1.0, 'just': 1.0, 'quickly': 1.0, 'our': 1.0, 'and': 1.0, 'home': 1.0, 'to': 1.0, 'product': 1.0, 'stay': 1.0, 'worked': 1.0, 'well': 1.0, 'after': 1.0, 'was': 1.0}
Word element => {'way': 1.0, 'along': 1.0, 'discard': 1.0, 'also': 1.0, 'economical': 1.0, 'pretty': 1.0, 'price': 1.0, 'at': 1.0, 'would': 1.0, 'new': 1.0, 'then': 1.0, 'that': 2.0, 'few': 1.0, 'just': 1.0, 'weeks': 1.0, 'away': 1.0, 'them': 3.0, 'throw': 1.0, 'may': 1.0, 'she': 1.0, 'there': 2.0, 'hospital': 1.0, 'while': 1.0, 'from': 2.0, 'fed': 1.0, 'so': 1.0, 'ever': 1.0, 'has': 1.0, 'they': 3.0, 'your': 1.0, 'be': 2.0, 'first': 1.0, 'with': 2.0, 'the': 4.0, 'these': 2.0, 'are': 4.0, 'traveling': 1.0, 'fallen': 1.0, 'like': 1.0, 'which': 1.0, 'daughter': 1.0, 'in': 2.0, 'this': 1.0, 'perfect': 1.0, 'for': 2.0, 'actually': 1.0, 'love': 1.0, 'replace': 1.0, 'nipples': 1.0, 'out': 1.0, 'cheaper': 1.0, 'child': 1.0, 'other': 1.0, 'superior': 1.0, 'if': 1.0, 'is': 2.0, 'but': 1.0, 'change': 1.0, 'use': 1.0, 'resistent': 1.0, 'as': 2.0, 'our': 1.0, 'to': 3.0, 'we': 1.0, 'a': 3.0, 'disposables': 1.0, 'set': 1.0, 'used': 1.0, 'good': 1.0, 'her': 1.0, 'ones': 1.0, 'feed': 1.0, 'much': 1.0, 'do': 1.0, 'not': 1.0}
Word element => {'no': 1.0, 'these': 1.0, 'their': 1.0, 'has': 1.0, 'is': 1.0, 'her': 1.0, 'back': 1.0, 'giving': 1.0, 'environments': 1.0, 'nastiest': 1.0, 'into': 1.0, 'thrown': 1.0, 'sterilizing': 1.0, 'it': 2.0, 'face': 1.0, 'solution': 1.0, 'convienent': 1.0, 'isn': 1.0, 'save': 1.0, 'out': 1.0, 'when': 1.0, 'm': 2.0, 'sippy': 2.0, 'them': 1.0, 'baby': 1.0, 'happens': 1.0, 'bag': 1.0, 'oz': 1.0, 'me': 1.0, 'not': 1.0, 'those': 3.0, 'cups': 1.0, 'to': 3.0, 'what': 1.0, 'had': 1.0, 'now': 1.0, 'buying': 1.0, 'through': 1.0, 'and': 3.0, 'longer': 1.0, 'perfectly': 1.0, 'without': 1.0, 'the': 3.0, 'changed': 1.0, 'diaper': 1.0, 'but': 1.0, 'this': 1.0, 'perfect': 2.0, 'edit': 1.0, 'in': 1.0, 'where': 1.0, 'fit': 2.0, 'for': 4.0, 'one': 1.0, 'let': 1.0, 'cup': 1.0, 'bottles': 3.0, 'gerber': 2.0, 'juice': 1.0, 'since': 1.0, 'at': 1.0, 'bummer': 1.0, 'grows': 1.0, 'on': 1.0, 'over': 1.0, 'they': 1.0, 'similac': 1.0, '4': 1.0, 'i': 3.0, 'get': 1.0, 'easy': 1.0, 'enfamil': 1.0, 'left': 1.0, 'looking': 1.0, 'outings': 1.0, 's': 1.0, 't': 1.0, 'go': 1.0, 'a': 3.0, 'stash': 1.0, 'brand': 1.0, 'warm': 1.0}
Word element => {'if': 1.0, 'useful': 1.0, 'traveling': 1.0, 'incredibly': 1.0, 'similac': 1.0, 'for': 1.0, 'formula': 1.0, 'liquid': 1.0, 'disposable': 1.0, 'individual': 1.0, 'these': 1.0, 'onto': 1.0, 'are': 2.0, 'the': 2.0, 'medela': 1.0, 'screw': 1.0, 'you': 1.0, 'multiple': 1.0, 'nipple': 1.0, 'bottles': 2.0, 'some': 1.0, 'of': 2.0, 'and': 2.0}
Word element => {'price': 1.0, 'better': 1.0, 'like': 1.0, 'would': 1.0, 'very': 1.0, 'are': 1.0, 'they': 1.0, 'another': 1.0, 'feeding': 1.0, 'then': 1.0, 'ready': 1.0, 'use': 1.0, 'bottles': 1.0, 'drawback': 1.0, 'with': 3.0, 'this': 1.0, 'to': 3.0, 'want': 1.0, 'fine': 1.0, 'and': 3.0, 'continue': 1.0, 'only': 1.0, 'do': 1.0, 'get': 2.0, 'formula': 1.0, 'bad': 1.0, 'thing': 1.0, 'have': 1.0, 'not': 1.0, 'the': 4.0, 'nipple': 1.0, 'nipples': 2.0, 'feed': 1.0, 'a': 1.0, 'we': 2.0, 'expensive': 1.0, 'for': 1.0, 'trips': 1.0, 'similac': 1.0, 'mess': 1.0, 'i': 3.0, 'is': 2.0, 'say': 1.0, 'into': 1.0, 'that': 3.0, 'when': 3.0, 'you': 3.0, 'work': 1.0, 'can': 2.0, 'fed': 1.0, 'your': 1.0, 'baby': 3.0, 'uses': 1.0, 'sucks': 1.0, 'collapses': 1.0, 'pull': 1.0, 'out': 1.0, 'bottle': 2.0, 'so': 1.0, 'these': 2.0, 'some': 1.0, 'air': 1.0}
Word element => {'once': 1.0, 'only': 1.0, 'can': 1.0, 'you': 1.0, 'of': 1.0, 'out': 1.0, 'come': 1.0, 'the': 1.0, 'these': 1.0, 'nipples': 2.0, 'use': 1.0, 'while': 1.0, 'after': 1.0, 'smell': 2.0, 'bad': 1.0, 'i': 1.0, 'when': 1.0, 'wash': 1.0, 'a': 2.0, 'them': 2.0}
Word element => {'must': 1.0, 'a': 2.0, 'too': 1.0, 'have': 1.0, 'wonderful': 1.0, 'happy': 1.0, 'drink': 1.0, 'to': 1.0, 'baby': 2.0, 'i': 1.0, 'it': 1.0, 'love': 1.0, 'nipples': 1.0, 'they': 1.0, 'these': 1.0, 'quality': 1.0, 'very': 1.0, 'and': 1.0, 'make': 1.0, 'easy': 1.0, 'for': 2.0}
Word element => {'free': 1.0, 'price': 1.0, 'a': 1.0, 'for': 1.0, 'here': 1.0, 'flow': 1.0, 'them': 1.0, 'hospital': 1.0, 'other': 1.0, 'find': 2.0, 'nipples': 1.0, 'nipple': 1.0, 'these': 1.0, 'the': 2.0, 'my': 1.0, 'after': 1.0, 'slow': 1.0, 'to': 2.0, 'was': 2.0, 'would': 1.0, 'in': 1.0, 'decent': 1.0, 'got': 1.0, 'everywhere': 1.0, 'on': 1.0, 'shipping': 1.0, 'son': 1.0, 'anything': 1.0, 'he': 1.0, 'able': 1.0, 'born': 1.0, 'and': 2.0, 'take': 1.0, 'absolutly': 1.0, 'i': 2.0, 'started': 1.0, 'not': 1.0, 'searched': 1.0}
Word element => {'nothing': 1.0, 'up': 1.0, 'his': 1.0, 'than': 1.0, 'old': 1.0, 'month': 1.0, '3': 1.0, 'my': 1.0, 'gas': 1.0, 'gave': 1.0, 'made': 1.0, 'disposable': 1.0, 'flight': 1.0, 'recent': 1.0, 'usual': 1.0, 'formula': 1.0, 'would': 1.0, 'troublesome': 1.0, '7': 1.0, 'a': 1.0, 'for': 2.0, 'as': 1.0, 'get': 1.0, 'and': 2.0, 'purchased': 1.0, 'hour': 1.0, 'be': 1.0, 'much': 1.0, 'more': 1.0, 'these': 1.0, 'nipples': 1.0, 'slightly': 1.0, 'they': 1.0, 'we': 2.0, 'but': 1.0, 'ready': 1.0, 'were': 1.0, 'thought': 1.0, 'easier': 1.0, 'traveling': 1.0}
Word element => {'storage': 1.0, '34': 2.0, 'for': 1.0, 'toys': 1.0, 'in': 1.0, 'which': 1.0, 'shop': 1.0, 'littlest': 1.0, 'we': 1.0, 'made': 1.0, 'pet': 1.0, 'put': 1.0, 'this': 1.0, 'used': 1.0, 'are': 1.0, 'actually': 1.0, 'the': 2.0, 'ones': 1.0, 'a': 1.0, 'lot': 1.0, 'cheaper': 1.0, 'than': 1.0, 'to': 1.0, 'was': 1.0, 'buying': 1.0, 'that': 1.0}
Word element => {'sample': 1.0, 'shows': 1.0, 'dark': 1.0, 'top': 1.0, 'other': 1.0, 'of': 1.0, 'available': 1.0, 'that': 1.0, 'ones': 1.0, 'the': 8.0, 'photos': 1.0, 'not': 2.0, 'did': 1.0, 'keep': 1.0, 'side': 1.0, 'picked': 1.0, 'with': 3.0, 'it': 2.0, 'or': 1.0, 'off': 1.0, 'bubbles': 1.0, 'my': 1.0, 'one': 3.0, 'color': 1.0, 'cat': 1.0, 'animals': 1.0, 'front': 1.0, 'we': 3.0, 'a': 2.0, 'get': 1.0, 'on': 3.0, '3': 1.0, 'in': 2.0, 'sadly': 1.0, 'also': 1.0, 'but': 1.0, 'is': 1.0, 'completely': 1.0, 'noted': 1.0, 'panda': 1.0, 'bear': 1.0, 'daughter': 1.0, 'different': 1.0, 'tag': 1.0, 'ripped': 1.0, 'so': 1.0, 'now': 1.0, 'have': 2.0, 'any': 1.0, 'to': 1.0, 'as': 3.0, 'others': 1.0, 'printing': 1.0}
Word element => {'bit': 1.0, 'loosened': 1.0, 'or': 1.0, 'used': 1.0, 'sure': 1.0, 'lost': 1.0, 'this': 2.0, 'back': 2.0, 'mouth': 2.0, 'herself': 1.0, 'five': 1.0, 'paci': 4.0, 'to': 5.0, 'and': 4.0, 'too': 1.0, 'cuddle': 1.0, 'more': 2.0, 'past': 1.0, 'but': 2.0, 'loves': 1.0, 'been': 1.0, 'because': 2.0, 'that': 1.0, 'month': 1.0, 'she': 3.0, '3': 1.0, 'presents': 1.0, 'm': 1.0, 'seat': 1.0, 'in': 4.0, 'honestly': 1.0, 'bought': 1.0, 'months': 2.0, 'the': 5.0, 'reach': 1.0, 'my': 3.0, 'another': 1.0, 'can': 4.0, 'so': 1.0, 'old': 1.0, 'i': 5.0, 'by': 1.0, 'daughter': 2.0, 'looked': 1.0, 'part': 1.0, 'over': 1.0, 'hard': 1.0, 'it': 12.0, 'thought': 1.0, 'had': 1.0, 'pacifiers': 1.0, 'just': 2.0, 'why': 1.0, 'car': 1.0, 'not': 2.0, 'has': 1.0, 'a': 7.0, 't': 1.0, 's': 4.0, 'needed': 1.0, 'lifesaver': 1.0, 'never': 1.0, 'up': 1.0, 'favorite': 2.0, 've': 1.0, 'down': 1.0, 'attached': 1.0, 'almost': 1.0, 'now': 1.0, 'plushie': 1.0, 'switch': 1.0, 'if': 2.0, 'bigger': 1.0, 'is': 2.0, 'at': 2.0, 'couple': 1.0, 'christmas': 1.0, 'using': 1.0, 'normal': 1.0, 'falls': 1.0, 'side': 1.0, 'with': 1.0, 'wiggles': 1.0, 'be': 1.0, 'pop': 1.0, 'grab': 1.0, 'only': 1.0, 'put': 1.0, 'much': 1.0, '2': 1.0, 'thing': 1.0, 'her': 3.0, 'use': 2.0, 'night': 1.0, 'love': 1.0, 'yet': 1.0, 'neck': 1.0, 'cute': 1.0, 'first': 1.0, 'was': 1.0, 'little': 2.0, 'head': 1.0, 'right': 1.0, 'we': 3.0, 'fine': 1.0}
Word element => {'cut': 1.0, 'all': 1.0, 'over': 1.0, 'pacis': 1.0, 'other': 1.0, 'that': 1.0, 'then': 1.0, 'pritty': 1.0, 'really': 2.0, 'she': 2.0, 'much': 1.0, 'daughter': 1.0, 'for': 2.0, 'this': 1.0, 'didnt': 1.0, 'my': 1.0, 'the': 2.0, 'care': 1.0, 'are': 2.0, 'like': 1.0, 'and': 2.0, 'bought': 1.0, 'wabanuba': 1.0, 'but': 1.0, 'they': 2.0, 'worth': 1.0, 'cute': 2.0, 'funcual': 1.0, 'losing': 1.0, 'not': 1.0}
Word element => {'need': 1.0, 'that': 1.0, 'cute': 1.0, 'a': 1.0, 'my': 1.0, 't': 1.0, 'the': 1.0, 'stuck': 1.0, 'disappointed': 1.0, 'in': 2.0, 'bear': 1.0, 'daughter': 1.0, 'stay': 1.0, 'not': 1.0, 'would': 1.0, 'stuffed': 1.0, 'was': 2.0, 'doesn': 1.0, 'but': 1.0, 'fits': 1.0, 'mouth': 1.0, 'am': 1.0, 'while': 1.0, 'paci': 2.0, 'nuk': 1.0, 'with': 1.0, 'it': 4.0, 's': 1.0, 'is': 1.0, 'she': 2.0, 'months': 1.0, 'on': 1.0, '4': 1.0, 'i': 1.0, 'old': 1.0, 'very': 1.0}
Word element => {'any': 1.0, 'must': 1.0, 'for': 1.0, 'problems': 1.0, 'lovethem': 1.0, 'your': 1.0, 'tired': 1.0, 'to': 1.0, 'of': 1.0, 'waking': 1.0, 'all': 1.0, 'give': 1.0, 'baby': 2.0, 'will': 1.0, 'pacy': 1.0, 'a': 2.0, 'have': 1.0, 'this': 1.0, 'solve': 1.0}
Word element => {'nice': 1.0, 'is': 1.0, 'and': 1.0, 'paci': 1.0, 'use': 1.0, 'you': 1.0, 'how': 1.0, 'like': 1.0, 'because': 1.0, 'though': 1.0, 'your': 1.0, 'registry': 1.0, 'my': 1.0, 'on': 1.0, 'panda': 1.0, 'size': 1.0, 'can': 2.0, 'gave': 1.0, 'what': 1.0, 'works': 1.0, 'so': 1.0, 'it': 3.0, 'shower': 1.0, 'yet': 1.0, 'for': 2.0, 'likes': 1.0, 'as': 1.0, 'very': 1.0, 'gift': 1.0, 'cute': 1.0, 'did': 1.0, 'own': 1.0, 'if': 2.0, 'i': 4.0, 'good': 1.0, 'or': 1.0, 'the': 2.0, 't': 1.0, 'say': 1.0, 'see': 1.0, 'a': 3.0, 'well': 1.0, 'baby': 1.0, 'quality': 1.0, 'put': 1.0}
Word element => {'machine': 1.0, 'through': 1.0, 'after': 1.0, 'even': 1.0, 'really': 1.0, 'up': 1.0, 'held': 1.0, 'now': 1.0, 'months': 1.0, '9': 1.0, 'thoroughly': 1.0, 'and': 2.0, 'falls': 1.0, 'crib': 1.0, 'aren': 1.0, 'his': 1.0, 'it': 5.0, 'this': 2.0, 'washing': 1.0, 'he': 3.0, 'fetch': 1.0, 'out': 2.0, 'infant': 1.0, 'in': 1.0, 've': 1.0, 'product': 1.0, 'love': 1.0, 'for': 3.0, 'more': 1.0, 'is': 2.0, 'many': 2.0, 'son': 1.0, 'pacifier': 1.0, 'well': 1.0, 'has': 1.0, 'easier': 1.0, 'the': 3.0, 'playing': 1.0, 'times': 1.0, 'fantastic': 1.0, 'when': 2.0, 'night': 1.0, 'much': 1.0, 'had': 1.0, 'purchased': 1.0, 'either': 1.0, 'an': 1.0, 'because': 1.0, 'find': 1.0, 'result': 1.0, 'isn': 1.0, 'able': 1.0, 'throw': 1.0, 'of': 2.0, 'so': 1.0, 'was': 1.0, 'anymore': 1.0, 'gotten': 1.0, 'hours': 1.0, 'as': 1.0, 'our': 1.0, 'to': 2.0, 'sleep': 1.0, 'going': 1.0, 's': 1.0, 't': 2.0, 'we': 3.0, 'a': 1.0}
Word element => {'are': 1.0, 'colors': 1.0, 'size': 1.0, 'thought': 1.0, 'onto': 1.0, 'cute': 1.0, 'holding': 1.0, 'away': 1.0, 'modern': 1.0, 'not': 2.0, 'but': 1.0, 'can': 1.0, 'bear': 4.0, 'this': 1.0, 'it': 6.0, 'got': 1.0, 'shape': 1.0, 'connected': 2.0, 'than': 1.0, 'because': 2.0, 'drops': 1.0, 'if': 1.0, 'everything': 1.0, 'smaller': 1.0, 'so': 1.0, 'super': 1.0, 'would': 1.0, 'gnawing': 1.0, 'him': 1.0, 'be': 2.0, 'and': 5.0, 'for': 3.0, 'my': 1.0, 'little': 3.0, 'will': 1.0, 'week': 1.0, '7': 1.0, 'old': 1.0, 'i': 2.0, 'teething': 1.0, 'hang': 1.0, 'months': 2.0, 'on': 3.0, 'is': 3.0, 'really': 1.0, 'still': 1.0, 'son': 1.0, 'mention': 1.0, 'great': 1.0, 'big': 1.0, 'has': 1.0, 'christmas': 1.0, 'loving': 1.0, 'far': 2.0, 'toys': 1.0, 'that': 1.0, 'been': 1.0, 'next': 1.0, 'loves': 1.0, 'the': 6.0, 'chewing': 1.0, 'teether': 2.0, 'patterns': 1.0, 'to': 3.0, 'like': 1.0, 'he': 6.0, 'how': 1.0, 'unlike': 1.0, 'other': 1.0, 's': 6.0, 'a': 3.0, 'just': 1.0, 'large': 1.0}
Word element => {'look': 1.0, 'fortheir': 1.0, 'collection': 1.0, 'love': 1.0, 'it': 1.0, 'however': 1.0, 'that': 1.0, 'vintage': 1.0, 'have': 1.0, 'this': 1.0, 'really': 3.0, 'i': 2.0, 'bear': 1.0, 'woodours': 1.0, 'is': 3.0, 'and': 1.0, 'only': 1.0, 'well': 1.0, 'small': 1.0, 'the': 2.0, 'made': 1.0, 'cute': 1.0, 'critic': 1.0}
Word element => {'singularly': 1.0, 'buying': 1.0, 'twice': 1.0, 'making': 1.0, 'pay': 1.0, 'you': 1.0, 'window': 1.0, 'easier': 2.0, 'life': 2.0, 'make': 1.0, 'they': 1.0, 'price': 1.0, 'products': 2.0, 'jeep': 3.0, 'made': 1.0, 'merrier': 1.0, 'more': 1.0, 'jogging': 1.0, 'to': 2.0, 'this': 1.0, 'cling': 1.0, 'loves': 1.0, 'amazon': 1.0, 'been': 1.0, 'wind': 1.0, 'hates': 1.0, 'daughter': 1.0, 'pull': 1.0, 'go': 1.0, 'walks': 1.0, 't': 2.0, 'put': 2.0, 'live': 1.0, 'haven': 1.0, 'but': 4.0, 'raining': 1.0, 'our': 1.0, 'stroller': 2.0, 'and': 9.0, 'my': 3.0, 'awhile': 1.0, 'is': 3.0, 'at': 1.0, 'all': 3.0, 'fits': 1.0, 'an': 1.0, 'in': 3.0, 'now': 1.0, 'air': 1.0, 've': 1.0, 'was': 1.0, 'great': 4.0, 'the': 14.0, 'comes': 1.0, 'these': 2.0, 'storing': 1.0, 'it': 8.0, 'already': 1.0, 'some': 1.0, 'well': 1.0, 'i': 10.0, 'for': 9.0, 'too': 1.0, 'one': 1.0, 'wanting': 1.0, 'so': 2.0, 'everything': 1.0, 'holding': 1.0, 'plastic': 2.0, 'that': 3.0, 'because': 1.0, 'out': 1.0, 'cover': 4.0, 'off': 3.0, 'them': 1.0, 'always': 1.0, 'has': 1.0, 'vented': 1.0, 'looking': 2.0, 'bag': 2.0, 'started': 1.0, 'toys': 1.0, 's': 1.0, 'sides': 1.0, 'on': 2.0, 'flow': 1.0, 'would': 1.0, 'automobile': 1.0, 'either': 1.0, 'found': 1.0, 'easy': 2.0, 'get': 1.0, 'store': 1.0, 'sure': 1.0, 'we': 2.0, 'take': 2.0, 'shades': 1.0, 'package': 1.0, 'especially': 1.0, 'when': 2.0, 'am': 1.0, 'don': 1.0, 'finally': 1.0, 'soaked': 1.0, 'water': 1.0, 'mesh': 3.0, 'allow': 1.0, 'fabulous': 1.0, 'bundle': 1.0, 'with': 1.0, 'convenient': 1.0, 'items': 2.0, 'also': 1.0, 'just': 1.0, 'used': 1.0, 'love': 3.0, 'fold': 1.0, 'yet': 1.0, 'works': 1.0, 'linking': 1.0, 'are': 2.0, 'a': 2.0, 'added': 1.0, 'bonus': 1.0, 'have': 2.0}
Word element => {'waiting': 1.0, 'still': 1.0, 'are': 1.0, 'they': 1.0, 'used': 1.0, 'their': 1.0, 'parts': 1.0, 'other': 1.0, 'plastic': 1.0, 'the': 4.0, 'never': 2.0, 'think': 1.0, 'almost': 1.0, 'ended': 2.0, 'package': 2.0, 'nothing': 1.0, 'uses': 1.0, 'stinky': 1.0, 'helped': 1.0, 'washing': 1.0, 'was': 2.0, 'in': 2.0, 've': 1.0, 'original': 1.0, 'garbage': 1.0, 'so': 1.0, 'after': 1.0, 'stuff': 1.0, 'donation': 1.0, 'for': 1.0, 'using': 1.0, 'a': 1.0, 'airing': 1.0, 'cracked': 1.0, 'this': 1.0, 'it': 4.0, 'i': 3.0, 'tried': 1.0, 'couple': 1.0, 'up': 2.0, 'of': 2.0}
Word element => {'balm': 1.0, 'dsi': 1.0, 'hold': 1.0, 'hair': 1.0, 'olds': 1.0, '11': 1.0, '8': 1.0, '6': 1.0, 'space': 1.0, 'think': 1.0, 'very': 1.0, 'overall': 1.0, 'etc': 1.0, 'pad': 1.0, 'changing': 1.0, 'came': 1.0, 'couple': 1.0, 'another': 1.0, 'extra': 1.0, 'are': 1.0, 'diapers': 1.0, 'an': 1.0, 'other': 1.0, 'there': 1.0, 'tylenol': 1.0, 'mints': 1.0, 'lotion': 1.0, 'to': 2.0, 'yr': 1.0, 'zipper': 3.0, 'or': 2.0, 'don': 1.0, 'use': 1.0, 'blankets': 1.0, 'you': 1.0, 'bottles': 1.0, 'sized': 2.0, 'variety': 1.0, 'lots': 1.0, 'always': 1.0, 'them': 1.0, 'has': 3.0, 'ipods': 1.0, 'each': 1.0, 'than': 1.0, 'section': 1.0, 'if': 1.0, 'bigger': 1.0, 'provide': 1.0, 'since': 2.0, 'little': 1.0, 'lip': 1.0, 'grew': 1.0, 'in': 3.0, 'cups': 1.0, '4': 1.0, 'i': 12.0, 'mesh': 1.0, 'up': 1.0, 'stage': 1.0, 'bag': 4.0, 'dividers': 1.0, 'wanted': 1.0, 'due': 1.0, 'shows': 1.0, 'out': 1.0, 'at': 1.0, 'is': 3.0, 'ask': 1.0, '00': 1.0, 'number': 1.0, 'kids': 2.0, 'few': 1.0, 'this': 4.0, 'older': 1.0, '3': 1.0, 'on': 2.0, 'had': 2.0, 'what': 1.0, 'small': 1.0, 'a': 11.0, 't': 3.0, 's': 2.0, 'am': 3.0, 'baby': 2.0, 'that': 3.0, 'experience': 1.0, 'for': 5.0, 'yet': 2.0, 'orange': 1.0, 'have': 2.0, 'haven': 1.0, 'until': 1.0, 'pass': 1.0, 'not': 3.0, 'april': 1.0, 'different': 1.0, 'quick': 1.0, 'but': 3.0, 'pocketthe': 1.0, 'pockets': 3.0, 'with': 3.0, 'plenty': 1.0, 'brush': 1.0, 'the': 7.0, 'of': 5.0, 'oversized': 1.0, 'about': 1.0, 'outfit': 1.0, 'starting': 1.0, 'already': 1.0, 'thought': 1.0, 'it': 4.0, 'will': 3.0, 'cream': 1.0, 'be': 2.0, 'grab': 1.0, 'used': 2.0, 'inconvenient': 1.0, 'and': 3.0, '27': 1.0, 'one': 1.0, 'too': 1.0, 'happy': 2.0, 'got': 1.0, 'picture': 1.0, 'super': 1.0, 'bargain': 2.0, 'price': 1.0, 'knew': 1.0, 'interior': 1.0, 'makes': 1.0, 'happier': 1.0, 'mainly': 1.0, 'me': 2.0, 'my': 3.0, 'eye': 1.0, 'actually': 1.0, 'color': 1.0, 'couldn': 1.0, 'items': 2.0, 'bags': 1.0, 'diaper': 4.0, 'as': 2.0, 'powder': 1.0, 'outside': 1.0, 'side': 2.0, 'which': 2.0, 'like': 1.0, 'pocket': 2.0, 'wipes': 1.0, 'large': 1.0, 'over': 1.0, 'open': 1.0, 'pouch': 3.0, 'packing': 1.0, 'keys': 1.0, 'burp': 1.0, 'even': 3.0, 'cloth': 1.0, '2': 2.0, 'split': 1.0}
Word element => {'this': 1.0, 'will': 1.0, 'you': 1.0, 'bedding': 1.0, 'second': 1.0, 'buy': 1.0, 'down': 1.0, 'break': 1.0, 'going': 1.0, 're': 1.0, 'haven': 1.0, 'curtains': 1.0, 'between': 1.0, 'window': 1.0, 'cover': 1.0, 'enough': 1.0, 'big': 1.0, 'not': 2.0, 'or': 1.0, 'bumper': 1.0, 'just': 2.0, 'worried': 1.0, 'spent': 1.0, 'sheet': 1.0, 'bit': 1.0, 'so': 1.0, 'breaking': 1.0, 'if': 1.0, 'still': 1.0, 'course': 1.0, 'valance': 1.0, 'with': 2.0, 'be': 3.0, 'set': 6.0, 'crib': 1.0, 'of': 2.0, 'the': 14.0, 'looking': 1.0, 'without': 1.0, 'days': 1.0, 'right': 1.0, 'half': 1.0, '2': 3.0, 'pregnant': 1.0, 'money': 2.0, 'but': 1.0, 'are': 2.0, 'first': 1.0, 'quilt': 2.0, 'have': 3.0, 'well': 1.0, 'i': 4.0, 'now': 2.0, 'mail': 1.0, 'thin': 1.0, 'husband': 1.0, 'fitting': 1.0, 'dark': 1.0, 'blocks': 1.0, 'and': 10.0, 'that': 1.0, 'to': 5.0, 'leave': 1.0, 'as': 2.0, 'accesories': 1.0, 'looks': 1.0, 'my': 1.0, 'boy': 2.0, 'would': 2.0, 'tight': 1.0, 'went': 1.0, 'a': 6.0, 'then': 1.0, 'we': 9.0, 'ago': 1.0, 's': 2.0, 'skirt': 1.0, 'washed': 1.0, '160': 1.0, 'bank': 1.0, 'for': 4.0, 'had': 2.0, 'type': 1.0, 'surprised': 1.0, 'tdecided': 1.0, 'it': 7.0, 'mobiles': 1.0, 'was': 5.0, 'little': 1.0, 'nice': 2.0, 'great': 2.0, 'pay': 1.0, 'price': 1.0, 'get': 1.0, 'twice': 1.0, 'put': 1.0, 'match': 1.0, 'much': 1.0, 'nursery': 1.0, 'received': 1.0, 'disappointed': 1.0, 'our': 3.0, 'how': 1.0, 'in': 3.0, 'couple': 1.0, 'got': 1.0, 'valances': 1.0, 'up': 3.0, 'really': 1.0, 'material': 1.0, 'look': 1.0, 'is': 2.0, 'at': 1.0, 'made': 1.0, 'tan': 1.0, 'actually': 1.0, 'color': 1.0, 'one': 1.0, 'girls': 2.0, 'corduroy': 1.0, 'quite': 1.0, 'purchase': 1.0, 'only': 1.0, 'paid': 1.0, 'problem': 1.0}
Word element => {'parents': 1.0, 'other': 1.0, 'the': 3.0, 'great': 1.0, 'feet': 1.0, 'right': 1.0, 'size': 1.0, 'little': 1.0, 'inches': 1.0, 'his': 1.0, 'year': 1.0, 'adorable': 1.0, 'short': 1.0, 'rock': 1.0, 'on': 2.0, 'put': 1.0, 'motorcycle': 1.0, 'got': 1.0, '2': 1.0, 'can': 1.0, 'but': 1.0, 'sitting': 1.0, 'christmas': 1.0, '30': 1.0, 'this': 3.0, 'he': 4.0, 'month': 1.0, 'it': 2.0, 'for': 3.0, 'suggest': 1.0, 'our': 2.0, 'to': 2.0, 'old': 2.0, 'i': 1.0, 'a': 2.0, 'we': 1.0, 's': 4.0, 'rocker': 2.0, 'just': 1.0, '11': 1.0, 'easily': 1.0, 'part': 1.0, 'while': 1.0, 'about': 1.0, '5': 1.0, 'is': 1.0, 'tall': 1.0, 'and': 2.0, 'd': 1.0}
Word element => {'opened': 1.0, 'if': 1.0, 'too': 1.0, 'scratches': 1.0, 'on': 3.0, 'put': 2.0, 'marks': 1.0, 'did': 1.0, 'glue': 2.0, 'as': 1.0, 'engine': 2.0, 'to': 3.0, 'dents': 1.0, 'than': 1.0, 'together': 2.0, 'someone': 1.0, 'yellow': 1.0, 'was': 3.0, 'wood': 1.0, 'handles': 1.0, 'torn': 1.0, 'brown': 1.0, 'gave': 1.0, 'nephew': 2.0, 'previous': 1.0, 'fire': 2.0, 'some': 1.0, 'instead': 1.0, 'like': 1.0, 'package': 2.0, 'open': 2.0, 't': 3.0, 'my': 2.0, 'discolored': 1.0, 'gift': 2.0, 'i': 7.0, 'packaging': 1.0, 'the': 13.0, 'of': 7.0, 'regret': 1.0, 'worn': 1.0, 'looked': 1.0, 'part': 1.0, 'from': 1.0, 'and': 5.0, 'pleasing': 1.0, 'ruined': 1.0, 'already': 2.0, 'him': 2.0, 'it': 14.0, 'had': 3.0, 'let': 1.0, 'up': 2.0, 'product': 2.0, 'child': 1.0, 'color': 1.0, 'use': 1.0, 'necessarily': 1.0, 'front': 1.0, 'is': 4.0, 'really': 1.0, 'a': 4.0, 'attempting': 1.0, 'small': 1.0, 'have': 1.0, 'narrower': 1.0, 'expected': 1.0, 'ordered': 1.0, 'didn': 1.0, 'presenting': 1.0, 'item': 1.0, 'aesthetically': 1.0, 'before': 1.0, 'can': 1.0, 'take': 1.0, 'away': 1.0, 'now': 1.0, 'hadn': 1.0, 'seat': 1.0, 'in': 1.0, 'm': 1.0, 'just': 1.0, 'safest': 1.0, 'because': 4.0, 'that': 1.0, 'concerned': 1.0, 'whether': 1.0, 'thing': 1.0, 'give': 1.0, 'itself': 1.0, 'not': 2.0, 'set': 1.0, 'correctly': 1.0, 'top': 1.0, 'himself': 1.0, 'very': 1.0, 'arrived': 1.0, 'out': 1.0, 'probably': 1.0, 'either': 1.0, 'would': 1.0, 'returned': 1.0}
Word element => {'them': 1.0, 'handles': 1.0, 'company': 1.0, 'comes': 1.0, 'true': 1.0, 'mistake': 1.0, 'on': 1.0, 'make': 1.0, 'but': 1.0, 'can': 1.0, 'everything': 1.0, 'how': 1.0, 'received': 1.0, 'verify': 1.0, 'included': 1.0, 'firetruck': 1.0, 'would': 1.0, 'new': 1.0, 'whole': 1.0, 'recommend': 1.0, 'was': 2.0, 'seat': 1.0, 'to': 3.0, 'it': 3.0, 'christmas': 1.0, 'were': 2.0, 'had': 2.0, 'what': 2.0, '5': 1.0, 'before': 1.0, 'cutest': 1.0, 'amazing': 1.0, 'customer': 1.0, 'service': 2.0, 'emailed': 2.0, 'and': 6.0, 'bag': 1.0, 'response': 1.0, 'done': 1.0, 'me': 3.0, 'this': 2.0, 'found': 1.0, 'good': 1.0, 'assymble': 1.0, 'sure': 1.0, 'overnighting': 1.0, 'when': 1.0, 'i': 7.0, 'opened': 1.0, 'place': 1.0, 'the': 5.0, 'package': 1.0, 'began': 1.0, 'wasn': 1.0, 'sent': 1.0, 'days': 1.0, 'seller': 1.0, 'going': 1.0, 'we': 1.0, 't': 1.0, 'could': 1.0, 'a': 4.0, 'anyone': 2.0, 'be': 1.0, 'within': 1.0, 'an': 1.0, 'also': 1.0, 'missing': 1.0, 'item': 1.0, 'hour': 1.0, 'monday': 1.0, 'they': 3.0, 'piece': 1.0, 'd': 1.0, 'have': 1.0}
Word element => {'amazon': 1.0, 'you': 1.0, 'well': 1.0, 'very': 1.0, 'went': 1.0, 'say': 1.0, 'which': 1.0, 'back': 1.0, '20': 1.0, 'maybe': 1.0, 'yard': 1.0, 'bucks': 1.0, 'at': 1.0, 'used': 1.0, 'if': 1.0, 'price': 1.0, 'lease': 1.0, 'last': 1.0, 'and': 1.0, 'for': 2.0, 'fit': 1.0, 'it': 3.0, 'with': 1.0, 'had': 2.0, 'refund': 1.0, 'was': 3.0, 'to': 5.0, 'open': 1.0, 'worked': 1.0, '1': 1.0, 'the': 5.0, 'holes': 1.0, '4': 1.0, 'i': 7.0, 'found': 1.0, 'this': 2.0, 'ups': 1.0, 'minute': 1.0, 'driver': 1.0, 'me': 1.0, 'not': 3.0, 'happy': 2.0, 'time': 1.0, 'common': 1.0, 'saw': 1.0, 'purchase': 1.0, 'hard': 1.0, 'from': 2.0, 'while': 1.0, 'handing': 1.0, 'assembling': 1.0, 'directions': 1.0, 'were': 2.0, 'been': 1.0, 'box': 2.0, 'that': 1.0, '15': 1.0, 'confusing': 1.0, 'could': 1.0, 'losing': 1.0, 'a': 2.0, 'going': 1.0, '2': 1.0, 'but': 3.0, 'sense': 1.0, 'sale': 1.0, 'have': 3.0, 'thank': 1.0, 'screw': 1.0, 'sent': 2.0, 'drill': 1.0, 'out': 1.0, 'bolts': 1.0, 'some': 1.0, 'stuff': 1.0, '3': 1.0, 'make': 1.0}
Word element => {'as': 1.0, 'interest': 1.0, 'baby': 1.0, 'shake': 1.0, 'small': 1.0, 'window': 1.0, 'into': 1.0, 'rattle': 1.0, 'something': 1.0, 'that': 1.0, 'fishes': 1.0, 'be': 1.0, 'should': 1.0, 'tail': 1.0, 'things': 1.0, 'products': 1.0, 'a': 1.0, 'well': 1.0, 'avent': 1.0, 'all': 2.0, 'phillips': 1.0, 'go': 1.0, 'mouth': 2.0, 'made': 1.0, 'is': 1.0, 'like': 2.0, 'with': 1.0, 'this': 1.0, 'and': 1.0, 'reach': 1.0, 'look': 1.0, 'to': 2.0, 'back': 1.0, 'bpa': 1.0, 'fins': 1.0, 'of': 2.0, 'give': 1.0, 'little': 2.0, 'babes': 1.0, 'the': 4.0, 'ones': 1.0, 'they': 1.0, 'your': 1.0, 'free': 1.0}
Word element => {'recommend': 1.0, 'chews': 1.0, 'lot': 1.0, 'avent': 1.0, 'my': 1.0, 'he': 3.0, 'this': 4.0, 'it': 1.0, 'with': 1.0, 'favorite': 3.0, 'teether': 1.0, 'the': 6.0, 'great': 1.0, 'ones': 1.0, 'shakes': 1.0, 'are': 1.0, 'teethers': 2.0, 'i': 1.0, 'rattle': 2.0, 'just': 1.0, 'bumpy': 1.0, 'line': 2.0, 'a': 2.0, 't': 1.0, 's': 1.0, 'also': 1.0, 'teeth': 1.0, 'is': 4.0, 'highly': 1.0, 'really': 1.0, 'son': 1.0, 'part': 1.0, 'philips': 1.0, 'from': 2.0, 'to': 3.0, 'has': 1.0, 'won': 1.0, 'on': 2.0, 'front': 2.0, 'use': 1.0, 'choose': 1.0, 'because': 1.0, 'chew': 1.0, 'his': 3.0, 'other': 1.0, 'green': 1.0, 'and': 2.0, 'play': 1.0, 'animal': 1.0, 'round': 1.0, 'one': 1.0, 'touches': 1.0, 'fins': 1.0}
Word element => {'surprise': 1.0, 'did': 1.0, 'but': 1.0, 'pain': 1.0, 'cause': 1.0, 'or': 1.0, 'didn': 1.0, 'arm': 1.0, 'upper': 1.0, 'her': 1.0, 'damage': 1.0, 'up': 1.0, 'teether': 1.0, 'since': 1.0, 'managed': 1.0, 'any': 2.0, 'to': 3.0, 'was': 2.0, 'would': 1.0, 'while': 1.0, 'in': 1.0, 'daughter': 1.0, 'she': 4.0, 'it': 7.0, 'attached': 1.0, 'mail': 1.0, 'do': 1.0, 'only': 1.0, 'came': 1.0, 'pacifiers': 1.0, 'a': 1.0, 't': 2.0, 'the': 3.0, 'around': 1.0, 'is': 1.0, 'read': 1.0, 'very': 1.0, 'thing': 1.0, 'about': 1.0, 'i': 2.0, 'my': 1.0, 'wasn': 1.0, 'so': 1.0, 'washed': 1.0, 'off': 1.0, 'how': 1.0, 'washing': 1.0, 'instructions': 1.0, 'and': 1.0, 'sure': 1.0, 'get': 1.0, 'react': 1.0, 'napping': 1.0, 'has': 1.0, 'ever': 1.0, 'picky': 1.0, 'love': 1.0, 'been': 1.0, 'that': 2.0, 'surprised': 1.0, 'me': 2.0, 'wedged': 1.0}
Word element => {'not': 1.0, 'bag': 1.0, 'get': 1.0, 'other': 1.0, 'than': 1.0, 'better': 1.0, 'gums': 1.0, 'mams': 1.0, 'seemed': 1.0, 'tried': 1.0, 'bristles': 1.0, 'hold': 1.0, 'him': 1.0, 'easier': 1.0, 'diaper': 1.0, 'teether': 2.0, 'brush': 1.0, 'bite': 1.0, 'colors': 1.0, 'ring': 2.0, 'mam': 3.0, 'preferred': 1.0, 'next': 1.0, 'that': 1.0, 'it': 5.0, 'he': 2.0, 'time': 2.0, 'bit': 2.0, 'any': 1.0, 'all': 1.0, 'to': 6.0, 'soothe': 1.0, 'was': 2.0, 'teethers': 1.0, 'took': 1.0, 'two': 1.0, 'i': 2.0, 'never': 1.0, 'ok': 1.0, 'just': 2.0, 'uses': 1.0, 'ordered': 1.0, 'several': 1.0, 'purchase': 1.0, 'may': 1.0, 'avent': 2.0, 'my': 1.0, 'much': 2.0, 'end': 1.0, 'ease': 1.0, 'son': 1.0, 'seem': 1.0, 'akward': 1.0, 'months': 1.0, 'one': 3.0, 'sucked': 1.0, 'for': 4.0, 'actually': 1.0, '3': 1.0, 'think': 1.0, 'on': 1.0, 'this': 1.0, 'pain': 1.0, 'the': 10.0, 'we': 3.0, 's': 2.0, 'a': 3.0, 't': 1.0, 'varyhe': 1.0, 'sophie': 1.0, 'of': 3.0, 'would': 1.0, 'nose': 1.0, 'but': 1.0, 'didn': 1.0, 'his': 2.0, 'teething': 2.0, 'home': 1.0, 'made': 1.0, 'really': 2.0, 'material': 1.0, 'and': 6.0, 'similar': 1.0, 'giraffe': 1.0}
Word element => {'tender': 1.0, 'bad': 1.0, 'gums': 1.0, 'that': 1.0, 'parts': 1.0, 'plastic': 1.0, 'daugher': 1.0, 'for': 1.0, 'design': 1.0, 'hold': 1.0, 'are': 1.0, 'the': 2.0, 'my': 1.0, 'loves': 1.0, 'love': 1.0, 'it': 1.0, 'good': 1.0, 'no': 1.0, 'hard': 1.0}
Word element => {'into': 1.0, 'once': 1.0, 'but': 1.0, 'baby': 1.0, 'each': 1.0, 'depending': 1.0, 'other': 1.0, 'fancy': 1.0, 'cons': 1.0, 'first': 1.0, 'crannies': 1.0, 'nooks': 1.0, 'no': 1.0, 'clean': 1.0, 'quick': 1.0, 'very': 1.0, 'squeak': 1.0, 'sterilized': 1.0, 'out': 1.0, 'around': 1.0, 'at': 1.0, 'is': 3.0, 'till': 1.0, 'in': 2.0, 'got': 1.0, 'pieces': 1.0, 'or': 4.0, 'been': 1.0, 'babies': 2.0, 'preference': 1.0, 'hasn': 1.0, 'old': 2.0, 'makes': 2.0, 'be': 1.0, 'hooked': 1.0, 'fade': 1.0, 'miss': 1.0, 'throws': 1.0, 'real': 1.0, 'teethers': 2.0, 'strong': 1.0, '3': 1.0, 'grows': 1.0, 'on': 3.0, 'going': 1.0, 'twists': 1.0, 't': 2.0, 'a': 4.0, 'could': 1.0, 'go': 1.0, 'has': 1.0, 'and': 5.0, 'too': 2.0, 'sterilize': 1.0, 'get': 2.0, 'months': 2.0, 'color': 1.0, 'year': 1.0, 'interested': 2.0, 'advent': 1.0, 'teether': 4.0, 'my': 6.0, 'son': 5.0, 'pros': 1.0, 'hard': 1.0, 'philips': 1.0, 'he': 8.0, 'this': 3.0, 'perfect': 1.0, 'it': 14.0, 'had': 3.0, 'now': 2.0, 'was': 2.0, 'doesn': 1.0, 'i': 2.0, 'since': 1.0, 'steamer': 1.0, 'broken': 1.0, 'simple': 1.0, 'design': 1.0, 'easy': 2.0, 'heavy': 1.0, 'as': 3.0, 's': 5.0, 'grasp': 2.0, 'for': 3.0, 'fall': 1.0, 'bites': 2.0, 'bangs': 1.0, 'easily': 1.0, 'by': 1.0, 'light': 1.0, 'weight': 2.0, 'not': 3.0, '2': 1.0, 'happens': 1.0, 'like': 3.0, 'which': 1.0, 'with': 1.0, 'colorful': 1.0, 'some': 3.0, 'takes': 1.0, 'up': 1.0, 'can': 1.0, 'so': 2.0, 'time': 2.0, 'to': 7.0, 'against': 1.0, 'feels': 1.0, 'holding': 1.0, 'something': 1.0, 'hit': 1.0, 'even': 1.0, 'still': 2.0, 'every': 1.0, 'there': 1.0, 'satisfying': 1.0, 'sterilizer': 1.0, 'rubbing': 1.0, 'quality': 1.0, 'noise': 1.0, 'great': 1.0, 'sort': 1.0, 'the': 3.0, 'of': 1.0}
Word element => {'backup': 1.0, 'getting': 1.0, 'be': 1.0, 'fingers': 1.0, 'bite': 1.0, 'doesn': 1.0, 'gums': 1.0, 'help': 1.0, 'for': 1.0, 'try': 1.0, 'only': 1.0, 'this': 2.0, 'with': 1.0, 'and': 2.0, 'the': 2.0, 'my': 2.0, 'it': 1.0, 'she': 4.0, 'poor': 1.0, 'easy': 1.0, 'toys': 1.0, 'hold': 1.0, 'some': 1.0, 'other': 1.0, 'finally': 2.0, 'sassy': 1.0, 'lamaze': 1.0, 'her': 2.0, 'before': 1.0, 'fussing': 1.0, 'attached': 1.0, 'will': 1.0, 'rings': 2.0, 'various': 1.0, 'so': 2.0, 'teething': 2.0, 'several': 1.0, 'including': 1.0, 'a': 1.0, 't': 1.0, 's': 1.0, 'from': 1.0, 'very': 1.0, 'day': 1.0, 'has': 2.0, 'likes': 1.0, 'to': 4.0, 'all': 1.0, 'baby': 1.0, 'started': 1.0, 'is': 1.0, 'around': 1.0, 'i': 2.0, 'one': 1.0, 'months': 2.0, 'bought': 1.0, '2': 2.0, 'dealt': 1.0, 'of': 1.0, 'something': 1.0}
Word element => {'still': 1.0, 'but': 1.0, 'norm': 1.0, 'break': 1.0, 'so': 1.0, 'everything': 1.0, 'serilize': 1.0, 'with': 1.0, 'just': 1.0, 'not': 1.0, 'its': 1.0, 'do': 1.0, 'fyi': 1.0, 'recommend': 2.0, 'teethers': 1.0, 'since': 1.0, 'squeeker': 1.0, 'sterilize': 1.0, 'cool': 1.0, 'one': 1.0, 'for': 3.0, 'squeekey': 1.0, 'noise': 1.0, 'warm': 1.0, 'makes': 1.0, 'call': 1.0, 'little': 1.0, 'it': 3.0, 'teether': 2.0, 'a': 2.0, 'we': 2.0, 'rubs': 1.0, 'that': 1.0, 'filled': 1.0, 'babies': 1.0, 'us': 1.0, 'wider': 1.0, 'is': 5.0, 'hands': 1.0, 'the': 7.0, 'great': 2.0, 'and': 2.0, 'shape': 1.0, 'directions': 1.0, 'size': 1.0, 'plastic': 1.0, 'soft': 1.0, 'this': 4.0, 'perfect': 1.0, 'item': 1.0, 'also': 1.0, 'weight': 1.0, 'awesome': 2.0, 'our': 2.0, 'you': 1.0, 'when': 1.0, 'water': 2.0, 'daughter': 1.0, 'wash': 1.0, 'gums': 1.0, 'over': 1.0, 'on': 1.0, 'of': 1.0, 'chews': 1.0, 'nose': 1.0, 'from': 1.0, 'part': 2.0, 'face': 1.0, 'holding': 1.0, 'highly': 1.0, 'material': 1.0, 'obviously': 1.0, 'different': 1.0, 'usually': 1.0, 'than': 1.0}
Word element => {'recommend': 1.0, 'definitely': 1.0, 'enough': 1.0, 'far': 1.0, 'back': 2.0, 'difficult': 1.0, 'be': 1.0, 'would': 2.0, 'way': 1.0, 'mouth': 1.0, 'because': 1.0, 'with': 1.0, 'agree': 1.0, 'front': 1.0, 'best': 1.0, 'makes': 1.0, 'free': 1.0, 'teething': 2.0, 'isn': 2.0, 'designed': 2.0, 'ones': 1.0, 'great': 1.0, 'also': 2.0, 'in': 1.0, 'teeth': 3.0, 'design': 1.0, 'those': 1.0, 'product': 1.0, 'for': 5.0, 'love': 1.0, 'get': 1.0, 'easy': 1.0, 'the': 5.0, 'hands': 1.0, 'safe': 1.0, 'simply': 1.0, 'so': 1.0, 'small': 1.0, 'it': 7.0, 'first': 1.0, 'hard': 1.0, 't': 2.0, 'a': 1.0, 'their': 1.0, 'very': 2.0, 'little': 2.0, 'teether': 1.0, 'into': 1.0, 'that': 1.0, 'babies': 1.0, 'is': 6.0, 'completely': 1.0, 'says': 1.0, 'bpa': 1.0, 'to': 2.0, 'grasp': 1.0, 'keep': 1.0, 'i': 3.0, 'texture': 1.0, 'and': 3.0, 'too': 2.0, 'perfect': 1.0, 'this': 3.0, 'soft': 1.0, 'but': 1.0, 'package': 1.0}
Word element => {'product': 1.0, 'today': 1.0, 'recommend': 1.0, 'would': 1.0, 'on': 1.0, 'for': 1.0, 'yet': 1.0, 'my': 1.0, 'soft': 1.0, 'absolutely': 1.0, 'cute': 1.0, 'is': 2.0, 'buy': 1.0, 'i': 1.0, 'old': 1.0, 'this': 2.0, 'it': 4.0, 'month': 1.0, '5': 1.0, 'shape': 1.0, 'loves': 1.0, 'holds': 1.0, 'its': 1.0, 'toy': 1.0, 'baby': 2.0, 'a': 1.0, 'sound': 1.0, 'when': 1.0, 'makes': 1.0, 'your': 2.0, 'squeaky': 1.0, 'chewing': 1.0}
Word element => {'favorite': 1.0, 'age': 1.0, '9': 1.0, 'update': 1.0, 'still': 1.0, 'seem': 1.0, 'not': 1.0, 'does': 1.0, 'course': 1.0, 'but': 1.0, 'be': 1.0, 'idea': 1.0, 'have': 1.0, 'free': 1.0, 'pian': 1.0, 'relief': 1.0, 'bpa': 1.0, 'provides': 1.0, 'kind': 1.0, 'easy': 2.0, 'of': 6.0, 'through': 1.0, 'teethers': 3.0, 'that': 1.0, 'been': 1.0, 'little': 1.0, 'and': 5.0, 'great': 1.0, 'started': 1.0, 'early': 1.0, 'philips': 1.0, 'well': 1.0, 'teether': 1.0, 'my': 1.0, 'avent': 1.0, 'teething': 2.0, 'no': 1.0, 'about': 1.0, 'what': 1.0, 'animal': 2.0, 'plastic': 1.0, 'clean': 1.0, 'her': 1.0, 'different': 1.0, 's': 1.0, 'going': 1.0, 'a': 4.0, 'ago': 1.0, 'we': 1.0, 've': 1.0, 'is': 7.0, 'month': 1.0, 'it': 3.0, 'mind': 1.0, 'with': 1.0, 'made': 1.0, 'this': 2.0, 'soft': 1.0, 'silicone': 1.0, 'on': 1.0, 'i': 2.0, '4': 1.0, 'one': 1.0, 'months': 2.0, 'hold': 1.0, 'like': 1.0, 'the': 1.0, 'hands': 1.0, 'hanging': 1.0, 'at': 1.0, 'lot': 1.0, 'shaped': 1.0, 'supposed': 1.0, 'love': 1.0, 'for': 3.0, 'daughter': 4.0, 'harder': 1.0, 'time': 1.0, 'our': 3.0, 'to': 5.0, 'things': 1.0, 'old': 1.0}
Word element => {'from': 1.0, 'good': 1.0, 'back': 1.0, 'middle': 1.0, 'sterilization': 1.0, 'suitable': 1.0, 'massages': 1.0, 'front': 1.0, 'describes': 1.0, '3': 2.0, '1': 3.0, 'stage': 8.0, 'categorizes': 1.0, 'free': 2.0, 'phthalate': 1.0, 'teeth': 3.0, 'which': 1.0, 'like': 1.0, 'parts': 1.0, 'teethers': 2.0, 'include': 1.0, 'teether': 2.0, 'doesn': 1.0, 'gumming': 1.0, 'it': 3.0, 'earliest': 1.0, 'extraneous': 1.0, 'shape': 1.0, 'and': 9.0, 'get': 1.0, 'more': 1.0, 'is': 6.0, 'small': 2.0, 'a': 3.0, 'could': 1.0, 't': 1.0, 's': 2.0, 'way': 1.0, 'reputable': 1.0, 'this': 3.0, 'perfect': 1.0, 'in': 2.0, 'seems': 1.0, 'basically': 1.0, 'the': 3.0, 'hands': 1.0, 'simple': 1.0, 'other': 1.0, 'size': 1.0, 'baby': 1.0, 'toy': 1.0, 'very': 1.0, 'product': 1.0, 'for': 6.0, 'brother': 1.0, 'of': 1.0, '2': 2.0, 'flashy': 1.0, 'its': 3.0, 'groups': 1.0, 'purpose': 1.0, 'all': 2.0, 'as': 1.0, 'any': 1.0, 'to': 1.0, 'three': 1.0, 'main': 1.0, 'company': 1.0, 'avent': 2.0, 'my': 1.0, 'babies': 1.0, 'into': 1.0, 'that': 2.0, 'loves': 1.0, 'appropriate': 1.0, 'prefer': 1.0, 'gums': 1.0, 'over': 1.0, 'bpa': 1.0, 'his': 1.0, 'complicated': 1.0, 'i': 1.0}
Word element => {'hold': 1.0, 'to': 1.0, 'nice': 1.0, 'a': 1.0, 's': 1.0, 'take': 1.0, 'out': 1.0, 'teethers': 1.0, 'any': 1.0, 'easy': 1.0, 'recommend': 1.0, 'texture': 1.0, 'around': 1.0, 'and': 2.0, '1': 1.0, 'rubber': 1.0, 'would': 2.0, 'i': 1.0, 'for': 1.0, 'young': 1.0, 'thing': 1.0, 'teether': 1.0, 'there': 1.0, 'my': 1.0, 'started': 1.0, 'son': 1.0, 'the': 1.0, 'great': 1.0, '2': 1.0, 'is': 1.0, '3': 1.0, 'months': 1.0, 'he': 1.0, 'only': 1.0, 'it': 2.0, 'this': 1.0}
Word element => {'teething': 1.0, 'my': 1.0, 'well': 1.0, 'the': 1.0, 'tooth': 1.0, 'teether': 2.0, 'easily': 1.0, 'and': 1.0, 'mam': 1.0, 'brush': 1.0, 'daughter': 1.0, 'from': 1.0, 'as': 2.0, 'very': 1.0, 'gives': 1.0, 'she': 1.0, 'can': 1.0, 'this': 1.0, 'it': 2.0, 'relief': 1.0, 'hold': 1.0, 'i': 1.0, 'loves': 1.0, 'think': 1.0, 'her': 1.0, 'some': 1.0}
Word element => {'my': 1.0, 'give': 1.0, 'to': 3.0, 'something': 1.0, 'or': 1.0, 'material': 1.0, 'problem': 1.0, 'if': 1.0, 'baby': 1.0, 'don': 2.0, 'else': 1.0, 'inner': 1.0, 'head': 1.0, 'when': 1.0, 'i': 2.0, 'of': 2.0, 'yesterday': 1.0, 'packing': 1.0, 'on': 1.0, 'need': 1.0, 'opened': 1.0, 'it': 3.0, 'can': 1.0, 'got': 1.0, 'know': 1.0, 'just': 1.0, 'and': 1.0, 'you': 1.0, 'want': 1.0, 'is': 1.0, 'many': 1.0, 'return': 1.0, 'see': 1.0, 'broken': 1.0, 'visible': 1.0, 't': 2.0, 'the': 3.0, 'lines': 1.0, 'teether': 1.0}
Word element => {'teething': 1.0, 'wanting': 1.0, 'those': 1.0, 'option': 1.0, 'great': 1.0, 'nub': 1.0, 'little': 1.0, 'he': 1.0, 'himself': 1.0, 'by': 1.0, 'use': 1.0, 'in': 2.0, 'of': 1.0, 'end': 1.0, 'practical': 1.0, 'teether': 2.0, 'thing': 1.0, '20': 1.0, 'being': 1.0, 'working': 1.0, 'to': 1.0, 'all': 1.0, 'our': 2.0, 'on': 2.0, 'more': 1.0, 'trash': 1.0, 'is': 3.0, 'second': 2.0, 'justify': 1.0, 'sophie': 1.0, 'a': 2.0, 't': 1.0, 'the': 3.0, 'recent': 1.0, 'this': 3.0, 'with': 1.0, 'up': 1.0, 'child': 1.0, 'or': 1.0, 'box': 1.0, 'that': 2.0, 'loves': 2.0, '4': 1.0, 'i': 1.0, 'old': 1.0, 'something': 1.0, 'tooth': 1.0, 'would': 1.0, 'him': 1.0, 'couldn': 1.0, 'and': 2.0, 'especially': 1.0, 'spending': 1.0, 'enough': 1.0, 'choking': 1.0, 'concerns': 1.0, 'month': 1.0, 'awesome': 1.0, 'his': 1.0, 'already': 1.0, 'easy': 1.0, 'for': 3.0}
Word element => {'them': 1.0, 'made': 1.0, 'always': 1.0, 'as': 1.0, 'long': 1.0, 'time': 1.0, 'on': 1.0, 'chewed': 1.0, 'my': 2.0, 'babies': 2.0, 'teether': 1.0, 'easily': 1.0, 'well': 1.0, 'a': 1.0, 'for': 2.0, 'love': 2.0, 'laugh': 1.0, 'this': 2.0, 'it': 2.0, 'cleans': 1.0, 'little': 1.0, 'their': 1.0, 'easy': 1.0, 'hands': 1.0, 'its': 1.0, 'to': 2.0, 'throw': 1.0, 'grip': 1.0, 'and': 2.0}
Word element => {'highly': 1.0, 'recommend': 1.0, 'easy': 1.0, 'manipulate': 1.0, 'teether': 1.0, '6': 1.0, 'it': 2.0, 'month': 1.0, 'him': 1.0, 'perfect': 1.0, 'teeth': 1.0, 's': 1.0, 'for': 2.0, 'nub': 1.0, 'to': 1.0, 'is': 1.0, 'my': 1.0, 'the': 1.0, 'favorite': 1.0, 'hold': 1.0, 'and': 1.0, 'chewing': 1.0, 'front': 1.0, 'old': 1.0, 'i': 1.0}
Word element => {'ve': 1.0, 'rings': 1.0, 'one': 1.0, 'durable': 1.0, 'chew': 1.0, 'plenty': 1.0, 'end': 1.0, 'on': 1.0, 'nub': 1.0, 'with': 1.0, 'round': 1.0, 'simple': 1.0, 'control': 1.0, 'of': 3.0, 'great': 1.0, 'him': 2.0, 'gives': 1.0, 'so': 1.0, 'however': 1.0, 'we': 1.0, 's': 1.0, 'a': 2.0, 'philips': 1.0, 'relative': 1.0, 'review': 1.0, 'have': 1.0, 'just': 1.0, 'front': 1.0, 'use': 1.0, 'and': 2.0, 'too': 1.0, 'best': 1.0, 'm': 2.0, 'places': 1.0, 'shape': 1.0, 'mom': 1.0, 'did': 1.0, 'if': 1.0, 'i': 4.0, 'old': 3.0, 'enough': 1.0, 'floor': 1.0, 'to': 5.0, 'obviously': 1.0, 'write': 1.0, 'his': 1.0, 'deal': 1.0, 'the': 10.0, 'way': 1.0, 'age': 1.0, 'turn': 1.0, 'over': 1.0, 'avent': 1.0, 'my': 1.0, 'll': 1.0, 'range': 1.0, 'ring': 1.0, 'son': 1.0, 'very': 2.0, 'teeth': 1.0, 'right': 1.0, 'teething': 2.0, 'it': 1.0, 'month': 1.0, 'is': 2.0, 'product': 1.0, 'for': 1.0, '6': 1.0, 'rubber': 1.0, 'easy': 1.0, 'found': 1.0, 'allows': 1.0, 'perfect': 1.0, 'grip': 1.0}
Word element => {'wonderful': 1.0, 'than': 1.0, 'other': 1.0, 'lot': 1.0, 'rinse': 1.0, 'so': 1.0, 'area': 1.0, 'hair': 1.0, 'that': 1.0, 'lint': 1.0, 'of': 1.0, 'piece': 1.0, 'for': 1.0, 'daughter': 1.0, 'the': 4.0, 'is': 3.0, 'or': 1.0, 'loves': 1.0, 'a': 1.0, 'front': 1.0, 'my': 1.0, 'happy': 1.0, 'teething': 2.0, 'about': 1.0, 'attract': 1.0, 'this': 1.0, 'it': 3.0, 'only': 1.0, 'not': 1.0, 'i': 2.0, 'general': 1.0, 'am': 1.0, 'have': 1.0, 'thing': 1.0, 'teether': 1.0, 'in': 1.0, 'perfect': 1.0, 'seems': 1.0, 'to': 2.0, 'every': 1.0}
Word element => {}
Word element => {'fav': 1.0, 'is': 1.0, 'and': 1.0, 'sophie': 1.0, 'even': 1.0, 'have': 1.0, 'this': 2.0, 'before': 1.0, 'hands': 1.0, 'a': 1.0, 'down': 1.0, 'babies': 1.0, 'my': 1.0, 'must': 1.0, 'bought': 1.0, 'favorite': 1.0, 'his': 1.0, 'several': 1.0, 'teether': 1.0, 'i': 1.0, 'different': 1.0, 'ones': 1.0}
Word element => {'definitely': 1.0, 'only': 1.0, 'really': 1.0, 'for': 3.0, 'yet': 1.0, 'teethers': 1.0, 'working': 1.0, 'relieve': 1.0, 'has': 1.0, 'manipulate': 1.0, 'toys': 1.0, 'and': 4.0, 'many': 2.0, 'about': 1.0, 'ring': 1.0, 'my': 2.0, 'baby': 2.0, 'started': 1.0, 'not': 1.0, 'recommend': 1.0, 'was': 3.0, 'to': 1.0, 'at': 1.0, 'worked': 1.0, 'quickly': 1.0, 'young': 1.0, 'old': 1.0, 'i': 1.0, 'rings': 1.0, 'her': 2.0, 'different': 1.0, '3': 1.0, 'teething': 2.0, 'one': 1.0, 'bought': 1.0, 'months': 1.0, 'this': 2.0, 'perfect': 1.0, 'nothing': 1.0, 'size': 1.0, 'weight': 1.0, 'very': 1.0, 'little': 1.0, 'the': 2.0, 'hands': 1.0, 'it': 1.0, 'she': 1.0, 'that': 2.0, 'are': 1.0, 'coordinated': 1.0, 'able': 1.0, 'gums': 1.0, 'after': 1.0, 'so': 1.0, 'trying': 1.0}
Word element => {'minutes': 1.0, '3': 1.0, 'every': 1.0, 'like': 1.0, 'clean': 1.0, 'and': 1.0, 'i': 1.0, 'something': 1.0, 'to': 4.0, 'no': 1.0, 'up': 1.0, 'there': 1.0, 'but': 1.0, 'bind': 1.0, 'easy': 1.0, 'good': 1.0, 'or': 2.0, 'string': 1.0, 'somewhere': 1.0, 'pick': 1.0, 'have': 1.0, 'fix': 1.0, 'quatity': 1.0, 'is': 3.0, 'on': 1.0, 'it': 5.0, 'the': 3.0, 'such': 1.0, 'as': 1.0, 'cart': 1.0, 'so': 1.0, 'drop': 1.0, 'ground': 1.0}
Word element => {'oh': 1.0, 'good': 1.0, 'yes': 1.0, 'with': 1.0, 'it': 4.0, 'he': 4.0, 'is': 3.0, 'grasp': 1.0, 'but': 1.0, 'initially': 1.0, 'find': 1.0, 'him': 1.0, 'smile': 1.0, 'to': 1.0, 'was': 3.0, 'free': 1.0, 'away': 1.0, 'now': 1.0, 'what': 1.0, 'purchased': 1.0, 'months': 2.0, 'this': 2.0, 'provided': 1.0, 'pain': 1.0, 'won': 1.0, 'for': 1.0, 'ackward': 1.0, 'of': 1.0, 'buy': 2.0, 'grandson': 2.0, 'relief': 1.0, 'then': 1.0, 'far': 1.0, 'i': 2.0, 'and': 4.0, 'too': 1.0, 'by': 1.0, 'able': 1.0, '8': 1.0, 'teether': 1.0, 'toxic': 1.0, '3': 1.0, 'some': 1.0, 'from': 1.0, 'the': 2.0, 'irritation': 1.0, 'teething': 1.0, 'very': 1.0, 'wherever': 1.0, 'when': 1.0, 'you': 1.0, 'almost': 1.0, 'his': 1.0, 'if': 1.0, 'a': 2.0, 's': 2.0, 't': 1.0, 'go': 1.0, 'my': 1.0}
Word element => {'styles': 1.0, 'can': 1.0, 'buy': 1.0, 'day': 1.0, 'spare': 1.0, 'had': 1.0, 'grandma': 1.0, 'fortunately': 1.0, 'try': 1.0, 'do': 1.0, 'would': 1.0, 'of': 1.0, 'old': 1.0, 'was': 1.0, 'now': 1.0, 'like': 1.0, 'teeth': 2.0, 'this': 1.0, 'on': 1.0, 'even': 1.0, 'before': 1.0, 'her': 3.0, 'the': 5.0, 'teethers': 1.0, 'loved': 1.0, 'mother': 1.0, 'my': 2.0, 'wait': 1.0, 'anywhere': 1.0, 'months': 1.0, 'bought': 2.0, 'sprouting': 1.0, 'other': 3.0, 'law': 1.0, 'for': 1.0, 'daughter': 1.0, 'it': 5.0, 'she': 4.0, 'in': 2.0, 'said': 1.0, 'is': 2.0, 'squeek': 1.0, 'are': 1.0, 'cute': 1.0, 'chew': 1.0, 'find': 1.0, 'posters': 1.0, 'and': 3.0, 'six': 1.0, 'couldn': 1.0, 'favorite': 1.0, 'teether': 1.0, 'none': 1.0, 'coming': 1.0, 'have': 2.0, 'to': 3.0, 'all': 1.0, 'so': 1.0, 'time': 1.0, 'loves': 1.0, 'that': 1.0, 'two': 1.0, 'saved': 1.0, 'i': 1.0, 'a': 1.0, 't': 2.0, 'we': 1.0, 's': 1.0}
Word element => {'well': 1.0, 'crib': 1.0, 'aiden': 1.0, 'fit': 1.0, 'product': 1.0, 'what': 1.0, 'harder': 1.0, 'so': 1.0, 'much': 1.0, 'an': 1.0, 'fact': 1.0, 'week': 1.0, 'that': 1.0, 'from': 1.0, 'very': 3.0, 'to': 2.0, 'our': 2.0, 'as': 1.0, 'mattress': 1.0, 'this': 2.0, 'with': 3.0, 'she': 1.0, 'it': 2.0, 'cotton': 1.0, 'use': 1.0, 'dream': 1.0, 'does': 1.0, 'than': 1.0, 'are': 1.0, 'the': 3.0, 'bed': 2.0, 'stage': 1.0, 'and': 2.0, 'in': 2.0, 'comes': 1.0, 'is': 5.0, 'listed': 1.0, 'transition': 1.0, 'percentage': 1.0, 'am': 2.0, 'unhappy': 1.0, 'but': 1.0, 'firm': 1.0, 'organic': 2.0, 'we': 1.0, 'a': 3.0, 'her': 1.0, 'tag': 1.0, 'i': 2.0, 'stating': 1.0, 'me': 1.0, 'not': 1.0, 'on': 2.0, 'of': 1.0, 'happy': 1.0}
Word element => {'crib': 1.0, 'for': 1.0, 'purchase': 1.0, 'da': 1.0, 'are': 2.0, 'the': 1.0, 'fit': 1.0, 'gaps': 1.0, 'pretty': 1.0, 'perfect': 1.0, 'vinci': 1.0, 'firm': 1.0, 'mini': 1.0, 'a': 1.0, 'is': 2.0, 'rocking': 1.0, 'there': 1.0, 'no': 1.0, 'and': 1.0, 'this': 1.0, 'with': 1.0, 'it': 1.0, 'we': 1.0, 'happy': 1.0}
Word element => {'sheesh': 1.0, 'call': 1.0, 'compact': 1.0, 'anyone': 1.0, 'in': 1.0, 'things': 1.0, 'one': 1.0, 'else': 1.0, 'two': 1.0, 'i': 2.0, 'sheets': 3.0, 'searching': 1.0, 'cover': 2.0, 'sheetworld': 1.0, 'was': 1.0, 'to': 4.0, 'had': 1.0, 'thought': 1.0, 'happy': 1.0, 'this': 1.0, 'mattress': 3.0, 'select': 1.0, 'it': 1.0, 'waterproof': 2.0, 'but': 1.0, 'la': 1.0, 'and': 1.0, 'tough': 1.0, 'you': 1.0, 'when': 1.0, 'with': 1.0, 'overstock': 1.0, 'the': 6.0, 'find': 2.0, 'for': 1.0, 'fit': 1.0, 'com': 2.0, 'thicknesses': 1.0, 'easier': 1.0, 'has': 2.0, 'of': 2.0, 'd': 1.0, '34': 1.0, 'manufacturer': 1.0, 'which': 1.0, 'is': 1.0, 'want': 1.0, 'make': 1.0, '3': 1.0, 'just': 1.0, 'crib': 1.0, 'size': 1.0, 'ordering': 1.0, 'baby': 1.0}
Word element => {'wash': 1.0, 'one': 1.0, 'good': 1.0, 'very': 1.0, 'still': 1.0, 'oz': 1.0, 'making': 1.0, 'if': 2.0, 'lot': 1.0, 'buy': 1.0, 'perfect': 1.0, 'not': 2.0, 'is': 2.0, 'system': 1.0, 'great': 1.0, 'mixing': 1.0, 'the': 6.0, 'these': 2.0, 'them': 1.0, 'out': 1.0, 'plus': 1.0, 'issues': 1.0, 'warm': 2.0, 'but': 1.0, 'can': 1.0, 'you': 3.0, 'are': 2.0, 'helped': 1.0, 'put': 2.0, 'have': 2.0, '4': 1.0, 'i': 2.0, 'really': 1.0, 'too': 1.0, 'and': 4.0, 'like': 1.0, 'was': 1.0, 'our': 1.0, 'to': 3.0, 'having': 1.0, 'major': 1.0, 'it': 2.0, 'in': 3.0, 'air': 1.0, 'cap': 1.0, 'then': 1.0, 's': 1.0, 'we': 1.0, 'gas': 1.0, 'a': 3.0, 'press': 1.0, '15': 1.0, 'of': 3.0, 'hot': 1.0, 'formula': 1.0, 'room': 1.0, '20': 1.0, 'daughter': 1.0, 'water': 1.0, 'liners': 1.0, 'bottles': 2.0, 'cup': 1.0, 'or': 1.0, 'bottle': 3.0, 'microwave': 1.0, 'just': 1.0, 'less': 1.0, 'seconds': 1.0, 'liner': 1.0, 'for': 1.0, 'thing': 1.0, 'no': 1.0, 'about': 1.0, 'works': 1.0}
Word element => {'changing': 1.0, 'padded': 1.0, 'and': 2.0, 'buying': 1.0, 'month': 1.0, 'a': 2.0, 'ended': 1.0, 'another': 1.0, 'ago': 1.0, 're': 1.0, 'up': 1.0, 'of': 1.0, 'bought': 1.0, 'they': 1.0, 'we': 1.0, '2nd': 1.0, 'one': 2.0, 'for': 2.0, 'room': 1.0, 'great': 1.0, 'nicely': 1.0, 'these': 1.0, 'the': 1.0, 'house': 1.0, 'in': 1.0, 'perfect': 1.0}
Word element => {'with': 1.0, 'bigger': 1.0, 'the': 3.0, 'great': 1.0, '32': 2.0, 'buy': 1.0, 'i': 3.0, 'is': 2.0, 'this': 2.0, 'a': 3.0, 'pad': 5.0, 'cushion': 1.0, '35': 2.0, 'baby': 1.0, 'plenty': 1.0, 'highly': 1.0, 'well': 1.0, 'has': 1.0, 'your': 1.0, 'of': 1.0, 'it': 3.0, 'covers': 2.0, 'table': 1.0, 'recommend': 2.0, 'and': 2.0, 'inch': 2.0, 'getting': 1.0, 'cost': 1.0, 'would': 2.0, 'to': 1.0, 'anyone': 1.0, 'in': 2.0, 'needing': 1.0, 'very': 1.0, 'read': 1.0, 'inches': 1.0, 'changing': 1.0, 'that': 1.0, 'larger': 1.0, 'than': 1.0, 'online': 1.0, 'will': 1.0, 'but': 1.0, 'opinion': 1.0, 'for': 2.0, 'fit': 1.0, 'tight': 1.0, 'fits': 1.0, 'my': 1.0}
Word element => {'clean': 1.0, 'a': 1.0, 'have': 1.0, 'always': 1.0, 'least': 1.0, 'at': 1.0, 'buy': 1.0, 'dries': 1.0, 'to': 1.0, 'need': 1.0, 'really': 1.0, 'very': 1.0, 'big': 1.0, 'washes': 1.0, 'too': 2.0, 'and': 2.0, 'probably': 1.0, 'size': 1.0, 'perfect': 1.0, 'holds': 1.0, 'diapers': 1.0, 'squish': 1.0, 'about': 1.0, '5': 1.0, 'one': 1.0, 'love': 1.0, 'll': 1.0, 'product': 1.0, 'it': 1.0, 'this': 1.0, 'not': 2.0, 'small': 1.0, '2': 1.0, 'the': 1.0, 'more': 1.0, 'dirty': 1.0, 's': 1.0, 'you': 3.0, 'easily': 1.0, 'could': 1.0, 'if': 1.0}
Word element => {'from': 1.0, 'anyway': 1.0, 'are': 1.0, 'they': 1.0, 'what': 1.0, 'is': 1.0, 'gettnig': 1.0, 'way': 1.0, 'this': 1.0, 'a': 1.0, 'like': 1.0, 'blanket': 1.0, 'outer': 1.0, 'burp': 1.0, 'blankets': 1.0, 'give': 1.0, 'wrapped': 1.0, 'batch': 1.0, 'gift': 1.0, 'found': 2.0, 'receiving': 2.0, 'through': 1.0, 'everyone': 1.0, 'to': 1.0, 'one': 1.0, 'yet': 1.0, 'gone': 1.0, 'have': 2.0, 'i': 5.0, 'whole': 1.0, 'know': 1.0, 'not': 2.0, 'but': 1.0, 'purchased': 1.0, 'use': 2.0, 'that': 2.0, 'did': 1.0, 'me': 1.0, 'and': 2.0, 'pin': 1.0, 'get': 1.0, 'rags': 1.0, 'when': 1.0, 'pins': 2.0, 'sharpened': 1.0, 'the': 5.0, 'diaper': 3.0}
Word element => {'too': 1.0, 'is': 1.0, 'perfect': 1.0, 'colorful': 1.0, 'these': 1.0, 'it': 1.0, 'wear': 1.0, 'i': 1.0, 'wants': 1.0, 'are': 1.0, 'make': 1.0, 'price': 1.0, 'if': 1.0, 'a': 2.0, 'that': 1.0, 'someone': 1.0, 'pin': 1.0, 'pins': 1.0, 'needs': 1.0, 'right': 1.0, 'product': 1.0, 'to': 1.0}
Word element => {'after': 1.0, 'chips': 1.0, 'men': 1.0, 'up': 1.0, 'ended': 1.0, 'baby': 1.0, 'game': 1.0, 'very': 1.0, 'why': 1.0, 'again': 1.0, 'sure': 1.0, 'asked': 1.0, 'shower': 2.0, 'with': 2.0, 'business': 1.0, 'not': 1.0, 'before': 1.0, 'shipper': 2.0, 'the': 2.0, 'these': 1.0, 'was': 1.0, 'to': 2.0, 's': 1.0, 'reviewed': 1.0, 'i': 2.0, 'a': 3.0, 'at': 1.0, 'fun': 1.0, 'super': 1.0, 'being': 1.0, 'am': 1.0, 'fast': 1.0, 'lol': 1.0, 'excellant': 1.0, 'do': 1.0, 'poker': 1.0, 'pins': 1.0, 'but': 1.0, 'helped': 1.0}
Word element => {'them': 1.0, 'take': 1.0, 'so': 1.0, 'to': 1.0, 'mints': 1.0, 'was': 1.0, 'at': 1.0, 'baby': 1.0, 'a': 1.0, 'for': 1.0, 'the': 2.0, 'these': 2.0, 'her': 1.0, 'used': 1.0, 'decorations': 1.0, 'diapers': 2.0, 'cute': 1.0, 'ordered': 1.0, '34': 2.0, 'napkins': 1.0, 'shower': 1.0, 'with': 2.0, 'like': 1.0, 'and': 2.0, 'mom': 1.0, 'pins': 1.0, 'got': 1.0, 'then': 1.0, 'folded': 1.0, 'filled': 1.0, 'nuts': 1.0}
Word element => {'expected': 1.0, 'out': 1.0, 'still': 1.0, 'so': 2.0, 'being': 1.0, 'by': 1.0, 'pins': 2.0, 'that': 1.0, 'been': 1.0, 'the': 5.0, 'diaper': 1.0, 'my': 2.0, 'went': 2.0, 'anywhere': 1.0, 'and': 1.0, 'get': 1.0, 'was': 1.0, 'granddaughter': 1.0, 'thought': 1.0, 'had': 1.0, 'as': 1.0, 'to': 3.0, 'bad': 1.0, 'have': 1.0, 'wife': 1.0, 'caused': 1.0, 'used': 1.0, 'verdict': 1.0, 'diapers': 2.0, 'back': 1.0, 'but': 2.0, 'work': 2.0, 'pin': 1.0, 'disposable': 1.0, 'it': 1.0, 'old': 1.0, 'cloth': 1.0, 'i': 1.0, 'great': 1.0, 'school': 1.0, 'they': 1.0, 'a': 1.0, 'might': 1.0, 'we': 1.0, 'could': 1.0, 'not': 1.0, 'find': 1.0, 'rash': 2.0, 'amazon': 1.0, 'is': 1.0, 'on': 1.0}
Word element => {'wrong': 1.0, 'that': 1.0, 'everythang': 1.0, 'email': 1.0, 'but': 1.0, 'an': 1.0, 'sent': 1.0, 'got': 1.0, 'use': 1.0, 'stating': 1.0, 'just': 1.0, 'for': 1.0, 'missing': 1.0, 'bed': 1.0, 'has': 1.0, 'piece': 1.0, 'never': 2.0, 'a': 2.0, 'draw': 1.0, 'close': 1.0, 'the': 3.0, 'like': 1.0, 'and': 2.0, 'cant': 1.0, 'with': 1.0, 'it': 5.0, 'i': 3.0, 'response': 1.0, 'was': 2.0, 'suport': 1.0, 'wont': 1.0, 'worked': 1.0, 'matress': 1.0, 'open': 1.0, 'so': 1.0}
Word element => {'situation': 1.0, 'instead': 1.0, 'backwards': 1.0, 'm': 1.0, 'feels': 1.0, 'us': 1.0, 'and': 1.0, 'until': 1.0, 'problem': 1.0, 'will': 1.0, 'kidco': 1.0, 'by': 1.0, 'mesh': 1.0, 'outs': 1.0, 'roll': 1.0, 'centered': 1.0, 'ordered': 1.0, 'toddler': 1.0, 'like': 1.0, 'solve': 1.0, 'sleeping': 2.0, 'he': 2.0, 'because': 1.0, 'crying': 1.0, 'enough': 1.0, 'would': 1.0, 'thought': 1.0, 'his': 4.0, 'low': 1.0, 'help': 1.0, 'rails': 1.0, 'out': 3.0, 'climb': 1.0, 'who': 1.0, 'separate': 1.0, 'prevent': 2.0, 'i': 4.0, 'be': 1.0, 'bough': 1.0, '19': 1.0, 'mattress': 1.0, 'this': 3.0, 'with': 3.0, 'gets': 2.0, 'still': 1.0, 'beds': 1.0, 'son': 2.0, 'from': 1.0, 'good': 1.0, 'bed': 4.0, 'for': 1.0, 'forward': 1.0, 'crib': 1.0, 'going': 1.0, 'a': 3.0, 'could': 1.0, 'should': 1.0, 'recently': 1.0, 'thank': 1.0, 'it': 3.0, 'month': 1.0, 'old': 1.0, 'rail': 2.0, 'its': 2.0, 'to': 2.0, 'apprehensive': 1.0, 'beautiful': 1.0, 'but': 2.0, 'of': 5.0, 'once': 1.0, 'about': 1.0, 'no': 1.0, 'whatsoever': 1.0, 'the': 4.0, 'fall': 1.0, 'comes': 2.0, 'is': 3.0, 'hoping': 1.0, 'in': 3.0, 'falling': 1.0, 'have': 1.0, 'small': 1.0, 'my': 2.0, 'purchase': 1.0, 'goodness': 1.0}
Word element => {'small': 1.0, 'clothes': 1.0, 'toys': 1.0, 'wipes': 1.0, 'diapers': 1.0, 'handy': 1.0, 'in': 1.0, 'storage': 1.0, 'nice': 1.0, 'has': 1.0, 'finish': 1.0, 'for': 1.0, 'bed': 1.0, 'love': 1.0, 'it': 2.0, 'this': 1.0, 'a': 1.0, 'i': 1.0, 'what': 1.0, 'my': 1.0, 'the': 1.0, 'very': 1.0, 'from': 1.0, 'brother': 1.0, 'and': 2.0, 'me': 1.0, 'easy': 1.0, 'space': 1.0, 'told': 1.0, 'extra': 1.0, 'comes': 1.0, 'was': 1.0, 'to': 1.0, 'assemble': 1.0}
Word element => {'out': 1.0, 'falls': 1.0, 'put': 1.0, 'sturdy': 1.0, 'good': 1.0, 'our': 1.0, 'needs': 1.0, 'ground': 1.0, 'and': 1.0, 'to': 2.0, 'easy': 1.0, 'all': 1.0, 'of': 1.0, 'met': 1.0, 'together': 1.0, 'low': 1.0, 'the': 1.0, 'my': 1.0, 'which': 1.0, 'is': 1.0, 'very': 1.0, 'son': 1.0, 'pretty': 1.0, 'if': 1.0, 'when': 1.0}
Word element => {'in': 1.0, 'deal': 1.0, 'no': 1.0, 'fraction': 1.0, 'by': 1.0, 'other': 1.0, 'of': 2.0, 'flaw': 1.0, 'type': 1.0, 'a': 5.0, 'actually': 1.0, 'time': 1.0, 'yrs': 1.0, '1': 2.0, 'my': 1.0, '2': 1.0, 'the': 4.0, 'railings': 1.0, 'long': 1.0, 'cute': 1.0, 'it': 1.0, 'centimeter': 1.0, 'likes': 1.0, 'screw': 2.0, 'than': 1.0, 'wrong': 1.0, 'took': 1.0, 'old': 1.0, 'big': 1.0, 'very': 2.0, 'toddler': 1.0, 'but': 1.0, 'put': 1.0, 'shorter': 1.0, 'base': 1.0, 'together': 1.0, 'to': 1.0, 'was': 4.0, 'bed': 1.0, 'one': 1.0, 'missing': 1.0}
Word element => {'friends': 1.0, 'pleased': 1.0, 'hard': 1.0, 'for': 1.0, 'gift': 1.0, 'happy': 1.0, 'gold': 2.0, 'extra': 1.0, 'with': 2.0, 'satin': 1.0, 'lovely': 1.0, 'in': 2.0, 'packaged': 1.0, 'about': 1.0, 'to': 2.0, 'nothing': 1.0, 'well': 1.0, 'comes': 1.0, 'is': 2.0, 'this': 2.0, 'worry': 1.0, 'opening': 1.0, 'upon': 1.0, 'very': 2.0, 'took': 1.0, 'stated': 1.0, 'i': 6.0, 'if': 1.0, 'own': 1.0, 'although': 1.0, 'long': 1.0, 'bow': 1.0, 'be': 1.0, 'care': 1.0, 'wanted': 2.0, 'pricey': 1.0, 'cheaply': 1.0, 'look': 1.0, 'had': 1.0, 'was': 1.0, 'your': 1.0, 'make': 1.0, 'on': 1.0, 'box': 1.0, 'that': 2.0, 'something': 1.0, 'would': 2.0, 'cracked': 1.0, 'nice': 2.0, 'wrapped': 1.0, 'passed': 1.0, 'my': 1.0, 'daughters': 1.0, 'onto': 1.0, 'm': 2.0, 'green': 1.0, 'and': 4.0, 'too': 1.0, 'daughter': 1.0, 'dresser': 1.0, 'she': 1.0, 'it': 5.0, 'not': 2.0, 'originally': 1.0, 'silver': 2.0, 'bought': 1.0, 'one': 2.0, 'at': 1.0, 'rather': 1.0, 'rhinestones': 1.0, 'of': 1.0, 'carters': 1.0, 'but': 3.0, 'relatives': 1.0, 'didn': 1.0, 'lined': 1.0, 'could': 1.0, 'a': 4.0, 't': 1.0, 'possibly': 1.0, 'the': 3.0, 'last': 1.0, 'her': 1.0, 'stopper': 1.0, 'disappointed': 1.0, 'made': 2.0}
Word element => {'loved': 1.0, 'all': 1.0, 'out': 1.0, 'gifts': 1.0, 'birthday': 1.0, 'i': 1.0, 'sticking': 1.0, 'several': 1.0, 'as': 1.0, 'and': 1.0, 'of': 2.0, 'they': 1.0, 'these': 1.0, 'in': 1.0, 'bought': 1.0, 'colors': 1.0, 'with': 1.0, 'diffrent': 1.0, 'it': 2.0, 'money': 1.0, 'gave': 1.0, 'them': 1.0}
Word element => {'work': 1.0, 'but': 1.0, 'wees': 1.0, 'still': 1.0, 'wee': 1.0, 'little': 1.0, 'on': 1.0, 'keep': 1.0, 'hard': 1.0, 'them': 1.0, 'are': 1.0, 'prevent': 1.0, 'great': 1.0, 'these': 1.0, 'a': 1.0, 'well': 1.0, 'fold': 1.0, 'air': 1.0, 'sometimes': 1.0, 'squirts': 1.0, 'dimensional': 1.0, 'bit': 1.0, 'though': 1.0, 'in': 1.0, 'very': 1.0, 'open': 1.0, 'two': 1.0, 'which': 1.0, 'tend': 1.0, 'to': 2.0, 'half': 1.0, 'they': 3.0, 'makes': 1.0}
Word element => {'of': 1.0, 'my': 1.0, 'saved': 1.0, 'bought': 1.0, 'times': 1.0, 'glad': 1.0, 'm': 1.0, 'i': 2.0, 'overall': 1.0, 'from': 1.0, 'changing': 1.0, 'on': 1.0, 'weeks': 1.0, 'table': 1.0, 'lot': 1.0, 'few': 1.0, 'baby': 1.0, 'little': 1.0, 'a': 4.0, 'place': 1.0, 'once': 1.0, 'for': 1.0, 'in': 1.0, 'mess': 1.0, 'the': 3.0, 'more': 1.0, 'great': 1.0, 'older': 1.0, 'first': 1.0, 'it': 5.0, 'harder': 1.0, 'wet': 1.0, 'keeping': 1.0, 'is': 1.0, 'couple': 1.0, 'get': 1.0, 'and': 1.0, 'works': 1.0, 'squirmy': 1.0}
Word element => {'up': 1.0, 'area': 1.0, 'covers': 1.0, 'as': 1.0, 'whole': 1.0, 'cloth': 1.0, 'wash': 1.0, 'use': 1.0, 'advice': 1.0, 'diapers': 1.0, 'to': 1.0, 'are': 1.0, 'when': 1.0, 'useful': 1.0, 'soaks': 1.0, 'gift': 1.0, 'for': 1.0, 'and': 3.0, 'parts': 1.0, 'not': 1.0, 'a': 2.0, 'change': 1.0, 'is': 2.0, 'shifts': 1.0, 'item': 2.0, 'all': 1.0, 'pee': 1.0, 'the': 3.0, 'falls': 1.0, 'my': 2.0, 'off': 1.0, 'baby': 1.0, 'trying': 1.0, 'you': 1.0, 's': 2.0, 'only': 1.0, 'this': 1.0, 'it': 2.0, 'fun': 1.0, 'at': 1.0, 'inconvenient': 1.0}
Word element => {'forth': 1.0, 'from': 1.0, 'of': 1.0, 'hair': 1.0, 'late': 1.0, 'spring': 1.0, 'now': 1.0, 'was': 1.0, 'but': 1.0, 'head': 2.0, 'strokes': 1.0, 'helped': 1.0, 'back': 3.0, 'still': 2.0, 'be': 1.0, 'bought': 1.0, 'use': 1.0, 'warmer': 1.0, 'love': 2.0, 'for': 2.0, 'my': 1.0, 're': 1.0, 'asleep': 1.0, 'the': 3.0, 'these': 1.0, 'figured': 1.0, 'loss': 1.0, 'they': 3.0, 'little': 2.0, 'falls': 1.0, 'them': 3.0, 'turning': 1.0, 'in': 1.0, 'd': 1.0, 'so': 1.0, 'as': 3.0, 'hand': 1.0, 'sleeping': 1.0, 'wintertime': 1.0, 'i': 3.0, 'sheets': 1.0, 'early': 1.0, 'summer': 1.0, 'also': 1.0, 'reducing': 1.0, 'soft': 1.0, 'and': 2.0, 'she': 3.0, 'with': 2.0, 'her': 4.0, 'sweet': 1.0, 'when': 1.0, 'on': 2.0, 'think': 1.0}
Word element => {'highly': 1.0, 'great': 1.0, 'look': 1.0, 'last': 1.0, 'sanity': 1.0, 'multiple': 1.0, 'huge': 1.0, 'genius': 1.0, 'sheets': 2.0, 'wash': 1.0, 'time': 1.0, 'on': 1.0, 'recommended': 1.0, 'saver': 1.0, 'are': 1.0, 'zipper': 1.0, 'zip': 2.0, 'offthese': 1.0, 'all': 1.0, 'have': 1.0, 'fit': 1.0, 'i': 1.0, 'mink': 1.0, 'regular': 1.0, 'and': 4.0, 'perfectly': 1.0, 'a': 1.0, 'well': 2.0}
Word element => {'will': 1.0, 'alone': 1.0, 'bc': 1.0, 'not': 1.0, 'people': 1.0, 'mostly': 1.0, 'regular': 1.0, 'don': 1.0, 'review': 1.0, 'easier': 1.0, 'look': 1.0, 'savers': 1.0, 'easiest': 1.0, 'crib': 3.0, 'stick': 1.0, 'compared': 1.0, 'seemed': 1.0, 'pads': 1.0, 'our': 1.0, 'to': 11.0, 'was': 1.0, 'top': 3.0, 'the': 9.0, 'do': 1.0, 'much': 1.0, 'only': 1.0, 'it': 2.0, 'is': 2.0, 'sheets': 1.0, 'realize': 1.0, 'that': 2.0, 'thought': 2.0, 'wouldn': 1.0, 'didn': 1.0, 'buy': 2.0, 'so': 1.0, 'sheet': 3.0, 'i': 5.0, 'thinking': 1.0, 'bought': 1.0, 'zipper': 2.0, 'small': 1.0, 'have': 1.0, 'however': 1.0, 'you': 2.0, 'idea': 1.0, 'going': 1.0, 't': 3.0, 'a': 5.0, 'wrote': 1.0, 'good': 2.0, 'make': 1.0, 'think': 3.0, 'pad': 1.0, 'off': 1.0, 'helpful': 1.0, 'set': 3.0, 'bottom': 3.0, 'of': 2.0, 'sure': 1.0, 'get': 1.0, 'getting': 1.0, 'too': 1.0, 'advise': 1.0, 'and': 2.0, 'piece': 3.0, 'work': 1.0, 'but': 2.0, 'no': 1.0, 'whole': 1.0, 'about': 1.0, 'they': 2.0, 'zip': 1.0, 'are': 1.0, 'taking': 1.0, 'expensive': 1.0, 'this': 4.0, 'mattress': 3.0, 'attach': 2.0, 'just': 4.0, 'be': 1.0, 'sounded': 1.0, 'like': 2.0, 'lot': 1.0}
Word element => {'recommended': 1.0, 'bottom': 1.0, 'that': 1.0, 'mink': 1.0, 'her': 1.0, 'set': 2.0, 'regular': 1.0, 'looks': 1.0, 'is': 1.0, 'but': 1.0, 'blue': 1.0, 'seem': 1.0, 'you': 2.0, 'the': 4.0, 'these': 1.0, 'really': 2.0, 'aware': 1.0, 'zip': 1.0, 'are': 1.0, 'tops': 1.0, 'they': 2.0, 'white': 1.0, 'them': 2.0, 're': 2.0, 'my': 1.0, 'nice': 1.0, 'like': 2.0, 'and': 3.0, 'very': 1.0, 'two': 1.0, 'pricy': 1.0, 'i': 2.0, 'sheets': 2.0, 'ordered': 1.0, 'soooo': 1.0, 'cozy': 1.0, 'daughter': 1.0, 'to': 4.0, 'bed': 1.0, 'sheet': 2.0, 'so': 2.0, 'then': 1.0, 'order': 1.0, 'just': 1.0, 'be': 1.0, 'soft': 1.0, 'this': 2.0, 'only': 1.0, 'top': 1.0, 'piece': 2.0, 'also': 1.0, 'have': 2.0}
Word element => {'getting': 1.0, 'is': 2.0, 'it': 4.0, 'quick': 1.0, 'skin': 1.0, 'ones': 1.0, 'these': 1.0, 'the': 1.0, 'of': 1.0, 'set': 1.0, 'one': 2.0, 'for': 1.0, 'i': 6.0, 'thought': 1.0, 'that': 2.0, 'get': 1.0, 'soon': 1.0, 'and': 2.0, 'have': 1.0, 'zip': 1.0, 'mink': 1.0, 'so': 1.0, 'd': 1.0, 'sheets': 1.0, 'a': 1.0, 's': 1.0, 'like': 2.0, 'as': 1.0, 'soft': 1.0, 'cozy': 1.0, 'knowing': 1.0, 'gentle': 1.0, 'another': 1.0, 'my': 1.0, 'night': 1.0, 'baby': 1.0, 'also': 1.0, 'regular': 1.0, 'in': 1.0, 'on': 1.0, 'think': 1.0, 'makes': 1.0, 'well': 1.0, 'has': 1.0, 'now': 1.0, 'cold': 1.0, 'really': 1.0, 'weather': 1.0, 'll': 1.0, 'be': 1.0}
Word element => {'in': 1.0, 'my': 1.0, 'many': 1.0, 'granddaughter': 1.0, 'look': 1.0, 'to': 2.0, 'hold': 1.0, 'and': 1.0, 'good': 1.0, 'uses': 1.0, 'on': 1.0, 'have': 1.0, 'so': 1.0, 'gift': 1.0, 'colors': 1.0, 'i': 1.0, 'tried': 1.0, 'yet': 1.0, 'the': 3.0, 'are': 1.0, 'a': 1.0, 'be': 1.0, 'seeing': 1.0, 'know': 1.0, 'not': 1.0, 'just': 1.0, 'forward': 1.0, 'will': 2.0, 'quality': 1.0, 'as': 1.0, 'very': 1.0, 'pictured': 1.0, 'this': 3.0, 'christmas': 1.0, 'dress': 3.0, 'up': 1.0, 'of': 1.0, 'appears': 1.0}
Word element => {'tried': 1.0, 've': 1.0, 'handy': 1.0, 'come': 1.0, 'ice': 1.0, 'outside': 1.0, 'you': 1.0, 'can': 1.0, 'southeast': 1.0, 'really': 1.0, 'weather': 1.0, 'has': 1.0, 'hot': 2.0, 'this': 2.0, 'with': 3.0, 'girl': 1.0, 'feels': 1.0, 'she': 1.0, 'it': 5.0, 'big': 1.0, 'cracked': 1.0, 'only': 1.0, 'drink': 1.0, 'tell': 1.0, 'soda': 1.0, 'will': 2.0, 'the': 6.0, 'different': 1.0, 'little': 1.0, 'we': 1.0, 't': 1.0, 'a': 2.0, 'standing': 1.0, '12': 1.0, 'everywhere': 1.0, 'cup': 2.0, 'or': 1.0, 'off': 1.0, 'loves': 1.0, 'i': 3.0, 'got': 1.0, 'picture': 2.0, 'never': 1.0, 'mine': 1.0, 'for': 1.0, 'straw': 2.0, 'carbonated': 1.0, 'at': 1.0, 'texas': 1.0, 'such': 1.0, 'some': 1.0, 'take': 2.0, 'don': 1.0, 'wash': 1.0, 'anything': 1.0, 'around': 1.0, 'is': 2.0, 'overflow': 1.0, 'put': 1.0, 'your': 1.0, 'easy': 1.0, 'and': 1.0, 'walmart': 1.0, 'getting': 1.0, 'in': 5.0, 'itself': 1.0, 'dishwasher': 1.0, 'of': 3.0, 'so': 1.0, 'fridge': 1.0, 'like': 1.0, 'hand': 1.0, 'my': 1.0, 'line': 1.0, 'hers': 1.0, 'daughter': 1.0, 'out': 1.0}
Word element => {'best': 1.0, 'one': 1.0, 'wash': 1.0, 'off': 1.0, 'have': 1.0, 'just': 2.0, 'gifts': 1.0, 'are': 1.0, 'convienient': 1.0, 'sanity': 1.0, 'and': 2.0, 'back': 1.0, 'these': 1.0, 'set': 1.0, '2': 1.0, 'the': 4.0, 'now': 1.0, 'had': 2.0, 'as': 1.0, 'to': 5.0, 'was': 1.0, 'in': 1.0, 'said': 1.0, 'i': 4.0, 'changings': 1.0, 'old': 1.0, 'given': 1.0, 'opinion': 1.0, 'for': 5.0, 'bed': 2.0, 'pull': 1.0, 'daughter': 1.0, 'gave': 1.0, 'mom': 1.0, 'year': 1.0, 'quickzip': 1.0, 'those': 1.0, 'me': 2.0, 'get': 1.0, 'of': 2.0, 'shower': 1.0, 'quick': 1.0, 'them': 4.0, 'night': 2.0, 'baby': 2.0, 'save': 1.0, 'my': 4.0, 'another': 1.0, 'who': 1.0, 'at': 1.0, 'never': 1.0, 'use': 2.0, 'crib': 1.0, 'you': 1.0, 'when': 1.0, 'again': 1.0, 'she': 1.0, 'solution': 1.0, 'right': 1.0, 'middle': 1.0, 'still': 1.0, 'your': 1.0, 'on': 1.0, 'her': 1.0, 'sheets': 2.0, 'toddler': 1.0, 'a': 2.0, 'accidents': 1.0, 'boy': 1.0, 'sheet': 1.0, 'time': 1.0, 'so': 1.0, 'would': 1.0, 'new': 1.0}
Word element => {'a': 2.0, 'in': 1.0, 'i': 1.0, 'have': 1.0, 'with': 1.0, 'purchased': 1.0, 'several': 1.0, 'bed': 1.0, 'life': 1.0, 'of': 2.0, 'headache': 1.0, 'little': 1.0, 'baby': 1.0, 'will': 1.0, 'hope': 1.0, 'less': 1.0, 'make': 1.0, 'the': 2.0, 'these': 1.0, 'they': 1.0}
Word element => {'decor': 1.0, 'with': 1.0, 'and': 1.0, 'much': 1.0, 'these': 1.0, 'makes': 1.0, 'the': 2.0, 'are': 1.0, 'colors': 1.0, 'easier': 1.0, 'amazing': 1.0, 'for': 2.0, 'match': 1.0, 'cribs': 1.0, 'changing': 1.0, 'it': 1.0, 'out': 1.0, 'so': 1.0, 'sheets': 2.0, 'washing': 1.0}
Word element => {'toddlerhood': 1.0, 'into': 1.0, 'well': 1.0, 'use': 1.0, 'to': 2.0, 'plan': 1.0, 'these': 2.0, 'we': 1.0, 'middle': 1.0, 'recommend': 1.0, 'bed': 1.0, 'of': 1.0, 'changes': 1.0, 'make': 1.0, 'the': 1.0, 'breeze': 1.0, 'a': 1.0, 'hesitate': 1.0, 'not': 1.0, 'would': 1.0, 'night': 1.0}
Word element => {'nice': 1.0, 'like': 1.0, 'and': 1.0, 'looks': 1.0, 'change': 1.0, 'again': 1.0, 'our': 2.0, 'used': 1.0, 'the': 2.0, 'these': 1.0, 'for': 2.0, 'daughter': 1.0, 'crib': 1.0, 'we': 1.0, 'son': 1.0, 'pink': 1.0, 'version': 1.0, 'so': 1.0, 's': 1.0, 'sheets': 1.0, 'easy': 1.0, 'but': 1.0, 'now': 1.0, 'to': 1.0, 'still': 1.0}
Word element => {'friends': 1.0, 'in': 4.0, 'regular': 1.0, 'pees': 1.0, 'a': 3.0, 's': 1.0, 'so': 3.0, 'sheet': 4.0, 'chest': 1.0, 'every': 2.0, 'wash': 1.0, 'with': 2.0, 'he': 2.0, 'for': 1.0, 'expensive': 1.0, 'finally': 1.0, 'all': 1.0, 'other': 1.0, 'an': 1.0, 'up': 2.0, 'antibiotics': 1.0, 'decided': 1.0, 'would': 1.0, 'to': 3.0, 'was': 4.0, 'wish': 1.0, 'pain': 1.0, 'mattress': 6.0, 'i': 9.0, 'morning': 2.0, 'wonderful': 1.0, 'have': 1.0, 'are': 1.0, 'zip': 3.0, 'diarrhea': 1.0, 'they': 1.0, 'my': 2.0, 'another': 1.0, 'infection': 1.0, 'sheets': 4.0, 'place': 1.0, 'these': 4.0, 'but': 1.0, 'while': 1.0, 'from': 2.0, 'what': 1.0, 'recommend': 1.0, 'were': 1.0, 'throw': 1.0, 'too': 1.0, 'and': 5.0, 'ear': 1.0, 'waking': 1.0, 'son': 1.0, 'on': 4.0, 'prevents': 1.0, 'buy': 1.0, 'bought': 1.0, 'waterproof': 3.0, 'off': 3.0, 'pad': 5.0, 'which': 1.0, 'makes': 1.0, 'brand': 1.0, 'life': 1.0, 'placed': 1.0, 'just': 3.0, 'by': 1.0, 'butt': 1.0, 'changing': 1.0, 'put': 2.0, 'much': 1.0, 'easier': 1.0, 'crib': 2.0, 'then': 2.0, 'through': 1.0, 'base': 1.0, 'thought': 1.0, 'it': 2.0, 'remove': 1.0, 'carter': 1.0, 'sits': 1.0, 'top': 1.0, 'the': 13.0, 'of': 3.0, 'followed': 1.0, 'whenever': 1.0, 'diaper': 1.0, 'along': 1.0, 'them': 1.0, 'stays': 1.0, 'adds': 1.0, 'that': 3.0, 'layer': 1.0, 'start': 1.0, 'protection': 1.0, 'slipping': 1.0, 'his': 4.0, 'around': 1.0}
Word element => {'more': 1.0, 'know': 1.0, 'great': 1.0, 'these': 1.0, 'binkys': 1.0, 'because': 2.0, 'chew': 1.0, 'mouth': 1.0, 'his': 1.0, 'long': 1.0, 'what': 1.0, 'and': 2.0, 'do': 1.0, 're': 1.0, 'can': 1.0, 'autism': 1.0, 'lot': 1.0, 'in': 1.0, 'son': 1.0, 'day': 1.0, 'my': 1.0, 'requires': 1.0, 'them': 2.0, 'bedtime': 1.0, 'run': 1.0, 'out': 1.0, 'pressure': 1.0, 'made': 1.0, 'he': 1.0, 'has': 1.0, 'of': 1.0, 'are': 1.0, 'sensory': 1.0, 'for': 2.0, 'input': 1.0, 'they': 2.0, 'suck': 1.0, 'll': 1.0, 'i': 2.0, 'don': 2.0, 'all': 1.0, 'any': 1.0, 't': 2.0, 'a': 1.0, 'we': 1.0, 'when': 1.0, 'on': 2.0, 'think': 1.0}
Word element => {'more': 1.0, 'getting': 1.0, '1': 1.0, 'extra': 1.0, 'however': 1.0, 'might': 1.0, 'crankily': 1.0, 'managed': 1.0, 'had': 1.0, 'eyes': 1.0, 'audible': 1.0, 'could': 1.0, 'it': 2.0, 'him': 2.0, 'let': 1.0, 'sturdy': 1.0, 'safe': 1.0, 'better': 1.0, 'sometimes': 1.0, 'gone': 1.0, 'wants': 1.0, 'even': 3.0, 'lights': 1.0, 'green': 1.0, 'monkeys': 1.0, 'pictures': 1.0, 'likes': 1.0, 'have': 3.0, 'did': 1.0, 'couple': 2.0, 'and': 8.0, 'out': 1.0, 'asking': 1.0, 'description': 1.0, 'everything': 1.0, 'than': 1.0, 'apart': 1.0, 'come': 1.0, 're': 1.0, 'went': 1.0, 'a': 2.0, 's': 4.0, '15': 2.0, 'mornings': 2.0, '5': 2.0, 'going': 1.0, 'alarm': 3.0, '45am': 1.0, '4': 1.0, 'while': 1.0, 'part': 1.0, 'report': 1.0, 'when': 5.0, 'clock': 4.0, 'us': 1.0, 'morning': 3.0, 'worth': 1.0, 'now': 2.0, 'pretty': 1.0, 'to': 10.0, 'our': 3.0, 'all': 1.0, 'opens': 1.0, 'was': 2.0, '6': 1.0, 'drawback': 1.0, '05': 1.0, 'set': 1.0, 'up': 2.0, 'self': 1.0, 'son': 3.0, 'until': 1.0, 'turns': 1.0, 'silenced': 1.0, 'excited': 1.0, 'nights': 2.0, '2': 1.0, 'enough': 1.0, 'removable': 1.0, 'm': 1.0, 'in': 4.0, 'waking': 1.0, 'itself': 1.0, 'every': 1.0, 'buttons': 1.0, 'turn': 1.0, 'for': 2.0, '3': 1.0, 'on': 6.0, 'of': 6.0, 'the': 20.0, 'this': 2.0, 'first': 1.0, 'ritual': 1.0, 'bought': 1.0, 'called': 1.0, 'reviewers': 1.0, 'push': 1.0, 'at': 2.0, 'is': 9.0, 'momo': 7.0, 'he': 7.0, 'yet': 1.0, 'adapted': 1.0, 'very': 1.0, 'only': 1.0, 'quickly': 1.0, 'happy': 2.0, 'am': 2.0, 'bedtime': 1.0, 'sensitive': 1.0, 'can': 1.0, 'so': 3.0, 'announce': 1.0, 'i': 5.0, 'putting': 1.0, 'well': 1.0, 'made': 1.0, 'pull': 1.0, 'by': 1.0, '45': 1.0, 'just': 1.0, 'defense': 1.0, 'light': 3.0, 'some': 1.0, 'piece': 1.0, 'with': 3.0, 'sleep': 4.0, 'most': 1.0, 'back': 2.0, 'top': 1.0, 'concerned': 1.0, 'that': 3.0, 'we': 7.0, 'then': 1.0, 'take': 1.0, 'content': 1.0, 'awake': 3.0, 'button': 1.0}
Word element => {'too': 1.0, 'waking': 1.0, 'stubborn': 1.0, 'how': 1.0, 'child': 1.0, 'your': 1.0, 'age': 1.0, 'depends': 1.0, 'works': 1.0, 'if': 1.0, 'learn': 1.0, 'mom': 2.0, 'any': 1.0, 'always': 2.0, 'guessing': 2.0, 'clock': 5.0, 'not': 3.0, 'box': 1.0, 'hadn': 1.0, 'based': 1.0, 'in': 7.0, 'march': 2.0, 'out': 1.0, 'went': 2.0, 'would': 1.0, 'things': 1.0, 'you': 4.0, 'every': 2.0, 'stay': 3.0, 'very': 1.0, 'jungle': 1.0, 'dad': 1.0, 'easy': 1.0, 'took': 2.0, 'me': 1.0, 'say': 1.0, 'is': 7.0, 'at': 3.0, 'only': 1.0, 'paid': 1.0, 'amazing': 1.0, 'first': 1.0, 'boys': 3.0, 'working': 1.0, 'that': 6.0, 'because': 3.0, 'sleep': 3.0, 'woken': 1.0, 'back': 1.0, 'so': 4.0, 'did': 2.0, 'time': 4.0, 'they': 7.0, 'toll': 1.0, 'stuck': 1.0, 'be': 1.0, 'it': 21.0, 'he': 1.0, 'lights': 1.0, 'him': 1.0, '24': 1.0, 'was': 2.0, 'reasons': 1.0, 'had': 2.0, 'us': 3.0, 'also': 1.0, 'turned': 1.0, 'week': 3.0, 'last': 2.0, 'beginning': 2.0, 'bedtime': 1.0, 'am': 2.0, 'without': 1.0, 'maybe': 1.0, 'tend': 1.0, 'medley': 1.0, 'we': 11.0, 'year': 1.0, 'reviewer': 1.0, 'realized': 1.0, 'experience': 1.0, 'the': 34.0, 'even': 1.0, 'of': 8.0, 'attention': 1.0, 'but': 3.0, 'yet': 1.0, 'anytime': 1.0, 'monkey': 11.0, 'there': 3.0, 'hang': 2.0, '2': 2.0, 'early': 1.0, 'day': 1.0, 'since': 2.0, 'tell': 1.0, '1': 1.0, 'want': 1.0, 'wakes': 1.0, 'same': 1.0, 'tears': 1.0, 'hear': 1.0, 'up': 13.0, 'takes': 1.0, 'long': 1.0, 'on': 6.0, 'have': 2.0, 'before': 4.0, 'my': 3.0, 'are': 2.0, 'hour': 1.0, 'room': 2.0, 'once': 1.0, 'slept': 1.0, 'schedule': 1.0, 'more': 2.0, 'wanted': 1.0, 'wait': 1.0, 'waited': 1.0, 'until': 3.0, 'yes': 1.0, 'off': 1.0, 'one': 2.0, 'got': 3.0, 'seconds': 1.0, 'for': 6.0, 'and': 13.0, 'just': 1.0, 'finish': 1.0, 'twins': 1.0, 'partial': 1.0, 'bed': 3.0, 'when': 4.0, 'mind': 1.0, 'a': 5.0, 'another': 1.0, 'open': 2.0, 'were': 2.0, 'night': 6.0, 'guys': 1.0, 'about': 3.0, 'should': 1.0, 'setting': 1.0, 'm': 2.0, 's': 2.0, 'doesn': 1.0, 'woke': 3.0, 'directions': 2.0, 'way': 1.0, 'all': 1.0, 'said': 2.0, 'came': 2.0, 'part': 2.0, 'his': 1.0, 'user': 1.0, 'our': 5.0, 'error': 1.0, 'skim': 1.0, 'both': 1.0, 'needed': 1.0, 'fought': 1.0, 'few': 3.0, 'consistent': 1.0, 'times': 1.0, 'with': 5.0, 'using': 1.0, 'light': 2.0, 'to': 21.0, 'right': 1.0, 'clear': 1.0, '18': 1.0, 'over': 1.0, 'wake': 3.0, 'than': 1.0, '6': 2.0, '05': 3.0, 'set': 1.0, 'i': 7.0, 'finally': 2.0, 'order': 1.0, 'get': 4.0, 'batteries': 3.0, '7pm': 1.0, 'away': 1.0, 'from': 2.0, 't': 4.0, 'fun': 1.0, 'lit': 1.0, 'take': 1.0, '15': 1.0, 'into': 1.0, 'through': 2.0, 'go': 3.0, 'pressing': 2.0, 'mainly': 1.0, 'wrong': 1.0, 'wasn': 1.0, 'like': 3.0, 'sounds': 1.0, 'started': 1.0, 'didn': 1.0, 'sound': 1.0, 'button': 2.0, 'goes': 2.0, '1st': 1.0, 'adjustable': 1.0, 'this': 1.0, 'eyes': 2.0, 'its': 1.0, 'whole': 1.0, 'rounds': 1.0, 'put': 1.0, 'tough': 1.0, '2010': 1.0}
Word element => {'instead': 1.0, 'indicator': 1.0, 'an': 1.0, 'as': 1.0, 'physically': 1.0, 'light': 1.0, 'clocks': 1.0, 'researching': 1.0, 'online': 1.0, 'i': 1.0, 'quite': 1.0, 'stays': 1.0, 'until': 1.0, 'off': 1.0, 'use': 1.0, 'wakes': 2.0, 'gotten': 1.0, 'the': 5.0, 'my': 3.0, 'unfortunately': 1.0, 'that': 3.0, 'been': 1.0, 'opens': 1.0, 've': 1.0, 'in': 1.0, 'he': 1.0, 'only': 1.0, 'it': 1.0, 'eyes': 3.0, 'this': 2.0, 'has': 1.0, 'recently': 1.0, 'some': 1.0, 'message': 1.0, 'on': 1.0, 'had': 1.0, 'mo': 6.0, 'purpose': 2.0, 'now': 1.0, 'for': 1.0, 'bed': 1.0, 'chance': 1.0, 'sleeping': 1.0, 'we': 1.0, 's': 1.0, 'his': 2.0, 'son': 3.0, 'still': 1.0, 'am': 1.0, 'when': 1.0, 'up': 2.0, 'of': 3.0, 'is': 1.0, 'completely': 1.0, 'noise': 1.0, 'opening': 2.0, 'defeats': 1.0, 'time': 1.0, 'so': 1.0}
Word element => {'talk': 1.0, 'different': 1.0, 'with': 1.0, 'come': 1.0, 'needs': 1.0, 'said': 1.0, 'give': 1.0, 't': 1.0, 'hasn': 1.0, 'tonight': 1.0, 'room': 1.0, 'concept': 1.0, 'again': 1.0, 'noise': 1.0, 'whirring': 1.0, 'slight': 1.0, 'a': 2.0, 'strategy': 1.0, 'halfway': 1.0, 'stuck': 1.0, 'eyes': 1.0, 'closed': 1.0, 'time': 1.0, '15': 1.0, 'wondering': 2.0, 'wanted': 1.0, 'until': 1.0, 'great': 1.0, 'could': 1.0, 'might': 1.0, 'maybe': 1.0, 's': 2.0, 'read': 1.0, 'very': 1.0, 'happened': 1.0, 'least': 1.0, 'she': 6.0, 'and': 5.0, 'get': 2.0, 'sure': 1.0, 'am': 2.0, 'has': 1.0, 'clock': 1.0, 'times': 2.0, 'this': 2.0, 'commenting': 1.0, '5': 3.0, 'around': 1.0, 'at': 1.0, 'is': 2.0, 'ready': 1.0, 'but': 4.0, 'bed': 1.0, 'for': 3.0, 'year': 2.0, 'product': 1.0, 'in': 3.0, 'to': 5.0, 'hoping': 1.0, 'after': 1.0, 'was': 5.0, '3': 2.0, 'make': 2.0, 'grandson': 1.0, 'me': 1.0, 'my': 3.0, 'bought': 1.0, 'occurred': 1.0, 'night': 4.0, 'fact': 1.0, 'old': 1.0, '6': 1.0, 'they': 1.0, 'sturdy': 1.0, 'sleeping': 2.0, 'like': 1.0, '30': 1.0, 'comment': 1.0, 'not': 2.0, 'waking': 2.0, 'got': 1.0, 'daughter': 2.0, 'up': 10.0, 'early': 1.0, 'morning': 1.0, 'him': 2.0, 'it': 5.0, 'thought': 1.0, 'just': 1.0, 'says': 1.0, 'thing': 2.0, 'i': 4.0, 'well': 3.0, 'loves': 2.0, 'that': 2.0, 'put': 1.0, 'much': 2.0, 'works': 1.0, 'first': 2.0, 'woke': 1.0, 'stay': 1.0, 'if': 1.0, 'same': 1.0, 'momo': 3.0, 'parents': 1.0, 'awake': 1.0, 'reviews': 1.0, 'then': 1.0, 'too': 2.0, '2nd': 1.0, 'sounded': 1.0, 'even': 1.0, 'olds': 1.0, 'mommy': 1.0, '8': 1.0, 'wake': 1.0, 'the': 13.0, 'of': 1.0, 'during': 1.0, 'never': 1.0, 'so': 2.0, 'all': 1.0, 'other': 1.0, 'he': 4.0, 'yet': 1.0, 'inquisitive': 1.0, 'made': 2.0}
Word element => {'recommend': 1.0, 'buy': 1.0, 'hesitate': 1.0, 'does': 1.0, 'as': 1.0, 'likes': 1.0, 'earlier': 1.0, 'wakes': 1.0, 'yet': 1.0, 'use': 1.0, 'yes': 1.0, 'part': 2.0, 'sleep': 1.0, 'complete': 1.0, 'used': 1.0, 'so': 3.0, 'sensitive': 1.0, '100': 1.0, 'some': 1.0, 'wouldn': 1.0, 'mouse': 1.0, 'were': 1.0, 'those': 1.0, 'negative': 1.0, 'started': 1.0, 'will': 2.0, 've': 1.0, 'several': 2.0, 'dead': 1.0, 'gets': 1.0, 'wanted': 1.0, 'start': 1.0, 'most': 1.0, 'always': 1.0, 'clock': 9.0, 'at': 2.0, 'who': 1.0, 'first': 1.0, '12': 1.0, 'back': 5.0, 'evenings': 1.0, 'child': 1.0, 'year': 2.0, 'whom': 1.0, 'sense': 1.0, 'bad': 2.0, 'we': 6.0, 'never': 1.0, 'take': 1.0, 'reviews': 2.0, 'have': 6.0, 'remember': 1.0, 'for': 6.0, 'sounds': 1.0, 'like': 2.0, 'after': 1.0, 'annoying': 1.0, 'it': 23.0, 'he': 6.0, 'him': 1.0, 'mickey': 1.0, 'using': 2.0, 'with': 5.0, 'volume': 1.0, 're': 1.0, 'needed': 1.0, 'son': 4.0, 'still': 2.0, 'every': 2.0, 'hesitated': 1.0, 'friend': 1.0, 'amazon': 1.0, 'excited': 1.0, 'people': 2.0, 'little': 1.0, 'twist': 2.0, 'read': 1.0, 'the': 28.0, 'here': 2.0, 'i': 8.0, 'problems': 2.0, 'that': 5.0, 'fact': 1.0, '5': 1.0, 'one': 2.0, 'bought': 3.0, 'sure': 1.0, 'instructions': 2.0, 'noise': 2.0, 'before': 1.0, 'well': 1.0, 'exclaim': 1.0, 'stuff': 1.0, 'very': 6.0, 'why': 2.0, 'on': 6.0, 'come': 1.0, 'subtract': 1.0, 'realize': 1.0, 'quiet': 2.0, 'loudly': 1.0, 'had': 4.0, 'a': 6.0, 'clocks': 2.0, 'made': 1.0, 'our': 2.0, 'how': 2.0, 'all': 3.0, 'to': 17.0, 'mentioned': 1.0, '2': 3.0, 'but': 3.0, 'past': 1.0, 'address': 1.0, 'them': 3.0, 'everything': 1.0, 'kids': 3.0, 'else': 1.0, 'honestly': 1.0, 'when': 4.0, 'times': 1.0, 'you': 10.0, 'guys': 2.0, 'ticks': 1.0, 'night': 3.0, 'push': 2.0, 'set': 5.0, 'do': 1.0, 'put': 2.0, 'of': 3.0, 'old': 2.0, 'even': 1.0, 'there': 1.0, 'give': 1.0, 'monkey': 5.0, 't': 5.0, 'really': 1.0, 'press': 2.0, 'extremely': 2.0, 'easy': 4.0, 'kept': 2.0, 'week': 1.0, 'realized': 1.0, 'would': 2.0, 'reset': 1.0, 'this': 7.0, 'eyes': 1.0, 'says': 1.0, 'up': 5.0, 'basically': 1.0, 'll': 3.0, 'also': 1.0, 'and': 10.0, 'complaining': 1.0, 'button': 1.0, 'awake': 1.0, 'sleeping': 1.0, 'wake': 1.0, 'than': 2.0, '0': 1.0, 'again': 2.0, 'previously': 1.0, 'get': 1.0, 'ticking': 1.0, 'learning': 1.0, 'alarm': 2.0, 'trouble': 1.0, 'close': 1.0, 'telling': 1.0, '24': 2.0, 'are': 2.0, 'room': 2.0, 'my': 3.0, 'hour': 2.0, 'world': 1.0, 'or': 2.0, 'figure': 1.0, 'out': 1.0, 'works': 2.0, '1': 2.0, 'tell': 1.0, 'hard': 2.0, 'work': 1.0, 'add': 1.0, 'olds': 1.0, 'off': 4.0, 'anyways': 1.0, 'in': 4.0, 'non': 1.0, 'into': 1.0, 'they': 3.0, 'issue': 1.0, 'if': 4.0, 'great': 1.0, 'tool': 1.0, '4': 1.0, 's': 14.0, 'm': 2.0, 'doesn': 1.0, 'must': 1.0, 'can': 3.0, 'is': 4.0, 'turn': 1.0, 'fault': 1.0, 'not': 4.0, 'different': 1.0, 'time': 5.0, 'did': 1.0, '3': 1.0, 'walk': 1.0, 'haven': 1.0, 'buttons': 3.0, 'his': 1.0, 'putting': 1.0, 'morning': 1.0, 'say': 1.0}
Word element => {'during': 1.0, 'packaging': 1.0, 'poor': 1.0, 'perhaps': 1.0, 'use': 1.0, 'easy': 1.0, 'the': 4.0, 'and': 2.0, 'up': 1.0, 'cute': 1.0, 'scratched': 1.0, 'shipping': 1.0, 'son': 2.0, 'is': 3.0, 'clock': 2.0, 'only': 1.0, 'excited': 1.0, 'it': 1.0, 'to': 3.0, 'was': 1.0, 'so': 1.0, 'wake': 1.0, 'in': 1.0, 'momo': 1.0, 'morning': 1.0, 'my': 1.0, 'downside': 1.0, 'scuffed': 1.0}
Word element => {'you': 1.0, 'trying': 1.0, 'wake': 1.0, 'out': 1.0, 'comes': 1.0, 'open': 2.0, 'room': 1.0, 'in': 2.0, 'suggest': 1.0, 'either': 1.0, 'm': 2.0, 'i': 1.0, '4': 1.0, 'wakes': 1.0, 'well': 1.0, 'll': 1.0, 'enough': 1.0, 'close': 1.0, 'model': 1.0, 'get': 1.0, 'different': 1.0, 'her': 2.0, 'if': 1.0, 'daughter': 1.0, 'dark': 1.0, 'button': 3.0, 'she': 2.0, 'it': 1.0, 'loud': 1.0, 'he': 1.0, 'do': 1.0, 'only': 1.0, 'now': 1.0, 'until': 1.0, 'stays': 2.0, 'let': 1.0, 'or': 2.0, 'along': 1.0, '30': 1.0, 'eyes': 4.0, 'makes': 1.0, 'as': 2.0, 'to': 3.0, 'our': 1.0, 'that': 3.0, 'pushing': 1.0, 'late': 1.0, 'my': 1.0, 'came': 1.0, 'just': 1.0, 'light': 2.0, 'ask': 1.0, 'us': 1.0, 'winter': 1.0, 'turns': 1.0, 'the': 5.0, 'ticking': 1.0, 'up': 2.0, 'sound': 1.0, 'monkey': 2.0, 'can': 1.0, 'see': 2.0, 'order': 1.0, 'loved': 1.0, 'whether': 3.0, 'a': 4.0, 'go': 1.0, 'we': 2.0, 't': 1.0, 's': 1.0, 'opens': 1.0, 'push': 2.0, 'are': 3.0, 'opened': 1.0, 'his': 4.0, 'little': 1.0, 'ahead': 1.0, 'night': 1.0, 'on': 2.0, 'for': 1.0, 'despite': 1.0, 'about': 1.0, 'result': 1.0, 'seconds': 1.0, 'after': 1.0, 'too': 1.0, 'closed': 1.0, 'and': 5.0}
Word element => {'too': 1.0, 'lazy': 1.0, 'about': 1.0, 'functionality': 1.0, 'on': 1.0, 'turning': 1.0, 'a': 4.0, 't': 1.0, 's': 1.0, 'go': 1.0, 'night': 2.0, 'started': 1.0, 'posts': 1.0, 'drawbacks': 1.0, 'mistake': 1.0, 'have': 1.0, 'mentioned': 1.0, 'the': 12.0, 'of': 3.0, 'once': 1.0, 'up': 3.0, 'sound': 1.0, 'sleeping': 1.0, 'understood': 1.0, 'all': 2.0, 'other': 1.0, 'everything': 1.0, 'setting': 1.0, 'woke': 1.0, 'and': 4.0, '24hr': 1.0, 'do': 1.0, 'only': 2.0, 'monkey': 4.0, 'but': 2.0, 'he': 2.0, 'it': 5.0, 'she': 4.0, 'this': 1.0, 'eyes': 2.0, 'still': 1.0, 'stay': 1.0, 'every': 1.0, 'really': 1.0, 'loved': 1.0, 'did': 1.0, 'stopped': 1.0, 'should': 1.0, 'by': 1.0, 'light': 2.0, 'daughter': 1.0, 'in': 2.0, 'bed': 1.0, 'loves': 1.0, 'team': 1.0, 'how': 1.0, 'our': 1.0, 'to': 2.0, 'that': 3.0, 'while': 1.0, 'wanted': 1.0, 'was': 4.0, 'crazy': 1.0, 'i': 3.0, 'no': 1.0, 'press': 1.0, 'let': 1.0, 'or': 1.0, 'her': 2.0, 'right': 2.0, 'time': 3.0, 'at': 1.0, 'is': 1.0, 'ok': 1.0, 'woken': 1.0, 'none': 1.0, 'never': 1.0, 'with': 1.0, 'ticking': 1.0, 'bother': 1.0, 'opening': 2.0, 'me': 3.0, 'may': 1.0, 'twice': 1.0, 'after': 1.0, 'talk': 1.0, 'three': 1.0, 'get': 1.0, 'months': 1.0, 'told': 1.0, 'sleeps': 1.0, 'button': 1.0, 'despite': 1.0, 'didn': 1.0, 'minor': 1.0, 'realized': 1.0, 'when': 2.0, 'what': 1.0, 'had': 1.0, 'made': 1.0, 'effort': 1.0, 'purchasing': 1.0, 'bothered': 1.0, 'cute': 1.0, 'bad': 2.0, 'we': 2.0, 'fine': 1.0, 'reviews': 1.0, 'now': 1.0, 'clock': 2.0, 'has': 1.0}
Word element => {'morning': 1.0, 'every': 1.0, 'almost': 1.0, 'hear': 1.0, 'rolls': 1.0, '6': 1.0, 'now': 2.0, 'out': 2.0, 'figured': 1.0, 'daughter': 1.0, 'was': 1.0, 'with': 1.0, 'daily': 1.0, 'parent': 1.0, 'it': 3.0, 'only': 1.0, 'saw': 1.0, 'facebook': 1.0, 'thought': 1.0, '30': 1.0, 'this': 1.0, 'lost': 1.0, '00am': 2.0, 'room': 1.0, 'before': 1.0, '5': 1.0, '7': 1.0, 'our': 2.0, 'to': 1.0, 'get': 1.0, 'and': 4.0, 'awake': 1.0, 'getting': 1.0, 'monkey': 2.0, 'anytime': 1.0, 'go': 1.0, 'we': 4.0, 'a': 4.0, 'after': 1.0, 'would': 2.0, 'thank': 1.0, 'minds': 1.0, 'who': 1.0, 'sound': 1.0, 'nearly': 1.0, 'child': 1.0, 'up': 2.0, 'of': 2.0, 'from': 2.0, 'link': 1.0, 'day': 1.0, 'dealing': 1.0, 'clock': 1.0, 'in': 1.0, 'on': 1.0, 'around': 1.0, 'asked': 1.0, 'another': 1.0, 'give': 1.0, 'took': 1.0, 'one': 1.0, 'her': 2.0, 'early': 1.0, 'being': 1.0, 'if': 1.0, 'the': 2.0}
Word element => {'anyone': 1.0, 'recommend': 1.0, 'would': 1.0, 'i': 2.0, 'and': 1.0, 'this': 1.0, 'item': 2.0, 'bought': 1.0, 'colors': 1.0, 'are': 1.0, 'the': 1.0, 'perfect': 1.0, 'great': 2.0, 'it': 2.0, 'works': 1.0, 'for': 3.0, 'purpose': 1.0}
Word element => {'new': 1.0, 'the': 1.0, 'with': 1.0, 'out': 1.0, 'help': 1.0, 'chance': 1.0, 'a': 1.0, 'to': 1.0, 'old': 1.0, 'we': 1.0, 'love': 1.0, 'helpful': 1.0, 'it': 2.0, 'baby': 1.0, 'its': 1.0, 'cute': 1.0, 'very': 1.0, 'and': 2.0, 'our': 1.0, 'year': 1.0, 'gives': 1.0, '5': 1.0}
Word element => {'long': 1.0, 'last': 1.0, 'wont': 1.0, 'probably': 1.0, 'what': 1.0, 'they': 4.0, 'contacted': 2.0, 'overpriced': 1.0, 'have': 1.0, 'item': 2.0, 'missing': 1.0, 'receive': 1.0, 'another': 3.0, 'b': 3.0, 'carrier': 1.0, 'back': 4.0, 'divider': 3.0, 'into': 1.0, 'that': 1.0, 'been': 1.0, 'amazon': 2.0, 'tabs': 1.0, 'one': 1.0, 'mfg': 1.0, 'out': 2.0, 'in': 1.0, 'tad': 1.0, 'nd': 1.0, 'couldn': 1.0, 'middle': 1.0, 'still': 1.0, 'begin': 1.0, 'a': 4.0, 'going': 1.0, 'replacement': 1.0, 't': 2.0, 'we': 1.0, 'shipped': 1.0, 'functional': 2.0, 'this': 2.0, 'pictures': 1.0, 'dont': 1.0, 'and': 8.0, 'very': 1.0, 'little': 1.0, 'smaller': 1.0, 'so': 1.0, 'expected': 1.0, 'received': 1.0, 'only': 1.0, 'with': 2.0, 'excited': 1.0, 'it': 10.0, 'amazona': 1.0, 'fasten': 1.0, 'i': 6.0, 'bit': 1.0, 'however': 2.0, 'way': 1.0, 'than': 1.0, 'but': 2.0, 'work': 1.0, 'was': 7.0, 'refund': 1.0, 'bent': 1.0, 'to': 7.0, 'all': 1.0, 'be': 1.0, '4': 1.0, 'replace': 2.0, 'new': 1.0, 'not': 2.0, 'me': 3.0, 'wanted': 1.0, 'wait': 1.0, 'send': 2.0, 'them': 1.0, 'would': 1.0, 'weeks': 1.0, 'for': 3.0, '6': 1.0, 'c': 3.0, 'guaratee': 1.0, 'wouldn': 1.0, 'defective': 4.0, 'direct': 1.0, 'the': 6.0, 'of': 1.0, 'charges': 1.0, 'looking': 1.0, 'sent': 3.0, 'obviously': 1.0, 'had': 1.0, 'used': 1.0, 'shape': 1.0, 'shaby': 1.0, 'were': 1.0, 'able': 1.0, 'make': 1.0, 'agreed': 1.0, 'think': 1.0, 'should': 1.0, 'just': 1.0, 'is': 2.0, 'now': 1.0, 'worth': 1.0}
Word element => {'only': 1.0, 'for': 1.0, 'pricey': 1.0, 'little': 1.0, 'was': 1.0, 'this': 1.0, 'caddy': 2.0, 'the': 1.0, 'paisley': 1.0, 'just': 1.0, 'a': 1.0, 'park': 1.0, 'it': 1.0, 'great': 1.0, 'bedding': 1.0, 'one': 1.0, 'matches': 1.0, 'i': 1.0, 'think': 1.0}
Word element => {'m': 1.0, 'pretty': 1.0, 'of': 1.0, 'lots': 1.0, 'has': 1.0, 'out': 1.0, 'or': 1.0, 'so': 1.0, 'sturdy': 1.0, 'got': 1.0, 'and': 2.0, 'like': 1.0, 'went': 1.0, 'my': 1.0, 'the': 1.0, 'you': 1.0, 'to': 1.0, 'glad': 1.0, 'hold': 1.0, 'far': 1.0, 'crocheting': 1.0, 'have': 1.0, 'pockets': 1.0, 'i': 5.0, 'stuff': 1.0, 'really': 1.0, 'one': 1.0, 'love': 1.0, 'with': 1.0, 'this': 2.0, 'it': 2.0, 'can': 1.0, 'how': 1.0, 'middle': 1.0, 'insert': 1.0, 'seems': 1.0, 'in': 1.0}
Word element => {'little': 1.0, 'fast': 1.0, 'move': 1.0, 'and': 3.0, 'changes': 1.0, 'house': 1.0, 'weeks': 1.0, 'toting': 1.0, 'it': 1.0, 'first': 1.0, 'the': 3.0, 'diaper': 1.0, 'great': 1.0, 'my': 1.0, 'for': 4.0, 'mommy': 1.0, 'organized': 1.0, 'needs': 1.0, 'this': 3.0, 'perfect': 1.0, 'in': 1.0, 'easy': 1.0, 'store': 1.0, 'home': 1.0, 'far': 1.0, 'favorite': 1.0, 'wipes': 1.0, 'item': 1.0, 'everything': 1.0, 'drops': 1.0, 'bringing': 1.0, 'every': 1.0, 'keeping': 1.0, 'baby': 3.0, 'gas': 1.0, 'is': 3.0, 'around': 1.0, 'i': 1.0, 'diapers': 1.0, 'pockets': 1.0, 'meds': 1.0, 'ideal': 1.0, 'by': 1.0, 'few': 1.0, 'of': 1.0, 'boys': 1.0, 'esp': 1.0, 'when': 1.0, 'you': 1.0, 'need': 1.0, 'all': 1.0, 'to': 1.0}
Word element => {'true': 1.0, 'pretty': 1.0, 'quality': 1.0, 'great': 1.0, 'fabric': 1.0, 'pic': 1.0, 'station': 1.0, 'changing': 1.0, 'diaper': 1.0, 'designed': 1.0, 'opened': 1.0, 'lil': 1.0, 'efficiency': 1.0, 'looked': 1.0, 'a': 4.0, 'alot': 1.0, 'but': 1.0, 'seems': 1.0, 'will': 1.0, 'it': 5.0, 'with': 1.0, 'first': 1.0, 'wer': 1.0, 'daughter': 1.0, 'i': 5.0, 'visit': 1.0, 'highly': 1.0, 'caddy': 1.0, 'really': 2.0, 'small': 1.0, 'must': 1.0, 'have': 1.0, 'divider': 1.0, 'removeable': 1.0, 'outgrow': 1.0, 'in': 1.0, 'like': 1.0, 'which': 1.0, 'are': 1.0, 'useful': 1.0, 'colors': 1.0, 'though': 1.0, 'for': 1.0, 'opinion': 1.0, 'love': 4.0, 'product': 1.0, 'be': 1.0, 'use': 1.0, 'travel': 1.0, 'one': 1.0, 'bought': 1.0, 'if': 2.0, 'move': 1.0, 'traveling': 1.0, 'again': 1.0, 'when': 2.0, 'you': 2.0, 'my': 1.0, 'family': 1.0, 'this': 1.0, 'wish': 1.0, 'thought': 1.0, 'had': 1.0, 'pattern': 1.0, 'and': 4.0, 'soon': 1.0, 'as': 1.0, 'to': 2.0, 'our': 1.0, 'reccomend': 1.0, 'plan': 1.0, 'is': 5.0, 'around': 1.0, 'holds': 1.0, 'lot': 1.0, 'diapers': 1.0, 'even': 1.0, 'thick': 1.0, 'originally': 1.0}
Word element => {'easily': 1.0, 'from': 1.0, 'essentials': 1.0, 'room': 2.0, 'with': 1.0, 'load': 1.0, 'so': 2.0, 'i': 2.0, 'when': 1.0, 'highly': 1.0, 'tote': 1.0, 'and': 1.0, 'comes': 1.0, 'make': 1.0, 'my': 1.0, 'recommend': 1.0, 'life': 1.0, 'diapers': 1.0, 'easy': 1.0, 'to': 2.0, 'can': 1.0, 'changing': 2.0, 'it': 4.0}
Word element => {'with': 1.0, 'other': 1.0, 'how': 1.0, 'much': 3.0, 'quickly': 1.0, 'shipped': 1.0, 'price': 1.0, 'was': 2.0, 'about': 1.0, 'including': 1.0, 'nurse': 1.0, 'baby': 1.0, 'name': 1.0, 'nursing': 1.0, 'my': 4.0, 'put': 1.0, 'access': 1.0, 'hope': 1.0, 'badge': 1.0, 'that': 1.0, 'ordered': 1.0, 'it': 6.0, 'looked': 1.0, 'bag': 8.0, 'me': 1.0, 'not': 1.0, 'diaper': 1.0, 'a': 5.0, 't': 2.0, 'great': 2.0, 'the': 1.0, 'to': 1.0, 'all': 2.0, 'as': 4.0, 'becoming': 1.0, 'or': 1.0, 'supplies': 1.0, 'pens': 1.0, 'in': 3.0, 'found': 1.0, 'this': 3.0, 'perfect': 1.0, 'i': 9.0, 'etc': 1.0, 'fall': 1.0, 'say': 1.0, 'is': 2.0, 'have': 2.0, 'small': 1.0, 'smaller': 1.0, 'so': 1.0, 'too': 2.0, 'and': 4.0, 'shape': 1.0, 'but': 2.0, 'can': 2.0, 'nurses': 2.0, 'stethescope': 1.0, 'size': 1.0, 'hold': 1.0, 'love': 2.0, 'scope': 1.0, 'for': 2.0, 'new': 1.0}
Word element => {'dryer': 1.0, 'combs': 1.0, 'irons': 1.0, 'her': 1.0, 'carry': 1.0, 'to': 1.0, 'student': 1.0, 'cosmetology': 1.0, 'this': 1.0, 'was': 1.0, 'too': 1.0, 'small': 1.0, 'for': 2.0, 'our': 1.0, 'etc': 1.0, 'brushes': 1.0, 'needs': 1.0, 'we': 1.0, 'tools': 1.0, 'needed': 1.0, 'hair': 1.0, 'it': 1.0, 'a': 1.0}
Word element => {'friend': 1.0, 'now': 1.0, 'that': 1.0, 'loves': 2.0, 'my': 1.0, 'third': 2.0, 'wipes': 1.0, 'do': 1.0, 'much': 1.0, 'nursery': 1.0, 'too': 1.0, 'and': 4.0, 'the': 3.0, 'big': 1.0, 'of': 1.0, 'a': 5.0, 'thibgs': 1.0, 'on': 1.0, 'put': 1.0, 'house': 2.0, 'his': 1.0, 'compartments': 1.0, 'at': 2.0, 'for': 5.0, 'love': 2.0, 'sitters': 2.0, 'so': 1.0, 'as': 2.0, 'all': 1.0, 'tylenol': 1.0, 'middle': 1.0, 'surrounding': 1.0, 'thermometer': 1.0, 'use': 1.0, 'travel': 1.0, 'size': 1.0, 'hoping': 1.0, 'in': 3.0, 'lotion': 1.0, 'pockets': 1.0, 'diapers': 1.0, '2nd': 1.0, 'one': 2.0, 'mylicon': 1.0, 'babys': 1.0, 'mitts': 1.0, 'diaper': 1.0, 'socks': 1.0, 'perfect': 1.0, 'this': 1.0, 'she': 2.0, 'it': 3.0, 'purchasing': 1.0, 'home': 1.0, 'etc': 2.0, 'i': 6.0, 'two': 1.0, 'organizer': 1.0, 'm': 2.0, 'absolutely': 2.0, 'compartment': 1.0, 'ordered': 1.0}
Word element => {'an': 1.0, 'would': 1.0, 'be': 1.0, 'bought': 1.0, 'nail': 1.0, 'supplies': 1.0, 'into': 1.0, 'nails': 1.0, 'doing': 1.0, 'art': 1.0, 'pockets': 1.0, 'i': 2.0, 'and': 3.0, 'getting': 1.0, 'this': 1.0, 'it': 1.0, 'caddy': 1.0, 'works': 1.0, 'too': 1.0, 'm': 1.0, 'to': 1.0, 'hold': 1.0, 'all': 1.0, 'my': 1.0, 'diaper': 1.0, 'tools': 1.0, 'so': 1.0, 'awesome': 2.0, 'many': 1.0}
Word element => {'good': 1.0, 'buy': 1.0, 'what': 1.0, 'for': 1.0, 'work': 1.0, 'didn': 1.0, 't': 1.0, 'this': 1.0, 'product': 1.0, 'is': 1.0, 'a': 2.0, 'and': 1.0, 'needed': 1.0, 'turned': 1.0, 'into': 1.0, 'gift': 1.0, 'i': 1.0, 'when': 1.0, 'great': 2.0, 'it': 1.0}
Word element => {'no': 1.0, 'stylish': 1.0, 'buttons': 1.0, 'yes': 1.0, 'slides': 1.0, 'insert': 1.0, 'for': 1.0, 'use': 1.0, 'able': 1.0, 'be': 1.0, 'will': 1.0, 'is': 1.0, 'a': 1.0, 'bag': 3.0, 'around': 1.0, 'fit': 1.0, 'like': 1.0, 'this': 1.0, 'it': 5.0, 'something': 1.0, 'thought': 1.0, 'cute': 1.0, 'ordered': 1.0, 'i': 4.0, 'when': 1.0, 'decided': 1.0, 'my': 1.0, 'smaller': 1.0, 'and': 2.0, 'duffle': 1.0, 'also': 1.0, 'in': 2.0, 'the': 1.0, 'more': 1.0, 'diaper': 1.0, 'can': 1.0, 'size': 1.0, 'was': 1.0, 'to': 2.0, 'practical': 1.0, 'keep': 1.0, 'because': 1.0}
Word element => {'size': 1.0, 'colors': 1.0, 'bedroom': 1.0, 'her': 1.0, 'matches': 1.0, 's': 2.0, 'made': 1.0, 'great': 1.0, 'the': 1.0, 'lot': 1.0, 'gift': 2.0, 'other': 1.0, 'holds': 1.0, 'supplies': 1.0, 'too': 1.0, 'daughter': 1.0, 'in': 1.0, 'also': 1.0, '13': 1.0, 'i': 1.0, 'old': 1.0, 'loved': 1.0, 'purchased': 1.0, 'my': 1.0, 'christmas': 1.0, 'this': 1.0, 'it': 4.0, 'with': 1.0, 'on': 1.0, 'nail': 1.0, 'polish': 1.0, 'and': 2.0, 'very': 1.0, 'year': 1.0, 'as': 1.0, 'is': 1.0, 'filled': 1.0, 'many': 1.0, 'amazon': 1.0, 'well': 1.0, 'a': 3.0}
Word element => {'though': 1.0, 'colors': 1.0, 'did': 1.0, 'caddy': 1.0, 'diaper': 1.0, 'not': 1.0, 'use': 1.0, 'different': 1.0, 'this': 2.0, 'one': 1.0, 'for': 2.0, 'was': 2.0, 'received': 1.0, 'room': 1.0, 'i': 3.0, 'pockets': 1.0, 'keep': 1.0, 'if': 1.0, 'buttons': 1.0, 'defective': 1.0, 'the': 7.0, 'place': 2.0, 'purchased': 1.0, 'my': 1.0, 'it': 1.0, 'useless': 1.0, 'essentials': 1.0, 'daughter': 1.0, 'diapering': 1.0, 'in': 3.0, 'missing': 1.0, 'item': 1.0, 'also': 1.0, 'inside': 2.0, 'on': 1.0, 'put': 1.0, 'but': 1.0, 'work': 1.0, 'like': 1.0, 'hold': 1.0, 'needed': 1.0, 'divider': 1.0, 'are': 1.0, 'because': 1.0, 'is': 1.0, 'filled': 1.0, 'there': 1.0, 'isn': 1.0, 'to': 3.0, 'outside': 1.0, 'any': 1.0, 'anything': 1.0, 'them': 1.0, 'might': 1.0, 't': 1.0, 's': 1.0, 'a': 2.0}
Word element => {'helpful': 1.0, 're': 1.0, 'about': 1.0, 'things': 1.0, 'one': 1.0, 'future': 1.0, 'gift': 1.0, 'of': 1.0, 'shower': 1.0, 'getting': 1.0, 'be': 1.0, 'll': 1.0, 'table': 1.0, 'coffee': 1.0, 'right': 1.0, 'it': 2.0, 'storing': 1.0, 'mind': 1.0, 'don': 2.0, 'or': 1.0, 'but': 1.0, 'pregnant': 1.0, 'change': 1.0, 'is': 1.0, 'room': 3.0, 'before': 1.0, 'think': 1.0, 'kidded': 1.0, 'her': 2.0, 'caddy': 1.0, 'relief': 1.0, 'days': 1.0, 's': 1.0, 't': 2.0, 'a': 3.0, 'this': 4.0, 'home': 1.0, 'for': 2.0, 'thinking': 1.0, 'i': 5.0, 'when': 1.0, 'you': 2.0, 'contain': 1.0, 'what': 1.0, 'purchased': 1.0, 'having': 2.0, 'diapering': 1.0, 'in': 4.0, 'something': 1.0, 'would': 1.0, 'was': 1.0, 'as': 1.0, 'to': 2.0, 'after': 1.0, 'my': 5.0, 'just': 1.0, 'few': 1.0, 'essentials': 1.0, 'daughter': 1.0, 'allowed': 1.0, 'those': 1.0, 'me': 1.0, 'and': 2.0, 'friends': 1.0, 'so': 2.0, 'neatly': 1.0, 'that': 1.0, 'into': 1.0, 'case': 1.0, 'under': 1.0, 'organize': 1.0, 'have': 2.0, 'baby': 1.0, 'them': 1.0, 'its': 1.0, 'living': 1.0, 'handy': 1.0, 'myself': 1.0, 'the': 3.0, 'pretty': 1.0}
Word element => {'caddy': 1.0, 'crafting': 1.0, 'some': 1.0, 'ordering': 1.0, 'am': 1.0, 'i': 1.0, 'seeing': 1.0, 'after': 1.0, 'well': 1.0, 'than': 1.0, 'used': 1.0, 'can': 1.0, 'or': 1.0, 'a': 2.0, 'and': 4.0, 'boy': 1.0, 'totes': 1.0, 'available': 1.0, 'options': 1.0, 'up': 1.0, 'washable': 1.0, 'that': 1.0, 'more': 1.0, 'is': 1.0, 'was': 2.0, 'as': 1.0, 'to': 2.0, 'its': 1.0, 'with': 1.0, 'this': 2.0, 'myself': 1.0, 'the': 6.0, 'my': 1.0, 'color': 1.0, 'items': 1.0, 'see': 1.0, 'caddys': 1.0, 'fill': 1.0, 'now': 1.0, 'neutral': 1.0, 'gift': 2.0, 'many': 1.0, 'take': 1.0, 'for': 6.0, 'using': 1.0, 'bag': 1.0, 'downstairs': 1.0, 'daughter': 1.0, 'girl': 1.0, 'compartments': 1.0, 'said': 1.0, 'diapering': 1.0, 'in': 2.0, 'it': 4.0, 'she': 2.0, 'new': 1.0, 'something': 1.0, 'would': 1.0, 'be': 2.0, 'are': 1.0, 'thrilled': 1.0, 'just': 1.0, 'right': 1.0, 'size': 1.0, 'morning': 1.0, 'her': 1.0, 'load': 1.0, 'baby': 2.0, 'day': 1.0, 'either': 1.0}
Word element => {'is': 1.0, 'design': 1.0, 'color': 1.0, 'positive': 1.0, 'dat': 1.0, 'got': 1.0, 'nobody': 1.0, 'ain': 1.0, 'incredibly': 1.0, 'face': 1.0, 'your': 1.0, 'front': 1.0, 'crossed': 1.0, 'permanently': 1.0, 'they': 1.0, 'way': 2.0, 'down': 1.0, 'up': 1.0, 'over': 1.0, 'plastic': 1.0, 'in': 5.0, 'rolled': 1.0, 'still': 1.0, 'fold': 1.0, 'time': 2.0, 'who': 1.0, 'all': 1.0, 'pretty': 1.0, 'to': 7.0, 'outside': 1.0, 'books': 2.0, 'hope': 1.0, 'just': 1.0, 'caddy': 1.0, 'organizer': 1.0, 'box': 1.0, 'that': 1.0, 'x': 1.0, 'storage': 1.0, 'shape': 2.0, 'getting': 2.0, 'buttoned': 1.0, 'and': 8.0, 'out': 3.0, 'people': 1.0, 'take': 2.0, 'hold': 2.0, 'tight': 1.0, 'lot': 1.0, 'too': 3.0, 'one': 2.0, 'patience': 1.0, 'expect': 1.0, 'was': 3.0, 'using': 2.0, 'bag': 1.0, 'came': 1.0, 'law': 1.0, 'proper': 1.0, 'height': 1.0, 'a': 4.0, 't': 2.0, 'i': 1.0, 'well': 1.0, 'this': 3.0, 'soft': 1.0, 'it': 6.0, 'as': 1.0, 'heavy': 1.0, 'of': 5.0, 'the': 10.0, 'place': 1.0, 'use': 2.0, '48': 1.0, 'mess': 1.0, 'buy': 1.0, 'hrs': 1.0, 'tended': 1.0, 'topple': 1.0, 'not': 2.0, 'its': 1.0, 'are': 1.0, 'diapers': 1.0, 'most': 1.0, 'unstructured': 1.0, 'though': 1.0, 'were': 1.0, 'low': 1.0, 'stuffed': 1.0, 'had': 1.0, 'have': 1.0, 'frustrating': 2.0, 'interior': 1.0, 'enough': 1.0, 'planned': 1.0, 'such': 1.0, 'structure': 1.0, 'for': 2.0, 'supplies': 1.0, 'forget': 1.0, 'divider': 1.0, 'very': 1.0, 'art': 1.0, 'prevent': 1.0, 'you': 1.0, 'things': 1.0, 'from': 1.0, 'falling': 1.0, 'item': 2.0, 'luck': 1.0, 'pockets': 1.0, 'with': 2.0, 'oh': 1.0, 'good': 1.0, 'even': 2.0, 'cloth': 1.0, 'nightmare': 1.0, 'handles': 1.0}
Word element => {'extra': 1.0, 'worth': 1.0, 'this': 1.0, 'with': 1.0, 'pleased': 1.0, 'm': 1.0, 'money': 1.0, 'but': 1.0, 'caddys': 1.0, 'diaper': 1.0, 'other': 1.0, 'nice': 1.0, 'would': 1.0, 'exactly': 1.0, 'i': 2.0, 'thought': 1.0, 'than': 2.0, '5': 1.0, 'the': 2.0, 'is': 2.0, 'more': 1.0, 'it': 2.0, 'pictured': 1.0, 'in': 1.0, 'its': 2.0, 'as': 1.0, 'to': 2.0, 'photo': 1.0, 'up': 1.0, 'true': 1.0, 'hold': 2.0, 'which': 1.0, 'like': 1.0, 'be': 1.0, 'plenty': 1.0, 'material': 1.0, 'one': 1.0, 'color': 1.0, 'my': 1.0, 'bigger': 1.0, 'sons': 1.0, 'tall': 1.0, 'and': 1.0, 'size': 1.0, 'diapers': 1.0, 'seems': 1.0, 'will': 1.0, 'thick': 1.0, 'against': 1.0, 'usage': 1.0, 'well': 1.0, 'might': 1.0, 's': 1.0, 'a': 1.0, 'have': 1.0, 'been': 1.0, 'very': 2.0, 'little': 1.0, 'expensive': 1.0}
Word element => {'myself': 1.0, 'dr': 1.0, 'seuss': 1.0, 'on': 1.0, 'plan': 1.0, 'diapers': 1.0, 'lotions': 1.0, 'one': 1.0, 'for': 3.0, 'got': 1.0, 'her': 1.0, 'too': 1.0, 'friend': 1.0, 'my': 1.0, 'the': 3.0, 'way': 1.0, 'filled': 1.0, 'is': 1.0, 'shower': 1.0, 'it': 1.0, 'with': 1.0, 'this': 2.0, 'baby': 1.0, 'getting': 1.0, 'and': 2.0, 'i': 3.0, 'pockets': 1.0, 'makes': 1.0, 'perfect': 1.0, 'cute': 1.0, 'gift': 1.0, 'wipes': 1.0, 'toys': 1.0}
Word element => {'cart': 1.0, 'able': 1.0, 'like': 1.0, 'or': 2.0, 'crafts': 1.0, 'their': 1.0, 'want': 1.0, 'high': 1.0, 'really': 2.0, 'move': 1.0, 'are': 1.0, 'ones': 1.0, 'you': 2.0, 'long': 1.0, 'on': 1.0, 'buttons': 1.0, 'bottom': 1.0, 'fasten': 1.0, 'difficult': 1.0, 'very': 2.0, 'that': 4.0, 'would': 1.0, 'something': 1.0, 'house': 2.0, 'i': 6.0, 'variety': 1.0, 'tanks': 1.0, 'be': 2.0, 'throughout': 1.0, 'who': 1.0, 'keep': 1.0, 'since': 1.0, 'roomy': 1.0, 'fastened': 1.0, 'well': 1.0, 'have': 1.0, 'several': 1.0, 'thing': 1.0, 'it': 5.0, 'with': 1.0, 'located': 1.0, 'removed': 1.0, 'purchased': 1.0, 'sturdy': 1.0, 'as': 2.0, 'to': 8.0, 'recommend': 1.0, 'store': 1.0, 'was': 1.0, 'bag': 1.0, 'wanted': 1.0, 'around': 1.0, 'is': 2.0, 'comes': 1.0, 'anything': 1.0, 'fish': 2.0, 'and': 3.0, 'my': 2.0, 'carry': 3.0, 'of': 2.0, 'cute': 1.0, 'medication': 1.0, 'this': 3.0, 'found': 1.0, 'from': 1.0, 'top': 1.0, 'divider': 1.0, 'tank': 2.0, 'd': 1.0, 'dividers': 2.0, 'm': 1.0, 'item': 1.0, 'but': 1.0, 'food': 2.0, 'can': 2.0, 'fit': 1.0, 'the': 7.0, 'bill': 1.0, 'going': 1.0, 'a': 2.0, 'could': 1.0, 's': 3.0, 'one': 1.0, 'those': 1.0, 'not': 3.0}
Word element => {'baby': 1.0, 'the': 1.0, 'room': 2.0, 'from': 1.0, 'this': 1.0, 'to': 4.0, 'organize': 1.0, 'perfect': 1.0, 'diapers': 1.0, 'was': 1.0, 'else': 1.0, 'change': 1.0, 'need': 1.0, 'and': 1.0, 'wipes': 1.0, 'whatever': 1.0, 'move': 1.0, 'we': 1.0}
Word element => {'keep': 1.0, 'needed': 1.0, 'storing': 1.0, 'from': 1.0, 'for': 3.0, 'new': 2.0, 'diaper': 1.0, 'great': 1.0, 'the': 2.0, 'is': 1.0, 'room': 3.0, 'product': 1.0, 'neccessitites': 1.0, 'to': 2.0, 'this': 1.0, 'plenty': 1.0, 'all': 2.0, 'babies': 1.0, 'born': 1.0, 'of': 2.0, 'things': 1.0, 'carry': 1.0, 'organized': 1.0, 'and': 2.0, 'a': 1.0}
Word element => {'on': 1.0, 'choice': 1.0, 'balanced': 1.0, 'if': 1.0, 'tips': 1.0, 'dividers': 1.0, 'attach': 1.0, 'climate': 1.0, 'over': 1.0, 'construction': 1.0, 'returned': 1.0, 'this': 1.0, 'item': 1.0, 'my': 1.0, 'small': 1.0, 'part': 1.0, 'not': 1.0, 'compartments': 1.0, 'hard': 1.0, 'very': 1.0, 'and': 1.0, 'poor': 1.0, 'to': 1.0}
Word element => {'daily': 1.0, 'it': 1.0, 'love': 1.0, 'the': 2.0, 'are': 2.0, 'using': 1.0, 'functional': 1.0, 'we': 2.0, 'print': 1.0, 'is': 1.0, 'on': 1.0, 'this': 2.0, 'lovely': 1.0, 'and': 1.0, 'tote': 2.0, 'pockets': 1.0, 'very': 1.0}
Word element => {'just': 1.0, 'now': 1.0, 'pretty': 1.0, 'seems': 1.0, 'if': 1.0, 'house': 1.0, 'parts': 1.0, 'different': 1.0, 'carry': 1.0, 't': 1.0, 'need': 2.0, 'rigid': 1.0, 'but': 1.0, 'since': 1.0, 'keep': 1.0, 'at': 1.0, 'not': 1.0, 'that': 1.0, 'be': 2.0, 'as': 1.0, 'to': 3.0, 'all': 3.0, 'organizer': 1.0, 'i': 3.0, 'sits': 1.0, 'got': 1.0, 'pockets': 1.0, 'color': 1.0, 'my': 1.0, 'of': 3.0, 'internal': 1.0, 'fairly': 1.0, 'with': 2.0, 'useless': 1.0, 'it': 6.0, 'caddy': 3.0, 'aware': 1.0, 'the': 8.0, 'nursery': 1.0, 'goes': 1.0, 'especially': 1.0, 'inside': 1.0, 'perfectly': 1.0, 'and': 4.0, 'dresser': 1.0, 'collapses': 1.0, 'like': 1.0, 'is': 3.0, 'around': 1.0, 'construction': 1.0, 'very': 1.0, 'time': 1.0, 'so': 3.0, 'unless': 1.0, 'itself': 1.0, 'floppy': 1.0, 'in': 1.0, 'this': 2.0, 'soft': 1.0, 'full': 2.0, 'bummer': 1.0, 'on': 2.0, 'top': 1.0, 'divider': 1.0, 'an': 1.0, 'moves': 1.0, 'supplies': 1.0, 'or': 1.0, 'falls': 1.0, 'm': 1.0, 'minimalist': 1.0, 'over': 1.0, 'don': 1.0}
Word element => {'in': 1.0, 'someone': 1.0, 'again': 1.0, 'very': 1.0, 'but': 1.0, 'a': 1.0, 'return': 1.0, 'did': 1.0, 'been': 1.0, 'purchased': 1.0, 'already': 1.0, 'and': 1.0, 'registry': 1.0, 'daughter': 1.0, 'for': 2.0, 'hadn': 1.0, 'on': 1.0, 'my': 1.0, 'go': 1.0, 'along': 1.0, 't': 1.0, 's': 2.0, 'cute': 1.0, 'theme': 1.0, 'ordered': 1.0, 'i': 4.0, 'her': 2.0, 'heartbeat': 1.0, 'baby': 1.0, 'nursery': 1.0, 'order': 1.0, 'd': 1.0, 'so': 2.0, 'however': 1.0, 'that': 1.0, 'is': 1.0, 'amazon': 1.0, 'realized': 1.0, 'had': 1.0, 'to': 2.0, 'was': 1.0, 'with': 1.0, 'this': 1.0, 'it': 3.0}
Word element => {'too': 1.0, 'feels': 1.0, 'texture': 1.0, 'color': 1.0, 'overall': 1.0, 'but': 1.0, 'and': 1.0, 'squeeze': 1.0, 'of': 1.0, 'lots': 1.0, 'is': 2.0, 'it': 1.0, 'with': 1.0, 'am': 1.0, 'design': 1.0, 'as': 1.0, 'endearing': 1.0, 'a': 1.0, 'love': 1.0, 'using': 1.0, 'diaper': 1.0, 'the': 5.0, 'due': 1.0, 'pockets': 1.0, 'i': 2.0, 'several': 1.0, 'bag': 1.0, 'came': 1.0, 'so': 1.0, 'however': 1.0, 'inner': 1.0, 'caddy': 1.0, 'buttons': 1.0, 'now': 1.0, 'to': 1.0, 'good': 2.0, 'off': 1.0}
Word element => {'lab': 1.0, 'trend': 1.0, 'great': 1.0, 'many': 1.0, 'out': 1.0, 'run': 1.0, 'never': 1.0, 'from': 2.0, 'excitement': 1.0, 'baby': 1.0, 'works': 1.0, 'sized': 1.0, 'with': 1.0, 'using': 1.0, 'now': 1.0, 'right': 1.0, 'love': 1.0, 'fit': 1.0, 'for': 3.0, 'one': 3.0, 'made': 1.0, 'well': 1.0, 'better': 1.0, 'large': 1.0, 'perfect': 2.0, 'this': 3.0, 'very': 3.0, 'and': 4.0, 'downstairs': 1.0, '15': 1.0, 'middle': 2.0, 'of': 2.0, 'all': 2.0, 'have': 1.0, 'fits': 1.0, 'another': 1.0, 'my': 2.0, 'job': 1.0, 'the': 7.0, 'diaper': 1.0, 'price': 1.0, 'm': 2.0, 'years': 2.0, 'organized': 1.0, 'so': 2.0, 'amazing': 1.0, 'caddy': 2.0, 'used': 1.0, 's': 3.0, 'i': 5.0, 'diapers': 1.0, 'even': 1.0, 'pockets': 1.0, 'over': 1.0, 'it': 3.0, 'remove': 1.0, 'put': 1.0, '3': 1.0, 'stuff': 1.0, 'on': 3.0, 'wipes': 1.0, 'different': 1.0, 'last': 1.0, 'then': 1.0, 'costco': 1.0, 'stands': 1.0, 'top': 1.0, 'needed': 1.0, 'sections': 2.0, 'sturdy': 1.0, 'in': 3.0, 'comes': 1.0, 'is': 3.0, 'around': 1.0, 'pkg': 1.0, 'are': 2.0, 'optional': 1.0, 'searching': 1.0, 'they': 1.0, 'getting': 1.0, 'buttoned': 1.0, 'if': 1.0, 'own': 1.0, '2': 1.0, 'can': 1.0, 'but': 1.0, 'bottom': 1.0, 'perfectly': 2.0, 'favorite': 2.0, 'inside': 1.0, 'twins': 1.0, 'you': 1.0, 'when': 1.0}
Word element => {'this': 1.0, 'recommend': 1.0, 'nursery': 1.0, 's': 1.0, 'my': 1.0, 'daughter': 1.0, 'in': 1.0, 'great': 1.0, 'it': 2.0, 'i': 1.0, 'would': 1.0, 'was': 2.0, 'shipped': 1.0, 'on': 1.0, 'time': 1.0, 'product': 1.0, 'exactly': 1.0, 'looked': 1.0, 'what': 1.0, 'and': 1.0, 'wanted': 1.0}
Word element => {'stairs': 1.0, 'the': 1.0, 'up': 1.0, 'stuff': 1.0, 'many': 1.0, 'have': 1.0, 'and': 3.0, 'loved': 1.0, 'got': 1.0, 'changing': 1.0, 'it': 2.0, 'upstairs': 1.0, 'love': 1.0, 'for': 3.0, 'one': 3.0, 'i': 3.0, 'us': 1.0, 'much': 1.0, 'bought': 1.0, 'baby': 1.0, 'another': 1.0, 'trips': 1.0, 'caddy': 1.0, 'down': 2.0, 'now': 1.0, 'so': 1.0, 'saving': 1.0}
Word element => {'fix': 1.0, 'easily': 1.0, 'needle': 1.0, 'thread': 1.0, 'can': 2.0, 'broke': 1.0, 'that': 3.0, 'are': 1.0, 'up': 1.0, 'there': 1.0, 'but': 1.0, 'inside': 1.0, 'the': 2.0, 'on': 1.0, 'to': 1.0, 'dividers': 1.0, 'my': 2.0, 'started': 1.0, 'anyone': 1.0, 'in': 1.0, 'enjoyed': 1.0, 'used': 1.0, 'weaker': 1.0, 'organizer': 1.0, 'button': 1.0, 'car': 1.0, 'really': 1.0, 'keep': 2.0, 'toys': 1.0, 'this': 1.0, 'it': 2.0, 'and': 1.0, 'sons': 1.0, 'getting': 1.0, 'i': 2.0, 'at': 1.0, 'after': 1.0, 'bay': 1.0, 'haha': 1.0, 'little': 1.0, 'a': 2.0, 'they': 1.0, 'time': 1.0}
Word element => {'mine': 1.0, 'luv': 1.0, 'recommend': 1.0, 'def': 1.0, 'would': 1.0, 'great': 1.0, 'good': 1.0, 'seems': 1.0, 'long': 1.0, 'haven': 1.0, 'ready': 1.0, 'together': 1.0, 'to': 1.0, 'all': 1.0, 'have': 1.0, 'instantly': 1.0, 'grab': 1.0, 'just': 1.0, 'but': 1.0, 'can': 1.0, 'right': 1.0, 'about': 1.0, 'storage': 1.0, 'quality': 1.0, 'baby': 1.0, 'whenever': 1.0, 'plus': 2.0, 'of': 2.0, 'and': 4.0, 'in': 1.0, 'somewhere': 1.0, 'what': 1.0, 'had': 2.0, 'now': 1.0, 'definitely': 1.0, 'out': 2.0, 'slide': 1.0, 'originally': 1.0, 'ordered': 1.0, 'drawer': 1.0, 'need': 1.0, 'the': 4.0, 'i': 7.0, 'jj': 1.0, 'like': 1.0, 'table': 1.0, 'my': 1.0, 'cole': 1.0, 'this': 1.0, 'looks': 1.0, 'it': 5.0, 'loved': 1.0, 'use': 1.0, 'for': 1.0, 'caddy': 3.0, 'plenty': 1.0, 'other': 1.0, 'go': 1.0, 't': 2.0, 'we': 1.0, 'when': 1.0, 'didn': 1.0, 'diapers': 1.0, 'is': 2.0, 'holds': 1.0, 'everything': 1.0, 'at': 1.0, 'that': 1.0, 'changing': 1.0, 'stay': 1.0}
Word element => {'button': 1.0, 'loop': 1.0, 'an': 1.0, 'together': 1.0, 'was': 1.0, 'while': 1.0, 'broke': 1.0, 'one': 1.0, 'attachments': 3.0, 'well': 1.0, 'align': 1.0, 'not': 1.0, 'does': 1.0, 'compartments': 1.0, 'forms': 1.0, 'elastic': 1.0, 'with': 1.0, 'piece': 2.0, 'for': 1.0, 'inner': 2.0, 'but': 1.0, 'nice': 1.0, 'materials': 1.0, 'cardboard': 2.0, 'the': 8.0, 'average': 1.0, 'construction': 1.0, 'someday': 1.0, 'of': 4.0, 'stack': 1.0, 'already': 1.0, 'some': 2.0, 'cloths': 1.0, 'also': 1.0, 'burp': 1.0, 'quite': 3.0, 'small': 1.0, 'so': 1.0, 'however': 1.0, 'around': 1.0, 'is': 5.0, 'made': 1.0, 'haven': 1.0, 'rudimentary': 1.0, 'far': 1.0, 'wipes': 1.0, 'it': 6.0, 'found': 1.0, 'this': 1.0, 'a': 4.0, 't': 1.0, 'diaper': 3.0, 'diapers': 1.0, 'trying': 1.0, 'be': 1.0, 'are': 2.0, 'useful': 1.0, 'purpose': 1.0, 'and': 4.0, 'too': 2.0, 'put': 1.0, 'on': 1.0, 'lotions': 1.0, 'creams': 1.0, 'deep': 1.0, 'use': 1.0, 'to': 3.0, 'as': 1.0, 'holder': 1.0, 'lining': 1.0, 'would': 1.0, 'their': 1.0, 'better': 1.0, 'if': 1.0, 'pretty': 1.0, 'wipe': 1.0, 'clothes': 1.0, 'toys': 1.0, 'bag': 2.0, 'like': 1.0, 'which': 3.0, 'i': 2.0, 'fits': 3.0, 'may': 1.0, 're': 1.0}
Word element => {'it': 1.0, 'bags': 1.0, 'area': 1.0, 'down': 1.0, 'lay': 1.0, 'receiving': 1.0, 'book': 1.0, 'cream': 1.0, 'outside': 1.0, 'to': 2.0, 'not': 1.0, 'can': 1.0, 'is': 1.0, 'entertaining': 1.0, 'if': 1.0, 'everything': 1.0, 'caddy': 1.0, 'downstairs': 1.0, 'in': 2.0, 'will': 1.0, 'haul': 1.0, 'we': 3.0, 'a': 4.0, 'and': 3.0, 'little': 1.0, 'keep': 1.0, 'main': 1.0, 'three': 1.0, 'few': 1.0, 'months': 1.0, 'put': 1.0, 'on': 1.0, 'small': 2.0, 'have': 2.0, 'perfect': 1.0, 'this': 1.0, 'ones': 1.0, 'the': 4.0, 'so': 1.0, 'upstairs': 1.0, 'changing': 1.0, 'table': 1.0, 'of': 1.0, 'blanket': 1.0, 'useful': 1.0, 'are': 2.0, 'diaper': 2.0, 'insert': 1.0, 'compartments': 1.0, 'love': 1.0, 'for': 3.0, 'where': 1.0, 'you': 1.0, 'use': 1.0, 'etc': 1.0, 'two': 2.0, 'i': 1.0, 'diapers': 3.0, 'pockets': 1.0, 'package': 1.0, 'wipes': 1.0, 'there': 1.0, 'larger': 1.0}
Word element => {'outfits': 1.0, 'little': 1.0, 'and': 1.0, 'two': 1.0, 'within': 1.0, 'a': 1.0, 'days': 1.0, 'due': 1.0, 'which': 1.0, 'mail': 1.0, 'grow': 1.0, 'came': 1.0, 'big': 1.0, 'is': 1.0, 'in': 1.0, 'perfect': 1.0, 'was': 1.0, 'to': 1.0, 'rate': 1.0, 'they': 1.0, 'the': 2.0, 'these': 1.0, 'i': 1.0, 'love': 1.0}
Word element => {'public': 1.0, 'my': 1.0, 'breastfeed': 1.0, 'in': 1.0, 'durable': 1.0, 'use': 1.0, 'easy': 2.0, 'to': 2.0, 'put': 1.0, 'on': 2.0, 'baby': 1.0, 'clean': 1.0, 'when': 1.0, 'i': 2.0, 'it': 1.0, 'basis': 1.0, 'a': 1.0, 'daily': 1.0}
Word element => {'cloth': 1.0, 'of': 1.0, 'piece': 1.0, 'm': 1.0, 'tell': 1.0, 'complaints': 1.0, 'see': 1.0, 'he': 1.0, 'this': 1.0, 'really': 1.0, 'i': 6.0, 'feel': 1.0, 'always': 1.0, 'says': 1.0, 'awkward': 1.0, 'me': 1.0, 'and': 1.0, 'can': 2.0, 'but': 1.0, 'my': 1.0, 'public': 1.0, 'well': 1.0, 'has': 1.0, 'nursing': 3.0, 'have': 1.0, 'in': 1.0, 'a': 1.0, 's': 2.0, 't': 2.0, 'the': 2.0, 'baby': 1.0, 'don': 1.0, 'husband': 1.0, 'head': 1.0, 'to': 1.0, 'as': 1.0, 'why': 1.0, 'it': 1.0, 'felt': 1.0, 'covers': 1.0, 'she': 1.0, 'about': 1.0, 'no': 1.0, 'cover': 1.0, 'although': 1.0, 'know': 1.0, 'be': 1.0, 'so': 1.0, 'expensive': 1.0, 'for': 1.0}
Word element => {'would': 1.0, 'it': 1.0, 'this': 1.0, 'have': 1.0, 'but': 2.0, 'hiding': 1.0, 'biger': 1.0, 'moves': 1.0, 'small': 1.0, 'the': 1.0, 'job': 1.0, 'good': 1.0, 'little': 1.0, 'one': 1.0, 'model': 1.0, 'dont': 1.0, 'because': 1.0, 'might': 1.0, 'she': 1.0, 'idea': 1.0, 'a': 3.0, 'exposed': 1.0, 'covers': 1.0, 'is': 2.0, 'still': 1.0, 'peace': 1.0, 'i': 2.0, 'better': 1.0, 'if': 1.0, 'do': 1.0, 'get': 1.0}
Word element => {'serves': 1.0, 'in': 1.0, 'does': 1.0, 'little': 1.0, 'store': 1.0, 'since': 1.0, 'craft': 1.0, 'a': 2.0, 'wish': 2.0, '5': 1.0, 'than': 1.0, 'less': 1.0, 'much': 1.0, 'bit': 1.0, 'myself': 1.0, 'made': 1.0, 'as': 4.0, 'quality': 1.0, 'but': 1.0, 'you': 1.0, 'not': 2.0, 'weight': 1.0, 'would': 2.0, 'the': 2.0, 'cover': 2.0, 'light': 1.0, 'is': 2.0, 'it': 3.0, 'with': 1.0, 'this': 1.0, 'all': 2.0, 'wider': 1.0, 'nursing': 1.0, 'have': 1.0, 'expect': 1.0, 'visit': 1.0, 'i': 3.0, 'for': 2.0, 'something': 1.0, 'could': 1.0, 'good': 1.0, 'almost': 1.0, '20': 1.0, 'purpose': 1.0, 'was': 1.0, 'to': 1.0, 'its': 2.0}
Word element => {'neck': 1.0, 'around': 1.0, 'of': 1.0, 'piece': 1.0, 'allows': 1.0, 'which': 1.0, 'ordinary': 1.0, 'design': 1.0, 'for': 1.0, 'can': 1.0, 'at': 1.0, 'an': 1.0, 'but': 1.0, 'me': 1.0, 'while': 1.0, 'just': 1.0, 'looks': 1.0, 'lacks': 1.0, 'great': 1.0, 'the': 2.0, 'my': 2.0, 'to': 2.0, 'use': 1.0, 'peek': 1.0, 'baby': 1.0, 'thing': 1.0, 'nursing': 1.0, 'it': 1.0, 'this': 1.0, 'tie': 1.0, 'cloth': 1.0, 'i': 1.0}
Word element => {'works': 1.0, 'but': 1.0, 'it': 2.0, 'like': 1.0, 'would': 1.0, 'i': 1.0, 'fun': 1.0, 'time': 1.0, 'boy': 1.0, 'being': 1.0, 'thick': 1.0, 'either': 1.0, 'bumper': 1.0, 'are': 1.0, 'great': 2.0, 'the': 3.0, 'for': 2.0, 'material': 1.0, 'colors': 1.0, 'baby': 1.0, 'little': 1.0, 'and': 2.0, 'or': 1.0, 'is': 2.0, 'nice': 1.0, 'bedskirt': 1.0, 'bright': 1.0, 'a': 1.0, 'girl': 1.0, 'shorter': 1.0, 'than': 1.0}
Word element => {'under': 1.0, 'little': 1.0, 'but': 1.0, 'stick': 1.0, 'they': 1.0, 'used': 1.0, 'we': 1.0, 'topper': 1.0, 'quick': 1.0, 'it': 1.0, 'this': 1.0, 'well': 1.0, 'a': 1.0, 'prying': 1.0, 'second': 1.0, 'really': 3.0, 'i': 1.0, 'get': 1.0, 'do': 1.0, 'and': 1.0, 'idea': 1.0, 'are': 1.0, 'pull': 1.0, 'my': 1.0, 'by': 1.0, 'daughter': 1.0, 'great': 1.0, 'the': 2.0, 'these': 1.0, 'figured': 1.0, 'until': 1.0, 'off': 1.0, 'table': 1.0, 'she': 1.0, 'them': 2.0, 'out': 1.0, 'how': 1.0, 'fingers': 1.0, 'to': 1.0, 'loved': 1.0, 'got': 1.0}
Word element => {'s': 1.0, 'on': 1.0, 'highchair': 1.0, 'would': 1.0, 'her': 1.0, 'up': 1.0, 'of': 1.0, 'having': 1.0, 'in': 1.0, 'if': 1.0, 'one': 1.0, 'she': 1.0, 'table': 1.0, 'plate': 1.0, 'and': 2.0, 'had': 1.0, 'to': 1.0, 'stick': 1.0, 'are': 1.0, 'end': 1.0, 'my': 1.0, 'they': 1.0, 'great': 1.0, 'the': 3.0, 'these': 2.0, 'like': 1.0, 'provide': 1.0, 'ground': 1.0, 'front': 1.0, 'well': 1.0, 'a': 2.0, 'surface': 1.0, 'clean': 1.0, 'out': 1.0, 'when': 1.0, 'baby': 1.0, 'kiddo': 1.0, 'it': 2.0, 'eating': 1.0, 'with': 2.0, 'tray': 1.0, 'really': 1.0, 'is': 1.0}
Word element => {'public': 1.0, 'sure': 1.0, 'love': 2.0, 'can': 1.0, 'make': 1.0, 'my': 1.0, 'are': 1.0, 'a': 1.0, 'go': 1.0, 'i': 3.0, 'that': 1.0, 'great': 1.0, 'these': 1.0, 'when': 1.0, 'daughter': 1.0, 'in': 1.0, 'is': 1.0, 'on': 1.0, 'eating': 1.0, 'surface': 1.0, 'them': 1.0, 'clean': 1.0, 'out': 1.0, 'we': 1.0}
Word element => {'tackiness': 1.0, 'and': 1.0, 'while': 1.0, 'around': 1.0, 'been': 1.0, 'they': 1.0, 'off': 1.0, 'them': 1.0, 'my': 1.0, 'pulls': 1.0, 'so': 1.0, 'adhesive': 1.0, 'i': 1.0, 'sitting': 1.0, 'toppers': 1.0, 's': 1.0, 'concept': 1.0, 'table': 2.0, 'as': 1.0, 'very': 1.0, 'seems': 1.0, 've': 1.0, 'not': 1.0, 'of': 1.0, 'glue': 1.0, 'type': 1.0, 'is': 1.0, 'great': 1.0, 'these': 1.0, 'the': 4.0, 'lost': 1.0, 'same': 1.0, 'used': 1.0, 'before': 1.0, 'it': 2.0, 'this': 1.0, 'have': 2.0, 'but': 1.0, 'package': 1.0, 'if': 1.0, 'did': 1.0, 'baby': 1.0, 'sticky': 1.0, 'a': 2.0}
Word element => {'ready': 1.0, 'onto': 1.0, 'placemat': 1.0, 'just': 1.0, 'have': 1.0, 'must': 1.0, 'leave': 1.0, 'of': 1.0, 'scrubbing': 1.0, 'before': 1.0, 'restaurant': 1.0, 'favorite': 1.0, 'wiping': 1.0, 'table': 5.0, 'with': 1.0, 'she': 1.0, 'it': 1.0, 'cleanup': 1.0, 'for': 2.0, 'love': 1.0, 'together': 1.0, 'the': 7.0, 'these': 1.0, 'mess': 1.0, 'so': 1.0, 'installation': 1.0, 'eat': 1.0, 'surface': 1.0, 'we': 4.0, 'a': 3.0, 'food': 1.0, 'but': 1.0, 'backing': 1.0, 'toddler': 1.0, 'much': 1.0, 'busy': 1.0, 'still': 1.0, 'okay': 1.0, 'self': 1.0, 'well': 1.0, 'easier': 1.0, 'make': 1.0, 'on': 1.0, 'play': 1.0, 'and': 4.0, 'makes': 1.0, 'they': 1.0, 'our': 1.0, 'all': 1.0, 'to': 2.0, 'any': 2.0, 'parent': 1.0, 'off': 1.0, 'crayon': 1.0, 'snap': 1.0, 'stick': 3.0, 'peel': 1.0, 'designs': 1.0, 'my': 1.0, 'arrives': 1.0, 'keep': 2.0, 'at': 2.0, 'toppers': 1.0, 'no': 2.0, 'is': 1.0, 'more': 2.0, 'till': 1.0, 'different': 1.0, 'her': 1.0}
Word element => {'messy': 1.0, 'table': 1.0, 'and': 1.0, 'touch': 1.0, 'a': 1.0, 'princess': 1.0, 'less': 1.0, 'make': 1.0, 'are': 1.0, 'the': 2.0, 'these': 1.0, 'sides': 1.0, 'sticky': 1.0, 'work': 1.0, 'great': 2.0, 'love': 1.0, 'there': 1.0, 'that': 1.0, 'is': 1.0, 'on': 1.0, 'four': 1.0, 'all': 1.0}
Word element => {'restaurant': 1.0, 'germy': 1.0, 'keeps': 1.0, 'overall': 1.0, 'well': 1.0, 'don': 1.0, 'easily': 1.0, 'tables': 1.0, 'come': 1.0, 'super': 1.0, 'fairly': 1.0, 'are': 1.0, 'they': 1.0, 'good': 1.0, 'lacquered': 1.0, 'her': 3.0, 'stick': 1.0, 'part': 1.0, 'off': 2.0, 'cover': 1.0, 'but': 1.0, 'food': 3.0, 'sticky': 1.0, 'out': 1.0, 'time': 1.0, 'ever': 1.0, 'eating': 1.0, 'with': 2.0, 'only': 1.0, 'on': 1.0, 'have': 1.0, 'some': 1.0, 'these': 3.0, 'hands': 1.0, 'deal': 1.0, 'the': 2.0, 'factor': 1.0, '18': 1.0, 'every': 1.0, 'germ': 1.0, 'that': 1.0, 'been': 1.0, 'little': 2.0, 'one': 2.0, 'purchase': 1.0, 'my': 2.0, 'using': 1.0, 'table': 3.0, 'month': 1.0, 'it': 3.0, 'she': 1.0, 'since': 1.0, 'as': 1.0, 'to': 1.0, 'old': 1.0, 'of': 6.0, 'surfaces': 2.0, 'starting': 1.0, 'and': 4.0, 'eat': 1.0, 'if': 2.0, 'spills': 1.0, 't': 1.0, 'we': 3.0, 'go': 1.0, 'a': 4.0, 's': 2.0, 'those': 1.0, 'not': 2.0, 'big': 1.0, 'in': 1.0, 'terms': 1.0, 'complaint': 1.0, 'is': 1.0}
Word element => {'simultaneously': 1.0, 'play': 1.0, 'placement': 1.0, 'food': 1.0, 'to': 1.0, 'allows': 1.0, 'size': 1.0, 'clean': 1.0, 'sanitary': 1.0, 'convenient': 1.0, 'time': 1.0, 'durableeasily': 1.0, 'very': 1.0, 'and': 3.0, 'attachable': 1.0, 'up': 1.0, 'reduced': 1.0, 'afterwardssubstantial': 1.0}
Word element => {'he': 1.0, 'strange': 1.0, 'stays': 1.0, 'on': 2.0, 'table': 1.0, 'and': 2.0, 'me': 1.0, 'cars': 1.0, 'better': 1.0, 'the': 1.0, 'my': 1.0, 'loves': 1.0, 'grandson': 1.0, 'makes': 1.0, 'colors': 1.0, 'eating': 1.0, 'feel': 1.0, 'tables': 1.0, 'about': 1.0}
Word element => {'keep': 1.0, 'place': 1.0, 'to': 1.0, 'perfect': 1.0, 'back': 1.0, 'i': 1.0, 'them': 2.0, 'in': 1.0, 'for': 1.0, 'strip': 1.0, 'outdoor': 1.0, 'was': 1.0, 'preschooler': 1.0, 'the': 2.0, 'eating': 1.0, 'wanted': 1.0, 'and': 1.0, 'on': 1.0, 'with': 1.0, 'adhesive': 1.0}
Word element => {'disappointed': 1.0, 'cars': 1.0, 'from': 1.0, 'characters': 1.0, 'pictures': 1.0, 'instead': 1.0, 'all': 1.0, 'like': 1.0, 'table': 1.0, 'a': 1.0, 'specifically': 1.0, 'them': 1.0, 'look': 1.0, 'they': 2.0, 'the': 2.0, 'these': 1.0, 'just': 1.0, 'not': 1.0, 'because': 1.0, 'for': 1.0, 'selected': 1.0, 'i': 2.0, 'when': 1.0, 'car': 1.0, 'but': 1.0, 'track': 2.0, 'my': 1.0, 'are': 1.0, 'lots': 1.0, 'toppers': 1.0, '2yo': 1.0, 'of': 2.0, 'at': 1.0, 'fun': 1.0, 'received': 1.0}
Word element => {'bedding': 1.0, 'love': 3.0, 'durable': 1.0, 'are': 1.0, 'twist': 1.0, 'room': 1.0, 'recommend': 1.0, 'textures': 1.0, 'colors': 1.0, 'great': 1.0, 'dot': 1.0, 'on': 7.0, 'trim': 4.0, 'photo': 2.0, 'girls': 1.0, 'trying': 1.0, 'would': 2.0, 'even': 1.0, 'what': 1.0, 'had': 1.0, 'half': 1.0, 'avocado': 1.0, 'arrived': 1.0, 'better': 1.0, 'if': 1.0, 'satisfied': 1.0, 'design': 1.0, 'sewn': 1.0, 'sherpa': 1.0, 'set': 2.0, 'is': 13.0, 'at': 1.0, 'mix': 1.0, 'main': 1.0, 'and': 11.0, 'super': 1.0, 'same': 1.0, 'green': 7.0, 'couldn': 1.0, 'see': 1.0, 'flower': 1.0, 'ruffle': 1.0, 'fuzzy': 1.0, 't': 1.0, 'small': 1.0, 'a': 8.0, 'boudoir': 1.0, 'loved': 1.0, 'chenille': 1.0, 'find': 1.0, 'unfortunately': 1.0, 'store': 1.0, 'meets': 1.0, 'was': 2.0, 'beautiful': 1.0, 'been': 1.0, 'to': 1.0, 'could': 1.0, 'gorgeous': 1.0, 'blanket': 2.0, 'like': 1.0, 'in': 2.0, 'black': 6.0, 'of': 4.0, 'the': 21.0, 'person': 1.0, 'hides': 1.0, 'well': 1.0, 'i': 7.0, 'so': 1.0, 'sheet': 1.0, 'looked': 1.0, 'highly': 1.0, 'this': 3.0, 'mattress': 1.0, 'soft': 1.0, 'shade': 1.0, '75': 1.0, 'it': 9.0, 'color': 2.0, 'actually': 1.0, 'where': 1.0, 'velvet': 4.0, 'embroidered': 2.0, 'not': 1.0, 'damask': 2.0, 'flat': 1.0, 'striped': 1.0, 'for': 1.0, 'such': 1.0, 'fabric': 1.0, 'bumper': 2.0, 'fabrics': 1.0, 'local': 1.0, 'accent': 1.0, 'be': 1.0, 'cream': 5.0, 'with': 6.0, 'pattern': 3.0, 'one': 1.0, 'actual': 1.0, 'outlined': 1.0, 'dust': 1.0, 'though': 1.0, 'part': 1.0, 'thick': 2.0, 'pillow': 1.0, 'all': 1.0, 'other': 2.0, 'an': 1.0, 'leaves': 1.0, 'spot': 1.0, 'but': 1.0, 'retro': 1.0, 'satin': 1.0, 'made': 1.0, 'which': 1.0, 'side': 2.0, 'darker': 1.0, 'common': 1.0}
Word element => {'love': 1.0, 'm': 1.0, 'exquisite': 1.0, 'quality': 1.0, 'time': 1.0, 'beautiful': 1.0, 'so': 1.0, 'after': 1.0, 'days': 1.0, 'a': 1.0, 'two': 1.0, 'arrived': 1.0, 'bedding': 1.0, 'long': 1.0, 'the': 3.0, 'thing': 1.0, 'all': 2.0, 'set': 1.0, 'of': 2.0, 'this': 1.0, 'with': 1.0, 'first': 1.0, 'it': 2.0, 'i': 3.0, 'unbelievable': 1.0, 'purchased': 1.0, 'most': 1.0, 've': 1.0, 'in': 2.0, 'second': 1.0, 'is': 2.0, 'seen': 1.0}
Word element => {'junk': 1.0, 'install': 1.0, 'impossible': 1.0, 'mat': 1.0, 'baby': 1.0, 'goes': 1.0, 'cardboard': 1.0, 'top': 1.0, 'under': 1.0, 'half': 1.0, 'if': 1.0, 'much': 1.0, 'that': 2.0, 'easier': 1.0, 'been': 1.0, 'end': 1.0, 'would': 1.0, 'together': 1.0, 'thing': 1.0, 'have': 1.0, 'put': 1.0, 'arrived': 1.0, 'this': 1.0, 'it': 1.0, 'cracked': 1.0, 'to': 2.0, 'was': 2.0, 'had': 1.0, 'one': 2.0, 'on': 1.0, 'piece': 2.0, 'of': 3.0, 'the': 3.0, 'in': 2.0, 'pieces': 1.0}
Word element => {'service': 1.0, 'me': 1.0, 'would': 1.0, 'away': 1.0, 'far': 2.0, 'mine': 1.0, 'come': 1.0, 'love': 1.0, 'staging': 1.0, 'drawer': 2.0, 'thin': 1.0, 'shelf': 2.0, 'what': 1.0, 'when': 1.0, 'lines': 1.0, 'designed': 2.0, 'three': 1.0, 'into': 1.0, 'flaming': 1.0, 'is': 8.0, 'at': 2.0, 'pic': 1.0, 'look': 1.0, 'item': 1.0, 'struggling': 1.0, 'not': 2.0, 'warp': 1.0, 'sided': 1.0, 'use': 3.0, 'didn': 1.0, 'instead': 2.0, 'unit': 2.0, 'call': 1.0, 'all': 2.0, 'other': 3.0, 'to': 7.0, 'connected': 1.0, 'on': 7.0, 'and': 5.0, 'just': 7.0, 'drawers': 2.0, 'start': 1.0, 'put': 1.0, '16': 1.0, 'do': 1.0, 'd': 1.0, 'hatred': 1.0, 'negative': 1.0, 'those': 1.0, 'i': 9.0, 'place': 1.0, 'the': 29.0, 'even': 1.0, 'of': 5.0, 'describe': 1.0, 'firey': 1.0, 'there': 5.0, 'written': 1.0, 'black': 1.0, 'perfectly': 1.0, 'words': 2.0, 'baskets': 5.0, 'kind': 1.0, 'top': 1.0, 'time': 4.0, 'dividers': 1.0, 'public': 1.0, 'wood': 2.0, 'hated': 1.0, 'first': 2.0, 'balance': 1.0, 'take': 3.0, 'never': 1.0, 'collapse': 1.0, 'actively': 1.0, 'while': 1.0, 've': 1.0, 'shelves': 1.0, 'several': 1.0, 'down': 1.0, 'in': 4.0, 'could': 1.0, 'will': 1.0, 't': 3.0, 'only': 1.0, 'sat': 1.0, 'separate': 1.0, 's': 4.0, 'a': 10.0, 'wrangling': 1.0, 'full': 1.0, 'seething': 1.0, 'mattress': 1.0, 'soft': 1.0, 'without': 1.0, 'looked': 1.0, 'your': 1.0, 'where': 1.0, 're': 2.0, 'misinterpreted': 1.0, 'product': 1.0, 'have': 3.0, 'out': 1.0, 'photo': 1.0, 'review': 1.0, 'understand': 1.0, 'presumed': 1.0, 'january': 1.0, 'every': 2.0, 'great': 1.0, 'if': 3.0, 'fine': 1.0, 'like': 4.0, 'aren': 1.0, 'cannot': 1.0, 'brought': 1.0, 'appear': 1.0, 'figured': 1.0, '400th': 1.0, 'my': 3.0, 'everything': 1.0, 'them': 1.0, 'baby': 2.0, 'home': 1.0, 'you': 11.0, 'times': 1.0, 'day': 2.0, 'since': 1.0, '1': 1.0, 'below': 2.0, 'that': 8.0, 'see': 2.0, 'two': 1.0, 'little': 2.0, 'horizontal': 1.0, 'it': 4.0, 'be': 2.0, 'for': 3.0, 'pieces': 1.0, 'from': 2.0, 'one': 5.0, 'holy': 1.0, 'platforms': 1.0, 'bad': 1.0, 'crying': 1.0, 'seriously': 1.0, 'enlarge': 1.0, 'strain': 1.0, 'this': 4.0, 'eyes': 1.0, 'shadows': 1.0, 'no': 1.0, 'taken': 1.0, 'make': 1.0, 'goes': 1.0, 'something': 1.0, 'misaligned': 1.0, 'hand': 1.0, 'but': 1.0, '2011': 1.0, 'these': 2.0, 'more': 1.0, 'or': 1.0, 'piece': 1.0, 'yank': 1.0, 'useless': 1.0, 'sitting': 1.0, 'doing': 1.0, 'hold': 1.0, 'hover': 1.0, 'over': 1.0, 'another': 1.0, 'open': 2.0, 'skeleton': 1.0, 'each': 2.0, 'll': 2.0, 'side': 2.0, 'problem': 1.0, 'sparkly': 1.0, 'please': 1.0, 'gap': 1.0, 'runners': 3.0, 'between': 1.0, 'prolly': 1.0, 'don': 1.0, 'about': 2.0, 'wider': 1.0, 'basket': 3.0, 'how': 1.0, 'worse': 1.0, 'tops': 1.0, 'happens': 1.0, 'close': 1.0, 'they': 1.0, 'issue': 1.0, 'gets': 1.0, 'less': 1.0, 'as': 1.0, 'separations': 1.0, 'than': 1.0, 'bit': 1.0, 'picture': 3.0, 'with': 2.0, 'changing': 1.0, 'ragey': 3.0, 'hate': 2.0, 'so': 2.0, 'insist': 1.0, 'buy': 1.0, 'having': 1.0}
Word element => {'price': 1.0, 'highly': 1.0, 'very': 1.0, 'and': 1.0, 'in': 1.0, 'right': 1.0, 'apartments': 1.0, 'dresser': 1.0, 'other': 1.0, 'separate': 1.0, 'things': 1.0, 'furniture': 1.0, 'your': 1.0, 'recommend': 1.0, 'store': 1.0, 'way': 1.0, 'spare': 1.0, 'with': 2.0, 'diapers': 1.0, 'my': 1.0, 'to': 2.0, 'all': 3.0, 'but': 1.0, 'end': 1.0, 'high': 1.0, 'modern': 1.0, 'blends': 1.0, 'needing': 1.0, 'not': 1.0, 'crib': 1.0, 'accessories': 1.0, 'if': 2.0, 'be': 1.0, 'fill': 1.0, 'constant': 1.0, 'would': 3.0, 'what': 2.0, 'far': 1.0, 'inexpensive': 1.0, 'been': 2.0, 'changing': 2.0, 'match': 1.0, 'wasn': 1.0, 'clothes': 1.0, 'baby': 2.0, 'quality': 2.0, 'cannot': 1.0, 'hold': 1.0, 'like': 1.0, 'table': 1.0, 'has': 1.0, 'white': 2.0, 'wood': 1.0, 'surprise': 1.0, 'etc': 1.0, 'i': 2.0, 'without': 1.0, 'the': 10.0, 'nice': 1.0, 'great': 1.0, 'perfect': 2.0, 'this': 2.0, 'looks': 1.0, 'it': 5.0, 'or': 1.0, 'pay': 1.0, 'up': 1.0, 'of': 2.0, 'baskets': 2.0, 'so': 2.0, 'after': 1.0, 'room': 1.0, '5': 1.0, 'color': 1.0, 'months': 1.0, 'use': 1.0, 'sturdy': 1.0, 'a': 2.0, 't': 1.0, 's': 4.0, 'you': 3.0, 'is': 3.0, 'beat': 1.0, 'though': 1.0, 'sure': 1.0, 'get': 1.0, 'for': 3.0, 'tables': 1.0}
Word element => {'family': 1.0, 'purchase': 1.0, 'great': 1.0, 'necessisties': 1.0, 'other': 1.0, 'diapers': 1.0, 'of': 1.0, 'blankets': 1.0, 'can': 1.0, 'attractive': 1.0, 'it': 1.0, 'located': 1.0, 'be': 1.0, 'will': 1.0, 'for': 2.0, 'where': 1.0, 'upstairs': 1.0, 'when': 1.0, 'did': 1.0, 'new': 2.0, 'towels': 1.0, 'apartment': 2.0, 'being': 1.0, 'an': 1.0, 're': 1.0, 'house': 4.0, 'in': 4.0, 'had': 1.0, 'now': 1.0, 'store': 1.0, 'was': 1.0, 'second': 1.0, 'on': 2.0, 'piece': 1.0, 'the': 5.0, 'clothes': 1.0, 'baby': 2.0, 'dresser': 1.0, 'and': 3.0, 'market': 1.0, 'stage': 1.0, 'are': 2.0, 'not': 2.0, 'built': 1.0, 'set': 1.0, 'up': 1.0, 'we': 6.0, 'a': 4.0, 'well': 1.0, 'while': 3.0, 'housing': 1.0, 'is': 3.0, 'plan': 1.0, 'living': 1.0, 'nursery': 2.0, 'or': 1.0, 'this': 2.0, 'first': 1.0, 'functioning': 1.0, 'very': 1.0, 'to': 2.0, 'our': 5.0, 'as': 2.0, 'changing': 2.0, 'lot': 1.0, 'limbo': 1.0, 'table': 2.0, 'currently': 1.0, 'floor': 1.0, 'use': 1.0}
Word element => {'pad': 1.0, 'top': 1.0, 'a': 1.0, 'with': 1.0, 'bottom': 1.0, 'diapers': 1.0, 'great': 1.0, 'changing': 1.0, 'in': 1.0, 'awesome': 1.0, 'for': 1.0, 'drawers': 2.0, 'the': 1.0, 'are': 1.0, 'pretty': 1.0, 'good': 1.0, 'comes': 1.0, 'wipes': 1.0, 'and': 1.0, 'table': 1.0, 'quality': 1.0}
Word element => {'months': 1.0, 'together': 1.0, 'finishing': 1.0, 'has': 1.0, 'use': 1.0, 'you': 1.0, 'colour': 1.0, 'table': 1.0, 'very': 1.0, 'changing': 1.0, 'long': 1.0, 'expensive': 1.0, 'self': 1.0, 'because': 1.0, 'not': 1.0, 'job': 1.0, 'gets': 1.0, 'don': 1.0, 'storage': 1.0, 'bedroom': 1.0, 'put': 1.0, 'an': 1.0, 'but': 1.0, 'others': 1.0, 'want': 1.0, 'is': 1.0, 'to': 1.0, 'compared': 1.0, 'inexpensive': 1.0, 'my': 2.0, '7': 1.0, 'item': 1.0, 'pregnant': 1.0, 'have': 1.0, 'and': 1.0, 'done': 1.0, 't': 1.0, 'the': 1.0, 'great': 2.0, 'this': 1.0, 'it': 4.0, 'did': 1.0, 'saver': 1.0, 'a': 1.0, 'since': 1.0, 'i': 3.0, 'in': 1.0}
Word element => {'fits': 1.0, 'room': 1.0, 'living': 1.0, 'have': 1.0, 'piece': 1.0, 'priced': 1.0, 'good': 1.0, 'else': 1.0, 'or': 1.0, 'in': 3.0, 'nicely': 1.0, 'heavy': 1.0, 'but': 1.0, 'can': 1.0, 'just': 1.0, 'you': 1.0, 'perfectly': 1.0, 'did': 1.0, 'some': 2.0, 'lot': 1.0, 'at': 1.0, 'move': 1.0, 'however': 1.0, 'anything': 1.0, 'manufactured': 1.0, 'parts': 1.0, 'were': 2.0, 'too': 1.0, 'and': 6.0, 'the': 4.0, 'they': 1.0, 'drawers': 1.0, 'holes': 1.0, 'had': 1.0, 'was': 1.0, 'our': 1.0, 'to': 1.0, 'cheaply': 1.0, 'look': 1.0, 'so': 1.0, 'time': 1.0, 'well': 2.0, 'won': 1.0, 'has': 1.0, 'putting': 1.0, 's': 1.0, 't': 2.0, 'we': 4.0, 'a': 4.0, 'once': 1.0, 'of': 3.0, 'really': 2.0, 'more': 2.0, 'is': 2.0, 'looks': 1.0, 'it': 9.0, 'together': 2.0, 'difficult': 1.0, 'than': 1.0, 'because': 1.0, 'off': 1.0, 'furniture': 1.0, 'put': 2.0, 'this': 1.0, 'perfect': 1.0, 'useful': 1.0, 'padded': 1.0, 'nice': 1.0, 'switched': 1.0, 'expensive': 1.0, 'actually': 1.0, 'fit': 1.0, 'for': 1.0, 'one': 1.0, 'ridiculous': 1.0, 'out': 1.0, 'that': 1.0, 'been': 1.0, 'changing': 1.0, 'mat': 1.0, 'real': 1.0, 'contoured': 1.0}
Word element => {'days': 1.0, 'few': 1.0, 'a': 1.0, 'went': 1.0, 'or': 1.0, 'paint': 1.0, 'either': 1.0, 'have': 1.0, 'within': 1.0, 'together': 1.0, 'but': 1.0, 'an': 1.0, 'put': 1.0, 'easier': 1.0, 'putting': 1.0, 'i': 1.0, 'clothes': 2.0, 'product': 1.0, 'odor': 1.0, 'to': 2.0, 'for': 2.0, 'which': 1.0, 'price': 1.0, 'storage': 1.0, 'baby': 2.0, 'organizing': 1.0, 'issue': 1.0, 'away': 2.0, 'and': 2.0, 'the': 3.0, 'great': 2.0, 'plastic': 1.0, 'can': 1.0, 'with': 1.0, 'it': 4.0, 'remove': 1.0, 'makes': 1.0, 'no': 1.0, 'drawers': 1.0, 'did': 1.0, 'bring': 1.0, 'out': 1.0, 'them': 1.0, 'living': 1.0, 'room': 1.0}
Word element => {'just': 1.0, 'other': 1.0, 'but': 1.0, 'confused': 1.0, 'one': 1.0, 'there': 1.0, 'piece': 1.0, 'they': 1.0, 'thing': 1.0, 'only': 1.0, 'isnt': 1.0, 'the': 6.0, 'out': 1.0, 'assembling': 1.0, 'changer': 1.0, 'immediately': 1.0, 'part': 1.0, 'hard': 1.0, 'understand': 1.0, 'get': 1.0, 'easy': 1.0, 'package': 1.0, 'cute': 1.0, 'and': 4.0, 'too': 1.0, 'i': 7.0, 'took': 1.0, 'labeled': 1.0, 'noticed': 1.0, 'how': 1.0, 'was': 3.0, 'beautiful': 2.0, 'in': 1.0, 'pieces': 2.0, 'it': 3.0, 'wish': 1.0, 'this': 1.0, 'product': 1.0, 'where': 1.0, 'assemble': 1.0, 'love': 3.0, 'directions': 2.0, 'finished': 1.0, 'is': 4.0, 'than': 1.0, 'w': 1.0, 'super': 1.0, 'freaking': 1.0, 'at': 2.0, 'c': 2.0, 'when': 1.0, 'am': 1.0, 'finish': 1.0, 'are': 2.0, 'every': 1.0, 'didnt': 1.0, 'automatically': 1.0, 'have': 1.0, 'able': 2.0, 'to': 3.0, 'all': 2.0, 'any': 1.0, 'broken': 1.0, 'single': 1.0, 'very': 1.0, 'simple': 1.0, 'which': 1.0, 'that': 3.0, 'good': 1.0, 'b': 2.0}
Word element => {'house': 1.0, 'in': 1.0, 'perfect': 1.0, 'base': 1.0, 'but': 2.0, 'to': 1.0, 'was': 1.0, 'the': 8.0, 'storage': 1.0, 'directions': 1.0, 'given': 1.0, 'for': 1.0, 'is': 3.0, 'really': 1.0, 'changing': 3.0, 'how': 1.0, 'apart': 1.0, 'detail': 1.0, 'and': 2.0, 'table': 2.0, 'which': 1.0, 'of': 1.0, 'don': 1.0, 'up': 1.0, 'good': 1.0, 'nice': 1.0, 'until': 1.0, 'area': 1.0, 'so': 1.0, 'when': 1.0, 'you': 1.0, 'll': 1.0, 'end': 1.0, 'us': 1.0, 'taking': 1.0, 'it': 2.0, 'hard': 1.0, 'cheapish': 1.0, 'put': 1.0, 'on': 1.0, 'wood': 1.0, 'inexpensive': 1.0, 'price': 1.0, 'temp': 1.0, 'buy': 1.0, 't': 1.0, 'we': 1.0, 'a': 1.0}
Word element => {'too': 1.0, 'looking': 1.0, 'nice': 1.0, 'apart': 1.0, 'storage': 1.0, 'base': 1.0, 'purpose': 1.0, 'had': 1.0, 'brace': 1.0, 'for': 3.0, 'glue': 1.0, 'the': 1.0, 'come': 1.0, 'cracked': 1.0, 'changing': 1.0, 'very': 1.0, 'were': 1.0, 'parts': 1.0, 'table': 1.0, 'good': 1.0, 'of': 1.0, 'delicate': 1.0, 'some': 1.0, 'assembly': 1.0, 'but': 1.0, 'not': 1.0}
Word element => {'have': 1.0, 'not': 1.0, 'doe': 1.0, 'when': 1.0, 'prices': 2.0, 'the': 2.0, 'that': 1.0, 'now': 2.0, 'had': 1.0, 'to': 1.0, 'used': 1.0, 'do': 1.0, 'and': 1.0, 'but': 1.0, 'lowest': 2.0, 'quality': 1.0, 'ordering': 1.0, 'construction': 1.0, 'items': 1.0, 'after': 1.0, 'amazon': 2.0, 'realized': 1.0, 'decent': 1.0, 'good': 1.0, 'be': 1.0, 'product': 1.0, 'pieces': 1.0, 'it': 1.0, 'with': 1.0, 'i': 2.0, 'of': 1.0, 'there': 1.0, 'are': 1.0, 'made': 1.0, 'other': 1.0, 'better': 2.0, 'check': 1.0, 'a': 2.0, 'lots': 1.0, 'price': 2.0}
Word element => {'still': 1.0, 'time': 1.0, 'free': 1.0, 'they': 1.0, 'but': 1.0, 'disappointing': 1.0, 'a': 1.0, 'am': 1.0, 'three': 1.0, 'charge': 1.0, 'considering': 1.0, 'receive': 1.0, 'are': 1.0, 'care': 1.0, 'this': 1.0, 'it': 1.0, 'excited': 1.0, 'consuming': 1.0, 'them': 1.0, 'child': 1.0, 'very': 2.0, 'and': 1.0, 'replacing': 1.0, 'i': 4.0, 'of': 1.0, 'completely': 1.0, 'provider': 1.0, 'opened': 1.0, 'to': 1.0, 'was': 1.0, 'had': 1.0, 'pieces': 1.0, 'were': 1.0, 'that': 1.0, 'broken': 1.0}
Word element => {'needed': 1.0, 'whats': 1.0, 'work': 1.0, 'product': 1.0, 'up': 1.0, 'hold': 1.0, 'how': 1.0, 'process': 1.0, 'you': 1.0, 'only': 2.0, 'its': 3.0, 'good': 1.0, 'which': 2.0, 'table': 3.0, 'paint': 1.0, 'directions': 1.0, 'slightly': 1.0, 'it': 4.0, 'few': 1.0, 'by': 1.0, 'spots': 1.0, 'back': 1.0, 'excellent': 1.0, 'had': 2.0, 'second': 1.0, 'new': 1.0, 'for': 3.0, 'stars': 1.0, 'because': 1.0, 'that': 3.0, 'box': 1.0, 'rated': 1.0, 'them': 1.0, 'due': 1.0, 'simple': 1.0, 'baby': 2.0, 'deal': 1.0, 'condition': 1.0, 'will': 2.0, 'means': 1.0, '4': 1.0, 'i': 3.0, 'week': 1.0, 'fact': 1.0, 't': 5.0, 'a': 5.0, 'go': 1.0, 'and': 6.0, 'one': 2.0, 'too': 1.0, 'to': 5.0, 'was': 3.0, 'lays': 1.0, 'big': 1.0, 'received': 2.0, 'see': 1.0, 'no': 1.0, 'thing': 1.0, 'much': 1.0, 'changing': 1.0, 'put': 1.0, 'together': 1.0, 'first': 1.0, 'are': 1.0, 'damaged': 1.0, 'easy': 1.0, 'return': 1.0, 'sure': 1.0, 'end': 1.0, 'wait': 1.0, 'read': 1.0, 'very': 1.0, 'the': 14.0, 'of': 2.0, 'assembling': 1.0, 'on': 3.0, 'long': 1.0, 'didn': 2.0, 'we': 4.0, 'take': 1.0, 'other': 1.0, 'all': 1.0, 'an': 1.0, 'issue': 1.0, 'weren': 1.0, 'with': 2.0, 'half': 2.0, 'mind': 1.0, 'screw': 1.0, 'can': 1.0, 'so': 1.0, 'don': 1.0, 'makes': 1.0, 'me': 1.0, 'not': 1.0, 'flawed': 1.0, 'nervous': 1.0, 'is': 1.0, 'but': 2.0, 'board': 1.0, 'overall': 1.0, 'thin': 1.0, 'than': 1.0, 'way': 1.0, 'springy': 1.0, 'in': 3.0, 'm': 1.0}
Word element => {'confused': 1.0, 'get': 1.0, 'had': 1.0, 'big': 1.0, 'great': 1.0, 'friend': 1.0, 'a': 2.0, 'go': 1.0, 't': 1.0, 'middle': 1.0, 'difficult': 1.0, 'clothes': 1.0, 'assortment': 1.0, 'helping': 1.0, 'left': 1.0, 'easy': 1.0, 'table': 1.0, 'wipes': 1.0, 'her': 1.0, 'keep': 2.0, 'space': 1.0, 'overly': 1.0, 'and': 8.0, '2': 1.0, 'no': 1.0, 'blankets': 1.0, 'things': 1.0, 'drawers': 5.0, 'directly': 1.0, 'for': 1.0, 'are': 3.0, 'been': 1.0, 'sons': 1.0, 'saver': 1.0, 'currently': 1.0, 'diaper': 1.0, 'even': 1.0, 'cloth': 1.0, 'i': 8.0, 'can': 2.0, 'so': 3.0, 'time': 1.0, 'the': 11.0, 'of': 4.0, 'have': 1.0, 'an': 1.0, 'fits': 1.0, 'all': 2.0, 'to': 3.0, 'those': 1.0, 'my': 2.0, 'me': 2.0, 'not': 1.0, 'enough': 1.0, 'top': 2.0, 'need': 1.0, 'fold': 1.0, 'far': 1.0, 'love': 1.0, 'bottom': 1.0, 'he': 1.0, 'creams': 1.0, 'drawer': 3.0, 'chest': 1.0, 'shelf': 1.0, 'his': 1.0, 'they': 1.0, 'sturdy': 1.0, 'in': 7.0, 'closet': 1.0, 'it': 3.0, 'remove': 1.0, 'them': 1.0, 'has': 1.0, 'also': 1.0, 'we': 1.0, 'take': 1.0, 'out': 1.0, 'wonderful': 1.0, 'living': 1.0, 'room': 2.0, 'when': 1.0, 'laundry': 1.0, 'that': 3.0, 'young': 1.0, 'saves': 1.0, 'this': 3.0, 'highly': 1.0, 'with': 4.0, 'plenty': 1.0, 'is': 1.0, 'changing': 1.0, 'put': 2.0, 'best': 1.0, '34': 2.0, 'children': 1.0, 'recommend': 1.0, 'together': 2.0, 'were': 1.0, 'didn': 1.0}
Word element => {'trick': 1.0, 'would': 1.0, 'is': 1.0, 'back': 1.0, 'installable': 1.0, 'solution': 1.0, 'peg': 1.0, 'done': 1.0, 'simple': 1.0, 'just': 1.0, 'but': 1.0, 'have': 1.0, 'small': 1.0, 'lines': 1.0, 'piece': 2.0, 'quick': 1.0, 'decide': 1.0, 'onesies': 1.0, 'only': 1.0, 'for': 1.0, 'socks': 1.0, 'etc': 1.0, 'i': 1.0, 'store': 1.0, 'table': 1.0, 'supplies': 1.0, 'sort': 1.0, 'changes': 1.0, 'great': 1.0, 'place': 1.0, 'the': 6.0, 'hole': 1.0, 'a': 2.0, 't': 1.0, 'changing': 1.0, 'very': 2.0, 'handles': 1.0, 'stoppers': 1.0, 'handy': 1.0, 'to': 1.0, 'all': 1.0, 'whichever': 1.0, 'complaint': 1.0, 'favorite': 1.0, 'far': 1.0, 'then': 1.0, 'had': 1.0, 'either': 1.0, 'some': 2.0, 'wish': 1.0, 'included': 1.0, 'of': 4.0, 'on': 2.0, 'side': 2.0, 'so': 1.0, 'when': 1.0, 'you': 2.0, 'push': 2.0, 'and': 3.0, 'too': 1.0, 'closed': 1.0, 'don': 1.0, 'diapering': 1.0, 'in': 2.0, 'drawers': 2.0, 'they': 2.0, 'spoiling': 1.0}
Word element => {'definitely': 1.0, 'i': 1.0, 'with': 1.0, 'happy': 1.0, 'would': 1.0, 'was': 1.0, 'looks': 1.0, 'it': 2.0, 'great': 2.0, 'very': 1.0, 'and': 1.0, 'lots': 1.0, 'recommend': 1.0, 'value': 1.0, 'sturdy': 1.0, 'has': 1.0, 'of': 1.0, 'storage': 1.0}
Word element => {'on': 1.0, 'smudges': 1.0, 'dirt': 1.0, 'well': 1.0, 'out': 1.0, 'overall': 1.0, 'are': 1.0, 'there': 1.0, 'of': 2.0, 'drawers': 2.0, 'some': 2.0, 'note': 1.0, 'did': 1.0, 'crib': 1.0, 'in': 1.0, 'pull': 1.0, 'color': 1.0, 'the': 4.0, 'matched': 1.0, 'i': 3.0, 'as': 2.0, 'changing': 1.0, 'difficult': 1.0, 'because': 1.0, 'it': 2.0, 'this': 1.0, 'canvas': 1.0, 'like': 2.0, 'and': 1.0, 'chose': 1.0, 'were': 1.0, 'that': 2.0, 'however': 1.0, 'we': 1.0, 'ordered': 1.0, 'product': 1.0, 'to': 2.0, 'was': 1.0, 'table': 1.0, 'easy': 1.0, 'assemble': 1.0}
Word element => {'recommend': 1.0, 'amazing': 1.0, 'looks': 1.0, 'cheap': 1.0, 'i': 2.0, 'this': 2.0, 'put': 1.0, 'it': 2.0, 'absolutely': 1.0, 'love': 1.0, 'changing': 1.0, 'highly': 1.0, 'and': 1.0, 'table': 1.0, 'together': 1.0, 'was': 1.0, 'easy': 1.0, 'product': 1.0, 'to': 1.0}
Word element => {'than': 1.0, 'are': 1.0, 'good': 1.0, 'look': 1.0, 'set': 1.0, 'short': 1.0, 'back': 3.0, 'way': 1.0, 'pushed': 2.0, 'fall': 1.0, 'shouldn': 1.0, 'also': 1.0, 'some': 1.0, 'be': 1.0, 'force': 1.0, 'and': 2.0, 'they': 2.0, 'holes': 1.0, 'with': 1.0, 'properly': 1.0, 'didn': 1.0, 'since': 1.0, 'us': 1.0, 'of': 1.0, 'i': 1.0, 'two': 1.0, 'line': 1.0, 'together': 1.0, 'put': 1.0, 'love': 1.0, 'product': 1.0, 'screws': 1.0, 'baby': 1.0, 'reach': 1.0, 'the': 9.0, 'great': 1.0, 'tell': 1.0, 'took': 1.0, 'far': 1.0, 'sturdy': 1.0, 'nursery': 1.0, 'only': 1.0, 'seem': 1.0, 'test': 1.0, 'it': 4.0, 'looks': 1.0, 'had': 3.0, 'doesn': 1.0, 'was': 1.0, 'in': 1.0, 'all': 1.0, 'as': 3.0, 'to': 5.0, 'our': 1.0, 'pretty': 1.0, 'out': 1.0, 'haven': 1.0, 'weight': 1.0, 'table': 1.0, 'which': 1.0, 'other': 1.0, 'anything': 1.0, 'worried': 1.0, 'says': 1.0, 'wobbly': 1.0, 'up': 3.0, 'this': 2.0, '30': 1.0, 'when': 1.0, 'you': 1.0, 'lbs': 1.0, 'not': 1.0, 'yet': 1.0, 'or': 1.0, 'bit': 1.0, 'baskets': 1.0, 'so': 1.0, 'can': 2.0, 'but': 1.0, 'aren': 1.0, 'that': 2.0, 'changing': 1.0, 'been': 1.0, 'alone': 1.0, 'issue': 1.0, 'should': 1.0, 'have': 1.0, 't': 5.0, 'we': 4.0, 's': 2.0, 'a': 2.0}
Word element => {'frustrating': 1.0, 'etc': 1.0, 'close': 1.0, 'you': 1.0, 'whenever': 1.0, 'keep': 1.0, 'push': 1.0, 'pull': 1.0, 'slot': 1.0, 'drawer': 1.0, 'falling': 1.0, 'in': 1.0, 'use': 2.0, 'not': 1.0, 'diapers': 1.0, 'but': 1.0, 'forward': 1.0, 'straight': 1.0, 'and': 1.0, 'table': 1.0, 'very': 1.0, 'open': 1.0, 'changing': 2.0, 'daily': 1.0, 'it': 1.0, 'looks': 1.0, 'its': 1.0, 'to': 2.0, 'was': 1.0, 'frame': 1.0, 'sits': 1.0, 'great': 1.0, 'the': 5.0, 'are': 2.0, 'so': 1.0, 'small': 1.0, 'assembly': 1.0, 'drawers': 3.0, 'off': 1.0, 'good': 1.0, 'for': 3.0, 'barely': 1.0}
Word element => {'discarded': 1.0, 'in': 1.0, 'intend': 1.0, 'and': 1.0, 'purchased': 1.0, 'came': 2.0, 'either': 1.0, 'them': 1.0, 'had': 1.0, 'screws': 1.0, 'started': 1.0, 'covered': 1.0, 'our': 1.0, 'outside': 1.0, 'that': 5.0, 'after': 2.0, 'on': 1.0, 'changing': 2.0, 'put': 1.0, 'laying': 1.0, 'just': 2.0, 'the': 9.0, 'diacovered': 1.0, 'different': 1.0, 'are': 2.0, 'fabric': 2.0, 'for': 4.0, 'woth': 1.0, 'get': 1.0, 'you': 2.0, 'finish': 1.0, 'what': 1.0, 'when': 1.0, 'dresser': 2.0, 'product': 1.0, 'price': 1.0, 'sides': 1.0, 'actually': 1.0, 'guess': 1.0, 'happily': 1.0, 'two': 1.0, 'ok': 1.0, 'impede': 1.0, 'will': 1.0, 'also': 1.0, 'but': 2.0, 'raining': 1.0, 'completely': 1.0, 'be': 1.0, 'i': 2.0, 'putting': 1.0, 'off': 1.0, 'enough': 1.0, 'or': 3.0, 'back': 2.0, 'pay': 1.0, 'still': 1.0, 'with': 3.0, 'this': 2.0, 'mattress': 1.0, 'stopped': 1.0, 'front': 1.0, 'use': 3.0, 'horrible': 1.0, 'to': 4.0, 'pulled': 1.0, 'a': 5.0, 'we': 8.0, 'frame': 3.0, 'cardboard': 1.0, 'smelly': 1.0, 'separately': 1.0, 'given': 1.0, 'drawers': 1.0, 'no': 3.0, 'there': 2.0, 'bottom': 2.0, 'were': 1.0, 'parts': 1.0, 'pad': 1.0, 'stop': 1.0, 'short': 1.0, 'their': 1.0, 'intended': 1.0, 'was': 2.0, 'is': 4.0, 'at': 1.0, 'flimsy': 1.0, 'by': 1.0, 'home': 1.0, 'assembly': 1.0, 'smell': 1.0, 'garage': 1.0, 'offgas': 1.0, 'week': 1.0, 'smelling': 1.0, 'too': 1.0, 'one': 2.0, 'part': 1.0, 'plastic': 1.0, 'have': 2.0, 'hardware': 1.0, 'it': 7.0, 'already': 1.0}
Word element => {'too': 1.0, 'flimsy': 1.0, 'they': 1.0, 'but': 1.0, 'and': 3.0, 'table': 1.0, 'changing': 1.0, 'very': 1.0, 'nice': 1.0, 'are': 1.0, 'the': 2.0, 'baskets': 1.0, 'due': 1.0, 'support': 1.0, 'cheap': 1.0, 'of': 1.0, 'is': 1.0, 'falling': 1.0, 'keep': 1.0, 'lack': 1.0, 'to': 1.0, 'look': 1.0, 'sturdy': 1.0, 'feel': 1.0}
Word element => {'color': 1.0, 'darker': 1.0, 'in': 1.0, 'the': 1.0, 'to': 1.0, 'liked': 1.0, 'have': 2.0, 'just': 1.0, 'good': 1.0, 'value': 1.0, 'drawers': 1.0, 'what': 1.0, 'i': 1.0, 'needed': 1.0, 'price': 1.0, 'would': 1.0, 'at': 1.0, 'a': 2.0, 'great': 1.0}
Word element => {'fee': 1.0, 'their': 1.0, 'return': 1.0, 'even': 1.0, 'not': 1.0, 'now': 1.0, 'm': 1.0, 'nice': 2.0, 'restocking': 1.0, 'they': 1.0, 'drawers': 1.0, 'will': 1.0, 'also': 1.0, 'worst': 1.0, 'whether': 1.0, 'far': 1.0, 'by': 1.0, 'was': 1.0, 'other': 1.0, 'have': 2.0, 'made': 1.0, 'look': 1.0, 'cheaply': 1.0, 'i': 7.0, 'of': 1.0, 'once': 1.0, 'since': 1.0, 'at': 1.0, 'worth': 1.0, 'or': 1.0, 'behind': 1.0, 'truck': 1.0, 'drug': 1.0, 'ups': 1.0, 'this': 4.0, 'it': 4.0, 'looked': 1.0, 'box': 1.0, 'that': 1.0, 'been': 1.0, 'changing': 2.0, 'very': 1.0, 'arrived': 1.0, 'my': 1.0, 'house': 1.0, 'furniture': 1.0, 'put': 1.0, 't': 1.0, 'a': 4.0, 'well': 1.0, 'had': 2.0, 'as': 1.0, 'to': 4.0, 'in': 2.0, 'like': 1.0, 'table': 3.0, 'which': 1.0, 'are': 1.0, 'everthing': 1.0, 'went': 2.0, 'however': 1.0, 'don': 1.0, 'up': 1.0, 'opened': 1.0, 'broken': 1.0, 'piece': 2.0, 'the': 5.0, 'website': 1.0, 'and': 3.0, 'pieces': 1.0, 'requested': 1.0, 'new': 1.0, 'bought': 1.0, 'one': 3.0, 'although': 1.0, 'came': 1.0, 'shipping': 1.0, 'pay': 1.0, 'still': 1.0, 'idea': 1.0, 'when': 1.0, 'value': 1.0, 'together': 1.0, 'broke': 1.0, 'debating': 1.0, 'is': 2.0}
Word element => {'needs': 1.0, 'does': 1.0, 'thank': 1.0, 'baby': 1.0, 'onto': 1.0, 'bottom': 1.0, 'perfectly': 1.0, 'infant': 1.0, 'what': 1.0, 'boughtsummer': 1.0, 'one': 1.0, 'many': 1.0, 'there': 1.0, 'beautiful': 1.0, 'recommend': 1.0, 'bed': 1.0, 'flat': 1.0, 'pad': 2.0, 'changing': 4.0, 'own': 2.0, 'annoys': 1.0, 'will': 2.0, 'looks': 1.0, 'useless': 1.0, 'it': 5.0, 'line': 1.0, 'pull': 1.0, 'fragile': 1.0, 'despite': 1.0, 'decent': 1.0, 'knew': 1.0, 'but': 3.0, 'in': 2.0, 'me': 1.0, 'not': 1.0, 'affordable': 2.0, 'do': 1.0, 'its': 6.0, 'thin': 1.0, 'appearance': 1.0, 'now': 1.0, 'pads': 1.0, 'to': 2.0, 'completely': 1.0, 'comes': 1.0, 'fall': 1.0, 'is': 1.0, 'i': 5.0, 'cloth': 1.0, 'thoughtful': 1.0, 'for': 4.0, 'if': 2.0, 'looking': 1.0, 'simple': 2.0, 'satisfied': 1.0, 'like': 2.0, 'which': 2.0, 'table': 3.0, 'too': 2.0, 'and': 7.0, 'fits': 1.0, 'my': 1.0, 'purchase': 1.0, 'sturdy': 1.0, 'mattress': 2.0, 'perfect': 1.0, 'this': 3.0, 'buying': 1.0, 'with': 2.0, 'made': 2.0, 'out': 3.0, 'you': 3.0, 'when': 1.0, 'am': 1.0, 'still': 1.0, 'very': 1.0, 'drawers': 2.0, 'are': 2.0, 'insert': 1.0, 'of': 1.0, 'going': 1.0, 'a': 3.0, 'canvas': 1.0, 'highly': 2.0, 'material': 1.0, 'the': 6.0, 'cardboard': 1.0, 'contoured': 1.0, 'taste': 1.0, 'far': 1.0, 'then': 1.0, 'bases': 1.0, 'something': 1.0, 'each': 1.0, 'your': 3.0, 'make': 1.0, 'quite': 1.0}
Word element => {'happy': 1.0, 'easy': 2.0, 'table': 1.0, 'was': 1.0, 'store': 1.0, 'prestine': 1.0, 'great': 1.0, 'such': 1.0, 'nicely': 1.0, 'arrived': 1.0, 'this': 1.0, 'with': 2.0, 'it': 3.0, 'space': 1.0, 'blankets': 1.0, 'purchase': 1.0, 'neat': 1.0, 'changing': 1.0, 'our': 1.0, 'to': 3.0, 'all': 1.0, 'as': 1.0, 'parts': 1.0, 'in': 2.0, 'able': 1.0, 'included': 1.0, 'is': 2.0, 'many': 1.0, 'size': 1.0, 'looking': 1.0, 'small': 1.0, 'items': 1.0, 'for': 1.0, 'assemble': 1.0, 'and': 3.0, 'sturdy': 1.0, 'a': 2.0, 'we': 2.0, 'are': 3.0, 'clothes': 1.0, 'diapers': 1.0, 'deep': 1.0, 'very': 2.0, 'access': 1.0, 'condition': 1.0, 'drawers': 1.0, 'they': 1.0, 'stay': 1.0, 'the': 1.0, 'place': 1.0}
Word element => {'see': 1.0, 'll': 1.0, 'mat': 1.0, 'get': 1.0, 'contoured': 2.0, 'flat': 1.0, '1': 1.0, 'is': 1.0, 'changing': 1.0, 'inch': 1.0, 'self': 1.0, 'there': 1.0, 'due': 1.0, 'and': 2.0, 'his': 1.0, 've': 1.0, 'in': 2.0, 'isn': 1.0, 'i': 3.0, 'storage': 1.0, 'we': 1.0, 'a': 2.0, 's': 2.0, 't': 2.0, 'the': 3.0, 'diaper': 1.0, 'pad': 2.0, 'granted': 1.0, 'for': 1.0, 'months': 1.0, 'but': 1.0, 'clothes': 1.0, 'baby': 1.0, 'quality': 1.0, '3': 1.0, 'put': 1.0, 'not': 2.0, 'baskets': 1.0, 'organized': 1.0, 'needs': 1.0, 'so': 1.0, 'much': 1.0, 'below': 1.0, 'this': 1.0, 'it': 2.0, 'hard': 1.0, 'changer': 1.0, 'beautiful': 1.0, 'good': 1.0, 'future': 1.0, 'space': 1.0, 'flimsy': 1.0, 'didn': 1.0, 'find': 1.0, 'all': 1.0, 'our': 1.0, 'to': 1.0, 'together': 1.0, 'just': 1.0, 'by': 1.0, 'pregger': 1.0, 'may': 1.0, 'my': 1.0}
Word element => {'out': 3.0, 'couple': 1.0, 'complaint': 1.0, 'different': 1.0, 'drawers': 3.0, 'they': 2.0, 'i': 3.0, 'tend': 2.0, 'houses': 1.0, 'stable': 1.0, 'if': 3.0, 'around': 1.0, 'large': 1.0, 'passed': 1.0, 'by': 1.0, 'survived': 1.0, 'messy': 1.0, 'assemble': 1.0, 'for': 1.0, 'don': 1.0, 'up': 1.0, 'years': 1.0, 'baby': 3.0, 'been': 1.0, 'take': 1.0, 'we': 1.0, 'a': 5.0, 'ago': 1.0, 't': 1.0, 'biggest': 1.0, 'would': 1.0, 'my': 1.0, 'another': 1.0, 'down': 2.0, 'stick': 2.0, 'hard': 3.0, 'wood': 1.0, 'while': 1.0, 'it': 7.0, 'this': 2.0, 'got': 1.0, 'chaotic': 1.0, 'and': 4.0, '1': 1.0, 'moves': 1.0, 'of': 1.0, 'the': 7.0, '2': 1.0, 'can': 2.0, 'but': 1.0, 'when': 1.0, 'now': 1.0, 'pretty': 1.0, 'to': 8.0, 'all': 1.0, 'clothes': 1.0, 'was': 1.0, 'table': 3.0, 'easy': 1.0, 'time': 1.0, 'line': 1.0, 'correctly': 1.0, 'blankets': 1.0, 'you': 3.0, 'push': 2.0, 'back': 1.0, 'top': 1.0, 's': 2.0, 'giving': 1.0, 'very': 2.0, 'two': 1.0, 'little': 1.0, 'is': 4.0, 'look': 1.0, 'realize': 1.0, 'toddler': 1.0, 'stuff': 2.0, 'correct': 1.0, 'slowing': 1.0, 'folding': 1.0, 'tucking': 1.0, 'in': 1.0, 'nicely': 1.0, 'have': 2.0, 'running': 1.0, 'too': 1.0, 'lot': 1.0, 'crying': 1.0, 'changing': 3.0, 'do': 1.0, 'has': 1.0, 'them': 1.0, 'always': 1.0, 'makes': 1.0, 'seem': 1.0, 'looking': 1.0, 'buy': 1.0, 'were': 1.0}
Word element => {'on': 1.0, 'hitting': 1.0, 'prevent': 1.0, 'help': 1.0, 'will': 1.0, 'curve': 1.0, 'a': 1.0, 'has': 1.0, 'you': 1.0, 'baby': 2.0, 'one': 1.0, 'often': 1.0, 'changing': 1.0, 'very': 1.0, 'and': 1.0, 'head': 1.0, 'like': 1.0, 'pad': 1.0, 'use': 1.0, 'we': 1.0, 'replace': 1.0, 'great': 1.0, 'the': 6.0, 'make': 1.0, 'product': 1.0, 'right': 1.0, 'its': 2.0, 'to': 2.0, 'side': 1.0, 'is': 1.0, 'really': 2.0, 'easier': 1.0, 'that': 3.0, 'drawers': 1.0, 'this': 1.0, 'with': 1.0, 'only': 1.0, 'it': 2.0, 'come': 1.0, 'out': 1.0, 'putting': 1.0, 'slight': 1.0, 'recommendation': 1.0, 'clothing': 1.0, 'in': 1.0}
Word element => {'normal': 1.0, 'amazon': 1.0, 'with': 1.0, 'orders': 1.0, 'many': 1.0, 'had': 2.0, 'have': 1.0, 'completely': 1.0, 'is': 2.0, 'return': 1.0, 'way': 1.0, 'damaged': 1.0, 'dent': 1.0, 'wrong': 1.0, 'not': 2.0, 'there': 1.0, 'shipment': 1.0, 'during': 1.0, 'crack': 1.0, 'or': 2.0, 'don': 1.0, 'else': 1.0, 'other': 1.0, 'anything': 1.0, 'ordering': 1.0, 're': 1.0, 'be': 3.0, 'will': 2.0, 'best': 1.0, 'were': 1.0, 'when': 1.0, 'one': 1.0, 'for': 1.0, 'another': 1.0, 'about': 1.0, 'in': 2.0, 'appreciated': 1.0, 'promptly': 1.0, 'shop': 1.0, 'they': 1.0, 'wire': 1.0, 'the': 11.0, 'first': 1.0, 'cracked': 1.0, 'this': 3.0, 'and': 3.0, 'like': 1.0, 'know': 1.0, 'evaluating': 1.0, 'table': 1.0, '2nd': 1.0, 'got': 1.0, 'didn': 1.0, 'much': 1.0, 'it': 5.0, 'arrive': 1.0, 'so': 1.0, 'after': 1.0, 'was': 6.0, 'elsewhere': 1.0, 'any': 1.0, 'ourselves': 1.0, 'as': 2.0, 'to': 5.0, 'sent': 1.0, 'inquiring': 1.0, 'going': 1.0, 'a': 1.0, 't': 2.0, 'we': 7.0, 'order': 2.0, 'took': 1.0, 'problem': 1.0, 'shipped': 1.0, 'tried': 1.0, 'changer': 1.0, 'out': 1.0, 'of': 1.0, 'that': 2.0, 'changing': 1.0, 'box': 2.0, 'put': 2.0, 'together': 2.0, 'if': 2.0, 'being': 1.0, 'irritated': 1.0, 'fix': 1.0, 'down': 1.0, 'hope': 1.0, 'by': 1.0, 'just': 1.0}
Word element => {'love': 1.0, 'baby': 1.0, 'about': 1.0, 'changing': 1.0, 'table': 1.0, 'don': 1.0, 'up': 2.0, 'and': 2.0, 'cure': 1.0, 'with': 1.0, 'comparing': 1.0, 'it': 1.0, 'setting': 1.0, 'others': 1.0, 'is': 3.0, 'not': 1.0, 'i': 3.0, 'here': 1.0, 'complaint': 1.0, 'scratches': 1.0, 'experience': 1.0, 'won': 1.0, 'review': 1.0, 'purchase': 1.0, 'my': 2.0, 'color': 1.0, 'yet': 1.0, 'see': 1.0, 'the': 3.0, 'basically': 1.0, 'overall': 1.0, 'dark': 1.0, 'what': 1.0, 'to': 1.0, 'all': 1.0, 'so': 1.0, 'baskets': 1.0, 't': 2.0, 'a': 3.0, 's': 1.0, 'beautiful': 1.0, 'espresso': 1.0, 'are': 1.0, 'nice': 1.0, 'touch': 1.0, 'saw': 1.0, 'sturdy': 1.0, 'few': 1.0, 'but': 1.0, 'little': 1.0, 'nothing': 1.0, 'paint': 1.0}
Word element => {'price': 1.0, 'affordable': 1.0, 'an': 1.0, 'at': 1.0, 'nursery': 1.0, 'little': 1.0, 'when': 1.0, 'so': 1.0, 'rail': 1.0, 'top': 1.0, 'safety': 1.0, 'and': 5.0, 'patience': 1.0, 'some': 1.0, 'things': 1.0, 'required': 1.0, 'can': 1.0, 'most': 1.0, 'of': 2.0, 'piece': 1.0, 'use': 1.0, 'front': 1.0, 'instructions': 1.0, 'anyone': 1.0, 'putting': 1.0, 'i': 2.0, 'this': 4.0, 'company': 1.0, 'my': 2.0, 'received': 1.0, 'several': 1.0, 'looking': 1.0, 'definitely': 1.0, 'days': 1.0, 'order': 1.0, 'scheduled': 1.0, 'ability': 1.0, 'before': 1.0, 'dresser': 1.0, 'daughter': 1.0, 'together': 1.0, 'recommend': 1.0, 'beautiful': 1.0, 'was': 1.0, 'the': 4.0, 'older': 1.0, 'fill': 1.0, 'in': 2.0, 'furniture': 2.0, 'gaps': 1.0, 'while': 1.0, 'wife': 1.0, 'she': 1.0, 'remove': 1.0, 'it': 1.0, 'arrive': 1.0, 'looks': 1.0, 'strap': 1.0, 'are': 1.0, 'using': 1.0, 'product': 2.0, 'for': 2.0, 'as': 1.0, 'to': 4.0, 'our': 2.0, 'would': 1.0, 'new': 1.0, 'quality': 1.0, 'clothes': 1.0, 'baby': 1.0, 'a': 2.0, 's': 1.0, 'we': 1.0, 'is': 1.0, 'finished': 1.0, 'plan': 1.0}
Word element => {'sturdiness': 1.0, 'some': 1.0, 'place': 1.0, 'got': 1.0, 'no': 1.0, 'else': 3.0, 'anything': 1.0, 'return': 1.0, 'want': 1.0, 'love': 1.0, 'wishing': 1.0, 'just': 2.0, 'first': 1.0, 'are': 1.0, 'deck': 1.0, 'out': 1.0, 'night': 1.0, 'makes': 1.0, 'did': 2.0, 'fan': 1.0, 'fact': 1.0, 'living': 1.0, 'stuffy': 1.0, 'started': 1.0, 'overnight': 1.0, 'been': 1.0, 'had': 1.0, 'fans': 2.0, 'sooo': 2.0, 'man': 2.0, 'something': 2.0, 'lacquer': 1.0, 'smelled': 2.0, 'strong': 3.0, 'believe': 1.0, 'not': 1.0, 's': 1.0, 'also': 1.0, 'made': 1.0, 'which': 1.0, 'basically': 1.0, 'two': 2.0, 'option': 1.0, 'another': 1.0, 'varnish': 1.0, 'was': 2.0, 'soon': 1.0, 'there': 1.0, 'wish': 2.0, 'thing': 2.0, 'whole': 1.0, 'home': 1.0, 'by': 1.0, 'sit': 2.0, 'day': 2.0, 'somewhat': 1.0, 'have': 3.0, 'up': 4.0, 'set': 1.0, 'drawback': 1.0, 'oh': 1.0, 'with': 5.0, 'scratchy': 1.0, '34': 2.0, 'nicely': 1.0, 'that': 6.0, 'i': 8.0, 'as': 2.0, 'how': 1.0, 'besides': 1.0, 'our': 3.0, 'room': 1.0, 'these': 1.0, 'comes': 1.0, 'husband': 2.0, 'more': 1.0, 'look': 1.0, 'at': 1.0, 'is': 6.0, 'so': 4.0, 'put': 4.0, 'much': 1.0, 'do': 2.0, 'then': 2.0, 'we': 11.0, 't': 4.0, 'could': 2.0, 'ways': 1.0, 'star': 1.0, 'a': 6.0, 'pictured': 1.0, 'today': 1.0, '3': 1.0, 'on': 5.0, 'directly': 1.0, 'toxic': 2.0, 'overall': 2.0, 'issue': 1.0, 'ordered': 1.0, '5': 1.0, 'stopper': 1.0, 'of': 2.0, 'the': 23.0, 'from': 1.0, 'feels': 1.0, 'but': 4.0, 'espresso': 1.0, 'few': 1.0, 'this': 5.0, 'it': 20.0, 'same': 1.0, 'felt': 1.0, 'hadn': 1.0, 'in': 7.0, 'reversible': 2.0, 'said': 1.0, 'picked': 1.0, 'getting': 1.0, 'beautiful': 1.0, 'hard': 1.0, 'open': 1.0, 'google': 1.0, 'color': 1.0, 'happy': 1.0, 'rating': 1.0, 'one': 2.0, 'hoping': 1.0, 'unpackaged': 1.0, 'to': 5.0, 'against': 1.0, 'pretty': 2.0, 'they': 3.0, 'sturdy': 1.0, 'almost': 1.0, 'really': 1.0, 'like': 3.0, 'picture': 1.0, 'contacted': 1.0, 'searched': 1.0, 'even': 3.0, 'clears': 1.0, 'storage': 3.0, 'shows': 1.0, 'and': 15.0, 'guaranteed': 1.0, 'den': 2.0, 'would': 2.0, 'trade': 1.0, 'aspect': 1.0, 'only': 1.0, 'company': 2.0, 'aligned': 1.0, 'front': 1.0, 'edge': 1.0, 'since': 1.0, 'future': 1.0, 'very': 1.0, 'commend': 1.0, 'dresser': 1.0, 'for': 1.0, 'baby': 1.0, 'next': 3.0, 'them': 1.0, 'bathroom': 1.0, 'kept': 1.0, 'exchange': 1.0, 'am': 2.0, 'window': 2.0, 'drawers': 2.0, 'again': 1.0, 'finish': 2.0, 'glad': 1.0, 'about': 1.0, 'throat': 1.0, 'office': 1.0, 'however': 1.0, 'went': 1.0, 'don': 3.0, 'addressed': 1.0, 'my': 2.0, 'me': 3.0, 'non': 1.0, 'help': 1.0, 'problem': 1.0, 'cold': 1.0, 'though': 2.0, 'or': 5.0, 'returns': 1.0, 'stressed': 1.0}
Word element => {'price': 1.0, 'cant': 1.0, 'you': 1.0, 'go': 1.0, 'very': 1.0, 'espresso': 1.0, 'other': 1.0, 'pieces': 1.0, 'perfect': 1.0, 'happy': 1.0, 'my': 1.0, 'color': 1.0, 'build': 1.0, 'not': 1.0, 'able': 1.0, 'have': 1.0, 'ideal': 1.0, 'score': 1.0, 'apartment': 1.0, 'so': 1.0, 'small': 1.0, 'are': 1.0, 'im': 1.0, 'love': 1.0, 'with': 2.0, 'hard': 1.0, 'this': 2.0, 'it': 2.0, 'a': 3.0, 'saver': 1.0, 'i': 4.0, 'chose': 1.0, 'and': 3.0, 'draws': 1.0, 'use': 1.0, 'these': 1.0, 'the': 3.0, 'great': 1.0, 'such': 1.0, 'space': 1.0, 'its': 1.0, 'beat': 1.0, 'matches': 1.0, 'was': 3.0, 'to': 3.0, 'really': 1.0}
Word element => {'price': 1.0, 'good': 1.0, 'quality': 1.0, 'very': 1.0, 'need': 1.0, 'everything': 1.0, 'downstairs': 1.0, 'i': 2.0, 'needed': 1.0, 'holds': 1.0, 'perfect': 1.0, 'solution': 1.0, 'the': 2.0, 'station': 1.0, 'small': 1.0, 'for': 3.0, 'it': 1.0, 'changing': 1.0, 'a': 2.0, 'space': 1.0, 'to': 1.0, 'have': 1.0}
Word element => {'made': 1.0, 'the': 3.0, 'are': 1.0, 'broken': 1.0, 'same': 1.0, 'is': 1.0, 'pieces': 1.0, 'start': 1.0, 'box': 1.0, 'good': 1.0, 'everything': 1.0, 'materials': 1.0, 'opened': 1.0, 'plywood': 1.0, 'two': 1.0, 'that': 1.0, 'were': 1.0, 'when': 1.0, 'cheap': 1.0, 'i': 1.0, 'of': 2.0, 'up': 1.0, 'not': 1.0, 'a': 1.0}
Word element => {'us': 1.0, 'wish': 1.0, 'reversed': 1.0, 'just': 2.0, 'sides': 1.0, 'both': 1.0, 'handles': 1.0, 'luckily': 1.0, 'when': 1.0, 'gentle': 1.0, 'really': 1.0, 'so': 2.0, 'wasn': 1.0, 'came': 1.0, 'within': 1.0, 'be': 2.0, 'out': 3.0, 'or': 1.0, 'weeks': 1.0, 'would': 2.0, 'up': 1.0, 'hold': 1.0, 'wood': 2.0, 'overall': 1.0, 'thin': 2.0, 'add': 1.0, 'better': 2.0, 'think': 1.0, 'time': 1.0, 'top': 2.0, 'back': 1.0, 'were': 2.0, 'piece': 2.0, 'with': 1.0, 'on': 5.0, 'cons': 1.0, 'go': 1.0, 't': 5.0, 'a': 2.0, 'screws': 1.0, 'baby': 2.0, 'started': 1.0, 'way': 1.0, 'assemble': 1.0, 'for': 8.0, 'to': 7.0, 'all': 2.0, 'sewn': 1.0, 'our': 1.0, 'clothes': 1.0, 'was': 2.0, 'nursery': 1.0, 'works': 3.0, 've': 1.0, 'each': 1.0, 'in': 2.0, 'tightly': 1.0, 'room': 1.0, 'since': 1.0, 'space': 1.0, 'drawers': 10.0, 'they': 4.0, 'have': 4.0, 'didn': 3.0, 'however': 1.0, 'easy': 1.0, 'table': 3.0, 'and': 4.0, 'much': 2.0, 'changing': 3.0, 'been': 1.0, 'don': 1.0, 'storage': 2.0, 'middle': 1.0, 'bought': 1.0, 'lot': 1.0, '2nd': 1.0, 'too': 2.0, 'one': 3.0, 'months': 1.0, 'guess': 1.0, 'color': 1.0, 'extra': 1.0, 'design': 2.0, 'etc': 1.0, 'great': 1.0, 'two': 1.0, 'nice': 1.0, 'of': 6.0, 'the': 22.0, 'this': 2.0, 'thought': 1.0, 'it': 11.0, 'sturdier': 1.0, 'pros': 1.0, 'annoying': 1.0, 'heavy': 1.0, 'stuck': 1.0, 'about': 1.0, 'heavier': 1.0, 'four': 1.0, 'over': 2.0, 'work': 2.0, 'handle': 1.0, 'is': 3.0, 'look': 1.0, 'we': 3.0, 'fine': 1.0, 'that': 1.0, 'fall': 2.0, 'because': 3.0, 'diapers': 1.0, 'first': 2.0, 'are': 2.0, 'canvas': 3.0, 'if': 3.0, 'starts': 1.0, 'onto': 1.0, 'love': 1.0, 'bottom': 2.0, 'use': 2.0, 'using': 1.0, 'light': 1.0, 'pulling': 1.0, 'drawer': 4.0, 'onsies': 1.0, 'i': 7.0, 'well': 1.0, 'made': 1.0, 'which': 1.0, 'side': 1.0, 'towels': 1.0, 'quite': 1.0, 're': 1.0, 'gets': 2.0, 'adjust': 1.0}
Word element => {'power': 1.0, 'putting': 1.0, 'great': 1.0, 'worth': 1.0, 'well': 1.0, 'item': 1.0, 'with': 1.0, 'is': 2.0, 'comes': 1.0, 'pad': 1.0, 'thicker': 1.0, 'separate': 1.0, 'purchasing': 1.0, 'recommend': 1.0, 'would': 1.0, 'were': 1.0, 'you': 1.0, 'if': 1.0, 'use': 1.0, 'need': 1.0, 'flimsy': 1.0, 'since': 1.0, 'money': 1.0, 'but': 2.0, 'not': 2.0, 'in': 2.0, 'different': 1.0, 'm': 1.0, 'drill': 1.0, 'extra': 1.0, 'sent': 1.0, '4': 1.0, 'i': 6.0, 'one': 1.0, 'huge': 1.0, 'bought': 1.0, 'this': 1.0, 'looks': 1.0, 'it': 3.0, 'had': 1.0, 'together': 1.0, 'dresser': 1.0, 'required': 1.0, 'matches': 1.0, 'storage': 1.0, 'sorelle': 1.0, 'for': 1.0, 'going': 1.0, 'a': 5.0, 'changing': 4.0, 'that': 2.0, 'of': 1.0, 'rather': 1.0, 'hands': 1.0, 'place': 1.0, 'the': 5.0, 'as': 1.0, 'to': 4.0, 'all': 1.0, 'are': 1.0, 'they': 1.0, 'espresso': 1.0, 'table': 3.0, 'using': 1.0, 'hold': 2.0, 'baskets': 2.0, 'so': 1.0, 'do': 1.0, 'much': 1.0, 'company': 1.0, 'my': 1.0, 'crib': 2.0, 'and': 4.0, 'tuscany': 1.0, 'put': 1.0, 'stuff': 2.0, 'on': 1.0, 'changer': 1.0, 'back': 1.0, 'top': 1.0}
Word element => {'it': 1.0, 'from': 1.0, 'stay': 1.0, 'material': 1.0, 'paints': 1.0, 'quality': 1.0, 'very': 1.0, 'in': 1.0, 'is': 1.0, 'the': 1.0, 'away': 1.0, 'return': 1.0, 'this': 2.0, 'item': 1.0, 'details': 1.0, 'poor': 4.0, 'to': 1.0, 'product': 1.0, 'i': 2.0, 'decided': 1.0, 'when': 1.0, 'open': 1.0, 'box': 1.0}
Word element => {'product': 1.0, 'wet': 1.0, 'survive': 1.0, 'small': 1.0, 'my': 1.0, 'mind': 1.0, 'of': 2.0, 'amounts': 1.0, 'disneyland': 1.0, 'indescribable': 1.0, 'peace': 1.0, 'write': 1.0, 'getting': 1.0, 'me': 1.0, 'on': 1.0, 'these': 1.0, 'they': 1.0, 'it': 1.0, 'with': 2.0, 'children': 1.0, 'perfect': 1.0, 'in': 1.0, 'gave': 1.0, 'when': 1.0, 'you': 1.0, 'a': 1.0, 'simple': 1.0, 'sharpie': 1.0, 'will': 1.0}
Word element => {'on': 1.0, 'snap': 1.0, 'car': 1.0, 'in': 1.0, 'keep': 1.0, 'use': 1.0, 'that': 1.0, 'were': 1.0, 'to': 1.0, 'i': 2.0, 'undo': 2.0, 'doesn': 1.0, 'quicker': 1.0, 'you': 1.0, 'easily': 1.0, 'with': 1.0, 'the': 3.0, 'it': 4.0, 'band': 1.0, 'like': 2.0, 'dad': 1.0, 'clasp': 1.0, 'outings': 2.0, 'but': 2.0, 'can': 2.0, 'harder': 1.0, 'daughter': 1.0, 'mom': 1.0, 'for': 2.0, 'this': 2.0, 'wish': 1.0, 'maybe': 1.0, 'than': 1.0, 'temporary': 1.0, 'eventually': 1.0, 'my': 1.0, 'so': 1.0, 'smaller': 1.0, 'out': 1.0, 'and': 4.0, 'or': 2.0, 't': 2.0, 'a': 3.0, 'keyhole': 1.0, 'great': 1.0, 'stranger': 1.0, 'figure': 1.0, 'little': 1.0, 'key': 1.0, 'also': 1.0, 'diary': 1.0, 'teen': 1.0, 'is': 1.0, 'tattoos': 1.0}
Word element => {'be': 1.0, 'would': 1.0, 'short': 1.0, 'too': 1.0, 'longer': 1.0, 'it': 1.0, 'way': 1.0, 'were': 1.0, 'this': 1.0, 'doll': 1.0, 'very': 1.0, 'i': 1.0, 'is': 1.0, 'are': 1.0, 'the': 2.0, 'otherwise': 1.0, 'shorts': 2.0, 'cute': 1.0, 'perfect': 1.0, 'just': 1.0, 'wish': 1.0}
Word element => {'with': 1.0, 'very': 1.0, 'hooks': 1.0, 'out': 1.0, 'swings': 1.0, 'entrance': 1.0, 'living': 1.0, 'between': 1.0, 'off': 1.0, 'house': 2.0, 'it': 2.0, 'she': 3.0, 'needed': 1.0, 'not': 2.0, 'just': 2.0, 'was': 1.0, 'night': 2.0, 'space': 1.0, 'since': 1.0, 'at': 2.0, 'or': 1.0, 'yet': 1.0, 'bed': 1.0, 'purchase': 1.0, 'my': 1.0, 'scottie': 1.0, 'does': 1.0, 'sister': 1.0, 'this': 1.0, 'new': 1.0, 'a': 2.0, 's': 1.0, 'kitchen': 2.0, 'plenty': 1.0, 'pleased': 1.0, 'used': 1.0, 'her': 1.0, 'trick': 1.0, 'dog': 1.0, 'rest': 1.0, 'to': 2.0, 'our': 1.0, 'sleep': 1.0, 'into': 1.0, 'female': 1.0, 'take': 1.0, 'safe': 1.0, 'runs': 1.0, 'during': 1.0, 'goes': 1.0, 'free': 1.0, 'has': 1.0, 'great': 1.0, 'day': 1.0, 'and': 3.0, 'in': 1.0, 'for': 1.0, 'where': 1.0, 'still': 1.0, 'of': 2.0, 'room': 2.0, 'place': 1.0, 'the': 8.0, 'gate': 1.0, 'is': 1.0}
Word element => {'for': 1.0, 'babies': 1.0, 'that': 1.0, 'their': 1.0, 've': 1.0, 'daily': 1.0, 'cotton': 1.0, 'to': 1.0, 'm': 1.0, 'said': 1.0, 'is': 1.0, 'i': 3.0, 'pjs': 1.0, 'my': 1.0, 'wash': 1.0, 'up': 1.0, 'of': 1.0, 'moist': 1.0, 'from': 1.0, 'very': 1.0, 'her': 2.0, 'got': 1.0, 'so': 1.0, 'wakes': 1.0, 'quite': 1.0, 'diaper': 1.0, 'the': 4.0, 'we': 1.0, 'pajamas': 1.0, 'baby': 1.0, 'lovely': 1.0, 'really': 1.0, 'forced': 1.0, 'every': 1.0, 'highly': 1.0, 'morning': 1.0, 'collection': 1.0, 'soft': 1.0, 'under': 1.0, 'sleepwear': 1.0, 'nile': 1.0, 'jammies': 1.0, 'like': 1.0, 'are': 1.0, 'simplicity': 1.0, 'no': 1.0, 'logos': 1.0, 'and': 1.0, 'recommend': 1.0}
Word element => {'floor': 1.0, 'the': 1.0, 'toddler': 1.0, 'after': 1.0, 'teething': 1.0, 'bit': 1.0, 'a': 2.0, 'wash': 1.0, 'also': 2.0, 'could': 1.0, 'easy': 1.0, 'she': 2.0, 'and': 1.0, 'soft': 1.0, 'about': 1.0, 'drops': 1.0, 'second': 1.0, 'always': 1.0, 'as': 1.0, 'from': 1.0, 'little': 2.0, 'birthday': 1.0, 'our': 1.0, 'her': 3.0, 'used': 1.0, 'one': 1.0, 'on': 4.0, 'until': 1.0, 'we': 1.0, 'my': 1.0, 'gums': 1.0, 'daughter': 1.0, 'to': 2.0, 'was': 3.0, 'chew': 1.0, 'toothbrush': 1.0, 'use': 1.0, 'excited': 1.0, 'this': 1.0, 'first': 1.0, 'it': 5.0}
Word element => {'them': 1.0, 'love': 1.0, 'took': 1.0, 'doors': 1.0, 'closet': 1.0, 'curtains': 1.0, 'off': 1.0, 'the': 1.0, 'my': 1.0, 'and': 1.0, 'daughters': 1.0, 'used': 1.0, 'these': 1.0}
Word element => {'price': 1.0, 'worth': 1.0, 'leaking': 1.0, 'is': 2.0, 'with': 1.0, 'it': 4.0, 'the': 5.0, 'big': 1.0, 'great': 1.0, 't': 1.0, 'a': 4.0, 'has': 1.0, 'just': 2.0, 'wet': 1.0, 'use': 1.0, 'in': 1.0, 'wash': 1.0, 'soiled': 1.0, 'had': 1.0, 'to': 1.0, 'for': 3.0, 'love': 1.0, 'bag': 4.0, 'bigger': 2.0, 'that': 1.0, 'been': 1.0, 'little': 1.0, 'i': 2.0, 'cloth': 1.0, 'us': 1.0, 'can': 1.0, 'never': 1.0, 'toss': 1.0, 'too': 1.0, 'and': 1.0, 'enough': 1.0, 'hold': 1.0, 'haven': 1.0, 'several': 1.0, 'diapers': 1.0, 'small': 1.0, 'after': 1.0, 'year': 1.0, 'almost': 1.0, 'problem': 1.0, 'owning': 1.0, 'still': 1.0, 'found': 1.0, 'definitely': 1.0}
Word element => {'odor': 1.0, 'the': 1.0, 'clean': 1.0, 'easy': 2.0, 'keeps': 1.0, 'carry': 1.0, 'it': 1.0, 's': 1.0, 'i': 1.0, 'everything': 1.0, 'a': 1.0, 'and': 1.0, 'wanted': 1.0, 'in': 2.0, 'open': 1.0, 'light': 1.0, 'wet': 1.0, 'bag': 1.0, 'to': 3.0}
Word element => {'in': 3.0, 'is': 2.0, 'second': 1.0, 'bummis': 3.0, 'bad': 1.0, 'a': 2.0, 'for': 3.0, 'one': 1.0, 'wet': 2.0, 'use': 1.0, 'my': 2.0, 're': 1.0, 'the': 5.0, 'these': 1.0, 'it': 3.0, 'this': 1.0, 'durable': 1.0, 'i': 2.0, 'bag': 4.0, 'bags': 2.0, 'are': 1.0, 'pacifier': 1.0, 'thin': 1.0, 'and': 2.0, 'not': 2.0, 'purchased': 1.0, 'excellent': 1.0, 'money': 1.0, 'but': 2.0, 'back': 1.0, 'baby': 1.0, 'quality': 1.0, 'makes': 1.0, 'good': 1.0, 'wash': 1.0, 'up': 1.0, 'as': 3.0, 'to': 1.0, 'look': 1.0, 'at': 1.0, 'keep': 1.0, 'if': 1.0, 'teethers': 1.0, 'throw': 1.0, 'when': 1.0, 'alright': 1.0, 'you': 1.0, 'looking': 1.0}
Word element => {'price': 1.0, 'especially': 1.0, 'pleased': 1.0, 'them': 1.0, 'clean': 1.0, 'they': 1.0, 'know': 1.0, 'in': 1.0, 'pacifiers': 1.0, 'throw': 1.0, 'can': 1.0, 'i': 3.0, 'depending': 1.0, 'diaper': 1.0, 'odor': 1.0, 'diapers': 2.0, 'or': 1.0, '6': 1.0, 'up': 1.0, 'of': 1.0, 'am': 1.0, 'when': 1.0, 'easily': 2.0, 'couple': 1.0, 'out': 1.0, 'extra': 1.0, 'shown': 1.0, 'more': 1.0, 'holds': 1.0, 'is': 2.0, 'the': 4.0, 'possibly': 1.0, 'and': 3.0, 'wet': 1.0, 'for': 4.0, 'this': 1.0, 'it': 2.0, 'durable': 1.0, 'need': 1.0, 'bag': 2.0, 'we': 1.0, 'a': 2.0, 'going': 1.0, '5': 1.0, 'purse': 1.0, 'about': 1.0, 'to': 2.0, 'any': 1.0, 'size': 1.0, 'on': 1.0, 'your': 1.0, 'has': 1.0, 'contains': 1.0, 'kept': 1.0, 'cleans': 1.0, 'also': 1.0, 'be': 1.0, 'pouch': 1.0, 'very': 1.0, 'so': 1.0, 'far': 1.0, 'are': 1.0, 'pacifier': 1.0, 'great': 1.0, 'nice': 1.0, 'car': 1.0, 'my': 1.0}
Word element => {'at': 1.0, 'girlfriends': 1.0, 'transporting': 1.0, 'don': 1.0, 'about': 1.0, 'for': 3.0, 'love': 1.0, 'pacifier': 1.0, 'wipes': 1.0, 'hold': 1.0, 'very': 1.0, 'and': 4.0, 'get': 1.0, 'couple': 1.0, 'cloth': 2.0, 'price': 1.0, 'absolutely': 1.0, '2': 1.0, 'set': 3.0, 'leak': 1.0, 'of': 1.0, 'larger': 1.0, 'must': 1.0, 'small': 2.0, 'have': 1.0, 'found': 1.0, 'this': 2.0, 'bag': 3.0, 'handy': 1.0, 'diapers': 1.0, '3': 1.0, 'put': 1.0, 'holds': 1.0, 'just': 1.0, 'wet': 1.0, 'baby': 1.0, 'them': 2.0, 'in': 1.0, 'they': 1.0, 'i': 4.0, '4': 1.0, 'washclothes': 1.0, 'am': 1.0, 'buy': 1.0, 'looking': 1.0, 'to': 1.0, 'the': 3.0, 'myself': 1.0, 't': 1.0, 'a': 3.0, 'another': 1.0, 'my': 1.0}
Word element => {'else': 1.0, 'something': 1.0, 'on': 1.0, 'more': 1.0, 'little': 1.0, 'soiled': 1.0, 'if': 1.0, 'use': 2.0, 'reusable': 1.0, 'whole': 1.0, 'really': 1.0, 'hold': 1.0, 'which': 1.0, 'that': 1.0, 'things': 1.0, 'other': 1.0, 'from': 1.0, 'now': 1.0, 'away': 1.0, 'or': 2.0, 'plastic': 1.0, 'inside': 1.0, 'placing': 1.0, 'recommend': 2.0, 'of': 3.0, 'the': 6.0, 'defeats': 1.0, 'diaper': 2.0, 'replace': 1.0, 'purpose': 1.0, 'figured': 1.0, 'to': 5.0, 'it': 6.0, 'this': 2.0, 'in': 2.0, 'are': 1.0, 'contents': 1.0, 'i': 6.0, 'used': 1.0, 'wick': 1.0, 'does': 1.0, 'wetbag': 1.0, 'not': 1.0, 'spending': 1.0, 'placed': 1.0, 'have': 2.0, 'zipper': 1.0, 'can': 1.0, 'but': 1.0, 'cloth': 2.0, 'moisture': 2.0, 'diapers': 1.0, 'got': 1.0, 'end': 1.0, 'only': 1.0, 'works': 1.0, 'try': 1.0, 'dampened': 1.0, 'countless': 1.0, 'toys': 1.0, 'bag': 4.0, 'be': 1.0, 'just': 1.0, 'wet': 2.0, 'by': 1.0, 'looking': 1.0, 'day': 1.0, 'my': 1.0, 'another': 1.0, 't': 1.0, 'a': 4.0, 's': 1.0, 'broken': 1.0, 'and': 1.0, 'couldn': 1.0, 'for': 2.0, 'you': 1.0, 'contain': 1.0, 'times': 1.0, 'hurt': 1.0, 'pinch': 1.0, 'price': 1.0, 'd': 1.0}
Word element => {'works': 1.0, 'leak': 1.0, 'may': 1.0, 'afraid': 1.0, 'be': 1.0, 'would': 1.0, 'pull': 1.0, 'to': 1.0, 'and': 1.0, 'house': 1.0, 'but': 1.0, 'diapers': 2.0, 'use': 3.0, 'small': 2.0, 'due': 1.0, 'for': 3.0, 'bag': 4.0, 'the': 8.0, 'diaper': 1.0, 't': 1.0, 'big': 3.0, 'tie': 1.0, 'cloth': 1.0, 'i': 3.0, 'cute': 1.0, 'around': 1.0, 'should': 1.0, 'it': 1.0, 'wouldn': 1.0, 'binkies': 2.0, 'hold': 1.0, 'easily': 2.0, 'well': 1.0, 'a': 1.0, 'go': 1.0, '4': 2.0, 'on': 1.0}
Word element => {'with': 1.0, 'this': 2.0, 'it': 3.0, 'flip': 1.0, 'run': 1.0, 'to': 2.0, 'i': 5.0, 'that': 2.0, 'in': 2.0, 'up': 1.0, 'soiled': 1.0, 'insert': 1.0, 'for': 2.0, 'needed': 1.0, 'home': 1.0, 'needs': 1.0, 'so': 2.0, 'hand': 1.0, 'if': 1.0, 'wet': 1.0, 'have': 1.0, 'a': 3.0, 'stairs': 1.0, 't': 1.0, 'great': 1.0, 'what': 1.0, 'bag': 2.0, 'need': 1.0, 'works': 1.0, 'do': 1.0, 'far': 1.0, 'sure': 1.0, 'no': 1.0, 'wouldn': 1.0, 'complaints': 1.0, 'not': 1.0, 'because': 1.0, 'would': 1.0, 'trust': 1.0, 'very': 1.0, 'baby': 1.0, 'is': 1.0, 'thin': 1.0, 'suits': 1.0, 'but': 1.0, 'am': 1.0, 'happy': 1.0, 'my': 1.0}
Word element => {'purchase': 1.0, 'in': 1.0, 'disappointed': 1.0, 'clothing': 1.0, 'extra': 1.0, 'wet': 3.0, 'use': 1.0, 'getting': 3.0, 'me': 1.0, 'small': 2.0, 'are': 2.0, 'am': 1.0, 'you': 2.0, 'what': 1.0, 'bag': 3.0, 'this': 2.0, 'misleading': 1.0, 'it': 1.0, 'too': 1.0, 'and': 2.0, 'sold': 1.0, 'is': 3.0, 'an': 1.0, 'diapers': 2.0, 'one': 2.0, 'bought': 1.0, 'much': 1.0, 'tiny': 1.0, 'only': 1.0, 'pack': 2.0, 'very': 2.0, 'means': 1.0, 'that': 4.0, 'glasses': 1.0, 'a': 2.0, 'could': 2.0, 'for': 1.0, 'actually': 1.0, 'product': 1.0, 'fit': 2.0, 'pair': 1.0, 'of': 2.0, 'as': 1.0, 'to': 1.0, 'was': 1.0, 'the': 3.0, 'being': 1.0, 'same': 1.0, 'will': 1.0, 'item': 1.0, 'thinking': 1.0, 'two': 5.0, 'i': 4.0, 'cloth': 1.0, 'bags': 1.0}
Word element => {'there': 1.0, 'time': 1.0, 'till': 1.0, 'say': 1.0, 'wash': 1.0, 'though': 1.0, 'limit': 1.0, 'my': 2.0, 'another': 1.0, 'into': 1.0, 'three': 1.0, 'go': 1.0, 'a': 3.0, 'on': 1.0, '3': 1.0, 'have': 2.0, 'all': 2.0, 'least': 1.0, 'to': 2.0, 'is': 1.0, 'at': 2.0, 'patterns': 1.0, 'hey': 1.0, 'just': 2.0, 'wet': 1.0, 'and': 9.0, 'closed': 1.0, 'works': 1.0, 'its': 3.0, 'poop': 1.0, 'diapering': 1.0, 'in': 2.0, 'bag': 1.0, 'such': 1.0, 'got': 1.0, 'needed': 1.0, 'so': 2.0, 'can': 1.0, 'needless': 1.0, '2': 1.0, 'cover': 1.0, 'four': 1.0, 'cloth': 1.0, 'i': 11.0, 'diaper': 1.0, 'leak': 1.0, 'the': 4.0, 'start': 1.0, 'pricey': 1.0, 'you': 1.0, 'times': 2.0, 'kinda': 1.0, 'not': 1.0, 'love': 2.0, 'he': 1.0, 'this': 1.0, 'with': 1.0, 'already': 1.0, 'it': 4.0, 'off': 1.0, 'was': 1.0, 'better': 1.0, 'one': 1.0, 'money': 1.0, 'bought': 1.0, 'then': 1.0, 'through': 1.0, 'stays': 1.0, '1': 1.0, 've': 1.0, 'knew': 1.0, 'some': 2.0, 'never': 1.0, 'had': 1.0, 'standing': 1.0, 'gone': 1.0, 'multiple': 1.0, 'sill': 1.0, 'haven': 1.0, 'they': 1.0, 'buys': 1.0, 'size': 1.0, 'runny': 1.0, 'plus': 1.0, 'diapers': 1.0, 'first': 1.0, 'bad': 1.0, 'are': 1.0, 'cute': 1.0, 'prefolds': 1.0, 'good': 1.0, 'she': 1.0, 'spending': 2.0, 'baby': 1.0, 'mo': 1.0, 'old': 1.0, 'if': 1.0, 'still': 1.0, 'next': 1.0, 'has': 1.0, 'or': 1.0}
Word element => {'holding': 1.0, 'with': 1.0, 'couple': 1.0, 'every': 1.0, 'price': 1.0, 'had': 1.0, 'what': 1.0, 'were': 1.0, 'days': 1.0, 'looking': 1.0, 'close': 1.0, 'up': 1.0, 'wash': 1.0, 'don': 1.0, 'bags': 1.0, 'bonus': 1.0, 'holder': 1.0, 'pacifier': 1.0, 'was': 1.0, 'recommend': 2.0, 'great': 1.0, 'nice': 1.0, 'big': 1.0, 'into': 1.0, 'holds': 1.0, 'and': 4.0, 'i': 7.0, 'night': 2.0, 'wanted': 1.0, 'bag': 4.0, 'take': 1.0, 'wouldnt': 1.0, 'daily': 1.0, 'month': 1.0, 'it': 3.0, 'in': 1.0, 'dont': 1.0, 'this': 1.0, 'perfect': 2.0, 'my': 4.0, 'not': 1.0, 'wet': 1.0, 'just': 2.0, 'would': 1.0, 'diapers': 4.0, 'but': 2.0, 'room': 1.0, 'as': 4.0, 'to': 3.0, 'your': 1.0, 'sons': 1.0, 'at': 2.0, 'main': 2.0, 't': 1.0, 'a': 2.0, 'of': 2.0, 'plus': 1.0, 'fully': 1.0, 'inserts': 1.0, 'empty': 1.0, 'end': 1.0, 'works': 1.0, 'down': 1.0, 'for': 4.0, 'so': 2.0, 'handful': 1.0, 'have': 2.0, 'the': 6.0, 'collectthe': 1.0, 'diaper': 1.0, 'dirty': 1.0, 'hook': 1.0, 'little': 2.0, 'use': 2.0, 'pouch': 1.0}
Word element => {'case': 1.0, 'out': 1.0, 'good': 1.0, 'quite': 1.0, 'look': 1.0, 'like': 1.0, 'still': 1.0, 'however': 1.0, 'even': 1.0, 'didn': 1.0, 'curtains': 1.0, 'these': 1.0, 'on': 1.0, 'overall': 1.0, 'husband': 1.0, 'sure': 1.0, 'themed': 1.0, 'iron': 1.0, 'certain': 1.0, 'nursery': 1.0, 'not': 1.0, 'i': 5.0, 'noticeable': 1.0, 'no': 1.0, 'about': 1.0, 'alice': 1.0, 'addition': 1.0, 'wonderland': 1.0, 'this': 1.0, 'm': 2.0, 'white': 1.0, 'made': 1.0, 'quality': 1.0, 'them': 2.0, 'valance': 2.0, 'really': 1.0, 'has': 2.0, 'what': 1.0, 'standing': 1.0, 't': 1.0, 's': 1.0, 'a': 2.0, 'black': 1.0, 'front': 1.0, 'see': 1.0, 'cute': 1.0, 'was': 1.0, 'in': 3.0, 'hoping': 1.0, 'and': 2.0, 'rabbits': 1.0, 'the': 6.0, 'is': 1.0, 'more': 1.0, 'idea': 1.0, 'you': 1.0, 'included': 1.0, 'would': 1.0, 'be': 2.0, 'so': 1.0, 'bit': 1.0, 'but': 1.0, 'my': 2.0, 'illustrations': 1.0, 'fact': 1.0, 'need': 2.0, 'of': 2.0, 'fairly': 1.0, 'at': 1.0, 'to': 4.0, 'all': 1.0}
Word element => {'started': 1.0, 'diapers': 1.0, 'but': 1.0, 'than': 1.0, 'little': 1.0, 'a': 1.0, 'smaller': 1.0, 'bag': 1.0, 'hoped': 1.0, 'had': 1.0, 'yet': 1.0, 'using': 2.0, 'for': 1.0, 'wet': 1.0, 'good': 1.0, 'keeps': 1.0, 't': 1.0, 'the': 1.0, 'contained': 1.0, 'smell': 1.0, 'at': 1.0, 'this': 1.0, 'only': 1.0, 'i': 1.0, 'cloth': 2.0, 'haven': 1.0, 'wipes': 1.0, 'time': 1.0}
Word element => {'about': 1.0, 's': 1.0, 'soiled': 1.0, 'have': 1.0, '3': 1.0, 'like': 2.0, 'cloth': 1.0, 'will': 1.0, 'but': 2.0, 'diapers': 1.0, 'or': 1.0, 'holds': 1.0, 'for': 2.0, 'ok': 2.0, '1': 1.0, 'and': 1.0, 'impressed': 1.0, 'it': 1.0, 'only': 2.0, 'with': 1.0, 'bag': 2.0, '4': 1.0, 'when': 1.0, 'is': 1.0, 'traveling': 1.0, 'dirty': 1.0, 'that': 2.0, '2': 1.0, 'diaper': 1.0, 'ones': 2.0, 'not': 1.0, 'a': 1.0}
Word element => {'was': 1.0, 'hold': 1.0, 'not': 1.0, 'bags': 1.0, 'getting': 1.0, 'and': 1.0, 'about': 1.0, '3': 1.0, 'large': 1.0, 'these': 1.0, 'they': 1.0, 'a': 1.0, 'functional': 1.0, 'is': 2.0, '34': 2.0, 'what': 1.0, 'diapers': 1.0, 'but': 1.0, 'thought': 1.0, 'that': 1.0, 'pushing': 1.0, 'it': 1.0, 'gross': 1.0, 'are': 1.0, 'overestimate': 1.0, 'i': 2.0}
Word element => {'not': 1.0, 'or': 1.0, 'out': 2.0, 'them': 2.0, 'hold': 1.0, 'turns': 1.0, 'the': 2.0, 'these': 1.0, 'are': 2.0, 'when': 1.0, 'cloth': 1.0, 'diapers': 2.0, 'in': 1.0, 'dirty': 1.0, 'they': 4.0, 'while': 1.0, 'bags': 1.0, 'smell': 1.0, 'consider': 1.0, 'but': 1.0, 'work': 1.0, 'can': 1.0, 're': 1.0, 't': 1.0, 'we': 1.0, 'ago': 1.0, 'don': 1.0, 'day': 1.0, 'skeptical': 1.0, 'and': 1.0, 'for': 2.0, 'love': 1.0, 'fit': 1.0, 'whether': 1.0, 'i': 6.0, '4': 1.0, '5': 1.0, 'perfect': 2.0, 'wish': 1.0, 'just': 1.0, 'large': 1.0, 'wet': 1.0, 'bag': 1.0, 'had': 1.0, 'was': 1.0, 'one': 1.0, 'months': 1.0, 'bought': 1.0, '8': 1.0, 'd': 1.0}
Word element => {'anything': 1.0, 'putting': 1.0, 'about': 1.0, 'm': 1.0, 'feet': 1.0, 'couple': 1.0, 'top': 1.0, 'staying': 1.0, 'convenient': 1.0, 'drawstring': 1.0, 'closes': 1.0, 'from': 1.0, 'while': 1.0, 'drippy': 1.0, 'nothing': 1.0, 'a': 3.0, 'could': 1.0, 'these': 1.0, 'the': 5.0, 'diaper': 1.0, 'small': 1.0, 'folds': 1.0, 'unfortunately': 1.0, 'are': 1.0, 'waterproof': 1.0, 'is': 2.0, 'away': 1.0, 'thin': 1.0, 'leaves': 1.0, 'material': 1.0, 'super': 1.0, 'down': 1.0, 'very': 1.0, 'and': 2.0, 'when': 1.0, 'toggle': 1.0, 'to': 1.0, 'all': 1.0, 'ok': 1.0, 'stinky': 1.0, 'way': 1.0, 'clothes': 1.0, 'it': 4.0, 'for': 1.0, 'dirty': 1.0, 'like': 1.0, 'hold': 1.0, 'wet': 1.0, 'diapers': 1.0, 'suits': 1.0, 'but': 1.0, 'swim': 1.0, 'also': 1.0, 'will': 1.0, 'not': 1.0, 'in': 2.0, 'smell': 2.0, 'gap': 1.0, 'of': 2.0, 'cautious': 1.0, 'i': 2.0}
Word element => {'insert': 1.0, 'ai2': 1.0, 'extra': 1.0, '4': 1.0, '3': 1.0, 'fit': 1.0, 'dirty': 1.0, 'super': 1.0, 'and': 1.0, 'get': 1.0, 'an': 1.0, 'diapers': 2.0, 'send': 1.0, 'for': 2.0, 'to': 2.0, 'day': 2.0, 'as': 1.0, 'the': 3.0, 'these': 1.0, 'clean': 1.0, 'it': 1.0, 'in': 2.0, 'also': 1.0, 'usually': 1.0, 'case': 1.0, 'acts': 1.0, 'a': 1.0, 'i': 2.0, 'backup': 1.0, 'use': 1.0, 'wet': 1.0, 'daycare': 1.0, 'her': 1.0, 'clothes': 1.0, 'bag': 1.0}
Word element => {'bigger': 1.0, 'made': 1.0, 'i': 2.0, 'have': 1.0, 'they': 1.0, 'these': 1.0, 'though': 1.0, 'in': 1.0, 'wish': 1.0, 'year': 1.0, 'had': 1.0, 'now': 1.0, 'over': 1.0, 'sizes': 1.0, 'love': 1.0, 'and': 1.0, 'a': 1.0, 'them': 2.0}
Word element => {'diapers': 1.0, 'about': 1.0, 'hold': 1.0, 'them': 1.0, 'are': 1.0, 'she': 1.0, 'that': 2.0, 'four': 1.0, 'bad': 1.0, 'i': 4.0, 'felt': 1.0, 'great': 1.0, 'the': 1.0, 'these': 2.0, 'bc': 1.0, 'for': 2.0, 'using': 1.0, 'bought': 1.0, 'had': 1.0, 'to': 2.0, 'those': 1.0, 'keep': 1.0, 'then': 1.0, 'her': 1.0, 'can': 1.0, 'plastic': 1.0, 'just': 1.0, 'bags': 1.0, 'get': 1.0, 'away': 1.0, 'babysitter': 1.0, 'and': 1.0, 'threw': 1.0}
Word element => {'getting': 1.0, 'on': 1.0, 'of': 1.0, 'munching': 1.0, 'his': 1.0, 'have': 1.0, 'kushies': 1.0, 'interested': 1.0, 'not': 1.0, 'in': 2.0, 'chewed': 1.0, 'has': 1.0, 'cat': 1.0, 'wet': 1.0, 'gym': 1.0, 'some': 1.0, 'these': 2.0, 'the': 2.0, 'more': 2.0, 'still': 1.0, 'bags': 3.0, 'now': 1.0, 'thinking': 1.0, 'i': 3.0, 'bigger': 1.0, 'bra': 1.0, 'home': 1.0, 'am': 1.0, 'so': 1.0, 'saving': 1.0, 'love': 1.0, 'for': 2.0, 'it': 2.0, 'only': 1.0, 'clothes': 1.0, 't': 1.0, 'hole': 1.0, 's': 2.0, 'a': 2.0, 'hear': 1.0, 'shorts': 2.0, 'bag': 1.0, 'find': 1.0, 'than': 1.0, 'throw': 1.0, 'to': 2.0, 'all': 1.0, 'and': 4.0, 'are': 1.0, 'my': 2.0, 'kids': 1.0, 'right': 1.0, 'size': 1.0, 'he': 1.0, 'plastic': 3.0, 'diaper': 1.0, 'socks': 1.0, 'lycra': 1.0, 'bring': 1.0, 'exactly': 1.0, 'sports': 1.0, 'washcloth': 1.0, 'into': 1.0, 'good': 1.0, 'don': 1.0, 'wash': 1.0, 'no': 1.0}
Word element => {'diapering': 1.0, 'when': 1.0, 'lifesaver': 1.0, 'also': 1.0, 'fabulous': 1.0, 'all': 1.0, 'holds': 1.0, 'diapers': 1.0, 'use': 1.0, 'os': 1.0, 'each': 1.0, 'at': 1.0, 'not': 1.0, 'awesome': 1.0, 'they': 1.0, 'these': 2.0, 'do': 1.0, 'wetbags': 1.0, 'leak': 1.0, 'one': 1.0, '4': 1.0, 'cloth': 1.0, 'pockets': 1.0, 'i': 1.0, 'price': 1.0, 'about': 1.0, '3': 1.0, 'are': 2.0, 'rumparooz': 1.0, 'a': 2.0}
Word element => {'well': 1.0, 'wash': 1.0, 'small': 1.0, 'and': 2.0, 'on': 1.0, 'use': 1.0, 'fits': 1.0, 'diapers': 1.0, 'to': 1.0, 'each': 1.0, 'bags': 1.0, 'cloth': 1.0, 'go': 1.0, 'little': 1.0, 'are': 1.0, 'my': 1.0, 'great': 1.0, 'the': 1.0, 'these': 1.0, 'they': 1.0, 'bumgenius': 1.0, 'one': 1.0, 'two': 1.0, 'up': 1.0, 'of': 1.0, 'fold': 1.0, 'nice': 1.0}
Word element => {'bag': 1.0, 'same': 1.0, 'bigger': 1.0, 'i': 2.0, 'thought': 1.0, 'than': 1.0, 'size': 2.0, 'is': 1.0, 'these': 1.0, 'they': 1.0, 'need': 1.0, 'very': 1.0, 'quality': 1.0, 'of': 1.0, 'good': 1.0, 'are': 2.0, 'small': 1.0, 'which': 1.0, 'great': 1.0, 'however': 1.0}
Word element => {'at': 1.0, 'keep': 1.0, 'other': 1.0, 'burp': 1.0, 'bibs': 1.0, 'clothes': 1.0, 'all': 1.0, 'four': 1.0, 'have': 1.0, 'for': 1.0, 'my': 2.0, 'are': 1.0, 'size': 1.0, 'buy': 1.0, 'i': 2.0, 'in': 1.0, 'cloths': 1.0, 'needs': 1.0, 'perfect': 1.0, 'diapers': 1.0, 'great': 1.0, 'diaper': 3.0, 'the': 1.0, 'these': 2.0, 'they': 1.0, 'bag': 3.0, 'infant': 2.0, 'items': 1.0, 'twins': 1.0, 'times': 1.0, 'hold': 1.0, 'a': 2.0, 'few': 1.0, 'sized': 1.0, 'each': 1.0, 'and': 1.0, 'changes': 1.0, 'of': 2.0}
Word element => {'would': 1.0, 'buy': 1.0, 'i': 1.0, 'them': 2.0, 'to': 1.0, 'had': 1.0, 'we': 1.0, 'trashed': 1.0, 'so': 1.0, 'thick': 1.0, 'how': 1.0, 'on': 1.0, 'again': 1.0, 'are': 2.0, 'diapers': 2.0, 'were': 2.0, 'can': 1.0, 'at': 1.0, 'not': 1.0, 'hold': 1.0, 'bags': 3.0, 'before': 1.0, 'daycare': 1.0, 'for': 2.0, 'wet': 1.0, '2': 1.0, 'the': 3.0, 'great': 1.0, 'these': 1.0, 'they': 3.0, 'by': 1.0, 'toss': 1.0, 'big': 1.0, 'means': 1.0, 'years': 1.0, 'any': 1.0, 'about': 2.0, '5': 1.0, 'gladly': 1.0, '3': 1.0, 'lasted': 1.0, 'depending': 1.0}
Word element => {'is': 1.0, 'ect': 1.0, 'uses': 2.0, 'other': 1.0, 'many': 1.0, 'there': 1.0, 'with': 1.0, 'that': 1.0, 'also': 1.0, 'dry': 1.0, 'use': 1.0, 'bathing': 1.0, 'after': 2.0, 'new': 1.0, 'look': 1.0, 'still': 1.0, 'machine': 1.0, 'every': 1.0, 'wet': 3.0, 'day': 1.0, 'bags': 4.0, 'clothes': 1.0, 'send': 2.0, 'them': 3.0, 'home': 2.0, 'so': 2.0, 'done': 1.0, 'bag': 1.0, 'months': 1.0, 'bought': 1.0, 'the': 6.0, 'these': 1.0, 'fact': 1.0, 'my': 1.0, 'used': 1.0, 'they': 2.0, '4': 1.0, 'i': 4.0, 'six': 1.0, 'snack': 1.0, 'daughters': 1.0, 'those': 1.0, 'daycare': 2.0, 'was': 1.0, 'we': 1.0, 't': 1.0, 'could': 1.0, 'air': 1.0, 'in': 3.0, 'perfect': 2.0, 'washing': 1.0, 'grocery': 1.0, 'are': 3.0, 'size': 2.0, 'suits': 1.0, 'can': 2.0, 'and': 3.0, 'ounce': 1.0, 'away': 1.0, 'get': 1.0, 'for': 2.0, 'fit': 1.0, 'about': 1.0, 'multiple': 1.0, 'throwing': 1.0, 'bottles': 4.0, 'or': 1.0, 'five': 1.0, '5': 1.0, 'of': 1.0, 'imagine': 1.0, 'like': 2.0, 'using': 2.0, 'put': 2.0, 'washed': 1.0, 'to': 3.0, 'all': 1.0, 'our': 1.0}
Word element => {'cute': 1.0, 'bag': 3.0, 'separate': 1.0, 'fabric': 1.0, 'clean': 1.0, 'keeping': 1.0, 'use': 2.0, 'them': 1.0, 'baby': 1.0, 'colors': 1.0, 'they': 1.0, 'these': 1.0, 'the': 1.0, 'dirties': 1.0, 'my': 1.0, 'are': 2.0, 'to': 2.0, 'diapers': 1.0, 'aren': 1.0, 'work': 1.0, 'easy': 1.0, 'drawstring': 1.0, 'too': 1.0, 'and': 1.0, 'bags': 1.0, 'i': 2.0, 'one': 2.0, 'for': 3.0, 'in': 1.0, 'big': 1.0, 'day': 1.0, 'just': 1.0, 'not': 1.0, 'right': 1.0, 'trips': 1.0, 'it': 3.0, 'with': 1.0, 't': 1.0, 'might': 1.0, 'a': 2.0, 's': 2.0, 'soft': 1.0, 'pul': 1.0, 'stiff': 1.0, 'like': 1.0, 'thought': 1.0, 'easier': 1.0, 'be': 1.0, 'so': 1.0}
Word element => {'highly': 1.0, 'slip': 1.0, 'puma': 1.0, 'it': 1.0, 'recommend': 1.0, 'minutes': 1.0, 'within': 1.0, 'parent': 1.0, 'off': 1.0, 'pulled': 1.0, 'get': 1.0, 'or': 2.0, 'are': 2.0, 'must': 1.0, 'one': 1.0, 'for': 1.0, 'us': 1.0, 'walking': 1.0, 'r': 1.0, 'through': 1.0, 'found': 1.0, 'boy': 1.0, 'they': 1.0, 'day': 1.0, 'ever': 1.0, 'kicked': 1.0, 'picked': 1.0, 'only': 1.0, 'these': 2.0, 'the': 2.0, 'babies': 1.0, 'that': 1.0, 'baby': 1.0, 'to': 1.0, 'our': 1.0, 'any': 2.0, 'don': 1.0, 'up': 1.0, 'of': 1.0, 'says': 1.0, 'pk': 1.0, 'other': 1.0, 'on': 3.0, '3': 1.0, 't': 1.0, 'we': 2.0, 'a': 3.0, 'socks': 3.0, 'would': 1.0, 've': 2.0, 'seems': 1.0, 'also': 1.0, 'stay': 2.0, 'his': 1.0, 'down': 1.0, 'whim': 1.0, 'feet': 1.0, 'and': 3.0, 'fun': 1.0, 'stylish': 1.0, 'my': 1.0, 'husband': 1.0, 'i': 2.0, 'purchased': 1.0, 'slide': 1.0}
Word element => {'covers': 1.0, 'between': 1.0, 'tissue': 1.0, 'crinkle': 1.0, 'and': 1.0, 'bright': 1.0, 'thanks': 1.0, 'six': 1.0, 'colors': 1.0, 'turning': 1.0, 'paper': 1.0, 'month': 1.0, 'to': 1.0, 'old': 1.0, 'this': 1.0, 'loves': 1.0, 'book': 1.0, 'daughter': 1.0, 'of': 2.0, 'my': 1.0, 'the': 5.0, 'pages': 1.0}
Word element => {'sturdier': 1.0, 'i': 2.0, 'for': 1.0, 'floor': 1.0, 'up': 1.0, '380': 1.0, 'rock': 2.0, 'hammock': 1.0, 'his': 1.0, 'selling': 1.0, 'hang': 1.0, 'barely': 1.0, 'when': 2.0, 'come': 1.0, 'however': 1.0, 'anywhere': 1.0, 'because': 1.0, 'an': 1.0, 'what': 1.0, 'thought': 1.0, 'mine': 1.0, 'never': 1.0, 's': 1.0, 'a': 4.0, 'we': 7.0, 'use': 3.0, 'on': 1.0, 'put': 1.0, 'rocked': 1.0, 'of': 1.0, 'waste': 1.0, 'll': 1.0, 'stand': 3.0, 'total': 2.0, 'so': 2.0, 'doorway': 1.0, 'it': 7.0, 'looks': 1.0, 'around': 1.0, 'is': 1.0, 'rip': 1.0, 'room': 2.0, 'was': 1.0, 'beautiful': 2.0, 'and': 6.0, 'can': 1.0, 'but': 2.0, 'money': 1.0, 'bounced': 1.0, 'great': 1.0, 'place': 1.0, 'the': 5.0, 'any': 1.0, 'to': 4.0, 'our': 2.0, 'in': 4.0, 'something': 1.0, 'would': 1.0, 've': 1.0, 'living': 1.0, 'baby': 1.0, 'them': 1.0, 'off': 2.0, 'legs': 1.0, 'placed': 1.0, 'improvement': 1.0, 'hammocks': 2.0, 'swung': 1.0, 'large': 1.0, 'have': 1.0, 'him': 1.0, 'be': 4.0, 'multiple': 1.0, 'best': 1.0, 'craigslist': 1.0, 'from': 1.0, 'this': 1.0, 'found': 1.0, 'wobbles': 1.0, 'hook': 1.0, 'expected': 1.0, 'has': 2.0, 'that': 1.0, 'loves': 2.0, 'been': 1.0}
Word element => {'measure': 1.0, 'sure': 1.0, 'make': 1.0, 'pictures': 1.0, 'in': 1.0, 'seems': 1.0, 'larger': 1.0, 'fuss': 1.0, 'no': 1.0, 'wish': 1.0, 'thing': 1.0, 'amazing': 1.0, 'had': 1.0, 'to': 2.0, 'my': 1.0, 'the': 3.0, 'soothing': 1.0, 'one': 2.0, 'thanit': 1.0, 'i': 2.0, 'you': 1.0, 'word': 1.0, 'drifts': 1.0, 's': 2.0, 'describe': 1.0, 'there': 1.0, 'it': 1.0, 'this': 1.0, 'first': 2.0, 'with': 2.0, 'is': 1.0, 'baby': 2.0, 'sleep': 1.0, 'off': 1.0, 'movement': 1.0, 'so': 2.0}
Word element => {'fussing': 1.0, 'carpeting': 1.0, 'pile': 1.0, 'low': 1.0, 'even': 1.0, 'floor': 1.0, 'firmly': 1.0, 'stay': 1.0, 'legs': 1.0, 'wobble': 1.0, 'not': 1.0, 'unlike': 1.0, 'had': 1.0, 'wish': 1.0, 'sleeping': 1.0, 'seems': 1.0, 'baby': 2.0, 'another': 2.0, 'laminated': 1.0, 'commenter': 1.0, 'reviewer': 1.0, 'fact': 1.0, 'also': 1.0, 'made': 1.0, 'it': 6.0, 'nor': 1.0, 'beechwood': 1.0, 'glad': 1.0, 'very': 3.0, 'both': 1.0, 'stand': 1.0, 'feedback': 1.0, 'despite': 1.0, 'about': 1.0, 'product': 2.0, 'love': 2.0, 'this': 2.0, 'provided': 1.0, 'what': 1.0, 'our': 3.0, 'online': 1.0, 'any': 2.0, 'was': 3.0, 'a': 1.0, 'that': 4.0, 'have': 1.0, 'hesitant': 1.0, 'cost': 1.0, 'did': 1.0, 'admit': 1.0, 'after': 1.0, 'whether': 1.0, 'unusual': 1.0, 'laminate': 1.0, 'well': 1.0, 'i': 5.0, 'little': 1.0, 'stated': 1.0, 'due': 1.0, 'great': 1.0, 'design': 1.0, 'foam': 1.0, 'assemble': 1.0, 'relatively': 1.0, 'epoxy': 1.0, 'and': 8.0, 'responded': 1.0, 'to': 5.0, 'high': 1.0, 'modern': 1.0, 'looking': 1.0, 'noticed': 1.0, 'on': 3.0, 'toxic': 2.0, 'think': 1.0, 'here': 1.0, 'said': 1.0, 'm': 1.0, 'in': 2.0, 'fire': 1.0, 'quite': 1.0, 'however': 1.0, 'easy': 1.0, 'with': 4.0, 'from': 1.0, 'hex': 1.0, 'actually': 1.0, 'order': 1.0, 'wrench': 1.0, 'clean': 1.0, 'fabric': 1.0, 'is': 4.0, 'at': 1.0, 'look': 1.0, 'the': 17.0, 'of': 1.0, 'so': 1.0, 'purchase': 1.0, 'company': 2.0, 'sleek': 1.0, 'quickly': 1.0, 'used': 1.0, 'eva': 1.0, 'retardants': 1.0, 'non': 2.0, 'we': 3.0, 'reviews': 1.0, 'representative': 1.0, 'owner': 1.0, 'looks': 1.0, 'entire': 1.0, 'questions': 1.0, 'hammock': 2.0, 'organic': 1.0, 'insert': 1.0, 'neither': 1.0, 'first': 1.0, 'are': 1.0, 'treated': 1.0}
Word element => {'are': 1.0, 'my': 1.0, 'couple': 1.0, 'have': 2.0, 'for': 1.0, 'see': 1.0, 'pack': 1.0, 'like': 1.0, 'smells': 1.0, 'or': 1.0, 'no': 1.0, 'organic': 1.0, 'liked': 1.0, 'essentially': 1.0, 'movement': 1.0, 'it': 2.0, 'better': 1.0, 'how': 1.0, 'he': 1.0, 'also': 2.0, 'i': 3.0, 'top': 1.0, 'from': 1.0, 'lower': 1.0, 'slightly': 2.0, 'portable': 1.0, 'positioning': 1.0, 'by': 1.0, 'just': 1.0, 'realize': 1.0, 'rocking': 1.0, 'that': 1.0, 'himself': 1.0, 'did': 1.0, 'and': 3.0, 'born': 1.0, 'not': 1.0, 'expecting': 1.0, 'laws': 1.0, 'was': 1.0, 'all': 1.0, 'sleep': 1.0, 'our': 2.0, 'to': 8.0, 'baby': 3.0, 'chose': 1.0, 'ended': 1.0, 'had': 1.0, 'what': 1.0, 'his': 2.0, 'bassinet': 1.0, 'of': 2.0, 'up': 1.0, 'a': 3.0, 'we': 2.0, 'fumes': 1.0, 'find': 1.0, 'dream': 1.0, 'before': 1.0, 'room': 1.0, 'thanksgiving': 1.0, 'the': 10.0, 'in': 3.0, 'use': 1.0, 'instead': 1.0, 'good': 1.0, 'glad': 1.0, 'decision': 1.0, 'being': 1.0, 'recommended': 1.0, 'angle': 1.0, 'has': 1.0, 'reflux': 1.0, 'cotton': 1.0, 'be': 1.0, 'elevated': 1.0, 'who': 1.0, 'since': 1.0, 'at': 1.0, 'position': 1.0, 'finally': 1.0, 'own': 1.0, 'moves': 1.0, 'an': 1.0, 'with': 3.0, 'this': 1.0, 'head': 1.0, 'sleeps': 1.0, 'is': 2.0, 'friends': 1.0, 'hushamok': 5.0, 'needs': 1.0, 'so': 3.0, 'easy': 2.0, 'achieve': 1.0}
Word element => {'right': 1.0, 'deciding': 1.0, 'review': 1.0, 'hope': 1.0, 'themselves': 1.0, 'wants': 1.0, 'who': 1.0, 'recommend': 1.0, 'born': 1.0, 'wish': 1.0, 'having': 1.0, 'sleep': 1.0, 'pay': 1.0, 'get': 2.0, 'really': 1.0, 'but': 1.0, 'anymore': 1.0, 'rubber': 1.0, 'leafspring': 1.0, 'call': 1.0, 'they': 1.0, 'system': 1.0, 'unique': 1.0, 'helps': 1.0, 'bounces': 1.0, 'through': 1.0, 'although': 1.0, 'kanoe': 1.0, 'like': 3.0, 'good': 1.0, 'which': 1.0, 'side': 1.0, 'tilt': 1.0, 's': 1.0, 'market': 1.0, 'on': 1.0, 'hammocks': 1.0, 'was': 5.0, 'if': 2.0, 'traditionalist': 1.0, 'design': 1.0, 'gently': 1.0, 'little': 2.0, 'days': 1.0, 'm': 1.0, 'in': 4.0, 'at': 1.0, 'is': 4.0, 'hanger': 1.0, 'sleeps': 1.0, 'babies': 1.0, 'more': 1.0, 'swings': 1.0, 'also': 2.0, 'night': 1.0, 'you': 5.0, 'comfortably': 1.0, 'makes': 1.0, 'did': 1.0, 'and': 8.0, '8': 1.0, 'stand': 3.0, 'shorter': 1.0, 'for': 4.0, 'child': 1.0, 'price': 1.0, 'product': 2.0, 'me': 1.0, 'my': 3.0, 'purchase': 1.0, 'ago': 1.0, 'a': 3.0, 'floating': 1.0, 'week': 1.0, '2': 1.0, 'so': 3.0, 'can': 1.0, 'modern': 1.0, 'itself': 1.0, 'not': 4.0, 'purchased': 1.0, 'when': 2.0, 'what': 3.0, 'difficult': 1.0, 'loves': 1.0, 'concerned': 1.0, 'that': 4.0, 'it': 8.0, 'thought': 1.0, 'him': 2.0, 'swaddle': 1.0, 'hammock': 11.0, 'just': 3.0, 'old': 1.0, 'well': 2.0, 'i': 11.0, 'as': 5.0, 'from': 2.0, 'see': 1.0, 'around': 1.0, 'obvious': 1.0, 'his': 1.0, 'this': 3.0, 'found': 1.0, 'do': 1.0, 'put': 2.0, 'pictures': 2.0, 'he': 3.0, 'bundle': 1.0, 'with': 2.0, 'bad': 1.0, 'first': 1.0, 'are': 2.0, 'the': 19.0, 'of': 7.0, 'blends': 1.0, 'have': 1.0, 'other': 1.0, 'ever': 1.0, 'an': 1.0, 'water': 1.0, 'up': 1.0, 'beech': 1.0, 'spring': 1.0, 'option': 1.0, 'one': 2.0, 'too': 2.0, 'lot': 1.0, 'their': 1.0, 'attaches': 1.0, 'okoa': 1.0, 'or': 1.0, 'tether': 1.0, 'purchasing': 1.0, 'european': 1.0, 'wood': 1.0, 'overall': 2.0, 'son': 1.0, 'height': 1.0, 'than': 2.0, 'closer': 1.0, 'parent': 1.0, 'definitely': 1.0, 'ground': 1.0, 'to': 7.0, 'high': 1.0, 'its': 1.0, 'decor': 1.0, 'research': 1.0, 'there': 1.0, 'many': 1.0, 'daughter': 1.0, 'truly': 1.0, 'videos': 1.0, 'imagined': 1.0, 'before': 1.0, 'consumers': 1.0, 'decided': 1.0, 'some': 1.0, 'mine': 1.0, 'your': 1.0, 'any': 1.0, 'feel': 1.0, 'safer': 1.0}
Word element => {'purchase': 1.0, 'up': 1.0, 'supportive': 1.0, 'short': 1.0, 'nothing': 1.0, 'decisive': 1.0, 'parts': 1.0, 'of': 2.0, 'one': 1.0, 'quick': 1.0, 'with': 1.0, 'issue': 1.0, 'small': 1.0, 'touch': 1.0, 'pleasant': 1.0, 'cotton': 1.0, 'organic': 1.0, 'floats': 1.0, 'just': 1.0, 'which': 1.0, 'motion': 1.0, 'bouncing': 1.0, 'arrived': 1.0, 'realistic': 1.0, 'in': 2.0, 'help': 1.0, 'arms': 1.0, 'baby': 2.0, 'rocking': 1.0, 'been': 1.0, 'time': 1.0, 'create': 1.0, 'assemble': 1.0, 'pleased': 1.0, 'had': 1.0, 'purchased': 1.0, 'soft': 1.0, 'this': 1.0, 'item': 1.0, 'finds': 2.0, 'and': 12.0, 'has': 1.0, 'well': 2.0, 'great': 4.0, 'the': 6.0, 'easy': 2.0, 'was': 2.0, 'remarkably': 1.0, 'than': 1.0, 'we': 3.0, 'a': 4.0, 's': 2.0, 'maneuvers': 1.0, 'all': 1.0, 'our': 2.0, 'to': 5.0, 'sleep': 2.0, 'even': 1.0, 'room': 2.0, 'move': 1.0, 'bedroom': 1.0, 'off': 1.0, 're': 1.0, 'build': 1.0, 'fantastic': 1.0, 'when': 1.0, 'finish': 1.0, 'are': 1.0, 'is': 1.0, 'more': 1.0, 'around': 1.0, 'sleeps': 1.0, 'she': 2.0, 'it': 5.0, 'looks': 1.0, 'customer': 1.0, 'material': 1.0, 'really': 1.0, 'very': 3.0, 'soothing': 2.0, 'rubber': 1.0, 'service': 1.0, 'gentle': 1.0}
Word element => {'way': 1.0, 'didn': 1.0, 'bad': 1.0, 'saw': 1.0, 'they': 1.0, 'when': 1.0, 'friends': 1.0, 'compliments': 1.0, 'hoping': 1.0, 'in': 2.0, 'guy': 1.0, 'were': 2.0, 'it': 4.0, 'right': 1.0, 'next': 1.0, 'for': 1.0, 'product': 1.0, 'little': 2.0, 'stunning': 1.0, 'baby': 1.0, 'is': 1.0, 'completely': 1.0, 'of': 2.0, 'up': 2.0, 'beautifully': 1.0, 'leaving': 1.0, 'almost': 1.0, 'our': 2.0, 'to': 2.0, 'sleep': 1.0, 'work': 1.0, 'sitting': 1.0, 'but': 1.0, 'one': 1.0, 'uncomfortable': 1.0, 'unfortunately': 1.0, 'end': 3.0, 'him': 2.0, 'routinely': 1.0, 'hammock': 1.0, 'would': 1.0, 'letting': 1.0, 'from': 1.0, 'slide': 1.0, 'down': 1.0, 'without': 1.0, 'the': 4.0, 'a': 1.0, 'we': 3.0, 't': 2.0, 'too': 1.0, 'loads': 1.0, 'and': 2.0, 'balled': 1.0, 'made': 1.0, 'at': 1.0, 'this': 1.0, 'weren': 1.0, 'comfortable': 1.0, 'overnight': 1.0, 'he': 1.0, 'received': 1.0}
Word element => {'worth': 1.0, 'so': 1.0, 'got': 2.0, 'but': 1.0, 'three': 1.0, 'by': 1.0, 'outgrow': 1.0, 'your': 1.0, 'infant': 1.0, 'other': 1.0, 'regular': 1.0, 'just': 1.0, 'after': 1.0, 'comfort': 1.0, 'sleeping': 1.0, 'opinion': 1.0, 'another': 1.0, 'sleeper': 1.0, 'newborn': 1.0, 'or': 1.0, 'concerns': 1.0, 'hammock': 3.0, 'concern': 1.0, 'money': 1.0, 'nod': 1.0, 'since': 1.0, 'week': 1.0, 'supposed': 1.0, 'for': 2.0, 's': 1.0, 'had': 1.0, 'hours': 1.0, 'some': 1.0, 'was': 2.0, 'without': 1.0, 'bassinet': 1.0, 'straight': 1.0, 'to': 6.0, 'as': 1.0, 'review': 1.0, 'like': 1.0, 'angle': 1.0, 'put': 1.0, 'do': 1.0, 'recommended': 1.0, 'and': 5.0, 'six': 1.0, 'feet': 1.0, 'i': 4.0, 'about': 4.0, 'being': 1.0, 'if': 1.0, 'ceiling': 1.0, 'read': 1.0, 'gently': 1.0, 'fantastic': 1.0, 'what': 1.0, 'when': 1.0, 'you': 2.0, 'mount': 1.0, 'install': 1.0, 'although': 1.0, 'my': 3.0, 'me': 1.0, 'not': 1.0, 'first': 1.0, 'address': 1.0, 'stuck': 1.0, 'newborns': 1.0, 'thought': 1.0, 'it': 4.0, 'baby': 6.0, 'she': 1.0, 'with': 2.0, 'legitimate': 1.0, 'their': 1.0, 'previous': 1.0, 'even': 1.0, 'would': 3.0, 'position': 1.0, 'wake': 1.0, 'the': 10.0, 'of': 1.0, 'up': 3.0, 'nearly': 1.0, 'start': 1.0, 'this': 2.0, 'rocking': 1.0, 'give': 1.0, 'written': 1.0, 'babies': 1.0, 'her': 2.0, 'sleep': 2.0, 'back': 1.0, 'having': 1.0, 'months': 1.0, 'get': 1.0, 'close': 1.0, 'he': 1.0, 'bottom': 1.0, 'will': 2.0, 'have': 1.0, 'a': 4.0, 'small': 1.0, 'worry': 1.0, 'moving': 1.0, 'getting': 1.0, 'his': 1.0, 'head': 1.0, 'in': 2.0, 'corner': 1.0, 'keep': 1.0, 'makes': 1.0, 'impossible': 1.0, 'is': 1.0, 'asleep': 1.0, 'made': 1.0}
Word element => {'with': 1.0, 'even': 1.0, 'safe': 1.0, 'seem': 1.0, 'disappointed': 1.0, 'but': 1.0, 'buy': 1.0, 'happy': 1.0, 'toddler': 1.0, 'be': 1.0, 'should': 1.0, 'used': 1.0, 'built': 1.0, 'comfortable': 2.0, 'is': 1.0, 'though': 1.0, 'doesn': 1.0, 'was': 1.0, 'recommend': 1.0, 'outgrew': 1.0, 'or': 3.0, 'because': 2.0, 'safely': 1.0, 'infants': 1.0, 'myseat': 2.0, 'unsafe': 1.0, 'put': 1.0, 'am': 1.0, 'wanted': 1.0, '4th': 1.0, 'and': 2.0, 'only': 1.0, 'do': 1.0, 'seat': 1.0, 'as': 1.0, 'sleep': 1.0, 'to': 2.0, 'our': 3.0, 'would': 1.0, 'something': 1.0, 'baby': 5.0, 'about': 1.0, 'in': 3.0, 'complaining': 1.0, 'mother': 1.0, 'once': 1.0, 'of': 1.0, 'i': 7.0, '4': 1.0, 't': 1.0, 'a': 2.0, 'could': 1.0, 'opinion': 1.0, 'for': 3.0, 'suited': 1.0, 'being': 1.0, 'if': 1.0, 'needed': 1.0, 'tethers': 1.0, 'the': 5.0, 'hands': 1.0, 'my': 3.0, 'may': 1.0, 'free': 1.0, 'they': 1.0, 'this': 1.0, 'it': 4.0, 'perfectly': 1.0, 'down': 1.0, 'direction': 1.0, 'worked': 1.0, 'enjoyed': 1.0, 'immensely': 1.0, 'have': 1.0, 'newborn': 1.0, 'hammock': 2.0, 'out': 1.0, 'not': 2.0, 'those': 1.0, 'wrong': 1.0}
Word element => {'loves': 1.0, 'have': 1.0, 'others': 1.0, 'in': 2.0, 'she': 2.0, 'once': 1.0, 'sits': 1.0, 'the': 1.0, 'crush': 1.0, 'not': 1.0, 'does': 1.0, 'be': 1.0, 'do': 1.0, 'and': 3.0, 'as': 2.0, 'very': 3.0, 'sturdy': 1.0, 'going': 1.0, 'since': 1.0, 'well': 1.0, 'roomy': 1.0, 'hold': 1.0, 'to': 2.0, 'had': 1.0, 'was': 1.0, 'granddaughter': 1.0, 'child': 1.0, 'made': 1.0, 'my': 1.0, 'i': 3.0, 'am': 1.0, 'pleased': 1.0, 'is': 1.0, 'it': 4.0, 'with': 1.0, 'this': 1.0, 'seen': 1.0, 'item': 1.0}
Word element => {'ve': 1.0, 'times': 1.0, 'nap': 1.0, 'successful': 1.0, 'many': 1.0, 'based': 1.0, 'once': 1.0, 'at': 1.0, 'holy': 1.0, 'grail': 1.0, 'but': 2.0, 'will': 2.0, 'naps': 1.0, 'that': 1.0, 'terrible': 1.0, 'was': 2.0, 'had': 2.0, 'now': 1.0, 'rolling': 1.0, 'a': 1.0, 'we': 2.0, 'an': 1.0, 'finally': 1.0, 'n': 1.0, 'how': 1.0, 'he': 2.0, 'it': 1.0, 'rock': 1.0, 'play': 1.0, 'and': 2.0, 'on': 1.0, 'guy': 1.0, 'over': 1.0, 'for': 3.0, 'godsend': 1.0, 'little': 1.0, 'crib': 1.0, 'pay': 1.0, 'fisher': 1.0, 'reflux': 1.0, 'the': 2.0, 'price': 1.0, 'needed': 1.0, 'alternative': 1.0, 'itself': 1.0, 'in': 2.0, 'his': 1.0, 'night': 1.0, 'colic': 1.0, 'quiet': 1.0, 'time': 2.0, 'hushamok': 1.0, 'our': 2.0, 'sleep': 1.0, 'seat': 1.0, 'is': 1.0}
Word element => {'soft': 1.0, 'nice': 1.0, 'is': 1.0, 'light': 1.0, 'when': 1.0, 'however': 1.0, 'inside': 1.0, 'then': 1.0, 'believe': 1.0, 'and': 3.0, 'up': 1.0, 'working': 1.0, 'like': 1.0, 's': 1.0, 'you': 1.0, 'it': 2.0, 'wouldn': 1.0, 'this': 1.0, 'batteries': 2.0, 'eats': 1.0, 'one': 1.0, 'time': 1.0, 'we': 2.0, 'disassemble': 1.0, 't': 1.0, 'the': 2.0, 'flat': 1.0, 'broken': 1.0, 'out': 1.0, 'thought': 1.0, 'were': 1.0, 'something': 1.0, 'to': 1.0, 'had': 1.0, 'turned': 1.0, 'was': 1.0}
Word element => {'way': 1.0, 'over': 1.0, 'on': 2.0, 'having': 1.0, 'bed': 1.0, 'for': 1.0, 'night': 1.0, 'can': 1.0, 'without': 1.0, 'great': 1.0, 'the': 3.0, 'this': 1.0, 'bunk': 2.0, 'a': 2.0, 'down': 1.0, 'make': 1.0, 'top': 1.0, 'kids': 1.0, 'makes': 1.0, 'they': 1.0, 'turn': 1.0, 'light': 2.0, 'and': 2.0, 'off': 1.0, 'climb': 1.0, 'switch': 1.0, 'lights': 1.0, 'to': 2.0}
Word element => {'fingers': 1.0, 'little': 1.0, 'for': 1.0, 'amount': 1.0, 'nice': 1.0, 'right': 1.0, 'adorable': 1.0, 'an': 2.0, 'a': 1.0, 'the': 2.0, 'big': 2.0, 'with': 1.0, 'alike': 1.0, 'easy': 1.0, 'just': 1.0, 'holds': 1.0, 'hit': 1.0, 'underage': 1.0, 'crowd': 1.0, 'cleans': 1.0, 'and': 1.0, 'up': 1.0}
Word element => {'chews': 1.0, 'she': 1.0, 'and': 3.0, 'play': 1.0, 'give': 1.0, 'feeding': 1.0, 'to': 3.0, 'times': 1.0, 'the': 3.0, 'daughter': 2.0, 'on': 2.0, 'months': 1.0, '8': 1.0, 'my': 2.0, 'after': 1.0, 'so': 1.0, 'munchkin': 1.0, 'safe': 1.0, 'inside': 1.0, 'free': 1.0, 'bpa': 1.0, 'nice': 1.0, 'many': 1.0, 'drops': 1.0, 'looks': 1.0, 'is': 3.0, 'pooping': 1.0, 'floor': 1.0, 'bowl': 3.0, 'microwave': 1.0, 'long': 1.0, 'teething': 1.0, 'happens': 1.0, 'spoon': 1.0, 'nothing': 1.0, 'like': 1.0, 'with': 1.0, 'this': 1.0, 'it': 7.0, 'i': 2.0, 'enough': 1.0, 'keeps': 1.0, 'deep': 2.0, '2in': 1.0, 'a': 1.0, 'helps': 1.0, 'about': 1.0}
Word element => {'withstand': 1.0, 'will': 1.0, 'bottom': 1.0, 'cereal': 1.0, 'on': 1.0, 'the': 3.0, 'tell': 1.0, 'this': 1.0, 'spoon': 1.0, 'bowl': 2.0, 'of': 1.0, 'has': 1.0, 'a': 1.0, 'many': 1.0, 'you': 1.0, 'high': 1.0, 'quality': 1.0, 'scrapes': 1.0, 'printing': 1.0, 'feel': 1.0, 'to': 1.0, 'it': 1.0, 'can': 1.0}
Word element => {'in': 1.0, 'faded': 1.0, 'and': 1.0, 'dishwasher': 1.0, 'really': 1.0, 'has': 1.0, 'son': 1.0, 'on': 1.0, 'printing': 1.0, 'colors': 1.0, 'likes': 1.0, 'that': 1.0, 'small': 1.0, 'are': 1.0, 'my': 1.0, 'the': 3.0, 'ear': 1.0, 'it': 2.0, 'mickey': 1.0, 'compartments': 1.0}
Word element => {'to': 1.0, 'use': 1.0, 'month': 1.0, 'it': 1.0, 'this': 1.0, 'loves': 1.0, 'daughter': 1.0, 'for': 1.0, 'old': 1.0, 'much': 1.0, 'always': 1.0, 'we': 1.0, 'makes': 1.0, '18': 1.0, 'my': 1.0, 'the': 1.0, 'more': 1.0, 'ears': 1.0, 'plate': 1.0, 'and': 1.0, 'them': 1.0, 'eat': 1.0, 'veggies': 1.0, 'so': 1.0, 'fun': 1.0}
Word element => {'that': 1.0, 'is': 1.0, 'downside': 1.0, 'quite': 1.0, 'only': 1.0, 'sauce': 1.0, 's': 1.0, 'dipping': 1.0, 'other': 1.0, 'good': 1.0, 'it': 1.0, 'plate': 1.0, 'toddler': 1.0, 'small': 1.0, 'the': 2.0, 'my': 1.0, 'for': 2.0, 'daughter': 1.0, 'ketchup': 1.0, 'ears': 1.0, 'uses': 1.0, 'or': 1.0}
Word element => {'for': 1.0, 'product': 1.0, 'car': 1.0, 'whole': 1.0, 'able': 1.0, 'even': 1.0, 'connection': 1.0, 'socket': 1.0, 'such': 1.0, 'the': 9.0, 'reflection': 1.0, 'not': 1.0, 'vertically': 1.0, 'because': 1.0, 'is': 5.0, 'was': 2.0, 'seat': 2.0, 'to': 4.0, 'quality': 2.0, 'back': 1.0, 'would': 1.0, 'this': 1.0, 'red': 1.0, 'with': 1.0, 'first': 1.0, 'that': 3.0, 'my': 2.0, 'tried': 1.0, 'i': 3.0, 'third': 1.0, 'price': 1.0, 'mirror': 5.0, 'simple': 1.0, 'one': 1.0, 'and': 3.0, 'poor': 1.0, 'has': 1.0, 'it': 1.0, 'useless': 1.0, 'american': 1.0, 'second': 1.0, 'cross': 1.0, 'great': 1.0, 'install': 1.0, 'of': 1.0, 'up': 1.0, 'her': 1.0, 'sufficient': 1.0, 'work': 1.0, 'can': 1.0, 'a': 1.0, 'purchased': 1.0, 'what': 1.0, 'very': 1.0, 'little': 1.0, 'ball': 1.0, 'see': 2.0, 'doll': 1.0, 'turn': 1.0, 'in': 1.0}
Word element => {'one': 1.0, 'little': 1.0, 'around': 1.0, 'am': 1.0, 'useful': 1.0, 'to': 2.0, 'head': 1.0, 'mirror': 2.0, 'my': 2.0, 'with': 1.0, 'this': 2.0, 'the': 1.0, 't': 1.0, 'munchin': 1.0, 'when': 1.0, 'i': 2.0, 'use': 1.0, 'sitting': 1.0, 'see': 1.0, 'a': 1.0, 'don': 1.0, 'is': 1.0, 'want': 1.0, 'as': 1.0, 'and': 1.0, 'passenger': 1.0, 'turn': 1.0}
Word element => {'effective': 1.0, 'simple': 1.0, 'executed': 1.0, 'good': 1.0, 'plenty': 1.0, 'that': 1.0, 'get': 1.0, 'sure': 1.0, 'i': 1.0, 'back': 1.0, 'their': 1.0, 'it': 1.0, 'this': 1.0, 'cart': 1.0, 'well': 2.0, 'has': 2.0, 'for': 4.0, 'yet': 1.0, 'a': 2.0, 'we': 3.0, 'other': 1.0, 'these': 1.0, 'the': 3.0, 'golf': 1.0, 'try': 1.0, 'use': 2.0, 'intended': 2.0, 'worked': 1.0, 'view': 1.0, 'of': 3.0, 'attractively': 1.0, 'seat': 1.0, 'our': 2.0, 'as': 2.0, 'to': 1.0, 'out': 2.0, 'and': 3.0, 'designed': 1.0, 'probably': 1.0, 'another': 1.0, 'm': 1.0, 'mirror': 1.0, 'price': 1.0, 'so': 2.0, 'friends': 1.0, 'side': 2.0, 'not': 1.0, 'exactly': 1.0, 'but': 2.0, 'very': 1.0, 'little': 1.0, 'one': 4.0, 'bought': 3.0, 'dozens': 1.0, 'beauty': 1.0, 'priced': 1.0, 'originally': 1.0, 'toddler': 1.0, 'uses': 1.0, 'no': 1.0, 'tried': 1.0, 'will': 1.0, 'also': 1.0, 'in': 1.0, 'who': 1.0, 'have': 1.0}
Word element => {'please': 1.0, 'over': 1.0, 'last': 1.0, 'owned': 1.0, 'back': 1.0, 'of': 1.0, 'and': 2.0, 'couple': 1.0, 'are': 2.0, 'a': 1.0, 'them': 1.0, 'decade': 1.0, 'the': 1.0, 'these': 1.0, 'they': 2.0, 'have': 1.0, 'awesome': 1.0, 'one': 1.0, 'for': 1.0, 'looking': 1.0, 'now': 1.0, 'unavailable': 1.0, 'anywhere': 1.0, 'bring': 1.0}
Word element => {'enough': 1.0, 'well': 1.0, 'see': 1.0, 'baby': 2.0, 'entertainment': 1.0, 'one': 2.0, 'and': 2.0, 'wanted': 1.0, 'husband': 1.0, 'great': 1.0, 'spot': 1.0, 'purpose': 1.0, 'ordered': 1.0, 'think': 1.0, 'so': 1.0, 'it': 2.0, 'she': 1.0, 'my': 2.0, 'a': 1.0, 't': 1.0, 'these': 1.0, 'the': 3.0, 'of': 1.0, 'says': 1.0, 'i': 5.0, 'two': 1.0, 'can': 3.0, 'but': 1.0, 'needed': 1.0, 'back': 1.0, 'didn': 1.0, 'even': 1.0, 'her': 2.0, 'tell': 1.0, 'eyes': 1.0, 'that': 1.0, 'are': 1.0, 'open': 1.0, 'from': 1.0, 'self': 1.0, 'in': 2.0, 'all': 1.0, 'way': 1.0, 'mirror': 1.0, 'points': 1.0, 'love': 1.0, 'actually': 1.0, 'surves': 1.0, 'duel': 1.0}
Word element => {'worth': 1.0, 'in': 2.0, 'or': 2.0, 'brake': 1.0, 'accelerate': 1.0, 'after': 1.0, 'swivel': 1.0, 'par': 1.0, 'hinge': 2.0, 'up': 1.0, 'price': 1.0, 'child': 1.0, 'set': 2.0, 'used': 1.0, 'rabbit': 1.0, 'while': 2.0, 'from': 1.0, 'driving': 1.0, 'adjustments': 1.0, 'mirror': 5.0, 'swing': 1.0, 'view': 2.0, 'once': 1.0, 'a': 3.0, 't': 2.0, 'bauer': 1.0, 'months': 1.0, 'try': 1.0, 'one': 2.0, 'on': 2.0, 'allowed': 1.0, 'based': 1.0, 'side': 2.0, 'wore': 1.0, 'starts': 1.0, 'my': 1.0, 'out': 1.0, 'normal': 1.0, 'to': 5.0, 'was': 3.0, 'recommend': 1.0, 'would': 3.0, 'super': 1.0, 'previous': 1.0, 'safety': 1.0, 'i': 8.0, 'looking': 1.0, 'using': 1.0, 'for': 4.0, 'where': 1.0, 'eddie': 1.0, 'target': 1.0, 'but': 1.0, 'needless': 1.0, 'all': 1.0, 'other': 1.0, 'an': 1.0, 'solid': 1.0, 'and': 8.0, 'clear': 2.0, 'e': 1.0, 'no': 2.0, 'jack': 1.0, 'another': 1.0, 'stops': 1.0, 'son': 1.0, 'the': 7.0, 'longer': 1.0, 'be': 1.0, 'annoying': 1.0, 'it': 5.0, 'say': 1.0, 'is': 3.0, 'more': 1.0, 'works': 1.0, 'its': 1.0, 'great': 1.0, 'whenever': 1.0, 'install': 1.0, 'us': 1.0, 'easy': 1.0, 'have': 2.0, 'crystal': 1.0, 'want': 1.0, 'rock': 1.0, 'forward': 3.0, 'reflection': 1.0, 'isn': 2.0, 'than': 1.0, 'backward': 3.0, 'enough': 1.0, 'with': 1.0, 'short': 1.0, 'mirrors': 1.0, 'replace': 1.0, 'seen': 1.0, 'few': 1.0, 'this': 1.0, 'conditions': 1.0, 'highly': 1.0}
Word element => {'car': 1.0, 'second': 1.0, 'bought': 1.0, 'just': 1.0, 'my': 1.0, 'more': 1.0, 'for': 2.0, 'couldn': 1.0, 't': 1.0, 'this': 1.0, 'item': 1.0, 'ask': 1.0, 'is': 1.0, 'another': 1.0, 'a': 1.0, 'one': 1.0, 'does': 2.0, 'that': 1.0, 'what': 1.0, 'great': 1.0, 'it': 2.0, 'inexpensive': 1.0, 'says': 1.0}
Word element => {'looking': 1.0, 'or': 1.0, 'awake': 1.0, 'he': 1.0, 'available': 1.0, 'if': 1.0, 'same': 1.0, 'item': 1.0, 'this': 1.0, 'with': 1.0, 'it': 2.0, 'better': 1.0, 'pay': 1.0, 'not': 1.0, 'gladly': 1.0, 'would': 1.0, 'to': 1.0, 'look': 1.0, 'tell': 1.0, 'kiddo': 1.0, 'the': 2.0, 'great': 1.0, 'around': 1.0, 'more': 1.0, 'is': 1.0, 's': 1.0, 'a': 3.0, 'blurry': 1.0, 'and': 1.0, 'can': 1.0, 'but': 2.0, 'value': 1.0, 'in': 2.0, 'driving': 1.0, 'stars': 1.0, 'for': 2.0, '5': 1.0, 'cause': 1.0, 'my': 2.0, 'i': 3.0, 'satisfies': 1.0, 'use': 1.0, 'everyday': 1.0, 'need': 1.0, 'overall': 1.0, 'image': 1.0, 'at': 1.0, 'safe': 1.0, 'while': 1.0, 'price': 1.0, 'mirror': 2.0, 'm': 1.0, 'reasonably': 1.0, 'manner': 1.0}
Word element => {'else': 1.0, 'attachment': 1.0, 'shape': 1.0, 'finding': 1.0, 'had': 1.0, 'haven': 1.0, 'open': 1.0, 'are': 1.0, 'this': 1.0, 'eyes': 1.0, 'i': 2.0, 'expression': 1.0, 'make': 1.0, 'ok': 1.0, 'somewhat': 1.0, 'good': 2.0, 'get': 1.0, 'area': 1.0, 'wide': 1.0, 'itself': 1.0, 'if': 1.0, 'surface': 1.0, 'disadvantage': 1.0, 'luck': 1.0, 'real': 1.0, 'and': 4.0, 'see': 1.0, 'fuzzy': 1.0, 'ball': 1.0, 'of': 1.0, 'view': 2.0, 'hard': 1.0, 'part': 1.0, 'just': 2.0, 'which': 1.0, 'trip': 1.0, 'reflection': 1.0, 'not': 2.0, 'off': 1.0, 'his': 1.0, 'almost': 1.0, 'mounting': 1.0, 'well': 1.0, 'without': 1.0, 'deal': 2.0, 'the': 10.0, 'covers': 1.0, 'it': 8.0, 'holds': 1.0, 'is': 7.0, 'fine': 1.0, 'rear': 1.0, 'for': 1.0, 'cheap': 1.0, 'price': 1.0, 'onto': 1.0, 'mirror': 6.0, 'child': 2.0, 'don': 2.0, 'about': 1.0, 'so': 3.0, 'expect': 1.0, 'any': 1.0, 'to': 4.0, 'socket': 1.0, 'barely': 1.0, 'you': 4.0, 'a': 9.0, 't': 3.0, 's': 5.0, 'worry': 1.0, 'be': 1.0, 'suction': 2.0, 'anywhere': 1.0, 'need': 1.0, 'or': 1.0, 'cup': 2.0, 'aim': 1.0, 'have': 1.0, 'coming': 1.0, 'convex': 1.0, 'that': 3.0, 'lets': 1.0, 'out': 1.0, 'loose': 1.0, 'little': 1.0, 'tweak': 1.0, 'every': 1.0, 'can': 1.0, 'but': 2.0, 'great': 2.0, 'big': 1.0}
Word element => {'every': 1.0, 'not': 1.0, 'driver': 1.0, 'safer': 1.0, 'much': 1.0, 'long': 1.0, 'waited': 1.0, 'better': 1.0, 'expected': 1.0, 'quality': 1.0, 'certainly': 1.0, 'w': 1.0, 'around': 2.0, 'is': 1.0, 'son': 1.0, 'exactly': 1.0, 'tell': 1.0, 'it': 3.0, 'o': 1.0, 'with': 1.0, 'and': 2.0, 'get': 2.0, 'to': 4.0, 'was': 1.0, 'what': 1.0, 'had': 1.0, 'popped': 1.0, 'low': 1.0, 'i': 10.0, 'pleased': 1.0, 'he': 1.0, 'clarity': 1.0, 'time': 1.0, 'so': 2.0, 'on': 1.0, 'rear': 1.0, 'm': 2.0, 'price': 1.0, 'mirror': 3.0, 'turning': 2.0, 'in': 2.0, 've': 1.0, 'doing': 1.0, 'this': 2.0, 'perfect': 1.0, 'for': 3.0, 'seconds': 1.0, 'my': 2.0, 'believe': 1.0, 'the': 7.0, 'using': 1.0, 'like': 1.0, 'ready': 1.0, 'now': 2.0, 'weeks': 1.0, 'can': 2.0, 'but': 1.0, 'a': 1.0, 's': 1.0, 't': 2.0, 'go': 1.0, 'that': 1.0, 'been': 1.0, 'readjust': 1.0, 'have': 1.0, 'never': 1.0, 'esp': 1.0, 'am': 1.0, 'when': 1.0, 'reviewers': 1.0, 'ridiculously': 1.0, 'some': 1.0, 'whines': 1.0, 'car': 1.0, 'mentioned': 1.0, 'view': 1.0, 'of': 1.0, 'isn': 1.0}
Word element => {'low': 1.0, 'now': 1.0, 'still': 1.0, 'snip': 1.0, 'surface': 1.0, 'if': 1.0, 'in': 2.0, 'snap': 1.0, 'too': 1.0, 'and': 1.0, 'reflective': 1.0, 'magnified': 1.0, 'suction': 1.0, 'first': 1.0, 'from': 1.0, 'cross': 2.0, 'mind': 1.0, 'red': 2.0, 'out': 1.0, 'that': 1.0, '48919a': 1.0, 'babyview': 1.0, 'back': 1.0, 'cup': 1.0, 'or': 1.0, 'more': 1.0, 'is': 4.0, 'seat': 1.0, 'to': 2.0, 'all': 1.0, 'long': 1.0, 'wide': 1.0, 'mount': 1.0, 'rear': 2.0, 'objects': 1.0, 'area': 1.0, 'i': 4.0, 'remove': 1.0, 'american': 2.0, 'it': 5.0, 'its': 1.0, 'only': 1.0, 'this': 1.0, 'based': 1.0, 'direct': 1.0, 'view': 2.0, 'of': 3.0, 'have': 2.0, 'small': 1.0, 'are': 1.0, 'reviews': 1.0, 'stem': 2.0, 'upon': 1.0, 'turns': 1.0, 'the': 8.0, 'can': 1.0, 'but': 1.0, '2': 1.0, '99': 1.0, 'feel': 1.0, 'nice': 1.0, 'mounting': 2.0, 'ball': 1.0, 'see': 2.0, 's': 1.0, 'a': 3.0, 'you': 3.0, 'local': 1.0, 'front': 1.0, 'fit': 1.0, 'for': 2.0, 'bought': 1.0, 'one': 2.0, 'purchasing': 1.0, 'simply': 1.0, 'needs': 1.0, 'also': 2.0, 'shorter': 1.0, 'up': 1.0, 'child': 1.0, 'ended': 1.0, 'my': 2.0, 'another': 1.0, 'quality': 1.0, 'baby': 1.0, 'mirror': 4.0, 'store': 1.0, 'safety': 2.0, 'keep': 1.0, 'at': 1.0, '1st': 1.0}
Word element => {'recommend': 1.0, 'a': 3.0, 'going': 2.0, 's': 2.0, 'visor': 1.0, 'been': 1.0, 'that': 1.0, 'has': 1.0, 'likes': 1.0, 'but': 2.0, '2': 2.0, 'so': 2.0, 'can': 3.0, 'reviews': 1.0, 'they': 1.0, 'other': 1.0, 'read': 1.0, 'wonderful': 2.0, 'more': 1.0, 'it': 3.0, 'she': 1.0, 'highly': 1.0, 'this': 1.0, 'kids': 1.0, 'not': 1.0, 'and': 4.0, 'total': 1.0, 'is': 1.0, 'at': 1.0, 'keep': 1.0, '8': 1.0, 'range': 1.0, 'to': 4.0, 'as': 5.0, 'what': 2.0, 'regular': 1.0, '12': 1.0, 'view': 2.0, 'car': 1.0, 'little': 1.0, 'two': 1.0, 'cross': 1.0, 'mirrors': 1.0, 'me': 1.0, 'my': 2.0, 'order': 1.0, 'grandkids': 1.0, 'from': 1.0, 'child': 1.0, 'product': 2.0, 'for': 4.0, 'bought': 1.0, 'months': 1.0, 'great': 1.0, 'red': 1.0, 'with': 1.0, 'the': 4.0, 'vehicles': 1.0, 'used': 1.0, 'different': 1.0, 'her': 1.0, 'if': 2.0, 'clear': 1.0, 'rear': 1.0, 'ones': 1.0, 'mirror': 1.0, 'both': 1.0, 'you': 3.0, 'idea': 1.0, 'am': 1.0, 'times': 1.0, 'see': 1.0, 'loved': 2.0, 'enough': 1.0, 'know': 1.0, 'on': 3.0, 'behind': 1.0, '6': 1.0, 'mine': 2.0, 'worked': 1.0, 'need': 1.0, 'be': 2.0, 'sun': 1.0, 'much': 1.0, 'well': 2.0, 'i': 3.0, 'daughters': 1.0, 'american': 1.0, 'daughter': 1.0, 'law': 1.0, 'up': 1.0, 'takes': 1.0, 'in': 2.0, 'nieces': 1.0, 'nephews': 1.0, 'needed': 1.0, 'eye': 1.0, 'out': 1.0, 'older': 1.0}
Word element => {'thing': 1.0, 'forgo': 1.0, 'decided': 1.0, 'moves': 1.0, 'after': 1.0, 'like': 1.0, 'head': 1.0, 'in': 1.0, 'our': 1.0, 'hit': 1.0, 'matrix': 1.0, 'time': 3.0, 'whole': 1.0, 'mirrors': 1.0, 'navigation': 1.0, 'fit': 1.0, 'just': 1.0, 'not': 1.0, 'would': 1.0, 'some': 1.0, 'at': 1.0, 'every': 1.0, 'finagled': 1.0, 'work': 1.0, 'will': 1.0, 'off': 1.0, 'we': 2.0, 'mirror': 2.0, 'the': 3.0, 'nearly': 1.0, 'to': 2.0, 'this': 1.0, 'come': 1.0, 'it': 1.0, 'laughing': 1.0, 'me': 1.0, 'flying': 1.0, 'about': 1.0, 'any': 1.0, 'for': 1.0, 'given': 1.0}
Word element => {'together': 1.0, 'holds': 1.0, 'is': 1.0, 'picture': 1.0, 'see': 1.0, 'you': 1.0, 'also': 1.0, 'walkers': 1.0, 'so': 1.0, 'before': 1.0, 'grippers': 3.0, 'son': 1.0, 'red': 1.0, 'with': 2.0, 'only': 1.0, 'i': 4.0, 'socks': 1.0, '12mo': 1.0, 'was': 1.0, 'to': 1.0, 'able': 1.0, 'my': 1.0, 'anywhere': 2.0, '24mo': 2.0, 'brands': 1.0, 'find': 3.0, 'lots': 1.0, 'walk': 1.0, 'he': 2.0, '6': 1.0, 'that': 2.0, 'were': 2.0, 'could': 3.0, 'for': 2.0, 'love': 1.0, 'the': 6.0, 'sicks': 1.0, 'these': 1.0, 'wasted': 1.0, 'had': 1.0, '12': 2.0, 'but': 1.0, 'sticker': 1.0, 'of': 2.0, 'once': 1.0, 'not': 1.0, 'walking': 1.0, 'started': 1.0, 'them': 2.0, 'white': 1.0, 'in': 2.0, 'perfect': 1.0, 'size': 1.0, 'and': 1.0, 'they': 1.0, 'pairs': 1.0, 'are': 1.0, 'new': 1.0}
Word element => {'babies': 1.0, 'breastfed': 1.0, 'they': 1.0, 'tippee': 1.0, 'no': 1.0, 'worries': 1.0, 'latches': 1.0, 'recommend': 1.0, 'bottles': 2.0, 'lifefactory': 1.0, 'with': 2.0, 'on': 1.0, 'nipples': 3.0, 'better': 1.0, 'for': 1.0, 'love': 1.0, 'i': 1.0, 'tommee': 1.0, 'crud': 1.0, 'in': 1.0, 'more': 1.0, 'the': 2.0, 'these': 2.0, 'traditional': 1.0, 'than': 1.0, 'about': 1.0, 'baby': 1.0, 'easier': 1.0, 'and': 1.0}
Word element => {'with': 1.0, 'labeled': 1.0, 'street': 1.0, 'still': 1.0, 'they': 1.0, 'day': 1.0, 'every': 1.0, 'rack': 1.0, 'top': 1.0, 'use': 1.0, 'of': 1.0, 'through': 1.0, 'up': 1.0, 'shape': 1.0, 'amazed': 1.0, 'was': 1.0, 'an': 1.0, 'months': 2.0, 'did': 1.0, 'that': 4.0, 'taken': 1.0, 'it': 1.0, 'and': 3.0, '6': 1.0, 'how': 1.0, 'stage': 3.0, 'i': 3.0, 'perfect': 2.0, 'wish': 1.0, 'different': 1.0, 'had': 1.0, 'word': 1.0, 'our': 2.0, 'to': 2.0, 'constant': 1.0, 'away': 1.0, 'now': 3.0, 'in': 1.0, 'dishwasher': 1.0, 'edit': 1.0, 'than': 1.0, 'find': 1.0, 'are': 3.0, 'would': 2.0, 'at': 2.0, '10months': 1.0, 'breastfed': 1.0, '9': 1.0, 'lifefactory': 2.0, 'trouble': 1.0, 'but': 1.0, '1': 2.0, 'great': 1.0, 'these': 3.0, 'the': 3.0, 'exclusively': 1.0, 'them': 2.0, 'baby': 2.0, 'no': 2.0, 'well': 1.0, 'easier': 1.0, 'has': 1.0, 'way': 1.0, 'nipples': 4.0, 'clearly': 1.0, 'mark': 1.0, 'on': 2.0, 'put': 1.0, 'make': 1.0, 'life': 1.0, 'do': 1.0, 'much': 1.0, 'other': 2.0, 'a': 1.0, 'we': 1.0, 'have': 3.0, 'complaints': 1.0, 'love': 1.0, 'held': 1.0, 'bottles': 1.0, 'is': 2.0}
Word element => {'that': 1.0, 'highly': 1.0, 'along': 1.0, 'other': 1.0, 'recommend': 1.0, 'bottles': 3.0, 'fits': 1.0, 'sucking': 1.0, 'collapse': 1.0, 'does': 1.0, 'newborn': 1.0, 'can': 1.0, 'right': 1.0, 'my': 1.0, 'too': 1.0, 'by': 1.0, 'little': 1.0, 'easily': 2.0, 't': 1.0, 'the': 4.0, 'nipple': 2.0, 'perfectly': 1.0, 'and': 3.0, 'stage': 1.0, 'cleaned': 1.0, 'provides': 1.0, 'lifefactory': 2.0, 'it': 1.0, 'first': 1.0, 'accepted': 1.0, 'this': 1.0, 'with': 3.0, 'regular': 1.0, 'is': 1.0, 'not': 1.0, 'just': 1.0, 'a': 1.0, 'beat': 1.0, 'was': 1.0, 'coaching': 1.0, 'be': 1.0, 'flow': 1.0, 'soft': 1.0}
Word element => {'time': 1.0, 'waste': 1.0, 'recommend': 1.0, 'highly': 1.0, 'higher': 1.0, 'went': 1.0, 'other': 1.0, 'nibbling': 1.0, 'little': 1.0, 'through': 1.0, 'any': 1.0, 'to': 2.0, 'now': 1.0, 'had': 1.0, 'with': 2.0, 'others': 2.0, 'these': 2.0, 'the': 3.0, 'ones': 1.0, 'replace': 1.0, 'nipples': 3.0, 't': 1.0, 'a': 2.0, 'unlike': 1.0, 'money': 1.0, 'dealt': 1.0, 'quality': 1.0, 'them': 3.0, 'are': 2.0, 'your': 1.0, 'therefore': 1.0, 'dr': 1.0, 'hold': 1.0, 'tearing': 1.0, 'silicone': 1.0, 'i': 3.0, '4': 1.0, 'months': 1.0, 'of': 5.0, 'dozen': 1.0, 'brands': 1.0, 'y': 1.0, 'thicker': 1.0, 'cut': 1.0, 'and': 4.0, 'consistently': 1.0, 'don': 1.0, 'up': 1.0, 'browns': 1.0, 'not': 2.0, 'have': 2.0, 'owned': 1.0, 'expensive': 1.0, 'for': 1.0, 'or': 1.0, 'yet': 1.0, 'they': 1.0, 'made': 1.0, 'less': 1.0}
Word element => {'all': 1.0, 'size': 1.0, 'on': 1.0, 'confusion': 1.0, 's': 1.0, 'love': 1.0, 'to': 1.0, 'bottles': 1.0, 'easy': 1.0, 'just': 1.0, 'baby': 1.0, 'by': 1.0, 'our': 1.0, 'tell': 1.0, 'we': 1.0, 'it': 3.0, 'lifefactory': 1.0, 'this': 1.0, 'is': 1.0, 'nipple': 1.0, 'the': 2.0, 'squeezing': 1.0, 'y': 1.0, 'holding': 1.0, 'at': 1.0, 'no': 1.0, 'and': 1.0, 'open': 1.0}
Word element => {'pretty': 1.0, 'walk': 1.0, 'would': 1.0, 'at': 1.0, 'for': 1.0, 'seriously': 1.0, 'paid': 1.0, 'money': 1.0, 'shame': 1.0, 'i': 2.0, 'worth': 1.0, 'by': 1.0, 'not': 1.0, 'because': 1.0, 'the': 2.0, 'it': 1.0, 'this': 1.0, 'even': 1.0, 'a': 2.0, 'dollar': 1.0, 'store': 1.0, 'is': 1.0, 'really': 1.0, 'fabric': 1.0}
Word element => {'size': 1.0, 'has': 1.0, 'ordered': 1.0, 'think': 1.0, 'i': 2.0, '18': 1.0, 'ploblem': 1.0, 'now': 1.0, '24': 1.0, 'is': 2.0, 'months': 1.0, 'on': 1.0, 'my': 1.0, 'it': 2.0, 'way': 1.0, 'but': 2.0, 'doesn': 1.0, 't': 1.0, 'fit': 1.0, 'daughter': 1.0, 'herit': 1.0, 'too': 1.0, 'for': 1.0, 'tight': 1.0, '19months': 1.0, 'her': 1.0}
Word element => {'to': 1.0, 'nothing': 1.0, 'times': 1.0, 'million': 1.0, 'happened': 1.0, 'washed': 1.0, 'good': 1.0, 'i': 2.0, 'it': 2.0, 'love': 1.0, 'brand': 2.0, 'the': 1.0, 'are': 1.0, 'this': 2.0, 'but': 1.0, 'all': 1.0, 'quality': 1.0, 'and': 2.0, 'very': 1.0, 'items': 1.0, 'on': 1.0, 'soft': 1.0}
Word element => {'definitely': 1.0, 'yourself': 1.0, 'just': 1.0, 'showers': 1.0, 'in': 1.0, 'daughter': 1.0, 'for': 2.0, 'yesterday': 1.0, 'my': 2.0, 'due': 1.0, 'had': 1.0, 'granddaughter': 1.0, 'to': 3.0, 'buy': 1.0, 'i': 1.0, 'or': 1.0, 'loves': 1.0, 'july': 1.0, 'recommend': 1.0, 'she': 1.0, 'received': 1.0, 'this': 1.0, 'it': 3.0, 'great': 1.0, 'and': 2.0, 'is': 1.0, 'so': 1.0, 'gift': 1.0, 'send': 1.0, 'cute': 1.0, 'girly': 1.0}
Word element => {'with': 1.0, 'go': 1.0, 'love': 1.0, 'wrong': 1.0, 'can': 1.0, 'it': 2.0, 'really': 1.0, 'adorable': 1.0, 'and': 1.0, 'item': 1.0, 'this': 1.0, 't': 1.0, 'loved': 1.0, 'bph': 1.0, 'free': 1.0, 'mom': 1.0, 'worth': 1.0, 'the': 1.0, 'expectant': 1.0, 'price': 1.0}
Word element => {'little': 1.0, 'princess': 1.0, 'a': 1.0, 'is': 1.0, 'who': 1.0, 'niece': 1.0, 'great': 1.0, 'for': 1.0, 'purchased': 1.0, 'of': 1.0, 'my': 1.0, 'the': 1.0, 'criteria': 1.0, 'title': 1.0, 'bpa': 1.0, 'orthodontic': 1.0, 'free': 1.0, 'and': 2.0, 'fits': 1.0, 'perfect': 1.0, 'safe': 1.0}
Word element => {'things': 1.0, 'of': 1.0, 'rest': 1.0, 'match': 1.0, 'did': 1.0, 'bag': 1.0, 'diaper': 1.0, 'the': 5.0, 'not': 2.0, 'main': 1.0, 'items': 2.0, 'like': 1.0, 'were': 2.0, 'great': 2.0, 'comforter': 1.0, 'even': 1.0, 'miscellaneous': 1.0, 'so': 1.0, 'sheets': 1.0, 'curtains': 1.0}
Word element => {'did': 1.0, 'happy': 1.0, 'them': 1.0, 'a': 1.0, 'would': 1.0, 'august': 1.0, 'in': 1.0, 'due': 1.0, 'mother': 1.0, 'the': 1.0, 'are': 1.0, 'make': 1.0, 'didnt': 1.0, 'and': 3.0, 'baby': 1.0, 'pink': 1.0, 'want': 1.0, 'is': 1.0, 'lot': 1.0, 'of': 1.0, 'father': 1.0, 'into': 1.0, 'camo': 1.0, 'so': 1.0, 'thought': 1.0, 'it': 1.0, 'this': 1.0}
Word element => {'so': 1.0, 'was': 1.0, 'plus': 1.0, 'did': 1.0, 'everything': 1.0, 'had': 1.0, 'adorable': 1.0, 'although': 1.0, 'the': 2.0, 'is': 1.0, 'back': 1.0, 'said': 1.0, 'i': 1.0, 'comforter': 1.0, 'of': 1.0, 'polka': 1.0, 'it': 4.0, 'love': 1.0, 'dots': 1.0}
Word element => {'before': 1.0, 'their': 1.0, 'soho': 1.0, 'rid': 1.0, 'johnny': 1.0, 'apart': 1.0, 'matter': 2.0, 'phone': 3.0, 'amazon': 1.0, 'an': 2.0, 'other': 1.0, 'wrote': 1.0, 'review': 5.0, 'bedding': 3.0, 'definitely': 1.0, 'some': 1.0, 'in': 4.0, 'off': 1.0, 'see': 1.0, 'until': 2.0, 'stars': 1.0, 'wanted': 1.0, 'ran': 1.0, 'get': 1.0, 'but': 6.0, 'so': 1.0, 'ironing': 1.0, 'one': 1.0, 'got': 2.0, 'of': 7.0, 'even': 1.0, 'pressing': 1.0, 'material': 1.0, 'not': 6.0, 'it': 8.0, 'read': 1.0, 'months': 1.0, 'sets': 1.0, 'eyes': 1.0, 'this': 3.0, 'company': 1.0, 'accept': 1.0, 'color': 1.0, 'what': 4.0, 'recognize': 1.0, 'when': 1.0, 'purchased': 1.0, 'my': 6.0, 'undone': 2.0, 'guy': 1.0, 'manager': 1.0, 'me': 4.0, 'if': 3.0, 'service': 1.0, 'washing': 1.0, 'up': 2.0, 'wash': 1.0, 'skirt': 1.0, 'decision': 1.0, 'e': 1.0, 'thin': 1.0, 'experience': 1.0, 'the': 21.0, 'online': 3.0, 'any': 2.0, 'many': 2.0, 'your': 3.0, 'issue': 1.0, 'they': 2.0, 'bled': 1.0, 'from': 3.0, 'allow': 1.0, 'hold': 2.0, 'camo': 1.0, 'prior': 1.0, 'all': 2.0, 'call': 3.0, 'insulted': 1.0, 'rough': 1.0, 'can': 1.0, 'is': 4.0, 'at': 3.0, 'comes': 1.0, 'once': 1.0, 'couple': 1.0, 'lose': 1.0, 'anyone': 1.0, 't': 7.0, 'further': 2.0, 'a': 8.0, 'easily': 1.0, 'that': 3.0, 'because': 1.0, 'you': 5.0, 'things': 3.0, 'wrinkles': 1.0, 'caused': 1.0, 'set': 1.0, 'pink': 1.0, 'should': 1.0, 'would': 2.0, 'sleeping': 1.0, 'shredded': 1.0, 'new': 1.0, 'commercial': 1.0, 'fashion': 1.0, 'less': 2.0, 'as': 2.0, 'immediately': 2.0, 'on': 3.0, 'customer': 1.0, '25': 1.0, 'first': 4.0, 'didn': 3.0, 'number': 2.0, 'answer': 3.0, 'him': 5.0, 'he': 6.0, 'left': 1.0, 'wanting': 1.0, 'voicemail': 1.0, 'telling': 1.0, 'seams': 1.0, '3': 1.0, 'well': 1.0, 'wants': 1.0, 'buy': 2.0, 'make': 6.0, 'to': 16.0, 'right': 4.0, 'have': 4.0, 'stating': 1.0, 'same': 1.0, 'called': 1.0, 'more': 1.0, 'minutes': 2.0, 'ripped': 1.0, 'i': 25.0, 'finally': 1.0, 'had': 1.0, 'offered': 2.0, 'tell': 1.0, 'washed': 2.0, 'remove': 2.0, 'iron': 1.0, 's': 1.0, 'obvious': 1.0, 'his': 1.0, 'don': 1.0, 've': 1.0, 'talk': 1.0, 'now': 1.0, 'time': 3.0, 'did': 1.0, 'd': 3.0, 'told': 1.0, 'discuss': 1.0, 'will': 1.0, 'tried': 1.0, 'and': 8.0, 'just': 2.0, 'its': 1.0, 'later': 1.0, 'mail': 2.0, 'no': 1.0, 'times': 1.0, 'few': 1.0, 'send': 2.0, 'refund': 3.0, 'back': 2.0, 'check': 2.0, 'again': 2.0, 'which': 1.0, 'agreed': 1.0, 'half': 2.0, 'came': 2.0, 'said': 3.0, 'was': 3.0, 'hands': 1.0, 'refused': 1.0, 'than': 2.0, 'ten': 1.0, 'removed': 2.0, 'only': 3.0, 'then': 1.0, 'paid': 2.0, 'reviews': 2.0, 'thinking': 1.0, 'about': 1.0, 'reading': 1.0, 'pieces': 1.0, 'for': 3.0, 'product': 2.0, 'products': 2.0, 'infant': 1.0, 'after': 1.0, 'by': 1.0, 'won': 2.0, 'ago': 1.0, 'silence': 1.0, 'recommend': 1.0, 'sure': 1.0, 'system': 1.0, 'do': 1.0, 'homework': 1.0}
Word element => {'happy': 1.0, 'i': 1.0, 'enough': 1.0, 'just': 1.0, 'but': 1.0, 'camo': 1.0, 'much': 1.0, 'to': 1.0, 'was': 1.0, 'not': 1.0, 'price': 1.0, 'awesome': 1.0, 'beat': 1.0, 'can': 1.0, 'everything': 1.0, 'set': 1.0, 'you': 2.0, 'incudes': 1.0, 'the': 1.0, 'very': 1.0, 'and': 1.0, 'need': 1.0, 't': 1.0}
Word element => {'set': 1.0, 'bed': 1.0, 'baby': 1.0, 'camo': 1.0, 'likethe': 1.0, 'much': 1.0, 'how': 1.0, 'loved': 2.0, 'saw': 1.0, 'she': 4.0, 'pink': 1.0, 'didn': 1.0, 'but': 1.0, 'all': 1.0, 'my': 1.0, 't': 1.0, 'the': 1.0, 'it': 4.0, 'like': 1.0, 'do': 1.0, 'and': 1.0, 'we': 2.0, 'tall': 1.0, 'once': 1.0, 'doughter': 1.0, 'i': 1.0, 'really': 1.0, 'want': 1.0, 'people': 1.0, 'time': 1.0}
Word element => {'have': 1.0, 'love': 1.0, 'is': 1.0, 'came': 1.0, 'bag': 1.0, 'soon': 1.0, 'in': 1.0, 'company': 1.0, 'must': 1.0, 'as': 1.0, 'from': 1.0, 'set': 1.0, 'affordable': 1.0, 'the': 1.0, 'great': 1.0, 'its': 2.0, 'will': 1.0, 'cute': 2.0, 'so': 2.0, 'waqs': 1.0, 'am': 1.0, 'and': 3.0, 'bought': 1.0, 'thought': 1.0, 'satisfied': 1.0, 'i': 5.0, 'qualityas': 1.0, 'another': 1.0, 'a': 2.0, 'well': 2.0, 'totally': 1.0, 'it': 3.0, 'this': 3.0, 'with': 1.0, 'orded': 1.0, 'bedding': 1.0}
Word element => {'others': 1.0, 'would': 1.0, 'cute': 1.0, 'still': 1.0, 'in': 1.0, 'disapointed': 1.0, 'little': 1.0, 'a': 1.0, 'polk': 1.0, 'set': 1.0, 'on': 1.0, 'the': 3.0, 'thing': 1.0, 'other': 1.0, 'first': 1.0, 'only': 1.0, 'this': 2.0, 'it': 5.0, 'that': 2.0, 'dots': 1.0, 'recomed': 1.0, 'i': 3.0, 'reversable': 1.0, 'but': 2.0, 'not': 1.0, 'just': 1.0, 'like': 2.0, 'shows': 1.0, 'at': 1.0, 'solid': 1.0, 'to': 1.0, 'was': 1.0, 'camo': 1.0, 'is': 5.0, 'really': 2.0, 'side': 1.0}
Word element => {'from': 1.0, 'buying': 1.0, 'about': 1.0, 'be': 1.0, 'total': 1.0, 'with': 1.0, 'disgusted': 1.0, 'since': 1.0, 'adorable': 1.0, 'after': 1.0, 'months': 1.0, 'cautious': 1.0, 'money': 1.0, 'bought': 2.0, 'do': 1.0, 'put': 2.0, 'baby': 1.0, 'but': 1.0, 'didn': 1.0, 'wouldn': 1.0, 'crib': 2.0, 'lowered': 1.0, 'big': 1.0, 'enough': 1.0, 'take': 1.0, 'bedding': 4.0, 'a': 4.0, 'go': 1.0, 'for': 2.0, 'product': 2.0, 'rest': 1.0, 't': 5.0, 'ago': 1.0, 'fit': 2.0, 'online': 1.0, 'primarily': 1.0, 'company': 1.0, 'only': 1.0, 'waste': 1.0, 'set': 4.0, 'they': 1.0, 'aren': 1.0, 'ruffle': 1.0, 'the': 9.0, 'of': 2.0, 'too': 1.0, 'bumper': 4.0, 'bird': 1.0, 'to': 2.0, 'as': 1.0, 'all': 1.0, 'had': 1.0, 'was': 2.0, 'doesn': 1.0, 'i': 12.0, 'my': 1.0, 'checked': 1.0, 'dust': 1.0, 'way': 2.0, 'grew': 1.0, 'awful': 1.0, 'two': 1.0, 'little': 1.0, 'motif': 1.0, 'is': 5.0, 'around': 1.0, 'thought': 2.0, 'it': 9.0, '9': 1.0, 'what': 2.0, 'when': 2.0, 'you': 2.0, 'am': 1.0, 'and': 4.0, 'recommended': 1.0, 'who': 1.0, 'won': 1.0, 'infants': 1.0, 'so': 2.0, 'just': 1.0, 'this': 6.0, 'few': 1.0, 'anything': 1.0, 'days': 1.0, 'buy': 2.0, 'not': 2.0, 'standard': 1.0, 'sized': 1.0, 'until': 2.0, 'off': 2.0, 'yes': 1.0, 'fact': 1.0, 'suppose': 1.0, 'quilt': 1.0, 'have': 2.0, 'first': 1.0, 'would': 2.0, 'should': 1.0, 'rip': 1.0, 'received': 1.0, 'also': 1.0, 'on': 3.0, 'long': 1.0, 'realize': 1.0, 'however': 1.0, 'in': 1.0, 'tree': 1.0, 'pad': 1.0, 'short': 1.0, 'sections': 1.0, 'plain': 1.0, 'white': 1.0}
Word element => {'girl': 1.0, 'for': 1.0, 'pink': 1.0, 'not': 1.0, 's': 1.0, 'looks': 1.0, 'so': 1.0, 'set': 1.0, '10': 1.0, 'on': 1.0, 'deal': 1.0, 'something': 1.0, 'that': 1.0, 'our': 1.0, 'in': 2.0, 'pc': 1.0, 't': 1.0, 'great': 2.0, 'can': 1.0, 'wait': 1.0, 'this': 1.0, 'it': 1.0, 'to': 2.0, 'a': 1.0, 'see': 1.0, 'baby': 1.0, 'nursery': 1.0, 'glad': 1.0, 'find': 1.0}
Word element => {'mobile': 1.0, 'there': 1.0, 'price': 1.0, 'just': 1.0, 'even': 1.0, 'use': 2.0, 'sure': 1.0, 'holder': 1.0, 'ok': 1.0, 'diaper': 1.0, 'pretty': 1.0, 'valences': 1.0, 'getting': 1.0, 'or': 1.0, 'worth': 2.0, 'good': 2.0, 'are': 2.0, 'll': 1.0, 'bumper': 2.0, 'bed': 2.0, 'bib': 1.0, 'with': 1.0, 'if': 2.0, 'hanger': 1.0, 'same': 1.0, 'worthless': 1.0, 'comforter': 2.0, 'pillow': 1.0, 'pieces': 1.0, 'of': 1.0, 'case': 1.0, 'flowers': 1.0, 'i': 9.0, 'guess': 1.0, 'those': 1.0, 'not': 4.0, 'birds': 1.0, 'useless': 1.0, 'it': 6.0, 'this': 2.0, 'matching': 1.0, 'neutral': 1.0, 'fortune': 1.0, 'woodland': 1.0, 'flat': 1.0, 'have': 1.0, 'set': 2.0, 'quality': 2.0, 'relatively': 1.0, 'sad': 1.0, 'for': 1.0, 'my': 2.0, 'cost': 1.0, 'gender': 1.0, 'because': 1.0, 'than': 1.0, 'nursery': 1.0, 'and': 6.0, 'wanted': 2.0, 'as': 1.0, 'to': 3.0, 'husband': 1.0, 'oh': 1.0, 'be': 1.0, 'had': 1.0, 'purchased': 2.0, 'balance': 1.0, 'make': 1.0, 'skirt': 2.0, 'think': 1.0, 'decals': 1.0, 'no': 1.0, 'wall': 1.0, 'is': 3.0, 'more': 1.0, 'we': 1.0, 'a': 4.0, 's': 3.0, 't': 1.0, 'tad': 1.0, 'the': 13.0, 'girly': 1.0, 'but': 3.0, 'was': 1.0, 'doesn': 1.0, 'vary': 1.0, 'bit': 1.0, 'boy': 2.0, 'so': 1.0, 'tossed': 1.0, 'really': 1.0, 'also': 2.0, 'in': 2.0, 'some': 1.0, 'toy': 1.0, 'creatures': 1.0, 'pinks': 1.0}
Word element => {'thanks': 1.0, 'yellow': 1.0, 'didn': 1.0, 'even': 1.0, 'my': 1.0, 'color': 1.0, 'perfect': 1.0, 'in': 1.0, 'purchase': 1.0, 'got': 1.0, 'loved': 1.0, 'the': 1.0, 'diaper': 1.0, 't': 1.0, 'bag': 1.0, 'know': 1.0, 'with': 1.0, 'this': 1.0, 'it': 1.0, 'i': 3.0, 'going': 1.0, 'its': 1.0, 'was': 1.0, 'to': 1.0, 'and': 1.0, 'get': 1.0, 'a': 1.0}
Word element => {'buy': 1.0, 'other': 1.0, 'stuck': 1.0, 'getting': 1.0, 'about': 1.0, 'worry': 1.0, 'is': 1.0, 'favorite': 1.0, 'faded': 1.0, 'deep': 1.0, 'don': 1.0, 'wash': 1.0, 'him': 1.0, 'feed': 1.0, 'when': 1.0, 'them': 1.0, 'clothes': 2.0, 'his': 1.0, 'dryer': 1.0, 'have': 2.0, 'fabric': 1.0, 'bibs': 1.0, 'part': 1.0, 'from': 1.0, 'son': 1.0, 'own': 1.0, 'the': 5.0, 'these': 1.0, 'great': 3.0, 'are': 3.0, 'keeps': 1.0, 'on': 1.0, '4': 1.0, 'i': 3.0, 'at': 2.0, 'color': 1.0, 'bought': 1.0, 'ross': 1.0, 'closure': 1.0, 'for': 2.0, 'brown': 1.0, 'in': 3.0, 'hasn': 1.0, 'drooly': 1.0, 'style': 1.0, 't': 2.0, 'we': 1.0, 'a': 3.0, 'stage': 1.0, 'and': 3.0, 'similar': 1.0, 'layer': 1.0, 'chew': 1.0, 'they': 5.0, 'between': 1.0, 'so': 1.0, 'o': 1.0, 'wetness': 1.0, 'through': 1.0, 'snap': 1.0, 'enough': 1.0, 'my': 2.0, 'soaking': 1.0, 'that': 2.0, 'loves': 1.0, 'all': 1.0, 'our': 1.0, 'any': 1.0, 'to': 4.0, 'it': 1.0, 'large': 1.0, 'best': 1.0, 'm': 1.0, 'protect': 1.0}
Word element => {'36': 1.0, 'to': 1.0, 'are': 1.0, 'they': 1.0, 'great': 1.0, 'these': 1.0, 'used': 1.0, 'sized': 1.0, 'from': 1.0, 'very': 1.0, 'and': 2.0, '6': 1.0, 'of': 2.0, 'up': 1.0, 'washes': 1.0, 'bibs': 2.0, 'snapped': 1.0, 'several': 1.0, 'have': 2.0, 'we': 2.0, 'well': 2.0, 'stay': 1.0, 'hold': 1.0, 'generously': 1.0, 'with': 1.0, 'lots': 1.0, 'months': 2.0, 'uses': 1.0, 'them': 1.0}
Word element => {'cute': 1.0, 'complete': 1.0, 'very': 1.0, 'is': 1.0, 'set': 1.0, 'than': 1.0, 'hoped': 1.0, 'd': 1.0, 'well': 1.0, 'girls': 1.0, 'good': 1.0, 'be': 1.0, 'would': 1.0, 'the': 7.0, 'i': 4.0, 'either': 1.0, 'bumper': 1.0, 'that': 2.0, 'totally': 1.0, 'crib': 1.0, 'boys': 1.0, 'trim': 1.0, 'translates': 1.0, 'or': 1.0, 'theme': 1.0, 'other': 1.0, 'strings': 1.0, 'wanted': 1.0, 'was': 1.0, 'turned': 1.0, 'and': 3.0, 'matching': 1.0, 'ducky': 1.0, 'bill': 1.0, 'for': 2.0, 'fit': 1.0, 'soft': 1.0, 'this': 2.0, 'nursery': 1.0, 'only': 1.0, 'room': 2.0, 'brown': 2.0, 'thing': 1.0, 'did': 1.0, 'not': 2.0, 'think': 1.0, 'on': 2.0, 'like': 1.0, 'which': 2.0, 'as': 2.0, 'our': 1.0, 'to': 1.0, 'outside': 1.0, 'of': 1.0, 'out': 1.0, 'my': 1.0, 'baby': 1.0, 'a': 2.0, 's': 1.0}
Word element => {'one': 1.0, 'other': 1.0, 'will': 1.0, 'wonderful': 1.0, 'great': 1.0, 'you': 1.0, 'thank': 1.0, 'apart': 1.0, 'because': 1.0, 'in': 1.0, 'diaper': 2.0, 'get': 1.0, 'stuff': 1.0, 'set': 1.0, 'quality': 1.0, 'ahead': 1.0, 'went': 1.0, 'eye': 1.0, 'happy': 1.0, 'it': 6.0, 'with': 2.0, 'bonus': 1.0, 'which': 1.0, 'girl': 1.0, 'nuetral': 1.0, 'time': 1.0, 'boy': 1.0, 'makes': 1.0, 'decor': 1.0, 'be': 1.0, 'all': 1.0, 'to': 6.0, 'expecting': 1.0, 'recommend': 1.0, 'anymore': 1.0, 'was': 2.0, 'or': 2.0, 'i': 6.0, 'little': 1.0, 'very': 1.0, 'just': 2.0, 'deal': 1.0, 'the': 11.0, 'fall': 1.0, 'comes': 1.0, 'is': 3.0, 'pleasing': 1.0, 'not': 1.0, 'style': 1.0, 'daughter': 1.0, 'have': 2.0, 'coming': 1.0, 'family': 1.0, 'my': 1.0, 'purchase': 1.0, 'got': 1.0, 'enough': 1.0, 'colors': 1.0, 'starting': 1.0, 'curtain': 1.0, 'and': 7.0, 'couldn': 1.0, 'this': 1.0, 'soft': 1.0, 'cozy': 1.0, 'love': 4.0, 'for': 2.0, 'specific': 1.0, 'her': 1.0, 'who': 1.0, '1st': 1.0, 'birthday': 1.0, 'loves': 1.0, 'that': 2.0, 'we': 1.0, 'a': 2.0, 't': 2.0, 's': 1.0, 'up': 3.0, 'are': 1.0, 'blanket': 1.0, 'august': 1.0, 'can': 1.0, 'but': 1.0, 'bag': 2.0, 'wait': 2.0}
Word element => {'quality': 1.0, 'nursery': 1.0, 'find': 1.0, 'execellent': 1.0, 'you': 1.0, 'because': 1.0, 'is': 2.0, 'however': 1.0, 'star': 1.0, '5': 1.0, 'matching': 1.0, 'and': 1.0, 'colors': 1.0, 'can': 2.0, 'set': 2.0, 'boy': 1.0, 'lamp': 1.0, 'bedding': 1.0, 'reason': 1.0, 'only': 1.0, 'wouldn': 1.0, 'this': 2.0, 'are': 1.0, 't': 2.0, 'the': 3.0, 'i': 2.0, 'or': 2.0, 'musical': 1.0, 'be': 1.0, 'used': 1.0, 'mobil': 1.0, 'love': 1.0, 'for': 1.0, 'bright': 1.0, 'a': 4.0, 'girl': 1.0, 'give': 1.0}
Word element => {'50': 1.0, '200': 1.0, 'not': 1.0, 'very': 1.0, 'kept': 1.0, 'if': 1.0, 'magazine': 1.0, 'no': 1.0, 'seller': 1.0, 'from': 1.0, 'review': 1.0, 'fake': 1.0, 'there': 1.0, 'mad': 1.0, 'also': 1.0, 'fell': 1.0, 'it': 3.0, 'don': 1.0, 'wash': 1.0, 'product': 1.0, 'for': 3.0, 'afraid': 1.0, 'disapointed': 1.0, 'would': 2.0, 'thin': 1.0, 'think': 1.0, 'ruff': 1.0, 'i': 6.0, 'low': 1.0, 'had': 1.0, 'what': 1.0, 'is': 4.0, 'am': 1.0, 'you': 2.0, '180': 1.0, 'been': 1.0, 'that': 2.0, 'victorian': 1.0, 'than': 1.0, 'of': 1.0, 'carters': 1.0, 'could': 1.0, 'go': 1.0, 'a': 5.0, 't': 2.0, 'the': 5.0, 'flowers': 1.0, 'be': 2.0, 'cotton': 1.0, 'are': 1.0, 'price': 1.0, '60': 1.0, 'thread': 1.0, 'so': 2.0, 'didn': 1.0, 'baby': 1.0, 'quality': 2.0, 'lower': 1.0, 'count': 1.0, 'they': 1.0, 'inexpensive': 1.0, 'have': 1.0, 'pretty': 1.0, 'take': 1.0, 'shame': 1.0, 'walmart': 1.0, 'was': 2.0, 'and': 2.0, 'sure': 1.0, 'get': 1.0, 'but': 4.0, 'can': 1.0, 'set': 2.0, 'by': 1.0, 'at': 1.0, 'fooled': 1.0, 'to': 2.0, 'least': 1.0, 'this': 2.0, 'soft': 1.0}
Word element => {'baby': 1.0, 'store': 1.0, 'r': 1.0, 'to': 1.0, 'compare': 1.0, 'us': 1.0, 'i': 1.0, 'price': 1.0, 'soft': 1.0, 'over': 1.0, 'nice': 1.0, 'good': 1.0, 'very': 1.0, 'and': 1.0, 'as': 1.0, 'well': 1.0, '20': 1.0, 'we': 1.0, '00': 1.0, 'save': 1.0, 'it': 1.0, 'love': 1.0}
Word element => {'bed': 1.0, 'for': 1.0, 'virus': 1.0, 'stomach': 1.0, 'consider': 1.0, 'much': 1.0, 'child': 1.0, 'when': 1.0, 'exposed': 1.0, 'bottom': 1.0, 'set': 2.0, 'of': 2.0, 'is': 3.0, 'around': 1.0, 'enough': 1.0, 'we': 1.0, 'a': 3.0, 'and': 2.0, 'gotten': 1.0, 'extra': 1.0, 'should': 1.0, 'better': 1.0, 'the': 7.0, 'elastic': 1.0, 'will': 2.0, 'them': 2.0, 'quality': 1.0, 'have': 1.0, 'toddler': 1.0, 'sheets': 3.0, 'money': 2.0, 'colors': 1.0, 'purchased': 1.0, 'these': 1.0, 'decent': 1.0, 'as': 1.0, 'to': 2.0, 'are': 2.0, 'his': 1.0, 'spent': 1.0, 'very': 1.0, 'seem': 1.0, 'son': 1.0, 'older': 1.0, 'thin': 1.0, 'scratchy': 2.0, 'i': 1.0, 'not': 2.0, 'just': 1.0, 'save': 1.0, 'my': 2.0, 'newborn': 1.0, 'put': 1.0, 'on': 1.0, 'nice': 1.0, 'material': 1.0, 'trying': 1.0, 'cotton': 1.0, 'be': 1.0, 'maybe': 1.0, 'does': 1.0}
Word element => {'thats': 1.0, 'toddler': 1.0, 'will': 1.0, 'baby': 1.0, 'fit': 2.0, 'crib': 1.0, 'if': 1.0, 'mini': 1.0, 'the': 1.0, 'wondering': 1.0, 'and': 2.0, 'coz': 1.0, '24x36': 1.0, 'bed': 1.0, 'im': 1.0, 'we': 1.0, 'what': 1.0, 'dimension': 1.0, 'this': 1.0, 'it': 2.0, 'is': 1.0, 'says': 1.0, 'have': 1.0, 'all': 1.0, 'cribs': 1.0}
Word element => {'too': 1.0, 'put': 2.0, 'but': 1.0, 'nicely': 1.0, 'the': 4.0, 'set': 3.0, 'born': 1.0, 'whole': 1.0, 'grandson': 1.0, 'this': 1.0, 'of': 1.0, 'shower': 1.0, 'it': 4.0, 'he': 1.0, 'is': 3.0, 'course': 1.0, 'really': 1.0, 'beautiful': 1.0, 'little': 1.0, 'gift': 1.0, 'cute': 1.0, 'bought': 1.0, 'be': 1.0, 'yet': 1.0, 'for': 4.0, 'my': 1.0, 'together': 2.0, 'not': 1.0, 'just': 1.0, 'quilt': 2.0, 'show': 1.0, 'outgrows': 1.0, 'with': 1.0, 'piece': 1.0, 'a': 4.0, 's': 1.0, 'in': 1.0, 'great': 1.0, 'nice': 1.0, 'zippered': 1.0, 'bag': 1.0, 'that': 1.0, 'storing': 1.0, 'are': 1.0, 'when': 1.0, 'll': 1.0, 'bumper': 1.0, 'pads': 1.0}
Word element => {'them': 1.0, 'same': 1.0, 'the': 1.0, 'boy': 1.0, 'absolutely': 1.0, 'who': 2.0, 'niece': 1.0, 'i': 2.0, 'item': 1.0, 'use': 1.0, 'wants': 1.0, 'loved': 1.0, 'my': 1.0, 'it': 1.0, 'this': 3.0, 'shower': 1.0, 'bought': 1.0, 'her': 1.0, 'baby': 1.0, 'is': 1.0, 'anyone': 1.0, 'having': 1.0, 'a': 1.0, 'weekend': 1.0, 'would': 1.0, 'recommend': 1.0, 'for': 1.0, 'bed': 1.0, 'set': 1.0, 'to': 2.0}
Word element => {'fitted': 1.0, 'unsafe': 1.0, 'but': 1.0, 'pretty': 1.0, 'them': 1.0, 'short': 1.0, 'time': 1.0, 'so': 2.0, 'the': 5.0, 'sewn': 1.0, 'large': 1.0, 'was': 1.0, 'had': 2.0, 'not': 2.0, 'is': 3.0, 'for': 2.0, 'strings': 1.0, 'true': 1.0, 'this': 2.0, 'it': 3.0, 'my': 1.0, 'fits': 1.0, 'set': 1.0, 'states': 1.0, 'clearly': 1.0, 'that': 1.0, 'were': 2.0, 'cribs': 1.0, 'far': 1.0, 'mattresses': 1.0, 'to': 2.0, 'all': 3.0, 'loosely': 1.0, 'crib': 3.0, 'sizes': 1.0, 'too': 1.0, 'and': 4.0, 'material': 1.0, 'at': 1.0, 'flimsy': 1.0, 'well': 1.0, 'see': 1.0, 'could': 1.0, 'bedding': 2.0, 'a': 2.0, 'we': 3.0, 'trouble': 1.0, 'while': 1.0, 'bumper': 1.0, 'use': 1.0, 'tying': 2.0, 'on': 1.0, 'difficult': 1.0, 'test': 1.0, 'wwhen': 1.0, 'if': 1.0, 'even': 1.0, 'various': 1.0, 'some': 1.0}
Word element => {'places': 1.0, 'other': 1.0, 'of': 1.0, 'that': 1.0, 'than': 1.0, 'better': 1.0, 'twins': 1.0, 'also': 1.0, 'having': 1.0, 'sets': 1.0, 'two': 1.0, 'bought': 1.0, 'a': 1.0, 'walmart': 1.0, 'bag': 1.0, 'came': 1.0, 'even': 1.0, 'because': 1.0, 'just': 1.0, 'all': 1.0, 'as': 1.0, 'and': 1.0, 'looked': 1.0, 'this': 1.0, 'with': 1.0, 'bedding': 1.0, 'price': 1.0, 'baby': 1.0, 'the': 1.0, 't': 1.0, 'great': 1.0, 'm': 1.0, 'described': 1.0, 'considering': 1.0, 'socks': 1.0, 'was': 2.0, 'which': 1.0, 'i': 4.0, 'wasn': 1.0, 'expecting': 1.0, 'or': 1.0, 'good': 1.0}
Word element => {'in': 1.0, 'us': 1.0, 'get': 1.0, 'long': 1.0, 'arrival': 1.0, 'mail': 1.0, 'to': 3.0, 'be': 1.0, 'all': 2.0, 'didn': 1.0, 'at': 1.0, 'for': 1.0, 'missing': 1.0, 'take': 1.0, 's': 1.0, 'seem': 1.0, 'looks': 1.0, 'the': 3.0, 't': 1.0, 'great': 1.0, 'none': 1.0, 'baby': 1.0, 'of': 1.0, 'ready': 1.0, 'peices': 1.0}
Word element => {'baby': 1.0, 'and': 1.0, 'in': 1.0, 'crib': 1.0, 'the': 2.0, 'perfect': 1.0, 'i': 2.0, 'found': 1.0, 'was': 1.0, 'it': 2.0, 'great': 1.0, 'glad': 1.0, 'so': 1.0, 'am': 1.0, 'looks': 1.0, 'room': 1.0, 'with': 1.0}
Word element => {'nothing': 1.0, 'there': 1.0, 'bag': 1.0, 'my': 2.0, 'joy': 1.0, 'the': 4.0, 'a': 1.0, 'well': 1.0, 'look': 1.0, 'was': 2.0, 'to': 1.0, 'price': 1.0, 'but': 2.0, 'money': 2.0, 'baby': 1.0, 'i': 6.0, 'on': 2.0, 'paid': 1.0, 'after': 1.0, 'so': 1.0, 'it': 4.0, 'regrets': 1.0, 'this': 1.0, 'scared': 1.0, 'face': 1.0, 'received': 1.0, 'into': 1.0, 'worth': 1.0, 'or': 1.0, 'looking': 1.0, 'spending': 1.0, 'in': 1.0, 've': 1.0, 'when': 1.0, 'seen': 1.0, 'am': 1.0, 'little': 1.0, 'very': 1.0, 'adorable': 1.0, 'set': 1.0, 'pleased': 1.0, 'is': 2.0, 'thickest': 1.0, 'padding': 1.0, 'have': 1.0, 'no': 1.0, 'not': 1.0, 'quilt': 1.0}
Word element => {'beautiful': 1.0, 'i': 1.0, 'my': 1.0, 'and': 1.0, 'can': 1.0, 'love': 1.0, 'it': 4.0, 'wait': 1.0, 'everything': 1.0, 'the': 1.0, 't': 1.0, 'wanted': 1.0, 'matches': 1.0, 'granddaughter': 1.0, 'to': 1.0, 'up': 1.0, 'set': 1.0, 'what': 1.0, 'on': 1.0, 'looks': 1.0, 'is': 1.0, 'crib': 1.0, 'just': 1.0, 'she': 1.0}
Word element => {'fits': 1.0, 'awesome': 1.0, 'that': 1.0, 'set': 1.0, 'of': 1.0, 'all': 1.0, 'unbeatable': 1.0, 'looks': 1.0, 'is': 1.0, 'price': 1.0, 'the': 2.0, 'for': 2.0, 'daughter': 1.0, 'could': 1.0, 'her': 2.0, 'everywhere': 1.0, 'nursery': 1.0, 'themed': 1.0, 'everything': 1.0, 'items': 1.0, 'star': 2.0, 'goes': 1.0, 'we': 2.0, 'rock': 2.0, 'son': 1.0, 'nice': 2.0, 'anything': 1.0, 'until': 1.0, 'checked': 1.0, 'here': 1.0, 'new': 1.0, 'a': 1.0, 'wanted': 1.0, 'and': 3.0, 'my': 1.0, 'theme': 1.0, 'find': 1.0, 'this': 1.0, 'with': 2.0, 'come': 1.0, 'looked': 1.0, 'not': 1.0}
Word element => {'realy': 1.0, 'a': 2.0, 'is': 2.0, 'wanted': 1.0, 'granddaughter': 2.0, 'for': 1.0, 'having': 1.0, 'in': 1.0, 'set': 1.0, 'saw': 1.0, 'who': 1.0, 'purchased': 1.0, 'it': 1.0, 'this': 3.0, 'first': 1.0, 'i': 1.0, 'site': 1.0, 'your': 1.0, 'baby': 1.0, 'about': 1.0, 'month': 1.0, 'great': 1.0, 'my': 3.0, 'grandchild': 1.0, 'and': 2.0, 'on': 1.0, 'bedset': 1.0}
Word element => {'but': 1.0, 'item': 1.0, 'wonderful': 1.0, 'i': 1.0, 'lil': 1.0, 'after': 1.0, 'was': 2.0, 'wanted': 1.0, 'happy': 1.0, 'color': 1.0, 'what': 1.0, 'just': 1.0, 'very': 1.0, 'pink': 1.0, 'confused': 1.0, 'reading': 1.0, 'this': 1.0, 'with': 1.0, 'n': 1.0, 'it': 1.0, 'brown': 1.0, 'overall': 1.0, 'comments': 1.0, 'a': 1.0, 'some': 1.0, 's': 1.0, 'sheets': 1.0, 'aren': 1.0, 'the': 3.0, 't': 1.0, 'most': 1.0}
Word element => {'price': 1.0, 'cute': 1.0, 'bed': 1.0, 'really': 1.0, 'a': 1.0, 'well': 1.0, 'adorable': 1.0, 'sleep': 1.0, 'perfect': 1.0, 'i': 1.0, 'in': 1.0, 'for': 1.0, 'our': 1.0, 'am': 1.0, 'new': 1.0, 'great': 1.0, 'sure': 1.0, 'baby': 1.0, 'will': 1.0, 'she': 1.0}
Word element => {'am': 1.0, 'i': 1.0, 'order': 1.0, 'so': 1.0, 'pleased': 1.0, 'pictured': 1.0, 'that': 1.0, 'pink': 1.0, 'and': 1.0, 'not': 1.0, 'brown': 1.0, 'are': 1.0, 'of': 1.0, 'girl': 1.0, 'my': 2.0, 'mine': 1.0, 'yet': 1.0, 'bc': 1.0, 'black': 1.0, 'a': 1.0, 'with': 1.0, 'it': 3.0, 'haven': 1.0, 'won': 1.0, 'the': 1.0, 't': 2.0, 'be': 1.0, 'here': 1.0, 'def': 1.0, 'until': 1.0, 'july': 1.0, 'but': 2.0, 'is': 4.0, 'people': 1.0, 'looks': 1.0, 'super': 1.0, 'cute': 1.0, 'theirs': 1.0, 'used': 1.0, 'her': 1.0, 'saying': 1.0, 'in': 1.0, 'little': 1.0, 'crib': 1.0, 'lot': 1.0}
Word element => {'if': 1.0, 'againg': 1.0, 'doing': 1.0, 'would': 1.0, 'i': 2.0, 'perfectly': 1.0, 'it': 2.0, 'fitted': 1.0, 'room': 1.0, 'my': 1.0, 'the': 1.0, 'everything': 1.0, 'to': 2.0, 'came': 1.0, 'have': 1.0, 'loved': 1.0, 't': 1.0}
Word element => {'will': 1.0, 'she': 1.0, 'am': 1.0, 'soft': 1.0, 'cute': 1.0, 'and': 2.0, 'very': 2.0, 'i': 2.0, 'love': 1.0, 'sure': 1.0, 'it': 2.0, 'bought': 1.0, 'my': 1.0, 'our': 1.0, 'this': 1.0, 'girl': 1.0, 'friend': 1.0, 'feels': 1.0, 'is': 1.0, 'for': 2.0, 'daughter': 1.0}
Word element => {'company': 1.0, 'arrival': 1.0, 'placed': 1.0, 'been': 1.0, 'has': 1.0, 'lots': 1.0, 'need': 1.0, 'really': 1.0, 'little': 2.0, 'bed': 2.0, 'noticed': 1.0, 'dollars': 1.0, 'only': 1.0, 'from': 1.0, 'defiantly': 1.0, 'would': 1.0, 'walmart': 1.0, 'canada': 1.0, 'shipping': 1.0, 'fast': 1.0, 'sheet': 2.0, 'bit': 2.0, 'thing': 1.0, 'about': 1.0, 'the': 8.0, 'great': 1.0, 'negative': 2.0, 'washed': 1.0, 'soooooooooooooooooooooooooooo': 1.0, 'exactly': 1.0, 'lower': 1.0, 'others': 1.0, '10': 1.0, 'being': 1.0, 'talking': 1.0, 'product': 2.0, 'recommend': 1.0, 'was': 4.0, 'colors': 1.0, 'beat': 1.0, 'price': 1.0, 'm': 1.0, 's': 2.0, 'a': 3.0, 't': 1.0, 'going': 1.0, 'awaiting': 1.0, 'not': 1.0, 'our': 1.0, 'to': 2.0, 'as': 1.0, 'at': 1.0, 'adorable': 1.0, 'quite': 2.0, 'it': 4.0, 'this': 2.0, 'with': 2.0, 'sure': 1.0, 'were': 2.0, 'buy': 1.0, 'shown': 1.0, 'came': 1.0, 'what': 1.0, 'i': 3.0, 'in': 3.0, 'honestly': 1.0, 'picture': 1.0, 'quality': 2.0, 'more': 1.0, 'is': 2.0, 'and': 5.0, 'll': 1.0, 'absolutley': 1.0, 'perfectly': 1.0, 'crib': 1.0, 'probably': 1.0, 'set': 2.0, 'guys': 1.0, 'goes': 1.0, 'theme': 1.0, 'worth': 1.0, 'fantastic': 1.0, 'thanks': 1.0, 'again': 2.0, 'when': 1.0, 'you': 3.0, 'anyways': 1.0, 'but': 1.0, 'can': 1.0}
Word element => {'on': 1.0, 'info': 1.0, 'any': 1.0, 'find': 1.0, 'but': 1.0, 'trying': 1.0, 'how': 1.0, 'am': 1.0, 'happy': 1.0, 'just': 1.0, 'not': 1.0, 'dont': 1.0, 'match': 2.0, 'pink': 1.0, 'pinks': 1.0, 'and': 3.0, 'hot': 1.0, 'the': 3.0, 'i': 1.0, 'cheap': 1.0, 'to': 2.0, 'look': 1.0, 'online': 2.0, 'also': 1.0, 'pieces': 1.0, 'yellow': 1.0, 'all': 1.0, 'doesnt': 1.0, 'totally': 1.0, 'didnt': 1.0, 'return': 2.0, 'black': 1.0, 'see': 1.0, 'it': 2.0, 'yello': 1.0, 'looked': 1.0, 'cant': 1.0, 'set': 1.0, 'white': 1.0}
Word element => {'after': 1.0, 'ordering': 1.0, 'promptly': 1.0, 'and': 1.0, 'arrived': 1.0, 'wonderful': 1.0, 'was': 1.0, 'this': 1.0}
Word element => {'looks': 1.0, 'soft': 1.0, 'a': 1.0, 'material': 1.0, 'was': 1.0, 'blanket': 1.0, 'than': 1.0, 'just': 1.0, 'other': 1.0, 'this': 1.0, 'though': 1.0, 'crib': 2.0, 'that': 1.0, 'set': 1.0, 'the': 1.0, 'my': 1.0, 'to': 1.0, 'twins': 1.0, 'i': 2.0, 'went': 1.0, 'love': 1.0, 'great': 2.0, 'it': 2.0}
Word element => {'girl': 1.0, 'expecting': 1.0, 'who': 1.0, 'a': 2.0, 'quickly': 1.0, 'this': 1.0, 'mommy': 1.0, 'for': 1.0, 'crib': 1.0, 'set': 1.0, 'exactly': 1.0, 'is': 2.0, 'the': 2.0, 'present': 1.0, 'perfect': 2.0, 'picture': 1.0, 'very': 1.0, 'like': 1.0, 'and': 1.0, 'baby': 1.0, 'shipped': 1.0}
Word element => {'enjoy': 1.0, 'making': 1.0, 'generic': 1.0, 'material': 1.0, 'great': 1.0, 'feel': 1.0, 'wanted': 1.0, 'online': 1.0, 'item': 1.0, 'would': 1.0, 'hesitant': 1.0, 'first': 2.0, 'at': 1.0, 'bit': 1.0, 'regret': 1.0, 'through': 1.0, 'loved': 1.0, 'mother': 1.0, 'niece': 1.0, 'newborn': 1.0, 'purchase': 1.0, 'another': 1.0, 'my': 1.0, 'gift': 1.0, 'them': 1.0, 'baby': 1.0, 'to': 1.0, 'as': 2.0, 'purchased': 1.0, 'cute': 1.0, 'colors': 1.0, 'well': 1.0, 'expected': 1.0, 'one': 1.0, 'color': 1.0, 'but': 2.0, 'purchasing': 1.0, 'shade': 1.0, 'an': 1.0, 'picture': 1.0, 'white': 2.0, 'upon': 1.0, 'the': 5.0, 'a': 3.0, 'shower': 1.0, 'of': 3.0, 'set': 1.0, 'have': 1.0, 'were': 1.0, 'black': 1.0, 'threading': 1.0, 'arrival': 1.0, 'and': 1.0, 'like': 1.0, 'wasnt': 2.0, 'light': 1.0, 'crib': 1.0, 'they': 1.0, 'because': 1.0, 'w': 1.0, 'it': 7.0, 'looks': 1.0, 'is': 1.0, 'this': 2.0, 'dont': 2.0, 'its': 2.0, 'i': 7.0, 'noticed': 1.0, 'for': 1.0, 'love': 1.0, 'actually': 1.0, 'fade': 1.0, 'are': 1.0, 'get': 1.0, 'kind': 1.0, 'with': 1.0, 'pink': 1.0, 'little': 1.0, 'very': 1.0, 'mistaken': 1.0, 'off': 1.0, 'hoping': 1.0, 'posted': 1.0, 'in': 1.0, 'brown': 1.0, 'borders': 1.0, 'still': 3.0, 'recommend': 1.0, 'was': 1.0, 'expecting': 1.0, 'yellow': 1.0, 'although': 1.0}
Word element => {'girl': 1.0, 'have': 1.0, 'they': 1.0, 'gift': 1.0, 'a': 2.0, 'it': 1.0, 'buying': 1.0, 'what': 1.0, 'if': 1.0, 'looking': 1.0, 'i': 2.0, 'someone': 1.0, 'also': 1.0, 'expected': 1.0, 'was': 1.0, 'for': 2.0, 'as': 1.0, 'and': 1.0, 'will': 1.0, 'exactly': 1.0, 'be': 1.0}
Word element => {'a': 1.0, 'anything': 1.0, 'who': 1.0, 'though': 1.0, 'wash': 1.0, 'hand': 1.0, 'very': 1.0, 'is': 2.0, 'really': 1.0, 'all': 1.0, 'was': 2.0, 'she': 3.0, 'baby': 2.0, 'her': 1.0, 'niece': 1.0, 'i': 1.0, 'and': 1.0, 'so': 1.0, 'after': 1.0, 'items': 1.0, 'lower': 1.0, 'my': 1.0, 'the': 3.0, 'wants': 1.0, 'dissapointed': 1.0, 'loved': 3.0, 'got': 1.0, 'handwash': 1.0, 'for': 3.0, 'love': 1.0, 'only': 2.0, 'with': 1.0, 'shower': 1.0, 'this': 1.0, 'it': 3.0, 'that': 2.0, 'were': 1.0, 'some': 1.0, 'of': 2.0, 'fact': 1.0, 'quality': 1.0, 'but': 1.0, 'bedding': 1.0}
Word element => {'daughters': 1.0, 'brown': 1.0, 'newborn': 1.0, 'theme': 1.0, 'room': 1.0, 'zebra': 1.0, 'with': 1.0, 'perfect': 1.0, 'for': 2.0, 'well': 1.0, 'our': 3.0, 'little': 1.0, 'and': 2.0, 'soft': 1.0, 'girl': 1.0, 'cozy': 1.0, 'walls': 1.0, 'it': 1.0, 'works': 1.0}
Word element => {'out': 1.0, 'when': 1.0, 'storage': 1.0, 'easy': 1.0, 'will': 1.0, 'bag': 1.0, 'worried': 1.0, 'bit': 1.0, 'in': 1.0, 'brown': 1.0, 'room': 1.0, 'a': 1.0, 'i': 3.0, 'grows': 1.0, 'make': 1.0, 'on': 2.0, 'some': 1.0, 'of': 1.0, 'and': 3.0, 'me': 1.0, 'saw': 1.0, 'she': 1.0, 'it': 6.0, 'putting': 1.0, 'be': 1.0, 'liked': 1.0, 'for': 2.0, 'from': 1.0, 'pink': 1.0, 'my': 2.0, 'first': 1.0, 'spouse': 1.0, 'start': 1.0, 'reading': 1.0, 'like': 2.0, 'the': 4.0, 'would': 1.0, 'was': 1.0, 'its': 1.0, 'after': 1.0, 'stripes': 1.0, 'little': 1.0, 'but': 1.0, 'reviews': 1.0, 'they': 1.0, 'shades': 1.0, 'makes': 1.0, 'black': 1.0, 'were': 1.0, 'easier': 1.0, 'this': 2.0, 'soft': 1.0, 'different': 1.0, 'sense': 1.0, 'together': 1.0, 'comes': 1.0, 'is': 1.0, 'girl': 1.0}
Word element => {'3': 1.0, 'family': 1.0, 'thank': 1.0, 'mommy': 1.0, 'much': 1.0, 'you': 1.0, 'set': 1.0, 'is': 1.0, 'does': 1.0, 'niece': 1.0, 'as': 2.0, 'her': 1.0, 'soft': 1.0, 'sooo': 1.0, 'my': 1.0, 'happy': 1.0, 'almost': 1.0, 'this': 1.0, 'loves': 1.0, '60': 1.0, 'it': 1.0}
Word element => {'is': 1.0, 'soft': 1.0, 'hams': 1.0, 'find': 1.0, 'love': 1.0, 'with': 1.0, 'it': 2.0, 'can': 1.0, 'them': 1.0, 'bedding': 1.0, 'expected': 1.0, 'was': 1.0, 'i': 4.0, 'beautiful': 1.0, 'and': 1.0, 'than': 1.0, 'wish': 1.0, 'curtain': 1.0, 'came': 1.0, 'bc': 1.0, 'u': 1.0, 'the': 1.0, 'more': 2.0, 't': 1.0}
Word element => {'it': 1.0, 'love': 1.0, 'white': 1.0, 'pink': 2.0, 'light': 1.0, 'such': 1.0, 'a': 1.0, 'black': 1.0, 'the': 2.0, 'i': 1.0, 'beautiful': 1.0, 'bed': 1.0, 'set': 1.0, 'colors': 1.0, 'and': 1.0, 'hot': 1.0, 'very': 1.0, 'well': 1.0, 'work': 1.0, 'together': 1.0}
Word element => {'make': 1.0, 's': 1.0, 'dissapointed': 1.0, 'with': 1.0, 'have': 2.0, 'appreciated': 1.0, 'apologize': 1.0, 'cordial': 1.0, 'did': 1.0, 'emails': 1.0, 'really': 2.0, 'all': 2.0, 'refund': 1.0, 'get': 1.0, 'today': 1.0, 'days': 1.0, '5': 1.0, 'response': 2.0, 'receive': 1.0, 't': 1.0, 'time': 1.0, 'around': 1.0, 'quick': 1.0, 'had': 1.0, 'turn': 1.0, 'if': 1.0, 'out': 1.0, 'asking': 2.0, 'about': 1.0, 'apologized': 1.0, 'assistance': 1.0, 'and': 7.0, 'them': 6.0, 'accidently': 1.0, 'send': 1.0, 'scheme': 1.0, 'willing': 1.0, 'reflected': 1.0, 'processed': 1.0, 'which': 1.0, 'they': 10.0, 'error': 3.0, 'find': 2.0, 'since': 2.0, 'indeed': 1.0, 'were': 10.0, 'their': 2.0, 'cribs': 2.0, 'go': 1.0, 'was': 5.0, 'to': 11.0, 'guess': 1.0, 'order': 1.0, 'color': 1.0, 'ones': 1.0, 'one': 1.0, 'company': 5.0, 'girls': 1.0, 'another': 2.0, 'each': 1.0, 'weeks': 1.0, 'would': 2.0, 'allow': 1.0, 'not': 2.0, 'give': 1.0, 'wrong': 1.0, 'my': 9.0, 'me': 3.0, 'never': 1.0, 'reason': 1.0, 'address': 2.0, 'twin': 1.0, 'great': 1.0, 'got': 1.0, 'wanted': 1.0, 'stars': 1.0, 'above': 2.0, 'but': 1.0, 'change': 1.0, '2': 2.0, 'will': 2.0, 'reflecting': 1.0, '0': 1.0, 'sender': 1.0, 'it': 3.0, 'products': 1.0, 'these': 6.0, 'for': 6.0, 'such': 1.0, 'email': 1.0, 'inconvenience': 1.0, 'i': 25.0, 'stated': 1.0, 'two': 1.0, 'very': 1.0, 'later': 2.0, 'being': 1.0, 'want': 1.0, 'at': 1.0, 'is': 1.0, 'of': 2.0, 'the': 12.0, 'sent': 3.0, 'fault': 1.0, 'shipped': 1.0, 'am': 1.0, 'admitted': 1.0, 'even': 3.0, 'contacted': 2.0, 'usps': 3.0, 'what': 1.0, 'when': 2.0, 'happened': 1.0, 'didn': 1.0, 'eventually': 1.0, 'ordered': 2.0, 'realized': 1.0, 'informed': 2.0, 'delivered': 3.0, 'while': 1.0, 'thanked': 1.0, 'then': 2.0, 'returned': 1.0, 'return': 1.0, 'that': 3.0, 'back': 1.0, 'so': 2.0, 'a': 4.0, 'emailed': 3.0, 'after': 1.0, 'explained': 1.0, 'this': 1.0, 'page': 2.0, 'agreed': 1.0, 'on': 1.0, 'just': 2.0, 'why': 1.0, 'working': 1.0, 'first': 2.0, 'are': 1.0, 'personalized': 1.0, 'girl': 1.0, 're': 1.0, 'old': 1.0, 'wonderful': 1.0}
Word element => {'think': 1.0, 'run': 1.0, 'can': 1.0, 'work': 1.0, 'but': 1.0, 'free': 1.0, 'they': 2.0, 'bpa': 1.0, 'are': 3.0, 'just': 1.0, 'these': 1.0, 'the': 1.0, 'sippy': 2.0, 'with': 3.0, 'it': 1.0, 'well': 1.0, 'like': 1.0, 'too': 1.0, 'and': 3.0, 'easy': 1.0, 'get': 1.0, 'do': 1.0, 'a': 2.0, 'go': 1.0, 'cups': 1.0, 'to': 1.0, 'staw': 1.0, 'vacuum': 1.0, 'worn': 1.0, 'have': 3.0, 'thing': 1.0, 'come': 1.0, 'inexpensive': 1.0, 'out': 2.0, 'clean': 1.0, 'i': 4.0, 'lost': 1.0, 'cup': 1.0, 'or': 1.0, 'issues': 1.0, 'into': 1.0, 'that': 3.0, 'other': 2.0, 'people': 1.0, 'had': 1.0, 'leaks': 1.0, 'mentioned': 1.0, 'sometimes': 1.0, 'top': 1.0, 'problem': 2.0, 'because': 1.0, 'brands': 1.0, 'you': 1.0}
Word element => {'juice': 1.0, 'water': 1.0, 'milk': 1.0, 'and': 1.0, 'doesn': 1.0, 'through': 3.0, 'with': 1.0, 'hard': 1.0, 'clean': 1.0, 'them': 3.0, 'learning': 1.0, 'these': 1.0, 'great': 1.0, 'are': 2.0, 'other': 1.0, 'have': 1.0, 'leak': 2.0, 'of': 1.0, 'gone': 1.0, 'several': 1.0, 'most': 1.0, 'use': 1.0, 'flip': 1.0, 'straw': 4.0, 'for': 1.0, 'to': 5.0, 'cups': 1.0, 'barely': 1.0, 'when': 1.0, 'or': 1.0, 'cup': 2.0, 'my': 1.0, 'is': 1.0, 'sip': 1.0, 'because': 1.0, 'munchkin': 1.0, 'draw': 1.0, 'didn': 1.0, 'top': 1.0, 'liquid': 2.0, 'i': 3.0, 'tested': 1.0, 'the': 4.0, 'myself': 1.0, 'difficult': 1.0, 'son': 1.0, 'hold': 1.0, 'know': 1.0, 'like': 1.0, 't': 2.0, 'we': 1.0, 'could': 1.0, 'get': 1.0, 'easy': 2.0}
Word element => {'munchkin': 1.0, 'stage': 1.0, 'did': 1.0, 'than': 1.0, 'drips': 1.0, 'have': 1.0, 'we': 2.0, 'from': 2.0, 'drink': 1.0, 'tilt': 1.0, 'to': 2.0, 'has': 1.0, 'where': 1.0, '10': 1.0, 'is': 1.0, 'cup': 1.0, 'my': 1.0, 'month': 1.0, 'can': 1.0, 'sippy': 3.0, 'for': 1.0, 'love': 1.0, 'straw': 1.0, 'head': 1.0, 'like': 1.0, 'first': 1.0, 'with': 1.0, 'he': 1.0, 'it': 2.0, 'this': 2.0, 'be': 1.0, 'old': 1.0, 'i': 1.0, 'back': 1.0, 'inside': 1.0, 'the': 2.0, 'traditional': 1.0, 'removable': 1.0, 'also': 1.0, 'fewer': 1.0, 'so': 1.0, 'his': 1.0, 'used': 1.0, 'a': 1.0}
Word element => {'with': 1.0, 'sticking': 1.0, 'have': 1.0, 'my': 1.0, 'are': 3.0, 'for': 1.0, 'easy': 1.0, 'use': 1.0, 'far': 1.0, 'favorite': 1.0, 'really': 1.0, 'leak': 1.0, 'some': 1.0, 'they': 2.0, 'child': 1.0, 'by': 1.0, 'cups': 1.0, 'tried': 1.0, 'products': 1.0, 'to': 1.0, 'and': 1.0, 'like': 1.0, 'don': 1.0, 'these': 2.0, 't': 1.0, 'other': 1.0, 'we': 2.0}
Word element => {'go': 1.0, 'now': 1.0, 'them': 1.0, 'of': 1.0, 'cup': 1.0, 'or': 1.0, 'me': 1.0, 'parts': 1.0, 'little': 1.0, 'many': 1.0, 'have': 2.0, 'washing': 1.0, 'interior': 1.0, 'one': 1.0, 'built': 1.0, 'is': 3.0, 'straws': 1.0, 'hold': 1.0, 'straw': 4.0, 'thicker': 1.0, 'water': 1.0, 'with': 2.0, 'it': 1.0, 'first': 1.0, 'i': 3.0, 'love': 1.0, 'for': 3.0, 'especially': 1.0, 'are': 3.0, 'they': 3.0, 'the': 3.0, 'five': 1.0, 'drinks': 1.0, 'mostly': 1.0, 'lid': 1.0, 'these': 1.0, 'some': 2.0, 'no': 2.0, 'other': 1.0, 'too': 1.0, 'and': 5.0, 'milk': 1.0, 'drip': 1.0, 'every': 1.0, 'almost': 1.0, 'sturdy': 1.0, 'spill': 1.0, 'four': 1.0, 'removable': 1.0, 'can': 1.0, 'but': 1.0, 'top': 2.0, 'liquid': 1.0, 'up': 1.0, 'burp': 1.0, 'there': 2.0, 'when': 1.0, 'you': 1.0, 'make': 1.0, 'put': 1.0, 'on': 1.0, 've': 1.0, 'kids': 1.0, 'found': 1.0, 'into': 1.0, 'that': 2.0, 'happens': 1.0, 'out': 1.0, 'clean': 1.0, 'model': 1.0, 'easy': 2.0, 'our': 1.0, 'cups': 2.0, 'to': 3.0}
Word element => {'buy': 1.0, 'i': 1.0, 'price': 1.0, 'great': 2.0, 'we': 1.0, 'them': 1.0, 'product': 1.0, 'to': 1.0, 'clean': 1.0, 'every': 1.0, 'and': 1.0, 'use': 1.0, 'easy': 1.0, 'day': 1.0, 'they': 1.0, 'more': 1.0, 'are': 1.0, 'would': 1.0, 'hold': 1.0}
Word element => {'error': 1.0, 'user': 1.0, 'we': 1.0, 'to': 1.0, 'normal': 1.0, 'a': 1.0, 'like': 1.0, 'up': 2.0, 'tipping': 1.0, 'keeps': 1.0, 'room': 1.0, 'chalk': 1.0, 'll': 1.0, 'drinking': 1.0, 'far': 1.0, 'even': 1.0, 'chucks': 1.0, 'after': 1.0, 'so': 1.0, 'them': 3.0, 'sippy': 1.0, 'no': 1.0, '1': 1.0, 'leaks': 1.0, 'really': 1.0, 'he': 1.0, 'cup': 1.0, 'my': 1.0, 'the': 1.0, 'great': 1.0, 'across': 1.0, 'old': 1.0, 'that': 1.0, 'although': 1.0, 'likes': 1.0, 'son': 1.0, 'year': 1.0, 'from': 1.0}
Word element => {'worm': 1.0, 'different': 1.0, 'looking': 1.0, 'i': 1.0, 'them': 1.0, 'use': 1.0, 'overall': 1.0, 'washed': 1.0, 'time': 1.0, 'each': 1.0, 'when': 2.0, 'daughter': 1.0, 'but': 3.0, 'out': 1.0, 'proof': 1.0, 'leak': 2.0, 'lost': 1.0, 'this': 1.0, 'straw': 1.0, 'top': 2.0, 'from': 1.0, 'a': 1.0, 'we': 2.0, 'seal': 1.0, 'they': 4.0, 'has': 1.0, 'decent': 1.0, 'these': 2.0, 'the': 4.0, 'positioned': 1.0, 'got': 1.0, 'cups': 2.0, 'to': 5.0, 'help': 1.0, 'are': 3.0, 'start': 1.0, 'learn': 1.0, 'threaded': 1.0, 'get': 1.0, 'easy': 1.0, 'my': 1.0, 'may': 1.0, 'drinking': 1.0, 'be': 3.0, 'for': 1.0, 'disassembled': 1.0, 'around': 1.0, 'is': 2.0, 'reassembled': 1.0, 'perfectly': 2.0, 'only': 1.0, 'do': 1.0, 'and': 2.0, 'which': 1.0, 'at': 1.0, 'will': 2.0, 'also': 1.0, 'cup': 1.0, 'or': 2.0, 'still': 1.0, 'seem': 1.0, 'not': 1.0, 'minor': 1.0, 'have': 1.0}
Word element => {'to': 1.0, 'drink': 1.0, 'everywhere': 1.0, 'a': 1.0, 'find': 1.0, 'the': 1.0, 'their': 1.0, 'kids': 1.0, 'what': 1.0, 'way': 1.0, 'you': 1.0, 'best': 1.0, 'there': 1.0, 'no': 1.0, 'get': 1.0, 'matter': 1.0, 'use': 1.0, 'will': 1.0, 'but': 1.0, 'older': 1.0, 'this': 1.0, 'is': 1.0, 'imho': 1.0, 'out': 1.0}
Word element => {'and': 1.0, 'home': 1.0, 'are': 1.0, 'trips': 1.0, 'colorful': 1.0, 'these': 1.0, '8': 1.0, 'no': 1.0, 'useful': 1.0, 'to': 1.0, 'spill': 1.0, 'from': 1.0, 'on': 1.0, 'drinking': 1.0, 'months': 1.0, 'cups': 2.0, 'in': 1.0, 'years': 1.0, 'children': 1.0, 'for': 1.0, 'great': 1.0, '9': 1.0}
Word element => {'stars': 1.0, 'give': 1.0, 'still': 1.0, '4': 1.0, 'i': 1.0, 'day': 1.0, 'bound': 1.0, 'was': 1.0, 'messes': 1.0, 'results': 1.0, 'over': 1.0, 'dr': 1.0, 'are': 1.0, 'got': 1.0, 'with': 1.0, 'issues': 1.0, 'it': 2.0, 'month': 1.0, 'and': 3.0, 'some': 1.0, 'happen': 1.0, 'these': 1.0, 'great': 1.0, 'the': 3.0, 'figured': 1.0, 'daughter': 1.0, 'when': 1.0, 'my': 1.0, 'had': 1.0, 'cups': 1.0, 'to': 2.0, 'now': 1.0, 'year': 1.0, 'no': 1.0, 'around': 1.0, 'top': 1.0, 'using': 1.0, 'old': 1.0, 'brush': 1.0, 'dumping': 1.0, 'much': 1.0, 'end': 1.0, 'flipping': 1.0, 'started': 1.0, 'them': 4.0, 'clean': 1.0, 'made': 1.0, 'out': 1.0, 'we': 1.0, 'a': 1.0, 's': 1.0, 'everything': 1.0, 'so': 2.0, 'easier': 1.0, 'that': 1.0, 'pushing': 1.0, 'cue': 1.0, 'yesterday': 1.0, '20': 1.0, 'brown': 1.0, 'in': 2.0}
Word element => {'sideways': 1.0, 'throws': 1.0, 'when': 2.0, 'leak': 1.0, 'had': 1.0, 'in': 1.0, 'her': 1.0, 'water': 2.0, 'is': 2.0, 'more': 1.0, 'grips': 1.0, 'have': 2.0, 'wonderful': 1.0, 'this': 2.0, 'perfect': 1.0, 'by': 1.0, 'just': 1.0, 'some': 1.0, 'these': 4.0, 'result': 1.0, 'frustrating': 1.0, 'with': 1.0, 'transitioning': 1.0, 'reviewers': 1.0, 'are': 2.0, 'winner': 1.0, 'tried': 1.0, 'i': 4.0, 'giving': 1.0, 'trying': 1.0, 'here': 1.0, 'reviews': 1.0, 'they': 1.0, 'favorable': 1.0, 'after': 2.0, 'reading': 1.0, 'once': 1.0, 'of': 1.0, 'little': 1.0, 'bottle': 1.0, 'drink': 1.0, 'playing': 1.0, 'without': 1.0, 'the': 7.0, 'hands': 1.0, 'sippy': 2.0, 'baby': 4.0, 'never': 2.0, 'dropped': 1.0, 'cups': 2.0, 'to': 1.0, 'or': 1.0, 'cup': 4.0, 'my': 1.0, 'unlike': 2.0, 'great': 2.0, 'feel': 1.0, 'even': 3.0, 'got': 2.0, 'while': 1.0, 'from': 2.0, 'lying': 1.0, 'hang': 1.0, 'drinking': 1.0, 'a': 3.0, 'for': 2.0, 'hitch': 1.0}
Word element => {'issues': 1.0, 'control': 1.0, 'fighting': 1.0, 'price': 1.0, 'm': 1.0, 'have': 1.0, 'wide': 1.0, 'bottlecon': 1.0, 'brush': 1.0, 'for': 1.0, 'love': 1.0, 'straw': 2.0, 'close': 1.0, 'commented': 1.0, 'tilt': 1.0, 'others': 1.0, 'it': 2.0, 'he': 1.0, 'baby': 1.0, 'good': 1.0, 'clean': 1.0, 'out': 1.0, 'pros': 1.0, 'is': 1.0, 'the': 6.0, 'soft': 1.0, 'like': 1.0, 'tip': 2.0, 'milk': 1.0, 'easy': 1.0, 'to': 2.0, 'not': 1.0, 'mouth': 1.0, 'because': 1.0, 'phasing': 1.0, 'bottom': 1.0, 'helps': 1.0, 'there': 1.0, 'bottle': 1.0, 'so': 1.0, 'will': 1.0, 'him': 1.0, 'be': 1.0, 'with': 2.0, 'leftover': 1.0, 's': 1.0, 'cup': 2.0, 'my': 1.0, 'son': 1.0, 'hates': 1.0, 'unless': 1.0, 'you': 1.0, 'when': 1.0, 'i': 2.0, 'think': 1.0}
Word element => {'leak': 1.0, 'didn': 1.0, 'together': 1.0, 'got': 1.0, 'before': 1.0, 'several': 1.0, 'me': 1.0, 'washing': 1.0, 'cup': 2.0, 'that': 1.0, 'since': 1.0, 'a': 1.0, 'assemble': 2.0, 'easy': 2.0, 'looking': 1.0, 'to': 2.0, 'was': 2.0, 'so': 1.0, 'however': 1.0, 'after': 1.0, 'tries': 1.0, 'took': 1.0, 'i': 2.0, 'straw': 2.0, 'for': 1.0, 'one': 1.0, 'it': 4.0, 'this': 1.0, 'looked': 1.0, 'trying': 1.0, 'pretty': 1.0, 't': 1.0, 'the': 2.0, 'is': 1.0, 'when': 1.0, 'attached': 1.0}
Word element => {'weren': 1.0, 'would': 1.0, 'much': 1.0, 'how': 1.0, 'no': 1.0, 'stick': 1.0, 'to': 2.0, 'this': 1.0, 'it': 1.0, 'with': 2.0, 'is': 1.0, 'taste': 1.0, 'everything': 1.0, 'seems': 1.0, 'wash': 1.0, 'soap': 3.0, 'like': 1.0, 'straw': 2.0, 'matter': 1.0, 'and': 1.0, 't': 1.0, 'nipple': 1.0, 'the': 3.0, 'that': 1.0, 'think': 2.0, 'i': 5.0, 'every': 1.0, 'silicone': 3.0, 'have': 1.0, 'be': 1.0, 'product': 1.0, 'bought': 1.0, 'consistent': 1.0, 'dish': 1.0, 'if': 1.0, 'better': 1.0, 'rinse': 1.0, 'problem': 1.0, 'hand': 1.0, 'just': 1.0}
Word element => {'on': 1.0, 'other': 1.0, 'compared': 1.0, 'price': 1.0, 'good': 1.0, 'a': 1.0, 'also': 1.0, 'easily': 1.0, 'pretty': 1.0, 'use': 1.0, 'my': 2.0, 'are': 2.0, 'there': 1.0, 'of': 3.0, 'three': 2.0, 'easy': 2.0, 'some': 1.0, 'quickly': 1.0, 'sippy': 3.0, 'used': 1.0, 'the': 3.0, 'these': 1.0, 'learned': 1.0, 'they': 1.0, 'all': 2.0, 'have': 1.0, 'cups': 3.0, 'i': 1.0, 'with': 1.0, 'children': 2.0, 'to': 4.0, 'out': 1.0, 'them': 1.0, 'cleaning': 1.0, 'clean': 1.0, 'put': 1.0, 'back': 1.0, 'together': 1.0, 'after': 1.0, 'market': 1.0, 'and': 2.0}
Word element => {'over': 1.0, 'without': 1.0, 'great': 1.0, 'our': 1.0, 'these': 1.0, 'stroller': 1.0, 'cups': 1.0, 'actually': 1.0, 'in': 1.0, 'the': 1.0, 'fit': 1.0, 'cupholders': 1.0, 'tipping': 1.0, 'of': 1.0}
Word element => {'cup': 1.0, 'sippy': 1.0, 'a': 1.0, 'spill': 1.0, 'proof': 1.0, 'easy': 2.0, 'be': 1.0, 'to': 3.0, 'expect': 1.0, 'i': 1.0, 'disassemble': 1.0, 'as': 2.0, 'and': 1.0, 'baby': 1.0, 'clean': 1.0, 'it': 1.0, 'for': 1.0, 'would': 1.0, 'hold': 1.0, 'is': 1.0}
Word element => {'cared': 1.0, 'never': 1.0, 'loves': 1.0, 'since': 1.0, 'good': 1.0, 'request': 1.0, 'husband': 1.0, 'today': 1.0, 'ordering': 1.0, 'bottle': 1.0, 'eliminate': 1.0, 'helping': 1.0, 'water': 1.0, 'more': 2.0, 'much': 2.0, 'house': 1.0, 'around': 1.0, '13': 1.0, '3': 1.0, 'need': 1.0, 'place': 1.0, 'gets': 1.0, 'mess': 1.0, 'easy': 1.0, 'really': 1.0, 'work': 2.0, 'turns': 1.0, 'we': 1.0, 'bad': 1.0, 'not': 2.0, 'feel': 1.0, 'any': 1.0, 'because': 5.0, 'that': 5.0, 'problems': 1.0, 'upsetting': 1.0, 'at': 7.0, 'part': 1.0, 'cup': 7.0, 'cups': 6.0, 'new': 1.0, 'would': 2.0, 'you': 1.0, 'tell': 1.0, 'works': 1.0, 'replacement': 2.0, 't': 6.0, 'buy': 3.0, 'something': 1.0, 'tops': 1.0, 'first': 3.0, 'now': 2.0, 'away': 2.0, 'whole': 1.0, 'as': 2.0, 'letting': 1.0, 'leave': 1.0, 'was': 7.0, 'all': 1.0, 'he': 3.0, 'love': 2.0, 'far': 1.0, 'how': 1.0, 'put': 2.0, 'this': 2.0, 'few': 2.0, 'well': 1.0, 'straw': 7.0, 'kept': 1.0, 'month': 2.0, 'initially': 1.0, 'my': 11.0, 'aligned': 1.0, 'drink': 1.0, 'me': 1.0, '4': 1.0, 'worth': 1.0, 'order': 1.0, 'us': 1.0, 'actually': 1.0, 'continued': 1.0, 'through': 4.0, 'fluke': 1.0, 'found': 1.0, 'have': 4.0, 'notches': 1.0, 'hating': 1.0, 'will': 1.0, 'could': 2.0, 'sticking': 1.0, 'on': 3.0, 'other': 2.0, 'recently': 1.0, 'choke': 1.0, 'to': 13.0, 'occasions': 1.0, 'right': 1.0, 'went': 1.0, 'those': 1.0, 'style': 1.0, 'probably': 1.0, 'before': 2.0, 'in': 6.0, 'is': 4.0, 'can': 3.0, 'so': 3.0, 'chewed': 4.0, 'd': 1.0, 'straws': 3.0, 'moved': 1.0, 'two': 1.0, 'little': 3.0, 'i': 20.0, 'broke': 1.0, 'over': 1.0, 'hard': 2.0, 'open': 1.0, 'months': 1.0, 'able': 1.0, 'however': 1.0, 'get': 2.0, 'piece': 2.0, 'were': 1.0, 'the': 19.0, 'even': 2.0, 'old': 2.0, 'of': 6.0, 'places': 1.0, 'holes': 1.0, 'last': 1.0, 'am': 2.0, 'threw': 1.0, 'thought': 1.0, 'don': 2.0, 'still': 3.0, 'son': 6.0, 'review': 2.0, 'has': 3.0, 'totally': 2.0, 'star': 1.0, 'regular': 1.0, 'them': 3.0, 'turned': 1.0, 's': 2.0, 'hardly': 1.0, 'a': 14.0, 'imagine': 1.0, 'completely': 1.0, 'off': 1.0, 'see': 1.0, 'toddle': 1.0, 'unless': 1.0, 'hazard': 1.0, 'twice': 1.0, 'precious': 1.0, '5': 1.0, 'one': 2.0, 'replacing': 1.0, 'plastic': 2.0, 'luckily': 1.0, 'didn': 2.0, 'ordered': 1.0, 'safe': 1.0, 'especially': 1.0, 'use': 2.0, 'these': 4.0, 'time': 2.0, 'top': 3.0, 'began': 1.0, 'if': 1.0, 'great': 2.0, 'general': 1.0, 'intro': 1.0, '16': 1.0, 'very': 3.0, 'short': 1.0, 'while': 1.0, 'but': 2.0, 'tippee': 1.0, 'choking': 1.0, 'floor': 1.0, 'scary': 1.0, 'looking': 1.0, 'original': 2.0, 'reason': 2.0, 'with': 3.0, 'out': 5.0, 'debating': 1.0, 'hoped': 1.0, 'whether': 1.0, 'drinks': 1.0, 'contact': 1.0, 'soon': 1.0, 'chew': 1.0, 'manufacturer': 1.0, 'make': 1.0, 'ended': 1.0, 'what': 1.0, 'replace': 1.0, 'they': 7.0, 'risk': 1.0, 'say': 1.0, 'snatch': 1.0, 'which': 3.0, 'again': 1.0, 'clean': 1.0, 'here': 1.0, 'helped': 1.0, 'believe': 1.0, 'sippy': 2.0, 'up': 1.0, 'intact': 1.0, 'who': 1.0, 'from': 4.0, 'bru': 1.0, 'lot': 1.0, 'his': 2.0, 'bought': 1.0, 'seemed': 1.0, 'loved': 1.0, 'sure': 1.0, 'mind': 1.0, 'ok': 1.0, 'tossing': 1.0, 'disappointed': 1.0, 'figured': 1.0, 'liquid': 1.0, 'come': 1.0, 'tommy': 1.0, 'brand': 1.0, 'only': 2.0, 'spelling': 1.0, 'for': 5.0, 'pieces': 1.0, 'and': 12.0, 'just': 2.0, 'pleased': 1.0, 'disposable': 1.0, 'it': 9.0, 'be': 2.0, 'meal': 2.0, 'keep': 1.0, 'below': 1.0, 'hands': 1.0, 'had': 1.0, 'amazon': 1.0}
Word element => {'leaks': 1.0, 'nonspill': 1.0, 'weeks': 1.0, '3': 1.0, 'chew': 1.0, 'easily': 1.0, 'can': 1.0, 'also': 1.0, 'ruin': 1.0, 'cups': 1.0, 'or': 1.0, 'loves': 1.0, 'she': 1.0, 'about': 1.0, 'grandaughter': 1.0, 'my': 1.0, 'although': 1.0, 'on': 1.0, 'these': 1.0, 'the': 3.0, '2': 1.0, 'straw': 1.0, 'and': 2.0, 'it': 1.0, 'only': 1.0, 'valve': 2.0, 'takes': 1.0, 'her': 1.0}
Word element => {'price': 1.0, 'in': 1.0, 'come': 1.0, 'plus': 1.0, 'packs': 1.0, 'straw': 1.0, 'which': 1.0, 'using': 1.0, 'with': 1.0, 'has': 1.0, 'daughter': 1.0, 'and': 3.0, 'more': 1.0, 't': 1.0, 'mit': 1.0, 'don': 1.0, 'the': 4.0, 'slams': 1.0, 'an': 1.0, 're': 1.0, 'cup': 1.0, 'my': 1.0, '4': 1.0, 'i': 1.0, 'problems': 1.0, 'old': 1.0, 'take': 1.0, 'when': 1.0, 'apart': 1.0, 'they': 3.0, '16': 1.0, 'require': 1.0, 'from': 1.0, 'comparable': 1.0, 'any': 1.0, 'to': 1.0, 'cups': 2.0, 'as': 2.0, 'lower': 1.0, 'these': 1.0, 'others': 1.0, 'love': 1.0, 'for': 1.0, 'assemble': 1.0, 'sippy': 1.0, 'degree': 1.0, 'juice': 1.0, 'mainly': 1.0, 'than': 2.0, 'because': 1.0, 'cleaning': 1.0, 'no': 1.0, 'spilling': 1.0, 'keep': 2.0, 'of': 1.0, 'good': 1.0, '2': 1.0, 'most': 1.0, 'can': 1.0, 'month': 1.0, 'it': 1.0, 'your': 1.0, 'on': 1.0, 'floor': 1.0}
Word element => {'shame': 1.0, 'disappointed': 1.0, 'alternative': 1.0, 'descent': 1.0, 'whole': 1.0, 'buy': 1.0, 'section': 1.0, 'can': 1.0, 'removable': 1.0, 'replacement': 1.0, 'offer': 1.0, 'not': 1.0, 'will': 1.0, 'searching': 1.0, 'they': 1.0, 'chewer': 1.0, 'if': 1.0, 'chewy': 1.0, 'with': 1.0, 'new': 1.0, 'munchkin': 2.0, 'biggest': 1.0, 'grabs': 1.0, 'one': 3.0, 'on': 1.0, 'your': 3.0, 'reconnect': 1.0, 'then': 1.0, 'my': 2.0, 'the': 13.0, 'part': 1.0, 'from': 1.0, 'little': 3.0, 'very': 1.0, 'still': 1.0, 'son': 1.0, 'easy': 1.0, 'center': 1.0, 'as': 3.0, 'to': 4.0, 'you': 6.0, 'when': 1.0, 'i': 1.0, 'too': 1.0, 'and': 5.0, 'do': 1.0, 'expensive': 1.0, 'for': 3.0, 'vacuum': 1.0, 'love': 1.0, 'nice': 2.0, 'drink': 2.0, 'issue': 1.0, 'overall': 1.0, 'soft': 2.0, 'this': 3.0, 'is': 6.0, 'that': 3.0, 'loves': 1.0, 'cup': 6.0, 'or': 1.0, 'in': 3.0, 'mine': 1.0, 'unscrew': 1.0, 'holder': 2.0, 'straw': 5.0, 'car': 1.0, 'a': 6.0, 'chew': 2.0, 'does': 2.0, 'remember': 1.0, 'before': 2.0, 'form': 1.0, 'wicks': 1.0, 'bottom': 1.0, 'up': 3.0, 'over': 1.0, 'it': 7.0, 'remove': 1.0, 'liquid': 1.0, 'top': 2.0, 'fills': 1.0, 'of': 2.0, 'yuck': 1.0, 'so': 3.0, 'must': 1.0, 'leave': 2.0, 'have': 2.0, 'well': 1.0, 'half': 1.0}
Word element => {'amazing': 1.0, 'action': 1.0, 'leak': 1.0, 'of': 1.0, 'because': 1.0, 'product': 2.0, 'transition': 1.0, 'don': 1.0, 'baby': 1.0, 'fed': 1.0, 's': 1.0, 'wants': 1.0, 'all': 2.0, 'whim': 1.0, 'on': 2.0, 'to': 3.0, 'now': 1.0, 't': 1.0, 'the': 3.0, 'these': 2.0, 'bottle': 1.0, 'drink': 2.0, 'might': 1.0, 'it': 1.0, 'he': 1.0, 'this': 2.0, 'a': 4.0, 'tried': 1.0, 'i': 1.0, 'that': 1.0, 'easier': 2.0, 'at': 1.0, 'sippy': 2.0, 'opinion': 1.0, 'son': 1.0, 'from': 2.0, 'for': 1.0, 'straw': 2.0, 'sucking': 1.0, 'than': 2.0, 'is': 1.0, 'regular': 2.0, 'my': 2.0, 'cup': 1.0, 'also': 1.0, 'in': 2.0, 'fact': 1.0}
Word element => {'damn': 1.0, 'car': 1.0, 'highchair': 1.0, 'stroller': 1.0, 'doesn': 1.0, 'holders': 1.0, 'her': 1.0, 'perfect': 1.0, 'in': 1.0, 'fit': 2.0, 'don': 1.0, 'them': 1.0, 'hucks': 1.0, 'cup': 1.0, 'my': 1.0, 'because': 1.0, 'totally': 1.0, 'almost': 1.0, 'or': 1.0, 'good': 1.0, 'best': 1.0, 'have': 1.0, 'they': 3.0, 't': 2.0, 'these': 1.0, 'the': 4.0, 'are': 2.0, 'it': 1.0, 'found': 1.0, 'i': 2.0, 'for': 1.0, 'love': 1.0, 'one': 1.0, 'when': 1.0, 'daughter': 1.0, 'cups': 1.0, 's': 1.0, 'leak': 2.0, 'no': 2.0, 'hting': 1.0, 'proof': 2.0, 'and': 2.0, 'wants': 1.0, 'milk': 1.0, 'everywhere': 1.0, 'none': 1.0, 'a': 1.0}
Word element => {'man': 1.0, 'tantrums': 1.0, 'his': 1.0, 'to': 1.0, 'strong': 1.0, 'little': 2.0, 'they': 2.0, 'these': 1.0, 'have': 1.0, 'my': 1.0, 'are': 2.0, 'the': 1.0, 'stand': 1.0, 'some': 1.0, 'of': 1.0, 'best': 1.0, 'cups': 1.0, 'one': 1.0, 'i': 1.0, 'tough': 1.0, 'bought': 1.0, 'for': 1.0}
Word element => {'leaking': 1.0, 'non': 1.0, 'a': 1.0, 'on': 1.0, 'still': 1.0, 'i': 1.0, 'm': 1.0, 'when': 1.0, 'leak': 1.0, 'of': 2.0, 'cup': 2.0, 'but': 1.0, 'terms': 1.0, 'comes': 1.0, 'for': 1.0, 'straw': 2.0, 'in': 1.0, 'sometimes': 1.0, 'randomly': 1.0, 'it': 1.0, 'does': 1.0, 'even': 1.0, 'liquid': 1.0, 'cleaning': 1.0, 'out': 1.0, 'they': 1.0, 'aren': 1.0, 'hunt': 1.0, 'the': 3.0, 'great': 1.0, 't': 1.0, 'drinking': 1.0}
Word element => {'there': 1.0, 'want': 1.0, 'don': 1.0, 'we': 1.0, 's': 1.0, 'spills': 2.0, 'to': 2.0, 'trip': 1.0, 'grandma': 1.0, 'either': 2.0, 'on': 1.0, 'travel': 1.0, 'as': 2.0, 'well': 1.0, 'closes': 1.0, 'a': 1.0, 'since': 1.0, 'for': 2.0, 'in': 1.0, 'or': 1.0, 'good': 1.0, 'avoid': 1.0, 'house': 1.0, 'top': 1.0, 'nice': 1.0, 't': 1.0, 'the': 1.0, 'home': 1.0}
Word element => {'shipping': 1.0, 'side': 1.0, 'looking': 1.0, 're': 1.0, 'if': 1.0, 'r': 2.0, 'e': 4.0, 'amazon': 1.0, 'splatters': 1.0, 'there': 1.0, 'in': 1.0, 'seats': 1.0, 'have': 1.0, 'car': 1.0, 'straw': 1.0, 'will': 1.0, 'so': 1.0, 'y': 1.0, 'down': 2.0, 'loosen': 1.0, 'fantastic': 1.0, 'you': 1.0, 'am': 1.0, 'spewing': 1.0, 'was': 1.0, 'leaking': 1.0, 'constant': 1.0, 'for': 2.0, 'are': 3.0, 'other': 2.0, 'slide': 1.0, 'from': 2.0, 'kind': 3.0, 'or': 1.0, 'cup': 3.0, 'old': 1.0, 'topped': 1.0, 'a': 2.0, 'we': 3.0, 'might': 1.0, 'cups': 1.0, 'as': 2.0, 'to': 2.0, 'had': 1.0, 'an': 1.0, 'i': 2.0, 'two': 1.0, 'well': 1.0, 'give': 1.0, 'h': 1.0, 'drink': 1.0, 'the': 12.0, 'these': 1.0, 'year': 1.0, 'almost': 1.0, 'my': 2.0, 'lid': 2.0, 'of': 1.0, 'munchkin': 2.0, 'that': 1.0, 'leather': 1.0, 'with': 2.0, 'flip': 2.0, 'back': 1.0, 'top': 2.0, 'is': 1.0, 'only': 1.0, 'much': 1.0, 'open': 1.0, 'better': 3.0, 'which': 1.0, 'straws': 2.0, 'keep': 1.0, 'bought': 1.0, 'w': 2.0, 'having': 1.0, 'because': 1.0, 'fine': 1.0, 'teething': 1.0, 'daughter': 1.0, 'chewed': 1.0, 'constantly': 1.0, 'except': 1.0, 'on': 2.0, 'her': 1.0, 'usual': 1.0, 'they': 1.0, 'v': 1.0, 'and': 2.0, 'milk': 3.0, 'cold': 1.0}
Word element => {'without': 1.0, 'botte': 1.0, 'use': 1.0, 'have': 1.0, 'didn': 1.0, 'much': 1.0, 'so': 1.0, 'it': 1.0, 'don': 1.0, 'ended': 1.0, 'the': 1.0, 't': 2.0, 'liking': 1.0, 'these': 1.0, 'them': 1.0, 'out': 1.0, 'her': 2.0, 'drinking': 1.0, 'transition': 1.0, 'loves': 1.0, 'of': 1.0, 'and': 1.0, '1': 1.0, 'anymore': 1.0, 'yrs': 1.0, 'go': 1.0, 'milk': 1.0, 'absolutely': 1.0, 'anywhere': 1.0, 'cup': 1.0, 'my': 1.0, 'cups': 1.0, 'daughter': 1.0, 'when': 1.0, 'she': 2.0, 'old': 1.0, 'we': 3.0, 'turned': 1.0, 'to': 3.0, 'wanted': 1.0, 'a': 1.0}
Word element => {'issue': 1.0, 'an': 1.0, 'leaking': 1.0, 'properly': 1.0, 'pieces': 1.0, 'top': 1.0, 'you': 1.0, 'have': 2.0, 'old': 1.0, 'two': 1.0, 'i': 2.0, 'make': 1.0, 'on': 1.0, 'months': 1.0, 'one': 1.0, 'straw': 2.0, 'btw': 1.0, 'together': 1.0, 'daughter': 1.0, 'just': 1.0, 'by': 1.0, 'at': 3.0, 'after': 1.0, 'so': 1.0, '5': 1.0, 'market': 1.0, 'and': 2.0, 'every': 1.0, 'shouldn': 1.0, 'is': 1.0, 'leaks': 1.0, 'this': 2.0, 'favorite': 1.0, 'cup': 2.0, 'my': 1.0, 'them': 1.0, 'sippy': 2.0, 'started': 1.0, 'using': 1.0, 'know': 1.0, 'because': 1.0, 'the': 2.0, 'without': 1.0, 't': 2.0, 'a': 1.0, 'tried': 1.0, 'problem': 1.0, 'sure': 1.0, 'easy': 1.0, 'cups': 1.0, 'our': 1.0, 'fooled': 1.0, 'all': 4.0, 'to': 1.0, 'clean': 1.0, 'single': 1.0, 'very': 2.0, 'little': 1.0, 'promises': 1.0, 'leak': 1.0, 'don': 1.0, 'trying': 1.0, 'be': 2.0}
Word element => {'on': 1.0, 'depends': 1.0, 'probably': 1.0, 'each': 1.0, 've': 1.0, 'are': 2.0, 'liked': 1.0, 'them': 3.0, 'world': 1.0, 'a': 1.0, 's': 1.0, 't': 1.0, 'there': 1.0, 'sippy': 1.0, 'up': 1.0, 'don': 1.0, 'kid': 1.0, 'finally': 1.0, 'just': 1.0, 'breakdown': 1.0, 'not': 2.0, 'track': 1.0, 'was': 1.0, 'they': 3.0, 'bottle': 1.0, 'so': 2.0, 'many': 1.0, 'my': 2.0, 'send': 1.0, 'losing': 1.0, 'lid': 1.0, 'very': 2.0, 'tried': 1.0, 'i': 7.0, 'little': 1.0, 'two': 1.0, 'complicated': 1.0, '50': 1.0, 'and': 5.0, 'couple': 1.0, 'away': 1.0, 'only': 1.0, 'much': 1.0, 'he': 1.0, 'plastic': 1.0, 'picked': 1.0, 'we': 1.0, 'moving': 1.0, 'wash': 1.0, 'use': 1.0, '2': 1.0, 'but': 1.0, 'these': 1.0, 'of': 2.0, 'the': 8.0, 'after': 1.0, 'which': 1.0, 'hand': 1.0, 'from': 1.0, 'part': 1.0, 'hard': 1.0, 'expensive': 1.0, 'for': 1.0, 'btw': 1.0, 'wally': 1.0, 'bought': 1.0, 'more': 1.0, 'today': 1.0, 'traditional': 1.0, 'no': 1.0, 're': 1.0, 'really': 1.0, 'found': 1.0, 'however': 1.0, 'easy': 1.0, 'cup': 1.0, 'at': 2.0, 'ring': 1.0, 'through': 1.0, 'dishwasher': 1.0, 'brown': 1.0, 'straw': 1.0, 'rubber': 1.0, 'insert': 1.0, 'leak': 1.0, 'chewing': 1.0, 'with': 2.0, 'dr': 1.0, 'think': 1.0, 'brushes': 1.0, 'all': 1.0, 'to': 1.0, 'had': 1.0, 'would': 1.0, 'boy': 2.0, 'wire': 1.0, 'either': 1.0, 'because': 1.0, 'problems': 1.0, 'bits': 1.0, 'it': 1.0}
Word element => {'take': 1.0, 'doesn': 1.0, 'easy': 1.0, 'a': 1.0, 'easier': 1.0, 's': 1.0, 'top': 1.0, 'her': 1.0, 'transition': 1.0, 'regular': 1.0, 'is': 1.0, 'to': 3.0, 'old': 1.0, 'toss': 1.0, 'as': 2.0, 'sterilize': 1.0, 'kind': 1.0, 'year': 1.0, 'leak': 1.0, 'of': 2.0, 'my': 1.0, 't': 1.0, 'the': 3.0, 'out': 1.0, 'much': 1.0, 'tip': 1.0, 'it': 2.0, 'this': 2.0, 'got': 1.0, 'bottle': 2.0, 'for': 1.0, 'one': 1.0, '1': 1.0, 'and': 3.0, 'like': 2.0, 'assemble': 1.0, 'soft': 1.0, 'flip': 1.0, 'better': 1.0, 'than': 1.0}
Word element => {'problem': 1.0, 'no': 1.0, 'using': 2.0, 'had': 1.0, 'after': 1.0, 'until': 1.0, 'interestingly': 1.0, 'while': 1.0, 'from': 1.0, 'have': 2.0, 'before': 1.0, 'straw': 1.0, 'didn': 1.0, 'even': 1.0, 'and': 2.0, 'numerous': 1.0, 'mini': 1.0, 'created': 1.0, 'this': 5.0, 'warm': 1.0, 'lid': 1.0, 'starts': 1.0, 'burble': 1.0, 'if': 1.0, 'normal': 1.0, 'leaking': 1.0, '6': 1.0, 'messes': 1.0, 'of': 4.0, 'appears': 1.0, 'a': 1.0, 't': 1.0, 'we': 3.0, 'bursts': 1.0, 'they': 1.0, 'up': 1.0, 'over': 1.0, 'months': 1.0, 'then': 1.0, 'happen': 1.0, 'these': 3.0, 'more': 1.0, 'the': 10.0, 'were': 2.0, 'been': 1.0, 'that': 1.0, 'than': 1.0, 'other': 1.0, 'prevent': 1.0, 'serviceable': 1.0, 'for': 2.0, 'noticing': 1.0, 'first': 1.0, 'with': 2.0, 'it': 3.0, 'let': 1.0, 'or': 1.0, 'time': 1.0, 'so': 1.0, 'open': 1.0, 'fridge': 3.0, 'when': 1.0, 'you': 4.0, 'put': 1.0, 'inside': 1.0, 'happening': 1.0, 'will': 1.0, 'air': 1.0, 'in': 3.0, 'as': 1.0, 'to': 5.0, 'cups': 5.0, 'any': 1.0, 'create': 1.0, 'liquid': 4.0, 'take': 2.0, 'sippy': 1.0, 'started': 1.0, 'them': 1.0, 'out': 5.0, 'pressure': 1.0, 'has': 1.0, 'temperature': 1.0, 'difference': 1.0, 're': 1.0, 'enough': 2.0, 'start': 1.0}
Word element => {'thats': 1.0, 'so': 1.0, 'crazy': 1.0, 'like': 1.0, 'of': 1.0, 'out': 1.0, 'it': 3.0, 'this': 1.0, 'have': 1.0, 'very': 1.0, 'sippy': 1.0, '2': 1.0, 'the': 2.0, 'my': 1.0, 'leaks': 1.0, 'is': 1.0, 'suck': 1.0, 'water': 1.0, 'different': 1.0, 'dificult': 2.0, 'cups': 2.0, 'tried': 1.0, 'i': 2.0, 'problem': 1.0, 'get': 1.0, 'worst': 1.0, 'probably': 1.0, 'and': 1.0, '1': 1.0, 'time': 1.0, 'has': 1.0, 'to': 2.0, 'baby': 1.0, 'a': 1.0}
Word element => {'we': 3.0, 'a': 2.0, 'created': 1.0, 'learned': 1.0, 'suction': 2.0, 'be': 2.0, 'actually': 1.0, 'been': 2.0, 'babies': 1.0, 'new': 1.0, 've': 1.0, 'use': 1.0, 'her': 3.0, 'that': 3.0, 'because': 1.0, 'mouth': 1.0, 'chew': 1.0, 'not': 1.0, 'early': 1.0, 'can': 3.0, 'learn': 1.0, 'no': 1.0, 'for': 2.0, 'such': 1.0, 'valve': 1.0, 'since': 1.0, 'stocking': 1.0, 'palate': 2.0, 'up': 1.0, 'sippy': 1.0, 'months': 1.0, 'one': 1.0, 'daughter': 1.0, 'our': 1.0, 'to': 6.0, 'cup': 1.0, 'cups': 1.0, 'they': 1.0, 'suck': 2.0, 'leak': 1.0, 'repaired': 3.0, 'these': 1.0, 'successfully': 1.0, 'the': 5.0, 'of': 3.0, 'age': 1.0, 'regular': 1.0, 'have': 3.0, 'some': 1.0, 'never': 1.0, 'none': 1.0, 'she': 4.0, 'was': 2.0, 'had': 1.0, 'unless': 1.0, 'when': 1.0, 'you': 1.0, 'very': 1.0, 'with': 4.0, 'without': 1.0, 'minimal': 1.0, 'has': 1.0, 'create': 1.0, 'liquid': 1.0, 'every': 1.0, 'does': 1.0, 'variety': 1.0, 'on': 1.0, 'amount': 1.0, 'conceivable': 1.0, 'and': 1.0, 'worked': 1.0, 'tried': 1.0, 'until': 1.0, 'sort': 1.0, 'great': 1.0, 'now': 1.0, 'out': 2.0, 'cleft': 3.0, 'this': 3.0, 'at': 1.0, 'is': 2.0, 'around': 1.0, 'are': 2.0, 'blessing': 1.0, '21': 1.0, 'prior': 1.0, 'mess': 1.0, 'i': 1.0, 'looking': 1.0, 'using': 1.0, 'which': 1.0, 'removed': 1.0, 'allow': 1.0, 'fun': 1.0, 'm': 1.0, 'pour': 1.0, 'going': 1.0, 'done': 1.0, 'drinking': 1.0, 'carry': 1.0}
Word element => {'else': 1.0, 'everywhere': 1.0, 'unavailable': 1.0, 'they': 1.0, 'soft': 1.0, 'newer': 1.0, 'will': 1.0, 'ones': 1.0, 'the': 3.0, 'these': 2.0, 'my': 2.0, 'are': 1.0, 'only': 1.0, 'with': 1.0, 'and': 1.0, 'have': 2.0, 'different': 1.0, 'daughter': 2.0, 'spout': 1.0, 'of': 1.0, 'in': 1.0, 'chewed': 1.0, 'awesome': 1.0, 'that': 1.0, 'cabinet': 1.0, 'she': 1.0, 'more': 1.0, 'is': 2.0, 'use': 1.0, 'amazon': 1.0, 'variety': 1.0, 'just': 2.0, 'huge': 1.0, 'comfortable': 1.0, 'spouts': 1.0, 'seem': 2.0, 'cups': 4.0, 'our': 1.0, 'to': 2.0, 'on': 2.0, 'sippy': 3.0, 'them': 1.0, 'i': 2.0, 'am': 1.0, 'so': 1.0, 'glad': 1.0, 'a': 1.0, 'we': 1.0, 'could': 1.0, 'because': 1.0, 'find': 1.0, 'be': 1.0, 'here': 1.0}
Word element => {'around': 1.0, 'of': 1.0, 'no': 1.0, 'them': 1.0, 'she': 1.0, 'baby': 1.0, 'the': 1.0, 'my': 1.0, 'cups': 1.0, 'loves': 1.0, 'with': 1.0, 'spills': 1.0, 'animals': 1.0, 'carries': 1.0, 'girl': 1.0, 'drinks': 1.0, 'and': 1.0, 'her': 2.0, 'even': 1.0, 'all': 1.0, 'stuffed': 1.0, 'to': 1.0, 'gives': 1.0, 'best': 1.0}
Word element => {'risk': 1.0, 'worth': 1.0, 'just': 1.0, 'and': 1.0, 'very': 1.0, 'little': 2.0, 'actually': 1.0, 'but': 2.0, 'fair': 1.0, 'younger': 1.0, 'has': 1.0, 'review': 1.0, 'out': 1.0, 'child': 1.0, 'the': 4.0, 'these': 1.0, 'my': 2.0, '21': 1.0, 'he': 2.0, 'plastic': 1.0, 'isn': 1.0, 'right': 1.0, 'swallowing': 1.0, 'entirely': 1.0, 'it': 2.0, 'month': 1.0, 'old': 1.0, 'son': 1.0, 'x': 1.0, 'bitten': 1.0, 'is': 1.0, 'admittedly': 1.0, 'disappointing': 1.0, 'chewer': 1.0, 'part': 2.0, 'luckily': 1.0, 'rather': 1.0, 'of': 3.0, 'different': 1.0, 'maybe': 1.0, 'than': 1.0, 'cups': 1.0, 'three': 1.0, 'handed': 1.0, 'not': 2.0, 'me': 1.0, 'time': 1.0, 'so': 1.0, 'bit': 1.0, 'sipping': 1.0, 'each': 1.0, 's': 1.0, 't': 1.0, 'a': 2.0, 'might': 1.0}
Word element => {'proof': 1.0, 'actually': 1.0, 'cups': 1.0, 'these': 1.0, 'the': 3.0, 'most': 1.0, 'through': 1.0, 'to': 1.0, 'be': 1.0, 'chews': 1.0, 'child': 1.0, 'spillproof': 1.0, 'spill': 1.0, 'work': 1.0, 'mouthpiece': 1.0, 'your': 1.0, 'i': 1.0, 'found': 1.0, 'until': 1.0, 'have': 1.0, 'so': 1.0, 'far': 1.0, '34': 2.0, 'of': 1.0, 'claiming': 1.0}
Word element => {'most': 1.0, 'transation': 1.0, '8': 1.0, 'have': 1.0, 'turned': 1.0, 'now': 2.0, 'drinking': 1.0, 'months': 2.0, 'bought': 1.0, 'and': 3.0, 'when': 1.0, 'style': 1.0, 'almost': 1.0, 'loves': 2.0, 'off': 1.0, 'every': 2.0, 'use': 1.0, 'out': 1.0, 'single': 1.0, 'is': 2.0, 'priced': 1.0, 'of': 2.0, 'plus': 1.0, 'he': 5.0, 'cup': 2.0, 'my': 1.0, 'these': 4.0, 'the': 3.0, 'great': 1.0, 'were': 1.0, 'munchkin': 1.0, 'started': 1.0, 'best': 2.0, 'all': 1.0, 'cups': 1.0, 'as': 1.0, 'brands': 1.0, 'than': 1.0, '14': 1.0, 'straw': 1.0, 'even': 1.0, 'friends': 1.0, 'bottle': 1.0, 'i': 2.0, 'two': 1.0, 'well': 1.0, 'they': 1.0, 'are': 1.0, 'over': 1.0, 'cheaper': 1.0}
Word element => {'bottle': 1.0, 'really': 1.0, 'would': 1.0, 'available': 1.0, 'small': 1.0, 'the': 4.0, 'these': 1.0, 'are': 3.0, 'they': 3.0, 'if': 1.0, 'stores': 1.0, 'use': 1.0, 'in': 1.0, 'is': 3.0, 'containers': 1.0, 't': 2.0, 'a': 3.0, 'that': 2.0, 'it': 6.0, 'shame': 1.0, 'love': 3.0, 'product': 2.0, 'form': 1.0, 'be': 2.0, 'drinking': 2.0, 'i': 1.0, 'due': 1.0, 'to': 2.0, 'fact': 1.0, 'most': 1.0, 'can': 1.0, 'but': 1.0, 'doesn': 1.0, 'like': 2.0, 'cup': 1.0, 'bottles': 1.0, 'easy': 1.0, 'when': 1.0, 'from': 1.0, 'found': 1.0, 'this': 2.0, 'kids': 1.0, 'soft': 1.0, 'spout': 1.0, 'interrupt': 1.0, 'sippy': 1.0, 'them': 2.0, 'similar': 1.0, 'and': 2.0, 'milk': 1.0}
Word element => {'toddler': 1.0, 'a': 1.0, 'pretty': 1.0, 'noticed': 1.0, 'for': 2.0, 'useless': 1.0, 'totally': 1.0, 'so': 1.0, 'them': 1.0, 'assemble': 1.0, 'wash': 1.0, 'cannot': 1.0, 'ring': 1.0, 'i': 5.0, 'hated': 1.0, 'bought': 1.0, 'product': 1.0, 'once': 1.0, 'that': 1.0, 'munchkin': 1.0, '2': 1.0, 'the': 4.0, 'second': 1.0, 'is': 2.0, 'had': 1.0, 'its': 1.0, 'now': 2.0, 'hard': 1.0, 'only': 1.0, 'it': 2.0, 'this': 1.0, 'fit': 1.0, 'suction': 2.0, 'before': 1.0, 'even': 1.0, 'used': 1.0, 'part': 1.0, 'just': 1.0, 'not': 1.0, 'together': 2.0, 'me': 1.0, 'and': 3.0, '1': 1.0, 'do': 1.0}
Word element => {'parts': 1.0, 'need': 1.0, 'no': 1.0, 'munchkin': 1.0, 'would': 1.0, 'losses': 1.0, 'drop': 1.0, 'even': 1.0, 'online': 1.0, 'can': 1.0, 'chewed': 1.0, 'be': 2.0, 'replacement': 1.0, 't': 2.0, 'a': 7.0, 'we': 2.0, 'through': 1.0, 'week': 1.0, 'them': 2.0, 'sippy': 1.0, 'clean': 1.0, 'apart': 1.0, 'if': 1.0, 'spout': 2.0, 'the': 6.0, 'of': 2.0, 'explora': 1.0, 'came': 1.0, 'i': 4.0, 'by': 1.0, 'and': 3.0, 'milk': 1.0, 'how': 2.0, 'plastic': 2.0, 'however': 1.0, 'easy': 1.0, 'use': 1.0, 'quickly': 1.0, 'only': 1.0, 'few': 1.0, 'this': 1.0, 'soft': 1.0, 'it': 2.0, 'to': 4.0, 'all': 1.0, 'spilled': 1.0, 'was': 2.0, 'spill': 1.0, 'spouts': 1.0, 'liked': 1.0, 'stock': 1.0, 'durable': 1.0, 'for': 2.0, 'us': 1.0, 'truly': 1.0, 'daughter': 2.0, 's': 1.0, 'sense': 1.0, 'within': 1.0, 'anywhere': 1.0, 'lasted': 1.0, 'happy': 1.0, 'replace': 1.0, 'cup': 3.0, 'lid': 1.0, 'website': 1.0, 'my': 3.0, 'may': 1.0, 'is': 2.0, 'more': 1.0, 'cutting': 1.0, 'out': 1.0, 'proof': 1.0, 'will': 1.0, 'tossing': 1.0, 'you': 1.0, 'have': 3.0, 'tommee': 1.0, 'because': 1.0, 'that': 1.0, 'but': 2.0, 'tippee': 1.0, 'drinking': 1.0, 'better': 1.0, 'design': 1.0, 'with': 1.0, 'child': 1.0, 'teeth': 1.0, 'valve': 1.0, 'months': 1.0, 'moved': 1.0, 'switching': 1.0, 'inside': 1.0, 'covered': 1.0, 'hard': 1.0, 'not': 1.0, 'made': 1.0, 'haven': 1.0, 'find': 1.0, 'since': 1.0, 'had': 1.0}
Word element => {'cups': 1.0, 'are': 1.0, 'the': 1.0, 'these': 1.0, 'hurt': 1.0, 'myself': 1.0, 'sip': 1.0, 'take': 1.0, 'back': 1.0, 'handing': 1.0, 'bowls': 1.0, 'a': 2.0, 'so': 1.0, 'kept': 1.0, 'in': 1.0, 'set': 1.0, 'of': 2.0, 'spoons': 1.0, 'two': 1.0, 'year': 1.0, 'crying': 1.0, 'worst': 1.0, 'me': 1.0, 'and': 3.0, 'had': 1.0, 'to': 3.0, 'comes': 1.0, 'suck': 1.0, 'bought': 1.0, 'head': 1.0, 'nothing': 1.0, 'out': 2.0, 'hard': 1.0, 'this': 1.0, 'with': 1.0, 'it': 4.0, 'cup': 1.0, 'my': 2.0, 'ever': 1.0, 'poor': 1.0, 'tried': 1.0, 'i': 3.0, 'old': 1.0}
Word element => {'recalled': 1.0, 'be': 1.0, 'this': 1.0, 'choked': 1.0, 'have': 1.0, 'few': 1.0, 'after': 1.0, 'for': 1.0, 'deteriorated': 1.0, 'my': 1.0, 'cup': 1.0, 'first': 1.0, 'with': 1.0, 'see': 1.0, 'the': 6.0, 'these': 1.0, 'and': 2.0, 'second': 1.0, '20': 1.0, 'spout': 2.0, 'of': 3.0, 'has': 2.0, 'should': 1.0, 'recently': 1.0, 'been': 1.0, 'filled': 1.0, 'gave': 1.0, 'had': 1.0, 'cups': 1.0, 'to': 1.0, 'one': 1.0, 'months': 2.0, 'item': 1.0, 'spit': 1.0, 'is': 1.0, 'around': 1.0, 'in': 1.0, 'back': 1.0, 'shelf': 1.0, 'daughter': 1.0, 'water': 1.0, 'i': 2.0, 'her': 1.0, 'was': 2.0, 'minutes': 2.0, 'part': 1.0, 'while': 1.0, 'later': 1.0, 'ago': 1.0, 'a': 3.0, 'could': 2.0, 'it': 3.0, 'she': 3.0, 'chewing': 1.0, 'something': 1.0, 'finally': 1.0, 'out': 1.0}
Word element => {'they': 1.0, 'prefers': 1.0, 'but': 1.0, 'use': 1.0, 'months': 1.0, '18': 1.0, 'now': 1.0, 'older': 1.0, 'getting': 1.0, 'buy': 1.0, 'definate': 1.0, 'keep': 1.0, 'parts': 1.0, 'plus': 1.0, 'me': 1.0, 'clean': 2.0, 'easy': 1.0, 'very': 1.0, 'will': 1.0, 'also': 1.0, 'are': 2.0, 'wouldn': 1.0, 'simply': 1.0, 'less': 1.0, 'leak': 1.0, 'other': 2.0, 'up': 1.0, 'don': 1.0, 'i': 3.0, 'expensive': 1.0, 'his': 1.0, 'because': 1.0, 'brands': 2.0, 'does': 1.0, 'kinds': 1.0, 'cups': 1.0, 'as': 1.0, 'to': 4.0, 'all': 1.0, 'small': 1.0, 'have': 2.0, 'the': 3.0, 'this': 2.0, 'only': 1.0, 'with': 2.0, 'he': 3.0, 'it': 1.0, 'trying': 1.0, 'out': 3.0, 'these': 2.0, 'happen': 1.0, 'drink': 2.0, 'lets': 1.0, 'cup': 1.0, 'them': 1.0, 'sippy': 3.0, 'really': 1.0, 'say': 1.0, 'more': 1.0, 'is': 4.0, 'of': 3.0, 'still': 1.0, 'son': 3.0, 'problems': 1.0, 'after': 1.0, 'easiest': 1.0, 'throws': 1.0, 'biggest': 1.0, 'would': 1.0, 'no': 2.0, 'spills': 1.0, 'idea': 1.0, 'unless': 1.0, 'and': 2.0, 'then': 1.0, 't': 2.0, 'a': 2.0, 'just': 1.0, 'few': 1.0, 'that': 2.0, 'quite': 1.0, 'my': 3.0, 'often': 1.0, 'drops': 1.0, 'if': 1.0}
Word element => {'easier': 1.0, 'wish': 1.0, 'free': 1.0, 'use': 1.0, 'economical': 1.0, 'more': 1.0, 'is': 1.0, 'want': 1.0, 'not': 1.0, 'for': 3.0, 'com': 1.0, 'would': 1.0, 'munchkin': 2.0, 'find': 1.0, 'can': 1.0, '2': 1.0, 'but': 1.0, 'and': 5.0, 'get': 1.0, 'spout': 2.0, 'chews': 1.0, 'shipping': 2.0, 'pay': 1.0, 'son': 2.0, 'year': 1.0, '1': 1.0, 'big': 1.0, 'however': 1.0, 'place': 1.0, 'the': 8.0, 'my': 2.0, 'buying': 1.0, 'with': 1.0, 'stores': 1.0, 'order': 1.0, 'loved': 1.0, 'he': 2.0, 'it': 2.0, 'these': 2.0, 'some': 1.0, 'them': 1.0, 'sippy': 2.0, 'do': 1.0, 'only': 1.0, 'creates': 1.0, 'since': 1.0, 'at': 1.0, 'make': 1.0, 'on': 2.0, 'uses': 2.0, 'liked': 1.0, 'after': 1.0, 'spouts': 4.0, 'brand': 1.0, 'old': 1.0, 'mess': 1.0, 'i': 6.0, 'tried': 1.0, 'also': 2.0, '5': 1.0, 'lets': 1.0, 'nuby': 2.0, 'liquid': 1.0, 'online': 1.0, 'pour': 1.0, 'replacement': 3.0, 'out': 1.0, 'was': 1.0, 'doesn': 1.0, 'like': 1.0, 'that': 1.0, 'plus': 1.0, 'could': 1.0, 't': 1.0, 'go': 1.0, 'a': 1.0, 'cups': 3.0, 'to': 3.0, 'look': 1.0}
Word element => {'brand': 1.0, 'new': 1.0, 'better': 1.0, 'again': 1.0, 'are': 1.0, 'you': 1.0, 'in': 1.0, 'spouts': 1.0, 'they': 1.0, 'be': 1.0, 'case': 1.0, 'just': 2.0, 'not': 2.0, 'week': 1.0, 'maybe': 1.0, 'this': 1.0, 'loved': 1.0, 'a': 2.0, 'sell': 1.0, 'go': 1.0, 'cups': 1.0, 'when': 1.0, 'i': 2.0, 'off': 1.0, 'until': 1.0, 'cup': 1.0, 'two': 1.0, 'no': 1.0, 'replacement': 2.0, 'big': 1.0, 'later': 1.0, 't': 1.0, 'the': 4.0, 'spout': 1.0, 'broke': 1.0, 'munchkin': 1.0, 'thought': 1.0, 'won': 1.0, 'deal': 1.0, 'buying': 2.0, 'to': 1.0, 'store': 2.0, 'do': 1.0, 'and': 1.0, 'get': 1.0}
Word element => {'in': 1.0, 'preferred': 1.0, 'her': 1.0, 'would': 1.0, 'difference': 1.0, 'are': 1.0, 'become': 1.0, 'soft': 1.0, 'world': 1.0, 'choice': 1.0, 'my': 1.0, 'cup': 2.0, 'of': 1.0, 'sippy': 3.0, 'was': 1.0, 'to': 1.0, 'first': 1.0, 'this': 2.0, 'take': 1.0, 'spout': 1.0, 'has': 1.0, 'makes': 1.0, 'a': 2.0, 'cups': 1.0, 'daughter': 1.0, 'when': 1.0, 'the': 1.0, 'infants': 1.0, 'learning': 1.0, 'use': 1.0}
Word element => {'won': 1.0, 'fingers': 1.0, 'crib': 1.0, 'in': 1.0, 'leave': 1.0, 'leak': 1.0, 'want': 1.0, 'are': 1.0, 'anything': 1.0, 'user': 1.0, 'good': 1.0, 'overall': 1.0, 'having': 1.0, 'than': 1.0, 'because': 1.0, 'three': 1.0, 'cleaning': 1.0, 'stuck': 1.0, 'when': 1.0, 'am': 1.0, 'mess': 2.0, 'i': 4.0, 'now': 2.0, 'do': 1.0, 'end': 1.0, 'old': 1.0, 'cup': 5.0, 'my': 2.0, 'pokin': 1.0, 'form': 1.0, 'so': 2.0, 'time': 1.0, 'bottle': 1.0, 'smaller': 1.0, 'these': 2.0, 'the': 9.0, 'figured': 1.0, 'still': 1.0, 'son': 2.0, 'issues': 1.0, 'transition': 1.0, 'more': 1.0, 'is': 4.0, 'with': 4.0, 'he': 4.0, 'stopped': 1.0, 'it': 5.0, 'month': 1.0, 'stars': 1.0, 'love': 1.0, 'great': 2.0, 'finger': 1.0, 'and': 3.0, '17': 1.0, 'version': 1.0, 'squeeze': 1.0, 'handles': 1.0, 'this': 3.0, 'soft': 1.0, 'every': 1.0, 'flip': 1.0, 'however': 1.0, 'of': 1.0, 'spout': 1.0, 'once': 1.0, 'update': 1.0, 'proof': 1.0, 'out': 2.0, 'gave': 1.0, 'loves': 1.0, 'that': 4.0, 'work': 1.0, 'can': 2.0, 'his': 2.0, 'liquid': 1.0, 'top': 1.0, 'through': 2.0, 'breathing': 1.0, 't': 2.0, 'we': 2.0, 'a': 5.0, 'hole': 1.0, 'make': 1.0, 'on': 1.0, 'up': 1.0, 'poke': 1.0, 'over': 1.0, 'cups': 1.0, 'all': 1.0, 'was': 1.0}
Word element => {'babies': 1.0, 'wean': 1.0, 'trying': 1.0, 'anyone': 1.0, 'recommend': 1.0, 'highly': 1.0, 'would': 1.0, 'plastic': 1.0, 'but': 1.0, 'on': 1.0, 'silicone': 1.0, 'to': 2.0, 'cups': 1.0, 'early': 1.0, 'made': 2.0, 'love': 1.0, 'for': 1.0, 'bed': 1.0, 'absolutely': 1.0, 'introduced': 1.0, 'they': 2.0, 'old': 1.0, 'i': 3.0, 'simpler': 1.0, 'my': 1.0, 'wanted': 2.0, 'had': 1.0, 'and': 2.0, 'these': 2.0, 'the': 1.0, 'nipple': 1.0, 'year': 1.0, 'daughters': 1.0, 'them': 1.0, 'sippy': 1.0, 'no': 1.0, 'one': 1.0, 'bought': 1.0, 'twin': 1.0, 'time': 1.0, 'bottle': 2.0, 'hard': 1.0, 'part': 1.0, 'of': 3.0, 'their': 2.0, 'bottles': 1.0, 'transition': 1.0, 'much': 1.0, 'at': 1.0, 'since': 1.0, 'a': 1.0, 'more': 1.0, 'is': 1.0, 'it': 2.0, 'felt': 1.0, 'like': 1.0, 'instead': 1.0}
Word element => {'free': 1.0, 'something': 1.0, 'replace': 1.0, 'need': 1.0, 'so': 1.0, 'sleep': 1.0, 'to': 2.0, 'wheels': 1.0, 'give': 1.0, '100': 1.0, 'throughout': 1.0, 'since': 1.0, 'material': 1.0, 'like': 1.0, 'rolls': 1.0, 'the': 3.0, 'comes': 1.0, 'more': 1.0, 'is': 2.0, 'urethane': 1.0, 'want': 1.0, 'nice': 1.0, 'little': 1.0, 'maneuverable': 1.0, 'but': 1.0, 'organic': 2.0, 'looks': 1.0, 'it': 7.0, 'be': 1.0, 'cotton': 1.0, 'that': 3.0, 'uses': 1.0, 'toxin': 1.0, 'on': 2.0, 'a': 2.0, 'could': 1.0, 'we': 4.0, 'dont': 4.0, 'feels': 1.0, 'with': 2.0, 'poly': 1.0, 'mind': 1.0, 'and': 1.0, 'too': 1.0, 'much': 1.0, 'foam': 1.0, 'reason': 1.0, '5': 1.0, 'love': 1.0, 'stars': 1.0, 'pad': 1.0, 'made': 1.0, 'newborn': 1.0, 'out': 1.0, 'stable': 1.0, 'of': 1.0, 'i': 2.0, 'my': 1.0}
Word element => {'grows': 1.0, 'worth': 1.0, 'defintly': 1.0, 'get': 1.0, 'under': 1.0, 'and': 5.0, 'play': 1.0, 'way': 1.0, 'a': 8.0, 't': 2.0, 'going': 1.0, 'works': 1.0, 'pack': 1.0, 'table': 2.0, 'hold': 1.0, 'changing': 2.0, 'of': 3.0, 'the': 10.0, 'asleep': 1.0, 'place': 1.0, 'was': 4.0, 'just': 2.0, 'not': 2.0, 'n': 1.0, 'son': 2.0, 'flat': 1.0, 'have': 1.0, 'having': 1.0, 'that': 2.0, 'because': 1.0, 'we': 2.0, 'fine': 1.0, 'is': 3.0, 'goes': 1.0, 'attach': 1.0, 'part': 1.0, 'fell': 1.0, 'it': 9.0, 'bought': 1.0, 'tray': 1.0, 'building': 1.0, 'for': 1.0, 'this': 5.0, 'first': 1.0, 'out': 2.0, 'don': 1.0, '2nd': 1.0, 'did': 2.0, 'bar': 1.0, 'when': 3.0, 'am': 1.0, 'wait': 1.0, 'little': 2.0, 'be': 1.0, 'bassinet': 1.0, 'to': 5.0, 'my': 5.0, 'musical': 1.0, 'control': 1.0, 'melodies': 1.0, 'plays': 1.0, 'remote': 1.0, 'still': 1.0, 'turn': 1.0, 'in': 5.0, 'on': 1.0, 'house': 2.0, 'compartment': 1.0, 'flimsy': 1.0, 'wish': 1.0, 'expect': 1.0, 'confusing': 1.0, 'big': 1.0, 'off': 1.0, 'until': 1.0, 'tub': 1.0, 'wipes': 1.0, 'i': 8.0, 'putting': 1.0, 'slept': 1.0, 'could': 1.0, 'will': 1.0, 'perfect': 1.0, 'bed': 3.0, 'fold': 1.0, 'love': 2.0, 'he': 1.0, 'child': 3.0, 'year': 1.0, 'old': 1.0, 'together': 1.0, 'were': 2.0, 'room': 1.0, 'crib': 1.0, 'pregnant': 1.0, 'so': 3.0, 'can': 1.0, 'with': 2.0, 'there': 1.0, '3rd': 1.0, 'bedroom': 1.0}
Word element => {'purchases': 1.0, 'adore': 1.0, 'husband': 1.0, 'her': 1.0, 'week': 1.0, 'last': 1.0, 'value': 1.0, 'price': 1.0, 'but': 1.0, 'mobile': 1.0, 'missing': 1.0, 'only': 1.0, 'nice': 1.0, 'sheets': 1.0, 'came': 1.0, 'also': 1.0, 'have': 1.0, 'than': 1.0, 'best': 2.0, 'golf': 1.0, 'rather': 1.0, 'like': 1.0, 'things': 1.0, 'you': 1.0, 'can': 1.0, 'so': 1.0, 'outside': 1.0, 'room': 2.0, 'toting': 1.0, 'made': 1.0, 'which': 2.0, 'wheels': 1.0, 'leaving': 1.0, 'thing': 1.0, 'wraps': 1.0, 'into': 1.0, 'other': 1.0, 'all': 1.0, 'ever': 1.0, 've': 2.0, 'browsing': 1.0, 'while': 1.0, 'from': 2.0, 'd': 1.0, 'recieved': 1.0, 'numerous': 1.0, 'cons': 1.0, 'track': 1.0, 'search': 1.0, 'perfect': 2.0, 'this': 2.0, 'in': 4.0, 'months': 1.0, 'used': 1.0, 'decided': 1.0, 'for': 8.0, 'and': 12.0, 'soon': 1.0, 'colors': 1.0, 'discover': 1.0, 'up': 2.0, 'outdoor': 1.0, 'time': 1.0, 'new': 2.0, 'easily': 1.0, 'that': 3.0, 'closed': 1.0, 'stores': 1.0, 'case': 1.0, 'changing': 1.0, 'a': 14.0, 't': 1.0, 'on': 2.0, 'expecting': 1.0, 'was': 5.0, 'i': 6.0, 'pick': 1.0, 'creams': 1.0, 'when': 2.0, 'day': 1.0, 'days': 1.0, 'keeping': 1.0, 'lugging': 1.0, 'call': 1.0, 'newborn': 1.0, 'got': 1.0, 'with': 3.0, 'pockets': 1.0, 'instead': 1.0, 'even': 1.0, 'one': 4.0, 'too': 1.0, 'try': 1.0, 'natural': 1.0, 'of': 3.0, 'the': 16.0, 'friend': 1.0, 'find': 1.0, 'she': 1.0, 'baby': 1.0, 'nothing': 1.0, 'watched': 1.0, 'had': 2.0, 'boy': 1.0, 'either': 2.0, 'online': 1.0, 'mom': 3.0, 'any': 1.0, 'bonus': 1.0, 'be': 1.0, 'playard': 2.0, 'pros': 1.0, 'canopy': 1.0, 'amazon': 1.0, 'popped': 1.0, 'prices': 1.0, 'my': 1.0, 'it': 11.0, 'beyond': 1.0, 'or': 3.0, 'girl': 1.0, 'isn': 1.0, '100': 1.0, 'hoping': 1.0, 'to': 5.0, 'bassinet': 1.0, 'cramming': 1.0, 'easier': 1.0, 'ultrasound': 1.0, 'has': 1.0, 'playards': 1.0, 'diaper': 2.0, 'make': 1.0, 'area': 1.0, 'neutral': 1.0, 'wipes': 1.0, 'different': 1.0, 'around': 2.0, 'music': 2.0, 'box': 1.0, 'soothing': 1.0, 'sounds': 1.0, 'bag': 5.0, 'light': 1.0, 'is': 3.0, 'pull': 1.0, 'stacker': 1.0, 'percent': 1.0, 'bright': 1.0, 'great': 1.0, 'carrying': 1.0}
Word element => {'brand': 1.0, 'another': 1.0, 'gotten': 1.0, 'would': 1.0, 'wish': 1.0, 'speed': 1.0, 'low': 1.0, 'even': 1.0, 'a': 1.0, 'well': 1.0, 'we': 2.0, 'fall': 1.0, 'on': 1.0, 'support': 1.0, 'the': 2.0, 't': 2.0, 'have': 2.0, 'very': 2.0, 'child': 2.0, 'pretty': 1.0, 'back': 1.0, 'doesn': 2.0, 'but': 1.0, 'forward': 1.0, 'to': 1.0, 'product': 1.0, 'be': 1.0, 'is': 1.0, 'careful': 1.0, 'so': 2.0, 'you': 1.0, 'your': 1.0, 'it': 1.0, 'when': 1.0, 'swings': 1.0}
Word element => {'other': 1.0, 'recommend': 1.0, 'well': 1.0, 'use': 1.0, 'toddler': 1.0, 'are': 1.0, 'individually': 1.0, 'sell': 1.0, 'they': 1.0, 'that': 1.0, 'if': 1.0, 'hooded': 2.0, 'than': 2.0, 'towels': 2.0, 'as': 1.0, 'to': 1.0, 'look': 1.0, 'slightly': 2.0, 'really': 1.0, 'this': 2.0, 'i': 2.0, 'pretty': 1.0, 'used': 1.0, 'average': 1.0, 'months': 1.0, 'absorbent': 2.0, 'your': 2.0, 'on': 1.0, 'have': 1.0, 'pack': 1.0, 'towel': 2.0, 'might': 1.0, 'a': 3.0, 'for': 2.0, 'out': 1.0, 'newborn': 1.0, 'couple': 1.0, 'good': 1.0, 'of': 1.0, 'little': 2.0, 'is': 4.0, 'more': 3.0, 'the': 6.0, 'sold': 1.0, 'and': 4.0, 'too': 2.0, 'design': 1.0, 'cute': 1.0, 'print': 1.0, 'will': 1.0, 'them': 1.0, 'baby': 1.0, 'something': 1.0, 'bigger': 2.0, 'three': 1.0, 'at': 1.0, 'however': 1.0, 'it': 2.0, 'lovable': 1.0, 'friends': 1.0, 'give': 1.0, 'not': 1.0}
Word element => {'buying': 1.0, 'will': 1.0, 'yellow': 1.0, 'it': 1.0, 'hopefully': 1.0, 'dishwasher': 1.0, 'in': 1.0, 'that': 1.0, 'little': 1.0, 'out': 1.0, 'them': 1.0, 'hold': 1.0, 'haven': 1.0, 'far': 1.0, 'ones': 2.0, 'the': 6.0, 'these': 3.0, 'great': 1.0, 'are': 2.0, 'on': 2.0, 'silicone': 1.0, 'over': 1.0, 'faced': 1.0, 'time': 1.0, 'so': 2.0, 'be': 1.0, 'pediatrician': 1.0, 'after': 1.0, 'our': 1.0, 'to': 2.0, 'only': 1.0, 'much': 1.0, 'than': 1.0, 'better': 1.0, 'won': 1.0, 'easier': 1.0, 'recommended': 1.0, 'one': 1.0, 'round': 1.0, 'angled': 1.0, 'getting': 1.0, 'finds': 1.0, 'and': 1.0, 'they': 1.0, 'work': 1.0, 'but': 1.0, 'used': 1.0, 'pacifiers': 1.0, 'long': 1.0, 'top': 1.0, 'is': 1.0, 'washes': 1.0, 'still': 1.0, 'flat': 1.0, 'crystal': 1.0, 'clear': 1.0, 'we': 1.0, 't': 2.0, 'a': 1.0, 'few': 1.0}
Word element => {'hold': 1.0, 'outside': 1.0, 'on': 1.0, 'little': 1.0, 'in': 2.0, 'needs': 1.0, 'shopping': 1.0, 'be': 1.0, 'i': 2.0, 'when': 1.0, 'just': 1.0, 'especially': 1.0, 'pacifer': 1.0, 'really': 1.0, 'keep': 2.0, 'these': 1.0, 'the': 1.0, 'great': 1.0, 't': 1.0, 'playpen': 1.0, 'play': 1.0, 'distraction': 1.0, 'but': 1.0, 'doesn': 1.0, 'them': 2.0, 'a': 3.0, 'highly': 1.0, 'baby': 1.0, 'recommend': 1.0, 'might': 1.0, 'she': 2.0, 'my': 2.0, 'take': 1.0, 'to': 2.0, 'with': 1.0, 'purse': 1.0, 'and': 3.0, 'her': 3.0, 'likes': 1.0, 'busy': 1.0, 'handle': 1.0, 'one': 2.0, 'love': 1.0, 'for': 2.0, 'bit': 1.0}
Word element => {'your': 1.0, 'adorable': 1.0, 'but': 1.0, 'can': 1.0, 'soothie': 1.0, 'we': 3.0, 't': 3.0, 'infant': 1.0, 'quickly': 2.0, 'caved': 1.0, 'won': 1.0, 'angry': 1.0, 'however': 1.0, 'sleep': 1.0, 'as': 2.0, 'pretty': 2.0, 'to': 5.0, 'all': 1.0, 'hospital': 1.0, 'lot': 1.0, 'since': 1.0, 'care': 1.0, 'like': 1.0, 'using': 2.0, 'mothers': 1.0, 'from': 2.0, 'and': 4.0, 'pacifiers': 3.0, 'picked': 1.0, 'i': 4.0, 'stated': 1.0, 'not': 2.0, 'style': 2.0, 'would': 1.0, 've': 1.0, 'initially': 1.0, 'breastfeeding': 1.0, 'loves': 1.0, 'of': 3.0, 'the': 4.0, 'deprived': 1.0, 'planned': 1.0, 'daughter': 2.0, 'on': 1.0, 'a': 2.0, 'confusion': 2.0, 'are': 1.0, 'first': 2.0, 'with': 3.0, 'breastfeed': 1.0, 'their': 1.0, 'worried': 1.0, 'time': 1.0, 'create': 1.0, 'they': 4.0, 'calm': 1.0, 'interfere': 2.0, 'my': 5.0, 'another': 1.0, 'nipple': 2.0, 'ability': 2.0, 'had': 3.0, 'was': 2.0, 'expectation': 1.0, 'stopped': 1.0, 'it': 1.0, 'baby': 1.0, 'she': 2.0, '3': 1.0, 'taking': 1.0, 'up': 2.0, 'pack': 1.0, 'nuk': 1.0, 'styles': 1.0, 'claimed': 1.0, 'have': 3.0, 'lived': 1.0, 'every': 1.0, 'them': 1.0, 'has': 1.0, 'these': 1.0, 'days': 1.0, 'old': 1.0, 'that': 1.0, 'because': 1.0, 'problems': 1.0, 'absolutely': 1.0, 'gotten': 1.0, 'no': 1.0, 'you': 5.0, 'what': 1.0, 'inevitably': 1.0, 'when': 1.0, 'pick': 1.0, 'order': 1.0, 'color': 2.0, 'want': 2.0, 'been': 2.0, 'amazon': 1.0, 'will': 1.0, 'magical': 1.0, 'get': 1.0, 'reviewer': 1.0, 'didn': 1.0}
Word element => {'these': 1.0, 'stain': 1.0, 'look': 1.0, 'cuff': 1.0, 'ones': 2.0, 'not': 1.0, 'me': 1.0, 'latex': 1.0, 'simple': 1.0, 'is': 1.0, 'for': 1.0, 'love': 1.0, 's': 1.0, 'correctly': 1.0, 'after': 1.0, 'the': 6.0, 'nipple': 2.0, 'forming': 1.0, 'be': 1.0, 'they': 1.0, 'do': 1.0, 'continue': 1.0, 'away': 1.0, 'beyond': 1.0, 'i': 1.0, 'teeth': 1.0, 'clear': 1.0, 'yucky': 1.0, 'orthodontic': 1.0, 'has': 1.0, 'easier': 1.0, 'latch': 1.0, 'nasty': 1.0, 'babies': 1.0, 'into': 1.0, 'throw': 1.0, 'allowing': 1.0, 'and': 5.0, 'gotten': 1.0, 'baby': 1.0, 'being': 1.0, 'to': 7.0, 'mouth': 1.0, 'deciding': 1.0, 'off': 1.0, 'types': 1.0, 'my': 1.0, 'newborn': 1.0, 'third': 1.0, 'child': 1.0, 'seem': 1.0, 'still': 1.0, 'this': 1.0, 'it': 1.0, 'makes': 1.0, 'type': 1.0, 'on': 2.0, 'stuff': 1.0, 'easiest': 1.0, 'see': 1.0, 'easily': 1.0, 'am': 1.0, 'when': 2.0}
Word element => {'these': 1.0, 'need': 1.0, 'if': 1.0, 'is': 1.0, 'with': 1.0, 'advertised': 1.0, 'us': 1.0, 'worked': 1.0, 'as': 2.0, 'very': 1.0, 'and': 1.0, 'its': 1.0, 'price': 1.0, 'baby': 1.0, 'good': 1.0, 'stairs': 2.0, 'you': 2.0, 'our': 1.0, 'for': 2.0, 'spindles': 1.0, 'exactly': 1.0, 'have': 1.0, 'well': 1.0, 'a': 1.0, 'gate': 1.0}
Word element => {'visiting': 1.0, 'are': 1.0, 'frequently': 1.0, 'very': 1.0, 'decide': 1.0, 'installation': 1.0, 'clamp': 1.0, 'bar': 1.0, 've': 1.0, 'remove': 1.0, 'it': 2.0, 'her': 1.0, 'sufficient': 1.0, 'isn': 1.0, 'wife': 1.0, 'properly': 1.0, 'for': 2.0, 'fit': 1.0, 'grandchildren': 1.0, 'together': 1.0, 'opening': 1.0, 'but': 1.0, 'can': 1.0, 'firm': 1.0, 'compress': 1.0, 'sure': 1.0, 'get': 1.0, 'may': 1.0, 'my': 1.0, 'tightly': 1.0, 'baluster': 1.0, 'diagonal': 1.0, 'against': 1.0, 'side': 1.0, 'really': 1.0, 'toddler': 1.0, 'ours': 1.0, 'try': 1.0, 'do': 2.0, 'works': 1.0, 'great': 1.0, 'more': 1.0, 'baby': 1.0, 'with': 1.0, 'considered': 1.0, 'must': 1.0, 'flat': 2.0, 'have': 1.0, 'compression': 1.0, 'mount': 3.0, 'latch': 1.0, 'fittings': 1.0, 'or': 1.0, 'prepared': 1.0, 'round': 2.0, 'when': 1.0, 'bear': 1.0, 'dreambaby': 2.0, 'those': 1.0, 'one': 1.0, 'we': 2.0, 't': 1.0, 's': 1.0, 'a': 6.0, 'the': 13.0, 'gate': 5.0, 'make': 1.0, 'on': 1.0, 'if': 2.0, 'surface': 1.0, 'this': 2.0, 'based': 1.0, 'easier': 1.0, 'torque': 1.0, 'and': 3.0, 'tapered': 1.0, 'top': 2.0, 'strength': 1.0, 'squeezes': 1.0, 'i': 4.0, 'use': 2.0, 'rubber': 1.0, 'bottom': 2.0, 'y': 1.0, 'at': 4.0, 'shaped': 1.0, 'general': 1.0, 'adapter': 1.0, 'to': 7.0, 'using': 1.0, 'hand': 1.0, 'comment': 1.0, 'profile': 1.0, 'be': 1.0}
Word element => {'yay': 1.0, 'happens': 1.0, 'rattles': 1.0, 'side': 1.0, 'other': 1.0, 'stands': 1.0, 'son': 1.0, 'works': 1.0, 'charm': 1.0, 'banister': 1.0, 'feels': 1.0, 'and': 4.0, 'nothing': 1.0, 'like': 1.0, 'go': 1.0, 'on': 2.0, 'gate': 1.0, 'a': 1.0, 'my': 3.0, 'convert': 1.0, 'to': 2.0, 'was': 1.0, 'it': 2.0, 'this': 1.0, 'the': 1.0, 't': 1.0, 'at': 1.0, 'safe': 1.0, 'all': 1.0, 'doesn': 1.0, 'secure': 1.0, 'slide': 1.0}
Word element => {'extra': 1.0, 'use': 1.0, 'still': 1.0, 'third': 1.0, 'be': 1.0, 'will': 2.0, 'problem': 1.0, 'daughter': 1.0, 'indentions': 1.0, 'left': 1.0, 'add': 2.0, 'already': 1.0, 'shaped': 1.0, 'because': 1.0, 'padding': 2.0, 'of': 2.0, 'same': 1.0, 'layer': 1.0, 'now': 1.0, 'thin': 1.0, 'with': 1.0, 'little': 1.0, 'very': 1.0, 'm': 1.0, 'protect': 1.0, 'doesn': 2.0, 'well': 1.0, 'has': 2.0, 'this': 2.0, 'banister': 6.0, 'afraid': 1.0, 'for': 1.0, 'fit': 1.0, 'plan': 2.0, 'more': 1.0, 'comes': 1.0, 'is': 4.0, 'around': 1.0, 'husband': 1.0, 'mount': 1.0, 'way': 1.0, 'sit': 1.0, 'adaptor': 6.0, 'dreambaby': 2.0, 'fair': 1.0, 'v': 1.0, 'and': 8.0, 'mobile': 1.0, 'bought': 1.0, 'portion': 1.0, 'warning': 1.0, 'all': 1.0, 'to': 5.0, 'our': 4.0, 'another': 1.0, 'my': 1.0, 'fits': 1.0, 'round': 3.0, 'us': 1.0, 'i': 4.0, 'wood': 3.0, 'the': 21.0, 'gate': 6.0, 'top': 2.0, 'needed': 2.0, 'allowed': 1.0, 'stairs': 1.0, 't': 2.0, 'we': 3.0, 'discovered': 1.0, 'a': 3.0, 'have': 1.0, 'small': 1.0, 'flat': 1.0, 'decorative': 1.0, 'trim': 1.0, 'bottom': 1.0, 'time': 1.0, 'against': 3.0, 'so': 1.0, 'only': 1.0, 'it': 4.0, 'home': 1.0, 'pressure': 1.0, 'post': 1.0, 'install': 1.0, 'in': 2.0, 'slides': 1.0, 'easily': 1.0, 'that': 2.0, 'into': 1.0, 'but': 3.0}
Word element => {'mounts': 1.0, 'filled': 1.0, 'are': 1.0, 'existing': 1.0, 'pressure': 1.0, 'screws': 1.0, 'adapters': 1.0, 'purchasing': 1.0, 'has': 1.0, 'bannister': 1.0, 'dreambaby': 1.0, 'of': 1.0, 'bottom': 1.0, 'brand': 1.0, 'avoid': 1.0, 'just': 1.0, 'not': 1.0, 'that': 1.0, 'munchkin': 1.0, 'otherwise': 1.0, 'drilling': 1.0, 'my': 1.0, 'holes': 1.0, 'the': 3.0, 'expensive': 1.0, 'works': 1.0, 'with': 1.0, 'it': 1.0, 'this': 1.0, 'stair': 1.0, 'to': 1.0, 'on': 1.0, 'gate': 1.0, 'allowed': 1.0, 'perfectly': 1.0, 'and': 1.0, 'me': 1.0, 'or': 1.0, 'into': 2.0}
Word element => {'they': 1.0, 'size': 1.0, 'screw': 1.0, 'make': 1.0, 'attached': 1.0, 'be': 1.0, 'use': 2.0, 'whatever': 1.0, 'only': 1.0, 'circumference': 1.0, 'inch': 1.0, 'of': 1.0, 'sturdy': 1.0, 'bannister': 2.0, 'sure': 1.0, 'easy': 1.0, 'with': 1.0, 'used': 1.0, 'a': 1.0, 'we': 1.0, 'supergate': 1.0, 'padding': 2.0, 'is': 4.0, 'finally': 1.0, 'solid': 1.0, 'construction': 1.0, 'but': 2.0, 'most': 1.0, 'added': 1.0, 'purchased': 2.0, 'not': 3.0, 'this': 1.0, 'it': 4.0, 'gauge': 1.0, 'secure': 2.0, 'will': 3.0, 'item': 1.0, 'perform': 1.0, 'offer': 1.0, 'close': 1.0, 'extra': 1.0, 'standard': 1.0, 'does': 1.0, 'you': 2.0, 'when': 1.0, 'otherwise': 1.0, '4': 1.0, 'i': 2.0, 'metal': 2.0, 'gate': 4.0, 'job': 1.0, 'the': 8.0, 'depot': 1.0, 'needed': 1.0, 'post': 2.0, 'home': 1.0, 'protective': 1.0, 'appear': 1.0, 'as': 2.0, 'to': 3.0, 'adequate': 1.0, 'protection': 1.0, 'fit': 1.0, 'cheap': 1.0, 'for': 1.0, 'wood': 2.0, 'in': 2.0, 'states': 2.0, 'case': 1.0, 'simply': 1.0, 'and': 2.0, 'adhesive': 1.0, 'which': 1.0, 'solution': 1.0, 'from': 1.0, 'requires': 1.0, 'my': 1.0, 'fits': 1.0, 'north': 2.0, 'well': 1.0}
Word element => {'damage': 1.0, 'causing': 1.0, 'better': 1.0, 'worked': 1.0, 'them': 1.0, 'for': 1.0, 'liked': 1.0, 'online': 1.0, 'are': 1.0, 'these': 1.0, 'only': 1.0, 'considering': 1.0, 'problem': 1.0, 'have': 3.0, 'from': 1.0, 'very': 1.0, 'sold': 1.0, 'and': 4.0, 'unusable': 1.0, 'house': 1.0, 'put': 1.0, 'but': 1.0, 'work': 1.0, 'disappointing': 1.0, 'itself': 1.0, 'in': 1.0, 'latch': 1.0, 'bottom': 1.0, 'of': 1.0, 'without': 1.0, 'the': 8.0, 'gate': 4.0, 'bow': 1.0, 'new': 1.0, 'would': 2.0, 'not': 2.0, 'making': 1.0, 'at': 1.0, 'wanted': 1.0, 'they': 1.0, 'slightly': 1.0, 'as': 1.0, 'to': 4.0, 'our': 4.0, 'that': 2.0, 'banister': 3.0, 'wood': 1.0, 'is': 1.0, 'say': 1.0, 'pressure': 1.0, 'strain': 1.0, 'out': 1.0, 'did': 1.0, 'caused': 2.0, 'stairs': 1.0, 'we': 2.0, 't': 1.0, 'adaptors': 2.0, 's': 1.0, 'thus': 1.0, 'i': 2.0, 'got': 1.0, 'wouldn': 1.0, 'it': 1.0}
Word element => {'padding': 1.0, 'have': 1.0, 'does': 1.0, 'in': 1.0, 'just': 1.0, 'make': 1.0, 'wanted': 1.0, 'to': 3.0, 'be': 1.0, 'case': 1.0, 'product': 1.0, 'way': 1.0, 'any': 1.0, 'the': 1.0, 't': 1.0, 'other': 1.0, 'it': 1.0, 'this': 1.0, 'couldn': 1.0, 'gates': 1.0, 'our': 2.0, 'love': 1.0, 'for': 1.0, 'stairway': 1.0, 'i': 1.0, 'but': 1.0, 'work': 1.0, 'put': 1.0, 'a': 2.0, 'find': 1.0, 'protect': 1.0, 'little': 2.0, 'sure': 1.0, 'cardboard': 1.0, 'wood': 1.0, 'under': 1.0}
Word element => {'free': 1.0, 'bpa': 1.0, 'and': 1.0, 'durable': 1.0, 'very': 1.0, 'plastic': 1.0, 'although': 1.0, 'nuk': 1.0, 'like': 1.0, 'worry': 1.0, 'a': 3.0, 'is': 2.0, 'type': 1.0, 'nice': 1.0, 'great': 1.0, 'diaper': 1.0, 'of': 1.0, 'this': 1.0, 'first': 1.0, 'ordered': 1.0, 'nipple': 1.0, 'birthday': 1.0, 'loved': 1.0, 'it': 3.0, 'she': 2.0, 'overall': 1.0, 'shape': 1.0, 'get': 1.0, 'for': 4.0, 'theme': 1.0, 'yet': 1.0, 'hello': 1.0, 'i': 1.0, 'putting': 1.0, 'daughters': 1.0, 'my': 1.0, 'kitty': 1.0, 'would': 1.0, 'take': 2.0, 'simple': 1.0, 'bag': 1.0, 'hard': 1.0, 'while': 1.0, 'her': 1.0, 'in': 1.0, 'having': 1.0, 'the': 6.0, 'without': 1.0, 'paci': 3.0, 'to': 2.0, 'only': 1.0, 'works': 1.0, 'its': 1.0, 'will': 1.0, 'dirty': 1.0, 'off': 1.0, 'cover': 1.0, 'enough': 1.0}
Word element => {'fabulous': 1.0, 's': 1.0, 'than': 1.0, 'and': 1.0, 'that': 2.0, 'the': 1.0, 'downside': 1.0, 'my': 1.0, 'product': 1.0, 'wanted': 1.0, 'to': 1.0, 'only': 1.0, 'it': 3.0, 'this': 1.0, 'other': 1.0, 'is': 2.0, 'really': 1.0, 'i': 2.0, 'not': 1.0, 'free': 1.0, 'bpa': 1.0, 'food': 1.0, 'use': 1.0, 'love': 1.0, 'for': 1.0, 'baby': 1.0}
Word element => {'mama': 1.0, 'reviewed': 1.0, 'dried': 1.0, 'line': 1.0, 'care': 1.0, 'special': 1.0, 'take': 1.0, 'nice': 1.0, 'that': 2.0, 'into': 1.0, 'then': 1.0, 'sheets': 1.0, 'with': 1.0, 'washer': 1.0, 'them': 1.0, 'stayed': 1.0, 'you': 1.0, 'tied': 1.0, 'back': 1.0, 't': 2.0, 's': 1.0, 'we': 1.0, 'there': 1.0, 'wash': 1.0, 'up': 1.0, 'and': 5.0, 'new': 1.0, 'each': 1.0, 'age': 1.0, 'in': 3.0, 'having': 1.0, 'nicely': 1.0, 'have': 1.0, 'dryer': 1.0, 'flat': 1.0, 'topper': 2.0, 'tight': 1.0, 'for': 2.0, 'can': 1.0, 'four': 1.0, 'easy': 1.0, 'by': 1.0, 'just': 2.0, 'corners': 1.0, 'ties': 1.0, 'properly': 1.0, 'any': 1.0, 'to': 5.0, 'doesn': 2.0, 'was': 1.0, 'sheet': 1.0, 'so': 1.0, 'velcro': 1.0, 'it': 5.0, 'tie': 1.0, 'tiff': 1.0, 'throw': 1.0, 'were': 1.0, 'your': 1.0, 'on': 2.0, 'hooks': 1.0, 'straps': 1.0, 'mat': 1.0, 'plastic': 1.0, 'side': 1.0, 'really': 2.0, 'the': 8.0, 'without': 1.0, 'place': 1.0, 'two': 1.0, 'of': 2.0, 'once': 1.0, 'days': 1.0, 'be': 2.0, 'adjusted': 1.0, 'washes': 1.0}
Word element => {'please': 1.0, 'very': 1.0, 'getting': 1.0, 'get': 1.0, 'it': 2.0, 'sippy': 1.0, 'the': 4.0, 'hygienic': 1.0, 'bottle': 1.0, 'i': 1.0, 'no': 1.0, 'whole': 1.0, 'buy': 1.0, 'think': 1.0, 'cup': 1.0, 'or': 1.0, 'other': 1.0, 'set': 1.0, 's': 1.0, 'a': 3.0, 'not': 1.0, 'nice': 2.0, 'more': 1.0, 'is': 2.0, 'having': 1.0, 'to': 3.0, 'was': 1.0, 'straw': 2.0, 'brush': 1.0, 'love': 1.0, 'option': 1.0, 'keep': 1.0, 'if': 1.0, 'that': 1.0, 'this': 1.0, 'soft': 1.0, 'would': 1.0, 'be': 1.0, 'amazing': 1.0, 'plastics': 1.0, 'cap': 1.0, 'made': 1.0, 'out': 1.0, 'silicone': 2.0, 'even': 1.0, 'stainless': 1.0, 'of': 1.0, 'steel': 1.0}
Word element => {'only': 1.0, 'us': 1.0, 'expensive': 1.0, 'bad': 1.0, 'thing': 1.0, '2': 1.0, 'definitely': 1.0, 'better': 1.0, 'much': 1.0, 'than': 2.0, 'less': 1.0, 'still': 1.0, 'ounces': 2.0, 'for': 1.0, '10': 1.0, '8': 1.0, 'worth': 1.0, 'now': 1.0, 'lifesaver': 1.0, 'what': 2.0, 'squirt': 1.0, 'numerous': 1.0, 'refused': 1.0, 'though': 1.0, 's': 4.0, 'sides': 1.0, 'i': 4.0, 'after': 2.0, 'different': 1.0, 'her': 4.0, '4': 1.0, 'dribble': 1.0, 'nanny': 1.0, 'pump': 1.0, 'go': 2.0, 'going': 1.0, 'a': 10.0, 'discovered': 1.0, 'drinking': 3.0, 'months': 1.0, 'get': 1.0, 'sure': 1.0, 'suddenly': 1.0, 'time': 1.0, 'day': 3.0, 'from': 4.0, 'daughter': 2.0, 'some': 1.0, 'knew': 1.0, 'month': 1.0, 'she': 6.0, 'it': 8.0, 'bottles': 1.0, 'or': 1.0, 'least': 1.0, 'our': 3.0, 'any': 3.0, 'which': 1.0, 'asleep': 1.0, 'made': 1.0, 'breastfeed': 1.0, 'tried': 1.0, 'six': 1.0, 'old': 2.0, 'was': 4.0, 'once': 1.0, 'the': 9.0, 'of': 3.0, '1': 1.0, 'since': 1.0, 'but': 4.0, 'work': 3.0, 'swallow': 1.0, 'so': 2.0, 'can': 1.0, 'back': 1.0, 'used': 1.0, 'worked': 3.0, 'nipple': 2.0, 'absolutely': 1.0, 'nothing': 1.0, 'out': 3.0, 'and': 5.0, 'milk': 5.0, 'soon': 1.0, 'came': 1.0, 'mouth': 1.0, 'refuse': 1.0, 'feeding': 1.0, 'to': 7.0, 'pretty': 1.0, 'weeks': 1.0, 'would': 5.0, 'either': 1.0, 'onto': 1.0, 'start': 1.0, 'too': 1.0, 'one': 1.0, 'crying': 1.0, 'forever': 1.0, 'because': 1.0, 'that': 4.0, 'fall': 1.0, 'at': 2.0, 'is': 2.0, 'returned': 1.0, 'whole': 1.0, 'taking': 1.0, 'workday': 1.0, 'started': 1.0, 'spoon': 4.0, 'we': 5.0, 'then': 1.0, 'little': 1.0, 'pain': 1.0, 'few': 1.0, 'bottle': 5.0, 'this': 1.0, 'fed': 1.0, 'without': 1.0, 'soft': 1.0, 'has': 2.0, 'took': 1.0, 'instead': 1.0, 'push': 2.0, 'you': 1.0}
Word element => {'side': 1.0, 'floor': 1.0, 'away': 1.0, 'less': 1.0, 'loves': 1.0, 'that': 1.0, 'everything': 1.0, 'fluids': 1.0, 'you': 1.0, 'unless': 1.0, 'this': 1.0, 'daughter': 1.0, 'water': 1.0, 'other': 1.0, 'anything': 1.0, 'not': 1.0, 'house': 1.0, 'but': 1.0, 'contents': 1.0, 'squirts': 1.0, 'squeezable': 1.0, 'touches': 1.0, 'like': 3.0, 'straight': 1.0, 'old': 1.0, 'cup': 4.0, 'squirt': 1.0, 'sounds': 1.0, 'up': 1.0, 'over': 1.0, '19': 1.0, 'great': 1.0, 'the': 10.0, 'it': 5.0, 'month': 1.0, 'she': 1.0, 'every': 1.0, 'then': 1.0, 'more': 1.0, 'is': 5.0, 'all': 2.0, 'too': 1.0, 'besides': 1.0, 'linguini': 1.0, '8': 1.0, 'bottom': 1.0, 'from': 1.0, 'fluid': 1.0, 'of': 1.0, 'in': 1.0, 'air': 1.0, 'my': 2.0, 'tight': 1.0, 'for': 1.0, 'straw': 3.0, 'gun': 1.0, 'put': 1.0, 'on': 4.0, 'except': 1.0, 'time': 1.0, 'so': 1.0, 'sprays': 1.0, 'feet': 1.0, 'out': 1.0, 'internet': 1.0, 'a': 3.0, 'little': 1.0, 'than': 2.0, 'its': 1.0, 'do': 1.0}
Word element => {'it': 2.0, 'drinks': 1.0, 'she': 1.0, 'squeeze': 1.0, 'make': 1.0, 'many': 1.0, 'best': 1.0, 'love': 1.0, 'straw': 2.0, 'so': 1.0, 'brand': 1.0, 'milk': 1.0, 'different': 1.0, 'innobaby': 1.0, 'the': 2.0, 'but': 1.0, 'far': 1.0, 'to': 1.0, 'was': 1.0, 'tried': 2.0, 'i': 5.0, 'my': 1.0, 'cup': 2.0, 'bottle': 1.0, 'drink': 1.0, 'been': 1.0, 'daughter': 1.0, 'cups': 1.0, 'by': 1.0, 've': 2.0, 'having': 1.0, 'has': 1.0, 'time': 1.0, 'just': 1.0, 'difficult': 1.0, 'trying': 1.0}
Word element => {'not': 1.0, 'good': 1.0, 'think': 1.0, 'would': 1.0, 'but': 1.0, 'pretty': 1.0, 'definitely': 1.0, 'extra': 1.0, 'an': 1.0, 'cleaning': 1.0, 'choice': 1.0, 'drops': 1.0, 'leaking': 1.0, 'flow': 1.0, 'always': 1.0, 'leaked': 1.0, 'seems': 1.0, 'also': 1.0, 'from': 1.0, 'hard': 1.0, 'floor': 1.0, 'throws': 1.0, 'plastic': 1.0, 'he': 2.0, 'instead': 1.0, 'works': 1.0, 'try': 1.0, 'straw': 5.0, 'cup': 2.0, 'high': 1.0, 'of': 2.0, 'out': 1.0, 'made': 2.0, 'this': 3.0, 'it': 7.0, 'mos': 1.0, 'with': 4.0, 'learn': 1.0, 'read': 1.0, 'cups': 1.0, 'comparable': 1.0, 'to': 3.0, 'i': 4.0, 'comes': 1.0, 'is': 1.0, 'better': 1.0, 'long': 2.0, 'even': 3.0, 'drink': 1.0, 'so': 1.0, 'term': 2.0, 'bottle': 1.0, 'that': 1.0, 'babies': 1.0, 'formula': 1.0, 'expensive': 1.0, 'for': 3.0, 'product': 1.0, 'drinking': 1.0, 'son': 1.0, '11': 1.0, 'big': 1.0, 'lid': 1.0, 'cap': 1.0, 'my': 1.0, 'starts': 1.0, 'prevents': 1.0, 'the': 4.0, 'and': 4.0, 'are': 1.0, 'sippy': 1.0, 'quality': 1.0, 'silicon': 1.0, 'a': 7.0, 's': 1.0, 'never': 4.0, 'broken': 1.0, 'brush': 1.0, 'makes': 1.0, 'over': 2.0, 'sound': 1.0}
Word element => {'with': 1.0, 'that': 1.0, 'bottles': 1.0, 'breast': 1.0, 'back': 1.0, 'no': 1.0, 'has': 1.0, 'from': 1.0, 'ounce': 1.0, 'eight': 1.0, 'and': 5.0, 'problems': 1.0, 'old': 1.0, 'the': 5.0, 'this': 5.0, 'it': 1.0, 'my': 1.0, 'flowing': 1.0, 'son': 1.0, 'is': 4.0, 'nipple': 9.0, 'feeds': 1.0, 'not': 1.0, 'don': 1.0, 'go': 1.0, 'going': 1.0, 't': 1.0, 'a': 5.0, 'stage': 3.0, 'he': 1.0, '6': 1.0, 'i': 2.0, 'two': 3.0, 'pictured': 1.0, 'days': 1.0, 'order': 2.0, 'spoon': 2.0, 'want': 2.0, 'if': 2.0, 'at': 1.0, 'breastfed': 1.0, 'bottle': 2.0, 'little': 1.0, 'drink': 1.0, 'easily': 1.0, 'you': 2.0, 'when': 1.0, 'am': 1.0, 'fast': 1.0, 'prefers': 1.0, 'work': 1.0, 'week': 1.0, 'will': 1.0, 'an': 1.0, 'find': 1.0, 'to': 2.0, 'love': 1.0, 'for': 1.0, 'months': 1.0, 'one': 1.0, 'be': 1.0, 'him': 1.0}
Word element => {'definitely': 1.0, 'a': 1.0, 'taking': 1.0, 'not': 1.0, 'after': 1.0, 'accept': 1.0, 'having': 1.0, 'is': 1.0, 'price': 1.0, 'baby': 1.0, 'my': 1.0, 'the': 2.0, 'take': 1.0, 'him': 1.0, 'would': 1.0, 'breastfed': 1.0, 'bottle': 2.0, 'i': 1.0, 'worth': 1.0, 'found': 1.0, 'for': 1.0, 'one': 1.0, 'have': 1.0, 'was': 1.0, 'to': 3.0, 'go': 1.0, 'weeks': 1.0, 'dealing': 1.0, 'will': 1.0, 'work': 1.0, 'back': 1.0, 'with': 1.0, 'only': 1.0, 'this': 1.0, 'thrilled': 1.0, 'he': 1.0}
Word element => {'what': 1.0, 'able': 1.0, 'law': 1.0, 'in': 1.0, 'mother': 1.0, 'ever': 1.0, 'smart': 1.0, 'about': 1.0, 'wife': 1.0, 'my': 2.0, 'read': 1.0, 'little': 1.0, 'take': 1.0, 'done': 1.0, 'get': 1.0, 'difficult': 1.0, 'hours': 1.0, 'break': 1.0, 'feed': 2.0, 'within': 1.0, 'be': 1.0, 'needed': 1.0, 'mom': 1.0, 'to': 5.0, 'our': 4.0, 'were': 2.0, 'the': 3.0, 'first': 2.0, 'are': 1.0, 'reject': 1.0, 'how': 1.0, 'only': 1.0, 'do': 1.0, 'nursin': 1.0, 'and': 3.0, 'doesn': 1.0, 'your': 1.0, 'one': 1.0, 'for': 2.0, 'three': 1.0, 'is': 2.0, 'justify': 1.0, 't': 1.0, 's': 1.0, 'a': 3.0, 'we': 2.0, 'anything': 1.0, 'making': 1.0, 'other': 1.0, '20': 1.0, 'worth': 1.0, 'or': 1.0, 'fourth': 1.0, 'baby': 4.0, 'because': 1.0, 'nanny': 1.0, 'innobaby': 1.0, 'last': 1.0, 'tried': 1.0, 'mommy': 1.0, 'always': 2.0, 'spoiling': 1.0, 'desperate': 1.0, 'time': 1.0, 'bottle': 3.0, 'so': 1.0, 'you': 2.0, 'when': 1.0, 'two': 1.0, '4': 1.0, 'ready': 2.0, 'year': 1.0, 'old': 1.0, 'it': 3.0, 'month': 1.0, 'rejected': 1.0, 'really': 1.0, 'every': 1.0, 'that': 1.0, 'breastfeeding': 1.0, 'babies': 1.0, 'used': 1.0}
Word element => {'flow': 1.0, 'more': 1.0, 'is': 1.0, 'that': 1.0, 'beware': 1.0, 'just': 1.0, 'but': 1.0, 'some': 1.0, 'a': 1.0, 'might': 1.0, 'back': 1.0, 'anything': 1.0, 'hear': 1.0, 'stage': 1.0, 'ounce': 1.0, 'nipple': 2.0, 'the': 2.0, 'thinking': 1.0, 'for': 2.0, 'even': 1.0, 'be': 2.0, 'one': 1.0, 'bought': 1.0, 'states': 1.0, 'though': 1.0, 'choked': 1.0, 'perfect': 1.0, 'this': 2.0, 'it': 4.0, 'bottle': 2.0, 'little': 2.0, 'on': 2.0, 'waste': 1.0, 'breast': 1.0, 'websites': 1.0, 'many': 1.0, 'after': 1.0, 'flowing': 1.0, 'would': 1.0, 'due': 1.0, 'contacted': 1.0, 'have': 1.0, 'our': 2.0, 'to': 4.0, 'fast': 2.0, 'and': 1.0, 'reviewing': 1.0, 'milk': 2.0, 'not': 2.0, '1': 1.0, 'mention': 1.0, 'yet': 1.0, 'seller': 1.0, 'caused': 1.0, 'us': 2.0, 'girl': 1.0, 'almost': 1.0, 'an': 1.0, 'of': 1.0, 'about': 1.0, 'problem': 1.0}
Word element => {'if': 1.0, 'up': 1.0, 'put': 1.0, 'take': 1.0, 'couldn': 1.0, 'born': 1.0, 'regular': 1.0, 'who': 1.0, 'daughter': 1.0, 'about': 1.0, 'and': 4.0, 'lip': 1.0, 'problem': 1.0, '4': 1.0, 'around': 1.0, 'more': 1.0, 'baby': 1.0, 'have': 4.0, 'wide': 1.0, 'for': 3.0, 'actually': 1.0, 'stars': 1.0, 'big': 1.0, 'was': 3.0, 'but': 2.0, '2': 1.0, 'took': 1.0, 'loved': 1.0, 'spoon': 1.0, 'just': 2.0, 'way': 1.0, 'huge': 1.0, 'too': 3.0, 'one': 1.0, 'x': 1.0, 'make': 1.0, 'probably': 1.0, 'any': 2.0, 'idea': 1.0, 'you': 1.0, 'am': 2.0, 'be': 1.0, 'giving': 1.0, 'weeks': 1.0, 'would': 3.0, 'issues': 1.0, 'size': 3.0, 'so': 1.0, 'smaller': 1.0, 'ago': 1.0, 't': 2.0, 'small': 1.0, 'confusion': 2.0, 'a': 3.0, 'didn': 1.0, 'hole': 1.0, 'believe': 1.0, 'useless': 1.0, 'him': 1.0, 'it': 8.0, 'my': 4.0, 'tried': 1.0, 'b': 1.0, 'with': 4.0, 'cleft': 1.0, 'this': 4.0, 'wish': 1.0, 'using': 1.0, 'squeeze': 2.0, 'in': 1.0, 'newborn': 1.0, 'out': 2.0, 'the': 7.0, 'of': 3.0, 'there': 1.0, 'nipple': 4.0, 'feeder': 1.0, 'liquids': 1.0, 'only': 1.0, 'has': 1.0, 'years': 1.0, 'no': 2.0, 'let': 1.0, 'liquid': 1.0, 'to': 5.0, 'pretty': 1.0, 'hard': 2.0, 'get': 1.0, 'sure': 1.0, 'anything': 1.0, 'is': 4.0, 'at': 1.0, 'love': 1.0, 'solid': 1.0, 'all': 1.0, 'an': 1.0, 'foods': 1.0, 'i': 11.0, 'fast': 1.0, 'flow': 1.0, 'type': 2.0, 'had': 3.0, 'not': 1.0, 'opinion': 1.0, '100': 1.0, 'they': 2.0, 'cut': 1.0, 'deep': 1.0, 'because': 1.0, 'that': 1.0, 'made': 1.0, 'manageable': 1.0, 'known': 1.0}
Word element => {'avoid': 1.0, 'to': 1.0, 'high': 1.0, 'false': 1.0, 'a': 1.0, 'have': 1.0, 'should': 1.0, 'temperatures': 1.0, 'the': 5.0, 'few': 1.0, 'baby': 2.0, 'isolate': 1.0, 'this': 2.0, 'might': 1.0, 'seconds': 1.0, 'not': 1.0, 'bottom': 1.0, 'up': 1.0, 'warms': 1.0, 'bottle': 3.0, 'i': 1.0, 'does': 1.0, 'liquid': 1.0, 'steel': 1.0, 'and': 2.0, 'temperature': 1.0, 'get': 1.0, 'in': 1.0, 'burned': 1.0, 'holding': 1.0, 'believe': 1.0, 'that': 1.0}
Word element => {'useless': 1.0, 'sitting': 1.0, 'just': 1.0, 'it': 1.0, 'crack': 1.0, 'but': 1.0, 'cute': 1.0, 'how': 1.0, 'cheaper': 1.0, 'bottle': 1.0, 'one': 2.0, 'i': 3.0, 'were': 2.0, 'screw': 1.0, 'as': 1.0, 'was': 1.0, 'look': 1.0, 'they': 3.0, 'careful': 1.0, 'either': 1.0, 'got': 2.0, 'no': 1.0, 'regardless': 1.0, 'there': 1.0, 'of': 1.0, 'collar': 1.0, 'defective': 1.0, 'the': 1.0, 'is': 1.0, 'leaking': 1.0, 'milk': 1.0, 'probably': 1.0, 'a': 1.0}
Word element => {'recommend': 1.0, 'overall': 1.0, 'eliminated': 1.0, 'product': 1.0, 'geographical': 1.0, 'flip': 1.0, 'confusion': 1.0, 'on': 1.0, 'tail': 2.0, 'mouse': 1.0, 'through': 1.0, 're': 1.0, 'you': 1.0, 'as': 2.0, 'tale': 1.0, 'has': 1.0, 'page': 1.0, 'out': 1.0, 'book': 1.0, 'also': 1.0, 'stunning': 1.0, 'in': 1.0, 'i': 3.0, 'side': 1.0, 'clear': 1.0, 'the': 10.0, 'great': 2.0, 'distinction': 1.0, 'of': 2.0, 'tails': 2.0, 'this': 2.0, 'looks': 1.0, 'covers': 1.0, 'it': 3.0, 'with': 1.0, 'spacing': 1.0, 'flipping': 1.0, 'only': 1.0, 'cute': 1.0, 'completely': 1.0, 'is': 4.0, 'left': 1.0, 'animals': 2.0, 'which': 2.0, 'like': 3.0, 'mole': 2.0, 'each': 1.0, 'and': 1.0, 'have': 3.0, 'though': 1.0, 'colors': 1.0, 'that': 2.0, 'fun': 1.0, 'non': 1.0, 'standard': 1.0, 'fact': 1.0, 'often': 1.0, 'generic': 1.0, 'animal': 2.0, 'there': 1.0, 'books': 1.0, 'complaint': 1.0, 'aligned': 1.0, 'so': 1.0, 'pages': 1.0, 'they': 1.0, 'between': 1.0, 's': 2.0, 'could': 2.0, 'a': 1.0, 'textures': 1.0, 'little': 1.0, 'better': 1.0}
Word element => {'ideas': 1.0, 'yourself': 1.0, 'maybe': 1.0, 'great': 1.0, 'stories': 1.0, 'room': 1.0, 'person': 1.0, 'even': 1.0, 'my': 1.0, 'and': 3.0, 'or': 1.0, 'ava': 1.0, 'her': 1.0, 'good': 1.0, 'one': 1.0, 'art': 1.0, 'for': 3.0, 'i': 3.0, 's': 2.0, 'a': 2.0, 'customized': 1.0, 'well': 1.0, 'needed': 1.0, 'check': 1.0, 'changed': 1.0, 'it': 1.0, 'looks': 1.0, 'special': 1.0, 'gift': 2.0, 'daughter': 1.0, 'website': 1.0, 'the': 3.0, 'more': 2.0, 'quickly': 1.0, 'to': 1.0, 'was': 2.0, 'friend': 1.0, 'an': 1.0, 'this': 1.0, 'perfect': 1.0, 'in': 1.0, 'really': 2.0, 'amazing': 1.0, 'g': 1.0, 'came': 1.0, 'packaged': 1.0, 'order': 1.0, 'new': 1.0, 'would': 1.0, 'again': 1.0, 'out': 1.0, 'piece': 1.0, 'artists': 1.0, 'short': 1.0}
Word element => {'portable': 1.0, 'that': 1.0, 'little': 1.0, 'glad': 1.0, 'childhood': 1.0, 'in': 1.0, 'a': 1.0, 'to': 2.0, 'm': 1.0, 'going': 1.0, 's': 2.0, 'if': 1.0, 'and': 2.0, 'best': 1.0, 'i': 2.0, 'one': 1.0, 'for': 1.0, 'kingdom': 1.0, 'size': 1.0, 'animal': 1.0, 'blankies': 1.0, 'dear': 1.0, 'these': 1.0, 'the': 2.0, 'are': 2.0, 'angel': 1.0, 'entire': 1.0, 'they': 1.0, 'loves': 1.0, 'blankie': 1.0, 'he': 3.0, 'them': 1.0, 'pack': 1.0, 'likes': 1.0, 'have': 2.0, 'all': 1.0, 'soft': 1.0, 'cute': 1.0, 'easy': 1.0, 'snuggly': 1.0, 'his': 1.0, 'part': 1.0, 'is': 1.0}
Word element => {'younger': 1.0, 'month': 1.0, 'will': 1.0, 'discontinued': 1.0, 'especially': 1.0, 'gets': 1.0, 'back': 1.0, 'breathable': 1.0, 'buying': 1.0, 'carpet': 1.0, 'upholstry': 1.0, 'using': 1.0, 'actually': 1.0, 'impossible': 1.0, 'washable': 1.0, 'cover': 1.0, 'about': 1.0, 'only': 1.0, 'both': 1.0, 'quest': 1.0, 'nissan': 1.0, 'perfectly': 1.0, 'fit': 1.0, 'knob': 1.0, 'possible': 1.0, 'facing': 2.0, 'middle': 1.0, 'rear': 3.0, 'be': 3.0, 'keep': 1.0, 'but': 3.0, 'machine': 1.0, '2': 2.0, 'infant': 1.0, 'clean': 1.0, 'car': 2.0, 'deciding': 1.0, 'son': 3.0, 'height': 1.0, 's': 1.0, 'cleaner': 1.0, 'van': 1.0, 'like': 2.0, 'researched': 1.0, 'before': 1.0, 'attachment': 1.0, 'room': 1.0, 'his': 1.0, 'year': 1.0, 'almost': 1.0, 'forward': 1.0, 'not': 4.0, 'as': 3.0, 'to': 6.0, 'our': 5.0, 'we': 4.0, 'then': 1.0, 'and': 5.0, 'find': 1.0, '1': 2.0, 'summer3': 1.0, 'until': 1.0, 'feel': 1.0, 'proride': 1.0, 'this': 4.0, 'fabric': 1.0, 'for': 5.0, 'he': 6.0, 'yet': 1.0, 'love': 1.0, 'new': 1.0, 'impact': 2.0, 'pounds': 1.0, 'months': 1.0, 'long': 1.0, 'on': 2.0, 'grows': 1.0, 'was': 2.0, 'store': 1.0, 'warm': 1.0, 'had': 2.0, 'old': 2.0, 'buy': 1.0, 'hit': 1.0, 'which': 1.0, 'side': 2.0, 'wanted': 2.0, 'protection': 2.0, 'have': 2.0, 'a': 3.0, 'small': 1.0, 'mini': 1.0, 'protected': 1.0, 'would': 1.0, 'seat': 8.0, 'in': 5.0, 'remove': 1.0, 'recaro': 2.0, 'after': 1.0, 'seeing': 1.0, 'are': 1.0, 'britax': 1.0, 'face': 1.0, 'nearly': 1.0, 'decided': 1.0, 'move': 1.0, 'never': 1.0, 'complaints': 1.0, 'able': 1.0, 'regretted': 1.0, 'because': 1.0, '20': 1.0, 'that': 2.0, 'sons': 1.0, 'been': 2.0, 'decision': 1.0, 'my': 3.0, 'with': 2.0, 'plenty': 1.0, 'the': 12.0, 'of': 3.0, 'limit': 1.0, 'years': 1.0, 'i': 7.0, 'well': 1.0, 'has': 1.0, 'always': 1.0, 'twist': 1.0, 'very': 3.0, 'is': 4.0, 'head': 1.0, 'adjustable': 1.0, 'can': 1.0, 'so': 1.0, 'him': 1.0, 'it': 2.0, 'seats': 1.0, 'just': 1.0}
Word element => {'quality': 1.0, 'poor': 1.0, 'way': 1.0, 'paid': 1.0, 'great': 1.0, 'have': 1.0, 'would': 1.0, 'safer': 1.0, 'designed': 1.0, 'if': 1.0, 'put': 1.0, 'months': 1.0, 'much': 1.0, 'wheel': 1.0, 'together': 1.0, 'was': 2.0, 'look': 1.0, 'had': 1.0, 'use': 2.0, 'loved': 1.0, 'purchase': 1.0, 'future': 1.0, 'further': 1.0, 'pad': 1.0, 'off': 1.0, 'i': 3.0, 'it': 8.0, 'pain': 1.0, 'this': 1.0, 'converted': 1.0, 'before': 1.0, 'w': 1.0, 'to': 4.0, 'as': 1.0, 'read': 1.0, 'very': 2.0, 'and': 3.0, 'a': 1.0, 't': 1.0, '2': 1.0, 'for': 4.0, 'broke': 1.0, 'although': 1.0, 'been': 1.0, 'that': 1.0, 'box': 1.0, 'like': 1.0, 'is': 1.0, 'so': 1.0, 'the': 3.0, 'careful': 1.0, 'after': 1.0, 'toy': 1.0, 'comfort': 1.0, 'didn': 1.0, 'add': 1.0, 'roll': 1.0, 'better': 1.0, 'should': 1.0, 'of': 1.0}
Word element => {'to': 1.0, 'my': 1.0, 'months': 1.0, '5': 1.0, 'took': 1.0, 'wanted': 1.0, 'only': 1.0, 'it': 2.0, 'decide': 1.0, 'loves': 1.0, 'this': 1.0, 'bassinet': 2.0, 'which': 1.0, 'for': 1.0, 'our': 1.0, 'granddaughter': 2.0, 'got': 1.0, 'expecting': 1.0, 'lol': 1.0, 'child': 1.0, 'her': 1.0, 'she': 2.0, '1st': 1.0}
Word element => {'shipping': 1.0, 'no': 1.0, 'quick': 1.0, 'price': 1.0, 'costs': 1.0, 'with': 1.0, 'is': 1.0, 'the': 2.0, 'new': 1.0, 'herself': 1.0, 'shipped': 1.0, 'she': 1.0, 'mother': 1.0, 'product': 1.0, 'to': 1.0, 'be': 1.0, 'beautiful': 1.0, 'assembled': 1.0, 'was': 1.0, 'claims': 1.0, 'great': 1.0, 'it': 1.0}
Word element => {'qc': 1.0, 'sadly': 1.0, 'looks': 1.0, 'its': 1.0, 'given': 1.0, 've': 1.0, 'could': 1.0, 'excellent': 1.0, 'really': 1.0, 'distributed': 1.0, 'made': 1.0, 'even': 1.0, 'inspection': 1.0, 'lack': 1.0, 'due': 1.0, 'bit': 1.0, 'place': 2.0, 'from': 1.0, 'though': 1.0, 'part': 1.0, 'again': 1.0, 'china': 1.0, 'for': 3.0, 'expensive': 1.0, 'cheap': 1.0, 'but': 2.0, 'opening': 1.0, 'towards': 1.0, 'bottome': 1.0, 'deceiving': 1.0, 'a': 6.0, 'card': 1.0, 'picture': 1.0, 'would': 1.0, 'cost': 1.0, 'basket': 3.0, 'that': 1.0, 'totally': 1.0, 'not': 2.0, 'difficult': 1.0, 'materials': 1.0, 'assemble': 1.0, 'assembly': 1.0, 'all': 1.0, 'considering': 1.0, 'do': 1.0, 'much': 1.0, 'each': 1.0, 'end': 1.0, 'flimsy': 1.0, 'probably': 1.0, 'was': 2.0, 'had': 1.0, 'one': 1.0, 'by': 2.0, 'buy': 1.0, 'looking': 1.0, 'i': 4.0, 'becomes': 1.0, 'overpriced': 1.0, 'credit': 1.0, 'if': 1.0, 'company': 1.0, 'only': 1.0, 'purchase': 1.0, 'can': 1.0, 'so': 1.0, 'lightweight': 1.0, 'you': 1.0, 'able': 1.0, 'starts': 1.0, 'useless': 1.0, 'functional': 1.0, 'mattress': 1.0, 'been': 1.0, 'amazon': 1.0, 'pros': 1.0, 'discount': 1.0, 'at': 1.0, 'is': 8.0, 'it': 3.0, 'hardware': 1.0, 'used': 2.0, 'nice': 1.0, 'lacking': 1.0, '1': 1.0, 'to': 7.0, 'bassinet': 4.0, 'need': 1.0, 'did': 1.0, 'tacky': 1.0, 'reorder': 1.0, 'very': 1.0, 'over': 1.0, 'efficient': 1.0, 'entirely': 1.0, 'and': 5.0, 'carry': 1.0, 'cons': 1.0, 'control': 1.0, 'somewhat': 1.0, 'mesh': 1.0, 'material': 1.0, 'wisconsin': 1.0, 'the': 10.0, 'of': 3.0, 'quality': 2.0, 'wheels': 1.0, 'roll': 1.0, 'final': 1.0, 'product': 4.0, 'price': 1.0, 'should': 1.0, 'be': 1.0, 'this': 2.0, 'thicker': 1.0, 'item': 1.0, 'disappointed': 1.0, 'in': 2.0, 'quick': 2.0, 'poor': 2.0, 'design': 2.0, 'note': 1.0, 'out': 1.0}
Word element => {'toy': 1.0, 'about': 1.0, 't': 1.0, 'doesn': 1.0, 'bottom': 1.0, 'he': 1.0, 'care': 1.0, 'like': 1.0, 'between': 1.0, 'two': 1.0, 'an': 1.0, 'a': 4.0, 'next': 1.0, 'opened': 1.0, 'physical': 1.0, 'as': 5.0, 'reuse': 1.0, 'sleep': 1.0, 'together': 3.0, 'wheels': 1.0, 'inch': 1.0, 'white': 1.0, 'base': 1.0, 'to': 8.0, 'bassinet': 1.0, 'or': 1.0, 'need': 1.0, 'batiste': 1.0, 'badger': 1.0, '4': 1.0, 'i': 7.0, 'complicated': 1.0, 'with': 1.0, 'n': 1.0, 'not': 1.0, 'there': 1.0, 'soon': 1.0, 'and': 8.0, 'ably': 1.0, 'want': 2.0, 'later': 1.0, 'being': 1.0, 'still': 3.0, 'if': 2.0, 'pieces': 1.0, 'company': 1.0, 'my': 4.0, 'fact': 1.0, 'having': 1.0, 'cradle': 2.0, 'yesterday': 1.0, 'be': 3.0, 'rock': 1.0, 'we': 1.0, 'then': 1.0, 'toybox': 1.0, 'handy': 1.0, 'baby': 2.0, 'screws': 1.0, 'portable': 1.0, '3': 1.0, 'nuts': 1.0, 'noticed': 1.0, 'on': 2.0, 'loose': 1.0, 'out': 1.0, 'am': 2.0, 'miss': 1.0, 'you': 2.0, 'while': 1.0, 'matter': 1.0, 'bed': 2.0, 'the': 11.0, 'of': 1.0, 'figured': 1.0, 'how': 1.0, 'hardware': 1.0, 'him': 2.0, 'it': 3.0, 'which': 1.0, 'was': 2.0, 'will': 2.0, 'easiest': 1.0, 'items': 1.0, '2': 1.0, 'thing': 1.0, 'put': 3.0, 'floor': 2.0, 'do': 1.0, 'quite': 2.0, 'grease': 1.0, 'before': 1.0, 'this': 1.0, 'basket': 4.0, 'needs': 1.0, 'some': 1.0, 'elbow': 1.0, 'plain': 1.0, 'first': 1.0, 'lock': 1.0, 'box': 2.0, 'strengths': 1.0, 'use': 1.0, 'up': 1.0, 'mesh': 1.0, 'in': 2.0, 'lies': 1.0, 'll': 1.0, 'right': 1.0, 'weeks': 1.0, 'would': 1.0, 'happy': 1.0, 'one': 1.0, 'lot': 1.0, 'think': 1.0, 'better': 1.0}
Word element => {'disappointment': 1.0, 'complaint': 1.0, 'bottom': 1.0, 'collapse': 1.0, 'finished': 1.0, 'around': 2.0, 'you': 2.0, 'causing': 1.0, 'nice': 1.0, 'easy': 1.0, 'don': 2.0, 'assembly': 1.0, 'real': 1.0, 'cradle': 1.0, 'storage': 1.0, 'buying': 1.0, 'carpet': 1.0, 'alone': 1.0, 'it': 4.0, 'white': 1.0, 'on': 4.0, 'located': 1.0, 'portable': 1.0, 'trying': 1.0, 'putting': 1.0, 'i': 2.0, 'looks': 2.0, 'my': 1.0, 'purchase': 1.0, 'company': 1.0, 'recommend': 1.0, 'were': 1.0, 'unfortunatly': 1.0, 'and': 3.0, 'toybox': 1.0, 'sometimes': 1.0, 'is': 3.0, 'at': 1.0, 'no': 2.0, 'rest': 1.0, 't': 2.0, 'a': 2.0, 's': 1.0, 'the': 9.0, 'of': 3.0, 'there': 1.0, 'net': 1.0, 'badger': 1.0, 'batiste': 1.0, 'next': 1.0, 'easily': 1.0, 'that': 1.0, 'because': 2.0, 'purchased': 1.0, 'ground': 1.0, 'with': 3.0, 'n': 1.0, 'not': 1.0, 'this': 2.0, 'item': 2.0, 'will': 2.0, 'anything': 1.0, 'other': 1.0, 'in': 2.0, 'sideways': 1.0, 'turn': 1.0, 'if': 2.0, 'reviews': 1.0, 'moving': 1.0, 'design': 1.0, 'just': 1.0, 'drag': 1.0, 'your': 1.0, 'any': 1.0, 'bassinet': 6.0, 'to': 4.0, 'weight': 1.0, 'description': 1.0, 'wheels': 3.0, 'stiff': 1.0, 'really': 1.0, 'are': 2.0, 'first': 1.0, 'bad': 1.0, 'when': 2.0, 'roll': 1.0, 'very': 1.0, 'move': 1.0, 'base': 1.0, 'even': 1.0, 'basket': 1.0, 'worse': 1.0, 'try': 1.0, 'one': 2.0, 'bother': 1.0, 'tip': 1.0, 'plan': 1.0, 'side': 1.0, 'have': 1.0, 'issues': 1.0, 'but': 1.0, 'would': 1.0}
Word element => {'assemble': 1.0, 'to': 1.0, 'hard': 1.0, 'little': 1.0, 'a': 1.0, 'but': 1.0, 'beautiful': 1.0}
Word element => {'star': 1.0, 'deserve': 1.0, 'even': 1.0, 'does': 1.0, 'worth': 1.0, 'line': 1.0, 'money': 1.0, 'don': 1.0, 'fit': 1.0, 'the': 4.0, 't': 1.0, 'made': 1.0, 'screws': 1.0, 'well': 1.0, 'q': 1.0, 'pieces': 1.0, 'with': 1.0, 'poor': 1.0, 'junk': 1.0, 'c': 1.0, 'no': 1.0, 'not': 2.0, 'total': 1.0, 'of': 1.0, 'up': 1.0, '1': 1.0, 'and': 1.0, 'very': 1.0, 'strip': 1.0, 'nuts': 1.0, 'easily': 1.0, 'cheaply': 1.0}
Word element => {'new': 1.0, 'top': 1.0, 'ranks': 1.0, 'anywhere': 1.0, 'never': 1.0, 'without': 1.0, 'soft': 1.0, 'different': 1.0, 'washing': 1.0, 'keep': 1.0, 'definitely': 1.0, 'football': 1.0, 'feed': 1.0, 'enough': 1.0, 'wraps': 1.0, 'walk': 1.0, 'tight': 1.0, 'hold': 2.0, 'up': 1.0, 'room': 1.0, 'other': 1.0, 'on': 5.0, 'come': 2.0, 'phone': 1.0, 'cell': 1.0, 'forgot': 1.0, 'everything': 1.0, 'have': 2.0, 'then': 1.0, 'too': 1.0, 'side': 3.0, 'which': 2.0, 'than': 2.0, 'child': 1.0, 'boppy': 1.0, 'materials': 1.0, 'for': 4.0, 'support': 2.0, 'flat': 1.0, 'cloths': 2.0, 'remote': 1.0, 'stronger': 2.0, 'really': 2.0, 'has': 4.0, 'many': 1.0, 'baby': 6.0, 'life': 1.0, 'just': 2.0, 'by': 1.0, 'saved': 1.0, 'i': 4.0, 'off': 3.0, 'little': 1.0, 'gets': 1.0, 'when': 1.0, 'covers': 1.0, 'oy': 1.0, 'house': 1.0, 'holding': 1.0, 'can': 1.0, 'so': 3.0, 'bit': 1.0, 'basically': 1.0, 'three': 1.0, 'wrap': 1.0, 'useless': 1.0, 'it': 8.0, 'truly': 1.0, 'my': 6.0, 'went': 1.0, 'woman': 1.0, 'worse': 1.0, 'colors': 1.0, 'start': 1.0, 'a': 11.0, 'stand': 1.0, 'turned': 1.0, 'was': 2.0, 'fit': 1.0, 't': 1.0, 'belt': 1.0, 'must': 1.0, 'doesn': 1.0, 'ok': 1.0, 'shaped': 1.0, 'brand': 1.0, 'the': 9.0, 'of': 3.0, 'is': 2.0, 'around': 3.0, 'this': 4.0, 'pillow': 7.0, 'etc': 2.0, 'control': 1.0, 'front': 1.0, 'mean': 1.0, 'there': 1.0, 'burp': 2.0, 'things': 1.0, 'you': 5.0, 'brest': 1.0, 'but': 1.0, 'friend': 1.0, 'shift': 1.0, 'pockets': 1.0, 'allows': 1.0, 'with': 6.0, 'age': 1.0, 'in': 6.0, 'means': 1.0, 'and': 7.0, 'arms': 1.0, 'neck': 1.0, 'or': 2.0, 'dining': 1.0, 'back': 1.0, 'system': 1.0, 'size': 1.0, 'nothing': 1.0, 'adjustable': 1.0, 'to': 5.0, 'name': 1.0, 'your': 8.0, 'mom': 2.0, 'any': 1.0, 'almost': 1.0, 'move': 2.0, 'textures': 1.0, 'while': 1.0, 'are': 1.0, 'feeding': 2.0, 'getting': 1.0, 'settled': 1.0, 'easily': 1.0, 'because': 1.0, 'that': 4.0, 'fall': 1.0, 'breast': 2.0, 'breastfeeding': 1.0, 'pumping': 1.0, 'funny': 1.0, 's': 2.0, 'session': 1.0}
Word element => {'well': 1.0, 'as': 1.0, 'others': 1.0, 'than': 1.0, 'is': 1.0, 'my': 1.0, 'got': 1.0, 'i': 2.0, 'everybody': 1.0, 'nursing': 2.0, 'shape': 1.0, 'and': 2.0, 'better': 1.0, 'recommended': 2.0, 'difficulties': 1.0, 'lactation': 1.0, 'which': 1.0, 'much': 1.0, 'hight': 1.0, 'other': 1.0, 'this': 1.0, 'first': 1.0, 'pillow': 1.0, 'weeks': 1.0, 'pillows': 1.0, 'specialist': 1.0, 'had': 2.0, 'its': 1.0, 'the': 4.0, '2': 1.0, 'great': 1.0}
Word element => {'friends': 2.0, 'recommending': 1.0, 'be': 1.0, 'definitely': 1.0, 'continue': 1.0, 'sure': 1.0, 'am': 1.0, 'used': 1.0, 'set': 1.0, 'other': 1.0, 'all': 2.0, 'to': 2.0, 'than': 2.0, 'expectations': 1.0, 'is': 5.0, 'more': 2.0, 'expectant': 1.0, 'around': 1.0, 'comes': 1.0, 'some': 1.0, 'cloths': 1.0, 'support': 1.0, 'have': 2.0, 'and': 7.0, 'away': 1.0, 'has': 1.0, 'then': 1.0, 'burp': 1.0, 'there': 1.0, 'pillow': 4.0, 'friend': 1.0, 'feeding': 2.0, 'soft': 1.0, 'mattress': 1.0, 'start': 1.0, 'use': 1.0, 'fact': 1.0, 'wonderful': 1.0, 'front': 1.0, 'phone': 1.0, 'much': 1.0, 'feels': 1.0, 'from': 1.0, 'when': 1.0, 'cell': 1.0, 'well': 1.0, 'i': 8.0, 'no': 1.0, 'conveniently': 1.0, 'so': 5.0, 'got': 1.0, 'you': 1.0, 'brest': 1.0, 'mom': 2.0, 'any': 1.0, 'your': 2.0, 'was': 1.0, 'far': 2.0, 'love': 2.0, 'for': 1.0, 'excited': 1.0, 'using': 1.0, 'as': 1.0, 'body': 1.0, 'blown': 1.0, 'like': 1.0, 'a': 4.0, 'might': 1.0, 'hooks': 1.0, 'it': 6.0, 'received': 1.0, 'also': 2.0, 'the': 9.0, 'of': 3.0, 'necessary': 1.0, 'breast': 2.0, 'that': 3.0, 'positions': 1.0, 'pillows': 1.0, 'elevates': 1.0, 'baby': 2.0, 'behind': 1.0, 'uncomfortable': 1.0, 'my': 4.0, 'me': 1.0, 'will': 2.0, 'genius': 1.0, 'makes': 1.0, 'little': 1.0, 'pocket': 1.0, 'in': 1.0, 'less': 1.0, 'water': 1.0, 'only': 1.0, 'straining': 1.0, 'whatever': 1.0, 'best': 1.0, 'or': 3.0, 'need': 1.0, 'cover': 1.0, 'off': 1.0, 'holds': 1.0, 'washable': 1.0, 'had': 1.0, 'back': 2.0, 'most': 1.0, 'comfortable': 3.0, 'experience': 1.0}
Word element => {'comfortable': 1.0, 'and': 1.0, 'love': 1.0, 'handy': 1.0, 'it': 1.0, 'i': 1.0, 'very': 1.0}
Word element => {'extra': 1.0, 'keyboard': 1.0, 'bangs': 1.0, 'he': 2.0, 'laughs': 1.0, 'also': 1.0, 'likes': 1.0, 'has': 1.0, 'son': 1.0, 'enjoys': 2.0, 'steal': 1.0, 'real': 1.0, '20': 1.0, 'roughly': 1.0, 'sells': 1.0, 'than': 2.0, 'compact': 1.0, 'slightly': 1.0, 'was': 1.0, 'me': 1.0, 'apartment': 1.0, 'else': 1.0, 'competitors': 3.0, 'is': 3.0, 'more': 2.0, 'living': 1.0, 'do': 1.0, 'the': 8.0, 'of': 2.0, 'saying': 1.0, 'in': 1.0, 'a': 2.0, 't': 2.0, 's': 3.0, 'i': 6.0, 'when': 1.0, 'you': 2.0, 'am': 1.0, 'makes': 2.0, 'critical': 1.0, 'brand': 1.0, 'highly': 1.0, 'cheaper': 1.0, 'don': 1.0, 'model': 1.0, 'kind': 1.0, 'too': 2.0, 'sold': 1.0, 'and': 4.0, 'soon': 1.0, '15': 1.0, 'toys': 4.0, 'fell': 1.0, 'it': 8.0, 'buying': 1.0, 'with': 3.0, 'perfect': 1.0, 'this': 3.0, 'where': 1.0, 'expensive': 1.0, 'product': 1.0, 'love': 2.0, 'for': 3.0, 'premium': 1.0, 'saw': 1.0, 'things': 1.0, 'something': 2.0, 'new': 1.0, 'at': 1.0, 'space': 1.0, 'since': 1.0, 'that': 6.0, 'babies': 1.0, 'as': 2.0, 'all': 1.0, 'use': 1.0, 'them': 1.0, 'thoroughly': 1.0, 'which': 2.0, 'like': 1.0, 'long': 1.0, 'came': 2.0, 'absolutely': 1.0, 'my': 1.0, 'fact': 3.0, 'can': 2.0, 'these': 1.0, 'add': 2.0, 'on': 2.0, 'your': 1.0, 'finally': 1.0, 'own': 1.0}
Word element => {'very': 1.0, 'quickly': 1.0, 'pleased': 1.0, 'came': 1.0, 'the': 1.0, 'my': 1.0, 'granddaughter': 1.0, 'entertain': 1.0, 'loves': 1.0, 'this': 1.0, 'herself': 1.0, 'she': 1.0, 'attachments': 1.0, 'all': 1.0, 'great': 1.0, 'can': 1.0, 'with': 1.0, 'of': 1.0}
Word element => {'jump': 1.0, 'being': 1.0, 'issues': 1.0, 'had': 1.0, 'haven': 1.0, 'there': 1.0, 'hours': 1.0, 'dangling': 1.0, 'link': 1.0, 'don': 1.0, 'over': 1.0, 'toys': 1.0, 'tricked': 1.0, 'move': 1.0, 'face': 1.0, 'with': 3.0, 'noise': 1.0, 'setting': 1.0, 'have': 3.0, 'in': 2.0, 'crazy': 1.0, 'from': 2.0, 'links': 1.0, 'teething': 1.0, 'borrow': 1.0, 'fine': 1.0, 'any': 1.0, 'all': 1.0, 'to': 4.0, 'stiff': 1.0, 'daughter': 1.0, 'by': 1.0, 'just': 2.0, 'were': 1.0, 'member': 1.0, 'did': 1.0, 'glad': 1.0, 'chance': 1.0, 'or': 1.0, 'spends': 1.0, 'yet': 1.0, 'i': 4.0, 'one': 1.0, 'bought': 1.0, 'flower': 1.0, 'floor': 1.0, 'moves': 1.0, 'pillow': 1.0, 'too': 2.0, 'and': 5.0, 'so': 2.0, 'when': 1.0, 'piano': 1.0, 'am': 1.0, 'bars': 1.0, 'extra': 1.0, 'clearance': 1.0, 'super': 1.0, 'this': 1.0, 'loves': 3.0, 'it': 6.0, 'she': 7.0, '16': 1.0, 'attached': 1.0, 'weeks': 1.0, 'make': 1.0, 'on': 2.0, 'put': 1.0, 'for': 2.0, 'lights': 1.0, 'jumps': 2.0, 'can': 1.0, 'out': 1.0, 'feet': 1.0, 'going': 1.0, 'we': 4.0, 'a': 3.0, 's': 1.0, 't': 3.0, 'reach': 1.0, 'the': 7.0, 'family': 1.0, 'my': 1.0, 'underneath': 1.0, 'her': 3.0, 'does': 1.0, 'like': 1.0}
Word element => {'keep': 1.0, 'sure': 1.0, 'make': 1.0, 'be': 1.0, 'you': 2.0, 'annoyed': 1.0, 'will': 1.0, 'doesn': 1.0, 'and': 5.0, 'end': 1.0, 'cause': 3.0, 'no': 1.0, 'things': 1.0, 'effect': 3.0, 'teach': 2.0, 'looks': 1.0, 'basement': 1.0, 'of': 3.0, 'over': 1.0, 't': 1.0, 'control': 1.0, 'the': 4.0, 'exploded': 1.0, 'certainly': 1.0, 'lot': 1.0, 'a': 3.0, 'like': 2.0, 'clown': 1.0, 'all': 1.0, 'this': 1.0, 'noises': 1.0, 'it': 3.0, 'kid': 1.0, 'can': 1.0, 'ufo': 1.0, 'that': 1.0, 'in': 1.0, 'also': 1.0, 'ridiculous': 1.0, 'makes': 1.0, 'your': 2.0, 'them': 2.0, 'child': 1.0, 'frame': 1.0, 'to': 2.0}
Word element => {'range': 1.0, '100': 1.0, 'were': 1.0, 'since': 1.0, 'price': 1.0, 'around': 2.0, 'way': 1.0, 'all': 1.0, 'herself': 1.0, 'activity': 1.0, 'daughter': 1.0, 'my': 1.0, 'purchase': 1.0, 'chose': 1.0, 'after': 1.0, 'loving': 2.0, 'plunge': 1.0, 'place': 1.0, 'month': 1.0, 'it': 3.0, 'pretty': 2.0, 'to': 3.0, 'as': 3.0, 'review': 2.0, 'has': 2.0, 'is': 1.0, 'level': 1.0, 'amazon': 1.0, 'her': 2.0, 'use': 1.0, '6': 1.0, 'reading': 1.0, 'like': 1.0, 'good': 1.0, 'which': 1.0, 'center': 1.0, 'from': 1.0, 'a': 3.0, 't': 1.0, 'bright': 2.0, 'considered': 1.0, 'jumper': 3.0, 'writing': 1.0, 'and': 8.0, 'new': 1.0, 'tall': 1.0, 'built': 2.0, 'much': 1.0, 'its': 2.0, 'thanks': 1.0, 'this': 4.0, 'unisex': 1.0, 'great': 2.0, 'most': 1.0, 'making': 1.0, 'anything': 1.0, 'old': 1.0, 'well': 3.0, 'i': 6.0, 'for': 2.0, 'snacks': 1.0, 'love': 1.0, 'im': 2.0, 'd': 1.0, 'glad': 1.0, 'decided': 1.0, 'critters': 1.0, 'independence': 1.0, 'was': 1.0, 'worth': 1.0, 'plenty': 1.0, 'affordable': 1.0, 'penny': 1.0, 'have': 2.0, 'no': 2.0, 'starts': 2.0, 'you': 2.0, 'complaints': 1.0, 'one': 1.0, 'happy': 1.0, 'colors': 1.0, 'cute': 1.0, 'plus': 1.0, 'many': 1.0, 'baby': 2.0, 'just': 3.0, 'long': 1.0, 'on': 1.0, 'your': 1.0, 'second': 1.0, 'the': 8.0, 'of': 2.0, 'isn': 1.0, 'missing': 1.0, 'nice': 1.0, 'little': 1.0, 'area': 1.0, '00': 1.0, 'so': 4.0, 'shes': 1.0, 'can': 1.0, 'enjoy': 1.0, 'every': 1.0, 'if': 1.0, 'places': 1.0, 'attach': 1.0, 'dollar': 1.0, 'own': 1.0, 'toys': 1.0, 'problem': 1.0, 'take': 1.0, 'moving': 1.0}
Word element => {'aggravation': 1.0, 'you': 1.0, 'be': 1.0, 'want': 1.0, 'apart': 1.0, 's': 2.0, 'going': 1.0, 'more': 2.0, 'is': 1.0, 'has': 3.0, 'yard': 1.0, 'my': 2.0, 'another': 1.0, 'save': 1.0, 'friend': 1.0, 'on': 3.0, 'hang': 1.0, 'decided': 1.0, 'for': 1.0, 't': 3.0, 'fit': 1.0, 'and': 5.0, 'play': 1.0, 'hassle': 1.0, 'drilled': 1.0, 'do': 1.0, 'dollars': 1.0, 'jumper': 1.0, 'with': 1.0, 'he': 3.0, 'plastic': 1.0, 'a': 4.0, 'fiddling': 1.0, 'purchased': 1.0, 'it': 7.0, 'already': 1.0, 'thought': 1.0, 'well': 1.0, 'i': 7.0, 'old': 1.0, 'fall': 1.0, 'because': 1.0, 'that': 4.0, 'turned': 1.0, 'to': 4.0, 'any': 1.0, 'was': 3.0, 'when': 2.0, 'times': 1.0, 'toys': 2.0, 'son': 1.0, '6mth': 1.0, 'recommend': 1.0, 'together': 1.0, 'from': 1.0, 'don': 1.0, 'up': 1.0, 'screaming': 1.0, 'this': 2.0, 'few': 2.0, 'poor': 1.0, 'get': 1.0, 'no': 1.0, 'cushion': 1.0, 'seat': 1.0, 'in': 2.0, 'his': 2.0, 'head': 2.0, 'overall': 1.0, 'one': 1.0, 'crying': 1.0, 'own': 1.0, 'off': 1.0, 'build': 1.0, 'pieces': 1.0, 'didn': 2.0, 'hit': 1.0, 'base': 1.0, 'even': 1.0, 'metal': 1.0, 'they': 1.0, 'holes': 1.0, 'have': 1.0, 'hard': 1.0, 'pre': 1.0, 'so': 1.0, 'interest': 1.0, 'picked': 1.0, 'would': 2.0, 'something': 1.0, 'not': 1.0, 'spend': 1.0, 'll': 1.0, 'of': 1.0, 'the': 7.0, 'longer': 1.0, 'keep': 1.0, 'quality': 1.0, 'their': 1.0}
Word element => {'first': 1.0, 'over': 1.0, 'just': 1.0, 'frustration': 1.0, 'instructions': 1.0, 'breeze': 1.0, 'super': 2.0, 'at': 1.0, 'space': 1.0, 'are': 1.0, 'the': 3.0, 'more': 1.0, 'happy': 1.0, 're': 1.0, 'time': 1.0, 'so': 1.0, 'it': 3.0, 'this': 1.0, 'have': 1.0, 'save': 1.0, 'may': 1.0, 'my': 1.0, 'hopefully': 1.0, 'one': 1.0, 'you': 2.0, 'try': 1.0, 'do': 1.0, 'and': 3.0, 'lots': 1.0, 'toys': 2.0, 'of': 2.0, 'like': 2.0, 'does': 1.0, 'before': 1.0, 'two': 1.0, 'i': 2.0, 'cute': 1.0, 'really': 2.0, 'sides': 1.0, 'most': 1.0, 'can': 1.0, 'extra': 1.0, 'looking': 1.0, 'be': 1.0, 'hung': 1.0, 'where': 1.0, 'for': 1.0, 'assemble': 1.0, 'adds': 1.0, 'them': 1.0, 'excitement': 1.0, 'all': 1.0, 'to': 4.0, 'easy': 1.0, 'put': 1.0, 'daughter': 1.0, 'together': 1.0, 'if': 1.0}
Word element => {'perfectly': 1.0, 'pillow': 1.0, 'something': 1.0, 'asleep': 1.0, 'where': 1.0, 'time': 1.0, 'or': 1.0, 'friend': 1.0, 'last': 1.0, 'for': 2.0, 'fabric': 2.0, 'when': 2.0, 'wash': 1.0, 'up': 1.0, 'in': 2.0, 'fleece': 2.0, 'be': 1.0, 'son': 3.0, 'seem': 2.0, 'would': 1.0, 'washes': 1.0, 'bought': 2.0, 'months': 1.0, 'backup': 1.0, 'green': 1.0, 'and': 3.0, 'frequently': 2.0, 'could': 1.0, 'a': 5.0, 's': 3.0, 't': 3.0, 'early': 1.0, 'head': 2.0, 'brest': 1.0, 'on': 1.0, 'my': 3.0, 'another': 1.0, 'other': 1.0, 'an': 1.0, 'fits': 1.0, 'any': 1.0, 'wanted': 1.0, 'was': 2.0, 'doesn': 2.0, 'cover': 6.0, 'came': 1.0, 'particularly': 1.0, 'but': 1.0, 'definitely': 1.0, 'without': 1.0, 'days': 1.0, 'soft': 1.0, 'this': 2.0, 'with': 3.0, 'it': 4.0, 'durable': 1.0, 'sweaty': 2.0, 'left': 1.0, 'lighter': 1.0, 'hour': 1.0, 'cooler': 1.0, 'even': 1.0, 'so': 2.0, 'warmer': 1.0, 'i': 4.0, 'coming': 1.0, 'as': 1.0, 'falls': 1.0, 'weight': 1.0, 'haven': 1.0, 'though': 1.0, 'issues': 1.0, 'sturdy': 1.0, 'had': 1.0, 'commented': 1.0, 'getting': 1.0, 'love': 1.0, 'he': 1.0, 'hours': 1.0, 'is': 2.0, 'at': 2.0, 'who': 1.0, 'gotta': 1.0, 'cluster': 1.0, 'to': 2.0, 'feedings': 1.0, 'while': 1.0, 'user': 1.0, 'somewhat': 1.0, 'stiff': 1.0, 'scratchy': 1.0, 'breastfeeding': 1.0, 'bother': 1.0, 'sessions': 2.0, 'end': 1.0, 'the': 12.0, 'of': 1.0, 'nursing': 1.0, 'nice': 1.0}
Word element => {'difficulty': 1.0, 'up': 1.0, 'washed': 1.0, 'and': 1.0, 'without': 1.0, 'the': 1.0, '20': 1.0, '15': 1.0, 'fit': 1.0, 'for': 1.0, 'it': 2.0, 'from': 1.0, 'is': 2.0, 'type': 1.0, 'of': 1.0, 'fabric': 1.0, 'have': 1.0, 'feel': 2.0, 'otherwise': 1.0, 'i': 3.0, 'wasn': 2.0, 'derived': 1.0, 'has': 1.0, 'well': 1.0, 'expected': 1.0, 'time': 1.0, 'against': 1.0, 'that': 2.0, 'cover': 1.0, 'usually': 2.0, 'be': 1.0, 'plush': 1.0, 'minutes': 1.0, 'expecting': 1.0, 'was': 1.0, 'little': 1.0, 'this': 1.0, 'with': 1.0, 'something': 2.0, 'would': 1.0, 'pillow': 1.0, 'an': 1.0, 'since': 2.0, 'option': 1.0, 'at': 2.0, 'to': 1.0, 'least': 1.0, 'scratchy': 1.0, 'm': 1.0, 'glad': 1.0, 'synthetics': 1.0, 'but': 2.0, 'organic': 1.0, 'there': 1.0, 'preferred': 1.0, 'better': 1.0, 'my': 1.0, 'softer': 1.0, 'baby': 1.0, 'a': 4.0, 't': 2.0, 's': 1.0, 'cheek': 1.0, 'resting': 1.0}
Word element => {'for': 1.0, 'twin': 1.0, 'fit': 1.0, 'not': 1.0, 'manufacturer': 1.0, 'however': 1.0, 'that': 2.0, 'cover': 1.0, 'slip': 2.0, 'like': 1.0, 'a': 1.0, 'styles': 1.0, 'look': 1.0, 'great': 1.0, 'the': 3.0, 'we': 1.0, 'claim': 1.0, 'it': 1.0, 'this': 1.0, 'them': 1.0, 'covers': 1.0, 'fits': 1.0, 'nursing': 1.0, 'all': 1.0, 'plus': 1.0, 'of': 1.0, 'bought': 1.0, 'despite': 1.0, 'product': 1.0, 'pillow': 2.0, 'does': 1.0}
Word element => {'minutes': 1.0, 'out': 1.0, 'sacks': 1.0, 'old': 1.0, '5': 1.0, 'worry': 1.0, '10': 1.0, 'need': 1.0, 'about': 1.0, 'don': 1.0, 'within': 1.0, 'car': 1.0, 'in': 2.0, 'month': 1.0, 'install': 1.0, 'although': 1.0, 'once': 1.0, 'my': 2.0, 'little': 1.0, 'she': 1.0, 'a': 1.0, 'doesn': 1.0, 'to': 2.0, 'rough': 1.0, 'was': 1.0, 'as': 1.0, 'loves': 1.0, 'latch': 1.0, 'and': 1.0, 't': 2.0, 'have': 1.0, 'it': 4.0, 'there': 1.0, 's': 2.0, 'wife': 1.0, 'you': 1.0}
Word element => {'3': 1.0, 'into': 1.0, 'very': 1.0, 'as': 1.0, 'it': 3.0, 'love': 1.0, 'carseat': 2.0, 'was': 1.0, 'at': 1.0, 'safe': 1.0, 'fits': 1.0, 'recaro': 1.0, 'looks': 1.0, 'is': 1.0, 'the': 1.0, 'my': 1.0, 'we': 2.0, 'nice': 2.0, 'well': 2.0, 'purchased': 1.0, 'still': 1.0, 'when': 1.0, 'daughter': 1.0, 'and': 2.0, '1': 1.0, 'she': 1.0}
Word element => {'them': 1.0, 'wait': 1.0, 'sized': 1.0, 'can': 1.0, 'average': 1.0, 'little': 1.0, 'a': 1.0, 'work': 1.0, 'so': 1.0, 'material': 1.0, 'longer': 1.0, 'is': 1.0, 'with': 1.0, 'are': 1.0, 'for': 2.0, 'love': 1.0, 't': 1.0, 'the': 4.0, 'these': 2.0, 'happy': 1.0, 'sooo': 1.0, 'blanket': 2.0, 'design': 1.0, 'am': 1.0, 'touch': 1.0, 'i': 1.0, 'they': 1.0, 'your': 1.0, 'use': 1.0, 'smooth': 1.0, 'normal': 1.0, 'to': 2.0, 'should': 1.0, 'receiving': 2.0, 'and': 1.0, 'definitely': 1.0, 'swaddling': 1.0, 'larger': 1.0, 'than': 2.0}
Word element => {'wish': 1.0, 'sometimes': 1.0, 'online': 1.0, 'find': 1.0, 'hard': 1.0, 'happy': 1.0, 'am': 1.0, 's': 1.0, 'brown': 1.0, 'mixed': 1.0, '100': 1.0, 'shades': 1.0, 'quality': 1.0, 'great': 1.0, 'overall': 1.0, 'etc': 1.0, 'wrapping': 1.0, 'for': 2.0, 'adequate': 1.0, 'couple': 1.0, 'wal': 1.0, '30': 1.0, 'this': 1.0, 't': 1.0, 'which': 1.0, 'found': 1.0, 'know': 1.0, 'kohls': 1.0, 'that': 2.0, 'seem': 1.0, 'x': 1.0, 'about': 1.0, 'from': 1.0, 'bought': 3.0, 'than': 2.0, 'brands': 4.0, 'burp': 1.0, 'pretty': 1.0, 'job': 1.0, 'to': 5.0, 'as': 1.0, 'mart': 1.0, 'equipped': 1.0, 'store': 1.0, 'receiving': 3.0, 'these': 5.0, 'cloths': 1.0, 'up': 2.0, 'wash': 1.0, 'cotton': 1.0, 'don': 1.0, 'pink': 1.0, 'they': 8.0, 'recently': 1.0, 'had': 1.0, 'carter': 1.0, 'well': 1.0, 'i': 6.0, '40': 1.0, 'solid': 1.0, 'own': 2.0, 'but': 1.0, 'and': 6.0, 'superior': 1.0, 'all': 1.0, 'other': 2.0, 'soft': 1.0, 'anything': 1.0, 'my': 1.0, 'husband': 1.0, 'more': 2.0, 'prints': 1.0, 'of': 5.0, 'the': 7.0, 'supplement': 1.0, 'close': 1.0, 'a': 6.0, 'small': 1.0, 'some': 1.0, 'none': 1.0, 'have': 2.0, 'various': 1.0, 'inches': 1.0, 'two': 2.0, 'little': 2.0, 'infant': 1.0, 'came': 1.0, 'size': 1.0, 'sets': 3.0, 'drew': 1.0, 'blankets': 6.0, 'you': 2.0, 'when': 1.0, 'substantially': 1.0, 'in': 4.0, 'on': 2.0, 'washing': 1.0, 'skin': 1.0, 'not': 1.0, 'can': 1.0, 'so': 2.0, 'with': 2.0, 'is': 1.0, 'handle': 1.0, 'flannel': 1.0, 'multiple': 1.0, 'here': 1.0, 'baby': 1.0, 'washings': 1.0, 'are': 7.0, 'first': 1.0, 'shrinkage': 1.0, 'we': 2.0, 'take': 1.0, 'abuse': 1.0, 'newborn': 1.0, 've': 1.0, 'will': 1.0, 'larger': 1.0, 'purchased': 1.0, 'pinch': 1.0, 'get': 1.0, 'through': 1.0, 'do': 1.0, 'put': 1.0, 'ringer': 1.0, 'towels': 1.0}
Word element => {'used': 1.0, 'have': 1.0, 'scent': 1.0, 'cradle': 2.0, 'different': 1.0, 'pictures': 1.0, 'swaddling': 1.0, 'mattress': 2.0, 'soft': 1.0, 'as': 2.0, 'to': 4.0, 'all': 1.0, 'for': 4.0, 'actually': 1.0, 'cheap': 1.0, 'using': 1.0, 'good': 1.0, 'which': 1.0, 's': 1.0, 'a': 4.0, 'ended': 1.0, 'constantly': 1.0, 'so': 3.0, 'sheet': 1.0, 'first': 1.0, 'background': 1.0, 'cute': 1.0, 'are': 2.0, 'blanket': 1.0, 'were': 4.0, 'they': 3.0, 'blankets': 1.0, 'but': 2.0, '2': 1.0, 'four': 1.0, 'inexpensive': 1.0, 'went': 1.0, 'receiving': 1.0, 'these': 1.0, 'colors': 1.0, 'wanted': 1.0, 'we': 1.0, 'then': 1.0, 'got': 1.0, 'i': 5.0, 'two': 2.0, 'and': 5.0, 'too': 1.0, 'get': 1.0, 'found': 1.0, 'easy': 1.0, '18': 2.0, 'change': 1.0, 'up': 1.0, 'her': 1.0, 'wash': 1.0, 'cheaper': 1.0, 'there': 1.0, 'prints': 1.0, 'the': 7.0, 'of': 2.0, 'bring': 1.0, 'great': 1.0, 'home': 1.0, 'dogs': 1.0, 'size': 2.0, 'baby': 2.0, 'many': 1.0, 'she': 1.0, 'them': 3.0, 'has': 1.0, 'gotten': 1.0, 'bigger': 1.0, 'best': 1.0, 'about': 1.0, 'x': 3.0, 'is': 1.0, 'more': 1.0, 'quality': 1.0, 'their': 1.0, 'make': 1.0, '36': 2.0, 'fitted': 1.0, 'lesser': 1.0, 'thickswitch': 1.0, 'out': 1.0, 'decor': 1.0, 'sheets': 1.0, 'purchased': 1.0, 'thin': 1.0, 'style': 1.0, 'knit': 1.0, 'sets': 2.0, 'stained': 1.0, 'than': 1.0, 'way': 1.0, 'that': 3.0, 'because': 1.0, 'easily': 1.0, 'bought': 1.0, 'in': 1.0}
Word element => {'wash': 1.0, 'handle': 1.0, 'well': 1.0, 'how': 1.0, 'give': 1.0, 'not': 1.0, 'carter': 2.0, 'cute': 1.0, '5': 1.0, '30x30': 1.0, 'instead': 1.0, 'of': 3.0, '3': 1.0, 'washed': 1.0, 'and': 2.0, 'away': 1.0, 'very': 2.0, 'they': 1.0, 'usual': 1.0, 'have': 2.0, 'stars': 1.0, 'product': 1.0, '30x40': 1.0, 'be': 1.0, 'frequent': 1.0, 'is': 3.0, 'more': 1.0, 'the': 3.0, 'great': 3.0, 'size': 1.0, 'soft': 1.0, 'this': 2.0, 'with': 1.0, 'a': 3.0, 's': 2.0, 'still': 1.0, 'seem': 1.0, 'wks': 1.0, 'used': 1.0, 'or': 1.0, 'yet': 1.0, 'baby': 2.0, 'however': 1.0, 'if': 1.0, '10': 1.0, 'being': 1.0, 'number': 1.0, 'i': 2.0, 'knew': 1.0, 'these': 2.0, 'products': 1.0, 'had': 1.0, 'as': 2.0, 'to': 1.0, 'lot': 2.0, 'blankets': 1.0, 'would': 1.0}
Word element => {'long': 1.0, 'them': 1.0, 'love': 1.0, 'cozy': 1.0, 'soft': 1.0, 'am': 1.0, 'so': 1.0, 'got': 1.0, 'i': 2.0, 'ferrets': 3.0, 'happy': 1.0, 'warm': 1.0, 'nice': 1.0, 'as': 2.0, 'blankets': 1.0, 'and': 4.0, 'for': 1.0, 'these': 1.0, 'they': 1.0, 'my': 3.0, 'are': 2.0}
Word element => {'use': 1.0, 'to': 1.0, 'able': 1.0, 'be': 1.0, 'will': 1.0, 'we': 1.0, 'so': 1.0, 'after': 1.0, 'hold': 1.0, 'and': 1.0, 'blankets': 1.0, 'like': 1.0, 'also': 1.0, 'wash': 2.0, 'size': 1.0, 'soft': 1.0, 'longer': 1.0, 'really': 1.0, 'up': 1.0, 'of': 1.0, 'ones': 1.0, 'the': 2.0, 'these': 3.0, 'i': 1.0, 'that': 1.0, 'well': 1.0, 'a': 2.0, 'little': 2.0, 'bigger': 1.0, 'than': 1.0, 'are': 2.0, 'basic': 1.0}
Word element => {'climate': 1.0, 'blankets': 1.0, 'and': 2.0, 'hot': 1.0, 'a': 2.0, 'still': 1.0, 'not': 1.0, 'they': 2.0, 'our': 1.0, 'we': 1.0, 'year': 1.0, 'using': 1.0, 'for': 1.0, 'are': 2.0, 'over': 1.0, 'these': 1.0, 'heavy': 1.0, 'pill': 1.0, 'bit': 1.0, 'but': 1.0, 'really': 1.0, 'later': 1.0, 'soft': 1.0, 'too': 1.0}
Word element => {'their': 1.0, 'pick': 1.0, 'they': 1.0, 'nope': 1.0, 'on': 1.0, 'is': 1.0, 'the': 4.0, 'stay': 1.0, 'would': 1.0, 'with': 1.0, 'it': 3.0, 'this': 1.0, 'table': 2.0, 'learn': 1.0, 'bought': 1.0, 'quickly': 1.0, 'thinking': 1.0, 'flimsy': 1.0, 'i': 1.0, 'kids': 1.0, 'how': 1.0, 'to': 1.0, 'toss': 1.0, 'from': 1.0, 'up': 1.0, 'fork': 1.0, 'cannot': 1.0, 'also': 1.0, 'food': 1.0, 'so': 1.0}
Word element => {'clean': 1.0, 'easy': 1.0, 'very': 1.0, 'restaurant': 1.0, 'use': 1.0, 'doesn': 1.0, 'your': 1.0, 'so': 1.0, 'out': 1.0, 'you': 2.0, 'feed': 1.0, 'etc': 1.0, 'restaurants': 1.0, 'become': 1.0, 'forks': 2.0, 'however': 1.0, 'have': 1.0, 'small': 1.0, 'anything': 1.0, 'which': 1.0, 'stab': 1.0, 'themselves': 2.0, 'fast': 1.0, 'really': 2.0, 'is': 2.0, 'longer': 1.0, 'great': 1.0, 'isn': 1.0, 'the': 6.0, 'plates': 2.0, 'for': 3.0, 'yet': 1.0, 'and': 1.0, 'thing': 1.0, 'about': 1.0, 't': 3.0, 'a': 3.0, 'are': 2.0, 'silverware': 1.0, 'feeding': 1.0, 'don': 1.0, 'child': 3.0, 'be': 1.0, 'with': 1.0, 'frustrating': 1.0, 'that': 1.0, 'these': 2.0, 'learning': 1.0, 'to': 4.0, 'spoons': 1.0, 'also': 1.0, 'will': 1.0, 'can': 2.0, 'work': 1.0, 'but': 1.0, 'at': 1.0, 'who': 2.0, 'lot': 1.0, 'take': 1.0, 'pretty': 2.0, 'it': 1.0, 'useless': 1.0, 'best': 1.0, 'this': 1.0, 'set': 1.0}
Word element => {'dealer': 1.0, 'you': 1.0, 'or': 1.0, 'no': 1.0, 'with': 1.0, 'way': 1.0, 'price': 1.0, 'best': 1.0, 'also': 1.0, 'amazon': 1.0, 'through': 2.0, 'well': 1.0, 'of': 2.0, 'set': 1.0, 'purchasing': 1.0, 'made': 1.0, 'shade': 1.0, 'and': 3.0, 'cream': 1.0, 'design': 1.0, 'white': 1.0, 'it': 2.0, 'this': 4.0, 'devon': 1.0, 'off': 1.0, 'westwood': 1.0, 'the': 10.0, 'is': 7.0, 'second': 1.0, 'true': 1.0, 'calls': 1.0, 'color': 1.0, 'go': 1.0, 'we': 1.0, 'a': 4.0, 'slight': 1.0, 'wabbles': 1.0, 'from': 1.0, 'tax': 1.0, 'changing': 1.0, 'furniture': 3.0, 'purchased': 1.0, 'parrallel': 1.0, 'was': 2.0, 'none': 1.0, 'as': 1.0, 'to': 3.0, 'our': 2.0, 'stunning': 1.0, 'quality': 1.0, 'baby': 1.0, 'simplicity': 1.0, 'assembly': 1.0, 'same': 1.0, 'rickety': 1.0, 'manufacturer': 1.0, 'table': 1.0, 'pay': 1.0, 'shipping': 1.0, 'son': 1.0, 'difficult': 1.0, 'com': 1.0, 'love': 3.0, 'for': 1.0, 'assemble': 1.0, 'actually': 1.0, 'product': 1.0, 'would': 1.0, 'breeze': 1.0, 'so': 1.0}
Word element => {'thanks': 1.0, 'by': 1.0, 'of': 1.0, 'some': 1.0, 'or': 1.0, 'made': 2.0, 'pes': 1.0, 'my': 1.0, 'does': 1.0, 'what': 2.0, 'buy': 1.0, 'to': 2.0, 'other': 1.0, 'know': 2.0, 'product': 1.0, 'material': 1.0, 'is': 2.0, 'want': 1.0, 'this': 1.0, 'sister': 1.0, 'it': 2.0, 'but': 1.0, 'she': 1.0, 'anyone': 1.0, 'needs': 1.0}
Word element => {'botles': 1.0, 'should': 1.0, 'guess': 1.0, 'measure': 1.0, 'they': 1.0, 'however': 1.0, '6oz': 1.0, 'needed': 1.0, 'because': 1.0, 'ordered': 1.0, 'buy': 1.0, '5oz': 1.0, '5': 2.0, 'in': 1.0, 'not': 1.0, '3oz': 1.0, 'remaining': 1.0, 'off': 1.0, 'polished': 1.0, 'she': 1.0, 'sure': 1.0, 'why': 1.0, 'these': 2.0, 'turns': 1.0, 'the': 2.0, 'didn': 1.0, 'nipple': 2.0, 'drank': 1.0, 'do': 1.0, 'only': 2.0, 'with': 1.0, 'this': 1.0, 'had': 1.0, 'fingers': 1.0, 'daughter': 1.0, 'are': 1.0, 'minutes': 2.0, 'advertised': 1.0, 'can': 1.0, 'nipples': 1.0, 'as': 1.0, 'to': 4.0, 'our': 1.0, 'returning': 1.0, 'be': 2.0, 'after': 1.0, 'so': 2.0, 'have': 1.0, 'small': 1.0, 'also': 1.0, 'will': 1.0, 'out': 2.0, 'is': 2.0, 'you': 2.0, 't': 1.0, 'we': 2.0, 'hole': 1.0, 'hardly': 1.0, 'and': 2.0, 'milk': 1.0, 'every': 1.0, 'know': 1.0, 'squeeze': 1.0, 'like': 1.0, '45': 1.0, 'switched': 1.0, 'bottles': 2.0, 'another': 1.0, 'worthless': 2.0, '1oz': 1.0, 'brand': 1.0, 'your': 1.0, 'make': 1.0}
Word element => {'that': 1.0, 'fix': 1.0, 'could': 1.0, 'they': 1.0, 'how': 1.0, 'sure': 1.0, 'i': 1.0, 'use': 1.0, 'awkward': 1.0, 'is': 1.0, 'not': 1.0, 'because': 1.0, 'highchair': 1.0, 'transformed': 1.0, 'promised': 1.0, 'this': 1.0, 'it': 3.0, 'works': 1.0, 'a': 6.0, 'ss': 1.0, 'as': 1.0, 'and': 2.0, 'again': 1.0, 'family': 1.0, 'actually': 1.0, 'product': 1.0, 'resturaunt': 1.0, 'to': 2.0, 'little': 1.0, 'meal': 1.0, 'into': 1.0, 'safe': 1.0, 'but': 1.0, 'secure': 1.0, 'sear': 1.0, 'm': 1.0, 'gets': 1.0, 'us': 1.0, '4': 1.0, 'allowed': 1.0, 'wnjoy': 1.0, 'out': 1.0}
Word element => {'from': 1.0, 'daughter': 1.0, 'else': 1.0, 'emergency': 1.0, 'an': 1.0, 'would': 2.0, 'there': 1.0, 'strapped': 1.0, 'can': 1.0, 'off': 1.0, 'take': 1.0, 'in': 2.0, 'said': 1.0, 'wrapper': 1.0, 'wriggle': 1.0, 'ran': 1.0, 'issue': 1.0, 'airline': 1.0, 'only': 1.0, 'turbulance': 1.0, 'during': 2.0, 'peace': 1.0, 'hang': 1.0, 'have': 3.0, 'didn': 1.0, 'because': 1.0, 'of': 2.0, 'product': 1.0, 'grab': 1.0, 'be': 2.0, 'this': 1.0, 'mind': 1.0, 'with': 2.0, '17': 1.0, 'noticed': 1.0, 'old': 1.0, 'by': 2.0, 'me': 3.0, 'and': 5.0, 'get': 1.0, 'tell': 1.0, 'so': 1.0, 'her': 5.0, 'had': 1.0, 'contained': 1.0, 'what': 1.0, 'my': 4.0, 'toddler': 1.0, 'event': 1.0, 'also': 1.0, 'hour': 1.0, 'both': 1.0, '34': 2.0, 'on': 4.0, 'i': 6.0, '4': 1.0, 'flight': 2.0, 'has': 1.0, 'described': 1.0, 'professionals': 1.0, 'landing': 1.0, 'very': 1.0, 'that': 1.0, 'into': 1.0, 'gave': 1.0, 'been': 1.0, 'active': 1.0, 't': 2.0, 'a': 1.0, 'daycare': 1.0, 'was': 3.0, 'stewardess': 1.0, 'as': 1.0, 'to': 5.0, 'someone': 1.0, 'when': 1.0, 'you': 1.0, 'traveling': 1.0, 'great': 1.0, 'hands': 1.0, 'believe': 1.0, 'myself': 1.0, 'the': 6.0, 'able': 1.0, 'it': 2.0, 'month': 1.0, 'she': 1.0, 'back': 1.0, 'needed': 1.0, 'use': 1.0}
Word element => {'is': 1.0, '70': 1.0, 'since': 1.0, 'previously': 1.0, 'well': 1.0, 'better': 2.0, 'every': 1.0, 'for': 2.0, 'search': 1.0, 'eco': 2.0, 'finding': 1.0, 'they': 3.0, 'scented': 1.0, 'heavily': 1.0, 'hated': 1.0, 'way': 1.0, 'always': 1.0, 'but': 1.0, 'else': 1.0, 'gone': 1.0, 'of': 1.0, 'are': 2.0, 'in': 4.0, 'anything': 1.0, 'adults': 1.0, 'have': 1.0, 'how': 2.0, 'pampers': 1.0, 'healthier': 1.0, 'fragrance': 1.0, 'these': 3.0, 'package': 2.0, 'ended': 1.0, 'after': 2.0, 'so': 1.0, 'pack': 1.0, 'buys': 1.0, 'toddler': 4.0, 'ever': 1.0, 'wondering': 1.0, 'wipes': 8.0, 'down': 1.0, 'favorite': 2.0, 'too': 1.0, 'and': 2.0, 'kids': 1.0, 'price': 1.0, 'best': 1.0, 'years': 1.0, 'hands': 1.0, 'the': 5.0, 'without': 1.0, 'baby': 1.0, 'softer': 2.0, 'them': 1.0, 'bathroom': 1.0, 'family': 1.0, 'discovering': 1.0, 'free': 1.0, 'friendly': 2.0, 'now': 1.0, 'we': 4.0, 't': 1.0, 'a': 2.0, 've': 2.0, 'each': 1.0, 'as': 1.0, 'all': 1.0, 'to': 1.0, 'our': 3.0, 'were': 2.0, 'stocked': 1.0, 'kandoo': 1.0, 'than': 1.0, 'find': 1.0, 'having': 1.0, 'because': 1.0, 'even': 1.0, 'previous': 1.0, 'didn': 1.0}
Word element => {'family': 1.0, 'definitely': 1.0, 'so': 1.0, 'whole': 1.0, 'thing': 1.0, 'right': 1.0, 'backpacks': 1.0, 'baby': 2.0, 'storage': 1.0, 'framed': 1.0, 'changing': 1.0, 'and': 5.0, 'comfy': 2.0, 'like': 1.0, 'parents': 1.0, 'straps': 1.0, 'dangler': 1.0, 'a': 3.0, 'explore': 1.0, 'not': 1.0, 'to': 2.0, 'seat': 1.0, 'the': 3.0, 'great': 1.0, 'everything': 1.0, 'recommend': 1.0, 'crotch': 1.0, 'designers': 1.0, 'thought': 1.0, 'other': 1.0, 'this': 3.0, 'with': 2.0, 'hike': 1.0, 'get': 1.0, 'bak': 1.0, 'backpack': 2.0, 'of': 2.0, 'daddy': 1.0, 'very': 1.0, 'shield': 2.0, 'really': 1.0, 'many': 1.0, 'most': 1.0, 'love': 1.0, 'for': 4.0, 'mommy': 1.0, 'sun': 1.0, 'soooo': 1.0, 'who': 1.0, 'space': 1.0, 'or': 1.0, 'everywhere': 1.0, 'pockets': 1.0, 'even': 1.0, 'your': 1.0, 'camel': 1.0, 'is': 1.0, 'comes': 1.0, 'mat': 1.0, 'rain': 1.0, 'when': 1.0, 'you': 1.0}
Word element => {'space': 1.0, 'up': 1.0, 'take': 1.0, 'not': 1.0, 'did': 1.0, 'bag': 1.0, 'problems': 1.0, 'no': 1.0, 'zero': 1.0, 'have': 1.0, 'country': 1.0, 'trip': 1.0, 'day': 1.0, '7': 1.0, 'on': 1.0, 'took': 1.0, 'infant': 2.0, 'stroller': 1.0, 'converts': 1.0, 'travel': 1.0, 'easy': 1.0, 'for': 2.0, 'love': 2.0, 'in': 2.0, 'it': 4.0, 'into': 1.0, 'that': 2.0, 'packed': 1.0, 'regret': 1.0, 'incline': 1.0, 'are': 2.0, 'i': 3.0, 'uses': 1.0, 'checked': 1.0, 'my': 2.0, 'doubles': 1.0, 'was': 1.0, 'our': 1.0, 'sleep': 1.0, 'seat': 2.0, 'to': 3.0, 'much': 1.0, 'do': 1.0, 'this': 2.0, 'wish': 1.0, 'there': 1.0, 'way': 1.0, 'we': 1.0, 'a': 3.0, 's': 1.0, 'adjust': 1.0, 'bit': 1.0, 'across': 1.0, 'vibe': 1.0, 'and': 3.0, 'too': 2.0, 'you': 1.0, 'when': 1.0, 'upright': 1.0, 'reclined': 1.0, 'feed': 1.0, 'suitcase': 1.0, 'the': 3.0, 'travelling': 1.0, 'an': 2.0, 'ideal': 1.0, 'multipurpose': 1.0, 'rocker': 1.0, 'items': 1.0}
Word element => {'money': 1.0, 'the': 1.0, 'worth': 1.0, 'was': 1.0, 'but': 1.0, 'expensive': 1.0, 'very': 1.0, 'beautiful': 1.0, 'i': 3.0, 'daughters': 1.0, 'is': 1.0, 'stuff': 1.0, 'looks': 1.0, 'my': 1.0, 'made': 2.0, 'cheaply': 1.0, 'not': 1.0, 'love': 1.0, 'this': 1.0, 'cotton': 1.0, 'it': 1.0, 'room': 1.0, 'in': 1.0, 'pieces': 1.0, 'have': 1.0, 'well': 1.0, 'a': 1.0, 'few': 1.0, 'of': 1.0, 'tale': 1.0, 'designs': 1.0, 'think': 1.0, 'their': 1.0}
Word element => {'adorable': 1.0, 'just': 1.0, 'sent': 1.0, 's': 1.0, 'baby': 1.0, 'in': 1.0, 'the': 3.0, 'room': 1.0, 'is': 3.0, 'a': 1.0, 'lamp': 1.0, 'quality': 1.0, 'and': 1.0, 'collection': 1.0, 'heaven': 1.0, 'nice': 1.0, 'good': 1.0, 'of': 1.0, 'really': 1.0, 'touch': 1.0}
Word element => {'worth': 1.0, 'pretty': 1.0, 'floral': 1.0, 'design': 2.0, 'call': 1.0, 'they': 1.0, 'why': 1.0, 'don': 1.0, 's': 1.0, 'and': 1.0, 'understand': 1.0, 'up': 1.0, 'like': 1.0, 'real': 1.0, 'but': 1.0, 'shade': 1.0, 't': 1.0, 'the': 3.0, 'beauty': 1.0, 'nice': 1.0, 'a': 3.0, 'just': 3.0, 'cottontale': 1.0, 'perfect': 1.0, 'lamp': 1.0, 'it': 6.0, 'this': 1.0, 'size': 1.0, 'when': 1.0, 'buy': 1.0, 'i': 1.0, 'lit': 1.0, 'glowing': 1.0, 'is': 5.0, 'looks': 1.0, 'really': 2.0}
Word element => {'happy': 1.0, 'paid': 1.0, 'i': 1.0, 'what': 1.0, 'expensivethen': 1.0, 'ensemble': 1.0, 'baby': 1.0, 'very': 1.0, 'pink': 1.0, 'our': 1.0, 'for': 2.0, 'heaven': 1.0, 'perfect': 2.0, 'theme': 1.0, 'everything': 1.0, 'more': 1.0, 'the': 1.0, 'beautiful': 2.0, 'sent': 1.0, 'looks': 2.0, 'girl': 1.0, 'ruffles': 1.0, 'soft': 1.0, 'and': 2.0, 'lace': 1.0, 'a': 1.0, 'make': 1.0, 'included': 1.0, 'was': 1.0, 'to': 1.0, 'it': 1.0, 'this': 1.0}
Word element => {'disappointed': 1.0, 'tag': 1.0, 'price': 1.0, 'its': 1.0, 'construction': 1.0, 'solid': 1.0, 'something': 1.0, 'be': 2.0, 'll': 2.0, 'fine': 1.0, 'look': 1.0, 'are': 1.0, 'overpriced': 1.0, 'mind': 1.0, 'up': 1.0, 'don': 1.0, 'want': 1.0, 'if': 2.0, 'so': 1.0, 'at': 1.0, 'item': 1.0, 'also': 1.0, 'holds': 1.0, 'is': 2.0, 'coordinating': 1.0, 'match': 1.0, 'kind': 1.0, 'way': 1.0, 'all': 1.0, 'as': 2.0, 'to': 2.0, 'had': 1.0, 'purchased': 2.0, 'far': 1.0, 'just': 2.0, 'not': 2.0, 'expectations': 1.0, 'because': 1.0, 'definitely': 2.0, 'it': 4.0, 'this': 2.0, 'first': 1.0, 'wouldn': 1.0, 'i': 5.0, 'have': 3.0, 'set': 1.0, 'of': 2.0, 'cute': 1.0, 'rest': 1.0, 'colors': 1.0, 'daughter': 1.0, 'for': 2.0, 'on': 1.0, 'basically': 1.0, 'the': 7.0, 'purchase': 1.0, 'my': 1.0, 'high': 3.0, 'but': 2.0, 'quality': 2.0, 'and': 4.0, 'probably': 1.0, 'you': 4.0, 'seen': 1.0, 'in': 1.0, 's': 2.0, 'bedding': 2.0, 'going': 2.0, 't': 2.0, 'go': 1.0, 'a': 2.0, 'store': 1.0, 'however': 1.0, 'ridiculously': 1.0, 'knew': 1.0, 'that': 1.0, 'into': 1.0}
Word element => {'was': 1.0, 'fortunately': 1.0, 'like': 1.0, 'arrived': 1.0, 'so': 1.0, 'nicely': 1.0, 'building': 1.0, 'does': 1.0, 'bedroom': 1.0, 'however': 1.0, 'hamper': 1.0, 'do': 1.0, 'much': 1.0, 'price': 1.0, '20': 1.0, 'sells': 1.0, 'no': 1.0, 'left': 1.0, 'tag': 1.0, 'good': 1.0, 'been': 1.0, 'box': 1.0, 'that': 2.0, 'hampers': 1.0, 'for': 2.0, 'it': 7.0, '53': 1.0, 'this': 2.0, 'fitting': 1.0, 'mind': 1.0, 'stores': 1.0, 'with': 2.0, 'heaven': 1.0, 'in': 1.0, 'thrown': 1.0, 'if': 1.0, 'choice': 1.0, 'accessories': 1.0, 'and': 3.0, 'damaged': 1.0, 'set': 1.0, 'there': 1.0, 'blemishes': 1.0, 'review': 1.0, 'made': 1.0, 'other': 1.0, 'also': 1.0, 'item': 2.0, 'look': 1.0, 'cheaply': 1.0, 'blows': 1.0, 'i': 5.0, 'looking': 2.0, 'sent': 1.0, 'wife': 1.0, 'match': 2.0, 'very': 1.0, 'though': 1.0, 'fully': 1.0, 'erin': 1.0, 'not': 2.0, 'the': 5.0, 'agree': 1.0, 'after': 1.0, 'my': 2.0, 'were': 1.0, 'high': 1.0, 'to': 2.0, 'had': 2.0, 'purchased': 1.0, 'more': 1.0, 'is': 2.0, 'are': 1.0, 'on': 1.0, 'wood': 1.0, 'off': 1.0, 'legs': 1.0, 'knew': 1.0, 'a': 2.0, 'we': 1.0, 'bedding': 1.0, 's': 1.0, 'going': 1.0, 'would': 4.0, 'be': 2.0, 'quality': 1.0, 'but': 1.0, 'flimsy': 1.0, 'at': 1.0, 'again': 1.0, 'when': 1.0, 'local': 1.0}
Word element => {'already': 1.0, 'have': 1.0, 'point': 1.0, 'arm': 1.0, 'girl': 1.0, 'were': 1.0, 'that': 1.0, 'little': 1.0, 'inches': 1.0, 'out': 1.0, 'from': 2.0, 'eye': 1.0, 'colors': 1.0, 'about': 1.0, 'and': 1.0, 'matching': 1.0, 'away': 1.0, 'do': 1.0, 'the': 6.0, 'are': 1.0, 'lambs': 1.0, 'on': 1.0, '3': 1.0, 'mechanism': 1.0, 'i': 4.0, 'to': 2.0, 'time': 1.0, 'having': 1.0, 'does': 1.0, 'had': 1.0, 'what': 1.0, 'not': 2.0, 'secure': 1.0, 'most': 1.0, 'cribs': 1.0, 'my': 1.0, 'lip': 1.0, 'is': 1.0, 'screw': 1.0, 'am': 2.0, 'sure': 1.0, 'bedding': 1.0, 'we': 2.0, 'a': 1.0, 'going': 1.0, 'piece': 1.0, 'with': 1.0, 'it': 1.0, 'found': 1.0, 'this': 1.0, 'since': 1.0, 'adorable': 1.0, 'at': 1.0}
Word element => {'used': 1.0, 'been': 1.0, 'return': 1.0, 'again': 1.0, 'them': 2.0, 'through': 1.0, 'and': 4.0, 'do': 1.0, 'were': 1.0, 'thought': 1.0, 'left': 1.0, 'have': 1.0, 'can': 1.0, 'change': 1.0, 'but': 2.0, 'i': 5.0, 'buy': 2.0, 'was': 1.0, 'all': 1.0, 'to': 2.0, 'outfit': 1.0, 'soak': 1.0, 'has': 1.0, 'reviews': 1.0, 'they': 3.0, 'good': 1.0, 'up': 1.0, 'youngest': 1.0, 'price': 1.0, 'really': 1.0, 'bibs': 1.0, 'these': 1.0, 'the': 3.0, 'because': 1.0, 'not': 2.0, 'great': 1.0, 'reflux': 1.0, 'my': 1.0, 've': 1.0, 'hesitant': 1.0, 'would': 2.0, 'him': 1.0, 'be': 1.0, 'for': 1.0, 'definately': 1.0, 'he': 1.0, 'spits': 1.0, 'of': 1.0, 'once': 1.0, 'his': 1.0, 'hold': 1.0, 't': 1.0, 'a': 1.0, 'since': 1.0, 'bib': 1.0, 'lot': 1.0, 'right': 1.0}
Word element => {'crib': 1.0, 'pj': 1.0, 'with': 1.0, 'teether': 1.0, 'doesn': 1.0, 'resolve': 1.0, 'way': 1.0, 'messy': 1.0, 'be': 1.0, 'gooey': 1.0, 'same': 1.0, 'side': 1.0, 'provide': 1.0, 'enough': 1.0, 'flexible': 1.0, 'now': 1.0, 'inside': 1.0, 'down': 1.0, 'molars': 1.0, 'her': 1.0, 'working': 1.0, 'over': 2.0, 'drooling': 1.0, 'compartment': 2.0, 'is': 5.0, 'mess': 1.0, 'consistency': 1.0, 'i': 1.0, 'stays': 1.0, 'and': 4.0, 'quickly': 1.0, 'freezes': 1.0, 'pain': 1.0, 'this': 2.0, 'item': 1.0, 'but': 1.0, 'can': 2.0, 'really': 1.0, 'material': 1.0, 'toothpaste': 1.0, 'in': 1.0, 'hold': 1.0, 'teeth': 1.0, 'manipulates': 1.0, 'made': 1.0, 'cleaning': 1.0, 'gel': 2.0, 'the': 10.0, 'tooth': 1.0, 'of': 1.0, 'there': 1.0, 'get': 1.0, 'freezer': 1.0, 'that': 4.0, 'only': 2.0, 'works': 1.0, 'both': 1.0, 'cold': 1.0, 'use': 1.0, 'already': 1.0, 'as': 1.0, 'all': 2.0, 'to': 7.0, 'make': 1.0, 'on': 1.0, 'put': 1.0, 'training': 2.0, 'paste': 1.0, 'needs': 2.0, 'so': 2.0, 'my': 2.0, 'daughter': 2.0, 'meant': 1.0, 'product': 1.0, 'where': 2.0, 'right': 1.0, 'teething': 2.0, 'relief': 2.0, 'freeze': 1.0, 'from': 1.0, 'while': 1.0, 'it': 8.0, 'she': 4.0, 'well': 1.0, 'has': 1.0, 't': 1.0, 'a': 2.0, 's': 5.0, 'go': 2.0}
Word element => {'9': 1.0, 'us': 1.0, 'r': 1.0, 'note': 1.0, 'teething': 1.0, 'through': 1.0, 'get': 1.0, 'seems': 1.0, 'worth': 1.0, 'process': 1.0, 'but': 1.0, 'cleaned': 1.0, 'be': 2.0, 'needs': 1.0, 'so': 2.0, 'to': 3.0, 'stuff': 1.0, 'babies': 1.0, 'that': 1.0, 'considering': 1.0, 'only': 1.0, 'helping': 1.0, 'accidently': 1.0, 'when': 1.0, 'in': 1.0, 'frequently': 1.0, 'crys': 1.0, 'including': 1.0, 'teether': 1.0, 'have': 2.0, 'of': 2.0, 'thats': 1.0, 'ever': 1.0, 'always': 1.0, 'bristle': 1.0, 'sort': 1.0, '99': 1.0, 'sofie': 1.0, 'my': 3.0, 'one': 2.0, 'btw': 1.0, 'etc': 1.0, 'i': 2.0, 'give': 1.0, 'little': 2.0, 'the': 5.0, 'popular': 1.0, 'however': 1.0, 'imaginable': 1.0, 'really': 1.0, 'every': 1.0, 'drops': 1.0, 'if': 1.0, '10': 1.0, 'which': 1.0, 'giraffe': 1.0, 'would': 1.0, 'enjoy': 1.0, 'painful': 1.0, 'this': 3.0, 'fuzz': 1.0, 'first': 1.0, 'she': 2.0, 'it': 5.0, 'mouth': 1.0, 'chew': 1.0, 'does': 2.0, 'her': 3.0, 'stick': 1.0, 'part': 1.0, 'more': 1.0, 'is': 2.0, 'for': 1.0, 'stars': 1.0, 'fav': 1.0, 's': 1.0, 'could': 1.0, 'a': 1.0, 'has': 1.0, 'hair': 1.0, 'toy': 1.0, 'at': 1.0, 'was': 2.0, 'now': 1.0, 'complaint': 1.0, 'weirded': 1.0, 'out': 1.0, 'sensation': 1.0, 'and': 2.0}
Word element => {'room': 1.0, 'always': 1.0, 'there': 1.0, 'face': 1.0, 'teething': 1.0, 'hair': 1.0, 'her': 4.0, 'fingers': 1.0, 'toes': 1.0, 'for': 2.0, 'daughter': 1.0, 'under': 1.0, 'rings': 1.0, 'everything': 2.0, 'yaaay': 1.0, 'star': 1.0, 'shirt': 1.0, 'sun': 1.0, 'improvement': 1.0, 'off': 1.0, 'jammies': 1.0, 'my': 3.0, 'sophie': 1.0, 'these': 1.0, 'and': 2.0, 'chewing': 2.0, 'is': 1.0, 'tonight': 1.0, 'the': 4.0, 'heck': 1.0, 'drool': 1.0, 'left': 1.0, 'except': 1.0, 'on': 1.0, 'days': 1.0, 'i': 2.0, 'one': 1.0, 'bought': 1.0, 'this': 1.0, 'within': 1.0, 'was': 2.0, 'minutes': 1.0, 'of': 3.0, 'out': 2.0, 'flowin': 1.0, 'box': 1.0, 'it': 3.0, 'she': 1.0, 's': 2.0, 'a': 1.0, 'having': 1.0, 'because': 1.0, 'let': 1.0}
Word element => {'baby': 1.0, 'about': 1.0, 'are': 1.0, 'washing': 1.0, 'll': 1.0, 'shedder': 1.0, 'or': 1.0, 'pets': 1.0, 'have': 1.0, 'you': 3.0, 'if': 1.0, 'everything': 1.0, 'anything': 1.0, 'up': 1.0, 'do': 1.0, 'bristles': 1.0, 'wide': 1.0, 'feel': 1.0, 've': 1.0, 'selection': 1.0, 'maybe': 1.0, 'i': 3.0, 'the': 3.0, 'may': 1.0, 'my': 2.0, 'personal': 1.0, 'really': 2.0, 'toys': 2.0, 'of': 2.0, 'preference': 1.0, 'all': 2.0, 'to': 2.0, 'love': 1.0, 'for': 2.0, 'one': 1.0, 'look': 1.0, 'teething': 2.0, 'purchased': 1.0, 'what': 1.0, 'his': 1.0, 'feels': 1.0, 'teeth': 1.0, 'like': 3.0, 'granted': 1.0, 're': 1.0, 'enough': 1.0, 'forever': 1.0, 'into': 1.0, 'been': 1.0, 'that': 1.0, 'pick': 1.0, 'sink': 1.0, 'time': 1.0, 'so': 3.0, 'and': 2.0, 'this': 3.0, 'it': 3.0, 'heavy': 1.0, 'first': 1.0, 'has': 1.0, 'toy': 2.0, 'firm': 1.0, 'but': 1.0, 'doesn': 1.0, 'son': 2.0, 'seem': 1.0, 'a': 2.0, 't': 1.0, 's': 1.0, 'pretty': 1.0, 'picks': 1.0, 'be': 2.0, 'him': 1.0, 'your': 1.0, 'think': 1.0, 'not': 1.0}
Word element => {'worth': 1.0, 'pricey': 1.0, 'bit': 1.0, 'a': 1.0, 'is': 2.0, 'in': 1.0, 'recommend': 1.0, 'show': 1.0, 'just': 1.0, 'doesn': 1.0, 'but': 2.0, 'others': 2.0, 'i': 1.0, 'tried': 1.0, 'online': 1.0, 'uses': 1.0, 'same': 1.0, 'several': 1.0, 'lost': 1.0, 'one': 1.0, 'ordering': 1.0, 'loves': 1.0, 'he': 2.0, 'it': 5.0, 'this': 3.0, 'son': 1.0, 'time': 1.0, 'my': 1.0, 'and': 2.0, 'bought': 1.0, 'we': 3.0, 'teether': 3.0, 'all': 1.0, 'got': 1.0, 'had': 1.0, 'to': 1.0, 't': 1.0, 'the': 4.0, 'replace': 1.0, 'interest': 1.0, 'by': 1.0, 'highly': 1.0, 'money': 1.0, 'another': 1.0}
Word element => {'dozens': 1.0, 'of': 2.0, 'good': 1.0, 'few': 1.0, 'budget': 1.0, 'on': 1.0, 'are': 1.0, 'you': 1.0, 'if': 1.0, 'teether': 1.0, 'her': 1.0, 'used': 2.0, 'baby': 1.0, 'she': 1.0, 'my': 1.0, 'ones': 2.0, 'the': 2.0, 'cheap': 1.0, 'buy': 1.0, 'took': 1.0, 'limited': 1.0, 'is': 1.0, 'instead': 1.0, 'most': 1.0, 'loved': 1.0, 'a': 3.0, 'bit': 1.0, 'one': 1.0, 'for': 1.0, 'brush': 1.0, 'to': 2.0, 'getting': 1.0, 'get': 1.0, 'like': 2.0, 'texture': 1.0, 'but': 1.0, 'this': 2.0, 'it': 1.0, 'after': 1.0}
Word element => {'since': 1.0, 'a': 2.0, 's': 1.0, 'cold': 1.0, 'great': 1.0, 'is': 2.0, 'and': 2.0, 'emergency': 1.0, 'because': 1.0, 'strips': 1.0, 'ect': 1.0, 'meter': 1.0, 'carry': 1.0, 'has': 1.0, 'daughter': 1.0, 'for': 1.0, 'one': 1.0, 'it': 2.0, 'this': 2.0, 'cute': 1.0, 'bags': 1.0, 'needles': 1.0, 'as': 1.0, 'bought': 1.0, 'but': 1.0, 'keeping': 1.0, 'insulated': 1.0, 'loved': 1.0, 'use': 1.0, 'jujube': 1.0, 'always': 1.0, 'works': 1.0, 'her': 2.0, 'shot': 1.0, 'my': 1.0, 'have': 1.0, '8': 2.0, 'i': 2.0, 'old': 2.0, 'to': 2.0, 'girl': 1.0, 'bag': 3.0, 'insulin': 4.0, 'yr': 2.0, 'she': 2.0}
Word element => {'always': 1.0, 'very': 1.0, 'inside': 1.0, 'moisture': 1.0, 'from': 1.0, 'whose': 1.0, 'wet': 1.0, 'getting': 1.0, 'there': 1.0, 'things': 1.0, 'other': 1.0, 'putting': 1.0, 'separately': 1.0, 'compartment': 1.0, 'top': 1.0, 'for': 1.0, 'fit': 1.0, 'able': 1.0, 'unique': 1.0, 'also': 1.0, 've': 1.0, 'daycare': 1.0, 'is': 2.0, 'say': 1.0, 'probably': 1.0, 'sons': 1.0, 'off': 1.0, 'knock': 1.0, 'without': 1.0, 'the': 4.0, 'job': 1.0, 'what': 1.0, 'does': 1.0, 'his': 1.0, 'bag': 3.0, 'socks': 1.0, 'to': 3.0, 'it': 4.0, 'well': 1.0, 'zips': 1.0, 'a': 3.0, 'every': 1.0, 'really': 1.0, 'stuff': 1.0, 'your': 1.0, 'not': 1.0, 'been': 1.0, 'that': 2.0, 'know': 1.0, 'like': 3.0, 'hold': 1.0, 'pattern': 1.0, 'and': 2.0, 'tall': 1.0, 'bottle': 1.0, 'so': 2.0, 'small': 2.0, 'but': 1.0, 'can': 2.0, 'food': 2.0, 'brown': 1.0, 'in': 3.0, 'pretty': 1.0, 'packs': 1.0, 'i': 5.0, 'two': 2.0, 'papers': 1.0, 'do': 1.0, 'much': 2.0, 'doc': 1.0, 'cup': 1.0, 'bottles': 1.0, 'pouch': 1.0, 'my': 1.0, 'jar': 1.0, 'of': 1.0, 'them': 1.0, 'sippy': 1.0, 'send': 1.0, 'baby': 1.0, 'cooler': 1.0}
Word element => {'top': 1.0, 'component': 1.0, 'zippered': 1.0, 'and': 1.0, 'inside': 1.0, 'but': 1.0, 'use': 1.0, 'insulated': 1.0, 'in': 1.0, 'anti': 1.0, 'flat': 1.0, 'not': 2.0, 'things': 1.0, 'of': 1.0, 'when': 1.0, 'i': 3.0, 'utensils': 1.0, 'large': 1.0, 'several': 1.0, 'about': 1.0, 'capacity': 1.0, 'perfect': 1.0, 'this': 2.0, 'will': 1.0, 'item': 1.0, 'on': 1.0, 'microbial': 1.0, 'folds': 1.0, 'bag': 1.0, 'like': 1.0, 'which': 1.0, 'product': 1.0, 'for': 1.0, 'or': 1.0, 'paci': 1.0, 'as': 2.0, 'far': 1.0, 'the': 2.0, 'negative': 1.0, 'is': 1.0, 'say': 1.0, 'would': 1.0, 'cost': 1.0, 's': 1.0, 'it': 1.0, 'truly': 1.0, 'definitely': 1.0, 'recommend': 1.0}
Word element => {'now': 1.0, 'use': 1.0, 'design': 1.0, 'function': 1.0, 'upgrade': 1.0, 'good': 1.0, 'pleasant': 1.0, 'size': 1.0, 'and': 1.0, 'nice': 1.0, 'vey': 1.0, 'is': 1.0, 'it': 2.0, 'my': 1.0, 'the': 1.0, 'in': 1.0, 'needs': 1.0, 'will': 1.0, 'plain': 1.0, 'be': 1.0, 'a': 1.0, 'from': 1.0, 'for': 1.0, 'one': 1.0, 'i': 1.0}
Word element => {'hours': 1.0, 'cold': 1.0, 'stuff': 1.0, 'in': 1.0, 'icepacks': 1.0, 'couple': 1.0, 'not': 1.0, 'my': 2.0, 'of': 2.0, 'there': 1.0, 'some': 1.0, 'take': 1.0, 'while': 1.0, 'for': 3.0, 'insulated': 1.0, 'color': 1.0, 'bought': 1.0, 'thing': 1.0, 'have': 1.0, 'ok': 1.0, 'i': 5.0, 'is': 3.0, 'lunch': 1.0, 'side': 1.0, 'great': 1.0, 'threw': 1.0, 'don': 1.0, 'to': 2.0, 'as': 1.0, 'any': 1.0, 'stayed': 1.0, 'juices': 1.0, 'baby': 1.0, 'and': 3.0, 'the': 1.0, 'myself': 1.0, 'it': 4.0, 'only': 1.0, 'but': 1.0, 'work': 1.0, 't': 1.0, 's': 1.0, 'a': 4.0, 'this': 2.0, 'perfect': 1.0, 'size': 1.0, 'juicing': 1.0, 'were': 1.0, 'ton': 1.0, 'options': 1.0, 'super': 1.0, 'would': 1.0, 'was': 1.0, 'recommend': 1.0, 'that': 1.0, 'babies': 1.0, 'box': 1.0, 'mommy': 1.0, 'or': 1.0, '8': 1.0, 'down': 1.0}
Word element => {'expected': 1.0, 'what': 1.0, 'padded': 1.0, 'ruin': 1.0, 'will': 1.0, 'the': 2.0, 'nylon': 1.0, 'is': 2.0, 'like': 2.0, 'this': 2.0, 'why': 1.0, 'coolers': 1.0, 'sure': 1.0, 'cooler': 2.0, 'a': 2.0, 'just': 1.0, 'not': 4.0, 'i': 2.0, 'most': 1.0, 'something': 1.0, 'real': 1.0, 'are': 1.0, 'my': 1.0, 'water': 1.0, 'bag': 1.0, 'proof': 1.0, 'if': 1.0, 'am': 1.0, 'melts': 1.0, 'sweat': 1.0, 'so': 1.0, 'ice': 1.0, 'pack': 1.0}
Word element => {'easy': 1.0, 'lid': 1.0, 'my': 1.0, 'just': 1.0, 'large': 1.0, 'sized': 1.0, 'rugged': 1.0, 'since': 1.0, 'a': 2.0, 'lunch': 1.0, 'is': 7.0, 'zipper': 1.0, 'exactly': 1.0, 'to': 2.0, 'insulated': 1.0, 'evening': 1.0, 'carrying': 1.0, 'i': 1.0, 'full': 1.0, 'this': 3.0, 'bag': 3.0, 'need': 1.0, 'snacks': 1.0, 'for': 4.0, 'job': 1.0, 'the': 8.0, 'nice': 1.0, 'great': 1.0, 'right': 2.0, 'too': 2.0, 'and': 4.0, 'sturdily': 1.0, 'size': 2.0, 'designed': 1.0, 'dry': 1.0, 'made': 1.0, 'ordered': 1.0, 'compartment': 1.0, 'in': 1.0, 'handle': 1.0, 'top': 1.0, 'of': 1.0, 'gripping': 1.0, 'work': 1.0, 'napkins': 1.0, 'other': 1.0, 'items': 1.0, 'kept': 1.0, 'that': 1.0, 'be': 1.0}
Word element => {'a': 1.0, 'will': 1.0, 'and': 1.0, 'pretty': 1.0, 'this': 1.0, 'is': 1.0, 'be': 1.0, 'product': 1.0, 'exactly': 1.0, 'box': 1.0, 'what': 1.0, 'i': 1.0, 'perfect': 1.0, 'thought': 1.0, 'it': 2.0, 's': 1.0, 'lunch': 1.0, 'was': 1.0, 'so': 1.0}
Word element => {'items': 1.0, 'pretty': 1.0, 'keep': 1.0, 'way': 1.0, 'nice': 1.0, 'top': 1.0, 'up': 1.0, 'spoons': 1.0, 'keeping': 1.0, 'one': 1.0, 'for': 1.0, 'bag': 1.0, 'and': 3.0, 'bib': 1.0, 'feeding': 1.0, 'bottle': 1.0, 'or': 2.0, 'solid': 1.0, 'sippy': 1.0, 'all': 1.0, 'separate': 1.0, 'itself': 1.0, 'placemat': 1.0, 'carried': 1.0, 'clean': 1.0, 'fits': 1.0, 'inside': 1.0, 'cup': 1.0, 'place': 2.0, 'addition': 1.0, 'plastic': 1.0, 'can': 1.0, 'without': 1.0, 'be': 1.0, 'to': 2.0, 'in': 2.0, 'too': 1.0, 'by': 1.0, 'great': 1.0, 'diaper': 1.0, 'the': 1.0, 'foods': 1.0, 'full': 1.0}
Word element => {'useful': 1.0, 'extremely': 1.0, 'share': 1.0, 'wanted': 1.0, 'subject': 1.0, 'much': 1.0, 'necessities': 1.0, 'toddler': 1.0, 'common': 1.0, 'few': 1.0, 'well': 1.0, 'works': 1.0, 'other': 1.0, 'purchasing': 1.0, 'considering': 1.0, 'without': 1.0, 'available': 1.0, 'say': 1.0, 'hours': 1.0, 'stays': 1.0, 'freezer': 1.0, 'our': 1.0, 'folds': 1.0, 'itself': 1.0, 'store': 1.0, 'straps': 1.0, 'really': 2.0, 'yogurt': 1.0, 'milk': 1.0, 'carry': 1.0, 'safe': 1.0, 'at': 2.0, 'keep': 1.0, 'want': 1.0, 'small': 4.0, 'go': 2.0, 'fridge': 2.0, 'shifting': 1.0, 'full': 2.0, 'nice': 1.0, 'little': 2.0, 'when': 1.0, 'won': 3.0, 'shaped': 1.0, 'larger': 4.0, 'attach': 2.0, 'too': 2.0, 'with': 5.0, 'oh': 2.0, 'bar': 2.0, 'stroller': 3.0, 'how': 1.0, 'besides': 1.0, 'lol': 1.0, 'time': 1.0, 'top': 1.0, 'back': 1.0, 'spaz': 1.0, 'the': 21.0, 'vent': 1.0, 'by': 1.0, 'though': 1.0, 'out': 2.0, 'off': 2.0, 'third': 1.0, 'those': 1.0, 'down': 1.0, 'lug': 1.0, 'space': 1.0, 'always': 1.0, 'trips': 1.0, 'them': 3.0, 'any': 1.0, 'recommendation': 1.0, 'or': 7.0, 'hubby': 1.0, 'lined': 1.0, 'food': 1.0, 'neck': 1.0, 'despise': 1.0, 'like': 3.0, 'this': 7.0, 'bottle': 3.0, 'highly': 2.0, 'marriage': 1.0, 'because': 2.0, 'thrilled': 1.0, 'that': 5.0, 'easily': 1.0, 'not': 2.0, 'ordered': 1.0, 'from': 1.0, 'purpose': 1.0, 'heavy': 3.0, 'as': 1.0, 't': 7.0, '8': 1.0, 'nursettes': 1.0, 'here': 1.0, 'it': 16.0, 'be': 4.0, 'think': 2.0, 'another': 2.0, 'but': 8.0, 'daily': 1.0, 'cells': 1.0, 'protected': 1.0, 'ok': 1.0, 'am': 5.0, 'valuable': 1.0, 'cell': 2.0, 'fav': 1.0, 'love': 1.0, 'yet': 1.0, 'for': 12.0, 'setting': 1.0, 'doesn': 2.0, 'these': 2.0, 'i': 24.0, 'checking': 1.0, 'pack': 3.0, 'better': 1.0, 'make': 1.0, 'a': 12.0, 'bag': 9.0, 'fit': 3.0, 'mighty': 1.0, 'need': 1.0, 'also': 2.0, 'intended': 1.0, 'recommend': 2.0, 'candy': 1.0, 'camera': 3.0, 'of': 8.0, 'even': 2.0, 'one': 5.0, '5': 1.0, 'versatile': 1.0, 'got': 1.0, 'cold': 3.0, 'to': 16.0, 'now': 3.0, 'air': 1.0, 'away': 1.0, 'strap': 2.0, 'fill': 1.0, 'put': 2.0, 'do': 1.0, 'playtex': 2.0, 'so': 2.0, 'is': 8.0, 'can': 2.0, 'items': 1.0, 'on': 2.0, 'long': 2.0, 'bff': 1.0, 'in': 5.0, 'smashed': 1.0, 'pediasure': 1.0, 'guy': 1.0, 'dinged': 1.0, 'disney': 1.0, 'holds': 2.0, 'least': 1.0, 'around': 2.0, 'just': 3.0, 'constantly': 1.0, 'and': 13.0, 'seperate': 1.0, 'an': 1.0, 'very': 1.0, 'find': 2.0, 'insulation': 3.0, 'have': 5.0, 'admit': 1.0, 'box': 1.0, 'pour': 1.0, 'sure': 1.0, 'best': 1.0, 'compared': 1.0, 'get': 3.0, 'insulated': 1.0, 'take': 1.0, 'inside': 5.0, 'handing': 1.0, 'lunch': 1.0, 'probably': 1.0, 'keeps': 1.0, 'true': 1.0, 'use': 2.0, 'there': 1.0, 'ju': 4.0, 'perfectly': 1.0, 'my': 9.0, 'room': 1.0, 'are': 1.0, 'options': 1.0, 'you': 4.0, 'packs': 1.0, 'things': 2.0, 'up': 1.0, 'sized': 1.0, 'scratched': 1.0, 'weird': 1.0, 'packaged': 1.0, 'clip': 1.0, 'snacks': 1.0, 'crackers': 1.0, 'chips': 1.0, 'could': 1.0, 'will': 1.0, 'gummy': 1.0, 'formula': 1.0, 'etc': 1.0, 'dslr': 2.0, 'enough': 1.0, 'family': 1.0, '4': 1.0, 'place': 1.0, 'they': 3.0, 'don': 1.0, 'super': 2.0, 'squished': 1.0, 'both': 1.0, 'needed': 1.0, 'duty': 1.0, 'sidenote': 1.0, 'holder': 3.0, 'standard': 1.0, 'large': 2.0, 'photo': 1.0, 'pre': 1.0, '6': 4.0, 'carrying': 1.0, 'sometimes': 1.0, 'fuel': 3.0, 'water': 1.0, 'bring': 2.0, 'we': 5.0, 'powder': 1.0, 'ideal': 1.0, 'outside': 1.0, 'bottles': 2.0, 'sorry': 1.0, 'ones': 3.0, 'way': 1.0, 'bags': 3.0, 'matter': 1.0, 'since': 4.0, 'day': 1.0, 'temp': 2.0, 'if': 2.0, 'clipping': 1.0, 'tested': 1.0, 'lot': 2.0, 'haven': 1.0, 'convenient': 1.0, 'your': 1.0, 'where': 1.0}
Word element => {'serves': 1.0, 'and': 2.0, 'almosta': 1.0, 'purpose': 1.0, 'was': 1.0, 'small': 1.0, 'because': 1.0, 'purchased': 1.0, 'cute': 1.0, 'still': 1.0, 'this': 1.0, 'it': 5.0, 'thought': 1.0, 'i': 4.0, 's': 1.0, 'also': 1.0, 'am': 1.0, 'love': 1.0, 'using': 1.0, 'for': 1.0, 'year': 1.0, 'washable': 1.0, 'which': 1.0, 'is': 1.0}
Word element => {'best': 1.0, 'the': 1.0, 'be': 1.0, 'for': 1.0, 'big': 1.0, 'enought': 1.0, 'suitable': 1.0, 'walks': 1.0, 'jju': 1.0, 'this': 1.0, 'bag': 2.0, 'me': 1.0, 'use': 1.0, 'love': 1.0, 'it': 1.0, 's': 1.0, 'and': 2.0, 'as': 1.0, 'mom': 1.0, 'is': 1.0, 'on': 1.0, 'ju': 1.0, 'short': 1.0}
Word element => {'cooler': 1.0, 'bottle': 1.0, 'box': 1.0, 'for': 1.0, 'used': 1.0, 'if': 1.0, 'better': 1.0, 'than': 1.0, 'a': 3.0, 'lunch': 1.0, 'features': 1.0, 'good': 1.0, 'excellent': 1.0, 'too': 1.0, 'versus': 1.0, 'probably': 1.0, 'quality': 1.0, 'very': 1.0, 'print': 1.0, 'cute': 1.0, 'i': 1.0, 'bigger': 1.0, 'lot': 1.0, 'needed': 1.0, 'up': 1.0, 'takes': 1.0, 'much': 1.0, 'room': 1.0, 'in': 1.0, 'diaper': 1.0, 'the': 1.0, 'bag': 1.0}
Word element => {'done': 1.0, 'bottles': 1.0, 'strap': 1.0, 'larger': 1.0, 'later': 1.0, 'that': 1.0, 'well': 2.0, 'for': 1.0, 'i': 2.0, 'my': 1.0, 'be': 1.0, 'a': 2.0, 'going': 1.0, 'back': 1.0, 'will': 1.0, 'do': 1.0, 'brown': 1.0, 'as': 2.0, 'to': 1.0, 'was': 2.0, 'had': 1.0, 'and': 2.0, 'soon': 1.0, 'looking': 1.0, 'would': 1.0, 'work': 1.0, 'but': 1.0, 'food': 1.0, 'spoon': 1.0, 'dr': 1.0, 'on': 1.0, 'wish': 1.0, 'this': 1.0, 'll': 1.0, 'tote': 1.0, 'longer': 1.0, 'it': 2.0, 'looks': 2.0, 'fine': 1.0, 'is': 1.0, 'hold': 1.0, 'like': 1.0, 'just': 1.0, 'the': 2.0, 'design': 1.0, 'cute': 1.0, 'very': 1.0, 'construction': 1.0}
Word element => {'ve': 1.0, 'exception': 1.0, 'such': 1.0, 'the': 4.0, 'either': 1.0, 'pack': 1.0, 'accessories': 1.0, 'impressed': 1.0, 'all': 1.0, 'any': 1.0, 'bags': 1.0, 'absolutely': 1.0, 'm': 1.0, 'used': 2.0, 't': 1.0, 'a': 1.0, 'highly': 1.0, 'ju': 2.0, 'hrs': 1.0, 'wasn': 1.0, 'fuel': 1.0, 'i': 5.0, 'fan': 1.0, 'big': 1.0, 'of': 1.0, '6': 1.0, 'be': 1.0, 'it': 4.0, 'with': 2.0, 'several': 1.0, 'cell': 1.0, 'times': 1.0, 'love': 1.0, 'for': 1.0, 'kept': 1.0, 'ice': 1.0, 'so': 1.0, 'frozen': 2.0, 'breast': 2.0, 'over': 1.0, 'and': 3.0, 'milk': 1.0, 'they': 1.0, 'pump': 1.0, 'came': 1.0, 'my': 1.0, 'medela': 1.0, 'recommend': 1.0, 'was': 1.0}
Word element => {'winner': 1.0, 'products': 1.0, 'out': 1.0, 'cleverly': 1.0, 'made': 1.0, 'well': 2.0, 'makes': 1.0, 'purchases': 1.0, 'certainly': 1.0, 'most': 1.0, 'quality': 1.0, 'with': 1.0, 'impressed': 1.0, 'quite': 1.0, 'favorite': 1.0, 'of': 2.0, 'craftsmanship': 1.0, 'always': 1.0, 'love': 2.0, 'for': 1.0, 'functions': 1.0, 'i': 4.0, 'bags': 1.0, 'and': 7.0, 'artsy': 1.0, 'bag': 4.0, 'the': 6.0, 'ones': 1.0, 'is': 3.0, 'among': 1.0, 'many': 1.0, 'second': 1.0, 'versatile': 1.0, 'it': 1.0, 'this': 4.0, 'perfect': 1.0, 'worthwhile': 1.0, 'having': 1.0, 'in': 1.0, 'would': 1.0, 'each': 1.0, 've': 1.0, 'cleans': 1.0, 'designed': 1.0, 'size': 1.0, 'right': 2.0, 'both': 1.0, 'm': 1.0, 'absolutely': 1.0, 'fun': 1.0, 's': 1.0, 'a': 2.0, 'ju': 4.0, 'must': 1.0, 'first': 1.0, 'occasion': 1.0, 'ways': 1.0, 'definitely': 1.0, 'easily': 1.0, 'fantastic': 1.0, 'my': 1.0, 'purchase': 1.0, 'thought': 1.0, 'purchased': 1.0, 'be': 2.0, 'one': 2.0, 'behave': 1.0, 'recommend': 1.0, 'was': 1.0}
Word element => {'this': 1.0, 'what': 1.0, 'get': 1.0, 'sure': 1.0, 'not': 1.0, 're': 1.0, 'you': 1.0, 'if': 1.0, 'toy': 1.0, 'bother': 1.0, 'will': 1.0, 'make': 1.0, 'so': 1.0, 'are': 1.0, 'don': 1.0, 'up': 1.0, '6': 1.0, 'of': 1.0, 'people': 1.0, 'pop': 1.0, 'loved': 1.0, 'peek': 1.0, 'got': 1.0, 'months': 2.0, 'face': 1.0, 'toys': 1.0, 'keep': 1.0, 'at': 2.0, 'these': 2.0, 'the': 5.0, 'great': 2.0, 'watch': 1.0, 'were': 2.0, 'that': 2.0, 't': 1.0, 'a': 2.0, 'blocks': 2.0, 'to': 4.0, 'now': 1.0, 'first': 1.0, 'colorful': 1.0, 'she': 2.0, 'it': 1.0, '19': 1.0, 'my': 1.0, 'boo': 1.0, 'for': 1.0, 'noise': 1.0, 'restaurant': 1.0, 'enjoys': 1.0, 'stacking': 1.0, 'baby': 2.0, 'them': 2.0, 'and': 3.0, 'i': 1.0, 'adding': 1.0, 'age': 1.0, 'in': 2.0, 'other': 2.0, 'small': 1.0, 'have': 1.0, 'still': 1.0, 'busy': 1.0, 'type': 1.0, 'group': 1.0, 'they': 2.0, 'her': 1.0, 'car': 1.0, 'because': 1.0}
Word element => {'later': 1.0, 'can': 1.0, 'maybe': 1.0, 'bib': 1.0, 'like': 1.0, 'things': 1.0, 'little': 1.0, 'has': 1.0, 'out': 1.0, 'made': 1.0, 'room': 1.0, 'compliments': 1.0, 'be': 1.0, 'transforms': 1.0, 'to': 2.0, 'and': 3.0, 'get': 1.0, 'a': 4.0, 't': 1.0, 'great': 1.0, 'the': 2.0, 'carrier': 5.0, 'fashionable': 3.0, 'original': 2.0, 'so': 3.0, 'much': 2.0, 'town': 1.0, 'however': 1.0, 'free': 1.0, 'i': 4.0, 'got': 1.0, 'my': 2.0, 'make': 1.0, 'put': 1.0, 'your': 1.0, 'on': 3.0, 'will': 1.0, 'whenever': 1.0, 'baby': 3.0, 'wore': 1.0, 'bought': 1.0, 'one': 1.0, 'lint': 2.0, 'into': 1.0, 'that': 1.0, 'looks': 2.0, 'it': 3.0, 'improvement': 1.0, 'cover': 1.0, 'really': 1.0, 'amazing': 1.0, 'how': 1.0, 'turn': 1.0, 'bjorn': 2.0, 'in': 1.0, 'this': 1.0, 'wish': 1.0, 'they': 2.0, 'pocket': 1.0}
Word element => {'back': 1.0, 'hurts': 1.0, 'pretty': 1.0, 'versatilecons': 1.0, 'carriers': 1.0, 'other': 1.0, 'cooler': 1.0, 'summer': 1.0, 'pros': 1.0, 'it': 1.0, 'stylish': 1.0, 'not': 1.0, 'is': 1.0, 'hot': 1.0, 'than': 1.0, 'especially': 1.0, 'fast': 2.0, 'for': 1.0, 'much': 1.0}
Word element => {'toddler': 1.0, 'his': 1.0, 'use': 1.0, 'it': 2.0, 'get': 1.0, 'they': 1.0, 'where': 1.0, 'always': 1.0, 'my': 3.0, 'baby': 2.0, 'well': 2.0, 'toy': 1.0, 'bjorn': 1.0, 'in': 2.0, 'a': 2.0, 'this': 3.0, 'its': 1.0, 'only': 1.0, 'he': 2.0, 'plan': 1.0, 'is': 3.0, 'people': 1.0, 'many': 1.0, 'with': 1.0, 'hip': 1.0, 'wearing': 1.0, 'so': 2.0, 'i': 4.0, 'beautiful': 1.0, 'am': 1.0, 'being': 1.0, 'can': 1.0, 'firm': 1.0, 'but': 2.0, 'investment': 1.0, 'comfortable': 1.0, 'free': 2.0, 'now': 1.0, 'to': 2.0, 'eight': 1.0, 'are': 2.0, 'months': 1.0, 'your': 1.0, 'on': 2.0, 'not': 1.0, 'me': 2.0, 'into': 1.0, 'loves': 1.0, 'worth': 1.0, 'outgrew': 1.0, 'or': 1.0, 'hold': 2.0, 'him': 1.0, 'the': 2.0, 'wrap': 3.0, 'hands': 1.0, 'years': 1.0, 'onto': 1.0, 'asking': 1.0, 'too': 1.0, 'and': 2.0, 'play': 1.0, 'believer': 1.0, 'compliments': 1.0, 'receive': 1.0}
Word element => {'cuddling': 1.0, 'or': 1.0, 'nursing': 1.0, 'around': 1.0, 'to': 1.0, 'for': 3.0, 'newborn': 1.0, 'perfect': 1.0, 'they': 1.0, 'are': 2.0, 'carrier': 1.0, 'toddler': 1.0, 'will': 1.0, 'carrying': 1.0, 'because': 1.0, 'you': 1.0, 's': 1.0, 'piece': 1.0, 'it': 1.0, 'maya': 1.0, 'simply': 1.0, 'baby': 1.0, 'years': 1.0, 'sturdy': 1.0, 'metal': 1.0, 'of': 1.0, 'wrap': 1.0, 'a': 2.0, 'the': 3.0, 'and': 2.0, 'fantastic': 1.0, 'last': 1.0, 'solid': 2.0, 'is': 2.0, 'many': 2.0, 'material': 1.0, 'wool': 1.0, 'rings': 1.0}
Word element => {'price': 1.0, 'think': 1.0, 'line': 1.0, 'wash': 1.0, 'easy': 1.0, 'thick': 1.0, 'fabric': 1.0, 'calm': 1.0, 'so': 1.0, 'great': 1.0, 'stays': 1.0, 'purchased': 1.0, 'even': 1.0, 've': 1.0, 'cries': 1.0, 'stroller': 1.0, 'or': 1.0, 'cart': 1.0, 'dry': 1.0, 'car': 1.0, 'with': 1.0, 'right': 1.0, 'out': 1.0, 'him': 1.0, 'take': 1.0, 'godsend': 1.0, 'old': 1.0, '8': 1.0, 'born': 1.0, 'at': 2.0, 'store': 2.0, 'was': 2.0, 'son': 1.0, 'seat': 1.0, 'to': 2.0, 'as': 1.0, 'whereas': 1.0, 'about': 1.0, 'stopped': 1.0, 'it': 9.0, 'month': 1.0, 'i': 7.0, 'pounds': 1.0, 'when': 2.0, 'lbs': 1.0, 'chores': 1.0, 'he': 5.0, 'received': 1.0, 'downside': 1.0, 'using': 1.0, 'where': 1.0, 'for': 1.0, 'love': 1.0, 'quality': 1.0, 'baby': 1.0, 'started': 1.0, 'because': 2.0, 'gift': 1.0, 'asking': 1.0, 'too': 1.0, 'and': 4.0, 'only': 1.0, 'do': 1.0, '5': 1.0, 'falls': 1.0, 'small': 1.0, 'asleep': 1.0, 'wrap': 1.0, 'the': 8.0, 'carrier': 1.0, 'a': 5.0, 's': 3.0, 'loves': 1.0, 'been': 2.0, 'this': 1.0, 'perfect': 1.0, 'in': 3.0, 'is': 3.0, 'around': 1.0, 'house': 1.0, 'also': 1.0, 'will': 1.0, 'nap': 1.0, 'my': 2.0, 'household': 1.0, 'wearing': 1.0, 'while': 1.0}
Word element => {'anymore': 1.0, 'worn': 1.0, 'be': 1.0, 'to': 1.0, 'friend': 1.0, 'enjoys': 1.0, 's': 2.0, 'a': 2.0, 'that': 1.0, 'at': 1.0, 'bigger': 1.0, 'wee': 1.0, 'big': 1.0, 'until': 1.0, 'love': 2.0, 'one': 2.0, 'tried': 1.0, 'i': 2.0, 'old': 1.0, 'wrap': 1.0, 'the': 2.0, 'is': 1.0, 'more': 1.0, 'carrier': 1.0, 'everyday': 1.0, 'cannot': 1.0, 'in': 1.0, 'generally': 1.0, 'smiles': 1.0, '2': 1.0, 'but': 1.0, 'house': 1.0, 'use': 2.0, 'too': 1.0, 'and': 2.0, 'me': 1.0, 'fell': 1.0, 'it': 3.0, 'maya': 1.0, 'he': 3.0, 'my': 2.0, 'little': 1.0, 'even': 3.0, 'when': 1.0, 'have': 1.0, 'sees': 1.0, 'put': 1.0, 'on': 1.0, '5': 1.0, 'year': 1.0, 'structured': 1.0, 'though': 1.0, 'says': 1.0}
Word element => {'size': 1.0, 'the': 1.0, 'more': 1.0, 'but': 1.0, 'too': 1.0, 'on': 1.0, 'is': 1.0, 'great': 1.0, 'rings': 1.0, 'awesome': 1.0, 'and': 1.0, 'quality': 1.0, 'good': 1.0, 'sturdy': 1.0, 'super': 1.0, 'soft': 1.0, 'larger': 1.0, 'fabric': 1.0, 'colors': 1.0, 'sizing': 1.0}
Word element => {'recommend': 1.0, 'definitely': 2.0, 'entertained': 1.0, 'keep': 1.0, 'toys': 1.0, 'clipping': 1.0, 'great': 1.0, 'cover': 1.0, 'nursing': 1.0, 'perfect': 1.0, 's': 1.0, 'notes': 1.0, 'additional': 1.0, 'left': 1.0, 'requires': 1.0, 'everything': 1.0, 'since': 1.0, 'without': 1.0, 'wants': 1.0, '30': 1.0, 'baby': 2.0, 'she': 5.0, 'it': 4.0, 'can': 2.0, 'but': 2.0, 'particularly': 1.0, 'most': 1.0, 'formula': 1.0, 'continued': 1.0, 'smaller': 1.0, 'use': 1.0, 'her': 5.0, 'when': 4.0, 'on': 1.0, 'carried': 1.0, 'some': 1.0, 'spent': 1.0, 'product': 1.0, 'year': 2.0, 'say': 1.0, 'aside': 1.0, 'from': 1.0, 'while': 1.0, 'money': 1.0, 'bought': 1.0, 'nothing': 1.0, 'been': 2.0, 'that': 1.0, 'ever': 1.0, 'trips': 1.0, 'has': 2.0, 'just': 2.0, 'this': 2.0, 'few': 1.0, 'behind': 1.0, 'walk': 1.0, 'daughter': 1.0, 'still': 1.0, 'course': 1.0, 'enjoy': 1.0, 'best': 1.0, 'wrap': 4.0, 'of': 1.0, 'the': 10.0, 'a': 6.0, 'my': 3.0, 'nearly': 2.0, 'up': 1.0, 'lbs': 1.0, 'was': 2.0, 'minutes': 1.0, 'i': 6.0, 'otherwise': 1.0, 'two': 1.0, 'six': 1.0, 'old': 2.0, 'and': 8.0, 'soon': 2.0, 'to': 8.0, 'as': 5.0, 'be': 3.0, 'only': 2.0, 'put': 2.0, 'do': 1.0, 'much': 1.0, 'way': 1.0, 'at': 2.0, 'is': 5.0, 'handle': 1.0, 'rings': 1.0, 'lifesaver': 2.0, 'needed': 1.0, 'for': 2.0, 'especially': 1.0, 'down': 1.0, 'during': 1.0, 'plane': 1.0, 'in': 2.0, 'us': 1.0, 'countless': 1.0, 'church': 1.0, 'services': 1.0, 'recently': 1.0, 'tethers': 1.0, 'disney': 2.0, 'weeks': 1.0, 'would': 3.0, 'food': 1.0, 'world': 1.0, 'are': 1.0, 'diapers': 1.0, 'hated': 1.0, 'later': 1.0, 'being': 2.0, 'want': 1.0, 'maya': 1.0, 'stroller': 3.0, 'husband': 1.0, 'tied': 1.0, 'pick': 1.0, 'relax': 1.0, 'we': 1.0, 'take': 1.0, 'nap': 1.0, 'shows': 1.0}
Word element => {'ring': 1.0, 't': 1.0, 'didn': 1.0, 'she': 1.0, 'baby': 1.0, 'first': 1.0, 'i': 1.0, 'wrap': 2.0, 'also': 1.0, 'love': 1.0, 'the': 2.0, 'my': 3.0, 'like': 1.0, 'and': 1.0, 'maya': 1.0, 'pretty': 1.0, 'preferred': 1.0, 'from': 1.0, 'momma': 1.0, 'sling': 2.0}
Word element => {'that': 1.0, 'but': 1.0, 'e': 1.0, 'have': 1.0, 's': 1.0, 'tob': 1.0, 'you': 1.0, 'used': 1.0, 'switch': 1.0, 'to': 3.0, 'breastfeed': 1.0, 'can': 1.0, 'than': 1.0, 'weather': 1.0, 'in': 2.0, 'living': 1.0, 'm': 1.0, 'bit': 1.0, 'k': 1.0, 'far': 1.0, 'get': 1.0, 'and': 3.0, 'sleepy': 1.0, 'hot': 2.0, 'baby': 1.0, 'difficult': 1.0, 'because': 1.0, 'wraps': 1.0, 'other': 2.0, 'two': 1.0, 'tan': 1.0, 'own': 1.0, 'great': 1.0, 'the': 2.0, 'i': 3.0, 'one': 1.0, 'a': 4.0, 'wrap': 1.0, 'is': 2.0, 'best': 1.0, 'regularly': 1.0, 'careful': 1.0, 'so': 1.0, 'shoulders': 1.0, 'this': 1.0, 'it': 5.0, 'least': 1.0}
Word element => {'highly': 1.0, 'understand': 1.0, 'is': 1.0, 'easy': 1.0, 'get': 1.0, 'and': 3.0, 'easier': 1.0, 'quick': 1.0, 'with': 1.0, 'an': 1.0, 'video': 1.0, 'to': 3.0, 'recommend': 1.0, 'was': 1.0, 'much': 1.0, 'old': 1.0, 'i': 1.0, 'in': 2.0, 'year': 1.0, 'a': 2.0, 's': 1.0, 'you': 1.0, 'baby': 1.0, 'used': 1.0, 'my': 1.0, 'this': 1.0, 'instructional': 1.0, 'one': 1.0, 'until': 1.0, 'reposition': 1.0, 'or': 1.0, 'little': 1.0, 'it': 2.0, 'she': 1.0, 'out': 1.0, 'of': 1.0, 'there': 1.0, 'than': 1.0, 'different': 1.0, 'are': 1.0, 'about': 1.0, 'several': 1.0, 'ways': 1.0, 'can': 1.0, 'front': 1.0, 'use': 1.0, 'wear': 1.0, 'constantly': 1.0, 'on': 1.0, 'your': 1.0, 'wrap': 1.0, 'the': 2.0, 'side': 1.0}
Word element => {'an': 1.0, 'all': 2.0, 'shorten': 1.0, 'tailor': 1.0, 'bought': 1.0, 'had': 1.0, 'wish': 1.0, 'knee': 1.0, 'shin': 1.0, 'pocket': 1.0, 'knees': 1.0, 'past': 1.0, 'comes': 1.0, 'nursing': 1.0, 'be': 1.0, 'said': 1.0, 'tail': 2.0, 'large': 1.0, 'ordered': 1.0, 'sizing': 1.0, 'criticism': 1.0, 'excited': 1.0, 'very': 1.0, 'difficult': 1.0, 'under': 1.0, 'having': 2.0, 'than': 1.0, 'just': 1.0, 'but': 3.0, 'recommendation': 1.0, 'your': 2.0, '3': 1.0, 'off': 1.0, 'on': 4.0, 'long': 1.0, 'before': 1.0, 'house': 1.0, 'both': 1.0, 'experimented': 1.0, 'baby': 4.0, 'decide': 1.0, 'extremely': 2.0, 'moby': 2.0, 'walk': 1.0, 'clanks': 1.0, 'he': 1.0, 'prefer': 1.0, 'less': 1.0, 'and': 7.0, 'come': 1.0, 'moms': 2.0, 'm': 2.0, 'in': 8.0, 'maya': 3.0, 'our': 2.0, 'to': 11.0, 'because': 2.0, 'that': 3.0, 't': 3.0, 'a': 4.0, 's': 1.0, 'longer': 1.0, 'of': 3.0, 'the': 17.0, 'wrap': 6.0, 'anything': 1.0, 'without': 1.0, 'purchased': 1.0, 'better': 1.0, 'pack': 1.0, 'only': 2.0, 'well': 1.0, 'i': 12.0, 'some': 1.0, 'carrying': 1.0, 'seasoned': 1.0, 'easy': 3.0, 'months': 1.0, 'get': 1.0, 'sure': 1.0, 'have': 5.0, 'different': 1.0, 'for': 1.0, 'fabric': 1.0, 'say': 1.0, 'is': 9.0, 'around': 2.0, 'you': 6.0, 'last': 1.0, 'am': 1.0, 'stylish': 1.0, 'with': 3.0, 'hits': 1.0, 'wear': 1.0, 'it': 11.0, 'public': 1.0, 'hang': 1.0, 'put': 3.0, 'much': 1.0, 'do': 1.0, 'floor': 1.0, 'which': 2.0, 'hold': 1.0, 'isn': 1.0, 'excellent': 1.0, 'really': 1.0, 'sanitary': 1.0, 'fact': 1.0, 'old': 1.0, 'website': 1.0, 'my': 3.0, 'me': 1.0, 'not': 1.0, 'can': 3.0, 'so': 2.0, 'annoying': 1.0, 'leave': 1.0, 'diaper': 1.0, 'bag': 1.0, 'fussy': 1.0, 'pull': 2.0, 'out': 2.0, 'newborn': 1.0, 'if': 3.0, 'rested': 1.0, 'want': 1.0, 'take': 1.0, 'also': 1.0, 'will': 1.0, 'hurry': 1.0, 'medium': 1.0, 'would': 1.0, 'weeks': 1.0, 'this': 2.0, 'product': 2.0}
Word element => {'wanted': 1.0, 'wee': 1.0, 'carriers': 1.0, 'favorite': 1.0, 'haven': 1.0, 'of': 1.0, 'always': 1.0, 'carrier': 2.0, 'used': 2.0, 'i': 7.0, 'tried': 1.0, 've': 2.0, 'newborn': 1.0, 'moby': 1.0, 'looking': 1.0, 'but': 3.0, 'an': 1.0, 'all': 1.0, 'easy': 3.0, 'for': 3.0, 'liked': 1.0, 'is': 1.0, 'in': 1.0, 'said': 1.0, 'on': 1.0, 'off': 1.0, 'this': 1.0, 'it': 1.0, 'with': 1.0, 'my': 2.0, 'little': 1.0, 'tan': 1.0, 'baby': 1.0, 'was': 2.0, 'k': 1.0, 'and': 1.0, 'that': 1.0, 'so': 1.0, 'kinds': 1.0, 'hot': 1.0, 'same': 1.0, 't': 1.0, 'a': 1.0, 'the': 3.0, 'babes': 1.0, 'wrap': 1.0, 'true': 1.0, 'like': 1.0}
Word element => {'shoulder': 1.0, 'padded': 1.0, 'of': 1.0, 'm': 1.0, 'fan': 1.0, 'is': 1.0, 'stars': 1.0, '5': 1.0, 'give': 1.0, 'didn': 1.0, 'worn': 1.0, 'have': 1.0, 'loved': 1.0, 'being': 1.0, 'how': 1.0, 'around': 1.0, 'reason': 1.0, 'in': 1.0, 'newborn': 2.0, 'could': 1.0, 'not': 1.0, 'because': 1.0, 'know': 1.0, 'done': 1.0, 'gotten': 1.0, 'and': 1.0, 'anything': 1.0, 'only': 1.0, 'it': 2.0, 'this': 1.0, 'with': 1.0, 'don': 1.0, 'i': 4.0, 't': 2.0, 'the': 3.0, 'my': 1.0, 'toddler': 1.0, 'house': 1.0, 'without': 1.0, 'a': 3.0, 'wrap': 1.0}
Word element => {'either': 1.0, 'option': 1.0, 't': 1.0, 'don': 1.0, 'placement': 1.0, 'padding': 1.0, 'wear': 2.0, 'because': 2.0, 'stars': 1.0, 'right': 1.0, 'number': 1.0, 'maximum': 1.0, 'beautiful': 1.0, 'only': 1.0, 'its': 1.0, 'complimented': 1.0, 'side': 1.0, 'wraps': 1.0, 'other': 1.0, 'children': 1.0, 'wrapped': 1.0, 'your': 1.0, 'on': 4.0, 'like': 3.0, '4': 1.0, 'i': 5.0, 'old': 1.0, 'have': 2.0, 'able': 1.0, 'shoulder': 1.0, 'can': 1.0, 'but': 1.0, 'worn': 1.0, 'toddler': 2.0, 'slings': 1.0, 'sits': 1.0, 'be': 1.0, 'often': 1.0, 'tightly': 1.0, 'my': 5.0, 'daughter': 1.0, 'always': 1.0, 'of': 3.0, 'openness': 1.0, 'youngest': 1.0, 'she': 1.0, 'it': 2.0, 'month': 1.0, 'did': 2.0, 'give': 1.0, 'not': 2.0, 'maya': 1.0, 'loves': 1.0, 'that': 1.0, 'the': 8.0, 'wrap': 1.0, 'well': 1.0, 'you': 2.0, 'am': 2.0, 'tote': 1.0, 'to': 4.0, 'as': 2.0, 'use': 1.0, 'carry': 1.0, 'in': 1.0, 'ring': 1.0, 'colors': 1.0, 'though': 1.0, 'sling': 2.0, 'with': 1.0, 'hip': 1.0, 'and': 2.0}
Word element => {'gift': 1.0, 'received': 1.0, 'who': 1.0, 'new': 1.0, 'handy': 1.0, 'which': 1.0, 'pocket': 1.0, 'on': 1.0, 'put': 2.0, 'one': 1.0, 'does': 1.0, 'also': 1.0, 'in': 1.0, 'as': 1.0, 'very': 3.0, 'my': 1.0, 'the': 1.0, 'great': 1.0, 'is': 3.0, 'into': 1.0, 'loves': 1.0, 'thrilled': 1.0, 'shower': 1.0, 'it': 1.0, 'this': 2.0, 'and': 4.0, 'comfy': 1.0, 'a': 2.0, 'wrap': 2.0, 'so': 1.0, 'baby': 3.0, 'daughter': 1.0, 'mom': 2.0, 'has': 3.0, 'free': 1.0, 'hands': 1.0, 'easy': 1.0, 'was': 1.0, 'to': 1.0}
Word element => {'perfect': 1.0, 'weight': 1.0, 'for': 1.0, 'comfortable': 1.0, 'you': 2.0, 'more': 2.0, 'the': 2.0, 'find': 1.0, 'distributed': 1.0, 'style': 1.0, 'back': 1.0, 'ergo': 1.0, 'if': 1.0, 'is': 1.0, 'on': 1.0, 'carrier': 1.0, 'have': 1.0, 'this': 1.0, 'might': 1.0, 'i': 1.0, 'hips': 1.0, 'a': 1.0, 'just': 1.0, 'because': 1.0, 'strong': 1.0, 'be': 1.0}
Word element => {'bad': 1.0, 'nothing': 1.0, 'have': 1.0, 'off': 1.0, 'replacement': 2.0, 'get': 1.0, 'm': 1.0, 'daughter': 1.0, 'when': 1.0, 'it': 4.0, 'first': 1.0, 'this': 2.0, 'with': 1.0, 'still': 1.0, 'and': 3.0, 'using': 1.0, 'product': 1.0, 'cheap': 1.0, 'for': 3.0, 'i': 4.0, 'about': 1.0, 'battery': 3.0, 'night': 1.0, 'back': 1.0, 'currently': 1.0, 'feb': 1.0, 'the': 3.0, '2011': 1.0, 'my': 2.0, 'dead': 1.0, '2nd': 1.0, 'in': 1.0, 'originally': 1.0, 'original': 1.0, 'so': 1.0, 'lasted': 1.0, 'bought': 1.0, 'months': 1.0, 'strong': 1.0, 'on': 1.0, 'of': 1.0, 'amazon': 1.0, 'use': 1.0, 'every': 1.0, 'then': 1.0, 'sat': 1.0, 'say': 1.0, 'is': 1.0, 'around': 1.0, 'going': 1.0, 'a': 2.0, 'almost': 1.0, 'year': 1.0, 'turned': 1.0, 'was': 2.0, '12': 1.0, 'had': 1.0, 'to': 2.0}
Word element => {'without': 1.0, 'wall': 1.0, 'sleep': 1.0, 'through': 1.0, 'heard': 1.0, 'be': 1.0, 'can': 1.0, 'although': 1.0, 'as': 1.0, 'monitor': 2.0, 'purchased': 1.0, 'side': 1.0, 'recommend': 1.0, 'sure': 1.0, 'would': 1.0, 'video': 1.0, 'product': 1.0, 'snuza': 2.0, 'over': 1.0, 'got': 1.0, 'portability': 1.0, 'debated': 1.0, 'on': 1.0, 'decided': 1.0, 'bought': 1.0, '5': 1.0, 'swaddle': 1.0, 'between': 1.0, 'use': 3.0, 'wakes': 1.0, 'front': 1.0, 'just': 2.0, 'them': 1.0, 'monitors': 2.0, 'night': 1.0, 'baby': 3.0, 'now': 1.0, 'constant': 1.0, 'vibrating': 1.0, 'had': 4.0, 'month': 1.0, 'it': 3.0, 'angelcare': 1.0, 'sideways': 1.0, 'up': 1.0, 'day': 2.0, 'blow': 1.0, 'they': 1.0, 'gives': 1.0, 'note': 1.0, 'twins': 1.0, 'of': 4.0, 'the': 14.0, 'these': 1.0, 'for': 2.0, 'such': 1.0, '2': 1.0, 'wearing': 1.0, 'mind': 1.0, 'with': 2.0, 'but': 3.0, 'ac': 1.0, 'when': 2.0, 'sensor': 2.0, 'scared': 1.0, 'sack': 1.0, 'dont': 1.0, 'found': 1.0, 'poo': 1.0, 'are': 2.0, 'first': 1.0, 'all': 2.0, 'well': 1.0, 'i': 4.0, 'two': 1.0, 'false': 1.0, 'premature': 1.0, 'alarm': 2.0, 'peace': 1.0, '1': 1.0, 'reasons': 1.0, 'my': 1.0, 'me': 1.0, 'not': 1.0, 'and': 6.0, 'months': 1.0, 'moved': 1.0, 'at': 2.0, 'we': 7.0, 'issues': 1.0, 'one': 2.0, 'rolling': 1.0, 'off': 1.0, 'neither': 1.0, 'have': 3.0, 'a': 5.0, 'small': 1.0, 'few': 1.0, 'this': 3.0, 'alarms': 1.0, 'contact': 1.0, 'because': 2.0, 'that': 2.0, 'bedroom': 1.0, 'wrap': 1.0, 'into': 1.0, 'really': 1.0, 'also': 1.0, 'us': 1.0, 'was': 3.0, 'in': 2.0, 'problem': 1.0, 'during': 1.0, 'babies': 2.0, 'more': 1.0, 'active': 1.0, 'alert': 1.0, 'or': 1.0, 'audible': 1.0, 'only': 1.0, 'old': 2.0, 'run': 1.0, 'cleaning': 1.0, 'crevaces': 1.0, 'out': 1.0}
Word element => {'has': 1.0, 'it': 4.0, 'this': 2.0, 'first': 1.0, 'loud': 1.0, 'amazing': 1.0, 'baby': 1.0, 'the': 2.0, 'check': 1.0, 'i': 4.0, 'enough': 1.0, 'any': 1.0, 'to': 3.0, 'recommend': 1.0, 'was': 1.0, 'more': 1.0, 'is': 2.0, 'm': 1.0, 'mom': 2.0, 'waking': 1.0, 'thing': 1.0, 'on': 1.0, 'constantly': 1.0, 'pretty': 1.0, 'and': 3.0, 'receiving': 1.0, 'setting': 1.0, 'me': 1.0, 'mode': 1.0, 'immediately': 1.0, 'up': 2.0, 'sound': 1.0, 'wake': 1.0, 'silent': 1.0, 'time': 1.0, 'so': 1.0, 'that': 1.0, 'you': 1.0, 'a': 3.0, 's': 1.0, 'know': 1.0, 'working': 1.0, 'tested': 1.0, 'out': 1.0, 'upon': 1.0, 'new': 2.0, 'would': 1.0, 'alarm': 1.0, 'than': 1.0}
Word element => {'few': 1.0, 'had': 1.0, 'only': 1.0, 'rock': 1.0, 'home': 1.0, 'i': 2.0, 'us': 1.0, 'daughter': 1.0, 'this': 1.0, 'sleeper': 1.0, 'found': 1.0, 'refused': 1.0, 'days': 1.0, 'episodes': 1.0, 'bradycardia': 1.0, 'alarms': 1.0, 'nicu': 1.0, 'false': 1.0, 'can': 1.0, 'monitor': 3.0, 'play': 1.0, 'and': 3.0, 'that': 1.0, 'price': 1.0, 'spent': 1.0, 's': 1.0, 'we': 2.0, 'a': 2.0, 'in': 2.0, 'having': 1.0, 'apnea': 1.0, '15': 1.0, 'due': 1.0, 'the': 5.0, 'with': 1.0, 'she': 1.0, 'it': 2.0, 'our': 1.0, 'to': 2.0, 'doctors': 1.0, 'send': 1.0, 'baby': 1.0, 'started': 1.0, 'googling': 1.0, 'love': 1.0, 'snuza': 1.0, 'halo': 1.0, 'glad': 1.0, 'when': 1.0, 'am': 1.0, 'so': 1.0, 'small': 1.0, 'did': 1.0, 'my': 1.0, 'use': 1.0, 'is': 1.0, 'sleeps': 1.0, 'fisher': 1.0}
Word element => {'of': 1.0, 'peace': 1.0, 'parent': 1.0, 'enough': 1.0, 'on': 1.0, 'diaper': 1.0, 'not': 1.0, 'fault': 1.0, 'would': 1.0, 'alarm': 1.0, 'had': 1.0, 'only': 1.0, 'snug': 1.0, 'have': 1.0, 'nicu': 1.0, 'but': 1.0, '2': 1.0, 'false': 1.0, 'can': 2.0, 'week': 1.0, 'lifesaver': 1.0, 'and': 2.0, 'son': 1.0, 'law': 1.0, 'since': 1.0, 'born': 1.0, 'without': 1.0, 'the': 1.0, 'we': 2.0, 'a': 3.0, 't': 1.0, 'great': 1.0, 'affect': 1.0, 'defect': 2.0, 'months': 1.0, 'one': 1.0, 'bought': 1.0, 'putting': 1.0, 'be': 1.0, 'onto': 1.0, 'this': 2.0, 'mind': 1.0, 'with': 1.0, 'diapers': 1.0, 'wouldn': 1.0, 'heart': 2.0, 'it': 4.0, 'in': 3.0, 'honestly': 1.0, 'product': 1.0, 'for': 4.0, 'i': 3.0, 'able': 1.0, 'us': 2.0, 'after': 1.0, 'recommend': 1.0, 'was': 2.0, 'say': 1.0, 'any': 1.0, 'to': 2.0, 'sleep': 1.0, 'has': 1.0, 'that': 1.0, 'been': 1.0, 'especially': 1.0, 'spent': 1.0, 'his': 4.0, 'mother': 1.0, 'breathing': 1.0, 'my': 3.0, 'fits': 1.0, 'pampers': 1.0}
Word element => {'friends': 1.0, 'several': 1.0, 'recommended': 1.0, 'this': 1.0, 'blanket': 1.0, 'diaper': 1.0, 'on': 1.0, 'sliding': 1.0, 'all': 1.0, 'to': 3.0, 'was': 1.0, 'due': 1.0, 'have': 2.0, 'went': 1.0, 'my': 2.0, 'only': 1.0, 'with': 1.0, 'and': 3.0, 'over': 1.0, 'up': 1.0, 'there': 1.0, 'me': 1.0, 'give': 1.0, 'love': 1.0, 'stars': 1.0, '4': 2.0, 'i': 4.0, 'old': 1.0, 'off': 1.0, 'covered': 1.0, 'could': 1.0, 't': 1.0, 'a': 2.0, 'hear': 2.0, 'am': 1.0, 'times': 1.0, 'barely': 1.0, 'when': 1.0, 'it': 6.0, 'month': 1.0, 'in': 1.0, 'few': 1.0, 'worried': 1.0, 'still': 1.0, 'because': 1.0, 'does': 1.0, 'wouldn': 1.0, 'even': 1.0, 'him': 1.0, 'right': 1.0, 'been': 1.0, 'that': 1.0, 'next': 1.0, 'bed': 1.0, 'but': 1.0}
Word element => {'how': 1.0, 'can': 1.0, 'on': 1.0, 'least': 1.0, 'things': 1.0, 'at': 1.0, 'explain': 1.0, 'birth': 1.0, 'year': 1.0, 'from': 2.0, 'my': 2.0, 'are': 1.0, 'mind': 1.0, 'peace': 1.0, 'to': 1.0, 'now': 2.0, 'have': 2.0, 'shower': 1.0, 'with': 1.0, 'this': 2.0, 'great': 1.0, 't': 1.0, '2': 1.0, 'such': 1.0, 'these': 2.0, 'gift': 1.0, 'absolutely': 1.0, 'month': 1.0, 'of': 2.0, 'old': 2.0, 'i': 4.0, 'love': 1.0, 'one': 2.0, 'think': 1.0, 'is': 1.0, 'single': 1.0, 'that': 1.0, 'every': 1.0, 'child': 1.0, 'enough': 1.0, 'new': 1.0, 'should': 1.0}
Word element => {'angelcare': 1.0, 'switch': 1.0, 'might': 1.0, 'think': 1.0, 'add': 1.0, 'bed': 1.0, 'a': 4.0, 't': 1.0, 's': 5.0, 'when': 1.0, 'movement': 1.0, 'read': 1.0, 'monitor': 2.0, 'layers': 1.0, 'our': 4.0, 'any': 1.0, 'on': 3.0, 'stomach': 2.0, 'get': 1.0, 'sure': 2.0, 'easy': 1.0, 'enough': 3.0, 'off': 1.0, 'over': 1.0, 'use': 1.0, 'false': 1.0, 'pants': 1.0, 'make': 1.0, 'goes': 1.0, 'others': 1.0, 'baby': 5.0, 'northern': 1.0, 'unfortunately': 1.0, 'diapers': 1.0, 'are': 1.0, 'product': 1.0, 'love': 1.0, 'where': 1.0, 'it': 5.0, 'onesie': 1.0, 'mentioned': 1.0, 'folding': 1.0, 'as': 1.0, 'diaper': 2.0, 'this': 1.0, 'alarms': 1.0, 'wanted': 1.0, 'instead': 1.0, 'even': 1.0, 'cloth': 1.0, 'close': 1.0, 'killing': 1.0, 'me': 1.0, 'not': 1.0, 'and': 4.0, 'too': 1.0, 'seem': 1.0, 'that': 3.0, 'been': 1.0, 'is': 3.0, 'firmly': 1.0, 'can': 1.0, 'so': 1.0, 've': 1.0, 'alarm': 1.0, 'be': 1.0, 'i': 5.0, 'well': 1.0, 'putting': 1.0, 'we': 2.0, 'fine': 1.0, 'do': 1.0, 'in': 5.0, 'using': 1.0, 'wiggling': 1.0, 'winter': 1.0, 'az': 1.0, 'give': 1.0, 'there': 1.0, 'no': 1.0, 'but': 3.0, 'ac': 1.0, 'just': 3.0, 'by': 1.0, 'an': 1.0, 'option': 1.0, 'swaddled': 1.0, 'warm': 1.0, 'would': 1.0, 'summer': 1.0, 'either': 1.0, 'or': 1.0, 'the': 8.0, 'natural': 1.0, 'slowing': 1.0, 'breathing': 1.0, 'some': 1.0, 'spent': 1.0, 'to': 10.0, 'against': 1.0, 'pretty': 1.0, 'up': 1.0, 'penny': 1.0, 'hate': 1.0}
Word element => {'correctly': 1.0, 'reposition': 1.0, 'didn': 1.0, 'diaper': 1.0, 'changed': 1.0, 'had': 1.0, 'far': 1.0, 'though': 1.0, 'off': 1.0, 'when': 1.0, 'you': 1.0, 'turn': 1.0, 'in': 1.0, 'alarm': 1.0, 'something': 1.0, 'only': 1.0, 'do': 1.0, 'too': 1.0, 'and': 2.0, 'or': 1.0, 'i': 4.0, 'running': 1.0, 'helped': 1.0, 'anxiety': 1.0, 'this': 2.0, 'with': 1.0, 'it': 3.0, 'was': 2.0, 'sleep': 1.0, 'to': 2.0, 'movements': 1.0, 'constantly': 1.0, 'on': 3.0, 'sounds': 1.0, 'birth': 1.0, 'recommended': 1.0, 'has': 1.0, 'so': 1.0, 'boy': 1.0, 'that': 1.0, 'next': 1.0, 'check': 1.0, 'board': 1.0, 'false': 1.0, 'can': 2.0, 'asleep': 1.0, 'without': 1.0, 'the': 7.0, 'room': 1.0, 'night': 1.0, 'baby': 1.0, 'like': 1.0, 'my': 1.0, 'tick': 2.0, 'vs': 1.0, 'model': 1.0, 'reassuring': 1.0, 'actually': 1.0, 'for': 1.0, 'snuza': 1.0, 't': 1.0, 'a': 2.0, 'go': 1.0, 'during': 1.0, 'ticking': 1.0, 'fall': 1.0, 'is': 1.0, 'very': 1.0}
Word element => {'it': 1.0, 'wonderful': 1.0, 'item': 1.0, 'without': 1.0, 'your': 1.0, 'sleeping': 1.0, 'of': 1.0, 'leave': 1.0, 'baby': 1.0, 'don': 1.0, 'safety': 1.0, 'parents': 1.0, 'one': 1.0, 'for': 1.0, 'and': 1.0, 'peace': 1.0, 'mind': 1.0, 'provides': 1.0, 'gift': 1.0, 't': 1.0, 'the': 1.0, 'perfect': 1.0, 'all': 1.0, 'new': 1.0}
Word element => {'my': 1.0, 'good': 1.0, 'difficult': 1.0, 'find': 1.0, 'still': 1.0, 'second': 1.0, 'is': 2.0, 'a': 1.0, 'it': 1.0, 'only': 1.0, 'lasted': 1.0, 'all': 1.0, 'they': 1.0, 'but': 3.0, 'much': 1.0, 'working': 1.0, 'like': 1.0, 'and': 1.0, 'monitor': 2.0, 'another': 1.0, 'baby': 1.0, 'two': 1.0, 'battries': 1.0, 'night': 1.0, 'battery': 3.0, 'i': 3.0, 'for': 1.0, 'one': 1.0, 'in': 1.0, 'bought': 2.0, 'saft': 1.0, 'to': 2.0, 'had': 1.0, 'was': 1.0, 'very': 1.0, 'doa': 1.0, 'the': 4.0, 'ones': 1.0, 'replace': 1.0, 'original': 2.0}
Word element => {'to': 1.0, 'overall': 1.0, 'twice': 1.0, 'happen': 1.0, 'belly': 1.0, 'all': 1.0, 'any': 1.0, 'snapped': 1.0, 'from': 1.0, 'slot': 1.0, 'apparent': 1.0, 'that': 3.0, 'been': 1.0, 'discovered': 1.0, 'a': 4.0, 'anyone': 1.0, 'and': 5.0, 'too': 1.0, 'awake': 1.0, 'in': 1.0, 'randomly': 1.0, 'no': 1.0, 'battery': 4.0, 'for': 1.0, 'snuza': 4.0, 'product': 2.0, 'stars': 1.0, 'off': 4.0, 'cover': 1.0, 'enough': 1.0, 'not': 2.0, 'started': 1.0, 'baby': 1.0, 'night': 1.0, 'when': 3.0, 'got': 1.0, 'month': 1.0, 'it': 6.0, 'went': 1.0, 'come': 1.0, 'bought': 2.0, 'took': 1.0, 'i': 9.0, 'going': 2.0, 'alarm': 4.0, 'issues': 1.0, 'have': 3.0, 'life': 1.0, 'depleted': 2.0, 'just': 1.0, 'was': 3.0, 'back': 1.0, 'away': 1.0, 'but': 1.0, '2': 1.0, 'anyhow': 1.0, 'reason': 1.0, 'isnt': 1.0, 'with': 2.0, 'of': 1.0, 'the': 20.0, 'so': 2.0, 'way': 1.0, 'explain': 1.0, 'since': 2.0, 'great': 1.0, 'option': 1.0, 'at': 1.0, 'ago': 2.0, 't': 1.0, 'replacement': 1.0, 'out': 1.0, 'haven': 1.0, 'had': 3.0, 'hooked': 1.0, 'like': 1.0, 'has': 1.0, 'seemed': 1.0, 'ticking': 3.0, 'though': 1.0, 'during': 1.0, 'goes': 1.0, 'sound': 2.0, 'use': 2.0, 'naps': 1.0, 'given': 1.0, 'this': 2.0, '5': 1.0, 'if': 2.0, 'as': 1.0, 'diaper': 2.0, 'would': 3.0, 'weeks': 1.0, 'tight': 1.0, 'or': 2.0, 'there': 1.0, 'plus': 1.0, 'are': 1.0, 'about': 2.0, 'gaps': 1.0, 'will': 2.0, 'received': 1.0, 'also': 1.0, 'gets': 1.0, 'recommend': 1.0, 'full': 1.0, 'overnight': 1.0}
Word element => {'penny': 1.0, 'every': 1.0, 'worth': 1.0, 'sids': 1.0, 'preventing': 1.0, 'buy': 1.0, 'tummy': 1.0, 'his': 1.0, 'on': 1.0, 'attempts': 1.0, 'sleep': 1.0, 'to': 2.0, 'an': 1.0, 'wake': 1.0, 'includes': 1.0, 'does': 2.0, 'even': 1.0, 'and': 2.0, 'go': 2.0, 'before': 1.0, '5': 1.0, 'under': 1.0, 'the': 9.0, 'additional': 1.0, 'diaper': 1.0, 'that': 1.0, 'differs': 1.0, 'best': 1.0, 'from': 1.0, 'it': 5.0, 'this': 2.0, 'available': 1.0, 'baby': 3.0, 'vibrates': 1.0, 'is': 4.0, 'completely': 1.0, 'there': 1.0, 'feature': 2.0, 'product': 1.0, 'snuza': 3.0, 'idea': 1.0, 'vibration': 1.0, 'device': 2.0, 'cheaper': 1.0, 'sounds': 2.0, 'if': 1.0, 'not': 2.0, 'seconds': 1.0, 'respond': 1.0, 'have': 1.0, 'monitoring': 1.0, 'after': 1.0, 'alarm': 2.0, 'undectable': 1.0, 'my': 1.0, 'has': 1.0, 'no': 1.0, 'continues': 1.0}
Word element => {'have': 2.0, 'on': 4.0, 'think': 1.0, 'careful': 1.0, 'the': 5.0, 'taking': 1.0, 'reassures': 1.0, 'slipped': 1.0, 'so': 1.0, 'out': 1.0, 'than': 1.0, 'stretched': 1.0, 'great': 1.0, '34': 2.0, 'alert': 1.0, 'has': 1.0, 'off': 3.0, 'only': 1.0, 'end': 1.0, 'in': 1.0, 'a': 1.0, 't': 1.0, 'breath': 1.0, 'law': 1.0, 'wide': 1.0, 'worried': 1.0, 'by': 1.0, 'just': 2.0, 'my': 2.0, 'when': 2.0, 'love': 1.0, 'snuza': 1.0, 'gifted': 1.0, 'clipping': 1.0, 'husband': 1.0, 'works': 1.0, 'mother': 1.0, 'cloth': 2.0, 'well': 1.0, 'i': 4.0, 'was': 6.0, 'were': 2.0, 'because': 3.0, 'that': 3.0, 'it': 12.0, 'thicker': 1.0, 'this': 1.0, 'wouldn': 1.0, 'working': 1.0, 'are': 2.0, 'diapers': 2.0, 'and': 8.0, 'but': 2.0, 'work': 1.0, 'false': 1.0, 'will': 1.0, 'disposable': 1.0, 'be': 1.0, 'alerted': 1.0, 'diaper': 1.0, 'if': 1.0, 'something': 1.0, 'alarm': 2.0, 'wrong': 1.0, 'is': 1.0, 'around': 1.0, 'do': 1.0, 'fear': 1.0, 'us': 1.0, 'compact': 1.0, 'bit': 1.0, 'found': 1.0, 'easy': 1.0, 'to': 2.0, 'ourselves': 1.0, 'our': 2.0, 'tested': 1.0, 'both': 1.0, 'holding': 1.0, 'knew': 1.0, 'played': 1.0, 'with': 1.0, 'before': 1.0, 'morning': 1.0, 'forgot': 1.0, 'using': 1.0, 'which': 1.0, 'she': 1.0, 'baby': 1.0, 'had': 2.0, 'we': 8.0, 'take': 1.0, 'one': 1.0, 'use': 1.0, 'her': 1.0, 'clip': 1.0, 'awake': 1.0, 'there': 1.0, 'no': 1.0}
Word element => {'alarms': 1.0, 'night': 3.0, 'i': 4.0, 'at': 1.0, 'tape': 2.0, 'no': 1.0, 'they': 1.0, 'create': 1.0, 'better': 1.0, 'wiggle': 1.0, 'to': 3.0, 'sleep': 1.0, 'me': 2.0, 'and': 2.0, '1': 1.0, 'twins': 1.0, 'it': 4.0, 'really': 1.0, 'that': 2.0, 'allows': 1.0, 'found': 1.0, 'the': 6.0, 'medical': 1.0, 'diaper': 1.0, 'more': 1.0, 'my': 1.0, 'false': 2.0, 'like': 1.0, 'hold': 1.0, 'though': 1.0, 'snuza': 2.0, 'for': 1.0, 'out': 1.0, 'halo': 1.0, 'of': 2.0, 'then': 1.0, 'use': 1.0, 'inch': 1.0, 'alarm': 1.0, 'would': 2.0, 'discovered': 1.0, 'could': 1.0, 'a': 1.0, 'middle': 1.0, 'waking': 1.0, 'in': 1.0, 'on': 1.0, 'during': 1.0}
Word element => {'you': 1.0, 'thank': 1.0, 'skin': 1.0, 'her': 1.0, 'with': 1.0, 'because': 1.0, 'lost': 1.0, 'mattress': 1.0, 'both': 1.0, 'under': 1.0, 'registered': 1.0, 'originally': 1.0, 'night': 1.0, 'was': 1.0, 'had': 1.0, 'monitor': 1.0, 'and': 1.0, 'me': 1.0, 'matter': 1.0, 'terrified': 1.0, 'daughter': 1.0, 'sids': 1.0, 'allowed': 1.0, 'on': 1.0, 'an': 2.0, 'weeks': 1.0, 'through': 1.0, 'for': 1.0, 'where': 1.0, 'snuza': 4.0, 'to': 1.0, 'sleep': 2.0, 'acid': 1.0, 'my': 1.0, 'but': 1.0, 'false': 1.0, 'the': 4.0, 'has': 1.0, 'reflux': 1.0, 'so': 1.0, 'she': 2.0, 'incline': 1.0, 'sleeps': 1.0, 'about': 1.0, 'no': 1.0, 'i': 3.0, 'two': 1.0, 'must': 1.0, 'have': 1.0, 'works': 1.0, 'only': 1.0, 'contact': 1.0, 'alarms': 1.0, 'in': 1.0, '6': 1.0}
Word element => {'button': 1.0, 'side': 1.0, 'both': 1.0, 'like': 1.0, 'moment': 1.0, 'do': 1.0, 'couldn': 1.0, 'instructions': 1.0, 'looked': 1.0, 'darn': 1.0, 'out': 2.0, 'those': 1.0, 'me': 2.0, 'for': 2.0, 'also': 1.0, 'took': 1.0, 'breathing': 1.0, 'stop': 1.0, 'tip': 1.0, 'note': 1.0, 'moves': 1.0, 'you': 1.0, 'again': 1.0, 'when': 1.0, 'and': 4.0, 'at': 3.0, 'how': 2.0, 'he': 3.0, 'blonde': 1.0, 'it': 6.0, 'thing': 1.0, 'belly': 1.0, 'time': 1.0, 'so': 2.0, 'press': 1.0, 'slight': 1.0, 'the': 7.0, 'great': 1.0, 'my': 1.0, 'same': 1.0, 'shut': 2.0, 'if': 1.0, 'touchy': 1.0, 'incline': 1.0, 'figure': 1.0, 'little': 1.0, 'night': 1.0, 'baby': 1.0, 'don': 1.0, 'kind': 1.0, 'still': 2.0, 'in': 2.0, 'cradle': 1.0, 'is': 3.0, 'comes': 1.0, 'to': 5.0, 'having': 1.0, 'find': 1.0, 'does': 2.0, 'alarm': 1.0, 'forever': 1.0, 'off': 4.0, 'knowing': 1.0, 'his': 1.0, 'awesome': 1.0, 'rocking': 1.0, 'totally': 1.0, 'that': 2.0, 'triggers': 1.0, 'there': 1.0, 'of': 1.0, 'mind': 1.0, 'piece': 1.0, 's': 2.0, 'a': 5.0, 't': 2.0, 'go': 1.0, 'otherwise': 1.0, 'i': 3.0, 'must': 1.0, 'have': 1.0, 'worry': 1.0}
Word element => {'wink': 1.0, 'doubt': 1.0, 'right': 1.0, 'cold': 1.0, 'not': 1.0, 'have': 2.0, 'breathing': 1.0, 'like': 1.0, 'without': 2.0, 'sleep': 1.0, 'to': 4.0, 'all': 3.0, 'our': 1.0, 'needed': 1.0, 'allowed': 1.0, 'check': 1.0, 'was': 3.0, '3': 1.0, 'put': 1.0, 'bought': 3.0, 'up': 1.0, 'over': 1.0, 'replacing': 1.0, 'feeling': 1.0, 'the': 4.0, 'of': 3.0, 'multi': 1.0, 'before': 1.0, 'a': 4.0, 'we': 2.0, 'for': 1.0, 'snuza': 1.0, 'product': 1.0, 'use': 2.0, 'months': 2.0, 'get': 1.0, 'couple': 2.0, 'same': 1.0, 'loose': 1.0, 'and': 7.0, 'old': 2.0, 'slept': 1.0, 'i': 14.0, 'thinking': 1.0, 'reviewed': 1.0, 'his': 2.0, 'when': 1.0, 'am': 1.0, 'first': 3.0, 'love': 1.0, 'he': 2.0, 'it': 9.0, 'recommend': 1.0, 'heart': 1.0, 'me': 2.0, 'my': 3.0, 'son': 3.0, 'if': 1.0, 'every': 2.0, 'still': 1.0, 'had': 1.0, 'now': 2.0, 'wanted': 1.0, 'week': 1.0, 'false': 2.0, 'alarm': 1.0, 'weeks': 1.0, 'would': 3.0, 'thirdly': 1.0, 'battery': 1.0, 'night': 2.0, 'has': 1.0, 'them': 1.0, 'on': 1.0, 'long': 1.0, 'highly': 1.0, 'this': 4.0, 'alarms': 1.0, 'secondly': 1.0, 'clip': 1.0, 'diaper': 1.0, 'onesie': 1.0, 'swaddle': 1.0, 'never': 1.0, 'comes': 1.0, 'off': 1.0, 'or': 1.0, 'fall': 1.0, 'that': 1.0, 'there': 1.0, 'be': 2.0, 's': 3.0, 'giving': 1.0, 'attacks': 1.0, 'lasted': 1.0, 'one': 1.0, 'happy': 1.0, 'worried': 1.0, 'time': 3.0, 'pack': 1.0, 'batteries': 1.0, 'at': 1.0, 'unit': 1.0, 'd': 1.0, 'm': 1.0}
Word element => {'alarm': 1.0, 'woken': 1.0, 'prepared': 1.0, 'here': 1.0, 'be': 2.0, 'recommend': 1.0, 'down': 1.0, 'cause': 1.0, 'nail': 1.0, 'week': 1.0, 'per': 1.0, 'alarms': 1.0, '1': 1.0, 'about': 1.0, 'had': 1.0, 'first': 1.0, 'in': 1.0, 'can': 1.0, 'false': 2.0, '2': 1.0, 'but': 2.0, 'simple': 1.0, 'have': 2.0, 'small': 1.0, 'priced': 1.0, 'up': 1.0, 'over': 1.0, 'some': 1.0, 'at': 1.0, 'mechanism': 1.0, 'bought': 1.0, 'bed': 1.0, 'wife': 1.0, 'this': 1.0, 'mattress': 1.0, 'there': 1.0, 'mean': 1.0, 'stare': 1.0, 'and': 5.0, 'stuff': 1.0, 'i': 4.0, 'old': 1.0, 'night': 1.0, 'you': 1.0, 'when': 1.0, 'my': 2.0, 'still': 1.0, 'plants': 1.0, 'having': 1.0, 'seems': 1.0, 'her': 1.0, 'good': 1.0, '6': 1.0, 'of': 1.0, 'fairly': 1.0, 'face': 2.0, 'it': 2.0, 'month': 2.0, 'she': 1.0, 'sleeps': 1.0, 'product': 1.0, 'for': 2.0, 'actually': 1.0, 'so': 2.0, 'scary': 1.0, 'with': 1.0, 'mind': 1.0, 'piece': 1.0, 'into': 1.0, 'that': 1.0, 'the': 4.0, 'without': 1.0, 'to': 4.0, 'all': 1.0, 'might': 1.0, 't': 1.0, 's': 1.0, 'we': 2.0, 'could': 1.0, 'go': 1.0, 'a': 2.0}
Word element => {'the': 1.0, 'get': 1.0, 'money': 1.0, 'can': 1.0, 'i': 1.0, 'of': 1.0, 'have': 1.0, 'totally': 1.0, 'with': 1.0, 'new': 1.0, 'worth': 1.0, 'baby': 1.0, 'sleep': 1.0, 'me': 1.0, 'restful': 1.0, 'gives': 1.0, 'peace': 1.0, 'must': 1.0, 'mind': 1.0, 'so': 1.0}
Word element => {'too': 1.0, 'will': 1.0, 'breathing': 1.0, 'stops': 1.0, 'late': 1.0, 'if': 1.0, 'that': 1.0, 'know': 2.0, 'your': 1.0, 'ever': 1.0, 'penny': 2.0, 'have': 1.0, 'it': 2.0, 'this': 2.0, 'i': 1.0, 's': 1.0, 'you': 2.0, 'before': 1.0, 'down': 1.0, 'hands': 1.0, 'don': 1.0, 'price': 1.0, 't': 1.0, 'the': 2.0, 'child': 1.0, 'made': 1.0, 'let': 1.0, 'is': 2.0, 'product': 2.0, 'worth': 2.0, 'purchase': 1.0, 'every': 2.0, 'deter': 1.0, 'best': 1.0, 'from': 1.0, 'to': 1.0, 'buying': 1.0}
Word element => {'of': 1.0, 'people': 1.0, 'mind': 1.0, 'piece': 1.0, 'with': 1.0, 'leave': 1.0, 'clip': 1.0, 'also': 1.0, 'every': 1.0, 'stomach': 1.0, 'up': 1.0, 'ends': 1.0, 'bc': 1.0, 'but': 1.0, 'on': 6.0, 'put': 1.0, 'her': 4.0, 'down': 1.0, 'so': 2.0, 'it': 7.0, 'this': 2.0, 'wouldn': 1.0, 'love': 1.0, 'for': 3.0, 'new': 1.0, 'big': 1.0, 'seemed': 1.0, 'girl': 2.0, 'awesome': 1.0, 'were': 1.0, 'brand': 1.0, 'clipped': 1.0, 'its': 1.0, 'was': 1.0, 'husband': 1.0, 'little': 2.0, 'i': 6.0, 'night': 2.0, 'am': 1.0, 'when': 3.0, 'about': 1.0, 'thing': 2.0, 'at': 2.0, 'and': 1.0, 'stayed': 1.0, 'sids': 1.0, 'worried': 1.0, 'just': 2.0, 'not': 1.0, 'fine': 1.0, 'my': 3.0, 'never': 1.0, 'pushed': 1.0, 'the': 2.0, 'diaper': 1.0, 'we': 1.0, 't': 1.0, 'way': 1.0, 'seriously': 1.0, 'our': 1.0, 'all': 2.0, 'sleep': 1.0, 'lol': 1.0, 'if': 1.0}
Word element => {'mind': 1.0, 'of': 1.0, 'peace': 1.0, 'investment': 1.0, 'best': 1.0, 'its': 1.0, 'they': 1.0, 'money': 1.0, 'but': 1.0, 'false': 1.0, 'fact': 1.0, 'my': 1.0, 'working': 1.0, 'senses': 1.0, 'well': 2.0, 'had': 1.0, 'a': 1.0, 'we': 2.0, 'made': 1.0, 'goes': 1.0, 'know': 1.0, 'sleeping': 1.0, 'positives': 1.0, 'son': 1.0, 'he': 1.0, 'this': 1.0, 'it': 4.0, 'i': 3.0, 'have': 1.0, 'love': 2.0, 'so': 1.0, 'after': 1.0, 'is': 2.0, 'hey': 1.0, 'wherever': 1.0, 'wears': 1.0, 'were': 1.0, 'fault': 1.0, 'worth': 1.0, 'or': 1.0, 'few': 1.0, 'by': 1.0, 'not': 1.0, 'securing': 1.0, 'off': 1.0, 'enough': 1.0, 'portable': 1.0, 'on': 1.0, 'his': 1.0, 'diaper': 1.0, 'the': 4.0, 've': 1.0, 'alarm': 1.0, 'thing': 1.0, 'no': 1.0, 'at': 1.0, 'movement': 1.0, 'all': 1.0, 'least': 1.0}
Word element => {'while': 1.0, 'worked': 1.0, 'more': 1.0, 'monitor': 1.0, 'angelcare': 2.0, 'away': 1.0, 'put': 1.0, 'setting': 1.0, 'off': 2.0, 'kept': 1.0, 'tummy': 1.0, 'flipped': 1.0, 'crib': 1.0, 'her': 2.0, 'always': 1.0, 'everynight': 1.0, 'used': 1.0, 'with': 1.0, 'old': 1.0, 'problems': 1.0, 'had': 1.0, 'started': 1.0, 'them': 1.0, 'would': 1.0, 'new': 2.0, 'us': 2.0, 'defective': 1.0, 'the': 7.0, 'until': 1.0, 'great': 1.0, '5': 1.0, 'room': 1.0, 'was': 3.0, 'not': 1.0, 'n': 2.0, 'this': 1.0, 'she': 5.0, 'it': 5.0, 'stopped': 1.0, 'i': 4.0, 'onto': 1.0, 'price': 1.0, 'm': 1.0, 'terrified': 1.0, 'sids': 1.0, 'fisher': 1.0, 'of': 2.0, 'sleeping': 2.0, 'so': 2.0, 'even': 1.0, 'got': 2.0, 'in': 4.0, 'were': 1.0, 'our': 2.0, 'all': 1.0, 'no': 1.0, 'several': 1.0, 'but': 1.0, 'false': 2.0, 'alarms': 2.0, 'play': 2.0, 'and': 6.0, 'newborn': 1.0, 'couple': 1.0, 'did': 1.0, 'getting': 1.0, 'falling': 1.0, 'rock': 2.0, 'then': 2.0, 'working': 1.0, 'together': 1.0, 'within': 1.0, 'we': 5.0, 'a': 2.0, 'one': 3.0, 'months': 2.0, 'have': 2.0, 'contacted': 1.0, 'love': 1.0, 'for': 2.0, 'snuza': 2.0, 'they': 2.0, 'really': 1.0, 'sent': 2.0}
Word element => {'if': 1.0, 'worried': 1.0, 'room': 1.0, 'in': 1.0, 'be': 1.0, 'so': 2.0, 'small': 1.0, 'the': 3.0, 'me': 1.0, 'monitor': 1.0, 'do': 1.0, 'and': 5.0, 'another': 1.0, 'baby': 2.0, 'any': 1.0, 'i': 3.0, 'is': 2.0, 'love': 1.0, 'with': 1.0, 'loud': 1.0, 'it': 2.0, 'not': 4.0, 'notice': 1.0, 'does': 1.0, 'even': 1.0, 'false': 1.0, 'we': 1.0, 'have': 2.0, 'nice': 2.0, 'snuza': 1.0, 'alarm': 1.0, 'can': 1.0, 'alarms': 1.0}
Word element => {'definitely': 1.0, 'time': 1.0, 'before': 1.0, 'says': 1.0, 'just': 1.0, 'diaper': 3.0, 'place': 1.0, 'money': 1.0, 'instructions': 1.0, 'on': 4.0, 'strong': 1.0, 'have': 6.0, 'never': 2.0, 'some': 1.0, 'a': 5.0, 's': 1.0, '5': 1.0, 'started': 1.0, '7lbs': 1.0, 'my': 4.0, 'using': 1.0, 'like': 2.0, 'vibration': 2.0, 'actually': 1.0, 'old': 2.0, 'i': 4.0, 'when': 2.0, 'you': 1.0, 'times': 1.0, 'our': 2.0, 'had': 2.0, 'worth': 1.0, 'now': 1.0, 'weeks': 1.0, 'husband': 2.0, 'week': 1.0, 'specifically': 1.0, 'recommended': 1.0, 'and': 7.0, 'son': 3.0, 'button': 1.0, 'about': 1.0, 'belly': 1.0, 'with': 1.0, 'half': 1.0, 'mind': 1.0, 'love': 1.0, 'fold': 1.0, 'he': 2.0, 'this': 3.0, 'problem': 1.0, 'weighed': 1.0, 'fell': 1.0, 'off': 1.0, 'is': 2.0, 'at': 2.0, 'sure': 1.0, 'left': 1.0, 'top': 1.0, 'the': 11.0, 'of': 5.0, 'down': 1.0, 'so': 1.0, 'friends': 1.0, 'stays': 1.0, 'feel': 1.0, 'in': 1.0, 'false': 1.0, 'sitting': 1.0, 'forgotten': 1.0, 'done': 1.0, 'alarm': 1.0, 'unlike': 1.0, 'gotten': 1.0, 'other': 1.0, 'we': 5.0, 'reviews': 1.0, 'accidentally': 1.0, 'to': 5.0, 'pretty': 1.0, 'has': 2.0, 'next': 1.0, 'couple': 1.0, 'out': 1.0, 'while': 1.0, 'around': 1.0, 'his': 1.0, 'make': 1.0, 'sound': 1.0, 'startled': 1.0, 'it': 7.0, 'him': 1.0, 'really': 1.0, 'peace': 1.0, 'brings': 1.0, 'staying': 1.0, 'bed': 2.0, 'monitor': 3.0, '2am': 1.0, 'put': 1.0, 'changing': 1.0, 'do': 1.0}
Word element => {'have': 1.0, 'i': 1.0, 'bed': 1.0, 'monitor': 1.0, 'before': 1.0, 'believer': 1.0, 'was': 1.0, 'is': 1.0, 'say': 1.0, 'went': 1.0, 'recommending': 1.0, 'down': 1.0, 'off': 1.0, 'legs': 1.0, 'woken': 1.0, 'slides': 1.0, 'are': 1.0, 'his': 4.0, 'kick': 1.0, 'friends': 1.0, 'so': 2.0, 'been': 1.0, 'loves': 1.0, 'sensor': 2.0, 'this': 2.0, 'with': 1.0, 'it': 5.0, 'picked': 1.0, 'he': 2.0, 'all': 1.0, 'our': 2.0, 'to': 5.0, 'now': 1.0, 'husband': 1.0, 'sure': 1.0, 'get': 1.0, 'and': 3.0, 'ease': 1.0, 'go': 1.0, 'a': 1.0, 'we': 4.0, 'product': 2.0, 'love': 1.0, 'the': 3.0, 'baby': 1.0, 'because': 1.0, 'every': 1.0, 'far': 1.0, 'then': 1.0, 'up': 3.0, 'from': 2.0, 'te': 1.0, 'still': 1.0, 'alarm': 1.0, 'opened': 1.0, 'pregnant': 1.0, 'needless': 1.0, 'but': 1.0, 'worries': 1.0, 'my': 2.0, 'makes': 1.0, 'tested': 1.0, 'put': 1.0, 'on': 3.0, 'vibration': 1.0, 'hand': 2.0, 'at': 1.0, 'keep': 1.0, 'when': 2.0, 'clipped': 1.0, 'trying': 1.0}
Word element => {'100': 1.0, 'over': 1.0, 'paid': 1.0, 'cost': 1.0, 'sensor': 1.0, 'the': 2.0, 'know': 1.0, 'times': 1.0, 'a': 1.0, 'off': 1.0, 'has': 1.0, 'time': 1.0, 's': 3.0, 'born': 1.0, 'son': 1.0, 'for': 3.0, 'our': 1.0, 'bought': 1.0, 'sound': 1.0, 'we': 3.0, 'works': 1.0, 'long': 1.0, 'but': 1.0, 'put': 1.0, 'worth': 1.0, 'periods': 1.0, 'us': 1.0, 'when': 1.0, 'at': 1.0, 'couple': 1.0, 'and': 1.0, 'ease': 1.0, 'come': 1.0, 'it': 4.0, 'first': 1.0, 'this': 1.0, 'he': 1.0, 'asleep': 1.0, 'of': 1.0, 'been': 1.0}
Word element => {'item': 1.0, 'have': 1.0, 'works': 1.0, 'actually': 1.0, 'showed': 1.0, 'way': 1.0, 'but': 1.0, 'fell': 1.0, 'and': 1.0, 'around': 1.0, 'wriggled': 1.0, 'little': 1.0, 'alarm': 1.0, 'must': 1.0, 'as': 1.0, 'times': 1.0, 'when': 1.0, 'us': 1.0, 'that': 2.0, 'our': 1.0, 'easier': 1.0, 'everyone': 1.0, 'now': 1.0, 'in': 1.0, 'having': 1.0, 'much': 1.0, 'at': 1.0, 'soooo': 1.0, 'made': 1.0, 'i': 2.0, 'night': 1.0, 'buy': 1.0, 'just': 1.0, 'know': 1.0, 'a': 5.0, 'rest': 1.0, 'baby': 1.0, 'off': 2.0, 'few': 1.0, 'one': 1.0, 'for': 1.0, 'love': 1.0, 'this': 2.0, 'it': 4.0, 'false': 1.0, 'went': 1.0}
Word element => {'exactly': 1.0, 'item': 1.0, 'prompt': 1.0, 'seller': 1.0, 'just': 1.0, 'layers': 1.0, 'under': 1.0, 'room': 1.0, 'in': 1.0, 'hear': 1.0, 'alarm': 1.0, 'worrying': 1.0, 'instead': 1.0, 'as': 1.0, 'sleep': 1.0, 'to': 3.0, 'wanted': 1.0, 'was': 2.0, 'had': 1.0, 'what': 1.0, 'peace': 1.0, 'down': 1.0, 'her': 2.0, 'this': 2.0, 'and': 5.0, 'me': 1.0, 'heard': 1.0, 'get': 1.0, 'easy': 1.0, 'advertised': 1.0, 'but': 1.0, 'several': 1.0, 'about': 1.0, 'thing': 1.0, 'have': 1.0, 'could': 1.0, 'we': 2.0, 'a': 3.0, 'nice': 1.0, 'the': 2.0, 'some': 1.0, 'such': 1.0, 'doctors': 1.0, 'feature': 1.0, 'i': 1.0, 'tested': 1.0, 'old': 1.0, 'use': 1.0, 'wonderful': 1.0, 'tool': 1.0, 'saw': 1.0, 'never': 1.0, 'breathing': 2.0, 'of': 4.0, 'with': 1.0, 'mind': 1.0, 'for': 2.0, 'you': 1.0, 'another': 1.0, 'my': 1.0, 'three': 1.0, 'it': 2.0, 'month': 1.0, 'came': 2.0, 'on': 2.0, 'bronchitis': 1.0, 'fine': 1.0, 'number': 1.0, 'medications': 1.0, 'wheezing': 1.0, 'how': 1.0, 'help': 1.0}
Word element => {'peace': 1.0, 'me': 1.0, 'definitely': 1.0, 'clean': 1.0, 'keep': 1.0, 'to': 1.0, 'harder': 1.0, 'will': 1.0, 'but': 1.0, 'can': 1.0, 'pinching': 1.0, 'has': 1.0, 'tape': 1.0, 'happy': 2.0, 'my': 2.0, 'arrived': 1.0, 'out': 1.0, 'it': 7.0, 'this': 2.0, 'mind': 1.0, 'with': 2.0, 'risk': 1.0, 'only': 1.0, 'skin': 1.0, 'extremely': 1.0, 'have': 2.0, 'finally': 1.0, 'researching': 1.0, 'is': 2.0, 'very': 2.0, 'timely': 1.0, 'son': 1.0, 'and': 4.0, 'in': 1.0, 'reason': 1.0, 'decided': 1.0, 'one': 1.0, 'make': 1.0, 'on': 1.0, 'otherwise': 1.0, '4': 1.0, 'i': 5.0, 'the': 4.0, 'gives': 1.0, 'when': 1.0, 'of': 3.0, '5': 1.0, 'for': 1.0, 'stars': 1.0, 'manner': 1.0, 'because': 1.0, 'clip': 1.0, 'part': 2.0, 'was': 2.0, 'broken': 1.0, 'alarms': 1.0, 'came': 1.0, 'which': 1.0, 'been': 2.0, 'gave': 1.0, 'that': 2.0, 'touches': 1.0, 'baby': 1.0, 'a': 1.0, 's': 1.0}
Word element => {'imo': 1.0, 'wrong': 1.0, 'go': 1.0, 'them': 1.0, 'false': 1.0, 'any': 1.0, 'had': 1.0, 'that': 1.0, 'side': 1.0, 'sleeper': 1.0, 'wearing': 1.0, 'if': 5.0, 'which': 1.0, 'stay': 1.0, 'an': 1.0, 'measures': 1.0, 'take': 1.0, 'we': 2.0, 'tremendous': 1.0, 'asleep': 1.0, 'undressed': 1.0, 'wake': 1.0, 'does': 1.0, 'angelcare': 3.0, 'takes': 1.0, 'benefits': 2.0, 'use': 3.0, 'house': 1.0, 'mind': 1.0, 'see': 2.0, 'comparison': 1.0, 'so': 5.0, 'here': 1.0, 'most': 2.0, 'advertised': 2.0, 'cheaper': 1.0, 'exactly': 1.0, 'set': 2.0, 'pain': 2.0, 'chores': 1.0, 'wakes': 1.0, 'both': 3.0, 'son': 4.0, 'not': 4.0, 'n': 1.0, 'someone': 1.0, 'hear': 1.0, 'listening': 1.0, 'light': 1.0, 'you': 1.0, 'cumbersome': 1.0, 'ours': 1.0, 't': 5.0, 'a': 11.0, 'i': 17.0, 'simple': 1.0, 'two': 4.0, 'night': 2.0, 'monitors': 2.0, 'starts': 1.0, 'month': 1.0, 'thankful': 1.0, 'as': 6.0, 'up': 6.0, 'diaper': 1.0, 'to': 18.0, 'living': 2.0, 'the': 32.0, 'am': 3.0, 'him': 1.0, 'he': 3.0, 'far': 1.0, 'movement': 3.0, 'seems': 1.0, 'halo': 1.0, 'easy': 2.0, 'than': 2.0, 'bit': 1.0, 'able': 1.0, 'get': 3.0, 'sure': 3.0, 'market': 1.0, 'his': 1.0, 'working': 2.0, 'appropriately': 1.0, 'around': 2.0, 'works': 1.0, 'pack': 1.0, 'definitely': 1.0, 'machine': 1.0, 'monitor': 10.0, 'disadvantages': 2.0, 'might': 1.0, 'husband': 1.0, 'turn': 4.0, 'can': 7.0, 'is': 13.0, 'put': 2.0, 'either': 1.0, 'do': 1.0, 'portable': 2.0, 'stories': 1.0, 'make': 1.0, 'sound': 2.0, 'on': 7.0, 'clip': 1.0, 'forget': 2.0, 'functioning': 1.0, 'and': 10.0, 'recommended': 1.0, 'play': 1.0, 'breathing': 4.0, 'must': 1.0, 'outlets': 1.0, 'have': 6.0, 'dressed': 1.0, 'has': 3.0, 'wires': 1.0, 'snuza': 5.0, 'next': 1.0, 'functioned': 1.0, 'away': 2.0, 'alarm': 1.0, 'kid': 1.0, 'our': 3.0, 'stroller': 1.0, 'wouldn': 1.0, 'more': 2.0, 'bedroom': 1.0, 'but': 2.0, 'forgotten': 1.0, 'with': 4.0, 'find': 1.0, 'falls': 1.0, 'peace': 1.0, 'relatively': 1.0, 'this': 2.0, 'popular': 1.0, 'or': 2.0, 'brief': 1.0, 'buy': 1.0, 'hand': 1.0, 'carry': 1.0, 'will': 1.0, 'alarms': 1.0, 'work': 1.0, 'provides': 1.0, 'swing': 2.0, 'offer': 1.0, 'only': 2.0, 'old': 1.0, 'of': 4.0, 'even': 2.0, 'isn': 1.0, 'from': 1.0, 'close': 1.0, 'may': 1.0, 'me': 4.0, 'are': 1.0, 'room': 2.0, 'my': 4.0, 'by': 1.0, 'doubles': 1.0, 'ticker': 1.0, 'in': 10.0, 'temperature': 1.0, 'baby': 5.0, 'gauge': 1.0, 'piece': 1.0, 'keep': 1.0, 'outlet': 1.0, 'board': 1.0, 'book': 1.0, 'too': 1.0, 'heard': 1.0, 'naps': 1.0, 'importantly': 2.0, 'visible': 1.0, 'actually': 1.0, 'beeping': 1.0, 'also': 1.0, 'it': 17.0, 'be': 5.0, 'initial': 1.0, 'except': 1.0, 'place': 1.0, 'used': 2.0, 'mistaken': 1.0, 'hardback': 1.0, 'between': 1.0, 'plug': 1.0, 'when': 6.0, 'bed': 1.0, 'cell': 1.0, 'comfort': 1.0, 'phone': 1.0, 'crib': 2.0, 'expensive': 1.0, 's': 2.0, 'tired': 1.0, 'during': 1.0, 'out': 1.0, 'extremely': 1.0, 'eat': 1.0, 'enough': 1.0, 'bring': 1.0, 'soon': 1.0, 'off': 3.0, 'farther': 1.0, 'neither': 1.0}
Word element => {'peace': 1.0, 'us': 1.0, 'definitely': 1.0, 'own': 1.0, 'maybe': 2.0, 'this': 2.0, 'may': 1.0, 'not': 1.0, 'uneven': 1.0, 'shallow': 1.0, 'deep': 1.0, 'in': 1.0, 'happened': 1.0, 'when': 1.0, 'went': 2.0, 'while': 1.0, 'mind': 1.0, 'with': 2.0, 'problem': 1.0, 'what': 1.0, 'had': 2.0, 'never': 1.0, 'very': 2.0, 'little': 2.0, 'swaddle': 1.0, 'attached': 1.0, 'now': 1.0, 'months': 1.0, 'coming': 1.0, 'have': 5.0, 'd': 1.0, 'so': 1.0, 'was': 5.0, 'the': 6.0, 'great': 1.0, 'think': 1.0, 'guy': 1.0, 'make': 1.0, 'on': 4.0, 'more': 2.0, 'is': 1.0, 'sure': 1.0, 'if': 1.0, 'want': 1.0, 'soundly': 1.0, 'him': 2.0, 'breathing': 3.0, 'started': 1.0, 'baby': 2.0, 'whenever': 1.0, 'quiet': 1.0, 'about': 2.0, 'check': 2.0, 'snuza': 3.0, 'off': 2.0, 'knowing': 1.0, 'i': 5.0, 'old': 1.0, 'used': 1.0, 'provides': 1.0, 'his': 3.0, 'too': 1.0, 'and': 6.0, 'don': 1.0, 'up': 1.0, 'of': 1.0, 'once': 1.0, 'wake': 1.0, 'would': 1.0, 'alarm': 3.0, 've': 1.0, 'he': 7.0, 'still': 1.0, 'to': 5.0, 'sleep': 2.0, 'only': 1.0, 'much': 1.0, 'wouldn': 1.0, 'got': 1.0, 't': 2.0, 'go': 1.0, 'a': 3.0, 's': 3.0, 'we': 2.0, 'that': 1.0, 'been': 2.0, 'since': 1.0, 'three': 1.0, 'sleeping': 1.0, 'using': 1.0, 'it': 1.0, 'month': 1.0}
Word element => {'parents': 1.0, 'recommend': 1.0, 'loose': 1.0, 'diapher': 1.0, 'her': 1.0, 'if': 1.0, 'great': 1.0, 'off': 1.0, 'that': 2.0, 'were': 1.0, 'once': 1.0, 'of': 2.0, 'they': 3.0, 'so': 1.0, 'new': 1.0, 'would': 3.0, 'and': 3.0, 'all': 1.0, 'sleep': 2.0, 'to': 1.0, 'i': 2.0, 'bought': 1.0, 'my': 2.0, 'choked': 1.0, 'the': 2.0, 'this': 3.0, 'granddaughter': 1.0, 'only': 1.0, 'course': 1.0, 'side': 1.0, 'son': 1.0, 'sleeping': 1.0, 'gives': 1.0, 'law': 1.0, 'die': 1.0, 'daughter': 1.0, 'in': 2.0, 'happen': 1.0, 'them': 1.0, 'while': 3.0, 'it': 1.0, 'she': 2.0, 'for': 3.0, 'snuza': 1.0, 'couldn': 2.0, 'peace': 1.0, 'down': 1.0, 'because': 1.0, 'does': 1.0, 'mind': 1.0, 'are': 1.0, 'fear': 1.0, 'is': 2.0, 'sleeps': 1.0, 'able': 1.0, 'a': 1.0, 'breath': 1.0, 't': 2.0, 'go': 1.0}
Word element => {'peace': 1.0, 'false': 1.0, 'both': 1.0, 'husband': 1.0, 'breathing': 1.0, 'really': 1.0, 'worth': 1.0, 'or': 1.0, 'of': 2.0, 'if': 2.0, 'never': 1.0, 'some': 1.0, 'agree': 1.0, 'caused': 1.0, 'off': 2.0, 'went': 1.0, 'either': 1.0, 'loud': 1.0, 'diaper': 1.0, 'replace': 1.0, 'baby': 1.0, 'a': 2.0, 't': 1.0, 'we': 2.0, 'gotten': 1.0, 'very': 1.0, 'monitor': 1.0, 'and': 4.0, 'my': 1.0, 'often': 1.0, 'goodness': 1.0, 'so': 1.0, 'have': 2.0, 'this': 1.0, 'mind': 1.0, 'panic': 1.0, 'with': 1.0, 'only': 1.0, 'thank': 1.0, 'for': 3.0, 'used': 1.0, 'trips': 1.0, 'alarms': 1.0, 'came': 1.0, 'long': 1.0, 'the': 6.0, 'without': 1.0, 'way': 1.0, 'there': 1.0, 'is': 4.0, 'us': 1.0, 'travels': 1.0, 'i': 2.0, 'no': 1.0, 'battery': 1.0, 'any': 1.0, 'sleep': 1.0, 'to': 1.0, 'alarm': 1.0, 'would': 1.0, 'not': 2.0, 'because': 1.0, 'sometimes': 1.0, 'just': 1.0, 'few': 2.0, 'life': 1.0, 'stopped': 1.0, 'it': 7.0, 'she': 2.0, 'times': 1.0, 'you': 1.0, 'when': 2.0, 'fantastic': 1.0, 'last': 1.0, 'well': 1.0, 'know': 1.0, 'which': 1.0, 'sleeping': 1.0, 'downside': 1.0, 'was': 2.0, 'doesn': 1.0, 'will': 2.0}
Word element => {'with': 1.0, 'm': 1.0, 'hear': 1.0, 'sure': 1.0, 'anyone': 1.0, 'be': 1.0, 'in': 2.0, 'if': 2.0, 'it': 2.0, 'off': 1.0, 'enough': 1.0, 'loud': 1.0, 'getting': 1.0, 'and': 2.0, 'probably': 1.0, 'me': 1.0, 'literally': 1.0, 'recommend': 2.0, 'was': 1.0, 'had': 2.0, 'normal': 1.0, 'the': 5.0, 'is': 2.0, 'more': 1.0, 'product': 1.0, 'for': 1.0, 'can': 1.0, 'but': 1.0, 'false': 1.0, 'another': 1.0, 'my': 1.0, 'i': 7.0, 'using': 2.0, 'device': 1.0, 'spazz': 1.0, 'baby': 3.0, 'night': 1.0, 'that': 1.0, 'been': 1.0, 'monitor': 1.0, 'little': 1.0, 'weeks': 1.0, 't': 1.0, 'a': 4.0, 'check': 1.0, 'addition': 1.0, 'throughout': 1.0, 'than': 1.0, 'up': 2.0, 'wake': 1.0, 'of': 1.0, 'goes': 1.0, 'haven': 1.0, 'room': 1.0, '5': 1.0, 'before': 1.0, 'new': 1.0, 'would': 2.0, 'alarm': 3.0, 'have': 1.0, 'allows': 1.0, 'this': 3.0, 'on': 1.0, 'newborn': 1.0, 'every': 1.0, 'will': 1.0, 'hour': 1.0, 'yet': 1.0, 'or': 1.0, 'to': 4.0, 'sleep': 1.0, 'so': 3.0, 'you': 2.0, 'am': 1.0, 'terrified': 1.0, 'sids': 1.0}
Word element => {'every': 1.0, 'buy': 1.0, 'radiation': 1.0, 'about': 1.0, 'need': 1.0, 'don': 1.0, 'you': 1.0, 'worth': 1.0, 'or': 1.0, 'emit': 1.0, 'seemed': 1.0, 'never': 1.0, 'mind': 1.0, 'for': 1.0, 'price': 1.0, 'small': 1.0, 'worry': 1.0, 'receive': 1.0, 'room': 1.0, 'much': 1.0, 'and': 4.0, 'peace': 1.0, 'couldn': 1.0, 'care': 1.0, 'are': 1.0, 'bassinnet': 1.0, 'monitor': 1.0, 'angel': 1.0, 'the': 2.0, 'i': 4.0, 'in': 2.0, 'daughter': 1.0, 'penny': 1.0, 'terrified': 1.0, 'pop': 1.0, 'had': 2.0, 'doesn': 1.0, 'was': 3.0, 'use': 1.0, 'got': 1.0, 'more': 1.0, 'preemie': 1.0, 'pay': 1.0, 'rolled': 1.0, 'to': 3.0, 'our': 2.0, 'radio': 1.0, 'notice': 1.0, 't': 3.0, 'a': 4.0, 'becuase': 1.0, 'slept': 1.0, 'better': 1.0, 'sleeping': 1.0, 'perfect': 1.0, 'this': 2.0, 'solution': 1.0, 'signals': 1.0, 'it': 4.0, 'she': 2.0, 'bigger': 1.0, 'so': 2.0, 'of': 2.0, 'once': 2.0, 'alarm': 1.0, 'would': 1.0, 'off': 1.0, 'false': 1.0, 'but': 1.0, 'sids': 1.0, 'few': 1.0, 'kicked': 1.0, 'alarms': 1.0}
Word element => {'million': 1.0, 'rather': 1.0, 'd': 1.0, 'said': 1.0, 'seem': 1.0, 'tiniest': 1.0, 'playing': 1.0, 'spent': 1.0, 'degrees': 1.0, 'existent': 1.0, 'seeming': 1.0, 'trying': 1.0, 'times': 1.0, 'actually': 1.0, 'pick': 2.0, 'death': 1.0, 'light': 1.0, 'fans': 1.0, 'mistakenly': 1.0, 'yet': 1.0, 'doorway': 1.0, 'set': 1.0, 'same': 1.0, 'either': 1.0, 'walking': 1.0, 'father': 1.0, 'sounding': 3.0, 'will': 2.0, 'check': 1.0, 'e': 1.0, 'alive': 2.0, 'forgets': 1.0, 'change': 1.0, 'noticed': 1.0, 'never': 3.0, 'completely': 2.0, 'lowest': 5.0, 'being': 3.0, 'low': 5.0, 'outside': 1.0, 'dozens': 2.0, 'literally': 1.0, 'go': 1.0, 'dead': 2.0, 'could': 1.0, 'air': 1.0, 'crib': 14.0, 'always': 1.0, 'give': 1.0, 'at': 2.0, 'master': 1.0, 'level': 3.0, 'randomly': 1.0, 'try': 1.0, 'risk': 1.0, 'finding': 1.0, 'sids': 2.0, 'live': 1.0, 'settings': 2.0, 'reduce': 1.0, 'sensitivity': 8.0, 're': 1.0, 'night': 4.0, '1': 2.0, 'gives': 1.0, 'solve': 1.0, 'some': 1.0, 'tons': 1.0, 'another': 1.0, 'moving': 5.0, 'adjusting': 1.0, 'three': 2.0, 'prefer': 1.0, 'find': 1.0, 'why': 1.0, 'multiple': 2.0, 'see': 1.0, 'copied': 1.0, 'won': 2.0, 'two': 1.0, 'balance': 2.0, 'comparing': 1.0, 'takes': 1.0, 'perspective': 2.0, 'someone': 1.0, 'good': 1.0, 'feel': 1.0, 'simultaneously': 1.0, 'far': 5.0, 'problems': 1.0, 'his': 1.0, 'haven': 1.0, 'isn': 1.0, 'life': 1.0, 'heard': 1.0, 'given': 1.0, 'battery': 3.0, 'every': 1.0, 'play': 1.0, 'pack': 1.0, 'friendly': 1.0, 'because': 14.0, 'that': 9.0, 'deep': 1.0, 'microinch': 1.0, 'tells': 1.0, 'started': 1.0, 'thus': 3.0, 'their': 2.0, 'breaths': 1.0, 'pull': 1.0, 'me': 2.0, 'cooking': 1.0, 'they': 2.0, 'review': 5.0, 'vibration': 1.0, 'reason': 1.0, 'non': 1.0, 'in': 22.0, 'than': 2.0, 'all': 2.0, '20': 1.0, 'way': 8.0, 'but': 3.0, 'rolled': 1.0, 'body': 1.0, 'used': 1.0, 'basis': 1.0, 'alarms': 10.0, 'this': 9.0, 'false': 9.0, 'often': 2.0, 'however': 1.0, 'get': 3.0, 'picks': 2.0, 'cords': 1.0, 'time': 1.0, 'began': 2.0, 'hours': 1.0, 'baby': 19.0, 'unfortunately': 1.0, 'from': 8.0, 'starts': 1.0, 'thinks': 4.0, 'monitors': 1.0, 'are': 2.0, 'room': 11.0, 'my': 22.0, 'prevent': 4.0, 'adjustment': 1.0, 'instructions': 1.0, 'use': 5.0, 'anything': 2.0, 'supposed': 2.0, 'similar': 1.0, 'monitor': 8.0, 'older': 1.0, 'away': 4.0, 'picking': 4.0, 'note': 1.0, 'you': 7.0, 'installing': 1.0, 'backup': 1.0, 'alarm': 15.0, 'going': 1.0, 'taken': 1.0, 'least': 1.0, 'rolls': 1.0, 'around': 3.0, 'resolve': 2.0, 'more': 4.0, 'using': 1.0, 'with': 13.0, 'above': 1.0, 't': 12.0, 'fan': 11.0, 'recommend': 2.0, 'n': 1.0, 'show': 1.0, 'be': 1.0, 'it': 33.0, 'grow': 2.0, 'seconds': 1.0, 'for': 6.0, 'product': 2.0, 'extra': 1.0, 'snuza': 7.0, 'scary': 1.0, 'setting': 5.0, 'floor': 1.0, 'as': 8.0, 'inexpensive': 1.0, 'even': 9.0, 'of': 17.0, 'old': 2.0, 'wake': 1.0, 'over': 1.0, 'keeping': 1.0, 'hard': 1.0, 'volume': 1.0, 'sound': 3.0, 'circulate': 1.0, 'she': 9.0, 'make': 1.0, 'husband': 3.0, 'rolling': 1.0, 'nightly': 1.0, 'one': 2.0, 'walk': 1.0, '3': 2.0, 'too': 3.0, 'positions': 1.0, 'cannot': 1.0, 'simple': 1.0, 'i': 31.0, 'etc': 4.0, 'surface': 1.0, 'so': 9.0, 'skin': 1.0, 'hear': 1.0, 'under': 2.0, 'loose': 1.0, 'on': 15.0, 'per': 1.0, 'long': 2.0, 'below': 3.0, 'apartment': 2.0, 'though': 2.0, 'by': 2.0, 'after': 3.0, 'a': 17.0, 'across': 1.0, 'tiny': 3.0, 'farther': 1.0, 'off': 5.0, 'or': 9.0, 'has': 3.0, 'great': 1.0, 'if': 7.0, 'still': 3.0, 'timers': 1.0, 'am': 2.0, 'your': 3.0, 'any': 1.0, 'once': 2.0, 'mobile': 1.0, 'not': 6.0, 'different': 1.0, 'down': 1.0, '8': 2.0, 'sense': 1.0, 'average': 1.0, 'm': 1.0, 'doesn': 5.0, 's': 9.0, 'definitely': 2.0, 'twice': 1.0, 'better': 1.0, 've': 2.0, 'while': 1.0, 'the': 77.0, 'experience': 1.0, 'into': 2.0, 'belly': 1.0, 'problem': 1.0, 'pads': 3.0, 'now': 4.0, 'daughter': 1.0, 'when': 10.0, 'sensor': 1.0, 'beyond': 1.0, 'was': 3.0, 'terrifying': 1.0, '4': 1.0, 'out': 6.0, 'sensitive': 2.0, 'an': 5.0, 'buying': 1.0, 'angelcare': 10.0, 'months': 7.0, 'update': 1.0, 'read': 1.0, 'warning': 1.0, 'reviews': 1.0, 'here': 1.0, 'have': 13.0, 'seems': 1.0, 'movement': 7.0, 'halo': 6.0, 'been': 2.0, 'meaning': 1.0, 'love': 1.0, 'then': 2.0, 'only': 1.0, 'detriment': 1.0, 'footsteps': 6.0, 'had': 2.0, 'stopped': 1.0, 'fell': 1.0, 'onto': 1.0, 'onesie': 1.0, 'mess': 1.0, 'mistake': 1.0, 'diaper': 5.0, 'up': 12.0, 'other': 2.0, 'hers': 1.0, 'her': 16.0, 'little': 1.0, 'big': 1.0, 'nice': 1.0, 'movements': 2.0, 'blowing': 2.0, 'sounds': 4.0, 'like': 2.0, 'touches': 1.0, 'would': 3.0, 'since': 1.0, 'beep': 1.0, 'turn': 1.0, 'is': 23.0, 'can': 6.0, 'awhile': 1.0, 'between': 2.0, 'vibrates': 2.0, 'moves': 2.0, 'rouse': 1.0, 'both': 2.0, 'travel': 2.0, 'which': 1.0, 'traveling': 1.0, 'opposed': 1.0, 'happened': 1.0, 'loud': 1.0, 'sleep': 1.0, 'immediately': 1.0, 'alarming': 1.0, 'there': 1.0, 'breathing': 2.0, 'clips': 1.0, 'no': 1.0, 'does': 1.0, '70': 1.0, 'move': 2.0, 'to': 26.0, 'right': 1.0, 'also': 2.0, 'works': 1.0, 'tried': 1.0, 'and': 25.0, 'just': 4.0, 'clip': 1.0, 'having': 3.0, 'absolute': 1.0, 'breath': 1.0, 'flat': 1.0}
Word element => {'africa': 1.0, 'btw': 1.0, 'expect': 1.0, 'around': 1.0, 'or': 1.0, 'are': 1.0, 'motions': 1.0, 'has': 1.0, 'belly': 1.0, 'just': 1.0, 'more': 1.0, 'babies': 1.0, 'fine': 1.0, 'summary': 1.0, 'fully': 1.0, 'blue': 1.0, 'angle': 1.0, 'some': 1.0, 'degree': 1.0, 'once': 3.0, 'they': 1.0, 'sleeping': 1.0, 'work': 2.0, 'status': 1.0, 'respiratory': 2.0, 'alarm': 1.0, 'kid': 1.0, 'be': 1.0, 'sick': 1.0, 'my': 3.0, 'using': 1.0, 'stopped': 1.0, 'nights': 1.0, 'again': 1.0, 'happened': 1.0, 'attached': 1.0, '90': 1.0, 'way': 1.0, 'error': 1.0, 'seemed': 1.0, 'sure': 2.0, 'certain': 1.0, 'stir': 1.0, 'rare': 1.0, 'make': 1.0, 'rubber': 1.0, 'help': 1.0, 'designed': 1.0, 'seems': 1.0, 'off': 1.0, 'until': 3.0, 'go': 1.0, 'lb': 1.0, 'down': 1.0, 'on': 3.0, '3': 2.0, 'one': 1.0, 'try': 1.0, 'contact': 1.0, 'give': 1.0, 'not': 5.0, 'by': 1.0, 'subsequent': 1.0, 'version': 1.0, 'vibration': 1.0, 'i': 6.0, 'well': 1.0, 'would': 3.0, 'intrigued': 1.0, 'previously': 1.0, 'could': 1.0, 's': 3.0, 'month': 1.0, '9': 1.0, 'it': 2.0, 'band': 1.0, 'even': 1.0, '100': 1.0, 'sensitivity': 1.0, 'south': 1.0, 'only': 1.0, 'slowly': 1.0, 'for': 2.0, 'wait': 1.0, 'wanted': 3.0, 'movement': 1.0, 'reading': 1.0, 'mattress': 1.0, 'move': 1.0, 'become': 1.0, 'used': 2.0, 'scar': 1.0, 'to': 13.0, 'back': 2.0, 'sleep': 1.0, 'was': 10.0, 'had': 2.0, 'a': 6.0, 'object': 1.0, 'false': 2.0, 'begin': 1.0, '2': 1.0, 'their': 1.0, 'younger': 1.0, 'description': 1.0, 'and': 5.0, 'after': 1.0, 'monitor': 1.0, 'very': 2.0, 'months': 2.0, 'get': 1.0, 'easy': 3.0, 'right': 1.0, 'fairly': 1.0, 'umbilicus': 1.0, 'with': 4.0, 'angelcare': 1.0, 'up': 1.0, 'product': 1.0, 'snuza': 1.0, 'child': 3.0, 'healed': 2.0, 'mature': 1.0, 'this': 8.0, 'alarms': 2.0, 'before': 1.0, 'placing': 1.0, 'an': 2.0, 'in': 5.0, 'middle': 1.0, 'device': 7.0, 'the': 18.0, 'of': 1.0, 'diaper': 3.0, 'old': 2.0, 'power': 2.0, 'silence': 1.0, 'sensor': 2.0, 'when': 3.0, 'you': 1.0, 'am': 1.0, 'arched': 1.0, 'changing': 1.0, 'no': 1.0, 'past': 1.0, 'issues': 1.0, 'began': 1.0, 'were': 1.0, 'ringing': 1.0, 'is': 1.0, 'compromised': 1.0, 'at': 1.0, 'morning': 1.0, 'baby': 2.0, 'breathing': 1.0, 'cold': 1.0, 'analog': 1.0, 'regularly': 1.0, 'probably': 1.0, 'that': 2.0, 'because': 1.0, 'deep': 1.0, 'made': 1.0, 'side': 1.0, 'which': 1.0, 'phase': 1.0, 'so': 2.0, 'did': 1.0, 'button': 1.0, 'awake': 1.0, 'rolled': 1.0, 'but': 5.0, 'mode': 1.0}
Word element => {'use': 1.0, 'arrived': 1.0, 'defective': 1.0, 'keep': 1.0, 'questions': 1.0, 'replaced': 1.0, 'couldn': 1.0, 'worked': 1.0, '3': 1.0, 'had': 1.0, 'note': 1.0, 'there': 1.0, 'stomach': 1.0, 'not': 1.0, 'could': 1.0, 'will': 2.0, 'tip': 1.0, 'as': 1.0, 'diaper': 1.0, 'attached': 1.0, 'be': 3.0, 'side': 2.0, 'their': 3.0, 'on': 1.0, 'problem': 2.0, 'other': 1.0, 'go': 2.0, 'know': 1.0, 'vibration': 3.0, 'continue': 1.0, 'version': 1.0, 'like': 1.0, 'they': 1.0, 'sleeping': 1.0, 'again': 1.0, 'causing': 1.0, 'called': 1.0, 'bought': 1.0, 'purchasing': 1.0, 'done': 1.0, 'alarm': 4.0, 'that': 4.0, 'after': 2.0, 'touching': 1.0, 'sleeps': 1.0, 'slips': 1.0, 'don': 3.0, 'up': 1.0, 't': 5.0, 'without': 3.0, 'would': 3.0, 'orange': 1.0, 'breathing': 2.0, 'exactly': 1.0, 'sleep': 1.0, 'to': 9.0, 'is': 2.0, 'at': 1.0, 'attaching': 1.0, 'was': 3.0, 'stops': 1.0, 'minutes': 1.0, 'child': 3.0, 'product': 1.0, 'snuza': 1.0, '0': 1.0, 'able': 1.0, 'you': 1.0, 'night': 2.0, 'baby': 3.0, 'i': 14.0, 'feature': 1.0, 'wanting': 1.0, 'fine': 1.0, 'check': 1.0, 'when': 1.0, 'what': 1.0, 'purchased': 1.0, '12': 1.0, 'does': 3.0, 'this': 3.0, 'few': 1.0, 'months': 1.0, 'get': 1.0, 'new': 1.0, 'model': 1.0, 'and': 6.0, 'may': 1.0, 'me': 1.0, 'my': 2.0, 'son': 2.0, 'times': 1.0, 'middle': 1.0, 'one': 3.0, 'lot': 1.0, 'try': 1.0, 'much': 2.0, 'only': 1.0, 'turn': 1.0, 'still': 2.0, 'if': 3.0, 'every': 1.0, 'goes': 2.0, 'help': 1.0, 'think': 2.0, 'portable': 1.0, 'movement': 1.0, 'monitor': 1.0, 'white': 1.0, 'monthsours': 1.0, 'it': 7.0, 'him': 1.0, 'has': 1.0, 'says': 1.0, 'buy': 2.0, 'gone': 1.0, 'several': 1.0, 'about': 2.0, 'but': 3.0, '2': 1.0, 'didn': 1.0, 'even': 1.0, 'can': 1.0, 'so': 3.0, 'any': 1.0, 'your': 1.0, 'feel': 1.0, 'have': 1.0, 'a': 4.0, 'small': 1.0, 'complains': 1.0, 'first': 2.0, 'until': 1.0, 'off': 7.0, 'see': 1.0, 'different': 1.0, 'wake': 2.0, 'way': 1.0, 'device': 5.0, 'of': 2.0, 'the': 23.0, 'moves': 1.0, 'around': 1.0, 'in': 1.0}
Word element => {'underneath': 1.0, 'clothing': 1.0, 'top': 1.0, 'attach': 1.0, 'strap': 1.0, 'onsie': 1.0, 'with': 1.0, 'came': 1.0, 'crib': 1.0, 'just': 1.0, 'asleep': 1.0, 'your': 1.0, 'hidden': 1.0, 'where': 1.0, 'places': 1.0, 'be': 1.0, 'can': 1.0, 'helps': 1.0, 'there': 2.0, 'breath': 2.0, 't': 2.0, 's': 3.0, 'a': 4.0, 'go': 1.0, 'time': 1.0, 'false': 1.0, 'but': 1.0, 'middle': 1.0, 'in': 3.0, 'instead': 3.0, 'feed': 1.0, 'used': 1.0, 'detects': 1.0, 'light': 1.0, 'abd': 1.0, 'don': 2.0, 'advertised': 1.0, 'cheaper': 1.0, 'to': 7.0, 'most': 1.0, 'sleep': 1.0, 'falls': 1.0, 'diaper': 1.0, 'as': 4.0, 'orange': 1.0, 'wish': 1.0, 'myself': 1.0, 'without': 1.0, 'works': 2.0, 'only': 2.0, 'considering': 1.0, 'much': 1.0, 'worth': 1.0, 'off': 3.0, 'up': 2.0, 'knowing': 1.0, 'shallow': 1.0, 'pick': 1.0, 'resume': 1.0, 'never': 1.0, 'too': 1.0, 'and': 2.0, 'able': 1.0, 'night': 2.0, 'of': 6.0, 'the': 16.0, 'device': 2.0, 'version': 1.0, 'vibration': 1.0, 'rather': 1.0, 'like': 1.0, 'i': 7.0, 'or': 1.0, 'feature': 1.0, '100': 1.0, 'baby': 6.0, 'many': 2.0, 'it': 7.0, 'stopped': 1.0, 'this': 1.0, 'alarms': 1.0, 'not': 2.0, 'get': 1.0, 'am': 1.0, 'when': 2.0, 'problem': 2.0, 'going': 1.0, 'alarm': 2.0, 'goes': 1.0, 'attaches': 1.0, 'at': 1.0, 'is': 3.0, 'no': 1.0, 'detected': 1.0, 'definitely': 1.0, 'think': 1.0, 'on': 2.0, 'snuza': 2.0, 'taking': 1.0, 'supposed': 1.0, 'find': 1.0, 'that': 4.0, 'because': 1.0, 'use': 1.0, 'trigger': 1.0, 'breathing': 2.0, 'd': 1.0, 'green': 1.0, 'hear': 1.0, 'check': 1.0, 'being': 1.0, 'leaving': 1.0, 'task': 1.0, 'me': 1.0, 'my': 1.0, 'may': 1.0, 'have': 1.0, 'wake': 1.0, 'way': 1.0}
Word element => {'whatever': 1.0, 'vacation': 1.0, 'house': 1.0, 'grandmas': 1.0, 'also': 1.0, 'breathing': 1.0, 'still': 1.0, 'are': 2.0, 'they': 2.0, 'bed': 1.0, 'an': 1.0, 'weeks': 1.0, 'these': 2.0, 'the': 2.0, 'great': 1.0, 'and': 3.0, 'wasn': 1.0, 'go': 1.0, 't': 2.0, 'a': 1.0, 'so': 3.0, 'twins': 1.0, 'glad': 1.0, 'easy': 1.0, 'sure': 1.0, 'monitor': 1.0, 'angel': 1.0, 'alarm': 1.0, 'that': 1.0, 'us': 1.0, 'watching': 1.0, 'i': 4.0, 'one': 1.0, 'bought': 1.0, 'for': 1.0, 'share': 1.0, 'product': 1.0, 'this': 1.0, 'pack': 1.0, 'only': 1.0, 'small': 1.0, 'have': 2.0, 'infant': 1.0, 'had': 1.0, 'can': 1.0, 'work': 1.0, 'false': 1.0, 'in': 1.0, 'last': 1.0, '5': 1.0, 'to': 3.0, 'sleep': 1.0, 'peacefully': 1.0, 'option': 1.0, 'at': 1.0, 'obsess': 1.0, 'don': 1.0, 'over': 1.0, 'night': 1.0, 'them': 1.0, 'make': 1.0}
Word element => {'mind': 1.0, 'any': 1.0, 'incredible': 1.0, 'flashing': 1.0, 'peace': 1.0, 'beeps': 1.0, 'product': 1.0, 'tested': 1.0, 'on': 1.0, 'have': 1.0, 'all': 1.0, 'delight': 1.0, 'my': 1.0, 'hero': 3.0, 'newer': 1.0, 'of': 2.0, 'instead': 1.0, 'gives': 1.0, 'day': 2.0, 'give': 1.0, 'scares': 1.0, 'option': 1.0, 'halo': 1.0, 'ordered': 1.0, 'i': 5.0, 'it': 3.0, 'love': 1.0, 'the': 8.0, 'me': 2.0, 'and': 3.0, 'next': 2.0, 'timed': 1.0, 'did': 1.0, 'vibrations': 1.0, 'because': 1.0, 'not': 2.0, 'although': 1.0, 'that': 1.0, 'received': 1.0, 'much': 1.0, 'had': 1.0, 'lights': 1.0, 'wanted': 1.0, 'to': 1.0}
Word element => {'love': 1.0, 'well': 1.0, 'travel': 1.0, 'easy': 1.0, 'small': 1.0, 'recommend': 1.0, 'would': 1.0, 'months': 1.0, 'parent': 1.0, 'off': 1.0, 'and': 2.0, 'monitor': 1.0, 'couple': 1.0, 'me': 1.0, 'night': 1.0, 'old': 1.0, '4': 1.0, 'i': 1.0, 'great': 1.0, 'on': 1.0, 'put': 1.0, 'diaper': 2.0, 'wriggled': 1.0, 'this': 2.0, 'he': 2.0, 'it': 6.0, 'as': 1.0, 'any': 1.0, 'to': 2.0, 'our': 1.0, 'that': 2.0, 'every': 2.0, 'son': 1.0, 'ok': 1.0, 'is': 2.0, 'parents': 1.0, 'peace': 1.0, 'almost': 1.0, 'his': 1.0, 'of': 2.0, 'with': 1.0, 'mind': 1.0, 'had': 1.0, 'we': 1.0, 's': 4.0, 'a': 1.0, 'but': 1.0, 'false': 1.0, 'when': 1.0, 'so': 1.0, 'only': 1.0, 'works': 1.0, 'much': 1.0, 'alarms': 1.0, 'came': 1.0, 'let': 1.0, 'know': 1.0, 'working': 1.0, 'absolutely': 1.0}
Word element => {'within': 1.0, 'not': 1.0, 'new': 1.0, 'cheap': 1.0, 'battery': 1.0, 'buy': 1.0, 'i': 1.0, 'thats': 1.0, 'off': 1.0, 'on': 1.0, 'soft': 1.0, 'got': 1.0, 'wear': 1.0, 'however': 1.0, 'of': 1.0, 'and': 1.0, 'had': 1.0, 'to': 2.0, 'that': 1.0, 'our': 1.0, 'lays': 1.0, 'idea': 1.0, 'is': 1.0, 'great': 1.0, '2': 2.0, 'the': 3.0, 'newborn': 1.0, 'flat': 1.0, 'for': 1.0, 'broke': 1.0, 'baby': 1.0, 'about': 1.0, 'week': 1.0, 'purple': 1.0, 'weeks': 1.0, 'even': 1.0, 'part': 1.0, 'before': 1.0, 'working': 1.0, 'out': 1.0, 'period': 1.0, 'it': 3.0, 'only': 1.0, 'stopped': 1.0}
Word element => {'expecting': 1.0, 'that': 1.0, 'friends': 1.0, 'new': 1.0, 'would': 2.0, 'alarm': 3.0, 'started': 1.0, 'for': 1.0, 'actually': 1.0, 'uncomfortable': 1.0, 'one': 1.0, 'seem': 1.0, 'home': 1.0, 'easy': 1.0, 'sure': 1.0, 'months': 1.0, 'get': 2.0, 'must': 1.0, 'have': 4.0, 'not': 3.0, 'me': 1.0, 'times': 2.0, 'when': 1.0, 'does': 1.0, 'use': 1.0, 'her': 1.0, 'very': 2.0, 'monitor': 5.0, 'little': 1.0, 'after': 1.0, 'to': 9.0, 'sleep': 2.0, 'sids': 2.0, 'a': 6.0, 'was': 3.0, 'child': 2.0, 'up': 2.0, 'lost': 2.0, 'alarms': 1.0, 'this': 2.0, 'snug': 1.0, 'is': 4.0, 'as': 1.0, 'diaper': 1.0, 'asleep': 1.0, '2': 1.0, 'false': 2.0, 'but': 1.0, 'got': 1.0, 'daughter': 1.0, 'almost': 1.0, '6': 1.0, 'our': 1.0, 'how': 2.0, 'on': 3.0, 'strong': 1.0, 'with': 1.0, 'are': 1.0, 'first': 1.0, 'it': 6.0, 'only': 1.0, 'much': 1.0, 'end': 1.0, 'recommend': 1.0, 'were': 2.0, 'since': 1.0, 'had': 1.0, 'once': 1.0, 'wake': 1.0, 'the': 13.0, 'of': 2.0, 'using': 1.0, 'vibration': 2.0, 'tested': 1.0, 'having': 1.0, 'worked': 1.0, 'before': 1.0, 'placing': 1.0, 'able': 1.0, 'loud': 1.0, 'went': 1.0, 'see': 1.0, 'off': 1.0, 'both': 2.0, 'house': 1.0, 'i': 1.0, 'other': 1.0, 'woke': 1.0, 'everything': 1.0, 'out': 1.0, 'be': 1.0, 'we': 8.0, 'fine': 1.0, 'better': 1.0, 'definitely': 1.0, 'baby': 4.0, 'others': 1.0, 'and': 5.0, 'recommended': 1.0, 'turned': 1.0, 'several': 1.0}
Word element => {'another': 1.0, 'be': 1.0, 't': 1.0, 'isn': 1.0, 'beauty': 1.0, 'second': 1.0, 'our': 1.0, 'years': 1.0, 'good': 1.0, 'checked': 1.0, 'last': 1.0, 'crib': 1.0, 'bag': 1.0, 'throw': 1.0, 'later': 1.0, 'being': 1.0, 'country': 1.0, 'devices': 1.0, 'over': 1.0, 'all': 1.0, 'traveled': 1.0, 'we': 3.0, 'worked': 1.0, 'day': 1.0, 'during': 1.0, 'parent': 1.0, 'diaper': 2.0, 's': 2.0, 'fact': 1.0, 'battery': 1.0, 'really': 1.0, 'themselves': 1.0, 'for': 1.0, 'their': 1.0, 'put': 1.0, 'they': 1.0, 'best': 1.0, 'told': 1.0, 'purchased': 1.0, 'several': 1.0, 'pregnant': 1.0, 'come': 1.0, 'nothing': 1.0, 'while': 2.0, 'bullet': 1.0, 'baby': 1.0, 'she': 4.0, 'stopped': 2.0, 'same': 1.0, 'breathing': 3.0, 'through': 1.0, 'would': 3.0, 'alarm': 1.0, 'with': 3.0, 'like': 1.0, 'rather': 2.0, 'a': 3.0, 'go': 1.0, 'than': 2.0, 'pass': 1.0, 'child': 1.0, 'snuza': 3.0, 'one': 2.0, 'seated': 1.0, 'sids': 2.0, 'by': 1.0, 'sister': 1.0, 'week': 1.0, 'me': 1.0, 'my': 9.0, 'working': 1.0, 'fool': 1.0, 'after': 1.0, 'clips': 1.0, 'so': 2.0, 'worried': 1.0, 'time': 1.0, 'house': 2.0, 'mind': 2.0, 'co': 1.0, 'bit': 1.0, 'know': 2.0, 'of': 5.0, 'the': 19.0, 'device': 1.0, 'not': 3.0, 'have': 5.0, 'born': 2.0, 'went': 2.0, 'thing': 3.0, 'about': 2.0, 'this': 4.0, 'sleeper': 1.0, 'peace': 2.0, 'panicking': 1.0, 'slept': 1.0, 'i': 14.0, 'everywhere': 1.0, 'because': 1.0, 'that': 7.0, 'love': 1.0, 'nephew': 1.0, 'was': 11.0, 'to': 11.0, 'sleep': 2.0, 'off': 2.0, 'dying': 1.0, 'purchasing': 1.0, 'registry': 1.0, 'bought': 2.0, 'at': 1.0, 'is': 3.0, 'worry': 1.0, 'say': 1.0, 'proof': 1.0, 'couple': 1.0, 'contact': 1.0, 'there': 1.0, 'were': 1.0, 'when': 2.0, 'in': 5.0, 'times': 1.0, 'middle': 1.0, 'able': 2.0, 'night': 2.0, 'daughter': 5.0, 'got': 1.0, 'will': 1.0, 'rouse': 1.0, 'had': 1.0, 'or': 2.0, 'worth': 1.0, 'right': 1.0, 'll': 1.0, 'never': 1.0, 'personally': 1.0, 'her': 2.0, 'get': 1.0, 'beeping': 1.0, 'check': 1.0, 'also': 3.0, 'on': 4.0, 'two': 1.0, 'nice': 2.0, 'little': 1.0, 'it': 6.0, 'starting': 1.0, 'gem': 1.0, 'law': 1.0, 'still': 1.0, 'bigger': 1.0, 'if': 2.0, 'every': 1.0, '8217': 2.0, 'less': 1.0, 'up': 1.0, 'penny': 1.0, 'anyone': 1.0, 'and': 7.0, 'recommended': 1.0}
Word element => {'registry': 1.0, 'on': 1.0, 'be': 1.0, 'should': 1.0, 'glad': 1.0, 'am': 1.0, 'accidentally': 1.0, 'simultaneously': 1.0, 's': 1.0, 'you': 1.0, 'off': 2.0, 'turn': 2.0, 'everyone': 1.0, 'to': 2.0, 'that': 1.0, 'other': 1.0, '2': 1.0, 'the': 2.0, 't': 2.0, 'using': 1.0, 'a': 1.0, 'don': 1.0, 'better': 1.0, 'movement': 1.0, 'much': 1.0, 'so': 2.0, 'is': 2.0, 'got': 1.0, 'feel': 1.0, 'guess': 1.0, 'i': 5.0, 'hard': 1.0, 'it': 3.0, 'this': 3.0, 'only': 2.0, 'like': 1.0, 'doesn': 1.0, 'work': 1.0, 'have': 1.0, 'monitors': 1.0, 'thing': 1.0, 'in': 1.0, 'crib': 1.0, 'buttons': 1.0, 'works': 1.0, 'push': 1.0, 'anywhere': 1.0}
Word element => {'money': 1.0, 'do': 1.0, 'extra': 1.0, 'definitely': 1.0, 'mind': 1.0, 'peace': 1.0, 'not': 1.0, 'give': 1.0, 'does': 1.0, 'still': 1.0, 'their': 1.0, 'wondering': 1.0, 'regret': 1.0, 'anyone': 1.0, 'i': 1.0, 'been': 1.0, 'have': 1.0, 'stopping': 1.0, 'instead': 1.0, 'who': 1.0, 'at': 1.0, 'through': 1.0, 'breathing': 2.0, 'took': 1.0, 'old': 1.0, 'months': 1.0, 'worry': 1.0, '5': 1.0, 'woken': 1.0, 'is': 2.0, 'around': 1.0, 'first': 1.0, 'recommend': 1.0, 'was': 1.0, 'her': 3.0, 'crib': 1.0, 'daughter': 1.0, 'you': 1.0, 'when': 2.0, 'able': 1.0, 'us': 1.0, 'absolutely': 1.0, 'product': 1.0, 'for': 2.0, 'love': 1.0, 'device': 1.0, 'using': 1.0, 'night': 1.0, 'started': 1.0, 'monitor': 1.0, 'this': 4.0, 'scared': 1.0, 'get': 1.0, 'moved': 1.0, 'and': 2.0, 'sleep': 2.0, 'to': 4.0, 'our': 1.0, 'losing': 1.0, 'we': 6.0, 'a': 1.0, 'of': 3.0, 'child': 1.0, 'up': 1.0, 'it': 2.0, 'nights': 1.0, 'after': 2.0, 'if': 1.0, 'being': 1.0, 'without': 1.0, 'the': 6.0, 'figured': 1.0, 'would': 1.0, 'position': 1.0, 'alarm': 2.0, 'went': 1.0, 'spending': 1.0, 'off': 1.0, 'on': 1.0, 'positioning': 2.0, 'right': 1.0, 'couple': 1.0, 'out': 1.0, 'were': 1.0, 'assured': 1.0, 'highly': 1.0, 'really': 2.0}
Word element => {'grandchildren': 1.0, 'valued': 1.0, 'priced': 1.0, 'extremely': 1.0, 'just': 1.0, 'law': 1.0, 'in': 1.0, 'share': 1.0, 'find': 3.0, 'which': 1.0, 'blessed': 1.0, 'come': 1.0, 'they': 1.0, 'but': 1.0, 'magnificent': 1.0, 'better': 1.0, 'light': 1.0, 'back': 3.0, 'simple': 1.0, 't': 1.0, 'couldn': 1.0, 'do': 1.0, 'put': 1.0, 'explained': 1.0, 'here': 1.0, 'nothing': 1.0, 'out': 1.0, 'or': 1.0, 'world': 1.0, 'husband': 1.0, 'more': 1.0, 'there': 1.0, 'decides': 1.0, 'she': 2.0, 'life': 1.0, 'fantastic': 1.0, 'majority': 1.0, 'vast': 1.0, 'leaving': 1.0, '98': 1.0, 'sleeps': 2.0, 'sleepyhead': 1.0, 'a': 6.0, 's': 1.0, 'hardly': 1.0, 'price': 1.0, 'product': 1.0, 'for': 1.0, 'night': 1.0, 'meant': 1.0, 'continued': 1.0, 'take': 1.0, 'we': 4.0, 'reviews': 1.0, 'what': 1.0, 'continuted': 1.0, 'when': 3.0, 'feel': 2.0, 'see': 1.0, 'off': 2.0, 'until': 2.0, '100': 1.0, 'spectacular': 1.0, 'tidbits': 1.0, 'sounded': 1.0, 'interesting': 3.0, 'talking': 1.0, 'little': 4.0, 'watch': 1.0, 'show': 2.0, 'income': 1.0, '90': 1.0, 'way': 1.0, 'on': 6.0, 'saw': 2.0, 'really': 1.0, 'sooner': 1.0, 'guaranteed': 1.0, 'and': 14.0, 'as': 3.0, 'fixed': 1.0, 'against': 1.0, 'to': 8.0, 'how': 2.0, 'our': 4.0, 'say': 2.0, 'myself': 1.0, 'wish': 1.0, 'had': 1.0, 'know': 2.0, 'easy': 2.0, 'tv': 1.0, 'been': 1.0, 'delighted': 1.0, 'the': 12.0, 'of': 8.0, 'doctor': 1.0, 'from': 1.0, 'grown': 1.0, 'believe': 1.0, 'called': 1.0, 'purchasing': 1.0, 'up': 1.0, '7': 1.0, 'change': 2.0, 'mother': 1.0, 'blinking': 1.0, 'teenage': 1.0, 'thought': 1.0, 'it': 9.0, 'i': 19.0, 'watching': 1.0, 'could': 1.0, 'will': 2.0, 'invented': 1.0, 'research': 1.0, 'children': 1.0, 'moniter': 1.0, 'read': 1.0, 'wait': 1.0, 'get': 1.0, 'after': 1.0, 'truly': 2.0, 'daughter': 5.0, 'darn': 1.0, 'about': 1.0, '2': 1.0, 'thing': 2.0, 'only': 1.0, 'reasonably': 1.0, 'prayed': 1.0, 'can': 1.0, 'so': 3.0, 'newest': 1.0, 'lot': 1.0, 'one': 4.0, 'would': 1.0, 'turn': 3.0, 'asked': 1.0, 'stay': 1.0, 'safe': 1.0, 'also': 2.0, 'received': 1.0, 'ever': 1.0, 'an': 1.0, 'other': 2.0, 'worked': 1.0, 'tasks': 1.0, 'have': 3.0, 'muscle': 1.0, 'disease': 1.0, 'green': 1.0, 'often': 2.0, 'my': 3.0, 'with': 4.0, 'some': 1.0, 'knew': 1.0, 'fingers': 1.0, 'difficulties': 1.0, 'was': 6.0, 'that': 14.0, 'concerned': 1.0, 'day': 1.0, 'her': 4.0, 'this': 6.0, 'few': 1.0, 'hours': 1.0, 'grandmother': 3.0, 'newborn': 1.0, 'needed': 2.0, 'are': 2.0, 'diapers': 1.0, 'is': 4.0, 'at': 2.0, 'invention': 1.0, 'time': 3.0}
Word element => {'shot': 1.0, 'money': 1.0, 'worth': 1.0, 'knew': 1.0, 'always': 1.0, 'listened': 1.0, 'still': 1.0, 'miracle': 1.0, 'two': 1.0, 'slept': 2.0, 'signaled': 1.0, 'clothes': 1.0, 'green': 1.0, 'led': 1.0, 'tiny': 1.0, 'see': 1.0, 'thankfully': 1.0, 'turned': 1.0, 'sure': 1.0, 'hours': 1.0, 'moment': 1.0, 'panicky': 1.0, 'one': 1.0, 'dictating': 1.0, 'micromanaging': 1.0, 'helped': 1.0, 'hey': 1.0, 'will': 2.0, 'okay': 3.0, 'how': 1.0, 'put': 1.0, 'sounded': 1.0, 'alarm': 1.0, 'until': 1.0, 'thought': 1.0, 'bathing': 1.0, 'totally': 1.0, 'new': 1.0, 'hard': 2.0, 'kinda': 1.0, 'again': 1.0, 'work': 1.0, 'alarms': 1.0, 'state': 1.0, 'down': 3.0, 've': 2.0, 'was': 9.0, 'there': 2.0, 'give': 1.0, 'or': 5.0, 'falling': 1.0, 'awake': 1.0, 'despite': 1.0, 'button': 1.0, 'move': 1.0, 'used': 1.0, 'because': 4.0, 'stitches': 1.0, 'section': 1.0, 'every': 1.0, 'if': 5.0, 'relaxing': 1.0, 'tearing': 1.0, 'almost': 1.0, 'now': 2.0, 'figure': 2.0, 'next': 2.0, 'probably': 1.0, 'minor': 1.0, 'before': 2.0, 'noise': 2.0, 'their': 2.0, 'aware': 2.0, 'do': 1.0, 'mind': 3.0, 'co': 1.0, 'half': 2.0, 'reasoning': 1.0, 'even': 4.0, 'of': 6.0, 'popping': 1.0, 'the': 16.0, 'rest': 1.0, 'friend': 2.0, 'for': 2.0, 'cord': 1.0, 'me': 5.0, 'so': 5.0, '3': 1.0, 'goodness': 1.0, 'beside': 1.0, 'sleeps': 1.0, 'what': 1.0, 'between': 2.0, 'mellowed': 1.0, 'right': 1.0, 'to': 16.0, 'point': 1.0, 'feedings': 2.0, 'bassinet': 2.0, 'night': 3.0, 'you': 4.0, 'newborn': 1.0, 'in': 2.0, 'but': 5.0, 'i': 30.0, 'putting': 1.0, 'flash': 1.0, 'fast': 1.0, 'coming': 1.0, 'checking': 1.0, 'c': 1.0, 'no': 2.0, 'has': 2.0, 'gotten': 1.0, 'out': 5.0, 'during': 2.0, 'movement': 2.0, 'settling': 1.0, 'nervous': 2.0, 'overnight': 1.0, 'were': 2.0, 'm': 4.0, 's': 4.0, 'we': 2.0, 'wasn': 1.0, 'fine': 1.0, 'moving': 1.0, 'only': 1.0, 'then': 2.0, 'a': 20.0, 'story': 1.0, 'makes': 1.0, 'type': 2.0, 'thank': 1.0, 'child': 2.0, 'since': 2.0, 'day': 2.0, 'somewhat': 1.0, 'sigh': 1.0, 'recommended': 1.0, 'use': 2.0, 'not': 4.0, 'different': 1.0, 'older': 1.0, 'first': 4.0, 'on': 7.0, 'sound': 1.0, 'help': 1.0, 'coffee': 1.0, 'sucks': 1.0, 'our': 5.0, 'have': 1.0, '7': 1.0, 'peace': 3.0, 'falls': 1.0, 'whatever': 1.0, 'sleep': 6.0, 'at': 3.0, 'turn': 1.0, 'can': 5.0, 'is': 1.0, 'painfully': 1.0, 'personality': 1.0, 'tried': 1.0, 'and': 26.0, 'just': 2.0, 'mothering': 1.0, 'gone': 1.0, 'after': 1.0, 'by': 1.0, 'recovering': 1.0, 'awry': 1.0, 'parent': 1.0, 'check': 2.0, 'asleep': 1.0, 'hear': 1.0, 'yeah': 1.0, 'total': 1.0, 'girl': 2.0, 'where': 1.0, 'slightest': 1.0, 'week': 2.0, 'little': 7.0, 'her': 5.0, 'white': 1.0, 'instinct': 2.0, 'machine': 1.0, 'happens': 1.0, 'snoring': 1.0, 'husband': 1.0, 'bottom': 1.0, 'well': 1.0, 'line': 1.0, 'leaving': 1.0, 'hospital': 1.0, 'over': 2.0, 'sleeping': 2.0, 'doula': 3.0, 'they': 1.0, 'did': 1.0, 'kind': 1.0, 'laying': 1.0, 'make': 1.0, 'she': 3.0, 'ended': 1.0, 'when': 2.0, 'bed': 1.0, 'somewhere': 1.0, 'regret': 1.0, 'hyper': 2.0, 'unable': 1.0, 'light': 1.0, 'alert': 1.0, 'nightmare': 1.0, 'discovered': 1.0, 'winding': 1.0, 'much': 1.0, 'postpartum': 2.0, 'from': 2.0, 'who': 1.0, 'went': 1.0, 'been': 1.0, 'helping': 1.0, 'few': 1.0, 'this': 4.0, 'nights': 3.0, 'feet': 1.0, 'home': 1.0, 'never': 2.0, 'some': 2.0, 're': 1.0, 'know': 2.0, 'll': 1.0, 'am': 1.0, 'mommas': 1.0, 'could': 2.0, 'going': 1.0, 'with': 1.0, 'forgotten': 1.0, 'diaper': 2.0, 'up': 2.0, 'hall': 1.0, 'it': 12.0, 'be': 2.0, 'own': 1.0, 'off': 8.0, 'my': 4.0, 'room': 1.0, 'whole': 2.0, 'as': 2.0, 'shut': 2.0, 'couldn': 3.0, 't': 4.0, 'able': 1.0, 'get': 3.0, 'all': 1.0, 'way': 1.0, 'through': 1.0, 'belly': 1.0, 'that': 6.0, 'appeared': 1.0, 'sweet': 1.0, 'waited': 1.0, 'imagine': 1.0, 'gadget': 1.0, 'positive': 1.0, 'switch': 1.0, 'd': 2.0, 'seemed': 1.0, 'bought': 1.0, 'came': 1.0, 'said': 1.0, 'false': 2.0}
Word element => {'know': 1.0, 'every': 1.0, 'mind': 1.0, 'peace': 1.0, 'such': 1.0, 'me': 1.0, 'mommy': 1.0, 'given': 1.0, 'alarm': 2.0, 'snuza': 2.0, 'recently': 1.0, 'went': 1.0, 'rushed': 1.0, 'spit': 2.0, 'him': 5.0, 'checking': 1.0, 'waking': 1.0, 'recommend': 1.0, 'was': 3.0, 'to': 3.0, 'had': 2.0, 'a': 1.0, 'middle': 1.0, 'friend': 1.0, 'has': 2.0, 'recommended': 1.0, 'on': 4.0, 'constantly': 1.0, 'believe': 1.0, 'the': 7.0, 'reflux': 1.0, 'grabbed': 1.0, 'crying': 1.0, 'off': 1.0, 'up': 4.0, 'and': 6.0, 'of': 2.0, 'halo': 2.0, 'in': 1.0, 'he': 2.0, 'it': 2.0, 'his': 1.0, 'stomach': 1.0, 'fully': 1.0, 'that': 1.0, 'i': 7.0, 'saved': 1.0, 'night': 1.0, 'baby': 2.0, 'started': 1.0, 'able': 1.0, 'thank': 1.0, 'pat': 1.0, 'back': 1.0, 'my': 2.0, 'goodness': 1.0}
Word element => {'false': 1.0, 'few': 1.0, 'had': 1.0, 'batteries': 1.0, 'extra': 1.0, 'is': 1.0, 'great': 1.0, 'last': 1.0, 'my': 1.0, 'product': 1.0, 'however': 1.0, 'battery': 1.0, 'alarms': 1.0, 'a': 1.0, 'doesn': 1.0, 'have': 1.0, 't': 1.0, 'order': 1.0, 'so': 1.0, 'we': 1.0, 'long': 1.0, 'advice': 1.0}
Word element => {'well': 1.0, 'ribs': 1.0, 'under': 1.0, 'side': 1.0, 'placement': 1.0, 'have': 1.0, 'practice': 1.0, 'bellies': 1.0, 'thier': 1.0, 'off': 1.0, 'he': 2.0, 'its': 1.0, 'only': 2.0, 'first': 2.0, 'from': 1.0, 'sleeping': 1.0, 'more': 1.0, 'lifted': 1.0, 'wish': 1.0, 'you': 1.0, 'when': 1.0, 'breathe': 1.0, 'not': 1.0, 'gasped': 1.0, 'crib': 1.0, 'had': 2.0, 'sleep': 2.0, 'our': 3.0, 'to': 3.0, 'alarm': 1.0, 'go': 1.0, 'a': 1.0, 'weeks': 1.0, 'an': 1.0, 'remeding': 1.0, 'back': 1.0, 'baby': 2.0, 'about': 1.0, 'work': 1.0, 'but': 1.0, '2': 1.0, 'after': 1.0, 'receiving': 1.0, 'stomach': 2.0, 'on': 5.0, 'his': 2.0, 'her': 1.0, 'kid': 1.0, 'will': 2.0, 'seems': 2.0, 'be': 1.0, 'apprehension': 1.0, 'too': 1.0, 'and': 1.0, 'working': 1.0, 'i': 1.0, 'huge': 1.0, 'one': 1.0, 'for': 1.0, 'who': 1.0, 'hated': 1.0}
Word element => {'as': 1.0, 'some': 1.0, 'us': 1.0, 'several': 1.0, 'bought': 1.0, 'have': 1.0, 'we': 1.0, 'teething': 1.0, 'or': 1.0, 'baby': 1.0, 'spitty': 1.0, 'find': 1.0, 'are': 1.0, 'so': 1.0, 'to': 1.0, 'bibs': 2.0, 'high': 1.0, 'is': 1.0, 'hard': 1.0, 'with': 2.0, 'it': 2.0, 'the': 1.0, 'these': 2.0, 'such': 1.0, 'great': 1.0, 'i': 1.0, 'snaps': 1.0, 'well': 1.0, 'a': 1.0, 'and': 2.0, 'nice': 1.0, 'gifts': 1.0, 'quality': 1.0, 'backing': 1.0, 's': 1.0, 'love': 1.0, 'for': 3.0}
Word element => {'sweet': 1.0, 'shoulders': 1.0, 'for': 1.0, 'coverage': 1.0, 'better': 1.0, 'have': 1.0, 'chest': 1.0, 'other': 1.0, 'any': 1.0, 'than': 1.0, 'was': 1.0, 'now': 1.0, 'bib': 3.0, 'at': 1.0, 'several': 1.0, 'no': 1.0, 'there': 1.0, 'of': 2.0, 'shower': 1.0, 'it': 1.0, 'turning': 1.0, 'these': 2.0, 'wonder': 1.0, 'given': 1.0, 'the': 8.0, 'hands': 1.0, 'your': 1.0, 'on': 1.0, 'months': 1.0, 'baby': 2.0, 'them': 2.0, 'down': 1.0, 'market': 1.0, 'before': 1.0, 'best': 1.0, 'were': 1.0, 'opened': 1.0, 'catch': 1.0, 'gave': 1.0, 'pack': 2.0, 'only': 1.0, 'try': 1.0, 'use': 1.0, 'but': 1.0, 'back': 1.0, 'will': 1.0, 'a': 2.0, 'we': 3.0, 's': 1.0, 'are': 2.0, 'bibs': 2.0, 'they': 1.0, 'and': 5.0, 'milk': 1.0, 'more': 1.0, 'is': 1.0, 'around': 1.0, 'neck': 1.0}
Word element => {'flat': 1.0, 'so': 1.0, 'little': 1.0, 'bunch': 1.0, 'like': 2.0, 'them': 1.0, 'up': 2.0, 'don': 1.0, 'they': 2.0, 'drools': 1.0, 'a': 1.0, 't': 1.0, 'the': 1.0, 'chin': 1.0, 'these': 1.0, 'hit': 1.0, 'something': 1.0, 'but': 1.0, 'back': 1.0, 'cute': 1.0, 'bandana': 1.0, 'lands': 1.0, 'need': 1.0, 'look': 1.0, 'for': 1.0, 'mushed': 1.0, 'seconds': 1.0, 'is': 1.0, 'why': 1.0, 'this': 1.0, 'he': 1.0, 'it': 1.0, 'two': 1.0, 'i': 2.0, 'and': 3.0, 'face': 2.0, 'then': 2.0, 'when': 1.0, 'gets': 1.0, 'spits': 1.0, 'or': 1.0, 'that': 1.0, 'babies': 1.0, 'into': 1.0, 'on': 1.0, 'bib': 1.0, 'his': 1.0, 'lies': 1.0}
Word element => {'either': 1.0, 'neck': 1.0, 'doesn': 1.0, 'for': 1.0, 'love': 1.0, 'on': 2.0, 'huge': 1.0, 'months': 1.0, 'have': 2.0, 'the': 4.0, 'them': 1.0, 'of': 1.0, '4': 1.0, 'i': 1.0, 'old': 1.0, 'keep': 1.0, 'snaps': 2.0, 'hide': 1.0, 'outfits': 1.0, '5': 1.0, 'completely': 1.0, 'is': 1.0, 'wanted': 1.0, 'to': 2.0, 'were': 1.0, 'that': 2.0, 'so': 1.0, 'her': 3.0, 'really': 1.0, 'bibs': 1.0, 'cute': 1.0, 'they': 3.0, 'drooling': 1.0, 'using': 1.0, 'downside': 1.0, 'tight': 1.0, 'my': 1.0, 'don': 1.0, 'placement': 1.0, 'only': 1.0, 'are': 2.0, 'and': 3.0, 'too': 1.0, 'furtherest': 1.0, 'daughter': 1.0, 'some': 1.0, 'these': 1.0, 'already': 1.0, 'she': 1.0, 't': 2.0, 's': 2.0, 'apart': 1.0}
Word element => {'colour': 1.0, 'in': 1.0, 'they': 1.0, 'these': 1.0, 'also': 1.0, 'teething': 1.0, 'super': 1.0, 'cute': 1.0, 'bibs': 1.0, 'clothes': 1.0, 'very': 2.0, 'and': 2.0, 'during': 1.0, 'dry': 1.0, 'absorbent': 1.0, 'it': 1.0, 'keeps': 1.0, 'are': 2.0, 'my': 1.0, 'fashionable': 1.0, 'sons': 1.0}
Word element => {'laugh': 1.0, 'it': 1.0, 'plus': 1.0, '34': 2.0, 'how': 1.0, 'tell': 1.0, 'us': 1.0, 'little': 2.0, 'but': 1.0, 'me': 2.0, 'not': 1.0, 'never': 1.0, 'length': 1.0, 'right': 1.0, 'just': 1.0, 'him': 1.0, 'be': 1.0, 'manages': 1.0, 'this': 1.0, 'hazard': 1.0, 'on': 1.0, 'which': 1.0, 'drag': 1.0, 'want': 1.0, 'and': 4.0, 'super': 1.0, 'also': 2.0, 'bandana': 1.0, 'didn': 1.0, '9mo': 1.0, 'the': 4.0, 'become': 1.0, 'i': 3.0, 'ascot': 1.0, 'bothers': 1.0, 'rash': 1.0, 'of': 5.0, 'now': 2.0, 'couple': 1.0, 'intention': 1.0, 'getting': 1.0, 'barrier': 1.0, 'neck': 2.0, 'my': 1.0, 'cream': 1.0, 'underneath': 1.0, 'have': 1.0, 'down': 1.0, 'his': 5.0, 'part': 1.0, 'seriously': 1.0, 'makes': 1.0, 'old': 1.0, 'drooly': 1.0, 'baby': 1.0, 'ladies': 1.0, 'finally': 1.0, 'other': 1.0, 'active': 1.0, 'wardrobe': 1.0, 'time': 1.0, 'so': 1.0, 'decided': 1.0, 'months': 1.0, 'since': 1.0, 'bib': 2.0, 'keep': 1.0, 'applying': 1.0, 'bibs': 2.0, 'they': 1.0, 'are': 2.0, 'everyday': 1.0, 'buy': 1.0, 'unlike': 1.0, 'these': 2.0, 'some': 1.0, 'no': 1.0, 'stop': 1.0, 'amount': 1.0, 'after': 1.0, 'drool': 2.0, 'nice': 1.0, 'nylon': 1.0, 'is': 4.0, 't': 1.0, 'a': 5.0, 'lined': 1.0, 'with': 1.0, 'ground': 1.0, 'skin': 1.0, 'through': 1.0, 'all': 1.0, 'to': 6.0, 'our': 1.0}
Word element => {'but': 1.0, 'tag': 1.0, 'mum2mum': 1.0, 'prominent': 1.0, 'change': 1.0, 'would': 1.0, 'thing': 1.0, 'second': 1.0, 'be': 1.0, 'will': 1.0, 'price': 1.0, 'worth': 1.0, 'pack': 1.0, 'definitely': 1.0, 'they': 1.0, 'while': 1.0, 'quality': 1.0, 'colors': 1.0, 'nice': 1.0, 'design': 1.0, 'also': 1.0, 'velcro': 1.0, 'profile': 1.0, 'closure': 1.0, 'low': 1.0, 'with': 1.0, 'adjustability': 1.0, 'size': 1.0, 'have': 1.0, 'setting': 1.0, 'snap': 2.0, 'into': 1.0, '21': 1.0, 'last': 1.0, 'only': 1.0, 'quickly': 1.0, 'backing': 1.0, 'been': 1.0, 'that': 3.0, 'terry': 1.0, 'through': 2.0, 'larger': 1.0, 'chenille': 1.0, 'lbs': 1.0, 'was': 1.0, 'before': 1.0, 'over': 1.0, 's': 1.0, 'wetness': 1.0, 'going': 1.0, 'a': 8.0, 'by': 1.0, 'wet': 1.0, 'large': 1.0, 'caused': 1.0, 'about': 1.0, 'much': 1.0, 'expensive': 1.0, 'neck': 3.0, 'battling': 1.0, 'my': 3.0, 'are': 3.0, 'fairly': 1.0, 'soaking': 1.0, 'chest': 2.0, '6': 1.0, 'solid': 1.0, 'love': 2.0, 'yet': 1.0, 'he': 3.0, 'using': 1.0, 'body': 1.0, 'like': 1.0, '10': 1.0, 'for': 2.0, 'found': 1.0, 'soft': 1.0, 'irritating': 1.0, 'bibs': 5.0, 'excellent': 1.0, 'really': 3.0, 'these': 4.0, 'them': 2.0, 'has': 4.0, 've': 1.0, 'drooly': 1.0, 'old': 1.0, 'color': 1.0, 'rash': 1.0, 'front': 1.0, 'it': 1.0, 'well': 1.0, 'i': 5.0, 'day': 1.0, 'best': 1.0, 'very': 1.0, 'and': 8.0, 'tuck': 1.0, 'drooling': 1.0, 'the': 14.0, 'longer': 1.0, 'keep': 2.0, 'his': 2.0, 'drier': 1.0, 'fits': 1.0, 'bandana': 1.0, 'style': 2.0, 'does': 1.0, 'huge': 1.0, 'than': 1.0, 'breathable': 1.0, '3': 1.0, 'catch': 1.0, 'more': 1.0, 'is': 4.0, 'ordering': 1.0, 'drool': 1.0, 'supple': 1.0, 'flat': 1.0, 'helps': 1.0, 'instead': 1.0, 'to': 1.0, 'away': 1.0, 'when': 1.0, 'you': 1.0, 'exposed': 1.0, 'deal': 1.0, 'baby': 1.0, 'folds': 2.0, 'get': 1.0, 'sensitive': 1.0, 'so': 1.0, 'can': 1.0, 'super': 1.0, 'month': 2.0, 'under': 1.0, 'saturated': 1.0, 'not': 2.0, 'skin': 3.0, 'dry': 1.0, 'touch': 1.0, 'wonder': 1.0, 'from': 1.0, 'feels': 1.0, 'nylon': 1.0, 'feel': 1.0, 'slippery': 1.0, 'weighs': 1.0}
Word element => {'advertised': 1.0, 'liquid': 1.0, 'cup': 1.0, '4': 1.0, '1': 1.0, 'believe': 1.0, 'regardless': 1.0, 'due': 1.0, 'couple': 1.0, 'another': 1.0, 'be': 1.0, 'face': 2.0, 'his': 4.0, 'on': 3.0, '3': 2.0, 'guy': 1.0, 'foresee': 1.0, 'over': 2.0, 'up': 4.0, 'don': 1.0, 'to': 4.0, 'all': 2.0, 'our': 1.0, 'not': 1.0, 'lasting': 1.0, 'tends': 1.0, 'than': 1.0, 'mealtime': 1.0, 'as': 1.0, 'leave': 1.0, 'have': 2.0, 'of': 2.0, 'the': 5.0, 'kiddo': 1.0, 'absolutely': 1.0, 'nap': 1.0, 'we': 2.0, 'go': 1.0, 'small': 1.0, 'a': 3.0, 's': 3.0, 'flip': 1.0, 'bibs': 1.0, 'reflux': 1.0, 'using': 1.0, 'my': 1.0, 'terrible': 1.0, 'time': 1.0, 'can': 1.0, 'so': 4.0, 't': 3.0, 'likes': 1.0, 'hold': 1.0, 'percentile': 1.0, 'won': 1.0, 'downside': 1.0, 'old': 2.0, 'through': 1.0, 'meal': 1.0, 'totally': 1.0, 'month': 1.0, 'him': 2.0, 'it': 2.0, 'that': 3.0, 'lasts': 1.0, 'bib': 4.0, 'is': 2.0, 'at': 2.0, 'and': 2.0, 'everything': 1.0, 'every': 1.0, 'if': 1.0, 'ends': 1.0, 'only': 1.0, 'this': 4.0, 'day': 1.0, 'during': 1.0, 'problem': 1.0, 'though': 1.0, 'worn': 1.0, 'catches': 1.0, 'i': 2.0, 'while': 2.0, 'he': 3.0, 'flipped': 1.0, 'playmat': 1.0, 'after': 2.0, 'occasionally': 1.0, 'has': 1.0, 'always': 1.0, 'fortunately': 1.0, 'two': 1.0, 'little': 1.0, 'chew': 1.0, 'bother': 1.0, 'there': 1.0, 'larger': 1.0, 'are': 1.0, 'snap': 1.0, 'size': 3.0, 'probably': 1.0, 'more': 1.0, 'settings': 1.0, 'months': 2.0, 'doesn': 1.0, 'setting': 1.0, 'wise': 1.0, 'these': 2.0, 'in': 1.0, '90th': 1.0, 'you': 2.0, 'also': 1.0, 'us': 1.0}
Word element => {'bomb': 1.0, 'babies': 1.0, 'no': 1.0, 'and': 1.0, 'bottle': 1.0, 'a': 1.0, 'her': 1.0, 'on': 1.0, 'through': 1.0, 'to': 1.0, 'soak': 1.0, 'colors': 1.0, 'don': 1.0, 'doesn': 1.0, 'wonderful': 1.0, 'they': 2.0, 'are': 1.0, 'bundle': 1.0, 'happy': 1.0, 'my': 1.0, 'end': 1.0, 'bibs': 1.0, 'wet': 1.0, 'scratch': 1.0, 't': 2.0, 'these': 1.0, 'the': 2.0, 'nicely': 1.0, 'chin': 1.0, 'up': 1.0, 'under': 1.0, 'delicate': 1.0, 'after': 1.0, 'so': 1.0, 'daughter': 1.0, 'skin': 1.0, 'velcro': 1.0, 'onesies': 1.0, 'with': 1.0, 'neck': 1.0, 'collar': 1.0}
Word element => {'be': 1.0, 'more': 1.0, 'little': 1.0, 'buy': 1.0, 'will': 1.0, 'extenders': 1.0, 'find': 1.0, 'if': 1.0, 'scratchy': 1.0, 'really': 1.0, 'not': 1.0, 'snaps': 1.0, 'they': 4.0, 'though': 1.0, 'feel': 1.0, 'bib': 2.0, 'get': 1.0, 'months': 1.0, 'pounds': 1.0, '5': 2.0, 'velcro': 2.0, 'towards': 1.0, 'don': 1.0, 'up': 2.0, 'over': 1.0, 'out': 1.0, 'was': 1.0, 'granite': 1.0, 'drooler': 1.0, 'solids': 1.0, 'day': 1.0, 'lay': 1.0, 'to': 1.0, 'all': 1.0, 'last': 1.0, 'them': 1.0, 'has': 1.0, 'a': 4.0, 'go': 2.0, 'with': 1.0, 'makes': 1.0, 't': 2.0, 'fit': 1.0, 'fabric': 2.0, 'for': 1.0, 'he': 4.0, 'love': 1.0, 'through': 1.0, 'order': 1.0, 'mouth': 2.0, '20': 1.0, 'that': 3.0, 'windbreaker': 1.0, 'because': 2.0, 'i': 4.0, 'coming': 1.0, 'well': 1.0, 'slobber': 1.0, 'bibs': 3.0, 'just': 2.0, 'started': 1.0, 'baby': 1.0, 'these': 1.0, 'chin': 1.0, 'as': 2.0, 'heavy': 1.0, '2': 1.0, 'so': 1.0, 'can': 4.0, 'old': 1.0, 'fact': 1.0, 'it': 1.0, 'him': 1.0, 'tight': 1.0, 'would': 1.0, 'month': 2.0, 'super': 1.0, 'at': 1.0, 'is': 5.0, 'his': 3.0, 'around': 1.0, 'regular': 1.0, 'in': 2.0, 'are': 1.0, 'too': 1.0, 'and': 5.0, 'neck': 1.0, 'when': 1.0, 'snap': 1.0, 'creep': 1.0, 'my': 1.0, 'me': 1.0, 'nervous': 1.0, 'kid': 1.0, 'perfectly': 1.0, 'amount': 1.0, 'on': 3.0, 'absorbent': 1.0, 'like': 2.0, 'which': 1.0, 'extend': 1.0, 'pictures': 1.0, 'this': 1.0, 'soft': 1.0, 'used': 1.0, 'move': 1.0, 'bunch': 1.0, 'impossible': 1.0, 'of': 3.0, 'the': 12.0, 'moves': 1.0, 'jacket': 1.0, 'time': 1.0, 'incredibly': 1.0, 'front': 1.0, 'back': 1.0}
Word element => {'different': 1.0, 'in': 1.0, 'more': 1.0, 'order': 1.0, 'think': 1.0, 'colors': 2.0, 'will': 1.0, 'also': 1.0, 'my': 1.0, 'for': 1.0, 'love': 2.0, 'with': 2.0, 'this': 2.0, 'it': 1.0, 'bibs': 1.0, 'hours': 1.0, 'take': 1.0, 'style': 1.0, 'me': 1.0, 'too': 1.0, 'and': 3.0, 'just': 1.0, 'few': 1.0, 'at': 1.0, 'bib': 1.0, 'purchace': 1.0, '6': 2.0, 'need': 2.0, '4': 1.0, 'i': 8.0, 'old': 1.0, 'days': 1.0, 'them': 2.0, 'out': 1.0, '5': 1.0, 'when': 1.0, 'but': 1.0, 'got': 1.0, 'didn': 1.0, 'the': 3.0, 'to': 3.0, 'least': 1.0, 'any': 1.0, 'm': 1.0, 'price': 1.0, 'lasted': 1.0, 'ago': 1.0, 'we': 2.0, 'go': 1.0, 't': 1.0, 's': 1.0, 'so': 2.0, 'worth': 1.0, 'glad': 1.0, 'one': 2.0, 'months': 1.0, 'decided': 1.0}
Word element => {'gift': 1.0, 'great': 1.0, 'so': 1.0, 've': 1.0, 'found': 1.0, 'i': 1.0, 'best': 1.0, 'these': 1.0, 'with': 1.0, 'shower': 1.0, 'are': 1.0, 'the': 2.0, 'backing': 1.0, 'good': 1.0, 'bibs': 2.0, 'durable': 1.0, 'very': 1.0, 'and': 1.0, 'far': 1.0, 'plastic': 1.0}
Word element => {'for': 1.0, 'list': 1.0, 'keeps': 1.0, 'actually': 1.0, 's': 1.0, 'girl': 1.0, 'teething': 1.0, 'baby': 1.0, 'she': 1.0, 'my': 2.0, 'the': 1.0, 'bib': 1.0, 'dry': 1.0, 'that': 1.0, 'is': 1.0, 'on': 1.0, 'christmas': 1.0, 'first': 1.0, 'this': 1.0, 'while': 1.0, 'sick': 1.0, 'i': 1.0, 'added': 1.0, 've': 1.0, 'packs': 1.0, 'wish': 1.0}
Word element => {'absorb': 1.0, 'and': 1.0, 'can': 1.0, 'love': 1.0, 'look': 1.0, 'a': 1.0, 'unique': 1.0, 'really': 1.0, 'big': 1.0, 'of': 1.0, 'drooler': 1.0, 'these': 2.0, 'bibs': 2.0, 'the': 1.0, 'my': 1.0, 'is': 1.0, 'son': 1.0}
Word element => {'shrunk': 1.0, 'havent': 1.0, 'colors': 1.0, 'their': 1.0, 'i': 1.0, 'bought': 1.0, 'is': 1.0, 'them': 1.0, 'sad': 1.0, 'they': 1.0, 'time': 1.0, 'neck': 1.0, 'this': 2.0, 'it': 2.0, 'return': 1.0, 'a': 3.0, 'properly': 1.0, 'held': 1.0, 'flips': 1.0, 'on': 1.0, 've': 1.0, 'needs': 1.0, 'in': 1.0, 'bunch': 1.0, 'stretch': 1.0, 'too': 1.0, 'into': 1.0, 'part': 1.0, 'his': 1.0, 'far': 1.0, 'face': 1.0, 'love': 1.0, 'for': 1.0, 'tight': 1.0, 'so': 1.0, 'function': 1.0, 'wanted': 1.0, 'to': 2.0, 'and': 3.0, 'cant': 1.0, 'up': 1.0, 'babies': 1.0, 'all': 1.0, 'the': 1.0}
Word element => {'washing': 1.0, 'frequent': 1.0, 'well': 1.0, 'pretty': 1.0, 'wearing': 1.0, 'no': 1.0, 'bibs': 1.0, 'cute': 1.0, 'with': 1.0, 'onesies': 1.0, 'mum': 2.0, 'seams': 1.0, 'soaked': 1.0, '2': 1.0, 'more': 1.0, 'our': 1.0, 'drool': 1.0, 'love': 1.0, 'we': 2.0, 'and': 1.0, 'up': 1.0, 'when': 1.0, 'too': 1.0, 'them': 1.0, 'also': 1.0, 'look': 1.0, 'to': 1.0, 'hold': 1.0}
Word element => {'known': 1.0, 'have': 1.0, 'would': 1.0, 'they': 1.0, 'sooner': 1.0, 'is': 1.0, 'drool': 1.0, 'fashionable': 1.0, 'catching': 1.0, 'for': 1.0, 'meals': 1.0, 'between': 1.0, 'wish': 1.0, 'dinner': 1.0, 'at': 1.0, 'them': 2.0, 'perfect': 1.0, 'in': 1.0, 'about': 1.0, 'don': 1.0, '9': 1.0, 'month': 1.0, 'but': 1.0, 'quality': 1.0, 'are': 2.0, 'my': 1.0, 'bibs': 1.0, 'only': 1.0, 'wouldn': 1.0, 'and': 2.0, 'get': 1.0, 't': 2.0, 'great': 1.0, 'the': 2.0, 'these': 1.0, 'of': 1.0, 'table': 1.0, 'recommend': 1.0, 'way': 1.0, 's': 1.0, 'activities': 1.0, 'excellent': 1.0, 'old': 1.0, 'i': 3.0}
Word element => {'bit': 1.0, 'was': 1.0, 'expensive': 1.0, 'cold': 1.0, 'i': 1.0, 'or': 1.0, 'keeps': 1.0, 'is': 1.0, 'a': 1.0, 'warm': 1.0, 'food': 2.0, 'and': 1.0, 'less': 1.0, 'the': 1.0, 'my': 1.0, 'jar': 1.0, 'wish': 1.0, 'daughter': 1.0, 'this': 1.0, 'loves': 1.0, 'great': 1.0, 'it': 2.0}
Word element => {'pink': 1.0, 'orange': 1.0, 'with': 1.0, 'chance': 1.0, 'tell': 2.0, 'specific': 1.0, 'item': 1.0, 'ended': 1.0, 'colors': 1.0, 'don': 1.0, 'a': 3.0, 't': 1.0, 'the': 2.0, 'fact': 1.0, 'but': 1.0, 'i': 3.0, 'boy': 1.0, 'they': 2.0, 'your': 1.0, 'have': 2.0, 'itself': 1.0, 'like': 1.0, 'you': 3.0, 'color': 1.0, 'and': 1.0, 'getting': 2.0, 'is': 1.0, 'on': 1.0, 'description': 1.0, 'little': 1.0, 'totally': 1.0, 'wrong': 1.0, 'negative': 1.0, 'up': 1.0, 'of': 1.0, 'plus': 1.0}
Word element => {'this': 1.0, 'local': 1.0, 'been': 1.0, 'had': 2.0, 'store': 1.0, 'was': 2.0, 'to': 3.0, 'becoming': 1.0, 'better': 2.0, 'move': 1.0, 'pacifiers': 3.0, 'likes': 1.0, 'are': 1.0, 'he': 2.0, 'them': 2.0, 'quality': 1.0, 'i': 3.0, 'ones': 1.0, 'but': 1.0, '2': 1.0, 'the': 5.0, 'these': 2.0, 'great': 1.0, 'up': 1.0, '3': 1.0, 'size': 2.0, 'son': 1.0, 'from': 1.0, 'my': 2.0, 'stores': 1.0, 'using': 1.0, 'nuk': 1.0, 'and': 2.0, 'hesitant': 1.0, 'would': 1.0, 'expect': 1.0, 'latex': 1.0, 'harder': 1.0, 'so': 1.0, 'than': 2.0, 'find': 2.0, 'in': 1.0, 'product': 1.0, 'actually': 1.0, 'love': 4.0, 'where': 1.0, 'live': 1.0, 'were': 1.0, 'a': 1.0, 'price': 1.0, 'way': 1.0}
Word element => {'carrying': 1.0, 'got': 1.0, 'cover': 1.0, 'out': 1.0, 'does': 1.0, 'sides': 1.0, 'suede': 1.0, 'has': 1.0, 'sheets': 1.0, 'storage': 1.0, 'under': 1.0, 'travel': 1.0, 'overs': 1.0, 'bag': 1.0, 'need': 1.0, 'children': 1.0, 'with': 2.0, 'room': 1.0, 'every': 1.0, 'plenty': 1.0, 'too': 1.0, 'and': 1.0, 'tall': 1.0, '34': 1.0, '42': 1.0, 'ask': 1.0, 'it': 4.0, 'plastic': 1.0, 'he': 1.0, 'in': 1.0, 'husband': 1.0, 'was': 2.0, 'or': 1.0, 'mommy': 1.0, 'protective': 1.0, 'bed': 4.0, 'one': 1.0, 'for': 2.0, 'my': 1.0, 'had': 1.0, 'thought': 1.0, 'wheels': 1.0, 'grandchildren': 1.0, 'you': 1.0, 'when': 1.0, 'home': 1.0, 'less': 1.0, 'i': 2.0, 'quality': 1.0, 'night': 1.0, 'set': 1.0, 'child': 2.0, 'up': 2.0, 'about': 1.0, 'gone': 1.0, 'camping': 1.0, 'of': 3.0, 'daddy': 1.0, 'silly': 1.0, 'soft': 1.0, 'this': 2.0, 'perfect': 1.0, '30': 1.0, 'not': 1.0, 'secounds': 1.0, 'we': 1.0, 'a': 1.0, 'size': 1.0, 'borrow': 1.0, 'fall': 1.0, 'is': 2.0, 'center': 1.0, 'any': 1.0, 'sleep': 1.0, 'to': 3.0, 'our': 2.0, 'all': 1.0, 'place': 1.0, 'the': 4.0, 'can': 1.0, '2': 2.0, 'so': 1.0, 'time': 1.0, 'just': 1.0, 'buy': 1.0, 'blow': 1.0, 'grandson': 1.0, 'until': 1.0, 'twin': 1.0, '1': 1.0, 'yrs': 1.0}
Word element => {'recommend': 1.0, 'highly': 1.0, 'items': 1.0, 'pool': 1.0, 'inflatable': 1.0, 'extra': 1.0, 'but': 1.0, 'bed': 1.0, 'only': 1.0, 'not': 1.0, 'made': 1.0, 'normal': 1.0, 'to': 2.0, 'how': 1.0, 'i': 1.0, 'etc': 1.0, 'other': 1.0, 'mattresses': 2.0, 'adapters': 1.0, 'oh': 1.0, 'we': 1.0, 'a': 2.0, 'another': 1.0, 'fits': 1.0, 'easy': 1.0, 'area': 1.0, 'pump': 2.0, 'has': 1.0, 'sized': 1.0, 'valves': 1.0, '1': 1.0, 'great': 1.0, 'nicely': 1.0, 'the': 3.0, 'that': 1.0, 'for': 2.0, 'size': 1.0, 'crib': 1.0, 'sheets': 2.0, 'tucks': 1.0, 'air': 2.0, 'in': 1.0, 'recessed': 1.0, 'seems': 1.0, 'also': 2.0, 'will': 1.0, 'inflate': 1.0, 'week': 1.0, 'roller': 1.0, 'be': 1.0, 'bought': 1.0, 'taking': 1.0, 'it': 2.0, 'on': 1.0, 'hold': 1.0, 'which': 1.0, 'like': 2.0, 'trip': 1.0, 'and': 4.0, 'soon': 1.0, 'deflate': 1.0, 'bag': 1.0}
Word element => {'s': 1.0, 'needed': 1.0, 'we': 1.0, 'my': 1.0, 'the': 1.0, 'wheeled': 1.0, 'shrunks': 1.0, 'proved': 1.0, 'travel': 2.0, 'bed': 1.0, 'carry': 1.0, 'has': 1.0, 'inflatable': 1.0, 'grandson': 1.0, 'bag': 1.0, 'what': 1.0, 'to': 2.0, 'be': 1.0, 'just': 1.0}
Word element => {'gets': 1.0, 'as': 1.0, 'resturants': 1.0, 'out': 1.0, 'forward': 1.0, 'tots': 1.0, 'older': 2.0, 'child': 1.0, 'even': 1.0, 'didn': 2.0, 't': 2.0, 'a': 2.0, 'there': 1.0, 'into': 1.0, 'cup': 1.0, 'practically': 1.0, 'needs': 1.0, 'friends': 1.0, 'so': 1.0, 'on': 3.0, 'unless': 1.0, 'since': 1.0, 'keep': 2.0, 'space': 1.0, 'bib': 1.0, 'we': 1.0, 'guests': 1.0, 'take': 1.0, 'diapers': 1.0, 'are': 1.0, 'very': 2.0, 'vacation': 3.0, 'he': 1.0, '11': 1.0, 'extremely': 1.0, 'for': 5.0, 'look': 1.0, 'sits': 1.0, 'at': 2.0, 'is': 3.0, 'straight': 1.0, 'pretty': 1.0, 'to': 5.0, 'our': 1.0, 'all': 1.0, 'month': 1.0, 'this': 2.0, 'kids': 1.0, 'end': 1.0, 'do': 1.0, 'was': 1.0, 'the': 3.0, 'pollie': 1.0, 'be': 2.0, 'it': 8.0, 'him': 1.0, 'bought': 1.0, 'just': 1.0, 'sides': 1.0, 'compact': 1.0, 'unstable': 1.0, 'i': 5.0, 'well': 1.0, 'and': 9.0, 'held': 1.0, 'one': 1.0, 'too': 1.0, 'my': 4.0, 'me': 1.0, 'easily': 1.0, 'because': 1.0, 'son': 2.0, 'old': 1.0, 'rollie': 1.0, 'house': 1.0, 'your': 1.0, 'flimsy': 1.0, 'feel': 1.0, 'comfortable': 1.0, 'nice': 1.0, 'with': 1.0, 'seat': 1.0, 'in': 5.0, 'however': 1.0, 'have': 1.0, 'used': 1.0, 'seem': 1.0, 'children': 1.0, 'while': 1.0, 'part': 1.0, 'eating': 1.0, '18mos': 1.0, 'unfortunately': 1.0, 'folds': 1.0, 'pantry': 1.0, 'light': 1.0, 'using': 2.0, 'bag': 1.0, 'chair': 1.0, 'weight': 1.0, 'couple': 1.0, 'wipes': 1.0, 'up': 3.0, 'sippy': 1.0, 'will': 1.0, 'travel': 1.0}
Word element => {'storage': 1.0, 'size': 1.0, 'good': 1.0, 'otherwise': 1.0, 's': 1.0, 'after': 1.0, 'picture': 1.0, 'in': 2.0, 'somehow': 1.0, 'up': 2.0, 'like': 1.0, 'would': 1.0, 'idea': 1.0, 'seat': 1.0, 'not': 1.0, 'putting': 1.0, 'i': 1.0, 'works': 1.0, 'does': 1.0, 'change': 1.0, 'really': 1.0, 'is': 1.0, 'on': 3.0, 'the': 7.0, 'great': 2.0, 'and': 1.0, 'getting': 1.0, 'only': 1.0, 'it': 1.0, 'rests': 1.0, 'back': 3.0, 'thing': 1.0, 'sit': 2.0, 'to': 1.0, 'its': 1.0, 'child': 2.0, 'shown': 1.0}
Word element => {'you': 1.0, 'if': 1.0, 'now': 1.0, 'need': 1.0, 'bag': 1.0, 'diaper': 1.0, 'practical': 1.0, 'actually': 1.0, 'would': 1.0, 'size': 1.0, 'nice': 1.0, 'very': 1.0, 'compartment': 1.0, 'easier': 1.0, 'was': 2.0, 'me': 1.0, 'wrong': 1.0, 'this': 2.0, 'eating': 1.0, 'i': 3.0, '17': 1.0, 'old': 1.0, 'and': 4.0, 'boy': 1.0, 'thought': 1.0, 'what': 1.0, 'does': 1.0, 'used': 1.0, 'excuse': 1.0, 'pleasant': 1.0, 'go': 1.0, 'a': 5.0, 'we': 1.0, 'surprise': 1.0, 'booster': 2.0, 'wife': 2.0, 'silly': 1.0, 'll': 1.0, 'perfectly': 1.0, 'insisted': 1.0, 'strap': 2.0, 'storage': 1.0, 'son': 1.0, 'our': 1.0, 'to': 4.0, 'seat': 3.0, 'as': 1.0, 'really': 1.0, 'apologize': 1.0, 'is': 2.0, 'fits': 1.0, 'another': 1.0, 'purchase': 1.0, 'my': 2.0, 'family': 1.0, 'the': 6.0, 'shoulder': 1.0, 'it': 2.0, 'month': 1.0, 'secures': 2.0, 'of': 1.0, 'chair': 1.0, 'make': 2.0, 'on': 1.0, 'needed': 1.0, 'back': 1.0}
Word element => {'better': 1.0, 'much': 1.0, 'so': 1.0, 'eat': 1.0, 'to': 1.0, 'out': 1.0, 'using': 1.0, 'one': 1.0, 'for': 1.0, 'love': 1.0, 'that': 2.0, 'of': 1.0, 'toddler': 1.0, 'hate': 1.0, 'and': 2.0, 'germaphobes': 1.0, 'when': 1.0, 'fellow': 1.0, 'crayons': 1.0, 'say': 1.0, 'is': 2.0, 'the': 2.0, 'diaper': 1.0, 'my': 3.0, 'placemats': 1.0, 'favorite': 1.0, 'wipes': 1.0, 've': 1.0, 'this': 2.0, 'perfect': 1.0, 'will': 1.0, 'item': 1.0, 'also': 1.0, 'thought': 1.0, 'purchased': 1.0, 'along': 1.0, 'i': 6.0, 'restaurants': 1.0, 'provide': 1.0, 'storage': 1.0, 'space': 1.0, 'some': 2.0, 'boosters': 1.0, 'because': 1.0, 'take': 1.0, 'going': 1.0, 'a': 1.0, 'his': 1.0, 'understand': 1.0, 'stick': 1.0, 'think': 1.0, 'on': 1.0, 'paper': 1.0, 'makes': 1.0}
Word element => {'recommend': 1.0, 'great': 1.0, 'done': 1.0, 'would': 1.0, 'what': 1.0, 'don': 1.0, 'amazing': 1.0, 'went': 1.0, 'wherever': 1.0, 'took': 1.0, 'restaurant': 1.0, 'flights': 1.0, 'airport': 1.0, 'have': 2.0, 'plane': 1.0, 'used': 2.0, 'security': 1.0, 'about': 1.0, 'had': 1.0, 'but': 1.0, 'unattended': 1.0, 'course': 1.0, 'without': 2.0, 'along': 1.0, 't': 2.0, 'fit': 2.0, 'for': 3.0, 'snacks': 1.0, '8': 1.0, 'you': 1.0, 'able': 1.0, 'bag': 4.0, 'toys': 1.0, 'useful': 1.0, 'wouldn': 1.0, 'extremely': 1.0, 'versatile': 1.0, 'so': 2.0, 'ziplock': 1.0, 's': 2.0, 'a': 8.0, 'we': 4.0, 'our': 1.0, 'item': 2.0, 'him': 2.0, 'it': 9.0, 'magazine': 1.0, 'perfect': 1.0, 'to': 6.0, 'outside': 1.0, 'any': 1.0, '1': 3.0, 'serbia': 1.0, 'from': 1.0, 'relatives': 1.0, 'with': 1.0, 'pockets': 1.0, 'week': 1.0, '30': 1.0, 'table': 1.0, 'just': 2.0, 'highly': 1.0, 'this': 1.0, 'few': 1.0, 'son': 1.0, 'returned': 1.0, 'straps': 1.0, 'visit': 1.0, 'i': 12.0, 'restaurants': 1.0, 'jeep': 1.0, 'pounds': 1.0, 'will': 1.0, 'travel': 1.0, 'use': 1.0, 'bought': 1.0, 'one': 1.0, '2': 3.0, 'change': 1.0, 'seat': 5.0, 'in': 5.0, 'anyone': 1.0, 'trip': 4.0, 'and': 9.0, 'tall': 1.0, 'before': 1.0, '5': 1.0, 'carry': 1.0, '28': 1.0, 'diaper': 2.0, 'as': 2.0, 'leave': 2.0, 'at': 1.0, 'is': 4.0, 'left': 1.0, 'anywhere': 1.0, 'thick': 1.0, 'pack': 2.0, 'the': 17.0, 'of': 5.0, 'know': 1.0, 'found': 1.0, 'kleenex': 1.0, 'between': 1.0, 'wipes': 1.0, 'worries': 1.0, 'was': 2.0, 'clothes': 1.0, 'never': 1.0, 'some': 1.0, 'are': 1.0, 'diapers': 1.0, 'plus': 1.0, 'big': 1.0, 'mat': 1.0, 'active': 1.0, 'because': 1.0, 'silicone': 1.0, 'that': 1.0, 'integrates': 1.0, 'on': 5.0, 'home': 1.0, 'bottles': 1.0, 'sturdy': 1.0, 'fits': 1.0, 'entire': 1.0, 'me': 1.0, 'my': 2.0, 'chair': 1.0, 'very': 2.0, 'inches': 1.0, 'no': 1.0, 'years': 1.0, 'old': 1.0, 'adjustable': 1.0, 'booster': 2.0, 'be': 1.0}
Word element => {'bought': 1.0, 'glad': 1.0, 'i': 1.0, 'see': 1.0, 'like': 1.0, 'friends': 1.0, 'bit': 1.0, 'area': 1.0, 'tummy': 1.0, 'part': 1.0, 'that': 2.0, 'm': 1.0, 'c': 1.0, 'some': 1.0, 'it': 7.0, 'kids': 1.0, 'this': 1.0, 'only': 1.0, 'daughter': 1.0, 'goes': 1.0, 'houses': 1.0, 'your': 1.0, 'they': 2.0, 'is': 3.0, 'likes': 1.0, 'able': 1.0, 'thing': 1.0, 'when': 2.0, 'times': 1.0, 'chair': 2.0, 'different': 1.0, 'b': 1.0, 'mainly': 1.0, 'usually': 1.0, 'standard': 1.0, 'use': 1.0, 'sturdy': 1.0, 'out': 1.0, 'too': 1.0, 'and': 3.0, 'our': 2.0, 'to': 2.0, 'not': 1.0, 'the': 4.0, 'restaurant': 1.0, 'low': 1.0, 'high': 1.0, 'people': 1.0, 'pretty': 1.0, 'eat': 1.0, 'if': 1.0, 'but': 1.0, 'flimsy': 1.0, 'at': 1.0, 'lot': 1.0, 's': 3.0, 'go': 1.0, 'we': 3.0, 'a': 2.0, 'might': 1.0, 'wiggles': 1.0, 'be': 1.0, 'with': 1.0, 'knock': 1.0, 'child': 1.0, 'over': 2.0}
Word element => {'strong': 1.0, 'or': 1.0, 'second': 1.0, 'enough': 1.0, 'bought': 1.0, 'it': 1.0, 'a': 1.0, '2': 1.0, 'week': 3.0, 'sturdy': 1.0, 'grandparents': 1.0, 'good': 1.0, 'for': 1.0, 'vacation': 1.0, 'broke': 1.0, '1st': 1.0, 'not': 1.0, 'was': 1.0}
Word element => {'my': 1.0, 'vacation': 1.0, 'our': 2.0, 'home': 2.0, 'easy': 1.0, 'very': 1.0, 'and': 2.0, 'asked': 1.0, 'on': 2.0, 'in': 1.0, 'it': 1.0, 'children': 1.0, 'sheets': 1.0, 'tucked': 1.0, 'inflate': 1.0, 'grandson': 1.0, 'stay': 1.0, 'great': 1.0, 'the': 3.0, 'are': 1.0, 'was': 1.0, 'to': 1.0, 'sides': 1.0, 'other': 1.0, 'younger': 1.0, 'we': 1.0, 'bought': 1.0, 'for': 4.0, 'bed': 1.0, 'one': 2.0}
Word element => {'misrepresented': 1.0, 'fits': 1.0, 'from': 1.0, 'bought': 1.0, 'previously': 1.0, 'product': 1.0, 'fit': 1.0, 'will': 1.0, 'does': 1.0, 'standard': 2.0, 'sheet': 1.0, 'so': 1.0, 'to': 2.0, 'image': 1.0, 'shipped': 1.0, 'me': 1.0, 'not': 1.0, 'what': 2.0, 'why': 1.0, 'is': 3.0, 'really': 1.0, 'i': 3.0, 'it': 1.0, 'have': 2.0, 'was': 3.0, 'unfortunately': 1.0, 'the': 9.0, 'sheets': 2.0, 'ordered': 1.0, 'toddler': 2.0, 'shrunks': 3.0, 'bed': 4.0, 'kid': 1.0, 'sleeping': 1.0, 'like': 1.0, 'which': 1.0, 'bumpers': 1.0, 'described': 1.0, 's': 1.0, 'lined': 1.0, 'on': 1.0, 'this': 2.0, 'separation': 2.0, 'site': 1.0, 'crib': 1.0, 'size': 1.0, 'designed': 1.0, 'shown': 1.0, 'both': 1.0, '34': 2.0, 'and': 5.0, 'description': 1.0, 'tuck': 1.0, 'blankets': 1.0, 'no': 2.0, 'there': 1.0, 'incorrect': 1.0, 'are': 1.0, 'directly': 1.0, 'between': 1.0, 'in': 1.0, 'brown': 1.0, 'area': 1.0}
Word element => {'hope': 1.0, 'weeks': 1.0, 'spare': 1.0, 'wipes': 1.0, 'wing': 1.0, 'pads': 1.0, 'pee': 1.0, 'grade': 1.0, 'hospital': 2.0, 'loss': 1.0, 'anything': 1.0, 'normal': 1.0, 'no': 4.0, 'bedtime': 1.0, 'set': 2.0, 'excited': 1.0, 'inflatable': 1.0, 'decided': 1.0, 'instead': 1.0, 'falling': 1.0, 'worked': 1.0, 'sleeper': 1.0, 'active': 1.0, 'sons': 1.0, 'rail': 2.0, 'left': 2.0, '30': 1.0, 'complaints': 2.0, 'perry': 1.0, 'best': 1.0, 'helps': 1.0, 'swim': 1.0, 'properly': 1.0, 'place': 1.0, 'want': 1.0, 'below': 1.0, 'slides': 1.0, 'works': 1.0, 'flat': 1.0, 'loose': 1.0, 'broke': 1.0, 'until': 1.0, 'tuck': 2.0, 'beds': 1.0, 'mentioned': 1.0, 'discrepancy': 1.0, 'there': 3.0, 'thanks': 1.0, 'literally': 1.0, 'email': 2.0, 'air': 2.0, 'sell': 1.0, 'would': 1.0, 'somewhere': 1.0, 'direct': 1.0, 'about': 1.0, 'review': 1.0, 'airbeds': 1.0, 'writing': 1.0, 'little': 1.0, 'will': 5.0, 'could': 3.0, 'them': 2.0, 'touch': 1.0, 'or': 2.0, 'they': 2.0, 'if': 3.0, 'high': 1.0, 'to': 15.0, 'hoping': 2.0, 'made': 1.0, 'going': 1.0, 'slight': 1.0, '2': 4.0, 'aren': 1.0, 'thing': 1.0, 'filled': 1.0, 'was': 7.0, 'nozzle': 1.0, 'allows': 1.0, 'wide': 1.0, 'tall': 1.0, 'short': 1.0, 'pediatric': 1.0, 'day': 2.0, 'electric': 2.0, 'before': 4.0, 'an': 3.0, 'measures': 2.0, 'with': 2.0, 'waking': 1.0, 'plenty': 1.0, 'sure': 3.0, '13': 1.0, 'pump': 3.0, 'in': 16.0, 'diapers': 2.0, 'but': 3.0, 'nozzles': 1.0, 'we': 9.0, 'measurements': 1.0, 'reviews': 1.0, 'bottom': 1.0, 'yet': 2.0, 'fold': 2.0, 've': 1.0, 'down': 1.0, 'things': 1.0, 'you': 7.0, 'get': 1.0, 'able': 1.0, 'night': 2.0, 'vacation': 3.0, 'sheets': 4.0, 'all': 2.0, 'way': 1.0, 'product': 1.0, 'year': 1.0, 'he': 7.0, 'him': 6.0, 'know': 2.0, 'this': 7.0, 'few': 1.0, 'though': 1.0, 'after': 3.0, 'noticed': 1.0, 'on': 4.0, 'chamber': 2.0, 'long': 2.0, 'easily': 2.0, 'that': 7.0, 'because': 1.0, 'road': 1.0, 'didn': 2.0, 'from': 3.0, 'outer': 1.0, 'side': 1.0, 'll': 3.0, 'why': 1.0, 'very': 1.0, 'ways': 2.0, 'today': 3.0, 'received': 2.0, 'use': 4.0, 'i': 26.0, 'well': 3.0, 'our': 2.0, 'how': 1.0, 'his': 2.0, 'both': 1.0, 'yesterday': 1.0, 'son': 2.0, 'body': 1.0, 'as': 7.0, 'deflated': 2.0, '7': 1.0, 'fastest': 1.0, 'tested': 1.0, 'even': 1.0, 'of': 7.0, 'old': 1.0, 'point': 1.0, 't': 7.0, 'further': 1.0, 'fit': 6.0, 'likes': 1.0, 'luggage': 1.0, 'so': 7.0, 'is': 4.0, 'can': 3.0, 'boy': 1.0, 'replacement': 1.0, 'tight': 1.0, 'asked': 1.0, '1': 3.0, 'big': 2.0, 'sleeping': 1.0, 'twin': 8.0, 'size': 6.0, 'just': 4.0, 'and': 12.0, 'play': 1.0, '3': 3.0, 'too': 1.0, 'repeat': 1.0, 'try': 3.0, 'one': 3.0, 'actual': 1.0, 'emailed': 1.0, 'happy': 3.0, 'keep': 2.0, 'did': 1.0, '1st': 2.0, 'at': 2.0, 's': 7.0, 'm': 5.0, 'snug': 2.0, 'pack': 1.0, 'the': 36.0, 'process': 1.0, 'inflates': 1.0, 'fine': 1.0, 'like': 1.0, 'wasn': 1.0, 'any': 2.0, 'truly': 1.0, 'typically': 1.0, 'fitted': 3.0, 'expect': 2.0, 'sheet': 8.0, 'used': 3.0, 'snugly': 1.0, 'far': 2.0, 'pay': 1.0, 'found': 1.0, 'have': 4.0, 'chance': 1.0, 'a': 17.0, 'bag': 3.0, 'not': 5.0, 'different': 1.0, 'bags': 1.0, '39': 1.0, 'x75': 1.0, 'your': 1.0, 'many': 1.0, 'comes': 1.0, 'bought': 1.0, 'shrunks': 1.0, 'week': 3.0, 'inner': 6.0, 'mattress': 6.0, '35': 2.0, 'super': 1.0, 'don': 2.0, 'it': 29.0, 'be': 1.0, '4': 2.0, 'case': 2.0, 'despite': 1.0, 'attention': 1.0, 'state': 1.0, 'bumpers': 1.0, 'what': 1.0, 'bed': 9.0, 'when': 4.0, 'roll': 1.0, 'update': 4.0, 'unfolds': 1.0, 'read': 1.0, 'longer': 1.0, 'does': 1.0, 'carry': 2.0, 'go': 2.0, 'packed': 4.0, 'arrived': 1.0, 'unrolls': 1.0, 'hard': 1.0, 'simply': 1.0, 'inflate': 1.0, 'for': 13.0, 'purchase': 1.0, 'then': 1.0, 'only': 1.0, 'hasn': 1.0, 'stay': 1.0, 'which': 1.0, 'again': 2.0, 'up': 4.0, 'major': 1.0, 'do': 1.0, 'put': 2.0, 'me': 1.0, 'bubble': 1.0, 'yes': 1.0, 'wrap': 1.0, 'room': 1.0, 'are': 1.0, 'my': 2.0, 'slept': 2.0, 'really': 1.0, 'told': 2.0, 'out': 2.0, 'another': 2.0, 'here': 1.0, 'beach': 1.0, 'stars': 1.0, '40lbs': 1.0, 'x70': 2.0, 'been': 1.0, 'into': 1.0, 'tucking': 1.0, 'company': 1.0, 'through': 1.0, '40': 1.0, 'test': 1.0}
Word element => {'this': 1.0, 'smelling': 1.0, 's': 1.0, 'sure': 1.0, 'not': 1.0, 'just': 1.0, 'no': 1.0, 'windows': 1.0, 'all': 1.0, '3': 1.0, 'furniture': 1.0, 'on': 1.0, 'yo': 2.0, 'term': 1.0, 'needs': 1.0, 'arrangement': 1.0, 'hoped': 1.0, 'smell': 2.0, 'two': 1.0, 'did': 1.0, 'avail': 1.0, 'temporary': 1.0, 'better': 1.0, 'out': 2.0, 'figure': 1.0, 'while': 1.0, 'for': 2.0, 'was': 1.0, 'had': 2.0, 'to': 5.0, 'our': 3.0, 'sleep': 1.0, 'as': 2.0, 'outside': 1.0, '6': 1.0, 'plastic': 1.0, 'they': 5.0, 'hits': 1.0, 'thought': 1.0, 'it': 3.0, 'she': 1.0, 'only': 1.0, 'much': 1.0, 'picked': 1.0, 'short': 1.0, 'ok': 1.0, 'beach': 1.0, 'so': 1.0, 'can': 1.0, 'really': 1.0, 'needless': 1.0, 'house': 1.0, 're': 2.0, 'i': 7.0, 'daughters': 1.0, 'fine': 1.0, 'we': 2.0, 'a': 2.0, 'worrying': 1.0, 't': 2.0, 'meet': 1.0, 'at': 2.0, 'space': 1.0, 'my': 2.0, 'would': 2.0, 'tight': 1.0, 'twin': 1.0, 'them': 3.0, 'and': 3.0, 'soon': 1.0, 'd': 1.0, 'finding': 1.0, 'but': 1.0, 'rolled': 1.0, 'under': 1.0, 'fix': 1.0, 'beds': 1.0, 'rolling': 1.0, 'one': 1.0, 'of': 3.0, 'the': 5.0, 'say': 1.0, 'didn': 1.0, 'walk': 1.0, 'about': 1.0, 'use': 1.0, 'her': 1.0, 'are': 1.0, 'larger': 1.0, 'wake': 1.0, 'than': 1.0, 'be': 2.0, 'up': 2.0, 'carefully': 1.0, 'measure': 1.0, 'if': 1.0, 'night': 1.0, 'you': 3.0, 'm': 1.0, 'in': 3.0, 'hadn': 1.0, 'measured': 1.0, 'airing': 1.0, 'have': 1.0, 'these': 1.0, 'room': 2.0, 'until': 1.0, 'tried': 1.0, 'opened': 1.0}
Word element => {'anyone': 1.0, 'however': 1.0, 'after': 1.0, 'bed': 2.0, 'of': 1.0, 'with': 1.0, 'it': 3.0, 'product': 1.0, 'use': 2.0, 'travel': 2.0, 'we': 1.0, 'a': 1.0, 'the': 3.0, 'and': 2.0, 'functionality': 1.0, 'very': 1.0, 'year': 1.0, 'toddler': 1.0, 'old': 1.0, 'buy': 1.0, 'disappointing': 1.0, 'exited': 1.0, 'that': 1.0, 'to': 2.0, 'our': 1.0, 'so': 1.0, 'time': 1.0, 'is': 2.0, 'recommend': 1.0, 'was': 1.0, 'leaking': 1.0, 'this': 2.0, 'mattress': 1.0, 'before': 1.0, 'air': 1.0, 'have': 1.0, 'fill': 1.0, 'can': 1.0, 'evening': 1.0, 'not': 1.0, 'two': 1.0, 'potential': 1.0, 'i': 2.0, '4': 1.0, 'each': 1.0, 'would': 2.0, 'design': 1.0, 'never': 1.0, 'again': 1.0}
Word element => {'deflating': 1.0, 'trick': 1.0, 'there': 1.0, 'bed': 1.0, 'comfortable': 1.0, 'yet': 1.0, 'keep': 1.0, 'sides': 1.0, 'however': 1.0, 'aero': 1.0, 'fine': 1.0, 'is': 1.0, 'raised': 1.0, 'grandchildren': 1.0, 'the': 4.0, '2': 1.0, 'are': 2.0, 'my': 1.0, 'and': 3.0, '3': 1.0, 'in': 3.0, 'years': 1.0, 'old': 1.0, 'i': 1.0, 'they': 3.0, 'these': 2.0, 'valve': 1.0, 'them': 3.0, 'inflate': 1.0, 'unlike': 1.0, 'which': 1.0, 'extremely': 1.0, 'beds': 3.0, 'difficult': 1.0, 'to': 4.0, 'release': 1.0, 'deflated': 1.0, 'able': 1.0, 'a': 2.0, 'have': 2.0, 'must': 1.0, 'be': 2.0, 'manually': 1.0, 'love': 1.0, 'fit': 1.0, 'back': 1.0, 'carry': 1.0, 'deflate': 1.0, 'bag': 1.0, 'came': 1.0}
Word element => {'too': 1.0, 'kiddie': 1.0, 'used': 1.0, 'no': 1.0, 'pump': 1.0, 'in': 1.0, 'air': 1.0, 'inflate': 1.0, 'overs': 1.0, 'or': 1.0, 'grandma': 1.0, 'at': 1.0, 'stays': 1.0, 'great': 1.0, 'by': 1.0, 'close': 1.0, 'will': 2.0, 'but': 1.0, 'child': 1.0, 'out': 1.0, 'taller': 1.0, 'sleep': 1.0, 'to': 2.0, 've': 1.0, 'would': 1.0, 'weight': 1.0, 'max': 1.0, 'rather': 1.0, 'be': 2.0, 'bumpers': 1.0, 'the': 6.0, 'pool': 1.0, 'hoped': 1.0, 'children': 1.0, 'fitted': 1.0, 'it': 3.0, 'bed': 1.0, 'for': 3.0, 'time': 1.0, 'sheet': 1.0, '150': 1.0, 'is': 2.0, 'people': 1.0, 'traveling': 1.0, 'that': 1.0, 'pounds': 1.0, 'i': 2.0, 'heavy': 1.0, 'ground': 1.0, 's': 1.0, 'a': 2.0, 'if': 1.0, 'they': 1.0, 'airline': 1.0, 'only': 1.0, 'do': 1.0, 'this': 1.0, 'mattress': 2.0, 'which': 1.0, 'using': 1.0, 'hold': 1.0, 'fills': 1.0, 'prevent': 1.0, 'securely': 1.0, 'may': 1.0, 'roll': 1.0, 'some': 1.0, 'from': 1.0, 'while': 1.0}
Word element => {'bag': 1.0, 'fit': 1.0, 'easily': 1.0, 'comfortable': 1.0, 'deflated': 1.0, 'said': 1.0, 'it': 3.0, 'back': 1.0, 'inflated': 1.0, 'quickly': 1.0, 'very': 1.0, 'and': 3.0, 'our': 1.0, 'its': 1.0, 'overnight': 1.0, 'held': 1.0, 'the': 1.0, 'was': 1.0, 'granddaughter': 1.0, 'in': 1.0, 'neatly': 1.0, 'air': 1.0}
Word element => {'liked': 1.0, 'would': 1.0, 'weekends': 1.0, '6': 1.0, 'about': 1.0, 'used': 1.0, 's': 1.0, 'something': 1.0, 'for': 2.0, 'years': 2.0, '3': 2.0, 'replacing': 1.0, 'be': 1.0, 'beds': 1.0, 'mattress': 3.0, 'kids': 1.0, 'this': 1.0, 'few': 1.0, 'large': 1.0, 'on': 2.0, 'outer': 1.0, 'down': 1.0, 'with': 1.0, 'come': 1.0, 'uses': 1.0, 'cushiony': 1.0, 'pumps': 1.0, 'have': 1.0, 'running': 1.0, 'head': 1.0, 'one': 4.0, 'bought': 2.0, 'comfortable': 1.0, 'great': 1.0, 'twin': 1.0, 'or': 1.0, 'when': 1.0, 'twins': 1.0, 'we': 1.0, 'ago': 1.0, 't': 1.0, 'leak': 1.0, 'less': 1.0, 'up': 1.0, 'rather': 1.0, 'two': 1.0, 'i': 3.0, 'and': 3.0, 'after': 2.0, 'so': 1.0, 'term': 1.0, 'ring': 1.0, 'toddler': 1.0, 'year': 4.0, 'more': 2.0, 'longer': 1.0, 'of': 9.0, 'the': 12.0, 'these': 1.0, 'that': 4.0, 'their': 2.0, 'port': 1.0, 'our': 2.0, 'purposely': 1.0, 'they': 1.0, 'use': 3.0, 'half': 1.0, 'next': 1.0, 'them': 3.0, 'has': 1.0, 'develped': 1.0, 'cribs': 1.0, 'are': 5.0, 'however': 1.0, 'easy': 1.0, 'get': 2.0, 'other': 1.0, 'problem': 1.0, 'set': 1.0, 'given': 1.0, 'there': 1.0, 'outgrew': 1.0, 'from': 1.0, 'mattresses': 1.0, 'form': 1.0, 'bulge': 1.0, 'recently': 1.0, 'lines': 2.0, 'top': 1.0, 'those': 1.0, 'resulting': 1.0, 'doesn': 1.0, 'per': 1.0, 'in': 2.0, 'to': 4.0, 'hoping': 1.0, 'side': 1.0, 'still': 1.0, 'a': 7.0, 'small': 1.0, 'enough': 1.0, 'probably': 1.0, 'size': 2.0, 'bed': 1.0, 'but': 2.0, 'another': 1.0, 'it': 1.0, 'impede': 1.0, 'will': 2.0, 'inner': 1.0, 'developed': 1.0, 'way': 1.0, 'than': 3.0, 'toe': 1.0, 'out': 2.0}
Word element => {'safety': 1.0, 'in': 1.0, 'child': 1.0, 'his': 2.0, 'i': 1.0, 'concerns': 1.0, 'it': 1.0, 'returned': 1.0, 'this': 1.0, 'because': 2.0, 'not': 1.0, 'smell': 1.0, 'would': 1.0, 'of': 2.0, 'sleep': 1.0, 'chemical': 1.0, 'son': 1.0, 'let': 1.0, 'the': 1.0, 'my': 1.0}
Word element => {'happy': 1.0, 'i': 1.0, 'overall': 1.0, 'toddlers': 1.0, 'is': 2.0, 'blows': 1.0, 'm': 1.0, 'too': 1.0, 'fits': 1.0, 'great': 1.0, 'sleepovers': 1.0, 'for': 1.0, 'product': 1.0, 'up': 1.0, 'and': 1.0, 'as': 1.0, 'pretty': 2.0, 'two': 1.0, 'quickly': 1.0, 'with': 1.0, 'it': 3.0, 'this': 1.0, 'quick': 1.0, 'firmness': 1.0, 'good': 1.0, 'a': 1.0, 'deflates': 1.0, 'well': 1.0}
Word element => {'am': 1.0, 'overall': 1.0, 'like': 1.0, 'which': 1.0, 'reading': 1.0, 'off': 1.0, 'arent': 1.0, 'if': 1.0, 'being': 2.0, 'is': 1.0, 'caught': 1.0, 'inflate': 1.0, 'week': 1.0, 'have': 1.0, 'that': 1.0, 'are': 1.0, 'there': 1.0, 'confusing': 1.0, 'bag': 1.0, 'inflating': 2.0, 'had': 1.0, 'rim': 1.0, 'trouble': 1.0, 'beating': 1.0, 'when': 1.0, 'loved': 1.0, 'took': 1.0, 'real': 1.0, 'old': 2.0, 'two': 1.0, 'use': 2.0, 'while': 1.0, 'plopped': 1.0, '3': 2.0, 'niece': 1.0, 'put': 1.0, 'on': 2.0, 'me': 2.0, 'my': 3.0, 'neat': 1.0, 'year': 3.0, 'plans': 1.0, 'in': 3.0, 'air': 1.0, 'to': 4.0, 'any': 1.0, 'directions': 1.0, 'for': 3.0, 'inner': 2.0, 'actually': 1.0, 'bed': 4.0, 'no': 1.0, 'so': 2.0, 'sheet': 1.0, 'visiting': 1.0, 'but': 2.0, 'rolled': 1.0, 'holes': 1.0, 'this': 1.0, 'kids': 1.0, 'with': 2.0, 'thought': 1.0, 'it': 8.0, 'future': 1.0, 'guard': 1.0, 'purchase': 1.0, 'only': 1.0, 'was': 4.0, 'a': 3.0, 'fit': 1.0, 't': 1.0, 'inflates': 2.0, 'just': 1.0, 'lose': 1.0, 'and': 8.0, 'tuck': 1.0, 'other': 1.0, 'the': 11.0, 'of': 2.0, 'great': 1.0, 'you': 2.0, 'able': 1.0, 'them': 1.0, 'happy': 1.0, 'one': 2.0, 'held': 1.0, 'up': 1.0, 'fine': 2.0, 'ordered': 1.0, 'hole': 1.0, 'didn': 1.0, 'part': 1.0, 'during': 1.0, 'both': 1.0, 'half': 1.0, 'i': 3.0, 'slept': 1.0, 'well': 1.0, 'inflated': 1.0, '2': 1.0, 'deflation': 1.0}
Word element => {'big': 1.0, 'not': 1.0, 'too': 1.0, 'kids': 1.0, 'and': 4.0, 'twin': 1.0, 'it': 1.0, 'this': 1.0, 'bag': 1.0, 'is': 2.0, 'comfortable': 1.0, 'love': 1.0, 'bed': 2.0, 'carry': 2.0, 'my': 1.0, 'the': 3.0, 'travel': 1.0, 'be': 1.0, 'to': 1.0, 'deflated': 1.0, 'in': 1.0, 'can': 1.0, 'minutes': 1.0, 'holds': 1.0, 'inflated': 1.0, 'easy': 1.0, 'pump': 1.0}
Word element => {'kept': 1.0, 'never': 1.0, 'in': 2.0, 'on': 2.0, 'brought': 1.0, 'and': 1.0, 'me': 1.0, 'of': 1.0, 'a': 1.0, 'deflated': 1.0, 'was': 1.0, 'older': 1.0, 'with': 1.0, 'it': 4.0, 'this': 1.0, 'boys': 1.0, 'grandson': 1.0, 'hit': 1.0, 'vacation': 1.0, 'tight': 1.0, 'for': 1.0, 'big': 1.0, 'year': 1.0, '2': 1.0, 'the': 4.0, '3': 1.0, 'i': 1.0, 'old': 1.0, 'by': 1.0, 'weresleeping': 1.0, 'my': 1.0, 'end': 1.0, 'sheeets': 1.0, 'weeks': 1.0, 'week': 1.0}
Word element => {'recommend': 1.0, 'bag': 1.0, 'storage': 1.0, 'into': 1.0, 'back': 1.0, 'enough': 1.0, 'deflating': 1.0, 'got': 1.0, 'upon': 1.0, 'also': 1.0, 'great': 1.0, 'work': 1.0, 'would': 1.0, 'hoped': 1.0, 'pillow': 1.0, 'ordered': 1.0, 'sheets': 3.0, 'my': 1.0, 'inflated': 1.0, 'interested': 1.0, 'wasn': 1.0, 'out': 2.0, 'pack': 1.0, 'quickly': 1.0, 'only': 1.0, 'town': 1.0, 'for': 4.0, 'really': 1.0, 'every': 1.0, 'fit': 2.0, 't': 1.0, 'in': 5.0, 'air': 1.0, 'husband': 1.0, 'had': 2.0, 'purchased': 1.0, 'read': 1.0, 'many': 2.0, 'she': 3.0, 'it': 4.0, 'month': 1.0, 'old': 1.0, 'toddler': 3.0, 'year': 1.0, 'pump': 1.0, 'opted': 1.0, 'big': 2.0, '1': 1.0, 'twin': 2.0, 'sleeping': 2.0, 'worked': 2.0, 'and': 11.0, 'play': 1.0, 'uses': 2.0, 'tall': 1.0, 'moved': 1.0, 'too': 1.0, 'regular': 1.0, 'tuck': 1.0, 'longer': 1.0, 'of': 1.0, 'the': 9.0, 'highly': 1.0, 'this': 3.0, 'kids': 1.0, 'bed': 6.0, 'perfect': 1.0, 'plenty': 1.0, 'with': 2.0, 'n': 1.0, 'our': 3.0, 'pretty': 1.0, 'to': 5.0, 'grow': 1.0, 'when': 1.0, 'been': 1.0, 'headed': 1.0, 'we': 3.0, 'reviews': 1.0, 'so': 2.0, 'was': 5.0, 'best': 1.0, 'no': 2.0, 'years': 1.0, '2': 1.0, 'situation': 1.0, 'easily': 1.0, 'because': 3.0, 'is': 1.0, 'kid': 1.0, 'size': 3.0, 'crib': 2.0, 'vs': 1.0, 'even': 2.0, 'getting': 1.0, 'a': 4.0, 'confident': 1.0, 'small': 2.0, 's': 1.0, 'giving': 1.0, 'room': 1.0, 'her': 5.0, 'use': 1.0, 'climb': 1.0, 'long': 1.0, 'on': 1.0, 'well': 1.0, 'i': 6.0, 'slept': 1.0, 'soundly': 1.0, 'complaints': 1.0, 'able': 1.0, 'night': 1.0, 'used': 1.0, 'just': 1.0}
Word element => {'good': 1.0, 'when': 1.0, 'camping': 1.0, 'did': 1.0, 'bed': 2.0, 'comfortable': 1.0, 'out': 1.0, 'there': 1.0, 'up': 1.0, 'a': 1.0, 'we': 3.0, 'other': 1.0, 'use': 1.0, 'but': 1.0, 'bought': 1.0, 'pull': 1.0, 'however': 1.0, 'went': 1.0, 'my': 1.0, 'it': 3.0, 'sofa': 1.0, 'vacation': 1.0, 'ended': 1.0, 'was': 1.0, 'needing': 1.0, 'not': 1.0, 'any': 1.0, 'as': 1.0, 'son': 1.0, 'both': 1.0, 'this': 2.0, 'mattress': 1.0, 'used': 1.0, 'and': 2.0, 'i': 2.0, 'for': 1.0, 'fit': 1.0, 'on': 1.0, 'the': 1.0, 'more': 1.0, 'is': 2.0, 'bigger': 1.0, 'than': 2.0, 'expected': 1.0, 'also': 1.0, 'air': 1.0, 'have': 1.0, 'buy': 1.0, 'ever': 1.0}
Word element => {'its': 1.0, 'bag': 1.0, 'travel': 1.0, 'seconds': 1.0, 'great': 1.0, 'side': 1.0, 'plus': 1.0, 'night': 1.0, 'quality': 1.0, 'better': 1.0, 'good': 1.0, 'tag': 1.0, '70': 1.0, 'an': 1.0, 'material': 2.0, 'blow': 1.0, 'me': 1.0, 'reminds': 1.0, 'inflatable': 2.0, 'than': 1.0, 'sized': 2.0, 'adult': 1.0, 'compared': 1.0, 'thin': 1.0, 'so': 1.0, 'months': 1.0, 'blows': 1.0, 'i': 1.0, '4': 1.0, 'on': 2.0, 'toddler': 1.0, 'pump': 1.0, 'get': 2.0, 'my': 1.0, 'doesn': 1.0, 'expecting': 1.0, 'was': 2.0, 'price': 1.0, 'years': 1.0, 'first': 1.0, 'perfect': 1.0, 'mattress': 2.0, 'this': 2.0, 'nights': 1.0, 'it': 5.0, 'with': 3.0, 'old': 1.0, 'accustomed': 1.0, 'has': 2.0, 'bed': 4.0, 'for': 2.0, 'son': 1.0, 'our': 2.0, 'to': 3.0, 'as': 2.0, 'very': 1.0, '2': 1.0, 'the': 3.0, 'comes': 1.0, 'more': 1.0, 'is': 3.0, 'said': 1.0, 'in': 2.0, 'if': 1.0, 'being': 1.0, 'electric': 1.0, 'able': 1.0, 'out': 2.0, 'visitors': 1.0, 'rather': 1.0, 'of': 2.0, 'over': 1.0, 'blew': 1.0, 'up': 3.0, 'and': 4.0, 'soon': 1.0, 'hole': 1.0, 't': 1.0, 'a': 5.0, 'we': 1.0, 'float': 1.0, 'ran': 1.0, 'laid': 1.0, 'down': 1.0, 'his': 1.0, 'claiming': 1.0, 'been': 1.0, 'loves': 1.0, 'that': 1.0, 'he': 2.0, 'plastic': 1.0}
Word element => {'on': 1.0, 'it': 1.0, 'what': 1.0, 'you': 1.0, 'else': 1.0, 'shipping': 1.0, 'can': 1.0, 'accurate': 1.0, 'excellent': 1.0, 'quality': 1.0, 'ask': 1.0, '2': 1.0, 'the': 2.0, 'fit': 1.0, 'might': 1.0, 'for': 1.0, 'tight': 1.0, 'take': 1.0, 'is': 2.0, 'really': 1.0, 'people': 1.0, 'was': 1.0, 'to': 1.0, 'and': 1.0, 'get': 1.0}
Word element => {'night': 1.0, 'borrowed': 1.0, 'bedroom': 1.0, 'leaving': 1.0, 'getting': 1.0, 'kept': 1.0, 'was': 1.0, 'herself': 1.0, 'by': 1.0, 'get': 1.0, 'up': 2.0, 'of': 3.0, 'well': 1.0, 'trip': 1.0, 'not': 2.0, 'on': 2.0, 'use': 1.0, 'got': 1.0, 'i': 1.0, 'old': 2.0, 'to': 1.0, '30': 1.0, 'this': 2.0, 'with': 1.0, 'were': 1.0, 'us': 1.0, 'daughter': 1.0, 'corner': 1.0, 'bed': 3.0, 'for': 2.0, 'fact': 1.0, 'often': 1.0, 'family': 1.0, 'my': 2.0, '2': 1.0, 'in': 1.0, 'loved': 1.0, 'falling': 1.0, 'great': 1.0, 'twin': 1.0, 'crib': 1.0, 'one': 1.0, 'entire': 1.0, 'week': 1.0, 'it': 4.0, 'month': 2.0, 'she': 4.0, '19': 1.0, 'ended': 1.0, 'cuddles': 1.0, 'nephew': 1.0, 'that': 2.0, 'into': 1.0, 'off': 2.0, 'her': 1.0, 'and': 3.0, 'do': 1.0, 'a': 2.0, 'going': 1.0, 'we': 2.0, 'could': 2.0, 'the': 4.0, 'without': 1.0}
Word element => {'better': 1.0, 'be': 1.0, 'thus': 1.0, 'would': 2.0, 'assumed': 1.0, 'thought': 1.0, 'had': 1.0, 'i': 1.0, 'home': 1.0, 'novelty': 1.0, 'her': 1.0, 'has': 1.0, 'bed': 1.0, 'for': 1.0, 'sturdy': 1.0, 'use': 1.0, 'compared': 1.0, 'comments': 1.0, 'wobbly': 1.0, 'she': 1.0, 'it': 4.0, 'most': 1.0, 'but': 1.0, 'work': 2.0, 'back': 1.0, 'the': 2.0, 'daughter': 1.0, 'likely': 1.0, 'purchase': 1.0, 'my': 1.0, 'due': 1.0, 'assumption': 1.0, 'try': 1.0, 'pack': 1.0, 'to': 4.0, 'slept': 1.0, 'being': 1.0, 'if': 1.0, 'in': 1.0, 'and': 4.0, 'play': 1.0, 'type': 1.0, 'fine': 1.0, 'just': 1.0, 'trip': 2.0, 'wrong': 1.0, 'not': 1.0, 'again': 1.0, 'you': 1.0, 'plan': 1.0, 't': 1.0, 'a': 1.0, 'your': 1.0, 'on': 3.0, 'mattress': 2.0, 'based': 1.0, 'didn': 1.0, 'previous': 1.0}
Word element => {'other': 1.0, 'would': 1.0, 'fast': 1.0, 'parents': 1.0, 'way': 1.0, 'suggest': 1.0, 'either': 1.0, 'but': 1.0, 'cause': 1.0, 'know': 1.0, 'will': 1.0, 'inflated': 1.0, 'fully': 1.0, 'being': 1.0, 'not': 1.0, 'on': 1.0, 'caused': 1.0, 'deflates': 1.0, 'never': 1.0, 'reason': 1.0, 'long': 1.0, 'definitely': 1.0, 'ease': 1.0, 'retains': 1.0, 'days': 1.0, 'only': 2.0, 'soft': 1.0, 'this': 2.0, 'with': 3.0, 'it': 2.0, 'and': 4.0, 'giving': 1.0, 'comfortable': 1.0, 'bed': 2.0, 'air': 1.0, 'inflates': 1.0, 'by': 1.0, 'few': 1.0, 'time': 1.0, 'vacationing': 1.0, 'patch': 2.0, 'been': 1.0, 'that': 2.0, 'ordered': 1.0, 'toddler': 2.0, 'the': 4.0, 'i': 3.0, '4': 1.0, 'jumping': 1.0, 'my': 1.0, 'purchase': 1.0, 'of': 1.0, 'instead': 1.0, 'there': 1.0, '5': 1.0, 'was': 2.0, 'our': 1.0, 'to': 2.0, 'is': 1.0, 'comes': 1.0, 'because': 1.0, 'after': 1.0, 'however': 1.0, 'needed': 1.0, 'stars': 1.0, 'for': 3.0, 'product': 3.0, 'kit': 1.0, 'hole': 1.0, 'a': 4.0, 'could': 1.0, 'small': 1.0, 'have': 1.0}
Word element => {'looks': 1.0, 'too': 1.0, 'protects': 1.0, 'if': 1.0, 'the': 3.0, 'have': 1.0, 'recommend': 1.0, 'really': 1.0, 'bed': 2.0, 'get': 1.0, 'must': 1.0, 'you': 2.0, 'cover': 1.0, 'and': 1.0, 'as': 1.0, 'well': 2.0, 'great': 1.0, 'it': 1.0}
Word element => {'to': 1.0, 'comfortable': 1.0, 'it': 1.0, 'we': 2.0, 'easy': 1.0, 'use': 2.0, 'this': 1.0, 'my': 2.0, 'travel': 1.0, 'comes': 1.0, 'and': 2.0, 'when': 2.0, 'niece': 1.0, 'over': 1.0, 'for': 1.0, 'is': 1.0, 'son': 1.0}
Word element => {'not': 1.0, 'product': 1.0, 'knobs': 1.0, 'her': 1.0, 'good': 1.0, 'or': 1.0, 'rod': 1.0, 'curtain': 1.0, 'from': 2.0, 'one': 2.0, 'different': 1.0, 'of': 1.0, 'up': 1.0, 'dresser': 1.0, 'ended': 1.0, 'so': 1.0, 'on': 2.0, 'overall': 2.0, 'have': 1.0, 'but': 2.0, 'necessary': 1.0, 'done': 1.0, 'me': 1.0, 'the': 3.0, 'these': 1.0, 'could': 1.0, 'like': 2.0, 'hanging': 2.0, 'hangings': 1.0, 'wall': 2.0, 'putting': 1.0, 'cloth': 1.0, 'i': 4.0, 'without': 1.0, 'them': 2.0, 'a': 3.0, 'eg': 1.0, 'in': 1.0, 'honestly': 1.0, 'to': 1.0, 'felt': 1.0, 'looks': 1.0, 'little': 1.0, 'places': 1.0, 'odd': 1.0}
Word element => {'tucking': 1.0, 'had': 1.0, 'who': 1.0, 'daughter': 1.0, 'but': 1.0, 'work': 1.0, 'should': 1.0, 'side': 1.0, 'if': 1.0, 'bed': 3.0, 'one': 2.0, 'sides': 1.0, 'in': 4.0, 'will': 1.0, 'she': 1.0, 'it': 4.0, 'while': 1.0, 'have': 1.0, 'small': 1.0, 'only': 1.0, 'trim': 1.0, 'like': 1.0, 'gingham': 1.0, 'rely': 1.0, 'with': 2.0, 'pink': 2.0, 'sleep': 1.0, 'to': 3.0, 'all': 1.0, 'sheet': 4.0, 'feel': 1.0, 'great': 2.0, 'the': 6.0, 'top': 3.0, 'lover': 1.0, 'makes': 1.0, 'double': 1.0, 'they': 1.0, 'tucked': 3.0, 'tuck': 1.0, 'and': 5.0, 'comfy': 1.0, 'done': 1.0, 'is': 5.0, 'set': 1.0, 'of': 1.0, 'my': 4.0, 'little': 3.0, 'when': 1.0, 'am': 1.0, 'kid': 1.0, 'stitching': 1.0, 'likes': 3.0, 'won': 1.0, 'has': 1.0, 'well': 1.0, 'horse': 1.0, 'soft': 1.0, 'this': 3.0, 'cotton': 2.0, 'both': 1.0, 'horses': 1.0, 'that': 1.0, 'loves': 1.0, 'i': 1.0, 'about': 1.0, 'quilted': 1.0, 'we': 1.0, 't': 1.0, 'a': 4.0, 'bedding': 1.0, 'made': 1.0, 'out': 2.0, 'them': 1.0, 'for': 1.0, 'picky': 1.0, 'having': 1.0, 'different': 1.0, 'really': 1.0, 'material': 1.0, 'comforter': 1.0, 'pillow': 2.0, 'complaint': 1.0, 'bottom': 1.0, 'stand': 1.0, 'stay': 1.0, 'not': 1.0, 'are': 2.0, 'make': 1.0, 'your': 1.0, '3': 1.0, 'stuff': 1.0, 'on': 4.0, 'liking': 1.0, 'painted': 1.0}
Word element => {'on': 1.0, 'be': 1.0, 'nicely': 1.0, 'won': 1.0, 'has': 1.0, 'which': 1.0, 'else': 1.0, 'anywhere': 1.0, 'find': 1.0, 'hard': 1.0, 'adorable': 1.0, 'just': 1.0, 'horse': 1.0, 'our': 1.0, 'born': 1.0, 'was': 3.0, 'this': 4.0, 'with': 1.0, 'room': 1.0, 'ever': 1.0, 'person': 1.0, 'is': 4.0, 'disappointed': 1.0, 'spare': 1.0, 'many': 1.0, 'set': 2.0, 'of': 1.0, 'washable': 1.0, 'up': 2.0, 'have': 1.0, 'must': 1.0, 'purchased': 1.0, 'cutest': 1.0, 'the': 3.0, 'purchase': 1.0, 'my': 2.0, 'grand': 1.0, 'crib': 1.0, 'for': 2.0, 'daughter': 2.0, 'you': 1.0, 'seen': 1.0, 'when': 1.0, 'am': 1.0, 't': 1.0, 'a': 5.0, 'and': 3.0, 'pony': 1.0, 'along': 1.0, 'spent': 1.0, 'her': 1.0, 'i': 3.0, 'etc': 1.0, 'growing': 1.0, 'horses': 1.0, 'best': 1.0, 'years': 1.0, 'plus': 1.0, 'colors': 1.0, 'she': 1.0, 'showing': 1.0, 'so': 2.0, 'held': 1.0, 'theme': 1.0, 'quality': 1.0, 'complete': 1.0}
Word element => {'theme': 1.0, 'for': 1.0, 'in': 1.0, 'decorations': 1.0, 'horse': 2.0, 'of': 1.0, 'rest': 1.0, 'her': 2.0, 'ur': 1.0, 'not': 1.0, 'the': 3.0, 'off': 1.0, 'sets': 1.0, 'takin': 1.0, 'room': 2.0, 'with': 1.0, 'to': 1.0, 'perfectly': 1.0, 'great': 1.0, 'too': 1.0, 'busy': 1.0, 'looks': 1.0, 'interfere': 1.0}
Word element => {'under': 1.0, 'empty': 1.0, 'house': 1.0, 'grandma': 1.0, 'or': 1.0, 'second': 1.0, 'perfect': 1.0, 'be': 1.0, 'suggestion': 1.0, 'final': 1.0, 'outlasted': 1.0, 'has': 1.0, 'was': 1.0, 'secure': 1.0, 'replace': 1.0, 'easier': 1.0, 'genie': 1.0, 'cheaper': 1.0, 'they': 2.0, 'but': 1.0, 'we': 1.0, 'with': 2.0, 'been': 1.0, 'toddler': 1.0, 'average': 1.0, 'replacing': 1.0, 'have': 2.0, 'more': 2.0, 'give': 1.0, 'should': 1.0, 'ahead': 1.0, 'come': 1.0, 'happy': 1.0, 'one': 2.0, 'something': 1.0, 'buy': 1.0, 'feasibly': 1.0, 'could': 1.0, 'low': 1.0, 'also': 2.0, '10x': 1.0, 'cost': 2.0, 'if': 1.0, 'still': 1.0, 'every': 1.0, 'proprietary': 2.0, 'instead': 1.0, 'trash': 1.0, 'those': 1.0, 'negative': 1.0, 'letting': 1.0, 'medium': 1.0, 'would': 2.0, 'each': 1.0, 'regularly': 1.0, 'though': 1.0, 'much': 4.0, 'nursery': 1.0, 'arm': 1.0, 'big': 1.0, 'and': 10.0, 'an': 1.0, 'all': 1.0, 'strongly': 1.0, 'conditions': 1.0, 'this': 8.0, 'holds': 1.0, 'is': 11.0, 'already': 1.0, '9': 1.0, 'it': 10.0, 'pails': 1.0, 'probably': 1.0, 'easy': 2.0, 'bag': 2.0, 'simple': 1.0, 'use': 1.0, 'benefits': 1.0, 'me': 1.0, 'my': 1.0, 'happier': 1.0, 'nasty': 1.0, 'i': 5.0, 'rather': 1.0, 'cheap': 2.0, 'hammer': 1.0, 'for': 3.0, 'love': 1.0, 'bad': 1.0, 'are': 4.0, 'of': 3.0, 'the': 14.0, 'time': 2.0, 'uses': 1.0, 'used': 1.0, 'advise': 1.0, 'mechanism': 1.0, 'get': 1.0, 'months': 2.0, 'guess': 1.0, 'actually': 1.0, 'color': 1.0, 'nor': 1.0, 'does': 2.0, 'twice': 2.0, 'standard': 1.0, 'that': 11.0, 'because': 1.0, 'than': 4.0, 'fumes': 1.0, 'grandpas': 1.0, 'after': 2.0, 'garbage': 1.0, 'stars': 1.0, 'start': 1.0, 'maintain': 1.0, 'several': 1.0, 'baby': 1.0, 'gaskets': 1.0, 'parts': 1.0, '3': 1.0, 'refills': 1.0, 'absorb': 1.0, 'fancy': 1.0, 'odors': 1.0, 'make': 1.0, 'long': 1.0, 'on': 2.0, 'a': 6.0, 'cannot': 1.0, 'very': 1.0, 'stinky': 1.0, 'replaced': 1.0, 'relies': 1.0, 'smells': 1.0, 'you': 3.0, 'seals': 1.0, 'plan': 1.0, 'which': 1.0, 'in': 5.0, 'regular': 1.0, 'last': 1.0, 'sealing': 1.0, 'bags': 3.0, 'as': 5.0, 'diaper': 5.0, 'keep': 1.0, 'just': 1.0, 'exposed': 1.0, 'full': 2.0, 'dirty': 1.0, '24': 1.0, 'so': 5.0, 'can': 1.0, 'less': 1.0, 'takes': 1.0, '7': 1.0, 'change': 1.0, 'until': 1.0, 'see': 1.0, 'not': 2.0, 'itself': 3.0, 'gasket': 1.0, 'against': 1.0, 'to': 8.0, 'pail': 9.0, 'pretty': 1.0, 'jam': 1.0, 'mean': 1.0, 'out': 1.0, 'absolutely': 1.0}
Word element => {'overall': 1.0, 'fit': 1.0, 'that': 1.0, 'i': 1.0, 'buy': 1.0, 'specific': 1.0, 'can': 1.0, 'money': 1.0, 'it': 2.0, 'you': 1.0, 'the': 1.0, 'well': 1.0, 'really': 1.0, 'product': 1.0, 'designed': 1.0, 'and': 1.0, 'save': 1.0, 'worth': 1.0, 'bags': 2.0, 'need': 1.0, 'nice': 1.0, 'no': 1.0, 'hundreds': 1.0, 'y': 1.0, 'to': 2.0, 'normal': 1.0, 'love': 1.0, 'costly': 1.0, 'using': 1.0, 'trash': 3.0, 'in': 2.0}
Word element => {'dirty': 1.0, 'any': 1.0, 'to': 1.0, 'had': 1.0, 'not': 1.0, 'because': 1.0, 'buy': 1.0, 'i': 1.0, 'whole': 1.0, 'you': 1.0, 'bought': 1.0, 'have': 1.0, 'this': 1.0, 'it': 3.0, 'diaper': 2.0, 'the': 5.0, 'really': 2.0, 'a': 4.0, 'lot': 1.0, 'originally': 1.0, 'pail': 1.0, 'nice': 1.0, 'special': 1.0, 'bad': 1.0, 'size': 1.0, 'plastic': 2.0, 'diapers': 1.0, 'most': 1.0, 'but': 1.0, 'stinks': 1.0, 'is': 2.0, 'holds': 1.0, 'or': 1.0, 'of': 1.0, 'stank': 1.0, 'inserts': 1.0, 'for': 1.0, 'after': 1.0, 'awful': 1.0, 'little': 1.0, 'do': 1.0, 'nursery': 1.0, 'odor': 1.0, 'problem': 1.0, 'terrible': 1.0, 'that': 1.0, 'bags': 1.0, 'while': 1.0, 'from': 1.0, 'smell': 1.0, 'retained': 1.0}
Word element => {'feces': 1.0, 'rotten': 1.0, 'like': 1.0, 'mistake': 1.0, 'for': 1.0, 'opted': 1.0, 'buying': 1.0, 'of': 1.0, 'up': 1.0, 'there': 1.0, 'tired': 1.0, 'have': 1.0, 'diapers': 1.0, 'stinks': 1.0, 'smell': 1.0, 'this': 2.0, 'it': 5.0, 'to': 2.0, 'cartridges': 1.0, 'used': 1.0, 'what': 1.0, 'open': 1.0, 'a': 1.0, 'causes': 1.0, 'we': 2.0, 't': 2.0, 'the': 4.0, 'turns': 1.0, 'sausage': 1.0, 'thing': 2.0, 'whole': 2.0, 'room': 2.0, 'when': 1.0, 'is': 2.0, 'kind': 1.0, 'left': 1.0, 'just': 1.0, 'not': 1.0, 'because': 2.0, 'sitting': 1.0, 'overstuffed': 1.0, 'regular': 1.0, 'in': 1.0, 'use': 2.0, 'links': 1.0, 'isn': 2.0, 'has': 1.0, 'into': 1.0, 'that': 1.0, 'been': 1.0}
Word element => {'weeks': 1.0, 'stinky': 1.0, 'fabreeze': 1.0, 'keep': 1.0, 'week': 1.0, 'help': 1.0, 'twice': 1.0, 'bag': 1.0, 'really': 1.0, 'every': 1.0, 'gross': 1.0, 'take': 1.0, 'freshner': 1.0, 'saver': 1.0, 'so': 1.0, 'time': 2.0, 'be': 1.0, 'odors': 1.0, 'eliminate': 1.0, 'quickly': 1.0, 'out': 1.0, 'disappears': 1.0, 'it': 2.0, 'already': 1.0, 'one': 1.0, 'loaded': 1.0, 'specific': 1.0, 'had': 1.0, 'odor': 1.0, 'buy': 1.0, 'i': 8.0, 'kitchen': 1.0, 'is': 4.0, 'wall': 1.0, 'thing': 1.0, 'have': 4.0, 'favorite': 1.0, 'my': 1.0, 'using': 1.0, 'meant': 2.0, 'product': 1.0, 'love': 1.0, 'for': 1.0, 'handle': 1.0, 'all': 1.0, 'to': 5.0, 'any': 1.0, 'pail': 3.0, 'a': 8.0, 't': 2.0, 'the': 5.0, 'icky': 1.0, 'this': 2.0, 'with': 2.0, 'that': 1.0, 'been': 1.0, 'year': 1.0, 'problems': 1.0, 'don': 2.0, 'over': 1.0, 'bags': 2.0, 'by': 1.0, 'just': 2.0, 'not': 2.0, 'use': 1.0, 'replace': 1.0, 'diaper': 3.0, 'wiff': 1.0, 'do': 2.0, 'get': 1.0, 'and': 1.0, 'sometimes': 1.0, 'you': 2.0, 'when': 1.0, 'on': 1.0, 'put': 1.0, 'regular': 1.0, 'in': 2.0, 'breaking': 1.0, 'there': 1.0}
Word element => {'different': 1.0, 'deluxe': 1.0, 'easy': 1.0, 'very': 1.0, 'flawlessly': 1.0, 'get': 1.0, 'all': 1.0, 'an': 1.0, 'line': 1.0, 'for': 2.0, 'such': 1.0, 'isn': 1.0, 'can': 2.0, 'so': 1.0, 'a': 6.0, 's': 3.0, 'could': 1.0, 'instead': 1.0, 'helps': 1.0, 'you': 2.0, 'able': 1.0, 'be': 1.0, 'two': 1.0, 'nice': 1.0, 'bag': 2.0, 'brand': 1.0, 'version': 4.0, 'hold': 2.0, 'go': 1.0, 'improved': 1.0, 'new': 2.0, 'prevented': 1.0, 'bottom': 1.0, 'far': 1.0, 'through': 2.0, 'where': 1.0, 'superior': 1.0, 'me': 1.0, 'my': 2.0, 'lid': 1.0, 'if': 2.0, 'still': 1.0, 'find': 3.0, 'worked': 1.0, 'having': 2.0, 'does': 1.0, 'regular': 1.0, 'in': 1.0, 'pros': 1.0, 'is': 5.0, 'trash': 1.0, 'champ': 1.0, 'child': 1.0, 't': 1.0, 'instances': 1.0, 'original': 3.0, 'cons': 1.0, 'and': 3.0, 'do': 1.0, 'to': 8.0, 'had': 2.0, 'wish': 1.0, 'this': 3.0, 'lost': 1.0, '30': 2.0, 'those': 2.0, 'not': 1.0, 'mess': 1.0, 'buy': 1.0, 'try': 1.0, 'one': 4.0, 'boy': 1.0, 'opinon': 1.0, 'it': 5.0, 'with': 3.0, 'whew': 1.0, 'odors': 1.0, 'years': 1.0, 'limit': 1.0, 'no': 3.0, 'the': 14.0, 'of': 3.0, 'longer': 1.0, 'odor': 3.0, 'free': 1.0, 'yes': 1.0, 'channel': 2.0, 'on': 2.0, 'supposed': 1.0, '3': 1.0, 'top': 1.0, 'back': 1.0, 'but': 1.0, 'up': 2.0, 'specialized': 1.0, 'change': 1.0, 'thing': 1.0, '2': 1.0, 'when': 1.0, 'times': 1.0, 'they': 2.0, 'created': 1.0, 'design': 1.0, 'that': 2.0, 'bad': 1.0, 'first': 1.0, 'diapers': 4.0, 'lock': 1.0, 'old': 2.0, 'from': 1.0, 'diaper': 1.0, 'as': 2.0, 'bags': 1.0, 'i': 3.0, 'coming': 1.0, 'also': 1.0, 'many': 1.0, 'did': 1.0, 'use': 2.0, 'stretch': 1.0, 'although': 1.0, 'issue': 1.0, 'best': 1.0, 'out': 2.0, 'week': 1.0}
Word element => {'choice': 1.0, 'scented': 1.0, 'size': 1.0, 'unscented': 1.0, 'glad': 1.0, 'work': 1.0, 'flex': 1.0, 'job': 1.0, 'kitchen': 1.0, 'diaper': 1.0, 'same': 1.0, 'like': 1.0, 'any': 1.0, 'bags': 1.0, 'and': 1.0, 'as': 1.0, 'genie': 1.0, 'your': 1.0, 'or': 1.0, 'does': 1.0, 'i': 1.0}
Word element => {'recommend': 1.0, 'would': 1.0, 'handle': 1.0, 'buy': 1.0, 'i': 3.0, 'now': 1.0, 'price': 1.0, 'the': 5.0, 'diaper': 1.0, 'using': 1.0, 'about': 1.0, 'no': 1.0, 'good': 1.0, 'said': 1.0, 'regular': 1.0, 'side': 1.0, 'those': 1.0, 'odour': 1.0, 'this': 3.0, 'with': 1.0, 'pail': 3.0, 'product': 1.0, 'for': 1.0, 'expensive': 1.0, 'down': 1.0, 'months': 1.0, 'very': 1.0, 'to': 2.0, 'as': 1.0, 'and': 2.0, 'a': 1.0, 'takes': 1.0, 'is': 2.0, 'trash': 1.0, 'of': 1.0, '13': 1.0, 'there': 1.0, 'gallon': 1.0, 'opening': 1.0, 'bags': 1.0, 'closing': 1.0, 'easy': 1.0, 'refills': 1.0, 'use': 2.0, '2': 1.0, 'but': 1.0, 'that': 1.0, 'need': 1.0, 'slight': 1.0, 'am': 1.0, 'when': 1.0}
Word element => {'friends': 1.0, 'family': 1.0, 'and': 1.0, 'hard': 1.0, 'care': 2.0, 'you': 3.0, 'us': 1.0, 'also': 1.0, 'aligned': 1.0, 'not': 3.0, 'did': 3.0, 'perfectly': 1.0, 'odl': 1.0, 'would': 5.0, 'took': 1.0, 'buy': 2.0, 'steer': 1.0, 'horribly': 1.0, 'trend': 2.0, 'have': 1.0, 'people': 1.0, 'sworn': 1.0, 'smell': 1.0, 'we': 5.0, 'new': 3.0, 'model': 6.0, 'using': 1.0, 'gave': 1.0, 'that': 2.0, 'shower': 1.0, 'child': 1.0, 'steered': 1.0, 'worked': 2.0, 'tell': 1.0, 'our': 2.0, 'innards': 1.0, 'any': 1.0, 'great': 3.0, 'of': 3.0, 'the': 10.0, 'bags': 2.0, 'horrible': 1.0, 'leave': 1.0, 'as': 3.0, 'diaper': 1.0, 'was': 2.0, 'had': 1.0, 'it': 6.0, 'thought': 1.0, 'many': 4.0, 'baby': 3.0, 'them': 2.0, 'when': 1.0, 'seal': 1.0, 'loaded': 1.0, 'they': 1.0, 'champ': 1.0, 'gifts': 1.0, 'last': 1.0, 'taking': 1.0, 'out': 1.0, 'snag': 1.0, 'on': 1.0, 'some': 1.0, 'sometimes': 1.0, 'unless': 1.0, 'after': 1.0, 'experience': 1.0, 'ripping': 1.0, 'service': 1.0, 'if': 2.0, 'want': 1.0, 'so': 1.0, 'can': 2.0, 'but': 1.0, 'find': 2.0, 'well': 1.0, 'i': 6.0, 'about': 1.0, 'issues': 1.0, 'with': 2.0, 'used': 1.0, 'love': 1.0, 'for': 1.0, 'however': 2.0, 'my': 1.0, 'old': 3.0, 'fact': 1.0, 'their': 1.0, 'customer': 1.0, 'to': 6.0, 'regarding': 1.0, 'this': 1.0, 'tried': 1.0, 'off': 1.0, 'in': 1.0, 'traffic': 1.0, 'original': 1.0, 'designed': 1.0, 'one': 2.0, 'try': 1.0}
Word element => {'little': 1.0, 'need': 1.0, 'huge': 1.0, 'love': 1.0, 'wrong': 1.0, 'go': 1.0, 'it': 1.0, 'smells': 1.0, 'when': 1.0, 'things': 1.0, 'you': 3.0, 'did': 1.0, 'smell': 1.0, 'about': 2.0, 'whole': 1.0, 'something': 1.0, 'and': 4.0, 'get': 1.0, 'among': 1.0, 'put': 1.0, 'do': 2.0, 'pales': 2.0, 'scentcy': 1.0, 'glad': 1.0, 'trash': 1.0, 'is': 2.0, 'for': 3.0, 'm': 1.0, 'in': 3.0, 'additional': 1.0, 'said': 1.0, 'favorite': 1.0, 'change': 1.0, 'knowing': 1.0, 'house': 3.0, 'great': 1.0, 'foot': 1.0, 'p': 1.0, 'center': 1.0, 'to': 3.0, 'poopers': 1.0, 'aweful': 1.0, 'an': 1.0, 'all': 5.0, 'decided': 1.0, 'have': 2.0, 'open': 1.0, 'researched': 1.0, 'twice': 1.0, 'group': 1.0, 'champ': 1.0, 'child': 1.0, 'isn': 1.0, 'don': 1.0, 'kitchen': 1.0, 'warming': 1.0, 'a': 5.0, 't': 3.0, 'must': 1.0, 'step': 1.0, 'home': 1.0, 'scarry': 1.0, 'i': 11.0, '4': 1.0, 'now': 1.0, 'diapers': 4.0, 'first': 1.0, 'are': 1.0, 'smelled': 1.0, 'fresh': 1.0, 'time': 2.0, 'bit': 1.0, 'can': 3.0, 'pale': 3.0, 'poopy': 1.0, 'care': 1.0, 'like': 2.0, 'cents': 1.0, 'sassy': 1.0, 'had': 1.0, 'warm': 1.0, 'even': 1.0, 'instead': 1.0, 'there': 2.0, 'the': 11.0, 'of': 4.0, 'stink': 1.0, 'piece': 1.0, 'dirty': 1.0, 'they': 1.0, 'sack': 1.0, 'normal': 1.0, 'whiners': 1.0, 'out': 1.0, 'opened': 1.0, 'use': 2.0, 'gave': 1.0, 'fabreze': 1.0, 'babies': 1.0, 'that': 2.0, 'stabelize': 1.0, 'diaper': 6.0, 'as': 1.0, 'bags': 1.0, 'my': 5.0, 'wala': 1.0, 'this': 1.0, 'perfect': 1.0, 'baby': 1.0, 'others': 1.0, 'want': 1.0, 'bag': 1.0, 'your': 1.0, 'week': 1.0, 'day': 2.0, 'every': 1.0, 'with': 1.0, 'plenty': 1.0}
Word element => {'want': 1.0, 'don': 1.0, 'skip': 1.0, 'registry': 1.0, 'our': 1.0, 'had': 1.0, 'if': 2.0, 'one': 1.0, 'not': 1.0, 'people': 1.0, 'stale': 1.0, 'basic': 1.0, 'whiff': 1.0, 'when': 1.0, 'stink': 1.0, 'give': 1.0, 'eventually': 1.0, 'two': 1.0, 'on': 1.0, 'easier': 1.0, 're': 1.0, 'where': 1.0, 'point': 1.0, 'messy': 1.0, 'finished': 1.0, 'out': 2.0, 'lid': 3.0, 'save': 1.0, 'm': 3.0, 'in': 4.0, 'drop': 1.0, 'position': 1.0, 'works': 1.0, 'certain': 1.0, 'do': 1.0, 'changing': 1.0, 'floor': 1.0, 'much': 1.0, 'it': 10.0, 'once': 1.0, 'only': 1.0, 'dispose': 1.0, 'have': 2.0, 'number': 1.0, 'inexpensive': 1.0, 'forget': 1.0, 'clean': 1.0, 'them': 1.0, 'has': 1.0, 't': 3.0, 'might': 2.0, 's': 2.0, 'hardly': 1.0, 'that': 1.0, 'terrible': 1.0, 'doesn': 2.0, 'stuck': 1.0, 'champ': 4.0, 'goes': 1.0, 'looking': 1.0, 'to': 10.0, 'pretty': 1.0, 'take': 1.0, 'did': 1.0, 'getting': 1.0, 'time': 1.0, 'wife': 1.0, 'compressed': 1.0, 'for': 1.0, 'as': 1.0, 'bags': 2.0, 'diaper': 8.0, 'of': 4.0, 'the': 15.0, 'baby': 1.0, 'deal': 3.0, 'way': 2.0, 'happened': 1.0, 'trying': 1.0, 'never': 1.0, 'some': 2.0, 'need': 1.0, 'or': 3.0, 'same': 1.0, 'my': 1.0, 'reasons': 1.0, 'me': 2.0, 'squirming': 1.0, 'and': 5.0, 'toss': 1.0, 'closed': 2.0, 'well': 1.0, 'i': 6.0, 'better': 1.0, 'flip': 2.0, 'is': 1.0, 'at': 3.0, 'handle': 1.0, 'reaches': 1.0, 'added': 1.0, 'attempting': 1.0, 'imagine': 1.0, 'a': 9.0, 'disappears': 1.0, 'but': 1.0, 'can': 2.0, 'after': 1.0, 'just': 2.0, 'this': 2.0, 'few': 1.0, 'plus': 1.0, 'first': 2.0, 'diapers': 4.0, 'bad': 1.0, 'off': 1.0, 'until': 1.0, 'see': 2.0, 'garbage': 2.0, 'let': 1.0, 'no': 1.0, 'over': 1.0, 'special': 2.0, 'open': 3.0, 'up': 1.0, 'starts': 1.0, 'you': 9.0, 'push': 1.0, 'down': 1.0, 'with': 5.0, 'would': 1.0, 'either': 2.0, 'your': 2.0, 'catch': 1.0, '3': 1.0, 'hand': 1.0, 'throw': 2.0, 'foot': 1.0, 'be': 1.0, 'hight': 1.0, 'gets': 1.0, 'an': 1.0, 'dirty': 3.0, 'full': 1.0, 'now': 2.0, 'infant': 1.0}
Word element => {'important': 1.0, 'bit': 1.0, 'says': 1.0, 'was': 1.0, 'dirty': 1.0, 'small': 1.0, 'have': 1.0, 'while': 1.0, 'need': 1.0, 'get': 1.0, 'easy': 1.0, 'chute': 1.0, 'open': 2.0, 'on': 1.0, 'pull': 1.0, 'top': 1.0, 'handle': 1.0, 'pink': 1.0, 'sometimes': 1.0, 'operation': 1.0, 'hand': 1.0, 'one': 2.0, 'super': 1.0, 'would': 1.0, 'm': 1.0, 'awkward': 1.0, 'little': 1.0, 'certain': 1.0, 'only': 1.0, 'in': 2.0, 'diaper': 2.0, 'and': 3.0, 'away': 1.0, 'likes': 1.0, 'well': 1.0, 'awfully': 1.0, 'neice': 2.0, 'ok': 1.0, 'but': 2.0, 'work': 2.0, 'bar': 1.0, 'thought': 2.0, 'that': 5.0, 'quite': 1.0, 'guess': 1.0, 'all': 2.0, 'to': 6.0, 'first': 1.0, 'this': 4.0, 'it': 6.0, 'you': 4.0, 'when': 2.0, 'am': 1.0, 'diapers': 1.0, 'got': 1.0, 'thing': 4.0, 'no': 1.0, 'a': 6.0, 'going': 1.0, 's': 1.0, 'holds': 1.0, 'say': 1.0, 'is': 6.0, 'really': 1.0, 'up': 1.0, 'witness': 1.0, 'hands': 1.0, 'place': 1.0, 'the': 9.0, 'behind': 1.0, 'not': 4.0, 'does': 3.0, 'because': 1.0, 'smell': 2.0, 'are': 2.0, 'my': 2.0, 'fact': 1.0, 'stashed': 1.0, 'at': 2.0, 'lot': 1.0, 'of': 1.0, 'plastic': 1.0, 'opening': 2.0, 'way': 1.0, 'somewhat': 1.0, 'two': 1.0, 'i': 7.0, 'restricted': 1.0}
Word element => {'matters': 1.0, 'what': 1.0, 'happen': 1.0, 'assume': 1.0, 'that': 3.0, 'changing': 1.0, 'when': 1.0, 'cleaner': 1.0, 'me': 1.0, 'bleach': 1.0, 'though': 1.0, 'use': 1.0, 'year': 1.0, 'after': 1.0, 'll': 1.0, 'down': 1.0, 'inside': 2.0, 'stinky': 1.0, 'little': 1.0, 'sure': 1.0, 'stores': 1.0, 'with': 3.0, 'have': 1.0, 'don': 1.0, 'really': 1.0, 'born': 1.0, 'was': 1.0, 'using': 1.0, 'version': 1.0, 'diaper': 2.0, 'the': 6.0, 'or': 1.0, 'i': 7.0, 'star': 1.0, 'else': 1.0, 'would': 1.0, 've': 2.0, 'scrolled': 1.0, 'used': 1.0, 'older': 1.0, 'bag': 1.0, 'comparing': 1.0, 'it': 5.0, 'only': 1.0, 'are': 1.0, 'of': 3.0, 'stays': 1.0, '1': 1.0, 'and': 2.0, 'smell': 1.0, 'an': 1.0, 'champ': 2.0, 'even': 1.0, 'diapers': 2.0, 'through': 1.0, 'any': 1.0, 'to': 2.0, 'all': 1.0, 'thing': 1.0, 'keep': 1.0, 'since': 1.0, 'different': 1.0, 'problems': 1.0, 'noticed': 1.0, 'type': 1.0, 'trash': 1.0, 'say': 1.0, 'is': 1.0, 'but': 2.0, 'most': 1.0, 'can': 2.0, 'better': 1.0, 'anything': 2.0, 'than': 1.0, 'because': 1.0, 't': 2.0, 'a': 4.0, 's': 3.0, 'for': 1.0, 'reviews': 1.0, 'dirty': 2.0, 'my': 1.0, 'wipe': 1.0, 'them': 1.0, 'baby': 1.0}
Word element => {'me': 1.0, 'trust': 1.0, 'can': 1.0, 'garbage': 1.0, 'garage': 1.0, 'in': 1.0, 'it': 1.0, 'throw': 1.0, 'plastic': 1.0, 'grocery': 1.0, 'recycled': 1.0, 'supply': 1.0, 'house': 1.0, 'room': 1.0, 'on': 1.0, 'your': 1.0, 'of': 2.0, 'out': 2.0, 'smell': 1.0, 'want': 1.0, 'if': 1.0, 'you': 1.0, 'when': 1.0, 'mom': 1.0, 'seasoned': 1.0, 'nasty': 1.0, 'that': 1.0, 'been': 1.0, 'up': 1.0, 'over': 1.0, 'list': 1.0, 'then': 1.0, 'keep': 1.0, 'three': 1.0, 'since': 1.0, 'and': 4.0, 'worst': 2.0, 'is': 1.0, 'hand': 1.0, 'reading': 1.0, 'really': 2.0, 'registry': 1.0, 'makes': 1.0, 'baby': 1.0, 'mess': 1.0, 'i': 3.0, 'reviews': 1.0, 'new': 1.0, 'ten': 1.0, 'my': 2.0, 'building': 1.0, 'the': 6.0, 'diaper': 1.0, 'was': 1.0, 'bags': 1.0, 'matter': 1.0, 'later': 1.0, 'have': 1.0, 'pick': 1.0, 'waiting': 1.0, 'day': 1.0, 'years': 2.0, 'best': 1.0, 'a': 2.0, 'ago': 1.0, 'could': 1.0, 'pail': 1.0, 'come': 1.0, 'kids': 1.0, 'this': 1.0, 'back': 1.0, 'thing': 1.0, 'tie': 1.0, 'no': 2.0, 'what': 1.0, 'or': 1.0, 'worth': 1.0, 'amazon': 1.0, 'hassle': 1.0}
Word element => {'favorite': 1.0, 'one': 1.0, 'branded': 1.0, 'like': 1.0, 'rather': 1.0, 'on': 2.0, 'different': 1.0, 'baby': 1.0, 'many': 1.0, 'designed': 1.0, 'pails': 1.0, 'any': 1.0, 'trash': 4.0, 'is': 3.0, 'good': 1.0, 'which': 1.0, 'a': 3.0, 'go': 1.0, 'hardly': 2.0, 's': 1.0, 'genie': 2.0, 'champ': 1.0, 'after': 1.0, 've': 2.0, 'absolutely': 1.0, 'out': 1.0, 'product': 1.0, 'products': 1.0, 'child': 1.0, 'competing': 1.0, 'put': 1.0, 'much': 1.0, 'this': 3.0, 'purchased': 2.0, 'than': 1.0, 'contained': 1.0, 'these': 1.0, 'shut': 1.0, 'for': 2.0, 'supposed': 1.0, 'where': 1.0, 'of': 3.0, 'doing': 1.0, 'the': 13.0, 'bags': 1.0, 'as': 1.0, 'diaper': 7.0, 'our': 2.0, 'item': 1.0, 'have': 2.0, 'smell': 3.0, 'all': 1.0, 'cans': 1.0, 'other': 1.0, 'kitchen': 1.0, 'various': 1.0, 'investing': 1.0, 'research': 1.0, 'bag': 2.0, 'read': 2.0, 'construction': 1.0, 'friends': 1.0, 'and': 3.0, 'know': 1.0, 'sold': 1.0, 'comparing': 1.0, 'concluded': 1.0, 'we': 6.0, 'reviews': 2.0, 'recommend': 1.0, 'dirty': 1.0, 'websites': 1.0, 'but': 1.0, 'can': 1.0, 'really': 1.0, 'also': 1.0, 'us': 1.0, 'was': 1.0, 'to': 5.0, 'pail': 1.0, 'itself': 1.0, 'in': 2.0, 'bonus': 1.0, 'be': 2.0, 'slides': 1.0, 'there': 1.0, 'compartment': 2.0, 'you': 5.0, 'what': 1.0, 'seal': 1.0, 'when': 1.0, 'open': 1.0, 'close': 1.0, 'opening': 1.0, 'bottom': 1.0, 'inside': 1.0, 'allowing': 1.0, 'throw': 1.0, 'first': 1.0, 'are': 1.0, 'diapers': 1.0, 'even': 1.0, 'away': 1.0, 'that': 2.0, 'because': 1.0, 'two': 1.0, 'stage': 1.0, 'it': 2.0, 'purchase': 1.0}
Word element => {'few': 1.0, 'to': 1.0, 'recommended': 1.0, 'already': 1.0, 'who': 1.0, 'far': 1.0, 'so': 1.0, 'for': 1.0, 'a': 1.0, 'well': 2.0, 'the': 2.0, 'and': 2.0, 'any': 1.0, 'bags': 1.0, 'design': 1.0, '13g': 1.0, 'trash': 1.0, 'us': 2.0, 'i': 1.0, 'uses': 1.0, 'babies': 1.0, 'as': 1.0, 'very': 1.0, 'from': 1.0, 'it': 5.0, 'friends': 1.0, 'r': 1.0, 'bought': 1.0, 'fact': 1.0, 'that': 1.0, 'regular': 1.0, 'has': 1.0, 'been': 1.0, 'like': 2.0, 'working': 1.0}
Word element => {'how': 1.0, 'yourself': 1.0, 'out': 1.0, 'more': 1.0, 'bit': 1.0, 'little': 1.0, 'taller': 1.0, 'be': 3.0, 'could': 1.0, 'off': 1.0, 'knocked': 1.0, 'designed': 1.0, 'again': 1.0, 'every': 1.0, 'outside': 1.0, 'run': 1.0, 'having': 1.0, 'smelling': 1.0, 'better': 1.0, 'even': 1.0, 'litter': 1.0, 'with': 2.0, 'filled': 1.0, 'plastic': 1.0, 'also': 1.0, 'very': 1.0, 'prevent': 1.0, 'wall': 1.0, 'lean': 1.0, 'or': 2.0, 'need': 2.0, 'before': 1.0, 'opinion': 1.0, 'another': 1.0, 'gets': 1.0, 'inside': 1.0, 'here': 1.0, 'than': 2.0, 'flexible': 1.0, 'redistribute': 1.0, 'cheaper': 1.0, 'bought': 1.0, 'product': 2.0, 'building': 1.0, 'for': 3.0, 'prefer': 1.0, 'seconds': 1.0, 'as': 1.0, 'heavy': 2.0, 'diaper': 4.0, 'bags': 2.0, 'else': 1.0, 'wife': 1.0, 'day': 2.0, 'somewhat': 1.0, 'since': 3.0, 'makes': 2.0, 'keep': 1.0, 'regular': 1.0, 'in': 3.0, 'both': 1.0, 'diapers': 1.0, 'are': 2.0, 'me': 2.0, 'my': 3.0, 'you': 2.0, 'starts': 1.0, 'well': 1.0, 'i': 6.0, 'near': 1.0, 'on': 2.0, 'do': 1.0, 'changing': 2.0, 'put': 3.0, 'and': 7.0, 's': 1.0, 'reviews': 1.0, 'we': 3.0, 'a': 9.0, 'glad': 1.0, 'might': 2.0, 'experience': 1.0, 'hesitantly': 1.0, 'check': 1.0, 'big': 1.0, 'one': 3.0, 'ones': 1.0, 'something': 1.0, 'prevents': 1.0, 'use': 3.0, 'which': 1.0, 'based': 1.0, 'star': 1.0, 'right': 1.0, '30': 1.0, 'dirty': 1.0, 'full': 2.0, 'trash': 3.0, 'is': 3.0, 'the': 15.0, 'of': 6.0, 'same': 1.0, 'month': 1.0, 'it': 13.0, 'does': 1.0, 'kitchen': 2.0, 'nor': 1.0, 'works': 1.0, 'remove': 1.0, 'from': 5.0, 'tap': 1.0, 'opted': 1.0, 'ready': 1.0, 'after': 1.0, 'fans': 1.0, 'lid': 2.0, 'tips': 1.0, 'personal': 1.0, 'but': 1.0, 'have': 3.0, 'been': 1.0, 'that': 2.0, 'target': 1.0, 'next': 1.0, 'can': 1.0, 'so': 1.0, 'solid': 1.0, 'far': 1.0, 'had': 2.0, '13': 1.0, 'no': 1.0, 'issues': 1.0, 'help': 1.0, 'smell': 2.0, 'emitting': 1.0, 'bag': 5.0, 'difficult': 2.0, 'to': 9.0, 'all': 1.0, 'surprised': 1.0, 'keeps': 2.0, 'idea': 1.0, 'any': 1.0, 'really': 1.0, 'change': 1.0, 'up': 4.0, 'pleased': 1.0, 'takes': 1.0, 'over': 1.0, 'open': 2.0, 'uses': 1.0, 'new': 2.0, 'couple': 1.0, 'preference': 1.0, 'usually': 1.0, 'accept': 1.0, 'great': 2.0, 'sort': 1.0, 'what': 1.0, 'cat': 1.0, 'gallon': 1.0, 'when': 2.0, 'tipping': 1.0, 'times': 1.0, 'getting': 1.0, 'champ': 3.0, 'stuck': 1.0, 'top': 2.0, 'this': 6.0, 'few': 1.0}
Word element => {'claus': 1.0, 'santa': 1.0, 'hobo': 1.0, 'kind': 1.0, 'like': 1.0, 'your': 1.0, 'outside': 1.0, 'want': 1.0, 'really': 1.0, 'more': 1.0, 'many': 1.0, 'how': 1.0, 'know': 1.0, 'don': 1.0, 'noted': 1.0, 'reviewer': 1.0, 'another': 1.0, 'said': 1.0, 'capacity': 1.0, 'before': 1.0, 'long': 1.0, 'fill': 1.0, 'when': 1.0, 'you': 10.0, 'd': 1.0, 'someone': 1.0, 'air': 1.0, 'in': 4.0, 'regular': 1.0, 'leaving': 1.0, 'filling': 1.0, 'odor': 1.0, 'prevents': 1.0, 'because': 1.0, 'that': 6.0, 'nasty': 2.0, 'back': 1.0, 'always': 1.0, 'somewhat': 1.0, 'position': 1.0, 'closed': 1.0, 'and': 2.0, 'with': 2.0, 'this': 3.0, 'lug': 1.0, 'it': 9.0, 'to': 7.0, 'typically': 1.0, 'trash': 2.0, 'tip': 1.0, 'get': 1.0, 'away': 1.0, 'instead': 1.0, 'ground': 1.0, 'flip': 1.0, 'backward': 1.0, 'have': 1.0, 'crucial': 1.0, 'll': 1.0, 'pictured': 1.0, 'a': 4.0, 's': 3.0, 'face': 1.0, 'literally': 1.0, 'greet': 1.0, 'low': 1.0, 'from': 1.0, 'open': 3.0, 'heavy': 1.0, 'as': 3.0, 'leave': 2.0, 'bags': 2.0, 'diaper': 2.0, 'will': 2.0, 'champ': 3.0, 'every': 2.0, 'proprietary': 1.0, 'if': 1.0, 'pushed': 1.0, 'seriously': 1.0, 'time': 1.0, 'uses': 1.0, 'makes': 1.0, 'compartment': 2.0, 'thing': 2.0, 'until': 2.0, 'throw': 1.0, 'great': 1.0, 'actually': 1.0, 'expensive': 1.0, 'up': 3.0, 'change': 1.0, 'so': 3.0, 'can': 3.0, 'second': 1.0, 'review': 1.0, 'positive': 1.0, 'the': 17.0, 'of': 4.0, 'at': 1.0, 'handle': 2.0, 'is': 3.0, 'kitchen': 2.0, 'folks': 1.0, 'doesn': 1.0, 't': 2.0, 'require': 1.0, 'purchase': 1.0, 'bag': 4.0, 'refills': 1.0, 'use': 1.0, 'diapers': 1.0, 'odorless': 1.0, 'first': 1.0, 'are': 1.0, 'bothered': 1.0, 'looks': 1.0, 'downsides': 1.0, 'me': 1.0, 'i': 1.0, 'pointed': 1.0, 'out': 1.0, 'end': 1.0, 'put': 1.0, 'wasting': 1.0, 'never': 1.0, 'some': 2.0, 'space': 1.0}
Word element => {'helpful': 1.0, 'shopping': 1.0, 'wishes': 1.0, 'from': 1.0, 'said': 1.0, 'sell': 1.0, 'tries': 1.0, 'everyone': 1.0, 'accessories': 2.0, 'buy': 1.0, 'having': 1.0, 'basket': 1.0, 'm': 1.0, 's': 1.0, 'fits': 1.0, 'knees': 1.0, 'high': 1.0, 'makes': 1.0, 'taken': 1.0, 'don': 1.0, 'cans': 1.0, 'these': 1.0, 'best': 1.0, 'container': 1.0, 'improperly': 1.0, 'velcro': 1.0, 'tight': 2.0, 'sealed': 3.0, 'leaking': 1.0, 'poop': 1.0, 'no': 2.0, 'wipes': 1.0, 'correctly': 1.0, 'dirty': 4.0, 'review': 1.0, 'opened': 1.0, 'disposing': 1.0, 'closing': 1.0, 'really': 1.0, 'first': 1.0, 'important': 1.0, 'issue': 1.0, 'much': 2.0, 'fact': 1.0, 'read': 1.0, 'reviews': 1.0, 'concerned': 1.0, 'would': 1.0, 'more': 1.0, 'alot': 1.0, 'll': 1.0, 'shake': 1.0, 'changing': 1.0, 'resolved': 1.0, 'easily': 2.0, 'full': 1.0, 'stack': 1.0, 'adding': 1.0, 'works': 1.0, 'apartment': 1.0, 'by': 3.0, 'blessing': 1.0, 'because': 2.0, 'had': 1.0, 'reasons': 3.0, 'gets': 1.0, 'better': 1.0, 'ideally': 1.0, 'fill': 1.0, 'trashbag': 1.0, 'them': 1.0, 'regular': 1.0, 'second': 1.0, 'noted': 3.0, 'or': 3.0, 'technically': 1.0, 'hold': 1.0, '4': 1.0, 'thing': 1.0, 'bit': 2.0, 'quite': 2.0, 'seriously': 1.0, 'say': 3.0, 'based': 1.0, 'in': 13.0, 'laying': 1.0, 'any': 4.0, 'idea': 1.0, 'sure': 2.0, 'highly': 1.0, 'as': 9.0, 'explain': 1.0, 'bags': 4.0, 'special': 5.0, 'need': 1.0, 'observed': 1.0, 'feature': 1.0, 'until': 2.0, 'neither': 1.0, 'off': 2.0, '1': 1.0, 'so': 2.0, 'answer': 1.0, 'will': 6.0, 'beginning': 1.0, 'could': 1.0, 'life': 1.0, 'questions': 1.0, 'below': 2.0, 'properly': 1.0, 'lid': 5.0, 'deal': 1.0, 'part': 1.0, 'baby': 4.0, 'make': 1.0, 'she': 1.0, 'without': 1.0, 'left': 2.0, 'work': 1.0, 'opening': 2.0, 'but': 4.0, 'diapers': 10.0, 'rotating': 2.0, 'get': 2.0, 'however': 2.0, 'george': 1.0, 'throwing': 1.0, 'among': 1.0, 'do': 2.0, 'there': 6.0, 'giving': 1.0, 'hang': 1.0, 'others': 1.0, 'imagine': 1.0, 'expose': 2.0, 'some': 4.0, 'well': 2.0, 'recommend': 1.0, 'were': 3.0, 'was': 1.0, 'try': 1.0, '5': 2.0, 'one': 7.0, 'this': 13.0, '2nd': 1.0, 'its': 9.0, 'probably': 3.0, 'before': 4.0, 'hope': 1.0, 'toss': 4.0, 'needed': 1.0, 'didn': 1.0, 'placed': 1.0, 'that': 12.0, 'purchase': 1.0, 'for': 6.0, 'wife': 1.0, 'just': 3.0, 'and': 18.0, 'use': 2.0, 'shop': 1.0, 'fancy': 1.0, 'out': 7.0, 'photo': 1.0, 'true': 1.0, 'know': 1.0, 'nasty': 1.0, 'regularly': 1.0, 'should': 2.0, 'trash': 12.0, 'guests': 1.0, 'corner': 2.0, 'can': 10.0, 'is': 18.0, 'tossed': 2.0, 'at': 3.0, 'notice': 2.0, 'handle': 1.0, 'dispensing': 1.0, 'way': 1.0, 'all': 2.0, 'allowed': 1.0, 'of': 16.0, 'even': 1.0, 'ultimately': 1.0, 'to': 23.0, 'pulled': 1.0, 'our': 6.0, 'how': 3.0, 'found': 2.0, 'have': 10.0, 'different': 1.0, 'not': 8.0, 'those': 3.0, 'man': 1.0, 'you': 18.0, 'nature': 1.0, 'things': 3.0, 'when': 8.0, 'seal': 1.0, 'gallon': 2.0, 'might': 1.0, 'above': 1.0, 't': 2.0, 'we': 12.0, 'inside': 4.0, 'take': 1.0, 'only': 2.0, 'then': 3.0, 'born': 1.0, 'certainly': 1.0, 'great': 1.0, 'if': 3.0, 'definite': 1.0, 'with': 4.0, 'the': 43.0, 'living': 1.0, 'loaded': 1.0, 'wonderful': 2.0, 'keep': 1.0, 'other': 1.0, 'near': 1.0, 'items': 3.0, 'on': 5.0, 'are': 1.0, 'my': 2.0, 'room': 3.0, 'around': 2.0, 'each': 2.0, 'revealed': 1.0, 'must': 3.0, 'change': 1.0, 'diaper': 13.0, 'up': 2.0, 'done': 2.0, 'nope': 1.0, 'forget': 1.0, 'space': 1.0, 'about': 1.0, 'coarse': 1.0, 'apart': 1.0, 'leave': 1.0, '2': 1.0, 'smell': 4.0, 'does': 4.0, 'prior': 1.0, 'rim': 2.0, 'kitchen': 1.0, 'sense': 1.0, 'lift': 1.0, 'us': 1.0, 'little': 4.0, 'her': 1.0, 'white': 3.0, 'several': 1.0, 'position': 1.0, 'blue': 5.0, 'underneath': 1.0, 'many': 4.0, 'where': 2.0, 'lever': 3.0, 'common': 1.0, 'hook': 1.0, 'standard': 1.0, 'hide': 1.0, 'time': 2.0, 'top': 5.0, 'allow': 2.0, 'lived': 1.0, 'starting': 1.0, 'slot': 7.0, 'into': 3.0, 'brilliant': 1.0, 'closed': 3.0, 'which': 4.0, 'again': 1.0, 'products': 2.0, 'meant': 1.0, 'close': 1.0, 'rotate': 1.0, 'acts': 1.0, 'world': 2.0, 'appears': 1.0, 'round': 1.0, 'hate': 1.0, 'area': 1.0, 'lifted': 1.0, 'noticed': 1.0, 'wanted': 1.0, 'rotated': 1.0, 'summary': 1.0, 'bag': 5.0, 'a': 23.0, 'reveal': 1.0, 'think': 1.0, 'open': 2.0, 'spend': 1.0, 'it': 12.0, 'be': 7.0, 'look': 1.0, 'failed': 1.0, 'built': 1.0, 'down': 1.0, 'back': 1.0, 'downward': 1.0, 'thus': 1.0, 'releasing': 1.0, 'note': 2.0, 'away': 2.0, '75': 1.0, 'avoid': 1.0, 'find': 1.0, 'why': 1.0, 'very': 2.0, 'cause': 1.0, 'i': 12.0, 'simple': 2.0, 'has': 1.0, 'yet': 1.0, 'simpler': 1.0, 'too': 2.0, '3': 1.0, 'extra': 1.0, 'set': 1.0, 'money': 1.0, 'ill': 1.0, 'getting': 1.0, '13': 2.0}
Word element => {'in': 1.0, 'bag': 1.0, 'there': 1.0, 'trash': 1.0, 'regular': 1.0, 'at': 1.0, 'i': 3.0, 'buy': 1.0, 'it': 1.0, 'done': 1.0, 'and': 2.0, 'very': 1.0, 'found': 1.0, 'disposal': 1.0, 'bags': 1.0, 'great': 1.0, 'diaper': 1.0, 'use': 1.0, 'easy': 1.0, 'not': 1.0, 'just': 1.0, 'm': 1.0, 'pop': 1.0, 'odor': 1.0, 'to': 3.0, 'blocking': 1.0, 'have': 1.0, 'nice': 1.0, 'special': 1.0, 'a': 1.0}
Word element => {'headache': 1.0, 'save': 1.0, 'product': 1.0, 'than': 1.0, 'smell': 1.0, 'extra': 1.0, 'yourself': 1.0, 'as': 1.0, 'worse': 1.0, 'buy': 2.0, 'that': 1.0, 'can': 1.0, 'discs': 1.0, 'dirty': 1.0, 'freshing': 1.0, 'do': 1.0, 'and': 1.0, 'ground': 1.0, 'small': 1.0, 'the': 5.0, 'off': 1.0, 'too': 2.0, 'junk': 1.0, 'thing': 1.0, 'low': 1.0, 'it': 2.0, 'this': 2.0, 'if': 1.0, 'there': 1.0, 'is': 1.0, 'many': 1.0, 'you': 1.0, 's': 1.0, 'not': 1.0, 'just': 1.0, 'an': 1.0, 'stinks': 1.0, 'diapers': 2.0, 'handle': 1.0, 'one': 1.0, 'in': 1.0, 'comes': 1.0, 'its': 1.0, 'to': 1.0}
Word element => {'better': 1.0, 'be': 1.0, 'believe': 1.0, 'has': 1.0, 'them': 1.0, 'two': 1.0, 'change': 1.0, 'each': 1.0, 'end': 1.0, 'closed': 1.0, 'tying': 1.0, 'public': 1.0, 'disposal': 1.0, 'for': 1.0, 'box': 1.0, '100': 1.0, 'buying': 1.0, 'ct': 1.0, 'landfill': 1.0, 'sending': 1.0, 'finally': 1.0, 'we': 1.0, '30': 1.0, 'effegy': 1.0, 'nukes': 1.0, 'test': 1.0, 'goverment': 1.0, 'airwick': 1.0, 'or': 3.0, 'glade': 1.0, 'scent': 1.0, 'category': 1.0, 'finding': 1.0, 'luck': 1.0, 'settled': 1.0, 'waste': 1.0, 'human': 1.0, 'whether': 1.0, 'rotting': 1.0, 'came': 1.0, 'by': 1.0, 'home': 1.0, 'on': 4.0, 'prevent': 1.0, 'outlined': 1.0, 'go': 1.0, 't': 1.0, 's': 1.0, 'trash': 2.0, 'freshener': 2.0, 'more': 1.0, 'a': 6.0, 'consistant': 1.0, 'pail': 1.0, 'to': 8.0, 'your': 1.0, 'any': 1.0, 'least': 1.0, 'simply': 1.0, 'product': 1.0, 'taking': 1.0, 'odor': 3.0, 'down': 1.0, 'before': 1.0, 'perhaps': 1.0, 'out': 1.0, 'if': 1.0, 'every': 3.0, 'in': 12.0, 'ask': 1.0, 'constantly': 1.0, 'can': 1.0, 'so': 1.0, 'dilligent': 1.0, 'epic': 1.0, 'air': 2.0, 'garbage': 1.0, 'flaw': 1.0, 'tossing': 1.0, 'people': 1.0, 'have': 1.0, 'fitting': 1.0, 'detail': 1.0, 'coordinated': 1.0, 'of': 4.0, 'the': 8.0, 'anything': 1.0, 'burying': 1.0, 'without': 1.0, 'review': 1.0, 'single': 1.0, 'underground': 1.0, '1': 1.0, 'regular': 1.0, 'eminating': 1.0, 'failthis': 1.0, 'me': 2.0, 'not': 1.0, 'and': 4.0, 'burning': 1.0, 'already': 1.0, 'it': 8.0, 'this': 6.0, 'tipping': 1.0, 'greater': 1.0, 'three': 1.0, 'into': 1.0, 'avoid': 1.0, 'result': 1.0, 'that': 3.0, 'put': 1.0, 'colorfully': 1.0, 'changing': 1.0, 'feet': 1.0, 'i': 3.0, 'close': 1.0, 'debating': 1.0, 'thing': 4.0, 'doesn': 1.0, 'bag': 2.0, 'day': 1.0, 'somewhat': 1.0, 'there': 1.0, 'purpose': 1.0, 'from': 1.0, 'top': 1.0, 'bags': 1.0, 'as': 3.0, 'diaper': 4.0, 'heavy': 1.0, 'good': 1.0, 'which': 2.0, 'care': 1.0, 'like': 1.0, 'will': 1.0, 'means': 1.0, 'you': 4.0, 'after': 1.0, 'unless': 1.0, 'are': 2.0, 'break': 1.0, 'extremely': 1.0, 'moderately': 1.0, 'stench': 2.0, 'is': 3.0, 'at': 2.0, 'over': 1.0, 'open': 1.0, 'time': 1.0, 'new': 1.0, 'than': 2.0, 'way': 1.0, 'contained': 1.0, 'dispenses': 1.0, 'cans': 1.0, 'an': 2.0}
Word element => {'second': 1.0, 'will': 1.0, 'there': 1.0, 'diapers': 1.0, 'smell': 1.0, 'ever': 1.0, 'bought': 1.0, 'the': 1.0, 'my': 2.0, 'and': 1.0, 'purchasing': 1.0, 'in': 1.0, 'for': 2.0, 'be': 1.0, 'first': 1.0, 'love': 1.0, 'it': 1.0, 'one': 1.0, 'i': 1.0, 'don': 1.0, 'this': 1.0, 't': 1.0}
Word element => {'again': 1.0, 'd': 1.0, 'week': 1.0, 'odors': 1.0, 'in': 1.0, 'on': 1.0, 'lid': 1.0, 'litter': 1.0, 'buy': 1.0, 'extra': 1.0, 'an': 1.0, 'had': 1.0, 'proper': 1.0, 'began': 1.0, 'his': 1.0, 'use': 2.0, 'for': 1.0, 'dude': 1.0, 'little': 1.0, 'daily': 1.0, 'configured': 1.0, 'big': 1.0, 'nice': 1.0, 'upstairs': 2.0, 'only': 1.0, 'pack': 1.0, 'empty': 2.0, 'emptying': 1.0, 'odor': 1.0, 'once': 2.0, 'of': 3.0, 'trash': 1.0, 'is': 1.0, 'those': 1.0, 'at': 1.0, 'let': 1.0, 'no': 1.0, 'lift': 1.0, 'thing': 1.0, 'convenience': 1.0, 'out': 1.0, 'doesn': 1.0, 'but': 1.0, 'downstairs': 2.0, 'bag': 2.0, 'escape': 1.0, 'got': 1.0, 'wouldn': 1.0, 'scoop': 1.0, 'it': 5.0, 'we': 5.0, 'a': 3.0, 't': 2.0, 'the': 6.0, 'diaper': 1.0, 'heavy': 1.0, 'these': 2.0, 'drop': 1.0, 'allow': 1.0, 'standard': 1.0, 'having': 1.0, 'sized': 1.0, 'our': 1.0, 'as': 1.0, 'to': 4.0, 'all': 1.0, 'any': 1.0, 'just': 1.0, 'bombs': 1.0, 'by': 2.0, 'two': 1.0, 'prior': 1.0, 'i': 2.0, 'get': 2.0, 'play': 1.0, 'too': 2.0, 'and': 5.0, 'improvised': 1.0, 'this': 2.0, 'full': 1.0, 'bought': 1.0, 'one': 2.0, 'that': 1.0, 'box': 1.0, 'next': 1.0, 'changing': 4.0, 'using': 1.0, 'table': 4.0}
Word element => {'different': 1.0, 'something': 1.0, 'buy': 1.0, 'mistake': 1.0, 'make': 1.0, 'return': 1.0, 'wish': 1.0, 'thing': 1.0, 'bag': 1.0, 'retrieve': 1.0, 'so': 1.0, 'smaller': 1.0, 'simply': 1.0, 'time': 1.0, 'new': 1.0, 'version': 1.0, 'latest': 1.0, 'consider': 1.0, 'vinegar': 1.0, 'disappointment': 2.0, 'even': 1.0, 'didn': 1.0, 'could': 1.0, 'alternative': 1.0, 'second': 1.0, 'what': 2.0, 'when': 2.0, 'drop': 2.0, 'smells': 4.0, 'champ': 4.0, 'won': 1.0, 't': 4.0, 'small': 1.0, 'a': 4.0, 'of': 2.0, 'the': 16.0, 'others': 1.0, 'washings': 1.0, 'in': 4.0, 'that': 1.0, 'has': 1.0, 'next': 2.0, 'our': 3.0, 'to': 6.0, 'diaper': 6.0, 'as': 1.0, '2010': 1.0, 'birth': 1.0, 'approached': 1.0, 'bought': 2.0, 'mechanism': 1.0, 'entire': 2.0, '2005': 1.0, 'was': 1.0, 'after': 2.0, 'utter': 1.0, 'couple': 1.0, 'is': 3.0, 'at': 1.0, 'born': 1.0, 'same': 1.0, 'opportunity': 1.0, 'diapers': 2.0, 'first': 1.0, 'it': 8.0, 'loved': 1.0, 'we': 6.0, 'then': 1.0, 'son': 2.0, 'turn': 2.0, 'repeated': 1.0, 'every': 3.0, 'still': 1.0, 'be': 1.0, 'just': 1.0, 'toward': 1.0, 'they': 1.0, 'you': 1.0, 'push': 1.0, 'funky': 1.0, 'top': 2.0, 'recommended': 1.0, 'and': 2.0, 'up': 1.0, 'change': 2.0, 'open': 1.0, 'over': 2.0, 'daily': 1.0, 'or': 2.0, 'yet': 1.0, 'an': 2.0, 'other': 1.0, 'day': 1.0, 'odor': 1.0, 'putting': 1.0, 'i': 3.0, 'down': 1.0, 'inside': 1.0, 'room': 1.0, 'made': 1.0, 'eliminate': 1.0, 'with': 1.0, 'don': 1.0, 'isn': 1.0, 'this': 1.0, 'supposed': 1.0, 'such': 1.0, 'for': 1.0, 'bleach': 1.0, 'nursery': 1.0, 'tips': 2.0}
Word element => {'insert': 1.0, 'replacing': 1.0, 'don': 2.0, 'comments': 1.0, 'baby': 2.0, 'about': 1.0, 'no': 2.0, 'lift': 1.0, 'bleach': 1.0, 'soak': 1.0, 'item': 2.0, 'will': 1.0, 'a': 6.0, 'hour': 1.0, 'go': 1.0, 'we': 3.0, 'replacement': 1.0, 't': 5.0, 'ago': 1.0, 's': 1.0, 'away': 1.0, 'cleaned': 1.0, 'initially': 1.0, 'free': 2.0, 'want': 2.0, 'potty': 1.0, 'time': 1.0, 'liked': 1.0, 'purchased': 1.0, '2011': 1.0, 'me': 1.0, 'my': 2.0, 'believe': 1.0, 'defective': 1.0, 'on': 1.0, 'today': 1.0, '3': 1.0, 'your': 1.0, 'won': 1.0, 'august': 1.0, 'sites': 1.0, 'stinky': 1.0, 'in': 2.0, 'the': 10.0, 'of': 3.0, 'unit': 2.0, 'with': 1.0, 'it': 1.0, 'this': 1.0, 'buyer': 1.0, 'plastic': 1.0, 'gasket': 4.0, 'but': 2.0, 'inside': 1.0, 'diaper': 1.0, 'as': 1.0, 'to': 6.0, 'really': 1.0, 'every': 1.0, 'handle': 1.0, 'is': 1.0, 'all': 1.0, 'other': 1.0, 'them': 1.0, 'target': 1.0, 'smell': 2.0, '10': 2.0, 'for': 1.0, 'because': 1.0, 'i': 3.0, 'otherwise': 1.0, '1': 2.0, 'provide': 1.0, 'didn': 1.0, 'so': 2.0, 'can': 1.0, 'receipt': 2.0, 'uh': 1.0, 'keep': 1.0, 'from': 2.0, 'regularly': 1.0, 'part': 1.0, 'they': 1.0, 'replace': 2.0, 'charge': 1.0, 'thanks': 1.0, 'you': 1.0, 'trend': 1.0, 'pay': 1.0, 'price': 1.0, 'beware': 1.0, 'buy': 1.0, 'call': 1.0, 'soon': 1.0, 'after': 1.0, 'months': 1.0, 'get': 1.0, 'room': 1.0, 'like': 1.0, 'port': 1.0}
Word element => {'diapers': 1.0, 'lot': 1.0, 'bin': 1.0, 'out': 1.0, 'pull': 1.0, 'no': 1.0, 'one': 1.0, 'with': 2.0, 'problem': 1.0, 'that': 1.0, 'take': 1.0, 'hand': 1.0, 'which': 1.0, 'inside': 1.0, 'opening': 1.0, 'room': 1.0, 'has': 1.0, 'open': 2.0, 'dirty': 1.0, 'enough': 1.0, 'house': 1.0, 'smell': 1.0, 'an': 1.0, 'discarting': 1.0, 'champ': 2.0, 'freshener': 1.0, 'will': 2.0, 'this': 1.0, 'it': 4.0, 'of': 2.0, 'shower': 1.0, 'only': 2.0, 'care': 1.0, 'other': 1.0, 'saves': 1.0, 'arms': 1.0, 'action': 1.0, 'plastic': 1.0, 'i': 6.0, 'purchased': 1.0, 'use': 1.0, 'environment': 1.0, 'super': 1.0, 've': 1.0, 'diaper': 4.0, 'the': 7.0, 'a': 3.0, 't': 1.0, 'expensive': 1.0, 'for': 1.0, 'love': 1.0, 'friends': 2.0, 'baby': 3.0, 'lid': 1.0, 'my': 1.0, 'another': 1.0, 'don': 1.0, 'but': 1.0, 'change': 1.0, 'can': 2.0, 'money': 1.0, 'after': 1.0, 'saving': 1.0, 'if': 1.0, 'small': 1.0, 'have': 2.0, 'easy': 1.0, 'get': 1.0, 'and': 4.0, 'too': 1.0, 'when': 1.0, 'seen': 1.0, 'you': 3.0, 'air': 1.0, 'in': 2.0, 'regular': 1.0, 'holds': 1.0, 'more': 1.0, 'is': 1.0, 'say': 1.0, 'trash': 2.0, 'stick': 1.0, 'bags': 2.0, 'your': 1.0, 'on': 2.0, 'need': 1.0, 'doors': 1.0, 'to': 2.0, 'cartridges': 1.0}
Word element => {'product': 1.0, 'grandsons': 1.0, 'sitting': 1.0, 'dirty': 1.0, 'odor': 1.0, 'stops': 1.0, 'built': 1.0, 'special': 1.0, 's': 1.0, 'a': 5.0, 'that': 5.0, 'his': 1.0, 'regular': 1.0, 'care': 1.0, 'making': 1.0, 'view': 1.0, 'takes': 1.0, 'next': 1.0, 'has': 1.0, 'boy': 1.0, 'claims': 1.0, 'little': 1.0, 'specifically': 1.0, 'changing': 1.0, 'much': 2.0, 'do': 1.0, 'way': 1.0, 'than': 1.0, 'knows': 1.0, 'wanted': 1.0, 'and': 3.0, 'it': 4.0, 'she': 3.0, 'this': 3.0, 'my': 4.0, 'of': 3.0, 'the': 11.0, 'more': 2.0, 'is': 10.0, 'trash': 1.0, 'say': 1.0, 'nanna': 1.0, 'table': 1.0, 'comment': 1.0, 'first': 1.0, 'diapers': 1.0, 'even': 1.0, 'champ': 1.0, 'home': 2.0, 'made': 1.0, 'but': 1.0, 'so': 1.0, 'can': 2.0, 'don': 2.0, 'awesome': 1.0, 'about': 1.0, 'thing': 1.0, 'no': 1.0, 'nanny': 1.0, 'her': 1.0, 'i': 6.0, 'in': 3.0, 'm': 1.0, 'daughter': 1.0, 'bigger': 1.0, 'think': 1.0, 'great': 1.0, 'big': 1.0, 'you': 1.0, 'again': 1.0, 'have': 1.0, 'pail': 4.0, 'to': 3.0, 'hand': 1.0, 'buy': 1.0, 'know': 1.0, 'grandson': 1.0, 'diaper': 5.0, 'bags': 2.0, 'just': 1.0, 'economical': 1.0, 'update': 1.0, 'now': 1.0, 'attached': 1.0, 'for': 2.0, '10': 1.0, 'months': 1.0, 'fact': 1.0, 'old': 1.0, 'only': 1.0, 'amazing': 1.0, 't': 2.0, 'cost': 1.0, 'item': 1.0, 'besides': 1.0, 'vs': 1.0, 'lot': 1.0, 'ones': 1.0, 'make': 1.0, 'smell': 2.0, 'an': 2.0, 'factor': 3.0, 'honestly': 1.0, 'there': 1.0}
Word element => {'you': 2.0, 'wherever': 1.0, 'get': 1.0, 'buy': 1.0, 'this': 1.0, 'duty': 1.0, 'heavy': 1.0, 'well': 1.0, 'and': 2.0, 'plastic': 2.0, 'cut': 1.0, 'why': 1.0, 'mind': 1.0, 'only': 1.0, 'true': 1.0, 'will': 1.0, 'seems': 1.0, 'it': 2.0, 'whole': 1.0, 'thing': 1.0, 'about': 1.0, 'bad': 1.0, 'is': 2.0, 'comes': 1.0, 'say': 1.0, 'of': 1.0, 'almost': 1.0, 'people': 2.0, 'want': 1.0, 'can': 1.0, 'change': 1.0, 'but': 2.0, 'made': 1.0, 'less': 1.0, 'champ': 2.0, 'negative': 1.0, 'be': 3.0, 'they': 1.0, 'reviews': 1.0, 'big': 1.0, 'i': 3.0, 'happier': 1.0, 'things': 1.0, 'optimistic': 1.0, 'tried': 1.0, 'old': 4.0, 'after': 1.0, 'don': 2.0, 'up': 1.0, 'the': 8.0, 'a': 2.0, 'go': 1.0, 't': 2.0, 'diaper': 2.0, 'still': 1.0, 'all': 1.0, 'to': 6.0, 'now': 1.0, 'flimsy': 1.0, 'lot': 2.0, 'who': 1.0, 'have': 3.0, 'used': 1.0, 'style': 1.0, 'ok': 1.0, 'never': 1.0, 'appreciate': 1.0, 'cost': 1.0, 'would': 2.0, 'new': 3.0, 'bought': 1.0, 'one': 4.0, 'product': 3.0, 'for': 1.0, 'find': 1.0, 'than': 1.0, 'because': 1.0, 'just': 1.0, 'reading': 1.0, 'manufacturer': 1.0, 'fked': 1.0, 'so': 1.0, 'time': 1.0, 'into': 1.0, 'that': 1.0, 'comparison': 1.0, 'details': 1.0, 'my': 2.0}
Word element => {'essentials': 1.0, 'gear': 1.0, 'com': 1.0, 'allmomsareperfect': 1.0, 'visit': 1.0, 'shopping': 1.0, 'stroller': 1.0, 'or': 1.0, 'guide': 2.0, 'day': 1.0, 'delivery': 1.0, 'what': 1.0, 'suggestions': 1.0, 'baby': 2.0, 'want': 1.0, 'gets': 1.0, 'until': 1.0, 'nursery': 1.0, 'bunch': 1.0, 'two': 1.0, 'i': 7.0, 'hospital': 1.0, 'into': 2.0, 'that': 4.0, 'discarded': 1.0, 'son': 1.0, 'close': 1.0, 'compartment': 3.0, 'you': 4.0, 'full': 1.0, 'dirty': 2.0, 'discovered': 1.0, 'advice': 1.0, 's': 1.0, 'we': 1.0, 'one': 3.0, 'registry': 1.0, 'bought': 1.0, 'for': 1.0, 'disposal': 4.0, 'open': 2.0, 'year': 1.0, 'diaper': 10.0, 'website': 1.0, 'my': 2.0, 'so': 2.0, 'a': 6.0, 'small': 2.0, 'dispose': 1.0, 'have': 3.0, 'discard': 1.0, 'are': 1.0, 'bad': 1.0, 'system': 4.0, 'after': 1.0, 'this': 5.0, 'allows': 1.0, 'flaws': 1.0, 'lost': 1.0, 'sick': 1.0, 'drop': 1.0, 've': 3.0, 'flaps': 1.0, 'and': 3.0, 'got': 1.0, 'there': 1.0, 'even': 1.0, 'instead': 1.0, 'trash': 1.0, 'look': 1.0, 'is': 3.0, 'his': 1.0, 'around': 1.0, 'up': 2.0, 'the': 16.0, 'of': 4.0, 'in': 2.0, 'bring': 1.0, 'having': 1.0, 'find': 1.0, 'had': 1.0, 'through': 1.0, 'more': 1.0, 'door': 1.0, 'just': 2.0, 'stuff': 1.0, 'on': 3.0, 'think': 2.0, 'time': 1.0, 'main': 1.0, 'keep': 2.0, 'finds': 1.0, 'hand': 1.0, 'design': 1.0, 'under': 1.0, 'month': 1.0, 'pail': 3.0, 'to': 11.0, 'pretty': 1.0, 'if': 1.0, 'every': 1.0, 'really': 1.0, 'immediately': 1.0, 'second': 1.0, 'problem': 1.0, 'rid': 1.0, '15': 1.0, 'toys': 1.0, 'old': 1.0, 'fun': 1.0, 'best': 1.0, 'dump': 1.0, 'playing': 1.0, 'stinks': 1.0, 'an': 1.0, 'stink': 1.0, 'leaving': 1.0, 'eye': 1.0, 'whenever': 1.0, 'it': 2.0, 'him': 1.0, 'already': 1.0, 'shoe': 1.0, 'out': 1.0, 'he': 1.0, 'yet': 1.0, 'get': 1.0}
Word element => {'couldn': 1.0, 'and': 1.0, 'genie': 1.0, 'i': 3.0, 'buy': 1.0, 'got': 1.0, 'other': 1.0, 'plus': 2.0, 'use': 1.0, 'refills': 1.0, 'origionally': 1.0, 'my': 1.0, 'trash': 1.0, 'is': 3.0, 'regular': 1.0, 'really': 1.0, 'it': 4.0, 'this': 2.0, 'big': 1.0, 'excited': 1.0, 'only': 1.0, 'love': 2.0, 'one': 1.0, 'uses': 1.0, 'we': 1.0, 'a': 3.0, 't': 2.0, 'diaper': 2.0, 'the': 1.0, 'bags': 1.0, 'pail': 1.0, 'which': 1.0, 'special': 1.0, 'wasn': 1.0, 'out': 1.0, 'about': 1.0, 'than': 1.0, 'having': 1.0, 'to': 2.0, 'all': 1.0, 'easy': 1.0, 'complaint': 1.0, 'would': 1.0, 'be': 1.0, 'short': 1.0, 'that': 2.0, 'figure': 1.0, 'little': 1.0}
Word element => {'smell': 1.0, 'able': 1.0, 'contain': 1.0, 'fully': 1.0, 'is': 1.0, 'regular': 1.0, 'uses': 1.0, 'i': 1.0, 'genie': 1.0, 'it': 1.0, 'this': 1.0, 'to': 1.0, 'liked': 1.0, 'much': 1.0, 'than': 1.0, 'better': 1.0, 'the': 2.0, 'diaper': 1.0, 'and': 1.0, 'bags': 1.0, 'as': 1.0}
Word element => {'plastic': 1.0, 'permeate': 1.0, 'helps': 1.0, 'minutes': 1.0, 'at': 1.0, 'because': 1.0, 'put': 1.0, 'stinky': 1.0, 'get': 1.0, 'great': 1.0, 'fresh': 1.0, 'bin': 1.0, 'sun': 2.0, 'stink': 2.0, 'eliminator': 1.0, 'regarding': 1.0, 'diapers': 1.0, 'allow': 1.0, 'residual': 1.0, 'contents': 1.0, 'odor': 1.0, 'readjust': 1.0, 'heavy': 1.0, 'the': 9.0, 'top': 2.0, 'in': 1.0, 'air': 1.0, 'regular': 1.0, 'more': 1.0, 'is': 2.0, 'that': 1.0, 'empty': 2.0, 'greatly': 1.0, 'and': 3.0, 'bags': 1.0, 'like': 1.0, 'use': 2.0, 'off': 1.0, 'balance': 1.0, 'with': 3.0, 'fit': 1.0, 'for': 3.0, 'starts': 1.0, 'lid': 1.0, 'often': 1.0, 'now': 1.0, 'least': 1.0, 'outside': 1.0, 'our': 1.0, 'to': 5.0, 'cons': 1.0, '5': 1.0, 'it': 7.0, 'month': 1.0, 'old': 1.0, 'otherwise': 1.0, 'i': 2.0, 'when': 1.0, 'you': 2.0, 'twins': 1.0, 'shake': 1.0, 'ours': 1.0, 'uses': 1.0, 'over': 3.0, 'if': 2.0, 'open': 2.0, 'very': 1.0, 'tip': 2.0, 'will': 2.0, 'also': 1.0, 'seems': 2.0, 'short': 1.0, 'have': 1.0, 'several': 1.0, 'thing': 1.0, 'lean': 1.0, '30': 1.0, 'carefully': 1.0, 'this': 3.0, 'full': 1.0, 'we': 1.0, 's': 2.0, 'a': 2.0}
Word element => {'odor': 1.0, 'keeps': 1.0, 'empty': 1.0, 'having': 1.0, 'and': 1.0, 'before': 1.0, 'this': 1.0, 'in': 1.0, 'diaper': 2.0, 'more': 1.0, 'the': 1.0, 'pale': 1.0, 'makes': 1.0, 'it': 1.0, 'genie': 1.0, 'holds': 1.0, 'than': 1.0, 'easier': 1.0, 'much': 2.0, 'to': 2.0}
Word element => {'on': 1.0, 'wear': 1.0, 'are': 1.0, 'if': 1.0, 'everytime': 1.0, 'down': 1.0, 'bend': 1.0, 'hurts': 1.0, 'is': 1.0, '5': 1.0, 'because': 1.0, 'does': 1.0, 'in': 1.0, 'given': 1.0, 'terrible': 1.0, 'smelled': 1.0, 'ones': 1.0, 'at': 1.0, 'since': 1.0, 'necessity': 1.0, 'reviewed': 1.0, 'negative': 1.0, 'despite': 1.0, 'champ': 1.0, 'short': 1.0, 'bag': 1.0, 'really': 1.0, 'every': 1.0, 'of': 1.0, 'lysol': 1.0, 'worked': 1.0, 'bags': 1.0, 'have': 3.0, 'not': 3.0, 'them': 1.0, 'started': 1.0, 'do': 1.0, 'tall': 1.0, 'and': 2.0, 'days': 1.0, 'buy': 1.0, 'old': 3.0, 'you': 3.0, 'babies': 1.0, 'that': 1.0, 'design': 1.0, 'reason': 1.0, 'also': 1.0, 'two': 2.0, 'all': 1.0, 'our': 2.0, 'any': 2.0, 'to': 4.0, 'had': 1.0, 'stars': 1.0, 'love': 1.0, 'expensive': 1.0, 'for': 1.0, 'diaper': 4.0, 'reach': 1.0, 'without': 1.0, 'refill': 1.0, 'the': 4.0, 'great': 2.0, 'this': 2.0, 'champs': 3.0, 'generation': 2.0, 'though': 1.0, 'backs': 1.0, 'it': 7.0, 'with': 2.0, 'diapers': 1.0, 'even': 2.0, 'got': 1.0, 'sprayed': 1.0, 'us': 1.0, 'through': 1.0, 'can': 1.0, 'change': 1.0, 'but': 2.0, 'dirty': 1.0, 'they': 1.0, 'so': 1.0, 'chose': 1.0, 'after': 2.0, 'we': 6.0, 'a': 2.0, 'few': 2.0, 'one': 1.0, 'bought': 1.0, 'months': 1.0, 'new': 3.0, 'would': 2.0, 'smell': 2.0, 'rinse': 1.0, 'out': 2.0, 'water': 1.0}
Word element => {'again': 1.0, 'would': 1.0, 'i': 1.0, 'had': 1.0, 'now': 1.0, 'to': 1.0, 'colors': 1.0, 'about': 1.0, 'bright': 1.0, 'the': 1.0, 'heavy': 1.0, 'my': 2.0, 'it': 3.0, 'this': 3.0, 'its': 1.0, 'only': 1.0, 'product': 1.0, 'love': 1.0, 'for': 4.0, 'ive': 1.0, '6mths': 1.0, 'very': 1.0, 'son': 1.0, 'yard': 1.0, 'and': 3.0, 'play': 2.0, 'plenty': 1.0, 'roomy': 1.0, 'of': 1.0, 'toys': 1.0, 'crawl': 1.0, 'complaint': 1.0, 'a': 2.0, 'we': 2.0, 'might': 1.0, 'home': 1.0, 'him': 1.0, 'be': 1.0, 'loves': 1.0, 'that': 1.0, 'around': 1.0, 'is': 1.0, 'but': 1.0, 'space': 1.0, 'at': 1.0, 'keep': 1.0, 'problem': 1.0, 'bit': 1.0, 'so': 1.0, 'buy': 1.0, 'isnt': 1.0, 'us': 1.0}
Word element => {'walking': 1.0, 'or': 1.0, 'start': 1.0, 'they': 1.0, 'playpen': 1.0, 'tee': 1.0, 'babies': 1.0, 'get': 1.0, 'story': 1.0, 'of': 1.0, 'moral': 1.0, 'running': 1.0, 'old': 1.0, 'year': 1.0, 'three': 1.0, 'baby': 1.0, 'new': 1.0, 'again': 1.0, 'grandma': 1.0, 'before': 2.0, 'used': 3.0, 'long': 1.0, 'freedom': 1.0, 'little': 1.0, 'didn': 1.0, 'got': 1.0, 'grandson': 1.0, 'stay': 1.0, 'reason': 1.0, 'in': 2.0, 'i': 2.0, 'much': 1.0, 'liked': 1.0, 'actually': 1.0, 'for': 1.0, 'it': 3.0, 'with': 2.0, 'this': 3.0, 'hee': 1.0, 'really': 1.0, 'want': 1.0, 'around': 1.0, 'is': 2.0, 'side': 1.0, 'some': 1.0, 'but': 1.0, 'will': 1.0, 'to': 3.0, 'all': 1.0, 'grandchild': 1.0, 'the': 4.0, 'a': 3.0, 't': 1.0, 'colors': 1.0, 'my': 1.0, 'another': 1.0, 'having': 1.0, 'yard': 1.0, 'play': 1.0, 'and': 3.0, 'bright': 1.0, 'however': 1.0, 'crawling': 1.0, 'there': 1.0, '34': 2.0, 'm': 1.0, 'dec': 1.0, 'be': 1.0}
Word element => {'la': 1.0, 'c': 1.0, 'well': 1.0, 'oh': 1.0, 'gotten': 1.0, 'of': 1.0, 'kind': 1.0, 'able': 1.0, 'be': 1.0, 'still': 1.0, 'know': 1.0, 'they': 4.0, 'that': 1.0, 'initially': 1.0, 'to': 1.0, 'as': 2.0, 'sleep': 2.0, 'didn': 1.0, 'while': 1.0, '14': 1.0, 'being': 1.0, 'am': 1.0, 'i': 6.0, 'a': 1.0, 't': 2.0, 'the': 1.0, 'twin': 1.0, 'great': 1.0, 'wish': 1.0, 'this': 3.0, 'with': 1.0, 'it': 4.0, 'in': 4.0, 'parents': 1.0, 'est': 1.0, 'bed': 1.0, 'vie': 1.0, 'now': 2.0, 'their': 2.0, 'comforter': 1.0, 'who': 1.0, 'few': 1.0, 'passed': 1.0, 'my': 1.0, 'nephews': 1.0, 'are': 1.0, 'take': 1.0, 'bought': 1.0, 'months': 2.0, 'sooner': 1.0, 'll': 1.0, 'down': 1.0, 'had': 1.0, 'what': 1.0, 'and': 1.0, 'works': 1.0, 'certain': 1.0, 'not': 1.0, 'time': 1.0, 'so': 1.0, 'however': 1.0, 'ended': 1.0, 'don': 1.0, 'up': 1.0, 'for': 2.0, 'grandparents': 1.0, 're': 1.0, 'house': 1.0, 'out': 1.0, 'type': 1.0}
Word element => {'fun': 1.0, 'naps': 1.0, 'used': 1.0, 'before': 1.0, 'for': 3.0, 'size': 1.0, 'this': 1.0, 'durable': 1.0, 'animals': 1.0, 'good': 1.0, 'her': 1.0, 'clean': 1.0, 'run': 1.0, 'our': 1.0, 'to': 2.0, 'was': 2.0, 'had': 1.0, 'easy': 1.0, 'it': 3.0, 'colorful': 1.0, 'she': 3.0, 'daughter': 1.0, 'little': 1.0, 'very': 1.0, 'play': 1.0, 'too': 2.0, 'and': 6.0, 'until': 1.0, 'big': 2.0, '1': 3.0, 's': 2.0, 'a': 2.0, 'occasional': 1.0, 'able': 1.0, 'around': 1.0, 'which': 1.0, 'between': 1.0, '2': 1.0, 'the': 2.0, 'just': 1.0, 'got': 1.0, 'loved': 1.0, 'one': 1.0, 'mobile': 1.0, 'colors': 1.0, 'lots': 1.0, 'on': 1.0, 'of': 1.0}
Word element => {'sell': 1.0, 'better': 1.0, 'a': 2.0, 'they': 1.0, 'has': 1.0, 'sears': 1.0, 'even': 1.0, 'price': 2.0, 'almost': 1.0, 'selling': 1.0, 'again': 1.0, 'com': 1.0, 'kmart': 1.0, 'four': 1.0, 'would': 1.0, 'colorfully': 1.0, 'it': 5.0, 'buy': 1.0, 'i': 3.0, 'just': 1.0, '66': 1.0, '89': 1.0, 'but': 1.0, 'quality': 1.0, 'and': 1.0, 'product': 1.0, 'bought': 1.0, 'nice': 1.0, 'for': 3.0, 'twice': 1.0, 'can': 1.0, '74': 1.0, 'understand': 1.0, 'days': 1.0, 'ago': 1.0, 'great': 1.0, '99': 1.0, 'the': 1.0, 't': 1.0, 'from': 1.0, 'why': 1.0, 'is': 2.0, 'amazon': 1.0}
Word element => {'heavy': 1.0, 'needed': 1.0, 'if': 1.0, 'look': 1.0, 'price': 1.0, 'for': 1.0, 'definitely': 1.0, 'buy': 1.0, 'would': 1.0, 'hamper': 3.0, 'clothing': 1.0, 'the': 9.0, 'great': 1.0, 'a': 3.0, 't': 1.0, 'decent': 1.0, 'such': 1.0, 'of': 2.0, 'i': 4.0, 'have': 1.0, 'frame': 2.0, 'flimsy': 1.0, 'seems': 1.0, 'in': 2.0, 'pretty': 1.0, 'move': 1.0, 'over': 1.0, 'up': 1.0, 'washable': 1.0, 'bad': 1.0, 'crib': 1.0, 'amount': 1.0, 'pony': 1.0, 'and': 3.0, 'really': 1.0, 'holds': 2.0, 'is': 2.0, 'duty': 1.0, 'this': 1.0, 'looks': 1.0, 'it': 5.0, 'with': 1.0, 'good': 1.0, 'load': 1.0, 'can': 1.0, 'but': 3.0, 'again': 1.0, 'you': 1.0, 'clothes': 1.0, 'set': 1.0, 'built': 1.0, 'not': 2.0, 'maybe': 1.0, 'because': 1.0, 'manner': 1.0, 'filled': 1.0, 'that': 1.0, 'matches': 1.0, 'possible': 1.0, 'like': 1.0}
Word element => {'not': 1.0, 'very': 2.0, 'paying': 1.0, 'five': 1.0, 'days': 2.0, 'matter': 1.0, '25': 2.0, 'save': 1.0, 'my': 1.0, 'another': 1.0, '12': 1.0, 'but': 3.0, 'autism': 1.0, 'organic': 1.0, 'lunchbox': 1.0, 'threw': 1.0, 'thermos': 2.0, 'seriously': 1.0, 'say': 1.0, 'more': 1.0, 'hey': 1.0, 'milk': 2.0, 'and': 4.0, 'green': 1.0, 'soy': 1.0, 'boxes': 1.0, 'let': 1.0, 'no': 1.0, 'including': 1.0, 'thing': 1.0, 'sending': 1.0, 'getting': 1.0, 'been': 1.0, 'frustrating': 1.0, 'have': 1.0, 'expensive': 1.0, 'symptoms': 1.0, 'for': 1.0, 'increased': 1.0, 'supposed': 1.0, 'his': 3.0, 'year': 1.0, '4': 1.0, 'i': 8.0, 'son': 1.0, 'with': 1.0, 'he': 4.0, 'this': 4.0, 'found': 1.0, 'be': 1.0, 'thought': 1.0, 'it': 5.0, 'him': 1.0, 'here': 1.0, 'money': 1.0, 'bought': 2.0, 'one': 2.0, 's': 3.0, 'a': 2.0, 'ago': 1.0, 't': 1.0, 'to': 6.0, '00': 1.0, 'so': 3.0, 'eat': 1.0, 'old': 1.0, 'has': 3.0, 'free': 1.0, 'help': 1.0, 'lunch': 1.0, 'good': 2.0, 'keeps': 1.0, 'cold': 1.0, 'came': 1.0, 'would': 1.0, 'unfortunatly': 1.0, 'm': 1.0, 'in': 2.0, 'explained': 1.0, 'of': 3.0, 'the': 2.0, 'myself': 1.0, 'garbage': 1.0, 'is': 1.0, 'at': 1.0, 'school': 1.0, 'on': 1.0, 'first': 1.0, 'control': 1.0, 'day': 1.0, 'used': 1.0, 'that': 3.0, 'gluten': 1.0, 'because': 1.0, 'dairy': 1.0, 'tells': 1.0, 'find': 1.0, 'was': 1.0, 'doesn': 1.0, 'come': 1.0, 'back': 1.0, 'home': 1.0, 'get': 2.0, 'overall': 1.0, 'kind': 1.0, 'unless': 1.0, 'someone': 1.0, 'only': 1.0, 'from': 1.0, '98': 1.0}
Word element => {'multiple': 1.0, 'with': 1.0, 'fade': 1.0, 'over': 1.0, 'use': 2.0, 'day': 1.0, 'from': 1.0, 'millions': 1.0, 'see': 1.0, 'washings': 1.0, 'replace': 1.0, 'the': 4.0, 'year': 2.0, 'almost': 1.0, '2': 1.0, 'can': 3.0, 'pros': 1.0, 'thermos': 1.0, 'is': 2.0, 'stay': 1.0, 'vibrant': 1.0, 'will': 2.0, 'that': 1.0, 'for': 2.0, 'product': 1.0, 'clearproduct': 1.0, 'came': 1.0, 'and': 3.0, 'freezing': 1.0, 'away': 1.0, 'this': 1.0, 'a': 1.0, 'expecteddrinks': 1.0, 'other': 2.0, 'as': 1.0, 'all': 1.0, 'cups': 1.0, 'age': 1.0, 'of': 2.0, 'colorfulpicture': 1.0, '18': 1.0, 'same': 1.0, 'old': 2.0, '4': 1.0, 'i': 1.0, 'cup': 1.0, 'months': 1.0, 'color': 1.0, 'throw': 1.0, 'cupscons': 1.0, 'eventually': 1.0, 'expensivecan': 1.0}
Word element => {'container': 1.0, 'liquid': 1.0, 'just': 1.0, 'thermo': 1.0, 'a': 2.0, 'really': 1.0, 'not': 1.0, 'my': 1.0, 'little': 1.0, 'and': 1.0, 'loves': 1.0, 'great': 1.0, 'it': 3.0, 'works': 1.0, 'please': 1.0, 'consider': 1.0, 'son': 1.0, 'is': 2.0}
Word element => {'something': 1.0, 'you': 1.0, 'little': 1.0, 'day': 1.0, 'clip': 1.0, 'used': 1.0, 'years': 1.0, '5': 1.0, 'cool': 1.0, 'one': 1.0, 'had': 2.0, 'last': 1.0, 'good': 1.0, 'with': 1.0, 'break': 1.0, 'boxes': 1.0, 'another': 1.0, 'broke': 1.0, 'and': 3.0, 'cold': 1.0, 'are': 1.0, 'keep': 1.0, 'every': 1.0, 'really': 1.0, 'like': 1.0, 'lunch': 1.0, 'this': 1.0, 'kids': 1.0, 'that': 2.0, 'gave': 1.0, 'old': 1.0, 'the': 5.0, 'these': 1.0, 'school': 1.0, '1': 1.0, 'great': 2.0, 'they': 3.0, 'i': 2.0, '4': 2.0, 'thermos': 1.0, '8': 1.0, 'water': 3.0, 'bottles': 1.0, 'product': 1.0, 'love': 1.0, 'for': 2.0, 'in': 2.0, 'to': 2.0, 'outside': 1.0, 'sweat': 1.0, 'drops': 1.0, 'everything': 1.0, 'on': 1.0, 'make': 1.0, 'allowed': 1.0, 'top': 3.0, 'few': 1.0, 'wet': 1.0, 'year': 1.0, 'his': 1.0, 'don': 1.0, 'replacing': 1.0, 'lunchbox': 1.0, 'were': 1.0, 'bottle': 1.0, 'because': 2.0, 'only': 1.0, 'ine': 1.0, 'it': 3.0, 't': 1.0, 'we': 3.0, 'a': 3.0, 'plastic': 1.0, 'but': 1.0, 'can': 1.0}
Word element => {}
Word element => {'washed': 1.0, 'off': 1.0, 'hand': 1.0, 'pictures': 1.0, 'are': 1.0, 'the': 1.0, 'i': 1.0, 'just': 1.0, 'months': 1.0, 'bought': 1.0, 'only': 2.0, 'item': 1.0, 'this': 2.0, 'was': 1.0, 'peeling': 1.0, 'later': 1.0, 'container': 1.0, 'in': 1.0, '2': 1.0, 'september': 1.0}
Word element => {'around': 1.0, 'are': 1.0, 'before': 1.0, 'close': 1.0, 'a': 3.0, 'we': 5.0, 'dish': 1.0, 't': 1.0, 'it': 2.0, 'tap': 1.0, 'find': 1.0, 'disassembled': 1.0, 'for': 5.0, 'love': 1.0, 'effect': 1.0, 'been': 1.0, 'so': 2.0, 'time': 1.0, 'cleaning': 1.0, 'out': 1.0, 'proof': 1.0, 'clean': 2.0, 'to': 3.0, 'cups': 6.0, 'this': 1.0, 'found': 1.0, 'they': 5.0, 'in': 4.0, 'left': 1.0, 'performance': 1.0, 'sure': 1.0, 'just': 1.0, 'milk': 1.0, 'and': 3.0, 'water': 2.0, 'avoid': 1.0, 'daughter': 1.0, 'pull': 1.0, 'lid': 2.0, 'two': 2.0, 'i': 2.0, 'of': 3.0, 'the': 10.0, 'these': 5.0, 'have': 2.0, 'old': 2.0, 'issue': 1.0, 'handy': 1.0, 'shape': 1.0, 'pain': 1.0, 'five': 1.0, 'year': 3.0, 'son': 1.0, 'gets': 1.0, 'under': 1.0, 'if': 2.0, 'still': 1.0, 'both': 1.0, 'primarily': 1.0, 'when': 1.0, 'you': 1.0, 'one': 2.0, 'my': 2.0, 'entire': 1.0, 'open': 1.0, 'use': 2.0, 'some': 1.0, 'pipe': 2.0, 's': 1.0, 'cleaner': 2.0, 'o': 1.0, 'soapy': 1.0, 'though': 3.0, 'during': 1.0, 'through': 1.0, 'straw': 1.0, 'off': 1.0, 'until': 1.0, 'great': 2.0, 'tossed': 1.0, 'is': 2.0, 'their': 2.0, 'rinse': 1.0, 've': 3.0, 'had': 1.0, 'nearly': 1.0, 'which': 1.0, 'constant': 1.0, 'design': 1.0, 'cars': 1.0, 'has': 1.0, 're': 3.0, 'come': 1.0, 'doesn': 1.0, 'kids': 1.0, 'spill': 1.0, 'slightest': 1.0, 'nearby': 1.0, 'not': 1.0, 'be': 1.0, 'area': 1.0, 'make': 1.0}
Word element => {'there': 1.0, 'was': 1.0, 'know': 1.0, 'even': 1.0, 'out': 1.0, 'that': 2.0, 'hours': 1.0, 'has': 1.0, 'and': 3.0, 'steel': 1.0, 'for': 1.0, 'handle': 1.0, 'love': 1.0, 'it': 3.0, 'stainless': 1.0, 'drinks': 1.0, 'keeps': 1.0, 'cold': 1.0, 'is': 1.0, 'on': 1.0, 'didn': 1.0, 'bottle': 1.0, 'i': 2.0, 't': 1.0, 'figured': 1.0, 'the': 4.0, 'happy': 1.0, 'm': 1.0, 'kids': 2.0, 'a': 1.0, 'convenient': 1.0, 'top': 1.0}
Word element => {'year': 1.0, '3': 1.0, 'my': 1.0, 'really': 1.0, 'bought': 1.0, 'i': 1.0, 'great': 1.0, 'it': 2.0, 'old': 1.0, 'product': 2.0, 'to': 1.0, 'use': 1.0, 'luggage': 1.0, 'son': 1.0, 'with': 1.0, 'loves': 1.0, 'other': 1.0}
Word element => {'i': 1.0, 'love': 1.0, 'for': 1.0, 'and': 1.0, 'grandchildren': 1.0, 'their': 1.0, 'expressly': 1.0, 'they': 1.0, 'these': 1.0, 'the': 1.0, 'birthday': 1.0, 'find': 1.0, 'not': 1.0, 'wanted': 1.0, 'was': 1.0, 'them': 2.0, 'on': 1.0, 'sites': 1.0, 'with': 1.0, 'other': 1.0, 'but': 1.0, 'could': 1.0, 'successful': 1.0, 'amazon': 1.0}
Word element => {'kids': 1.0, 'my': 1.0, 'i': 1.0, 'one': 1.0, 'products': 1.0, 's': 1.0, 'for': 1.0, 'durable': 1.0, 'doesn': 1.0, 'it': 2.0, 't': 1.0, 'suggest': 1.0, 'long': 1.0, 'favorite': 1.0, 'of': 1.0, 'leak': 1.0, 'anyone': 1.0, 'top': 1.0, 'and': 1.0, 'as': 2.0, 'with': 1.0, 'closed': 1.0, 'is': 1.0}
Word element => {'version': 1.0, 'story': 1.0, 'toy': 1.0, 'it': 2.0, 'should': 1.0, 'feels': 1.0, 'so': 1.0, 'sturdy': 1.0, 'use': 1.0, 'last': 1.0, 'easy': 1.0, 'didn': 1.0, 'to': 1.0, 'design': 1.0, 'kid': 1.0, 'for': 1.0, 'long': 1.0, 'good': 1.0, 'loves': 1.0, '5': 1.0, 'stars': 1.0, 'that': 1.0, 'notice': 1.0, 't': 1.0, 'the': 1.0, 'blue': 1.0}
Word element => {'funtainer': 1.0, 'of': 1.0, 'about': 1.0, 'own': 1.0, '4': 1.0, 'i': 2.0, 'upset': 1.0, 'very': 1.0, 'model': 1.0, 'get': 1.0, 'off': 1.0, 'designs': 2.0, 'other': 1.0, 'weeks': 1.0, 'have': 1.0, 'don': 1.0, 'child': 1.0, 'if': 1.0, 'straws': 2.0, 'pretty': 1.0, 'esspecially': 1.0, 'at': 1.0, 'down': 1.0, 'that': 2.0, 'am': 1.0, 'when': 2.0, 'you': 1.0, 'thru': 1.0, 'there': 1.0, 'leak': 1.0, 'wear': 2.0, 'bottles': 1.0, 'the': 6.0, 'great': 1.0, 'are': 3.0, 'not': 2.0, 'bites': 1.0, 'they': 3.0, 'last': 1.0, 'good': 2.0, '2': 1.0, 'but': 2.0, 'proof': 1.0, 'quickly': 2.0, 'drink': 1.0, 'time': 1.0, 'bottle': 1.0, 'my': 1.0, 'company': 1.0, 'bummed': 1.0, 'on': 3.0, '3': 2.0, 'for': 1.0, 'charges': 1.0, 'week': 1.0, 'straw': 2.0, 'one': 2.0, 'shipping': 1.0, 'and': 4.0, 'do': 1.0, 'only': 1.0, 'this': 1.0, 'kids': 1.0, 'allows': 1.0, '5': 1.0, 't': 1.0, 'a': 4.0, 'go': 1.0, 'we': 1.0, 'every': 1.0}
Word element => {'closed': 1.0, 'or': 1.0, 'open': 1.0, 'whether': 1.0, 'is': 1.0, 'because': 1.0, 'than': 1.0, 'better': 1.0, 'claim': 1.0, 'they': 1.0, 'most': 1.0, 'drip': 1.0, 'like': 1.0, 'and': 2.0, 'durable': 1.0, 'this': 1.0, 'it': 1.0, 'cups': 2.0, 'i': 1.0, 'sippy': 1.0, 'no': 2.0, 'of': 1.0, 'spill': 2.0, 'a': 1.0, 'lot': 1.0, 'to': 1.0, 'be': 1.0}
Word element => {'product': 1.0, 'fix': 1.0, 'kid': 1.0, 'of': 1.0, 'ridiculous': 1.0, 'c': 1.0, 'no': 1.0, 'everything': 2.0, 'after': 1.0, 'over': 2.0, 'it': 1.0, 'this': 5.0, 'major': 1.0, 'lunch': 2.0, 'what': 1.0, '12': 1.0, 'leaks': 2.0, 'thermos': 5.0, 'is': 3.0, 'flaw': 1.0, 'many': 1.0, 'my': 1.0, 'have': 1.0, 'in': 1.0, 'design': 1.0, 'time': 1.0, 'point': 1.0, 'makes': 1.0, 'mon': 1.0, 'every': 1.0, 'use': 1.0, 'insulated': 1.0, 'i': 2.0, 'tried': 1.0, 'products': 1.0, 'son': 1.0, 'possible': 1.0, 'all': 3.0, 'to': 2.0, 'on': 1.0, 'make': 1.0, 'usually': 1.0, 'great': 1.0, 'avail': 1.0, 's': 2.0, 'a': 2.0, 't': 1.0, 'the': 3.0, 'and': 1.0, 'market': 1.0, 'there': 1.0, 'just': 1.0, 'but': 1.0, 'work': 1.0, 'aren': 1.0, 'box': 1.0, 'that': 2.0, 'oz': 1.0, 'alternatives': 1.0}
Word element => {'yeah': 1.0, 'school': 1.0, 'now': 1.0, 'to': 1.0, 'juice': 1.0, 'lunchbag': 1.0, 'arrived': 1.0, 'vegetable': 1.0, 'my': 1.0, 'for': 1.0, 'described': 1.0, 'and': 1.0, 'the': 1.0, 'great': 1.0, 'as': 1.0, 'timely': 1.0, 'son': 1.0, 'item': 1.0, 'loves': 1.0, 'i': 1.0, 'his': 1.0, 'does': 1.0, 'purchased': 1.0, 'taking': 1.0, 'thermos': 1.0, 'just': 1.0, 'not': 1.0, 'leak': 1.0}
Word element => {'recommended': 1.0, 'definitely': 1.0, 'because': 1.0, 'new': 1.0, 'thermos': 1.0, 'of': 1.0, 'holder': 1.0, 'carry': 1.0, 'version': 1.0, 'a': 1.0, 'is': 1.0, 'little': 1.0, 'thoughtful': 1.0, 'bottle': 1.0, 'i': 1.0, 'the': 1.0, 'this': 1.0, 'it': 2.0, 'so': 1.0, 'hidden': 1.0, 'has': 1.0, 'makes': 1.0, 'that': 1.0, 'easier': 1.0, 'to': 1.0}
Word element => {'school': 1.0, 'great': 1.0, 'cars': 1.0, 'the': 1.0, 'my': 1.0, 'so': 2.0, 'far': 1.0, 'loves': 1.0, 'this': 1.0, 'son': 1.0, 'with': 1.0, 'good': 1.0, 'keeps': 1.0, 'drink': 1.0, 'sports': 1.0, 'cool': 1.0, 'design': 1.0, 'hrs': 1.0, 'for': 2.0, 'and': 1.0}
Word element => {'lot': 1.0, 'like': 1.0, 'i': 1.0, 'night': 1.0, 'pop': 1.0, 'and': 1.0, 'straw': 1.0, 'push': 1.0, 'button': 1.0, 'the': 4.0, 'little': 1.0, 'bottle': 1.0, 'a': 2.0, 'is': 1.0, 'it': 1.0, 'with': 1.0, 'this': 1.0, 'flips': 1.0, 'up': 1.0, 'there': 1.0, 'to': 1.0, 'be': 1.0, 'cool': 2.0, 'through': 1.0, 'used': 1.0, 'keeps': 1.0, 'water': 1.0, 'out': 1.0}
Word element => {'portion': 1.0, 'the': 1.0, 'would': 1.0, 'although': 1.0, 'clean': 1.0, 'to': 1.0, 'recommend': 1.0, 'easy': 1.0, 'also': 1.0, 'course': 1.0, 'is': 1.0, 'all': 1.0, 'cold': 1.0, 'drinks': 1.0, 'so': 1.0, 'bottle': 1.0, 'three': 1.0, 'quite': 1.0, 'loves': 2.0, 'job': 1.0, 'of': 3.0, 'hand': 1.0, 'keep': 1.0, 'absolutely': 1.0, 'durable': 1.0, 'this': 1.0, 'it': 3.0, 'mcqueen': 1.0, 'being': 1.0, 'an': 1.0, 'day': 1.0, 'son': 2.0, 'year': 1.0, 'cup': 1.0, 'my': 2.0, 'and': 2.0, 'do': 1.0, 'old': 1.0, 'i': 2.0, 'does': 1.0, 'lightening': 1.0, 'by': 1.0, 'thermos': 1.0, 'because': 1.0, 'washing': 1.0, 'excellent': 1.0}
Word element => {'seems': 1.0, 'however': 1.0, 'cup': 1.0, 'sippy': 1.0, 'use': 1.0, 'after': 1.0, 'sit': 1.0, 'needs': 1.0, 'cannot': 1.0, 'know': 1.0, 'enough': 1.0, 'old': 1.0, 'child': 1.0, 'be': 3.0, 'liquids': 3.0, 'i': 1.0, 'cold': 2.0, 'substitute': 1.0, 'keeps': 1.0, 'only': 2.0, 'this': 2.0, 'with': 1.0, 'it': 4.0, 'therefore': 1.0, 'to': 3.0, 'as': 3.0, 'properly': 1.0, 'from': 1.0, 'exactly': 1.0, 'such': 1.0, 'movie': 1.0, 'of': 1.0, 'cars': 1.0, 'have': 1.0, 'used': 4.0, 'upright': 2.0, 'a': 7.0, 'the': 6.0, 'great': 2.0, 'looking': 1.0, 'advertised': 1.0, 'can': 1.0, 'has': 1.0, 'picture': 1.0, 'by': 1.0, 'few': 1.0, 'is': 4.0, 'thermos': 4.0, 'and': 1.0, 'product': 1.0, 'for': 2.0, 'straw': 1.0, 'each': 1.0, 'position': 1.0, 'my': 1.0, 'who': 1.0, 'main': 1.0, 'if': 2.0, 'complaint': 1.0, 'hours': 1.0, 'should': 1.0, 'that': 2.0, 'easily': 1.0, 'spill': 1.0, 'an': 1.0, 'out': 1.0, 'not': 1.0, 'kept': 1.0, 'in': 1.0}
Word element => {'though': 1.0, 'cute': 1.0, 'so': 1.0, 'a': 1.0, 'never': 1.0, 'him': 1.0, 'switched': 1.0, 'we': 2.0, '6': 1.0, 'carrier': 1.0, 'toy': 1.0, 'about': 1.0, 'months': 2.0, '4': 1.0, 'when': 2.0, 'son': 1.0, 'my': 1.0, 'its': 1.0, 'to': 1.0, 'was': 2.0, 'around': 2.0, 'really': 4.0, 't': 2.0, 'convertible': 1.0, 'got': 1.0, 'i': 1.0, 'touch': 1.0, 'old': 1.0, 'care': 1.0, 'outgrew': 1.0, 'didn': 2.0, 'he': 3.0, 'this': 2.0, 'it': 2.0, 'and': 2.0, 'used': 1.0, 'carseat': 1.0, 'even': 2.0, 'his': 1.0}
Word element => {'reflection': 1.0, 'natural': 1.0, 'gives': 1.0, 'one': 1.0, 'easily': 1.0, 'or': 1.0, 'are': 1.0, 'plastic': 1.0, 'and': 1.0, 'quality': 1.0, 'this': 1.0, 'with': 1.0, 'to': 1.0, 'play': 1.0, 'mirror': 1.0, 'objects': 1.0, 'that': 1.0, 'kids': 1.0, 'mirrors': 2.0, 'three': 1.0, 'deform': 1.0, 'shaped': 1.0, 'a': 3.0, 'well': 1.0, 'deformed': 1.0, 'has': 1.0, 'toys': 1.0, 'of': 1.0, 'better': 1.0, 'these': 1.0, 'than': 1.0, 'most': 1.0, 'in': 1.0, 'lot': 1.0}
Word element => {'ignored': 1.0, 'totally': 1.0, 'balls': 1.0, 'plastic': 1.0, 'the': 2.0, 'move': 1.0, 'did': 1.0, 'son': 1.0, 'my': 1.0, 'all': 1.0, 'or': 1.0, 'stroller': 1.0, 'but': 2.0, 'use': 1.0, 'works': 1.0, 'sure': 1.0, 'on': 3.0, 'anything': 1.0, 'never': 1.0, 'how': 1.0, 'really': 2.0, 'it': 2.0, 'this': 1.0, 'fit': 1.0, 'well': 2.0, 'a': 1.0, 'seat': 1.0, 'not': 1.0, 'car': 1.0, 'mirror': 1.0, 'we': 1.0, 'tried': 1.0, 'was': 1.0, 'to': 1.0, 'and': 1.0}
Word element => {'fit': 1.0, 'issues': 1.0, 'any': 1.0, 'had': 1.0, 'snugride32': 1.0, 'graco': 1.0, 'carseat': 1.0, 'his': 1.0, 'keep': 1.0, 'facing': 1.0, 'rear': 1.0, 'is': 1.0, 'son': 1.0, 'my': 1.0, 'actually': 1.0, 'can': 1.0, 'in': 1.0, 'headrest': 1.0, 'trailblazer': 1.0, 'of': 1.0, 'there': 1.0, 'and': 3.0, 'have': 2.0, '2005': 1.0, 'mirror': 1.0, 'several': 1.0, 'since': 1.0, 'see': 1.0, 'middle': 2.0, 'a': 3.0, 'isn': 1.0, 'bought': 1.0, 'mirrors': 1.0, 'i': 4.0, 'handle': 1.0, 'for': 1.0, 'one': 1.0, 'on': 2.0, 'it': 1.0, 'he': 1.0, 'this': 1.0, 'with': 2.0, 't': 1.0, 'the': 3.0, 'back': 1.0, 'not': 1.0, 'seat': 1.0}
Word element => {'stars': 1.0, '5': 1.0, 'regardless': 1.0, 'straps': 1.0, 'on': 1.0, 'only': 1.0, 'whole': 1.0, 'rip': 1.0, 'going': 1.0, 'afraid': 1.0, 'older': 1.0, 'when': 1.0, 'though': 1.0, 'gets': 2.0, 'adjust': 1.0, 'have': 1.0, 'none': 1.0, 'its': 1.0, 'time': 1.0, 'no': 1.0, 'attached': 1.0, 'now': 2.0, 'where': 1.0, 'he': 5.0, 'love': 1.0, 'be': 1.0, 'car': 4.0, 'but': 2.0, 'thing': 1.0, '2': 1.0, 'do': 2.0, 'put': 2.0, 'me': 1.0, 'my': 2.0, 'caterpillar': 1.0, 'there': 1.0, 'so': 2.0, 'can': 2.0, 'headrest': 1.0, 'view': 1.0, 'our': 1.0, 'pretty': 1.0, 'to': 8.0, 'does': 1.0, 'just': 1.0, 'light': 1.0, 'use': 1.0, 'balls': 1.0, 'we': 1.0, 's': 6.0, 'a': 3.0, 'could': 1.0, 'all': 1.0, 'other': 1.0, 'mirror': 4.0, 'excited': 1.0, 'him': 2.0, 'it': 5.0, 'month': 1.0, 'this': 1.0, 'wish': 1.0, 'easily': 1.0, 'because': 3.0, 'that': 4.0, 'his': 2.0, 'of': 3.0, 'the': 12.0, 'i': 9.0, 'middle': 1.0, 'son': 1.0, 'worked': 1.0, 'was': 1.0, 'seat': 4.0, 'm': 2.0, 'in': 5.0, 'such': 1.0, 'lifesaver': 1.0, 'sure': 1.0, 'and': 3.0, 'held': 1.0, 'one': 1.0, 'rear': 1.0, 'too': 1.0, 'able': 1.0, 'relief': 1.0, 'up': 1.0, 'fact': 1.0, 'old': 1.0, 'face': 3.0, 'whenever': 1.0, 'mirrors': 1.0, 'stop': 1.0, 'with': 2.0, 'entertained': 1.0, 'look': 2.0, 'at': 3.0, 'is': 2.0, 'than': 1.0, 'way': 1.0, 'angled': 1.0, 'not': 3.0, 'even': 1.0, 'every': 1.0, 'if': 1.0, 'off': 1.0, 'see': 4.0, 'own': 1.0, 'or': 1.0, 'rather': 1.0, 'like': 1.0, 'quality': 1.0, 'good': 1.0, 'distorted': 1.0, 'red': 1.0, 'attach': 1.0, 'from': 1.0, 'snaps': 1.0, 'velcro': 2.0}
Word element => {'top': 1.0, 'on': 1.0, 'reach': 1.0, 'can': 1.0, 'when': 1.0, 'becomes': 1.0, 'keeps': 1.0, 'him': 2.0, 't': 1.0, 'the': 3.0, 'my': 1.0, 'in': 1.0, 'for': 1.0, 'car': 1.0, 'he': 2.0, 'it': 1.0, 'this': 1.0, 'grandson': 1.0, 'bought': 1.0, 'frustrated': 1.0, 'entertained': 1.0, 'hang': 1.0, 'upside': 1.0, 'down': 1.0, 'inchworm': 1.0, 'as': 1.0, 'enjoys': 1.0, 'being': 1.0, 'grab': 1.0, 'to': 1.0, 'able': 1.0}
Word element => {'mouth': 1.0, 'in': 1.0, 'floor': 1.0, 'kitchen': 1.0, 'on': 1.0, 'falls': 1.0, 'washing': 1.0, 'and': 1.0, 'easily': 1.0, 'toy': 2.0, 'purpose': 1.0, 'to': 1.0, 'up': 1.0, 'of': 1.0, 'keep': 1.0, 'before': 1.0, 'her': 2.0, 'part': 1.0, 'top': 1.0, 'but': 1.0, 'gets': 1.0, 'when': 2.0, 'i': 1.0, 'suction': 1.0, 'again': 1.0, 'defeats': 1.0, 'is': 1.0, 'nicely': 1.0, 'the': 5.0, 'stays': 1.0, 'off': 1.0, 'so': 1.0, 'taken': 1.0, 'it': 3.0, 'have': 1.0, 'picking': 1.0}
Word element => {'clean': 1.0, 'easy': 1.0, 'good': 1.0, 'to': 2.0, 'the': 1.0, 'my': 1.0, 'very': 1.0, 'tray': 1.0, 'only': 1.0, 'daughter': 1.0, 'stick': 1.0, 'it': 1.0, 'loves': 1.0, 'this': 1.0, 'is': 1.0, 'that': 1.0, 'bad': 1.0, 'does': 1.0, 'not': 1.0, 'thing': 1.0}
Word element => {'throw': 1.0, 'to': 1.0, 'when': 1.0, 'a': 2.0, 'toy': 1.0, 'removable': 1.0, 'want': 1.0, 'is': 1.0, 'nice': 1.0, 'opened': 1.0, 'diaper': 1.0, 'the': 2.0, 't': 1.0, 'didn': 1.0, 'over': 1.0, 'his': 1.0, 'right': 1.0, 'my': 1.0, 'today': 1.0, 'but': 2.0, 'bag': 1.0, 'base': 1.0, 'month': 1.0, 'this': 1.0, 'it': 3.0, 'him': 1.0, 'in': 1.0, 'feature': 1.0, 'we': 1.0, 'got': 1.0, 'already': 1.0, 'son': 1.0, 'into': 1.0, 'loves': 1.0, 'until': 2.0, 'food': 1.0, 'kept': 1.0, 'busy': 1.0, 'old': 1.0, 'i': 4.0, 'always': 1.0, '6': 1.0, 'up': 1.0, 'know': 1.0, 'just': 1.0, 'brought': 1.0}
Word element => {'that': 1.0, 'than': 1.0, 'other': 1.0, 'yet': 1.0, 'on': 1.0, 'suction': 1.0, 'toy': 1.0, 'its': 1.0, 'to': 1.0, 'loves': 1.0, 'great': 1.0, 'the': 1.0, 't': 2.0, 'month': 1.0, 'this': 1.0, 'it': 1.0, 'stroller': 1.0, 'doesn': 1.0, 'but': 2.0, '8': 1.0, 'stick': 1.0, 'very': 1.0, 'well': 1.0, 'his': 2.0, 'my': 1.0, 'high': 1.0, 'tried': 1.0, 'old': 1.0, 'i': 1.0, 'chair': 1.0, 'haven': 1.0}
Word element => {'chair': 1.0, 'can': 1.0, 'keeps': 1.0, 'worked': 1.0, 'her': 2.0, 'occupied': 1.0, 'is': 1.0, 'off': 1.0, 'good': 1.0, 'loves': 1.0, 'quality': 1.0, 'and': 1.0, 'this': 1.0, 'it': 2.0, 'month': 1.0, 'baby': 1.0, 'little': 1.0, 'old': 1.0, 'i': 1.0, 'wish': 1.0, 'though': 1.0, 'the': 1.0, 'high': 1.0, 'pull': 1.0, 'my': 1.0, 'suction': 1.0, 'a': 1.0, 'better': 1.0, '6': 1.0}
Word element => {'made': 1.0, 'we': 1.0, 'purchase': 1.0, 'useless': 1.0, 'for': 1.0, 'love': 1.0, 'restaurant': 1.0, 'a': 1.0, 'to': 1.0, 'bag': 1.0, 'baby': 1.0, 'toy': 1.0, 'much': 1.0, 'as': 1.0, 'very': 1.0, 'constant': 1.0, 'travel': 1.0, 'without': 1.0, 'can': 3.0, 'on': 1.0, 'breathe': 1.0, 'so': 1.0, 'you': 2.0, 'diaper': 1.0, 't': 3.0, 'the': 2.0, 'worst': 1.0, 'toybox': 1.0, 'this': 1.0, 'it': 1.0, 'loud': 1.0, 'ever': 1.0, 'your': 1.0, 'going': 1.0, 'music': 2.0, 'keep': 1.0, 'off': 1.0, 've': 1.0, 'unless': 1.0, 'in': 2.0}
Word element => {'me': 1.0, 'star': 1.0, 'one': 1.0, 'to': 1.0, 'likes': 1.0, 'upon': 1.0, 'from': 1.0, 'stick': 1.0, 'several': 1.0, 'shame': 1.0, 'rating': 1.0, 'a': 1.0, 'the': 1.0, 't': 2.0, 'intended': 1.0, 'cup': 1.0, 'trys': 1.0, 'it': 2.0, 'he': 1.0, 'suction': 1.0, 'not': 2.0, 'because': 1.0, 'toy': 1.0, 'work': 2.0, 'doesn': 2.0, 'will': 1.0, 'but': 1.0, 'how': 1.0, 'i': 1.0}
Word element => {'well': 1.0, 'together': 1.0, 'though': 1.0, 'parts': 1.0, 'small': 1.0, 'intended': 1.0, 'completely': 1.0, 'of': 1.0, 'off': 1.0, 'top': 1.0, 'useless': 1.0, 'cup': 1.0, 'pull': 1.0, 'kids': 1.0, 'for': 2.0, 'suction': 2.0, 'no': 1.0, 'fun': 1.0, 'spin': 1.0, 'but': 1.0, 'easy': 1.0, 'and': 2.0, 'held': 1.0, 'cute': 1.0, 'purpose': 1.0, 'to': 3.0, 'toy': 2.0, 'play': 1.0, 'has': 1.0, 'isn': 1.0, 'the': 4.0, 't': 1.0, 'great': 1.0, 'with': 1.0, 'this': 1.0, 'it': 3.0, 'making': 2.0, 'difficult': 1.0, 'generally': 1.0, 'also': 1.0, 's': 2.0, 'is': 1.0, 'really': 1.0}
Word element => {'really': 1.0, 'so': 1.0, 'about': 1.0, 'though': 1.0, 'better': 1.0, 'one': 3.0, 'have': 1.0, 'obviously': 1.0, 'old': 2.0, 'years': 1.0, 'mine': 1.0, 'new': 2.0, 'apparently': 1.0, 'note': 1.0, 'run': 2.0, 'anymore': 1.0, 'doesn': 2.0, 'put': 1.0, 'at': 1.0, 'plays': 1.0, 'base': 2.0, 'children': 1.0, 'loud': 1.0, 'it': 6.0, 'in': 1.0, 'yes': 1.0, 'my': 2.0, 'cup': 2.0, 'without': 1.0, 'the': 12.0, 'two': 1.0, 'i': 4.0, 'version': 1.0, 'vibration': 1.0, 'hate': 1.0, 'away': 2.0, 'get': 1.0, 'stick': 1.0, 'but': 1.0, 'music': 3.0, 'toy': 5.0, 'be': 1.0, 'suction': 2.0, 'not': 1.0, 'slightest': 1.0, 'stay': 1.0, 'and': 1.0, 'soon': 1.0, 'love': 2.0, 'far': 1.0, 'loved': 1.0, 'got': 1.0, 'much': 1.0, 'try': 1.0, 'things': 1.0, 'rid': 2.0, 'of': 4.0, 'there': 2.0, 'as': 2.0, 'to': 1.0, 'kids': 1.0, 'this': 3.0, 'carefully': 1.0, 'is': 3.0, 'around': 1.0, 'incessant': 1.0, 'when': 1.0, 'might': 1.0, 'a': 1.0, 't': 2.0, 's': 3.0, 'bottom': 1.0, 'll': 1.0, 'they': 1.0, 'move': 1.0, 'forget': 1.0, 'line': 1.0}
Word element => {'gotten': 1.0, 've': 1.0, 'toys': 1.0, 'other': 1.0, 'loved': 1.0, 'little': 1.0, 'products': 1.0, 'sassy': 2.0, 'love': 1.0, 'disappointed': 1.0, 'old': 1.0, 'i': 3.0, 'was': 1.0, 'minutes': 1.0, '7': 1.0, 'couple': 1.0, 'tray': 1.0, 'is': 3.0, 'chair': 1.0, 'suction': 1.0, 'of': 2.0, 'high': 1.0, 'all': 1.0, 'our': 2.0, 'terrible': 1.0, 'baby': 1.0, 'has': 1.0, 'toy': 1.0, 'really': 1.0, 'every': 1.0, 'forever': 1.0, 'off': 2.0, 'loves': 1.0, 'on': 2.0, 'this': 1.0, 'with': 2.0, 'only': 1.0, 'it': 5.0, 'month': 1.0, 'take': 1.0, 'the': 7.0, 'falls': 1.0, 'itself': 1.0, 'and': 3.0, 'play': 2.0, 'when': 1.0, 'repetitive': 1.0, 'stand': 1.0, 'because': 2.0, 'cup': 1.0, 'let': 1.0, 'her': 1.0, 'floor': 1.0, 'but': 1.0, 'music': 1.0, 'girl': 1.0, 'grating': 1.0, 'will': 1.0, 'also': 1.0, 'after': 1.0, 'so': 1.0, 'we': 1.0, 'a': 1.0, 'from': 1.0, 'while': 1.0}
Word element => {'suction': 1.0, 'best': 1.0, 'found': 1.0, 'we': 1.0, 'babies': 1.0, 'young': 1.0, 'for': 2.0, 'most': 1.0, 'surfaces': 1.0, 'the': 1.0, 'more': 1.0, 'is': 1.0, 'on': 1.0, 'toy': 1.0, 'to': 1.0, 'this': 1.0, 'cup': 1.0, 'not': 1.0, 'hold': 1.0, 'than': 1.0, 'well': 1.0, 'a': 1.0, 'few': 1.0, 'minutes': 1.0}
Word element => {'m': 1.0, 'i': 1.0, 'now': 1.0, 'this': 1.0, 'scared': 1.0, 'but': 1.0, 'played': 1.0, 'second': 1.0, 'trash': 1.0, 'is': 2.0, 'left': 1.0, 'a': 1.0, 'in': 2.0, 'stuck': 1.0, 'and': 1.0, 'me': 1.0, 'toy': 2.0, 'to': 1.0, 'throwing': 1.0, 'trying': 1.0, 'time': 2.0, 'ever': 1.0, 'between': 1.0, 'they': 2.0, 'middle': 1.0, 'son': 2.0, 'got': 1.0, 'his': 2.0, 'of': 2.0, 'he': 3.0, 'with': 1.0, 'it': 3.0, 'my': 2.0, 'reach': 1.0, 'orange': 1.0, 'the': 9.0, 'hand': 2.0, 'like': 1.0, 'few': 1.0, 'just': 1.0, 'parts': 2.0, 'idk': 1.0, 'minutes': 1.0, 'yellow': 1.0, 'what': 1.0, 'screamed': 1.0, 'called': 1.0, 'are': 2.0, 'dug': 1.0, 'into': 1.0, 'marks': 1.0, 'whole': 2.0, 'then': 1.0, 'flipper': 1.0, 'took': 1.0, 'spokes': 1.0, 'ordeal': 1.0}
Word element => {'pourous': 1.0, 'on': 1.0, 'would': 1.0, 'that': 1.0, 'a': 3.0, 'have': 1.0, 'find': 1.0, 'yet': 1.0, 'the': 1.0, 'to': 2.0, 'old': 1.0, 'i': 2.0, 'surface': 2.0, 'so': 1.0, 'stick': 1.0, 'this': 1.0, 'it': 2.0, 'sure': 1.0, 'did': 1.0, 'tricks': 1.0, 'by': 1.0, 'little': 1.0, 'wetting': 1.0, 'making': 1.0, 'wasnt': 1.0}
Word element => {'recommend': 1.0, 'i': 1.0, 'priced': 1.0, 's': 1.0, 'overall': 1.0, 'too': 1.0, 'fascinated': 1.0, 'great': 1.0, '2': 2.0, 'toddler': 1.0, 'well': 1.0, 'a': 2.0, 'entertain': 1.0, 'loves': 1.0, 'that': 1.0, 'playing': 1.0, 'year': 1.0, 'absolutely': 1.0, 'it': 1.0, 'this': 1.0, 'with': 1.0, 'sturdy': 1.0, '1': 2.0, 'stand': 1.0, 'has': 1.0, 'to': 1.0, 'colorful': 1.0, 'granddaughter': 2.0, 'cup': 1.0, 'my': 2.0, 'station': 1.0, 'up': 1.0, 'suction': 1.0, 'is': 1.0, 'features': 1.0, 'many': 1.0, 'highly': 1.0, 'baby': 1.0, 'toy': 2.0, 'fascination': 1.0, 'visual': 1.0, 'sassy': 1.0, 'tactile': 1.0}
Word element => {'around': 1.0, 'chair': 1.0, 'high': 1.0, 'my': 1.0, 'pull': 1.0, 'the': 2.0, 'to': 3.0, 'had': 1.0, 'suction': 1.0, 'need': 1.0, 'which': 1.0, 'it': 5.0, 'in': 2.0, 'wish': 1.0, 'a': 1.0, 'better': 1.0, 'move': 1.0, 'of': 1.0, 'will': 1.0, 'use': 1.0, 'bop': 1.0, 'i': 3.0, 'keep': 1.0, 'at': 2.0, 'have': 1.0, 'one': 1.0, 'months': 1.0, 'they': 2.0, 'but': 1.0, 'can': 1.0, 'both': 1.0, '8': 1.0, 'down': 1.0, 'cup': 1.0, 'or': 1.0, 'old': 1.0, 'point': 1.0, 'fast': 1.0, 'off': 1.0, 'themselves': 1.0, 'while': 1.0, 'stick': 1.0, 'twins': 1.0, 'when': 1.0, 'again': 1.0, 'head': 1.0, 'entertained': 1.0, 'waving': 1.0}
Word element => {'fun': 1.0, 'for': 1.0, 'baby': 1.0, 'all': 1.0, 'but': 1.0, 'didn': 1.0, 'tray': 1.0, 'stick': 1.0, 'to': 1.0, 't': 1.0, 'highchair': 1.0, 'at': 1.0}
Word element => {'up': 1.0, '34': 2.0, 'of': 1.0, 'game': 1.0, 'a': 1.0, 'play': 1.0, 'still': 1.0, 'off': 1.0, 'start': 1.0, 'pickem': 1.0, 'connected': 1.0, 'with': 2.0, 'it': 6.0, 'love': 1.0, 'i': 1.0, 'when': 1.0, 'toy': 1.0, 'now': 1.0, 'comes': 1.0, 'to': 1.0, 'once': 1.0, 'babies': 1.0, 'stay': 1.0, 'cup': 1.0, 'the': 3.0, 'suction': 1.0, 's': 1.0, 'you': 1.0, 'but': 2.0, 'put': 1.0, 'on': 1.0, 'playing': 1.0, 'thought': 1.0, 'their': 1.0, 'would': 1.0, 'highchair': 1.0, 'tray': 1.0, 'they': 2.0}
Word element => {'fact': 1.0, 'solely': 1.0, 'buy': 1.0, 'throw': 1.0, 'attention': 1.0, 'moves': 1.0, 'of': 5.0, 'very': 1.0, 'exactly': 1.0, 'image': 1.0, 'listing': 1.0, 'colored': 1.0, 'everything': 1.0, 'molding': 1.0, 'draws': 1.0, 'anywhere': 1.0, 'rad': 1.0, 'marks': 1.0, 'first': 1.0, 'bothered': 1.0, 'balls': 1.0, 'were': 1.0, 'younger': 1.0, 'made': 2.0, 'good': 3.0, 'again': 1.0, 'which': 1.0, 'tug': 1.0, 'isn': 1.0, 'thrown': 1.0, 'color': 1.0, 'tray': 1.0, 'turns': 1.0, 'on': 5.0, 'down': 2.0, 'stand': 1.0, 'stuck': 1.0, 'plastic': 3.0, '8': 1.0, '34': 4.0, 'age': 1.0, 'how': 1.0, 'things': 2.0, 'no': 2.0, 'with': 4.0, 'flaws': 1.0, 'if': 1.0, 'great': 1.0, 'this': 4.0, 'said': 3.0, 'based': 1.0, 'in': 2.0, 'was': 3.0, 'bright': 1.0, 'off': 1.0, 'enough': 1.0, 'seemingly': 1.0, 'ordered': 1.0, 'for': 8.0, 'seconds': 1.0, 'didn': 1.0, 'i': 8.0, 'well': 3.0, 'when': 2.0, 'right': 1.0, 'to': 9.0, 'high': 2.0, 'pretty': 1.0, 'marketed': 1.0, 'sit': 1.0, 'as': 4.0, 'material': 1.0, 'errant': 1.0, 'really': 3.0, 'black': 1.0, 'popped': 1.0, 'chair': 2.0, 'are': 2.0, 'my': 3.0, 'meant': 1.0, 'may': 1.0, 'or': 3.0, 'food': 1.0, 'cup': 6.0, 'use': 1.0, 'have': 2.0, 'play': 3.0, 'and': 11.0, 'just': 1.0, 'from': 2.0, 'purpose': 1.0, 'cracked': 1.0, 'matter': 1.0, 'than': 1.0, 've': 1.0, 'while': 4.0, 'striped': 1.0, 'serve': 1.0, 'the': 18.0, 'process': 1.0, 'most': 1.0, 'ready': 1.0, 'big': 1.0, 'fun': 1.0, 't': 5.0, 'likes': 1.0, 'a': 6.0, 'toy': 6.0, 'used': 1.0, 'she': 5.0, 'part': 2.0, 'baby': 1.0, 'that': 3.0, 'because': 1.0, 'gave': 1.0, 'loves': 1.0, 'little': 1.0, 'her': 3.0, 'white': 1.0, 'suction': 6.0, 'shouldn': 1.0, 'bad': 2.0, 'we': 1.0, 'excited': 1.0, 'handle': 1.0, 'heavy': 2.0, 'completely': 1.0, 'worthless': 2.0, 'few': 1.0, 'times': 2.0, 'reasons': 1.0, 'had': 1.0, 'solo': 1.0, '6': 1.0, 'by': 1.0, 'after': 1.0, 'infant': 1.0, 'true': 1.0, 'weeks': 1.0, 'now': 1.0, 'still': 1.0, 'mysterious': 1.0, 'clear': 2.0, 'lo': 3.0, 'reaches': 1.0, 'pulls': 2.0, 'free': 1.0, 'is': 5.0, 'can': 2.0, 'it': 23.0, 'be': 5.0, 'stays': 1.0, 'alone': 1.0, 'also': 1.0, 'fifty': 1.0, 'should': 2.0, 'regularly': 1.0, 'itself': 1.0, 'not': 1.0, 'different': 1.0, 'rather': 1.0, 's': 6.0, 'doesn': 1.0, 'suck': 1.0, 'never': 1.0, 'put': 1.0, 'floor': 1.0, 'wouldn': 1.0, 'more': 1.0, 'babies': 2.0, 'begins': 1.0, 'playing': 1.0, 'an': 1.0, 'all': 1.0, 'purchased': 1.0, 'time': 1.0, 'kind': 1.0, 'awkward': 1.0, 'large': 1.0, 'quality': 1.0, 'stick': 1.0, 'far': 1.0, 'go': 1.0, 'too': 1.0, 'absolutely': 1.0, 'got': 1.0, 'one': 2.0, 'unwieldy': 1.0, 'end': 1.0, 'its': 1.0, 'range': 1.0, 'parts': 1.0, 'without': 1.0, 'rattles': 1.0, 'brittle': 1.0, 'hard': 1.0, 'out': 2.0, 'infants': 1.0, 'durable': 1.0, 'but': 1.0, 'there': 1.0, 'threw': 1.0, 'sucks': 1.0, 'onto': 1.0, 'level': 1.0, 'might': 1.0, 'say': 2.0, 'clearly': 1.0, 'around': 1.0, 'brightly': 1.0, 'd': 2.0, 'up': 1.0}
Word element => {'does': 1.0, 'than': 1.0, 'floor': 1.0, 'off': 1.0, 'up': 1.0, 'picking': 1.0, 'time': 1.0, 'spend': 1.0, 'and': 1.0, 'highchair': 1.0, 's': 1.0, 'for': 2.0, 'playing': 1.0, 'something': 1.0, 'sticks': 1.0, 'with': 1.0, 'he': 1.0, 'it': 2.0, 'only': 1.0, 'this': 1.0, 'more': 1.0, 'the': 2.0, 'just': 1.0, 'seconds': 1.0, 'cup': 1.0, 'my': 1.0, 'is': 1.0, 'suction': 1.0, '10': 1.0, 'on': 1.0, 'ok': 1.0, 'son': 1.0, 'toy': 1.0, 'about': 1.0, 'i': 2.0, 'to': 1.0, 'was': 1.0, 'looking': 1.0, 'put': 1.0}
Word element => {'else': 1.0, 'say': 1.0, 'no': 1.0, 'nope': 1.0, 'take': 1.0, 'way': 2.0, 'closet': 1.0, 'top': 1.0, 'donated': 1.0, 'been': 1.0, 'that': 1.0, 'into': 1.0, 'then': 1.0, 'thinking': 1.0, 'i': 1.0, 'too': 1.0, 'moved': 1.0, 'and': 2.0, 'daughter': 1.0, 'us': 1.0, 'wet': 1.0, 'with': 3.0, 'it': 7.0, 'first': 3.0, 'drive': 1.0, 'this': 1.0, 'wipe': 1.0, 'off': 3.0, 'cup': 1.0, 'my': 1.0, 'long': 1.0, 'does': 1.0, 'her': 2.0, 'playing': 1.0, 'the': 6.0, 'someone': 1.0, 'when': 1.0, 'you': 2.0, 'suction': 1.0, 'cloth': 1.0, 'not': 1.0, 'needless': 1.0, 'music': 1.0, 'work': 1.0, 'but': 1.0, 'seriously': 2.0, 'has': 1.0, 'well': 1.0, 'toy': 1.0, 'rest': 1.0, 'to': 3.0, 'as': 2.0, 'all': 1.0, 'was': 2.0, 'crazy': 2.0, 'overly': 1.0, 'at': 1.0, 'of': 3.0, 'immediately': 1.0, 'toys': 1.0, 'impressed': 1.0, 'on': 1.0, 'floor': 1.0, 'd': 1.0, 'drove': 1.0, 'walk': 1.0, 'turn': 1.0, 'in': 1.0, 'sensitive': 1.0, 'room': 1.0, 'would': 2.0, 'a': 1.0, 'go': 1.0}
Word element => {'meal': 1.0, 'a': 1.0, '5': 1.0, 'his': 1.0, 'off': 1.0, 'actually': 1.0, 'highchair': 1.0, 'pull': 1.0, 'cup': 2.0, 'it': 1.0, 'he': 2.0, 'this': 1.0, 'old': 1.0, 'not': 2.0, 'strong': 1.0, 'suction': 2.0, 'of': 3.0, 'up': 1.0, 'mth': 1.0, 'kitchen': 1.0, 'very': 1.0, 'times': 1.0, '11': 1.0, 'c': 1.0, 'fun': 1.0, '4': 1.0, 'two': 1.0, 'the': 7.0, 'is': 2.0, 'more': 1.0, 'aspect': 1.0, 'my': 1.0, 'b': 1.0, 'does': 1.0, 'than': 1.0, 'part': 1.0, 'ferris': 1.0, 'wheel': 1.0, 'has': 1.0, 'toy': 2.0, 'tray': 1.0, 'one': 1.0, 'with': 2.0, 'piece': 1.0, 'ends': 1.0, 'can': 1.0, 'but': 1.0, 'so': 1.0, 'top': 1.0, 'across': 1.0, 'thrown': 1.0, 'being': 1.0}
Word element => {'either': 1.0, 'seem': 1.0, 'and': 1.0, 't': 2.0, 'music': 1.0, 'to': 1.0, 'lights': 1.0, 'there': 1.0, 'which': 1.0, 'restaurants': 1.0, 'no': 1.0, 'at': 1.0, 'month': 1.0, 'sure': 1.0, 'mind': 1.0, 'are': 1.0, 'keeps': 1.0, 'don': 1.0, 'toy': 1.0, 'it': 2.0, 'this': 1.0, 'or': 1.0, 'loves': 1.0, '5': 1.0, 'our': 1.0, 'while': 1.0, 'also': 1.0, 'in': 1.0, 'etc': 1.0, 'his': 1.0, 'we': 1.0, 'entertained': 1.0, 'during': 1.0, 'dinnertime': 1.0, 'old': 1.0, 'i': 1.0, 'm': 1.0, 'him': 1.0, 'highchair': 1.0, 'would': 1.0, 'doesn': 1.0, 'work': 1.0}
Word element => {'goes': 1.0, 'and': 1.0, 'baby': 1.0, 'flimsy': 1.0, 'so': 1.0, 's': 1.0, 'it': 3.0, 'grabs': 1.0, 'the': 2.0, 'does': 1.0, 'barely': 1.0, 'toy': 1.0, 'to': 1.0, 'flying': 1.0, 'all': 1.0, 'attached': 1.0, 'that': 1.0, 'suction': 1.0, 'stay': 1.0, 'cup': 1.0, 'not': 1.0, 'at': 1.0}
Word element => {'off': 1.0, 'easily': 1.0, 'be': 1.0, 'can': 1.0, 'top': 1.0, 'and': 1.0, 'toy': 1.0, 'but': 1.0, 'give': 1.0, 'is': 1.0, 'plays': 1.0, 'star': 1.0, 'month': 1.0, 'did': 1.0, 'with': 1.0, 'it': 1.0, 'this': 1.0, 'old': 1.0, 'i': 1.0, 'six': 1.0, '5': 1.0, 'the': 2.0, 'pulled': 1.0, 'a': 1.0, 'strong': 1.0, 'not': 2.0, 'because': 1.0, 'suction': 1.0, 'my': 1.0, 'cup': 1.0, 'very': 1.0}
Word element => {'different': 1.0, 'get': 1.0, 'would': 1.0, 'do': 1.0, 'had': 1.0, 'device': 1.0, 'from': 1.0, 'detaches': 1.0, 'if': 2.0, 'he': 1.0, 'this': 1.0, 'way': 1.0, 'expect': 1.0, 'two': 1.0, 'i': 3.0, 'old': 1.0, 'night': 1.0, 'that': 2.0, '7': 1.0, 'minutes': 1.0, 'my': 1.0, 'or': 1.0, 'cup': 1.0, 'it': 6.0, 'useless': 1.0, 'also': 1.0, 'for': 1.0, 'day': 1.0, 'to': 1.0, 'actual': 1.0, 'all': 1.0, 'as': 1.0, 'is': 6.0, 'fine': 1.0, 'amused': 1.0, 'so': 2.0, 'by': 1.0, 'months': 1.0, 'about': 1.0, 'toy': 4.0, 'a': 2.0, 'son': 1.0, 'middle': 1.0, 'but': 1.0, 'wakes': 1.0, 'off': 1.0, 'possessed': 1.0, 'and': 1.0, 'over': 1.0, 'up': 1.0, 'of': 1.0, 'the': 6.0, 'goes': 1.0, 'during': 1.0, 'in': 2.0, 'randomly': 1.0, 'suction': 4.0, 'does': 2.0, 'me': 1.0, 'not': 1.0}
Word element => {'surface': 1.0, 'bumpy': 1.0, 'her': 1.0, 'youngest': 1.0, 'base': 1.0, 'off': 1.0, 'baby': 1.0, 'and': 1.0, 'it': 1.0, 'love': 1.0, 'tries': 1.0, 'the': 1.0, 'our': 1.0, 'that': 2.0, 'suction': 1.0, 'gums': 1.0, 'especially': 1.0, 'likes': 1.0, 'soothe': 1.0, 'its': 1.0, 'comes': 1.0, 'to': 2.0, 'arc': 1.0, 'hold': 1.0, 'sometimes': 1.0, 'on': 1.0}
Word element => {'waste': 1.0, 'this': 1.0, 'money': 1.0, 'but': 1.0, 'sassy': 1.0, 'trust': 1.0, 'just': 1.0, 'suctioned': 1.0, 'baby': 1.0, 'toy': 3.0, 'so': 1.0, 'pulls': 1.0, 'throws': 1.0, 'easily': 2.0, 'base': 2.0, 'non': 1.0, 'cup': 2.0, 'my': 1.0, 'of': 2.0, 'grabs': 1.0, 'suction': 4.0, 'which': 1.0, 'why': 1.0, 'doesn': 1.0, 'was': 2.0, 'to': 2.0, 'our': 1.0, 'the': 10.0, 'playing': 1.0, 'too': 2.0, 'and': 2.0, 'counter': 1.0, 'with': 2.0, 'out': 1.0, 'top': 1.0, 'off': 2.0, 'ground': 1.0, 't': 1.0, 'a': 3.0, 'same': 1.0, 'game': 1.0, 'it': 2.0, 'she': 1.0, 'toys': 2.0, 'comes': 1.0, 'is': 1.0, 'i': 2.0, 'one': 1.0, 'bought': 1.0, 'usually': 1.0, 'stick': 1.0, 'part': 1.0, 'also': 1.0, 'pops': 1.0}
Word element => {'now': 1.0, 'right': 1.0, 'old': 1.0, 'months': 1.0, 'bright': 1.0, 'hand': 1.0, 'for': 1.0, 'playing': 1.0, 'loves': 2.0, 'great': 1.0, 'high': 1.0, 'eye': 1.0, 'coordination': 1.0, 'my': 2.0, 'baby': 1.0, 'colors': 1.0, 'very': 1.0, 'son': 1.0, 'is': 1.0, 'really': 1.0, 'this': 2.0, 'with': 1.0, 'he': 1.0, 'at': 1.0, 'his': 1.0, 'chair': 1.0, '8': 1.0}
Word element => {'infant': 1.0, 'your': 1.0, 'must': 1.0, 'a': 1.0, 'surfaces': 1.0, 'flat': 1.0, 'nicely': 1.0, 'it': 1.0, 'to': 1.0, 'attaches': 1.0, 'toy': 1.0, 'entertained': 1.0, 'long': 1.0, 'keeps': 1.0, 'of': 1.0, 'little': 1.0, 'ones': 1.0, 'excellent': 1.0, 'periods': 1.0, 'for': 2.0, 'time': 1.0}
Word element => {'good': 1.0, 'immediately': 1.0, 'of': 2.0, 'played': 2.0, 'sudden': 1.0, 'it': 5.0, 'with': 2.0, 'he': 1.0, 'was': 1.0, 'drawn': 1.0, 'moved': 1.0, 'and': 3.0, 'soon': 1.0, 'on': 1.0, 'put': 1.0, 'house': 1.0, 'will': 1.0, 'something': 1.0, 'that': 1.0, 'this': 1.0, 'release': 1.0, 'the': 4.0, 'son': 1.0, 'awhile': 1.0, 'i': 1.0, 'after': 1.0, 'thing': 1.0, 'to': 3.0, 'as': 2.0, 'all': 1.0, 'for': 1.0, 'toy': 1.0, 'weirdest': 1.0, 'has': 1.0, 'my': 1.0, 'another': 1.0, 'area': 1.0, 's': 1.0, 'a': 2.0, 'we': 1.0, 'completely': 1.0, 'is': 2.0, 'fall': 1.0, 'other': 1.0, 'can': 1.0, 'suction': 1.0, 'here': 1.0, 'floor': 1.0, 'than': 1.0}
Word element => {'should': 1.0, 'product': 1.0, 'overall': 1.0, 'suction': 1.0, 'as': 1.0, 'from': 1.0, 'toy': 1.0, 'remove': 1.0, 'easily': 1.0, 'tray': 1.0, 'm': 1.0, 'attached': 1.0, 'the': 4.0, 't': 2.0, 'play': 1.0, 'dinner': 1.0, 'to': 2.0, 'holder': 1.0, 'him': 1.0, 'do': 1.0, 'and': 1.0, 'getting': 1.0, 'can': 1.0, '7': 1.0, 'stay': 1.0, 'chair': 1.0, 'for': 2.0, 'disappointed': 1.0, 'in': 1.0, 'got': 1.0, 'old': 1.0, 'i': 3.0, 'he': 1.0, 'this': 1.0, 'it': 3.0, 'with': 2.0, 'am': 1.0, 'while': 2.0, 'month': 1.0, 'sitting': 1.0, 'what': 1.0, 'his': 2.0, 'my': 1.0, 'high': 1.0, 'doesn': 2.0, 'ready': 1.0}
Word element => {'bumpy': 1.0, 'from': 1.0, 'was': 1.0, 'took': 1.0, 'wrong': 1.0, 'at': 1.0, 'always': 1.0, 'though': 1.0, 'trip': 1.0, 'like': 1.0, 'i': 2.0, 'with': 1.0, 'plays': 1.0, 'attention': 1.0, 'her': 1.0, '6': 1.0, 'once': 1.0, 'of': 1.0, 'the': 9.0, 'is': 1.0, 'on': 2.0, 'entire': 1.0, 'months': 1.0, 'she': 5.0, 'it': 11.0, 'this': 1.0, 'will': 1.0, 'sick': 1.0, 'use': 1.0, 'every': 1.0, 'yes': 1.0, 'road': 2.0, 'you': 1.0, 'again': 2.0, 'poor': 1.0, 'has': 1.0, 'toy': 1.0, 'don': 2.0, 'suction': 1.0, 'time': 4.0, 'so': 2.0, 'going': 1.0, 'a': 1.0, 't': 3.0, 'we': 3.0, 'goes': 1.0, 'that': 1.0, 'loves': 1.0, 'forever': 1.0, 'off': 4.0, 'old': 1.0, 'turn': 1.0, 'in': 1.0, 'car': 1.0, 'all': 1.0, 'roll': 1.0, 'take': 1.0, 'rug': 1.0, 'can': 1.0, 'but': 1.0, 'music': 2.0, 'actually': 1.0, 'highchair': 1.0, 'for': 1.0, 'and': 5.0, 'across': 1.0, 'too': 1.0, 'still': 1.0, 'gets': 2.0, 'set': 1.0, 'sets': 1.0, 'down': 1.0, 'no': 1.0}
Word element => {'poor': 1.0, 'bad': 1.0, 'honestly': 1.0, 'feel': 1.0, '1': 1.0, 'for': 2.0, 'at': 1.0, 'in': 1.0, 'put': 1.0, 'so': 1.0, 'warning': 1.0, 'ceilings': 1.0, 'garage': 2.0, 'ft': 1.0, 'if': 1.0, '10': 1.0, 'i': 3.0, 'night': 2.0, 'husband': 1.0, 'movement': 1.0, 'not': 2.0, 'slightest': 1.0, 'register': 2.0, 'eventually': 1.0, 'my': 1.0, 'went': 1.0, 'can': 1.0, 'was': 2.0, 'minutes': 1.0, 'the': 10.0, 'without': 1.0, 'morning': 1.0, 'blowing': 1.0, 'it': 5.0, 'be': 1.0, 'mentioned': 1.0, 'set': 1.0, 'many': 1.0, 'realized': 1.0, 'thing': 1.0, 'no': 1.0, 'toy': 2.0, 'has': 1.0, 'right': 1.0, 'button': 1.0, 'reviewers': 1.0, 'unsuspecting': 1.0, '20': 1.0, 'this': 1.0, '30': 1.0, 'just': 1.0, 'by': 1.0, 'parent': 1.0, 'off': 4.0, 'sold': 1.0, 'and': 3.0, 'setting': 1.0, 'from': 1.0, 'sale': 1.0, 'have': 2.0, 'to': 1.0, 'as': 3.0, 'all': 1.0, 'were': 1.0, 'next': 2.0, 'that': 1.0, 'ac': 1.0, 'tortured': 1.0, 'one': 1.0, 'every': 1.0, 'long': 1.0, 'explanation': 1.0, 's': 1.0, 'we': 3.0}
Word element => {'etc': 1.0, 'exersaucer': 1.0, 'on': 1.0, 'restaurant': 1.0, 'for': 1.0, 'floor': 1.0, 'from': 1.0, 'up': 1.0, 'picking': 1.0, 'constantly': 1.0, 'are': 1.0, 'you': 1.0, 'that': 1.0, 'trays': 1.0, 'high': 1.0, 'pull': 1.0, 'table': 1.0, 'certainly': 1.0, 'other': 1.0, 'and': 1.0, 'tops': 2.0, 'any': 1.0, 'off': 2.0, 'chair': 1.0, 'toys': 2.0, 'space': 1.0, 'exception': 1.0, 'no': 1.0, 'suction': 1.0, 'babies': 1.0, 'all': 1.0, 'but': 1.0, 'than': 1.0, 'can': 1.0, 'counter': 1.0, 'this': 1.0, 'come': 1.0, 'it': 1.0, 'great': 1.0, 'the': 2.0, 'these': 1.0, 'surface': 1.0, 'lasts': 1.0, 'spare': 1.0, 'is': 1.0, 'longer': 1.0}
Word element => {'times': 1.0, 'meal': 1.0, 'sitting': 1.0, 'a': 1.0, 'on': 1.0, 'toy': 2.0, 'loves': 1.0, 'with': 1.0, 'he': 1.0, 'this': 1.0, 'it': 3.0, 'absolutely': 1.0, 'the': 1.0, 'great': 1.0, 'highchair': 1.0, 'him': 1.0, 'son': 1.0, 'must': 1.0, 'my': 1.0, 'sensory': 1.0, 'i': 1.0, 'his': 1.0, 'is': 2.0, 'tray': 1.0, 'and': 1.0, 'family': 1.0, 'keeps': 1.0, 'during': 1.0, 'entertained': 1.0, 'place': 1.0, 'while': 1.0}
Word element => {'fine': 1.0, 'position': 1.0, 'some': 1.0, 'of': 1.0, 'set': 1.0, 'there': 1.0, 'gone': 1.0, 'is': 4.0, 'invariably': 1.0, 'rattle': 1.0, 'i': 1.0, 'wheel': 1.0, 'it': 6.0, 'where': 1.0, 'actually': 1.0, 'mind': 2.0, 'music': 2.0, 'if': 2.0, 'pretty': 1.0, 'hand': 1.0, 'vibration': 1.0, 'slightest': 1.0, 'grasp': 1.0, 'don': 2.0, 'baby': 2.0, 'strong': 1.0, 'turn': 1.0, 'and': 1.0, 'soon': 2.0, 'the': 5.0, 'asleep': 1.0, 'as': 5.0, 'to': 1.0, 'will': 1.0, 'also': 1.0, 'toy': 1.0, 'won': 1.0, 'has': 1.0, 'poor': 1.0, 'suction': 2.0, 'even': 1.0, 'just': 1.0, 'wet': 1.0, 'use': 1.0, 'off': 2.0, 'enough': 1.0, 'a': 1.0, 't': 3.0, 's': 2.0, 'when': 1.0, 'you': 1.0, 'constant': 1.0}
Word element => {'playing': 1.0, 'loved': 1.0, 'and': 1.0, 'side': 1.0, 'recommend': 1.0, 'she': 2.0, '8': 1.0, 'has': 1.0, 'in': 2.0, 'stuck': 1.0, 'the': 4.0, 'bought': 1.0, 'tub': 2.0, 'granddaughter': 1.0, 'mo': 1.0, 'to': 1.0, 'tried': 1.0, 'old': 1.0, 'i': 4.0, 'for': 2.0, 'one': 1.0, 'toy': 1.0, 'highly': 1.0, 'another': 1.0, 'my': 1.0, 'high': 1.0, 'chair': 1.0, 'so': 1.0, 'with': 1.0, 'this': 3.0, 'it': 2.0}
Word element => {'and': 1.0, 'toys': 1.0, 'was': 1.0, 'this': 1.0, 'with': 2.0, 'has': 1.0, 'she': 1.0, 'played': 1.0, '5': 1.0, 'months': 1.0, 'also': 1.0, 'month': 1.0, 'great': 1.0, 'since': 1.0, 'plastic': 1.0, '7': 1.0, 'teethers': 1.0, 'our': 1.0, 'while': 1.0, 'old': 1.0, 'i': 1.0, 'links': 1.0, 'distraction': 1.0, 'prepare': 1.0, 'small': 1.0, 'meals': 1.0, 'other': 1.0, 'attach': 1.0, 'we': 1.0}
Word element => {'10': 1.0, 'now': 1.0, 'is': 1.0, 'my': 1.0, 'daughter': 1.0, 'loves': 2.0, 'it': 2.0, 'so': 1.0, 'was': 1.0, 'still': 1.0, 'old': 2.0, 'much': 1.0, 'and': 1.0, 'since': 1.0, 'she': 3.0, '4': 1.0, 'months': 2.0}
Word element => {'s': 1.0, 'which': 1.0, 'curious': 1.0, 'really': 1.0, 'good': 1.0, 'think': 1.0, 'when': 1.0, 'i': 2.0, 'flash': 1.0, 'they': 1.0, 'later': 1.0, 'little': 1.0, 'my': 1.0, 'ones': 1.0, 'the': 1.0, 'for': 1.0, 'worth': 1.0, 'still': 1.0, 'being': 1.0, 'was': 2.0, 'to': 2.0, 'that': 1.0, 'were': 1.0, 'he': 1.0, 'it': 3.0, 'this': 1.0, 'loved': 1.0, 'got': 1.0, 'swaddled': 1.0, 'make': 1.0, 'roll': 1.0, 'caleb': 1.0, 'crab': 1.0, 'and': 2.0, 'ball': 1.0}
Word element => {'starter': 1.0, 's': 1.0, 'as': 1.0, 'for': 1.0, 'is': 1.0, 'rattle': 1.0, 'teether': 1.0, 'to': 2.0, 'colorful': 1.0, 'it': 1.0, 'this': 1.0, 'develop': 1.0, 'focus': 1.0, 'play': 1.0, 'attractive': 1.0, 'teaching': 1.0, 'grasp': 1.0, 'and': 3.0, 'reach': 1.0, 'a': 1.0, 'well': 1.0, 'teethe': 1.0, 'infants': 1.0, 'great': 2.0, 'the': 1.0, 'basic': 1.0, 'are': 1.0, 'skills': 1.0, 'toy': 2.0, 'colors': 1.0}
Word element => {'she': 2.0, 'daughter': 1.0, 'for': 2.0, 'in': 2.0, 'my': 1.0, 'the': 3.0, 'make': 1.0, 'loves': 2.0, 'got': 1.0, 'this': 1.0, 'christmas': 1.0, 'it': 3.0, 'i': 2.0, 'put': 1.0, 'back': 1.0, 'ball': 1.0, 'and': 1.0, 'as': 1.0, 'to': 2.0, 'spin': 1.0, 'seat': 1.0, 'not': 1.0, 'car': 1.0, 'dark': 1.0}
Word element => {'balls': 1.0, 'both': 1.0, 'is': 1.0, 'quality': 1.0, 'months': 1.0, 'few': 1.0, 'in': 1.0, 'rolling': 1.0, 'like': 1.0, 'plush': 1.0, 'll': 1.0, 'the': 3.0, 'high': 1.0, 'smaller': 1.0, 'my': 1.0, 's': 1.0, 'it': 1.0, 'month': 1.0, 'sure': 1.0, 'loves': 1.0, 'to': 1.0, 'grasp': 1.0, 'a': 2.0, 'for': 2.0, 'young': 1.0, 'six': 1.0, 'old': 1.0, 'i': 1.0, 'child': 1.0, 'ball': 2.0, 'and': 1.0, 'daughter': 1.0, 'm': 1.0, 'easy': 1.0, 'she': 1.0}
Word element => {'pay': 1.0, 'have': 1.0, 'd': 1.0, 'more': 2.0, 'and': 1.0, 'get': 2.0, 'much': 1.0, 'do': 1.0, 'together': 2.0, 'goes': 1.0, 'box': 2.0, 'been': 1.0, 'far': 1.0, 'doesn': 1.0, 'use': 1.0, 'purchase': 1.0, 'good': 1.0, 'stimulation': 1.0, 'stays': 1.0, 'or': 1.0, 'of': 1.0, 'there': 1.0, 'grandchild': 1.0, 'so': 2.0, 'for': 1.0, 'tinkle': 1.0, 'it': 2.0, 'this': 1.0, 's': 2.0, 'a': 4.0, 't': 1.0, 'the': 2.0, 'lot': 1.0, 'unlike': 1.0, 'some': 1.0, 'no': 1.0, 'hits': 1.0, 'i': 1.0, 've': 1.0, 'auditory': 1.0, 'in': 1.0, 'pieces': 1.0, 'had': 1.0, 'you': 1.0, 'easily': 1.0, 'when': 1.0, 'but': 2.0, 'past': 1.0, 'music': 2.0, 'bought': 1.0, 'mobile': 1.0, 'them': 1.0, 'baby': 1.0, 'to': 2.0, 'any': 1.0}
Word element => {'shop': 1.0, 'local': 1.0, 'about': 1.0, 'adult': 1.0, 'cheers': 1.0, 'sell': 1.0, 'would': 1.0, 'baby': 1.0, 'designed': 1.0, 'delightfully': 1.0, 'design': 1.0, 'sizing': 1.0, 'whop': 1.0, 'plus': 1.0, 'are': 1.0, 'around': 1.0, 'his': 1.0, 'intentional': 1.0, 'without': 1.0, 'bugs': 1.0, 'fit': 1.0, 'likes': 1.0, 'son': 1.0, 'old': 1.0, '3': 1.0, 'my': 1.0, 'sight': 1.0, 'open': 1.0, 'allows': 1.0, 'top': 1.0, 'together': 1.0, 'two': 1.0, 'holds': 1.0, 'stands': 1.0, 'appear': 1.0, 'folding': 1.0, 'amazon': 1.0, 'marathon': 1.0, 'village': 1.0, 'mixed': 1.0, 'paper': 2.0, 'easy': 1.0, 'know': 1.0, 'maternity': 1.0, 'like': 2.0, 'to': 6.0, 'an': 1.0, 'all': 1.0, 'mirror': 1.0, 'the': 18.0, 'of': 5.0, 'fisher': 1.0, 'sure': 1.0, 'from': 2.0, 'bags': 1.0, 'what': 1.0, 'bug': 1.0, 'able': 1.0, 'you': 3.0, 'sides': 1.0, 's': 1.0, 'by': 1.0, 'bright': 1.0, 'gym': 3.0, 'plastic': 1.0, 'grocery': 1.0, 'priced': 1.0, 'at': 1.0, 'is': 8.0, 'stim': 1.0, 'upright': 1.0, 'almost': 1.0, 'on': 1.0, 'mat': 1.0, 'reusable': 1.0, 'jackets': 1.0, 'arms': 1.0, 'and': 9.0, 'carter': 1.0, 'sassy': 2.0, 'taco': 1.0, 'strap': 2.0, 'perfect': 1.0, 'rattles': 1.0, 'this': 3.0, 'lady': 1.0, 'in': 2.0, 'said': 1.0, 'children': 1.0, 'doted': 1.0, 'attach': 1.0, 'it': 7.0, 'arch': 1.0, 'belly': 1.0, 'mind': 1.0, 'for': 2.0, 'fabric': 3.0, 'am': 1.0, 'last': 1.0, 'still': 1.0, 'if': 1.0, 'being': 1.0, 'wears': 1.0, 'keep': 1.0, '20': 1.0, 'combination': 1.0, 'that': 5.0, 'next': 1.0, 'hear': 1.0, 'month': 1.0, 'super': 1.0, 'could': 1.0, 'will': 3.0, 'not': 3.0, 'be': 2.0, 'our': 1.0, 'disappointed': 1.0, 'weight': 1.0, 'well': 1.0, 'i': 2.0, 'price': 1.0, 'products': 1.0, 'child': 2.0, 'less': 1.0, 'up': 1.0, 'poke': 1.0, 'until': 1.0, 'pass': 1.0, 'outgrows': 1.0, 'but': 1.0, 'so': 1.0, 'can': 1.0, 'down': 1.0, 'motor': 1.0, 'he': 1.0, 'bottom': 1.0, 'snag': 1.0, 'storage': 1.0, 'velcro': 1.0, 'time': 1.0, 'new': 1.0, 'mix': 1.0, 'just': 2.0, 'light': 1.0, 'out': 1.0, 'packs': 1.0, 'rattle': 1.0, 'a': 6.0, 'small': 2.0, 'one': 1.0, 'unplug': 1.0, 'side': 2.0, 'sewed': 1.0, 'proportions': 1.0, 'control': 1.0, 'stored': 1.0, 'pad': 1.0}
Word element => {'like': 1.0, 'i': 1.0, 'together': 1.0, 'put': 1.0, 'easy': 1.0, 'very': 1.0, 'too': 1.0, 'for': 1.0, 'baby': 1.0, 'little': 1.0, 'mat': 1.0, 'wonderful': 1.0, 'to': 1.0, 'colorful': 1.0, 'bright': 1.0, 'a': 2.0, 'floor': 1.0, 'is': 3.0, 'and': 4.0, 'has': 1.0, 'toys': 1.0, 'four': 1.0, 'fun': 1.0, 'that': 2.0, 'durable': 1.0, 'it': 3.0, 'this': 1.0, 'with': 1.0, 'come': 1.0, 'play': 1.0, 'mirror': 1.0}
Word element => {'children': 1.0, 'particular': 1.0, 'in': 1.0, 'anyone': 1.0, 'recommend': 1.0, 'i': 1.0, 'many': 1.0, 'is': 1.0, 'so': 1.0, 'snapping': 1.0, 'recently': 1.0, 'very': 1.0, 'delayed': 2.0, 'year': 1.0, 'china': 1.0, 'choices': 1.0, 'had': 1.0, 'daughter': 2.0, 'occupational': 1.0, 'adopted': 2.0, 'bright': 1.0, 'but': 1.0, '2': 1.0, 'the': 4.0, 'beads': 1.0, 'an': 1.0, 'quality': 1.0, 'old': 1.0, 'highly': 1.0, 'therapist': 1.0, 'who': 1.0, 'glad': 1.0, 'favorite': 1.0, 'pick': 1.0, 'and': 3.0, 'developmentally': 1.0, 'do': 1.0, 'chose': 1.0, 'market': 1.0, 'newly': 1.0, 'are': 2.0, 'to': 3.0, 'our': 1.0, 'we': 4.0, 'a': 1.0, 's': 1.0, 'recommended': 1.0, 'toy': 1.0, 'colors': 1.0, 'for': 1.0, 'love': 1.0, 'high': 1.0, 'from': 2.0, 'designs': 1.0, 'compared': 1.0, 'these': 2.0, 'others': 1.0, 'on': 1.0}
Word element => {'able': 1.0, 'lot': 1.0, 'means': 1.0, 'really': 1.0, 'new': 1.0, 'ordered': 1.0, 'just': 1.0, 'cleaning': 1.0, 'frequent': 1.0, 'with': 1.0, 'blotchy': 1.0, 'little': 1.0, 'cover': 1.0, 'when': 2.0, 'their': 1.0, 'and': 2.0, 'away': 1.0, 'get': 2.0, 'of': 2.0, 'pictures': 2.0, 'him': 1.0, 'see': 1.0, 'well': 1.0, 'was': 2.0, 'actually': 1.0, 'for': 1.0, 'one': 2.0, 'is': 2.0, 'drool': 1.0, 'them': 2.0, 'far': 1.0, 'favorite': 1.0, 'eventually': 1.0, 'my': 2.0, 'family': 2.0, 'so': 2.0, 'recognize': 2.0, 'great': 1.0, 'the': 3.0, 'way': 1.0, 'it': 6.0, 'plastic': 1.0, 'he': 3.0, 'a': 4.0, 's': 1.0, 'we': 3.0, 'teeths': 1.0, 'together': 2.0, 'that': 1.0, 'loves': 1.0, 'books': 1.0, 'his': 1.0, 'even': 2.0, 'on': 1.0, 'up': 1.0, 'over': 1.0, 'drools': 1.0, 'to': 3.0, 'all': 1.0, 'held': 1.0, 'pretty': 1.0, 'faces': 1.0, 'despite': 1.0, 'but': 1.0}
Word element => {'for': 1.0, 'babies': 1.0, 'wish': 1.0, 'though': 1.0, 'just': 1.0, 'picture': 1.0, 'more': 1.0, 'great': 1.0, 'were': 1.0, 'concept': 1.0, 'seems': 1.0, 'a': 1.0, 'is': 1.0, 'christmas': 1.0, 'durable': 1.0, 'this': 2.0, 'i': 3.0, 'pockets': 1.0, 'ordered': 1.0, 'getting': 1.0, 'five': 1.0, 'so': 2.0, 'hope': 1.0, 'lots': 1.0, 'there': 1.0, 'of': 1.0, 'new': 1.0}
Word element => {'with': 1.0, 'pleased': 1.0, 'very': 1.0, 'are': 1.0, 'have': 1.0, 'shop': 1.0, 'print': 1.0, 'local': 1.0, 'them': 2.0, 'bit': 1.0, 'students': 1.0, 'everything': 1.0, 'about': 1.0, 'and': 3.0, 'book': 1.0, 'preschool': 1.0, 'usable': 1.0, 'things': 1.0, 'public': 1.0, 'the': 4.0, 'chewing': 1.0, 'safe': 1.0, 'photo': 1.0, 'like': 1.0, 'brought': 1.0, 'version': 1.0, 'of': 1.0, 'earlier': 1.0, 'an': 1.0, 'but': 2.0, 'purchase': 1.0, 'laminated': 1.0, 'my': 3.0, 'daughter': 2.0, 'for': 3.0, 'bought': 1.0, 'one': 3.0, 'ordering': 1.0, 'pictures': 1.0, 'this': 5.0, 'later': 1.0, 'teacher': 1.0, 'from': 1.0, 'looked': 1.0, 'just': 1.0, 'thrilled': 1.0, 'before': 1.0, 'i': 7.0, 'over': 1.0, 'child': 1.0, 'every': 1.0, 'amazon': 1.0, 'it': 1.0, 'looks': 1.0, 'around': 1.0, 'is': 1.0, 'think': 1.0, 'on': 1.0, '9': 1.0, 'laminate': 1.0, 'phlalate': 1.0, 'keep': 2.0, 'm': 1.0, 'years': 1.0, 'nephew': 1.0, 'into': 1.0, 'that': 2.0, 'still': 1.0, 'trimmed': 1.0, 'great': 1.0, 'intended': 1.0, 'was': 2.0, 'give': 1.0, 'photos': 2.0, 'not': 2.0, 'year': 1.0, 'bpa': 1.0, 'free': 1.0, 'to': 4.0, 'as': 2.0, 'far': 1.0, 'album': 2.0, 'sure': 1.0, 'we': 2.0, 'a': 4.0, 'ago': 1.0, 's': 1.0, 'could': 1.0, 'tell': 1.0, 'new': 1.0, 'would': 1.0}
Word element => {'friends': 1.0, 'i': 3.0, 'didn': 1.0, 'little': 1.0, 'this': 2.0, 'pictures': 1.0, 'would': 1.0, 'definitely': 1.0, 'looking': 2.0, 'item': 1.0, 'and': 5.0, 'on': 1.0, 'months': 2.0, 'bought': 1.0, 'putting': 1.0, 'be': 1.0, 'my': 1.0, '2': 1.0, 'the': 3.0, 'for': 1.0, 'bother': 1.0, 'handle': 1.0, 'daughter': 1.0, 'when': 1.0, 'at': 2.0, 'once': 1.0, 'recommend': 1.0, 'was': 1.0, 'now': 1.0, 'to': 2.0, 'because': 1.0, 'it': 2.0, 'she': 5.0, 'black': 1.0, 't': 1.0, 'a': 1.0, 'white': 1.0, 'while': 1.0, 'designs': 1.0, 'biting': 1.0, 'enjoys': 1.0, 'is': 2.0, 'loved': 1.0, 'tabs': 1.0, 'enjoyed': 1.0, '5': 1.0, 'still': 1.0, 'teething': 1.0, 'in': 1.0, 'toy': 1.0, 'likes': 1.0}
Word element => {'toddler': 1.0, 'he': 1.0, 'that': 1.0, 'his': 1.0, 'or': 1.0, 'getting': 1.0, 'and': 2.0, 'it': 3.0, 'worry': 1.0, 'to': 1.0, 'look': 1.0, 'baby': 1.0, 'about': 1.0, 'like': 1.0, 'hold': 1.0, 'you': 1.0, 'album': 3.0, 'designs': 1.0, 'enjoys': 1.0, 'my': 2.0, 'have': 1.0, 'the': 2.0, 'loved': 1.0, 'chew': 1.0, 'looking': 1.0, 'can': 1.0, 'this': 1.0, 'pictures': 2.0, 'itself': 1.0, 'in': 1.0, 'now': 1.0, 'friendly': 1.0, 'photo': 2.0, 'don': 1.0, 'up': 1.0, 'there': 1.0, 'messed': 1.0, 'dirty': 1.0, 'they': 1.0, 'on': 2.0, 'sassy': 1.0, 'are': 1.0, 'even': 1.0, 'nice': 1.0, 'i': 1.0, 'brand': 1.0, 's': 1.0, 't': 1.0, 'a': 2.0, 'at': 2.0, 'lot': 1.0, 'son': 2.0, 'still': 1.0}
Word element => {'haha': 1.0, 'of': 1.0, 'sort': 1.0, 'broiler': 1.0, 'it': 3.0, 'this': 1.0, 'been': 1.0, 'teething': 1.0, 'able': 1.0, 'things': 1.0, 'was': 2.0, 'born': 1.0, 'aunt': 1.0, 'now': 1.0, 'had': 1.0, 'well': 1.0, 'has': 1.0, '16': 1.0, 'looking': 1.0, 'day': 1.0, 'son': 1.0, 'to': 2.0, 'as': 1.0, 'from': 1.0, 'on': 1.0, 'for': 1.0, 'months': 2.0, 'one': 2.0, 'my': 1.0, 'gift': 1.0, 'he': 5.0, 'received': 1.0, 'his': 3.0, 'hold': 1.0, 'in': 2.0, 'stuck': 1.0, 'the': 2.0, 'hands': 1.0, 'about': 1.0, 'old': 2.0, '4': 1.0, 'i': 1.0, 'a': 4.0, 's': 2.0, 'order': 1.0, 'him': 1.0, 'new': 1.0, 'p': 1.0, 'because': 1.0, 'melted': 1.0, 'at': 1.0, 'since': 1.0, '1st': 1.0}
Word element => {'often': 1.0, 'doesn': 1.0, 'grandparents': 1.0, 'recognize': 1.0, 'be': 1.0, 'them': 1.0, 'baby': 1.0, 'help': 1.0, 'way': 1.0, 'great': 1.0, 'is': 1.0, 'she': 1.0, 'it': 1.0, 'month': 1.0, 'and': 1.0, 'in': 3.0, 'been': 1.0, 'have': 2.0, 'able': 2.0, 'but': 1.0, 'pictures': 3.0, 'puts': 1.0, 'i': 2.0, 'old': 1.0, 'mine': 1.0, 'one': 2.0, 'the': 4.0, 'damaged': 1.0, 'fine': 1.0, 'reviews': 1.0, 'care': 1.0, 'not': 1.0, 'complained': 1.0, '5': 2.0, 'mouth': 1.0, 'about': 1.0, 'anyway': 1.0, 'don': 1.0, 'as': 2.0, 'to': 4.0, 'while': 1.0, 'we': 1.0, 't': 2.0, 'a': 3.0, 'd': 1.0, 'protect': 1.0, 'cents': 1.0, 'print': 1.0, 'since': 1.0, 'who': 1.0, 'so': 1.0, 'her': 2.0, 'only': 1.0, 'cost': 1.0, 'like': 2.0, 'being': 1.0, 'everything': 1.0, 'if': 1.0, '10': 1.0, 'seem': 1.0, 'gets': 1.0, 'really': 1.0, 'every': 1.0, 'of': 1.0, 'once': 1.0}
Word element => {'way': 1.0, 'some': 1.0, 'in': 1.0, 'to': 1.0, 'our': 1.0, 'talk': 1.0, 'so': 1.0, 'paper': 1.0, 'then': 1.0, 'of': 1.0, 'up': 2.0, 'with': 2.0, 'them': 2.0, 'out': 2.0, 'about': 1.0, 'tore': 1.0, 'sealed': 1.0, 'pouches': 1.0, 'idea': 1.0, 'extended': 1.0, 'family': 1.0, 'could': 1.0, 'a': 1.0, 'we': 2.0, 'is': 1.0, 'filled': 1.0, 'mo': 1.0, 'figured': 1.0, 'the': 3.0, 'had': 1.0, '12': 1.0, 'this': 1.0, 'pictures': 2.0, 'super': 1.0, 'would': 1.0, 'old': 1.0, 'great': 1.0, '1': 1.0, 'and': 1.0, 'day': 1.0, 'it': 2.0, 'she': 1.0, 'how': 1.0, 'pull': 1.0, 'or': 1.0, 'chewed': 1.0, 'within': 1.0, 'be': 1.0, 'better': 1.0, 'if': 1.0}
Word element => {'that': 1.0, 'babies': 1.0, 'for': 2.0, 'little': 1.0, 'destroy': 1.0, 'great': 2.0, 'they': 1.0, 'them': 1.0, 'is': 2.0, 'themselves': 1.0, 'pictures': 1.0, 'others': 1.0, 'like': 1.0, 'and': 1.0, 'product': 2.0, 'to': 1.0, 'this': 2.0, 'a': 2.0, 'see': 1.0, 'always': 1.0, 'of': 1.0, 'solution': 1.0, 'but': 1.0, 'instantly': 1.0}
Word element => {'dad': 1.0, 'mom': 1.0, 'uncles': 1.0, 'than': 1.0, 'pix': 1.0, 'the': 2.0, 'great': 2.0, 'images': 1.0, 'and': 1.0, 'away': 1.0, 'member': 1.0, 'family': 2.0, 'can': 1.0, 'little': 1.0, 'close': 1.0, 'gift': 1.0, 'grandparents': 1.0, 'for': 2.0, 'new': 1.0, 'etc': 1.0, 'before': 1.0, 'you': 1.0, 'a': 1.0, 'relatives': 1.0, 'familiarize': 1.0, 'of': 3.0, 'view': 1.0, 'rather': 1.0, 'if': 1.0, 'have': 2.0, 'aunts': 1.0, 'pictures': 1.0, 'wish': 1.0, 'that': 1.0, 'further': 1.0, 'with': 1.0, 'it': 1.0, 'baby': 3.0, 'them': 1.0, 'live': 1.0, 'made': 1.0, 'washable': 1.0, 'vinyl': 1.0, 'they': 1.0, 'visit': 1.0, 'just': 1.0, 'was': 1.0, 'really': 1.0, 'material': 1.0}
Word element => {'great': 1.0, '1': 1.0, 'difficult': 1.0, 'out': 2.0, 'good': 1.0, 'also': 1.0, 'but': 1.0, 'people': 1.0, 'of': 1.0, 'faces': 1.0, 'sticks': 1.0, 'sometimes': 1.0, 'fingers': 1.0, 'bad': 1.0, 'which': 1.0, 'tend': 1.0, 'do': 2.0, 'sleeves': 1.0, 'are': 2.0, 'and': 3.0, 'on': 1.0, 'impressed': 1.0, 'not': 1.0, 'photos': 3.0, 'me': 1.0, 'with': 1.0, 'this': 2.0, 'it': 3.0, 'durable': 1.0, 'makes': 1.0, 'old': 2.0, 'i': 1.0, 'product': 1.0, 'for': 2.0, 'one': 1.0, 'bought': 1.0, 'stick': 1.0, 'seeing': 1.0, 'they': 1.0, 'pages': 1.0, 'just': 1.0, 'the': 9.0, 'purchase': 1.0, 'family': 1.0, 'my': 1.0, 'am': 1.0, 'backpack': 1.0, 'case': 1.0, 'loves': 1.0, 'his': 3.0, 'year': 2.0, 'day': 1.0, 'tug': 1.0, 'care': 1.0, 'book': 2.0, 'all': 2.0, 'as': 1.0, 'to': 4.0, 'himself': 1.0, 'look': 1.0, 'takes': 1.0, 'up': 1.0, 'child': 1.0, 'home': 1.0, 'every': 1.0, 'turning': 1.0, 'in': 4.0, 'so': 1.0, 'needs': 1.0, 'a': 2.0, 'little': 2.0, 'pick': 1.0, 'fall': 1.0, 'is': 3.0, 'he': 3.0, 'plastic': 1.0}
Word element => {'easy': 1.0, 'very': 1.0, 'older': 1.0, 'it': 2.0, 'a': 1.0, 'not': 2.0, 'protected': 1.0, 'are': 1.0, 'for': 2.0, 'than': 1.0, 'photos': 1.0, 'age': 1.0, 'baby': 1.0, 'an': 1.0, 'but': 1.0, 'toddler': 1.0, 'really': 1.0, 'is': 3.0, 'desirable': 1.0, 'which': 1.0, 'nice': 1.0, 'to': 1.0, 'take': 1.0, 'them': 1.0, 'out': 1.0, 'other': 1.0, 'that': 1.0}
Word element => {'handle': 1.0, 'by': 1.0, 'attention': 1.0, 'her': 2.0, 'fun': 1.0, 'out': 1.0, 'them': 1.0, 'plan': 1.0, 'pages': 3.0, 'slide': 1.0, 'still': 1.0, 'difficult': 1.0, 'be': 1.0, 'but': 1.0, 'can': 1.0, 'photos': 1.0, 'hold': 1.0, 'like': 1.0, 'old': 1.0, 'almost': 1.0, 'key': 1.0, 'that': 1.0, 'changing': 1.0, 'into': 2.0, 'easier': 1.0, 'crazy': 1.0, 'was': 2.0, 'month': 1.0, 'it': 2.0, 'so': 1.0, 're': 1.0, 'sassy': 1.0, 'reviewers': 1.0, 'of': 1.0, '6': 1.0, 'catch': 1.0, 'pl900g': 1.0, 'state': 1.0, 'anyway': 1.0, 'don': 2.0, 'blank': 1.0, 'got': 1.0, 'use': 1.0, 'easy': 1.0, 'get': 1.0, 'album': 2.0, 'prints': 2.0, 'the': 10.0, 'in': 1.0, 'product': 1.0, 'for': 2.0, 'daughter': 1.0, 'other': 1.0, 's': 1.0, 'a': 1.0, 't': 2.0, 'we': 1.0, 'have': 2.0, '8': 2.0, 'this': 2.0, 'same': 1.0, 'because': 2.0, 'another': 1.0, 'often': 1.0, 'laminated': 2.0, 'my': 2.0, 'family': 1.0, 'when': 1.0, 'finish': 1.0, 'too': 1.0, 'and': 3.0, 'advice': 1.0, 'bought': 1.0, 'somescotch': 1.0, 'sealing': 1.0, 'x': 1.0, 'self': 1.0, 'laminating': 1.0, 'pouches': 1.0, 'glossy': 1.0, 'bag': 1.0, 'i': 4.0, '4': 1.0, '3': 2.0, 'on': 2.0, 'little': 1.0, 'inches': 2.0, 'drools': 1.0, '5': 2.0, 'then': 1.0, 'took': 1.0, 'per': 1.0, 'patterns': 1.0, 'any': 1.0, 'to': 4.0, 'great': 1.0, 'trimmed': 2.0}
Word element => {'holds': 1.0, 'it': 1.0, 'slightly': 1.0, 'so': 1.0, 'slots': 1.0, 'does': 1.0, '4': 1.0, 'one': 1.0, 'for': 1.0, 'less': 1.0, 'by': 1.0, 'are': 1.0, '2': 1.0, 'the': 1.0, 'total': 1.0, 'not': 2.0, 'apparently': 1.0, 'six': 1.0, 'x': 1.0, 'manufacturer': 1.0, '3': 1.0, '25': 1.0, 'and': 1.0, 'seven': 2.0, 'than': 1.0, '5': 1.0, 'photos': 2.0, '6': 1.0, 'there': 1.0, 'photo': 1.0, 'of': 1.0}
Word element => {'re': 1.0, 'they': 1.0, 'grandparents': 1.0, 'siblings': 1.0, 'not': 1.0, 'know': 1.0, 'to': 1.0, 'there': 1.0, 'of': 1.0, 'into': 1.0, 'book': 1.0, 'inside': 1.0, 'put': 1.0, 'daycare': 1.0, 'and': 2.0, 'child': 2.0, 'pictures': 1.0, 'parents': 1.0, 'for': 1.0, 'nice': 2.0, 'let': 1.0, 'super': 1.0, 'you': 1.0, 'when': 1.0, 'going': 1.0, 'multiple': 1.0, 'front': 1.0, 'a': 1.0, 'is': 1.0, 'on': 2.0, 'this': 1.0, 'have': 1.0, 'can': 1.0, 'their': 1.0, 'picture': 1.0, 'the': 4.0, 'family': 1.0}
Word element => {'granddaughter': 1.0, 'was': 1.0, 'the': 2.0, 'my': 2.0, 'who': 1.0, 'when': 1.0, 'i': 1.0, '1st': 1.0, 'baby': 2.0, 'she': 1.0, 'grat': 1.0, 'bought': 1.0, 'photos': 1.0, 'loves': 1.0, 'a': 2.0, 'gift': 1.0, 'still': 1.0, 'has': 1.0, 'it': 1.0, 'and': 1.0, 'original': 1.0, 'parents': 1.0, 'for': 1.0, 'new': 1.0}
Word element => {'my': 1.0, 'replaced': 1.0, 'time': 1.0, 'by': 1.0, 'interested': 1.0, 'not': 1.0, 'because': 1.0, 'nearly': 1.0, 'say': 1.0, 'rinse': 1.0, 'attempt': 1.0, 'failed': 1.0, 'a': 1.0, 'so': 1.0, 'after': 1.0, 'slots': 1.0, 'had': 1.0, 'to': 3.0, 'was': 2.0, 'baby': 1.0, 'another': 1.0, 'tossed': 1.0, 've': 1.0, 'in': 1.0, 'i': 4.0, 'for': 1.0, 'one': 3.0, 'great': 1.0, 'the': 5.0, 'second': 1.0, 'is': 1.0, 'as': 2.0, 'first': 1.0, 'this': 3.0, 'it': 1.0, 'picture': 1.0, 'impossible': 1.0, 'disinfect': 1.0, 'got': 1.0, 'purchased': 1.0, 'moisture': 1.0, 'and': 1.0, 'get': 2.0, 'newborns': 1.0, 'rid': 1.0, 'of': 1.0, 'plastic': 1.0}
Word element => {'picture': 1.0, 'all': 1.0, 'could': 1.0, 'to': 1.0, 'from': 1.0, 'chemicals': 1.0, 'son': 1.0, 'my': 1.0, 'when': 1.0, 'pictures': 1.0, 'for': 1.0, 'in': 1.0, 'mouth': 1.0, 'hopefully': 1.0, 'any': 1.0, 'baby': 1.0, 'saliva': 1.0, 'didn': 1.0, 'little': 1.0, 'idea': 1.0, 'started': 1.0, 'because': 1.0, 'not': 2.0, 'good': 2.0, 'is': 2.0, 'a': 4.0, 'he': 1.0, 'with': 1.0, 'it': 2.0, 'they': 1.0, 'but': 1.0, 'put': 2.0, 'eat': 1.0, 'everything': 1.0, 't': 1.0, 'the': 2.0, 'and': 1.0, 'play': 1.0, 'combination': 1.0, 'i': 1.0}
Word element => {'work': 1.0, 'back': 1.0, 'care': 1.0, 'she': 1.0, 'months': 2.0, 's': 2.0, 'album': 1.0, 'loved': 2.0, '10': 1.0, 'has': 1.0, 'several': 1.0, 'when': 1.0, 'daughter': 1.0, 'too': 1.0, 'went': 1.0, 'my': 2.0, 'i': 3.0, 'for': 1.0, 'love': 1.0, 'this': 1.0, 'it': 3.0, 'provider': 1.0, 'great': 1.0, 'a': 1.0, 'gift': 1.0, 'sending': 1.0, 'now': 2.0, 'to': 2.0, 'day': 1.0}
Word element => {'time': 1.0, 'at': 1.0, 'them': 1.0, 'all': 1.0, 'have': 1.0, 'day': 1.0, 'mom': 1.0, 'will': 2.0, 'gift': 1.0, 'be': 1.0, 'sure': 1.0, 'make': 1.0, 'a': 2.0, 'go': 1.0, 'great': 1.0, 'special': 1.0, 'its': 2.0, 'to': 3.0, 'those': 1.0, 'item': 1.0, 'with': 1.0, 'shower': 1.0, 'this': 1.0, 'that': 3.0, 'buy': 1.0, 'i': 2.0, 'love': 1.0, 'one': 1.0, 'baby': 2.0, 'whenever': 1.0, 'price': 1.0, 'you': 1.0, 'personalize': 1.0, 'and': 3.0, 'items': 1.0, 'of': 1.0}
Word element => {'design': 1.0, 'insert': 1.0, 'out': 2.0, 'made': 1.0, 'it': 3.0, 'way': 1.0, 'you': 2.0, '6': 1.0, 'of': 3.0, 'a': 2.0, 'picture': 3.0, '4': 1.0, 'ends': 1.0, 'one': 1.0, 'complaint': 1.0, 'where': 1.0, 'for': 1.0, 'product': 1.0, 'be': 2.0, 'about': 1.0, 'completely': 1.0, 'is': 1.0, 'really': 1.0, 'that': 2.0, 'my': 1.0, 'the': 4.0, 'its': 1.0, 'had': 1.0, 'easy': 1.0, 'kid': 1.0, 'sticks': 1.0, 'rip': 1.0, 'little': 1.0, 'to': 1.0, 'all': 1.0, 'bad': 1.0, 'would': 2.0, 'this': 1.0, 'pictures': 1.0, 'perfect': 1.0, 'in': 1.0, 'if': 1.0, 'means': 1.0, 'they': 1.0, 'bigger': 1.0, 'space': 1.0, 'just': 1.0, 'so': 1.0}
Word element => {'babies': 1.0, 'slobbery': 1.0, 'mom': 1.0, 'mommy': 1.0, 'book': 1.0, 'but': 1.0, 'work': 1.0, 'these': 1.0, 'infants': 1.0, 'put': 1.0, 'on': 2.0, 'actual': 1.0, 'to': 4.0, 'was': 2.0, 'the': 4.0, 'deal': 1.0, 'place': 1.0, 'be': 1.0, 'connecting': 1.0, 'there': 2.0, 'of': 1.0, 'up': 1.0, 'onto': 1.0, '34': 2.0, 'it': 1.0, 'thought': 1.0, 'reason': 1.0, 'in': 1.0, 'picture': 3.0, 'i': 4.0, 'ended': 1.0, 's': 1.0, 'a': 3.0, '5': 1.0, 'would': 1.0, 'give': 1.0, 'not': 1.0, 'because': 1.0, 'no': 2.0, 'sleeve': 1.0, 'great': 1.0, 'big': 1.0, 'did': 1.0, 'laminating': 1.0, 'used': 1.0, 'back': 2.0, 'create': 1.0, 'albums': 1.0, 'for': 2.0, 'another': 1.0, 'family': 1.0, 'my': 1.0, 'only': 1.0, 'nursery': 1.0}
Word element => {'baby': 1.0, 'shower': 1.0, 'of': 1.0, 'part': 1.0, 'give': 1.0, 'now': 1.0, 'were': 1.0, 'would': 1.0, 'he': 1.0, 'visited': 1.0, 'their': 1.0, 'with': 1.0, 'filled': 1.0, 'so': 2.0, 'like': 1.0, 'know': 1.0, 'immediate': 1.0, 'gifts': 1.0, 'are': 1.0, 'put': 1.0, 'but': 2.0, 'had': 1.0, 'fingers': 1.0, 'photo': 2.0, 'when': 1.0, 'you': 1.0, 'great': 1.0, 'the': 2.0, 'it': 4.0, 'this': 1.0, 'kids': 1.0, 'changed': 1.0, 'people': 1.0, 'has': 1.0, 'some': 1.0, 'family': 2.0, 'my': 1.0, 'in': 2.0, 'years': 1.0, 'over': 1.0, 'don': 1.0, 'about': 1.0, 'members': 1.0, 'worry': 1.0, 'i': 2.0, 'and': 3.0, 'get': 1.0, 'learn': 1.0, 'for': 1.0, 'grandparents': 1.0, 'who': 2.0, 'they': 2.0, 'dirty': 1.0, 'have': 1.0, 'as': 1.0, 'to': 5.0, 'all': 1.0, 'really': 1.0, 'slobber': 1.0, 'one': 1.0, 'cool': 1.0, 's': 4.0, 't': 2.0, 'we': 3.0, 'didn': 1.0, 'close': 1.0, 'live': 1.0}
Word element => {'odor': 1.0, 'feel': 1.0, 'side': 1.0, 'tabs': 1.0, 'match': 1.0, 'colors': 1.0, 'look': 1.0, 'baby': 1.0, 'so': 1.0, 'even': 1.0, 'picture': 1.0, 'without': 1.0, 'the': 7.0, 'different': 1.0, 'designs': 2.0, 'white': 1.0, 'black': 1.0, 'there': 2.0, 'that': 2.0, 'like': 1.0, 'still': 1.0, 'son': 1.0, 'slots': 1.0, 'with': 1.0, 'are': 4.0, 'no': 1.0, 'matte': 1.0, 'about': 1.0, 'on': 2.0, 'put': 2.0, 'book': 1.0, 'will': 1.0, 'at': 1.0, 'who': 2.0, 'has': 1.0, 'likes': 2.0, 'old': 1.0, 'i': 5.0, 'putting': 1.0, 'plastic': 1.0, 'he': 1.0, 'it': 6.0, 'month': 1.0, 'and': 8.0, 'bordered': 1.0, 'older': 1.0, 'now': 1.0, 'had': 1.0, 'to': 3.0, 'each': 1.0, 've': 1.0, 'turn': 1.0, 'in': 4.0, 'very': 1.0, 'little': 1.0, 'pages': 1.0, 'they': 1.0, 'drooling': 1.0, 'color': 1.0, 'one': 1.0, 'months': 2.0, 'photo': 1.0, 'of': 3.0, 'where': 1.0, 'for': 1.0, 'yet': 1.0, 't': 1.0, 'a': 4.0, 'soft': 1.0, 'this': 1.0, 'pictures': 3.0, 'when': 1.0, 'plan': 1.0, 'is': 3.0, 'by': 1.0, 'few': 1.0, 'not': 1.0, '10': 1.0, 'everything': 1.0, 'town': 1.0, 'his': 1.0, 'mouth': 1.0, 'my': 3.0, 'family': 1.0, 'members': 1.0, 'smooth': 1.0, 'haven': 1.0, 'live': 1.0, 'bold': 1.0, 'page': 1.0, 'couple': 1.0, 'out': 1.0, 'talk': 1.0}
Word element => {'cheap': 1.0, 'pictures': 1.0, 'of': 1.0, 'ton': 1.0, 'hold': 1.0, 'but': 1.0, 'doesn': 1.0, 'at': 1.0, 'pages': 1.0, 'a': 1.0, 'black': 1.0, 'and': 2.0, 'baby': 2.0, 'look': 1.0, 'to': 3.0, 'prints': 2.0, 'survive': 1.0, 'change': 1.0, 'drool': 1.0, 'enough': 1.0, 'should': 1.0, 'allow': 1.0, 'aren': 1.0, 'the': 2.0, 't': 2.0, 'have': 1.0, 'that': 1.0, 'used': 1.0, 'this': 1.0, 'with': 1.0, 'are': 1.0, 'pics': 1.0, 'frequently': 1.0, 'nice': 1.0, 'out': 1.0, 'them': 1.0, 'white': 1.0, 'graphics': 1.0, 'for': 1.0}
Word element => {'family': 1.0, 'all': 1.0, 'points': 1.0, 'loves': 2.0, 'and': 2.0, 'months': 1.0, '11': 1.0, 'son': 1.0, 'who': 1.0, 'my': 1.0, 'is': 2.0, 'felt': 1.0, 'book': 1.0, 'photo': 1.0, 'i': 2.0, 'for': 1.0, 'one': 1.0, '7': 1.0, 'it': 1.0, 'sister': 1.0, 'this': 2.0, 'he': 1.0, 'to': 1.0, 'now': 1.0, 'had': 1.0, 'was': 1.0, 'a': 1.0, 'baby': 2.0, 'her': 1.0, 'his': 1.0, 'when': 1.0, 'too': 1.0, 'she': 2.0, 'needed': 1.0}
Word element => {'keep': 1.0, 'game': 1.0, 'constant': 1.0, 'keeps': 1.0, 'of': 1.0, 'bottom': 1.0, 'wetting': 1.0, 'down': 1.0, 'even': 1.0, 'but': 2.0, 'doesn': 1.0, 'he': 1.0, 'first': 1.0, 'this': 1.0, 'it': 4.0, 'month': 1.0, 'tried': 1.0, 'old': 1.0, 'to': 2.0, 'trying': 1.0, 's': 1.0, 'enjoys': 1.0, 'suctioned': 1.0, 'off': 1.0, 'or': 1.0, 'son': 1.0, '5': 1.0, 'a': 1.0, 'well': 1.0, 't': 1.0, 'the': 2.0, 'pulling': 1.0, 'my': 1.0, 'high': 1.0, 'stay': 1.0, 'chair': 1.0, 'table': 1.0, 'we': 1.0, 'stuck': 1.0, 've': 1.0}
Word element => {'quality': 1.0, 'product': 1.0, 'poor': 1.0, 'has': 1.0, 'title': 1.0, 's': 1.0, 'suction': 1.0, 'however': 1.0, 'guess': 1.0, 'the': 1.0, 'i': 1.0, 'said': 1.0, 'for': 1.0, 'all': 1.0, 'improvement': 1.0, 'it': 3.0, 'great': 1.0, 'needs': 1.0, 'highchairs': 1.0}
Word element => {'down': 1.0, 'run': 1.0, 'though': 1.0, 'every': 1.0, 'bag': 1.0, 'diaper': 1.0, 'in': 1.0, 'other': 1.0, 'good': 1.0, 'enough': 1.0, 'off': 1.0, 'up': 1.0, 'light': 2.0, 'white': 1.0, 'movement': 3.0, 'feels': 1.0, 'illuminates': 1.0, 'ball': 1.0, 'only': 1.0, 'one': 1.0, 'entertained': 1.0, 'baby': 1.0, 'keep': 1.0, 'sensitive': 1.0, 'stops': 1.0, 'restaurant': 1.0, 'round': 1.0, 'us': 1.0, 'pink': 1.0, 'with': 2.0, 'pretty': 1.0, 'take': 1.0, 'inexpensive': 1.0, 'was': 1.0, 'why': 1.0, 'go': 1.0, 'we': 1.0, 'a': 2.0, 'dab': 1.0, 'pulled': 1.0, 'when': 2.0, 'idea': 1.0, 'you': 2.0, 'so': 1.0, 'dots': 1.0, 'surface': 1.0, 'son': 1.0, 'stick': 1.0, 'from': 1.0, 'comes': 1.0, 'is': 3.0, 'probably': 1.0, 'adult': 1.0, 'sure': 1.0, 'this': 2.0, 'have': 3.0, 'sale': 1.0, 'as': 1.0, 'to': 6.0, 'old': 1.0, 'note': 1.0, 'an': 2.0, 'but': 1.0, 'likes': 1.0, 'toy': 1.0, 'i': 2.0, '4': 1.0, 'on': 4.0, 'eventually': 1.0, 'my': 1.0, 'cup': 1.0, 'it': 5.0, 'month': 1.0, 'of': 1.0, 'water': 1.0, 'the': 10.0, 'here': 1.0, 'be': 2.0, 'suction': 1.0, 'ok': 1.0, 'saw': 1.0, 'and': 2.0, 'not': 2.0, 'hand': 1.0, 'which': 1.0, 'table': 1.0, 'item': 2.0, 'some': 1.0, 'battery': 1.0, 'thing': 1.0, 'no': 1.0, 'for': 3.0, 'where': 1.0, 'web': 1.0, 'almost': 1.0, '50': 1.0}
Word element => {'control': 1.0, 'effect': 1.0, 'cause': 1.0, 'in': 1.0, 'engrossed': 1.0, 'they': 2.0, 'ones': 1.0, 'very': 1.0, 'really': 1.0, 'ball': 1.0, 'ok': 1.0, 'was': 2.0, 'doesn': 1.0, 'off': 1.0, 'are': 2.0, 'gifts': 1.0, 'cups': 1.0, 'all': 1.0, 'as': 3.0, 'to': 2.0, 'that': 2.0, 'next': 1.0, 'but': 2.0, 'get': 1.0, 'bumbo': 1.0, 'time': 1.0, 'can': 2.0, 'so': 1.0, 'friends': 1.0, 'isn': 1.0, 'getting': 1.0, 'well': 2.0, 'i': 6.0, 'restaurants': 1.0, 'purposefully': 1.0, 'little': 1.0, 'two': 1.0, 'plan': 1.0, 'tray': 1.0, 'bought': 1.0, 'and': 7.0, 'soon': 1.0, 'sit': 1.0, 'suction': 2.0, 'up': 2.0, 'anyway': 1.0, 'child': 2.0, 'table': 1.0, 'our': 1.0, 'how': 1.0, 'place': 1.0, 'could': 1.0, 't': 3.0, 'we': 2.0, 'going': 1.0, 'go': 1.0, 'a': 1.0, 's': 1.0, 'enough': 1.0, 'loved': 2.0, 'from': 1.0, 'while': 1.0, 'son': 2.0, 'on': 4.0, 'strong': 1.0, 'think': 1.0, 'your': 1.0, 'my': 2.0, 'another': 1.0, 'agree': 1.0, 'great': 1.0, 'highchair': 1.0, 'he': 3.0, 'love': 1.0, 'for': 4.0, 'would': 1.0, 'something': 1.0, 'is': 3.0, 'at': 2.0, 'swatting': 1.0, 'this': 6.0, 'it': 6.0, 'works': 1.0, 'much': 1.0, 'even': 1.0, 'his': 2.0, 'by': 1.0, 'pull': 1.0, 'bored': 1.0, 'the': 7.0, 'of': 2.0, 'shower': 1.0, 'toy': 3.0, 'used': 1.0, 'with': 2.0, 'version': 1.0, 'buying': 1.0, 'am': 1.0, 'able': 1.0, 'you': 3.0, 'fascinating': 1.0, 'entertain': 1.0, 'still': 1.0, 'if': 1.0, 'eat': 1.0, 'light': 3.0, 'using': 1.0, 'looking': 1.0, 'out': 1.0, 'wrong': 1.0, 'have': 2.0}
Word element => {'are': 1.0, 'how': 1.0, 'if': 1.0, 'now': 1.0, 'with': 1.0, 'do': 1.0, 'bad': 1.0, 'really': 1.0, 'have': 1.0, 'recommendations': 1.0, 'good': 1.0, 'and': 1.0, 'reviews': 1.0, 'others': 1.0, 'know': 1.0, 'like': 1.0, 'reading': 1.0, 'what': 1.0, 'thought': 1.0, 'help': 1.0, 'water': 1.0, 'at': 2.0, 'by': 1.0, 'just': 2.0, 'high': 1.0, 'purchase': 1.0, 'my': 1.0, 'the': 6.0, 'it': 9.0, 'gave': 1.0, 'mouth': 1.0, 'because': 1.0, 'does': 3.0, 'i': 3.0, 'kids': 1.0, 'this': 1.0, 'minute': 1.0, 'toy': 3.0, 'baby': 1.0, 'use': 2.0, 'in': 2.0, 'itself': 1.0, 'be': 2.0, 'suction': 2.0, 'supposed': 1.0, 'for': 1.0, 'stars': 1.0, 'don': 1.0, 'up': 1.0, 'stick': 1.0, 'reason': 1.0, 'ok': 2.0, 'very': 1.0, 'to': 5.0, 'all': 3.0, 'as': 2.0, 'work': 1.0, 'but': 3.0, '2': 1.0, 'can': 1.0, 'not': 5.0, 'stay': 2.0, 'chair': 1.0, 'more': 1.0, 'completely': 1.0, 'is': 5.0, 'great': 1.0, '1': 2.0, 'ends': 1.0, 'on': 1.0, 'going': 1.0, 'we': 1.0, 't': 1.0, 's': 1.0, 'cup': 2.0, 'or': 1.0, 'floor': 1.0, 'would': 1.0, 'impressive': 1.0}
Word element => {'very': 1.0, 'him': 1.0, 'will': 1.0, 'chair': 1.0, 'high': 1.0, 'in': 1.0, 'when': 1.0, 'smiles': 1.0, 'and': 2.0, 'month': 1.0, 'can': 1.0, 'although': 1.0, 'to': 1.0, 'a': 1.0, 'busy': 1.0, 'four': 1.0, 'purchased': 1.0, 'use': 1.0, 'he': 3.0, 'it': 3.0, 'this': 1.0, 'sits': 1.0, 't': 1.0, 'loves': 1.0, 'old': 1.0, 'i': 1.0, 'on': 1.0, 'his': 2.0, 'for': 1.0, 'yet': 1.0, 'keep': 1.0, 'own': 1.0, 'watch': 1.0, 'move': 1.0}
Word element => {'him': 1.0, 'pulls': 1.0, 'she': 1.0, 'face': 1.0, 'not': 1.0, 'working': 1.0, 'play': 1.0, 'suction': 1.0, 'if': 1.0, 'problem': 1.0, 'issue': 1.0, 't': 1.0, 'the': 1.0, 'at': 1.0, 'let': 1.0, 'safety': 1.0, 'a': 1.0, 'is': 2.0, 'he': 1.0, 'it': 3.0, 'with': 1.0, 'all': 1.0, 'hit': 1.0, 'ever': 1.0, 'your': 1.0, 'don': 1.0, 'baby': 1.0, 'towards': 1.0, 'will': 1.0, 'her': 2.0, 'his': 1.0}
Word element => {'more': 1.0, 'appreciate': 1.0, 'cutest': 1.0, 'if': 1.0, 'only': 1.0, 'this': 1.0, 'stick': 1.0, 'kind': 1.0, 'for': 2.0, 'problem': 1.0, 'given': 1.0, 'i': 4.0, 'old': 1.0, 'the': 2.0, 'have': 1.0, '8': 1.0, 'sit': 1.0, 'doesn': 1.0, 'was': 2.0, 'to': 4.0, 'thought': 1.0, 'had': 1.0, 'little': 1.0, 'my': 1.0, 'high': 1.0, 'toy': 1.0, 'daughter': 1.0, 'when': 1.0, 'her': 2.0, 'chair': 1.0, 'one': 1.0, 'tray': 1.0, 'second': 1.0, 'it': 4.0, 'month': 1.0, 'she': 3.0, 'of': 1.0, 'plays': 1.0, 't': 1.0, 'a': 1.0, 'then': 1.0, 'shoves': 1.0, 'off': 1.0, 'think': 1.0, 'floor': 1.0, 'maybe': 1.0, 'just': 1.0, 'learning': 1.0, 'would': 1.0}
Word element => {'toy': 1.0, 'was': 1.0, 'part': 1.0, 'suction': 1.0, 'cleaning': 1.0, 'oddly': 1.0, 'like': 1.0, 'while': 1.0, 'later': 1.0, 'but': 3.0, 'most': 1.0, 'would': 2.0, 'stick': 1.0, 've': 1.0, 'what': 1.0, 'table': 1.0, 'll': 2.0, '8': 1.0, 'tumble': 1.0, 'be': 3.0, 'on': 4.0, 'floor': 3.0, 'put': 1.0, 'things': 1.0, 'i': 5.0, 'loves': 1.0, 'play': 1.0, 'and': 2.0, 'thought': 1.0, 'it': 11.0, 't': 3.0, 'a': 5.0, 'stronger': 1.0, 'avail': 1.0, 's': 1.0, 'great': 3.0, 'surface': 1.0, 'everything': 1.0, 'if': 1.0, 'can': 2.0, 'so': 2.0, 'bit': 1.0, 'concept': 1.0, 'tile': 1.0, 'held': 1.0, 'that': 1.0, 'because': 1.0, 'drops': 1.0, 'his': 2.0, 'in': 2.0, 'my': 2.0, 'to': 8.0, 'high': 3.0, 'chair': 3.0, 'with': 2.0, 'he': 5.0, 'is': 3.0, 'does': 2.0, 'kitchen': 1.0, 'no': 1.0, 'this': 3.0, 'few': 1.0, 'just': 1.0, 'using': 1.0, 'light': 1.0, 'seconds': 1.0, 'month': 1.0, 'hear': 1.0, 'heavy': 1.0, 'drop': 2.0, 'five': 1.0, 'minutes': 1.0, 'doesn': 1.0, 'taken': 1.0, 'out': 1.0, 'even': 1.0, 'components': 1.0, 'base': 1.0, 'some': 1.0, 'all': 1.0, 'other': 1.0, 'ever': 1.0, 'links': 1.0, 'attach': 1.0, 'ball': 1.0, 'way': 1.0, 'spin': 1.0, 'little': 1.0, 'probably': 1.0, 'water': 1.0, 'up': 1.0, 'tried': 1.0, 'seems': 1.0, 'the': 12.0, 'of': 1.0, 'attention': 1.0, 'alcohol': 1.0, 'catches': 1.0, 'seem': 1.0, 'interested': 1.0, 'old': 1.0, 'spinning': 1.0}
Word element => {'too': 1.0, 'veggies': 1.0, 'fruits': 1.0, 'feed': 1.0, 'loves': 1.0, 'it': 1.0, 'light': 1.0, 'her': 1.0, 'high': 1.0, 'be': 1.0, 'to': 2.0, 'waiting': 1.0, 'enjoy': 1.0, 'and': 2.0, 'enjoys': 1.0, 'when': 1.0, 'totally': 1.0, 'on': 1.0, 'chair': 1.0, 'the': 2.0}
Word element => {'last': 1.0, 'how': 1.0, 'not': 1.0, 'kids': 1.0, 'multiple': 1.0, 'have': 1.0, 'you': 1.0, 'are': 2.0, 'so': 1.0, 't': 1.0, 'doesn': 1.0, 'if': 1.0, 'every': 1.0, 'sticks': 1.0, 'sure': 2.0, 'make': 1.0, 'wiggle': 1.0, 'bit': 1.0, 'friends': 1.0, 'toy': 2.0, 'has': 1.0, 'will': 1.0, 'sticking': 1.0, 'station': 1.0, 'day': 1.0, 'buy': 1.0, 'for': 1.0, 'love': 1.0, 'stars': 2.0, 'months': 1.0, 'instantly': 1.0, 'with': 1.0, 'this': 1.0, 'toys': 1.0, 'fell': 1.0, 'anywhere': 1.0, 'bulky': 1.0, 'about': 1.0, 'works': 1.0, 'slightly': 1.0, 'without': 1.0, 'm': 1.0, 'in': 4.0, 'got': 1.0, 'daughter': 1.0, 'well': 2.0, 'i': 6.0, '4': 2.0, 'home': 1.0, 'plant': 1.0, 'her': 1.0, 'friend': 2.0, 'table': 5.0, 'like': 2.0, 'a': 5.0, 's': 2.0, 'after': 1.0, 'illumination': 1.0, 'long': 1.0, 'on': 4.0, 'your': 2.0, 'had': 1.0, 'to': 12.0, 'was': 2.0, 'because': 1.0, 'borrow': 1.0, 'trip': 1.0, 'and': 6.0, 'my': 7.0, 'me': 1.0, 'while': 3.0, 'stick': 2.0, 'hard': 2.0, 'some': 1.0, 'give': 1.0, 'there': 1.0, 'lights': 1.0, 'instead': 1.0, 'the': 15.0, 'of': 2.0, 'planning': 1.0, 'were': 1.0, 'hawaii': 1.0, 'as': 2.0, 'diaper': 1.0, 'tool': 1.0, 'wears': 1.0, 'keep': 2.0, 'is': 5.0, 'at': 1.0, 'little': 1.0, 'entertained': 2.0, 'sit': 1.0, 'couch': 1.0, 'dinner': 1.0, 'time': 3.0, 'new': 1.0, '5': 2.0, 'wonderful': 1.0, 'old': 3.0, 'do': 1.0, 'floor': 1.0, 'son': 2.0, 'twirl': 1.0, 'better': 1.0, 'than': 1.0, 'one': 4.0, 'ones': 1.0, 'off': 1.0, 'yes': 1.0, 'bag': 2.0, 'light': 1.0, 'up': 1.0, 'it': 12.0, 'him': 1.0, 'suction': 3.0, 'now': 1.0, 'trick': 1.0, '2': 1.0, 'let': 1.0, 'years': 1.0, 'other': 1.0, 'then': 1.0, 'we': 3.0, 'reviews': 1.0, 'getting': 1.0, 'really': 1.0}
Word element => {'with': 1.0, 'up': 2.0, 'themselves': 1.0, 'one': 1.0, 'i': 1.0, 'etc': 1.0, 'both': 1.0, 'entertained': 1.0, 'this': 1.0, 'only': 1.0, 'is': 2.0, 'great': 1.0, 'the': 2.0, 'my': 2.0, 'high': 1.0, 'cup': 1.0, 'pull': 1.0, 'am': 1.0, 'when': 1.0, 'twins': 2.0, 'chair': 1.0, 'toy': 1.0, 'to': 1.0, 'getting': 1.0, 'cleaning': 1.0, 'them': 2.0, 'ready': 1.0, 'keep': 1.0, 'better': 2.0, 'thing': 1.0, '8': 1.0, 'that': 1.0, 'something': 1.0, 'hit': 1.0, 'a': 2.0, 'could': 1.0, 'head': 1.0, 'be': 1.0, 'suction': 1.0, 'which': 1.0, 'month': 1.0, 'food': 1.0, 'can': 2.0, 'then': 1.0, 'old': 1.0, 'makes': 1.0, 'they': 1.0, 'in': 1.0}
Word element => {'well': 1.0, 'spin': 1.0, 'doesn': 1.0, 'so': 1.0, 'lopsided': 1.0, 'it': 2.0, 'makes': 1.0, 'bulb': 1.0, 'up': 1.0, 'as': 2.0, 'suction': 1.0, 'toy': 1.0, 'not': 1.0, 'the': 2.0, 'light': 1.0, 't': 1.0, 'highchair': 1.0, 'other': 1.0, 'sassy': 1.0, 'good': 2.0, 'toys': 1.0}
Word element => {'out': 1.0, 'bought': 1.0, 'up': 1.0, 'end': 1.0, 'a': 1.0, 'we': 1.0, 'for': 2.0, 'love': 1.0, 'would': 1.0, 'he': 1.0, 'tell': 1.0, 'shockingly': 1.0, 'at': 1.0, 'since': 1.0, 'then': 2.0, 'loved': 1.0, 'using': 1.0, 'table': 1.0, 'popped': 1.0, 'chair': 3.0, 'high': 3.0, 'my': 1.0, 'cup': 2.0, 'his': 1.0, 'is': 1.0, 'second': 1.0, 'son': 1.0, 'test': 1.0, 'won': 1.0, 'toy': 2.0, 'was': 1.0, 'the': 5.0, 'restaurants': 1.0, 'i': 5.0, 'it': 9.0, 'this': 2.0, 'off': 2.0, 'award': 1.0, 'stuck': 1.0, 'terrible': 1.0, 'as': 1.0, 'to': 1.0, 'our': 1.0, 'll': 1.0, 'especially': 1.0, 'an': 1.0, 'can': 1.0, 'but': 2.0, 'did': 1.0, 'thought': 1.0, 'blaming': 1.0, 'suction': 3.0, 'anyone': 1.0, 'trying': 1.0, 'on': 3.0, '3': 1.0, 'other': 1.0, 'fun': 1.0, 'm': 1.0, 'play': 1.0, 'and': 2.0, 'surfaces': 1.0, 'too': 2.0, 'bad': 2.0, 'maybe': 1.0, 'because': 1.0}
Word element => {'while': 1.0, 'in': 1.0, 'toy': 1.0, 'to': 1.0, 'but': 1.0, 'greatest': 1.0, 'that': 1.0, 'is': 1.0, 'once': 1.0, 'fun': 1.0, 'things': 1.0, 'sticking': 1.0, 'a': 2.0, 'isn': 1.0, 'only': 1.0, 'with': 1.0, 'come': 1.0, 'it': 3.0, 'the': 3.0, 't': 1.0, 'high': 1.0, 'unstuck': 1.0, 'chair': 1.0, 'try': 1.0, 'does': 1.0}
Word element => {'stick': 1.0, 'surface': 1.0, 'are': 1.0, 'not': 1.0, 'style': 1.0, 'use': 1.0, 'they': 1.0, 'because': 1.0, 'most': 1.0, 'work': 1.0, 'during': 1.0, 'was': 1.0, 'old': 1.0, 'months': 1.0, 'on': 3.0, 'won': 1.0, 'the': 7.0, 'great': 1.0, 'a': 1.0, 'we': 2.0, 't': 1.0, 'my': 1.0, 'banquet': 1.0, 'this': 2.0, 'it': 3.0, 'with': 1.0, 'worked': 1.0, 'son': 1.0, 'product': 1.0, 'for': 1.0, 'entertain': 1.0, 'when': 2.0, 'us': 1.0, 'to': 4.0, 'our': 1.0, 'nonporous': 1.0, 'buffet': 1.0, 'used': 1.0, 'long': 1.0, 'cloth': 1.0, 'carnival': 1.0, 'cruise': 2.0, 'him': 1.0, '9': 1.0, 'dinners': 1.0, 'stuck': 1.0, 'in': 1.0, 'tables': 4.0, 'and': 1.0, 'lines': 1.0, 'dining': 2.0, 'room': 1.0, 'slid': 1.0, 'which': 1.0, 'table': 1.0, 'up': 1.0, '34': 2.0, 'some': 1.0, 'needs': 1.0, 'ships': 1.0, 'new': 1.0, 'have': 1.0, 'smooth': 3.0, 'topped': 1.0}
Word element => {'play': 1.0, 'table': 1.0, 'and': 1.0, 'babies': 1.0, 'off': 1.0, 'with': 1.0, 'it': 2.0, 'love': 1.0, 'suction': 2.0, 'strong': 1.0, 'not': 1.0, 'is': 1.0, 'the': 5.0, 'pull': 1.0, 'my': 1.0, 'like': 1.0, 'easily': 1.0, 'i': 1.0, 'did': 1.0, 'rattle': 1.0, 'very': 2.0, 'from': 1.0, 'detached': 1.0, 'twins': 1.0, 'to': 1.0}
Word element => {'absolutely': 1.0, 'special': 1.0, 'old': 1.0, 'to': 1.0, 'being': 1.0, 'yr': 1.0, '3': 1.0, 'for': 1.0, 'due': 1.0, 'my': 1.0, 'grandson': 1.0, 'medically': 1.0, 'bought': 1.0, '4': 1.0, 'months': 1.0, 'needs': 1.0, 'physically': 1.0, 'both': 1.0, 'premature': 1.0, 'it': 1.0, 'this': 1.0, 'he': 2.0, 'is': 1.0, 'and': 2.0, 'loves': 1.0, 'challenged': 1.0}
Word element => {'about': 1.0, 'anything': 1.0, 'said': 1.0, 'with': 1.0, 'is': 3.0, 'ball': 1.0, 'unevenly': 1.0, 'that': 2.0, 'weighted': 1.0, 'hold': 1.0, 'like': 1.0, 'for': 2.0, 'supposed': 1.0, 'it': 8.0, 'only': 2.0, 'heavy': 1.0, 'stuck': 2.0, 'a': 1.0, 't': 3.0, 's': 3.0, 'round': 1.0, 'also': 1.0, 'swings': 1.0, 'play': 1.0, 'and': 5.0, 'too': 1.0, 'i': 3.0, 'even': 1.0, 'okay': 2.0, 'doesn': 2.0, 'does': 1.0, 'stay': 2.0, 'grandson': 1.0, 'option': 1.0, 'at': 1.0, 'some': 1.0, 'chain': 2.0, 'as': 1.0, 'to': 4.0, 'all': 1.0, 'likes': 1.0, 'light': 1.0, 'don': 1.0, 'up': 1.0, 'always': 1.0, 'down': 2.0, 'bottom': 1.0, 'so': 3.0, 'very': 1.0, 'from': 2.0, 'second': 1.0, 'occasionally': 1.0, 'hanging': 1.0, 'the': 4.0, 'heavier': 1.0, 'hung': 1.0, 'plastic': 2.0, 'my': 1.0, 'him': 1.0}
Word element => {'because': 1.0, 'anyway': 1.0, 'fun': 1.0, 'highchair': 1.0, 'it': 2.0, 'this': 1.0, 'other': 1.0, 'get': 1.0, 'granddaughters': 1.0, 'can': 1.0, 'stick': 2.0, 'lights': 1.0, 'to': 4.0, 'still': 1.0, 't': 1.0, 'the': 3.0, 'bought': 1.0, 'is': 1.0, 'side': 1.0, 'i': 2.0, 'bathtub': 1.0, 'my': 1.0, 'cup': 1.0, 'up': 1.0, 'of': 1.0, 'suction': 1.0, 'anything': 1.0, 'than': 1.0, 'they': 1.0, 'think': 1.0}
Word element => {'well': 1.0, 'very': 1.0, 'match': 1.0, 'dont': 1.0, 'and': 1.0, 'when': 1.0, 'i': 1.0, 'device': 1.0, 'though': 1.0, 'which': 1.0, 'be': 1.0, 'saying': 1.0, 'adverise': 1.0, 'will': 1.0, 'an': 1.0, 'but': 1.0, 'the': 3.0, 'unfortunately': 1.0, 'are': 1.0, 'its': 1.0, 'electronic': 1.0, 'there': 1.0, 'they': 2.0, 'makes': 1.0, 'first': 1.0, 'only': 1.0, 'sounds': 3.0, 'written': 1.0}
Word element => {'all': 1.0, 'thats': 1.0, 'his': 1.0, 'not': 1.0, 'just': 1.0, 'more': 1.0, 'wish': 1.0, 'a': 1.0, 'played': 1.0, 'has': 1.0, 'easily': 1.0, 'wash': 1.0, 'about': 1.0, 'son': 1.0, 'my': 1.0, 'product': 1.0, 'interesting': 1.0, 'five': 1.0, 'to': 2.0, 'was': 2.0, 'few': 1.0, 'lick': 1.0, 'then': 1.0, 'every': 1.0, 'proceeded': 1.0, 'page': 1.0, 'liked': 1.0, 'for': 1.0, 'im': 1.0, 'i': 2.0, 'favorite': 1.0, 'times': 1.0, 'glad': 1.0, 'minutes': 1.0, 'can': 1.0, 'with': 1.0, 'only': 1.0, 'this': 1.0, 'he': 3.0, 'it': 4.0}
Word element => {'too': 1.0, 'isn': 1.0, 'bad': 1.0, 'i': 1.0, 'pay': 1.0, 'guess': 1.0, 'you': 1.0, 'price': 1.0, 'but': 1.0, 'got': 1.0, 'it': 1.0, 'month': 1.0, 't': 1.0, 'this': 1.0, 'for': 2.0, 'feels': 1.0, 'son': 1.0, 'somewhat': 1.0, '3': 1.0, 'old': 1.0, 'the': 1.0, 'my': 1.0, 'cheap': 1.0}
Word element => {'from': 1.0, 'reading': 1.0, 'take': 1.0, 'otherwise': 1.0, 'them': 1.0, 'to': 2.0, 'read': 1.0, 'am': 1.0, 'while': 1.0, 'hold': 1.0, 'me': 1.0, 'edges': 1.0, 'they': 1.0, 'your': 1.0, 'i': 3.0, 'try': 1.0, 'starter': 1.0, 'one': 1.0, 'for': 1.0, 'books': 2.0, 'than': 1.0, 'but': 1.0, 'plastic': 1.0, 'it': 1.0, 'a': 1.0, 'are': 2.0, 'my': 1.0, 'babes': 1.0, 'great': 1.0, 'the': 2.0, 'these': 2.0, 'little': 1.0, 'sharper': 1.0, 'preferred': 1.0, 's': 1.0, 'have': 1.0, 'babies': 1.0}
Word element => {'material': 1.0, 'cheap': 1.0, 'made': 1.0, 'cube': 1.0, 'and': 1.0, 'from': 1.0, 'yourself': 1.0, 'by': 1.0, 'confusing': 1.0, 'read': 1.0, 'you': 1.0, 'book': 2.0, 'set': 1.0, 'of': 1.0, 'are': 1.0, 'actually': 1.0, 'pronounce': 1.0, 'books': 2.0, 'all': 2.0, 'name': 1.0, 'to': 2.0, 'people': 1.0, 'is': 1.0, 'can': 1.0, 'these': 1.0, 'the': 5.0, 't': 1.0, 'also': 1.0, 'sound': 1.0, 'at': 1.0, 'need': 1.0, 'your': 1.0, 'baby': 1.0}
Word element => {'not': 1.0, 'would': 1.0, 'photos': 1.0, 'to': 1.0, 'texture': 1.0, 'little': 1.0, 'a': 1.0, 'added': 1.0, 'i': 1.0, 'purchase': 1.0, 'suppose': 1.0, 'point': 1.0, 'these': 1.0, 'have': 1.0, 'simple': 1.0, 'is': 1.0, 'more': 1.0, 'the': 2.0, 'again': 1.0, 'however': 1.0, 'could': 1.0, 'books': 1.0}
Word element => {'recommend': 1.0, 'to': 1.0, 'product': 1.0, 'nice': 1.0, 'loved': 1.0, 'my': 1.0, 'will': 1.0, 'baby': 1.0, 'very': 1.0, 'and': 1.0, 'said': 1.0, 'chew': 1.0, 'others': 1.0, 'on': 1.0, 'great': 1.0, 'it': 3.0, 'was': 1.0, 'daughter': 1.0, 'could': 1.0}
Word element => {'himself': 1.0, 'at': 1.0, 'his': 1.0, 'looking': 1.0, 'sit': 1.0, 'and': 1.0, 'colors': 1.0, 'is': 1.0, 'my': 1.0, 'the': 1.0, 'crib': 1.0, 'in': 1.0, 'images': 1.0, 'soo': 1.0, 'entertained': 1.0, 'will': 1.0, 'baby': 1.0, 'by': 2.0, 'loves': 1.0, 'these': 2.0, 'books': 2.0, 'he': 2.0}
Word element => {'far': 1.0, 'so': 1.0, 'deal': 1.0, 'not': 1.0, 's': 1.0, 'but': 1.0, 'pictures': 1.0, 'their': 1.0, 'it': 1.0, 'with': 1.0, 'words': 2.0, 'attractive': 1.0, 'enough': 1.0, 'a': 1.0, 'bright': 1.0, 'i': 1.0, 'to': 1.0, 'color': 1.0, 'level': 1.0, 'young': 1.0, 'cube': 1.0, 'is': 2.0, 'and': 3.0, 'the': 5.0, 'ones': 1.0, 'infants': 1.0, 'are': 1.0, 'basic': 1.0, 'at': 1.0, 'fun': 1.0, 'safe': 1.0, 'big': 1.0, 'very': 1.0, 'question': 1.0, 'alignment': 1.0}
Word element => {'choices': 1.0, 'definitely': 1.0, 'in': 2.0, 'children': 1.0, 'other': 1.0, 'confusing': 1.0, 'backgrounds': 1.0, 'ethnic': 1.0, 'several': 1.0, 'm': 1.0, 'woman': 1.0, 'sense': 1.0, 'noted': 1.0, 'asked': 1.0, 'more': 1.0, 'make': 2.0, 'seems': 1.0, 'neutral': 1.0, 'ma': 4.0, 'generic': 1.0, 'or': 2.0, 'me': 1.0, 'man': 1.0, 'not': 1.0, 'am': 1.0, 'easily': 1.0, 'like': 2.0, 'do': 2.0, 'of': 3.0, 'to': 5.0, 'fit': 1.0, 'for': 7.0, 'reasons': 1.0, 'one': 1.0, 'little': 2.0, 'disappointed': 1.0, 'home': 1.0, 'weight': 1.0, 'pictures': 3.0, 'books': 3.0, 'enough': 1.0, 'even': 1.0, 'picture': 1.0, 'manipulate': 1.0, 'they': 5.0, 'the': 8.0, 'above': 1.0, 'heavy': 1.0, 'could': 1.0, 'a': 5.0, 't': 1.0, 'my': 1.0, 'fairly': 1.0, 'are': 3.0, 'pick': 1.0, 'have': 5.0, 'clean': 1.0, 'her': 1.0, 'just': 1.0, 'butterfly': 2.0, 'light': 1.0, 'board': 1.0, 'loves': 1.0, 'that': 1.0, 'and': 4.0, 'too': 1.0, 'sure': 1.0, 'easy': 1.0, 'keep': 1.0, 'nice': 1.0, 'but': 2.0, 'an': 2.0, 'i': 3.0, 'up': 1.0, 'don': 1.0, 'them': 3.0, 'baby': 2.0, 'these': 1.0, 'some': 2.0, 'why': 2.0, 'adult': 2.0, 'understand': 1.0, 'ant': 2.0, 'da': 6.0}
Word element => {'stuff': 1.0, 'buy': 1.0, 'to': 1.0, 'i': 1.0, 'dd': 1.0, 'with': 1.0, 'forward': 1.0, 'these': 1.0, 'am': 1.0, 'so': 1.0, 'colors': 1.0, 'some': 1.0, 'block': 1.0, 'texture': 1.0, 'similar': 1.0, 'and': 2.0, 'looking': 1.0, 'bright': 1.0, 'soft': 1.0, 'favorites': 1.0, 'books': 1.0, 'my': 1.0, 'are': 1.0}
Word element => {'is': 1.0, 'me': 1.0, 'ok': 1.0, 'labeled': 1.0, 'butterflies': 1.0, 'of': 1.0, 'a': 1.0, 'has': 1.0, 'in': 1.0, 'cut': 1.0, 'them': 1.0, 'had': 1.0, 'to': 4.0, 'i': 1.0, 'example': 1.0, 'm': 1.0, 'are': 1.0, '2': 1.0, 'the': 4.0, 'make': 1.0, 'my': 1.0, 'it': 1.0, 'order': 1.0, 'safefor': 1.0, 'baby': 1.0, 'dont': 1.0, 'play': 1.0, 'cube': 1.0, 'for': 1.0, 'letters': 1.0, 'picture': 1.0, 'sharp': 1.0, 'correspond': 1.0, 'seams': 1.0, 'pictures': 1.0}
Word element => {'long': 1.0, 'fine': 1.0, 'seems': 1.0, 'where': 1.0, 'from': 1.0, 'little': 1.0, 'recommended': 1.0, 'has': 2.0, 'cube': 1.0, 'colors': 1.0, 'bleeding': 1.0, 'have': 1.0, 'haven': 1.0, 'toys': 1.0, 'books': 1.0, 'or': 1.0, 'bite': 1.0, 'with': 2.0, 'tiny': 1.0, 'only': 1.0, 'shipped': 1.0, 'problem': 1.0, '6mth': 1.0, 'had': 2.0, 'as': 1.0, 'any': 1.0, 'all': 2.0, 'to': 1.0, 'fast': 1.0, 'play': 1.0, 'block': 1.0, 'and': 3.0, 'the': 3.0, 'hole': 1.0, 'a': 1.0, 'we': 1.0, 't': 1.0, 'my': 1.0, 'up': 1.0, 'packaged': 1.0, 'old': 1.0, 'i': 3.0, 'out': 1.0, 'them': 2.0, 'anything': 1.0, 'like': 1.0, 'loves': 1.0, 'that': 3.0, 'it': 4.0, 'she': 3.0, 'chewed': 1.0, 'can': 1.0, 'washed': 1.0, 'on': 2.0, 'puts': 1.0, 'new': 1.0, 'in': 2.0, 'because': 1.0, 'mouth': 1.0, 'good': 1.0, 'her': 1.0, 'negative': 1.0, 'found': 1.0, 'holds': 1.0, 'is': 1.0}
Word element => {'last': 1.0, 'know': 1.0, 'i': 1.0, 'it': 2.0, 'of': 1.0, 'long': 1.0, 'aspect': 1.0, 'feely': 1.0, 'time': 1.0, 'is': 1.0, 'a': 2.0, 'the': 1.0, 'touchy': 1.0, 'cute': 1.0, 'gift': 1.0, 'will': 1.0, 'baby': 1.0, 'she': 1.0, 'this': 1.0, 'loves': 1.0}
Word element => {'first': 1.0, 'the': 1.0, 'how': 1.0, 'sure': 1.0, 'far': 1.0, 'fun': 1.0, 'trusted': 1.0, 'at': 2.0, 'basic': 1.0, 'not': 3.0, 'reviews': 1.0, 'pages': 1.0, 'very': 1.0, 'son': 2.0, 'from': 1.0, 'and': 3.0, 'bad': 1.0, 'worst': 1.0, 'purchased': 1.0, 'my': 2.0, 'purchase': 2.0, 'this': 3.0, 'with': 1.0, 'product': 2.0, 'for': 1.0, 'of': 1.0, 'books': 2.0, 'there': 1.0, 'sounds': 1.0, 'will': 1.0, 'you': 1.0, 'baby': 1.0, 'vocabulary': 1.0, 's': 2.0, 'a': 1.0, 'are': 1.0, 'improve': 1.0, 'sassy': 1.0, 'better': 1.0, 'these': 1.0, 'products': 1.0, 'which': 1.0, 'nurture': 1.0, 'can': 1.0, 'all': 2.0, 'to': 1.0, 'help': 1.0, '3': 2.0, 'impressed': 1.0, 'your': 1.0}
Word element => {'those': 1.0, 'son': 1.0, 'my': 1.0, 'them': 3.0, 'to': 1.0, 'once': 1.0, 'then': 1.0, 'purchased': 2.0, 'used': 1.0, 'have': 1.0, 'he': 3.0, 'it': 1.0, 'him': 1.0, 'i': 2.0, 'did': 1.0, 'not': 1.0, 'more': 1.0, 'ones': 1.0, 'like': 2.0, 'and': 1.0, 'so': 1.0, 'for': 1.0, 'different': 1.0, 'than': 1.0}
Word element => {'nice': 1.0, 'it': 1.0, 'with': 1.0, 'playing': 1.0, 'very': 1.0, 'and': 1.0, 'still': 1.0, 'old': 1.0, 'purchased': 1.0, 'just': 1.0, 'she': 1.0, 'few': 1.0, 'six': 1.0, 'months': 2.0, 'loves': 1.0, 'this': 1.0, 'i': 1.0, 'when': 1.0, 'my': 1.0, 'at': 1.0, 'was': 1.0, 'granddaughter': 1.0, 'a': 1.0}
Word element => {'set': 1.0, 'definitely': 1.0, 'words': 1.0, 'i': 2.0, 'while': 1.0, 'would': 1.0, 'him': 1.0, 'pictures': 1.0, 'bright': 1.0, 'at': 1.0, 'point': 1.0, 'they': 1.0, 'the': 2.0, 'these': 1.0, 'soft': 1.0, 'on': 1.0, 'proof': 1.0, 'recommend': 1.0, 'read': 1.0, 'easy': 1.0, 'to': 3.0, 'much': 1.0, 'books': 1.0, 'loves': 2.0, 'so': 2.0, 'my': 1.0, 'just': 1.0, 'slobber': 1.0, 'chew': 2.0, 'wants': 1.0, 'and': 1.0, 'as': 2.0, 'this': 1.0, 'he': 3.0, 'can': 1.0, 'ate': 1.0, 'clean': 1.0, 'them': 1.0}
Word element => {'seem': 1.0, 'them': 1.0, 'seems': 1.0, 'sturdy': 1.0, 'wet': 1.0, 'got': 1.0, 'they': 2.0, 'tear': 1.0, 'up': 1.0, 'set': 1.0, 'what': 1.0, 'that': 1.0, 'ruin': 1.0, 'when': 1.0, 'expect': 1.0, 'i': 3.0, 'old': 1.0, 'my': 1.0, 'and': 1.0, 'couldn': 1.0, 'not': 1.0, 'know': 1.0, 'to': 2.0, 'wanted': 1.0, 'if': 1.0, 'did': 1.0, 'ordered': 1.0, 'little': 1.0, 'or': 1.0, 'books': 1.0, 'love': 1.0, 'for': 1.0, 'very': 1.0, 'year': 1.0, 'grandson': 1.0, 'the': 1.0, 't': 1.0, 'he': 2.0}
Word element => {'hold': 1.0, 'nice': 1.0, 'also': 1.0, 'easy': 2.0, 'books': 1.0, 'and': 1.0, 'favourite': 1.0, 'daughter': 1.0, 'to': 3.0, 'loves': 1.0, 'play': 1.0, 'are': 1.0, 'my': 1.0, 'the': 2.0, 'with': 1.0, 'is': 1.0, 'cube': 1.0, 'clean': 1.0, 'its': 1.0, 'her': 1.0}
Word element => {'too': 1.0, 'them': 1.0, 'with': 1.0, 'comes': 1.0, 'that': 1.0, 'cube': 1.0, 'likes': 1.0, 'really': 1.0, 'well': 1.0, 'up': 1.0, 'hold': 1.0, 'they': 1.0, 'ends': 1.0, 'her': 2.0, 'very': 1.0, 'open': 1.0, 'everything': 1.0, 'we': 1.0, 'mouth': 2.0, 'in': 2.0, 'perfect': 1.0, 'books': 1.0, 'loves': 1.0, 'puts': 1.0, 'are': 1.0, 'these': 1.0, 'the': 2.0, 'my': 1.0, 'lo': 1.0, 'can': 2.0, 'together': 1.0, 'read': 1.0, 'she': 2.0, 'and': 4.0, 'squeeze': 1.0, 'book': 1.0, 'but': 1.0, 'put': 1.0}
Word element => {'bother': 1.0, 'won': 1.0, 'and': 1.0, 'made': 1.0, 'liked': 1.0, 'when': 1.0, 'daughter': 1.0, 'mentioned': 1.0, 'others': 1.0, 'as': 1.0, 'sticks': 1.0, 'my': 1.0, 'cup': 1.0, 'suction': 1.0, 'but': 1.0, 'have': 1.0, 'four': 1.0, 'good': 1.0, 't': 1.0, 'the': 2.0, 'well': 1.0, 'a': 1.0, 'days': 1.0, 'toy': 1.0, 'be': 1.0, 'working': 1.0, 'now': 1.0, 'to': 1.0, 'wanted': 1.0, 'i': 1.0, 'sound': 2.0, 'so': 1.0, 'after': 1.0, 'we': 1.0, 'with': 1.0, 'this': 1.0, 'stopped': 1.0, 'it': 5.0, 'pretty': 1.0, 'if': 1.0, 'purchased': 1.0, 'wet': 1.0, 'you': 1.0}
Word element => {'great': 1.0, 'through': 1.0, 'suffer': 1.0, 'long': 1.0, 'suppose': 1.0, 'not': 1.0, 'me': 1.0, 'minutes': 1.0, 'few': 1.0, 'after': 1.0, 'song': 1.0, 'because': 1.0, 'off': 1.0, 'i': 3.0, 'every': 1.0, 'coos': 1.0, 'unlike': 1.0, 'laughs': 1.0, 'bit': 1.0, 'time': 1.0, 'matter': 1.0, 'watch': 1.0, 'can': 1.0, 'but': 1.0, 'music': 3.0, 'the': 5.0, 'starts': 1.0, 'my': 1.0, 'opion': 1.0, '3': 1.0, 'wish': 1.0, 'this': 1.0, 'he': 3.0, 'annoying': 1.0, 'it': 4.0, 'month': 1.0, 'spin': 1.0, 'gets': 1.0, 'son': 1.0, 'very': 1.0, 'loves': 1.0, 'old': 1.0, 'baby': 2.0, 'turning': 1.0, 'in': 1.0, 'age': 1.0, 'as': 2.0, 'to': 4.0, 'other': 1.0, 'and': 3.0, 'play': 1.0, 'likes': 1.0, 'toy': 2.0, 'mood': 1.0, 'some': 1.0, 'no': 1.0, 'toys': 1.0, 'attention': 1.0, 'get': 1.0, 'kind': 1.0, 'adores': 1.0, 'easy': 1.0, 'for': 1.0, 'we': 1.0, 's': 2.0, 'a': 3.0, 'of': 3.0, 'always': 1.0, 'his': 2.0, 'had': 1.0, 'what': 1.0, 'spins': 1.0, 'easily': 1.0, 'keeps': 1.0}
Word element => {'similar': 1.0, 'play': 1.0, 'and': 6.0, 'who': 1.0, 'three': 1.0, 'keep': 1.0, 'some': 1.0, 'these': 1.0, 'found': 1.0, 'this': 1.0, 'while': 1.0, 'seeing': 1.0, 'how': 1.0, 'he': 2.0, '6': 1.0, 'toy': 1.0, 'well': 2.0, 'i': 4.0, 'old': 1.0, 'suction': 2.0, 'months': 2.0, 'for': 1.0, 'ours': 1.0, 'us': 1.0, 'gave': 1.0, 'that': 1.0, 'with': 2.0, 'him': 2.0, 'it': 7.0, 'went': 1.0, 'my': 1.0, 'cup': 2.0, 'find': 1.0, 'friend': 1.0, 'music': 1.0, 'his': 3.0, 'we': 1.0, 'son': 1.0, 'chair': 2.0, 'just': 1.0, 'was': 1.0, 'high': 2.0, 'to': 7.0, 'at': 1.0, 'attaching': 1.0, 'as': 1.0, 'tray': 2.0, 'excited': 1.0, 'after': 1.0, 'figured': 1.0, 'd': 1.0, 'both': 1.0, 'm': 1.0, 'give': 1.0, 'one': 1.0, 'try': 1.0, 'works': 1.0, 'even': 1.0, 'though': 1.0, 'said': 1.0, 'on': 2.0, 'spins': 1.0, 'looking': 1.0, 'every': 1.0, 'really': 1.0, 'loves': 1.0, 'bat': 1.0, 'of': 4.0, 'the': 4.0, 'something': 1.0, 'hand': 1.0, 'toys': 2.0, 'sounds': 1.0, 'started': 1.0, 'has': 1.0, 'target': 1.0, 'them': 1.0, 'improve': 1.0, 'buying': 1.0, 'ability': 1.0, 'grasp': 1.0, 'objects': 1.0, 'plays': 1.0, 'very': 1.0, 'a': 3.0, 'small': 1.0, 'sitting': 1.0, 'attaches': 1.0, 'entertained': 1.0, 'swing': 1.0, 'forward': 1.0, 'turned': 1.0, 'several': 1.0, 'types': 1.0, 'can': 1.0, 'so': 1.0, 'up': 1.0, 'rotate': 1.0}
Word element => {'that': 1.0, 'for': 1.0, 'don': 1.0, 'really': 1.0, 'have': 2.0, 'i': 2.0, 'volume': 1.0, 'you': 2.0, 'start': 1.0, 'touching': 1.0, 'be': 1.0, 'likes': 1.0, 'won': 1.0, 'off': 2.0, 'set': 1.0, 'will': 1.0, 'floor': 1.0, 'feet': 1.0, 'sometimes': 1.0, 'much': 1.0, 'so': 1.0, 'tray': 1.0, 'her': 1.0, 'this': 1.0, 'moving': 1.0, 'turn': 2.0, 'in': 2.0, 'had': 1.0, 'was': 1.0, 'now': 1.0, 'high': 1.0, 'were': 1.0, 'gift': 1.0, 'baby': 4.0, 'about': 2.0, 'still': 1.0, 'storage': 1.0, 'shower': 1.0, 'of': 2.0, 'walk': 1.0, '6': 1.0, 'born': 1.0, 'admit': 1.0, 'agree': 1.0, 'hear': 1.0, 'the': 7.0, 'it': 9.0, 'annoying': 2.0, 'but': 1.0, 'hide': 1.0, 'music': 4.0, 'if': 2.0, 't': 2.0, 'a': 2.0, 'we': 7.0, 'complaints': 1.0, 'even': 1.0, 'got': 1.0, 'before': 1.0, 'any': 1.0, 'to': 3.0, 'our': 4.0, 'as': 2.0, 'back': 1.0, 'down': 1.0, 'll': 1.0, 'inside': 1.0, 'closet': 2.0, 'chair': 1.0, 'mons': 1.0, 'by': 1.0, 'large': 1.0, 'container': 1.0, 'play': 1.0, 'and': 2.0, 'would': 1.0, 'things': 1.0, 'darn': 1.0, 'are': 1.0, 'cannot': 2.0, 'vibration': 1.0, 'using': 1.0, 'completely': 1.0, 'around': 1.0, 'is': 2.0, 'old': 1.0, 'except': 1.0, 'on': 2.0}
Word element => {'switches': 1.0, 'check': 1.0, 'next': 1.0, 'lesson': 1.0, 'gets': 1.0, 'baby': 1.0, 'but': 1.0, 'really': 1.0, 'actually': 1.0, 'turn': 1.0, 'switch': 1.0, 'would': 1.0, 'they': 1.0, 'no': 1.0, 'lol': 1.0, 'like': 1.0, 'burn': 1.0, 'batteries': 1.0, 'hot': 1.0, 'hopefully': 1.0, 'sun': 1.0, 'leaving': 1.0, 'been': 1.0, 've': 1.0, 'ok': 1.0, 'terriably': 1.0, 'mouth': 1.0, 'dont': 1.0, 'oh': 1.0, 'with': 2.0, 'play': 1.0, 'wants': 1.0, 'he': 1.0, 'any': 1.0, 'idea': 2.0, 'good': 1.0, 'work': 1.0, 'why': 1.0, 'just': 2.0, 'originally': 1.0, 'was': 1.0, 'toy': 6.0, 'in': 8.0, 'air': 1.0, 'back': 1.0, 'making': 1.0, 'stop': 2.0, 'after': 2.0, 'taking': 1.0, 'by': 1.0, 'kids': 1.0, 'ready': 1.0, 'got': 1.0, 'even': 3.0, 'before': 1.0, 'noise': 1.0, 'old': 1.0, 'forever': 1.0, 'bag': 3.0, 'him': 1.0, 'it': 17.0, 'learned': 1.0, 'into': 1.0, 'throw': 1.0, 'slot': 1.0, 'from': 2.0, 'son': 1.0, 'long': 1.0, 'on': 2.0, 'for': 4.0, 'fit': 1.0, 'package': 1.0, 'hidden': 2.0, 'where': 1.0, 'cute': 1.0, 'first': 1.0, 'month': 1.0, 'hear': 1.0, 'were': 2.0, 'alllllways': 1.0, 'this': 4.0, 'soft': 1.0, 'pulling': 2.0, 'my': 4.0, 'eventually': 1.0, 'annoying': 1.0, 'diaper': 2.0, 'of': 1.0, 'the': 15.0, 'cardboard': 2.0, 'bought': 1.0, 'an': 1.0, 'all': 3.0, 'to': 7.0, 'our': 1.0, '8': 1.0, 'tabby': 2.0, 'going': 2.0, 'a': 3.0, 'out': 6.0, 'keepts': 1.0, 'however': 1.0, 'inside': 1.0, 'ride': 1.0, 'house': 1.0, 'wouldnt': 1.0, 'mean': 1.0, 'you': 2.0, 'barely': 1.0, 'when': 2.0, 'plane': 3.0, 'have': 1.0, 'putting': 1.0, 'well': 2.0, 'i': 6.0, 'coming': 1.0, 'thing': 3.0, 'bump': 1.0, 'is': 3.0, 'his': 3.0, 'music': 3.0, 'and': 7.0, 'trip': 1.0, 'had': 1.0, 'did': 1.0, 'makes': 1.0, 'keep': 1.0, 'that': 5.0, 'because': 2.0, 'make': 3.0, 'goes': 1.0, 'time': 2.0, 'so': 3.0, 'breeze': 1.0, 'position': 1.0, 'kept': 2.0, 'start': 1.0, 'up': 1.0, 'want': 2.0, 'car': 3.0, 'window': 2.0, 'its': 3.0, 'not': 2.0, 'we': 7.0, 'moving': 1.0, 'until': 1.0, 'off': 6.0, 'tried': 1.0, 'ripping': 1.0, 'some': 1.0}
Word element => {'louder': 1.0, 'noise': 1.0, 'sums': 1.0, 'that': 1.0, 'toys': 1.0, 'sounds': 1.0, 'find': 1.0, 'does': 2.0, 'i': 6.0, 'suctioned': 1.0, 'make': 2.0, 'goes': 1.0, 'able': 1.0, 'suction': 1.0, 'chance': 1.0, 'hasn': 2.0, 'occasionally': 1.0, '5': 1.0, 'before': 2.0, 'room': 1.0, 'food': 1.0, 'but': 2.0, 'eat': 1.0, 'want': 1.0, 'a': 4.0, 't': 2.0, 's': 2.0, 'could': 1.0, 'loves': 2.0, 'toy': 3.0, 'to': 7.0, 'annoying': 1.0, 'as': 3.0, 'un': 1.0, 'come': 1.0, 'lifesaver': 1.0, 'months': 1.0, 'get': 1.0, 'been': 2.0, 'highchair': 1.0, 'actually': 1.0, 'this': 2.0, 'it': 8.0, 'baby': 3.0, 'she': 7.0, 'pull': 1.0, 'up': 1.0, 'less': 1.0, 'water': 1.0, 'my': 3.0, 'off': 3.0, 'b': 1.0, 'put': 1.0, 'her': 1.0, 'negative': 1.0, 'in': 1.0, 'is': 1.0, 'at': 1.0, 'dining': 1.0, 'received': 2.0, 'cold': 1.0, 'long': 1.0, 'and': 4.0, 'attached': 1.0, 'with': 1.0, 'little': 1.0, 'table': 1.0, 'comment': 1.0, 'right': 1.0, 'uses': 1.0, 'its': 1.0, 'great': 1.0, 'works': 1.0, 'spin': 1.0, 'while': 1.0, 'has': 1.0, 'always': 1.0, 'seem': 1.0, 'set': 2.0, 'quite': 1.0, 'crying': 2.0, 'happy': 1.0, 'figured': 1.0, 'out': 1.0, 'yet': 1.0, 'accidentally': 1.0, 'reviews': 1.0, 'so': 1.0, 'gift': 1.0, 'noises': 1.0, 'recommend': 1.0, 'was': 1.0, 'if': 1.0, 'every': 1.0, 'mom': 1.0, 'more': 1.0, 'babies': 1.0, 'husband': 1.0, 'told': 1.0, 'about': 2.0, 'c': 1.0, 'the': 9.0, 'of': 1.0, 'music': 3.0, 'his': 1.0, 'not': 1.0, 'like': 1.0, 'care': 1.0, 'when': 1.0, 'what': 1.0}
Word element => {'quite': 1.0, 'teeth': 1.0, 'teething': 1.0, 'especially': 1.0, 'playing': 1.0, 'enjoys': 1.0, 'still': 1.0, 'and': 1.0, 'start': 1.0, 'mo': 1.0, 'was': 1.0, 'selling': 1.0, 'same': 1.0, 'since': 1.0, 'a': 1.0, 'local': 1.0, 'after': 1.0, 'finding': 1.0, 'online': 1.0, 'yet': 1.0, 'for': 1.0, 'store': 1.0, 'though': 1.0, 'much': 1.0, 'toy': 1.0, 'out': 1.0, 'he': 1.0, 'it': 1.0, 'with': 1.0, 'this': 1.0, 'loved': 1.0, 'bought': 1.0, 'the': 3.0, 'my': 1.0, 'item': 1.0, 'twice': 1.0, 'from': 1.0, 'son': 1.0, 'as': 1.0}
Word element => {'attached': 1.0, 'would': 1.0, 'times': 1.0, 'many': 1.0, 'how': 1.0, 'considering': 1.0, 'right': 1.0, 'outing': 1.0, 'once': 1.0, 'off': 2.0, 'pull': 2.0, 'doesn': 1.0, 'part': 1.0, 'sticks': 1.0, 'cup': 3.0, 'suction': 3.0, 'interested': 2.0, 'keeps': 1.0, 'silly': 1.0, 'bothersome': 1.0, 'was': 1.0, 'there': 1.0, 'goes': 1.0, 'but': 4.0, 'most': 1.0, 'bumped': 1.0, 'occastionally': 1.0, 'bite': 1.0, 'does': 2.0, 'having': 1.0, 'find': 1.0, 'music': 1.0, 'his': 1.0, 'up': 1.0, 'per': 1.0, 'in': 6.0, 'without': 1.0, 'life': 1.0, 'drop': 1.0, 'real': 1.0, 'batteries': 1.0, 'on': 1.0, 'son': 3.0, 'gets': 1.0, 'between': 1.0, 'eat': 1.0, 'every': 1.0, 'if': 2.0, 'can': 1.0, 'constantly': 2.0, 'so': 2.0, 'toy': 5.0, 'to': 6.0, 'playing': 1.0, 'all': 1.0, 'could': 2.0, 'likes': 1.0, 't': 2.0, 'a': 5.0, 'might': 1.0, 's': 2.0, 'pick': 1.0, 'have': 1.0, 'my': 3.0, 'save': 1.0, 'bought': 1.0, 'old': 1.0, 'well': 1.0, 'i': 4.0, 'is': 3.0, 'at': 3.0, 'keep': 1.0, 'fall': 1.0, 'that': 2.0, 'month': 1.0, 'totally': 2.0, 'with': 2.0, 'pink': 1.0, 'noises': 1.0, 'piece': 1.0, 'this': 2.0, 'wouldn': 1.0, 'saver': 1.0, 'him': 1.0, 'it': 15.0, '9': 1.0, 'finally': 1.0, 'about': 1.0, 'play': 3.0, 'one': 1.0, 'too': 1.0, 'and': 4.0, 'not': 3.0, 'be': 3.0, 'plays': 1.0, 'very': 2.0, 'little': 3.0, 'tolerable': 1.0, 'now': 1.0, 'restaurants': 2.0, 'honest': 1.0, 'really': 2.0, 'quiet': 1.0, 'battery': 2.0, 'non': 1.0, 'restaurant': 1.0, 'toys': 1.0, 'sounds': 3.0, 'environment': 1.0, 'floor': 1.0, 'much': 1.0, 'kept': 1.0, 'tab': 1.0, 're': 1.0, 'overall': 1.0, 'insert': 1.0, 'diaper': 1.0, 'when': 2.0, 'loud': 1.0, 'you': 2.0, 'love': 1.0, 'he': 4.0, 'bag': 1.0, 'using': 1.0, 'from': 1.0, 'beleive': 1.0, 'we': 1.0, 'fine': 2.0, 'take': 2.0, 'screws': 1.0, 'out': 2.0, 'the': 16.0, 'of': 1.0}
Word element => {'of': 1.0, 'got': 1.0, '8217': 1.0, 'handle': 1.0, 'you': 1.0, 'if': 1.0, 'nuts': 1.0, 'me': 1.0, 'driving': 1.0, 'was': 1.0, 'because': 1.0, 'via': 1.0, 'constant': 1.0, 'away': 1.0, 'airplane': 1.0, 'for': 1.0, 'bought': 1.0, 'i': 3.0, 'plays': 1.0, 'car': 1.0, 'spins': 1.0, 'hit': 1.0, 'the': 4.0, 'this': 2.0, 'it': 8.0, 'base': 1.0, 'trip': 1.0, 'rental': 1.0, 'suction': 1.0, 'sick': 1.0, 'worked': 1.0, 'well': 1.0, 'toy': 3.0, 'has': 2.0, 'time': 1.0, 'eventually': 1.0, 'bump': 1.0, 'good': 2.0, 'loaded': 1.0, 'or': 1.0, 'cup': 1.0, 'and': 5.0, 'during': 1.0, 's': 1.0, 'a': 6.0, 'we': 2.0, 'flight': 1.0, 'can': 1.0, 'music': 3.0, 'but': 2.0, 'concept': 1.0, 'then': 1.0, 'every': 1.0, 'thing': 1.0, 'played': 1.0, 'its': 1.0, 'turned': 1.0, 'corner': 1.0, 'into': 1.0, 'gave': 1.0, 'is': 1.0, 'extremely': 1.0, 'sensitive': 1.0}
Word element => {'me': 1.0, 'like': 1.0, 'second': 1.0, 'your': 1.0, 'come': 1.0, 'feeding': 1.0, 'of': 1.0, 'many': 1.0, 'be': 1.0, 'suction': 3.0, 'off': 3.0, 'yank': 1.0, 'popped': 1.0, 'since': 1.0, 'the': 5.0, 'great': 1.0, 'buying': 1.0, 'with': 1.0, 'this': 1.0, 'only': 1.0, 'why': 2.0, 'worked': 1.0, 'highchair': 1.0, 'love': 1.0, 'old': 1.0, 'buy': 1.0, 'part': 3.0, 'understand': 1.0, '6': 1.0, 'or': 1.0, 'yet': 1.0, 'cup': 3.0, 'save': 1.0, 'my': 1.0, 'really': 1.0, 'is': 1.0, 'wanted': 1.0, 'to': 3.0, 'was': 1.0, 'now': 1.0, 'toy': 4.0, 'about': 1.0, 'money': 1.0, 'but': 2.0, 'ok': 1.0, 'never': 1.0, 'by': 1.0, 'it': 2.0, 'month': 1.0, 'also': 1.0, 'having': 1.0, 'after': 1.0, 'i': 2.0, '4': 1.0, 'one': 1.0, 'months': 2.0, 'dead': 1.0, 'new': 1.0, 'a': 2.0, 'could': 1.0, 'we': 1.0, 'have': 1.0}
Word element => {'of': 1.0, 'chose': 1.0, 'c': 2.0, 'disappointed': 1.0, 'yet': 1.0, 'were': 1.0, 'complaint': 1.0, 'his': 1.0, 'entertained': 1.0, 'it': 2.0, 'this': 3.0, 'he': 2.0, 'first': 1.0, 'and': 2.0, 'only': 1.0, 'do': 1.0, 'i': 4.0, 'b': 2.0, 'my': 2.0, 'loved': 1.0, 'toy': 2.0, 'in': 1.0, 'highchair': 1.0, 'for': 1.0, 'bought': 1.0, 'one': 1.0, 'is': 2.0, 'son': 1.0, 'keeps': 1.0, 'screwdriver': 1.0, 'immediately': 1.0, 'the': 4.0, 'him': 1.0, 'within': 1.0, 'replaceable': 1.0, 'week': 1.0, 'music': 2.0, 'but': 1.0, 'specifically': 1.0, 'read': 1.0, 'batteries': 1.0, 'that': 2.0, 'been': 1.0, 'when': 1.0, 'you': 1.0, 'need': 1.0, 'special': 1.0, 'a': 1.0, 'to': 2.0, 'have': 1.0, 'able': 1.0, 'not': 1.0, 'died': 1.0, 'find': 1.0}
Word element => {'places': 1.0, 'they': 1.0, 'when': 1.0, 'so': 2.0, 'suction': 1.0, 'get': 1.0, 'is': 1.0, 'doesn': 1.0, 'children': 1.0, 'older': 1.0, 'it': 3.0, 'a': 1.0, 't': 1.0, 'nice': 1.0, 'great': 1.0, 'the': 3.0, 'take': 1.0, 'base': 1.0, 'younger': 1.0, 'and': 1.0, 'play': 1.0, 'other': 1.0, 'toy': 2.0, 'to': 2.0, 'its': 2.0, 'much': 1.0, 'movement': 1.0, 'kids': 1.0, 'this': 1.0, 'separates': 1.0, 'for': 2.0, 'strong': 1.0, 'make': 1.0, 'noise': 1.0, 'little': 1.0, 'them': 1.0, 'with': 1.0, 'knock': 1.0, 'off': 1.0, 'of': 1.0, 'also': 1.0, 'that': 1.0, 'hard': 1.0, 'from': 1.0, 'can': 1.0, 'which': 1.0, 'table': 1.0, 'hold': 1.0}
Word element => {'because': 1.0, 'frustrated': 1.0, 'favorite': 1.0, 'grandson': 1.0, 'my': 1.0, 'loves': 1.0, 'leaving': 1.0, 'his': 1.0, 'long': 1.0, 'he': 1.0, 'it': 1.0, 'this': 1.0, 'have': 1.0, 'weeks': 1.0, 'doesn': 1.0, 'out': 1.0, 'run': 1.0, 'however': 1.0, 'music': 2.0, 'last': 1.0, 'toy': 2.0, 'baby': 1.0, 't': 1.0, 'the': 4.0, 'great': 1.0, 'is': 2.0, 'second': 1.0, 'one': 1.0, 'i': 1.0, 've': 1.0, 'bought': 1.0, 'within': 1.0, 'and': 2.0, 'batteries': 1.0}
Word element => {'of': 1.0, 'because': 1.0, 'recommend': 1.0, 'would': 1.0, 'daughter': 1.0, 'don': 2.0, 'about': 1.0, 'do': 1.0, 'and': 1.0, 'hate': 1.0, 'really': 2.0, 'chair': 1.0, 'noisy': 1.0, 'suction': 2.0, 'that': 2.0, 'one': 1.0, 'mine': 1.0, 'i': 6.0, 'loud': 1.0, 'this': 1.0, 'others': 1.0, 'notice': 1.0, 't': 2.0, 'the': 4.0, 'have': 1.0, 'not': 3.0, 'just': 1.0, 'likes': 1.0, 'well': 1.0, 'see': 1.0, 'which': 1.0, 'like': 1.0, 'complained': 1.0, 'easily': 1.0, 'is': 1.0, 'comes': 1.0, 'toys': 1.0, 'wanted': 1.0, 'to': 1.0, 'off': 2.0, 'surface': 1.0, 'so': 2.0, 'however': 1.0, 'stick': 1.0, 'on': 1.0, 'her': 1.0, 'high': 1.0, 'my': 1.0, 'but': 1.0, 'it': 4.0, 'she': 1.0, 'rips': 1.0, 'point': 1.0}
Word element => {'buy': 1.0, 'would': 1.0, 'too': 1.0, 'and': 1.0, 'my': 1.0, 'grandson': 1.0, 'to': 1.0, 'toy': 1.0, 'great': 1.0, 'love': 1.0, 'him': 1.0, 'it': 2.0, 'i': 1.0, 'enjoys': 1.0, 'busy': 1.0, 'recommend': 1.0, 'he': 1.0, 'keeps': 1.0, 'for': 1.0, 'playing': 1.0}
Word element => {'sound': 1.0, 'so': 2.0, 'away': 1.0, '1': 1.0, 'right': 1.0, 'this': 1.0, 'he': 2.0, 'with': 3.0, 'bug': 3.0, 'loved': 2.0, 'just': 2.0, 'my': 1.0, 'son': 1.0, 'i': 2.0, 'said': 1.0, 'when': 1.0, 'im': 1.0, 'only': 2.0, 'its': 1.0, 'at': 1.0, 'his': 1.0, 'it': 5.0, 'ot': 1.0, 'the': 4.0, 'playing': 1.0, 'that': 1.0, 'appts': 1.0, 'noise': 1.0, 'of': 1.0, 'one': 1.0, 'bought': 1.0, '2': 1.0, 'but': 1.0, 'recently': 1.0, 'came': 1.0, 'doesnt': 1.0, 'across': 1.0, 'was': 2.0, 'anymore': 1.0, 'toy': 1.0, 'lasted': 1.0, 'thing': 1.0, 'on': 1.0, 'make': 1.0, 'think': 1.0, 'a': 1.0, 'disappointed': 1.0, 'yr': 1.0}
Word element => {'with': 1.0, 'plays': 1.0, 'loves': 1.0, 'still': 1.0, '7': 1.0, 'months': 2.0, '3': 1.0, 'whoa': 1.0, 'daughter': 1.0, 'for': 2.0, 'my': 1.0, 'the': 2.0, 'these': 1.0, 'showed': 1.0, 'got': 1.0, 'reached': 1.0, 'bugs': 2.0, 'i': 2.0, 'old': 2.0, 'now': 1.0, 'was': 1.0, 'to': 1.0, 'she': 2.0, 'and': 3.0, 'them': 3.0, 'smiled': 1.0, 'her': 1.0, 'second': 1.0, 'is': 1.0}
Word element => {'would': 1.0, 'flimsy': 1.0, 'of': 1.0, 'mouth': 1.0, 'babies': 1.0, 'recommend': 1.0, 'might': 1.0, 'come': 1.0, 'it': 1.0, 'in': 1.0, 'apart': 1.0, 'seems': 1.0, 'them': 1.0, 'they': 4.0, 'you': 1.0, 'seem': 2.0, 'that': 1.0, 'guys': 1.0, 'little': 1.0, 'hang': 1.0, 'by': 1.0, 'do': 1.0, 'get': 1.0, 'not': 2.0, 'overall': 1.0, 'squeek': 1.0, 'cool': 1.0, 'should': 1.0, 'like': 1.0, 'crinkle': 1.0, 'kind': 1.0, 'as': 2.0, 'string': 1.0, 'until': 1.0, 'or': 1.0, 'good': 1.0, 'these': 1.0, 'the': 1.0}
Word element => {'for': 1.0, 'right': 1.0, 'they': 1.0, 'think': 1.0, 'out': 1.0, 'are': 1.0, 'my': 1.0, 'loved': 1.0, 'and': 2.0, 'baby': 1.0, 'them': 2.0, 'just': 1.0, 'touched': 1.0, 'mo': 1.0, 'even': 1.0, 'her': 2.0, '2': 1.0, 'i': 1.0, 'niece': 1.0, 'reached': 1.0}
Word element => {'else': 1.0, 'something': 1.0, 'look': 1.0, 'long': 1.0, 'for': 2.0, 'him': 1.0, 'are': 1.0, 'shower': 1.0, 'my': 1.0, 'ok': 1.0, 'very': 2.0, 'at': 1.0, 'got': 1.0, 'entertained': 1.0, 'we': 1.0, 'just': 1.0, 'there': 1.0, 'they': 2.0, 'isn': 1.0, 'these': 1.0, 't': 2.0, 'anything': 1.0, 'sons': 1.0, 'and': 2.0, 'interesting': 1.0, 'them': 1.0, 'baby': 1.0, 'about': 1.0, 'don': 1.0, 'keep': 1.0}
Word element => {'s': 1.0, 'them': 1.0, 'wrap': 1.0, 'idea': 1.0, 'to': 1.0, 'had': 1.0, 'are': 1.0, 'my': 2.0, 'they': 2.0, 'the': 1.0, 'these': 1.0, 'instead': 1.0, 'feel': 1.0, 'likes': 1.0, 'wrist': 1.0, 'i': 3.0, 'an': 1.0, 'but': 1.0, 'over': 1.0, 'toys': 1.0, 'really': 1.0, 'assumed': 1.0, 'as': 1.0, 'son': 2.0, 'priced': 1.0, 'not': 1.0, 'carseat': 1.0, 'handle': 1.0, 'do': 1.0, 'and': 1.0, 'dont': 1.0, 'around': 2.0, 'fit': 1.0, 'dangle': 1.0}
Word element => {'carrier': 1.0, 'crinkle': 1.0, 'easily': 2.0, 'his': 2.0, 'are': 2.0, 'small': 1.0, 'they': 4.0, 'these': 1.0, 'our': 1.0, 'seat': 1.0, 'because': 1.0, 'baby': 1.0, 'enough': 1.0, 'loves': 1.0, 'and': 2.0, 'for': 1.0, 'him': 1.0, 'to': 3.0, 'on': 1.0, 'some': 1.0, 'of': 1.0, 'hold': 1.0, 'favorite': 1.0, 'attach': 1.0, 'car': 1.0}
Word element => {'they': 1.0, 'play': 1.0, 'and': 2.0, 'the': 1.0, 'in': 1.0, 'pack': 1.0, 'to': 1.0, 'twins': 1.0, 'i': 1.0, 'seem': 1.0, 'upside': 1.0, 'works': 1.0, 'great': 1.0, 'it': 3.0, 'love': 2.0, 'hang': 1.0, 'down': 1.0}
Word element => {'until': 1.0, 'stays': 1.0, 'himself': 1.0, 'at': 1.0, 'smile': 1.0, 'reflection': 1.0, 'adorable': 1.0, 'much': 1.0, 'him': 1.0, 'to': 1.0, 'was': 1.0, 'so': 1.0, 'mirror': 1.0, 'his': 1.0, 'laugh': 1.0, 'it': 2.0, 'this': 1.0, 'then': 1.0, 'loved': 1.0, 'baby': 1.0, 'my': 1.0, 'the': 1.0, 'find': 1.0, 'up': 1.0, 'set': 1.0, 'watch': 1.0, 'on': 1.0, 'bumped': 1.0, 'time': 1.0, 'well': 1.0, 'ground': 1.0, 'for': 1.0, 'tummy': 1.0, 'and': 3.0}
Word element => {'especially': 1.0, 'in': 1.0, 'baby': 1.0, 'red': 1.0, 'the': 3.0, 'more': 1.0, 'screams': 1.0, 'spinning': 1.0, 'than': 1.0, 'rather': 1.0, 'place': 1.0, 'takes': 1.0, 'interest': 1.0, 'engaging': 1.0, 'an': 1.0, 'one': 1.0, 'little': 1.0, 'been': 1.0, 'our': 1.0, 'easier': 1.0, 'lot': 1.0, 's': 2.0, 'to': 3.0, 'giggles': 1.0, 'due': 1.0, 'tummy': 2.0, 'tears': 1.0, 'time': 2.0, 'a': 1.0, 'since': 1.0, 'ball': 1.0, 'get': 1.0, 'getting': 1.0, 'and': 3.0, 'started': 1.0, 'bug': 1.0, 'use': 1.0, 'it': 1.0, 'this': 1.0, 'conversation': 1.0, 'we': 3.0, 'mirror': 2.0, 'so': 1.0, 'hear': 1.0}
Word element => {'nice': 1.0, 'overall': 1.0, 'but': 1.0, 'easily': 1.0, 'that': 1.0, 'is': 1.0, 'old': 1.0, 'talks': 1.0, 'mirror': 1.0, 'likes': 1.0, 'very': 1.0, 'son': 1.0, 'months': 1.0, 'sometimes': 1.0, 'ball': 1.0, 'and': 2.0, 'downside': 1.0, 'my': 1.0, '2': 1.0, 'the': 2.0, 'black': 1.0, 'only': 1.0, 'this': 1.0, 'it': 2.0, 'even': 1.0, 'to': 1.0, 'grab': 1.0, 'falls': 1.0, 'little': 1.0, 'leaves': 1.0, 'or': 1.0, 'move': 1.0, 'white': 1.0}
Word element => {'clean': 1.0, 'easy': 1.0, 'pretty': 1.0, 'anyway': 1.0, 's': 1.0, 'way': 1.0, 'straps': 1.0, 'but': 1.0, 'crib': 1.0, 'look': 1.0, 'to': 3.0, 'too': 1.0, 'attached': 1.0, 'haven': 1.0, 'that': 2.0, 'short': 1.0, 'be': 1.0, 'soft': 2.0, 'how': 1.0, 'my': 1.0, 't': 1.0, 'the': 4.0, 'do': 1.0, 'ball': 1.0, 'and': 2.0, 'like': 1.0, 'nice': 1.0, 'likes': 1.0, 'tummy': 1.0, 'on': 1.0, 'month': 1.0, 'ladybugs': 1.0, 'can': 1.0, 'mirror': 1.0, 'it': 4.0, 'this': 1.0, 'old': 1.0, 'six': 1.0, 'i': 2.0, 'is': 2.0, 'folded': 1.0}
Word element => {'trust': 1.0, 'better': 1.0, 'something': 1.0, 'laying': 1.0, 'see': 1.0, 'keep': 1.0, 'since': 1.0, 'purpose': 1.0, 'defeats': 1.0, 'cannot': 1.0, 'which': 1.0, 'crib': 1.0, 'of': 1.0, 'attach': 1.0, 'only': 1.0, 'to': 2.0, 'had': 1.0, 'gifts': 1.0, 'doesn': 1.0, 'will': 1.0, 'never': 1.0, 'put': 1.0, 'on': 1.0, 'looking': 1.0, 'close': 1.0, 'herself': 1.0, 'top': 1.0, 'check': 1.0, 'daughter': 2.0, 'purchasing': 1.0, 'review': 1.0, 'while': 1.0, 'seeing': 1.0, 'down': 1.0, 'stand': 1.0, 'my': 2.0, 'the': 6.0, 'this': 1.0, 'she': 1.0, 'it': 3.0, 'christmas': 1.0, 'before': 1.0, 'five': 1.0, 'and': 1.0, 'up': 1.0, 'mirrors': 1.0, 'rsting': 1.0, 'i': 2.0, 'junk': 1.0, 'for': 3.0, 'stars': 1.0, 'knowing': 1.0, 'that': 1.0, 'written': 1.0, 'loves': 1.0, 'bought': 1.0, 'so': 2.0, 'worth': 1.0, 'always': 1.0, 'straps': 1.0, 'but': 1.0, 'money': 1.0, 'a': 1.0, 't': 1.0, 's': 1.0, 'they': 1.0, 'me': 1.0, 'not': 1.0, 'wrong': 1.0}
Word element => {'picture': 1.0, 'in': 1.0, 'side': 1.0, 'is': 3.0, 'nicely': 1.0, 'the': 5.0, 'bit': 1.0, 't': 1.0, 'a': 1.0, 'rattles': 1.0, 'eat': 1.0, 'this': 1.0, 'only': 1.0, 'main': 1.0, 'at': 1.0, 'grabs': 1.0, 'was': 1.0, 'to': 2.0, 'velcros': 1.0, '5': 1.0, 'my': 1.0, 'old': 1.0, 'tries': 1.0, 'cute': 1.0, 'it': 9.0, 'month': 1.0, 'she': 1.0, 'stands': 1.0, 'of': 2.0, 'crib': 1.0, 'will': 1.0, 'baby': 1.0, 'but': 1.0, 'most': 1.0, 'shown': 1.0, 'definitely': 1.0, 'spreads': 1.0, 'knock': 1.0, 'up': 2.0, 'over': 1.0, 'thing': 1.0, 'material': 1.0, 'that': 2.0, 'made': 1.0, 'out': 1.0, 'for': 1.0, 'actually': 1.0, 'prop': 1.0, 'when': 1.0, 'you': 1.0, 'isn': 1.0}
Word element => {'all': 1.0, 'that': 1.0, 'into': 1.0, 'needed': 1.0, 'she': 1.0, 'and': 2.0, 'is': 1.0, 'anticipated': 1.0, 'than': 1.0, 'but': 1.0, 'my': 1.0, 'smaller': 1.0, 'was': 2.0, 'i': 2.0, 'looked': 1.0, 'it': 3.0, 'the': 1.0, 'great': 1.0, 'little': 1.0, 'baby': 1.0, 'a': 2.0, 'distorted': 1.0, 'for': 1.0, 'when': 1.0, 'daughter': 1.0, 'mirror': 2.0, 'play': 1.0, 'works': 1.0, 'smiled': 1.0}
Word element => {'ladybug': 1.0, 'little': 1.0, 'my': 1.0, 'hit': 1.0, 'are': 1.0, 'activity': 1.0, 'find': 1.0, 'for': 1.0, 'easy': 1.0, 'clear': 1.0, 'active': 1.0, 'by': 1.0, 'easily': 1.0, 'inside': 1.0, 'but': 1.0, 'own': 1.0, 'a': 2.0, 'baby': 4.0, 'knocked': 1.0, 'has': 1.0, 'mirror': 1.0, 'attach': 1.0, 'stand': 1.0, 'can': 1.0, 't': 1.0, 'exterior': 1.0, 'ball': 1.0, 'edges': 1.0, 'with': 1.0, 'it': 2.0, 'velcro': 1.0, 'streatchy': 1.0, 'fastener': 1.0, 'rolls': 1.0, 'to': 3.0, 'so': 1.0, 'various': 1.0, 'large': 1.0, 'hurt': 1.0, 'soft': 1.0, 'objects': 2.0, 'of': 1.0, 'up': 1.0, 'over': 1.0, 'won': 1.0, 'on': 1.0, 's': 1.0}
Word element => {'i': 1.0, 'worth': 1.0, 'not': 1.0, 'lays': 1.0, 'but': 1.0, 'paid': 1.0, 'with': 1.0, '16': 1.0, 'it': 5.0, 'sux': 1.0, 'doesn': 1.0, 's': 1.0, 'ok': 1.0, 't': 1.0, 'likes': 1.0, 'stand': 1.0, 'up': 1.0, 'the': 1.0, 'flat': 1.0, 'my': 1.0, 'daughter': 1.0, 'playing': 1.0}
Word element => {'blast': 1.0, 'a': 1.0, 'for': 1.0, 'which': 1.0, 'jumperoo': 1.0, 'also': 1.0, 'attached': 1.0, 'we': 1.0, '8': 1.0, 'him': 1.0, 'it': 1.0, 'month': 1.0, 'mirror': 1.0, 'to': 1.0, 'old': 1.0, 'my': 1.0, 'the': 2.0, 'loves': 1.0, 'this': 1.0, 'entertainment': 1.0, 'is': 2.0, 'endless': 1.0}
Word element => {'gift': 1.0, 'shower': 1.0, 'baby': 1.0, 'makes': 1.0, 'at': 1.0, 'looking': 1.0, 'just': 1.0, 'this': 2.0, 'sassy': 1.0, 'love': 1.0, 'great': 2.0, 'babies': 1.0, 'a': 1.0, 'floor': 1.0, 'mirror': 1.0, 'themselves': 1.0, 'is': 1.0, 'they': 1.0, 'crib': 1.0, 'for': 1.0, 'infants': 1.0}
Word element => {'again': 1.0, 'purchase': 1.0, 'on': 1.0, 'toys': 1.0, 'little': 1.0, 'big': 1.0, 'as': 2.0, 'and': 1.0, 'baby': 1.0, 'loves': 2.0, 'he': 1.0, 'this': 1.0, 'it': 3.0, 'thought': 1.0, 'but': 1.0, 'plastic': 1.0, 'not': 1.0, 'would': 2.0, 'the': 3.0, 'be': 1.0, 'being': 1.0, 'serves': 1.0, 'its': 2.0, 'purpose': 1.0, 'mirror': 1.0, 'is': 1.0, 'i': 2.0, 'clear': 1.0, 'for': 1.0}
Word element => {'4': 1.0, 'i': 1.0, 'make': 1.0, 'stars': 1.0, 'soft': 1.0, 'great': 1.0, 'edges': 1.0, 'and': 2.0, 'very': 2.0, 'toy': 1.0, 'interactive': 1.0, 'our': 1.0, 'used': 1.0, 'give': 1.0, 'little': 1.0, 'yet': 1.0, 'for': 1.0, 'one': 1.0, 'young': 1.0, 'qhy': 1.0, 'is': 2.0, 'we': 1.0, 'babies': 1.0, 'have': 1.0, 'it': 2.0, 'this': 2.0, 'not': 1.0}
Word element => {'even': 1.0, 'enough': 1.0, 'light': 1.0, 'falls': 1.0, 'flat': 1.0, 'surface': 1.0, 'if': 2.0, 'but': 1.0, 'can': 1.0, 'collapses': 1.0, 'mirror': 2.0, 'that': 1.0, 'drawback': 1.0, 'crib': 1.0, 'hard': 1.0, 'later': 1.0, 'in': 2.0, 'this': 1.0, 'he': 1.0, 'laying': 1.0, 'hurt': 1.0, 'easily': 1.0, 'when': 1.0, 'his': 5.0, 'lift': 1.0, 'what': 1.0, 'my': 1.0, 'and': 3.0, 'perfectly': 1.0, 'only': 1.0, 'do': 1.0, 'it': 4.0, 'month': 1.0, 'son': 1.0, 'time': 2.0, 'head': 3.0, 'old': 1.0, 'i': 2.0, 'hated': 1.0, 'crunchy': 1.0, 'use': 1.0, 'front': 1.0, 'we': 1.0, 'a': 2.0, 'fall': 1.0, 'is': 2.0, 'lifted': 1.0, 'plan': 1.0, 'tummy': 3.0, 'would': 2.0, 'not': 3.0, 'once': 1.0, 'of': 1.0, 'him': 3.0, 'reached': 1.0, 'which': 2.0, 'out': 1.0, 'for': 2.0, 'the': 3.0, 'leaves': 1.0, 'put': 1.0, '3': 1.0, 'on': 5.0, 'make': 2.0, 'noise': 1.0, 'expected': 1.0, 'to': 4.0, 'was': 1.0, 'productive': 1.0}
Word element => {'at': 1.0, 'lovingly': 1.0, 'and': 2.0, 'toys': 1.0, 'good': 1.0, 'nice': 1.0, 's': 1.0, 'that': 1.0, 'very': 1.0, 'from': 1.0, 'but': 1.0, 'easily': 2.0, 'can': 1.0, 'size': 1.0, 'somewhat': 1.0, 'falls': 1.0, 'yes': 1.0, '3': 1.0, 'pick': 1.0, 'likes': 1.0, '8': 1.0, 'gaze': 1.0, 'apart': 1.0, 've': 1.0, 'she': 3.0, 'since': 1.0, 'we': 1.0, 'mirror': 2.0, 'daughter': 1.0, 'has': 1.0, 'my': 1.0, 'the': 3.0, 'herself': 1.0, 'is': 1.0, 'was': 1.0, 'had': 1.0, 'now': 1.0, 'over': 1.0, 'months': 2.0, 'on': 2.0, 'up': 1.0, 'always': 1.0, 'just': 1.0, 'used': 1.0, 'this': 1.0, 'it': 4.0, 'floor': 1.0}
Word element => {'far': 1.0, 'so': 1.0, 'made': 1.0, 'purchase': 1.0, 'own': 1.0, 'on': 1.0, 'time': 1.0, 'pen': 1.0, 'the': 1.0, 'we': 1.0, 'play': 1.0, 'loves': 1.0, 'or': 1.0, 'i': 1.0, 'crib': 1.0, 'secure': 1.0, 'himself': 1.0, 'to': 2.0, 'for': 1.0, 'liked': 1.0, 'easy': 1.0, 'just': 1.0, 'best': 1.0, 'very': 1.0, 'up': 1.0, 'staring': 1.0, 'at': 1.0, 'that': 1.0, 's': 1.0, 'you': 1.0, 'can': 1.0, 'he': 1.0, 'it': 2.0, 'have': 1.0, 'tummy': 1.0, 'sit': 1.0}
Word element => {'to': 1.0, 'for': 1.0, 'made': 1.0, 'mirrors': 1.0, 'the': 3.0, 'than': 1.0, 'useful': 1.0, 'very': 1.0, 'when': 1.0, 'him': 1.0, 'on': 1.0, 'can': 2.0, 'baby': 2.0, 'back': 2.0, 'car': 2.0, 'himself': 1.0, 'and': 2.0, 'of': 1.0, 'it': 1.0, 'he': 1.0, 'have': 1.0, 'hang': 1.0, 'we': 3.0, 'seat': 3.0, 'just': 1.0, 'our': 1.0, 's': 1.0, 'driving': 1.0, 'also': 1.0, 'small': 1.0, 'so': 1.0, 'front': 1.0, 'a': 1.0, 'see': 3.0}
Word element => {'dangerous': 1.0, 'be': 1.0, 'would': 1.0, 'was': 1.0, 'it': 5.0, 'this': 1.0, 'out': 1.0, 'long': 1.0, 'now': 1.0, 'will': 1.0, 'at': 1.0, 'mirror': 3.0, 'fall': 1.0, 'is': 1.0, 'check': 1.0, 'back': 1.0, 'herself': 2.0, 'and': 1.0, 'very': 1.0, 'to': 2.0, 'as': 2.0, 'loves': 1.0, 'put': 1.0, 'think': 1.0, 'in': 1.0, 'daughter': 1.0, 'my': 1.0, 'with': 1.0, 'crawl': 1.0, 'cute': 1.0, 'army': 1.0, 'looking': 1.0, 'but': 1.0, 'can': 1.0, 'right': 1.0, 'does': 1.0, 'because': 1.0, 's': 1.0, 'you': 2.0, 'pretty': 1.0, 'if': 1.0, 'just': 1.0, 'light': 1.0, 'are': 1.0, 'there': 1.0, 'over': 1.0, 'up': 1.0, 'heavier': 1.0, 'the': 3.0, 'playing': 1.0, 'baby': 1.0, 'i': 1.0}
Word element => {'recommend': 1.0, 'worth': 1.0, 'made': 1.0, 'learn': 1.0, 'just': 1.0, 'but': 1.0, 'hold': 1.0, 'will': 1.0, 'how': 1.0, 'joy': 1.0, 'trying': 1.0, 'thats': 1.0, 'reflection': 1.0, 'memorized': 1.0, 's': 1.0, 'spin': 1.0, 'white': 1.0, 'front': 2.0, 'unless': 1.0, 'you': 1.0, 'what': 1.0, 'when': 1.0, 'again': 1.0, 'much': 1.0, 'grab': 1.0, 'interest': 1.0, 'so': 1.0, 'new': 1.0, 'time': 3.0, 'seem': 1.0, 'come': 1.0, 'watch': 1.0, 'through': 1.0, 'watching': 1.0, 'them': 1.0, 'baby': 1.0, 'toys': 1.0, 'started': 1.0, 'strolling': 1.0, 'behold': 1.0, 'little': 2.0, 'dangle': 1.0, 'seeing': 1.0, 'casually': 1.0, 'yes': 1.0, 'don': 2.0, 'over': 1.0, 'toy': 3.0, 'was': 3.0, 'to': 8.0, 't': 3.0, 'stumbled': 1.0, 'then': 1.0, 'we': 1.0, 'a': 2.0, 'attention': 1.0, 'of': 2.0, 'the': 5.0, 'ball': 1.0, 'reach': 2.0, 'believe': 2.0, 'while': 1.0, 'long': 1.0, 'on': 1.0, 'hubby': 1.0, 'is': 1.0, 'weeks': 1.0, 'tested': 1.0, 'using': 1.0, 'looking': 1.0, 'ever': 1.0, 'that': 1.0, 'buy': 1.0, 'something': 2.0, 'and': 11.0, 'know': 1.0, 'sold': 1.0, 'smiling': 1.0, 'play': 1.0, 'interesting': 1.0, 'i': 9.0, 'attempted': 1.0, '10': 1.0, 'for': 4.0, 'too': 1.0, 'one': 2.0, 'highly': 1.0, 'this': 4.0, 'eyes': 1.0, 'far': 1.0, 'he': 7.0, 'already': 1.0, 'him': 4.0, 'starting': 1.0, 'it': 7.0, 'out': 1.0, 'kicking': 1.0, 'holding': 1.0, 'instantly': 1.0, 'shake': 1.0, 'right': 1.0, 'black': 1.0, 'there': 1.0, 'brought': 2.0, 'lo': 1.0, 'by': 2.0, 'home': 1.0, 'continued': 1.0, 'with': 2.0, 'really': 1.0, 'swear': 1.0, 'mom': 1.0, 'first': 2.0, 'mirror': 1.0, 'in': 2.0, 'm': 1.0, 'completely': 1.0, 'face': 1.0, 'couldn': 1.0, 'my': 3.0, 'yelling': 1.0, 'did': 1.0, 'his': 4.0, 'tear': 1.0, 'eye': 1.0, 'also': 1.0, 'store': 1.0, 'seemed': 1.0, 'enjoy': 1.0}
Word element => {'white': 1.0, 'black': 1.0, 'grandson': 1.0, 'loves': 2.0, 'into': 1.0, 'months': 1.0, 'is': 2.0, 'spin': 1.0, 'looking': 2.0, 'young': 1.0, 'when': 1.0, '2': 1.0, 'the': 4.0, 'my': 1.0, 'ball': 1.0, 'and': 4.0, 'he': 1.0, 'ladybug': 1.0, 'fascinated': 1.0, 'tries': 1.0, 'bee': 1.0, 'grab': 1.0, 'to': 1.0, 'at': 1.0, 'mirror': 1.0, 'we': 1.0}
Word element => {'or': 1.0, 'has': 1.0, 'hung': 1.0, 'dimensional': 1.0, 'older': 1.0, 'it': 1.0, 'for': 2.0, 'love': 1.0, 'plus': 1.0, 'colors': 1.0, 'baby': 1.0, 'placed': 1.0, 'at': 1.0, 'faces': 1.0, 'engages': 1.0, 'upright': 1.0, 'babies': 2.0, 'newborns': 1.0, 'white': 1.0, 'the': 1.0, 'red': 1.0, 'and': 1.0, 'that': 1.0, 'black': 1.0, 'a': 1.0, 'can': 1.0, 'looking': 1.0, 'item': 1.0, 'be': 1.0}
Word element => {'anyone': 1.0, 'would': 1.0, 'up': 1.0, 'enough': 1.0, 'as': 1.0, 'big': 1.0, 'really': 1.0, 'babies': 1.0, 'for': 2.0, 'mirror': 2.0, 'well': 1.0, 'see': 1.0, 'baby': 1.0, 'recommend': 1.0, 'she': 1.0, 'to': 3.0, 'its': 1.0, 'the': 3.0, 'great': 1.0, 'her': 1.0, 'works': 1.0, 'loves': 1.0, 'it': 2.0, 'velcro': 1.0, 'face': 1.0, 'hold': 1.0, 'together': 1.0, 'while': 1.0, 'hanging': 1.0}
Word element => {'rattle': 1.0, 'rolly': 1.0, 'ladybug': 1.0, 'it': 1.0, 'great': 1.0, 'little': 1.0, 'mirror': 1.0, 'on': 1.0, 'with': 1.0, 'time': 1.0, 'white': 1.0, 'style': 1.0, 'tummy': 1.0, 'for': 1.0, 'daughter': 1.0, 'ball': 1.0, 'likes': 1.0, 'black': 1.0, 'my': 1.0, 'the': 2.0}
Word element => {'push': 1.0, 'itself': 1.0, 're': 1.0, 'time': 1.0, 'every': 1.0, 'got': 1.0, 'loved': 1.0, 'on': 1.0, 'topple': 1.0, 'velcroing': 1.0, 'however': 1.0, 'began': 1.0, 'it': 5.0, 'older': 1.0, 'this': 1.0, 'he': 3.0, 'velcro': 1.0, 'mobile': 1.0, 'bought': 1.0, 'the': 3.0, 'my': 1.0, 'to': 3.0, 'as': 1.0, 'very': 1.0, 'and': 3.0, 'grandson': 1.0, 'for': 2.0, 'innitially': 1.0, 'touched': 1.0, 'i': 1.0, 'two': 1.0, 'frustrating': 1.0, 'him': 1.0, 'sides': 1.0, 'having': 1.0, 'set': 2.0, 'over': 1.0, 'up': 2.0, 'there': 1.0, 'bottom': 1.0, '34': 2.0, 'keeps': 1.0, 'more': 1.0, 'is': 1.0, 'at': 1.0, 'keep': 1.0, 'together': 1.0, 'again': 1.0, 'when': 1.0, 'slightest': 1.0, 'me': 1.0, 'not': 1.0, 'but': 1.0}
Word element => {'reflection': 1.0, 'to': 1.0, 'him': 1.0, 'for': 1.0, 'height': 1.0, 'good': 1.0, 'see': 1.0, 'a': 1.0, 'at': 1.0, 'floor': 1.0, 'crib': 1.0, 'his': 2.0, 'yard': 1.0, 'sassy': 1.0, 'grandson': 1.0, 'we': 1.0, 'mirror': 1.0, 'play': 1.0, 'really': 1.0, 'hung': 1.0, 'of': 1.0, 'and': 1.0, 'our': 1.0, 've': 1.0, 'this': 1.0, 'it': 2.0, 'from': 1.0, 'top': 1.0, 'the': 1.0, 'so': 1.0, 'enjoys': 1.0, 's': 1.0}
Word element => {'down': 1.0, 'com': 1.0, 'if': 1.0, 'upside': 1.0, 'cute': 1.0, 'sure': 1.0, 'it': 4.0, 'not': 1.0, 'just': 1.0, 'kid': 1.0, 'look': 1.0, 'my': 1.0, 'and': 2.0, 'like': 1.0, 'likes': 1.0, 'bee': 1.0, 's': 2.0, 'is': 1.0, 'amazon': 1.0, 'a': 1.0, 'doesn': 1.0, 'knock': 1.0, 'off': 1.0, 'the': 2.0, 't': 1.0, 'picture': 1.0, 'here': 1.0, 'on': 1.0}
Word element => {'child': 1.0, 'one': 1.0, 'online': 1.0, 'mirrors': 1.0, 'safe': 1.0, 'for': 1.0, 'hard': 1.0, 'current': 1.0, 'searched': 1.0, 'problem': 1.0, 'baby': 1.0, 'this': 3.0, 'tipping': 1.0, 'fabric': 1.0, 'the': 5.0, 'manipulated': 1.0, 'by': 1.0, 'attached': 1.0, 'true': 1.0, 'locally': 1.0, 'is': 7.0, 'image': 1.0, 'to': 1.0, 'eight': 1.0, 'lightweight': 2.0, 'aspect': 1.0, 'fascinated': 1.0, 'month': 1.0, 'best': 1.0, 'both': 1.0, 'mirror': 3.0, 'grandma': 1.0, 'object': 1.0, 'long': 1.0, 'although': 1.0, 'that': 2.0, 'an': 1.0, 'old': 1.0, 'instant': 1.0, 'reflected': 1.0, 'favorite': 1.0, 'stand': 1.0, 'not': 2.0, 'meets': 1.0, 'of': 2.0, 'stable': 1.0, 'needs': 1.0, 'interest': 1.0, 'boy': 1.0, 'so': 2.0, 'against': 2.0, 'other': 1.0, 'anything': 1.0, 'preferred': 1.0, 'nearby': 1.0, 'and': 5.0, 'him': 1.0, 'be': 2.0, 'could': 1.0, 'propped': 1.0, 'a': 3.0, 'crib': 1.0, 'or': 1.0, 'if': 1.0, 'easily': 2.0, 'stationary': 1.0, 'would': 1.0, 'position': 1.0, 'toy': 1.0}
Word element => {'birth': 1.0, 'lasted': 1.0, 'has': 1.0, 'my': 1.0, 'toys': 1.0, 'months': 1.0, 'one': 1.0, 'down': 1.0, 'because': 1.0, 'nevertheless': 1.0, 'give': 1.0, 'of': 1.0, 'stable': 1.0, 'is': 1.0, 'more': 1.0, 'which': 1.0, 'six': 1.0, 'floor': 1.0, 'had': 1.0, 'standing': 1.0, 'wider': 1.0, 'open': 1.0, 'would': 2.0, 'and': 2.0, 'at': 1.0, 'stared': 1.0, 'bee': 1.0, 'happily': 1.0, 'home': 1.0, 'later': 1.0, 'from': 3.0, 'talked': 1.0, 'time': 1.0, 's': 1.0, 'we': 2.0, 'mirror': 2.0, 'other': 1.0, 'arrived': 1.0, 'top': 1.0, 'herself': 2.0, 'ideally': 1.0, 'daughter': 2.0, 'attached': 1.0, 'this': 2.0, 'she': 2.0, 'it': 6.0, 'with': 2.0, 'through': 1.0, 'loved': 1.0, 'five': 2.0, 'enjoyed': 1.0, 'hospital': 1.0, 'pretty': 1.0, 'to': 2.0, 'our': 1.0, 'hands': 1.0, 'the': 8.0, 'playing': 1.0, 'that': 1.0, 'in': 2.0, 'also': 1.0, 'stars': 1.0, 'where': 1.0, 'for': 2.0, 'long': 1.0, 'used': 1.0, 'early': 1.0, 'make': 1.0, 'on': 2.0, 'much': 1.0, 'primarily': 1.0, 'easily': 1.0, 'crib': 1.0, 'slats': 1.0, 'i': 2.0, 'agree': 1.0, 'periods': 1.0, 'reviewers': 1.0}
Word element => {'granddaughter': 1.0, '3': 1.0, 'my': 1.0, 'old': 1.0, 'purchased': 1.0, 'good': 1.0, 'is': 1.0, 'on': 1.0, 'time': 1.0, 'infant': 1.0, 'loves': 1.0, 'colorful': 1.0, 'grandson': 1.0, 'very': 1.0, 'and': 2.0, 'it': 3.0, 'too': 1.0, 'yr': 1.0, 'condition': 1.0, 'arrived': 1.0, 'for': 1.0, 'in': 1.0}
Word element => {'seen': 1.0, 'baby': 1.0, 'for': 1.0, 'lot': 1.0, 'i': 2.0, 'of': 1.0, 'recommend': 1.0, 've': 1.0, 'not': 1.0, 'mirrors': 1.0, 'a': 1.0, 'other': 1.0, 'this': 1.0, 'product': 1.0, 'items': 1.0, 'highly': 1.0, 'like': 1.0, 'as': 1.0, 'face': 1.0, 'distorted': 1.0}
Word element => {'well': 1.0, 'bee': 1.0, 'bug': 1.0, 'super': 1.0, 'at': 1.0, 'little': 1.0, 'crib': 1.0, 'lady': 1.0, 'mirror': 1.0, 'put': 1.0, 'his': 1.0, 'loves': 1.0, 'night': 1.0, 'i': 2.0, 'he': 1.0, 'this': 1.0, 'it': 3.0, 'cute': 1.0, 'absolutely': 1.0, 'the': 2.0, 'great': 1.0, 'than': 1.0, 'bigger': 1.0, 'as': 1.0, 'son': 1.0, 'time': 1.0, 'my': 1.0, 'was': 1.0, 'had': 1.0, 'for': 1.0, 'really': 1.0, 'is': 1.0, 'anticipated': 1.0, 'likes': 1.0, 'tummy': 1.0, 'and': 2.0, 'in': 1.0, 'also': 1.0}
Word element => {'attachments': 1.0, 'plays': 1.0, 'when': 1.0, 'over': 1.0, 'can': 1.0, 'so': 1.0, 'weight': 1.0, 'darn': 1.0, 's': 1.0, 'son': 1.0, 'the': 2.0, 'my': 2.0, 'mirror': 1.0, 'likes': 1.0, 'easily': 1.0, 'glass': 1.0, 'is': 2.0, 'really': 1.0, 'knock': 1.0, 'good': 1.0, 'and': 1.0, 'for': 1.0, 'reflection': 1.0, 'not': 1.0, 'being': 1.0, 'pretty': 2.0, 'problem': 1.0, 'that': 1.0, 'with': 1.0, 'he': 2.0, 'this': 1.0, 'only': 1.0, 'it': 2.0, 'light': 1.0}
Word element => {'total': 1.0, 'plays': 1.0, '7': 1.0, 'don': 1.0, 'get': 1.0, 'and': 3.0, '15am': 1.0, 'at': 1.0, 'months': 2.0, '3': 1.0, 'she': 3.0, 'a': 1.0, 'since': 1.0, 'lifesaver': 1.0, 'we': 1.0, 'mirror': 1.0, '6': 2.0, 'loved': 1.0, 'time': 1.0, 'laughs': 1.0, 'has': 2.0, 'keeps': 1.0, 'good': 1.0, 'until': 1.0, 'wakes': 1.0, 'my': 1.0, 't': 1.0, 'the': 1.0, 'old': 2.0, 'was': 1.0, 'now': 1.0, 'this': 1.0, 'it': 1.0, 'her': 2.0, 'occupied': 1.0, 'in': 1.0, 'mornings': 1.0, 'daughter': 1.0, 'when': 1.0}
Word element => {'is': 1.0, 'wish': 1.0, 'i': 2.0, '9': 1.0, 'better': 1.0, 'still': 1.0, 'even': 1.0, 'occupied': 1.0, 'what': 1.0, 'and': 2.0, 'months': 2.0, 'over': 1.0, 'now': 1.0, 'to': 1.0, 'its': 1.0, 'such': 1.0, 'a': 1.0, 'that': 2.0, 'simple': 1.0, 'at': 1.0, 'thing': 1.0, 'have': 1.0, 'of': 1.0, 'there': 1.0, 'age': 1.0, 'baby': 1.0, 'has': 1.0, 'they': 2.0, 'my': 1.0, 'distorted': 1.0, 'from': 1.0, 'stick': 1.0, 'best': 1.0, 'make': 1.0, 'it': 2.0, 'so': 1.0, 'the': 4.0, 'without': 1.0, 'seen': 1.0, 'floor': 1.0, '2': 1.0, 'can': 1.0, 'but': 1.0, 'super': 1.0, 'toppling': 1.0, 'would': 1.0, 've': 1.0, 'for': 1.0, 'out': 1.0, 'not': 1.0, 'reflection': 1.0}
Word element => {'be': 1.0, 'should': 1.0, 'what': 1.0, 'but': 1.0, 'say': 1.0, 'than': 1.0, 'far': 1.0, 'could': 1.0, 'that': 2.0, 'whatever': 1.0, 'not': 1.0, 'is': 2.0, 'my': 1.0, 'more': 1.0, 'the': 1.0, 'into': 1.0, 'baby': 1.0, 'about': 1.0, 'him': 1.0, 'can': 1.0, 'this': 1.0, 'it': 2.0, 'as': 2.0, 'i': 1.0, 'mirror': 1.0, 'tell': 1.0}
Word element => {'seeing': 1.0, 'he': 1.0, 'unfortunately': 1.0, 'him': 1.0, 'himself': 2.0, 'looking': 1.0, 'sort': 1.0, 'wondering': 1.0, 'left': 1.0, 'face': 1.0, 'and': 1.0, 'baby': 2.0, 'stretches': 1.0, 'simply': 1.0, 'itself': 1.0, 'in': 6.0, 'enthusiastic': 1.0, 'hold': 1.0, 'cannot': 1.0, 'real': 1.0, 'falling': 1.0, 'sides': 3.0, 'mirror': 6.0, 'i': 1.0, 'two': 3.0, 'about': 1.0, 'developmental': 1.0, 'no': 1.0, 'connects': 1.0, 'between': 2.0, 'directions': 1.0, 'topple': 1.0, 'fabric': 3.0, 'at': 1.0, 'space': 1.0, 'problenm': 1.0, 'the': 13.0, 'what': 2.0, 'together': 1.0, 'style': 1.0, 'not': 2.0, 'does': 1.0, 'because': 1.0, 'with': 1.0, 'this': 5.0, 'it': 3.0, 'is': 7.0, 'there': 1.0, 'actually': 1.0, 'effect': 1.0, 'for': 1.0, 'product': 3.0, 'shipped': 2.0, 'loves': 1.0, 'that': 4.0, 'fills': 1.0, 'reflect': 1.0, 'filling': 1.0, 'of': 3.0, 'gap': 1.0, 'our': 1.0, 'all': 1.0, 'as': 2.0, 'to': 3.0, 'child': 1.0, 'up': 2.0, 'over': 2.0, 'when': 1.0, 'am': 1.0, 'contorts': 1.0, 'easily': 1.0, 'you': 1.0, 'open': 1.0, 'we': 1.0, 's': 1.0, 'causes': 1.0, 'accurately': 1.0, 'a': 4.0, 'large': 1.0, 'photo': 2.0, 'enough': 1.0, 'has': 2.0, 'angle': 1.0, 'on': 1.0, 'your': 1.0, 'funhouse': 1.0, 'constantly': 1.0}
Word element => {'floor': 1.0, 'distorted': 1.0, 'not': 1.0, 'and': 2.0, 'clear': 1.0, 'developmental': 1.0, 'toy': 1.0, 'for': 2.0, 'tummy': 1.0, 'babies': 1.0, 'great': 1.0, 'love': 1.0, 'the': 1.0, 'time': 1.0, 'is': 1.0, 'colors': 1.0, 'excellent': 1.0, 'mirror': 1.0}
Word element => {'five': 1.0, 'be': 1.0, 'would': 1.0, 'had': 1.0, 'really': 1.0, 'i': 1.0, 'base': 2.0, 'constantly': 1.0, 'on': 1.0, 'easy': 1.0, 'over': 2.0, 'problem': 1.0, 'changed': 1.0, 'being': 1.0, 'by': 1.0, 'so': 2.0, 'change': 1.0, 'flat': 1.0, 'have': 1.0, 'looking': 1.0, '8': 1.0, 'its': 1.0, 'only': 1.0, 'pack': 1.0, 'with': 3.0, 'wish': 1.0, 'this': 3.0, 'first': 1.0, 'not': 1.0, 'n': 1.0, 'in': 3.0, 'star': 1.0, 'herself': 1.0, 'around': 1.0, 'is': 7.0, 'it': 8.0, 'she': 7.0, 'then': 1.0, 'falling': 1.0, 'loved': 1.0, 'loves': 1.0, 'old': 1.0, 'touch': 1.0, 'sturdy': 2.0, 'captivated': 1.0, 'bugs': 1.0, '13': 1.0, 'at': 1.0, 'doesn': 1.0, 'was': 1.0, 'tips': 1.0, 'weeks': 1.0, 'now': 1.0, 'to': 3.0, 'started': 1.0, 'my': 2.0, 'whatsoever': 1.0, 'playing': 2.0, 'the': 5.0, 'week': 1.0, 'figured': 1.0, 'ladybug': 1.0, 'mirror': 1.0, 'a': 2.0, 'notice': 1.0, 't': 1.0, 'we': 2.0, 'reaching': 1.0, 'out': 2.0, 'white': 1.0, 'play': 1.0, 'and': 4.0, 'ball': 1.0, 'toy': 5.0, 'has': 1.0, 'how': 1.0, 'spin': 1.0, 'black': 1.0, 'set': 1.0, 'her': 2.0, 'when': 2.0}
Word element => {'recommend': 1.0, 'gifts': 1.0, 'in': 1.0, 'purchase': 1.0, 'this': 2.0, 'future': 1.0, 'keep': 1.0, 'not': 1.0, 'baby': 1.0, 'other': 1.0, 'most': 1.0, 'distorted': 1.0, 'compared': 1.0, 'size': 1.0, 'time': 1.0, 'so': 1.0, 'wobbly': 1.0, 'mirrors': 1.0, 'he': 4.0, 'with': 1.0, 'floor': 1.0, 'great': 1.0, 'enjoys': 1.0, 'might': 1.0, 'a': 1.0, 'we': 1.0, 's': 3.0, 'for': 2.0, 'love': 1.0, 'think': 1.0, 'on': 2.0, 'months': 1.0, 'now': 1.0, 'long': 1.0, 'although': 1.0, 'the': 4.0, 'playing': 1.0, 'still': 1.0, 'standing': 1.0, 'purchased': 1.0, 'old': 1.0, 'i': 3.0, '5': 1.0, 'need': 1.0, 'lie': 1.0, 'and': 5.0, 'really': 1.0, 'is': 1.0, 'it': 3.0, 'month': 1.0, '9': 1.0, 'attach': 1.0, 'leg': 1.0, 'of': 2.0, 'or': 1.0, 'loves': 1.0, 'when': 1.0, 'something': 1.0, 'would': 1.0, 'chair': 1.0, 'crawling': 1.0, 'his': 1.0, 'tummy': 1.0, 'ladybug': 1.0, 'to': 3.0, 'as': 2.0, 'll': 1.0, 'especially': 1.0, 'large': 1.0}
Word element => {'have': 1.0, 't': 1.0, 'in': 2.0, 'body': 1.0, 'no': 1.0, 'has': 1.0, 'baby': 1.0, 'my': 1.0, 'an': 1.0, 'doesn': 1.0, 'but': 2.0, 'cute': 1.0, 'very': 1.0, 's': 1.0, 'can': 1.0, 'he': 3.0, 'it': 1.0, 'this': 2.0, 'loves': 1.0, 'mirror': 3.0, 'his': 1.0, 'our': 1.0, 'interest': 2.0, 'where': 1.0, 'entire': 1.0, 'floor': 1.0, 'see': 1.0}
Word element => {'future': 1.0, 'again': 1.0, 'buy': 1.0, 'would': 1.0, 'product': 1.0, 'it': 1.0, 'great': 1.0, 'we': 1.0, 'and': 1.0, 'using': 1.0, 'loved': 1.0, 'this': 1.0, 'out': 1.0, 'mirror': 1.0, 'inside': 1.0, 'in': 1.0, 'crib': 1.0, 'of': 1.0, 'the': 2.0}
Word element => {'corner': 1.0, 'spinning': 1.0, 'put': 1.0, 'lap': 1.0, 'himself': 1.0, 'mirror': 1.0, 'pick': 1.0, 'holding': 1.0, 'who': 1.0, 'or': 1.0, 'mommy': 1.0, 'reflection': 1.0, 'his': 2.0, 'ball': 1.0, 'see': 1.0, 'him': 2.0, 'still': 1.0, 'in': 3.0, 'taken': 1.0, 'the': 3.0, 'aluminum': 1.0, 'this': 1.0, 'too': 1.0, 'and': 5.0, 'cruising': 1.0, 'foil': 1.0, 'loves': 1.0, 'that': 1.0, 'can': 2.0, 'but': 1.0, 'doesn': 1.0, 'my': 1.0, 'loved': 1.0, 'sections': 1.0, '9': 1.0, 'it': 2.0, 'month': 1.0, 'old': 1.0, 'he': 4.0, 'mirrors': 2.0, 'well': 1.0, 'has': 1.0, 'time': 1.0, 'for': 2.0, 'fear': 1.0, 'is': 2.0, 'away': 1.0, 'now': 1.0, 'great': 1.0, 'climbing': 1.0, 'although': 1.0, 'long': 1.0, 'other': 1.0, 'crawling': 1.0, 'breaking': 1.0, 'all': 2.0, 'up': 2.0, 'them': 2.0, 'baby': 1.0, 'are': 1.0, 'horribly': 1.0, 'small': 1.0, 'daddy': 1.0, 'of': 2.0, 'warped': 1.0, 's': 1.0, 'a': 1.0, 'we': 1.0, 't': 1.0, 'like': 1.0, 'stand': 1.0, 've': 1.0, 'super': 1.0}
Word element => {'well': 1.0, 'pretty': 1.0, 'up': 2.0, 'when': 2.0, 'morning': 1.0, 'and': 2.0, 'woke': 1.0, 'held': 1.0, 'evey': 1.0, 'used': 1.0, 'son': 1.0, 'my': 1.0, 'at': 1.0, 'night': 1.0, 'refused': 1.0, 'go': 1.0, 'almost': 1.0, 'sleep': 1.0, 'served': 1.0, 'he': 2.0, 'this': 1.0, 'it': 1.0, 'its': 1.0, 'to': 2.0, 'purpose': 1.0}
Word element => {'baby': 1.0, 'our': 1.0, 'of': 1.0, 'loved': 1.0, 'then': 1.0, 's': 1.0, 'side': 1.0, 'to': 2.0, 'the': 3.0, 'attached': 1.0, 'mirror': 1.0, 'we': 1.0, 'swing': 1.0, 'chair': 1.0, 'do': 1.0, 'tummy': 1.0, 'at': 1.0, 'on': 1.0, 'time': 1.0, 'it': 1.0, 'he': 1.0, 'first': 1.0, 'with': 1.0, 'floor': 1.0, 'for': 1.0, 'him': 1.0}
Word element => {'looking': 1.0, 'was': 1.0, 'what': 1.0, 'exactly': 1.0, 'should': 1.0, 'connects': 1.0, 'as': 2.0, 'portacrib': 1.0, 'misleading': 1.0, 'this': 1.0, 'a': 1.0, 'is': 4.0, 'old': 1.0, 'fabric': 1.0, 'tummy': 1.0, 'bought': 1.0, 'six': 1.0, 'ball': 1.0, 'floor': 1.0, 'my': 1.0, 'in': 3.0, 'also': 1.0, 'flat': 1.0, 'having': 1.0, 'love': 1.0, 'for': 3.0, 'stands': 1.0, 'it': 5.0, 'she': 1.0, 'week': 1.0, 'granddaughter': 1.0, 'i': 3.0, 'two': 1.0, 'at': 1.0, 'no': 1.0, 'sides': 1.0, 'the': 9.0, 'turns': 1.0, 'together': 1.0, 'perfectly': 1.0, 'bottom': 1.0, 'there': 1.0, 'lies': 1.0, 'enough': 1.0, 'on': 1.0, 'picture': 1.0, 'distortion': 1.0, 'bit': 1.0, 'time': 1.0, 'ladybug': 1.0, 'mirror': 1.0, 'when': 1.0, 'easily': 1.0}
Word element => {'thanks': 1.0, 'shipping': 1.0, 'day': 1.0, 'for': 1.0, 'free': 1.0, 'time': 1.0, 'got': 1.0, 'amazon': 2.0, 'bigger': 1.0, 'been': 1.0, 'have': 1.0, 'but': 2.0, 'than': 1.0, 'list': 1.0, 'usually': 1.0, 'to': 1.0, 'was': 1.0, 'items': 1.0, 'their': 1.0, 'that': 1.0, 'smaller': 1.0, 'dimensions': 1.0, 'understand': 1.0, 'i': 2.0, 'picture': 1.0, 'way': 2.0, 'with': 1.0, 'christmas': 1.0, 'this': 1.0, 'it': 4.0, 'appeared': 1.0, 'in': 2.0, 'like': 1.0, 'could': 1.0, '2': 1.0, 'the': 1.0, 'me': 1.0, 'do': 1.0}
Word element => {'bug': 1.0, 'himself': 1.0, 'hold': 1.0, 'loves': 1.0, 'six': 1.0, 's': 1.0, 'rolling': 1.0, 'months': 1.0, 'ways': 1.0, 'bigger': 1.0, 'needed': 1.0, 'head': 1.0, 'now': 1.0, 'to': 5.0, 'was': 1.0, 'lady': 1.0, 'play': 1.0, 'mirror': 2.0, 'both': 1.0, 'his': 1.0, 'encourage': 1.0, 'side': 1.0, 'top': 1.0, 'preferred': 1.0, 'that': 1.0, 'our': 1.0, 'set': 1.0, 'of': 1.0, 'with': 1.0, 'this': 1.0, 'purchases': 1.0, 'turning': 1.0, 'he': 3.0, 'one': 2.0, 'eventually': 1.0, 'next': 1.0, 'great': 1.0, 'the': 3.0, 'go': 1.0, 'activity': 1.0, 'and': 3.0, 'mat': 1.0}
Word element => {'bought': 1.0, 'glad': 1.0, 'really': 1.0, 'i': 2.0, 'development': 1.0, 'visual': 1.0, 'some': 1.0, 'need': 1.0, 'still': 1.0, 'grasp': 1.0, 'belly': 1.0, 'this': 3.0, 'from': 1.0, 'do': 1.0, 'getting': 1.0, 'the': 4.0, 'stimulation': 1.0, 'great': 1.0, 'my': 1.0, 'either': 1.0, 'it': 1.0, 'she': 3.0, 'month': 1.0, 'back': 1.0, 'herself': 1.0, 'course': 1.0, 'is': 1.0, 'in': 3.0, 'also': 2.0, 'old': 1.0, 'yet': 1.0, 'or': 1.0, 'grandbaby': 1.0, 'her': 4.0, 'looking': 2.0, 'right': 1.0, 'who': 1.0, 'at': 3.0, 'was': 3.0, 'liked': 1.0, 'mirror': 1.0, 'ladybug': 1.0, 'babies': 1.0, 'useful': 1.0, 'things': 1.0, 'fussy': 1.0, 'car': 2.0, 'am': 1.0, 'mesmerized': 1.0, 'when': 2.0, 'but': 1.0, '2': 1.0, 'can': 1.0, 'distance': 1.0, 'up': 1.0, 'of': 1.0, 'seat': 1.0, 't': 1.0, 'could': 1.0, 'propped': 1.0, 'a': 1.0, 'for': 3.0, 'product': 1.0}
Word element => {'pretty': 1.0, 'stands': 1.0, 'tummy': 1.0, 'having': 1.0, 'while': 1.0, 'crib': 1.0, 'use': 1.0, 'looking': 1.0, 'is': 1.0, 'face': 1.0, 'baby': 1.0, 'so': 1.0, 'y': 1.0, 'like': 1.0, 'outside': 1.0, 'as': 1.0, 'normal': 1.0, 'to': 1.0, 'of': 1.0, 'there': 1.0, 'and': 2.0, 'do': 1.0, 'what': 1.0, 'does': 1.0, 'i': 2.0, 'supposed': 1.0, 'he': 1.0, 'it': 4.0, 'circus': 1.0, 'cute': 1.0, 's': 5.0, 'well': 2.0, 'a': 1.0, 'that': 1.0, 'rattle': 1.0, 'mirror': 1.0, 'attached': 1.0, 'too': 1.0, 'time': 1.0, 'isn': 1.0, 'the': 3.0, 't': 1.0}
Word element => {'of': 1.0, 'could': 1.0, 'soon': 1.0, 'long': 1.0, 'toy': 1.0, 'floor': 1.0, 'a': 1.0, 'for': 1.0, 'use': 1.0, 'not': 1.0, 'did': 1.0, 'keeps': 1.0, 'as': 2.0, 'son': 1.0, 'really': 1.0, 'is': 1.0, 'end': 1.0, 'my': 1.0, 'the': 3.0, 'nicely': 1.0, 'and': 1.0, 'yank': 1.0, 'off': 1.0, 'crib': 1.0, 'he': 1.0, 'hard': 1.0, 'it': 3.0, 'him': 1.0, 'point': 1.0, 'was': 1.0, 'grab': 1.0, 'to': 2.0, 'attaches': 1.0, 'but': 1.0, 'busy': 1.0, 'tries': 1.0, 'i': 1.0, 'guess': 1.0, 'that': 3.0}
Word element => {'recommend': 1.0, 'have': 1.0, 'toy': 1.0, 'good': 1.0, 'at': 1.0, 'mat': 1.0, 'daughter': 1.0, 'my': 1.0, 'near': 1.0, 'floor': 1.0, 'the': 1.0, 'reviews': 1.0, 'are': 2.0, 'ordered': 1.0, 'carpet': 1.0, 'if': 2.0, 'reflect': 1.0, 'but': 1.0, 'textured': 1.0, 'play': 1.0, 'and': 3.0, 'away': 1.0, 'she': 1.0, 'it': 9.0, 'this': 2.0, 'anyway': 1.0, 'up': 2.0, 'of': 1.0, 'i': 5.0, 'look': 1.0, 'fine': 1.0, 'course': 1.0, 'around': 1.0, 'is': 2.0, 'd': 1.0, 'mirror': 1.0, 'loves': 1.0, 'that': 1.0, 'saw': 1.0, 'some': 1.0, 'herself': 1.0, 'saying': 1.0, 'perfectly': 1.0, 'stand': 1.0, 'not': 2.0, 'didn': 1.0, 'wouldn': 1.0, 'even': 1.0, 'think': 1.0, 'put': 1.0, 'on': 2.0, 'properly': 1.0, 'distorted': 1.0, 'because': 1.0, 'mirrored': 1.0, 'yes': 1.0, 'glass': 1.0, 'bit': 1.0, 'you': 2.0, 't': 2.0, 'a': 4.0, 's': 3.0, 'real': 1.0, 'stands': 1.0, 'far': 1.0, 'problem': 1.0, 'closer': 1.0, 'smile': 1.0, 'to': 3.0}
Word element => {'minutes': 1.0, 'for': 1.0, 'occupied': 1.0, 'him': 1.0, 'keeps': 1.0, 'least': 1.0, 'to': 1.0, 'little': 1.0, 'crib': 2.0, 'blurriness': 1.0, 'no': 1.0, 'at': 2.0, 've': 1.0, 'in': 1.0, 'or': 2.0, 'true': 1.0, 'a': 2.0, 'ball': 1.0, 'floor': 1.0, 'leaves': 1.0, 'during': 1.0, '30': 1.0, 'this': 1.0, 'lady': 1.0, 'is': 3.0, 'my': 2.0, 'the': 4.0, 'olds': 1.0, 'distortion': 1.0, 'seen': 1.0, 'when': 1.0, 'mirror': 3.0, 'best': 1.0, 'loves': 1.0, 'that': 2.0, 'spins': 1.0, 'lying': 1.0, 'one': 3.0, 'i': 1.0, 'crinkle': 1.0, 'and': 3.0, 'green': 1.0, 'himself': 1.0, 'look': 1.0, 'tummy': 1.0, 'time': 1.0, 'toy': 1.0, 'has': 1.0, 'his': 1.0, 'bug': 1.0, 'of': 1.0, '5': 1.0, 'it': 1.0, 'month': 1.0, 'favorite': 1.0}
Word element => {'buy': 1.0, 'wouldn': 1.0, 'probably': 1.0, 'but': 1.0, 'bee': 1.0, 'bug': 1.0, 'liked': 1.0, 'baby': 1.0, 'my': 1.0, 'and': 2.0, 'well': 1.0, 'which': 1.0, 'out': 1.0, 'lady': 1.0, 'this': 1.0, 'come': 1.0, 'it': 4.0, 'with': 1.0, 'off': 1.0, 'great': 1.0, 'a': 1.0, 't': 2.0, 'mirror': 3.0, 'sticker': 1.0, 'there': 1.0, 'again': 1.0, 'alright': 1.0, 'would': 1.0, 'the': 6.0, 'without': 1.0, 'up': 1.0, 'over': 1.0, 'fall': 1.0, 'is': 2.0, 'horrible': 1.0, 'hate': 1.0, 'that': 1.0, 'stand': 1.0, 'i': 2.0, 'touch': 1.0, 'all': 1.0, 'stupid': 1.0, 'stickers': 1.0, 'on': 3.0, 'stuff': 1.0, 'put': 1.0, 'was': 1.0, 'doesn': 1.0, 'scratched': 1.0, 'will': 1.0, 'why': 1.0, 'rubbing': 1.0, 'very': 1.0, 'floor': 1.0, 'either': 1.0, 'not': 3.0, 'slightest': 1.0, 'manufacturers': 1.0, 'cute': 1.0}
Word element => {'buy': 1.0, 'worth': 1.0, 'for': 1.0, 'reach': 1.0, 'and': 1.0, 'd': 1.0, 'she': 1.0, 'on': 1.0, 'her': 1.0, 'hated': 1.0, 'daughter': 1.0, 'to': 1.0, 'look': 1.0, 'herself': 2.0, 'in': 2.0, 'my': 1.0, 'the': 4.0, 'our': 1.0, 'of': 1.0, 'struggle': 1.0, 'time': 2.0, 'definitely': 2.0, 'tummy': 2.0, 'ground': 1.0, 'front': 1.0, 'laugh': 1.0, 'this': 1.0, 'loved': 1.0, 'helped': 1.0, 'put': 1.0, 'but': 1.0, 'at': 1.0, 'if': 1.0, 'mirror': 3.0, 'we': 1.0}
Word element => {'is': 1.0, 'so': 1.0, 'great': 1.0, 'love': 1.0, 'was': 1.0, 'ones': 1.0, 'i': 2.0, 'a': 1.0, 'mirrors': 1.0, 'don': 1.0, 'and': 1.0, 'know': 2.0, 't': 1.0, 'this': 2.0, 'the': 1.0, 'applies': 1.0, 'if': 1.0, 'babies': 1.0, 'toy': 1.0, 'to': 1.0, 'all': 2.0, 'but': 1.0}
Word element => {'enough': 1.0, 'but': 1.0, 'true': 1.0, 'not': 1.0, 'anyone': 1.0, 'this': 1.0, 'recommend': 1.0, 'definitely': 1.0, 't': 1.0, 's': 2.0, 'a': 2.0, 'choose': 1.0, 'into': 1.0, 'that': 4.0, 'its': 1.0, 'at': 2.0, 'image': 2.0, 'or': 1.0, 'velcro': 1.0, 'durable': 1.0, 'love': 4.0, 'for': 1.0, 'spinning': 1.0, 'the': 6.0, 'aware': 1.0, 'wherever': 1.0, 'little': 1.0, 'crib': 1.0, 'attach': 1.0, 'mirror': 2.0, 'well': 1.0, 'toy': 1.0, 'has': 2.0, 'time': 1.0, 'on': 2.0, 'back': 1.0, 'bottom': 1.0, 'warped': 1.0, 'of': 1.0, 'up': 1.0, 'and': 2.0, 'crinkle': 1.0, 'when': 1.0, 'you': 2.0, 'interests': 1.0, 'props': 1.0, 'leaves': 1.0, 'floor': 1.0, 'my': 1.0, 'daughter': 1.0, 'then': 1.0, 'it': 8.0, 'she': 1.0, 'i': 5.0, 'becomes': 1.0, 'good': 1.0, 'her': 1.0, 'in': 1.0, 'sit': 1.0, 'look': 1.0, 'isn': 1.0, 'tummy': 1.0, 'least': 1.0, 'to': 4.0, 'as': 1.0}
Word element => {'like': 1.0, 'not': 1.0, 'mirror': 1.0, 'her': 1.0, 'to': 1.0, 'perfect': 1.0, 'in': 1.0, 'safety': 1.0, 'interest': 1.0, 'weeks': 1.0, 'recommend': 1.0, 'she': 1.0, 'my': 1.0, 'warped': 1.0, 'the': 3.0, 'are': 1.0, 'highly': 1.0, 'baby': 1.0, 'toy': 1.0, 'cute': 1.0, 'still': 1.0, 'very': 1.0, 'interesting': 1.0, 'and': 3.0, 'months': 1.0, 'many': 1.0, 'is': 2.0, 'loves': 1.0, 'at': 1.0, '3': 1.0, 'later': 1.0, 'first': 1.0, 'this': 1.0, 'it': 1.0, 'mirrors': 1.0, 'took': 1.0, 'bugs': 1.0}
Word element => {'play': 1.0, 'pack': 1.0, 'to': 1.0, 'attach': 1.0, 'floor': 1.0, 'on': 1.0, 'sit': 1.0, 'fact': 1.0, 'grand': 1.0, 'babies': 1.0, 'my': 1.0, 'the': 3.0, 'that': 1.0, 'can': 1.0, 'love': 1.0, 'it': 3.0, 'n': 1.0, 'or': 1.0, 'i': 2.0, 'and': 1.0, 'like': 1.0}
Word element => {'purchase': 1.0, 'still': 1.0, 'hang': 1.0, 'want': 1.0, 'if': 1.0, 'up': 1.0, 'don': 1.0, 'they': 1.0, 'but': 1.0, 'attach': 1.0, 'there': 1.0, 'activity': 2.0, 'his': 1.0, 'top': 2.0, 'it': 3.0, 'wish': 1.0, 'this': 1.0, 'crib': 1.0, 'mat': 2.0, 'size': 1.0, 'nice': 1.0, 'big': 1.0, 'from': 2.0, 't': 1.0, 'a': 2.0, 'is': 4.0, 'will': 1.0, 'little': 1.0, 'himself': 1.0, 'glass': 1.0, 'hold': 1.0, 'like': 1.0, 'that': 1.0, 'loves': 1.0, 'our': 1.0, 'to': 6.0, 'only': 1.0, 'its': 1.0, 'and': 3.0, 'side': 1.0, 'stare': 1.0, 'at': 1.0, 'happy': 1.0, 'velcro': 1.0, 'wings': 2.0, 'touched': 1.0, 'safety': 1.0, 'am': 1.0, 'you': 1.0, 'when': 1.0, 'in': 1.0, 'price': 1.0, 'mirror': 3.0, 'made': 1.0, 'the': 13.0, 'straps': 1.0, 'sit': 1.0, 'floor': 1.0, 'own': 1.0, 'of': 4.0, 'with': 1.0, 'drawback': 1.0, 'attached': 1.0, 'bumble': 1.0, 'bee': 1.0, 'crunchy': 1.0, 'are': 2.0, 'boy': 1.0, 'so': 1.0, 'baby': 1.0, 'reaching': 1.0, 'for': 1.0, 'on': 3.0, 'make': 1.0, 'noise': 1.0, 'i': 2.0}
Word element => {}
Word element => {'easily': 1.0, 'very': 1.0, 'scratches': 1.0, 'cleaned': 1.0, 'also': 1.0, 'cannot': 1.0, 'the': 2.0, 'removed': 1.0, 'when': 1.0, 'round': 1.0, 'a': 2.0, 'came': 1.0, 'left': 1.0, 'is': 1.0, 'time': 1.0, 'tummy': 1.0, 'cloud': 1.0, 'week': 1.0, 'his': 1.0, 'off': 1.0, 'loves': 1.0, 'i': 1.0, 'old': 1.0, 'be': 2.0, 'that': 3.0, 'love': 1.0, 'can': 2.0, '7': 1.0, 'and': 3.0, 'sticker': 1.0, 'up': 1.0, 'mirror': 3.0, 'during': 1.0, 'my': 2.0, 'problem': 1.0, 'own': 1.0, 'huge': 2.0, 'stand': 1.0, 'on': 4.0, 'with': 2.0, 'this': 1.0, 'it': 5.0, 'he': 1.0, 'belly': 1.0, 's': 1.0}
Word element => {'the': 1.0, 'in': 1.0, 'she': 1.0, 'months': 1.0, 'daughter': 1.0, 'playing': 1.0, 'my': 1.0, 'boo': 1.0, 'and': 1.0, 'with': 1.0, 'this': 1.0, 'born': 1.0, 'have': 1.0, 'loves': 1.0, 'mirror': 2.0, 'we': 1.0, 'herself': 1.0, 'is': 1.0, 'was': 1.0, 'had': 1.0, 'now': 1.0, '10': 1.0, 'old': 1.0, 'still': 1.0, 'peek': 1.0, 'since': 1.0, 'a': 1.0}
Word element => {'highly': 1.0, 'ours': 1.0, 'stand': 1.0, 'seeing': 1.0, 'that': 1.0, 'i': 2.0, 'clean': 1.0, 'our': 1.0, 'to': 2.0, 'its': 1.0, 'easy': 1.0, 'images': 1.0, 'can': 1.0, 'it': 2.0, 'soft': 1.0, 'this': 1.0, 'with': 1.0, 'velcro': 1.0, 'mirror': 1.0, 'distort': 1.0, 'attach': 1.0, 'other': 1.0, 'nice': 1.0, 'up': 1.0, 'of': 1.0, 'like': 1.0, 'moms': 1.0, 'and': 2.0, 'recommend': 1.0, 'doesn': 1.0, 's': 1.0, 'a': 2.0, 't': 1.0, 'the': 2.0, 'is': 1.0, 'tabs': 1.0, 'side': 1.0, 'on': 1.0, 'own': 1.0, 'or': 1.0, 'securely': 1.0, 'size': 1.0, 'crib': 1.0, 'several': 1.0, 'same': 1.0, 'in': 1.0, 'purchased': 1.0, 'playgroup': 1.0, 'product': 1.0, 'after': 1.0}
Word element => {'purpose': 1.0, 'serves': 1.0, 'themselves': 1.0, 'looking': 1.0, 'like': 2.0, 'ones': 1.0, 'little': 1.0, 'my': 1.0, 'true': 1.0, 'makes': 1.0, 'so': 1.0, 'time': 2.0, 'panels': 1.0, 'and': 2.0, 'topple': 1.0, 'that': 2.0, 'fabric': 1.0, 'other': 1.0, 'the': 11.0, 'but': 1.0, '2': 2.0, 'scratch': 1.0, 'a': 1.0, 't': 1.0, 'is': 4.0, 'reflection': 1.0, 'not': 3.0, 'product': 1.0, 'collapsed': 1.0, 'between': 1.0, 'reviews': 1.0, 'again': 1.0, 'received': 1.0, 'each': 1.0, 'picture': 1.0, 'its': 1.0, 'end': 1.0, 'only': 1.0, 'all': 1.0, 'to': 2.0, 'as': 2.0, 'both': 1.0, 'mirror': 1.0, 'm': 1.0, 'gets': 1.0, 'according': 1.0, 'in': 3.0, 'one': 1.0, 'stated': 1.0, 'i': 3.0, 'over': 2.0, 'expecting': 1.0, 'it': 6.0, 'annoying': 1.0, 'at': 1.0, 'image': 1.0, 'since': 1.0, 'distorted': 1.0, 'return': 1.0, 'falls': 1.0, 'same': 1.0, 'being': 1.0, 'pretty': 1.0, 'surprising': 1.0, 'wasn': 1.0}
Word element => {'her': 1.0, 'sees': 1.0, 'up': 1.0, 'very': 1.0, 'the': 2.0, 'my': 1.0, 'can': 1.0, 'mirror': 2.0, 'nice': 1.0, 'tummy': 1.0, 'face': 1.0, 'stay': 1.0, 'a': 1.0, 'floor': 1.0, 'every': 1.0, 'doing': 1.0, 'laughs': 1.0, 'standing': 1.0, 'time': 2.0, 'it': 2.0, 'this': 1.0, 'in': 2.0, 'while': 2.0, 'baby': 1.0, 'she': 2.0, 'is': 1.0, 'looks': 1.0, 'at': 1.0}
Word element => {'the': 1.0, 'great': 1.0, 'really': 1.0, 'time': 1.0, 'my': 1.0, 'money': 1.0, 'toy': 2.0, 'to': 1.0, 'still': 1.0, 'wonderful': 1.0, 'simple': 1.0, 'he': 1.0, 'it': 2.0, 'tends': 1.0, 'son': 1.0, 'very': 1.0, 'a': 3.0, 'yet': 1.0, 'for': 2.0, 'likes': 1.0, 'tummy': 1.0, 'over': 1.0, 'quite': 1.0, 'knock': 1.0, 'bit': 1.0, 'but': 1.0}
Word element => {'better': 1.0, 'would': 1.0, 'stance': 1.0, 'wider': 1.0, 'little': 1.0, 'was': 1.0, 'opened': 1.0, 'mirror': 1.0, 'during': 1.0, 'has': 2.0, 'time': 1.0, 'knocked': 1.0, 'be': 1.0, 'reached': 1.0, 'bugs': 1.0, 'bought': 1.0, 'material': 1.0, 'yet': 1.0, 'for': 2.0, 'the': 3.0, 'my': 1.0, 'this': 1.0, 'she': 2.0, 'it': 4.0, 'have': 2.0, 'in': 2.0, 'begun': 1.0, 'herself': 1.0, 'is': 2.0, 'tummy': 1.0, 'look': 1.0, 'only': 1.0, 'granddaughter': 1.0, 'to': 3.0, 'not': 2.0, 'at': 1.0, 'i': 3.0, 'two': 1.0, 'use': 1.0, 'attached': 2.0, 'just': 1.0, 'by': 1.0, 'that': 1.0, 'too': 1.0, 'crinkle': 1.0, 'when': 1.0, 'easily': 1.0, 'inside': 1.0, 'used': 1.0, 'a': 3.0, 'crib': 1.0, 'negative': 1.0, 'over': 1.0, 'rolling': 1.0, 'baby': 1.0, 'think': 1.0, 'if': 1.0}
Word element => {'huge': 1.0, 'crib': 1.0, 'thicker': 1.0, 'straps': 1.0, 'velcro': 1.0, 'chew': 1.0, 'tote': 1.0, 'easy': 1.0, 'light': 1.0, 'he': 2.0, 'it': 1.0, 'good': 2.0, 'of': 3.0, 'set': 1.0, 'up': 1.0, 'distorted': 1.0, 'see': 1.0, 'foam': 1.0, 'during': 1.0, 'lets': 1.0, 'little': 1.0, 'will': 1.0, 'also': 1.0, 'we': 1.0, 'go': 1.0, 'a': 4.0, 's': 1.0, 'are': 3.0, 'my': 1.0, 'crinkle': 1.0, 'and': 6.0, 'himself': 3.0, 'not': 1.0, 'fans': 1.0, 'leaves': 1.0, 'mirror': 5.0, 'ladybug': 1.0, 'likes': 1.0, 'around': 2.0, 'is': 1.0, 'stretchy': 1.0, 'the': 8.0, 'reach': 1.0, 'distraction': 1.0, 'bars': 1.0, 'blue': 1.0, 'i': 1.0, 'time': 1.0, 'to': 2.0, 'bee': 1.0, 'tummy': 1.0, 'look': 1.0, 'at': 1.0, 'product': 1.0, 'actually': 1.0, 'for': 1.0, 'parts': 1.0, 'this': 2.0, 'soft': 1.0, 'version': 1.0, 'like': 1.0, 'which': 1.0, 'on': 1.0, 'guy': 1.0, 'make': 1.0}
Word element => {'ones': 1.0, 'better': 1.0, 'the': 1.0, 'one': 1.0, 'this': 1.0, 'is': 1.0, 'on': 1.0, 'so': 1.0, 'house': 1.0, 'cute': 1.0, 'purpose': 1.0, 'serves': 1.0, 'that': 1.0, 'kids': 1.0, 'fun': 1.0, 'based': 1.0, 'its': 1.0, 'all': 1.0, 'mirrors': 2.0, 'of': 1.0, 'llok': 1.0, 'and': 1.0, 'like': 1.0}
Word element => {'time': 1.0, 'on': 1.0, 'are': 1.0, 'price': 1.0, 'huge': 1.0, 'and': 1.0, 'can': 1.0, 'with': 2.0, 'only': 1.0, 'it': 1.0, 'tummy': 1.0, 'thing': 1.0, 'straps': 1.0, 'use': 1.0, 'floor': 1.0, 'short': 1.0, 'so': 1.0, 'the': 2.0, 'great': 1.0, 't': 1.0, 'is': 1.0, 'really': 1.0, 'mirror': 1.0, 'attach': 1.0, 'to': 1.0, 'crib': 1.0, 'i': 1.0}
Word element => {'even': 1.0, 'though': 2.0, 'is': 1.0, 'ahead': 1.0, 'serve': 1.0, 'would': 2.0, 'have': 1.0, 'small': 1.0, 'bright': 1.0, 'however': 1.0, 'by': 2.0, 'quickly': 2.0, 'it': 4.0, 'this': 2.0, 'recommend': 1.0, 'was': 2.0, 'to': 2.0, 'get': 1.0, 'learned': 1.0, 'how': 1.0, 'admit': 1.0, 'did': 1.0, 'if': 1.0, 'watching': 1.0, 'two': 1.0, 'i': 4.0, 'like': 1.0, 'and': 4.0, 'approximately': 1.0, 'matter': 1.0, 'my': 1.0, 'the': 3.0, 'different': 1.0, 'brightness': 1.0, 'mirror': 3.0, 'very': 1.0, 'textures': 1.0, 'due': 1.0, 'then': 1.0, 'loved': 1.0, 'grandson': 1.0, 'that': 4.0, 'size': 1.0, 'spending': 1.0, 'does': 1.0, 'his': 2.0, 'of': 4.0, 'view': 1.0, 'cute': 1.0, 'amount': 1.0, 'out': 1.0, 'purposed': 1.0, 'not': 2.0, 'squirming': 1.0, 'months': 2.0, 'age': 1.0, 'don': 1.0, '2': 1.0, 'money': 1.0, 'you': 1.0, 'mind': 1.0, 'product': 1.0, 'for': 2.0, 'go': 1.0, 's': 1.0, 't': 1.0, 'a': 1.0}
Word element => {'option': 1.0, 'better': 1.0, 'a': 1.0, 'be': 1.0, 'would': 1.0, 'is': 1.0, 'time': 1.0, 'have': 1.0, 'loves': 1.0, 'maybe': 1.0, 'issue': 1.0, 'the': 2.0, 'my': 1.0, 'mirror': 1.0, 'i': 1.0, 'snap': 1.0, 'daughter': 1.0, 'that': 1.0, 'with': 1.0, 'this': 1.0, 'it': 2.0, 'only': 1.0, 'velcro': 1.0, 'looses': 1.0, 's': 1.0, 'over': 1.0, 'stickiness': 1.0, 'buttons': 1.0}
Word element => {'see': 1.0, 'head': 1.0, 'his': 1.0, 'lifting': 1.0, 'stand': 1.0, 'mirror': 1.0, 'new': 1.0, 'in': 1.0, 'loves': 1.0, 'grandson': 1.0, 't': 1.0, 'at': 1.0, 'can': 1.0, 'looking': 1.0, 'cute': 1.0, 'he': 3.0, 'this': 1.0, 'wouldn': 1.0, 'himself': 2.0, 'is': 2.0, 'why': 1.0, 'so': 1.0, 'easy': 1.0, 'now': 1.0, 'to': 1.0, 'up': 1.0, 'and': 1.0, 'that': 1.0}
Word element => {'baby': 1.0, 'alone': 1.0, 'stand': 1.0, 'of': 1.0, 'or': 1.0, 'crib': 1.0, 'in': 1.0, 'entertaining': 1.0, 'for': 1.0, 'whether': 1.0, 'great': 1.0, 'the': 3.0, 'is': 2.0, 'insects': 1.0, 'mirror': 1.0, 'it': 1.0, 'this': 1.0, 'nice': 1.0, 'and': 1.0, 'big': 1.0, 'very': 1.0, 's': 1.0, 'crunchy': 1.0, 'material': 1.0}
Word element => {'a': 1.0, 'is': 1.0, 'time': 1.0, 'nice': 1.0, 'tummy': 1.0, 'quality': 1.0, 'during': 1.0, 'and': 1.0, 'keeps': 1.0, 'it': 1.0, 'loves': 1.0, 'this': 1.0, 'too': 1.0, 'mirror': 2.0, 'crib': 1.0, 'daughter': 1.0, 'in': 1.0, 'her': 1.0, 'entertained': 1.0, 'my': 1.0, 'the': 2.0}
Word element => {'floor': 1.0, 'mostly': 1.0, 'use': 1.0, 'thick': 1.0, 'for': 2.0, 'enough': 1.0, 'ground': 1.0, 'we': 1.0, 'a': 3.0, 'wheel': 1.0, 'my': 1.0, 'reach': 1.0, 'the': 5.0, 'with': 1.0, 'mirror': 2.0, 'on': 2.0, 'is': 3.0, 'side': 2.0, 'warped': 1.0, 'view': 1.0, 'baby': 1.0, 'over': 1.0, 'up': 2.0, 'black': 1.0, 'props': 1.0, 'light': 1.0, 'non': 1.0, 'rail': 2.0, 'fantastic': 1.0, 'it': 3.0, 'she': 1.0, 'this': 1.0, 'soft': 1.0, 'daughter': 1.0, 'attached': 1.0, 'and': 2.0, 'too': 1.0, 'pick': 1.0, 'hold': 1.0, 'while': 1.0, 'velcro': 1.0, 'spins': 1.0, 'to': 4.0, 'our': 1.0, 'little': 2.0, 'crib': 1.0, 'white': 1.0, 'finally': 1.0, 'loop': 1.0, 'has': 1.0, 'two': 1.0, 'straps': 2.0, 'but': 1.0}
Word element => {'and': 1.0, 'same': 1.0, 'cost': 1.0, 's': 1.0, 'sells': 1.0, 'however': 1.0, 'playmat': 1.0, 'online': 1.0, 'her': 1.0, 'on': 1.0, 'at': 1.0, 'reflection': 1.0, 'for': 2.0, 'exact': 1.0, 'truest': 1.0, 'mirror': 2.0, 'target': 1.0, 'has': 2.0, 'of': 1.0, 'walmart': 1.0, 'month': 1.0, 'it': 3.0, 'this': 1.0, 'loves': 1.0, 'the': 3.0, 'high': 1.0, 'my': 1.0, 'a': 1.0, 'amazon': 1.0, 'herself': 1.0, 'is': 2.0, 'all': 1.0, 'baby': 1.0, 'in': 1.0, 've': 1.0, '3': 1.0, 'mirrors': 1.0, 'i': 1.0, 'old': 1.0, 'wonderful': 1.0, 'seen': 1.0, 'looking': 1.0}
Word element => {'gift': 1.0, 'good': 1.0, 'anywhere': 1.0, 'floor': 1.0, 'or': 2.0, 'used': 1.0, 'she': 1.0, 'be': 1.0, 'to': 1.0, 'the': 3.0, 'at': 1.0, 'loves': 1.0, 'this': 1.0, 'crib': 1.0, 'look': 1.0, 'herself': 1.0, 'could': 1.0, 'in': 2.0, 'mirror': 1.0}
Word element => {'light': 1.0, 'it': 2.0, 'this': 1.0, 'with': 1.0, 'however': 1.0, 'baby': 2.0, 'toy': 1.0, 'keep': 1.0, 'if': 1.0, 'toys': 1.0, 'mirror': 1.0, 'got': 1.0, 'try': 1.0, 'do': 1.0, 'and': 2.0, 'crib': 1.0, 'probably': 1.0, 'tummy': 1.0, 's': 1.0, 'we': 1.0, 'a': 2.0, 'use': 1.0, 'front': 1.0, 'my': 1.0, 'the': 5.0, 'more': 1.0, 'is': 1.0, 'interest': 1.0, 'time': 1.0, 'very': 1.0, 'falls': 1.0, 'over': 1.0, 'on': 1.0, 'slightest': 1.0, 'touch': 1.0, 'as': 1.0, 'to': 3.0, 'set': 1.0, 'of': 2.0, 'floor': 1.0, 'in': 1.0, 'for': 2.0, 'you': 1.0, 'someone': 1.0, 'looking': 1.0, 'item': 1.0, 'an': 1.0, 'strap': 1.0}
Word element => {'an': 1.0, 'quite': 1.0, 'falls': 1.0, 'because': 1.0, 'with': 1.0, 'really': 1.0, 'frequently': 1.0, 'belly': 1.0, 'while': 1.0, 'his': 2.0, 'on': 2.0, 'wanted': 1.0, 'now': 1.0, 'well': 1.0, 'i': 1.0, 'however': 1.0, 'up': 3.0, 'he': 1.0, '6': 1.0, 'and': 3.0, 'baby': 1.0, 'colors': 1.0, 'it': 3.0, 'mirror': 5.0, 'is': 4.0, 'hands': 1.0, 'the': 4.0, 'great': 2.0, 's': 2.0, 'a': 1.0, 't': 1.0, 'stand': 2.0, 'bold': 1.0, 'in': 1.0, 'this': 2.0, 'soft': 1.0, 'cute': 1.0, 'frustrated': 1.0, 'which': 1.0, 'for': 1.0, 'push': 1.0, 'are': 1.0, 'lamaze': 1.0, 'made': 1.0, 'shown': 1.0, 'that': 1.0, 'but': 2.0, 'was': 1.0, 'lays': 1.0, 'doesn': 1.0, 'unfortunately': 1.0, 'my': 1.0, 'discontinued': 1.0, 'to': 2.0, 'as': 1.0, 'gets': 1.0, 'wants': 1.0, 'surrounding': 1.0, 'son': 1.0, 'okay': 1.0, 'picture': 1.0, 'fabric': 1.0, 'good': 1.0, 'who': 1.0, 'one': 2.0, 'months': 1.0}
Word element => {'safe': 1.0, 'confident': 1.0, 'weight': 1.0, 'light': 1.0, 'is': 1.0, 'toy': 1.0, 'entire': 1.0, 'reflections': 1.0, 'perspectives': 1.0, 'them': 1.0, 'that': 2.0, 'babies': 3.0, 'tummy': 1.0, 'spinning': 1.0, 'like': 2.0, 'when': 1.0, 'gives': 1.0, 'easily': 1.0, 'bother': 1.0, 'floor': 1.0, 'ball': 1.0, 'see': 1.0, 'playing': 1.0, 'the': 6.0, 'my': 2.0, 'themselves': 1.0, 're': 1.0, 'they': 3.0, 'time': 1.0, 'love': 1.0, 'leaves': 1.0, 'crinkling': 1.0, 'tips': 1.0, '6': 1.0, 'ladybug': 1.0, 'mirror': 2.0, 'and': 5.0, 'play': 1.0, 'during': 1.0, 'other': 2.0, 'old': 1.0, 'i': 3.0, 'soft': 1.0, 'this': 1.0, 'feel': 1.0, 'excited': 1.0, 'with': 2.0, 'month': 1.0, 'it': 5.0, 'over': 1.0, 'yes': 1.0, 'to': 2.0, 'as': 1.0, 'are': 2.0, 'reviewers': 1.0, 'in': 1.0, 'said': 1.0, 't': 1.0, 'we': 1.0, 's': 1.0, 'seem': 1.0, 'doesn': 1.0, 'on': 2.0, 'think': 1.0}
Word element => {'great': 2.0, 'bothered': 1.0, 'hasn': 1.0, 'which': 1.0, 't': 1.0, 'a': 3.0, 'because': 1.0, 'toward': 1.0, 'lean': 1.0, 'can': 1.0, 'holding': 1.0, 'small': 1.0, 'one': 1.0, 'has': 1.0, 'better': 1.0, 'daughter': 1.0, 'together': 2.0, 'held': 1.0, 'keep': 1.0, 'middle': 1.0, 'fold': 1.0, 'toys': 1.0, 'issue': 1.0, 'encourage': 1.0, 'safe': 1.0, 'floor': 2.0, 'be': 2.0, 'ability': 1.0, 'it': 5.0, 'velcro': 1.0, 'on': 5.0, 'with': 1.0, 'piece': 2.0, 'and': 5.0, 'only': 2.0, 'do': 1.0, 'used': 1.0, 'crib': 4.0, 'in': 2.0, 'what': 1.0, 'had': 1.0, 'to': 5.0, 'recommend': 1.0, 'was': 1.0, 'for': 4.0, 'definitely': 1.0, 'looking': 1.0, 'two': 1.0, 'i': 2.0, 'hanging': 1.0, 'the': 14.0, 'nicely': 1.0, 'certainly': 1.0, 'add': 1.0, 'mattress': 1.0, 'this': 2.0, 'soft': 1.0, 'baby': 1.0, 'my': 1.0, 'another': 1.0, 'attaches': 1.0, 'out': 1.0, 'when': 1.0, 'easily': 1.0, 'folds': 1.0, 'price': 1.0, 'mirror': 5.0, 'd': 1.0, 'use': 1.0, 'explore': 1.0, 'minor': 2.0, 'thing': 1.0, 'interaction': 1.0, 'is': 1.0, 'inside': 1.0, 'of': 2.0}
Word element => {'at': 1.0, 'fairs': 1.0, 'find': 1.0, 'crazy': 1.0, 'into': 1.0, 'looking': 1.0, 'just': 1.0, 'but': 1.0, 'far': 1.0, 'if': 1.0, 'often': 1.0, 'one': 1.0, 'wonder': 1.0, 'from': 1.0, 'cheap': 1.0, 'mirrors': 1.0, 'i': 3.0, 'bad': 1.0, 'here': 1.0, 'finding': 1.0, 'a': 1.0, 'reviews': 1.0, 'had': 1.0, 'in': 1.0, 'those': 1.0, 'other': 1.0, 'of': 1.0, 'reading': 1.0, 'you': 1.0, 's': 1.0, 'example': 1.0, 'm': 1.0, 'alone': 1.0, 'that': 2.0, 'it': 1.0, 'like': 1.0}
Word element => {'still': 1.0, 'reflective': 1.0, 'feature': 1.0, 'little': 1.0, 'so': 1.0, 'free': 1.0, 'nicer': 1.0, 'are': 1.0, 'babies': 1.0, 'her': 1.0, 'in': 1.0, 'pull': 1.0, 'ok': 1.0, 'tries': 1.0, 'distorted': 1.0, 'redeeming': 1.0, 'stick': 1.0, 'while': 1.0, 'there': 1.0, 'sit': 1.0, 'than': 1.0, 'mouth': 1.0, 'does': 1.0, 'bee': 1.0, 'with': 1.0, 'attachment': 1.0, 'herself': 1.0, 'only': 1.0, 'much': 1.0, 'do': 1.0, 'granddaughter': 1.0, 'stable': 1.0, 'or': 1.0, 'off': 1.0, 'enough': 2.0, 'expands': 1.0, 'far': 1.0, 'bottom': 1.0, '34': 2.0, 'what': 1.0, 'standing': 2.0, 'toy': 1.0, 'has': 1.0, 'stay': 1.0, 'not': 4.0, 'at': 1.0, 'some': 1.0, 'this': 1.0, 'velcro': 1.0, 'she': 1.0, 'it': 6.0, 'seems': 1.0, 'item': 1.0, 'most': 1.0, 'money': 1.0, 'but': 5.0, 'can': 1.0, 'on': 1.0, 'wont': 1.0, 'a': 1.0, 'see': 1.0, 'nothing': 1.0, 'crib': 1.0, 'the': 7.0, 'believe': 1.0, 'hanging': 1.0, 'too': 1.0, 'play': 1.0, 'and': 2.0, 'long': 1.0, 'amuses': 1.0, 'my': 1.0, 'is': 4.0, 'lead': 1.0, 'to': 6.0, 'as': 3.0, 'nice': 1.0, 'reviews': 1.0, 'would': 1.0, 'you': 2.0, 'buy': 1.0, 'surface': 1.0, 'if': 1.0, 'have': 1.0, 'for': 3.0, 'where': 2.0, 'hang': 1.0, 'horizontally': 1.0, 'baby': 1.0}
Word element => {'some': 1.0, 'get': 1.0, 'done': 1.0, 'toys': 1.0, 'other': 1.0, 'leave': 1.0, 'be': 1.0, 'actually': 1.0, 'for': 1.0, 'great': 1.0, 'when': 1.0, 'house': 1.0, 'enough': 1.0, 'toy': 1.0, 'well': 1.0, 'over': 1.0, 'don': 1.0, 'up': 1.0, 'looking': 1.0, 'worry': 1.0, 'ans': 1.0, 'alot': 1.0, 'knocks': 1.0, 'absolutely': 1.0, 'mirror': 2.0, 'starting': 1.0, 'and': 6.0, 'play': 1.0, 'squills': 1.0, 'soft': 1.0, 'this': 2.0, 'with': 2.0, 'babies': 1.0, 'loves': 2.0, 'that': 2.0, 'it': 5.0, 'she': 3.0, 'stands': 1.0, 'light': 1.0, 'few': 2.0, 'months': 1.0, 'stuff': 1.0, 'think': 1.0, 'on': 2.0, 'who': 1.0, 'at': 2.0, 've': 1.0, 'around': 1.0, 'is': 1.0, 'herself': 1.0, 'had': 1.0, 'the': 6.0, 's': 2.0, 'a': 3.0, 'we': 2.0, 't': 2.0, 'almost': 1.0, 'bugs': 1.0, '4': 1.0, 'i': 4.0, 'are': 2.0, 'weeks': 1.0, 'now': 3.0, 'attached': 2.0, 'can': 1.0, 'but': 1.0, 'smiles': 1.0, 'baby': 1.0, 'them': 1.0, 'our': 1.0, 'to': 2.0, 'all': 1.0, 'time': 1.0, 'haven': 1.0, 'her': 2.0, 'active': 1.0, 'crib': 1.0, 'floor': 2.0}
Word element => {'furry': 1.0, 'further': 1.0, 'spins': 1.0, 'enjoyment': 1.0, 'middle': 1.0, 'plus': 1.0, 'free': 1.0, 'motivation': 1.0, 'a': 1.0, 's': 1.0, 'in': 1.0, 'herself': 1.0, 'would': 1.0, 'shows': 1.0, 'head': 1.0, 'really': 1.0, 'is': 5.0, 'mirrors': 1.0, 'he': 1.0, 'come': 1.0, 'with': 1.0, 'soft': 1.0, 'this': 1.0, 'bee': 1.0, 'start': 1.0, 'tummy': 1.0, 'able': 1.0, 'pick': 1.0, 'standing': 1.0, 'what': 1.0, 'good': 1.0, 'her': 1.0, 'that': 1.0, 'the': 6.0, 'great': 1.0, 'are': 1.0, 'looks': 1.0, 'it': 3.0, 'she': 2.0, 'baby': 3.0, 'ladybug': 1.0, 'mirror': 3.0, 'and': 3.0, 'play': 1.0, 'mats': 1.0, 'which': 1.0, 'like': 1.0, 'using': 1.0, 'one': 1.0, 'for': 2.0, 'crib': 1.0, 'see': 1.0, 'floor': 1.0, 'distorted': 1.0, 'from': 1.0, 'day': 1.0, 'i': 1.0, 'two': 1.0, 'time': 1.0, 'maybe': 1.0, 'because': 1.0, 'all': 1.0, 'as': 1.0, 'to': 1.0, 'up': 1.0, 'also': 1.0, 'will': 1.0}
Word element => {'little': 1.0, 'much': 1.0, 'she': 1.0, 'in': 1.0, 'bottom': 1.0, 'up': 1.0, 'ball': 1.0, 'and': 1.0, 'just': 1.0, 'stand': 1.0, 'doesn': 1.0, 'don': 1.0, 'with': 1.0, 'it': 3.0, 'can': 1.0, 'let': 1.0, 'pretty': 1.0, 'own': 1.0, 'my': 1.0, 'plays': 1.0, 'fool': 1.0, 'even': 1.0, 'the': 4.0, 't': 3.0, 'picture': 1.0, 'on': 2.0, 'herself': 1.0, 'really': 1.0, 'is': 1.0, 'you': 1.0, 's': 1.0, 'see': 1.0, 'distorted': 1.0, 'mirror': 1.0, 'so': 1.0, 'daughter': 1.0}
Word element => {'of': 1.0, 'more': 1.0, 'have': 1.0, 'would': 1.0, 'wish': 1.0, 'gift': 1.0, 'm': 1.0, 'what': 1.0, 'purchased': 1.0, 'to': 1.0, 'i': 3.0, 'it': 1.0, 'and': 1.0, 'as': 1.0, 'wanted': 1.0, 'excited': 1.0, 'just': 1.0, 'give': 1.0, 'them': 1.0, 'a': 1.0}
Word element => {'makes': 1.0, 'and': 1.0, 'distracting': 1.0, 'crinkly': 1.0, 'pretty': 1.0, 'sounds': 1.0, 'lately': 1.0, 'my': 1.0, 'baby': 1.0, 'likes': 1.0, 'he': 1.0, 'of': 1.0, 'but': 1.0, 'it': 2.0, 'getting': 1.0, 'still': 1.0, 'kind': 1.0, 'with': 1.0, 'is': 1.0, 'bored': 1.0}
Word element => {'crib': 1.0, 'her': 1.0, 'connect': 1.0, 'i': 1.0, 'if': 1.0, 'to': 1.0, 'look': 1.0, '5': 1.0, 'herself': 1.0, 'is': 1.0, '10': 1.0, 'months': 2.0, 'on': 1.0, 'she': 3.0, 'will': 1.0, 'mirror': 1.0, 'has': 1.0, 'always': 1.0, 'of': 1.0, 'daughter': 1.0, 'my': 1.0, 'and': 2.0, 'loved': 1.0, 'got': 1.0, 'at': 2.0, 'lay': 1.0, 'top': 1.0, 'this': 1.0, 'it': 3.0, 'laugh': 1.0, 'or': 1.0}
Word element => {'not': 1.0, 'wonder': 1.0, 'well': 1.0, 'thing': 1.0, 'with': 2.0, 'end': 1.0, 'do': 2.0, 'what': 1.0, 'so': 1.0, 'top': 1.0, 'to': 1.0, 'purpose': 1.0, 'interesting': 1.0, 'and': 2.0, 'isn': 1.0, 'land': 1.0, 'toys': 1.0, 'relevant': 1.0, 'doesn': 1.0, 'inside': 1.0, 'of': 2.0, 'will': 1.0, 'also': 1.0, 'falling': 1.0, 'mirror': 3.0, 'this': 3.0, 'somewhere': 1.0, 'velcro': 1.0, 'it': 4.0, 'wouldn': 1.0, 't': 3.0, 'up': 1.0, 'child': 1.0, 'over': 2.0, 'your': 1.0, 'put': 1.0, 'on': 3.0, 'playing': 1.0, 'the': 9.0, 'without': 1.0, 'but': 1.0, 'can': 1.0, 'are': 1.0, 'floor': 2.0, 'baby': 2.0, 'around': 1.0, 'fall': 1.0, 'more': 1.0, 'fear': 1.0, 'you': 4.0, 'use': 1.0, 'sit': 1.0, 'straps': 1.0, 'mount': 1.0, 'my': 1.0, 'may': 1.0, 'i': 1.0, 'if': 2.0, 'want': 1.0, 'probably': 1.0, 'crib': 1.0, 'for': 1.0, 'or': 2.0}
Word element => {'break': 1.0, 'want': 1.0, 'not': 1.0, 'did': 1.0, 'off': 1.0, 'pull': 1.0, 'tried': 1.0, 'detachable': 1.0, 'were': 1.0, 'with': 1.0, 'just': 1.0, 'at': 2.0, 'makes': 1.0, 'during': 1.0, 'the': 3.0, 'great': 1.0, 'adjustable': 1.0, 'my': 1.0, 'them': 1.0, 'baby': 1.0, 'mirror': 1.0, 'ladybug': 3.0, 'i': 4.0, 'tummy': 1.0, 'bee': 2.0, 's': 1.0, 'him': 1.0, 'it': 8.0, 'this': 2.0, 'he': 2.0, 'roll': 1.0, 'or': 1.0, 'in': 1.0, 'rather': 1.0, 'of': 1.0, 'up': 1.0, 'lean': 1.0, 'loves': 1.0, 'that': 2.0, 'something': 1.0, 'and': 5.0, 'stares': 2.0, 'too': 1.0, 'is': 2.0, 'but': 1.0, 'can': 1.0, 'stand': 1.0, 'put': 1.0, 'on': 1.0, 'own': 1.0, 'easy': 1.0, 'to': 4.0, 'front': 1.0, 'use': 1.0, 'having': 1.0, 'than': 1.0, 'body': 1.0, 'hold': 1.0, 'time': 1.0, 'against': 1.0}
Word element => {'for': 1.0, 'safe': 1.0, 'baby': 1.0, 'hurt': 1.0, 'but': 1.0, 'doesn': 1.0, 'back': 1.0, 'stand': 1.0, 'not': 2.0, 'does': 1.0, 'it': 4.0, 'this': 1.0, 'image': 1.0, 'seem': 1.0, 'distorted': 1.0, 'won': 1.0, 'well': 1.0, 'front': 1.0, 's': 1.0, 'a': 2.0, 't': 2.0, 'the': 4.0, 'though': 1.0, 'much': 1.0, 'is': 3.0, 'my': 1.0, 'price': 1.0, 'mirror': 3.0, 'fun': 1.0, 'slightly': 1.0, 'spread': 1.0, 'to': 2.0, 'as': 4.0, 'in': 1.0, 'house': 1.0, 'photo': 1.0, 'there': 1.0, 'of': 1.0, 'mind': 1.0, 'piece': 1.0, 'good': 1.0, 'fabric': 1.0, 'that': 2.0, 'attaches': 1.0, 'grandson': 1.0, 'shown': 1.0, 'and': 1.0, 'so': 2.0, 'item': 1.0, 'fortunately': 1.0, 'doesnt': 1.0, 'light': 1.0, 'if': 1.0, 'falls': 1.0}
Word element => {'well': 1.0, 'colorful': 1.0, 'decorations': 1.0, 'safe': 1.0, 'frame': 1.0, 'useful': 1.0, 'it': 2.0, 'mirror': 1.0, 'hang': 1.0, 'soft': 1.0, 'clear': 1.0, 'secured': 1.0, 'makes': 2.0, 'stand': 1.0, 'and': 1.0, 'very': 1.0, 'up': 1.0, 'or': 1.0, 'crib': 1.0, 'is': 1.0, 'on': 1.0}
Word element => {'this': 1.0, 'glad': 1.0, 'got': 1.0, 'so': 1.0, 'am': 1.0, 'used': 2.0, 'bedtime': 1.0, 'at': 2.0, 'tummy': 1.0, 'time': 1.0, 'i': 2.0, 'when': 1.0, 'up': 1.0, 'and': 1.0, 'wakes': 1.0, 'in': 1.0, 'crib': 1.0, 'playtime': 1.0, 'he': 1.0}
Word element => {'floor': 1.0, 'on': 1.0, 'if': 1.0, 'tippy': 1.0, 'next': 1.0, 'to': 2.0, 'is': 1.0, 'minimal': 1.0, 'distortion': 1.0, 'set': 1.0, 'there': 1.0, 'loves': 2.0, 'it': 1.0, 'with': 1.0, 'this': 1.0, 'have': 1.0, 'old': 1.0, 'month': 1.0, 'seem': 1.0, 'wall': 1.0, 'bee': 1.0, 'our': 1.0, '2': 1.0, 'crinkly': 1.0, 'the': 4.0, 'table': 1.0, 'she': 1.0, 'which': 1.0, 'her': 1.0, 'does': 2.0, 'rotate': 1.0, 'changing': 1.0, 'as': 1.0, 'well': 1.0, 'secured': 1.0, 'mirror': 1.0, 'we': 1.0}
Word element => {'quite': 1.0, 'of': 1.0, 'but': 1.0, 'interest': 1.0, 'started': 1.0, 'my': 1.0, 'in': 2.0, 'grew': 1.0, 'herself': 2.0, 'baby': 1.0, 'she': 2.0, 'out': 1.0, 'showing': 1.0, 'looking': 1.0, 'her': 1.0, 'entertained': 1.0, 'mirror': 1.0, 'loved': 1.0, 'got': 1.0, 'i': 1.0, 'quickly': 1.0, 'at': 2.0, 'this': 1.0, 'it': 3.0, 'as': 1.0, 'worked': 1.0, 'keep': 1.0, 'well': 1.0, 'look': 1.0, 'had': 1.0, 'to': 1.0}
Word element => {'stands': 1.0, 'connected': 1.0, 'bottom': 1.0, 'as': 1.0, 'deceiving': 1.0, 'picture': 1.0, 'stay': 1.0, 'doesn': 1.0, 'easily': 1.0, 'over': 1.0, 'falls': 1.0, 'standing': 1.0, 'time': 1.0, 'is': 3.0, '2': 1.0, 't': 1.0, 'the': 3.0, 'mirror': 1.0, 'his': 1.0, 'separate': 1.0, 'tummy': 1.0, 'loves': 1.0, 'distracted': 1.0, 'and': 2.0, 'helps': 1.0, 'baby': 1.0, 'by': 1.0, 'that': 1.0, 'our': 1.0, 'with': 1.0, 'this': 1.0, 'it': 2.0, 'only': 1.0, 'he': 1.0, 's': 1.0, 'not': 1.0, 'because': 1.0, 'reflection': 1.0, 'cute': 1.0, 'problem': 1.0}
Word element => {'serval': 1.0, 'colorful': 1.0, 'like': 1.0, 'very': 1.0, 'you': 1.0, 'velcro': 1.0, 'position': 1.0, 'nice': 1.0, 'ways': 1.0, 'mirror': 1.0, 'the': 3.0, 'gym': 1.0, 'hang': 1.0, 'plus': 1.0, 'or': 1.0, 'in': 1.0, 'for': 1.0, 'crib': 1.0, 'it': 1.0, 'way': 1.0, 'can': 2.0, 'with': 1.0}
Word element => {'recommend': 1.0, 'simple': 1.0, 'enjoys': 1.0, 'much': 1.0, 'how': 1.0, 'see': 1.0, 'perfectly': 1.0, 'down': 1.0, 'basic': 1.0, 'contains': 1.0, 'quite': 1.0, 'his': 1.0, 'features': 1.0, 'monkeys': 1.0, 'grandson': 1.0, 'of': 4.0, 'the': 4.0, 'a': 3.0, 's': 1.0, 'little': 2.0, 'didn': 1.0, 'loves': 1.0, 'in': 2.0, 'toy': 2.0, 'require': 1.0, 't': 1.0, 'likes': 1.0, 'spill': 2.0, 'barrel': 1.0, 'was': 2.0, 'highly': 1.0, 'this': 3.0, 'minute': 1.0, 'my': 1.0, 'lid': 1.0, 'on': 2.0, 'guy': 1.0, 'bought': 1.0, 'add': 1.0, 'last': 1.0, 'frankly': 1.0, 'month': 1.0, 'barrels': 1.0, 'chew': 1.0, 'i': 3.0, 'cheap': 1.0, 'for': 3.0, 'spoil': 1.0, 'makes': 1.0, 'sorting': 1.0, 'adores': 1.0, 'stuffed': 1.0, 'wanted': 1.0, 'toys': 1.0, 'shape': 1.0, 'tires': 1.0, 'and': 7.0, 'play': 1.0, 'too': 1.0, 'age': 1.0, 'plastic': 2.0, 'old': 1.0, 'wonderful': 1.0, 'unexpected': 1.0, 'plush': 1.0, 'fill': 2.0, 'bananas': 2.0, 'pick': 1.0, 'some': 1.0, 'never': 1.0, 'reason': 1.0, 'alex': 2.0, 'with': 3.0, 'best': 1.0, 'they': 1.0, 'shaped': 1.0, 'it': 6.0, 'him': 1.0, 'be': 1.0, 'to': 3.0, 'able': 1.0, '7': 1.0, 'up': 1.0, 'that': 1.0, 'because': 2.0, 'easily': 2.0, 'which': 2.0, 'bunches': 1.0, 'concepts': 1.0, 'out': 1.0, 'taught': 1.0, 'great': 1.0, 'playing': 1.0, 'an': 2.0, 'adult': 1.0, 'are': 2.0, 'plus': 1.0, 'he': 2.0, 'interactive': 1.0, 'fold': 1.0, 'is': 1.0, 'handle': 1.0, 'purchase': 1.0, 'rotten': 1.0, 'amazing': 1.0}
Word element => {'buy': 1.0, 'd': 1.0, 'overall': 1.0, 'like': 2.0, 'seems': 1.0, 'in': 2.0, 'things': 3.0, 'put': 1.0, 'i': 3.0, 'old': 1.0, 'colors': 1.0, 'to': 3.0, 'toy': 1.0, 'likes': 1.0, 'able': 1.0, 'pack': 1.0, 'bought': 1.0, 'banana': 1.0, 'my': 1.0, 'other': 1.0, 'this': 2.0, 'it': 2.0, '2': 1.0, 'the': 4.0, 'really': 1.0, '1': 2.0, 'and': 2.0, 'for': 1.0, 'year': 1.0, 'toys': 1.0, 'since': 1.0, 'who': 1.0, 'lot': 1.0, 'of': 1.0, 'up': 1.0, 'says': 1.0, 'container': 1.0, 'when': 1.0, 'good': 1.0, 'different': 1.0, 'are': 1.0, 'a': 2.0, 's': 2.0, 'boy': 1.0, 'so': 2.0, 'cute': 1.0, 'say': 1.0, 'is': 1.0, 'holds': 1.0, 'he': 3.0, 'plastic': 1.0, 'nana': 1.0}
Word element => {'playing': 1.0, 'done': 1.0, 'we': 1.0, 'store': 1.0, 'to': 1.0, 'place': 1.0, 'child': 1.0, 'when': 1.0, 'i': 1.0, 'toys': 1.0, 'really': 1.0, 'like': 1.0, 'likes': 1.0, 'are': 1.0, 'the': 2.0, 'is': 1.0, 'a': 1.0, 'monkeys': 1.0, 'that': 1.0, 'there': 1.0}
Word element => {'end': 1.0, 'its': 1.0, 'back': 1.0, 'goes': 1.0, 'at': 1.0, 'lot': 1.0, 'will': 1.0, 'get': 1.0, 'sure': 1.0, 'happy': 1.0, 'am': 2.0, 'i': 3.0, 'price': 1.0, 'good': 1.0, 'bananas': 2.0, '9': 1.0, 'old': 1.0, 'putting': 1.0, 'stuffed': 1.0, 'was': 1.0, 'love': 1.0, 'for': 2.0, 'months': 1.0, 'one': 1.0, 'and': 7.0, 'play': 3.0, 'this': 3.0, 'with': 3.0, 'christmas': 1.0, 'it': 3.0, 'on': 1.0, 'put': 1.0, 'inside': 1.0, 'out': 2.0, 'is': 1.0, 'are': 1.0, 'taking': 1.0, 'chewing': 1.0, 'the': 8.0, 'that': 2.0, 'all': 1.0, 'to': 2.0, 'our': 1.0, 'girls': 1.0, 'of': 5.0, 'toys': 2.0, 'they': 3.0, 'gets': 1.0, 'container': 2.0, 'day': 1.0, 'monkeys': 1.0, 'everyday': 1.0, 'got': 1.0, 'every': 1.0, 'part': 1.0, 'from': 1.0, 'neat': 1.0, 'purchase': 1.0, 'my': 2.0, 'lid': 1.0, 'them': 1.0, 'barrels': 1.0, 'like': 2.0, 'in': 2.0, 'plastic': 1.0, 'we': 1.0, 'a': 2.0}
Word element => {'great': 1.0, 'having': 1.0, 'is': 1.0, 'friend': 1.0, 'on': 1.0, 'became': 1.0, 'birthday': 1.0, 'price': 1.0, 'baby': 2.0, 'it': 1.0, 'first': 1.0, 'this': 2.0, 'his': 2.0, 'and': 1.0, 'my': 1.0, 'i': 1.0, 'of': 1.0, 'who': 1.0, 'favorite': 1.0, 'toys': 1.0, 'so': 2.0, 'simple': 1.0, 'entertaining': 1.0, 'yet': 1.0, 'one': 1.0, 'for': 1.0, 'recieved': 1.0, 'bought': 1.0, 'a': 2.0}
Word element => {'had': 1.0, 'small': 1.0, 'other': 1.0, 'already': 1.0, 'these': 1.0, 'some': 1.0, 'switch': 1.0, 'difficult': 1.0, 'squeakers': 1.0, 'monkeys': 1.0, 'course': 1.0, 'there': 1.0, 'different': 1.0, 'each': 1.0, 'guess': 1.0, 'things': 1.0, 'variety': 1.0, 'of': 5.0, 'only': 2.0, 'hard': 2.0, 'understand': 2.0, 'up': 1.0, 'expected': 1.0, 'toy': 3.0, 'has': 1.0, 'they': 1.0, 'soft': 1.0, 'this': 2.0, 'with': 3.0, 'it': 2.0, 'month': 1.0, 'barrels': 1.0, 'started': 1.0, 'my': 1.0, 'coordination': 1.0, 'eye': 1.0, 'old': 1.0, 'bananas': 1.0, 'quickly': 1.0, 'bought': 1.0, 'barrel': 2.0, 'development': 1.0, 'and': 4.0, 'starting': 1.0, 'inside': 3.0, 'plastic': 2.0, '6': 1.0, 'he': 2.0, 'how': 2.0, 'downside': 1.0, 'hand': 1.0, 'pick': 1.0, 'dump': 1.0, 'also': 1.0, 'wasn': 1.0, 'out': 2.0, 'reach': 1.0, 'the': 7.0, 'are': 1.0, 'contents': 1.0, 'but': 1.0, 'work': 1.0, 'can': 1.0, 'loves': 1.0, 'toys': 2.0, '3': 3.0, 'on': 1.0, 'make': 1.0, 'is': 1.0, 'around': 1.0, 'noises': 1.0, 'to': 7.0, 'as': 1.0, 'i': 4.0, 'rattle': 1.0, 'lack': 1.0, 'see': 1.0, 'we': 1.0, 't': 1.0, 'a': 1.0, 'be': 1.0, 'grab': 1.0, 'him': 1.0}
Word element => {'though': 1.0, 'for': 1.0, 'into': 1.0, 'good': 1.0, 'are': 1.0, 'was': 1.0, 'idea': 1.0, 'hopeful': 1.0, 'bananas': 1.0, 'loved': 1.0, 'of': 1.0, 't': 1.0, 'the': 3.0, 'unfortunately': 1.0, 'find': 1.0, 'and': 1.0, 'very': 1.0, 'i': 1.0, 'this': 1.0, 'it': 1.0, '9': 1.0, 'teething': 1.0, 'month': 1.0, 'amusing': 1.0, 'olds': 1.0, 'toy': 2.0, 'about': 1.0, 'don': 1.0, 'itself': 1.0}
Word element => {'promised': 1.0, 'quickly': 1.0, 'she': 2.0, 'in': 1.0, 'seems': 1.0, 'especially': 1.0, 'item': 1.0, 'old': 1.0, 'to': 1.0, 'chewing': 1.0, 'very': 1.0, 'as': 2.0, 'pull': 1.0, 'my': 1.0, 'these': 1.0, 'the': 1.0, 'and': 1.0, 'get': 1.0, 'excited': 1.0, 'soon': 1.0, 'condition': 1.0, 'on': 1.0, '7mth': 1.0, 'sees': 1.0, 'loves': 1.0, 'mommy': 1.0, 'arrived': 1.0, 'them': 1.0, 'tub': 1.0, 'out': 1.0}
Word element => {'filling': 1.0, 'sorting': 1.0, 'recommend': 1.0, 'of': 1.0, 'our': 1.0, 'granddaughter': 1.0, 'the': 2.0, 'highly': 1.0, 'dumping': 1.0, 'and': 2.0, 'very': 1.0, 'loves': 1.0, 'this': 1.0, 'toy': 1.0, 'shapes': 1.0, 'developmentally': 1.0, 'interest': 1.0, 'skills': 1.0, 'sound': 1.0, 'in': 1.0, 'for': 1.0}
Word element => {'often': 1.0, 'encounters': 1.0, 'baby': 1.0, 'and': 1.0, 'pictures': 1.0, 'to': 1.0, 'friends': 1.0, 'allows': 1.0, 'that': 1.0, 'book': 1.0, 'especially': 1.0, 'by': 1.0, 'your': 1.0, 'they': 1.0, 'made': 1.0, 'these': 2.0, 'the': 3.0, 'my': 1.0, 'wish': 1.0, 'in': 1.0, 'of': 1.0, 'says': 1.0, 'or': 1.0, 'title': 1.0, 'a': 1.0, 'i': 2.0, 'cloth': 1.0, 'family': 1.0, 'insert': 1.0, 'nevertheless': 1.0, 'soft': 1.0, 'like': 2.0, 'crinkle': 1.0, 'fabric': 1.0, 'son': 1.0, 'is': 1.0, 'you': 1.0, 'attention': 1.0, 's': 1.0, 'caught': 1.0}
Word element => {'gift': 1.0, 'a': 1.0, 'loves': 1.0, 'amelia': 1.0, 'this': 1.0, 'wonderful': 1.0, 'item': 1.0, 'grandmother': 1.0, 'my': 1.0, 'and': 1.0, 'highly': 1.0, 'any': 1.0, 'quickly': 1.0, 'loved': 1.0, 'wants': 1.0, 'them': 1.0, 'arrived': 1.0, 'were': 1.0, 'these': 1.0, 'i': 1.0, 'recommend': 1.0, 'granddaughter': 1.0, 'to': 1.0, 'who': 1.0}
Word element => {'bugs': 1.0, 'looking': 1.0, 'crazy': 1.0, 'to': 1.0, 'much': 1.0, 'so': 1.0, 'and': 1.0, 'him': 2.0, 'fun': 1.0, 'smile': 1.0, 'see': 1.0, 'a': 1.0, 'elicit': 1.0, 'always': 1.0, 'of': 1.0, 'really': 1.0, 'toys': 1.0, 'favorite': 1.0, 'from': 1.0, 'son': 1.0, 'on': 1.0, 'doing': 1.0, 's': 4.0, 'with': 2.0, 'it': 3.0, 'interact': 1.0, 'absolute': 1.0, 'all': 1.0, 'what': 1.0, 'knows': 1.0, 'books': 1.0, 'developmental': 1.0, 'sassy': 1.0, 'are': 1.0, 'faces': 1.0, 'my': 1.0, 'these': 1.0, 'the': 3.0, 'page': 1.0}
Word element => {'set': 1.0, 'overall': 1.0, 'pages': 1.0, 'with': 1.0, 'plays': 1.0, 'still': 1.0, 'able': 1.0, 'have': 2.0, 'was': 1.0, 'bit': 1.0, 'much': 1.0, 'but': 2.0, 'week': 1.0, 'really': 2.0, 'is': 1.0, 'longer': 1.0, 'been': 1.0, 'soft': 1.0, 'found': 1.0, 'old': 1.0, 'for': 1.0, 'rip': 1.0, 'enjoyed': 1.0, '5': 1.0, 'these': 1.0, 'the': 2.0, 'to': 2.0, 'our': 2.0, 'last': 1.0, 'them': 2.0, 'baby': 2.0, 'about': 1.0, 'colors': 1.0, 'page': 1.0, 'and': 2.0, 'probably': 1.0, '6': 1.0, 'apart': 1.0, 'in': 1.0, 'we': 1.0, 'a': 3.0, 'just': 1.0, 'strong': 1.0, 'she': 3.0, 'month': 1.0, 'it': 1.0, 'individual': 1.0, 'each': 1.0, 'would': 1.0, 'enjoy': 1.0, 'nice': 2.0, 'however': 1.0, 'did': 1.0, 'very': 1.0}
Word element => {'collection': 1.0, 'a': 1.0, 'is': 1.0, 'however': 1.0, 'swallows': 1.0, 'before': 1.0, 'i': 2.0, 'two': 1.0, 'for': 1.0, 'remove': 1.0, 'on': 1.0, 'good': 1.0, 'think': 1.0, 'books': 2.0, 'loves': 1.0, 'almost': 1.0, 'baby': 3.0, 'damaged': 1.0, 'the': 2.0, 'then': 2.0, 'there': 1.0, 'of': 2.0, 'still': 1.0, 'cute': 1.0, 'days': 1.0, 'soft': 1.0, 'pulling': 1.0, 'my': 2.0, 'biting': 1.0, 'them': 4.0, 'out': 1.0, 'it': 3.0, 'only': 1.0, 'with': 1.0, 'he': 1.0, 'skin': 1.0, 'sensation': 1.0, 'but': 1.0, 'book': 1.0, 'to': 1.0, 'had': 1.0, 'was': 1.0}
Word element => {'lower': 1.0, 'priced': 1.0, 'more': 1.0, 'is': 1.0, 'many': 1.0, 'about': 1.0, 'them': 1.0, 'baby': 1.0, 'and': 1.0, 'i': 2.0, '4': 1.0, '3': 1.0, 'like': 2.0, 'book': 1.0, 'or': 1.0, 'that': 2.0, 'okay': 1.0, 'they': 2.0, 'pages': 2.0, 'per': 1.0, 'would': 1.0, 'weren': 1.0, 't': 1.0, 'what': 1.0, 'her': 1.0, 'books': 1.0, 'there': 1.0, 'plus': 1.0, 're': 1.0, 'my': 1.0, 'bright': 1.0, 'can': 1.0, 'the': 1.0, 'without': 1.0, 'liked': 1.0, 'abuse': 1.0, 'as': 2.0, 'do': 1.0, 'only': 1.0, 'much': 2.0, 'it': 3.0, 'colorful': 1.0, 'she': 1.0, 'ripped': 1.0, 'if': 1.0, 'being': 1.0, 'apart': 1.0, 'were': 2.0, 'pieces': 1.0, 'in': 1.0, 'mouth': 1.0, 'have': 1.0}
Word element => {'again': 1.0, 'buy': 1.0, 't': 1.0, 'in': 1.0, 'them': 2.0, 'interested': 1.0, 'very': 1.0, 'i': 1.0, '4': 1.0, 'books': 1.0, 'wouldn': 1.0, 'did': 1.0, 'seem': 1.0, 'these': 1.0, 'okay': 1.0, 'my': 1.0, 'were': 1.0, 'month': 1.0, 'old': 1.0, 'not': 1.0}
Word element => {'deal': 1.0, 'otherwise': 1.0, 'mouth': 1.0, 'their': 1.0, 'in': 1.0, 'one': 1.0, 'heat': 1.0, 'little': 1.0, 'sealed': 1.0, 'you': 1.0, 'edges': 1.0, 'and': 1.0, 'beware': 1.0, 'can': 1.0, 'are': 3.0, 'let': 1.0, 'books': 1.0, 'put': 1.0, 'but': 1.0, 'just': 1.0, 'great': 2.0, 'the': 1.0, 'these': 2.0, 'be': 1.0, 'kind': 1.0, 'sharp': 1.0, 'a': 1.0, 'check': 1.0, 'your': 1.0, 'them': 2.0, 'before': 1.0}
Word element => {'else': 3.0, 'books': 1.0, 'quality': 1.0, 'and': 1.0, 'no': 1.0, 'imagination': 1.0, 'poor': 1.0, 'please': 3.0, 'the': 1.0, 'buy': 3.0, 'in': 1.0, 'something': 3.0}
Word element => {'noise': 1.0, 't': 1.0, 'keep': 1.0, 'own': 1.0, 'occupied': 1.0, 'her': 2.0, 'girl': 1.0, 'religious': 1.0, 'with': 1.0, 'meetings': 1.0, 'my': 4.0, 'make': 2.0, 'to': 2.0, 'mouth': 1.0, 'go': 1.0, 'books': 2.0, 'love': 1.0, 'i': 2.0, 'and': 5.0, 'like': 1.0, 'have': 1.0, 'those': 2.0, 'other': 1.0, 'hold': 1.0, 'bible': 1.0, 'book': 2.0, 'don': 1.0, 'baby': 1.0, 'hands': 1.0, 'she': 1.0, 'feel': 1.0, 'they': 1.0, 'has': 1.0}
Word element => {'each': 1.0, 'gift': 1.0, 'couples': 1.0, 'and': 1.0, 'these': 1.0, 'books': 1.0, 'purchase': 1.0, 'of': 1.0, 'time': 1.0, 'has': 1.0, 'my': 1.0, 'are': 1.0, 'second': 1.0, 'is': 1.0, 'who': 1.0, 'awaiting': 1.0, 'their': 1.0, 'child': 1.0, 'to': 2.0, 'prized': 1.0, 'first': 1.0, 'this': 1.0, 'it': 1.0, 'give': 1.0, 'been': 1.0, 'a': 1.0}
Word element => {'money': 1.0, 'waste': 1.0, 'this': 1.0, 'so': 1.0, 'go': 1.0, 'do': 1.0, 'away': 1.0, 'and': 1.0, 'of': 1.0, 'washed': 1.0, 've': 1.0, 'these': 1.0, 'the': 2.0, 'my': 1.0, 'chance': 1.0, 'got': 1.0, 'was': 1.0, 'to': 2.0, 'does': 1.0, 'even': 1.0, 'plastic': 1.0, 'chemical': 1.0, 'they': 1.0, 'has': 1.0, 'daughter': 1.0, 'never': 1.0, 'a': 3.0, 'them': 2.0, 'very': 1.0, 'like': 2.0, 'have': 1.0, 'bad': 1.0, 'buy': 1.0, 'touch': 1.0, 'i': 1.0, 'smell': 2.0, 'not': 3.0}
Word element => {'christmas': 1.0, 'for': 1.0, 'him': 1.0, 'books': 2.0, 'save': 1.0, 'of': 1.0, 'favorite': 1.0, 'these': 1.0, 'the': 1.0, 'my': 1.0, 'we': 1.0, 'lives': 1.0, 'board': 1.0, 'saved': 1.0, 'definitely': 1.0, 'our': 2.0, 'from': 1.0, 'son': 1.0, 'on': 1.0, 'got': 1.0, 'most': 1.0, 'wants': 1.0, 'to': 2.0, 'gnaw': 1.0, 'paper': 1.0, 'everything': 1.0, 'so': 1.0, 'certain': 1.0, 'sogginess': 1.0}
Word element => {'back': 1.0, 'walk': 1.0, 'finding': 1.0, 'which': 1.0, 'it': 5.0, 'hard': 1.0, 'bee': 1.0, 'this': 1.0, 'lost': 1.0, 'i': 4.0, 'bought': 1.0, 'loves': 1.0, 'specifically': 1.0, 'hello': 2.0, 'books': 1.0, 'baby': 1.0, 'me': 1.0, 'not': 1.0, 'my': 2.0, 'the': 5.0, 'replace': 1.0, 'on': 1.0, 'includes': 1.0, 'set': 2.0, 'says': 2.0, 'wanted': 1.0, 'to': 2.0, 'was': 1.0, 'because': 1.0, 'having': 1.0, 'in': 1.0, 'time': 1.0, 'money': 1.0, 'but': 2.0, 'here': 1.0, 'ask': 1.0, 'included': 1.0, 'is': 2.0, 'are': 1.0, 'and': 1.0, 'description': 2.0, 'similar': 1.0, 'shorter': 1.0, 'am': 1.0, 'we': 1.0, 'a': 2.0, 'going': 1.0, 'for': 1.0}
Word element => {'way': 1.0, 'finally': 1.0, 'gives': 1.0, 'when': 1.0, 'floor': 1.0, 'cheerios': 1.0, 'send': 1.0, 'required': 1.0, 'force': 1.0, 'skittering': 1.0, 'excessive': 1.0, 'however': 1.0, 'these': 1.0, 'a': 1.0, 't': 1.0, 'which': 1.0, 'to': 2.0, 'shower': 1.0, 'of': 4.0, 'plus': 1.0, 'leak': 1.0, 'should': 1.0, 'if': 1.0, 'i': 4.0, 'remove': 1.0, 'it': 1.0, 'with': 2.0, 'were': 1.0, 'that': 1.0, 'match': 1.0, 'color': 2.0, 'pulling': 1.0, 'multicolored': 1.0, 'across': 1.0, 'bowls': 2.0, 'find': 1.0, 'would': 1.0, 'upon': 1.0, 'the': 11.0, 'myself': 1.0, 'out': 1.0, 'every': 1.0, 'single': 1.0, 'side': 1.0, 'time': 2.0, 'they': 1.0, 'don': 1.0, 'have': 1.0, 'fit': 1.0, 'cupboard': 1.0, 'for': 1.0, 'may': 1.0, 'lid': 4.0, 'tight': 1.0, 'also': 1.0, 'are': 1.0, 'extremely': 1.0, 'your': 1.0, 'bowl': 1.0, 'on': 1.0, 'designing': 1.0, 'lids': 2.0, 'do': 1.0, 'wrong': 1.0, 'not': 1.0}
Word element => {'all': 1.0, 'suction': 2.0, 'only': 1.0, 'three': 2.0, 'showing': 1.0, 'here': 1.0, 'page': 1.0, 're': 1.0, 's': 1.0, 't': 1.0, 've': 3.0, 'selling': 1.0, 'tray': 1.0, 'were': 1.0, 'lids': 1.0, 'works': 2.0, 'a': 2.0, 'imagine': 1.0, 'has': 1.0, 'them': 3.0, 'out': 2.0, 'used': 1.0, 'never': 5.0, 'years': 1.0, '3': 1.0, 'think': 2.0, 'on': 2.0, 'bowl': 1.0, 'do': 1.0, 'much': 1.0, 'put': 1.0, 'over': 1.0, 'up': 2.0, 'initially': 1.0, 'one': 2.0, 'held': 1.0, 'bottom': 2.0, 'yet': 2.0, 'bowls': 4.0, 'and': 2.0, 'have': 2.0, 'enough': 3.0, 'constant': 1.0, 'of': 8.0, 'the': 13.0, 'great': 1.0, 'once': 1.0, 'these': 1.0, 'those': 1.0, 'not': 1.0, 'i': 3.0, 'for': 4.0, 'sticking': 1.0, 'picture': 1.0, 'point': 1.0, 'old': 2.0, 'way': 1.0, 'sit': 1.0, 'dump': 1.0, 'things': 1.0, 'you': 3.0, 'job': 1.0, 'to': 5.0, 'as': 2.0, 'luck': 1.0, 'our': 1.0, 'least': 1.0, 'top': 1.0, 'though': 1.0, 'trays': 1.0, 'had': 2.0, 'wood': 1.0, 'table': 2.0, 'good': 1.0, 'which': 2.0, 'plastic': 1.0, 'washing': 1.0, 'however': 1.0, 'we': 3.0, 'then': 1.0, 'fine': 1.0, 'that': 1.0, 'because': 1.0, 'girls': 1.0, 'review': 1.0, 'are': 1.0, 'they': 1.0, 'their': 2.0, 'need': 1.0, 'food': 1.0, 'most': 1.0, 'is': 1.0, 'at': 1.0, 'time': 1.0, 'can': 1.0, 'so': 1.0, 'dishwasher': 1.0, 'in': 1.0, 'it': 2.0, 'speak': 1.0, 'use': 1.0, 'aspect': 1.0, 'me': 2.0, 'my': 2.0, 'microwave': 1.0, 'us': 1.0, 'also': 1.0}
Word element => {'toy': 1.0, 'seat': 1.0, 'car': 1.0, 'best': 1.0, 'by': 1.0, 'been': 1.0, 'colorful': 1.0, 'cute': 1.0, 'them': 1.0, 'old': 1.0, 'month': 1.0, 're': 1.0, 'my': 1.0, 'really': 1.0, 'so': 1.0, 'velcro': 1.0, 'hanging': 1.0, 'and': 3.0, 'far': 1.0, 'stay': 1.0, 'toys': 1.0, 'ton': 1.0, 'well': 1.0, 'pulled': 1.0, 'a': 2.0, 'through': 1.0, 'being': 1.0, 'fabric': 1.0, 'have': 3.0, 'attach': 1.0, 'we': 1.0, '5': 1.0, 'rings': 1.0, 'these': 1.0, 'the': 2.0, 'they': 3.0, 'that': 1.0, 'were': 1.0, 'of': 1.0, 'gone': 1.0, 'always': 1.0, 've': 1.0, 'falling': 1.0, 'loves': 1.0, 'popping': 1.0, 'off': 3.0, 'or': 1.0}
Word element => {'fine': 1.0, 'they': 1.0, 'water': 1.0, 'many': 1.0, 'washed': 1.0, 've': 1.0, 'wash': 1.0, 'not': 1.0, 'directions': 1.0, 'even': 1.0, 'occupied': 1.0, 'machine': 1.0, 'way': 1.0, 'facing': 1.0, 'carrier': 1.0, 'clasped': 1.0, 'say': 1.0, 'is': 2.0, '6': 1.0, 'of': 1.0, 're': 1.0, 'enough': 1.0, 'when': 1.0, 'times': 2.0, 'hold': 1.0, 'cold': 1.0, 'long': 1.0, 'his': 1.0, 'these': 2.0, 'have': 1.0, 'stroller': 1.0, 'month': 1.0, 'it': 4.0, 'velcro': 2.0, 'one': 3.0, 'bar': 1.0, 's': 2.0, 'we': 4.0, 'a': 1.0, 'and': 5.0, 'though': 1.0, 'flying': 1.0, 'love': 1.0, 'ed': 1.0, 'can': 1.0, 'our': 2.0, 'all': 1.0, 'to': 4.0, 'him': 1.0, 'grab': 1.0, 'old': 1.0, 'keeps': 1.0, 'from': 1.0, 'the': 6.0, 'distraction': 1.0, 'hands': 1.0, 'that': 1.0, 'case': 1.0, 'filthy': 1.0, 'fun': 1.0, 'onto': 1.0, 'street': 1.0, 'bjorn': 1.0, 'in': 4.0, 'at': 1.0, 'keep': 2.0, 'them': 1.0, 'baby': 3.0, 'just': 1.0, 'bag': 1.0, 'need': 1.0, 'out': 1.0, 'third': 1.0}
Word element => {'older': 1.0, 'they': 1.0, 'crinkly': 1.0, 'not': 1.0, 'are': 1.0, 'sound': 1.0, 'tinkle': 1.0, 'makes': 1.0, 'match': 1.0, 'louder': 1.0, 'softly': 1.0, 'picture': 1.0, 'bugs': 1.0, 'that': 2.0, 'in': 2.0, 'one': 4.0, 'white': 2.0, 'disappointed': 1.0, 'attaches': 2.0, 'item': 2.0, 'ly': 1.0, 'photo': 1.0, 'of': 1.0, 'on': 1.0, 'is': 4.0, 'a': 2.0, 'but': 1.0, 'sent': 1.0, 'blue': 1.0, 'purple': 1.0, 'it': 1.0, 'only': 1.0, 'wings': 1.0, 'velcro': 2.0, 'red': 1.0, 'with': 1.0, 'green': 3.0, 'and': 8.0, 'has': 1.0, 'cute': 1.0, 'were': 1.0, 'black': 3.0, 'high': 1.0, 'contrast': 1.0, 'the': 12.0, 'orange': 2.0, 'barrel': 1.0, 'yellow': 1.0, 'bug': 2.0, 'rattles': 1.0, 'portion': 1.0, 'to': 2.0, 'crinkles': 1.0, 'last': 1.0, 'none': 1.0, 'striped': 1.0, 'version': 1.0, 'like': 2.0, 'this': 1.0, 'lady': 1.0}
Word element => {'are': 1.0, 'mishaps': 1.0, 'prone': 1.0, 'or': 1.0, 'head': 1.0, 'off': 1.0, 'break': 1.0, 'nothing': 1.0, 'light': 1.0, 'safe': 1.0, 'pretty': 1.0, 'toys': 1.0, 'crazy': 1.0, 'was': 1.0, 'for': 1.0, 'stars': 1.0, '5': 1.0, 'poke': 1.0, 'adhesiveness': 1.0, 'kids': 1.0, 'this': 1.0, 'lost': 1.0, 'sort': 1.0, 'velcro': 1.0, 'the': 2.0, 'use': 1.0, 'of': 4.0, 'year': 1.0, 'batted': 1.0, 'is': 1.0, 'say': 1.0, 'occasionally': 1.0, 'early': 1.0, 'talked': 1.0, 'my': 2.0, 'age': 1.0, 'toy': 1.0, 'loved': 1.0, 'then': 3.0, 'than': 1.0, 'chew': 1.0, 'these': 1.0, 'currently': 1.0, 'sits': 1.0, 'on': 3.0, 'had': 1.0, '12': 1.0, 'one': 1.0, 'months': 1.0, 'at': 3.0, 'first': 1.0, 'month': 1.0, 'she': 3.0, 'it': 5.0, 'any': 1.0, 'as': 2.0, 'to': 3.0, 'grab': 1.0, 'an': 1.0, 'favorite': 1.0, 'inside': 1.0, '1': 1.0, 'starting': 1.0, 'and': 5.0, 'i': 1.0, 'started': 1.0, 'baby': 2.0, 'them': 6.0, 'stared': 1.0, 'want': 1.0, 'grabbing': 1.0, 'could': 1.0, 's': 3.0, 'a': 1.0, 'its': 1.0, 'shaking': 1.0, 'chewing': 1.0, 'fabric': 1.0, 'her': 4.0, 'that': 2.0, 'box': 2.0, 'awhile': 1.0, 'still': 2.0, 'would': 1.0, 'bang': 1.0, 'from': 1.0, 'made': 1.0, 'less': 1.0}
Word element => {'face': 1.0, 'of': 1.0, 'dangle': 1.0, 'attention': 1.0, 'barely': 1.0, 'rattle': 1.0, 'don': 1.0, 'very': 1.0, 'ok': 1.0, 'one': 1.0, 'yellow': 1.0, 'likes': 1.0, 'bouncer': 1.0, 'seat': 1.0, 'much': 2.0, 'them': 1.0, 'get': 2.0, 'and': 3.0, 'front': 1.0, 'since': 1.0, 'bar': 2.0, 'her': 3.0, 'carseat': 1.0, 'on': 2.0, 'it': 1.0, 'with': 2.0, 'we': 2.0, 'play': 2.0, 'to': 3.0, 'short': 1.0, 't': 2.0, 'the': 6.0, 'are': 1.0, 'they': 2.0, 'pushed': 1.0, 'car': 2.0, 'attached': 1.0, 'too': 1.0, 'gets': 1.0, 'when': 1.0, 'unless': 1.0, 'honestly': 1.0, 'in': 3.0, 'she': 2.0, 'back': 1.0, 'doesn': 1.0}
Word element => {'most': 1.0, 'noise': 1.0, 'makes': 1.0, 'bright': 1.0, 'cute': 2.0, 'very': 1.0, 'hanging': 1.0, 'and': 1.0, 'are': 1.0, 'my': 1.0, 'seat': 1.0, 'toys': 1.0, 'car': 1.0, 'little': 2.0, 'chime': 1.0, 'she': 1.0, 'the': 3.0, 'these': 1.0, 'fun': 1.0, 'that': 1.0, '3': 1.0, 'old': 1.0, 'month': 1.0, 'girl': 1.0, 'loves': 2.0, 'them': 1.0, 'one': 1.0}
Word element => {'from': 1.0, 'aside': 1.0, 'not': 1.0, 'color': 1.0, 'weird': 1.0, 'like': 1.0, 'seem': 1.0, 'some': 1.0, 'now': 1.0, 'carseat': 1.0, 'most': 1.0, 'batting': 1.0, 'months': 3.0, 'one': 1.0, 'around': 3.0, 'stared': 1.0, 'i': 2.0, 'purple': 1.0, '4': 1.0, 'leaf': 1.0, 'loud': 2.0, 'with': 4.0, 'red': 1.0, 'colored': 1.0, '1': 1.0, 'pretty': 1.0, 'to': 1.0, 'pulled': 1.0, 'and': 7.0, 's': 1.0, 'we': 3.0, 'she': 6.0, 'was': 1.0, 'yellow': 2.0, 'old': 2.0, 'weirdly': 1.0, 'pull': 2.0, 'for': 1.0, 'my': 1.0, 'green': 1.0, 'often': 1.0, 'but': 1.0, 'jingly': 2.0, 'have': 1.0, 'crinkly': 1.0, 'these': 2.0, 'rides': 1.0, 'daughter': 1.0, 'got': 2.0, 'than': 1.0, 'different': 1.0, 'black': 2.0, 'set': 1.0, 'butterly': 1.0, 'when': 2.0, 'bug': 1.0, 'what': 1.0, 'that': 4.0, 'white': 1.0, 'loves': 1.0, 'rattle': 2.0, 'a': 8.0, 'pictured': 1.0, 'just': 1.0, 'her': 3.0, 'butterfly': 1.0, 'born': 1.0, 'getting': 1.0, 'car': 1.0, 'in': 1.0, 'orange': 1.0, 'ladybug': 3.0, 'would': 1.0, 'is': 1.0, 'at': 3.0, 'started': 2.0, 'toys': 4.0, 'down': 2.0, 'favorite': 1.0, 'went': 1.0, 'inside': 1.0, '5': 1.0, 'interested': 1.0, '6': 1.0, 'it': 3.0, '9': 1.0, 'are': 1.0, 'still': 1.0, 'the': 5.0, 'of': 4.0, 'really': 1.0, '2': 1.0, 'thing': 1.0, 'will': 2.0, 'do': 2.0, 'think': 1.0, 'this': 1.0, 'convinced': 1.0, 'all': 1.0, 'other': 1.0, 'break': 1.0, 'off': 2.0, 'can': 1.0, 'so': 1.0, 'eat': 1.0, 'during': 1.0, 'anywhere': 1.0, 'though': 2.0, 'as': 1.0, 'them': 3.0, 'tries': 1.0}
Word element => {'new': 1.0, 'every': 1.0, 'purchased': 1.0, 'have': 1.0, 'i': 1.0, 'used': 1.0, 'off': 1.0, 'favorites': 1.0, 'while': 1.0, 's': 1.0, 'anywhere': 1.0, 'my': 1.0, 'the': 2.0, 'mom': 1.0, 'daughter': 1.0, 'in': 1.0, 'of': 1.0, 'seat': 1.0, 'gift': 1.0, 'that': 1.0, 'since': 1.0, 'a': 1.0, 'was': 2.0, 'for': 1.0, 'one': 1.0, 'entertains': 1.0, 'taken': 1.0, 'this': 1.0, 'it': 2.0, 'can': 1.0, 'baby': 1.0, 'car': 1.0, 'and': 2.0, 'be': 1.0, 'easily': 1.0}
Word element => {'favorite': 1.0, 'different': 1.0, 'sounds': 1.0, 'and': 2.0, 'little': 1.0, 'developed': 1.0, 'developing': 2.0, 'to': 1.0, 'now': 1.0, 'contrast': 1.0, 'when': 1.0, 'by': 2.0, 'for': 1.0, 'where': 1.0, 'noticed': 1.0, 'baby': 1.0, 'them': 2.0, 'out': 1.0, 'we': 2.0, 'go': 1.0, 'he': 2.0, 'first': 1.0, 'simple': 1.0, 'toys': 1.0, 'until': 1.0, 'bug': 1.0, 'these': 3.0, 'the': 5.0, 'his': 5.0, 'bugs': 1.0, 'loves': 1.0, 'changing': 1.0, 'absolutely': 1.0, 'white': 1.0, 'kept': 1.0, 'memorized': 1.0, 'black': 1.0, 'were': 1.0, 'my': 1.0, 'color': 1.0, 'station': 1.0, 'enough': 1.0, 'see': 1.0, 'on': 1.0, 'stroller': 2.0, 'but': 1.0, 'is': 3.0, 'completely': 2.0, 'every': 1.0, 'so': 1.0, 'time': 1.0, 'they': 1.0, 'take': 1.0, 'are': 2.0, 'eyes': 3.0, 'perfect': 1.0}
Word element => {'now': 1.0, 'they': 1.0, 'will': 1.0, 'long': 1.0, 'how': 1.0, 'don': 1.0, 'bored': 2.0, 'attention': 1.0, 'it': 1.0, 'she': 3.0, 'because': 1.0, 'very': 1.0, 'big': 1.0, 'is': 1.0, 'the': 2.0, 'these': 2.0, 'my': 1.0, 'helpful': 1.0, '9': 1.0, 'watch': 1.0, 'if': 1.0, 'at': 1.0, 'keep': 1.0, 'daughter': 1.0, 'gets': 1.0, 'car': 2.0, 'week': 1.0, 'loves': 1.0, 'into': 1.0, 'while': 1.0, 'old': 1.0, 'i': 1.0, 'to': 1.0, 'know': 1.0, 'which': 1.0, 'easily': 1.0, 'ride': 1.0, 's': 2.0, 't': 1.0, 'a': 3.0, 'work': 1.0, 'but': 1.0, 'can': 1.0, 'age': 1.0, 'in': 1.0, 'turn': 1.0, 'last': 1.0, 'good': 1.0, 'her': 1.0, 'amount': 1.0, 'where': 1.0, 'fit': 1.0, 'for': 2.0, 'of': 1.0, 'so': 1.0, 'time': 1.0}
Word element => {'gift': 1.0, 'baby': 1.0, 'item': 1.0, 'enjoy': 1.0, 'chair': 1.0, 'bouncing': 1.0, 'as': 3.0, 'giving': 1.0, 'and': 1.0, 'child': 1.0, 'shower': 1.0, 'this': 1.0, 'he': 1.0, 'keeps': 1.0, 'bugs': 1.0, 'a': 3.0, 'love': 1.0, 'or': 1.0, 'lays': 1.0, 'in': 1.0, 'such': 1.0, 'sits': 1.0, 'these': 1.0, 'the': 1.0, 'stroller': 1.0, 'she': 1.0, 'easy': 1.0, 'items': 1.0, 'so': 1.0, 'entertained': 1.0, 'attach': 1.0, 'other': 1.0, 'colorful': 1.0, 'to': 2.0}
Word element => {'great': 1.0, 'bit': 1.0, 'little': 1.0, 'baby': 1.0, 'new': 1.0, 'car': 2.0, 'on': 1.0, 'perego': 1.0, 'perfectly': 1.0, 'different': 2.0, 'bugs': 1.0, 'but': 1.0, 'rattle': 1.0, 'i': 3.0, 'purple': 1.0, 'have': 2.0, 'sent': 1.0, 'you': 1.0, 'peg': 1.0, 'ones': 1.0, 'red': 1.0, 'aware': 1.0, 'itself': 1.0, 'majority': 1.0, 'colors': 2.0, 'one': 2.0, 'bought': 1.0, 'be': 2.0, 'for': 2.0, 'fit': 1.0, 'tinkle': 1.0, 'product': 1.0, 'white': 1.0, 'because': 1.0, 'not': 1.0, 'crinkle': 1.0, 'green': 1.0, 'and': 3.0, 'getting': 1.0, 'short': 1.0, 'wanted': 1.0, 'seat': 1.0, 'all': 1.0, 'to': 1.0, 'are': 3.0, 'were': 1.0, 'black': 1.0, 'a': 6.0, 'attention': 1.0, 'contrast': 2.0, 'the': 7.0, 'orange': 1.0, 'what': 1.0, 'rides': 1.0, 'these': 1.0, 'some': 1.0, 'of': 2.0, 'they': 4.0, 'newer': 1.0, 'just': 1.0, 'pictured': 1.0, 'which': 1.0, 'version': 1.0, 'is': 3.0, 'seem': 1.0, 'still': 1.0, 'keep': 1.0, 'adorable': 1.0, 'sounds': 1.0}
Word element => {'better': 1.0, 'much': 1.0, 'so': 1.0, 'deal': 1.0, 'brand': 1.0, 'at': 1.0, 'was': 1.0, 'would': 1.0, 'not': 1.0, 'bought': 1.0, 'price': 2.0, 'lightning': 1.0, 'these': 2.0, 'the': 2.0, 'full': 1.0, 'are': 2.0, 'a': 1.0, 'worth': 1.0, 'it': 1.0, 'but': 1.0, 'buy': 1.0, 'i': 1.0, 'think': 1.0, 'ok': 1.0, 'infantino': 1.0}
Word element => {'hearing': 1.0, 'enjoy': 1.0, 'of': 1.0, 'bells': 1.0, 'kids': 1.0, 'soothing': 1.0, 'can': 1.0, 'loves': 1.0, 'like': 1.0, 'do': 1.0, 'and': 2.0, 'as': 1.0, 't': 1.0, 'the': 4.0, 'not': 1.0, 'hear': 1.0, 'else': 1.0, 'is': 1.0, 'it': 1.0, 'this': 1.0, 'noises': 1.0, 'you': 3.0, 'if': 1.0, 'for': 2.0, 'but': 1.0, 'to': 1.0, 'everyone': 1.0, 'rest': 1.0, 'toy': 2.0, 'don': 1.0, 'baby': 2.0, 'touch': 1.0, 'moves': 1.0, 'car': 1.0}
Word element => {'on': 1.0, 'by': 1.0, 'when': 1.0, 'put': 1.0, 'weeks': 1.0, '7': 1.0, 'see': 1.0, 'fussing': 1.0, 'contrast': 1.0, 'loves': 1.0, 'colors': 1.0, 'baby': 1.0, 'easy': 1.0, 'she': 2.0, 'car': 1.0, 'mesmerized': 1.0, 'toys': 2.0, 'replaced': 1.0, 'very': 1.0, 'from': 2.0, 'wasn': 1.0, 'hanging': 1.0, 'and': 4.0, 'which': 1.0, 'was': 1.0, 'to': 1.0, 'had': 1.0, 'perfect': 1.0, 'in': 1.0, 'other': 1.0, 'small': 1.0, 'so': 2.0, 'seat': 1.0, 'interested': 1.0, 'them': 3.0, 'stopped': 1.0, 'with': 1.0, 'great': 1.0, 'the': 2.0, 't': 1.0, 'these': 2.0, 'old': 1.0, 'i': 3.0, 'bugs': 1.0}
Word element => {'occupied': 1.0, 'happy': 1.0, 'car': 1.0, 'seats': 1.0, 'and': 2.0, 'strollers': 1.0, 'these': 1.0, 'rattle': 1.0, 'baby': 1.0, 'little': 1.0, 'keep': 1.0, 'toys': 1.0, 'wonderful': 1.0, 'absolutely': 1.0, 'were': 1.0, 'fastening': 1.0, 'stuffed': 1.0, 'for': 1.0, 'to': 2.0}
Word element => {'are': 1.0, 'make': 1.0, 'noises': 1.0, 'also': 1.0, 'in': 1.0, 'while': 1.0, 'them': 1.0, 'bat': 1.0, 'she': 2.0, 'that': 1.0, 'they': 3.0, 'a': 1.0, 'bright': 1.0, 'her': 1.0, 'patterns': 1.0, 'too': 1.0, 'when': 1.0, 'daughter': 1.0, 'these': 1.0, 'the': 4.0, 'contrasting': 1.0, 'my': 1.0, 'good': 1.0, 'loves': 2.0, 'of': 1.0, 'and': 2.0, 'bugs': 1.0, 'play': 1.0, 'hang': 1.0, 'touched': 1.0, 'at': 2.0, 'seat': 1.0, 'just': 1.0, 'size': 1.0, 'can': 1.0, 'right': 1.0, 'colors': 1.0, 'height': 1.0, 'on': 1.0, 'car': 2.0, 'handle': 1.0}
Word element => {'sure': 1.0, 'once': 1.0, 'yet': 1.0, 'even': 2.0, 'certainly': 1.0, 'what': 1.0, 'don': 1.0, 'activity': 1.0, 'bouncer': 1.0, 'swing': 1.0, 'in': 2.0, 'at': 1.0, 'stare': 1.0, 'for': 1.0, 'love': 3.0, 'm': 1.0, 'fun': 1.0, 'd': 1.0, 'know': 2.0, 'driving': 1.0, 'be': 2.0, 'has': 1.0, 'make': 1.0, 'think': 1.0, 'on': 1.0, 'bummer': 1.0, 'back': 1.0, 'handle': 1.0, 'carrier': 1.0, 'first': 2.0, 'these': 2.0, 'forever': 1.0, 'gym': 1.0, 'stared': 3.0, 'about': 2.0, 'another': 1.0, 'doesn': 1.0, 'was': 1.0, 'it': 2.0, 'she': 9.0, 'too': 2.0, 'and': 8.0, 'so': 1.0, 'time': 1.0, 'they': 3.0, 'more': 1.0, 'is': 2.0, 'when': 2.0, 'idea': 1.0, 'll': 2.0, '8': 1.0, 'have': 1.0, 'now': 1.0, 'weeks': 2.0, 'but': 2.0, 't': 2.0, 'a': 1.0, 's': 1.0, 'we': 2.0, 'does': 1.0, 'usually': 1.0, 'one': 2.0, 'bought': 1.0, 'realized': 1.0, 'old': 2.0, 'that': 1.0, 'loves': 3.0, 'baby': 1.0, 'them': 7.0, 'used': 1.0, 'set': 1.0, '10': 1.0, 'same': 1.0, 'continue': 1.0, 'characters': 1.0, 'are': 1.0, 'her': 5.0, 'different': 1.0, 'little': 1.0, 'i': 5.0, 'two': 2.0, 'reach': 1.0, 'captivating': 1.0, 'the': 3.0, 'hanging': 2.0, 'from': 2.0, 'car': 2.0, 'noises': 1.0, 'as': 1.0, 'to': 3.0, 'our': 1.0, 'all': 1.0, 'seat': 1.0}
Word element => {'any': 1.0, 'for': 1.0, 'we': 3.0, 't': 1.0, 'a': 1.0, 'could': 1.0, 'vivid': 1.0, 'have': 2.0, 'age': 1.0, 'he': 3.0, 'attached': 2.0, 'now': 1.0, 'but': 1.0, '2': 1.0, 'smiles': 1.0, '6': 1.0, 'interested': 1.0, 'car': 3.0, 'staring': 1.0, 'occupied': 1.0, 'be': 1.0, 'him': 1.0, 'made': 1.0, 'my': 2.0, 'purchase': 1.0, 'due': 1.0, 'able': 1.0, 'of': 3.0, 'the': 9.0, 'hands': 1.0, 'sassy': 1.0, 'i': 2.0, 'bugs': 2.0, 'his': 5.0, 'them': 4.0, 'puts': 1.0, 'with': 2.0, 'first': 1.0, 'entertain': 1.0, 'was': 2.0, 'to': 7.0, 'our': 4.0, 'in': 2.0, 'seat': 3.0, 'sees': 1.0, 'husband': 1.0, 'best': 1.0, 'son': 5.0, 'since': 1.0, 'weeks': 2.0, 'would': 3.0, 'didn': 1.0, 'parent': 1.0, 'think': 1.0, 'on': 1.0, 'previous': 1.0, 'their': 1.0, 'contests': 1.0, 'recommend': 1.0, 'were': 2.0, 'from': 1.0, 'while': 1.0, 'carrier': 1.0, 'bouncy': 1.0, 'old': 1.0, 'lost': 1.0, 'toy': 1.0, 'that': 2.0, 'supposed': 1.0, 'hang': 2.0, 'there': 1.0, '12': 2.0, 'go': 1.0, 'hour': 1.0, 'ride': 1.0, 'one': 1.0, 'rear': 1.0, 'headrest': 1.0, 'so': 1.0, 'time': 1.0, 'friends': 1.0, 'they': 2.0, 'eye': 1.0, 'level': 1.0, 'notice': 1.0, 'at': 2.0, 'handle': 1.0, 'is': 1.0, 'colors': 1.0, 'kept': 1.0, 'awake': 1.0, 'and': 5.0, 'trip': 1.0, 'little': 1.0, 'when': 1.0, 'bug': 1.0, 'these': 1.0, 'out': 1.0, 'during': 2.0, 'touch': 1.0}
Word element => {'car': 1.0, 'other': 1.0, 'he': 1.0, 'time': 1.0, 'at': 2.0, 'longer': 1.0, 'looks': 2.0, 'son': 1.0, 'my': 1.0, 'on': 1.0, 'impact': 1.0, 'good': 1.0, 'but': 1.0, 'seat': 1.0, 'just': 1.0, 'toy': 1.0, 'any': 1.0, 'colors': 2.0, 'bought': 1.0, 'got': 1.0, 'so': 1.0, 'like': 1.0, 'these': 2.0, 'the': 2.0, 'infants': 1.0, 'maek': 1.0, 'a': 2.0, 'that': 1.0, 'i': 3.0, 'here': 1.0, 'wanted': 1.0, 'to': 2.0, 'add': 1.0, 'them': 2.0, 'rack': 1.0, 'review': 1.0, 'than': 1.0, 'say': 1.0, 'nordstrom': 1.0, 'do': 1.0, 'for': 1.0, 'love': 1.0}
Word element => {'previously': 1.0, 'as': 1.0, 'don': 1.0, 'they': 1.0, 'and': 1.0, 'ones': 1.0, 't': 1.0, 'the': 7.0, 'for': 1.0, 'in': 1.0, 'looking': 1.0, 'product': 1.0, 'purchased': 2.0, 'noises': 1.0, 'this': 1.0, 'when': 1.0, 'same': 1.0, 'picture': 2.0, 'version': 2.0, 'go': 2.0, 'was': 1.0, 'of': 1.0, 'old': 1.0, 'i': 3.0, 'bugs': 1.0, 'that': 1.0, 'received': 1.0, 'make': 1.0, 'new': 1.0, 'looks': 1.0, 'sassy': 1.0, 'nothing': 1.0, 'like': 1.0}
Word element => {'at': 1.0, 'my': 1.0, 'with': 1.0, 'on': 1.0, 'came': 1.0, 'swing': 1.0, 'mobile': 1.0, 'them': 1.0, 'put': 1.0, 'cute': 1.0, 'i': 1.0, 'pastel': 1.0, 'baby': 2.0, 's': 1.0, 'these': 1.0, 'the': 3.0, 'replace': 1.0, 'loves': 1.0, 'birds': 1.0, 'that': 2.0, 'boring': 1.0, 'were': 1.0, 'hanging': 1.0, 'to': 2.0, 'look': 1.0}
Word element => {'anything': 1.0, 'can': 1.0, 'small': 1.0, 'for': 1.0, 'one': 1.0, 'little': 1.0, 'entertain': 1.0, 'to': 2.0, 'changing': 1.0, 'at': 1.0, 'them': 2.0, 'are': 3.0, 'my': 2.0, 'have': 2.0, 'attach': 1.0, 'we': 1.0, 'new': 1.0, 'because': 1.0, 'know': 1.0, 'changes': 1.0, 'and': 2.0, 'style': 2.0, 'table': 1.0, 'played': 1.0, 'i': 3.0, 'they': 4.0, 'awesome': 1.0, 'were': 1.0, 'toys': 1.0, 'don': 1.0, 'about': 1.0, 'baby': 1.0, 'great': 1.0, 'diaper': 1.0, 'the': 4.0, 't': 1.0, 'currently': 1.0, 'older': 1.0, 'first': 1.0, 'with': 1.0}
Word element => {'mobile': 1.0, 'than': 1.0, 'entertaining': 1.0, 'them': 1.0, 'newborns': 1.0, 'for': 2.0, 'a': 2.0, 'really': 1.0, 'is': 2.0, 'think': 1.0, 'hands': 1.0, 'toy': 2.0, 'favorite': 1.0, 'my': 1.0, 'the': 3.0, 'and': 2.0, 'other': 1.0, 'during': 2.0, 'must': 1.0, 'son': 1.0, 'was': 1.0, 'later': 1.0, 'used': 1.0, 'his': 2.0, 'few': 1.0, 'several': 1.0, 'have': 1.0, 'four': 1.0, 'months': 2.0, 'spend': 1.0, 'could': 1.0, 'minutes': 1.0, 'i': 1.0, 'studying': 1.0, 'batting': 1.0, 'only': 1.0, 'with': 1.0, 'first': 3.0, 'he': 1.0, 'this': 1.0, 'it': 4.0}
Word element => {'toy': 1.0, 'car': 1.0, 'little': 1.0, 'great': 1.0}
Word element => {'in': 1.0, 'baby': 1.0, 'youngest': 1.0, 'fun': 1.0, 'years': 1.0, '3': 1.0, 'over': 1.0, 'have': 1.0, 'update': 1.0, 'diaper': 1.0, 'brother': 1.0, 'for': 1.0, 'size': 1.0, 'loves': 1.0, 'bag': 1.0, 'pushes': 1.0, 'play': 1.0, 'too': 1.0, 'and': 5.0, 'months': 2.0, '12': 1.0, '5': 1.0, 'was': 2.0, 'now': 3.0, 'he': 4.0, 'perfect': 1.0, 'this': 3.0, 'it': 5.0, 'with': 3.0, 'when': 1.0, 'i': 1.0, 'old': 1.0, 'tummy': 1.0, 'we': 1.0, 'a': 2.0, 'lot': 1.0, 'since': 1.0, 'big': 1.0, 'excited': 1.0, 'great': 1.0, 'playing': 1.0, 'the': 4.0, 'my': 2.0, 'helped': 2.0, 'push': 1.0, 'to': 2.0, 'as': 1.0, 'very': 3.0, 'likes': 1.0, 'well': 1.0, 'toy': 3.0, 'durable': 1.0, 'hated': 1.0, 'skill': 1.0, 'got': 1.0, 'his': 2.0, 'crawling': 1.0, 'trying': 1.0, 'him': 1.0, 'is': 3.0, 'around': 2.0, 'time': 1.0, 'so': 1.0, 'popping': 1.0, 'chase': 1.0, 'balls': 1.0, 'son': 1.0, 'still': 2.0, 'keeps': 1.0, 'car': 1.0, 'interested': 1.0}
Word element => {'highly': 1.0, 'great': 1.0, 'hard': 1.0, 'of': 1.0, 'if': 1.0, 'but': 1.0, 'well': 1.0, 'very': 1.0, 'floor': 2.0, 'itself': 2.0, 'back': 1.0, 'good': 1.0, 'have': 2.0, 'they': 1.0, 'large': 1.0, 'by': 3.0, 'amused': 1.0, 'letting': 1.0, 'would': 1.0, 'it': 7.0, 'drive': 2.0, 'this': 3.0, 'first': 2.0, 'older': 1.0, 'for': 1.0, 'i': 3.0, 'pulling': 1.0, 'sent': 1.0, 'kitchen': 2.0, 'one': 1.0, 'bought': 1.0, 'be': 1.0, 'recieved': 1.0, 'the': 5.0, 'we': 1.0, 'a': 3.0, 's': 1.0, 't': 2.0, 'loves': 1.0, 'time': 1.0, 'so': 2.0, 'popping': 1.0, 'hit': 1.0, 'knew': 1.0, 'car': 3.0, 'birthday': 1.0, 'worth': 1.0, 'carpet': 1.0, 'seem': 1.0, 'cars': 1.0, 'son': 1.0, 'didn': 1.0, 'pop': 2.0, 'right': 1.0, 'amazon': 1.0, 'my': 2.0, 'another': 1.0, 'recommend': 1.0, 'doesn': 1.0, 'was': 1.0, 'wait': 1.0, 'area': 1.0, 'crawls': 1.0, 'you': 1.0, 'boys': 1.0, 'is': 1.0, 'around': 1.0, 'and': 4.0, 'across': 2.0, 'to': 1.0, 'all': 1.0, 'on': 1.0, '3': 1.0, 'he': 2.0, '6': 1.0, 'are': 1.0, 'also': 1.0}
Word element => {'returning': 1.0, 'to': 1.0, 'never': 1.0, 'should': 1.0, 'like': 1.0, 't': 1.0, 'pop': 1.0, 'but': 1.0, 'it': 4.0, 'for': 1.0, 'son': 1.0, 'around': 1.0, 'some': 1.0, 'reason': 1.0, 'we': 1.0, 'defective': 1.0, 'got': 2.0, 'doesn': 1.0, 'a': 1.0, 'car': 1.0, 'my': 1.0, 'likes': 1.0}
Word element => {'be': 1.0, 'can': 1.0, 'pop': 1.0, 'some': 1.0, 'expected': 1.0, 'was': 2.0, 'not': 1.0, 'is': 1.0, 'action': 1.0, 'louder': 1.0, 'simple': 1.0, 'my': 1.0, 'and': 1.0, 'nice': 1.0, 'a': 1.0, 'toy': 1.0, 'but': 1.0, 'i': 1.0, 'popping': 2.0, 'or': 1.0, 'toys': 1.0, 'glad': 1.0, 'this': 1.0, 'loud': 1.0, 'it': 1.0, 'son': 1.0, 'as': 2.0, 'fierce': 1.0}
Word element => {'not': 1.0, 's': 1.0, 'that': 1.0, 'all': 1.0, 'it': 2.0, 'i': 1.0, 'a': 1.0, 'doesn': 1.0, 'exciting': 1.0, 'got': 1.0, 'much': 1.0, 'care': 1.0, 'toy': 2.0, 'for': 2.0, 'son': 1.0, 'my': 1.0, 'very': 1.0, 'and': 1.0, 'really': 1.0, 'he': 1.0, 'this': 1.0, 't': 1.0}
Word element => {'returned': 1.0, 'kept': 1.0, 'have': 2.0, 'would': 2.0, 'disappointed': 1.0, 'specifically': 1.0, 'things': 1.0, 'packaging': 1.0, 'of': 1.0, 'plenty': 1.0, 'they': 1.0, 'but': 1.0, 'whatever': 1.0, 'or': 1.0, 'mine': 1.0, 'excited': 1.0, 'wish': 1.0, 'this': 2.0, 'pop': 3.0, 'that': 2.0, 'toys': 1.0, 'who': 1.0, '6': 1.0, 'and': 4.0, 'stand': 1.0, 'perfectly': 1.0, 'however': 1.0, 'crawling': 1.0, 'i': 5.0, 'old': 1.0, 'bought': 1.0, 'defective': 1.0, 'the': 4.0, 'my': 1.0, 'pull': 2.0, 'loved': 2.0, 'already': 1.0, 'she': 1.0, 'it': 4.0, 'month': 1.0, 'arrived': 1.0, 'right': 1.0, 'balls': 1.0, 'on': 1.0, 'popping': 1.0, 'so': 3.0, 'time': 1.0, 'opened': 1.0, 'asap': 1.0, 'for': 2.0, 'fit': 1.0, 'in': 1.0, 'her': 1.0, 'know': 1.0, 'hand': 1.0, 'if': 1.0, 't': 3.0, 'we': 4.0, 'a': 1.0, 'back': 2.0, 'has': 1.0, 'won': 1.0, 'toy': 1.0, 'up': 1.0, 'don': 1.0, 'was': 5.0, 'crazy': 1.0, 'got': 1.0, 'didn': 1.0}
Word element => {'sizing': 1.0, 'than': 1.0, 'but': 1.0, 'didn': 1.0, 'what': 1.0, 'expected': 1.0, 'i': 2.0, 's': 1.0, 'about': 1.0, 'it': 3.0, 'love': 1.0, 'babies': 1.0, 'smaller': 1.0, 'my': 1.0, 'to': 1.0, 'be': 1.0, 'details': 1.0, 'in': 1.0, 'their': 1.0, 'defense': 1.0, 'the': 1.0, 't': 1.0, 'really': 1.0, 'read': 1.0}
Word element => {'would': 1.0, 'for': 1.0, 'ok': 1.0, 'going': 1.0, 'thought': 1.0, 'but': 1.0, 'i': 1.0, 'niece': 1.0, 'toy': 1.0, 'be': 1.0, 'likes': 1.0, 'little': 2.0, 'recommend': 1.0, 'hands': 1.0, 'bigger': 1.0, 'grab': 1.0, 'was': 1.0, 'to': 2.0, 'its': 1.0, 'my': 1.0, 'a': 1.0, 'bit': 1.0, 'it': 1.0, 'this': 1.0, 'only': 1.0, 'like': 1.0, '4inches': 1.0, 'her': 1.0, 'long': 1.0, 'good': 1.0, 'thats': 1.0}
Word element => {'our': 1.0, 'in': 1.0, 'favorite': 1.0, 'house': 1.0, 'a': 1.0, 'is': 1.0, 'this': 1.0}
Word element => {'to': 1.0, 'recommend': 1.0, 'dad': 1.0, 'any': 1.0, 'price': 1.0, 'the': 1.0, 'maker': 1.0, 'noise': 1.0, 'a': 1.0, 'either': 1.0, 'got': 1.0, 'or': 1.0, 'loves': 1.0, 'birthday': 1.0, 'absolutely': 1.0, 'would': 1.0, 'him': 1.0, 'glad': 1.0, 'this': 2.0, 'it': 3.0, 'first': 1.0, 'for': 2.0, 'and': 2.0, 'keeps': 1.0, 'son': 1.0, 'big': 1.0, 'of': 1.0, 'his': 1.0, 'occupied': 1.0, 'my': 1.0, 'happy': 1.0, 'mom': 1.0, 'm': 1.0, 'i': 2.0, 's': 1.0, 'not': 1.0}
Word element => {'have': 1.0, 'must': 1.0, 'i': 1.0, 'twisty': 1.0, 'packing': 1.0, 'just': 1.0, 'me': 1.0, 'get': 1.0, 'let': 1.0, 'the': 3.0, 'with': 1.0, 'ties': 1.0, 'watch': 1.0, 'barely': 1.0, 'out': 2.0, 'back': 1.0, 'really': 1.0, 'is': 1.0, 'of': 2.0, '30mins': 1.0, 'its': 1.0, 'was': 1.0, 'to': 1.0, 'it': 7.0, 'showing': 1.0, 'she': 4.0, 'played': 1.0, 'would': 1.0, 'crawling': 1.0, 'her': 1.0, 'how': 1.0, 'pull': 1.0, 'straight': 1.0, 'surprised': 1.0, 'understood': 1.0, 'took': 1.0, 'concept': 1.0, 'for': 2.0, 'and': 2.0, 'too': 1.0, 'after': 2.0, 'cute': 1.0, 'box': 1.0, 'that': 1.0, 'loves': 1.0, 'price': 1.0, 'go': 1.0, 'we': 1.0, 'a': 1.0}
Word element => {'someone': 1.0, 'for': 2.0, 'this': 1.0, 'sure': 1.0, 'get': 1.0, 'd': 1.0, 'heavy': 1.0, 'i': 3.0, 'old': 1.0, 'by': 1.0, 'delighted': 1.0, 'like': 1.0, 'ingesting': 1.0, 'was': 1.0, 'as': 1.0, 'any': 1.0, 'our': 1.0, 'to': 1.0, 'at': 1.0, 'painted': 1.0, 'design': 1.0, 'it': 2.0, 'he': 1.0, 'gift': 1.0, '9': 1.0, 'months': 1.0, 'pull': 1.0, 'himself': 1.0, 'metals': 1.0, 'car': 1.0, 'back': 1.0, 'very': 1.0, 'stick': 1.0, 'the': 3.0, 'and': 3.0, 'surfaces': 1.0, 'a': 1.0, 's': 1.0, 'could': 1.0, 't': 1.0, 'his': 1.0, 'sturdy': 1.0, 'results': 1.0, 'there': 1.0, 'are': 1.0, 'also': 1.0, 'so': 1.0, 'can': 1.0, 'son': 1.0, 'still': 1.0, 'that': 1.0, 'into': 1.0, 'think': 1.0, 'mouth': 1.0, 'don': 1.0, 'no': 1.0, 'about': 1.0, 'have': 1.0, 'him': 1.0}
Word element => {'crawlers': 1.0, 'be': 1.0, 'to': 1.0, 't': 1.0, 'and': 1.0, 'like': 1.0, 'would': 2.0, 'crawl': 1.0, 'her': 1.0, 'a': 1.0, 'is': 1.0, 'anything': 1.0, 'gettig': 1.0, 'ready': 1.0, 'recommend': 1.0, 'she': 1.0, 'fun': 1.0, 'for': 2.0, 'i': 2.0, 'didn': 1.0, 'toy': 2.0, 'about': 1.0, 'this': 2.0, 'it': 1.0}
Word element => {'received': 1.0, 'he': 1.0, 'toy': 1.0, 'like': 1.0, 'sons': 1.0, 'the': 1.0, 'my': 1.0, 'it': 2.0, 's': 1.0, 'attention': 1.0, 'doesn': 1.0, 'other': 1.0, 'true': 1.0, 't': 1.0, 'get': 1.0, 'you': 2.0, 'what': 1.0, 'cars': 1.0, 'pay': 1.0, 'for': 1.0, 'hold': 1.0}
Word element => {'worked': 1.0, 'have': 1.0, 'or': 1.0, 'obviously': 1.0, 'control': 1.0, 'quality': 1.0, 'with': 1.0, 'but': 1.0, 'idea': 1.0, 'was': 1.0, 'refund': 1.0, 'mail': 1.0, 'dropped': 1.0, 'up': 1.0, 'made': 1.0, 'returns': 1.0, 'no': 1.0, 'about': 1.0, 'great': 1.0, 'amazon': 1.0, 'catch': 1.0, 'rolled': 1.0, 'my': 1.0, 'packed': 1.0, 'move': 1.0, 'went': 1.0, 'back': 2.0, 'inside': 1.0, 'floor': 1.0, 'opened': 1.0, '5': 1.0, 'i': 5.0, 'old': 1.0, 'zoom': 1.0, 'tried': 1.0, 'the': 9.0, 'is': 1.0, 'more': 1.0, 'this': 1.0, 'cheap': 1.0, 'for': 2.0, 'bought': 1.0, 'one': 1.0, '99': 1.0, '6': 1.0, 'of': 1.0, 'it': 11.0, 'month': 1.0, 'cute': 1.0, 'base': 1.0, 'got': 1.0, 'a': 3.0, 'tiny': 2.0, 'so': 1.0, 'bit': 1.0, 'time': 1.0, 'nothing': 1.0, 'wheels': 3.0, 'grandson': 1.0, 'close': 1.0, 'are': 1.0, 'and': 5.0, 'too': 1.0, 'to': 2.0, 'toy': 2.0, 'would': 2.0, 'not': 1.0, 'in': 1.0, 'itself': 1.0, 'turn': 1.0, 'put': 1.0, 'on': 2.0, 'therefore': 1.0, 'make': 1.0, 'car': 1.0}
Word element => {'popping': 1.0, 'good': 1.0, 'very': 1.0, 'yourself': 1.0, 'are': 1.0, 'attention': 1.0, 'you': 1.0, 'sound': 1.0, 'unless': 1.0, 'crawl': 1.0, 'to': 2.0, 'doesnt': 2.0, 'month': 1.0, 'make': 1.0, 'roll': 1.0, 'learning': 1.0, 'his': 1.0, 'even': 1.0, 'does': 1.0, '7': 1.0, 'for': 2.0, 'grandson': 1.0, 'my': 1.0, 'i': 2.0, 'old': 1.0, 'attract': 1.0, 'bought': 1.0, 'be': 1.0, 'but': 1.0, 'work': 1.0, 'him': 1.0, 'would': 1.0, 'a': 1.0, 'well': 1.0, 'pushing': 1.0, 'thought': 1.0, 'fun': 1.0, 'not': 1.0, 'because': 1.0, 'it': 5.0, 'this': 1.0, 'he': 1.0, 'is': 1.0}
Word element => {'one': 1.0, 'broken': 1.0, 'i': 1.0, 'sound': 1.0, 'make': 1.0, 'is': 1.0, 'does': 1.0, 'thing': 1.0, 'either': 1.0, 'cranking': 1.0, 'lame': 1.0, 'shop': 1.0, 's': 1.0, 'a': 2.0, 'go': 1.0, 'don': 1.0, 'toy': 2.0, 'at': 1.0, 'after': 1.0, 'only': 1.0, 'it': 2.0, 'this': 1.0, 'the': 5.0, 't': 2.0, 'bought': 2.0, 'we': 1.0, 'car': 2.0, 'doesn': 1.0, 'forward': 1.0, 'winding': 1.0, 'backwards': 1.0, 'up': 1.0, 'maybe': 1.0, 'balls': 1.0, 'pop': 1.0}
Word element => {'5': 1.0, 'product': 1.0, 'give': 1.0, 'lasted': 1.0, 'action': 1.0, 'purchased': 1.0, 'working': 1.0, 'the': 3.0, 'to': 2.0, 'spring': 1.0, 'if': 1.0, 'bring': 1.0, 'run': 1.0, 'roll': 1.0, 'let': 1.0, 'longer': 1.0, 'second': 1.0, 'is': 2.0, 'lot': 1.0, 'can': 1.0, 'likes': 1.0, 'me': 1.0, 'and': 5.0, 'son': 2.0, 'very': 1.0, 'awesome': 1.0, 'my': 2.0, 'pull': 1.0, 'a': 2.0, 'stopped': 1.0, 'unit': 2.0, 'first': 1.0, 'with': 1.0, 'it': 8.0, 'this': 3.0, 'he': 1.0, 'd': 1.0, 'after': 1.0, 'pulls': 1.0, 'plays': 1.0, 'car': 1.0, 'moves': 1.0, 'will': 1.0, 'back': 2.0, 'forward': 1.0, 'smoothly': 1.0, 'i': 3.0}
Word element => {'anyone': 1.0, 'it': 1.0, 'with': 1.0, 's': 1.0, 'played': 1.0, 'they': 1.0, 'chest': 1.0, 'a': 1.0, 'grandsons': 1.0, 'have': 1.0, 'this': 1.0, 'car': 1.0, 'little': 2.0, 'pop': 1.0, 'greatest': 1.0, 'toy': 2.0, 'must': 1.0, 'gift': 1.0, 'was': 1.0, 'my': 1.0, 'the': 1.0, 'hours': 1.0, 'for': 3.0}
Word element => {'roll': 1.0, 'about': 1.0, 'from': 1.0, 'love': 1.0, 'babies': 1.0, 'paint': 1.0, 'works': 1.0, 'still': 1.0, 'at': 1.0, 'was': 2.0, 'now': 1.0, 'it': 1.0, 'colorful': 1.0, 'had': 1.0, 'all': 1.0, 'to': 3.0, '5': 1.0, 'toy': 1.0, 'has': 2.0, 'on': 4.0, 'little': 2.0, 'tires': 1.0, 'different': 1.0, 'good': 1.0, 'months': 1.0, 'bought': 1.0, 'my': 2.0, 'a': 1.0, 'ago': 1.0, 'went': 1.0, 'the': 6.0, 'is': 2.0, 'more': 1.0, 'first': 2.0, 'wood': 1.0, 'floors': 1.0, 'rubber': 1.0, 'great': 1.0, 'nice': 1.0, 'which': 1.0, 'car': 3.0, 'watching': 1.0, 'i': 1.0, 'guess': 1.0, 'years': 1.0, 'colors': 1.0, 'disappointed': 1.0, 'not': 1.0, 'and': 3.0, 'black': 1.0, 'white': 1.0, 'checks': 1.0, 'than': 1.0, 'because': 1.0, 'chew': 1.0, 'this': 2.0, 'decorations': 1.0, 'year': 1.0, 'his': 1.0, '2': 1.0, 'but': 1.0, 'house': 2.0, 'just': 1.0, 'by': 2.0, 'way': 1.0, 'original': 1.0}
Word element => {'toy': 1.0, 'don': 1.0, 'keep': 1.0, 'but': 1.0, 'will': 1.0, 'bought': 1.0, '1st': 1.0, 'pops': 2.0, 's': 1.0, 'a': 1.0, 'well': 1.0, 'floors': 1.0, 'that': 1.0, 'our': 1.0, 'hardwood': 1.0, 'son': 1.0, 'on': 1.0, 'birthday': 1.0, 'carpet': 1.0, 'for': 2.0, 'car': 1.0, 'buy': 1.0, 'whole': 1.0, 't': 1.0, 'the': 2.0, 'gave': 1.0, 'works': 1.0, 'this': 1.0, 'it': 4.0, 'we': 2.0, 'reason': 1.0, 'not': 1.0, 'barely': 1.0}
Word element => {'fun': 1.0, 'family': 1.0, 'actually': 1.0, 'fast': 1.0, 'hmmm': 1.0, 'sturdy': 1.0, 'really': 1.0, 'is': 1.0, 'him': 1.0, 'the': 1.0, 't': 1.0, 'loves': 1.0, 'car': 1.0, 'back': 1.0, 'and': 1.0, 'do': 1.0, 'whole': 1.0, 'old': 1.0, 'to': 1.0, 'month': 1.0, 'can': 1.0, 'this': 1.0, 'he': 1.0, 'it': 5.0, 'goes': 1.0, 'we': 1.0, 'baby': 1.0, 'pull': 1.0, 'my': 1.0, 'yet': 1.0, 'for': 3.0, 'go': 1.0, 'as': 1.0, 'so': 1.0, '8': 1.0, 'all': 1.0}
Word element => {'with': 1.0, 'plays': 1.0, 'up': 1.0, 'year': 1.0, 'even': 1.0, 'back': 1.0, 'four': 1.0, 'can': 1.0, 'first': 1.0, 'he': 1.0, '18': 1.0, 'you': 1.0, 'refrigerator': 1.0, 'months': 1.0, 'pull': 1.0, 'my': 2.0, 'popping': 1.0, 'loves': 1.0, 'into': 1.0, 'birthday': 1.0, 'for': 1.0, 'now': 1.0, 'picks': 1.0, 'many': 2.0, 'it': 8.0, 'looks': 1.0, 'still': 2.0, 'son': 1.0, 'purchased': 1.0, 'this': 1.0, 'zooming': 1.0, 'let': 1.0, 'fun': 1.0, 'withstood': 1.0, 's': 1.0, 'go': 1.0, 'goes': 1.0, 'and': 5.0, 'across': 1.0, 'make': 1.0, 'new': 1.0, 'the': 4.0, 'occassionally': 1.0, 'is': 1.0, 'more': 1.0, 'room': 1.0, 'just': 1.0, 'noises': 1.0, 'all': 1.0, 'has': 1.0, 'crashes': 1.0, 'couch': 1.0, 'i': 1.0, 'etc': 1.0, 'old': 1.0, 'brand': 1.0}
Word element => {'again': 1.0, 'buy': 1.0, 'definitely': 1.0, 'is': 1.0, 'with': 1.0, 'i': 2.0, 'it': 4.0, 'played': 1.0, 'bought': 1.0, 'my': 1.0, 'very': 1.0, 'and': 2.0, 'loved': 1.0, 'this': 1.0, 'durable': 1.0, 'hours': 1.0, 'for': 2.0, 'would': 1.0, 'granddaughter': 1.0, 'she': 1.0}
Word element => {'couch': 1.0, 'enough': 1.0, 'just': 1.0, 'dome': 1.0, 'plus': 1.0, 'up': 1.0, 'wind': 1.0, 'fast': 1.0, 'fairly': 1.0, 'floor': 1.0, 'or': 1.0, 'at': 1.0, 'on': 3.0, 'doesn': 1.0, 'simple': 1.0, 'kitchen': 1.0, 'other': 1.0, 'that': 2.0, 'play': 1.0, 'and': 4.0, 'like': 2.0, 'feature': 1.0, 'i': 5.0, 'doctors': 1.0, 'baby': 2.0, 'toy': 1.0, 'about': 1.0, 'had': 1.0, 'it': 5.0, 'trouble': 1.0, 'children': 1.0, 'older': 2.0, 'this': 1.0, 'with': 2.0, 'love': 3.0, 'big': 1.0, 'great': 2.0, 'the': 7.0, 'go': 1.0, 's': 1.0, 't': 1.0, 'my': 2.0, 'require': 1.0, 'any': 1.0, 'to': 2.0, 'as': 1.0, 'car': 1.0, 'why': 1.0, 'more': 2.0, 'is': 2.0, 'people': 1.0, 'sure': 2.0, 'under': 1.0, 'carpet': 1.0, 'gets': 1.0, 'im': 1.0, 'm': 1.0, 'will': 1.0, 'batteries': 1.0, 'also': 1.0, 've': 1.0, 'not': 2.0, 'have': 1.0, 'office': 1.0, 'complained': 1.0, 'he': 1.0, 'how': 1.0, 'moves': 2.0, 'havent': 1.0}
Word element => {'future': 1.0, 'in': 1.0, 'hope': 1.0, 'your': 1.0, 'purchase': 1.0, 'wanted': 1.0, 'exactly': 1.0, 'overall': 1.0, 'sturdy': 1.0, 'seem': 1.0, 'we': 2.0, 'fine': 1.0, 'mostly': 1.0, 'worry': 1.0, 'maybe': 1.0, 'than': 1.0, 'subjective': 1.0, 'picture': 1.0, 'rather': 1.0, 'you': 1.0, 'hurt': 2.0, 'what': 1.0, 'when': 3.0, 'on': 3.0, 'expected': 1.0, 'disadvantage': 1.0, 'seems': 1.0, 'level': 1.0, 'materials': 1.0, 'enjoyment': 1.0, 'son': 1.0, 'furthermore': 1.0, 'fun': 1.0, 'from': 1.0, 'for': 4.0, 'was': 1.0, 'lots': 1.0, 'doesn': 1.0, 'to': 5.0, 'and': 7.0, 'similar': 1.0, 'play': 1.0, 'smaller': 1.0, 'of': 4.0, 'the': 10.0, 'bought': 1.0, 'sixth': 1.0, 'are': 1.0, 'first': 1.0, 'with': 7.0, 'this': 4.0, 'perfect': 1.0, 'he': 2.0, 'old': 1.0, 'toes': 1.0, 'wind': 1.0, 'i': 6.0, 'enjoy': 1.0, 'since': 1.0, 'happy': 1.0, 'one': 1.0, 'lot': 1.0, 'is': 9.0, 'at': 1.0, 'imagine': 1.0, 'a': 4.0, 'might': 1.0, 't': 2.0, 'popcorn': 1.0, 'popper': 1.0, 'be': 2.0, 'it': 12.0, 'him': 3.0, 'but': 1.0, 'dimensions': 1.0, 'can': 1.0, 'not': 2.0, 'focus': 1.0, 'my': 2.0, 'me': 1.0, 'playing': 1.0, 'an': 1.0, 'bonding': 1.0, 'review': 1.0, 'advantage': 1.0, 'or': 2.0, 'let': 1.0, 'quality': 1.0, 'younger': 1.0, 'have': 2.0, 'product': 1.0, 'child': 2.0, 'up': 2.0, 'don': 1.0, 'which': 1.0, 'heavy': 1.0, 'body': 1.0, 'will': 2.0, 'means': 1.0, 'accidentally': 1.0, 'familiar': 1.0, 'easy': 1.0, 'very': 1.0, 'himself': 1.0, 'great': 1.0, 'wound': 1.0, 'month': 1.0, 'loose': 1.0, 'because': 1.0, 'that': 1.0, 'into': 1.0, 'runs': 1.0, 'drops': 1.0, 'his': 1.0, 'toy': 5.0, 'action': 1.0, 'purchased': 1.0, 'works': 1.0}
Word element => {'car': 1.0, 'enjoys': 1.0, 'still': 1.0, 'at': 1.0, 'when': 1.0, 'bought': 1.0, 'one': 1.0, 'for': 2.0, 'playing': 1.0, 'started': 1.0, '7': 1.0, 'my': 1.0, 'montages': 1.0, 'i': 1.0, 'old': 1.0, 'immediately': 1.0, 'was': 1.0, 'now': 1.0, 'he': 3.0, 'christmas': 1.0, 'this': 2.0, 'with': 1.0, 'it': 1.0, 'lil': 1.0, '14': 1.0, 'months': 1.0}
Word element => {'house': 1.0, 'all': 1.0, 'around': 1.0, 'he': 1.0, 'the': 1.0, 'my': 2.0, 'and': 1.0, 'with': 1.0, 'son': 2.0, 'him': 1.0, 'it': 2.0, 'loves': 2.0, 'this': 2.0, 'brings': 1.0, 'car': 1.0, 'we': 1.0, 'got': 1.0, 'months': 1.0, 'ago': 1.0}
Word element => {'bit': 1.0, 'a': 1.0, 's': 1.0, 'like': 1.0, 'will': 1.0, 'my': 1.0, 'the': 1.0, 'than': 1.0, 'when': 1.0, 'pop': 1.0, 'thought': 1.0, 'think': 1.0, 'would': 1.0, 'do': 1.0, 'they': 1.0, 'better': 1.0, 'higher': 1.0, '9': 1.0, 'month': 1.0, 'older': 1.0, 'he': 2.0, 'it': 2.0, 'i': 2.0, 'old': 1.0, 'is': 1.0, 'son': 1.0, 'very': 1.0, 'not': 1.0, 'interested': 1.0, 'in': 1.0, 'balls': 1.0, 'maybe': 1.0}
Word element => {'yet': 1.0, 'tired': 1.0, 'will': 1.0, 'of': 2.0, 'that': 1.0, 'fun': 1.0, 'inexpensive': 1.0, 'an': 1.0, 'more': 1.0, 'is': 1.0, 'months': 2.0, 'lot': 1.0, 'at': 1.0, 'he': 7.0, 'christmas': 1.0, 'crawl': 1.0, 'with': 2.0, 'this': 1.0, 'it': 10.0, 'recommend': 1.0, 'was': 1.0, 'laugh': 1.0, 'am': 1.0, 'when': 1.0, 'us': 1.0, 'gotten': 1.0, 'plays': 1.0, 'car': 3.0, 'himself': 1.0, 'runs': 1.0, 'nine': 1.0, 'got': 1.0, 'to': 4.0, 'our': 1.0, 'for': 1.0, 'son': 1.0, 'still': 1.0, 't': 1.0, 'we': 1.0, 'a': 2.0, 'used': 1.0, 'like': 1.0, 'sure': 1.0, 'present': 1.0, 'get': 2.0, 'would': 2.0, 'hasn': 1.0, 'old': 2.0, 'squeal': 1.0, 'floor': 1.0, 'now': 2.0, 'delight': 1.0, 'has': 1.0, 'toy': 2.0, 'likes': 1.0, '19': 1.0, 'after': 2.0, 'the': 3.0, 'use': 1.0, 'gnaw': 1.0, 'while': 1.0, 'i': 2.0, 'watches': 1.0, 'push': 2.0, 'zip': 1.0, 'and': 4.0, 'across': 1.0}
Word element => {'mind': 1.0, 'but': 2.0, 'it': 6.0, 'he': 1.0, 'not': 1.0, 'n': 1.0, 'enough': 2.0, 'have': 1.0, 'good': 1.0, 'from': 1.0, 'cute': 1.0, 'son': 2.0, 'carpet': 1.0, 'pull': 1.0, 'my': 2.0, 'wood': 1.0, 'well': 1.0, 'likes': 2.0, 'toy': 1.0, 'throwing': 1.0, 'i': 2.0, '10month': 1.0, 'got': 1.0, 'for': 1.0, 'mats': 1.0, 'at': 1.0, 'foam': 1.0, 'thin': 1.0, 'and': 2.0, 'are': 1.0, 'all': 1.0, 'to': 2.0, 'our': 1.0, 'traction': 1.0, 'floor': 1.0, 'allows': 1.0, 'only': 1.0, 'hamper': 1.0, 'shaking': 1.0, 'don': 1.0, 'over': 1.0, 'does': 1.0, 'having': 1.0, 'so': 1.0, 'a': 1.0, 'go': 3.0, 'going': 1.0, 't': 1.0}
Word element => {'things': 1.0, 'loud': 1.0, 'isn': 1.0, 'though': 1.0, 'toys': 1.0, 'popper': 1.0, 'corn': 1.0, 'noise': 1.0, 'like': 2.0, 'who': 1.0, 'people': 1.0, 'recommend': 1.0, 'by': 1.0, 'had': 1.0, 'be': 1.0, 'laughs': 1.0, 'fun': 1.0, 'much': 1.0, 'do': 1.0, 'down': 2.0, 'work': 1.0, 'but': 1.0, 'didn': 1.0, 'the': 3.0, 'that': 2.0, 'loves': 1.0, 'toy': 1.0, 'well': 1.0, 'half': 1.0, 'bought': 1.0, 'all': 1.0, 'to': 2.0, 'our': 2.0, 'as': 1.0, 'year': 1.0, 'surfaces': 1.0, 'and': 6.0, 'probably': 1.0, 'kids': 1.0, 'this': 3.0, 'she': 2.0, 'it': 6.0, 'a': 2.0, 't': 2.0, 'we': 1.0, 'ago': 1.0, 'my': 2.0, 'other': 1.0, 'oldest': 1.0, 'for': 2.0, 'wheels': 1.0, 'daughter': 2.0, 'on': 2.0, 'carpets': 1.0, 'more': 1.0, 'is': 1.0, 'would': 3.0, 'again': 1.0, 'lose': 1.0, 'great': 1.0, 'bring': 1.0, 'husband': 1.0, 'i': 2.0, 'thicker': 1.0, 'car': 1.0, 'have': 2.0, 'chase': 2.0, 'use': 1.0, 'type': 1.0, 'wind': 1.0, 'over': 1.0, 'up': 1.0, 'or': 2.0, 'tile': 1.0, 'let': 1.0}
Word element => {'recommend': 1.0, 'playing': 1.0, 'been': 1.0, 'favorites': 1.0, 'my': 1.0, 'son': 1.0, 'is': 2.0, 'one': 1.0, 'he': 1.0, 'with': 1.0, 'this': 1.0, 'it': 2.0, 'since': 1.0, 'and': 1.0, 'age': 1.0, 'highly': 1.0, 'of': 2.0, '6': 1.0, 's': 2.0, 'enjoying': 1.0, 'still': 1.0, 'at': 1.0, 'months': 2.0, '12': 1.0}
Word element => {'for': 1.0, 'care': 1.0, 'still': 1.0, 'no': 1.0, 'didn': 1.0, 'noise': 1.0, 'pushing': 1.0, 'try': 2.0, 'differently': 1.0, 'pop': 1.0, 'kids': 1.0, 'what': 1.0, 'and': 3.0, 'my': 1.0, 't': 1.0, 'the': 1.0, 'sound': 1.0, 'or': 1.0, 'so': 1.0, 'ever': 1.0, 'moving': 1.0, 'it': 4.0, 'this': 1.0, 'suck': 1.0, 'toy': 1.0, 'baby': 1.0}
Word element => {'though': 1.0, 'on': 1.0, 'and': 2.0, 'again': 1.0, 'barely': 1.0, 'was': 2.0, 'back': 2.0, 'car': 1.0, 'agree': 1.0, 'responsive': 1.0, 'the': 5.0, 'it': 4.0, 'mechanism': 1.0, 'i': 4.0, 'said': 1.0, 'pop': 1.0, 'wouldn': 1.0, 'didn': 2.0, 'pull': 2.0, 'small': 1.0, 'have': 2.0, 'with': 1.0, 'mind': 1.0, 'that': 2.0, 'not': 2.0, 'return': 1.0, 't': 3.0, 'a': 1.0, 'what': 1.0, 'either': 1.0, 'purchased': 1.0, 'balls': 1.0, 'use': 1.0, 'does': 1.0, 'chew': 1.0, 'as': 3.0, 'others': 1.0, 'some': 1.0, 'toys': 1.0, 'inexpensive': 1.0, 'dog': 1.0, 'well': 1.0, 'toy': 1.0, 'can': 1.0, 'but': 1.0, 'work': 1.0, 'money': 1.0, 'for': 1.0, '1': 1.0, 'spend': 1.0}
Word element => {'so': 1.0, 'because': 1.0, 'how': 1.0, 'push': 1.0, 'bright': 1.0, 'a': 1.0, 's': 2.0, 'been': 1.0, 'it': 2.0, 'this': 2.0, 'has': 1.0, 'of': 1.0, 'toys': 1.0, 'much': 1.0, 'toy': 1.0, 'simple': 2.0, 'those': 1.0, 'surprising': 1.0, 'is': 1.0, 'fun': 1.0, 'one': 1.0, 'easy': 1.0, 'almost': 1.0, 'used': 1.0, 'overlooked': 1.0}
Word element => {'would': 1.0, 'inexpensive': 1.0, 'an': 1.0, 'glad': 1.0, 'm': 1.0, 'thought': 1.0, 'because': 1.0, 'than': 1.0, 'balls': 1.0, 'smaller': 1.0, 'popping': 1.0, 'back': 1.0, 'pull': 1.0, 'much': 1.0, 'steadier': 1.0, 'experience': 1.0, 'inside': 1.0, '8': 1.0, 'that': 1.0, 'babies': 2.0, 'for': 3.0, 'goes': 1.0, 'appropriate': 1.0, 'it': 8.0, 'with': 1.0, 'n': 1.0, 'toy': 3.0, '6': 1.0, 'up': 1.0, 'just': 1.0, 'says': 1.0, 'there': 1.0, 'a': 2.0, 't': 1.0, 's': 4.0, 'months': 2.0, 'and': 4.0, 'but': 2.0, 'again': 1.0, 'when': 1.0, 'safe': 1.0, 'pop': 1.0, 'i': 4.0, 'think': 1.0, '9': 1.0, 'firmer': 1.0, 'son': 2.0, 'perfect': 1.0, 'this': 2.0, 'grip': 1.0, 'at': 1.0, 'as': 1.0, 'to': 1.0, 'least': 1.0, 'the': 2.0, 'hands': 2.0, 'in': 1.0, 'purchase': 1.0, 'my': 3.0, 'are': 1.0, 'push': 1.0, 'car': 1.0, 'more': 1.0, 'is': 2.0, 'rolls': 1.0, 'have': 1.0, 'small': 1.0, 'enough': 1.0, 'very': 1.0, 'little': 2.0, 'simple': 1.0, 'isn': 1.0}
Word element => {'find': 1.0, 'soon': 1.0, 'we': 1.0, 'wrong': 1.0, 'm': 1.0, 'maybe': 1.0, 'month': 1.0, '9': 1.0, '8': 1.0, 'for': 1.0, 'expecting': 1.0, 'exciting': 1.0, 'will': 1.0, 'an': 1.0, 'but': 2.0, 'and': 2.0, 'colorful': 1.0, 'was': 1.0, 'out': 1.0, 'child': 1.0, 'made': 1.0, 't': 1.0, 'more': 1.0, 'larger': 1.0, 'enough': 1.0, 'that': 1.0, 'something': 1.0, 's': 1.0, 'popped': 1.0, 'well': 1.0, 'a': 1.0, 'don': 1.0, 'little': 1.0, 'old': 1.0, 'i': 3.0, 'marbles': 1.0, 'think': 1.0, 'it': 1.0}
Word element => {'makes': 1.0, 'this': 1.0, 'loves': 1.0, 'it': 2.0, 'noise': 1.0, 'great': 1.0, 'the': 1.0, 'my': 1.0, 'watching': 1.0, 'baby': 1.0, 'popper': 1.0, 'car': 1.0, 'and': 1.0, 'change': 1.0, 'up': 1.0, 'to': 1.0, 'go': 1.0, 'a': 1.0, 'classic': 1.0, 'boy': 1.0}
Word element => {'his': 1.0, 'who': 1.0, 'objects': 1.0, 'perfect': 1.0, 'can': 1.0, 'is': 1.0, 'brother': 1.0, 'big': 1.0, 'son': 1.0, 'love': 1.0, 'for': 1.0, 'will': 2.0, 'my': 1.0, 'and': 1.0, 'move': 1.0, 'it': 1.0, 'this': 1.0, 'with': 1.0, 'he': 1.0, 'be': 1.0, 'to': 1.0, 'babies': 1.0, 'sit': 1.0, 'able': 1.0, 'play': 1.0, 'cars': 1.0}
Word element => {'toy': 1.0, 'great': 1.0, 'have': 1.0, 'because': 1.0, 'quality': 1.0, 'better': 1.0, 'but': 1.0, 'back': 1.0, 'it': 4.0, 'hard': 1.0, 'so': 1.0, 'pops': 1.0, 'push': 1.0, 'my': 1.0, 'pull': 1.0, 'you': 1.0, 'attention': 1.0, 'been': 1.0, 'that': 2.0, 'thought': 1.0, 'more': 1.0, 'car': 1.0, 'definitely': 1.0, 'like': 1.0, 'pooping': 1.0, 'would': 1.0, 'those': 1.0, 'i': 2.0, 'one': 1.0, 'toys': 1.0, 'of': 1.0, 'be': 1.0, 'grab': 1.0, 'doesn': 2.0, 'was': 1.0, 'at': 1.0, 'to': 1.0, 'all': 1.0, 'also': 1.0, 'pretty': 1.0, 'and': 1.0, 'this': 3.0, 'drive': 1.0, 'wish': 1.0, 'make': 1.0, 'on': 1.0, 'softly': 1.0, 'son': 1.0, 'carpet': 1.0, 'could': 1.0, 's': 2.0, 't': 2.0, 'go': 1.0, 'a': 2.0, 'little': 1.0}
Word element => {'for': 1.0, 'interesting': 1.0, 'is': 1.0, 'little': 2.0, 'the': 4.0, 'guy': 1.0, 'construction': 1.0, 'and': 1.0, 'especially': 1.0, 'easy': 1.0, 'to': 1.0, 'floor': 1.0, 'push': 1.0, 'popping': 1.0, 'balls': 1.0, 'sturdy': 1.0, 'around': 1.0, 'of': 1.0}
Word element => {'simply': 1.0, 'waste': 1.0, 'something': 1.0, 'stars': 1.0, 'for': 3.0, 'whatever': 1.0, 'attention': 1.0, 'tiny': 1.0, 'baby': 1.0, 'don': 1.0, 'the': 2.0, 'save': 1.0, 'my': 1.0, 'couldn': 1.0, 'and': 4.0, 'balls': 1.0, 'yes': 1.0, 'more': 2.0, 'is': 2.0, 'really': 2.0, 'this': 3.0, 'it': 4.0, 'simple': 1.0, 'very': 1.0, 'inexpensive': 2.0, 'worthwhile': 1.0, 'than': 2.0, '2': 1.0, 'but': 1.0, 'that': 1.0, 'being': 2.0, 'reason': 1.0, 'two': 1.0, 'i': 2.0, 'toy': 2.0, 'expected': 1.0, 'all': 1.0, 'any': 1.0, 'to': 1.0, 'minutes': 1.0, 'was': 2.0, 'be': 1.0, 'larger': 1.0, 'mean': 1.0, 'put': 1.0, 'your': 1.0, 'make': 1.0, 'towards': 1.0, 'noise': 1.0, 'generous': 1.0, 'they': 1.0, 's': 2.0, 't': 2.0, 'a': 2.0, 'hardly': 1.0, 'pop': 1.0, 'keep': 1.0, 'at': 1.0}
Word element => {'around': 1.0, 'hear': 1.0, 'shake': 1.0, 'to': 1.0, 'she': 1.0, 'playing': 1.0, 'likes': 2.0, 'because': 1.0, 'on': 2.0, 'still': 1.0, 'carpet': 1.0, 'well': 1.0, 'of': 1.0, 'is': 1.0, 'really': 1.0, 'balls': 2.0, 'inside': 1.0, 'doesn': 1.0, 'don': 1.0, 'move': 1.0, 'car': 2.0, 't': 2.0, 'the': 7.0, 'my': 1.0, 'rubber': 1.0, 'wheels': 1.0, 'it': 2.0, 'with': 1.0, 'moving': 2.0, 'and': 2.0, 'though': 1.0, 'much': 1.0, 'when': 1.0, 'pop': 1.0, 'daughter': 1.0}
Word element => {'probably': 1.0, 'will': 1.0, 'noisy': 1.0, 'be': 1.0, 'old': 1.0, 'but': 1.0, 'many': 1.0, 'fun': 1.0, 'years': 1.0, 'for': 2.0, 'played': 1.0, 'floors': 1.0, 'well': 1.0, 'with': 1.0, 'on': 1.0, 'a': 1.0, 'it': 1.0, '9': 1.0, 'month': 1.0, 'goes': 1.0}
Word element => {'worth': 1.0, 'and': 2.0, 'carried': 1.0, 'in': 1.0, 'be': 2.0, 'toy': 1.0, 'playground': 1.0, 'can': 2.0, 'for': 2.0, 'love': 1.0, 'well': 1.0, 'since': 1.0, 'a': 1.0, 'bag': 1.0, 'play': 1.0, 'good': 1.0, 'taken': 1.0, 'it': 3.0, 'with': 1.0, 'you': 1.0, 'kids': 1.0, 'my': 1.0, 'the': 1.0, 'toddler': 1.0, 'all': 1.0}
Word element => {'great': 1.0, 'house': 1.0, 'around': 1.0, 'much': 1.0, 'so': 1.0, 'push': 1.0, 'stocking': 1.0, 'hasn': 1.0, 'than': 1.0, '10': 1.0, 'if': 1.0, 'cost': 1.0, 'would': 1.0, 'wouldn': 1.0, 'christmas': 1.0, 'he': 2.0, 'it': 4.0, 'stopped': 1.0, 'with': 1.0, 'i': 2.0, 'known': 1.0, 'loves': 1.0, 'that': 1.0, 'less': 1.0, 'purchase': 1.0, 'my': 1.0, 'had': 1.0, 'was': 1.0, 'kid': 1.0, 'size': 1.0, 'favorite': 2.0, 'gift': 1.0, 'have': 1.0, 'hands': 1.0, 'playing': 1.0, 'the': 2.0, 'other': 1.0, 'on': 1.0, 'stuff': 1.0, 'bought': 1.0, 'to': 1.0, 'crawler': 1.0, 'as': 1.0, 's': 3.0, 't': 2.0, 'we': 1.0, 'a': 3.0, 'stuffer': 1.0, 'and': 2.0, 'spent': 1.0, 'year': 1.0, 'his': 1.0, 'this': 3.0, 'perfect': 1.0, 'for': 1.0}
Word element => {'our': 1.0, 'in': 1.0, 'use': 1.0, 'of': 1.0, 'lots': 1.0, 'noise': 1.0, 'great': 1.0, 'enough': 1.0, 'makes': 1.0, 'just': 1.0, 'not': 1.0, 'is': 1.0, 'little': 1.0, 'car': 1.0, 'house': 1.0, 'but': 1.0, 'toddler': 1.0, 'it': 2.0, 'this': 1.0, 'gets': 1.0, 'too': 1.0, 'infant': 1.0, 'fun': 1.0, 'for': 1.0, 'annoying': 1.0, 'my': 1.0, 'made': 1.0, 'and': 2.0, 's': 1.0, 'well': 1.0}
Word element => {'places': 1.0, 'other': 1.0, 'at': 1.0, 'have': 1.0, 'first': 1.0, 'try': 1.0, '18': 1.0, '12': 1.0, 'was': 1.0, 'recommend': 1.0, 'would': 1.0, 'that': 1.0, 'car': 2.0, 'pushed': 1.0, 'moves': 1.0, 'not': 2.0, 'stand': 1.0, 'him': 2.0, 'crawling': 1.0, 'great': 1.0, 'the': 3.0, 'amazon': 1.0, 'balls': 1.0, 'yet': 1.0, 'for': 2.0, 'my': 1.0, 'this': 2.0, 'higher': 1.0, 'it': 4.0, 'definitely': 1.0, 'grandson': 1.0, 'to': 1.0, 'as': 2.0, 'year': 1.0, 'plastic': 1.0, 'he': 2.0, 'walk': 1.0, 'probably': 1.0, 'is': 3.0, 'want': 1.0, 'a': 3.0, 'can': 1.0, 'but': 2.0, 'will': 2.0, 'back': 1.0, 'just': 1.0, 'by': 2.0, 'seen': 1.0, 'interests': 1.0, 'when': 1.0, 'months': 1.0, 'mobile': 1.0, 'room': 1.0, 'move': 1.0, 'itself': 1.0, 'wheels': 1.0, 'are': 1.0, 'does': 1.0, 'pop': 1.0, 'take': 1.0, 'off': 1.0, 'greatly': 1.0, 'too': 2.0, 'and': 3.0, 'across': 1.0, 'i': 1.0, 'feature': 1.0, 'later': 1.0, 'on': 1.0}
Word element => {'i': 1.0, 'one': 1.0, 'just': 1.0, 'entertained': 1.0, 'keeps': 1.0, 'it': 1.0, 'our': 1.0, 'like': 1.0, 'and': 1.0, 'new': 1.0, 'granddaughter': 1.0, 'had': 1.0, 'hours': 1.0, 'for': 1.0, 'sister': 1.0, 'loves': 1.0, 'this': 1.0, 'toy': 1.0, 'her': 3.0, 'the': 1.0, 'helps': 1.0, 'older': 1.0}
Word element => {'anyway': 1.0, 'her': 1.0, 'for': 1.0, 'size': 1.0, 'a': 1.0, 'be': 1.0, 'but': 1.0, 'didn': 1.0, 'thought': 1.0, 'than': 1.0, 'measurements': 1.0, 'at': 1.0, '18': 1.0, 't': 1.0, 'good': 1.0, 'loves': 1.0, 'it': 3.0, 'month': 1.0, 'turns': 1.0, 'is': 1.0, 'really': 1.0, 'cute': 1.0, 'smaller': 1.0, 'my': 1.0, 'i': 1.0, 'old': 1.0, 'look': 1.0, 'to': 1.0, 'and': 1.0, 'out': 1.0}
Word element => {'assault': 1.0, 'withstood': 1.0, 'bit': 1.0, 'phase': 1.0, 'lot': 1.0, 'chase': 1.0, 'crawling': 1.0, 'would': 2.0, 'daughter': 1.0, 'pop': 2.0, 'for': 1.0, 'teething': 1.0, 'she': 4.0, 'month': 1.0, 'it': 5.0, 'laugh': 1.0, 'my': 1.0, 'the': 5.0, 'is': 3.0, '8': 1.0, 'able': 1.0, 'loved': 1.0, 'then': 1.0, 'push': 1.0, 'sassy': 1.0, 'and': 6.0, 'five': 1.0, 'me': 1.0, 'car': 4.0, 'of': 1.0, 'fun': 1.0, 'let': 1.0, 'back': 1.0, 'but': 2.0, 'a': 2.0, 'we': 2.0, 'go': 2.0, 'bought': 1.0, 'months': 1.0, 'later': 1.0, 'gets': 1.0, 'still': 1.0, 'everything': 1.0, 'entertaining': 1.0, 'has': 2.0, 'her': 2.0, 'now': 1.0, 'to': 1.0, 'on': 1.0, 'make': 1.0, 'own': 1.0, 'been': 1.0, 'in': 1.0}
Word element => {'price': 1.0, 'toy': 1.0, 'shake': 1.0, 'lift': 1.0, 'giggle': 1.0, 'which': 1.0, 'bit': 1.0, 'a': 3.0, 'surprised': 1.0, 'began': 1.0, 'get': 1.0, 'and': 3.0, 'him': 3.0, 'month': 1.0, 'up': 1.0, '6': 1.0, 'around': 1.0, 'across': 1.0, '5': 1.0, 'for': 2.0, 'rolled': 1.0, 'push': 1.0, 'my': 1.0, 'great': 2.0, 'the': 1.0, 'little': 1.0, 'car': 1.0, 'into': 1.0, 'popping': 1.0, 'loves': 2.0, 'then': 1.0, 'purchased': 1.0, 'turned': 1.0, 'to': 3.0, 'old': 1.0, 'i': 1.0, 'when': 1.0, 'son': 1.0, 'it': 8.0, 'this': 1.0, 'first': 1.0, 'he': 2.0, 'we': 1.0, 'zoomed': 1.0, 'floor': 1.0}
Word element => {'makes': 1.0, 'likes': 1.0, 'still': 1.0, 'carpet': 1.0, 'sounds': 1.0, 'on': 1.0, 'if': 1.0, 'rarely': 1.0, 'also': 1.0, 'do': 1.0, 'even': 1.0, 'pops': 1.0, 'much': 1.0, 'kid': 1.0, 'balls': 1.0, 'little': 1.0, 'when': 2.0, 'pop': 1.0, 'since': 1.0, 'month': 1.0, '10': 1.0, 'very': 1.0, 'son': 1.0, 'it': 6.0, 'he': 2.0, 'this': 1.0, 'shakes': 1.0, 't': 1.0, 'the': 3.0, 'for': 2.0, 'yet': 1.0, 'bought': 1.0, 'toy': 1.0, 'popper': 1.0, 'old': 1.0, 'i': 2.0, 's': 1.0, 'because': 1.0, 'not': 1.0, 'popcorn': 1.0, 'my': 1.0, 'push': 1.0, 'ready': 1.0, 'doesn': 1.0}
Word element => {'old': 1.0, 'months': 1.0, '18': 1.0, 'now': 1.0, 'loves': 1.0, 'is': 1.0, 'bought': 1.0, 'the': 1.0, 'never': 1.0, 'balls': 1.0, '34': 2.0, 'although': 1.0, 'still': 1.0, 'we': 1.0, 'car': 1.0, 'plays': 1.0, 'popped': 1.0, 'a': 1.0, 'son': 1.0, 'year': 1.0, 'my': 1.0, 'ago': 1.0, 'and': 1.0, 'this': 1.0, 'with': 1.0, 'he': 2.0, 'it': 1.0}
Word element => {'toy': 1.0, 'nice': 2.0, 'floor': 1.0, 'across': 1.0, 'as': 1.0, 'up': 1.0, 'pops': 1.0, 'go': 1.0, 'let': 1.0, 'and': 2.0, 'is': 2.0, 'for': 2.0, 'gift': 1.0, 'cute': 1.0, 'hands': 1.0, 'so': 1.0, 'the': 3.0, 'made': 1.0, 'races': 1.0, 'not': 1.0, 'car': 1.0, 'back': 1.0, 'it': 6.0, 'only': 1.0, 'this': 1.0, 'pull': 1.0, 'balls': 1.0, 'can': 1.0, 'toddlers': 1.0, 'size': 1.0, 'right': 1.0, 'their': 1.0, 'little': 1.0, 's': 1.0, 'a': 1.0, 'well': 1.0, 'makes': 1.0, 'they': 1.0}
Word element => {'rip': 1.0, 'her': 1.0, 'and': 1.0, 'times': 1.0, 'car': 1.0, 'cheap': 1.0, 'i': 1.0, 'when': 1.0, 'amazed': 1.0, 'she': 1.0, 'of': 1.0, 'toy': 1.0, 'back': 1.0, 'an': 1.0, 'popping': 1.0, 'let': 1.0, 'fun': 2.0, 'that': 1.0, 'curiosity': 1.0, 'the': 3.0, 'few': 1.0, 'piques': 1.0, 'a': 2.0, 'is': 2.0, 'this': 1.0, 'most': 1.0, 'real': 1.0, 'babies': 1.0, 'catches': 1.0, 's': 1.0, 'pull': 1.0, 'push': 1.0, 'bubbles': 1.0, 'my': 1.0, 'lo': 1.0, 'color': 1.0, 'eye': 1.0}
Word element => {'crawling': 1.0, 'motivation': 1.0, 'good': 1.0, 'sit': 1.0, 'able': 1.0, 'would': 1.0, 'i': 1.0, 'just': 1.0, 'recommend': 1.0, 'was': 2.0, 'had': 1.0, 'to': 4.0, 'now': 1.0, 'him': 1.0, 'it': 4.0, 'this': 2.0, 'he': 3.0, 'several': 1.0, 'car': 1.0, 'wheels': 1.0, 'another': 1.0, 'my': 1.0, 'push': 1.0, 'toy': 2.0, 'has': 1.0, 'for': 4.0, 'son': 1.0, 'little': 1.0, 'figure': 1.0, '5': 1.0, 'months': 2.0, 'on': 3.0, 'and': 2.0, 'starting': 1.0, 'old': 1.0, 'but': 1.0, 'back': 1.0, 'will': 1.0, 'is': 2.0, 'around': 1.0, 'watch': 1.0, '10': 1.0, 'if': 1.0, 'own': 2.0, 'the': 2.0, 'gnaw': 1.0, 'balls': 1.0, 'pop': 1.0, 'out': 1.0, 'babies': 1.0, 'initially': 1.0, 'loves': 1.0, 'that': 1.0, 'their': 2.0, 'pulls': 1.0, 'spin': 1.0}
Word element => {'enjoy': 1.0, 'gets': 1.0, 'grandson': 1.0, 'maybe': 1.0, 'wasn': 1.0, 'car': 1.0, 'my': 1.0, 'happy': 1.0, 'impressed': 1.0, 'of': 1.0, 'will': 1.0, 'quality': 1.0, 'but': 1.0, 'is': 1.0, 'more': 1.0, 't': 1.0, 'the': 1.0, '2': 1.0, 'pretty': 1.0, 'it': 1.0, 'older': 1.0, 'this': 1.0, 'he': 3.0, 'only': 1.0, 'with': 1.0, 'terribly': 1.0, 'as': 1.0, '11': 1.0, 'so': 1.0}
Word element => {'will': 1.0, 'well': 1.0, 'toy': 1.0, 'be': 1.0, 'is': 1.0, 'tell': 1.0, 'i': 1.0, 'us': 1.0, 'as': 1.0, 'grow': 1.0, 'to': 3.0, 'and': 4.0, 'great': 1.0, 'pulled': 1.0, 'when': 1.0, 'daughter': 1.0, 'can': 1.0, 'work': 1.0, 'back': 1.0, 'didn': 1.0, 'let': 1.0, 'at': 1.0, 'no': 1.0, 'the': 5.0, 'my': 1.0, 'this': 2.0, 'christmas': 1.0, 'first': 1.0, 'quick': 1.0, 'car': 3.0, '6': 1.0, 'purchased': 1.0, 'loved': 1.0, 'old': 1.0, 'for': 3.0, 'liked': 1.0, 'color': 1.0, 'bought': 1.0, 'one': 1.0, 'going': 1.0, 'a': 2.0, 'we': 5.0, 't': 1.0, 'go': 1.0, 'however': 1.0, 'it': 3.0, 'month': 1.0, 'she': 2.0, 'easy': 1.0, 'size': 1.0, 'balls': 1.0, 'so': 1.0, 'popping': 1.0, 'continue': 1.0, 'works': 1.0, 'much': 1.0, 'price': 1.0, 'into': 1.0, 'that': 3.0, 'exchanged': 1.0, 'exchange': 1.0, 'was': 1.0, 'new': 2.0, 'cost': 1.0}
Word element => {'toy': 1.0, 'excellent': 1.0}
Word element => {'small': 1.0, 'cars': 1.0, 'other': 1.0, 'his': 1.0, 'better': 1.0, 'any': 1.0, 'it': 1.0, 'of': 1.0, 'balls': 1.0, 'than': 2.0, 'car': 1.0, 'on': 1.0, 'guy': 1.0, 'are': 1.0, 'push': 1.0, 'smaller': 1.0, 'my': 1.0, 'much': 1.0, 'expected': 1.0, 'i': 1.0, 'noticeable': 1.0, 'popping': 1.0, 'isn': 1.0, 'the': 4.0, 't': 2.0, 'very': 1.0, 'and': 1.0, 'like': 1.0, 'little': 1.0, 'inside': 1.0, 'doesn': 1.0}
Word element => {'with': 1.0, 'can': 1.0, 'they': 1.0, 'one': 1.0, 'be': 1.0, 'to': 1.0, 'learn': 1.0, 'this': 1.0, 'childer': 1.0, 'always': 1.0, 'need': 1.0, 'proves': 1.0, 'varity': 1.0, 'a': 1.0, 'interest': 1.0, 'different': 1.0, 'for': 1.0, 'their': 1.0, 'of': 1.0, 'toys': 1.0, 'growing': 1.0}
Word element => {'girls': 1.0, 'boy': 1.0, 'down': 1.0, 'either': 1.0, 'great': 1.0, 'it': 1.0, 'perfect': 1.0, 'for': 2.0, 'hands': 1.0, 'or': 1.0, 'one': 1.0, 'gender': 1.0, 'toddler': 1.0, 'as': 1.0, 'and': 1.0, 'my': 1.0, 'neutral': 1.0, 'its': 1.0, 'little': 1.0, 'wont': 1.0, 'play': 1.0, 'put': 1.0}
Word element => {'ok': 1.0, 's': 1.0, 'this': 1.0, 'loves': 1.0, 'a': 3.0, 'go': 1.0, 'bit': 1.0, 'needs': 1.0, 'pull': 1.0, 'little': 1.0, 'gearing': 1.0, '5': 1.0, 'keeping': 1.0, 'no': 2.0, 'about': 1.0, 'hardwoods': 1.0, 'our': 1.0, 'how': 1.0, 'on': 3.0, 'much': 1.0, 'put': 1.0, 'is': 4.0, 'more': 2.0, 'say': 1.0, 'fast': 1.0, 'well': 1.0, 'hot': 1.0, 'barely': 1.0, 'stars': 1.0, 'for': 2.0, 'to': 3.0, 'pretty': 1.0, 'runs': 1.0, 'way': 1.0, 'jams': 1.0, 'away': 1.0, '3': 1.0, 'older': 1.0, 'and': 6.0, 'one': 1.0, 'too': 3.0, 'torque': 1.0, 'carpet': 1.0, 'storage': 1.0, 'crawler': 1.0, 'rather': 1.0, 'car': 1.0, 'old': 1.0, 'run': 1.0, 'poor': 1.0, 'it': 5.0, 'back': 1.0, 'needed': 1.0, 'friction': 1.0, 'but': 2.0, 'doesn': 1.0, 'the': 6.0, 'that': 3.0, 'goes': 1.0, 'up': 1.0, 'less': 1.0, 'we': 2.0, 'fine': 1.0, 'far': 3.0, 'motor': 1.0, 'monster': 1.0, 'rpm': 1.0, 'control': 1.0, 'they': 2.0, 'skill': 1.0, 'better': 3.0, 'gearbox': 1.0, 'really': 1.0, 'energy': 1.0, 'same': 1.0, 'with': 1.0, 'have': 2.0, 'some': 1.0, 'wheel': 1.0, 'cute': 1.0, 'are': 1.0, 'you': 2.0, 'push': 1.0, 't': 1.0, 'fairly': 1.0, 'year': 1.0, 'toddler': 1.0, 'price': 1.0, 'those': 2.0, 'not': 2.0, 'just': 2.0, 'so': 1.0, 'zips': 1.0, 'sensitive': 1.0, 'constantly': 1.0, 'speed': 1.0, 'has': 1.0, 'cars': 1.0, 'them': 1.0, 'designed': 1.0, 'kids': 1.0, 'concept': 1.0, 'infants': 1.0, 'drive': 1.0, 'mechanism': 1.0, '1': 1.0}
Word element => {'loves': 1.0, 'just': 1.0, 'everyday': 1.0, 'than': 1.0, 'for': 1.0, 'played': 1.0, 'and': 1.0, 'old': 1.0, 'month': 2.0, 'was': 1.0, 'got': 1.0, 'son': 1.0, 'very': 3.0, 'as': 2.0, 'far': 2.0, 'back': 1.0, 'inside': 1.0, 'run': 1.0, 'more': 1.0, 'the': 2.0, 'are': 1.0, 'pulling': 1.0, 'my': 1.0, 'with': 1.0, 'he': 2.0, 'only': 1.0, 'it': 6.0, 'toy': 1.0, 'cute': 2.0, 'when': 1.0, 'by': 1.0, 'little': 1.0, 'on': 1.0, 'a': 1.0, 'ground': 1.0, 'you': 1.0, 'want': 1.0, '7': 1.0, 'can': 1.0, 'balls': 1.0, 'of': 1.0}
Word element => {'reviews': 1.0, 'their': 1.0, 'in': 1.0, 'part': 1.0, 'our': 1.0, 'hears': 1.0, 'played': 1.0, 'rattle': 1.0, 'i': 5.0, 'when': 1.0, 'daughter': 1.0, 'gets': 1.0, 'm': 1.0, 'the': 3.0, 'my': 1.0, 'and': 1.0, '7': 1.0, 'excited': 1.0, 'she': 1.0, 'it': 1.0, 'month': 1.0, 'that': 2.0, 'loves': 1.0, 'don': 2.0, 'sound': 1.0, 'so': 1.0, 'sad': 1.0, 'product': 1.0, 'but': 1.0, 'this': 2.0, 'wish': 1.0, 'wrote': 1.0, 'different': 1.0, 'super': 1.0, 'each': 1.0, 'fish': 2.0, 't': 2.0, 's': 1.0, 'a': 1.0, 'was': 1.0, 'also': 1.0, 'missing': 1.0, 'like': 2.0, 'version': 1.0, 'which': 1.0, 'old': 1.0, 'tune': 1.0, 'noticed': 1.0, 'many': 1.0, 'people': 1.0}
Word element => {'time': 1.0, 'they': 1.0, 'fish': 1.0, 'textured': 1.0, 'having': 1.0, 'as': 2.0, 'music': 1.0, 'nice': 1.0, 'toys': 1.0, 'textures': 1.0, 'have': 2.0, 'kids': 1.0, 'that': 1.0, 'irritating': 1.0, 'different': 2.0, 'plays': 1.0, 'the': 1.0, 'great': 2.0, 'with': 1.0, 'this': 1.0, 'it': 2.0, 'i': 1.0, 'love': 1.0, 'one': 1.0, 'get': 1.0, 'and': 1.0, 'to': 1.0, 'was': 1.0, 'well': 1.0, 'a': 2.0, 'my': 1.0, 'choice': 1.0, 'non': 1.0}
Word element => {'purchasing': 1.0, 'will': 1.0, 'very': 1.0, 'mean': 1.0, 'or': 1.0, 'not': 1.0, 'washing': 1.0, 'true': 1.0, 'yellowy': 1.0, 'well': 1.0, 'the': 1.0, 'even': 2.0, 'before': 1.0, 'another': 1.0, 'cream': 1.0, 'and': 2.0, 'crib': 1.0, 'color': 1.0, 'beigey': 1.0, 'unbelievably': 1.0, 'pleased': 1.0, 'luxury': 1.0, 'smell': 1.0, 'nature': 1.0, 'be': 1.0, 'cotton': 1.0, 'it': 2.0, 'mattress': 1.0, 'soft': 1.0, 'sheet': 1.0, 'accommodates': 1.0, 'to': 1.0, 'our': 1.0, 'that': 1.0, 'doesn': 1.0, 'chemically': 1.0, 'sewn': 1.0, 'plasticky': 1.0, 'sheets': 1.0, 'presently': 1.0, 'a': 1.0, 't': 1.0, 's': 1.0, 'furthermore': 1.0, 'seem': 1.0, 'have': 2.0, 'coming': 1.0, 'when': 1.0, 'of': 1.0, 'packaging': 1.0, 'usually': 1.0, 'they': 2.0, 'is': 1.0, 'say': 1.0, 'out': 1.0, 'purest': 1.0}
Word element => {'barrier': 1.0, 'allergy': 1.0, 'quilted': 1.0, 'waterproof': 1.0, 'have': 1.0, 'fitted': 3.0, 'neath': 1.0, 'fitting': 1.0, 'deep': 1.0, 'only': 1.0, 'it': 3.0, 'bought': 1.0, 'just': 2.0, 'want': 1.0, 'never': 1.0, 'pad': 1.0, 'knowing': 1.0, 'them': 2.0, 'top': 1.0, 'was': 1.0, 'now': 1.0, 'sleep': 1.0, 'to': 3.0, 'he': 1.0, 'arrival': 1.0, 'since': 1.0, 'see': 1.0, 'had': 1.0, 'purchased': 1.0, 'haven': 1.0, 'using': 1.0, 'love': 2.0, 'for': 2.0, 's': 1.0, 'a': 4.0, 't': 1.0, 'organic': 1.0, '2': 3.0, 'the': 3.0, 'him': 2.0, 'putting': 1.0, 'born': 1.0, 'so': 2.0, 'sheet': 4.0, 'quilt': 1.0, 'this': 3.0, 'soft': 3.0, 'and': 7.0, 'great': 1.0, 'nice': 1.0, 'until': 1.0, 'my': 1.0, 'checked': 1.0, 'is': 2.0, 'under': 1.0, 'son': 1.0, 'would': 1.0, 'super': 2.0, 've': 2.0, 'that': 1.0, 'been': 2.0, 'i': 8.0, 'prior': 1.0, 'his': 1.0, 'brand': 2.0, 'of': 2.0, 'they': 1.0, 'were': 1.0, 'circo': 1.0, 'those': 1.0, 'not': 2.0, 'last': 1.0, 'years': 1.0, 'on': 2.0}
Word element => {'problem': 1.0, 'no': 1.0, 'though': 1.0, 'expected': 1.0, 'not': 1.0, 'even': 1.0, 'what': 1.0, 'dryer': 1.0, 'low': 1.0, 'we': 2.0, 'exactly': 1.0, 'wanted': 1.0, 'to': 1.0, 'is': 1.0, 'on': 1.0, 'in': 1.0, 'also': 1.0, 'sheet': 1.0, 'with': 1.0, 'this': 1.0, 'it': 1.0, 'says': 1.0, 'put': 1.0, 'the': 1.0, 'dried': 1.0}
Word element => {'cleaning': 1.0, 'unsnaps': 1.0, 'part': 1.0, 'catcher': 1.0, 'dump': 1.0, 'if': 1.0, 'wet': 1.0, 'get': 1.0, 'don': 1.0, 'kids': 1.0, 'proof': 1.0, 'off': 1.0, 'wipe': 1.0, 'milk': 1.0, 'just': 1.0, 'clothes': 1.0, 'was': 3.0, 'anymore': 1.0, 'sad': 1.0, 'for': 2.0, 'them': 7.0, 'started': 1.0, '6': 1.0, 'easy': 1.0, 'bit': 1.0, 'oldest': 1.0, 'about': 1.0, 'years': 1.0, 'best': 1.0, 'water': 1.0, 'laundry': 1.0, 'useing': 1.0, 'said': 2.0, 'or': 3.0, 'worth': 1.0, 'i': 12.0, 'pricy': 1.0, '5': 1.0, 'than': 1.0, 'is': 1.0, 'rise': 1.0, 'around': 1.0, 'more': 1.0, 'used': 1.0, 'they': 5.0, 'all': 1.0, 'ever': 1.0, 'day': 1.0, 'times': 2.0, 'when': 2.0, 'unless': 1.0, 'he': 1.0, 'far': 1.0, 'luck': 1.0, 'in': 6.0, 'per': 1.0, 'bibs': 1.0, 'snap': 1.0, 'by': 1.0, 'are': 4.0, 'have': 3.0, 'dryer': 1.0, 'together': 1.0, 'so': 4.0, 'can': 2.0, 'but': 2.0, 'these': 2.0, 'and': 6.0, 'coded': 1.0, 'me': 2.0, 'my': 1.0, 'fact': 1.0, 'color': 1.0, 'lasted': 2.0, 'ones': 1.0, 'too': 1.0, 'one': 1.0, 'velcro': 1.0, 'kid': 1.0, 'with': 2.0, '4': 1.0, 'stores': 1.0, 'never': 1.0, 'crumb': 1.0, 'sink': 1.0, 'couldn': 1.0, 't': 3.0, 'a': 1.0, 'down': 1.0, 'turned': 1.0, 'to': 1.0, 'your': 1.0, 'any': 1.0, 'amazon': 1.0, 'be': 1.0, 'on': 1.0, 'put': 1.0, 'side': 1.0, 'it': 1.0, 'their': 1.0, 'rinse': 1.0, 'out': 2.0, 'reuse': 1.0, 'later': 1.0, '2': 2.0, 'wearing': 1.0, 'problems': 1.0, 'that': 1.0, 'only': 1.0, 'find': 1.0, '1': 1.0, 'depending': 1.0, 'longer': 1.0, 'the': 10.0, 'of': 1.0, 'child': 1.0, 'like': 2.0, 'last': 2.0, 'haven': 1.0, 'had': 1.0, 'many': 1.0}
Word element => {'yet': 1.0, 'better': 1.0, 't': 1.0, 'haven': 1.0, 'and': 2.0, 'do': 1.0, 'like': 2.0, 'that': 1.0, 'nasty': 1.0, 'the': 2.0, 'these': 1.0, 'great': 1.0, 'cracking': 1.0, 'months': 1.0, '5': 1.0, 'them': 1.0, 'getting': 1.0, 'cleaning': 1.0, 'showing': 1.0, 'is': 3.0, 'with': 1.0, 'found': 1.0, 'this': 1.0, 'back': 1.0, 'but': 1.0, 'work': 2.0, 'bibs': 1.0, 'really': 1.0, 'material': 1.0, 'product': 1.0, 'however': 1.0, 'seems': 1.0, 'also': 1.0, 'in': 1.0, 'i': 4.0, 'two': 1.0, 'had': 1.0, 'to': 1.0, 'problems': 1.0, 'looking': 1.0, 'after': 1.0, 'amount': 1.0, 'of': 1.0, 'front': 1.0, 'through': 1.0, 'about': 1.0, 'no': 1.0, 'several': 1.0, 'places': 1.0, 'something': 1.0, 've': 1.0, 'would': 1.0, 'not': 1.0, 'recommend': 1.0}
Word element => {'off': 1.0, 'washing': 1.0, 'for': 1.0, 'unsnaps': 1.0, 'catch': 1.0, 'lay': 1.0, 'pocket': 2.0, 'eating': 1.0, 'while': 1.0, 'mouth': 1.0, 'easy': 2.0, 's': 1.0, 'bottom': 1.0, 'child': 1.0, 'clean': 1.0, 'the': 3.0, 'at': 1.0, 'misses': 1.0, 'clothing': 1.0, 'as': 1.0, 'protects': 1.0, 'all': 1.0, 'catches': 1.0, 'food': 1.0, 'their': 1.0, 'that': 1.0, 'and': 1.0, 'getting': 1.0, 'flat': 1.0, 'in': 1.0, 'to': 2.0}
Word element => {'figured': 1.0, 'which': 1.0, 'having': 1.0, 'worked': 1.0, 'while': 1.0, 'are': 1.0, 'sure': 1.0, 'easy': 1.0, 'large': 1.0, 'neck': 6.0, 'behind': 1.0, 'learned': 1.0, 'fails': 1.0, 'wondering': 1.0, 'clip': 1.0, 'wearer': 1.0, 's': 3.0, 'fit': 1.0, 't': 2.0, 'there': 2.0, '2': 1.0, 'but': 1.0, 'food': 1.0, 'of': 4.0, 'the': 10.0, 'myself': 1.0, 'to': 5.0, 'waterproof': 1.0, 'said': 1.0, '34': 2.0, 'age': 1.0, 'around': 1.0, 'and': 4.0, 'too': 1.0, 'bib': 9.0, 'keep': 1.0, 'is': 3.0, 'at': 1.0, 'bibs': 1.0, 'really': 1.0, 'like': 1.0, 'with': 1.0, 'adjusting': 1.0, 'chip': 1.0, 'this': 3.0, 'clean': 2.0, 'her': 1.0, 'snap': 2.0, 'cover': 1.0, 'i': 6.0, 'because': 1.0, 'fall': 1.0, 'that': 4.0, 'young': 1.0, 'closure': 1.0, 'pull': 2.0, 'daughter': 3.0, 'my': 4.0, 'them': 1.0, 'has': 1.0, 'unusually': 1.0, 'being': 1.0, 'how': 2.0, 'size': 1.0, 'even': 1.0, 'on': 3.0, 'necks': 1.0, 'second': 1.0, 'stands': 1.0, 'away': 1.0, 'purpose': 2.0, 'snaps': 2.0, 'from': 1.0, 'properly': 2.0, 'watch': 1.0, 'out': 4.0, 'velcro': 1.0, 'curiosity': 1.0, 'clothes': 2.0, 'was': 1.0, 'able': 1.0, 'secure': 2.0, 'it': 3.0, 'off': 2.0, 'tried': 1.0, 'own': 1.0, 'fits': 1.0, 'an': 1.0, 'both': 1.0, 'm': 1.0, 'babies': 1.0, 'settings': 1.0, 'opening': 1.0, 'don': 1.0, 'have': 2.0, 'a': 4.0, 'small': 1.0, 'can': 1.0, 'constantly': 1.0, 'so': 2.0, 'she': 2.0, 'defeated': 1.0, 'many': 1.0, 'for': 1.0, 'such': 1.0, 'way': 1.0, 'huge': 1.0, 'desperation': 1.0, 'used': 1.0}
Word element => {'toddlers': 1.0, 'infants': 1.0, 'purchase': 1.0, 'have': 1.0, 'must': 1.0, 'will': 1.0, 'now': 1.0, 'wouldnt': 1.0, 'down': 1.0, 'them': 2.0, 'wipe': 1.0, 'country': 1.0, 'in': 1.0, 'available': 1.0, 'wash': 1.0, 'up': 1.0, 'drips': 1.0, 'amazon': 1.0, 'recommend': 1.0, 'was': 1.0, 'they': 1.0, 'these': 1.0, 'without': 1.0, 'the': 3.0, 'great': 2.0, 'gifts': 1.0, 'are': 1.0, 'go': 1.0, 'a': 3.0, 'got': 1.0, 'one': 3.0, 'for': 2.0, 'love': 1.0, 'i': 2.0, 'buy': 2.0, 'when': 1.0, 'live': 1.0, 'disappointed': 1.0, 'werent': 1.0, 'eater': 1.0, 'and': 6.0, 'very': 1.0, 'so': 2.0, 'pleased': 1.0, 'be': 1.0, 'able': 1.0, 'to': 3.0, 'as': 3.0, 'all': 1.0, 'on': 1.0, 'it': 1.0, 'given': 1.0, 'shipped': 1.0, 'gift': 1.0, 'messy': 1.0, 'picking': 1.0, 'highly': 1.0, 'really': 1.0, 'bibs': 1.0, 'crumbs': 1.0, 'fun': 1.0, 'designs': 1.0, 'get': 1.0, 'easy': 1.0}
Word element => {'has': 1.0, 'need': 1.0, 'you': 1.0, 'snap': 1.0, 'clean': 1.0, 'off': 1.0, 'plus': 1.0, 'to': 1.0, 'adorable': 1.0, 'easy': 1.0, 'large': 1.0, 'that': 1.0, 'prevents': 1.0, 'what': 1.0, 'a': 1.0, 'are': 1.0, 'all': 1.0, 'catches': 1.0, 'have': 1.0, 'these': 1.0, 'pulling': 1.0, 'it': 4.0, 'and': 1.0, 'is': 1.0, 'food': 1.0, 'else': 1.0, 'would': 1.0}
Word element => {'well': 1.0, 'items': 1.0, 'not': 1.0, 'search': 1.0, 'was': 2.0, 'had': 3.0, 'next': 1.0, 'it': 5.0, 'only': 1.0, 'used': 2.0, 'one': 1.0, 'i': 3.0, 'and': 2.0, 'get': 1.0, 'dex': 1.0, 'best': 1.0, 'years': 1.0, 'some': 1.0, 'finally': 1.0, 'friend': 1.0, 'bibs': 1.0, 'baby': 1.0, 'them': 2.0, 'arrived': 1.0, 's': 1.0, 'we': 1.0, 'a': 2.0, 'new': 1.0, 'dura': 1.0, 'from': 1.0, 'outside': 1.0, 'to': 3.0, 'as': 2.0, 'buy': 2.0, 'day': 1.0, 'bib': 1.0, 'who': 1.0, 'time': 1.0, 'so': 1.0, 'after': 1.0, 'searched': 1.0, 'just': 1.0, 'amazon': 2.0, 'found': 2.0, 'for': 3.0, 'supposed': 1.0, 'deal': 1.0, 'the': 4.0, 'went': 1.0, 'received': 1.0, '99': 1.0, '6': 1.0, 'of': 1.0, 'moral': 1.0, 'always': 1.0, 'story': 1.0}
Word element => {'overall': 1.0, 'weeks': 1.0, 'few': 1.0, 'only': 1.0, 'easily': 1.0, 'good': 1.0, 'clean': 1.0, 'not': 1.0, 'back': 1.0, 'although': 1.0, 'wipe': 1.0, 'up': 1.0, 'wash': 1.0, 'he': 1.0, 'with': 2.0, 'velcro': 1.0, 'this': 2.0, 'it': 5.0, 'kept': 1.0, 'stain': 1.0, 'button': 1.0, 'bibs': 1.0, 'ordered': 1.0, 'using': 1.0, 'cannot': 1.0, 'old': 1.0, 'type': 1.0, 'is': 2.0, 'main': 1.0, 'bib': 3.0, 'as': 1.0, 'to': 1.0, 'our': 1.0, 'stays': 1.0, 'the': 6.0, 'job': 1.0, 'tray': 1.0, 'one': 3.0, 'put': 1.0, 'doesn': 1.0, 'but': 1.0, 'pulling': 1.0, 'yr': 1.0, 'easy': 1.0, 'take': 1.0, 'we': 1.0, 's': 2.0, 't': 1.0, 'a': 4.0, 'well': 1.0, 'front': 1.0, 'so': 1.0, 'bit': 1.0, 'stiff': 1.0, 'and': 3.0, 'after': 1.0, 'ended': 1.0, 'sometimes': 1.0, 'fit': 1.0, 're': 1.0, 'snap': 1.0, 'off': 3.0, 'enough': 1.0, 'very': 1.0, 'under': 1.0, 'his': 1.0, 'because': 1.0, 'does': 2.0, 'decent': 1.0, 'of': 2.0}
Word element => {'at': 1.0, 'messy': 1.0, 'super': 1.0, 'from': 1.0, 'prevents': 1.0, 'this': 1.0, 'my': 1.0, 'if': 1.0, 'feeding': 1.0, 'son': 1.0, 'turns': 1.0, 'head': 1.0, 'getting': 1.0, 'him': 2.0, 'his': 1.0, 'alot': 1.0, 'all': 1.0, 'even': 1.0, 'while': 1.0, 'i': 1.0, 'm': 1.0}
Word element => {'unused': 1.0, 'flat': 1.0, 'in': 1.0, 'lay': 1.0, 'pocket': 2.0, 'unsnaps': 1.0, 'places': 1.0, 'clean': 1.0, 'fits': 1.0, 'out': 1.0, 'bib': 1.0, 'adjustable': 1.0, 'snaps': 1.0, 'nicely': 1.0, 'the': 1.0, 'figured': 1.0, 'is': 1.0, 'come': 1.0, 'with': 1.0, 'nice': 1.0, 'catch': 1.0, 'it': 3.0, 'colorful': 1.0, 'several': 2.0, 'spills': 1.0, 'how': 1.0, 'am': 1.0, 'easy': 1.0, 'and': 1.0, 'very': 1.0, 'to': 4.0, 'as': 3.0, 'confused': 1.0, 'for': 1.0, 'or': 1.0, 'storing': 1.0, 'are': 1.0, 'problem': 1.0, 'cleaning': 1.0, 'did': 1.0, 'not': 1.0, 'instructions': 1.0, 'on': 1.0, 'form': 1.0, 'a': 1.0, 'way': 1.0, 'but': 1.0, 'still': 1.0, 'there': 1.0}
Word element => {'off': 1.0, 'take': 1.0, 'cannot': 1.0, 'child': 1.0, 'back': 1.0, 'the': 2.0, 'snaps': 1.0, 'best': 1.0, 'bib': 3.0, 'and': 1.0, 'in': 1.0, 'for': 1.0, 'toddlers': 1.0, 'this': 1.0, 'so': 2.0, 'easily': 1.0, 'it': 1.0, 'great': 1.0, 'cleans': 1.0, 'works': 1.0}
Word element => {'showers': 1.0, 'gift': 1.0, 'at': 2.0, 'great': 1.0, 'ones': 1.0, 'have': 1.0, 'will': 1.0, 'little': 1.0, 'off': 1.0, 'bib': 1.0, 'last': 1.0, 'least': 1.0, 'this': 1.0, 'it': 4.0, 'you': 1.0, 'if': 1.0, 'a': 2.0, 'couple': 1.0, 'baby': 1.0, 'years': 1.0, 'gross': 1.0, 'wipe': 1.0, 'when': 1.0, 'gets': 1.0, 'is': 1.0, 'wash': 1.0, 'also': 1.0}
Word element => {'vomit': 1.0, 'bit': 1.0, 'good': 1.0, 'a': 1.0, 'clean': 1.0, 'to': 1.0, 'especially': 1.0, 'of': 2.0, 'lots': 1.0, 'easy': 1.0, 'table': 1.0, 'food': 1.0, 'are': 1.0, 'nice': 1.0, 'catch': 1.0, 'great': 1.0, 'the': 1.0, 'these': 1.0, 'they': 1.0, 'your': 1.0, 'sick': 1.0, 'when': 1.0, 'kids': 1.0, 'and': 1.0, 'get': 1.0, 'at': 1.0, 'hold': 1.0}
Word element => {'buying': 1.0, 'enough': 1.0, 'isn': 1.0, 'baby': 3.0, 'heartbeat': 2.0, 'holding': 1.0, 'the': 6.0, 's': 2.0, 't': 1.0, 'useful': 1.0, 'are': 1.0, 'this': 3.0, 'picked': 1.0, 'it': 1.0, 'fingers': 1.0, 'for': 1.0, 'product': 1.0, 'be': 1.0, 'more': 1.0, 'is': 3.0, 'totally': 1.0, 'that': 1.0, 'something': 1.0, 'hogwash': 1.0, 'up': 1.0, 'of': 1.0, 'to': 2.0, 'all': 1.0, 'have': 1.0, 'money': 1.0, 'can': 1.0, 'hear': 2.0, 'device': 2.0, 'i': 1.0, 'strong': 1.0, 'your': 1.0, 'on': 2.0, '3rd': 1.0, 'not': 1.0, 'trimester': 1.0, 'you': 1.0, 'am': 1.0, 'states': 1.0, 'end': 1.0, 'my': 2.0, 'though': 1.0, 'until': 1.0, 'near': 1.0, 'pregnancy': 1.0, 'and': 1.0, 'worth': 1.0, 'yet': 1.0, 'use': 1.0}
Word element => {'did': 1.0, 'move': 1.0, 'come': 1.0, 'backyardigans': 3.0, 'thrilled': 1.0, 'with': 1.0, 'it': 1.0, 'his': 1.0, 'into': 1.0, 'loves': 1.0, 'ship': 1.0, 'him': 1.0, 'crib': 1.0, 'bed': 2.0, 'toddler': 1.0, 'very': 1.0, 'a': 3.0, 'i': 2.0, 'so': 1.0, 'cute': 1.0, 'after': 1.0, 'son': 1.0, 'lighter': 1.0, 'to': 2.0, 'happier': 1.0, 'my': 1.0, 'color': 2.0, 'the': 3.0, 'showed': 1.0, 'pirate': 1.0, 'theme': 1.0, 'in': 2.0, 'different': 1.0, 'find': 1.0, 'than': 1.0, 'was': 1.0, 'yellow': 1.0, 'blue': 1.0, 'shown': 1.0, 'though': 1.0, 'which': 1.0, 'am': 1.0, 'for': 1.0, 'actually': 1.0, 'came': 1.0, 'and': 1.0, 'on': 1.0, 'their': 1.0}
Word element => {'together': 1.0, 'piece': 1.0, 'every': 1.0, 'except': 1.0, 'great': 1.0, 'all': 1.0, 'changer': 1.0, 'dresser': 1.0, 'drawer': 2.0, '6': 1.0, '3': 2.0, 'crib': 1.0, 'allow': 1.0, 'me': 1.0, 'put': 1.0, 'will': 1.0, 'husband': 1.0, 'look': 1.0, 'to': 1.0, 'triplets': 1.0, 'one': 1.0, 'bed': 1.0, 'is': 2.0, 'he': 1.0, 'with': 1.0, 'in': 1.0, 'having': 1.0, 'room': 1.0, 'each': 1.0, 'as': 1.0, 'adorable': 1.0, 'very': 1.0, 'their': 1.0, 'bought': 1.0, 'keep': 1.0, 'own': 1.0, 'cribs': 1.0, 'wood': 1.0, 'easily': 1.0, 'scratched': 2.0}
Word element => {'child': 1.0, 'any': 1.0, 'that': 1.0, 'spot': 1.0, 'remains': 1.0, 'have': 1.0, 'has': 2.0, 'valued': 1.0, 'be': 2.0, 'a': 4.0, 's': 3.0, 'we': 2.0, 't': 2.0, 'become': 2.0, '4': 1.0, 'calls': 1.0, 'well': 1.0, 'putting': 1.0, 'i': 3.0, 'favorite': 1.0, 'stand': 1.0, 'son': 3.0, 'months': 1.0, 'bought': 1.0, 'one': 1.0, 'crib': 1.0, 'his': 2.0, 'in': 1.0, 'snuggle': 4.0, 'him': 3.0, 'it': 10.0, 'love': 1.0, 'he': 4.0, 'was': 2.0, 'doesn': 1.0, 'when': 2.0, 'you': 1.0, 'let': 1.0, 'fleece': 1.0, 'best': 1.0, 'not': 2.0, 'and': 7.0, 'of': 2.0, 'the': 3.0, 'cuddly': 1.0, 'hands': 1.0, 'thing': 1.0, 'born': 1.0, 'to': 3.0, 'how': 1.0, 'our': 1.0, 'buddy': 1.0, 'star': 1.0, 'started': 1.0, 'carter': 1.0, 'me': 1.0, 'my': 4.0, 'blanket': 1.0, 'old': 1.0, 'touch': 1.0, 'dog': 5.0, 'part': 1.0, 'though': 1.0, 'do': 1.0, 'its': 1.0, 'soft': 1.0, 'mother': 1.0, 'tell': 1.0, 'anything': 2.0, 'but': 2.0, 'can': 1.0, 'pry': 1.0, 'house': 1.0, 'out': 1.0, 'wash': 1.0, 'just': 1.0, 'having': 1.0, 'is': 6.0, 'at': 2.0, 'think': 2.0, 'on': 3.0, 'still': 1.0, 'if': 1.0, 'all': 1.0, 'other': 1.0, 'ever': 1.0, 'bedtime': 2.0, 'lost': 1.0, 'there': 2.0, 'would': 2.0, 'such': 1.0, 'meltdown': 1.0, 'loved': 1.0, 'constant': 1.0, 'two': 1.0, 'little': 1.0, 'head': 1.0, 'really': 1.0, 'shows': 1.0, 'with': 1.0, 'micro': 1.0, 'made': 1.0, 'side': 1.0, 'satin': 1.0}
Word element => {'food': 1.0, 'for': 1.0, 'them': 1.0, 'we': 1.0, 'cars': 1.0, 'driving': 1.0, 're': 1.0, 'my': 1.0, 'job': 1.0, 'do': 1.0, 'and': 1.0, 'fun': 1.0, 'are': 1.0, 'purchased': 1.0, 'have': 1.0, 'cheaper': 1.0, 'table': 2.0, 'on': 1.0, 'count': 3.0, 'clearly': 1.0, 'i': 3.0, '45': 1.0, 'toppers': 2.0, 'can': 1.0, 'but': 1.0, 'his': 1.0, 'listed': 1.0, 'the': 4.0, 'find': 1.0, 'product': 2.0, 'is': 2.0, 'while': 1.0, 'themselves': 1.0, 'much': 1.0, 'received': 1.0, 'marked': 1.0, '18': 2.0, 'son': 1.0, 'as': 1.0, 'packages': 1.0, 'waiting': 1.0, 'enjoys': 1.0, 'elsewhere': 2.0, 'which': 1.0}
Word element => {'leave': 1.0, 'come': 1.0, 'mats': 1.0, 'up': 1.0, 'savor': 1.0, 'really': 1.0, 'mouth': 1.0, 'their': 1.0, 'off': 1.0, 'snap': 1.0, 're': 1.0, 'they': 1.0, 'from': 1.0, 'cases': 1.0, 'in': 2.0, 'color': 1.0, 'or': 1.0, 'for': 2.0, 'eat': 1.0, 'surface': 1.0, 'it': 3.0, 'with': 2.0, 'quick': 1.0, 'wiped': 2.0, 'play': 1.0, 'and': 3.0, 'residue': 1.0, 'do': 2.0, 'that': 1.0, 'some': 1.0, 'these': 1.0, 'sides': 1.0, 'them': 2.0, 'wipe': 1.0, 'look': 1.0, 'as': 1.0, 'to': 4.0, 've': 1.0, 'dump': 1.0, 'more': 1.0, 'is': 3.0, 'time': 1.0, 'life': 1.0, 'by': 1.0, 'wet': 1.0, 'how': 1.0, 'table': 7.0, 'easy': 1.0, 'rag': 1.0, 'who': 1.0, 'easily': 1.0, 'you': 2.0, 'seen': 1.0, 'busboys': 1.0, 'your': 2.0, 'on': 2.0, 'may': 1.0, 'another': 2.0, 'sticky': 2.0, 's': 1.0, 'a': 5.0, 'ground': 1.0, 'down': 4.0, 'what': 2.0, 'importantly': 1.0, 'previously': 1.0, 'his': 1.0, 'clean': 4.0, 'most': 1.0, 'but': 2.0, 'toddler': 1.0, 'likes': 1.0, 'place': 1.0, 'the': 7.0, 'plates': 1.0, 'enter': 1.0, 'sticking': 1.0, 'provide': 1.0, 'about': 1.0, 'no': 2.0, 'toppers': 1.0, 'worries': 1.0, 'tape': 1.0}
Word element => {'bag': 1.0, 'in': 1.0, 'one': 1.0, 'always': 1.0, 'up': 1.0, 'easy': 1.0, 'super': 1.0, 'make': 1.0, 'and': 1.0, 'to': 2.0, 'his': 1.0, 'occupied': 1.0, 'with': 1.0, 'son': 2.0, 'on': 1.0, 'our': 2.0, 'diaper': 1.0, 'mess': 1.0, 'these': 1.0, 'time': 1.0, 'they': 1.0, 'go': 1.0, 'clean': 1.0, 'out': 1.0, 'them': 1.0, 'every': 1.0, 'use': 1.0, 'we': 3.0, 'eat': 1.0, 'servers': 1.0, 'several': 1.0, 'complimented': 1.0, 'have': 1.0, 'us': 1.0, 'keep': 2.0, 'my': 1.0}
Word element => {'her': 1.0, 'his': 1.0, 'surface': 1.0, 'clean': 1.0, 'wonderful': 1.0, 'in': 1.0, 'finger': 1.0, 'restaurant': 1.0, 'for': 2.0, 'baby': 2.0, 'tabletop': 1.0, 'allow': 1.0, 'feeding': 1.0, 'a': 2.0, 'placemats': 1.0, 'foods': 1.0, 'are': 1.0, 'the': 3.0, 'these': 1.0, 'they': 1.0, 'or': 1.0, 'home': 1.0, 'table': 1.0, 'and': 1.0, 'away': 1.0, 'other': 1.0, 'secured': 1.0, 'from': 1.0, 'stay': 1.0, 'to': 1.0}
Word element => {'buyer': 1.0, 'first': 1.0, 'be': 1.0, 'hold': 1.0, 'though': 1.0, 'container': 3.0, 'placemats': 2.0, 'with': 2.0, 'come': 1.0, 'it': 3.0, 'eating': 1.0, 'purchases': 1.0, 'for': 1.0, 'love': 1.0, 'have': 3.0, 'them': 1.0, 'out': 1.0, 'doesn': 1.0, 'but': 1.0, 'from': 2.0, 'big': 1.0, 'ordered': 1.0, 'time': 1.0, 'so': 1.0, 'i': 3.0, 'to': 2.0, 'other': 1.0, 'handy': 2.0, 'companies': 1.0, 'that': 1.0, 'on': 1.0, 'deal': 1.0, 'amazon': 1.0, 'and': 1.0, 'they': 1.0, 'came': 1.0, 'bag': 1.0, 'plastic': 1.0, 'since': 1.0, 'toddlers': 1.0, 'when': 1.0, 'easily': 1.0, 'in': 1.0, 'fits': 1.0, 'my': 1.0, 'these': 1.0, 'already': 1.0, 'previous': 1.0, 'might': 1.0, 't': 1.0, 'a': 5.0, 's': 1.0, 'not': 1.0}
Word element => {'replace': 1.0, 'i': 2.0, 'old': 2.0, 'tries': 1.0, 'since': 1.0, 'her': 1.0, 'soft': 1.0, 'mattress': 1.0, 'this': 1.0, 'my': 1.0, 'and': 2.0, 'get': 1.0, 'daughter': 1.0, 'slept': 1.0, 'if': 1.0, 'was': 1.0, 'to': 3.0, 'months': 2.0, 'think': 1.0, 'on': 1.0, 'when': 1.0, 'happened': 1.0, 'little': 1.0, 'it': 7.0, 'she': 6.0, 'has': 1.0, 'but': 1.0, '2': 1.0, 'is': 4.0, 'into': 2.0, 'loves': 1.0, 'that': 1.0, 'still': 1.0, 'safe': 1.0, 'a': 1.0, 's': 1.0, 'not': 1.0, 'like': 1.0, 'tired': 1.0, '18': 1.0, 'sunk': 1.0, 'bed': 1.0, 'actually': 1.0, 'anything': 1.0, 'would': 1.0, 'ever': 1.0, 'definitely': 1.0, 'have': 1.0}
Word element => {'surprise': 1.0, 'pleasant': 1.0, 'new': 1.0, 'bed': 1.0, 'for': 2.0, 'grandson': 1.0, 'my': 1.0, 'bought': 1.0, 's': 1.0, 'i': 3.0, 'impressed': 1.0, 'and': 1.0, 'toddler': 1.0, 'quality': 1.0, 'paid': 1.0, 'was': 2.0, 'its': 1.0, 'considering': 1.0, 'this': 1.0, 'with': 1.0, 'it': 2.0, 'mattress': 1.0, 'what': 1.0, 'a': 1.0}
Word element => {'good': 1.0, 'as': 1.0, 'just': 1.0, 'be': 1.0, 'baby': 1.0, 'no': 1.0, 'but': 1.0, 'toddler': 1.0, 'love': 1.0, 'that': 2.0, 'my': 1.0, 'worth': 1.0, 'was': 1.0, 'definitely': 1.0, 'used': 1.0, 'mattress': 1.0, 'only': 1.0, 'it': 1.0, '19': 1.0, 'this': 1.0, 'have': 2.0, 'has': 1.0, 'the': 3.0, '2': 1.0, 'side': 2.0, 'is': 1.0, 'would': 1.0, 'sides': 1.0, 'daughter': 1.0, 'months': 1.0, 'hesitations': 1.0, 'i': 2.0, 'old': 1.0, 'so': 1.0, 'extra': 1.0, 'we': 1.0}
Word element => {'to': 1.0, 'need': 1.0, 'don': 2.0, 'these': 1.0, 'on': 1.0, 'accomplish': 1.0, 'thin': 1.0, 'her': 1.0, 'night': 1.0, 'stretch': 1.0, 'at': 2.0, 'hours': 1.0, 'for': 1.0, 'is': 1.0, 'more': 1.0, 'sleeps': 1.0, 'in': 1.0, 'something': 1.0, 've': 1.0, 'really': 2.0, 'one': 3.0, 'bed': 1.0, 'you': 6.0, 'when': 1.0, 'run': 1.0, 'bargain': 1.0, 'that': 2.0, 't': 3.0, 's': 1.0, 'a': 3.0, 'well': 1.0, 'just': 1.0, 'walk': 1.0, 'how': 1.0, 'old': 2.0, 'makes': 1.0, 'seven': 1.0, 'will': 1.0, 'consider': 1.0, 'but': 1.0, '2': 1.0, 'can': 2.0, 'size': 1.0, 'long': 1.0, 'deal': 1.0, 'the': 2.0, 'll': 1.0, 'be': 1.0, 'if': 1.0, 'didn': 1.0, 'got': 1.0, 'convertible': 1.0, 'real': 1.0, 'then': 1.0, 'of': 2.0, 'those': 1.0, 'two': 1.0, 'become': 1.0, 'mattress': 1.0, 'this': 2.0, 'full': 1.0, 'month': 1.0, 'it': 3.0, 'truly': 1.0, 'using': 1.0, 'hold': 1.0, 'off': 1.0, 'spend': 1.0, 'great': 1.0, 'until': 1.0, 'mattresses': 1.0, 'very': 1.0, 'cribs': 1.0, 'made': 1.0, 'eventually': 1.0, 'fact': 1.0, 'my': 1.0}
Word element => {'sure': 1.0, 'not': 1.0, 'am': 2.0, 'that': 1.0, 'our': 1.0, 'i': 2.0, 'concern': 1.0, 'my': 1.0, 'the': 5.0, 'infants': 2.0, 'more': 1.0, 'is': 4.0, 'side': 3.0, 'other': 1.0, 'received': 1.0, 'this': 1.0, 'mattress': 2.0, 'assuming': 1.0, 'nice': 1.0, 'snugly': 1.0, 'which': 2.0, 'moons': 1.0, 'only': 1.0, 'with': 1.0, 'very': 2.0, 'description': 1.0, 'and': 3.0, 'crib': 1.0, 'in': 1.0, 'toddlers': 1.0, 'product': 1.0, 'fit': 2.0, 'expensive': 1.0, 'for': 4.0, 'stars': 1.0, 'price': 1.0, 'recommend': 1.0, 'was': 1.0, 'matches': 1.0, 'good': 1.0, 'baby': 1.0, 'quality': 1.0, 'bought': 1.0, 'daughter': 1.0, 'we': 2.0, 'a': 1.0, 's': 1.0, 'new': 1.0, 'would': 1.0, 'definitely': 1.0}
Word element => {'would': 1.0, 'few': 1.0, 'need': 1.0, 'will': 1.0, 'years': 1.0, 'price': 1.0, 'my': 1.0, 'again': 1.0, 'when': 1.0, 'at': 2.0, 'well': 1.0, 'buy': 1.0, 'definitely': 1.0, 'looking': 1.0, 'great': 1.0, 'the': 3.0, 'ones': 2.0, 'it': 1.0, 'first': 1.0, 'with': 1.0, 'is': 3.0, 'realized': 1.0, 'an': 1.0, 'toddler': 1.0, 'money': 1.0, 'but': 1.0, 'book': 1.0, 'mattresses': 1.0, 'needed': 1.0, 'in': 1.0, 'then': 1.0, 'combination': 1.0, 'a': 6.0, 'we': 1.0, 'infant': 1.0, 'and': 2.0, 'i': 3.0, 'thought': 1.0, 'next': 1.0, 'that': 2.0, 'for': 3.0, 'expensive': 2.0, 'this': 2.0, 'perfect': 1.0, 'mattress': 1.0, 'after': 1.0, 'bargains': 1.0, 'of': 1.0, 'baby': 2.0, 'them': 1.0, 'are': 1.0, 'waste': 1.0, 'reading': 1.0, 'like': 1.0, 'as': 1.0, 'all': 1.0}
Word element => {'surprisingly': 1.0, 'well': 1.0, 'that': 1.0, 'find': 1.0, 'to': 2.0, 'able': 1.0, 'have': 1.0, 'very': 2.0, 'why': 1.0, 'sure': 1.0, 'not': 2.0, 'am': 2.0, 'toddler': 1.0, 'gaps': 1.0, 'graco': 1.0, 'no': 1.0, 'it': 1.0, 'with': 2.0, 'on': 1.0, 'been': 1.0, 'crib': 1.0, 'in': 1.0, 'which': 2.0, 'for': 2.0, 'lauren': 1.0, 'satisfied': 1.0, 'patch': 1.0, 'people': 1.0, 'is': 3.0, 'side': 3.0, 'made': 1.0, 'fits': 1.0, 'i': 2.0, 'labels': 1.0, 'lift': 1.0, 'mattress': 2.0, 'lightweight': 1.0, 'the': 5.0, 'of': 1.0, 'clearly': 1.0, 'perfectly': 1.0, 'and': 2.0, 'arrows': 1.0, 'infant': 1.0}
Word element => {'worth': 1.0, 'but': 1.0, 'product': 1.0, 'sleeping': 1.0, 'it': 1.0, 'he': 1.0, 'where': 1.0, 'love': 1.0, 'my': 1.0, 'month': 1.0, 'infant': 1.0, 'price': 1.0, 'firm': 1.0, 'didn': 1.0, 'how': 1.0, 'is': 4.0, 'side': 1.0, 'six': 1.0, 'i': 1.0, 'old': 1.0, '20': 1.0, '8': 1.0, 'lbs': 1.0, 'and': 1.0, 'a': 1.0, 'expensive': 1.0, 'mattress': 1.0, 'that': 1.0, 'great': 1.0, 'the': 2.0, 't': 1.0, 'needed': 1.0, 'sag': 1.0}
Word element => {'organic': 1.0, 'have': 1.0, 'an': 1.0, 'uncomfortable': 1.0, 'very': 1.0, 'mattress': 1.0, 'used': 1.0, 'should': 1.0, 'feels': 1.0, 'literally': 1.0, 'daughter': 1.0, 'for': 1.0, 'i': 1.0, 'old': 1.0, '2': 1.0, 'it': 3.0, 'with': 1.0, 'my': 1.0, 'gotten': 1.0, 'and': 2.0, 'cheaply': 1.0, 'plastic': 1.0, 'years': 1.0, 'about': 1.0, '5': 1.0, 'months': 1.0, 'apart': 1.0, 'reason': 1.0, 'also': 1.0, 'was': 1.0, 'made': 1.0, 'breaking': 1.0, 'no': 1.0}
Word element => {'colors': 1.0, 'several': 1.0, 'painted': 1.0, 'pulled': 1.0, 'sturdy': 1.0, 'grows': 1.0, 'because': 1.0, 'wonderful': 1.0, 'visits': 1.0, 'when': 1.0, 'chicago': 1.0, 'ours': 1.0, 'now': 2.0, 'trapp': 1.0, 'granddaughter': 1.0, 'with': 1.0, 'buying': 1.0, 'is': 3.0, 'can': 1.0, '2': 1.0, 'the': 5.0, 'she': 1.0, 'it': 6.0, 'first': 1.0, 'also': 1.0, 'in': 3.0, 'been': 1.0, 'that': 1.0, '1977': 2.0, 'to': 3.0, 'our': 2.0, 'over': 1.0, 'up': 1.0, 'child': 3.0, 'yes': 1.0, 'here': 1.0, 'be': 2.0, 'years': 1.0, 'natural': 1.0, 'used': 2.0, 'different': 1.0, 'her': 1.0, 'just': 1.0, 'california': 1.0, 'chair': 2.0, 'keep': 1.0, 'who': 1.0, 'right': 2.0, '7': 1.0, 'for': 5.0, 'bought': 1.0, 'one': 1.0, 'being': 1.0, 'extremely': 1.0, '6': 1.0, 'too': 1.0, 'and': 3.0, 'll': 1.0, '8': 1.0, 'have': 1.0, 'yr': 1.0, 'old': 2.0, 'table': 1.0, 'trip': 1.0, 'granddaughters': 1.0, 'another': 2.0, 'wks': 1.0, 'sending': 1.0, 'off': 1.0, 're': 1.0, 's': 3.0, 'we': 5.0, 'going': 1.0}
Word element => {'at': 1.0, 'recommend': 1.0, 'don': 1.0, 'wash': 1.0, 'just': 1.0, 'of': 2.0, 'design': 1.0, 't': 1.0, 'the': 2.0, 'line': 1.0, 'this': 1.0, 'it': 2.0, 'like': 1.0, 'all': 1.0, 'bad': 1.0, 'love': 1.0, 'one': 1.0, 'is': 1.0, 'looks': 1.0, 'that': 1.0, 'but': 1.0, 'quality': 1.0, 'an': 1.0, 'products': 1.0, 'i': 2.0, 'old': 1.0, 'rag': 1.0, 'so': 1.0, 'after': 1.0}
Word element => {'guy': 1.0, 'little': 1.0, 'for': 1.0, 'bathtime': 1.0, 'perfect': 1.0, 'use': 1.0, 'a': 1.0, 'them': 1.0, 'and': 1.0, 'adorable': 1.0, 'to': 1.0, 'absolutely': 1.0, 'size': 1.0, 'can': 1.0, 'wait': 1.0, 'they': 1.0, 'are': 1.0, 're': 1.0, 'my': 1.0, 'post': 1.0, 'these': 1.0, 't': 1.0, 'swaddling': 1.0, 'i': 1.0, 'with': 1.0}
Word element => {'you': 1.0, 'thank': 1.0, 'friend': 1.0, 'to': 1.0, 'defiantly': 1.0, 'will': 1.0, 'together': 1.0, 'so': 1.0, 'are': 1.0, 'were': 1.0, 'description': 1.0, 'on': 2.0, 'the': 1.0, 'my': 1.0, 'a': 1.0, 'black': 1.0, 'and': 4.0, 'beautiful': 1.0, 'fast': 1.0, 'dead': 1.0, 'room': 1.0, 'received': 1.0, 'pictures': 1.0, 'recommending': 1.0, 'always': 1.0, 'her': 1.0, 'i': 2.0, 'baby': 1.0, 'very': 1.0, 'shipping': 1.0, 'pink': 1.0, 'girls': 1.0, 'receives': 1.0, 'compliments': 1.0, 'white': 1.0, 'bedding': 1.0}
Word element => {'again': 1.0, 'would': 1.0, 'i': 1.0, 'ready': 1.0, 'nursery': 1.0, 'baby': 2.0, 'for': 3.0, 'in': 1.0, 'use': 1.0, 'purchased': 1.0, 'adorable': 1.0, 'the': 4.0, 'mother': 1.0, 'geenny': 1.0, 'was': 2.0, 'to': 2.0, 'be': 1.0, 'a': 1.0, 'is': 1.0, 'time': 2.0, 'bedding': 1.0, 'shower': 2.0, 'it': 2.0, 'with': 1.0, 'this': 1.0, 'gift': 1.0, 'make': 1.0, 'enough': 1.0, 'and': 2.0, 'delighted': 1.0, 'girl': 1.0, 'came': 1.0}
Word element => {'quality': 1.0, 'not': 1.0, 'set': 2.0, 'first': 1.0, 'my': 1.0, 'got': 1.0, 'color': 1.0, 'decided': 1.0, 'that': 1.0, 'second': 1.0, 'price': 1.0, 'so': 1.0, 'easy': 1.0, 'pretty': 1.0, 'did': 1.0, 'and': 4.0, 'crib': 1.0, 'perfect': 1.0, 'this': 3.0, 'she': 1.0, 'it': 8.0, 'looks': 2.0, 'really': 3.0, 'when': 1.0, 'am': 1.0, 'great': 1.0, 'border': 1.0, 'nice': 2.0, 'happy': 2.0, 'weeks': 1.0, 'i': 6.0, 'purple': 1.0, 'options': 1.0, 'white': 1.0, 'have': 1.0, 'born': 1.0, 'for': 2.0, 'fit': 1.0, 'on': 2.0, 'till': 1.0, 'is': 3.0, 'more': 1.0, 'deal': 1.0, 'the': 5.0, 'but': 1.0, 'can': 1.0, 'wait': 1.0, 'room': 1.0, 'as': 1.0, 'to': 2.0, 'was': 3.0, 'see': 1.0, 'three': 2.0, 'since': 1.0, 'black': 2.0, 'her': 3.0, 'in': 2.0, 'match': 1.0, 'with': 4.0, 'pink': 2.0, 'colors': 1.0, 'has': 1.0, 'or': 2.0, 'bedding': 2.0, 't': 1.0, 'a': 2.0, 'we': 1.0}
Word element => {}
Word element => {'accent': 1.0, 'amount': 1.0, 'trim': 1.0, 'pattern': 1.0, 'for': 1.0, 'perfect': 1.0, 'seems': 1.0, 'nice': 1.0, 'really': 2.0, 'is': 3.0, 'mom': 1.0, 'the': 6.0, 'cute': 1.0, 'gift': 1.0, 'a': 2.0, 'pink': 1.0, 'very': 1.0, 'from': 1.0, 'as': 1.0, 'of': 1.0, 'set': 1.0, 'bedding': 1.0, 'and': 2.0, 'couple': 1.0, 'nights': 1.0, 'received': 1.0, 'quality': 1.0, 'put': 1.0, 'my': 2.0, 'ago': 1.0, 'i': 2.0, 'good': 1.0, 'off': 1.0, 'price': 1.0, 'baby': 1.0, 'registry': 1.0, 'this': 1.0, 'it': 2.0, 'on': 1.0, 'crib': 1.0}
Word element => {'girl': 1.0, 'price': 1.0, 'lots': 1.0, 'baby': 1.0, 'you': 1.0, 'a': 1.0, 'for': 1.0, 'patterns': 1.0, 'can': 1.0, 'bedding': 1.0, 'different': 1.0, 'worth': 1.0, 'cute': 1.0, 'very': 1.0, 'of': 1.0, 'it': 1.0, 'with': 1.0, 'not': 1.0, 'put': 1.0, 'quality': 1.0, 'but': 1.0, 'definitely': 1.0, 'great': 1.0, 'the': 1.0}
Word element => {'crib': 1.0, 'white': 1.0, 'easy': 1.0, 'so': 1.0, 'also': 1.0, 'set': 2.0, 'especially': 1.0, 'classic': 1.0, 'cute': 1.0, 'more': 1.0, 'like': 2.0, 'up': 1.0, 'don': 1.0, 'reason': 1.0, 'some': 1.0, 'girl': 1.0, 'baby': 2.0, 'bedding': 1.0, 't': 1.0, 'a': 3.0, 'm': 2.0, 'animations': 1.0, 'had': 1.0, 'embroiderd': 1.0, 'babys': 1.0, 'pooh': 1.0, 'but': 1.0, 'on': 2.0, 'stuff': 3.0, 'put': 1.0, 'walmart': 1.0, 'at': 1.0, 'with': 1.0, 'looks': 1.0, 'it': 8.0, 'perfect': 1.0, 'this': 3.0, 'found': 1.0, 'ordered': 1.0, 'having': 1.0, 'find': 1.0, 'i': 11.0, 'took': 1.0, 'for': 2.0, 'love': 3.0, 'expensive': 1.0, 'print': 1.0, 'online': 1.0, 'amazon': 2.0, 'my': 2.0, 'checked': 1.0, 'of': 3.0, 'immediately': 1.0, 'in': 1.0, 'recently': 1.0, 'mobile': 1.0, 'bought': 2.0, 'received': 1.0, 'when': 3.0, 'fallen': 1.0, 'and': 6.0, 'dora': 1.0, 'me': 1.0, 'singe': 1.0, 'everything': 3.0, 'daughter': 1.0, 'together': 1.0, 'was': 4.0, 'beautiful': 2.0, 'the': 4.0, 'fabric': 1.0, 'about': 1.0, 'that': 1.0, 'off': 1.0, 'forever': 1.0, 'something': 1.0, 'prints': 1.0, 'are': 1.0, 'to': 3.0, 'as': 2.0, 'pretty': 1.0}
Word element => {'done': 1.0, 'almost': 1.0, 'is': 1.0, 'room': 1.0, 'in': 1.0, 'baby': 1.0, 'amazing': 1.0, 'perfect': 1.0, 'i': 1.0, 'about': 1.0, 'price': 1.0, 'love': 1.0, 'everything': 1.0, 'march': 1.0, 'the': 1.0, 'this': 1.0, 'item': 1.0, 'comes': 1.0, 'and': 2.0, 'was': 1.0}
Word element => {'space': 1.0, 'her': 1.0, 'girl': 1.0, 'personal': 1.0, 'makes': 1.0, 'decorate': 1.0, 'to': 1.0, 'a': 3.0, 's': 1.0, 'cute': 1.0, 'everything': 1.0, 'included': 1.0, 'outrageous': 1.0, 'perfect': 1.0, 'decorations': 1.0, 'this': 4.0, 'pink': 1.0, 'with': 2.0, 'it': 2.0, 'crib': 1.0, 'pillows': 1.0, 'matches': 1.0, 'prices': 1.0, 'sets': 1.0, 'set': 3.0, 'of': 1.0, 'was': 1.0, 'beautiful': 1.0, 'great': 1.0, 'the': 2.0, 'diaper': 1.0, 'more': 2.0, 'were': 1.0, 'for': 1.0, 'share': 1.0, 'quality': 1.0, 'but': 1.0, 'and': 7.0, 'similar': 1.0, 'holder': 1.0, 'affordable': 1.0, 'came': 1.0, 'than': 1.0, 'i': 3.0, 'needed': 1.0, 'little': 1.0, 'very': 1.0, 'tiny': 1.0, 'much': 1.0, 'room': 1.0, 'appreciated': 1.0, 'or': 1.0, 'my': 2.0, 'daughter': 1.0, 'anything': 1.0, 'put': 1.0, 'on': 1.0, 'bed': 1.0}
Word element => {'buy': 1.0, 'room': 1.0, 'baby': 1.0, 'our': 1.0, 'makes': 1.0, 'and': 1.0, 'this': 1.0, 'great': 3.0, 'it': 3.0, 'i': 1.0, 'looks': 1.0, 'product': 1.0, 'to': 1.0, 'would': 1.0, 'look': 1.0, 'anybody': 1.0, 'recommend': 1.0}
Word element => {'have': 1.0, 'to': 1.0, 'had': 1.0, 'seen': 1.0, 'time': 1.0, 'in': 1.0, 'set': 1.0, 'that': 1.0, 'beautiful': 1.0, 'i': 2.0, 'ia': 1.0, 'just': 1.0, 'a': 1.0, 'as': 1.0, 'girl': 1.0, 's': 1.0, 'fall': 1.0, 'room': 1.0, 'it': 2.0, 'first': 1.0, 'this': 1.0, 'with': 1.0, 'for': 1.0, 'love': 1.0, 'the': 2.0, 'lovely': 1.0, 'simply': 1.0, 'any': 1.0, 'baby': 1.0, 'colors': 1.0}
Word element => {'thank': 1.0, 'be': 1.0, 'appreciate': 1.0, 'would': 1.0, 'let': 1.0, 'me': 1.0, 'and': 1.0, 'could': 1.0, 'someone': 1.0, 'candy': 1.0, 'the': 1.0, 'room': 1.0, 'baby': 1.0, 'hot': 1.0, 'kenadi': 1.0, 'in': 1.0, 'will': 2.0, 'shade': 2.0, 'a': 1.0, 'see': 1.0, 'know': 2.0, 'need': 1.0, 'nana': 1.0, 'etc': 1.0, 'what': 1.0, 'hoping': 1.0, 'to': 2.0, 'cant': 1.0, 'of': 1.0, 'is': 2.0, 'really': 2.0, 'it': 4.0, 'i': 3.0, 'order': 1.0, 'tell': 1.0, 'if': 3.0, 'reply': 1.0, 'pink': 3.0, 'match': 2.0, 'you': 1.0, 's': 1.0}
Word element => {'too': 1.0, 'person': 1.0, 'in': 1.0, 'even': 1.0, 'girl': 1.0, 'just': 1.0, 'well': 1.0, 'feels': 1.0, 'fabric': 1.0, 'lovely': 1.0, 'baby': 2.0, 'my': 3.0, 'the': 3.0, 'prettier': 1.0, 'nice': 1.0, 'patterns': 1.0, 'got': 1.0, 'everything': 1.0, 'so': 1.0, 'i': 3.0, 'beautiful': 1.0, 'really': 1.0, 'is': 3.0, 'set': 1.0, 'made': 1.0, 'bedding': 1.0, 'from': 1.0, 'shower': 1.0, 'this': 2.0, 'it': 2.0, 'for': 2.0, 'one': 1.0, 'love': 1.0, 'exactly': 1.0, 'aunt': 1.0, 'was': 1.0, 'wanted': 1.0, 'and': 2.0}
Word element => {'size': 1.0, 'item': 1.0, 'would': 1.0, 'wrong': 1.0, 'bedding': 1.0, 'lamp': 2.0, 'was': 3.0, 'clearly': 1.0, 'and': 3.0, 'otem': 1.0, 'the': 6.0, 'recommend': 1.0, 'read': 2.0, 'didnt': 1.0, 'fpr': 1.0, 'thought': 1.0, 'i': 5.0, 'but': 1.0, 'shade': 3.0, 'think': 1.0, 'price': 2.0, 'went': 1.0, 'high': 1.0, 'for': 2.0, 'being': 1.0, 'small': 1.0, 'so': 1.0, 'te': 1.0, 'thught': 1.0, 'this': 1.0, 'n': 1.0, 'with': 1.0, 'it': 5.0, 'io': 1.0}
Word element => {'include': 1.0, 'just': 1.0, 'its': 1.0, 'also': 1.0, 'shade': 2.0, 'does': 1.0, 'your': 1.0, 'note': 1.0, 'crib': 1.0, 'beding': 1.0, 'going': 1.0, 'get': 2.0, 'please': 1.0, 'to': 1.0, 'the': 3.0, 'you': 1.0, 'if': 1.0, 'should': 1.0, 'not': 1.0, 'lamp': 2.0}
Word element => {'played': 1.0, 'lot': 1.0, 'both': 1.0, 'on': 3.0, 'fine': 1.0, 'stayed': 1.0, 'them': 2.0, 'but': 2.0, 'expect': 1.0, 'you': 1.0, 'pool': 1.0, 'big': 1.0, 'they': 2.0, 'these': 2.0, 'the': 2.0, 'were': 1.0, 'she': 1.0, 'month': 1.0, '15': 1.0, 'might': 1.0, 't': 1.0, 'a': 2.0, 'old': 1.0, 'i': 1.0, 'daughter': 2.0, 'bit': 1.0, 'sand': 1.0, 'much': 1.0, 'in': 1.0, 'and': 2.0, 'with': 1.0, 'wearing': 1.0, 'looked': 1.0, 'got': 1.0, 'of': 1.0, 'compliments': 1.0, 'vacation': 1.0, 'how': 1.0, 'cute': 1.0, 'don': 1.0, 'have': 1.0, 'as': 1.0, 'our': 3.0, 'to': 3.0, 'forward': 1.0, 'compare': 1.0, 'fit': 1.0, 'for': 1.0, 'actually': 1.0}
Word element => {'up': 1.0, 'next': 1.0, 'order': 1.0, 'plan': 1.0, 'equipment': 1.0, 'on': 2.0, 'run': 1.0, 'beaches': 1.0, 'with': 2.0, 'use': 1.0, 'stroller': 1.0, 'to': 1.0, 'our': 1.0, 'my': 1.0, '14': 1.0, 'months': 2.0, 'miles': 1.0, 'pools': 1.0, 'was': 1.0, 'now': 1.0, 'playgrounds': 1.0, '18': 1.0, 'shoes': 2.0, 'easily': 1.0, 'when': 1.0, 'i': 2.0, 'old': 1.0, 'these': 2.0, 'the': 6.0, '12': 1.0, 'purchased': 1.0, 'play': 1.0, 'and': 6.0, 'out': 1.0, 'a': 1.0, 'we': 2.0, 'during': 2.0, 'she': 2.0, 'of': 2.0, 'daughter': 1.0, 'water': 4.0, 'they': 1.0, 'size': 2.0, 'slightly': 1.0, 'were': 1.0, 'big': 1.0, 'gotten': 1.0, 'day': 1.0, 'for': 3.0, 'her': 2.0, 'can': 1.0, 'but': 1.0, 'functional': 1.0, 'them': 3.0, 'wore': 1.0, 'every': 1.0, 'beach': 1.0, 'winter': 1.0, 'have': 1.0, 'vacations': 1.0, 'features': 1.0, 'almost': 1.0, 'summer': 1.0, 'at': 2.0, 'lot': 1.0, 'keep': 1.0, 'in': 2.0}
Word element => {'colors': 1.0, 'they': 1.0, 'flexible': 1.0, 'more': 1.0, 'the': 1.0, 'woudl': 1.0, 'on': 1.0, 'with': 1.0, 'though': 1.0, 'room': 1.0, 'for': 1.0, 'and': 2.0, 'seemed': 1.0, 'nice': 1.0, 'slide': 1.0, 'shoes': 1.0, 'perfect': 1.0, 'but': 1.0, 'even': 1.0, 'had': 1.0, 'to': 1.0, 'be': 1.0, 'wish': 1.0, 'water': 1.0, 'fine': 1.0, 'true': 1.0, 'toddlers': 1.0, 'right': 1.0, 'size': 1.0}
Word element => {'to': 1.0, 'recommend': 1.0, 'won': 1.0, 's': 1.0, 'it': 1.0, 'beach': 1.0, 'a': 1.0, 'bought': 1.0, 'broken': 1.0, 'my': 1.0, 't': 1.0, 'certainly': 1.0, 'this': 2.0, 'for': 1.0, 'maui': 1.0, 'i': 2.0, 'one': 1.0, 'others': 1.0, 'son': 1.0, 'time': 1.0, 'at': 1.0, 'after': 1.0, 'use': 1.0}
Word element => {'product': 1.0, 'then': 1.0, 'other': 1.0, 'where': 1.0, 'daughter': 1.0, 'wish': 1.0, 'like': 1.0, 'could': 1.0, 'so': 2.0, 'my': 1.0, 'the': 4.0, 'and': 1.0, 'with': 1.0, 'only': 1.0, 'this': 2.0, 'does': 1.0, 'whole': 1.0, 'i': 4.0, 'lot': 1.0, 'see': 1.0, 'black': 2.0, 'a': 1.0, 'ends': 1.0, 'piece': 1.0, 'love': 1.0, 'can': 1.0, 'but': 1.0, 'fabric': 2.0, 'thing': 2.0, 'change': 1.0, 'is': 1.0, 'that': 2.0, 'you': 2.0, 'cover': 1.0}
Word element => {'have': 1.0, 'saw': 1.0, 'complaints': 2.0, 'no': 1.0, 'some': 1.0, 'regarless': 1.0, 'so': 1.0, 'order': 1.0, 'wal': 1.0, 'about': 1.0, 'com': 1.0, 'reviews': 1.0, 'well': 1.0, 'mart': 1.0, 'purchase': 1.0, 'to': 3.0, 'here': 1.0, 'whether': 1.0, 'the': 2.0, 'made': 1.0, 'not': 1.0, 'together': 1.0, 'or': 1.0, 'i': 5.0, 'mobile': 2.0, 'am': 1.0, 'on': 3.0, 'is': 2.0, 'read': 1.0, 'easy': 1.0, 'debated': 1.0, 'that': 2.0, 'far': 1.0, 'glad': 1.0, 'but': 1.0, 'put': 1.0, 'did': 1.0, 'this': 1.0, 'it': 2.0, 'chose': 1.0, 'and': 3.0, 'of': 2.0, 'fairly': 1.0}
Word element => {'days': 1.0, 'three': 1.0, 'well': 1.0, 'speed': 1.0, 'vibrant': 1.0, 'put': 1.0, 'colors': 1.0, 'were': 1.0, 'and': 1.0, 'versus': 1.0, 'it': 1.0, 'great': 1.0, 'together': 1.0, 'was': 1.0, 'to': 1.0, 'mobile': 1.0, 'beautiful': 1.0, 'easy': 1.0, 'cheaper': 1.0, 'on': 1.0, 'amazon': 1.0, 'places': 1.0, 'other': 1.0, 'who': 1.0, 'carry': 1.0, 'as': 1.0, 'very': 1.0, 'shipping': 1.0}
Word element => {'to': 1.0, 'size': 1.0, 'a': 1.0, 'set': 1.0, 'bedding': 1.0, 'with': 1.0, 'well': 1.0, 'went': 1.0, 'it': 2.0, 'i': 2.0, 'nice': 1.0, 'ok': 1.0, 'price': 1.0, 'did': 1.0, 'item': 1.0, 'the': 2.0, 'big': 1.0, 'recommend': 1.0, 'wasnt': 1.0, 'like': 1.0, 'and': 2.0, 'would': 1.0, 'was': 2.0}
Word element => {'easy': 1.0, 'to': 1.0, 'was': 1.0, 'actually': 1.0, 'the': 3.0, 'my': 2.0, 'while': 1.0, 'especially': 1.0, 'i': 1.0, 'satisfied': 1.0, 'daughters': 1.0, 'crib': 2.0, 'love': 5.0, 'for': 2.0, 'up': 1.0, 'set': 2.0, 'bought': 2.0, 'and': 2.0, 'mobile': 1.0, 'so': 1.0, 'soooooooo': 1.0, 'this': 1.0, 'it': 2.0, 'with': 1.0, 'pretty': 1.0, 'looks': 1.0, 'really': 1.0, 'purchase': 1.0, 'price': 1.0}
Word element => {'together': 1.0, 'pretty': 1.0, 'set': 1.0, 'the': 3.0, 'musical': 1.0, 'and': 2.0, 'baby': 1.0, 'bought': 1.0, 'so': 1.0, 'looks': 1.0, 'mobile': 1.0, 'whole': 1.0, 'loves': 1.0, 'great': 1.0, 'works': 1.0, 'it': 2.0, 'i': 1.0}
Word element => {'worth': 1.0, 'cute': 1.0, 'super': 1.0, 'is': 1.0, 'way': 1.0, 'it': 3.0, 'the': 2.0, 'you': 1.0, 'still': 1.0, 'music': 1.0, 'but': 1.0, 'all': 1.0, 'even': 1.0, 'doesn': 1.0, 't': 1.0, 'long': 1.0, 'last': 1.0, 'when': 1.0, 'and': 1.0, 'up': 1.0, 'very': 1.0, 'wind': 1.0}
Word element => {'have': 1.0, 'app': 1.0, 'room': 1.0, 'in': 2.0, 'everything': 1.0, 'her': 1.0, 'matched': 1.0, 'the': 2.0, 'bump': 1.0, 'definitely': 2.0, 'decent': 1.0, 'at': 1.0, 'worth': 1.0, 'absolutely': 1.0, 'nursery': 1.0, 'recommend': 1.0, 'girls': 1.0, 'i': 5.0, 'price': 1.0, 'baby': 2.0, 'my': 1.0, 'love': 1.0, 'for': 3.0, 'crib': 1.0, 'it': 3.0, 'n': 2.0, 'this': 2.0, 'saw': 1.0, 'orderdd': 1.0, 'different': 1.0, 'bedding': 2.0, 'its': 1.0, 'was': 1.0, 'set': 2.0, 'until': 1.0, 'a': 2.0, 'several': 1.0, '13pcs': 1.0, 'on': 1.0, 'months': 1.0}
Word element => {'dusts': 1.0, 'just': 1.0, 'are': 1.0, 'with': 1.0, 'much': 1.0, 'learn': 1.0, 'body': 1.0, 'my': 2.0, 'now': 1.0, 'to': 2.0, 'hoping': 1.0, 'times': 1.0, 'a': 1.0, 'make': 1.0, 'the': 1.0, 'more': 1.0, 'am': 1.0, 'small': 1.0, 'so': 2.0, 'them': 3.0, 'breasted': 1.0, 'flexishields': 1.0, 'respond': 1.0, 'have': 1.0, 'collecting': 1.0, 'always': 1.0, 'were': 1.0, 'sessions': 1.0, 'thought': 1.0, 'will': 1.0, 'trouble': 1.0, 'but': 2.0, 'and': 2.0, 'me': 1.0, 'used': 1.0, 'even': 1.0, 'worse': 1.0, 'i': 4.0, 'pumping': 2.0, 'could': 1.0, 'few': 1.0, 'help': 1.0, 'they': 2.0, 'hurt': 1.0, 'itch': 1.0}
Word element => {'hazard': 1.0, 'health': 1.0, 'a': 1.0, 't': 1.0, 'wasn': 1.0, 'better': 1.0, 'if': 1.0, 'help': 1.0, 'was': 2.0, 'would': 2.0, 'drain': 1.0, 'flanges': 1.0, 'it': 7.0, 'this': 2.0, 'i': 5.0, 'bought': 1.0, 'attachment': 1.0, 'am': 1.0, 'pump': 1.0, 'much': 1.0, 'continue': 1.0, 'fit': 1.0, 'for': 2.0, 'comfortable': 1.0, 'using': 1.0, 'very': 1.0, 'to': 2.0, 'as': 2.0, 'busted': 1.0, 'did': 1.0, 'getting': 1.0, 'my': 2.0, 'however': 1.0, 'pumping': 3.0, 'reduces': 1.0, 'suction': 1.0, 'thusly': 1.0, 'output': 1.0, 'half': 1.0, 'and': 4.0, 'greatly': 1.0, 'milk': 1.0, 'take': 1.0, 'off': 1.0, 'the': 3.0, 'without': 1.0, 'had': 1.0, 'thought': 1.0, 'breasts': 1.0, 'small': 1.0, 'have': 1.0, 'returned': 1.0}
Word element => {'returned': 1.0, 'separately': 1.0, 's': 1.0, 'like': 1.0, 'it': 2.0, 'only': 1.0, 'as': 2.0, 'reading': 1.0, 'of': 2.0, '1': 1.0, 'selling': 1.0, 'got': 1.0, 'instead': 1.0, 'shoes': 1.0, 'that': 1.0, 'i': 4.0, 'made': 1.0, '2': 1.0, 'the': 2.0, 'so': 1.0, 'not': 1.0, 'reviews': 1.0, 'before': 1.0, 'mistake': 1.0, 'ordered': 1.0, 'soon': 1.0}
Word element => {'with': 1.0, 'olive': 1.0, 'instead': 1.0, 'lanolin': 1.0, 'of': 1.0, 'some': 1.0, 'using': 1.0, 'comfortable': 1.0, 'oil': 1.0, 'i': 2.0, 'feel': 1.0, 'did': 1.0, 'this': 2.0, 'pump': 1.0, 'need': 1.0, 'product': 1.0, 'flange': 1.0, 'cream': 1.0, 'for': 1.0, 'reducing': 1.0, 'my': 1.0, 'more': 1.0}
Word element => {'from': 1.0, 'separately': 1.0, 'it': 1.0, 'buy': 1.0, 'can': 1.0, 'shaped': 1.0, 'petal': 1.0, 'avent': 2.0, 'luck': 1.0, 'better': 1.0, 'have': 1.0, 'll': 1.0, 'you': 2.0, 'areola': 1.0, 'shield': 1.0, 'there': 1.0, 'over': 1.0, 'on': 3.0, 'yet': 1.0, 'shields': 1.0, 'stub': 1.0, 'such': 1.0, 'a': 2.0, 't': 1.0, 'are': 1.0, 'design': 1.0, 'is': 3.0, 'flexishield': 1.0, 'horns': 1.0, 'thick': 1.0, 'terrible': 1.0, 'silicone': 1.0, 'didn': 1.0, 'effect': 1.0, 'supposed': 1.0, 'fit': 1.0, 'provided': 1.0, 'this': 1.0, 'the': 14.0, 'prevents': 1.0, 'long': 1.0, 'complete': 1.0, 'stuck': 1.0, 'in': 1.0, 'with': 1.0, 'piece': 3.0, 'fitting': 1.0, 'of': 3.0, 'inserting': 1.0, 'massager': 1.0, 'that': 2.0, 'into': 1.0, 'much': 1.0, 'circumference': 1.0, 'horn': 2.0, 'edge': 1.0, 'produce': 1.0, 'too': 1.0, 'and': 1.0, 'pump': 1.0, 'get': 1.0, 'ridges': 1.0, 'insertion': 1.0, 'just': 1.0, 'circular': 1.0, 'massaging': 1.0, 'to': 1.0, 'any': 1.0}
Word element => {'expensive': 1.0, 'left': 1.0, 'almost': 1.0, 'never': 2.0, 'in': 1.0, 'keeps': 1.0, 'positives': 1.0, 'hours': 2.0, 'keep': 1.0, 'two': 1.0, 'feature': 1.0, 'reviewer': 1.0, 'lid': 1.0, 'funk': 1.0, 'son': 1.0, 'gets': 2.0, 'toddler': 1.0, 'year': 1.0, 'sturdy': 2.0, 'very': 2.0, 'half': 1.0, 'i': 4.0, 'well': 1.0, 'for': 4.0, 'item': 1.0, 'rubbed': 1.0, 'also': 1.0, 'been': 1.0, 'into': 1.0, 'give': 1.0, 'my': 2.0, 'me': 1.0, 'not': 1.0, 'using': 1.0, 'reason': 1.0, 'interested': 1.0, 'mine': 1.0, 'concrete': 1.0, 'pops': 1.0, 'design': 1.0, 'use': 1.0, 'cold': 2.0, 'everyday': 1.0, '5': 2.0, 'drinks': 2.0, 'is': 5.0, 'thermos': 1.0, 'comes': 1.0, 'said': 1.0, 'old': 1.0, 'picture': 3.0, 't': 1.0, 'rubs': 2.0, 'a': 5.0, 'will': 1.0, 'could': 1.0, 'it': 9.0, 'month': 1.0, 'this': 2.0, 'only': 1.0, 'with': 2.0, 'to': 4.0, 'other': 2.0, 'all': 1.0, 'cup': 1.0, 'closed': 1.0, 'cups': 1.0, 'off': 4.0, 'after': 1.0, 'don': 1.0, 'about': 1.0, 'no': 1.0, 'and': 4.0, 'the': 7.0, 'of': 6.0, 'out': 4.0, 'opennegatives': 1.0, 'couple': 1.0, 'day': 1.0, 'dropped': 1.0, 'on': 2.0, 'happens': 1.0, 'tile': 1.0, 'worst': 1.0, 'if': 3.0, 'apart': 1.0, 'open': 1.0, 'snaps': 1.0, 'making': 1.0, 'back': 1.0, 'liquid': 1.0, 'that': 4.0, 'easily': 1.0, 'because': 2.0, 'stars': 1.0, 'start': 1.0, 'straw': 1.0, 'juice': 1.0, 'pieces': 1.0, 'agree': 1.0, 'throw': 1.0, 'easy': 2.0, 'leaks': 2.0, 'clean': 3.0, 'thoroughly': 1.0, 'have': 1.0, 'had': 1.0, 'ice': 1.0, 'favorite': 1.0, 'sippy': 2.0, 'cars': 1.0, 'has': 2.0, 'them': 1.0, 'insulated': 1.0, 'who': 1.0, 'cubes': 1.0}
Word element => {'again': 1.0, 'hesitant': 1.0, 'my': 1.0, 'pink': 1.0, 'received': 1.0, 'i': 2.0, 'but': 2.0, 'pro': 1.0, 'a': 3.0, 'which': 1.0, 'call': 1.0, 'be': 1.0, 'to': 3.0, 'm': 1.0, 'challenging': 1.0, 'able': 1.0, 'would': 1.0, 'refund': 1.0, 'and': 1.0, 'like': 1.0, 'the': 2.0, 'newborn': 1.0, 'company': 1.0, 'really': 1.0, 'is': 2.0, 'order': 2.0, 'it': 1.0, 'baby': 1.0, 'colors': 1.0, 'quickly': 1.0, 'you': 1.0, 'while': 1.0, 'issued': 1.0, 'ship': 1.0, 'for': 3.0, 'caring': 1.0, 'con': 1.0, 'boy': 1.0, 'they': 2.0}
Word element => {'recommend': 1.0, 'because': 1.0, 'newer': 1.0, 'usually': 1.0, 'like': 1.0, 'cheapers': 1.0, 'input': 1.0, 'thanks': 1.0, 'said': 1.0, 'basically': 1.0, 'snap': 2.0, 'most': 1.0, 'mentioning': 1.0, 'company': 1.0, 'wrote': 1.0, 'sticking': 1.0, 'got': 1.0, 'covers': 2.0, 'go': 2.0, '2012': 1.0, 'also': 1.0, 'leaks': 1.0, 'no': 3.0, 'intention': 1.0, 'well': 1.0, 'bottom': 1.0, 'tired': 1.0, 's': 1.0, 'continue': 1.0, 'replacing': 1.0, 'rep': 1.0, 'wear': 1.0, 'weehugger': 1.0, 'shells': 1.0, 'works': 1.0, 'biodegradeable': 1.0, 'turns': 1.0, 'easier': 1.0, 'shell': 2.0, 'flip': 7.0, 'really': 1.0, 'pocket': 1.0, 'so': 4.0, 'very': 1.0, 'bibs': 1.0, 'buy': 2.0, 'other': 1.0, 'ruin': 1.0, 'any': 1.0, 'still': 3.0, 'june': 1.0, 'gbaby': 1.0, 'number': 1.0, 'decide': 1.0, 'all': 2.0, 'family': 1.0, 'best': 1.0, 'reccommend': 1.0, 'extra': 1.0, 'barely': 1.0, 'toddler': 3.0, 'child': 1.0, 'for': 6.0, 'harder': 1.0, 'trash': 1.0, 'making': 1.0, 'reuse': 1.0, 'aren': 1.0, 'pick': 1.0, 'environment': 1.0, 'harmlesss': 1.0, 'rarely': 1.0, 'biodegradeables': 1.0, 'has': 2.0, 'non': 1.0, 'in': 4.0, 'change': 1.0, 'wash': 1.0, 'matter': 1.0, 'than': 2.0, 'healthy': 1.0, 'but': 7.0, 'diapers': 3.0, 'plus': 2.0, 'first': 2.0, 'cute': 1.0, 'healthier': 1.0, 'or': 3.0, 'once': 1.0, 'little': 2.0, 'her': 1.0, 'mom': 1.0, 'options': 1.0, 'name': 1.0, 'on': 5.0, 'see': 1.0, 'off': 1.0, 'outer': 1.0, 'biodegrade': 1.0, 'past': 1.0, 'will': 4.0, 'here': 1.0, 'up': 1.0, 'diaper': 9.0, 'bum': 1.0, 'diapering': 1.0, 'experienced': 1.0, 'as': 7.0, 'hands': 1.0, 'happened': 1.0, 'been': 1.0, 'amazon': 1.0, 'adding': 2.0, 'lowers': 1.0, 'sometines': 1.0, 'the': 38.0, 'have': 9.0, 'used': 2.0, 'since': 1.0, '1': 1.0, 'every': 2.0, 'notice': 1.0, 'course': 1.0, 'great': 1.0, 'if': 3.0, 'overfull': 1.0, 'system': 1.0, 'do': 2.0, 'much': 2.0, 'only': 3.0, 'price': 3.0, 'try': 1.0, 'rolling': 1.0, 'run': 1.0, 'brands': 2.0, 'even': 1.0, 'of': 8.0, 'old': 1.0, 'fact': 1.0, 'bet': 1.0, 'least': 1.0, 'curious': 1.0, 'this': 4.0, 'gdiapers': 4.0, 'they': 6.0, 'let': 1.0, 'time': 1.0, 'did': 2.0, 'kind': 1.0, 'insert': 1.0, 'there': 3.0, 'huggies': 1.0, 'positives': 1.0, 'staining': 1.0, 'skin': 2.0, 'an': 2.0, 'disposable': 3.0, 'eight': 1.0, 'are': 7.0, 'my': 1.0, 'you': 5.0, 'everytime': 1.0, 'economic': 1.0, '9': 1.0, 'am': 1.0, '14': 1.0, 'some': 1.0, 'disposables': 2.0, 'i': 16.0, 'green': 1.0, 'velcro': 5.0, 'kid': 1.0, 'youngest': 1.0, 'couple': 1.0, 'me': 1.0, 'daycare': 1.0, 'was': 3.0, 'flush': 1.0, 'clothes': 2.0, 'update': 2.0, 'months': 4.0, 'say': 1.0, '2010': 1.0, 'liner': 3.0, 'can': 1.0, 'is': 4.0, 'look': 1.0, 'at': 2.0, 'simply': 2.0, 'never': 2.0, 'take': 1.0, 'we': 13.0, 'your': 1.0, 'rash': 3.0, 'many': 1.0, 'ended': 1.0, 'she': 2.0, 'baby': 3.0, 'deal': 1.0, 'compost': 1.0, 'a': 18.0, 'that': 5.0, 'with': 11.0, 'using': 5.0, 'own': 1.0, 'be': 3.0, 'it': 3.0, 'remove': 1.0, 'their': 1.0, 'rinse': 1.0, 'tushies': 1.0, 'babies': 1.0, 'work': 3.0, 'wets': 1.0, 'frequent': 1.0, 'few': 2.0, 'times': 1.0, 'test': 1.0, '40': 1.0, 'wearing': 1.0, 'loads': 1.0, 'house': 1.0, 'version': 1.0, 'isn': 1.0, 'friends': 1.0, 't': 3.0, 'these': 2.0, 'further': 1.0, 'stinkin': 1.0, 'big': 1.0, 'tried': 1.0, 'and': 10.0, 'just': 2.0, 'wipe': 1.0, 'out': 5.0, 'laundering': 1.0, 'involved': 1.0, 'full': 1.0, 'gdiaper': 9.0, 'perfect': 1.0, 'more': 3.0, 'wouldn': 1.0, 'correctly': 1.0, '8': 1.0, 'poop': 1.0, 'to': 16.0, 'occasions': 1.0, 'happens': 1.0, '2': 1.0, 'cloth': 1.0, 'available': 1.0, 'liking': 1.0, 'clean': 2.0, 'reason': 1.0, 'inserts': 6.0, 'use': 2.0, 'especially': 1.0, 'back': 2.0, 'active': 1.0, 'now': 2.0, 'problem': 1.0, 'washable': 1.0, 'thus': 1.0, 'stick': 1.0, 'far': 3.0, 'love': 2.0, 'everything': 1.0, 'totally': 1.0, 'them': 6.0, 'regular': 1.0, 'leaking': 1.0, 'stay': 1.0, 'which': 1.0, 'entirely': 1.0, 'bought': 1.0, 'better': 2.0, 'onto': 1.0, 'our': 2.0, 'not': 3.0, 'landfills': 1.0, 'subscription': 1.0, 'option': 2.0, 'about': 2.0, 'brand': 1.0, 'case': 1.0, '4': 1.0, 'too': 1.0, '3': 1.0, 'seems': 1.0, 'weeks': 1.0, 'free': 2.0, 'however': 2.0, 'often': 3.0, 'get': 1.0, 'shipping': 1.0, 'paying': 1.0}
Word element => {'say': 1.0, 'later': 1.0, 'two': 1.0, 'steps': 1.0, 'own': 2.0, 'day': 1.0, 'son': 1.0, 'is': 3.0, 'took': 1.0, 'i': 2.0, 'old': 1.0, 'product': 1.0, 'now': 1.0, 'was': 1.0, 'to': 1.0, 'amazing': 1.0, 'month': 1.0, 'running': 1.0, 'my': 1.0, 'can': 1.0, 'item': 1.0, 'wonderful': 1.0, 'the': 3.0, 't': 1.0, 'all': 1.0, 'have': 1.0, 'walking': 1.0, 'walk': 1.0, 'on': 3.0, 'process': 1.0, 'weeks': 1.0, 'but': 1.0, 'didn': 1.0, '10': 1.0, 'guts': 1.0, 'first': 2.0, 'this': 2.0, 'he': 3.0, 'used': 1.0, 'his': 3.0}
Word element => {'seated': 1.0, 'away': 1.0, 'and': 2.0, 'gave': 1.0, 'meal': 1.0, 'by': 1.0, 'when': 2.0, 'since': 1.0, 'law': 1.0, 'pulled': 1.0, 'a': 1.0, 'ago': 1.0, 'my': 5.0, 'old': 2.0, 'was': 3.0, 'to': 1.0, 'had': 1.0, 'introduced': 1.0, 'recently': 1.0, 'entire': 1.0, 'bought': 1.0, 'one': 2.0, 'cooshee': 2.0, 'daughter': 2.0, 'booster': 2.0, 'no': 1.0, 'years': 1.0, 'in': 1.0, 'sister': 3.0, 'only': 1.0, 'her': 3.0, 'over': 1.0, 'the': 2.0, '2': 1.0, 'out': 1.0, 'i': 6.0, 'stated': 2.0, 'there': 1.0, 'way': 1.0, 'niece': 1.0, 'new': 1.0, 'would': 2.0, 'use': 1.0, 'year': 1.0, 'down': 1.0, 'stand': 1.0, 'eat': 1.0, 'sat': 1.0, 'fascinated': 1.0, 'it': 1.0, 'she': 2.0}
Word element => {'amazon': 1.0, 'good': 1.0, 'way': 1.0, 'other': 1.0, 'last': 1.0, 'another': 1.0, 'a': 1.0, 'grandchildren': 2.0, 'should': 1.0, 'come': 1.0, 'premium': 1.0, 'product': 1.0, 'as': 1.0, 'and': 2.0, 'our': 2.0, 'by': 1.0, 'experience': 1.0, 'years': 1.0, 'enjoyed': 1.0, 'appears': 1.0, 'safe': 1.0}
Word element => {'painted': 1.0, 'was': 1.0, 'both': 1.0, 'far': 1.0, 'so': 1.0, 'at': 1.0, 'two': 1.0, 'i': 1.0, 'reported': 2.0, 'family': 1.0, 'another': 1.0, 'reviewer': 2.0, 'taken': 1.0, 'chairs': 3.0, 'problem': 1.0, 'rather': 1.0, 'now': 1.0, 'easy': 1.0, 'happy': 1.0, 'entirely': 1.0, 'vacations': 1.0, 'have': 4.0, 'and': 4.0, 'is': 2.0, 'babysmart': 1.0, 'with': 4.0, 'new': 1.0, 've': 2.0, 'slipping': 1.0, 'also': 1.0, 'seems': 1.0, 'for': 1.0, 'stays': 1.0, 'comfortable': 1.0, 'believe': 1.0, 'the': 6.0, 'well': 1.0, 'no': 2.0, 'about': 1.0, 'as': 1.0, 'seat': 4.0, 'to': 2.0, 'our': 1.0, 'any': 1.0, 'fabric': 2.0, 'clean': 1.0, 'that': 1.0, 'been': 1.0, 'one': 1.0, 'cooshee': 1.0, 'nor': 1.0, 'she': 1.0, 'it': 6.0, 'month': 1.0, 'classic': 1.0, 'home': 1.0, 'travels': 1.0, 'had': 3.0, 'reports': 1.0, 'cracking': 1.0, 'from': 2.0, 'year': 1.0, 'put': 1.0, 'on': 3.0, '3': 1.0, 'removing': 2.0, 'problems': 1.0, 'old': 1.0, 'are': 1.0, 'times': 1.0, 'finish': 2.0, 'again': 1.0, 'we': 5.0, 'a': 1.0, 's': 1.0, 'which': 1.0, 'like': 1.0, 'not': 1.0, 'material': 1.0, 'or': 1.0, 'ripping': 1.0, 'issues': 1.0, 'though': 1.0}
Word element => {'ask': 1.0, 'you': 1.0, 'they': 2.0, 'slid': 1.0, 'and': 5.0, 'buckles': 1.0, 'worth': 1.0, 'all': 1.0, 'straps': 1.0, 'sit': 1.0, 'plastic': 1.0, 'looking': 1.0, 'happily': 1.0, 'past': 1.0, 'can': 1.0, 'kids': 1.0, 'this': 1.0, 'with': 1.0, 'the': 3.0, 'these': 1.0, 'booster': 1.0, 'more': 2.0, 'is': 1.0, 'really': 1.0, 'everything': 1.0, 'two': 1.0, 'i': 2.0, 'was': 1.0, 'in': 2.0, 'for': 2.0, 'comfortable': 1.0, 'on': 1.0, 'cooshees': 1.0, 'chairs': 1.0, 'were': 2.0, 'of': 2.0, 'we': 1.0, 'a': 1.0, 'hassle': 1.0, 'boosters': 1.0, 'wooden': 1.0, 'than': 1.0, 'bought': 1.0, 'my': 1.0, 'are': 1.0, 'them': 1.0, 'had': 1.0, 'purchased': 1.0, 'what': 1.0}
Word element => {'free': 1.0, 'lionheart': 1.0, 'back': 1.0, 'them': 1.0, 'sent': 1.0, 'a': 1.0, 'anything': 1.0, 'damage': 1.0, 'child': 1.0, 'my': 1.0, 'putting': 1.0, 'leary': 1.0, 'coming': 1.0, 'upon': 1.0, 'keeps': 1.0, 'in': 1.0, 'also': 1.0, 'into': 1.0, 'that': 1.0, 'plastic': 1.0, 'the': 8.0, 'great': 1.0, 'damaged': 1.0, 'i': 5.0, 'from': 1.0, 'bags': 1.0, 'this': 2.0, 'with': 2.0, 'rubbing': 1.0, 'bag': 1.0, 'suggestion': 1.0, 'no': 1.0, 'time': 1.0, 'strong': 1.0, '3': 1.0, 'prince': 1.0, 'comes': 1.0, 'was': 2.0, 'all': 1.0, 'to': 1.0, 'each': 2.0, 'and': 3.0, 'chemical': 2.0, 'such': 1.0, 'melting': 1.0, 'arrived': 1.0, 'by': 1.0, 'am': 1.0, 'times': 1.0, 'when': 1.0, 'manufactuer': 1.0, 'it': 2.0, 'remove': 1.0, 'alcohol': 1.0, 'product': 1.0, 'for': 1.0, 'onto': 1.0, 'price': 1.0, 'want': 1.0, 'undamaged': 1.0, 'opened': 1.0, 'of': 2.0, 'arrival': 1.0, 'chair': 5.0, 'there': 1.0, 'ordered': 2.0, 'overwhelming': 1.0, 'an': 2.0, 'smell': 3.0}
Word element => {'again': 1.0, 'buy': 1.0, 'would': 1.0, 'couple': 1.0, 'years': 1.0, 'for': 1.0, 'this': 1.0, 'using': 1.0, 'the': 1.0, 'booster': 1.0, 'him': 1.0, 'can': 1.0, 'of': 1.0, 'seat': 1.0, 'next': 1.0, 'is': 1.0, 'soft': 1.0, 'and': 1.0, 'see': 1.0, 'easy': 1.0, 'to': 1.0, 'clean': 1.0, 'i': 2.0}
Word element => {'well': 1.0, 'unlike': 1.0, 'from': 1.0, 'who': 2.0, 'good': 1.0, 'be': 3.0, 'my': 1.0, 'may': 1.0, 'booster': 4.0, 'knew': 1.0, 'already': 1.0, 'some': 1.0, 'these': 1.0, 'of': 1.0, 'though': 1.0, 'again': 1.0, 'using': 2.0, 'up': 1.0, 'ended': 1.0, 'a': 5.0, 'the': 3.0, 'replace': 1.0, 'first': 1.0, 'heavy': 1.0, 'have': 1.0, 'they': 2.0, 'as': 3.0, 'seat': 1.0, 'to': 6.0, 'was': 2.0, 'old': 1.0, 'on': 3.0, 'year': 1.0, 'very': 1.0, 'even': 1.0, 'olds': 1.0, 'i': 3.0, 'two': 2.0, 'carry': 1.0, 'used': 2.0, '18': 1.0, 'regular': 2.0, 'comfortable': 1.0, 'for': 3.0, 'with': 1.0, 'kids': 3.0, 'this': 2.0, 'it': 4.0, 'and': 1.0, 'sit': 2.0, 'cushion': 5.0, 'not': 1.0, 'give': 1.0, 'bottom': 1.0, 'themselves': 1.0, 'boost': 1.0, 'time': 1.0, 'so': 2.0, 'months': 1.0, 'one': 2.0, 'bought': 2.0, 'will': 1.0, 'seems': 1.0, 'also': 1.0, 'ideal': 1.0, 'compare': 1.0, 'can': 1.0, 'four': 1.0, 'but': 1.0, 'them': 2.0, 'is': 2.0, 'around': 1.0}
Word element => {'the': 1.0, 'or': 1.0, 'in': 1.0, 'old': 1.0, 'be': 2.0, 'needs': 1.0, 'do': 1.0, 'great': 1.0, 'until': 1.0, 'capable': 1.0, 'they': 3.0, 'know': 1.0, 'never': 1.0, 'reported': 1.0, 'it': 2.0, 'out': 2.0, 'bite': 1.0, 'take': 1.0, 'outgrown': 1.0, 'you': 1.0, 'easily': 2.0, 'kid': 1.0, 'how': 1.0, 'see': 1.0, 'i': 1.0, 'solid': 1.0, 'very': 1.0, 'have': 3.0, 'child': 1.0, 'anyway': 1.0, 'are': 2.0, 'strapping': 1.0, 'temporary': 1.0, 'sliding': 1.0, 'and': 3.0, 'damaged': 1.0, 'chairs': 2.0, 'enough': 1.0, 'off': 1.0, 'at': 1.0, 'what': 1.0, 'reports': 1.0, 'no': 1.0, 'not': 4.0, 'because': 1.0, 'concerned': 1.0, 'clean': 1.0, 'with': 2.0, 'of': 7.0, 'damaging': 1.0, 'after': 2.0, 'nec': 1.0, 'use': 1.0, 'finishes': 1.0, 'been': 1.0, 'kitchen': 1.0, 'highchair': 1.0, 'for': 1.0, 'cheap': 1.0, 'my': 2.0, 'could': 1.0, 'a': 3.0, 'just': 1.0, 'few': 1.0, 'weeks': 1.0, 'this': 1.0, 'kids': 1.0, 'dont': 1.0, 'soft': 1.0, 'get': 1.0, 'kind': 1.0, 'easy': 1.0, 'as': 1.0, 'all': 1.0, 'seat': 1.0, 'to': 6.0, 'however': 1.0, 'move': 1.0, 'your': 1.0, 'furniture': 1.0, 'on': 1.0, 'sticks': 1.0, 'strapped': 1.0, 'instead': 1.0, 'chair': 1.0, 'fall': 1.0, 'is': 2.0, 'around': 1.0, 'seems': 1.0}
Word element => {'years': 1.0, 'many': 1.0, 'used': 1.0, 'see': 1.0, 'toddler': 1.0, 'of': 1.0, 'lot': 1.0, 'drama': 1.0, 'eleviated': 1.0, 'has': 1.0, 'own': 1.0, 'so': 1.0, 'being': 2.0, 'about': 1.0, 'out': 2.0, 'eating': 2.0, 'daughter': 2.0, 'when': 2.0, 'doesn': 1.0, 'house': 1.0, 'and': 2.0, 'perfectly': 1.0, 'zippered': 1.0, 'my': 2.0, 'old': 1.0, 'color': 1.0, 'bought': 1.0, 'the': 2.0, 'kids': 1.0, 'this': 2.0, 'it': 1.0, 'with': 1.0, 'matches': 1.0, 'bringing': 1.0, 'look': 1.0, 'particular': 1.0, 'tacky': 1.0, 'seat': 2.0, 'our': 2.0, 'to': 2.0, 'i': 2.0, '4': 1.0, 'most': 1.0, 'use': 2.0, 'for': 2.0, 'almost': 1.0, 'year': 1.0, 'very': 2.0, 'things': 1.0, 'in': 1.0, 'neon': 1.0, 'colors': 1.0, 'practical': 1.0, 'easy': 1.0, 'clean': 3.0, 't': 1.0, 's': 1.0, 'a': 2.0, 'even': 1.0, 'handled': 1.0, 'comes': 1.0, 'is': 2.0, 'bag': 1.0, 'like': 1.0, 'which': 1.0, 'nice': 1.0}
Word element => {'or': 1.0, 'chair': 1.0, 'anyones': 1.0, 'fits': 1.0, 'size': 1.0, 'terrific': 1.0, 'few': 1.0, 'new': 1.0, 'look': 1.0, 'swipes': 1.0, 'made': 1.0, 'be': 1.0, 'that': 1.0, 'about': 1.0, 'thing': 1.0, 'nice': 1.0, 'great': 1.0, 'colors': 1.0, 'friendly': 1.0, 'kid': 1.0, 'and': 3.0, 'mesh': 1.0, 'don': 1.0, 'very': 1.0, 'best': 1.0, 'booth': 1.0, 'as': 2.0, 'to': 5.0, 'take': 1.0, 'it': 10.0, 'convenient': 1.0, 'with': 3.0, 'since': 1.0, 'toddlers': 1.0, 'can': 2.0, 'more': 1.0, 'comes': 2.0, 'is': 3.0, 'leave': 1.0, 'one': 3.0, 'restaurant': 1.0, 'product': 1.0, 'for': 1.0, 'love': 1.0, 'in': 2.0, 'seems': 1.0, 'of': 1.0, 'on': 1.0, 'washed': 1.0, 'portable': 1.0, 'bag': 1.0, 'anywhere': 2.0, 'the': 1.0, 'booster': 1.0, 'chairs': 1.0, 'ever': 1.0, 'a': 3.0, 'go': 1.0, 't': 1.0, 's': 2.0, 'so': 2.0, 'friends': 1.0, 'grammas': 1.0, 'last': 1.0, 'house': 1.0, 'forever': 1.0, 'long': 1.0, 'forget': 1.0, 'idea': 1.0, 'you': 4.0, 'when': 1.0, 'this': 2.0, 'kids': 1.0, 'comfy': 1.0}
Word element => {'birthday': 1.0, 'goes': 1.0, 'writing': 1.0, 'not': 1.0, 'did': 1.0, 'smear': 1.0, 'pen': 1.0, 'product': 1.0, 'condition': 1.0, 'book': 1.0, 'five': 1.0, 'first': 1.0, 'it': 2.0, 'major': 1.0, 'full': 1.0, 'stars': 1.0, 'thru': 1.0, 'a': 3.0, 'great': 2.0, 'the': 4.0, 't': 1.0, 'give': 1.0, 'didn': 1.0, 'looking': 1.0, 'plastic': 1.0, 'i': 1.0, 'itself': 1.0, 'due': 1.0, 'stock': 1.0, 'when': 1.0, 'attached': 1.0, 'stickers': 1.0, 'cover': 2.0, 'is': 3.0, 'in': 2.0, 'also': 1.0, 'bit': 1.0, 'to': 2.0, 'rough': 1.0, 'nothing': 1.0}
Word element => {'both': 1.0, 'be': 1.0, 'will': 1.0, 'spend': 1.0, 'comfortable': 2.0, 'because': 1.0, 'umbrella': 1.0, 'right': 1.0, 'shopping': 1.0, 'strain': 1.0, '20': 1.0, '5': 1.0, 'need': 1.0, 'short': 1.0, 'am': 2.0, 'you': 2.0, 'if': 1.0, 'work': 1.0, 'not': 1.0, 'order': 1.0, 'something': 2.0, 'new': 1.0, 'hieght': 1.0, 'position': 1.0, '6': 1.0, 'walk': 1.0, 'i': 4.0, 'from': 1.0, 'very': 1.0, 'to': 5.0, 'as': 2.0, 'have': 1.0, 'small': 2.0, 'gets': 1.0, 'more': 1.0, 'is': 4.0, 'stroller': 2.0, 'strange': 1.0, 'okay': 1.0, 'got': 1.0, 'too': 1.0, 'and': 7.0, 'dollar': 1.0, 'folds': 2.0, 'get': 2.0, 'child': 1.0, 'up': 2.0, '30': 1.0, 'this': 1.0, 'it': 7.0, 'certain': 1.0, 'only': 1.0, 'now': 1.0, 'free': 1.0, 'bucks': 1.0, 'odd': 1.0, 'amount': 1.0, 'step': 1.0, 'long': 1.0, 'low': 1.0, 'for': 3.0, 'point': 2.0, 'ordering': 1.0, 'lightweight': 1.0, 'b': 1.0, 'might': 1.0, 'we': 1.0, 'a': 6.0, 'that': 3.0, 'avg': 1.0, 'indoors': 1.0, 'or': 1.0, 'your': 1.0, 'on': 2.0, 'with': 1.0, 'pavement': 1.0, 'some': 1.0, 'fuss': 1.0, 'reach': 1.0, 'the': 4.0, 'wheels': 2.0, 'stuck': 1.0, 'in': 3.0, 'about': 1.0, 'positions': 1.0, 'pushing': 1.0, 'handles': 2.0, 'push': 2.0, 'are': 2.0}
Word element => {'better': 1.0, 'save': 1.0, 'using': 1.0, 'on': 1.0, 'plan': 1.0, 'different': 1.0, 'search': 1.0, 'impossible': 1.0, 'us': 1.0, 'lift': 2.0, 'out': 1.0, 'get': 1.0, 'towards': 1.0, 'by': 1.0, 'pull': 1.0, 'foot': 2.0, 'use': 3.0, 'essentially': 1.0, 'bar': 1.0, 'nicer': 1.0, 'type': 2.0, 'something': 1.0, 'buy': 2.0, 'hand': 1.0, 'wants': 1.0, 'someone': 1.0, 'purchased': 1.0, 'usually': 1.0, 'whatever': 1.0, 'van': 2.0, 's': 1.0, 'getting': 2.0, 'just': 3.0, 'seats': 1.0, 'car': 1.0, 'in': 4.0, 'rush': 1.0, 'having': 1.0, 'up': 3.0, 'fold': 1.0, 'very': 1.0, 'thirdly': 1.0, 'wouldn': 1.0, 'break': 1.0, 'would': 1.0, 'anymore': 1.0, 'during': 1.0, 'weighed': 1.0, 'metal': 1.0, 'they': 1.0, 'if': 2.0, 'stitching': 1.0, '5': 3.0, 'groove': 1.0, 'about': 2.0, 'twins': 2.0, 'was': 1.0, 'lbs': 2.0, 'when': 1.0, 'airport': 2.0, 'gate': 1.0, 'into': 3.0, 'it': 12.0, 'slumped': 2.0, 'check': 1.0, 'big': 1.0, 'as': 1.0, 'to': 15.0, 'strains': 1.0, 'way': 1.0, 'double': 1.0, 'then': 1.0, 'take': 2.0, 'we': 7.0, 't': 5.0, 'a': 4.0, 'recently': 1.0, 'for': 4.0, 'the': 17.0, 'of': 8.0, 'and': 6.0, 'trip': 3.0, 'care': 1.0, 'like': 2.0, '17': 1.0, 'that': 5.0, 'because': 2.0, 'these': 2.0, 'hit': 1.0, 'my': 2.0, 'parking': 1.0, 'often': 1.0, 'is': 4.0, 'at': 1.0, 'two': 2.0, 'putting': 1.0, 'i': 10.0, 'seen': 1.0, '4': 1.0, 'upcoming': 1.0, 'you': 6.0, 'push': 1.0, 'able': 1.0, 'have': 5.0, 'but': 5.0, 'now': 1.0, 'sustain': 1.0, 'short': 1.0, 'wanted': 1.0, 'money': 1.0, 'bought': 1.0, 'too': 3.0, 'one': 1.0, 'am': 3.0, 'strollers': 3.0, 'has': 1.0, 'always': 1.0, 'them': 3.0, 'husband': 1.0, 'with': 2.0, 'weren': 1.0, 'this': 2.0, 'hard': 1.0, 'over': 2.0, 'don': 1.0, 'be': 1.0, 'are': 4.0, 'first': 1.0, 'plus': 1.0, 'standing': 1.0, 'lightweight': 1.0, 'can': 3.0, 'so': 2.0, 'close': 1.0, 'quality': 1.0, 'their': 1.0, 'description': 1.0, 'wheels': 1.0, 'or': 1.0, 'secondly': 1.0, 'didn': 1.0, 'back': 1.0, 'pay': 1.0, 'spot': 1.0, 'expected': 1.0, 'pulls': 1.0, 'trying': 3.0, 'girls': 1.0, 'all': 2.0, 'other': 1.0, 'umbrella': 2.0, 'your': 3.0, 'probably': 1.0, 'feel': 1.0, 'according': 1.0, 'see': 2.0, 'weight': 1.0, '40': 1.0, 'our': 5.0, 'stroller': 7.0, 'how': 1.0, 'each': 1.0, 'piece': 1.0, 'do': 1.0, 'much': 3.0, '16': 1.0, 'put': 1.0, 'handles': 1.0, 'material': 1.0}
Word element => {'myself': 1.0, 'long': 1.0, 'have': 1.0, 'airport': 1.0, 'or': 1.0, 'trunk': 1.0, 'has': 2.0, 'won': 1.0, 'throw': 1.0, 'were': 1.0, 'in': 2.0, 'perfect': 1.0, 'ride': 1.0, 'around': 2.0, 'is': 7.0, '2': 1.0, 'but': 3.0, 'very': 1.0, 'particularly': 1.0, 'ripped': 1.0, 'cute': 1.0, 'which': 1.0, 'gift': 1.0, 'survived': 1.0, 'small': 1.0, 'a': 4.0, 'bob': 1.0, 'little': 1.0, 'walks': 1.0, 'we': 4.0, 'going': 1.0, 'ago': 1.0, 't': 2.0, 'best': 1.0, 'years': 1.0, 'to': 6.0, 'ever': 1.0, 'all': 1.0, 'comfortable': 1.0, 'given': 1.0, 'gate': 1.0, 'without': 1.0, 'it': 8.0, 'our': 2.0, 'stroller': 3.0, 'strong': 1.0, 'push': 2.0, 'daughter': 2.0, 'when': 2.0, 'was': 1.0, 'not': 1.0, 'about': 1.0, 'over': 1.0, 'up': 1.0, 'don': 1.0, 'old': 1.0, 'and': 4.0, 'versatile': 1.0, 'as': 2.0, 'heavy': 1.0, 'she': 1.0, 'folds': 1.0, 'know': 1.0, 'however': 1.0, 'easy': 1.0, 'months': 1.0, 'get': 1.0, 'so': 1.0, 'big': 1.0, 'check': 1.0, 'baggage': 1.0, 'handlers': 1.0, 'do': 1.0, 'this': 3.0, 'few': 1.0, 'by': 1.0, 'travel': 1.0, 'scratches': 1.0, 'jogging': 1.0, 'even': 2.0, 'for': 4.0, 'fabric': 1.0, 'holes': 1.0, 'i': 1.0, 'keep': 1.0, 'waiting': 1.0, 'off': 1.0, 'the': 4.0, 'of': 1.0, 'still': 1.0, 'something': 1.0, 'wants': 1.0, 'mind': 1.0, 'with': 1.0, '3': 1.0, 'taking': 1.0, 'also': 1.0, 'us': 1.0}
Word element => {'day': 1.0, 'same': 1.0, 'say': 1.0, 'means': 1.0, 'by': 1.0, 'also': 1.0, 'matress': 1.0, 'crib': 1.0, '34': 1.0, '5': 1.0, 'fit': 1.0, 'and': 2.0, 'another': 1.0, 'returned': 1.0, 'story': 1.0, 'was': 4.0, 'had': 2.0, 'look': 1.0, 'any': 1.0, 'to': 4.0, 'terrible': 1.0, 'it': 3.0, 'soft': 1.0, 'this': 1.0, 'looked': 1.0, 'i': 3.0, 'yet': 1.0, 'the': 9.0, 'sewn': 1.0, 'colors': 1.0, 'though': 1.0, 'received': 1.0, 'much': 1.0, 'loved': 1.0, 'needless': 1.0, 'most': 1.0, 'already': 1.0, 'sheet': 2.0, 'so': 1.0, 'of': 2.0, 'once': 1.0, 'were': 1.0, 'black': 1.0, 'thick': 1.0, 'thread': 1.0, 'set': 3.0, 'used': 1.0, 'sew': 1.0, 'not': 3.0, 'mention': 1.0, 'white': 1.0, 'sewing': 1.0, 'very': 1.0, 'mini': 1.0, 'poor': 1.0, 'a': 2.0, 'hole': 1.0, 'brown': 1.0, 'itself': 1.0, 'in': 1.0, 'elastic': 1.0, 'barely': 1.0, 'did': 1.0}
Word element => {'wipes': 1.0, 'with': 1.0, 'station': 1.0, 'changing': 1.0, 'take': 1.0, 'items': 1.0, 'a': 2.0, 'care': 1.0, 'separate': 1.0, 'the': 3.0, 'diaper': 1.0, 'plenty': 2.0, 'keys': 1.0, 'of': 3.0, 'there': 2.0, 'great': 1.0, 'big': 1.0, 'front': 1.0, 'phone': 1.0, 'not': 2.0, 'bottles': 1.0, 'or': 1.0, 'section': 1.0, 'etc': 1.0, 'i': 3.0, 'diapers': 1.0, 'pockets': 1.0, 'it': 1.0, 'this': 1.0, 'in': 1.0, 'camera': 1.0, 'more': 1.0, 'is': 3.0, 'formula': 1.0, 'room': 3.0, 'so': 2.0, 'but': 1.0, 'pocket': 1.0, 'my': 2.0, 'things': 1.0, 'carry': 1.0, 'much': 1.0, 'do': 1.0, 'bulky': 1.0, 'purse': 1.0, 'too': 1.0, 'and': 2.0, 'bag': 1.0, 'need': 1.0, 'as': 2.0, 'all': 2.0, 'to': 1.0, 'wallet': 1.0, 'love': 1.0, 'for': 3.0, 'fit': 1.0, 'main': 1.0, 'well': 1.0, 'has': 1.0, 'baby': 1.0}
Word element => {'everything': 1.0, 'was': 2.0, 'size': 1.0, 'fill': 1.0, 'a': 2.0, 'law': 1.0, 'able': 1.0, 'to': 3.0, 'all': 3.0, 'not': 2.0, 'big': 1.0, 'great': 2.0, 'diaper': 1.0, 'this': 2.0, 'sister': 1.0, 'with': 1.0, 'baby': 1.0, 'lots': 1.0, 'i': 2.0, 'small': 1.0, 'needs': 1.0, 'so': 1.0, 'my': 3.0, 'bag': 2.0, 'for': 4.0, 'bought': 1.0, 'one': 1.0, 'in': 2.0, 'her': 3.0, 'kinds': 1.0, 'sil': 1.0, 'shower': 2.0, 'of': 3.0, 'says': 1.0, 'goodies': 1.0, 'new': 1.0, 'niece': 1.0, 'plenty': 1.0, 'that': 1.0, 'it': 2.0, 'she': 2.0, 'pockets': 1.0, 'got': 1.0, 'couple': 1.0, 'and': 1.0, 'bags': 1.0, 'space': 1.0, 'at': 1.0, 'is': 1.0, 'favorite': 1.0}
Word element => {'long': 1.0, 'face': 1.0, 'lets': 1.0, 'type': 1.0, 'new': 1.0, 'something': 1.0, 'what': 1.0, 'again': 1.0, 'some': 1.0, 'wallet': 1.0, 'with': 3.0, 'its': 2.0, 'only': 2.0, 'looking': 1.0, 'cards': 1.0, 'illiminate': 1.0, 'reason': 1.0, 'purse': 3.0, 'use': 1.0, 'secure': 1.0, 'will': 2.0, 'bought': 1.0, 'one': 1.0, 'how': 1.0, 'quality': 1.0, 'her': 1.0, 'good': 1.0, 'of': 1.0, 'be': 1.0, 'qualities': 1.0, 'review': 2.0, 'inside': 1.0, 'but': 3.0, 'closed': 1.0, 'and': 1.0, 'too': 1.0, 'not': 5.0, 'sturdy': 1.0, 'i': 5.0, 'sure': 2.0, 'pocket': 2.0, 'reviews': 1.0, 'are': 2.0, 'bag': 5.0, 'very': 2.0, 'nice': 1.0, 'big': 3.0, 'hold': 1.0, 'like': 1.0, 'wasnt': 1.0, 'this': 2.0, 'based': 2.0, 'more': 1.0, 'is': 4.0, 'it': 3.0, 'looks': 1.0, 'on': 3.0, 'the': 11.0, 'diaper': 3.0, 'adjustable': 1.0, 'a': 11.0, 'snap': 2.0, 'enough': 2.0, 'where': 1.0, 'for': 4.0, 'bags': 1.0, 'bagish': 1.0, 'another': 1.0, 'my': 1.0, 'then': 1.0, 'taste': 1.0, 'was': 2.0, 'as': 1.0, 'outside': 2.0, 'all': 1.0, 'to': 4.0, 'because': 1.0, 'maybe': 1.0, 'find': 1.0, 'return': 1.0, 'straps': 1.0, 'that': 1.0, 'time': 1.0, 'smaller': 1.0, 'bit': 1.0, 'so': 1.0, 'seem': 1.0, 'lighter': 1.0, 'hoping': 1.0, 'brown': 1.0, 'displays': 1.0, 'lot': 1.0, 'got': 1.0, 'pockets': 1.0, 'picture': 1.0}
Word element => {'to': 1.0, 't': 1.0, 'and': 1.0, 'stuff': 1.0, 'my': 1.0, 'the': 1.0, 'wallet': 1.0, 'is': 1.0, 'it': 1.0, 'wait': 1.0, 'can': 1.0, 'cuter': 1.0, 'use': 1.0, 'all': 1.0, 'even': 1.0, 'than': 1.0, 'diaper': 1.0, 'for': 1.0, 'in': 1.0, 'picture': 1.0, 'baby': 1.0, 'spacious': 1.0, 'enough': 1.0}
Word element => {'this': 1.0, 'love': 1.0, 'new': 1.0, 'my': 1.0, 'will': 1.0, 'baby': 1.0, 'bag': 1.0, 'outer': 1.0, 'i': 1.0, 'pockets': 1.0, 'need': 1.0, 'to': 1.0, 'has': 1.0, 'plenty': 1.0, 'inner': 1.0, 'everything': 1.0, 'purse': 1.0, 'and': 1.0, 'away': 1.0, 'are': 1.0, 'the': 1.0, 'of': 1.0, 'there': 1.0, 'when': 1.0, 'organize': 1.0, 'from': 1.0, 'home': 1.0, 'front': 1.0, 'pocket': 1.0, 'become': 1.0}
Word element => {'they': 1.0, 'if': 1.0, 'see': 1.0, 'kids': 1.0, 'in': 1.0, 'class': 1.0, 'k': 1.0, 'pre': 1.0, 'my': 1.0, 'teach': 1.0, 'and': 2.0, 'very': 1.0, 'just': 1.0, 'the': 1.0, 'float': 1.0, 'love': 1.0, 'for': 2.0, 'them': 2.0, 'made': 1.0, 'is': 1.0, 'this': 1.0, 'durable': 1.0, 'hard': 1.0, 'it': 2.0, 'what': 1.0, 'set': 1.0, 'of': 1.0, '34': 2.0, 'pennies': 1.0, 'putting': 1.0, 'i': 2.0, 'can': 1.0, 'plastic': 1.0, 'looking': 1.0, 'colorful': 1.0, 'was': 2.0, 'to': 2.0, 'sink': 2.0, 'bought': 1.0}
Word element => {'them': 1.0, 'love': 1.0, 'kids': 1.0, 'right': 1.0, 'and': 1.0, 'sturdy': 1.0, 'etc': 1.0, 'they': 1.0, 'these': 1.0, 'my': 1.0, 'are': 2.0, 'the': 2.0, 'size': 1.0, 'three': 1.0, 'boats': 1.0, 'for': 1.0, 'outside': 1.0, 'just': 1.0, 'perfect': 1.0, 'bathtub': 1.0, 'water': 1.0, 'play': 1.0}
Word element => {'shame': 1.0, 'toy': 1.0, 'best': 1.0, 'after': 1.0, 'cries': 1.0, 'little': 1.0, 'their': 1.0, 'our': 1.0, 'on': 2.0, 'have': 1.0, '8': 1.0, 'fortune': 1.0, 'i': 2.0, 'at': 1.0, 'paid': 1.0, 'ones': 1.0, '2': 1.0, 'loosing': 1.0, 'for': 1.0, 'this': 1.0, 'blankie': 1.0, '69': 1.0, 'want': 1.0, 'buck': 1.0, 'them': 1.0, 'a': 1.0, 'they': 2.0, 'walmart': 1.0, 'god': 1.0, 'and': 1.0, 'thanks': 1.0, 'of': 1.0, 'you': 1.0, 'seem': 1.0, 'to': 1.0, 'make': 1.0}
Word element => {'household': 1.0, 'backup': 1.0, 'whole': 1.0, 'for': 2.0, 'been': 2.0, 'have': 1.0, 'would': 1.0, 'there': 1.0, 'the': 1.0, '2': 1.0, 'aunts': 1.0, 'her': 1.0, 'no': 1.0, 'at': 1.0, 'sleep': 1.0, 'or': 1.0, 'leaving': 1.0, 'she': 2.0, 'baby': 1.0, 'toy': 1.0, 'had': 1.0, 'was': 1.0, 'to': 1.0, 'be': 1.0, 'when': 1.0, 'by': 1.0, 'daughter': 1.0, 'as': 1.0, 'and': 2.0, 'a': 3.0, 'preschool': 1.0, 'received': 1.0, 'snuggle': 1.0, 'minnie': 3.0, 'my': 1.0, 'can': 1.0, 'without': 2.0, 'this': 1.0, 'it': 3.0, 'not': 2.0, 'stand': 1.0, 'houses': 1.0, 'has': 1.0, 'misplaced': 1.0}
Word element => {'yr': 1.0, 'head': 1.0, 'introduced': 1.0, 'once': 1.0, 'shower': 1.0, 'taking': 1.0, 'happy': 1.0, 'soo': 1.0, 'was': 1.0, 'o': 1.0, 'crying': 1.0, 'and': 1.0, 'on': 2.0, 'falls': 1.0, 'frequently': 1.0, 'washing': 1.0, 'managing': 1.0, 'trouble': 1.0, 'really': 1.0, 'good': 1.0, 'her': 6.0, 'down': 2.0, 'hair': 2.0, 'likes': 1.0, 'that': 1.0, 'gave': 1.0, 'helper': 1.0, 'babies': 1.0, 'sit': 1.0, 'be': 2.0, 'onto': 1.0, 'i': 4.0, 'when': 1.0, 'daughter': 1.0, 'feel': 1.0, '1': 2.0, 'caused': 1.0, 'getting': 1.0, 'bought': 1.0, 'months': 1.0, 'before': 1.0, '5': 1.0, 'because': 1.0, 'than': 2.0, 'laying': 1.0, 'more': 2.0, 'is': 2.0, 'scared': 1.0, 'eyes': 1.0, 'kids': 1.0, 'this': 5.0, 'it': 6.0, 'she': 4.0, 'will': 1.0, '2': 2.0, 'but': 2.0, 'work': 1.0, 'back': 1.0, 'god': 1.0, 'starts': 2.0, 'may': 2.0, 'my': 2.0, 'for': 4.0, 'stay': 1.0, 'n': 1.0, 'me': 2.0, 'not': 2.0, 'still': 1.0, 'gets': 1.0, 'difficult': 1.0, 'to': 5.0, 'simply': 1.0, 'makes': 1.0, 'wash': 1.0, 'turns': 1.0, 'the': 1.0, 'without': 2.0, 'errrrrr': 1.0, 'thus': 1.0, 'soap': 1.0, 'face': 1.0, 'thought': 1.0, 'going': 1.0, 'a': 1.0}
Word element => {'trash': 1.0, 'dissapointed': 1.0, '8': 1.0, 'very': 1.0, 'year': 1.0, 'for': 2.0, 'but': 1.0, 'work': 1.0, 'might': 1.0, 'old': 2.0, 'guess': 1.0, 'i': 1.0, 'doctors': 1.0, 'face': 1.0, 's': 1.0, 'baby': 3.0, 'my': 2.0, 'falls': 1.0, 'the': 3.0, 'cap': 1.0, 'has': 1.0, 'months': 1.0, '4': 1.0, 'on': 1.0, 'is': 1.0, 'still': 1.0, 'head': 1.0, 'not': 2.0, 'to': 2.0, 'normal': 1.0, 'according': 1.0, 'proof': 1.0, 'so': 1.0, 'water': 3.0, 'under': 1.0, 'size': 1.0, 'runs': 1.0, 'this': 2.0, 'it': 1.0, '15': 1.0, 'a': 3.0}
Word element => {'head': 1.0, 'we': 1.0, 'on': 1.0, 'time': 1.0, 'every': 1.0, 'off': 1.0, 'falls': 1.0, 'cheap': 1.0, 'the': 1.0, 'and': 1.0, 'his': 1.0, 'water': 1.0, 'pour': 1.0, 'biggest': 1.0, 'doesn': 1.0, 'money': 1.0, 'it': 2.0, 't': 1.0, 'waste': 1.0, 'of': 1.0, 'work': 1.0, 'was': 1.0}
Word element => {'registry': 1.0, 'the': 2.0, '2': 1.0, 'on': 2.0, 'bought': 1.0, 'do': 1.0, 'get': 1.0, 'ball': 1.0, 'see': 1.0, 'a': 3.0, 'shipped': 1.0, 'i': 3.0, 'buy': 1.0, 'days': 1.0, 'way': 1.0, 'as': 1.0, 'to': 3.0, 'was': 2.0, 'crumpled': 1.0, 'for': 3.0, 'horrified': 1.0, 'arrive': 1.0, 'it': 5.0, 'with': 1.0, 'this': 1.0, 'too': 2.0, 'after': 1.0, 'so': 1.0, 'when': 1.0, 'am': 1.0, 'embarrassed': 1.0, 'not': 1.0, 'include': 1.0, 'gift': 1.0, 'flimsy': 1.0, 'bucks': 1.0, 'instead': 1.0, 'there': 1.0, 'zero': 1.0, 'is': 1.0, 'fits': 1.0, 'friend': 1.0, 'an': 1.0, 'infant': 1.0, 'even': 1.0, '45': 1.0, 'waiting': 1.0, 'coffee': 1.0}
Word element => {'material': 1.0, 'head': 1.0, 'on': 1.0, 'keeps': 1.0, 'nephew': 1.0, 'my': 1.0, 'the': 1.0, 'for': 1.0, 'very': 1.0, 'worked': 1.0, 'year': 1.0, 'old': 1.0, 'soap': 1.0, 'perfect': 1.0, 'holds': 1.0, 'durable': 1.0, 'it': 1.0, 'this': 1.0, 'eyes': 1.0, 'made': 1.0, 'out': 1.0, 'his': 2.0, 'water': 1.0, 'and': 1.0, 'of': 2.0, 'up': 1.0, 'when': 1.0, 'pleased': 1.0, '3': 1.0, 'pouring': 1.0}
Word element => {'something': 1.0, 'product': 1.0, 'eyes': 1.0, 'my': 1.0, 't': 2.0, 'the': 2.0, 'a': 1.0, 'of': 1.0, 'block': 1.0, 'itself': 1.0, 'couldn': 1.0, 'i': 2.0, 'paper': 1.0, 'it': 1.0, 'believe': 1.0, 'piece': 1.0, 'won': 1.0, 'too': 1.0, 'different': 1.0, 'water': 1.0, 'wish': 1.0, 'provide': 1.0, 'like': 1.0, 'nasty': 1.0, 'could': 1.0, 'seller': 1.0}
Word element => {'when': 1.0, 'dry': 1.0, 'hair': 1.0, 'works': 1.0, 'better': 1.0, 'in': 1.0, 'face': 1.0, 'boys': 1.0, 'early': 1.0, 'for': 2.0, 'one': 1.0, 'i': 1.0, 'back': 1.0, 'grandchild': 1.0, 'happy': 1.0, 'their': 1.0, 'awesome': 1.0, 'our': 2.0, 'keeps': 1.0, 'are': 1.0, 'great': 1.0, 'these': 1.0, 'the': 2.0, '80s': 1.0, 'and': 2.0, 'rinsing': 1.0, 'it': 1.0, 'only': 1.0, 'babies': 1.0, 'thing': 1.0, 'so': 1.0, 'had': 1.0, 'was': 1.0, 'to': 1.0, 'see': 1.0, 'same': 1.0}
Word element => {'inexpensive': 1.0, 'so': 1.0, 'since': 1.0, 'a': 1.0, 'worth': 1.0, 'still': 1.0, 'being': 1.0, 'that': 1.0, 's': 1.0, 'just': 1.0, 'and': 2.0, 'head': 1.0, 'made': 1.0, 'out': 2.0, 'stretched': 2.0, 'i': 1.0, 'old': 1.0, 'month': 1.0, '18': 1.0, 'had': 1.0, 'to': 1.0, 'was': 2.0, 'cheaply': 1.0, 'flimsy': 1.0, 'minutes': 1.0, '3': 1.0, 'within': 1.0, 'where': 1.0, 'said': 1.0, 'really': 1.0, 'longer': 1.0, 'is': 2.0, 'no': 1.0, 'this': 1.0, 'it': 6.0, 'he': 1.0, 'functional': 1.0, 'shot': 1.0, 'my': 1.0, 'pulling': 1.0, 'his': 1.0, 'think': 1.0, 'off': 1.0}
Word element => {'not': 1.0, 'but': 1.0, 'be': 1.0, 'some': 1.0, 'job': 1.0, 'wasn': 1.0, 't': 1.0, 'too': 1.0, 'babies': 1.0, 'ok': 1.0, 'do': 1.0, 'could': 1.0, 'for': 2.0, 'child': 1.0, 'hands': 1.0, 'fidgety': 1.0, 'better': 1.0, 'ours': 1.0, 'helpful': 1.0, 'can': 1.0}
Word element => {'seller': 1.0, 'to': 2.0, 'be': 1.0, 'luck': 1.0, 'try': 1.0, 'good': 1.0, 'months': 1.0, '11': 1.0, 'for': 1.0, 'daughter': 1.0, 'work': 1.0, 't': 1.0, 'decide': 1.0, 'my': 1.0, 'didn': 1.0, 'you': 2.0, 'if': 1.0, 'patient': 1.0, 'ever': 1.0, 'out': 1.0, 'and': 1.0, 'this': 1.0, 'it': 1.0, 'with': 1.0}
Word element => {'think': 1.0, 'i': 2.0, 'too': 1.0, 'it': 1.0, 'actually': 1.0, 'is': 1.0, 'a': 2.0, 'have': 1.0, 'might': 1.0, 'this': 1.0, 'fit': 1.0, 'big': 1.0, 'year': 1.0, 'head': 2.0, 'old': 1.0, 'fot': 1.0, 'but': 1.0, 'fits': 1.0, 'perfect': 1.0, 'four': 1.0, 'small': 1.0, 'my': 2.0, 'headed': 1.0}
Word element => {'face': 1.0, 's': 1.0, 'in': 1.0, 'runs': 1.0, 'still': 1.0, 'water': 1.0, 'of': 1.0, 'the': 2.0, 'be': 1.0, 'product': 1.0, 'expected': 1.0, 'to': 1.0, 'was': 1.0, 'not': 1.0, 'work': 1.0, 'at': 1.0, 'i': 1.0, 'does': 1.0, 'nice': 1.0, 'nothing': 1.0, 'like': 1.0, 'it': 3.0, 'only': 1.0, 'this': 1.0, 'is': 1.0, 'my': 1.0, 'color': 1.0, 'thing': 1.0, 'all': 1.0, 'baby': 1.0, 'about': 1.0, 'lots': 1.0}
Word element => {'child': 1.0, 'it': 1.0, 'gift': 1.0, 'top': 1.0, 'the': 2.0, 'be': 1.0, 'bow': 1.0, 'then': 1.0, 'faces': 1.0, 'my': 3.0, 'their': 1.0, 'were': 1.0, 'grandchildren': 1.0, 'water': 1.0, 'shampoo': 1.0, 'hated': 1.0, 'way': 1.0, 'getting': 1.0, 'get': 2.0, 'asking': 1.0, 'and': 2.0, 'probably': 1.0, 'when': 2.0, 'these': 1.0, 'is': 1.0, 'more': 1.0, 'figured': 1.0, 'little': 2.0, 'been': 1.0, 'looking': 1.0, 'in': 1.0, 'product': 1.0, 'love': 1.0, 'where': 1.0, 'for': 4.0, 'purchased': 1.0, 'had': 2.0, 'to': 3.0, 'older': 1.0, 'now': 1.0, 'look': 1.0, 'have': 3.0, 'kids': 3.0, 'this': 2.0, 'of': 1.0, 'shower': 2.0, 'everywhere': 1.0, 'or': 1.0, '4': 1.0, 'i': 4.0, 'began': 1.0, 'baby': 1.0, 'them': 2.0, 'item': 1.0, 'will': 2.0, 'useful': 1.0, 'gifts': 1.0, 'keep': 1.0, 'like': 1.0, 'hand': 1.0, 'a': 5.0, 'on': 1.0, 'make': 1.0}
Word element => {'her': 1.0, 'for': 1.0, 'glad': 1.0, 'this': 2.0, 'item': 2.0, 'definitely': 1.0, 'hair': 1.0, 'love': 1.0, 'it': 1.0, 'easier': 1.0, 'purchased': 1.0, 'to': 1.0, 'so': 1.0, 'wash': 1.0, 'made': 1.0, 'my': 1.0, 'i': 1.0, 'daughters': 1.0}
Word element => {'let': 1.0, 'couldn': 1.0, 'get': 1.0, 'getting': 1.0, 'child': 1.0, 'alone': 1.0, 'head': 1.0, 'center': 1.0, 'to': 5.0, 'normal': 1.0, 'the': 1.0, 'attempt': 1.0, 'this': 2.0, 'it': 3.0, 'he': 1.0, 'piece': 1.0, 'suction': 1.0, 'form': 1.0, 'my': 1.0, 'but': 2.0, 'will': 1.0, 'i': 2.0, 'old': 1.0, 'foam': 1.0, 'tries': 1.0, 'put': 1.0, 'washed': 1.0, 'on': 2.0, 'your': 1.0, 'continue': 1.0, 'one': 2.0, 'is': 2.0, 'around': 1.0, 'of': 1.0, 'supposed': 1.0, 'even': 2.0, 'sit': 1.0, 'properly': 2.0, 'struggle': 1.0, 'his': 1.0, 'year': 1.0, 'sized': 1.0, 'hair': 1.0, 'noggin': 1.0, 'give': 1.0, 't': 1.0, 's': 3.0, 'a': 2.0, 'flimsy': 1.0, 'since': 1.0, 'just': 1.0, 'few': 1.0, 'already': 1.0, 'hates': 1.0}
Word element => {'little': 1.0, 'i': 1.0, 'product': 1.0, 'be': 1.0, 'had': 1.0, 'to': 2.0, 'head': 1.0, 'recommend': 1.0, 'of': 1.0, 's': 1.0, 'baby': 1.0, 'has': 1.0, 'your': 1.0, 'not': 1.0, 'would': 1.0, 'work': 1.0, 'at': 1.0, 'success': 1.0, 'very': 1.0, 'as': 1.0, 'shape': 1.0, 'and': 1.0, 'the': 2.0, 'size': 1.0, 'opening': 1.0, 'exact': 1.0, 'for': 1.0, 'this': 1.0, 'with': 1.0, 'it': 1.0, 'have': 1.0, 'all': 1.0}
Word element => {'flensy': 1.0, 'very': 1.0, 'and': 1.0, 'leaked': 1.0, 'through': 1.0, 'still': 1.0, 'water': 1.0, 'the': 1.0, 'this': 1.0, 'did': 1.0, 'a': 1.0, 'of': 1.0, 'waste': 1.0, 'at': 1.0, 'not': 1.0, 'work': 1.0, 'was': 2.0, 'all': 1.0, 'money': 1.0, 'it': 2.0, 'complete': 1.0}
Word element => {'choose': 1.0, 'i': 1.0, 'will': 1.0, 'by': 1.0, 'baby': 1.0, 'children': 1.0, 'for': 1.0, 'cap': 1.0, 'better': 1.0, 'quality': 1.0, 'functionality': 1.0, 'sodial': 1.0, 'bath': 1.0, 'shampoo': 1.0, 'the': 1.0, 'shower': 1.0, '34': 2.0, 'new': 1.0, 'tm': 1.0, 'latter': 1.0, 'but': 1.0, 'than': 1.0, 'safe': 1.0}
Word element => {'oversized': 1.0, 'carry': 1.0, 'definitely': 1.0, 'get': 1.0, 'sized': 1.0, 'over': 1.0, 'used': 1.0, 'when': 1.0, 'on': 1.0, 'size': 1.0, 'khaki': 1.0, 'in': 4.0, 'camera': 1.0, 'to': 4.0, 'bags': 1.0, 'as': 1.0, 'by': 1.0, 'variety': 1.0, 'not': 1.0, 'sturdy': 1.0, 'will': 1.0, 'means': 1.0, 'very': 1.0, 'insert': 2.0, 'been': 1.0, 'shapeless': 1.0, 'wish': 1.0, 'this': 2.0, 'the': 12.0, 'of': 4.0, 'really': 1.0, 'fits': 1.0, 'other': 1.0, 'have': 2.0, 'some': 1.0, 'none': 1.0, 'varieties': 1.0, 'compare': 1.0, 'any': 1.0, 'flimsy': 1.0, 'sizes': 1.0, 'it': 5.0, 'my': 7.0, 'mid': 1.0, 'first': 1.0, 'case': 1.0, 'leather': 1.0, 'small': 1.0, 'a': 4.0, 's': 2.0, 'them': 1.0, 'and': 6.0, 'couple': 1.0, 'purse': 4.0, 'i': 4.0, 'light': 1.0, 'using': 1.0, 'hold': 1.0, 'love': 4.0, 'for': 3.0, 'color': 2.0, 'support': 1.0, 'inserts': 1.0, 'lost': 1.0, 'am': 1.0, 'you': 4.0, 'choice': 1.0, 'kiwi': 3.0, 'everything': 1.0, 'ones': 1.0, 'one': 1.0, 'happy': 1.0, 'makes': 1.0, 'easy': 1.0, 'tends': 1.0, 'large': 3.0, 'checkbook': 1.0, 'left': 1.0, 'items': 1.0, 'is': 4.0, 'look': 1.0, 'wallet': 1.0, 'especially': 1.0, 'inside': 2.0, 'classic': 1.0, 'perfectly': 1.0, 'black': 1.0, 'need': 1.0, 'or': 1.0, 'would': 2.0, 'medium': 1.0, 'handbags': 2.0, 'dark': 1.0, 'find': 1.0, 'colored': 1.0, 'contains': 1.0, 'so': 1.0, 'dig': 1.0, 'practically': 1.0, 'many': 1.0, 'with': 3.0, 'pockets': 1.0, 'best': 1.0, 'picture': 1.0, 'put': 1.0, 'middle': 1.0, 'if': 1.0, 'still': 1.0, 'opening': 1.0, 'room': 1.0, 'enough': 1.0, 'digital': 1.0, 'while': 1.0, 'side': 1.0, 'ipod': 1.0, 'although': 1.0}
Word element => {'asap': 1.0, 'm': 1.0, 'straps': 1.0, 's': 1.0, 'handles': 1.0, 'short': 1.0, 'in': 1.0, 'reality': 1.0, 'i': 2.0, 'returning': 1.0, 'ordered': 1.0, 'it': 3.0, 'medium': 1.0, 'and': 2.0, 'impractical': 1.0, 'with': 1.0, 'is': 1.0, 'shocked': 1.0, 'the': 2.0, 'small': 1.0, 'was': 1.0, 'at': 1.0, 'how': 1.0}
Word element => {'bags': 1.0, 'work': 1.0, 'which': 1.0, 'medium': 1.0, 'to': 1.0, 'although': 1.0, 'be': 1.0, 'insert': 1.0, 'khaki': 1.0, 'in': 1.0, 'expected': 1.0, 'my': 1.0, 'happy': 1.0, 'm': 1.0, 'with': 2.0, 'it': 3.0, 'lighter': 1.0, 'well': 1.0, 'a': 1.0, 'weight': 1.0, 's': 1.0, 'sturdy': 1.0, 'of': 1.0, 'purse': 1.0, 'and': 1.0, 'i': 2.0, 'pockets': 1.0, 'lot': 1.0, 'all': 1.0, 'kwikie': 1.0, 'have': 1.0}
Word element => {'will': 1.0, 'very': 1.0, 'you': 2.0, 'in': 2.0, 'fit': 1.0, 'if': 1.0, 'did': 1.0, 'love': 1.0, 'using': 1.0, 'yet': 1.0, 'used': 1.0, 'not': 2.0, 'expected': 1.0, 'than': 1.0, 'large': 1.0, 'larger': 1.0, 'to': 1.0, 'was': 2.0, 'use': 1.0, 'sturdy': 1.0, 'has': 2.0, 'i': 2.0, 'pockets': 1.0, 'is': 1.0, 'the': 2.0, 'flexible': 1.0, 'are': 1.0, 'insert': 1.0, 'with': 1.0, 'it': 7.0, 'and': 1.0, 'purse': 2.0, 'since': 1.0, 'well': 1.0, 'a': 3.0, 'lots': 1.0, 'firm': 1.0, 'purses': 1.0, 'of': 1.0, 'bottom': 1.0, 'so': 2.0, 'less': 1.0, 'when': 1.0, 'planning': 1.0, 'made': 1.0, 'fitting': 1.0, 'into': 1.0}
Word element => {'for': 1.0, 'won': 1.0, 'just': 1.0, 'made': 1.0, 'very': 1.0, 'bag': 1.0, 'into': 1.0, 'too': 1.0, 'use': 2.0, 'than': 1.0, 'work': 1.0, 'but': 1.0, 'doesn': 1.0, 'will': 1.0, 'stiff': 1.0, 'expected': 1.0, 'material': 1.0, 'bend': 1.0, 'i': 2.0, 'to': 2.0, 'what': 1.0, 'larger': 2.0, 'is': 3.0, 'in': 1.0, 'well': 1.0, 'maneuver': 1.0, 'a': 2.0, 'medium': 2.0, 'size': 1.0, 'me': 1.0, 'and': 1.0, 'purse': 1.0, 'hard': 1.0, 'with': 1.0, 'this': 1.0, 'it': 2.0, 'my': 1.0, 't': 2.0, 'the': 1.0, 'purses': 1.0}
Word element => {'own': 1.0, 'its': 1.0, 'over': 1.0, 'on': 1.0, 'that': 1.0, 'about': 1.0, 'aspect': 1.0, 'have': 1.0, 'size': 1.0, 'fits': 1.0, 'it': 2.0, 'this': 1.0, 'but': 1.0, 'larger': 1.0, 'tip': 1.0, 'bit': 1.0, 'little': 1.0, 'a': 1.0, 'not': 1.0, 'just': 1.0, 'of': 1.0, 'has': 1.0, 'is': 2.0, 'the': 1.0, 'great': 1.0, 'stands': 1.0, 'cell': 1.0, 'like': 1.0, 'could': 1.0, 'my': 1.0, 'keys': 1.0, 'plenty': 1.0, 'in': 1.0, 'pens': 1.0, 'sturdy': 1.0, 'use': 1.0, 'phone': 1.0, 'purse': 2.0, 'and': 2.0, 'probably': 1.0, 'does': 1.0, 'works': 1.0, 'etc': 1.0, 'pockets': 1.0, 'i': 3.0, 'for': 1.0, 'one': 2.0}
Word element => {'regret': 1.0, 'you': 1.0, 'next': 1.0, 'large': 1.0, 'm': 1.0, 'fast': 1.0, 'it': 1.0, 'this': 1.0, 'delivery': 1.0, 'me': 2.0, 'anything': 1.0, 'won': 1.0, 'on': 2.0, 'reviews': 2.0, 'before': 1.0, 'write': 1.0, 'but': 1.0, 'an': 1.0, 'other': 1.0, 'dont': 1.0, 'i': 2.0, 'had': 1.0, 'one': 2.0, 'purchasing': 2.0, 'impact': 1.0, 't': 1.0, 'the': 2.0, 'great': 1.0, 'normally': 1.0, 'sturdy': 1.0, 'purchase': 1.0, 'big': 1.0, 'very': 1.0}
Word element => {'of': 1.0, 'months': 1.0, 'two': 1.0, 'after': 1.0, 'to': 1.0, 'met': 1.0, 'came': 1.0, 'off': 1.0, 'clean': 1.0, 'and': 1.0, 'expectations': 1.0, 'my': 1.0, 'the': 1.0, 'lid': 1.0, 'use': 1.0, 'easy': 1.0, 'but': 1.0}
Word element => {'return': 1.0, 'had': 1.0, 'flow': 1.0, 'drink': 1.0, 'blocking': 1.0, 'down': 1.0, 'slid': 1.0, 'just': 1.0, 'stay': 1.0, 'nozzle': 1.0, 'pull': 1.0, 'different': 1.0, 'under': 1.0, 'both': 2.0, 'does': 1.0, 'wouldn': 1.0, 'even': 1.0, 'were': 1.0, 'that': 2.0, 'twist': 1.0, 'them': 2.0, 'ways': 1.0, 'up': 2.0, 'over': 1.0, 'bought': 1.0, 'one': 2.0, 'liked': 1.0, 'happen': 1.0, 'these': 1.0, 'in': 1.0, 'look': 1.0, 'of': 2.0, 'so': 1.0, 'two': 1.0, 'i': 3.0, 'purple': 1.0, 'they': 1.0, 'seal': 1.0, 'much': 1.0, 'leaked': 1.0, 'to': 1.0, 'all': 1.0, 'the': 6.0, 'defective': 1.0, 'place': 1.0, 'how': 1.0, 'from': 1.0, 'where': 1.0, 'it': 2.0, 'twists': 1.0, 'and': 2.0, 'description': 1.0, 'closed': 1.0, 'you': 1.0, 'would': 2.0, 'on': 1.0, 'think': 1.0, 't': 1.0, 'a': 1.0, 'blue': 1.0, 'close': 1.0, 'back': 1.0, 'liquid': 1.0, 'top': 1.0, 'hold': 1.0}
Word element => {'brand': 1.0, 'get': 1.0, 'money': 1.0, 'it': 2.0, 'looked': 1.0, 'this': 2.0, 'not': 3.0, 'the': 4.0, 'placed': 1.0, 'its': 3.0, 'little': 1.0, 'a': 2.0, 'i': 2.0, 'whole': 1.0, 'live': 1.0, 'purchasing': 1.0, 'whatever': 1.0, 'in': 2.0, 'reason': 1.0, 'sweats': 1.0, 'water': 1.0, 'az': 1.0, 'and': 3.0, 'should': 1.0, 'wet': 1.0, 'purchased': 1.0, 'into': 1.0, 'before': 1.0, 'does': 1.0, 'all': 1.0, 'for': 1.0, 'product': 2.0, 'have': 1.0, 'leave': 1.0, 'thermos': 1.0, 'more': 1.0, 'is': 1.0, 'bag': 1.0, 'since': 2.0, 'keep': 1.0, 'cold': 1.0, 'which': 1.0, 'will': 1.0, 'also': 1.0, 'item': 1.0, 'insulated': 2.0, 'advice': 1.0, 'school': 1.0, 'spend': 1.0, 'day': 1.0, 'extra': 1.0}
Word element => {'lid': 1.0, 'with': 1.0, 'this': 2.0, 'cup': 2.0, 'skip': 1.0, 'very': 1.0, 'would': 1.0, 'wall': 1.0, 'difficult': 1.0, 'not': 1.0, 'buy': 1.0, 'i': 1.0, 'snap': 1.0, 'to': 1.0, 'purchasing': 1.0, 'insulation': 1.0, 'shut': 1.0, 'completely': 1.0, 'plus': 1.0, 'is': 2.0, 'single': 1.0, 'a': 1.0, 'the': 2.0, 'great': 1.0}
Word element => {'buying': 1.0, 'by': 1.0, 'avoid': 1.0, 'what': 1.0, 'exactly': 1.0, 'which': 1.0, 'wanted': 1.0, 'headed': 1.0, 'will': 1.0, 'from': 1.0, 'look': 1.0, 'hours': 1.0, 'be': 1.0, 'within': 1.0, 'stainless': 1.0, 'way': 1.0, 'the': 5.0, 'this': 2.0, 'it': 1.0, 'top': 2.0, 'otherwise': 1.0, 'i': 2.0, 'sport': 1.0, 'texture': 1.0, 'replacement': 1.0, 'out': 1.0, 'grown': 1.0, 'yr': 1.0, 'enticing': 1.0, 'old': 1.0, '1': 1.0, 'too': 2.0, 'and': 2.0, 'has': 1.0, 'chewing': 1.0, 'thin': 1.0, 'for': 3.0, 'one': 1.0, 'company': 1.0, 'another': 1.0, 'cap': 1.0, 'may': 1.0, 'my': 1.0, 'purchase': 1.0, 'use': 1.0, 'down': 1.0, 'was': 2.0, 'leaking': 1.0, 'trash': 1.0, 'completely': 1.0, 'is': 2.0, 'regular': 1.0, 'cup': 3.0, 'yet': 1.0, 'everywhere': 1.0, 'of': 2.0, 'steel': 1.0, '2': 3.0, 'chewed': 1.0, 'rim': 1.0, 'primarily': 1.0, 'sharp': 1.0, 'a': 3.0, 'little': 1.0, 'to': 2.0, 'as': 1.0, 'so': 1.0}
Word element => {'she': 1.0, 'doesn': 1.0, 'quality': 1.0, 'and': 1.0, 'hold': 1.0, 'easy': 1.0, 'i': 1.0, 'product': 1.0, 'to': 1.0, 'old': 1.0, 'great': 2.0, 'it': 2.0, 'bought': 1.0, 'my': 1.0, 'loves': 1.0, 't': 1.0, 'this': 1.0, '3': 1.0, 'for': 1.0, 'year': 1.0, 'is': 1.0, 'leak': 1.0, 'sturdy': 1.0}
Word element => {}
Word element => {'bad': 1.0, 'too': 1.0, 'anymore': 1.0, 'even': 1.0, 't': 1.0, 'don': 1.0, 'we': 1.0, 'but': 1.0, 'favorite': 1.0, 'leak': 1.0, 'at': 1.0, 'was': 1.0, 'to': 1.0, 'much': 1.0, 'bottle': 1.0, 'i': 1.0, 'use': 1.0, 'loved': 1.0, 'working': 1.0, 'my': 1.0, 'first': 1.0, 'this': 1.0, 'it': 4.0, 'stopped': 1.0, 'few': 1.0, 'continues': 1.0, 'a': 1.0, 'months': 1.0, 'after': 1.0, 'so': 1.0, 'that': 1.0}
Word element => {'before': 1.0, 'realized': 1.0, 'size': 1.0, 'same': 1.0, 'kanteens': 1.0, 'they': 1.0, 'directly': 1.0, 'move': 1.0, 'you': 1.0, 'offered': 1.0, 'have': 2.0, 'not': 1.0, 'are': 2.0, 'replacement': 2.0, 'version': 1.0, 'cannot': 1.0, 'leaking': 1.0, 'now': 1.0, 'would': 2.0, 'too': 1.0, 'and': 2.0, 'expensive': 1.0, 'love': 1.0, 'for': 1.0, 'a': 3.0, 'we': 1.0, 'thought': 1.0, 'safe': 4.0, 'olds': 1.0, 'step': 1.0, 'about': 1.0, 'several': 1.0, 'the': 9.0, 'these': 2.0, 'lid': 1.0, 'my': 3.0, 'cup': 2.0, 'it': 1.0, 'useless': 1.0, 'once': 1.0, 'of': 1.0, 'be': 1.0, 'advice': 1.0, 'bought': 1.0, 'as': 1.0, 'cups': 3.0, 'to': 5.0, 'parts': 1.0, 'were': 1.0, 'upgrade': 1.0, 'sporter': 1.0, 'from': 1.0, 'very': 1.0, 'wish': 1.0, 'this': 3.0, 'kids': 2.0, 'perfect': 1.0, 'chewed': 1.0, 'until': 1.0, 'year': 1.0, 'ready': 1.0, 'klean': 2.0, 'sippy': 1.0, 'them': 1.0, 'seem': 1.0, 'kanteen': 1.0, 'both': 1.0, 'finished': 1.0, 'is': 1.0, 'make': 1.0, 'sippys': 2.0, '3': 1.0, 'i': 3.0, '4': 1.0, 'with': 1.0, 'piece': 1.0, 'find': 1.0, 'mouth': 1.0, 'disappointing': 1.0, 'rendering': 1.0, 'anywhere': 1.0, 'due': 1.0}
Word element => {'arghhh': 1.0, 'replaced': 1.0, 'lemon': 1.0, 'get': 1.0, 'manufacturer': 1.0, 'contact': 1.0, 'now': 1.0, 'don': 1.0, 'kids': 1.0, 'label': 1.0, 'shape': 1.0, 'keep': 1.0, 'stickers': 1.0, 'put': 1.0, 'whom': 1.0, 's': 1.0, 'no': 1.0, 'their': 1.0, 'year': 1.0, 'last': 1.0, 'thing': 1.0, 'started': 1.0, 'belongs': 1.0, 'kanteens': 1.0, 'time': 1.0, 'new': 1.0, 'even': 1.0, 'stick': 1.0, 'sticks': 1.0, 'magnet': 2.0, 'affects': 1.0, 'steal': 2.0, 'stainless': 1.0, '18': 2.0, 'not': 1.0, 'track': 1.0, 'c': 1.0, 'carriers': 1.0, 'tired': 1.0, 'taste': 1.0, 'when': 2.0, 'leak': 2.0, 'glad': 1.0, 'smell': 1.0, 'rubber': 1.0, 'also': 1.0, 'find': 1.0, 'since': 2.0, 'slight': 1.0, 'a': 5.0, 't': 7.0, 'if': 4.0, 'loose': 1.0, 'same': 3.0, 'mind': 1.0, 'with': 1.0, 'piece': 1.0, 'won': 2.0, 'didn': 2.0, 'bottle': 7.0, 'can': 1.0, 'so': 2.0, 'my': 3.0, 'you': 1.0, 'everytime': 1.0, 'especially': 2.0, 'mechanism': 1.0, 'rubbered': 1.0, 'like': 5.0, 'bottles': 5.0, 'aren': 1.0, 'they': 2.0, 'two': 1.0, 'k': 2.0, 'i': 9.0, 'works': 1.0, 'purchased': 1.0, 'leaks': 1.0, 'it': 7.0, 'thought': 1.0, 'to': 11.0, 'any': 2.0, 'exactly': 1.0, '10': 2.0, 'for': 2.0, 'carrying': 1.0, 'screw': 1.0, 'regardless': 1.0, 'right': 1.0, 'have': 3.0, 'somehow': 1.0, 'cons': 1.0, 'books': 1.0, 'all': 1.0, 'other': 4.0, 'odd': 1.0, 'bottom': 1.0, 'appreciative': 1.0, 'but': 4.0, 'just': 5.0, 'stuff': 1.0, 'on': 2.0, 'amazon': 1.0, 'blue': 1.0, 'in': 3.0, 'looking': 2.0, 'bag': 2.0, 'either': 1.0, 'boy': 1.0, 'tight': 1.0, 'sooooo': 1.0, 'would': 1.0, 'be': 1.0, 'one': 2.0, 'try': 1.0, 'too': 1.0, 'and': 4.0, 'that': 1.0, 'was': 6.0, 'filled': 1.0, 'costs': 1.0, 'hard': 1.0, 'over': 1.0, 'identical': 1.0, '12bucks': 1.0, 'wrong': 1.0, 'middle': 1.0, 'son': 1.0, 'pros': 1.0, 'which': 1.0, 'good': 1.0, 'different': 1.0, 'design': 1.0, 'grip': 1.0, 'doing': 1.0, 'the': 19.0, 'of': 3.0, 'is': 2.0, 'tossed': 1.0, 'handle': 1.0, 'water': 2.0, 'ice': 1.0, 'mouth': 1.0, 'easy': 1.0, 'see': 1.0, 'b': 1.0, 'off': 1.0, 'lid': 1.0, 'cover': 1.0, 'or': 2.0, 'protective': 1.0, 'fine': 2.0, 'shouldn': 1.0, 'then': 3.0, 'boys': 1.0, 'oddly': 1.0, 'are': 1.0}
Word element => {'4': 1.0, 'so': 1.0, 'parts': 1.0, 'broken': 1.0, 'or': 1.0, 'leaks': 1.0, 'them': 3.0, 'and': 2.0, 'we': 2.0, 'to': 1.0, 'dropped': 1.0, '6': 1.0, 'weeks': 1.0, 'put': 1.0, 'ordered': 2.0, 'more': 1.0, '2': 1.0, 'the': 1.0, 'ago': 1.0, 'my': 1.0, 'son': 1.0, 'test': 1.0, 'cups': 1.0, 'daughter': 1.0, 'dents': 1.0, 'etc': 1.0, 'used': 1.0, 'indoors': 1.0, 'outdoors': 1.0, 'no': 1.0}
Word element => {'recommend': 1.0, 'can': 1.0, 'etc': 1.0, 'birthdays': 1.0, 'showers': 1.0, 'baby': 1.0, 'gifts': 1.0, 'enough': 1.0, 'make': 1.0, 'sippy2': 1.0, '3yr': 1.0, 'myself': 1.0, 'also': 1.0, 'newborn': 1.0, 'my': 2.0, 'finally': 1.0, 'realized': 1.0, 'a': 3.0, 'loved': 2.0, 'purchased': 3.0, 'starter': 1.0, 'then': 1.0, 'first': 1.0, 'it': 2.0, '16oz': 1.0, 'for': 4.0, 'love': 1.0, 'products': 1.0, 'old': 1.0, 'i': 2.0, 'that': 2.0, 'sporter': 1.0, 'and': 1.0, 't': 1.0, 'great': 1.0, 'these': 2.0}
Word element => {'with': 1.0, 'product': 1.0, 'bad': 2.0, 'calls': 1.0, 'not': 2.0, 'use': 1.0, 'of': 1.0, 'month': 1.0, 'after': 1.0, 'kidbasix': 1.0, 'in': 1.0, 'broke': 1.0, 'return': 1.0, 'a': 3.0, 'bottle': 1.0, 'the': 3.0, 'tried': 1.0, 'replacement': 1.0, 'to': 2.0, 'answer': 1.0, 'call': 1.0, 'two': 1.0, 'customer': 2.0, 'phone': 1.0, 'multiple': 1.0, 'service': 2.0, 'times': 1.0, 'places': 1.0, 'they': 1.0, 'and': 1.0, 'get': 1.0, 'do': 2.0}
Word element => {'olds': 1.0, 'strong': 1.0, '8': 1.0, '3': 1.0, 'perfect': 1.0, 'sturdy': 1.0, 'leak': 1.0, 'is': 1.0, 'bottle': 2.0, 'great': 1.0, 'and': 2.0, 'water': 1.0, 'year': 1.0, 'for': 2.0, 'kids': 1.0, 'a': 2.0, 'doesn': 1.0, 'this': 1.0, 't': 1.0}
Word element => {'mother': 1.0, 'every': 1.0, 'give': 1.0, 'gift': 1.0, 'this': 1.0, 'now': 1.0, 'where': 1.0, 'mothers': 1.0, 'by': 1.0, '1': 1.0, 'since': 1.0, 'able': 1.0, 'has': 1.0, 'pacifiers': 1.0, 'other': 2.0, 'in': 1.0, 'herself': 1.0, 'back': 1.0, 'do': 3.0, 'and': 6.0, 'expectant': 1.0, 'would': 1.0, 'i': 6.0, 'purchased': 1.0, 'what': 1.0, 'street': 1.0, 'absolutely': 1.0, 'is': 1.0, 'asked': 1.0, 'fall': 1.0, 'pacifier': 1.0, 'are': 1.0, 'her': 3.0, 'hippo': 1.0, 'don': 2.0, 'hers': 1.0, 'daughter': 1.0, 'the': 5.0, 'without': 1.0, '2': 1.0, 'can': 2.0, 'a': 1.0, 't': 2.0, 'we': 1.0, 'bunny': 2.0, 'have': 3.0, 'them': 1.0, 'out': 1.0, 'pacimals': 2.0, 'my': 1.0, 'fact': 1.0, 'will': 1.0, 'been': 1.0, 'loves': 1.0, 'that': 2.0, 'get': 1.0, 'easy': 1.0, 'was': 1.0, 'hug': 1.0, 'so': 2.0, 'like': 1.0, 'know': 1.0, 'hold': 1.0, 'paci': 1.0, 'to': 5.0, 'old': 1.0, 'makes': 1.0, 'stopped': 1.0, 'month': 1.0, 'she': 3.0, 'it': 4.0, 'lifesavers': 1.0, 'worry': 1.0, 'of': 1.0, 'mouth': 1.0, 'put': 1.0, 'on': 2.0, 'constantly': 2.0}
Word element => {'him': 1.0, 'and': 1.0, 'no': 1.0, 'driving': 1.0, 'crying': 1.0, 're': 1.0, 'while': 2.0, 'us': 1.0, 'away': 1.0, 'reason': 1.0, 'some': 1.0, 'if': 1.0, 'in': 2.0, 'back': 2.0, 'get': 1.0, 'up': 1.0, 'by': 1.0, 'helps': 1.0, 'keeping': 1.0, 'out': 1.0, 'pacifiers': 1.0, 'easier': 2.0, 'likes': 1.0, 'pushes': 1.0, 'pacipals': 1.0, 'it': 7.0, 'digging': 1.0, 'old': 1.0, 'i': 3.0, 'spit': 1.0, 'mam': 1.0, 'also': 2.0, '3': 1.0, 'more': 1.0, 'is': 2.0, 'was': 2.0, 'his': 2.0, 'adapter': 1.0, 'seat': 1.0, 'paci': 1.0, 'to': 3.0, 'happy': 1.0, 'my': 1.0, 'when': 1.0, 'he': 4.0, 'received': 1.0, 'so': 2.0, 'bit': 1.0, 'flailing': 1.0, 'baby': 1.0, 'dog': 2.0, 'plush': 1.0, 'months': 1.0, 'bought': 1.0, 'pretty': 1.0, 'doggie': 1.0, 'find': 2.0, 'mouth': 1.0, 'does': 1.0, 'lot': 1.0, 'trips': 1.0, 'near': 1.0, 'nice': 1.0, 'great': 1.0, 'pacifier': 3.0, 'size': 1.0, 'only': 1.0, 'do': 1.0, 'wish': 1.0, 'little': 1.0, 'can': 1.0, 'but': 1.0, 'heavier': 1.0, 'the': 7.0, 'job': 1.0, 'we': 2.0, 'a': 3.0, 's': 3.0, 'for': 4.0, 'car': 1.0, 'tends': 1.0}
Word element => {'hassle': 1.0, 'sent': 1.0, 'when': 1.0, 'want': 1.0, 'apart': 1.0, 'already': 1.0, 'was': 1.0, 'them': 1.0, 'of': 1.0, 'stitches': 1.0, 'base': 1.0, 'that': 1.0, 'mine': 1.0, 'sewing': 1.0, '5': 1.0, 'given': 1.0, 'new': 1.0, 'would': 1.0, 'great': 1.0, 'until': 1.0, 'stars': 1.0, 'for': 2.0, 'frog': 2.0, 'just': 1.0, 'up': 1.0, 'back': 2.0, 'coming': 1.0, 'have': 3.0, 'didn': 2.0, 'will': 1.0, 'pacifier': 2.0, 'in': 1.0, 'his': 1.0, 'so': 2.0, 'order': 1.0, 'one': 4.0, 'months': 1.0, '4': 1.0, 'i': 9.0, 'ours': 1.0, 'ordered': 2.0, 'received': 1.0, 'he': 2.0, 'its': 1.0, 'only': 1.0, 'with': 3.0, 'it': 3.0, 'really': 1.0, 'is': 2.0, 'but': 3.0, 'can': 1.0, '2': 1.0, 'deal': 1.0, 'the': 6.0, 'himself': 1.0, 'm': 1.0, 'now': 1.0, 'older': 1.0, 'attached': 2.0, 'happy': 1.0, 'my': 1.0, 'went': 1.0, 'gets': 1.0, 'son': 1.0, 'wasn': 1.0, 'replacement': 1.0, 'be': 1.0, 'toy': 2.0, 'easier': 1.0, 'strong': 1.0, 'put': 1.0, 'on': 2.0, 'make': 1.0, 'get': 1.0, 'sure': 1.0, 'as': 1.0, 'to': 3.0, 'because': 1.0, 'trip': 1.0, 't': 4.0, 'a': 5.0, 'we': 1.0, 'should': 1.0, 'recently': 1.0, 'and': 3.0, 'this': 2.0, 'lost': 1.0}
Word element => {'worth': 1.0, 'back': 2.0, 'put': 1.0, 'dark': 1.0, 'anyone': 1.0, 'easy': 1.0, 'able': 1.0, 'recommend': 1.0, 'was': 3.0, 'to': 5.0, 'i': 2.0, 'it': 3.0, 'this': 2.0, 'he': 2.0, 'a': 2.0, 'love': 1.0, 'for': 1.0, 'product': 1.0, 'the': 2.0, 'my': 1.0, 'grandson': 1.0, 'has': 1.0, 'used': 1.0, 'his': 2.0, 'even': 1.0, 'into': 2.0, 'find': 1.0, 'mouth': 2.0, 'and': 1.0, 'born': 1.0, 'move': 1.0, 'an': 1.0, 'own': 1.0, 'since': 1.0, 'who': 1.0, 'at': 1.0, 'early': 1.0, 'in': 1.0, 'age': 1.0, 'highly': 1.0, 'baby': 1.0, 'would': 1.0, 'pacimal': 1.0, 'pacifier': 1.0, 'wants': 1.0, 'use': 1.0, 'their': 1.0, 'is': 1.0}
Word element => {'night': 1.0, 'enough': 1.0, 'pacifier': 1.0, 'done': 1.0, 'is': 2.0, 'child': 2.0, 'at': 1.0, 'once': 1.0, 'wubbanubs': 1.0, 'better': 1.0, 'they': 1.0, 'than': 1.0, 'doll': 1.0, 'easy': 1.0, 'much': 1.0, 'to': 2.0, 'sleep': 1.0, 'or': 1.0, 'you': 1.0, 'so': 2.0, 'however': 1.0, 'are': 3.0, 'these': 2.0, 'the': 6.0, 'still': 1.0, 'find': 1.0, 'pacimals': 1.0, 'with': 2.0, 'it': 1.0, 'size': 1.0, 'twice': 1.0, 'big': 1.0, 'very': 1.0, 'for': 2.0, 'spell': 1.0, 'baby': 1.0}
Word element => {'torn': 1.0, 'because': 1.0, 'star': 1.0, 'is': 1.0, 'packaging': 1.0, 'of': 2.0, 'and': 4.0, 'shape': 1.0, 'left': 1.0, 'get': 1.0, 'very': 1.0, 'texture': 1.0, 'i': 4.0, 'up': 1.0, 'cheaper': 1.0, 'bear': 3.0, 'picture': 1.0, 'the': 9.0, 'that': 1.0, 'different': 2.0, 'was': 5.0, 'looking': 1.0, 'shown': 1.0, 'sent': 2.0, 'from': 1.0, 'looked': 1.0, 'it': 3.0, 'much': 3.0, 'thus': 1.0, 'have': 1.0, 'leslie': 1.0, 'lamb': 1.0, 'excited': 1.0, 'feel': 1.0, 'pacimal': 1.0, 'also': 1.0, 'item': 1.0, 'brody': 1.0, 'yet': 1.0, 'given': 1.0, 'imitation': 1.0, 'has': 1.0, 'disappointed': 1.0, 'like': 1.0, 'an': 1.0, 'all': 1.0, 'as': 1.0, 'to': 2.0, 'actual': 1.0, 'poorly': 1.0, 'me': 2.0, 'not': 1.0, 'give': 1.0, 'a': 1.0, '3': 1.0}
Word element => {'great': 1.0, 'oh': 1.0, 'than': 1.0, 'loved': 1.0, 'mt': 2.0, 'of': 1.0, 'instead': 1.0, '5': 2.0, 'still': 1.0, 'gets': 1.0, 'much': 1.0, 'reasone': 1.0, 'only': 1.0, 'not': 1.0, 'circle': 1.0, 'also': 1.0, 'teething': 1.0, 'part': 1.0, '4': 1.0, 'i': 1.0, 'detaches': 1.0, 'that': 3.0, 'everywhere': 1.0, 'original': 1.0, 'limbs': 1.0, 'ears': 3.0, 'daughter': 1.0, 'mo': 1.0, 'dropped': 1.0, 'was': 1.0, 'now': 2.0, 'suprisingly': 1.0, 'had': 1.0, 'when': 3.0, '11': 1.0, 'noticed': 1.0, 'bites': 1.0, 'old': 1.0, 'night': 1.0, 'mr': 2.0, 'one': 2.0, 'it': 2.0, 'she': 8.0, 'toutou': 2.0, 'around': 2.0, 'is': 2.0, '0': 1.0, 'this': 1.0, 'lost': 1.0, 'him': 2.0, 'are': 1.0, 'pacifier': 4.0, 'mos': 1.0, 'shorter': 1.0, 'wash': 1.0, 'up': 2.0, 'about': 1.0, 'my': 1.0, 'another': 1.0, 'calm': 1.0, 'and': 3.0, 'time': 1.0, 'a': 1.0, 's': 5.0, 'we': 4.0, 'goes': 1.0, 'got': 2.0, 'good': 1.0, 'her': 3.0, '2': 1.0, 'can': 2.0, 'since': 1.0, 'at': 1.0, 'wakes': 1.0, 'all': 1.0, 'to': 3.0, 'sleep': 1.0, 'floppy': 1.0, 'itself': 1.0, 'in': 1.0, 'the': 13.0, 'dark': 1.0, 'back': 1.0, 'stuff': 1.0, '3': 1.0, 'on': 2.0, 'friend': 1.0, 'own': 1.0, 'well': 1.0, 'toy': 1.0, 'likes': 1.0, 'suck': 1.0}
Word element => {'duraderos': 1.0, 'son': 1.0, 'este': 1.0, 'recomiendo': 1.0, 'calidad': 1.0, 'de': 1.0, 'y': 2.0, 'excelente': 1.0, 'exactamente': 1.0, 'que': 1.0, 'producto': 2.0, 'pedi': 1.0, 'entrega': 1.0, 'rapida': 1.0, 'buen': 1.0, 'lo': 1.0, 'resistentes': 1.0, 'a': 1.0, 'precio': 1.0}
Word element => {'soon': 1.0, 'very': 1.0, 'garden': 1.0, 'my': 1.0, 'planting': 1.0, 'condition': 1.0, 'good': 1.0, 'll': 1.0, 'be': 2.0, 'i': 2.0, 'us': 1.0, 'packaged': 1.0, 'to': 1.0, 'was': 2.0, 'and': 1.0, 'getting': 1.0, 'quickly': 1.0, 'initially': 1.0, 'pretty': 1.0, 'they': 1.0, 'came': 1.0, 'worried': 1.0, 'indoor': 1.0, 'in': 3.0, 'about': 1.0, 'seem': 1.0, 'these': 1.0, 'nicely': 1.0, 'the': 2.0, 'seeds': 1.0, 'item': 1.0, 'ruined': 1.0, 'it': 1.0, 'mail': 1.0, 'but': 1.0}
Word element => {'little': 1.0, 'in': 1.0, 'seeds': 1.0, 'to': 1.0, 'was': 1.0, 'will': 1.0, 'but': 1.0, 'it': 1.0, 'great': 1.0, 'wait': 1.0, 'tiny': 2.0, 's': 1.0, 'see': 1.0, 'a': 1.0, 'baggie': 1.0, 'do': 1.0, 'and': 1.0, 'that': 1.0, 'if': 2.0, 'they': 2.0, 'litle': 1.0, 'grow': 1.0, 'i': 1.0, 'all': 1.0, 'have': 1.0}
Word element => {'from': 1.0, 'harvesting': 1.0, 'start': 1.0, 'wait': 1.0, '3': 1.0, 'price': 1.0, 'can': 1.0, 'looking': 1.0, 'have': 1.0, 'pick': 1.0, 'few': 1.0, 'been': 1.0, 'add': 1.0, 'to': 3.0, 'had': 1.0, 'gardening': 1.0, 'new': 1.0, 'seeds': 1.0, 'a': 2.0, 'for': 1.0, 'love': 1.0, 'inches': 1.0, 'were': 1.0, 't': 1.0, 'grown': 1.0, 'the': 2.0, 'these': 2.0, 'great': 1.0, 'i': 3.0, 'my': 1.0, 'garden': 1.0, 'plants': 3.0, 'perfect': 1.0, 'already': 1.0, 'got': 1.0, 'amount': 1.0, 'of': 1.0}
Word element => {'fruit': 1.0, 'update': 1.0, 'trick': 1.0, 'better': 1.0, 'circulate': 1.0, 'air': 1.0, 'seedlings': 2.0, 'covering': 1.0, 'almost': 1.0, 'remedy': 1.0, 'seemed': 1.0, 'sprinkled': 1.0, 'that': 3.0, 'over': 1.0, 'don': 1.0, 'first': 1.0, 'soil': 2.0, 'the': 8.0, 'think': 1.0, 'on': 1.0, 'mold': 2.0, 'kept': 1.0, 'white': 2.0, 'with': 2.0, 'will': 1.0, 'also': 1.0, 'needed': 1.0, 'just': 2.0, 'problem': 2.0, 'be': 1.0, 'rate': 1.0, 'good': 1.0, 'moist': 1.0, 'or': 1.0, 'anti': 1.0, 'have': 1.0, 'review': 1.0, 'well': 2.0, 'fungal': 1.0, 'see': 1.0, 'this': 1.0, 'doing': 1.0, 'cinnamon': 1.0, 'i': 8.0, 'far': 1.0, 'took': 1.0, 'about': 1.0, 'planted': 1.0, 'germination': 2.0, 'time': 1.0, 'so': 4.0, 'natural': 1.0, 'd': 1.0, 'after': 2.0, '85': 1.0, 'didn': 1.0, 'try': 1.0, 'do': 2.0, 'seeds': 2.0, 'them': 1.0, 'some': 1.0, 'these': 1.0, 'they': 3.0, 'are': 2.0, 'now': 1.0, 'weeks': 1.0, 'week': 1.0, 'little': 1.0, 'very': 1.0, 'too': 1.0, 'and': 3.0, 'but': 2.0, '80': 1.0, 'anything': 1.0, 'sprouts': 1.0, 'say': 1.0, 'growing': 2.0, 'three': 1.0, 'at': 2.0, 'all': 1.0, 'to': 4.0, 'least': 1.0, 'could': 1.0, 'ago': 1.0, 'a': 5.0, 't': 2.0, 'we': 2.0, 'might': 1.0, 'stopped': 1.0, 'it': 1.0, 'while': 1.0, 'start': 1.0, 'bear': 1.0, 'when': 1.0, 'had': 3.0, 'thought': 1.0, 'there': 1.0}
Word element => {'when': 1.0, 'fruit': 1.0, 'on': 1.0, 'report': 1.0, 'll': 1.0, 'than': 1.0, 'better': 1.0, 'heat': 1.0, 'tomatoes': 2.0, 'comes': 1.0, 'these': 1.0, 'forward': 1.0, 'work': 1.0, 'make': 1.0, 'you': 1.0, 'if': 1.0, 'but': 1.0, 'reward': 1.0, 'here': 1.0, 'challenge': 1.0, 'look': 1.0, 'is': 1.0, 'gardening': 1.0, 'dozen': 1.0, 'neighbor': 1.0, 'some': 1.0, 'desert': 2.0, 'javalina': 1.0, '2': 1.0, 'varieties': 1.0, 'forming': 1.0, 'tall': 1.0, 'and': 6.0, 'brutality': 1.0, 'ft': 1.0, 'supposed': 1.0, 'today': 1.0, 'about': 1.0, 'told': 1.0, 'relatives': 1.0, 'as': 2.0, 'all': 1.0, 'larger': 1.0, 'unwanted': 1.0, 'that': 1.0, 'because': 1.0, 'strong': 1.0, 'april': 1.0, 'up': 2.0, 'nearly': 1.0, 'blossoms': 1.0, 'week': 2.0, 'he': 1.0, 'wire': 1.0, 'see': 1.0, 'a': 5.0, 'take': 1.0, 'we': 1.0, 'guests': 1.0, 'tucson': 1.0, 'after': 1.0, '10th': 1.0, 'ate': 1.0, 'works': 1.0, 'them': 3.0, 'thinnings': 1.0, 'working': 1.0, 'first': 1.0, 'are': 3.0, 'growing': 1.0, 'ordering': 1.0, 'large': 1.0, 'just': 1.0, 'by': 1.0, 'well': 2.0, 'i': 9.0, 'can': 2.0, 'so': 1.0, 'strength': 1.0, 'very': 1.0, 'planted': 1.0, 'within': 1.0, 'in': 3.0, 'had': 1.0, 'rabbits': 1.0, 'sprouted': 1.0, 'manner': 1.0, 'they': 1.0, 'came': 1.0, 'hate': 1.0, 'real': 1.0, 'waste': 1.0, 'my': 1.0, 'me': 1.0, 'fence': 1.0, 'wild': 2.0, 'garden': 2.0, 'pots': 1.0, 'pigs': 1.0, 'stake': 1.0, 'seeds': 2.0, 'keep': 1.0, 'live': 1.0, 'az': 1.0, 'cherry': 1.0, 'really': 1.0, 'gave': 1.0, 'under': 1.0, 'cloth': 1.0, 'shade': 1.0, 'it': 3.0, 'mitigate': 1.0, 'have': 1.0, 'the': 14.0, 'of': 1.0, 'sun': 1.0, 'received': 1.0, 'also': 1.0, 'with': 1.0, 'industrial': 1.0, 'many': 1.0, 'panels': 1.0, 'to': 8.0, 'timely': 1.0, 'pig': 1.0, 'out': 2.0, 'like': 1.0, 'deer': 1.0}
Word element => {'anyone': 1.0, 'recommend': 1.0, 'planted': 1.0, 'chemicals': 1.0, 'or': 1.0, 'use': 1.0, 'not': 1.0, 'summer': 1.0, 'this': 2.0, 'in': 1.0, 'had': 1.0, 'we': 1.0, 'high': 1.0, 'with': 1.0, 'feet': 1.0, 'even': 1.0, 'got': 1.0, 'almost': 1.0, 'then': 1.0, 'took': 1.0, 'once': 1.0, 'grew': 1.0, 'fertilizers': 1.0, 'inches': 1.0, 'last': 1.0, 'transplanted': 1.0, 'leveling': 1.0, 'tall': 1.0, 'and': 4.0, 'getting': 1.0, 'they': 2.0, 'hit': 1.0, 'these': 1.0, 'the': 4.0, '2': 1.0, 'do': 1.0, 'seeds': 1.0, 'deer': 2.0, 'them': 3.0, 'started': 1.0, 'early': 1.0, '5': 1.0, 'before': 1.0, 'indoors': 1.0, 'spring': 1.0, 'just': 1.0, 'heat': 1.0, 'by': 1.0, 'plants': 1.0, 'to': 1.0, 'any': 1.0, 'outside': 1.0, 'all': 1.0, 'about': 1.0, 'alone': 1.0, 'i': 6.0, '4': 1.0, 'frost': 1.0, 'bought': 1.0, 'months': 1.0, 'ground': 1.0, 'area': 1.0, 'left': 1.0, 'off': 2.0, 'protecting': 1.0, 'attacks': 1.0, 'are': 1.0, 'from': 2.0, 'later': 1.0, 'again': 1.0, 'am': 1.0, 'now': 1.0, 'other': 1.0, 'tomatos': 1.0}
Word element => {'at': 1.0, 'purchase': 1.0, 'plan': 1.0, 'far': 2.0, 'pleased': 1.0, 'seedlings': 1.0, 'this': 2.0, 'have': 1.0, 'strong': 1.0, 'along': 1.0, 'season': 1.0, 'point': 1.0, 'planted': 1.0, 'month': 1.0, 'these': 1.0, 'the': 2.0, 'progress': 1.0, 'received': 1.0, 'a': 1.0, 'we': 2.0, 'ago': 1.0, '25': 1.0, '17': 1.0, 'i': 2.0, 'good': 1.0, 'seed': 1.0, 'will': 1.0, 'back': 1.0, 'or': 1.0, 'further': 1.0, 'so': 6.0, 'update': 1.0, 'growing': 1.0, 'of': 1.0, 'plant': 1.0, 'them': 1.0, 'review': 1.0, 'in': 2.0, 'little': 1.0, 'come': 1.0, 'bucket': 1.0, 'would': 1.0, 'again': 1.0, 'am': 1.0, 'when': 1.0, 'they': 2.0, 'garden': 1.0, 'get': 1.0, 'probably': 1.0, 'to': 2.0, 'our': 1.0, 'as': 1.0}
Word element => {'start': 1.0, 'review': 1.0, 'will': 1.0, 'i': 2.0, 'once': 1.0, 'still': 1.0, 'but': 1.0, 'didn': 1.0, 'post': 1.0, 't': 1.0, 'planting': 1.0, 'hoping': 1.0, 'test': 1.0, 'finish': 1.0, 'a': 1.0, 're': 1.0, 'them': 2.0, 'garden': 1.0, 'faster': 1.0, 'was': 1.0, 'would': 1.0}
Word element => {'pics': 1.0, 'this': 1.0, 'again': 1.0, 'will': 1.0, 'glad': 1.0, 'store': 1.0, 'plant': 1.0, 'than': 1.0, 'better': 1.0, 'way': 1.0, 'wonderful': 1.0, 'sweet': 1.0, 'were': 1.0, 'n': 3.0, 'tomatoes': 1.0, 'they': 2.0, 'per': 1.0, '2': 1.0, '7': 1.0, 'in': 1.0, 'them': 2.0, 'of': 2.0, 'lot': 1.0, 'up': 1.0, 'coir': 1.0, '3': 1.0, 'omg': 1.0, 'bags': 2.0, 'understand': 1.0, 'pellets': 1.0, 'tasting': 1.0, 'thinning': 1.0, 'plants': 1.0, 'with': 1.0, 'and': 3.0, 'guys': 1.0, 'germinated': 1.0, 'grew': 1.0, 'single': 1.0, 'start': 1.0, '5': 1.0, 'germinate': 1.0, 'sproutlings': 1.0, 'february': 1.0, 'fast': 1.0, 'tons': 1.0, 'used': 1.0, 'beautifully': 1.0, 'these': 4.0, 'take': 1.0, 'many': 1.0, 'sprouted': 1.0, 'a': 2.0, 't': 1.0, 'the': 1.0, 'gal': 1.0, 'year': 2.0, 'around': 1.0, 'new': 1.0, 'i': 10.0, 'indoors': 1.0, 'tray': 1.0, 'bought': 3.0, 'burpee': 1.0, 'all': 1.0, 'grow': 1.0, 'to': 4.0, 'so': 4.0, 'gardening': 1.0, 'didn': 1.0, 'got': 2.0, 'really': 1.0, 'every': 1.0, 'last': 1.0, 'seed': 1.0, 'brand': 1.0, 'planted': 2.0, 'm': 1.0, 'try': 1.0, 'seeds': 3.0, 'much': 1.0, 'about': 1.0, 'planting': 1.0, 'ended': 1.0}
Word element => {'outlook': 1.0, 'using': 1.0, 'system': 1.0, 'the': 3.0, 'get': 1.0, 'far': 1.0, 'how': 1.0, 'see': 1.0, 'returned': 1.0, 'my': 1.0, 'germinate': 1.0, 'hobby': 1.0, 'new': 1.0, 'has': 1.0, 'well': 1.0, 'for': 3.0, 'and': 4.0, 'with': 1.0, 'indoor': 1.0, 'in': 1.0, 'was': 1.0, 'say': 1.0, 'weather': 1.0, 'guess': 1.0, 'never': 1.0, 'do': 1.0, 'seeds': 4.0, 'this': 1.0, 'thanks': 1.0, 'someone': 1.0, 'am': 3.0, 'you': 2.0, 'healthy': 2.0, 'trying': 1.0, 'a': 2.0, 's': 1.0, 'gave': 2.0, 'about': 1.0, 'not': 1.0, 'me': 2.0, 'wow': 1.0, 'give': 1.0, 'up': 1.0, 'gardening': 2.0, 'tomato': 1.0, 'wait': 2.0, 'warmer': 1.0, 'got': 2.0, 'these': 1.0, 'can': 3.0, '2': 1.0, 'all': 1.0, 'to': 5.0, 'as': 2.0, 'from': 1.0, 'day': 1.0, 'i': 10.0, 'two': 1.0, 'other': 1.0, 'types': 1.0, 'hope': 1.0, 'just': 1.0, 'sprout': 1.0, 'started': 1.0, 'they': 2.0}
Word element => {'summer': 1.0, 'next': 1.0, 'future': 1.0, 'the': 1.0, 'in': 1.0, 'again': 1.0, 'i': 1.0, 'order': 1.0, 'planted': 1.0, 'growing': 1.0, 'them': 1.0, 'and': 2.0, 'loved': 1.0, 'great': 2.0, 'by': 1.0, 'will': 1.0, 'tasting': 1.0, 'from': 1.0}
Word element => {'on': 1.0, 'munch': 1.0, 'can': 1.0, 'days': 1.0, 'two': 1.0, 'almost': 1.0, 'for': 1.0, 'three': 2.0, 'been': 1.0, 'that': 1.0, 'wait': 1.0, 'received': 1.0, 'i': 1.0, 'weeks': 1.0, 'week': 1.0, 'last': 1.0, 'lost': 2.0, 'to': 2.0, 'had': 1.0, 'was': 1.0, 'free': 1.0, 'and': 2.0, 'packet': 2.0, 'plants': 1.0, 'in': 3.0, 'company': 1.0, 'a': 1.0, 'seeds': 2.0, 'them': 2.0, 'of': 2.0, 'replaced': 1.0, 'growing': 1.0, 'already': 1.0, 'then': 1.0, 'apparently': 1.0, 't': 1.0, 'sprouted': 1.0, 'nicely': 1.0, 'the': 3.0, 'these': 1.0, 'mail': 2.0, 'this': 1.0, 'charge': 1.0, 'planted': 1.0}
Word element => {'tomatoes': 1.0, 'hope': 1.0, 'are': 2.0, 'growing': 1.0, 'say': 2.0, 'several': 1.0, 'as': 2.0, 'very': 1.0, 'friends': 1.0, 'be': 1.0, 'to': 2.0, 'seem': 1.0, 'garden': 1.0, 'right': 1.0, 'seeds': 1.0, 'they': 6.0, 'inside': 1.0, 'house': 1.0, 'great': 1.0, 'these': 1.0, 'the': 3.0, 'started': 2.0, 'about': 2.0, 'i': 3.0, 'sweet': 1.0, 'gave': 1.0, 'when': 1.0, '4': 1.0, 'hardy': 1.0, '10': 1.0, 'tall': 1.0, 'days': 1.0, 'later': 1.0, 'away': 2.0, 'and': 2.0, 'inches': 1.0, 'were': 2.0, 'planted': 1.0, 'in': 1.0}
Word element => {'gigantic': 1.0, 'last': 1.0, 'bush': 1.0, 'from': 1.0, 'volunteer': 1.0, 'a': 1.0, 'these': 1.0, 'with': 1.0, 'year': 2.0, 'have': 1.0, 'provide': 1.0, 'us': 1.0, 'the': 1.0, 'best': 1.0, 'tomatoes': 1.0, 'every': 1.0, 'even': 1.0}
Word element => {'them': 1.0, 't': 1.0, 'wait': 1.0, 'can': 1.0, 'just': 1.0, 'are': 1.0, 'they': 1.0, 'bloom': 1.0, 'ever': 1.0, 'i': 1.0, 'seed': 1.0, 'about': 1.0, 'planted': 1.0, 'starting': 1.0, 'in': 1.0, 'sprouted': 1.0, 'taste': 1.0, 'weeks': 1.0, 'to': 2.0, 'right': 1.0, '2': 1.0, 'now': 1.0}
Word element => {'em': 1.0, 'miracle': 1.0, 'or': 1.0, 'like': 1.0, 'not': 1.0, 'do': 1.0, 'hard': 1.0, 'the': 1.0, '21': 1.0, 'quickly': 1.0, 'who': 1.0, 'at': 1.0, 'can': 2.0, 'blankets': 3.0, 'cool': 1.0, 'once': 1.0, 'of': 2.0, 'up': 1.0, 'out': 2.0, 'enough': 2.0, 'legs': 1.0, 'than': 1.0, 'say': 1.0, 'have': 2.0, 'with': 1.0, 'velcro': 2.0, 'faster': 1.0, 'a': 2.0, 'sweet': 1.0, 'she': 1.0, 'i': 1.0, 'die': 1.0, 'arms': 1.0, 'little': 1.0, 'grew': 1.0, 'summer': 1.0, 'tuck': 1.0, 'and': 3.0, 'swaddle': 2.0, 'birth': 1.0, 'buster': 1.0, 'awesome': 1.0, 'long': 1.0, 'bust': 1.0, 'traditional': 1.0, 'you': 2.0, 'houdini': 1.0, 'receiving': 1.0, 'these': 1.0, 'are': 1.0, 'swaddlers': 1.0, 'to': 2.0, 'use': 1.0, 'during': 1.0, 'large': 1.0, 'wrapped': 1.0, 'your': 1.0, 'baby': 1.0, 'love': 1.0, 'for': 1.0}
Word element => {'chew': 1.0, 'need': 1.0, 'speech': 1.0, 'motor': 1.0, 'sensory': 1.0, 'use': 1.0, 'fun': 1.0, 'soothes': 1.0, 'just': 2.0, 'they': 2.0, 'and': 3.0, 'classroom': 1.0, 'delayed': 1.0, 'in': 1.0, 'it': 2.0, 'durable': 1.0, 'of': 2.0, 'lot': 1.0, 'who': 2.0, 'stand': 1.0, 'is': 1.0, 'one': 1.0, 'love': 1.0, 'for': 2.0, 'made': 1.0, 'them': 4.0, 'the': 2.0, 'chewing': 1.0, 'replace': 1.0, 'not': 2.0, 'those': 2.0, 'other': 1.0, 'want': 1.0, 'apart': 1.0, 'falling': 1.0, 'teeth': 1.0, 'about': 1.0, 'with': 2.0, 'complain': 1.0, 'enough': 2.0, 'chewy': 1.0, 'after': 1.0, 'adult': 1.0, 'tubes': 1.0, 'perfect': 1.0, 'this': 1.0, 'soft': 1.0, 'you': 2.0, 'hurt': 1.0, 'autism': 1.0, 'but': 2.0, 'last': 1.0, 'seem': 1.0, 'awhile': 2.0, 'developmentally': 1.0, 'do': 1.0, 'couple': 1.0, 'calms': 1.0, 'have': 3.0, 'up': 1.0, 'nearly': 1.0, 'our': 1.0, 'to': 7.0, 'as': 2.0, 'quickly': 1.0, 'therapy': 2.0, 'others': 1.0, 'we': 1.0, 's': 1.0, 'a': 2.0, 'users': 1.0}
Word element => {'hollow': 1.0, 'through': 1.0, 'likes': 1.0, 'she': 1.0, 'held': 1.0, 'be': 1.0, 'can': 1.0, 'calm': 1.0, 'acts': 1.0, 'on': 1.0, 'chewing': 1.0, 'when': 1.0, 'adult': 2.0, 'toughest': 1.0, 'look': 1.0, 'to': 3.0, 'a': 1.0, 'an': 1.0, 'blue': 1.0, 'chewie': 1.0, 'manipulated': 1.0, 'tubes': 1.0, 'developmentally': 1.0, 'works': 1.0, 'with': 1.0, 'it': 3.0, 'use': 1.0, 'buy': 1.0, 'i': 1.0, 'one': 1.0, 'the': 4.0, 'delayed': 1.0, 'best': 1.0, 'as': 1.0, 'and': 4.0, 'tube': 1.0, 'also': 1.0, 'lasts': 1.0, 'is': 2.0, 'longer': 1.0}
Word element => {'purchased': 1.0, 'i': 1.0, 'glad': 1.0, 'wear': 1.0, 'long': 1.0, 'rugged': 1.0, 'after': 1.0, 'trying': 1.0, 'the': 1.0, 'them': 1.0, 'a': 1.0, 'is': 1.0, 'others': 1.0, 'this': 1.0, 'life': 1.0, 'really': 1.0, 'nice': 1.0, 'very': 1.0, 'and': 1.0, 'for': 1.0, 'design': 1.0}
Word element => {'needs': 1.0, 'son': 2.0, 'him': 2.0, 'continue': 1.0, 'they': 1.0, 'chewy': 1.0, 'outlet': 1.0, 'regularly': 1.0, 'tubes': 1.0, 'fingers': 2.0, 'prevent': 1.0, 'my': 2.0, 'stimming': 1.0, 'chewing': 1.0, 'and': 3.0, 'one': 1.0, 'for': 1.0, 'love': 1.0, 'the': 1.0, 'are': 1.0, 'sensory': 1.0, 'to': 2.0, 'all': 1.0, 'is': 2.0, 'give': 1.0, 'autistic': 1.0, 'of': 2.0, 'up': 1.0, 'his': 3.0, 'chew': 1.0, 'does': 1.0, 'from': 1.0, 'part': 1.0, 'stims': 1.0, 'on': 1.0, 'an': 1.0, 'but': 1.0, 'i': 1.0, 'these': 2.0, 'products': 1.0, 'day': 1.0, 'buy': 1.0, 'them': 2.0, 'frequently': 1.0, 'everyday': 1.0, 'price': 1.0, 'go': 1.0, 's': 1.0}
Word element => {'were': 1.0, 'different': 1.0, 'smooth': 1.0, 'chew': 1.0, 'around': 1.0, 'i': 1.0, 'on': 2.0, 'chewing': 1.0, 'and': 2.0, 'to': 1.0, 'was': 2.0, 'bought': 1.0, 'grandson': 1.0, 'other': 1.0, 'textures': 1.0, 'have': 2.0, 'my': 1.0, 'some': 1.0, 'he': 1.0, 'everything': 1.0, 'so': 1.0, 'chewy': 1.0, 'particular': 1.0, 'been': 1.0, 'they': 2.0, 'tubes': 1.0, 'ones': 1.0, 'these': 2.0, 'great': 1.0, 'always': 1.0, 'carrying': 1.0, 'them': 1.0}
Word element => {'us': 1.0, 'stars': 1.0, '5': 1.0, 'increased': 1.0, 'and': 3.0, 'issues': 2.0, 'are': 2.0, 'sensory': 1.0, 'have': 3.0, 'parents': 1.0, 'one': 1.0, 'other': 2.0, 'neither': 1.0, 'focus': 1.0, 'my': 4.0, 'the': 3.0, 'whose': 1.0, 'just': 1.0, 'low': 1.0, 'value': 1.0, 'things': 1.0, 'two': 1.0, 'i': 3.0, 'both': 1.0, 'however': 1.0, 'rated': 1.0, 'about': 1.0, 'toy': 1.0, 'them': 3.0, 'has': 1.0, 'since': 2.0, 'at': 1.0, 's': 1.0, 't': 1.0, 'we': 1.0, 'a': 1.0, 'played': 1.0, 'never': 1.0, 'biters': 1.0, 'sept': 1.0, 'wonderful': 2.0, 'fact': 1.0, 'old': 2.0, 'or': 2.0, 'neck': 1.0, 'd': 1.0, 'chewed': 1.0, 'so': 1.0, 'can': 2.0, 'in': 1.0, 'preschool': 1.0, 'very': 1.0, 'fun': 1.0, 'p': 1.0, 'from': 1.0, 'year': 2.0, 'son': 2.0, 'wants': 1.0, 'durable': 1.0, 'hands': 1.0, 'children': 1.0, 'did': 1.0, 'wears': 1.0, 'with': 1.0, 'put': 1.0, 'concentration': 1.0, 'heard': 1.0, 'still': 2.0, 'every': 1.0, '2013': 1.0, 'see': 1.0, 'getting': 1.0, 'items': 1.0, 'how': 1.0, 'he': 3.0, 'sturdy': 1.0, 'they': 1.0, 'be': 1.0, 'grab': 1.0, 'to': 1.0, 'chew': 1.0, 'having': 1.0, 'didn': 1.0, 'for': 2.0, 'kids': 1.0, 'on': 4.0, 'update': 1.0, 'work': 2.0, 'daily': 1.0, 'now': 2.0, 'major': 1.0, 'free': 1.0, 'was': 1.0, 'chewing': 1.0, 'school': 1.0, 'use': 1.0, 'lanyard': 1.0, 'that': 1.0, 'his': 3.0, 'around': 1.0, 'it': 2.0, 'whenever': 1.0, 'dramatically': 1.0}
Word element => {'that': 1.0, 'i': 1.0, 'like': 1.0, 'p': 1.0, 'mouth': 1.0, 'walk': 1.0, 'down': 1.0, 'her': 3.0, 'seem': 1.0, 'but': 1.0, 'dangerous': 1.0, 'doesn': 1.0, 'using': 1.0, 'for': 1.0, 'q': 1.0, 'sitting': 1.0, 'teething': 1.0, 'only': 1.0, 'with': 1.0, 'this': 1.0, 'loves': 2.0, 'still': 1.0, 'is': 3.0, 'on': 1.0, 'chewing': 1.0, 'in': 2.0, 'too': 1.0, 'daughter': 1.0, 'delayed': 1.0, 'to': 3.0, 'now': 1.0, 'was': 2.0, 'recommended': 1.0, 'my': 1.0, 'and': 2.0, 'me': 1.0, 'effectively': 1.0, 'she': 3.0, 'because': 2.0, 'chew': 1.0, 'doing': 1.0, 'them': 1.0, 't': 1.0, 'the': 2.0, 'great': 2.0}
Word element => {'lol': 1.0, 'too': 1.0, 'them': 1.0, 'has': 1.0, 'problem': 1.0, 'dog': 1.0, 'these': 1.0, 'great': 1.0, 'tried': 1.0, 'are': 1.0, 'the': 1.0, 'my': 2.0, 'only': 1.0, 'for': 1.0, 'chew': 2.0, 'is': 1.0, 'son': 1.0, 'on': 2.0, 'to': 2.0}
Word element => {'try': 1.0, 'little': 1.0, 'my': 1.0, 'what': 1.0, 'one': 1.0, 'i': 1.0, 'it': 2.0, 'can': 1.0, 'say': 1.0, 'this': 1.0, 'is': 1.0, 'a': 1.0, 'good': 1.0, 'like': 1.0, 'very': 1.0, 'quality': 1.0, 'and': 1.0}
Word element => {'there': 1.0, 'community': 1.0, 'peru': 1.0, 'in': 1.0, 'cotton': 1.0, 'lion': 1.0, 'one': 1.0, 'love': 1.0, 'little': 1.0, 'his': 1.0, 'cuddly': 1.0, 'soft': 1.0, 'eco': 1.0, 'and': 6.0, 'handmade': 2.0, 'lovely': 1.0, 'stuffed': 1.0, 'dolls': 3.0, 'friendly': 1.0, 'super': 1.0, 'at': 1.0, 'well': 1.0, 'a': 1.0, 'bright': 1.0, 'loves': 1.0, 'that': 1.0, 'support': 1.0, 'these': 2.0, 'the': 4.0, 'drags': 1.0, '100': 1.0, 'charles': 1.0, 'blabla': 2.0, 'made': 1.0, 'are': 4.0, 'details': 1.0, 'from': 1.0, 'to': 2.0, 'our': 1.0, 'as': 1.0, 'it': 2.0, 'with': 1.0, 'cheerful': 1.0, 'everywhere': 1.0, 'uses': 1.0, 'lovie': 1.0, 'night': 1.0, 'faces': 1.0, 'they': 1.0, 'attractive': 1.0, 'modern': 1.0, 'additions': 1.0, 'nursery': 1.0, 'also': 1.0}
Word element => {'to': 1.0, 'tempted': 1.0, 'm': 1.0, 'but': 1.0, 'shower': 1.0, 'toys': 1.0, 'ever': 1.0, 'so': 3.0, 'little': 1.0, 'them': 1.0, 'made': 1.0, 'keep': 1.0, 'cutest': 1.0, 'are': 1.0, 'of': 1.0, 'omg': 1.0, 'gift': 1.0, 'cute': 1.0, 'the': 1.0, 'these': 1.0, 'great': 1.0, 'baby': 1.0, 'colors': 1.0, 'bought': 1.0, 'and': 1.0, 'i': 2.0, 'two': 1.0, 'for': 1.0, 'part': 1.0, 'well': 1.0, 'a': 1.0}
Word element => {'and': 1.0, 'cute': 1.0, 'super': 1.0, 'seats': 1.0, 'as': 2.0, 'unique': 1.0, 'strollers': 1.0, 'want': 1.0, 'packs': 1.0, 'what': 1.0, 'wells': 1.0, 'car': 1.0, 'clips': 1.0, 'along': 1.0, 'could': 1.0, 'for': 1.0, 'baby': 2.0, 'more': 1.0, 'the': 1.0, 'to': 1.0, 'with': 1.0, 'you': 1.0, 's': 1.0, 'clothes': 1.0, 'helpful': 1.0, 'pacifiers': 1.0, 'toys': 1.0}
Word element => {'too': 1.0, 'chewing': 1.0, 'from': 1.0, 'dogs': 1.0, 'play': 1.0, 'them': 3.0, 'to': 1.0, 'love': 2.0, 're': 1.0, 'my': 2.0, 'toxic': 1.0, 'and': 3.0, 'babies': 1.0, 'work': 1.0, 'with': 1.0, 'great': 1.0, 'these': 1.0, 'they': 1.0, 'chew': 1.0, 'safe': 1.0, 'just': 1.0, 'i': 3.0, 'that': 1.0, 'non': 1.0, 'wish': 1.0, 'could': 1.0, 'keep': 1.0}
Word element => {'another': 1.0, 'he': 1.0, 'use': 1.0, 'to': 2.0, 'baby': 1.0, 'find': 1.0, 'disliked': 1.0, 'my': 1.0, 'for': 2.0, 'think': 1.0, 'him': 1.0, 'it': 2.0, 's': 1.0, 'used': 1.0, 'light': 1.0, 'i': 3.0, 'one': 3.0, 'bought': 1.0, 'have': 1.0, 'this': 1.0, 'too': 1.0, 'heavy': 1.0}
Word element => {'clouseau': 1.0, 'jacques': 1.0, 'such': 1.0, 'who': 1.0, 'person': 1.0, 'toy': 1.0, 'wooden': 1.0, 'price': 1.0, 'account': 1.0, 'catamaran': 1.0, 'that': 1.0, 'into': 2.0, 'separating': 1.0, 'side': 2.0, 'done': 1.0, 'was': 2.0, 'injustice': 1.0, 'an': 1.0, 'solid': 1.0, 'each': 1.0, 'were': 1.0, 'pieces': 2.0, 'long': 1.0, 'had': 1.0, 'thought': 1.0, 'one': 2.0, 'entire': 1.0, 'remained': 1.0, 'but': 1.0, 'water': 1.0, 'take': 2.0, 'other': 1.0, 'began': 1.0, 'horizontally': 1.0, 'by': 1.0, 'wet': 1.0, 'up': 2.0, 'with': 1.0, 'piece': 2.0, 'on': 2.0, 'playing': 1.0, 'the': 10.0, 'home': 1.0, 'made': 2.0, 'out': 1.0, 'my': 4.0, 'is': 3.0, 'son': 3.0, 'as': 2.0, 'to': 3.0, 'this': 1.0, 'christmas': 1.0, 'colorful': 1.0, 'it': 10.0, 'french': 1.0, 'looked': 1.0, 'swelled': 1.0, 'received': 1.0, 'he': 1.0, 'first': 1.0, 'too': 1.0, 'soon': 1.0, 'and': 5.0, 'like': 1.0, 'wood': 3.0, 'appreciate': 1.0, 'weather': 1.0, 'cast': 1.0, 'warmed': 1.0, 'real': 1.0, 'took': 1.0, 'two': 2.0, 'i': 2.0, 'separated': 1.0, 'could': 2.0, 'a': 4.0, 'we': 2.0, 's': 1.0, 'art': 1.0, 'for': 2.0, 'where': 1.0, 'only': 1.0, 'try': 1.0, 'got': 2.0, 'pond': 1.0, 'time': 3.0, 'when': 1.0, 'sailcloth': 1.0, 'tied': 1.0, 'inspector': 1.0, 'string': 1.0, 'parent': 1.0, 'off': 1.0, 'afloat': 1.0, 'of': 3.0, 'once': 1.0}
Word element => {'disappointed': 1.0, 'picture': 1.0, 'one': 1.0, 'did': 1.0, 'receive': 1.0, 'the': 2.0, 'listed': 1.0, 'satisfied': 1.0, 'all': 1.0, 'items': 1.0, 'not': 3.0, 'was': 1.0, 'in': 2.0, 'baby': 1.0, 'description': 1.0, 'bath': 1.0}
Word element => {'allowed': 1.0, 'double': 1.0, 'her': 1.0, 'in': 1.0, 'space': 1.0, 'allowing': 1.0, 'finally': 1.0, 'periodically': 1.0, 'bolts': 1.0, 'do': 1.0, 'though': 1.0, 'easy': 1.0, 'together': 1.0, 'went': 1.0, 'second': 1.0, 'haul': 1.0, 'long': 1.0, 'converts': 1.0, 'choice': 1.0, 'no': 1.0, 'really': 1.0, 'more': 1.0, 'is': 2.0, 'room': 2.0, 'with': 2.0, 'this': 1.0, 'first': 1.0, 'was': 1.0, 'now': 1.0, 'had': 1.0, 'stuffed': 1.0, 'crib': 1.0, 'i': 5.0, 'to': 2.0, 'all': 1.0, 'grow': 1.0, 'have': 3.0, 'small': 2.0, 'so': 1.0, 'taking': 1.0, 'been': 1.0, 'that': 3.0, 'gamble': 1.0, 'felt': 1.0, 'it': 3.0, 'accompanied': 1.0, 'she': 2.0, 'would': 2.0, 'out': 2.0, 'fits': 1.0, 'very': 1.0, 'pleased': 1.0, 'the': 2.0, 'but': 1.0, '2': 1.0, 'a': 4.0, 't': 1.0, 'results': 1.0, 'still': 1.0, 'twin': 1.0, 'stretched': 1.0, 'by': 1.0, 'play': 1.0, 'and': 2.0, 'too': 1.0, 'tighten': 1.0, 'animals': 1.0, 'don': 1.0, 'for': 2.0, 'afraid': 1.0, 'be': 1.0}
Word element => {'items': 1.0, 'closet': 1.0, 'my': 1.0, 'other': 1.0, 'out': 1.0, 'ribbon': 1.0, 'to': 1.0, 'as': 1.0, 'very': 1.0, 'an': 2.0, 'hat': 2.0, 'baby': 1.0, 'quality': 1.0, 'nice': 2.0, 'the': 4.0, 'it': 1.0, 'this': 1.0, 'cotton': 1.0, 'about': 1.0, 'paper': 1.0, 'inner': 1.0, 'i': 1.0, 'got': 1.0, 'card': 1.0, 's': 1.0, 'a': 2.0, 'well': 1.0, 'and': 3.0, 'me': 1.0, 'was': 2.0, 'check': 1.0, 'top': 1.0, 'tissue': 1.0, 'definitely': 1.0, 'delighted': 1.0, 'button': 1.0, 'itself': 1.0, 'handwritten': 1.0, 'around': 1.0, 'is': 1.0, 'lining': 1.0, 'everything': 1.0, 'detail': 1.0, 'want': 1.0, 'made': 1.0, 'adorable': 1.0, 'at': 1.0, 'packaging': 1.0, 'of': 1.0, 'plain': 1.0, 'linen': 1.0, 'gift': 3.0, 'sweet': 1.0, 'with': 3.0, 'piece': 1.0, 'makes': 1.0}
Word element => {'cute': 1.0, 'but': 1.0, 'small': 1.0, 'is': 1.0, 'collection': 1.0, 'flatophant': 1.0, 'our': 1.0, 'we': 1.0, 'this': 1.0, 'item': 1.0, 'have': 1.0, 'had': 1.0, 'to': 1.0, 'love': 1.0, 'it': 2.0, 'part': 1.0, 'very': 1.0, 'as': 1.0, 'of': 1.0}
Word element => {'bottom': 1.0, 'straps': 1.0, 'where': 1.0, 'out': 1.0, 'objects': 1.0, 'see': 1.0, 'would': 1.0, 'adequate': 1.0, 'sewing': 1.0, 'materials': 1.0, 'terms': 1.0, 'appears': 1.0, 'quality': 1.0, 'amazingly': 1.0, 'height': 1.0, 'useful': 1.0, 'also': 1.0, 'back': 1.0, 'most': 1.0, '2': 2.0, 'notebook': 2.0, 'shape': 1.0, 'pack': 1.0, 'standard': 2.0, 'go': 1.0, '14': 4.0, 'w': 2.0, 'small': 2.0, 'a': 3.0, 'might': 1.0, 'hold': 1.0, 'depth': 1.0, 'am': 2.0, '11': 2.0, 'barely': 1.0, 'top': 2.0, 'can': 1.0, 'dimensions': 2.0, 'needed': 1.0, 'enough': 1.0, 'happy': 1.0, 'pre': 1.0, 'kindergarten': 1.0, 'rounding': 1.0, 'at': 3.0, 'is': 2.0, '1': 2.0, 'big': 1.0, 'occurs': 1.0, 'school': 1.0, 'inspection': 1.0, 'with': 1.0, 'this': 1.0, 'functional': 1.0, 'it': 6.0, 'nice': 1.0, 'stated': 1.0, 'otherwise': 1.0, 'expected': 1.0, 'i': 5.0, 'well': 1.0, 'and': 4.0, 'be': 4.0, 'product': 2.0, '10': 1.0, 'for': 3.0, 'fall': 1.0, 'because': 1.0, 'easily': 1.0, 'that': 4.0, 'however': 1.0, 'without': 1.0, 'counting': 1.0, 'free': 1.0, 'distort': 1.0, 'beyond': 1.0, 'had': 1.0, 'to': 9.0, 'center': 1.0, 'accurate': 1.0, 'intended': 1.0, '8': 1.0, 'was': 1.0, 'pvc': 1.0, 'have': 1.0, 'even': 1.0, '6': 3.0, 'very': 1.0, 'how': 1.0, 'disappointed': 1.0, 'cases': 1.0, 'fits': 1.0, 'looks': 2.0, 'may': 1.0, 'backpacks': 1.0, 'as': 1.0, 'bend': 1.0, 'in': 2.0, 'through': 2.0, 'backpack': 3.0, 'get': 2.0, 'x': 5.0, 'cause': 1.0, 'corners': 1.0, 'just': 1.0, 'possible': 1.0, 'contorting': 1.0, 'its': 3.0, 'on': 1.0, 'physical': 1.0, 'some': 1.0, 'interior': 1.0, 'the': 15.0, 'of': 6.0, 'natural': 1.0, 'measurements': 1.0, 'are': 1.0, 'those': 1.0, 'flatten': 1.0, 'use': 1.0, 'stretch': 1.0, 'or': 1.0, 'loop': 1.0, 'gaps': 1.0, 'fullest': 1.0, 'extent': 1.0}
Word element => {'on': 1.0, 'wear': 1.0, 'still': 1.0, 'back': 1.0, 'but': 1.0, 'little': 1.0, 'big': 1.0, 'year': 1.0, 'love': 1.0, 'for': 3.0, 'other': 1.0, 'supplies': 1.0, 'almost': 1.0, 'my': 1.0, 'bought': 1.0, 'he': 1.0, 'this': 1.0, 'it': 3.0, 'the': 1.0, '2': 1.0, 'great': 1.0, 'him': 2.0, 'boy': 1.0, 'now': 1.0, 'to': 2.0, 'old': 1.0, 'i': 2.0, 'a': 2.0, 'can': 1.0, 'size': 2.0, 'take': 1.0, 'daycare': 1.0, 'his': 2.0, 'is': 2.0, 'lunch': 1.0, 'and': 1.0}
Word element => {'slightly': 1.0, 'children': 1.0, 'for': 1.0, 'needed': 2.0, 'very': 1.0, 'cute': 1.0, 'but': 1.0, 'big': 1.0, 'larger': 1.0, 'pre': 1.0, 'enough': 1.0, 'the': 1.0, 'be': 1.0, 'to': 2.0, 'school': 1.0, 'stuff': 1.0, 'not': 1.0, 'hold': 1.0, 'nap': 1.0}
Word element => {'wash': 1.0, '1': 1.0, 'after': 1.0, 'coming': 1.0, 'was': 1.0, 'thread': 1.0, 'noticed': 1.0, 'also': 1.0, 'purpose': 1.0, 'whole': 1.0, 'defeats': 1.0, 'then': 1.0, 'twist': 1.0, 'if': 2.0, 'came': 1.0, 'one': 2.0, 'bought': 1.0, 'product': 1.0, 'be': 2.0, 'which': 1.0, 'kid': 1.0, 'i': 2.0, 'cloth': 2.0, 'not': 2.0, 'a': 2.0, 'bed': 1.0, 'especially': 1.0, 'll': 1.0, 'bottom': 1.0, 'good': 1.0, 'improvement': 1.0, 'off': 3.0, 'pad': 2.0, 'and': 2.0, 'your': 1.0, '3': 1.0, 'soft': 1.0, 'needs': 1.0, 'when': 1.0, 'unless': 1.0, 'in': 1.0, 'place': 1.0, 'turns': 2.0, 'the': 5.0, 'of': 3.0, 'slips': 2.0, 'sewn': 1.0, 'its': 1.0, 'to': 2.0, '25': 1.0, 'out': 1.0, 'little': 2.0, 'than': 1.0, 'difficult': 1.0, 'under': 1.0, 'each': 1.0, 'has': 1.0, 'slippery': 1.0, 'my': 1.0, 'another': 1.0, 'more': 1.0, 'is': 1.0, 'that': 2.0, 'it': 4.0, 'keep': 1.0}
Word element => {'buying': 1.0, 'dollars': 1.0, 'spending': 1.0, 'day': 1.0, 'using': 1.0, 'since': 1.0, 'problem': 1.0, 'holders': 1.0, 'price': 1.0, 'half': 1.0, 'just': 1.0, 'd': 1.0, 'thinking': 1.0, 'or': 2.0, 'lid': 1.0, 'extra': 1.0, 'another': 2.0, 'that': 2.0, 'after': 2.0, 'so': 2.0, 'valves': 2.0, 'time': 2.0, 'spill': 1.0, 's': 2.0, 'a': 4.0, 'we': 5.0, 'wouldn': 1.0, 'you': 1.0, 'complaints': 1.0, 'as': 1.0, 'cracked': 1.0, 'it': 2.0, 'truly': 1.0, 're': 1.0, 'where': 1.0, '10': 1.0, 'for': 4.0, 'love': 1.0, 'cheap': 1.0, 'when': 1.0, 'fun': 1.0, 'had': 2.0, 'thrown': 1.0, 'don': 1.0, 'little': 1.0, 'two': 3.0, 'i': 3.0, 'out': 2.0, 'proof': 1.0, 'fit': 1.0, 't': 2.0, 'replacement': 1.0, 'has': 1.0, 'them': 2.0, 'couple': 1.0, 'wore': 1.0, 'sippy': 2.0, 'gerber': 1.0, 'valve': 3.0, 'comes': 1.0, 'these': 3.0, 'they': 4.0, 'and': 5.0, 'are': 2.0, 'of': 5.0, 'the': 12.0, 'anymore': 1.0, 'goes': 1.0, 'rare': 1.0, 'lids': 1.0, 'except': 2.0, 'long': 1.0, 'on': 1.0, 'standard': 1.0, 'think': 1.0, 'in': 3.0, 'dishwasher': 1.0, 've': 3.0, 'oz': 1.0, 'occasion': 1.0, 'enough': 1.0, 'needed': 1.0, 'cup': 3.0, 'cups': 1.0, 'be': 3.0, 'replaced': 1.0, 'look': 1.0, 'but': 2.0, 'there': 1.0, 'available': 1.0, 'to': 2.0, 'pretty': 1.0, 'amazon': 1.0, 'few': 1.0, 'this': 1.0, 'worth': 1.0, 'almost': 1.0, 'hard': 1.0, 'over': 1.0, 'daily': 1.0, 'washing': 1.0, 'big': 1.0, 'faces': 1.0, 'years': 2.0, 'no': 1.0, 'whole': 1.0, 'every': 2.0, 'stay': 1.0, 'still': 1.0, 'quite': 1.0, 'good': 2.0, 'really': 1.0, 'have': 1.0, 'tried': 3.0, 'too': 1.0, 'one': 3.0, 'lot': 1.0, 'll': 2.0, 'other': 1.0, 'all': 1.0, 'ever': 1.0, 'buy': 1.0, 'kind': 1.0, 'recently': 1.0, 'grips': 1.0}
Word element => {'through': 1.0, 'see': 1.0, 'than': 1.0, 'playtex': 1.0, 'valve': 1.0, 'white': 1.0, 'by': 1.0, 'little': 1.0, 'better': 1.0, 'nuk': 1.0, 'cups': 1.0, 'one': 1.0, 'rubber': 1.0, 'i': 2.0, 'found': 1.0, 'makes': 1.0, 'have': 1.0, 'made': 1.0, 'the': 2.0, 'best': 1.0, 'like': 1.0, 'sippy': 1.0, 'their': 1.0}
Word element => {'from': 1.0, 'build': 1.0, 'no': 1.0, 'there': 1.0, 'washing': 1.0, 'after': 1.0, 'just': 1.0, 'not': 1.0, 'easily': 1.0, 'spill': 1.0, 'inside': 1.0, 'away': 1.0, 'and': 3.0, 'it': 4.0, 'this': 1.0, 'i': 5.0, 'the': 4.0, 'thoroughly': 1.0, 'takes': 1.0, 'baby': 1.0, 'sippy': 2.0, 'some': 1.0, 'used': 1.0, 'have': 3.0, 'cup': 2.0, 'cups': 2.0, 'to': 4.0, 'purchased': 2.0, 'best': 1.0, 'is': 2.0, 'for': 2.0, 'cold': 1.0, 'water': 3.0, 'many': 2.0, 'take': 1.0, 'of': 1.0, 'spout': 2.0, 'thrown': 1.0, 'apart': 1.0, 'up': 1.0, 'wash': 1.0, 'dip': 1.0, 'in': 2.0, 'need': 1.0, 'washed': 1.0, 'make': 2.0, 'slimy': 1.0, 'easy': 1.0, 'sure': 2.0, 'does': 1.0, 'usually': 1.0, 'hot': 1.0, 's': 1.0, 'a': 1.0, 'bit': 1.0}
Word element => {'disappointed': 1.0, 'won': 1.0, 'buy': 1.0, 'leaky': 1.0, 'those': 1.0, 'of': 1.0, 're': 1.0, 'that': 2.0, 'cups': 1.0, 'all': 1.0, 'our': 1.0, 'still': 1.0, 'this': 3.0, 'only': 1.0, 'and': 2.0, 'now': 1.0, '2': 1.0, 'reach': 1.0, 'the': 2.0, 'you': 2.0, 'soaked': 1.0, 'while': 1.0, 'tired': 1.0, 'sippy': 1.0, 'be': 2.0, 'own': 1.0, 'if': 1.0, 'my': 2.0, 'cup': 1.0, 'almost': 1.0, 'back': 1.0, 'will': 1.0, 'destination': 1.0, 'favorite': 1.0, 'sure': 2.0, 'daughter': 1.0, 'by': 1.0, 'for': 3.0, 'bought': 2.0, 'one': 3.0, 't': 1.0, 'we': 6.0, 's': 2.0, 'a': 2.0, 'it': 1.0, 'she': 2.0, 'make': 1.0, 'have': 1.0, 'her': 1.0, 'clean': 1.0, 'every': 1.0, 'time': 2.0, 'take': 1.0, 'trip': 1.0, 'in': 1.0, 'car': 1.0, 'i': 1.0, 'otherwise': 1.0}
Word element => {'am': 1.0, 'likes': 1.0, 'don': 1.0, 'far': 1.0, 'bottles': 1.0, 'he': 1.0, 'when': 1.0, 'was': 1.0, 'to': 1.0, 'used': 1.0, 'same': 1.0, 'ordering': 1.0, 'milk': 1.0, 'actually': 1.0, 'way': 1.0, 's': 1.0, 'them': 1.0, 'they': 2.0, 'using': 1.0, 'love': 1.0, 'warmer': 1.0, 'can': 1.0, 'and': 2.0, 'leak': 1.0, 'of': 1.0, 'son': 2.0, 'just': 1.0, 'i': 4.0, 'bottle': 1.0, 'fit': 1.0, 'in': 1.0, 'more': 1.0, 'nipple': 1.0, 't': 1.0, 'these': 1.0, '2': 1.0, 'the': 3.0, 'my': 2.0, 'so': 2.0, 'ordered': 1.0, 'still': 1.0, 'warm': 1.0}
Word element => {'around': 1.0, 'supermarket': 1.0, 'a': 5.0, 's': 1.0, 'into': 1.0, 'accidentally': 1.0, 'free': 1.0, 'friendly': 1.0, 'it': 3.0, 'far': 1.0, 'items': 1.0, 'so': 1.0, 'give': 1.0, 'hang': 1.0, 'local': 1.0, 'shelf': 1.0, 'eco': 1.0, 'like': 1.0, 'good': 1.0, 'which': 1.0, 'hold': 1.0, 'and': 5.0, 'option': 2.0, 'you': 1.0, 'things': 1.0, 'very': 1.0, 'little': 1.0, 'best': 2.0, 'most': 1.0, 'but': 1.0, 'bpa': 1.0, 'economical': 2.0, 'find': 1.0, 'def': 1.0, 'ran': 1.0, 'the': 5.0, 'ergonomic': 2.0, 'knew': 1.0, 'have': 2.0, 'must': 1.0, 'for': 2.0, 'actually': 1.0, 'cup': 1.0, 'cups': 1.0, 'to': 2.0, 'at': 1.0, 'is': 1.0, 'more': 1.0, 'baby': 2.0, 'many': 1.0, 'trying': 2.0, 'here': 1.0, 'i': 8.0, 'proof': 3.0, 'above': 2.0, 'spill': 3.0, 'top': 1.0, 'in': 1.0, 'among': 1.0, 'isle': 1.0, 'also': 1.0, 'saw': 1.0, 'design': 1.0, 'this': 1.0, 'nuk': 1.0, 'did': 1.0, 'should': 1.0, 'one': 1.0, 'try': 2.0, 'its': 3.0, 'glad': 1.0, 'got': 1.0, 'even': 1.0, 'they': 1.0, 'pink': 1.0, 'has': 1.0, 'same': 1.0, 'if': 1.0, 'cute': 1.0, 'shown': 1.0, 'looking': 1.0, 'found': 1.0, 'bit': 1.0, 'easy': 1.0, 'my': 1.0, 'toddler': 1.0, 'tried': 1.0, 'yes': 1.0, 'sippy': 2.0, 'affordable': 1.0, 'paid': 1.0, 'cheaper': 1.0, 'on': 1.0, 'been': 1.0, 'amazon': 1.0, 'where': 1.0, 're': 1.0, 'other': 1.0, 'all': 1.0, 'an': 1.0}
Word element => {'great': 1.0, 'but': 1.0, 'a': 1.0, 'litter': 1.0, 'only': 1.0, 'little': 1.0, 'will': 1.0, 'cup': 2.0, 'he': 1.0, 'of': 2.0, 'frustrating': 1.0, 'drink': 1.0, 'you': 1.0, 'the': 2.0, 'out': 1.0, 'get': 1.0, 'pick': 1.0}
Word element => {'in': 1.0, 'living': 1.0, 'leaky': 1.0, 'room': 1.0, 'much': 1.0, 'worry': 1.0, 'have': 1.0, 'about': 1.0, 'don': 1.0, 'i': 1.0, 'to': 1.0, 'now': 1.0, 'bottle': 1.0, 'a': 2.0, 'rather': 1.0, 'from': 1.0, 'than': 1.0, 'milk': 1.0, 'drinking': 1.0, 'sippy': 3.0, 'loves': 1.0, 'far': 1.0, 'so': 2.0, 'months': 1.0, '14': 1.0, 'is': 3.0, 'leak': 1.0, 'cups': 1.0, 'daughter': 1.0, 'and': 2.0, 'cup': 2.0, 'my': 2.0, 'truly': 1.0, 't': 1.0, 'the': 1.0, 'one': 1.0, 'her': 1.0, 'does': 1.0, 'needing': 1.0, 'that': 1.0, 'not': 1.0, 'finally': 1.0, 'she': 2.0, 'this': 1.0, 'only': 1.0, 'it': 1.0}
Word element => {'favorite': 1.0, 'of': 2.0, '34': 2.0, 'at': 1.0, 'his': 1.0, 'become': 1.0, 'few': 1.0, 'over': 1.0, 'uses': 1.0, 'the': 3.0, 'some': 1.0, 'these': 1.0, 'my': 2.0, 'boyish': 1.0, 'past': 1.0, 'but': 1.0, 'didn': 1.0, 'vary': 1.0, 'shipped': 1.0, 'very': 2.0, 'pink': 1.0, 'much': 1.0, 've': 1.0, '16': 1.0, 'they': 2.0, 'downside': 1.0, 'like': 1.0, 'proudly': 1.0, 'easy': 1.0, 'was': 2.0, 'clean': 1.0, 'it': 2.0, 'he': 1.0, 't': 1.0, 'a': 2.0, 'well': 1.0, 'colors': 2.0, 'item': 1.0, 'cups': 1.0, 'to': 1.0, 'all': 1.0, 'months': 2.0, 'one': 1.0, 'for': 1.0, 'oh': 1.0, 'son': 2.0, 'possible': 1.0, 'still': 1.0}
Word element => {'leaking': 1.0, 'like': 1.0, 'will': 1.0, 'liquid': 1.0, 'blow': 1.0, 'late': 1.0, 'arrived': 1.0, 'spill': 1.0, 'is': 1.0, 'with': 1.0, 'indeed': 1.0, 'warm': 1.0, 'try': 1.0, 'proof': 1.0, 'but': 1.0, 'not': 1.0, 'to': 1.0, 'fill': 1.0, 'it': 2.0}
Word element => {'leak': 1.0, 'pieces': 1.0, 'valves': 1.0, 'first': 1.0, 'curve': 1.0, 'would': 1.0, 'aggravation': 1.0, 'why': 1.0, 'better': 1.0, 'getting': 1.0, 'now': 1.0, 'weeks': 1.0, 't': 2.0, 'a': 2.0, 'stars': 1.0, 'for': 1.0, 'sides': 1.0, 'spout': 1.0, 'of': 1.0, 'or': 1.0, 'worth': 1.0, 'cup': 4.0, 'soft': 1.0, 'this': 3.0, 'it': 5.0, 'have': 2.0, 'gave': 1.0, 'that': 1.0, 'fun': 1.0, 'years': 1.0, 'best': 1.0, 'the': 6.0, 'which': 2.0, 'two': 1.0, 'i': 5.0, 'child': 1.0, 'sippy': 1.0, 'them': 1.0, 'loose': 1.0, 'out': 2.0, 'five': 1.0, 'and': 4.0, 'not': 1.0, 'me': 2.0, 'clean': 1.0, 'different': 1.0, 'ones': 1.0, 'liked': 2.0, 'doesn': 2.0, 'recommend': 1.0, 'leaking': 1.0, 'was': 3.0, 'its': 2.0, 'try': 1.0, 'got': 1.0, 'excellant': 1.0, 'ive': 1.0, 'ordered': 1.0, 'see': 1.0, 'abc': 1.0, 'little': 1.0, 'upset': 1.0, 'any': 1.0, 'cups': 1.0, 'to': 7.0, 'least': 1.0, 'learning': 1.0, 'valve': 1.0, 'say': 1.0, 'is': 3.0, 'really': 2.0, 'twist': 1.0, 'almost': 1.0, 'my': 1.0, 'lid': 1.0, 'impossible': 2.0, 'but': 3.0, 'in': 1.0, 'also': 1.0, 'had': 1.0, 'what': 1.0, 'put': 2.0, 'on': 2.0, 'maybe': 1.0, 'few': 1.0, 'just': 1.0, 'difficult': 1.0, 'kept': 1.0}
Word element => {'regret': 1.0, 'recommended': 1.0, 'clear': 1.0, 'tried': 2.0, 'bpa': 2.0, 'but': 1.0, 'back': 1.0, 'scare': 1.0, 'fun': 1.0, 'before': 1.0, 'kanteen': 1.0, 'you': 2.0, 'after': 1.0, 'the': 3.0, 'these': 2.0, 'stopped': 1.0, 'with': 1.0, 'grips': 1.0, 'using': 1.0, 'not': 2.0, 'wrong': 1.0, 'will': 2.0, 'failed': 1.0, 'had': 1.0, 'was': 1.0, 'cups': 2.0, 'to': 2.0, 'and': 4.0, 'couldn': 1.0, 'find': 1.0, 'found': 1.0, 't': 1.0, 'go': 1.0, 'we': 4.0, 'a': 1.0, 'gerber': 2.0, 'cup': 1.0, 'purchase': 1.0, 'avent': 1.0, 'went': 1.0, 'their': 1.0, 'highly': 1.0, 'really': 1.0, 'leak': 1.0, 'up': 1.0, 'free': 2.0, 'they': 2.0, 'that': 1.0, 'miserably': 1.0, 'live': 1.0, 'promise': 1.0}
Word element => {'many': 1.0, 'too': 1.0, 'use': 1.0, 'easy': 1.0, 's': 1.0, 'it': 2.0, 'loves': 1.0, 'parts': 1.0, 'and': 1.0, 'quality': 1.0, 'to': 1.0, 'old': 1.0, 'does': 1.0, 'not': 2.0, 'good': 1.0, 'leak': 1.0, 'year': 1.0, 'tough': 1.0, 'with': 1.0, '2': 1.0, 'my': 1.0, 'almost': 1.0}
Word element => {'ground': 1.0, 'when': 1.0, 'break': 1.0, 'leak': 1.0, 'a': 1.0, 'hard': 1.0, 'ounces': 1.0, 'but': 2.0, 'downed': 1.0, 'my': 3.0, 't': 5.0, 'we': 1.0, 's': 4.0, 'was': 2.0, 'who': 1.0, 'bit': 1.0, 'found': 1.0, 'to': 3.0, 'avent': 1.0, 'great': 1.0, 'or': 2.0, 'cups': 4.0, 'cup': 2.0, 'ambivalent': 1.0, 'either': 1.0, 'child': 3.0, 'don': 1.0, 'water': 4.0, 'sippy': 1.0, 'up': 1.0, 'flow': 2.0, 'on': 1.0, 'nubby': 1.0, 'spout': 2.0, 'in': 2.0, 've': 1.0, 'uninterested': 1.0, 'munchkin': 1.0, 'trainers': 1.0, 'tumbler': 1.0, 'yes': 1.0, 'until': 1.0, 'tried': 1.0, 'click': 1.0, 'i': 3.0, 'like': 2.0, 'rate': 1.0, 'frustrated': 1.0, 'this': 3.0, 'nuk': 1.0, 'lock': 1.0, 'and': 6.0, 'vital': 1.0, 'doesn': 3.0, 'lots': 1.0, 'pick': 1.0, '2': 1.0, 'thing': 1.0, 'about': 1.0, 'one': 1.0, 'get': 2.0, 'months': 1.0, 'sip': 1.0, 'silicone': 2.0, 'because': 1.0, 'chew': 1.0, 'baby': 1.0, 'she': 5.0, 'hits': 1.0, 'already': 1.0, 'it': 6.0, '10': 1.0, 'still': 1.0, 'if': 1.0, 'old': 1.0, 'of': 4.0, 'the': 8.0, 'all': 1.0, 'tupperware': 1.0, 'playing': 1.0, 'tossed': 1.0, 'is': 2.0, 'around': 1.0, 'just': 2.0, 'new': 1.0, 'worried': 1.0, 'out': 1.0, 'good': 1.0, 'with': 2.0, 'wobbly': 1.0, 'slow': 1.0, 'from': 1.0, 'wonder': 1.0, 'actually': 1.0, 'hear': 1.0, 'flowing': 1.0, 'straw': 1.0, 'valve': 1.0, 'can': 2.0, 'so': 1.0, 'have': 1.0, 'lack': 1.0, 'through': 1.0, 'handles': 1.0, 'them': 1.0, 'has': 2.0, 'playtex': 1.0, 'been': 2.0, 'you': 1.0, 'able': 1.0}
Word element => {'fun': 1.0, 'it': 2.0, 'sturdy': 1.0, 'he': 1.0, 'loves': 1.0, 'this': 1.0, 'one': 1.0, 'i': 2.0, 'child': 1.0, 'and': 1.0, 'wanted': 1.0, 'to': 1.0, 'teether': 1.0, 'safe': 2.0, 'give': 1.0, 'my': 1.0, 'a': 1.0, 'so': 1.0, 'is': 1.0, 'chose': 1.0}
Word element => {'definitely': 1.0, 'recommend': 1.0, 'good': 1.0, 'environment': 1.0, 'throwing': 1.0, 'general': 1.0, 'the': 1.0, 'banging': 1.0, 'my': 1.0, 'little': 1.0, 're': 2.0, 'him': 1.0, 'great': 1.0, 'one': 1.0, 'for': 2.0, 'loves': 1.0, 'and': 4.0, 'keys': 1.0, 'these': 1.0, 'they': 2.0, 'teething': 1.0}
Word element => {'toy': 1.0, 'great': 1.0, 'bag': 1.0, 'two': 1.0, 'the': 2.0, 'infant': 1.0, 'house': 1.0, 'i': 1.0, 'one': 3.0, 'in': 2.0, 'diaper': 1.0, 'upstairs': 1.0, 'and': 1.0, 'a': 1.0, 'kept': 1.0, 'down': 1.0}
Word element => {'from': 1.0, 'impossible': 1.0, 'same': 1.0, 'ring': 2.0, 'open': 1.0, 'well': 1.0, 'is': 3.0, 'this': 1.0, 'on': 1.0, 'think': 1.0, 'local': 1.0, 'you': 1.0, 'i': 3.0, 'designed': 1.0, 'got': 2.0, 'use': 1.0, 'whole': 1.0, 'about': 1.0, 'market': 1.0, 'and': 2.0, 'since': 1.0, 'at': 1.0, 'the': 5.0, 'renders': 1.0, 'a': 1.0, 't': 1.0, '99': 1.0, 'my': 2.0, 'it': 2.0, 'useless': 1.0, 'foods': 1.0, 'price': 1.0, 'd': 1.0, 'for': 1.0, 'nope': 1.0, 'one': 1.0, 'as': 1.0, 'to': 2.0, 'that': 1.0, 'itself': 1.0, 'babiesrus': 1.0, '2': 1.0, 'can': 1.0, 'hook': 1.0, 'carrier': 1.0, 'baby': 1.0, 'quality': 1.0, 'above': 1.0, 'of': 1.0}
Word element => {'soft': 1.0, 'much': 1.0, 'to': 2.0, 'his': 1.0, 'hits': 1.0, 'legs': 1.0, 'accidentally': 1.0, 'or': 1.0, 'when': 1.0, 'throws': 1.0, 'so': 1.0, 'toys': 1.0, 'plastic': 1.0, 'and': 1.0, 'keys': 1.0, 'worry': 1.0, 'like': 1.0, 'don': 1.0, 'baby': 1.0, 'my': 1.0, 'are': 2.0, 'months': 1.0, '4': 1.0, 't': 1.0, 'the': 1.0, 'these': 1.0, 'is': 1.0, 'he': 1.0, 'hard': 1.0, 'with': 1.0, 'they': 2.0, 'time': 1.0, 'love': 1.0, 'i': 2.0, 'old': 1.0, 'plays': 1.0, 'them': 2.0, 'have': 1.0, 'all': 1.0, 'because': 1.0, 'not': 1.0, 'some': 1.0}
Word element => {'long': 1.0, 'hold': 1.0, 't': 1.0, 'them': 1.0, 'doesn': 1.0, 'just': 1.0, 'the': 1.0, 'keys': 1.0, 'and': 1.0, 'teething': 1.0, 'starting': 1.0, 'he': 3.0, 'of': 1.0, 'grabbed': 1.0, 'young': 1.0, 'although': 1.0, 'to': 1.0, 'is': 2.0, 'now': 1.0, 'show': 1.0, 'onto': 1.0, 'too': 2.0, 'signs': 1.0}
Word element => {'i': 1.0, 'returned': 1.0, 'teether': 1.0, 'had': 1.0, 'was': 2.0, 'item': 1.0, 'upfront': 1.0, 'descriptions': 1.0, 'demand': 1.0, 'and': 2.0, 'from': 1.0, 'come': 1.0, 'close': 1.0, 'won': 1.0, 'has': 1.0, 'mouth': 1.0, 'puts': 1.0, 'don': 1.0, 'standards': 1.0, 'safety': 1.0, 't': 2.0, 's': 2.0, 're': 1.0, 'purchase': 2.0, 'my': 1.0, 'recalls': 1.0, 'you': 1.0, 'read': 1.0, 'dedication': 1.0, 'ro': 1.0, 'that': 2.0, 'been': 2.0, 'here': 1.0, 'it': 2.0, 'first': 1.0, 'this': 2.0, 'concerns': 1.0, 'convinced': 1.0, 'their': 4.0, 'likely': 1.0, 'the': 3.0, 'or': 1.0, 'let': 1.0, 'since': 1.0, 'at': 1.0, 'look': 1.0, 'any': 1.0, 'to': 2.0, 'me': 2.0, 'more': 1.0, 'say': 1.0, 'is': 1.0, 'safe': 2.0, 'people': 1.0, 'many': 1.0, 'reviews': 1.0, '5': 1.0, 'star': 1.0, 'items': 1.0, 'body': 1.0, 'u': 1.0, 'manufacturer': 2.0, 'touts': 1.0, 'your': 1.0, 'toxin': 1.0, 'product': 1.0, 'where': 2.0, 'share': 1.0, 'for': 1.0, 'violations': 1.0, 'free': 1.0, 'baby': 3.0, 'products': 3.0, 'most': 2.0, 'but': 2.0, 'in': 3.0, 'made': 3.0, 'china': 3.0, 'there': 1.0, 'of': 3.0, 'have': 1.0}
Word element => {'new': 1.0, 'safe': 1.0, 'because': 1.0, 'in': 1.0, 'soothe': 1.0, 'seem': 1.0, 'all': 1.0, 'textures': 1.0, 'go': 1.0, 'throw': 1.0, 'different': 1.0, 'mouth': 1.0, 'his': 2.0, 'he': 2.0, 'hold': 1.0, 'gums': 1.0, 'when': 1.0, '4': 1.0, 'him': 2.0, 'my': 2.0, 'are': 2.0, 'love': 1.0, 'for': 4.0, 'the': 1.0, 'these': 2.0, 'they': 2.0, 'buy': 1.0, 'i': 3.0, 'old': 1.0, 'was': 1.0, 'to': 5.0, 'ordered': 1.0, 'month': 1.0, 'teething': 1.0, 'purse': 1.0, 'and': 3.0, 'sore': 1.0, 'up': 1.0, 'loves': 1.0, 'them': 2.0, 'grasp': 1.0, 'moms': 1.0, 'easy': 2.0}
Word element => {'as': 1.0, 'girly': 1.0, 'so': 1.0, 'wish': 1.0, 'is': 1.0, 'i': 3.0, 'complain': 1.0, 'color': 1.0, 'my': 1.0, 'baby': 2.0, 'toy': 1.0, 'still': 1.0, 'have': 2.0, 'likes': 2.0, 'teething': 1.0, 'months': 1.0, 'plays': 1.0, 'long': 1.0, 'was': 1.0, 'later': 1.0, 'for': 1.0, 'a': 2.0, 'boy': 1.0, 'isn': 1.0, 'time': 1.0, 't': 1.0, 'the': 3.0, '2': 1.0, 'and': 1.0, 'first': 1.0, 'he': 2.0, 'this': 1.0, 'it': 2.0, 'only': 1.0}
Word element => {'heft': 1.0, 'have': 1.0, 'great': 1.0, 'nice': 1.0, 'sturdiness': 1.0, 'size': 1.0, 'are': 1.0, 'they': 1.0, 'with': 1.0, 'house': 1.0, 'the': 1.0, 'them': 5.0, 'thought': 1.0, 'babies': 1.0, 'loves': 2.0, 'got': 1.0, 'keys': 1.0, 'set': 1.0, 'of': 1.0, 'i': 2.0, 'putting': 1.0, 'slapping': 1.0, 'and': 7.0, 'surfaces': 1.0, 'purpose': 1.0, 'infant': 1.0, 'teething': 2.0, 'relieve': 1.0, 'jangling': 1.0, 'for': 3.0, 'my': 2.0, 'biting': 2.0, 'already': 1.0, 'these': 3.0, 'carrying': 1.0, 'she': 2.0, 'could': 1.0, 'a': 4.0, 'jingling': 1.0, 'because': 1.0, 'mouth': 1.0, 'gnawing': 1.0, 'daughter': 1.0, 'has': 1.0, 'likes': 1.0, 'in': 1.0, 'also': 1.0, 'her': 2.0, 'perfect': 1.0, 'pain': 1.0, 'stress': 1.0, 'fill': 1.0, 'whacking': 2.0, 'against': 1.0, 'hard': 1.0, 'loud': 1.0, 'to': 3.0, 'noises': 1.0, 'dual': 1.0, 'make': 1.0, 'around': 2.0}
Word element => {'t': 1.0, 'shaking': 1.0, 'and': 1.0, 'on': 1.0, 'beat': 1.0, 'can': 1.0, 'noise': 1.0, 'it': 4.0, 'some': 1.0, 'has': 1.0, 'these': 1.0, 'soft': 1.0, 'that': 1.0, 'edges': 1.0, 'likes': 1.0, 'rubber': 1.0, 'my': 1.0, 'baby': 1.0, 'to': 1.0, 'makes': 1.0, 'bite': 1.0}
Word element => {'quality': 1.0, 'hit': 1.0, 'a': 1.0, 'so': 1.0, 'happier': 1.0, 'to': 1.0, 'hand': 1.0, 'safety': 1.0, 'm': 1.0, 'when': 1.0, 'smile': 1.0, 'him': 2.0, 'makes': 1.0, 'always': 2.0, 'happy': 1.0, 'my': 1.0, 'the': 2.0, 'great': 1.0, 'is': 1.0, 'key': 1.0, 'about': 1.0, 'toy': 1.0, 'i': 2.0, 'green': 2.0, 'old': 1.0, 'as': 1.0, 'day': 1.0, 'ring': 1.0, 'teether': 1.0, '7month': 1.0, 'it': 3.0, 'with': 3.0, 'this': 1.0, 'def': 1.0, 'almost': 1.0, 'loves': 1.0, 'even': 1.0, 'both': 1.0, 'every': 1.0, 'for': 1.0, 'shaking': 1.0, 'chewing': 1.0, 'sprouts': 2.0, 'and': 3.0, 'plays': 1.0}
Word element => {'few': 1.0, 'next': 1.0, 'using': 1.0, 'side': 1.0, 'awsome': 1.0, 'does': 1.0, 'only': 1.0, 'it': 3.0, 'this': 1.0, 'from': 1.0, 'pink': 1.0, 'very': 1.0, 'idea': 1.0, 'be': 1.0, 'suction': 1.0, 'the': 5.0, 'of': 1.0, 'set': 1.0, 'an': 1.0, 'will': 1.0, 'for': 1.0, 'love': 1.0, 'spoons': 1.0, 'to': 1.0, 'all': 1.0, 'have': 1.0, 'far': 1.0, 'sure': 1.0, 'spilling': 1.0, 'keep': 1.0, 'were': 1.0, 'bowls': 1.0, 'and': 1.0, 'i': 3.0, 't': 1.0, 'a': 1.0, 'is': 3.0, 'say': 1.0, 'colors': 1.0, 'may': 1.0, 'so': 2.0, 'boy': 1.0, 'vary': 1.0, 'food': 1.0, 'but': 1.0, 'can': 1.0, 'down': 1.0, 'bottom': 1.0, 'complaint': 1.0, 'overall': 1.0, 'good': 1.0, 'years': 1.0, 'm': 1.0}
Word element => {'newborn': 1.0, 'fast': 1.0, 'way': 1.0, 'nipple': 1.0, 'feeding': 1.0, 'not': 1.0, 'do': 1.0, 'however': 1.0, 'anywhere': 1.0, 'available': 1.0, 'are': 1.0, 'baby': 1.0, 'with': 1.0, 'is': 1.0, 'more': 1.0, 'that': 1.0, 'water': 2.0, 'under': 1.0, 'too': 1.0, 'milk': 1.0, 'running': 1.0, 'hot': 2.0, 'minutes': 1.0, 'was': 2.0, 'selling': 1.0, 'the': 2.0, 'these': 3.0, 'seconds': 1.0, 'as': 1.0, 'our': 1.0, 'to': 1.0, 'all': 1.0, '5': 1.0, 'formula': 1.0, 'for': 6.0, 't': 1.0, 'we': 3.0, 'a': 3.0, 'warming': 1.0, 'it': 1.0, 'they': 1.0, 'counter': 1.0, 'takes': 1.0, 'great': 1.0, 'big': 1.0, 'warm': 1.0, 'point': 1.0, 'waiting': 1.0, 'us': 1.0, 'vs': 1.0, 'didn': 1.0, '10': 1.0, 'want': 1.0, 'hungry': 1.0, 'another': 1.0, 'appliance': 1.0, 'on': 1.0, 'travel': 1.0, 'use': 2.0, 'warmer': 1.0, 'bottle': 1.0, 'so': 1.0, 'almost': 1.0, 'opted': 1.0, 'i': 2.0, 'cannot': 1.0, 'of': 1.0, 'imagine': 1.0, 'bottles': 2.0, 'or': 1.0}
Word element => {'ve': 1.0, 'special': 1.0, 'with': 1.0, 'the': 3.0, 'took': 1.0, 'fast': 1.0, 'was': 1.0, 'liked': 1.0, 'loves': 1.0, 'they': 2.0, 'grows': 1.0, 'first': 1.0, 'how': 1.0, 'he': 2.0, 'it': 1.0, 'clean': 1.0, 'too': 1.0, 'and': 3.0, 'up': 1.0, 'colors': 1.0, 'plus': 1.0, 'a': 1.0, 'we': 5.0, 'their': 1.0, 'nipple': 1.0, 'gift': 1.0, 'one': 1.0, 'bought': 1.0, 'little': 1.0, 'kit': 1.0, 'them': 1.0, 'baby': 1.0, 'its': 1.0, 'do': 1.0, 'organickidz': 1.0, 'shower': 1.0, 'of': 1.0, 'steel': 1.0, 'after': 1.0, 'bottle': 1.0, 'boy': 1.0, 'so': 2.0, 'got': 2.0, 'worried': 1.0, 'bottles': 1.0, 'easy': 1.0, 'have': 1.0, 'thermal': 1.0, 'these': 1.0, 'health': 1.0, 'benefits': 1.0, 'best': 1.0, 'm': 1.0, 'i': 1.0, 'never': 1.0, 'if': 1.0, 'drops': 1.0, 're': 1.0, 'as': 1.0, 'our': 2.0, 'all': 2.0, 'to': 2.0, 'but': 1.0, 'what': 1.0}
Word element => {'has': 1.0, 'but': 1.0, 'colors': 1.0, 'in': 2.0, 'this': 1.0, 'been': 2.0, 'have': 1.0, 'i': 1.0, 'are': 1.0, 'expecting': 1.0, '4': 1.0, 'we': 3.0, 'and': 2.0, 'away': 1.0, 'get': 1.0, 'the': 2.0, 'unavailable': 1.0, 'my': 2.0, 'item': 1.0, 'looking': 1.0, 'right': 1.0, 'now': 2.0, 'to': 1.0, 'beginning': 1.0, 'bear': 2.0, 'girl': 2.0, 'knew': 1.0, 'pink': 1.0, 'as': 1.0, 'from': 1.0, 'son': 2.0, 'loved': 2.0, 'needed': 1.0, 'well': 1.0, 'a': 3.0, 'mr': 2.0, 'one': 2.0, 'for': 2.0, 'emergencies': 1.0, 'is': 2.0, 'second': 1.0, 'spare': 1.0}
Word element => {'clothes': 1.0, 'dirty': 1.0, 'hide': 1.0, 'daughters': 1.0, 'picture': 1.0, 'my': 1.0, 'the': 3.0, 'finished': 1.0, 'addition': 1.0, 'her': 1.0, 'flap': 1.0, 'tye': 1.0, 'that': 2.0, 'cover': 1.0, 'shown': 1.0, 'dye': 1.0, 'not': 1.0, 'able': 1.0, 'room': 1.0, 'this': 1.0, 'with': 1.0, 'is': 2.0, 'perfect': 1.0, 'in': 1.0, 'she': 1.0, 'was': 1.0, 'to': 1.0}
Word element => {'nice': 1.0, 'idea': 1.0, 'is': 1.0, 'off': 1.0, 'constructed': 1.0, 'came': 1.0, 'legs': 1.0, 'of': 1.0, 'even': 1.0, 'chipping': 1.0, 'things': 1.0, 'one': 1.0, 'for': 1.0, 'were': 1.0, 'that': 1.0, 'and': 1.0, '1': 1.0, 'year': 1.0, 'son': 1.0, 'my': 1.0, 'the': 3.0, 'poorly': 1.0, 'bought': 1.0, 'thinking': 1.0, 'underneath': 1.0, 'old': 1.0, 'i': 1.0, 'this': 2.0, 'it': 2.0, 'was': 3.0, 'not': 1.0, 'so': 1.0, 'stay': 1.0, 'darn': 1.0, 'cute': 1.0, 'did': 1.0, 'but': 2.0, 'bucket': 1.0}
Word element => {'from': 1.0, 'sometime': 1.0, 'again': 1.0, 'curtians': 1.0, 'buy': 1.0, 'will': 1.0, 'when': 1.0, 'here': 1.0, 'i': 2.0, 'need': 1.0, 'very': 1.0, 'bought': 1.0, 'nice': 1.0, 'in': 1.0, 'for': 1.0, 'daughter': 1.0, 'these': 1.0, 'bedroom': 1.0, 'they': 1.0, 'my': 1.0, 'are': 1.0}
Word element => {'the': 1.0, 'languagefor': 1.0, 'clear': 1.0, 'explains': 1.0, 'video': 1.0, 'group': 1.0, 'who': 1.0, 'granddaughter': 1.0, 'age': 1.0, '1': 1.0, 'appropriate': 1.0, 'is': 1.0, '2': 2.0, 'in': 1.0, 'for': 1.0, 'years': 1.0, 'old': 1.0, 'great': 1.0, 'it': 1.0}
Word element => {'months': 1.0, '18': 1.0, 'enjoy': 1.0, 'watch': 1.0, 'started': 1.0, 'however': 1.0, 'toddlers': 1.0, 'girls': 1.0, 'toward': 1.0, 'favorite': 1.0, 'is': 3.0, 'loves': 1.0, 'targeted': 2.0, 'and': 4.0, 'dvd': 1.0, 'of': 1.0, 'also': 1.0, 'songs': 1.0, 'are': 1.0, 'to': 1.0, 'content': 2.0, 'for': 1.0, 'scene': 1.0, 'although': 1.0, 'old': 1.0, 'older': 1.0, 'this': 1.0, 'it': 4.0, 'even': 1.0, 'his': 1.0, 'works': 1.0, 'more': 1.0, 'the': 5.0, '2': 1.0, 'son': 1.0, 'year': 1.0, 'princess': 1.0, 'though': 1.0, 'potty': 1.0, 'super': 1.0, 'at': 2.0, 'annoying': 1.0, 'my': 2.0, 'end': 1.0}
Word element => {'of': 1.0, 'a': 1.0, 'cutting': 1.0, 'week': 1.0, 'when': 1.0, 'mechanism': 1.0, 'tiny': 1.0, 'you': 1.0, 'actual': 1.0, 'helpful': 1.0, 'is': 1.0, 'especially': 1.0, 'feels': 1.0, 're': 1.0, 'cuts': 1.0, 'efficiently': 1.0, 'light': 1.0, 'the': 3.0, 'nails': 2.0, 'ergonomic': 1.0, 'old': 1.0, 'those': 1.0, 'very': 2.0, '1': 1.0, 'and': 1.0}
Word element => {'durable': 1.0, 'something': 1.0, 'because': 1.0, 'penny': 1.0, 'every': 1.0, 'was': 1.0, 'purchase': 1.0, 'bars': 1.0, 'us': 1.0, 'taking': 1.0, 'by': 1.0, 'dresser': 1.0, 'to': 1.0, 'converts': 1.0, 'out': 1.0, 'worth': 1.0, 'or': 1.0, 'use': 1.0, 'still': 1.0, 'cremes': 1.0, 'on': 1.0, 'put': 1.0, 'regular': 1.0, 'in': 1.0, 'at': 1.0, 'space': 1.0, 'drawers': 1.0, 'take': 1.0, 'many': 1.0, 'left': 1.0, 'tables': 1.0, 'side': 2.0, 'looked': 1.0, 'fell': 1.0, 'it': 2.0, 'found': 1.0, 'this': 1.0, 'practical': 1.0, 'dressers': 1.0, 'and': 6.0, 'one': 1.0, 'love': 1.0, 'for': 2.0, 'two': 2.0, 'i': 5.0, 'off': 1.0, 'pad': 1.0, 'had': 1.0, 'either': 1.0, 'saw': 1.0, 's': 1.0, 'a': 3.0, 'could': 1.0, 'of': 2.0, 'wipes': 1.0, 'but': 1.0, '2': 1.0, 'the': 4.0, 'dipers': 1.0, 'shelves': 1.0, 'useful': 1.0, 'stacks': 1.0, 'are': 1.0, 'wide': 1.0, 'deep': 1.0, 'cabinet': 1.0, 'has': 1.0, 'changing': 2.0, 'box': 1.0, 'that': 2.0, 'easily': 1.0, 'when': 1.0, 'you': 1.0}
Word element => {'absolutely': 1.0, 'to': 1.0, 'seem': 1.0, 'sees': 1.0, 'that': 1.0, 'everybody': 1.0, 'color': 1.0, 'same': 1.0, 'scallops': 1.0, 'quality': 1.0, 'described': 1.0, 'as': 1.0, 'and': 3.0, 'good': 1.0, 'replaced': 1.0, 'love': 1.0, 'for': 1.0, 'time': 1.0, 'it': 2.0, 'with': 1.0, 'arrived': 1.0, 'the': 4.0, 'antique': 1.0, 'price': 1.0, 'knobs': 2.0, 'i': 1.0, 'actually': 1.0, 'in': 1.0, 'exactely': 1.0, 'dusty': 1.0, 'looks': 1.0, 'rose': 1.0, 'wood': 1.0, 'painted': 1.0}
Word element => {'glass': 1.0, 'evenflow': 1.0, 'bottles': 2.0, 'pump': 1.0, 'medela': 1.0, 'on': 1.0, 'well': 1.0, 'that': 1.0, 'about': 1.0, 'thing': 1.0, 'lot': 1.0, 'her': 1.0, 'creating': 1.0, 'breath': 1.0, 'a': 1.0, 'go': 1.0, 'sometimes': 1.0, 'would': 1.0, 'then': 1.0, 'through': 1.0, 'slow': 1.0, 'to': 3.0, 'drinking': 1.0, 'had': 1.0, 'flow': 1.0, 'sucked': 1.0, 'is': 3.0, 'the': 2.0, 'esophagus': 1.0, 'nipple': 4.0, 'great': 1.0, '2': 1.0, 'less': 2.0, 'when': 1.0, 'by': 1.0, 'air': 1.0, 'design': 1.0, 'star': 1.0, 'give': 1.0, 'allows': 1.0, 'release': 1.0, 'this': 3.0, 'i': 2.0, 'other': 1.0, 'rating': 1.0, '5': 1.0, 'of': 2.0, 'baby': 1.0, 'because': 2.0, 'unique': 1.0, 'also': 1.0, 'like': 1.0, 'which': 1.0, 'for': 1.0, 'fits': 1.0, 'another': 1.0, 'my': 1.0, 'issues': 1.0, 'it': 1.0, 'month': 1.0, 'she': 1.0, 'swallowing': 1.0, 'its': 1.0, 'much': 1.0, 'hard': 1.0, 'from': 1.0, 'old': 1.0, 'brand': 1.0, 'sneeze': 1.0, 'nipples': 1.0, 'too': 1.0, 'milk': 3.0, 'and': 3.0}
Word element => {'our': 1.0, 'nipples': 1.0, 'mean': 1.0, 'when': 1.0, 'by': 1.0, 'baby': 2.0, 'or': 1.0, 'loves': 2.0, 'other': 1.0, 'i': 1.0, 'old': 1.0, 'month': 1.0, 'and': 1.0, 'like': 1.0, 'feeding': 1.0, 'did': 1.0, 'these': 1.0, '2': 1.0, 'the': 1.0, 'chokes': 1.0, 'with': 1.0, 'he': 2.0, 'rarely': 1.0, 'spills': 1.0}
Word element => {'these': 1.0, 'parent': 1.0, 'both': 1.0, 'worked': 1.0, 'of': 1.0, 'personal': 1.0, 'us': 1.0, 'i': 2.0, 'it': 1.0, 's': 1.0, 'think': 1.0, 'say': 1.0, 'more': 1.0, 'and': 1.0, 'need': 1.0, 'up': 1.0, 'to': 1.0, 'for': 1.0, 'kid': 1.0, 'preference': 1.0}
Word element => {'fast': 1.0, 'and': 1.0, 'change': 1.0, '2': 1.0, 'feeding': 1.0, 'little': 2.0, 'pediatrician': 1.0, 'with': 1.0, 'this': 2.0, 'loved': 1.0, 'my': 2.0, 'vomiting': 2.0, 'i': 3.0, 'months': 1.0, 'one': 4.0, 'for': 2.0, 'already': 1.0, 'these': 1.0, 'the': 3.0, 'recommends': 1.0, 'great': 1.0, 'nipple': 1.0, 'must': 2.0, 'old': 1.0, 'problems': 1.0, 'almost': 1.0, 'pay': 1.0, 'much': 1.0, 'do': 1.0, 'review': 1.0, 'bottle': 1.0, 'so': 2.0, 'time': 1.0, 'solution': 1.0, 'felt': 1.0, 'it': 2.0, 'she': 1.0, 'was': 2.0, 'recommend': 1.0, 'just': 2.0, 'them': 1.0, 'started': 1.0, 'a': 1.0, 'we': 3.0, 'after': 2.0, 'stop': 1.0, 'used': 1.0, 'every': 1.0, 'amazing': 1.0, 'highly': 1.0, 'attention': 1.0, 'on': 1.0, 'had': 1.0, 'flow': 2.0, 'is': 1.0}
Word element => {'well': 1.0, 'very': 1.0, 'worked': 1.0, 'of': 1.0, 'though': 1.0, 'better': 1.0, 'still': 1.0, 'nipples': 1.0, 'mam': 1.0, 'seems': 1.0, 'recommend': 1.0, 'she': 1.0, 'shape': 1.0, 'do': 1.0, 'and': 2.0, 'transition': 1.0, 'is': 1.0, 'would': 1.0, 'pumped': 1.0, 'milk': 1.0, 'breastfed': 1.0, 'bottle': 2.0, 'i': 3.0, 'daughter': 2.0, 'for': 2.0, 'to': 4.0, 'switch': 1.0, 'had': 1.0, 'my': 2.0, 'adjusted': 1.0, 'like': 2.0, 'easily': 1.0, 'first': 2.0, 'with': 1.0, 'this': 1.0, 'these': 1.0, 'the': 4.0, 'nipple': 2.0, 'making': 1.0, 'just': 1.0, 'another': 1.0, 'baby': 1.0, 'needing': 1.0, 'that': 1.0}
Word element => {'alternative': 1.0, 'were': 1.0, 'around': 1.0, 'had': 1.0, 'daughter': 1.0, 'for': 1.0, 'a': 2.0, 'them': 2.0, 'previously': 1.0, 'and': 1.0, 'my': 2.0, 'great': 1.0, 'these': 1.0, 'the': 1.0, 'son': 1.0, 'used': 1.0, 'time': 2.0, 'they': 1.0, 'nipples': 1.0, 'finding': 1.0, 'straight': 1.0, 'hard': 1.0, 'with': 1.0, 'this': 1.0, 'refuse': 1.0, 'really': 1.0, 'regular': 1.0}
Word element => {'or': 1.0, 'lot': 1.0, 'they': 1.0, 'thin': 1.0, 'though': 1.0, 'moisture': 1.0, 'cloth': 1.0, 'burp': 1.0, 'weight': 1.0, 'haven': 1.0, 'accident': 1.0, 'an': 1.0, 'light': 1.0, 'few': 1.0, 'have': 1.0, 'unexpected': 1.0, 'tables': 1.0, 'of': 3.0, 'newborn': 1.0, 'in': 2.0, 'pads': 1.0, 'as': 1.0, 'to': 3.0, 'found': 1.0, 'one': 3.0, 'for': 3.0, 'has': 2.0, 'i': 4.0, 'son': 1.0, 'it': 2.0, 'm': 1.0, 'mom': 2.0, 've': 1.0, 'new': 1.0, 'touching': 1.0, 'and': 5.0, 'is': 1.0, 'realized': 1.0, 'type': 1.0, 'he': 1.0, 'how': 1.0, 'your': 1.0, 'put': 1.0, 'stuff': 1.0, 'on': 3.0, 'those': 1.0, 'disgusting': 1.0, 'also': 1.0, 'bathrooms': 1.0, 'them': 1.0, 'want': 1.0, 'if': 1.0, 'the': 5.0, 'these': 1.0, 'great': 2.0, 'go': 1.0, 'we': 2.0, 'a': 5.0, 't': 2.0, 'tried': 1.0, 'things': 1.0, 'are': 3.0, 'case': 1.0, 'next': 1.0, 'changing': 2.0, 'that': 3.0, 'don': 1.0, 'bathroom': 1.0, 'my': 1.0, 'dad': 1.0, 'hold': 1.0, 'table': 3.0, 'use': 2.0}
Word element => {'difference': 1.0, 'and': 2.0, 'brand': 1.0, 'off': 1.0, 'an': 1.0, 'that': 1.0, 'compared': 1.0, 'note': 1.0, 'like': 1.0, 'would': 1.0, 'last': 1.0, 'making': 1.0, 'longer': 1.0, 'regular': 1.0, 'a': 2.0, 'them': 4.0, 'find': 1.0, 'protect': 1.0, 'design': 1.0, 'other': 1.0, 'we': 1.0, 'conserve': 1.0, 'changing': 1.0, 'didn': 1.0, 'been': 1.0, 'on': 1.0, 'cutting': 1.0, 'has': 1.0, 'product': 1.0, 'to': 4.0, 'this': 1.0, 'basis': 1.0, 'use': 1.0, 'pad': 1.0, 't': 1.0, 'great': 1.0, 'the': 1.0, 'i': 3.0, 'price': 1.0, 'ended': 1.0, 'up': 1.0, 'in': 1.0, 'than': 1.0, 'half': 1.0}
Word element => {'proof': 1.0, 'water': 1.0, 'of': 1.0, 'care': 1.0, 'take': 1.0, 'because': 1.0, 'oopsy': 1.0, 'an': 1.0, 'is': 2.0, 'older': 1.0, 'get': 1.0, 'they': 1.0, 'to': 1.0, 'as': 1.0, 'longer': 1.0, 'last': 1.0, 'if': 2.0, 'are': 1.0, 'diapers': 1.0, 'also': 1.0, 'will': 3.0, 'plush': 1.0, 'be': 1.0, 'worry': 1.0, 'room': 1.0, 'underneath': 1.0, 'about': 2.0, 'lasts': 1.0, 'changing': 2.0, 'that': 2.0, 've': 1.0, 'something': 1.0, 'pad': 1.0, 'cover': 2.0, 'again': 1.0, 'you': 5.0, 'have': 2.0, 'so': 1.0, 'reality': 1.0, 'spill': 1.0, 'beautiful': 1.0, 'the': 1.0, 'place': 1.0, 'then': 1.0, 'use': 1.0, 'there': 1.0, 'instead': 1.0, 'stark': 1.0, 'decorated': 1.0, 'table': 1.0, 'and': 4.0, 'a': 4.0, 't': 2.0, 'washing': 1.0, 'don': 2.0, 'soiled': 1.0, 'over': 2.0, 'put': 1.0, 'your': 2.0, 'on': 1.0, 'kids': 2.0, 'this': 1.0, 'month': 1.0, 'it': 4.0, 'one': 1.0, 'for': 1.0, 'or': 2.0, 'i': 1.0, 'two': 1.0}
Word element => {'underneath': 1.0, 'of': 1.0, 'one': 1.0, 'car': 1.0, 'so': 2.0, 'makes': 1.0, 'public': 1.0, 'it': 4.0, 'with': 1.0, 'just': 2.0, 'easy': 1.0, 'home': 1.0, 'every': 1.0, 'if': 1.0, 'i': 5.0, 'mess': 1.0, 'diaper': 2.0, 'a': 2.0, 's': 1.0, 't': 1.0, 'wrap': 1.0, 'the': 2.0, 'there': 1.0, 'always': 1.0, 'they': 1.0, 'dirty': 1.0, 'seat': 1.0, 'to': 2.0, 'all': 1.0, 'any': 1.0, 'up': 1.0, 'don': 1.0, 'work': 1.0, 'change': 2.0, 'changing': 2.0, 'box': 1.0, 'table': 1.0, 'like': 2.0, 'on': 2.0, 'his': 2.0, 'for': 2.0, 'keep': 2.0, 'at': 1.0, 'charm': 1.0, 'these': 2.0, 'some': 1.0, 'in': 2.0, 'bag': 1.0, 'use': 3.0, 'travel': 1.0, 'and': 3.0, 'toss': 1.0, 'too': 1.0, 'tables': 1.0, 'him': 2.0}
Word element => {'great': 1.0, 's': 1.0, 'these': 1.0, 'muchkin': 1.0, 'ordered': 1.0, 'we': 2.0, 'cover': 1.0, 'boppy': 1.0, 'and': 1.0, 'liner': 1.0, 'work': 1.0, 'was': 1.0, 'too': 1.0, 'pads': 1.0, 'got': 1.0, 'so': 1.0, 'the': 3.0, 'small': 1.0}
Word element => {'one': 1.0, 'looking': 1.0, 'second': 1.0, 'pregnant': 1.0, 'solved': 1.0, 'problem': 1.0, 'lab': 1.0, 'wraps': 1.0, 'cribs': 1.0, 'exact': 1.0, 'have': 1.0, 'eyes': 1.0, 'plastic': 1.0, 'stuffed': 1.0, 'has': 1.0, 'anything': 1.0, 'did': 1.0, 'although': 1.0, 'easy': 1.0, 'condition': 1.0, 'arrived': 1.0, 'and': 9.0, 'surface': 1.0, 'short': 1.0, 'due': 1.0, 'very': 1.0, 'having': 1.0, 'does': 1.0, 'all': 1.0, 'an': 1.0, 'baby': 1.0, 'front': 2.0, 'since': 2.0, 'buy': 1.0, '2012': 1.0, 'october': 1.0, 'liked': 1.0, 'beginning': 1.0, 'dec': 1.0, 'some': 1.0, 've': 2.0, 'crib': 4.0, 'to': 4.0, 'was': 3.0, 'screws': 1.0, 'had': 2.0, 'purchased': 1.0, 'for': 1.0, 'bed': 1.0, 'perfect': 1.0, 'm': 2.0, 'in': 4.0, 'dip': 1.0, 'color': 1.0, 'read': 1.0, 'end': 1.0, 'simply': 1.0, 'only': 2.0, 'my': 6.0, 'jan': 1.0, 'it': 4.0, 'i': 7.0, 'little': 1.0, 'two': 1.0, 'the': 9.0, 'of': 3.0, 'once': 1.0, 'do': 1.0, 'put': 1.0, 'on': 2.0, 'espresso': 1.0, 'but': 2.0, 'time': 1.0, 'with': 3.0, 'help': 1.0, 'twice': 1.0, 'husband': 1.0, 'places': 1.0, 'request': 1.0, 'flaw': 1.0, 'son': 2.0, 'gets': 1.0, 'at': 1.0, 'is': 1.0, 'bitten': 1.0, 'now': 3.0, 'take': 1.0, 'banged': 1.0, 'hard': 1.0, 'over': 1.0, 'a': 6.0, 'year': 1.0, 'his': 1.0, 'old': 1.0, 'animal': 1.0, 'loving': 1.0, 'different': 1.0, 're': 1.0, 'rail': 1.0, 'this': 2.0, 'chip': 1.0, 'together': 1.0, 'tighten': 1.0, 'he': 1.0, 'likes': 1.0, 'shake': 1.0, 'while': 1.0, 'wood': 1.0, 'or': 2.0, 'trend': 1.0, 'back': 1.0, 'just': 2.0, 'by': 2.0, 'same': 1.0, 'super': 1.0, 'loose': 1.0, 'not': 1.0, 'bought': 1.0, 'aggressive': 1.0, 'also': 1.0, 'that': 3.0, 'because': 2.0, 'easily': 1.0, 'e': 1.0, 'still': 1.0, 'every': 1.0, 'if': 1.0}
Word element => {'for': 1.0, 'count': 1.0, 'linen': 1.0, 'to': 3.0, 'as': 1.0, 'terrible': 1.0, 'stripes': 1.0, 'crib': 1.0, 'on': 2.0, 'washed': 1.0, 'quality': 1.0, 'softer': 1.0, 'much': 1.0, 'muslin': 2.0, 'it': 9.0, 'higher': 1.0, 'are': 1.0, 'first': 2.0, 'beginning': 1.0, 'stars': 1.0, 'shame': 1.0, 'love': 1.0, 'hold': 1.0, 'like': 3.0, 'swirls': 4.0, 'land': 2.0, 'does': 1.0, 'looks': 1.0, 'my': 2.0, 'only': 1.0, 'purchase': 1.0, 'blankets': 3.0, 'organic': 2.0, 'corners': 1.0, 'but': 1.0, 'compared': 1.0, 'and': 3.0, 'bought': 1.0, 'decided': 1.0, 'loved': 1.0, 'then': 1.0, 'i': 8.0, 'when': 2.0, 'times': 1.0, 'a': 3.0, 't': 1.0, 's': 1.0, '5': 1.0, 'that': 1.0, 'because': 2.0, '20': 1.0, 'however': 1.0, 'so': 2.0, 'star': 1.0, 'soften': 1.0, 'cutting': 1.0, 'out': 1.0, 'review': 1.0, 'them': 2.0, 'has': 1.0, 'didn': 1.0, 'ordered': 1.0, 'sheets': 1.0, 'thread': 1.0, 'more': 1.0, 'ones': 1.0, 'of': 1.0, 'the': 6.0, 'these': 2.0, 'bambino': 3.0, 'products': 1.0, 'feel': 3.0, 'was': 1.0, 'stiff': 1.0, 've': 2.0, 'swaddling': 2.0, 'would': 1.0, 'cloths': 1.0, 'returned': 1.0, 'somewhat': 1.0, 'even': 1.0, 'took': 1.0, 'instead': 1.0, 'should': 1.0, 'burp': 1.0, 'there': 1.0, 'give': 1.0, 'not': 1.0, 'wash': 1.0, 'up': 1.0, 'in': 1.0, 'hopes': 1.0, 'all': 1.0, 'other': 1.0, 'about': 1.0, '15': 1.0, 'now': 1.0, 'gave': 1.0, 'green': 4.0, 'same': 1.0, 'side': 2.0, 'by': 1.0}
Word element => {'try': 1.0, 'sprouts': 1.0, 'the': 1.0, 'be': 1.0, 'toy': 1.0, 'won': 1.0, 'learned': 1.0, 'lesson': 1.0, 'shapes': 1.0, 'last': 1.0, 'different': 1.0, 'of': 1.0, 'twisty': 1.0, 'looked': 1.0, 'this': 3.0, 'something': 1.0, 'maracas': 1.0, 'handled': 1.0, 'maestro': 1.0, 'boy': 1.0, 'interest': 1.0, 'so': 1.0, 'am': 1.0, 'i': 2.0, 'tried': 1.0, 'it': 2.0, 'felt': 1.0, 'is': 1.0, 'my': 2.0, 'son': 1.0, 'to': 1.0, 'as': 3.0, 'about': 1.0, 'wooden': 1.0, 'shakes': 1.0, 'teether': 3.0, 'pvc': 1.0, 'bpa': 1.0, 'his': 1.0, 'green': 1.0, 'and': 4.0, 'crazy': 1.0, 'isn': 1.0, 'delight': 1.0, 'free': 1.0, 'toys': 1.0, 'but': 1.0, 'whiddled': 1.0, 'phthalate': 1.0, 'fun': 1.0, 'plastic': 1.0, 'he': 1.0, 'bingo': 1.0, 'we': 1.0, 's': 1.0, 'morphs': 1.0, 't': 2.0, 'cuban': 1.0, 'a': 2.0, 'that': 1.0, 'loves': 1.0, 'into': 1.0, 'twirly': 1.0, 'seems': 1.0, 'sounds': 1.0, 'which': 1.0, 'hand': 1.0, 'like': 1.0, 'variety': 1.0}
Word element => {'an': 1.0, 'hard': 1.0, 'its': 2.0, 'interested': 1.0, 'keeps': 1.0, 'changes': 1.0, 'also': 1.0, 'for': 2.0, 'shapes': 1.0, 'big': 1.0, 'heavy': 1.0, 'the': 3.0, 'it': 7.0, 'this': 3.0, 'with': 1.0, 'manipulate': 2.0, 'that': 1.0, 'teethers': 1.0, 'old': 2.0, 'rattle': 1.0, 'otherwise': 1.0, 'i': 1.0, 'on': 1.0, '3': 1.0, 'months': 2.0, 'bought': 1.0, 'baby': 4.0, 'teether': 2.0, 'toy': 1.0, 'has': 1.0, 'likes': 1.0, 'early': 1.0, 'a': 5.0, 'time': 1.0, 'bit': 4.0, 'at': 1.0, 'as': 1.0, 'to': 1.0, 'grab': 1.0, 'now': 1.0, 'more': 1.0, 'is': 1.0, 'in': 1.0, 'regular': 1.0, 'he': 2.0, '6': 1.0, 'can': 1.0, 'when': 1.0, 'easily': 1.0, 'which': 1.0, 'hold': 1.0, 'and': 5.0, 'too': 2.0, 'play': 1.0, 'other': 1.0, 'those': 1.0, 'than': 1.0, 'awesome': 1.0, 'his': 1.0, 'was': 2.0, 'beeds': 1.0, 'rattles': 1.0}
Word element => {'order': 1.0, 'easily': 1.0, 'find': 1.0, 'gift': 1.0, 'online': 1.0, 'for': 1.0, 'organic': 2.0, 'was': 1.0, 'able': 2.0, 'not': 1.0, 'this': 1.0, 'item': 1.0, 'get': 1.0, 'locally': 1.0, 'and': 2.0, 'wanted': 1.0, 'toy': 1.0, 'to': 2.0, 'green': 1.0}
Word element => {'go': 1.0, 'perfect': 1.0, 'simple': 1.0, 'loves': 1.0, 'with': 1.0, 'this': 1.0, 'he': 1.0, 'son': 1.0, 'my': 1.0, 'young': 1.0, 'for': 1.0, 'classics': 1.0, 'when': 1.0, 'i': 5.0, 'keys': 1.0, 'and': 1.0, 'better': 1.0, 'was': 2.0, 'had': 1.0, 'toys': 2.0, 'a': 2.0, 'them': 1.0, 'these': 1.0, 'the': 5.0, 'little': 1.0, 'remember': 1.0, 'how': 1.0, 'simplier': 1.0, 'much': 1.0, 'so': 2.0, 'loved': 1.0, 'got': 1.0, 'course': 1.0, 'of': 1.0, 'set': 1.0}
Word element => {'expecting': 1.0, 'who': 1.0, 'toys': 1.0, 'i': 4.0, 'putting': 1.0, 'thing': 1.0, 'just': 1.0, '2': 1.0, 'my': 1.0, 'twists': 1.0, 'toy': 3.0, 'and': 2.0, 'too': 1.0, 'more': 1.0, 'is': 3.0, 'the': 2.0, 'turns': 1.0, 'neatest': 1.0, 'son': 1.0, 'chemicals': 1.0, '5': 1.0, 'mouth': 1.0, 'months': 1.0, 'it': 1.0, 'this': 3.0, 'with': 2.0, 'he': 1.0, 'other': 1.0, 'along': 1.0, 'that': 2.0, 'loves': 1.0, 'good': 1.0, 'purchased': 2.0, 'feel': 1.0, 'knowing': 1.0, 'in': 1.0, 'his': 1.0, 'harsh': 1.0, 'liked': 1.0, 'baby': 1.0, 'them': 1.0, 'so': 1.0, 'much': 1.0, 'to': 2.0, 'not': 1.0, 'give': 1.0, 'go': 1.0, 'a': 1.0, 'friend': 1.0}
Word element => {'that': 1.0, 'toys': 1.0, 'the': 1.0, 'diaper': 1.0, 'his': 1.0, 'i': 2.0, 'while': 1.0, 'him': 1.0, 'are': 1.0, 'keeps': 1.0, 'plays': 1.0, 'earth': 1.0, 's': 1.0, 'months': 1.0, 'change': 1.0, 'really': 1.0, 'of': 1.0, 'around': 1.0, 'busy': 1.0, 'likes': 1.0, 'with': 1.0, 'it': 4.0, 'first': 1.0, 'he': 3.0, 'this': 1.0, 'love': 1.0, 'for': 2.0, 'son': 1.0, 'had': 1.0, 'now': 1.0, 'my': 2.0, 'a': 1.0, 'baby': 1.0, 'toy': 1.0, 'twists': 1.0, 'and': 2.0, 'couple': 1.0, 'safe': 1.0, 'at': 1.0, 'chewed': 1.0, 'just': 1.0, 'but': 1.0}
Word element => {'teethe': 1.0, 'to': 1.0, 'is': 1.0, 'on': 1.0, 'anything': 1.0, 'course': 1.0, 'pretty': 1.0, 'so': 1.0, 'brings': 1.0, 'colors': 1.0, 'and': 2.0, 'soothing': 1.0, 'the': 1.0, 'pastel': 1.0, 'hands': 1.0, 'together': 1.0, 'good': 1.0, 'of': 1.0}
Word element => {'messy': 1.0, 'had': 1.0, 'last': 1.0, 'while': 1.0, 'have': 2.0, 'alway': 1.0, 'me': 1.0, 'not': 1.0, 'brought': 1.0, 'and': 2.0, 'away': 2.0, 'get': 1.0, 'cuz': 1.0, 'worry': 1.0, 'great': 1.0, '1': 1.0, 'spend': 1.0, 'go': 1.0, 'a': 2.0, 'well': 1.0, 'throw': 2.0, 'there': 1.0, 'putting': 1.0, 'it': 9.0, 'love': 2.0, 'for': 2.0, 'back': 1.0, 'will': 1.0, 'use': 2.0, 'then': 2.0, 'if': 2.0, '4': 1.0, 'i': 10.0, 'mess': 2.0, 'to': 4.0, 'was': 2.0, 'of': 1.0, 'once': 1.0, 'can': 2.0, 'but': 2.0, 'money': 1.0, 'no': 1.0, 'about': 1.0, 'boxes': 1.0, 'diapering': 1.0, 'in': 1.0, 'threw': 1.0, 'wash': 1.0, 'my': 1.0, 'bag': 1.0, 'is': 1.0, 'more': 1.0, 'till': 1.0, 'home': 1.0, 'them': 3.0, 'am': 1.0, 'glad': 1.0, '3': 2.0, 'changing': 1.0, 'that': 1.0, 'way': 1.0}
Word element => {'mom': 1.0, 'new': 1.0, 'would': 1.0, 'gets': 1.0, 'baby': 1.0, 'when': 1.0, 'easy': 1.0, 'up': 2.0, 'makes': 1.0, 'are': 7.0, 'disposable': 1.0, 'arm': 1.0, 'other': 1.0, 'any': 1.0, 'to': 1.0, 'had': 1.0, 'so': 3.0, 'anymore': 1.0, 'not': 2.0, 'find': 1.0, 'the': 5.0, 'great': 1.0, 'best': 1.0, 'effective': 1.0, 'covers': 1.0, 'white': 1.0, 'stock': 1.0, 'switched': 1.0, 'options': 1.0, 'clean': 2.0, 'buggies': 1.0, 'with': 1.0, 'i': 3.0, 'and': 4.0, 'green': 1.0, 'could': 1.0, 'messy': 1.0, 'hideous': 1.0, 'like': 1.0, 'used': 1.0, 'pad': 3.0, 'keeping': 1.0, 'better': 1.0, 'they': 5.0, 'on': 1.0, 'your': 1.0, 'longer': 1.0, 'for': 1.0, 'actually': 1.0, 'fit': 1.0, 'entire': 1.0, 'little': 1.0, 'changing': 4.0, 'totally': 1.0, 'leaves': 1.0, 'these': 4.0, 'some': 1.0, 'of': 1.0, 'hammer': 1.0, 'plus': 1.0, 'in': 1.0}
Word element => {'them': 1.0, 'choose': 1.0, 'would': 1.0, 'i': 1.0, 'price': 1.0, 'so': 1.0, 'now': 1.0, 'a': 1.0, 'solutions': 1.0, 'day': 1.0, 'street': 1.0, 'in': 1.0, 'on': 1.0, '4': 1.0, '3': 1.0, 'than': 1.0, 'but': 1.0, 'neat': 1.0, 'once': 1.0, 'be': 1.0, 'they': 1.0, 'ones': 1.0, 'the': 2.0, 'these': 1.0, 'more': 1.0, 'and': 3.0, 'are': 3.0, 'blowouts': 1.0, 'up': 1.0, 'right': 1.0, 'wonderful': 1.0, 'can': 1.0, 'used': 1.0, 'expensive': 1.0, 'sesame': 1.0, 's': 1.0, 'sale': 1.0, 'with': 1.0, 'little': 2.0, 'smaller': 1.0, 'my': 1.0, 'end': 1.0, 'for': 1.0, 'using': 1.0, 'one': 2.0, 'we': 1.0, 'may': 1.0}
Word element => {'responsibly': 1.0, 'paper': 1.0, 'printed': 1.0, 'airport': 1.0, 'looking': 1.0, 'the': 1.0, 'managed': 1.0, 'are': 1.0, 'disposable': 1.0, 'really': 1.0, 'lot': 1.0, 'to': 2.0, 't': 1.0, 'a': 2.0, 'don': 1.0, 'perfect': 1.0, 'but': 1.0, 'use': 2.0, 'ink': 1.0, 'these': 2.0, 'already': 1.0, 'from': 1.0, 'while': 1.0, 'noticed': 1.0, 'i': 2.0, 'one': 1.0, 'else': 1.0, 'd': 1.0, 'after': 1.0, 'so': 1.0, 'like': 1.0, 'substances': 1.0, 'and': 3.0, 'other': 1.0, 'forests': 1.0, 'places': 1.0, 'stuff': 2.0, 'your': 1.0, 'for': 2.0, 'love': 1.0, 'where': 1.0, 'you': 2.0, 'made': 1.0, 'prefer': 1.0, 'clean': 1.0, 'changing': 1.0, 'pad': 1.0, 're': 1.0, 'lugging': 1.0, 'biodegradable': 1.0, 'much': 1.0, 'something': 1.0, 'would': 1.0, 'bleached': 1.0, 'with': 3.0, 'nontoxic': 2.0}
Word element => {'change': 1.0, 'is': 1.0, 'where': 1.0, 'house': 1.0, 'members': 1.0, 'or': 1.0, 'go': 1.0, 'on': 1.0, 'cover': 1.0, 'and': 1.0, 'there': 1.0, 'of': 1.0, 'to': 3.0, 'baby': 2.0, 'prone': 1.0, 'your': 1.0, 'they': 1.0, 'a': 2.0, 'for': 2.0, 'love': 1.0, 'changing': 3.0, 'also': 1.0, 'in': 1.0, 'perfect': 1.0, 'washing': 1.0, 'just': 1.0, 'family': 1.0, 'are': 1.0, 'disposable': 1.0, 'safe': 1.0, 'no': 1.0, 'at': 1.0, 'stead': 1.0, 'i': 1.0, 'place': 1.0, 'while': 1.0, 'accidents': 1.0, 'you': 2.0, 'have': 1.0, 'pad': 2.0, 'great': 1.0, 'these': 1.0, 'the': 2.0, 'replace': 1.0}
Word element => {'changing': 1.0, 'entire': 1.0, 'cover': 1.0, 'and': 2.0, 'exclusively': 1.0, 'would': 1.0, 'they': 2.0, 'the': 1.0, 'afford': 1.0, 'these': 2.0, 'large': 1.0, 'stars': 1.0, 'because': 1.0, '5': 1.0, 'of': 1.0, 'little': 1.0, 'give': 1.0, 'but': 1.0, '4': 1.0, 'i': 4.0, 'table': 1.0, 'cheaper': 1.0, 'durable': 1.0, 'it': 1.0, 'only': 1.0, 'disposable': 1.0, 'are': 3.0, 'a': 2.0, 'switched': 1.0, 'pricey': 1.0, 'to': 1.0, 'use': 1.0, 'instead': 1.0, 'pad': 1.0, 'if': 1.0, 'could': 1.0}
Word element => {'diaper': 1.0, 'enough': 1.0, 'small': 1.0, 'used': 1.0, 'up': 1.0, 'no': 1.0, 'about': 1.0, 'out': 1.0, 'these': 1.0, 'others': 1.0, 'those': 1.0, 'item': 1.0, 'looking': 1.0, 'more': 1.0, 'the': 1.0, 'my': 1.0, 'hold': 1.0, 'like': 1.0, 'and': 3.0, 'searching': 1.0, 'this': 2.0, 'found': 1.0, 'i': 1.0, 'wife': 1.0, 'easily': 1.0, 'when': 2.0, 'you': 2.0, 'way': 1.0, 'had': 1.0, 'was': 1.0, 'few': 1.0, 'fit': 1.0, 'where': 1.0, 'for': 4.0, 'expensive': 1.0, 'one': 1.0, 'months': 1.0, 'look': 1.0, 'right': 1.0, 'mark': 1.0, 'much': 1.0, 'an': 1.0, 'but': 1.0, 'we': 1.0, 'a': 2.0, 'bag': 1.0, '15': 1.0, '5': 1.0, 'our': 1.0, 'to': 2.0, 'pads': 2.0, 'tables': 1.0, 'being': 1.0, 'if': 1.0, 'keep': 1.0, 'are': 3.0, 'on': 2.0, 'your': 1.0, 'baby': 1.0, 'further': 1.0, 'safe': 1.0, 'into': 1.0, 'that': 1.0, 'nasty': 1.0, 'been': 1.0, 'changing': 1.0}
Word element => {'thickness': 1.0, 'for': 1.0, 'looking': 1.0, 'name': 1.0, 'but': 2.0, 'sorry': 1.0, 'one': 3.0, 'weight': 1.0, 'prefer': 1.0, 'i': 2.0, 'try': 1.0, 'much': 1.0, 'of': 2.0, 'fold': 1.0, 'don': 1.0, 'up': 1.0, 'or': 2.0, 'quickly': 1.0, 'itself': 1.0, 'have': 1.0, 'it': 1.0, 'great': 1.0, 'heavier': 1.0, 'the': 3.0, 'heaters': 1.0, 'poor': 1.0, 'pad': 2.0, 'out': 1.0, 'onto': 1.0, 'more': 1.0, 'is': 2.0, 'greatly': 1.0, 'and': 2.0, 'too': 2.0, 'light': 1.0, 'by': 2.0, 'walking': 1.0, 'implementation': 1.0, 'move': 1.0, 'if': 1.0, 'someone': 1.0, 'idea': 1.0, 'you': 1.0, 'wife': 1.0, 'to': 2.0, 'any': 1.0, 'fans': 1.0, 'ceiling': 1.0, 'with': 1.0, 'ac': 1.0, 'even': 1.0, 't': 1.0, 'causes': 1.0, 'a': 2.0, 'position': 1.0, 'breeze': 1.0, 'cause': 1.0, 'my': 1.0, 'that': 3.0, 'changing': 1.0, 'know': 1.0, 'which': 1.0, 'table': 1.0, 'found': 1.0, 'different': 1.0, 'disposable': 1.0}
Word element => {'dry': 1.0, 'kept': 1.0, 'peed': 1.0, 'baby': 1.0, 'bed': 2.0, 'guest': 1.0, 'friend': 1.0, 'of': 1.0, 'up': 1.0, 'is': 1.0, 'not': 1.0, 'gross': 1.0, 'are': 1.0, 'diaper': 2.0, 'the': 4.0, 'these': 1.0, 'mention': 1.0, 'great': 1.0, 'in': 3.0, 'i': 2.0, 'kind': 1.0, 'changing': 2.0, 'my': 2.0, 'how': 1.0, 'to': 3.0, 'was': 1.0, 'reusable': 1.0, 'toss': 1.0, 'and': 6.0, 'much': 1.0, 'disliked': 1.0, 'it': 3.0, 'space': 1.0, 'slip': 1.0, 'bag': 2.0, 'take': 1.0, 'pad': 2.0, 'use': 1.0, 'took': 1.0, 'then': 1.0, 's': 1.0, 'a': 3.0, 'public': 1.0, 'they': 1.0, 'back': 1.0, 'work': 1.0, 'right': 1.0, 'even': 1.0, 'small': 1.0, 'clutch': 1.0, 'table': 1.0, 'using': 1.0, 'your': 1.0, 'put': 1.0, 'on': 1.0}
Word element => {'into': 1.0, 'bag': 1.0, 'packed': 1.0, 'have': 1.0, 'home': 1.0, 'they': 1.0, 'the': 1.0, 'are': 1.0, 'large': 1.0, 'and': 2.0, 'few': 1.0, 'baby': 1.0, 'diaper': 1.0, 'durable': 1.0, 'use': 1.0, 'likes': 1.0, 'a': 1.0, 'them': 1.0, 'i': 1.0, 'at': 1.0}
Word element => {'yet': 1.0, 'of': 1.0, 'rid': 1.0, 'get': 1.0, 'needed': 1.0, 'one': 1.0, 'i': 1.0, 'you': 1.0, 'to': 1.0, 'an': 1.0, 'explosive': 1.0, 'baby': 1.0, 'luckily': 1.0, 'haven': 1.0, 'unless': 1.0, 'any': 1.0, 'have': 2.0, 't': 1.0, 'which': 1.0, 'in': 1.0, 'experience': 1.0, 'had': 1.0}
Word element => {'them': 1.0, 'definitely': 1.0, 'would': 1.0, 'i': 1.0, 'recommend': 1.0, 'job': 1.0, 'these': 1.0, 'they': 1.0, 'do': 1.0, 'are': 2.0, 'the': 1.0, 'and': 2.0, 'great': 1.0, 'changing': 1.0, 'pads': 1.0, 'well': 1.0, 'large': 1.0, 'thick': 1.0}
Word element => {'messy': 1.0, 'like': 1.0, 'i': 1.0, 'wasteful': 1.0, 'have': 1.0, 'gets': 1.0, 'made': 1.0, 'out': 1.0, 'clean': 1.0, 'moments': 1.0, 'on': 1.0, 'poop': 1.0, 'when': 2.0, 'you': 2.0, 'for': 2.0, 'covers': 1.0, 'it': 2.0, 'hard': 1.0, 'into': 1.0, 'changing': 2.0, 'day': 1.0, 'get': 2.0, 'and': 3.0, 'reason': 1.0, 'always': 1.0, 'so': 2.0, 'are': 1.0, 'these': 1.0, 'some': 1.0, 'at': 1.0, 'of': 1.0, 'once': 1.0, 'textured': 1.0, 'little': 1.0, 'the': 2.0, 'material': 1.0, 'crevices': 1.0, 'more': 1.0, 'is': 3.0, 'pad': 1.0, 'stained': 1.0, 'change': 1.0, 'can': 1.0, 'all': 1.0, 'pads': 2.0, 'to': 2.0, 'least': 1.0, 'might': 1.0, 'a': 1.0, 'them': 2.0, 'baby': 1.0, 'even': 1.0, 'though': 1.0}
Word element => {'at': 1.0, 'tops': 1.0, 'counter': 1.0, 'on': 1.0, 'car': 1.0, 'lay': 1.0, 'i': 1.0, 'table': 1.0, 'changing': 2.0, 'without': 1.0, 'when': 1.0, 'been': 1.0, 'bag': 1.0, 'stations': 1.0, 'in': 2.0, 'need': 1.0, 'which': 1.0, 'to': 2.0, 'grab': 1.0, 'keep': 1.0, '34': 2.0, 'go': 1.0, 'a': 3.0, 'and': 5.0, 'restrooms': 1.0, 'wipes': 1.0, 'sink': 1.0, 'awesome': 1.0, 'our': 1.0, 'public': 1.0, 'they': 1.0, 'we': 1.0, 'change': 2.0, 'outfit': 1.0, 'just': 1.0, 'diapers': 1.0, 'down': 1.0, 'includes': 1.0, 'you': 1.0, 'nursette': 1.0, 'have': 2.0, 'formula': 1.0, 'the': 2.0, 'diaper': 2.0, 'these': 2.0, 'nipple': 1.0}
Word element => {'part': 1.0, 'smaller': 1.0, 'get': 1.0, 'they': 1.0, 'time': 1.0, 'change': 1.0, 'to': 1.0, 'don': 1.0, 'wash': 1.0, 'in': 1.0, 'have': 1.0, 'all': 1.0, 'home': 1.0, 'at': 1.0, 'enough': 1.0, 'top': 1.0, 'go': 1.0, 'or': 2.0, 'when': 2.0, 'i': 5.0, 'sometimes': 1.0, 'pads': 3.0, 't': 1.0, 'these': 2.0, 'the': 4.0, 'so': 1.0, 'small': 1.0, 'disposable': 1.0, 'are': 1.0, 'them': 1.0, 'covers': 1.0, 'out': 1.0, 'washable': 2.0, 'that': 1.0, 'cover': 1.0, 'put': 1.0, 'on': 2.0, 'bottom': 1.0, 'of': 1.0, 'changing': 2.0, 'wet': 1.0, 'every': 1.0, 'use': 2.0, 'pad': 2.0}
Word element => {'exceptionally': 1.0, 'station': 1.0, 'changing': 1.0, 'day': 1.0, 'all': 1.0, 'fest': 1.0, 'liner': 1.0, 'public': 1.0, 'or': 1.0, 'at': 1.0, 'other': 1.0, 'mall': 1.0, 'we': 1.0, 'case': 1.0, 'looks': 1.0, 'really': 1.0, 'if': 1.0, 'keep': 1.0, 'items': 1.0, 'germ': 1.0, 'use': 1.0, 'gross': 1.0, 'are': 1.0, 'disposable': 1.0, 'back': 1.0, 'but': 1.0, 'to': 1.0, 'one': 1.0, 'cloth': 1.0, 'putting': 1.0, 'i': 3.0, 'not': 1.0, 'm': 1.0, 'needed': 1.0, 'of': 1.0, 'always': 1.0, 'a': 2.0, 'tucked': 1.0, 'hate': 1.0, 'couple': 1.0, 'unless': 1.0, 'in': 3.0, 'the': 2.0, 'these': 1.0, 'diaper': 1.0, 'my': 2.0, 'bag': 2.0}
Word element => {'changes': 1.0, 'diaper': 1.0, 'make': 1.0, 'thereby': 1.0, 'soiled': 1.0, 'and': 2.0, 'doesn': 1.0, 'very': 2.0, 'last': 1.0, 'clean': 1.0, 'them': 2.0, 'nice': 1.0, 'pad': 1.0, 'purchase': 1.0, 'with': 1.0, 'it': 1.0, 'only': 1.0, 'home': 1.0, 'waterproof': 1.0, 'around': 1.0, 'more': 1.0, 'is': 2.0, 'so': 1.0, 'travel': 1.0, 'to': 3.0, 'or': 2.0, '25': 1.0, 'us': 1.0, 'that': 2.0, 'changing': 1.0, 'gave': 1.0, 'product': 2.0, 'for': 2.0, 't': 1.0, 'we': 2.0, 'break': 1.0, 'durable': 1.0, 'satisfied': 1.0, 'ours': 1.0, 'reuse': 1.0, 'useful': 1.0, 'are': 1.0, 'i': 1.0, '30': 1.0, 'this': 2.0, 'intend': 1.0, 'wish': 1.0, 'tear': 1.0, 'than': 1.0, 'they': 1.0, 'again': 1.0, 'you': 1.0, 'of': 1.0, '10': 1.0, 'if': 1.0, 'not': 1.0}
Word element => {'get': 1.0, 'again': 1.0, 'find': 1.0, 'could': 1.0, 'everywhere': 1.0, 'only': 1.0, '12': 1.0, '6': 1.0, 'from': 1.0, 'range': 1.0, 'munchkin': 2.0, 'whereas': 1.0, '8': 1.0, '36': 1.0, 'they': 1.0, 'definitely': 1.0, 'better': 1.0, 'a': 4.0, 'we': 6.0, 'might': 1.0, 'not': 1.0, 'dry': 1.0, 'few': 2.0, 'air': 1.0, 'in': 1.0, 'diapering': 1.0, 'resistant': 1.0, 'let': 1.0, 'would': 2.0, 'new': 3.0, 'little': 2.0, 'nice': 1.0, 'until': 1.0, 'to': 9.0, 'our': 2.0, 'pads': 2.0, 'all': 1.0, 'any': 1.0, 'sponge': 1.0, 'baby': 2.0, 'them': 2.0, 'early': 1.0, 'brought': 1.0, 'like': 1.0, 'just': 1.0, 'tushy': 1.0, 'down': 1.0, 'on': 2.0, 'come': 1.0, 'especially': 1.0, 'moments': 1.0, 'daddy': 1.0, 'helpful': 2.0, 'used': 1.0, 'were': 2.0, 'box': 4.0, 'getting': 1.0, 'babies': 3.0, 'changes': 3.0, 'when': 3.0, 'so': 1.0, 'days': 1.0, 'sent': 1.0, 'home': 1.0, 'his': 2.0, 'pad': 2.0, 'ones': 2.0, 'lasted': 1.0, 'one': 1.0, '10': 1.0, 'for': 4.0, 'these': 2.0, 'ran': 1.0, 'of': 3.0, 'the': 8.0, 'pee': 1.0, 'as': 1.0, 'diaper': 2.0, 'catch': 1.0, 'have': 1.0, 'through': 2.0, 'multiple': 1.0, 'if': 2.0, 'same': 1.0, 'he': 4.0, 'didnt': 1.0, 'or': 1.0, 'hubby': 1.0, 'water': 1.0, 'and': 4.0, 'buy': 2.0, 'mess': 1.0, 'well': 1.0, 'i': 1.0, 'poo': 1.0, 'first': 1.0, 'baths': 1.0, 'was': 1.0, 'able': 2.0, 'also': 1.0, 'us': 3.0, 'use': 1.0, 'make': 1.0, 'help': 1.0, 'bathtub': 1.0, 'out': 2.0, 'messes': 1.0, 'put': 1.0, 'changing': 1.0, 'r': 3.0, 'however': 1.0, 'found': 1.0, 'brand': 1.0, 'but': 1.0, 'product': 1.0, 'price': 1.0, 'at': 1.0, 'is': 1.0}
Word element => {'dirty': 1.0, 'until': 1.0, 'reuse': 1.0, 'get': 1.0, 'we': 1.0, 'they': 1.0, 'these': 1.0, 'better': 1.0, 'bit': 1.0, 'a': 1.0, 'and': 1.0, 'price': 1.0, 'good': 1.0, 'wish': 1.0, 'definitely': 1.0, 'water': 1.0, 'smell': 1.0, 'was': 1.0, 'just': 1.0, 'proof': 1.0, 'the': 1.0}
Word element => {'tearing': 1.0, 'or': 1.0, 'up': 1.0, 'on': 1.0, 'extra': 1.0, 'pad': 1.0, 'top': 2.0, 'half': 1.0, 'in': 1.0, 'them': 2.0, 'are': 2.0, 'these': 1.0, 'great': 1.0, 'the': 1.0, 'they': 1.0, 'end': 1.0, 'my': 2.0, 'large': 1.0, 'an': 2.0, 'usually': 1.0, 'use': 1.0, 'cutting': 1.0, 'travel': 1.0, 've': 1.0, 'lining': 1.0, 'leaking': 1.0, 'i': 2.0, 'old': 1.0, 'as': 1.0, 'changing': 1.0, 'from': 1.0, 'too': 1.0, 'and': 1.0, 'issue': 1.0, 'of': 2.0, 'once': 1.0, 'cut': 1.0, 'covers': 1.0, 'month': 1.0, 'it': 1.0, 'generously': 1.0, 'belly': 1.0, 'with': 1.0, 'past': 1.0, 'four': 1.0, 'her': 2.0, 'feet': 1.0, 'never': 1.0, 'unwanted': 1.0, 'had': 1.0}
Word element => {'but': 1.0, 'liners': 1.0, 'pad': 1.0, 'machine': 1.0, 'access': 1.0, 'these': 5.0, 'the': 1.0, 'perfect': 2.0, 'in': 1.0, 'worked': 1.0, 'changing': 1.0, 'mess': 1.0, 'potential': 1.0, 'i': 3.0, 'bought': 1.0, 'laundry': 1.0, 'be': 2.0, 'recently': 1.0, 'they': 1.0, 'vacation': 2.0, 'were': 2.0, 't': 2.0, 'we': 2.0, 'a': 4.0, 'for': 2.0, 'where': 1.0, 'hotel': 1.0, 'munchkin': 1.0, 'would': 1.0, 'so': 2.0, 'contained': 1.0, 'are': 1.0, 'quite': 1.0, 'large': 1.0, 'wonerful': 1.0, 'to': 1.0, 'any': 1.0, 'staying': 1.0, 'wasteful': 1.0, 'seems': 1.0, 'will': 1.0, 'have': 1.0, 'definitly': 1.0, 'didn': 1.0, 'wouldn': 1.0, 'daily': 1.0, 'it': 1.0, 'use': 2.0, 'at': 2.0, 'home': 2.0, 'because': 1.0}
Word element => {'bag': 1.0, 'have': 1.0, 'table': 1.0, 'and': 2.0, 'restaurants': 1.0, 'good': 1.0, 'public': 1.0, 'out': 1.0, 'for': 2.0, 'at': 1.0, 'airports': 1.0, 'must': 1.0, 'changing': 2.0, 'it': 1.0, 'in': 1.0, 'perfect': 1.0, 's': 1.0, 'a': 3.0, 'paper': 1.0, 'between': 1.0, 'thick': 1.0, 'that': 1.0, 'provides': 1.0, 'barrier': 1.0, 'my': 2.0, 'diaper': 1.0, 'the': 1.0, 'baby': 1.0}
Word element => {'sized': 1.0, 'fits': 1.0, 'box': 1.0, 'bulky': 1.0, 'would': 1.0, 'folded': 2.0, 'play': 1.0, 'cribs': 1.0, 'washable': 1.0, 'although': 1.0, 'changing': 1.0, 'under': 1.0, 'used': 1.0, 'also': 1.0, 'past': 1.0, 'no': 1.0, 'extended': 1.0, 'head': 1.0, 'from': 1.0, 'covered': 1.0, 'be': 3.0, 'wide': 1.0, 'tall': 1.0, 'that': 2.0, 'on': 5.0, 'it': 9.0, 'can': 2.0, 'so': 1.0, 'after': 1.0, 'bag': 3.0, 'top': 1.0, 'back': 2.0, 'again': 1.0, 'zip': 1.0, 'fold': 1.0, 'internationally': 1.0, 'place': 2.0, 'of': 5.0, 'the': 15.0, 'know': 1.0, 'given': 1.0, 'a': 10.0, 'gym': 1.0, 'we': 3.0, 't': 2.0, 'ziplock': 1.0, 's': 4.0, 'plastic': 1.0, 'airport': 1.0, 'i': 6.0, 'her': 1.0, 'use': 2.0, 'travel': 1.0, 'front': 1.0, 'arms': 1.0, 'trip': 2.0, 'and': 8.0, 'quart': 1.0, 'toss': 1.0, 'lie': 1.0, 'to': 2.0, 'itself': 1.0, 'in': 6.0, 'lavatories': 1.0, 'table': 1.0, 'll': 2.0, 'usually': 1.0, 'when': 2.0, 'by': 2.0, 'large': 1.0, 'two': 1.0, 'little': 1.0, 'very': 1.0, 'inches': 1.0, 'my': 2.0, 'one': 2.0, 'ones': 1.0, 'but': 2.0, 'came': 1.0, 'sheet': 1.0, 'reverse': 1.0, 'doesn': 1.0, 'problem': 1.0, 'part': 2.0, 'during': 1.0, 'touch': 1.0, 'these': 2.0, 'paper': 1.0, 'has': 1.0, 'contact': 1.0, 'picked': 1.0, 'with': 3.0, 'many': 1.0, 'baby': 1.0, 'pad': 3.0, 'this': 1.0, 'soft': 2.0, 'germs': 1.0, 'calves': 1.0, 'change': 2.0, 'up': 1.0, 'don': 1.0, 'if': 1.0, 'stay': 1.0, 'way': 2.0, 'contained': 1.0, 'until': 1.0, 'probably': 1.0, 'any': 1.0, 'feel': 1.0, 'end': 1.0, 'whole': 1.0, '2': 1.0, 'thing': 1.0, 'beyond': 1.0, 'away': 1.0, 'thin': 1.0, 'bought': 1.0, 'waterproof': 1.0, 'type': 2.0, 'old': 1.0, 'layovers': 1.0, 'material': 1.0, 'plane': 2.0, 'have': 1.0, 'exact': 1.0, 'components': 1.0, 'elbows': 1.0, 'made': 1.0, 'side': 2.0, 'almost': 1.0, 'year': 1.0, 'vinyl': 1.0, 'who': 1.0, 'is': 1.0, 'for': 1.0, 'restrooms': 1.0, '32': 1.0}
Word element => {'attractive': 1.0, 'room': 1.0, 'colors': 1.0, 'make': 1.0, 'the': 1.0, 'warm': 1.0, 'nice': 1.0, 'gender': 1.0, 'confort': 1.0, 'for': 2.0, 'neutral': 1.0, 'baby': 3.0, 'procuct': 1.0, 'by': 1.0, 's': 2.0, 'great': 1.0, 'works': 1.0, 'and': 1.0, 'any': 1.0}
Word element => {'into': 1.0, 'coming': 1.0, 'babies': 1.0, 'like': 1.0, 'since': 1.0, 'did': 1.0, 'i': 1.0, 'is': 1.0, 'said': 1.0, 'and': 1.0, 'baking': 1.0, 'contact': 1.0, 'waterproof': 1.0, 'on': 1.0, 'large': 1.0, 'sheets': 2.0, 'that': 1.0, 'not': 1.0, 'are': 1.0, 'control': 1.0, 'the': 2.0, 'my': 1.0, 'this': 1.0, 'with': 1.0, 'skin': 1.0, 'it': 1.0, 'for': 1.0, 'soda': 1.0, 'them': 1.0, 'had': 1.0, 'odor': 1.0}
Word element => {'multiple': 1.0, 'o': 1.0, 'are': 1.0, 'a': 1.0, 'enough': 1.0, 'around': 1.0, 'want': 1.0, 'etc': 1.0, 'stores': 1.0, 'carry': 1.0, 'airports': 1.0, 'to': 2.0, 'on': 1.0, 'good': 1.0, 'be': 1.0, 'in': 1.0, 'also': 1.0, 'have': 1.0, 'cover': 2.0, 'you': 2.0, 'changing': 3.0, 'can': 1.0, 'they': 4.0, 'surfaces': 1.0, 'the': 2.0, 'sturdy': 1.0, 'pad': 2.0, 'use': 2.0, 'not': 1.0, 'saved': 1.0, 'just': 1.0, 'i': 1.0, 'several': 1.0, 'dirty': 2.0, 'times': 2.0, 'did': 1.0, 'if': 2.0, 'me': 1.0, 'get': 1.0, 'go': 1.0, 'under': 1.0, 'throw': 1.0, 'them': 2.0, 'out': 1.0, 'would': 1.0}
Word element => {'ll': 1.0, 'moves': 1.0, 'too': 1.0, 'and': 3.0, 'up': 1.0, 'the': 1.0, 'my': 2.0, 'paper': 1.0, 'it': 2.0, 'he': 1.0, 'great': 1.0, 'until': 1.0, 'worked': 1.0, 'very': 1.0, 'fast': 1.0, 'wise': 1.0, 'they': 2.0, 'cutting': 1.0, 'since': 1.0, 'lot': 1.0, 'recommend': 1.0, '3': 1.0, 'now': 2.0, 'absorb': 1.0, 'months': 1.0, 'old': 1.0, 'i': 1.0, 'have': 2.0, 'is': 2.0, 'around': 1.0, 'you': 1.0, 'tush': 1.0, 'weight': 1.0, 'but': 1.0, 'hubby': 1.0, 'through': 1.0, 'loved': 1.0, 'other': 1.0, 'kicks': 1.0, 'in': 1.0, 'well': 1.0, 'half': 1.0, 'son': 1.0, 'under': 1.0, 'light': 1.0, 'just': 1.0, 'placing': 1.0, 'them': 4.0, 'baby': 1.0, 'go': 1.0, 'a': 1.0, 'we': 1.0, 's': 1.0}
Word element => {'up': 1.0, 'this': 1.0, 'with': 1.0, 'poop': 1.0, 'and': 4.0, 'are': 2.0, 'disposable': 1.0, 'real': 1.0, 'while': 1.0, 'being': 2.0, 'their': 4.0, 'newborns': 1.0, 'when': 1.0, 'well': 1.0, 'a': 1.0, 'grabbing': 1.0, 'for': 1.0, 'they': 3.0, 'changed': 2.0, 'work': 1.0, 'but': 1.0, 'change': 1.0, 'these': 1.0, 'remain': 1.0, 'be': 1.0, 'gets': 1.0, 'still': 1.0, 'pad': 2.0, 'saves': 1.0, 'because': 2.0, 'tend': 1.0, 'usually': 1.0, 'having': 1.0, 'changing': 1.0, 'once': 1.0, 'them': 2.0, 'baby': 1.0, 'wrinkling': 1.0, 'few': 1.0, 'months': 1.0, 'on': 1.0, 'old': 1.0, 'start': 1.0, 'to': 3.0, 'pads': 1.0, 'the': 3.0, 'hands': 1.0, 'diapers': 2.0, 'slithering': 1.0, 'feet': 1.0}
Word element => {'good': 1.0, 'price': 1.0, 'was': 1.0, 'restroom': 1.0, 'public': 1.0, 'a': 1.0, 'to': 2.0, 'and': 2.0, 'nice': 1.0, 'take': 1.0, 'along': 1.0, 'in': 1.0, 'diaper': 1.0, 'for': 2.0, 'works': 1.0, 'great': 1.0, 'changing': 1.0, 'sleepovers': 1.0}
Word element => {'house': 1.0, 'clean': 1.0, 'quick': 1.0, 'wet': 1.0, 'for': 2.0, 'actually': 1.0, 'great': 1.0, 'until': 1.0, 'out': 1.0, 'throw': 1.0, 'soiled': 1.0, 'don': 1.0, 'you': 1.0, 'if': 1.0, 'sister': 1.0, 'shower': 1.0, 'ups': 1.0, 'this': 1.0, 'have': 1.0, 'only': 2.0, 'pack': 1.0, 'money': 1.0, 'but': 2.0, 'sold': 1.0, 'and': 3.0, 'these': 1.0, 'the': 2.0, 'very': 1.0, 'little': 1.0, 'i': 1.0, 'are': 4.0, 'on': 1.0, 'weeks': 1.0, 'now': 1.0, 'outside': 1.0, 'our': 2.0, 'to': 1.0, 'is': 1.0, '5': 1.0, 'parents': 1.0, 'girl': 1.0, 'came': 1.0, 'in': 1.0, 'allow': 1.0, 'new': 1.0, 've': 1.0, 'law': 1.0, 't': 1.0, 'we': 2.0, 'a': 1.0, 'us': 1.0, 'since': 1.0, 'at': 1.0, 'finding': 1.0, 'husband': 1.0, 'places': 1.0, 'ever': 1.0, 'they': 3.0, 'my': 2.0, 'purchase': 1.0, 'them': 2.0, 'world': 1.0, 'she': 1.0, 'been': 2.0, 'gave': 1.0, 'into': 1.0, 'or': 1.0, 'worth': 1.0}
Word element => {'us': 1.0, 'disposable': 1.0, 'cheaper': 1.0, 'bit': 1.0, 'also': 1.0, 'stores': 1.0, 'and': 1.0, 'r': 1.0, 'public': 1.0, 'they': 2.0, 'using': 1.0, 'were': 1.0, 'vacation': 1.0, 'figured': 1.0, 'these': 1.0, 'diaper': 1.0, 'more': 1.0, 'the': 2.0, 'son': 1.0, 'babies': 1.0, 'that': 1.0, 'changing': 3.0, 'great': 1.0, 'big': 1.0, 'those': 1.0, 'from': 1.0, 'while': 1.0, 'bought': 1.0, 'be': 1.0, 'koala': 1.0, 'my': 1.0, 'bag': 1.0, 'd': 1.0, 'same': 1.0, 'surface': 1.0, 'in': 2.0, 'on': 2.0, 'tables': 2.0, 'frequently': 1.0, 'i': 2.0, 'restaurants': 1.0, 'sized': 1.0, 'than': 2.0, 'normal': 1.0, 'are': 2.0, 'care': 1.0, 'we': 2.0, 's': 1.0, 'a': 2.0, 'size': 1.0, 'cover': 1.0, 'enough': 1.0, 'almost': 1.0, 'pads': 1.0, 'as': 1.0, 'to': 2.0, 'all': 1.0, 'of': 1.0, 'take': 1.0, 'many': 1.0}
Word element => {'cold': 1.0, 'night': 1.0, 'not': 1.0, 'so': 1.0, 'it': 1.0, 'changing': 1.0, 'these': 1.0, 'have': 1.0, 'is': 1.0, 'with': 1.0, 'are': 1.0, 'the': 3.0, 'table': 1.0, 'very': 1.0, 'to': 1.0, 'of': 1.0, 'bassinet': 1.0, 'middle': 1.0, 'in': 1.0, 'for': 1.0, 'handy': 1.0, 'use': 1.0}
Word element => {'store': 1.0, 'local': 1.0, 'amazon': 1.0, 'here': 1.0, 'don': 1.0, 'even': 1.0, 'those': 1.0, 'official': 2.0, 'is': 2.0, 'found': 2.0, 'after': 1.0, 'sometimes': 1.0, 'our': 3.0, 'pads': 6.0, 'changing': 6.0, 'something': 1.0, 't': 1.0, 'cost': 1.0, 'would': 2.0, 'strongly': 1.0, 'had': 2.0, 'before': 1.0, 'but': 2.0, 'work': 2.0, 'can': 3.0, 'accidentally': 1.0, 'product': 2.0, 'price': 1.0, 'baby': 5.0, 'them': 1.0, 'off': 1.0, 'pad': 3.0, 'if': 1.0, 'section': 2.0, 'out': 1.0, 'and': 5.0, 'that': 3.0, 'because': 2.0, 'find': 2.0, 'not': 1.0, 'bought': 1.0, 'of': 3.0, 'the': 10.0, 'great': 3.0, 'these': 6.0, 'reviewers': 1.0, 'by': 1.0, 'worked': 1.0, 'bed': 3.0, 'reviews': 1.0, 'we': 6.0, 'a': 4.0, 's': 1.0, 'an': 3.0, 'all': 1.0, 'other': 1.0, 'girl': 1.0, 'they': 3.0, 'cut': 1.0, 'be': 1.0, 'disposable': 5.0, 'overall': 2.0, 'one': 1.0, 'lot': 2.0, 'who': 3.0, 'better': 2.0, 'was': 1.0, 'recommend': 2.0, 'more': 2.0, 'than': 1.0, 'huge': 1.0, 'absorbent': 1.0, 'on': 3.0, 'it': 2.0, 'when': 1.0, 'pees': 1.0, 'you': 3.0, 'road': 1.0, 'left': 1.0, 'hospital': 1.0, 'us': 1.0, 'gave': 1.0, 'under': 3.0, 'wonders': 1.0, 'care': 1.0, 'like': 1.0, 'adult': 2.0, 'your': 1.0, 'sizes': 1.0, 'as': 2.0, 'diaper': 2.0, 'purchase': 1.0, 'patients': 1.0, 'use': 1.0, 'hospitals': 1.0, 'have': 1.0, 'case': 1.0, 'accidents': 1.0, 'are': 3.0, 'first': 1.0, 'plus': 1.0, 'best': 1.0, 'effective': 1.0, 'in': 5.0, 'per': 1.0, 'unit': 1.0, 'different': 1.0, 'pointed': 1.0, 'i': 2.0, 'for': 3.0, 'half': 1.0, 'people': 1.0, 'want': 2.0}
Word element => {'restrooms': 1.0, 'to': 1.0, 'feel': 1.0, 'public': 1.0, 'makes': 1.0, 'didn': 1.0, 'get': 1.0, 'and': 1.0, 'me': 2.0, 'when': 1.0, 'daughter': 2.0, 'm': 1.0, 'i': 3.0, 'that': 2.0, 't': 1.0, 'these': 2.0, 'in': 1.0, 'also': 1.0, 'lap': 1.0, 'usually': 1.0, 'days': 1.0, 'a': 2.0, 'plane': 2.0, 'but': 1.0, 'via': 1.0, 'so': 2.0, 'on': 4.0, 'it': 2.0, 'with': 1.0, 'once': 1.0, 'no': 1.0, 'change': 1.0, 'traveling': 1.0, 'really': 1.0, 'means': 1.0, 'changing': 2.0, 'she': 1.0, 'table': 2.0, 'better': 1.0, 'did': 1.0, 'if': 1.0, 'sucks': 1.0, 'have': 2.0, 'pants': 1.0, 'pees': 1.0, 'my': 4.0}
Word element => {'laundry': 1.0, 'a': 1.0, 'us': 1.0, 'have': 1.0, 'them': 1.0, 'underneath': 1.0, 'is': 1.0, 'protect': 1.0, 'are': 1.0, 'an': 1.0, 'to': 1.0, 'and': 3.0, 'lot': 1.0, 'table': 1.0, 'our': 1.0, 'the': 1.0, 'these': 2.0, 'time': 1.0, 'they': 1.0, 'as': 1.0, 'changing': 2.0, 'whatever': 1.0, 'love': 1.0, 'on': 3.0, 'we': 2.0, 'saved': 1.0, 'strong': 1.0, 'go': 1.0, 'use': 1.0, 'pad': 1.0, 'of': 1.0, 'always': 1.0, 'hand': 1.0, 'keep': 1.0, 'some': 1.0, 'enough': 1.0}
Word element => {'with': 1.0, 'and': 1.0, 'home': 1.0, 'at': 1.0, 'me': 1.0, 'use': 1.0, 'multiple': 1.0, 'i': 2.0, 'also': 1.0, 'take': 1.0, 's': 1.0, 'great': 2.0, 'it': 1.0, 'love': 1.0, 'the': 1.0, 'them': 1.0, 'a': 1.0, 'product': 1.0, 'pack': 1.0, 'these': 1.0, 'deal': 1.0}
Word element => {'wet': 1.0, 'baby': 1.0, 'your': 1.0, 'make': 1.0, 'never': 1.0, 'will': 1.0, 'on': 1.0, 'milk': 1.0, 'pour': 1.0, 'just': 1.0, 'can': 1.0, 'clothes': 1.0, 's': 1.0, 'you': 1.0, 'magic': 1.0, 'is': 1.0, 'a': 1.0, 'i': 1.0, 'it': 2.0, 'with': 1.0, 'this': 2.0, 'soooo': 1.0, 'the': 3.0, 'them': 1.0, 'made': 1.0, 'pads': 1.0, 'have': 1.0, 'all': 1.0, 'are': 2.0, 'disposable': 1.0, 'keep': 1.0, 'timethey': 1.0, 'must': 1.0, 'from': 1.0, 'same': 1.0, 'material': 2.0, 'that': 1.0, 'bibs': 1.0, 'me': 1.0, 'and': 2.0}
Word element => {'months': 1.0, 'few': 1.0, 'in': 1.0, 'are': 1.0, 'around': 1.0, 'things': 1.0, 'many': 1.0, 'station': 1.0, 'protect': 1.0, 'you': 2.0, 'sheets': 1.0, 'horrid': 1.0, 'so': 1.0, 'confuses': 1.0, 'your': 1.0, 'they': 2.0, 'and': 1.0, 'me': 2.0, 'by': 1.0, 'sell': 1.0, 'blast': 1.0, 'don': 1.0, 'a': 2.0, 'much': 1.0, 'to': 1.0, 'be': 1.0, 'must': 1.0, 'changing': 1.0, 'why': 1.0, 'disproportionate': 1.0, 'babies': 1.0, 'size': 1.0, 'can': 2.0, 'first': 1.0, 'it': 1.0, 'the': 1.0, 'these': 2.0, 't': 1.0, 'generate': 1.0, 'radius': 1.0, 'their': 1.0}
Word element => {'got': 1.0, 'am': 1.0, 'i': 1.0, 'we': 1.0, 'those': 1.0, 'my': 1.0, 'bag': 1.0, 'can': 1.0, 'baby': 1.0, 'don': 1.0, 'soil': 1.0, 'you': 1.0, 'multiple': 1.0, 'if': 1.0, 'it': 2.0, 'durable': 1.0, 'purse': 1.0, 'and': 2.0, 'wide': 1.0, 'good': 1.0, 'think': 1.0, 'the': 2.0, 't': 1.0, 'pads': 1.0, 'be': 1.0, 'wanted': 1.0, 'husband': 1.0, 'to': 1.0, 'long': 1.0, 'used': 1.0, 'glad': 1.0, 'times': 1.0, 'fit': 1.0, 'enough': 1.0, 'quality': 1.0, 'inside': 1.0}
Word element => {'does': 1.0, 'down': 1.0, 'which': 1.0, 'entire': 1.0, 'size': 1.0, 'is': 1.0, 'really': 1.0, 's': 1.0, 'table': 2.0, 'leak': 1.0, 'of': 1.0, 'up': 1.0, 'but': 1.0, 'diapers': 1.0, 'when': 1.0, 'i': 2.0, 'big': 1.0, 'changing': 1.0, 'save': 1.0, 'the': 3.0, 'mess': 1.0, 'great': 2.0, 'diaper': 1.0, 'in': 1.0, 'my': 1.0, 'cut': 1.0, 'cover': 1.0, 'those': 1.0, 'or': 1.0, 'mostly': 1.0, 'it': 3.0, 'this': 2.0, 'poos': 1.0, 'waste': 1.0, 'on': 1.0, 'so': 1.0, 'kept': 1.0, 'flowing': 1.0, 'to': 2.0, 'was': 1.0, 'brought': 1.0, 'not': 2.0, 'slide': 1.0, 'out': 1.0, 'and': 3.0}
Word element => {'you': 1.0, 'thank': 1.0, 'happier': 1.0, 'couldn': 1.0, 'mom': 1.0, 'favorite': 1.0, 'her': 1.0, 'light': 1.0, 'colors': 1.0, 'soft': 1.0, 'this': 1.0, 'pictures': 1.0, 'have': 1.0, 'would': 1.0, 'if': 1.0, 'sure': 1.0, 'wasn': 1.0, 'supposedly': 1.0, 'pvc': 2.0, 'teether': 2.0, 'they': 3.0, 'free': 6.0, 'product': 2.0, 'be': 2.0, 'chemical': 1.0, 'silicone': 1.0, 'sprouts': 2.0, 'me': 1.0, 'i': 4.0, 'and': 3.0, 'green': 2.0, 'makes': 1.0, 'old': 1.0, 'don': 2.0, 'them': 2.0, 'baby': 3.0, 'think': 1.0, 'the': 2.0, 'flexible': 1.0, 'because': 1.0, 'why': 1.0, 'but': 3.0, 'are': 1.0, 'my': 2.0, 'knowing': 1.0, 're': 1.0, 'teethers': 1.0, 'fancy': 1.0, 'loves': 2.0, 'that': 2.0, '6': 1.0, 'there': 1.0, 'bpa': 2.0, 'phthalate': 2.0, 'know': 1.0, 'like': 2.0, 'colorless': 1.0, 'since': 2.0, 'month': 1.0, 'it': 3.0, 'a': 1.0, 's': 2.0, 't': 4.0, 'might': 1.0, 'bought': 1.0, 'one': 1.0, 'weight': 1.0, 'less': 1.0, 'used': 1.0, 'in': 1.0}
Word element => {'ones': 1.0, 'new': 1.0, 'of': 1.0, 'track': 1.0, 'hope': 1.0, 'or': 1.0, 'dropped': 1.0, 'if': 1.0, 'enjoys': 1.0, 'he': 2.0, 'only': 1.0, 'hard': 1.0, 'hold': 1.0, 'pick': 1.0, 'easy': 1.0, 'four': 2.0, 'can': 1.0, 'are': 3.0, 'chewing': 1.0, 'misplaced': 1.0, 'month': 1.0, 'old': 1.0, '7': 1.0, 'clear': 1.0, 'and': 3.0, 'up': 1.0, 'very': 2.0, 'son': 1.0, 'on': 1.0, 'to': 3.0, 'our': 1.0, 'teethers': 2.0, 'they': 3.0, 'has': 1.0, 'these': 1.0, 'more': 2.0, 'the': 2.0, 'them': 1.0, 'better': 1.0, 'ordering': 1.0, 'other': 2.0, 'we': 4.0, 'loves': 1.0, 'that': 1.0, 'gave': 1.0, 'for': 1.0, 'stars': 1.0, 'though': 1.0, 'find': 1.0, 'than': 1.0, 'because': 1.0, 'keep': 1.0, 'since': 1.0, 'lost': 1.0, 'i': 1.0, 'two': 1.0, 'bought': 1.0, 'him': 1.0, 'be': 1.0}
Word element => {'baby': 1.0, 'coming': 1.0, 'up': 1.0, 'planning': 1.0, 'am': 1.0, 'value': 1.0, 'still': 1.0, 'are': 2.0, 'more': 1.0, 'these': 1.0, 'teethers': 1.0, 'little': 2.0, 'showers': 1.0, 'they': 2.0, 'makes': 1.0, 'good': 1.0, 'loves': 1.0, 'which': 1.0, 'for': 1.0, 'one': 1.0, 'clear': 1.0, 'i': 2.0, 'it': 1.0, 'difficult': 1.0, 'a': 2.0, 'see': 1.0, 'and': 1.0, 'my': 1.0, 'smaller': 1.0, 'than': 1.0, 'but': 1.0, 'buying': 1.0, 'to': 1.0, 'was': 1.0, 'on': 1.0, 'expecting': 1.0}
Word element => {'hopes': 1.0, 'set': 1.0, 'ones': 1.0, 'pretty': 1.0, 'to': 1.0, 'any': 1.0, 'have': 1.0, 'don': 2.0, 'you': 1.0, 'if': 1.0, 'shot': 1.0, 'are': 1.0, 'around': 1.0, 'say': 1.0, 'my': 2.0, 'with': 1.0, 'one': 2.0, 'for': 1.0, 'that': 2.0, 'teethers': 1.0, 'thought': 1.0, 'high': 1.0, 'were': 1.0, 'about': 1.0, 'baby': 1.0, 'i': 7.0, 'found': 2.0, 'really': 2.0, 'was': 2.0, 'colorful': 2.0, 'her': 1.0, 'even': 1.0, 'in': 1.0, 'these': 2.0, 'excited': 1.0, 'comfortable': 1.0, 'great': 1.0, 'mouth': 1.0, 'because': 2.0, 'those': 1.0, 'not': 1.0, 'especially': 1.0, 'guilt': 1.0, 'of': 1.0, 'once': 1.0, 'alas': 1.0, 'free': 1.0, 'they': 2.0, 'teether': 1.0, 'however': 1.0, 'so': 1.0, 'd': 1.0, 'though': 1.0, 'but': 1.0, 'aren': 1.0, 'a': 2.0, 't': 3.0, 'could': 1.0, 'putting': 1.0, 'be': 1.0, 'convinced': 1.0, 'your': 1.0, 'think': 1.0, 'worth': 1.0, 'or': 1.0, 'little': 1.0, 'exciting': 1.0, 'looking': 1.0}
Word element => {'blanket': 1.0, 'seeing': 1.0, 'problem': 1.0, 'her': 3.0, 'is': 2.0, 'highly': 1.0, 'really': 1.0, '6': 1.0, 'of': 1.0, 'away': 1.0, 'and': 1.0, 'do': 1.0, 'right': 1.0, 'size': 1.0, 'to': 2.0, 'recommend': 1.0, 'was': 1.0, 'but': 2.0, 'didn': 1.0, 'little': 1.0, 'my': 1.0, 'choice': 1.0, 'at': 1.0, 'for': 2.0, 'daughter': 1.0, 'by': 1.0, 'i': 2.0, '4': 1.0, 'bought': 1.0, 'months': 2.0, 'on': 2.0, 'take': 1.0, 'no': 1.0, 'about': 1.0, 'it': 7.0, 'she': 3.0, 'hands': 1.0, 'colored': 1.0, 'hold': 1.0, 'enjoys': 1.0, 'chewing': 1.0, 'this': 1.0, 'perfect': 1.0, 'wish': 1.0, 'so': 1.0, 't': 1.0, 'we': 1.0, 'could': 1.0, 'find': 1.0, 'toy': 1.0, 'easier': 1.0, 'has': 1.0}
Word element => {'fun': 1.0, 'developmental': 1.0, 'his': 1.0, 'practicing': 1.0, 'holding': 1.0, 'chewing': 1.0, 'interested': 1.0, 'currently': 1.0, '8mo': 1.0, 'likes': 1.0, 'bathand': 1.0, 'holes': 1.0, 'drain': 1.0, 'gender': 1.0, 'hole': 1.0, 'pigeon': 1.0, 'do': 1.0, 'also': 1.0, 'differently': 1.0, 'stick': 1.0, 'really': 1.0, 'blue': 1.0, 'see': 1.0, 'salmon': 1.0, 'peach': 1.0, 'old': 1.0, 'teach': 1.0, 'pick': 1.0, 'differences': 1.0, 'nuances': 1.0, 'it': 1.0, 'shade': 3.0, 'colors': 4.0, 'teaches': 1.0, 'most': 1.0, 'toxic': 1.0, 'like': 1.0, 'breakable': 1.0, 'into': 1.0, 'non': 2.0, 'appropriate': 1.0, 'other': 1.0, 'matching': 1.0, 'all': 2.0, 'an': 1.0, 'on': 1.0, 'patter': 1.0, 'item': 1.0, 'got': 1.0, 'if': 1.0, 'asked': 1.0, 'they': 5.0, 'took': 1.0, 'color': 2.0, 'order': 1.0, 'son': 3.0, 'importantly': 1.0, 'hands': 1.0, 'seem': 1.0, 'this': 3.0, 'we': 3.0, 'for': 4.0, 'china': 1.0, 'in': 4.0, 'age': 1.0, 'immediately': 1.0, 'welcome': 1.0, 'set': 1.0, 'finger': 1.0, 'the': 5.0, 'of': 2.0, 'give': 1.0, 'pair': 1.0, 'your': 1.0, 'any': 1.0, 'to': 7.0, 'i': 2.0, 'well': 2.0, 'recognition': 1.0, 'are': 5.0, 'able': 1.0, 'you': 3.0, 'that': 2.0, 'easily': 1.0, 'features': 2.0, 'purple': 1.0, 'edges': 1.0, 'baby': 1.0, 'many': 1.0, 'reverse': 1.0, 'lavender': 1.0, 'make': 1.0, 'complain': 1.0, 'surface': 1.0, 'kill': 1.0, 'as': 2.0, 'heavy': 1.0, 'husband': 1.0, 'anyway': 1.0, 'smaller': 1.0, 'bought': 1.0, 'be': 3.0, 'not': 6.0, 'learning': 1.0, 'my': 5.0, 'me': 2.0, 'orange': 1.0, 'would': 2.0, 'each': 1.0, 'activities': 1.0, 'or': 1.0, 'cup': 3.0, 'though': 1.0, 'value': 1.0, 'when': 1.0, 'recognize': 1.0, 'stacked': 1.0, 'preferred': 1.0, 'larger': 1.0, 'incorporate': 1.0, 'credit': 1.0, 'have': 1.0, 'a': 4.0, 'small': 1.0, 'child': 2.0, 'up': 1.0, 'has': 2.0, 'them': 7.0, 'particular': 1.0, 'identification': 1.0, 'made': 1.0, 'rounded': 1.0, 'and': 10.0, 'about': 2.0, 'play': 1.0, 'stacking': 2.0, 'great': 2.0, 'with': 2.0, 'relationships': 1.0, 'nice': 1.0, 'little': 1.0, 'travel': 1.0, 'definitely': 1.0, 'pack': 1.0, 'sizing': 1.0, 'picked': 1.0, 'grows': 1.0, 'friends': 1.0, 'aid': 1.0, 'hand': 2.0, 'shades': 2.0, 'where': 1.0, 'coordination': 2.0, 'games': 1.0, 'by': 1.0, 'placing': 1.0, 'shapes': 2.0, 'learn': 1.0, 'inside': 1.0, 'he': 3.0, 'bottom': 1.0, 'specific': 1.0, 'important': 1.0, 'design': 1.0, 'achieved': 1.0, 'so': 1.0, 'can': 3.0, 'size': 1.0, 'is': 2.0, 'handle': 1.0, 'patterns': 1.0, 'at': 1.0, 'll': 1.0, 'memory': 2.0, 'right': 1.0}
Word element => {'bombarded': 1.0, 'being': 1.0, 'functional': 1.0, 'toys': 1.0, 'used': 1.0, 'shapes': 1.0, 'designs': 1.0, 'recognition': 1.0, 'have': 1.0, 'is': 1.0, 'more': 1.0, 'bottoms': 1.0, 'pairing': 1.0, 'without': 1.0, 'the': 2.0, 'counting': 1.0, 'colors': 1.0, 'use': 1.0, 'able': 1.0, 'together': 1.0, 'them': 4.0, 'out': 1.0, 'other': 1.0, 'll': 1.0, 'inside': 1.0, 'can': 1.0, 'work': 1.0, 'but': 1.0, 'things': 1.0, 'multi': 1.0, 'of': 3.0, 'appreciate': 1.0, 'really': 3.0, 'old': 1.0, 'i': 4.0, 'enjoys': 1.0, 'be': 2.0, 'putting': 1.0, 'trying': 1.0, 'does': 1.0, 'even': 1.0, 'her': 1.0, 'grasps': 1.0, 'learning': 1.0, 'these': 1.0, 'basic': 1.0, 'each': 1.0, 'and': 6.0, 'also': 1.0, 'banging': 1.0, 'they': 3.0, 'eventually': 1.0, 'my': 1.0, 'onthe': 1.0, 'so': 4.0, '12': 1.0, 'lights': 1.0, 'for': 1.0, 'love': 2.0, 'she': 3.0, 'month': 1.0, 'or': 1.0, 'floor': 1.0, 'cups': 2.0, 'grow': 1.0, 'to': 4.0, 'now': 1.0, 'on': 2.0, 'make': 1.0, 'noise': 2.0, 'drink': 1.0, 'that': 3.0, 'stackable': 1.0, 'with': 2.0, 'much': 1.0, 'developmentally': 1.0, 'only': 1.0, 'right': 1.0, 'are': 2.0}
Word element => {'newborns': 1.0, 'for': 1.0, 'old': 1.0, 's': 1.0, 'a': 1.0, 'since': 1.0, 'was': 1.0, 'weeks': 1.0, 'now': 1.0, 'has': 1.0, 'high': 1.0, 'special': 1.0, 'set': 1.0, 'of': 1.0, '9': 1.0, 'this': 1.0, 'loves': 1.0, 'just': 1.0, 'few': 1.0, 'it': 2.0, 'she': 2.0, 'cup': 1.0, 'or': 1.0, 'worth': 1.0, 'still': 1.0, 'really': 1.0, 'every': 1.0, 'bath': 2.0, 'our': 1.0, 'and': 2.0, 'penny': 1.0, 'these': 1.0, 'holes': 1.0, 'the': 1.0, 'are': 3.0, 'months': 1.0, 'one': 1.0, 'her': 1.0, 'bottom': 1.0, 'favorite': 1.0, 'toys': 1.0, 'there': 1.0, 'chair': 1.0, 'tummy': 1.0, 'anytime': 1.0, 'in': 1.0, 'time': 4.0, 'so': 1.0, 'daughter': 1.0, 'water': 1.0, 'drops': 1.0}
Word element => {'is': 1.0, 'which': 1.0, 'used': 1.0, 'be': 1.0, 'can': 1.0, 'them': 1.0, 'too': 2.0, 'us': 1.0, 'they': 1.0, 'our': 1.0, 'in': 1.0, 'apart': 1.0, 'a': 3.0, 'water': 1.0, 'go': 1.0, 'with': 1.0, 'everywhere': 1.0, 'on': 1.0, 'loves': 2.0, 'have': 1.0, 'lo': 1.0, 'and': 1.0, 'as': 1.0, 'must': 1.0, 'toy': 1.0, 'to': 1.0, 'lot': 1.0, 'she': 1.0, 'take': 1.0, 'great': 1.0, 'these': 2.0, 'the': 2.0, 'use': 1.0, 'chew': 1.0}
Word element => {'a': 1.0, 'will': 1.0, 'time': 1.0, 'they': 1.0, 'i': 1.0, 'think': 1.0, 'loves': 1.0, 'babies': 1.0, 'for': 2.0, 'with': 1.0, 'durable': 1.0, 'to': 1.0, 'toy': 1.0, 'long': 1.0, 'stack': 1.0, 'my': 1.0, 'and': 2.0, 'son': 1.0, 'very': 1.0, 'great': 1.0, 'these': 1.0, 'water': 1.0, 'last': 1.0, 'pour': 1.0, 'them': 2.0, 'out': 1.0, 'up': 1.0, 'there': 1.0, 'toddlers': 1.0, 'fill': 1.0, 'plastic': 1.0}
Word element => {'product': 1.0, 'good': 1.0, 'you': 2.0, 'i': 1.0, 'these': 1.0, 'is': 1.0, 'wish': 1.0, 'when': 1.0, 'daughter': 1.0, 'could': 1.0, 'play': 1.0, 'to': 1.0, 'still': 1.0, 'likes': 1.0, 'little': 1.0, 'my': 1.0, 'stack': 1.0, 'them': 2.0, 'a': 1.0, 'up': 1.0, 'flip': 1.0, 'over': 1.0, 'but': 1.0, 'with': 1.0, 'it': 1.0}
Word element => {'water': 1.0, 'use': 1.0, 'you': 1.0, 'so': 1.0, 'it': 1.0, 'can': 1.0, 'great': 1.0, 'bottom': 1.0, 'stackable': 1.0, 'product': 1.0, 'during': 1.0, 'and': 1.0, 'each': 1.0, 'very': 1.0, 'cup': 1.0, 'has': 1.0, 'time': 1.0, 'bath': 1.0, 'holes': 1.0, 'in': 2.0, 'the': 1.0}
Word element => {'used': 1.0, 'much': 1.0, 'with': 1.0, 'go': 1.0, 'a': 1.0, 'she': 1.0, 'these': 1.0, 'they': 1.0, 'loooves': 1.0, 'all': 1.0, 'but': 1.0, 'daughter': 1.0, 'and': 1.0, 'my': 1.0, 'trying': 1.0, 'them': 2.0, 'out': 1.0, 'to': 1.0, 'is': 1.0, 'figure': 1.0, 'plaything': 1.0, 'eats': 1.0, 'how': 1.0, 'simple': 1.0, 'plays': 1.0, 'together': 1.0}
Word element => {'use': 1.0, 'easy': 1.0, 'safe': 1.0, 'because': 1.0, 'stacking': 1.0, 'cute': 1.0, 'set': 2.0, 'of': 2.0, 'the': 2.0, 'cup': 1.0, 'my': 2.0, 'fond': 1.0, 'love': 2.0, 'i': 2.0, 'and': 2.0, 'very': 1.0, 'go': 1.0, 'it': 2.0, 'this': 2.0, 'with': 1.0, 'really': 1.0, 'is': 2.0, 'are': 1.0, 'overall': 1.0, 'nursery': 1.0, 'to': 1.0, 'look': 1.0, 'colors': 1.0, 'baby': 1.0, 'also': 1.0}
Word element => {'error': 1.0, 'like': 1.0, 'concepts': 1.0, 'learning': 1.0, 'who': 1.0, 'suited': 1.0, 'better': 1.0, 'be': 1.0, 'might': 1.0, 'which': 1.0, 'trial': 1.0, 'sizes': 1.0, 'older': 1.0, 'it': 1.0, 'obvious': 1.0, 'good': 1.0, 'really': 2.0, 'is': 1.0, 'for': 3.0, 'advanced': 1.0, 'not': 2.0, 'next': 1.0, 'they': 2.0, 'repeat': 1.0, 'more': 1.0, 'great': 1.0, 'these': 1.0, 'the': 3.0, 'are': 4.0, 'but': 1.0, 'goes': 1.0, 'stackers': 1.0, 'tiny': 1.0, 'kids': 2.0, 'ultra': 1.0, 'so': 1.0, 'bath': 1.0, 'similar': 1.0, 'and': 2.0, 'colors': 1.0}
Word element => {'brownies': 1.0, 'make': 1.0, 'couch': 1.0, 'under': 1.0, 'search': 1.0, 'not': 1.0, 'glad': 1.0, 'but': 1.0, 'these': 1.0, 'most': 1.0, 'would': 1.0, 'measuring': 1.0, 'ms': 1.0, 'm': 2.0, 'set': 1.0, 'probability': 1.0, 'probably': 1.0, 'name': 1.0, 'don': 1.0, 'and': 3.0, 'fill': 1.0, 'to': 10.0, 'as': 4.0, 'cup': 1.0, 'cups': 2.0, 'doesn': 1.0, 'through': 1.0, 'loved': 1.0, 'whether': 1.0, 'rock': 1.0, 'gambling': 1.0, 'water': 2.0, 'daughter': 1.0, 'though': 1.0, 'toys': 2.0, 'was': 1.0, 'thinks': 1.0, 'she': 2.0, 'baby': 2.0, 's': 1.0, 'we': 3.0, 'my': 5.0, 'cheap': 1.0, 'for': 3.0, 'well': 1.0, 'fast': 2.0, 'i': 6.0, 'unstack': 1.0, 'one': 1.0, 'best': 1.0, 'both': 1.0, 'fun': 1.0, 'knocks': 1.0, 'that': 3.0, 'loves': 1.0, 'when': 1.0, 'kids': 1.0, 'this': 1.0, 'the': 9.0, 'of': 5.0, 'is': 2.0, 'with': 4.0, 'purchases': 1.0, 'year': 1.0, 'allowing': 1.0, 'bath': 1.0, 'put': 1.0, 'flow': 1.0, 'on': 1.0, 'never': 1.0, 't': 2.0, 'likes': 1.0, 'toy': 1.0, 'used': 2.0, 'measure': 1.0, 'work': 1.0, 'over': 1.0, 'tub': 1.0, 'made': 1.0, 'side': 1.0, 'which': 2.0, 'stop': 1.0, 'however': 1.0, 'they': 1.0, 'are': 1.0, 'throw': 1.0, 'great': 2.0, 'spin': 1.0, 'play': 2.0, 'about': 1.0, 'whole': 1.0, 'he': 2.0, 'also': 1.0, 'remember': 1.0, 'have': 2.0, 'a': 6.0, 'small': 1.0, 'simple': 1.0, 'game': 2.0, 'animals': 1.0, 'see': 1.0, 'fling': 1.0, 'can': 1.0, 'land': 1.0, 'build': 1.0, 'tower': 1.0, 'before': 1.0, 've': 2.0, 'down': 1.0, 'variant': 1.0, 'gets': 1.0, 'every': 1.0, 'still': 1.0, 'them': 10.0, 'cars': 1.0, 'it': 4.0, 'him': 1.0, 'crawling': 1.0, 'three': 1.0, 'teach': 1.0, 'old': 1.0, 'time': 1.0, 'uses': 2.0, 'her': 1.0, 'use': 1.0, '1': 1.0, 'find': 1.0}
Word element => {'recommend': 1.0, 'about': 1.0, 'me': 1.0, 'can': 1.0, 'manipulates': 1.0, 'he': 3.0, 'mos': 1.0, 'stores': 1.0, 'my': 1.0, 'in': 1.0, 'see': 1.0, 'well': 1.0, 'since': 1.0, 'ones': 1.0, 'these': 1.0, 'without': 1.0, 'the': 1.0, 'son': 1.0, 'little': 1.0, 'very': 1.0, 'chemicals': 1.0, 'to': 2.0, 'cups': 1.0, 'they': 2.0, 'free': 1.0, 'are': 2.0, 'however': 1.0, 'smaller': 1.0, 'so': 2.0, 'them': 7.0, 'compared': 1.0, 'bang': 1.0, 'enjoy': 1.0, 'together': 1.0, 'stack': 1.0, 'inside': 1.0, 'worrying': 1.0, 'each': 1.0, 'other': 1.0, 'and': 1.0, 'just': 1.0, 'plain': 1.0, 'glad': 1.0, 'usually': 1.0, 'chew': 1.0, 'on': 1.0, 'of': 1.0, 'many': 1.0, 'loves': 2.0, 'nasty': 1.0, 'i': 2.0, '11': 1.0, 'you': 1.0, 'am': 1.0}
Word element => {'chewing': 1.0, 'and': 1.0, 'at': 1.0, 'months': 1.0, 'happy': 1.0, '6': 1.0, 'extremely': 1.0, 'm': 1.0, 'sucking': 1.0, 'other': 1.0, 'the': 1.0, 'read': 1.0, 'hadn': 1.0, 'if': 1.0, 'on': 1.0, 'comment': 1.0, 'thought': 1.0, 'me': 1.0, 'seem': 1.0, 'doesn': 1.0, 'completely': 1.0, 'would': 1.0, 've': 1.0, 'i': 7.0, 'my': 2.0, 'reviews': 1.0, 'they': 1.0, 'of': 1.0, 'set': 1.0, 'dyes': 1.0, 'isn': 1.0, 'takes': 1.0, 'up': 1.0, 'be': 1.0, 'artificial': 1.0, 'unreasonable': 1.0, 'daughter': 2.0, 'her': 2.0, 'before': 1.0, 'complete': 1.0, 'stack': 1.0, 'love': 1.0, 'for': 1.0, 'knowing': 1.0, 're': 1.0, 'enough': 2.0, 'christmas': 2.0, 'this': 1.0, 'stacking': 2.0, 'with': 2.0, 'she': 1.0, 'it': 3.0, 'so': 2.0, 'even': 1.0, 'got': 1.0, 'focus': 1.0, 'into': 1.0, 'loves': 1.0, 'sloppy': 1.0, 'never': 2.0, 'played': 1.0, 'have': 2.0, 'compare': 1.0, 'nothing': 1.0, 'cups': 3.0, 'to': 6.0, 'mouth': 1.0, 'find': 1.0, 'them': 4.0, 'plenty': 1.0, 'you': 1.0, 'hit': 1.0, 'some': 1.0, 'adores': 1.0, 'sure': 2.0, 'easy': 1.0, 'get': 1.0, 'but': 2.0, 'can': 1.0, 'a': 1.0, 'we': 1.0, 't': 4.0}
Word element => {'recommend': 1.0, 'him': 1.0, 'provide': 1.0, 'to': 1.0, 'seem': 1.0, 'them': 1.0, 'tub': 1.0, 'playing': 1.0, 'loves': 1.0, 'in': 2.0, 'with': 1.0, 'come': 1.0, 'well': 1.0, 'stack': 1.0, 'cups': 2.0, 'gender': 1.0, 'love': 1.0, 'they': 1.0, 'i': 2.0, 'neutral': 1.0, 'little': 1.0, 'bottom': 1.0, 'highly': 1.0, 'entertainment': 1.0, 'colors': 1.0, 'and': 2.0, 'have': 1.0, 'drainer': 1.0, 'son': 1.0, 'at': 1.0, 'great': 1.0, 'these': 2.0, 'holes': 1.0, 'the': 2.0, 'my': 1.0}
Word element => {'are': 1.0, 'simplest': 1.0, 'occupied': 1.0, 'her': 1.0, 'knowing': 1.0, 'whenever': 1.0, 'toys': 1.0, 'bag': 1.0, 'diaper': 1.0, 'throw': 1.0, 'nest': 1.0, 'them': 5.0, 'tub': 2.0, 'out': 2.0, '9': 1.0, 'months': 1.0, 'about': 1.0, 'sometimes': 1.0, 'ended': 1.0, 'was': 1.0, 'to': 2.0, 'now': 1.0, 'she': 4.0, 'when': 2.0, 'i': 3.0, 'old': 1.0, 'putting': 1.0, 'so': 1.0, 'okay': 1.0, 'got': 1.0, 'loved': 2.0, 'these': 2.0, 'the': 4.0, 'first': 1.0, 'in': 4.0, 'for': 1.0, 'using': 1.0, 'much': 1.0, 'though': 1.0, 'often': 1.0, 'my': 2.0, 'up': 2.0, 'of': 1.0, 'best': 1.0, 'd': 1.0, 'both': 1.0, 'll': 1.0, 'down': 1.0, 'stack': 1.0, 'play': 1.0, 'and': 2.0, 'keep': 1.0, 'at': 1.0, 'with': 1.0, 'knock': 1.0, 'go': 1.0, 'we': 2.0, 's': 1.0, 'really': 1.0, 'interested': 1.0, 'seeing': 1.0, 'daughter': 1.0, 'together': 1.0, 'how': 1.0, 'they': 2.0}
Word element => {'rim': 1.0, 'teething': 1.0, 'is': 1.0, 'he': 2.0, 'that': 1.0, 'are': 1.0, 'when': 1.0, 'about': 1.0, 'toy': 1.0, 'a': 1.0, 'we': 1.0, 'entertained': 1.0, 'keep': 1.0, 'land': 1.0, 'him': 1.0, 'absolutely': 1.0, 'they': 1.0, 'loves': 2.0, 'on': 2.0, 'son': 1.0, 'my': 2.0, 'and': 2.0, 'the': 1.0, 'these': 1.0, 'diaper': 1.0, 'love': 1.0, 'for': 1.0, 'water': 1.0, 'i': 1.0, 'chew': 1.0, 'stash': 1.0, 'bad': 1.0, 'emergency': 1.0, 'in': 2.0, 'also': 1.0, 'now': 1.0, 'to': 2.0, 'out': 1.0, 'them': 1.0}
Word element => {'useful': 1.0, 'but': 1.0, 's': 1.0, 'together': 1.0, 'banging': 1.0, 'and': 1.0, 'grab': 1.0, 'to': 2.0, 'hands': 1.0, 'his': 1.0, 'sticks': 1.0, 'on': 1.0, 'guy': 1.0, 'try': 1.0, 'bath': 1.0, 'is': 1.0, 'for': 1.0, 'also': 1.0, 'in': 1.0, 'toy': 1.0, 'through': 1.0, 'little': 2.0, 'set': 1.0, 'bottom': 1.0, 'my': 1.0, 'let': 1.0, 'them': 1.0, 'out': 1.0, 'run': 1.0, 'holes': 1.0, 'the': 5.0, 'great': 1.0, 'a': 2.0, 'loves': 2.0, 'cups': 1.0, 'when': 1.0, 'simple': 1.0, 'we': 1.0, 'water': 1.0, 'chomping': 1.0, 'it': 2.0, 'this': 1.0, 'he': 2.0, 'just': 1.0}
Word element => {'way': 1.0, 'stars': 1.0, 'five': 1.0, 'would': 1.0, 'eight': 1.0, 'are': 1.0, 'being': 1.0, 'that': 1.0, 'were': 1.0, 'crib': 1.0, 'a': 1.0, 'since': 1.0, 'month': 1.0, 'side': 1.0, 'i': 2.0, 'non': 1.0, 'old': 1.0, 'my': 2.0, 'end': 1.0, 'rate': 1.0, 'colored': 1.0, 'said': 1.0, 'in': 2.0, 'is': 1.0, 'more': 1.0, 'the': 5.0, 'these': 1.0, 'quibbles': 1.0, 'little': 1.0, 'brightly': 1.0, 'they': 1.0, 'smallish': 1.0, 'his': 1.0, 'wish': 1.0, 'minor': 1.0, 'adores': 1.0, 'and': 3.0, 'play': 1.0, 'consumer': 1.0, 'stop': 1.0, 'them': 3.0, 'he': 3.0, 'with': 1.0, 'will': 2.0, 'on': 2.0, 'put': 1.0, 'bath': 1.0, 'floor': 1.0, 'aside': 1.0, 'all': 1.0, 'cups': 1.0, 'as': 1.0}
Word element => {'diaper': 1.0, 'the': 1.0, 'more': 1.0, 'my': 1.0, 'than': 1.0, 'fits': 1.0, 'entertained': 1.0, 'i': 1.0, 'old': 1.0, 'bag': 1.0, 'infant': 1.0, 'year': 1.0, 'for': 1.0, 'in': 1.0, 'two': 1.0, 'easily': 1.0, 'small': 1.0, 'kept': 1.0, 'a': 2.0, 'bought': 1.0, 'it': 1.0, 'this': 1.0, 'is': 1.0, 'set': 1.0, 'that': 1.0}
Word element => {'my': 1.0, 'one': 1.0, 'great': 1.0, 'it': 1.0, 'on': 1.0, 'shape': 1.0, 'describing': 1.0, 'in': 1.0, 'safer': 1.0, 'so': 1.0, 'up': 1.0, 'materials': 1.0, 'finding': 1.0, 'presuming': 1.0, 'i': 2.0, 'these': 1.0, 'they': 1.0, 'holes': 1.0, 'are': 2.0, 'complaints': 1.0, 'favorites': 1.0, 'like': 2.0, 'using': 1.0, 's': 1.0, 'a': 1.0, 'dyes': 1.0, 'change': 1.0, 'can': 2.0, 'but': 1.0, 'use': 1.0, 'games': 1.0, 'no': 1.0, 'opposite': 1.0, 'things': 1.0, 'really': 1.0, 'of': 3.0, 'there': 1.0, 'product': 1.0, 'recycled': 1.0, 'printed': 1.0, 'son': 2.0, 'under': 1.0, 'colors': 1.0, 'lots': 1.0, 'little': 1.0, 'the': 6.0, 'counting': 1.0, 'loves': 1.0, 'to': 2.0, 'muted': 1.0, 'whack': 1.0, 'bottom': 2.0, 'down': 1.0, 'stack': 2.0, 'them': 3.0, 'also': 2.0, 'other': 1.0, 'you': 1.0, 'am': 1.0, 'when': 1.0, 'hiding': 1.0, 'or': 1.0, 'cup': 1.0, 'play': 1.0, 'and': 2.0}
Word element => {'too': 1.0, 'toys': 1.0, 'her': 1.0, 'all': 1.0, 'and': 1.0, 'together': 1.0, 'them': 1.0, 'these': 1.0, 'bang': 1.0, 'cups': 1.0, 'other': 1.0, 'loves': 1.0, 'are': 1.0, 'my': 1.0, 'on': 1.0, '10': 1.0, 'bathtime': 1.0, 'for': 1.0, 'daughter': 1.0, 'great': 2.0, 'month': 1.0, 'old': 1.0, 'to': 1.0}
Word element => {'couldnt': 1.0, 'year': 1.0, 'two': 1.0, '4': 1.0, 'old': 1.0, 'young': 1.0, 'alone': 1.0, 'improvement': 1.0, 'balance': 1.0, 'it': 1.0, 'slippery': 1.0, 'together': 1.0, 'inches': 1.0, 'into': 1.0, 'that': 2.0, 'their': 1.0, 'nest': 1.0, 'bad': 1.0, 'adult': 1.0, 'size': 1.0, 'is': 3.0, 'let': 1.0, 'cup': 1.0, 'needs': 1.0, 'so': 1.0, 'smaller': 1.0, 'such': 1.0, 'these': 2.0, 'the': 4.0, 'they': 3.0, 'for': 1.0, 'fit': 3.0, 'are': 1.0, 'biggest': 3.0, 'each': 2.0, 'maybe': 1.0, 'than': 1.0, 'an': 1.0, 'tower': 2.0, 'sure': 1.0, 'and': 1.0, 'green': 1.0, 'tall': 1.0, 'stack': 1.0, 'appear': 1.0, 'even': 1.0, 'picture': 1.0, 'check': 1.0, 'a': 3.0, 'hard': 1.0, 'while': 1.0, 'perfectly': 1.0, 'inside': 1.0, 'my': 2.0, 'fact': 1.0, 'other': 2.0, 'when': 1.0, 'you': 1.0, 'easily': 2.0, 'much': 1.0, 'do': 1.0, 'me': 1.0, 'poorly': 1.0, 'frustration': 1.0, 'not': 1.0, 'onto': 1.0, 'in': 3.0, 'turning': 1.0, 'baby': 1.0, 'them': 2.0, 'fashion': 1.0, '3': 1.0, 'make': 2.0, 'on': 1.0, 'base': 1.0, 'cups': 3.0, 'to': 2.0}
Word element => {'price': 1.0, 'deal': 1.0, 'out': 1.0, 'of': 2.0, 'lot': 1.0, 'a': 1.0, 's': 1.0, 'days': 1.0, 'everything': 1.0, 'use': 1.0, 'doing': 1.0, 'is': 1.0, 'that': 1.0, 'month': 1.0, 'him': 1.0, 'the': 1.0, 'these': 3.0, 'they': 1.0, 'cups': 1.0, 'good': 1.0, 'loves': 1.0, 'i': 1.0, 'six': 1.0, 'old': 1.0, 'to': 1.0, 'getting': 1.0, 'and': 1.0, 'my': 1.0, 'are': 1.0, 'safe': 1.0, 'mouth': 1.0, 'love': 1.0, 'for': 2.0, 'in': 1.0, 'which': 1.0, 'put': 1.0, 'his': 1.0, 'with': 1.0, 'he': 2.0}
Word element => {'clean': 1.0, 'easy': 1.0, 'but': 1.0, 'fling': 1.0, 'he': 1.0, 'to': 2.0, 'much': 1.0, 'and': 2.0, 'as': 2.0, 'up': 1.0, 'separate': 1.0, 'back': 1.0, 'my': 1.0, 'great': 2.0, 'son': 1.0, 'loves': 2.0, 'cups': 2.0, 'these': 1.0, 'stacking': 2.0, 'so': 1.0, 'not': 1.0, 'at': 1.0, 'them': 1.0}
Word element => {'time': 1.0, 'bath': 1.0, 'later': 1.0, 'after': 1.0, 'them': 1.0, 'play': 1.0, 'loves': 1.0, 'still': 1.0, 'or': 1.0, 'i': 1.0, 'got': 1.0, 'these': 1.0, 'my': 1.0, 'and': 1.0, 'for': 2.0, 'daughter': 1.0, 'good': 1.0, 'around': 1.0, '5': 1.0, 'months': 2.0, 'she': 1.0}
Word element => {'thanks': 1.0, 'every': 1.0, 'definitely': 1.0, 'baby': 1.0, 'penny': 1.0, 'simple': 1.0, 'so': 2.0, 'believe': 1.0, 'can': 1.0, 'i': 1.0, 'hours': 1.0, 'for': 2.0, 'him': 1.0, 'littlest': 1.0, 'worth': 1.0, 'subwoofer': 1.0, 'fact': 1.0, 'put': 1.0, 'to': 1.0, 'little': 1.0, 'keeps': 1.0, 'are': 1.0, 'product': 1.0, 'stacking': 1.0, 'best': 1.0, 'awesome': 1.0, 'something': 1.0, 'that': 2.0, 'besides': 1.0, 't': 1.0, 'the': 5.0, 'these': 1.0, 'happy': 1.0, 'my': 2.0, 'cup': 1.0, 'keep': 1.0, 'in': 1.0, 'cups': 1.0, 'busy': 1.0, 'likes': 1.0, 'thing': 1.0, 'boy': 2.0, 'they': 1.0, 'ever': 1.0}
Word element => {'hold': 1.0, 'they': 1.0, 'should': 1.0, 'their': 1.0, 'immediately': 1.0, 'sprouts': 1.0, 'quality': 2.0, 'disappointing': 1.0, 'this': 1.0, 'with': 1.0, 'the': 1.0, 'really': 2.0, 'doesn': 1.0, 'recommend': 1.0, 'just': 1.0, 'do': 1.0, 'matter': 1.0, 'misrepresents': 1.0, 'not': 1.0, 'those': 1.0, 'parents': 1.0, 'product': 1.0, 'for': 2.0, 'looking': 1.0, 'bpa': 1.0, 'can': 1.0, 'i': 2.0, 'and': 1.0, 'green': 1.0, 'or': 1.0, 'standards': 2.0, 'that': 1.0, 'companies': 1.0, 'are': 1.0, 'safer': 1.0, 'trust': 1.0, 'items': 1.0, 'it': 4.0, 'higher': 1.0, 'if': 1.0, 'free': 1.0, 'you': 1.0, 'when': 1.0, 'china': 1.0, 'made': 1.0, 'in': 1.0, 'company': 1.0, 'find': 1.0, 'at': 1.0, 'how': 1.0, 'little': 1.0, 't': 1.0, 's': 2.0, 'a': 1.0, 'name': 1.0}
Word element => {'buy': 1.0, 'great': 1.0, 'bottom': 1.0, 'the': 1.0, 'shape': 1.0, 'time': 1.0, 'in': 1.0, 'sort': 1.0, 'each': 1.0, 'something': 1.0, 'be': 1.0, 'her': 2.0, 'stack': 1.0, 'of': 2.0, 'up': 1.0, 'and': 4.0, 'on': 2.0, 'hopeful': 1.0, 'now': 2.0, 'was': 1.0, 'to': 2.0, 'is': 3.0, 'played': 1.0, 'learn': 2.0, 'old': 1.0, 'i': 2.0, 'two': 1.0, 'my': 1.0, 'high': 1.0, 'this': 2.0, 'stacking': 1.0, 'with': 1.0, 'moving': 1.0, 'color': 1.0, 'months': 1.0, 'bought': 1.0, 'one': 1.0, 'daughter': 1.0, 'm': 1.0, 'cup': 1.0, 'or': 1.0, 'can': 1.0, 'most': 1.0, 'by': 1.0, 'just': 1.0, 'a': 1.0, '9': 1.0, 'if': 1.0, 'she': 3.0, 'month': 1.0, 'toys': 1.0, 'they': 3.0, 'helped': 1.0, 'will': 1.0, 'grasp': 1.0, 'about': 1.0, 'gravity': 1.0, 'them': 2.0, 'when': 1.0, 'you': 1.0, 'flip': 1.0, 'that': 1.0}
Word element => {'very': 1.0, 'make': 1.0, 'able': 1.0, 'the': 3.0, 'hands': 1.0, 'two': 1.0, 'not': 4.0, 'friend': 1.0, 'stick': 1.0, 'inside': 1.0, 'but': 1.0, 'complete': 1.0, 'most': 1.0, 'pick': 1.0, 'keeps': 1.0, 'joyfully': 1.0, 'read': 1.0, 'scatter': 1.0, 'an': 1.0, 'other': 1.0, 'months': 1.0, 'for': 1.0, 'bought': 1.0, 'purchasing': 1.0, 'fifteen': 1.0, 'her': 4.0, 'before': 1.0, 'stack': 2.0, '5': 2.0, 'loves': 2.0, 'primary': 1.0, 'my': 2.0, 'another': 1.0, 'they': 1.0, 'engaged': 1.0, 'has': 1.0, 'them': 9.0, 'lips': 1.0, 'everything': 1.0, 's': 1.0, 'likes': 1.0, 't': 1.0, 'might': 1.0, 'mouth': 1.0, 'everyone': 1.0, 'reviews': 1.0, 'then': 2.0, 'take': 1.0, 'total': 1.0, 'month': 3.0, 'becomes': 1.0, 'many': 1.0, 'she': 2.0, 'i': 5.0, 'putting': 1.0, 'be': 2.0, 'old': 3.0, 'cups': 1.0, 'to': 2.0, 'he': 1.0, 'this': 2.0, 'tower': 1.0, 'only': 1.0, 'granddaughter': 1.0, 'do': 1.0, 'and': 5.0, 'one': 1.0, 'too': 1.0, 'whole': 1.0, 'also': 1.0, 'arranging': 1.0, 'will': 1.0, 'grandaughter': 1.0, '15': 1.0, 'version': 1.0, 'cheap': 1.0, 'like': 1.0, 'when': 1.0, 'likely': 1.0, 'buy': 1.0, 'set': 1.0, 'sets': 1.0, 'these': 1.0, 'apart': 1.0, 'particular': 1.0, 'stacking': 2.0, 'are': 2.0, 'rounded': 1.0, 'colors': 2.0, 'pleased': 1.0, 'up': 1.0, 'engaging': 1.0, 'didn': 1.0, 'look': 1.0, 'can': 2.0, 'so': 1.0, 'in': 1.0, 'm': 1.0, 'that': 1.0, 'because': 1.0, 'concerned': 1.0, 'a': 2.0, 'small': 1.0}
Word element => {'is': 1.0, 'you': 1.0, 'stack': 1.0, 'not': 2.0, 'do': 2.0, 'agree': 1.0, 'there': 1.0, 'them': 7.0, 'out': 1.0, 'other': 2.0, 'handing': 1.0, 'and': 4.0, 'play': 1.0, 'case': 1.0, 'that': 1.0, 'loves': 3.0, 'each': 1.0, 'taking': 1.0, 'are': 2.0, 'old': 1.0, 'i': 2.0, 'it': 1.0, 'she': 3.0, 'month': 1.0, 'got': 1.0, 'sturdy': 1.0, 'bath': 2.0, 't': 1.0, 'set': 1.0, 'setting': 1.0, 'these': 1.0, 'beautifully': 1.0, 'of': 2.0, 'inside': 1.0, 'cup': 1.0, 'my': 1.0, 'daughter': 1.0, 'for': 1.0, 'colored': 1.0, 'in': 3.0, 'having': 1.0, '22': 1.0, 'buying': 1.0, 'with': 2.0, 'her': 2.0, 'doesn': 1.0, 'daycare': 1.0, 'so': 1.0, 'friends': 1.0, 'the': 3.0, 'playing': 1.0, 'bathtub': 1.0, 'to': 2.0, 'all': 2.0, 'any': 1.0, 'toys': 1.0, 'apart': 1.0, 'if': 2.0, 'they': 2.0}
Word element => {'better': 1.0, 'are': 1.0, 'both': 1.0, '22': 2.0, 'b001homtl6': 1.0, 'cupsor': 1.0, 'piece': 1.0, 'stacking': 3.0, 'quality': 1.0, 'baby': 2.0, 'keywords': 2.0, 'don': 1.0, 'another': 1.0, 'one': 1.0, 'top': 1.0, 'www': 2.0, 'on': 1.0, 'utf8': 2.0, 'neatly': 1.0, 'of': 2.0, 'printed': 1.0, 'earlyears': 1.0, 'made': 1.0, 't': 2.0, 'some': 2.0, 'these': 3.0, 'more': 1.0, 'it': 1.0, 'aren': 1.0, 'and': 1.0, '1': 2.0, 'n': 1.0, 'not': 1.0, 'cups': 5.0, 'well': 2.0, 'dp': 2.0, 'they': 1.0, '1371660739': 1.0, '16': 2.0, 'seems': 1.0, 'qid': 2.0, 'which': 1.0, 'like': 1.0, 'sr': 4.0, 'b003cs4dq4': 1.0, 'megcos': 1.0, 'you': 1.0, 'if': 1.0, 'want': 1.0, 'amazon': 2.0, 'sturdy': 1.0, 'fit': 1.0, 'com': 2.0, 'nest': 1.0, 'stack': 2.0, 'ref': 2.0, 'much': 1.0, 'do': 1.0, 'try': 1.0, 'ie': 2.0, '1371660713': 1.0, 'http': 2.0, '8': 3.0}
Word element => {'usually': 1.0, 'toys': 1.0, 'aren': 1.0, 'bright': 1.0, 'kids': 1.0, 'too': 2.0, 'bathtime': 1.0, 'simple': 1.0, 'design': 1.0, 'colors': 1.0, 'toy': 1.0, 'still': 1.0, 'to': 1.0, 'for': 1.0, 'love': 2.0, 't': 1.0, 'great': 1.0, 'this': 1.0, 'it': 1.0, 'toddlers': 1.0, 'enjoyable': 1.0, 'my': 1.0, 'enough': 1.0, 'make': 1.0, 'but': 2.0, 'stimulating': 1.0, 'basic': 1.0}
Word element => {'pretty': 1.0, 'was': 1.0, 'free': 1.0, 'bpa': 1.0, 'washable': 1.0, 'easily': 1.0, 'cheap': 1.0, 'my': 1.0, 'plus': 1.0, 'baby': 1.0, 'i': 1.0, 'it': 2.0, 'loves': 1.0, 'this': 1.0, 'and': 2.0, 'like': 1.0, 'set': 1.0, 'that': 1.0, 'is': 1.0}
Word element => {'wall': 1.0, 'hung': 1.0, 'bag': 1.0, 'mesh': 1.0, 's': 1.0, 'a': 1.0, 'we': 1.0, 'nicely': 1.0, 'very': 1.0, 'dry': 1.0, 'durable': 1.0, 'and': 4.0, 'them': 4.0, 'tub': 2.0, 'adores': 1.0, 'with': 1.0, 'these': 1.0, 'the': 5.0, '2': 2.0, 'but': 1.0, 'i': 3.0, 'old': 2.0, 'daughter': 1.0, 'kids': 1.0, 're': 1.0, 'plays': 1.0, 'actively': 1.0, '8': 1.0, 'have': 1.0, 'in': 3.0, 'year': 1.0, 'product': 1.0, 'for': 2.0, 'love': 1.0, 'my': 3.0, 'often': 1.0, 'month': 1.0, 'bought': 1.0, 'be': 1.0, 'material': 1.0, 'well': 1.0, 'find': 1.0, 'colors': 1.0, 'cups': 1.0, 'as': 1.0, 'to': 1.0, 'great': 1.0, 'near': 1.0, '1': 1.0, 'twin': 1.0, 'unisex': 1.0, 'totally': 1.0, 'that': 2.0, 'their': 1.0, 'is': 1.0, 'safe': 1.0, 'keep': 1.0, 'sons': 1.0, 'who': 1.0, 'on': 1.0, 'mouths': 1.0, 'they': 1.0, 'affordable': 1.0}
Word element => {'which': 1.0, 'safe': 1.0, 'little': 2.0, 'are': 2.0, 'makes': 1.0, 'they': 2.0, 'together': 1.0, 'for': 1.0, 'bang': 1.0, 'on': 1.0, 'stacking': 2.0, 'or': 1.0, 'loves': 3.0, 'this': 3.0, 'green': 1.0, 'old': 2.0, 'still': 1.0, 'a': 2.0, '15': 1.0, 'toy': 2.0, 'size': 1.0, 'right': 1.0, 'month': 2.0, 'to': 1.0, 'now': 2.0, 'cup': 1.0, 'pull': 1.0, 'my': 2.0, 'small': 1.0, 'update': 1.0, 'cups': 1.0, 'hands': 1.0, 'she': 1.0, 'them': 3.0, '8': 1.0, 'all': 1.0, 'chew': 1.0, 'also': 1.0, 'perfect': 2.0, 'apart': 1.0, 'and': 3.0}
Word element => {'with': 1.0, 'from': 1.0, 'drink': 1.0, 'set': 1.0, 'of': 2.0, 'a': 1.0, 'we': 2.0, 'bottom': 1.0, 'favorite': 1.0, 'toys': 1.0, 'stack': 1.0, 'instantly': 1.0, 'but': 1.0, 'my': 1.0, 'and': 2.0, 'when': 1.0, '9': 1.0, 'so': 1.0, '2nd': 1.0, 'got': 1.0, 'use': 1.0, '16': 1.0, 'these': 1.0, 'they': 2.0, 'holes': 1.0, 'the': 1.0, 'became': 1.0, 'still': 1.0, 'was': 1.0, 'now': 1.0, 'she': 3.0, 'on': 1.0, 'toy': 2.0, 'old': 2.0, 'is': 1.0, 'great': 1.0, 'shapes': 1.0, 'that': 1.0, 'loves': 1.0, 'them': 4.0, 'grow': 1.0, 'to': 1.0, 'as': 1.0, 'daughter': 1.0, 'water': 1.0, 'her': 1.0, 'different': 1.0, 'have': 1.0, 'each': 1.0, 'bought': 1.0, 'months': 2.0, 'one': 1.0, 'pretend': 1.0}
Word element => {'simple': 1.0, 'such': 1.0, 'fun': 1.0, 'much': 1.0, 'money': 1.0, 'but': 1.0, 'will': 1.0, 'floor': 1.0, 'bought': 1.0, 'holes': 1.0, 'my': 1.0, 'worth': 1.0, 'cup': 1.0, 'the': 5.0, 'believe': 1.0, 'with': 2.0, 'this': 1.0, 'hard': 1.0, '10': 1.0, 'in': 2.0, 'for': 1.0, 'either': 1.0, 'on': 1.0, 'bath': 1.0, 'old': 1.0, 'fall': 1.0, 'loves': 1.0, 'it': 3.0, 'month': 1.0, 'she': 4.0, 'each': 1.0, 'well': 1.0, 'toy': 1.0, 'likes': 1.0, 'has': 2.0, 'a': 3.0, 'different': 2.0, 'daughter': 1.0, 'water': 1.0, 'and': 3.0, 'play': 1.0, 'pattern': 1.0, 'of': 1.0, 'especially': 1.0, 'bottom': 1.0, 'so': 2.0, 'drains': 1.0, 'at': 1.0, 'to': 2.0, 'rate': 1.0, 'like': 1.0, 'hold': 1.0, 'them': 1.0, 'out': 1.0, 'watch': 1.0}
Word element => {'too': 1.0, 'for': 1.0, 'again': 2.0, 'over': 1.0, 'knock': 1.0, 'would': 2.0, 'him': 1.0, 'in': 1.0, 'stack': 1.0, 'if': 1.0, 'gifts': 1.0, 'will': 1.0, 'but': 1.0, 'now': 1.0, 'these': 2.0, 'has': 1.0, 'he': 2.0, 'people': 1.0, 'is': 1.0, 'as': 1.0, 'son': 1.0, 'from': 1.0, 'toy': 1.0, 'other': 1.0, 'simple': 1.0, 'tired': 1.0, 'my': 1.0, 'purchase': 2.0, 'loved': 1.0, 'most': 1.0, 'greatest': 1.0, 'of': 2.0, 'there': 1.0, '6': 1.0, 'i': 2.0, 'nows': 1.0, 'and': 2.0, 'getting': 1.0, 'front': 1.0, '15': 1.0, 'a': 1.0, 'out': 1.0, 'them': 3.0, 'little': 1.0}
Word element => {'new': 1.0, 'gift': 1.0, 'are': 1.0, 'like': 1.0, 'green': 1.0, 'i': 1.0, 'little': 1.0, 'plus': 1.0, 'of': 1.0, 'etc': 1.0, 'pouring': 1.0, 'they': 2.0, 'a': 2.0, 'and': 2.0, 'in': 1.0, 'newborn': 1.0, 'my': 1.0, 'from': 1.0, 'as': 1.0, 'son': 1.0, 'with': 1.0, 'now': 1.0, 'young': 1.0, 'one': 1.0, 'for': 2.0, 'bath': 1.0, 'got': 1.0, 'that': 1.0, 'naming': 1.0, 'we': 1.0, 'nesting': 1.0, 'have': 1.0, 'great': 1.0, 'the': 1.0, 'these': 1.0, '2': 1.0, 'grown': 1.0, 'stacking': 1.0, 'him': 1.0, 'activities': 1.0, 'almost': 1.0, 'baby': 1.0, 'toy': 1.0, 'lots': 1.0, 'colors': 1.0, 'filling': 1.0}
Word element => {'count': 1.0, 'help': 1.0, 'numbers': 1.0, 'feet': 1.0, 'use': 1.0, 'then': 1.0, 'didn': 1.0, 'great': 1.0, 'the': 1.0, 'learn': 1.0, 'lot': 1.0, 'but': 1.0, 'can': 1.0, 'tub': 1.0, 'activity': 1.0, 'than': 1.0, 'tall': 1.0, 'and': 2.0, 'rebuild': 1.0, 'there': 1.0, 'set': 1.0, 'in': 1.0, 'for': 1.0, 'kids': 1.0, 'to': 4.0, 'as': 2.0, 'cups': 1.0, 'well': 2.0, 'see': 1.0, 'stack': 1.0, 'up': 2.0, 'over': 1.0, 'they': 2.0, 't': 1.0, 'a': 1.0, 'could': 1.0, 'being': 1.0, 'fun': 1.0, 'were': 1.0, 'had': 1.0, 'thought': 1.0, 'that': 1.0, 'smaller': 1.0, 'i': 2.0, 'would': 1.0, 'be': 1.0, 'knock': 1.0, 'stacking': 1.0, 'have': 1.0, 'another': 1.0, 'ended': 1.0, 'about': 1.0, '3': 1.0}
Word element => {'with': 1.0, 'played': 1.0, 'she': 2.0, 'toy': 1.0, 'has': 1.0, 'they': 1.0, 'out': 1.0, 'actully': 1.0, 'much': 1.0, 'i': 1.0, 'two': 1.0, 'longer': 1.0, 'bought': 1.0, 'expecting': 1.0, 'dolls': 1.0, 'them': 3.0, 'baby': 1.0, 'loves': 1.0, 'that': 1.0, 'these': 2.0, 'the': 1.0, 'great': 1.0, 'other': 1.0, 'but': 1.0, 'year': 1.0, 'are': 2.0, 'than': 1.0, 'her': 2.0, 'what': 1.0, 'simple': 1.0, 'toys': 1.0, 'tea': 1.0, 'for': 2.0, 'love': 1.0, 'passes': 1.0, 'and': 2.0, 'animals': 1.0, 'use': 1.0, 'our': 1.0, 'as': 1.0, 'to': 1.0, 'cups': 1.0, 'old': 1.0, 'non': 1.0, 'toxic': 1.0, 'we': 2.0, 'a': 1.0, 'little': 1.0}
Word element => {'plastic': 1.0, 'better': 1.0, 'a': 1.0, 'that': 1.0, 'i': 1.0, 'like': 1.0, 'easily': 1.0, 'quite': 1.0, 'drains': 1.0, 'so': 1.0, 'bottom': 1.0, 'plays': 1.0, 'water': 1.0, 'different': 1.0, 'son': 1.0, 'with': 2.0, 'for': 1.0, 'in': 2.0, 'patterns': 1.0, 'my': 1.0, 'are': 2.0, 'cups': 1.0, 'holes': 1.0, 'the': 3.0, 'great': 1.0, 'these': 1.0, 'time': 1.0, 'they': 2.0, 'made': 1.0, 'tub': 1.0, 'them': 1.0, 'at': 1.0, 'bath': 1.0, 'every': 1.0, 'little': 1.0, 'have': 1.0}
Word element => {'for': 1.0, 'you': 2.0, 'when': 1.0, 'different': 1.0, 'water': 2.0, 'in': 2.0, 'fill': 1.0, 'these': 1.0, 'the': 4.0, 'are': 2.0, 'a': 3.0, 'see': 1.0, 'strainer': 1.0, 'on': 1.0, 'bath': 2.0, 'wonderful': 1.0, 'use': 1.0, 'each': 1.0, 'bottom': 2.0, 'of': 2.0, 'up': 1.0, 'bunch': 1.0, 'cup': 2.0, 'holes': 1.0, 'they': 2.0, 'with': 1.0, 'its': 1.0, 'interesting': 1.0, 'too': 1.0, 'and': 1.0, 'trickle': 1.0, 'out': 2.0, 'baby': 1.0, 'them': 1.0, 'i': 1.0, 'help': 1.0, 'rinse': 1.0, 'toy': 1.0, 'has': 1.0, 'hair': 1.0, 'stack': 1.0, 'best': 1.0, 'patterns': 1.0, 'to': 2.0, 'all': 1.0, 'like': 1.0, 'know': 1.0, 'healthy': 1.0, 'toys': 1.0, 'simple': 1.0}
Word element => {'expecting': 1.0, 'gifts': 1.0, 'as': 1.0, 'bought': 1.0, 'moms': 1.0, 'even': 1.0, 'i': 1.0, 'love': 1.0, 'these': 1.0, 'have': 1.0, 'cups': 1.0, 'been': 1.0, 'using': 1.0, 'them': 2.0, 'almost': 1.0, '3': 1.0, 'for': 2.0, 'years': 1.0}
Word element => {'imaginative': 1.0, 'enjoys': 1.0, 'simple': 2.0, 'wanted': 1.0, 'and': 1.0, 'great': 1.0, 'month': 1.0, 'old': 1.0, 'i': 1.0, 'toy': 1.0, 'exactly': 1.0, 'what': 1.0, 'that': 1.0, 'is': 4.0, 'it': 3.0, 'this': 1.0, 'a': 2.0, 'well': 1.0, 'educational': 1.0, 'made': 2.0, 'my': 1.0, 'very': 1.0, 'from': 1.0, 'safer': 1.0, 'materials': 1.0, 'size': 1.0, 'nine': 1.0}
Word element => {'flow': 1.0, 'watch': 1.0, 'out': 1.0, 'them': 1.0, 'to': 1.0, 'likes': 1.0, 'son': 2.0, 'bath': 1.0, 'on': 2.0, 'my': 2.0, 'a': 1.0, 'i': 1.0, 'stack': 1.0, 'used': 1.0, 'when': 1.0, 'cups': 2.0, 'holes': 1.0, 'the': 5.0, 'these': 1.0, 'float': 1.0, 'giving': 1.0, 'and': 2.0, 'patterns': 1.0, 'mainly': 1.0, 'different': 1.0, 'water': 2.0, 'goes': 1.0, 'through': 1.0, 'up': 1.0, 'of': 1.0, 'bottom': 2.0}
Word element => {'little': 1.0, 'his': 1.0, 'into': 1.0, 'getting': 1.0, 'time': 1.0, 'hard': 1.0, 'a': 1.0, 'thick': 1.0, 'less': 1.0, 'out': 1.0, 'with': 2.0, 'it': 3.0, 'of': 2.0, 'comfortable': 1.0, 'given': 1.0, 'this': 1.0, 'found': 1.0, 'i': 5.0, 'about': 1.0, 'baby': 1.0, 'm': 2.0, 'in': 1.0, 'else': 1.0, 'fridge': 1.0, 'not': 1.0, 'crazy': 1.0, 'the': 4.0, 'my': 1.0, 'but': 2.0, 'he': 1.0, 'plastic': 1.0, 'somewhat': 1.0, 'mouth': 1.0, 'having': 1.0, 'than': 1.0, 'chew': 1.0, 'anything': 1.0, 'there': 1.0, 'course': 1.0, 'like': 1.0, 'choice': 1.0, 'being': 1.0, 'able': 1.0, 'as': 1.0, 'to': 1.0, 'and': 1.0, 'large': 1.0, 'volume': 1.0, 'liquid': 1.0, 'more': 1.0, 'holds': 1.0, 'cool': 1.0, 'on': 1.0, 'make': 1.0, 'pop': 1.0, 'pretty': 1.0, 'has': 1.0, 'well': 1.0, 've': 1.0, 'would': 1.0}
Word element => {'about': 1.0, 'making': 1.0, 'know': 1.0, 'all': 2.0, 'love': 1.0, 'happy': 1.0, 'my': 1.0, 'i': 1.0, 'rings': 1.0, 'doesnt': 1.0, 'teething': 1.0, 'we': 1.0, 'dont': 1.0, 'olden': 1.0, 'like': 1.0, 'harder': 1.0, 'days': 1.0, 'soft': 2.0, 'it': 5.0, 'daughter': 1.0, 'by': 1.0, 'no': 1.0, 'means': 1.0, 'ring': 1.0, 'a': 1.0, '34': 6.0, 'really': 1.0, 'is': 2.0, 'the': 2.0, 'more': 1.0, 'plastic': 1.0, 'but': 1.0, 'squish': 1.0, 'hate': 1.0, 'and': 2.0, 'them': 1.0, 'requires': 1.0, 'pressure': 1.0, 'be': 1.0, 'its': 1.0, 'hoping': 1.0, 'to': 1.0, 'was': 1.0, 'would': 1.0}
Word element => {'good': 1.0, 'put': 1.0, 'shell': 1.0, 'know': 1.0, 'i': 1.0, 'here': 1.0, 'it': 2.0, 'use': 1.0, 'but': 1.0, 'isnt': 1.0, 'while': 1.0, 'may': 1.0, 'to': 1.0, 'be': 1.0, 'a': 1.0, 'this': 1.0, 'before': 1.0, 'yet': 1.0, 'my': 1.0, 'needs': 1.0, 'baby': 1.0, 'she': 1.0}
Word element => {'baby': 1.0, 'a': 2.0, 'might': 1.0, 'think': 1.0, 'i': 1.0, 'her': 1.0, 'in': 1.0, 'little': 1.0, 'my': 1.0, 'are': 1.0, 'better': 1.0, 'squishy': 1.0, 'for': 1.0, 'than': 1.0, 'mouth': 2.0, 'too': 1.0, 'teether': 1.0, 'just': 2.0, 'not': 1.0, 'is': 1.0, 'the': 1.0, 'ones': 1.0, 't': 1.0, 'fit': 2.0, 'big': 1.0, 'very': 2.0, 'circles': 1.0, 'and': 1.0, 'thick': 1.0, 'this': 1.0, 'it': 2.0, 'toddler': 1.0, 'doesn': 1.0}
Word element => {'china': 1.0, 'for': 2.0, 'in': 1.0, 'true': 1.0, 'be': 1.0, 'good': 1.0, 'of': 1.0, 'too': 1.0, 'to': 1.0, 'was': 1.0, 'the': 1.0, 'my': 1.0, 'made': 1.0, 'thought': 1.0, 'safe': 1.0, 'i': 1.0, 'a': 1.0, 'teething': 1.0, 's': 1.0, 'toy': 1.0, 'price': 1.0, 'baby': 1.0, 'course': 1.0, 'it': 1.0}
Word element => {'most': 1.0, 'only': 1.0, 'are': 1.0, 'which': 1.0, 'bright': 1.0, 'unlike': 1.0, 'better': 1.0, 'shapped': 1.0, 'frozen': 1.0, 'grab': 1.0, 'than': 1.0, 'mouth': 1.0, 'fisher': 1.0, 'easy': 1.0, 'and': 3.0, 'her': 1.0, 'light': 1.0, 'starts': 1.0, 'fits': 1.0, 'my': 1.0, '7': 1.0, 'is': 1.0, 'old': 1.0, 'she': 1.0, 'month': 1.0, 'it': 5.0, 'this': 1.0, 'daughter': 1.0, 'when': 1.0, 'other': 1.0, 'teether': 1.0, 'loves': 1.0, 'babies': 1.0, 'pvc': 1.0, 'price': 1.0, 'fun': 1.0, 'at': 2.0, 'safe': 1.0, 'similarly': 1.0, 'teethers': 2.0, 'suck': 1.0, 'the': 1.0, 'room': 1.0, 'also': 1.0, 'foremost': 1.0, 'temperature': 1.0, 'likes': 1.0, 'well': 1.0, 'for': 1.0, 'to': 2.0, 'any': 1.0, 'as': 3.0, 'from': 1.0, 'pba': 2.0, 'free': 3.0, 's': 2.0, 'pthalates': 1.0}
Word element => {'more': 1.0, 'bit': 1.0, 'into': 1.0, 'when': 1.0, 'baby': 1.0, 'little': 1.0, 'my': 1.0, 'textures': 1.0, 'likes': 1.0, 'of': 1.0, 'has': 1.0, 'big': 1.0, 's': 1.0, 'grows': 1.0, 'he': 2.0, 'it': 3.0, 'll': 1.0, 'variety': 1.0, 'love': 1.0, 'for': 1.0, 'that': 2.0, 'a': 3.0, 'his': 1.0, 'mouth': 1.0, 'but': 1.0, 'right': 1.0, 'now': 1.0, 'months': 1.0, '4': 1.0, 'i': 1.0, 'know': 1.0}
Word element => {'ve': 1.0, 'still': 2.0, 'gnaw': 1.0, 'we': 1.0, 'finally': 1.0, 'enough': 1.0, 'go': 1.0, 'mouth': 1.0, 'long': 1.0, 'her': 1.0, 'for': 1.0, 'old': 1.0, 'open': 1.0, 'big': 2.0, 'got': 1.0, 'then': 1.0, 'my': 1.0, 'started': 1.0, 'little': 2.0, 'she': 3.0, 'a': 3.0, 'daughter': 1.0, 'when': 1.0, 'first': 1.0, 'it': 3.0, 'can': 1.0, 'teething': 1.0, 'ways': 1.0, 'on': 1.0, '4': 1.0, 'months': 2.0, 's': 2.0, 'but': 2.0, 'to': 2.0, 'was': 2.0, 'now': 1.0, 'that': 1.0, 'up': 1.0, '6': 1.0}
Word element => {'mine': 1.0, 'sure': 1.0, 'babies': 2.0, 'love': 1.0, 'for': 1.0, 'ideal': 1.0, 'simply': 1.0, 'smaller': 1.0, 'so': 1.0, 'voluminous': 1.0, 'be': 1.0, 'individual': 1.0, 'each': 1.0, 'would': 1.0, 'either': 1.0, 'thought': 1.0, 'disk': 1.0, 'than': 1.0, 'thicker': 1.0, 'more': 1.0, 'is': 2.0, 'goes': 1.0, 'far': 1.0, 'isn': 1.0, 'teething': 1.0, 'take': 1.0, 'little': 1.0, 'didn': 1.0, 'my': 2.0, 'was': 1.0, 'soothe': 1.0, 'in': 2.0, 'also': 1.0, 'seems': 1.0, 'one': 2.0, 'green': 2.0, 'old': 1.0, 'some': 1.0, 'products': 1.0, 'month': 1.0, 'it': 8.0, 'attempt': 1.0, 'this': 1.0, 'i': 5.0, 'woes': 1.0, 'sprouts': 1.0, 'impressed': 1.0, 'desperate': 1.0, 'though': 1.0, 'teether': 1.0, 'after': 1.0, 'ordering': 1.0, 'recently': 1.0, 'really': 1.0, 'dig': 1.0, 's': 1.0, 'a': 2.0, 't': 2.0, 'of': 2.0, 'element': 1.0, 'm': 2.0, 'those': 1.0, 'not': 3.0, 'the': 3.0, 'tad': 1.0, 'plastic': 1.0, 'received': 1.0, 'extremely': 1.0, '11': 1.0, 'to': 2.0, 'as': 3.0, 'fault': 1.0, 'but': 1.0, 'still': 1.0, 'flimsy': 1.0}
Word element => {'playing': 1.0, 'enjoyed': 1.0, 'baby': 1.0, 'materials': 1.0, 'safe': 1.0, 'i': 1.0, 'it': 2.0, 'natural': 1.0, 'chewing': 1.0, 'and': 2.0, 'loved': 1.0, 'this': 1.0, 's': 1.0, 'teething': 1.0, 'ring': 1.0, 'my': 1.0, 'made': 1.0, 'on': 1.0, 'with': 1.0}
Word element => {'a': 1.0, 'since': 1.0, 'hold': 1.0, 'to': 2.0, 'him': 1.0, 'easy': 1.0, 's': 3.0, 'knowing': 1.0, 'chewing': 1.0, 'just': 1.0, 'his': 2.0, 'likes': 1.0, 'teether': 1.0, 'age': 1.0, 'has': 1.0, 'safe': 1.0, 'no': 1.0, 'i': 1.0, 'old': 1.0, 'small': 1.0, 'my': 1.0, 'on': 2.0, 'months': 1.0, 'fine': 1.0, 'is': 1.0, 'ring': 1.0, 'son': 1.0, 'in': 1.0, 'and': 3.0, 'problem': 1.0, 'feel': 1.0, 'got': 1.0, 'comfortable': 1.0, 'for': 2.0, 'using': 1.0, 'he': 3.0, 'this': 1.0, 'it': 5.0, 'little': 1.0, '5': 1.0, 'mouth': 1.0}
Word element => {'dollars': 1.0, 'few': 1.0, 'just': 1.0, 'getting': 1.0, 'yours': 1.0, 'returning': 1.0, 'be': 1.0, 'european': 1.0, 'natursutten': 1.0, 'from': 1.0, 'teether': 1.0, 'free': 1.0, 'get': 1.0, 'bpa': 1.0, 'money': 1.0, 'can': 1.0, 'products': 1.0, 'similar': 1.0, 'and': 3.0, 'green': 1.0, 'i': 2.0, 'come': 1.0, 'it': 3.0, 'trouble': 1.0, 'you': 2.0, 'resposibly': 1.0, 'metal': 1.0, 'of': 1.0, 'the': 3.0, 'iplay': 1.0, 'your': 1.0, 'on': 1.0, 'make': 1.0, 'understands': 1.0, 'will': 1.0, 'europe': 1.0, 'chemical': 1.0, 'all': 1.0, 'concept': 1.0, 'through': 1.0, 'then': 1.0, 'sprouts': 1.0, 'making': 1.0, 'not': 1.0, 'china': 2.0, 'made': 2.0, 'producing': 1.0, 'usa': 1.0, 'more': 1.0, 'is': 3.0, 's': 1.0, 'go': 1.0, 'a': 3.0, 'that': 2.0, 'what': 1.0, 'about': 1.0, 'standards': 1.0, 'in': 1.0, 'worth': 1.0, 'let': 1.0, 'or': 1.0, 'for': 1.0, 'where': 1.0, 'are': 1.0, 'their': 1.0, 'better': 1.0}
Word element => {'ky': 1.0, 'a': 1.0, 'distributed': 1.0, 'standards': 1.0, 'by': 1.0, 'safety': 1.0, 'the': 1.0, 'very': 1.0, 'chemicals': 1.0, 'and': 1.0, 'based': 1.0, 'harmful': 1.0, 'babies': 1.0, 'have': 1.0, 'paint': 1.0, 'usa': 1.0, 'made': 3.0, 'china': 2.0, 'toys': 1.0, 'lead': 1.0, 'many': 1.0, 'disappointed': 1.0, 'company': 1.0, 'in': 3.0, 'for': 1.0, 'plastic': 1.0, 'got': 1.0, 'chew': 1.0, 'products': 3.0, 'i': 2.0, 'specifically': 1.0, 'with': 1.0, 'looked': 1.0, 'our': 1.0, 'their': 1.0, 'that': 3.0, 'were': 2.0}
Word element => {'too': 1.0, 'and': 2.0, 'are': 1.0, 'my': 1.0, 'for': 1.0, 'retains': 1.0, 'relatively': 1.0, 'easy': 2.0, 'the': 1.0, 'great': 1.0, 'children': 1.0, 'it': 2.0, 'cleans': 1.0, 'long': 1.0, 'temp': 1.0, 'quickly': 1.0, 'cools': 1.0, 'that': 1.0, 'teething': 1.0, 's': 1.0, 'son': 1.0, 'loves': 1.0, 'to': 1.0, 'grip': 1.0}
Word element => {'products': 1.0, 'bamboo': 1.0, 'china': 1.0, 'most': 1.0, 'in': 1.0, 'made': 1.0, 'are': 1.0, 'this': 1.0, 'set': 1.0, 'they': 1.0, 'these': 1.0, 'with': 1.0, 'is': 1.0, 'love': 1.0, 'as': 1.0, 'and': 1.0, 'blankets': 1.0, 'so': 1.0, 'soft': 1.0, 'beautiful': 1.0, 'i': 1.0}
Word element => {'fiber': 1.0, 'concious': 1.0, 'eco': 1.0, 'all': 2.0, 'months': 1.0, '3': 1.0, 'marked': 1.0, 'yet': 1.0, 'not': 1.0, 'or': 1.0, 'sizing': 1.0, 'about': 2.0, 'great': 1.0, 'alone': 1.0, 'fleece': 1.0, 'husband': 1.0, 'me': 1.0, 'my': 1.0, 're': 1.0, 'two': 1.0, 'to': 5.0, 'they': 6.0, 'than': 1.0, 'larger': 1.0, 'gasp': 1.0, 'also': 1.0, 'how': 1.0, 'item': 1.0, 'knit': 1.0, 'perfect': 2.0, 'anything': 1.0, 'soft': 2.0, 'in': 5.0, 'delivered': 1.0, 'that': 3.0, 'when': 1.0, 'just': 2.0, 'wrapped': 1.0, 'brown': 1.0, 'cardboard': 1.0, 'loving': 1.0, 'who': 1.0, '6': 1.0, 'bib': 1.0, 'since': 1.0, 'find': 1.0, 'friend': 1.0, 'packaged': 1.0, 'materials': 2.0, 'can': 1.0, 'so': 2.0, 'purchase': 1.0, 'only': 1.0, 'dress': 1.0, 'simply': 1.0, 'blend': 2.0, 'ordered': 1.0, 'organic': 2.0, 'blankets': 2.0, 'you': 1.0, 'boxed': 1.0, 'say': 1.0, 'registered': 1.0, 'look': 1.0, 'is': 3.0, 'was': 5.0, 'had': 2.0, 'excited': 1.0, 'adorable': 2.0, 'damage': 1.0, 'looked': 1.0, 'from': 1.0, 'box': 3.0, 'expected': 1.0, 'i': 9.0, 'for': 6.0, 'scream': 1.0, 'one': 1.0, 'fashionable': 1.0, 'set': 2.0, 'enough': 1.0, 'luxury': 1.0, 'giving': 1.0, 'cotton': 2.0, 'microfleece': 1.0, 'couldn': 2.0, 'and': 13.0, 'which': 3.0, 'gift': 2.0, 'midori': 2.0, 'super': 1.0, 'green': 1.0, 'fit': 1.0, 't': 3.0, 'a': 10.0, 'it': 4.0, 'lined': 1.0, 'lovely': 2.0, 'make': 1.0, 'help': 1.0, 'colors': 1.0, 'baby': 5.0, 'trying': 1.0, '100': 1.0, 'another': 1.0, 'protected': 1.0, 'towel': 1.0, 'feel': 1.0, 'any': 1.0, 'as': 1.0, 'will': 1.0, 'alternative': 1.0, 'discover': 1.0, 'gorgeous': 1.0, 'inside': 1.0, 'right': 1.0, 'll': 1.0, 'pleased': 1.0, 'carefully': 1.0, '7': 1.0, 'bamboo': 6.0, 'pieces': 1.0, 'are': 11.0, 'parents': 1.0, 'plain': 1.0, 'complement': 1.0, 'espresso': 1.0, 'but': 3.0, 'tissue': 2.0, 'these': 2.0, 'comes': 1.0, 'paper': 1.0, 'here': 1.0, 'secured': 1.0, 'with': 2.0, 'wait': 1.0, 'sticker': 1.0, 'natural': 2.0, 'the': 16.0, 'of': 1.0, 'fluffy': 1.0, 'unwrapped': 1.0, 'this': 1.0, 'fabrication': 1.0, 'double': 1.0, 'hoodie': 1.0, 'rich': 1.0, 'folded': 1.0, 'onesie': 1.0, 'both': 1.0, 'wonderful': 1.0}
Word element => {'bag': 1.0, 'another': 1.0, 'keep': 1.0, 'makes': 1.0, 'diaper': 1.0, 'as': 3.0, 'any': 1.0, 'at': 1.0, 'onto': 1.0, 'best': 1.0, 'up': 1.0, 'drips': 1.0, 'that': 2.0, 'or': 1.0, 'food': 1.0, 'but': 2.0, 'so': 1.0, 'attempt': 1.0, 'found': 1.0, 's': 2.0, 'a': 4.0, 't': 1.0, 'dish': 2.0, 'close': 1.0, 'his': 2.0, 'except': 1.0, 'on': 1.0, 'with': 2.0, 'mind': 1.0, 'it': 5.0, 'spoon': 2.0, 'to': 3.0, 'became': 1.0, 'drip': 1.0, 'and': 1.0, 'every': 1.0, 'picks': 1.0, 'doesn': 1.0, 'was': 1.0, 'toddler': 1.0, 'least': 1.0, 'catches': 1.0, 'from': 1.0, 'i': 5.0, 'well': 1.0, 'has': 1.0, 'made': 1.0, 'disappointed': 1.0, 'bib': 2.0, 'chest': 1.0, 'helps': 1.0, 'instead': 1.0, 'place': 1.0, 'he': 2.0, 'ugly': 1.0, 'eventually': 1.0, 'than': 1.0, 'flexible': 1.0, 'brands': 1.0, 'soft': 2.0, 'works': 2.0, 'not': 1.0, 'the': 6.0, 'of': 1.0, 'better': 1.0, 'suction': 1.0, 've': 1.0, 'm': 2.0, 'in': 2.0, 'lip': 2.0, 'possible': 1.0, 'though': 1.0, 'learn': 1.0, 'outer': 1.0, 'when': 2.0, 'they': 1.0, 're': 1.0, 'enough': 1.0, 'done': 1.0, 'spaghetti': 1.0, 'nothing': 1.0, 'sauce': 1.0, 'eating': 1.0, 'for': 1.0, 'buying': 1.0, 'staining': 1.0, 'all': 2.0, 'other': 1.0, 'an': 1.0, 'also': 1.0, 'mark': 1.0, 'molding': 1.0, 'loosen': 1.0, 'satisfied': 1.0, 'after': 1.0, 'cute': 1.0, 'this': 1.0, 'few': 1.0, 'toddlers': 1.0, 'hand': 1.0, 'washings': 1.0, 'vanished': 1.0}
Word element => {'hence': 1.0, 'enough': 1.0, 'close': 1.0, 'be': 1.0, 'chair': 1.0, 'high': 2.0, 'in': 1.0, 'pretty': 1.0, 'catcher': 1.0, 'was': 1.0, 'spill': 1.0, 'negative': 1.0, 'tip': 1.0, 'would': 2.0, 'eating': 1.0, 'he': 1.0, 'unless': 1.0, 'beans': 1.0, 'when': 1.0, 'still': 1.0, 'son': 1.0, 'from': 1.0, 'products': 1.0, 'old': 1.0, 'things': 1.0, 'tried': 1.0, 'dump': 1.0, 'one': 2.0, 'typically': 1.0, 'as': 2.0, 'to': 4.0, 'component': 1.0, 'buying': 1.0, 'for': 1.0, 'where': 1.0, 'love': 2.0, 'product': 1.0, 'rating': 1.0, 'other': 2.0, 'bowls': 2.0, 'this': 2.0, 'only': 2.0, 'useless': 1.0, 'it': 3.0, 'have': 3.0, 'several': 1.0, 'year': 1.0, 'his': 1.0, 'i': 6.0, 'two': 1.0, 'who': 1.0, 'bit': 1.0, 'important': 1.0, 'pricey': 1.0, 'loves': 1.0, 'that': 2.0, 'manage': 1.0, 'ended': 1.0, 'nearly': 1.0, 'up': 1.0, 'say': 1.0, 'is': 3.0, 'more': 1.0, 'the': 4.0, 'they': 3.0, 'are': 2.0, 'a': 3.0, 's': 2.0, 'my': 2.0, 'but': 1.0, 'can': 1.0, 'me': 1.0, 'stay': 1.0, 'not': 2.0, 'however': 1.0, 'move': 1.0, 'like': 1.0, 'table': 1.0, 'put': 1.0}
Word element => {'eating': 1.0, 'independent': 1.0, 'transition': 1.0, 'helping': 1.0, 'stain': 1.0, 'will': 1.0, 'sauces': 1.0, 'tomato': 1.0, 'always': 1.0, 'dishwasher': 1.0, 'in': 1.0, 'do': 1.0, 'wash': 1.0, 'up': 1.0, 'held': 1.0, 'well': 1.0, 'has': 1.0, 'of': 1.0, 'couple': 1.0, 'special': 1.0, 'son': 1.0, 'under': 1.0, 'use': 1.0, 'boon': 2.0, 'was': 3.0, 'learning': 1.0, '7': 1.0, 'but': 1.0, 'rim': 1.0, 'can': 1.0, 'toddler': 1.0, 'the': 11.0, 'purchase': 1.0, 'my': 3.0, 'i': 7.0, 'blue': 1.0, 'looking': 1.0, 'buy': 1.0, 'purchasing': 1.0, 'expensive': 1.0, 'for': 3.0, 'after': 1.0, 's': 1.0, 'we': 1.0, 't': 1.0, 'a': 4.0, 'been': 2.0, 'that': 1.0, 'not': 1.0, 'stay': 1.0, 'spoon': 1.0, 've': 1.0, 'munchkin': 1.0, 'would': 1.0, 'to': 4.0, 'as': 1.0, 'months': 1.0, 'decided': 1.0, 'very': 1.0, 'great': 1.0, 'finger': 1.0, '1': 1.0, 'get': 1.0, 'and': 2.0, 'bowls': 2.0, '10': 1.0, 'suction': 2.0, 'notch': 1.0, 'between': 1.0, 'reviews': 1.0, 'based': 1.0, 'release': 1.0, 'this': 2.0, 'it': 5.0, 'debating': 1.0, 'is': 2.0, 'put': 3.0, 'bowl': 8.0, '3': 1.0, 'on': 2.0, 'strong': 1.0, 'off': 1.0, 'hand': 1.0, 'using': 1.0, 'reading': 1.0, 'table': 1.0, 'unless': 1.0}
Word element => {'highly': 1.0, 'spoon': 1.0, 'fork': 1.0, 'bowl': 1.0, 'don': 1.0, 'simply': 1.0, 'wooden': 1.0, 'stick': 2.0, 'it': 1.0, 'this': 2.0, 'catcher': 1.0, 'tried': 1.0, 'seems': 1.0, 'in': 1.0, 'however': 1.0, 'suction': 1.0, 'like': 2.0, 'champ': 1.0, 'recommend': 1.0, 'spill': 1.0, 'been': 1.0, 'a': 2.0, 't': 1.0, 'the': 3.0, 'great': 2.0, 'have': 1.0, 'of': 2.0, 'plus': 1.0, 'most': 1.0, 'use': 1.0, 'highchair': 1.0, 'dozens': 1.0, 'tray': 1.0, 'is': 1.0, 'tables': 2.0, 'sticks': 1.0, 'restaurant': 1.0, 'bowls': 1.0, 'too': 1.0, 'daughter': 1.0, 'i': 1.0, 'instrumental': 1.0, 'feature': 1.0, 'well': 1.0, 'has': 1.0, 'them': 1.0, 'helping': 1.0, 'to': 2.0, 'as': 2.0, 'our': 1.0, 'learn': 1.0}
Word element => {'herself': 1.0, 'were': 1.0, 'd': 1.0, 'by': 1.0, 'comes': 1.0, 'up': 1.0, 'gives': 1.0, 'minutes': 1.0, 'two': 1.0, 'be': 1.0, 'stays': 1.0, 'dinner': 1.0, 'and': 4.0, 'would': 1.0, 'had': 1.0, 'because': 1.0, 'that': 4.0, 'for': 2.0, 'looking': 1.0, 'something': 1.0, 'buy': 1.0, 'are': 1.0, 'you': 2.0, 'better': 1.0, 'chair': 1.0, 'there': 1.0, 'if': 3.0, 'stay': 1.0, 'haven': 1.0, 'made': 1.0, 't': 5.0, 'a': 8.0, 'then': 1.0, 'we': 2.0, 'maybe': 1.0, 's': 6.0, 'high': 1.0, 'to': 3.0, 'any': 1.0, 'stuck': 1.0, 'in': 6.0, 'not': 2.0, 'itself': 2.0, 'i': 2.0, 'well': 1.0, 'other': 1.0, 'attractive': 1.0, 'seconds': 1.0, 'bowl': 9.0, 'on': 4.0, 'extend': 1.0, 'tray': 3.0, 'than': 1.0, 'huge': 1.0, 'at': 1.0, 'is': 2.0, 'tear': 1.0, 'dishwasher': 1.0, 'around': 1.0, 'work': 1.0, 'rim': 2.0, 'but': 1.0, 'weak': 1.0, 'will': 1.0, 'trouble': 1.0, 'ripping': 1.0, 'attach': 1.0, 'few': 1.0, 'this': 2.0, 'with': 1.0, 'thought': 1.0, 'it': 8.0, 'she': 3.0, 'top': 1.0, 'however': 1.0, 'packaging': 1.0, 'the': 18.0, 'of': 2.0, 'store': 1.0, 'was': 1.0, 'doesn': 2.0, 'looked': 1.0, 'like': 1.0, 'bottom': 2.0, 'suction': 8.0, 'case': 1.0, 'cup': 3.0, 'so': 2.0, 'rubber': 2.0, 'bowls': 1.0, 'rack': 1.0, 'changed': 1.0, 'attached': 1.0, 'colored': 1.0, 'loose': 1.0, 'under': 1.0, 'bare': 1.0, 'plastic': 1.0, 'perhaps': 1.0, 'just': 3.0, 'why': 1.0, 'power': 2.0, 'fact': 1.0, 'entire': 1.0, 'my': 1.0, 'daughter': 1.0, 'don': 1.0, 'isn': 1.0, 'thrower': 1.0, 'generally': 1.0, 'try': 1.0, 'see': 1.0, 'off': 3.0, 'focused': 2.0, 'beginning': 1.0, 'eating': 1.0, 'wanted': 1.0}
Word element => {'handle': 1.0, 'a': 1.0, 'spills': 1.0, 'as': 1.0, 'and': 1.0, 'table': 1.0, 'big': 1.0, 'wooden': 1.0, 'our': 1.0, 'these': 1.0, 'loved': 1.0, 'bowls': 1.0, 'for': 1.0, 'babies': 1.0, 'with': 1.0, 'on': 1.0, 'toddlers': 1.0, 'suction': 1.0, 'helps': 1.0, 'lip': 1.0, 'my': 1.0, 'the': 2.0, 'works': 1.0}
Word element => {'drop': 1.0, 'shake': 1.0, 'all': 1.0, 'likes': 1.0, 'and': 1.0, 'me': 1.0, 'she': 2.0, 'sight': 1.0, 'at': 1.0, 'like': 1.0, 'now': 1.0, 'to': 2.0, 'seemed': 1.0, 'got': 1.0, 'glad': 1.0, 'plain': 1.0, 'seeing': 1.0, 'because': 1.0, 'the': 5.0, 'color': 2.0, 'my': 2.0, 'toxic': 1.0, 'concern': 1.0, 'one': 1.0, 'i': 3.0, 'initial': 1.0, 'pleasant': 1.0, 'about': 1.0, 'excited': 1.0, 'first': 1.0, 'this': 2.0, 'it': 4.0, 'is': 3.0, 'time': 1.0, 'free': 1.0, 'daughter': 1.0, 'm': 1.0, 'shaking': 1.0, 'despite': 1.0, 'bought': 1.0, 'sound': 1.0, 'always': 1.0, 'of': 1.0, 'rattle': 1.0}
Word element => {'free': 1.0, 'bpa': 1.0, 'its': 2.0, 'also': 1.0, 'my': 1.0, 'loved': 1.0, 'this': 1.0, 'toy': 1.0, 'much': 2.0, 'soo': 2.0, 'had': 1.0, 'that': 1.0, 'fun': 1.0, 'son': 1.0, 'with': 1.0, 'great': 1.0, 'it': 1.0}
Word element => {'excellent': 1.0, 'purpose': 1.0, 'clutter': 1.0, 'items': 1.0, 'smaller': 1.0, 'looking': 1.0, 'nasal': 1.0, 'tend': 1.0, 'does': 1.0, 'have': 1.0, 'large': 1.0, 'thermometer': 1.0, 'assume': 1.0, 'good': 1.0, 'etc': 1.0, 'i': 3.0, 'a': 1.0, 's': 2.0, 'it': 4.0, 'this': 1.0, 'son': 1.0, 'top': 1.0, 'of': 1.0, 'the': 4.0, 'diaper': 1.0, 'my': 1.0, 'cream': 1.0, 'and': 2.0, 'dresser': 2.0, 'highly': 1.0, 'love': 1.0, 'for': 3.0, 'product': 1.0, 'changing': 1.0, 'that': 3.0, 'will': 1.0, 'many': 1.0, 'holds': 1.0, 'is': 1.0, 'aspirator': 1.0, 'uses': 1.0, 'in': 1.0, 'future': 1.0, 'recommend': 1.0, 'bottles': 1.0, 'modern': 1.0, 'not': 1.0, 'tylenol': 1.0, 'things': 1.0, 'intent': 1.0, 'table': 1.0, 'hold': 2.0, 'like': 1.0, 'cups': 1.0, 'to': 2.0}
Word element => {'off': 1.0, 'come': 1.0, 'bottom': 1.0, 'on': 1.0, 'located': 1.0, 'rubber': 1.0, 'heat': 2.0, 'stoppers': 1.0, 'well': 1.0, 'not': 1.0, 'do': 1.0, 'melting': 1.0, 'these': 1.0, 'twice': 1.0, 'though': 1.0, 'thing': 1.0, 'bad': 1.0, 'materials': 1.0, 'of': 2.0, 'them': 2.0, 'boons': 1.0, 'have': 3.0, 'we': 3.0, 'weeks': 1.0, 'but': 1.0, 'three': 1.0, 'little': 3.0, 'boon': 1.0, 'ducks': 1.0, 'came': 1.0, 'i': 1.0, 'when': 1.0, 'looking': 1.0, 'wonderful': 1.0, 'mind': 1.0, 'piece': 1.0, 'with': 3.0, 'positive': 1.0, 'shipped': 1.0, 'aesthetic': 1.0, 'harmful': 1.0, 'fellas': 1.0, 'the': 9.0, 'my': 1.0, 'for': 2.0, 'swim': 1.0, 'one': 2.0, 'while': 1.0, 'from': 1.0, 'later': 1.0, 'wife': 1.0, 'waiting': 1.0, 'items': 1.0, 'across': 1.0, 'and': 1.0, 'they': 3.0, 'pond': 1.0, 'non': 1.0, 'appeal': 1.0, 'makes': 1.0, 'are': 2.0, 'table': 1.0, 'had': 1.0, 'ship': 1.0, 'what': 1.0, 'even': 1.0, 'being': 1.0, 'whilst': 1.0, 'in': 3.0, 'glue': 1.0, 'all': 1.0, 'our': 1.0, 'next': 1.0, 'that': 2.0, 'guys': 1.0, 'made': 1.0, 'charming': 1.0, 'ornaments': 1.0, 'better': 1.0, 'is': 1.0}
Word element => {'us': 1.0, 'better': 1.0, 'be': 1.0, 'will': 1.0, 'instead': 1.0, 'rubber': 1.0, 'original': 1.0, 'try': 1.0, 'toy': 1.0, 'thing': 1.0, 'first': 1.0, 'ducks': 1.0, '7': 1.0, 'mouth': 2.0, 'her': 4.0, 'puts': 1.0, 'material': 1.0, 'kind': 1.0, 'what': 1.0, 'great': 1.0, 'the': 6.0, 'not': 1.0, 'hand': 1.0, 'know': 1.0, 'during': 1.0, 'and': 1.0, 'play': 1.0, 'going': 1.0, 't': 2.0, 'a': 4.0, 'we': 1.0, 'bath': 1.0, 'piece': 1.0, 'with': 1.0, 'this': 2.0, 'it': 4.0, 'look': 1.0, 'accidently': 1.0, 'baby': 2.0, 'don': 2.0, 'i': 6.0, 'months': 1.0, 'bought': 1.0, 'recieved': 1.0, 'hopefully': 1.0, 'my': 2.0, 'want': 1.0, 'everything': 1.0, 'choice': 2.0, 'natural': 1.0, 'made': 1.0, 'duck': 2.0, 'yuck': 1.0, 'of': 4.0, 'hopes': 1.0, 'in': 4.0, 'that': 3.0, 'for': 3.0, 'any': 1.0, 'to': 4.0, 'as': 1.0, 'out': 1.0, 'couple': 1.0, 'days': 1.0, 'after': 1.0, 'time': 1.0, 'so': 1.0, 'noticed': 1.0, 'bill': 3.0, 'more': 1.0, 'is': 4.0, 'mail': 1.0, 'pealing': 1.0, 'am': 1.0, 'when': 1.0, 'you': 1.0, 'something': 1.0, 'would': 1.0, 'small': 1.0, 'have': 1.0, 'sitting': 1.0, 'swallow': 1.0, 'but': 1.0}
Word element => {'received': 1.0, 'ago': 1.0, 'two': 1.0, 'emailed': 1.0, 'ex': 1.0, 'unlike': 1.0, 'ethylene': 1.0, 'boon': 4.0, 'they': 3.0, 'surprised': 1.0, 'did': 1.0, 'flipped': 1.0, 'however': 2.0, 'toy': 3.0, 'best': 1.0, 'who': 4.0, 'from': 3.0, 'details': 1.0, 'recycling': 1.0, 'immediately': 1.0, 'sharpie': 1.0, 'off': 1.0, 'uncapped': 1.0, 'daughter': 2.0, 'upright': 1.0, 'documents': 1.0, 'opening': 1.0, 'squishy': 1.0, 'lucky': 1.0, 'somewhat': 1.0, 'needed': 1.0, 'shell': 1.0, 'both': 1.0, 'body': 1.0, 'future': 1.0, 'non': 1.0, 'in': 15.0, 'main': 1.0, 'based': 1.0, 'rigid': 1.0, 'leakage': 1.0, 'faded': 1.0, 'kraton': 1.0, 'thing': 1.0, 'never': 3.0, 'ducks': 10.0, 'backward': 1.0, 'asked': 1.0, '1': 1.0, 'if': 2.0, 'particularly': 1.0, 'smells': 1.0, 'detect': 1.0, 'herself': 2.0, 'you': 2.0, 'is': 14.0, 'marketed': 1.0, 'as': 7.0, 'water': 3.0, 'stated': 1.0, 'dead': 1.0, 'extremely': 1.0, 'weighted': 2.0, '4': 1.0, 'at': 3.0, 'worth': 1.0, 'nicely': 1.0, 'count': 1.0, 'beak': 1.0, 'head': 1.0, 'material': 1.0, 'spoken': 1.0, 'float': 3.0, 'styrene': 2.0, 'contain': 1.0, 'by': 4.0, 'can': 5.0, 'after': 1.0, 'problem': 1.0, 'jane': 6.0, 'odd': 3.0, 'now': 2.0, 'kind': 1.0, 'orange': 1.0, 'am': 1.0, 'while': 2.0, 'which': 1.0, 'first': 2.0, 'are': 7.0, 'my': 4.0, 'toxins': 1.0, 'especially': 1.0, 'use': 1.0, 'filled': 1.0, 'either': 1.0, 'confused': 1.0, 'underside': 1.0, 'defective': 2.0, 'intrigued': 1.0, 'free': 3.0, 'came': 1.0, 'it': 15.0, 'be': 4.0, 'own': 1.0, 'right': 2.0, 'our': 4.0, 'trust': 1.0, 'others': 2.0, 'didn': 1.0, 'luckily': 1.0, 'alternative': 6.0, 'swims': 1.0, 'wanting': 1.0, 'pliable': 2.0, 'plastic': 3.0, 'long': 1.0, 'on': 16.0, 'strong': 2.0, 'photo': 1.0, 'children': 1.0, 'what': 2.0, 'when': 2.0, 'also': 1.0, 'passed': 1.0, 'sensitive': 1.0, 'an': 5.0, 'so': 10.0, 'less': 2.0, 'toys': 4.0, 'scary': 1.0, 'actually': 3.0, 'guess': 1.0, 'for': 7.0, '5': 1.0, 'got': 1.0, 'spend': 1.0, 'smell': 2.0, 'get': 2.0, 'was': 7.0, 'hit': 1.0, 't': 2.0, 'we': 6.0, 'phthalate': 1.0, 'unconventional': 1.0, 'find': 2.0, 's': 14.0, 'm': 4.0, 'just': 1.0, 'schylling': 2.0, 'sort': 1.0, '1996': 1.0, 'underneath': 1.0, 'bath': 6.0, 'once': 1.0, 'out': 2.0, 'chores': 1.0, 'made': 6.0, 'attest': 1.0, 'during': 1.0, 'trade': 1.0, 'able': 1.0, 'a': 35.0, 'update': 1.0, 'i': 19.0, 'without': 1.0, 'bottom': 1.0, 'order': 1.0, 'paranoid': 1.0, 'untrustworthy': 1.0, 'consider': 1.0, 'done': 1.0, 'of': 19.0, 'even': 1.0, 'most': 3.0, 'always': 1.0, 'duckies': 1.0, 'yellow': 2.0, 'might': 1.0, 'measures': 1.0, 'try': 1.0, 'since': 1.0, 'prompt': 1.0, 'duck': 8.0, 'she': 8.0, 'colored': 1.0, 'money': 2.0, 'obligatory': 1.0, 'code': 1.0, 'vinyl': 2.0, 'anyone': 2.0, 'synthetic': 1.0, 'than': 1.0, 'bit': 1.0, 'premise': 1.0, 'couple': 1.0, 'carry': 1.0, 'has': 3.0, 'them': 3.0, 'everything': 1.0, 'over': 5.0, 'seems': 2.0, 'figured': 1.0, 'give': 1.0, 'decorated': 1.0, 'her': 5.0, 'little': 3.0, 'no': 2.0, 'traditional': 1.0, 'immediate': 1.0, 'potentially': 1.0, 'pvc': 7.0, 'attachment': 1.0, '1960': 1.0, 'favor': 2.0, 'few': 2.0, 'almost': 1.0, 'send': 1.0, 'this': 8.0, 'brightly': 1.0, 'devices': 1.0, 'the': 34.0, 'around': 1.0, 'that': 10.0, 'squish': 3.0, 'butadiene': 1.0, 'far': 1.0, 'tipped': 1.0, 'sebs': 1.0, 'angle': 2.0, 'know': 2.0, 'point': 1.0, 'subtype': 1.0, 'created': 2.0, 'oil': 1.0, 'bob': 8.0, 'does': 2.0, 'under': 1.0, 'name': 1.0, 'glad': 1.0, 'think': 1.0, 'there': 1.0, 'do': 1.0, 'wikipedia': 1.0, 'wealth': 1.0, 'article': 2.0, 'used': 3.0, 'tends': 1.0, 'document': 1.0, 'noticed': 1.0, 'medical': 1.0, 'gloves': 1.0, 'bought': 1.0, 'youngest': 1.0, 'three': 2.0, 'rubber': 2.0, 'course': 2.0, 'increasingly': 1.0, 'hazard': 1.0, 'll': 1.0, 'its': 1.0, 'benefit': 1.0, 'low': 1.0, 'but': 4.0, 'cool': 1.0, 'not': 4.0, 'disk': 2.0, 'require': 1.0, 'plasticizers': 1.0, 'manufacture': 1.0, 'safer': 3.0, 'g': 1.0, 'soft': 1.0, 'known': 2.0, 'odor': 1.0, 'have': 5.0, 'greenpeace': 1.0, 'developed': 1.0, 'company': 5.0, 'viable': 1.0, 'shipping': 2.0, 'seem': 2.0, 'toward': 1.0, 'one': 3.0, 'how': 2.0, 'real': 1.0, 'see': 1.0, 'data': 2.0, 'time': 2.0, 'exists': 1.0, 'separated': 1.0, 'whereas': 1.0, 'information': 2.0, 'hesitates': 1.0, 'many': 1.0, 'packaging': 2.0, 'worthwhile': 1.0, 'commonly': 1.0, 'recommend': 1.0, 'plastics': 2.0, 'completely': 1.0, 'days': 2.0, 'safety': 1.0, 'sheet': 1.0, 'areas': 1.0, 'knocked': 1.0, 'excitingly': 1.0, 'don': 1.0, 'still': 1.0, 'wise': 1.0, 'doing': 1.0, 'option': 1.0, 'with': 5.0, 'improvement': 1.0, 'later': 1.0, 'china': 2.0, 'and': 27.0, 'those': 1.0, 'manufacturing': 1.0, 'things': 2.0, 'to': 23.0, 'because': 1.0, 'say': 1.0, 'product': 2.0, 'being': 1.0, 'year': 1.0, 'equal': 1.0, 'pretty': 1.0, 'idea': 1.0, 'case': 1.0, 'current': 2.0, 'sweet': 1.0, 'carrying': 1.0, 'faulty': 1.0, 'toxic': 1.0, 'available': 2.0, 'liking': 1.0, 'must': 1.0, 'tires': 1.0, 'more': 2.0, 'kids': 1.0, 'certainly': 1.0, 'often': 1.0, 'collecting': 1.0, 'would': 2.0, 'extra': 2.0, 'these': 2.0, 'minus': 2.0, 'months': 2.0, 'their': 3.0, 'earn': 1.0, 'taken': 1.0, 'particular': 1.0, 'nothing': 1.0, 'though': 2.0, 'thought': 1.0, 'comment': 1.0, 'been': 2.0, 'backs': 1.0, 'want': 1.0, 'floaters': 1.0, 'pink': 1.0, 'slim': 1.0, 'blue': 1.0, 'floats': 2.0, 'themselves': 1.0, 'house': 2.0, 'thus': 1.0, 'all': 8.0, 'his': 4.0, 'bill': 2.0, 'air': 1.0, 'about': 2.0, 'slight': 2.0, '2': 1.0, 'longer': 1.0, 'old': 2.0, 'forward': 1.0, 'standard': 1.0, 'upended': 1.0, 'back': 3.0, 'himself': 1.0, 'sealed': 1.0, 'takes': 1.0, 'activity': 1.0, 'side': 1.0, 'upend': 1.0, 'him': 1.0, 'he': 4.0, 'tips': 1.0, 'floater': 1.0, 'like': 3.0, 'ordered': 1.0, 'had': 2.0, 'look': 1.0, 'base': 1.0, 'some': 1.0, 'people': 1.0, 'nonetheless': 1.0, 'only': 1.0, 'dangerous': 1.0, 'cheap': 1.0, 'wrote': 1.0, 'response': 2.0, 'friendly': 1.0, 'will': 4.0, 'apologetic': 1.0, 'wanted': 1.0, 'pull': 1.0, 'new': 1.0, 'arrived': 1.0, 'doorstep': 1.0, 'fear': 1.0, 'sent': 1.0, 'stand': 1.0, 'products': 1.0}
Word element => {'family': 1.0, 'duck': 1.0, 'members': 1.0, 'some': 1.0, 'eventually': 1.0, 'nontoxic': 1.0, 'comforting': 1.0, 'everyone': 1.0, 'well': 1.0, 'i': 1.0, 'toy': 1.0, 'has': 1.0, 'this': 1.0, 'bathtime': 1.0, 'look': 1.0, 'is': 5.0, 'out': 1.0, 'mail': 1.0, 'no': 1.0, 'proved': 1.0, 'have': 4.0, 'different': 1.0, 'clean': 1.0, 'does': 1.0, 'that': 1.0, 'because': 1.0, 'usually': 1.0, 'his': 1.0, 'year': 2.0, 'the': 7.0, 'of': 4.0, 'a': 6.0, 'we': 5.0, 's': 1.0, 'stands': 1.0, 'very': 3.0, 'duckies': 1.0, 'new': 1.0, 'bought': 1.0, 'for': 5.0, 'actually': 1.0, 'when': 1.0, 'daughter': 2.0, 'little': 1.0, 'bob': 2.0, 'rubber': 1.0, 'it': 2.0, 'him': 5.0, 'boon': 1.0, 'be': 2.0, 'hit': 1.0, 'many': 1.0, 'she': 3.0, 'others': 1.0, 'our': 1.0, 'to': 9.0, 'as': 3.0, 'recommend': 1.0, 'full': 1.0, 'but': 2.0, 'most': 1.0, 'instantly': 1.0, 'one': 2.0, 'held': 1.0, 'other': 2.0, 'adventures': 1.0, 'design': 1.0, 'water': 1.0, 'up': 1.0, 'wonderful': 1.0, 'old': 1.0, 'source': 1.0, 'reaches': 1.0, 'shape': 1.0, 'and': 8.0, 'was': 2.0, 'had': 3.0, 'almost': 2.0, 'now': 2.0, 'odd': 1.0, 'he': 8.0, 'with': 1.0, 'forward': 1.0, 'not': 1.0, 'bath': 1.0, 'watertight': 1.0, 'bold': 1.0, 'problem': 1.0, 'nooks': 1.0, 'taking': 1.0, 'on': 1.0, 'beautifully': 1.0, 'like': 1.0, 'friends': 1.0, 'mentioned': 1.0, 'seems': 1.0, 'adding': 1.0, 'will': 1.0, 'over': 4.0, 'loll': 1.0, 'from': 1.0, 'ducks': 2.0, 'good': 1.0, 'side': 1.0, 'still': 1.0, 'if': 1.0, 'tipped': 1.0, 'do': 1.0, 'amusement': 1.0, 'wipe': 1.0, 'looks': 1.0, 'my': 1.0, 'tip': 1.0, 'easy': 2.0, 'cracks': 1.0, 'mold': 1.0, 'several': 1.0, 've': 1.0, 'down': 1.0, 'day': 1.0, 'grow': 1.0, 'arrived': 1.0, 'in': 1.0}
Word element => {'ordering': 1.0, 'am': 1.0, 'bright': 1.0, 'infant': 1.0, 'an': 1.0, 'next': 1.0, 'bob': 1.0, 'that': 1.0, 'parts': 1.0, 'no': 1.0, 'whistles': 1.0, 'is': 2.0, 'at': 2.0, 'many': 1.0, 'safe': 3.0, 'eventually': 1.0, 'same': 1.0, 'small': 1.0, 'have': 1.0, 'color': 1.0, 'one': 1.0, 'love': 1.0, 'for': 2.0, 'i': 3.0, 'plastic': 1.0, 'possible': 1.0, 'safer': 1.0, 'daughter': 1.0, 'toy': 2.0, 'baby': 1.0, 'our': 1.0, 'as': 2.0, 'to': 1.0, 'toys': 1.0, 'wanted': 1.0, 'was': 1.0, 'free': 1.0, 'now': 1.0, 'so': 1.0, 'enjoys': 1.0, 'it': 4.0, 'sold': 1.0, 'and': 3.0, 'clutching': 1.0, 'w': 3.0, 'price': 1.0, 'both': 1.0, 'the': 5.0, 'playing': 1.0, 'hands': 1.0, 'a': 3.0, 's': 1.0, 'we': 1.0, 'will': 1.0, 'pvc': 1.0, 'use': 1.0, 'bath': 1.0, 'regular': 1.0, 'in': 1.0, 'o': 1.0, 'bells': 1.0}
Word element => {'others': 1.0, 'would': 1.0, 'toys': 1.0, 'ducky': 1.0, 'squirties': 1.0, 'than': 1.0, 'better': 1.0, 'be': 1.0, 'not': 1.0, 'm': 1.0, 'so': 1.0, 'out': 1.0, 'to': 3.0, 'appear': 1.0, 'get': 1.0, 'too': 1.0, 'and': 4.0, 'got': 1.0, 'didn': 1.0, 'looking': 1.0, 'this': 2.0, 'with': 1.0, 'old': 1.0, 'i': 7.0, 'bought': 1.0, 'playing': 1.0, 'the': 3.0, 'that': 1.0, 'loves': 1.0, 'bath': 3.0, 'think': 1.0, 'when': 2.0, 's': 1.0, 't': 2.0, 'a': 3.0, 'my': 1.0, 'nontoxic': 1.0, 'it': 7.0, 'she': 3.0, 'moldy': 1.0, 'sometimes': 1.0, 'for': 2.0, 'year': 1.0, 'little': 1.0, 'very': 1.0, 'inside': 1.0, 'but': 1.0, 'recommend': 1.0, 'was': 2.0, 'doesn': 1.0, 'like': 1.0, 'other': 2.0, 'floats': 1.0, 'beak': 1.0, 'in': 2.0, 'toy': 2.0, 'well': 1.0, 'likes': 1.0, 'leak': 1.0, 'rubber': 2.0, 'chewing': 1.0, 'shake': 1.0, 'concerned': 1.0, 'duckies': 1.0, 'hear': 1.0, 'daughter': 1.0, 'water': 1.0}
Word element => {'it': 1.0, 'smell': 1.0, 'doesn': 1.0, 'water': 1.0, 'fill': 1.0, 'haven': 1.0, 'up': 1.0, 'any': 1.0, 'had': 1.0, 'bad': 1.0, 'i': 1.0, 'issues': 1.0, 'with': 2.0, 'loves': 1.0, 't': 3.0, 'this': 1.0, 'baby': 1.0, 'little': 1.0, 'didn': 1.0, 'guy': 1.0}
Word element => {'room': 1.0, 'in': 1.0, 'lovely': 1.0, 'child': 1.0, 'sign': 1.0, 'hamper': 1.0, 'year': 1.0, 'peace': 1.0, 'and': 1.0, 'me': 1.0, 'easy': 1.0, 'my': 2.0, 'the': 1.0, 'looks': 1.0, 'is': 1.0, 'bed': 1.0, 'for': 1.0, 'love': 1.0, 'it': 1.0, 'old': 1.0, 'i': 1.0, 'clothes': 1.0, '78': 1.0, 'nit': 1.0, 'to': 1.0, 'was': 1.0, 'together': 1.0, 'purple': 1.0, 'put': 1.0}
Word element => {'sucking': 1.0, 'happily': 1.0, 'time': 1.0, 'all': 1.0, 'about': 1.0, 'better': 1.0, 'much': 1.0, 'so': 1.0, 'over': 1.0, 'in': 3.0, 'when': 2.0, 'am': 1.0, 'times': 1.0, 'handy': 1.0, 'makes': 1.0, 'had': 1.0, 'to': 8.0, 'as': 2.0, 'teethers': 1.0, 'these': 1.0, 'always': 1.0, 'the': 9.0, 'of': 1.0, 'reading': 1.0, 'want': 1.0, 'amazon': 1.0, 'and': 6.0, 'spends': 1.0, 'reviewing': 1.0, 'ordered': 2.0, 'a': 4.0, 'second': 1.0, 'have': 5.0, 'must': 1.0, 'this': 2.0, 'grip': 2.0, 'fabric': 1.0, 'for': 1.0, 'teeth': 1.0, 'product': 1.0, '2nd': 1.0, 'lot': 1.0, 'one': 5.0, 'mia': 1.0, 'stroller': 1.0, 'from': 2.0, 'while': 1.0, 'admit': 1.0, 'or': 2.0, 'until': 1.0, 'great': 1.0, 'feel': 1.0, 'just': 2.0, 'not': 1.0, 'loves': 1.0, 'because': 2.0, 'that': 1.0, 'be': 1.0, 'it': 6.0, 'she': 3.0, 'me': 3.0, 'looks': 1.0, 'my': 1.0, 'maneuver': 1.0, 'old': 1.0, 'fact': 1.0, 'now': 1.0, '6': 1.0, '5': 1.0, 'bamboo': 1.0, 'daughter': 1.0, 'benefited': 1.0, 'continues': 1.0, 'get': 1.0, 'know': 1.0, 'easy': 1.0, 'dig': 1.0, 'enough': 1.0, 'prompt': 1.0, 'washed': 1.0, 'on': 2.0, 've': 2.0, 'several': 1.0, 'still': 1.0, 'little': 1.0, 'knots': 1.0, 'i': 10.0, 'well': 1.0, 'month': 2.0, 'often': 1.0, 'ergo': 1.0, 'likes': 1.0, 'is': 3.0, 'ring': 1.0, 'reviews': 1.0, 'take': 1.0, 'with': 1.0, 'wash': 1.0, 'her': 1.0, 'able': 1.0, 'things': 1.0, 'especially': 1.0, 'written': 1.0, 'perfectly': 1.0, 'cloth': 1.0, 'works': 1.0, 'organic': 1.0}
Word element => {'i': 1.0, 'not': 1.0, 'in': 2.0, 'china': 2.0, 'made': 2.0, 'favorite': 1.0, 'toys': 1.0, 'self': 1.0, 'to': 2.0, 'extra': 1.0, 'my': 1.0, 'the': 4.0, 'if': 1.0, 'being': 1.0, 'terry': 1.0, 'velcro': 1.0, 'add': 1.0, 'detachable': 1.0, 'is': 2.0, 'a': 2.0, 'things': 2.0, 'sure': 1.0, 'towel': 1.0, 'can': 1.0, 'organic': 1.0, 'knots': 1.0, 'fabric': 1.0, 'baby': 2.0, 'this': 1.0, 'soft': 2.0, 'with': 2.0, 'knitted': 1.0, 'minus': 1.0, 'and': 1.0, 'nice': 1.0, '1': 1.0, 'like': 1.0, 'part': 1.0, 'of': 2.0, 'still': 1.0, 'enables': 1.0, 'for': 2.0, 'product': 2.0, 'however': 1.0, 'star': 2.0, 'trust': 1.0, 'ring': 1.0, 'entertain': 1.0, 'you': 1.0, 'teether': 2.0, 'interchange': 1.0, 'your': 1.0, 'weird': 1.0, 'free': 1.0, 'loop': 1.0, 'own': 1.0, '5': 1.0, 'plastic': 1.0}
Word element => {'once': 1.0, 'will': 1.0, 'but': 1.0, 'teething': 1.0, 'small': 1.0, 'my': 2.0, 'is': 2.0, 'ring': 1.0, 'son': 2.0, 'be': 1.0, 'suck': 1.0, 'on': 1.0, 'enough': 1.0, 'isn': 1.0, 'nice': 1.0, 'soothie': 1.0, 'loves': 1.0, 'the': 2.0, 't': 1.0, 'yet': 1.0, 'for': 1.0, 'him': 1.0, 'he': 1.0, 'this': 1.0, 'it': 1.0, 'to': 1.0, 'hold': 1.0, 'and': 1.0, 'washes': 1.0, 'blanket': 1.0, 'easily': 1.0, 'also': 1.0}
Word element => {'any': 1.0, 'that': 1.0, 'like': 1.0, 'entire': 1.0, 'doesn': 1.0, 'but': 1.0, 'before': 1.0, 'refrigerator': 1.0, 'in': 1.0, 't': 1.0, 'the': 3.0, 'chill': 1.0, 'onto': 1.0, 'teething': 1.0, 'on': 1.0, 'months': 1.0, 's': 2.0, 'contain': 1.0, 'i': 2.0, 'old': 1.0, 'to': 2.0, 'really': 1.0, 'is': 1.0, 'chews': 1.0, 'ring': 1.0, 'son': 1.0, 'easy': 1.0, 'giving': 1.0, 'and': 1.0, 'my': 1.0, 'harmful': 1.0, 'likes': 1.0, 'four': 1.0, 'teether': 1.0, 'he': 2.0, 'this': 1.0, 'blankie': 2.0, 'it': 5.0, 'him': 2.0, 'toxins': 1.0, 'small': 1.0, 'so': 1.0, 'for': 1.0, 'hang': 1.0}
Word element => {'or': 1.0, 'stroller': 1.0, 'her': 1.0, 'attach': 1.0, 'can': 1.0, 'enough': 1.0, 'small': 1.0, 's': 1.0, 'ring': 2.0, 'sometimes': 1.0, 'and': 2.0, 'preferred': 1.0, 'to': 4.0, 'she': 2.0, 'because': 2.0, 'noticed': 1.0, 'daughter': 1.0, 'for': 1.0, 'it': 2.0, 'this': 1.0, 'high': 1.0, 'my': 1.0, 'the': 4.0, 'bought': 1.0, 'knots': 1.0, 'i': 3.0, 'chew': 1.0, 'instead': 1.0, 'likes': 1.0, 'all': 1.0, 'munch': 1.0, 'everywhere': 1.0, 'on': 2.0, 'blankets': 1.0, 'of': 2.0, 'chair': 1.0, 'toys': 1.0, 'take': 1.0, 'teething': 1.0}
Word element => {'everywhere': 1.0, 'bring': 1.0, 'and': 1.0, 'washable': 1.0, 'soft': 1.0, 'from': 1.0, 'of': 1.0, 'lot': 1.0, 'the': 2.0, 'drool': 1.0, 'absorbs': 1.0, 'a': 1.0, 'baby': 1.0, 'it': 2.0, 's': 1.0, 'teething': 1.0, 'also': 1.0, 'to': 2.0, 'easy': 1.0, 'chew': 1.0, 'on': 1.0, 'loves': 1.0, 'this': 1.0}
Word element => {'boil': 1.0, 'trying': 1.0, 'by': 1.0, 'ring': 1.0, 'teether': 1.0, 'to': 1.0, 'destroyed': 1.0, 'i': 1.0, 'and': 1.0, 'well': 1.0, 'interest': 1.0, 'simple': 1.0, 'style': 1.0, 'daughter': 1.0, 'in': 1.0, 'the': 1.0, 'made': 1.0, 'my': 1.0, 'showed': 1.0, 'it': 2.0, 'no': 1.0}
Word element => {'product': 1.0, 'are': 1.0, 'instruction': 1.0, 'way': 1.0, 'ones': 1.0, 'the': 1.0, 'exactly': 1.0, 'baby': 2.0, 'been': 1.0, 'little': 2.0, 'my': 1.0, 'them': 1.0, 'bags': 1.0, 'since': 1.0, 'and': 1.0, 'best': 1.0, 'sleeping': 1.0, 'for': 1.0, 'given': 1.0, 'using': 1.0, 'love': 1.0, 'i': 3.0, 'bear': 1.0, 'china': 1.0, '6': 1.0, 'on': 1.0, 'grobag': 1.0, 'months': 1.0, 'web': 1.0, 'purchased': 1.0, 'was': 1.0, 'look': 1.0, 'doll': 1.0, 'recently': 1.0, 'they': 1.0}
Word element => {'very': 1.0, 'happy': 1.0, 'tweezers': 1.0, 'quality': 1.0, 'them': 2.0, 'had': 1.0, 'all': 2.0, 'to': 5.0, 'fingers': 1.0, '34': 2.0, 'feeling': 1.0, 'of': 2.0, 'things': 1.0, 'get': 1.0, 'am': 1.0, 'when': 1.0, 'cubbies': 1.0, 'and': 3.0, 'too': 1.0, 'nail': 1.0, 'counter': 1.0, 'this': 1.0, 'i': 5.0, 'some': 1.0, 'products': 1.0, 'than': 1.0, 'use': 2.0, 'prescription': 1.0, 'makeup': 1.0, 'looks': 1.0, 'organize': 1.0, 'keeps': 1.0, 'clean': 1.0, 'good': 2.0, 'on': 1.0, 'is': 1.0, 'more': 1.0, 'the': 6.0, 'my': 4.0, 'in': 3.0, 'a': 3.0, 'shallow': 1.0, 'product': 1.0, 'for': 1.0, 'tray': 1.0, 'one': 1.0, 'sections': 1.0, 'smallest': 1.0, 'other': 1.0, 'scissors': 1.0, 'narrow': 1.0, 'down': 1.0, 'hold': 2.0, 'clippers': 1.0, 'are': 2.0, 'pill': 1.0, 'bit': 1.0, 'bottle': 1.0}
Word element => {'colors': 1.0, 'of': 1.0, 'i': 3.0, 'perfect': 1.0, 'love': 1.0, 'things': 2.0, 'more': 2.0, 'are': 1.0, 'they': 2.0, 'these': 1.0, 'in': 1.0, 'wish': 1.0, 'for': 1.0, 'so': 1.0, 'came': 1.0, 'many': 1.0, 'them': 1.0, 'want': 1.0}
Word element => {'instead': 1.0, 'using': 1.0, 'will': 1.0, 'haves': 1.0, 'lotion': 1.0, 'in': 2.0, 'powder': 1.0, 'baby': 3.0, 'holds': 1.0, 'more': 1.0, 'is': 2.0, 'be': 1.0, 'cream': 1.0, 'bathroom': 1.0, 'and': 4.0, 'hold': 1.0, 'rash': 1.0, 'isn': 1.0, 'wall': 1.0, 'diaper': 1.0, 'brush': 2.0, 'of': 2.0, 'the': 5.0, 'toothpaste': 1.0, 'reach': 2.0, 'on': 3.0, 'hair': 1.0, 'before': 1.0, 'mounted': 1.0, 'thank': 1.0, 'product': 1.0, 'for': 2.0, 'toothbrush': 1.0, 'happen': 1.0, 'see': 1.0, 'a': 5.0, 'we': 1.0, 't': 1.0, 'just': 2.0, 'much': 1.0, 'changing': 1.0, 'that': 3.0, 'basket': 1.0, 'day': 1.0, 'etc': 1.0, 'd': 1.0, 'so': 3.0, 'friends': 1.0, 'to': 5.0, 'thermometer': 1.0, 'was': 1.0, 'expecting': 1.0, 'born': 1.0, 'move': 1.0, 'i': 4.0, 'daughters': 1.0, 'daughter': 2.0, 'dresser': 1.0, 'multiple': 1.0, 'within': 1.0, 'vit': 1.0, 'iron': 1.0, 'drawer': 1.0, 'times': 1.0, 'goodness': 1.0, 'when': 2.0, 'you': 1.0, 'few': 1.0, 'this': 4.0, 'it': 3.0, 'my': 3.0, 'looks': 1.0, 'us': 1.0, 'but': 2.0, 'out': 1.0, 'use': 1.0, 'her': 2.0, 'have': 2.0, 'one': 2.0, 'cool': 1.0, 'convenient': 1.0, 'with': 1.0, 'hand': 1.0, 'something': 1.0, 'or': 1.0, 'must': 1.0, 'everyone': 1.0, 'comments': 1.0, 'who': 1.0, 'there': 1.0, 'they': 1.0, 'want': 1.0, 'gets': 1.0, 'older': 1.0, 'curling': 1.0, 'fill': 1.0, 'table': 1.0, 'right': 1.0, 'll': 1.0, 'are': 1.0, 'grab': 1.0, 'usually': 1.0}
Word element => {'else': 1.0, 'not': 1.0, 'organizer': 1.0, 'desk': 1.0, 'what': 1.0, 'to': 1.0, 'much': 1.0, 'exactly': 1.0, 'say': 2.0, 'great': 1.0, 'works': 1.0, 'pictured': 1.0, 'can': 1.0, 'it': 1.0, 'is': 2.0, 'a': 1.0, 'functional': 1.0, 'pretty': 1.0, 'item': 1.0, 'and': 1.0, 'as': 3.0}
Word element => {'for': 1.0, 'perfect': 1.0, 'them': 1.0, 'skin': 1.0, 'seep': 1.0, 'wardrobe': 1.0, 'chemicals': 1.0, 'doused': 1.0, 'pesticided': 1.0, 'babies': 1.0, 'into': 1.0, 'that': 2.0, 'course': 1.0, 'formaldahyde': 1.0, 'safe': 1.0, 'snug': 1.0, 'enough': 1.0, 'cozy': 1.0, 'makes': 1.0, 'warm': 1.0, 'bags': 1.0, 'ply': 1.0, 'with': 2.0, 'want': 1.0, 'nursery': 1.0, 'so': 1.0, 'need': 1.0, 'aren': 1.0, 'blankets': 1.0, 'organic': 2.0, 'they': 4.0, 'cotton': 1.0, 'be': 1.0, 'him': 4.0, 'kiddopotomus': 1.0, 'ones': 1.0, 'keep': 1.0, 'at': 2.0, 'two': 2.0, 'or': 1.0, 'outgrew': 1.0, 'until': 1.0, 'my': 1.0, 'other': 2.0, 'bought': 1.0, 'months': 2.0, 'very': 1.0, 'almost': 1.0, 'his': 3.0, 'of': 2.0, 'toxic': 1.0, 'make': 1.0, '3': 1.0, 'washed': 1.0, 'these': 2.0, 'beautifully': 1.0, 'arrived': 1.0, 'goes': 1.0, 'made': 2.0, 'and': 5.0, 'are': 1.0, 'won': 1.0, 'well': 1.0, 'will': 2.0, 'last': 1.0, 'sleepers': 1.0, 'he': 2.0, 't': 2.0, 'we': 2.0, 's': 1.0, 'longer': 1.0, '8': 1.0, 'though': 1.0, 'bedroom': 1.0, 'son': 1.0, 'still': 1.0, 'in': 2.0, 'all': 1.0, 'sleep': 1.0, 'to': 4.0, 'least': 1.0, 'our': 1.0, 'when': 1.0}
Word element => {'bought': 1.0, 'if': 1.0, 'read': 1.0, 'list': 1.0, 'on': 1.0, 'fabric': 1.0, 'tag': 1.0, 'fill': 1.0, 'false': 1.0, 'organic': 6.0, 'exterior': 2.0, 'item': 1.0, 'also': 1.0, 'as': 3.0, 'to': 2.0, 'embarrassed': 1.0, 'cotton': 6.0, 'be': 1.0, 've': 1.0, 'would': 1.0, 'this': 3.0, 'because': 2.0, 'does': 3.0, 'than': 1.0, 'better': 1.0, 'extremely': 1.0, 'is': 3.0, 'of': 2.0, 'batting': 1.0, 'quality': 2.0, 'an': 1.0, 'beginner': 1.0, 'processed': 1.0, 'at': 1.0, 'safe': 1.0, 'contain': 2.0, 'someone': 1.0, 'bear': 1.0, 'gets': 1.0, 'i': 4.0, 'products': 1.0, 'pesticide': 2.0, 'affordable': 1.0, 'making': 1.0, 'give': 1.0, 'not': 6.0, 'a': 4.0, 'residues': 2.0, 'however': 2.0, 'initially': 1.0, 'applaud': 1.0, 'that': 3.0, 'the': 7.0, 'in': 2.0, 'are': 1.0, 'product': 1.0, 'for': 2.0, 'polyester': 1.0, 'especially': 1.0, 'interior': 2.0, 'price': 1.0, 'seamstress': 1.0, 'looks': 1.0, 'it': 3.0, 'was': 2.0, 'look': 1.0, 'description': 1.0, 'and': 4.0, 'gift': 1.0, 'handmade': 1.0, 'which': 1.0, 'like': 1.0, 'hand': 1.0, 'charming': 1.0, 'poor': 1.0, 'kind': 1.0, 'representation': 1.0, 'way': 1.0, 'fact': 1.0, 'company': 1.0, 'my': 2.0, 'preschooler': 1.0, 'stitching': 1.0, 'kid': 1.0, 'says': 2.0, 'by': 2.0, 'meal': 1.0, 'done': 1.0, 'toys': 1.0}
Word element => {'still': 1.0, 'ours': 1.0, 'teething': 1.0, 'over': 1.0, 'nice': 1.0, 'new': 1.0, 'construction': 1.0, 'looks': 1.0, 'is': 2.0, 'buddie': 1.0, 'when': 1.0, 'quality': 1.0, 'and': 1.0, 'used': 1.0, 'be': 1.0, 'to': 1.0, 'kid': 1.0, 'can': 1.0, 'plus': 1.0, 'a': 1.0, 'as': 1.0, 'very': 1.0, 'boo': 2.0, 'it': 1.0, 'terry': 1.0, 'easy': 1.0, 'wash': 1.0}
Word element => {'looking': 1.0, 'silly': 1.0, 'kinda': 1.0, 'just': 1.0, 'be': 1.0, 'should': 1.0, 'that': 1.0, 'other': 1.0, 'thing': 1.0, 'like': 2.0, 'get': 2.0, 'and': 1.0, 'with': 1.0, 'it': 6.0, 'this': 1.0, 'stripes': 1.0, 'photograph': 1.0, 'more': 2.0, 'the': 1.0, 'look': 1.0, 'makes': 1.0, 'they': 1.0, 'a': 2.0, 'tiger': 1.0, 'than': 2.0, 'does': 1.0, 'when': 2.0, 'bear': 1.0, 'way': 1.0, 'you': 2.0, 'fine': 1.0, 'looks': 1.0, 'is': 1.0, 'longer': 1.0}
Word element => {'long': 1.0, 'for': 1.0, 'cold': 1.0, 'stay': 1.0, 'fridge': 1.0, 'you': 1.0, 'can': 1.0, 'it': 3.0, 'doesn': 1.0, 'but': 2.0, 'use': 1.0, 'likes': 1.0, 'teether': 1.0, 'baby': 1.0, 'toy': 1.0, 'little': 1.0, 'off': 1.0, 'the': 4.0, 't': 2.0, 'tiger': 2.0, 'cute': 1.0, 'i': 2.0, 'to': 1.0, 'had': 1.0, 'separately': 1.0, 'wash': 1.0, 'in': 1.0, 'cut': 1.0, 'and': 2.0, 'ring': 1.0, 'cool': 1.0}
Word element => {'baby': 1.0, 'animal': 1.0, 'to': 1.0, 'stuffed': 1.0, 'safe': 1.0, 'a': 1.0, 'version': 1.0, 's': 1.0, 'enjoys': 1.0, 'it': 2.0, 'like': 1.0, 'on': 1.0, 'guy': 1.0, 'little': 1.0, 'nibble': 1.0, 'my': 1.0, 'whether': 1.0, 'much': 1.0, 'being': 1.0, 'green': 1.0, 'used': 1.0, 'legs': 1.0, 'your': 1.0, 'isn': 1.0, 'as': 2.0, 'ring': 1.0, 'teether': 2.0, 'more': 1.0, 'currently': 1.0, 't': 1.0, 'the': 5.0, 'cute': 1.0, 'tiger': 2.0, 'so': 2.0, 'order': 1.0, 'of': 2.0, 'not': 1.0, 'just': 1.0, 'but': 1.0, 'will': 1.0, 'an': 1.0, 'placed': 1.0, 'th': 1.0, 'for': 2.0, 'bear': 1.0, 'sure': 1.0}
Word element => {'wash': 1.0, 'off': 1.0, 'ring': 1.0, 'the': 2.0, 'take': 1.0, 'couldnt': 1.0, 'that': 1.0, 'hold': 1.0, 'to': 1.0, 'was': 1.0, 'can': 1.0, 'and': 1.0, 'especially': 1.0, 'chew': 1.0, 'just': 1.0, 'toy': 2.0, 'it': 2.0, 'this': 1.0, 'likes': 1.0, 'by': 1.0, 'daughter': 1.0, 'really': 1.0, 'herself': 1.0, 'my': 1.0, 'on': 1.0, 'i': 2.0, 'since': 1.0, 'a': 1.0, 'bit': 1.0, 'she': 1.0, 'disapointed': 1.0}
Word element => {'bath': 1.0, 'taking': 1.0, 'in': 1.0, 'interested': 1.0, 'not': 1.0, 'so': 1.0, 'the': 2.0, 'nipple': 1.0, 'these': 1.0, 'here': 1.0, '72': 1.0, 'hours': 2.0, 'directions': 1.0, 'surrounding': 1.0, 'tissue': 1.0, 'reusable': 1.0, 'pros': 1.0, 'instantly': 1.0, 'every': 3.0, 'amazing': 1.0, 'they': 1.0, 're': 1.0, 'cooling': 1.0, '1': 1.0, 'feel': 1.0, 'nice': 1.0, 'am': 1.0, 'hydrogels': 1.0, 'you': 1.0, 'large': 1.0, 'boob': 1.0, 'covering': 1.0, 'new': 1.0, 'state': 1.0, 'warm': 1.0, 'must': 1.0, 'wash': 1.0, 'breast': 1.0, 'i': 1.0, '4': 1.0, 'drawback': 1.0, 'with': 2.0, 'mama': 1.0, 'water': 1.0, 'before': 2.0, 'feeding': 2.0, 's': 2.0, 'a': 3.0, 'as': 1.0, 'sleep': 1.0, 'for': 1.0, 'deprived': 1.0, 'baby': 1.0, 'and': 3.0, 'starving': 1.0, 'who': 1.0}
Word element => {'buy': 1.0, 'likely': 1.0, 'would': 1.0, 'matters': 1.0, 'don': 1.0, 'a': 1.0, 'they': 2.0, 'sad': 1.0, 'again': 1.0, 'are': 1.0, 't': 1.0, 'these': 1.0, 'more': 1.0, 'pads': 1.0, 'last': 1.0, 'little': 1.0, 'and': 2.0, 'wished': 1.0, 'to': 1.0, 'amazing': 1.0, 'came': 1.0, 'what': 1.0, 'package': 1.0, 'will': 1.0, 'work': 1.0, 'though': 1.0, 'which': 1.0, 'really': 1.0, 'longer': 1.0, 'is': 1.0}
Word element => {'picture': 1.0, 'just': 1.0, 'box': 1.0, 'you': 1.0, 'gels': 2.0, '4': 1.0, 'of': 2.0, 'boxes': 1.0, 'to': 1.0, 'was': 1.0, '1': 1.0, 'get': 1.0, 'getting': 1.0, 'and': 1.0, 'love': 1.0, 'can': 1.0, 'fabric': 1.0, 'amazing': 1.0, 'once': 1.0, 'product': 1.0, 'be': 2.0, 'misleading': 1.0, 'only': 1.0, 'therefore': 1.0, 'soothies': 1.0, 'it': 1.0, 'this': 2.0, 'is': 2.0, 'feels': 1.0, 'aware': 1.0, '2': 3.0, 'great': 1.0, 'the': 2.0, 'believed': 1.0, 'i': 3.0, 'but': 1.0, 'warned': 1.0, 'backing': 1.0, 'refrigeratedbe': 1.0, 'a': 1.0, 'individual': 1.0, 'though': 1.0, 'deceiving': 1.0, 'posting': 1.0, 'little': 1.0}
Word element => {'my': 1.0, 'saved': 1.0, 'wish': 1.0, 'anything': 1.0, 'for': 1.0, 'care': 1.0, 'first': 1.0, 'had': 1.0, 'to': 2.0, 'much': 1.0, 'these': 1.0, 't': 2.0, 'money': 1.0, 'warmed': 1.0, 'didn': 2.0, 'but': 1.0, 'once': 1.0, 'at': 1.0, 'were': 1.0, 'really': 2.0, 'soothing': 1.0, 'i': 2.0, 'they': 3.0, 'your': 1.0, 'of': 1.0, 'up': 1.0, 'body': 1.0, 'seem': 1.0, 'temperature': 1.0, 'do': 1.0}
Word element => {'of': 1.0, 'waste': 1.0, 'get': 1.0, 'price': 1.0, 'the': 1.0, 'and': 1.0, 'with': 1.0, 'do': 1.0, 'only': 1.0, 'what': 1.0, 'lansinoh': 1.0, 'money': 1.0, 'but': 1.0, 'from': 2.0, 'stick': 1.0, 'little': 1.0, 'very': 1.0, 'i': 4.0, 'so': 1.0, 'how': 1.0, 'it': 2.0, 'remove': 1.0, 'outrageous': 1.0, 'stay': 1.0, 'not': 2.0, 'all': 1.0, 'to': 3.0, 'product': 2.0, 'love': 1.0, 'for': 2.0, 'total': 1.0, 'at': 1.0, 'since': 1.0, 'see': 1.0, 'these': 2.0, 't': 1.0, 'every': 1.0, 'loved': 1.0, 'have': 1.0, 'other': 1.0, 'cold': 1.0, 'maybe': 1.0, '5': 1.0, 'don': 1.0, 'slowly': 1.0, 'they': 2.0, 'impressed': 2.0, 'your': 1.0, 'expecting': 1.0, 'was': 1.0, 'minutes': 1.0, 'soothe': 1.0, 'sore': 2.0, 'nipples': 2.0, 'you': 2.0, 'am': 1.0, 'when': 2.0, 'is': 2.0, 'this': 1.0, 'painful': 1.0, 'them': 1.0, 'boob': 1.0, 'if': 1.0}
Word element => {'issues': 1.0, 'little': 1.0, 'still': 1.0, 'm': 1.0, 'months': 1.0, 'buy': 1.0, 'use': 1.0, 'between': 1.0, 'relatively': 1.0, 'about': 1.0, 'had': 1.0, 'thought': 1.0, 'blistered': 1.0, 'of': 2.0, 'completely': 1.0, 'up': 1.0, 'so': 1.0, 'after': 1.0, 'sore': 1.0, 'nipples': 2.0, 'were': 1.0, 'throw': 1.0, 'was': 3.0, 'first': 1.0, 'soothies': 1.0, 'towel': 1.0, 'out': 1.0, 'packs': 1.0, 'week': 1.0, 'girl': 1.0, 'ready': 1.0, 'in': 1.0, 'daughter': 1.0, 'and': 4.0, 'nursing': 2.0, 'have': 1.0, 'go': 1.0, 't': 1.0, 'my': 4.0, 'two': 1.0, 'i': 8.0, 'pass': 1.0, 'later': 1.0, 'from': 1.0, 'pain': 1.0, 'your': 1.0, 'on': 1.0, 'good': 1.0, 'clean': 1.0, 'her': 1.0, 'latching': 1.0, 'would': 1.0, 'given': 1.0, '10': 1.0, 'rinsed': 1.0, 'if': 1.0, 'recommended': 1.0, 'keep': 1.0, 'friend': 1.0, 'hadn': 1.0, 'only': 1.0, 'try': 1.0, 'just': 1.0, 'without': 1.0, 'the': 4.0, 'gel': 1.0, 'remember': 1.0, 'any': 1.0, 'to': 5.0, 'pads': 1.0}
Word element => {'buyer': 1.0, 'from': 2.0, 'beware': 1.0, 'again': 1.0, 'love': 1.0, 'shop': 1.0, 'will': 2.0, 'sellers': 1.0, 'caution': 1.0, 'phone': 1.0, 'quite': 1.0, 'top': 1.0, 'which': 1.0, 'oz': 1.0, '4': 1.0, 'knocked': 1.0, 'initially': 1.0, 'right': 1.0, 'read': 1.0, 'yep': 1.0, 'did': 1.0, 'all': 2.0, 'helpful': 1.0, 'absurd': 1.0, 'misunderstanding': 1.0, 'think': 1.0, 'don': 1.0, 'cannot': 1.0, 'initial': 1.0, 'honor': 1.0, 'by': 1.0, 'down': 1.0, 'stand': 1.0, 'costs': 1.0, 'missing': 1.0, 'fault': 1.0, 'policies': 1.0, 's': 2.0, 'reading': 1.0, 'going': 1.0, 'would': 1.0, 'rate': 1.0, 'checking': 1.0, 'upon': 2.0, 'didn': 1.0, 'stated': 1.0, 'h': 1.0, 'missed': 1.0, 'large': 1.0, 'a': 4.0, 'was': 1.0, 'increase': 1.0, 'out': 2.0, '4oz': 1.0, 'closely': 1.0, 'check': 2.0, 'caught': 1.0, 'credit': 2.0, 'have': 2.0, 'should': 2.0, 'misleading': 1.0, 'as': 1.0, 'hawaii': 1.0, 'amazon': 2.0, 'prime': 4.0, 'bring': 1.0, 'still': 1.0, 'if': 1.0, 'that': 4.0, 'breast': 1.0, 'painassociated': 1.0, 'item': 5.0, '10': 1.0, 'for': 5.0, 'not': 3.0, 'individual': 1.0, 'wrong': 1.0, 'excellent': 1.0, 'responsibility': 1.0, 'so': 2.0, 'order': 3.0, 'loved': 1.0, 'contacted': 1.0, 'took': 2.0, 'and': 7.0, '25': 2.0, 'their': 9.0, 'description': 1.0, 'now': 1.0, 'seller': 2.0, 'claim': 1.0, 'or': 1.0, 'were': 2.0, 'recommend': 2.0, 'last': 1.0, 'me': 4.0, 'my': 4.0, 'wanted': 1.0, 'it': 7.0, 'with': 5.0, 'medical': 4.0, 'continue': 1.0, '15': 1.0, 'nipple': 1.0, 'charged': 2.0, 'more': 1.0, 'completely': 1.0, 'these': 1.0, 'never': 1.0, 'some': 1.0, 'does': 1.0, 'relieving': 1.0, 'used': 1.0, 'put': 1.0, 'on': 4.0, 'they': 10.0, 'next': 1.0, 'them': 3.0, 'baby': 1.0, 'contacting': 1.0, 'price': 2.0, 'child': 1.0, 'i': 11.0, 'to': 11.0, 'your': 3.0, 'any': 2.0, 'actual': 3.0, 'is': 3.0, 'at': 3.0, 'aware': 1.0, 'control': 1.0, 'day': 1.0, 'seem': 1.0, 'box': 2.0, 'shipping': 8.0, 'reimburse': 1.0, 'pads': 1.0, 'place': 1.0, 'due': 1.0, 'consumer': 1.0, 'represented': 1.0, 'are': 3.0, 'first': 2.0, 'own': 1.0, 'yes': 1.0, 'off': 2.0, 'picture': 1.0, 'represents': 1.0, 'there': 1.0, 'lastly': 1.0, '36': 1.0, 'individually': 1.0, 'ship': 1.0, 'says': 2.0, 'just': 1.0, 'you': 5.0, 'when': 2.0, 'get': 2.0, 'purchase': 2.0, 'company': 1.0, 'only': 1.0, '2': 2.0, 'print': 1.0, 'but': 2.0, 'however': 3.0, 'know': 1.0, 'wrapped': 1.0, 'be': 1.0, 'rude': 1.0, 'attention': 1.0, 'the': 13.0, 'of': 6.0, 'fine': 1.0, 'difference': 2.0, 'second': 1.0, 'about': 2.0, 'no': 1.0, 'in': 3.0, 'feeding': 1.0, 'although': 1.0, 'word': 2.0, 'state': 1.0, 'placing': 1.0, 'want': 1.0, 'free': 3.0, 'this': 3.0, 'highly': 1.0, 'page': 4.0, 'live': 1.0, 't': 2.0, 'alaska': 1.0}
Word element => {'comes': 1.0, 'not': 1.0, 'unpleasant': 1.0, 'still': 1.0, 'recommend': 1.0, 'was': 1.0, 'it': 1.0, 'were': 1.0, 'if': 1.0, 'home': 1.0, 'my': 3.0, 'in': 3.0, 'saying': 1.0, 've': 1.0, 'would': 2.0, 'that': 1.0, 'breastfeeding': 1.0, 'these': 4.0, 'the': 2.0, 't': 1.0, 'i': 6.0, 'saved': 1.0, 'read': 1.0, 'little': 1.0, 'messy': 2.0, 'just': 1.0, 'life': 1.0, 'pads': 2.0, 'to': 2.0, 'had': 2.0, 'first': 1.0, 'this': 1.0, 'cotton': 1.0, 'for': 1.0, 'week': 1.0, 'of': 1.0, 'leak': 1.0, 'so': 1.0, 'however': 1.0, 'mortgaged': 1.0, 'after': 2.0, 'soothies': 1.0, 'wear': 1.0, 'recommending': 1.0, 'soothing': 1.0, 'came': 1.0, 'got': 1.0, 'milk': 2.0, 'and': 3.0, 'over': 1.0, 'don': 1.0, 'much': 1.0, 'they': 1.0, 'reviews': 1.0, 'your': 1.0, 'think': 1.0, 'absorbent': 1.0}
Word element => {'nipples': 1.0, 'sore': 1.0, 'my': 1.0, 's': 1.0, 'it': 2.0, 'chews': 1.0, 'like': 2.0, 'and': 1.0, 'on': 1.0, 'feels': 1.0, 'they': 1.0, 'your': 2.0, 'if': 1.0, 'touch': 1.0, 'i': 1.0, 'buy': 1.0, 'a': 1.0, 'chew': 1.0, 'baby': 1.0, 'toy': 1.0, 'put': 1.0, 'in': 1.0, 'nipple': 1.0, 'these': 2.0, 'the': 1.0, 'fridge': 1.0, 'when': 1.0, 'paradise': 1.0}
Word element => {'lo': 1.0, 'my': 1.0, 'weeks': 1.0, 'gift': 1.0, 'bought': 1.0, 'a': 1.0, 'as': 1.0, 'and': 1.0, 'they': 1.0, 'time': 1.0, 'nursing': 1.0, 'have': 1.0, 'of': 1.0, 'hospital': 1.0, 'baby': 1.0, 'few': 1.0, 'i': 1.0, 'these': 1.0, 'the': 1.0, 'great': 1.0, 'to': 1.0, 'shower': 1.0, 'this': 1.0, 'first': 1.0, 'in': 1.0, 'for': 1.0, 'were': 1.0, 'that': 1.0}
Word element => {'coolness': 1.0, 'that': 1.0, 'putting': 1.0, 'general': 1.0, 'lasted': 1.0, 'they': 1.0, 'again': 1.0, 'trays': 1.0, 'way': 1.0, 'return': 1.0, 'used': 1.0, 'breasts': 1.0, 'for': 1.0, 'get': 1.0, 'and': 5.0, 'me': 1.0, 'weeks': 2.0, '3': 1.0, 'felt': 1.0, 'it': 2.0, 'the': 5.0, '2': 2.0, 'about': 2.0, 'my': 2.0, 'exclusively': 1.0, 'unable': 1.0, 'morning': 1.0, 'pads': 1.0, 'to': 4.0, 'recommend': 2.0, 'store': 1.0, 'was': 1.0, 'latch': 1.0, 'per': 1.0, 'through': 2.0, 'took': 1.0, 'pumped': 1.0, 'would': 2.0, 'this': 1.0, 'pain': 1.0, 'pair': 1.0, 'of': 1.0, 'pumping': 1.0, 'at': 1.0, 'quickly': 1.0, 'little': 2.0, 'amazing': 1.0, 'highly': 1.0, 'every': 1.0, 'really': 2.0, 'i': 4.0, 'two': 1.0, 'saved': 1.0, 'after': 1.0, 'their': 1.0, 'hours': 1.0, 'wear': 1.0, 'fridge': 3.0, 'baby': 1.0, 'night': 1.0, 'them': 6.0, 'ouch': 1.0, 'these': 1.0, 'storing': 1.0, 'in': 5.0, 'rinse': 1.0}
Word element => {'t': 1.0, 'is': 1.0, 'skin': 1.0, 'of': 1.0, '5': 1.0, 'just': 1.0, 'brought': 1.0, 'immediate': 1.0, 'the': 3.0, 'were': 1.0, 'thought': 2.0, 'they': 1.0, 'tears': 1.0, 'i': 6.0, 'adhesive': 1.0, 'and': 3.0, 'relief': 2.0, 'wouldn': 1.0, 'even': 1.0, 'bought': 1.0, 'it': 4.0, 'but': 1.0, 'recommend': 1.0, 'minutes': 1.0, 'later': 1.0, 'strong': 1.0, 'put': 1.0, 'on': 2.0, 'pads': 1.0, 'to': 5.0, 'for': 1.0, 'then': 1.0, 'great': 1.0, 'feel': 1.0, 'try': 1.0, 'some': 1.0, 'started': 1.0, 'them': 5.0, 'hurt': 1.0, 'again': 1.0, 'would': 1.0, 'pretty': 1.0, 'take': 2.0, 'off': 3.0, 'hoping': 1.0, 'in': 1.0, 'soreness': 1.0, 'fridge': 1.0, 'not': 1.0, 'reapply': 1.0, 'really': 1.0, 'my': 2.0, 'pull': 1.0, 'this': 1.0, 'eyes': 1.0, 'anyone': 1.0, 'trying': 1.0}
Word element => {'inevitable': 1.0, 'through': 1.0, 'fantastic': 1.0, 'or': 1.0, 'baby': 1.0, 'over': 1.0, 'amount': 1.0, 'feeding': 1.0, 'after': 1.0, 'nipples': 1.0, 'performance': 1.0, 'their': 1.0, 'it': 1.0, 'applying': 1.0, 'used': 1.0, '3': 1.0, 'sooner': 1.0, 'stop': 1.0, 'get': 3.0, 'one': 1.0, 'in': 3.0, 'taste': 1.0, 'when': 1.0, 'that': 1.0, 'mind': 1.0, 'both': 1.0, 'but': 1.0, 'money': 1.0, 'weeks': 1.0, 'lay': 1.0, 'make': 1.0, 'help': 2.0, 'few': 3.0, 'wet': 3.0, 'milk': 1.0, 'just': 1.0, 'experience': 1.0, 'breastfeeding': 2.0, 'into': 1.0, 'a': 5.0, 'moms': 1.0, 'soothies': 4.0, 'convinced': 1.0, 'better': 1.0, 'hours': 1.0, 'wouldn': 1.0, 'fourths': 1.0, 'with': 3.0, 'is': 2.0, 'worst': 1.0, 'nursing': 2.0, 'water': 1.0, 'up': 2.0, 'don': 2.0, 'working': 1.0, 'first': 2.0, 'are': 3.0, 'associated': 1.0, 'even': 1.0, 'took': 1.0, '4': 1.0, 'triangular': 1.0, 'and': 7.0, 'anyone': 1.0, 'be': 2.0, 'you': 8.0, 'real': 1.0, 'pain': 4.0, 'medela': 1.0, 'was': 3.0, 'soothe': 1.0, 'your': 1.0, 'any': 2.0, 'i': 6.0, 'little': 1.0, 'two': 1.0, 'comes': 1.0, 'these': 6.0, 'of': 4.0, 'the': 9.0, 'to': 5.0, 'job': 1.0, 'intense': 1.0, 'class': 1.0, 'nipple': 1.0, 'let': 1.0, 'excruciating': 2.0, 'wrong': 1.0, 'never': 3.0, 'hydrogels': 1.0, 'reapply': 1.0, 'different': 2.0, 'difference': 1.0, 'then': 1.0, 'endure': 1.0, 'fabric': 1.0, 'for': 2.0, 't': 4.0, 'fit': 1.0, 'my': 2.0, 'reasons': 1.0, 'running': 1.0, 'have': 2.0, 'back': 1.0, 'can': 3.0, 'so': 2.0, 'them': 2.0, 'sticky': 1.0, 'side': 1.0, 'remove': 1.0, 'days': 1.0, 'tell': 1.0, 'saving': 1.0, 'lanolin': 1.0, 'while': 2.0, 'peel': 1.0, 'nurse': 1.0, 'second': 1.0, 'listen': 1.0, 'seemed': 3.0, 'washed': 1.0, '1': 1.0, 'about': 1.0, '12': 1.0, 'tried': 1.0, 'off': 1.0, 'apply': 1.0, 'helpful': 1.0, 'hints': 1.0, 'they': 6.0, 'cut': 1.0, 'protest': 1.0, 'will': 2.0, 'if': 2.0, 'still': 1.0, 'wearing': 1.0, '2': 1.0, 'begin': 1.0, 'do': 1.0, 'doesn': 1.0, 'lots': 1.0, 'before': 3.0}
Word element => {'defeats': 1.0, 'are': 1.0, 'nipples': 1.0, 'sore': 1.0, 'which': 1.0, 'soothed': 1.0, 'have': 1.0, 'them': 1.0, 'when': 1.0, 'being': 1.0, 'while': 2.0, 'but': 2.0, 'off': 1.0, 'good': 1.0, 'really': 1.0, 'felt': 1.0, 'the': 3.0, 'these': 1.0, 'they': 3.0, 'painful': 2.0, 'disappointed': 1.0, 'stuck': 1.0, 'i': 1.0, 'took': 1.0, 'whole': 1.0, 'purpose': 1.0, 'was': 1.0, 'to': 4.0, 'this': 1.0, 'skin': 1.0, 'do': 1.0, 'and': 2.0, 'very': 2.0, 'that': 1.0, 'something': 1.0, 'were': 1.0, 'relieved': 1.0, 'point': 1.0, 'on': 2.0, 'remove': 2.0}
Word element => {'re': 1.0, 'they': 1.0, 'pairs': 1.0, 'on': 1.0, 'them': 1.0, 'a': 1.0, 'in': 1.0, 'savers': 1.0, 'fridge': 1.0, 'tho': 1.0, 'life': 1.0, 'are': 2.0, 'the': 2.0, 'these': 1.0, 'usable': 1.0, 'nipples': 1.0, 'throw': 1.0, 'ahhhhh': 1.0, 'and': 1.0, 'relief': 1.0, 'oh': 1.0, 'put': 1.0, 'several': 1.0, 'sore': 1.0, 'when': 1.0, 'cool': 1.0, 'bought': 1.0, 'what': 1.0}
Word element => {'case': 1.0, 'hand': 1.0, 'techniques': 1.0, 'good': 1.0, 'established': 1.0, 'now': 1.0, 'have': 3.0, 'a': 1.0, 't': 2.0, 'kind': 1.0, 'sure': 1.0, 'if': 3.0, 'those': 1.0, 'not': 1.0, 'trapping': 1.0, 'pads': 2.0, 'to': 2.0, 'sore': 2.0, 'early': 1.0, 'infection': 1.0, 'cool': 1.0, 'gel': 1.0, 'making': 1.0, 'cracked': 1.0, 'great': 1.0, 'first': 2.0, 'birth': 1.0, 'were': 2.0, 'latching': 1.0, 'bag': 1.0, 'the': 5.0, 'of': 1.0, 'hospital': 1.0, 'packed': 1.0, 'my': 7.0, 'hadn': 1.0, 'in': 5.0, 'daughter': 2.0, 'given': 1.0, 'for': 1.0, 'these': 4.0, 'some': 1.0, 'i': 7.0, 'giving': 1.0, 'and': 6.0, 'was': 2.0, 'huge': 1.0, 'healing': 1.0, 'at': 1.0, 'thankful': 1.0, 'baby': 1.0, 'engorged': 1.0, 'always': 1.0, 'them': 2.0, 'trouble': 1.0, 'before': 1.0, 'on': 2.0, 'help': 2.0, 'anymore': 1.0, 'make': 1.0, 'your': 1.0, 'relief': 1.0, 'up': 1.0, 'don': 1.0, 'nipples': 3.0, 'only': 2.0, 'risk': 1.0, 'much': 1.0, 'keep': 1.0, 'did': 1.0, 'with': 1.0, 'but': 2.0, 'can': 1.0, 'they': 2.0, 'between': 1.0, 'also': 1.0, 'when': 1.0, 'you': 3.0, 'had': 2.0, 'sores': 1.0, 'bacteria': 1.0, 'might': 1.0, 'came': 1.0, 're': 2.0, 'pad': 1.0, 'even': 1.0, 'process': 1.0, 'better': 1.0, 'fridge': 1.0, 'open': 1.0, 'milk': 1.0, 'just': 2.0, 'days': 1.0, 'cracks': 1.0, 'by': 1.0, 'gently': 1.0, 'after': 1.0, 'each': 1.0, 'wash': 1.0, 'use': 2.0, 'that': 2.0, 'breast': 1.0, 'or': 1.0, 'breastfeeding': 2.0, 'prolonging': 1.0}
Word element => {'value': 1.0, 'great': 1.0, 'makes': 1.0, 'well': 1.0, 'as': 1.0, 'days': 1.0, 'several': 1.0, 'better': 1.0, 'being': 1.0, 'things': 1.0, 'the': 2.0, 'these': 1.0, 'my': 1.0, 'feeding': 1.0, 'kid': 1.0, 'from': 1.0, 'wife': 1.0, 'you': 1.0, 'whatnot': 1.0, 'had': 1.0, 'breast': 1.0, 'on': 2.0, 'uses': 1.0, 'early': 1.0, 'two': 1.0, 'saved': 1.0, 'a': 2.0, 'lots': 1.0, 'toss': 1.0, 'and': 3.0, 'tough': 1.0, 'rotation': 1.0, 'rather': 1.0, 'of': 2.0, 'it': 1.0, 'with': 1.0, 'skin': 1.0, 'time': 1.0, 'between': 1.0, 'they': 2.0, 'last': 1.0, 'her': 2.0, 'even': 1.0, 'overzealous': 1.0, 'sanity': 1.0, 'them': 2.0, 'in': 1.0, 'for': 1.0, 'applications': 1.0, 'keep': 1.0, 'which': 1.0, 'hand': 1.0, 'sets': 1.0, 'sooth': 1.0, 'freezer': 1.0, 'easy': 1.0, 'bruises': 1.0, 'll': 1.0}
Word element => {'have': 1.0, 'nursing': 1.0, 'of': 1.0, 'my': 1.0, 'are': 1.0, 'one': 1.0, 'uses': 1.0, 'between': 1.0, 'product': 1.0, 'in': 1.0, 'awesome': 1.0, 'for': 1.0, 'must': 1.0, 'cool': 1.0, 'sore': 1.0, 'love': 1.0, 'best': 1.0, 'that': 1.0, 'these': 1.0, 'nipples': 1.0, 'they': 1.0, 'get': 1.0}
Word element => {'with': 1.0, 'then': 1.0, '1000': 1.0, 'it': 1.0, 'and': 1.0, 'best': 1.0, 'was': 1.0, 'thing': 1.0, 'or': 1.0, 'i': 2.0, 'nipple': 1.0, 'so': 1.0, 'ever': 1.0, 'times': 1.0, 'bought': 1.0, 'better': 1.0, 'these': 1.0, 'used': 1.0, 'week': 1.0, 'cream': 1.0, 'for': 1.0, 'first': 1.0, 'the': 2.0}
Word element => {'about': 1.0, 'baby': 1.0, 'nurse': 1.0, 'don': 1.0, 'just': 1.0, 'nursing': 2.0, 'must': 1.0, 'have': 2.0, 'moms': 1.0, 'and': 3.0, 'me': 1.0, 'matter': 1.0, 'these': 1.0, 'week': 1.0, 'bit': 1.0, 'boy': 1.0, 'time': 2.0, 'they': 3.0, 'what': 1.0, 'long': 1.0, 't': 1.0, 'a': 6.0, 'old': 1.0, 'lifesaver': 1.0, 'm': 1.0, 'mom': 1.0, 'thinking': 1.0, 'i': 4.0, 'two': 2.0, 'to': 1.0, 'was': 1.0, 'first': 1.0, 'would': 1.0, 'him': 2.0, 'feeding': 1.0, 'dreadful': 1.0, 'use': 1.0, 'every': 1.0, 'wonders': 1.0, 'after': 1.0, 'worked': 1.0, 'expensive': 1.0, 'for': 2.0, 'cry': 1.0, 'in': 1.0, 'of': 1.0, 'definitely': 1.0, 'days': 1.0, 're': 1.0, 'granted': 1.0, 'last': 1.0, 'are': 1.0}
Word element => {'applying': 1.0, 'before': 1.0, 'fridge': 1.0, 'really': 1.0, 'nipples': 1.0, 'they': 1.0, 'my': 2.0, 'are': 2.0, 'these': 1.0, 'the': 1.0, 'get': 1.0, 'and': 1.0, 'nursing': 1.0, 'am': 1.0, 'i': 1.0, 'when': 2.0, 'sore': 1.0, 'go': 1.0, 'them': 2.0, 'to': 1.0, 'product': 1.0, 'especially': 1.0, 'wonderful': 1.0, 'you': 1.0, 'put': 1.0, 'in': 1.0}
Word element => {'quite': 1.0, 'take': 1.0, 'cling': 1.0, 'sometimes': 1.0, 'breastfeed': 1.0, 're': 1.0, 'off': 2.0, 'don': 1.0, 'things': 1.0, 'residue': 1.0, 'only': 1.0, 'soothing': 1.0, 'more': 1.0, 'even': 1.0, 'refrigerated': 1.0, 'but': 1.0, 'can': 3.0, 'reuse': 1.0, 'clean': 2.0, 'are': 3.0, 'they': 3.0, 'this': 1.0, 'painful': 1.0, 'pain': 1.0, 'in': 1.0, 'shirt': 1.0, 'recommend': 1.0, 'bra': 1.0, 'hospital': 1.0, 'of': 1.0, 'some': 1.0, 'makes': 2.0, 'plus': 1.0, 'issues': 2.0, 'has': 1.0, 'well': 1.0, 't': 1.0, 'a': 5.0, 'tie': 1.0, 'i': 3.0, 'trying': 1.0, 'be': 2.0, 'putting': 1.0, 'new': 1.0, 'like': 1.0, 'which': 2.0, 'instant': 1.0, 'being': 2.0, 'very': 2.0, 'to': 6.0, 'as': 2.0, 'when': 1.0, 'you': 3.0, 'gives': 1.0, 'or': 1.0, 'latch': 1.0, 'and': 5.0, 'minor': 1.0, 'those': 1.0, 'me': 3.0, 'made': 1.0, 'baby': 1.0, 'them': 3.0, 'have': 1.0, 'small': 1.0, 'with': 1.0, 'wear': 1.0, 'soothies': 1.0, 'it': 1.0, 'having': 1.0, 'nipples': 2.0, 'sore': 1.0, 'tongue': 1.0, 'at': 1.0, 'thankfully': 1.0, 'without': 1.0, 'the': 5.0, 'highly': 1.0, 'nurses': 1.0, 'that': 2.0, 'breastfeeding': 1.0, 'gave': 1.0, 'box': 1.0, 'before': 2.0, 'easy': 1.0, 'left': 1.0, 'on': 1.0, 'relief': 1.0, 'still': 1.0, 'possible': 1.0, 'product': 1.0, 'for': 2.0, 'actually': 1.0}
Word element => {'sore': 1.0, 'really': 1.0, 'overpriced': 1.0, 'were': 1.0, 'in': 1.0, 'honestly': 1.0, 'what': 1.0, 'being': 1.0, 'disposable': 1.0, 'for': 1.0, 'and': 1.0, 'do': 1.0, 'the': 3.0, 're': 1.0, 'my': 1.0, 'first': 1.0, 'only': 1.0, 'they': 4.0, 'time': 1.0, 'worth': 1.0, 'price': 1.0, 'was': 3.0, 'say': 1.0, 'milk': 1.0, 'but': 1.0, 'week': 1.0, 'coming': 1.0, 'when': 1.0}
Word element => {'it': 1.0, 'love': 1.0, 'between': 1.0, 'relax': 1.0, 'the': 1.0, 'are': 1.0, 'fridge': 1.0, 'offer': 1.0, 'abused': 1.0, 'these': 1.0, 'nipples': 1.0, 'amazing': 1.0, 'to': 2.0, 'tender': 1.0, 'and': 1.0, 'relief': 1.0, 'feedings': 1.0, 'put': 1.0, 'in': 1.0}
Word element => {'highly': 1.0, 'nursing': 1.0, 'after': 1.0, 'looked': 1.0, 'always': 1.0, 'forward': 1.0, 'these': 1.0, 'have': 1.0, 'are': 1.0, 'must': 1.0, 'recommend': 1.0, 'of': 1.0, 'breastfeeding': 1.0, 'for': 1.0, 'to': 1.0, 'those': 1.0, 'them': 1.0, 'using': 1.0, 'a': 1.0, 'early': 1.0, 'weeks': 1.0}
Word element => {'so': 1.0, 'daughter': 1.0, 'happy': 1.0, 'my': 1.0, 'and': 1.0, 'receive': 1.0, 'together': 1.0, 'easy': 1.0, 'to': 2.0, 'was': 4.0, 'thing': 1.0, 'would': 1.0, 'baby': 1.0, 'fault': 1.0, 'that': 2.0, 'came': 1.0, 'the': 3.0, 'for': 1.0, 'in': 2.0, 'time': 1.0, 'arrived': 1.0, 'put': 1.0, 'stroller': 2.0, 'box': 1.0, 'ups': 1.0, 'a': 2.0, 'good': 1.0, 'shower': 1.0, 'this': 1.0, 'it': 2.0, 'bit': 1.0, 'smashed': 1.0, 'be': 1.0, 's': 1.0}
Word element => {'into': 1.0, 'sacrificed': 1.0, 'feel': 1.0, 'didn': 1.0, 'use': 1.0, 'especially': 1.0, 're': 2.0, 'happy': 2.0, 'something': 1.0, 'throw': 1.0, 'tend': 1.0, 'sunlight': 1.0, 'spot': 1.0, 'little': 1.0, 'annoying': 1.0, 'ends': 1.0, 'view': 1.0, 'real': 1.0, 'design': 1.0, 'window': 2.0, 'viewing': 1.0, 'plastic': 1.0, 'so': 2.0, 'full': 1.0, 'options': 1.0, 'some': 1.0, 'never': 1.0, 'sexy': 1.0, 'granted': 1.0, 'sunny': 1.0, 'has': 3.0, 'budget': 1.0, 'down': 2.0, 've': 2.0, 'unfold': 1.0, 'yet': 1.0, 'car': 5.0, 'definitely': 2.0, 'agreed': 1.0, 'spend': 1.0, 'think': 1.0, 'liteway': 1.0, 'standard': 1.0, 'top': 1.0, 'time': 1.0, 'not': 1.0, 'different': 1.0, 'at': 2.0, 'is': 10.0, 'solution': 1.0, 'handle': 2.0, 'in': 6.0, 'families': 1.0, 'really': 1.0, 'been': 1.0, 'that': 5.0, 'product': 1.0, 'shine': 1.0, 'stroller': 15.0, 'shopping': 1.0, 'our': 3.0, '700': 1.0, 'umbrella': 1.0, 'gimmicks': 1.0, 's': 2.0, 'expensive': 1.0, 'thus': 1.0, 'for': 5.0, 'will': 1.0, 'unstable': 1.0, 'gear': 1.0, 'regarding': 1.0, 'two': 4.0, 'i': 8.0, 'buying': 1.0, 'being': 1.0, 'low': 1.0, 'mind': 2.0, 'graduate': 1.0, 'strollers': 2.0, 'baby': 4.0, 'your': 1.0, 'many': 1.0, 'same': 1.0, 'when': 7.0, 'fact': 1.0, 'what': 2.0, 'over': 2.0, 'weren': 1.0, 'with': 5.0, 'have': 1.0, 'found': 1.0, 'easy': 2.0, 'out': 4.0, 'made': 1.0, 'again': 1.0, 'which': 2.0, 'were': 2.0, 'as': 4.0, 'expected': 1.0, 'given': 1.0, 'town': 1.0, 'exclusive': 1.0, 'up': 2.0, 'diaper': 2.0, 'experienced': 1.0, 'least': 2.0, 'shock': 1.0, 't': 4.0, 'necessities': 2.0, 'we': 12.0, 'only': 1.0, 'then': 1.0, 'fold': 1.0, 'the': 21.0, 'fortune': 1.0, 'pregnant': 1.0, 'entire': 1.0, 'just': 1.0, 'and': 13.0, 'purchased': 1.0, 'husband': 1.0, 'more': 3.0, 'now': 1.0, 'upright': 1.0, 'affordable': 1.0, 'no': 3.0, 'miles': 1.0, 'end': 1.0, 'on': 7.0, 'girl': 1.0, 'remember': 1.0, 'mostly': 1.0, 'chicco': 5.0, 'comes': 2.0, 'weight': 1.0, 'cortina': 4.0, 'serves': 1.0, 'system': 2.0, 'months': 1.0, '5': 1.0, 'one': 2.0, 'tiguan': 1.0, 'best': 1.0, 'prepared': 1.0, 'but': 3.0, 'my': 1.0, 'are': 2.0, 'far': 1.0, 'quality': 2.0, 'certainly': 1.0, 'mesh': 1.0, 'like': 3.0, 'pleased': 1.0, 'graco': 1.0, 'products': 1.0, 'borrowed': 1.0, 'click': 1.0, 'safety': 1.0, 'size': 2.0, 'features': 1.0, 'go': 1.0, 'purchases': 1.0, 'aside': 1.0, 'all': 5.0, 'recently': 2.0, 'other': 1.0, 'there': 2.0, 'obstructs': 1.0, 'ideally': 1.0, 'or': 2.0, 'would': 1.0, 'change': 1.0, 'road': 1.0, 'bulky': 1.0, 'about': 1.0, 'takes': 1.0, 'pros': 1.0, 'its': 2.0, 'base': 1.0, 'old': 1.0, 'of': 13.0, 'brands': 1.0, 'even': 1.0, 'sticker': 1.0, 'adjustable': 1.0, 'cup': 1.0, 'seat': 6.0, 'push': 2.0, 'great': 2.0, 'parents': 1.0, 'basic': 1.0, 'days': 1.0, 'heights': 1.0, 'stands': 1.0, 'it': 5.0, 'be': 4.0, 'own': 1.0, 'well': 1.0, 'access': 1.0, 'folded': 1.0, 'decent': 1.0, 'to': 11.0, 'undercarriage': 1.0, 'an': 1.0, 'basket': 1.0, 'seats': 1.0, 'travel': 2.0, 'both': 1.0, 'easier': 1.0, 'super': 1.0, 'don': 2.0, 'very': 1.0, 'find': 1.0, 'any': 2.0, 'cumbersome': 1.0, 'a': 10.0, 'bag': 2.0, 'bit': 1.0, 'than': 1.0, 'baskets': 1.0, 'removable': 1.0, 'this': 3.0, 'supports': 1.0, 'might': 1.0, 'becoming': 1.0, 'machine': 1.0, 'washable': 1.0, 'invest': 1.0, 'padding': 1.0, 'cons': 1.0, 'purpose': 1.0, 'holders': 1.0, 'ahead': 1.0, 'secure': 1.0, 'lid': 1.0, 'place': 1.0, 'child': 1.0, 'keys': 1.0, 'wonderful': 1.0, 'keep': 1.0, 'also': 1.0, 'handy': 1.0, 'strapped': 1.0, 'safe': 1.0, 'across': 1.0, 'wobbly': 1.0, 'trunk': 1.0, 'most': 3.0, 'space': 1.0, 'vw': 1.0}
Word element => {'her': 1.0, 'liked': 1.0, 'some': 1.0, 've': 1.0, 'on': 1.0, 'depends': 1.0, 'worse': 1.0, 'otherwise': 1.0, 'ratings': 1.0, 'exposed': 1.0, 'back': 1.0, 'weather': 1.0, 'cold': 1.0, 'open': 1.0, 'holes': 1.0, 'heard': 1.0, 'new': 1.0, 'finding': 1.0, 'think': 1.0, 'process': 1.0, '4': 1.0, 'wiggles': 1.0, 'now': 2.0, 'diaper': 1.0, 'makes': 2.0, 'legs': 1.0, 'very': 1.0, 'not': 5.0, 'choose': 1.0, 'without': 1.0, 'sweat': 1.0, 'always': 1.0, 'unbreathable': 1.0, 'tummy': 1.0, 'cushion': 2.0, 'infant': 1.0, 's': 6.0, 'because': 1.0, 'deep': 1.0, 'that': 2.0, 'got': 1.0, 'finally': 1.0, 'looking': 1.0, 'more': 1.0, 'friend': 1.0, 'since': 2.0, 'provide': 1.0, 'up': 3.0, 'doesn': 1.0, 'great': 1.0, 'foot': 2.0, 'room': 1.0, 'wise': 1.0, 'bigger': 1.0, 'still': 2.0, 'stay': 2.0, 'every': 1.0, 'outgrew': 1.0, 'from': 1.0, 'walks': 1.0, 'adjustment': 1.0, 'thing': 1.0, 'wind': 1.0, '2': 2.0, 'after': 2.0, 'squeez': 1.0, 'carseats': 1.0, 'this': 1.0, 'know': 1.0, 'like': 2.0, 'belt': 1.0, 'rest': 2.0, 'fit': 1.0, 't': 5.0, 'ago': 1.0, 'we': 2.0, 'didn': 1.0, 'child': 1.0, 'shoulder': 1.0, 'don': 2.0, 'cortina': 1.0, 'his': 1.0, 'around': 1.0, 'way': 2.0, 'go': 1.0, 'alot': 1.0, 'saw': 1.0, 'm': 1.0, 'seat': 1.0, 'in': 7.0, 'when': 6.0, 'practically': 1.0, 'pak': 1.0, 'and': 12.0, 'different': 3.0, 'which': 2.0, 'made': 1.0, 'good': 4.0, '5': 1.0, 'before': 1.0, 'parents': 1.0, 'monh': 2.0, 'barely': 1.0, 'walking': 1.0, 'purchased': 1.0, 'had': 2.0, 'color': 1.0, 'system': 2.0, 'strollers': 1.0, 'ahead': 1.0, 'baby': 5.0, 'point': 1.0, 'started': 2.0, 'travel': 2.0, 'be': 3.0, 'all': 2.0, 'high': 1.0, 'length': 1.0, 'to': 6.0, 'have': 2.0, 'a': 11.0, 'small': 2.0, 'carseat': 5.0, 'was': 7.0, 'chicco': 1.0, 'blows': 1.0, 'seemed': 2.0, 'experience': 1.0, 'say': 1.0, 'comfortable': 3.0, 'my': 8.0, 'may': 1.0, 'son': 4.0, 'is': 7.0, 'at': 2.0, 'far': 1.0, 'he': 10.0, 'looked': 1.0, 'while': 1.0, 'month': 3.0, 'hear': 1.0, 'careat': 1.0, 'him': 3.0, 'thought': 1.0, 'it': 12.0, '3': 2.0, 'useless': 1.0, 'but': 4.0, 'so': 8.0, 'can': 1.0, 'our': 1.0, 'stroller': 7.0, 'with': 1.0, 'does': 1.0, 'assumed': 1.0, 'wad': 1.0, 'of': 4.0, 'the': 8.0, 'cries': 1.0, 'direction': 1.0, 'you': 4.0, 'things': 1.0, 'first': 2.0, 'are': 2.0, 'newborn': 1.0, 'would': 1.0, 'summer': 1.0, 'by': 1.0, 'house': 1.0, 'much': 3.0, 'put': 2.0, 'your': 1.0, 'fabric': 1.0, 'for': 6.0, 'such': 1.0, 'about': 3.0, 'shakes': 1.0, 'wan': 1.0, 'born': 2.0, 'safe': 2.0, 'i': 12.0, 'well': 1.0, 'too': 3.0, 'one': 2.0, 'really': 1.0, 'see': 1.0, 'need': 1.0, 'or': 1.0, 'us': 1.0, 'also': 4.0, 'wheels': 1.0, 'squicking': 1.0}
Word element => {'now': 1.0, 'or': 1.0, 'not': 1.0, 'wear': 1.0, 'even': 1.0, 'it': 2.0, 'first': 2.0, 'with': 1.0, 'and': 3.0, 'my': 1.0, 're': 1.0, 'years': 1.0, 'highly': 1.0, 'support': 1.0, 'ago': 1.0, 'a': 2.0, 'since': 1.0, 'little': 1.0, 'medela': 1.0, 'needed': 1.0, 'easy': 1.0, 'purchased': 2.0, 'pregnant': 2.0, 'have': 1.0, 'nursing': 2.0, 'found': 1.0, 'forget': 1.0, '4': 1.0, 'i': 6.0, 'bra': 1.0, 'was': 1.0, 'sleep': 1.0, 'to': 1.0, 'be': 1.0, 'so': 2.0, 'wearing': 1.0, 'comfortable': 2.0, 'that': 2.0, 'several': 1.0, 'more': 1.0, 'slept': 1.0, 'recommended': 1.0, 'in': 1.0, 'baby': 1.0, 'them': 2.0, 'extra': 1.0, 'ever': 1.0, 'they': 1.0, 'make': 1.0, 'are': 1.0, 'am': 1.0, 'when': 2.0, 'you': 2.0}
Word element => {'before': 1.0, 'please': 1.0, 'so': 1.0, 'on': 1.0, 'is': 5.0, 'stroller': 2.0, 'trouble': 1.0, 'check': 1.0, 'back': 1.0, 'out': 1.0, 'unfolds': 1.0, 'travel': 1.0, 'i': 3.0, 'system': 1.0, 'great': 1.0, 'the': 6.0, 'heavy': 1.0, 'product': 1.0, 'for': 1.0, 'love': 1.0, 'of': 1.0, 'not': 1.0, 'this': 3.0, 'only': 1.0, 'with': 1.0, 'car': 5.0, 'goes': 1.0, 'in': 1.0, 'having': 1.0, 'also': 1.0, 'easy': 3.0, 'folds': 1.0, 'seats': 1.0, 'move': 1.0, 'however': 2.0, 'very': 2.0, 'surfaces': 1.0, 'and': 4.0, 'varied': 1.0, 'have': 1.0, 'cars': 1.0, 'warn': 1.0, 'you': 2.0, 'case': 1.0, 'that': 1.0, 'purchase': 1.0, 'my': 1.0, 'daughter': 1.0, '12lb': 1.0, 'carrying': 1.0, 'already': 1.0, 'her': 1.0, 'base': 1.0, 'to': 3.0, 'seat': 3.0, 'all': 2.0, 'comparable': 1.0}
Word element => {'taking': 1.0, 'difficulty': 1.0, 'some': 1.0, 'have': 1.0, 'my': 1.0, 'may': 1.0, 'would': 1.0, 'i': 2.0, 'trunk': 1.0, 'well': 1.0, 'thought': 1.0, 'excellent': 1.0, 'than': 1.0, 'because': 1.0, 'know': 1.0, 'of': 4.0, 'up': 1.0, 'boxes': 1.0, 'were': 1.0, 'when': 1.0, 'heavier': 1.0, 'the': 3.0, 'a': 4.0, 't': 1.0, 'we': 4.0, 'is': 1.0, 'putting': 1.0, 'be': 2.0, 'in': 3.0, 'arrives': 1.0, 'our': 2.0, 'to': 2.0, 'was': 3.0, 'beat': 1.0, 'baby': 1.0, 'quality': 1.0, 'seems': 1.0, 'will': 1.0, 'and': 3.0, 'looks': 1.0, 'it': 8.0, 'this': 1.0, 'but': 1.0, 'can': 1.0, 'wait': 1.0, 'so': 1.0, 'bit': 2.0, 'use': 2.0, 'worried': 1.0, 'little': 1.0, 'box': 1.0, 'came': 1.0, 'get': 1.0, 'protected': 1.0, 'stroller': 2.0, 'additional': 1.0, 'great': 1.0, 'big': 1.0, 'splurge': 1.0, 'lot': 1.0, 'out': 2.0}
Word element => {'snug': 1.0, 'guess': 1.0, 'i': 1.0, 'crib': 1.0, 'her': 1.0, 'c': 1.0, 'in': 1.0, 'ideal': 1.0, 'for': 2.0, 'which': 1.0, 'compared': 1.0, 'bassinet': 1.0, 'yes': 1.0, 'off': 1.0, 'stroller': 2.0, 'so': 1.0, 'feel': 1.0, 'big': 1.0, 'great': 1.0, 'she': 1.0, 'it': 5.0, 'this': 1.0, 'a': 2.0, 's': 1.0, 'much': 1.0, 'likes': 1.0, 'has': 1.0, 'ur': 1.0, 'infants': 1.0, 'pricey': 1.0, 'to': 5.0, 'better': 1.0, 'graco': 1.0, 'you': 1.0, 'when': 1.0, 'first': 1.0, 'newborns': 1.0, 'and': 2.0, 'sleeps': 1.0, 'is': 4.0, 'till': 1.0, 'able': 2.0, 'sit': 3.0, 'wide': 1.0, 'hey': 1.0, 'up': 2.0, 'then': 1.0, 'sturdy': 1.0, 'but': 1.0, 'can': 1.0, 'baby': 1.0, 'feels': 1.0, 'very': 1.0, 'wheels': 1.0, 'at': 1.0, 'home': 1.0, 'b': 1.0, 'convert': 1.0, 'my': 1.0, 'newborn': 1.0}
Word element => {'hassle': 1.0, 'worth': 1.0, 'clipped': 1.0, 'car': 1.0, 'sometimes': 1.0, 'con': 1.0, 'only': 1.0, 'kids': 1.0, 'works': 1.0, 'rumble': 1.0, 'end': 1.0, 'bunch': 1.0, 'needing': 1.0, 'foresee': 1.0, 't': 1.0, 'don': 1.0, 'like': 1.0, 'upfront': 1.0, 'spend': 1.0, 'cart': 1.0, 'little': 2.0, 'store': 1.0, 'grocery': 1.0, 'costco': 1.0, 'there': 2.0, 'seeing': 1.0, 'ended': 1.0, 'after': 1.0, 'hard': 1.0, 'over': 2.0, 'takes': 1.0, 'up': 2.0, 'folks': 1.0, 'for': 3.0, 'yet': 1.0, 'he': 1.0, 'love': 2.0, 'my': 5.0, 'underneath': 2.0, '3': 1.0, 'on': 3.0, 'came': 1.0, 'already': 1.0, 'it': 8.0, 'going': 1.0, 'a': 5.0, 'home': 1.0, 'by': 1.0, 'just': 1.0, 'well': 1.0, 'i': 6.0, 'vista': 1.0, 'room': 1.0, 'bought': 1.0, 'happy': 1.0, 'too': 1.0, 'one': 2.0, 'huge': 1.0, 'could': 1.0, 'travel': 1.0, 'lo': 1.0, 'friends': 3.0, 'so': 4.0, 'stroller': 4.0, 'our': 3.0, 'sleep': 1.0, 'and': 10.0, 'that': 5.0, 'more': 1.0, 'babies': 1.0, 'basket': 1.0, 'opted': 2.0, 'but': 1.0, 'board': 1.0, 'ton': 1.0, 'wanted': 1.0, 'pretty': 1.0, 'to': 8.0, 'bassinet': 2.0, 'type': 1.0, 'had': 1.0, 'practice': 1.0, 'have': 3.0, 'time': 1.0, 'new': 1.0, 'actually': 1.0, 'system': 1.0, 'around': 1.0, 'is': 6.0, 'doing': 1.0, 'of': 5.0, 'the': 14.0, 'several': 1.0, 'still': 2.0, 'if': 1.0, 'did': 1.0, 'other': 2.0, 'all': 2.0, 'an': 1.0, 'many': 1.0, 'baby': 1.0, 'easy': 1.0, 'get': 3.0, 'with': 2.0, 'pavement': 1.0, 'buy': 1.0, 'hand': 1.0, 'great': 2.0, 'rough': 1.0, 'terrain': 1.0, 'uppababy': 2.0, '2': 2.0, 'or': 3.0, 'uneven': 1.0, 'used': 2.0, 'clip': 1.0, 'seat': 2.0, 'in': 4.0, 'are': 1.0, 'first': 1.0, 'us': 1.0, 'also': 2.0, 'occasions': 1.0, 'sit': 1.0, 'when': 2.0, 'strollers': 1.0, 'am': 1.0, 'drove': 1.0, 'absolutely': 1.0, 'out': 2.0, 'as': 1.0, 'town': 1.0, 'does': 1.0, 'collapse': 1.0, 'then': 1.0, 'we': 7.0, 'take': 2.0, 'mattress': 1.0, 'month': 2.0, 'same': 1.0, 'under': 1.0, 'night': 1.0, 'push': 1.0, 'you': 1.0, 'able': 1.0, 'tricky': 1.0, 'groceries': 1.0}
Word element => {'value': 1.0, 'good': 1.0, 'product': 1.0, 'a': 2.0, 'really': 1.0, 's': 1.0, 'cover': 1.0, 'pad': 3.0, 'mattress': 1.0, 'this': 1.0, '30': 1.0, 'soy': 1.0, 'organic': 1.0, 'but': 2.0, 'change': 1.0, 'firm': 2.0, 'can': 2.0, 'pregnant': 1.0, 'also': 2.0, 'seems': 1.0, 'user': 1.0, 'and': 4.0, 'collapse': 1.0, 'tube': 1.0, 'car': 1.0, 'out': 1.0, 'easy': 3.0, 'you': 2.0, 'by': 1.0, 'friendly': 1.0, 'strollers': 2.0, 'baby': 1.0, 'took': 1.0, 'there': 1.0, 'storage': 1.0, 'we': 1.0, 't': 2.0, 'of': 2.0, 'the': 10.0, 'gripe': 1.0, 'myself': 1.0, 'only': 3.0, 'maneuvers': 1.0, 'with': 2.0, 'it': 5.0, 'comes': 1.0, 'more': 1.0, 'bassinet': 3.0, 'to': 4.0, 'sleep': 1.0, 'was': 4.0, 'minutes': 1.0, 'test': 1.0, 'vista': 1.0, 'drove': 1.0, 'far': 1.0, 'love': 1.0, 'for': 1.0, 'winner': 1.0, 'lots': 2.0, 'holder': 1.0, 'lower': 1.0, 'basket': 1.0, 'very': 1.0, 'thing': 1.0, 'well': 1.0, 'i': 2.0, 'surprised': 1.0, 'since': 1.0, 'is': 2.0, 'at': 1.0, 'clear': 1.0, 'if': 1.0, 'want': 1.0, 'seat': 2.0, 'in': 1.0, 'naps': 1.0, 'optional': 1.0, 'an': 2.0, 'other': 2.0, 'like': 2.0, 'should': 1.0, 'be': 1.0, 'inner': 1.0, 'than': 1.0, 'that': 4.0, 'because': 1.0, 'put': 1.0, 'together': 1.0, 'wheels': 1.0, 'did': 1.0, '8': 1.0, 'get': 1.0, 'months': 1.0, 'me': 1.0, 'are': 1.0, 'fantastic': 1.0, 'great': 2.0, 'they': 1.0, 'isn': 1.0, 'don': 1.0, 'have': 1.0, 'pop': 1.0}
Word element => {'even': 1.0, 'come': 1.0, 'holder': 2.0, 'cup': 2.0, 'lack': 1.0, 'negative': 1.0, 'easily': 1.0, 'you': 1.0, 'of': 2.0, 'once': 1.0, 'temperamental': 1.0, 'walking': 1.0, 'push': 1.0, 'folds': 1.0, 'get': 1.0, 'easy': 1.0, 'little': 1.0, 'very': 2.0, 'is': 4.0, 'daily': 1.0, 'graco': 1.0, 'with': 3.0, 'attachment': 1.0, 'bit': 1.0, 'so': 1.0, 'overall': 1.0, 'husband': 1.0, 'without': 1.0, 'the': 8.0, 'basinette': 1.0, 'used': 1.0, 'my': 3.0, 'happy': 2.0, 'i': 6.0, 'm': 1.0, 'great': 1.0, 'spend': 1.0, 'this': 2.0, 'it': 8.0, 'first': 1.0, 'doesn': 1.0, 'was': 2.0, 'crazy': 1.0, 'only': 1.0, 'much': 1.0, 'on': 2.0, 'hang': 1.0, 'mechanism': 1.0, 'months': 1.0, 't': 1.0, 's': 1.0, 'we': 2.0, 'a': 5.0, 'since': 1.0, 'but': 3.0, 'stroller': 3.0, 'splurged': 1.0, 'weeks': 1.0, 'thought': 1.0, 'and': 4.0, 'hesitant': 1.0, 've': 2.0, 'shocking': 1.0, 'in': 1.0, 'beside': 1.0, 'that': 1.0, 'been': 1.0, 'using': 1.0, 'expensive': 1.0, 'for': 2.0, 'love': 2.0, 'bed': 1.0, 'vista': 2.0, '5': 1.0, 'still': 1.0, 'fold': 1.0, 'son': 1.0, 'slept': 1.0, 'right': 1.0, '6': 1.0, 'then': 1.0, 'car': 2.0, 'to': 2.0, 'our': 2.0, 'seat': 2.0}
Word element => {'bit': 1.0, 'a': 1.0, 'quite': 1.0, 'around': 1.0, 'gets': 1.0, 'out': 1.0, 'sticks': 1.0, 'cup': 1.0, 'can': 1.0, 'if': 1.0, 'price': 1.0, 'worth': 1.0, 'is': 2.0, 'holder': 1.0, 'turns': 1.0, 'you': 1.0, 'afford': 1.0, 'the': 3.0, 'so': 1.0, 'easily': 2.0, 'it': 5.0, 'only': 1.0, 'knocked': 1.0, 'makes': 1.0, 'thing': 1.0, 'not': 1.0, 'i': 1.0, 'and': 2.0, 'do': 1.0, 'pushes': 1.0, 'care': 1.0, 'love': 1.0, 'for': 1.0}
Word element => {'recommend': 1.0, 'maya': 1.0, 'compliments': 1.0, 'get': 1.0, 'dime': 1.0, 'smooth': 1.0, 'such': 1.0, 'sleeping': 1.0, 'when': 2.0, 'handy': 1.0, 'for': 1.0, 'color': 1.0, 'months': 1.0, '1': 1.0, 'only': 1.0, 'likes': 1.0, 'in': 2.0, 'naps': 1.0, 'adapter': 1.0, 'uppababy': 2.0, 'peg': 1.0, 'liked': 1.0, 'spectacular': 1.0, 'turns': 1.0, 'the': 10.0, 'used': 1.0, 'she': 3.0, 'it': 7.0, 'with': 1.0, 'purchased': 1.0, 'had': 1.0, 'i': 9.0, 'is': 4.0, 'say': 1.0, 'too': 2.0, 'and': 6.0, 'reviewing': 1.0, '2': 2.0, 'can': 1.0, 'narrowed': 1.0, 'on': 4.0, 'takes': 1.0, 'bugaboo': 1.0, 'so': 2.0, 'after': 1.0, 'take': 2.0, 'many': 4.0, 'highly': 1.0, 'really': 3.0, 'oh': 2.0, 'her': 2.0, 'different': 1.0, 'good': 1.0, 'cameleon': 1.0, 'things': 1.0, 'about': 1.0, 'baby': 1.0, 'strollers': 1.0, 'be': 1.0, 'my': 1.0, 'fact': 1.0, 'move': 1.0, 'went': 1.0, 'find': 1.0, 'because': 1.0, 'that': 1.0, 'rumbble': 1.0, 'walks': 1.0, 'a': 3.0, 'could': 1.0, 'added': 1.0, 'to': 4.0, 'seat': 1.0, 'as': 1.0, 'stroller': 5.0, 'additional': 1.0, 'drive': 1.0, 'this': 3.0, 'kids': 1.0, 'carseat': 1.0, 'came': 1.0, 'along': 1.0, 'have': 1.0, 'anywhere': 1.0, 'bassinet': 1.0, 'perego': 1.0, 'down': 1.0, 'occasions': 1.0}
Word element => {'preg': 1.0, 'of': 1.0, 'previous': 1.0, 'holder': 1.0, 'piko': 1.0, 'came': 1.0, 'wish': 1.0, 'owner': 1.0, 'i': 2.0, 'close': 1.0, 'or': 1.0, 'handed': 1.0, 'love': 1.0, 'one': 1.0, 'cup': 1.0, 'push': 1.0, 'accessible': 1.0, 'not': 1.0, 'basket': 1.0, 'to': 1.0, 'pergo': 1.0, 'easy': 1.0, 'it': 1.0, 'thrilled': 1.0, 'this': 2.0, 'with': 2.0, 'folded': 1.0, 'is': 2.0, 'easily': 1.0, 'board': 1.0, 'so': 2.0, 'and': 3.0, 'open': 1.0, 'very': 1.0, 'the': 1.0, 'piggy': 1.0, 'stroller': 2.0, 'back': 1.0, 'a': 3.0, 'saver': 1.0, 'life': 1.0, 'large': 1.0, 'when': 1.0}
Word element => {'apart': 1.0, 'probably': 1.0, 'is': 1.0, 'def': 1.0, 'washed': 1.0, 'set': 1.0, 'you': 1.0, 'back': 1.0, 'quality': 1.0, 'will': 1.0, 'fall': 1.0, 'dont': 1.0, 'bother': 1.0, 'my': 1.0, 't': 1.0, 'going': 1.0, 'when': 1.0, 'i': 2.0, 'this': 1.0, 'wouldn': 1.0, 'if': 1.0, 'waste': 1.0, 'money': 1.0, 'terrible': 1.0, 'were': 1.0}
Word element => {'crib': 1.0, 'stays': 1.0, 'long': 1.0, 'how': 1.0, 'attached': 1.0, 'by': 1.0, 'together': 1.0, 'will': 1.0, 'surprised': 1.0, 'put': 1.0, 'music': 1.0, 'did': 1.0, 'bought': 1.0, 'it': 1.0, 'come': 1.0, 'with': 1.0, 'we': 1.0, 'bedding': 1.0, 'set': 1.0, 'that': 1.0, 'not': 1.0, 'the': 4.0, 'so': 1.0, 'well': 1.0, 'mix': 1.0, 'mobile': 1.0, 'i': 2.0, 'was': 2.0, 'had': 1.0, 'to': 3.0, 'matching': 1.0, 'accessories': 1.0, 'and': 2.0, 'as': 1.0, 'match': 1.0, 'last': 1.0, 'easy': 1.0}
Word element => {'as': 1.0, 'of': 1.0, 'new': 1.0, 'enough': 1.0, 'never': 1.0, 'remember': 1.0, 'plastic': 1.0, 'nice': 1.0, 'work': 1.0, 'at': 1.0, 'burp': 1.0, 'for': 1.0, 'look': 1.0, 'a': 2.0, 'lab': 1.0, 'trend': 1.0, 'case': 1.0, 'bought': 1.0, 'their': 1.0, 'burps': 1.0, 'colleague': 1.0, 'is': 1.0, 'in': 1.0, 'having': 2.0, 'i': 1.0, 'who': 1.0, 'her': 1.0, 'child': 1.0, 'clothes': 1.0, 'first': 1.0, 'mother': 1.0, 'these': 3.0, 'great': 1.0}
Word element => {'skip': 1.0, 'useful': 1.0, 'more': 1.0, 'be': 1.0, 'lait': 1.0, 'bebe': 1.0, 'find': 1.0, 'looking': 1.0, 'have': 1.0, 'they': 5.0, 'versailles': 1.0, 'white': 1.0, 'smears': 1.0, 'got': 1.0, 'like': 1.0, 'really': 2.0, 'not': 1.0, 'some': 1.0, 'these': 2.0, 'cloths': 5.0, 'add': 1.0, 'little': 1.0, 'black': 1.0, 'a': 2.0, 'gross': 1.0, 'much': 1.0, 'do': 1.0, 'its': 1.0, 'only': 1.0, 'and': 6.0, 'being': 1.0, 'terry': 1.0, 'still': 1.0, 'if': 1.0, 'up': 2.0, 'don': 2.0, 'always': 1.0, 'so': 4.0, 'can': 1.0, 'au': 1.0, 'sick': 1.0, 'to': 4.0, 'as': 2.0, 'least': 2.0, 'excitement': 1.0, 'baby': 1.0, 'wipe': 1.0, 'was': 1.0, 'would': 1.0, 'by': 1.0, 'just': 2.0, 'aesthetic': 1.0, 'absorbant': 1.0, 'covered': 1.0, 'spit': 1.0, 'but': 1.0, 'print': 1.0, 'diapers': 1.0, 'are': 5.0, 'cute': 3.0, 'hoped': 1.0, 'of': 2.0, 'the': 8.0, 'burp': 5.0, 'newborn': 1.0, 'in': 1.0, 'cloth': 1.0, 'textured': 1.0, 'cheaply': 1.0, 'goes': 1.0, 'smooth': 1.0, 'i': 5.0, 'well': 2.0, 'frequent': 1.0, 'washing': 1.0, 'that': 3.0, 't': 2.0, 'require': 1.0, 'appeal': 1.0, 'around': 2.0, 'it': 3.0, 'far': 1.0, 'stand': 1.0, 'ew': 1.0, 'printed': 1.0, 'vomit': 1.0, 'is': 3.0, 'at': 2.0, 'one': 1.0, 'lot': 1.0, 'push': 1.0, 'you': 2.0, 'surrounded': 1.0, 'use': 1.0, 'better': 1.0, 'than': 1.0, 'sized': 1.0, 'other': 1.0, 'grind': 1.0, 'useless': 1.0, 'absorb': 1.0, 'wetness': 1.0, 'washcloth': 1.0, 'which': 1.0, 'made': 2.0, 'side': 2.0, 'good': 2.0, 'for': 2.0}
Word element => {'used': 1.0, 'think': 1.0, 'would': 2.0, 'soft': 1.0, 'wasn': 1.0, 'you': 1.0, 's': 1.0, 'niece': 1.0, 'for': 2.0, 'my': 1.0, 't': 1.0, 'the': 1.0, 'be': 1.0, 'bought': 1.0, 'had': 1.0, 'was': 3.0, 'at': 1.0, 'amazon': 1.0, 'registered': 1.0, 'since': 1.0, 'a': 2.0, 'she': 1.0, 'store': 1.0, 'but': 1.0, 'baby': 3.0, 'price': 1.0, 'it': 1.0, 'shower': 1.0, 'this': 2.0, 'quick': 1.0, 'better': 1.0, 'as': 2.0, 'shipping': 1.0, 'on': 2.0}
Word element => {'mositure': 1.0, 'sustaining': 1.0, 'from': 1.0, 'wood': 1.0, 'keeps': 1.0, 'wraps': 1.0, 'bed': 1.0, 'the': 4.0, 'instead': 1.0, 'i': 1.0, 'cover': 1.0, 'front': 1.0, 'a': 3.0, 'but': 1.0, 'back': 1.0, 'good': 1.0, 'different': 1.0, 'around': 1.0, 'is': 1.0, 'crib': 1.0, 'made': 1.0, 'backing': 1.0, 'them': 2.0, 'fleece': 1.0, 'are': 3.0, 'product': 1.0, 'actually': 1.0, 'better': 1.0, 'these': 1.0, 'great': 1.0, 'they': 2.0, 'rail': 2.0, 'type': 1.0, 'handy': 1.0, 'brand': 1.0, 'large': 1.0, 'soft': 1.0, 'of': 3.0, 'damage': 1.0, 'up': 1.0, 'little': 1.0, 'very': 1.0, 'material': 1.0, 'like': 1.0, 'which': 1.0, 'with': 1.0, 'one': 1.0, 'often': 1.0, 'waterproof': 1.0, 'pulling': 1.0, 'and': 2.0, 'falling': 1.0, 'also': 1.0, 'down': 1.0, 'covers': 1.0, 'she': 1.0, 'likes': 1.0, 'all': 1.0, 'our': 1.0, 'to': 1.0, 'wooden': 1.0, 'than': 1.0, 'chew': 1.0, 'on': 1.0}
Word element => {'hamper': 1.0, 'a': 1.0, 'items': 1.0, 'other': 1.0, 'this': 1.0, 'wanting': 1.0, 'anyone': 1.0, 'give': 1.0, 'all': 1.0, 'gift': 1.0, 'great': 4.0, 'service': 1.0, 'with': 2.0, 'order': 1.0, 'to': 1.0, 'product': 1.0, 'delivery': 1.0, 'good': 1.0, 'small': 1.0, 'make': 1.0, 'in': 1.0, 'for': 1.0}
Word element => {'very': 1.0, 'and': 1.0, 'in': 1.0, 'got': 1.0, 'i': 1.0, 'different': 1.0, 'mail': 1.0, 'animal': 1.0, 'item': 1.0, 'this': 1.0, 'product': 1.0, 'totally': 1.0, 'is': 4.0, 'was': 1.0, 'adventure': 1.0, 'not': 1.0, 'the': 2.0, 'what': 2.0, 'actually': 2.0, 'all': 1.0, 'pictured': 2.0, 'it': 1.0, 'pink': 2.0}
Word element => {'mom': 1.0, 'any': 1.0, 'product': 1.0, 'recommend': 1.0, 'would': 1.0, 'in': 1.0, 'read': 1.0, 'liquid': 1.0, 'notches': 1.0, 'latch': 1.0, 'mouthed': 1.0, 'their': 1.0, 'considering': 1.0, 'babies': 1.0, 'order': 1.0, 'goes': 1.0, 'stage': 1.0, 'cover': 2.0, 'even': 1.0, 'holding': 1.0, 'better': 1.0, 'next': 1.0, 'them': 3.0, 'which': 1.0, 'using': 2.0, 'nice': 2.0, 'a': 2.0, 'all': 1.0, 'as': 1.0, 'have': 1.0, 'after': 1.0, 'grade': 1.0, 'this': 1.0, 'highly': 1.0, 'bottle': 1.0, 'are': 4.0, 'to': 9.0, 'feedings': 1.0, 'my': 4.0, 'these': 3.0, 'etched': 1.0, 'the': 16.0, 'fed': 1.0, 'without': 1.0, 'gas': 2.0, 'bottles': 7.0, 'ditch': 1.0, 'skeptical': 1.0, 'like': 1.0, 'rather': 1.0, 'for': 4.0, 'one': 1.0, 'coddlelife': 2.0, 'if': 1.0, 'been': 1.0, 'loves': 1.0, 'amount': 1.0, 'on': 3.0, 'realize': 1.0, 'when': 1.0, 'breast': 1.0, 'silicone': 2.0, 'that': 4.0, 'easily': 1.0, 'you': 1.0, 'i': 4.0, 'become': 1.0, 'texture': 1.0, 'avent': 2.0, 'decision': 1.0, 'nipples': 2.0, 'am': 1.0, 'deciding': 1.0, 'was': 3.0, 'shape': 1.0, 'and': 9.0, 'intake': 1.0, 'who': 1.0, 'laboratory': 1.0, 'wash': 1.0, 'less': 3.0, 'up': 2.0, 'but': 2.0, 'so': 2.0, 'lightweight': 1.0, 'can': 2.0, 'parts': 1.0, 'easy': 3.0, 'no': 1.0, 'scratches': 1.0, 'son': 3.0, 'also': 2.0, 'spit': 1.0, 'finding': 1.0, 'allows': 1.0, 'with': 4.0, 'compared': 1.0, 'fussing': 1.0, 'switching': 1.0, 'negatives': 1.0, 'is': 3.0, 'had': 1.0, 'warm': 2.0, 'they': 1.0, 'touch': 1.0, 'offers': 1.0, 'wide': 2.0, 'new': 1.0, 'vented': 1.0, 'right': 1.0, 'easier': 1.0, 'feeding': 1.0, 'did': 1.0, 'itself': 1.0, 'not': 1.0, 'air': 2.0, 'bumpy': 1.0, 'continue': 1.0, 'nipple': 2.0, 'preferred': 1.0, 'glass': 4.0, 'came': 1.0, 'it': 1.0}
Word element => {'quality': 1.0, 'the': 2.0, 'for': 1.0, 'receiving': 2.0, 'designs': 1.0, 'babies': 1.0, 'born': 1.0, 'of': 1.0, 'lot': 1.0, 'different': 1.0, 'a': 1.0, 'blankets': 2.0, 'and': 1.0, 'best': 1.0, 'very': 1.0, 'bought': 1.0, 'in': 2.0, 've': 1.0, 'i': 1.0, 'girl': 1.0, 'just': 1.0, 'because': 1.0, 'boy': 1.0, 'they': 1.0, 'are': 1.0, 'soft': 1.0, 'skin': 1.0, 'with': 1.0}
Word element => {'fit': 1.0, 'sheets': 1.0, 'washed': 1.0, 'of': 1.0, 'then': 1.0, 'as': 2.0, 'crib': 1.0, 'aren': 1.0, 'mattresses': 2.0, 'since': 1.0, 'don': 1.0, 'price': 1.0, 'soft': 1.0, 'it': 3.0, 'and': 3.0, 'course': 1.0, 'really': 1.0, 'is': 1.0, 'on': 1.0, 'solid': 1.0, 'bent': 1.0, 'are': 1.0, 'small': 1.0, 'but': 1.0, 't': 2.0, 'great': 1.0, 'the': 5.0, 'these': 1.0, 'i': 2.0, 'tried': 1.0, 'putting': 1.0, 'they': 1.0, 'cradle': 2.0, 'mattress': 3.0, 'almost': 1.0, 'now': 1.0, 'was': 1.0, 'when': 1.0, 'too': 1.0}
Word element => {'going': 1.0, 'am': 1.0, 'but': 1.0, 'washing': 2.0, 'didn': 1.0, 'in': 3.0, 'said': 1.0, 'flexible': 1.0, 'having': 2.0, 'than': 1.0, 'pads': 1.0, 'before': 1.0, 'mattress': 5.0, 'on': 3.0, 'make': 1.0, 'be': 2.0, 'it': 2.0, 'and': 2.0, 'safety': 1.0, 'size': 3.0, 'sheets': 4.0, 'nice': 1.0, 'which': 1.0, 'like': 2.0, 'for': 3.0, 'where': 1.0, 'fit': 1.0, 't': 2.0, 'these': 3.0, 'find': 1.0, 'since': 1.0, 'read': 1.0, 'mattresses': 1.0, 'cradle': 2.0, 'cut': 1.0, 'they': 5.0, '18x36': 1.0, 'them': 2.0, 'always': 1.0, 'lot': 1.0, 'try': 1.0, 'do': 1.0, 'order': 1.0, 'i': 7.0, 'lumpy': 1.0, 'bunched': 1.0, 'after': 1.0, 'manufacturers': 1.0, 'hard': 1.0, '15x33': 2.0, 'making': 1.0, 'reviews': 1.0, 'fine': 1.0, 'is': 3.0, 'heirloom': 1.0, 'more': 1.0, 'people': 1.0, 'use': 1.0, 'smaller': 1.0, 'can': 1.0, 'so': 3.0, 'sheet': 2.0, 'my': 3.0, 'would': 2.0, 'tight': 2.0, 'shrunk': 1.0, 'barely': 1.0, 'what': 1.0, 'when': 1.0, 'elastic': 2.0, 'with': 1.0, 'that': 1.0, 'into': 2.0, 'are': 3.0, 'rectangular': 1.0, 'other': 2.0, 'an': 1.0, 'oval': 1.0, 'a': 4.0, 'imagine': 1.0, 'the': 9.0, 'of': 1.0, 'purchased': 1.0, 'larger': 1.0, 'have': 2.0, 'intended': 1.0, 'run': 1.0, 'though': 1.0, 'problem': 1.0, 'to': 4.0, 'bassinet': 1.0, 'why': 1.0, 'temporary': 1.0, 'beds': 1.0, 'thin': 1.0, 'up': 1.0, 'inside': 1.0, 'seems': 1.0, 'hazard': 1.0, 'same': 1.0, 'loose': 1.0}
Word element => {'price': 1.0, 'for': 1.0, 'other': 1.0, 'they': 2.0, 'well': 1.0, 'and': 1.0, 's': 1.0, 'sheets': 2.0, 'the': 1.0, 'these': 1.0, 't': 1.0, 'didn': 1.0, 'wear': 1.0, 'after': 1.0, 'rough': 1.0, 'not': 1.0, 'being': 1.0, 'are': 2.0, 'nearly': 1.0, 'my': 1.0, 'soft': 1.0, 'some': 1.0, 'washed': 1.0, 'of': 1.0, 'ok': 1.0, 'very': 1.0, 'as': 2.0, 'son': 1.0}
Word element => {'fit': 1.0, 'to': 1.0, 'they': 2.0, 'were': 2.0, 'plus': 1.0, 'and': 1.0, 'very': 1.0, 'six': 1.0, 'about': 1.0, 'soft': 1.0, 'but': 1.0, 'not': 1.0, 'would': 1.0, 'after': 1.0, 'short': 1.0, 'washing': 1.0, 'inches': 1.0, 'them': 1.0}
Word element => {'putting': 1.0, 'it': 2.0, 'hang': 1.0, 'suggest': 1.0, 'not': 1.0, 'would': 1.0, 'i': 1.0, 'is': 1.0, 'dryer': 1.0, 'that': 1.0, '6': 1.0, 'only': 1.0, 'drying': 1.0, 'mini': 1.0, 'the': 3.0, 'my': 1.0, 'sheet': 1.0, 'this': 1.0, 'fit': 1.0, 'mattress': 1.0, 'in': 1.0, 'crib': 1.0, 'for': 1.0}
Word element => {'h': 1.0, 'x6': 1.0, 'l': 1.0, 'x24': 1.0, '37': 1.0, 'to': 1.0, 'they': 2.0, 'crib': 3.0, 'for': 1.0, 'my': 1.0, 'are': 2.0, 'chelsea': 1.0, 'item': 1.0, 'this': 1.0, 'fit': 1.0, 'and': 2.0, 'bought': 1.0, 'the': 3.0, 'great': 2.0, 'buy': 1.0, 'touch': 1.0, 'i': 1.0, 'crescent': 1.0, 'on': 1.0, 'soft': 1.0, '50': 1.0, 'davinci': 1.0, 'w': 1.0, 'dimensions': 1.0, 'mattress': 1.0, 'wear': 1.0, 'mini': 3.0, 'coil': 1.0, 'well': 1.0}
Word element => {'handle': 1.0, 'they': 1.0, 'this': 1.0, 'start': 1.0, 'late': 1.0, 'too': 1.0, 's': 1.0, 'it': 1.0, 'on': 1.0, 'confusion': 1.0, 'likely': 1.0, '2': 1.0, 'can': 1.0, 'most': 1.0, 'ones': 1.0, 'have': 1.0, 'younger': 1.0, 'months': 1.0, 'in': 1.0, 'age': 1.0, 'them': 1.0, 'baby': 1.0, 'who': 1.0, 'at': 1.0, 'gassy': 1.0, 'my': 1.0, 'available': 1.0, '1': 2.0, 'rediculous': 1.0, 'system': 1.0, 'an': 1.0, 'love': 2.0, 'advanced': 1.0, 'general': 1.0, 'nipple': 2.0, 'the': 9.0, 'these': 1.0, 'there': 2.0, 'of': 3.0, 'time': 1.0, 'bottle': 1.0, 'needs': 1.0, 'so': 2.0, 'vent': 3.0, 'however': 1.0, 'entirely': 1.0, 'level': 3.0, 'more': 1.0, 'is': 3.0, 'special': 1.0, 'almost': 2.0, 'quite': 1.0, 'peristaltic': 1.0, 'coddlelife': 1.0, 'drying': 1.0, 'nipples': 1.0, 'natural': 1.0, 'particular': 1.0, 'cleaning': 1.0, 'out': 1.0, 'during': 1.0, 'like': 1.0, 'way': 1.0, 'to': 3.0, 'get': 1.0, 'water': 1.0, 'even': 2.0, 'cleaner': 1.0, 'with': 1.0, '4': 1.0, 'i': 1.0, 'idea': 2.0, 'am': 1.0, 'how': 1.0, 'by': 1.0, 'worried': 1.0, 'no': 2.0, 'about': 1.0, 'sanitary': 1.0, 'are': 3.0, 'also': 2.0, 'babies': 1.0, 'breastfeeding': 1.0, 'that': 2.0, 'totally': 1.0}
Word element => {'comfort': 1.0, 'less': 1.0, 'translates': 1.0, 'reducing': 1.0, 'best': 1.0, 'both': 1.0, 'tried': 1.0, 'i': 1.0, 'claims': 1.0, 'that': 1.0, 'is': 2.0, 'and': 3.0, 'parts': 1.0, 'discomfort': 1.0, 'of': 2.0, 'lot': 1.0, 'they': 1.0, 'worth': 1.0, 'bottles': 1.0, 'gas': 1.0, 'a': 2.0, 'go': 1.0, 'not': 3.0, 'while': 1.0, 'washing': 1.0, 'how': 1.0, 'down': 1.0, 'collapsed': 1.0, 'waste': 1.0, 'allows': 1.0, 'this': 4.0, 'with': 2.0, 'was': 1.0, 'bumps': 1.0, 'kept': 1.0, 'did': 1.0, 'drank': 1.0, 'nipple': 4.0, 'hands': 1.0, 'the': 9.0, 'benefits': 2.0, 'my': 1.0, 'for': 1.0, 'meant': 1.0, 'tempting': 1.0, 'you': 1.0, 'latest': 1.0, 'it': 2.0, 'she': 3.0, 'baby': 2.0, 'but': 1.0, 'money': 1.0, 'like': 1.0, 'venting': 1.0, 'technology': 1.0, 'which': 2.0, 'suction': 1.0, 'does': 1.0, 'having': 1.0, 'to': 4.0, 'compact': 1.0, 'yes': 1.0, 'hated': 1.0, 'break': 1.0, 'much': 2.0, 'do': 1.0, 'in': 2.0, 'air': 2.0, 'build': 1.0, 'browns': 2.0, 'up': 1.0, 'so': 2.0, 'bottle': 1.0, 'extra': 1.0, 'anyhow': 1.0, 'dr': 2.0, 'on': 2.0, 'your': 2.0, 'same': 1.0, 'if': 1.0, 'want': 1.0, 'have': 2.0, 'anti': 1.0, 'colic': 1.0}
Word element => {'cover': 1.0, 'leak': 1.0, 'had': 1.0, 'never': 1.0, 've': 1.0, 'breathable': 1.0, 'highly': 1.0, 'really': 1.0, 'or': 1.0, 'this': 2.0, 'with': 1.0, 'dreameze': 1.0, 'use': 2.0, 'time': 1.0, 'however': 1.0, 'wet': 1.0, 'feeling': 1.0, 'daughter': 2.0, 'in': 1.0, 'fond': 1.0, 'it': 2.0, 'velcro': 1.0, 'm': 1.0, 'absolutely': 1.0, 'i': 8.0, 'extremely': 1.0, 'well': 3.0, 'aplix': 1.0, 'bad': 1.0, 'prefolds': 1.0, 'the': 5.0, 'these': 1.0, 'not': 2.0, 'even': 1.0, 'diapers': 1.0, 'okay': 1.0, 'grobaby': 1.0, 'holds': 1.0, 'is': 2.0, 'type': 1.0, 'have': 1.0, 'leave': 1.0, 'shell': 5.0, 'different': 1.0, 'several': 1.0, 'too': 1.0, 'and': 3.0, 'do': 2.0, 'colors': 1.0, 'of': 2.0, 'messes': 1.0, 'as': 1.0, 'pads': 1.0, 'fitted': 1.0, 'prints': 1.0, 'a': 2.0, 's': 1.0, 'recommend': 1.0, 'closures': 1.0, 'prefer': 1.0, 'skin': 1.0, 'snaps': 1.0, 'work': 1.0, 'most': 1.0, 'but': 2.0, 'are': 2.0, 'for': 1.0, 'love': 2.0, 'actually': 1.0, 'soaker': 1.0, 'they': 1.0, 'fits': 1.0, 'often': 1.0, 'my': 2.0}
Word element => {'in': 1.0, 'great': 1.0, 'reuse': 1.0, 'removed': 1.0, 'just': 1.0, 'especially': 1.0, 'them': 2.0, 'little': 1.0, 'which': 2.0, 'anyone': 1.0, 'and': 7.0, 'setting': 2.0, 'these': 1.0, 'smallest': 1.0, 'don': 1.0, 'on': 2.0, 'think': 1.0, 'absorbent': 1.0, 'when': 1.0, 'lbs': 1.0, 'wish': 1.0, 'functional': 1.0, 'pockets': 1.0, 'with': 1.0, 'found': 1.0, 'however': 1.0, 'life': 1.0, 'diapering': 2.0, 'you': 2.0, 'able': 1.0, 'all': 1.0, 'an': 1.0, 'awkward': 1.0, 's': 1.0, 'a': 2.0, 't': 1.0, 'over': 1.0, 'concept': 2.0, 'largest': 1.0, 'use': 1.0, 'is': 7.0, 'my': 2.0, 'i': 8.0, 'last': 1.0, 'personally': 1.0, 'different': 2.0, 'very': 2.0, 'being': 1.0, 'had': 1.0, 'to': 6.0, 'infant': 1.0, 'purpose': 1.0, 'cover': 3.0, 'enough': 1.0, 'still': 1.0, 'the': 13.0, 'of': 3.0, 'set': 1.0, 'overall': 1.0, 'insert': 2.0, 'leak': 1.0, 'should': 1.0, 'now': 1.0, 'man': 1.0, 'go': 1.0, '14': 1.0, 'since': 1.0, 'find': 1.0, 'ones': 1.0, 'one': 1.0, 'wonderful': 1.0, 'old': 1.0, 'petite': 1.0, 'love': 1.0, 'fold': 1.0, 'he': 1.0, 'simply': 1.0, 'purchase': 1.0, 'only': 1.0, 'end': 1.0, 'that': 4.0, '20': 1.0, 'but': 1.0, 'feel': 1.0, 'alternative': 1.0, 'could': 1.0, 'will': 1.0, 'snapped': 1.0, 'months': 1.0, 'get': 2.0, 'it': 2.0, 'him': 1.0, 'be': 1.0, 'boosters': 1.0, 'rise': 1.0, 'or': 1.0, 'babies': 2.0, 'settings': 1.0, 'bulky': 1.0, 'would': 2.0, 'larger': 1.0, 'there': 1.0, 'recommend': 1.0, 'were': 1.0, 'size': 3.0, 'inserts': 3.0, 'for': 1.0, 'like': 2.0, 'defeat': 1.0, 'diapers': 2.0, 'are': 1.0, 'cute': 1.0, 'never': 2.0}
Word element => {'found': 1.0, 'm': 1.0, 'glad': 1.0, 'leak': 1.0, 'never': 1.0, 'great': 2.0, 'an': 1.0, 'fabulous': 1.0, 'is': 1.0, 'size': 1.0, '5': 1.0, 'tried': 1.0, 'cloth': 1.0, 'i': 8.0, 'old': 1.0, 'have': 1.0, 'diapering': 1.0, 'brands': 1.0, 'and': 4.0, 'new': 1.0, 'types': 1.0, 'enough': 1.0, 'not': 1.0, 'many': 1.0, 'fit': 1.0, 'love': 2.0, 'one': 1.0, 'these': 2.0, 'the': 2.0, 'how': 1.0, 'ai2': 1.0, 'you': 1.0, 'am': 1.0, 'my': 2.0, 'exclusively': 1.0, 'to': 1.0, 'much': 1.0, 'diapers': 1.0, 'will': 1.0, 'tell': 1.0, 'are': 5.0, 'by': 1.0, 'concept': 1.0, 'far': 1.0, 'favorite': 1.0, 'different': 1.0, 'last': 1.0, 'kind': 1.0, 'buy': 1.0, 'ever': 1.0, 'so': 1.0, 'boy': 1.0, 'they': 3.0, 'use': 1.0, 'on': 1.0, 'month': 1.0, 'them': 2.0, 'baby': 1.0, 'cotton': 1.0, 'cannot': 1.0, 'which': 2.0}
Word element => {'case': 1.0, 'birth': 1.0, 'say': 1.0, 'love': 1.0, 'older': 1.0, 'there': 1.0, 'cloth': 2.0, 'us': 1.0, 'let': 1.0, 'don': 1.0, 'day': 1.0, 'most': 1.0, 'from': 1.0, 'daycare': 1.0, 'different': 1.0, 'want': 1.0, 'not': 2.0, 'purchased': 1.0, 'too': 1.0, 'extremely': 1.0, 'am': 1.0, 'future': 1.0, 'hours': 1.0, '2': 1.0, 'time': 1.0, 'out': 2.0, 'disposable': 1.0, 'old': 1.0, 'figure': 1.0, 'now': 1.0, '1': 1.0, 'around': 1.0, 'their': 1.0, 'with': 2.0, 'issue': 1.0, 'friends': 1.0, 'to': 6.0, 'unfortunately': 2.0, 'she': 2.0, 'go': 2.0, 'hour': 1.0, 'do': 2.0, 'put': 1.0, 'fear': 1.0, 'much': 1.0, 'anyway': 1.0, 'use': 2.0, 'her': 2.0, 'keep': 1.0, 'cannot': 1.0, 'leak': 2.0, 'have': 1.0, 'rockin': 1.0, 'worked': 1.0, 'age': 1.0, '8': 1.0, 'can': 1.0, 'constantly': 1.0, 'they': 4.0, 'aren': 1.0, 'but': 2.0, 'going': 1.0, 'a': 6.0, 'will': 2.0, 'could': 1.0, 'what': 1.0, 'when': 3.0, 'you': 1.0, 'ai2': 1.0, 'probably': 1.0, 'shells': 1.0, 'idea': 1.0, 'is': 4.0, 'at': 3.0, 'kept': 1.0, 'absorbent': 1.0, 'than': 2.0, 's': 1.0, 'maybe': 1.0, 'yes': 1.0, 'outer': 1.0, 'seems': 1.0, 't': 2.0, 'fit': 1.0, '10': 1.0, 'for': 5.0, 'year': 1.0, 'product': 2.0, 'through': 1.0, 'ai1': 1.0, 'loved': 1.0, 'good': 1.0, 'my': 2.0, 'period': 1.0, 'same': 1.0, 'green': 2.0, 'recommended': 1.0, 'and': 9.0, 'money': 1.0, 'believe': 1.0, 'careful': 1.0, 'pee': 1.0, 'we': 5.0, 'fine': 1.0, 'experiencing': 1.0, 'really': 1.0, 'amazon': 1.0, 'the': 9.0, 'of': 4.0, 'set': 1.0, 'used': 1.0, 'system': 2.0, 'reviewed': 1.0, 'color': 1.0, 'get': 1.0, 'months': 3.0, '100': 1.0, 'another': 1.0, 'extra': 1.0, 'shell': 1.0, 'great': 1.0, 'seemed': 1.0, 'these': 2.0, 'babies': 2.0, 'more': 3.0, 'few': 2.0, 'this': 4.0, 'it': 6.0, 'covers': 1.0, 'insert': 1.0, 'changed': 1.0, 'bit': 1.0, 'on': 3.0, 'long': 1.0, 'lbs': 1.0, 'was': 1.0, 'everything': 1.0, 'in': 5.0, 'were': 1.0, 'everywhere': 1.0, 'that': 1.0, 'because': 1.0, 'thrilled': 1.0, '35': 1.0, 'by': 1.0, 'only': 2.0, 'laundry': 1.0, 'detergent': 1.0, 'or': 1.0, 'disappointed': 1.0, 'charlie': 1.0, 'soap': 1.0, 'diapers': 1.0, 'bad': 1.0, 'first': 3.0, 'are': 2.0, 'always': 1.0, 'about': 1.0, 'tucking': 1.0, 'after': 1.0, 'velcro': 1.0, 'before': 1.0, 'washing': 1.0, 'as': 1.0, 'diaper': 2.0, 'drying': 1.0, 'hand': 1.0, 'spend': 1.0, 'hold': 1.0, 'i': 10.0, 'well': 1.0, 'grobaby': 1.0, 'an': 3.0, 'all': 3.0, 'daughter': 2.0, 'bladder': 1.0, 'would': 2.0}
Word element => {'skinny': 1.0, 'also': 1.0, 'but': 1.0, 'way': 1.0, 'better': 1.0, 'now': 1.0, 'while': 1.0, 'setting': 1.0, 'him': 1.0, 'had': 1.0, 'year': 1.0, 'son': 1.0, 'my': 1.0, 'thick': 1.0, 'are': 1.0, 'since': 1.0, 'dry': 1.0, 'long': 1.0, 'of': 1.0, 'tallest': 1.0, 'to': 2.0, 'good': 1.0, 'the': 5.0, 'great': 1.0, 'reusing': 1.0, 'diaper': 1.0, 'they': 3.0, 'shells': 1.0, 'has': 1.0, 'far': 1.0, 've': 2.0, 'in': 1.0, 'reason': 1.0, 'before': 1.0, 'on': 1.0, 'except': 1.0, 'that': 1.0, 'been': 1.0, 'snap': 1.0, 're': 2.0, 'using': 1.0, 'it': 1.0, 'one': 1.0, 'months': 1.0, '4': 1.0, 'soakers': 1.0, 'poopy': 1.0, 'up': 1.0, 'drawback': 1.0, 'tall': 1.0, 'ds': 1.0, 'and': 5.0, 'time': 1.0, 'bit': 1.0, 'so': 1.0, 'old': 1.0, 'wind': 1.0, 'about': 1.0, 'several': 1.0, 'soaker': 1.0, 'need': 1.0, 'he': 1.0, '6': 1.0, 'washing': 1.0, 'you': 1.0, 'times': 1.0, 'when': 1.0, 'we': 3.0, 'go': 1.0, 'a': 5.0, 'fit': 1.0, 'for': 3.0, 'stars': 1.0, 'is': 4.0, 'pretty': 1.0, 'take': 1.0}
Word element => {'children': 1.0, 'continuing': 1.0, 'forward': 1.0, 'look': 1.0, 'options': 1.0, 'many': 1.0, 'needs': 1.0, 'so': 1.0, 'there': 1.0, 'hybrid': 1.0, 'a': 1.0, 'being': 1.0, 'less': 1.0, 'way': 1.0, 'had': 1.0, 'has': 1.0, 'son': 1.0, 'diapers': 1.0, 'other': 1.0, 'bulky': 1.0, 'are': 2.0, 'dry': 1.0, 'current': 1.0, 'year': 1.0, '5': 1.0, 'very': 1.0, 'also': 2.0, 'future': 1.0, 'petite': 1.0, 'is': 1.0, 'he': 1.0, 'and': 4.0, 'that': 1.0, 'i': 3.0, 'cloth': 4.0, 'old': 2.0, 'really': 2.0, 'experience': 1.0, 'rest': 1.0, 'rashes': 1.0, 'the': 3.0, 'diaper': 5.0, 'but': 1.0, 'change': 2.0, '2': 2.0, 'may': 1.0, 'my': 5.0, 'need': 1.0, 'with': 3.0, 'like': 1.0, 'chunky': 1.0, 'during': 1.0, 'tiny': 1.0, 'only': 2.0, 'trial': 1.0, '8': 1.0, 'your': 1.0, 'grovia': 4.0, '3': 1.0, 'above': 1.0, 'our': 1.0, 'as': 3.0, 'to': 2.0, 'was': 1.0, 'out': 1.0, 'it': 1.0, 'covers': 2.0, 'day': 1.0, 'definitely': 1.0, 'per': 1.0, 'him': 1.0, 'period': 1.0, 'while': 1.0, 'just': 1.0, 'started': 1.0, 'not': 2.0, 'snapping': 1.0, 'for': 2.0, 'fit': 2.0, 'inserts': 1.0, 'new': 1.0, 'each': 1.0, 'stood': 1.0, 'in': 1.0, 'diapering': 2.0, 'easily': 1.0, 'you': 1.0, 'when': 1.0, 'youngest': 1.0, 'months': 1.0, 'did': 1.0}
Word element => {'need': 1.0, 'functional': 1.0, 'very': 1.0, 'troublesome': 1.0, 'issue': 1.0, 'much': 1.0, 'hanging': 1.0, 'some': 1.0, 'leaves': 1.0, 'wings': 2.0, 'hold': 1.0, 'nothing': 1.0, 'droop': 1.0, 'wing': 1.0, 'also': 1.0, 'time': 1.0, 'size': 1.0, 'had': 1.0, 'full': 1.0, 'tucker': 1.0, 'were': 1.0, 'before': 1.0, 'may': 1.0, 'her': 1.0, 'higher': 1.0, 'figured': 1.0, 'go': 2.0, 'old': 1.0, '15': 1.0, 'unsnapped': 1.0, 'chunky': 2.0, 'be': 1.0, 'taller': 1.0, 'least': 1.0, 'short': 1.0, 'day': 2.0, 'through': 3.0, 'it': 4.0, 'isn': 1.0, 'addressed': 1.0, 'don': 1.0, 'going': 2.0, 'chances': 1.0, 'but': 4.0, 'snaps': 1.0, 'from': 1.0, 'that': 2.0, 'like': 2.0, 'really': 2.0, 'tried': 1.0, 'one': 1.0, 'rinse': 1.0, 'slimmer': 1.0, 'without': 1.0, 'tell': 1.0, 'so': 1.0, 'can': 2.0, 'wears': 1.0, 'almost': 1.0, 'girl': 1.0, 're': 1.0, 'themselves': 1.0, 'months': 1.0, 'legs': 1.0, 'snap': 2.0, 's': 3.0, 'we': 7.0, 'a': 5.0, 'won': 1.0, 'scratchy': 1.0, 'them': 1.0, 'she': 4.0, 'baby': 9.0, 'non': 1.0, 'they': 3.0, 'would': 1.0, 'boy': 1.0, 'our': 4.0, 'each': 2.0, '3': 3.0, 'any': 2.0, 'shells': 3.0, 'your': 3.0, 'and': 8.0, '1': 2.0, 'inserts': 1.0, 'colors': 1.0, 'make': 2.0, 'help': 1.0, 'several': 1.0, 'about': 1.0, 'no': 1.0, 'shell': 4.0, '2': 3.0, 'these': 6.0, 'closures': 1.0, 'to': 9.0, 'pretty': 1.0, 'bunching': 1.0, 'have': 8.0, 'not': 2.0, 'skin': 1.0, 'poops': 1.0, 'velcro': 3.0, 'few': 1.0, 'this': 2.0, 'walking': 1.0, 'perfect': 1.0, 'might': 1.0, 'attractive': 1.0, 'overall': 1.0, 'irritating': 1.0, 'skinny': 2.0, 'i': 7.0, '4': 2.0, 'by': 1.0, 'bright': 1.0, 'disposables': 1.0, 'the': 22.0, 'of': 6.0, 'irritate': 1.0, 'there': 3.0, 'for': 3.0, 't': 4.0, 'fit': 1.0, 'doesn': 1.0, 'lots': 2.0, 'part': 1.0, 'grew': 1.0, 'outgrow': 1.0, 'touch': 1.0, 'with': 5.0, 'smooth': 1.0, 'love': 2.0, 'fold': 1.0, 'middle': 1.0, 'right': 2.0, 'aio': 3.0, 'over': 1.0, 'every': 1.0, 'if': 3.0, 'you': 2.0, 'what': 2.0, 'when': 1.0, 'could': 1.0, 'will': 2.0, 'leakage': 1.0, 'bulkier': 1.0, 'fasten': 1.0, 'top': 1.0, 'an': 1.0, 'all': 2.0, 'other': 5.0, 'helps': 1.0, '5': 1.0, 'elastic': 3.0, 'in': 6.0, 'belly': 1.0, 'liner': 3.0, 'at': 2.0, 'patterns': 2.0, 'snug': 1.0, 'is': 7.0, 'rise': 2.0, 'around': 2.0, 'babies': 1.0, 'tabs': 4.0, 'more': 2.0, 'hug': 1.0, '6': 1.0, 'on': 3.0, 'liners': 2.0, 'change': 2.0, 'laundry': 1.0, 'up': 3.0, '7': 1.0, 'systems': 2.0, 'diaper': 1.0, 'overlapping': 1.0, 'slim': 1.0, 'cloth': 2.0, 'first': 1.0, 'are': 6.0, 'diapers': 2.0, 'way': 1.0, 'than': 3.0, 'under': 1.0, 'totally': 1.0, 'often': 1.0, 'period': 1.0}
Word element => {'others': 1.0, 'fast': 1.0, 'also': 1.0, 'some': 1.0, 'no': 1.0, 'absolutely': 1.0, 'had': 1.0, 'we': 1.0, 'wet': 1.0, 'soaking': 1.0, 'after': 1.0, 'problems': 1.0, 'day': 2.0, 'up': 1.0, 'daughter': 1.0, 'my': 1.0, 'compared': 1.0, 'nice': 1.0, 'trim': 1.0, 'diapers': 2.0, 'disposables': 1.0, 'fit': 1.0, 'have': 3.0, 'dry': 1.0, 'they': 1.0, 'since': 1.0, 'a': 2.0, 'pretty': 1.0, 'saver': 1.0, 'are': 1.0, 'these': 4.0, 'such': 2.0, 'the': 1.0, 'i': 3.0, 'woke': 1.0, 'and': 2.0, 'that': 1.0, 'soaker': 1.0, 'been': 1.0, 'nighttime': 1.0, 'is': 1.0, 'with': 2.0, 'cotton': 1.0, 'life': 1.0, 'using': 1.0, 'love': 2.0, 'for': 1.0}
Word element => {'silly': 1.0, 'little': 1.0, 'so': 1.0, 'are': 1.0, 'inserts': 1.0, 'use': 1.0, 'started': 1.0, 'just': 1.0, 'snap': 1.0, 'newborn': 2.0, 'see': 1.0, 'inside': 1.0, 'shell': 1.0, 'system': 1.0, 'fit': 1.0, 'love': 2.0, 'one': 1.0, 'looks': 1.0, 'it': 1.0, 'month': 1.0, 'seem': 1.0, 'to': 4.0, 'have': 4.0, 'but': 2.0, '2': 1.0, 'the': 8.0, 'more': 1.0, 'big': 1.0, 'comfortable': 1.0, 'great': 1.0, 'insert': 1.0, 'diaper': 1.0, 'with': 2.0, 'velcro': 1.0, 'year': 1.0, 'grobaby': 3.0, 'used': 1.0, 'i': 6.0, 'two': 1.0, 'would': 2.0, 'my': 2.0, 'only': 1.0, 'end': 1.0, 'like': 2.0, 'and': 3.0, 'get': 1.0, 's': 3.0, 't': 1.0, 'a': 3.0, 'that': 1.0, 'tabs': 1.0, 'rarely': 1.0, 'stay': 1.0, 'stuck': 2.0, 'in': 2.0, 'also': 1.0, 'old': 2.0, 'laundry': 1.0, 'usually': 1.0, 'don': 1.0, 'up': 1.0, 'of': 1.0}
Word element => {'started': 1.0, 'how': 1.0, 'actually': 1.0, 'offers': 1.0, 'giveaway': 2.0, 'customer': 1.0, 'leak': 1.0, 'diaper': 2.0, 'never': 1.0, 'after': 1.0, 'rise': 1.0, 'really': 1.0, 'before': 1.0, '12': 1.0, 'type': 1.0, 'had': 1.0, 'increased': 1.0, 'we': 1.0, 'in': 3.0, 'have': 3.0, 'a': 4.0, 'small': 1.0, 'you': 1.0, 'absorbent': 1.0, 'think': 3.0, 'on': 2.0, 'washes': 1.0, 'and': 6.0, 'love': 1.0, 'it': 1.0, 'she': 1.0, 'do': 3.0, 'but': 2.0, 'work': 1.0, 'easy': 1.0, 'use': 1.0, 'were': 1.0, 'free': 1.0, 'disagree': 1.0, 'of': 2.0, 'the': 6.0, 'they': 7.0, 'took': 1.0, 'cloth': 2.0, 'well': 1.0, 'i': 7.0, 'diapers': 2.0, 'are': 5.0, 'convinced': 1.0, 'break': 1.0, 'lot': 1.0, 'too': 1.0, 'ones': 1.0, 'my': 3.0, 'me': 2.0, 'not': 1.0, 'pretty': 1.0, 'to': 6.0, 'husband': 1.0, 'issue': 1.0, 'which': 1.0, 'good': 2.0, 'them': 7.0, 'insanely': 1.0, 'or': 1.0, 'so': 2.0, 'trim': 1.0, 'compared': 1.0, 'part': 1.0, 'with': 3.0, 'being': 2.0, 'is': 4.0, 'probably': 1.0, 'size': 1.0, 'performing': 1.0, 'that': 4.0, 'because': 1.0, 'tall': 1.0, 'new': 1.0, 'only': 2.0, 'company': 1.0, 'biggest': 1.0, 'by': 1.0, 'fits': 1.0, 'grobaby': 2.0, 'other': 1.0, 'an': 1.0, 'loves': 1.0, 'inch': 1.0, 'did': 1.0, 'daughter': 1.0, 'now': 1.0, 'said': 1.0, '18': 1.0, 'used': 1.0, 'get': 1.0, 'months': 2.0, '24': 1.0, '10': 1.0, '32': 1.0, 'best': 1.0, 'inches': 1.0, 'great': 2.0, 'appreciation': 1.0, 'until': 1.0, 'lbs': 1.0, 'was': 1.0, 'old': 1.0, 'about': 1.0}
Word element => {'placement': 1.0, 'right': 1.0, 'practice': 1.0, 'takes': 1.0, 'reason': 1.0, 'awesome': 1.0, 'soaker': 1.0, 'quality': 1.0, 'overall': 1.0, 'through': 1.0, 'fit': 1.0, 'for': 2.0, 'opportunity': 1.0, 'creating': 1.0, 'of': 2.0, 'sort': 1.0, 'it': 3.0, 'side': 1.0, 'gusset': 1.0, 'that': 2.0, 'realized': 1.0, 'checked': 1.0, 'wasn': 1.0, 'out': 2.0, 'figured': 1.0, 'i': 4.0, 'experience': 1.0, 'tucked': 1.0, 'and': 4.0, 'to': 2.0, 'as': 1.0, 'under': 1.0, 'rolled': 1.0, 'test': 1.0, 'hit': 1.0, 'some': 2.0, 'is': 2.0, 'completely': 1.0, 'noted': 1.0, 'reviewers': 1.0, 'both': 1.0, 'with': 1.0, 'this': 2.0, 'cotton': 1.0, 'first': 1.0, 'grovia': 1.0, 'on': 2.0, 't': 1.0, 'a': 2.0, 's': 2.0, 'end': 1.0, 'poop': 4.0, 'bf': 1.0, 'just': 2.0, 'the': 10.0, 'website': 1.0, 'tad': 1.0, 'received': 1.0, 'how': 1.0, 'drove': 1.0, 'using': 1.0, 'one': 1.0, 'system': 2.0, 'good': 2.0, 'shell': 1.0, 'can': 1.0, 'organic': 1.0, 'user': 1.0, 'soakers': 1.0, '1st': 1.0, 'diaper': 1.0, 'leak': 2.0, 'insert': 2.0, 'leaked': 2.0, 'target': 1.0, 'mesh': 1.0, 'second': 1.0, 'even': 1.0, '2nd': 1.0, 'was': 2.0, 'get': 1.0, 'awards': 1.0, 'explosive': 1.0, 'you': 1.0, 'when': 1.0}
Word element => {'with': 1.0, 'expected': 1.0, 'be': 1.0, 'home': 1.0, 'come': 1.0, 'when': 1.0, 'finish': 1.0, 'usually': 1.0, 'line': 1.0, 'dry': 1.0, 'take': 1.0, 'leak': 1.0, 'yet': 1.0, 'very': 1.0, 'the': 4.0, 'but': 1.0, '2': 1.0, 'these': 2.0, 'do': 1.0, 'try': 1.0, 'all': 1.0, 'to': 5.0, 'just': 1.0, 'and': 5.0, 'pockets': 1.0, 'i': 3.0, 'using': 1.0, 'for': 1.0, 'love': 1.0, 'mostly': 1.0, 'laws': 1.0, 'a': 1.0, 'we': 2.0, 'dryer': 1.0, 'have': 2.0, 'that': 1.0, 'been': 1.0, 'are': 5.0, 'cding': 1.0, 'decided': 1.0, 'months': 1.0, 'about': 1.0, 'soakers': 1.0, 'recently': 1.0, 'time': 1.0, 'shells': 1.0, 'they': 3.0, 'system': 1.0, 'how': 3.0, 'full': 1.0, 'hybrid': 1.0, 'soft': 1.0, 'easy': 1.0, 'it': 1.0, 'is': 2.0, 'snap': 1.0, 'on': 1.0, 'grovia': 1.0, 'absorbent': 2.0, 'them': 2.0, 'out': 1.0, 'in': 3.0, 'of': 1.0, 'daddy': 1.0, 'day': 1.0, 'definitely': 1.0, 'now': 1.0, 'friendly': 1.0}
Word element => {'recommend': 1.0, 'option': 1.0, 'highly': 1.0, 'cloth': 1.0, 'overlooked': 1.0, 'a': 1.0, 'i': 1.0, 'diapering': 1.0, 'trim': 1.0, 'the': 1.0, 'fantastic': 1.0, 'how': 1.0, 'love': 1.0, 'grovia': 1.0, 'is': 1.0, 'with': 1.0, 'such': 1.0, 'these': 1.0, 'diaper': 1.0, 'inserts': 1.0}
Word element => {'compared': 1.0, 'disposables': 1.0, 'spendy': 1.0, 'expensive': 1.0, 'bottoms': 1.0, 'second': 1.0, 'close': 1.0, 'flips': 1.0, 'extra': 1.0, 'coupe': 1.0, 'economical': 1.0, 'just': 2.0, 'easier': 1.0, 'pocket': 2.0, 'or': 3.0, 'all': 2.0, 'than': 2.0, 'it': 1.0, 'no': 1.0, 'yet': 1.0, 'had': 1.0, 'while': 1.0, 'found': 1.0, 'leaked': 1.0, 'shifted': 1.0, 'insert': 1.0, 'around': 1.0, 'scooting': 1.0, 'where': 1.0, 'incidents': 1.0, 'some': 2.0, 'there': 1.0, 'pads': 1.0, 'ones': 2.0, 'lot': 1.0, 'hold': 1.0, 'completely': 1.0, 'in': 5.0, 'stay': 1.0, 'susally': 1.0, 'laundry': 1.0, 'up': 1.0, 'flushable': 1.0, 'a': 8.0, 't': 3.0, 'once': 1.0, 'these': 3.0, 'after': 1.0, 'she': 3.0, 'baby': 1.0, 'night': 1.0, 'has': 3.0, 'next': 1.0, 'them': 1.0, 'my': 3.0, 'hopefully': 1.0, 'with': 6.0, 'ecing': 1.0, 'earth': 1.0, 'booster': 1.0, 'tot': 1.0, 'bad': 1.0, 'are': 6.0, 'poo': 1.0, 'diapers': 3.0, 'loads': 1.0, 'really': 3.0, 'flip': 1.0, 'at': 1.0, 'is': 2.0, 'kissaluvs': 1.0, 'more': 4.0, 'daughter': 2.0, 'diapering': 1.0, 'everything': 1.0, 'traces': 1.0, 'for': 2.0, '10': 1.0, 'being': 1.0, 'via': 4.0, 'take': 1.0, 'said': 1.0, 'bumgenious': 1.0, 'little': 1.0, 'layers': 1.0, 'been': 3.0, 'have': 5.0, 'dryer': 2.0, 'instead': 1.0, 'even': 1.0, 'cloth': 1.0, 'i': 13.0, 'her': 1.0, 'use': 3.0, 'thirstiest': 1.0, 'out': 3.0, 'stains': 1.0, 'gro': 4.0, 'couple': 1.0, 'blueberries': 1.0, 'buying': 1.0, 'brand': 2.0, 'best': 2.0, 'fuzzibunz': 1.0, 'ok': 1.0, 'tured': 1.0, '11': 1.0, 'side': 2.0, 'prefolds': 2.0, 'of': 4.0, 'the': 12.0, 'hanging': 1.0, 'bots': 1.0, 'travel': 1.0, 'will': 1.0, 'put': 1.0, 'floor': 1.0, 'butt': 1.0, 'do': 1.0, 'and': 12.0, 'though': 2.0, 'summer': 1.0, 'help': 1.0, 'crawler': 1.0, 'like': 2.0, 'covers': 2.0, 'gdiapers': 2.0, 'double': 1.0, 'they': 8.0, 'aren': 1.0, 'so': 2.0, 'can': 2.0, 'but': 2.0, 'ended': 1.0, 'perfect': 1.0, 'pain': 1.0, 'scooter': 1.0, 'highly': 1.0, 'this': 1.0, 'stain': 1.0, 'disposable': 1.0, 'be': 2.0, 'pretty': 1.0, 'to': 8.0, 'inserts': 4.0, 'clean': 1.0, 'horrible': 1.0, 'diaper': 6.0, 'sprayer': 1.0, 'that': 1.0, 'easily': 1.0, 'because': 1.0, 'recommend': 1.0, 'on': 3.0, 'liners': 2.0, 'haven': 2.0, 'tried': 3.0, 'anyother': 1.0, 'not': 2.0, 'dry': 3.0, 'months': 2.0, 'get': 2.0, 'bag': 1.0, 'using': 2.0, 'forever': 1.0}
Word element => {'absorbency': 1.0, 'in': 1.0, 'bigger': 1.0, 'bit': 1.0, 'front': 1.0, 'a': 1.0, 'if': 1.0, 'be': 1.0, 'clothes': 1.0, 'over': 1.0, 'wakes': 1.0, 'day': 1.0, 'use': 1.0, 'her': 1.0, 'even': 1.0, 'during': 1.0, 'would': 1.0, 'convenience': 1.0, 'of': 1.0, 'booster': 1.0, 'urine': 1.0, 'and': 2.0, 'ease': 1.0, 'for': 3.0, 'us': 1.0, 'daughter': 1.0, 'more': 1.0, 'these': 1.0, 'the': 2.0, 'great': 2.0, 'without': 1.0, 'month': 1.0, 'but': 1.0, 'naps': 1.0, 'sometimes': 1.0, 'it': 2.0, 'with': 2.0, 'were': 1.0, 'our': 1.0, 'all': 1.0, '8': 1.0, 'old': 1.0}
Word element => {'have': 1.0, 'if': 1.0, 'sense': 1.0, 'back': 1.0, 'front': 1.0, 'thinner': 1.0, 'than': 1.0, 'because': 1.0, 'weird': 1.0, 'insert': 1.0, 'plus': 1.0, 'out': 1.0, 'right': 1.0, 'in': 3.0, 'pees': 1.0, 'problems': 1.0, 'with': 1.0, 'long': 1.0, 'of': 1.0, 'wetter': 1.0, 'his': 1.0, 'doesn': 1.0, 'was': 1.0, 'no': 2.0, 'even': 3.0, 'heavy': 1.0, 'first': 1.0, 'the': 5.0, 'chunky': 1.0, 'prepped': 1.0, 'these': 1.0, 'a': 3.0, 's': 2.0, 't': 2.0, 'bought': 1.0, 'fit': 1.0, 'product': 1.0, 'for': 2.0, 'skinny': 1.0, 'every': 1.0, 'til': 1.0, 'its': 2.0, 'as': 2.0, 'all': 1.0, 'to': 1.0, 'soon': 1.0, 'and': 3.0, 'get': 1.0, 'checkup': 1.0, 'everybody': 1.0, 'tried': 1.0, 'did': 1.0, 'like': 1.0, 'wrong': 1.0, 'me': 1.0, 'not': 3.0, 'don': 1.0, 'night': 1.0, 'them': 2.0, 'baby': 3.0, 'wore': 2.0, 'this': 3.0, 'he': 8.0, 'month': 1.0, 'it': 4.0, 'boy': 1.0, 'time': 2.0, 'pocket': 1.0, 'they': 1.0, 'my': 2.0, 'legs': 1.0, 'leaked': 2.0, 'are': 1.0, 'through': 2.0, 'wear': 1.0, 'should': 1.0, 'is': 2.0, 'around': 1.0, 'says': 1.0, '8': 1.0, 'i': 4.0, 'pounds': 4.0, 'make': 1.0, 'on': 1.0, 'leaks': 1.0, '12': 1.0, 'can': 1.0, '2': 1.0, 'but': 2.0, 'single': 1.0, 'read': 1.0, 'somewhere': 1.0, 'you': 2.0, '15': 2.0, 'wait': 1.0, '13': 1.0, 'at': 3.0}
Word element => {'sooner': 1.0, 'switched': 1.0, 'i': 4.0, 'softest': 1.0, 'have': 2.0, 'system': 2.0, 'make': 1.0, 'ai2': 1.0, 'we': 1.0, 'love': 1.0, 'for': 1.0, 'covers': 1.0, 'out': 1.0, 'they': 1.0, 'baby': 1.0, 'cloth': 1.0, 'soakers': 1.0, 'gro': 1.0, 'insert': 1.0, 'are': 1.0, 'which': 1.0, 'my': 2.0, 'the': 2.0, 'and': 2.0, 'up': 1.0, 'there': 1.0, 'son': 1.0, 'he': 1.0, 'tried': 1.0, 'fitted': 1.0, 'is': 2.0, 'second': 1.0, 'all': 1.0, 'our': 2.0, 'to': 1.0, 'had': 1.0, 'use': 1.0, 'every': 1.0, 'pockets': 1.0, 'diapers': 1.0, 'pre': 1.0, 'folds': 1.0, 'ai1': 1.0, 'different': 1.0, 'found': 1.0, 'this': 1.0, 'wish': 1.0, 'brands': 1.0, 'favorit': 1.0}
Word element => {'i': 1.0, 'them': 2.0, 'still': 1.0, 'to': 1.0, 'after': 1.0, 'work': 1.0, 'dry': 1.0, 'as': 2.0, 'cloth': 1.0, 'any': 1.0, 'use': 1.0, 'diapers': 1.0, 'you': 1.0, 'however': 2.0, 'wash': 1.0, 'pads': 1.0, 'forever': 1.0, 'they': 1.0, 'well': 1.0, 'take': 1.0}
Word element => {'for': 2.0, 'looking': 1.0, 'grovia': 1.0, 'away': 1.0, 'steering': 1.0, 'f': 1.0, 'wt': 1.0, 'absorbs': 1.0, 'longest': 1.0, 'takes': 1.0, 'either': 1.0, 'advertises': 1.0, 'like': 1.0, 'were': 1.0, 'out': 2.0, 'son': 1.0, 'is': 2.0, 'my': 2.0, 'the': 4.0, 'diaper': 2.0, 'no': 1.0, 'and': 3.0, 'works': 1.0, 'only': 1.0, 'this': 2.0, 'he': 2.0, 'it': 3.0, 'pad': 1.0, 'from': 1.0, 'soaked': 1.0, 'old': 1.0, 'will': 1.0, 'failed': 1.0, 'of': 4.0, 'something': 1.0, 'onsie': 1.0, 'three': 1.0, 'lot': 1.0, 'has': 1.0, 'why': 1.0, 'dry': 2.0, 'after': 1.0, 'there': 1.0, 'peeing': 1.0, 'that': 2.0, 'miserably': 1.0, 'least': 1.0, 'pads': 1.0, 'all': 1.0, 'to': 1.0, 'sleep': 1.0, 'i': 1.0, '4': 1.0, 'months': 1.0, 'hours': 1.0, 'should': 1.0, 'be': 2.0, 'design': 1.0, 'reason': 1.0, 'needs': 1.0, 'soaker': 1.0, 'does': 1.0, 'bedding': 1.0, 's': 2.0, 'a': 1.0, 'work': 1.0, 'me': 2.0, 'not': 1.0, 'fast': 1.0}
Word element => {'snap': 1.0, 'stars': 1.0, 'three': 1.0, 'gave': 1.0, 'recommend': 1.0, 'said': 1.0, 'before': 1.0, 'clean': 1.0, 'legs': 1.0, 'get': 1.0, 'pain': 1.0, 'royal': 1.0, 'its': 1.0, 'between': 1.0, 'stuck': 1.0, 'layers': 1.0, 'gets': 1.0, 'poop': 1.0, 'just': 1.0, 'why': 1.0, 'sure': 1.0, 'two': 2.0, 'is': 1.0, 'issue': 1.0, 'tossing': 1.0, 'bebes': 1.0, 'touching': 1.0, 'want': 1.0, 'out': 1.0, 'nothing': 1.0, 'backing': 1.0, 'scratchy': 1.0, 'almost': 1.0, 'become': 1.0, 'additionally': 1.0, 'sun': 3.0, 'dried': 2.0, 'drys': 1.0, 'than': 1.0, 'sprayed': 1.0, 'worse': 1.0, 'stain': 1.0, 'detergent': 1.0, 'cd': 1.0, 'their': 1.0, 'waterproof': 1.0, 'instructions': 1.0, 'washing': 2.0, 's': 1.0, 'follow': 1.0, 'many': 1.0, 'was': 2.0, 'so': 1.0, 'peed': 1.0, 'really': 2.0, 'absorbs': 1.0, 'issues': 1.0, 'but': 2.0, 'organic': 1.0, 'soon': 1.0, 'recommended': 1.0, 'and': 6.0, 'drying': 1.0, 'as': 3.0, 'pads': 5.0, 'to': 6.0, 'wick': 1.0, 'does': 1.0, 'initially': 1.0, 'knew': 2.0, 'these': 5.0, 'every': 1.0, 'expecting': 2.0, 'stay': 5.0, 'end': 1.0, 'prefer': 1.0, 'wet': 1.0, 'any': 2.0, 'feel': 1.0, 'purchased': 1.0, 'system': 2.0, 'grovia': 5.0, 'forever': 1.0, 'using': 2.0, 'which': 1.0, 'hold': 1.0, 'ds': 1.0, 'of': 6.0, 'the': 17.0, 'while': 1.0, 'pee': 1.0, 'i': 21.0, 'what': 1.0, 'when': 5.0, 'highly': 1.0, 'this': 2.0, 'love': 2.0, 'bottom': 1.0, 'he': 1.0, 'already': 1.0, 'it': 1.0, 'resort': 2.0, 'elaborated': 1.0, 'fleece': 1.0, 'soaker': 5.0, 'away': 1.0, 'not': 5.0, 'dry': 5.0, 'started': 1.0, 'them': 3.0, 'would': 2.0, 'up': 1.0, 'knowing': 1.0, 'day': 1.0, 'short': 1.0, 'pad': 2.0, 'wasn': 1.0, 't': 2.0, 'moisture': 1.0, 'a': 5.0, 'noticed': 1.0, 'on': 1.0, 'long': 1.0, 'gussets': 1.0, 'cotton': 2.0, 'list': 1.0, 'ply': 1.0, 'take': 1.0, 'then': 2.0, 'dryer': 1.0, 'have': 3.0, 'with': 2.0, 'below': 1.0, 'm': 1.0, 'in': 6.0, 'opinion': 1.0, '10': 2.0, 'for': 1.0, 'they': 9.0, 'because': 2.0, 'that': 3.0, 'fall': 1.0, 'even': 5.0, 'much': 1.0, 'do': 3.0, 'only': 1.0, 'use': 2.0, 'booster': 1.0, 'top': 1.0, 'are': 6.0, 'very': 1.0, 'last': 3.0, 'my': 5.0, 'reasons': 1.0, 'rather': 1.0, 'care': 1.0, 'anything': 1.0, '2nd': 1.0, 'mimic': 1.0, 'lot': 1.0, 'smell': 1.0, 'terrible': 1.0, 'second': 1.0, 'easy': 1.0, 'touches': 1.0, 'brand': 1.0, 'insert': 1.0, 'ive': 1.0, 'dream': 1.0, 'ever': 1.0}
Word element => {'through': 1.0, 'flowing': 1.0, 'breeze': 1.0, 'had': 1.0, 'do': 1.0, 'seemed': 1.0, 'when': 2.0, 'were': 2.0, 'going': 1.0, 'ours': 1.0, 'preparing': 1.0, 'fully': 1.0, 'mistake': 1.0, 'little': 1.0, 'layers': 1.0, 'on': 2.0, 'wash': 1.0, 'use': 2.0, 'you': 3.0, 'almost': 1.0, 'a': 2.0, 'cycles': 1.0, 'to': 13.0, '5': 1.0, 'before': 1.0, 'and': 2.0, 'organic': 3.0, 'work': 1.0, 'need': 1.0, 'due': 1.0, 'soaker': 3.0, 'one': 1.0, 'for': 2.0, 'made': 1.0, 'review': 1.0, '6': 1.0, 'hanging': 2.0, 'nicely': 1.0, 'first': 1.0, 'start': 1.0, 'is': 1.0, 'both': 5.0, 'best': 2.0, 'cotton': 1.0, 'stays': 1.0, 'be': 1.0, 'wetness': 3.0, 'this': 2.0, 'found': 1.0, 'soakers': 1.0, 'i': 2.0, 'it': 2.0, 'time': 1.0, 'can': 1.0, 'so': 2.0, 'not': 1.0, 'dry': 6.0, 'feel': 1.0, 'your': 1.0, 'shells': 1.0, 'cons': 1.0, 'non': 1.0, 'stay': 3.0, 'if': 3.0, 'being': 1.0, 'that': 3.0, 'them': 2.0, 'next': 1.0, 'matters': 2.0, 'soakeri': 1.0, 'panels': 1.0, 'have': 1.0, 'dryer': 1.0, 'check': 1.0, 'top': 1.0, 'between': 1.0, 'pocket': 1.0, 'grovia': 1.0, 'see': 1.0, 'wetpros': 1.0, 'quicker': 1.0, 'from': 2.0, 'washedkeep': 1.0, 'away': 1.0, 'babyorganic': 1.0, 'with': 2.0, 'cottoncons': 1.0, 'we': 1.0, 'take': 2.0, 'forever': 1.0, 'even': 1.0, 'will': 2.0, 'sticking': 1.0, 'in': 1.0, 'babypros': 1.0, 'drying': 2.0, 'factor': 1.0, 'of': 3.0, 'the': 11.0, 'longer': 1.0, 'inner': 1.0, 'than': 1.0, 'better': 1.0, 'flip': 1.0, 'basics': 1.0, 'out': 1.0}
Word element => {'go': 1.0, 'times': 1.0, 'few': 1.0, 'shell': 1.0, 'reuse': 1.0, 'laundry': 1.0, 'be': 1.0, 'before': 1.0, 'soaker': 1.0, 'just': 1.0, 'nice': 1.0, 'change': 1.0, 'is': 1.0, 'much': 1.0, 'absorbs': 1.0, 'and': 2.0, 'been': 1.0, 'morning': 1.0, 'washes': 1.0, 'to': 5.0, 'a': 2.0, 'are': 1.0, 'baby': 1.0, 'soakers': 1.0, 'so': 2.0, 'able': 1.0, 'have': 1.0, 'nicely': 1.0, 'the': 5.0, 'these': 1.0, 'has': 1.0, 'dry': 1.0, 'they': 1.0, 'i': 1.0, 'having': 1.0, 'key': 1.0, 'in': 2.0, 'also': 2.0, 'love': 1.0, 'that': 1.0, 'it': 3.0, 'cotton': 1.0}
Word element => {'or': 1.0, 'flip': 1.0, 'my': 1.0, 'used': 1.0, 'if': 1.0, 'am': 1.0, 'soakers': 1.0, 'consistantly': 1.0, 'having': 1.0, 'work': 1.0, 'but': 1.0, 'shell': 1.0, 'not': 1.0, 'was': 1.0, 'covers': 2.0, 'mountain': 1.0, 'a': 2.0, 'love': 1.0, 'grovia': 1.0, 'on': 1.0, 'wetter': 1.0, 'of': 1.0, 'green': 1.0, 'i': 4.0, 'trifolds': 1.0, 'leaks': 1.0, 'really': 1.0, 'fan': 1.0, 'have': 1.0, 'great': 1.0, 'the': 4.0, 'heavy': 1.0, 'and': 1.0}
Word element => {'absolutely': 1.0, 'that': 1.0, 'grovias': 1.0, 'boost': 1.0, 'last': 1.0, 'the': 3.0, 't': 2.0, 'a': 1.0, 'ended': 1.0, 'night': 1.0, 'i': 3.0, 'dry': 1.0, 'purchased': 1.0, 'pad': 1.0, 'use': 1.0, 'and': 2.0, 'my': 1.0, 'of': 2.0, 'don': 2.0, 'over': 1.0, 'up': 1.0, 'stay': 1.0, 'are': 1.0, 'durable': 1.0, 'buying': 1.0, 'with': 1.0, 'this': 1.0, 'much': 2.0, 'try': 1.0, 'only': 1.0, 'but': 1.0, 'work': 1.0, 'they': 3.0, 'suck': 1.0, 'love': 1.0, 'product': 1.0, 'for': 1.0, 'liners': 1.0, 'to': 2.0, 'pads': 1.0, 'actual': 1.0, 'add': 1.0, 'these': 1.0, 'some': 1.0, 'hemp': 1.0, 'is': 1.0, 'boosters': 1.0, 'their': 1.0, 'better': 1.0, 'make': 1.0, 'grovia': 1.0}
Word element => {'book': 1.0, 'keeps': 1.0, 'which': 1.0, 'pictures': 1.0, 'by': 1.0, 'solved': 1.0, 'have': 1.0, 'interesting': 1.0, 'rotating': 1.0, 'and': 3.0, 'open': 1.0, 'to': 1.0, 'is': 1.0, 'photo': 1.0, 'tab': 1.0, 'picture': 1.0, 'cover': 1.0, 'that': 2.0, 'the': 2.0, 'made': 1.0, 'new': 1.0, 'especially': 1.0, 'limitation': 1.0, 'holds': 1.0, 'well': 1.0, 'only': 2.0, 'with': 1.0, 'it': 1.0, 'durable': 1.0, 'reveal': 1.0, 'charming': 1.0, '5': 1.0, 'photos': 1.0, 'we': 1.0}
Word element => {'teether': 1.0, 'especially': 1.0, 'engaging': 1.0, 'make': 1.0, 'flaps': 1.0, 'open': 1.0, 'lift': 1.0, 'there': 1.0, 'the': 3.0, 'it': 3.0, 'with': 1.0, 'this': 1.0, 'him': 1.0, 'adopt': 1.0, 'and': 1.0, 'for': 1.0, 'one': 1.0, 'internationally': 1.0, 'waited': 1.0, 'so': 1.0, 'wouldn': 1.0, 'got': 1.0, 'loved': 2.0, 'purchased': 1.0, 'much': 1.0, 'was': 1.0, 'more': 2.0, 'is': 1.0, 'to': 4.0, 'our': 1.0, 'that': 3.0, 'baby': 1.0, 'don': 1.0, 'return': 1.0, 's': 1.0, 't': 2.0, 'a': 1.0, 'we': 1.0, 'other': 1.0, 'remember': 1.0, 'us': 2.0, 'while': 1.0, 'than': 1.0, 'sassy': 1.0, 'like': 1.0, 'i': 2.0, 'he': 3.0, 'plastic': 1.0, 'item': 1.0, 'leave': 1.0, 'have': 1.0, 'fabric': 1.0, 'moon': 1.0, 'if': 1.0, 'knew': 1.0, 'leaving': 1.0, 'ok': 1.0}
Word element => {'now': 1.0, 'as': 1.0, 'use': 1.0, 'through': 1.0, 'get': 1.0, 'that': 1.0, 'just': 1.0, 'because': 1.0, 'backups': 1.0, 'stars': 1.0, 'they': 1.0, 'confident': 1.0, 'cheaper': 1.0, 'night': 1.0, 'i': 2.0, 'im': 1.0, 'fab': 1.0, 'these': 1.0, 'the': 1.0, 'more': 2.0, 'gave': 1.0, 'thirsties': 2.0, 'he': 1.0, 'this': 1.0, 'skin': 1.0, 'my': 1.0, 'absorbant': 1.0, '4': 1.0, 'on': 1.0, 'in': 1.0, 'softer': 1.0, 'babies': 1.0, 'are': 1.0, 'yes': 1.0, 'will': 1.0, 'doublers': 1.0, 'but': 1.0, 'work': 1.0}
Word element => {'one': 1.0, 'is': 1.0, 'and': 1.0, 'dry': 1.0, 'keep': 1.0, 'to': 1.0, 'different': 1.0, 'plus': 1.0, 'of': 1.0, 've': 1.0, 'in': 2.0, 'blessed': 1.0, 'booster': 1.0, 'at': 1.0, 'things': 1.0, 'hours': 1.0, 'd': 1.0, 'but': 1.0, 'thing': 1.0, 'all': 1.0, 'baby': 2.0, 'sleeps': 1.0, 'several': 1.0, 'cosleeping': 1.0, 'a': 5.0, 'snacking': 2.0, 'with': 1.0, 'works': 1.0, 'results': 1.0, 'm': 1.0, 'that': 2.0, 'besides': 1.0, 'diaper': 1.0, 'pee': 1.0, 'the': 2.0, 'tried': 1.0, 'i': 2.0, 'night': 3.0, 'good': 1.0, 'grovia': 1.0, 'sleeping': 1.0, '12': 1.0, 'lot': 1.0}
Word element => {'train': 1.0, 'to': 1.0, 'young': 1.0, 'for': 1.0, 'easier': 1.0, 'potty': 1.0, 'much': 1.0, 'not': 1.0, 'night': 1.0, 'learning': 1.0, 'especially': 1.0, 'through': 1.0, 'make': 1.0, 'be': 1.0, 'soaking': 1.0, 'sleep': 1.0, 'grovia': 1.0, 'daughter': 1.0, 'in': 1.0, 'and': 1.0, 'wet': 1.0, 'toddlers': 1.0, 'can': 1.0, 'morning': 1.0, 'with': 1.0, 'inserts': 1.0, 'help': 1.0, 'of': 1.0, 'the': 4.0, 'these': 1.0, 'they': 1.0, 'my': 1.0, 'trainer': 1.0}
Word element => {'wouldn': 1.0, 'however': 1.0, 'are': 1.0, 'help': 1.0, 'absorbency': 1.0, 'wish': 1.0, 'say': 1.0, 'is': 2.0, 'from': 1.0, 'worked': 1.0, 'son': 1.0, 'better': 1.0, 'if': 2.0, 'because': 1.0, 'boosters': 1.0, 'bulk': 1.0, 'extra': 2.0, 'nice': 1.0, 'great': 1.0, 'my': 1.0, 'too': 1.0, 'and': 1.0, 'hoping': 1.0, 'recommend': 1.0, 'leaking': 2.0, 'was': 1.0, 't': 2.0, 'could': 1.0, 'a': 3.0, 'would': 2.0, 'super': 1.0, 'keep': 1.0, 'at': 2.0, 'i': 4.0, 'they': 2.0, 'your': 2.0, 'him': 1.0, 'be': 1.0, 'for': 1.0, 'add': 1.0, 'these': 4.0, 'rides': 1.0, 'naps': 1.0, 'car': 1.0, 'or': 1.0, 'times': 1.0, 'when': 1.0, 'you': 1.0, 'soaker': 1.0, 'need': 1.0, 'little': 2.0, 'just': 1.0, 'majorly': 1.0, 'not': 1.0, 'don': 1.0, 'over': 1.0, 'night': 3.0, 'baby': 2.0, 'needs': 1.0, 'much': 1.0, 'only': 1.0}
Word element => {'wipe': 1.0, 'cloth': 1.0, 'soapy': 1.0, 'clean': 1.0, 'just': 1.0, 'that': 1.0, 'company': 1.0, 'machine': 1.0, 'description': 1.0, 'here': 1.0, 'reflectors': 1.0, 'without': 1.0, 'more': 1.0, 'damp': 1.0, 'if': 1.0, 'another': 1.0, 'attach': 1.0, 'you': 2.0, 'unhook': 1.0, 'for': 5.0, 'recommends': 1.0, 'art': 1.0, 'can': 5.0, 'stored': 1.0, 'and': 7.0, 'holder': 1.0, 'sandwich': 1.0, 'insulated': 2.0, 'one': 3.0, 'other': 2.0, 'an': 3.0, 'stand': 1.0, 'bottom': 1.0, 'help': 1.0, 'on': 7.0, 'bowl': 1.0, 'against': 1.0, 'to': 7.0, 'has': 4.0, 'easier': 1.0, 'semester': 1.0, 'daughter': 1.0, 'any': 1.0, 'name': 1.0, 'it': 10.0, 'she': 1.0, 'bottle': 3.0, 'this': 3.0, 'kids': 1.0, 'bag': 3.0, 'before': 1.0, 'use': 1.0, 'her': 2.0, 'envelope': 1.0, 'i': 1.0, 'k': 1.0, 'pvc': 1.0, 'was': 1.0, 'than': 2.0, 'ice': 1.0, 'there': 1.0, 'also': 4.0, 'containers': 1.0, 'backpack': 1.0, 'space': 1.0, 'who': 1.0, 'since': 1.0, 'washable': 1.0, 'books': 1.0, 'carry': 3.0, 'thermos': 1.0, 'made': 1.0, 'good': 1.0, 'side': 2.0, 'lunch': 2.0, 'which': 1.0, 'second': 1.0, 'but': 3.0, 'write': 1.0, 'my': 1.0, 'jar': 2.0, 'of': 1.0, 'the': 13.0, 'pads': 1.0, 'place': 1.0, 'pre': 1.0, 'materials': 1.0, 'strap': 1.0, 's': 4.0, 'fit': 2.0, 't': 1.0, 'funtainer': 1.0, 'safety': 1.0, 'size': 1.0, 'with': 1.0, 'snack': 1.0, 'food': 2.0, 'need': 2.0, 'or': 4.0, 'container': 1.0, 'added': 1.0, 'a': 9.0, 'small': 1.0, 'pack': 1.0, 'store': 1.0, 'papers': 1.0, 'sturdy': 1.0, 'is': 3.0, 'handle': 1.0, 'top': 1.0, 'toxic': 1.0, 'back': 3.0, 'says': 1.0, 'straps': 2.0, 'projects': 1.0, 'be': 1.0, 'used': 2.0, 'unhooked': 1.0, 'in': 1.0, 'pocket': 2.0, 'child': 1.0, 'shoulder': 1.0, 'don': 1.0, 'front': 2.0, 'not': 1.0, 'big': 2.0, 'enough': 1.0, 'large': 1.0, 'folded': 1.0, 'letter': 1.0}
Word element => {'sure': 1.0, 'kids': 1.0, 'friends': 1.0, 'recommend': 1.0, 'pounds': 1.0, '11': 1.0, 'their': 1.0, 'should': 1.0, 'much': 1.0, 'then': 1.0, 'more': 2.0, 'needs': 1.0, 'if': 1.0, 'student': 1.0, 'kid': 1.0, 'fourth': 1.0, 'kindergarten': 1.0, '10': 1.0, 'for': 2.0, 'perfect': 1.0, 'mitten': 1.0, 'season': 1.0, 'during': 1.0, 'those': 1.0, 'inside': 1.0, 'stuffed': 1.0, 'also': 1.0, 'has': 1.0, 'rest': 1.0, 'days': 1.0, 'without': 1.0, 'alone': 1.0, 'girls': 1.0, 'texts': 1.0, 'large': 1.0, 'just': 1.0, 'could': 1.0, 'items': 1.0, 'other': 2.0, 'these': 1.0, 'text': 1.0, 'non': 1.0, 'three': 2.0, 'say': 1.0, 'not': 3.0, 'typical': 1.0, 'hold': 2.0, 'very': 1.0, 'attractive': 1.0, 'far': 1.0, 'grade': 2.0, 'adjustments': 1.0, '15': 1.0, 'includes': 1.0, 'her': 2.0, 'body': 1.0, 'as': 4.0, 'pretty': 1.0, 'to': 8.0, 'through': 1.0, 'backpack': 3.0, 'get': 1.0, 'late': 1.0, 'and': 6.0, 'she': 2.0, 'highly': 1.0, 'sweatshirt': 1.0, 'bottle': 1.0, 'this': 3.0, 'provided': 1.0, 'by': 1.0, 'bright': 1.0, 'well': 2.0, 'a': 11.0, 's': 4.0, 'sack': 2.0, 'softer': 1.0, 'in': 3.0, 'age': 3.0, 'but': 2.0, 'warmer': 1.0, 'so': 1.0, 'can': 1.0, 'served': 1.0, 'shoulder': 1.0, 'most': 1.0, 'daugher': 2.0, 'back': 1.0, 'herself': 1.0, 'my': 3.0, 'daughter': 1.0, 'school': 1.0, 'boys': 1.0, 'cute': 1.0, 'was': 2.0, 'intended': 1.0, 'now': 1.0, 'cases': 1.0, 'than': 3.0, 'way': 1.0, 'level': 1.0, 'second': 1.0, 'cooler': 1.0, 'detract': 1.0, 'able': 1.0, 'workbooks': 1.0, 'from': 1.0, 'does': 1.0, 'usability': 1.0, 'fall': 1.0, 'that': 1.0, 'thrilled': 1.0, 'easily': 4.0, '9': 1.0, 'it': 7.0, 'wear': 1.0, 'or': 3.0, 'folders': 1.0, 'cardigan': 1.0, 'messenger': 1.0, 'is': 2.0, 'at': 1.0, 'bag': 1.0, 'up': 1.0, 'water': 1.0, '7': 1.0, 'on': 1.0, 'quick': 1.0, 'what': 1.0, 'wants': 1.0, 'over': 2.0, 'too': 1.0, 'one': 1.0, 'half': 1.0, 'both': 1.0, 'weight': 1.0, 'couple': 1.0, 'the': 3.0, 'of': 3.0, 'wearing': 1.0, '2': 1.0, 'mittens': 1.0, 'holds': 1.0, 'carry': 3.0, 'books': 2.0, 'which': 1.0, 'lunch': 3.0, 'made': 1.0, 'based': 1.0, 'gift': 1.0, 'hat': 2.0, 'make': 1.0, 'afternoon': 1.0, 'little': 1.0, 'two': 2.0, 'elementary': 1.0, 'with': 1.0, 'snack': 1.0, 'library': 1.0, 'summer': 1.0, 'would': 2.0}
Word element => {'germs': 1.0, 'worries': 1.0, 'alleviates': 1.0, 'comfy': 1.0, 'very': 1.0, 'got': 1.0, 'ask': 1.0, 'ingenious': 1.0, 'think': 1.0, 'they': 1.0, 'people': 1.0, 'tell': 1.0, 'when': 1.0, 'what': 1.0, 'bought': 1.0, 'i': 1.0, 'where': 1.0, 'for': 1.0, 'husband': 1.0, 'now': 1.0, 'in': 1.0, 'my': 1.0, 'and': 5.0, 'easy': 1.0, 'get': 1.0, 'disinfectant': 1.0, 'is': 4.0, 'buggies': 1.0, 'this': 1.0, 'grocery': 1.0, 'he': 2.0, 'it': 7.0, 'wipes': 1.0, 'proclaimed': 1.0, 'that': 1.0, 'self': 1.0, 'not': 1.0, 'of': 1.0, 'always': 2.0, 'germophobe': 1.0, 'was': 1.0, 'store': 1.0, 'questions': 1.0, 'hated': 1.0, 'him': 1.0, 'gift': 1.0, 'keeps': 1.0, 'his': 1.0, 'does': 1.0, 'car': 1.0, 'like': 1.0, 'out': 1.0, 'shopping': 1.0, 'time': 1.0, 'the': 3.0, 'without': 1.0, 'a': 2.0, 'going': 1.0, 'we': 4.0, 'use': 2.0, 'our': 1.0, 'to': 1.0, 'as': 1.0, 'all': 1.0, 'about': 2.0}
Word element => {'liked': 1.0, 'decided': 1.0, 'just': 1.0, 'it': 1.0, 'great': 1.0, 'thought': 1.0, 'of': 1.0, 'be': 1.0, 'would': 1.0, 'there': 1.0, 'wearing': 1.0, 'so': 3.0, 'not': 1.0, 'ended': 1.0, 'about': 1.0, 'lot': 2.0, 'will': 1.0, 'well': 1.0, 'wore': 1.0, 'them': 2.0, 'thick': 1.0, 'soft': 1.0, 'in': 3.0, 'cannot': 1.0, 'they': 3.0, 'comfy': 1.0, 'and': 2.0, 'get': 1.0, 'fit': 1.0, 'house': 1.0, 'enough': 2.0, 'wouldn': 1.0, 'come': 1.0, 'confirm': 1.0, 'son': 1.0, 'don': 1.0, 'up': 2.0, 'the': 6.0, 'a': 2.0, 't': 2.0, 'my': 1.0, 'really': 1.0, 'beach': 2.0, 'oddly': 1.0, 'i': 4.0, 'snug': 1.0, 'that': 4.0, 'were': 2.0, 'sand': 3.0, 'happened': 1.0, 'when': 1.0, 'walking': 1.0, 'say': 1.0, 'he': 3.0, 'shoes': 2.0, 'to': 1.0, 'think': 1.0, 'on': 1.0, 'ankle': 1.0}
Word element => {'use': 1.0, 'it': 1.0, 'he': 1.0, 'blankie': 2.0, 'can': 1.0, 'for': 1.0, 'love': 1.0, 'toys': 1.0, 'other': 1.0, 'have': 1.0, 'hook': 1.0, 'doesn': 1.0, 'but': 1.0, 'different': 1.0, 'than': 1.0, 'i': 2.0, 't': 1.0, 'the': 2.0, 'onto': 1.0, 'that': 1.0, 'teething': 1.0, 'came': 1.0, 'boy': 1.0, 'pic': 1.0, 'and': 1.0, 'very': 1.0, 'pink': 1.0, 'which': 1.0, 'really': 1.0, 'is': 1.0, 'a': 1.0}
Word element => {'feals': 1.0, 'love': 1.0, 'great': 1.0, 'it': 4.0, 'i': 2.0, 'child': 1.0, 'was': 1.0, 'what': 1.0, 'so': 1.0, 'looks': 1.0, 'and': 1.0, 'wanted': 1.0, 'beacause': 1.0, 'in': 1.0, 'my': 1.0, 'good': 1.0}
Word element => {'plants': 1.0, 'with': 1.0, 'nothing': 1.0, 'followed': 1.0, 'luck': 1.0, 'but': 1.0, 'just': 1.0, 'ever': 1.0, 'got': 1.0, 'grew': 1.0, 'any': 1.0, 'know': 1.0, 'if': 2.0, 'have': 1.0, 't': 2.0, 'perhaps': 1.0, 'don': 2.0, 'a': 1.0, 'directions': 1.0, 'i': 4.0, 'batch': 1.0, 'or': 1.0, 'bad': 1.0}
Word element => {'helps': 1.0, 'must': 1.0, 'above': 1.0, 'perspective': 1.0, 'makes': 1.0, 'kids': 1.0, 'knobs': 1.0, 'pink': 1.0, 'deserve': 1.0, 'asap': 1.0, 'addressed': 1.0, 'these': 1.0, 'blocked': 1.0, 'function': 1.0, 'serves': 1.0, 'sheet': 1.0, 'plain': 1.0, 'has': 1.0, 'hand': 1.0, 'right': 1.0, 'left': 2.0, 'across': 1.0, 'changes': 1.0, 'more': 2.0, 'door': 1.0, 'have': 1.0, 'think': 1.0, 'organized': 1.0, 'an': 1.0, 'be': 2.0, 'stays': 1.0, 'include': 1.0, 'a': 2.0, 'sure': 1.0, 'but': 2.0, 'etc': 1.0, 'caught': 1.0, 'and': 8.0, 'kinda': 1.0, 'reasonable': 1.0, 'height': 1.0, 't': 2.0, 's': 1.0, 'few': 1.0, 'this': 3.0, 'manufacture': 1.0, 'someone': 1.0, 'esp': 1.0, 'hope': 2.0, 'bucks': 1.0, 'complaints': 2.0, 'too': 1.0, '2nd': 1.0, 'hurt': 1.0, 'safety': 1.0, 'look': 1.0, 'is': 8.0, 'freak': 1.0, 'mattress': 3.0, 'reading': 2.0, 'manufacturer': 2.0, 'usage': 1.0, 'features': 1.0, 'crib': 3.0, 'pile': 1.0, 'fingers': 1.0, 'reason': 1.0, 'm': 1.0, 'in': 3.0, 'station': 1.0, 'after': 1.0, 'even': 1.0, 'base': 1.0, 'drop': 2.0, 'wasn': 1.0, 'love': 1.0, 'protection': 1.0, 'stars': 2.0, 'way': 1.0, 'assemble': 1.0, 'for': 3.0, 'with': 1.0, 'low': 2.0, 'buying': 1.0, 'it': 5.0, 'fell': 1.0, 'from': 3.0, 'just': 2.0, 'following': 1.0, 'why': 2.0, 'mentioned': 2.0, 'walmart2': 1.0, 'dot': 1.0, 'bought': 2.0, 'i': 5.0, 'storage': 3.0, 'white': 1.0, 'difficult': 1.0, 'space': 1.0, '1': 1.0, 'mention': 1.0, 'of': 2.0, 'the': 13.0, 'not': 3.0, 'give': 1.0, 'reasons': 1.0, 'me': 1.0, 'that': 2.0, 'because': 2.0, 'to': 5.0, 'fancier': 1.0, '3': 2.0, 'barn': 1.0, 'your': 1.0, 'potter': 1.0, 'included': 1.0, 'so': 3.0, 'diapers': 1.0, 'lock': 1.0, 'are': 1.0, 'now': 1.0, 'beyond': 1.0, 'up': 1.0, 'actually': 1.0, 'order': 1.0, 'annoying': 1.0, 'bend': 1.0, 'back': 2.0, 'forth': 1.0, 'being': 1.0, 'very': 2.0, 'could': 3.0, 'will': 1.0, '6': 1.0, 'c': 1.0, 'if': 1.0, 'section': 1.0, 'couldn': 1.0, 'put': 1.0, 'changing': 1.0, 'do': 1.0, '4': 1.0, 'adjustable': 1.0, 'ours': 1.0, 'no': 2.0, 'down': 2.0, 'made': 1.0, 'which': 4.0, 'side': 6.0, 'would': 1.0, 'sliding': 1.0, 'either': 1.0, 'stupid': 2.0, 'functionality': 1.0, 'inconvenient': 1.0, 'was': 1.0, 'we': 2.0, 'reviews': 1.0, 'people': 1.0, 'baby': 1.0, 'tons': 1.0, 'get': 1.0}
Word element => {'us': 1.0, 'available': 1.0, 'having': 1.0, 'thanks': 1.0, 'so': 1.0, 'diego': 1.0, 'new': 1.0, 'his': 2.0, 'a': 2.0, 'is': 1.0, 'now': 1.0, 'for': 3.0, 'hit': 1.0, 'our': 1.0, 'bought': 1.0, 'who': 1.0, 'grandson': 1.0, 'favorite': 1.0, 'we': 1.0, 'just': 1.0, 'and': 2.0, 'big': 1.0, 'brother': 1.0, 'very': 1.0, 'this': 1.0, 'it': 4.0, 's': 4.0, 'blanket': 1.0, 'the': 1.0, 'size': 1.0, 'right': 1.0}
Word element => {'not': 1.0, 'again': 1.0, 'buy': 1.0, 'be': 1.0, 'instead': 1.0, 'bought': 1.0, 'that': 1.0, 'blanket': 1.0, 'daniella': 1.0, 'cocalo': 1.0, 'would': 1.0, 'letting': 1.0, 'super': 1.0, 'using': 1.0, 'most': 1.0, 'but': 1.0, 'more': 1.0, 'plan': 1.0, 'is': 1.0, 'neither': 1.0, 'in': 1.0, 'apart': 1.0, 'just': 2.0, 'washing': 1.0, 'stitching': 1.0, 'girl': 1.0, 'knew': 1.0, 'baby': 1.0, 'decoration': 1.0, 'looks': 1.0, 'it': 5.0, 'soft': 1.0, 'perfect': 1.0, 'this': 2.0, 'certainly': 1.0, 'come': 1.0, 'too': 1.0, 'and': 4.0, 'soon': 1.0, 'i': 6.0, 'quilt': 2.0, 'saw': 1.0, 'have': 1.0, 'gorgeous': 1.0, 'our': 1.0, 'as': 2.0, 'to': 3.0, 'had': 1.0, 'for': 1.0, 'online': 1.0, 'her': 1.0, 'even': 1.0, 'room': 1.0, 'sheet': 1.0, 'bit': 1.0, 'beautiful': 1.0, 'unfortunately': 1.0, 'softest': 1.0, 'absolutely': 1.0, 'delicate': 2.0, 'after': 1.0, 'on': 2.0, 'cycle': 1.0, 'very': 1.0, 'little': 1.0, 'once': 1.0, 'of': 2.0, 'the': 5.0, 'a': 3.0, 's': 3.0, 'bedding': 1.0, 't': 1.0, 'began': 1.0, 'isn': 1.0}
Word element => {'again': 1.0, 'over': 1.0, 'buy': 1.0, 'definitely': 1.0, 'in': 1.0, 'washer': 1.0, 'using': 1.0, 'always': 1.0, 'suggest': 1.0, 'material': 1.0, 'to': 1.0, 'everyone': 1.0, 'quality': 1.0, 'part': 1.0, 'need': 1.0, 'and': 1.0, 'babyish': 1.0, 'so': 4.0, 'though': 1.0, 'is': 3.0, 'changed': 1.0, 'whole': 1.0, 'i': 3.0, 'this': 2.0, 'it': 3.0, 'only': 1.0, 'girly': 1.0, 'that': 2.0, 'set': 3.0, 'my': 1.0, 'favorite': 1.0, 'far': 1.0, 'not': 1.0, 'delicate': 3.0, 'absolutely': 1.0, 'love': 1.0, 'be': 1.0, 'within': 1.0, 'bedding': 2.0, 'a': 2.0, 'year': 1.0, 'the': 4.0, 'room': 1.0, 'compliments': 1.0, 'her': 1.0, 'good': 1.0, 'will': 1.0, 'cycle': 2.0, 'elegant': 1.0, 'seems': 1.0, 'have': 1.0, 'once': 1.0, 'washed': 1.0, 'on': 1.0, 'has': 1.0, 'would': 2.0}
Word element => {'price': 1.0, 'worth': 1.0, 'princess': 1.0, 'real': 1.0, 'made': 1.0, 'like': 1.0, 'seen': 1.0, 'a': 3.0, 'classy': 1.0, 'frily': 1.0, 'seem': 1.0, 'stacker': 3.0, 'diaper': 1.0, 'floor': 1.0, 'touches': 1.0, 'almost': 1.0, 'position': 1.0, 'rail': 1.0, 'infact': 1.0, 'bed': 1.0, 'highest': 1.0, 'have': 1.0, 'pretty': 1.0, 'ive': 1.0, 'thick': 1.0, 'normal': 1.0, 'are': 1.0, 'bumper': 1.0, 'doesnt': 1.0, 'quilt': 1.0, 'look': 1.0, 'right': 1.0, 'creamy': 1.0, 'pink': 1.0, 'amazon': 1.0, 'happy': 1.0, 'tight': 1.0, 'my': 1.0, 'high': 1.0, 'find': 1.0, 'the': 14.0, 'as': 2.0, 'to': 4.0, 'was': 2.0, 'first': 1.0, 'so': 1.0, 'sheet': 1.0, 'time': 1.0, 'is': 3.0, 'more': 1.0, 'displayed': 1.0, 'i': 5.0, 'looks': 2.0, 'it': 6.0, 'fell': 1.0, 'really': 1.0, 'material': 1.0, 'never': 1.0, 'saw': 1.0, 'at': 2.0, 'set': 3.0, 'dust': 1.0, 'cheaper': 1.0, 'up': 1.0, 'ruffle': 2.0, 'of': 1.0, 'its': 1.0, 'babysrus': 1.0, 'mattress': 2.0, 'perfect': 1.0, 'crib': 2.0, 'long': 1.0, 'came': 1.0, 'soon': 1.0, 'and': 7.0, 'just': 3.0, 'hugs': 1.0, 'omg': 1.0, 'strong': 1.0, 'lovely': 1.0, 'even': 1.0, 'beatiful': 1.0, 'quality': 1.0, 'white': 1.0, 'chocolate': 1.0, 'in': 2.0, 'brown': 1.0, 'everything': 1.0, 'for': 1.0, 'love': 1.0, 'fit': 1.0}
Word element => {'princess': 1.0, 'like': 1.0, 'feel': 1.0, 'girl': 1.0, 'their': 1.0, 'did': 1.0, 'is': 1.0, 'this': 2.0, 'day': 1.0, 'and': 2.0, 'now': 1.0, 'born': 1.0, 'little': 1.0, 'very': 1.0, 'textures': 1.0, 'set': 1.0, 'old': 1.0, 'took': 1.0, 'of': 1.0, 'packaging': 1.0, 'i': 1.0, 'purchased': 1.0, 'wants': 1.0, 'crib': 1.0, 'ten': 1.0, 'months': 1.0, 'one': 1.0, 'daughter': 1.0, 'before': 1.0, 'looks': 1.0, 'it': 5.0, 'she': 2.0, 'the': 2.0, 'out': 1.0, 'a': 1.0, 'we': 2.0, 's': 2.0, 'so': 1.0, 'was': 1.0, 'recommend': 1.0, 'beautiful': 1.0, 'different': 1.0, 'are': 1.0, 'lovely': 1.0, 'as': 2.0, 'to': 2.0, 'all': 1.0, 'our': 1.0, 'any': 1.0, 'new': 1.0, 'would': 1.0, 'for': 1.0, 'product': 1.0, 'who': 1.0}
Word element => {'use': 1.0, 'infant': 1.0, 'hot': 1.0, 'any': 1.0, 'gorgeous': 1.0, 'to': 5.0, 'was': 1.0, 'r': 1.0, 'bought': 1.0, 'babies': 1.0, 'set': 2.0, 'reading': 1.0, 'way': 2.0, 'thing': 1.0, 'wall': 1.0, 'looks': 1.0, 'it': 8.0, 'only': 1.0, 'here': 1.0, 'easy': 1.0, 'us': 1.0, 'i': 3.0, 'buy': 1.0, 's': 1.0, 'bedding': 1.0, 'second': 1.0, 'is': 3.0, 'at': 1.0, 'after': 2.0, 'so': 1.0, 'my': 1.0, 'seeing': 1.0, 'this': 1.0, 'soft': 1.0, 'hung': 1.0, 'too': 1.0, 'and': 3.0, 'accessories': 1.0, 'very': 1.0, 'match': 1.0, 'find': 1.0, 'the': 3.0, 'an': 1.0, 'comforter': 1.0, 'daughter': 1.0, 'stiff': 1.0, 'am': 1.0, 'for': 2.0, 'afraid': 1.0, 'up': 1.0, 'cheaper': 1.0, 'wash': 1.0, 'other': 1.0, 'reviews': 1.0, 'on': 1.0, 'instead': 1.0}
Word element => {'babysupermall': 1.0, 'bought': 1.0, 'colors': 1.0, 'great': 1.0, 'the': 2.0, 'not': 1.0, 'to': 1.0, 'our': 1.0, 'decision': 1.0, 'from': 1.0, 'very': 2.0, 'frilly': 1.0, 'and': 2.0, 'purchase': 1.0, 'set': 3.0, 'com': 1.0, 'are': 2.0, 'with': 2.0, 'this': 1.0, 'it': 2.0, 'we': 2.0, 'goes': 1.0, 'well': 1.0, 's': 1.0, 'expresso': 1.0, 'happy': 1.0, 'color': 1.0, 'elegant': 1.0, 'crib': 1.0, 'an': 1.0, 'feminine': 1.0, 'but': 1.0}
Word element => {'down': 1.0, 'which': 1.0, 'are': 1.0, 'sturdy': 1.0, 'very': 2.0, 'thankfully': 1.0, 'right': 1.0, 'now': 1.0, 'was': 1.0, 'because': 1.0, 'cute': 1.0, 'whim': 1.0, 'over': 1.0, 'on': 1.0, 'the': 3.0, 'my': 1.0, 'a': 2.0, 'desk': 1.0, 'i': 3.0, 'fit': 1.0, 'only': 1.0, 'this': 1.0, 'it': 4.0, 'bought': 1.0, 'liked': 1.0, 'side': 1.0, 'is': 2.0, 'looks': 2.0, 'perfectly': 1.0, 'and': 3.0, 'thought': 1.0, 'would': 1.0, 'fighting': 1.0, 'in': 1.0, 'way': 1.0, 'kitchen': 1.0, 'kids': 1.0, 'corner': 1.0, 'of': 1.0}
Word element => {'on': 1.0, 'not': 1.0, 'donate': 1.0, 'me': 1.0, 'told': 1.0, 'wife': 1.0, 'my': 1.0, 'trash': 1.0, 'anyone': 1.0, 'in': 1.0, 'going': 1.0, 'but': 2.0, 'back': 1.0, 'mailed': 1.0, 'have': 1.0, 'right': 1.0, 'so': 1.0, 'hamper': 2.0, 'problem': 1.0, 'if': 1.0, 'could': 1.0, 'i': 3.0, 'this': 1.0, 'it': 6.0, 'stars': 1.0, 'together': 1.0, 'screwed': 1.0, '0': 1.0, 'give': 1.0, 'would': 2.0, 'great': 1.0, 'the': 4.0, 'made': 1.0, 'wish': 1.0, 'wood': 2.0, 'poorly': 1.0, 'looks': 1.0, 'is': 3.0, 'left': 1.0, 'leans': 2.0, 'now': 1.0, 'frame': 1.0, 'to': 3.0, 'glued': 1.0, 'then': 1.0}
Word element => {'definitely': 1.0, 'is': 1.0, 'better': 1.0, 'me': 1.0, 'they': 1.0, 'attention': 1.0, 'which': 1.0, 'brought': 1.0, 'when': 1.0, 'must': 1.0, 'small': 1.0, 'far': 1.0, 'out': 1.0, 'period': 1.0, 'it': 4.0, 'come': 1.0, 'with': 2.0, 'this': 2.0, 'proper': 1.0, 'be': 1.0, 'within': 1.0, 'that': 1.0, 'i': 3.0, 'products': 1.0, 'of': 2.0, 'packaging': 1.0, 'unusual': 1.0, 'material': 1.0, 's': 1.0, 'a': 3.0, 'the': 6.0, 'another': 1.0, 'company': 1.0, 'my': 1.0, 'grand': 1.0, 'crib': 2.0, 'although': 1.0, 'came': 1.0, 'contact': 1.0, 'fit': 1.0, 'for': 1.0, 'one': 1.0, 'daughter': 1.0, 'in': 2.0, 'send': 1.0, 'baby': 1.0, 'perhaps': 1.0, 'to': 2.0, 'any': 1.0, 'too': 1.0, 'and': 1.0, 'did': 2.0, 'time': 1.0, 'sheet': 1.0, 'so': 1.0, 'especially': 1.0, 'does': 1.0, 'usually': 1.0, 'because': 1.0, 'purchased': 1.0, 'had': 1.0, 'prewash': 2.0, 'odor': 1.0, 'was': 1.0, 'turned': 1.0, 'an': 1.0, 'or': 1.0, 'fabric': 1.0, 'event': 1.0}
Word element => {'but': 1.0, 'box': 1.0, 'huge': 1.0, 'a': 1.0, 'arrived': 1.0, 'shown': 1.0, 'keep': 1.0, 'was': 1.0, 'image': 1.0, 'to': 1.0, 'my': 1.0, 'are': 1.0, 'appear': 1.0, 'changing': 1.0, 'son': 1.0, 'condition': 1.0, 'on': 1.0, 'organized': 1.0, 'great': 1.0, 'the': 1.0, 'these': 2.0, 'they': 1.0, 'use': 1.0, 'than': 1.0, 's': 1.0, 'i': 1.0, 'everything': 2.0, 'definitely': 1.0, 'person': 1.0, 'table': 1.0, 'bigger': 1.0, 'bins': 1.0, 'in': 4.0}
Word element => {'off': 1.0, 'stays': 1.0, 'overnight': 1.0, 'works': 1.0, 'when': 1.0, 'too': 1.0, 'not': 1.0, 'but': 1.0, 'lit': 1.0, 'keeps': 1.0, 'which': 1.0, 'color': 1.0, 'rotating': 1.0, 'of': 1.0, 'mode': 1.0, 'set': 1.0, 'our': 1.0, 'in': 1.0, 've': 1.0, 'is': 1.0, 'owl': 1.0, 'on': 1.0, 'kinderglo': 1.0, 'night': 3.0, 'old': 1.0, 'usually': 1.0, 'the': 6.0, 'for': 1.0, 'using': 1.0, 'throughout': 1.0, 'bright': 1.0, 'well': 2.0, 'a': 1.0, 'been': 1.0, 'we': 1.0, 'four': 1.0, 'base': 1.0, 'light': 2.0, 'month': 2.0, 'it': 2.0, 'son': 1.0, 'room': 2.0, 'to': 1.0, 'now': 1.0, 's': 2.0, 'about': 1.0}
Word element => {'cannot': 1.0, 'simply': 1.0, 'cares': 1.0, 'trust': 1.0, 'way': 1.0, 'you': 2.0, 'when': 1.0, 'local': 1.0, 'service': 1.0, 'highly': 1.0, 'every': 1.0, 'customer': 2.0, 'great': 1.0, 'buy': 1.0, 'day': 1.0, 'sleep': 1.0, 'to': 1.0, 'all': 1.0, 'the': 4.0, 'sure': 1.0, 'quits': 1.0, 'questions': 1.0, 'about': 2.0, 'thing': 1.0, 'no': 2.0, 'stores': 1.0, 'with': 4.0, 'require': 1.0, 'safer': 1.0, 'that': 4.0, 'behind': 1.0, 'plug': 1.0, 'replacing': 1.0, 'cheaper': 1.0, 'because': 1.0, 'than': 2.0, 'is': 1.0, 'asked': 1.0, 'say': 2.0, 'now': 1.0, 'recommend': 1.0, 'was': 2.0, 'must': 1.0, 'have': 4.0, 'item': 1.0, 'batteries': 1.0, 'these': 2.0, 'of': 2.0, 'lot': 1.0, 'at': 1.0, 'total': 1.0, 'play': 1.0, 'and': 7.0, 'wrong': 1.0, 'me': 2.0, 'i': 7.0, '4': 1.0, 'stuff': 1.0, 'on': 1.0, 'actually': 1.0, 'product': 1.0, 'for': 1.0, 'lights': 1.0, 'love': 1.0, 'months': 1.0, 'one': 1.0, 'go': 1.0, 't': 1.0, 'we': 1.0, 'a': 2.0, 'well': 1.0, 'night': 3.0, 'them': 6.0, 'much': 1.0, 'company': 1.0, 'my': 3.0, 'this': 1.0, 'kids': 3.0, 'are': 2.0, 'years': 1.0, '9': 1.0, 'getting': 1.0, 'did': 1.0, 'means': 1.0, 'they': 2.0, 'stands': 1.0, 'loved': 1.0, 'items': 2.0, 'quit': 1.0, 'can': 2.0, '2': 1.0, 'but': 1.0, 'it': 4.0, 'in': 1.0, 'promptly': 1.0, 'replaced': 2.0}
Word element => {'turn': 1.0, 'not': 1.0, 'off': 1.0, 'comes': 1.0, 'once': 1.0, 'after': 1.0, 'unfortunately': 1.0, 'it': 4.0, 'can': 1.0, 'about': 1.0, 'the': 2.0, 'great': 1.0, '2': 2.0, 'months': 2.0, 'on': 2.0, 'for': 1.0, 'loved': 1.0, 'working': 1.0, 'our': 1.0, 'son': 1.0, 'worked': 1.0, 'quit': 1.0, 'owl': 1.0, 'charger': 1.0, 'sit': 1.0, 'all': 1.0, 'will': 1.0, 'week': 1.0, 'but': 1.0}
Word element => {'now': 1.0, 'from': 1.0, 'shower': 1.0, 'regular': 1.0, 'one': 1.0, 'order': 1.0, 'definitely': 1.0, 'will': 2.0, 'rough': 1.0, 'be': 2.0, 'messed': 1.0, 'after': 1.0, 'works': 1.0, 'another': 1.0, 'fragile': 1.0, 'complained': 1.0, 'as': 3.0, 'any': 3.0, 'adorable': 1.0, 'design': 1.0, 'top': 1.0, 'on': 4.0, 'furniture': 1.0, '3': 3.0, 'ours': 1.0, 'let': 1.0, 'about': 1.0, 'behind': 1.0, 'or': 1.0, 'her': 1.0, 'different': 1.0, 'work': 1.0, 'but': 2.0, 'gift': 1.0, 'which': 1.0, 'like': 1.0, 'for': 3.0, 'even': 1.0, 'base': 1.0, 'lights': 1.0, 'is': 4.0, 'owl': 1.0, 'room': 2.0, 'form': 1.0, 'my': 4.0, 'light': 2.0, 'just': 2.0, 'bought': 1.0, 'was': 1.0, 'plug': 1.0, 's': 1.0, 't': 1.0, 'a': 2.0, 'might': 1.0, 'fine': 1.0, 'we': 2.0, 'i': 3.0, 'red': 2.0, 'with': 3.0, 'the': 11.0, 'sit': 1.0, 'has': 1.0, 'always': 1.0, 'have': 2.0, 'it': 6.0, 'this': 2.0, 'perfect': 1.0, 'colors': 1.0, 'dresser': 1.0, 'quality': 1.0, 'night': 2.0, 'perfectly': 1.0, 'and': 7.0, 'often': 1.0, 'green': 2.0, 'doesn': 1.0, 'outlets': 1.0, 'up': 1.0, 'not': 1.0, 'covered': 1.0, 'in': 2.0, 'stay': 1.0, 'turn': 1.0, 'little': 1.0, 'being': 1.0, 'very': 2.0, 'dark': 1.0, 'played': 1.0, 'some': 2.0, 'people': 2.0, 'blue': 1.0, 'are': 1.0, 'lcd': 1.0, 'by': 1.0, 'bright': 1.0, 'much': 1.0, 'all': 3.0, 'other': 1.0, 'pretty': 1.0, 'to': 2.0, 'high': 1.0, 'can': 2.0, 'so': 1.0, 'he': 1.0, 'love': 1.0, 'far': 1.0, 'through': 1.0, 've': 1.0, 'left': 1.0, 'sequence': 1.0, 'get': 1.0, 'pushing': 1.0, 'button': 1.0, 'because': 1.0, 'that': 1.0, 'easily': 1.0, 'option': 1.0, 'automatically': 1.0, 'fantastic': 1.0, 'options': 1.0, 'off': 1.0, 'year': 3.0, 'old': 3.0, 'baby': 2.0, 'jealous': 1.0}
Word element => {'saved': 1.0, 'who': 1.0, 'marriage': 1.0, 'parent': 1.0, 'happy': 1.0, 'closed': 1.0, 'stays': 1.0, 'log': 1.0, 'as': 2.0, 'corner': 1.0, 'weeks': 1.0, 'restless': 1.0, 'several': 1.0, 'was': 1.0, 'like': 2.0, 'hungry': 1.0, 'family': 1.0, 'even': 1.0, 'lights': 1.0, 'bought': 1.0, 'ready': 1.0, 'remedy': 1.0, 'isn': 1.0, 'two': 1.0, 'well': 1.0, 'i': 7.0, 'watching': 1.0, 'has': 1.0, 'month': 1.0, 'it': 1.0, 'light': 3.0, 'just': 1.0, 'benefit': 1.0, 'sits': 1.0, 'at': 4.0, 'is': 1.0, 'sleeps': 2.0, 'likes': 1.0, 't': 3.0, 'going': 1.0, 's': 2.0, 'go': 1.0, 'a': 4.0, 'we': 1.0, 'could': 1.0, 'for': 3.0, 'cry': 1.0, 'age': 1.0, 'may': 1.0, 'my': 5.0, 'me': 1.0, 'now': 2.0, 'play': 1.0, 'and': 2.0, 'change': 1.0, 'but': 2.0, 'owl': 7.0, 'fixes': 1.0, 'really': 1.0, 'want': 1.0, 'sleep': 3.0, 'reacts': 1.0, 'someone': 1.0, 'daughter': 4.0, 'she': 3.0, 'baby': 2.0, 'old': 1.0, 'with': 3.0, 'you': 1.0, 'night': 3.0, 'loud': 1.0, 'early': 1.0, 'floor': 1.0, 'much': 1.0, 'wait': 1.0, 'knows': 2.0, 'to': 5.0, 'bassinet': 1.0, 'pretty': 2.0, 'that': 6.0, 'our': 3.0, 'how': 1.0, 'more': 1.0, 'door': 1.0, 'than': 1.0, 'best': 1.0, 'unassuming': 1.0, 'this': 3.0, 'doesn': 1.0, 'of': 1.0, 'the': 14.0, 'cow': 1.0, 'know': 1.0, 'all': 2.0, 'an': 1.0, 'leaving': 1.0, 'from': 1.0, 'wife': 2.0, 'cute': 1.0, 'are': 1.0, 'working': 1.0, 'parents': 1.0, 'in': 4.0, 'cuddles': 1.0, 'm': 3.0, 'ooh': 1.0, 'closet': 4.0, 'bedroom': 1.0, 'colors': 2.0, 'kept': 1.0, 'long': 1.0, 'on': 2.0, 'sleepless': 1.0, 'your': 1.0, 'can': 1.0, 'so': 2.0, 'see': 1.0, 'open': 2.0, 'when': 1.0, 'roll': 1.0, 'have': 2.0}
Word element => {'struggling': 1.0, 'has': 1.0, 'talked': 1.0, 'everyone': 1.0, 'have': 1.0, 'still': 1.0, 'be': 1.0, 'fine': 1.0, 'now': 2.0, 'several': 1.0, 'uses': 1.0, 'ours': 1.0, 'happy': 1.0, 'owl': 1.0, 'sooner': 1.0, 'phase': 1.0, 'dark': 3.0, 'great': 1.0, 'of': 3.0, 'recommend': 1.0, 'was': 1.0, 'purchased': 1.0, 'had': 1.0, 'bright': 1.0, 'went': 1.0, 'this': 2.0, 'with': 2.0, 'tool': 1.0, 'wonderful': 1.0, 'seen': 1.0, 'complaints': 1.0, 'months': 1.0, 'one': 3.0, 'afraid': 2.0, 'for': 2.0, 'where': 1.0, 'less': 2.0, 'to': 3.0, 'our': 2.0, 'it': 4.0, 'she': 2.0, 'very': 1.0, 'little': 3.0, 'are': 1.0, 'helped': 1.0, 'but': 2.0, 'who': 2.0, 'transition': 1.0, 'tad': 1.0, 'the': 5.0, 'asleep': 1.0, 'deal': 1.0, 'that': 2.0, 'into': 1.0, 'just': 1.0, 'light': 2.0, 'thus': 1.0, 'helping': 1.0, 'her': 1.0, 'fear': 1.0, 'is': 3.0, 'fall': 1.0, 'might': 1.0, 't': 1.0, 'a': 6.0, 'we': 2.0, 'i': 3.0, 'and': 2.0, 'green': 1.0, 've': 3.0, 'wasn': 1.0, 'through': 1.0, 'working': 2.0}
Word element => {'boy': 1.0, 'another': 1.0, 'd': 1.0, 'faulty': 1.0, 'for': 2.0, 'were': 1.0, 'also': 1.0, 'contact': 1.0, 'get': 2.0, 'bit': 1.0, 'a': 1.0, 'wiggle': 1.0, 'fully': 1.0, 'tabs': 1.0, 'is': 1.0, 'on': 1.0, 'my': 2.0, 'if': 1.0, 'problem': 1.0, 'loves': 1.0, 'have': 1.0, 'charge': 1.0, 'daughter': 1.0, 'turns': 1.0, 'never': 2.0, 'sometimes': 1.0, 'with': 1.0, 'it': 3.0, 'only': 1.0, 'charges': 1.0, 'the': 5.0, 'red': 1.0, 'charger': 2.0, 'light': 1.0, 'not': 1.0, 'stand': 1.0, 'i': 1.0, 'battery': 1.0, 'green': 1.0, 'to': 2.0, 'you': 1.0}
Word element => {'feature': 1.0, 'off': 1.0, 'auto': 1.0, 'hands': 1.0, 'shut': 1.0, 'for': 1.0, 'perfect': 1.0, 'especially': 1.0, 'little': 1.0, 'size': 1.0, 'gifts': 1.0, 'and': 3.0, 'like': 1.0, 'adoreable': 1.0, 'them': 1.0, 'absolutely': 1.0, 'as': 1.0, 'changing': 1.0, 'are': 2.0, 'lights': 1.0, 'loved': 1.0, 'i': 2.0, 'bought': 1.0, 'colors': 1.0, 'the': 4.0, 'these': 1.0, 'kids': 1.0}
Word element => {'riffic': 1.0, 'pack': 1.0, 'easy': 1.0, 'simply': 1.0, 'time': 1.0, 'long': 1.0, 'really': 1.0, 'for': 2.0, 'charge': 1.0, 'at': 1.0, 'keep': 1.0, 'being': 1.0, 'station': 1.0, 'best': 1.0, 'delicate': 1.0, 'charging': 1.0, 'grandma': 1.0, 'had': 1.0, 'down': 1.0, 'brings': 1.0, 'he': 1.0, 'morning': 1.0, 'in': 1.0, 'dresser': 1.0, 'his': 1.0, 'leave': 1.0, 'size': 1.0, 'bed': 1.0, 'good': 1.0, 'overnights': 1.0, 'of': 1.0, 'him': 3.0, 've': 1.0, 'would': 1.0, 'cuddle': 1.0, 'is': 1.0, 'bonus': 1.0, 'which': 1.0, 'nightlight': 3.0, 'saw': 1.0, 'recharges': 1.0, 'out': 1.0, 'take': 2.0, 'just': 1.0, 'light': 2.0, 'soft': 1.0, 'yr': 1.0, 'problems': 1.0, 'old': 1.0, 'night': 2.0, 'right': 1.0, 'unsafe': 1.0, 'too': 1.0, 'green': 1.0, 'robbing': 1.0, 'and': 6.0, 'rechargeable': 1.0, 'unplug': 1.0, 'blue': 1.0, 'batteries': 2.0, 'little': 1.0, 'as': 1.0, 'to': 2.0, 'sleep': 1.0, 'our': 2.0, 'traditional': 1.0, 'the': 7.0, 'great': 1.0, 'with': 1.0, 'red': 1.0, 'then': 1.0, 'got': 1.0, 't': 1.0, 'a': 4.0, 's': 4.0, 'we': 2.0, 'no': 3.0, 'or': 2.0, 'plug': 1.0, 'tyrannosaurus': 2.0, 'colors': 1.0, 'it': 2.0, 'into': 1.0, 'plugs': 1.0, 'changing': 1.0, 'on': 1.0, '3': 1.0, 'portable': 2.0, 'guy': 1.0, 'can': 1.0}
Word element => {'new': 1.0, 'time': 1.0, 'weeks': 1.0, 'few': 1.0, 'one': 1.0, 'for': 2.0, 'm': 1.0, 'charge': 1.0, 'his': 1.0, 'holds': 1.0, 'dino': 1.0, 'the': 2.0, 'never': 1.0, 'ordering': 1.0, '2011': 1.0, 'my': 2.0, 'charger': 1.0, 'of': 1.0, 'january': 1.0, 'light': 1.0, 'a': 3.0, 'since': 1.0, 'and': 2.0, 've': 2.0, 'son': 1.0, 'problems': 1.0, 'year': 1.0, 'we': 1.0, 'with': 1.0, 'this': 1.0, 'it': 2.0, 'had': 2.0, 'dropped': 1.0, 'now': 2.0, 'any': 1.0, 'broke': 1.0, 'just': 1.0, 'because': 1.0, 'at': 1.0, 'two': 1.0, 'niece': 1.0, 'night': 1.0, 'old': 1.0, 'i': 2.0}
Word element => {'very': 1.0, 'long': 1.0, 'came': 1.0, 'light': 1.0, 'piece': 1.0, 'after': 1.0, 'detached': 1.0, 'last': 3.0, 'recommend': 1.0, 'fix': 1.0, 'charge': 1.0, 'taking': 1.0, 'are': 1.0, 'only': 1.0, 'months': 1.0, 'bought': 1.0, 'and': 3.0, 'stopped': 1.0, 'it': 2.0, 'elephant': 2.0, 'these': 1.0, 'rex': 3.0, 'for': 2.0, 'week': 1.0, 'inside': 1.0, 'we': 1.0, 't': 5.0, 'a': 2.0, 'boys': 1.0, 'night': 1.0, 'junk': 1.0, 'two': 1.0, 'i': 1.0, 'now': 1.0, 'is': 1.0, 'the': 6.0, 'without': 1.0, 'four': 1.0, 'can': 1.0, 'our': 1.0, 'to': 2.0, 'any': 1.0, 'retrieve': 1.0, 'don': 1.0, 'way': 1.0, 'or': 1.0, 'anyone': 1.0, 'they': 1.0, 'of': 1.0}
Word element => {'great': 1.0, 'handle': 1.0, 'and': 1.0, 'charger': 2.0, 'i': 1.0, 'ordered': 1.0, 'a': 1.0, 'light': 3.0, 'take': 1.0, 'second': 1.0, 'stopped': 1.0, 'off': 1.0, 'because': 1.0, 'the': 3.0, 'my': 1.0, 'working': 1.0, 'loved': 1.0, 'with': 1.0, 'son': 1.0, 'care': 1.0, 'to': 1.0}
Word element => {'who': 1.0, 'any': 1.0, 'is': 1.0, 'off': 1.0, 'be': 1.0, 'can': 1.0, 'that': 1.0, 'timer': 1.0, 'thirty': 1.0, 'dinosaurs': 1.0, 'a': 1.0, 'turned': 1.0, 'now': 1.0, 'son': 1.0, 'has': 1.0, 'time': 1.0, 'for': 2.0, 'received': 1.0, 'minute': 1.0, 'old': 1.0, 'and': 2.0, 'my': 1.0, 'great': 1.0, 'the': 3.0, 'are': 1.0, 'this': 2.0, 'christmas': 1.0, 'it': 1.0, 'he': 1.0, 'around': 1.0, 'likes': 1.0, 'all': 1.0, 'safe': 1.0, 'month': 1.0, 'carries': 1.0, 'light': 2.0, 'twenty': 1.0, 'child': 2.0, 'charger': 1.0}
Word element => {'haul': 1.0, 'last': 1.0, 'expected': 1.0, 'be': 1.0, 'this': 1.0, 'but': 1.0, 'in': 1.0, 'light': 1.0, 'just': 1.0, 'agree': 1.0, 'option': 1.0, 'three': 2.0, 'to': 5.0, 'button': 1.0, 'even': 1.0, 'previous': 1.0, 'their': 1.0, 'boys': 1.0, 'twins': 1.0, 'normal': 1.0, 'color': 1.0, 'try': 1.0, 'one': 2.0, 'my': 3.0, 'all': 2.0, 'playing': 1.0, 'can': 1.0, 'so': 2.0, 'items': 1.0, 'stations': 1.0, 'not': 3.0, 'animals': 1.0, 'want': 1.0, 'owl': 1.0, 'is': 6.0, 'long': 1.0, 'on': 2.0, 'make': 1.0, 'keeping': 1.0, 'merely': 1.0, 'use': 2.0, 'purchased': 1.0, 'had': 1.0, 'night': 1.0, 'exchange': 1.0, 'they': 1.0, 'metal': 1.0, 'point': 1.0, 'love': 1.0, 'for': 3.0, 'and': 5.0, 'year': 1.0, 'the': 15.0, 'of': 2.0, 'set': 1.0, '30': 1.0, 'having': 2.0, 'does': 1.0, 'foremost': 1.0, 'with': 3.0, 'piece': 1.0, 'or': 1.0, 'trex': 1.0, 'turn': 1.0, 'off': 1.0, 'enough': 1.0, 'after': 1.0, 'nightlights': 1.0, 'station': 1.0, 'another': 1.0, 'opinion': 1.0, 'minutes': 1.0, 'doesn': 1.0, 'a': 2.0, 'shouldn': 1.0, 'we': 2.0, 't': 3.0, 's': 1.0, 'two': 1.0, 'little': 1.0, 'nice': 1.0, 'touch': 1.0, 'brontosaurus': 1.0, 'old': 1.0, 'downside': 1.0, 'like': 1.0, 'however': 1.0, 'that': 4.0, 'sons': 1.0, 'been': 1.0, 'charging': 2.0, 'i': 1.0, 'well': 1.0, 'based': 1.0, 'made': 1.0, 'haven': 1.0, 'it': 7.0, 'already': 1.0, 'broken': 1.0, 've': 1.0, 'only': 1.0, 'item': 1.0, 'week': 1.0, 'children': 1.0, 'through': 1.0, 'depressed': 1.0, 'reviewers': 1.0, 'thus': 1.0, 'give': 1.0, 'contact': 1.0, 'nightlight': 1.0, 'charge': 1.0}
Word element => {'april': 1.0, 'circa': 1.0, 'disappointing': 1.0, 'for': 1.0, 'this': 2.0, 'issue': 1.0, 'same': 1.0, 'has': 1.0, 'amazon': 1.0, 'received': 1.0, 'returned': 1.0, 'red': 1.0, 'turned': 1.0, 're': 1.0, 'no': 1.0, 'undock': 1.0, 'flickering': 1.0, 'be': 1.0, 'light': 2.0, 'time': 1.0, 'march': 1.0, 'leave': 1.0, 'had': 1.0, 'wouldn': 1.0, 'replacement': 2.0, 'out': 2.0, 'arrived': 1.0, 'flicker': 1.0, 'after': 1.0, 'went': 1.0, 'however': 1.0, 'but': 2.0, 'finally': 1.0, 'an': 1.0, 'is': 2.0, 'owl': 2.0, 'then': 1.0, 'working': 1.0, 'hold': 1.0, 'like': 1.0, 'basically': 1.0, 'the': 13.0, 'replace': 1.0, '2011': 1.0, 'owned': 1.0, 'back': 1.0, 'rex': 2.0, 'revealed': 1.0, 'of': 2.0, 'kind': 1.0, 'model': 1.0, 'still': 1.0, 'going': 1.0, 'we': 1.0, 't': 3.0, 'a': 4.0, 'older': 1.0, 'dock': 1.0, 'it': 6.0, 'from': 1.0, 'charge': 2.0, 'looked': 1.0, 'green': 1.0, 'and': 4.0, 'two': 2.0, 'i': 3.0, 'one': 2.0, 'decided': 1.0, 'years': 1.0, 'charging': 1.0, 'all': 2.0, 'to': 2.0, 'refund': 1.0, 'was': 3.0, 'pleased': 1.0, 'you': 1.0, 'when': 2.0, 'bigger': 1.0, 'plus': 1.0, 'brighter': 1.0, 'stand': 4.0, 'better': 1.0, 'shorting': 1.0, 'new': 1.0, 'would': 2.0, 'constantly': 1.0, 'on': 3.0}
Word element => {'fixed': 1.0, 'qualify': 1.0, 'will': 1.0, 'item': 1.0, '25': 1.0, 'sense': 1.0, 'no': 1.0, 'makes': 1.0, 'warranty': 1.0, 'with': 1.0, 'bother': 1.0, 'did': 1.0, 'dropped': 1.0, 'not': 2.0, 'were': 1.0, 'normal': 1.0, 'experienced': 1.0, 'would': 1.0, 'out': 1.0, 'shorted': 1.0, 'my': 1.0, 'purchase': 1.0, 'of': 1.0, 'on': 3.0, 'button': 1.0, 'broke': 1.0, 'both': 1.0, 'play': 1.0, 'and': 5.0, '2nd': 2.0, 'this': 2.0, 'ways': 1.0, 'first': 1.0, 'shipping': 1.0, 'pay': 1.0, 'son': 1.0, 'why': 1.0, 'stick': 1.0, 'say': 1.0, 'is': 3.0, 'chop': 1.0, 'they': 1.0, 'pen': 1.0, 'hope': 1.0, 'light': 2.0, 'cute': 1.0, 'but': 2.0, 'night': 2.0, 'two': 1.0, 'i': 3.0, 'tend': 1.0, 'which': 1.0, 'need': 1.0, 'as': 1.0, 'our': 1.0, 'to': 3.0, 'now': 1.0, 'within': 1.0, 'be': 2.0, 'months': 1.0, 'bought': 1.0, 'it': 3.0, 'fell': 1.0, 'lights': 1.0, 'love': 1.0, 'these': 1.0, 'the': 7.0, 'abused': 1.0, 'a': 4.0, 'we': 2.0, 'off': 1.0, 'into': 1.0, 'fragile': 1.0, 'or': 2.0, 'dino': 1.0, 'in': 1.0, 'turn': 1.0, 'bear': 1.0}
Word element => {'grab': 1.0, 'off': 1.0, 'enough': 1.0, 'when': 1.0, 'there': 1.0, 'so': 1.0, 'touch': 1.0, 'get': 1.0, 'right': 1.0, 'changing': 1.0, 'are': 2.0, 'nightstand': 1.0, 'shapes': 1.0, 'kinderglo': 1.0, 'at': 2.0, 'world': 1.0, 'no': 1.0, 'today': 1.0, 'in': 1.0, 'anymore': 1.0, 'doesn': 2.0, 'service': 1.0, 'customer': 1.0, 'colors': 1.0, 'though': 1.0, 'satisfied': 1.0, 'leaving': 1.0, 'and': 4.0, 'better': 1.0, 'alternative': 1.0, '9': 1.0, 'did': 1.0, 'problem': 1.0, 'exist': 1.0, 'such': 1.0, 'the': 8.0, 'move': 1.0, 'bright': 1.0, 'light': 4.0, 'is': 2.0, 'gets': 1.0, 'seem': 1.0, 'son': 2.0, 'wattage': 1.0, 'worry': 1.0, 'room': 1.0, 'received': 1.0, 'fun': 2.0, 's': 2.0, 't': 2.0, 'a': 5.0, 'we': 3.0, 'month': 1.0, 'it': 3.0, 'this': 1.0, 'first': 1.0, 'way': 1.0, 'sent': 1.0, 'warm': 1.0, 'old': 2.0, 'all': 1.0, 'as': 1.0, 'our': 2.0, 'to': 6.0, 'what': 1.0, 'purchased': 1.0, 'for': 1.0, 'cool': 1.0, 'one': 1.0, 'were': 1.0, 'high': 1.0, 'except': 1.0, 'on': 1.0, 'ad': 1.0, 'have': 1.0, 'small': 1.0, 'after': 1.0, 'but': 1.0, 'ensure': 1.0, 'seems': 1.0, 'contacting': 1.0, 'they': 1.0, 'company': 1.0, 'another': 1.0, 'up': 1.0, 'immediately': 1.0, 'followed': 1.0}
Word element => {'no': 1.0, 'would': 1.0, 'base': 1.0, 'if': 1.0, 'charge': 1.0, 'in': 1.0, 'be': 1.0, 'dead': 1.0, 'always': 1.0, 'different': 1.0, 'night': 1.0, 'i': 3.0, 'we': 1.0, 'feature': 1.0, 'cute': 1.0, 'turn': 1.0, 'so': 1.0, 'left': 1.0, 'is': 1.0, 'day': 1.0, 'kind': 1.0, 'son': 1.0, 'next': 1.0, 'time': 1.0, 'all': 1.0, 'thing': 1.0, 'this': 1.0, 'it': 6.0, 'and': 3.0, 'forgot': 1.0, 'my': 1.0, 'the': 4.0, 'morning': 1.0, 'charged': 1.0, 'a': 2.0, 'before': 1.0, 'long': 1.0, 'like': 1.0, 'automatic': 1.0, 'good': 1.0, 'or': 1.0, 'stays': 1.0, 'loves': 1.0, 'off': 2.0, 'to': 1.0, 'was': 1.0, 'had': 2.0}
Word element => {'day': 1.0, 'most': 1.0, 'usually': 1.0, 'since': 1.0, 'would': 1.0, 'will': 1.0, 'worry': 2.0, 'his': 2.0, 'room': 1.0, 'charger': 1.0, 'on': 4.0, 'think': 1.0, 'keeps': 1.0, 'kids': 1.0, 'this': 3.0, 'that': 7.0, 'our': 1.0, 'arms': 1.0, 'and': 4.0, 'similar': 1.0, 'get': 1.0, 'trouble': 1.0, 'but': 2.0, 'can': 1.0, 'fact': 1.0, 'another': 2.0, 'my': 5.0, 'was': 3.0, 'night': 1.0, 'i': 6.0, 'him': 1.0, 'it': 7.0, 'having': 1.0, 'chew': 1.0, 'in': 4.0, 'staying': 1.0, 'bed': 1.0, 'lot': 1.0, 'one': 2.0, 'for': 2.0, 'lights': 1.0, 'has': 2.0, 'them': 1.0, 'wires': 2.0, 'not': 2.0, 'bear': 1.0, 'when': 1.0, 'a': 1.0, 'likes': 1.0, 't': 1.0, 'helped': 1.0, 'other': 2.0, 'product': 1.0, 'child': 1.0, 'up': 1.0, 'don': 1.0, 'replacing': 1.0, 'over': 1.0, 'the': 9.0, 'of': 4.0, 'abuse': 1.0, 'liked': 1.0, 'son': 3.0, 'from': 1.0, 'love': 1.0, 'he': 3.0, 'like': 1.0, 'have': 1.0, 'about': 2.0, 'charging': 1.0, 'need': 3.0, 'or': 1.0, 'then': 1.0, 'we': 2.0, 'swinging': 1.0, 'least': 1.0, 'tyrannosaurus': 1.0, 'also': 2.0, 'had': 1.0, 'stuffed': 1.0, 'batteries': 1.0, 'animal': 1.0, 'taken': 1.0, 'finally': 1.0, 'inside': 1.0, 'out': 3.0, 'granted': 1.0, 'after': 1.0, 'working': 1.0, 'boys': 2.0, 'cute': 1.0, 'to': 4.0, 'pulled': 1.0, 'by': 1.0, 'head': 1.0, 'with': 1.0, 'at': 2.0, 'is': 3.0, 'gave': 1.0, 'super': 1.0, 'really': 1.0, 'turn': 1.0, 'stay': 1.0, 'if': 1.0, 'poer': 1.0, 'goes': 1.0}
Word element => {'made': 1.0, 'item': 1.0, 'grandson': 1.0, 'with': 1.0, 'this': 1.0, 'he': 2.0, 'charges': 1.0, 'no': 1.0, 'has': 1.0, 'dinos': 1.0, 'my': 1.0, 'the': 2.0, 'buddy': 1.0, 'loves': 1.0, 'sleep': 1.0, 'having': 2.0, 'night': 1.0, 'and': 4.0, 'helped': 1.0, 'him': 1.0, 'terrors': 2.0, 'is': 2.0, 'longer': 1.0, 'well': 2.0, 'alot': 1.0, 'a': 1.0, 'was': 1.0, 'to': 1.0}
Word element => {'brought': 1.0, 'always': 1.0, 'tiny': 1.0, 'friends': 1.0, 'so': 1.0, 'is': 1.0, 'charged': 1.0, 'buy': 1.0, 'days': 1.0, '5': 1.0, 'after': 1.0, 'be': 1.0, 'still': 1.0, 'travel': 1.0, 'will': 1.0, 'also': 1.0, 'whatever': 1.0, 'light': 1.0, 'own': 1.0, 'control': 1.0, 'anyways': 1.0, 'but': 1.0, 'can': 1.0, 'enough': 1.0, 'off': 2.0, 'or': 1.0, 'charger': 1.0, 'list': 1.0, 'top': 1.0, 'my': 3.0, 'without': 1.0, 'the': 3.0, 'these': 3.0, 'are': 1.0, 'at': 1.0, 'they': 5.0, 'now': 1.0, 'all': 1.0, 'to': 1.0, 'love': 2.0, 'stars': 1.0, 'lights': 1.0, 'for': 3.0, 'i': 3.0, '4': 1.0, 'color': 1.0, 'one': 2.0, 'months': 1.0, 't': 1.0, 'we': 2.0, 'other': 1.0, 'constantly': 1.0, 'on': 2.0, '3': 1.0, 'when': 1.0, 'boys': 2.0, 'projector': 1.0, 'of': 2.0, '6': 1.0, 'said': 1.0, 'age': 1.0, 'them': 1.0, 'night': 2.0, 'baby': 1.0, 'over': 1.0, 'don': 1.0, 'kickin': 1.0, 'wanting': 1.0, '1': 1.0, 'too': 1.0, 'and': 5.0, 'me': 1.0, 'that': 2.0, 'were': 1.0, 'their': 2.0, 'being': 1.0, 'want': 2.0, '10': 1.0, 'each': 1.0, 'kid': 1.0, 'have': 4.0, 'must': 1.0, 'haves': 1.0, 'it': 4.0, 'every': 1.0, 'single': 1.0, 'feeding': 1.0, 'with': 1.0, 'fight': 1.0}
Word element => {'in': 1.0, 'even': 1.0, 'through': 1.0, 'last': 1.0, 'teething': 1.0, 'best': 1.0, 'you': 1.0, 'ever': 1.0, 'they': 1.0, 'investing': 1.0, 'better': 1.0, 'are': 2.0, 'pacifiers': 1.0, 'made': 1.0, 'cheap': 1.0, 'then': 1.0, 'stores': 1.0, 'these': 1.0, 'the': 2.0, 'ones': 1.0, 'at': 1.0, 'and': 1.0, 'get': 1.0, 'other': 1.0, 'worth': 1.0}
Word element => {'goes': 1.0, 'night': 1.0, 'when': 1.0, 'uses': 1.0, 'to': 1.0, 'exactly': 1.0, 'bed': 1.0, 'he': 1.0, 'good': 1.0, 'value': 1.0, 'my': 1.0, 'every': 1.0, 'little': 1.0, 'as': 1.0, 'described': 1.0, 'and': 1.0, 'boy': 1.0, 'loves': 1.0, 'it': 2.0}
Word element => {'available': 1.0, 'picking': 1.0, 'recommend': 1.0, 'highly': 1.0, 'life': 1.0, 'in': 1.0, 'special': 1.0, 'visiting': 1.0, 'while': 1.0, 'many': 1.0, 'she': 1.0, 'when': 1.0, 'niece': 1.0, 'dino': 2.0, 'with': 1.0, 'no': 1.0, 'have': 1.0, 'we': 1.0, 'return': 1.0, 'slip': 1.0, 'mailing': 1.0, 'w': 1.0, 'is': 1.0, 'one': 2.0, 'stay': 1.0, 'brontosaurus': 2.0, 'not': 2.0, 'just': 1.0, 'light': 4.0, 'colors': 1.0, 'girl': 1.0, 'fully': 1.0, 'than': 1.0, 'does': 1.0, 'different': 1.0, 'softer': 1.0, 'night': 4.0, 'can': 1.0, 'along': 1.0, 'replacement': 1.0, 't': 1.0, 'of': 2.0, 'the': 12.0, 'color': 1.0, 'sight': 1.0, 'followed': 1.0, 'immediately': 1.0, 'even': 1.0, 'lights': 4.0, 'for': 3.0, 'had': 3.0, 'charged': 1.0, 'finally': 1.0, 'damaged': 1.0, 'found': 1.0, 'whole': 1.0, 'i': 7.0, 'unique': 1.0, 'exterior': 1.0, 'batteries': 1.0, 'sadly': 1.0, 'think': 1.0, 'on': 1.0, 'and': 6.0, 'across': 1.0, 'came': 1.0, 'some': 1.0, 'from': 1.0, 'fun': 1.0, 'through': 1.0, 'loved': 2.0, 'or': 2.0, 'kinderglo': 2.0, 'our': 1.0, 'to': 2.0, 'their': 1.0, 'an': 1.0, 'all': 1.0, 'links': 1.0, 'also': 1.0, 'automatic': 1.0, 'deciding': 1.0, 'bedtime': 1.0, 'between': 1.0, 'problems': 1.0, 'that': 2.0, 'tyke': 1.0, 'trouble': 1.0, 'get': 1.0, 'it': 5.0, 'borrowed': 1.0, 'they': 1.0, 'recharges': 1.0, 'during': 1.0, 'day': 2.0, 'use': 1.0, 'rotate': 1.0, 'up': 2.0, 'solution': 1.0, 'has': 1.0, '30': 1.0, 'buddy': 1.0, 'off': 1.0, 'after': 2.0, 'minutes': 1.0, 'was': 1.0, 'me': 1.0, 'my': 2.0, 'rex': 1.0, 'son': 1.0, 'around': 1.0, 'his': 2.0, 'little': 4.0, 'working': 1.0, 'first': 2.0, 'love': 1.0, 'he': 1.0, 'boy': 1.0, 'would': 1.0, 'varieties': 1.0, 'time': 1.0, 'new': 2.0, 'carry': 1.0, 'making': 1.0, 'challenge': 1.0, 'a': 3.0, 'emailed': 1.0, 'perfect': 1.0, 'manufacturer': 1.0, 'your': 1.0, 'mailed': 1.0}
Word element => {'who': 1.0, 'just': 1.0, 'excuses': 1.0, 'really': 1.0, 'their': 1.0, 'customer': 2.0, 'can': 2.0, 'protect': 1.0, 'warehouse': 1.0, 'would': 2.0, 'new': 1.0, 'dinosaur': 3.0, 'at': 2.0, 'three': 1.0, 'told': 2.0, 'about': 2.0, 'no': 2.0, 'middle': 1.0, 'wants': 1.0, 'made': 1.0, 'out': 1.0, 'unacceptable': 1.0, 'replacement': 1.0, 'screaming': 1.0, 'light': 2.0, 'from': 1.0, 'later': 1.0, 'what': 1.0, 'had': 1.0, 'her': 4.0, 'late': 1.0, 'loves': 1.0, 'easily': 1.0, 'fall': 1.0, 'that': 1.0, 'company': 2.0, 'around': 1.0, 'business': 1.0, 'the': 9.0, 'of': 1.0, 'up': 1.0, 'not': 1.0, 'and': 6.0, 'she': 2.0, 'it': 4.0, 'we': 3.0, 'take': 1.0, 'cuddle': 1.0, 'us': 1.0, 'in': 4.0, 'night': 4.0, 'send': 1.0, 'telling': 1.0, 'stories': 1.0, 'my': 1.0, 'me': 3.0, 'commitment': 1.0, 'to': 4.0, 'all': 1.0, 'our': 1.0, 'this': 2.0, 'with': 4.0, 'love': 1.0, 'bed': 1.0, 'arrived': 1.0, 'has': 1.0, 'bathroom': 1.0, 'kept': 1.0, 'transit': 1.0, 'during': 1.0, 'was': 2.0, 'companies': 1.0, 'its': 1.0, 'customers': 1.0, 'products': 1.0, 'handling': 1.0, 'stays': 1.0, 'be': 1.0, 'know': 1.0, 'damaged': 1.0, 'or': 2.0, 'cares': 1.0, 'wherever': 1.0, 'base': 1.0, 'working': 2.0, 'i': 1.0, 'a': 4.0, 'emailed': 1.0, 'daughter': 1.0, 'got': 1.0, 'response': 1.0, 'same': 1.0, 'day': 1.0, 'days': 1.0, 'they': 2.0, 'right': 1.0, 'away': 1.0, 'perfectly': 1.0, 'too': 1.0, 'one': 1.0, 'impressed': 1.0, 'run': 1.0}
Word element => {'spent': 1.0, 'ever': 1.0, '25': 1.0, 'probably': 1.0, 'minutes': 1.0, 'of': 1.0, 'never': 1.0, 'to': 1.0, 'all': 3.0, 'every': 1.0, 'instead': 1.0, 'it': 3.0, 'with': 1.0, 'only': 1.0, 'used': 1.0, 'has': 2.0, 'time': 1.0, 'ordered': 1.0, 'night': 4.0, 'i': 4.0, 'since': 1.0, 'bright': 1.0, 'and': 2.0, 'my': 2.0, 'color': 1.0, 'just': 1.0, 'light': 1.0, 'had': 1.0, 'best': 1.0, 'years': 1.0, '2': 1.0, 'the': 4.0, 'still': 1.0, 'son': 2.0, 'very': 1.0, 'problem': 1.0, 'then': 1.0, 'charger': 1.0, 'wonderful': 1.0, 'mode': 1.0, 'say': 1.0, 'is': 3.0, 'after': 1.0, 'have': 4.0, 'small': 1.0, 'complaint': 1.0, 'been': 1.0, 'changing': 1.0, 'that': 1.0, '30': 1.0, 'this': 3.0, 'wish': 1.0, 'you': 1.0, 'we': 2.0, 'a': 1.0, 'ago': 1.0, 'could': 1.0, 'on': 2.0}
Word element => {'years': 1.0, 'should': 1.0, 'that': 1.0, 'light': 1.0, 'many': 1.0, 'is': 1.0, 'seriously': 1.0, 'all': 1.0, 'in': 1.0, 'love': 1.0, 'to': 1.0, 'soon': 1.0, '10': 1.0, 'jurassicness': 1.0, 'too': 1.0, 'quality': 1.0, 'but': 1.0, 'will': 2.0, 'my': 1.0, 'the': 2.0, 'like': 1.0, 'at': 1.0, 'nephew': 1.0, 'night': 1.0, 'i': 2.0, 'on': 1.0, 'months': 1.0, 'wall': 1.0, 's': 2.0, 'and': 1.0, 'shape': 2.0, 'know': 1.0, 'just': 1.0, 'think': 1.0, 'this': 1.0, 'come': 1.0, 'he': 1.0, 'it': 2.0, 'dinosaurs': 1.0, 'a': 2.0, 'last': 1.0, 'may': 1.0, 'glowing': 2.0}
Word element => {'working': 1.0, 'still': 1.0, 'feet': 1.0, 'of': 1.0, 'near': 1.0, 'but': 1.0, 'crack': 1.0, 'has': 1.0, 's': 1.0, 'point': 1.0, 'now': 1.0, 'dropped': 1.0, 'we': 1.0, 'perfectly': 1.0, 'and': 3.0, 'as': 1.0, 'change': 1.0, 'little': 1.0, 'she': 1.0, 'seeing': 1.0, 'my': 1.0, 'unfortunately': 1.0, 'night': 1.0, 'some': 1.0, 'at': 2.0, 'light': 1.0, 'a': 2.0, 'one': 2.0, 'for': 1.0, 'using': 1.0, 'loves': 1.0, 'this': 1.0, 'it': 5.0, 'works': 1.0, 'the': 2.0, 'great': 1.0, 'staring': 1.0, 'colors': 1.0}
Word element => {'herself': 1.0, 'station': 1.0, 'places': 1.0, 'an': 1.0, 'on': 2.0, 'turns': 2.0, 'actually': 1.0, 'night': 1.0, 'old': 1.0, '3': 1.0, 'our': 1.0, 'and': 2.0, 'gets': 1.0, 'daughter': 1.0, 'had': 1.0, 'ago': 1.0, 'my': 1.0, 'of': 1.0, 'for': 1.0, 'one': 1.0, 'year': 1.0, 'charging': 2.0, 'issues': 2.0, 'off': 1.0, 'almost': 1.0, 'or': 1.0, 'every': 2.0, 'use': 1.0, 'purchased': 1.0, 'the': 1.0, '2': 1.0, 'these': 1.0, 'have': 1.0, 'we': 2.0, 'other': 1.0, 'morning': 1.0, 'item': 1.0, 'not': 1.0, 'years': 1.0, 'any': 2.0, 'daily': 1.0, 'with': 1.0, 'this': 1.0, 'it': 4.0}
Word element => {'product': 1.0, 'excellent': 1.0, 'ways': 1.0, 'of': 1.0, 'sorts': 1.0, 'all': 1.0, 'usable': 1.0, 'and': 1.0, 'this': 1.0, 'is': 1.0, 'a': 1.0, 'light': 1.0, 'simple': 1.0, 'yet': 1.0, 'elegant': 1.0, 'portable': 1.0, 'night': 1.0, 'in': 1.0, 'children': 1.0, 'for': 1.0}
Word element => {'aid': 1.0, 'great': 2.0, 'for': 2.0, 'in': 1.0, 'will': 1.0, 'buy': 1.0, 'won': 1.0, 'value': 1.0, 'of': 1.0, 'his': 1.0, 'bedtime': 1.0, 'the': 2.0, 'more': 1.0, 'my': 1.0, 'let': 1.0, 't': 1.0, 'this': 1.0, 'out': 1.0, 'thing': 1.0, 'price': 1.0, 'future': 1.0, 'child': 1.0, 'sight': 1.0}
Word element => {'dreamland': 1.0, 'already': 1.0, 'well': 1.0, 'then': 1.0, 'which': 1.0, 'soothing': 1.0, 'before': 1.0, 'looking': 1.0, 'plenty': 1.0, 'needed': 1.0, 'he': 3.0, 'what': 1.0, 'enjoys': 1.0, 'exactly': 1.0, 'but': 1.0, 'us': 1.0, 'happening': 1.0, 'function': 1.0, 'reviews': 1.0, 'other': 1.0, 'of': 2.0, 'discussed': 1.0, 'issues': 1.0, 'if': 1.0, 'deciding': 1.0, 'charging': 1.0, 'm': 1.0, 'instead': 1.0, 'there': 1.0, 'that': 2.0, 'i': 2.0, 'night': 1.0, 'old': 1.0, 'horrible': 1.0, 'after': 1.0, 'chose': 1.0, 'minutes': 1.0, 'was': 1.0, 'our': 1.0, 'to': 2.0, 'safe': 1.0, 'wasn': 1.0, 'my': 1.0, 'bed': 1.0, 'for': 4.0, 'one': 1.0, 'feel': 1.0, 'still': 1.0, 'wants': 1.0, 'son': 1.0, 'too': 1.0, 'and': 2.0, 'starting': 1.0, '3': 1.0, 'guy': 1.0, 'turns': 1.0, 'the': 5.0, 'desperately': 1.0, 'tyke': 1.0, 'researching': 1.0, 'in': 4.0, 'at': 2.0, 'option': 1.0, 'off': 1.0, 'house': 1.0, 'is': 1.0, 'lighting': 1.0, 'glad': 1.0, 'year': 1.0, 'his': 1.0, 'very': 1.0, 'read': 1.0, 'little': 2.0, 'passion': 1.0, 'pictures': 1.0, 'found': 1.0, 'this': 2.0, 'while': 1.0, 'few': 1.0, 'light': 4.0, 's': 1.0, 't': 1.0, 'a': 2.0, 'we': 2.0, 'are': 3.0}
Word element => {'travel': 1.0, 'also': 1.0, 'chew': 1.0, 'likes': 1.0, 'who': 1.0, 'one': 1.0, 'little': 1.0, 'need': 1.0, 'everything': 1.0, 'if': 1.0, 'off': 1.0, 'on': 2.0, 'turn': 1.0, 'later': 1.0, 'kinderglo': 2.0, 'got': 2.0, 'already': 1.0, 'it': 4.0, 'come': 1.0, 'with': 3.0, 'which': 1.0, 'charger': 1.0, 'a': 2.0, 'base': 3.0, 'light': 3.0, 'why': 1.0, 'great': 2.0, 'big': 1.0, 'is': 4.0, 'second': 1.0, 'kinder': 1.0, 'they': 2.0, 'did': 1.0, 'deal': 1.0, 'the': 1.0, 'not': 2.0, '4': 1.0, 'i': 2.0, 'glow': 1.0, 'had': 1.0, 'was': 2.0, 'sleep': 1.0, 'to': 3.0, 'my': 3.0, 'another': 2.0, 'so': 1.0, 'contacted': 1.0, 'and': 3.0, 'awesome': 1.0, 'their': 1.0, 'this': 1.0, 'kids': 1.0, 'for': 2.0, 'stars': 1.0, 'lights': 1.0, 'love': 1.0, 'night': 1.0, 'them': 2.0, 'but': 1.0, 'work': 1.0, 'can': 1.0, 'easily': 1.0}
Word element => {'light': 1.0, 'with': 1.0, 'gift': 1.0, 'nice': 1.0, 'offf': 1.0, 'charged': 1.0, 'only': 1.0, 'this': 1.0, 'and': 3.0, 'get': 1.0, 'be': 1.0, 'bought': 1.0, 'grandsons': 1.0, 'adorable': 1.0, 'charging': 1.0, 'very': 1.0, 'on': 1.0, 'put': 1.0, 'base': 2.0, 'i': 3.0, 'two': 1.0, 'for': 3.0, 'these': 1.0, 'the': 4.0, 'they': 4.0, 'my': 1.0, 'are': 1.0, 'of': 2.0, 'taken': 1.0, 'set': 1.0, 'really': 1.0, 'can': 1.0, 'change': 1.0, 'sleeps': 1.0, 'is': 1.0, 'as': 1.0, 'to': 1.0, 'up': 1.0, 'child': 2.0, 'night': 1.0, 'them': 3.0, 'out': 1.0, 'if': 1.0, 'remember': 1.0, 'correctly': 1.0, 'colors': 1.0, 'well': 1.0, 'a': 3.0, 'saw': 1.0, 'opened': 1.0, 'that': 1.0, 'next': 1.0, 'box': 1.0, 'when': 1.0}
Word element => {'easy': 1.0, 'makes': 1.0, 'again': 1.0, 'on': 1.0, 'you': 2.0, 'when': 1.0, 'min': 1.0, '30': 1.0, 'turns': 1.0, 'of': 1.0, 'up': 1.0, 'charger': 2.0, 'replaced': 1.0, 'no': 1.0, 'back': 1.0, 'put': 1.0, 'but': 1.0, 'son': 2.0, 'the': 5.0, 'in': 1.0, 'needs': 1.0, 'company': 1.0, 'my': 2.0, 'middle': 1.0, 'a': 1.0, 'if': 2.0, 'problem': 2.0, 'after': 1.0, 'so': 1.0, 'lights': 1.0, 'had': 1.0, 'love': 1.0, 'off': 2.0, 'loves': 1.0, 'with': 2.0, 'it': 8.0, 'this': 1.0, 'i': 3.0, 'night': 2.0, 'take': 1.0, 'light': 1.0, 'do': 1.0, 'and': 2.0, 'that': 2.0}
Word element => {'sleep': 1.0, 'go': 1.0, 'to': 2.0, 'night': 1.0, 'every': 1.0, 'she': 1.0, 'for': 1.0, 'on': 1.0, 'the': 1.0, 'new': 1.0, 'gift': 1.0, 'grandchild': 1.0, 'wants': 1.0, 'great': 1.0, 'it': 1.0}
Word element => {'side': 1.0, 'reading': 1.0, 'was': 1.0, 'and': 1.0, 'my': 1.0, 'use': 1.0, 'get': 1.0, 'do': 1.0, 'when': 2.0, 'daughter': 1.0, 'knowledge': 1.0, 'old': 2.0, 'would': 2.0, 'got': 1.0, 'didn': 1.0, 'month': 1.0, 'it': 3.0, 'product': 2.0, 'love': 1.0, 'for': 2.0, 'an': 1.0, 'actual': 1.0, 'to': 2.0, 'had': 1.0, 'but': 1.0, '2': 1.0, 't': 1.0, 'on': 1.0, 'i': 6.0, '4': 1.0, 'bought': 2.0, 'months': 1.0, 'piece': 1.0, 'item': 1.0, 'the': 3.0, 'without': 1.0, 'knowing': 1.0, 'is': 1.0, 'not': 1.0, 'review': 1.0, 'recommended': 1.0, 'box': 1.0, 'that': 3.0, 'babies': 1.0, 'have': 1.0, 'younger': 1.0, 'than': 1.0, 'this': 2.0, 'wish': 1.0, 'of': 2.0, 'til': 1.0, 'learn': 1.0}
Word element => {'secure': 1.0, 'is': 2.0, 'snap': 1.0, 'working': 1.0, 'snapped': 1.0, 'stay': 1.0, 'loves': 1.0, 'daughter': 1.0, 'which': 1.0, 'my': 1.0, 'great': 1.0, 't': 1.0, 'the': 2.0, 'and': 1.0, 'as': 1.0, 'fits': 1.0, 'concerned': 1.0, 'gift': 1.0, 'a': 1.0, 'had': 1.0, 'to': 1.0, 'was': 2.0, 'over': 1.0, 'snuggly': 1.0, 'she': 2.0, 'last': 1.0, 'buy': 1.0, 'shut': 1.0, 'sling': 1.0, 'one': 2.0, 'it': 2.0, 'this': 2.0, 'wouldn': 1.0}
Word element => {'amazon': 1.0, 'thanks': 1.0, 'bit': 1.0, 'a': 1.0, 'price': 1.0, 'conveinant': 1.0, 'fast': 1.0, 'use': 1.0, 'delivery': 1.0, 'quite': 1.0, 'very': 1.0, 'and': 1.0, 'great': 1.0, 'we': 1.0, 'this': 1.0, 'item': 1.0}
Word element => {'free': 1.0, 'hand': 2.0, 'one': 2.0, 'generally': 1.0, 'himself': 1.0, 'unseat': 1.0, 'enough': 1.0, 'hard': 1.0, 'bucked': 1.0, 'hold': 1.0, 'will': 1.0, 'convinced': 1.0, 'entirely': 1.0, 'not': 1.0, 'there': 1.0, 'secured': 1.0, 'keep': 1.0, 'seatbelt': 2.0, 'that': 3.0, 'do': 1.0, 'put': 1.0, 'harder': 1.0, 'though': 1.0, 'found': 1.0, 'as': 1.0, 'stars': 1.0, 'sleeping': 1.0, 'manufacturer': 1.0, 'which': 3.0, 'carriers': 1.0, 'rate': 1.0, 'mouth': 1.0, 'worried': 1.0, 'a': 2.0, 'take': 1.0, 'we': 2.0, 's': 4.0, 're': 1.0, 'house': 1.0, 'more': 1.0, 'babies': 1.0, 'have': 1.0, 'roomy': 1.0, 't': 3.0, 'likes': 1.0, 'squirmy': 1.0, 'better': 1.0, 'about': 1.0, 'whole': 1.0, 'age': 1.0, 'baby': 2.0, 'our': 3.0, 'pretty': 1.0, 'to': 10.0, 'check': 1.0, 'only': 1.0, 'hasn': 1.0, 'old': 1.0, 'be': 3.0, 'off': 1.0, 'tried': 1.0, 'things': 1.0, 'fabric': 1.0, 'for': 3.0, 'but': 2.0, 'four': 1.0, 'also': 1.0, 'would': 1.0, 'with': 1.0, 'buying': 1.0, 'this': 4.0, '30': 1.0, 'the': 6.0, 'doing': 1.0, 'yet': 1.0, 'he': 5.0, 'him': 4.0, 'it': 5.0, 'little': 1.0, 'like': 3.0, 'rather': 1.0, 'so': 3.0, 'comply': 1.0, 'three': 1.0, 'may': 1.0, 'i': 10.0, 'has': 1.0, 'watching': 1.0, 'great': 1.0, 'need': 1.0, 'taken': 1.0, 'done': 1.0, 'if': 1.0, 'covering': 1.0, 'still': 3.0, 'bigger': 1.0, 'every': 1.0, 'seconds': 1.0, 'isn': 1.0, 'getting': 2.0, 'cleaning': 1.0, 'other': 2.0, 'was': 1.0, 'useful': 1.0, 'doesn': 1.0, 'reason': 1.0, 'on': 3.0, 'update': 1.0, 'out': 1.0, 'is': 1.0, 'his': 1.0, 'around': 1.0, 'now': 2.0, 'get': 1.0, 'months': 1.0, 'lying': 1.0, 'recommended': 1.0, 'and': 3.0, 'carrier': 2.0, 'sling': 1.0, 'when': 2.0, 'sit': 1.0, 'what': 1.0, 'in': 3.0, 'm': 2.0, 'd': 1.0, 'use': 2.0, 'occasionally': 1.0, 'facing': 1.0, 'while': 1.0, 've': 2.0, 'down': 1.0, 'feel': 1.0, 'probably': 1.0}
Word element => {'regret': 1.0, 'dont': 1.0, 'breast': 1.0, 'or': 1.0, 'sleep': 1.0, 'place': 1.0, 'whatsoever': 1.0, 'time': 2.0, 'every': 1.0, 'that': 1.0, 'so': 1.0, 'any': 1.0, 'baby': 2.0, 'comfortable': 1.0, 'sling': 2.0, 'expected': 1.0, 'way': 1.0, 'lasting': 1.0, 'i': 3.0, 'itself': 1.0, 'than': 1.0, 'far': 1.0, 'better': 1.0, 'in': 2.0, 'seems': 1.0, 'made': 1.0, 'is': 3.0, 'product': 1.0, 'be': 1.0, 'very': 1.0, 'and': 1.0, 'quality': 1.0, 'this': 1.0, 'durable': 1.0, 'buying': 1.0, 'to': 3.0, 'its': 1.0, 'feed': 1.0, 'soft': 1.0, 'the': 5.0, 'interior': 1.0}
Word element => {'k': 1.0, 'favorite': 1.0, 'my': 1.0, 'maya': 1.0, 'ergo': 1.0, 'an': 1.0, 'try': 1.0, 'd': 1.0, 'new': 1.0, 'if': 1.0, 'gadgets': 1.0, 'tan': 1.0, 'baby': 2.0, 'strollers': 1.0, 'cribs': 1.0, 'harm': 1.0, 'come': 1.0, 'have': 1.0, 'more': 1.0, 'way': 1.0, 'mind': 1.0, 'above': 1.0, 'nice': 1.0, 'or': 2.0, 'let': 1.0, 'everywhere': 1.0, 'on': 1.0, 'suffocation': 1.0, 'months': 1.0, 'the': 2.0, 'some': 3.0, 'these': 1.0, 'to': 2.0, 'apperaed': 1.0, 'you': 1.0, 'when': 1.0, 'carriers': 1.0, 'a': 1.0, 's': 1.0, 'for': 2.0, 'liked': 1.0, 'sling': 3.0, 'style': 1.0, 'me': 1.0, 'market': 1.0, 'and': 1.0, 'never': 1.0, 'other': 1.0, 'nerds': 1.0, 'babywearing': 2.0, 'like': 1.0, 'type': 1.0, 'course': 1.0, 'bag': 2.0, 'older': 1.0, 'this': 1.0, 'that': 1.0, 'babies': 3.0, 'are': 2.0, 'okay': 1.0, '4': 1.0, 'i': 2.0, 'guess': 1.0, 'work': 1.0, 'but': 2.0, 'most': 1.0, 'can': 1.0, 'they': 2.0, 'cause': 1.0, 'in': 3.0, 'very': 1.0, 'rare': 1.0, 'of': 1.0, 'keep': 1.0}
Word element => {'s': 1.0, 'someone': 1.0, 'office': 1.0, 'gift': 1.0, 'a': 1.0, 'can': 1.0, 'not': 1.0, 'for': 2.0, 'fun': 1.0, 'kids': 1.0, 'these': 1.0, 'and': 1.0, 'nicely': 1.0, 'just': 1.0, 'all': 1.0, 'of': 1.0, 'mobiles': 1.0, 'make': 1.0, 'are': 1.0, 'made': 1.0}
Word element => {'ok': 1.0, 'hard': 1.0, 'look': 1.0, 'in': 1.0, 'they': 2.0, 'but': 1.0, 'planes': 1.0, 'wood': 1.0, 'still': 1.0, 'tought': 1.0, 'paper': 1.0, 'were': 1.0, 'are': 1.0, 'the': 1.0, 'real': 1.0, 'some': 2.0, 'on': 1.0, 'material': 1.0, 'i': 1.0, 'or': 1.0}
Word element => {'right': 1.0, 'away': 1.0, 'suggest': 1.0, 'so': 1.0, 'all': 1.0, 'pain': 1.0, 'i': 1.0, 'when': 1.0, 'in': 1.0, 'falls': 1.0, 'the': 1.0, 'again': 1.0, 'you': 1.0, 'butt': 1.0, 'apart': 1.0, 'putting': 2.0, 'together': 1.0, 'up': 2.0, 'and': 1.0, 'pick': 1.0, 'it': 3.0}
Word element => {'air': 1.0, 'slightest': 1.0, 'the': 1.0, 'it': 3.0, 'with': 1.0, 'is': 1.0, 'rotates': 1.0, 'easy': 1.0, 'to': 1.0, 'put': 1.0, 'of': 1.0, 'has': 1.0, 'pretty': 1.0, 'puff': 1.0, 'together': 1.0, 'swings': 1.0, 'colors': 1.0, 'nicely': 1.0, 'and': 1.0}
Word element => {'you': 1.0, 'thank': 1.0, 'baby': 1.0, 'be': 1.0, 'using': 1.0, 'sleeping': 1.0, 'say': 1.0, 'is': 1.0, 'old': 1.0, 'house': 1.0, 'would': 1.0, 'new': 2.0, 'moving': 1.0, 'scraches': 1.0, 'no': 1.0, 'after': 2.0, 'holding': 1.0, 'now': 1.0, 'years': 1.0, 'up': 1.0, 'over': 1.0, 'this': 3.0, 'have': 1.0, 'in': 2.0, '2012we': 1.0, '5': 1.0, '10': 1.0, 'the': 1.0, 'at': 1.0, 'sure': 1.0, 'i': 2.0, 'two': 1.0, 'pricy': 1.0, 'couple': 1.0, 'update': 1.0, 'out': 1.0, 'great': 3.0, 'big': 1.0, 'from': 1.0, 'still': 2.0, 'test': 1.0, 'even': 1.0, 'got': 1.0, 'has': 1.0, 'thos': 1.0, 'its': 3.0, 'had': 2.0, 'was': 2.0, 'beautiful': 1.0, 'of': 1.0, 'lil': 1.0, '26': 1.0, 'we': 4.0, 'a': 3.0, 'purchase': 1.0, 'fits': 1.0, 'my': 1.0, '169': 1.0, 'less': 1.0, 'love': 1.0, 'for': 4.0, 'strudly': 1.0, 'and': 6.0, 'paid': 1.0, 'last': 1.0, 'walmart': 2.0, 'week': 1.0, 'an': 1.0, 'put': 1.0, 'pieces': 1.0, 'crib': 5.0, 'nothing': 1.0, 'damaged': 1.0, 'then': 1.0, 'took': 1.0, 'hubby': 1.0, 'will': 1.0, 'hour': 1.0, 'together': 1.0, 'months': 1.0, 'one': 1.0, 'cant': 1.0, 'wait': 1.0, 'month': 1.0, 'looks': 1.0, 'it': 4.0, 'arrive': 1.0, 'to': 3.0, 'all': 2.0, 'our': 2.0, 'time': 1.0, 'so': 2.0, 'can': 1.0}
Word element => {'of': 1.0, 'uk': 1.0, 'has': 1.0, 'how': 1.0, 'so': 1.0, 'travels': 1.0, 'when': 1.0, 'old': 3.0, 'was': 1.0, 'to': 2.0, 'be': 1.0, 'won': 1.0, 'over': 2.0, 't': 1.0, '2': 2.0, 'until': 1.0, 'or': 1.0, 'service': 1.0, 'really': 1.0, 'a': 4.0, 'times': 1.0, 'tall': 1.0, 'year': 3.0, 'know': 1.0, 'excellent': 1.0, 'usa': 1.0, 'arrived': 1.0, 'needs': 1.0, 'couple': 1.0, 'done': 1.0, 'and': 1.0, 'get': 1.0, 'three': 1.0, 'christmas': 1.0, 'with': 1.0, 'thrilled': 1.0, 'excited': 1.0, 'it': 5.0, 'moving': 1.0, 'but': 1.0, 'she': 1.0}
Word element => {'fit': 1.0, 'little': 1.0, 'to': 1.0, 'was': 1.0, 'wish': 1.0, 'just': 1.0, 'worth': 1.0, 'a': 1.0, 'well': 1.0, 'more': 1.0, 'trunki': 1.0, 'the': 2.0, 'did': 1.0, 'where': 1.0, 'from': 1.0, 'son': 1.0, 'stoped': 1.0, 'money': 1.0, 'ask': 1.0, 'my': 1.0, 'for': 1.0, 'larger': 1.0, 'everytime': 1.0, 'in': 2.0, 'bag': 1.0, 'loves': 1.0, 'who': 1.0, 'i': 2.0, 'he': 1.0, 'this': 1.0, 'it': 4.0, 'we': 2.0, 'get': 2.0, 's': 1.0, 'purchased': 1.0, 'use': 1.0, 'is': 2.0, 'people': 1.0, '6': 1.0, 'always': 1.0}
Word element => {'quite': 1.0, 'certain': 1.0, 'am': 1.0, 'give': 1.0, 'after': 1.0, 'get': 1.0, 'where': 1.0, 'asking': 1.0, 'complimenting': 1.0, 'staff': 1.0, 'alot': 1.0, 'receive': 1.0, 'prepared': 1.0, 'worth': 1.0, 'overall': 1.0, 'room': 1.0, 'more': 1.0, 'had': 1.0, 'but': 1.0, 'multi': 1.0, 'when': 2.0, 'her': 1.0, 'loved': 1.0, 'from': 1.0, 'fabulous': 1.0, 'layovers': 1.0, 'airport': 2.0, 'flights': 1.0, 'to': 9.0, 'in': 3.0, 'seat': 1.0, '3': 2.0, 'ride': 1.0, 'packed': 1.0, 'tired': 1.0, 'leg': 2.0, 'we': 6.0, 'no': 1.0, 'is': 5.0, 'who': 1.0, 'contoured': 1.0, 'old': 2.0, 'price': 1.0, 'year': 2.0, 'about': 1.0, 'awesome': 1.0, 'something': 1.0, 'entertained': 1.0, 'others': 1.0, 'she': 3.0, 'few': 1.0, 'this': 4.0, 'a': 4.0, 'small': 1.0, 'flat': 1.0, 'pulling': 1.0, 'pull': 2.0, 'attention': 1.0, 'of': 3.0, 'longer': 1.0, 'the': 9.0, 'suitcase': 1.0, 'into': 1.0, 'stroller': 1.0, 'for': 4.0, 'fit': 1.0, 'be': 3.0, 'bought': 1.0, 'my': 3.0, 'me': 1.0, 'not': 2.0, 'trip': 1.0, 'and': 8.0, 'time': 1.0, 'tall': 1.0, 'one': 1.0, 'too': 1.0, 'sold': 1.0, 'know': 1.0, 'easy': 2.0, 'needed': 1.0, 'walking': 1.0, 'even': 1.0, 's': 3.0, 'sides': 1.0, 'dealbreaker': 1.0, 'are': 1.0, 'was': 5.0, 'opens': 1.0, 'should': 1.0, 'ahead': 1.0, 'placement': 1.0, 'on': 3.0, 'flight': 1.0, 'up': 1.0, 'i': 2.0, 'that': 1.0, 'concerned': 1.0, 'because': 3.0, 'important': 2.0, 'plane': 1.0, 'have': 1.0, 'remember': 1.0, 'so': 1.0, 'convenient': 1.0, 'open': 1.0, 'while': 1.0, 'us': 2.0, 'also': 1.0, 'could': 1.0, 'travel': 1.0, 'will': 1.0, 'or': 1.0, 'need': 2.0, 'bag': 1.0, 'overhead': 1.0, 'bin': 1.0, 'little': 1.0, 'big': 1.0, 'often': 1.0, 'under': 1.0, 'percentage': 1.0, 'anything': 1.0, 'it': 10.0, 'thought': 1.0, 'd': 1.0, 'though': 1.0, 'during': 1.0, 'opened': 1.0, 'trunki': 2.0, 'between': 1.0}
Word element => {'what': 1.0, 'like': 1.0, 'tell': 1.0, 'wonder': 1.0, 'so': 1.0, 'however': 1.0, 'do': 2.0, 'said': 1.0, 'is': 1.0, 'son': 2.0, 'time': 1.0, 'i': 2.0, 'important': 1.0, 'loves': 2.0, 'which': 1.0, 'our': 2.0, 'did': 1.0, 'if': 1.0, 'the': 1.0, 'of': 1.0, 'up': 1.0, 'supposed': 1.0, 'travel': 1.0, 'it': 4.0, 'only': 1.0, 'but': 1.0, 'quality': 1.0, 'will': 2.0, 'hold': 1.0, 'was': 1.0, 'to': 2.0, 'lots': 1.0}
Word element => {'doug': 1.0, 'melissa': 1.0, 'my': 1.0, 'the': 3.0, 'floor': 1.0, 'version': 1.0, 'on': 2.0, 'is': 1.0, 'put': 1.0, 'tried': 1.0, 'i': 1.0, 'soon': 1.0, 'son': 1.0, 'as': 2.0, 'very': 1.0, 'and': 1.0, 'to': 1.0, 'climb': 1.0, 'sturdy': 1.0, 'well': 1.0, 'built': 1.0, 'older': 1.0, 'it': 2.0, 'this': 1.0, 'not': 1.0}
Word element => {'out': 1.0, 'getting': 1.0, 'just': 1.0, 'jetway': 1.0, 'ended': 1.0, 'have': 1.0, 'plane': 2.0, 'once': 1.0, 'awkward': 1.0, 'corners': 1.0, 'obstacles': 1.0, 'gently': 1.0, 'turns': 1.0, 'very': 1.0, 'must': 1.0, 'you': 1.0, 'open': 1.0, 'over': 1.0, 'tip': 1.0, 'apt': 1.0, 'more': 1.0, 'empty': 1.0, 'them': 1.0, 'ours': 1.0, 'let': 1.0, 'deal': 1.0, 'she': 3.0, 'normally': 1.0, 'it': 3.0, 'much': 2.0, 'so': 1.0, 'lightweight': 1.0, 'often': 1.0, 'and': 7.0, 'old': 2.0, 'drag': 1.0, 'finds': 1.0, 'hand': 2.0, 'to': 10.0, 'reason': 1.0, 'entirely': 1.0, 'never': 2.0, 'who': 1.0, 'a': 7.0, 'moving': 1.0, 'we': 4.0, 'point': 2.0, 'started': 1.0, 'her': 1.0, 'before': 2.0, 'when': 2.0, 'traveling': 1.0, 'seen': 1.0, 'hurt': 1.0, 'pull': 2.0, 'for': 3.0, 'trunki': 6.0, 'while': 1.0, 'child': 1.0, 'toddler': 1.0, 'year': 1.0, 'sibling': 1.0, 'girl': 1.0, 'purchased': 1.0, 'had': 1.0, 'either': 1.0, 'made': 1.0, 'easier': 1.0, '3': 1.0, 'on': 3.0, 'any': 1.0, 'your': 1.0, 'younger': 1.0, 'children': 3.0, 'first': 1.0, 'with': 4.0, 'wide': 1.0, 'time': 1.0, 'around': 2.0, 'from': 1.0, 'fun': 1.0, 'two': 2.0, 'feet': 1.0, 'i': 1.0, 'checking': 1.0, 'pulling': 1.0, '6': 1.0, 'get': 1.0, 'months': 1.0, 'too': 1.0, 'lot': 1.0, 'one': 1.0, 'loved': 1.0, 'racing': 1.0, 'thru': 1.0, 'b': 1.0, 'airports': 1.0, 'even': 1.0, 'didn': 2.0, 'daughter': 1.0, 'got': 1.0, 'want': 1.0, 'inside': 1.0, 'account': 1.0, 'ride': 2.0, 'wanted': 1.0, 'herself': 1.0, 'is': 3.0, 'handle': 1.0, 'easy': 1.0, 'found': 1.0, 't': 2.0, 'along': 1.0, 'fairly': 1.0, 'gate': 1.0, 'pushing': 1.0, 'less': 1.0, 'up': 1.0, 'comments': 2.0, 'our': 2.0, 'stroller': 1.0, 'in': 2.0, 'an': 1.0, 'other': 1.0, 'making': 1.0, 'most': 1.0, 'or': 1.0, 'smiles': 1.0, 'people': 1.0, 'also': 2.0, 'us': 1.0, 'questions': 1.0, 'trying': 1.0, 'extra': 1.0, 'the': 7.0, 'of': 2.0, 'attention': 1.0, 'shy': 1.0, 'few': 1.0}
Word element => {'we': 1.0, 'us': 1.0, 'trips': 1.0, 'attracts': 1.0, 's': 1.0, 'attention': 1.0, 'beyond': 1.0, 'old': 2.0, 'asia': 1.0, 'to': 3.0, 'grandparents': 1.0, 'mention': 1.0, 'yr': 2.0, 'accompanied': 1.0, 'put': 1.0, '6': 1.0, 'my': 2.0, 'cutest': 1.0, 'more': 1.0, 'the': 5.0, 'ever': 1.0, 'beach': 1.0, 'case': 2.0, 'roomy': 1.0, '3': 2.0, 'wishes': 1.0, 'is': 2.0, 'simply': 1.0, 'in': 1.0, 'love': 4.0, 'were': 1.0, 'and': 3.0, 'very': 1.0, 'come': 1.0, 'it': 5.0, 'he': 1.0, 'sturdy': 1.0, 'not': 1.0}
Word element => {'nursery': 1.0, 'or': 1.0, 'funky': 1.0, 'with': 1.0, 'know': 1.0, 'got': 1.0, 'our': 1.0, 'all': 1.0, 'as': 3.0, 'quite': 1.0, 'overall': 1.0, 'difference': 1.0, 'feel': 1.0, 'nice': 1.0, 'big': 1.0, 'having': 1.0, 'because': 1.0, 'one': 3.0, 'decided': 1.0, 'materials': 1.0, 'ultimately': 1.0, 'good': 1.0, 'cradle': 2.0, 'already': 1.0, 'about': 1.0, 'no': 4.0, 'it': 5.0, 'research': 1.0, 'naturpedic': 3.0, 'certified': 1.0, 'covering': 1.0, 'there': 1.0, 'of': 3.0, 'and': 7.0, 'wiped': 1.0, 'sides': 1.0, 'gassing': 1.0, 'would': 1.0, 'isn': 1.0, 'funny': 1.0, 's': 1.0, 't': 2.0, 'a': 3.0, 'plastic': 2.0, 'advertised': 1.0, 'but': 1.0, 'organic': 1.0, 'aren': 1.0, 'can': 1.0, 'event': 1.0, 'little': 1.0, 'very': 1.0, 'price': 1.0, 'best': 1.0, 'was': 3.0, 'two': 1.0, 'i': 8.0, 'pleased': 2.0, 'line': 1.0, 'smell': 1.0, 'an': 1.0, 'this': 4.0, 'mattress': 4.0, 'delivered': 1.0, 'is': 2.0, 'purchased': 1.0, 'had': 1.0, 'what': 1.0, 'leaks': 1.0, 'has': 1.0, 'infant': 1.0, 'be': 2.0, 'off': 2.0, 'am': 1.0, 'again': 2.0, 'smells': 1.0, 'when': 1.0, 'easily': 1.0, 'in': 2.0, 'the': 6.0, 'did': 1.0, 'at': 1.0, 'lot': 1.0, 'on': 2.0, 'crib': 1.0, 'toddler': 1.0, 'torn': 1.0, 'vinyl': 2.0, 'between': 1.0}
Word element => {'that': 1.0, 'really': 1.0, 'i': 1.0, 'one': 1.0, 'mattress': 2.0, 'not': 2.0, 'the': 3.0, 'disappointed': 1.0, 'in': 2.0, 'hole': 1.0, 'a': 3.0, 'contact': 1.0, 'wrapping': 1.0, 'back': 1.0, 'but': 2.0, 'with': 2.0, 'seller': 1.0, 'arrived': 1.0, 'plastic': 1.0, 'item': 1.0, 'ultimately': 1.0, 'sounds': 1.0, 'pain': 1.0, 'was': 1.0, 'to': 1.0, 'decided': 1.0, 'shipping': 1.0, 'like': 1.0}
Word element => {'vibrant': 1.0, 'had': 1.0, 'them': 2.0, 'in': 2.0, 'photo': 1.0, 'enough': 1.0, 'was': 1.0, 'now': 1.0, 'royal': 1.0, 'are': 1.0, 'seem': 1.0, 'sheets': 1.0, 'the': 7.0, 'have': 1.0, 'wars': 1.0, 'to': 2.0, 'sleep': 1.0, 'as': 1.0, 'timely': 1.0, 'from': 1.0, 'saga': 1.0, 'they': 1.0, 'delivery': 1.0, 'and': 3.0, 'cotton': 1.0, 'star': 1.0, 'so': 2.0, 'bedskirt': 1.0, 'of': 1.0, 'just': 1.0, 'pictured': 1.0, 'set': 1.0, 'pleased': 1.0, 'on': 1.0, 'is': 2.0, 'side': 1.0, 'actually': 1.0, 'for': 1.0, 'my': 2.0, 'blue': 1.0, 'grandson': 2.0, 'i': 2.0, 'like': 1.0, 'that': 2.0, 'graphics': 1.0, 'colors': 1.0, 'aren': 1.0, 'much': 1.0, 'dark': 1.0, 'm': 1.0, 'if': 1.0, 'bedding': 1.0, 't': 1.0, 'we': 1.0}
Word element => {'especially': 1.0, 'attention': 1.0, 've': 1.0, 'we': 1.0, '3': 1.0, 'old': 1.0, 'to': 1.0, 'been': 1.0, 'baby': 1.0, 'she': 1.0, 'months': 2.0, '5': 1.0, 'is': 1.0, 'get': 1.0, 'and': 2.0, 'rattle': 1.0, 'our': 1.0, 'this': 1.0, 'her': 1.0, 'using': 1.0, 'for': 1.0, 'likes': 1.0, 'the': 2.0, 'red': 1.0, 'color': 1.0}
Word element => {'noisemaker': 1.0, 'fun': 1.0, 'and': 1.0, 'hold': 1.0, 'to': 1.0, 'easy': 1.0, 'my': 2.0, 'christmas': 1.0, 'bought': 1.0, 'son': 1.0, 'had': 1.0, 'for': 2.0, 'nephew': 1.0, 'of': 1.0, 'these': 1.0, 'so': 1.0, 'one': 2.0, 'i': 1.0, 'this': 1.0}
Word element => {'better': 1.0, 'hold': 1.0, 'would': 1.0, 'think': 1.0, 'one': 1.0, 'but': 2.0, 'instead': 1.0, 'works': 1.0, 'were': 1.0, 'cute': 1.0, 'song': 1.0, 'wish': 1.0, 'baby': 1.0, 'about': 1.0, 'toy': 1.0, 'plays': 1.0, 'nothing': 1.0, 'separate': 1.0, 'fancy': 1.0, 'i': 2.0, 'the': 2.0, 'attention': 1.0, 's': 1.0, 'keys': 1.0, 'piece': 1.0, 'on': 1.0, 'this': 1.0, 'it': 2.0, 'itty': 1.0, 'bitty': 1.0, 'piano': 1.0, 'of': 1.0}
Word element => {'isn': 1.0, 'looking': 1.0, 'item': 1.0, 'will': 1.0, '10': 1.0, 'baby': 1.0, 'about': 1.0, 'years': 1.0, 'one': 2.0, 'for': 2.0, 'i': 3.0, 'very': 1.0, 'doesn': 1.0, 'was': 1.0, 'to': 1.0, 't': 4.0, 's': 1.0, 'ago': 1.0, 'a': 3.0, 'that': 1.0, 'their': 1.0, 'find': 1.0, 'small': 1.0, 'had': 1.0, 'purchased': 1.0, 'tunes': 1.0, 'this': 1.0, 'tune': 1.0, 'it': 2.0, 'can': 1.0, 'but': 3.0, 'aren': 1.0, 'your': 1.0, 'child': 1.0, 'the': 2.0, 'recorded': 1.0, 'play': 2.0, 'friend': 1.0, 'own': 1.0, 'you': 1.0, 'piano': 1.0, 'when': 1.0, 'wanted': 1.0, 'anywhere': 1.0, 'press': 1.0, 'key': 1.0, 'allow': 1.0, 'songs': 1.0, 'pre': 1.0, 'bad': 1.0}
Word element => {'toys': 1.0, 'other': 1.0, 'of': 1.0, 'alot': 1.0, 'that': 1.0, 'interested': 1.0, 'but': 1.0, 'can': 1.0, 'like': 1.0, 'replaced': 1.0, 'look': 1.0, 'rattle': 1.0, 'so': 1.0, 'small': 1.0, 'easy': 1.0, 'in': 2.0, 'old': 3.0, 'months': 2.0, 'my': 1.0, 'very': 1.0, 'year': 1.0, 'his': 1.0, 'because': 1.0, 'maybe': 1.0, 'does': 1.0, 'things': 1.0, 'this': 1.0, 'received': 1.0, 'he': 7.0, 'with': 2.0, 'it': 3.0, 's': 1.0, 'a': 1.0, 'has': 1.0, 'likes': 1.0, 'gift': 1.0, 'holding': 1.0, 'son': 1.0, 'still': 1.0, 'piano': 1.0, 'when': 2.0, 'was': 4.0, 'as': 3.0, 'to': 2.0, 'now': 2.0, '3': 2.0, 'for': 1.0, 'be': 1.0, 'him': 1.0, 'plus': 1.0, 'up': 1.0, 'light': 1.0, 'is': 1.0, '1': 1.0, 'play': 2.0, 'and': 1.0, 'hands': 1.0, 'the': 2.0, 'also': 1.0, 'batteries': 2.0, 'are': 1.0, 'working': 1.0, 'not': 2.0}
Word element => {'product': 1.0, 'not': 1.0, 'this': 1.0, 'with': 1.0, 'it': 2.0, 'also': 1.0, 's': 1.0, 'happy': 1.0, 'my': 1.0, 'the': 2.0, 'are': 1.0, 'and': 1.0, 'likes': 1.0, 'cute': 1.0, 'to': 2.0, 'baby': 1.0, 'sealed': 1.0, 'toy': 1.0, 'change': 1.0, 'is': 1.0, 'but': 2.0, 'sounds': 1.0, 'low': 1.0, 'tried': 1.0, 'i': 2.0, 'batteries': 1.0, 'too': 1.0, 'm': 1.0}
Word element => {'glad': 1.0, 'the': 2.0, 'nephew': 1.0, 'im': 1.0, 'for': 2.0, 'phone': 2.0, 'off': 1.0, 'loves': 1.0, 'have': 1.0, 'and': 2.0, 'to': 1.0, 'wanted': 1.0, 'baby': 2.0, 'numbers': 1.0, 'my': 1.0, 'make': 1.0, 'lettering': 1.0, 'suck': 1.0, 'bought': 2.0, 'i': 3.0, 'he': 1.0, 'this': 2.0, 'it': 1.0, 'noise': 1.0, 'a': 1.0, 'cute': 1.0, 'that': 1.0, 'would': 1.0, 'not': 1.0, 'on': 1.0}
Word element => {'up': 1.0, 'put': 1.0, 'i': 1.0, 'ear': 1.0, 'her': 1.0, 'buttons': 1.0, 'press': 1.0, 'hear': 1.0, 'right': 1.0, 'can': 1.0, 'though': 1.0, '5': 1.0, 'you': 2.0, 's': 1.0, 'my': 1.0, 't': 1.0, 'the': 2.0, 'more': 1.0, 'really': 1.0, 'is': 1.0, 'when': 1.0, 'daughter': 1.0, 'worth': 1.0, 'she': 1.0, 'to': 2.0, 'was': 1.0, 'not': 1.0, 'price': 1.0, 'toy': 1.0, 'and': 1.0, 'as': 1.0, 'very': 1.0, 'loud': 1.0, 'this': 1.0, 'it': 5.0, 'months': 1.0, 'uses': 1.0, 'a': 1.0, 'have': 1.0, 'likes': 1.0, 'teether': 1.0}
Word element => {'gift': 1.0, 'baby': 1.0, 'onto': 1.0, 'little': 1.0, 'great': 1.0, 'any': 1.0, 'toy': 2.0, 'but': 2.0, 'four': 1.0, 'particularly': 1.0, 'own': 1.0, 'since': 1.0, 'colored': 1.0, 'instance': 1.0, 'his': 2.0, 'rings': 1.0, 'will': 1.0, 'couldn': 1.0, 'and': 7.0, 'enamored': 1.0, 'initially': 1.0, 'toys': 1.0, 'other': 1.0, 'all': 1.0, 'shower': 1.0, 'pick': 1.0, 'store': 1.0, 'was': 2.0, 'son': 1.0, 'my': 1.0, 'ringing': 1.0, 't': 2.0, 'a': 4.0, 's': 3.0, 'we': 4.0, 'of': 2.0, 'the': 6.0, 'old': 1.0, 'still': 1.0, 'buttons': 1.0, 'working': 1.0, 'well': 1.0, 'i': 1.0, '4': 1.0, 'by': 1.0, 'grabbed': 1.0, 'when': 1.0, 'months': 2.0, 'one': 2.0, 'white': 1.0, 'dropped': 1.0, 'out': 2.0, 'up': 2.0, 'open': 1.0, 'over': 1.0, 'immediately': 1.0, 'for': 2.0, 'phone': 1.0, 'where': 1.0, 'stopped': 1.0, 'he': 4.0, 'few': 1.0, 'this': 2.0, 'favorites': 1.0, 'black': 1.0, 'give': 1.0, 'those': 1.0, 'chirping': 1.0, 'new': 1.0, 'heard': 1.0, 'it': 7.0, 'him': 2.0, 'in': 2.0, 'car': 1.0, 'took': 1.0, 'even': 1.0, 'keep': 1.0, 'has': 1.0, 'trips': 1.0, 'occupied': 1.0, 'been': 1.0, 'marathon': 1.0, 'grandpa': 1.0, 'mostly': 1.0, 'grandma': 1.0, 'had': 2.0, 'house': 1.0, 'holds': 1.0, 'problems': 1.0, 'because': 1.0, 'fall': 1.0, 'to': 6.0, 'pretty': 1.0, 'hello': 1.0, 've': 1.0, 'slobbered': 1.0, 'only': 1.0, 'after': 1.0, 'on': 2.0, 'long': 1.0, 'days': 1.0, 'tie': 1.0, 'hola': 1.0, 'being': 1.0, 'later': 1.0, 'corner': 1.0, 'haven': 1.0}
Word element => {'lacks': 1.0, 'of': 1.0, 'media': 1.0, 'light': 1.0, 'this': 1.0, 'wish': 1.0, 'only': 1.0, 'bottom': 1.0, 'at': 1.0, 'rings': 1.0, 'get': 1.0, 'would': 1.0, 'him': 2.0, 'had': 1.0, 'thought': 1.0, 'i': 3.0, 'six': 1.0, 'old': 1.0, 'so': 1.0, 'cell': 1.0, 'months': 1.0, 'fun': 1.0, 'phone': 4.0, 'with': 3.0, 'he': 4.0, 'lights': 1.0, 'for': 3.0, 'aspect': 1.0, 'my': 2.0, 'are': 1.0, 'push': 1.0, 'little': 2.0, 'and': 5.0, 'play': 3.0, 'it': 7.0, 'fascinated': 1.0, 'his': 1.0, 'real': 1.0, 'buttons': 1.0, 'own': 1.0, 's': 1.0, 'a': 2.0, 'great': 2.0, 'the': 4.0, 'well': 1.0, 'toy': 1.0, 'to': 4.0, 'all': 1.0, 'as': 2.0, 'open': 1.0, 'ring': 1.0, 'can': 1.0, 'guy': 1.0, 'on': 2.0, 'make': 1.0, 'more': 1.0, 'is': 3.0, 'say': 1.0, 'hello': 1.0, 'loves': 2.0, 'goodbye': 1.0, 'chew': 1.0, 'downside': 1.0, 'which': 1.0}
Word element => {'to': 1.0, 'able': 1.0, 't': 1.0, 'battery': 1.0, 'it': 1.0, 'this': 1.0, 'shower': 1.0, 'for': 1.0, 'but': 1.0, 'week': 1.0, 'ago': 1.0, 'won': 1.0, 'months': 1.0, 'few': 1.0, 'baby': 1.0, 'a': 3.0, 'is': 1.0, 'and': 1.0, 'cannot': 1.0, 'gift': 2.0, 'still': 1.0, 'bought': 1.0, 'dead': 1.0, 'be': 2.0, 'replaced': 1.0, 'can': 1.0, 'already': 1.0, 'use': 1.0, 'rattle': 1.0}
Word element => {'time': 1.0, 'at': 1.0, 'just': 1.0, 'son': 1.0, 'high': 1.0, 'buttons': 1.0, 'figures': 1.0, 'when': 1.0, 'interested': 2.0, 'be': 1.0, 'box': 1.0, 'stays': 1.0, 'one': 1.0, 'later': 1.0, 'part': 1.0, 'top': 1.0, 'on': 1.0, 'rings': 1.0, 'the': 5.0, 'with': 1.0, 'plays': 1.0, 'appealing': 1.0, 'bar': 1.0, 'had': 1.0, 'haven': 1.0, 'words': 1.0, 'out': 1.0, 'couple': 2.0, 'not': 1.0, 'me': 2.0, 'of': 2.0, 'this': 5.0, 'given': 1.0, 'for': 3.0, 'how': 1.0, 'he': 4.0, 'wonder': 1.0, 'aren': 1.0, 'most': 1.0, 'but': 3.0, 'house': 1.0, 'was': 1.0, 'doesn': 1.0, 'sometimes': 1.0, 'phones': 1.0, 'cute': 2.0, 'find': 1.0, 'hand': 1.0, 'if': 2.0, 'down': 1.0, 'spanish': 1.0, 'used': 1.0, 'we': 2.0, 't': 3.0, 'a': 5.0, 'more': 2.0, 'is': 3.0, 'really': 1.0, 'flip': 2.0, 'hopes': 1.0, 'use': 1.0, 'phone': 1.0, 'in': 2.0, 'to': 2.0, 'as': 1.0, 'our': 1.0, 'years': 1.0, 'has': 1.0, 'toy': 4.0, 'may': 1.0, 'my': 3.0, 'english': 1.0, '7': 1.0, 'colorful': 1.0, 'it': 2.0, 'month': 1.0, 'old': 1.0, 'i': 1.0, 'care': 1.0, 'would': 1.0}
Word element => {'at': 1.0, 'will': 1.0, 's': 1.0, 'baby': 1.0, 'texture': 1.0, 'is': 1.0, 'a': 1.0, 'middle': 1.0, '34': 2.0, 'of': 1.0, 'sound': 1.0, 'in': 1.0, 'grip': 1.0, 'stuffed': 1.0, 'to': 2.0, 'while': 1.0, 'are': 1.0, 'love': 1.0, 'for': 1.0, 'yet': 1.0, 'they': 2.0, 'the': 5.0, 'these': 2.0, 'as': 1.0, 'that': 1.0, 'teethers': 2.0, 'steady': 1.0, 'both': 1.0, 'chew': 1.0, 'loved': 1.0, 'coordinated': 1.0, 'edge': 1.0, 'design': 1.0, 'we': 1.0, 'not': 1.0, 'circular': 1.0, 'hand': 1.0, 'easy': 2.0, 'hands': 1.0, 'animal': 1.0, 'can': 1.0, 'stare': 1.0, 'holding': 1.0}
Word element => {'loves': 1.0, 'that': 1.0, 'lamb': 1.0, 'one': 1.0, 'i': 1.0, 'like': 1.0, 'really': 1.0, 'but': 1.0, 'son': 2.0, 'the': 2.0, 'more': 1.0, 'make': 1.0, 'my': 2.0, 'for': 1.0, 'wish': 1.0, 'would': 1.0, 'these': 1.0, 'they': 1.0}
Word element => {'her': 1.0, 'toyfor': 1.0, 'bites': 1.0, 'beginning': 1.0, 'sassy': 1.0, 'hands': 1.0, 'easy': 1.0, 'for': 1.0, 'cleaning': 1.0, 'them': 1.0, 'are': 1.0, 'teethers': 2.0, 'the': 2.0, 'these': 1.0, 'they': 1.0, 'developmental': 1.0, 'loves': 1.0, 'have': 1.0, 'old': 1.0, 'colors': 1.0, 'month': 1.0, 'can': 1.0, 'throw': 1.0, '5': 1.0, 'my': 1.0, 'neice': 1.0, 'bright': 1.0, 'soft': 1.0, 'rattles': 1.0, 'thier': 1.0, 'inside': 1.0, 'wash': 1.0, 'in': 1.0, 'perfect': 1.0, 'and': 2.0, 'sized': 1.0, 'you': 1.0}
Word element => {'looking': 1.0, 'toy': 2.0, 'i': 1.0, 'head': 1.0, 'on': 1.0, 'she': 2.0, 'times': 1.0, 'mouths': 1.0, 'so': 1.0, 'everything': 1.0, 'at': 2.0, 'her': 1.0, 'part': 1.0, 'not': 1.0, 'to': 2.0, 'look': 1.0, 'for': 1.0, 'monitor': 1.0, 'interesting': 1.0, 'and': 2.0, 'very': 1.0, 'since': 1.0, 'pretty': 1.0, 'put': 1.0, 'but': 2.0, 'many': 1.0, 'herself': 1.0, 'is': 2.0, 'this': 1.0, 'with': 1.0, 'it': 1.0, 'in': 1.0, 'teeth': 1.0, 's': 1.0, 'the': 4.0, 'heavy': 1.0, 'likes': 1.0, 'have': 1.0, 'babies': 1.0, 'round': 1.0, 'good': 1.0, 'hit': 1.0, 'rattle': 1.0, 'their': 2.0}
Word element => {'hold': 1.0, 'easy': 1.0, 'its': 1.0, 'and': 1.0, 'rings': 1.0, 'the': 1.0, 'my': 1.0, '5': 1.0, 'with': 1.0, 'son': 1.0, 'him': 1.0, 'month': 1.0, 'to': 1.0, 'still': 1.0, 'old': 1.0, 'rattle': 1.0, 'this': 1.0, 'adores': 1.0, 'he': 1.0, 'likes': 1.0, 'for': 1.0, 'playing': 1.0}
Word element => {'clean': 1.0, 'colors': 1.0, 'easy': 1.0, 'hands': 1.0, 'great': 1.0, 'bulky': 1.0, 'and': 1.0, 'big': 1.0, 'have': 1.0, 'overall': 1.0, 'actually': 1.0, 's': 2.0, 'wait': 1.0, 'with': 1.0, 'this': 1.0, 'it': 3.0, 'hold': 2.0, 'till': 1.0, 'i': 2.0, 'little': 2.0, 'contrasting': 1.0, 'my': 1.0, 'cant': 1.0, 'bright': 1.0, 'since': 1.0, 'on': 1.0, 'her': 2.0, 'can': 1.0, 'right': 1.0, 'now': 1.0, 'to': 2.0, 'one': 1.0, 'for': 2.0, 'own': 1.0, 'pretty': 1.0}
Word element => {'balls': 1.0, 'middle': 1.0, 'at': 2.0, 'makes': 1.0, 'liked': 1.0, 'rattle': 1.0, 'i': 1.0, 'end': 1.0, 'tiny': 1.0, 'for': 1.0, 'even': 1.0, 'noise': 1.0, 'room': 1.0, 'leave': 1.0, 'handle': 2.0, 'plastic': 1.0, 'hold': 2.0, 'not': 1.0, 'rings': 1.0, 'also': 1.0, 'gentle': 1.0, 'many': 1.0, 'one': 2.0, 'himself': 1.0, 'beaned': 1.0, 'kid': 1.0, 'my': 1.0, 'their': 1.0, 'it': 3.0, 'with': 2.0, 'major': 1.0, 'hard': 1.0, 'come': 1.0, 'left': 1.0, 'easy': 2.0, 'get': 1.0, 'too': 1.0, 'heads': 1.0, 'and': 4.0, 'things': 1.0, 'nice': 1.0, 'both': 1.0, 'mirror': 1.0, 'design': 1.0, 'really': 1.0, 'twirly': 1.0, 'instead': 1.0, 'there': 1.0, 'up': 2.0, 'are': 2.0, 'hands': 1.0, 'the': 8.0, 'oball': 1.0, 'encircle': 1.0, 'good': 1.0, 'is': 1.0, 'thing': 1.0, 'this': 2.0, 'flaws': 1.0, 'colors': 1.0, 'softer': 1.0, 'baby': 1.0, 'once': 1.0, 'imagine': 1.0, 's': 2.0, 't': 1.0, 'a': 3.0, 'babies': 1.0, 'that': 2.0, 'some': 1.0, 'hit': 1.0, 'out': 1.0, 'can': 1.0, 'but': 1.0, 'to': 3.0, 'as': 1.0, 'little': 1.0, 'very': 1.0, 'rock': 1.0, 'spin': 1.0, 'shake': 1.0, 'figuring': 1.0, 'down': 1.0, 'they': 2.0, 'times': 1.0, 'you': 1.0, 'when': 1.0, 'easily': 1.0}
Word element => {'like': 1.0, 'and': 1.0, 'well': 1.0, 'baby': 1.0, 'picture': 1.0, 'i': 1.0, 'the': 2.0, 'looks': 1.0, 'am': 1.0, 'entirely': 1.0, 'it': 1.0, 'sure': 1.0, 'packaged': 1.0, 'was': 1.0, 'not': 1.0, 'entertains': 1.0, 'what': 1.0, 'exactly': 1.0, 'to': 1.0, 'say': 1.0}
Word element => {'returned': 1.0, 'when': 1.0, 'accident': 1.0, 'with': 1.0, 'head': 1.0, 'hit': 1.0, 'holding': 1.0, 'sometimes': 1.0, 'that': 1.0, 'also': 1.0, 'but': 1.0, 'for': 1.0, 'little': 1.0, 'exchanged': 1.0, 've': 1.0, 'would': 2.0, 'better': 1.0, 'noticed': 2.0, 'until': 1.0, 'her': 2.0, 'good': 1.0, 'of': 2.0, 'toy': 2.0, 'well': 1.0, 'baby': 1.0, 'quality': 1.0, 'inside': 1.0, 'mold': 1.0, 'thought': 1.0, 'rattle': 1.0, 'i': 9.0, 'clear': 1.0, 'by': 2.0, 'yanked': 1.0, 'one': 1.0, 'bought': 1.0, 'sassy': 2.0, 'waves': 1.0, 'wish': 1.0, 'this': 1.0, 'she': 1.0, 'it': 6.0, 'circle': 1.0, 'hands': 1.0, 'the': 5.0, 'own': 1.0, 'control': 1.0, 'was': 2.0, 'greenish': 1.0, 'to': 1.0, 'as': 1.0, 'while': 1.0, 'from': 1.0, 'ball': 2.0, 'out': 1.0, 'another': 1.0, 'my': 2.0, 'growing': 1.0, 'biting': 1.0, 'a': 1.0, 's': 3.0, 'hand': 1.0, 'did': 1.0, 'since': 1.0, 'who': 1.0, 'handwash': 1.0, 'so': 1.0, 'time': 2.0, 'not': 1.0, 'dishwasher': 1.0, 'in': 1.0, 'plastic': 1.0, 'around': 1.0, 'is': 1.0}
Word element => {'for': 1.0, 'a': 1.0, 'old': 1.0, 'months': 1.0, 'on': 1.0, 'easily': 1.0, 'hold': 1.0, 'can': 1.0, 'grabs': 1.0, 'onto': 1.0, 'this': 1.0, 'it': 3.0, 'the': 2.0, 'great': 2.0, 'loves': 1.0, 'daughter': 1.0, 'she': 3.0, 'my': 1.0, 'end': 1.0, 'toy': 2.0, 'helping': 1.0, '6': 1.0, 'of': 1.0, 'ball': 1.0, 'and': 4.0, 'is': 3.0, 'her': 4.0, 'own': 1.0, 'keep': 1.0, 'hand': 1.0, 'open': 1.0, 'to': 1.0, 'fingers': 1.0, 'apart': 1.0}
Word element => {'gift': 1.0, 'baby': 1.0, 'she': 1.0, 'color': 1.0, 'favorite': 1.0, 'her': 1.0, 'interject': 1.0, 'and': 1.0, 'way': 1.0, 'niece': 1.0, 'perfect': 1.0, 'loved': 1.0, 'loves': 1.0, 'this': 2.0, 'was': 1.0, 'shower': 1.0, 'my': 1.0, 'black': 1.0, 'the': 1.0, 'to': 1.0}
Word element => {'let': 1.0, 'done': 1.0, 'm': 1.0, 'after': 1.0, 'how': 1.0, 'hold': 1.0, 'like': 1.0, 'attention': 1.0, 'hands': 1.0, 'while': 1.0, 'hard': 2.0, 'baby': 1.0, 'recommend': 1.0, 'doesn': 1.0, 'loved': 1.0, 'then': 1.0, 'but': 4.0, '2': 2.0, 'control': 1.0, 'heavy': 1.0, 'with': 1.0, 'red': 1.0, 'much': 1.0, 'bit': 1.0, 'looks': 1.0, 'she': 2.0, 'it': 4.0, 'month': 1.0, 'noise': 1.0, 'colors': 1.0, 'ending': 1.0, 'wouldn': 1.0, 'didn': 1.0, 'def': 1.0, 'too': 2.0, 'and': 2.0, 'forehead': 1.0, 'have': 1.0, 'this': 1.0, 'full': 1.0, 'of': 1.0, 'don': 1.0, 'up': 1.0, 'since': 1.0, 'we': 1.0, 's': 1.0, 't': 4.0, 'a': 3.0, 'i': 2.0, 'rattle': 1.0, 'hit': 1.0, 'caught': 1.0, 'is': 1.0, 'herself': 1.0, 'make': 1.0, '3': 1.0, 'on': 1.0, 'incidents': 1.0, 'her': 2.0, '1': 1.0, 'spot': 1.0, 'for': 1.0}
Word element => {'inside': 1.0, 'moving': 1.0, 'has': 1.0, 'she': 1.0, 'end': 1.0, 'one': 1.0, 'parts': 1.0, 'and': 2.0, 'it': 1.0, 'great': 1.0, 'grand': 1.0, 'daughter': 1.0, 'loves': 2.0, 'this': 1.0, 'toy': 1.0, 'my': 1.0, 'the': 1.0, 'are': 1.0, 'contrasting': 1.0, 'colors': 1.0}
Word element => {'newborns': 1.0, 'though': 1.0, 'for': 1.0, 'choice': 1.0, 'is': 2.0, 'dull': 1.0, 'a': 2.0, 'bit': 1.0, 'sound': 1.0, 'good': 1.0, 'really': 1.0, 'and': 2.0, 'unpleasant': 1.0, 'the': 2.0, 'black': 1.0, 'white': 1.0}
Word element => {'why': 1.0, 'happen': 1.0, 'naturally': 1.0, 'so': 1.0, 'given': 1.0, 'haven': 1.0, 'lot': 1.0, 'keep': 1.0, 'built': 1.0, 'sturdily': 1.0, 'child': 1.0, 'up': 1.0, 'still': 2.0, 'shipping': 1.0, 'price': 1.0, 'm': 1.0, 'daughter': 1.0, 'on': 1.0, 'engaging': 1.0, 'else': 1.0, 'free': 1.0, 'qualify': 1.0, 'very': 2.0, 'little': 1.0, 'to': 5.0, 'personally': 1.0, 'her': 3.0, 'be': 1.0, 'arrived': 1.0, 'hasn': 1.0, 'my': 1.0, 'happy': 1.0, 'bought': 2.0, 'color': 1.0, 'yet': 2.0, 'actually': 1.0, 'for': 4.0, 'love': 1.0, 'seems': 1.0, 'will': 1.0, 'i': 5.0, 'annoyingly': 1.0, 'the': 2.0, 'mind': 1.0, 'with': 3.0, 'it': 7.0, 'something': 1.0, 'that': 2.0, 'but': 2.0, 'can': 1.0, 'noisy': 1.0, 'and': 4.0, 'play': 1.0, 'wait': 1.0, 'simple': 1.0, 'this': 1.0, 'eyes': 1.0, 'could': 1.0, 'a': 2.0, 't': 3.0, 's': 2.0, 'in': 1.0, 'tactile': 1.0, 'not': 2.0, 'delightful': 1.0, 'scheme': 1.0, 'easy': 1.0, 'pick': 1.0}
Word element => {'are': 1.0, 'changes': 1.0, 'a': 2.0, 'not': 1.0, 'because': 1.0, 'with': 1.0, 'this': 1.0, 'on': 1.0, 'old': 1.0, 'so': 1.0, 'got': 1.0, 'youtube': 1.0, 'why': 1.0, 'figured': 1.0, 'the': 3.0, 'diaper': 1.0, 'like': 1.0, 'videos': 1.0, 'infants': 1.0, 'start': 1.0, 'i': 2.0, 'rattle': 1.0, 'same': 1.0, 'for': 2.0, 'daughter': 1.0, 'seemed': 1.0, 'as': 3.0, 'to': 2.0, 'my': 1.0, 'colors': 1.0, 'video': 1.0, 'will': 1.0, 'it': 2.0, 'she': 2.0, 'is': 1.0, '3months': 1.0, 'get': 1.0, 'stop': 1.0, 'stares': 1.0, 'and': 1.0, 'soon': 1.0, 'you': 1.0, 'shaking': 1.0, 'at': 1.0, 'long': 1.0, 'her': 1.0, 'snap': 1.0, 'crying': 1.0, 'enough': 1.0, 'distracted': 1.0}
Word element => {'issues': 1.0, 'choking': 1.0, 'of': 1.0, 'not': 1.0, 'i': 1.0, 'keep': 1.0, 'keeps': 1.0, 'likely': 1.0, 'and': 2.0, 'rattle': 2.0, 'sounds': 1.0, 'is': 1.0, 'shapes': 1.0, 'great': 1.0, 'with': 1.0, 'this': 2.0, 'it': 1.0, 'any': 1.0, 'afraid': 1.0, 'colors': 1.0, 'baby': 1.0, 'busy': 2.0, 'for': 1.0, 'am': 1.0, 'while': 1.0, 'safe': 1.0, 'my': 1.0, 'made': 1.0, 'now': 1.0, 'to': 1.0, 'husband': 1.0, 'well': 1.0}
Word element => {'around': 1.0, 'and': 2.0, 'old': 1.0, 'be': 1.0, 'fascinated': 1.0, 'seemed': 1.0, 'for': 1.0, 'by': 1.0, 'colors': 1.0, 'month': 1.0, 'the': 1.0, 'of': 1.0, '6': 1.0, 'sounds': 1.0, 'christmas': 1.0, 'this': 2.0, 'rattle': 1.0, 'at': 1.0, 'to': 2.0, 'was': 1.0, 'easy': 1.0, 'her': 1.0, 'grip': 1.0, 'move': 1.0}
Word element => {'favorite': 1.0, 'amazing': 1.0, 'product': 1.0, 'being': 1.0, 'but': 2.0, 'anticipated': 1.0, 'her': 1.0, 'this': 1.0, 'it': 3.0, 'reviews': 1.0, 'two': 1.0, 'from': 1.0, 'babe': 1.0, 's': 2.0, 'not': 2.0, 'or': 1.0, 'good': 1.0, 'other': 1.0, 'entertained': 1.0, 'the': 1.0, 'for': 1.0, 'a': 1.0, 'i': 1.0, 'minute': 1.0}
Word element => {'glad': 1.0, 'not': 2.0, 'however': 1.0, 'shake': 1.0, 'so': 1.0, 'am': 1.0, 'visually': 1.0, 'does': 1.0, 'sure': 1.0, 'it': 4.0, 'this': 2.0, 'really': 1.0, 'is': 2.0, 'apparently': 1.0, 'make': 1.0, 'stimulating': 2.0, 'the': 2.0, 'a': 1.0, 't': 2.0, 'sound': 1.0, 'in': 3.0, 'rattles': 1.0, 'colors': 1.0, 'i': 5.0, 'rattle': 2.0, 'that': 3.0, 'very': 1.0, 'why': 1.0, 'and': 1.0, 'didn': 2.0, 'include': 1.0, 'have': 2.0, 'its': 1.0, 'now': 1.0, 'all': 1.0, 'to': 1.0, 'was': 1.0, 'design': 1.0, 'purchase': 1.0, 'bought': 1.0, 'one': 2.0, 'for': 1.0, 'looking': 1.0, 'an': 1.0, 'but': 1.0, 'like': 1.0, 'manufacturer': 1.0, 'which': 1.0, 'overall': 1.0}
Word element => {'parents': 1.0, 'new': 1.0, 'from': 1.0, 'complaints': 1.0, 'receive': 1.0, 'yet': 1.0, 'great': 1.0, 'baby': 1.0, 'use': 1.0, 'to': 1.0, 'product': 1.0, 'i': 2.0, 'these': 1.0, 'have': 1.0, 'durable': 1.0, 'for': 1.0, 'any': 1.0, 'and': 1.0, 'wreaths': 1.0}
Word element => {'good': 1.0, 'a': 1.0, 'needs': 1.0, 'baby': 1.0, 'every': 1.0, 'many': 1.0, 'is': 2.0, 'interested': 1.0, 'will': 3.0, 'but': 1.0, 'rattle': 1.0, 'watching': 1.0, 'i': 3.0, 'infants': 1.0, 'great': 1.0, 'the': 1.0, 'very': 1.0, 'worked': 1.0, 'trust': 1.0, 'got': 1.0, 'mother': 1.0, 'then': 1.0, 'chew': 1.0, 'in': 1.0, 'for': 4.0, 'still': 1.0, 'tiny': 1.0, 'my': 1.0, 'happy': 1.0, 'it': 7.0, 'he': 4.0, 'with': 1.0, 'first': 1.0, 'nephew': 1.0, 'years': 1.0, 'toy': 1.0, 'soon': 2.0, 'and': 2.0, 'sassy': 1.0, 'name': 1.0, 'have': 1.0, 'his': 2.0, 'listen': 1.0, 'was': 2.0, 'to': 1.0, 'older': 1.0, 'now': 1.0, 'be': 1.0, 'grab': 1.0, 'watch': 1.0, 'spin': 1.0, 'think': 1.0, 'on': 1.0, 'when': 1.0}
Word element => {'with': 1.0, 'friends': 1.0, 'it': 1.0, 'bought': 1.0, 'i': 1.0, 'so': 1.0, 'baby': 1.0, 'this': 1.0, 'babies': 1.0, 'car': 1.0, 'toy': 1.0, 'all': 2.0, 'rides': 1.0, 'my': 2.0, 'made': 1.0, 'the': 2.0, 'more': 1.0, 'pleasant': 1.0, 'in': 1.0, 'for': 2.0}
Word element => {'front': 1.0, 'in': 1.0, 'at': 1.0, 'when': 1.0, 'daughter': 1.0, 'my': 1.0, 'find': 1.0, 'yet': 1.0, 'pretty': 1.0, 'rattle': 1.0, 'be': 1.0, 'look': 1.0, 'to': 2.0, 'can': 1.0, 'it': 3.0, 'this': 1.0, 'the': 1.0, 'heavy': 1.0, 't': 1.0, 'i': 2.0, 'her': 1.0, 'does': 1.0, 'hold': 2.0, 'because': 1.0, 'she': 1.0, 'of': 2.0, 'weight': 1.0, 'but': 1.0, 'like': 1.0}
Word element => {'her': 1.0, 'one': 1.0, 'it': 1.0, 'oh': 1.0, 'to': 1.0, 'my': 1.0, 'not': 1.0, 'granddaughter': 1.0, 'ago': 1.0, 'received': 1.0, 'this': 1.0, 'toys': 1.0, 'favorite': 1.0, 'of': 1.0, 'has': 1.0, 'really': 1.0, 'well': 1.0, 'never': 1.0, 'months': 1.0, 'and': 1.0, 'taken': 1.0}
Word element => {'be': 1.0, 'rattle': 1.0, 'the': 3.0, 'broken': 1.0, 'notice': 1.0, 'part': 1.0, 'was': 2.0, 'to': 1.0, 'of': 1.0, 'disappointed': 1.0, 'already': 1.0, 'i': 2.0, 'one': 2.0, 'on': 1.0, 'will': 1.0, 'returned': 1.0, 'arrival': 1.0, 'it': 1.0, 'and': 1.0, 'ordered': 1.0, 'another': 1.0, 'spinning': 1.0, 'hopefully': 1.0, 'fine': 1.0, 'second': 1.0}
Word element => {'toys': 1.0, 'favorite': 1.0, 'his': 1.0, 'but': 1.0, 'tossed': 1.0, 'of': 1.0, 'sticker': 1.0, 'target': 1.0, 'my': 1.0, 'wasn': 1.0, 'started': 1.0, 'washing': 1.0, 'until': 2.0, 'on': 1.0, 'too': 1.0, 'supposed': 1.0, 'i': 5.0, 'one': 2.0, 'that': 1.0, 'rattle': 1.0, 'it': 3.0, 'this': 2.0, 'then': 1.0, 'loved': 2.0, 'maybe': 1.0, 'the': 1.0, 't': 1.0, 'thing': 1.0, 'was': 1.0, 'to': 1.0, 'and': 1.0, 'son': 1.0, 'day': 2.0, 'mold': 1.0, 'noticed': 1.0}
Word element => {'leak': 1.0, 'water': 1.0, 'is': 1.0, 'may': 1.0, 'lot': 1.0, 'a': 2.0, 'toy': 1.0, 'to': 1.0, 'daughter': 1.0, 'in': 2.0, 'it': 2.0, 'this': 1.0, 'only': 1.0, 'the': 1.0, 'enjoys': 1.0, 's': 1.0, 'little': 1.0, 'clean': 1.0, 'my': 2.0, 'end': 1.0, 'tricky': 1.0, 'not': 1.0, 'issue': 1.0, 'do': 1.0, 'submerge': 1.0, 'clear': 1.0}
Word element => {'thing': 1.0, 'watch': 1.0, 'spinning': 1.0, 'clear': 1.0, 'ball': 2.0, 'rubber': 1.0, 'like': 1.0, 'and': 2.0, 'has': 1.0, 'he': 2.0, 'loves': 2.0, 'it': 2.0, 'to': 2.0, 'chew': 1.0, 'is': 1.0, 'on': 1.0}
Word element => {'much': 1.0, 'so': 1.0, 'likes': 1.0, 'one': 1.0, 'ordered': 1.0, 'of': 1.0, 'threw': 1.0, 'mold': 1.0, 'because': 1.0, 'started': 1.0, 'properly': 1.0, 'dried': 1.0, 'never': 1.0, 'loves': 1.0, 'it': 5.0, 'this': 1.0, 'another': 1.0, 'baby': 1.0, 'clean': 1.0, 'my': 2.0, 'great': 1.0, 'the': 2.0, 'somehow': 1.0, 'away': 1.0, 'and': 2.0, 'a': 1.0, 'course': 1.0, 'is': 1.0, 'daughter': 1.0, 'when': 1.0, 'i': 3.0, 'but': 2.0, 'inside': 1.0, 'put': 1.0, 'rattle': 1.0, 'sink': 1.0, 'growing': 1.0, 'water': 1.0, 'in': 2.0, 'to': 1.0, 'then': 1.0, 'got': 1.0}
Word element => {'fun': 1.0, 'apparently': 1.0, 'makes': 1.0, 'noise': 1.0, 'great': 1.0, 'baby': 1.0, 'for': 1.0, 'development': 1.0, 'pleasant': 1.0, 'grab': 1.0, 'rattling': 1.0, 'catches': 1.0, 'a': 1.0, 'attention': 1.0, 'teething': 1.0, 'also': 1.0, 's': 1.0, 'while': 1.0, 'mouth': 1.0, 'eye': 1.0, 'easy': 1.0, 'to': 2.0}
Word element => {'in': 1.0, 'the': 4.0, 'are': 2.0, 'reason': 1.0, 'teeth': 1.0, 'i': 1.0, 'when': 1.0, 'only': 1.0, 'she': 2.0, 'it': 4.0, 'take': 1.0, 'girl': 1.0, 'big': 1.0, 'nice': 2.0, 'anything': 1.0, 'to': 3.0, '5': 1.0, 'we': 1.0, 's': 1.0, 'go': 1.0, 'a': 2.0, 'on': 2.0, 'is': 2.0, 'size': 1.0, 'can': 1.0, 'so': 1.0, 'did': 1.0, 'not': 1.0, 'give': 1.0, 'very': 1.0, 'little': 1.0, 'loves': 1.0, 'been': 1.0, 'for': 2.0, 'last': 1.0, 'her': 2.0, 'mouth': 1.0, 'chew': 1.0, 'wants': 1.0, 'my': 1.0, 'toy': 1.0, 'has': 1.0, 'balls': 1.0, 'cutting': 1.0, 'week': 1.0, 'too': 1.0, 'and': 1.0, 'easy': 1.0, 'get': 1.0}
Word element => {'wrong': 1.0, 'go': 1.0, 'can': 1.0, 'you': 1.0, 'for': 1.0, 'is': 1.0, 'teeth': 1.0, 'girl': 1.0, 'work': 1.0, 'cute': 1.0, 'her': 1.0, 'thing': 1.0, 'all': 1.0, 'affordable': 1.0, 'just': 1.0, 'little': 1.0, 'my': 1.0, 'am': 1.0, 'price': 1.0, 'baby': 1.0, 'about': 1.0, 'i': 1.0, 'starting': 1.0, 'now': 1.0, 'to': 1.0, 'get': 1.0, 'and': 2.0, 't': 1.0, 'the': 1.0, 'great': 1.0, 'these': 1.0}
Word element => {'picture': 1.0, 'but': 2.0, 'they': 2.0, 'these': 1.0, 'the': 2.0, 'to': 2.0, 'was': 2.0, 'looked': 1.0, 'purple': 1.0, 'i': 4.0, 'shown': 1.0, 'blue': 2.0, 'buy': 1.0, 'guess': 1.0, 'have': 1.0, 'able': 1.0, 'a': 2.0, 'and': 3.0, 'colors': 2.0, 'see': 1.0, 'online': 1.0, 'grandma': 1.0, 'does': 1.0, 'in': 3.0, 'stores': 1.0, 'pink': 1.0, 'for': 2.0, 'picky': 1.0, 'teethers': 1.0, 'would': 1.0, 'something': 1.0, 'besides': 1.0, 'when': 1.0, 'am': 1.0, 'not': 1.0, 'just': 1.0, 'excited': 1.0, 'feel': 1.0, 'should': 1.0, 'arrived': 1.0, 'purples': 1.0, 'be': 2.0, 'like': 1.0, 'pinks': 1.0, 'listing': 1.0, 'say': 1.0, 'may': 1.0, 'boy': 2.0, 'vary': 1.0, 'hopeful': 1.0}
Word element => {'texture': 1.0, 'same': 1.0, 'both': 1.0, 'are': 2.0, 'they': 2.0, 'other': 1.0, 'blue': 1.0, 'purple': 1.0, 'was': 1.0, 'pink': 1.0, 'from': 1.0, 'packs': 1.0, 'two': 1.0, 'ordered': 1.0, 'softness': 1.0, 'so': 1.0, 'likes': 1.0, 'on': 1.0, 'trip': 1.0, 'far': 1.0, 'road': 1.0, 'of': 3.0, 'package': 1.0, 'while': 1.0, 'a': 2.0, 'them': 2.0, 'bought': 1.0, 'i': 2.0, 'one': 2.0, 'and': 3.0, 'only': 1.0, 'unfortunately': 1.0, 'my': 1.0, 'amazon': 1.0, 'left': 1.0, 'great': 1.0, 'these': 2.0, 'the': 3.0, 'behind': 1.0, 'teethers': 2.0, 'were': 1.0, 'that': 1.0, 'daughter': 1.0}
Word element => {'well': 1.0, 'freezes': 1.0, 'not': 1.0, 'he': 1.0, 'of': 1.0, 'teethers': 1.0, 'shades': 1.0, 'use': 1.0, 'still': 1.0, 'is': 1.0, 'son': 1.0, '2': 2.0, 'the': 3.0, 'these': 1.0, 'loves': 1.0, 'likes': 1.0, 'have': 1.0, '1': 1.0, 'and': 4.0, 'shape': 1.0, 'my': 1.0, 'color': 1.0, 'quickly': 1.0, 'two': 1.0, 'though': 1.0, 'we': 1.0, 'purple': 1.0, 'blue': 1.0}
Word element => {'two': 1.0, 'pack': 1.0, 'come': 1.0, 'three': 1.0, 'shows': 1.0, 'amazon': 1.0, 'aside': 1.0, 'this': 1.0, 'highly': 1.0, 'frequent': 1.0, 'needs': 1.0, 'book': 1.0, 'my': 1.0, 'another': 1.0, 'which': 1.0, 'quickly': 1.0, 'dried': 1.0, 'be': 1.0, 'sophie': 1.0, 'like': 1.0, 'expensive': 1.0, 'much': 1.0, 'give': 1.0, 'effectively': 1.0, 'old': 1.0, 'four': 1.0, 'sanitization': 1.0, 'chewed': 1.0, 'but': 2.0, 'around': 1.0, 'cleaned': 1.0, 'more': 2.0, '11': 1.0, 'hold': 1.0, 'teeth': 2.0, 'seems': 1.0, 'when': 2.0, 'scratched': 1.0, 'flat': 1.0, 'have': 2.0, 'they': 6.0, 'a': 3.0, 'different': 1.0, 'her': 6.0, 'cranky': 1.0, 'can': 1.0, 'so': 5.0, 'picture': 1.0, 'best': 1.0, 'worked': 1.0, 'very': 2.0, 'recommended': 1.0, 'and': 7.0, 'it': 1.0, 'starting': 1.0, 'including': 1.0, 'light': 1.0, 'giraffe': 1.0, 'just': 3.0, 'teething': 1.0, 'right': 1.0, 'we': 3.0, 'fine': 1.0, 'months': 2.0, 'bought': 1.0, 'on': 4.0, 'for': 4.0, 'early': 1.0, 'easy': 1.0, 'were': 3.0, 'initially': 1.0, 'teethers': 3.0, 'scratchy': 1.0, 'item': 2.0, 'our': 1.0, 'to': 3.0, 'as': 2.0, 'these': 5.0, 'some': 1.0, 'she': 3.0, 'baby': 1.0, 'others': 1.0, 'ferociously': 1.0, 'the': 10.0, 'of': 3.0, 'even': 1.0, 'filled': 1.0, 'was': 4.0, 'soothe': 1.0, 'chew': 1.0, 'than': 1.0, 'bunch': 1.0, 'sharp': 1.0, 'plus': 2.0, 'are': 4.0, 'gums': 1.0, 'up': 1.0, 'purchased': 1.0, 'over': 1.0, 'hard': 1.0, 'or': 2.0, 'too': 2.0, 'ones': 2.0, 'try': 1.0, 'held': 1.0, 'surface': 2.0, 'came': 1.0, 'although': 1.0, 'in': 4.0, 'coming': 1.0, 'i': 1.0, 'that': 3.0, 'concerned': 1.0, 'would': 1.0, 'puncture': 1.0, 'material': 1.0, 'with': 1.0, 'liquid': 1.0, 'now': 1.0, 'is': 3.0, 'at': 1.0, 'molars': 1.0, 'still': 1.0, 'seem': 1.0, 'quiet': 1.0, 'washcloth': 1.0, 'an': 2.0, 'other': 1.0}
Word element => {'to': 1.0, 'safe': 1.0, 'free': 1.0, 'paint': 1.0, 'gnaw': 1.0, 'are': 1.0, 'that': 1.0, 'knowing': 1.0, 'like': 1.0, 'minutes': 1.0, '20': 1.0, 'in': 1.0, 'them': 1.0, 'of': 1.0, 'put': 1.0, 'after': 1.0, 'month': 1.0, 'loves': 1.0, '8': 1.0, 'purchase': 1.0, 'it': 1.0, 'this': 1.0, 'with': 1.0, 'on': 2.0, 'my': 1.0, 'happy': 1.0, 'm': 1.0, 'ladybugs': 1.0, 'for': 2.0, 'freezer': 1.0, 'one': 1.0, 'liked': 1.0, 'very': 1.0, 'and': 3.0, 'old': 1.0, 'i': 3.0, 'niece': 1.0, 'holding': 1.0, 'sucking': 1.0, 'the': 2.0, 'these': 1.0, 'better': 1.0, 'she': 1.0, 'her': 1.0, 'even': 1.0}
Word element => {'not': 1.0, 'far': 1.0, 'useful': 1.0, 'best': 1.0, 'year': 1.0, 'she': 1.0, 'maybe': 1.0, 'to': 1.0, 's': 2.0, 'teethers': 1.0, 'that': 1.0, 'so': 1.0, 'surface': 1.0, 'outer': 1.0, 'nothing': 1.0, 'hanging': 1.0, 'and': 2.0, 'but': 1.0, 'trouble': 1.0, 'cute': 1.0, 'still': 1.0, 'there': 1.0, '6': 1.0, 'be': 1.0, 'll': 1.0, 'onto': 2.0, 'is': 1.0, 'months': 1.0, 'over': 1.0, 'when': 1.0, 'daughter': 1.0, 'in': 2.0, 'my': 1.0, 'putting': 1.0, 'has': 1.0, 'they': 2.0, 'the': 1.0, 'these': 1.0, 'such': 1.0, 'them': 1.0, 'a': 2.0, 'her': 1.0, 'grip': 1.0, 'mouth': 1.0, 'have': 1.0, 'purchase': 1.0, 'smooth': 1.0}
Word element => {'princess': 1.0, 'little': 1.0, 'my': 1.0, 'on': 1.0, 'them': 1.0, 'wait': 1.0, 'can': 1.0, 'children': 1.0, 'am': 2.0, 'so': 1.0, 'since': 2.0, 'comfort': 1.0, 'haven': 1.0, 'they': 1.0, 'for': 1.0, 'yet': 1.0, 'are': 1.0, 'but': 1.0, 'to': 2.0, 'god': 1.0, 'and': 1.0, 'gotten': 1.0, 'have': 1.0, 'babies': 1.0, 'pregnant': 1.0, 'products': 1.0, 'i': 5.0, 'still': 1.0, 'cute': 1.0, 'use': 2.0, 'already': 1.0, 'different': 1.0, 'these': 1.0, 't': 2.0, 'aware': 1.0, 'of': 1.0, 'teething': 1.0}
Word element => {'instead': 1.0, 'use': 1.0, 'will': 1.0, 'freezer': 1.0, 'back': 1.0, 'ive': 1.0, 'after': 1.0, 'that': 1.0, 'was': 1.0, 'and': 3.0, 'packs': 1.0, 'interesting': 1.0, 'a': 2.0, 'thought': 1.0, 'were': 1.0, 'put': 1.0, 'on': 4.0, 'teething': 1.0, 'month': 1.0, 'times': 1.0, 'when': 2.0, 'i': 2.0, 'bugs': 1.0, 'bought': 1.0, 'floor': 1.0, 'small': 1.0, 'so': 2.0, 'the': 7.0, 'these': 1.0, 'my': 1.0, 'with': 1.0, 'end': 1.0, 'only': 1.0, 'in': 1.0, 'hoping': 1.0, 'to': 2.0, 'they': 6.0, 'arrived': 1.0, 'he': 2.0, '6': 1.0, 'over': 1.0, 'up': 1.0, 'would': 1.0, 'help': 1.0, 'not': 1.0, 'difficult': 1.0, 'few': 1.0, 'just': 1.0, 'little': 2.0, 'very': 3.0, 'are': 3.0, 'smooth': 1.0, 'ice': 1.0, 'chew': 1.0, 'frozen': 1.0, 'for': 2.0, 'them': 2.0, 'baby': 1.0, 'hold': 1.0, 'thing': 1.0, 'process': 1.0, 'can': 1.0, 'old': 1.0, 'antennas': 1.0}
Word element => {'easily': 1.0, 'them': 1.0, 'on': 1.0, 'choke': 1.0, 'she': 1.0, 'just': 1.0, 'can': 1.0, 'right': 1.0, 'to': 1.0, 'antennae': 1.0, 'are': 1.0, 't': 1.0, 'the': 3.0, 'these': 1.0, 'length': 1.0, 'they': 1.0, 'loves': 1.0, 'too': 1.0, 'daughter': 1.0, 'and': 1.0, 'get': 1.0, 'hard': 1.0, 'farther': 1.0, 'my': 1.0, 're': 1.0, 'back': 1.0, 'teeth': 1.0, 'also': 1.0, 'wide': 1.0, 'enough': 1.0, 'that': 1.0}
Word element => {'sometimes': 1.0, 'laughs': 1.0, 'grips': 1.0, 'it': 3.0, 'at': 2.0, 'stares': 1.0, 'world': 1.0, 'her': 1.0, 'and': 1.0, 'as': 3.0, 'my': 1.0, 'consistently': 1.0, 'grandchild': 1.0, 'grabbed': 1.0, 'develops': 1.0, 'been': 1.0, 'she': 5.0, 'this': 1.0, 'has': 2.0, 'explores': 1.0, 'something': 1.0, 'that': 1.0}
Word element => {'on': 1.0, 'likes': 1.0, 'handle': 1.0, 'onto': 1.0, 'hold': 1.0, 'chew': 1.0, 'easy': 1.0, 'the': 1.0, 'are': 1.0, 'got': 1.0, 'month': 1.0, 'they': 1.0, 'these': 1.0, 'for': 1.0, 'five': 1.0, 'to': 2.0, 'old': 1.0, 'loves': 1.0, 'and': 2.0, 'he': 2.0, 'a': 1.0, 'them': 1.0}
Word element => {'around': 1.0, 'hands': 1.0, 'get': 1.0, 'can': 1.0, 'their': 1.0, 'that': 2.0, 'a': 1.0, 'baby': 1.0, 'great': 1.0, 'these': 1.0, 'figured': 1.0, 'it': 1.0, 'hard': 1.0, 'little': 1.0, 'my': 2.0, 'find': 1.0, 'daughter': 1.0, 'when': 1.0, 'rattles': 1.0, 'out': 1.0, 'we': 1.0, 'very': 1.0, 'granddaughter': 1.0, 'was': 1.0, 'to': 1.0, 'is': 1.0, 'really': 1.0, 'babies': 1.0, 'are': 1.0, 'basic': 1.0, 'actually': 1.0}
Word element => {'them': 1.0, 'enjoys': 1.0, 'months': 1.0, '6': 1.0, 'hold': 1.0, 'to': 1.0, 'for': 1.0, 'too': 1.0, 'they': 1.0, 'and': 2.0, 'around': 1.0, 'watching': 1.0, 'likes': 1.0, 'plays': 1.0, 'her': 3.0, 'spin': 1.0, 'rattles': 2.0, 'old': 1.0, 'i': 1.0, 'or': 2.0, 'into': 1.0, 'things': 1.0, 'two': 2.0, 'with': 1.0, 'it': 1.0, 'big': 1.0, 'very': 1.0, 'maybe': 1.0, 'is': 3.0, 'she': 3.0, 'my': 1.0, 'are': 2.0, 'know': 1.0, 'not': 2.0, 'just': 1.0, 'inside': 1.0, 'but': 1.0, 'age': 1.0, 'baby': 1.0, 'don': 1.0, 'heavy': 1.0, 't': 1.0, 'the': 2.0, 'these': 1.0}
Word element => {'handle': 1.0, 'gum': 1.0, 'face': 1.0, 'bulky': 1.0, 'so': 1.0, 'hold': 1.0, 'he': 3.0, 'aren': 1.0, 'can': 1.0, 'work': 1.0, 'who': 1.0, 'himself': 1.0, 'info': 1.0, 'great': 1.0, 'pass': 1.0, 'to': 3.0, 'had': 1.0, 'submerge': 1.0, 'and': 4.0, 'husband': 1.0, 'shape': 1.0, 'hits': 1.0, 'i': 4.0, 'really': 2.0, 'forgot': 1.0, 'my': 2.0, 'unfortunately': 1.0, 'these': 1.0, 'the': 5.0, 't': 2.0, '34': 2.0, 'water': 1.0, 'are': 1.0, 'don': 1.0, 'through': 1.0, 'in': 3.0, 'said': 1.0, 'dishwasher': 1.0, 'that': 3.0, 'ruined': 1.0, 'priced': 1.0, 'bought': 1.0, 'chew': 1.0, 'because': 1.0, 'just': 1.0, 'them': 6.0, 'started': 1.0, 'ran': 1.0, 'interested': 1.0, 'liked': 1.0, 'easily': 1.0, 'again': 1.0, 'idea': 1.0, 'reviews': 1.0, 'they': 3.0, 'likes': 1.0, 'has': 1.0, 'read': 1.0, 'very': 1.0, 'son': 1.0, 'of': 1.0, 'reasonably': 1.0, 'being': 1.0}
Word element => {'weight': 1.0, 'due': 1.0, 'drops': 1.0, 'will': 1.0, 'him': 1.0, 'shake': 1.0, 'watch': 1.0, 'this': 1.0, 'with': 2.0, 'it': 9.0, 'he': 3.0, 'no': 1.0, 'a': 2.0, 'now': 2.0, 'to': 4.0, 'off': 1.0, 'loves': 1.0, 'water': 1.0, 'i': 3.0, 'clear': 1.0, 'does': 1.0, 'the': 1.0, 'heavy': 1.0, 'attention': 1.0, 'ball': 1.0, 'accumulate': 1.0, 'problems': 1.0, 'from': 1.0, 'in': 1.0, 'wash': 1.0, 'just': 1.0, 'wet': 1.0, 'gym': 1.0, 'so': 1.0, 'little': 1.0, 'for': 2.0, 'my': 1.0, 'holds': 1.0, 'is': 1.0, 'preemie': 1.0, 'wipe': 2.0, 'baby': 1.0, 'hold': 2.0, '12': 1.0, 'easily': 1.0, 'when': 3.0, 'you': 1.0, 'lbs': 1.0, 'but': 2.0, 'his': 2.0, 'kick': 1.0, 'hang': 1.0, 'and': 1.0, 'play': 1.0, 'likes': 1.0}
Word element => {'it': 1.0, 'loves': 1.0, 'baby': 1.0, 'clean': 1.0, 'easy': 1.0, 'and': 2.0, 'color': 1.0, 'cute': 1.0, 'best': 1.0, 'toy': 1.0, 'to': 2.0, 'design': 1.0, 'for': 1.0, 'babies': 1.0, 'my': 1.0, 'small': 1.0, 'are': 1.0, 'inexpensive': 1.0, 'who': 1.0, 'staring': 1.0, 'grab': 1.0, 'toys': 1.0}
Word element => {'few': 1.0, 'them': 1.0, 'likes': 1.0, 's': 1.0, 'play': 2.0, 'months': 1.0, 'over': 1.0, 'sounds': 1.0, 'colors': 1.0, 'baby': 1.0, 'will': 1.0, 'my': 1.0, 'make': 1.0, 'to': 2.0, 'the': 2.0, 'these': 1.0, 'next': 1.0, 'continue': 1.0, 'they': 1.0, 'gym': 1.0, 'added': 1.0, 'i': 2.0, 'and': 2.0, '34': 1.0, 'm': 1.0, 'sure': 1.0, 'he': 2.0, 'with': 1.0}
Word element => {'to': 1.0, 'on': 1.0, 'is': 1.0, 'enough': 1.0, 'likes': 1.0, 'she': 2.0, 'hope': 1.0, 'daughter': 1.0, 'stares': 1.0, 'own': 1.0, 'my': 1.0, 'bouncy': 1.0, 'hold': 1.0, 'at': 1.0, 'them': 3.0, 'hanging': 1.0, 'from': 1.0, 'her': 2.0, 'big': 1.0, 'seat': 1.0, 'when': 1.0, 'i': 1.0}
Word element => {'toys': 1.0, 'rinsing': 1.0, 'come': 1.0, 'this': 1.0, 'with': 1.0, 'thorough': 1.0, 'very': 1.0, 'big': 1.0, 'even': 1.0, 'part': 1.0, 'or': 1.0, 'into': 1.0, 'water': 3.0, '5': 1.0, 'in': 1.0, 'submerge': 1.0, 'do': 2.0, 'and': 2.0, 'get': 1.0, 'ball': 1.0, 'a': 4.0, 'baby': 1.0, 'them': 1.0, 'cleaning': 1.0, 'out': 1.0, 'clean': 1.0, 'these': 1.0, 'careful': 1.0, 'the': 2.0, 'are': 1.0, 'you': 2.0, 'have': 2.0, 'able': 1.0, 'colorful': 1.0, 'to': 2.0, 'be': 1.0, 'will': 1.0, 'clear': 1.0, 'never': 1.0, 'would': 1.0, 'given': 1.0, 'for': 1.0, 'not': 1.0, 'fun': 1.0, 'leakage': 1.0, 'if': 2.0, 'being': 1.0, 'toy': 1.0, 'is': 1.0, 'factor': 1.0}
Word element => {'happy': 1.0, 'keeps': 1.0, 'babies': 1.0, 'for': 1.0, 'car': 1.0, 'in': 1.0, 'ours': 1.0, 'play': 1.0, 'we': 1.0, 'keep': 1.0, 'if': 1.0, 'stays': 1.0, 'loves': 1.0, 'just': 1.0, 'but': 1.0, 'inside': 1.0, 'you': 2.0, 'the': 3.0, 'and': 3.0, 'with': 1.0, 'it': 4.0, 'only': 1.0, 'wipes': 1.0, 'inexpensive': 1.0, 'there': 1.0, 'fairly': 1.0, 'them': 1.0, 'clean': 1.0, 'to': 2.0, 'go': 1.0, 'water': 1.0, 'when': 1.0, 'kids': 1.0, 'gets': 1.0, 'wet': 1.0, 'use': 1.0, 'then': 1.0}
Word element => {'bit': 1.0, 'a': 1.0, 'that': 1.0, 'is': 2.0, 'stars': 1.0, '4': 1.0, 'reason': 1.0, 'only': 1.0, 'and': 1.0, 'for': 1.0, 'daughter': 1.0, 'great': 1.0, 'absolutely': 1.0, 'loves': 1.0, 'this': 1.0, 'teether': 2.0, 'colors': 1.0, 'heavy': 1.0, 'textures': 1.0, 'my': 1.0, 'the': 2.0}
Word element => {'monitor': 1.0, 'sense': 1.0, 'makes': 1.0, 'fine': 1.0, 'is': 1.0, 'looks': 2.0, 'it': 6.0, 'great': 1.0, 'excited': 1.0, 'this': 1.0, 'with': 2.0, 'he': 1.0, 'toys': 1.0, 'i': 3.0, 'no': 1.0, 'about': 2.0, 'price': 1.0, 'was': 2.0, 'had': 1.0, 'on': 3.0, 'son': 2.0, 'to': 1.0, 'as': 1.0, 'have': 1.0, 'other': 1.0, 'his': 1.0, 'reasonable': 1.0, 'liquid': 1.0, 'and': 1.0, 'me': 1.0, 'teether': 1.0, 'chewing': 1.0, 'just': 2.0, 'started': 1.0, 'my': 2.0, 'wings': 1.0, 'happy': 1.0, 'problem': 1.0, 'pretty': 1.0, 'never': 1.0, 'would': 1.0, 'though': 1.0, 'that': 1.0, 'but': 1.0, 'chewed': 1.0, 'suits': 1.0, 'be': 1.0, 'the': 3.0, 'playing': 1.0, 'careful': 1.0, 'well': 1.0, 'secure': 1.0}
Word element => {'little': 1.0, 'when': 1.0, 're': 1.0, 'eye': 1.0, 'real': 1.0, 'teething': 1.0, 'as': 2.0, 'and': 3.0, 'they': 1.0, 'your': 1.0, 'teeth': 1.0, 'teether': 1.0, 'is': 2.0, 'really': 1.0, 'good': 2.0, 'catcher': 1.0, 'grows': 1.0, 'with': 1.0, 'it': 2.0, 'this': 1.0, 's': 1.0, 'for': 2.0, 'back': 1.0, 'child': 1.0, 'white': 1.0, 'great': 1.0, 'the': 1.0, 'well': 1.0, 'a': 1.0, 'front': 1.0, 'black': 1.0, 'both': 1.0, 'part': 1.0}
Word element => {'months': 1.0, '12': 1.0, 'than': 1.0, 'babies': 1.0, 'for': 1.0, 'worlds': 1.0, 'of': 1.0, 'best': 1.0, 'features': 1.0, 'is': 1.0, 'a': 2.0, 'having': 1.0, 'seems': 1.0, 'section': 1.0, 'both': 1.0, 'product': 1.0, 'like': 1.0, 'and': 2.0, 'it': 1.0, 'with': 1.0, 'this': 1.0, 'frozen': 1.0, 'not': 1.0, 'plastic': 1.0, 'but': 1.0, 'less': 1.0, 'too': 1.0, 'great': 1.0, 'heavy': 1.0}
Word element => {'with': 1.0, 'mouth': 1.0, 'hold': 1.0, 'it': 3.0, 'can': 1.0, 'i': 2.0, 'bought': 1.0, 'my': 1.0, 'she': 1.0, 'baby': 1.0, 'play': 1.0, 'this': 1.0, 'and': 3.0, 'like': 1.0, 'put': 1.0, 'teether': 1.0, 'in': 1.0, 'for': 1.0, 'her': 1.0, 'how': 1.0, 'also': 1.0, 'teething': 1.0}
Word element => {'through': 1.0, 'teeth': 1.0, 'up': 1.0, 'have': 1.0, 'would': 1.0, 'doubt': 1.0, 'came': 1.0, 'teething': 2.0, 'started': 1.0, 'water': 1.0, 'my': 1.0, '2': 1.0, 'the': 2.0, 'once': 1.0, 'wings': 1.0, 'are': 1.0, 'by': 1.0, 'held': 2.0, 'how': 1.0, '3': 1.0, 'to': 1.0, 'was': 1.0, 'flutterby': 1.0, 'old': 1.0, 'attention': 1.0, 's': 1.0, 'week': 1.0, 'but': 1.0, 'seriously': 1.0, 'plastic': 1.0, 'flimsy': 1.0, 'and': 1.0, 'it': 1.0, 'he': 1.0, 'excited': 1.0, 'cracked': 1.0, 'even': 1.0, 'before': 1.0}
Word element => {'tiny': 1.0, 'toys': 1.0, 'up': 1.0, 'pick': 1.0, 'learning': 1.0, 'item': 1.0, 'is': 1.0, 'she': 2.0, 'because': 1.0, 'too': 1.0, 'daughter': 1.0, 'one': 1.0, 'young': 1.0, 'for': 3.0, 'someone': 1.0, 'loves': 1.0, 'grab': 1.0, 'to': 3.0, 'holding': 1.0, 'three': 1.0, 'my': 1.0, 'lightweight': 1.0, 'great': 1.0, 'the': 2.0, 'a': 1.0, 'black': 1.0, 'teething': 1.0, 'month': 1.0, 'old': 1.0, 'tries': 1.0, 'this': 1.0, 'it': 1.0, 'on': 3.0, 'and': 3.0, 'white': 1.0, 'ring': 1.0, 'so': 1.0, 'butterfly': 1.0, 'already': 1.0, 'got': 1.0, 'chew': 1.0}
Word element => {'risk': 1.0, 'toys': 1.0, 'even': 1.0, 'out': 2.0, 'parents': 1.0, 'tell': 1.0, 'or': 1.0, 'needs': 1.0, 'sassy': 1.0, 'safe': 1.0, 'think': 1.0, 't': 1.0, 'don': 1.0, 'why': 1.0, 'just': 1.0, 'thick': 1.0, 'very': 1.0, 'little': 1.0, 'seem': 1.0, 'not': 4.0, 'contains': 1.0, 'plastic': 1.0, '6': 1.0, 'item': 1.0, 'does': 1.0, 'liquid': 2.0, 'herself': 1.0, 'take': 1.0, 'then': 2.0, 'through': 1.0, 'but': 2.0, 'so': 1.0, 'can': 1.0, 'swallow': 1.0, 'pressed': 1.0, 'no': 2.0, 'filled': 1.0, 'that': 9.0, 'loves': 2.0, 'into': 2.0, 'realized': 1.0, 'goo': 2.0, 'great': 1.0, 'month': 1.0, 'a': 1.0, 'will': 1.0, 'could': 1.0, 'going': 1.0, 'glance': 1.0, 'be': 1.0, 'trust': 1.0, 'toy': 2.0, 'would': 2.0, 'something': 1.0, 'wings': 1.0, 'bits': 1.0, 'who': 1.0, 'it': 5.0, 'thought': 1.0, 'what': 1.0, 'i': 9.0, 'with': 1.0, 'some': 1.0, 'reviewes': 1.0, 'this': 3.0, 'redesign': 1.0, 'kids': 1.0, 'for': 1.0, 'my': 4.0, 'old': 1.0, 'fact': 1.0, 'nail': 2.0, 'plus': 1.0, 'first': 1.0, 'are': 1.0, 'chewing': 1.0, 'and': 3.0, 'items': 1.0, 'holding': 1.0, 'feels': 1.0, 'product': 1.0, 'teeth': 1.0, 'pierce': 1.0, 'like': 1.0, 'budding': 1.0, 'the': 8.0, 'of': 1.0, 'still': 1.0, 'if': 1.0, 'everything': 1.0, 'want': 1.0, 'by': 1.0, 'pushed': 1.0, 'hard': 2.0, 'stick': 1.0, 'enough': 1.0, 'give': 1.0, 'there': 2.0, 'handle': 1.0, 'at': 1.0, 'is': 4.0, 'say': 1.0, 'apart': 1.0, 'way': 1.0, 'am': 1.0, 'idea': 1.0, 'to': 5.0, 'as': 2.0, 'teething': 1.0, 'many': 1.0, 'she': 1.0, 'baby': 1.0, 'her': 2.0, 'sharp': 1.0, 'have': 2.0, 'other': 1.0, 'come': 2.0, 'in': 1.0, 'their': 1.0, 'mouths': 1.0}
Word element => {'his': 1.0, 'in': 1.0, 'place': 1.0, 'makes': 1.0, 'the': 1.0, 'up': 1.0, 'to': 2.0, 'easy': 2.0, 'other': 1.0, 'wing': 1.0, 'pick': 1.0, 'have': 1.0, 'shape': 1.0, 'and': 2.0, 'far': 1.0, 'toys': 1.0, 'favorite': 1.0, 's': 1.0, 'is': 2.0, 'son': 1.0, 'my': 1.0, 'by': 1.0, '4': 1.0, 'teething': 2.0, 'month': 2.0, 'this': 1.0, 'it': 2.0, 'him': 2.0, 'tried': 1.0, 'i': 1.0, 'old': 1.0, 'toy': 1.0, 'for': 2.0}
Word element => {'other': 1.0, 'recommend': 1.0, 'would': 1.0, 'i': 1.0, 'one': 3.0, 'on': 1.0, 'ring': 1.0, 'white': 1.0, 'rings': 1.0, 'of': 1.0, 'like': 1.0, 'sassy': 1.0, 'too': 2.0, 'four': 1.0, 'teether': 2.0, 'cute': 1.0, 'my': 1.0, 'fly': 1.0, 'and': 4.0, 'the': 2.0, 'great': 3.0, 'you': 1.0, 'bee': 1.0, 'see': 1.0, 'black': 1.0, 'a': 3.0, 'price': 1.0, 'highly': 1.0, 'baby': 1.0, 'another': 1.0, 'but': 2.0, 'makes': 1.0, 'that': 1.0, 'this': 4.0, 'it': 2.0, 'he': 1.0, 'comprised': 1.0, 'is': 4.0, 'really': 2.0, 'also': 1.0, 'loves': 2.0, 'or': 1.0}
Word element => {'wants': 1.0, 'too': 2.0, 'into': 1.0, 'noise': 2.0, 'handskinda': 1.0, '5mth': 1.0, 'it': 4.0, 'he': 1.0, 'makes': 1.0, 'annoying': 1.0, 's': 2.0, 'for': 1.0, 'big': 1.0, 'meh': 1.0, 'old': 1.0, 'boring': 1.0, 'baby': 1.0, 'fine': 1.0, 'really': 1.0, 'is': 1.0, 'not': 1.0, 'but': 1.0, 'there': 1.0, 'if': 1.0}
Word element => {'too': 1.0, 'stroller': 1.0, 'from': 1.0, 'hang': 1.0, 'very': 1.0, 'and': 1.0, 'the': 1.0, 'my': 1.0, 'rings': 1.0, 'twins': 1.0, 'these': 1.0, 'it': 2.0, 'love': 1.0, 'can': 1.0, 'colorful': 1.0, 'other': 1.0, 'attach': 1.0, 'toys': 1.0, 'to': 1.0}
Word element => {'part': 1.0, 'white': 1.0, 'black': 1.0, 'nice': 2.0, 'are': 2.0, 'these': 1.0, 'attention': 1.0, 'you': 1.0, 'their': 1.0, 'something': 1.0, 'rattle': 1.0, 'keep': 1.0, 'clip': 1.0, 'important': 1.0, 'is': 1.0, 'can': 2.0, 'noise': 1.0, 'the': 2.0, 'reach': 1.0, 'makes': 1.0, 'they': 1.0, 'because': 2.0, 'colors': 1.0, 'once': 1.0, 'things': 2.0, 'seat': 1.0, 'to': 3.0, 'for': 1.0, 'baby': 1.0, 'them': 3.0, 'your': 1.0, 'on': 1.0, 'like': 1.0, 'a': 2.0, 'car': 1.0, 'together': 1.0, 'or': 1.0, 'that': 1.0, 'loves': 1.0, 'and': 3.0, 'play': 1.0, 'mat': 1.0, 'starts': 1.0, 'my': 1.0, 'son': 1.0, 'he': 2.0, 'shake': 1.0, 'especially': 1.0, 'likes': 1.0, 'soft': 1.0}
Word element => {'one': 1.0, 'for': 1.0, 'in': 2.0, 'textures': 1.0, 'little': 1.0, 'she': 1.0, 'our': 1.0, 'alternate': 1.0, 'and': 2.0, 'each': 1.0, 'colors': 1.0, 'mouth': 1.0, 'different': 1.0, 'multi': 1.0, 'are': 1.0, 'loves': 1.0, 'to': 1.0, 'grab': 1.0, 'great': 1.0, 'the': 1.0, 'ones': 1.0, 'hand': 1.0, 'her': 1.0, 'them': 1.0}
Word element => {'bright': 1.0, 'chewing': 1.0, 'and': 2.0, 'it': 1.0, 'colorful': 1.0, 'loves': 1.0, 'one': 1.0, 'the': 2.0, 'good': 1.0, 'of': 1.0, 'toys': 1.0, 'favorite': 1.0, 'toy': 1.0, 'for': 1.0, 'in': 1.0, 'she': 1.0, 'baby': 1.0, 's': 1.0, 'fun': 1.0, 'box': 1.0}
Word element => {'his': 1.0, 'to': 1.0, 'toys': 1.0, 'attaching': 1.0, 'for': 1.0, 'great': 1.0, 'and': 1.0, 'i': 1.0, 'other': 1.0, 'loves': 1.0, 'they': 1.0, 'these': 1.0, 'rings': 1.0, 'baby': 1.0, 'stroller': 1.0, 'use': 1.0, 'all': 1.0, 're': 1.0, 'them': 1.0, 'my': 1.0, 'the': 1.0, 'time': 1.0}
Word element => {'awesome': 1.0, 'experience': 1.0, 's': 1.0, 'because': 1.0, 'am': 1.0, 'distraction': 1.0, 'make': 1.0, 'colors': 1.0, 'vibrant': 1.0, 'hand': 1.0, 'her': 1.0, 'in': 1.0, 'made': 1.0, 'child': 2.0, 'my': 2.0, 'the': 2.0, 'great': 2.0, 'totally': 1.0, 'holding': 1.0, 'gift': 1.0, 'a': 3.0, 'best': 1.0, 'as': 1.0, 'and': 2.0, 'first': 1.0, 'it': 4.0, 'this': 3.0, 'i': 4.0, 'one': 1.0, 'love': 1.0, 'for': 1.0, 'teething': 3.0, 'all': 1.0, 'have': 1.0, 'babies': 1.0, 'has': 1.0, 'glad': 1.0, 'toys': 1.0, 'loved': 1.0, 'got': 2.0, 'purchased': 1.0, 'to': 1.0, 'received': 1.0, 'is': 2.0, 'many': 1.0, 'say': 1.0}
Word element => {'a': 1.0, 'mom': 1.0, 'every': 1.0, 'or': 1.0, 'strollers': 1.0, 'have': 1.0, 'other': 1.0, 'toys': 1.0, 'good': 1.0, 'textures': 1.0, 'set': 1.0, 'fun': 2.0, 'versatile': 1.0, 'mobiles': 1.0, 'to': 1.0, 'useful': 1.0, 'toy': 1.0, 'should': 1.0, 'simple': 1.0, 'bright': 1.0, 'attaching': 1.0, 'colors': 1.0, 'for': 1.0}
Word element => {'better': 1.0, 'are': 1.0, 'there': 1.0, 'so': 1.0, 'value': 1.0, 'great': 1.0, 'other': 1.0, 'also': 1.0, 'car': 1.0, 'fasten': 2.0, 'used': 2.0, 'played': 1.0, 'when': 1.0, 'tended': 1.0, 'that': 2.0, 'holder': 1.0, 'white': 1.0, 'use': 1.0, 'didn': 1.0, 'much': 1.0, 'dollars': 1.0, 'few': 1.0, 'just': 1.0, 'for': 3.0, 'deals': 1.0, 'but': 1.0, 'drag': 1.0, 'floor': 1.0, 'likes': 1.0, 'textures': 1.0, 'if': 1.0, '10': 1.0, 'and': 5.0, 'black': 1.0, 'were': 1.0, 'colors': 1.0, 'seat': 1.0, 'our': 1.0, 'to': 7.0, 'was': 2.0, 'had': 1.0, 'first': 1.0, 'he': 1.0, 'with': 4.0, 'it': 5.0, 'lot': 1.0, 'at': 1.0, 'some': 1.0, 'links': 6.0, 'still': 1.0, 'chains': 1.0, 'off': 1.0, 'house': 1.0, 'them': 3.0, 'baby': 1.0, 'quality': 1.0, 'favorite': 1.0, 'toys': 2.0, 'of': 2.0, 'one': 1.0, 'months': 1.0, 't': 1.0, 'we': 2.0, 'a': 5.0, 's': 1.0, 'fall': 1.0, 'comes': 1.0, 'more': 2.0, 'is': 3.0, 'around': 1.0, '3': 1.0, 'on': 2.0, 'make': 1.0, 'deal': 1.0, 'the': 6.0, 'him': 1.0, 'or': 4.0, 'shake': 1.0, '5': 1.0, 'noise': 1.0, 'good': 2.0, 'different': 2.0, 'wish': 1.0, 'etc': 2.0, 'i': 1.0, 'did': 1.0, 'carseat': 1.0, 'came': 1.0}
Word element => {'happy': 1.0, 'links': 1.0, 'toy': 1.0, 'or': 1.0, 'you': 1.0, 'allow': 1.0, 'because': 1.0, 'addition': 1.0, 'perfect': 1.0, 'are': 1.0, 'toys': 2.0, 'few': 1.0, 'so': 1.0, 'could': 1.0, 'purchase': 1.0, 'gym': 1.0, 'of': 1.0, 'fold': 1.0, 'more': 1.0, 'these': 1.0, 'the': 3.0, 'rings': 1.0, 'activity': 1.0, 'bought': 1.0, 'extra': 1.0, 'we': 2.0, 'reach': 1.0, 'and': 2.0, 'do': 1.0, 'tummy': 1.0, 'they': 1.0, 'time': 1.0, 'extend': 1.0, 'with': 3.0, 'foster': 1.0, 'add': 2.0, 'twist': 1.0, 'our': 2.0, 'i': 1.0, 'very': 1.0, 'infantino': 1.0, 'son': 1.0, 'decided': 1.0, 'to': 2.0, 'a': 3.0}
Word element => {'to': 1.0, 'baby': 2.0, 'those': 1.0, 'absolutely': 1.0, 'gavitate': 1.0, 'can': 1.0, 'toys': 1.0, 'of': 1.0, 'for': 2.0, 'one': 1.0, 'essential': 1.0, 'as': 2.0, 'and': 1.0, 'keys': 1.0, 'teethers': 1.0, 'that': 2.0, 'is': 2.0, 'this': 1.0, 'use': 1.0, 'mommas': 1.0, 'them': 1.0, 'a': 1.0, 'also': 1.0, 'substitute': 1.0, 'babies': 1.0}
Word element => {'teething': 1.0, 'that': 1.0, 'now': 1.0, 'great': 2.0, 'were': 1.0, 'colors': 1.0, 'loved': 1.0, 'first': 1.0, 'she': 3.0, 'when': 1.0, 'daughters': 1.0, 'my': 1.0, 'gum': 1.0, 'off': 1.0, 'things': 1.0, 'problem': 1.0, 'them': 2.0, 'baby': 2.0, 'don': 1.0, 'highly': 1.0, 'for': 2.0, 'one': 1.0, 'easy': 2.0, 'was': 1.0, 'recommend': 1.0, 'rubbing': 1.0, 'textures': 1.0, 'brightly': 1.0, 'have': 2.0, 'they': 2.0, 'learning': 1.0, 'these': 1.0, 'place': 1.0, 'the': 5.0, 'say': 1.0, 'rings': 3.0, 'can': 1.0, 'hand': 1.0, 'hold': 2.0, 'toys': 2.0, 'colored': 1.0, 'anyone': 1.0, 'find': 1.0, 'become': 1.0, 'i': 5.0, 'are': 1.0, 'useful': 1.0, 'attaching': 1.0, 'to': 6.0, 'other': 1.0, 'and': 5.0, 'extremely': 1.0, 'different': 1.0, 'negative': 1.0, 'clean': 1.0, 'in': 2.0, 'dishwasher': 1.0, 'with': 2.0, 'about': 1.0, 'thing': 1.0, 'no': 1.0, 'individual': 1.0, 'would': 1.0, 's': 1.0, 't': 1.0, 'a': 1.0, 'think': 1.0, 'put': 1.0, 'on': 2.0, 'way': 1.0, 'used': 1.0, 'pull': 1.0}
Word element => {'baby': 1.0, 'your': 1.0, 'for': 1.0, 'loves': 1.0, 'absolutely': 1.0, 'pieces': 1.0, 'the': 1.0, 'is': 1.0, 'rattle': 1.0, 'links': 1.0, 'recommend': 1.0, 'today': 1.0, 'just': 1.0, 'o': 1.0, 'and': 3.0, 'son': 1.0, 'ring': 1.0, 'my': 1.0, 'sassy': 1.0, 'so': 1.0, 'shake': 1.0, 'chew': 1.0, 'got': 1.0, '3': 1.0, 'i': 1.0, 'old': 1.0, 'to': 1.0, 'grabbed': 1.0, 'this': 2.0, 'he': 2.0, 'it': 2.0, 'on': 1.0, 'months': 1.0, 'starting': 1.0}
Word element => {'for': 1.0, 'anywhere': 1.0, 'be': 1.0, 'connecting': 1.0, 'baby': 1.0, 'hang': 1.0, 'by': 1.0, 'this': 1.0, 'reach': 1.0, 'one': 1.0, 'has': 1.0, 'many': 1.0, 'the': 2.0, 'make': 1.0, 'a': 1.0, 'rings': 2.0, 'we': 1.0, 'long': 1.0, 'it': 1.0, 'can': 3.0, 'line': 2.0}
Word element => {'home': 1.0, 'never': 1.0, 'colors': 1.0, 'far': 1.0, 'but': 1.0, 'links': 1.0, 'of': 2.0, 'daughter': 1.0, 'appealing': 1.0, 'absolutely': 1.0, 'cute': 1.0, 'in': 1.0, 'thickness': 1.0, 'these': 3.0, 'more': 1.0, 'we': 2.0, 'bag': 1.0, 'foot': 1.0, 'chooses': 1.0, 'leave': 1.0, 'have': 1.0, 'sassy': 1.0, 'are': 3.0, 'another': 1.0, 'my': 1.0, 'starts': 1.0, 'bright': 2.0, 'to': 3.0, 'her': 4.0, 'scoop': 1.0, 'she': 2.0, 'without': 1.0, 'the': 4.0, 'hands': 1.0, 'every': 1.0, 'time': 1.0, 'loves': 2.0, 'that': 1.0, 'feet': 1.0, 'also': 1.0, 'rings': 3.0, 'item': 1.0, 'now': 1.0, 'involved': 1.0, 'up': 1.0, 'playtime': 1.0, 'with': 1.0, 'and': 3.0, 'too': 1.0, 'toss': 1.0, 'them': 1.0}
Word element => {'is': 1.0, 'dry': 1.0, 'a': 1.0, 'off': 1.0, 'chew': 1.0, 'to': 7.0, 'stroller': 1.0, 'toddler': 2.0, 'bracelets': 1.0, 'the': 2.0, 'these': 1.0, 'hanger': 1.0, 'bras': 1.0, 'uses': 2.0, 'i': 1.0, 'things': 2.0, 'onto': 1.0, 'love': 1.0, 'hook': 2.0, 'hang': 1.0, 'other': 1.0, 'toys': 1.0, 'endless': 1.0, 'of': 1.0, 'list': 1.0, 'mom': 1.0, 'as': 1.0, 'packages': 1.0, 'them': 2.0, 'out': 1.0, 'kitchen': 1.0, 'lock': 1.0, 'cabinets': 1.0, 'her': 1.0}
Word element => {'return': 1.0, 'reason': 1.0, 'there': 1.0, 'gifted': 1.0, '5': 1.0, 'be': 1.0, 'recipient': 1.0, 'if': 1.0, 'gift': 2.0, 'link': 1.0, 'come': 1.0, 'they': 1.0, 'ring': 1.0, 'white': 1.0, 'got': 1.0, 'even': 2.0, 'money': 1.0, 'get': 1.0, 'great': 1.0, 'd': 1.0, 'price': 1.0, 'spots': 1.0, 'right': 1.0, 'the': 5.0, 'her': 1.0, 'in': 2.0, 'fits': 1.0, 'car': 1.0, 'that': 1.0, 'black': 1.0, 'were': 1.0, 'needing': 1.0, 'those': 1.0, 'no': 1.0, 'thing': 1.0, 'topper': 1.0, 'have': 1.0, 'little': 1.0, 'every': 2.0, 'product': 1.0, 'for': 2.0, 'one': 2.0, 'this': 1.0, 'it': 4.0, 'on': 3.0, 'is': 2.0, 'theses': 1.0, 'you': 3.0, 'as': 1.0, 'to': 3.0, 'our': 2.0, 'seat': 2.0, 'of': 3.0, 'add': 1.0, 'these': 1.0, 'products': 1.0, 'chew': 1.0, 'mouth': 1.0, 'find': 1.0, 'crib': 1.0, 'mat': 1.0, 'yourself': 1.0, 'buy': 1.0, 'day': 1.0, 'too': 1.0, 'play': 1.0, 'and': 3.0, 'bag': 1.0, 'toys': 1.0, 'll': 1.0, 'favorite': 1.0, 'bouncy': 1.0, 'i': 1.0, 'etc': 1.0, 'was': 1.0, 'hooked': 1.0, 'had': 1.0, 'we': 2.0, 's': 2.0, 'a': 4.0, 'just': 1.0, 'life': 1.0, 'useful': 1.0, 'saver': 1.0, 'while': 1.0, 'out': 2.0, 'teether': 1.0, 'diaper': 1.0, 'forgotten': 1.0, 'baby': 2.0}
Word element => {'be': 1.0, 'to': 1.0, 'i': 1.0, 'than': 1.0, 'loved': 1.0, 'this': 1.0, 'mom': 1.0, 'expected': 1.0, 'was': 2.0, 'part': 1.0, 'it': 3.0, 'of': 1.0, 'a': 1.0, 'is': 1.0, 'bigger': 1.0, 'baby': 1.0, 'the': 1.0, 'made': 1.0, 'shower': 1.0, 'well': 1.0, 'gift': 1.0}
Word element => {'helps': 1.0, 'textures': 1.0, 'thing': 1.0, 'have': 1.0, 'colors': 1.0, 'baby': 1.0, 'price': 1.0, 'different': 1.0, '5': 1.0, 'in': 1.0, 'r': 1.0, 'same': 1.0, 'us': 1.0, 'i': 3.0, 'too': 1.0, 'and': 1.0, 'shape': 1.0, 'now': 1.0, 'to': 2.0, 'alphabet': 2.0, 'set': 1.0, 'of': 1.0, 'at': 1.0, 'links': 2.0, 'but': 1.0, 'then': 1.0, 'found': 1.0, 'this': 2.0, 'with': 1.0, 'sassy': 1.0, 'for': 2.0, 'except': 1.0, 'on': 1.0, 'amazon': 1.0, 'the': 1.0, 's': 2.0, '26': 1.0, 't': 1.0, 'store': 1.0, 'match': 1.0, 'shipping': 1.0, 'so': 1.0, 'got': 1.0, 'even': 1.0, 'didn': 1.0, 'wanted': 1.0, 'wait': 1.0, 'hope': 1.0}
Word element => {'is': 1.0, 'absolutely': 1.0, 'them': 1.0, 'a': 1.0, 'niece': 1.0, 'i': 2.0, 'for': 1.0, 'this': 1.0, 'loved': 1.0, 'my': 1.0, 'sure': 1.0, 'comfort': 1.0, 'bought': 1.0, 'teething': 1.0, 'and': 2.0, 'these': 1.0, 'provide': 1.0, 'she': 2.0, 'lot': 1.0, 'of': 1.0, 'now': 1.0, 'to': 1.0, 'her': 2.0, 'm': 1.0, 'mom': 1.0}
Word element => {'free': 1.0, 'its': 1.0, 'and': 1.0, 'contrast': 1.0, 'colors': 1.0, 'bpa': 1.0, 'babies': 1.0, 'for': 1.0, 'rings': 1.0, 'inexpensive': 1.0, 'son': 1.0, 'enjoys': 1.0, 'they': 1.0, 'my': 1.0, 'the': 2.0, 'are': 2.0, 'a': 2.0, 'good': 2.0, 'toy': 1.0}
Word element => {'one': 1.0, 'teethers': 1.0, 'still': 1.0, 'chew': 1.0, 'over': 1.0, 'on': 1.0, 'textures': 1.0, 'different': 1.0, 'in': 1.0, 'daughter': 1.0, 'is': 1.0, 'she': 1.0, 'my': 1.0, 'the': 2.0, 'these': 2.0, 'more': 1.0, 'with': 1.0, 'this': 2.0, 'play': 1.0, 'other': 2.0, 'okay': 1.0, 'just': 1.0, 'links': 1.0, 'will': 1.0, 'but': 2.0, 'a': 1.0, 'prefers': 2.0, 'pinch': 1.0, 'toys': 1.0, 'interactive': 1.0, 'to': 2.0, 'does': 1.0, 'like': 1.0}
Word element => {'interest': 1.0, 'u': 1.0, 'no': 1.0, 'at': 1.0, 'price': 1.0, 'a': 1.0, 'bright': 1.0, 'starts': 1.0, 'loves': 1.0, 'sassy': 1.0, 'son': 2.0, 'showed': 1.0, 't': 1.0, 'great': 1.0, 'were': 1.0, 'rings': 2.0, 'can': 1.0, 'cheaply': 1.0, 'my': 2.0, 'made': 1.0, 'lose': 1.0, 'i': 1.0, 'had': 1.0, 'and': 3.0, 'gotten': 1.0, 'they': 1.0}
Word element => {'in': 1.0, 'textures': 1.0, 'of': 1.0, 'variety': 1.0, 'clean': 1.0, 'put': 1.0, 'but': 1.0, 'with': 1.0, 'play': 1.0, 'for': 1.0, 'liked': 1.0, 'too': 1.0, 'kids': 1.0, 'good': 1.0, 'loves': 1.0, 'easier': 1.0, 'our': 1.0, 'these': 1.0, 'the': 3.0, 'safer': 1.0, 'rattling': 1.0, 'to': 3.0, 'colorful': 1.0, 'granddaughter': 1.0, 'old': 1.0, 'month': 1.0, 'are': 3.0, 'real': 1.0, 'eight': 1.0, 'mouth': 1.0, 'rings': 1.0, 'colors': 1.0, 'bright': 1.0, 'her': 3.0, 'and': 3.0, 'like': 1.0, 'keys': 1.0, 'catch': 1.0, 'my': 1.0, 'eye': 1.0, 'attachments': 1.0}
Word element => {'didn': 1.0, 'mine': 1.0, 'right': 1.0, 'colors': 1.0, 'toy': 5.0, 'great': 1.0, 'such': 1.0, 'with': 4.0, 'this': 4.0, 'its': 1.0, 'had': 1.0, 'to': 2.0, 't': 1.0, 'could': 1.0, 'a': 4.0, 'i': 5.0, 'very': 2.0, 'experience': 1.0, 'enjoyed': 1.0, 'every': 1.0, 'fun': 1.0, 'm': 2.0, 'happy': 1.0, 'my': 1.0, 'many': 1.0, 'people': 1.0, 'simple': 1.0, 'me': 1.0, 'play': 1.0, 'and': 1.0, 'be': 1.0, 'giving': 1.0, 'but': 3.0, 'have': 1.0, 'like': 1.0, 'refused': 1.0, 'for': 1.0, 'stars': 1.0, 'it': 4.0, 'she': 2.0, 'seem': 1.0, 'bored': 1.0, 'time': 1.0, 'handed': 1.0, 'floor': 1.0, 'different': 1.0, 'her': 1.0, 'just': 2.0, 'because': 1.0, 'child': 2.0, 'threw': 1.0, '3': 1.0, 'on': 1.0, 'the': 2.0, 'believe': 1.0}
Word element => {'mouthing': 1.0, 'see': 1.0, 'i': 1.0, 'babies': 1.0, 'car': 1.0, 'for': 1.0, 'mouths': 1.0, 'those': 1.0, 'much': 1.0, 'healthily': 1.0, 'little': 1.0, 'keys': 1.0, 'and': 2.0, 'fingers': 1.0, 'perfect': 1.0, 'than': 1.0, 'all': 1.0, 'so': 1.0}
Word element => {'trip': 1.0, 'with': 1.0, 'diaper': 1.0, 'waste': 1.0, 'entertained': 1.0, 'kept': 1.0, 'australia': 1.0, 'really': 1.0, 'attractive': 1.0, 'didn': 1.0, 'even': 1.0, 'textures': 1.0, 'interesting': 1.0, 'colors': 1.0, 'bright': 1.0, 'clear': 1.0, 'great': 1.0, 'off': 1.0, 'pull': 1.0, 'now': 1.0, 'his': 1.0, 'chain': 1.0, 'some': 1.0, 'space': 1.0, 'at': 2.0, 'string': 1.0, 'into': 2.0, 't': 1.0, 'we': 1.0, 'a': 4.0, 'best': 1.0, 'him': 1.0, 'be': 1.0, 'turned': 1.0, 'this': 4.0, 'it': 3.0, 'he': 2.0, 'more': 1.0, 'is': 1.0, 'out': 1.0, 'well': 1.0, 'toy': 2.0, 'weirdest': 1.0, 'months': 2.0, 'for': 3.0, 'thing': 1.0, 'can': 2.0, 'but': 1.0, 'back': 2.0, 'links': 2.0, 'reason': 1.0, 'any': 1.0, 'flew': 1.0, 'to': 6.0, 'seat': 1.0, 'started': 1.0, 'turn': 1.0, 'make': 2.0, 'put': 1.0, '3': 1.0, 'i': 2.0, 'rattle': 1.0, 'gnaw': 1.0, 'grabbed': 1.0, 'use': 1.0, 'then': 1.0, 'chew': 1.0, 'few': 1.0, 'other': 2.0, 'dangling': 1.0, 'bag': 1.0, 'need': 1.0, 'toys': 2.0, 'the': 4.0, 'reach': 1.0, 'across': 1.0, 'and': 4.0, '5': 2.0}
Word element => {'her': 1.0, 'helping': 1.0, 'price': 1.0, 'great': 1.0, 'but': 1.0, 'a': 2.0, 'for': 1.0, 'daughter': 1.0, 'of': 1.0, 'keeps': 1.0, 'my': 1.0, 'couple': 1.0, 'and': 2.0, 'attention': 1.0, 's': 1.0, 'learning': 1.0, 'minutes': 1.0, 'learn': 1.0, 'she': 1.0, 'is': 2.0, 'only': 1.0, 'it': 3.0, 'with': 1.0, 'months': 1.0, '4': 1.0, 'old': 1.0, 'still': 1.0, 'to': 1.0, 'play': 1.0}
Word element => {'amused': 1.0, 'him': 1.0, 'keep': 1.0, 'and': 1.0, 'ages': 1.0, 'colors': 1.0, 'bright': 1.0, 'time': 1.0, 'for': 1.0, 'young': 1.0, 'gets': 1.0, 'son': 1.0, 'from': 1.0, 'hear': 1.0, '6': 1.0, 'months': 1.0, 'our': 1.0, 'that': 1.0, 'seem': 1.0, 'you': 1.0, 'these': 1.0, 'the': 2.0, 'should': 1.0, 'old': 1.0, 'giggles': 1.0, 'to': 2.0, 'every': 1.0, 'with': 1.0, 'come': 1.0, 'he': 1.0, 'play': 1.0, 'textures': 1.0, 'all': 1.0}
Word element => {'9': 1.0, 'than': 1.0, 'likely': 1.0, 'for': 1.0, 'target': 1.0, 'shake': 1.0, 'or': 2.0, 'ect': 1.0, 'good': 1.0, 'car': 1.0, 'the': 3.0, 'these': 1.0, 'connect': 1.0, 'in': 1.0, 'everyone': 1.0, 'use': 1.0, 'with': 2.0, 'have': 1.0, 'but': 1.0, 'can': 3.0, 'mat': 1.0, 'size': 1.0, 'wear': 1.0, 'should': 1.0, 'set': 3.0, 'of': 1.0, 'price': 1.0, '34': 2.0, 'you': 5.0, 'keys': 1.0, 'them': 4.0, 'baby': 1.0, 'just': 1.0, 'need': 1.0, 'toys': 1.0, 'to': 2.0, 'seat': 1.0, 'as': 1.0, 'from': 1.0, 'this': 2.0, 'bracelets': 1.0, 'throw': 1.0, 'make': 1.0, 'bowl': 1.0, 'get': 1.0, 'same': 1.0, 'soup': 1.0, 'like': 1.0, 'wont': 1.0, 'a': 5.0, 'could': 1.0, 'comes': 1.0, 'more': 1.0, 'around': 2.0, 'is': 1.0, 'play': 1.0, 'and': 1.0, 'too': 1.0, 'bigger': 1.0}
Word element => {'are': 2.0, 'textures': 1.0, 'different': 1.0, 'so': 1.0, 'and': 1.0, 'do': 1.0, 'you': 1.0, 'with': 1.0, 'can': 1.0, 'absolutely': 1.0, 'rattle': 1.0, 'much': 1.0, 'to': 1.0, 'my': 1.0, 'great': 2.0, 'these': 2.0, 'the': 1.0, 'them': 1.0, 'a': 1.0, 'use': 1.0, 'just': 1.0, 'hang': 1.0, 'toys': 1.0, 'loves': 1.0, 'or': 1.0, 'son': 1.0, 'as': 1.0, 'colors': 1.0}
Word element => {'great': 1.0, 'keeps': 1.0, 'her': 1.0, 'what': 1.0, 'easily': 1.0, 'very': 1.0, 'different': 1.0, 'a': 1.0, 'make': 1.0, 'daughter': 1.0, 'buy': 1.0, 'old': 1.0, 'toy': 2.0, 'to': 1.0, 'yr': 1.0, 'my': 1.0, 'find': 1.0, 'so': 1.0, 'and': 1.0, '1': 1.0, 'versatile': 1.0, 'is': 1.0, 'lil': 3.0, 'loves': 1.0, 'this': 1.0, 'it': 3.0, 'can': 1.0, 'just': 1.0, 'one': 1.0, 'that': 2.0, 'attention': 1.0, 's': 2.0, 'you': 1.0, 'always': 1.0, 'someway': 1.0}
Word element => {'after': 1.0, 'grandchildren': 1.0, 'm': 1.0, 'then': 1.0, 'he': 1.0, 'why': 1.0, 'right': 1.0, 'customer': 1.0, 'don': 1.0, 'saying': 1.0, 'sassy': 1.0, 'from': 1.0, 'e': 2.0, 'an': 2.0, 'these': 1.0, 'receiving': 1.0, 'convincing': 1.0, 'also': 1.0, 'saw': 1.0, 'reports': 1.0, 'thought': 2.0, 'mail': 2.0, 'free': 8.0, 'bpa': 6.0, 'nowhere': 1.0, 'says': 3.0, 'packaging': 4.0, 'of': 1.0, 'she': 2.0, 'it': 10.0, 'based': 1.0, 'this': 3.0, 'that': 6.0, 'were': 1.0, 'statement': 1.0, 'for': 1.0, 'product': 4.0, 'chance': 1.0, 'be': 1.0, 'going': 1.0, 't': 2.0, 's': 1.0, 'a': 1.0, 'won': 1.0, 'well': 1.0, 'send': 1.0, 'them': 1.0, 'i': 5.0, 'two': 2.0, 'who': 1.0, 'at': 1.0, 'bought': 1.0, 'grandbabies': 1.0, 'would': 2.0, 'find': 1.0, 'does': 2.0, 'give': 1.0, 'inquire': 1.0, 'latex': 1.0, 'not': 3.0, 'is': 6.0, 'say': 3.0, 'paint': 1.0, 'which': 1.0, 'thing': 1.0, 'said': 1.0, 'in': 1.0, 'the': 11.0, 'website': 1.0, 'on': 6.0, 'think': 1.0, 'same': 1.0, 'if': 2.0, 'my': 1.0, 'reviewer': 2.0, 'company': 2.0, 'fact': 1.0, 'glad': 1.0, 'all': 2.0, 'to': 4.0, 'so': 1.0}
Word element => {'simple': 1.0, 'and': 1.0, 'small': 1.0, 'waay': 1.0, 'is': 1.0, 'pricey': 1.0, 'our': 1.0, 'haven': 1.0, 'such': 1.0, 't': 1.0, 'r': 1.0, 'a': 2.0, 'try': 1.0, 'babies': 1.0, 'to': 1.0, 'had': 1.0, 'i': 1.0, 'cheaper': 1.0, 'too': 1.0, 'us': 1.0, 'toy': 1.0, 'baby': 1.0, 'for': 1.0, 'chance': 1.0, 'yet': 1.0, 'but': 1.0, 'with': 1.0, 'this': 1.0, 'it': 1.0, 's': 1.0, '5': 1.0, 'definitely': 1.0, 'at': 1.0}
Word element => {'purchase': 1.0, 'the': 1.0, 'my': 1.0, 'pulling': 1.0, 'his': 1.0, 'off': 1.0, 'likes': 1.0, 'putting': 1.0, 'old': 1.0, 'to': 1.0, 'month': 1.0, '9': 1.0, 'and': 1.0, 'like': 1.0, 'them': 1.0, 'rings': 1.0, 'mouth': 1.0, 'satisfied': 1.0, 'in': 1.0, 'also': 1.0, 'shake': 1.0, 'with': 1.0, 'he': 1.0, 'this': 2.0, 'im': 1.0}
Word element => {'it': 1.0, 'love': 1.0, 'building': 1.0, 'plays': 1.0, 'when': 2.0, 'this': 1.0, 'incorporate': 1.0, 'to': 1.0, 'continues': 1.0, 'price': 1.0, 'toys': 1.0, 'he': 2.0, 'the': 1.0, 'ratio': 1.0, 'best': 1.0, 'is': 1.0, 'now': 1.0, 'purpose': 1.0, 'two': 1.0, 'quality': 1.0, 'and': 1.0}
Word element => {'with': 1.0, 'her': 1.0, 'so': 2.0, 'stroller': 1.0, 'diaper': 1.0, 'great': 1.0, 'these': 1.0, 'mine': 1.0, 'for': 1.0, 'i': 2.0, 'always': 1.0, 'linked': 1.0, 'of': 1.0, 'hand': 1.0, 'bag': 1.0, 'have': 2.0, 'this': 2.0, 'only': 1.0, 'keep': 1.0, 'at': 1.0, 'things': 1.0, 'is': 4.0, 'really': 1.0, 'a': 1.0, 'little': 1.0, 'the': 3.0, 'reach': 1.0, 'easy': 1.0, 'it': 1.0, 'she': 1.0, 'toy': 2.0, 'colors': 1.0, 'to': 4.0, 'now': 1.0, 'my': 1.0, 'daughter': 1.0, '3': 1.0, 'months': 1.0, 'play': 1.0, 'and': 4.0, 'starting': 1.0, 'just': 1.0, 'links': 1.0, 'are': 1.0, 'content': 1.0, 'wonderful': 1.0, 'handles': 1.0, 'enjoys': 1.0, 'quite': 1.0, 'be': 1.0, 'in': 1.0}
Word element => {'together': 1.0, 'keep': 1.0, 'just': 1.0, 'over': 1.0, 'all': 1.0, 'toy': 2.0, 'old': 1.0, 'to': 2.0, 'hard': 1.0, 'this': 1.0, 'pull': 1.0, 'great': 1.0, 'the': 3.0, 'find': 1.0, '1': 1.0, 'then': 1.0, 'house': 1.0, 'but': 2.0, 'youngest': 1.0, 'rings': 2.0, 'our': 1.0, 'apart': 1.0, 'we': 1.0, 'fall': 1.0, 'loves': 2.0, 'off': 1.0, 'she': 1.0, 'year': 1.0, 'very': 1.0, 'easily': 1.0, 'them': 1.0}
Word element => {'am': 1.0, 'english': 1.0, 'and': 1.0, 'colors': 1.0, 'i': 2.0, 'is': 1.0, 'every': 1.0, 'them': 1.0, 'go': 1.0, 'rings': 1.0, 'multi': 1.0, 'teething': 1.0, 'in': 1.0, 'also': 1.0, 'spanish': 1.0, 'the': 2.0, 'my': 1.0, 'product': 2.0, 'with': 2.0, 'this': 2.0, 'loves': 1.0, 'us': 1.0, 'where': 1.0, 'daughter': 1.0, 'can': 1.0, 'satisfied': 1.0, 'princess': 1.0, 'tell': 1.0, 'awsome': 1.0, 'her': 1.0}
Word element => {'s': 1.0, 'm': 1.0, 'i': 1.0, 'with': 1.0, 'time': 1.0, 'all': 1.0, 'the': 1.0, 'my': 1.0, 'hand': 1.0, 'her': 2.0, 'not': 1.0, 'links': 1.0, 'loves': 1.0, 'have': 1.0, 'she': 2.0, 'to': 1.0, 'them': 2.0, 'sleeping': 1.0, 'surprised': 1.0, 'has': 1.0, 'daughter': 1.0, 'in': 1.0}
Word element => {'s': 2.0, 'holds': 1.0, 'is': 1.0, 'ring': 1.0, 'big': 1.0, 'it': 3.0, 'fascinated': 1.0, 'simple': 1.0, 'toys': 3.0, 'eyes': 1.0, 'this': 1.0, 'carseats': 1.0, 'white': 2.0, 'them': 2.0, 'baby': 2.0, 'most': 1.0, 'but': 2.0, 'can': 2.0, '2': 1.0, 'in': 3.0, 'textured': 1.0, 'dishwasher': 1.0, 'for': 5.0, 'actually': 1.0, 'adult': 1.0, '1': 1.0, 'cleanthis': 1.0, 'looks': 1.0, 'my': 2.0, 'attention': 1.0, 'of': 4.0, 'the': 14.0, 'hands': 1.0, 'bought': 1.0, 'months': 1.0, 'mobile': 1.0, 'well': 1.0, 'i': 1.0, 'are': 3.0, 'first': 2.0, 'interactive': 1.0, 'they': 6.0, 'was': 2.0, 'be': 2.0, 'to': 5.0, 'heavy': 1.0, 'as': 5.0, 'contrast': 1.0, 'grow': 1.0, 'black': 2.0, 'visual': 1.0, 'does': 1.0, 'chew': 1.0, 'before': 1.0, 'five': 1.0, '5': 1.0, 'and': 4.0, '74': 1.0, 'lot': 2.0, 'too': 1.0, 'babies': 2.0, 'that': 1.0, 'things': 1.0, 'able': 1.0, 'with': 4.0, 'contrasts': 1.0, 'early': 1.0, 'months2': 1.0, 'grab': 1.0, 'hold3': 1.0, 'a': 2.0, 'small': 1.0, 'have': 2.0, 'enough': 1.0, 'their': 2.0, 'lift': 1.0, 'removed': 1.0, 'much': 1.0, 'fun': 1.0, 'if': 1.0, 'enjoy': 1.0, 'gnawing': 1.0, 'on': 2.0, 'make': 1.0, 'good': 1.0, 'teethers': 1.0, 'just': 1.0, 'wash': 1.0, 'top': 1.0, 'shelf': 1.0, 'links': 5.0, 'other': 1.0, 'some': 1.0, 'played': 1.0, 'older': 1.0, 'toy': 3.0, 'used': 1.0, 'attach': 1.0}
Word element => {'months': 1.0, 'plays': 1.0, 'still': 1.0, 'likes': 1.0, 'bought': 1.0, 'reviews': 1.0, 'his': 1.0, '11': 1.0, 'ring': 1.0, 'son': 1.0, 'other': 2.0, 'with': 1.0, 'he': 1.0, 'this': 1.0, 'the': 3.0, 'my': 1.0, 'black': 1.0, 'add': 1.0, 'read': 1.0, 'because': 1.0, 'old': 1.0, 'i': 3.0, 'stripe': 1.0, 'jumper': 1.0, 'and': 1.0, 'white': 1.0, 'for': 1.0, 'teething': 1.0, 'also': 1.0, 'different': 1.0, 'rings': 2.0, 'to': 1.0}
Word element => {'fazer': 1.0, 'pra': 1.0, 'bom': 1.0, 'muito': 1.0, 'da': 1.0, 'varias': 1.0, 'interessante': 1.0, 'filha': 1.0, 'e': 1.0, '5': 1.0, 'de': 1.0, 'preo': 1.0, 'minha': 1.0, 'meses': 1.0, 'perfeito': 1.0, 'desenho': 1.0, 'adora': 1.0, 'qualidade': 1.0, 'brincadeiras': 1.0, 'excelente': 1.0}
Word element => {'nice': 1.0, 'pretty': 1.0, 'bright': 1.0, 'toys': 1.0, 'teeth': 1.0, 'great': 1.0, 'baby': 1.0, 'quality': 1.0, 'very': 1.0, 'and': 4.0, 'hold': 1.0, 'a': 1.0, 'just': 1.0, 'play': 1.0, 'for': 1.0, 'starting': 1.0, 'to': 1.0, 'with': 1.0}
Word element => {'on': 1.0, 'learning': 1.0, 'it': 2.0, 'him': 1.0, 'not': 1.0, 'to': 2.0, 'looks': 1.0, 'seems': 1.0, 'reach': 1.0, 'and': 2.0, 'loves': 1.0, 'quite': 1.0, 'at': 1.0, 'things': 1.0, 'track': 1.0, 'but': 1.0, 'there': 1.0, 'for': 2.0, 'love': 1.0, 'yet': 1.0, 'these': 1.0, 'the': 1.0, 'baby': 1.0, 'colors': 1.0, 'keep': 1.0}
Word element => {'recommend': 1.0, 'easy': 1.0, 'boy': 1.0, 'or': 1.0, 'good': 1.0, 'is': 1.0, 'would': 1.0, 'vibrant': 1.0, 'baby': 1.0, 'any': 1.0, 'colors': 2.0, 'gift': 1.0, 'to': 1.0, 'everyone': 1.0, 'very': 1.0, 'as': 1.0, 'are': 1.0, 'believe': 1.0, 'a': 1.0, 'and': 4.0, 'giving': 1.0, 'that': 1.0, 'great': 1.0, 'am': 1.0, 'i': 3.0, 'for': 3.0, 'happy': 1.0, 'also': 2.0, 'starts': 1.0, 'an': 1.0, 'girl': 1.0, 'infant': 1.0, 'clean': 1.0, 'out': 1.0, 'this': 1.0, 'with': 1.0, 'just': 1.0}
Word element => {'mouth': 1.0, 'can': 1.0, 'rattle': 1.0, 'colourful': 1.0, 'ring': 1.0, 'contrast': 1.0, 'high': 1.0, 'an': 1.0, 'will': 1.0, 'midline': 1.0, 'have': 1.0, 'wide': 1.0, 'about': 1.0, 'toy': 2.0, 'baby': 2.0, 'take': 1.0, 'with': 1.0, 'older': 1.0, 'that': 3.0, 'inches': 1.0, 'passing': 1.0, 'a': 6.0, 'excellent': 1.0, 'is': 4.0, 'off': 1.0, 'on': 1.0, 'put': 1.0, '3': 1.0, 'this': 2.0, 'perfect': 2.0, 'couple': 1.0, 'newborn': 1.0, 'for': 2.0, 'beginning': 1.0, 'all': 1.0, 'grow': 1.0, 'to': 2.0, 'hold': 1.0, 'just': 1.0, 'by': 1.0, 'you': 1.0, 'when': 1.0, 'three': 1.0, 'months': 2.0, 'links': 2.0, 'practice': 1.0, 'they': 1.0, 'between': 1.0, 'the': 3.0, 'hands': 1.0, 'during': 1.0, 'and': 2.0, 'play': 1.0, 'then': 1.0}
Word element => {'busy': 1.0, 'herself': 1.0, 'keeps': 2.0, 'place': 1.0, 'down': 1.0, 'her': 3.0, 'set': 1.0, 'can': 1.0, 'things': 1.0, 'me': 1.0, 'and': 2.0, 'done': 1.0, 'get': 1.0, 'to': 1.0, 'month': 1.0, '4': 1.0, 'whatever': 1.0, 'for': 2.0, 'i': 3.0, 'old': 1.0, 'myself': 1.0, 'product': 2.0, 'bought': 1.0, 'easier': 1.0, 'my': 1.0, 'happy': 3.0, 'daughter': 1.0, 'm': 1.0, 'very': 2.0, 'hands': 1.0, 'she': 1.0, 'entertained': 1.0, 'makes': 2.0, 'it': 4.0, 'this': 2.0, 'with': 1.0, 'in': 1.0, 'seems': 1.0, 'also': 1.0, 'alot': 1.0}
Word element => {'3': 1.0, 'money': 1.0, 'about': 1.0, 'they': 1.0, 'a': 1.0, 'since': 1.0, 'for': 1.0, 'love': 1.0, 'old': 2.0, 'month': 1.0, 'have': 1.0, 'babies': 1.0, '8': 1.0, 's': 1.0, 'twin': 1.0, 'months': 1.0, 'on': 2.0, 'them': 2.0, 'purchase': 1.0, 'chew': 1.0, 'use': 1.0, 'floor': 1.0, 'strollers': 1.0, 'were': 1.0, 'their': 1.0, 'our': 1.0, 'overall': 1.0, 'are': 1.0, 'these': 1.0, 'great': 1.0, 'the': 2.0, 'we': 1.0, 'links': 1.0, 'and': 2.0, 'my': 1.0, 'high': 1.0, 'to': 2.0, 'keep': 1.0, 'toys': 1.0, 'good': 1.0, 'chairs': 1.0, 'off': 1.0}
Word element => {'about': 1.0, 'handle': 1.0, 'love': 1.0, 'for': 1.0, 'i': 1.0, 'and': 3.0, 'get': 1.0, 'car': 1.0, 'plays': 1.0, 'definitely': 1.0, 'he': 2.0, 'with': 1.0, 'just': 1.0, 'of': 2.0, 'until': 1.0, 'son': 1.0, 'to': 1.0, 'seat': 1.0, 'as': 2.0, 'rings': 1.0, 'mouth': 1.0, 'we': 2.0, 'his': 4.0, 'long': 2.0, 'them': 3.0, 'out': 1.0, 'falls': 1.0, 'my': 1.0, 'asleep': 1.0, 'the': 1.0, 'loves': 1.0, 'into': 1.0, 'that': 1.0, 'you': 2.0, 'can': 1.0, 'on': 1.0, 'put': 1.0, 'make': 1.0, 'enough': 1.0, 'short': 1.0, 'choice': 1.0, 'want': 1.0, 'so': 1.0, 'they': 2.0, 'are': 3.0, 'him': 1.0, 'toy': 1.0, 'while': 1.0}
Word element => {'from': 1.0, 'smiles': 1.0, 'of': 1.0, 'get': 1.0, 'continue': 1.0, 'll': 1.0, 'laughs': 1.0, 'rings': 2.0, 'it': 5.0, 'this': 1.0, 'with': 1.0, 'he': 2.0, 'hook': 1.0, 'and': 5.0, 'absolutely': 1.0, '34': 2.0, 'loves': 1.0, 'or': 1.0, 'is': 1.0, 'really': 1.0, 'has': 1.0, 'toy': 1.0, 'baby': 1.0, 'the': 4.0, 'my': 1.0, 'first': 1.0, 'above': 1.0, 'chain': 1.0, 'lot': 1.0, 'at': 1.0, 'played': 1.0, 'bats': 1.0, 'hang': 1.0, 'months': 1.0, 'put': 1.0, 'on': 1.0, 'black': 1.0, 'we': 2.0, 'a': 3.0, 'white': 1.0, 'colors': 1.0, 'ring': 1.0, 'to': 1.0, 'all': 2.0, 'as': 2.0, 'pictured': 1.0, 'use': 1.0, 'together': 1.0, 'him': 2.0, 'so': 1.0, 'mesmerize': 1.0, 'two': 1.0, 'rattle': 1.0, 'i': 1.0, 'like': 1.0, 'know': 1.0}
Word element => {'gifts': 1.0, 'few': 1.0, 'well': 1.0, 'a': 2.0, 'them': 2.0, 'was': 1.0, 've': 1.0, 'bought': 1.0, 'till': 1.0, 'when': 1.0, 'daughter': 1.0, 'love': 1.0, 'for': 1.0, 'my': 1.0, 'these': 1.0, 'every': 1.0, 'got': 1.0, 'months': 1.0, 'she': 2.0, 'played': 1.0, 'about': 1.0, 'i': 2.0, 'old': 2.0, 'and': 1.0, 'with': 1.0, 'as': 2.0, 'year': 1.0, 'day': 1.0}
Word element => {'needs': 1.0, 'really': 1.0, 'else': 1.0, 'what': 1.0, 'safe': 1.0, 'at': 1.0, 'they': 1.0, 'free': 2.0, 'has': 1.0, 'i': 1.0, 'one': 1.0, 'kid': 1.0, 'is': 2.0, 'my': 1.0, 'them': 1.0, 'letter': 1.0, 'the': 1.0, 't': 1.0, 'are': 2.0, 'love': 1.0, 'for': 1.0, 'product': 1.0, 'paint': 1.0, 'colors': 1.0, 'lots': 1.0, 'and': 4.0, '1': 1.0, 'knowing': 1.0, 'textures': 1.0, 'have': 1.0, 'there': 1.0, 'of': 1.0, 'be': 1.0, 'him': 1.0, 'he': 2.0, 'it': 1.0, 'only': 1.0, 'to': 1.0, 'all': 1.0, 'least': 1.0, 'said': 1.0, 'in': 2.0, 'seems': 1.0, 'bpa': 1.0, 'his': 1.0, 'absolutely': 1.0, 'both': 1.0, 'day': 1.0, 'hand': 1.0, 'like': 1.0, 'loves': 1.0, 'that': 1.0, 'when': 1.0, 'doesn': 1.0}
Word element => {'dinner': 1.0, 'and': 1.0, 'much': 1.0, 'not': 1.0, 'just': 1.0, 'car': 1.0, 'plays': 1.0, '3': 1.0, 'the': 1.0, 'great': 1.0, '2': 1.0, 'my': 1.0, 'still': 1.0, 'find': 1.0, 'for': 2.0, 'in': 2.0, 'could': 1.0, 'got': 1.0, 'town': 1.0, 'they': 1.0, 'out': 1.0, 'them': 3.0, 'where': 1.0, 'when': 1.0, 'as': 1.0, 'son': 1.0, 'with': 1.0, 'he': 2.0, 'to': 1.0, 'was': 1.0, 'any': 1.0, 'about': 2.0, 'months': 2.0, '6': 1.0, 'his': 1.0, 'i': 1.0, 'old': 1.0, 'were': 1.0, 'fave': 1.0}
Word element => {'bpa': 1.0, 'different': 1.0, 'of': 1.0, 'daddy': 1.0, 'for': 2.0, 'in': 1.0, 'are': 2.0, 'free': 1.0, 'they': 2.0, 'haven': 1.0, 'to': 3.0, 'be': 1.0, 'out': 1.0, 'them': 2.0, 'taken': 1.0, 'very': 1.0, 'and': 1.0, 'diaper': 1.0, 'the': 1.0, 't': 1.0, 'bag': 1.0, 'put': 1.0, 'his': 2.0, 'feels': 1.0, 'new': 1.0, 'birthday': 1.0, 'cute': 1.0, 'lots': 1.0}
Word element => {'different': 1.0, 'up': 1.0, 'to': 1.0, 'need': 1.0, 'just': 1.0, 'you': 1.0, 'in': 1.0, 'apart': 1.0, 'come': 1.0, 'order': 1.0, 'so': 1.0, 'opening': 1.0, 'chain': 1.0, 'some': 1.0, 'though': 1.0, 'link': 1.0, 'chews': 1.0, 'may': 1.0, 'bigger': 1.0, 'she': 1.0, 'bunch': 1.0, 'them': 5.0, 'a': 1.0, 'loves': 1.0, 'other': 1.0, 'my': 1.0, 'are': 1.0, 'the': 2.0, 'daughter': 1.0, 'cute': 1.0, 'one': 1.0, 'for': 1.0, 'letters': 2.0, 'on': 1.0, 'tosses': 1.0, 'around': 1.0, 'rattles': 1.0, 'i': 1.0, 'would': 1.0, 'and': 1.0, 'get': 1.0, 'have': 1.0, 'thing': 1.0, 'babies': 1.0}
Word element => {'again': 1.0, 'learning': 1.0, 'here': 1.0, 'order': 1.0, 'time': 1.0, 'on': 2.0, 'fast': 1.0, 'will': 1.0, 'baby': 1.0, 'and': 2.0, 'from': 1.0, 'very': 1.0, 'great': 1.0, 'useful': 1.0, 'to': 1.0, 'too': 1.0, 'his': 1.0, 'my': 1.0, 'service': 1.0, 'loves': 1.0, 'chew': 1.0, 'letters': 1.0, 's': 1.0, 'he': 1.0}
Word element => {'note': 1.0, 'to': 1.0, 'something': 1.0, 'are': 1.0, 'but': 2.0, 'stroller': 1.0, 'the': 3.0, 'these': 1.0, 'they': 1.0, 'with': 1.0, 'deal': 1.0, 'on': 2.0, 'pleased': 1.0, 'openings': 1.0, 'm': 1.0, 'stretched': 1.0, 'roll': 1.0, 'car': 1.0, 'very': 1.0, 'a': 1.0, 'bar': 1.0, 'i': 1.0, 'small': 1.0, 'so': 1.0, 'easily': 1.0, 'and': 1.0, 'get': 1.0, 'huge': 1.0, 'not': 1.0, 'seat': 1.0}
Word element => {'product': 1.0, 'all': 1.0, 'for': 1.0, 'better': 1.0, 'are': 1.0, 'links': 1.0, 'oval': 1.0, 'plain': 1.0, 'though': 1.0, 'on': 1.0, 'pulls': 1.0, 'baby': 1.0, 'when': 1.0, 'around': 1.0, 'staying': 1.0, 'at': 1.0, 'per': 1.0, 'not': 1.0, 'bpa': 1.0, '7': 1.0, 'them': 2.0, 'the': 3.0, 're': 2.0, 'my': 1.0, 'free': 1.0, 'they': 2.0, 'sassy': 1.0, 'like': 1.0, 'and': 1.0, 'very': 1.0, 'month': 1.0, 'i': 1.0, 'old': 1.0, 'linked': 1.0, 'that': 2.0, 'playing': 1.0, 'with': 1.0, 'loves': 1.0, 'website': 1.0, 'good': 2.0}
Word element => {'on': 1.0, 'around': 1.0, 'shake': 1.0, 'daughter': 1.0, 'my': 1.0, 'purchase': 1.0, 'regret': 1.0, 'still': 1.0, 'linking': 1.0, 'better': 1.0, 'overall': 1.0, 'don': 1.0, 'child': 1.0, 'recognizable': 1.0, 'after': 1.0, 'work': 1.0, 'but': 2.0, 'letters': 2.0, 'teaching': 1.0, 'useful': 1.0, 'are': 4.0, 'reviews': 1.0, 'very': 1.0, 'do': 1.0, 'colorful': 1.0, 'other': 2.0, 'attach': 1.0, 'sturdy': 1.0, 'toys': 1.0, 'to': 4.0, 'our': 1.0, 'loves': 1.0, 'that': 1.0, 'links': 2.0, 'best': 1.0, 'fun': 2.0, 'for': 2.0, 'love': 1.0, 'house': 1.0, 'themselves': 1.0, 'regular': 1.0, 'in': 1.0, 'apart': 1.0, 'also': 1.0, 'the': 6.0, 'play': 1.0, 'and': 5.0, 'too': 1.0, 'or': 1.0, 'i': 2.0, 'highchairs': 1.0, 'agree': 1.0, 'with': 2.0, 'oval': 1.0, 'bright': 1.0, 'come': 1.0, 'of': 3.0, 'by': 1.0, 'few': 1.0, 'them': 3.0, 'strollers': 1.0, 'letter': 1.0, 't': 1.0, 'a': 1.0, 'we': 1.0, 's': 1.0, 'openings': 1.0, 'course': 1.0, 'larger': 1.0, 'chew': 1.0, 'than': 1.0, 'some': 1.0, 'these': 2.0, 'others': 1.0, 'easily': 2.0, 'not': 1.0}
Word element => {'good': 1.0, 'is': 1.0, 'think': 1.0, 'and': 1.0, 'comes': 1.0, 'learning': 1.0, 'it': 1.0, 'possible': 1.0, 'a': 1.0, 'want': 1.0, 'to': 2.0, 'all': 1.0, 'this': 1.0, 'grandson': 1.0, 'have': 1.0, 'advantages': 1.0, 'my': 1.0, 'the': 1.0, 'one': 1.0, 'i': 2.0, 'when': 1.0}
Word element => {'great': 1.0, 'overall': 1.0, 'cute': 1.0, 'very': 1.0, 'tool': 1.0, 'at': 2.0, 'expect': 1.0, 'ordering': 1.0, 'colorful': 1.0, 'she': 2.0, 'purchased': 1.0, 'and': 4.0, 'sturdy': 1.0, 'year': 1.0, 'these': 1.0, 'that': 2.0, 'loves': 1.0, 'this': 2.0, 'christmas': 1.0, 'only': 1.0, 'with': 2.0, 'alphabets': 1.0, 'dual': 1.0, 'educational': 1.0, 'present': 1.0, 'for': 1.0, 'purchase': 1.0, 'my': 1.0, 'one': 2.0, 'color': 1.0, 'old': 1.0, 'point': 1.0, 'recognition': 1.0, 'say': 1.0, 'is': 2.0, 'educationally': 1.0, 'them': 1.0, 'letter': 1.0, 'helping': 1.0, 'her': 2.0, 'as': 2.0, 'all': 1.0, 'because': 1.0, 'can': 1.0, 'but': 1.0, 'will': 1.0, 't': 1.0, 'a': 2.0, 'we': 1.0, 'start': 1.0, 'working': 1.0, 'i': 3.0, 'become': 1.0, 'purpose': 1.0, 'toy': 1.0}
Word element => {'colored': 1.0, 'and': 1.0, 'makes': 1.0, 'we': 1.0, 'liked': 1.0, 'noise': 1.0, 'it': 4.0, 'loves': 1.0, 'that': 1.0, 'is': 1.0, 'son': 1.0, 'soccer': 1.0, 'has': 1.0, 'balls': 1.0, 'brightly': 1.0, 'our': 1.0, 'thanks': 1.0, 'because': 1.0}
Word element => {'them': 1.0, 'rattle': 1.0, 'on': 1.0, 'sport': 1.0, 'the': 4.0, 'my': 1.0, 'representing': 1.0, 'tag': 1.0, 'babies': 1.0, 'nice': 1.0, 'indoor': 1.0, 'we': 1.0, 'play': 1.0, 'along': 1.0, 'soccer': 1.0, 'both': 1.0, 'she': 1.0, 'girls': 1.0, 'and': 3.0, 'was': 1.0, 'since': 1.0, 'a': 1.0, 'week': 1.0, 'i': 1.0, 'old': 1.0, 'they': 1.0, 'one': 1.0, 'love': 2.0, 'grip': 1.0}
Word element => {'bag': 1.0, 'out': 1.0, 'have': 1.0, 'toy': 1.0, 'any': 1.0, 'about': 1.0, 'don': 1.0, 'i': 1.0, 'so': 1.0, 'always': 1.0, 'of': 2.0, 'see': 1.0, 'since': 1.0, 'rattle': 2.0, 'course': 1.0, 'is': 2.0, 'played': 1.0, 'one': 1.0, 'has': 1.0, 'ever': 1.0, 'flaking': 1.0, 'little': 1.0, 'my': 1.0, 't': 1.0, 'the': 2.0, 'worry': 1.0, 'could': 1.0, 'grasp': 1.0, 'come': 1.0, 'excited': 1.0, 'he': 2.0, 'this': 2.0, 'with': 1.0, 'it': 2.0, 'right': 1.0, 'to': 3.0, 'painted': 1.0, 'mouth': 1.0, 'not': 1.0}
Word element => {'product': 1.0, 'colors': 1.0, 'i': 1.0, 'beautiful': 1.0, 'and': 1.0, 'quality': 1.0, 'this': 2.0, 'is': 1.0, 'a': 2.0, 'perfect': 1.0, 'rattle': 1.0, 'for': 1.0, 'little': 1.0, 'baby': 1.0, '3': 1.0, 'months': 1.0, 'recommend': 1.0, 'good': 1.0}
Word element => {'ningun': 1.0, 'boca': 1.0, 'la': 1.0, 'riesgo': 1.0, 'a': 1.0, 'puedes': 1.0, 'os': 1.0, 'hay': 1.0, 'de': 1.0, 'goma': 1.0, 'llevarselo': 1.0, 'ntilde': 1.0, 'ligero': 1.0, 'para': 1.0, 'bebe': 1.0, 'no': 1.0, 'uso': 1.0, 'los': 1.0, 'y': 1.0, 'muy': 1.0, 'idea': 1.0, 'material': 1.0, 'ni': 1.0}
Word element => {'being': 1.0, 'bang': 1.0, 'love': 1.0, 'will': 1.0, 'though': 1.0, 'can': 1.0, 'balls': 1.0, '7': 1.0, 'months': 1.0, '4': 1.0, 'especially': 1.0, 'around': 1.0, 'they': 3.0, 'born': 1.0, 'so': 1.0, 'after': 1.0, 'not': 1.0, 'son': 1.0, 'really': 1.0, 'is': 1.0, 'soccer': 1.0, 'long': 1.0, 'rattle': 2.0, 'my': 1.0, 'heavy': 1.0, 'the': 1.0, 'more': 1.0, 'once': 1.0, 'motor': 1.0, 'takes': 1.0, 'skills': 1.0, 'i': 1.0, 'with': 1.0, 'this': 1.0, 'it': 4.0, 'a': 1.0, 'heavier': 1.0, 'get': 1.0, 'and': 1.0, 'was': 1.0, 'to': 2.0, 'hang': 1.0, 'be': 1.0, 'bought': 1.0, 'onto': 1.0}
Word element => {'new': 1.0, 'baby': 1.0, 'players': 1.0, 'for': 2.0, 'soccer': 1.0, 'gift': 1.0, 'perfect': 1.0, 'the': 2.0, 'it': 2.0, 'former': 1.0, 'purchased': 1.0, 'brand': 1.0, 'have': 1.0, 'this': 1.0, 'before': 1.0, 'is': 2.0, 'i': 1.0, 'indestructable': 1.0, 'and': 1.0, 'almost': 1.0}
Word element => {'parts': 1.0, 'to': 2.0, 'easy': 1.0, 'mouth': 1.0, 'great': 1.0, 'is': 1.0, 'son': 1.0, 'it': 2.0, 'with': 1.0, 'for': 1.0, 'in': 1.0, 'him': 1.0, 'grand': 1.0, 'put': 1.0, 'his': 1.0, 'my': 1.0, 'small': 1.0, 'hold': 1.0, 'and': 1.0, 'safe': 1.0, 'no': 1.0, 'loves': 1.0, 'or': 1.0, 'removable': 1.0}
Word element => {}
Word element => {'is': 1.0, 'vibrate': 1.0, 'power': 1.0, 'make': 1.0, 'the': 2.0, 'does': 1.0, 'man': 1.0, 'have': 1.0, 'this': 1.0, 'easier': 1.0, 'little': 1.0, 'if': 1.0, 'not': 1.0, 'would': 1.0, 'was': 1.0, 'use': 1.0, 'supposed': 1.0, 'way': 1.0, 'great': 1.0, 'it': 3.0, 'be': 1.0, 'to': 3.0}
Word element => {'help': 1.0, 'vibrate': 1.0, 'to': 2.0, 'can': 1.0, 'loves': 1.0, 'grandson': 1.0, 'he': 1.0, 'with': 1.0, 'it': 2.0, 'this': 1.0, 'happy': 1.0, 'my': 1.0, 'die': 1.0, 'our': 1.0, 'that': 1.0, 'you': 1.0, 'is': 4.0, 'thing': 1.0, 'teether': 1.0, 'downfall': 1.0, 'batteries': 1.0, 'great': 1.0, 't': 1.0, 'the': 3.0, 'replace': 1.0, 'them': 1.0, 'a': 1.0, 'get': 1.0, 'and': 1.0, 'bit': 1.0, 'when': 1.0, 'tough': 1.0}
Word element => {'colors': 1.0, 'different': 1.0, 'circles': 1.0, 'the': 1.0, 'were': 1.0, 'cuter': 1.0, 'would': 1.0, 'vibrates': 1.0, 'vibrating': 1.0, 'very': 1.0, 'i': 1.0, 'been': 1.0, 'teethers': 1.0, 'clear': 1.0, 'if': 1.0, 'compared': 1.0, 'to': 1.0, 'other': 1.0, 'have': 2.0, 'easily': 1.0, 'puchased': 1.0}
Word element => {'sassy': 1.0, 'suggest': 1.0, 'would': 1.0, 'vibrate': 1.0, '1': 1.0, 'and': 3.0, 'giving': 1.0, 'interested': 1.0, 'never': 1.0, 'my': 1.0, 'was': 1.0, 'to': 2.0, 'baby': 1.0, 'vibrates': 1.0, 'liked': 1.0, 'for': 1.0, 'in': 1.0, 'also': 1.0, 'experience': 1.0, 'that': 2.0, 'bad': 1.0, 'i': 3.0, 'tried': 1.0, 'looks': 1.0, 'it': 6.0, 'this': 1.0, 'looked': 1.0, 'however': 1.0, 'vibratei': 1.0, 'bit': 1.0, 'fun': 1.0, 'at': 1.0, 'little': 1.0, 'the': 1.0, 'hands': 1.0, 'like': 1.0, 'hold': 1.0, 'a': 2.0, 'heavy2': 1.0, 'newborns': 1.0, 'bee': 1.0, 'infants': 1.0, 'make': 2.0, 'even': 1.0, 'her': 1.0, 'cant': 1.0, 'bought': 1.0, 'ten': 1.0, 'months': 1.0, 'but': 1.0, 'difficult': 1.0, 'bec': 1.0, 'still': 1.0, 'teether': 2.0, 'couldnt': 1.0}
Word element => {'need': 1.0, 'exactly': 1.0, 'their': 1.0, 'in': 1.0, 'purpose': 1.0, 'now': 1.0, 'to': 1.0, 'my': 1.0, 'it': 2.0, 'with': 2.0, 'this': 1.0, 'he': 2.0, 'push': 1.0, 'are': 3.0, 'the': 3.0, 'more': 1.0, 'every': 1.0, 'mouth': 1.0, 'chew': 1.0, 'keys': 1.0, 'you': 1.0, 'too': 1.0, 'and': 1.0, 'get': 1.0, 'played': 1.0, 'then': 1.0, 'buttons': 1.0, 'once': 1.0, 'liked': 1.0, 'son': 1.0, 'big': 1.0, 'though': 1.0, 'much': 1.0, 'teething': 1.0, 'if': 1.0, 'looking': 1.0, 'can': 1.0, 'easier': 1.0, 'on': 2.0, 'your': 1.0, 'they': 2.0, 'baby': 1.0, 'i': 1.0, 'where': 1.0, 'for': 2.0, 'cheap': 1.0, 'basic': 1.0, 'something': 1.0, 'would': 1.0, 'could': 1.0, 'go': 1.0, 'key': 1.0, 'set': 1.0}
Word element => {'old': 1.0, '5': 1.0, 'problem': 1.0, 'no': 1.0, 'now': 2.0, 'handle': 1.0, 'big': 1.0, 'months': 2.0, 'couple': 1.0, 'heavy': 2.0, 'little': 2.0, 'car': 1.0, 'them': 3.0, 'white': 1.0, 'it': 1.0, 'she': 3.0, 'at': 1.0, 'keep': 1.0, 'all': 1.0, 'to': 2.0, 'noises': 1.0, 'only': 1.0, 'with': 2.0, 'in': 1.0, 'daughter': 1.0, 'shake': 1.0, 'loves': 2.0, 'was': 1.0, 'beautiful': 1.0, 'keychain': 1.0, 'too': 1.0, 'and': 7.0, 'keys': 1.0, 'charm': 1.0, 'these': 1.0, 'playing': 1.0, 'the': 3.0, 'they': 3.0, 'colors': 1.0, 'my': 1.0, 'are': 1.0, 'make': 1.0, 'moments': 1.0, 'every': 1.0, 'satisfying': 1.0, 'larger': 1.0, 'for': 2.0, 'meltdown': 1.0, 'her': 2.0, 'part': 1.0, 'but': 1.0, 'work': 1.0, 'like': 1.0, 's': 1.0, 'ago': 1.0, 'we': 1.0, 'a': 5.0, 'black': 1.0, 'were': 1.0, 'time': 1.0, 'bit': 1.0, 'has': 1.0, 'expected': 1.0, 'chew': 1.0, 'than': 1.0, 'i': 1.0, 'stripes': 1.0, 'is': 1.0}
Word element => {'again': 1.0, 'buy': 1.0, 'and': 1.0, 'i': 1.0, 'the': 1.0, 'my': 1.0, 'loves': 1.0, 'this': 1.0, 'he': 1.0, 'nephew': 1.0, 'would': 1.0, 'hold': 1.0, 'at': 1.0, 'for': 2.0, 'bought': 1.0, 'christmas': 1.0, 'easy': 1.0, 'to': 1.0, 'noise': 1.0, 'him': 1.0}
Word element => {'like': 1.0, 'to': 1.0, 'seems': 1.0, 'daughter': 1.0, 'than': 1.0, 'but': 1.0, 'though': 1.0, 'much': 1.0, 'toy': 1.0, 'fun': 1.0, 'little': 1.0, 'held': 1.0, 'a': 2.0, 'old': 1.0, 'i': 1.0, 's': 2.0, 'it': 3.0, 'month': 1.0, 'realized': 1.0, 'think': 1.0, 'the': 1.0, 'smaller': 1.0, 'my': 1.0, 'size': 1.0, 'of': 1.0, 'hand': 1.0, 'rattle': 1.0, '10': 1.0}
Word element => {'this': 2.0, 'with': 1.0, 'piece': 1.0, 'is': 1.0, 'colorful': 1.0, 'looks': 1.0, 'toys': 1.0, 'sure': 1.0, 'defective': 1.0, 'the': 6.0, '2': 1.0, 'just': 1.0, 'not': 1.0, 'because': 1.0, 'way': 1.0, 'that': 1.0, 'or': 1.0, 'almost': 1.0, 'mine': 1.0, 'rattle': 1.0, 'i': 2.0, 'was': 2.0, 'had': 1.0, 'to': 1.0, 'blaring': 1.0, 'low': 1.0, 'buttons': 1.0, 'sound': 1.0, 'got': 1.0, 'am': 1.0, 'scale': 1.0, 'a': 1.0, 'of': 1.0, '1': 1.0, 'too': 1.0, 'and': 2.0, 'inaudible': 1.0, 'my': 1.0, 'if': 1.0, '10': 1.0, 'toy': 2.0, 'about': 1.0, 'on': 1.0, '3': 1.0, 'stars': 1.0, 'daughters': 1.0, 'still': 1.0, 'played': 1.0}
Word element => {'around': 1.0, 'just': 2.0, 'heat': 1.0, 'bit': 1.0, 'once': 1.0, 'perfectly': 1.0, 'inside': 1.0, 'is': 2.0, 'that': 1.0, 'into': 1.0, 'type': 1.0, 'any': 1.0, 'to': 4.0, 'but': 1.0, 'work': 1.0, 'money': 1.0, 'oz': 1.0, 'only': 1.0, 'could': 1.0, 'a': 4.0, 't': 1.0, 'i': 4.0, 'two': 1.0, 'warmer': 3.0, 'use': 1.0, 'for': 3.0, 'works': 1.0, 'without': 1.0, 'of': 2.0, 'the': 7.0, 'with': 2.0, 'mind': 1.0, 'it': 7.0, 'bottle': 3.0, 'this': 2.0, 'worth': 1.0, 'common': 1.0, 'looking': 1.0, 'bag': 1.0, 'we': 3.0, 'take': 1.0, 'out': 1.0, 'in': 1.0, 'having': 1.0, 'filled': 2.0, 'was': 2.0, 'minutes': 1.0, 'make': 2.0, 'on': 1.0, 'our': 1.0, 'stroller': 1.0, 'throw': 1.0, 'avent': 1.0, 'would': 1.0, 'tight': 1.0, 'when': 3.0, 'you': 2.0, 'boiled': 1.0, 'plug': 1.0, 'sense': 1.0, 'water': 2.0, 'takes': 1.0, '6': 1.0, 'hauling': 1.0, 'sure': 2.0, 'check': 1.0, 'top': 1.0, 'back': 1.0, 'car': 1.0, 'leaks': 1.0, 'before': 1.0, 'diaper': 1.0, 'heavy': 1.0, 'leave': 1.0, 'bottles': 1.0, 'home': 1.0, 'keep': 1.0, 'bottom': 1.0, 'love': 3.0, 'far': 1.0, 'took': 1.0, 'away': 1.0, 'from': 1.0, 'baby': 1.0, 'pouring': 1.0, 'seven': 1.0, 'hour': 1.0, 'and': 4.0, 'trip': 1.0, 'used': 1.0, 'think': 1.0, 'twice': 1.0, 'placing': 1.0, 'hot': 1.0, 'arrived': 1.0, 'still': 1.0, 'if': 1.0, 'don': 1.0}
Word element => {'well': 1.0, 'sheets': 1.0, 'bassinet': 1.0, 'waterproof': 1.0, 'brand': 1.0, 'carter': 1.0, 'some': 2.0, 'needed': 1.0, 'exactly': 1.0, 'for': 1.0, 'fit': 2.0, 'perfect': 1.0, 'this': 1.0, 'found': 2.0, 'amazon': 1.0, 'on': 2.0, 'then': 1.0, 'builtin': 1.0, 'more': 1.0, 'is': 2.0, 'which': 1.0, 'made': 1.0, 'no': 1.0, 'than': 1.0, 'find': 2.0, 'enough': 1.0, 'pad': 4.0, 'able': 1.0, 'convertible': 1.0, 'every': 1.0, 'stand': 1.0, 'i': 11.0, 'new': 1.0, 'would': 1.0, 'frustrating': 1.0, 'with': 2.0, 'first': 2.0, 'covers': 1.0, 'it': 7.0, 'over': 1.0, 'child': 2.0, 'out': 2.0, 'size': 1.0, 'crib': 2.0, 'provide': 1.0, 'even': 1.0, 'didn': 1.0, 'what': 1.0, 'had': 2.0, 'looked': 1.0, 'later': 1.0, 'hunted': 1.0, 'the': 3.0, 'one': 2.0, 'bought': 1.0, 's': 1.0, 'could': 1.0, 't': 1.0, 'a': 4.0, 'padding': 1.0, 'came': 2.0, 'changing': 3.0, 'that': 4.0, 'night': 1.0, 'wore': 1.0, 'my': 4.0, 'convert': 1.0, 'another': 1.0, 'as': 1.0, 'to': 6.0, 'vain': 1.0, 'and': 7.0, 'away': 1.0, 'throw': 1.0, 'station': 2.0, 'after': 1.0, 'born': 1.0, 'have': 1.0, 'little': 1.0, 'very': 1.0, 'grew': 1.0, 'of': 2.0, 'will': 1.0, 'also': 1.0, 'in': 2.0, 'expect': 1.0, 'but': 1.0, 'when': 1.0, 'am': 1.0, 'layer': 1.0, 'outlet': 1.0, 'was': 1.0, '15x28': 1.0, 'store': 1.0}
Word element => {'in': 1.0, 'dresser': 1.0, 'my': 1.0, 'up': 1.0, 'strap': 1.0, 'came': 2.0, 'as': 1.0, 'screwing': 1.0, 'and': 1.0, 'not': 2.0, 'just': 1.0, 'looks': 1.0, 'am': 1.0, 'product': 1.0, 'was': 1.0, 'to': 2.0, 'bad': 1.0, 'i': 1.0, 'pad': 1.0, 'it': 3.0, 'with': 1.0, 'nails': 1.0, 'screws': 1.0, 'by': 1.0, 'too': 1.0, 'attached': 1.0, 'going': 1.0, 'holes': 1.0, 'the': 3.0, 'mess': 1.0}
Word element => {'toy': 1.0, 'this': 1.0, 'loves': 1.0, 'one': 1.0, 'little': 1.0, 'my': 1.0}
Word element => {'having': 1.0, 'on': 1.0, 'now': 1.0, 'from': 1.0, 'clean': 1.0, 'only': 1.0, 'one': 1.0, 'exchanged': 1.0, 'return': 1.0, 'such': 1.0, 'amazon': 1.0, 'so': 1.0, 'policy': 1.0, 'gripping': 1.0, 'near': 1.0, 'nice': 1.0, 'seemed': 1.0, 'look': 1.0, 'wipe': 1.0, 'baby': 1.0, '8': 1.0, 'is': 2.0, 'giving': 1.0, 'rinse': 1.0, 'soap': 1.0, 'to': 6.0, 'stars': 1.0, 'for': 3.0, 'directions': 1.0, 'water': 5.0, '5': 1.0, 'under': 1.0, 'she': 1.0, 'it': 9.0, 'followed': 1.0, 'seconds': 1.0, 'stimulating': 1.0, 'the': 9.0, 'going': 1.0, 'a': 3.0, 's': 1.0, 't': 1.0, 'running': 2.0, 'my': 2.0, 'off': 1.0, 'placed': 1.0, 'since': 2.0, 'at': 1.0, 'crack': 2.0, 'awesome': 1.0, 'girl': 1.0, 'manufacture': 1.0, 'getting': 1.0, 'cleaning': 1.0, '4': 1.0, 'i': 6.0, 'like': 2.0, 'hairdryer': 1.0, 'and': 6.0, 'couldn': 1.0, 'get': 2.0, 'both': 1.0, 'got': 1.0, 'even': 2.0, 'cute': 1.0, 'ends': 1.0, 'handle': 1.0, 'allowed': 1.0, 'over': 1.0, 'of': 1.0, 'has': 2.0, 'toy': 1.0, 'new': 1.0, 'super': 1.0, 'boo': 1.0, 'found': 1.0, 'textured': 1.0, 'in': 2.0, 'also': 2.0, 'reason': 1.0, 'plastic': 1.0, 'avoid': 1.0, 'into': 2.0, 'that': 2.0, 'week': 1.0, 'dry': 1.0, 'ran': 1.0, 'when': 1.0, 'am': 2.0}
Word element => {'beats': 1.0, 'much': 1.0, 'the': 2.0, 'not': 2.0, 'baby': 1.0, 'broke': 1.0, 'loves': 1.0, 'it': 3.0, 'color': 1.0, 'around': 1.0, 'he': 1.0, 'has': 2.0, 'faded': 1.0, 'and': 1.0, 'as': 2.0}
Word element => {'that': 1.0, 'first': 1.0, 'my': 1.0, 'the': 1.0, 'neat': 1.0, 'it': 1.0, 'little': 1.0, 'baby': 1.0, 'very': 2.0, 'and': 1.0, 'rattle': 1.0, 'colorful': 1.0, 'hold': 1.0, 'was': 1.0, 'grabbed': 1.0, 'grandbaby': 1.0, 'one': 1.0, 'toys': 1.0, 'of': 2.0}
Word element => {'after': 1.0, 'helps': 1.0, 'this': 1.0, 'and': 2.0, 'lower': 1.0, 'calves': 1.0, 'on': 1.0, 'tool': 2.0, 'use': 1.0, 'easy': 1.0, 'muscles': 1.0, 'works': 1.0, 'stick': 1.0, 'the': 1.0, 'lossen': 1.0, 'great': 1.0, 'to': 1.0, 'several': 1.0, 'good': 1.0, 'week': 1.0, 'back': 1.0, 'for': 1.0, 'runners': 1.0, 'massage': 1.0, 'i': 1.0, 'run': 2.0, 'days': 1.0, 'well': 1.0, 'a': 2.0}
Word element => {'babies': 1.0, 'and': 1.0, 'infants': 1.0, 'grab': 1.0, 'is': 1.0, 'this': 1.0, 'little': 1.0, 'rattle': 1.0, 'great': 1.0, 'love': 1.0, 'it': 1.0, 'perfect': 1.0, 'for': 2.0, 'hands': 1.0, 'toy': 1.0, 'tiny': 1.0, 'to': 1.0}
Word element => {'too': 1.0, 'at': 1.0, 'great': 1.0, 'around': 1.0, 'grab': 1.0, 'her': 1.0, 'and': 2.0, 'is': 2.0, 'a': 1.0, 'my': 1.0, 'small': 1.0, '9mo': 1.0, 'to': 2.0, 'old': 1.0, 'perfect': 1.0, 'shake': 1.0, 'this': 1.0, 'look': 1.0, 'daughter': 1.0, 'for': 1.0}
Word element => {'delivery': 1.0, 'buy': 1.0, 'at': 1.0, 'closely': 1.0, 'fascinate': 1.0, 'workings': 1.0, 'internal': 1.0, 'the': 1.0, 'wants': 1.0, 'on': 1.0, 'grip': 1.0, 'for': 1.0, 'lovely': 1.0, 'also': 1.0, 'in': 1.0, 'fast': 1.0, 'beautiful': 1.0, 'plaything': 1.0, 'my': 1.0, 'so': 1.0, 'small': 1.0, 'little': 1.0, 'all': 1.0, 'able': 1.0, 'looks': 1.0, 'is': 2.0, 'it': 3.0, 'this': 1.0, 'fits': 1.0, 'as': 3.0, 'very': 3.0, 'a': 2.0, 'well': 1.0, 'visual': 1.0, 'long': 1.0, 'her': 2.0, 'she': 3.0, 'hands': 1.0, 'granddaughter': 1.0, 'to': 1.0, 'keep': 1.0, 'good': 2.0}
Word element => {'annoying': 1.0, 'not': 1.0, 'keeps': 1.0, 'like': 1.0, 'and': 1.0, 'newborn': 1.0, 'my': 1.0, 's': 2.0, 'rattles': 1.0, 'i': 1.0, 'attention': 1.0, 'a': 2.0, 'her': 1.0, 'price': 1.0, 'cute': 1.0, 'rattle': 1.0, 'for': 2.0, 'it': 3.0, 'great': 1.0, 'bought': 1.0, 'other': 1.0, 'this': 1.0}
Word element => {'and': 1.0, 'constructed': 1.0, 'well': 1.0, 'ratlle': 1.0, 'riny': 1.0, 'can': 1.0, 'toy': 1.0, 'in': 1.0, 'perfect': 1.0, 'first': 1.0, 'it': 2.0, 'this': 1.0, 'of': 1.0, 'avail': 1.0, 'safe': 1.0, 'no': 1.0, 'for': 2.0, 'amazon': 1.0, 'course': 1.0, 'hunting': 1.0, 'reached': 1.0, 'i': 3.0, 'old': 2.0, 'be': 2.0, 'tiny': 1.0, 'months': 1.0, 'fashioned': 1.0, 'grandson': 2.0, 'fcat': 1.0, 'my': 2.0, 'infants': 1.0, '2': 1.0, 'the': 2.0, 'turned': 1.0, 'to': 2.0, 'was': 2.0, 'rattle': 1.0, 'that': 1.0, 'could': 1.0, 'easily': 2.0, 'found': 1.0, 'held': 3.0, 'where': 1.0, 'when': 1.0, 'by': 2.0, 'hands': 2.0}
Word element => {'your': 1.0, 'would': 1.0, 'in': 1.0, 'interested': 1.0, 'her': 3.0, 'see': 1.0, 'took': 1.0, 'a': 1.0, 'we': 2.0, 'design': 1.0, 'when': 1.0, 'girl': 1.0, 'baby': 2.0, 'colors': 1.0, 'ended': 1.0, 'another': 1.0, 'my': 1.0, 'to': 3.0, 'recommend': 1.0, 'was': 1.0, 'hold': 1.0, 'house': 1.0, 'it': 5.0, 'buying': 1.0, 'with': 1.0, 'first': 1.0, 'great': 1.0, 'infants': 1.0, 'the': 2.0, 'easy': 2.0, 'especially': 1.0, 'and': 3.0, 'for': 2.0, 'liked': 1.0, 'one': 1.0, 'little': 1.0, 'definitely': 1.0, 'ever': 1.0, 'friends': 1.0, 'boy': 1.0, 'so': 1.0, 'much': 1.0, 'up': 1.0, 'him': 1.0, 'leaving': 1.0, 'friend': 1.0, 'had': 1.0, 'commented': 1.0, 'loves': 1.0, 'been': 1.0, 'that': 2.0, 'rattle': 1.0, 'son': 1.0}
Word element => {'book': 1.0, 'in': 1.0, '5': 1.0, 'merits': 1.0, 'automatically': 1.0, 'an': 1.0, 'stars': 1.0, 'for': 1.0, 'are': 1.0, 'toys': 1.0, 'they': 1.0, 'there': 2.0, 'telephone': 1.0, '18': 1.0, 'bf': 1.0, 'problem': 1.0, 'no': 1.0, 'with': 2.0, 'fun': 1.0, 'onto': 1.0, 'hangs': 1.0, 'months': 1.0, 'that': 2.0, 'presented': 1.0, 'old': 2.0, 'so': 1.0, 'time': 1.0, 'month': 1.0, 'it': 4.0, 'this': 2.0, 'he': 5.0, 'first': 1.0, 'look': 1.0, 'was': 2.0, 'to': 4.0, 'its': 1.0, 'attention': 1.0, 'easiest': 1.0, 'really': 1.0, 'who': 1.0, 'at': 1.0, 'each': 1.0, 'would': 1.0, '18mo': 1.0, '2mo': 1.0, 'others': 1.0, 'likes': 1.0, 'has': 1.0, 'toy': 2.0, 'focused': 1.0, 'baby': 1.0, 'get': 1.0, 'play': 1.0, 'consistently': 1.0, 'and': 3.0, 'out': 1.0, 'couple': 2.0, 'the': 4.0, 'my': 3.0, 'on': 1.0, 'visit': 1.0, 'black': 1.0, 't': 1.0, 's': 2.0, 'we': 1.0, 'a': 4.0, 'white': 1.0, 'bullseye': 1.0, 'seemed': 1.0, 'like': 1.0, 'sound': 1.0, 'when': 2.0, 'just': 1.0, 'not': 1.0, 'of': 2.0, 'many': 1.0, 'bulkier': 1.0, 'now': 1.0, 'weeks': 1.0, 'aren': 1.0, '2': 1.0, 'but': 1.0, 'grasp': 1.0, 'little': 1.0, 'than': 1.0}
Word element => {'rattle': 1.0, 'this': 1.0, 'not': 1.0, 'plays': 1.0, 'everything': 1.0, 'my': 2.0, '7': 1.0, 'it': 1.0, 'month': 1.0, 'old': 1.0, 'never': 1.0, 'about': 1.0, 'has': 1.0, 'had': 1.0, 'gums': 1.0, 'with': 1.0, 'son': 1.0, 'on': 1.0, 'his': 1.0, 'just': 1.0}
Word element => {'picture': 1.0, 'in': 1.0, 'it': 2.0, 'pacifier': 1.0, 'was': 2.0, 'above': 1.0, 'different': 1.0, 'the': 2.0, 'correct': 1.0, 'shaped': 1.0, 'than': 1.0, 'but': 1.0, 'with': 1.0, 'shown': 1.0, 'what': 1.0, 'came': 1.0, 'colors': 1.0}
Word element => {'brand': 1.0, 'like': 1.0, 'looking': 1.0, 'back': 1.0, 'comes': 1.0, 'washes': 1.0, 'wife': 1.0, 'new': 1.0, 'time': 1.0, 'there': 1.0, 'worth': 1.0, 'have': 2.0, 'literally': 1.0, 'face': 1.0, 'but': 1.0, 'organic': 1.0, 'stuffed': 1.0, 'loves': 1.0, 'everywhere': 2.0, 'that': 1.0, 'filled': 1.0, 'been': 1.0, 'being': 1.0, 'every': 1.0, 'if': 1.0, 'felt': 2.0, 'it': 12.0, 'is': 6.0, 'know': 1.0, 'with': 4.0, 'this': 5.0, 'soft': 2.0, 'we': 2.0, 'a': 3.0, 's': 2.0, 'thrown': 1.0, 'don': 1.0, 'up': 1.0, 'toy': 3.0, 'always': 1.0, 'has': 1.0, 'our': 2.0, 'as': 1.0, 'stays': 1.0, 'be': 1.0, 'and': 6.0, 'anyone': 1.0, 'my': 4.0, 'entire': 1.0, 'in': 2.0, 'for': 2.0, 'expensive': 1.0, 'got': 1.0, 'rubs': 1.0, 'even': 1.0, 'ever': 2.0, 'or': 1.0, 'world': 1.0, 'goes': 1.0, 'weight': 1.0, 'coarse': 1.0, 'cuddle': 1.0, 'received': 1.0, 'us': 1.0, 'mom': 1.0, 'from': 2.0, 'son': 4.0, 'softest': 2.0, 'd': 1.0, 'well': 1.0, 'i': 4.0, 'etc': 1.0, 'sort': 1.0, 'the': 6.0, 'of': 1.0, 'material': 2.0, 'enough': 1.0, 'gives': 1.0, 'you': 1.0, 'just': 1.0, 't': 1.0, 'rest': 1.0, 'plush': 1.0, 'skin': 1.0, 'recommend': 1.0, 'though': 1.0, 'plus': 1.0, 'little': 1.0, 'on': 4.0, 'gift': 1.0, 'side': 1.0, 'so': 1.0, 've': 1.0, 'some': 2.0, 'never': 2.0, 'his': 2.0, 'worry': 1.0, 'legs': 1.0, 'get': 1.0, 'what': 1.0, 'when': 1.0, 'scratched': 1.0, 'irritated': 1.0, 'going': 1.0, 'taken': 1.0, 'dropped': 1.0, 'to': 3.0, 'stepped': 1.0, 'kicked': 1.0}
Word element => {'as': 1.0, 'or': 1.0, 'cheaper': 1.0, 'bunch': 1.0, 'get': 1.0, 'europe': 1.0, 'doesn': 1.0, 'was': 1.0, 'recommend': 1.0, 'from': 1.0, 't': 4.0, 'a': 6.0, 'comes': 1.0, 'more': 1.0, 'dog': 3.0, 'can': 1.0, 'so': 1.0, 'if': 2.0, 'wash': 1.0, 'her': 1.0, 'is': 7.0, 'at': 1.0, 'super': 2.0, 've': 1.0, 'new': 1.0, 'some': 1.0, 'into': 1.0, 'in': 1.0, 'm': 1.0, 'd': 1.0, 'daughter': 1.0, 'china': 1.0, 'fabric': 1.0, 'for': 5.0, 'expensive': 1.0, 'product': 1.0, 'stuffed': 3.0, 'not': 2.0, 'than': 1.0, 'huge': 1.0, 'and': 5.0, 'it': 4.0, 'she': 1.0, 'newborn': 1.0, 'out': 1.0, 'my': 1.0, 'irritated': 1.0, 'noticed': 1.0, 'animals': 2.0, 'soft': 5.0, 'rubbed': 1.0, 'made': 4.0, 'their': 1.0, 'quality': 1.0, 'completely': 1.0, 'face': 1.0, 'either': 1.0, 'fur': 1.0, 'the': 3.0, 'of': 3.0, 'all': 1.0, 'even': 3.0, 'shed': 2.0, 'durable': 1.0, 'aren': 1.0, 'fuzzy': 1.0, 'don': 1.0, 'up': 1.0, 'know': 1.0, 'hand': 2.0, 'rather': 1.0, 'like': 1.0, 'how': 2.0, 'little': 1.0, 'but': 1.0, 'organic': 2.0, 'bought': 1.0, 'describe': 1.0, 'money': 1.0, 'nearly': 1.0, 'toy': 2.0, 'them': 3.0, 'has': 1.0, 'i': 9.0, 'well': 2.0, 'since': 1.0, 'washed': 1.0, 'your': 1.0, 'think': 1.0, 'definitely': 1.0, 'looking': 2.0, 'worth': 1.0, 'lot': 1.0, 'one': 2.0, 'held': 1.0, 'that': 4.0, 'because': 1.0, 'by': 1.0, 'times': 1.0, 'you': 1.0, 'especially': 1.0, 're': 1.0, 'kid': 1.0, 'this': 6.0, 'few': 1.0, 'highly': 1.0, 'really': 1.0, 'pay': 1.0, 'against': 1.0, 'to': 1.0, 'high': 1.0}
Word element => {'baby': 1.0, 'essentials': 1.0, 'bare': 1.0, 'house': 1.0, 'out': 1.0, 'run': 1.0, 'quick': 1.0, 'is': 3.0, 'thermos': 1.0, 'have': 2.0, 'zipper': 1.0, 'medium': 1.0, 'theme': 1.0, 'bottles': 2.0, 'or': 1.0, 'before': 1.0, 'room': 1.0, 'reviews': 1.0, 'there': 3.0, 'reading': 1.0, 'very': 2.0, 'from': 1.0, 'stick': 1.0, 'sized': 1.0, 'that': 3.0, 'because': 2.0, 'smaller': 1.0, 'know': 1.0, 'bit': 1.0, 'than': 1.0, 'way': 2.0, 'maybe': 1.0, 's': 4.0, 'going': 1.0, 'small': 1.0, 'a': 7.0, 'disappointed': 1.0, 'but': 3.0, 'so': 1.0, 'can': 2.0, 'precious': 1.0, 'thought': 1.0, 'it': 10.0, 'on': 2.0, 'just': 1.0, 'stuff': 1.0, 'am': 1.0, 'beside': 1.0, 'when': 1.0, 'blankets': 1.0, 'you': 3.0, 'expected': 1.0, 'bag': 7.0, 'got': 1.0, 'removable': 1.0, 'loved': 1.0, 'i': 10.0, 'ordered': 1.0, 'height': 1.0, 'probably': 1.0, 'rags': 1.0, 'planet': 1.0, 'and': 5.0, 'tall': 1.0, 'colors': 1.0, 'plus': 2.0, 'with': 2.0, 'elastic': 1.0, 'liter': 1.0, 'this': 1.0, 'now': 1.0, 'was': 2.0, 'pouch': 1.0, 'inside': 4.0, 'three': 1.0, 'rings': 1.0, 'will': 1.0, 'fp': 1.0, 'for': 5.0, 't': 1.0, 'fit': 1.0, 'the': 11.0, 'longer': 1.0, 'of': 2.0, 'get': 1.0, 'pad': 1.0, 'not': 2.0, 'if': 1.0, 'regular': 1.0, '1': 1.0, 'nice': 1.0, 'to': 2.0, 'side': 1.0, 'be': 1.0, 'changing': 1.0, 'much': 3.0, 'pack': 1.0, 'no': 2.0, 'clothing': 1.0, 'really': 2.0, 'feeding': 1.0, 'items': 1.0, 'after': 1.0, 'an': 1.0, 'everyday': 1.0, 'diaper': 1.0}
Word element => {'kitchen': 1.0, 'pack': 1.0, 'everything': 1.0, 'want': 1.0, 'mom': 1.0, 'around': 1.0, 'is': 2.0, 'who': 1.0, 'lot': 1.0, 'doesn': 1.0, 'recommend': 1.0, 'daughter': 1.0, 'her': 1.0, 'does': 1.0, 'and': 3.0, 'up': 2.0, 'of': 4.0, 'my': 1.0, 'the': 4.0, 'diaper': 1.0, 'title': 1.0, 'bag': 3.0, 'review': 1.0, 'lit': 1.0, 'for': 2.0, 'bought': 1.0, 'one': 1.0, 'lots': 1.0, 'sink': 1.0, 'saw': 1.0, 'this': 3.0, 'eyes': 1.0, 'kind': 1.0, 'very': 1.0, 'big': 1.0, 'sums': 1.0, 'she': 1.0, 'it': 3.0, 'colorful': 1.0, 'fun': 2.0, 'hold': 1.0, 't': 1.0, 'a': 1.0, 'that': 1.0, 'baby': 1.0, 'really': 1.0, 'highly': 1.0, 'as': 1.0, 'to': 3.0, 'all': 1.0, 'any': 1.0, 'not': 1.0, 'so': 1.0, 'when': 1.0, 'hurt': 1.0, 'stuff': 1.0, 'your': 1.0, 'but': 1.0, 'shoulder': 1.0}
Word element => {'first': 1.0, 'happens': 1.0, 'second': 1.0, 'purchasing': 1.0, 'warfare': 1.0, 'many': 1.0, 'is': 1.0, 'washed': 1.0, 'of': 1.0, 'case': 1.0, 'been': 1.0, 'didn': 1.0, 'am': 1.0, 'times': 1.0, 'seen': 1.0, 'item': 1.0, 'are': 1.0, 'the': 4.0, 'after': 1.0, 'opted': 1.0, 'and': 4.0, 'toddler': 1.0, 'lovey': 1.0, 'bowtie': 1.0, 'attached': 1.0, 'has': 2.0, 'well': 1.0, 'we': 1.0, 't': 1.0, 'a': 2.0, 'large': 1.0, 'version': 1.0, 'securely': 1.0, 'loved': 1.0, 'feel': 1.0, 'small': 1.0, 'have': 1.0, 'this': 1.0, 'still': 1.0, 'in': 2.0, 'wash': 1.0, 'nearly': 1.0, 'something': 1.0, 'new': 2.0, 'they': 1.0, 'condition': 1.0, 'looks': 1.0, 'it': 2.0, 'remove': 1.0, 'brand': 1.0, 'i': 3.0, 'to': 2.0, 'was': 1.0, 'because': 1.0}
Word element => {'an': 1.0, 'keeping': 1.0, 'not': 1.0, 'youre': 1.0, 'or': 1.0, 'away': 1.0, 'take': 1.0, 'use': 1.0, 'when': 2.0, 'you': 1.0, 'feel': 1.0, 'blankies': 1.0, 'has': 1.0, 'just': 2.0, 'so': 3.0, 'young': 1.0, 'i': 3.0, 'absolutely': 1.0, 'cute': 1.0, 'soft': 1.0, 'this': 3.0, 'one': 3.0, 'bought': 1.0, 'buy': 1.0, 'blue': 1.0, 'your': 1.0, 'on': 1.0, 'put': 1.0, 'and': 3.0, 'precious': 1.0, 'it': 5.0, 'she': 1.0, 'ahead': 1.0, 'baby': 3.0, 'several': 1.0, 'about': 1.0, 'alone': 1.0, 'with': 1.0, 'pink': 1.0, 'adorable': 1.0, 'other': 1.0, 'loves': 1.0, 'in': 1.0, 'asleep': 1.0, 'the': 3.0, 'ones': 1.0, 'these': 1.0, 'is': 2.0, 'falls': 1.0, 'leave': 1.0, 'eye': 1.0, 'although': 1.0, 'something': 1.0, 'their': 1.0, 'there': 2.0, 'wouldnt': 1.0, 'go': 1.0, 'might': 1.0, 'a': 1.0, 'but': 2.0, 'can': 2.0, 'over': 1.0, 'mouth': 1.0, 'even': 1.0, 'danger': 1.0, 'they': 1.0, 'cause': 1.0}
Word element => {'with': 1.0, 'pleased': 1.0, 'the': 2.0, 'diaper': 2.0, 'way': 1.0, 'durable': 1.0, 'beautiful': 1.0, 'i': 4.0, 'cloth': 1.0, 'waited': 1.0, 'compared': 1.0, 'this': 2.0, 'functional': 1.0, 'don': 1.0, 'pleasantly': 1.0, 'and': 2.0, 'know': 1.0, 'why': 1.0, 'adorable': 1.0, 'caddy': 1.0, 'long': 1.0, 'so': 1.0, 'liner': 1.0, 'to': 2.0, 'had': 2.0, 'purchase': 2.0, 'then': 1.0, 'also': 1.0, 'seems': 1.0, 've': 1.0, 'apart': 1.0, 'pretty': 1.0, 'some': 1.0, 'others': 1.0, 't': 1.0, 's': 1.0, 'we': 1.0, 'been': 1.0, 'basket': 1.0, 'that': 1.0, 'it': 2.0, 'fell': 1.0, 'more': 1.0, 'is': 1.0, 'holds': 1.0, 'expected': 1.0, 'overall': 1.0, 'have': 1.0, 'surprised': 1.0}
Word element => {'wash': 1.0, 'than': 1.0, 'significantly': 1.0, 'shrink': 1.0, 'do': 1.0, 'ones': 1.0, 'though': 1.0, 'heat': 1.0, 'so': 1.0, 'zips': 1.0, 'could': 1.0, 'in': 2.0, 'nights': 2.0, 'remove': 1.0, 'spring': 1.0, 'great': 2.0, 'nice': 1.0, 'serves': 1.0, 'different': 2.0, 'when': 2.0, 'barely': 1.0, 'halo': 1.0, 'the': 11.0, 'of': 2.0, 'wore': 1.0, 'quality': 1.0, 'year': 2.0, 'around': 1.0, 'his': 2.0, 'almost': 1.0, 'lighter': 1.0, 'times': 1.0, 'middle': 1.0, 'more': 2.0, 'changes': 1.0, '1': 1.0, 'sacks': 2.0, 'options': 1.0, 'fleece': 2.0, 'cotton': 3.0, 'it': 1.0, 'him': 1.0, 'breathable': 1.0, 'brand': 1.0, 'makes': 1.0, 'me': 1.0, 'my': 1.0, 'running': 1.0, 'a': 2.0, 'small': 1.0, 'zipper': 1.0, 'are': 2.0, 'zip': 2.0, 'blanket': 1.0, 'sack': 2.0, 'excellent': 1.0, 'warm': 1.0, 'had': 1.0, 'was': 2.0, 'xl': 1.0, 'and': 9.0, 'moved': 1.0, 'this': 1.0, 'i': 4.0, 'fabric': 1.0, 'for': 2.0, 'sad': 1.0, 'fall': 1.0, 'because': 1.0, 'that': 3.0, 'into': 1.0, 'there': 1.0, 'to': 3.0, 'high': 1.0, 'notice': 2.0, 'at': 1.0, 'top': 1.0, 'exclusively': 1.0, 'sleep': 4.0, 'back': 1.0, 'down': 1.0, 'diaper': 3.0, 'cinch': 1.0, 'halfway': 1.0, 'both': 1.0, 'half': 1.0, 'carefully': 1.0, 'up': 1.0, 'change': 2.0, 'take': 1.0, 'we': 1.0, 'then': 1.0, 'memory': 1.0, 'right': 1.0, 'some': 1.0, 'these': 1.0, 'love': 2.0, 'bottom': 1.0, 'he': 3.0, 'summer': 1.0, 'would': 1.0, 'son': 1.0, 'stayed': 1.0, 'from': 1.0, 'outgrew': 1.0, 'on': 1.0, 'night': 1.0, 'starts': 1.0, 'things': 1.0, 'if': 1.0}
Word element => {'well': 1.0, 'up': 1.0, 'washes': 1.0, 'it': 1.0, 'too': 1.0, 'two': 1.0, 'ordered': 1.0, 'i': 1.0, 'have': 1.0, 'this': 1.0, 'blanket': 1.0, 'perfect': 1.0, 'is': 2.0, 'the': 1.0, 'should': 1.0, 'light': 1.0, 'cute': 1.0, 'cotton': 1.0, 'for': 1.0, 'weight': 1.0, 'naptime': 1.0}
Word element => {'swimming': 1.0, 'look': 1.0, 'just': 1.0, 'applique': 1.0, 'owl': 1.0, 'someday': 1.0, 'cute': 1.0, 'super': 1.0, 'in': 1.0, 'itself': 1.0, 'its': 1.0, 'to': 3.0, 'and': 1.0, 'get': 1.0, 'up': 1.0, '6': 2.0, 'from': 1.0, 'range': 3.0, 'big': 1.0, 'so': 1.0, 'not': 1.0, 'kinda': 2.0, 'of': 2.0, 'halo': 1.0, 'forward': 1.0, 'size': 3.0, 'daughter': 1.0, 'sleepsack': 1.0, 'huge': 2.0, 'decided': 1.0, 'months': 1.0, '12': 1.0, 'they': 1.0, 'on': 1.0, 'your': 1.0, 'is': 3.0, 'growing': 1.0, 'wish': 1.0, 'her': 3.0, 'out': 1.0, 'made': 1.0, 'the': 4.0, 'my': 1.0, 'though': 1.0, 'i': 2.0, 'it': 2.0, '9': 1.0, 'instead': 1.0, 'we': 1.0, 'a': 2.0, 's': 1.0, 'small': 1.0, 'have': 1.0, 'baby': 1.0, 'next': 1.0, 'that': 1.0, 'into': 1.0, 'love': 1.0, 'fit': 1.0, 'product': 1.0}
Word element => {'cute': 1.0, 'a': 1.0, 'such': 1.0, 'owl': 1.0, 'sleeping': 1.0, 'summer': 1.0, 'i': 1.0, 'it': 2.0, 'perfect': 1.0, 'purchased': 1.0, 'loves': 1.0, 'this': 1.0, 'design': 1.0, 'for': 2.0, 'the': 1.0, 'my': 1.0, 'granddaughter': 1.0, 'is': 2.0, 'she': 1.0}
Word element => {'75ish': 1.0, '74': 1.0, 'at': 2.0, 'house': 1.0, 'kick': 1.0, 'to': 1.0, 'able': 1.0, 'night': 2.0, 'isn': 1.0, 'enough': 1.0, 'summer': 1.0, 'son': 1.0, 'my': 1.0, 'jammies': 1.0, 'the': 1.0, 't': 1.0, 'keeps': 1.0, 'keep': 1.0, 'with': 1.0, 'he': 1.0, 'it': 1.0, 'or': 1.0, 'off': 1.0, 'light': 1.0, 'for': 1.0, 'about': 1.0, 'footed': 1.0, 'warm': 1.0, 'underneath': 1.0, 'we': 1.0}
Word element => {'re': 1.0, 'them': 1.0, 'unzipping': 1.0, 'then': 1.0, 'little': 2.0, 's': 1.0, 'older': 1.0, 'he': 1.0, 'it': 1.0, 'not': 1.0, 'feet': 1.0, 'is': 1.0, 'so': 1.0, 'his': 2.0, 'down': 1.0, 'fingers': 1.0, 'had': 1.0, 'baby': 1.0, 'another': 1.0, 'blankets': 1.0, 'and': 3.0, 'from': 1.0, 'best': 2.0, 'brand': 1.0, 'they': 3.0, 'keeps': 2.0, 'are': 2.0, 'we': 1.0, 'wearable': 1.0, 'when': 2.0, 'by': 2.0, 'face': 1.0, 'far': 1.0, 've': 1.0, 'wash': 1.0, 'that': 1.0, 'forever': 1.0, 'these': 2.0, 'the': 3.0, 'great': 1.0, 'comfortable': 1.0, 'love': 1.0, 'last': 1.0, 'zipper': 1.0, 'but': 1.0, 'zip': 1.0}
Word element => {'know': 1.0, 'accident': 1.0, 'an': 1.0, 'mean': 1.0, 'there': 1.0, 'once': 1.0, 'have': 1.0, 'heavy': 1.0, 'many': 1.0, 'is': 3.0, 'summer': 1.0, 'so': 1.0, 'buying': 1.0, 'heated': 1.0, 'soft': 1.0, 'this': 1.0, 'it': 2.0, 'held': 1.0, 'baby': 1.0, 'washes': 1.0, 'up': 1.0, 'and': 2.0, 'well': 2.0, 'temperature': 1.0, 'uses': 1.0, 'after': 1.0, 'tucking': 1.0, 'love': 1.0, 'for': 2.0, 'what': 1.0, 'had': 1.0, 'suggest': 1.0, 'cotton': 1.0, 'him': 1.0, 'case': 1.0, 'into': 1.0, 'enough': 2.0, 'room': 1.0, 'just': 1.0, 'light': 1.0, 'want': 1.0, 'if': 2.0, 'keep': 1.0, 'you': 4.0, 'low': 1.0, 'in': 3.0, 'winter': 1.0, 'a': 1.0, 'might': 1.0, 'would': 1.0, 'something': 1.0, 'the': 3.0, 'heavier': 1.0, 'all': 2.0, 'i': 3.0, 'two': 1.0}
Word element => {'purchase': 1.0, 'more': 1.0, 'there': 1.0, 'too': 1.0, 'naps': 1.0, 'light': 1.0, 'summer': 1.0, 'i': 2.0, 'great': 1.0, 'were': 1.0, 'it': 1.0, 'sack': 1.0, 'patterns': 1.0, 'wish': 1.0, 'for': 2.0, 'temperatures': 1.0, 'and': 1.0, 'sleep': 1.0, 'perfect': 1.0, 'use': 1.0}
Word element => {'him': 1.0, 'overly': 1.0, 'room': 1.0, 'has': 1.0, 'still': 1.0, 'on': 2.0, 'right': 1.0, 'size': 1.0, 'perfect': 1.0, 'to': 1.0, 'was': 2.0, 'fit': 1.0, 'grow': 1.0, 'month': 1.0, 'not': 1.0, 'basket': 1.0, 'is': 2.0, 'for': 1.0, 'old': 1.0, 'into': 1.0, 'sleep': 1.0, 'it': 2.0, 'he': 1.0, 'this': 1.0, 'our': 1.0, 'neatly': 1.0, 'bought': 1.0, 'sack': 1.0, 'we': 1.0, 'big': 1.0, 'son': 1.0, 'as': 1.0, 'easter': 1.0, 'but': 1.0, 'quality': 1.0, 'his': 1.0, 'part': 1.0, 'packaged': 1.0, '6': 1.0, 'of': 1.0, 'chart': 1.0, 'great': 1.0, 'the': 1.0}
Word element => {'fall': 1.0, 'of': 2.0, 'child': 1.0, 'out': 1.0, 'wiggle': 1.0, 'baby': 1.0, 'your': 2.0, 'so': 1.0, 'can': 1.0, 'size': 1.0, 'and': 1.0, 'huge': 1.0, 'purchased': 1.0, 'sack': 1.0, 'smaller': 2.0, 't': 1.0, 'requirements': 1.0, 'the': 2.0, 'according': 1.0, 'off': 1.0, 'or': 1.0, 'sleep': 1.0, 'i': 3.0, 'first': 1.0, 'it': 4.0, 'ordering': 1.0, 'weight': 1.0, 'would': 1.0, 'to': 2.0, 'was': 1.0, 'had': 1.0, 'one': 2.0, 'for': 1.0, 'return': 1.0, 'a': 1.0, 'recommend': 1.0}
Word element => {'luck': 1.0, 'have': 1.0, 'will': 1.0, 'other': 1.0, 'use': 1.0, 'got': 1.0, 'really': 1.0, 'so': 1.0, 'get': 1.0, 'never': 2.0, 'kick': 1.0, 'in': 2.0, 'times': 1.0, 'my': 1.0, 'tried': 1.0, 'putting': 1.0, 'able': 1.0, 'moms': 1.0, 'and': 2.0, 'couldn': 1.0, 'several': 1.0, 'i': 3.0, 'two': 1.0, 'night': 1.0, 'quality': 1.0, 'baby': 1.0, 'maybe': 1.0, 'because': 3.0, 'give': 1.0, 'not': 1.0, 'just': 1.0, 'resulted': 1.0, 'stars': 1.0, 'this': 2.0, 'swaddling': 1.0, 'pretty': 1.0, 'better': 2.0, 'move': 1.0, 'cute': 1.0, 'worked': 1.0, 'it': 4.0, 'she': 2.0, 'was': 1.0, 'sleep': 1.0, 'to': 3.0, 'bad': 1.0, 'unable': 1.0, 'feet': 1.0, 'good': 1.0, 'her': 3.0, 'is': 1.0, 'around': 2.0, 'being': 1.0, 'off': 1.0, 'legs': 1.0, 'frustrated': 1.0, 'a': 1.0, 's': 1.0, 't': 1.0}
Word element => {'quickly': 1.0, 'is': 1.0, 'large': 1.0, 'not': 1.0, 'size': 2.0, 'or': 1.0, 'medium': 2.0, 'use': 1.0, 'own': 1.0, '3': 1.0, 'now': 1.0, 'us': 1.0, 'uncomfortable': 1.0, 'because': 2.0, 'registry': 1.0, 'material': 1.0, 'fleece': 1.0, 'cotton': 1.0, 'be': 2.0, 'this': 1.0, 'better': 1.0, 'been': 1.0, 'face': 1.0, 'small': 1.0, 'have': 3.0, 'zipper': 1.0, 'rather': 1.0, 'of': 3.0, 'useless': 1.0, 'it': 4.0, 'with': 1.0, 'excited': 1.0, 'all': 1.0, 'as': 1.0, 'to': 6.0, 'suggest': 1.0, 'had': 1.0, 'due': 1.0, 'wanted': 1.0, 'birth': 1.0, 'about': 1.0, 'excitement': 1.0, 'baby': 1.0, 'product': 1.0, 'for': 4.0, 'version': 1.0, 'like': 1.0, 'using': 1.0, 'can': 1.0, 'but': 1.0, 'was': 3.0, 'doesn': 1.0, 'the': 9.0, 'these': 2.0, 'holes': 1.0, 'purchase': 1.0, 'exclusively': 1.0, 'my': 2.0, 'i': 6.0, 'flexibility': 1.0, 'two': 1.0, 'features': 1.0, 'girl': 1.0, 'get': 2.0, 'and': 4.0, 'different': 1.0, 'her': 3.0, 'hard': 1.0, 'from': 1.0, 'part': 2.0, 'little': 2.0, 'would': 3.0, 'allow': 1.0, 'both': 1.0, 'arms': 1.0, 'in': 1.0, 'also': 1.0, 'update': 1.0, 'out': 1.0, 'same': 1.0, 'if': 1.0, 't': 1.0, 'a': 3.0, 'shirt': 1.0, 'outgrown': 1.0, 'seen': 1.0, 'when': 1.0, 'touch': 1.0, 'pick': 1.0, 'up': 1.0, 'problems': 1.0, 'metal': 1.0}
Word element => {'5': 1.0, 'give': 1.0, 'change': 1.0, 'diaper': 1.0, 'easy': 1.0, 'onesie': 1.0, 'long': 1.0, 'convenient': 1.0, 'fast': 1.0, 'during': 1.0, 'and': 3.0, 'uneasy': 1.0, 'very': 2.0, 'f': 1.0, 'he': 1.0, 'it': 4.0, 'good': 1.0, 'i': 3.0, 'old': 1.0, 'night': 2.0, 'got': 1.0, 'size': 1.0, '74': 1.0, 'the': 1.0, 'allows': 1.0, 'this': 1.0, 'sleeper': 1.0, 'stars': 1.0, 'for': 2.0, 'a': 3.0, 'we': 1.0, 's': 1.0, 'months': 1.0, 'moves': 1.0, 'temperature': 1.0, 'hot': 1.0, 'underneath': 1.0, 'my': 1.0, 'fits': 1.0, 'so': 1.0, 'its': 1.0, 'to': 1.0, 'have': 1.0, 'also': 1.0, 'wearable': 1.0, 'sleeve': 1.0, 'blanket': 1.0, 'if': 1.0, 'lot': 1.0, 'keep': 1.0, 'at': 2.0, 'is': 1.0, 'around': 1.0, '76': 1.0, 'doesnt': 1.0, 'him': 1.0, '3': 1.0, 'on': 1.0, 'make': 1.0, 'put': 1.0}
Word element => {'sack': 1.0, 'down': 1.0, 'how': 1.0, 'i': 1.0, 'to': 1.0, 'it': 1.0, 'great': 1.0, 'nice': 1.0, 'up': 1.0, 'v': 1.0, 'like': 1.0, 'and': 1.0, 'sleeping': 1.0, 'bag': 1.0, 'use': 1.0, 'easy': 1.0, 'the': 2.0, 'zippers': 1.0, 'summer': 1.0, 'months': 1.0, 'for': 1.0, 'design': 1.0}
Word element => {'in': 1.0, 'grow': 1.0, 'a': 4.0, 'to': 2.0, 'alternative': 1.0, 'son': 1.0, 'so': 1.0, 'larger': 1.0, 'great': 1.0, 'it': 4.0, 'size': 1.0, 'can': 1.0, 'i': 1.0, 'blanket': 1.0, 's': 1.0, 'that': 1.0, 'we': 1.0, 'bought': 1.0, 'll': 1.0, 'my': 1.0, 'have': 1.0, 'using': 1.0, 'for': 1.0, 'while': 1.0, 'and': 1.0}
Word element => {'kick': 1.0, 'to': 1.0, 'guy': 1.0, 'little': 1.0, 'our': 1.0, 'of': 1.0, 'room': 1.0, 'action': 1.0, 'love': 1.0, 'this': 1.0, 'smooth': 1.0, 'zipper': 1.0, 'very': 1.0, 'for': 1.0, 'design': 1.0, 'cute': 1.0, 'soft': 1.0, 'thick': 1.0, 'plenty': 1.0, 'sleepsack': 1.0, 'knit': 1.0, 'fabric': 1.0}
Word element => {'use': 1.0, 'pleased': 1.0, 'overall': 1.0, 'thin': 1.0, 'just': 1.0, 'fact': 1.0, 'price': 1.0, 'excellent': 1.0, 'this': 2.0, 'value': 1.0, 'think': 1.0, 'thing': 1.0, 'negative': 1.0, 'last': 1.0, 'sleeping': 1.0, 'from': 1.0, 'not': 1.0, 'hazard': 1.0, 'wouldn': 1.0, 'ideally': 1.0, 'eat': 1.0, 'into': 1.0, 'top': 1.0, 'm': 1.0, 'in': 2.0, 'age': 1.0, 'for': 5.0, 'where': 1.0, 'enough': 1.0, 's': 3.0, 'a': 3.0, 'i': 5.0, 'w': 1.0, 'mouth': 2.0, 'also': 1.0, 'halo': 2.0, 'however': 1.0, 'pulls': 1.0, 'only': 1.0, 'it': 9.0, 'higher': 1.0, 'with': 2.0, 'cute': 1.0, 't': 3.0, 'likes': 1.0, 'rest': 1.0, 'even': 1.0, 'sack': 7.0, 'muslin': 1.0, 'everything': 1.0, 'applique': 1.0, 'have': 1.0, 'mention': 1.0, 'zipper': 1.0, 'getting': 1.0, 'and': 4.0, 'too': 1.0, 'anais': 1.0, 'as': 3.0, 'pretty': 1.0, 'to': 6.0, 'sleep': 4.0, 'given': 1.0, 'naps': 1.0, 'quality': 2.0, 'baby': 2.0, '4': 1.0, 'daytime': 2.0, 'distract': 1.0, 'or': 1.0, 'sleepsack': 2.0, 'single': 1.0, 'f': 1.0, 'though': 1.0, 'during': 1.0, 'design': 1.0, 'good': 1.0, 'no': 1.0, 'relative': 1.0, 'buy': 1.0, 'misaligned': 1.0, 'warm': 1.0, 'had': 1.0, 'so': 1.0, 'lightweight': 1.0, 'my': 2.0, 'often': 1.0, 'more': 2.0, 'of': 3.0, 'the': 16.0, 'compared': 1.0, 'aden': 1.0, 'would': 2.0, 'summer': 1.0, 'safety': 1.0, 'owl': 1.0, 'quite': 1.0, 'that': 1.0, 'problems': 1.0, 'layer': 2.0, 'bay': 1.0, 'area': 1.0, 'typical': 1.0, 'like': 1.0, 'room': 1.0, 'material': 1.0, 'temp': 1.0, 'd': 1.0, '70': 1.0, '72': 1.0, 'again': 1.0, 'cool': 1.0, 'sf': 1.0, 'castleware': 1.0, 'overnight': 2.0, 'recommend': 1.0, 'merino': 1.0, 'expected': 1.0, 'kids': 1.0, 'cozy': 1.0, 'be': 3.0, 'than': 1.0, 'way': 1.0, 'velour': 1.0, 'don': 1.0, 'cotton': 2.0, 'isn': 1.0, 'bag': 2.0, 'snug': 2.0, 'is': 4.0, 'at': 1.0, 'he': 2.0, 'put': 1.0, 'his': 2.0}
Word element => {'though': 1.0, 'even': 1.0, 'size': 1.0, 'bigger': 1.0, 'recommend': 1.0, 'would': 1.0, 'i': 1.0, 'seems': 1.0, 'perfect': 1.0, '73': 1.0, '70': 1.0, 'baby': 1.0, 'sleep': 1.0, 'one': 1.0, 'for': 1.0, 'try': 2.0, 'heavy': 1.0, 'to': 1.0, 'breathable': 1.0, 'is': 1.0, 'want': 1.0, 'a': 1.0, 'generous': 1.0, 'between': 1.0, 'degrees': 1.0, 'you': 1.0, 'your': 1.0, 'light': 1.0, 'it': 1.0, 'this': 2.0, 'and': 2.0, 'not': 2.0, 'sack': 1.0, 'too': 2.0, 'we': 1.0, 'if': 1.0, 'keep': 1.0, 'our': 1.0, 'house': 1.0}
Word element => {'d': 1.0, 'washer': 1.0, 'in': 1.0, 'other': 1.0, 'always': 1.0, 'so': 1.0, 'my': 1.0, 'about': 2.0, 'grow': 1.0, 'to': 2.0, 'was': 1.0, 'this': 2.0, 'having': 1.0, 'is': 2.0, 'have': 1.0, 'must': 1.0, 'keeps': 1.0, 'for': 1.0, 'it': 2.0, 'she': 2.0, 'little': 1.0, 'loves': 1.0, 'been': 1.0, 'nice': 1.0, 'can': 1.0, 'blankets': 1.0, 'thinking': 1.0, 'two': 1.0, 'and': 5.0, 'the': 2.0, 'without': 1.0, 'since': 1.0, 'baby': 1.0, 'them': 1.0, 'a': 4.0, 's': 1.0, 'you': 2.0, 'worry': 1.0, 'room': 1.0, '5': 1.0, 're': 1.0, 'legs': 1.0, 'one': 1.0, 'months': 2.0, 'has': 1.0, 'while': 1.0, 'wearing': 1.0, 'medium': 1.0, '3': 1.0, 'warm': 1.0, 'old': 1.0, 'definitely': 1.0, 'buy': 2.0, 'still': 1.0, 'girl': 1.0, 'kick': 1.0, 'clean': 1.0, 'her': 1.0, 'if': 1.0}
Word element => {'is': 1.0, 'wearing': 1.0, 'one': 2.0, 'always': 1.0, 'soft': 1.0, 'warm': 1.0, 'love': 1.0, 'my': 1.0, 'the': 1.0, 'halo': 1.0, 'night': 1.0, 'at': 1.0, 'after': 1.0, 'little': 1.0, 'wears': 1.0, 'well': 1.0, 'even': 1.0, 'sleepsacks': 1.0, 'comfy': 1.0, 'washes': 1.0, 'and': 2.0}
Word element => {'new': 1.0, 'for': 1.0, 'use': 1.0, 'we': 1.0, 'wanted': 1.0, 'and': 1.0, 'grandson': 1.0, 'loved': 1.0, 'granddaughter': 1.0, 'my': 1.0, 'the': 1.0, 'our': 1.0, 'used': 1.0, 'halo': 1.0, 'sacks': 1.0, 'until': 1.0, 'she': 2.0, 'them': 3.0, 'to': 1.0, 'outgrew': 1.0}
Word element => {'long': 1.0, 'so': 1.0, 'won': 1.0, 'however': 1.0, 't': 1.0, 'this': 1.0, 'outgrow': 1.0, 'last': 1.0, 'may': 1.0, 'babies': 1.0, 'useful': 1.0, 'for': 1.0, 'very': 1.0, 'and': 1.0, 'weather': 1.0, 'quickly': 1.0, 'snug': 1.0, 'winter': 1.0, 'fall': 1.0, 'cold': 1.0, 'some': 1.0, 'sleeping': 1.0}
Word element => {'too': 1.0, 'repeatedly': 1.0, 'washing': 1.0, 'because': 1.0, 'of': 1.0, 'made': 1.0, 'blankets': 1.0, 'same': 1.0, 'few': 1.0, 'a': 1.0, 'material': 1.0, 'bought': 1.0, 'even': 1.0, 'we': 1.0, 'day': 1.0, 'in': 2.0, 'its': 2.0, 'to': 3.0, 'all': 1.0, 'sleep': 1.0, 'loves': 1.0, 'one': 1.0, 'little': 1.0, 'my': 1.0, 'the': 2.0, 'and': 3.0, 'warm': 2.0, 'after': 1.0, 'softness': 1.0, 'so': 4.0, 'i': 1.0, 'touch': 1.0, 'cuddle': 1.0, 'this': 2.0, 'it': 4.0, 'fabulous': 1.0, 'him': 2.0, 'keeps': 2.0, 'cozy': 1.0, 'soft': 1.0, 'is': 1.0, 'want': 1.0}
Word element => {'will': 1.0, 'i': 1.0, 'and': 1.0, 'soft': 1.0, 'perfect': 1.0, 'is': 3.0, 'fits': 1.0, 'just': 2.0, 'smaller': 1.0, 'my': 1.0, 'the': 2.0, 'cotton': 1.0, 'it': 1.0, 'only': 1.0, 'this': 1.0, 'one': 1.0, 'purchasing': 1.0, 'for': 2.0, 'love': 1.0, 'a': 4.0, 'very': 1.0, 'son': 1.0, 'big': 1.0, 'baby': 2.0, 'though': 1.0, 'little': 1.0, '23lbs': 1.0, 'medium': 1.0, '28in': 1.0, 'at': 1.0, 'would': 1.0, 'drawback': 1.0, '6': 1.0, 'warmer': 1.0, 'months': 2.0, 'so': 1.0, 'be': 2.0}
Word element => {'of': 1.0, 'size': 1.0, 'runs': 1.0, 'little': 1.0, 'risk': 1.0, 'true': 1.0, 'blanket': 1.0, 'or': 1.0, 'sleep': 1.0, 'them': 1.0, 'suffocation': 1.0, 'let': 1.0, 'a': 5.0, 'to': 4.0, 'have': 2.0, 'not': 1.0, 'just': 2.0, 'lots': 1.0, 'baby': 1.0, 'my': 1.0, 'and': 3.0, 'wear': 1.0, 'leg': 1.0, 'onesie': 1.0, 'soft': 1.0, 'her': 1.0, 'big': 1.0, 'gives': 1.0, 'warm': 2.0, 'underneath': 1.0, 'room': 2.0, 'is': 1.0, 'move': 1.0, 'enough': 1.0, 'around': 1.0, 'with': 3.0, 'it': 1.0, 'the': 1.0, 'great': 1.0, 'way': 1.0}
Word element => {'bought': 1.0, 'wish': 1.0, 'sets': 1.0, 'warm': 1.0, 'him': 2.0, 'on': 1.0, 'earlier': 1.0, 'at': 1.0, 'blankets': 1.0, 'don': 1.0, 'still': 1.0, 'feel': 1.0, 'nights': 1.0, 'which': 1.0, 'minky': 1.0, 'my': 2.0, 'had': 1.0, 'to': 1.0, 'putting': 1.0, 'i': 4.0, 'rocking': 1.0, 'comfortable': 1.0, 'for': 1.0, 'one': 2.0, 'love': 1.0, 'this': 3.0, 'it': 1.0, 'sleep': 1.0, 'in': 1.0, 'perfect': 1.0, 'fabric': 1.0, 'is': 2.0, 'so': 3.0, 'soft': 1.0, 'ease': 1.0, 'and': 2.0, 'little': 1.0, 'cuddly': 1.0, 't': 1.0, 'these': 1.0, 'mind': 1.0, 'keeps': 1.0, 'cold': 1.0}
Word element => {'fleece': 1.0, 'like': 1.0, 'warm': 1.0, 'micro': 1.0, 'too': 1.0, 'especially': 1.0, 'but': 2.0, 'all': 1.0, 'than': 1.0, 'wearable': 1.0, 'not': 1.0, 'because': 1.0, 'halo': 1.0, 'blankets': 1.0, 'super': 1.0, 'perfect': 1.0, 'also': 1.0, 's': 1.0, 'of': 1.0, 'ones': 2.0, 'the': 3.0, 'sleepsack': 1.0, 'warmer': 1.0, 'i': 1.0, 'love': 4.0, 'one': 1.0, 'is': 1.0, 'soft': 1.0, 'it': 2.0, 'this': 1.0, 'cotton': 1.0}
Word element => {'easy': 1.0, 'from': 1.0, 'bottom': 1.0, 'up': 1.0, 'for': 1.0, 'love': 1.0, 'hot': 1.0, 'too': 1.0, 'cozy': 1.0, 'soft': 1.0, 's': 1.0, 'blankets': 1.0, 'changes': 1.0, 'and': 2.0, 'it': 2.0, 'this': 1.0, 'other': 1.0, 'zips': 1.0, 'have': 1.0, 'but': 1.0, 'put': 1.0, 'to': 1.0, 'much': 1.0, 'in': 1.0, 'crib': 1.0, 'that': 1.0, 'reccommend': 1.0, 'not': 2.0, 'diaper': 1.0, 'great': 1.0, 'the': 3.0, 'is': 1.0, 'sacks': 1.0, 'better': 1.0, 'works': 1.0, 'used': 1.0, 'than': 1.0, 'sleep': 1.0, 'doctors': 1.0, 'i': 2.0}
Word element => {'looking': 1.0, 'just': 1.0, 'warm': 1.0, 'soft': 1.0, 'very': 1.0, 's': 1.0, 'throat': 1.0, 'also': 1.0, 'in': 1.0, 'jab': 1.0, 'worry': 1.0, 'baby': 1.0, 'my': 1.0, 'sleeper': 1.0, 'at': 2.0, 'will': 1.0, 'zipper': 2.0, 'and': 3.0, 'a': 2.0, 'is': 2.0, 'sacks': 1.0, 'were': 1.0, 'that': 2.0, 'for': 1.0, 'love': 1.0, 'i': 2.0, 'it': 2.0, 'belly': 1.0, 'have': 2.0, 'sleep': 1.0, 'other': 1.0, 'we': 2.0, 'what': 1.0, 'her': 1.0, 'used': 1.0, 'the': 4.0, 'bulky': 1.0, 'top': 1.0, 'bottom': 1.0, 'always': 1.0}
Word element => {'warm': 1.0, 'washes': 1.0, 'and': 1.0, 'soft': 1.0, 'so': 1.0, 'one': 1.0, 'great': 1.0, 'love': 2.0, 'the': 1.0, 'fabric': 1.0, 'sack': 1.0, 'get': 1.0, 'a': 1.0, 'don': 1.0, 'this': 1.0, 't': 1.0, 'buy': 1.0, 'fleece': 1.0, 'instead': 1.0, 'sleep': 1.0}
Word element => {'growth': 1.0, 'a': 1.0, 'prepared': 1.0, 'be': 1.0, 'would': 1.0, 'mediums': 1.0, 'already': 1.0, 'bottom': 1.0, 'the': 2.0, 'cozy': 1.0, 'spare': 1.0, 'small': 1.0, 'so': 2.0, 'spurt': 1.0, 'halo': 1.0, 'and': 1.0, 'our': 2.0, 'for': 1.0, 'love': 1.0, 'month': 1.0, 'sleepsacks': 1.0, 'we': 3.0, 'ordered': 1.0, 'still': 1.0, 'to': 1.0, 'fits': 1.0, 'average': 1.0, 'old': 1.0, 'six': 1.0, 'with': 1.0, 'warm': 1.0, 'sized': 1.0, 'room': 1.0, 'at': 1.0}
Word element => {'wearing': 1.0, 'hot': 1.0, 'we': 1.0, 'the': 2.0, 'months': 1.0, '9': 1.0, '5': 1.0, 'about': 1.0, 'from': 1.0, 'a': 1.0, 'run': 1.0, 'now': 1.0, 'to': 2.0, 'because': 1.0, 'tends': 1.0, 'who': 1.0, 'too': 1.0, 'gets': 1.0, 'daughter': 1.0, 'using': 2.0, 'for': 2.0, 'stopped': 1.0, 'only': 1.0, 'it': 4.0, 'this': 1.0, 'bought': 1.0, 'winter': 1.0, 'i': 1.0, 'she': 2.0, 'little': 1.0, 'been': 1.0, 'cold': 1.0, 'my': 1.0, 'springs': 1.0, 's': 1.0, 'summer': 1.0, 'is': 2.0, 'in': 1.0, 've': 1.0, 'reason': 1.0, 'perfect': 1.0, 'and': 1.0, 'cooler': 1.0}
Word element => {'winter': 1.0, 'warm': 1.0, 'baby': 1.0, 'kept': 1.0, 'and': 1.0, 'ones': 1.0, 'micro': 1.0, 'title': 1.0, 'it': 2.0, 'pretty': 1.0, 'much': 2.0, 'says': 1.0, 'than': 1.0, 'all': 2.0, 'fleece': 1.0, 'feels': 1.0, 'my': 1.0, 'the': 2.0, 'more': 1.0, 'substantial': 1.0}
Word element => {'visible': 1.0, 'no': 1.0, 'love': 1.0, 'napping': 1.0, 'sleeps': 1.0, 'every': 1.0, 'clean': 1.0, 'while': 1.0, 'up': 1.0, 'immediately': 1.0, 'velour': 1.0, 'it': 1.0, 'this': 1.0, 'with': 1.0, 'feels': 1.0, 'she': 1.0, 'easy': 1.0, 'comforted': 1.0, 'by': 1.0, 'daughter': 1.0, 'and': 1.0, 'night': 1.0, 'lint': 1.0, 'our': 1.0, 'the': 1.0, 'soft': 1.0, 'fabric': 1.0}
Word element => {'turning': 1.0, 'head': 1.0, 'his': 1.0, 'a': 1.0, 'on': 1.0, 'with': 1.0, 'while': 1.0, 'suffocate': 1.0, 'wont': 1.0, 'baby': 1.0, 'i': 2.0, 'recommend': 1.0, 'my': 1.0, 'diffidently': 1.0, 'the': 1.0, 'this': 1.0, 'item': 1.0, 'know': 1.0, 'sure': 1.0, 'blanket': 1.0, 'knowing': 1.0, 'fact': 1.0, 'for': 1.0}
Word element => {'warm': 1.0, 'nice': 1.0, 'keep': 1.0, 'at': 1.0, 'lost': 1.0, 'not': 1.0, 'over': 2.0, 'washed': 1.0, 'all': 1.0, 'have': 2.0, 'my': 2.0, 'again': 1.0, 'are': 1.0, 'and': 4.0, 'very': 1.0, 'soft': 1.0, 'sacks': 1.0, 'they': 3.0, 'love': 1.0, 'can': 1.0, 'sleep': 1.0, 'baby': 2.0, 'wears': 1.0, 'every': 1.0, 'them': 3.0, 'i': 4.0, 'night': 1.0, 'these': 1.0, 'ones': 1.0, 'bought': 1.0, 'multiple': 1.0, 'their': 1.0, 'that': 1.0, 'softness': 1.0, 'regularly': 1.0, 'so': 1.0, 'wash': 1.0}
Word element => {'extra': 1.0, 'sleepsack': 3.0, 'this': 1.0, '69': 1.0, 'in': 1.0, 'her': 1.0, 'pair': 1.0, 'of': 1.0, 'up': 1.0, 'my': 1.0, 'room': 1.0, 'keep': 1.0, 'at': 1.0, 'temp': 1.0, 'some': 1.0, 'put': 1.0, '73': 1.0, '70': 1.0, 'through': 1.0, 'feels': 1.0, 'the': 5.0, 'a': 1.0, 'we': 2.0, 'pajamas': 1.0, 't': 2.0, 'degrees': 1.0, 'sleeps': 1.0, 'she': 3.0, 'overnight': 1.0, 'use': 1.0, 'night': 1.0, 'never': 1.0, 'and': 3.0, 'too': 1.0, 'likes': 1.0, 'comfort': 1.0, 'well': 1.0, 'hot': 1.0, 'few': 1.0, 'times': 1.0, 'turned': 1.0, 'to': 1.0, 'sleep': 1.0, 'all': 1.0, 'that': 2.0, 'so': 1.0, 'didn': 2.0, 'perhaps': 1.0, 'daughters': 1.0, 'adds': 1.0}
Word element => {'grow': 1.0, 'him': 1.0, 'gives': 1.0, 'large': 1.0, 'room': 1.0, 'warm': 1.0, 'knowing': 1.0, 'blanket': 1.0, 'is': 1.0, 'wearing': 1.0, 'i': 1.0, 'night': 1.0, 'baby': 1.0, 'my': 1.0, 'the': 1.0, 'alternative': 1.0, 'better': 1.0, 'sleep': 1.0, 'at': 1.0, 'safe': 1.0, 'to': 2.0, 'a': 1.0, 'this': 1.0, 'he': 1.0, 'plenty': 1.0, 's': 1.0, 'months': 1.0, 'of': 1.0, '6': 1.0, 'and': 1.0}
Word element => {'fabric': 1.0, 'longer': 1.0, 'is': 1.0, 'the': 1.0, 'comfortable': 1.0, 'that': 1.0, 'be': 2.0, 'seems': 1.0, 'nice': 1.0, 'and': 1.0, 'very': 1.0, 'like': 1.0, 'soft': 1.0, 'it': 3.0, 'to': 2.0, 'was': 1.0, 'expected': 1.0, 'a': 1.0, 'last': 1.0, 'lot': 1.0, 'bigger': 1.0, 'because': 1.0, 'than': 1.0, 'will': 1.0, 'but': 1.0, 'i': 2.0}
Word element => {'now': 1.0, 'smooth': 1.0, 'soft': 1.0, 'it': 3.0, 'way': 1.0, 's': 1.0, 'cold': 1.0, 'i': 1.0, 'stays': 1.0, 'and': 3.0, 'washes': 1.0, 'baby': 1.0, 'both': 1.0, 'my': 1.0, 'that': 1.0, 'so': 1.0, 'after': 1.0, 'several': 1.0, 'perfect': 1.0, 'like': 1.0, 'blanket': 1.0, 'love': 1.0, 'for': 1.0, 'wearable': 1.0, 'winter': 1.0}
Word element => {'she': 1.0, 'because': 1.0, 'problem': 1.0, 'was': 1.0, 'me': 1.0, 'of': 1.0, 'up': 2.0, 'licking': 1.0, 'if': 1.0, 'keep': 1.0, 'very': 1.0, 'i': 2.0, 'newborn': 1.0, 'wonderful': 1.0, 'with': 3.0, 'hard': 1.0, 'come': 1.0, 'also': 1.0, 'sack': 5.0, 'fabric': 1.0, 'sleep': 2.0, 'to': 3.0, 'all': 2.0, 'flat': 1.0, 'have': 1.0, 'bought': 1.0, 'design': 1.0, 'for': 2.0, 'wings': 3.0, 'my': 1.0, 'pull': 1.0, 'the': 13.0, 'a': 1.0, 't': 1.0, 'is': 2.0, 'wrapped': 2.0, 'your': 1.0, 'on': 1.0, 'likes': 1.0, 'won': 1.0, 'soft': 1.0, 'this': 1.0, 'found': 1.0, 'started': 1.0, 'baby': 2.0, 'them': 2.0, 'back': 1.0, 'velrcos': 1.0, 'down': 1.0, 'you': 1.0, 'way': 2.0, 'then': 1.0, 'so': 1.0, 'that': 1.0, 'which': 1.0}
Word element => {'blancket': 1.0, 'sweet': 1.0, 'lovely': 1.0, 'doughtars': 1.0, 'it': 3.0, 'i': 1.0, 'is': 1.0, 'comfortable': 1.0, 'was': 1.0, 'pretty': 1.0, 'my': 1.0, 'cloth': 1.0, 'very': 4.0, 'and': 1.0, 'like': 1.0, 'much': 1.0}
Word element => {'the': 1.0, 'come': 1.0, 'it': 1.0, 'for': 1.0, 'waiting': 1.0, 'to': 1.0, 'was': 1.0, 'because': 1.0, 'extra': 1.0, 'an': 1.0, 'i': 2.0, 'girl': 1.0, 'baby': 1.0, 'my': 1.0, 'bought': 1.0, 'material': 1.0, 'keeps': 1.0, 'of': 4.0, 'beautifully': 1.0, 'wriggling': 1.0, 'who': 1.0, 'houdini': 1.0, 'made': 1.0, 'out': 2.0, 'is': 1.0, 'tired': 1.0, 'like': 1.0, 'safe': 1.0, 'blankets': 1.0, 'wash': 1.0, 'newborn': 1.0, 'in': 1.0, 'and': 1.0, 'getting': 2.0, 'soft': 1.0, 'swaddling': 1.0, 'warm': 1.0}
Word element => {'swaddled': 1.0, 'be': 1.0, 'still': 1.0, 'baby': 1.0, 'help': 1.0, 'doesn': 1.0, 'which': 1.0, 'size': 1.0, 'since': 1.0, 'at': 1.0, 'quickly': 1.0, 'they': 1.0, 'next': 1.0, 'my': 2.0, 'outgrown': 1.0, 'and': 2.0, 'comfy': 1.0, 'daughter': 1.0, 'with': 1.0, 'mos': 1.0, 'only': 1.0, 'it': 3.0, 'she': 1.0, '2': 1.0, 'the': 2.0, 'likes': 1.0, 'has': 1.0, 'well': 1.0, 'i': 1.0, 'soft': 1.0, 'this': 2.0, 'wish': 1.0, 'overheat': 1.0, 'made': 1.0, 'out': 1.0, 'so': 2.0, 'bit': 1.0, 'longer': 1.0, 't': 2.0, 'a': 2.0, 's': 1.0, 'we': 1.0, 'didn': 1.0, 'got': 1.0, 'use': 1.0, 'of': 1.0, 'sadly': 1.0, 'sack': 1.0, 'slept': 1.0, 'also': 1.0, 'length': 1.0, 'in': 1.0, 'more': 1.0, 'comes': 1.0, 'to': 1.0, 'sleep': 1.0, 'as': 1.0, 'sleepsack': 1.0}
Word element => {'lovely': 1.0, 'made': 1.0, 'at': 1.0, 'go': 1.0, 'when': 1.0, 'play': 1.0, 'to': 3.0, 'beds': 1.0, 'on': 1.0, 'this': 2.0, 'angels': 1.0, 'like': 1.0, 'they': 4.0, 'for': 2.0, 'kind': 1.0, 'as': 1.0, '3': 1.0, 'lambs': 1.0, 'my': 2.0, 'grandma': 1.0, 'of': 2.0, 'a': 2.0, 'keep': 1.0, 'sang': 2.0, 'little': 1.0, 'three': 1.0, 'bought': 1.0, 'jesus': 1.0, 'were': 1.0, 'their': 2.0, 'tenderly': 1.0, 'night': 1.0, 'keepsake': 2.0, 'i': 1.0, 'grandhcildren': 1.0, 'who': 1.0, 'sleep': 1.0, 'funeral': 1.0, 'loves': 1.0, 'me': 1.0, 'mother': 1.0, 'these': 1.0, 'great': 1.0, 's': 1.0}
Word element => {'sleeps': 1.0, 'to': 1.0, 'winter': 1.0, 'material': 1.0, 'product': 1.0, 'easy': 1.0, 'baby': 2.0, 'use': 1.0, 'every': 1.0, 'overnight': 1.0, 'my': 2.0, 'thicker': 1.0, 'a': 1.0, 'wrap': 1.0, 'night': 1.0, 'i': 1.0, 'on': 2.0, 'summer': 1.0, 'is': 1.0, 'and': 1.0, 'specially': 1.0, 'day': 1.0, 'very': 2.0, 'important': 1.0, 'they': 1.0, 'in': 1.0, 'for': 2.0, 'this': 2.0, 'it': 2.0, 'come': 1.0, 'cotton': 1.0}
Word element => {'quick': 1.0, 'feature': 1.0, 'changes': 1.0, 'and': 1.0, 'very': 1.0, 'zipper': 1.0, 'for': 2.0, 'perfect': 1.0, 'in': 1.0, 'has': 1.0, 'soft': 1.0, 'sleepsack': 1.0, 'halo': 1.0, 'the': 2.0, 'nice': 1.0, 'that': 1.0, 'is': 2.0, 'want': 1.0, 'down': 1.0, 'a': 1.0, 'to': 1.0, 'fabric': 1.0, 'babies': 1.0, 'have': 1.0, 'arms': 2.0, 'or': 1.0}
Word element => {'line': 1.0, 'star': 1.0, 'fabrics': 1.0, 'broader': 1.0, 'add': 1.0, 'than': 1.0, 'ideas': 1.0, 'rather': 1.0, 'like': 1.0, 'i': 2.0, 'sack': 1.0, 'carters': 1.0, 'has': 1.0, 'or': 1.0, 'beneath': 1.0, 'worn': 1.0, 'sie': 1.0, 'prefer': 2.0, 'no': 1.0, 'breathe': 1.0, 'during': 1.0, 'thick': 1.0, 'that': 2.0, 'easily': 1.0, 'because': 1.0, 'me': 1.0, 'was': 1.0, 'worries': 1.0, 'face': 1.0, 'sometimes': 1.0, 'through': 1.0, 'material': 1.0, 'hours': 1.0, 'a': 6.0, 'after': 1.0, 'few': 1.0, 'this': 3.0, 'plain': 1.0, 'who': 1.0, 'blankets': 1.0, 'but': 2.0, 'ed': 2.0, 'for': 5.0, 'caution': 2.0, 'swaddle': 3.0, 'it': 1.0, 'wear': 1.0, 'weight': 1.0, 'heavy': 1.0, 'diaper': 2.0, 'summervelcro': 1.0, 'must': 3.0, 'have': 3.0, 'dryer': 1.0, '3am': 2.0, 'fastened': 1.0, 'trunk': 1.0, '5': 1.0, 'blanket': 2.0, 'seems': 1.0, 'access': 1.0, 'itselfthe': 1.0, 'relationship': 1.0, 'shalo': 1.0, 'one': 1.0, 'too': 2.0, 'caveats': 1.0, 'excellent': 1.0, 'innovative': 1.0, 'winter': 1.0, 'secure': 1.0, 'to': 7.0, 'with': 6.0, 'people': 1.0, 'is': 4.0, 'around': 1.0, 'babies': 1.0, 'changes': 2.0, 'hate': 1.0, 'machine': 1.0, 'overall': 1.0, 'pro': 1.0, 'careful': 1.0, 'in': 3.0, 'product': 3.0, 'zippers': 1.0, 'found': 1.0, 'however': 1.0, 'easy': 3.0, 'con': 1.0, 'snapped': 1.0, 'trouble': 1.0, 'get': 1.0, 'use': 1.0, 'love': 1.0, 'bottom': 1.0, 'up': 3.0, 'sthe': 1.0, 'selecton': 1.0, 'towards': 1.0, 'velcro': 5.0, 'abrasive': 1.0, 'pre': 1.0, 'wings': 1.0, 'used': 1.0, 'still': 1.0, 'if': 2.0, 'itself': 1.0, 'not': 2.0, 'correctly': 1.0, 'an': 2.0, 'other': 2.0, 'clothing': 1.0, 'despite': 1.0, 'complications': 1.0, 'washing': 2.0, 'the': 4.0, 'of': 3.0, 'halo': 2.0, 'means': 1.0, 'will': 1.0, 'sticking': 1.0, 'sticks': 1.0, 'rides': 2.0, 'swaddled': 2.0, 'silk': 1.0, 'would': 2.0, 'swaddling': 1.0, 'adequate': 1.0, 'bulky': 1.0, 'properly': 1.0, 'can': 3.0, 'so': 1.0, 'be': 8.0, 'wrapped': 1.0, 'shirt': 2.0, 'entangled': 1.0, 'heat': 1.0, 'deal': 1.0, 'baby': 2.0, 's': 2.0, 'when': 2.0, 'again': 1.0, 'and': 6.0, 'arms': 1.0, 'makes': 2.0, 'alot': 1.0, 'bulk': 1.0, 'behind': 1.0, 'sleeves': 3.0, 'which': 3.0}
Word element => {'weather': 1.0, 'spring': 1.0, 'for': 1.0, 'right': 1.0, 'just': 1.0, 'this': 1.0, 'lining': 1.0, 'fall': 1.0, 'sleepsack': 1.0, 'i': 1.0, 'incredibly': 1.0, 'soft': 1.0, 'is': 1.0, 'a': 1.0, 'that': 1.0, 'love': 1.0, 'it': 3.0, 'has': 1.0, 'makes': 1.0}
Word element => {'swaddler': 1.0, 'a': 1.0, 'in': 2.0, 'for': 2.0, 'is': 3.0, 'are': 1.0, 'lake': 1.0, 'an': 2.0, 'winter': 1.0, 'infant': 2.0, 'coverage': 2.0, 'the': 2.0, 'great': 1.0, 'this': 2.0, 'it': 1.0, 'maximum': 1.0, 'nice': 1.0, 'we': 1.0, 'jogging': 1.0, 'especially': 1.0, 'around': 1.0, 'when': 1.0, 'where': 1.0, 'normally': 1.0, 'colder': 1.0, 'at': 1.0}
Word element => {'to': 1.0, 'guy': 1.0, 'my': 1.0, 'for': 1.0, 'enough': 1.0, 'little': 1.0, 'roomy': 1.0, 's': 1.0, 'loved': 1.0, 'and': 1.0, 'baby': 1.0, 'sack': 1.0, 'at': 1.0, 'would': 1.0, 'a': 1.0, 'identical': 1.0, 'an': 1.0, 'material': 1.0, 'be': 1.0, 'with': 1.0, 'it': 1.0, 'this': 1.0, 'shower': 1.0, 'the': 1.0, 'received': 1.0, 'blanket': 1.0, 'grow': 1.0, 'knew': 1.0, 'i': 2.0, 'cozy': 1.0, 'soft': 1.0, 'so': 1.0, 'sleep': 1.0, 'perfect': 1.0}
Word element => {'comfy': 1.0, 'fabric': 1.0, 'll': 1.0, 'how': 1.0, 'not': 1.0, 'very': 2.0, 'crib': 1.0, 'i': 6.0, 'it': 3.0, 'soft': 1.0, 'this': 1.0, 'with': 1.0, 'only': 1.0, 'often': 1.0, 'for': 2.0, 'sure': 1.0, 'times': 1.0, 'm': 1.0, 'price': 1.0, 'use': 1.0, 'didn': 1.0, 'got': 1.0, 'the': 2.0, 'of': 1.0, 'up': 1.0, 'great': 2.0, 'spend': 1.0, 'as': 1.0, 'to': 1.0, 'was': 2.0, 'want': 1.0, '15': 1.0, 't': 1.0, 'a': 3.0, 'bedding': 1.0, 'lot': 1.0, 'portable': 1.0, 'washed': 1.0, 'on': 1.0, 'and': 2.0, 'pleased': 1.0, 'value': 1.0, 've': 1.0, 'few': 1.0, 'money': 2.0, 'but': 1.0, 'well': 1.0, 'has': 1.0, 'held': 1.0, 'thought': 1.0}
Word element => {'perfect': 1.0, 'worked': 1.0, 'bassinet': 1.0, 'old': 1.0, 'it': 1.0, 'needed': 1.0, 'bought': 1.0, 'very': 1.0, 'and': 1.0, 'this': 2.0, 'a': 2.0, 'had': 1.0, 'for': 2.0, 'sister': 1.0, 'is': 1.0, 'her': 1.0, 'fist': 1.0, 'baby': 1.0, 'she': 2.0}
Word element => {'kicks': 1.0, 'shakes': 1.0, 'ankle': 1.0, 'or': 2.0, 'his': 1.0, 'around': 1.0, 'at': 1.0, 'was': 2.0, 'and': 3.0, 'for': 1.0, 'another': 1.0, 'toy': 1.0, 'looking': 1.0, 'found': 1.0, 'wrist': 1.0, 'i': 2.0, 'cheaper': 1.0, 'pottery': 1.0, 'on': 1.0, 'son': 1.0, 'way': 1.0, 'he': 1.0, 'this': 1.0, 'it': 3.0, 'my': 1.0, 'amazon': 1.0, 'really': 1.0, 'sensory': 1.0, 'likes': 1.0, 'barn': 1.0, 'put': 1.0}
Word element => {'as': 1.0, 'appointment': 1.0, 'saw': 1.0, 'toy': 2.0, 'at': 1.0, 'fun': 1.0, 'kids': 1.0, 'i': 1.0, 'well': 1.0, 'a': 3.0, 'is': 1.0, 'child': 1.0, 'this': 1.0, 'with': 1.0, 'it': 2.0, 'doctor': 1.0, 'one': 1.0, 'love': 1.0, 'playing': 1.0, 'and': 1.0, 'my': 1.0, 'they': 1.0, 'its': 1.0, 'got': 1.0, 'sturdy': 1.0}
Word element => {'would': 1.0, 'if': 1.0, 'toys': 1.0, 'found': 1.0, 'have': 1.0, 'because': 1.0, 't': 1.0, 'the': 2.0, 'chosen': 1.0, 'had': 1.0, 'again': 1.0, 'are': 1.0, 'finish': 1.0, 'buy': 1.0, 'i': 5.0, 'enjoys': 1.0, 'wasn': 1.0, 'crafted': 1.0, 'like': 1.0, 'my': 1.0, 'made': 2.0, 'rubberwood': 1.0, 'baby': 1.0, 'toy': 3.0, 'option': 1.0, 'but': 1.0, 'an': 2.0, 'is': 3.0, 'and': 1.0, 'interesting': 1.0, 'it': 3.0, 'only': 1.0, 'with': 1.0, 'this': 2.0, 'that': 1.0, 'from': 2.0, 'similar': 1.0, 'instead': 2.0, 'plastic': 1.0, 'of': 1.0, 'haba': 3.0, 'imperfections': 1.0, 'well': 2.0, 'exceptionally': 1.0, 'wood': 1.0, 'wish': 1.0, 'minor': 1.0}
Word element => {'tho': 1.0, 'playing': 1.0, 'day': 1.0, 'very': 1.0, 'it': 2.0, 'with': 2.0, 'other': 1.0, 'play': 1.0, 'months': 1.0, 'not': 1.0, 'at': 1.0, '6': 1.0, 'friend': 1.0, 'years': 1.0, 'baby': 1.0, 'does': 1.0, 'his': 1.0, 'long': 1.0, 'who': 1.0, 'old': 1.0, 'for': 1.0, 'liked': 1.0, 'is': 1.0, 'really': 1.0, '2': 1.0, 'the': 1.0}
Word element => {'totally': 1.0, 'much': 1.0, 'there': 1.0, 'out': 1.0, 'name': 1.0, 'big': 1.0, 'many': 1.0, 'they': 1.0, 'price': 1.0, 'funny': 1.0, 'house': 1.0, 'off': 1.0, 'cheapest': 1.0, 'come': 1.0, 'interesting': 1.0, 'colors': 1.0, 'baby': 2.0, 'blast': 1.0, 'keeps': 1.0, 'heavy': 1.0, 'but': 3.0, 'we': 1.0, 's': 1.0, 't': 1.0, 'a': 5.0, 'this': 3.0, 'stores': 1.0, 'with': 1.0, 'it': 7.0, 'he': 1.0, 'have': 1.0, 'younger': 1.0, 'awesome': 2.0, 'the': 5.0, 'playing': 1.0, 'more': 1.0, 'is': 5.0, 'way': 1.0, 'expensive': 1.0, 'love': 2.0, 'for': 3.0, 'and': 3.0, 'too': 2.0, 'wrist': 1.0, 'bracelet': 1.0, 'when': 1.0, 'an': 1.0, 'moves': 1.0, 'very': 1.0, 'our': 1.0, 'as': 1.0, 'to': 1.0, 'my': 3.0, 'definitely': 1.0, 'pulling': 1.0, 'also': 1.0, 'in': 3.0, 'having': 1.0, 'are': 1.0, 'opens': 1.0, 'up': 1.0, 'beads': 1.0, 'rattle': 2.0, 'i': 2.0, 'becomes': 1.0, 'put': 1.0, 'on': 1.0, 'toy': 2.0, 'won': 1.0, 'bit': 2.0, 'boy': 1.0}
Word element => {'well': 1.0, 's': 1.0, 'not': 1.0, 'winkle': 1.0, 'likes': 1.0, 'made': 1.0, 'the': 1.0, 'my': 1.0, 'has': 1.0, 'for': 1.0, 'it': 1.0, '9': 1.0, 'month': 1.0, 'zero': 1.0, 'but': 1.0, 'use': 1.0, 'this': 2.0, 'old': 1.0, 'toy': 1.0, 'she': 1.0}
Word element => {'smooth': 1.0, 'cool': 1.0, 'which': 1.0, 'are': 1.0, 'on': 1.0, 'the': 2.0, 'recommend': 1.0, 'last': 1.0, 'time': 1.0, 'they': 1.0, 'long': 2.0, 'used': 1.0, 'engage': 1.0, 'materials': 1.0, 'made': 1.0, 'a': 1.0, 'well': 1.0, 'will': 1.0, 'quality': 1.0, 'as': 1.0, 'very': 1.0, 'and': 3.0, 'like': 1.0, 'my': 1.0, 'high': 1.0, 'highly': 1.0, 'baby': 1.0, 'toy': 1.0, 'were': 1.0, 'balls': 1.0, 'can': 1.0, 'it': 1.0, 'this': 2.0, 'colored': 1.0, 'in': 1.0, 'you': 1.0, 'tell': 1.0, 'i': 1.0, 'is': 2.0, 'really': 1.0, 'toys': 1.0, 'brightly': 1.0, 'all': 1.0, 'wood': 2.0}
Word element => {'else': 1.0, 'anything': 1.0, 't': 1.0, '7': 1.0, 'do': 1.0, 'and': 2.0, 'son': 1.0, 'on': 1.0, 'for': 1.0, 'in': 1.0, 'month': 1.0, 'with': 1.0, 'he': 2.0, 'this': 1.0, 'it': 3.0, 'my': 1.0, 'biting': 1.0, 'got': 1.0, 'enjoys': 1.0, 'old': 1.0, 'i': 1.0, 'putting': 1.0, 'mouth': 1.0, 'doesn': 1.0, 'but': 1.0, 'his': 1.0, 'down': 1.0, 'besides': 1.0, 'that': 1.0}
Word element => {'little': 1.0, 'a': 1.0, 'when': 1.0, 'play': 1.0, 'to': 1.0, 'much': 1.0, 'still': 1.0, 'as': 2.0, 'like': 2.0, 'and': 1.0, 't': 1.0, 'old': 1.0, 'i': 3.0, 'will': 1.0, 'doesn': 1.0, 'month': 1.0, 'love': 1.0, '6': 1.0, 'my': 1.0, 'thought': 1.0, 'older': 1.0, 'with': 1.0, 'this': 1.0, 'it': 3.0, 'he': 3.0, 'would': 1.0, 'think': 2.0, 'really': 1.0, 'is': 2.0, 'pretty': 1.0, 'fun': 1.0}
Word element => {'away': 1.0, 'it': 1.0, 'i': 1.0, 'chunks': 1.0, 'and': 1.0, 'huge': 1.0, 'off': 1.0, 'chip': 1.0, 'within': 1.0, 'use': 1.0, 'throw': 1.0, '2': 1.0, 'of': 1.0, 'had': 1.0, 'hours': 1.0, 'in': 2.0, 'the': 2.0, 'started': 1.0, 'classroom': 1.0, 'paint': 1.0, 'to': 2.0}
Word element => {'ll': 1.0, 'one': 1.0, 'further': 1.0, 'toddler': 1.0, 'baby': 1.0, 'no': 1.0, 'developmental': 1.0, 'great': 1.0, 'looking': 1.0, 'are': 1.0, 'want': 1.0, 'if': 1.0, 'themselves': 1.0, 'anklets': 1.0, 'you': 2.0, 'seen': 1.0, 'were': 1.0, 'flock': 1.0, 'at': 2.0, 'pretend': 1.0, 'have': 1.0, 'older': 1.0, 'it': 1.0, 'turning': 1.0, 'every': 2.0, 'seek': 1.0, 'playdate': 1.0, 'is': 2.0, 'change': 1.0, 'the': 4.0, 'bracelets': 1.0, 'this': 3.0, 'kids': 1.0, 'for': 2.0, 'where': 1.0, 'all': 1.0, 'to': 3.0, 'has': 1.0, 'toy': 2.0, 'ask': 1.0, 'i': 3.0, 'etc': 1.0, 'of': 1.0, 'always': 1.0, 'a': 2.0, 'mommy': 1.0, 'me': 1.0, 'they': 2.0, 'group': 1.0, 'frequent': 1.0, 'child': 1.0, 'attends': 1.0, 'that': 4.0, 'babies': 1.0, 'been': 1.0, 'drawn': 1.0, 'pattern': 1.0, 'and': 3.0, 'moms': 1.0, 'find': 1.0, 'got': 1.0, 'even': 2.0, 'twisting': 1.0}
Word element => {'preference': 1.0, 's': 1.0, 'design': 1.0, 'because': 1.0, 'that': 1.0, 'know': 1.0, 'out': 1.0, 'really': 1.0, 'us': 1.0, 'house': 1.0, 'around': 1.0, 'those': 1.0, 'made': 1.0, 'have': 2.0, 't': 3.0, 'is': 3.0, 'separated': 1.0, 'clutching': 1.0, 'be': 3.0, 'would': 3.0, 'each': 1.0, 'drop': 1.0, 'was': 2.0, 'personal': 1.0, 'but': 1.0, 'classic': 1.0, 'bad': 1.0, 'balls': 2.0, 'say': 1.0, 'hopes': 1.0, 'toy': 5.0, 'the': 5.0, 'of': 3.0, 'this': 3.0, 'in': 3.0, 'necessarily': 1.0, 'regular': 1.0, 'since': 1.0, 'interested': 1.0, 'just': 2.0, 'been': 1.0, 'very': 2.0, 'son': 3.0, 'a': 4.0, 'rattle': 1.0, 'well': 1.0, 'i': 4.0, 'had': 1.0, 'our': 2.0, 'as': 1.0, 'and': 8.0, 'couple': 1.0, 'months': 3.0, 'colors': 1.0, 'though': 2.0, 'can': 2.0, 'so': 4.0, 'perfect': 1.0, 'interest': 1.0, 'when': 1.0, 'old': 1.0, 'wooden': 1.0, 'saw': 1.0, 'pick': 2.0, 'him': 1.0, 'thought': 1.0, 'it': 8.0, 'he': 8.0, 'manipulated': 1.0, 'will': 2.0, 'seems': 1.0, 'clack': 1.0, 'all': 2.0, 'other': 1.0, 'pretty': 1.0, 'to': 2.0, 'against': 1.0, 'high': 1.0, 'throw': 1.0, 'don': 1.0, 'becoming': 1.0, 'popular': 1.0, 'my': 1.0, 'often': 1.0, 'work': 1.0, 'over': 1.0, 'up': 2.0, 'got': 1.0, 'seconds': 1.0, 'didn': 2.0, 'older': 1.0, 'now': 1.0, 'express': 1.0, 'play': 1.0, 'about': 1.0, 'much': 1.0, 'try': 1.0, 'every': 1.0, 'with': 3.0, 'plenty': 1.0, 'hold': 1.0, '17': 1.0, 'like': 2.0, 'for': 4.0, '10': 1.0, 'ball': 3.0, 'apart': 1.0, 'we': 2.0, 'then': 1.0, 'sometimes': 1.0, 'bright': 1.0, 'pull': 1.0, 'has': 1.0, 'them': 4.0, 'probably': 1.0}
Word element => {'with': 1.0, 'grandma': 1.0, 'wouldn': 1.0, 'even': 1.0, 'spark': 1.0, 'get': 1.0, 'play': 1.0, 'and': 1.0, 'think': 1.0, 'one': 2.0, 'for': 4.0, 'things': 1.0, 'of': 1.0, 'up': 2.0, 'fun': 1.0, 'years': 1.0, 'baby': 2.0, 'kids': 1.0, 'this': 2.0, 'older': 1.0, 'is': 2.0, 'bit': 1.0, 'table': 1.0, 'heavy': 1.0, 'the': 1.0, 'may': 1.0, 'my': 1.0, 'fiddler': 1.0, 'it': 1.0, 'truly': 1.0, 'very': 1.0, 'little': 2.0, 'but': 2.0, 'an': 1.0, 'who': 1.0, 'toy': 1.0, 'likes': 1.0, 'top': 1.0, 'to': 3.0, 't': 1.0, 'a': 6.0, 'could': 1.0, 'grab': 1.0, 'be': 1.0, 'gadget': 1.0, 'office': 1.0, 'pass': 1.0, 'great': 1.0, 'desk': 1.0, 'i': 2.0, 'conversation': 1.0, 'also': 1.0, 'gets': 1.0}
Word element => {'few': 1.0, 'a': 1.0, 'entertain': 1.0, 'will': 1.0, 'but': 1.0, 'do': 1.0, 'minutes': 1.0, 'can': 1.0, 'in': 1.0, 'eat': 1.0, 'to': 1.0, 'much': 1.0, 'them': 1.0, 'out': 1.0, 'for': 2.0, 'one': 1.0, 'or': 1.0, 'little': 1.0, 'with': 1.0, 'it': 2.0, 'great': 1.0, 'the': 1.0, 'limed': 1.0, 'car': 1.0, 'at': 1.0, 'church': 1.0, 'is': 1.0, 'on': 1.0, 'while': 1.0, 'how': 1.0, 'entertaining': 1.0, 'your': 1.0, 'they': 1.0}
Word element => {'about': 1.0, 'talking': 1.0, 'just': 1.0, 'really': 1.0, 'because': 1.0, 'mouth': 1.0, 'her': 1.0, 'toy': 1.0, 'eco': 1.0, 'when': 1.0, 'worry': 1.0, 'and': 1.0, 'months': 1.0, '6': 1.0, 'my': 1.0, 'dont': 1.0, 'perfect': 1.0, 'instead': 1.0, 'organic': 1.0, 'but': 2.0, 'started': 1.0, 'quality': 1.0, 'other': 1.0, 'to': 1.0, 'manhathan': 1.0, 'was': 3.0, 'free': 1.0, 'attached': 1.0, 'sweet': 2.0, 'with': 1.0, 'were': 1.0, 'thought': 1.0, 'so': 1.0, 'have': 1.0, 'small': 1.0, 'order': 1.0, 'she': 2.0, 'it': 4.0, 'looks': 1.0, 'more': 1.0, 'is': 3.0, 'up': 1.0, 'toys': 3.0, 'beads': 1.0, 'of': 1.0, 'each': 1.0, 'very': 1.0, 'i': 6.0, 'photos': 1.0, 'in': 2.0, 'randomly': 1.0, 'hands': 1.0, 'the': 5.0, 'assuming': 1.0, 'love': 1.0, 'for': 1.0, 'expensive': 1.0, 'bunches': 1.0, 'balls': 1.0, 'daugters': 1.0, 'size': 1.0, 'they': 2.0, 'frienfly': 1.0, 'are': 1.0, 'blog': 1.0, 'puts': 1.0, 'almost': 1.0, 'sort': 1.0, 'like': 1.0, 'sooo': 1.0, 'a': 2.0, 'hairband': 1.0, 'colors': 1.0, 'loveee': 1.0, 'also': 2.0, 'unique': 1.0, 'old': 1.0, 'non': 2.0, 'on': 1.0, 'toxic': 3.0}
Word element => {'good': 1.0, 'but': 1.0, 'little': 1.0, 'stacker': 1.0, 'off': 1.0, 'the': 3.0, 'to': 1.0, 'pricey': 1.0, 'fine': 1.0, 'machine': 1.0, 'though': 1.0, 'even': 1.0, 'it': 8.0, 'christmas': 1.0, 'stacking': 1.0, 'with': 1.0, 'pulling': 1.0, 'plays': 1.0, '1': 1.0, 'recevied': 1.0, 'present': 1.0, 'times': 1.0, 'when': 1.0, 'mths': 2.0, 'and': 5.0, 'too': 1.0, 'holding': 1.0, 'old': 1.0, 'i': 2.0, '18': 1.0, 'few': 1.0, 'at': 2.0, 'gentle': 1.0, 'doesn': 1.0, 'was': 3.0, 'had': 1.0, 't': 1.0, 'a': 3.0, 'for': 1.0, 'liked': 2.0, 'still': 2.0, 'son': 1.0, 'my': 1.0, 'yrs': 1.0, 'about': 2.0, 'likes': 1.0, 'well': 1.0, 'toy': 3.0, 'he': 5.0, '6': 1.0, 'wash': 1.0, 'up': 1.0, 'would': 1.0, 'have': 2.0, 'then': 1.0, 'teeth': 1.0, 'like': 1.0, 'because': 1.0, 'say': 1.0, 'is': 2.0, 'this': 2.0, 'wish': 1.0, 'soft': 2.0, 'washed': 1.0, 'on': 3.0, 'fun': 1.0, 'delicate': 1.0, 'rings': 2.0, 'cycle': 1.0}
Word element => {'vibrant': 1.0, 'are': 1.0, 'the': 2.0, 'of': 1.0, 'usual': 1.0, 'i': 1.0, 'love': 1.0, 'that': 1.0, 'is': 1.0, 'this': 1.0, 'hard': 1.0, 'plush': 1.0, 'colors': 1.0, 'ring': 1.0, 'stacker': 1.0, 'plastic': 1.0, 'instead': 1.0, 'very': 1.0, 'and': 1.0, 'soft': 1.0}
Word element => {'sweet': 1.0, 'and': 1.0, 'soft': 1.0}
Word element => {'enjoy': 1.0, 'kids': 1.0, 'that': 1.0, 'doubt': 1.0, 'of': 1.0, 'cuteness': 1.0, '3': 1.0, 'short': 1.0, 'be': 1.0, 'engaging': 1.0, 'string': 1.0, 'or': 1.0, 'light': 1.0, 'the': 6.0, 'benefit': 1.0, 'more': 2.0, 'is': 5.0, 'other': 1.0, 'care': 1.0, 'overall': 1.0, 'which': 1.0, 'stars': 1.0, 'product': 1.0, 'for': 3.0, 'you': 1.0, 'cute': 1.0, 'if': 1.0, 'woof': 1.0, 'quality': 1.0, 'baby': 2.0, 'it': 3.0, 'cons': 1.0, 'toy': 2.0, 'well': 1.0, 'might': 1.0, 't': 1.0, 's': 1.0, 'a': 2.0, 'didn': 1.0, 'particularly': 1.0, 'but': 1.0, 'add': 1.0, 'additional': 1.0, 'piece': 1.0, 'yourself': 1.0, 'also': 1.0, 'bit': 1.0, 'quiet': 1.0, 'too': 2.0, 'and': 3.0, 'fixable': 1.0, 'similar': 1.0, 'something': 1.0, 'would': 1.0, 'not': 1.0, 'built': 1.0, 'used': 1.0, 'at': 1.0, 'all': 1.0}
Word element => {'longer': 1.0, 'to': 1.0, 'ribbon': 1.0, 'of': 1.0, 'piece': 1.0, 'just': 1.0, 'i': 3.0, 'and': 4.0, 'that': 2.0, 'loves': 2.0, 'was': 1.0, 'old': 1.0, 'non': 1.0, '21': 1.0, 'slightly': 1.0, 'paint': 1.0, 'size': 1.0, 'rope': 1.0, 'dogs': 1.0, 'dog': 1.0, 'gift': 1.0, 'it': 3.0, 'month': 1.0, 'she': 3.0, 'are': 1.0, 'the': 5.0, 'my': 2.0, 'love': 1.0, 'for': 2.0, 'wheels': 1.0, 'pull': 1.0, 'daughter': 2.0, 'tied': 1.0, 'finish': 1.0, 'when': 1.0, 'make': 1.0, 'think': 1.0, 'toxic': 1.0, 'roll': 1.0, 'toy': 2.0, 'likes': 1.0, 'a': 4.0, 's': 2.0, 'head': 1.0, 'goes': 1.0, 'smoothly': 1.0, 'along': 1.0, 'back': 1.0, 'but': 1.0, 'pulls': 1.0, 'this': 2.0, 'perfect': 1.0, 'is': 1.0, 'bit': 1.0, 'forth': 1.0, 'short': 1.0}
Word element => {'months': 1.0, 'few': 1.0, 'surely': 1.0, 'will': 1.0, 'he': 1.0, 'bought': 1.0, 'enjoy': 1.0, 'our': 1.0, 'in': 1.0, 'for': 1.0, 'new': 1.0, 'the': 1.0, 'grandson': 1.0, 'loved': 1.0, 'this': 1.0, 'other': 1.0, 'grandkids': 1.0, 'a': 1.0, 'them': 2.0}
Word element => {'all': 1.0, 'marks': 1.0, 'chew': 1.0, 'already': 1.0, 'chewed': 1.0, 'being': 1.0, 'are': 2.0, 'my': 1.0, 'they': 2.0, 'the': 1.0, 'these': 1.0, 'blocks': 2.0, 'within': 1.0, 'absolutely': 1.0, 'month': 1.0, 'multiple': 1.0, 'daughter': 1.0, 'loves': 1.0, 'old': 1.0, '11': 1.0, 'one': 1.0, 'there': 1.0, 'of': 2.0, 'favorite': 1.0, 'toys': 1.0, 'her': 1.0, 'so': 1.0, 'however': 1.0, 'over': 1.0, 'peel': 1.0, 'seconds': 1.0, 'just': 1.0, 'a': 1.0, 'few': 1.0}
Word element => {'what': 1.0, 'perfectly': 1.0, 'work': 1.0, 'bath': 1.0, 'the': 1.0, 'in': 1.0, 'for': 2.0, 'blocks': 1.0, 'bought': 1.0, 'watch': 1.0, 'this': 1.0, 'have': 1.0, 'my': 1.0, 'dr': 1.0, 'are': 1.0, 'achieve': 1.0, 'trying': 1.0, 'you': 2.0, 's': 1.0, 'i': 2.0, 'seuss': 1.0, 'of': 1.0, 'set': 2.0, 'bathroom': 1.0, 'they': 2.0, 'daughter': 1.0, 'where': 1.0, 'cardboard': 1.0, 'however': 1.0, 'so': 1.0, 'was': 1.0, 'to': 2.0, 'them': 1.0}
Word element => {'room': 1.0, 's': 1.0, 'in': 1.0, 'items': 1.0, 'small': 1.0, 'played': 1.0, 'be': 1.0, 'as': 1.0, 'best': 1.0, 'absolutely': 1.0, 'can': 1.0, 'they': 2.0, 'putting': 1.0, 'not': 1.0, 'great': 1.0, 'these': 1.0, 'the': 3.0, 'are': 2.0, 'only': 1.0, 'older': 1.0, 'with': 1.0, 'now': 1.0, 'blocks': 1.0, 'gets': 1.0, 'when': 1.0, 'baby': 2.0, 'but': 1.0, 'for': 3.0}
Word element => {'tear': 1.0, 'are': 1.0, 'puts': 1.0, 'my': 1.0, 'they': 1.0, 'that': 1.0, 'stacking': 1.0, 'be': 1.0, 'to': 1.0, 'just': 1.0, 'mouth': 1.0, 'of': 1.0, 'boxes': 1.0, 'will': 1.0, 'begin': 1.0, 'aware': 1.0, 'great': 1.0, 'it': 1.0, 'paper': 1.0, 'so': 1.0, 'if': 1.0, 'made': 1.0, 'child': 1.0, 'in': 1.0}
Word element => {'would': 1.0, 'i': 1.0, 'of': 1.0, 'on': 1.0, 'adorable': 1.0, 'boxes': 1.0, 'every': 1.0, 'will': 1.0, 'nice': 1.0, 'and': 1.0, 'child': 1.0, 'love': 1.0, 'again': 1.0, 'buy': 1.0, 'stacking': 1.0, 'them': 1.0, 'side': 1.0, 'photos': 1.0, 'the': 2.0, 'words': 1.0}
Word element => {'time': 1.0, 'long': 1.0, 'blocks': 1.0, 'playing': 1.0, 'enjoy': 1.0, 'girl': 1.0, 'baby': 2.0, 'will': 1.0, 'book': 1.0, 'liked': 1.0, 'for': 2.0, 'these': 1.0, 'the': 3.0, 'themed': 1.0, 'i': 2.0, 'gift': 1.0, 'dr': 1.0, 'a': 4.0, 'with': 1.0, 'it': 1.0, 'shower': 1.0, 'this': 2.0, 'as': 1.0, 'and': 2.0, 'purchased': 1.0, 'stacking': 1.0, 'be': 1.0, 'to': 2.0, 'was': 1.0, 'mom': 1.0, 'nice': 1.0, 'addition': 1.0, 'seuss': 1.0, 'hope': 1.0, 'books': 1.0, 'clothes': 1.0}
Word element => {'would': 1.0, 'i': 1.0, 'over': 2.0, 'them': 2.0, 'played': 1.0, 'my': 1.0, 'highly': 1.0, 'and': 2.0, 'recommend': 1.0, '1': 2.0, 'blocks': 1.0, 'with': 1.0, '2': 1.0, 'year': 1.0, 'these': 1.0, 'we': 1.0, 'old': 1.0, 'have': 1.0, 'loves': 1.0}
Word element => {'colors': 1.0, 'vibrant': 1.0, 'very': 1.0, 'them': 1.0, 'my': 2.0, 'these': 1.0, 'play': 1.0, 'loves': 1.0, 'year': 1.0, 'starting': 1.0, 'month': 1.0, 'with': 1.0, '2': 1.0, '10': 1.0, 'is': 1.0, 'old': 2.0, 'to': 1.0}
Word element => {'5': 1.0, 'pulling': 1.0, 'nicely': 1.0, 'up': 1.0, 'holds': 1.0, 'off': 1.0, 'pops': 1.0, 'if': 2.0, 'cup': 1.0, 'suction': 1.0, 'in': 1.0, 'face': 1.0, 'star': 1.0, 'crinkly': 1.0, 'side': 1.0, 'good': 1.0, 'ribbons': 1.0, 'chewing': 1.0, 'seems': 1.0, 'when': 1.0, 'gives': 1.0, 'just': 1.0, 'few': 1.0, 'breakfast': 1.0, 'minutes': 1.0, 'was': 1.0, 'seat': 2.0, 'as': 2.0, 'to': 5.0, 'need': 1.0, 'wanted': 1.0, 'had': 1.0, 'do': 1.0, 'its': 1.0, 'wheel': 1.0, 'convenient': 1.0, 'on': 3.0, 'put': 1.0, 'but': 1.0, 'middle': 1.0, 'son': 2.0, 'busy': 1.0, 'didn': 1.0, 'got': 1.0, 'use': 1.0, 'every': 1.0, 'parents': 1.0, 'he': 2.0, 'wonder': 1.0, 'stars': 1.0, 'for': 1.0, 'this': 1.0, 'it': 9.0, 'me': 1.0, 'not': 2.0, 'rate': 1.0, 'like': 1.0, 'table': 1.0, 'keep': 1.0, 'bigger': 1.0, 'read': 1.0, 'and': 4.0, 'did': 1.0, 'getting': 2.0, 'would': 1.0, 'something': 1.0, 'my': 3.0, 'high': 1.0, 'job': 1.0, 'the': 9.0, 'does': 1.0, 'because': 2.0, 'than': 1.0, 'well': 2.0, 'likes': 1.0, 'expected': 1.0, 'size': 1.0, 'closely': 1.0, 'so': 1.0, 'could': 1.0, 't': 1.0, 'a': 2.0, 's': 2.0, 'morning': 1.0, 'taking': 1.0, '4': 1.0, 'i': 11.0, 'restaurants': 1.0, 'ready': 1.0, 'his': 2.0, 'chair': 1.0, 'tugging': 1.0, 'properly': 1.0, 'while': 1.0, 'm': 1.0}
Word element => {'will': 1.0, 't': 1.0, 'and': 1.0, 'a': 2.0, 'entertained': 1.0, 'don': 1.0, 'toy': 1.0, 'highly': 1.0, 'think': 1.0, 'quite': 1.0, 'recommend': 1.0, 'table': 1.0, 'by': 1.0, 'in': 1.0, 'for': 1.0, 'sitting': 1.0, 'month': 1.0, 'is': 1.0, 'disappoint': 1.0, '6': 1.0, 'her': 1.0, 'my': 1.0, 'high': 1.0, 'chair': 1.0, 'old': 1.0, 'i': 2.0, 'it': 1.0, 'this': 2.0, 'looked': 1.0, 'top': 1.0, 'around': 1.0, 'bit': 1.0}
Word element => {'recommend': 1.0, 'to': 1.0, 'more': 1.0, 'contacting': 1.0, 'be': 2.0, 'product': 1.0, 'right': 2.0, 'happy': 1.0, 'able': 1.0, 'all': 1.0, 'promised': 1.0, 'will': 2.0, 'and': 3.0, 'as': 1.0, 'very': 1.0, 'are': 1.0, 'promptly': 1.0, 'parents': 1.0, 'for': 2.0, 'new': 1.0, 'purchaseed': 1.0, 'sure': 1.0, 'delivered': 1.0, 'i': 2.0, 'am': 1.0, 'mom': 1.0, 'baby': 1.0, 'price': 1.0, 'dad': 1.0}
Word element => {'makes': 1.0, 'which': 1.0, 'better': 1.0, 'deal': 1.0, 'shipping': 1.0, 'even': 2.0, 'free': 1.0, 'priced': 1.0, 'reasonably': 1.0, 'i': 2.0, 'really': 1.0, 'this': 1.0, 'liked': 1.0, 'product': 1.0, 'the': 2.0, 'are': 1.0, 'blankets': 1.0, 'and': 2.0, 'got': 1.0, 'so': 1.0, 'soft': 1.0}
Word element => {'this': 1.0, 'recommend': 1.0, 'i': 1.0, 'small': 1.0, 'all': 1.0, 'especially': 1.0, 'is': 1.0, 'absorbancy': 1.0, 'soft': 1.0, 'at': 1.0, 'would': 1.0, 'not': 3.0, 'after': 1.0, 'multiple': 1.0, 'very': 2.0, 'and': 1.0, 'washes': 1.0}
Word element => {'them': 1.0, 'a': 1.0, 'find': 1.0, 'think': 1.0, 'is': 1.0, 'price': 1.0, 'for': 2.0, 'of': 1.0, 'pieces': 1.0, 'ones': 1.0, 'before': 1.0, 'and': 3.0, 'ok': 1.0, 'very': 1.0, 'spasilk': 1.0, 'washcloth': 1.0, 'are': 1.0, 'small': 1.0, 'use': 1.0, 'purchased': 1.0, 'this': 2.0, 'cotton': 1.0, 'was': 1.0, 'towels': 1.0, 'had': 1.0, 'cloth': 1.0, 'i': 3.0, 'thick': 1.0, 'flimsy': 1.0, '100': 1.0, 'absorbent': 1.0, 'thin': 1.0, 'will': 1.0, 'but': 1.0, 'nice': 1.0, '10': 1.0}
Word element => {'with': 1.0, 'curl': 1.0, 'start': 1.0, 'may': 2.0, 'washings': 1.0, 'infant': 1.0, 'but': 1.0, 'an': 1.0, 'enough': 1.0, 'be': 1.0, 'washing': 1.0, 'bit': 1.0, 'for': 1.0, 'one': 1.0, 'after': 1.0, 'even': 1.0, 'low': 1.0, 'big': 1.0, 'very': 2.0, 'or': 1.0, 'quite': 1.0, 'soft': 1.0, 'shrink': 2.0, 'are': 1.0, 'more': 1.0, 'the': 1.0, 'these': 1.0, 'continue': 1.0, 'they': 2.0, 'on': 2.0, 'a': 2.0, 'edges': 1.0, 'and': 2.0, 'setting': 1.0, 'do': 1.0, 'cute': 1.0, 'drying': 1.0, 'still': 1.0, 'look': 1.0, 'to': 3.0, 'seem': 1.0}
Word element => {'6': 1.0, '9': 1.0, 'worth': 1.0, 'not': 1.0, 'face': 1.0, 'down': 1.0, 'thin': 1.0, 'very': 2.0, 'baby': 2.0, 'price': 1.0, '5': 1.0, 'are': 1.0, 'paid': 1.0, 'only': 1.0, 'wipping': 1.0, 'and': 4.0, 'disappointed': 1.0, 'wash': 1.0, 'sells': 1.0, 'order': 1.0, 'little': 1.0, 'packets': 1.0, 'they': 2.0, 'buy': 2.0, 'cloth': 1.0, 'i': 1.0, 'love': 1.0, 'for': 3.0, 'cleaning': 1.0, 'them': 2.0, 'came': 1.0, 'but': 1.0, 'back': 1.0, 'to': 1.0, 'great': 1.0, '99': 3.0, 'these': 1.0, 'more': 1.0, 'the': 1.0, 'have': 1.0, 'doubled': 1.0}
Word element => {'second': 1.0, 'okay': 1.0, 'be': 1.0, 'probably': 1.0, 'will': 1.0, 'baby': 1.0, 'wipe': 1.0, 'so': 2.0, 'after': 1.0, 'small': 1.0, 'thickness': 1.0, 'container': 1.0, 'diaper': 2.0, 'bought': 1.0, 'solution': 1.0, 'use': 3.0, 'the': 3.0, 'job': 1.0, 'too': 2.0, 'and': 4.0, 'reusable': 1.0, 'getting': 1.0, 'need': 1.0, 'wipes': 3.0, 'as': 1.0, 'big': 1.0, 'year': 1.0, 'messed': 1.0, 'it': 2.0, 'for': 4.0, 'absorbency': 1.0, 'does': 1.0, 'much': 3.0, 'works': 1.0, 'own': 1.0, 't': 2.0, 'a': 4.0, 'stitching': 1.0, 'little': 2.0, 'edge': 1.0, 'disposable': 1.0, 'are': 1.0, 'but': 1.0, 'of': 1.0, 'don': 1.0, 'up': 2.0, 'abuse': 1.0, 'holes': 1.0, 'they': 1.0, 'is': 1.0, 'still': 1.0, 'or': 1.0, 'held': 1.0}
Word element => {'price': 1.0, 'for': 1.0, 'one': 1.0, 'few': 1.0, 'fray': 2.0, 'didn': 1.0, 'but': 1.0, 'ours': 1.0, 'washings': 2.0, 'first': 1.0, 'only': 1.0, 'buy': 1.0, 'are': 1.0, 'great': 2.0, 'the': 4.0, 't': 2.0, 'after': 1.0, 'material': 1.0, 'edges': 1.0, 'do': 1.0, 'couldn': 1.0, '4': 1.0, '5': 1.0, 'they': 1.0, 'better': 1.0, 'is': 1.0}
Word element => {'some': 1.0, 'buy': 1.0, 'to': 1.0, 'money': 1.0, 'spend': 1.0, 'wash': 1.0, 'too': 1.0, 'thin': 1.0, 'washcloth': 1.0, 'more': 1.0, 'small': 1.0, 'better': 1.0, 'they': 1.0, 'did': 1.0, 'i': 1.0, 'one': 1.0, 'and': 1.0, 'up': 1.0, 'material': 1.0, 'would': 1.0, 'not': 1.0, 'hold': 1.0, 'after': 1.0}
Word element => {'eyes': 1.0, 's': 1.0, 'wiping': 1.0, 'things': 1.0, 'to': 1.0, 'use': 1.0, 'then': 1.0, 'them': 1.0, 're': 2.0, 'small': 2.0, 'are': 2.0, 'and': 3.0, 'thin': 3.0, 'like': 2.0, 'baby': 2.0, 'cloths': 1.0, 'wash': 1.0, 'perfect': 1.0, 'because': 1.0, 'not': 1.0, 'great': 1.0, 'the': 1.0, 'these': 1.0, 'they': 2.0, 'face': 1.0, 'sure': 1.0, 'why': 1.0, 'people': 1.0, 'faulting': 1.0, 'being': 1.0, 'for': 2.0, 'i': 1.0, 'that': 1.0}
Word element => {'got': 1.0, 'have': 1.0, 'buy': 2.0, 'over': 1.0, 'it': 1.0, 'things': 1.0, 'those': 1.0, 'one': 1.0, 'another': 1.0, 'purchase': 1.0, 'my': 1.0, 'of': 2.0, 'because': 2.0, 'keeping': 1.0, 'aware': 1.0, 'pack': 1.0, 'dollars': 2.0, 'great': 1.0, 'colors': 1.0, 'love': 1.0, 'for': 2.0, 'washcloths': 2.0, 'and': 3.0, 'get': 1.0, 'i': 7.0, 'be': 1.0, 'purchased': 1.0, 'this': 1.0, 'assorted': 1.0, 'at': 2.0, 'no': 1.0, 'to': 1.0, 'patterns': 1.0, 'that': 1.0, 'tj': 1.0, 'but': 1.0, 'four': 1.0, 'are': 3.0, 'might': 1.0, 'a': 3.0, 'very': 1.0, 'maxx': 1.0, 'little': 1.0, 'also': 1.0, 'item': 1.0, 'seven': 1.0, 'on': 1.0, 'the': 4.0, 'deal': 1.0, 'thin': 1.0, 'side': 1.0, 'firstly': 1.0, 'fine': 1.0, 'exact': 1.0, 'there': 1.0, 'way': 1.0, 'when': 1.0, 'you': 2.0, 'price': 2.0, 'm': 1.0, 'd': 2.0, 'difficult': 1.0, 'pay': 1.0, 'or': 1.0, 'baby': 1.0, 'them': 3.0, 'same': 1.0, 'if': 2.0, 'more': 1.0, 'is': 2.0, 'say': 1.0, 'they': 1.0}
Word element => {'color': 1.0, 'bright': 1.0, 'the': 1.0, 'keep': 1.0, 'wash': 1.0, 'bought': 1.0, 'baby': 1.0, 'they': 1.0, 'these': 1.0, 'with': 1.0, 'to': 1.0, 'easy': 1.0, 'diapers': 1.0, 'use': 1.0, 'nicely': 1.0, 'and': 1.0, 'as': 1.0, 'cloth': 1.0, 'wipes': 1.0, 'out': 1.0}
Word element => {'pointless': 1.0, 'very': 1.0, 'and': 1.0, 'practically': 1.0, 'thin': 1.0, 'tiny': 1.0, 'i': 2.0, 'fooled': 1.0, 'by': 1.0, 'wish': 1.0, 'd': 1.0, 'terry': 1.0, 'these': 1.0, 'read': 1.0, 'are': 1.0, 'the': 2.0, 'reviews': 1.0, 'scratchy': 1.0, 'word': 1.0, 'was': 1.0}
Word element => {'rags': 1.0, 'thin': 1.0, 'good': 2.0, 'be': 1.0, 'to': 1.0, 'if': 1.0, 'them': 1.0, 'bathes': 1.0, 'wipes': 1.0, 'very': 1.0, 'as': 1.0, 'trying': 1.0, 'you': 1.0, 'might': 1.0, 'are': 1.0, 'these': 1.0, 'reusable': 1.0, 'do': 1.0, 'but': 1.0, 'instead': 1.0, 'use': 1.0, 'not': 1.0, 'for': 1.0, 're': 1.0, 'dust': 1.0}
Word element => {'quality': 1.0, 'and': 1.0, 'thin': 1.0, 'also': 1.0, 'is': 1.0, 'size': 1.0, 'soft': 1.0, 'i': 2.0, 'wish': 1.0, 'just': 1.0, 'favorites': 1.0, 'have': 1.0, 'bought': 1.0, 'correct': 1.0, 'the': 1.0, 'more': 1.0, 'my': 1.0, 'are': 3.0, 'these': 1.0, 'they': 2.0, 'good': 1.0, 'really': 1.0}
Word element => {'face': 1.0, 'designed': 1.0, 'wash': 2.0, 'also': 1.0, 'get': 1.0, 'and': 1.0, 'value': 1.0, 'was': 1.0, 'towels': 1.0, 'you': 2.0, 'when': 1.0, 'charge': 1.0, 'i': 1.0, 'bought': 1.0, 'super': 1.0, '10': 1.0, 'spasilk': 1.0, 'are': 3.0, 'wonderful': 1.0, 'can': 1.0, 'have': 1.0, 'with': 1.0, 'always': 1.0, '6': 1.0, 'of': 1.0, 'this': 3.0, 'soft': 2.0, 'for': 4.0, 'the': 2.0, 'great': 1.0, 'price': 1.0, 'cloths': 2.0, 'products': 1.0, 'others': 1.0, 'before': 1.0, '5': 1.0, 'a': 1.0, 't': 1.0, 'go': 1.0, 'not': 1.0, 'wrong': 1.0, 'purchase': 1.0, 'instead': 1.0, 'extra': 1.0, 'little': 1.0, 'faces': 1.0, 'paper': 1.0, 'or': 1.0, 'wipes': 1.0, 'that': 1.0}
Word element => {'cute': 1.0, 'fast': 1.0, 'while': 1.0, 'out': 1.0, 'and': 2.0, 'squeeze': 1.0, 'to': 1.0, 'love': 1.0, 'one': 1.0, 'with': 1.0, 'used': 1.0, 'can': 1.0, 'so': 1.0, 'thin': 1.0, 'are': 3.0, 'colors': 1.0, 'washcloths': 1.0, 'baby': 2.0, 'about': 1.0, 'price': 1.0, 'bathing': 1.0, 'a': 1.0, 'dry': 1.0, 'they': 4.0, 'the': 4.0, 'these': 2.0, 'water': 1.0, 'half': 1.0, 'from': 1.0, 'hand': 1.0, 'terrific': 1.0, 'cost': 1.0, 'babies': 1.0, 'of': 1.0, 'perfect': 1.0, 'cloths': 1.0, 'wash': 1.0, 'then': 1.0, 'got': 1.0, 'i': 1.0, 'too': 2.0, 'considering': 1.0, 'us': 1.0, 'excess': 1.0, 'be': 1.0, 'r': 1.0}
Word element => {'them': 1.0, 'to': 1.0, 'is': 1.0, 'suggestion': 1.0, 'use': 1.0, 'practical': 1.0, 'too': 1.0, 'i': 1.0, 'really': 1.0, 'however': 1.0, 'they': 1.0, 'make': 1.0, 'my': 1.0, 'small': 1.0, 'the': 1.0, 'are': 1.0, 'for': 1.0, 'patterns': 1.0, 'like': 1.0, 'and': 1.0, 'way': 1.0, 'larger': 1.0, 'colors': 1.0}
Word element => {'6': 1.0, 'under': 1.0, 'is': 1.0, 'product': 1.0, 'all': 1.0, 'of': 1.0, 'and': 2.0, 'deal': 1.0, 'that': 1.0, 'buy': 1.0, 'awesome': 1.0, 'most': 1.0, 'patterns': 1.0, 'i': 2.0, 'great': 1.0, 'love': 2.0, 'the': 2.0, 'colors': 1.0}
Word element => {'other': 1.0, 'is': 1.0, 'side': 1.0, 'printed': 1.0, 'the': 2.0, 'ones': 1.0, 'little': 1.0, 'rougher': 1.0, 'my': 1.0, 'with': 1.0, 'lot': 1.0, 'a': 2.0, 'them': 2.0, 'of': 1.0, 'leak': 1.0, 'need': 1.0, 'thin': 1.0, 'like': 1.0, 'are': 1.0, 'price': 1.0, 'i': 2.0, 'bad': 1.0, 'they': 1.0, 'but': 1.0, 'absorb': 1.0, 'because': 1.0, 'not': 1.0, 'than': 1.0, 'milk': 1.0, 'small': 1.0, 'so': 1.0, 'to': 1.0, 'from': 1.0}
Word element => {'forever': 1.0, 'last': 1.0, 'expect': 1.0, 'don': 1.0, 'but': 1.0, 'fade': 1.0, 'bathtub': 1.0, 'a': 1.0, 'to': 2.0, 'soft': 1.0, 'easily': 2.0, 'face': 1.0, 'inexpensive': 1.0, 'travel': 1.0, 'friendly': 1.0, 'very': 1.0, 'trick': 1.0, 'are': 2.0, 'they': 3.0, 't': 1.0, 'the': 2.0, 'these': 1.0, 'and': 2.0, 'do': 2.0, 'them': 2.0, 'in': 1.0, 'cloths': 1.0, 'wash': 1.0, 'replaceable': 1.0, 'i': 2.0, 'use': 2.0, 'for': 2.0, 'light': 1.0, 'cleanups': 1.0, 'after': 1.0, 'meals': 1.0}
Word element => {'highly': 1.0, 'it': 1.0, 'worth': 1.0, 'recommended': 1.0, 'well': 1.0, 'packs': 1.0, 'more': 1.0, 'hand': 1.0, 'using': 1.0, 'right': 1.0, 'start': 1.0, 'probably': 1.0, 'rougher': 1.0, 'side': 2.0, 'this': 1.0, 'soft': 1.0, 'they': 2.0, 'moisture': 1.0, 'crannies': 1.0, 'terrific': 2.0, 'nooks': 1.0, 'enough': 4.0, 'done': 1.0, 'but': 2.0, 'work': 1.0, 'detailed': 1.0, 'water': 1.0, 'warm': 1.0, 'in': 3.0, 'on': 1.0, 'make': 1.0, 'bath': 1.0, 'absorbent': 1.0, 'stuff': 1.0, 'now': 1.0, 'thin': 1.0, 'wrung': 1.0, 'major': 1.0, 'ones': 1.0, 'the': 7.0, 'diaper': 2.0, 'these': 3.0, 'great': 1.0, 'couldn': 1.0, 'changes': 2.0, '100': 1.0, 'during': 1.0, 'up': 1.0, 'll': 1.0, 'bottom': 2.0, 'of': 1.0, 'effective': 1.0, 'cleaning': 2.0, 'clean': 1.0, 'sure': 1.0, 'get': 3.0, 'towel': 1.0, 'out': 2.0, 'two': 1.0, 'i': 6.0, 'to': 8.0, 'beat': 1.0, 'have': 2.0, 'small': 2.0, 'and': 5.0, 'washcloths': 2.0, 'them': 1.0, 'wipe': 1.0, 'baby': 1.0, 'eventually': 1.0, 'my': 2.0, 'lo': 1.0, 'retain': 1.0, 'needed': 1.0, 'for': 5.0, 'love': 1.0, 'cotton': 1.0, 'be': 2.0, 'spa': 1.0, 'soaked': 1.0, 'from': 1.0, 'silk': 1.0, 'set': 2.0, 'washcloth': 1.0, 'then': 2.0, 'thought': 1.0, 'purchased': 2.0, 'try': 1.0, 'use': 4.0, 't': 1.0, 's': 2.0, 'a': 4.0, 'are': 3.0}
Word element => {'of': 1.0, 'a': 1.0, 'just': 1.0, 'suckered': 1.0, 'not': 1.0, 'what': 1.0, 'buying': 1.0, 'to': 1.0, 'exactly': 1.0, 'get': 1.0, 'and': 2.0, 'big': 1.0, 'best': 1.0, 'as': 1.0, 'be': 2.0, 'supposed': 1.0, 'these': 1.0, 'the': 1.0, 'are': 1.0, 'pack': 1.0, 'thing': 1.0, 'they': 1.0, 'time': 1.0, 'i': 2.0, 'is': 1.0, 'second': 1.0, 'use': 1.0, 'them': 1.0, 'into': 1.0, 'burp': 2.0, 'wash': 1.0, 'also': 1.0, 'cloths': 3.0, 'around': 1.0, 'will': 1.0}
Word element => {'fell': 1.0, 'that': 1.0, 'other': 1.0, 'purchased': 1.0, 'never': 1.0, 'have': 1.0, 'frayed': 1.0, 'dangling': 1.0, 'always': 1.0, 'now': 1.0, 'am': 1.0, 'i': 2.0, 'quickly': 1.0, 'two': 1.0, 'or': 2.0, 'apart': 1.0, 'perfect': 1.0, 'unraveling': 1.0, 'any': 1.0, 'washcloths': 2.0, 'are': 1.0, 'the': 5.0, 'these': 1.0, 'uses': 1.0, 'on': 2.0, 'is': 1.0, 'dealing': 1.0, 'but': 1.0, 'quality': 1.0, 'with': 1.0, 'only': 1.0, 'designs': 1.0, 'they': 1.0, 'poor': 1.0, 'cute': 1.0, 'began': 1.0, 'size': 1.0, 'stitching': 1.0, 'and': 2.0, 'edges': 2.0, 'so': 1.0, 'after': 1.0, 'strings': 1.0, 'love': 1.0, 'one': 1.0}
Word element => {'in': 1.0, 'package': 1.0, 'perfect': 1.0, 'get': 1.0, 'you': 1.0, 'baby': 1.0, 'these': 1.0, 'amount': 1.0, 'do': 1.0, 'the': 3.0, 'trick': 1.0, 'and': 1.0, 'quality': 1.0, 'very': 1.0, 'too': 1.0, 'your': 1.0, 'soft': 1.0, 'good': 1.0, 'of': 1.0}
Word element => {'washcloth': 1.0, 'something': 1.0, 'disappointing': 1.0, 'getting': 1.0, 'what': 1.0, 'price': 1.0, 'at': 1.0, 'be': 1.0, 'then': 1.0, 'mislead': 1.0, 'good': 2.0, 'prepared': 1.0, 'gentle': 1.0, 'spent': 1.0, 'for': 3.0, 'any': 1.0, 'normal': 1.0, 'are': 6.0, 'durable': 1.0, 'yes': 1.0, 'know': 1.0, 'typical': 1.0, 'you': 5.0, 'thin': 2.0, 'looking': 3.0, 'if': 3.0, 'these': 1.0, 'haven': 1.0, 'little': 1.0, 'very': 1.0, 's': 2.0, 'a': 4.0, 't': 1.0, 'might': 1.0, 'so': 1.0, 'time': 1.0, 'they': 2.0, 'probably': 1.0, 'slightly': 1.0, 'this': 1.0, 'it': 3.0, 'is': 2.0, 'bargain': 1.0, 'small': 1.0, 'of': 1.0, 'lifetime': 1.0, 'the': 2.0, 'deal': 1.0, 'but': 2.0, 'into': 1.0, 'that': 2.0, 'eyeglass': 1.0, 'larger': 1.0, 'sized': 1.0, 'than': 1.0, 'cloth': 1.0, 'thinking': 1.0, 'i': 1.0, 'washcloths': 1.0, 'and': 2.0, 'was': 1.0}
Word element => {'being': 1.0, 'just': 1.0, 'guess': 1.0, 'also': 1.0, 'use': 1.0, 'big': 1.0, 'makes': 1.0, 'doesn': 2.0, 'intended': 1.0, 'guy': 1.0, 'absorbent': 1.0, 'little': 1.0, 'very': 1.0, 'and': 1.0, 'end': 1.0, 'tiny': 1.0, 'incredibly': 1.0, 'but': 2.0, 'be': 1.0, 'would': 1.0, 'thought': 1.0, 'so': 2.0, 'these': 1.0, 'cloths': 1.0, 'regular': 1.0, 'with': 1.0, 'they': 6.0, 'has': 1.0, 'this': 1.0, 'at': 1.0, 'since': 2.0, 'see': 1.0, 'from': 1.0, 'seem': 1.0, 'son': 1.0, 'were': 1.0, '9': 1.0, 'better': 1.0, '5': 2.0, 'texture': 1.0, 'two': 1.0, 'mess': 1.0, 'i': 11.0, 'price': 2.0, 'he': 2.0, '99': 3.0, 'the': 2.0, 'write': 1.0, 'his': 1.0, 'our': 1.0, 'as': 3.0, 'to': 4.0, 'cleaned': 1.0, 'purpose': 1.0, 'surprised': 1.0, 'babies': 1.0, 'that': 5.0, 'been': 1.0, 'felt': 1.0, 'many': 1.0, 't': 2.0, 'a': 2.0, 'hardly': 1.0, 'worth': 1.0, 'not': 2.0, 'like': 1.0, 'know': 1.0, 'using': 1.0, 'for': 3.0, 'baby': 1.0, 'softer': 3.0, 'them': 2.0, 'wipes': 1.0, 'face': 1.0, 'thin': 1.0, 'hates': 1.0, 'reviewers': 1.0, 'are': 5.0, 'having': 1.0, 'usually': 1.0, 'because': 1.0, 'maybe': 1.0, 'raised': 1.0, 'bought': 2.0, 'my': 2.0, 'am': 2.0, 'when': 1.0, 'up': 2.0, 'wash': 2.0, 'after': 1.0, 'prefer': 1.0, 'meals': 1.0}
Word element => {'cute': 1.0, 'face': 1.0, 'or': 1.0, 'her': 1.0, 'clean': 1.0, 'need': 1.0, 'just': 1.0, 'of': 1.0, 'even': 1.0, 'love': 1.0, 'really': 1.0, 'spit': 1.0, 'serve': 1.0, 'almost': 1.0, 'it': 1.0, 'difficult': 1.0, 'was': 1.0, 'cloth': 1.0, 'up': 1.0, 'wash': 2.0, 'because': 1.0, 'sized': 1.0, 'adult': 1.0, 'larger': 1.0, 'use': 2.0, 'trying': 1.0, 'their': 1.0, 'dried': 1.0, 'my': 1.0, 'may': 1.0, 'hand': 1.0, 'keep': 1.0, 'they': 3.0, 'in': 2.0, 'newborn': 2.0, 'outside': 1.0, 'as': 2.0, 'to': 3.0, 'with': 2.0, 'skin': 2.0, 'side': 2.0, 'when': 1.0, 'you': 2.0, 'what': 1.0, 'both': 1.0, 'that': 3.0, 'great': 1.0, 'some': 1.0, 'cloths': 1.0, 'these': 2.0, 'the': 2.0, 'is': 2.0, 'more': 2.0, 'about': 1.0, 'them': 1.0, 'softer': 1.0, 'baby': 1.0, 'could': 1.0, 's': 1.0, 'a': 5.0, 'are': 3.0, 'so': 2.0, 'infant': 1.0, 'toddler': 1.0, 'wrestling': 1.0, 'bathtub': 1.0, 'small': 1.0, 'have': 2.0, 'and': 3.0, 'towel': 1.0, 'easy': 2.0, 'get': 1.0, 'i': 3.0, 'texture': 1.0, 'gentle': 1.0, 'bath': 1.0, 'your': 1.0, 'on': 3.0, 'but': 1.0, 'can': 1.0, 'definitely': 1.0, 'help': 1.0, 're': 1.0, 'off': 2.0, 'anything': 1.0}
Word element => {'fyi': 1.0, 'the': 3.0, 'rough': 2.0, 'up': 1.0, 'and': 2.0, 'clean': 1.0, 'time': 3.0, 'feeding': 1.0, 'everything': 1.0, 'design': 1.0, 'other': 1.0, 'we': 2.0, 'remember': 1.0, 'washcloth': 2.0, 'smooth': 1.0, 'bath': 1.0, 'use': 1.0, 'just': 1.0, 'spills': 1.0, 'you': 1.0, 'have': 1.0, 'name': 1.0, 'this': 2.0, 'it': 2.0, 'used': 1.0, 'for': 2.0, 'one': 1.0, 'is': 3.0, 'side': 4.0}
Word element => {'infant': 1.0, 'mean': 1.0, 'from': 1.0, 'bigger': 1.0, 'would': 1.0, 'some': 1.0, 'reason': 1.0, 'these': 2.0, 'they': 1.0, 'the': 1.0, 'are': 2.0, 'sooo': 1.0, 'tiny': 2.0, 'be': 1.0, 'adorable': 1.0, 'for': 1.0, 'pics': 1.0, 'i': 2.0, 'but': 1.0, 'thought': 1.0}
Word element => {'washing': 1.0, 'frequent': 1.0, 'up': 1.0, 'and': 1.0, 'clean': 1.0, 'diapers': 1.0, 'to': 4.0, 'as': 1.0, 'hold': 1.0, 'far': 1.0, 'wipes': 1.0, 'few': 1.0, 'well': 1.0, 'a': 1.0, 'soft': 1.0, 'days': 1.0, 'go': 1.0, 'thin': 1.0, 'these': 1.0, 'they': 2.0, 'use': 1.0, 'got': 1.0, 'so': 2.0, 'cloth': 2.0, 'i': 2.0, 'with': 1.0, 'ago': 1.0, 'my': 1.0, 'are': 1.0, 'hope': 1.0, 'good': 1.0, 'enough': 1.0}
Word element => {'cleaning': 1.0, 'but': 1.0, 'huge': 1.0, 'pick': 1.0, 'wouldn': 1.0, 'skin': 1.0, 'gentle': 1.0, 'perfect': 1.0, 'soft': 1.0, 'very': 1.0, 'well': 1.0, 'lightweight': 1.0, 'are': 2.0, 'so': 1.0, 'after': 1.0, 'had': 1.0, 'because': 1.0, 'mess': 1.0, 'i': 6.0, 'much': 1.0, 'baby': 4.0, 'them': 3.0, 'received': 2.0, 'throughout': 1.0, 'came': 1.0, 'set': 1.0, 'fold': 1.0, 'up': 2.0, 'more': 1.0, 'of': 1.0, 'shower': 1.0, 'gift': 1.0, 'to': 3.0, 'any': 1.0, 'as': 3.0, 'washcloths': 2.0, 'and': 4.0, 'use': 2.0, 'on': 1.0, 'bath': 1.0, 'in': 1.0, 'flat': 1.0, 't': 1.0, 'a': 3.0, 's': 2.0, 'clean': 1.0, 'her': 1.0, 'face': 1.0, 'other': 1.0, 'that': 1.0, 'for': 1.0, 'love': 1.0, 'actually': 1.0, 'buy': 1.0, 'unlike': 1.0, 'day': 1.0, 'lay': 1.0, 'the': 4.0, 'without': 1.0, 'these': 2.0, 'bunching': 1.0, 'rolling': 1.0, 'or': 1.0, 'they': 2.0}
Word element => {'clothes': 1.0, 'knows': 1.0, 'like': 1.0, 'them': 1.0, 'for': 2.0, 'size': 1.0, 'wash': 1.0, 'also': 1.0, 'perfect': 1.0, 'pattern': 1.0, 'soft': 1.0, 'are': 1.0, 'of': 1.0, 'method': 1.0, 'touch': 1.0, 'cleansing': 1.0, 'i': 4.0, 'my': 3.0, 'a': 1.0, 'very': 1.0, 'as': 1.0, 'oil': 1.0, 'the': 3.0, 'these': 2.0, 'they': 1.0, 'purchased': 1.0, 'use': 2.0, 'and': 2.0, 'me': 1.0, 'dermatologist': 1.0, 'what': 2.0, 'part': 1.0, 'that': 1.0, 'recommended': 1.0, 'husband': 1.0, 'was': 1.0, 'to': 3.0, 'by': 1.0, 'not': 1.0, 'because': 1.0, 'steam': 1.0, 'face': 1.0}
Word element => {'be': 1.0, 'll': 1.0, 'they': 1.0, 'them': 1.0, 'sewing': 1.0, 'and': 1.0, 'wipes': 2.0, 'doubling': 1.0, 'at': 1.0, 'all': 1.0, 'didn': 1.0, 'entire': 1.0, 'like': 1.0, 'together': 1.0, 'unraveled': 1.0, 'up': 2.0, 'backup': 1.0, 'cloth': 1.0, 'i': 3.0, 'tag': 2.0, 'when': 1.0, 'scratch': 1.0, 'the': 4.0, 'these': 1.0, 't': 1.0, 'sewn': 1.0, 'in': 1.0, 'so': 1.0, 'my': 1.0, 'went': 1.0, 'was': 1.0, 'to': 1.0, 'remove': 1.0, 'washcloths': 1.0, 'ended': 1.0}
Word element => {'great': 1.0, 'cloth': 1.0, 'fair': 1.0, 'a': 3.0, 'alot': 1.0, 'is': 1.0, 'said': 1.0, 'side': 1.0, 'it': 1.0, 'cute': 1.0, 'still': 2.0, 'price': 1.0, 'are': 2.0, 'these': 1.0, 'the': 4.0, 'deal': 2.0, 'on': 2.0, 'wash': 1.0, 'over': 1.0, 'at': 1.0, 'expecting': 1.0, 'was': 2.0, 'rough': 2.0, 'its': 1.0, 'being': 1.0, 'be': 1.0, 'and': 2.0, 'that': 1.0, 'i': 3.0, 'just': 1.0, 'by': 1.0, 'they': 2.0, 'means': 1.0, 'any': 1.0, 'to': 1.0, 'as': 1.0, 'bit': 1.0, 'not': 2.0, 'decorated': 1.0, 'will': 1.0, 'use': 1.0, 'baby': 1.0, 'softer': 2.0, 'them': 1.0, 'disapointed': 1.0, 'new': 1.0, 'top': 1.0, 'way': 1.0, 'than': 1.0, 'average': 1.0}
Word element => {'many': 1.0, 'order': 1.0, 'just': 1.0, 'months': 1.0, 'color': 1.0, 'lighter': 1.0, 'because': 1.0, 'stained': 1.0, 'cheap': 1.0, 'for': 3.0, 'using': 1.0, 'out': 1.0, 'and': 3.0, 'are': 3.0, 'we': 3.0, 'along': 1.0, 'have': 1.0, 'pack': 1.0, 'tiny': 1.0, 'crevices': 1.0, 'great': 1.0, 'the': 2.0, 'more': 2.0, 'easy': 2.0, 'cloths': 1.0, 'these': 1.0, 'some': 1.0, 'once': 1.0, 'of': 3.0, 'thin': 1.0, 'they': 4.0, 'well': 1.0, 'daughter': 1.0, 'to': 3.0, 'our': 1.0, 'as': 2.0, 'clean': 1.0, 'her': 1.0, 'face': 1.0, 'enough': 1.0, 'off': 1.0, 'bathing': 1.0, 'after': 2.0, 'wiping': 1.0, 'meals': 1.0, 'food': 1.0, 'use': 3.0, 'travel': 1.0, 'keep': 1.0, 'car': 1.0, 'baby': 1.0, 'them': 1.0, 'started': 2.0, 'gotten': 1.0, 'looking': 1.0, 'in': 2.0, 'dingy': 1.0}
Word element => {'which': 1.0, 'of': 1.0, 'two': 1.0, 'gentle': 1.0, 'children': 1.0, 'my': 1.0, 'are': 1.0, 'washcloths': 1.0, 'small': 1.0, 'soft': 2.0, 'for': 1.0, 'young': 1.0, 'easy': 1.0, 'these': 1.0, 'they': 1.0, 'to': 1.0, 'perfect': 1.0, 'wash': 1.0, 'and': 2.0, 'have': 1.0, 'well': 1.0, 'bathing': 1.0, 'a': 2.0, 'work': 1.0, 'scrub': 1.0, 'side': 2.0, 'both': 1.0}
Word element => {'my': 1.0, 'of': 1.0, 'positive': 1.0, 'read': 1.0, 'used': 1.0, 'been': 1.0, 'and': 1.0, 'opinion': 1.0, 'as': 1.0, 'wipes': 1.0, 'in': 2.0, 'reviews': 1.0, 'clued': 1.0, 'have': 1.0, 'that': 1.0, 'money': 1.0, 'washcloths': 1.0, 'should': 1.0, 'the': 2.0, 'ones': 1.0, 'not': 1.0, 'involved': 1.0, 'good': 1.0, 'waste': 1.0, 'them': 1.0, 'a': 1.0, 'being': 1.0}
Word element => {'suavidad': 1.0, 'iacute': 1.0, 'econom': 1.0, 'por': 1.0, 'bebes': 1.0, 'los': 1.0, 'para': 1.0, 'excelente': 2.0, 'y': 1.0, 'costo': 1.0, 'spasilk': 1.0, 'terry': 1.0, 'recomendado': 1.0, 'del': 2.0, 'washcloth': 1.0, 'el': 1.0, 'embalaje': 1.0, 'soft': 1.0, '10': 1.0, 'producto': 3.0, 'establecido': 1.0, 'la': 2.0, 'pack': 1.0, 'acorde': 1.0, 'a': 1.0, 'casa': 1.0, 'calidad': 2.0, 'tiempo': 1.0, 'entrega': 1.0, 'lo': 1.0, 'bluespasilkcalidad': 1.0, 'de': 2.0, 'conforme': 2.0}
Word element => {'skin': 1.0, 'baby': 1.0, 'these': 1.0, 'my': 1.0, 'are': 1.0, 'not': 2.0, 'i': 1.0, 'soft': 1.0, 'did': 1.0, 'very': 2.0, 'like': 1.0, 'thin': 1.0, 'them': 1.0, 'for': 1.0}
Word element => {'baths': 1.0, 'for': 1.0, 'sets': 1.0, 'our': 1.0, 'much': 1.0, 'those': 1.0, 'we': 1.0, 'my': 1.0, 'washcloths': 2.0, 'are': 1.0, 'once': 1.0, 'towel': 1.0, 'them': 2.0, 'hooded': 1.0, 'thin': 1.0, 'these': 1.0, 'his': 1.0, 'before': 1.0, 'used': 1.0, 'they': 1.0, 'nicer': 1.0, 'with': 2.0, 'disappointed': 1.0, 'use': 1.0, 'got': 1.0, 'purchased': 1.0, 'feel': 1.0, 'was': 2.0, 'not': 1.0, 'son': 1.0, 'very': 2.0, 'and': 3.0, 'cheap': 1.0, 'i': 2.0, 'have': 1.0, 'born': 1.0}
Word element => {'badly': 1.0, 'they': 2.0, 'these': 1.0, 'and': 2.0, 'like': 1.0, 'this': 1.0, 'bodysuits': 1.0, 'from': 2.0, 'good': 1.0, 'have': 1.0, 'shed': 1.0, 'purchased': 1.0, 'company': 2.0, 'manufacturing': 1.0, 'washcloths': 1.0, 'i': 1.0, 'were': 2.0, 'something': 1.0, 'a': 1.0, 'totally': 1.0, 'different': 1.0, 'not': 1.0, 'soft': 1.0, 'enough': 1.0}
Word element => {'pay': 1.0, 'what': 1.0, 'get': 1.0, 'definitely': 1.0, 'it': 2.0, 'terry': 1.0, 'this': 1.0, 'soft': 1.0, 'or': 1.0, 'super': 1.0, 'not': 2.0, 'material': 1.0, 'to': 1.0, 'content': 1.0, 'moderate': 1.0, 'seems': 1.0, 'in': 2.0, 'these': 3.0, 'the': 4.0, 'pee': 2.0, 'is': 2.0, 'side': 1.0, 'absorbent': 1.0, 'on': 2.0, 'acrylic': 1.0, 'lieu': 1.0, 'washcloths': 2.0, 'are': 1.0, 'small': 1.0, 'fabric': 1.0, 'cloth': 1.0, 'i': 1.0, 'quality': 1.0, 'of': 2.0, 'has': 1.0, 'so': 1.0, 'boy': 1.0, 'a': 2.0, 'my': 1.0, 'you': 2.0, 'am': 1.0, 'expensive': 1.0, 'actually': 1.0, 'for': 2.0, 'teepee': 1.0, 'case': 1.0, 'changing': 1.0, 'like': 1.0, 'using': 1.0, 'table': 1.0, 'very': 1.0, 'little': 1.0, 'low': 1.0, 'high': 1.0, 'were': 1.0}
Word element => {'gift': 1.0, 'as': 1.0, 'give': 1.0, 'definitely': 1.0, 'are': 5.0, 'disappointed': 1.0, 'again': 1.0, 'am': 1.0, 'how': 1.0, 'time': 1.0, 'they': 4.0, 'nooks': 1.0, 'purchased': 1.0, 'towel': 1.0, 'equally': 1.0, 'i': 6.0, 'but': 3.0, 'work': 1.0, 'can': 1.0, 'scratchy': 2.0, 'these': 1.0, 'diaper': 1.0, 'the': 4.0, 'ones': 1.0, 'see': 1.0, 'well': 2.0, 'like': 1.0, 'hooded': 1.0, 'and': 3.0, 'thin': 1.0, 'matching': 1.0, 'wanted': 1.0, 'wipes': 1.0, 'images': 2.0, 'crannies': 1.0, 'that': 1.0, 'into': 1.0, 'purchase': 1.0, 'my': 1.0, 'them': 4.0, 'baby': 1.0, 'price': 1.0, 'a': 1.0, 't': 2.0, 'might': 1.0, 's': 1.0, 'with': 1.0, 'printed': 2.0, 'bath': 1.0, 'on': 1.0, 'set': 1.0, 'for': 3.0, 'fit': 1.0, 'where': 1.0, 'wouldn': 2.0, 'okay': 1.0}
Word element => {'a': 1.0, 'though': 1.0, 'wish': 1.0, 'larger': 1.0, 'skin': 1.0, 'we': 1.0, 'were': 1.0, 'love': 1.0, 'these': 2.0, 'they': 2.0, 'are': 2.0, 'the': 1.0, 'babies': 1.0, 'nice': 1.0, 'and': 1.0, 'tender': 1.0, 'soft': 2.0, 'little': 1.0, 'because': 1.0, 'on': 1.0}
Word element => {'durable': 1.0, 'soft': 1.0, 'definitely': 1.0, 'buying': 1.0, 'love': 1.0, 'these': 1.0, 'more': 1.0, 'the': 1.0, 'washcloths': 1.0, 'them': 2.0, 'all': 1.0, 'use': 1.0, 'time': 1.0, 'very': 1.0, 'and': 2.0, 'i': 1.0, 'recommend': 1.0, 'keep': 1.0}
Word element => {'daily': 1.0, 'purchase': 1.0, 'good': 1.0, 'was': 1.0, 'this': 1.0, 'well': 1.0, 'dollars': 1.0, 'works': 1.0, 'other': 1.0, 'than': 1.0, 'rougher': 1.0, 'is': 1.0, 'side': 1.0, 'thicker': 1.0, 'want': 1.0, 'wouldn': 1.0, 'i': 1.0, 'ticket': 1.0, 'that': 1.0, 'high': 1.0, 'something': 1.0, 'super': 1.0, 'off': 1.0, 're': 1.0, 'out': 1.0, 'turned': 1.0, 'small': 1.0, 'have': 1.0, 'they': 1.0, 'cloths': 2.0, 'these': 4.0, 'food': 1.0, 'aren': 1.0, 'but': 2.0, 'quality': 1.0, 'baby': 2.0, 'though': 1.0, 'necessity': 1.0, 'time': 1.0, 'bit': 1.0, 'd': 1.0, 'items': 1.0, 'after': 1.0, 'meals': 1.0, 'useful': 1.0, 'are': 2.0, 'you': 1.0, 'ten': 1.0, 'one': 3.0, 'for': 3.0, 'of': 1.0, 'tempted': 1.0, 'skip': 1.0, 'coarse': 1.0, 'be': 2.0, 'quite': 1.0, 'the': 2.0, 'hands': 1.0, 'those': 1.0, 'not': 1.0, 'large': 1.0, 'just': 3.0, 't': 2.0, 's': 2.0, 'we': 2.0, 'a': 4.0, 'regular': 1.0, 'washcloths': 2.0, 'too': 1.0, 'and': 4.0, 'rubbing': 1.0, 'little': 2.0, 'use': 2.0, 'bath': 1.0, 'wash': 2.0, 'to': 3.0, 'our': 1.0, 'certainly': 1.0, 'face': 1.0, 'flimsy': 1.0, 'at': 1.0}
Word element => {'clean': 1.0, 'him': 1.0, 'enough': 1.0, 'long': 1.0, 'very': 3.0, 'that': 1.0, 'but': 1.0, 'toddler': 2.0, 'surprised': 1.0, 'are': 5.0, 'my': 2.0, 'on': 1.0, 'squirming': 1.0, 'them': 1.0, 'arrived': 1.0, 'which': 1.0, 'using': 1.0, 'thin': 2.0, 'first': 1.0, 'it': 1.0, 'how': 1.0, 'when': 2.0, 'i': 2.0, 'these': 1.0, 'distraction': 1.0, 'the': 1.0, 'seemed': 1.0, 'great': 1.0, 'they': 5.0, 'makes': 1.0, 'realized': 1.0, 'after': 1.0, 'was': 1.0, 'patterns': 1.0, 'to': 4.0, 'get': 1.0, 'easy': 2.0, 'use': 1.0, 'because': 1.0, 'wet': 1.0, 'light': 1.0, 'even': 1.0, 'wash': 1.0, 'a': 2.0, 'bright': 1.0, 'and': 1.0, 'colors': 1.0, 'help': 1.0, 'at': 1.0, 'keep': 1.0, 'son': 1.0, 'still': 1.0}
Word element => {'size': 1.0, 'original': 1.0, 'still': 1.0, 'and': 2.0, 'times': 1.0, 'have': 1.0, 'are': 1.0, 'they': 1.0, 'these': 1.0, 'brand': 1.0, 'color': 1.0, 'several': 1.0, 'washed': 1.0, 'girl': 1.0, 'new': 1.0, 'a': 1.0, 'maintain': 1.0, 'soft': 1.0, 'perfect': 1.0, 'for': 1.0, 'been': 1.0, 'baby': 1.0, 'few': 1.0}
Word element => {'stop': 1.0, 'make': 1.0, 'to': 1.0, 'falls': 1.0, 'the': 4.0, 'washcloth': 1.0, 'on': 1.0, 'is': 1.0, 'time': 1.0, 'lint': 1.0, 'but': 1.0, 'off': 1.0, 'few': 1.0, 'soft': 1.0, 'super': 1.0, 'feel': 1.0, 'when': 1.0, 'i': 1.0, 'used': 1.0, 'for': 1.0, 'it': 3.0, 'first': 1.0, 'would': 1.0, 'a': 1.0, 'take': 1.0, 'washings': 1.0}
Word element => {'excelent': 1.0}
Word element => {'thin': 1.0, 'looking': 1.0, 're': 1.0, 'if': 1.0, 'also': 1.0, 'you': 2.0, 'seen': 1.0, 'basic': 1.0, 've': 1.0, 'absolutely': 1.0, 'but': 1.0, 'aren': 1.0, 'i': 5.0, 'cloth': 1.0, 'product': 1.0, 'cheap': 1.0, 'for': 3.0, 'diaper': 1.0, 'cloths': 1.0, 'these': 3.0, 'the': 3.0, 'great': 1.0, 'a': 1.0, 't': 1.0, 'wipes': 1.0, 'son': 1.0, 'very': 2.0, 'packages': 1.0, 'couple': 1.0, 'they': 2.0, 'are': 4.0, 'and': 3.0, 'washcloths': 3.0, 'cute': 1.0, 'ended': 1.0, 'baby': 1.0, 'purchased': 1.0, 'use': 2.0, 'my': 2.0, 'another': 1.0, 'purchase': 1.0, 'as': 1.0, 'to': 1.0, 'with': 1.0, 'buying': 1.0, 'was': 1.0, 'this': 1.0, 'perfect': 1.0, 'value': 1.0, 'up': 1.0, 'have': 1.0, 'coming': 1.0, 'back': 1.0, 'because': 1.0, 'so': 1.0, 'pleased': 1.0, 'certainly': 1.0, 'thickest': 1.0, 'been': 1.0, 'that': 1.0}
Word element => {'baby': 1.0, 'but': 1.0, 'just': 1.0, 'to': 1.0, 'time': 1.0, 'bath': 1.0, 'decent': 1.0, 'small': 1.0, 'are': 2.0, 'the': 2.0, 'they': 2.0, 'pretty': 1.0, 'soft': 1.0, 'rinse': 1.0, 'we': 1.0, 'and': 1.0, 'quality': 1.0, 'like': 1.0, 'thin': 1.0, 'them': 1.0, 'for': 1.0}
Word element => {'are': 1.0, 'the': 1.0, 'fine': 1.0, 'look': 1.0, 'they': 1.0, 'cloth': 1.0, 'gift': 1.0, 'well': 1.0, 'also': 1.0, 'about': 1.0, 'package': 1.0, 'but': 1.0, 'can': 1.0, 'not': 1.0, 'thru': 1.0, 'you': 1.0, 'cloths': 2.0, 'a': 1.0, 'much': 1.0, 'say': 1.0, 'wash': 3.0}
Word element => {'packs': 1.0, 'buying': 1.0, 'many': 1.0, 'so': 1.0, 'were': 1.0, 'laundry': 1.0, 'in': 1.0, 'wash': 1.0, 'since': 1.0, 'a': 1.0, 'them': 3.0, 'more': 1.0, '2': 1.0, 'the': 1.0, 'these': 1.0, 'pacifier': 1.0, 'they': 2.0, 'ended': 1.0, 'washcloths': 1.0, 'my': 1.0, 'are': 1.0, 'of': 1.0, 'no': 1.0, 'daughter': 1.0, 'instead': 1.0, 'loved': 1.0, 'needed': 1.0, 'she': 1.0, 'security': 1.0, 'could': 1.0, 'blanket': 1.0, 'with': 2.0, 'used': 1.0, 'her': 1.0, 'soft': 1.0, 'as': 1.0, 'toss': 1.0, 'very': 1.0, 'and': 1.0, 'edges': 1.0, 'i': 2.0}
Word element => {'2013': 1.0, 'oct': 1.0, 'colors': 1.0, 'baby': 1.0, 'expecting': 1.0, 'not': 2.0, 'expected': 1.0, 'as': 1.0, 'i': 2.0, 'super': 1.0, 'will': 1.0, 'quality': 1.0, 'but': 1.0, 'exactly': 1.0, 'he': 1.0, 'until': 1.0, 'job': 1.0, 'a': 1.0, 'them': 1.0, 'haven': 1.0, 'what': 1.0, 'used': 1.0, 'dot': 1.0, 'great': 2.0, 't': 1.0, 'for': 1.0, 'yet': 1.0, 'while': 1.0, 'am': 1.0}
Word element => {'within': 1.0, '5': 1.0, 'flimsy': 1.0, 'blanket': 1.0, 'thin': 1.0, 'mattress': 2.0, '3': 1.0, 'off': 1.0, 'pad': 1.0, 'bumper': 1.0, 'sides': 1.0, 'around': 1.0, 'being': 1.0, 'wiggles': 1.0, 'after': 2.0, 'washed': 1.0, 'of': 2.0, '4': 1.0, 'waste': 1.0, 'liner': 1.0, 'basket': 3.0, 'huge': 1.0, '1': 1.0, 'and': 3.0, 'shrunk': 1.0, 'my': 1.0, 'a': 2.0, 'using': 1.0, 'is': 2.0, 'cover': 1.0, 'ripped': 2.0, 'the': 7.0, '2': 1.0, 'come': 1.0, 'he': 1.0, 'first': 1.0, 'this': 3.0, 'day': 1.0, 'when': 1.0, 'i': 1.0, 'week': 1.0, 'put': 1.0, 'tore': 1.0, 'money': 1.0, 'baby': 1.0, 'also': 1.0, 'in': 1.0}
Word element => {'design': 1.0, 'great': 1.0, 'bag': 1.0, 'diaper': 1.0, 'in': 1.0, 'shake': 2.0, 'our': 1.0, 'to': 3.0, 'was': 2.0, 'content': 1.0, 'grasp': 1.0, 'no': 1.0, 'quickly': 1.0, 'hold': 1.0, 'leaves': 1.0, 'didnt': 1.0, 'rattle': 1.0, 'that': 2.0, 'is': 1.0, 'people': 1.0, 'with': 1.0, 'but': 2.0, 'an': 1.0, 'fell': 1.0, 'it': 4.0, 'she': 2.0, 'cute': 1.0, 'stare': 1.0, 'bright': 1.0, 'shaped': 1.0, 'at': 1.0, 'since': 1.0, 'little': 2.0, 'very': 2.0, 'and': 2.0, 'way': 1.0, 'engaging': 1.0, 'unfortunate': 1.0, 'daughter': 1.0, 'colors': 1.0, 'place': 1.0, 'hands': 1.0, 'the': 3.0, 'my': 1.0, 'watch': 1.0, 'other': 1.0, 'have': 1.0, 'area': 1.0, 'could': 1.0, 'idea': 1.0, 'when': 1.0, 'easily': 1.0, 'bottom': 1.0, 'of': 1.0}
Word element => {'age': 1.0, 'when': 1.0, 'sound': 1.0, 'since': 1.0, 'hold': 1.0, 'for': 2.0, 'easy': 1.0, 'my': 1.0, '7': 1.0, 'is': 2.0, 'plastic': 1.0, 'he': 4.0, 'this': 2.0, 'sturdy': 1.0, 'nice': 1.0, 'shapes': 1.0, 'feel': 1.0, 'enjoyed': 1.0, 'him': 2.0, 'it': 6.0, 'month': 1.0, 'and': 3.0, 'very': 1.0, 'from': 2.0, 'loves': 1.0, 'to': 2.0, 'makes': 1.0, 'old': 1.0, 'touch': 1.0, 'i': 1.0, 'has': 3.0, 'toy': 2.0, 'shakes': 2.0, 'the': 2.0, 'think': 1.0, 'on': 1.0, 'ends': 1.0, 'wood': 1.0, 'different': 2.0, 'rattles': 1.0, 'a': 2.0, 'could': 1.0, 'have': 1.0, 'an': 1.0, 'manipulate': 1.0, 'even': 1.0, 'chews': 1.0, 'earlier': 1.0}
Word element => {'enjoy': 1.0, 'her': 1.0, 'textures': 1.0, 'and': 2.0, 'this': 1.0, 'for': 1.0, 'book': 1.0, 'has': 1.0, 'providing': 1.0, 'many': 1.0, 'captivated': 1.0, 'explore': 1.0, 'my': 1.0, 'colors': 1.0, 'stimulation': 1.0, '6': 1.0, 'month': 1.0, 'to': 1.0, 'old': 1.0, 'with': 1.0}
Word element => {'discontinued': 1.0, 'has': 1.0, 'toy': 1.0, 'bad': 1.0, 'rest': 1.0, 'out': 1.0, 'stand': 1.0, 'special': 1.0, 'looking': 1.0, 'if': 1.0, 'wrong': 1.0, 'coordination': 1.0, 'on': 2.0, 'easy': 1.0, 'rainbows': 1.0, 'wonderful': 1.0, 'amazing': 1.0, 'bright': 1.0, 'great': 1.0, 'shapes': 1.0, 'colors': 2.0, 'captivated': 1.0, 'were': 1.0, 'stare': 1.0, 'different': 1.0, '5': 1.0, 'is': 4.0, 'that': 3.0, 'babies': 1.0, 'working': 1.0, 'far': 1.0, 'by': 2.0, 'etc': 1.0, 'i': 2.0, 'old': 1.0, 'it': 6.0, 'with': 2.0, 'first': 1.0, 'circles': 1.0, 'received': 2.0, 'company': 1.0, 'my': 2.0, 'hands': 1.0, 'the': 8.0, 'showed': 1.0, 'turn': 1.0, 'in': 1.0, 'for': 3.0, 'can': 1.0, 'most': 1.0, 'unique': 1.0, 'will': 2.0, 'gift': 2.0, 'chew': 1.0, 'find': 1.0, 'little': 1.0, 'very': 2.0, 'from': 2.0, 'too': 2.0, 'and': 5.0, 'do': 1.0, 'manhattan': 1.0, 'was': 2.0, 'now': 1.0, 'design': 2.0, 'book': 6.0, 'other': 1.0, 'to': 2.0, 'patterns': 1.0, 'all': 2.0, 'as': 1.0, 'any': 1.0, 'this': 3.0, 'soft': 2.0, 'squares': 1.0, 'you': 3.0, 'twins': 1.0, 'are': 7.0, 'months': 1.0, 'pages': 2.0, 'they': 3.0, 'time': 1.0, 'of': 2.0, 'shower': 1.0, 'enamored': 1.0, 'go': 1.0, 't': 1.0, 'a': 3.0, 'could': 1.0, 'them': 1.0}
Word element => {'that': 1.0, 'of': 1.0, 'part': 1.0, 'which': 1.0, 'super': 2.0, 'are': 1.0, 'opposite': 1.0, 'quite': 1.0, 'fact': 1.0, 'reason': 1.0, 'in': 1.0, 'soft': 3.0, 'find': 1.0, 'did': 1.0, 'we': 1.0, 'other': 1.0, 'is': 1.0, 'many': 1.0, 'buy': 1.0, 'i': 2.0, 'happy': 1.0, 'bought': 1.0, 'these': 1.0, 'more': 1.0, 'the': 3.0, 'purchase': 1.0, 'been': 1.0, 'baby': 2.0, 'infant': 1.0, 'drawn': 1.0, 'not': 2.0, 'could': 1.0, 'caring': 1.0, 'for': 3.0, 'skin': 1.0, 'shower': 1.0, 'with': 1.0, 'this': 1.0, 'it': 1.0, 'a': 1.0, 'and': 1.0, 'towels': 2.0, 'was': 1.0, 'to': 1.0, 'have': 1.0, 'name': 1.0, 'spaslk': 1.0}
Word element => {'can': 1.0, 'answer': 1.0, 'i': 1.0, 'so': 1.0, 'for': 1.0, 'wonderfulbaby': 1.0, 'mom': 1.0, 'not': 2.0, 'towels': 1.0, 'looked': 1.0, 'appearance': 1.0, 'and': 1.0, 'leiland': 1.0, 'has': 1.0, 'yet': 1.0, 'the': 1.0, 'felt': 1.0, 'made': 1.0, 'his': 1.0}
Word element => {'than': 1.0, 'really': 1.0, 'need': 1.0, 'nice': 1.0, 'buy': 1.0, 'your': 1.0, 'save': 1.0, 'bath': 1.0, 'of': 1.0, 'towel': 1.0, 'out': 1.0, 'he': 1.0, 'very': 1.0, 'money': 1.0, 'don': 2.0, 'towels': 1.0, 'pay': 1.0, 'what': 1.0, 's': 1.0, 'you': 3.0, 'and': 2.0, 'get': 1.0, 'just': 1.0, 'not': 1.0, 'are': 1.0, 'my': 1.0, 'hooded': 1.0, 'thin': 1.0, 'absorbent': 1.0, 'certainly': 1.0, 'more': 1.0, 'these': 1.0, 'the': 2.0, 't': 2.0, 'keep': 1.0, 'little': 1.0, 'for': 1.0, 'one': 3.0, 'when': 1.0, 'warm': 1.0}
Word element => {'at': 1.0, 'amazon': 1.0, 'from': 1.0, 'not': 1.0, 'receive': 1.0, 'll': 2.0, 'she': 2.0, 'price': 1.0, 'm': 1.0, 'calm': 1.0, 'almost': 1.0, 'in': 1.0, 'than': 1.0, 'towels': 2.0, 'had': 1.0, 'any': 1.0, 'to': 1.0, 'buying': 1.0, 'are': 1.0, 'more': 3.0, 'these': 1.0, 'babies': 1.0, 'resist': 1.0, '3': 2.0, 'bluewhen': 1.0, 'theey': 1.0, 'secure': 1.0, 'accessory': 1.0, 'set': 1.0, 'shower': 1.0, 'of': 3.0, 'other': 1.0, 'order': 1.0, 'loved': 2.0, 'great': 1.0, 'feel': 1.0, 'if': 1.0, 'spasilk': 1.0, 'terry': 1.0, 'hooded': 3.0, 'sure': 1.0, 'towel': 1.0, 'them': 4.0, 'perfect': 1.0, 'soft': 1.0, 'kids': 1.0, 'daughter': 1.0, 'i': 5.0, 'product': 1.0, 'for': 3.0, 'after': 1.0, 'boy': 1.0, 'so': 1.0, 'baths': 1.0, 'and': 3.0, 'couldn': 1.0, 'seem': 1.0, 'my': 1.0, 't': 1.0, 'a': 2.0, 'good': 1.0, 'her': 2.0, 'pack': 2.0, 'firstborn': 1.0}
Word element => {'gift': 1.0, 'as': 1.0, 'give': 1.0, 'nice': 1.0, 'look': 1.0, 'to': 1.0, 'towels': 1.0, 'and': 2.0, 'price': 1.0, 'soft': 1.0, 'if': 2.0, 'not': 1.0, 'work': 1.0, 'are': 5.0, 'cheap': 1.0, 'your': 1.0, 'they': 1.0, 'the': 3.0, 'these': 2.0, 'for': 3.0, 'images': 1.0, 'parts': 1.0, 'something': 2.0, 'a': 1.0, 'well': 1.0, 'super': 1.0, 'workable': 1.0, 'thin': 1.0, 'with': 1.0, 'printed': 1.0, 'looking': 2.0, 'scratchy': 1.0, 'elsewhere': 1.0, 'you': 2.0}
Word element => {'pool': 1.0, 'outdoor': 1.0, 'take': 1.0, 'm': 1.0, 'the': 2.0, 'of': 1.0, 'type': 1.0, 'cuddlier': 1.0, 'thicker': 1.0, 'look': 1.0, 'our': 1.0, 'to': 3.0, 'know': 1.0, 'when': 1.0, 'easily': 1.0, 'wet': 1.0, 'very': 1.0, 'daughter': 2.0, 'now': 1.0, 'thin': 2.0, 'them': 1.0, 'towel': 2.0, 'super': 1.0, 'is': 1.0, 'really': 1.0, 'summer': 2.0, 'if': 1.0, 'at': 1.0, 'keep': 1.0, 'these': 2.0, 'house': 1.0, 'but': 1.0, 'planning': 1.0, 'uncomfortable': 1.0, 'towels': 1.0, 'be': 1.0, 'winter': 2.0, 'during': 3.0, 'good': 1.0, 'or': 1.0, 'for': 3.0, 'use': 3.0, 'still': 1.0, 'becomes': 1.0, 'i': 4.0, 'think': 1.0, 'bath': 1.0, 'your': 1.0, '74f': 1.0, 'hot': 2.0, 'temperature': 1.0, 'too': 3.0, 'and': 1.0, 'it': 2.0, 'found': 1.0, 'this': 2.0, 'feels': 2.0, 'kinda': 1.0, 'after': 1.0, 'so': 1.0, 'chilly': 1.0, 'my': 1.0, 'in': 1.0, 'might': 1.0, 'we': 2.0, 's': 1.0}
Word element => {'live': 1.0, 'if': 1.0, 'summer': 1.0, 'or': 1.0, 'good': 1.0, 'for': 2.0, '80': 1.0, 'probably': 1.0, 'us': 1.0, 'too': 1.0, 'you': 1.0, 'areas': 1.0, 'northeastern': 1.0, 'the': 1.0, 'are': 3.0, 'they': 3.0, 'warmer': 1.0, 'but': 1.0, 'a': 1.0, 'thin': 1.0, 'bit': 1.0, 'in': 1.0, 'also': 1.0, 'cotton': 1.0, 'only': 1.0}
IOPub data rate exceeded. The notebook server will temporarily stop sending output to the client in order to avoid crashing it. To change this limit, set the config variable `--NotebookApp.iopub_data_rate_limit`. Current values: NotebookApp.iopub_data_rate_limit=1000000.0 (bytes/sec) NotebookApp.rate_limit_window=3.0 (secs)
Word element => {'child': 1.0, 'a': 1.0, 'curious': 1.0, 'have': 1.0, 'recommend': 1.0, 'works': 1.0, 'and': 1.0, 'product': 1.0, 'of': 1.0, 'bottom': 1.0, 'slid': 1.0, 'still': 1.0, 'to': 2.0, 'use': 2.0, 'perfect': 1.0, 'if': 2.0, 'did': 1.0, 'or': 1.0, 'for': 1.0, 'one': 1.0, 'dvr': 2.0, 'under': 1.0, 'dvd': 1.0, 'center': 1.0, 'width': 1.0, 'you': 2.0, 'it': 1.0, 'velcro': 1.0, 'just': 1.0, 'strips': 1.0, 'not': 1.0, 'great': 1.0, 'the': 5.0, 'we': 2.0, 'attach': 1.0, 'highly': 1.0, 'vcr': 1.0, 'entertainment': 1.0}
Word element => {'off': 1.0, 'clean': 1.0, 'impossible': 1.0, 'that': 1.0, 'are': 1.0, 'fingerprints': 1.0, 'in': 1.0, 'covered': 1.0, 'doesn': 1.0, 'it': 1.0, 't': 1.0, 'hold': 1.0, 'well': 1.0, 'hands': 1.0, 'to': 2.0, 'almost': 1.0, 'toddler': 1.0, 'up': 1.0, 'and': 1.0, 'is': 1.0}
Word element => {'baby': 1.0, 'for': 1.0, 'second': 1.0, 'buying': 1.0, 'charm': 1.0, 'a': 2.0, '2': 1.0, 'like': 1.0, 'worked': 1.0, 'amazing': 1.0}
Word element => {'family': 1.0, 'to': 1.0, 'recommend': 1.0, 'i': 1.0, 'much': 1.0, 'so': 1.0, 'you': 1.0, 'thank': 1.0, 'drooling': 1.0, 'on': 1.0, 'and': 4.0, 'of': 2.0, 'is': 2.0, 'with': 1.0, 'art': 2.0, 'the': 2.0, 'would': 1.0, 'knowledgable': 1.0, 'pulling': 1.0, 'my': 1.0, 'super': 1.0, 'cut': 1.0, 'amazing': 1.0, 'friends': 1.0, 'product': 2.0, 'excellent': 1.0, 'any': 1.0, 'baby': 1.0, 'cure': 2.0, 'jennie': 1.0, 'loves': 1.0, 'have': 1.0, 'necklace': 1.0, 'we': 1.0, 'definitely': 2.0, 'ear': 1.0, 'her': 2.0, 'down': 1.0}
Word element => {'so': 1.0, 'will': 1.0, 'happy': 1.0, 'be': 1.0, 'if': 1.0, 'return': 1.0, 'll': 2.0, 'much': 1.0, 'try': 1.0, 'please': 1.0, 'few': 1.0, 'your': 1.0, 'on': 1.0, 'her': 1.0, 'wonderfully': 1.0, 'held': 1.0, 'has': 1.0, 'maybe': 1.0, 'than': 1.0, 'less': 1.0, 'in': 1.0, 'broke': 1.0, 'it': 3.0, 'she': 2.0, 'literally': 1.0, 'enough': 1.0, 'necklace': 2.0, 'relief': 1.0, 'days': 1.0, 'day': 2.0, 'tugging': 1.0, 'from': 1.0, 'thru': 1.0, 'you': 2.0, 'when': 1.0, 'times': 1.0, 't': 1.0, 'a': 2.0, 's': 3.0, 'yrs': 1.0, '5': 1.0, 'child': 1.0, 'don': 1.0, 'up': 1.0, 'nearly': 1.0, 'every': 1.0, 'aware': 1.0, 'motrin': 1.0, 'and': 3.0, 'daughter': 1.0, 'my': 1.0, 'more': 1.0, 'zero': 1.0, 'say': 1.0, 'is': 2.0, 'the': 3.0, 'under': 1.0, 'still': 1.0, 'to': 1.0, 'recommend': 1.0, 'unfortunately': 1.0, 'crazy': 1.0, 'was': 2.0, 'old': 1.0, 'i': 4.0, 'once': 1.0, 'of': 1.0, 'have': 2.0, 'they': 1.0, 'drooling': 1.0, '2': 1.0, 'but': 2.0, 'which': 1.0, 'like': 2.0, 'cannot': 2.0, 'gone': 1.0, 'about': 1.0, 'baltic': 1.0, 'amber': 1.0, 'this': 3.0, 'first': 1.0, 'teething': 1.0, 'even': 2.0, '2nd': 1.0, 'art': 1.0, 'one': 1.0, 'bought': 1.0, 'not': 1.0, 'cure': 1.0}
Word element => {'places': 1.0, 'are': 1.0, 'beads': 1.0, 'the': 1.0, 'and': 2.0, 'very': 2.0, 'as': 1.0, 'necklace': 3.0, 'in': 1.0, 'teeth': 1.0, 'teething': 1.0, 'some': 1.0, 'let': 1.0, 'my': 1.0, 'not': 2.0, 'would': 1.0, 'a': 2.0, 'adult': 1.0, 'is': 4.0, 'hard': 1.0, 'with': 1.0, 'advertised': 1.0, 'this': 3.0, 'for': 1.0, 'something': 1.0, 'an': 1.0, 'to': 1.0, 'jagged': 1.0, 'small': 1.0, 'wear': 1.0, 'i': 1.0, 'baby': 1.0}
Word element => {'on': 1.0, 'staying': 1.0, 'first': 1.0, 'issue': 1.0, 'and': 4.0, 'getting': 1.0, 'has': 1.0, 'he': 1.0, 'rarely': 1.0, 'lot': 1.0, 'teething': 1.0, 'using': 1.0, 'love': 1.0, 'purchased': 1.0, 'an': 1.0, 'trouble': 1.0, 'started': 2.0, 'my': 1.0, 'months': 1.0, 'one': 2.0, 'color': 1.0, 'been': 1.0, 'little': 1.0, 'drooling': 1.0, 'a': 2.0, 'we': 3.0, 'few': 1.0, 'necklaces': 1.0, 'was': 2.0, 'when': 3.0, 'the': 2.0, 'amber': 1.0, 'great': 1.0, 'old': 1.0, 'noticed': 1.0, 'really': 1.0, 'fussy': 1.0, 'low': 1.0, 'his': 1.0, 'necklace': 2.0, 'behold': 1.0, 'beads': 1.0, 'are': 1.0, 'this': 2.0, 'lost': 1.0, 'perfect': 1.0, 'size': 1.0, 'gone': 1.0, 'no': 1.0}
Word element => {'guarantee': 1.0, 'having': 1.0, 'than': 1.0, 'find': 1.0, 'because': 1.0, 'that': 4.0, 'didn': 2.0, 'before': 2.0, 'receive': 1.0, 'want': 1.0, 'all': 1.0, 'to': 4.0, 'lot': 1.0, 'work': 2.0, 'firm': 1.0, 'authenticity': 1.0, 'money': 1.0, 'not': 4.0, 'found': 3.0, 'days': 1.0, 'this': 1.0, 'few': 2.0, 'a': 7.0, 't': 2.0, 'it': 5.0, 'same': 1.0, 'month': 1.0, 'she': 2.0, 'amber': 4.0, 'fakes': 1.0, 'worse': 1.0, 'believer': 1.0, 'teething': 1.0, 'old': 1.0, 'tested': 1.0, 'i': 9.0, '4': 1.0, 'once': 1.0, 'was': 3.0, 'can': 1.0, 'so': 1.0, 'wearing': 1.0, 'excited': 2.0, 'after': 1.0, 'my': 2.0, 'purchase': 1.0, 'benefits': 1.0, 'researching': 1.0, 'thoroughly': 1.0, 'admit': 1.0, 'did': 1.0, 'necklace': 4.0, 'for': 3.0, 'daughter': 2.0, 'about': 1.0, 'of': 3.0, 'the': 6.0, 'natural': 1.0, '34': 2.0, 'remedy': 1.0, 'some': 1.0, 'more': 1.0, 'at': 1.0, 'look': 1.0, 'is': 2.0, 'research': 2.0, 'there': 3.0, 'are': 2.0, 'out': 2.0, 'simple': 1.0, 'ways': 1.0, 'wore': 1.0, 'test': 1.0, 'if': 2.0, 'still': 1.0, 'your': 2.0, 'authentic': 1.0, 'real': 2.0, 'or': 1.0, 'luck': 1.0, 'hopeful': 1.0, 'cures': 1.0, 'genuinely': 1.0, 'will': 1.0, 'help': 1.0, 'am': 1.0, 'm': 1.0, 'in': 1.0, 'good': 1.0, 'do': 1.0, 'buying': 1.0, 'and': 6.0, 'anyone': 1.0, 'natures': 1.0, 'print': 1.0, 'certificate': 1.0, '100': 1.0, 'back': 1.0}
Word element => {'real': 1.0, 'comes': 1.0, 'once': 1.0, 'migraines': 1.0, 'with': 1.0, 'help': 1.0, 'bracelet': 1.0, 'probably': 1.0, 'box': 1.0, 'up': 1.0, 'chewed': 1.0, 'away': 1.0, 'struggle': 1.0, 'since': 1.0, 't': 2.0, 'going': 1.0, 'been': 1.0, 'that': 2.0, 'today': 1.0, 'she': 4.0, 'good': 1.0, 'her': 5.0, 'necklace': 4.0, 'rough': 1.0, 'but': 2.0, 'work': 1.0, 'put': 1.0, 'can': 1.0, 'constantly': 1.0, '24': 1.0, 'really': 2.0, 'then': 1.0, 'eager': 1.0, 'one': 3.0, 'color': 1.0, 'for': 2.0, 'advil': 1.0, 'and': 8.0, 'very': 1.0, 'enough': 1.0, 'my': 4.0, 'post': 1.0, 'haven': 1.0, 'hours': 1.0, 'had': 2.0, 'to': 5.0, 'all': 1.0, 'was': 4.0, 'as': 1.0, 'crazy': 1.0, 'starts': 1.0, 'night': 2.0, 'old': 1.0, 'two': 1.0, 'wear': 1.0, 'it': 9.0, '9': 1.0, 'hits': 1.0, 'excited': 1.0, 'on': 5.0, 'long': 1.0, 'amber': 1.0, 'girl': 1.0, 'come': 1.0, 'll': 1.0, 'right': 1.0, 's': 3.0, 'maybe': 1.0, 'dog': 1.0, 'though': 1.0, 'tuesday': 1.0, 'top': 1.0, 'teeth': 1.0, 'like': 1.0, 'working': 1.0, 'are': 1.0, 'in': 2.0, 'friday': 1.0, 'second': 1.0, '6': 1.0, 'sad': 2.0, 'hrs': 1.0, 'when': 1.0, 'get': 3.0, 'poor': 1.0, 'more': 1.0, 'around': 1.0, 'sat': 1.0, 'getting': 1.0, 'drooling': 1.0, 'chewing': 1.0, 'binky': 1.0, 'got': 1.0, 'i': 9.0, 'coming': 1.0, 'rainbow': 2.0, 'didn': 1.0, 'ordered': 1.0, 'has': 1.0, 'ton': 1.0, 'the': 6.0, 'of': 1.0, 'a': 4.0, 'tiny': 1.0, 'beads': 1.0, 'start': 1.0, 'wanted': 1.0, 'medium': 1.0, 'month': 1.0, 'super': 1.0, 'same': 1.0, 'way': 1.0, 'return': 1.0}
Word element => {'more': 1.0, 'well': 1.0, 'as': 1.0, 'adores': 1.0, 'friends': 1.0, 'a': 1.0, 'for': 1.0, 'very': 1.0, 'feet': 1.0, 'with': 1.0, 'play': 1.0, 'and': 2.0, 'baby': 1.0, 'night': 1.0, 'be': 1.0, 'putting': 1.0, 'within': 1.0, 'definitely': 1.0, 'correct': 1.0, 'old': 1.0, 'point': 1.0, 'i': 6.0, '4': 1.0, 'worst': 1.0, 'minutes': 1.0, 'was': 3.0, 'look': 1.0, 'would': 1.0, 'but': 3.0, 'on': 3.0, 'put': 1.0, '15': 1.0, 'hers': 1.0, 'scenario': 1.0, 'figured': 1.0, 'gone': 1.0, 'up': 1.0, 'he': 2.0, 'pleased': 1.0, 'taken': 1.0, 'will': 2.0, 'also': 1.0, 'leg': 1.0, 'skeptical': 1.0, 'of': 1.0, 'wake': 1.0, 'that': 1.0, 'case': 1.0, 'another': 1.0, 'my': 1.0, 'she': 1.0, 'it': 3.0, 'month': 1.0, 'his': 3.0, 'massive': 1.0, 'droolface': 1.0, 'adorable': 1.0, 'at': 1.0, 'ordering': 1.0, 'recently': 1.0, 'have': 1.0, 'just': 1.0, 'usually': 2.0, 'because': 1.0, 'off': 1.0, 'ordered': 1.0, 'altogether': 1.0}
Word element => {'in': 1.0, 'enough': 1.0, 'long': 1.0, 'isn': 1.0, 'wearing': 1.0, 'is': 1.0, 'on': 1.0, '10': 1.0, 'smaller': 1.0, 'but': 2.0, 'when': 3.0, 'i': 6.0, 'old': 1.0, 'ordered': 1.0, 'mean': 1.0, 'great': 1.0, 'and': 3.0, 'this': 1.0, 'little': 2.0, 'been': 1.0, 'for': 1.0, 'love': 1.0, 'necklace': 1.0, 'do': 1.0, 'much': 1.0, 'not': 1.0, 'get': 1.0, 'imagined': 1.0, 'sure': 1.0, 'of': 1.0, 'm': 1.0, '34': 2.0, 'to': 1.0, 'any': 1.0, 'was': 1.0, 'healing': 1.0, 'powers': 1.0, 'my': 1.0, 'fits': 1.0, 'may': 1.0, 'it': 10.0, 'month': 1.0, 'she': 3.0, 'have': 1.0, 'has': 1.0, 'hold': 1.0, 'sleeping': 1.0, 'better': 1.0, 'since': 1.0, 't': 1.0, 'we': 1.0, 'got': 1.0, 'mouth': 1.0, 'than': 1.0, 'chew': 1.0, 'really': 1.0, 'enjoys': 1.0, 'let': 1.0, 'her': 3.0}
Word element => {'problem': 1.0, 'have': 1.0, 'old': 1.0, 'anyone': 1.0, 'cannot': 1.0, '3': 1.0, 'daughter': 1.0, 'and': 1.0, 'my': 1.0, 'the': 1.0, 'that': 1.0, 'beautiful': 1.0, 'this': 1.0, 'it': 2.0, 'is': 3.0, 'months': 1.0, 'on': 1.0, 'else': 1.0, 'however': 1.0, 'so': 1.0, 'tight': 1.0, 'necklace': 1.0, 'around': 1.0, 'does': 1.0, 'her': 1.0, 'little': 1.0, 'she': 1.0, 'neck': 1.0, 'chew': 1.0}
Word element => {'pain': 1.0, 'our': 1.0, 'knowing': 1.0, 'feel': 1.0, 'as': 1.0, 'in': 1.0, 'teeth': 1.0, 'necklace': 1.0, 'two': 1.0, 'comforted': 1.0, 'she': 1.0, 'it': 1.0, 'first': 1.0, 'medicine': 1.0, 'cut': 1.0, 'her': 3.0, 'loves': 1.0, 't': 2.0, 'other': 1.0, 'us': 1.0, 'daughter': 1.0, 'to': 1.0, 'had': 1.0, 'and': 2.0, 'baby': 1.0, 'any': 1.0, 'my': 1.0, 'i': 1.0, 'haven': 1.0, 'give': 1.0, 'parents': 1.0, 'truely': 1.0, 'isn': 1.0, 'makes': 1.0}
Word element => {'never': 1.0, 'others': 1.0, 'for': 2.0, 'has': 1.0, 'they': 1.0, 'especially': 1.0, 'all': 1.0, 'and': 3.0, 'like': 1.0, 'my': 2.0, 'but': 1.0, 'work': 1.0, 'helped': 1.0, 'he': 1.0, 'cut': 1.0, 'teething': 1.0, 's': 1.0, 't': 1.0, 'drooling': 1.0, 'night': 1.0, 'regarding': 1.0, 'at': 2.0, 'molars': 1.0, 'hasn': 1.0, 'fussing': 1.0, 'starting': 1.0, 'to': 1.0, 'may': 1.0, 'crazy': 1.0, 'being': 1.0, 'cranky': 1.0, 'worked': 1.0, 'son': 2.0, 'crying': 1.0}
Word element => {'set': 1.0, 'look': 1.0, 'still': 1.0, 'colors': 1.0, 'yet': 1.0, 'bed': 1.0, 'haven': 1.0, 'real': 1.0, 'know': 1.0, 'like': 1.0, 'was': 1.0, 'just': 1.0, 'cute': 1.0, 'very': 1.0, 'comforter': 2.0, 'the': 2.0, 'will': 1.0, 'item': 1.0, 'so': 2.0, 'on': 1.0, 'put': 1.0, 'washed': 1.0, 'reviews': 1.0, 'from': 1.0, 'year': 1.0, 'why': 1.0, 'would': 1.0, 'she': 1.0, 'colorful': 1.0, 'it': 6.0, 'wish': 1.0, 'this': 2.0, 'with': 1.0, 'i': 10.0, 'old': 1.0, '45': 1.0, 'am': 1.0, 'times': 1.0, 'feel': 1.0, 'bought': 1.0, 'be': 1.0, 'material': 1.0, 'my': 1.0, 'posted': 1.0, 'and': 5.0, 'other': 2.0, 'love': 1.0, 'for': 4.0, 'stiff': 1.0, 'daughter': 1.0, 'knew': 1.0, 'came': 1.0, 'detergent': 1.0, 'alot': 1.0, 'her': 1.0, 'paid': 1.0, 'fabric': 1.0, 'softener': 1.0, 'what': 1.0, 'out': 1.0, 'quality': 1.0, 'softer': 2.0, '2': 2.0, 'but': 2.0, 'about': 1.0, 'to': 1.0, 'any': 1.0, 'going': 1.0, 't': 1.0, 'a': 2.0, 'bedding': 2.0, 'could': 2.0, 'better': 2.0, 'settled': 1.0, 'dora': 3.0, 'not': 1.0, 'find': 1.0, 'that': 1.0, 'is': 3.0}
Word element => {'happy': 1.0, 'so': 1.0, 'her': 1.0, 'set': 1.0, 'says': 1.0, 'and': 1.0, 'as': 1.0, 'dori': 1.0, 'made': 1.0, 'my': 1.0, 'this': 1.0, 'loved': 1.0, 'grand': 1.0, 'daughter': 1.0, 'it': 1.0, 'she': 2.0, 'a': 1.0, 'of': 1.0, 'big': 1.0, 's': 1.0, 'fan': 1.0}
Word element => {'concern': 1.0, 'wasn': 1.0, 'anyway': 1.0, 'extra': 1.0, 'but': 1.0, 'some': 1.0, 'thin': 1.0, 'need': 1.0, 'so': 1.0, 'time': 1.0, 'winter': 1.0, 'us': 1.0, 'last': 1.0, 'to': 1.0, 'enough': 1.0, 'fun': 1.0, 'big': 1.0, 'soft': 2.0, 'sleeps': 1.0, 'is': 3.0, 'that': 1.0, 'maybe': 1.0, 'than': 1.0, 'with': 1.0, 'pillowcase': 1.0, 'was': 1.0, 'softer': 1.0, 'in': 2.0, 'would': 1.0, 'i': 4.0, 'about': 1.0, 'colorful': 1.0, 'it': 3.0, 'little': 1.0, 'read': 1.0, 'the': 10.0, 'before': 1.0, 'thought': 1.0, 'what': 1.0, 'and': 3.0, 'too': 1.0, 'reviews': 1.0, 'blanket': 1.0, 'are': 1.0, 'sheets': 2.0, 'egyptian': 1.0, 'cotton': 1.0, 'be': 1.0, 'an': 1.0, 'comforter': 1.0, 'pillow': 1.0, 'being': 1.0, 'daughter': 2.0, 'stiff': 2.0, '1000': 1.0, 'expected': 1.0, 'me': 1.0, 'dora': 1.0, 'head': 1.0, 'right': 1.0, 'kid': 1.0, 'middle': 2.0, 'of': 2.0, 'my': 2.0, 'loved': 1.0, 'for': 3.0, 'a': 2.0, 'we': 1.0, 't': 2.0, 's': 2.0, 'bedding': 2.0, 'didn': 1.0, 'expect': 1.0, 'bought': 1.0, 'count': 1.0}
Word element => {'up': 1.0, 'ended': 1.0, 'them': 1.0, 'from': 1.0, 'just': 1.0, 'new': 2.0, 'either': 1.0, 'ordering': 2.0, 'came': 1.0, 'you': 1.0, 'tire': 2.0, 'going': 1.0, 'with': 1.0, 'this': 1.0, 'a': 3.0, 'and': 1.0, 'me': 1.0, 'am': 1.0, 'so': 1.0, 'whole': 2.0, 'i': 2.0, 'tube': 2.0, 'hole': 1.0, 'convinced': 1.0, 'are': 1.0, 'the': 2.0, 'that': 1.0, 'frustrating': 1.0, 'better': 1.0, 'phil': 1.0, 'to': 2.0, 'teds': 1.0, 'or': 1.0, 'off': 1.0, 'website': 1.0}
Word element => {'mouth': 1.0, 'nose': 1.0, 'from': 1.0, 'animal': 1.0, 'pacifiers': 1.0, 'his': 1.0, 'works': 1.0, 'mam': 1.0, 'likes': 1.0, 'plush': 1.0, 'bought': 1.0, 'because': 2.0, 'baby': 1.0, 'away': 1.0, 'and': 2.0, 'pacifier': 1.0, 'we': 1.0, 'i': 1.0, 'keeps': 1.0, 'actually': 1.0, 'prefer': 1.0, 'comes': 1.0, 'to': 1.0, 'great': 1.0, 'the': 3.0, 'our': 1.0, 'that': 1.0, 'it': 2.0, 'this': 2.0, 'only': 1.0, 'with': 1.0}
Word element => {'definitely': 1.0, 'separate': 1.0, 'the': 1.0, '13': 1.0, 'dividers': 1.0, 'my': 1.0, 'foods': 1.0, 'messy': 1.0, 'other': 1.0, 'loves': 1.0, 'or': 1.0, 'recommend': 1.0, 'easy': 1.0, 'to': 2.0, 'divided': 1.0, 'spaghetti': 1.0, 'is': 1.0, 'love': 1.0, 'this': 1.0, 'with': 1.0, 'it': 2.0, 'slip': 1.0, 'clean': 1.0, 'bottom': 1.0, 'very': 1.0, 'plate': 1.0, 'and': 1.0, 'food': 1.0, 'stain': 1.0, 'old': 1.0, 'i': 2.0, 'his': 1.0, 'does': 1.0, 'has': 1.0, 'a': 1.0, 'month': 1.0, 'sauce': 1.0, 'non': 1.0, 'not': 1.0}
Word element => {'too': 1.0, 'last': 1.0, 'to': 1.0, 'don': 1.0, 'just': 1.0, 'cute': 1.0, 'makes': 1.0, 'time': 1.0, 'in': 1.0, 'be': 1.0, 'but': 1.0, 'use': 1.0, 'up': 1.0, 'gone': 1.0, 'of': 1.0, 'extra': 1.0, 'design': 2.0, 'light': 1.0, 'hand': 1.0, 'if': 1.0, 'would': 1.0, 'pictures': 1.0, 'for': 1.0, 'love': 1.0, 't': 2.0, 'the': 3.0, 'scrubbing': 1.0, 'very': 3.0, 'plate': 2.0, 'and': 2.0, 'i': 2.0, 'expect': 1.0, 'no': 1.0, 'gentle': 1.0, 'wasn': 1.0, 'easily': 1.0, 'scratches': 1.0, 'long': 1.0, 'expensive': 1.0, 'used': 1.0, 'with': 1.0, 'this': 2.0, 'it': 4.0, 'daily': 1.0}
Word element => {'into': 1.0, 'should': 1.0, 'dump': 1.0, 'over': 1.0, 'flip': 1.0, 'daughter': 1.0, 'my': 1.0, 'how': 1.0, 'what': 1.0, 'matter': 1.0, 'no': 1.0, 'suction': 1.0, 'be': 1.0, 'actually': 1.0, 'look': 2.0, 'isn': 1.0, 'side': 1.0, 'safe': 1.0, 'small': 1.0, 'have': 1.0, 'anti': 1.0, 'dishwasher': 1.0, 'great': 1.0, 'some': 1.0, 'these': 2.0, 'ones': 1.0, 'i': 2.0, 'skid': 1.0, 'too': 1.0, 'and': 3.0, 'them': 1.0, 'quality': 1.0, 'food': 1.0, 'prefers': 1.0, 'but': 1.0, 'they': 2.0, 'plate': 1.0, 'time': 1.0, 'same': 1.0, 'the': 7.0, 'plates': 3.0, 'onto': 1.0, 'both': 1.0, 'even': 1.0, 'stuff': 1.0, 'on': 1.0, 'still': 1.0, 'under': 1.0, 't': 1.0, 'a': 3.0, 'at': 1.0, 'lot': 1.0, 'bigger': 2.0, 'not': 1.0, 'tray': 1.0, 'bought': 1.0, 'one': 1.0, 'huge': 1.0, 'just': 1.0, 'gerber': 2.0, 'or': 2.0, 'her': 1.0, 'good': 1.0, 'closer': 1.0, 'all': 1.0, 'to': 3.0, 'useful': 1.0, 'are': 3.0, 'normal': 1.0, 'maybe': 1.0, 'than': 1.0, 'sized': 1.0, 'compartments': 1.0, 'size': 2.0, 'divider': 1.0, 'smallest': 1.0}
Word element => {'too': 1.0, 'for': 1.0, 'good': 2.0, 'hold': 1.0, 'light': 1.0, 'it': 2.0, 's': 2.0, 'large': 1.0, 'serve': 1.0, 'to': 2.0, 'my': 2.0, 'baby': 2.0, 'quite': 1.0, 'and': 1.0, 'food': 1.0, 'looks': 1.0, 'so': 2.0}
Word element => {'too': 1.0, 'sometimes': 1.0, 'tomatoes': 1.0, 'little': 1.0, 'or': 1.0, 'objects': 1.0, 'cute': 1.0, 'likes': 1.0, 'over': 1.0, 'affordable': 1.0, 'and': 1.0, 'quality': 1.0, 'animals': 1.0, 'son': 1.0, 'counting': 1.0, 'good': 1.0, 'going': 1.0, 'my': 1.0, 'the': 2.0}
Word element => {'newborn': 1.0, 'enough': 1.0, 'amount': 1.0, 'mouth': 1.0, 'makes': 1.0, 'once': 1.0, 'nothing': 1.0, 'fall': 1.0, 'would': 1.0, 'not': 2.0, 'shallow': 1.0, 'it': 3.0, 'this': 1.0, 'maybe': 1.0, 'looking': 1.0, 'if': 1.0, 'will': 2.0, 'toddler': 3.0, 'infant': 1.0, 'spoon': 2.0, 're': 1.0, 'a': 4.0, 'that': 1.0, 'be': 2.0, 'or': 1.0, 'holds': 1.0, 'into': 1.0, 'off': 1.0, 'good': 1.0, 'for': 3.0, 'one': 1.0, '2': 1.0, 'the': 4.0, 's': 1.0, 'you': 1.0, 'scoup': 1.0, 'left': 1.0, 'is': 2.0, 'food': 1.0, 'small': 1.0, 'so': 1.0, '1': 1.0, 'and': 2.0}
Word element => {'great': 1.0, 'friends': 1.0, 'more': 1.0, 'will': 1.0, 'important': 1.0, 'buy': 1.0, 'hand': 3.0, 'like': 2.0, 'most': 1.0, 'teeth': 1.0, 'balanced': 1.0, 've': 1.0, 'arrived': 1.0, 'on': 1.0, 'they': 2.0, 'indeed': 1.0, 'spoon': 2.0, 'feed': 1.0, 'took': 1.0, 'for': 3.0, 'one': 1.0, 'and': 3.0, 'since': 1.0, 'subtle': 1.0, 'think': 1.0, 'pack': 2.0, 'purchase': 1.0, 'quickly': 1.0, 'only': 2.0, 'do': 1.0, 'be': 1.0, 'him': 1.0, 'it': 1.0, 'are': 1.0, 'first': 1.0, 'nicely': 2.0, 'research': 1.0, 'with': 1.0, 'in': 4.0, 'at': 1.0, 'is': 4.0, 'spoons': 3.0, 'least': 2.0, 'as': 2.0, 'which': 2.0, 'good': 1.0, 'gifts': 1.0, 'or': 2.0, 'some': 1.0, 'these': 1.0, 'going': 1.0, 'take': 1.0, 'we': 1.0, 'quality': 1.0, 'baby': 2.0, 'your': 1.0, 'downs': 1.0, 'surprised': 1.0, 'if': 1.0, 'i': 5.0, '2': 4.0, 'texture': 1.0, 'was': 1.0, 'while': 1.0, 'from': 1.0, 'getting': 1.0, 'solids': 1.0, 'mine': 1.0, 'very': 1.0, 'a': 5.0, 'slight': 1.0, 'can': 1.0, 'raking': 1.0, 'grained': 1.0, 'goes': 1.0, 'that': 2.0, 'dishwasher': 1.0, 'his': 2.0, 'mouth': 1.0, 'sister': 1.0, 'those': 1.0, 'me': 1.0, 'sprouting': 1.0, 'feedings': 1.0, 'to': 5.0, 'against': 1.0, 'new': 2.0, 'time': 1.0, 'opening': 1.0, 'shape': 1.0, 'has': 1.0, 'met': 1.0, 'resistance': 1.0, 'out': 1.0, 'the': 10.0, 'of': 2.0, 'few': 1.0, 'off': 1.0, 'see': 1.0, 'seems': 1.0, 'tried': 1.0, 'were': 1.0, 'older': 1.0, 'part': 1.0, 'though': 1.0, 'wash': 1.0, 'use': 1.0}
Word element => {'avent': 1.0, 'purchase': 1.0, 'channel': 1.0, 'better': 1.0, 'a': 1.0, 'this': 1.0, 'think': 1.0, 'i': 1.0, 'products': 1.0, 'well': 1.0, 'the': 1.0, 'is': 2.0, 'priced': 1.0, 'was': 1.0, 'to': 1.0, 'product': 1.0, 'exactly': 1.0, 'good': 1.0, 'it': 1.0, 'as': 1.0, 'described': 1.0, 'quality': 1.0, 'and': 1.0}
Word element => {'though': 1.0, 'had': 1.0, 'different': 1.0, 'wish': 1.0, 'a': 1.0, 'well': 2.0, 'were': 1.0, 'etc': 1.0, 'bowl': 1.0, 'oatmeal': 1.0, 'they': 1.0, 'dry': 1.0, 'and': 1.0, 'for': 1.0, 'design': 2.0, 'pasta': 1.0, 'this': 1.0, 'use': 1.0, 'all': 1.0, 'i': 2.0, 'nice': 1.0, 'size': 1.0, 'bottles': 1.0, 'cute': 1.0, 'as': 2.0, 'very': 1.0, 'trust': 1.0, 'cereals': 1.0, 'the': 1.0, 'avent': 1.0, 'my': 1.0, 'brand': 1.0, 'baby': 1.0}
Word element => {'sliding': 1.0, 'about': 1.0, 'dont': 1.0, 'tray': 1.0, 'daughters': 1.0, 'can': 1.0, 'bottom': 1.0, 'rubber': 1.0, 'also': 1.0, 'durability': 1.0, 'safety': 2.0, 'worry': 1.0, 'chemical': 1.0, 'both': 1.0, 'safe': 1.0, 'an': 1.0, 'these': 1.0, 'ones': 1.0, 'the': 3.0, 'they': 2.0, 'so': 5.0, 'time': 1.0, 'little': 1.0, 'give': 1.0, 'my': 1.0, 'ceramic': 1.0, 'use': 1.0, 'are': 1.0, 'everywhere': 1.0, 'let': 1.0, 'at': 1.0, 'worst': 1.0, 'with': 1.0, 'it': 4.0, 'hard': 1.0, 'saw': 1.0, 'ad': 1.0, 'have': 3.0, 'and': 3.0, 'bowls': 2.0, 'because': 1.0, 'find': 1.0, 'i': 6.0, 'girls': 1.0, 'put': 1.0, 'on': 2.0, 'thought': 1.0, 'that': 1.0, 'would': 1.0, 't': 1.0, 'we': 1.0, 'wont': 1.0, 'a': 1.0, 'shot': 1.0, 'far': 1.0, 'her': 1.0, 'good': 1.0, 'for': 1.0, 'love': 2.0, 'don': 1.0, 'bpa': 1.0, 'in': 1.0, 'them': 1.0, 'is': 1.0, 'as': 1.0, 'all': 1.0, 'to': 2.0}
Word element => {'fun': 1.0, 'of': 1.0, 'a': 1.0, 'lot': 1.0, 'she': 1.0, 'years': 1.0, 'daughter': 1.0, 'is': 2.0, 'now': 1.0, 'and': 3.0, 'very': 1.0, 'are': 1.0, '2': 1.0, 'the': 2.0, 'nice': 1.0, 'products': 1.0, 'old': 1.0, 'still': 1.0, 'using': 1.0, 'them': 1.0, 'we': 2.0, 'learning': 1.0, 'my': 1.0, 'numbers': 1.0, 'vegetables': 1.0, 'so': 1.0, 'have': 1.0}
Word element => {'easy': 1.0, 'and': 3.0, 'stain': 1.0, 'very': 1.0, 'size': 1.0, 'todder': 1.0, 'descent': 1.0, 'are': 2.0, 'peeled': 1.0, 'they': 3.0, 'a': 2.0, 'for': 1.0, 'cute': 2.0, 'bowls': 1.0, 't': 1.0, 'have': 1.0, 'to': 1.0, 'them': 1.0, 'clean': 1.0, 'also': 1.0, 'havent': 1.0, 'don': 1.0, 'drawings': 1.0, 'on': 1.0}
Word element => {'design': 1.0, 'same': 1.0, 'sets': 1.0, 'have': 1.0, 'she': 1.0, 'now': 1.0, 'to': 2.0, 'christening': 1.0, 'product': 1.0, 'supposed': 1.0, 'it': 2.0, 'but': 1.0, '2feeding': 1.0, 'give': 1.0, 'of': 1.0, 'up': 1.0, 'set': 1.0, 'giving': 1.0, 'gift': 1.0, 'the': 2.0, 'my': 1.0, 'im': 1.0, 'i': 1.0, 'is': 1.0, 'already': 1.0, 'as': 1.0, 'open': 1.0, 'arrived': 1.0, 'ended': 1.0, 'when': 1.0, 'daughter': 1.0}
Word element => {'etc': 1.0, 'bag': 1.0, 'in': 1.0, 'at': 1.0, 'good': 1.0, 'ready': 1.0, 'price': 1.0, 'very': 1.0, 'like': 1.0, 'clean': 1.0, 'diaper': 1.0, 'the': 1.0, 'lightweight': 1.0, 'sets': 1.0, 'to': 2.0, 'home': 1.0, 'easy': 1.0, 'enough': 1.0, 'material': 1.0, 'nice': 1.0, 'small': 1.0, 'so': 1.0, 'three': 1.0, 'you': 1.0, 'buy': 1.0, 'can': 1.0, 'come': 1.0, 'on': 1.0, 'have': 1.0, 'one': 2.0}
Word element => {'regular': 1.0, 'well': 1.0, 'up': 1.0, 'holding': 1.0, 'been': 1.0, 'has': 1.0, 'use': 1.0, 'sturdy': 1.0, 'to': 1.0, 'colorful': 1.0, 'too': 1.0, 'being': 1.0, 'be': 1.0, 'it': 1.0, 'fact': 1.0, 'microwave': 1.0, 'and': 3.0, 'design': 1.0, 'in': 1.0, 'that': 1.0, 'the': 3.0, 'love': 1.0, 'yet': 1.0, 's': 1.0, 'non': 1.0, 'looking': 1.0, 'cheerful': 1.0, 'without': 1.0, 'can': 1.0, 'bpa': 1.0, 'nice': 1.0, 'used': 1.0, 'dishwasher': 1.0}
Word element => {'must': 1.0, 'displays': 1.0, 'inventory': 1.0, 'use': 1.0, 'and': 2.0, 'now': 1.0, 'my': 3.0, 'they': 2.0, 'used': 1.0, 'for': 4.0, 'two': 1.0, 'clothing': 1.0, 'sewing': 1.0, 'youngest': 1.0, 'have': 3.0, 'wonderful': 1.0, 'business': 1.0, 'shower': 1.0, 'children': 2.0, 'this': 1.0, 'i': 2.0, 'small': 1.0, 'so': 1.0, 'closet': 1.0, 'are': 2.0, 'basic': 1.0, 'these': 2.0, 'organization': 1.0, 'is': 1.0, 'standard': 1.0, 'a': 3.0, 'baby': 1.0, 'gift': 1.0}
Word element => {'my': 1.0, 'find': 1.0, 'the': 1.0, 'in': 1.0, 'much': 1.0, 'helped': 1.0, 'easier': 1.0, 'so': 1.0, 'cool': 1.0, 'closet': 1.0, 'right': 1.0, 'size': 1.0, 'now': 1.0, 'to': 1.0, 'was': 1.0, 'it': 2.0, 'this': 1.0, 'little': 1.0, 'she': 1.0, 'girl': 1.0, 's': 1.0, 'has': 1.0, 'makes': 1.0, 'really': 1.0, 'is': 1.0}
Word element => {'closet': 1.0, 'in': 1.0, 'section': 1.0, 'than': 1.0, 'have': 1.0, 'clothes': 1.0, 'did': 1.0, 'more': 1.0, 'the': 2.0, 'of': 1.0, 'job': 1.0, 'one': 1.0, 'prob': 1.0, 'i': 1.0, 'would': 1.0, 'two': 1.0, 'get': 1.0, 'wil': 1.0, 'packs': 1.0, 'bc': 1.0, 'u': 1.0}
Word element => {'recommend': 1.0, 'definitely': 1.0, 'gift': 1.0, 'cute': 1.0, 'make': 1.0, 'ones': 1.0, 'the': 2.0, 'using': 1.0, 'to': 1.0, 'on': 1.0, 'well': 1.0, 'a': 2.0, 'away': 1.0, 'and': 1.0, 'me': 1.0, 'something': 1.0, 'as': 1.0, 'gives': 1.0, 'start': 1.0, 'like': 1.0, 'sort': 1.0, 'made': 1.0, 'so': 1.0, 'small': 1.0, 'smaller': 1.0, 'my': 1.0, 'glad': 1.0, 'seems': 1.0, 'purchase': 1.0, 'when': 1.0, 'm': 1.0, 'putting': 1.0, 'i': 2.0, 'but': 1.0, 'timeline': 1.0, 'really': 2.0, 'of': 1.0, 'it': 1.0, 'shower': 1.0, 'this': 3.0, 'with': 1.0, 'would': 2.0, 'organizing': 1.0, 'helps': 1.0, 'baby': 2.0, 's': 1.0, 'clothes': 2.0}
Word element => {'separating': 1.0, 'use': 1.0, 'll': 1.0, 'each': 1.0, 'no': 1.0, 'there': 2.0, 'those': 1.0, 'wrote': 1.0, 'by': 1.0, 'just': 1.0, 'so': 1.0, 'ones': 1.0, 'blank': 1.0, 'provide': 1.0, 'size': 1.0, 'sizes': 3.0, 'in': 1.0, '34': 2.0, '9': 1.0, '6': 1.0, 'rod': 1.0, 'clothes': 1.0, 're': 1.0, 'easier': 1.0, 'i': 5.0, 'deal': 1.0, 'the': 3.0, 'big': 1.0, 'great': 1.0, 'nice': 1.0, 'too': 1.0, 'and': 3.0, 'tiny': 1.0, 'do': 1.0, 'that': 1.0, 'organizing': 1.0, 'you': 1.0, 'when': 1.0, 'easily': 1.0, 'for': 4.0, 'really': 1.0, 'are': 2.0, 'drawers': 1.0, 'between': 1.0, 'they': 4.0, 'reviews': 1.0, 'month': 2.0, 'it': 1.0, 'multiple': 1.0, 'putting': 1.0, 'be': 1.0, 't': 1.0, 'could': 1.0, 'hole': 1.0, 'a': 1.0, 'bigger': 1.0, 'may': 1.0, 'up': 1.0, 'don': 1.0, 'slide': 1.0, 'little': 1.0, 'very': 1.0, 'but': 2.0, 'stickers': 2.0, 'these': 2.0, 'knew': 1.0, 'happen': 1.0, 'think': 1.0, '3': 1.0, 'make': 1.0, 'on': 2.0, 'other': 2.0, 'had': 1.0, 'based': 1.0, 'wish': 1.0, '0': 1.0}
Word element => {'will': 1.0, 'that': 1.0, 'clothes': 1.0, 'fit': 1.0, 'where': 1.0, 'thankful': 1.0, 'friends': 1.0, 'received': 1.0, 'has': 1.0, 'me': 1.0, 'know': 1.0, 'hand': 1.0, 'wardrobe': 1.0, 'growing': 1.0, 'her': 2.0, 'handle': 1.0, 'say': 1.0, 'now': 1.0, 'first': 1.0, 'downs': 1.0, 'a': 4.0, 'we': 3.0, 'simple': 1.0, 'thanks': 1.0, '11': 1.0, 'years': 1.0, 'and': 5.0, 'get': 1.0, 'one': 1.0, 'i': 1.0, 'child': 1.0, 'the': 3.0, 'already': 1.0, 'these': 1.0, 'great': 1.0, 'family': 1.0, 'my': 1.0, 're': 2.0, 'gifts': 1.0, 'are': 2.0, 'expecting': 1.0, '2nd': 1.0, 'on': 1.0, 'constantly': 1.0, 'after': 1.0, 'pre': 1.0, 'finding': 1.0, 'everything': 1.0, 'at': 1.0, 'keep': 1.0, 'since': 1.0, 'lot': 2.0, 'things': 1.0, 'have': 1.0, 'forgotten': 1.0, 'changed': 1.0, 've': 1.0, 'would': 1.0, 'trying': 1.0, 'disorganized': 1.0, 'be': 2.0, 'she': 1.0, 'understatement': 1.0, 'an': 1.0, 'ready': 1.0, 'least': 1.0, 'all': 2.0, 'to': 5.0, 'our': 2.0, 'ourselves': 1.0, 'from': 1.0, 'wife': 1.0, 'while': 1.0, 'way': 1.0, 'closet': 1.0, 'organizers': 1.0}
Word element => {'quickly': 1.0, 'from': 1.0, 'grab': 1.0, 'mommy': 1.0, 'easy': 1.0, 'clothes': 2.0, 'baby': 1.0, 'wire': 1.0, 'where': 2.0, 'for': 4.0, 'using': 1.0, 'know': 1.0, 'like': 1.0, 'removable': 1.0, 'but': 1.0, 'work': 1.0, 'this': 1.0, 'with': 1.0, 'it': 1.0, 'put': 1.0, 'your': 1.0, 'grows': 1.0, 'on': 1.0, 'also': 1.0, 'in': 1.0, 'well': 2.0, 's': 1.0, 'a': 1.0, '5': 1.0, 'stickers': 2.0, 'stay': 1.0, 'daddy': 1.0, 'of': 1.0, 'set': 1.0, 'up': 1.0, 'comes': 1.0, 'to': 4.0, 'and': 2.0, 'dividers': 1.0, 'my': 1.0, 'lot': 1.0, 'are': 2.0, 'hanging': 1.0, 'the': 4.0, 'these': 2.0, 'when': 2.0, 'easily': 1.0, 'you': 2.0, 'need': 1.0, 'away': 1.0, 'relabel': 1.0, 'case': 1.0, 'divider': 1.0, 'larger': 1.0, 'size': 1.0, 'clothing': 1.0, 'shelves': 1.0, 'closet': 2.0, 'rod': 1.0, 'or': 3.0}
Word element => {'run': 1.0, 'long': 1.0, 'it': 1.0, 'worth': 1.0, 'than': 1.0, 'more': 1.0, '8': 1.0, 'from': 1.0, 'stickers': 1.0, 'with': 1.0, 'come': 1.0, 'they': 2.0, 'look': 1.0, 'liked': 1.0, 'wash': 1.0, 'in': 2.0, 'the': 2.0, 'these': 3.0, '2': 1.0, 'money': 1.0, 'will': 1.0, 'nb': 1.0, 'sounds': 1.0, 'waste': 1.0, 'that': 5.0, 'of': 4.0, 'a': 3.0, 'friend': 1.0, 'about': 1.0, 'told': 1.0, 'very': 1.0, 'like': 2.0, 'and': 3.0, 'me': 1.0, 'mine': 1.0, 'fit': 1.0, 'for': 1.0, 'i': 6.0, 'any': 1.0, 'to': 2.0, 'as': 1.0, 'all': 1.0, 'size': 3.0, 'sizes': 1.0, 'started': 1.0, 'baby': 1.0, 'clothes': 2.0, '34': 2.0, 'd': 2.0, 'bar': 1.0, 'thought': 1.0, 'purchased': 1.0, 'my': 1.0, 'daughter': 1.0, 'anticipate': 1.0, 'realized': 1.0, 'many': 1.0, 'through': 1.0, 'closet': 2.0, 'full': 1.0, 'hunting': 1.0, 'different': 1.0, 'each': 1.0, 'would': 1.0, 'be': 2.0, 'extremely': 1.0, 'time': 1.0, 'consuming': 1.0, 'potentially': 1.0, 'irritating': 1.0}
Word element => {'little': 1.0, 'for': 1.0, 'unwieldy': 1.0, 'too': 1.0, 'we': 1.0, 'what': 1.0, 'prefers': 1.0, 'be': 1.0, 'to': 2.0, 'old': 1.0, 'my': 1.0, 'grandson': 1.0, 'hands': 1.0, '12': 1.0, 'month': 1.0, 'would': 1.0, 'like': 1.0, 'seems': 1.0, 'these': 1.0, 'use': 2.0, 'thought': 1.0, 'but': 1.0, 'he': 1.0}
Word element => {'useful': 1.0, 'very': 1.0, 'having': 1.0, 'worth': 1.0, 'is': 1.0, 'buy': 1.0, 'fo': 1.0, 'moms': 1.0, 'recommend': 1.0, 'strongly': 1.0, 'them': 1.0, 'has': 1.0, 'already': 1.0, 'comfortable': 1.0, 'for': 1.0, 'he': 1.0, 'it': 4.0, 'waits': 1.0, 'months': 1.0, 'uses': 1.0, 'and': 4.0, 'baby': 1.0, 'my': 1.0, 'the': 1.0, 'scratches': 1.0, 'quickly': 1.0, 'no': 1.0, 'at': 1.0, 'all': 2.0, 'loves': 1.0, 'see': 1.0, 'funny': 1.0, 'pictures': 1.0, 'set': 1.0, '6': 1.0, 'always': 1.0, 'to': 3.0, 'eat': 1.0}
Word element => {'gift': 1.0, 'toddler': 1.0, 'needed': 1.0, 'if': 1.0, 'set': 1.0, 'would': 1.0, 'functioning': 1.0, 'not': 2.0, 'future': 1.0, 'pointless': 1.0, 'much': 1.0, 'pretty': 1.0, 'always': 1.0, 'tableware': 1.0, 'also': 1.0, 'capable': 1.0, 'silverware': 1.0, 'that': 1.0, 'speak': 1.0, 'so': 1.0, 'plastic': 1.0, 'refuse': 1.0, 'because': 1.0, 'although': 1.0, 'microwave': 2.0, 'in': 2.0, 'them': 1.0, 'use': 1.0, 'year': 3.0, 'we': 1.0, 't': 1.0, 'a': 4.0, 'kind': 1.0, 'get': 1.0, 'skid': 1.0, 'great': 2.0, 'fork': 3.0, 'are': 1.0, 'these': 1.0, 'hit': 1.0, 'old': 2.0, 'later': 1.0, 'was': 1.0, 'as': 2.0, 'any': 1.0, 'our': 1.0, 'to': 5.0, 'it': 2.0, 'hesitate': 1.0, 'found': 1.0, 'this': 2.0, 'with': 1.0, 'put': 1.0, 'stuff': 1.0, 'more': 1.0, 'is': 3.0, 'test': 1.0, 'still': 1.0, 'and': 4.0, 'bowls': 1.0, 'or': 1.0, 'held': 1.0, 'enough': 1.0, 'lucky': 1.0, 'the': 8.0, 'plates': 1.0, 'for': 2.0, 'product': 1.0, 'market': 1.0, 'before': 1.0, 'both': 1.0, 'no': 1.0, 'can': 1.0, 'four': 1.0, 'have': 3.0, 'favorite': 2.0, 'bottom': 1.0, 'over': 1.0, 'up': 1.0, 'of': 3.0, 'family': 1.0, 'purchase': 1.0, 'my': 2.0, 'i': 6.0, 'two': 1.0, 'feature': 1.0, 'they': 1.0, 'never': 1.0, 'lots': 1.0, 'dishwashing': 1.0}
Word element => {'before': 1.0, 'different': 1.0, 'item': 1.0, 'looking': 1.0, 'keep': 1.0, 'anyone': 1.0, 'purchasing': 1.0, 'alternatives': 1.0, 'for': 1.0, 'suggest': 1.0, 'easily': 1.0, 'pops': 1.0, 'out': 1.0, 'time': 1.0, 'second': 1.0, 'leaking': 1.0, 'messy': 1.0, 'drink': 1.0, 'ended': 1.0, 'comes': 1.0, 'to': 2.0, 'an': 1.0, 'from': 1.0, 'year': 1.0, 'gets': 1.0, 'daughter': 1.0, 'cups': 1.0, 'quite': 1.0, 'off': 1.0, 'loves': 1.0, 'the': 2.0, '2': 1.0, 'and': 3.0, 'be': 1.0, 'travel': 1.0, 'up': 1.0, 'my': 1.0, 'old': 1.0, 'i': 2.0, 'thought': 1.0, 'easy': 1.0, 'would': 2.0, 'cover': 1.0, 'version': 1.0, 'with': 1.0, 'this': 2.0, 'it': 2.0}
Word element => {'graphics': 1.0, 'because': 1.0, 'likes': 1.0, 'even': 1.0, 'of': 2.0, 'lot': 1.0, 'a': 1.0, 'is': 1.0, 'quality': 1.0, 'meal': 2.0, 'bowl': 1.0, 'be': 1.0, 'exactly': 1.0, 'like': 1.0, 'time': 1.0, 'makes': 1.0, 'site': 1.0, 'they': 1.0, 's': 2.0, 'fun': 2.0, 'super': 1.0, 'with': 1.0, 'it': 1.0, 'first': 1.0, 'excited': 1.0, 'empty': 1.0, 'our': 2.0, 'were': 1.0, 'play': 1.0, 'we': 1.0, 'plate': 1.0, 'and': 3.0, 'couldn': 1.0, 't': 1.0, 'the': 5.0, 'are': 1.0, 'baby': 3.0, 'about': 1.0, 'colors': 1.0, 'its': 1.0, 'to': 1.0, 'happier': 1.0, 'look': 1.0, 'superb': 1.0, 'on': 1.0}
Word element => {'gift': 1.0, 'happy': 1.0, 'very': 1.0, 'bilingually': 1.0, 'while': 1.0, 'listen': 1.0, 'and': 1.0, 'on': 2.0, 'play': 1.0, 'can': 1.0, 'her': 2.0, 'up': 1.0, 'violence': 1.0, 'girl': 1.0, 'an': 1.0, 'helps': 1.0, 'toy': 3.0, 'mother': 1.0, 'that': 1.0, 'a': 2.0, 'for': 3.0, 'in': 1.0, 'have': 1.0, 'little': 1.0, 'bought': 1.0, 'with': 1.0, 'it': 3.0, 'this': 3.0, 'christmas': 1.0, 'to': 1.0, 'wanted': 1.0, 'interactive': 1.0, 'was': 2.0, 'group': 1.0, 'face': 1.0, 'who': 1.0, 'learn': 1.0, 'lit': 1.0, 'she': 3.0, 'home': 1.0, 's': 1.0, 'i': 1.0, 'escaped': 1.0}
Word element => {'not': 1.0, 'just': 1.0, 'that': 2.0, 'bilingual': 1.0, 'thought': 2.0, 'now': 1.0, 'was': 1.0, 'with': 1.0, '3': 1.0, 'when': 1.0, 'daughter': 1.0, 'really': 2.0, 'half': 1.0, 'all': 1.0, 'to': 1.0, 'any': 1.0, 'about': 1.0, 'colors': 1.0, 'and': 2.0, 'this': 1.0, 'found': 1.0, 'it': 5.0, 'she': 3.0, 'show': 1.0, 'never': 1.0, 'would': 2.0, 'in': 1.0, 'year': 1.0, 'll': 1.0, 'be': 2.0, 'tool': 1.0, 'sit': 1.0, 'i': 3.0, 'etc': 1.0, 's': 3.0, 'a': 4.0, 'we': 1.0, 'are': 1.0, 'my': 1.0, 'family': 1.0, 'interest': 1.0, 'so': 1.0, 'eh': 1.0, 'her': 3.0, 'good': 1.0, 'learning': 1.0, 'letters': 1.0, 'but': 1.0, 'got': 1.0, 'okay': 1.0}
Word element => {'have': 1.0, 'toys': 1.0, 'bilingual': 1.0, 'we': 1.0, 'other': 1.0, 'few': 1.0, 'old': 1.0, 'three': 1.0, 'both': 1.0, 'etc': 1.0, 'daughter': 1.0, 'also': 1.0, 'in': 3.0, 'plays': 1.0, 'value': 1.0, 'purchased': 1.0, 'sturdy': 1.0, 'unlike': 1.0, 'made': 1.0, 'educational': 1.0, 'excellent': 1.0, 'settings': 1.0, 'is': 3.0, 'kindergarten': 1.0, 'the': 1.0, 'spanish': 3.0, 'great': 1.0, 'english': 1.0, 'love': 1.0, 'helpful': 1.0, 'it': 2.0, 'with': 3.0, 'this': 2.0, 'immersion': 1.0, 'my': 2.0, 'letter': 1.0, 'sounds': 1.0, 'well': 1.0, 'a': 2.0, 'and': 2.0, 'year': 1.0, 'very': 2.0, 'toy': 1.0, 'colors': 1.0}
Word element => {'for': 1.0, 'eligibility': 1.0, 'steep': 1.0, 'be': 1.0, 'shipping': 1.0, 'they': 1.0, 'with': 2.0, 'sticking': 1.0, 'aios': 1.0, 'switch': 1.0, 'size': 1.0, 'newborn': 1.0, 'outgrew': 1.0, 'able': 1.0, 'night': 1.0, 'especially': 1.0, 'slack': 1.0, 'gone': 1.0, 'something': 1.0, 'lint': 1.0, 'insert': 1.0, 'packaging': 1.0, 'wetter': 1.0, 'a': 5.0, 'prime': 1.0, 'amazon': 1.0, 'been': 2.0, 'most': 1.0, 'perhaps': 1.0, 'functioned': 1.0, 'let': 1.0, 'instantly': 1.0, 'or': 1.0, 'once': 1.0, 'these': 2.0, 'consideration': 1.0, 'pilling': 2.0, 'decided': 1.0, 'used': 4.0, 'bleached': 1.0, 'would': 2.0, 'washes': 1.0, 'son': 1.0, 'our': 2.0, 'to': 6.0, 'all': 1.0, 'normal': 1.0, 'had': 3.0, 'leaks': 1.0, 'diapers': 2.0, 'first': 2.0, 'that': 1.0, 'concerned': 1.0, 'diaper': 2.0, 'as': 5.0, 'heavy': 1.0, 'impression': 1.0, 'find': 1.0, 'washed': 1.0, 'on': 3.0, 'us': 2.0, 'sewed': 1.0, 'when': 2.0, 'know': 1.0, 'not': 2.0, 'pilled': 1.0, 'but': 2.0, 'pre': 1.0, 'there': 1.0, 'major': 1.0, 'affordable': 1.0, 'up': 2.0, 'product': 1.0, 'child': 1.0, 'them': 2.0, 'according': 1.0, 'warning': 1.0, 'option': 1.0, 'great': 1.0, 'doublers': 1.0, 'of': 3.0, 'the': 9.0, 'prefolds': 2.0, 'alarming': 1.0, 'myself': 1.0, 'instructions': 1.0, 'have': 2.0, 'after': 1.0, 'sometimes': 1.0, 'this': 2.0, 'few': 1.0, 'just': 2.0, 'came': 1.0, 'if': 2.0, 'still': 1.0, 'recurred': 1.0, 'off': 1.0, 'and': 5.0, 'some': 1.0, 'never': 1.0, 'were': 3.0, 'well': 1.0, 'i': 4.0, 'my': 1.0, 'older': 1.0, 'at': 2.0, 'is': 2.0, 'more': 2.0, 'was': 4.0, 'pul': 1.0, 'he': 2.0, 'soaked': 1.0, 'through': 1.0, 'single': 1.0, 'chinese': 1.0, 'out': 1.0, 'absorbent': 1.0, 'than': 1.0, 'covers': 1.0, 'can': 1.0, 'so': 2.0, 'fleece': 1.0, 'leg': 1.0, 'we': 7.0, 'take': 1.0}
Word element => {'thought': 1.0, 'purchased': 1.0, 'swaddlebees': 1.0, 'the': 9.0, 'out': 1.0, 'seem': 1.0, 'through': 1.0, 'amazon': 1.0, 'shipment': 2.0, 'month': 2.0, 'ten': 1.0, 'normally': 1.0, 'per': 1.0, 'in': 4.0, 'my': 1.0, 'generation': 1.0, 'diapers': 3.0, 'because': 1.0, 'instructions': 2.0, 'seventh': 1.0, 'brands': 1.0, 'baby': 1.0, 'next': 2.0, 'them': 2.0, 'just': 1.0, 'for': 4.0, 'using': 1.0, 'washer': 1.0, 'get': 1.0, 'and': 5.0, 'too': 1.0, 'between': 1.0, 'reviews': 1.0, 'they': 1.0, 'time': 1.0, 'sheet': 1.0, 'cloth': 2.0, 'run': 1.0, 'old': 1.0, 'brand': 1.0, 'started': 1.0, 'point': 1.0, 'i': 11.0, 'auto': 1.0, 'disposables': 1.0, '4': 1.0, 'price': 1.0, 'before': 1.0, '5': 1.0, 'which': 1.0, 'good': 2.0, 'have': 1.0, 'am': 1.0, 'when': 1.0, 'you': 1.0, 'times': 1.0, 'on': 1.0, 'your': 1.0, 'was': 1.0, 'boil': 1.0, 'great': 1.0, 'packs': 1.0, 'compared': 1.0, 'recommend': 1.0, 'were': 2.0, 'job': 1.0, 'to': 4.0, 'pretty': 1.0, 'read': 1.0, 'very': 1.0, 'so': 1.0, 'can': 1.0, 'or': 1.0, 'use': 1.0, 'her': 1.0, 'wash': 1.0, 'boiled': 1.0, 'about': 1.0, 'other': 1.0, 'an': 1.0, 'hour': 1.0, 'received': 1.0, 'also': 1.0, 'folding': 1.0, 'decided': 1.0, 'used': 1.0, 'helpful': 1.0, 'short': 1.0, 'day': 1.0, 'did': 1.0, 'their': 1.0, 'these': 1.0, 'comes': 1.0, 'with': 1.0, 'directions': 1.0, 'cloths': 1.0, 'either': 1.0, 'would': 1.0, 'definately': 1.0}
Word element => {'places': 1.0, 'cheaper': 1.0, '4': 1.0, 's': 1.0, 'again': 1.0, 'price': 1.0, 'product': 1.0, '6': 1.0, '2': 1.0, 'by': 1.0, 'gotten': 1.0, 'could': 1.0, 'came': 1.0, 'wish': 1.0, 'needed': 1.0, 'only': 2.0, 'really': 1.0, '18': 1.0, 'happen': 1.0, 'great': 2.0, 'color': 1.0, 'weight': 1.0, 'stains': 1.0, 'suggested': 1.0, 'don': 1.0, 'because': 1.0, 'easily': 1.0, 'that': 1.0, 'shrink': 1.0, 'much': 1.0, 'do': 2.0, 'those': 1.0, 'note': 1.0, 'diapering': 2.0, 'three': 1.0, 'designed': 1.0, 'into': 1.0, 'or': 1.0, 'fan': 1.0, 'recommend': 1.0, 'unbleached': 1.0, 'training': 1.0, 'than': 1.0, 'way': 1.0, 'all': 3.0, 'make': 1.0, 'you': 2.0, 'able': 1.0, 'should': 1.0, 'cloth': 2.0, 'instead': 2.0, 'friend': 1.0, 'easy': 1.0, 'sold': 1.0, 'get': 1.0, 'months': 1.0, 'few': 1.0, 'measurements': 1.0, 'then': 1.0, 'we': 2.0, 'a': 5.0, 'diapers': 1.0, 'are': 4.0, 'anyone': 1.0, 'and': 8.0, 'too': 1.0, 'soft': 1.0, '3': 2.0, 'after': 3.0, '7': 1.0, 'up': 2.0, 'new': 1.0, 'worried': 1.0, 'large': 2.0, 'just': 1.0, 'not': 1.0, 'seem': 1.0, 'if': 1.0, 'still': 1.0, 'fold': 2.0, 'absolutely': 1.0, 'be': 2.0, 'used': 1.0, 'diminishing': 1.0, 'probably': 2.0, 'any': 2.0, 'feel': 1.0, 'does': 1.0, '14': 2.0, 'total': 1.0, 'month': 2.0, 'she': 1.0, 'pretty': 1.0, 'to': 13.0, 'as': 2.0, 'now': 2.0, 'show': 1.0, 'mediums': 2.0, 'amazon': 1.0, 'been': 2.0, 'they': 11.0, 'have': 5.0, 'pack': 1.0, 'definitely': 1.0, 'quilted': 1.0, 'it': 4.0, '9': 1.0, 'extra': 1.0, 'another': 1.0, 'my': 1.0, 'about': 7.0, 'well': 1.0, 'i': 13.0, 'stated': 1.0, 'prior': 1.0, 'within': 1.0, 'though': 1.0, 'rough': 1.0, 'each': 1.0, 'washes': 1.0, 'would': 3.0, 'looking': 1.0, 'using': 1.0, 'which': 1.0, 'for': 6.0, 'beat': 1.0, 't': 3.0, 'fit': 1.0, 'ranges': 1.0, 'some': 1.0, 'these': 4.0, '5': 2.0, 'before': 1.0, 'very': 2.0, 'inches': 2.0, 'oh': 1.0, 'with': 4.0, 'snappi': 1.0, 'packs': 3.0, 'potty': 1.0, 'pounds': 1.0, 'compared': 1.0, 'nicely': 1.0, 'but': 4.0, 'different': 1.0, 'use': 1.0, 'wash': 3.0, 'her': 3.0, 'kind': 1.0, 'the': 12.0, 'of': 2.0, 'prefold': 2.0, 'can': 1.0, 'so': 4.0, 'wont': 1.0, 'swaddlebees': 1.0, 'guessed': 1.0, 'purchased': 4.0, 'had': 1.0, 'old': 1.0, 'who': 1.0, 'at': 1.0, 'look': 1.0, 'is': 2.0, 'more': 1.0, 'washing': 2.0, 'on': 2.0, 'long': 1.0, 'pilling': 1.0, 'down': 1.0, 'perfectly': 1.0, 'per': 1.0, 'rely': 1.0, 'm': 1.0, 'in': 3.0, 'most': 1.0, 'back': 1.0, 'them': 3.0, 'minor': 1.0, 'reviewer': 1.0, 'didn': 1.0, 'want': 1.0, 'buy': 2.0, 'when': 1.0, 'from': 1.0, 'outgrew': 1.0}
Word element => {'much': 1.0, 'to': 2.0, 'have': 1.0, 'ever': 1.0, 'using': 1.0, 'i': 3.0, 'milk': 1.0, 'pumped': 1.0, 'would': 1.0, 'started': 1.0, 'more': 1.0, 'since': 1.0, 'this': 1.0, 'it': 1.0, 'anyone': 1.0, 'also': 1.0, 'allows': 1.0, 'you': 1.0, 'pumping': 1.0, 'do': 1.0, 'things': 1.0, 'while': 1.0, 'bra': 1.0, 'recommend': 1.0}
Word element => {'product': 1.0, 'well': 1.0, 'our': 2.0, 'for': 2.0, 'one': 2.0, 'already': 1.0, 'really': 1.0, 'second': 1.0, 'want': 1.0, '34': 2.0, 'fast': 1.0, 'years': 1.0, 'now': 1.0, 'to': 1.0, 'old': 1.0, 'in': 1.0, 'seems': 1.0, 'and': 2.0, 'as': 1.0, 'very': 1.0, 'like': 2.0, 'arrived': 1.0, 'new': 1.0, 'condition': 1.0, 'two': 3.0, 'item': 1.0, 'first': 1.0, 'children': 1.0, 'this': 3.0, 'born': 1.0, 'monitors': 1.0, 'have': 3.0, 'we': 4.0, 'work': 1.0, 'will': 1.0, 'under': 1.0, 'so': 1.0}
Word element => {'parents': 1.0, 'would': 1.0, 'overall': 1.0, 'still': 1.0, 'mailbox': 1.0, 'street': 1.0, 'front': 1.0, 'out': 1.0, 'go': 1.0, 'walls': 1.0, 'cement': 1.0, 'housing': 1.0, 'old': 1.0, 'wonderful': 1.0, 'for': 1.0, 'unit': 1.0, 'window': 1.0, 'sleeping': 1.0, 'hearing': 1.0, 'problem': 1.0, 'no': 1.0, 'etc': 1.0, 'movie': 1.0, 'watching': 1.0, 'when': 1.0, 'life': 1.0, 'relieve': 1.0, 'help': 1.0, 'top': 1.0, 'across': 2.0, 'lights': 1.0, 'downstairs': 1.0, 'with': 2.0, 'volume': 1.0, 'much': 1.0, 'allow': 1.0, 'designed': 1.0, 'since': 1.0, 'a': 6.0, 't': 1.0, 's': 4.0, 'on': 5.0, 'capability': 1.0, 'it': 4.0, 'this': 4.0, 'found': 1.0, 'which': 1.0, 'based': 1.0, 'originally': 1.0, 'mixed': 1.0, 'except': 1.0, 'tons': 1.0, 'because': 2.0, 'that': 5.0, 'blue': 1.0, 'been': 1.0, 'offers': 1.0, 'rather': 1.0, 'had': 2.0, 'purchased': 1.0, 'worries': 1.0, 'was': 3.0, 'almost': 1.0, 're': 1.0, 'thousands': 1.0, 'military': 1.0, 'baby': 2.0, 'read': 1.0, 'monitor': 8.0, 'very': 1.0, 'higher': 1.0, 'temperature': 2.0, 'basic': 2.0, 'humid': 1.0, 'screen': 1.0, 'well': 1.0, 'i': 9.0, 'fan': 2.0, 'while': 2.0, 'pregnant': 1.0, 'most': 1.0, 'other': 1.0, 'all': 1.0, 'as': 2.0, 'our': 1.0, 'pretty': 1.0, 'to': 9.0, 'happy': 1.0, 'one': 1.0, 'used': 1.0, 'decided': 1.0, 'time': 1.0, 'worried': 2.0, 'model': 2.0, 'purchasing': 1.0, 'range': 1.0, 'live': 2.0, 'about': 1.0, 'several': 1.0, 'of': 3.0, 'the': 23.0, 'battery': 1.0, 'sale': 1.0, 'exact': 1.0, 'have': 7.0, 'actually': 1.0, 'products': 1.0, 'price': 1.0, 'surprisingly': 1.0, 'm': 2.0, 'in': 3.0, 'times': 1.0, 'night': 1.0, 'monitors': 2.0, 'you': 1.0, 'hot': 1.0, 'environment': 1.0, 'don': 1.0, 'but': 1.0, 'ac': 2.0, 'poor': 1.0, 'quick': 1.0, 'son': 1.0, 'room': 1.0, 'receive': 1.0, 'nice': 1.0, 'we': 8.0, 'reviews': 3.0, 'take': 1.0, 'at': 3.0, 'is': 3.0, 'look': 1.0, 'whether': 1.0, 'through': 1.0, 'need': 1.0, 'adjust': 1.0, 'can': 1.0, 'so': 1.0, 'speed': 1.0, 'recommend': 1.0, 'were': 1.0, 'also': 1.0, 'see': 1.0, 'seems': 1.0, 'same': 2.0, 'hear': 2.0, 'receiver': 3.0, 'great': 1.0, 'agree': 1.0, 'particular': 1.0, 'should': 1.0}
Word element => {'soothe': 1.0, 'grandma': 1.0, 'case': 1.0, 'down': 1.0, 'sentence': 1.0, 'sometimes': 1.0, 'room': 1.0, 'hear': 1.0, 'only': 2.0, 'handset': 1.0, 'talk': 2.0, 'love': 1.0, '2': 1.0, 'house': 1.0, 'outside': 1.0, 'to': 5.0, 'our': 2.0, 'and': 7.0, 'feature': 1.0, 'or': 4.0, 'knowing': 1.0, 'takes': 1.0, 'favorite': 1.0, 'soothing': 1.0, 'difficulty': 1.0, 'back': 1.0, 'most': 1.0, 'particularly': 1.0, 'depending': 1.0, 'am': 1.0, 'lullabies': 1.0, 'internet': 1.0, 'this': 2.0, 'sensor': 2.0, 'what': 1.0, 'so': 1.0, 'can': 4.0, 'comparison': 1.0, 'had': 1.0, 'select': 1.0, 'avent': 1.0, 'includes': 1.0, 'baby': 3.0, 'calm': 1.0, 'my': 2.0, '530': 1.0, 'interfere': 1.0, 'white': 1.0, 'during': 1.0, 'reviewing': 1.0, 'sensors': 1.0, 'i': 7.0, 'little': 1.0, 'two': 1.0, 'dect': 2.0, 'near': 1.0, 'on': 3.0, 'mom': 1.0, 'your': 1.0, 'which': 4.0, 'one': 3.0, 'for': 2.0, 'actually': 1.0, 'is': 3.0, 'connecting': 1.0, 'with': 2.0, 'scd530': 1.0, 'play': 1.0, 'about': 1.0, 'no': 1.0, 'just': 1.0, 'a': 8.0, 'pictured': 1.0, 'light': 1.0, 'signal': 2.0, 'not': 4.0, 'was': 1.0, 'blue': 1.0, 'thephilips': 1.0, 'having': 2.0, 'does': 1.0, 'monitor': 4.0, 'router': 1.0, 'them': 1.0, 'has': 1.0, 'child': 2.0, 'it': 5.0, 'received': 2.0, 'also': 2.0, 'nightlight': 1.0, 'cinderblock': 1.0, 'helps': 2.0, 'there': 1.0, '1': 1.0, 'since': 1.0, 'means': 2.0, 'turn': 1.0, 'in': 2.0, 'check': 1.0, 'are': 1.0, 'you': 2.0, 'night': 1.0, 'things': 1.0, 'opposite': 1.0, 'appreciate': 1.0, 'stronger': 1.0, 'model': 2.0, 'uses': 1.0, 'all': 1.0, 'other': 1.0, 'basement': 1.0, 'electronics': 1.0, 'through': 1.0, 'walls': 1.0, 'from': 3.0, 'temperature': 3.0, 'corner': 1.0, 'humidity': 3.0, 'the': 13.0, 'of': 1.0, 'fussy': 2.0, 'home': 1.0}
Word element => {'our': 1.0, 'behind': 1.0, 'so': 1.0, 'small': 1.0, 'hear': 1.0, 'having': 1.0, 'is': 2.0, 'i': 5.0, 'but': 1.0, 'train': 1.0, 'didn': 1.0, 'sensitive': 1.0, 'temperature': 1.0, 'away': 1.0, 'the': 5.0, 'my': 2.0, 'would': 1.0, 'sensor': 1.0, 'this': 1.0, 't': 2.0, 'a': 1.0, 'since': 1.0, 'like': 1.0, 'blow': 1.0, 'need': 1.0, 'catch': 1.0, 'think': 1.0, 'house': 2.0, 'off': 1.0, 'product': 1.0, 'love': 1.0, 'lights': 2.0, 'attention': 1.0, 'if': 1.0, 'her': 1.0, 'led': 2.0, 'right': 1.0, 'that': 1.0, 'sets': 1.0, 'monitor': 1.0, 'very': 1.0, 'display': 1.0, 'they': 1.0, 'light': 1.0, 'sound': 1.0, 'don': 1.0, 'up': 1.0, 'when': 1.0, 'whistles': 1.0}
Word element => {'know': 1.0, 'normal': 1.0, 'so': 1.0, 'yrs': 1.0, '1': 1.0, 'had': 1.0, 'other': 1.0, 'always': 1.0, 'recommend': 1.0, 'anymore': 1.0, 'doesn': 1.0, 'was': 1.0, 'because': 1.0, 'maybe': 2.0, 'again': 1.0, 'signal': 1.0, 'with': 1.0, 'this': 3.0, 'it': 3.0, '2': 1.0, 'work': 1.0, 'but': 2.0, 'back': 2.0, 'display': 1.0, 'reviews': 1.0, 'product': 1.0, 'for': 1.0, 'actually': 1.0, 'negative': 1.0, 'of': 2.0, 'don': 1.0, 'up': 1.0, 'set': 1.0, 'there': 1.0, 'lot': 1.0, 'i': 6.0, 'awhile': 1.0, 'purchase': 1.0, 'my': 1.0, 'happy': 1.0, 'quite': 2.0, 'off': 1.0, 'being': 2.0, 'ended': 1.0, 'after': 1.0, 'hesitated': 1.0, 't': 2.0, 'a': 3.0, 'seeing': 1.0, 'completely': 1.0, 'is': 2.0, 'occassionally': 1.0, 'has': 1.0, 'the': 4.0, 'best': 1.0, 'working': 1.0, 'monitor': 1.0, 'couple': 1.0, 'and': 2.0, 'been': 2.0, 'that': 4.0, 'have': 3.0, 'though': 1.0, 'irritations': 1.0, 'bought': 2.0, 'one': 1.0, 'would': 2.0, 'need': 1.0, 'others': 1.0, 'handset': 1.0, 'on': 2.0, 'turned': 1.0, 'to': 2.0, 'receive': 1.0}
Word element => {'enough': 1.0, 'screenthat': 1.0, 'color': 1.0, '5': 1.0, '3': 1.0, 'baby': 1.0, 'monitormotorola': 1.0, 'for': 1.0, 'inch': 1.0, 'instead': 1.0, 'opted': 1.0, 'close': 1.0, 'have': 1.0, 'very': 1.0, 'lcd': 1.0, 'set': 1.0, 'up': 1.0, 'is': 2.0, 'on': 1.0, 'a': 1.0, 'well': 1.0, 'usually': 1.0, 'easy': 1.0, 'video': 2.0, 'but': 1.0, 'our': 1.0, 'volume': 1.0, 'digital': 1.0, 'and': 2.0, 'monitor': 2.0, 'the': 2.0, 'loud': 1.0, 'with': 2.0, 'it': 2.0, 'parent': 1.0, 'this': 1.0, 'unit': 1.0, 'us': 1.0, 'too': 1.0, 'ear': 1.0, 'works': 1.0, 'low': 1.0, 'we': 2.0, 'was': 1.0, 'to': 3.0, 'had': 1.0, 'carry': 1.0}
Word element => {'been': 1.0, 'has': 1.0, 'well': 1.0, 'lots': 1.0, 'bought': 1.0, 'and': 2.0, 'automation': 1.0, 'of': 1.0, 'networks': 1.0, 'going': 1.0, 'multiple': 1.0, 'flawless': 1.0, 'at': 1.0, 'home': 1.0, 'experience': 1.0, 'that': 1.0, 'wireless': 1.0, 'conflict': 1.0, 'have': 1.0, 'i': 2.0, 'handled': 1.0, 'said': 1.0, 'my': 2.0, 'the': 1.0, 'place': 1.0, 'because': 1.0, 'reviews': 1.0, 'this': 1.0, 'it': 1.0}
Word element => {'dependable': 1.0, 'no': 1.0, 'other': 1.0, 'static': 1.0, 'my': 1.0, 'out': 1.0, 'daycare': 1.0, 'house': 1.0, 'but': 1.0, 'be': 1.0, 'not': 1.0, 'may': 1.0, 'wise': 1.0, 'is': 5.0, 'on': 1.0, 'i': 2.0, 'problem': 1.0, 'there': 1.0, 'of': 1.0, 'up': 1.0, 'and': 2.0, 'do': 1.0, 'monitor': 2.0, 'with': 1.0, 'this': 1.0, 'loud': 2.0, 'only': 1.0, 'it': 2.0, 'can': 1.0, 't': 1.0, 'great': 1.0, 'the': 3.0, 'a': 2.0, 'volume': 1.0, 'that': 3.0, 'you': 1.0, 'turn': 1.0, 'receiver': 1.0, 'bad': 1.0, 'have': 1.0, 'all': 1.0}
Word element => {'purchased': 1.0, 'anything': 1.0, 'most': 1.0, 'one': 1.0, 'inadvertently': 1.0, 'safety': 1.0, 'however': 1.0, 'go': 1.0, 'get': 1.0, 'press': 1.0, 'got': 1.0, 've': 2.0, 'power': 1.0, 'not': 1.0, 'thing': 1.0, 'hard': 2.0, 'bright': 1.0, 'off': 3.0, 'see': 1.0, 'where': 1.0, 'just': 1.0, 'miss': 2.0, 'might': 1.0, 'two': 1.0, 'actually': 1.0, 'love': 1.0, 'parents': 1.0, 'key': 1.0, 'set': 1.0, 'helpful': 1.0, 'nervous': 1.0, 'reading': 1.0, 'like': 1.0, 'thus': 1.0, 'light': 1.0, 'was': 2.0, 'to': 8.0, 'as': 2.0, 'super': 1.0, 'winter': 1.0, 'bought': 1.0, 'insulated': 1.0, 'be': 2.0, 'd': 1.0, 'temp': 3.0, 'function': 1.0, 'only': 1.0, 'england': 1.0, 'amazing': 1.0, 'really': 3.0, 'don': 1.0, 'isn': 1.0, 'led': 1.0, 'first': 1.0, 'with': 2.0, 'it': 9.0, 'highly': 1.0, 'this': 4.0, 'product': 1.0, 'accuracy': 1.0, 'for': 2.0, 'anxious': 1.0, 't': 2.0, 'a': 6.0, 'we': 3.0, 's': 2.0, 'when': 1.0, 'again': 1.0, 'am': 1.0, 'mom': 1.0, 'is': 5.0, 'worried': 1.0, 'new': 3.0, 'heat': 1.0, 'alarm': 1.0, 'our': 2.0, 'how': 1.0, 'besides': 1.0, 'put': 2.0, 'on': 3.0, 'very': 1.0, 'monitor': 6.0, 'higher': 1.0, 'temperature': 2.0, 'i': 10.0, 'well': 2.0, 'my': 2.0, 'may': 1.0, 'me': 1.0, 'and': 5.0, 'nursery': 1.0, 'about': 1.0, 'during': 1.0, 'you': 2.0, 'able': 1.0, 'gauges': 1.0, 'recommend': 1.0, 'were': 1.0, 'm': 2.0, 'in': 1.0, 'of': 3.0, 'the': 11.0, 'an': 1.0, 'other': 1.0, 'playing': 1.0, 'valued': 1.0, 'shut': 1.0, 'room': 1.0, 'noise': 2.0, 'double': 1.0, 'display': 1.0, 'check': 1.0, 'spot': 1.0, 'always': 1.0, 'baby': 1.0, 'displays': 1.0, 'current': 1.0, 'so': 2.0, 'can': 2.0, 'music': 1.0, 'even': 1.0, 'beep': 1.0, 'button': 1.0, 'flashes': 1.0, 'want': 1.0, 'goes': 1.0, 'or': 1.0, 'lower': 1.0, 'than': 1.0, 'concerned': 1.0, 'that': 4.0, 'also': 1.0, 'blue': 2.0, 'whenever': 1.0, 'fan': 1.0, 'picks': 1.0, 'up': 1.0, 'if': 2.0, 'worrier': 1.0}
Word element => {'wake': 1.0, 'just': 1.0, 'will': 1.0, 'inferior': 1.0, 'wasting': 1.0, 'did': 1.0, 'up': 2.0, 'don': 1.0, 'money': 2.0, 'other': 1.0, 'would': 1.0, 'worth': 1.0, 'neck': 1.0, 'carry': 1.0, 'any': 1.0, 'to': 2.0, 'lanyard': 1.0, 'parents': 1.0, 'appear': 1.0, 'and': 4.0, 'out': 1.0, 'couple': 1.0, 'bucks': 1.0, 'monitors': 1.0, 'there': 1.0, 'among': 1.0, 'absolutely': 1.0, 'd': 1.0, 'what': 1.0, 'had': 1.0, 'recommend': 1.0, 'was': 1.0, 'around': 1.0, 'is': 1.0, 'comes': 1.0, 'trust': 1.0, 'the': 3.0, 'figured': 1.0, 't': 1.0, 'a': 3.0, 'we': 4.0, 'sony': 2.0, 'highly': 1.0, 'amazing': 1.0, 'kid': 1.0, 'yeah': 1.0, 'quality': 1.0, 'rated': 1.0, 'baby': 1.0, 'highest': 1.0, 'steal': 1.0, 'well': 1.0, 'comfortably': 1.0, 'has': 2.0, 'right': 1.0, 'long': 1.0, 'gone': 1.0, 'in': 2.0, '90s': 1.0, 'save': 1.0, 'my': 1.0, 'smaller': 1.0, 'an': 1.0, 'friend': 1.0, 'it': 3.0, 'very': 1.0, 'monitor': 1.0, 'little': 1.0, 'that': 4.0, 'been': 1.0, 'on': 1.0, 'your': 3.0, 'make': 1.0, 'guy': 1.0, 'analog': 2.0, 'got': 1.0, 'product': 1.0, 'for': 1.0, 'end': 1.0, 'do': 1.0, 'much': 1.0, 'than': 1.0, 'this': 1.0, 'pictures': 1.0}
Word element => {'significantly': 1.0, 'cry': 1.0, 'them': 1.0, 'prior': 1.0, 'your': 1.0, 'but': 1.0, 'box': 1.0, 'right': 1.0, 'worked': 1.0, 'sony': 1.0, 'to': 6.0, 'got': 1.0, 'upon': 1.0, 'great': 1.0, 'we': 6.0, 'a': 8.0, 'was': 4.0, 'so': 1.0, 'around': 1.0, 'buzzing': 1.0, 'dect': 1.0, 'listen': 1.0, 'crowded': 1.0, 'out': 1.0, 't': 1.0, 'replacement': 1.0, 'child': 3.0, 'up': 1.0, 'anticipated': 1.0, 'problem': 1.0, 'starting': 1.0, 'it': 4.0, 'receiving': 1.0, 'signals': 1.0, 'unit': 2.0, 'wouldn': 1.0, 'this': 1.0, 'soft': 2.0, 'and': 10.0, 'one': 1.0, 'crying': 1.0, 'too': 1.0, 'monitor': 2.0, 'be': 1.0, 'louder': 1.0, 'even': 1.0, 'sounded': 1.0, 'talking': 1.0, 'in': 4.0, 'could': 1.0, 'will': 1.0, 'apartment': 1.0, 'advantages': 1.0, 'because': 1.0, 'babycall': 1.0, 'also': 1.0, 'us': 3.0, 'turned': 1.0, 'feet': 1.0, 'i': 3.0, 'technology': 1.0, 'wifi': 1.0, 'adult': 1.0, 'returned': 1.0, 'ton': 1.0, 'my': 1.0, 'approximately': 1.0, 'philips': 1.0, 'realized': 1.0, 'tested': 1.0, 'significant': 1.0, 'volume': 4.0, 'with': 1.0, 'others': 1.0, 'baby': 1.0, '3': 1.0, 'away': 1.0, 'live': 1.0, 'barely': 1.0, 'able': 1.0, 'you': 1.0, 'other': 1.0, 'the': 12.0, 'of': 6.0, 'person': 1.0, 'sent': 1.0, 'wife': 1.0, 'normal': 1.0, 'bought': 1.0, 'called': 1.0, 'plus': 1.0, 'first': 1.0, 'are': 2.0, 'voice': 2.0, 'sensitivity': 1.0, 'anticipation': 1.0, 'they': 2.0, 'max': 1.0, 'no': 1.0, 'our': 1.0, 'luck': 1.0, 'issue': 1.0, 'hear': 3.0, 'same': 1.0, 'signal': 1.0, 'just': 1.0, 'crystal': 1.0, 'still': 1.0, 'clear': 1.0, 'although': 1.0, 'likely': 1.0}
Word element => {'features': 1.0, 'would': 1.0, 'a': 2.0, 'price': 1.0, 'just': 1.0, 'some': 1.0, 'worth': 1.0, 'or': 1.0, 'talking': 1.0, 'people': 1.0, 'pick': 1.0, 'dont': 1.0, 'an': 1.0, 'far': 1.0, 'with': 1.0, 'older': 1.0, 'higher': 1.0, 'it': 5.0, 'three': 1.0, 'units': 2.0, 'in': 1.0, 'also': 2.0, 'have': 1.0, 'thing': 1.0, 'that': 3.0, 'i': 5.0, 'monitos': 1.0, 'fact': 1.0, 'my': 1.0, 'the': 13.0, 'and': 4.0, 'little': 2.0, 'monitor': 1.0, 'static': 1.0, 'used': 2.0, 'works': 1.0, 'better': 2.0, 'really': 1.0, 'more': 1.0, 'is': 2.0, 'maybe': 1.0, 'than': 3.0, 'was': 1.0, 'talk': 1.0, 'though': 2.0, 'to': 2.0, 'for': 1.0, 'love': 2.0, 'lights': 1.0, 'cheaper': 1.0, 'up': 1.0, 'child': 1.0, 'use': 1.0, 'like': 4.0, 'plays': 1.0, 'boys': 1.0, 'you': 2.0, 'intercom': 1.0, 'entertain': 1.0, 'baby': 1.0, 'but': 1.0, 'past': 1.0, 'music': 1.0, 'can': 1.0, 'handheld': 1.0, 'big': 1.0, 'range': 2.0, 'of': 2.0, 'other': 3.0}
Word element => {'suppose': 1.0, 'as': 1.0, 's': 1.0, 'least': 1.0, 'at': 1.0, 'but': 1.0, 'to': 1.0, 'wanted': 1.0, 'was': 1.0, 'talk': 1.0, 'feature': 2.0, 'temperature': 1.0, 'and': 3.0, 'strange': 1.0, 'noise': 1.0, 'zero': 1.0, 'be': 1.0, 'would': 1.0, 'which': 1.0, 'anything': 1.0, 'included': 1.0, 'having': 1.0, 'could': 1.0, 'love': 1.0, 'for': 1.0, 'what': 1.0, 'expensive': 1.0, 'works': 2.0, 'the': 2.0, 'great': 1.0, 'about': 1.0, 'i': 3.0, 'is': 3.0, 'change': 1.0, 'second': 1.0, 'said': 1.0, 'us': 1.0, 'if': 1.0, 'awesome': 1.0, 'that': 2.0, 'background': 1.0, 'this': 1.0, 'it': 7.0, 'unit': 2.0, 'parent': 1.0, 'there': 1.0, 'a': 1.0}
Word element => {'stars': 1.0, 'did': 1.0, 'if': 1.0, 'day': 1.0, 'every': 1.0, 'down': 1.0, 'one': 1.0, 'take': 1.0, 'though': 1.0, 'devices': 1.0, 'white': 1.0, 'use': 1.0, 'instead': 1.0, 'have': 3.0, 'monitors': 1.0, 'can': 1.0, 'machine': 2.0, 'way': 1.0, 'you': 1.0, 'it': 5.0, 'do': 1.0, 'only': 1.0, 'with': 2.0, 'came': 1.0, 'picked': 1.0, 'to': 1.0, 'all': 1.0, 'noises': 1.0, 'the': 8.0, 'control': 1.0, 'stairs': 1.0, 'we': 2.0, 's': 4.0, 't': 2.0, 'a': 2.0, 'that': 3.0, 'monitor': 2.0, 'and': 3.0, 'on': 2.0, 'wish': 1.0, 'found': 1.0, 'two': 1.0, 'i': 3.0, 'night': 2.0, 'baby': 2.0, '5': 1.0, 'noise': 1.0, 'market': 1.0, 'room': 1.0, 'adjust': 1.0, 'sensitivity': 2.0, 'they': 1.0, 'so': 2.0, 'doesn': 1.0, 'give': 1.0, 'stay': 1.0, 'other': 1.0, 'would': 2.0, 'never': 1.0, 'in': 1.0, 'turn': 1.0, 'off': 1.0, 'because': 1.0, 'just': 1.0, 'don': 1.0, 'up': 2.0, 'of': 1.0}
Word element => {'about': 1.0, 'forget': 1.0, 'wall': 1.0, 'bedroom': 1.0, 'my': 1.0, 'pas': 1.0, 'take': 1.0, 'want': 1.0, 'i': 1.0, 'for': 1.0, 'to': 1.0, 'hoping': 1.0, 'was': 1.0, 'not': 1.0, 'reviews': 1.0, 'good': 1.0, 'all': 1.0, 'a': 1.0, 'great': 1.0, 'the': 1.0, 'read': 1.0, 'it': 3.0, 'this': 1.0, 'does': 1.0, 'and': 2.0, 'monitor': 2.0, 'reach': 1.0, 'reaches': 1.0, '100': 1.0, 'ft': 2.0, '50': 1.0, 'barely': 1.0, 'if': 1.0}
Word element => {'one': 1.0, 'new': 1.0, 'instead': 1.0, 'headphones': 1.0, 'clip': 1.0, 'set': 1.0, 'come': 1.0, 'currently': 1.0, 'unit': 1.0, 'fussing': 1.0, 'whether': 1.0, 'up': 1.0, 'hold': 1.0, 'parent': 1.0, 'crying': 1.0, 'from': 1.0, 'of': 3.0, 'worthy': 1.0, 'not': 2.0, 'ratings': 1.0, 'i': 5.0, 'amazon': 1.0, 'really': 1.0, 'to': 4.0, 'purchased': 1.0, 'is': 3.0, 'cr': 1.0, 'based': 1.0, 'found': 1.0, 'this': 3.0, 'only': 1.0, 'he': 1.0, 'with': 2.0, 'have': 2.0, 'highest': 1.0, 'monitor': 4.0, 'and': 1.0, 'setting': 1.0, 'your': 1.0, 'on': 2.0, 'belt': 1.0, 'unfortunately': 1.0, 'the': 8.0, 'searching': 1.0, 'they': 1.0, 'reviews': 1.0, 'for': 1.0, 'product': 1.0, 'com': 1.0, 'or': 1.0, 'volume': 1.0, 'avoid': 1.0, 'that': 2.0, 'hear': 2.0, 'low': 1.0, 'a': 2.0, 'determine': 1.0, 'we': 1.0, 'can': 3.0, 'baby': 2.0, 'at': 1.0, 'point': 1.0, 'am': 1.0, 'when': 1.0, 'you': 1.0, 'be': 1.0, 'him': 1.0, 'should': 1.0, 'better': 1.0, 'so': 1.0, 'upstairs': 1.0, 'ear': 1.0, 'than': 1.0}
Word element => {'worth': 1.0, 'your': 1.0, 'get': 1.0, 'there': 1.0, 'out': 1.0, 'fanciest': 1.0, 'not': 2.0, 'by': 1.0, 'failed': 1.0, 'surely': 1.0, 'have': 1.0, 'worse': 1.0, 'bedtime': 1.0, 'toddler': 1.0, 'many': 1.0, 'in': 2.0, 'wall': 1.0, 'against': 1.0, 'thrown': 1.0, 'being': 1.0, 'withstood': 1.0, 'durable': 1.0, 'how': 1.0, 'five': 1.0, 'given': 1.0, 'reason': 1.0, 'us': 1.0, 'use': 1.0, 'of': 3.0, 'be': 2.0, 'features': 1.0, 'nights': 1.0, 'dim': 1.0, 'it': 3.0, 'this': 3.0, 'now': 1.0, 'older': 1.0, 'chose': 1.0, 'too': 1.0, 'and': 1.0, 'play': 1.0, 'born': 1.0, 'purchased': 1.0, 'listed': 1.0, 'used': 1.0, 'the': 10.0, 'is': 3.0, 'more': 1.0, 'my': 1.0, 'might': 1.0, 'a': 1.0, 's': 2.0, 'we': 2.0, 't': 1.0, 'ago': 1.0, 'because': 1.0, 'than': 1.0, 'product': 1.0, 'protests': 1.0, 'stars': 1.0, 'for': 1.0, 'years': 2.0, 'you': 1.0, 'when': 1.0, 'feature': 1.0, 'i': 2.0, 'two': 1.0, 'notification': 1.0, 'usage': 1.0, 'temperature': 1.0, 'has': 1.0, 'been': 2.0, 'monitor': 3.0, 'little': 1.0, 'll': 1.0, 'especially': 1.0, 'useful': 1.0, 'was': 1.0, 'talk': 1.0, 'much': 1.0, 'child': 1.0, 'over': 1.0, 'ability': 1.0, 'money': 1.0, 'but': 2.0, 'music': 1.0, 'hasn': 1.0, 'nightlight': 1.0, 'would': 1.0, 'something': 1.0, 've': 2.0, 'any': 1.0, 'to': 3.0, 'as': 1.0, 'real': 1.0, 'far': 1.0}
Word element => {'issue': 1.0, 'fix': 1.0, 'can': 1.0, 'phillips': 1.0, 'hope': 1.0, 'my': 2.0, 'child': 1.0, 'it': 2.0, 'own': 1.0, 'an': 1.0, 'to': 3.0, 'was': 1.0, 'had': 1.0, 'machine': 1.0, 'volume': 2.0, 'that': 2.0, 'the': 3.0, 'replace': 1.0, 'off': 1.0, 'enough': 1.0, 'isn': 1.0, 'home': 1.0, 'goes': 1.0, 'disappointed': 1.0, 'this': 1.0, 'loud': 1.0, 'with': 1.0, 'packed': 1.0, 'worked': 1.0, 'i': 5.0, 'old': 1.0, 'night': 2.0, 'well': 1.0, 's': 2.0, 't': 1.0, 'a': 1.0, 'needed': 1.0, 'problem': 1.0, 'better': 1.0, 'if': 1.0, 'no': 1.0, 'delivery': 1.0, 'very': 1.0, 'monitor': 2.0, 'not': 1.0, 'me': 1.0, 'm': 1.0, 'safety': 3.0, 'at': 2.0, '1st': 1.0, 'help': 1.0, 'have': 1.0, 'use': 1.0, 'for': 3.0, 'breathing': 1.0, 'in': 1.0, 'fire': 1.0, 'cpap': 1.0, 'so': 2.0, 'hear': 1.0, 'need': 1.0, 'alarm': 1.0}
Word element => {'system': 1.0, 'baby': 1.0, 'wanting': 1.0, '200': 2.0, 'about': 1.0, 'years': 1.0, 'in': 1.0, 'worked': 1.0, 'remotely': 1.0, 'hopes': 1.0, 'was': 1.0, 'to': 2.0, 'when': 1.0, 'i': 3.0, 'buy': 1.0, 'the': 2.0, 'more': 1.0, 'with': 1.0, 'had': 1.0, 'purchased': 1.0, 'this': 1.0, 'accuracy': 1.0, 'temperature': 1.0, 'monitor': 2.0, 'and': 1.0, 'great': 1.0, '1': 1.0, 'my': 1.0, 'plunge': 1.0, 'but': 1.0, 'did': 1.0, 'it': 3.0, 'higher': 1.0, 'just': 1.0, 'affordable': 1.0, 'stop': 1.0, 'took': 1.0, 'working': 1.0, 'room': 1.0, '5': 1.0, 'really': 1.0, 'weather': 1.0, 'later': 1.0, 'for': 1.0, 'off': 1.0, 's': 1.0, 'a': 1.0, 'remote': 1.0}
Word element => {'be': 1.0, 'neighbors': 1.0, 'strap': 1.0, 'neck': 1.0, 'or': 1.0, 'clarity': 1.0, 'addition': 1.0, 'wonderful': 1.0, 'use': 2.0, 'wakes': 1.0, 'months': 1.0, 'over': 1.0, '7': 1.0, 'up': 3.0, 'sound': 1.0, 'been': 1.0, 'nearby': 1.0, 'who': 1.0, 'indicator': 1.0, 'at': 1.0, 'is': 2.0, 'really': 1.0, 'think': 2.0, 'very': 1.0, 'nice': 1.0, 'little': 2.0, 'wish': 1.0, 'have': 1.0, 'all': 1.0, 'to': 2.0, 'any': 2.0, 'as': 2.0, 'due': 1.0, 'he': 2.0, 'love': 1.0, 'reading': 1.0, 'often': 1.0, 'my': 1.0, 'those': 1.0, 'do': 1.0, 'temperature': 1.0, 'and': 4.0, 'soon': 1.0, 'play': 1.0, 't': 4.0, 'a': 2.0, '2': 1.0, 'but': 4.0, 'money': 1.0, 'can': 1.0, 'i': 9.0, 'way': 1.0, 'always': 1.0, 'capability': 1.0, 'would': 1.0, 'either': 1.0, 'the': 7.0, 'of': 2.0, 'necessary': 1.0, 'paid': 1.0, 'options': 1.0, 'one': 2.0, 'ones': 1.0, 'with': 2.0, 'also': 1.0, 'monitors': 1.0, 'never': 1.0, 'noticed': 1.0, 'type': 1.0, 'picture': 1.0, 'interference': 1.0, 'having': 3.0, 'that': 1.0, 'because': 1.0, 'using': 1.0, 'light': 1.0, 'this': 2.0, 'few': 1.0, 'in': 2.0, 'for': 5.0, 'cry': 1.0, 'fantastic': 1.0, 'when': 1.0, 'd': 1.0, 'opted': 1.0, 'his': 1.0, 'product': 1.0, 'video': 2.0, 'now': 2.0, 'they': 1.0, 're': 1.0, 'don': 2.0, 'isn': 1.0, 'baby': 1.0, 've': 2.0, 'stand': 1.0, 'll': 1.0, 'crib': 1.0, 'doesn': 1.0, 'minutes': 1.0, 'it': 1.0}
Word element => {'just': 1.0, 'works': 1.0, 'price': 1.0, 'return': 1.0, 'was': 1.0, 'to': 1.0, 'now': 1.0, 'that': 1.0, 'broke': 1.0, 'money': 1.0, 'rechargeable': 1.0, 'and': 4.0, 'monitor': 1.0, 'so': 1.0, 'or': 1.0, 'i': 5.0, 'battery': 1.0, 'one': 1.0, 'bought': 2.0, 'overseas': 1.0, 'for': 1.0, 'product': 2.0, 'this': 1.0, 'first': 1.0, 'then': 1.0, 'worked': 1.0, 'shipping': 1.0, 'fine': 2.0, 'the': 5.0, 'it': 4.0, 'month': 1.0, 'spent': 1.0, 'thought': 1.0, 'uselessly': 1.0, 'charges': 1.0, 'because': 2.0, 'not': 1.0, 'live': 1.0, 'a': 3.0, 's': 1.0, 'an': 1.0, 'option': 1.0, 'of': 1.0, 'better': 1.0, 'new': 1.0, 'cost': 1.0, 'have': 1.0, 'different': 1.0, 'expected': 1.0, 'half': 1.0}
Word element => {'star': 1.0, '5': 1.0, 'brought': 1.0, 'montor': 1.0, 'any': 1.0, 'haven': 1.0, 'works': 1.0, 'everything': 1.0, 'am': 1.0, 'overall': 2.0, 'trust': 1.0, 'actually': 1.0, 'degrees': 1.0, '4': 1.0, '3': 1.0, 'about': 1.0, 'seems': 1.0, 'almost': 1.0, 'unit': 1.0, 'base': 1.0, 'out': 1.0, 'i': 2.0, 'well': 1.0, 'as': 1.0, 'all': 2.0, 'down': 1.0, 'turned': 1.0, 'have': 3.0, 'doesn': 1.0, 'was': 2.0, 'get': 2.0, 'wear': 1.0, 'it': 8.0, 'enough': 1.0, 'interferance': 1.0, 'on': 2.0, 'sensitivity': 1.0, '100': 2.0, 'disappointing': 1.0, 'know': 1.0, 'technology': 1.0, 'means': 1.0, 'could': 2.0, 't': 5.0, 's': 1.0, 'a': 4.0, 'go': 1.0, 'model': 1.0, 'time': 3.0, 'there': 1.0, 'the': 21.0, 'of': 2.0, 'wake': 1.0, 'temperature': 4.0, 'batteries': 1.0, 'won': 1.0, 'wanted': 2.0, 'output': 1.0, 'has': 1.0, 'daugter': 1.0, 'listen': 1.0, 'sure': 1.0, 'dect': 1.0, 'great': 2.0, 'very': 2.0, 'monitor': 5.0, 'little': 3.0, 'problems': 1.0, 'because': 3.0, 'that': 5.0, 'into': 1.0, 'how': 1.0, 'our': 4.0, 'high': 1.0, 'to': 3.0, 'still': 3.0, 'and': 4.0, 'rating': 1.0, 'happy': 1.0, 'crying': 1.0, 'too': 1.0, 'display': 2.0, 'then': 1.0, 'we': 13.0, 'reviews': 1.0, 'in': 5.0, 'plugged': 2.0, 'us': 1.0, 'also': 2.0, 'this': 5.0, 'had': 1.0, 'warm': 1.0, 'room': 2.0, 'she': 1.0, 'many': 1.0, 'others': 1.0, 'be': 2.0, 'range': 1.0, 'at': 2.0, 'is': 4.0, 'level': 1.0, 'never': 1.0, 'static': 1.0, 'warmer': 1.0, 'so': 2.0, 'can': 2.0, 'but': 3.0, 'or': 2.0, 'from': 2.0, 'itself': 1.0, 'not': 3.0, 'winter': 1.0, 'loose': 1.0, 'like': 2.0, 'signal': 1.0, 'only': 1.0, 'getting': 1.0, 'items': 2.0, 'were': 2.0, 'gets': 1.0, 'readout': 2.0, 'volume': 1.0, 'downstairs': 1.0, 'with': 3.0, 'make': 1.0, 'sound': 2.0, 'quicker': 1.0, 'pleased': 1.0, 'up': 3.0, 'really': 1.0, 'highest': 1.0, 'quiet': 2.0, 'which': 1.0, 'good': 1.0, 'side': 1.0, 'don': 1.0, 'isn': 1.0, 'cold': 2.0, 'though': 1.0, 'what': 1.0, 'when': 2.0, 'upstairs': 1.0, 'daughter': 1.0, 'able': 1.0, 'night': 2.0, 'starts': 1.0}
Word element => {'parents': 1.0, 'crying': 1.0, 'to': 3.0, 'me': 1.0, 'monitor': 1.0, 'it': 2.0, 'this': 3.0, 'because': 2.0, 'light': 1.0, 'new': 1.0, 'drop': 1.0, 'the': 4.0, 'is': 3.0, 'on': 2.0, 'superb': 1.0, 'i': 5.0, 'baby': 1.0, 'night': 1.0, 'quality': 1.0, 'blue': 1.0, 'know': 1.0, 'like': 1.0, 't': 1.0, 'a': 3.0, 'well': 1.0, 'must': 1.0, 'have': 2.0, 'jump': 1.0, 'don': 1.0, 'sound': 1.0, 'up': 1.0, 'of': 1.0, 'alerts': 1.0, 'at': 1.0, 'running': 1.0, 'works': 1.0, 'nursery': 1.0, 'pin': 1.0, 'alarms': 1.0, 'false': 1.0, 'can': 2.0, 'rely': 1.0, 'for': 1.0, 'product': 1.0, 'actually': 1.0, 'and': 1.0, 'too': 1.0, 'clarity': 1.0, 'so': 1.0, 'hear': 1.0, 'good': 1.0}
Word element => {'designed': 1.0, 'best': 1.0, 'worth': 1.0, 'think': 1.0, 'said': 1.0, 'come': 1.0, 'ear': 1.0, 'an': 2.0, 'playing': 1.0, 'other': 2.0, 'excellent': 1.0, 'battery': 1.0, 'claim': 1.0, 'or': 1.0, 'feature': 1.0, 'babies': 1.0, 'that': 2.0, 'trust': 1.0, 'used': 3.0, 'good': 1.0, 'which': 3.0, 'claims': 1.0, 'than': 4.0, 'ability': 1.0, 'liked': 3.0, 'booming': 1.0, 'don': 1.0, 'cheaper': 1.0, 'to': 10.0, 'right': 1.0, 'sooth': 1.0, 'too': 1.0, 'paired': 1.0, 'without': 1.0, 'hassle': 1.0, 'no': 1.0, 'getting': 1.0, 'feedback': 1.0, 'held': 1.0, 'receiver': 2.0, 'thought': 1.0, 'dock': 1.0, 'misplaced': 1.0, 'keep': 1.0, 'makes': 1.0, 'dart': 1.0, 'free': 1.0, 'variety': 1.0, 'you': 5.0, 'things': 1.0, 've': 3.0, 'was': 1.0, 'its': 2.0, 'two': 1.0, 'i': 10.0, 'well': 2.0, 'interference': 1.0, 'throttling': 1.0, 'me': 1.0, 'easily': 2.0, 'looks': 1.0, 'toddlers': 1.0, 'three': 1.0, 'into': 2.0, 'one': 1.0, 'got': 1.0, 'but': 2.0, 'four': 1.0, 'dresser': 1.0, 'way': 1.0, 'cranky': 1.0, 'talked': 1.0, 'kids': 1.0, 'this': 6.0, 'not': 2.0, 'page': 1.0, 'thicker': 1.0, 'picture': 1.0, 'with': 4.0, 'impressed': 2.0, 'going': 2.0, 'of': 5.0, 'the': 19.0, 'there': 2.0, 'who': 1.0, 'from': 2.0, 'voice': 1.0, 'feels': 1.0, 'various': 1.0, 'certainly': 1.0, 'monitors': 4.0, 'manufacturers': 1.0, 'for': 3.0, 'be': 3.0, 'it': 8.0, 'shorter': 1.0, 'squarish': 1.0, 'communication': 1.0, 'like': 1.0, 'covers': 1.0, 'if': 3.0, 'great': 2.0, 'manufacturer': 1.0, 'when': 1.0, 'bed': 1.0, 'range': 1.0, 'audio': 1.0, 'also': 2.0, 'handy': 1.0, 'on': 3.0, 'troublesome': 1.0, 'charging': 1.0, 'have': 2.0, 'lets': 1.0, 't': 1.0, 'belt': 1.0, 'a': 8.0, 'tiny': 1.0, 'we': 1.0, 's': 5.0, 'out': 2.0, 'first': 1.0, 'taking': 1.0, 'discover': 1.0, 'how': 1.0, 'quickly': 1.0, 'only': 1.0, 'surprised': 1.0, 'they': 2.0, 'under': 1.0, 'personally': 1.0, 'tuck': 1.0, 'once': 1.0, 'my': 1.0, 'are': 1.0, 'room': 1.0, 'know': 1.0, 'been': 1.0, 'discovered': 1.0, 'around': 1.0, 'considerably': 1.0, 'as': 3.0, 'quality': 3.0, 'far': 1.0, 'goes': 1.0, 'them': 1.0, 'everything': 1.0, 'about': 1.0, 'channel': 1.0, 'seems': 1.0, 'spare': 1.0, 'see': 1.0, 'ergonomics': 1.0, 'instrumentation': 1.0, 'power': 2.0, 'features': 1.0, 'slip': 1.0, 'comes': 1.0, 'better': 1.0, 'life': 1.0, 'however': 1.0, 'get': 1.0, 'ipod': 1.0, 'want': 1.0, 'hands': 1.0, 'and': 11.0, 'just': 1.0, 'dect': 1.0, 'slick': 1.0, 'in': 2.0, 'design': 1.0, 'smaller': 3.0, 'use': 1.0, 'lanyard': 1.0, 'your': 2.0, 'intelligent': 1.0, 'where': 1.0, 'is': 8.0, 'can': 1.0, 'pocket': 1.0, 'points': 1.0, 'ease': 1.0, 'baby': 2.0, 'classic': 1.0, 'corner': 1.0, 'careful': 1.0, 'wide': 1.0, 'clip': 1.0, 'despite': 1.0, 'prefer': 1.0, 'monitor': 7.0, 'might': 1.0, 'fist': 1.0, 'would': 2.0, 'impressive': 1.0, 'up': 1.0, 'much': 1.0, 'most': 1.0, 'space': 1.0, 'thing': 1.0, 'video': 1.0, 'camera': 1.0, 'price': 2.0, 'anything': 1.0, 'supposed': 1.0, 'similar': 1.0}
Word element => {'happy': 1.0, 'in': 1.0, 'with': 2.0, 'sensitivity': 1.0, 'the': 2.0, 'get': 1.0, 'and': 3.0, 'm': 1.0, 'splurge': 1.0, 'ease': 1.0, 'plays': 1.0, 'just': 1.0, 'while': 1.0, 'monitors': 1.0, 'a': 2.0, 'some': 1.0, 'of': 1.0, 'friends': 1.0, 'baby': 2.0, 'my': 1.0, 'are': 2.0, 'decided': 1.0, 'i': 4.0, 'video': 1.0, 'call': 1.0, 'all': 2.0, 'as': 2.0, 'elsewhere': 1.0, 'to': 1.0, 'stalkers': 1.0, 'crazy': 1.0, 'perfectly': 1.0, 'nighlight': 1.0, 'what': 1.0, 'works': 1.0, 'got': 1.0, 'even': 1.0, 'sound': 1.0, 'love': 1.0, 'it': 3.0, 'volume': 2.0, 'that': 1.0, 'controls': 1.0, 'great': 1.0, 'sounds': 1.0, 'well': 1.0, 'has': 1.0, 'adjust': 1.0, 'monitor': 1.0, 'very': 2.0, 'little': 1.0, 'handy': 1.0, 'is': 1.0, 'you': 1.0, 'traveling': 1.0, 'when': 1.0, 'can': 1.0}
Word element => {'quality': 1.0, 'recommend': 1.0, 'good': 1.0, 'else': 1.0, 'would': 1.0, 'not': 1.0, 'price': 1.0, 'monitor': 1.0, 'the': 1.0, 'less': 1.0, 'product': 1.0, 'to': 1.0, 'than': 1.0, 'a': 2.0, 'new': 1.0, 'somthing': 1.0, 'for': 1.0, 'in': 1.0, 'had': 1.0, 'year': 1.0, 'with': 1.0, 'died': 1.0, 'replace': 1.0}
Word element => {'backward': 1.0, 'how': 1.0, 'seeing': 1.0, 'more': 1.0, 'even': 1.0, 'priced': 2.0, 'yes': 1.0, 'helps': 1.0, 'your': 1.0, 'caring': 1.0, 'little': 1.0, 'believe': 1.0, 'seem': 1.0, 'might': 1.0, 'hope': 1.0, 'cons': 1.0, 'these': 1.0, 'make': 2.0, 'loudly': 1.0, 'beeps': 1.0, 'gets': 1.0, 'case': 1.0, 'something': 1.0, 'was': 4.0, 'like': 1.0, 'using': 1.0, 'plays': 1.0, 'ease': 1.0, 'key': 1.0, 'helpful': 1.0, 'that': 1.0, 'go': 2.0, 'small': 1.0, 'a': 8.0, 'wrong': 1.0, 'not': 2.0, 'music': 1.0, 'but': 3.0, 'better': 1.0, 'monitor': 1.0, 'told': 1.0, 'newer': 2.0, 'an': 1.0, 'all': 1.0, 'sleep': 3.0, 'have': 2.0, 'annoying': 1.0, 'leave': 1.0, 'differences': 1.0, 'assuming': 1.0, '3': 1.0, 'and': 7.0, 'play': 2.0, 'phillips': 2.0, 'getting': 1.0, 'this': 10.0, 'it': 8.0, 'forget': 1.0, 'played': 1.0, 'mistake': 1.0, 'dect': 1.0, 'interruption': 1.0, 'for': 4.0, 'one': 3.0, 'lil': 1.0, 'same': 1.0, 'can': 1.0, 'drift': 1.0, 'which': 1.0, 'made': 1.0, 'me': 2.0, 'my': 1.0, 'putting': 3.0, 'i': 5.0, 'physically': 1.0, 'monitoring': 1.0, 'minutes': 2.0, 'stops': 2.0, 'previous': 3.0, 'baby': 4.0, 'change': 2.0, 'lullaby': 2.0, 'takes': 1.0, 'button': 1.0, 'much': 1.0, 'its': 1.0, 'of': 4.0, 'the': 15.0, 'longer': 1.0, 'especially': 2.0, 'again': 1.0, 'when': 4.0, 'no': 1.0, 'press': 1.0, 'version': 2.0, '15': 1.0, 'over': 4.0, 'to': 7.0, 'straight': 1.0, 'things': 1.0, 'everytime': 2.0, 'you': 4.0, 'loud': 1.0, 'with': 3.0, 'fussy': 1.0, 'bed': 1.0, 'just': 1.0, 'why': 1.0, 'purpose': 1.0, 'into': 2.0, 'designed': 1.0, 'way': 1.0, 'always': 1.0, 'beyond': 1.0, 'peaceful': 1.0, 'defeats': 1.0, 'is': 5.0, 'at': 1.0, 'working': 2.0, 'difference': 2.0, 'then': 1.0, 'buttons': 1.0, 'makes': 2.0, 'went': 1.0, 'impossible': 1.0, 'allowing': 1.0, 'model': 4.0, 'time': 1.0, 'beep': 1.0}
Word element => {'going': 1.0, 'everything': 1.0, 'me': 1.0, 's': 1.0, 'is': 3.0, 'let': 1.0, 'no': 1.0, '3500': 1.0, 'but': 2.0, 'be': 2.0, 'not': 4.0, 'would': 2.0, 'range': 1.0, 'nightlight': 1.0, 'had': 2.0, 'purchased': 1.0, 'was': 1.0, 'minutes': 1.0, 'when': 1.0, 'initially': 1.0, 'problems': 1.0, 'concerned': 1.0, 'that': 3.0, 'enough': 3.0, 'and': 3.0, 'hum': 1.0, 'put': 1.0, 'have': 4.0, 'this': 5.0, 'it': 3.0, 'on': 3.0, 'long': 2.0, 'across': 2.0, 'nursery': 1.0, 'only': 1.0, 'humidifier': 1.0, 'watching': 1.0, 'we': 4.0, 'a': 3.0, 'nightstand': 1.0, 'great': 2.0, 'our': 3.0, 'to': 3.0, 'sleep': 1.0, 'as': 2.0, 'sq': 1.0, 'monitor': 6.0, 'distance': 1.0, 'little': 2.0, 'really': 1.0, 'peep': 1.0, 'hear': 3.0, 'eve': 1.0, 'set': 1.0, 'up': 1.0, 'sound': 1.0, 'the': 11.0, 'of': 3.0, 'house': 1.0, 'ft': 1.0, 'accommodates': 1.0, 'bright': 1.0, 'for': 2.0, 'went': 1.0, 'negative': 1.0, 'her': 2.0, 'room': 4.0, 'aspects': 1.0, 'are': 1.0, 'see': 1.0, 'works': 1.0, 'anything': 1.0, 'obsessively': 1.0, 'dark': 1.0, 'issue': 1.0, 'overall': 1.0, 'melodies': 1.0, '15': 1.0, 'baby': 1.0, 'night': 1.0, 'machine': 1.0, 'i': 7.0, 'daughters': 2.0, 'well': 1.0, 'light': 1.0, 'can': 2.0, 'so': 1.0, 'an': 1.0, 'in': 3.0, 'm': 1.0, 'glad': 1.0, 'with': 1.0, 'one': 1.0, 'instead': 1.0, 'product': 1.0, 'video': 2.0, 'know': 1.0, 'stay': 1.0, 'clear': 1.0, 'every': 2.0, 'if': 1.0, 'movement': 1.0}
Word element => {'whole': 1.0, 'devour': 1.0, 'will': 1.0, 'while': 1.0, 'star': 1.0, 'chest': 1.0, 'over': 1.0, 'find': 1.0, 're': 3.0, 'let': 1.0, 'impressed': 1.0, 'going': 1.0, 'thermostat': 1.0, 'care': 1.0, 'temp': 1.0, 'thing': 1.0, 'hear': 2.0, 'not': 3.0, 'your': 1.0, 'way': 1.0, 'tone': 1.0, 'meter': 1.0, 'spikes': 1.0, 'basically': 1.0, 'alert': 2.0, 'maxed': 1.0, 'know': 1.0, 'off': 1.0, 'see': 2.0, 'don': 1.0, 'sounds': 1.0, 'baby': 2.0, 'picking': 1.0, 'can': 1.0, 'so': 1.0, 's': 1.0, 'frequencies': 1.0, 'says': 1.0, 'vocal': 1.0, 'my': 1.0, 'mid': 1.0, 'pick': 1.0, 'battery': 2.0, 'really': 1.0, 'high': 1.0, 'to': 5.0, 'mic': 1.0, 'tuned': 1.0, 'down': 1.0, 've': 2.0, 'breathing': 2.0, 'must': 1.0, 'used': 1.0, 'should': 1.0, 'matters': 1.0, 'does': 2.0, 'works': 1.0, 'rechargeable': 1.0, 'only': 2.0, 'when': 1.0, 'roll': 1.0, 'what': 2.0, 'look': 1.0, 'at': 1.0, 'is': 7.0, 'line': 2.0, 'features': 1.0, 'use': 1.0, 'fundamentally': 1.0, 'but': 4.0, 'his': 3.0, 'music': 1.0, 'because': 1.0, 'that': 5.0, 'styled': 1.0, 'different': 1.0, 'fyi': 1.0, 'summer': 2.0, 'product': 1.0, 'video': 3.0, 'as': 3.0, 'our': 1.0, 't': 4.0, 'a': 10.0, 'elsewhere': 1.0, 'crud': 1.0, 'bells': 1.0, 'paranoid': 1.0, 'universe': 1.0, 'now': 2.0, 'fans': 1.0, 'those': 2.0, 'cradle': 1.0, 'exactly': 1.0, 'settled': 1.0, 'you': 8.0, 'monitors': 1.0, 'poppiest': 1.0, 'out': 1.0, 'couple': 1.0, 'keeping': 1.0, 'sensitivity': 2.0, 'trying': 1.0, 'after': 1.0, 'and': 12.0, 'didn': 2.0, 'blue': 1.0, 'nails': 1.0, 'been': 2.0, 'few': 1.0, 'this': 5.0, 'it': 11.0, 'took': 1.0, 'lights': 1.0, 'even': 1.0, 'heartlight': 1.0, 'which': 1.0, 'good': 1.0, 'gift': 1.0, 'looking': 1.0, 'lighting': 1.0, 'using': 3.0, 'one': 2.0, 'get': 1.0, 'months': 1.0, 'such': 1.0, 'for': 6.0, 'lets': 1.0, 'have': 4.0, 'grunts': 1.0, 'about': 2.0, 'audio': 2.0, '4': 1.0, 'well': 1.0, 'i': 7.0, 'little': 1.0, 'nice': 1.0, 'two': 1.0, 'always': 1.0, 'has': 1.0, 'dect': 1.0, 'keep': 3.0, 'makes': 4.0, 'the': 18.0, 'of': 2.0, 'breath': 1.0, 'monitor': 3.0, 'volume': 1.0, 'whistles': 1.0, 'with': 3.0, 'were': 1.0, 'piece': 1.0, 'was': 2.0, 'end': 1.0, 'noisiest': 1.0, 'long': 1.0, 'on': 3.0, 'staticy': 1.0, 'est': 1.0, 'd': 1.0, 'an': 1.0, 'ever': 1.0, 'up': 4.0, 'make': 2.0, 'sound': 3.0, 'we': 6.0, 'difference': 1.0, 'then': 4.0, 'great': 1.0, 'tech': 1.0, 'avent': 3.0, 'in': 4.0, 'room': 1.0, 'they': 2.0, 'bed': 1.0, 'range': 1.0, 'ended': 1.0, 'barely': 1.0, 'love': 1.0, 'he': 4.0, 'farts': 1.0, 'feature': 1.0, 'or': 1.0, 'still': 1.0, 'turn': 1.0, 'e': 1.0, 'if': 7.0, 'every': 3.0, 'heard': 1.0, 'time': 1.0}
Word element => {'useless': 1.0, 'its': 1.0, 'baby': 1.0, 'light': 1.0, 'having': 1.0, 'understand': 1.0, 'bright': 1.0, 'nightlight': 1.0, 'unless': 1.0, 'again': 1.0, 'over': 2.0, 'same': 1.0, 'play': 1.0, 'useful': 1.0, 'not': 2.0, 'function': 1.0, 'lullaby': 2.0, 'feedback': 1.0, 'have': 2.0, 'wifi': 1.0, 'cell': 1.0, 'hum': 1.0, 'intercom': 1.0, 'am': 1.0, 'either': 1.0, 'worth': 1.0, 'easily': 1.0, 'everywhere': 1.0, 'neck': 1.0, 'volume': 1.0, 'hiss': 1.0, 'button': 1.0, 'clip': 1.0, 'press': 1.0, 'no': 2.0, 'several': 1.0, 'there': 2.0, 'yard': 1.0, 'house': 1.0, 'parent': 1.0, 'off': 1.0, 'money': 1.0, 'mode': 1.0, 'but': 3.0, 'unit': 3.0, 'led': 1.0, 'this': 1.0, 'it': 7.0, 'soft': 1.0, 'works': 2.0, 'interference': 1.0, 'monitor': 1.0, 'very': 4.0, 'spend': 1.0, 'little': 3.0, 'nice': 2.0, 'phones': 1.0, 'was': 1.0, 'belt': 1.0, 'pretty': 1.0, 'to': 4.0, 'our': 1.0, 'small': 1.0, 'a': 8.0, 'we': 1.0, 'will': 1.0, 'could': 1.0, 'electronics': 1.0, 'extra': 1.0, 'and': 9.0, 'get': 1.0, 'from': 1.0, 'decided': 1.0, 'range': 1.0, 'especially': 1.0, 'at': 1.0, 'is': 7.0, 'in': 1.0, 'turn': 1.0, 'life': 1.0, 'also': 2.0, 'side': 1.0, 'good': 1.0, 'on': 3.0, 'long': 1.0, 'strap': 1.0, 'background': 1.0, 'are': 1.0, 'can': 1.0, 'lightweight': 1.0, 'so': 1.0, 'be': 3.0, 'giving': 1.0, 'worn': 1.0, 'or': 3.0, 'feature': 1.0, '4': 1.0, 'battery': 1.0, 'really': 2.0, 'eco': 1.0, 'like': 1.0, 'temperature': 1.0, 'i': 3.0, 'well': 1.0, 'great': 1.0, 'option': 2.0, 'stars': 1.0, 'for': 2.0, 'minor': 1.0, 'you': 1.0, 'night': 1.0, 'things': 1.0, 'the': 11.0, 'of': 1.0, 'includes': 1.0, 'low': 1.0, 'base': 1.0, 'lights': 1.0, 'louder': 1.0, 'should': 1.0, 'other': 1.0, 'an': 1.0, 'these': 1.0}
Word element => {'could': 1.0, 'works': 1.0, 'love': 1.0, 'for': 1.0, 'one': 1.0, 'ask': 1.0, 'baby': 1.0, 'through': 1.0, 'went': 1.0, 'walls': 1.0, 'everything': 1.0, 'so': 1.0, 'thick': 1.0, 'is': 1.0, 'really': 1.0, 'it': 1.0, 'this': 1.0, 'room': 1.0, 'i': 3.0, 'have': 1.0, 'monitors': 1.0, 'all': 1.0, 'didn': 1.0, '5': 1.0, 'than': 1.0, 'which': 1.0, 'work': 1.0, 'finally': 1.0, 't': 1.0, 'more': 1.0, 'and': 1.0, '1': 1.0, 'away': 1.0}
Word element => {'exorbitant': 1.0, 'any': 1.0, 'want': 1.0, 'permanent': 1.0, 'now': 1.0, 'about': 1.0, 'reviews': 1.0, 'heard': 1.0, 'read': 1.0, 'really': 1.0, 'alone': 1.0, 'stuck': 1.0, 'actually': 1.0, 'policy': 1.0, 'refund': 2.0, 'no': 1.0, 'replacements': 1.0, 'send': 1.0, 'continue': 1.0, 'will': 4.0, 'two': 1.0, 'how': 1.0, 'shame': 1.0, 'yet': 1.0, 'explain': 1.0, 'way': 1.0, 'not': 1.0, 'been': 1.0, 'times': 1.0, 'money': 1.0, 'called': 1.0, 'have': 4.0, 'should': 1.0, 'stopped': 1.0, 'until': 1.0, 'amount': 1.0, 'on': 1.0, 's': 2.0, 'aspect': 1.0, 'me': 1.0, 'my': 8.0, 'fact': 1.0, 'shown': 1.0, 'to': 6.0, 'all': 2.0, 'assured': 1.0, 'noises': 1.0, 'be': 3.0, 'important': 1.0, 'service': 1.0, 'turn': 1.0, 'still': 2.0, 'from': 3.0, 't': 2.0, 'replacement': 2.0, 'out': 2.0, 'shelled': 1.0, 'a': 8.0, 'awaiting': 1.0, 'past': 1.0, 'but': 2.0, 'most': 1.0, 'so': 1.0, 'can': 2.0, 'returned': 1.0, 'when': 3.0, 'existence': 1.0, 'am': 3.0, 'i': 9.0, 'of': 5.0, 'the': 20.0, 'place': 1.0, 'store': 1.0, 'return': 1.0, 'warranty': 2.0, 'second': 2.0, 'happened': 1.0, 'seamlessly': 1.0, 'rare': 1.0, 'few': 1.0, 'this': 6.0, 'cannot': 2.0, 'audio': 5.0, 'which': 1.0, 'in': 6.0, 'child': 1.0, 'video': 2.0, 'dark': 1.0, 'works': 2.0, 'both': 1.0, 'best': 1.0, 'monitor': 7.0, 'and': 9.0, 'try': 1.0, 'too': 1.0, 'freezing': 1.0, 'function': 1.0, 'purchase': 1.0, 'only': 1.0, 'amazing': 1.0, 'it': 5.0, 'already': 5.0, 'baby': 6.0, 'honesty': 1.0, 'whole': 1.0, 'looking': 1.0, 'light': 1.0, 'reason': 1.0, 'late': 1.0, 'they': 4.0, 'transmit': 1.0, 'room': 3.0, 'customer': 1.0, 'their': 2.0, 'noise': 1.0, 'working': 1.0, 'first': 1.0, 'transmitted': 1.0, 'was': 1.0, 'consistent': 1.0, 'doesn': 1.0, 'has': 2.0, 'rarely': 1.0, 'avent': 4.0, 'fantastic': 1.0, 'great': 2.0, 'automatically': 1.0, 'opportunity': 1.0, 'under': 1.0, 'hear': 1.0, 'shuts': 1.0, 'down': 1.0, 'after': 1.0, 'for': 2.0, '10': 1.0, 'seconds': 1.0, 'returns': 1.0, 'there': 1.0, 'night': 1.0, 'monitors': 1.0, 'loud': 1.0, 'is': 11.0, 'at': 3.0, 'sounds': 1.0, 'throughout': 2.0, 'point': 1.0, 'makes': 1.0, 'problem': 3.0, 'with': 4.0, 'watch': 1.0, 'as': 6.0, 'unable': 1.0, 'that': 4.0, 'because': 1.0}
Word element => {'pet': 1.0, 'age': 1.0, 'matter': 1.0, 'individual': 1.0, 'closely': 1.0, 'recommend': 1.0, 'i': 1.0, 'phenomenal': 1.0, 'warranty': 1.0, 'music': 1.0, 'function': 1.0, 'lullaby': 1.0, 'baby': 2.0, 'used': 1.0, 'position': 1.0, 'upright': 1.0, 'accessed': 1.0, 'prop': 1.0, 'rotated': 1.0, 'attach': 1.0, 'button': 1.0, 'clip': 2.0, 'receiver': 3.0, 'plugs': 1.0, 'that': 2.0, 'battery': 1.0, 'parent': 1.0, 'not': 1.0, 'aaa': 1.0, 'use': 2.0, 'wall': 2.0, 'into': 2.0, 'signal': 1.0, 'by': 1.0, 'light': 2.0, 'when': 4.0, 'no': 2.0, 'let': 1.0, 'hospice': 1.0, 'to': 8.0, 'doors': 1.0, 'belt': 1.0, 'along': 1.0, 'display': 1.0, 'out': 1.0, 'would': 1.0, 'beep': 1.0, '4': 1.0, 'audio': 1.0, 'closed': 1.0, 'anyone': 1.0, 'and': 1.0, 'clothing': 1.0, 'plugged': 1.0, 'far': 1.0, 'quite': 1.0, 'especially': 1.0, 'who': 1.0, 'batteries': 2.0, 'regular': 1.0, 'sits': 1.0, 'is': 7.0, 'more': 1.0, 'included': 1.0, 'can': 8.0, '2': 2.0, 'tool': 1.0, 'with': 6.0, 'highly': 1.0, 'this': 5.0, 'know': 1.0, 'found': 1.0, 'soft': 1.0, 'be': 5.0, 'within': 1.0, 'been': 2.0, 'patient': 1.0, 'providing': 1.0, 'requiring': 1.0, 'allowing': 1.0, 'has': 4.0, 'picture': 2.0, 'monitor': 3.0, 'in': 4.0, 'member': 1.0, 'tones': 1.0, 'range': 2.0, 'family': 1.0, 'a': 14.0, 'there': 4.0, 'freedom': 1.0, 'nighttime': 1.0, 'year': 1.0, 'product': 1.0, 'camera': 3.0, 'video': 3.0, 'an': 4.0, 'surveillance': 1.0, 'adapter': 1.0, 'wonderful': 1.0, 'power': 1.0, 'house': 1.0, 'screen': 2.0, 'on': 4.0, 'positioning': 1.0, 'noise': 1.0, 'comes': 2.0, 'room': 1.0, '5': 1.0, 'adjust': 1.0, 'infrared': 1.0, 'conserve': 1.0, 'sick': 1.0, 'since': 1.0, 'brightness': 1.0, '1': 1.0, 'great': 1.0, 'magnetized': 1.0, 'provides': 1.0, 'if': 1.0, 'clear': 1.0, 'unit': 4.0, 'turns': 1.0, 'securely': 1.0, 'you': 3.0, 'night': 1.0, 'or': 4.0, 'feature': 1.0, 'activate': 1.0, 'flexibility': 1.0, 'for': 2.0, 'monitoring': 1.0, 'even': 2.0, 'base': 1.0, 'voice': 1.0, 'are': 2.0, 'which': 1.0, 'good': 1.0, 'made': 1.0, 'pressed': 1.0, 'helpful': 1.0, 'needs': 2.0, 'longer': 1.0, 'of': 3.0, 'the': 24.0, 'attention': 1.0, 'it': 1.0}
Word element => {'us': 1.0, 'good': 1.0, 'really': 1.0, 'is': 1.0, 'monitoring': 1.0, 'son': 1.0, 'having': 1.0, 'and': 1.0, 'see': 1.0, 'a': 1.0, 'well': 1.0, 'works': 1.0, 'love': 1.0, 'can': 1.0, 'without': 1.0, 'him': 1.0, 'price': 1.0, 'how': 1.0, 'system': 1.0, 'music': 1.0, 'to': 1.0, 'this': 1.0, 'we': 2.0, 'play': 1.0, 'our': 1.0}
Word element => {'during': 1.0, 'hours': 1.0, 'few': 1.0, 'life': 1.0, 'signal': 1.0, 'problem': 1.0, 'had': 1.0, 'haven': 1.0, 'with': 1.0, 'work': 1.0, 'yard': 1.0, 'decent': 1.0, 'fairly': 1.0, 'range': 1.0, 'set': 1.0, 'easy': 1.0, 'the': 8.0, 'was': 2.0, 'for': 1.0, 'lights': 1.0, 'i': 1.0, 'about': 1.0, 'battery': 2.0, 'which': 2.0, 'and': 7.0, 'me': 1.0, 'agonizing': 1.0, 'on': 3.0, 'spent': 1.0, 'incredibly': 1.0, 'saves': 1.0, 'have': 1.0, 'loved': 1.0, 'do': 2.0, 'only': 1.0, 'it': 2.0, 'one': 1.0, 'losing': 1.0, 't': 1.0, 'we': 2.0, 'a': 5.0, 'long': 1.0, 'time': 1.0, 'receiver': 2.0, 'sound': 1.0, 'over': 1.0, 'up': 2.0, 'when': 1.0, 'more': 1.0, 'is': 4.0, 'really': 1.0, 'making': 1.0, 'noise': 1.0, 'picture': 1.0, 'full': 1.0, 'perfect': 1.0, 'this': 2.0, 'sensor': 1.0, 'allows': 1.0, 'outside': 1.0, 'to': 3.0, 'sleep': 1.0, 'good': 2.0, 'monitor': 1.0, 'little': 1.0, 'soundly': 1.0, 'night': 2.0, 'baby': 1.0, 'quality': 1.0, 'buy': 1.0, 'day': 2.0}
Word element => {'etc': 1.0, 'made': 1.0, 'easily': 1.0, 'security': 1.0, 'actually': 1.0, 'mount': 1.0, 'could': 1.0, 'variety': 1.0, 'means': 1.0, 'which': 1.0, 'thread': 1.0, 'tripod': 1.0, 'standard': 1.0, 'threaded': 1.0, '4': 1.0, '1': 1.0, 'bracket': 1.0, 'provided': 1.0, 'mounting': 1.0, 'wall': 2.0, 'reviews': 1.0, 'some': 1.0, 'socket': 1.0, 'fumble': 1.0, 'there': 5.0, 'give': 1.0, 'instructions': 1.0, 'second': 1.0, 'versatile': 1.0, 'one': 2.0, 'try': 1.0, 'decided': 1.0, 'used': 1.0, 'range': 2.0, 'manufacturer': 1.0, 'clarity': 1.0, 'if': 3.0, 'flaw': 1.0, 'love': 1.0, 'for': 3.0, 'trigger': 1.0, 'philips': 4.0, 'audio': 10.0, 'seen': 1.0, 'had': 1.0, '2010': 1.0, 'impression': 1.0, 'year': 1.0, 'child': 1.0, 'video': 9.0, 'really': 1.0, 'only': 6.0, 'usually': 1.0, 'analog': 1.0, 'problem': 1.0, 'anywhere': 1.0, 'certainly': 1.0, 'monitors': 7.0, 'kindly': 1.0, 'you': 8.0, 'night': 1.0, 'loud': 1.0, 'baby': 4.0, 'design': 3.0, 'important': 1.0, 'any': 1.0, 'where': 2.0, 'many': 1.0, 'your': 1.0, 'that': 10.0, 'because': 1.0, 'been': 1.0, 'at': 2.0, 'is': 18.0, 'street': 1.0, 'on': 3.0, 'long': 1.0, 'looking': 1.0, 'common': 1.0, 'perspective': 1.0, 'say': 2.0, 'sound': 3.0, 'don': 1.0, 'isn': 1.0, 'it': 8.0, 'scd520': 2.0, 'be': 3.0, 'other': 1.0, 'reasonable': 1.0, 'to': 9.0, 'fatal': 1.0, 'the': 36.0, 'of': 12.0, 'most': 1.0, 'work': 2.0, 'poor': 1.0, 'performance': 1.0, 'middle': 1.0, 'well': 1.0, 'i': 11.0, 'are': 3.0, 'my': 4.0, 'detected': 1.0, 'me': 1.0, 'fantastic': 1.0, 'agree': 1.0, 'when': 2.0, 'bug': 2.0, 'not': 4.0, 'different': 1.0, 'than': 2.0, '20': 1.0, 'ones': 1.0, 'all': 3.0, 'way': 1.0, 'this': 11.0, 'relatively': 1.0, 'metal': 1.0, 'screen': 3.0, 'in': 5.0, 'heard': 1.0, 'needs': 1.0, 'unacceptable': 1.0, 'so': 2.0, 'time': 2.0, 'did': 1.0, 'comes': 1.0, 'better': 1.0, 'think': 2.0, 'parent': 1.0, 'with': 4.0, 'statement': 1.0, 't': 6.0, 'a': 18.0, 'going': 1.0, 'have': 3.0, 'scd530': 1.0, 'might': 2.0, 'monitor': 7.0, 'best': 2.0, 're': 1.0, 'save': 1.0, 'power': 2.0, 'until': 1.0, 'no': 3.0, 'selection': 1.0, 'cord': 1.0, 'unit': 5.0, 'works': 1.0, 'similar': 1.0, 'channels': 1.0, 'anything': 2.0, 's': 7.0, 'doesn': 3.0, 'diy': 1.0, 'consistent': 1.0, 'few': 1.0, 'send': 1.0, 'signal': 1.0, 'like': 1.0, 'rather': 1.0, 'unless': 1.0, 'anyway': 1.0, 'has': 2.0, 'two': 1.0, 'won': 1.0, 'hear': 1.0, 'totally': 1.0, 'montior': 1.0, 'from': 1.0, 'screaming': 1.0, 'ways': 1.0, 'very': 3.0, 'find': 1.0, 'since': 2.0, 'manual': 1.0, 'normal': 1.0, 'about': 1.0, 'suspect': 1.0, 'firmware': 2.0, 'will': 1.0, 'hopefully': 1.0, 'corrected': 1.0, 'read': 2.0, 'mounts': 2.0, 'review': 1.0, 'scd600': 1.0, 'question': 1.0, 'out': 1.0, 'surprised': 1.0, 'scd525': 2.0, 'issue': 1.0, 'deficiencies': 1.0, 'while': 1.0, 've': 2.0, 'around': 1.0, 'popular': 1.0, 'or': 1.0, 'researched': 1.0, 'modes': 2.0, 'but': 4.0, 'general': 1.0, 'comments': 1.0, 'quality': 1.0, 'camera': 2.0, 'their': 1.0, 'good': 2.0, 'close': 1.0, 'crib': 1.0, 'halfway': 1.0, 'expect': 1.0, 'gripe': 1.0, 'seems': 3.0, 'true': 2.0, 'as': 4.0, 'claims': 1.0, 'would': 1.0, 'adequate': 1.0, 'sized': 1.0, 'bottom': 1.0, 'charging': 2.0, 'house': 1.0, 'yard': 1.0, 'and': 11.0, 'just': 1.0, 'battery': 2.0, 'cradle': 2.0, 'down': 1.0, 'last': 1.0, 'aspect': 1.0, 'almost': 1.0, 'necessity': 1.0, 'having': 1.0}
Word element => {'throw': 1.0, 'll': 1.0, 'future': 1.0, 'over': 1.0, 'disable': 1.0, 'attempting': 1.0, 'will': 2.0, 'instance': 1.0, 'recessed': 1.0, 'exactly': 1.0, 'first': 1.0, 'wouldn': 1.0, 'then': 1.0, 'not': 2.0, 'stay': 1.0, 'press': 1.0, 'need': 1.0, 'wanted': 1.0, 'if': 1.0, 'much': 1.0, 'carry': 1.0, 'side': 1.0, 'pressed': 2.0, 'place': 2.0, 'the': 10.0, 'near': 1.0, 'great': 1.0, 'star': 1.0, 'one': 2.0, 'expensive': 1.0, 'for': 2.0, 'i': 7.0, 'button': 5.0, 'baby': 2.0, 'be': 1.0, 'giving': 1.0, 'monitor': 4.0, 'that': 3.0, 'waker': 1.0, 'this': 1.0, 'it': 5.0, 'with': 1.0, 'see': 1.0, 'unit': 1.0, 'on': 1.0, 'except': 1.0, 'both': 1.0, 'around': 1.0, 'is': 5.0, 'comes': 1.0, 'glue': 1.0, 'to': 5.0, 'had': 1.0, 'equipped': 1.0, 'twice': 1.0, 'maybe': 2.0, 'why': 1.0, 'hard': 1.0, 'from': 1.0, 'of': 1.0, 'receiver': 1.0, 's': 1.0, 'we': 1.0, 't': 1.0, 'a': 5.0, 'causes': 1.0, 'have': 1.0, 'but': 1.0, 'music': 1.0, 'too': 2.0, 'and': 2.0, 'play': 1.0, 'in': 3.0, 'camera': 1.0, 'something': 1.0, 'super': 1.0, 've': 1.0, 'few': 1.0, 'away': 1.0, 'weeks': 1.0, 'instantly': 1.0, 'am': 1.0, 'when': 1.0, 'times': 1.0, 'wakes': 1.0}
Word element => {'awake': 1.0, 'bright': 1.0, 'had': 1.0, 'look': 1.0, 'made': 1.0, 'of': 1.0, 'portion': 1.0, 'with': 1.0, 'happy': 1.0, 'btw': 1.0, 'video': 2.0, 'actually': 1.0, 'for': 1.0, 'night': 1.0, 'baby': 3.0, 'same': 1.0, 'in': 2.0, 'activate': 1.0, 'she': 2.0, 'it': 6.0, 'unit': 2.0, 'properly': 1.0, 'know': 1.0, 'which': 1.0, 'like': 1.0, 'audio': 1.0, 'room': 2.0, 'on': 2.0, 'the': 7.0, 'defective': 1.0, 'another': 1.0, 'my': 4.0, 'was': 5.0, 'now': 1.0, 'work': 1.0, 'or': 1.0, 'i': 7.0, 'wouldn': 1.0, 'didn': 2.0, 'even': 3.0, 'used': 1.0, 'helped': 1.0, 'wailing': 1.0, 'vision': 1.0, 'eyes': 1.0, 'scared': 1.0, 'me': 2.0, 'and': 2.0, 'very': 1.0, 'monitor': 3.0, 'hear': 1.0, 'so': 1.0, 'crying': 1.0, 'decided': 1.0, 'finally': 2.0, 'm': 2.0, 'register': 1.0, 'many': 1.0, 'happened': 1.0, 'when': 5.0, 'times': 1.0, 'next': 1.0, 'that': 3.0, 'returning': 1.0, 'must': 1.0, 'have': 1.0, 't': 3.0, 'could': 1.0, 'a': 1.0, 'looking': 1.0}
Word element => {'stars': 1.0, 'probably': 1.0, 'would': 1.0, 'had': 1.0, 'yo': 1.0, 'quite': 1.0, 'rate': 1.0, 'infant': 1.0, 'daughter': 1.0, 'issue': 1.0, 'an': 3.0, 'that': 1.0, 'last': 1.0, 'superb': 1.0, 'been': 1.0, 'its': 1.0, 'features': 1.0, 'terms': 1.0, 'shortcomings': 1.0, 'several': 1.0, 'has': 2.0, 'my': 2.0, 'by': 1.0, 'unaffected': 1.0, 'technology': 1.0, 'same': 1.0, 'or': 2.0, 'if': 2.0, 'could': 1.0, 'a': 7.0, 't': 2.0, 'ago': 2.0, 'this': 7.0, 'perfect': 1.0, 'was': 4.0, 'doesn': 1.0, 'to': 3.0, 'our': 2.0, 'version': 3.0, 'ability': 1.0, 'cordless': 1.0, 'up': 2.0, 'sound': 3.0, 'her': 1.0, 'excellent': 1.0, 'used': 2.0, 'both': 1.0, 'years': 3.0, 'in': 4.0, 'huge': 1.0, 'for': 3.0, 'day': 1.0, 'supposedly': 1.0, 'unlike': 1.0, 'while': 3.0, 'from': 1.0, 'didn': 1.0, 'even': 1.0, 'child': 1.0, 'video': 6.0, 'cuts': 1.0, 'standing': 1.0, 'unit': 6.0, 'light': 1.0, 'second': 1.0, 'is': 7.0, 'more': 1.0, 'night': 1.0, 'she': 2.0, 'register': 1.0, 'baby': 1.0, 'not': 2.0, 'works': 1.0, 'tell': 1.0, 'darkness': 1.0, 'sensitivity': 4.0, 'doing': 1.0, 'tangled': 1.0, 'of': 4.0, 'the': 18.0, 'have': 2.0, 'monitor': 4.0, 'with': 5.0, 'first': 1.0, 'but': 1.0, '2': 3.0, 'found': 2.0, 'disappointing': 1.0, 'bit': 1.0, 'time': 1.0, 'find': 1.0, '1': 2.0, 'week': 1.0, 'old': 1.0, '8ghz': 1.0, 'non': 3.0, 'noise': 3.0, 'reliability': 1.0, 'sensitive': 1.0, 'blanket': 1.0, '5': 2.0, 'awesome': 1.0, 'about': 1.0, 'and': 4.0, '50': 1.0, 'it': 2.0, '75': 1.0, 'also': 1.0, 'see': 1.0, 'own': 1.0, 'now': 1.0, 'adjustable': 1.0, '4': 1.0, 'well': 1.0, 'i': 4.0, 'we': 5.0, 'configurable': 1.0, 'phones': 2.0, 'near': 1.0, 'on': 2.0, 'additionally': 1.0, 'bonus': 1.0, 'be': 1.0, 'talking': 1.0, 'one': 1.0, 'crying': 2.0, 'lot': 1.0, 'what': 1.0, 'when': 2.0, 'phone': 1.0, 'out': 1.0}
Word element => {'anymore': 1.0, 'baby': 1.0, 'then': 1.0, 'quedo': 1.0, 'allowing': 1.0, 'el': 2.0, 'ratos': 1.0, 'se': 1.0, 'ponerse': 1.0, 'a': 2.0, 'funcion': 1.0, 'bien': 1.0, 'por': 1.0, 'tratar': 1.0, 'to': 1.0, 'as': 1.0, 'see': 1.0, 'yo': 1.0, 'oacute': 1.0, 'worked': 1.0, 'd': 1.0, 'verde': 2.0, 'comenzo': 1.0, 'todo': 1.0, 'al': 1.0, 'voy': 1.0, 'luego': 1.0, 'la': 1.0, '2': 1.0, 'the': 2.0, 'pantalla': 1.0, 'y': 1.0, 'tiempo': 1.0, 'for': 1.0, 'busque': 1.0, 'mejor': 1.0, 'otra': 1.0, 'marca': 1.0, 'green': 1.0, 'and': 1.0, 'final': 1.0, 'samsung': 1.0, 'it': 1.0, 'two': 1.0, 'iacute': 1.0, 'days': 1.0, 'screen': 1.0, 'not': 1.0, 'turned': 1.0, 'us': 1.0}
Word element => {'grainy': 1.0, 'was': 1.0, 'video': 1.0, 'all': 1.0, 'but': 1.0, 'well': 1.0, 'for': 1.0, '7': 1.0, 'the': 1.0, 'weeks': 1.0, 'crapped': 1.0, 'then': 1.0, 'bed': 1.0, 'worked': 1.0, 'audio': 1.0, 'still': 1.0}
Word element => {'recommend': 1.0, 'd': 1.0, 'different': 1.0, 'these': 1.0, 'lot': 1.0, 'read': 1.0, 'issue': 1.0, 'an': 1.0, 'their': 1.0, 'far': 1.0, 'so': 2.0, 'anyone': 1.0, 'be': 1.0, 'want': 1.0, 'people': 1.0, 'many': 1.0, 'i': 4.0, 'range': 2.0, 'devices': 2.0, 'from': 1.0, 'while': 1.0, 'phones': 1.0, 'have': 1.0, 'netbook': 1.0, 'wifi': 2.0, 'star': 1.0, 'dropped': 1.0, 'things': 1.0, 'think': 2.0, 'on': 2.0, 'one': 1.0, 'they': 1.0, 'guessing': 1.0, 'built': 1.0, 'set': 1.0, 'mode': 1.0, 'other': 1.0, 'with': 3.0, 'it': 7.0, 'monitors': 1.0, 'does': 1.0, 'than': 1.0, 'having': 1.0, 'turn': 1.0, 'in': 1.0, 'sound': 2.0, 'also': 1.0, 'affected': 1.0, 'you': 2.0, 'unless': 1.0, 'is': 5.0, 'are': 3.0, 'the': 6.0, 'near': 1.0, '1': 1.0, 'great': 2.0, 's': 2.0, 'we': 1.0, 'a': 4.0, 'what': 3.0, 'of': 1.0, 'rather': 1.0, 'machine': 1.0, 'any': 1.0, 'to': 4.0, 'and': 6.0, 'abilities': 1.0, 'interfere': 1.0, 'baby': 3.0, 'night': 1.0, 'dont': 2.0, 'this': 3.0, 'doing': 2.0, 'vision': 1.0, 'audio': 1.0, 'know': 1.0, 'like': 1.0, 'but': 1.0, 'can': 1.0, 'that': 3.0, 'away': 1.0, 'leaves': 1.0, 'picture': 1.0, 'noise': 1.0, 'few': 1.0, 'says': 1.0, 'stirs': 1.0, 'only': 1.0, 'creates': 1.0, 'limited': 2.0, 'off': 1.0, 'enough': 1.0}
Word element => {'for': 1.0, 'consider': 1.0, 'wouldn': 1.0, 'immediately': 1.0, 'about': 1.0, 'emergency': 1.0, 'been': 1.0, 'if': 1.0, 'clearly': 1.0, 'up': 1.0, 'into': 1.0, 'microphone': 1.0, 'kids': 1.0, '3': 1.0, 'older': 1.0, 'group': 1.0, 'another': 1.0, 'monitoring': 1.0, 'friends': 1.0, '5': 2.0, 'lend': 1.0, 'happy': 1.0, 'will': 1.0, 'alone': 1.0, 'build': 1.0, 'known': 2.0, 'recommend': 1.0, 'quick': 1.0, 'who': 1.0, 'regular': 1.0, 'switch': 1.0, 'works': 1.0, 'highly': 1.0, 'this': 6.0, 'after': 1.0, 'turns': 1.0, 'are': 1.0, 'brand': 1.0, 'low': 1.0, 'night': 3.0, 'direction': 1.0, 'any': 1.0, 'system': 1.0, 'swivel': 1.0, 'with': 2.0, 'allows': 1.0, 'thanks': 1.0, 'sturdy': 1.0, 'which': 4.0, 'light': 3.0, 'using': 2.0, 'mode': 3.0, 'ac': 1.0, 'or': 3.0, 'would': 2.0, 'medium': 1.0, 'use': 2.0, 'front': 1.0, 'rechargable': 1.0, 'everything': 2.0, 'built': 1.0, 'be': 3.0, '2': 1.0, 'meter': 1.0, 'unit': 3.0, 'expectations': 1.0, 'power': 2.0, 'adjust': 1.0, 'sized': 1.0, 'yard': 1.0, 'quality': 4.0, 'many': 1.0, 'baby': 1.0, 'display': 2.0, 'high': 1.0, 'to': 11.0, 'surpassed': 1.0, 'phillips': 2.0, 'have': 3.0, 'battery': 3.0, 'years': 2.0, 'no': 1.0, 'well': 1.0, 'i': 9.0, 'by': 2.0, 'signal': 4.0, 'very': 3.0, 'construction': 1.0, 'read': 1.0, 'off': 1.0, 'pleasure': 1.0, 'me': 2.0, 'my': 1.0, 'great': 1.0, 'automatically': 1.0, 'avent': 1.0, 'stars': 1.0, 'portable': 2.0, 'on': 4.0, 'via': 1.0, 'solid': 1.0, 'far': 1.0, 'vision': 1.0, 'is': 15.0, 'other': 1.0, 'playing': 1.0, 'an': 5.0, 'all': 2.0, 'ever': 1.0, 'toddlers': 1.0, 'something': 1.0, 'shown': 1.0, 'device': 1.0, 'the': 24.0, 'of': 2.0, 'once': 1.0, 'assures': 1.0, 'monitor': 3.0, 'best': 2.0, 'transformer': 1.0, 'from': 4.0, 'way': 1.0, 'matter': 1.0, 'can': 2.0, 'included': 2.0, 'its': 3.0, 'doubles': 1.0, 'it': 3.0, 'used': 1.0, 'detects': 1.0, 'convenient': 1.0, 'stock': 1.0, 'products': 1.0, 'product': 1.0, 'camera': 3.0, 'in': 7.0, 'company': 1.0, 'amazing': 3.0, 'quickly': 2.0, 'family': 1.0, 'range': 1.0, 'turned': 2.0, 'stand': 1.0, 'babies': 1.0, 'impressive': 1.0, 'last': 1.0, 'innovative': 1.0, 'powered': 1.0, 'am': 1.0, 'and': 12.0, 'lose': 1.0, 'weak': 1.0, 'when': 2.0, 'a': 8.0, 'story': 1.0, 'house': 2.0, 'was': 1.0, 't': 1.0, 'require': 1.0, 'belt': 1.0, 'as': 4.0, 'unable': 1.0, 'where': 1.0, 'went': 1.0, 'lights': 1.0, 'base': 2.0, 'even': 3.0, 'back': 1.0, 'there': 4.0, 'crisp': 1.0, 'easy': 2.0, 'easily': 1.0, 'that': 4.0, 'also': 2.0, 'little': 1.0, 'nice': 1.0, 'picked': 1.0, 'indicator': 1.0, 'shows': 1.0, 'handy': 2.0, 'clip': 1.0, 'had': 2.0, 'photos': 1.0}
Word element => {'found': 1.0, 'device': 1.0, 'and': 1.0, 'it': 1.0, 's': 1.0, 'okay': 1.0, 'but': 1.0, 'box': 1.0, 'arrived': 1.0, 'not': 1.0, 'was': 1.0, 'missing': 1.0, 'the': 4.0, 'side': 2.0, 'battery': 2.0, 'in': 2.0}
Word element => {'activity': 1.0, 'starring': 1.0, 'if': 1.0, 'activated': 1.0, 'light': 1.0, 'red': 1.0, 'paranormal': 1.0, 'dark': 1.0, 'room': 1.0, 'note': 1.0, 'despite': 1.0, 'otherwise': 1.0, 'right': 1.0, 'funny': 1.0, 's': 1.0, 'your': 1.0, 'down': 1.0, 'switched': 1.0, 'when': 3.0, 'case': 1.0, 'connections': 1.0, 'frequency': 1.0, 'surf': 1.0, 'same': 1.0, 'runs': 1.0, 'wifi': 1.0, 'those': 1.0, 'for': 2.0, 'nursery': 1.0, 'bother': 1.0, 'doesn': 1.0, 'considerably': 1.0, 'around': 1.0, 'much': 2.0, 'our': 1.0, 'how': 1.0, 'does': 2.0, 'work': 1.0, 'run': 1.0, 'power': 1.0, 'particularly': 1.0, 'thing': 1.0, 'be': 2.0, 'dear': 1.0, 'battery': 1.0, 'excellent': 1.0, 'awful': 1.0, 'monitor': 8.0, 'home': 2.0, 'by': 1.0, 'absolutely': 1.0, 'out': 1.0, 'another': 1.0, 'trying': 2.0, 'bought': 1.0, 'time': 2.0, 'can': 2.0, 'so': 7.0, 'all': 2.0, 'to': 10.0, 'most': 1.0, 'sleep': 2.0, 'after': 2.0, 'base': 2.0, 'next': 1.0, 'has': 1.0, 'watching': 1.0, 'well': 1.0, 'i': 16.0, 'returned': 1.0, 'sure': 1.0, 'return': 2.0, 'feels': 1.0, 'from': 1.0, 'while': 2.0, 'who': 1.0, 'regular': 1.0, 'camera': 4.0, 'in': 6.0, 'want': 2.0, 'lol': 3.0, 'was': 4.0, 'a': 8.0, 't': 3.0, 'will': 1.0, 'could': 1.0, 'wanted': 1.0, 'and': 6.0, 'as': 6.0, 'crazy': 1.0, 'rhymes': 1.0, 'paranoid': 1.0, 'worth': 1.0, 'got': 3.0, 'didn': 2.0, 'internet': 2.0, 'buy': 1.0, 'slow': 1.0, 'very': 2.0, 'later': 1.0, 'plays': 1.0, 'it': 18.0, 'heart': 1.0, 'few': 1.0, 'this': 4.0, 'with': 1.0, 'side': 1.0, 'connection': 1.0, 'gift': 2.0, 'privacy': 1.0, 'which': 1.0, 'that': 4.0, 'because': 2.0, 'she': 1.0, 'baby': 5.0, 'give': 2.0, 'not': 6.0, 'of': 2.0, 'the': 26.0, 'computer': 1.0, 'without': 1.0, 'supply': 1.0, 'some': 2.0, 'friend': 1.0, 'hesitant': 1.0, 'have': 4.0, 'limits': 1.0, 'one': 2.0, 'try': 1.0, 'only': 2.0, 'hung': 1.0, 'am': 1.0, 'you': 3.0, 'glad': 1.0, 'quality': 1.0, 'insane': 1.0, 'sound': 1.0, 'image': 1.0, 'at': 2.0, 'is': 7.0, 'love': 2.0, 'version': 1.0, 'affect': 1.0, 'round': 1.0, 'did': 2.0, 'makes': 1.0, 'know': 1.0, 'easy': 1.0, 'direct': 1.0, 'like': 1.0, 'signal': 1.0, 'angle': 1.0, 'plugged': 1.0, 'also': 2.0, 'infra': 1.0, '3': 1.0, 'on': 4.0, 'trade': 1.0, 'think': 1.0, 'different': 1.0, 'me': 2.0, 'my': 2.0, 'during': 1.0, 'first': 1.0, 'would': 1.0, 'weeks': 1.0, 'born': 1.0, 'drove': 1.0, 'but': 4.0, 'move': 1.0, 'decided': 1.0, 'become': 1.0, 'used': 1.0}
Word element => {'good': 1.0, 'has': 1.0, 'reports': 1.0, 'consumer': 1.0, 'these': 1.0, 'nice': 2.0, 'near': 1.0, 'would': 2.0, 'noise': 1.0, 'times': 1.0, 'there': 3.0, 'up': 2.0, 'wakes': 2.0, 'a': 2.0, 'like': 1.0, 'know': 1.0, 'i': 5.0, 'otherwise': 1.0, 'claims': 1.0, 'through': 1.0, 'it': 6.0, 'higher': 1.0, 'and': 3.0, 'feature': 1.0, 'or': 1.0, 'that': 1.0, 'been': 1.0, 'were': 1.0, 'breakdown': 1.0, 'pan': 1.0, 'tilt': 1.0, 'be': 4.0, 'when': 1.0, 'what': 1.0, 'suggest': 1.0, 'does': 2.0, 'part': 1.0, 'capability': 1.0, 'wife': 1.0, 'works': 1.0, 'both': 1.0, 'numerous': 1.0, 'is': 1.0, 'around': 1.0, 'we': 2.0, 'fine': 1.0, 'right': 1.0, 'turned': 1.0, 'monitors': 1.0, 'you': 1.0, 'able': 2.0, 'to': 4.0, 'sleep': 1.0, 'dropped': 1.0, 'camera': 2.0, 'no': 2.0, 'but': 2.0, 'could': 1.0, 'will': 1.0, 'also': 2.0, 'as': 2.0, 'zoom': 1.0, 'not': 1.0, 'before': 1.0, 'buyers': 1.0, 'mount': 1.0, 'options': 2.0, 'of': 1.0, 'the': 7.0, 'parts': 1.0, 'limitations': 1.0, 'often': 1.0, 'my': 1.0, 'baby': 1.0, 'luckily': 1.0, 'if': 2.0, 'still': 1.0, 'e': 1.0, 'think': 1.0, 'are': 1.0, 'any': 1.0, 'probably': 1.0, 'system': 1.0, 'wifi': 1.0, 'out': 1.0, 'one': 1.0, 'crying': 1.0, 'happy': 1.0, 'volume': 1.0, 'with': 1.0, 'this': 1.0, 'trick': 1.0, 'have': 1.0, 'must': 1.0, 'internet': 1.0, 'add': 1.0, 'additional': 1.0, 'cameras': 1.0, 'viewers': 1.0, 'worked': 1.0, 'can': 1.0, 'so': 1.0, 'researching': 1.0, 'all': 1.0, 'other': 1.0, 'picking': 1.0}
Word element => {'those': 1.0, 'now': 1.0, 'for': 2.0, 'crib': 1.0, 'positioned': 1.0, 'we': 1.0, 'up': 1.0, 'herself': 1.0, 'pull': 1.0, 'issues': 1.0, 'working': 1.0, 'are': 1.0, 'tried': 1.0, 'nice': 1.0, 'would': 2.0, 'annoying': 1.0, 'get': 1.0, 'part': 1.0, 'through': 1.0, 'button': 1.0, 'press': 1.0, 'remote': 1.0, 'also': 2.0, 'go': 1.0, 'out': 1.0, 'am': 1.0, 'house': 1.0, 'our': 1.0, 'works': 1.0, 'is': 9.0, 'at': 1.0, 'option': 1.0, 'great': 3.0, 'smart': 1.0, 'case': 1.0, 'been': 1.0, 'be': 2.0, 'found': 2.0, 'highly': 1.0, 'rail': 1.0, 'this': 4.0, 'delay': 1.0, 'can': 2.0, 'so': 3.0, 'sound': 5.0, 'don': 1.0, 'time': 1.0, 'worried': 1.0, 'just': 1.0, 'there': 5.0, 'the': 19.0, 'of': 4.0, 'quality': 1.0, 'review': 1.0, 'them': 1.0, 'has': 1.0, 'and': 5.0, 'draining': 1.0, 'picture': 1.0, 'monitor': 9.0, 'end': 1.0, 'read': 3.0, 'cannot': 1.0, 'mounting': 1.0, 'plays': 1.0, 'very': 1.0, 'did': 1.0, 'a': 9.0, 't': 2.0, 'lot': 1.0, 'one': 1.0, 'purchasing': 2.0, 'mixed': 1.0, 'prior': 1.0, 'i': 14.0, 'play': 4.0, 'about': 3.0, 'battery': 2.0, 'research': 1.0, 'on': 6.0, 'some': 1.0, 'yard': 1.0, 'knew': 1.0, 'was': 2.0, 'recommend': 2.0, 'to': 6.0, 'wanted': 1.0, 'video': 6.0, 'researched': 1.0, 'but': 5.0, 'music': 3.0, 'not': 3.0, 'does': 1.0, 'have': 9.0, 'display': 1.0, 'if': 1.0, 'turn': 1.0, 'in': 3.0, 'when': 3.0, 'movement': 1.0, 'or': 1.0, 'which': 3.0, 'function': 1.0, 'rechargeable': 1.0, 'only': 4.0, 'quickly': 1.0, 'it': 11.0, 'with': 2.0, 'meaning': 1.0, 'will': 2.0, 'throughout': 1.0, 'sounds': 1.0, 'won': 1.0, 'batteries': 1.0, 'my': 2.0, 'daughter': 2.0, 'making': 1.0, 'all': 2.0, 'an': 1.0, 'other': 1.0, 'do': 1.0, 'noice': 1.0, 'room': 2.0, 'conserve': 1.0, 'worry': 1.0, 'misc': 1.0, 'her': 3.0, 'looking': 1.0, 'charges': 1.0, 'normal': 1.0, 'that': 5.0, 'because': 1.0, 'problems': 1.0, 'yet': 2.0, 'love': 1.0, 'far': 1.0, 'range': 2.0, 'overall': 1.0, 'neither': 1.0, 'you': 2.0, 'monitors': 1.0}
Word element => {'favourite': 1.0, 'philips': 1.0, 'good': 1.0, 'is': 1.0, 'have': 1.0, 'long': 1.0, 'even': 1.0, 'today': 1.0, 'just': 1.0, 'like': 1.0, 'and': 2.0, 'v': 1.0, 'very': 1.0, 'as': 1.0, 'though': 1.0, 'company': 1.0, 'in': 1.0, 'use': 1.0, 'got': 1.0, 'it': 2.0, 'converter': 1.0, 'life': 1.0, 'line': 1.0, 'i': 3.0, 'functinality': 1.0, 'the': 2.0, 'my': 2.0, 'electronic': 1.0, '220v': 1.0, 'to': 1.0, '220': 1.0, 'design': 1.0, '110': 1.0, 'power': 1.0, 'country': 1.0}
Word element => {'room': 1.0, 'same': 1.0, 'the': 1.0, 'in': 1.0, 'activated': 1.0, 'easy': 1.0, 'use': 1.0, 'just': 1.0, 'while': 1.0, 'normal': 1.0, 'to': 1.0, 'image': 1.0, 'right': 1.0, 'size': 1.0, 'think': 1.0, 'good': 1.0, 'carry': 1.0, 'has': 1.0, 'love': 1.0, 'but': 1.0, 'quality': 1.0, 'monitor': 1.0, 'and': 1.0, 'i': 2.0, 'on': 1.0, 'this': 1.0, 'it': 3.0, 'with': 1.0, 'is': 2.0, 'highly': 1.0, 'interference': 1.0, 'recommended': 1.0, 'microwave': 1.0}
Word element => {'yet': 1.0, 'maybe': 1.0, 'functionally': 1.0, 'don': 1.0, 'pretty': 1.0, 'm': 1.0, 'thing': 1.0, 'whatsoever': 1.0, 'wifi': 1.0, 'nyc': 1.0, '28i': 1.0, 'router': 1.0, '6': 1.0, 'product': 1.0, 'very': 1.0, 'continues': 1.0, 'years': 1.0, 'thats': 1.0, 'kid': 1.0, 'for': 1.0, 'figure': 1.0, 'money': 1.0, 'built': 1.0, 'attractive': 1.0, 'networks': 2.0, 'buying': 1.0, 'wireless': 3.0, 'throughout': 1.0, 'apartment': 4.0, 'decided': 1.0, 'areas': 1.0, 'see': 1.0, 'seems': 1.0, 'this': 9.0, 'features': 1.0, 'compromise': 1.0, 'competing': 1.0, 'said': 1.0, 'of': 9.0, 'the': 17.0, 'weaknesses': 1.0, 'in': 7.0, 'well': 6.0, 'i': 19.0, 'feet': 1.0, 'easier': 1.0, 'brainer': 1.0, 'technically': 1.0, 'or': 3.0, 'feature': 4.0, 'as': 6.0, 'up': 1.0, 'plenty': 1.0, 'waking': 1.0, 'different': 1.0, 'not': 2.0, 'can': 3.0, 'is': 7.0, 'interference': 2.0, 'makes': 1.0, 'that': 7.0, 'because': 2.0, 'noise': 3.0, 'worked': 2.0, 'works': 2.0, 'am': 1.0, 'contentedly': 1.0, 'with': 6.0, 'own': 1.0, 'be': 6.0, 'it': 17.0, 'its': 3.0, 'only': 1.0, 'surrounding': 1.0, 'monitor': 7.0, 'function': 2.0, 'amazing': 1.0, 'stuff': 1.0, 'really': 1.0, 'battery': 1.0, 'many': 3.0, 'baby': 4.0, 'speak': 1.0, 'people': 3.0, 'ft': 1.0, 'house': 1.0, 'if': 4.0, 'lost': 1.0, 'section': 1.0, 'each': 2.0, 'update': 1.0, 'strengths': 1.0, 'read': 1.0, 'would': 2.0, 'new': 1.0, 'model': 1.0, 'unhappy': 1.0, 'parents': 1.0, 'missing': 1.0, 'there': 4.0, 'rave': 1.0, 'total': 1.0, 'eventually': 1.0, 'themselves': 1.0, 'troubleshot': 1.0, 'we': 3.0, 'shouldn': 1.0, 'they': 2.0, 'sleeping': 1.0, 'hard': 1.0, 'wife': 1.0, 'to': 12.0, 'one': 4.0, 'nice': 1.0, 'two': 2.0, 'stated': 1.0, 'll': 3.0, 'reading': 1.0, 'explicitly': 1.0, 'audio': 1.0, '4': 1.0, 'just': 1.0, 'and': 14.0, 'buy': 2.0, 'have': 7.0, 'monitors': 2.0, 'you': 7.0, 'went': 2.0, 'been': 1.0, 'a': 19.0, 'story': 1.0, 'small': 1.0, 'who': 1.0, 'totally': 1.0, 'regular': 1.0, 'will': 1.0, 'video': 2.0, 'their': 3.0, 'camera': 4.0, 'so': 8.0, 'upgrade': 1.0, 'tell': 1.0, '1': 1.0, 'building': 1.0, 'upstate': 1.0, 'wanted': 1.0, 'make': 1.0, 'information': 1.0, 'quality': 1.0, 'far': 1.0, 'solid': 2.0, 'good': 2.0, 'which': 1.0, 'no': 4.0, 'tripod': 1.0, 'are': 4.0, 'my': 5.0, 'issues': 1.0, '20': 1.0, 'all': 1.0, 'an': 1.0, 'recently': 1.0, 'other': 1.0, 'range': 4.0, 'on': 2.0, 'channels': 2.0, 'perhaps': 1.0, 'but': 5.0, 'beeps': 1.0, 'sq': 1.0, 'level': 1.0, 'duplex': 1.0, 'life': 1.0, 'down': 1.0, 'floor': 1.0, 'want': 1.0, 'below': 1.0, 'think': 2.0, 'switch': 2.0, 'd': 2.0, 'laws': 1.0, 'pleased': 1.0, 'yourself': 1.0, 'ok': 1.0, 'once': 1.0, 'was': 1.0, 'heavy': 1.0, '60': 1.0, 'problems': 1.0, 'walls': 1.0, 'functionality': 1.0, 'between': 2.0, 'receiver': 3.0, 'about': 4.0, 'feed': 1.0, 'back': 1.0, 'lag': 1.0, 'does': 1.0, 'talk': 1.0, 'vox': 1.0, 'know': 2.0, 'some': 1.0, 'lot': 2.0, 'haven': 2.0, 'gorilla': 2.0, 'has': 7.0, 'flexibility': 1.0, 't': 6.0, '1200': 1.0, 'had': 1.0, 'before': 1.0, 'like': 4.0, 'wasn': 1.0, 'out': 3.0, 'reviews': 1.0, 'warning': 1.0, 'often': 1.0, 'able': 2.0, 'get': 2.0, 'at': 2.0, 'flashes': 1.0, 'need': 2.0, 'also': 1.0, 'sure': 2.0, 'indicator': 1.0, 'caught': 1.0, 'short': 1.0, 'reviewers': 1.0, 'mentioned': 1.0, 'mount': 1.0, 'go': 2.0, 'disrupts': 1.0, 'ahead': 1.0, 'placement': 1.0, 'pod': 2.0, 'use': 3.0, 'ourselves': 1.0, 'feel': 1.0}
Word element => {'not': 1.0, 'wouldn': 1.0, 'actually': 1.0, 'for': 3.0, 'brother': 1.0, 'room': 2.0, 'his': 3.0, 'into': 2.0, 'that': 3.0, 'go': 2.0, 'a': 4.0, 's': 1.0, 'we': 2.0, 'could': 1.0, 'needed': 1.0, 'check': 1.0, 'like': 1.0, 'felt': 1.0, 'minutes': 1.0, 'was': 1.0, 'life': 1.0, 'see': 2.0, 'wake': 1.0, 'would': 1.0, 've': 1.0, 'of': 2.0, 'the': 4.0, 'my': 3.0, 'family': 1.0, 'an': 1.0, 'something': 1.0, 'awakening': 1.0, 'when': 3.0, 'our': 3.0, 'as': 1.0, 'sleep': 1.0, 'least': 1.0, 'had': 3.0, 'he': 2.0, 'first': 1.0, 'stuck': 1.0, 'only': 1.0, 'much': 1.0, 'and': 4.0, 'picture': 1.0, 'monitor': 4.0, 'little': 1.0, 'very': 1.0, 'can': 1.0, 'months': 1.0, '34': 4.0, 'up': 1.0, 'crying': 1.0, 'house': 1.0, 'son': 3.0, 'time': 1.0, 'appreciate': 1.0, 'since': 1.0, 'i': 8.0, 'audio': 1.0, '4': 1.0, 'baby': 1.0, 'to': 5.0, 'visited': 1.0, 'few': 1.0, 'this': 2.0, 'specific': 1.0, 'okay': 1.0, 'last': 1.0, 'immediately': 1.0, 'knew': 1.0, 'clear': 1.0, 'every': 1.0, 'if': 1.0, 'soundly': 1.0, 'noticed': 1.0, 'on': 2.0, 'four': 1.0, 'cried': 1.0, 'feel': 1.0, 'or': 1.0, 'need': 1.0, 'him': 2.0, 't': 1.0, 'further': 1.0, 'everyone': 1.0, 'in': 1.0, 'has': 1.0, 'husband': 1.0, 'more': 2.0, 'at': 2.0, 'is': 1.0, 'been': 1.0, 'relaxed': 1.0, 'night': 1.0, 'able': 1.0, 'battery': 1.0, 'hours': 1.0}
Word element => {'just': 1.0, 'flooring': 1.0, 'sounds': 1.0, 'muffle': 1.0, 'carpeting': 1.0, 'no': 1.0, 'wall': 3.0, 'noted': 1.0, 'issues': 1.0, 'old': 1.0, 'or': 2.0, 'parents': 1.0, 'new': 1.0, 'for': 1.0, 'gift': 1.0, 'needs': 1.0, 'than': 1.0, 'house': 1.0, 'any': 1.0, 'your': 1.0, 'so': 1.0, 'perfect': 1.0, 'range': 2.0, 's': 2.0, 'play': 1.0, 'that': 3.0, 'tracts': 1.0, 'has': 1.0, 'watching': 1.0, 'i': 1.0, 'hidden': 2.0, 'place': 1.0, 'would': 1.0, 'dinner': 1.0, 'screen': 1.0, 'they': 3.0, 'didn': 1.0, 'even': 1.0, 'regarding': 1.0, 'to': 5.0, 'as': 3.0, 'not': 2.0, 't': 1.0, 'difference': 1.0, 'we': 4.0, 'a': 7.0, 'testing': 1.0, 'infrared': 1.0, 'several': 1.0, 'anyone': 1.0, 'in': 3.0, 'setting': 1.0, 'everyone': 2.0, 'use': 1.0, 'hardwood': 1.0, 'mode': 2.0, 'strategically': 1.0, 'had': 3.0, 'was': 1.0, 'there': 2.0, 'really': 1.0, 'ones': 1.0, 'actual': 1.0, 'lot': 1.0, 'makes': 1.0, 'did': 1.0, 'keep': 1.0, 'off': 1.0, 'see': 1.0, 'fun': 1.0, 'best': 1.0, 'what': 1.0, 'when': 4.0, 'times': 1.0, 'kids': 2.0, 'lullaby': 1.0, 'cordless': 1.0, 'up': 1.0, 'sound': 2.0, 'should': 1.0, 'placement': 1.0, 'the': 8.0, 'doing': 1.0, 'of': 1.0, 'set': 1.0, 'used': 1.0, 'thought': 1.0, 'it': 7.0, 'out': 1.0, 'oh': 1.0, 'this': 3.0, 'few': 1.0, 'oi': 1.0, 'eye': 1.0, 'be': 1.0, 'homework': 1.0, 'update': 1.0, 'realize': 1.0, 'on': 3.0, '492': 1.0, 'youngest': 1.0, 'cooking': 1.0, 'unless': 1.0, 'spy': 1.0, 'somewhere': 1.0, 'his': 1.0, 'cries': 1.0, 'partially': 1.0, 'kitchen': 1.0, 'perhaps': 1.0, 'making': 1.0, 'works': 1.0, 'bouncing': 1.0, 'like': 3.0, 'easy': 2.0, 'know': 1.0, 'all': 1.0, 'an': 2.0, 'dream': 1.0, 'now': 1.0, 'detected': 1.0, 'are': 2.0, 'their': 1.0, 'behavior': 1.0, 'some': 1.0, 'never': 1.0, 'bigger': 1.0, 'turn': 1.0, 'clear': 1.0, 'if': 1.0, 'have': 4.0, 'foot': 1.0, 'automatically': 1.0, 'me': 1.0, 'my': 3.0, 'lolit': 1.0, 'will': 2.0, 'remarkably': 1.0, 'child': 1.0, 'video': 1.0, 'floors': 1.0, 'meet': 1.0, 'is': 5.0, 'baby': 1.0, 'different': 1.0}
Word element => {'star': 1.0, 'placement': 1.0, 'fact': 1.0, 'work': 1.0, 'otherwise': 1.0, 'click': 1.0, 'tripod': 1.0, 'no': 1.0, 'some': 1.0, 'mount': 2.0, 'unlike': 1.0, 'sound': 2.0, 'most': 1.0, 'hours': 1.0, 'two': 1.0, 'more': 1.0, 'use': 1.0, 'don': 1.0, 'do': 1.0, 'though': 1.0, 'possible': 1.0, 'not': 1.0, 'excellent': 1.0, 'battery': 2.0, 'save': 1.0, 'want': 2.0, 'when': 3.0, 'hear': 1.0, 'same': 1.0, 'located': 1.0, 'lullabies': 2.0, 'unplugged': 1.0, 'button': 3.0, 'flaw': 1.0, 'design': 1.0, 'deducting': 1.0, 'build': 1.0, 'issue': 1.0, 'address': 1.0, '5ghz': 1.0, 'main': 1.0, 'time': 2.0, 'model': 1.0, 'band': 1.0, 'dual': 1.0, 'router': 1.0, 'good': 1.0, 'side': 1.0, 'upgrading': 1.0, 'am': 2.0, 'problematic': 1.0, 'or': 3.0, 'mounting': 1.0, 'netflix': 1.0, 'streaming': 1.0, '2mbps': 1.0, 'drops': 1.0, 'but': 4.0, '2': 1.0, 'simply': 1.0, 'options': 1.0, 'on': 16.0, 'your': 3.0, 'tilt': 1.0, 'to': 10.0, 'an': 1.0, 'fits': 1.0, 'other': 3.0, 'all': 2.0, 'ability': 1.0, 'primarily': 1.0, 'like': 2.0, 'i': 3.0, '4': 1.0, 'view': 3.0, 'than': 3.0, 'that': 8.0, 'because': 1.0, 'anything': 1.0, 'without': 1.0, 'of': 7.0, 'the': 40.0, 'unless': 1.0, 'turns': 2.0, 'camera': 3.0, 'video': 5.0, 'look': 1.0, 'at': 3.0, 'is': 14.0, 'static': 1.0, 'completely': 1.0, 'and': 6.0, 'silent': 1.0, 'units': 1.0, 'annoying': 1.0, 'as': 2.0, 'zoom': 1.0, 'baby': 5.0, 'reasons': 1.0, 'interfere': 1.0, 'there': 3.0, 'owned': 1.0, 'option': 1.0, 'avent': 4.0, 'loud': 1.0, 'you': 5.0, 'monitors': 2.0, 'have': 5.0, 'plenty': 1.0, 'with': 6.0, 'we': 8.0, 't': 4.0, 'slight': 1.0, 'a': 6.0, 'however': 1.0, 'interferes': 2.0, 'internet': 2.0, 'these': 1.0, 'both': 1.0, 'one': 3.0, 'interference': 1.0, 'monitor': 9.0, 'best': 4.0, 'picture': 1.0, 'got': 1.0, 'used': 6.0, 'cameras': 1.0, 'off': 2.0, 'seems': 2.0, 'also': 1.0, 'turn': 4.0, 'if': 2.0, 'keep': 1.0, 'makes': 2.0, 'did': 1.0, 'standard': 1.0, 'process': 1.0, 'better': 2.0, 'quality': 2.0, 'their': 1.0, 'bottom': 1.0, 'accidental': 1.0, 'far': 1.0, 'through': 1.0, 'for': 3.0, 'infant': 2.0, 'checking': 1.0, 'lullaby': 1.0, 'up': 4.0, 'check': 1.0, 'ghz': 1.0, 'while': 1.0, 'sleeping': 1.0, 'aren': 1.0, 'they': 1.0, 'normal': 1.0, 'in': 2.0, 'content': 1.0, 'pan': 1.0, 'crib': 1.0, 'our': 6.0, 'network': 3.0, 'wifi': 2.0, 'necessary': 1.0, 'ended': 1.0, 'are': 2.0, 'retuning': 1.0, 'it': 9.0, 'summer': 2.0, 'would': 1.0, 'wireless': 4.0, 'was': 1.0, 'picks': 1.0, 'doesn': 2.0, 'this': 6.0, 'few': 1.0, 'before': 1.0, 'unit': 6.0, 'absolutely': 1.0, 'out': 1.0, 'operate': 2.0, 'kill': 1.0, 'screen': 3.0, 'slows': 1.0, 'several': 1.0, 'down': 1.0, 'included': 1.0, 'constantly': 1.0, 'can': 2.0, 'so': 1.0, 'speed': 1.0, 'overall': 1.0, 'significantly': 1.0, 'months': 1.0, 'get': 1.0, 'life': 1.0, '19mbps': 1.0}
Word element => {'one': 1.0, 'have': 1.0, 'incredibly': 1.0, 'brand': 1.0, 'due': 1.0, 'already': 1.0, 'confidence': 1.0, 'products': 1.0, 'of': 1.0, 'bright': 1.0, 'are': 1.0, 'replace': 1.0, 'additional': 2.0, 'an': 2.0, 'in': 2.0, 'not': 1.0, 'is': 5.0, 'summer': 2.0, 'it': 1.0, 'stopped': 1.0, 'this': 4.0, 'daily': 1.0, 'on': 1.0, '3': 1.0, 'which': 1.0, 'using': 1.0, 'lights': 1.0, 'for': 1.0, 'mine': 1.0, '34': 2.0, 'absolutely': 1.0, 'years': 1.0, 'meters': 2.0, 'fan': 1.0, 'i': 6.0, 'night': 1.0, 'had': 1.0, 'purchased': 3.0, 'working': 1.0, 'terrible': 1.0, 'been': 1.0, 'that': 2.0, 'very': 1.0, 'monitor': 3.0, 'away': 2.0, 'and': 3.0, 'con': 1.0, 'get': 1.0, 'slim': 1.0, 'dissapointed': 1.0, 'bad': 1.0, 'another': 1.0, 'avent': 1.0, 'bathroom': 1.0, 'my': 4.0, 'after': 1.0, 'also': 1.0, 'secure': 1.0, 'will': 2.0, 'infant': 2.0, 'the': 3.0, 'work': 1.0, 'reception': 1.0, 'insanely': 1.0, 'daughter': 1.0, '5': 1.0, 'room': 1.0, '20': 1.0, 'from': 1.0, 's': 1.0, 'a': 3.0, 'infrared': 1.0, 'no': 1.0, 'three': 1.0, 'at': 1.0, 'signal': 1.0, 'beep': 1.0, 'to': 2.0, 'least': 1.0, 'am': 2.0, 'times': 1.0}
Word element => {'way': 1.0, 'top': 1.0, 'bottom': 1.0, 'nursery': 2.0, 'its': 1.0, 'after': 1.0, 'security': 1.0, 'considered': 1.0, 'point': 1.0, 'surprisingly': 1.0, 'cool': 1.0, 'feature': 1.0, 'box': 1.0, 'as': 2.0, 'up': 1.0, 'set': 1.0, 'policy': 1.0, 're': 1.0, 'retailer': 1.0, 'familiarize': 1.0, 'recommending': 1.0, 'outside': 1.0, 'info': 1.0, 'can': 1.0, 'what': 1.0, 'return': 1.0, 'sure': 1.0, 'everyone': 1.0, 'not': 2.0, 'appear': 1.0, 'would': 1.0, 'really': 2.0, 'ours': 1.0, 'seems': 1.0, 'works': 2.0, 'anything': 1.0, 'laying': 1.0, 'find': 1.0, 'run': 1.0, 'power': 1.0, 'crapshoot': 1.0, 'audio': 3.0, 'both': 1.0, 'beneficial': 1.0, 'experience': 1.0, 'at': 1.0, 'vision': 1.0, 'is': 7.0, 've': 2.0, 'something': 1.0, 'missing': 1.0, 'm': 1.0, 'in': 5.0, 'much': 3.0, 'do': 3.0, 'n': 1.0, 'yourself': 2.0, 'answer': 1.0, 'the': 15.0, 'of': 6.0, 'there': 1.0, 'pair': 1.0, 'monitor': 2.0, 'very': 1.0, 'a': 5.0, 'could': 1.0, 'plug': 1.0, 's': 3.0, 'hardly': 1.0, 'out': 2.0, 'has': 1.0, 'them': 1.0, 'baby': 3.0, 'quality': 2.0, 'new': 1.0, 'wide': 2.0, 'line': 1.0, 'crib': 1.0, 'been': 2.0, 'that': 4.0, 'were': 3.0, 'luck': 1.0, 'how': 2.0, 'our': 2.0, 'pretty': 2.0, 'to': 8.0, 'had': 1.0, 'be': 3.0, 'one': 1.0, 'happy': 1.0, 'mixed': 1.0, 'sort': 1.0, 'avent': 2.0, 'my': 1.0, 'awake': 1.0, 'it': 4.0, 'with': 5.0, 'easy': 1.0, 'know': 1.0, 'found': 1.0, 'this': 6.0, 'helpful': 1.0, 'your': 1.0, 'surprised': 1.0, 'but': 2.0, 'little': 1.0, 'distance': 1.0, 'obsessing': 1.0, 'play': 1.0, 'about': 2.0, 'well': 2.0, 'i': 4.0, 'want': 1.0, 'those': 1.0, 'blessing': 1.0, 'are': 1.0, 'night': 1.0, 'monitors': 2.0, 'you': 5.0, 'right': 1.0, 'll': 2.0, 'appreciated': 1.0, 'have': 1.0, 'only': 2.0, 'crystal': 1.0, 'for': 2.0, 'decided': 1.0, 'bought': 1.0, 'knowledge': 1.0, 'and': 5.0, 'notch': 1.0, 'visuals': 1.0, 'seem': 1.0, 'unit': 1.0, 'over': 1.0, 'provides': 1.0, 'note': 1.0, 'from': 1.0, 'wife': 1.0, 'primary': 1.0, 'variety': 1.0, 'ultimately': 1.0, 'other': 1.0, 'we': 5.0, 'difference': 1.0, 'reviews': 1.0, 'they': 1.0, 'information': 1.0, 'inconsistent': 1.0, 'questions': 1.0, 'between': 1.0, 'noticed': 1.0, 'camera': 1.0, 'price': 1.0, 'video': 1.0, 'product': 4.0, 'products': 1.0, 'some': 3.0, 'commissioning': 1.0, 'amazed': 1.0, 'course': 1.0, 'clear': 1.0, 'same': 2.0, 'hear': 1.0}
Word element => {'net': 1.0, 'a': 1.0, 'have': 1.0, 'wifi': 1.0, 'i': 1.0, 'with': 1.0, 'the': 2.0, 'move': 1.0, 'could': 1.0, 'perfect': 2.0, 'it': 3.0, 'works': 2.0, 'good': 2.0, 'control': 1.0, 'image': 1.0, 'would': 1.0, 'and': 2.0, 'remote': 1.0, 'be': 1.0, 'audio': 1.0, 'if': 1.0, 'camera': 1.0, 'you': 1.0}
Word element => {'far': 1.0, 'sam': 1.0, 'product': 1.0, 'went': 1.0, 'reluctantly': 1.0, 'eventually': 1.0, 'investigating': 1.0, 'least': 2.0, 'both': 1.0, 'business': 1.0, 'poor': 1.0, 'cents': 1.0, 'more': 1.0, 'samsung': 1.0, 'worth': 1.0, 'isn': 1.0, 'hurt': 1.0, 'could': 1.0, 'otherwise': 1.0, 'someone': 1.0, 'cent': 1.0, 'ten': 1.0, 'shall': 1.0, 'these': 2.0, 'potentially': 1.0, 'an': 2.0, 'same': 1.0, 'had': 1.0, 'from': 2.0, 'did': 1.0, 'book': 1.0, 'my': 1.0, 'sake': 1.0, 'box': 1.0, 'out': 1.0, 'likely': 1.0, 'think': 1.0, 'though': 1.0, 'even': 1.0, 'issue': 2.0, 'selling': 1.0, 'customer': 1.0, '10': 1.0, 'for': 4.0, 'marks': 1.0, 'top': 1.0, 'way': 2.0, 'than': 2.0, 'less': 2.0, 'our': 2.0, 'pretty': 1.0, 'to': 7.0, 'injured': 1.0, 'units': 2.0, 'as': 1.0, 'returning': 1.0, 'low': 1.0, 'are': 3.0, 'we': 4.0, 'a': 6.0, 'usage': 1.0, 'recalling': 1.0, 'hope': 2.0, 'after': 1.0, 'switch': 2.0, '3rd': 1.0, 'world': 1.0, 'or': 2.0, 'see': 1.0, 'seems': 1.0, 'off': 1.0, 'good': 3.0, 'range': 1.0, 'very': 4.0, 'baby': 2.0, 'monitors': 1.0, 'night': 1.0, 'exchange': 1.0, 'avent': 1.0, 'another': 3.0, 'phillips': 3.0, 'few': 1.0, 'this': 4.0, 'full': 1.0, 'but': 4.0, 'guess': 1.0, 'policy': 1.0, 'money': 2.0, 'digital': 1.0, 'of': 4.0, 'the': 15.0, 'display': 1.0, 'they': 5.0, 'faulty': 3.0, 'sound': 1.0, 'wonderful': 1.0, 'amazon': 6.0, 'use': 1.0, 'unit': 6.0, 'only': 3.0, 'with': 5.0, 'second': 1.0, 'at': 2.0, 'vision': 1.0, 'is': 5.0, '3': 1.0, 'buy': 1.0, 'ship': 1.0, 'refunded': 1.0, 'hours': 1.0, 'promptly': 1.0, 'works': 2.0, 'days': 2.0, 'still': 1.0, 'service': 1.0, 'clear': 1.0, 'longevity': 1.0, 'clarity': 1.0, 'that': 6.0, 'has': 3.0, 'next': 1.0, 'vendor': 1.0, 't': 2.0, 'replacement': 1.0, 'practices': 1.0, 'on': 2.0, 'update': 1.0, 'some': 1.0, 'thought': 1.0, 'it': 6.0, 'proceed': 1.0, 'reason': 1.0, 'well': 1.0, 'i': 3.0, 'in': 3.0, 'm': 1.0, 'monitor': 3.0, 'best': 1.0, 'not': 5.0, 'maybe': 1.0, 's': 3.0, 'giving': 1.0, 'be': 2.0, 'excellent': 1.0, 'really': 2.0, 'score': 1.0, 'when': 1.0, 'thanks': 1.0, 'again': 2.0, 'return': 1.0, 'sure': 1.0, 'exact': 1.0, 'have': 2.0, 'wouldn': 1.0, 'replace': 1.0, 'too': 1.0, 'one': 1.0, 'weeks': 1.0, 'would': 1.0, 'us': 1.0, 'also': 1.0, 'can': 1.0, 'so': 3.0}
Word element => {'remotely': 1.0, 'options': 1.0, 'menu': 1.0, 'got': 1.0, 'short': 1.0, 'else': 1.0, 'has': 1.0, 'them': 1.0, 'amazon': 5.0, 'nightlight': 2.0, 'crazy': 1.0, 'long': 1.0, 'on': 3.0, 'you': 3.0, 'dealing': 1.0, 'if': 4.0, 'purchased': 2.0, 'had': 1.0, 'be': 1.0, 'product': 2.0, 'to': 4.0, 'your': 1.0, 'any': 2.0, 'an': 1.0, 'all': 1.0, 'about': 1.0, 'parents': 1.0, 'story': 1.0, 'a': 3.0, 't': 3.0, 'ago': 1.0, 's': 3.0, 'great': 1.0, '1': 1.0, 'month': 1.0, 'it': 5.0, 'says': 1.0, 'buy': 1.0, 'i': 6.0, 'from': 3.0, 'then': 1.0, 'is': 4.0, 'say': 1.0, 'wouldn': 2.0, 'this': 2.0, 'right': 1.0, 'theory': 1.0, 'stuck': 1.0, 'offer': 1.0, 'said': 1.0, 'anywhere': 1.0, 'or': 1.0, 'need': 1.0, 'exchange': 1.0, 'warn': 1.0, 'future': 1.0, 'who': 1.0, 'and': 2.0, 'issue': 2.0, 'but': 2.0, 'process': 1.0, '2': 1.0, 'they': 2.0, 'software': 1.0, 'philips': 3.0, 'case': 1.0, 'with': 5.0, 'track': 1.0, 'wrong': 1.0, 'not': 3.0, 'came': 1.0, 'can': 2.0, 'so': 1.0, 'anything': 1.0, 'instead': 1.0, 'the': 8.0, 'of': 1.0, 'friendly': 1.0, 'now': 1.0, 'agent': 1.0, 'phone': 1.0, 'where': 1.0, 'doesnt': 1.0, 're': 1.0, 'activate': 1.0, 'lullabies': 2.0, 'entirely': 1.0, 'parenting': 2.0, 'unit': 3.0, 'in': 1.0, 'm': 1.0, 'warranty': 1.0, 'sure': 1.0, 'spoke': 1.0, 'me': 1.0, 'my': 1.0, 'just': 1.0, 'why': 1.0, 'yes': 1.0, 'tried': 1.0, 'operate': 1.0, 'local': 1.0, 'call': 1.0, 'help': 1.0, 'that': 4.0, 'because': 1.0, 'bought': 1.0}
Word element => {'range': 1.0, 'has': 1.0, 'worst': 1.0, 'with': 1.0, 'round': 1.0, 'now': 1.0, 'returned': 1.0, 'brand': 1.0, 'old': 1.0, 'liked': 1.0, 'that': 2.0, 'features': 1.0, 'or': 1.0, 'remotely': 1.0, 'i': 2.0, 'stated': 1.0, 'will': 1.0, 'also': 1.0, 'means': 1.0, 'garden': 1.0, 'different': 1.0, 'good': 1.0, 'was': 1.0, 'for': 1.0, 'no': 1.0, 'lullaby': 2.0, 'remote': 1.0, 'play': 1.0, 'and': 4.0, 'monitor': 2.0, 'cant': 1.0, 'one': 3.0, 'bought': 1.0, 'sound': 1.0, 'in': 2.0, 'of': 1.0, 'wake': 1.0, 'this': 4.0, 'hear': 1.0, 'first': 1.0, 'loud': 2.0, 'it': 2.0, 'however': 2.0, 'the': 8.0, 'sony': 1.0, 'a': 2.0, 't': 2.0, 'is': 3.0, 'reviewer': 1.0, 'another': 1.0, 'my': 1.0, 'night': 1.0, 'quality': 1.0, 'baby': 2.0, 'broke': 1.0, 'time': 1.0, 'hoops': 1.0, 'so': 1.0, 'simply': 2.0, 'philips': 1.0, 'not': 2.0, 'crying': 1.0, 'lightest': 1.0, 'enough': 2.0, 'unless': 1.0, 'you': 3.0, 'have': 2.0, 'crackles': 1.0, 'light': 1.0, 'by': 1.0, 'on': 2.0, 'your': 1.0, 'ear': 1.0, 'wouldn': 1.0, '2nd': 1.0, 'even': 2.0, 'sleepers': 1.0, 'definitely': 1.0, 'buy': 1.0, 'extra': 1.0, 'all': 1.0, 'any': 1.0, 'as': 2.0, 'but': 1.0, 'can': 1.0, '2': 1.0, 'noisesuch': 1.0, 'sitting': 1.0}
Word element => {'just': 1.0, 'doesn': 1.0, 'work': 1.0, 'when': 1.0, 'features': 1.0, 'as': 2.0, 'equipment': 1.0, 'expectancy': 1.0, 'life': 1.0, 'any': 1.0, 'make': 1.0, 'year': 2.0, 'go': 1.0, 's': 1.0, 'a': 5.0, 'going': 1.0, 't': 2.0, 'actually': 1.0, 'expensive': 1.0, 'without': 1.0, 'guarantee': 1.0, 'them': 1.0, 'back': 1.0, 'be': 1.0, 'unfortunately': 1.0, 'talk': 1.0, 'was': 2.0, 'rooms': 2.0, 'another': 1.0, 'having': 2.0, 'than': 2.0, 'in': 2.0, 'said': 1.0, 'to': 11.0, 'monitors': 2.0, 'able': 2.0, 'replace': 1.0, 'philips': 1.0, 'see': 1.0, 'unit': 1.0, 'temperature': 1.0, 'expected': 1.0, 'my': 2.0, 'manager': 1.0, 'anyone': 1.0, 'and': 6.0, 'the': 8.0, 'of': 5.0, 'electronic': 1.0, 'one': 4.0, 'purchased': 2.0, 'had': 2.0, 'liked': 2.0, 'much': 2.0, 'purchase': 1.0, 'only': 1.0, 'reliability': 1.0, 'so': 1.0, 'these': 2.0, 'throw': 1.0, 'avent': 1.0, 'great': 1.0, 'really': 1.0, 'their': 1.0, 'customer': 1.0, 'at': 1.0, 'is': 3.0, 'more': 2.0, 'then': 1.0, 'shouldn': 1.0, 'children': 1.0, 'it': 4.0, 'they': 5.0, 'first': 1.0, 'are': 2.0, 'money': 1.0, 'called': 1.0, 'warranty': 1.0, 'sure': 1.0, 'months': 1.0, 'get': 1.0, 'i': 9.0, 'malfunction': 1.0, 'appreciated': 1.0, 'have': 4.0, 'problem': 2.0, 'after': 1.0, 'with': 3.0, 'both': 1.0, 'gotten': 1.0, 'away': 1.0, 'replacements': 4.0, 'because': 1.0, 'that': 5.0, 'problems': 2.0, 'compact': 1.0, 'also': 1.0, 'replaced': 1.0, 'recommend': 1.0, 'were': 1.0, 'now': 1.0, 'again': 1.0, 'those': 1.0, 'not': 1.0, 'monitor': 3.0, 'told': 1.0, 'since': 2.0, 'original': 1.0, 'few': 1.0, 'this': 3.0, 'am': 1.0, 'last': 1.0, 'but': 1.0, 'service': 1.0, 'being': 1.0, 'later': 1.0, 'cannot': 2.0}
Word element => {'features': 1.0, 'of': 1.0, 'any': 1.0, 'see': 1.0, 'able': 1.0, 'it': 2.0, 'get': 1.0, 'return': 1.0, 'had': 1.0, 'room': 1.0, 'range': 1.0, 'enough': 1.0, 'the': 3.0, 'wasn': 2.0, 'working': 1.0, 't': 2.0, 'far': 1.0, 'to': 4.0, 'i': 2.0, 'reach': 1.0, 'baby': 1.0, 'so': 1.0}
Word element => {'because': 1.0, 'thank': 1.0, 'range': 1.0, 'has': 1.0, 'never': 2.0, 'fails': 1.0, 'paying': 1.0, 'worth': 1.0, 'is': 1.0, 'this': 2.0, 'product': 1.0, 'for': 3.0, 'extra': 1.0, 'buy': 1.0, 'back': 1.0, 'thankfully': 1.0, 'of': 3.0, 'child': 1.0, 'up': 1.0, 'working': 1.0, 'monitor': 2.0, 'and': 4.0, 'get': 1.0, 'worry': 1.0, 'market': 1.0, 'failing': 1.0, 'graco': 1.0, 'you': 1.0, 'when': 1.0, 'life': 1.0, 'by': 1.0, 'i': 2.0, 'the': 6.0, '2': 1.0, 'another': 1.0, 'my': 1.0, 'middle': 1.0, 'in': 1.0, 'were': 1.0, 'a': 3.0, 'we': 5.0, 'old': 1.0, 'realized': 1.0, 'it': 2.0, 'stopped': 1.0, 'month': 1.0, 'looks': 1.0, 'are': 2.0, 'called': 1.0, 'heard': 1.0, 'horrified': 1.0, 'use': 1.0, 'her': 2.0, 'customers': 1.0, 'crying': 2.0, 'waking': 1.0, 'one': 1.0, 'huge': 1.0, 'decided': 1.0, 'years': 1.0, 'best': 1.0, 'philips': 1.0, 'later': 1.0, 'wife': 1.0, 'while': 2.0, 'our': 2.0, 'to': 3.0, 'had': 1.0, 'nature': 1.0, 'john': 1.0, 'night': 1.0, 'baby': 1.0, 'obviously': 1.0, 'next': 1.0, 'been': 1.0, 'about': 1.0, 'thing': 1.0, '3': 1.0, 'on': 1.0}
Word element => {'mumble': 1.0, 'important': 1.0, 'almost': 1.0, 'use': 1.0, 'less': 1.0, 'did': 1.0, 'technology': 2.0, 'base': 1.0, 'great': 1.0, 'overcome': 1.0, 'channel': 1.0, 'were': 1.0, 'be': 2.0, 'requirement': 2.0, 'decided': 1.0, 'bought': 1.0, 'number': 2.0, 'i': 1.0, 'the': 15.0, 'after': 1.0, 'turns': 1.0, 'without': 1.0, 'decent': 1.0, 'baby': 7.0, 'mess': 1.0, 'buy': 1.0, 'to': 7.0, 'our': 2.0, 'a': 7.0, 'cost': 1.0, 't': 3.0, 'fancy': 1.0, 'discovered': 1.0, 'long': 1.0, 'wireless': 4.0, 'dect': 2.0, 'crowded': 1.0, 'from': 2.0, 'than': 1.0, 'matter': 1.0, 'very': 3.0, 'interference': 1.0, 'monitor': 10.0, 'angel': 1.0, 'neighborhood': 1.0, 'between': 1.0, 'free': 1.0, 'and': 4.0, 'get': 1.0, 'that': 3.0, 'have': 3.0, 'this': 5.0, 'research': 1.0, 'thought': 1.0, 'it': 6.0, 'difficult': 1.0, 'find': 1.0, 'live': 1.0, 'work': 1.0, 'speed': 1.0, 'so': 1.0, 'can': 5.0, 'but': 2.0, 'was': 1.0, 'doesn': 2.0, 'didn': 1.0, 'problem': 1.0, 'notice': 1.0, 'is': 6.0, 'at': 1.0, 'however': 1.0, 'requirements': 1.0, 'half': 1.0, 'house': 1.0, 'lucky': 1.0, 'one': 3.0, 'crying': 1.0, 'out': 1.0, 'hear': 6.0, 'any': 1.0, 'your': 2.0, 'where': 1.0, 'actually': 1.0, 'fails': 1.0, 'clear': 1.0, 'if': 5.0, 'able': 2.0, 'you': 6.0, 'communicate': 1.0, 'with': 1.0, 'no': 2.0, 'we': 7.0, 'then': 1.0, 'dishwasher': 1.0, 'or': 1.0, 'wrong': 1.0, 'washing': 1.0, 'thing': 1.0, 'machine': 1.0, 'returned': 1.0, 'working': 1.0, 'are': 1.0, 'quiet': 1.0, 'really': 1.0, 'all': 1.0, 'an': 1.0, 'communication': 2.0, 'care': 1.0}
Word element => {'b': 1.0, 'place': 2.0, 'perform': 1.0, 'car': 1.0, 'fully': 1.0, 'really': 1.0, 'expected': 1.0, 'guys': 1.0, 'these': 1.0, 'out': 1.0, 'turns': 1.0, 'models': 1.0, 'avent': 1.0, 'philips': 1.0, 'based': 1.0, 'its': 1.0, 'research': 1.0, 'more': 1.0, 'did': 1.0, 'earshot': 1.0, 'will': 1.0, 'there': 1.0, 'fisher': 1.0, 'purpose': 1.0, 'from': 3.0, 'down': 1.0, 'something': 1.0, 'hand': 1.0, 'no': 1.0, 'years': 1.0, '5': 1.0, 'have': 1.0, 'issue': 1.0, 'problem': 1.0, 'within': 1.0, 'possible': 1.0, 'don': 2.0, 'garden': 2.0, 'other': 1.0, 'potentially': 1.0, 'level': 2.0, 'thing': 1.0, '2': 1.0, 'around': 1.0, 'price': 1.0, 'child': 1.0, 'up': 1.0, 'use': 1.0, 'be': 2.0, 'clipped': 1.0, 'but': 2.0, 'most': 1.0, 'back': 1.0, 'way': 1.0, 'begun': 1.0, 'old': 1.0, 'fact': 2.0, 'me': 2.0, 'my': 6.0, 'like': 2.0, 'talk': 1.0, 'was': 2.0, 'mobile': 1.0, 'decided': 1.0, 'one': 1.0, 'are': 3.0, 'set': 1.0, 'because': 1.0, 'that': 6.0, 'is': 7.0, 'caught': 1.0, 'indeed': 1.0, 'features': 1.0, 'better': 1.0, 'think': 1.0, 'parent': 2.0, 'enough': 1.0, 'house': 2.0, 'it': 10.0, 'this': 6.0, 'for': 3.0, 'read': 1.0, 'monitor': 3.0, 'has': 1.0, 'loaded': 1.0, 'temperature': 1.0, 'they': 1.0, 'pocket': 1.0, 'positive': 1.0, 'a': 7.0, 'clipping': 1.0, 'go': 1.0, 'belt': 1.0, 't': 4.0, 'skeptical': 1.0, 'and': 9.0, 'i': 13.0, 'to': 11.0, 'doesn': 1.0, 'useful': 2.0, 'waist': 1.0, 'baby': 5.0, 'deal': 1.0, 'without': 1.0, 'dect': 1.0, 'seemed': 1.0, 'also': 2.0, 'in': 5.0, 'can': 1.0, 'so': 1.0, 'time': 1.0, 'range': 1.0, 'ended': 1.0, 'know': 1.0, 'however': 1.0, 'returning': 1.0, 'simple': 1.0, 'as': 5.0, 'silent': 1.0, 'common': 1.0, 'using': 1.0, 'reason': 1.0, 'with': 1.0, 'volume': 3.0, 'or': 1.0, 'near': 1.0, 'on': 4.0, 'online': 1.0, 'your': 1.0, 'not': 2.0, 'humidity': 1.0, 'of': 3.0, 'the': 17.0, 'attention': 2.0, 'even': 1.0, 'take': 1.0, 'reviews': 1.0, 'maximum': 1.0, 'then': 1.0, 'unit': 5.0, 'wasn': 1.0, 'literally': 1.0, 'keeping': 1.0, 'you': 2.0, 'gauges': 1.0, 'loud': 2.0, 'able': 2.0, 'same': 1.0, 'hear': 2.0, 'shirt': 1.0, 'breaking': 1.0, 'collar': 1.0, 'if': 2.0, 'had': 4.0, 'function': 1.0, 'grab': 1.0, 'only': 1.0, 'basic': 3.0, 'empty': 1.0, 'by': 1.0, 'work': 1.0, 'bawl': 1.0, 'expensive': 2.0, 'planned': 1.0}
Word element => {'sparingly': 1.0, 'out': 1.0, 'kick': 1.0, 'get': 1.0, 'humor': 1.0, 'adults': 1.0, 'some': 1.0, 'basic': 1.0, 'temperature': 1.0, 'also': 1.0, 'blue': 1.0, 'sound': 1.0, 'will': 1.0, 'alert': 1.0, 'etc': 1.0, 'down': 1.0, 'knocked': 1.0, 'without': 1.0, 'getting': 1.0, 'end': 1.0, 'two': 1.0, 'radio': 1.0, 'unplugged': 1.0, 'button': 1.0, 'talk': 1.0, 'has': 1.0, 'something': 1.0, 'they': 1.0, 'touched': 1.0, 'even': 1.0, 'does': 1.0, 'in': 1.0, 'speech': 1.0, 'definition': 1.0, 'by': 3.0, 'sounds': 1.0, 'monitor': 1.0, 'to': 5.0, 'away': 1.0, 'if': 3.0, 'on': 3.0, 'your': 1.0, 'eye': 1.0, 'although': 1.0, 'kept': 1.0, 'should': 2.0, 'but': 3.0, 'elderly': 1.0, 'can': 1.0, 'just': 1.0, 'station': 1.0, 'another': 1.0, 'monitoring': 4.0, 'breeze': 1.0, 'was': 2.0, 'set': 1.0, 'used': 3.0, 'readout': 1.0, 'charging': 1.0, 'both': 1.0, 'units': 1.0, 'as': 2.0, 'light': 1.0, 'reason': 1.0, 'battery': 1.0, 'feature': 1.0, 'need': 2.0, 'or': 1.0, 'babies': 2.0, 'that': 4.0, 'a': 7.0, 't': 1.0, 'i': 1.0, 'well': 2.0, 'environmental': 1.0, 'see': 1.0, 'room': 1.0, 'lack': 1.0, 'unit': 3.0, 'no': 2.0, 'extended': 1.0, 'life': 1.0, 'mileage': 1.0, 'such': 1.0, 'for': 5.0, 'where': 1.0, 'lullaby': 1.0, 'up': 1.0, 'infirmed': 1.0, 'acceptable': 1.0, 'be': 3.0, 'conditions': 2.0, 'this': 4.0, 'provided': 1.0, 'allows': 1.0, 'with': 4.0, 'it': 1.0, 'loud': 1.0, 'push': 1.0, 'you': 2.0, 'between': 2.0, 'person': 1.0, 'device': 5.0, 'the': 17.0, 'of': 3.0, 'intended': 1.0, 'vary': 1.0, 'good': 2.0, 'sides': 1.0, 'hear': 1.0, 'naturally': 1.0, 'period': 1.0, 'under': 1.0, 'batteries': 1.0, 'regular': 1.0, 'sent': 1.0, 'walkie': 1.0, 'talkies': 1.0, 'signal': 1.0, 'communication': 2.0, 'function': 2.0, 'usually': 2.0, 'expectations': 1.0, 'there': 1.0, 'give': 2.0, 'my': 1.0, 'may': 1.0, 'me': 2.0, 'those': 1.0, 'reception': 3.0, 'not': 2.0, 'poor': 1.0, 'better': 1.0, 'parent': 4.0, 'and': 3.0, 'exceeded': 1.0, 'too': 1.0, 'one': 1.0, 'factors': 1.0, 'term': 1.0, 'worked': 1.0, 'an': 2.0, 'all': 1.0, 'other': 2.0, 'devices': 1.0, 'broken': 1.0, 'simple': 1.0, 'is': 4.0, 'at': 1.0, 'hi': 1.0, 'intercom': 1.0, 'fi': 1.0, 'flashing': 1.0, 'from': 1.0, 'voice': 1.0}
Word element => {'satisfactory': 1.0, 'plain': 1.0, 'neeed': 1.0, 'actually': 1.0, 'carefully': 1.0, 'multi': 1.0, 'cheap': 1.0, 'least': 1.0, 'current': 1.0, 'had': 1.0, 'yell': 1.0, 'mode': 1.0, 'lights': 1.0, 'believe': 1.0, 'physicians': 1.0, 'some': 1.0, 'night': 2.0, 'six': 1.0, 'choice': 2.0, 'orange': 1.0, 'kid': 1.0, 'your': 3.0, 'alarm': 1.0, 'know': 1.0, 'really': 2.0, 'questionable': 1.0, 'brat': 1.0, 'else': 1.0, 'featured': 1.0, 'volume': 1.0, 'indicate': 1.0, 'marked': 1.0, 'minus': 1.0, 'plus': 1.0, 'require': 1.0, 'designed': 1.0, 'performs': 1.0, 'well': 2.0, 'confusing': 1.0, 'changing': 1.0, 'simply': 2.0, 'settings': 2.0, 'change': 1.0, 'reason': 1.0, 'any': 2.0, 'utility': 1.0, 'going': 1.0, 'get': 1.0, 'able': 1.0, 'people': 1.0, 'electronics': 1.0, 'understanding': 1.0, 'plug': 1.0, 'once': 1.0, 'need': 3.0, 'also': 1.0, 'beeps': 1.0, 'button': 1.0, 'transmission': 1.0, 'mislay': 1.0, 'if': 4.0, 'lullabies': 1.0, 'look': 1.0, 'want': 1.0, 'transmitter': 4.0, 'absurd': 1.0, 'disposable': 1.0, 'out': 4.0, 'even': 1.0, 'of': 12.0, 'pim': 1.0, 'receiver': 4.0, 'dump': 1.0, 'comprises': 1.0, 'generally': 1.0, 'be': 5.0, 'it': 7.0, 'mature': 1.0, 'this': 1.0, 'fiddle': 1.0, 'baby': 8.0, 'supplied': 1.0, 'considered': 1.0, 'have': 6.0, 'gives': 1.0, 'parents': 1.0, 'description': 1.0, 'just': 3.0, 'runs': 1.0, 'and': 11.0, 'interest': 1.0, 'retain': 1.0, 'no': 3.0, 'page': 1.0, 'not': 7.0, 'reception': 1.0, 'feature': 6.0, 'unloaded': 1.0, 'sling': 1.0, 'that': 4.0, 'problems': 2.0, 'shipped': 1.0, 'they': 3.0, 'scd525': 1.0, 'nursery': 1.0, 'phones': 1.0, 'range': 3.0, 'saturates': 1.0, 'supplies': 1.0, 'turn': 1.0, 'is': 9.0, 'can': 4.0, 'so': 3.0, 'but': 3.0, 'mislaid': 1.0, 'roughly': 1.0, 'talk': 1.0, 've': 2.0, 'temperature': 1.0, 'in': 7.0, 'incorrectly': 1.0, 'hut': 1.0, 'saves': 1.0, 'humidity': 2.0, 'use': 1.0, 'an': 4.0, 'model': 1.0, 'note': 1.0, 'with': 5.0, 'degree': 1.0, 'supply': 1.0, 'most': 1.0, 'encourage': 1.0, 'anyway': 1.0, 'psychrometer': 1.0, 'sightedness': 1.0, 'draw': 1.0, 'was': 2.0, 'for': 5.0, 'product': 3.0, 'year': 1.0, 'supposed': 1.0, 'near': 1.0, 'avent': 1.0, 'condo': 1.0, 'without': 2.0, 'versions': 1.0, 'worked': 2.0, 'buy': 1.0, 'having': 1.0, 'cause': 1.0, 'i': 7.0, 'basic': 1.0, 'bottle': 1.0, 'sensor': 1.0, 'fact': 1.0, 'what': 4.0, 'bawling': 1.0, 'see': 2.0, 'referring': 2.0, 'seems': 1.0, 'tricked': 1.0, 'couldn': 1.0, 'appreciated': 1.0, 'or': 4.0, 'creep': 1.0, 'known': 1.0, 'receive': 1.0, 'wikipedia': 1.0, 'reasonably': 1.0, 'mentioned': 1.0, 'market': 1.0, 'printed': 1.0, 'box': 1.0, 'dect': 4.0, 'default': 2.0, 'confirm': 1.0, 'features': 2.0, 'interference': 2.0, 'products': 1.0, 'whether': 1.0, 'monitors': 2.0, 'manufacturers': 1.0, 'buttons': 1.0, 'user': 2.0, 'lot': 1.0, 'philips': 3.0, 'would': 2.0, 'consumer': 2.0, 'commonly': 1.0, 'don': 2.0, 'still': 1.0, 'initially': 1.0, 'every': 1.0, 'there': 2.0, 'monitor': 6.0, 'might': 5.0, 'expensive': 1.0, 's': 5.0, 'system': 1.0, 'do': 4.0, 'put': 1.0, 'setting': 2.0, 'owners': 1.0, 'floor': 1.0, 't': 3.0, 'a': 25.0, 'these': 1.0, 'grove': 1.0, 'are': 2.0, 'my': 3.0, 'room': 3.0, 'charger': 1.0, 'useful': 1.0, 'good': 5.0, 'kill': 1.0, 'warming': 1.0, 'charged': 1.0, 'unquestionably': 1.0, 'which': 2.0, '0': 2.0, 'protocol': 1.0, 'used': 1.0, 'cordless': 2.0, 'telephones': 1.0, 'series': 1.0, 'article': 1.0, 'new': 1.0, 'rundown': 1.0, 'though': 1.0, 'parking': 1.0, 'same': 1.0, 'long': 1.0, 'indeed': 1.0, 'on': 5.0, 'amount': 1.0, 'bad': 1.0, 'everything': 3.0, 'spot': 1.0, 'menuing': 1.0, 'cell': 1.0, 'the': 42.0, 'living': 1.0, 'light': 1.0, 'power': 3.0, 'run': 1.0, 'second': 1.0, 'you': 13.0, 'watt': 2.0, 'one': 3.0, 'got': 1.0, 'almost': 1.0, '150': 1.0, 'away': 1.0, 'about': 5.0, '6': 2.0, 'barring': 1.0, 'from': 2.0, 'within': 1.0, 'anywhere': 1.0, 'detectable': 1.0, 'to': 17.0, 'pocketable': 1.0, 'cold': 1.0, 'quonset': 1.0, 'materials': 1.0, 'add': 1.0, 'short': 1.0, 'should': 3.0, 'think': 1.0, 'another': 3.0, 'pricey': 1.0, 'switching': 1.0, 'base': 1.0, 'unit': 1.0, 'assumption': 1.0, 'downright': 1.0, 'scd535': 1.0, 'efficient': 1.0, 'at': 2.0, 'conventional': 2.0, 'free': 1.0, 'pull': 1.0, '20kwh': 1.0, 'huge': 1.0, 'bit': 2.0, 'properly': 1.0, 'manual': 2.0, 'helps': 1.0, 'walked': 1.0, 'size': 1.0, 'cells': 1.0, 'phone': 1.0, 'as': 5.0, 'nimh': 1.0, 'highly': 1.0, 'battery': 2.0}
Word element => {'lovely': 1.0, 'cd': 1.0, 'me': 1.0, 'item': 1.0, 'will': 1.0, 'constellations': 1.0, 'shows': 1.0, 'because': 1.0, 'turtle': 1.0, 'this': 1.0, 'it': 3.0, 'plush': 1.0, 'first': 1.0, 'frequent': 1.0, 'shelled': 1.0, 'love': 1.0, 'stars': 1.0, 'be': 1.0, 'within': 1.0, 'quietly': 1.0, 'and': 4.0, 'color': 1.0, 'months': 1.0, 'become': 1.0, 'two': 1.0, '4': 1.0, 'routine': 1.0, 'the': 2.0, 'is': 1.0, 'completely': 1.0, 'more': 1.0, 'are': 2.0, 'choices': 1.0, 'in': 2.0, 'hard': 1.0, 'gaze': 1.0, 'has': 1.0, 'a': 2.0, 'bedtime': 1.0, 'ma': 1.0, 'grow': 1.0, 'our': 1.0, 'to': 1.0, 'star': 1.0, 'with': 3.0, 'o': 1.0, 'real': 1.0, 'then': 1.0, '18': 1.0, 'overnight': 1.0, 'their': 1.0, 'individually': 1.0, 'years': 1.0, 'afterward': 1.0, 'stays': 1.0, 'own': 1.0, 'room': 1.0, 'grandsons': 1.0, 'even': 1.0}
Word element => {'or': 1.0, 'blue': 1.0, 'so': 1.0, 'green': 1.0, 'and': 1.0, 'amber': 1.0, '1': 1.0, 'matter': 1.0, 'new': 1.0, 'reviews': 1.0, 'read': 1.0, 'changes': 1.0, 'son': 2.0, 'night': 1.0, 'sea': 1.0, 'the': 4.0, '2': 1.0, 'my': 2.0, 'one': 1.0, 'decided': 1.0, 'color': 1.0, 'push': 1.0, 'turtle': 3.0, 'who': 1.0, 'light': 1.0, 'for': 1.0, 'stars': 1.0, '3': 1.0, 'on': 3.0, 'more': 1.0, 'is': 1.0, 'this': 2.0, 'it': 2.0, 'with': 1.0, 'loves': 2.0, 'that': 1.0, 'were': 1.0, 'i': 2.0, 'stated': 1.0, 'there': 1.0, 'of': 1.0, 'no': 1.0, 'which': 1.0, 'you': 1.0, 'pick': 1.0, 'out': 1.0, 'site': 1.0, 'colors': 1.0, 'a': 2.0, 'button': 1.0, 'to': 1.0}
Word element => {'helps': 1.0, 'cd': 1.0, 'falls': 1.0, 'just': 1.0, 'calmer': 1.0, 'is': 1.0, 'this': 1.0, 'with': 1.0, 'he': 1.0, 'ceiling': 1.0, 'go': 1.0, 'a': 1.0, '10': 1.0, 'also': 1.0, 'having': 1.0, 'on': 1.0, 'the': 5.0, 'made': 1.0, 'asleep': 1.0, 'to': 2.0, 'month': 1.0, 'trouble': 1.0, 'were': 1.0, 'peacefully': 1.0, 'bed': 1.0, 'has': 1.0, 'big': 1.0, 'we': 1.0, 'turtle': 1.0, 'getting': 1.0, 'and': 2.0, 'difference': 1.0, 'by': 1.0, 'watching': 1.0, 'stars': 1.0}
Word element => {'collection': 1.0, 'ladybug': 1.0, 'own': 1.0, 'our': 1.0, 'their': 1.0, 'rooms': 1.0, 'to': 2.0, 'kids': 1.0, 'when': 1.0, 'can': 1.0, 'love': 3.0, 'well': 1.0, 'say': 1.0, 'turtle': 1.0, 'enough': 1.0, 'battery': 1.0, 'night': 1.0, 'is': 1.0, 'moved': 1.0, 'it': 2.0, 'this': 1.0, 'with': 1.0, 'light': 1.0, 'about': 1.0, 'price': 1.0, 'worth': 1.0, 't': 1.0, 'the': 3.0, 'started': 1.0, 'good': 1.0, 'life': 1.0, 'added': 1.0, 'then': 1.0, 'we': 3.0}
Word element => {'idea': 1.0, 'us': 1.0, 'one': 1.0, 'another': 1.0, 'want': 1.0, 'husband': 1.0, 'for': 1.0, 'daughter': 1.0, 'wonderful': 1.0, 'this': 1.0, 'my': 2.0, 'me': 1.0, 'and': 1.0, 'is': 1.0, 'great': 1.0, 'love': 1.0, 'going': 1.0, 'product': 1.0, 'to': 1.0}
Word element => {'properly': 1.0, 'up': 1.0, 'hold': 1.0, 'separately': 1.0, 'stand': 1.0, 'lionheart': 1.0, 'back': 1.0, 'together': 1.0, 'putting': 1.0, 'old': 1.0, 'personally': 1.0, 'adorable': 1.0, 'still': 1.0, 'test': 1.0, 'far': 1.0, 'didn': 1.0, 'little': 1.0, 'it': 4.0, 'this': 2.0, 'he': 1.0, 'year': 1.0, 'bike': 3.0, 'wheel': 1.0, 'only': 1.0, 'bought': 1.0, 't': 1.0, 'stood': 1.0, 'the': 4.0, 'big': 1.0, 'great': 1.0, 'any': 1.0, 'fits': 1.0, 'my': 2.0, 'another': 1.0, 'for': 1.0, 'i': 2.0, 'two': 1.0, 'have': 1.0, 'into': 1.0, 'loves': 1.0, 'does': 1.0, 'than': 1.0, 'wood': 1.0, 'other': 1.0, 'balance': 1.0, 've': 1.0, 'seen': 1.0, 'guy': 1.0, 'prince': 1.0, 'more': 1.0, 'is': 2.0, 'issues': 1.0, 'rough': 1.0, 'sold': 1.0, 'and': 3.0, 'tough': 1.0, 'has': 1.0, 'of': 1.0, 'toddlerhood': 1.0, 'but': 1.0, 'p': 1.0, 'quality': 1.0}
Word element => {'expected': 1.0, 'at': 1.0, 'arrived': 1.0, 'and': 1.0, 'time': 1.0, 'has': 1.0, 'she': 1.0, 'will': 1.0, 'softest': 1.0, 'this': 1.0, 'are': 1.0, 'my': 1.0, 'the': 2.0, 'these': 1.0, 'says': 1.0, 'animals': 1.0, 'found': 1.0, 'newborn': 1.0, 'be': 1.0, 'product': 1.0, 'wife': 1.0, 'sent': 1.0, 'wrapped': 1.0, 'well': 1.0, 'a': 1.0, 'stuffed': 1.0, 'to': 1.0, 'was': 1.0, 'very': 1.0}
Word element => {'size': 1.0, 'right': 1.0, 'clean': 1.0, 'to': 2.0, 'a': 1.0, 'use': 1.0, 'nights': 1.0, 'every': 1.0, 'for': 2.0, 'hours': 1.0, 'easy': 2.0, 'bottles': 1.0, 'three': 1.0, 'and': 2.0, 'our': 1.0, 'both': 1.0, 'used': 1.0, 'avent': 1.0, 'kids': 1.0, 'newborn': 1.0, 've': 1.0, 'with': 1.0, 'this': 1.0, 'of': 1.0, 'up': 1.0, '6': 1.0, 'thing': 1.0, 'pack': 1.0, 'we': 1.0, 'those': 1.0, 'is': 1.0, 'just': 2.0, 'the': 2.0}
Word element => {'but': 1.0, 'cost': 1.0, 'would': 1.0, 'dont': 1.0, 'those': 1.0, 'less': 1.0, 'goodness': 1.0, 'so': 1.0, 'playtex': 1.0, 'here': 1.0, 'brands': 1.0, 'before': 1.0, 'cheap': 1.0, 'i': 3.0, 'baby': 1.0, 'price': 1.0, 'and': 3.0, 'breast': 1.0, 'good': 1.0, 'quite': 1.0, 'nice': 1.0, 'expect': 1.0, 'at': 1.0, 'is': 1.0, 'really': 1.0, 'a': 2.0, 'them': 2.0, 'than': 1.0, 'go': 2.0, 'are': 1.0, 'my': 1.0, 'bottles': 2.0, 'feel': 1.0, 'got': 1.0, 'more': 1.0, 'great': 1.0, 'these': 2.0, 'bought': 1.0, 'with': 1.0, 'to': 3.0, 'now': 1.0, 'they': 1.0, 'thank': 1.0, 'pump': 1.0, 'few': 1.0}
Word element => {'cuddle': 1.0, 'adult': 1.0, 'and': 2.0, 'an': 1.0, 'quality': 1.0, 'highly': 1.0, 'sized': 1.0, 'find': 1.0, 'actually': 1.0, 's': 1.0, 'days': 1.0, 'well': 1.0, 'a': 2.0, 'bear': 1.0, 'or': 1.0, 'good': 2.0, 'hard': 1.0, 'he': 1.0, 'really': 1.0, 'is': 1.0, 'these': 1.0, 'great': 1.0, 'to': 2.0, 'huggable': 1.0, 'for': 1.0, 'child': 1.0}
Word element => {'recommend': 1.0, 'girlfriend': 1.0, 'soft': 1.0, 'makes': 1.0, 'which': 1.0, 'd': 1.0, '34': 1.0, 'of': 1.0, 'i': 3.0, '4': 1.0, 'nice': 1.0, '1': 1.0, 'and': 1.0, 'material': 1.0, 'plush': 1.0, 'be': 1.0, 'the': 1.0, 'it': 7.0, 'is': 3.0, 'case': 1.0, 'crafted': 1.0, 'guess': 1.0, 'quite': 2.0, 'mostly': 1.0, 'kind': 1.0, 'seems': 1.0, 'in': 1.0, 'about': 1.0, 'appeared': 1.0, 'baby': 1.0, 'hidden': 1.0, 'tight': 1.0, 'given': 1.0, 'taller': 1.0, 'mine': 1.0, 'well': 1.0, 'expected': 1.0, 'bit': 1.0, 'to': 3.0, 'very': 1.0, 'little': 1.0, 'probably': 1.0, 'pile': 1.0, 'but': 1.0, 'still': 1.0, 'a': 3.0, 's': 1.0, 'shorter': 1.0, 'were': 1.0, 'went': 1.0}
Word element => {'key': 1.0, 'is': 1.0, 'out': 1.0, 'positions': 1.0, 'different': 1.0, 'comfy': 1.0, 'and': 1.0, 'baby': 2.0, 'iove': 1.0, 'that': 1.0, 'you': 1.0, 'my': 1.0, 'the': 1.0, 'can': 1.0, '4': 1.0, 'face': 1.0, 'put': 1.0, 'for': 1.0, 'in': 1.0}
Word element => {'taking': 1.0, 'using': 1.0, 'peace': 1.0, 'offer': 1.0, 'whatever': 1.0, 'very': 1.0, 'million': 1.0, 'when': 1.0, 'understand': 2.0, 'are': 3.0, 'include': 1.0, 'least': 1.0, 'mind': 1.0, 'convoluted': 1.0, 'your': 3.0, 'on': 1.0, 'a': 5.0, 'we': 4.0, 's': 1.0, 'go': 1.0, 'get': 3.0, 'intuitive': 1.0, 'main': 1.0, 'bjorn': 2.0, 'beco': 1.0, 'have': 5.0, 'to': 12.0, 'our': 1.0, 'in': 2.0, 'unclear': 1.0, 'do': 1.0, 'general': 1.0, 'extremely': 1.0, 'instructions': 4.0, 'but': 1.0, 'mode': 1.0, 'adventure': 1.0, 'this': 3.0, 'child': 3.0, 'outgrowing': 1.0, 'things': 1.0, 'you': 5.0, 'choice': 1.0, 'my': 1.0, 'replace': 1.0, 'clearly': 1.0, 'advantage': 1.0, 'sleep': 1.0, 'back': 2.0, 'carrier': 1.0, 'was': 1.0, 'purchased': 1.0, 'with': 3.0, 'hip': 1.0, 'which': 1.0, 'of': 1.0, 'the': 12.0, 'device': 2.0, 'important': 1.0, 'design': 2.0, 'at': 2.0, 'look': 1.0, 'is': 6.0, 'replaced': 1.0, 'say': 1.0, 'and': 8.0, 'tires': 1.0, 'thrilled': 1.0, 'that': 9.0, 'although': 1.0, 'backwards': 1.0, 'into': 1.0, 'were': 2.0, 'so': 2.0, 'easy': 3.0, 'found': 1.0, 'however': 1.0, 'not': 3.0, 'forward': 1.0, 'or': 2.0, 'let': 1.0, 'does': 1.0, 'risks': 1.0, 'wifes': 1.0, 'allow': 1.0, 'for': 3.0, 'where': 1.0, 'alone': 1.0, 'boasts': 1.0, 'baby': 5.0, 'many': 1.0, 'carrying': 1.0, 'pack': 1.0, 'its': 1.0, 'problen': 1.0, 'guessing': 1.0, 'has': 1.0, 'buy': 1.0, 'straps': 1.0, 'return': 1.0, 'fail': 1.0, 'ergo': 2.0, 'illustrate': 1.0, 'they': 2.0, 'other': 1.0, 'all': 1.0, 'an': 2.0, 'own': 1.0, 'finally': 1.0, 'it': 4.0, 'him': 1.0, 'use': 1.0, 'her': 1.0, 'there': 1.0, 'instead': 1.0, 'correctly': 2.0, 'decided': 1.0, 'unit': 1.0, 'i': 1.0, 'also': 1.0, 'little': 2.0}
Word element => {'haha': 1.0, 'myself': 1.0, 'kept': 1.0, 'would': 1.0, 'self': 1.0, 'have': 2.0, 'that': 1.0, 'gift': 1.0, 'babywearer': 1.0, 'bought': 1.0, 'as': 1.0, 'a': 3.0, 'control': 1.0, 'the': 1.0, 'an': 1.0, 'for': 2.0, 'lucky': 1.0, 'am': 1.0, 'i': 5.0, 'friend': 1.0, 'new': 1.0, 'who': 1.0, 'is': 1.0, 'mom': 1.0, 'avid': 1.0, 'she': 2.0, 'or': 1.0, 'good': 1.0, 'hope': 1.0, 'loves': 1.0, 'it': 2.0, 's': 1.0}
Word element => {'better': 1.0, 'if': 1.0, 'little': 1.0, 'than': 1.0, 'carrying': 1.0, 'higher': 1.0, 'boasts': 1.0, 'given': 1.0, '21': 1.0, 'hurting': 1.0, 'lower': 1.0, 'seriously': 1.0, 'say': 1.0, 'hour': 1.0, 'over': 1.0, 'weight': 1.0, 'wore': 1.0, 'lastly': 1.0, 'day': 1.0, 'short': 1.0, 'percentile': 1.0, 'slightly': 1.0, 'face': 1.0, 'but': 2.0, 'can': 1.0, 'so': 2.0, 'probably': 1.0, 'chewed': 1.0, 'simply': 2.0, 'mouth': 1.0, 'lbs': 1.0, 'was': 4.0, 'as': 1.0, 'front': 1.0, 'folded': 1.0, 'correctly': 1.0, 'why': 1.0, 'just': 1.0, 'a': 5.0, 'going': 2.0, 'fit': 1.0, 'belt': 1.0, 't': 4.0, 'm': 1.0, 'in': 2.0, 'time': 2.0, 'periods': 1.0, 'extended': 1.0, 'me': 1.0, 'my': 3.0, 'for': 3.0, 'actually': 1.0, 'baby': 3.0, 'disappointed': 1.0, 'how': 1.0, 'love': 1.0, 'he': 7.0, '6': 2.0, 'comment': 1.0, 'like': 1.0, 'sad': 1.0, 'add': 1.0, 'hand': 2.0, 'had': 1.0, 'height': 2.0, 'son': 2.0, 'obscured': 1.0, 'loves': 1.0, 'difficult': 1.0, 'on': 4.0, 'month': 1.0, 'it': 6.0, 'him': 2.0, 'carrier': 2.0, 'few': 1.0, 'this': 3.0, 'beco': 1.0, 'have': 2.0, 'at': 2.0, 'is': 6.0, 'mind': 1.0, 'kicking': 1.0, 'people': 2.0, '92': 1.0, 'buckle': 2.0, 'safe': 1.0, 'bothered': 1.0, 'are': 2.0, 'lock': 1.0, 'when': 1.0, 'am': 3.0, 'because': 1.0, 'that': 6.0, 'easily': 1.0, 'really': 1.0, 'quiet': 2.0, 'there': 1.0, 'the': 11.0, 'of': 1.0, 'play': 1.0, 'about': 1.0, 'smiling': 1.0, 'lumbar': 1.0, 'and': 7.0, 'commenting': 1.0, 'much': 1.0, 'put': 1.0, 'do': 2.0, 'old': 1.0, 'most': 1.0, 'back': 1.0, 'locking': 2.0, 'i': 14.0, 'watching': 1.0, 'everything': 1.0, 'find': 1.0, 'to': 7.0, 'waist': 1.0, 'months': 1.0, 'get': 3.0, 'single': 1.0, 'very': 1.0, 's': 1.0, 'maybe': 1.0, 'handedly': 1.0, 'now': 1.0, 'panel': 1.0, 'didn': 2.0, 'safety': 1.0, 'out': 1.0, 'understand': 1.0, 'facing': 2.0, 'while': 1.0, 'instructions': 1.0, 'things': 1.0, 'able': 2.0, 'see': 1.0, 'dislike': 1.0, 'off': 1.0, 'issue': 1.0, 'with': 3.0, 'don': 1.0, 'buckles': 1.0, 'undo': 2.0, 'shoulder': 1.0, 'not': 2.0, 'try': 1.0, 'one': 1.0, 'an': 1.0, 'all': 1.0, 'other': 2.0, 'down': 2.0, 'after': 1.0, 'somewhere': 1.0, 'then': 1.0, 'outwards': 1.0, 'around': 1.0, 'his': 2.0, 'should': 1.0, 'chin': 1.0, 'above': 1.0}
Word element => {'airport': 1.0, 'well': 1.0, 'really': 1.0, 'worked': 1.0, 'also': 1.0, 'were': 2.0, 'long': 1.0, 'depending': 1.0, 'back': 1.0, 'or': 1.0, 'being': 1.0, 'while': 2.0, 'loved': 1.0, 'short': 1.0, 'little': 1.0, 'use': 1.0, 'front': 1.0, 'of': 2.0, 'always': 1.0, 'how': 1.0, 'he': 2.0, 'it': 3.0, 'and': 4.0, 'for': 1.0, 'liked': 1.0, 'though': 1.0, 'in': 2.0, 'having': 1.0, 'i': 3.0, 'six': 1.0, 'started': 1.0, 'my': 3.0, 'was': 3.0, 'to': 4.0, 'look': 1.0, 'walking': 1.0, 'carry': 1.0, 'months': 1.0, 'put': 1.0, 'on': 3.0, 'able': 2.0, 'be': 1.0, 'putting': 1.0, 'him': 3.0, 'terminals': 1.0, 'going': 1.0, 'we': 2.0, 'a': 1.0, 'walks': 1.0, 'an': 1.0, 'around': 2.0, 'town': 1.0, 'son': 1.0, 'still': 1.0, 'the': 3.0, 'hands': 1.0, 'inquisitive': 1.0, 'freedom': 1.0, 'child': 1.0, 'out': 3.0, 'at': 2.0, 'who': 1.0, 'face': 1.0, 'explore': 1.0}
Word element => {'have': 1.0, 'on': 1.0, 'spent': 1.0, 'really': 1.0, 'happy': 1.0, 'be': 1.0, 'will': 1.0, 'see': 1.0, 'you': 3.0, 'instructions': 1.0, 'quality': 1.0, 'videos': 1.0, 'youtube': 1.0, 'up': 1.0, 'look': 1.0, 'want': 1.0, 'if': 1.0, 'in': 1.0, 'breastfeed': 1.0, 'our': 1.0, 'to': 1.0, 'mei': 1.0, 'money': 1.0, 'can': 1.0, 'i': 2.0, 'there': 1.0, 'fabric': 1.0, 'her': 3.0, 'even': 1.0, 'works': 1.0, 'wearing': 1.0, 'so': 1.0, 'read': 1.0, 'detachable': 1.0, 'because': 1.0, 'was': 1.0, 'foot': 1.0, 'take': 1.0, 'she': 2.0, 'it': 7.0, 'with': 1.0, 'hadn': 1.0, 'carrier': 2.0, 'has': 2.0, 'brace': 1.0, 'wrap': 1.0, 'the': 4.0, 'my': 1.0, 'bought': 1.0, 'one': 1.0, 'daughter': 1.0, 'tei': 1.0, 'ordered': 1.0, 'who': 1.0, 'other': 1.0, 'club': 1.0, 'wish': 1.0, 'this': 2.0, 'soft': 1.0, 't': 1.0, 'we': 5.0, 'a': 2.0, 'excellent': 1.0, 'had': 1.0, 'bar': 1.0, 'dobbs': 1.0, 'position': 1.0, 'would': 1.0, 'for': 2.0, 'fit': 1.0, 'and': 3.0, 'that': 1.0, 'loves': 2.0, 'been': 1.0, 'once': 2.0, 'daddy': 1.0, 'of': 1.0, 'is': 1.0, 'or': 1.0, 'everywhere': 1.0, 'buckles': 1.0, 'both': 1.0, 'best': 1.0}
Word element => {'one': 1.0, 'this': 1.0, 'got': 1.0, 'happy': 1.0, 'of': 1.0, 'old': 1.0, 'or': 1.0, 'on': 1.0, 'put': 1.0, '3': 1.0, 'lot': 1.0, 'at': 1.0, 'easy': 2.0, 'they': 1.0, 'insert': 1.0, 'are': 1.0, 'the': 2.0, 't': 1.0, 'a': 3.0, 'am': 1.0, 'when': 1.0, '4': 1.0, 'i': 6.0, 'can': 1.0, 'love': 1.0, 'beco': 1.0, 'my': 1.0, 'highly': 2.0, 'baby': 1.0, 'about': 1.0, 'need': 1.0, 'and': 5.0, 'to': 3.0, 'had': 1.0, 'recommend': 1.0, 'doesn': 1.0, 'was': 1.0, 'so': 3.0, 'wear': 1.0, 'looked': 1.0, 'wearing': 1.0, 'use': 1.0, 'not': 1.0, 'carriers': 1.0, 'good': 1.0, 'enough': 1.0, 'section': 1.0, 'things': 1.0, 'c': 1.0, 'it': 2.0, 'he': 2.0, 'weeks': 1.0, 'now': 1.0, 'older': 1.0, 'into': 1.0, 'loves': 1.0, 'that': 1.0, 'around': 1.0, 'say': 1.0, 'is': 1.0, 'him': 2.0, 'newborn': 1.0, 'out': 1.0, 'able': 1.0, 'start': 1.0, 'comfortably': 1.0}
Word element => {'know': 1.0, 'like': 1.0, 'low': 1.0, 'sat': 1.0, 'and': 1.0, 'couldn': 1.0, 'was': 1.0, 'too': 1.0, 'way': 1.0, 'don': 1.0, 'baby': 1.0, 'the': 2.0, 't': 2.0, 'maybe': 1.0, 'breath': 1.0, 'a': 1.0, 'snaps': 1.0, 'also': 1.0, 'fluke': 1.0, 'looked': 1.0, 'he': 1.0, 'it': 1.0, 'with': 1.0, 'but': 1.0, 'i': 1.0}
Word element => {'out': 1.0, 'ones': 1.0, 'falls': 1.0, 'have': 1.0, 'finding': 1.0, 'important': 1.0, 'would': 1.0, 'something': 1.0, 'was': 1.0, '6': 1.0, 'at': 1.0, 'who': 1.0, 'head': 1.0, 'husband': 1.0, '5': 2.0, 'when': 2.0, 'am': 1.0, 'both': 1.0, 'compatible': 1.0, 'because': 1.0, 'bought': 1.0, 'content': 1.0, 'me': 2.0, 'and': 3.0, 'down': 1.0, 'long': 1.0, 'she': 1.0, 'it': 4.0, 'while': 1.0, 'period': 1.0, 'given': 2.0, '1': 1.0, 'comfortable': 1.0, 'stars': 1.0, 'love': 1.0, 'for': 1.0, 'were': 1.0, 's': 1.0, 'a': 2.0, 'we': 1.0, 'i': 6.0, 'old': 1.0, 'after': 1.0, 'carriers': 1.0, 'got': 1.0, 'reviews': 1.0, 'which': 1.0, 'hand': 1.0, 'wear': 1.0, 'better': 1.0, 'looking': 1.0, 'but': 1.0, '2': 1.0, 'can': 1.0, 'asleep': 1.0, 'the': 6.0, 'without': 1.0, 'side': 1.0, '7': 1.0, 'many': 1.0, 'more': 2.0, 'is': 3.0, 'through': 1.0, 'in': 1.0, 'bjorn': 2.0, 'baby': 2.0, 'to': 1.0, 'any': 1.0, 'slips': 1.0, 'of': 2.0, 'much': 1.0, 'no': 1.0, 'little': 1.0, 'very': 1.0, 'so': 1.0, 'time': 2.0, 'carrier': 2.0, 'back': 1.0, 'week': 1.0, 'perfect': 1.0, 'pain': 1.0, 'gemini': 3.0, 'my': 3.0, 'fits': 1.0, 'also': 1.0, 'seems': 1.0}
Word element => {'7': 1.0, '5': 2.0, 'height': 1.0, 'about': 1.0, '34': 2.0, 'age': 1.0, 'her': 1.0, 'petite': 1.0, 'old': 1.0, 'four': 1.0, 'daughter': 1.0, 'weight': 1.0, 'stats': 1.0, 'and': 12.0, 'gemini': 1.0, 'back': 1.0, 'carrier': 2.0, 'but': 2.0, 'work': 1.0, 'we': 3.0, 'ordered': 2.0, 'am': 1.0, 'tei': 1.0, 'worn': 1.0, 'a': 8.0, 'confident': 1.0, 'can': 1.0, 'so': 4.0, 'roughly': 1.0, 'time': 2.0, 'been': 2.0, 'pricey': 1.0, 'they': 1.0, 'is': 3.0, 'myself': 1.0, '1': 1.0, 'since': 2.0, 'feel': 1.0, 'sort': 1.0, 'great': 2.0, 'strongly': 1.0, 'on': 3.0, 'months': 2.0, 'inherited': 1.0, 'lot': 2.0, 'one': 1.0, 'uncomfortable': 1.0, 'few': 1.0, 'by': 1.0, 'bjorn': 1.0, 'in': 3.0, 'baby': 5.0, 'relatively': 1.0, 'nice': 1.0, 'little': 2.0, 'are': 1.0, 'bad': 1.0, 'practice': 1.0, 'beco': 1.0, 'have': 3.0, 'for': 5.0, 'product': 1.0, 'best': 1.0, 'half': 1.0, 'both': 1.0, 'mirror': 1.0, 'i': 6.0, 'buy': 2.0, 'looking': 1.0, 'research': 2.0, 'adjusts': 1.0, 'it': 3.0, 'my': 6.0, 'looks': 1.0, 'average': 1.0, 'nerve': 1.0, 'wracking': 1.0, 'was': 1.0, 'doesn': 2.0, 'recommend': 1.0, 'wanted': 1.0, 'pretty': 1.0, 'to': 3.0, 'as': 1.0, 'the': 5.0, 'doing': 1.0, 'of': 3.0, 'us': 2.0, 'also': 1.0, 'fits': 1.0, 'an': 1.0, 'infantino': 1.0, 'like': 2.0, 'husband': 3.0, 'really': 2.0, 't': 2.0, 'likes': 1.0, 'comfortably': 1.0, 'face': 1.0, 'practicing': 1.0, 'out': 1.0, 'has': 1.0, 'always': 1.0, 'after': 2.0, 'far': 2.0, 'arrived': 1.0, 'mei': 1.0, 'advertized': 1.0, 'that': 4.0, 'easily': 1.0, 'you': 1.0, 'front': 1.0, 'see': 1.0, 'our': 1.0, 'how': 1.0}
Word element => {'mom': 1.0, 'have': 1.0, 'must': 1.0, 'glad': 1.0, 'm': 1.0, 'one': 1.0, 'of': 1.0, 'reading': 1.0, 'chose': 1.0, 'after': 1.0, 'quickly': 1.0, 'reviews': 1.0, 'they': 1.0, 'little': 1.0, 'very': 1.0, 'when': 1.0, 'used': 1.0, 'my': 2.0, 'off': 1.0, 'loves': 1.0, 'and': 7.0, 'did': 1.0, 'getting': 1.0, 'probably': 1.0, 'any': 1.0, 'to': 1.0, 'get': 1.0, 'easy': 1.0, 'so': 3.0, 'got': 1.0, 'outgrew': 1.0, 'everywhere': 1.0, 'on': 1.0, 'kids': 1.0, 'this': 3.0, 'it': 5.0, 'mos': 1.0, 'he': 1.0, 'while': 1.0, 'looked': 1.0, 'i': 9.0, 'a': 4.0, 'go': 1.0, 'people': 1.0, 'son': 1.0, 'ask': 1.0, 'comfortable': 1.0, 'where': 2.0, 'for': 2.0, 'what': 1.0, 'being': 1.0, 'bjorn': 1.0, 'in': 1.0, '14': 1.0, 'usually': 1.0, 'the': 2.0, 'is': 6.0, 'more': 1.0, 'use': 2.0, 'wonderful': 1.0, 'front': 1.0, 'carry': 2.0, 'lot': 1.0, 'bigger': 1.0, 'who': 1.0, 'at': 1.0, 'but': 2.0, 'will': 1.0, 'carrier': 1.0, 'back': 1.0, 'hip': 1.0, 'carriers': 1.0}
Word element => {'isn': 1.0, 'sure': 1.0, 'be': 1.0, 'mortar': 1.0, 're': 1.0, 'retailer': 1.0, 'tear': 1.0, 'and': 2.0, 'better': 1.0, 'wear': 1.0, 'up': 1.0, 'will': 1.0, 'it': 2.0, 'of': 1.0, 'imagine': 1.0, 'if': 2.0, 'luck': 1.0, 'no': 1.0, 'problem': 1.0, 'carriers': 1.0, 'you': 3.0, 'buy': 2.0, 'sent': 1.0, 'with': 1.0, 'excited': 1.0, 'snaps': 2.0, 'first': 1.0, 'the': 6.0, 'now': 1.0, 'as': 1.0, 'to': 4.0, 'was': 1.0, 'hold': 1.0, 'solve': 1.0, 'have': 1.0, 'perhaps': 1.0, 'rave': 1.0, 'back': 1.0, 'friends': 1.0, 'reviews': 1.0, 'i': 4.0, 'only': 1.0, 'try': 1.0, 'broken': 4.0, 'would': 1.0, 'brick': 1.0, 'after': 1.0, 'gemini': 1.0, 'box': 1.0, 'that': 1.0, 'were': 1.0, 'hearing': 1.0, 'from': 2.0, 'product': 1.0, 'for': 1.0, 'one': 2.0, 'bottom': 1.0, '2': 1.0, 'but': 2.0, 'can': 3.0, 'how': 1.0, 'received': 1.0, 'adjust': 1.0, 'baby': 1.0, 'facing': 1.0, 'replacement': 1.0, 'out': 2.0, 'arrival': 1.0, 'versus': 1.0, 'arrives': 1.0, 'hoping': 1.0, 'beco': 1.0, 'in': 1.0, 'your': 1.0, 'on': 1.0, 't': 1.0, 's': 1.0, 'going': 1.0, 'a': 2.0}
Word element => {'around': 1.0, 'happy': 1.0, 'old': 1.0, 'very': 1.0, 'year': 1.0, 'for': 1.0, 'one': 1.0, 'comfortable': 1.0, 'and': 2.0, 'in': 2.0, 'facing': 2.0, 'chores': 1.0, 'on': 1.0, 'we': 2.0, 'carriers': 1.0, 'of': 2.0, 'useful': 1.0, 'short': 1.0, 'be': 1.0, 'have': 1.0, 'all': 1.0, 'worn': 2.0, 'use': 1.0, 'purchased': 1.0, 'most': 1.0, 'our': 1.0, 'that': 1.0, 'the': 4.0, 'side': 1.0, 'is': 3.0, 'this': 1.0, 'it': 4.0, 'can': 1.0, 'easily': 1.0, 'by': 1.0, 'front': 1.0, 'a': 2.0, 'tall': 1.0, 'house': 1.0, 'forward': 1.0, 'back': 1.0, 'man': 1.0, 'mostly': 1.0, 'or': 5.0, 'hiking': 1.0, 'woman': 1.0}
Word element => {'but': 1.0, 'know': 1.0, 'let': 1.0, 'out': 1.0, 'update': 1.0, 'old': 1.0, '7': 1.0, 'son': 1.0, 'from': 1.0, 'achy': 1.0, 'just': 1.0, 'if': 2.0, 'see': 1.0, 'im': 1.0, 'will': 2.0, 'event': 1.0, 'an': 1.0, 'in': 1.0, 'maybe': 1.0, 'having': 1.0, 'got': 1.0, 'purchased': 1.0, 'it': 5.0, 'research': 2.0, 'now': 1.0, 'mail': 1.0, 'weeks': 2.0, 'avoid': 1.0, 'my': 2.0, 'the': 2.0, 'you': 1.0, '11': 1.0, 'soon': 1.0, 'and': 5.0, 'i': 11.0, 'reasoning': 1.0, 'of': 2.0, 'after': 2.0, 'between': 1.0, 'so': 2.0, 'was': 3.0, 'wanted': 1.0, 'all': 2.0, 'sleep': 1.0, 'as': 3.0, 'to': 5.0, 'return': 1.0, 'toying': 1.0, 'at': 1.0, 'crys': 1.0, 'today': 1.0, 'whole': 1.0, 'about': 1.0, 'doing': 2.0, 'this': 2.0, '30': 1.0, 'min': 1.0, 'night': 1.0, 'tired': 1.0, 'started': 1.0, 'deprivation': 1.0, 'put': 1.0, 'on': 2.0, 'backpain': 2.0, 'for': 1.0, 'try': 2.0, 'much': 1.0, 'is': 1.0, 'plan': 3.0, 'going': 1.0, 'a': 1.0, 'give': 1.0, 'ergo': 1.0, '2013': 1.0, 'friday': 1.0, '27': 1.0}
Word element => {'bjorns': 1.0, 'with': 1.0, 'too': 1.0, 'just': 1.0, 'my': 1.0, 'small': 1.0, 'are': 1.0, 'of': 1.0, 'they': 1.0, 'our': 1.0, 'both': 1.0, 'will': 2.0, 'twins': 1.0, 'stick': 1.0, '9': 1.0, 'this': 1.0, 'fit': 1.0, 'neither': 1.0, '11lbs': 1.0, 'pity': 1.0, 'in': 1.0}
Word element => {'asleep': 1.0, 'she': 1.0, 'every': 1.0, 'falls': 1.0, 'my': 1.0, 'for': 1.0, 'we': 1.0, 'away': 1.0, 'this': 1.0, 'time': 1.0, 'is': 1.0, 'i': 1.0, 'it': 2.0, 'comfortable': 1.0, 'use': 2.0, 'very': 1.0, 'and': 1.0, 'was': 1.0, 'able': 1.0, 'newborn': 1.0, 'right': 1.0, 'to': 1.0}
Word element => {'tasks': 1.0, 'other': 1.0, 'accomplish': 1.0, 'use': 1.0, 'to': 2.0, 'able': 1.0, 'still': 1.0, 'who': 1.0, 'new': 2.0, 'a': 1.0, 'is': 2.0, 'for': 1.0, 'carrier': 1.0, 'sister': 1.0, 'this': 1.0, 'grandchild': 1.0, 'my': 1.0, 'the': 1.0, 'i': 1.0, 'enjoy': 1.0, 'hands': 1.0, 'she': 2.0, 'tells': 1.0, 'her': 1.0, 'grandma': 1.0, 'both': 2.0, 'that': 2.0, 'be': 1.0, 'bought': 1.0, 'product': 1.0, 'me': 1.0, 'and': 2.0, 'wonderful': 1.0, 'can': 1.0}
Word element => {'grows': 1.0, 'get': 1.0, 'glad': 1.0, 'his': 1.0, 'using': 1.0, 'myself': 1.0, 'own': 1.0, 'until': 1.0, 'see': 1.0, 'an': 1.0, 'secure': 1.0, 'back': 1.0, 'stripes': 1.0, 'shoulder': 1.0, 'youtube': 1.0, '3': 1.0, 'much': 1.0, 'works': 2.0, 'at': 4.0, 'is': 5.0, 'more': 1.0, 'but': 1.0, 'can': 4.0, 'so': 6.0, 'bigger': 1.0, 'still': 2.0, 'surrounding': 1.0, 'of': 2.0, 'the': 9.0, 'and': 5.0, 'baby': 8.0, 'started': 1.0, 'now': 3.0, 'purpose': 1.0, 'to': 2.0, 'which': 1.0, 'balboa': 1.0, 'better': 2.0, 'puts': 1.0, 'has': 1.0, 'a': 4.0, 'go': 2.0, 'lot': 1.0, 'too': 1.0, 'one': 1.0, 'for': 4.0, 'when': 3.0, 'well': 3.0, 'i': 13.0, '10lbs': 1.0, 'need': 1.0, 'or': 2.0, 'neck': 1.0, 'car': 1.0, 'support': 1.0, 'carrying': 1.0, 'use': 2.0, 'facing': 2.0, 'while': 2.0, 'nursing': 1.0, 'pressure': 1.0, 'weight': 1.0, 'out': 5.0, 'some': 1.0, 'shoulders': 1.0, 'love': 1.0, 'he': 4.0, 'this': 1.0, 'am': 2.0, 'eating': 1.0, 'with': 2.0, 'gemini': 1.0, 'control': 1.0, 'cross': 1.0, 'something': 1.0, 'would': 1.0, 'else': 1.0, '2': 1.0, 'trick': 1.0, 'distribute': 1.0, 'friend': 1.0, 'provide': 1.0, 'take': 1.0, '13lbs': 1.0, 'on': 3.0, 'long': 1.0, 'shopping': 1.0, 'stroller': 1.0, 'that': 3.0, 'combination': 1.0, 'just': 1.0, 'as': 1.0, 'heavy': 1.0, 'my': 10.0, 'me': 2.0, 'walk': 2.0, 'about': 1.0, 'hanging': 1.0, 'alone': 1.0, 'have': 3.0, 'beco': 1.0, 'seat': 1.0, 'in': 2.0, 'sling': 3.0, 'carrier': 2.0, 'check': 1.0, 'really': 1.0, 'month': 2.0, 'old': 2.0, 'it': 2.0, 'already': 1.0, 'him': 2.0, 'infant': 1.0, 'chest': 1.0, 'alert': 1.0, 'restaurant': 1.0, 'learned': 1.0}
Word element => {'does': 1.0, 'sleepy': 1.0, 'alone': 1.0, 'unless': 1.0, 'so': 1.0, 'feels': 1.0, 'face': 1.0, 'infant': 1.0, 'fact': 1.0, 'gemini': 1.0, 'because': 1.0, 'that': 2.0, 'for': 1.0, 's': 1.0, 't': 1.0, 'a': 2.0, 'point': 1.0, 'only': 2.0, 'this': 3.0, 'love': 1.0, 'he': 1.0, 'not': 2.0, 'my': 4.0, 'me': 1.0, 'just': 1.0, 'didn': 1.0, 'to': 4.0, 'when': 1.0, 'sit': 1.0, 'than': 1.0, 'way': 1.0, 'bakc': 1.0, 'and': 7.0, 'time': 2.0, 'main': 1.0, 'is': 4.0, 'on': 2.0, 'much': 1.0, 'put': 1.0, 'carrier': 2.0, 'back': 2.0, 'which': 1.0, 'tried': 1.0, 'well': 1.0, 'i': 4.0, 'torn': 1.0, 'issue': 1.0, 'selling': 1.0, 'one': 1.0, 'had': 1.0, 'was': 2.0, 'between': 1.0, 'order': 1.0, 'while': 1.0, 'wearing': 1.0, 'their': 1.0, 'better': 1.0, 'legs': 1.0, 'hips': 1.0, 'proper': 1.0, 'over': 1.0, 'difficult': 1.0, 'position': 1.0, 'ergo': 1.0, 'criss': 1.0, 'super': 1.0, 'instead': 1.0, 'doing': 1.0, 'the': 14.0, 'of': 1.0, 'dangle': 1.0, 'easy': 1.0, 'wants': 2.0, 'straps': 1.0, 'something': 1.0, 'cross': 1.0, 'others': 1.0, 'all': 1.0, 'ever': 1.0, 'keep': 1.0, 'did': 1.0, 'shoulders': 1.0, 'never': 1.0, 'hurts': 1.0, 'carry': 1.0, 'in': 2.0, 'm': 1.0, 'it': 2.0, 'if': 1.0, 'beco': 1.0, 'have': 1.0, 'sweat': 1.0, 'shirt': 2.0, 'world': 1.0, 'or': 1.0, 'very': 1.0, 'twist': 1.0, 'but': 1.0, 'big': 1.0}
Word element => {'shape': 1.0, 'depends': 1.0, 'happy': 1.0, 'over': 1.0, 'also': 1.0, 'body': 1.0, 'like': 1.0, 'opposed': 1.0, 'on': 2.0, 'pull': 1.0, 'returned': 1.0, 'straps': 1.0, 'are': 1.0, 'there': 1.0, 'symmetrically': 1.0, 'so': 1.0, 'under': 1.0, '5': 2.0, '6': 1.0, 'of': 2.0, 'kids': 1.0, 'just': 1.0, 'life': 1.0, 'another': 1.0, 'my': 2.0, 'reaching': 1.0, 'and': 4.0, 'gotten': 1.0, 'me': 1.0, 'two': 1.0, 'i': 7.0, 'as': 1.0, 'to': 2.0, 'waist': 1.0, 'an': 1.0, 'but': 1.0, 'bought': 1.0, 'one': 1.0, 'uncomfortable': 1.0, 'the': 7.0, 'have': 2.0, 'back': 1.0, 'carrier': 1.0, 'shoulders': 1.0, 'last': 1.0, 'lot': 1.0, 'in': 1.0, 'beco': 1.0, 'm': 1.0, 'd': 2.0, 'years': 1.0, 'baby': 1.0, 'it': 8.0, 'band': 1.0, 's': 3.0, 't': 1.0, 'a': 1.0, 'has': 1.0, 'ergo': 3.0, 'well': 1.0, 'use': 1.0, 'end': 1.0, 'try': 1.0, 'super': 1.0, 'new': 1.0, 'for': 2.0, 'fit': 2.0, 'especially': 1.0, 'had': 1.0, 'thought': 1.0, 'didnt': 1.0, 'really': 1.0, 'say': 1.0, 'is': 1.0, 'doesnt': 1.0, 'right': 1.0, 'isn': 1.0, 'buckled': 1.0}
Word element => {'engage': 1.0, 'close': 1.0, 'insert': 1.0, 'careful': 1.0, 'be': 1.0, 'must': 1.0, 'you': 1.0, 'did': 1.0, 'baby': 1.0, 'easier': 1.0, 'anymore': 1.0, 'safety': 2.0, 'don': 1.0, 'outward': 1.0, 'but': 1.0, 'enjoys': 1.0, 'mind': 1.0, 'both': 1.0, 'comfortable': 1.0, 'find': 1.0, 'monthsnow': 1.0, 'discovered': 1.0, 'review': 1.0, 'revised': 1.0, 'newborn': 1.0, 'definitely': 1.0, 'out': 1.0, 'when': 1.0, 'support': 1.0, 'again': 1.0, 'try': 1.0, 'will': 2.0, 'up': 1.0, 'wake': 1.0, 'likes': 1.0, 't': 2.0, 'didn': 1.0, 'min': 1.0, 'for': 2.0, 'been': 1.0, 'grace': 1.0, 'saving': 1.0, 'instructions': 1.0, 'has': 2.0, 'tip': 1.0, 'top': 3.0, 'carrier': 3.0, 'down': 2.0, 'even': 3.0, 'steps': 1.0, 'got': 1.0, 'inches': 1.0, 'folded': 1.0, 'times': 1.0, '23': 1.0, 'get': 1.0, 'trouble': 1.0, 'months': 1.0, 'back': 1.0, 'sleep': 1.0, 'to': 6.0, 'an': 1.0, 'all': 1.0, 'facing': 1.0, 'while': 2.0, 'from': 2.0, 'me': 1.0, 'my': 5.0, 'just': 1.0, 'and': 7.0, 'getting': 1.0, 'control': 1.0, 'marks': 1.0, 'allows': 1.0, 'with': 3.0, 'red': 1.0, 'yet': 1.0, 'he': 6.0, 'adjust': 2.0, '9': 2.0, 'him': 1.0, 'it': 9.0, 'as': 1.0, 'crazy': 1.0, 'was': 1.0, 'son': 3.0, 'under': 1.0, 'of': 5.0, 'the': 20.0, '2': 1.0, 'screamed': 1.0, 'like': 3.0, 'finally': 1.0, 'lower': 1.0, 'notice': 1.0, 'handle': 1.0, 'is': 8.0, 'at': 2.0, 'because': 1.0, '20': 1.0, 'that': 3.0, 'deep': 1.0, 'head': 2.0, '5': 3.0, 'pounds': 1.0, 'i': 10.0, 'hard': 1.0, 'over': 2.0, 'long': 1.0, 'on': 5.0, 'old': 1.0, 'unfastening': 1.0, 'his': 4.0, 'very': 1.0, 'leaving': 1.0, 'dips': 1.0, 'only': 2.0, 'much': 2.0, 'do': 1.0, 'face': 2.0, 'also': 3.0, 'see': 1.0, 'seems': 1.0, 'barely': 1.0, 'wearable': 1.0, 'which': 1.0, 'side': 1.0, 'straps': 1.0, 'sides': 2.0, 'armpits': 1.0, 'big': 2.0, 'feel': 1.0, 'armsit': 1.0, 'clear': 1.0, 'if': 1.0, 'not': 5.0, 'had': 1.0, 'waistband': 2.0, 'a': 2.0, 'small': 2.0, 'backward': 1.0, 'enough': 4.0, 'front': 1.0, 'use': 1.0, 'weight': 2.0, 'in': 3.0, 'm': 1.0, 'sure': 1.0, 'older': 2.0, 'supposed': 1.0, 'few': 1.0, 'this': 1.0, 'some': 1.0, 'none': 1.0, 'shoulders': 1.0, 'can': 5.0, 'so': 1.0, 'clips': 4.0, 'first': 1.0, 'inward': 1.0, 'are': 1.0, 'each': 1.0, 'position': 2.0}
Word element => {'friends': 1.0, 'carriers': 1.0, 'on': 2.0, 'carried': 1.0, 'put': 1.0, 'except': 1.0, 'a': 3.0, 's': 1.0, 'did': 1.0, 'being': 2.0, 'out': 2.0, 'face': 1.0, 'like': 1.0, 'carry': 2.0, 'killing': 1.0, 'to': 6.0, 'was': 4.0, 'minutes': 1.0, 'crazy': 1.0, 'cotton': 1.0, 'be': 2.0, 'weight': 1.0, '95': 1.0, 'product': 1.0, 'back': 2.0, 'he': 4.0, 'how': 1.0, 'my': 5.0, 'gemini': 2.0, 'which': 1.0, 'made': 1.0, 'asleep': 1.0, 'arms': 1.0, 'and': 8.0, 'natural': 1.0, 'the': 5.0, 'of': 3.0, '3': 1.0, 'today': 1.0, 'no': 2.0, 'just': 1.0, '5': 1.0, 'i': 8.0, 'fact': 1.0, 'old': 1.0, 'ton': 1.0, 'height': 1.0, 'baby': 1.0, 'usa': 1.0, 'received': 1.0, 'also': 3.0, 'will': 1.0, 'in': 5.0, 'is': 4.0, 'month': 1.0, 'him': 2.0, 'it': 7.0, 'within': 1.0, 'fell': 1.0, 'exaclty': 1.0, 'amazing': 2.0, 'research': 1.0, 'highly': 1.0, 'this': 2.0, 'position': 1.0, 'never': 1.0, 'buy': 1.0, 'all': 1.0, 'ever': 1.0, 'am': 1.0, 'brainer': 1.0, 'over': 1.0, 'order': 1.0, 'loved': 1.0, 'strain': 1.0, 'boy': 1.0, 'would': 2.0, 'sooooo': 1.0, 'when': 1.0, 'what': 1.0, 'easy': 1.0, 'use': 2.0, 'facing': 1.0, 'soon': 1.0, 'there': 1.0, 'sitting': 1.0, 'swore': 1.0, 'so': 1.0, 'can': 1.0, 'organic': 1.0, '10': 1.0, 'for': 1.0, 'such': 1.0, 'now': 1.0, 'happy': 1.0, 'that': 1.0, 'recommending': 1.0, '34': 2.0, 'mommy': 2.0}
Word element => {'results': 1.0, 'inside': 1.0, 'place': 1.0, 'full': 1.0, 'and': 1.0, 'a': 1.0, 'baby': 1.0, 'to': 1.0, 'be': 1.0, 'easy': 1.0, 'them': 1.0, 'clean': 1.0, 'arrived': 1.0, 'perfect': 1.0, 'in': 1.0, 'your': 1.0, 'has': 1.0, 'time': 2.0, 'condition': 1.0, 'on': 2.0, 'were': 1.0, 'you': 1.0, 'follow': 1.0, 'sure': 1.0, 'carrier': 2.0, 'first': 1.0, 'belly': 1.0, 'shoulders': 1.0, 'only': 1.0, 'for': 1.0, 'directions': 1.0, 'comfortable': 1.0, 'my': 1.0, 'diaper': 1.0, 'the': 3.0, 'best': 1.0, 'very': 1.0, 'advise': 1.0, 'would': 1.0, 'making': 1.0}
Word element => {'wear': 1.0, 'to': 1.0, 'is': 1.0, 'by': 1.0, 'off': 1.0, 'taken': 1.0, 'and': 2.0, 'easily': 1.0, 'be': 1.0, 't': 1.0, 'need': 1.0, 'carrier': 1.0, 'security': 1.0, 'extended': 1.0, 'person': 1.0, 'neck': 1.0, 'put': 1.0, 'doesn': 1.0, 'a': 1.0, 'comfortable': 1.0, 'one': 1.0, 'for': 2.0, 'insert': 1.0, 'in': 1.0, 'needs': 1.0, 'all': 1.0, 'baby': 2.0, 'our': 1.0, 'different': 1.0, 'meets': 1.0, 'periods': 1.0, 'clasp': 1.0, 'infant': 1.0, 'can': 2.0, 'on': 1.0, '4': 1.0, 'positions': 1.0, 'carry': 1.0, 'at': 1.0}
Word element => {'him': 1.0, 'tried': 1.0, 've': 1.0, 'nothing': 1.0, 'liked': 1.0, 'or': 1.0, 'owl': 1.0, 'ordered': 1.0, 'have': 2.0, 'whether': 1.0, 'had': 1.0, 'i': 4.0, 'not': 1.0, 'cute': 1.0, 'us': 1.0, 'overall': 1.0, 'mom': 1.0, 'bjorn': 1.0, 'in': 2.0, 'seems': 1.0, 'also': 1.0, 'made': 1.0, 'another': 1.0, 'fits': 1.0, 'priceless': 1.0, 'should': 1.0, 'their': 1.0, 'drive': 1.0, 'this': 4.0, 'it': 3.0, 'first': 1.0, 'carrier': 3.0, 'tan': 1.0, 'baby': 3.0, 'like': 1.0, 'which': 1.0, 'dad': 1.0, 'best': 1.0, 'hesitation': 1.0, 'both': 1.0, 'say': 1.0, 'is': 5.0, 'comfortable': 1.0, 'unlike': 1.0, 'insanely': 1.0, 'our': 1.0, 'to': 5.0, 'developing': 1.0, 'doesn': 1.0, 'was': 1.0, 'k': 1.0, 'only': 2.0, 'much': 1.0, 'use': 1.0, 'tears': 1.0, 'easy': 1.0, 'pattern': 2.0, 'too': 2.0, 'and': 3.0, 't': 1.0, 's': 2.0, 'we': 2.0, 'does': 2.0, 'than': 1.0, 'ergo': 2.0, 'spines': 1.0, 'negative': 1.0, 'carriers': 1.0, 'about': 1.0, 'positions': 1.0, 'that': 4.0, 'babies': 1.0, 'part': 1.0, 'properly': 1.0, 'accommodate': 1.0, 'why': 1.0, 'cuter': 1.0, 'bought': 1.0, 'particular': 1.0, 'brand': 1.0, 'the': 6.0, 'place': 1.0}
Word element => {'whole': 1.0, 'in': 1.0, 'even': 1.0, 'resturant': 1.0, 'at': 1.0, 'during': 1.0, 'fall': 1.0, 'with': 1.0, 'eat': 1.0, 'out': 1.0, 'slept': 1.0, 'will': 1.0, 'also': 1.0, 'of': 1.0, 'care': 1.0, 'took': 1.0, 'far': 1.0, 'this': 4.0, 'first': 1.0, 'she': 1.0, 'it': 2.0, 'just': 1.0, 'meal': 1.0, 'by': 1.0, 'and': 1.0, 'too': 1.0, 'mom': 1.0, 'baby': 4.0, 'dog': 1.0, 'that': 2.0, 'for': 1.0, 'lunch': 1.0, 'like': 1.0, 'but': 1.0, 'work': 2.0, 'anytime': 1.0, 'take': 1.0, 'many': 1.0, 'any': 1.0, 'our': 1.0, 'prepare': 1.0, 'to': 7.0, 'was': 1.0, 'friends': 1.0, 'so': 1.0, 'time': 2.0, 'way': 1.0, 'i': 6.0, 'bought': 1.0, 'laundry': 1.0, 'best': 1.0, 'day': 1.0, 'use': 4.0, 'every': 1.0, 'a': 1.0, 'go': 1.0, 's': 1.0, 'we': 2.0, 'made': 1.0, 'girl': 1.0, 'almost': 2.0, 'walk': 1.0, 'grocery': 1.0, 'shop': 1.0, 'much': 1.0, 'do': 1.0, 'dishes': 1.0, 'stuff': 1.0, 'on': 1.0, 'need': 2.0, 'purchase': 1.0, 'my': 2.0, 'asleep': 1.0, 'the': 5.0, 'hands': 1.0}
Word element => {'one': 1.0, 'had': 1.0, 'surprisingly': 1.0, 'in': 1.0, 'straps': 1.0, 'stiffer': 1.0, 'slightly': 1.0, 'loves': 1.0, 'he': 1.0, 'which': 2.0, 'face': 1.0, 'guy': 1.0, 'construction': 1.0, 'little': 1.0, 'included': 1.0, 'many': 1.0, 'cross': 1.0, 'registered': 1.0, 'borrow': 1.0, 'so': 2.0, 'friends': 1.0, 'since': 1.0, 'surprised': 1.0, 'shoulder': 1.0, 'can': 2.0, 'but': 1.0, 'was': 1.0, 'now': 1.0, 'ergo': 3.0, 'my': 4.0, 'serious': 1.0, 'her': 3.0, 'baby': 1.0, 'friend': 2.0, 'for': 3.0, 'outwards': 1.0, 'comfortable': 2.0, 'is': 1.0, 'more': 1.0, 'of': 1.0, 'shower': 1.0, 'wish': 1.0, 'this': 1.0, 'with': 1.0, 'have': 2.0, '8': 1.0, 'the': 5.0, 'myself': 1.0, 'back': 1.0, 'carrier': 2.0, 'when': 1.0, 'i': 4.0, 'old': 1.0, 'got': 1.0, 'try': 1.0, 'and': 4.0, 'envy': 1.0, 'let': 1.0, 'it': 4.0, 'month': 1.0, 's': 2.0, 'just': 1.0, 'me': 1.0, 'not': 1.0, 'to': 1.0, 'as': 1.0, 'if': 1.0, 'than': 2.0}
Word element => {'great': 1.0, 'are': 1.0, 'the': 3.0, 'had': 1.0, 'flow': 1.0, 'that': 1.0, 'to': 1.0, 'our': 1.0, 'like': 1.0, 'pocket': 1.0, 'self': 1.0, 'some': 1.0, 'good': 1.0, 'it': 2.0, 'with': 1.0, 'this': 2.0, 'wish': 1.0, 'took': 1.0, 'old': 1.0, 'one': 1.0, 'for': 1.0, 'open': 1.0, 'sides': 1.0, 'is': 1.0, 'pretty': 1.0, 'you': 1.0, 'hour': 1.0, 'can': 1.0, 'get': 1.0, 'hike': 1.0, 'sure': 1.0, 'week': 1.0, 'i': 1.0, 'otherwise': 1.0, '4': 1.0, 'just': 1.0, 'by': 1.0, '3': 1.0, 'put': 1.0, 'on': 2.0, 'your': 1.0, 'baby': 1.0, 'air': 1.0, 'in': 2.0, 'front': 1.0, 'a': 1.0, 'everything': 1.0, 'went': 1.0}
Word element => {'for': 1.0, 'stroller': 1.0, 'what': 1.0, 'will': 1.0, 'just': 1.0, 'of': 1.0, 'her': 2.0, 'many': 1.0, 'take': 1.0, 'sweating': 1.0, 'not': 1.0, 'did': 1.0, 'after': 2.0, 'was': 1.0, 'walk': 2.0, 'mile': 1.0, 'make': 1.0, 'think': 1.0, 'on': 1.0, 'went': 1.0, 'whole': 1.0, 'bulky': 1.0, 'dress': 1.0, 'comfortable': 1.0, 'feel': 1.0, 'don': 2.0, 'haven': 1.0, 'who': 1.0, 'tried': 1.0, 'in': 3.0, 'out': 1.0, 'newborn': 1.0, 'to': 2.0, 'this': 2.0, 'with': 2.0, 'myself': 1.0, 'asleep': 1.0, 'the': 6.0, 'that': 2.0, 'loves': 1.0, 'back': 2.0, 'carrier': 6.0, 'time': 1.0, 'is': 7.0, 'easy': 2.0, 'it': 4.0, 'she': 2.0, 'use': 1.0, 'realizing': 1.0, 'every': 2.0, 'layers': 1.0, 'very': 2.0, 'and': 6.0, 'only': 1.0, 'do': 1.0, 'my': 2.0, 'hot': 1.0, 'has': 1.0, 'ergo': 1.0, 'baby': 5.0, 'nurse': 2.0, 'nursing': 2.0, 'falls': 1.0, 'have': 1.0, '2': 1.0, 'but': 1.0, 'can': 1.0, 'tell': 1.0, 'draw': 1.0, 'would': 2.0, 'be': 1.0, 'like': 1.0, 'using': 1.0, 't': 3.0, 'a': 5.0, 'cover': 2.0, 'an': 1.0, 'friend': 1.0, 'same': 1.0, 'does': 1.0, 'when': 1.0, 'hurt': 1.0, '11': 1.0, 'am': 1.0, 'i': 9.0, '4': 1.0, '34': 1.0}
Word element => {'helps': 1.0, 'hope': 1.0, 'position': 1.0, 'keeping': 1.0, 'm': 1.0, 'reason': 1.0, 'only': 1.0, 'him': 1.0, 'back': 1.0, 'secure': 1.0, 't': 1.0, 'don': 1.0, 'so': 2.0, 'are': 1.0, 'positions': 1.0, 'other': 1.0, 'loves': 1.0, 'my': 3.0, 'baby': 5.0, 'hips': 1.0, 'carrying': 1.0, 'having': 1.0, 'because': 1.0, 'you': 3.0, 'it': 4.0, 'feel': 1.0, 'great': 1.0, 'excited': 1.0, 'this': 4.0, 'first': 1.0, 'hard': 1.0, 'tried': 2.0, 'watching': 1.0, 'i': 6.0, 'really': 1.0, 'help': 1.0, 'plus': 1.0, 'need': 1.0, 'and': 2.0, 'not': 1.0, 'me': 1.0, 'very': 3.0, 'was': 2.0, 'all': 1.0, 'to': 2.0, 'of': 1.0, 'once': 1.0, 'carry': 1.0, 'let': 1.0, 'neck': 1.0, 'like': 1.0, 'without': 1.0, 'the': 3.0, 'hip': 1.0, 'manual': 1.0, 'states': 1.0, 'tricky': 1.0, 'tell': 1.0, 'is': 3.0, 'around': 1.0, 'fall': 1.0, 'own': 1.0, 'get': 1.0, 'easy': 1.0, 'product': 1.0, 'for': 2.0, 'off': 1.0, 'got': 1.0, 'but': 1.0, 'can': 1.0, 'your': 6.0, 'on': 4.0, 'put': 1.0}
Word element => {'bjorn': 1.0, 'buy': 1.0, 're': 1.0, 'from': 1.0, 'hear': 1.0, 'll': 2.0, 'recommend': 1.0, 't': 1.0, 'can': 1.0, 'patients': 1.0, 'nurse': 1.0, 'around': 1.0, 'at': 1.0, 'is': 4.0, 'seem': 1.0, 'worked': 1.0, 'head': 2.0, 'issue': 2.0, 'baby': 1.0, 'support': 2.0, 'these': 1.0, 'turned': 1.0, 'round': 1.0, 'to': 8.0, 'plastic': 1.0, 'flap': 1.0, 'labor': 1.0, 'them': 1.0, 'has': 1.0, 'my': 5.0, 'a': 6.0, 's': 1.0, 'made': 1.0, 'which': 3.0, 'recommended': 1.0, 'and': 5.0, 'soon': 1.0, 'until': 1.0, 'comfortable': 1.0, 'nylon': 1.0, 'carrier': 3.0, 'quite': 1.0, 'immediately': 1.0, 'bought': 1.0, 'point': 1.0, 'carriers': 1.0, 'trying': 1.0, 'cotton': 2.0, 'be': 1.0, 'i': 6.0, 'this': 5.0, 'research': 1.0, 'we': 1.0, 'fine': 1.0, 'pricey': 1.0, 'get': 1.0, 'cords': 4.0, 'not': 2.0, 'versatile': 1.0, 'webbing': 1.0, 'of': 3.0, 'the': 7.0, 'update': 1.0, 'on': 1.0, 'myself': 1.0, '130': 1.0, 'return': 1.0, 'but': 3.0, 'model': 1.0, 'after': 1.0, 'resolved': 1.0, 'born': 1.0, 'convenient': 1.0, 'with': 1.0, 'models': 1.0, 'chew': 1.0, 'variety': 1.0, 'does': 1.0, 'changed': 1.0, 'toy': 1.0, 'action': 1.0, 'caused': 1.0, 'chewing': 1.0, 'disintegrate': 1.0, 'useless': 1.0, 'hooks': 1.0, 'it': 2.0, 'respond': 1.0, 'bit': 1.0, 'however': 1.0, 'disappointing': 1.0, 'now': 1.0, 'other': 1.0, 'an': 1.0, 'for': 1.0, 'daughter': 1.0, 'if': 3.0, 'want': 1.0, 'you': 1.0, 'am': 1.0, 'receive': 1.0, 'engineer': 1.0, 'unit': 1.0, 'son': 1.0, 'flat': 1.0, 'have': 2.0, 'beco': 1.0, 'design': 1.0, 'newer': 1.0, 'anymore': 1.0, 'rendering': 1.0, 'resolve': 1.0, 'or': 2.0, 'instead': 1.0, 'even': 1.0, 'issues': 1.0, 'really': 1.0}
Word element => {'anywhere': 1.0, 'up': 1.0, 'when': 1.0, 'heights': 1.0, 'shapes': 1.0, 'hurt': 1.0, 'uses': 1.0, 'time': 1.0, 'periods': 1.0, 'carrying': 1.0, 'easier': 1.0, 'seemed': 1.0, 'more': 1.0, 'stimulation': 1.0, 'don': 1.0, 'people': 1.0, 'help': 1.0, 's': 3.0, 'else': 1.0, 'nestled': 1.0, 'behind': 1.0, 'couch': 1.0, 'long': 1.0, 'on': 1.0, 'sitting': 1.0, 'use': 1.0, 'easy': 2.0, 'sturdy': 1.0, 'happy': 1.0, 'too': 1.0, 'with': 2.0, 'out': 2.0, 'do': 3.0, 'load': 1.0, 'hip': 1.0, 'spouse': 1.0, 'gemini': 4.0, 'my': 8.0, 'compact': 1.0, 'also': 5.0, 'into': 2.0, 'been': 1.0, 'position': 1.0, 'loves': 1.0, 'pounds': 1.0, 'i': 9.0, 'known': 1.0, 'who': 3.0, 'nanny': 1.0, 'carrier': 3.0, 'most': 1.0, 'back': 7.0, 'you': 2.0, 'choice': 2.0, 'month': 3.0, 'ergo': 2.0, 'can': 2.0, 'lightweight': 1.0, 'so': 5.0, 'gets': 1.0, 'different': 2.0, 'good': 2.0, 'bjorn': 1.0, 'seat': 1.0, 'hadn': 1.0, 'in': 7.0, '10': 3.0, 'for': 3.0, 'does': 2.0, 'easily': 1.0, 'that': 3.0, '20': 1.0, 'because': 3.0, 'your': 1.0, 'online': 1.0, 'wanted': 1.0, 'had': 3.0, 'a': 6.0, 't': 3.0, 'front': 6.0, 'once': 1.0, 'not': 1.0, 'those': 2.0, 'looked': 2.0, 'facing': 2.0, 'while': 2.0, 'cannot': 1.0, 'very': 3.0, 'later': 1.0, 'weighs': 1.0, 'old': 3.0, 'tried': 1.0, 'fussy': 1.0, 'of': 2.0, 'the': 7.0, 'outward': 1.0, 'soft': 1.0, 'without': 3.0, 'take': 1.0, 'versatility': 1.0, 'excess': 1.0, 'reviews': 1.0, 'first': 1.0, 'inward': 3.0, 'are': 2.0, 'doesn': 1.0, 'useful': 1.0, 'like': 4.0, 'many': 1.0, 'baby': 4.0, 'or': 1.0, 'smiles': 1.0, 'carry': 7.0, 'walking': 1.0, 'feels': 1.0, 'addition': 1.0, 'far': 1.0, 'he': 3.0, 'to': 8.0, 'rolled': 1.0, 'mode': 2.0, 'but': 6.0, 'chose': 1.0, 'after': 1.0, 'it': 10.0, 'him': 2.0, 'chance': 1.0, 'decided': 1.0, 'structured': 1.0, 'buy': 1.0, 'arms': 1.0, 'anyone': 2.0, 'and': 11.0, 'think': 2.0, 'was': 2.0, 'nervous': 1.0, 'some': 1.0, 'never': 1.0, 'around': 1.0, 'at': 3.0, 'is': 5.0, 'few': 1.0, 'times': 1.0, 'now': 1.0, 'comfortable': 2.0, 'body': 1.0, 'heavy': 1.0, 'falls': 1.0, 'beco': 1.0, 'have': 4.0, 'alseep': 1.0, 'carriers': 3.0, 'infant': 5.0, 'face': 1.0, 'insert': 2.0, 'all': 2.0, 'an': 1.0, 'other': 1.0}
Word element => {'highly': 1.0, 'overall': 1.0, 'comparing': 1.0, 'recommend': 2.0, 'then': 1.0, 'butterfly': 1.0, 'there': 1.0, 'else': 1.0, 'from': 1.0, 'though': 1.0, 'help': 1.0, 'child': 2.0, 'putting': 1.0, 'tricky': 1.0, 'little': 1.0, 'negative': 1.0, 'only': 1.0, 'like': 1.0, 'if': 1.0, 'limit': 1.0, 'weight': 1.0, 'without': 1.0, 'the': 7.0, 'both': 1.0, '18': 1.0, 's': 1.0, 'a': 5.0, 'use': 2.0, 'front': 1.0, 'and': 7.0, 'as': 2.0, 'year': 1.0, 'say': 1.0, 'is': 5.0, 'them': 1.0, 'out': 1.0, 'of': 1.0, 'always': 1.0, 'this': 4.0, 'higher': 1.0, 'it': 4.0, 'month': 1.0, 'two': 1.0, 'i': 7.0, 'old': 2.0, 'an': 1.0, 'carrier': 1.0, 'back': 2.0, 'bought': 1.0, 'have': 3.0, 'product': 2.0, 'for': 1.0, 'love': 2.0, '1': 1.0, 'great': 2.0, 'comfortable': 1.0, 'that': 2.0, 'someone': 1.0, 'you': 4.0, '2': 2.0, 'but': 1.0, 'can': 3.0, 'complaints': 1.0, 'put': 2.0, 'on': 3.0, 'your': 2.0, 'hip': 1.0, 'facing': 1.0, 'well': 1.0, 'girls': 1.0, 'will': 1.0, 'seems': 1.0, 'also': 2.0, 'my': 1.0, 'thing': 1.0, 'no': 1.0, 'beco': 1.0, 'in': 2.0, 'bjorn': 2.0, 'because': 1.0}
Word element => {'version': 1.0, 'ergonomic': 1.0, 'should': 1.0, 'retrospect': 1.0, 'be': 1.0, 'times': 1.0, 'ordered': 1.0, 'safety': 1.0, 'adjusted': 1.0, 'correctly': 1.0, 'though': 1.0, 'poking': 1.0, 'been': 1.0, 'unfastened': 1.0, 've': 1.0, 'down': 2.0, 'major': 1.0, 'up': 1.0, 'them': 2.0, 'if': 1.0, 'strangle': 1.0, 'choke': 1.0, 'will': 1.0, 'could': 1.0, 'like': 1.0, 'rather': 1.0, 'drawn': 1.0, 'mean': 1.0, 't': 2.0, 'both': 1.0, 's': 2.0, 'learned': 1.0, 'into': 1.0, 'actually': 1.0, 'again': 1.0, 'squeezing': 1.0, 'an': 1.0, 'hands': 1.0, 'two': 1.0, 'place': 1.0, 'don': 2.0, 'buckles': 1.0, 'also': 1.0, 'definitely': 1.0, 'squirmy': 2.0, 'hold': 2.0, 'another': 1.0, 'extra': 2.0, 'trying': 2.0, 'narrow': 1.0, 'yes': 1.0, 'outwards': 1.0, 'not': 1.0, 'best': 2.0, 'used': 1.0, 'decided': 1.0, 'neck': 1.0, 'uncomfortable': 1.0, 'spent': 1.0, 'some': 2.0, 'carrying': 4.0, 'unhook': 1.0, 'button': 1.0, 'bjorn': 2.0, 'have': 11.0, 'beco': 1.0, 'in': 7.0, 'baby': 3.0, 'end': 1.0, 'unfasten': 2.0, 'gemini': 1.0, 'me': 2.0, 'my': 5.0, 'our': 1.0, 'out': 3.0, 'anyway': 1.0, 'her': 4.0, 'since': 2.0, 'a': 4.0, 'go': 1.0, 'investment': 1.0, 'hopes': 1.0, '10': 1.0, 'for': 2.0, 'carrier': 7.0, 'most': 1.0, 'back': 1.0, 'really': 1.0, 'with': 2.0, 'research': 1.0, 'put': 1.0, 'do': 2.0, 'general': 1.0, 'lesson': 1.0, 'fasten': 2.0, 'this': 2.0, 'it': 8.0, 'to': 14.0, 'high': 1.0, '5': 1.0, 'i': 12.0, 'old': 1.0, 'did': 1.0, 'makes': 1.0, 'and': 8.0, 'rear': 1.0, 'lot': 1.0, 'too': 1.0, 'had': 1.0, 'properly': 1.0, 'either': 1.0, '60': 1.0, 'blood': 1.0, 'was': 4.0, 'wanted': 1.0, 'face': 2.0, 'returning': 1.0, 'however': 1.0, 'depending': 1.0, 'come': 3.0, 'roll': 1.0, 'when': 2.0, 'got': 1.0, 'daughter': 4.0, 'the': 21.0, 'of': 3.0, 'issue': 1.0, 'padding': 1.0, 'which': 4.0, 'using': 1.0, 'more': 1.0, 'look': 1.0, 'at': 3.0, 'is': 4.0, 'hang': 2.0, 'there': 1.0, 'pleasant': 1.0, 'while': 4.0, 'facing': 2.0, 'able': 1.0, 'push': 1.0, 'you': 2.0, 'things': 1.0, 'because': 1.0, 'easily': 1.0, 'that': 3.0, 'wide': 1.0, 'worried': 1.0, 'enough': 1.0, 'make': 2.0, 'long': 1.0, 'noticed': 1.0, 'on': 2.0, 'feel': 1.0, 'your': 1.0, 'stop': 1.0, 'buckle': 1.0, 'even': 4.0, 'base': 3.0, 'snaps': 1.0, 'need': 1.0, 'or': 2.0, 'behind': 1.0, 'difficult': 2.0, 'position': 1.0, 'unsnapped': 2.0, 'very': 4.0, 'scary': 2.0, 'are': 3.0, 'cut': 1.0, 'they': 6.0, 'criss': 1.0, 'straps': 5.0, 'cross': 1.0, 'newest': 1.0, 'so': 3.0, 'can': 1.0, 'months': 1.0, 'get': 2.0, 'through': 1.0, 'tricky': 2.0}
Word element => {'anyone': 1.0, 'recommend': 1.0, 'not': 1.0, 'would': 1.0, 'it': 2.0, 'returned': 1.0, 'the': 2.0, 'are': 2.0, 'impossible': 1.0, 'buckles': 1.0, 'to': 2.0, 'deal': 1.0, 'complicated': 1.0, 'with': 1.0, 'and': 1.0, 'straps': 1.0, 'i': 1.0}
Word element => {'hope': 1.0, 'cons': 1.0, 'pros': 1.0, 'recommend': 1.0, 'safest': 1.0, 'me': 1.0, 'hasn': 1.0, 'times': 1.0, 'done': 1.0, 've': 1.0, 'backwards': 1.0, 'man': 1.0, 'carrier': 4.0, 'side': 1.0, 'good': 1.0, 'month': 1.0, 'recently': 1.0, 'position': 1.0, 'loves': 1.0, 'if': 1.0, 'and': 15.0, 'tried': 1.0, 'see': 1.0, 'outweigh': 1.0, 'off': 3.0, 'number': 1.0, '8': 1.0, '34': 2.0, 'helps': 1.0, '150lbs': 1.0, 'not': 2.0, 'choice': 1.0, 'you': 7.0, 'us': 1.0, 'probably': 1.0, 'clam': 1.0, 'towards': 1.0, 'outwards': 1.0, 'lowland': 1.0, 'fast': 1.0, 'things': 1.0, 'faced': 2.0, 'facing': 1.0, 'every': 1.0, 'marken': 1.0, 'biked': 1.0, 'couple': 2.0, 'wore': 2.0, 'height': 1.0, 'returned': 1.0, 'for': 4.0, 'big': 1.0, 'easily': 1.0, 'been': 2.0, 'little': 3.0, 'local': 1.0, 'this': 6.0, 'with': 3.0, 'first': 2.0, 'love': 2.0, 'on': 4.0, 'store': 1.0, 'ergonomic': 1.0, 'was': 3.0, 'wanted': 1.0, 'wear': 1.0, 'trying': 1.0, 'carriers': 2.0, 'interested': 1.0, '6': 2.0, 'always': 1.0, 'most': 2.0, 'back': 2.0, 'but': 6.0, 'by': 1.0, 'after': 1.0, 'strapping': 1.0, 'trip': 1.0, 'somewhere': 1.0, 'mechanism': 1.0, 'top': 2.0, 'time': 3.0, 'so': 6.0, 'we': 10.0, 'take': 2.0, 'only': 1.0, 'then': 1.0, 'go': 2.0, 'has': 2.0, 'flexibility': 1.0, 'months': 4.0, 'locking': 1.0, '5': 2.0, 'one': 3.0, 'happy': 3.0, 'decided': 1.0, 'all': 1.0, 'to': 7.0, 'forward': 1.0, 'became': 1.0, 'as': 5.0, 'our': 5.0, 'luck': 1.0, 'a': 8.0, 'hit': 1.0, 'an': 1.0, 'buckle': 7.0, 'old': 1.0, 'even': 1.0, 'of': 5.0, 'living': 1.0, 'the': 26.0, 'accident': 1.0, 'baby': 5.0, 'carrying': 1.0, 'it': 8.0, 'adjustableonly': 1.0, 'in': 8.0, 'doesn': 1.0, 's': 3.0, 'm': 1.0, 'wrap': 1.0, 'three': 2.0, 'majority': 1.0, 'around': 1.0, 'can': 3.0, 'is': 6.0, 'at': 3.0, 'more': 2.0, 'amsterdam': 2.0, 'since': 1.0, 'life': 1.0, 'line': 1.0, 'boba': 1.0, 'soon': 1.0, 'there': 1.0, 'from': 3.0, 'he': 7.0, 'him': 7.0, 'looked': 1.0, 'seeing': 1.0, 'world': 2.0, 'or': 2.0, 'hubby': 1.0, 'need': 1.0, 'honestly': 1.0, 'when': 6.0, 'walked': 1.0, 'place': 2.0, 'climbed': 1.0, 'bell': 1.0, 'towers': 1.0, 'could': 1.0, 'out': 2.0, 'were': 1.0, 'museums': 1.0, 'hacks': 1.0, 'art': 1.0, 'find': 2.0, 'very': 1.0, 'washable': 1.0, 'backpack': 1.0, 'north': 1.0, 'large': 1.0, 'guy': 1.0, 'issue': 1.0, 'naps': 1.0, 'unlatched': 1.0, 'set': 1.0, 'comfortable': 2.0, 'are': 1.0, 'my': 1.0, 'weight': 1.0, 'exhibits': 1.0, 'wears': 1.0, '4': 2.0, '230lbs': 1.0, 'about': 1.0, 'machine': 1.0, 'cleans': 1.0, 'up': 2.0, 'two': 2.0, 'inwards': 1.0, 'thing': 1.0, 'positions': 1.0, 'including': 1.0, 'looking': 1.0, 'that': 2.0, 'experiencing': 1.0, 'really': 2.0, 'quick': 1.0, 'have': 2.0, 'fussy': 1.0, 'i': 8.0, 'simple': 1.0, 'completely': 1.0, 'still': 3.0, 'don': 2.0, 'isn': 1.0, 't': 5.0, 'replacement': 1.0, 'now': 1.0, 'problem': 1.0, 'taking': 1.0, 'hands': 1.0, 'countries': 1.0, 'annoying': 1.0, 'unlatch': 1.0, 'across': 1.0, 'where': 1.0, 'your': 2.0, 'down': 1.0, 'spin': 1.0, 'waist': 2.0, 'front': 1.0, 'pop': 1.0, 'do': 1.0, 'bothers': 1.0, 'buy': 1.0, 'know': 1.0}
Word element => {'from': 1.0, 'would': 1.0, 'transfer': 2.0, 'during': 2.0, 'up': 1.0, 'wake': 1.0, 'doesn': 1.0, 'also': 1.0, 'face': 1.0, 'daughter': 2.0, 'safety': 1.0, 'forward': 1.0, 'fact': 1.0, 'that': 2.0, 'still': 1.0, 'likes': 1.0, 'ergo': 2.0, 'is': 4.0, 't': 1.0, 'we': 1.0, 'a': 1.0, 'not': 1.0, 'because': 1.0, 'nice': 1.0, 'carrier': 1.0, 'note': 1.0, 'baby': 1.0, 'rest': 1.0, 'use': 1.0, 'she': 1.0, 'annoying': 1.0, 'it': 2.0, 'this': 2.0, 'with': 1.0, 'comfy': 1.0, 'and': 1.0, 'our': 2.0, 'to': 1.0, 'as': 3.0, 'the': 8.0, 'there': 1.0, 'no': 1.0, 'way': 1.0, 'one': 2.0, 'for': 1.0, 'but': 1.0, 'can': 1.0, 'on': 1.0, 'feature': 1.0, 'unclip': 1.0, 'i': 1.0, 'hand': 1.0, 'like': 1.0, 'positive': 1.0, 'head': 1.0, 'infant': 1.0}
Word element => {'unfasten': 1.0, 'off': 1.0, 'versatile': 1.0, 'stars': 2.0, 'women': 1.0, 'include': 1.0, 'obviously': 1.0, 'stomach': 1.0, 'below': 1.0, 'lack': 1.0, 'comes': 1.0, 'strap': 1.0, 'how': 1.0, 'like': 1.0, 'being': 1.0, 'versatility': 1.0, 'or': 1.0, 'lovely': 1.0, 'front': 2.0, 'either': 1.0, 'heavy': 1.0, 'awkward': 2.0, 'as': 2.0, 'carrier': 1.0, 'crying': 1.0, 'fussing': 1.0, 'if': 2.0, 'irrelevant': 1.0, 'child': 1.0, 'do': 1.0, 'much': 1.0, 'am': 1.0, 'correctly': 1.0, 'get': 1.0, 'seemed': 1.0, 'just': 1.0, 'waist': 2.0, 'this': 2.0, '6': 1.0, '5ft': 1.0, '200lbs': 1.0, 'got': 1.0, 'said': 1.0, 'gemini': 2.0, 'been': 1.0, 'bjorn': 4.0, 'out': 1.0, 'facing': 2.0, 'on': 2.0, 'torso': 1.0, 'overweight': 1.0, '3': 1.0, 'think': 2.0, 'in': 3.0, 'm': 1.0, 'did': 1.0, 'grow': 1.0, 'kid': 2.0, 'perfectly': 1.0, '3rd': 1.0, 'under': 1.0, 'ergo': 2.0, 'always': 1.0, 'has': 2.0, 'left': 1.0, 'perhaps': 1.0, 'back': 3.0, 'needed': 1.0, 'print': 1.0, 'but': 7.0, 'so': 1.0, 'can': 2.0, 'into': 1.0, 'three': 3.0, 'since': 1.0, 'carrying': 1.0, 'option': 1.0, 'other': 1.0, 'all': 1.0, 'fits': 1.0, 'an': 1.0, 'ever': 2.0, 'and': 6.0, 'where': 2.0, 'love': 2.0, 'of': 2.0, 'person': 1.0, 'the': 18.0, 'length': 1.0, 'to': 8.0, 'job': 1.0, 'have': 5.0, 'well': 1.0, 'coming': 1.0, 'i': 20.0, 'two': 2.0, 'when': 2.0, 'was': 3.0, 'lbs': 1.0, 'kids': 3.0, 'decided': 1.0, 'used': 3.0, 'a': 6.0, 'along': 1.0, 't': 3.0, 'advice': 1.0, 's': 6.0, 'ages': 1.0, 'children': 1.0, 'are': 1.0, 'splurge': 1.0, 'first': 2.0, 'baby': 6.0, 'she': 3.0, 'even': 1.0, 'instead': 1.0, 'band': 1.0, 'hurting': 1.0, 'larger': 1.0, 'does': 1.0, 'that': 8.0, 'because': 3.0, 'not': 2.0, 'my': 7.0, 'me': 2.0, 've': 1.0, 'only': 2.0, 'biggest': 1.0, 'issue': 2.0, 'reached': 1.0, 'point': 1.0, 'look': 1.0, 'at': 2.0, 'is': 7.0, 'considering': 1.0, 'vanity': 1.0, 'more': 2.0, 'positioned': 1.0, 'compared': 2.0, 'from': 2.0, 'say': 1.0, 'comfortable': 5.0, 'don': 2.0, 'over': 1.0, 'figured': 1.0, 'almost': 1.0, 'fabric': 2.0, 'for': 5.0, '10': 1.0, 'birth': 1.0, 'though': 1.0, 'problem': 1.0, 'never': 1.0, 'shoulders': 1.0, 'groin': 1.0, 'adjustable': 2.0, 'it': 9.0, 'thought': 1.0}
Word element => {'more': 1.0, 'any': 1.0, 'being': 1.0, 're': 1.0, 'sure': 1.0, 'style': 1.0, 'carrier': 1.0, 'soft': 1.0, 'wanting': 1.0, 'pouch': 1.0, 'recommend': 1.0, 'perfect': 1.0, 'support': 1.0, 'responsibly': 1.0, 'how': 1.0, 'highly': 1.0, 'this': 1.0, 'us': 1.0, 'also': 1.0, 'or': 1.0, 'bought': 1.0, 'products': 1.0, 'cuter': 1.0, 'uncomfortable': 2.0, 'decided': 1.0, 'third': 1.0, 'still': 1.0, 'while': 1.0, 'facing': 1.0, 'whenever': 1.0, 'face': 3.0, 'it': 5.0, 'fun': 1.0, 'fuss': 1.0, 'didn': 2.0, 'an': 1.0, 'personal': 1.0, 'but': 5.0, 'hotslings': 1.0, 'four': 1.0, 'hips': 1.0, 'chewed': 1.0, 'awkward': 1.0, 'made': 4.0, 'which': 2.0, 'like': 3.0, 'the': 13.0, 'of': 3.0, 'truthfully': 1.0, 'big': 1.0, 'worry': 1.0, 'comfortable': 1.0, 'front': 3.0, 'a': 8.0, 'ago': 1.0, 't': 3.0, 's': 1.0, 'm': 1.0, 'in': 4.0, 'bjorn': 1.0, 'anyone': 1.0, 'and': 5.0, 'usa': 1.0, 'time': 1.0, 'bit': 1.0, 'can': 4.0, 'so': 2.0, 'second': 1.0, 'fan': 1.0, 'i': 17.0, 'given': 1.0, 'beco': 3.0, 'have': 3.0, 'wearing': 1.0, 'kids': 1.0, 'when': 3.0, 'she': 1.0, 'baby': 5.0, 'with': 5.0, 'plus': 1.0, 'first': 1.0, 'felt': 1.0, 'super': 1.0, 'ergo': 4.0, 'they': 1.0, 'comfort': 1.0, 'snugli': 1.0, 'insert': 2.0, 'gemini': 2.0, 'to': 7.0, 'wanted': 1.0, 'had': 2.0, 'was': 4.0, 'is': 5.0, 'much': 1.0, 'preference': 1.0, 'only': 1.0, 'think': 1.0, 'better': 2.0, 'shaped': 1.0, 'twelve': 1.0, 'infant': 2.0, 'dangerous': 1.0, 'interesting': 1.0, 'always': 2.0, 'matter': 1.0, 'than': 1.0, 'way': 1.0, 'my': 8.0, 'me': 1.0, 'forward': 2.0, 'not': 2.0, 'there': 1.0, 'years': 1.0, 'no': 1.0, 'structure': 1.0, 'china': 1.0, 'for': 3.0, 'love': 1.0, 'got': 1.0, 'daughter': 1.0, 'be': 2.0, 'that': 1.0, 'back': 2.0, 'head': 1.0, 'her': 1.0, 'anyway': 2.0, 'dog': 1.0, 'taco': 1.0, 'strap': 1.0, 'on': 2.0, 'fourth': 1.0, 'cross': 1.0, 'straps': 1.0, 'buy': 1.0, 'weight': 1.0, 'level': 1.0, 'distributed': 1.0}
Word element => {'both': 1.0, 'product': 1.0, 'this': 1.0, 'of': 1.0, 'two': 1.0, 'easily': 1.0, 'back': 1.0, 'but': 1.0, 'need': 1.0, 'get': 1.0, 'and': 1.0, 'simple': 1.0, 'hands': 2.0, 'you': 2.0, 'is': 2.0, 'best': 1.0, 'yourself': 1.0, 'sits': 1.0, 'the': 1.0, 'definitely': 1.0, 'fitting': 1.0, 'to': 1.0, 'take': 1.0, 'on': 1.0, 'piece': 1.0, 'off': 1.0, 'baby': 1.0, 'in': 1.0, 'here': 1.0}
Word element => {'beco': 1.0, 'with': 1.0, 'case': 1.0, 'wasn': 1.0, 'this': 1.0, 'sadly': 1.0, 'quality': 1.0, 'customer': 1.0, 'material': 1.0, 'about': 2.0, 'metro': 2.0, 'it': 7.0, 'told': 1.0, 'treating': 1.0, 'followed': 1.0, 'week': 1.0, 'last': 1.0, 'time': 1.0, 'wash': 1.0, 'child': 1.0, 'now': 1.0, 'to': 3.0, 'our': 1.0, 'was': 3.0, 'you': 3.0, 'old': 2.0, 'i': 3.0, 'stated': 1.0, 'get': 1.0, 'months': 2.0, 'one': 1.0, 'were': 2.0, 'superior': 1.0, 'gemini': 2.0, 'another': 1.0, '5': 1.0, 'horrible': 1.0, 'years': 1.0, 'baby': 1.0, 'started': 1.0, 'purchased': 1.0, 'we': 1.0, 'ago': 2.0, 't': 2.0, 'emailed': 1.0, 'a': 1.0, 'black': 2.0, 'soon': 1.0, 'just': 1.0, 'given': 1.0, '10': 1.0, 'fabric': 1.0, 'drools': 1.0, 'for': 2.0, 'actually': 1.0, 'using': 1.0, 'first': 1.0, 'faded': 1.0, '2': 1.0, 'organic': 1.0, 'but': 3.0, 'so': 1.0, 'can': 1.0, 'service': 1.0, 'they': 2.0, 'looks': 3.0, 'my': 1.0, 'me': 1.0, 'not': 1.0, 'born': 1.0, 'due': 1.0, 'be': 2.0, 'nature': 1.0, 'the': 8.0, 'of': 3.0, 'when': 2.0, 'dyes': 1.0, 'decided': 1.0, 'used': 1.0, 'and': 6.0, 'recommended': 1.0, 'half': 1.0, 'spot': 2.0, 'instead': 1.0, 'washing': 1.0, 'badly': 1.0, 'never': 1.0, 'in': 1.0, 'directions': 1.0, 'love': 1.0, 'treat': 1.0, 'carrier': 1.0, 'your': 1.0, 'on': 1.0, 'think': 1.0, 'vomits': 1.0, 'or': 1.0, 'do': 1.0, 'will': 1.0, 'instructions': 1.0, 'purchasing': 1.0, 'that': 4.0, 'because': 1.0, 'worn': 1.0, '130': 1.0, 'would': 2.0}
Word element => {'recommend': 1.0, 'would': 1.0, 'thing': 1.0, 'crucial': 1.0, 'which': 1.0, 'put': 1.0, 'easy': 1.0, 'also': 1.0, 'point': 1.0, 'not': 1.0, 'back': 2.0, 'came': 1.0, 'front': 3.0, 'a': 4.0, 's': 3.0, 'that': 1.0, 'loves': 1.0, 'around': 1.0, 'began': 1.0, 'had': 1.0, 'supposedly': 1.0, 'pretty': 1.0, 'to': 5.0, 'as': 3.0, 'neck': 1.0, 'or': 1.0, 'down': 1.0, 'her': 1.0, 'carriers': 1.0, 'craning': 1.0, 'shopping': 1.0, 'out': 4.0, 'heard': 1.0, 'wide': 1.0, 'time': 1.0, 'beco': 1.0, 'bjorn': 2.0, 'hadn': 1.0, 'in': 1.0, 'one': 1.0, 'bought': 1.0, 'decided': 1.0, 'for': 2.0, 'liked': 1.0, 'bunch': 1.0, 'options': 1.0, 'another': 1.0, 'trying': 1.0, 'really': 2.0, 'straps': 1.0, 'structured': 1.0, 'carry': 3.0, 'some': 1.0, 'spent': 1.0, 'is': 2.0, 'at': 1.0, 'an': 1.0, 'but': 2.0, 'shoulder': 1.0, 'so': 3.0, 'can': 1.0, 'it': 7.0, 'i': 9.0, 'pounds': 1.0, 'whole': 1.0, 'about': 2.0, 'she': 1.0, 'baby': 5.0, 'and': 10.0, 'positions': 1.0, 'comfy': 2.0, 'yet': 1.0, 'love': 1.0, 'far': 2.0, 'couldn': 1.0, 'face': 4.0, 'option': 1.0, 'great': 2.0, 'padded': 1.0, 'own': 1.0, 'off': 1.0, 'tried': 1.0, 'uncomfy': 1.0, 'painful': 1.0, 'highly': 1.0, 'this': 1.0, 'shot': 1.0, 'got': 1.0, 'ergo': 2.0, 'same': 1.0, 'very': 1.0, 'being': 1.0, 'waist': 1.0, 'doesn': 1.0, 'hurt': 1.0, 'my': 2.0, '15': 1.0, 'now': 1.0, 'things': 1.0, 'able': 1.0, 'give': 1.0, 'there': 1.0, 'are': 1.0, 'the': 11.0, 'of': 2.0, 'on': 4.0, 'hip': 1.0, 'haven': 1.0, 't': 4.0, 'belt': 1.0, 'rest': 1.0, 'will': 1.0}
Word element => {'tell': 1.0, 'please': 1.0, 'this': 1.0, 'fix': 1.0, 'if': 1.0, 'higher': 1.0, 'little': 1.0, 'over': 2.0, 'adjusting': 1.0, 'drool': 1.0, 'position': 1.0, 'perfect': 1.0, 'mouth': 1.0, 'haha': 1.0, 'top': 1.0, 'peak': 1.0, 'just': 1.0, 'basically': 1.0, 'would': 1.0, 'eyes': 1.0, 'how': 2.0, 'across': 1.0, 'and': 6.0, 'came': 1.0, 'although': 1.0, 'somehow': 1.0, 'expresso': 1.0, 'at': 1.0, 'is': 3.0, 'researching': 1.0, 'get': 1.0, 'legs': 1.0, 'enough': 1.0, 's': 1.0, 'a': 4.0, 't': 3.0, 'know': 1.0, 'easy': 1.0, 'bit': 1.0, 'excess': 2.0, 'beco': 1.0, 'into': 1.0, 'that': 1.0, 'got': 1.0, 'even': 3.0, 'after': 2.0, 'in': 2.0, 'm': 1.0, 'seemed': 2.0, 'comfortable': 2.0, 'carrier': 2.0, 'back': 1.0, 'too': 1.0, 'lot': 1.0, 'happy': 1.0, 'hips': 1.0, 'chew': 1.0, 'gemini': 1.0, 'the': 11.0, 'outward': 1.0, 'baby': 4.0, 'very': 3.0, 'from': 2.0, 'was': 4.0, 'doesn': 1.0, 'had': 1.0, 'for': 2.0, 'love': 2.0, 'i': 7.0, 'friend': 1.0, 'straps': 2.0, 'with': 2.0, 'shoulders': 2.0, 'older': 1.0, 'uncomfortable': 2.0, 'pros': 1.0, 'tug': 1.0, 'long': 1.0, 'on': 5.0, 'flap': 1.0, 'mom': 1.0, 'your': 2.0, 'an': 1.0, 'all': 2.0, 'weight': 1.0, 'haven': 1.0, 'using': 1.0, 'thing': 1.0, 'ability': 1.0, 'up': 2.0, 'you': 3.0, 'roll': 2.0, 'when': 2.0, 'folded': 1.0, 'so': 2.0, 'can': 1.0, 'aren': 1.0, 'out': 2.0, 'quickly': 1.0, 'own': 1.0, 'dug': 1.0, 'tried': 2.0, 'having': 1.0, 'it': 6.0, 'him': 2.0, 'good': 1.0, 'which': 1.0, 'colorcons': 1.0, 'be': 2.0, 'down': 1.0, 'facing': 1.0, 'to': 6.0, 'pretty': 1.0, 'high': 1.0, 'his': 2.0, 'my': 6.0, 'me': 2.0, 'entire': 1.0, 'nose': 1.0}
Word element => {'wearing': 1.0, 'flat': 1.0, 'glad': 1.0, 'now': 1.0, 'facing': 1.0, 'only': 1.0, 'about': 1.0, 'positions': 1.0, 'other': 1.0, 'able': 1.0, 'being': 1.0, 'forward': 1.0, 'right': 1.0, 'look': 1.0, 'position': 1.0, 'secure': 1.0, 'my': 2.0, 'that': 1.0, 'love': 1.0, 'design': 1.0, 'great': 1.0, 'husband': 1.0, 'overall': 1.0, 'too': 1.0, 'and': 3.0, 'get': 2.0, 'buckling': 1.0, 'straps': 1.0, 'grabbing': 1.0, 'since': 2.0, 'you': 1.0, 'trying': 1.0, 'necessary': 1.0, 'of': 2.0, 'so': 3.0, 'beforehand': 1.0, 'doesn': 1.0, 'recommend': 1.0, 'was': 1.0, 'in': 3.0, 'hoping': 1.0, 'with': 1.0, 'she': 1.0, 'it': 3.0, 'carrier': 2.0, 'put': 1.0, 'on': 1.0, 'but': 1.0, 'can': 1.0, 'the': 6.0, 'without': 1.0, 't': 1.0, 'a': 3.0, 's': 1.0, 'we': 2.0, 'baby': 1.0, 'hang': 1.0, 'one': 2.0, 'hand': 1.0, 'all': 1.0, 'to': 4.0, 'as': 1.0, 'comes': 1.0, 'more': 2.0, 'is': 2.0, 'hesitate': 1.0, 'this': 1.0, 'wish': 1.0, 'fabric': 1.0, 'little': 2.0, 'breathable': 1.0, 'likes': 1.0, 'hot': 1.0, 'out': 2.0, 'already': 1.0, 'front': 1.0, 'use': 3.0, 'black': 1.0, 'were': 1.0, 'i': 3.0, 'outdoors': 1.0}
Word element => {'babies': 1.0, 'better': 1.0, 'be': 1.0, 'this': 1.0, 'think': 1.0, 'and': 1.0, 'son': 1.0, 'months': 1.0, 'suited': 1.0, '4': 1.0, 'over': 1.0, 'weeks': 1.0, 'for': 1.0, 'sling': 2.0, 'times': 1.0, 'course': 1.0, 'is': 1.0, 'many': 1.0, 'of': 1.0, '6': 2.0, 'the': 1.0, 'i': 1.0, 'tried': 1.0, 'my': 2.0, 'baby': 1.0, 'bigger': 1.0, 'would': 2.0, 'not': 1.0, 'although': 1.0, 'than': 1.0, 'happily': 1.0, 'average': 1.0}
Word element => {'backward': 1.0, 'carry': 3.0, 'versatile': 1.0, 'except': 1.0, 'got': 1.0, 'very': 1.0, 'facing': 1.0, 'son': 1.0, 'structure': 1.0, 'more': 2.0, 'need': 1.0, 'guess': 1.0, 'this': 2.0, 'theory': 1.0, 'nice': 1.0, 'was': 1.0, 'me': 2.0, 'love': 2.0, 'for': 4.0, 'black': 1.0, 'forward': 1.0, 'probably': 1.0, 'it': 7.0, 'hip': 1.0, 'red': 1.0, 'with': 1.0, 'front': 1.0, 'use': 1.0, 'taste': 1.0, 'then': 1.0, 'i': 9.0, 'being': 1.0, 'thrown': 1.0, 'to': 3.0, 'sorry': 1.0, 'had': 1.0, 'wrap': 3.0, 'the': 4.0, '34': 2.0, 'of': 2.0, 'how': 1.0, 'moby': 1.0, 'in': 4.0, 'easily': 1.0, 'frustrated': 1.0, 'like': 2.0, 'and': 5.0, 'too': 2.0, 'much': 3.0, 'get': 1.0, 'patience': 1.0, 'eh': 1.0, 'fabric': 3.0, 'have': 3.0, 'up': 1.0, 'don': 1.0, 'ended': 1.0, 'steal': 1.0, 'comfy': 1.0, 'learn': 1.0, 'that': 3.0, 'used': 1.0, 'out': 1.0, 'tried': 2.0, 'things': 1.0, 'public': 1.0, 'would': 1.0, 'my': 4.0, 'car': 1.0, 's': 4.0, 'a': 2.0, 't': 2.0, 'sync': 1.0, 'infantino': 1.0, 'capable': 1.0, 'ergo': 1.0, 'comfort': 1.0, 'back': 2.0, 'carrier': 1.0}
Word element => {'absolutely': 1.0, 'had': 1.0, 'love': 1.0, 'actually': 1.0, 'fine': 1.0, 'worked': 1.0, 'other': 1.0, 'been': 1.0, 'just': 1.0, 'by': 1.0, 'do': 1.0, 'can': 1.0, 'but': 2.0, 'wishes': 1.0, 'some': 1.0, 'take': 1.0, 'buckles': 1.0, '8': 1.0, 'friend': 1.0, 'an': 1.0, 'never': 1.0, 'old': 1.0, 'reviews': 1.0, 'between': 1.0, 'recommend': 1.0, 'was': 2.0, 'to': 6.0, 'insert': 1.0, 'decision': 1.0, 'i': 8.0, 'myself': 1.0, 'the': 3.0, 'my': 3.0, 'has': 2.0, 'ergo': 2.0, 'happy': 1.0, 'mom': 1.0, 'overall': 1.0, 'running': 1.0, 'lo': 1.0, 'very': 2.0, 'spot': 1.0, 'big': 1.0, 'meet': 1.0, 'wash': 1.0, 'errands': 1.0, 'months': 1.0, 'one': 3.0, 'cleaning': 1.0, 'getting': 1.0, 'did': 1.0, 'too': 1.0, 'and': 9.0, 'loads': 1.0, 'of': 3.0, 'plus': 1.0, 'how': 1.0, 'he': 1.0, '6': 1.0, 'scared': 1.0, 'based': 1.0, 'this': 7.0, 'with': 1.0, 'research': 1.0, 'she': 2.0, 'it': 3.0, 'carrier': 4.0, 'before': 1.0, 'used': 3.0, 'because': 2.0, 'deciding': 1.0, 'choose': 1.0, 'every': 1.0, 'aesthetics': 1.0, 'is': 3.0, 'get': 3.0, 'easy': 2.0, 'off': 1.0, 'them': 1.0, 'baby': 2.0, 'in': 2.0, 'expectant': 1.0, 've': 2.0, 'out': 2.0, 'a': 1.0, 'handed': 1.0, 'since': 1.0, 'am': 1.0, 'when': 1.0, 'on': 3.0, 'put': 1.0, 'now': 1.0, 'weeks': 1.0}
Word element => {'got': 1.0, 'only': 1.0, 'why': 1.0, 'is': 1.0, 'guess': 1.0, 'a': 1.0, 's': 1.0, 'him': 1.0, 'with': 1.0, 'out': 1.0, 'protect': 1.0, 'stars': 1.0, 'for': 1.0, 'the': 2.0, 'comfortable': 1.0, 'great': 1.0, 'support': 1.0, 'though': 2.0, 'clips': 1.0, 'on': 1.0, 'special': 1.0, 'off': 1.0, 'or': 1.0, '4': 1.0, 'i': 3.0, 'it': 6.0, 'this': 2.0, 'he': 2.0, 'extra': 1.0, 'thing': 2.0, 'was': 4.0, 'wanted': 1.0, 'easy': 1.0, 'facing': 1.0, 'loved': 2.0, 'buttons': 1.0, 'take': 1.0, 'from': 2.0, 'preference': 1.0, 'all': 1.0, 'to': 2.0, 'as': 2.0, 'coming': 1.0, 'undone': 1.0, 'being': 1.0, 'easily': 1.0, 'nothing': 1.0, 'but': 2.0, 'carrier': 1.0, 'back': 1.0, 'my': 1.0, 'them': 1.0, 'baby': 1.0, 'hated': 1.0, 'in': 2.0, 'and': 2.0, 'too': 1.0, 'soon': 1.0, 'front': 1.0, 'strapped': 1.0, 'there': 1.0, 'me': 1.0, 'wrong': 1.0}
Word element => {'highly': 1.0, 'even': 1.0, 'has': 1.0, 'would': 1.0, 'super': 1.0, 'figure': 1.0, 'yet': 1.0, 'or': 1.0, 'carrieres': 1.0, 'tried': 1.0, 'comfy': 1.0, 'nice': 1.0, 'easy': 1.0, 'get': 1.0, 'done': 1.0, 'need': 1.0, 'whatever': 1.0, 'do': 1.0, 'other': 1.0, 'chest': 1.0, 'her': 1.0, 'during': 1.0, 'hel': 1.0, 'just': 1.0, 'carrying': 1.0, 'having': 2.0, 'with': 1.0, 'alseep': 2.0, 'strap': 2.0, 'yr': 1.0, 'on': 3.0, '3': 1.0, 'also': 1.0, 'in': 3.0, 'since': 1.0, 'recommend': 1.0, 'was': 1.0, 'is': 1.0, 'fall': 1.0, 'comes': 1.0, 'all': 1.0, 'to': 8.0, 'free': 2.0, 'now': 1.0, 'infant': 2.0, 'she': 2.0, 'month': 1.0, 'it': 5.0, 'pain': 1.0, 'cranky': 1.0, 'carring': 1.0, 'this': 3.0, 'while': 1.0, 'wearing': 1.0, 'he': 3.0, 'walk': 1.0, 'i': 8.0, 'loves': 1.0, 'been': 1.0, 'old': 2.0, 'handy': 1.0, 'my': 8.0, 'love': 1.0, 'for': 2.0, 'fit': 1.0, 'falls': 1.0, 'have': 3.0, 'carrier': 1.0, 'back': 4.0, 'stroller': 1.0, 'can': 4.0, 'but': 1.0, 'which': 2.0, 'hurt': 2.0, 'again': 1.0, 'when': 2.0, 'wants': 1.0, 'gets': 2.0, 'don': 1.0, 'about': 1.0, 'wanting': 1.0, 'a': 3.0, 't': 1.0, 'hands': 2.0, 'the': 2.0, 'anyone': 1.0, 'be': 1.0, 'him': 3.0, 'out': 3.0, 'too': 1.0, 'and': 8.0, 'thats': 1.0, 'day': 3.0, 'baby': 1.0, 'tired': 1.0, 'me': 1.0, 'not': 1.0}
Word element => {'newborns': 1.0, 'don': 1.0, 'when': 1.0, 'lbs': 1.0, '14': 1.0, 'was': 1.0, 'fyi': 1.0, 'bought': 1.0, 'one': 1.0, 'looking': 1.0, 'are': 1.0, 'know': 1.0, 'u': 1.0, 'sling': 1.0, 'me': 1.0, 'of': 1.0, 'out': 1.0, 'confused': 1.0, 'clasps': 1.0, 'way': 1.0, 'ergo': 1.0, 'no': 1.0, 'disneyland': 1.0, 'for': 3.0, 'love': 1.0, 'daughter': 1.0, 'my': 1.0, 'too': 2.0, 'and': 3.0, 'easy': 1.0, 'enough': 1.0, 'if': 1.0, 'being': 1.0, 'is': 2.0, 'explain': 1.0, 'much': 1.0, 'can': 1.0, 'have': 2.0, 'a': 1.0, 't': 2.0, 'she': 2.0, 'it': 2.0, 'hours': 1.0, 'wear': 1.0, 'so': 4.0, 'carrier': 2.0, 'back': 1.0, 'this': 3.0, 'pain': 1.0, 'loves': 1.0, 'comfortable': 1.0, 'great': 3.0, 'until': 1.0, 'bring': 1.0, 'how': 2.0, 'moby': 1.0, 'i': 7.0, 'complicated': 1.0, 'there': 1.0, 'had': 1.0, 'many': 2.0, 'carriers': 1.0, 'hated': 2.0, 'baby': 4.0, 'in': 2.0, 'bjorn': 1.0, 'got': 1.0, 'heck': 1.0, 'the': 2.0, 'wrap': 1.0, 'heavier': 1.0, 'at': 1.0, 'ktan': 1.0}
Word element => {'tried': 1.0, 'i': 1.0, 'would': 1.0, 'others': 1.0, 'there': 1.0, 'for': 1.0, 'much': 1.0, 'to': 2.0, 'baby': 1.0, 'definitely': 1.0, 'hot': 1.0, 'ergonomic': 1.0, 'as': 2.0, 'most': 1.0, 'use': 1.0, 'recommend': 1.0, 'easy': 1.0, 'than': 1.0, 'cute': 1.0, 'out': 1.0, 'parent': 1.0, 'it': 1.0, 've': 1.0, 'also': 1.0, 'carriers': 1.0, 'seem': 1.0, 'doesn': 1.0, 'more': 1.0, 't': 1.0, 'and': 2.0, 'get': 1.0}
Word element => {'much': 1.0, 'happier': 1.0, 'so': 1.0, 'and': 1.0, 'into': 1.0, 'carseat': 1.0, 'this': 1.0, 'carrier': 1.0, 'son': 1.0, 'is': 1.0, 'my': 1.0, 'the': 1.0, 'i': 1.0, 'great': 1.0, 'it': 2.0, 'use': 1.0, 'instead': 1.0, 'keeps': 1.0, 'stores': 1.0, 'of': 1.0, 'hauling': 1.0}
Word element => {'product': 1.0, 'love': 1.0, 'both': 1.0, 'i': 1.0, 'months': 1.0, '3': 1.0, 'is': 1.0, 'up': 1.0, 'cover': 1.0, 'a': 1.0, 'c': 1.0, 'ergo': 1.0, 'he': 1.0, 'with': 1.0, 'this': 3.0, 'highly': 1.0, 'baby': 3.0, 'chose': 1.0, 'and': 2.0, 'between': 1.0, 'recommend': 1.0, 'facing': 1.0, '5': 1.0, 'b': 1.0, 'the': 1.0, 'can': 1.0, 'was': 1.0, 'face': 1.0, 'out': 1.0, 'carrying': 1.0, 'started': 1.0, 'just': 1.0, 'breastfeeding': 1.0, 'while': 1.0, 'debating': 1.0, 'recently': 1.0, 'in': 1.0}
Word element => {'luck': 1.0, 'good': 1.0, 'thing': 1.0, 'your': 1.0, 'feel': 1.0, 'won': 1.0, 'really': 1.0, 'sure': 1.0, 'make': 1.0, 'hurt': 1.0, 'does': 1.0, 'weak': 1.0, 'support': 1.0, 'also': 1.0, 'weather': 1.0, 'so': 2.0, 'around': 1.0, 're': 1.0, 'off': 1.0, 'snap': 1.0, 'back': 5.0, 'out': 1.0, 's': 3.0, 'a': 5.0, 'going': 1.0, 'you': 4.0, 'folded': 1.0, 'first': 1.0, 'newborns': 1.0, 'and': 10.0, 'like': 1.0, '3': 2.0, 'put': 1.0, 'synergy': 1.0, 'the': 16.0, 'wrap': 2.0, 'bjorn': 2.0, 'have': 1.0, 'beco': 2.0, 'she': 1.0, 'baby': 6.0, 'moby': 2.0, 'i': 8.0, 'all': 3.0, 'to': 7.0, 'annoying': 1.0, 'as': 1.0, 'works': 1.0, 'on': 2.0, 'long': 1.0, 'before': 1.0, 'now': 1.0, 'was': 3.0, 'recommend': 1.0, 'just': 3.0, 'thrilled': 1.0, 'not': 2.0, 'my': 3.0, 'me': 2.0, 'if': 1.0, 'keep': 1.0, 'did': 1.0, 'untie': 1.0, 'fabric': 1.0, 'for': 2.0, 'carrier': 1.0, 'sling': 2.0, 'liked': 1.0, 'but': 2.0, 'best': 1.0, 'in': 5.0, 'm': 1.0, 'house': 1.0, 'both': 1.0, 'months': 2.0, 'get': 2.0, 'comfortable': 2.0, 'great': 2.0, 'don': 1.0, 'need': 1.0, 'infant': 1.0, 'insert': 1.0, 'bottom': 1.0, 'down': 1.0, 'part': 1.0, 'has': 2.0, 'month': 1.0, 'super': 1.0, 'ergo': 1.0, 'head': 1.0, 't': 2.0, 'separate': 1.0, 'rest': 1.0, 'wants': 1.0, 'snug': 1.0, 'is': 3.0, 'at': 3.0, 'look': 1.0, 'it': 7.0, 'already': 1.0, 'since': 1.0, 'friend': 1.0, 'this': 3.0, 'bit': 1.0, 'easy': 1.0, 'found': 1.0, 'had': 1.0, 'warm': 2.0, 'quickly': 1.0, 'born': 1.0, 'june': 1.0, 'nyc': 1.0, 'built': 1.0, 'be': 1.0, 'even': 1.0}
Word element => {'hanging': 1.0, 'to': 1.0, 'opposed': 1.0, 'a': 2.0, 'not': 1.0, 'on': 2.0, 'rests': 1.0, 'your': 3.0, 'of': 1.0, 'weight': 1.0, 'carrier': 2.0, 'all': 1.0, 'me': 1.0, 'and': 3.0, 'sitting': 1.0, 'take': 1.0, 'city': 1.0, 'great': 1.0, 'the': 4.0, 'my': 1.0, 'in': 1.0, 'live': 1.0, 'is': 2.0, 'buy': 1.0, 'i': 1.0, 'as': 2.0, 'best': 1.0, 'mass': 1.0, 'transit': 1.0, 'comfortable': 1.0, 'shoulders': 1.0, 'with': 1.0, 'this': 2.0, 'it': 1.0, 'keeps': 1.0, 'hips': 1.0, 'baby': 3.0, 'position': 1.0, 'at': 1.0, 'times': 1.0}
Word element => {'will': 1.0, 'investment': 1.0, 'long': 1.0, 'have': 1.0, 'buckle': 1.0, 'many': 1.0, 'that': 2.0, 'option': 1.0, 'facing': 1.0, 'of': 4.0, 'takes': 1.0, 'the': 4.0, 'weight': 2.0, 'if': 1.0, 'alot': 1.0, 't': 1.0, 's': 1.0, 'a': 3.0, 'plan': 1.0, 'is': 3.0, 'don': 1.0, 'over': 1.0, 'ways': 1.0, 'on': 1.0, 'your': 3.0, 'with': 1.0, 'hip': 1.0, 'places': 1.0, 'term': 1.0, 'evenly': 1.0, 'time': 1.0, 'from': 1.0, 'wearing': 2.0, 'wear': 1.0, 'last': 1.0, 'carriers': 1.0, 'shoulders': 1.0, 'this': 2.0, 'higher': 1.0, 'it': 3.0, 'pull': 1.0, 'my': 1.0, 'front': 1.0, 'wonderful': 1.0, 'carrier': 2.0, 'baby': 5.0, 'bjorn': 1.0, 'hips': 1.0, 'you': 1.0, 'when': 1.0, 'and': 2.0, 'making': 1.0, 'much': 1.0, 'has': 1.0, 'easier': 1.0, 'to': 2.0, 'for': 1.0, 'strap': 1.0, 'periods': 1.0, 'variety': 1.0, 'which': 1.0, 'like': 1.0, 'hold': 1.0, 'range': 1.0, 'longer': 1.0, 'favorite': 1.0}
Word element => {'comfortable': 1.0, 'very': 1.0, 'is': 1.0, 'lbs': 1.0, '115': 1.0, 'carrier': 1.0, 'have': 1.0, 'didn': 1.0, 'because': 1.0, 'others': 1.0, 'of': 1.0, 'beco': 1.0, 'in': 1.0, 'strap': 1.0, 'm': 1.0, 'best': 1.0, 'for': 1.0, 'him': 1.0, 'would': 1.0, 'she': 1.0, 'it': 2.0, 'truely': 1.0, 'this': 1.0, 'first': 1.0, 'i': 4.0, 'on': 2.0, 'months': 1.0, 'bought': 1.0, 'baby': 1.0, 'hands': 1.0, 'the': 3.0, 'another': 1.0, 'my': 4.0, 'thing': 1.0, 'was': 1.0, 'had': 1.0, 'to': 1.0, 'at': 1.0, 'carry': 1.0, '5': 2.0, 'before': 1.0, 'down': 1.0, 'right': 1.0, 'boarding': 1.0, 'and': 4.0, 'break': 1.0, 'ease': 1.0, 'help': 1.0, 'deboarding': 1.0, 'flight': 1.0, 'up': 2.0, 'set': 1.0, 'always': 1.0, 'so': 1.0, 'a': 1.0, 't': 1.0, 's': 1.0, 'freed': 1.0, 'could': 1.0, 'stroller': 2.0, 'mom': 1.0, 'same': 1.0, 'with': 2.0, 'rely': 1.0}
Word element => {'in': 1.0, 'facing': 1.0, 'just': 1.0, 'i': 1.0, 'thus': 1.0, 'wish': 1.0, 'purchase': 1.0, 'related': 1.0, 'and': 1.0, 'baby': 2.0, 'best': 1.0, 'amazing': 1.0, 'a': 1.0, 'pocket': 1.0, 'my': 1.0, 'falls': 1.0, 'loves': 1.0, 'far': 1.0, 'face': 1.0, 'out': 1.0, 'it': 1.0, 'he': 1.0, 'had': 1.0, 'to': 1.0, 'asleep': 1.0}
Word element => {'fit': 1.0, 'all': 1.0, 'clear': 1.0, 'bodied': 1.0, 'body': 2.0, 'as': 1.0, 'was': 5.0, 'lbs': 2.0, 'for': 3.0, 'option': 4.0, 'have': 1.0, 'quality': 1.0, 'far': 2.0, 'around': 2.0, 'his': 1.0, 'see': 3.0, 'off': 2.0, 'he': 2.0, 'him': 5.0, 'own': 1.0, 'it': 6.0, 'be': 2.0, 'has': 1.0, 'them': 1.0, 'always': 1.0, 'likes': 1.0, 'separate': 1.0, 't': 1.0, 'while': 1.0, 'face': 3.0, 'carry': 3.0, 'so': 3.0, 'when': 1.0, 'front': 3.0, 'what': 3.0, 'you': 4.0, 'about': 3.0, 'despite': 2.0, 'positions': 1.0, 'lower': 3.0, 'overstimulated': 1.0, '2': 1.0, 'going': 3.0, 's': 3.0, 'a': 10.0, 'small': 2.0, 'and': 17.0, 'provided': 1.0, 'on': 8.0, 'long': 1.0, 'amount': 1.0, 'put': 4.0, 'much': 2.0, 'an': 1.0, 'wide': 1.0, 'came': 1.0, 'is': 6.0, 'can': 4.0, 'turn': 1.0, 'if': 1.0, 'in': 4.0, 'right': 1.0, 'to': 14.0, 'lie': 1.0, 'carried': 2.0, '1': 1.0, 'latched': 1.0, 'loved': 1.0, 'because': 3.0, 'that': 6.0, 'easily': 1.0, 'fall': 1.0, 'inward': 1.0, 'every': 1.0, 'person': 2.0, 'my': 14.0, 'reasons': 2.0, 'me': 1.0, 'gemini': 6.0, 'becomes': 1.0, 'baby': 4.0, 'studies': 1.0, 'spending': 1.0, 'i': 18.0, 'hip': 1.0, 'smaller': 1.0, 'use': 1.0, 'insert': 2.0, 'overall': 1.0, 'transfer': 1.0, 'wants': 1.0, 'entire': 1.0, 'straps': 1.0, 'carrying': 1.0, 'cross': 1.0, 'broadest': 1.0, 'into': 2.0, 'wrap': 1.0, 'back': 1.0, 'carrier': 9.0, 'from': 1.0, 'being': 2.0, 'carriers': 1.0, 'out': 5.0, 'disliked': 1.0, 'range': 1.0, 'ended': 1.0, 'originally': 1.0, 'panel': 4.0, 'narrowing': 1.0, 'child': 1.0, 'up': 1.0, 'affordable': 1.0, 'prefer': 1.0, 'infant': 3.0, 'by': 1.0, 'size': 1.0, '5': 2.0, 'show': 1.0, '12': 1.0, 'the': 33.0, 'oz': 1.0, 'try': 1.0, 'offers': 1.0, 'snap': 1.0, 'large': 1.0, 'gives': 1.0, 'accommodate': 1.0, 'versus': 1.0, 'torso': 1.0, 'soft': 1.0, 'babies': 1.0, 'purchased': 1.0, 'husband': 1.0, 'more': 4.0, 'both': 1.0, 'son': 6.0, 'easier': 1.0, 'inner': 1.0, 'or': 1.0, 'without': 2.0, 'beco': 2.0, 'surface': 1.0, 'short': 1.0, 'down': 2.0, 'there': 1.0, 'were': 2.0, 'portion': 1.0, 'recommend': 2.0, 'buckles': 1.0, 'take': 3.0, 'never': 1.0, 'shoulders': 2.0, 'find': 1.0, 'very': 1.0, 'why': 1.0, 'knew': 1.0, 'of': 8.0, 'covered': 1.0, 'even': 3.0, 'felt': 2.0, 'under': 1.0, '160': 1.0, 'comfortable': 2.0, 'with': 2.0, 'using': 1.0, 'helping': 1.0, 'able': 2.0, 'get': 1.0, 'too': 1.0, '3': 1.0, 'simpler': 1.0, 'seemed': 1.0, 'ordered': 1.0, 'return': 1.0, 'ii': 1.0, 'am': 2.0, 'this': 4.0, 'butterfly': 7.0, 'important': 1.0, 'moby': 1.0, 'ages': 1.0, 'becoming': 1.0, 'frequently': 1.0, 'worth': 1.0, '4': 2.0, 'birth': 1.0, 'wasn': 1.0, 'like': 4.0, 'd': 2.0, 'penny': 1.0, 'finding': 2.0, 'somewhere': 1.0, 'products': 1.0, 'dug': 1.0, 'facing': 1.0, 'may': 1.0, 'locally': 1.0, 'different': 1.0, 'many': 1.0, 'where': 2.0, 'your': 2.0, 'before': 1.0, 'money': 1.0, 'at': 2.0, 'lucky': 1.0, 'could': 1.0, 'point': 1.0, 'liked': 1.0, 'early': 1.0, 'support': 1.0, 'stages': 1.0}
Word element => {'there': 1.0, 'out': 1.0, 'definitely': 1.0, 'little': 1.0, 'same': 1.0, 'while': 1.0, 'would': 1.0, 'mall': 1.0, 'around': 1.0, 'walk': 1.0, 'chores': 1.0, 'the': 2.0, 'hands': 1.0, 'have': 1.0, 'old': 1.0, 'year': 1.0, 'free': 1.0, 'now': 1.0, 'even': 1.0, 'infant': 1.0, 'an': 1.0, 'when': 1.0, 'her': 2.0, 'or': 2.0, 'let': 1.0, 'comforting': 1.0, 'hold': 1.0, 'refused': 1.0, 'that': 3.0, 'daughter': 2.0, 'one': 3.0, 'comfortable': 1.0, 'me': 4.0, 'moms': 1.0, 'and': 3.0, 'description': 1.0, 'just': 1.0, 'well': 2.0, 'i': 2.0, 'get': 1.0, 'easy': 2.0, 'baby': 3.0, 'product': 1.0, 'for': 1.0, 'fit': 1.0, 'through': 1.0, 'this': 4.0, 'first': 1.0, 'she': 2.0, 'it': 2.0, 'allowed': 1.0, 'needed': 1.0, 'carrier': 3.0, 'recommend': 1.0, 'was': 4.0, 'do': 1.0, 'its': 1.0, 'use': 2.0, 'purchased': 1.0, 'wants': 1.0, 'down': 1.0, 'perfectly': 1.0, 'difficulty': 1.0, 'maybe': 1.0, 'prefers': 1.0, 'but': 1.0, 'dads': 1.0, 'at': 2.0, 'who': 1.0, 'a': 2.0, 'we': 1.0, 'go': 1.0, 'any': 1.0, 'our': 1.0, 'as': 2.0, 'to': 9.0, 'all': 1.0, 'trying': 1.0, 'put': 1.0, 'your': 1.0, 'bjorn': 1.0, 'in': 1.0, 'securely': 1.0, 'time': 1.0, 'so': 1.0, 'versatile': 1.0, 'household': 1.0, 'my': 3.0, 'second': 1.0}
Word element => {'go': 1.0, 'way': 1.0, 'think': 1.0, 'supports': 1.0, 'looking': 1.0, 'are': 1.0, 'if': 1.0, 'haven': 1.0, 'different': 1.0, 'places': 1.0, 'ways': 1.0, 'right': 1.0, 'put': 2.0, 'opposed': 1.0, 'getting': 1.0, 'out': 2.0, 'buckles': 1.0, 'fewer': 1.0, 'compared': 1.0, 'also': 1.0, 'whole': 1.0, 'years': 1.0, 'year': 1.0, 'since': 1.0, 'bother': 1.0, '3': 1.0, 'today': 1.0, 'about': 1.0, 'walk': 1.0, 'comfortable': 2.0, 'but': 4.0, 'big': 1.0, 'had': 1.0, 'flipped': 1.0, 'easy': 2.0, 'later': 1.0, 'very': 3.0, 'across': 1.0, 'streamlined': 1.0, 'as': 2.0, 'we': 1.0, 'then': 1.0, 'into': 1.0, 'base': 1.0, '24': 1.0, 'both': 1.0, 'has': 2.0, 'them': 1.0, 'can': 1.0, 'so': 3.0, 'narrow': 1.0, 'simply': 1.0, 'time': 2.0, 'and': 13.0, 'many': 1.0, 'baby': 2.0, 'deal': 1.0, 'large': 1.0, 'between': 1.0, 'been': 1.0, 'too': 1.0, 'one': 1.0, 'have': 5.0, 'beco': 2.0, 'in': 5.0, 'for': 6.0, 'yet': 1.0, 'he': 7.0, 'addition': 1.0, 'research': 1.0, 'get': 1.0, 'trouble': 1.0, 'flat': 1.0, 'son': 2.0, 'butterfly': 3.0, 'wks': 1.0, 'a': 8.0, 'ago': 1.0, 'rest': 1.0, 'fit': 1.0, 't': 5.0, 'daughter': 1.0, 'got': 1.0, 'didn': 2.0, 'secure': 1.0, 'wouldn': 1.0, 'some': 1.0, 'support': 2.0, 'great': 1.0, 'carrying': 1.0, 'having': 3.0, 'am': 1.0, 'deciding': 1.0, 'problems': 1.0, 'that': 4.0, 'because': 1.0, 'does': 1.0, 've': 1.0, 'would': 2.0, 'compare': 1.0, 'to': 13.0, 'setting': 1.0, 'doesn': 1.0, 'slept': 1.0, 'i': 17.0, 'carrier': 2.0, 'back': 5.0, 'top': 1.0, 'inches': 1.0, 'gemini': 6.0, 'was': 3.0, 'lbs': 1.0, 'your': 1.0, 'feel': 1.0, 'idea': 2.0, '12': 1.0, 'while': 1.0, 'month': 1.0, '6': 1.0, 'infant': 6.0, 'figure': 1.0, 'now': 1.0, 'up': 1.0, 'major': 1.0, 'at': 2.0, 'look': 2.0, 'is': 7.0, 'old': 2.0, 'brand': 1.0, 'point': 1.0, 'like': 5.0, 'which': 1.0, 'the': 26.0, 'doing': 1.0, 'of': 5.0, 'straps': 2.0, 'buy': 1.0, 'surface': 1.0, 'control': 1.0, 'insert': 2.0, 'ergos': 1.0, 'my': 7.0, 'me': 3.0, 'not': 1.0, 'all': 4.0, 'an': 3.0, 'ultimately': 1.0, 'over': 1.0, 'those': 1.0, 'went': 2.0, 'plenty': 1.0, 'ii': 1.0, 'with': 5.0, 'his': 1.0, 'head': 4.0, 'hold': 1.0, 'sticks': 1.0, 'hood': 1.0, 'long': 1.0, 'on': 2.0, 'be': 1.0, 'it': 4.0, 'him': 5.0, 'you': 1.0, 'able': 1.0, 'tried': 1.0, 'see': 1.0, 'obviously': 3.0, 'led': 1.0, 'snap': 2.0}
Word element => {'vendor': 1.0, 'from': 1.0, 'definitely': 1.0, 'will': 1.0, 'truthful': 1.0, 'upon': 1.0, 'order': 1.0, 'packaged': 1.0, 'the': 4.0, 'mother': 1.0, 'product': 1.0, 'be': 1.0, 'this': 1.0, 'thrilled': 1.0, 'description': 1.0, 'accurate': 1.0, 'and': 3.0, 'delivery': 1.0, 'prompt': 1.0, 'were': 1.0, 'again': 1.0, 'helpful': 1.0, 'images': 1.0, 'in': 1.0, 'was': 2.0, 'to': 1.0, 'deciding': 1.0, 'purchase': 1.0, 'well': 1.0, 'recipient': 1.0}
Word element => {'up': 1.0, 'ended': 1.0, 'summer': 1.0, 'during': 1.0, '15': 1.0, 'wore': 1.0, 'if': 1.0, 'would': 1.0, 'natured': 1.0, 'very': 1.0, 'also': 1.0, 'correctly': 1.0, 'that': 1.0, 'so': 2.0, 'surprised': 1.0, 'height': 1.0, '70': 1.0, 'at': 1.0, 'is': 2.0, 'of': 1.0, 'plenty': 1.0, 'made': 1.0, 'fits': 1.0, 'my': 2.0, 'cause': 1.0, 'returning': 1.0, 'high': 1.0, 'with': 2.0, 'it': 10.0, 'he': 3.0, 'tension': 1.0, 'options': 1.0, 'liked': 1.0, 'fit': 1.0, 'for': 1.0, 'great': 1.0, 't': 3.0, 'the': 4.0, 'forward': 1.0, 'than': 1.0, 'because': 1.0, 'back': 2.0, 'carrier': 2.0, 'like': 2.0, 'which': 1.0, 'other': 1.0, 'this': 1.0, 'found': 1.0, 'i': 7.0, 'shoulder': 1.0, 'neck': 1.0, 'or': 1.0, 'front': 2.0, 'hot': 2.0, 'well': 1.0, 'side': 1.0, 'sat': 1.0, 'when': 1.0, 'too': 2.0, 'son': 1.0, 'facing': 1.0, 'minutes': 1.0, 'doesn': 1.0, 'was': 5.0, 'reason': 1.0, 'cry': 1.0, 'in': 2.0, 'why': 1.0, 'purchased': 1.0, 'didn': 2.0, 'even': 1.0, 'longer': 1.0, 'down': 1.0, 'buttoned': 1.0}
Word element => {'it': 1.0, 'love': 1.0, 'far': 1.0, 'so': 1.0, 'out': 1.0, 'she': 1.0, 'there': 1.0, 'layla': 1.0, 'now': 1.0, 'is': 2.0, 'min': 1.0, 'we': 1.0, '3': 1.0, 'within': 1.0, '5': 1.0, 'months': 1.0, 'zonked': 1.0, 'of': 1.0, 'being': 1.0, 'in': 1.0}
Word element => {'over': 1.0, 'her': 1.0, 'having': 1.0, 'and': 1.0, 'kept': 1.0, 'she': 1.0, 'to': 1.0, 'had': 1.0, 'face': 1.0, 's': 1.0, 'no': 1.0, 'them': 1.0, 'made': 1.0, 'biting': 1.0, 'my': 1.0, 'i': 1.0, 'all': 1.0, 'have': 1.0, 'carrier': 1.0, 'other': 1.0, 'the': 1.0, 'nicely': 1.0, 'as': 1.0, 'very': 1.0, 'return': 1.0, 'a': 1.0, 'drool': 1.0, 'is': 1.0, 'this': 1.0, 'with': 1.0, 'it': 2.0, 'than': 1.0, 'straps': 1.0, 'they': 1.0, 'issues': 1.0, 'cut': 1.0, 'right': 1.0, 'into': 1.0, 'baby': 1.0}
Word element => {'good': 1.0, 'provides': 1.0, 'lb': 1.0, 'month': 1.0, 'support': 1.0, '4': 1.0, 'our': 1.0, 'for': 1.0, 'carrier': 1.0, 'it': 1.0, 'this': 1.0, 'baby': 1.0, 'we': 1.0, 'working': 1.0, 'like': 1.0, 'and': 1.0, 'flexibility': 1.0, 'the': 1.0, 'of': 1.0, 'several': 1.0, '17': 1.0, 'positions': 1.0, 'well': 1.0, 'front': 1.0, 'back': 2.0, 'is': 1.0, 'side': 1.0}
Word element => {'another': 1.0, 'would': 1.0, 'both': 1.0, 'like': 1.0, 'easily': 1.0, 'us': 1.0, 'too': 1.0, 'uses': 1.0, 'free': 1.0, 'have': 1.0, 'house': 1.0, 'around': 1.0, 'stuff': 1.0, 'adjusts': 1.0, 'also': 1.0, 'take': 1.0, 's': 1.0, 'i': 4.0, 'use': 2.0, 'fits': 1.0, 'husband': 1.0, 'to': 2.0, 'still': 1.0, 'gift': 1.0, 'my': 1.0, 'lo': 1.0, 'received': 1.0, 'best': 1.0, 'one': 1.0, 'for': 2.0, 'a': 1.0, 'walk': 1.0, 'it': 4.0, 'shower': 1.0, 'only': 1.0, 'do': 1.0, 'and': 3.0, 'hands': 1.0, '6lb': 1.0, 'she': 1.0, '7': 1.0, 'everyday': 1.0, 'snugly': 1.0}
Word element => {'problems': 1.0, 'uncomfortable': 1.0, 'impossible': 1.0, 'like': 1.0, 'and': 4.0, 'had': 1.0, 'purchased': 1.0, 'put': 1.0, 'on': 1.0, 'is': 3.0, 'want': 1.0, 'material': 1.0, 'i': 4.0, 'no': 1.0, 'positions': 1.0, 'it': 2.0, 'this': 2.0, 'with': 1.0, 's': 1.0, 'to': 4.0, 'carrier': 2.0, 'seemed': 1.0, 'organic': 1.0, 'however': 1.0, 'multiple': 1.0, 'safety': 1.0, 'design': 1.0, 'for': 1.0, 'switched': 1.0, 'sturdy': 1.0, 'almost': 1.0, 'carrying': 1.0, 'not': 1.0, 'deal': 1.0, 'the': 4.0, 'take': 1.0, 'due': 1.0, 'have': 1.0, 'buckles': 1.0, 'something': 1.0, 'while': 1.0, 'my': 2.0, 'ergo': 1.0, 'baby': 3.0, 'off': 1.0, 'crying': 1.0, 'very': 1.0, 'also': 1.0, 'in': 1.0, 'unhappy': 1.0}
Word element => {'140': 1.0, 'imperfect': 1.0, 'things': 1.0, 'end': 1.0, 'overall': 1.0, 'always': 1.0, 'don': 1.0, 'feature': 1.0, 'good': 2.0, 'which': 1.0, 'base': 1.0, 'buttons': 1.0, 'adjust': 1.0, 'more': 2.0, 'should': 1.0, 'they': 1.0, 'design': 1.0, 'defect': 1.0, 'short': 1.0, 'not': 1.0, 'it': 3.0, 'months': 1.0, 'percentile': 1.0, '90th': 1.0, '3': 1.0, 'on': 3.0, 'put': 1.0, 'much': 1.0, 'comparable': 1.0, 'only': 1.0, 'straps': 1.0, 'cross': 1.0, 'face': 2.0, 'but': 2.0, 'easier': 1.0, 'for': 2.0, 'ergo': 4.0, 'criss': 1.0, 'than': 4.0, 'mouth': 2.0, 'an': 1.0, 'other': 2.0, 'found': 1.0, 'out2': 1.0, 'easy': 1.0, 'facing': 2.0, 'difficult': 2.0, 'was': 2.0, 'to': 9.0, 'doesn': 1.0, 'waist': 1.0, 'carrier': 4.0, 'back': 1.0, 'click': 1.0, 'top': 1.0, 'justify': 1.0, 'excited': 1.0, 'find': 1.0, '1': 2.0, 'this': 2.0, 'without': 1.0, 'a': 4.0, 'fit': 1.0, 'belt': 1.0, 't': 2.0, 'narrower': 1.0, 's': 5.0, 'could': 1.0, 'front': 1.0, 'easily': 1.0, 'that': 1.0, 'many': 1.0, 'baby': 3.0, 'bjorn': 1.0, 'age': 1.0, 'height': 1.0, 'pros': 1.0, 'snaps': 1.0, 'really': 1.0, 'very': 1.0, 'hands3': 1.0, 'two': 1.0, 'little': 1.0, 'market': 1.0, '5': 2.0, 'and': 3.0, 'new': 1.0, 'uncomfortable2': 1.0, 'heard': 1.0, 'tall': 2.0, 'like': 2.0, 'make': 2.0, 'ergocons': 1.0, 'option': 3.0, '4': 2.0, 'petite': 1.0, 'uncomfortable': 1.0, 'too': 1.0, 'one': 1.0, 'can': 1.0, 'so': 3.0, 'frame': 1.0, 'peer': 1.0, 'in': 3.0, 'm': 1.0, 'about': 1.0, 'i': 5.0, 'feet': 1.0, 'out': 2.0, 'think': 1.0, 'better': 1.0, 'lack': 1.0, 'the': 16.0, 'of': 1.0, 'particularly': 1.0, 'rubbing': 1.0, 'padding': 1.0, 'safety': 1.0, 'is': 6.0, 'at': 2.0, 'sits': 1.0, 'are': 1.0, 'take': 1.0, 'seems': 2.0, 'off': 1.0, 'enough': 1.0, 'when': 1.0, 've': 1.0, 'down': 2.0, 'brand': 1.0, 'low': 1.0, 'just': 1.0, 'my': 1.0, 'over': 1.0, 'his': 2.0, 'fold': 2.0, 'he': 2.0}
Word element => {'reaon': 1.0, 'whole': 1.0, 'since': 1.0, 'me': 1.0, 'long': 1.0, 'very': 1.0, 'over': 1.0, 'will': 1.0, 'then': 1.0, 'carrier': 1.0, 'with': 1.0, 'is': 2.0, 'around': 1.0, 'walk': 1.0, 'cant': 1.0, 'unlike': 1.0, 'unfastened': 1.0, 'safe': 1.0, 'task': 1.0, 'inconvenient': 1.0, 'quite': 1.0, 'somewhere': 1.0, 'face': 1.0, 'outwards': 1.0, 'gemini': 1.0, 'thought': 1.0, 'straps': 3.0, 'because': 2.0, 'id': 1.0, 'both': 1.0, 'down': 1.0, 'it': 1.0, 'relly': 1.0, 'and': 1.0, 'ability': 1.0, 'juggling': 1.0, 'own': 2.0, 'for': 1.0, 'love': 2.0, 'beco': 1.0, 'i': 4.0, 'all': 1.0, 'to': 6.0, 'waist': 1.0, 'just': 1.0, 'by': 1.0, 'butterfly': 2.0, 'are': 1.0, 'a': 1.0, 'dont': 1.0, 'this': 3.0, 'pain': 1.0, 'put': 2.0, 'on': 1.0, 'try': 1.0, 'yourself': 1.0, 'means': 1.0, 'baby': 2.0, 'multi': 1.0, 'of': 1.0, 'once': 1.0, 'when': 1.0, 'you': 5.0, 'but': 1.0, '2': 1.0, 'shoulder': 1.0, 'need': 1.0, 'trip': 1.0, 'which': 1.0, 'the': 11.0, 'hands': 1.0, 'undo': 1.0, 'belt': 1.0, 'unhook': 1.0, 'have': 1.0}
Word element => {'good': 1.0, 'function': 1.0, 'in': 1.0, 'facing': 1.0, 'front': 1.0, 'the': 1.0, 'my': 1.0, 'baby': 1.0, 'and': 1.0, 'only': 1.0, 'now': 1.0, 'is': 1.0, 'two': 1.0, 'right': 1.0, 'old': 1.0, 'so': 1.0, 'use': 1.0, 'we': 1.0, 'works': 1.0, 'it': 1.0, 'month': 1.0, 'can': 1.0}
Word element => {'problem': 1.0, 'real': 1.0, 'not': 1.0, 'a': 2.0, 'in': 1.0, 'heavy': 1.0, 'the': 9.0, 'unfortunatly': 1.0, 'back': 1.0, 'option': 1.0, 'nothing': 1.0, 'forward': 1.0, 'on': 1.0, 'by': 1.0, 'when': 1.0, 'she': 1.0, 'it': 1.0, 'he': 1.0, 'tiny': 1.0, 'only': 2.0, 'mind': 1.0, 'with': 2.0, 'using': 1.0, 'for': 3.0, 'very': 1.0, 'baby': 2.0, 'child': 1.0, 'up': 1.0, 'excellent': 1.0, 'tends': 1.0, 'of': 1.0, 'once': 1.0, 'carry': 1.0, 'this': 2.0, 'carring': 2.0, 'and': 2.0, 'sold': 1.0, 'to': 4.0, 'all': 1.0, 'due': 1.0, 'have': 1.0, 'useful': 1.0, 'are': 2.0, 'front': 3.0, 'issue': 2.0, 'i': 1.0, 'is': 2.0, 'ages': 1.0, 'side': 1.0, 'that': 2.0, 'face': 1.0, 'mouth': 1.0, 'panel': 2.0, 'protective': 1.0, 'inserts': 1.0, 'straps': 1.0}
Word element => {'an': 1.0, 'for': 1.0, 'period': 1.0, 'wearing': 1.0, 'toasty': 1.0, 'furnace': 1.0, 'warm': 1.0, 'drawback': 1.0, 'only': 1.0, 'nature': 1.0, 'of': 1.0, 'once': 1.0, 'one': 1.0, 'little': 2.0, 'your': 1.0, 'getting': 1.0, 'in': 1.0, 've': 1.0, 'curve': 1.0, 'there': 1.0, 'at': 2.0, 'situated': 1.0, 'learning': 1.0, 'some': 1.0, 'things': 1.0, 'held': 1.0, 'doesn': 1.0, 'recommend': 1.0, 'i': 1.0, 'but': 1.0, 'prefers': 1.0, 'can': 2.0, 'it': 8.0, 'doze': 1.0, 'this': 2.0, 'he': 2.0, 'comfortable': 1.0, 'use': 2.0, 'him': 1.0, 'be': 1.0, 'all': 2.0, 'to': 5.0, 'look': 1.0, 'and': 3.0, 'kinda': 1.0, 'me': 1.0, 'easy': 1.0, 'get': 2.0, 'slight': 1.0, 'done': 2.0, 'comfy': 1.0, 'extended': 1.0, 'my': 4.0, 'around': 2.0, 'is': 5.0, 'gets': 1.0, 'son': 2.0, 'kiddo': 1.0, 'hands': 1.0, 'the': 2.0, 'has': 1.0, 'couple': 1.0, 'shopping': 1.0, 'back': 1.0, 'carrier': 2.0, 'allowed': 1.0, 'both': 1.0, 'off': 1.0, 'enough': 1.0, 'house': 1.0, 'will': 1.0, 'you': 1.0, 'hurt': 1.0, 'times': 2.0, 'when': 1.0, 's': 1.0, 'a': 4.0, 't': 2.0, 'we': 1.0, 'go': 1.0, 'second': 1.0, 'occasionally': 1.0, 'time': 1.0, 'so': 2.0, 'loves': 2.0, 'that': 2.0, 'just': 1.0}
Word element => {'back': 1.0, 'larger': 1.0, 'get': 1.0, 'your': 1.0, 'they': 1.0, 'also': 1.0, 'or': 1.0, 'once': 1.0, 'carry': 3.0, 'love': 4.0, 'i': 1.0, 'can': 3.0, 'wonderful': 1.0, 'carrier': 2.0, 'this': 2.0, 'the': 2.0, 'are': 1.0, 'that': 2.0, 'of': 1.0, 'there': 1.0, 'rear': 1.0, 'many': 1.0, 'is': 1.0, 'child': 2.0, 'so': 1.0, 'you': 3.0, 'carriers': 1.0, 'on': 1.0, 'ways': 1.0, 'not': 1.0, 'facing': 1.0, 'lot': 1.0, 'a': 1.0, 'front': 1.0}
Word element => {'happy': 1.0, 'no': 1.0, 'just': 1.0, '129': 1.0, 'hour': 1.0, 'per': 1.0, 'if': 1.0, 'now': 1.0, 'daily': 1.0, 'white': 1.0, 'during': 1.0, 'fuss': 1.0, 'average': 1.0, 'used': 1.0, 'napping': 1.0, '7': 1.0, 'done': 1.0, 'could': 1.0, 'affiliated': 1.0, 'collar': 1.0, 'ever': 2.0, 'first': 1.0, 'with': 2.0, 'hip': 1.0, 'carry': 2.0, 'facing': 2.0, 'front': 1.0, 'base': 1.0, 'of': 1.0, 'work': 1.0, 'but': 1.0, 'and': 5.0, 'get': 2.0, 'm': 2.0, 'best': 1.0, 'ergobaby': 1.0, 'having': 1.0, 'me': 1.0, '30pm': 1.0, 'not': 3.0, 'did': 2.0, '30': 1.0, 'this': 3.0, 'much': 1.0, 'do': 1.0, 'only': 1.0, 'back': 3.0, 'carrier': 3.0, 'like': 1.0, 'width': 1.0, 'that': 3.0, 'spent': 1.0, 'girl': 1.0, 'fifth': 1.0, 'to': 2.0, 'i': 5.0, 'things': 1.0, 'tried': 2.0, 'annoyed': 1.0, 'is': 4.0, 'on': 1.0, 'some': 1.0, 'these': 1.0, 'gemini': 1.0, 'my': 3.0, 'it': 1.0, 'she': 3.0, 'baby': 2.0, 'would': 1.0, 'the': 10.0, 'turns': 1.0, 'worker': 1.0, 'for': 1.0, 'scream': 2.0, 'out': 1.0, 'hated': 1.0, 'hurt': 1.0, 'you': 3.0, 'between': 1.0, 'splay': 1.0, 'paid': 1.0, 'carriers': 1.0, 'her': 2.0, 'babybjorn': 1.0, 'legs': 1.0, 'against': 1.0, 'time': 2.0, 'so': 2.0, 'calculate': 1.0, 'wide': 1.0, 'in': 3.0, 'beco': 2.0, 'lets': 2.0, 'how': 1.0, '6': 1.0, 'adjust': 1.0}
Word element => {'paid': 1.0, 'we': 1.0, 'what': 1.0, 'for': 2.0, 'of': 1.0, 'out': 1.0, 'seems': 1.0, 'just': 1.0, 'priced': 1.0, 'was': 1.0, 'daughter': 1.0, 'over': 1.0, 'my': 1.0, 'happy': 1.0, 'bit': 1.0, 'a': 1.0, 'don': 1.0, 'carrier': 1.0, 'the': 1.0, 't': 1.0, 'this': 1.0, 'with': 1.0, 'it': 3.0, 'i': 1.0, 'use': 1.0, 'feel': 1.0, 'like': 1.0, 'she': 1.0, 'but': 1.0, 'will': 1.0, 'get': 1.0}
Word element => {'tear': 1.0, 'item': 1.0, 'exact': 1.0, 'got': 1.0, 'use': 1.0, '17lb': 1.0, 'now': 2.0, 'don': 1.0, 'it': 5.0, 'only': 1.0, 'come': 1.0, 'wish': 1.0, 'this': 2.0, 'old': 1.0, 'have': 1.0, 'to': 1.0, 'all': 1.0, 'for': 3.0, 'barely': 1.0, 'when': 1.0, 'i': 5.0, '4': 1.0, 'one': 1.0, 'months': 2.0, 'is': 3.0, 'without': 1.0, 'the': 3.0, 'great': 1.0, 'and': 3.0, 'was': 1.0, 'unfortunately': 1.0, 'my': 1.0, 'straps': 1.0, 'of': 1.0, 'recommendations': 1.0, 'exchange': 1.0, 'baby': 1.0, 'started': 1.0, 'know': 1.0, 'which': 1.0, 'carrier': 1.0, 'very': 1.0, 'disappointing': 1.0, '2': 1.0, 'but': 2.0, 'after': 1.0, 'reviews': 1.0, 'defect': 1.0, 'particular': 1.0, 'same': 1.0, 'apart': 1.0, 'if': 1.0, 'could': 1.0, 't': 1.0, 'a': 1.0}
Word element => {'old': 1.0, 'year': 1.0, 'walk': 1.0, 'nice': 1.0, 'off': 1.0, 'around': 1.0, 'without': 1.0, 'times': 1.0, 'seriously': 1.0, 'life': 1.0, 'biggie': 1.0, 'no': 1.0, 'those': 1.0, 'with': 3.0, 'frequently': 1.0, 'too': 1.0, 'they': 1.0, 'head': 1.0, 'lugging': 1.0, 'call': 1.0, 'able': 1.0, 'you': 1.0, 'only': 1.0, 'made': 1.0, 'snap': 1.0, 'hard': 1.0, 'infants': 1.0, 'smaller': 1.0, 'make': 1.0, 'slip': 1.0, 'cannot': 1.0, 'be': 1.0, 'ensure': 1.0, 'security': 1.0, 'just': 1.0, 'retailer': 1.0, 'could': 1.0, 'added': 1.0, 'a': 5.0, 's': 1.0, 't': 1.0, 'not': 3.0, 'heard': 1.0, 'and': 5.0, 'carrier': 1.0, 'feature': 1.0, 'need': 1.0, 'wait': 1.0, 'wanted': 1.0, 'm': 1.0, 'seat': 2.0, 'in': 1.0, 'out': 2.0, 'unlike': 1.0, 'snaps': 2.0, 'from': 1.0, 'heavy': 1.0, 'as': 5.0, 'to': 11.0, 'second': 1.0, 'saver': 1.0, 'been': 1.0, 'that': 5.0, 'quick': 1.0, 'prior': 1.0, '4': 3.0, 'hand': 1.0, 'buy': 1.0, 'mess': 2.0, 'for': 3.0, 'expensive': 1.0, 'purchasing': 2.0, 'weight': 1.0, 'less': 2.0, 'dead': 1.0, 'baby': 4.0, 'started': 1.0, 'extra': 1.0, 'researched': 1.0, 'available': 1.0, 'wrap': 1.0, 'down': 1.0, 'several': 1.0, 'would': 1.0, 'tight': 2.0, 'bulky': 1.0, 'system': 1.0, 'now': 1.0, 'was': 6.0, 'set': 1.0, 'still': 1.0, 'if': 3.0, 'asked': 1.0, 'at': 1.0, 'is': 4.0, 'support': 2.0, 'on': 3.0, 'take': 2.0, 'positioning': 1.0, 'complaint': 1.0, 'going': 1.0, 'impressed': 1.0, 'put': 2.0, 'me': 3.0, 'my': 5.0, 'often': 1.0, 'super': 2.0, 'ergo': 1.0, 'this': 3.0, 'already': 1.0, 'it': 6.0, 'all': 1.0, 'an': 3.0, 'but': 2.0, 'locking': 1.0, 'most': 1.0, 'thing': 1.0, '2': 1.0, 'person': 1.0, 'the': 15.0, 'of': 2.0, 'what': 1.0, 'when': 1.0, 'am': 1.0, 'positions': 1.0, 'research': 1.0, 'had': 2.0, 'offered': 1.0, 'light': 1.0, 'by': 1.0, 'don': 1.0, 'beco': 2.0, 'have': 4.0, 'unsnap': 1.0, 'carriers': 1.0, 'infant': 2.0, 'insert': 1.0, 'are': 2.0, 'cute': 1.0, 'can': 2.0, 'clips': 3.0, 'so': 1.0, 'sold': 1.0, 'found': 1.0, 'easy': 1.0, 'i': 13.0, 'well': 1.0, 'fast': 1.0, 'really': 2.0, 'online': 2.0, 'feel': 2.0, 'like': 4.0, 'safe': 1.0, 'secure': 2.0, 'also': 1.0, 'love': 1.0, 'fold': 1.0, 'far': 1.0, 'moby': 1.0, 'important': 1.0}
Word element => {'together': 1.0, 'walk': 1.0, 'we': 1.0, 'loves': 1.0, 'both': 1.0, 'baby': 1.0, 'me': 1.0, 'now': 1.0, 'with': 1.0, 'i': 2.0, 'it': 3.0, 'wish': 1.0, 'had': 1.0, 'for': 1.0, 'a': 1.0, 'phone': 1.0, 'take': 1.0, 'pocket': 1.0, 'the': 1.0, 'my': 1.0, 'so': 1.0}
Word element => {'further': 1.0, 'make': 1.0, 'straps': 1.0, 'padding': 2.0, 'annoying': 1.0, 'sort': 1.0, 'seriously': 1.0, 'go': 2.0, 'for': 6.0, 'carrying': 1.0, 'now': 2.0, 'upright': 1.0, 'lbs': 1.0, 'was': 5.0, 'returned': 1.0, 'because': 1.0, 'that': 6.0, 'problems': 1.0, 'about': 1.0, 'supple': 1.0, 'with': 4.0, 'shoulders': 2.0, 'some': 1.0, 'distributed': 1.0, 'walk': 1.0, 'lb': 1.0, 'weight': 1.0, 'comfortable': 2.0, 'at': 1.0, 'much': 1.0, 'put': 2.0, 'liked': 1.0, 'which': 1.0, 'his': 1.0, 'son': 1.0, 'both': 1.0, 'people': 1.0, 'walked': 1.0, 'd': 2.0, 'love': 1.0, 'kill': 1.0, 'day': 1.0, 'slings': 1.0, 'imagine': 1.0, 'like': 4.0, 'the': 19.0, 'start': 1.0, 'number': 1.0, 'have': 5.0, 'few': 1.0, 'searching': 1.0, 'something': 1.0, 'add': 3.0, 'would': 4.0, 'bummed': 1.0, 'no': 1.0, 'who': 1.0, 'first': 1.0, '12': 1.0, 'face': 1.0, 'many': 1.0, 'really': 1.0, 'swear': 1.0, 'than': 1.0, 'this': 3.0, 'relatively': 1.0, 'wake': 1.0, 'gifts': 1.0, 'forward': 1.0, 'not': 1.0, 'i': 15.0, 'minutes': 1.0, 'has': 1.0, 'babymaterial': 1.0, 'my': 7.0, 'asleep': 2.0, 'back': 1.0, 'carrier': 3.0, 'pocket': 1.0, 'know': 1.0, 'easy': 5.0, 'waist': 1.0, 'to': 19.0, 'as': 2.0, 'sunshade': 1.0, 'falls': 1.0, 'rather': 1.0, 'backpack': 1.0, 'he': 5.0, 'him': 4.0, 'wear': 1.0, 'of': 8.0, 'old': 1.0, 'even': 2.0, 'shoulder': 1.0, 'took': 1.0, 'more': 2.0, 'wouldn': 1.0, '11': 1.0, 'it': 18.0, 'be': 6.0, 'babyways': 1.0, 'get': 6.0, 'able': 2.0, 'you': 2.0, 'but': 6.0, 'ebay': 1.0, 'started': 1.0, 'improve': 1.0, 'in': 4.0, 'per': 1.0, 'bjorn': 4.0, 'so': 3.0, 'is': 3.0, 'can': 1.0, 'original': 1.0, 'inthe': 1.0, 'we': 1.0, 'take': 1.0, 'positioning': 1.0, 't': 6.0, 'see': 1.0, 'off': 1.0, 'on': 7.0, 'great': 1.0, 'if': 1.0, 'support': 2.0, '5': 1.0, 'got': 3.0, 'one': 2.0, 'need': 1.0, 'also': 2.0, 'allow': 1.0, 'facing': 1.0, 'out': 3.0, 'gemini': 1.0, 'then': 1.0, 'only': 1.0, 'could': 1.0, 'find': 1.0, '1': 2.0, 'outall': 1.0, 'does': 1.0, 'they': 1.0, 'didn': 2.0, 'ordered': 1.0, 'seem': 1.0, 'soft': 2.0, 'friendly': 1.0, 'style': 1.0, 'probably': 1.0, 'pretty': 1.0, 'any': 1.0, 'flap': 1.0, 'baby': 7.0, 'hours': 1.0, 'once': 1.0, 'hang': 1.0, 'loves': 1.0, 'doesn': 1.0, 's': 4.0, 'ergo': 4.0, 'tonight': 1.0, 'home': 2.0, 'example': 1.0, 'mile': 1.0, 'when': 2.0, 'fact': 2.0, 'front': 3.0, 'what': 1.0, 'up': 1.0, 'takes': 1.0, '20': 1.0, 'ones': 1.0, 'all': 1.0, 'an': 1.0, 'tho': 1.0, '13': 1.0, 'getting': 1.0, 'use': 1.0, 'safety': 1.0, 'side': 1.0, 'buckles': 1.0, 'super': 1.0, 'don': 2.0, 'cannot': 1.0, 'positions': 1.0, 'comfy': 1.0, '2': 2.0, 'going': 1.0, 'neck': 2.0, 'down': 2.0, 'week': 1.0, 'supported': 1.0, 'after': 1.0, 'by': 1.0, 'infant': 1.0, 'insert': 1.0, 'work': 1.0, 'little': 2.0, 'and': 14.0, 'just': 1.0, 'slip': 1.0, 'keys': 1.0, 'phone': 1.0, 'through': 1.0, 'dollars': 1.0, 'into': 1.0, 'carry': 1.0, 'a': 10.0, 'bag': 1.0}
Word element => {'but': 1.0, 'be': 1.0, 'find': 1.0, 'don': 1.0, 'also': 1.0, 'knee': 1.0, 'way': 1.0, 'preference': 1.0, 'as': 2.0, 'to': 2.0, 'all': 1.0, 'their': 1.0, 'supports': 1.0, 'base': 1.0, 'so': 1.0, 'wide': 1.0, 'bad': 1.0, 'very': 1.0, 'pouch': 1.0, 'of': 2.0, 'setting': 1.0, 'too': 1.0, 'and': 1.0, 'babies': 1.0, 'that': 3.0, 'even': 1.0, 'while': 1.0, 'it': 2.0, 'older': 2.0, 'me': 1.0, 'not': 2.0, 'on': 1.0, 'months': 1.0, 'is': 2.0, 'personal': 1.0, 'really': 1.0, 'widest': 1.0, 'broader': 1.0, 'only': 1.0, 'much': 1.0, 'carrier': 1.0, '10': 1.0, 'which': 1.0, 'the': 9.0, 's': 3.0, 'a': 2.0, 't': 2.0, 'gemini': 1.0, 'my': 1.0, 'biggest': 1.0, 'bottom': 1.0, 'complaint': 1.0, 'dangle': 1.0, 'legs': 2.0, 'just': 1.0, 'by': 1.0, 'i': 2.0, 'mean': 1.0, 'isn': 1.0, 'ergo': 2.0, 'has': 1.0, 'padded': 1.0, 'comfortable': 2.0, 'for': 2.0, 'everywhere': 1.0, 'or': 1.0, 'good': 1.0, 'thickly': 1.0, 'them': 1.0}
Word element => {'comfortable': 1.0, 'or': 1.0, 'up': 1.0, 'walking': 1.0, 'm': 1.0, 'and': 2.0, 'through': 1.0, 'it': 3.0, 'floor': 1.0, 'be': 1.0, 'down': 1.0, 'results': 1.0, 'falls': 1.0, 'becco': 1.0, 'the': 3.0, 'till': 1.0, 'is': 1.0, 'lbs': 1.0, 'now': 1.0, 'sitting': 1.0, 'but': 1.0, 'just': 1.0, 'me': 2.0, 'not': 1.0, 'i': 3.0, 'guess': 1.0, 'right': 1.0, 'fine': 1.0, 'worse': 1.0, 'slides': 1.0, 'push': 1.0, 'if': 1.0, 'recently': 1.0, 'skinny': 2.0, 'also': 1.0, '5': 1.0, 'legs': 1.0, 'on': 2.0, '3': 1.0, '122': 1.0, 'so': 1.0, 'would': 1.0, 'fit': 1.0, 'for': 1.0, 'person': 1.0, 'that': 1.0, 'baby': 1.0, 'stairs': 1.0, 'a': 1.0, 's': 1.0, 'dangling': 1.0, 'prevent': 1.0, 'from': 1.0}
Word element => {'me': 1.0, 'for': 1.0, 'finding': 1.0, '10': 1.0, 'husbad': 1.0, '5': 2.0, 'weight': 1.0, 'height': 1.0, 'back': 3.0, 'but': 1.0, 'uncomfortable': 1.0, 'have': 2.0, 'hurts': 1.0, 'side': 1.0, 'padding': 1.0, 'the': 9.0, 'heavy': 1.0, 'thing': 1.0, 'no': 2.0, 'carry': 1.0, '90th': 1.0, '3': 1.0, 'on': 3.0, 'best': 1.0, 'problems': 2.0, 'kind': 1.0, 'son': 1.0, 'there': 1.0, 'loves': 1.0, 'that': 1.0, 'sling': 4.0, 'to': 2.0, 'was': 1.0, 'continue': 1.0, 'much': 1.0, 'a': 3.0, 'has': 1.0, 'percentile': 1.0, 'this': 1.0, 'little': 2.0, 'will': 1.0, 'also': 1.0, 'moby': 2.0, 'am': 1.0, 'you': 1.0, 'is': 5.0, 'connecting': 1.0, 'right': 1.0, 'practice': 1.0, 'connectors': 1.0, '4': 1.0, 'complicated': 1.0, 'i': 3.0, 'too': 1.0, 'and': 4.0, 'in': 1.0, 'bjorn': 3.0, 'great': 2.0, 'until': 1.0, 'gemini': 1.0, 'my': 3.0, 'it': 1.0, 'month': 1.0, 'got': 1.0}
Word element => {'recommend': 1.0, 'would': 1.0, 'for': 1.0, 'durable': 1.0, 'should': 1.0, 'really': 1.0, 'material': 2.0, 'cheap': 1.0, 'made': 1.0, 'hood': 2.0, 'nap': 1.0, 'break': 1.0, 'secure': 1.0, 'strings': 1.0, 'barely': 1.0, 'hands': 1.0, 'be': 2.0, 'two': 1.0, 'little': 1.0, 'why': 1.0, 'know': 1.0, 'feature': 1.0, 'possibly': 1.0, 'soon': 1.0, 'there': 2.0, 'concern': 1.0, 'you': 2.0, 'half': 1.0, 'used': 1.0, 'mechanism': 1.0, 'on': 1.0, 'apart': 2.0, 'reach': 2.0, 'way': 2.0, 'an': 1.0, 'all': 1.0, 'often': 2.0, 'buckle': 4.0, 'doesn': 1.0, 'waist': 2.0, 'without': 1.0, 'pain': 1.0, 'gets': 1.0, 'series': 1.0, 'a': 7.0, 'first': 1.0, 'are': 3.0, 'features': 1.0, 'but': 1.0, 'saftey': 1.0, '2': 1.0, 'will': 2.0, 'could': 2.0, 't': 5.0, 'we': 1.0, 'wasn': 1.0, 'convenience': 1.0, 'out': 2.0, 'actual': 1.0, 'try': 1.0, 'one': 2.0, 'by': 1.0, 'when': 1.0, 'traveling': 1.0, 'point': 1.0, 'started': 1.0, 'baby': 3.0, 'them': 2.0, 'they': 3.0, 'comfort': 1.0, 'comfortably': 1.0, 'he': 7.0, 'design': 1.0, 'moby': 1.0, '6': 1.0, 'undone': 1.0, 'my': 1.0, 'looks': 3.0, 'this': 7.0, 'have': 5.0, 'beco': 3.0, 'bjorn': 2.0, 'secured': 1.0, 'beats': 1.0, 'in': 4.0, 'reason': 1.0, 'using': 1.0, 'hand': 1.0, 'comfortable': 2.0, 'great': 2.0, 'until': 1.0, 'spot': 1.0, 'fading': 1.0, 'wrap': 1.0, 'heck': 1.0, 'coming': 2.0, 'i': 9.0, '4': 1.0, 'as': 5.0, 'to': 6.0, 'any': 1.0, 'son': 1.0, 'if': 1.0, 'bigger': 1.0, 'still': 2.0, 'very': 1.0, 'please': 2.0, 'grew': 1.0, 'and': 14.0, 'carrier': 4.0, 'place': 1.0, 'reaches': 1.0, 'terms': 1.0, 'carry': 1.0, 'control': 1.0, 'about': 1.0, 'was': 1.0, 'lbs': 1.0, 'filled': 1.0, 'at': 1.0, 'is': 5.0, 'his': 1.0, 'around': 2.0, 'also': 2.0, 'woven': 1.0, 'the': 19.0, 'of': 8.0, 'these': 2.0, 'once': 2.0, 'head': 1.0, 'can': 2.0, 'so': 3.0, 'didn': 1.0, 'safety': 3.0, 'strap': 1.0, 'difficult': 1.0, 'loves': 1.0, 'squirm': 1.0, 'much': 1.0, 'face': 1.0, 'best': 1.0, 'now': 1.0, 'no': 2.0, 'limit': 1.0, '18': 1.0, 'already': 2.0, 'it': 5.0, 'him': 2.0, 'definitely': 1.0, 'better': 1.0, 'pack': 2.0, 'think': 1.0, 'since': 1.0, 'washed': 1.0, 'll': 1.0, 'anyway': 1.0, 'use': 5.0, 'get': 2.0, 'months': 3.0, 'negatives': 1.0, 'weight': 1.0, 've': 1.0, 'more': 2.0, 'cleaned': 1.0, 'not': 1.0, 'had': 1.0, 'that': 2.0, 'because': 1.0, 'problems': 1.0, 'with': 2.0, 'after': 1.0, 'daily': 1.0, 'cotton': 1.0, 'shoulder': 1.0, 'don': 2.0, 'buckles': 3.0}
Word element => {'pads': 1.0, 'days': 1.0, 'selling': 1.0, 'ended': 1.0, 'so': 1.0, 'missing': 1.0, 'whole': 1.0, 'hood': 1.0, 'lot': 1.0, 'one': 1.0, 'petite': 1.0, 'sucking': 1.0, 'would': 1.0, 'anymore': 1.0, 'carried': 1.0, 'old': 1.0, '5': 1.0, 'thing': 1.0, '2': 1.0, '45lbs': 1.0, 'limit': 1.0, 'weight': 1.0, 'about': 1.0, 'child': 1.0, 'here': 1.0, 'weird': 1.0, 'have': 1.0, 'concerned': 1.0, 'because': 1.0, 'padded': 1.0, 'thinner': 1.0, '10': 1.0, 'for': 1.0, 'receive': 1.0, 'a': 9.0, 'continue': 1.0, 's': 2.0, 'narrower': 1.0, 'yr': 1.0, 'gemini': 5.0, 'another': 1.0, 'me': 1.0, 'my': 4.0, 'to': 3.0, 'fits': 1.0, 'all': 1.0, 'wanted': 1.0, 'or': 1.0, 'need': 1.0, 'fit': 2.0, 't': 4.0, 'along': 1.0, 'did': 1.0, 'again': 1.0, 'happened': 1.0, 'not': 3.0, 'itself': 1.0, 'forward': 1.0, 'started': 1.0, 'baby': 2.0, 'just': 2.0, 'didn': 2.0, 'after': 2.0, 'and': 8.0, 'pocket': 1.0, 'carrier': 3.0, 'back': 2.0, 'researching': 1.0, 'really': 2.0, 'we': 1.0, 'difference': 2.0, 'fine': 1.0, 'm': 2.0, 'maneuvering': 1.0, 'in': 6.0, 'mostly': 1.0, 'moby': 1.0, 'love': 1.0, 'he': 1.0, 'the': 23.0, 'i': 17.0, 'well': 1.0, 'print': 1.0, 'but': 2.0, 'napping': 1.0, 'came': 1.0, 'interested': 1.0, 'carriers': 1.0, 'infant': 1.0, 'go': 1.0, 'figured': 1.0, 'overall': 1.0, 'lightly': 1.0, 'insert': 1.0, 'perfectly': 1.0, 'sore': 1.0, 'research': 1.0, 'oh': 1.0, 'with': 5.0, 'are': 1.0, 'plus': 1.0, 'first': 2.0, 'option': 1.0, 'still': 1.0, 'if': 1.0, 'don': 2.0, 'pleased': 1.0, 'up': 2.0, 'decided': 1.0, 'nearly': 1.0, 'like': 1.0, 'using': 1.0, 'miss': 1.0, 'noticeably': 1.0, 'body': 2.0, 'it': 5.0, 'ergo': 8.0, 'felt': 1.0, 'll': 1.0, 'return': 1.0, 'something': 1.0, 'straps': 1.0, 'new': 1.0, 'time': 1.0, 'use': 1.0, 'smaller': 3.0, 'do': 1.0, 'much': 2.0, 'put': 1.0, 'on': 2.0, 'few': 2.0, 'this': 2.0, 'lbs': 1.0, 'was': 4.0, 'facing': 1.0, 'while': 2.0, 'being': 1.0, 'very': 1.0, 'later': 2.0, 'around': 1.0, 'is': 6.0, '15lbs': 1.0, 'when': 1.0, 'what': 1.0, 'more': 1.0, 'woke': 1.0, 'second': 1.0, 'immediately': 1.0, 'hours': 1.0, 'better': 2.0, 'two': 1.0, 'little': 1.0, 'inches': 1.0, 'tested': 1.0, 'than': 1.0}
Word element => {'problem': 1.0, 'not': 1.0, 'used': 1.0, 'you': 1.0, 'times': 1.0, 'first': 1.0, 'few': 1.0, 'by': 1.0, 'get': 2.0, 'little': 1.0, 'that': 1.0, 'is': 2.0, 'its': 1.0, 'yourself': 1.0, 'only': 1.0, 'would': 1.0, 'does': 1.0, 'complaint': 1.0, 'down': 1.0, 'on': 1.0, 'your': 2.0, 'has': 1.0, 'at': 1.0, 'support': 1.0, 'complicated': 1.0, 'i': 1.0, 'it': 3.0, 'pain': 1.0, 'this': 1.0, 'with': 2.0, 'good': 1.0, 'shoulders': 1.0, 'carriers': 2.0, 'wife': 1.0, 'comfortable': 1.0, 'beco': 1.0, 'most': 1.0, 'every': 1.0, 'versatile': 1.0, 'bar': 1.0, 'throughout': 1.0, 'unlike': 1.0, 'child': 1.0, 'similar': 1.0, 'and': 5.0, 'other': 2.0, 'of': 2.0, 'distributing': 1.0, 'hips': 1.0, 'to': 2.0, 'waist': 1.0, 'any': 1.0, 'job': 1.0, 'the': 4.0, 'weight': 1.0, 'never': 1.0, 'eventually': 1.0, 'my': 2.0, 'take': 1.0, 's': 1.0, 'a': 4.0, 'we': 2.0, 'walks': 1.0, 'back': 1.0, 'evening': 1.0, 'have': 1.0, 'which': 1.0, 'like': 1.0}
Word element => {'with': 1.0, 'happy': 1.0, 'attributes': 1.0, 'are': 1.0, 'to': 1.0, 'waist': 1.0, 'straps': 1.0, 'padded': 1.0, '1': 1.0, 'and': 5.0, 'very': 3.0, 'old': 1.0, 'now': 1.0, 'belt': 1.0, 'was': 1.0, 's': 1.0, 'months': 2.0, 'i': 5.0, '4': 1.0, 'about': 1.0, 'daughter': 2.0, 'this': 3.0, 'shoulders': 1.0, 'both': 1.0, 'absolutely': 1.0, 'still': 1.0, 'lb': 1.0, 'love': 1.0, 'which': 1.0, 'using': 1.0, 'since': 1.0, 've': 1.0, 'it': 2.0, 'she': 1.0, 'been': 1.0, 'purchase': 1.0, 'my': 3.0, 'use': 1.0, '112': 1.0, 'comfortably': 1.0, '5': 1.0, 'admittedly': 1.0, 'or': 1.0, 'not': 2.0, 'strong': 1.0, 'support': 1.0, 'carrying': 1.0, 'shoulder': 2.0, '2': 2.0, 'but': 1.0, 'carrier': 2.0, 'back': 2.0, 'does': 1.0, 'even': 1.0, '11': 1.0, 'lbs': 1.0, 'am': 2.0, 'hurt': 1.0, 'the': 1.0, 'whatsoever': 1.0, 'wide': 1.0, '24': 1.0}
Word element => {'lingers': 1.0, 'everything': 1.0, 'from': 1.0, 'picks': 1.0, 'getting': 1.0, 'did': 1.0, 'washing': 1.0, 'prior': 1.0, 'screaming': 1.0, 'car': 1.0, 'wonderful': 1.0, 'feeding': 1.0, 'each': 1.0, 'after': 2.0, 'minutes': 2.0, '30': 1.0, 'reflux': 1.0, 'shop': 1.0, 'discovered': 1.0, 'head': 1.0, 'hold': 1.0, 'sit': 1.0, 'when': 1.0, 'better': 2.0, 'think': 1.0, 'his': 3.0, 'seems': 1.0, 'see': 1.0, 'face': 1.0, 'sometimes': 1.0, 'breathe': 1.0, 'still': 1.0, 'if': 1.0, 'water': 1.0, 'up': 3.0, 'folded': 1.0, 'cold': 1.0, 'part': 1.0, 'recently': 1.0, 'top': 1.0, 'also': 2.0, 'strong': 1.0, 'smells': 1.0, 'really': 1.0, 'fade': 2.0, 'want': 1.0, 'travis': 1.0, 'smell': 2.0, 'periods': 1.0, 'bought': 2.0, 'hate': 1.0, 'son': 1.0, 'returned': 1.0, 'way': 1.0, 'do': 1.0, 'put': 2.0, 'store': 1.0, 'was': 1.0, 'easy': 1.0, 'get': 1.0, 'all': 3.0, 'wanted': 1.0, 'soaked': 1.0, 'done': 1.0, 'wash': 2.0, 'use': 3.0, 'tough': 1.0, 'd': 1.0, 'regret': 1.0, 'both': 2.0, 'has': 2.0, 'trips': 1.0, 'low': 1.0, 'to': 9.0, 'high': 1.0, 'knew': 1.0, 'never': 1.0, 'would': 1.0, 'something': 1.0, 'quite': 1.0, 'carrier': 4.0, 'afraid': 1.0, 'wrap': 4.0, 'asleep': 1.0, 'a': 7.0, 'we': 3.0, 'because': 1.0, 'that': 3.0, 'white': 2.0, 'loves': 2.0, 'using': 1.0, 'insert': 1.0, 'and': 12.0, 'black': 2.0, 'there': 1.0, 'soon': 1.0, 'time': 2.0, 'tall': 1.0, 'me': 1.0, 'my': 6.0, 'fast': 1.0, 'i': 18.0, 'grocery': 2.0, 'love': 1.0, 'far': 1.0, 'he': 4.0, '6': 1.0, 'how': 1.0, 'vinegar': 1.0, 'newborn': 1.0, 'wasn': 1.0, 'strange': 1.0, 't': 2.0, 'separate': 1.0, 'took': 1.0, 'instead': 1.0, 'searched': 1.0, 'started': 1.0, 'baby': 3.0, 'this': 6.0, 'allows': 1.0, 'with': 2.0, 'of': 1.0, 'the': 9.0, 'woven': 3.0, 'work': 1.0, 'but': 3.0, 'so': 1.0, 'can': 6.0, 'for': 7.0, '10': 2.0, 'lb': 1.0, 'silent': 1.0, 'as': 2.0, 'falls': 1.0, 'seat': 1.0, 'm': 2.0, 'in': 6.0, 'said': 1.0, 'it': 11.0, 'him': 1.0, 'be': 3.0, 'lot': 1.0, 'pattern': 1.0, 'one': 1.0, 'too': 1.0, 'held': 2.0, 'day': 1.0, 'not': 3.0, 'lint': 1.0, 'upright': 1.0, 'almost': 2.0, 'now': 1.0, 'tiger': 1.0, 'husband': 2.0, 'no': 1.0, 'plus': 1.0, 'are': 1.0, '5': 1.0, '11': 1.0, 'at': 3.0, 'look': 1.0, 'is': 3.0, 'peace': 1.0, '1': 2.0, 'comfortably': 1.0, 'could': 1.0, 'will': 4.0, 'works': 1.0, 'without': 2.0, 'anything': 1.0, 'tell': 2.0, 'its': 1.0, 'comfy': 1.0, 'update': 1.0, 'on': 1.0, 'long': 1.0}
Word element => {'but': 1.0, 'ergo': 1.0, 'better': 1.0, 'much': 1.0, 'love': 1.0, 'wanted': 1.0, 'off': 1.0, 'hard': 1.0, 'sporadically': 1.0, 'than': 1.0, 'because': 1.0, 'just': 1.0, 'my': 1.0, 'the': 3.0, 'i': 6.0, 'face': 1.0, 'tried': 2.0, 'things': 1.0, 'it': 6.0, 'this': 2.0, 'with': 1.0, 'he': 2.0, 'ended': 1.0, 'carrier': 2.0, 'great': 1.0, 'seemed': 2.0, 'and': 5.0, 'return': 1.0, 'hate': 1.0, 'up': 1.0, 'of': 1.0, 'like': 1.0, 'others': 1.0, 'putting': 1.0, 'him': 1.0, 'never': 1.0, 'purchasing': 1.0, 'had': 3.0, 'was': 1.0, 'to': 5.0, 'heard': 1.0, 'really': 1.0, 'every': 1.0, 'got': 1.0, 'son': 1.0, 'when': 1.0, 'could': 1.0, 'a': 3.0, 'out': 1.0, 'newborn': 1.0, 'in': 1.0, 'also': 1.0, 'so': 1.0, 'time': 2.0, 'on': 1.0, '3': 1.0, 'put': 1.0, 'good': 1.0, 'months': 1.0, 'hang': 1.0, 'buckles': 1.0}
Word element => {'your': 1.0, 'if': 1.0, 'carrier': 1.0, 'recommend': 2.0, 'others': 1.0, 'person': 1.0, 'it': 2.0, 'when': 1.0, 'mind': 1.0, 'over': 1.0, 'don': 1.0, 'really': 2.0, 'secure': 1.0, 'this': 1.0, 'pain': 1.0, 'safest': 1.0, 'for': 4.0, 'beco': 2.0, 'comfortable': 1.0, 'carriers': 1.0, 'most': 1.0, 'but': 2.0, 'i': 5.0, 'baby': 3.0, 'front': 1.0, 't': 1.0, 'a': 2.0, 'from': 2.0, 'both': 1.0, 'm': 1.0, 'best': 1.0, 'and': 5.0, 'at': 1.0, 'option': 1.0, '5mos': 2.0, 'clips': 1.0, 'comes': 1.0, 'more': 1.0, 'holds': 1.0, 'is': 4.0, 'say': 1.0, 'least': 1.0, 'all': 1.0, 'to': 3.0, 'wrap': 1.0, 'the': 13.0, 'loves': 1.0, 'that': 1.0, 'moby': 2.0, 'he': 1.0, 'much': 1.0, 'only': 1.0, 'down': 1.0, 'especially': 1.0, 'facing': 1.0, 'newborn': 1.0, 'out': 1.0, 'cons': 1.0, 'fits': 1.0, 'gemini': 1.0, 'my': 1.0, 'comfort': 1.0, 'well': 1.0, 'ergo': 1.0, 'are': 3.0, 'larger': 1.0, 'there': 1.0, 'about': 1.0, 'no': 1.0, 'shop': 1.0, 'they': 1.0, 'pocket': 1.0, 'like': 1.0, 'younger': 1.0, 'must': 1.0, 'small': 1.0, 'items': 1.0, 'safety': 2.0}
Word element => {'because': 1.0, 'baby': 1.0, 'one': 1.0, 'ones': 1.0, 'the': 5.0, 'get': 1.0, 'and': 1.0, 'have': 2.0, 'chest': 3.0, 'don': 2.0, 'if': 1.0, 'come': 1.0, 'can': 1.0, 'lost': 1.0, '6': 1.0, 'pay': 1.0, 'new': 1.0, 'undone': 1.0, 'is': 2.0, 'beco': 1.0, 'said': 1.0, '50': 1.0, 'call': 1.0, 'time': 1.0, 'not': 1.0, 'responsible': 2.0, 't': 3.0, 'a': 1.0, 'going': 1.0, 'you': 5.0, 'when': 1.0, 'they': 2.0, 'accidentally': 1.0, 'falling': 2.0, 'even': 1.0, 'didn': 1.0, 'for': 1.0, 'intentionally': 1.0, 'it': 2.0, 'remove': 1.0, 'i': 1.0, 'customer': 1.0, 'to': 4.0, 'any': 1.0, 'center': 1.0, 'need': 1.0, 'strap': 3.0, 'are': 1.0, 'be': 1.0}
Word element => {'woman': 1.0, 'm': 1.0, 'of': 1.0, 'like': 1.0, 'also': 1.0, 'towards': 1.0, 'him': 1.0, 'position': 1.0, 'carrying': 1.0, 'moby': 2.0, 'beco': 2.0, 'fit': 1.0, 'for': 2.0, 'love': 1.0, 'comfortable': 3.0, 'great': 2.0, 'was': 3.0, 'to': 5.0, 'far': 1.0, 'favorite': 1.0, 'face': 1.0, 'wear': 2.0, 'is': 4.0, 'fits': 1.0, 'my': 4.0, 'i': 4.0, 'old': 1.0, 'the': 7.0, 'wrap': 1.0, 'a': 3.0, 'so': 1.0, 'sears': 1.0, 'this': 2.0, 'perfect': 1.0, 'pain': 1.0, 'small': 1.0, 'have': 1.0, 'carrier': 3.0, 'put': 3.0, 'on': 3.0, 'dr': 1.0, 'sling': 2.0, 'ring': 2.0, 'very': 1.0, 'facing': 1.0, 'son': 1.0, 'easiest': 1.0, 'me': 1.0, 'not': 2.0, 'and': 3.0, 'too': 1.0, 'easy': 1.0, 'it': 1.0, 'month': 1.0, 'that': 1.0, 'although': 1.0, 'newborn': 1.0, 'out': 1.0, 'but': 2.0, 'four': 1.0, 'can': 1.0, 'most': 1.0}
Word element => {'would': 1.0, 'phones': 1.0, 'but': 2.0, 'etc': 1.0, 'i': 3.0, 'tried': 1.0, 'old': 1.0, 'pockets': 1.0, 'enjoys': 1.0, 'overall': 1.0, 'keys': 1.0, 'and': 3.0, 'riding': 1.0, 'my': 1.0, 'downside': 1.0, 'back': 1.0, 'carrier': 2.0, 'this': 3.0, 'the': 3.0, 'months': 1.0, 'on': 1.0, '10': 1.0, 'development': 1.0, 'a': 2.0, 'there': 1.0, 'who': 1.0, 'at': 1.0, 'carry': 1.0, 'now': 1.0, 'recommend': 1.0, 'beast': 1.0, 'was': 2.0, 'to': 1.0, 'more': 1.0, 'is': 2.0, 'son': 1.0, 'still': 1.0, 'bjorn': 1.0, 'no': 1.0, 'about': 1.0, 'for': 1.0, 'comfortable': 1.0, 'bit': 1.0, 'only': 1.0, 'much': 1.0, 'less': 1.0, 'spine': 1.0, 'worried': 1.0, 'his': 1.0, 'loves': 1.0, 'that': 1.0, 'are': 1.0}
Word element => {'useful': 1.0, 'very': 1.0, 'be': 1.0, 'carry': 1.0, 'but': 1.0, 'out': 1.0, 'with': 1.0, 're': 1.0, 'facing': 2.0, 'gets': 2.0, 'us': 1.0, 'able': 1.0, 'wider': 1.0, 'of': 2.0, 'baby': 1.0, 'making': 2.0, 'adjustable': 1.0, 'more': 1.0, 'is': 2.0, 'about': 1.0, 'really': 1.0, 'highly': 1.0, 'strapped': 1.0, 'bigger': 1.0, 'option': 1.0, 'since': 1.0, 'base': 2.0, 'holding': 1.0, 'variety': 1.0, 'just': 1.0, 'were': 1.0, 'if': 1.0, 'small': 1.0, 'have': 1.0, 'will': 1.0, 'also': 1.0, 'seven': 1.0, 'recommend': 1.0, 'was': 6.0, 'or': 1.0, 'nyc': 1.0, 'older': 1.0, 'now': 2.0, 'husband': 1.0, 'when': 2.0, 'daughter': 1.0, 'so': 1.0, 'smaller': 2.0, 'my': 2.0, 'been': 1.0, 'that': 2.0, 'sling': 1.0, 'product': 1.0, 'for': 5.0, 'comfortable': 2.0, 'got': 1.0, 'use': 2.0, 'enjoyed': 1.0, 'carries': 1.0, 'this': 3.0, 'carrier': 4.0, 'd': 1.0, 's': 1.0, 'we': 5.0, 'a': 2.0, 'well': 1.0, 'used': 2.0, 'her': 4.0, 'the': 10.0, 'buckled': 1.0, 'replace': 1.0, 'one': 1.0, 'months': 1.0, 'think': 1.0, 'on': 2.0, 'extremely': 1.0, 'stick': 1.0, 'part': 1.0, 'while': 1.0, 'and': 5.0, 'me': 2.0, 'to': 5.0, 'our': 1.0, 'as': 2.0, 'side': 2.0, 'safer': 1.0, 'i': 7.0, 'she': 6.0, 'it': 3.0, 'felt': 1.0, 'trip': 1.0, 'like': 4.0, 'plane': 1.0, 'in': 2.0, 'than': 1.0, 'would': 1.0}
Word element => {'fussing': 1.0, 'without': 1.0, 'time': 1.0, 'out': 1.0, 'comfortable': 1.0, 'always': 1.0, 'should': 1.0, 'also': 1.0, 'correctly': 1.0, 'worn': 1.0, 'if': 1.0, 'hips': 1.0, 'low': 1.0, 'too': 1.0, 'portion': 1.0, 'waist': 1.0, 'found': 1.0, 've': 1.0, 'though': 1.0, 'wearing': 1.0, 'while': 1.0, 'strain': 4.0, 'little': 1.0, 'prevent': 1.0, 'very': 1.0, 'hang': 1.0, 'there': 3.0, 'enough': 1.0, 'old': 1.0, 'particular': 1.0, 'develop': 1.0, 'accidentally': 1.0, 'grow': 1.0, 'as': 1.0, 'to': 4.0, 'compression': 1.0, 'thus': 1.0, 'popular': 1.0, 'and': 7.0, 'do': 2.0, 'they': 2.0, 'position': 1.0, 'allow': 1.0, 'this': 5.0, 'purchased': 1.0, 'correct': 1.0, 'other': 1.0, 'an': 2.0, 'own': 1.0, 'have': 1.0, 'beco': 1.0, 'in': 5.0, 'allows': 1.0, 'with': 1.0, 'pace': 1.0, 'hip': 1.0, 'precious': 1.0, 'i': 7.0, 'feature': 2.0, 'dangle': 1.0, 'spine': 1.0, 'just': 1.0, 'at': 1.0, 'is': 10.0, 'because': 1.0, 'that': 4.0, 'when': 4.0, 'sit': 1.0, 'virtually': 1.0, 'eliminated': 2.0, 'reason': 1.0, 'color': 1.0, 'ergonomically': 1.0, 'be': 1.0, 'carriers': 1.0, 'which': 1.0, 'good': 1.0, 'different': 1.0, 's': 2.0, 't': 2.0, 'a': 4.0, 'important': 1.0, 'legs': 1.0, 're': 1.0, 'deal': 1.0, 'she': 1.0, 'baby': 2.0, 'of': 1.0, 'the': 8.0, 'strong': 1.0, 'long': 1.0, 'on': 2.0, 'impressed': 1.0, 'friendly': 1.0, 'neutral': 1.0, 'more': 1.0, 'babies': 2.0, 'husband': 1.0, 'will': 3.0, 'it': 3.0, 'wear': 3.0, 'insane': 1.0, 'their': 1.0, 'padding': 1.0, 'guy': 1.0, 'gender': 1.0, 'you': 1.0, 'able': 1.0, 'material': 1.0, 'stitching': 1.0, 'definitely': 1.0, 'enforced': 1.0, 'don': 1.0, 'buckles': 1.0, 'safety': 1.0, 'so': 1.0, 'can': 2.0, 'print': 1.0, 'but': 2.0, 'back': 3.0, 'most': 1.0, 'unbuckle': 1.0, 'great': 1.0, 'carrying': 1.0, 'cargo': 1.0, 'love': 1.0, 'for': 2.0, 'll': 1.0, 'carry': 2.0, 'daughter': 1.0, 'years': 1.0, 'positions': 1.0, 'was': 1.0, 'carrier': 3.0, 'my': 4.0, 'me': 1.0}
Word element => {'safe': 1.0, 'secure': 1.0, 'in': 1.0, 'being': 1.0, 'is': 1.0, 'importantly': 1.0, 'most': 1.0, 'everyone': 1.0, 'on': 1.0, 'good': 1.0, 'lucas': 1.0, 'picked': 1.0, 'wanted': 1.0, 'husband': 1.0, 'was': 1.0, 'pattern': 1.0, 'and': 4.0, 'get': 1.0, 'happy': 1.0, 'when': 1.0, 'daughter': 2.0, 'with': 2.0, 'looks': 1.0, 'it': 3.0, 'this': 1.0, 'supported': 1.0, 'so': 1.0, 'time': 1.0, 've': 1.0, 'use': 1.0, 'been': 1.0, 'i': 5.0, 'old': 1.0, 'body': 1.0, 'using': 1.0, 'feel': 1.0, 'comfortable': 1.0, 'for': 1.0, 'love': 1.0, 'the': 2.0, 'my': 4.0, 'purchase': 1.0, 'gemini': 1.0, 'carrier': 3.0, 'm': 1.0, 'both': 1.0, 'ling': 1.0, 'have': 1.0, '8': 1.0, 'to': 1.0, 'our': 1.0, 'grow': 1.0, 'arrived': 1.0, 'away': 1.0, 'weeks': 1.0, 'baby': 1.0, 'started': 1.0, 'wanting': 1.0, 'right': 1.0, 'could': 1.0, 'we': 3.0, 'a': 3.0, 's': 2.0, 'very': 1.0}
Word element => {'great': 1.0, 'quality': 1.0, 'help': 1.0, 'car': 1.0, 'home': 1.0, 'think': 1.0, 'on': 1.0, 'put': 1.0, 'easy': 1.0, 'so': 1.0, 'hours': 1.0, 'there': 1.0, 'out': 1.0, 'research': 1.0, 'this': 3.0, 'of': 1.0, '6': 1.0, 'at': 1.0, 'lot': 1.0, 'facing': 1.0, 'can': 2.0, 'but': 1.0, 'tried': 1.0, 'old': 1.0, 'my': 3.0, 'high': 2.0, 'hurt': 1.0, 'and': 3.0, 'any': 1.0, 'to': 1.0, 'as': 1.0, 'a': 6.0, 'use': 1.0, 'front': 1.0, 'that': 1.0, 'i': 5.0, '4': 1.0, 'stay': 1.0, 'not': 1.0, 'excellent': 1.0, 'new': 1.0, 'would': 1.0, 'hurting': 1.0, 'mom': 1.0, 'store': 1.0, 'was': 3.0, 'did': 1.0, 'buy': 1.0, 'looking': 1.0, 'happily': 1.0, 'for': 2.0, 'one': 1.0, 'back': 2.0, 'carrier': 3.0, 'different': 1.0, 'tag': 1.0, 'carriers': 1.0, 'is': 3.0, 'worried': 1.0, 'every': 1.0, 'about': 1.0, 'price': 1.0, 'without': 2.0, 'the': 2.0, 'sits': 1.0, 'or': 1.0, 'worth': 1.0, 'penny': 1.0, 'it': 2.0, 'month': 1.0, 'in': 3.0}
Word element => {'or': 1.0, 'seller': 1.0, 'no': 1.0, 'got': 1.0, 'work': 1.0, 'would': 1.0, 'don': 1.0, 'so': 1.0, 'when': 1.0, 'out': 2.0, 'marks': 1.0, 'facing': 2.0, 'it': 3.0, 'full': 1.0, 'this': 3.0, 'shoulders': 1.0, 'and': 4.0, 'amazon': 1.0, 'hassle': 1.0, 'front': 1.0, 'on': 2.0, 'country': 1.0, 'portion': 1.0, 'back': 1.0, 'allowed': 1.0, 'carrier': 2.0, 'in': 1.0, 'plane': 1.0, 'saw': 1.0, 'baby': 3.0, 'trip': 1.0, 'few': 1.0, 'i': 5.0, 'tried': 1.0, 'bought': 1.0, 'one': 1.0, 'carry': 2.0, 'imagine': 1.0, 'of': 1.0, 'bottom': 1.0, 'heavier': 1.0, 'the': 5.0, 'with': 2.0, 'red': 1.0, 'cross': 1.0, 'refund': 1.0, 'was': 2.0, 'unfortunately': 1.0, 'my': 3.0, 'returned': 1.0, 'straps': 1.0, 'dug': 1.0, 'babies': 1.0, 'that': 1.0, 'into': 1.0, 't': 1.0, 'we': 1.0, 'a': 2.0, 's': 1.0, 'inner': 1.0, 'legs': 1.0, 'from': 2.0, 'if': 1.0, 'fr': 1.0, 'used': 1.0, 'average': 1.0, 'because': 1.0, 'sized': 1.0}
Word element => {'expected': 1.0, 'nice': 1.0, 'not': 1.0, 'was': 1.0, 'since': 1.0, 'must': 1.0, 'decorating': 1.0, 'but': 1.0, 'go': 1.0, 'a': 5.0, 'be': 2.0, 'actually': 1.0, 'product': 1.0, 'would': 1.0, 'disney': 1.0, 'rather': 1.0, 'of': 3.0, 'up': 1.0, 'quality': 1.0, 'baby': 2.0, 'price': 2.0, 'ended': 1.0, 'is': 1.0, 'think': 1.0, 'on': 1.0, 'the': 4.0, 'gifts': 1.0, 'blanket': 1.0, 'i': 5.0, 'had': 1.0, 'thought': 1.0, 'based': 1.0, 'this': 2.0, 'label': 1.0, 'gave': 1.0, 'gift': 1.0, 'as': 3.0, 'actual': 1.0, 'to': 3.0, 'friend': 1.0, 'few': 1.0, 'nursery': 1.0, 'in': 1.0, 'because': 1.0, 'than': 2.0, 'having': 1.0, 'with': 1.0, 'mickey': 1.0, 'and': 1.0, 'higher': 1.0, 'it': 5.0, 'she': 1.0, 'liked': 1.0, 'purchase': 1.0, 'other': 1.0}
Word element => {'princess': 1.0, 'on': 1.0, 'is': 1.0, 'thinks': 1.0, 'the': 2.0, 'my': 1.0, 'order': 1.0, 'exactly': 1.0, 'we': 2.0, 'was': 1.0, 'would': 1.0, 'she': 1.0, 'appeared': 1.0, 'it': 3.0, 'were': 1.0, 'daughter': 1.0, 'online': 1.0, 'again': 1.0, 'pleased': 1.0, 'plaque': 1.0, 'described': 1.0, 'as': 1.0, 'and': 1.0}
Word element => {'though': 1.0, 'cute': 1.0, 'the': 2.0, 'really': 1.0, 'is': 3.0, 'didn': 1.0, 'know': 2.0, 'just': 1.0, 'not': 1.0, 'and': 4.0, 'mom': 1.0, 'have': 1.0, 'great': 2.0, 'this': 1.0, 'it': 2.0, 'only': 1.0, 'mat': 2.0, 'are': 1.0, 'periods': 1.0, 'am': 1.0, 'new': 1.0, 'something': 2.0, 'that': 4.0, 'swat': 1.0, 'to': 2.0, 'grab': 1.0, 'mirror': 1.0, 'd': 1.0, 'for': 4.0, 'had': 1.0, 'what': 1.0, 'down': 1.0, 'long': 1.0, 'i': 2.0, 'allowed': 1.0, 'development': 1.0, 'toys': 2.0, 'hang': 1.0, 'entertained': 1.0, 'my': 1.0, 'lo': 1.0, 't': 1.0, 'a': 2.0, 's': 1.0, 'will': 1.0, 'at': 1.0, 'keep': 1.0, 'your': 1.0, 'time': 1.0, 'child': 1.0, 'rather': 1.0, 'of': 1.0}
Word element => {'says': 1.0, 'does': 2.0, 'gal': 1.0, 'a': 1.0, 'fits': 1.0, 'we': 1.0, 'washed': 1.0, 'times': 1.0, 'can': 1.0, '13': 1.0, 'it': 3.0, 'what': 1.0, 'many': 1.0, 'haven': 1.0, 'and': 1.0, 'any': 1.0, 'have': 1.0, 't': 1.0, 'trash': 1.0, 'in': 1.0, 'problems': 1.0, 'had': 1.0}
Word element => {'washes': 1.0, 'hold': 1.0, 'll': 2.0, 'take': 1.0, 'we': 1.0, 'reviews': 1.0, 'trapped': 1.0, 'doesn': 2.0, 'dries': 1.0, 'rack': 1.0, 'filled': 1.0, 'hang': 2.0, 'with': 6.0, 'weren': 1.0, 'plenty': 1.0, 'because': 2.0, 'easily': 3.0, 'covers': 1.0, 'like': 2.0, 'on': 3.0, 'long': 1.0, 'washed': 1.0, 've': 2.0, 'were': 1.0, 'water': 3.0, 'pleased': 1.0, 'had': 5.0, 'use': 1.0, 'takes': 1.0, 'wash': 2.0, 'genius': 1.0, 'could': 1.0, 'bum': 1.0, 'put': 1.0, 'much': 1.0, 'material': 2.0, 'same': 2.0, 'from': 3.0, 'multitude': 1.0, 'made': 2.0, 'good': 1.0, 'washable': 1.0, 'carry': 1.0, 'say': 1.0, 'liner': 1.0, 'is': 6.0, 'at': 2.0, 'another': 1.0, 'didn': 1.0, 'but': 5.0, 'diapers': 10.0, 'enter': 1.0, 'book': 1.0, 'keep': 1.0, 'am': 2.0, 'throw': 1.0, '4': 2.0, 'closed': 1.0, 'i': 16.0, 'performs': 1.0, 'well': 3.0, 'putting': 1.0, 'link': 1.0, 'review': 1.0, 'options': 1.0, 'together': 1.0, 'in': 10.0, 'pul': 2.0, 'blueberry': 1.0, 'before': 2.0, 'fit': 2.0, 'spare': 1.0, 'for': 4.0, '0': 1.0, 'hot': 1.0, 'found': 1.0, 'this': 4.0, 'few': 1.0, 'wanted': 1.0, 'bathroom': 1.0, 'the': 37.0, 'of': 7.0, 'up': 5.0, 'washing': 3.0, 'diaper': 2.0, 'as': 6.0, 'heavy': 2.0, 'clothes': 1.0, 'glad': 1.0, 'leak': 2.0, 'bag': 11.0, 'a': 14.0, 'small': 2.0, 'large': 1.0, 'inserts': 4.0, 'cold': 1.0, 'to': 8.0, 'pail': 3.0, 'job': 1.0, 'other': 1.0, 'do': 1.0, 'either': 1.0, 'boy': 1.0, 'only': 1.0, 'toggle': 1.0, 'would': 1.0, 'warm': 1.0, 'just': 3.0, 'and': 10.0, 'one': 1.0, 'so': 4.0, 'effort': 1.0, 'or': 2.0, 'pocket': 1.0, 'closure': 1.0, 'make': 1.0, 'instructions': 1.0, 'sure': 1.0, 'you': 2.0, 'empty': 1.0, 'out': 2.0, 'there': 4.0, 'remaining': 1.0, 'close': 1.0, 'through': 3.0, 'into': 1.0, 'proof': 1.0, 'sometimes': 1.0, 'quantity': 1.0, 'little': 2.0, 'gets': 2.0, 'holds': 1.0, 'size': 1.0, 'option': 1.0, 'wise': 1.0, 'dry': 1.0, 'once': 1.0, 'big': 1.0, 'an': 1.0, '22': 2.0, 'did': 1.0, 'time': 1.0, 'too': 2.0, '3': 1.0, 'taking': 1.0, 'all': 2.0, 'saw': 1.0, 'way': 1.0, 'don': 2.0, 'want': 1.0, 'go': 1.0, 'door': 1.0, 'smell': 1.0, 'does': 2.0, 'get': 1.0, 'if': 1.0, 'damp': 1.0, 'wet': 1.0, 'storage': 2.0, 'otherwise': 1.0, 'elastic': 1.0, 'closes': 1.0, 'securely': 1.0, 'drawstring': 4.0, 'drawback': 1.0, 'any': 3.0, 'smells': 1.0, 'slide': 1.0, 'very': 3.0, 'price': 1.0, 'pay': 1.0, 'are': 1.0, 'issues': 1.0, 'room': 1.0, 'my': 1.0, 'more': 1.0, 'perfect': 1.0, 'it': 14.0, 'cycles': 1.0, 'own': 1.0, 'seems': 2.0, 'off': 2.0, 'remain': 1.0, 'over': 1.0, 'serve': 1.0, 'maybe': 1.0, 'without': 1.0, 'hook': 2.0, 'behind': 1.0, 'mentioned': 1.0, 'that': 4.0, 'fills': 1.0, 't': 7.0, 'hanging': 1.0, 'cloth': 1.0, 'end': 1.0, 'haven': 1.0, 'containing': 1.0, 'said': 1.0, 'machine': 2.0, 'rinse': 2.0, 'stool': 1.0, 'wring': 1.0, 'everything': 1.0, 'them': 1.0}
Word element => {'but': 1.0, 'bottles': 2.0, 'brown': 1.0, 'dishwasher': 1.0, 'in': 2.0, 'dr': 1.0, 'washed': 1.0, 'there': 1.0, 'of': 1.0, 'fading': 1.0, 'personalize': 1.0, 'clean': 1.0, 'them': 1.0, 'ballpoint': 1.0, 'labels': 1.0, 'bottle': 1.0, 'absolutely': 1.0, 'love': 1.0, 'for': 1.0, 'used': 1.0, 'they': 2.0, 'pen': 1.0, 'has': 1.0, 'slightly': 1.0, 'the': 4.0, 'are': 4.0, 's': 1.0, 'a': 2.0, 'thse': 1.0, 'is': 1.0, 'to': 3.0, 'now': 1.0, 'easy': 1.0, 'use': 3.0, 'it': 1.0, 'only': 1.0, 'few': 1.0, 'days': 1.0, 'no': 1.0, 'fits': 1.0, 'my': 1.0, 'perfectly': 1.0, '8': 1.0, 'complaint': 1.0, 'been': 1.0, 'that': 1.0, 'writing': 1.0, 'and': 2.0, 'too': 1.0, 'big': 1.0, 'i': 4.0, 'prior': 1.0, '4': 1.0, 'signs': 1.0, 'oz': 2.0}
Word element => {'usable': 1.0, 'old': 1.0, 'of': 1.0, 'over': 1.0, 'still': 2.0, 'hot': 1.0, 'not': 1.0, 'emerse': 1.0, 'they': 1.0, 'her': 2.0, 'heats': 1.0, 'my': 1.0, 'down': 1.0, 'new': 1.0, 'permanently': 1.0, 'biggest': 1.0, 'sized': 1.0, 'label': 1.0, 'then': 2.0, 'use': 2.0, 'every': 1.0, 'but': 2.0, 'can': 2.0, 'size': 1.0, 'personalized': 1.0, 'day': 4.0, 'the': 10.0, 'viola': 1.0, 'and': 3.0, 'which': 2.0, 'when': 1.0, 'you': 2.0, 'idea': 1.0, 'simply': 1.0, 'bottle': 1.0, 'smaller': 1.0, 'needs': 1.0, 'have': 1.0, 'band': 2.0, 'perfect': 2.0, 'theory': 1.0, 'this': 1.0, 'date': 3.0, 'with': 1.0, 'more': 1.0, 'comes': 1.0, 'fall': 1.0, 'is': 2.0, 's': 2.0, 'we': 2.0, 'a': 3.0, 'fabulous': 1.0, 'write': 3.0, 'unfortunately': 1.0, 'boil': 1.0, 're': 1.0, 'off': 1.0, 'for': 2.0, 'next': 1.0, 'fix': 1.0, 'from': 1.0, 'labeling': 1.0, 'sippy': 1.0, 'wipe': 1.0, 'them': 1.0, 'at': 1.0, 'other': 1.0, 'care': 2.0, 'help': 1.0, 'to': 3.0, 'our': 1.0, 'shadow': 1.0, 'water': 1.0, 'name': 1.0, 'daughter': 1.0, 'cup': 1.0, 'bottles': 3.0, 'bands': 2.0, 'in': 2.0, 'compaired': 1.0}
Word element => {'they': 1.0, 'choices': 1.0, 'than': 1.0, 'less': 1.0, 'are': 2.0, 'though': 1.0, 'plus': 1.0, 'guess': 1.0, 'very': 1.0, 'rubbing': 1.0, 'anything': 1.0, 'remove': 1.0, 'yes': 1.0, 'time': 2.0, 'same': 2.0, 'at': 2.0, 'well': 1.0, 'won': 1.0, 'has': 1.0, 'this': 1.0, 'however': 1.0, 'ok': 1.0, 'that': 1.0, 'been': 3.0, 'by': 1.0, 'few': 3.0, 'just': 1.0, 'not': 1.0, 'purpose': 1.0, 'labels': 2.0, 'feature': 1.0, 'i': 7.0, 'have': 3.0, 'offer': 1.0, 'ordered': 2.0, 'up': 1.0, 'freedom': 1.0, 'child': 1.0, 'for': 1.0, 'expensive': 2.0, 'before': 2.0, 'makes': 1.0, 'point': 2.0, 'writing': 2.0, 'serve': 1.0, 'also': 2.0, 'pens': 1.0, 'bug': 2.0, 'these': 4.0, 'the': 8.0, 'to': 5.0, 'bottles': 1.0, 'label': 1.0, 'my': 1.0, 'could': 1.0, 't': 1.0, 's': 1.0, 'a': 5.0, 'get': 1.0, 'mark': 1.0, 'difficult': 1.0, 'gets': 1.0, 'washes': 1.0, 'better': 1.0, 'their': 1.0, 'container': 1.0, 'color': 1.0, 'reasons': 1.0, 'experiment': 1.0, 'easiest': 1.0, 'ball': 2.0, 'dull': 1.0, 'say': 1.0, 'more': 1.0, 'is': 2.0, 'after': 1.0, 'like': 1.0, 'using': 1.0, 'simple': 1.0, 'inch': 2.0, 'sending': 1.0, 'off': 1.0, 'nice': 1.0, 'school': 1.0, 'with': 1.0, 'good': 1.0, 'different': 1.0, 'but': 2.0, 'work': 1.0}
Word element => {'use': 1.0, 'i': 1.0, 'lasted': 1.0, 'time': 1.0, 'to': 1.0, 'had': 1.0, 'hard': 1.0, 'durable': 1.0, 'and': 2.0, 'easy': 1.0, 'home': 1.0, 'for': 1.0, 'childcare': 1.0, 'system': 1.0, 'a': 3.0, 'have': 2.0, 'finding': 1.0, 'labeling': 1.0, 'family': 1.0, 'are': 1.0, 'individual': 1.0, 'cups': 1.0, 'that': 1.0, 'the': 1.0, 'these': 1.0, 'great': 1.0}
Word element => {'also': 1.0, 'for': 1.0, 'labeling': 1.0, 'bottle': 1.0, 'of': 1.0, 'sharpie': 1.0, 'it': 1.0, 'with': 1.0, 'electrical': 1.0, 'me': 1.0, 'and': 1.0, 'best': 1.0, 'permanent': 1.0, 'very': 1.0, 'does': 1.0, 'a': 1.0, 'well': 1.0, 'method': 1.0, 'cleanest': 1.0, 'on': 2.0, 'yes': 1.0, 'inexpensive': 1.0, 'stay': 1.0, 'tape': 1.0, 'no': 1.0, 'not': 1.0, 'i': 2.0, 'tried': 1.0, 'the': 2.0, 'have': 1.0, 'all': 1.0, 'use': 1.0, 'tricks': 1.0, 'm': 1.0, 'them': 2.0, 'white': 1.0, 'is': 1.0, 'longer': 1.0, 's': 1.0, 'writing': 1.0, 'trying': 1.0, 'to': 1.0}
Word element => {'periodically': 1.0, 'rewrite': 1.0, 'and': 1.0, 'cups': 1.0, 'their': 2.0, 'but': 1.0, 'didn': 2.0, 'even': 1.0, 'use': 1.0, 'permanent': 1.0, 'for': 1.0, 'making': 1.0, 'names': 2.0, 'followed': 1.0, '34': 2.0, 'on': 1.0, 'instructions': 1.0, 'written': 1.0, 'after': 1.0, 'i': 3.0, 'the': 4.0, 't': 2.0, 'stay': 1.0, 'disappointed': 1.0, 'bands': 1.0, 'wash': 1.0, 'them': 1.0, 'first': 1.0, 'still': 1.0, 'they': 1.0, 'time': 1.0}
Word element => {'choice': 1.0, 'better': 1.0, 'wear': 1.0, 'longer': 1.0, 'last': 1.0, 'little': 1.0, 'was': 2.0, 'had': 1.0, 'i': 2.0, 'how': 1.0, 'adjustments': 1.0, 'soft': 1.0, 'this': 2.0, 'it': 2.0, 'other': 2.0, 'spoke': 1.0, 'budge': 1.0, 'eventual': 1.0, 'one': 1.0, 'great': 1.0, 'comfortable': 1.0, 'kept': 1.0, 'in': 1.0, 'skeptical': 1.0, 'of': 1.0, 'required': 1.0, 'carpet': 4.0, 'believe': 1.0, 'place': 1.0, 'the': 3.0, 'well': 1.0, 'has': 1.0, 'not': 2.0, 'a': 2.0, 'makers': 1.0, 'allowed': 1.0, 'at': 1.0, 'pads': 2.0, 'to': 2.0, 'all': 1.0, 'way': 1.0, 'feels': 1.0, 'your': 1.0, 'make': 1.0, 'underfoot': 1.0, 'is': 1.0, 'terrific': 1.0, 'rug': 2.0, 'advise': 1.0, 'and': 3.0, 'squishy': 1.0, 'but': 1.0, 'reviews': 1.0, 'firmly': 2.0}
Word element => {'usa': 1.0, 'in': 1.0, 'were': 1.0, 'find': 1.0, 'pleased': 1.0, 'especially': 1.0, 'was': 1.0, 'aware': 1.0, 'the': 4.0, 'great': 1.0, 'premium': 3.0, 'this': 1.0, 'with': 1.0, 'super': 2.0, 'no': 1.0, 'pad': 2.0, 'customers': 1.0, 'difference': 1.0, 'discovered': 1.0, 'and': 4.0, 'after': 1.0, 'should': 1.0, 'ordering': 1.0, 'i': 3.0, 'they': 1.0, 'between': 1.0, 'refinished': 1.0, 'rug': 2.0, 'there': 1.0, 'of': 1.0, 'that': 2.0, 'is': 1.0, 'when': 1.0, 'be': 1.0, 'trying': 1.0, 'decide': 1.0, 'which': 1.0, 'ordered': 1.0, 'both': 1.0, 'pads': 2.0, 'to': 3.0, 'all': 1.0, 'arrived': 1.0, 'label': 1.0, 'movenot': 3.0, 'purchase': 1.0, 'my': 1.0, 'newly': 1.0, 'are': 1.0, 'work': 1.0, 'well': 1.0, '3': 1.0, 'on': 1.0, 'made': 1.0, 'hardwood': 1.0, 'floors': 1.0}
Word element => {'on': 2.0, 'throw': 1.0, 'are': 1.0, 'customers': 1.0, 'bit': 1.0, 'wear': 1.0, 'well': 1.0, 'a': 1.0, 'move': 1.0, 'but': 1.0, 'the': 1.0, 'these': 2.0, 'rugs': 1.0, 'money': 1.0, 'worth': 1.0, 'carpet': 1.0, 'save': 1.0, 'i': 1.0, 'your': 1.0, 'would': 1.0, 'tear': 1.0, 'recommend': 1.0, 'to': 2.0, 'and': 1.0}
Word element => {'product': 1.0, 'in': 1.0, 'months': 1.0, 'we': 1.0, '9': 1.0, 'it': 1.0, 'love': 1.0, 'grandaughter': 1.0, 'and': 1.0, 'very': 1.0, 'little': 1.0, 'something': 1.0, 'our': 1.0, 'had': 1.0, 'was': 1.0, 'to': 2.0, 'the': 1.0, 'find': 1.0, 'protect': 1.0, 'her': 1.0, 'while': 1.0, 'tropical': 1.0, 'sun': 1.0, 'nice': 1.0}
Word element => {'people': 1.0, 'would': 1.0, 'carseat': 1.0, 'apart': 1.0, 'falling': 1.0, 'very': 1.0, 'trunk': 1.0, 'have': 1.0, 'small': 1.0, 'about': 1.0, 'no': 1.0, 'bulky': 1.0, 'not': 1.0, 'perfectly': 1.0, 'detaching': 1.0, 'folds': 1.0, 'great': 1.0, 'than': 1.0, 'other': 2.0, 'however': 1.0, 'them': 1.0, 'of': 1.0, 'in': 1.0, 'turning': 1.0, 'sons': 1.0, 'at': 1.0, 'enough': 1.0, 'there': 1.0, 'that': 2.0, 'up': 2.0, 'don': 1.0, 'both': 1.0, 'best': 1.0, 'price': 1.0, 'complaints': 1.0, 'its': 1.0, 'only': 1.0, 'it': 8.0, 'this': 1.0, 'i': 5.0, 'love': 1.0, 'for': 3.0, 'are': 2.0, 'paid': 1.0, 'my': 5.0, 'the': 5.0, 'room': 1.0, 'bit': 1.0, 'stroller': 1.0, 'toddler': 1.0, 'back': 1.0, 'forward': 1.0, 'recommend': 1.0, 'was': 1.0, 'think': 1.0, 'buy': 1.0, 'definitely': 2.0, 'or': 2.0, 'worth': 1.0, 'reclined': 1.0, 'sit': 2.0, 'again': 1.0, 'when': 2.0, 'front': 2.0, 's': 1.0, 't': 2.0, 'a': 1.0, 'is': 3.0, 'newborn': 1.0, 'secure': 1.0, 'also': 1.0, 'to': 2.0, 'seat': 1.0, 'anxiety': 1.0, 'hitting': 1.0, 'ends': 1.0, 'his': 1.0, 'too': 1.0, 'and': 1.0, 'makes': 1.0, 'him': 1.0, 'wheels': 1.0, 'aren': 1.0}
Word element => {'parent': 1.0, 'easier': 1.0, 'much': 1.0, 'so': 1.0, 'daughter': 1.0, 'loves': 1.0, 'off': 1.0, 'on': 1.0, 'slide': 1.0, 'every': 1.0, 'use': 2.0, 'to': 1.0, 'easy': 1.0, 'are': 1.0, 'car': 1.0, 'and': 4.0, 'my': 3.0, 'them': 3.0, 'don': 1.0, 'toilets': 1.0, 'best': 1.0, 'cover': 1.0, 'in': 2.0, 'slip': 1.0, 'carry': 2.0, 'backpack': 1.0, 't': 1.0, 'the': 4.0, 'these': 1.0, 'public': 1.0, 'makes': 1.0, 'they': 3.0, 'using': 1.0, 'love': 1.0, 'of': 1.0, 'completely': 1.0, 'cleaner': 1.0, 'part': 1.0, 'is': 1.0, 'seat': 2.0, 'not': 1.0, 'just': 1.0, 'should': 1.0, 'around': 1.0, 'top': 1.0, 'i': 2.0, 'whole': 1.0}
Word element => {'product': 1.0, 'satisfied': 1.0, 'very': 1.0, 'been': 1.0, 'throw': 1.0, 'then': 1.0, 'to': 1.0, 'easy': 1.0, 'all': 1.0, 'have': 2.0, 'hand': 1.0, 'keep': 1.0, 'easily': 1.0, 'guards': 1.0, 'in': 1.0, 'having': 1.0, 'slide': 1.0, 'they': 1.0, 'time': 1.0, 'places': 1.0, 'public': 1.0, 'away': 1.0, 'purse': 1.0, 'and': 3.0, 'seats': 1.0, 'way': 1.0, 'love': 1.0, 'these': 1.0, 'the': 3.0, 'remove': 1.0, 'on': 2.0, 'support': 1.0, 'my': 2.0, 'this': 1.0, 'with': 1.0, 'children': 1.0, 'are': 1.0, 'gross': 1.0, 'them': 3.0, 'cootie': 1.0, 'i': 3.0, 'touch': 1.0, 'without': 1.0, 'toilet': 1.0, 'at': 1.0}
Word element => {'another': 1.0, 'left': 1.0, 'am': 1.0, 'time': 1.0, 'short': 1.0, 'a': 1.0, 'over': 1.0, 'after': 1.0, 'however': 1.0, 'food': 1.0, 'bib': 2.0, 'getting': 1.0, 'and': 1.0, 'all': 1.0, 'have': 1.0, 'now': 1.0, 'to': 2.0, 'purchase': 1.0, 'purchased': 1.0, 'from': 1.0, 'son': 1.0, 'liked': 1.0, 'for': 1.0, 'my': 1.0, 'the': 2.0, 'off': 1.0, 'decals': 1.0, 'shirt': 1.0, 'prevent': 1.0, 'at': 1.0, 'i': 3.0, 'size': 1.0, 'washing': 1.0, 'started': 1.0, 'just': 1.0, 'because': 1.0, 'this': 1.0, 'it': 2.0, 'would': 1.0, 'him': 1.0, 'cover': 1.0, 'daycare': 1.0, 'his': 1.0}
Word element => {'a': 1.0, 's': 1.0, 'it': 1.0, 'food': 1.0, 'when': 1.0, 'use': 1.0, 'but': 1.0, 'for': 1.0, 'my': 2.0, 'baby': 2.0, 'too': 1.0, '7month': 1.0, 'eat': 1.0, 'boy': 1.0, 'big': 1.0, 'good': 2.0, 'product': 1.0, 'to': 1.0}
Word element => {'years': 1.0, '2': 1.0, '10': 1.0, 'huge': 1.0, 'my': 1.0, 'for': 1.0, 'though': 1.0, 'fit': 1.0, 'month': 1.0, 's': 3.0, 'old': 2.0, 'i': 1.0, 'when': 2.0, 'we': 1.0, 'hold': 1.0, 'll': 2.0, 'onto': 1.0, 'and': 2.0, 'probably': 1.0, 'got': 1.0, 'use': 1.0, 'older': 1.0, 'this': 1.0, 'it': 4.0, 'he': 2.0}
Word element => {'infant': 1.0, 'so': 1.0, 'not': 1.0, 'toddler': 1.0, 'a': 1.0, 'suited': 1.0, 'better': 1.0, 'seems': 1.0, 'i': 1.0, 'an': 1.0, 'much': 1.0, 'old': 1.0, 'larger': 1.0, 'bought': 1.0, 'my': 1.0, 'bib': 1.0, 'and': 1.0, 'this': 1.0, 'for': 3.0, '6': 1.0, 'it': 1.0, 'month': 1.0}
Word element => {'cleaned': 1.0, 'gently': 1.0, 'marks': 1.0, 'type': 1.0, 'scratchy': 1.0, 'gets': 1.0, 'fallback': 1.0, 'being': 1.0, 'about': 1.0, 'stained': 1.0, 'worry': 1.0, 'and': 1.0, 'ensured': 1.0, 'when': 1.0, 'am': 1.0, 'made': 1.0, 'material': 1.0, 'design': 1.0, 'smart': 1.0, 'because': 2.0, 'husband': 1.0, 'my': 1.0, 'that': 1.0, 'easy': 1.0, 'of': 5.0, 'clothes': 1.0, 'baby': 2.0, 'to': 2.0, 'any': 1.0, 'for': 2.0, 'love': 1.0, 'generations': 1.0, 'or': 1.0, 'i': 7.0, 'the': 8.0, 'how': 1.0, 'is': 5.0, 'fashion': 1.0, 'washed': 1.0, 'sake': 1.0, 'on': 1.0, 'be': 2.0, 'bought': 1.0, 'this': 2.0, 'it': 6.0, 'with': 2.0, 'its': 1.0, 'only': 2.0, 'children': 1.0, 'wanted': 1.0, 'keep': 1.0, 'adorable': 1.0, 'bib': 5.0, 'future': 1.0, 'care': 1.0, 'wiped': 1.0, 'hand': 1.0, 'in': 2.0, 'also': 1.0, 'a': 2.0, 'could': 1.0, 'dish': 1.0, 'liquid': 1.0, 'stain': 1.0, 'would': 1.0, 'not': 4.0, 'able': 1.0, 'have': 2.0, 'neutral': 1.0, 'use': 1.0, 'so': 2.0, 'boy': 1.0, 'babysit': 1.0, 'can': 1.0, 'but': 1.0}
Word element => {'clean': 1.0, 'baby': 1.0, 'your': 1.0, 'price': 1.0, 'a': 1.0, 'this': 2.0, 'low': 1.0, 'at': 1.0, 'is': 1.0, 'to': 1.0, 'an': 1.0, 'adorable': 1.0, 'keep': 1.0, 'recommend': 1.0, 'good': 1.0, 'seems': 1.0, 'pretty': 1.0, 'like': 1.0, 'bib': 1.0, 'quality': 1.0}
Word element => {'dollar': 1.0, 'a': 1.0, 'seen': 1.0, 'looked': 1.0, 'like': 1.0, 'bib': 1.0, 'i': 1.0, 'straight': 1.0, 'in': 1.0, 'd': 1.0, 'something': 1.0, 'trash': 1.0, 'before': 1.0, 'this': 1.0, 'smelled': 1.0, 'packaging': 1.0, 'so': 1.0, 'badly': 1.0, 'it': 1.0, 'went': 1.0, 'the': 2.0, 'store': 1.0, 'to': 1.0}
Word element => {'loose': 1.0, 'not': 2.0, 'old': 1.0, 'them': 1.0, 'colours': 1.0, 'a': 1.0, 'bright': 1.0, 'before': 1.0, 'loves': 1.0, 'it': 1.0, 'this': 1.0, 'fit': 1.0, 'my': 1.0, 'boy': 1.0, 'and': 1.0, 'baby': 1.0, 'points': 1.0, 'every': 1.0, 'meal': 1.0, 'an': 1.0, 'is': 1.0, 'too': 2.0, 'mths': 1.0, 'the': 1.0, 'great': 1.0, 'love': 1.0, 'tight': 1.0, 'for': 1.0, 'bib': 1.0, '18': 1.0}
Word element => {'side': 1.0, 'drab': 1.0, 'on': 1.0, 'is': 1.0, 'teal': 1.0, 's': 2.0, 'ok': 1.0, 'nice': 1.0, 'the': 2.0, 'my': 1.0, 'contact': 1.0, 'idea': 1.0, 'not': 1.0, 'it': 2.0, 'paper': 1.0, 'just': 1.0, 'imo': 1.0, 'but': 1.0, 'shade': 1.0, 'definitely': 1.0, 'of': 1.0}
Word element => {'her': 1.0, 'for': 1.0, 'love': 1.0, 'bee': 1.0, 'baby': 1.0, 'and': 2.0, 'ordered': 1.0, 'items': 1.0, 'after': 1.0, 'it': 5.0, 'this': 1.0, 'loves': 1.0, 'received': 1.0, 'girl': 1.0, 'too': 1.0, 'shortly': 1.0, 'other': 1.0, 'we': 3.0, 'is': 1.0, 'soft': 1.0, 'matches': 1.0, 'the': 1.0, 'our': 1.0, 'that': 1.0, 'got': 1.0}
Word element => {'clean': 1.0, 'easy': 1.0, 'plastic': 1.0, 'clothes': 1.0, 'her': 1.0, 'is': 1.0, 'on': 1.0, 'nothing': 1.0, 'so': 1.0, 'gets': 1.0, 'these': 1.0, 'big': 1.0, 'enough': 1.0, '6': 1.0, 'to': 2.0, 'cover': 1.0, 'are': 1.0, 'my': 1.0, 'and': 1.0, 'mos': 1.0, 'completely': 1.0, 'daughter': 1.0}
Word element => {'damp': 1.0, 'a': 1.0, 'with': 1.0, 'clean': 1.0, 'easy': 1.0, 'daughter': 1.0, 'these': 1.0, 'they': 1.0, 'protecting': 1.0, 'to': 1.0, 'adorable': 1.0, 'clothes': 1.0, 'bibs': 1.0, 'and': 1.0, 'very': 1.0, 's': 1.0, 'well': 1.0, 'work': 1.0, 'at': 1.0, 'washcloth': 1.0, 'are': 2.0, 'my': 1.0}
Word element => {'best': 1.0, 'baby': 1.0, 'for': 1.0, 'messy': 1.0, 'hungry': 1.0, 'having': 1.0, 'avoid': 1.0, 'to': 1.0, 'i': 1.0, 'money': 1.0, 'love': 1.0, 'my': 1.0, 'the': 2.0, 'a': 1.0, 'them': 1.0, 'perfect': 1.0, 'all': 1.0, 'looks': 1.0, 'size': 1.0, 'like': 1.0, 'and': 1.0, 'material': 1.0}
Word element => {'easily': 1.0, 'bib': 1.0, 'can': 1.0, 'baby': 1.0, 'my': 1.0, 'to': 3.0, 'goof': 1.0, 'product': 1.0, 'little': 1.0, 'a': 1.0, 'get': 1.0, 'and': 1.0, 'very': 1.0, 'on': 1.0, 'is': 1.0, 'off': 1.0, 'good': 1.0, 'the': 3.0, 'hard': 1.0, 'with': 1.0, 'velcro': 1.0, 'quality': 1.0, 'back': 1.0, 'secure': 1.0, 'clean': 1.0, 'child': 1.0, 's': 1.0, 'neck': 1.0, 'not': 1.0, 'strong': 1.0}
Word element => {'better': 1.0, 'work': 1.0, 'would': 1.0, 'larger': 1.0, 'meals': 1.0, 'messy': 1.0, 'for': 1.0, 'so': 1.0, 'size': 1.0, 'on': 1.0, 'is': 1.0, 'small': 1.0, 'the': 3.0, 'are': 1.0, 'good': 1.0, 'and': 1.0, 'quality': 1.0, 'clean': 1.0, 'plastic': 1.0, 'easy': 1.0, 'to': 1.0, 'bibs': 2.0}
Word element => {'toddlers': 1.0, 'for': 1.0, 'recommend': 1.0, 'highly': 1.0, 'mouth': 1.0, 'her': 1.0, 'make': 1.0, 'not': 1.0, 'bibs': 1.0, 'they': 1.0, 'it': 1.0, 'eating': 1.0, 'daughter': 1.0, 'solids': 1.0, 'my': 1.0, 'are': 1.0, 'these': 2.0, 'the': 1.0, 'a': 1.0, 'saver': 1.0, 'is': 1.0, 'to': 1.0, 'now': 1.0, 'clothing': 1.0, 'that': 2.0, 'catch': 1.0, 'almost': 1.0, 'food': 1.0, 'i': 1.0, 'liquids': 1.0, 'all': 1.0, 'of': 1.0, 'do': 1.0, 'and': 1.0}
Word element => {'investment': 1.0, 'the': 1.0, 'well': 1.0, 'spills': 1.0, 'liquid': 1.0, 'against': 1.0, 'protect': 1.0, 'great': 1.0, 'as': 1.0, 'and': 1.0, 'quality': 1.0, 'have': 1.0, 'many': 1.0, 'color': 1.0, 'no': 1.0, 'uses': 1.0, 'does': 1.0, 'worth': 1.0, 'will': 1.0, 'fading': 1.0}
Word element => {'clean': 1.0, 'to': 1.0, 'easy': 1.0, 'fit': 1.0, 'nice': 1.0, 'good': 1.0, 'purchase': 1.0, 'i': 1.0, 'quality': 1.0, 'and': 2.0, 'definately': 1.0, 'too': 1.0, 'serves': 1.0, 'glad': 1.0, 'purpose': 1.0, 'the': 2.0, 'made': 1.0}
Word element => {'better': 1.0, 'much': 1.0, 'works': 1.0, 'cloth': 1.0, 'regular': 1.0, 'on': 1.0, 'dried': 1.0, 'has': 1.0, 'these': 1.0, 'the': 6.0, 'that': 1.0, 'machine': 1.0, 'say': 1.0, 'just': 1.0, 'not': 1.0, 'doesn': 1.0, 'bibs': 1.0, 'like': 1.0, 'instructions': 1.0, 'wash': 1.0, 'over': 1.0, 'great': 1.0, 'seemed': 1.0, 'down': 2.0, 'baby': 1.0, 'wipe': 2.0, 'them': 3.0, 't': 2.0, 'a': 2.0, 'care': 1.0, 'get': 2.0, 'or': 1.0, 'strip': 1.0, 'and': 2.0, 'soon': 1.0, 'of': 1.0, 'clean': 2.0, 'fabric': 1.0, 'along': 1.0, 'edge': 1.0, 'if': 2.0, 'interupts': 1.0, 'something': 1.0, 'super': 1.0, 'idea': 1.0, 'you': 2.0, 'food': 1.0, 'but': 1.0, 'can': 1.0, 'bib': 2.0, 'to': 3.0, 'as': 2.0, 'meals': 1.0, 'pocket': 1.0, 'they': 1.0, 're': 1.0, 'hard': 1.0}
Word element => {'getting': 1.0, 'spending': 1.0, 'strong': 1.0, 'strip': 1.0, 'large': 1.0, 'worth': 1.0, 'totally': 1.0, 'more': 2.0, 'pack': 1.0, '3': 1.0, 'purchased': 1.0, 'place': 1.0, 'bib': 1.0, 'purpose': 1.0, 'when': 2.0, 'on': 6.0, 'feeding': 1.0, 'food': 2.0, 'but': 2.0, 'so': 2.0, 'practically': 1.0, 'seam': 1.0, 'after': 1.0, 'wipe': 1.0, 'them': 7.0, 'started': 1.0, 'clothes': 1.0, 'to': 3.0, 'as': 1.0, 'bit': 1.0, 'easy': 1.0, 'get': 2.0, 'bibs': 2.0, 'kind': 1.0, 'immediately': 1.0, 'velcro': 4.0, 'my': 4.0, 'fact': 1.0, 'underneath': 1.0, 'put': 1.0, 'do': 1.0, 'and': 10.0, 'messy': 1.0, 'find': 1.0, 'since': 1.0, 'time': 1.0, 'main': 1.0, 'fairly': 1.0, 't': 2.0, 'using': 2.0, 'making': 1.0, 'most': 1.0, 'washer': 1.0, 'clean': 2.0, 'gift': 1.0, 'good': 2.0, 'fabric': 1.0, 'just': 2.0, 'doesn': 1.0, 'these': 2.0, 'recently': 2.0, 'their': 1.0, 'defeating': 1.0, 'they': 7.0, 'received': 1.0, 'stick': 1.0, 've': 1.0, 'shower': 1.0, 'the': 16.0, 'of': 5.0, 'are': 3.0, 'first': 2.0, 'recommend': 1.0, 'were': 1.0, 'throw': 1.0, 'really': 1.0, 'changed': 1.0, 'bumkins': 2.0, 'thought': 1.0, 'it': 2.0, 'gets': 1.0, 'stay': 1.0, 'still': 1.0, 'patch': 1.0, 'in': 4.0, 'there': 1.0, 'hang': 1.0, 'far': 1.0, 'isn': 1.0, 'complaint': 1.0, 'at': 2.0, 'look': 1.0, 'is': 6.0, 'fall': 1.0, 'that': 3.0, 'dry': 2.0, 'not': 1.0, 'daughter': 1.0, 'mind': 1.0, 'instantly': 1.0, 'expensive': 1.0, 'neck': 3.0, 'pulls': 1.0, 'use': 1.0, 'off': 2.0, 'own': 1.0, 'all': 1.0, 'other': 1.0, 'adjustable': 2.0, 'problem': 1.0, 'very': 2.0, 'little': 2.0, 'a': 8.0, 'small': 1.0, 'sticky': 1.0, 'big': 1.0, 'allows': 1.0, 'i': 10.0, 'daughters': 1.0}
Word element => {'all': 1.0, 'have': 1.0, 'bit': 1.0, 'in': 1.0, 'pity': 1.0, 'a': 2.0, 'will': 1.0, 'but': 1.0, 'first': 1.0, 'from': 1.0, 'protecting': 1.0, 'clothes': 1.0, 's': 1.0, 'my': 1.0, 'of': 1.0, 'cute': 1.0, 'fade': 1.0, 'they': 2.0, 'away': 1.0, 'no': 1.0, 'at': 2.0, 'food': 1.0, 'however': 1.0, 'chest': 1.0, 'baby': 1.0, 'drawings': 2.0, 'are': 1.0, 'the': 3.0, 'ran': 1.0, 'cloth': 1.0, 'i': 1.0, 'on': 1.0, 'second': 1.0, 'is': 1.0, 'to': 1.0, 'them': 2.0, 'covers': 1.0, 'clean': 1.0, 'size': 1.0, 'good': 1.0, 'wet': 1.0, 'most': 1.0}
Word element => {'bibs': 1.0, 'toddlers': 1.0, 'with': 1.0, 'happy': 1.0, 'has': 1.0, 'waited': 1.0, 'to': 2.0, 'for': 1.0, 'review': 1.0, 'our': 1.0, 'these': 1.0, 'they': 1.0, 'this': 1.0, 'item': 1.0, 'sure': 1.0, 'been': 1.0, 'lasted': 1.0, 'make': 1.0, 'my': 1.0, 'very': 1.0, 'staff': 1.0}
Word element => {'it': 1.0, 'using': 1.0, 'after': 1.0, 'but': 1.0, 'rips': 1.0, 'better': 1.0, 'held': 1.0, 'used': 1.0, 'have': 2.0, 'print': 1.0, 'yummy': 1.0, 'uses': 1.0, 'no': 1.0, 'several': 1.0, 'much': 2.0, 'only': 1.0, 'another': 1.0, 'more': 2.0, 'is': 1.0, 'immediately': 1.0, 'velcro': 1.0, 'stitching': 1.0, 'along': 1.0, 'fastened': 1.0, 'has': 1.0, 'of': 1.0, 'one': 1.0, 'in': 2.0, 'low': 1.0, 'with': 2.0, 'amazed': 1.0, 'disappointed': 1.0, 'made': 1.0, 'clean': 2.0, 'm': 1.0, 'tomato': 1.0, 'bag': 2.0, 'however': 1.0, 'been': 1.0, 'that': 2.0, 'knew': 1.0, 'these': 1.0, 'the': 6.0, 'diaper': 2.0, 'doesn': 1.0, 'was': 1.0, 'as': 1.0, 'any': 1.0, 'to': 3.0, 'them': 2.0, 'wipe': 2.0, 'would': 1.0, 'difficult': 1.0, 'still': 1.0, 'purchased': 1.0, 'even': 3.0, 'got': 1.0, 'be': 1.0, 'travel': 2.0, 'fairly': 1.0, 'grandmas': 1.0, 'expectations': 1.0, 'cheaply': 1.0, 'i': 4.0, 'where': 1.0, 'for': 1.0, 'bibs': 3.0, 'when': 1.0, 'easily': 1.0, 'stay': 2.0, 'and': 4.0, 't': 2.0, 'we': 1.0, 'a': 1.0, 'few': 1.0, 'keep': 1.0, 'at': 1.0, 'house': 1.0, 'they': 1.0, 'up': 1.0, 'don': 1.0, 'ripped': 1.0, 'very': 1.0}
Word element => {'plus': 1.0, 's': 1.0, 'guess': 1.0, 'though': 1.0, 'strong': 1.0, 'but': 1.0, '2': 2.0, 'wipe': 1.0, 'better': 1.0, 'a': 3.0, 'going': 1.0, 'getting': 1.0, 'walmart': 1.0, 'after': 1.0, 'so': 2.0, 'on': 2.0, 'deal': 1.0, 'stitches': 1.0, '4': 1.0, 'i': 9.0, 'want': 1.0, 'were': 2.0, 'bib': 1.0, 'washed': 1.0, 'since': 1.0, 'find': 1.0, 'the': 13.0, 'of': 2.0, 'same': 1.0, 'disney': 1.0, 'peva': 3.0, 'would': 1.0, 'bought': 1.0, 'for': 3.0, 'shipping': 1.0, 'day': 1.0, 'unable': 1.0, 'as': 1.0, 'any': 1.0, 'my': 2.0, 'may': 1.0, 'damaged': 1.0, 'figured': 1.0, 'one': 1.0, 'ones': 1.0, 'these': 2.0, 'old': 1.0, 'year': 1.0, 'price': 1.0, '34': 2.0, 'was': 4.0, 'wanted': 1.0, 'they': 2.0, 'or': 1.0, 'wrinkled': 1.0, 'vinyl': 1.0, 'pocket': 1.0, 'them': 4.0, 'target': 1.0, 'all': 3.0, 'other': 2.0, 'also': 3.0, 'come': 1.0, 'out': 1.0, 'tape': 2.0, 'velcro': 1.0, 'because': 1.0, 'bias': 2.0, 'that': 3.0, 'been': 1.0, 'trim': 1.0, 'around': 1.0, 'say': 1.0, 'at': 2.0, 'is': 3.0, 'and': 4.0, 'had': 2.0, 'flipped': 1.0, 'up': 2.0, 'remove': 1.0, 'it': 1.0, 'fix': 1.0, 'have': 1.0, 'arrived': 1.0, 'hassle': 1.0, 'return': 1.0, 'scratched': 1.0, 'when': 1.0, 'you': 1.0, 'only': 1.0, 'niece': 2.0, 'do': 2.0, 'hand': 1.0, 'like': 1.0, 'in': 1.0, 'sink': 1.0, 'her': 1.0, 'bibs': 1.0, 'scratching': 1.0, 'now': 1.0, 'to': 4.0, 'pretty': 1.0}
Word element => {'you': 1.0, 'want': 1.0, 'if': 1.0, 'silicone': 1.0, 'duty': 1.0, 'would': 1.0, 'originally': 1.0, 'looking': 1.0, 'was': 1.0, 'what': 1.0, 'exactly': 1.0, 'instead': 1.0, 'truly': 1.0, 'it': 1.0, 'twist': 1.0, 'modern': 1.0, 'bucket': 1.0, 'us': 1.0, 'bought': 1.0, 'recently': 1.0, 'friend': 1.0, 'breaker': 1.0, 'that': 1.0, 'end': 1.0, 'flourish': 1.0, 'with': 2.0, 'pull': 1.0, 'him': 1.0, 'to': 3.0, 'wanted': 1.0, 'are': 1.0, 'gross': 1.0, 'and': 3.0, 'pretty': 1.0, 'these': 1.0, 'heavier': 1.0, 'deal': 1.0, 'the': 4.0, 'in': 2.0, 'also': 1.0, 'washable': 2.0, 'clean': 1.0, 'hard': 1.0, 'maintain': 1.0, 'ridiculous': 1.0, 'or': 1.0, 'usually': 1.0, 'because': 1.0, 'by': 1.0, 'meal': 1.0, 'just': 1.0, 'but': 3.0, 'of': 2.0, 'laundering': 1.0, 'at': 1.0, 'thankfully': 1.0, 'bib': 4.0, 'peva': 1.0, 'is': 2.0, 'bibs': 1.0, 'really': 2.0, 'my': 1.0, 'go': 1.0, 's': 1.0, 'a': 11.0, 'we': 1.0, 'used': 1.0, 'brush': 1.0, 'opinion': 1.0, 'for': 2.0, 'film': 1.0, 'seem': 1.0, 'bit': 1.0, 'crust': 1.0, 'dramatic': 1.0, 'they': 2.0, 'between': 1.0, 'especially': 1.0, 'think': 1.0, 'on': 1.0, 'off': 1.0, 'trim': 2.0, 'i': 4.0, 'seams': 1.0, 'were': 1.0, 'get': 2.0, 'scrub': 1.0, 'wipeable': 1.0, 'easy': 1.0}
Word element => {'that': 1.0, 'sheets': 1.0, 'time': 1.0, 'after': 1.0, 'wrinkle': 1.0, 'does': 1.0, 'the': 1.0, 'this': 1.0, 'some': 1.0, 'really': 1.0, 'love': 1.0, 'it': 1.0, 'soft': 1.0, 'all': 1.0, 'but': 1.0, 'fits': 1.0, 'up': 1.0, 'very': 1.0, 'and': 1.0, 'do': 1.0, 'mattress': 1.0, 'well': 1.0}
Word element => {'boy': 1.0, 'right': 1.0, 'goes': 1.0, 'blanket': 1.0, 'matches': 1.0, 'along': 1.0, 'this': 1.0, 'little': 2.0, 'and': 1.0, 'nicely': 1.0, 'going': 1.0, 'with': 2.0, 'our': 2.0, 'dog': 1.0, 'bedding': 1.0, 'theme': 2.0}
Word element => {'both': 1.0, 'same': 1.0, 'two': 1.0, 'reason': 1.0, 'for': 1.0, 'they': 1.0, 'brand': 1.0, 'these': 1.0, 'but': 1.0, 'fit': 2.0, 'sheets': 1.0, 'the': 1.0, 'are': 1.0, 'cute': 1.0, 'soft': 1.0, 'and': 2.0, 'very': 1.0, 'bought': 1.0, 'lose': 2.0, 'of': 1.0, 'some': 1.0, 'really': 1.0}
Word element => {'sheets': 1.0, 'trying': 1.0, 'has': 1.0, 'shrank': 1.0, 'that': 1.0, 'before': 1.0, 'it': 5.0, 'was': 1.0, 'and': 3.0, 'couple': 1.0, 'bad': 1.0, 'to': 2.0, 'all': 1.0, 'i': 4.0, 'gotten': 1.0, 'buy': 1.0, 'so': 1.0, 'sheet': 2.0, 'this': 2.0, 'soft': 1.0, 'great': 1.0, 'ripped': 1.0, 'more': 1.0, 'is': 1.0, 'didn': 1.0, 'at': 1.0, 've': 2.0, 'super': 1.0, 'these': 1.0, 'some': 1.0, 'put': 3.0, 'on': 3.0, 'washed': 1.0, 'of': 2.0, 'when': 1.0, 'shrink': 1.0, 'times': 1.0, 'actually': 1.0, 'fits': 1.0, 'my': 1.0, 'son': 1.0, 'bed': 1.0, 'today': 1.0, 'easy': 1.0, 's': 1.0, 't': 1.0, 'a': 2.0, 'might': 1.0}
Word element => {'you': 1.0, 'items': 1.0, 'reasonable': 1.0, 'is': 1.0, 'make': 1.0, 'loves': 1.0, 'who': 1.0, 'month': 1.0, 'my': 1.0, 'price': 1.0, 'pleasantly': 1.0, 'to': 1.0, 'was': 1.0, 'and': 1.0, 'matter': 1.0, 'in': 1.0, 'for': 2.0, 'a': 3.0, 'flimsy': 1.0, 'son': 1.0, 'timely': 1.0, 'recieved': 1.0, 'i': 1.0, 'mess': 1.0, 'these': 1.0, 'the': 2.0, 'are': 1.0, 'surprised': 1.0, 'but': 1.0, 'little': 1.0, 'handy': 1.0, 'bibs': 1.0, 'easily': 1.0, '6': 1.0, 'washed': 1.0, 'receive': 1.0, 'bigs': 1.0, 'definitely': 1.0}
Word element => {'enough': 1.0, 'eat': 1.0, 'babies': 1.0, 'way': 1.0, 'but': 1.0, 'maybe': 1.0, 'crackers': 1.0, 'feeding': 1.0, 'bibsters': 1.0, 'brand': 1.0, 'gets': 1.0, 'to': 1.0, 'super': 1.0, 'once': 1.0, 'up': 1.0, 'and': 1.0, 'dont': 1.0, 'strong': 1.0, 'not': 1.0, 'just': 1.0, 'holds': 1.0, 'these': 1.0, 'the': 3.0, 'are': 2.0, 'stack': 1.0, 'flap': 1.0, 'thin': 1.0, 'nothing': 1.0, 'ok': 1.0, 'it': 1.0, 'they': 2.0, 'slightly': 1.0, 'wet': 1.0, 'if': 1.0}
Word element => {'again': 1.0, 'buy': 1.0, 'would': 1.0, 'pulls': 1.0, 'toddler': 1.0, 'hard': 1.0, 'baby': 1.0, 'tape': 1.0, 'it': 1.0, 'works': 1.0, 'great': 1.0, 'the': 2.0, 'seller': 1.0, 'is': 1.0, 'very': 1.0, 'and': 1.0, 'unless': 1.0, 'strong': 1.0, 'holds': 1.0, 'well': 1.0, 'from': 1.0, 'infant': 1.0}
Word element => {'hands': 1.0, 'while': 1.0, 'in': 1.0, 'stuck': 1.0, 'hair': 1.0, 'screaming': 1.0, 'any': 1.0, 'baby': 2.0, 'your': 2.0, 'on': 2.0, 'putting': 1.0, 'very': 1.0, 'll': 1.0, 'be': 1.0, 'for': 1.0, 'a': 1.0, 'well': 1.0, 'getting': 1.0, 'get': 1.0, 'and': 1.0, 'if': 1.0, 'pretty': 2.0, 'bibs': 1.0, 'sturdy': 1.0, 'tape': 2.0, 'are': 1.0, 'the': 4.0, 'happen': 1.0, 'made': 1.0, 'is': 2.0, 'it': 2.0, 'only': 1.0, 'with': 1.0, 'that': 1.0, 'you': 3.0, 'backing': 1.0, 'careful': 1.0, 'function': 1.0, 'so': 1.0, 'thing': 1.0, 'have': 2.0, 'purpose': 1.0, 'its': 1.0, 'to': 3.0}
Word element => {'getting': 1.0, 'with': 1.0, 'it': 5.0, 'this': 2.0, 'okay': 1.0, 'then': 1.0, 'done': 1.0, 'and': 2.0, 'if': 1.0, 'from': 3.0, 'assumed': 1.0, 'when': 1.0, 'you': 4.0, 'removing': 1.0, 'using': 1.0, 'whatever': 1.0, 're': 1.0, 'my': 1.0, 'about': 1.0, 'but': 1.0, 'removable': 1.0, 'product': 1.0, 'trying': 1.0, 'be': 2.0, 'are': 1.0, 'home': 1.0, 'might': 1.0, 't': 1.0, 'damaged': 1.0, 'opening': 1.0, 'i': 1.0, 'into': 1.0, 'that': 1.0, 'permanently': 1.0, 'would': 1.0, 'wood': 1.0, 'in': 1.0, 'definitely': 1.0, 'stays': 1.0, 'destroy': 1.0, 'furniture': 3.0, 'your': 3.0, 'on': 1.0, 'item': 1.0, 'will': 2.0, 'deter': 1.0, 'don': 1.0, 'child': 1.0, 'them': 1.0, 'to': 1.0, 'care': 1.0, 'prevent': 1.0}
Word element => {'warm': 1.0, 'keeps': 1.0, 'dry': 1.0, 'and': 2.0, 'city': 1.0, 'in': 1.0, 'purchase': 1.0, 'protects': 1.0, 'im': 1.0, 'them': 1.0, 'excelent': 1.0, 'a': 1.0, 'the': 1.0, 'my': 1.0, 'cover': 1.0, 'kids': 1.0, 'so': 1.0, 'cold': 1.0, 'well': 1.0}
Word element => {'recommend': 1.0, 'not': 1.0, 'bent': 1.0, 'never': 1.0, 'and': 1.0, 'another': 1.0, 'similar': 1.0, 'purchased': 1.0, 'my': 1.0, 'hot': 1.0, 'a': 2.0, 'on': 1.0, 'did': 2.0, 'wife': 1.0, 'way': 2.0, 'than': 1.0, 'the': 3.0, 'anyone': 1.0, 'company': 1.0, 'in': 1.0, 'three': 1.0, 'destroyed': 1.0, 'poor': 1.0, 'to': 2.0, 'was': 1.0, 'product': 1.0, 'r': 1.0, 'material': 1.0, 'sign': 3.0, 'from': 1.0, 'day': 1.0, 'very': 1.0, 'will': 1.0, 'weeks': 1.0, 'us': 1.0, 'kids': 1.0, 'less': 1.0, 'by': 2.0, 'when': 1.0, 'cheap': 1.0, 'i': 2.0, 'sun': 1.0, 'or': 1.0, 'received': 1.0, 'this': 3.0, 'it': 3.0, 'fold': 1.0}
Word element => {'if': 1.0, 'month': 1.0, 'stick': 1.0, 'cups': 1.0, 'once': 1.0, 'to': 2.0, 'suction': 1.0, 'not': 1.0, 'a': 1.0, 'damaged': 1.0, 'the': 1.0, 'dosed': 1.0, 'they': 1.0, 'maintain': 1.0, 'come': 1.0, 'rubbing': 1.0, 'with': 1.0, 'alchol': 1.0, 'window': 1.0, 'do': 2.0, 'and': 1.0, 'get': 1.0, 'off': 1.0, 'sun': 1.0}
Word element => {'recommend': 1.0, 'yeah': 1.0, 'fill': 1.0, 'plenty': 1.0, 'are': 1.0, 'there': 1.0, 'non': 1.0, 'children': 1.0, 'for': 1.0, 'courtesy': 1.0, 'blank': 1.0, 'even': 1.0, 'descent': 1.0, 'everyone': 1.0, 'buuuuuuut': 1.0, 'certainly': 1.0, 'see': 1.0, 'definitely': 1.0, 'close': 1.0, 'after': 1.0, 'enough': 2.0, 'off': 1.0, 'tail': 1.0, 'who': 1.0, 'people': 1.0, 'many': 1.0, 'to': 2.0, 'all': 3.0, 'second': 1.0, 'of': 3.0, 'up': 2.0, 'tend': 1.0, 'because': 1.0, 'back': 2.0, 'problem': 1.0, 'experienced': 1.0, 'if': 1.0, 'have': 3.0, 'stock': 1.0, 'getting': 2.0, 'a': 2.0, 'we': 4.0, 'i': 4.0, 'read': 2.0, 'suction': 2.0, 'know': 1.0, 'which': 1.0, 'babies': 1.0, 'that': 3.0, 'not': 4.0, 'stay': 1.0, 'reviews': 1.0, 'dash': 1.0, 'with': 2.0, 'normally': 1.0, 'it': 3.0, 'part': 1.0, 'would': 3.0, 'out': 1.0, 'sign': 3.0, 'minnesota': 1.0, 'plastic': 1.0, 'think': 1.0, 'put': 1.0, 'on': 2.0, 'bit': 1.0, 'so': 2.0, 'stays': 1.0, 'less': 1.0, 'live': 1.0, 'in': 3.0, 'let': 1.0, 'or': 1.0, 'rests': 1.0, 'cup': 2.0, 'yet': 1.0, 'issues': 2.0, 'melting': 1.0, 'is': 2.0, 'another': 2.0, 'about': 1.0, 'll': 1.0, 'bottom': 2.0, 'complaint': 1.0, 'you': 2.0, 'gate': 1.0, 'the': 9.0, 'hanging': 1.0, 'do': 2.0, 'try': 1.0}
Word element => {'s': 1.0, 'in': 1.0, 'use': 1.0, 'husband': 1.0, 'purpose': 1.0, 'but': 1.0, 'least': 1.0, 'i': 1.0, 'my': 1.0, 'serves': 1.0, 'smaller': 1.0, 'thought': 1.0, 'that': 1.0, 'much': 1.0, 'product': 1.0, 'is': 1.0, 'it': 2.0, 'this': 1.0, 'pack': 1.0, 'have': 1.0, 'the': 1.0, 'should': 1.0, 'vehicle': 1.0, 'been': 1.0, 'a': 1.0, 'of': 1.0, 'two': 1.0, 'at': 1.0, 'we': 1.0}
Word element => {'pricing': 1.0, 'to': 1.0, 'hard': 1.0, 'easily': 1.0, 'viewable': 1.0, 'from': 1.0, 'outside': 1.0, 'problem': 1.0, 'good': 1.0, 'stay': 1.0, 'cup': 1.0, 'of': 1.0, 'the': 3.0, 'on': 1.0, 'is': 2.0, 'car': 1.0, 'only': 1.0, 'suction': 1.0}
Word element => {'bought': 1.0, 'why': 1.0, 'would': 1.0, 'back': 1.0, 'the': 3.0, 'wish': 1.0, 'laying': 1.0, 'seat': 1.0, 'just': 3.0, 'while': 1.0, 'i': 3.0, 'a': 1.0, 'window': 4.0, 'cant': 1.0, 'my': 3.0, 'on': 5.0, 'reason': 1.0, 'having': 1.0, 'anything': 1.0, 'them': 1.0, 'stayed': 1.0, 'is': 1.0, 'really': 1.0, 'stay': 2.0, 'for': 3.0, 'liked': 1.0, 'now': 2.0, 'to': 1.0, 'this': 2.0, 'it': 3.0, 'car': 1.0, 'and': 1.0, 'get': 1.0}
Word element => {'send': 1.0, 'still': 1.0, 'd': 1.0, 'woke': 1.0, 'overnight': 1.0, 'afternoon': 1.0, 'living': 1.0, 'my': 1.0, 'sure': 1.0, 'area': 1.0, 'left': 1.0, 'work': 1.0, 'really': 1.0, 'so': 2.0, 'exactly': 1.0, 'me': 1.0, 'away': 2.0, 'out': 2.0, 'would': 2.0, 'very': 1.0, 'few': 1.0, 'by': 1.0, 'hit': 1.0, 'was': 2.0, 'reviews': 1.0, 'up': 2.0, 'anyway': 1.0, 'many': 1.0, 'people': 1.0, 'reading': 1.0, 'back': 1.0, 'saying': 1.0, 'air': 2.0, 'in': 2.0, 'whole': 1.0, 'purse': 2.0, 'from': 1.0, 'outside': 2.0, 'to': 5.0, 'as': 2.0, 'entire': 2.0, 'one': 1.0, 'for': 5.0, 'thinking': 1.0, 'i': 16.0, 'next': 1.0, 'been': 2.0, 'days': 2.0, 'day': 1.0, 'looking': 2.0, 'perfect': 1.0, 'this': 1.0, 'it': 9.0, 'with': 1.0, 'wanted': 1.0, 'bag': 5.0, 'came': 1.0, 'seemed': 1.0, 'opened': 1.0, 'insert': 1.0, 'diaper': 1.0, 'hanging': 2.0, 'believe': 1.0, 'careful': 1.0, 'the': 8.0, 'go': 2.0, 'a': 4.0, 'could': 1.0, 'ended': 1.0, 'after': 2.0, 'package': 1.0, 'move': 1.0, 'make': 1.0, 'strong': 2.0, 'leaving': 1.0, 'an': 1.0, 'smell': 3.0, 'what': 1.0, 'had': 5.0, 'thought': 3.0, 'were': 1.0, 'being': 1.0, 'stunk': 2.0, 'overly': 1.0, '5': 1.0, 'room': 1.0, 'chemical': 1.0, 'when': 1.0, 'smells': 1.0, 'maybe': 1.0, 'fumes': 1.0, 'ordered': 1.0, 'and': 4.0, 'soon': 1.0}
Word element => {'satisfied': 1.0, 'mostly': 1.0, 'be': 1.0, 'probably': 1.0, 'toy': 1.0, 'cute': 1.0, 'you': 1.0, 'again': 1.0, 'not': 1.0, 'control': 1.0, 'scratched': 1.0, 'stitching': 1.0, 'sloppy': 1.0, 'so': 1.0, 'smaller': 1.0, 'replacement': 2.0, 'another': 1.0, 'it': 4.0, 'obviously': 1.0, 'ingredients': 1.0, 'what': 1.0, 'weird': 1.0, 'kind': 1.0, 'decided': 2.0, 'knows': 1.0, 'material': 2.0, 'of': 2.0, 'with': 3.0, 'pink': 1.0, 'piece': 1.0, 'on': 1.0, 'and': 5.0, 'mirror': 2.0, 'bell': 2.0, 'colors': 1.0, 'sound': 1.0, 'promptly': 1.0, 'in': 2.0, 'which': 1.0, 'body': 1.0, 'the': 7.0, 'is': 2.0, 's': 2.0, 'we': 2.0, 'a': 4.0, 'but': 3.0, 'placed': 1.0, 'll': 1.0, 'inside': 1.0, 'just': 2.0, 'respect': 1.0, 'that': 2.0, 'ours': 1.0, 'came': 2.0, 'great': 1.0, 'nice': 1.0, 'spot': 1.0, 'was': 3.0, 'to': 2.0, 'noisemaker': 1.0, 'shiny': 1.0, 'made': 1.0, 'original': 1.0, 'way': 1.0, 'return': 2.0, 'somewhat': 1.0, 'keep': 1.0, 'who': 1.0, 'protrude': 1.0, 'quality': 1.0, 'exchange': 1.0, 'for': 1.0}
Word element => {'uniqueness': 1.0, 'detail': 1.0, 'attention': 1.0, 'the': 1.0, 'my': 1.0, 'recommend': 1.0, 'delighted': 1.0, 'to': 2.0, 'colorful': 1.0, 'play': 1.0, 'is': 1.0, 'with': 1.0, 'these': 1.0, 'highly': 1.0, 'and': 1.0, 'very': 1.0, 'for': 1.0, 'daughter': 1.0, 'interesting': 1.0}
Word element => {'with': 1.0, 'move': 1.0, 'open': 1.0, 'liked': 1.0, 'nursing': 1.0, 'while': 1.0, 'covering': 1.0, 'overall': 1.0, 'you': 1.0, 'that': 2.0, 'of': 2.0, 'whole': 1.0, 'point': 1.0, 'brand': 1.0, 'also': 1.0, 'even': 1.0, 'thought': 3.0, 'what': 1.0, 'neckline': 3.0, 'out': 1.0, 'material': 1.0, 'really': 1.0, 'hands': 1.0, 'without': 1.0, 'job': 1.0, 'the': 9.0, 'more': 1.0, 'stay': 2.0, 'bit': 1.0, 'so': 4.0, 'time': 1.0, 'product': 1.0, 'be': 1.0, 'i': 7.0, 'looks': 1.0, 'it': 6.0, 'first': 1.0, 've': 1.0, 'would': 1.0, 'new': 1.0, 'color': 1.0, 'my': 3.0, 'your': 1.0, 'on': 1.0, 'washed': 1.0, 'reinforced': 2.0, 'up': 1.0, 'worn': 1.0, 'could': 1.0, 'going': 1.0, 's': 4.0, 't': 2.0, 'a': 3.0, 'expected': 1.0, 'well': 1.0, 'see': 3.0, 'sturdy': 1.0, 'flimsy': 1.0, 'but': 1.0, 'can': 2.0, 'was': 1.0, 'doesn': 1.0, 'to': 5.0, 'as': 2.0, 'faded': 1.0, 'little': 1.0, 'very': 1.0, 'difficult': 1.0, 'does': 1.0, 'having': 2.0, 'because': 1.0, 'get': 1.0, 'baby': 4.0, 'latch': 1.0}
Word element => {'if': 1.0, 'this': 1.0, 'again': 1.0, 'buy': 1.0, 'd': 1.0, 'be': 1.0, 'to': 1.0, 'product': 1.0, 'ok': 1.0, 'one': 1.0, 'i': 3.0, 'needed': 1.0, 'expecting': 1.0, 'it': 1.0, 'is': 1.0, 'but': 1.0, 'quality': 1.0, 'as': 1.0, 'not': 2.0, 'was': 1.0}
Word element => {'can': 1.0, 'and': 1.0, 'in': 1.0, 'to': 1.0, 'material': 1.0, 'fold': 1.0, 'of': 1.0, 'as': 1.0, 'you': 1.0, 'way': 1.0, 'i': 2.0, 'out': 1.0, 'idea': 1.0, 'not': 1.0, 'would': 1.0, 'practical': 1.0, 'neckline': 2.0, 'movement': 1.0, 'expected': 1.0, 'underneath': 1.0, 't': 2.0, 'great': 1.0, 'the': 5.0, 'see': 1.0, 'a': 1.0, 'but': 2.0, 'doesn': 1.0, 'is': 2.0, 'it': 2.0, 'this': 1.0, 'that': 3.0, 'causes': 1.0, 'sit': 1.0, 'so': 1.0, 'workt': 1.0, 'could': 1.0, 'manouver': 1.0, 'any': 1.0, 'baby': 2.0}
Word element => {'as': 1.0, 'same': 1.0, 'its': 1.0, 'color': 1.0, 'the': 3.0, 'picture': 1.0, 'i': 3.0, 'recoment': 1.0, 'this': 2.0, 'product': 1.0, 'love': 2.0, 'works': 1.0, 'perfectly': 1.0, 'cover': 1.0, 'perfect': 1.0, 'just': 1.0, 'size': 1.0}
Word element => {'in': 1.0, 'public': 1.0, 'out': 1.0, 'go': 1.0, 'we': 1.0, 'traveling': 1.0, 'when': 2.0, 'love': 1.0, 'the': 2.0, 'colors': 1.0, 'and': 3.0, 'nice': 1.0, 'adjustable': 1.0, 'to': 1.0, 'strap': 1.0, 'easy': 1.0, 'use': 1.0, 'obviously': 1.0}
Word element => {'booster': 1.0, 'price': 1.0, 'better': 1.0, 'expensive': 1.0, 'suggest': 1.0, 'like': 1.0, 'you': 2.0, 'overall': 1.0, 'meals': 1.0, 'during': 1.0, 'feeding': 1.0, 'between': 1.0, 'has': 2.0, 'more': 1.0, 'husband': 1.0, 'myself': 1.0, 'actually': 1.0, 'system': 1.0, 'barbershop': 1.0, 'washable': 1.0, 'thing': 1.0, 'adjustment': 1.0, 'machine': 1.0, 'cover': 1.0, 'cloth': 1.0, 'safe': 2.0, 'turns': 2.0, 'tray': 2.0, 'get': 1.0, 'months': 1.0, 'about': 2.0, 'stop': 1.0, 'll': 1.0, 'estimate': 1.0, '25lbs': 1.0, 'limit': 1.0, 'immediately': 1.0, '11': 1.0, 'pull': 2.0, 'looks': 1.0, 'my': 2.0, 'but': 1.0, 'unbuckling': 1.0, 'works': 1.0, 'without': 1.0, 'adjust': 2.0, 'gets': 1.0, 'harness': 4.0, 'point': 1.0, '5': 2.0, 'into': 2.0, 'line': 1.0, 'well': 1.0, 'i': 4.0, 'two': 1.0, 'back': 1.0, 'most': 1.0, 'so': 3.0, 'can': 6.0, 'at': 1.0, 'look': 1.0, 'is': 6.0, 'pick': 1.0, 'shower': 1.0, 'as': 3.0, 'our': 5.0, 'nicer': 2.0, 'had': 1.0, 'lbs': 1.0, 'was': 2.0, 'doesn': 2.0, 'assembly': 1.0, '7': 1.0, 'up': 3.0, 'over': 1.0, 'weight': 1.0, 'awful': 1.0, 'chair': 9.0, 'to': 8.0, 'high': 1.0, 'out': 6.0, 'made': 2.0, 'good': 1.0, 'gift': 1.0, 'different': 2.0, 'simple': 1.0, 'gear': 2.0, 'maximum': 1.0, 'take': 2.0, 'then': 1.0, 'we': 11.0, 'small': 2.0, 'a': 7.0, 's': 6.0, 'worst': 1.0, 'arms': 1.0, 'and': 8.0, 'highchair': 11.0, 'reclines': 1.0, 'for': 3.0, 't': 3.0, 'fit': 2.0, 'have': 4.0, 'all': 1.0, 'an': 1.0, 'much': 1.0, 'general': 1.0, 'put': 2.0, 'on': 5.0, 'probably': 1.0, 'your': 1.0, 'us': 1.0, 'poorly': 2.0, 'received': 1.0, 'he': 4.0, '6': 2.0, 'originally': 1.0, 'of': 11.0, 'the': 28.0, 'piece': 1.0, 'with': 3.0, 'time': 1.0, 'exchanged': 1.0, 'practically': 1.0, 'supported': 1.0, 'adjusted': 1.0, 'registry': 1.0, 'really': 2.0, 'should': 1.0, 'one': 3.0, 'this': 10.0, 'him': 3.0, 'it': 10.0, 'hardware': 1.0, 'starting': 1.0, 'recline': 1.0, 'getting': 1.0, 'picked': 1.0, 'predrilled': 1.0, 'or': 1.0, 'holes': 1.0, 'seat': 2.0, 'in': 6.0, 'does': 1.0, 'fall': 1.0, 'easily': 1.0, 'that': 4.0, 'because': 1.0, 'not': 3.0, 'positions': 1.0, 'himself': 1.0, 'cannot': 1.0, 'looking': 1.0, 'using': 2.0, 'boon': 1.0, 'be': 2.0, 'used': 1.0, 'swivels': 1.0, 'own': 1.0, 'until': 1.0, 'start': 1.0, 'sit': 1.0, 'dishwasher': 2.0, 'his': 2.0, 'baby': 4.0, 'sitter': 1.0, 'ended': 1.0, 'set': 1.0, 'bouncy': 1.0, 'old': 1.0, 'swing': 1.0, 'height': 2.0, 'son': 4.0, 'if': 1.0, 'still': 2.0, 'are': 1.0, 'first': 1.0, 'only': 3.0, 'eat': 1.0, 'slumped': 1.0, 'loose': 1.0, 'same': 1.0, 'month': 1.0, 'just': 1.0, 'flair': 1.0, 'now': 2.0, 'use': 1.0}
Word element => {'stay': 1.0, 'tricks': 1.0, 'there': 1.0, 'sadly': 1.0, 'messy': 1.0, 'watch': 1.0, 'real': 1.0, 'using': 1.0, 're': 1.0, 'if': 1.0, 'under': 1.0, 'takes': 1.0, 'kitchen': 1.0, 'across': 1.0, 'toss': 1.0, 'out': 2.0, 'figured': 1.0, 'off': 2.0, 'take': 2.0, 'never': 1.0, 'she': 2.0, 'closest': 1.0, 'age': 1.0, '11': 1.0, 'starting': 1.0, 'blue': 1.0, 'how': 1.0, 'remove': 1.0, 'updating': 1.0, '2012': 1.0, 'jan': 1.0, 'returns': 1.0, 'free': 1.0, 'want': 2.0, 'they': 2.0, 'could': 3.0, 'searching': 1.0, 'yet': 1.0, '6': 1.0, 'that': 4.0, 'because': 1.0, 'plates': 1.0, '8': 1.0, 'cute': 2.0, 'but': 3.0, 'disassemble': 1.0, 'most': 1.0, 'back': 1.0, 'limited': 1.0, 'up': 1.0, 'fool': 1.0, 'looked': 1.0, 'wondering': 1.0, 'smallest': 1.0, 'already': 1.0, 'stained': 2.0, 'sleep': 1.0, 'feeding': 3.0, 'return': 1.0, 'fit': 2.0, 't': 2.0, 'seen': 2.0, 'an': 1.0, 'fits': 1.0, 'believe': 1.0, 'the': 24.0, 'even': 1.0, 'of': 2.0, 'moves': 1.0, 'myself': 1.0, 'wish': 1.0, 've': 2.0, 'down': 1.0, 'graduated': 1.0, 'attaches': 1.0, 'will': 1.0, 'lining': 1.0, 'at': 3.0, 'too': 1.0, '3': 4.0, 'supposed': 1.0, 'diameter': 2.0, 'put': 2.0, 'either': 1.0, 'do': 1.0, 'much': 2.0, 'lowest': 1.0, 'as': 3.0, 'heavy': 1.0, 'any': 1.0, 'to': 24.0, 'bought': 1.0, 'against': 1.0, 'was': 2.0, 'well': 3.0, 'going': 1.0, 'center': 1.0, 'cloth': 1.0, 'you': 1.0, 'bolts': 1.0, 'rating': 1.0, 'heavily': 1.0, 'small': 1.0, '16': 2.0, 'find': 2.0, 'does': 2.0, 'in': 8.0, 'together': 1.0, 'few': 1.0, 'pain': 1.0, 'assembly': 1.0, 'wobbly': 1.0, 'not': 4.0, 'me': 3.0, 'easily': 1.0, 'making': 1.0, 'looks': 1.0, 'are': 4.0, 'my': 5.0, 'hour': 1.0, 'though': 3.0, 'after': 1.0, 'by': 1.0, 'd': 1.0, 'have': 2.0, 'highest': 1.0, 'has': 4.0, 'go': 1.0, 'designed': 1.0, 'into': 1.0, 'this': 10.0, 'zero': 1.0, 'literally': 1.0, 'height': 2.0, 'hate': 2.0, 'adjustment': 1.0, 'thing': 3.0, 'change': 1.0, 'chair': 7.0, 'over': 2.0, 'plate': 5.0, 'since': 1.0, 'day': 1.0, 'so': 3.0, 'is': 7.0, 'can': 2.0, 'amazon': 1.0, 'been': 2.0, 'use': 2.0, 'her': 2.0, 'had': 1.0, 'tray': 7.0, 'offer': 1.0, 'offered': 1.0, 'what': 1.0, 'breaks': 1.0, 'done': 1.0, 'due': 1.0, 'reimburse': 1.0, 'only': 3.0, 'a': 13.0, 'bag': 1.0, 'pictures': 1.0, 'bricks': 1.0, 'no': 2.0, 'super': 1.0, 'don': 1.0, 'it': 23.0, 'be': 3.0, 'spot': 1.0, 'them': 1.0, 'everything': 1.0, 'who': 1.0, 'from': 1.0, 'all': 2.0, 'way': 1.0, 'bowl': 1.0, 'unfortunately': 1.0, 'baby': 6.0, 'am': 1.0, 'eating': 1.0, 'won': 1.0, 'doubt': 1.0, 'ago': 1.0, 'two': 1.0, 'stars': 2.0, 'i': 20.0, 'cause': 1.0, 'deserves': 1.0, 'took': 1.0, 'shoulder': 2.0, 'adjust': 1.0, '120': 1.0, 'mistake': 1.0, 'buying': 1.0, 'on': 3.0, 'sept': 1.0, '2011': 1.0, 'solids': 1.0, 'feed': 1.0, 'about': 1.0, 'sets': 1.0, 'update': 2.0, 'months': 2.0, 'able': 1.0, 'shipping': 2.0, 'get': 3.0, 'now': 2.0, 'and': 12.0, 'just': 1.0, 'weeks': 1.0, 'would': 1.0, 'm': 1.0, 'ever': 2.0, 's': 7.0, 'meals': 1.0, '5': 1.0, 'one': 3.0, 'absolutely': 1.0, '7': 1.0, 'straps': 2.0, 'tightest': 1.0, 'outside': 1.0, 'toddler': 3.0, 'head': 1.0, 'impossible': 1.0, 'clean': 2.0, 'also': 2.0, 'cleaned': 1.0, 'like': 1.0, 'drag': 1.0, 'throw': 2.0, 'ground': 1.0, 'until': 1.0, 'million': 1.0, 'seconds': 1.0, 'for': 3.0, 'pieces': 1.0, 'hard': 3.0, 'enjoyable': 1.0, 'hassle': 1.0, 'add': 1.0, 'trash': 1.0, 'costs': 1.0}
Word element => {'both': 1.0, 'place': 1.0, 'now': 1.0, 'space': 1.0, 'floor': 1.0, 'lot': 1.0, 'base': 1.0, 'complaint': 1.0, 'from': 1.0, 'great': 1.0, 'option': 1.0, 'used': 1.0, 'so': 1.0, 'yes': 1.0, 'durable': 1.0, 'saved': 1.0, 'have': 2.0, 'practice': 1.0, 'like': 1.0, 'reading': 1.0, 'using': 1.0, 'when': 2.0, 'you': 3.0, 'i': 4.0, 'coming': 1.0, 'highest': 1.0, 'was': 1.0, 'anymore': 1.0, 'out': 1.0, 'washable': 1.0, 'isn': 1.0, 'don': 1.0, 'point': 1.0, 'started': 1.0, 'takes': 3.0, 'affordable': 1.0, 'slower': 1.0, 'as': 1.0, 'to': 4.0, 'seat': 1.0, 'in': 4.0, 'for': 3.0, 'highchair': 2.0, 'toddler': 1.0, 'child': 2.0, 'product': 1.0, 'plus': 1.0, 'first': 1.0, 'reversible': 1.0, 'it': 12.0, 'she': 2.0, 'eating': 1.0, 'confused': 1.0, 'little': 2.0, 'best': 2.0, 's': 4.0, 'small': 1.0, 'a': 9.0, 't': 3.0, 'swing': 4.0, 'and': 4.0, '1': 1.0, 'get': 3.0, 'machine': 1.0, '2': 1.0, 'but': 3.0, 'money': 1.0, 'of': 4.0, 'the': 11.0, 'cover': 1.0, 'heavier': 1.0, 'converting': 1.0, 'didn': 1.0, 'soft': 1.0, 'rhythm': 1.0, 'is': 3.0, 'side': 2.0, 'swinging': 2.0, 'motor': 1.0, 'very': 1.0, 'slow': 1.0, 'your': 1.0, 'on': 2.0, 'gets': 1.0, 'turn': 1.0, 'if': 2.0, 'want': 1.0, 'faster': 1.0, 'just': 2.0, 'home': 1.0, 'by': 1.0, 'its': 2.0, 'only': 2.0, 'setting': 1.0, 'grew': 1.0, 'touch': 1.0, 'moment': 1.0, 'pushing': 1.0, 'makes': 1.0, 'there': 1.0, 'after': 1.0, 'because': 2.0, 'that': 4.0, 'not': 1.0, 'width': 1.0, 'with': 1.0, 'me': 1.0, 'my': 3.0, 'them': 1.0, 'has': 1.0, 'weight': 1.0, 'limit': 1.0, 'new': 1.0, 'time': 1.0, 'daughter': 1.0, 'reached': 1.0, 'or': 1.0, 'need': 1.0}
Word element => {'thing': 1.0, 'see': 1.0, 'one': 1.0, 'ordering': 1.0, 'happens': 1.0, 'try': 1.0, 'front': 1.0, 'return': 1.0, 'off': 1.0, 'angle': 1.0, 'it': 3.0, 'this': 1.0, 'straight': 1.0, 'wasn': 1.0, 'at': 1.0, 'would': 2.0, 'broken': 1.0, 'bar': 1.0, 'had': 1.0, 'was': 2.0, 'an': 1.0, 'stroller': 1.0, 'but': 1.0, 'wheels': 1.0, 'little': 1.0, 'seat': 1.0, 'to': 3.0, 'as': 1.0, 'problems': 1.0, 'the': 5.0, 'these': 1.0, 'a': 2.0, 't': 1.0, 'going': 1.0, 'and': 3.0, 'too': 1.0, 'not': 1.0, 'stay': 1.0, 'breaking': 1.0, 'reclining': 1.0, 'kept': 3.0, 'seemed': 1.0, 'nice': 1.0, 'be': 1.0, 'for': 2.0, 'price': 1.0, 'disappointed': 1.0, 'definitely': 1.0, 'small': 1.0, 'have': 1.0, 'same': 1.0, 'if': 2.0, 'irritating': 1.0, 'another': 1.0, 'may': 1.0}
Word element => {'again': 1.0, 'would': 1.0, 'don': 1.0, 'may': 1.0, 'any': 1.0, 'much': 1.0, 'use': 1.0, 'd': 1.0, 'figured': 1.0, 'cause': 1.0, 'when': 1.0, 'clip': 1.0, 'average': 1.0, 'goes': 1.0, 'leaning': 1.0, 'purchasing': 1.0, 'should': 1.0, 'is': 2.0, 'around': 1.0, 'warned': 1.0, 'more': 1.0, 'off': 1.0, 'spending': 1.0, 'over': 2.0, 'we': 5.0, 't': 4.0, 'little': 2.0, 'very': 1.0, 'one': 5.0, 'having': 1.0, 'rough': 1.0, 'strap': 1.0, 'nicer': 1.0, 'easy': 1.0, 'months': 1.0, 'get': 1.0, 'works': 4.0, 'purchase': 1.0, 'only': 1.0, 'so': 2.0, 'can': 1.0, 'but': 2.0, 'thing': 1.0, '2': 1.0, 'with': 3.0, 'mind': 1.0, 'it': 7.0, 'our': 1.0, 'stroller': 5.0, 'doesn': 1.0, 'was': 1.0, 'feature': 1.0, 'or': 1.0, 'made': 1.0, 'good': 1.0, 'together': 1.0, 'that': 3.0, 'comes': 1.0, 'once': 1.0, 'travel': 1.0, 'collapsed': 1.0, 'of': 1.0, 'longer': 1.0, 'the': 7.0, 'basically': 1.0, 'collapses': 1.0, 'wrap': 1.0, 'great': 2.0, 'all': 1.0, 'seat': 1.0, 'to': 2.0, 'have': 3.0, 'a': 6.0, 'small': 1.0, 'flaw': 1.0, 'hold': 1.0, 'like': 1.0, 'closure': 1.0, 'i': 6.0, 'well': 1.0, 'aren': 1.0, 'they': 2.0, 'for': 3.0, 'cord': 1.0, 'peg': 1.0, 'said': 1.0, 'and': 3.0, 'adjustable': 1.0, 'sleep': 1.0, 'back': 1.0, 'awesome': 1.0, 'snap': 1.0, 'disapointing': 1.0, 'plus': 1.0, 'gettting': 1.0, 'be': 2.0, 'after': 1.0, 'this': 3.0, 'stuff': 1.0, 'just': 2.0, 'update': 1.0, 'on': 1.0, 'think': 1.0, 'twice': 1.0, 'week': 1.0, 'reclining': 1.0, 'no': 1.0, 'find': 1.0, 'since': 1.0, 'time': 2.0, 'main': 1.0, 'using': 1.0, 'reason': 1.0, 'bungy': 1.0, 'wanted': 1.0, 'didn': 1.0}
Word element => {'anyway': 1.0, 'not': 2.0, 'lower': 1.0, 'is': 2.0, 'really': 1.0, 'for': 1.0, 'one': 1.0, 'feature': 1.0, 'i': 2.0, 'uploaded': 1.0, 'the': 2.0, 'back': 1.0, 'lowest': 1.0, 'can': 2.0, 'see': 1.0, 'found': 1.0, '30': 1.0, 's': 1.0, 'a': 1.0, 'go': 1.0, 'find': 1.0, 'than': 1.0, 'horizontal': 1.0, 'down': 1.0, 'degrees': 1.0, 'from': 1.0, 'wife': 1.0, 'to': 2.0, 'tiny': 1.0, 'its': 1.0, 'easy': 1.0, 'umbrella': 1.0, 'strollers': 1.0, 'photo': 1.0, 'of': 1.0, 'position': 1.0, 'she': 1.0, 'it': 2.0, 'with': 1.0, 'light': 1.0, 'weighted': 1.0, 'through': 1.0, 'eventually': 1.0, 'my': 1.0, 'barely': 1.0, 'load': 1.0, 'that': 1.0, 'into': 1.0, 'trunk': 1.0, 'which': 1.0, 'hand': 1.0}
Word element => {'much': 1.0, 'up': 1.0, 'takes': 1.0, 'attend': 1.0, 'space': 1.0, 'quickly': 1.0, 'dogs': 1.0, 'baby': 1.0, 'deliveries': 1.0, 'purchased': 1.0, 'travel': 1.0, 'as': 1.0, 'need': 1.0, 'bulky': 1.0, 'the': 3.0, 'own': 1.0, 'alternative': 1.0, 'to': 4.0, 'was': 1.0, 'dinner': 1.0, 'mainly': 1.0, 'we': 1.0, 'this': 1.0, 'it': 2.0, 'has': 1.0, 'system': 1.0, 'around': 1.0, 'been': 1.0, 'etc': 1.0, 'down': 1.0, 'used': 1.0, 'put': 1.0, 'an': 1.0, 'house': 1.0, 'less': 1.0, 'when': 1.0, 'i': 1.0}
Word element => {'recommendable': 1.0, 'not': 1.0, 'legs': 1.0, 's': 1.0, 'baby': 1.0, 'our': 1.0, 'in': 1.0, 'we': 1.0, 'found': 1.0, 'very': 1.0, 'sharp': 1.0, 'made': 1.0, 'the': 1.0, 'black': 1.0, 'cuts': 1.0, 'pieces': 1.0, 'plastic': 1.0, 'has': 1.0, 'that': 2.0, 'edges': 1.0}
Word element => {'own': 1.0, 'on': 1.0, 'sit': 1.0, 'will': 1.0, 'grandson': 1.0, 'problem': 1.0, 'has': 1.0, 'no': 4.0, 'go': 1.0, 'whining': 1.0, 'sitting': 1.0, 'entertaining': 1.0, 'his': 1.0, 'crying': 1.0, 'while': 1.0, 'there': 1.0, 'training': 1.0, 'fussing': 1.0}
Word element => {'using': 1.0, 'elephant': 1.0, 'far': 1.0, 'but': 1.0, 'granddaughter': 1.0, 'my': 1.0, 'made': 1.0, 'well': 1.0, 'upon': 1.0, 'are': 1.0, 'falls': 1.0, 'the': 3.0, 'great': 1.0, 'yellow': 1.0, 'so': 1.0, 'however': 1.0, 'her': 1.0, 'spinners': 1.0, 'and': 2.0, 'very': 1.0, 'only': 1.0, 'cracked': 1.0, 'it': 3.0, 'first': 1.0, 'assembly': 1.0, 'whole': 1.0, 'colors': 1.0, 'simply': 1.0, 'likes': 1.0, 'thing': 1.0, 'seat': 1.0, 'not': 1.0, 'apart': 1.0, 'easily': 1.0, 'is': 2.0}
Word element => {'necessary': 1.0, 'item': 1.0, 'high': 1.0, 'it': 1.0, 'use': 1.0, 'a': 3.0, 'friend': 1.0, 'gift': 1.0, 'young': 1.0, 'useful': 1.0, 'to': 1.0, 'for': 1.0, 'who': 1.0, 'seems': 1.0, 'really': 1.0, 'very': 1.0, 'quality': 1.0, 'like': 1.0, 'and': 2.0}
Word element => {'put': 1.0, 'manufact': 1.0, 'that': 2.0, 'padded': 1.0, 'think': 1.0, 'the': 4.0, 'have': 1.0, 'lid': 1.0, 'would': 2.0, 'was': 2.0, 'hard': 2.0, 'seat': 1.0, 'of': 1.0, 'some': 1.0, 'really': 2.0, 'kind': 1.0, 'to': 1.0, 'get': 1.0, 'is': 1.0, 'on': 1.0, 'i': 1.0, 'potty': 1.0, 'plastic': 1.0}
Word element => {'be': 1.0, 'would': 1.0, 'hard': 2.0, 'it': 1.0, 'cracked': 1.0, 'section': 1.0, 'into': 1.0, 'was': 2.0, 'seating': 1.0, 'i': 1.0, 'potty': 2.0, 'green': 1.0, 'and': 2.0, 'however': 1.0, 'lid': 1.0, 'trainer': 2.0, 'my': 1.0, 'push': 1.0, 'came': 1.0, 'scratched': 1.0, 'a': 1.0, 'look': 1.0, 'screw': 1.0, 'sit': 1.0, 'on': 2.0, 'easy': 1.0, 'imagined': 1.0, 'side': 1.0, 'is': 1.0, 'does': 1.0, 'what': 1.0, 'very': 2.0, 'little': 1.0, 'to': 3.0, 'seat': 1.0, 'any': 1.0, 'child': 1.0, 'them': 1.0, 'for': 1.0, 'assemble': 1.0, 'actually': 1.0, 'hurting': 1.0, 'overall': 1.0, 'not': 1.0, 'stay': 1.0, 'sitted': 1.0, 'the': 4.0, 'place': 1.0, 'without': 1.0}
Word element => {'the': 1.0, 'looks': 1.0, 'pretty': 1.0, 'this': 1.0, 'was': 2.0, 'perfect': 1.0, 'just': 2.0, 'what': 1.0, 'looking': 1.0, 'picture': 1.0, 'i': 1.0, 'it': 1.0, 'for': 1.0, 'is': 1.0, 'sturdy': 1.0, 'like': 1.0, 'very': 1.0, 'and': 1.0}
Word element => {'machine': 1.0, 'washes': 1.0, 'that': 1.0, 'breathe': 1.0, 'and': 2.0, 'the': 6.0, 'front': 1.0, 'well': 3.0, 'dips': 1.0, 'great': 1.0, 'spot': 1.0, 'had': 2.0, 'our': 2.0, 'to': 3.0, 'in': 3.0, 'also': 2.0, 'seems': 1.0, 'crib': 4.0, 'this': 2.0, 'it': 4.0, 'did': 1.0, 'if': 1.0, 'bunches': 1.0, 'down': 1.0, 'with': 1.0, 'creative': 1.0, 'but': 1.0, 'work': 2.0, 'put': 2.0, 'not': 1.0, 'wash': 1.0, 'up': 2.0, 'so': 2.0, 'standard': 1.0, 'liner': 4.0, 'be': 1.0, 'putting': 1.0, 'i': 3.0, 'is': 1.0, 'around': 1.0, 'through': 1.0, 'would': 1.0, 'product': 1.0, 'love': 1.0, 'my': 1.0, 'face': 1.0, 'a': 2.0, 'we': 2.0, 'could': 1.0, 'when': 1.0, 'easily': 1.0}
Word element => {'is': 1.0, 'which': 1.0, 'safety': 1.0, 'seems': 1.0, 'crib': 1.0, 'for': 2.0, 'required': 1.0, 's': 1.0, 'well': 1.0, 'cute': 1.0, 'grand': 1.0, 'baby': 1.0, 'my': 1.0, 'made': 1.0, 'bought': 1.0, 'and': 1.0, 'great': 1.0, 'these': 1.0, 'the': 1.0, 'mother': 1.0, 'breathable': 1.0, 'approved': 1.0, 'this': 1.0, 'it': 1.0, 'meets': 1.0, 'standard': 1.0, 'days': 1.0}
Word element => {'and': 1.0, 'highly': 1.0, 'theme': 1.0, 'sports': 1.0, 'that': 1.0, 'crib': 1.0, 's': 1.0, 'a': 1.0, 'front': 1.0, 'have': 1.0, 'available': 3.0, 'breathable': 1.0, 'because': 1.0, 'match': 1.0, 'straight': 1.0, 'i': 4.0, 'took': 1.0, 'nursery': 1.0, 'railed': 1.0, 'do': 1.0, 'not': 2.0, 'me': 1.0, 'the': 3.0, 'great': 1.0, 'these': 1.0, 'some': 1.0, 'of': 1.0, 'once': 1.0, 'are': 2.0, 'right': 1.0, 'all': 1.0, 'any': 1.0, 'to': 3.0, 'this': 2.0, 'so': 1.0, 'time': 1.0, 'out': 1.0, 'best': 1.0, 'figured': 1.0, 'why': 1.0, 'parents': 1.0, 'way': 1.0, 'recommend': 1.0, 'was': 1.0, 'anymore': 1.0, 'make': 1.0, 'can': 1.0, 'work': 1.0, 'it': 4.0, 'looks': 1.0, 'in': 1.0, 'regular': 1.0, 'type': 1.0, 'is': 1.0, 'son': 1.0, 'still': 1.0, 'get': 1.0, 'sure': 1.0, 'bumpers': 2.0, 'even': 1.0, 'my': 1.0, 'purchase': 1.0, 'fantastic': 1.0, 'when': 1.0, 'love': 1.0, 'for': 1.0, 'product': 2.0}
Word element => {'slats': 1.0, 'between': 1.0, 'stuck': 1.0, 'getting': 1.0, 'from': 1.0, 'thighs': 1.0, 'fit': 1.0, 'two': 2.0, 'super': 1.0, 'in': 1.0, 'pieces': 2.0, 'making': 1.0, 'long': 1.0, 'print': 1.0, 'cute': 1.0, 'still': 1.0, 'lady': 1.0, 'around': 1.0, 'comes': 1.0, 'had': 1.0, 'bug': 1.0, 'keeping': 1.0, 'themselves': 1.0, 'with': 1.0, 'velcro': 1.0, 'that': 2.0, 'to': 3.0, 'our': 1.0, 'set': 1.0, 'of': 1.0, 'the': 4.0, 'great': 1.0, 'very': 2.0, 'different': 1.0, 'cribs': 1.0, 'breathable': 1.0, 'standard': 1.0, 'sized': 1.0, 'crib': 2.0, 'size': 1.0, 'material': 1.0, 'plenty': 1.0, 's': 1.0, 'easy': 2.0, 'left': 1.0, 'it': 1.0, 'looks': 1.0, 'up': 1.0, 'over': 1.0, 'overlapped': 1.0, 'like': 1.0, 'but': 2.0, 'idea': 1.0, 'my': 1.0, 'baby': 1.0}
Word element => {'fine': 1.0, 'now': 1.0, 'three': 1.0, 'wash': 1.0, 'plastic': 1.0, 'had': 2.0, 'clear': 1.0, 'pretty': 1.0, 'were': 1.0, 'instructions': 1.0, 'but': 2.0, 'strong': 1.0, 'on': 1.0, 'and': 1.0, 'get': 2.0, 'of': 2.0, 'there': 2.0, 'times': 1.0, 'when': 2.0, 'daughter': 1.0, 'i': 3.0, 'took': 1.0, 'moving': 1.0, 'this': 1.0, 'she': 2.0, 'it': 9.0, 'pacifier': 1.0, 'prevent': 1.0, 'bought': 1.0, 'color': 1.0, 'for': 1.0, 'crib': 2.0, 'coming': 1.0, 'falls': 1.0, 'out': 3.0, 'later': 1.0, 'from': 1.0, 'my': 1.0, 'starts': 1.0, 'her': 1.0, 'to': 4.0, 'the': 4.0, 'asleep': 1.0, 'be': 1.0, 'throwing': 1.0, 'in': 1.0, 'like': 2.0, 'that': 1.0, 'around': 1.0, 'more': 1.0, 'is': 3.0, 'installed': 1.0, 'breathable': 1.0, 'if': 1.0, 'odor': 1.0, 'problem': 1.0, 'won': 1.0, 't': 1.0, 'a': 3.0, 'package': 1.0, 'cute': 1.0, 'some': 1.0, 'so': 1.0, 'against': 1.0, 'time': 1.0}
Word element => {'fits': 1.0, 'design': 1.0, 'flow': 1.0, 'one': 1.0, 'for': 1.0, 'in': 2.0, 'air': 1.0, 'she': 1.0, 'eye': 1.0, 'my': 1.0, 'perfectly': 1.0, 'and': 2.0, 'catching': 1.0, 'very': 1.0, 'colorful': 1.0, 'loves': 1.0, 'laying': 1.0, 'her': 1.0, 'innice': 1.0, 'looking': 1.0, 'at': 1.0, 'it': 1.0, 'crib': 1.0, 'little': 1.0, 'lets': 1.0, 'mesh': 1.0, 'is': 1.0, 'nice': 1.0}
Word element => {'up': 1.0, 'and': 1.0, 'get': 1.0, 'it': 1.0, 'can': 1.0, 't': 1.0, 'this': 1.0, 'to': 1.0, 'product': 1.0, 'is': 1.0, 'a': 1.0, 'matter': 1.0, 'do': 1.0, 'cool': 1.0, 'but': 1.0, 'stay': 1.0, 'no': 1.0, 'what': 1.0, 'straight': 1.0, 'i': 2.0}
Word element => {'sewing': 1.0, 'just': 1.0, 'material': 1.0, 'quality': 2.0, 'good': 1.0, 'secure': 1.0, 'thread': 2.0, 'sure': 1.0, 'entire': 1.0, 'is': 1.0, 'around': 1.0, 'sewed': 1.0, 'had': 1.0, 'stitching': 1.0, 'return': 1.0, 'print': 1.0, 'according': 1.0, 'dried': 1.0, 'and': 3.0, 'higher': 1.0, 'it': 6.0, 'perfect': 1.0, 'found': 1.0, 'this': 1.0, 'with': 2.0, 'of': 1.0, 'crib': 1.0, 'edge': 2.0, 'didn': 1.0, 'in': 2.0, 'all': 1.0, 'as': 1.0, 'to': 4.0, 'needs': 1.0, 'so': 3.0, 'everything': 1.0, 'areas': 1.0, 'else': 1.0, 'sense': 1.0, 'instructions': 1.0, 'find': 1.0, 'breathable': 1.0, 'product': 2.0, 'the': 8.0, 'inch': 1.0, 'sports': 1.0, 'great': 1.0, 'excited': 1.0, 'big': 1.0, 'was': 4.0, 'chunk': 1.0, 'theme': 1.0, 'let': 1.0, 'i': 4.0, 'two': 1.0, 'a': 2.0, 't': 1.0, 'go': 1.0, 'coming': 1.0, 'trim': 1.0, 'off': 1.0, 'perfectly': 1.0, 'bumper': 1.0, '8': 1.0, 'fine': 1.0, 'washed': 1.0, 'on': 1.0, 'make': 2.0}
Word element => {'pleased': 1.0, 'still': 1.0, 'improvise': 1.0, 'make': 1.0, 'table': 1.0, 'changing': 1.0, 'solid': 1.0, 'other': 1.0, 'is': 1.0, 'side': 2.0, 'one': 1.0, 'just': 1.0, 'because': 1.0, 'installing': 1.0, 'able': 1.0, 'have': 1.0, 'attached': 1.0, 'when': 1.0, 'i': 4.0, 'creative': 1.0, 'work': 1.0, 'but': 1.0, 'back': 1.0, 'product': 2.0, 'was': 2.0, 'to': 3.0, 'had': 2.0, 'crib': 1.0, 'since': 1.0, 'front': 1.0, 'a': 1.0, 'that': 1.0, 'has': 2.0, 'slates': 1.0, 'on': 2.0, 'great': 1.0, 'the': 4.0, 'get': 1.0, 'and': 2.0, 'with': 1.0, 'it': 3.0, 'only': 1.0}
Word element => {'found': 1.0, 'grateful': 1.0, 'free': 1.0, 'quick': 1.0, 'was': 1.0, 'used': 1.0, 'first': 1.0, 'from': 1.0, 'did': 1.0, 'thank': 1.0, 'try': 1.0, 'pacifiers': 1.0, 'mam': 2.0, 'times': 1.0, 'feeding': 2.0, 'these': 2.0, 'stressful': 1.0, 'the': 4.0, 'bottles': 3.0, 'different': 1.0, 'medical': 1.0, 'of': 3.0, 'because': 1.0, 'settled': 1.0, 'not': 1.0, 'nonstop': 1.0, 'and': 4.0, 'be': 1.0, 'finding': 1.0, 'stop': 1.0, 'after': 2.0, 'out': 1.0, 'kinds': 1.0, 'loves': 1.0, 'that': 3.0, 'breastfed': 1.0, 'little': 1.0, 'didn': 1.0, 'tried': 1.0, 'quiet': 1.0, 'several': 1.0, 'faces': 1.0, 'goodness': 1.0, 'my': 2.0, 'exclusively': 1.0, 'son': 2.0, 'for': 1.0, 'one': 1.0, 'he': 1.0, 'would': 2.0, 'take': 1.0, 'hours': 2.0, 'screaming': 2.0, 'i': 3.0, 'purple': 1.0, 'helped': 1.0, 'but': 1.0, 'we': 4.0, 't': 1.0, 'a': 2.0, 'could': 1.0, 'gas': 2.0, 'thought': 1.0, 'had': 1.0, 'on': 1.0, 'dr': 1.0, 'browns': 1.0, 'condition': 1.0, 'searching': 1.0, 'they': 1.0, 'time': 2.0, 'so': 2.0, 'bit': 1.0}
Word element => {'products': 1.0, 'affordable': 1.0, 'functional': 1.0, 'are': 1.0, 'good': 1.0, 'apart': 1.0, 'ability': 1.0, 'cleaning': 1.0, 'self': 1.0, 'brands': 1.0, 'sterilization': 1.0, 'used': 1.0, 'even': 1.0, 'most': 1.0, 'work': 1.0, 'but': 1.0, 'tried': 1.0, 'bottle': 1.0, 'return': 1.0, 'love': 2.0, 'expensive': 1.0, 'for': 4.0, 'to': 4.0, 'son': 1.0, 'is': 2.0, 'leaking': 1.0, 'him': 2.0, 'bf': 1.0, 'my': 2.0, 'exclusively': 1.0, 'fast': 1.0, 'problems': 1.0, 'brand': 1.0, 'a': 2.0, 'we': 1.0, 'get': 1.0, 'us': 1.0, 'taking': 1.0, 'of': 1.0, 'there': 1.0, 'bottles': 1.0, 'the': 5.0, 'i': 3.0, 'mess': 1.0, 'had': 2.0, 'flow': 1.0, 'nipples': 1.0, 'were': 1.0, 'and': 5.0, 'too': 1.0, 'slow': 1.0, 'he': 1.0, 'only': 1.0, 'with': 1.0, 'take': 2.0, 'will': 1.0, 'mam': 2.0, 'several': 1.0, 'no': 2.0, 've': 1.0}
Word element => {'have': 1.0, 'guaranteed': 1.0, 're': 1.0, 'breastfeed': 1.0, 'to': 2.0, 'unable': 1.0, 'are': 1.0, 'if': 1.0, 'formula': 1.0, 'truly': 1.0, 'pair': 1.0, 'tummy': 1.0, 'them': 2.0, 'and': 3.0, 'me': 1.0, 'couldn': 1.0, 'happy': 1.0, 'kid': 1.0, 'for': 1.0, 'arrived': 1.0, 'worked': 2.0, 'son': 1.0, 'that': 1.0, 'very': 1.0, 'upset': 1.0, 'you': 2.0, 'when': 1.0, 'bottle': 1.0, 'i': 3.0, 'tried': 1.0, 'ordered': 1.0, 'they': 3.0, 'some': 1.0, 'these': 2.0, 'a': 3.0, 't': 1.0, 'the': 2.0, 'great': 1.0, 'with': 2.0, 'organic': 1.0, 'advertised': 1.0, 'expectations': 1.0, 'find': 1.0, 'because': 1.0, 'just': 1.0, 'self': 1.0, 'low': 1.0, 'my': 2.0, 'hand': 1.0, 'impressed': 1.0, 'washed': 1.0, '34': 2.0, 'ran': 1.0, 'cycle': 1.0, 'in': 1.0, 'dishwasher': 1.0, 'through': 1.0, 'then': 1.0, 'sterilization': 1.0, 'never': 1.0, 'babe': 1.0, 'had': 1.0, 'colic': 1.0, 'or': 1.0}
Word element => {'mam': 1.0, 'use': 1.0, 'only': 1.0, 'down': 1.0, 'that': 1.0, 'i': 2.0, 'hold': 1.0, 'my': 1.0, 'one': 1.0, 'for': 1.0, 'is': 1.0, 'are': 1.0, 'they': 2.0, 'when': 1.0, 'assemble': 1.0, 'sterilize': 1.0, 'ring': 1.0, 'little': 3.0, 'hang': 1.0, 'be': 1.0, 'once': 1.0, 'inner': 1.0, 'wonderful': 1.0, 'can': 1.0, 'self': 1.0, 'tricky': 1.0, 'now': 1.0, 'to': 3.0, 'asleep': 1.0, 'of': 1.0, 'easy': 1.0, 'bottles': 2.0, 'ur': 1.0, 'like': 1.0, 'tired': 1.0, 'a': 1.0, 'the': 4.0, 'half': 1.0, 'but': 1.0, 'you': 1.0, 'break': 1.0, 'shape': 1.0, 'and': 2.0, 'get': 1.0}
Word element => {'rest': 1.0, 'for': 1.0, 'using': 1.0, 'will': 1.0, 'ease': 1.0, 'clue': 1.0, 'out': 1.0, 'and': 5.0, 'similar': 1.0, 's': 1.0, 'session': 1.0, 'were': 1.0, 'they': 1.0, 'single': 1.0, 'very': 1.0, 'a': 4.0, 'go': 1.0, 'from': 3.0, 'matter': 1.0, 'confused': 1.0, 'sterilization': 1.0, 'chubby': 1.0, 'toys': 1.0, 'point': 1.0, 'makes': 1.0, 'great': 1.0, 'hold': 1.0, 'my': 4.0, 'exclusively': 1.0, 'until': 1.0, 'tried': 2.0, 'setup': 1.0, 'have': 1.0, 'chew': 1.0, 'having': 1.0, 'every': 2.0, 'baby': 1.0, 'them': 1.0, 'introduce': 1.0, 'how': 1.0, 'children': 1.0, 'career': 1.0, 'brand': 1.0, 'nipple': 2.0, 'decided': 1.0, 'nearly': 1.0, '5': 1.0, 'definitely': 1.0, 'think': 1.0, 'impressed': 1.0, '3': 1.0, 'to': 7.0, 'as': 1.0, 'type': 1.0, 'had': 2.0, 'leaks': 1.0, 'was': 4.0, 'seemed': 2.0, 'store': 1.0, 'minutes': 1.0, 'be': 1.0, 'drink': 1.0, 'there': 1.0, 'give': 1.0, 'this': 1.0, 'bottle': 7.0, 'breastfed': 1.0, 'no': 2.0, '5th': 1.0, 'soft': 1.0, 'these': 2.0, 'months': 1.0, 'switching': 1.0, 'grocery': 1.0, 'mam': 1.0, 'by': 2.0, 'bottles': 1.0, 'instantly': 1.0, 'awesome': 1.0, 'shape': 1.0, 'the': 7.0, 'of': 4.0, 'him': 1.0, '9': 1.0, 'it': 3.0, 'at': 2.0, 'is': 2.0, 'breast': 2.0, 'during': 1.0, 'feeding': 1.0, 'wide': 1.0, 'microwave': 1.0, 'flat': 1.0, 'son': 3.0, 'drinking': 1.0, 'in': 2.0, 'seconds': 1.0, 'found': 1.0, 'easy': 1.0, 'i': 5.0, 'well': 1.0, 'which': 1.0, 'good': 1.0, 'he': 2.0, 'far': 1.0, 'so': 2.0, 'can': 1.0, 'with': 1.0}
Word element => {'portion': 1.0, 'bottom': 1.0, 'seeps': 1.0, 'practical': 1.0, 'was': 1.0, 'took': 1.0, 'i': 3.0, 'water': 1.0, 'daughter': 1.0, 'pacifiers': 1.0, 'made': 1.0, 'the': 6.0, 'these': 1.0, 'nipple': 1.0, 'but': 1.0, 'aren': 1.0, 'didn': 1.0, 'either': 1.0, 'thought': 1.0, 'mam': 1.0, 'too': 2.0, 'and': 1.0, 'like': 2.0, 'leaked': 1.0, 'bottle': 2.0, 'so': 1.0, 't': 2.0, 'might': 1.0, 'my': 2.0, 'may': 1.0, 'because': 1.0, 'not': 2.0, 'are': 1.0, 'pacifier': 1.0, 'they': 3.0, 'take': 1.0, 'into': 1.0, 'been': 1.0, 'case': 1.0, 'onto': 1.0, 'she': 1.0, 'it': 2.0, 'from': 1.0, 'hard': 2.0, 'this': 1.0, 'for': 2.0, 'her': 2.0, 'bottles': 2.0, 'latch': 1.0, 'think': 1.0, 'to': 2.0, 'as': 1.0, 'well': 1.0, 'have': 1.0, 'cute': 1.0}
Word element => {'though': 1.0, 'shaped': 1.0, 'that': 6.0, 'latching': 1.0, 'case': 1.0, 'another': 1.0, 'my': 1.0, 'underneath': 1.0, 'these': 1.0, 'but': 2.0, 'work': 1.0, '2': 1.0, 'works': 1.0, 'end': 1.0, 'do': 1.0, 'they': 1.0, 'them': 1.0, 'has': 1.0, 'for': 1.0, 'system': 1.0, 'actually': 2.0, 'one': 1.0, 'cons': 3.0, 'assemble': 1.0, 'way': 1.0, 's': 3.0, 'a': 1.0, 'could': 1.0, 't': 1.0, 'cute': 1.0, 'are': 4.0, 'and': 2.0, 'latch': 1.0, 'bottles': 5.0, 'it': 4.0, 'at': 2.0, 'is': 2.0, 'completely': 1.0, 'in': 3.0, 'air': 1.0, 'have': 1.0, 'some': 1.0, 'none': 1.0, 'anti': 1.0, 'perfect': 1.0, 'peices': 1.0, 'nipple': 1.0, 'of': 4.0, 'the': 8.0, 'positive': 1.0, 'bottle': 2.0, 'few': 1.0, 'very': 2.0, 'pros': 1.0, 'flat': 1.0, 'son': 1.0, 'gets': 2.0, 'flow': 1.0, 'onto': 2.0, 'formula': 1.0, 'before': 1.0, 'trapped': 2.0, 'feeding': 1.0, 'like': 2.0, 'u': 1.0, 'other': 2.0, 'there': 1.0, 'instead': 1.0, 'others': 1.0, 'many': 1.0, 'think': 1.0, 'unlike': 1.0, 'w': 1.0, 'water': 1.0, 'together': 1.0, 'if': 2.0, 'don': 1.0, 'dis': 1.0, 'allow': 1.0, 'would': 1.0, 'oz': 2.0, 'to': 1.0, 'dry': 1.0, 'well': 2.0, 'i': 2.0, 'putting': 1.0, 'colic': 1.0, 'be': 1.0, 'most': 2.0, 'back': 1.0, 'also': 1.0, 'side': 1.0, 'good': 1.0, 'overall': 1.0, 'measuring': 1.0, 'marks': 1.0, 'started': 1.0, 'since': 1.0, '1': 1.0}
Word element => {'new': 1.0, 'too': 1.0, 'potentially': 1.0, 'faster': 1.0, 'am': 1.0, 'newborns': 1.0, 'extra': 1.0, 'an': 1.0, 'made': 1.0, 'wish': 1.0, 'fast': 2.0, 'flow': 4.0, 'people': 1.0, 'some': 1.0, 'important': 1.0, 'forth': 1.0, 'switch': 1.0, 'grasp': 1.0, 'good': 1.0, 'she': 2.0, 'make': 1.0, 'weeks': 1.0, 'least': 1.0, 'similar': 1.0, 'exclusively': 1.0, 'nursed': 1.0, 'without': 1.0, '1': 1.0, 'day': 3.0, 'since': 1.0, 'over': 1.0, 'slow': 3.0, 'system': 1.0, 'keep': 1.0, 'most': 1.0, 'space': 1.0, 'takes': 1.0, 'favorite': 1.0, 'the': 28.0, 'bunch': 1.0, 'bringing': 1.0, 'at': 3.0, 'problem': 1.0, 'now': 2.0, 'air': 3.0, 'almost': 1.0, 'get': 2.0, 'nipple': 4.0, 'know': 1.0, 're': 1.0, '6': 1.0, 'due': 1.0, 'bubble': 1.0, 'need': 1.0, 'or': 1.0, 'biggest': 1.0, 'only': 4.0, 'then': 2.0, 'sure': 1.0, 'loved': 1.0, 'bottom': 3.0, 'fold': 1.0, 'love': 2.0, 'use': 1.0, 'inner': 1.0, 'reach': 1.0, 'you': 2.0, 'with': 10.0, 'on': 6.0, 'desires': 1.0, 'i': 16.0, 'putting': 1.0, 'ring': 3.0, 'bottles': 4.0, 'by': 3.0, 'home': 1.0, 'screwed': 1.0, 'these': 2.0, 'soft': 2.0, 'babies': 2.0, 'attention': 1.0, 'avent': 2.0, 'plus': 1.0, 'we': 2.0, 'bad': 2.0, 'upright': 1.0, 'came': 1.0, 'disposable': 4.0, 'might': 1.0, 'vacations': 1.0, 'have': 1.0, 'liking': 1.0, 'clean': 1.0, 'nanny': 1.0, 'little': 1.0, 'mom': 1.0, 'any': 1.0, 'idea': 1.0, 'been': 1.0, 'bottle': 4.0, 'a': 10.0, 'across': 1.0, 'for': 9.0, 'somewhat': 1.0, 'both': 3.0, 'years': 1.0, 'no': 4.0, 'liners': 3.0, 'started': 1.0, 'away': 1.0, 'worlds': 1.0, 'rarely': 1.0, 'baby': 5.0, 'your': 1.0, 'many': 1.0, 'which': 2.0, 'like': 1.0, 'one': 4.0, 'systems': 2.0, 'less': 1.0, 'as': 2.0, 'annoying': 2.0, 'down': 1.0, 'drunk': 1.0, 'figured': 1.0, 'go': 1.0, 'my': 7.0, 'are': 1.0, 'issues': 2.0, 'past': 1.0, 'following': 1.0, 'find': 1.0, 'very': 2.0, 'why': 1.0, 'and': 16.0, 'just': 1.0, 'several': 1.0, 'position': 1.0, 'drop': 4.0, 'but': 6.0, '2': 3.0, 'playtex': 4.0, 'so': 2.0, 'personally': 1.0, 'dry': 2.0, 'not': 4.0, 'them': 4.0, 'regular': 1.0, 'in': 5.0, 'thought': 1.0, 'be': 2.0, 'it': 5.0, 'way': 1.0, 'mam': 4.0, 'all': 2.0, 'prefer': 1.0, 'binkies': 2.0, 'comes': 1.0, 'bought': 1.0, 'brought': 1.0, 'used': 2.0, 'is': 7.0, 'can': 3.0, 'awhile': 1.0, 'grab': 1.0, 'feeding': 2.0, 'flexible': 1.0, 'while': 2.0, 'lost': 1.0, 'tricky': 1.0, 'times': 1.0, 'ins': 3.0, 'lid': 2.0, 'to': 10.0, 'right': 1.0, 'leak': 1.0, 'reasons': 1.0, 'had': 5.0, 'complain': 1.0, 'depending': 1.0, 'far': 1.0, 'pay': 1.0, 'back': 2.0, 'when': 2.0, 'okay': 1.0, 'about': 1.0, 'up': 1.0, 'washing': 1.0, 'before': 1.0, 'style': 1.0, 'was': 4.0, 'rubber': 2.0, 'nonetheless': 1.0, 'hard': 2.0, 'novel': 1.0, 'taking': 1.0, 'older': 1.0, 'trying': 2.0, 'fit': 3.0, 't': 2.0, 'off': 1.0, 'forgot': 1.0, 'see': 1.0, 'out': 2.0, 'that': 6.0, 'brands': 1.0, 'even': 1.0, 'of': 5.0, 'old': 1.0, 'perfectly': 1.0, 'there': 2.0, 'more': 1.0, 'wouldn': 1.0, 'enough': 1.0, 'tight': 1.0, 'would': 3.0, 'tipped': 1.0, 'sucking': 1.0, 'wa': 1.0, 'who': 1.0, 'from': 1.0, 'best': 1.0, 'fiddle': 1.0, 'complaint': 1.0, 'liner': 3.0, 'they': 2.0, 'refill': 1.0, 'put': 1.0, 'base': 1.0, 'if': 1.0, 'la': 1.0, 'super': 1.0, 'same': 1.0, 'calapse': 1.0, 'shape': 1.0, 'confusing': 1.0, 'youngest': 1.0}
Word element => {'limitations': 1.0, 'its': 1.0, 'due': 1.0, 'term': 1.0, 'regular': 1.0, 'his': 1.0, 'about': 1.0, 'picky': 1.0, 'not': 2.0, 'older': 1.0, 'good': 1.0, 'which': 1.0, 's': 1.0, 'brown': 1.0, 'dr': 1.0, 'now': 1.0, 'base': 1.0, 'reheat': 1.0, 'on': 1.0, 'long': 2.0, 'leak': 1.0, 'correctly': 1.0, 'have': 2.0, 'successful': 1.0, 'assembled': 1.0, 'time': 3.0, 'so': 2.0, 'with': 1.0, 'already': 1.0, 'it': 6.0, 'felt': 1.0, 'when': 2.0, 'you': 1.0, 'did': 1.0, 'transition': 3.0, 'informed': 1.0, 'issues': 1.0, 'breastfed': 1.0, 'at': 1.0, 'consideration': 1.0, 'back': 1.0, 'there': 1.0, 'our': 2.0, 'to': 16.0, 'planning': 1.0, 'were': 3.0, 'layer': 1.0, 'because': 1.0, 'that': 3.0, 'into': 2.0, 'over': 1.0, 'work': 1.0, 'but': 4.0, 'get': 1.0, 'trouble': 1.0, 'i': 8.0, 'two': 2.0, 'getting': 1.0, 'a': 5.0, 'go': 1.0, 'could': 1.0, 't': 2.0, 'do': 1.0, 'only': 1.0, 'he': 1.0, 'reviews': 2.0, 'we': 3.0, 'take': 1.0, 'people': 1.0, 'just': 1.0, 'going': 1.0, 'heat': 1.0, 'negative': 1.0, 'bought': 1.0, 'for': 2.0, 'expensive': 1.0, 'was': 2.0, 'had': 2.0, 'leaks': 1.0, 'all': 1.0, 'ultimately': 2.0, 'other': 1.0, 'as': 1.0, 'leave': 2.0, 'and': 7.0, 'they': 1.0, 'borrowed': 1.0, 'priced': 1.0, 'baby': 1.0, 'others': 1.0, 'daycare': 1.0, 'from': 1.0, 'm': 2.0, 'in': 1.0, 'hopes': 1.0, 'me': 3.0, 'my': 2.0, 'son': 2.0, 'gets': 1.0, 'more': 1.0, 'reasonably': 1.0, 'once': 1.0, 'the': 7.0, 'of': 2.0, 'steps': 1.0, 'mimijumi': 2.0, 'got': 1.0, 'didn': 1.0, 'used': 1.0, 'thicker': 1.0, 'bottle': 9.0, 'few': 1.0, 'this': 3.0, 'mam': 1.0, 'doesn': 1.0, 'step': 1.0, 'are': 1.0, 'first': 1.0, 'seemed': 1.0, 'avent': 1.0, 'great': 1.0, 'since': 1.0, 'friend': 1.0, '1': 1.0, 'next': 1.0, 'rarely': 1.0, 'has': 1.0, 'try': 1.0, 'one': 3.0, 'reheating': 1.0, 'or': 1.0, 'takes': 1.0, 'water': 1.0, 're': 1.0, 'using': 2.0, '2': 1.0, 'surprise': 1.0}
Word element => {'up': 1.0, 'bottles': 1.0, 'kids': 1.0, 'months': 1.0, 'used': 1.0, 'was': 1.0, 'does': 1.0, 'than': 1.0, 'amazon': 1.0, 'to': 3.0, 'child': 1.0, 'hold': 1.0, 'garbage': 1.0, 'bunch': 1.0, 'weaning': 1.0, 'which': 1.0, 'using': 1.0, 'a': 3.0, 'confusion': 1.0, '3': 1.0, 'develop': 1.0, 'day': 1.0, 'buy': 1.0, 'son': 2.0, 'absolutely': 1.0, '34': 4.0, 'both': 2.0, 'daughter': 2.0, 'when': 1.0, 'the': 4.0, 'of': 1.0, 'set': 1.0, '6th': 1.0, 'yes': 1.0, 'off': 1.0, 'and': 10.0, 'use': 2.0, 'anyway': 1.0, 'aspect': 1.0, 'not': 1.0, 'started': 1.0, '5th': 1.0, 'is': 4.0, 'more': 1.0, 'locally': 1.0, 'nipple': 2.0, 'brand': 1.0, 'did': 2.0, 'makes': 1.0, 'they': 5.0, 'could': 1.0, 'disassemble': 1.0, 'liquids': 1.0, 'continues': 1.0, 'meant': 1.0, 'for': 3.0, 'opinion': 1.0, 'love': 1.0, 'he': 1.0, 'slow': 1.0, 'oh': 1.0, 'with': 1.0, '0': 1.0, 'wish': 1.0, 'first': 1.0, 'also': 1.0, 'or': 1.0, 'medium': 1.0, 'breastfeeding': 1.0, 'put': 1.0, 'do': 1.0, 'have': 1.0, 'anti': 1.0, 'parts': 2.0, 'clean': 1.0, 'regular': 1.0, 'in': 2.0, 'dishwasher': 1.0, 'but': 2.0, 'trick': 1.0, '2': 1.0, 'think': 1.0, 'airflow': 1.0, 'colic': 1.0, '9': 1.0, 'it': 2.0, 'my': 7.0, 'entire': 1.0, 'replacement': 1.0, 'only': 1.0, 'nipples': 1.0, 'great': 2.0, '1': 1.0, 'them': 4.0, 'always': 1.0, 'has': 1.0, 'available': 1.0, 'flow': 3.0, 'worth': 1.0, 'now': 1.0, 'well': 1.0, 'i': 6.0, 'fast': 2.0, 'super': 1.0, 'this': 3.0, 'bottle': 2.0, 'thicker': 1.0}
Word element => {'with': 1.0, 'over': 1.0, 'satisfied': 1.0, 'but': 1.0, 'wrinkly': 1.0, 'i': 1.0, 'it': 4.0, 'bit': 1.0, 'got': 1.0, 'my': 1.0, 'and': 1.0, 'loved': 1.0, 'for': 1.0, 'sister': 1.0, 'a': 1.0, 'she': 1.0, 'was': 2.0}
Word element => {'whenever': 1.0, 'curse': 1.0, 'listen': 1.0, 'have': 1.0, 'so': 1.0, 'sell': 1.0, 'tempted': 1.0, 'm': 1.0, 'unfold': 1.0, 'equally': 1.0, 'to': 5.0, 'huge': 1.0, 'tricky': 1.0, 'heavy': 1.0, 'ungodly': 1.0, 'near': 1.0, 'big': 2.0, 'nice': 1.0, 'quite': 1.0, 'saying': 1.0, 'also': 2.0, 'beyond': 1.0, 'i': 3.0, 'come': 1.0, 'bike': 1.0, 'cumbersome': 1.0, 'brake': 1.0, 'assanine': 1.0, 'he': 2.0, 'it': 5.0, 'don': 1.0, 'nearly': 1.0, 'the': 6.0, 'pain': 1.0, 'mechanic': 1.0, 'since': 1.0, 'them': 1.0, 'underneath': 1.0, 'details': 1.0, 'my': 3.0, 'off': 1.0, 're': 1.0, 'hood': 1.0, 'every': 1.0, 'but': 1.0, 'most': 1.0, 'has': 2.0, 'well': 1.0, 'review': 1.0, 'won': 1.0, 'on': 1.0, 'bulge': 1.0, 'basket': 1.0, 'into': 1.0, 'that': 1.0, 'talks': 1.0, 'ddn': 1.0, 'seen': 1.0, 'here': 1.0, 'wheels': 1.0, 'thing': 1.0, 'about': 1.0, 'no': 1.0, 'and': 4.0, 'overinflate': 1.0, 'tires': 3.0, 'husband': 2.0, 'comes': 1.0, 'is': 2.0, 'just': 1.0, 'says': 1.0, 'they': 1.0, 'ever': 1.0, 'go': 1.0, 't': 3.0, 'a': 4.0, 'we': 1.0, 's': 3.0, 'collapse': 1.0, 'handles': 1.0}
Word element => {'t': 1.0, 'don': 1.0, 'adapters': 1.0, 'car': 1.0, 'tray': 1.0, 'bottle': 1.0, 'extra': 1.0, 'costs': 1.0, 'awful': 1.0, 'us2': 1.0, 'out': 1.0, 'unlocking': 1.0, 'tricky': 1.0, 'was': 1.0, 'water': 1.0, 'up': 1.0, 'want4': 1.0, 'you': 2.0, 'jog': 1.0, 'can': 1.0, 'teds': 1.0, 'option': 1.0, 'tire': 1.0, 'front': 1.0, 'holder': 1.0, 'swivel': 1.0, 'phil': 1.0, 'ride3': 1.0, 'comfortable': 1.0, 'helpful': 1.0, 'joke': 1.0, 'everything': 1.0, 'manual': 1.0, 'instruction': 2.0, 'youtube': 1.0, 'thanks': 1.0, 'never': 1.0, 'complaint': 1.0, '8': 1.0, 'tires': 4.0, 'issue': 1.0, 'expensive': 1.0, 'reviewers': 1.0, 'are': 1.0, 'very': 2.0, 'provides': 1.0, 'ride': 1.0, 'however': 1.0, 'kit': 2.0, 'for': 3.0, 'not': 3.0, 'actual': 1.0, 'one': 1.0, 'vs': 1.0, '5': 1.0, 'doubles': 2.0, 'really': 2.0, 'had': 3.0, 'have': 7.0, 'pros': 1.0, 'flat': 1.0, 'totally': 1.0, '4': 1.0, 'case': 1.0, 'explorer': 1.0, 'get': 1.0, 'months': 1.0, 'trouble': 1.0, 'used': 1.0, 'adjusts': 1.0, 'sturdy2': 1.0, 'and': 10.0, 'like': 2.0, 'which': 1.0, 'me': 1.0, 'my': 4.0, 'i': 12.0, 'manual3': 1.0, 'use': 2.0, 'therefore': 1.0, 'put': 2.0, 'portable': 1.0, 'long': 1.0, 'on': 1.0, 'biggest': 1.0, 'only': 1.0, 'it': 11.0, 'heavy': 1.0, 'annoying': 1.0, 'solved': 1.0, 'times': 1.0, 'a': 5.0, 'nice': 2.0, 'walks': 1.0, 'slime': 2.0, 'at': 1.0, 'is': 5.0, 'warped': 1.0, 'once': 2.0, 'currently': 1.0, 'deal': 1.0, 'folds': 1.0, 'baby': 2.0, 'but': 4.0, 'most': 1.0, 'sturdy': 1.0, 'they': 1.0, 'always': 1.0, 'getting': 1.0, 'week': 1.0, 'changed': 1.0, 'tubes': 1.0, 'now': 1.0, 'seat': 1.0, 'in': 2.0, 'were': 1.0, 'recommend': 1.0, 'helped': 1.0, 'other': 1.0, 'an': 1.0, 'problemscons': 1.0, '1': 2.0, 'find': 1.0, 'since': 1.0, 'if': 2.0, 'still': 1.0, 'we': 1.0, 'take': 1.0, 'figured': 1.0, 'locked': 1.0, 'pump': 1.0, 'learned': 1.0, 'tube': 1.0, 'just': 1.0, 'visor': 1.0, 'also': 1.0, 'how': 1.0, 'to': 3.0, 'right': 1.0, 'no': 2.0, 'snack': 1.0, 'plenty': 1.0, 'with': 2.0, 'of': 2.0, 'the': 6.0, 'popping': 1.0, 'needs': 1.0, 'off': 1.0, 'nicely': 2.0, 'than': 1.0, 'trickier': 1.0, 'be': 1.0, 'that': 2.0, 'problems': 1.0}
Word element => {'500': 1.0, 'trying': 1.0, 'meantime': 1.0, 'option': 1.0, 'bulkier': 1.0, 'probably': 1.0, 'd': 1.0, 'whatever': 1.0, 'restaurants': 1.0, 'stores': 1.0, 'move': 1.0, 'careful': 1.0, 'because': 1.0, 'perplexes': 1.0, 'lost': 1.0, 'over': 1.0, 'feel': 1.0, 'almost': 1.0, 'adjustable': 1.0, '6': 2.0, 'seat': 1.0, 'lose': 1.0, 'size': 1.0, 'basket': 1.0, 'falls': 1.0, 'asleep': 1.0, 'back': 1.0, 'easy': 2.0, 'comfortable': 1.0, 'space': 1.0, 'always': 1.0, 'pros': 1.0, 'time': 1.0, 'every': 1.0, 'spilled': 1.0, 'being': 1.0, 'everything': 1.0, 'resulting': 1.0, 'anything': 1.0, 'you': 1.0, 'works': 1.0, 'generic': 1.0, 'teds': 3.0, 'phil': 3.0, 'parks': 1.0, 'theme': 1.0, 'nearby': 1.0, 'itself': 1.0, 'tube': 1.0, 'shot': 1.0, 'like': 2.0, 'put': 1.0, 'pleasantly': 1.0, 'sounded': 1.0, 'frame': 1.0, 'were': 5.0, 'realized': 1.0, 'keep': 1.0, 'wonderful': 1.0, 'run': 1.0, 'seems': 1.0, 'true': 2.0, 'weeks': 2.0, 'summer': 1.0, 'both': 1.0, 'son': 3.0, 'at': 6.0, 'exploded': 1.0, 'from': 2.0, 'last': 2.0, 'am': 1.0, 'soon': 2.0, 'flips': 1.0, 'there': 2.0, 'would': 1.0, 'sailing': 1.0, 'durable': 1.0, 'ducking': 1.0, 'me': 2.0, 'my': 4.0, 'smooth': 1.0, 'with': 6.0, 'haven': 1.0, 'problem': 1.0, 'literally': 1.0, 'bit': 1.0, 'ability': 1.0, 'tires': 2.0, 'about': 2.0, 'behind': 1.0, 'tray': 1.0, 'handle': 1.0, 'excited': 1.0, 'people': 1.0, 'idea': 1.0, 'lay': 1.0, 'pretty': 1.0, 'to': 19.0, 'also': 2.0, 'store': 1.0, 'was': 9.0, 'that': 7.0, 'in': 7.0, 'on': 2.0, 'usually': 1.0, 'walking': 1.0, 'do': 2.0, 'snack': 1.0, 'florida': 1.0, 'randomly': 1.0, 'try': 1.0, 'actual': 1.0, 'one': 3.0, 'spent': 1.0, 'jog': 1.0, 'house': 1.0, 'rim': 1.0, 'not': 1.0, 'convince': 2.0, 'stroller': 3.0, 'our': 5.0, 'luck': 1.0, 'i': 24.0, 'really': 2.0, 'second': 2.0, 'll': 2.0, 'side': 2.0, 'again': 1.0, 'which': 3.0, 'this': 1.0, 'few': 3.0, 'gun': 1.0, 'when': 3.0, 'perfect': 1.0, 'wouldn': 1.0, 'underneath': 1.0, 'beach': 1.0, 'wanted': 1.0, 'had': 3.0, 'so': 5.0, 'tried': 1.0, 'just': 3.0, 'and': 8.0, 'constantly': 1.0, 'hunched': 1.0, 'is': 8.0, 'can': 1.0, 'another': 1.0, 'love': 4.0, 'inept': 1.0, 'but': 4.0, 'money': 1.0, 'things': 1.0, 'myself': 2.0, 'the': 24.0, 'even': 1.0, 'old': 1.0, 'of': 2.0, 'especially': 1.0, 'know': 1.0, 're': 1.0, 'where': 1.0, 'he': 2.0, 'him': 2.0, 'double': 1.0, 't': 6.0, 'if': 3.0, 'service': 1.0, 'super': 1.0, 'don': 2.0, 'child': 1.0, 'close': 1.0, 'a': 16.0, 'bob': 1.0, 'go': 2.0, 'huge': 1.0, 'though': 1.0, 'after': 1.0, 'by': 1.0, 'as': 5.0, 'fell': 1.0, 'annoying': 1.0, 'plastic': 1.0, 'although': 3.0, 'buckled': 1.0, 'changed': 1.0, 'backordered': 1.0, 'pieces': 1.0, 'for': 6.0, 'without': 2.0, 'first': 2.0, 'we': 10.0, 'bad': 1.0, 'worth': 1.0, 'runner': 1.0, '4': 1.0, 'cup': 2.0, 'm': 1.0, 'doesn': 1.0, 's': 5.0, 'inline': 2.0, 'life': 1.0, 'customer': 1.0, 'wheels': 1.0, 'only': 1.0, 'minute': 1.0, 'surprised': 1.0, 'they': 2.0, 'able': 1.0, 'however': 3.0, 'often': 1.0, 'get': 2.0, 'shipping': 1.0, 'been': 1.0, 'location': 1.0, '2': 2.0, 'end': 1.0, 'going': 1.0, 'it': 16.0, 'shade': 2.0, 'be': 2.0, 'out': 1.0, 'see': 2.0, 'neither': 1.0, 'off': 1.0, 'sent': 1.0, 'two': 1.0, 'little': 2.0, 'day': 2.0, 'everyone': 1.0, 've': 1.0, 'has': 1.0, 'gotten': 1.0, 'no': 2.0, 'used': 1.0, 'folding': 1.0, 'up': 2.0, 'struggled': 1.0, 'better': 1.0, 'spoke': 1.0, 'definitely': 3.0, 'sun': 3.0, 'pops': 1.0, 'narrow': 1.0, 'nice': 2.0, 'big': 1.0, 'replacement': 1.0, 'enough': 1.0, 'cover': 1.0, 'festival': 1.0, 'have': 3.0, 'hot': 1.0, 'point': 1.0, 'window': 1.0, 'peer': 1.0, 'tire': 4.0, 'around': 4.0, 'airports': 1.0, 'heavy': 1.0, 'completely': 1.0, 'fixing': 1.0, 'fact': 1.0, 'front': 1.0, 'want': 1.0, 'purchased': 2.0, 'husband': 2.0, 'holder': 2.0, 'or': 2.0, 'months': 1.0, 'storage': 1.0, 'frustrated': 1.0, 'parents': 1.0, 'baby': 2.0, 'guy': 1.0, 'crowded': 1.0, 'buy': 1.0, 'having': 2.0}
Word element => {'nursery': 1.0, 'in': 2.0, 'unused': 1.0, 'new': 1.0, 'brand': 1.0, 'and': 2.0, 'up': 1.0, 'time': 1.0, 'on': 1.0, 'items': 1.0, 'original': 1.0, 'item': 1.0, 'this': 1.0, 'packaging': 1.0, 'all': 1.0, 'just': 1.0, 'appeared': 1.0, 'placed': 1.0, 'to': 2.0, 'be': 2.0, 'are': 1.0, 'showed': 1.0, 'the': 1.0, 'waiting': 1.0}
Word element => {'clean': 1.0, 'easy': 1.0, 's': 1.0, 'it': 1.0, 'falling': 1.0, 'catches': 1.0, 'food': 1.0, 'fitting': 1.0, 'neck': 1.0, 'i': 1.0, 'part': 1.0, 'to': 2.0, 'grandsons': 1.0, 'up': 1.0, 'items': 1.0, 'like': 1.0, 'form': 1.0, 'my': 1.0, 'the': 1.0, 'that': 1.0}
Word element => {'aiding': 1.0, 'wet': 1.0, 'recognize': 1.0, 'helps': 1.0, 'his': 1.0, 'never': 1.0, 'leak': 1.0, 'diaper': 1.0, 'matter': 1.0, 'while': 1.0, 'when': 2.0, 'wears': 1.0, 'underpants': 1.0, 'big': 2.0, 'which': 1.0, 'how': 1.0, 'he': 4.0, 'that': 2.0, 'loves': 1.0, 'colors': 1.0, 'of': 1.0, 'do': 1.0, 'and': 5.0, 'not': 1.0, 'me': 1.0, 'accident': 1.0, 'get': 1.0, 'really': 1.0, 'is': 3.0, 'an': 1.0, 'training': 2.0, 'in': 3.0, 'choose': 1.0, 'having': 1.0, 'seems': 2.0, 'they': 4.0, 'makes': 1.0, 'these': 1.0, 'the': 4.0, 'son': 2.0, 'no': 1.0, 'x': 1.0, 'with': 1.0, '22': 1.0, 'it': 2.0, 'came': 1.0, 'my': 3.0, 'goes': 1.0, 'pants': 1.0, 'have': 1.0, 'small': 1.0, 'potty': 3.0, 'boy': 1.0, 'so': 1.0, 'velour': 1.0, 'are': 2.0, 'interior': 1.0, 'absolutely': 1.0, 'i': 2.0, 'love': 1.0, 'for': 1.0, 'pound': 1.0, 'very': 1.0, 'little': 2.0, 'can': 1.0, 'but': 1.0, 'exception': 1.0, 'smallest': 1.0, 'size': 1.0, 'kid': 1.0, 'be': 1.0, 's': 1.0, 'we': 1.0, 'a': 2.0, 'soft': 1.0, 'perfect': 1.0, 'wish': 1.0, '30': 1.0, 'one': 1.0, 'huge': 1.0, 'patterns': 1.0, 'all': 1.0, 'to': 2.0, 'baby': 1.0, 'them': 1.0, 'easier': 1.0, 'absorbent': 1.0, 'make': 1.0, 'on': 1.0, 'off': 1.0}
Word element => {'wish': 1.0, 'two': 1.0, 'each': 1.0, 'spend': 1.0, 'enough': 1.0, 'sum': 1.0, 'helped': 1.0, 'hope': 1.0, 'anyway': 1.0, 'never': 1.0, 'people': 1.0, 'expectations': 1.0, 'con': 1.0, 'isn': 1.0, 'this': 2.0, 'start': 1.0, 'elimination': 1.0, 'practicing': 1.0, 'sizes': 1.0, 'come': 1.0, 'try': 1.0, 'trimmest': 1.0, 'flexible': 1.0, 'may': 1.0, 'disposable': 1.0, 'near': 1.0, 'other': 1.0, 'better': 1.0, 'had': 2.0, 've': 1.0, 'early': 2.0, 'use': 1.0, 'pricing': 1.0, 't': 2.0, 'rate': 1.0, 'bulk': 1.0, 'see': 2.0, 'used': 3.0, 'd': 1.0, 'time': 1.0, 'cost': 1.0, 'yes': 1.0, 'dozen': 1.0, 'set': 2.0, 'underwear': 1.0, 'get': 1.0, 'cons': 1.0, 'look': 1.0, 'seriously': 1.0, 'cute': 1.0, 'somewhat': 1.0, 'easier': 1.0, 'off': 1.0, 'outside': 1.0, 'humid': 1.0, 'full': 1.0, 'damp': 1.0, 'smaller': 1.0, 'compared': 2.0, 'parents': 2.0, 'good': 1.0, 'waterproof': 2.0, 'not': 4.0, 'adorable': 1.0, 'dry': 4.0, 'cloth': 3.0, 'bulkier': 1.0, 'forget': 1.0, 'on': 8.0, 'supplement': 1.0, 'side': 1.0, 'which': 1.0, 'run': 1.0, 'something': 1.0, 'furniture': 1.0, 'toddlers': 1.0, 'info': 1.0, 'an': 2.0, 'fits': 2.0, 'want': 4.0, 'pull': 1.0, 'free': 1.0, 'sound': 1.0, 'that': 3.0, 'way': 1.0, '20': 1.0, 'young': 1.0, 'instant': 1.0, 'first': 1.0, 'molecules': 1.0, 'holes': 1.0, 'so': 2.0, 'helping': 1.0, 'soak': 1.0, 'about': 1.0, 'tool': 2.0, 'nice': 3.0, 'feel': 3.0, 'your': 4.0, 'trimmer': 1.0, 'thigh': 2.0, 'feeling': 1.0, 'large': 1.0, 'who': 1.0, 'from': 1.0, 'occasional': 1.0, 'potty': 2.0, 'in': 3.0, 'actual': 1.0, 'amiss': 1.0, 'one': 2.0, 'expensive': 2.0, 's': 3.0, 'communication': 1.0, 'comfortably': 1.0, 'a': 16.0, 'small': 3.0, 'can': 2.0, 'is': 5.0, 'petite': 1.0, 'strong': 1.0, 'tot': 1.0, 'than': 3.0, 'absorbent': 1.0, 'water': 3.0, 'favorite': 1.0, 'feels': 1.0, 'daughter': 4.0, 'through': 1.0, 'fabric': 1.0, 'though': 3.0, 'by': 1.0, 'softeners': 1.0, 'i': 10.0, '17': 1.0, 'for': 14.0, 'pair': 2.0, 'the': 11.0, 'wet': 5.0, 'sizing': 2.0, 'bind': 1.0, 'same': 1.0, 'feedback': 1.0, 'training': 11.0, 'putting': 1.0, 'quite': 1.0, 'diapers': 7.0, 'but': 5.0, 'pants': 8.0, '16': 1.0, 'find': 1.0, 'buildup': 1.0, 'very': 6.0, 'awesome': 1.0, 'learning': 1.0, 'are': 8.0, 'my': 7.0, 'these': 11.0, 'they': 8.0, 'she': 1.0, 'baby': 1.0, 'thicker': 1.0, 'mo': 1.0, 'sized': 1.0, 'up': 2.0, 'diaper': 3.0, 'completely': 1.0, 'heavy': 1.0, 'less': 2.0, 'as': 4.0, '50th': 1.0, 'before': 1.0, 'probably': 1.0, 'indication': 1.0, 'under': 1.0, 'chemically': 1.0, 'height': 2.0, 'have': 7.0, 'dryer': 1.0, 'mobility': 2.0, 'hold': 3.0, 'weightwise': 1.0, 'designed': 1.0, 'cottonideal': 1.0, 'don': 1.0, 'still': 3.0, 'great': 2.0, 'if': 5.0, 'you': 8.0, 'when': 3.0, 'lbs': 1.0, 'little': 2.0, 'cotton': 2.0, 'her': 1.0, 'pros': 1.0, 'wash': 2.0, 'much': 4.0, 'bum': 1.0, 'only': 2.0, 'design': 1.0, 'walks': 1.0, 'anderson': 2.0, 'pat': 1.0, 'repellency': 1.0, 'child': 2.0, 'needs': 1.0, 'shorter': 1.0, 'it': 4.0, 'percentile': 1.0, 'be': 4.0, 'bare': 1.0, 'perfectly': 1.0, 'changed': 1.0, 'or': 7.0, 'more': 3.0, 'brands': 2.0, 'even': 4.0, 'old': 1.0, 'of': 4.0, 'protection': 2.0, 'gerber': 2.0, 'consider': 1.0, 'leaks': 1.0, 'clean': 1.0, 'nowhere': 1.0, 'will': 2.0, 'cover': 1.0, 'stage': 1.0, 'over': 1.0, 'work': 1.0, 'minimum': 1.0, 'stuff': 1.0, 'to': 16.0, 'cruises': 1.0, 'washer': 1.0, 'pads': 1.0, 'just': 2.0, 'and': 14.0, 'runs': 1.0, 'detergent': 2.0, 'worn': 1.0, 'too': 1.0, 'build': 1.0, 'causes': 1.0, 'any': 1.0, 'smells': 1.0, 'our': 1.0, 'some': 1.0, 'disposables': 1.0, 'charlie': 1.0, 'hannah': 2.0, 'with': 8.0, 'using': 1.0, 'leak': 2.0, 'country': 1.0, 'brand': 1.0, 're': 3.0, 'save': 1.0, 'size': 1.0, 'holds': 1.0, 'half': 1.0, 'appropriate': 1.0, 'scoop': 1.0, 'easy': 1.0, 'soap': 1.0, 'well': 1.0, 'line': 1.0, 'would': 2.0, 'love': 2.0, 'medium': 1.0, 'need': 1.0, 'also': 1.0, 'soft': 2.0, 'like': 2.0, 'fine': 1.0, 'perfumed': 1.0, 'extra': 1.0, '100': 1.0, 'bulky': 2.0, 'cycle': 1.0, 'nothing': 1.0, 'else': 1.0, 'might': 2.0, 'wetter': 1.0, 'rinse': 1.0, 'machine': 1.0, 'surface': 1.0, 'waist': 1.0, 'really': 4.0, 'yet': 1.0, 'regular': 1.0, 'bands': 1.0, 'them': 1.0, 'none': 1.0, 'pee': 2.0}
Word element => {'up': 1.0, 'definitely': 1.0, 'in': 1.0, 'size': 2.0, 'true': 1.0, 'say': 1.0, 'would': 1.0, 'i': 1.0, 'great': 1.0, 'you': 1.0, 'unless': 1.0, 'mint': 1.0, 'color': 1.0, 'photo': 1.0, 'trim': 1.0, 'halfway': 1.0, 'fade': 1.0, 'pill': 1.0, 'are': 6.0, 'does': 1.0, 'that': 1.0, 'layer': 2.0, 'almost': 1.0, 'or': 2.0, 'binding': 1.0, 'colors': 1.0, 'onto': 1.0, 'not': 2.0, 'if': 1.0, 'stay': 1.0, 'material': 1.0, 'fit': 2.0, 't': 2.0, 's': 1.0, 'undies': 2.0, 'thick': 1.0, 'fleecy': 1.0, 'child': 1.0, 'don': 1.0, 'soft': 2.0, 'full': 1.0, 'essentially': 1.0, 'pants': 2.0, 'to': 1.0, 'high': 1.0, 'doubt': 1.0, 'fleece': 1.0, 'be': 1.0, 'openings': 1.0, 'very': 7.0, 'little': 2.0, 'floor': 1.0, 'do': 1.0, 'and': 4.0, 'green': 1.0, 'but': 3.0, 'training': 2.0, 'quality': 1.0, 'stretchy': 1.0, 'pee': 2.0, 'these': 5.0, 'sofa': 1.0, 'fabric': 1.0, 'dribble': 1.0, 'is': 4.0, 'feels': 1.0, 'leg': 1.0, 'the': 8.0, 'of': 1.0, 'like': 1.0, 'hold': 1.0, 'itchy': 1.0, 'on': 2.0, 'feel': 1.0, 'your': 1.0, 'doesn': 1.0, 'waist': 1.0, 'underwear': 1.0, 'also': 1.0, 'will': 3.0, 'with': 1.0, 'chocolate': 1.0, 'between': 1.0, 'fuzzy': 1.0, 'they': 3.0, 'brown': 1.0, 'absorbency': 1.0, 'diaper': 1.0, 'there': 1.0, 'let': 1.0, 'no': 1.0, 'waterproof': 1.0, 'since': 1.0, 'thicker': 1.0, 'can': 1.0, 'so': 1.0, 'small': 1.0, 'confident': 1.0, 'a': 5.0, 'moisture': 1.0, 'than': 1.0, 'inner': 1.0, 'absorbent': 1.0, 'contained': 1.0, 'grandma': 1.0, 'wet': 1.0, 'bit': 2.0, 'soak': 1.0, 'accurate': 1.0, 'run': 2.0, 'prepared': 1.0, 'kid': 1.0, 'it': 1.0, 'wear': 1.0, 'fancy': 1.0}
Word element => {'recommend': 1.0, 'would': 1.0, 'prints': 1.0, 'use': 1.0, 'sure': 1.0, 'easy': 1.0, 'be': 1.0, 'trainers': 1.0, 'want': 1.0, 'you': 1.0, 'potty': 1.0, 'love': 1.0, 'for': 2.0, 'up': 1.0, 'wash': 1.0, 'in': 2.0, 'ton': 1.0, '6': 1.0, 'of': 1.0, 'pounds': 1.0, 'i': 3.0, 'these': 1.0, 'the': 4.0, 'more': 1.0, 'a': 1.0, 't': 1.0, 'useful': 1.0, 'pairs': 1.0, 'fairly': 1.0, 'are': 3.0, 'cold': 1.0, 'mine': 1.0, 'shrunk': 1.0, 'made': 1.0, 'pants': 1.0, 'nice': 1.0, 'sizing': 1.0, 'training': 2.0, 'on': 2.0, 'washed': 1.0, 'absorbent': 1.0, 'like': 1.0, 'usa': 1.0, 'them': 1.0, 'fits': 1.0, 'and': 2.0, 'very': 4.0, 'dried': 1.0, 'have': 1.0, 'snug': 1.0, 'small': 1.0, '14': 1.0, 'cute': 1.0, '19': 1.0, 'even': 1.0, 'then': 1.0, 'they': 3.0, 'gentle': 1.0, 'pretty': 1.0, 'all': 1.0, 'to': 3.0, 'point': 1.0, 'that': 2.0, 'really': 1.0, 'but': 2.0, 'aren': 1.0}
Word element => {'though': 1.0, 'was': 1.0, 'price': 1.0, 'don': 1.0, 'gentle': 1.0, 'no': 1.0, 'a': 1.0, 't': 1.0, 'the': 3.0, 'lower': 1.0, 'these': 1.0, 'nicely': 1.0, 'other': 1.0, 'most': 1.0, 'are': 3.0, 'is': 1.0, 'leaks': 1.0, 'looks': 1.0, 'inside': 1.0, 'training': 1.0, 'they': 2.0, 'has': 1.0, 'boy': 1.0, 'bands': 1.0, 'in': 1.0, 'also': 1.0, 'brands': 1.0, 'pants': 1.0, 'like': 1.0, 'little': 1.0, 'very': 5.0, 'stitching': 1.0, 'of': 1.0, 'press': 1.0, 'and': 2.0, 'too': 1.0, 'hard': 1.0, 'on': 1.0, 'soft': 1.0, 'wish': 1.0, 'tummy': 1.0, 'sit': 1.0, 'or': 1.0, 'yet': 1.0, 'my': 1.0, 'tight': 1.0, 'comfortable': 1.0, 'legs': 1.0, 'enough': 1.0, 'to': 1.0, 'them': 1.0, 'stop': 1.0, 'cute': 1.0}
Word element => {'length': 1.0, '5t': 1.0, 'wears': 1.0, 'fine': 1.0, 'but': 1.0, 'just': 1.0, 'large': 1.0, 'far': 1.0, 'working': 1.0, 'order': 1.0, 'mediums': 1.0, 'ordered': 1.0, 'and': 2.0, 'so': 3.0, '3t': 1.0, 'wear': 1.0, 'only': 1.0, 'she': 5.0, 'easy': 1.0, 'course': 1.0, 'really': 1.0, 'panties': 1.0, 'haven': 1.0, 'these': 1.0, 'the': 4.0, 'accidentally': 1.0, 'they': 5.0, 'has': 1.0, 'accidents': 1.0, 'of': 1.0, 'her': 3.0, 'both': 1.0, 'cute': 1.0, 'bottom': 2.0, 'lb': 1.0, 'are': 5.0, 'been': 1.0, 'loves': 1.0, 'larges': 1.0, 'occasionally': 1.0, 'them': 1.0, 'my': 1.0, 'fits': 1.0, 'meant': 1.0, 'for': 4.0, 'medium': 1.0, 'yet': 1.0, 'daughter': 1.0, 'put': 1.0, 'waist': 1.0, 'to': 4.0, 'test': 1.0, 'comfortable': 1.0, 'big': 1.0, 'thinks': 1.0, 'old': 1.0, '4t': 1.0, 'year': 1.0, 'girl': 1.0, 'pretty': 1.0, 'is': 1.0, 'convince': 1.0, 's': 1.0, 't': 1.0, 'a': 3.0, '30': 1.0, '43': 1.0, 'inch': 1.0, 'i': 1.0, '4': 1.0}
Word element => {'wardrobe': 1.0, 'time': 1.0, 'full': 1.0, 'making': 1.0, 'before': 1.0, 'months': 1.0, 'few': 1.0, 'wait': 1.0, 'damp': 1.0, 'messy': 1.0, 'well': 1.0, 'feels': 1.0, 'accidents': 2.0, 'didn': 1.0, 'even': 1.0, 'more': 1.0, 'is': 1.0, 'holds': 2.0, 'loves': 1.0, 'yes': 1.0, 'are': 1.0, 'fit': 1.0, 'actually': 1.0, 'these': 2.0, 'great': 1.0, 'the': 2.0, 'only': 1.0, 'my': 1.0, 'and': 2.0, 'in': 2.0, 'daughter': 1.0, 'design': 1.0, 'a': 4.0, 't': 1.0, 'we': 1.0, 'if': 1.0, 'it': 3.0, 'she': 1.0, 'really': 1.0, 'peed': 1.0, 'option': 1.0, 'lot': 1.0, '2': 1.0, 'but': 1.0, 'will': 1.0, 'little': 1.0, 'very': 1.0, 'to': 2.0, 'clean': 1.0, 'up': 1.0, 'they': 1.0, 'number': 1.0, 'stain': 1.0, 'either': 1.0, 'i': 1.0, 'suppose': 1.0, 'have': 1.0}
Word element => {'on': 1.0, 'cute': 1.0, 'dry': 1.0, 'well': 2.0, 'hold': 1.0, 'however': 1.0, 'weeks': 1.0, 'but': 1.0, 'potty': 1.0, 'were': 1.0, 'a': 1.0, 'we': 2.0, 'they': 3.0, 'warm': 2.0, 'makes': 1.0, 'these': 2.0, 'the': 4.0, 'great': 1.0, 'interior': 1.0, 'training': 1.0, 'outings': 1.0, 'in': 3.0, 'for': 2.0, 'first': 1.0, 'summer': 2.0, 'longer': 1.0, 'very': 2.0, 'our': 1.0, 'outside': 1.0, 'do': 1.0, 'primarily': 1.0, 'sooo': 1.0, 'used': 1.0, 'overnight': 1.0, 'everything': 1.0, 'layer': 1.0, 'are': 2.0, 'thick': 1.0, 'almost': 1.0, 'and': 4.0, 'too': 1.0, 'daughter': 1.0, 'cooler': 1.0, 'super': 1.0, 'would': 1.0, 'weather': 1.0, 'be': 1.0, 'wash': 1.0, 'fleecy': 1.0, 'months': 1.0, 'uncomfortably': 1.0}
Word element => {'that': 1.0, 'for': 1.0, 'after': 1.0, 'just': 1.0, 'or': 1.0, 'to': 1.0, 'worked': 1.0, 'as': 1.0, 'tell': 1.0, '29lb': 1.0, 'is': 1.0, 'fit': 2.0, 'have': 1.0, 'trained': 1.0, 'slim': 1.0, 'are': 1.0, 'my': 1.0, 'pants': 2.0, 'will': 1.0, 'training': 1.0, '100': 1.0, 'starts': 1.0, 'nice': 1.0, 'they': 1.0, 'pee': 1.0, 'these': 2.0, '35': 1.0, 'me': 1.0, 'and': 1.0, 'comfy': 1.0, '1': 1.0, '2in': 1.0, 'tall': 1.0, '3': 1.0, 'bm': 1.0, 'old': 1.0, 'well': 2.0, 'yr': 1.0, 'she': 2.0}
Word element => {'better': 1.0, 'enjoys': 1.0, 'in': 1.0, 'elephants': 1.0, 'other': 1.0, 'rating': 1.0, 'and': 1.0, 'issue': 1.0, 'wanted': 2.0, 'collect': 1.0, 'had': 1.0, 'teethers': 2.0, 'besides': 1.0, 'that': 1.0, 'four': 1.0, 'have': 3.0, 'of': 1.0, 'i': 6.0, 'has': 2.0, 'given': 1.0, 'for': 1.0, 'one': 2.0, 'the': 4.0, 'chosen': 1.0, 'interest': 1.0, 'boy': 1.0, 'so': 1.0, 'pig': 1.0, 'a': 2.0, 'we': 2.0, 'might': 1.0, 't': 1.0, 'could': 1.0, 'which': 1.0, 'him': 1.0, 'really': 2.0, 'if': 1.0, 'want': 1.0, 'is': 1.0, 'he': 2.0, 'received': 1.0, 'pink': 2.0, 'possible': 1.0, 'son': 1.0, 'much': 2.0, 'only': 1.0, 'higher': 1.0, 'elephant': 1.0, 'it': 2.0, 'didn': 1.0, 'because': 1.0, 'not': 1.0, 'my': 1.0}
Word element => {'crib': 1.0, 'her': 1.0, 'and': 1.0, 'so': 1.0, 'teddy': 1.0, 'can': 1.0, 'wait': 1.0, 'in': 1.0, 'perfect': 1.0, 'snuggle': 1.0, 'my': 1.0, 'is': 3.0, 'quite': 1.0, 'until': 1.0, 'daughter': 1.0, 'bear': 2.0, 'with': 1.0, 'it': 2.0, 'this': 1.0, 'the': 1.0, 't': 1.0, 'have': 1.0, 'soft': 1.0, 'large': 1.0, 'i': 1.0, 'old': 1.0, 'to': 2.0, 'enough': 1.0}
Word element => {'was': 1.0, 'overall': 1.0, 'pretty': 1.0, 'project': 1.0, 'in': 1.0, 'me': 1.0, 'all': 1.0, 'sizes': 1.0, 'for': 1.0, 'logos': 1.0, 'with': 1.0, 'this': 2.0, 'them': 2.0, 'prints': 1.0, 'you': 1.0, 't': 1.0, 'a': 4.0, 'buy': 1.0, 'looking': 1.0, 'which': 1.0, 'listing': 1.0, 'corks': 1.0, 'affect': 1.0, 'cork': 2.0, 'board': 1.0, 'few': 1.0, 'if': 1.0, 'win': 1.0, 'same': 1.0, 'of': 5.0, 'some': 1.0, 'these': 1.0, 'great': 1.0, 'the': 2.0, 'colors': 1.0, 'lots': 1.0, 'and': 2.0, 'out': 1.0, 'couple': 1.0, 'good': 1.0, 'different': 1.0, 'll': 1.0, 'be': 1.0, 'bought': 1.0, 'made': 1.0, 'disappointed': 1.0, 'also': 1.0, 'however': 1.0, '4': 1.0, 'i': 1.0, 'your': 1.0, 'on': 1.0, 'batches': 1.0, 'didn': 1.0, 'got': 1.0, 'quite': 1.0, 'brand': 1.0, 'came': 1.0, 'broken': 1.0}
Word element => {'purchase': 1.0, 'with': 1.0, 'happy': 1.0, 'that': 1.0, 'were': 1.0, 'great': 2.0, 'very': 2.0, 'plain': 1.0, 'few': 1.0, 'doubles': 1.0, 'all': 1.0, 'variety': 1.0, 'in': 1.0, 'shape': 1.0, 'this': 1.0, 'maybe': 1.0, 'corks': 2.0, 'three': 1.0}
Word element => {'option': 1.0, 'loop': 1.0, 'hook': 1.0, 'if': 1.0, 'is': 3.0, 'extra': 1.0, 'be': 1.0, 'had': 1.0, 'padding': 1.0, 'camo': 1.0, 'enough': 1.0, 'fan': 1.0, 'i': 4.0, 'love': 1.0, 'softness': 1.0, 'however': 1.0, 'my': 1.0, 'the': 8.0, 'diaper': 2.0, 'snaps': 1.0, 'heavy': 1.0, 'absorbant': 1.0, 'are': 1.0, 'minky': 1.0, 'add': 1.0, 'recommend': 1.0, 'inserts': 1.0, 'room': 1.0, 'need': 1.0, 'getting': 1.0, 'son': 1.0, 'problems': 1.0, 't': 1.0, 'a': 2.0, 'of': 3.0, 'wetter': 1.0, 'haven': 1.0, 'to': 1.0, 'any': 1.0, 'with': 1.0, 'velcro': 1.0, 'cute': 1.0, 'and': 2.0, 'pattern': 1.0, 'too': 1.0, 'm': 1.0, 'super': 1.0, 'would': 1.0, 'there': 1.0, 'instead': 1.0, 'not': 1.0}
Word element => {'of': 1.0, 'bag': 1.0, 'corks': 1.0, 'nice': 1.0}
Word element => {'she': 1.0, 'second': 1.0, 'one': 2.0, 'and': 1.0, 'similar': 1.0, 'owned': 1.0, 'loves': 1.0, 'this': 1.0, 'arrived': 1.0, 'promptly': 1.0, 'asked': 1.0, 'it': 2.0, 'was': 1.0, 'another': 1.0, 'a': 2.0, 'gift': 1.0, 'daughter': 1.0, 'for': 2.0, 'my': 1.0, 'who': 1.0}
Word element => {'my': 1.0, 'are': 1.0, 'products': 1.0, 'blueberry': 1.0, 'need': 1.0, 'already': 1.0, 'we': 1.0, 'a': 1.0, 'and': 2.0, 'perfectly': 1.0, 'about': 1.0, 'bajillion': 1.0, 'it': 1.0, 'this': 1.0, 'have': 1.0, 'favorite': 1.0, 'times': 1.0, 'up': 1.0, 'washed': 1.0, 'holding': 1.0, 'cute': 1.0, 'works': 1.0, 'what': 1.0, 's': 1.0, 'you': 1.0, 'great': 1.0, 'more': 1.0, 'could': 1.0}
Word element => {'moment': 1.0, 'for': 1.0, 'floor': 1.0, 'on': 1.0, 'bag': 1.0, 'if': 1.0, 'so': 1.0, 'top': 1.0, 'i': 1.0, 'of': 1.0, 'lots': 1.0, 'and': 1.0, 's': 2.0, 'it': 3.0, 'works': 1.0, 'to': 1.0, 'much': 1.0, 'holds': 1.0, 'out': 1.0, 'fits': 1.0, 'elastic': 1.0, 'diapers': 1.0, 'but': 1.0, 'than': 1.0, 'say': 1.0, 'not': 1.0, 'a': 2.0, 'falls': 1.0, 'waterproof': 1.0, 'little': 1.0, 'bigger': 1.0, 'my': 1.0, 'the': 3.0, 'diaper': 1.0, 'nothing': 1.0, 'like': 1.0, 'pail': 1.0, 'left': 1.0, 'is': 1.0, 'fine': 1.0}
Word element => {'using': 1.0, 'start': 1.0, 'cycle': 1.0, 'spin': 1.0, 'pretty': 1.0, 'many': 1.0, 'far': 1.0, 'hang': 1.0, 'months': 1.0, 'signs': 1.0, 'it': 5.0, 'and': 3.0, 'of': 1.0, 'there': 1.0, 'only': 1.0, 'do': 1.0, 'works': 1.0, 'dryer': 1.0, 'great': 1.0, 'the': 4.0, 'is': 3.0, 'more': 1.0, 'several': 1.0, 'no': 1.0, 'has': 1.0, 'dry': 2.0, 'shows': 1.0, 'held': 1.0, 'product': 1.0, 'for': 2.0, 'in': 3.0, 'up': 2.0, 'wash': 2.0, 'wear': 1.0, 'so': 1.0, 'just': 1.0, 'large': 1.0, 'enough': 1.0, 'complaint': 1.0, 'diapers': 1.0, 'but': 1.0, 'i': 3.0, 'were': 1.0, 'usually': 2.0, 'choose': 1.0, 'that': 1.0, 'colors': 1.0, 'to': 1.0, 'designs': 1.0, 'from': 2.0, 'my': 1.0, 'this': 2.0, 'wish': 1.0, 'dont': 1.0}
Word element => {'close': 1.0, 'opening': 1.0, 'without': 1.0, 'would': 1.0, 'them': 1.0, 'rotate': 1.0, 'two': 1.0, 'have': 1.0, 'use': 1.0, 'the': 2.0, 't': 1.0, 'these': 1.0, 'heavy': 1.0, 'as': 1.0, 'year': 1.0, 'after': 1.0, 'new': 1.0, 'and': 3.0, 'washes': 1.0, 'don': 1.0, 'any': 1.0, 'work': 1.0, 'diapers': 1.0, 'completely': 1.0, 'of': 3.0, 'bag': 1.0, 'lot': 1.0, 'love': 1.0, 'this': 1.0, 'it': 3.0, 'i': 3.0, 'does': 2.0, 'think': 1.0, 'holds': 1.0, 'or': 1.0, 'pail': 1.0, 'easily': 1.0, 'not': 2.0, 'hold': 1.0, 'smell': 1.0, 'drawstring': 1.0, 'well': 1.0, 'a': 3.0, 'stains': 1.0, 'still': 1.0, 'looks': 1.0, 'brand': 1.0}
Word element => {'pack': 1.0, 'buy': 1.0, 'incentive': 1.0, 'an': 1.0, 'free': 1.0, 'consider': 1.0, 't': 1.0, 'don': 1.0, 'away': 1.0, 'threw': 1.0, 'this': 2.0, 'with': 1.0, 'came': 1.0, 'bag': 1.0, 'have': 2.0, 'anti': 1.0, 'we': 3.0, 'a': 4.0, 'that': 1.0, 'problems': 1.0, 'old': 2.0, 'totally': 1.0, 'month': 1.0, 'it': 3.0, 'or': 1.0, 'staining': 1.0, 'cycle': 1.0, 'will': 2.0, 'also': 1.0, 'our': 4.0, 'to': 8.0, 'as': 1.0, 'no': 2.0, 'some': 1.0, 'these': 1.0, 'buildup': 1.0, 'nice': 2.0, 'leaking': 1.0, 'really': 2.0, 'in': 4.0, 'nearly': 1.0, 'washing': 1.0, 'yet': 1.0, 'he': 1.0, 'adjust': 1.0, 'sons': 1.0, 'only': 1.0, 'lot': 1.0, 'try': 1.0, 'and': 4.0, 'sure': 1.0, 'get': 1.0, 'do': 1.0, 'put': 2.0, 'useless': 1.0, '3': 1.0, 'liners': 1.0, 'on': 1.0, 'just': 1.0, 'stuff': 2.0, 'but': 2.0, 'capable': 1.0, 'has': 1.0, 'half': 1.0, 'not': 1.0, 'dry': 2.0, 'they': 3.0, 'pocket': 1.0, 'of': 4.0, 'the': 11.0, 'stain': 1.0, 'after': 1.0, 'fast': 1.0, 'detergent': 1.0, '2': 1.0, 'machine': 1.0, 'spin': 1.0, 'soft': 1.0, 'colors': 1.0, 'for': 2.0, 'year': 1.0, 'nasty': 1.0, 'his': 1.0, 'coating': 1.0, 'easy': 1.0, 'soak': 1.0, 'through': 1.0, 'clothes': 1.0, 'be': 2.0, 'liner': 2.0, 'double': 1.0, 'follow': 1.0, 'cleaning': 1.0, 'instructions': 1.0, 'wash': 1.0, 'use': 2.0, 'stay': 1.0, 'if': 1.0, 'you': 3.0, 'poo': 1.0, 'diapers': 2.0, 'are': 4.0, 'boys': 1.0, 'more': 1.0, 'is': 3.0, 'elastic': 1.0, 'can': 1.0, 'so': 2.0, 'pain': 1.0, 'real': 1.0, 'set': 1.0, 'each': 1.0, 'difficult': 1.0, 'leak': 1.0, 'catches': 1.0}
Word element => {'pleased': 1.0, 'very': 1.0, 'am': 1.0, 'pain': 1.0, 'did': 1.0, 'better': 2.0, 'old': 1.0, 'the': 7.0, 'diaper': 1.0, 'my': 1.0, 'weeks': 1.0, 'week': 2.0, 'four': 1.0, 'but': 1.0, 'at': 1.0, 'three': 1.0, 'i': 6.0, 'disposables': 1.0, 'new': 1.0, 'about': 1.0, 'we': 1.0, 'going': 1.0, 'a': 3.0, 'for': 1.0, 'love': 1.0, 'use': 1.0, 'bumgenius': 1.0, 'bulkier': 1.0, 'with': 2.0, 'first': 2.0, 'on': 1.0, 'or': 1.0, 'm': 2.0, 'both': 1.0, 'fuzzibunz': 3.0, 'absorption': 1.0, 'must': 1.0, 'and': 1.0, 'is': 1.0, 'say': 1.0, 'they': 1.0, 'adjust': 1.0, 'fairly': 1.0, 'are': 1.0, 'so': 1.0, 'bit': 1.0, 'though': 1.0, 'seems': 1.0, 'to': 2.0, 'be': 1.0, 'cloth': 1.0, 'user': 1.0, 'ability': 1.0}
Word element => {'brands': 1.0, 'over': 1.0, 'quality': 1.0, 'a': 1.0, 'definitely': 1.0, 'superior': 1.0, 'pricey': 1.0, 'have': 2.0, 'tried': 1.0, 'are': 2.0, 'the': 2.0, 'some': 1.0, 'of': 3.0, 'they': 2.0, 'these': 1.0, 'brand': 1.0, 'pocket': 1.0, 'best': 1.0, 'but': 1.0, 'diapers': 1.0, 'cheaper': 1.0, 'one': 1.0, 'i': 1.0}
Word element => {'house': 1.0, 'out': 1.0, 'buy': 1.0, 'now': 1.0, 'cheated': 1.0, 'useful': 1.0, 'impression': 1.0, 'purchased': 1.0, 'should': 1.0, 'useless': 1.0, 'knew': 1.0, 'receiving': 1.0, 'had': 1.0, 'match': 1.0, 'by': 2.0, 'trashable': 1.0, 'wet': 3.0, 'advertising': 1.0, '14': 1.0, 'on': 1.0, 'us': 1.0, 'received': 3.0, 'bit': 1.0, 'included': 1.0, 'so': 1.0, 'time': 1.0, 'll': 1.0, 'due': 1.0, 'bag': 5.0, 'color': 1.0, 'one': 1.0, 'focus': 1.0, 'my': 2.0, 'small': 1.0, 'pictured': 3.0, 'a': 8.0, 's': 1.0, 'i': 15.0, 'amazon': 2.0, 'use': 1.0, 'is': 3.0, 'didn': 1.0, 'themselves': 1.0, 'days': 1.0, 'gotten': 1.0, 'them': 2.0, 'baby': 1.0, 'review': 2.0, 'thought': 1.0, 'it': 1.0, 'diapers': 6.0, 'first': 2.0, 'this': 4.0, 'come': 2.0, 'but': 2.0, 'will': 1.0, 'back': 2.0, 'once': 1.0, 'photograph': 1.0, 'the': 17.0, 'of': 3.0, 'and': 4.0, 'selection': 1.0, 'was': 6.0, 'as': 3.0, 'item': 1.0, 'disappointed': 1.0, 'to': 5.0, 'hoping': 1.0, 've': 1.0, 'because': 1.0, 'that': 4.0, 'accompany': 1.0, 'product': 2.0, '10': 1.0, 'for': 2.0, 'showed': 1.0, 'reported': 1.0, 'under': 1.0, 'totally': 1.0, 'discrepancy': 1.0, 'agreed': 1.0, 'between': 1.0, 'they': 1.0, 'image': 2.0, 'changed': 1.0, 'assortment': 2.0, 'little': 1.0, 'nice': 1.0, 'colors': 1.0, 'call': 1.0, 'not': 2.0, 'used': 2.0, 'nearly': 1.0, 't': 1.0, 'assorted': 1.0, 'need': 1.0, 'or': 1.0, 'be': 1.0, 'enchanted': 1.0, 'what': 2.0, 'when': 1.0, 'opened': 1.0, 'in': 1.0, 'm': 1.0, 'feel': 1.0, 'mom': 1.0, 'issue': 1.0, 'instead': 2.0, 'there': 1.0, 'yes': 1.0, 'reaction': 1.0, 'an': 1.0, 'take': 1.0, 'then': 1.0, 'with': 2.0, 'like': 1.0}
Word element => {'open': 1.0, 'had': 1.0, 'apart': 1.0, 'impossible': 1.0, 'near': 1.0, 'connections': 1.0, 'cable': 1.0, 'and': 1.0, 'was': 1.0, 'upgraded': 1.0, 'pulling': 1.0, 'my': 1.0, 'screw': 2.0, 'old': 1.0, 'but': 1.0, 'work': 1.0, 'pry': 1.0, 'cover': 1.0, 'get': 1.0, 'sure': 1.0, 'face': 1.0, 'month': 1.0, 'it': 7.0, 'with': 2.0, 'on': 3.0, 'feels': 1.0, 'top': 1.0, 'outlets': 1.0, 'up': 1.0, '8': 1.0, 'bottom': 1.0, 'hold': 1.0, 'like': 1.0, 'decent': 1.0, 'built': 1.0, 'trying': 1.0, 'won': 1.0, 'well': 1.0, 'm': 1.0, 'when': 1.0, 'me': 1.0, 'not': 1.0, 'will': 1.0, 'also': 2.0, 'only': 1.0, 'continue': 1.0, 'works': 1.0, 'for': 2.0, 'one': 1.0, 'to': 5.0, 'center': 1.0, 'plate': 1.0, 'a': 2.0, 't': 1.0, 'the': 1.0, 'i': 2.0, 'two': 1.0, 'quality': 1.0, 'screws': 1.0, 'real': 1.0, 'driver': 1.0, 'shame': 1.0}
Word element => {'last': 1.0, 'really': 1.0, 'is': 1.0, 'unplug': 1.0, 'the': 2.0, 'figured': 1.0, 'my': 5.0, 'one': 2.0, 'easy': 1.0, 'freezer': 2.0, 'for': 2.0, 'old': 1.0, 'it': 4.0, 'this': 1.0, 'he': 2.0, 'and': 3.0, 'outlets': 1.0, 'computer': 1.0, 'using': 1.0, 'like': 1.0, 't': 1.0, 'go': 1.0, 'other': 1.0, 'goes': 1.0, 'off': 1.0, 'house': 1.0, 'cover': 1.0, 'take': 1.0, 'in': 1.0, 'on': 3.0, 'i': 2.0, 'two': 1.0, 'thing': 1.0, 'cord': 1.0, 'bad': 1.0, 'need': 1.0, 'kid': 1.0, 'all': 1.0, 'to': 1.0, 'that': 1.0, 'can': 1.0, 'food': 1.0, 'after': 1.0, 'year': 1.0, 'leaves': 1.0, 'deep': 1.0, 'alone': 1.0, 'out': 1.0}
Word element => {'use': 1.0, 'floor': 1.0, 'for': 1.0, 'where': 2.0, 'product': 2.0, 'defeat': 1.0, 'close': 1.0, 'are': 2.0, 'managed': 1.0, 'play': 1.0, 'plugged': 1.0, 'too': 1.0, 'taught': 1.0, 'by': 1.0, 'hopefully': 1.0, 'them': 2.0, 'baby': 1.0, 'out': 1.0, 'not': 3.0, 'figures': 1.0, 'while': 2.0, 'from': 1.0, 's': 1.0, 'then': 1.0, 'we': 1.0, 'how': 1.0, 'our': 1.0, 'to': 5.0, 'all': 1.0, 'as': 1.0, 'have': 2.0, 'easy': 1.0, 'very': 2.0, 'old': 1.0, 'removing': 1.0, 'was': 1.0, 'installed': 1.0, 'installation': 1.0, 'that': 1.0, 'some': 2.0, 'on': 1.0, 'definitely': 1.0, 'think': 1.0, 'these': 2.0, 'room': 2.0, 'before': 1.0, 'both': 1.0, 'onto': 1.0, 'will': 4.0, 'outlets': 4.0, 'up': 1.0, 'in': 3.0, 'be': 4.0, 'slides': 1.0, 'only': 2.0, 'with': 2.0, 'quick': 1.0, 'it': 2.0, 'devices': 1.0, 'a': 2.0, 'slight': 1.0, 'remain': 1.0, 'time': 1.0, 'plate': 1.0, 'impossible': 1.0, 'chair': 1.0, 'is': 3.0, 'difficult': 2.0, 'and': 3.0, 'hiccup': 1.0, 'rail': 1.0, 'this': 2.0, 'he': 2.0, 'bottom': 2.0, 'the': 15.0, 'of': 1.0, 'were': 1.0, 'using': 2.0, 'made': 1.0, 'which': 1.0, 'right': 2.0, 'enough': 1.0, 'above': 1.0, 'molding': 2.0, 'sliding': 1.0, 'muscle': 1.0, 'willpower': 1.0, 'but': 1.0, 'if': 2.0, 'i': 3.0, 'outlet': 2.0, 'able': 1.0, 'you': 2.0, 'part': 1.0, 'thick': 1.0, 'or': 3.0, 'something': 1.0, 'appropriate': 1.0, 'cover': 2.0, 'below': 1.0}
Word element => {'you': 1.0, 'use': 1.0, 'plugged': 1.0, 'so': 1.0, 'intent': 1.0, 'which': 1.0, 'removable': 1.0, 'easily': 1.0, 'mind': 1.0, 'keep': 1.0, 'outlets': 1.0, 'issue': 1.0, 'an': 1.0, 'but': 1.0, 'work': 1.0, 'will': 1.0, 'plan': 1.0, 'since': 1.0, 'that': 4.0, 'installed': 1.0, 'cover': 2.0, 'power': 2.0, 'the': 5.0, 'be': 1.0, 'to': 3.0, 'in': 3.0, 'seems': 1.0, 'it': 1.0, 'only': 1.0, 'this': 2.0, 'just': 1.0, 'not': 2.0, 'plugs': 1.0, 'strips': 1.0, 'i': 1.0, 'for': 2.0, 'mine': 1.0, 'outlet': 1.0, 'upside': 1.0, 'leave': 1.0, 'is': 4.0, 'down': 1.0, 'how': 1.0, 'strip': 1.0}
Word element => {'thing': 1.0, 'holes': 1.0, 'couple': 1.0, 'drill': 1.0, 'in': 1.0, 'said': 1.0, 'ask': 1.0, 'electical': 1.0, 'with': 1.0, 'much': 1.0, 'works': 1.0, 'fits': 1.0, 'be': 1.0, 'things': 1.0, 'simple': 1.0, 'has': 1.0, 'it': 2.0, 'older': 1.0, 'monitor': 2.0, 'too': 1.0, 'and': 1.0, 'baby': 2.0, 'work': 4.0, 'will': 2.0, 'finally': 1.0, 'top': 1.0, 'i': 3.0, 'this': 1.0, 'found': 1.0, 'plan': 1.0, 'is': 2.0, 'we': 1.0, 't': 1.0, 'a': 7.0, 'hole': 2.0, 'doesn': 1.0, 'unfortunately': 1.0, 'yet': 2.0, 'plug': 3.0, 'enough': 1.0, 'cover': 3.0, 'make': 1.0, 'on': 1.0, 'produced': 1.0, 'bottom': 1.0, 'always': 1.0, 'of': 2.0, 'rather': 1.0, 'find': 1.0, 'than': 1.0, 'our': 1.0, 'to': 6.0, 'center': 1.0, 'if': 2.0, 'have': 3.0, 'babies': 1.0, 'that': 7.0, 'plugs': 1.0, 'modern': 1.0, 'not': 1.0, 'for': 3.0, 'product': 1.0, 'you': 2.0, 'am': 1.0, 'the': 3.0, 'astounded': 1.0, 'just': 1.0, 'large': 1.0, 'by': 1.0, 'number': 1.0}
Word element => {'months': 1.0, 'about': 1.0, 've': 1.0, 'we': 1.0, 'clock': 1.0, 'unplug': 1.0, 'can': 1.0, 'time': 3.0, 'amount': 1.0, 'every': 1.0, 'decent': 1.0, 'a': 1.0, 'our': 1.0, 'that': 1.0, 'my': 1.0, 'll': 1.0, 'of': 2.0, 'good': 1.0, 'where': 1.0, 'us': 1.0, 's': 1.0, 'he': 1.0, 'it': 2.0, 'reset': 1.0, 'few': 1.0, 'far': 2.0, 'so': 3.0, 'had': 1.0, 'hoping': 1.0, 'yr': 1.0, 'i': 1.0, 'buy': 1.0, 'products': 1.0, 'old': 1.0, 'alarm': 1.0, 'hasn': 1.0, 'for': 1.0, 'one': 1.0, 'hacked': 1.0, 'these': 1.0, 'the': 2.0, '2': 2.0, 't': 2.0, 'phew': 1.0}
Word element => {'them': 1.0, 'you': 1.0, 'are': 1.0, 'will': 1.0, 'stay': 1.0, 'cords': 1.0, 'position': 1.0, 'would': 1.0, 'point': 1.0, 'hassle': 1.0, 'need': 1.0, 'much': 1.0, 'at': 1.0, 'get': 1.0, 'in': 3.0, 'whatever': 1.0, 'continuously': 1.0, 'furniture': 1.0, 'put': 1.0, 'somewhat': 1.0, 'way': 2.0, 'reasons': 1.0, 'no': 1.0, 'supports': 1.0, 'that': 4.0, 'power': 1.0, 'without': 1.0, 'the': 6.0, 'my': 2.0, 'toddler': 1.0, 'can': 2.0, 'but': 2.0, 'it': 1.0, 'solved': 1.0, 'took': 1.0, 'strongly': 1.0, 'this': 2.0, 'minute': 1.0, 'i': 4.0, 't': 1.0, 's': 1.0, 'a': 3.0, 'just': 1.0, 'of': 2.0, 'there': 2.0, 'strip': 1.0, 'so': 1.0, 'trouble': 1.0, 'stopping': 1.0, 'had': 1.0, 'recommend': 1.0, 'was': 2.0, 'install': 1.0, 'proof': 1.0, 'plugged': 1.0, 'too': 1.0, 'soon': 1.0, 'and': 2.0, 'has': 1.0, 'computer': 1.0, 'completely': 1.0, 'is': 2.0, 'already': 1.0, 'up': 1.0, 'outlets': 1.0, 'child': 1.0, 'cover': 1.0, 'snap': 1.0, 'logistical': 1.0, 'nothing': 1.0, 'if': 1.0, 'shut': 1.0, 'where': 1.0, 'product': 1.0, 'for': 2.0, 'unplugging': 2.0, 'to': 3.0, 'as': 2.0, 'from': 1.0, 'or': 2.0, 'plug': 2.0, 'removed': 1.0, 'him': 1.0, 'problem': 1.0, 'things': 1.0}
Word element => {'1st': 1.0, 'to': 1.0, 'color': 1.0, 'would': 1.0, 'so': 1.0, 'painted': 1.0, 'up': 1.0, 'of': 1.0, 'safety': 1.0, 'us': 1.0, 'match': 1.0, 'son': 1.0, 'harms': 1.0, 'for': 1.0, 'our': 2.0, 'works': 1.0, 'wall': 1.0, 'way': 1.0, 'logo': 1.0, 'cover': 2.0, 'plug': 2.0, 'it': 2.0, 'this': 1.0, 'we': 1.0, 'attractive': 1.0, 'out': 1.0, 'and': 2.0, 'keeps': 1.0, 'actually': 1.0, 'is': 1.0, 'looks': 1.0, 'seeing': 1.0, 'great': 1.0, 'more': 1.0, 'the': 2.0, 'than': 1.0}
Word element => {'down': 1.0, 'hand': 1.0, 'awesome': 1.0, 'an': 1.0, 'infants': 1.0, 'gift': 1.0, 'else': 1.0, 'there': 1.0, 'be': 2.0, 'can': 2.0, 'with': 2.0, 'trace': 1.0, 'done': 1.0, 'eventually': 1.0, 'are': 1.0, '6': 1.0, 'didn': 1.0, 'removed': 1.0, 'why': 1.0, 'them': 1.0, 'kicking': 1.0, 'someone': 1.0, 'am': 1.0, 'now': 1.0, 'so': 1.0, 'since': 1.0, 'touch': 1.0, 'buy': 1.0, 'ever': 2.0, 'budge': 1.0, 'couldn': 1.0, 'realized': 1.0, 'tugged': 1.0, 'of': 6.0, 'island': 1.0, 'end': 1.0, 'vitamix': 1.0, 'have': 1.0, 'that': 1.0, 'into': 1.0, 'babies': 2.0, 'me': 1.0, 'cords': 1.0, 'those': 1.0, 'ago': 1.0, 't': 3.0, 'we': 4.0, 'a': 2.0, 'these': 3.0, 'more': 1.0, 'room': 1.0, 'each': 1.0, 'electric': 1.0, 'were': 2.0, 'heater': 1.0, 'kitchen': 1.0, 'in': 2.0, 'saying': 1.0, 'make': 1.0, 'on': 1.0, 'portable': 1.0, 'constantly': 1.0, 'asking': 1.0, 'plugged': 1.0, 'and': 8.0, 'difference': 1.0, '34': 4.0, 'both': 1.0, 'after': 1.0, 'amount': 1.0, 'given': 1.0, 'things': 1.0, 'no': 3.0, 'haven': 1.0, 'made': 1.0, 'blender': 1.0, 'use': 1.0, 'grabbed': 1.0, 'to': 2.0, 'unplugging': 1.0, 'any': 3.0, 'without': 1.0, 'myself': 1.0, 'the': 5.0, 'whatsoever': 1.0, 'issue': 1.0, 'places': 1.0, 'they': 5.0, 'attempted': 1.0, 'two': 2.0, 'i': 2.0, 'installed': 1.0, 'months': 1.0, 'one': 1.0, 'will': 1.0, 'voila': 1.0, 'it': 3.0}
Word element => {'lazy': 1.0, 'because': 1.0, 'but': 1.0, 'keep': 1.0, 'have': 1.0, 'didn': 1.0, 'wouldn': 1.0, 'front': 1.0, 'little': 1.0, 'lift': 1.0, 'together': 1.0, 'them': 2.0, 'ratchet': 1.0, 'of': 2.0, 'parts': 1.0, 'top': 1.0, 'the': 11.0, 'halves': 1.0, 'appearance': 1.0, 'on': 3.0, 'your': 1.0, 'do': 1.0, 'its': 1.0, 'matches': 1.0, 'onto': 1.0, 'm': 2.0, 'where': 1.0, 'beige': 1.0, 'pleased': 1.0, 'decor': 1.0, 'inherently': 1.0, 'remove': 1.0, 'it': 1.0, 'with': 2.0, 'comes': 1.0, 'is': 1.0, 'prongs': 1.0, 'current': 1.0, 't': 2.0, 'a': 1.0, 'fact': 1.0, 'unobtrusive': 1.0, 'that': 1.0, 'which': 1.0, 'all': 1.0, 'to': 4.0, 'our': 1.0, 'center': 1.0, 'color': 1.0, 'release': 1.0, 'this': 1.0, 'putty': 1.0, 'in': 3.0, 'two': 1.0, 'i': 3.0, 'want': 1.0, 'if': 1.0, 'outlet': 1.0, 'up': 1.0, 'outlets': 1.0, 'time': 1.0, 'simply': 1.0, 'so': 1.0, 'plate': 2.0, 'plugged': 1.0, 'and': 4.0, 'things': 1.0, 'push': 1.0, 'are': 1.0, 'perpetually': 1.0, 'you': 4.0, 'grandkids': 1.0, 'just': 1.0, 'uninstall': 1.0, 'off': 1.0, 'protecting': 1.0, 'cover': 1.0, 'screw': 2.0, 'housing': 3.0, 'while': 1.0, 'from': 1.0, 'slide': 2.0, 'bottom': 1.0}
Word element => {'sound': 1.0, 'nightlight': 1.0, 'her': 1.0, 'brick': 1.0, 'power': 1.0, 'cover': 1.0, 'enough': 1.0, 'covers': 1.0, 'is': 1.0, 'cords': 2.0, 'curious': 1.0, 'about': 1.0, 'baby': 1.0, 'she': 1.0, 'on': 1.0, 'just': 1.0, 'but': 1.0, 'the': 7.0, 'behind': 1.0, 'outlet': 1.0, 'still': 1.0, 'use': 1.0, 'got': 1.0, 'i': 1.0, 'crib': 2.0, 'we': 1.0, 'and': 1.0, 'away': 1.0, 'that': 1.0, 'were': 1.0, 'with': 1.0, 'this': 2.0, 'moving': 1.0, 'big': 1.0, 'from': 1.0, 's': 1.0, 'wall': 1.0, 'machine': 1.0, 'comes': 1.0, 'to': 3.0, 'was': 1.0}
Word element => {'were': 1.0, 'they': 1.0, 'you': 1.0, 'outlet': 1.0, 'the': 2.0, 'figured': 1.0, 'into': 1.0, 'good': 1.0, 'and': 2.0, 'plugged': 1.0, 'so': 1.0, 'mess': 1.0, 'two': 1.0, 'i': 1.0, 'terrible': 1.0, 'things': 1.0, 'tried': 1.0, 'hasn': 1.0, 'which': 1.0, 'far': 1.0, 'couple': 1.0, 'out': 1.0, 'to': 2.0, 'have': 1.0, 'thing': 1.0, 'get': 2.0, 'easy': 1.0, 'open': 2.0, 'how': 1.0, 'she': 2.0, 'it': 5.0, 'with': 1.0, 'hang': 1.0, 'other': 1.0, 'once': 1.0, 'of': 1.0, 'pretty': 2.0, 's': 2.0, 't': 2.0, 'we': 1.0, 'a': 3.0, 'really': 1.0, 'is': 1.0, 'much': 1.0, 'does': 1.0, 'brands': 1.0, 'because': 1.0, 'boring': 1.0, 'close': 1.0, 'looking': 1.0}
Word element => {'open': 1.0, 'to': 1.0, 'difficut': 1.0, 'be': 1.0, 'should': 1.0, 'cover': 1.0, 'locking': 1.0, 'and': 1.0, 'toddlers': 1.0, 'plastic': 1.0, 'of': 1.0, 'other': 1.0, 'duty': 1.0, 'it': 1.0, 'this': 1.0, 'with': 2.0, 'on': 1.0, 'is': 1.0, 'fine': 1.0, 'made': 1.0, 'lamp': 1.0, 'covers': 1.0, 'wires': 2.0, 'work': 2.0, 'but': 1.0, 'will': 1.0, 'cord': 1.0, 'most': 1.0, 'heavy': 1.0, 'the': 2.0, 'larger': 1.0, 'for': 1.0, 'one': 1.0, 'does': 1.0, 'multi': 1.0, 'found': 1.0, 'outlet': 1.0, 'power': 1.0, 'not': 1.0, 'strips': 1.0}
Word element => {'outlet': 1.0, 'coming': 1.0, 'kids': 1.0, 'plugs': 1.0, 'my': 3.0, 'are': 1.0, 'conceal': 1.0, 'this': 1.0, 'wires': 1.0, 'now': 1.0, 'to': 2.0, 'product': 2.0, 'great': 1.0, 'the': 3.0, 'behind': 1.0, 'that': 1.0, 'were': 1.0, 'used': 1.0, 'i': 1.0, 'out': 1.0, 'cant': 1.0, 'of': 2.0, 'wall': 2.0, 'all': 1.0, 'hidden': 1.0, 'get': 1.0, 'and': 1.0}
Word element => {'several': 1.0, 'really': 1.0, 'for': 2.0, 'big': 1.0, 'from': 1.0, 'outlet': 1.0, 'in': 1.0, 'powerstrip': 1.0, 'product': 1.0, 'time': 1.0, 'because': 1.0, 'difficult': 1.0, 'a': 1.0, 'installation': 1.0, 'however': 1.0, 'baby': 1.0, 'work': 2.0, 'an': 1.0, 'will': 1.0, 'bend': 1.0, 'i': 4.0, 'almost': 1.0, 'job': 1.0, 'or': 1.0, 'that': 2.0, 'plug': 2.0, 'say': 1.0, 'my': 2.0, 't': 1.0, 'the': 3.0, 'minutes': 1.0, 'can': 1.0, 'with': 2.0, 'this': 2.0, 'it': 5.0, 'and': 3.0, 'get': 2.0, 'remove': 1.0, 'was': 1.0, 'had': 3.0, 'its': 1.0, 'to': 5.0, 'does': 1.0, 'even': 1.0, 'too': 1.0, 'tough': 1.0, 'thing': 1.0}
Word element => {'remove': 1.0, 'you': 1.0, 'when': 1.0, 'to': 1.0, 'succumbs': 1.0, 'gravity': 1.0, 'they': 1.0, 'the': 2.0, 'bottom': 1.0, 'piece': 2.0, 'top': 1.0, 'basically': 1.0, 'but': 1.0, 'work': 1.0, 'on': 1.0, 'some': 1.0, 'of': 1.0, 'them': 1.0}
Word element => {'knew': 1.0, 'wish': 1.0, 'i': 3.0, 'useable': 1.0, 's': 1.0, 'any': 1.0, 'like': 1.0, 'before': 1.0, 'both': 1.0, 'can': 1.0, 'they': 1.0, 'sure': 1.0, 'not': 2.0, 'our': 1.0, 'kidco': 1.0, 'that': 3.0, 'have': 2.0, 'screw': 1.0, 'case': 1.0, 'product': 1.0, 'to': 1.0, 'one': 1.0, 'for': 3.0, 'in': 2.0, 'middle': 1.0, 'it': 3.0, 'this': 1.0, 'only': 1.0, 'why': 1.0, 'as': 1.0, 'outlets': 2.0, 'and': 1.0, 'but': 1.0, 'work': 1.0, 'will': 1.0, 'bottom': 1.0, 't': 1.0, 'ones': 2.0, 'the': 3.0, 'ordered': 1.0, 'opposed': 1.0, 'screws': 1.0, 'on': 1.0, 'make': 1.0, 'top': 1.0}
Word element => {'full': 1.0, 'than': 1.0, 'better': 1.0, 'no': 1.0, 'bumping': 1.0, 'there': 1.0, 'use': 1.0, 'probably': 1.0, 'getting': 1.0, 'about': 1.0, 'which': 1.0, 'sockets': 1.0, 'out': 1.0, 'of': 2.0, 'the': 9.0, 'myself': 1.0, 'without': 1.0, 'would': 2.0, 'electronics': 1.0, 'trying': 1.0, 'be': 1.0, 'was': 2.0, 'outlets': 1.0, 'doesn': 1.0, 'to': 6.0, 'crazy': 1.0, 'as': 1.0, 'and': 4.0, 'these': 1.0, 'room': 1.0, 'worry': 1.0, 'looks': 1.0, 'my': 4.0, 'plugs': 2.0, 'that': 2.0, 'tv': 1.0, 'three': 1.0, 'into': 1.0, 'started': 1.0, 'pulling': 1.0, 'from': 1.0, 'son': 3.0, 'is': 3.0, 'around': 1.0, 'ten': 1.0, 'bought': 1.0, 'months': 1.0, 'day': 1.0, 'entertainment': 1.0, 'going': 1.0, 'a': 3.0, 'we': 2.0, 't': 2.0, 'discovered': 1.0, 'family': 1.0, 'walking': 1.0, 'when': 2.0, 'tank': 1.0, 'our': 3.0, 'item': 1.0, 'also': 1.0, 'this': 3.0, 'have': 2.0, 'mess': 1.0, 'old': 1.0, 'off': 1.0, 'still': 1.0, 'every': 1.0, 'turn': 1.0, 'said': 1.0, '3': 1.0, 'fish': 2.0, 'pump': 1.0, 'him': 2.0, 'it': 2.0, 'bad': 1.0, 'for': 3.0, 'product': 2.0, 'not': 1.0, 'only': 1.0, 'one': 1.0, 'try': 1.0, 'but': 1.0, 'just': 2.0, 'accidental': 1.0, 'he': 3.0, 'far': 1.0, 'will': 1.0, 'easiest': 1.0, 'safety': 1.0, 'even': 2.0, 'install': 1.0, 'keep': 1.0, 'did': 1.0, 'having': 2.0, 'beg': 1.0, 'husband': 1.0, 'with': 1.0, 'i': 6.0, 'outlet': 3.0, 'almost': 2.0, 'now': 2.0, 'in': 1.0, 'm': 1.0, 'ordering': 1.0, 'second': 1.0, 'surge': 1.0, 'don': 1.0, 'protector': 1.0, 'by': 1.0, 'home': 1.0, 'plug': 1.0, 'honestly': 1.0}
Word element => {'quick': 1.0, 'won': 1.0, 'in': 1.0, 'as': 2.0, 'to': 1.0, 'was': 1.0, 'of': 1.0, '34': 2.0, 'bit': 1.0, 'engineering': 1.0, 'headache': 1.0, 'worth': 1.0, 'plug': 2.0, 'poking': 1.0, 'figure': 1.0, 'inches': 1.0, 'little': 1.0, 'they': 2.0, 'electrical': 1.0, 'not': 1.0, 'and': 4.0, 'outlets': 1.0, 'this': 1.0, 'perfect': 1.0, 't': 1.0, 'a': 3.0, 's': 2.0, 'opinion': 1.0, 'for': 1.0, 'are': 3.0, 'hopefully': 1.0, 'my': 3.0, 'son': 2.0, 'stick': 1.0, 'from': 1.0, 'unplug': 1.0, 'but': 2.0, 'things': 2.0, 'two': 1.0, 'i': 1.0, 'am': 1.0, 'longer': 1.0, 'prying': 1.0, 'worried': 1.0, 'wall': 1.0, 'no': 1.0, 'about': 1.0, 'the': 4.0, 'he': 1.0, 'plastic': 1.0, 'it': 3.0, 'remove': 1.0, 'covers': 2.0, 'out': 2.0, 'off': 1.0, 'into': 1.0, 'good': 1.0, 'pretty': 1.0, 'studies': 1.0, 'cumbersome': 1.0}
Word element => {'are': 1.0, 'success': 1.0, 'chances': 1.0, 'wonderful': 1.0, 'amazon': 1.0, 'shop': 1.0, 'then': 1.0, 'but': 1.0, 'out': 1.0, 'works': 1.0, 'if': 1.0, 'everything': 1.0, 'you': 2.0, 'again': 1.0, 'when': 1.0, 'always': 1.0, 'time': 1.0, 'arrival': 1.0, 'leg': 1.0, 'inventory': 1.0, 'arm': 1.0, 'an': 1.0, 'costing': 1.0, 'bedroom': 1.0, 'my': 1.0, 'love': 1.0, 'for': 2.0, 'bed': 1.0, 'first': 1.0, 'it': 3.0, 'set': 1.0, 'disney': 1.0, 'daughter': 1.0, 'feeling': 1.0, 'toddler': 1.0, 'quality': 2.0, 'without': 1.0, 'the': 2.0, '4': 1.0, 'piece': 1.0, 'peel': 1.0, 'stick': 1.0, 'grand': 1.0, 'great': 3.0, 'big': 1.0, 'room': 1.0, 'wall': 1.0, 'were': 1.0, 'gave': 1.0, 'that': 1.0, 'these': 1.0, 'such': 2.0, 'hit': 1.0, 'giant': 1.0, 'was': 3.0, 'as': 1.0, 'to': 1.0, 'items': 1.0, 'and': 5.0, 'me': 2.0, 'difference': 1.0, 'girl': 1.0, 'makeover': 1.0, 'purchased': 1.0, 'grandma': 1.0, 'her': 1.0, 'decal': 1.0, 'rapunzel': 2.0, 's': 2.0, 'a': 4.0, 'perfect': 2.0, 'in': 2.0, 'make': 1.0, 'little': 1.0}
Word element => {'ecstatic': 1.0, 'to': 1.0, 'was': 1.0, 'live': 1.0, 'is': 1.0, 'we': 1.0, 'time': 1.0, 'places': 1.0, 's': 1.0, 'works': 1.0, 'this': 1.0, 'it': 1.0, 'for': 1.0, 'which': 1.0, 'daughter': 1.0, 'pretty': 1.0, 'thin': 1.0, 'blanket': 1.0, 'the': 3.0, 'my': 1.0, 'will': 1.0, 'be': 1.0, 'living': 1.0, 'see': 1.0, 'since': 1.0, 'hot': 1.0, '90': 1.0, 'of': 1.0}
Word element => {'toddler': 1.0, 'her': 1.0, 'size': 1.0, 'daughter': 1.0, 'year': 1.0, 'my': 1.0, 'great': 1.0, '2': 1.0, 'the': 1.0, 'old': 1.0, 'in': 1.0, 'perfect': 1.0, 'sleep': 1.0, 'set': 1.0, 'bed': 1.0, 'for': 2.0, 'comfortable': 1.0, 'bedding': 1.0, 'it': 1.0, 's': 1.0, 'a': 1.0, 'nice': 1.0, 'soft': 1.0, 'fabric': 1.0, 'so': 1.0, 'to': 1.0, 'was': 1.0, 'its': 1.0}
Word element => {'with': 1.0, 'be': 1.0, 'to': 1.0, 'there': 1.0, 'also': 1.0, 'have': 1.0, 'flat': 1.0, 'just': 1.0, 'ends': 1.0, 'fitted': 1.0, 'has': 1.0, 'sheet': 2.0, 'top': 1.0, 'it': 6.0, 'this': 2.0, 'set': 2.0, 'bought': 1.0, 'quality': 1.0, 'toddler': 1.0, 'but': 2.0, 'manufacturer': 1.0, 'like': 1.0, 'the': 5.0, 'my': 1.0, 'skirt': 1.0, '3': 1.0, 'product': 1.0, 'stars': 1.0, 'her': 2.0, 'what': 1.0, 'is': 2.0, 'bed': 2.0, 'convertible': 1.0, 'old': 1.0, 'still': 1.0, 'recently': 1.0, 'crib': 1.0, 'year': 1.0, 'from': 1.0, 'said': 1.0, 'in': 1.0, 'reason': 1.0, 'about': 1.0, 'you': 1.0, 'a': 2.0, 't': 1.0, 'we': 2.0, 's': 3.0, 'd': 1.0, 'expect': 1.0, 'would': 1.0, 'super': 1.0, 'poorly': 1.0, 'not': 2.0, 'because': 1.0, 'and': 1.0, 'description': 1.0, 'really': 1.0, 'amazing': 1.0, 'loved': 1.0, 'scratchy': 1.0, 'or': 1.0, 'made': 1.0, 'that': 1.0, 'gave': 1.0, 'i': 2.0, '4': 1.0, 'doesn': 1.0, 'was': 1.0}
Word element => {'but': 1.0, 'bed': 2.0, 'made': 1.0, 'has': 1.0, 'delight': 1.0, 'at': 1.0, 'squealed': 1.0, 'and': 2.0, 'sleep': 1.0, 'quite': 1.0, 'rapunzel': 1.0, 'saw': 1.0, 'to': 3.0, 'was': 1.0, 'granddaughter': 1.0, 'would': 1.0, 'going': 1.0, 'when': 1.0, 'by': 1.0, 'least': 1.0, 'easy': 1.0, 'she': 1.0, 'i': 2.0, 'old': 1.0, 'be': 1.0, 'year': 1.0, 'three': 1.0, 'not': 1.0, 'just': 1.0, 'perfect': 1.0, 'knew': 1.0, 'with': 1.0, 'taken': 1.0, 'this': 1.0, 'it': 2.0, 'the': 1.0, 'gift': 1.0}
Word element => {'have': 1.0, 'soft': 1.0, 'brands': 1.0, 'didn': 1.0, 'described': 1.0, 'as': 1.0, 'very': 1.0, 'was': 2.0, 'would': 1.0, 'product': 1.0, 'satisfied': 1.0, 'those': 1.0, 't': 1.0, 'the': 1.0, 'comforter': 1.0, 'that': 1.0, 'you': 1.0, 'paper': 1.0, 'feel': 1.0, 'and': 1.0, 'get': 1.0, 'with': 1.0, 'knock': 1.0, 'off': 1.0}
Word element => {'she': 1.0, 'pleased': 1.0, 'or': 1.0, 'loves': 2.0, 'fit': 1.0, 'little': 1.0, 'promised': 1.0, 'our': 1.0, 'as': 1.0, 'any': 1.0, 'i': 1.0, 'time': 1.0, 'on': 1.0, 'came': 1.0, 'with': 1.0, 'this': 1.0, 'it': 4.0, 'and': 2.0, 'perfectly': 1.0, 'her': 1.0, 'couldnt': 1.0, 'toddler': 1.0, 'happy': 1.0, 'one': 1.0, 'bed': 1.0, 'be': 1.0, 'more': 1.0}
Word element => {'theme': 1.0, 'bedroom': 1.0, 'tangled': 1.0, 'goes': 1.0, 'her': 2.0, 'fine': 1.0, 'just': 1.0, 'items': 1.0, 'other': 1.0, 'toddler': 1.0, 'use': 1.0, 'will': 2.0, 'quality': 1.0, 'work': 2.0, 'but': 2.0, 'old': 1.0, 'great': 3.0, 'my': 2.0, 'she': 1.0, 'it': 4.0, '6': 1.0, 'set': 1.0, 'of': 2.0, 'out': 1.0, 'condition': 1.0, '4': 1.0, 'the': 7.0, 'deal': 1.0, 'loves': 1.0, 'is': 4.0, 'course': 1.0, 'in': 1.0, 'daughter': 2.0, 'year': 1.0, 'price': 1.0, 'best': 2.0, 'very': 1.0, 'for': 3.0, 'arrived': 1.0, 'bed': 1.0, 'not': 1.0, 'overall': 1.0, 'this': 1.0, 'perfect': 1.0, 'full': 1.0, 'with': 1.0, 'fitting': 1.0, 'piece': 1.0, 'pillowcase': 1.0, 'super': 1.0, 'cute': 1.0, 'and': 1.0, 'comforter': 1.0, 'pretty': 1.0, 'well': 1.0, 'won': 1.0, 'has': 1.0, 'size': 1.0, 'sheet': 1.0, 'so': 1.0, 't': 1.0, 'a': 2.0, 'we': 1.0}
Word element => {'8': 1.0, 'in': 1.0, 'follow': 1.0, 'a': 3.0, 'bright': 1.0, 'silky': 1.0, 'seem': 1.0, 'maybe': 1.0, 'because': 1.0, 'stay': 1.0, 'not': 2.0, 'just': 1.0, 'star': 1.0, 'so': 2.0, 'small': 1.0, 'months': 1.0, 'one': 1.0, 'bed': 1.0, 'for': 2.0, 'young': 1.0, 'little': 1.0, 'very': 1.0, 'too': 1.0, 'and': 2.0, 'do': 1.0, 'graphics': 1.0, 'children': 1.0, 'lost': 1.0, 'this': 1.0, 'it': 3.0, 'colorful': 1.0, 'to': 4.0, 'can': 1.0, 'really': 1.0, 'appreciate': 1.0, 'out': 1.0, 'the': 3.0, 'sheets': 1.0, 'toddler': 1.0, 'tuned': 1.0, 'add': 1.0, 'will': 2.0, 'slipping': 1.0, 'of': 2.0, 'up': 2.0, 'factor': 1.0, 'i': 3.0, 'would': 1.0, 'suggest': 1.0, 'purchased': 1.0, '6': 1.0, 'how': 1.0, 'know': 1.0, 'hold': 1.0, 'washings': 1.0}
Word element => {'but': 1.0, 'get': 1.0, 'till': 1.0, 'know': 1.0, 'did': 1.0, 'pretty': 1.0, 'order': 1.0, 'so': 1.0, 'came': 1.0, 'that': 1.0, 'never': 1.0, 'would': 1.0, 'thought': 2.0, 'had': 1.0, 'was': 2.0, 'rough': 1.0, 'it': 4.0, 'wish': 1.0, 'this': 2.0, 'i': 6.0, 'cheap': 1.0, 'the': 2.0, 'a': 1.0, 't': 1.0, 'to': 1.0, 'all': 1.0, 'chance': 1.0, 'other': 1.0, 'granddaughter': 1.0, 'much': 1.0, 'reviews': 1.0, 'and': 3.0, 'worst': 1.0, 'read': 1.0, 'about': 1.0, 'today': 1.0, 'them': 1.0, 'quality': 1.0, 'will': 1.0, 'back': 1.0, 'sheets': 1.0, 'material': 1.0, 'give': 2.0, 'not': 1.0, 'just': 2.0, 'my': 1.0, 'you': 2.0, 'am': 1.0, 'shipping': 1.0, 'tomorrow': 1.0, 'some': 1.0, 'terrible': 1.0, 'things': 1.0, 'don': 1.0}
Word element => {'girl': 1.0, 'birthday': 1.0, 'party': 1.0, 'material': 1.0, 'cosy': 1.0, 'happy': 1.0, 'nice': 1.0, 'warm': 1.0, 'comfortable': 1.0, 'bed': 1.0, 'good': 1.0, 'pinky': 1.0, 'lovely': 1.0, 'quality': 1.0, 'very': 2.0, 'and': 1.0, 'colours': 1.0, 'girly': 1.0, 'purple': 1.0}
Word element => {'one': 1.0, 'use': 1.0, 'lot': 1.0, 'an': 1.0, 'of': 2.0, 'sort': 1.0, 'but': 1.0, 'unsewn': 1.0, 'started': 1.0, 'labels': 1.0, 'also': 1.0, 'sure': 1.0, 'so': 1.0, 'm': 1.0, 'i': 1.0, 'on': 1.0, 'is': 1.0, 'and': 2.0, 'up': 1.0, 'hospital': 2.0, 'after': 1.0, 'cheered': 1.0, 'day': 1.0, 'definitely': 1.0, 'wasn': 1.0, 'out': 2.0, 'her': 5.0, 'having': 1.0, 'she': 1.0, 'it': 4.0, 'with': 1.0, 'want': 1.0, 'zoobie': 1.0, 'only': 1.0, 'pet': 1.0, 'was': 5.0, 'our': 1.0, 'to': 5.0, 'now': 1.0, 'daughter': 1.0, 'fact': 1.0, 'my': 1.0, 'in': 4.0, 'snuggle': 1.0, 'deal': 1.0, 'tonsils': 1.0, 'the': 8.0, 'gift': 1.0, 'product': 1.0, 'expensive': 1.0, 'for': 2.0, 'big': 1.0, 'comfortable': 1.0, 'bed': 3.0, 'come': 1.0, 'however': 1.0, 'blanket': 2.0, 'not': 1.0, 'stay': 1.0, 'see': 1.0, 'zipped': 1.0, 'had': 1.0, 'animal': 2.0, 'look': 1.0, 'right': 1.0, 'like': 1.0, 'which': 2.0, 'perfect': 1.0, 'pain': 2.0, 't': 3.0, 'a': 4.0, 'we': 1.0, 'wouldn': 1.0, 'didn': 1.0, 'accidentally': 1.0, 'folded': 1.0, 'when': 2.0, 'lose': 1.0}
Word element => {'must': 1.0, 'definitely': 1.0, 'is': 1.0, 'to': 2.0, 'family': 1.0, 'addition': 1.0, 'a': 4.0, 'new': 2.0, 'too': 1.0, 'design': 1.0, 'found': 1.0, 'it': 2.0, 'for': 3.0, 'love': 1.0, 'great': 1.0, 'the': 2.0, 'be': 1.0, 'bought': 1.0, 'little': 1.0, 'my': 2.0, 'high': 1.0, 'have': 1.0, 'born': 1.0, 'toddlers': 1.0, 'maybe': 1.0, 'and': 1.0, 'toddler': 1.0, 'but': 1.0, 'quality': 1.0}
Word element => {'homy': 1.0, 'room': 1.0, 'her': 1.0, 'this': 1.0, 'wonderful': 1.0, 'lovers': 1.0, 'a': 1.0, 'more': 1.0, 'the': 1.0, 'my': 1.0, 'make': 1.0, 'is': 1.0, 'winnie': 1.0, 'all': 1.0, 'of': 1.0, 'addition': 1.0, 'pooh': 1.0, 'for': 1.0, 'us': 1.0, 'daughter': 1.0, 'took': 1.0, 'off': 1.0, 'to': 2.0, 'hers': 1.0, 'in': 1.0, 'college': 2.0, 'order': 1.0}
Word element => {'soft': 1.0, 'so': 2.0, 'looks': 1.0, 'rug': 1.0, 'feels': 1.0, 'with': 1.0, 'bought': 1.0, 'are': 1.0, 'the': 3.0, 'not': 1.0, 'whole': 1.0, 'love': 1.0, 'it': 2.0, 'and': 1.0, 'vroom': 1.0, 'collection': 1.0, 'satisfied': 1.0, 'but': 1.0, 'however': 1.0, '100': 1.0}
Word element => {'john': 1.0, 'who': 1.0, 'on': 1.0, 'this': 1.0, 'with': 1.0, 'and': 1.0, 'only': 1.0, 'do': 1.0, 'love': 1.0, 'product': 1.0, 'liked': 1.0, 'using': 1.0, 'bought': 1.0, 'one': 1.0, 'decided': 1.0, 'kind': 1.0, 'i': 3.0, 'right': 1.0, 'pacifier': 1.0, 'never': 1.0, 'really': 1.0, 'is': 1.0, 'after': 1.0, 'cute': 1.0, 'mean': 1.0, 'daughter': 1.0, 'lennon': 1.0, 'set': 1.0, 'of': 2.0, 'my': 1.0, 'it': 2.0, 'stopped': 1.0, 'she': 1.0, 'come': 1.0, 'certainly': 1.0, 'particular': 1.0, 'bottle': 1.0, 'got': 1.0, 'use': 1.0, 'out': 1.0, 'but': 1.0, 'unfortunately': 1.0, 'doesn': 2.0, 'that': 1.0, 'a': 2.0, 't': 2.0, 'the': 1.0, 'have': 1.0, 'itself': 1.0, 'anything': 1.0, 'any': 1.0, 'to': 1.0}
Word element => {'well': 1.0, 'all': 1.0, 'gets': 1.0, 'cars': 1.0, 'really': 2.0, 'morning': 1.0, 'every': 1.0, 'loves': 1.0, 'and': 1.0, 'son': 1.0, 'as': 1.0, 'my': 1.0, 'the': 1.0, 'he': 1.0, 'excited': 1.0, 'cute': 1.0, 'fits': 1.0, 'sheet': 2.0, 'about': 1.0, 'his': 2.0, 'car': 1.0, 'for': 1.0, 'crib': 1.0, 'snug': 1.0}
Word element => {'who': 1.0, 'anyone': 1.0, 'i': 1.0, 'cute': 1.0, 'recommend': 1.0, 'easy': 1.0, 'they': 1.0, 'toddler': 1.0, 'a': 1.0, 'picky': 1.0, 'very': 1.0, 'dividers': 1.0, 'plastic': 2.0, 'concerned': 1.0, 'clean': 1.0, 'them': 1.0, 'and': 3.0, 'is': 1.0, 'containers': 1.0, 'have': 2.0, 'about': 1.0, 'highly': 1.0, 'colors': 1.0, 'storage': 1.0, 'kinderville': 1.0, 'you': 1.0, 's': 1.0, 'it': 1.0, 'these': 1.0, 'great': 1.0, 'the': 4.0, 'dinnerware': 1.0, 'helpful': 1.0, 'are': 4.0, 'so': 1.0, 'we': 1.0, 'use': 1.0, 'purchase': 1.0, 'that': 2.0, 'when': 1.0, 'us': 1.0, 'led': 1.0, 'to': 3.0, 'using': 1.0, 'love': 1.0, 'plates': 1.0, 'not': 2.0}
Word element => {'too': 1.0, 'nice': 1.0, 'colors': 1.0, 'microwave': 1.0, 'dishwasher': 1.0, 'in': 1.0, 'love': 1.0, 'used': 1.0, 'they': 1.0, 'kids': 1.0, 'them': 1.0, 'or': 1.0, 'i': 1.0, 'if': 1.0, 'aren': 1.0, 'and': 1.0, 'know': 1.0, 't': 1.0, 'are': 1.0, 'the': 2.0, 'toxic': 1.0}
Word element => {'time': 1.0, 'few': 1.0, 'tired': 1.0, 'outgrown': 1.0, 'either': 1.0, 've': 2.0, 'items': 2.0, 'related': 1.0, 'my': 1.0, 'purchase': 2.0, 'were': 2.0, 'when': 1.0, 'times': 1.0, 'you': 1.0, 'multiple': 1.0, 'them': 3.0, 'quality': 1.0, 'waste': 1.0, 'set': 1.0, 'we': 7.0, 'a': 1.0, 's': 1.0, 'hold': 1.0, 'good': 1.0, 'son': 1.0, 'very': 2.0, 'gone': 1.0, 'foods': 1.0, 'etc': 1.0, 'day': 3.0, 'blue': 1.0, 'as': 3.0, 'to': 4.0, 'stood': 1.0, 'any': 1.0, 'detergent': 1.0, 'daily': 1.0, 'but': 1.0, 'enjoys': 1.0, 'use': 3.0, 'plates': 8.0, 'look': 1.0, 'product': 2.0, 'for': 3.0, 'these': 6.0, '2': 2.0, 'money': 1.0, 'well': 2.0, 'i': 1.0, 'two': 1.0, 'purple': 1.0, 'used': 3.0, 'nearly': 1.0, 'regular': 1.0, 'that': 1.0, 'because': 1.0, '20': 2.0, 'microwave': 1.0, 'purchased': 2.0, 'including': 1.0, 'far': 1.0, 'he': 2.0, 'our': 1.0, 'how': 1.0, 'with': 2.0, 'they': 2.0, 'pink': 1.0, 'speak': 1.0, 'still': 2.0, 'longevity': 1.0, 'every': 1.0, 'months': 3.0, 'get': 2.0, 'and': 7.0, 'began': 1.0, 'last': 1.0, 'eating': 2.0, 'longer': 1.0, 'the': 13.0, 'of': 7.0, 'finger': 1.0, '1': 1.0, 'after': 1.0, 'excited': 1.0, 'dishwasher': 1.0, 'around': 1.0, 'up': 1.0, '7': 1.0, 'wonderful': 1.0, 'old': 2.0, 'loved': 1.0, 'can': 1.0, 'so': 4.0, 'much': 2.0, 'considering': 1.0, 'some': 1.0, 'never': 1.0, 'need': 2.0, 'additional': 1.0, 'have': 4.0, 'green': 1.0, 'felt': 1.0, 'same': 1.0, 'no': 1.0, 'years': 1.0, 'grown': 1.0, 'from': 1.0, 'girl': 1.0, 'first': 2.0, 'are': 2.0, 'now': 2.0, 'worth': 1.0, 'will': 1.0, 'test': 1.0, 'sadly': 1.0, 'out': 1.0, 'baby': 2.0, 'many': 1.0}
Word element => {}
Word element => {'again': 1.0, 'buy': 1.0, 'not': 1.0, 'it': 1.0, 'though': 1.0, 'lids': 1.0, 'wish': 1.0, 'slide': 1.0, 'don': 1.0, 'they': 2.0, 'i': 2.0, 'texture': 1.0, 'rubbery': 1.0, 'because': 1.0, 'also': 1.0, 'dropped': 1.0, 'if': 1.0, 'safe': 1.0, 'in': 1.0, 'dishwasher': 1.0, 'microwaveable': 1.0, 'free': 1.0, 'hot': 1.0, 'or': 1.0, 'these': 3.0, 'such': 1.0, 'big': 1.0, 'great': 1.0, 'gets': 1.0, 'son': 1.0, 'theyre': 1.0, 'with': 2.0, 'crack': 1.0, 'bigger': 1.0, 'needed': 1.0, 'bunch': 1.0, 'would': 1.0, 'something': 2.0, 'my': 1.0, 'have': 1.0, 'small': 2.0, 'but': 2.0, 'food': 2.0, 'so': 2.0, 'divided': 2.0, 'cups': 1.0, 'to': 1.0, 'like': 1.0, 'too': 1.0, 'and': 4.0, 'bought': 2.0, 'material': 1.0, 'deal': 1.0, 'the': 1.0, 'kinderville': 1.0, 'plates': 3.0, 'for': 1.0, 'bpa': 1.0, 'compartments': 1.0, 'his': 1.0, 'doesnt': 2.0, 'afterbuying': 1.0, 's': 1.0, 't': 1.0, 'we': 3.0, 'a': 3.0, 'of': 2.0, 'bites': 1.0, 'melamine': 1.0, 'around': 1.0, 'is': 1.0, 'rid': 1.0, 'got': 1.0, 'silicone': 1.0, 'them': 1.0, 'baby': 1.0, '100': 1.0, 'prep': 1.0, 'touch': 1.0, 'never': 1.0, 'came': 1.0, 'cold': 1.0}
Word element => {'just': 1.0, 'tell': 1.0, 'surprised': 1.0, 'removed': 1.0, 'don': 1.0, 'can': 1.0, 'right': 1.0, 'happier': 1.0, 'everyone': 1.0, 'be': 2.0, 'bought': 1.0, 'these': 1.0, 'the': 4.0, 'very': 2.0, 'best': 1.0, 'and': 5.0, 'couldn': 1.0, 'reaffixed': 1.0, 'nursery': 1.0, 'who': 2.0, 'attach': 1.0, 'decals': 3.0, 'sun': 1.0, 'wall': 3.0, 't': 2.0, 'we': 2.0, 's': 1.0, 'when': 1.0, 'easily': 2.0, 'asks': 1.0, 'you': 2.0, 'in': 1.0, 'daughter': 1.0, 'them': 4.0, 'if': 1.0, 'want': 1.0, 'of': 1.0, 'always': 1.0, 'to': 1.0, 'our': 2.0, 'all': 1.0, 'sees': 1.0, 'put': 1.0, 'on': 1.0, 'painted': 1.0, 'clouds': 1.0, 'for': 1.0, 'where': 1.0, 'stars': 1.0, 'they': 2.0, 're': 2.0}
Word element => {'square': 1.0, 'rectangular': 1.0, 'that': 1.0, 'shape': 1.0, 'well': 1.0, 'sizes': 1.0, 'different': 1.0, 'containers': 1.0, 'pre': 1.0, 'or': 2.0, 'use': 1.0, 'freeze': 1.0, 'also': 1.0, 'in': 3.0, 'keep': 1.0, 'this': 2.0, 'it': 2.0, 'packing': 1.0, 'more': 1.0, 'is': 2.0, 'we': 1.0, 'a': 2.0, 'expand': 1.0, 'see': 1.0, 'concept': 1.0, 'when': 1.0, 'offer': 1.0, 'uses': 1.0, 'like': 2.0, 'park': 1.0, 'and': 2.0, 'lid': 1.0, 'my': 1.0, 'school': 1.0, 'great': 1.0, 'carrot': 1.0, 'grapes': 1.0, 'of': 1.0, 'sticks': 1.0, 'take': 1.0, 'i': 2.0, 'just': 1.0, 'the': 3.0, 'gel': 1.0, 'as': 2.0, 'to': 4.0, 'our': 1.0, 'not': 1.0, 'needing': 1.0, 'freezer': 1.0, 'snacks': 1.0, 'love': 1.0, 'convenience': 1.0, 'would': 1.0, 'an': 1.0, 'ice': 1.0, 'pack': 1.0, 'daughter': 1.0, 'line': 1.0}
Word element => {'well': 1.0, 'dots': 1.0, 'would': 1.0, 'i': 3.0, 'fun': 1.0, 'soft': 1.0, 'with': 1.0, 'durable': 1.0, 'was': 1.0, 'hoping': 1.0, 'beat': 1.0, 'ball': 1.0, 'and': 2.0, 'colors': 1.0, 'any': 1.0, 'great': 1.0, 'the': 3.0, 'oh': 1.0, 'receive': 1.0, 'odds': 1.0, 'of': 1.0, 'other': 1.0, 'three': 1.0, 'got': 1.0, 'purple': 1.0, 'but': 1.0, 'pink': 1.0}
Word element => {'hard': 1.0, 'is': 2.0, 'and': 1.0, 'not': 1.0, 'hold': 1.0, 'easy': 1.0, '11': 1.0, 'to': 1.0, 'old': 1.0, 'liked': 1.0, 'really': 1.0, 'squishable': 1.0, 'grandson': 1.0, 'this': 1.0, 'it': 2.0, 'month': 1.0, 'bumps': 1.0, 'ball': 1.0, 'make': 1.0, 'my': 1.0, 'the': 1.0}
Word element => {'much': 1.0, 'that': 1.0, 'granddaughters': 1.0, 'my': 1.0, 'just': 1.0, 'making': 1.0, 'for': 1.0, 'you': 1.0, 'thank': 1.0, 'out': 1.0, 'incredible': 1.0, 'beautiful': 1.0, 'i': 2.0, 'future': 1.0, 'picture': 1.0, 'even': 1.0, 'is': 1.0, 'service': 1.0, 'seller': 1.0, 'the': 3.0, 'more': 3.0, 'than': 2.0, 'wow': 1.0, 'pleased': 1.0, 'was': 1.0, 'blanket': 1.0, 'appeared': 1.0, 'will': 1.0, 'in': 2.0, 'and': 1.0, 'definitely': 1.0, 'birth': 1.0, 'be': 1.0, 'checking': 1.0, 'it': 1.0, 'this': 1.0}
Word element => {'nights': 1.0, 'days': 1.0, 'keep': 1.0, 'chilly': 1.0, 'so': 1.0, 'much': 1.0, 'my': 1.0, 'the': 1.0, 'on': 1.0, 'is': 1.0, 'little': 1.0, 'thanks': 1.0, 'baby': 1.0, 'will': 1.0, 'warm': 1.0, 'guy': 1.0, 'blanket': 1.0, 'and': 2.0, 'very': 1.0, 'beautiful': 1.0}
Word element => {'waste': 1.0, 'don': 1.0, 'anyway': 1.0, 'about': 1.0, 'baby': 1.0, 'of': 2.0, '34': 2.0, 'toy': 2.0, 'buddy': 1.0, 'not': 1.0, 'long': 1.0, 'came': 1.0, 'foot': 1.0, 'snap': 1.0, 'i': 1.0, 'thinking': 1.0, 'each': 1.0, 'fabric': 1.0, 'months': 1.0, 'bought': 1.0, 'this': 1.0, 'with': 2.0, 'band': 1.0, 'it': 4.0, 'is': 2.0, 'the': 1.0, '6': 1.0, '99': 1.0, 'did': 1.0, 'cute': 1.0, 'just': 1.0, 'pictured': 1.0, 'pack': 1.0, 'only': 1.0, 'end': 1.0, 'you': 1.0, 'money': 1.0, '2': 1.0, 'can': 1.0, 'kid': 1.0, 'maybe': 1.0, 'get': 1.0, 'for': 2.0, 'secure': 1.0, '3': 1.0, 'on': 2.0, 'your': 2.0, 't': 1.0, 'a': 5.0, 'going': 1.0, 'to': 1.0, 'amazon': 1.0, 'use': 1.0}
Word element => {'little': 1.0, 'use': 1.0, 'but': 1.0, 'a': 2.0, 'don': 1.0, 'them': 1.0, 'you': 1.0, 'on': 1.0, 'opinion': 1.0, 'why': 1.0, 'maybe': 1.0, 'teach': 1.0, 'wouldn': 1.0, 'it': 3.0, 't': 2.0, 'great': 1.0, 'understand': 1.0, 'road': 1.0, 'trip': 1.0, 'i': 1.0, 'works': 1.0, 'does': 1.0, 'in': 1.0, 'my': 1.0}
Word element => {'old': 1.0, 'months': 1.0, '3': 1.0, 'is': 1.0, 'granddaughter': 1.0, 'and': 1.0, 'not': 1.0, 'can': 1.0, 'without': 1.0, 'says': 1.0, 'she': 4.0, 'for': 1.0, 'someone': 1.0, 'it': 1.0, 'this': 1.0, 'anywhere': 1.0, 'my': 2.0, 'bought': 1.0, 'gift': 1.0, 'go': 1.0, 'asking': 1.0, 'best': 1.0, 'daughter': 1.0, 'where': 1.0, 'got': 1.0, 'has': 1.0, 'received': 1.0, 'thus': 1.0, 'far': 1.0}
Word element => {'the': 1.0, '20': 1.0, 'almost': 1.0, 'times': 1.0, 'used': 1.0, 'only': 1.0, 'i': 2.0, 'thought': 1.0, 'this': 1.0, 'not': 1.0, 've': 1.0, 'was': 2.0, 'a': 2.0, 'worth': 1.0, 'few': 1.0, 'little': 1.0, 'money': 1.0, 'it': 2.0, 'gadget': 1.0, 'overpriced': 1.0, 'which': 1.0, 'for': 2.0, 'what': 1.0}
Word element => {'find': 1.0, 's': 1.0, 'baby': 1.0, 'fall': 1.0, 'make': 1.0, 'to': 1.0, 'try': 1.0, 'do': 1.0, 'and': 1.0, 'matter': 1.0, 'in': 3.0, 'disappointed': 1.0, 'how': 1.0, 'am': 1.0, 'can': 2.0, 'i': 4.0, 'tight': 1.0, 'one': 1.0, 'bottle': 1.0, 'does': 1.0, 'say': 1.0, 'out': 1.0, 'is': 1.0, 'really': 1.0, 'face': 1.0, 'stay': 1.0, 'safe': 1.0, 'no': 1.0, 'product': 1.0, 'it': 3.0, 'this': 1.0, 'the': 2.0, 'not': 2.0, 'very': 2.0, 'well': 1.0, 'slides': 1.0}
Word element => {'over': 1.0, 'do': 1.0, 'popper': 1.0, 'corn': 1.0, 'd': 1.0, 'everyone': 1.0, 'again': 2.0, 'happy': 1.0, 'baby': 1.0, 'problem': 1.0, 'no': 1.0, 'so': 1.0, 'through': 1.0, 'screw': 1.0, 'put': 1.0, 'husband': 1.0, 'luckily': 1.0, 'didn': 1.0, 'just': 1.0, 'work': 1.0, 'but': 2.0, 'with': 1.0, 'good': 1.0, 'that': 2.0, 'into': 1.0, 'could': 1.0, 'go': 1.0, 't': 1.0, 'a': 2.0, 'thought': 1.0, 'already': 1.0, 'pretty': 1.0, 'walking': 2.0, 'i': 4.0, 'handy': 1.0, 'old': 1.0, 'has': 1.0, 'well': 2.0, 'toy': 2.0, 'bought': 1.0, 'my': 4.0, 'push': 1.0, 'this': 1.0, 'for': 3.0, 'handle': 2.0, 'if': 1.0, '10': 1.0, 'be': 1.0, 'him': 1.0, 'basic': 1.0, 'would': 4.0, 'solved': 1.0, 'it': 6.0, 'month': 1.0, 'option': 1.0, 'who': 1.0, 'was': 4.0, 'to': 2.0, 'wanted': 1.0, 'is': 1.0, 'around': 1.0, 'however': 1.0, 'cry': 1.0, 'does': 1.0, 'longer': 1.0, 'down': 2.0, 'not': 2.0, 'the': 6.0, 'place': 1.0, 'while': 1.0, 'he': 2.0, 'extremely': 1.0, 'poor': 1.0, 'get': 1.0, 'son': 2.0, 'fold': 2.0, 'frustrated': 1.0, 'and': 4.0, 'play': 1.0, 'throw': 1.0, 'lock': 1.0, 'really': 1.0}
Word element => {'helps': 1.0, 'hope': 1.0, 'product': 1.0, 'recommend': 1.0, 'others': 1.0, 'would': 1.0, 'brand': 1.0, 'needing': 1.0, 'our': 1.0, 'i': 1.0, 'night': 1.0, 'not': 1.0, 'by': 1.0, 'charged': 1.0, 'morning': 1.0, 'in': 2.0, 'defenity': 1.0, 'hours': 1.0, 'this': 3.0, 'from': 1.0, 'every': 1.0, 'use': 1.0, 'we': 1.0, '8': 1.0, 'to': 2.0, 'still': 1.0, '10': 1.0, 'summer': 1.0, 'is': 1.0, 'monitor': 2.0, 'and': 1.0, 'the': 2.0, 'red': 1.0}
Word element => {'the': 1.0, 'shipping': 1.0, 'pay': 1.0, 'to': 1.0, 'for': 1.0, 'had': 1.0, 'sent': 1.0, 'models': 1.0, 'infant': 1.0, 'summer': 1.0, 'this': 2.0, 'does': 2.0, 'back': 1.0, 'junk': 1.0, 'is': 2.0, 'on': 1.0, 'not': 2.0, 'work': 2.0, 'and': 2.0, 'as': 1.0, 'described': 1.0, 'any': 1.0}
Word element => {'compares': 1.0, 'nothing': 1.0, 'so': 1.0, '14': 1.0, 'can': 1.0, 'that': 1.0, 'go': 1.0, 'different': 1.0, 'about': 1.0, 'but': 1.0, 'would': 1.0, 'at': 1.0, 'totally': 1.0, 'allow': 1.0, 'to': 2.0, 'was': 1.0, 'hoping': 1.0, '16': 1.0, 'time': 1.0, 'on': 1.0, 'battery': 1.0, 'i': 2.0, 'least': 1.0, 'a': 1.0, 'hrs': 3.0, '6': 1.0, 'of': 1.0, 'have': 2.0, '8': 1.0, 'unplugged': 1.0, 'me': 1.0, 'get': 1.0, 'monitor': 2.0, 'my': 1.0, 'it': 1.0, 'this': 1.0, 'only': 1.0}
Word element => {'so': 1.0, 'has': 1.0, 'he': 1.0, 'far': 1.0, 'than': 1.0, 'fun': 1.0, 'having': 1.0, 'been': 1.0, 've': 1.0, 'bought': 1.0, 'more': 1.0, 'my': 1.0, 'only': 1.0, 'and': 1.0, 'grandson': 1.0, 'this': 1.0, 'for': 1.0, '5': 1.0, 'month': 1.0, 'i': 2.0, 'think': 1.0}
Word element => {'pertain': 1.0, 'doesn': 1.0, 'since': 1.0, 'especially': 1.0, 'themselves': 1.0, 'opinions': 1.0, 'keep': 1.0, 'should': 1.0, 'they': 1.0, 'their': 2.0, 'have': 1.0, 'none': 1.0, 'walking': 1.0, 'feed': 1.0, 'so': 2.0, 'old': 1.0, '5': 1.0, 'pounds': 1.0, '17': 1.0, 'weighs': 1.0, 'also': 1.0, 'on': 1.0, 'enough': 1.0, 'big': 1.0, 'refuses': 1.0, 'feasible': 1.0, 'nor': 1.0, 'does': 1.0, 'correct': 1.0, 'had': 1.0, 'would': 1.0, 'difficult': 1.0, 'position': 1.0, 'them': 1.0, 'he': 3.0, 'no': 1.0, 'about': 1.0, 'ventaire': 1.0, 'remarks': 1.0, 'utilize': 1.0, 'i': 8.0, 'work': 1.0, 'but': 3.0, 'use': 3.0, 'not': 2.0, 'those': 1.0, 'negative': 2.0, 'stay': 2.0, 'propped': 1.0, 'imagine': 1.0, 'a': 2.0, 'could': 1.0, 'we': 1.0, 't': 2.0, 'without': 1.0, 'anything': 1.0, 'secured': 1.0, 'commenters': 1.0, 'making': 1.0, 'good': 1.0, 'which': 1.0, 'like': 1.0, 'hold': 4.0, 'idea': 1.0, 'when': 1.0, 'for': 2.0, 'to': 13.0, 'in': 5.0, 'seat': 1.0, 'with': 1.0, 'bottle': 2.0, 'this': 5.0, 'wish': 1.0, 'ever': 2.0, 'falling': 1.0, 'or': 1.0, 'particular': 1.0, 'angled': 1.0, 'matter': 1.0, 'while': 4.0, 'arms': 1.0, 'and': 6.0, 'months': 1.0, 'get': 1.0, 'unfortunately': 1.0, 'was': 3.0, 'me': 1.0, 'my': 4.0, 'hungry': 1.0, 'of': 2.0, 'the': 6.0, 'son': 3.0, 'else': 1.0, 'least': 1.0, 'seem': 1.0, 'children': 2.0, 'ventaires': 1.0, 'though': 1.0, 'playtex': 1.0, 'been': 1.0, 'able': 2.0, 'eating': 1.0, 'is': 1.0, 'at': 2.0, 'regular': 1.0, 'who': 2.0, 'store': 1.0, 'seemed': 1.0, 'return': 1.0, 'parents': 1.0, 'him': 2.0, 'it': 5.0, 'product': 4.0, 'individuals': 1.0, '34': 2.0, 'are': 2.0, 'bad': 1.0, 'refuse': 1.0, 'only': 1.0, 'off': 1.0, 'own': 2.0, 'tried': 1.0, 'parked': 1.0, 'maybe': 1.0, 's': 2.0, 'van': 2.0, 'bottles': 3.0, 'pushed': 1.0, 'around': 3.0, 'his': 4.0, 'being': 1.0, 'twist': 1.0, 'how': 1.0, 'our': 3.0, 'stroller': 1.0, 'shopping': 1.0, 'wasn': 1.0}
Word element => {'conveinent': 1.0, 'much': 1.0, 'so': 1.0, 'been': 1.0, 'baby': 1.0, 'son': 1.0, 'when': 1.0, 'i': 2.0, 'it': 2.0, 'have': 1.0, 'this': 1.0, 'around': 1.0, 'as': 1.0, 'wish': 1.0, 'a': 2.0, 'more': 1.0, 'my': 1.0, 'shower': 1.0, 'bought': 1.0, 'gift': 1.0, 'would': 1.0, 'was': 2.0}
Word element => {'bib': 1.0, 'a': 1.0, 'the': 4.0, 'make': 1.0, 'sure': 1.0, 'is': 2.0, 'side': 1.0, 'if': 1.0, 'down': 1.0, 'item': 1.0, 'have': 1.0, 'it': 1.0, 'only': 1.0, 'baby': 4.0, 'not': 1.0, 'actively': 1.0, 'must': 1.0, 'from': 1.0, 'bottle': 2.0, 'your': 1.0, 'may': 1.0, 'leak': 1.0, 'drinking': 1.0, 'onto': 1.0, 'wearing': 1.0, 'so': 1.0}
Word element => {'that': 1.0, 'like': 1.0, 'daughter': 1.0, 'she': 1.0, 'look': 1.0, 'to': 2.0, 'product': 1.0, 'an': 1.0, 'don': 1.0, 'a': 1.0, 't': 1.0, 'my': 1.0, 'monkey': 2.0, 'this': 1.0, 's': 1.0, 'i': 1.0, 'blowing': 2.0, 'want': 1.0, 'is': 1.0, 'and': 1.0, 'horrible': 1.0, 'affront': 1.0, 'humanity': 1.0, 'stop': 1.0}
Word element => {'gifts': 1.0, 'be': 1.0, 'will': 1.0, 'recommed': 1.0, 'definitely': 1.0, 'bag': 1.0, 'diaper': 1.0, 'up': 1.0, 'fold': 1.0, 'months': 1.0, '6': 1.0, 'future': 1.0, 'at': 1.0, 'their': 1.0, 'were': 1.0, 'mouth': 1.0, 'agree': 1.0, 'twins': 2.0, 'and': 6.0, 'me': 1.0, 'lifesaver': 1.0, 'she': 2.0, 'it': 3.0, 'this': 2.0, 'buying': 1.0, 'with': 2.0, 'baby': 1.0, 'more': 1.0, 'is': 1.0, 'i': 4.0, 'mine': 1.0, 'have': 2.0, 'was': 1.0, 'purchased': 1.0, 'for': 1.0, 'product': 2.0, 'own': 2.0, 'friend': 2.0, 'of': 2.0, 'right': 1.0, 'takes': 1.0, 'about': 1.0, 'told': 1.0, 's': 1.0, 'a': 3.0, 'go': 1.0, 'would': 1.0, 'dinner': 1.0, 'can': 1.0, 'monkey': 1.0, 'to': 1.0, 'as': 1.0, 'fits': 1.0, 'my': 3.0, 'family': 1.0, 'taking': 1.0, 'while': 1.0, 'daughter': 1.0, 'her': 3.0, 'neatly': 1.0, 'bottle': 3.0, 'loves': 1.0, 'the': 4.0, 'holding': 1.0, 'after': 1.0, 'cute': 1.0, 'face': 1.0, 'working': 1.0, 'on': 2.0, 'said': 1.0, 'in': 3.0, 'shopping': 1.0, 'out': 1.0}
Word element => {'thank': 1.0, 'complaining': 1.0, 'life': 1.0, 'just': 1.0, 'by': 1.0, 'children': 1.0, 'care': 1.0, 'warzone': 1.0, 'in': 1.0, 'husband': 1.0, 'no': 1.0, 'there': 1.0, 'is': 1.0, 'asked': 1.0, 'what': 1.0, 'had': 1.0, 'or': 1.0, 'nobody': 1.0, 'if': 1.0, 'coment': 1.0, 'should': 1.0, 'unless': 1.0, 'you': 5.0, 'me': 1.0, 'not': 2.0, 'make': 1.0, 'your': 1.0, 'therefore': 1.0, 'older': 1.0, 'with': 2.0, 'dont': 1.0, 'this': 4.0, 'it': 2.0, 'child': 1.0, 'ergo': 1.0, 'easier': 1.0, 'review': 1.0, 'owning': 1.0, 'an': 1.0, 'but': 2.0, 'also': 1.0, 'so': 1.0, 'needs': 1.0, 'used': 1.0, 'special': 1.0, 'baby': 2.0, 'help': 1.0, 'sling': 1.0, 'bought': 1.0, 'one': 1.0, 'm': 1.0, 'happy': 1.0, 'family': 1.0, 'my': 2.0, 'leave': 1.0, 'have': 4.0, 'able': 1.0, 'bad': 1.0, 'awesome': 2.0, 'been': 1.0, 'that': 1.0, 'little': 1.0, 'very': 1.0, 'i': 5.0, 'always': 1.0, 'our': 1.0, 'to': 6.0, 'only': 2.0, 'its': 1.0, 'everyone': 1.0, 'like': 1.0, 'know': 1.0, 'hold': 1.0, 'while': 2.0, 'feels': 1.0, 'feeding': 1.0, 'easy': 1.0, 'use': 1.0, 'and': 2.0, 'perfectly': 1.0, 'trying': 1.0, 'giving': 1.0, 'safe': 1.0, 'iam': 2.0, 'keeps': 1.0, 'opinion': 1.0, 'for': 3.0, 'product': 3.0, 'a': 4.0, 'myself': 1.0, 'without': 1.0}
Word element => {'62': 1.0, 'feeding': 1.0, 'waste': 1.0, 'and': 3.0, 'get': 1.0, 'fussy': 1.0, 'don': 1.0, 'use': 1.0, 'thing': 1.0, 'shopping': 1.0, 'is': 3.0, 'the': 3.0, 'amazing': 1.0, 'i': 2.0, 'it': 2.0, 'this': 2.0, 'just': 1.0, 'those': 1.0, 'not': 1.0, 'won': 1.0, 'moments': 1.0, 'your': 1.0, 'put': 1.0, 'on': 1.0, 'or': 2.0, 'let': 1.0, 'when': 2.0, 'you': 4.0, 'tired': 1.0, 'baby': 1.0, 'them': 1.0, 'down': 1.0, 'love': 1.0, 'product': 1.0, 'done': 1.0, 'need': 1.0, 'time': 2.0, 'so': 1.0, 'sitting': 1.0, 'but': 1.0, 'can': 1.0, 'something': 1.0, 'home': 1.0, 'at': 1.0, 'lot': 1.0, 'are': 1.0, 't': 2.0, 'go': 1.0, 'a': 1.0, 'of': 1.0, 'all': 1.0, 'to': 1.0}
Word element => {'them': 1.0, 'over': 1.0, 'yet': 1.0, 'bottles': 2.0, 'holding': 1.0, 'not': 1.0, 'idea': 1.0, 'this': 1.0, 'away': 1.0, 'and': 3.0, 'month': 1.0, 'great': 1.0, 'the': 2.0, 'my': 1.0, 'are': 1.0, 'of': 1.0, '6': 1.0, 'swing': 1.0, 'twin': 1.0, 'at': 1.0, 'olds': 1.0, 'soaked': 1.0, 'i': 1.0, 'product': 1.0, 'sorry': 1.0, 'to': 1.0, 'own': 1.0, 'report': 1.0, 'their': 1.0, 'that': 1.0, 'all': 1.0, 'have': 1.0, 'babies': 1.0, 'drip': 1.0, 'loved': 1.0, 'got': 1.0, 'they': 1.0}
Word element => {'head': 1.0, '30': 1.0, 'keyfit': 1.0, 'carrier': 1.0, 'chicco': 1.0, 'and': 2.0, 'baby': 1.0, 'about': 1.0, 'nurse': 1.0, 'adjust': 1.0, 'we': 1.0, 'from': 1.0, 'these': 1.0, 'great': 1.0, 'their': 2.0, 'nicu': 1.0, 'reach': 1.0, 'the': 1.0, 'without': 1.0, 'babies': 2.0, 'have': 1.0, 'out': 1.0, 'easy': 1.0, 'first': 1.0, 'our': 2.0, 'to': 3.0, 'supervision': 1.0, 'turn': 1.0, 'push': 1.0, 'time': 1.0, 'bottle': 1.0, 'mouths': 1.0, 'heard': 1.0, 'not': 1.0, 'meant': 1.0, 'be': 1.0, 'used': 1.0, 'can': 1.0, 'but': 1.0, 'is': 1.0, 'easily': 1.0, 'when': 1.0, 'you': 1.0, 'two': 1.0, 'at': 1.0, 'fits': 1.0, 'hungry': 1.0, 'same': 1.0}
Word element => {'though': 1.0, 'same': 1.0, 'flower': 1.0, 'in': 1.0, 'brown': 1.0, 'still': 2.0, 'color': 1.0, 'one': 1.0, 'design': 2.0, 'designs': 1.0, 'sent': 1.0, 'the': 7.0, 'reach': 1.0, 'me': 1.0, 'used': 1.0, 'sizes': 1.0, 'have': 2.0, 'babies': 1.0, 'it': 3.0, 'pink': 1.0, 'with': 2.0, 'this': 1.0, 'works': 2.0, 'only': 1.0, 'on': 2.0, 'depending': 1.0, 'adjusts': 1.0, 'you': 1.0, 'times': 1.0, 'was': 1.0, 'product': 1.0, 'many': 1.0, 'several': 1.0, 'different': 2.0, 'mouth': 1.0, 'of': 1.0, 'car': 2.0, 'to': 2.0, 'seat': 2.0, 'i': 2.0, 'prop': 1.0, 'back': 1.0, 'will': 1.0, 's': 1.0, 'a': 2.0, 'bottle': 2.0, 'bit': 1.0, 'so': 1.0, 'child': 1.0, 'may': 1.0, 'my': 1.0, 'monkey': 1.0, 'perfectly': 1.0, 'complaint': 1.0, 'ordered': 1.0, 'they': 1.0}
Word element => {'hand': 1.0, 'an': 1.0, 'use': 1.0, 'always': 1.0, 'you': 1.0, 'recommend': 1.0, 'give': 1.0, 'expectations': 1.0, 'met': 1.0, 'product': 1.0, 'cheery': 1.0, 'colors': 1.0, 'can': 1.0, 'constantly': 1.0, 'our': 2.0, 'dog': 1.0, 'cat': 1.0, 'got': 1.0, 'their': 1.0, 'twins': 1.0, 'hours': 1.0, 'times': 1.0, 'would': 1.0, 'either': 1.0, 'ordered': 1.0, 'experimenting': 1.0, 'time': 1.0, 'same': 1.0, 'or': 1.0, 'lose': 1.0, 'and': 7.0, 'happy': 1.0, 'one': 1.0, 'too': 1.0, 'as': 2.0, 'bebe': 1.0, 'grow': 1.0, 'very': 1.0, 'presentation': 1.0, 'we': 6.0, 'a': 4.0, 'quite': 1.0, 'sling': 5.0, 'help': 1.0, 'like': 2.0, 'extra': 1.0, 'another': 1.0, 'mentioned': 1.0, 'just': 1.0, 'hope': 2.0, 'work': 1.0, 'but': 2.0, '2': 2.0, 'review': 1.0, 'half': 1.0, 'i': 1.0, 'well': 1.0, 'hopes': 1.0, 'with': 3.0, 'bridge': 1.0, 'it': 4.0, 'only': 1.0, 'bright': 1.0, 'bottles': 2.0, 'home': 2.0, 'mother': 1.0, 'have': 2.0, 'feedings': 1.0, 'to': 7.0, 'high': 1.0, 'more': 1.0, 'babies': 5.0, 'husband': 2.0, 'phase': 1.0, 'challenge': 1.0, 'is': 3.0, 'at': 2.0, 'throw': 1.0, 'option': 1.0, 'several': 1.0, 'minute': 1.0, 'bottle': 3.0, 'this': 2.0, 'feeding': 1.0, 'was': 1.0, 'many': 1.0, 'dad': 1.0, 'spending': 1.0, 'the': 15.0, 'of': 3.0, 'studies': 1.0, 'technique': 1.0, 'his': 1.0, 'day': 1.0, 'away': 1.0, 'picking': 1.0, 'from': 1.0, 'addition': 1.0, 'up': 1.0, 'bridges': 1.0, 'feed': 2.0, 'cloth': 1.0, 'put': 1.0, 'building': 1.0, 'for': 1.0, 'us': 2.0, 'completely': 1.0, 'sometimes': 1.0, 'dominate': 1.0, 'stay': 2.0, 'still': 2.0, 'hands': 1.0, 'seem': 1.0, 'per': 2.0, 'in': 1.0, 'will': 2.0, 'come': 1.0, 'build': 1.0, 'final': 1.0, 'my': 2.0, 'learning': 1.0, 'they': 2.0, 'working': 1.0, 'diapers': 1.0, 'are': 2.0}
Word element => {'they': 1.0, 'different': 1.0, 'something': 1.0, 'was': 1.0, 'it': 2.0, 'will': 1.0, 'baby': 1.0, 'loved': 1.0, 'this': 1.0, 'and': 1.0, 'as': 1.0, 'using': 1.0, 'a': 1.0, 'shower': 1.0, 'bought': 1.0, 'gift': 1.0, 'parents': 1.0, 'to': 1.0, 'be': 2.0}
Word element => {'much': 1.0, 'so': 1.0, 'paid': 1.0, 'especially': 1.0, 'hold': 2.0, 'because': 1.0, 'not': 1.0, 'for': 1.0, 'sling': 1.0, 'we': 2.0, 'bottle': 1.0, 'my': 1.0, 'the': 1.0, 'in': 1.0, 'disappointed': 1.0, 'our': 1.0, 'were': 1.0, 'very': 2.0, 'get': 1.0, 'and': 1.0, 'did': 1.0, 'constantly': 1.0, 'bottles': 1.0, 'trying': 1.0, 'to': 3.0, 'adjust': 1.0, 'it': 3.0, 'velcro': 1.0, 'unhappy': 1.0}
Word element => {'held': 1.0, 'is': 1.0, 'other': 1.0, 'so': 1.0, 'turns': 1.0, 'take': 1.0, 'sure': 1.0, 'make': 1.0, 'are': 1.0, 'they': 1.0, 'has': 1.0, 'at': 1.0, 'a': 2.0, 'i': 2.0, 'when': 1.0, 'and': 2.0, 'my': 1.0, 'baby': 1.0, 'alone': 1.0, 'helps': 1.0, 'start': 1.0, 'bottle': 3.0, 'been': 1.0, 'both': 1.0, 'lot': 1.0, 'every': 1.0, 'purchased': 1.0, 'it': 2.0, 'the': 1.0, 'great': 1.0, 'investment': 1.0, 'babies': 1.0, 'crying': 1.0, 'sling': 1.0, 'for': 1.0, 'that': 2.0, 'their': 1.0, 'you': 1.0}
Word element => {'best': 1.0, 'whats': 1.0, 'its': 1.0, 'seems': 1.0, 'heart': 1.0, 'makes': 1.0, 'rated': 1.0, 'how': 1.0, 'image': 1.0, 'seeing': 1.0, 'interaction': 1.0, 'use': 1.0, 'up': 1.0, 'when': 1.0, 'what': 2.0, 'about': 1.0, 'think': 1.0, 'want': 1.0, 'give': 1.0, 'perfectly': 1.0, 'one': 1.0, 'no': 1.0, 'hardest': 1.0, 'parenting': 1.0, 'judge': 1.0, 'point': 1.0, 'treated': 1.0, 'be': 1.0, 'should': 1.0, 'my': 2.0, 'learning': 1.0, 'essential': 1.0, 'etc': 1.0, 'helping': 1.0, 'as': 1.0, 'diaper': 1.0, 'eating': 1.0, 'basic': 1.0, 'their': 1.0, 'supposed': 1.0, 'taking': 1.0, 'center': 1.0, 'with': 1.0, 'sleep': 1.0, 'most': 1.0, 'infant': 1.0, 'especially': 1.0, 'dismiss': 1.0, 'not': 4.0, 'least': 1.0, 'haven': 1.0, 'just': 1.0, 'centers': 1.0, 'regulations': 2.0, 'job': 1.0, 'to': 9.0, 'against': 1.0, 'needs': 2.0, 'depriving': 1.0, 'time': 1.0, 'at': 2.0, 'is': 6.0, 'bottles': 2.0, 'or': 2.0, 'that': 5.0, 'using': 1.0, 'hold': 2.0, 'would': 1.0, 'read': 1.0, 'each': 2.0, 'changes': 1.0, 'babies': 2.0, 'settings': 1.0, 'personal': 1.0, 'reconsider': 1.0, 'but': 2.0, 'ask': 1.0, 'can': 2.0, 'licensing': 1.0, 'education': 1.0, 'i': 5.0, 'prop': 1.0, 'such': 1.0, 'for': 3.0, 'parents': 1.0, 'way': 1.0, 'highly': 1.0, 'bottle': 3.0, 'this': 2.0, 'we': 1.0, 't': 1.0, 'a': 1.0, 'ache': 1.0, 'stimulates': 1.0, 'homes': 1.0, 'ever': 1.0, 'an': 1.0, 'all': 1.0, 'other': 1.0, 'juggle': 1.0, 'like': 1.0, 'care': 2.0, 'progressive': 1.0, 'adult': 1.0, 'skip': 1.0, 'work': 1.0, 'devices': 1.0, 'are': 6.0, 'replace': 1.0, '4': 1.0, 'maine': 1.0, 'on': 1.0, 'any': 2.0, 'your': 6.0, 'attention': 1.0, 'of': 6.0, 'the': 8.0, 'times': 1.0, 'aware': 1.0, 'once': 1.0, 'these': 2.0, 'you': 12.0, 'things': 2.0, 'allowed': 1.0, 'around': 1.0, 'educational': 1.0, 'encounter': 1.0, 'even': 1.0, 'if': 2.0, 'development': 1.0, 'product': 2.0, 'child': 4.0, 'themselves': 1.0, 'difficult': 1.0, 'nurturing': 1.0, 'required': 1.0, 'lap': 1.0, 'during': 1.0, 'feeding': 2.0, 'interactions': 1.0, 'states': 1.0, 'it': 5.0, 'multiple': 1.0, 'them': 4.0, 'has': 2.0, 'know': 2.0, 'childcare': 2.0, 'however': 1.0, 'propping': 2.0, 'sort': 1.0, 'emotional': 1.0, 'in': 6.0, 'neural': 1.0, 'anyone': 1.0, 'and': 9.0, 'arms': 1.0, 'do': 3.0, 'importance': 1.0, 'have': 1.0}
Word element => {'much': 1.0, 'my': 1.0, 'the': 1.0, 'made': 2.0, 'bottle': 1.0, 'i': 1.0, 'for': 1.0, 'not': 1.0, 'hold': 1.0, 'sure': 1.0, 'to': 1.0, 'it': 3.0, 'this': 1.0, 'baby': 1.0, 'also': 1.0, 'seems': 1.0, 'cheaply': 1.0, 'am': 1.0, 'harder': 1.0, 'so': 1.0, 'very': 1.0, 'why': 1.0, 'actually': 1.0, 'costs': 1.0}
Word element => {'can': 1.0, 'any': 1.0, 'want': 1.0, 'face': 1.0, 'more': 1.0, 't': 2.0, 'the': 2.0, 'cute': 1.0, 'i': 1.0, 'bottle': 2.0, 'liked': 1.0, 'one': 1.0, 'very': 1.0, 'as': 1.0, 'away': 1.0, 'and': 2.0, 'design': 1.0, 'in': 1.0, 'his': 1.0, 'works': 1.0, 'it': 1.0, 'he': 2.0, 'this': 2.0, 'hitting': 1.0, 'product': 1.0, 'pillow': 1.0, 'when': 1.0, 'described': 1.0, 'coming': 1.0, 'him': 1.0, 'holder': 1.0, 'keeps': 1.0, 'move': 1.0, 'better': 1.0, 'doesn': 1.0, 'back': 1.0}
Word element => {'gift': 1.0, 'baby': 1.0, 'are': 1.0, 'makes': 1.0, 'they': 1.0, 'on': 1.0, 'tug': 1.0, 'face': 1.0, 'i': 2.0, 'great': 1.0, 'the': 5.0, '2': 1.0, 'is': 1.0, 'shower': 1.0, 'it': 1.0, 'eating': 1.0, 'only': 1.0, 'and': 3.0, 'hands': 1.0, 'girls': 2.0, 'life': 1.0, 'bottle': 1.0, 'twin': 1.0, 'got': 1.0, 'ears': 1.0, 've': 1.0, 'at': 1.0, 'a': 2.0, 'saver': 1.0, 'have': 1.0, 'monkey': 1.0, 'too': 1.0, 'when': 1.0, 'monkeys': 1.0, 'sling': 1.0, 'love': 1.0, 'to': 1.0, 'look': 1.0}
Word element => {'models': 1.0, 'than': 1.0, 'tried': 1.0, 'seems': 1.0, 'holder': 1.0, 'more': 1.0, 'doesn': 1.0, 'absolutely': 1.0, 'out': 1.0, 'spit': 1.0, 'might': 1.0, 'younger': 1.0, 'perhaps': 1.0, 'safer': 1.0, 'different': 1.0, 'but': 2.0, 'properly': 1.0, 'before': 1.0, 'months': 1.0, '4': 1.0, 'car': 5.0, 'infant': 2.0, 'other': 1.0, 'an': 2.0, 'follow': 1.0, 'feed': 1.0, 'sling': 1.0, 'time': 1.0, 'brother': 1.0, 'child': 1.0, 'product': 3.0, 'twins': 1.0, 'kind': 1.0, 'it': 8.0, 'are': 1.0, 'important': 1.0, 'unless': 1.0, 'occasionally': 1.0, 'caught': 1.0, 'want': 2.0, 'same': 1.0, 'every': 1.0, 'if': 3.0, 'and': 5.0, 'you': 2.0, 'able': 2.0, 'have': 5.0, 'with': 7.0, 'bottle': 4.0, 'this': 5.0, 'both': 1.0, 'amplify': 1.0, 'she': 5.0, 'baby': 7.0, 'them': 1.0, 'her': 2.0, 'use': 9.0, 'instructions': 1.0, 'purchased': 1.0, 'when': 2.0, 'what': 1.0, 'to': 11.0, 'any': 1.0, 'i': 9.0, 'simply': 1.0, 'quickly': 1.0, 'keep': 1.0, 'my': 2.0, 'adjust': 1.0, 'how': 1.0, 'they': 1.0, 'on': 1.0, 'make': 1.0, 'especially': 1.0, 'girl': 1.0, 'mouth': 1.0, 'do': 1.0, 'works': 2.0, 'not': 1.0, 'a': 4.0, 'fairly': 1.0, 't': 4.0, 'fine': 1.0, 'we': 1.0, 'could': 2.0, 'bouncy': 2.0, 'had': 1.0, 'type': 1.0, 'that': 1.0, 'because': 1.0, 'young': 1.0, 'seats': 2.0, 'designed': 1.0, 'velcro': 1.0, 'movement': 1.0, 'jiggle': 1.0, 'so': 1.0, 'can': 2.0, 'seat': 5.0, 'in': 1.0, 'like': 1.0, 'bouncing': 1.0, 'used': 1.0, 'perfectly': 1.0, 'll': 1.0, 'also': 1.0, 'triangle': 1.0, 'try': 1.0, 'one': 2.0, 'handles': 1.0, 'easy': 1.0, 'know': 2.0, 'the': 12.0, 'of': 3.0, 'device': 1.0, 'eat': 1.0, 'mean': 1.0, 'possible': 1.0, 'is': 5.0, 'at': 1.0, 'handle': 1.0, 'don': 2.0, 'attachments': 1.0, 'be': 2.0, 'about': 1.0}
Word element => {'own': 1.0, 'or': 2.0, 'give': 1.0, 'either': 1.0, 'want': 1.0, 'if': 1.0, 'handled': 1.0, 'exceeded': 1.0, 'issue': 1.0, 'replacement': 1.0, 'your': 1.0, 'on': 1.0, 'have': 4.0, 'they': 2.0, 'colors': 1.0, 'future': 1.0, 'at': 1.0, 'expectations': 1.0, 'dream': 1.0, 'bellas': 2.0, 'satisfied': 1.0, 'unique': 1.0, 'will': 2.0, 'know': 1.0, 'children': 1.0, 'gift': 2.0, 'recommend': 1.0, 'was': 1.0, 'mats': 2.0, 'for': 1.0, 'product': 1.0, 'love': 2.0, 'definitely': 1.0, 'looking': 1.0, 'days': 1.0, 'scrap': 1.0, 'so': 2.0, 'items': 1.0, 'dealt': 1.0, '2': 1.0, 'the': 5.0, 'law': 1.0, 'ordered': 1.0, 'mat': 4.0, 'she': 1.0, 'it': 4.0, 'with': 3.0, 'school': 2.0, 'dress': 1.0, 'this': 1.0, 'need': 1.0, 'done': 1.0, 'giving': 1.0, 'i': 8.0, 'just': 4.0, 'fun': 1.0, 'years': 1.0, 's': 1.0, 'a': 5.0, 'necessities': 1.0, 'girl': 1.0, 'photo': 2.0, 'child': 1.0, 'up': 1.0, 'beautifully': 1.0, 'shower': 1.0, 'of': 2.0, 'how': 1.0, 'received': 1.0, 'addition': 1.0, 'someone': 1.0, 'you': 1.0, 'am': 2.0, '3d': 3.0, 'in': 5.0, 'loved': 1.0, 'quality': 1.0, 'baby': 2.0, 'them': 3.0, 'and': 6.0, 'too': 2.0, 'daughter': 1.0, 'completely': 1.0, 'is': 1.0, 'highly': 1.0, 'really': 1.0, 'little': 1.0, 'other': 1.0, 'purchase': 1.0, 'my': 2.0, 'all': 1.0, 'to': 4.0, 'as': 1.0, 'from': 1.0, 'designs': 1.0, 'part': 1.0}
Word element => {'light': 1.0, 'all': 1.0, 'for': 1.0, 'stars': 1.0, 'gave': 1.0, 'less': 1.0, '4': 1.0, 'believe': 1.0, 'of': 2.0, 'care': 1.0, 'cost': 1.0, 'if': 1.0, 'be': 1.0, 'can': 1.0, 'really': 1.0, 'is': 3.0, 'cool': 1.0, 'should': 1.0, 'learning': 1.0, 'easy': 1.0, 'played': 1.0, 'i': 3.0, 'even': 1.0, 'con': 1.0, 'ages': 1.0, 'toy': 1.0, 'a': 1.0, 'in': 1.0, 'was': 2.0, 'had': 1.0, 'great': 1.0, 'the': 4.0, 'dark': 1.0, 'and': 3.0, 'bent': 1.0, 'fun': 2.0, 'that': 2.0, 'board': 1.0, 'because': 2.0, 'not': 2.0, 'taken': 1.0, 'with': 1.0, 'it': 4.0, 'this': 1.0, 'only': 1.0, 'hard': 1.0}
Word element => {'tool': 1.0, 'good': 1.0, 'names': 1.0, 'dinosaur': 1.0, 'learning': 1.0, 'him': 1.0, 'it': 1.0, 'helps': 1.0, 'my': 1.0, 'see': 1.0, 'learn': 1.0, 'grandson': 1.0, 'loves': 1.0, 'dinosaurs': 2.0, 'so': 1.0, 'i': 2.0, 'when': 1.0, 'something': 1.0, 'with': 1.0, 'different': 1.0, 'get': 1.0}
Word element => {'3': 1.0, 'definitely': 1.0, 'would': 1.0, 'educational': 1.0, 'that': 1.0, 'kids': 2.0, 'good': 1.0, 'or': 1.0, 'i': 1.0, 'recommend': 1.0, 'learn': 1.0, 'a': 1.0, 'really': 1.0, 'is': 1.0, 'bored': 1.0, 'n': 1.0, 'this': 3.0, 'with': 1.0, 'light': 1.0, 'for': 1.0, 'love': 1.0, 'toy': 2.0, 'the': 1.0, 'get': 1.0, 'do': 1.0, 'not': 1.0, 'we': 1.0, 'frustrated': 1.0}
Word element => {'older': 1.0, 'might': 1.0, 'right': 1.0, 'changed': 1.0, 'crusted': 1.0, 'leaked': 1.0, 'batteries': 4.0, 'old': 2.0, 'parents': 1.0, 'tune': 1.0, '6': 1.0, 'spin': 2.0, 'learn': 2.0, 'the': 11.0, 'she': 1.0, 'month': 2.0, 'it': 6.0, 'ready': 1.0, 'and': 4.0, 'fine': 1.0, 'then': 1.0, 'we': 6.0, 'a': 1.0, 'play': 1.0, 'about': 1.0, 'toy': 4.0, 'had': 2.0, 'to': 6.0, 'annoying': 2.0, 'as': 3.0, 'was': 3.0, 'still': 1.0, 'expecting': 1.0, 'received': 1.0, 'us': 1.0, 'you': 1.0, 'mom': 1.0, 'husband': 1.0, 'almost': 1.0, 'error': 1.0, '1': 1.0, 'getting': 1.0, 'waiting': 1.0, 'for': 3.0, 'he': 3.0, 'nephew': 1.0, 'love': 1.0, 'my': 4.0, 'worked': 1.0, 'n': 2.0, 'this': 2.0, 'first': 1.0, 'with': 2.0, 'took': 1.0, 'even': 1.0, 'however': 1.0, 'put': 1.0, 'in': 1.0, 'them': 1.0, 'out': 2.0, 'soon': 3.0, 'there': 1.0, 'when': 2.0, 'results': 1.0, 'is': 3.0, 'repetitive': 1.0, 'plays': 1.0, 'ever': 1.0, 'after': 1.0, 'read': 1.0, 'each': 1.0, 'would': 2.0, 'time': 1.0, 'so': 1.0, 'press': 1.0, 'wanted': 1.0, 'i': 4.0, 'by': 1.0, 'pull': 1.0, 'most': 1.0, 'but': 2.0, 'have': 2.0, 'encountered': 1.0, 'son': 1.0, 'returned': 1.0, 'threw': 1.0, 'away': 1.0, 'button': 1.0, 'packaging': 1.0, 'unbeknownst': 1.0, 'never': 1.0, 'were': 1.0, 'our': 1.0, 'disappointed': 1.0, 'that': 4.0, 'because': 1.0, 'really': 1.0, 'be': 2.0, 'too': 3.0, 'one': 1.0, 'which': 1.0}
Word element => {'strong': 1.0, 'construction': 1.0, 'recommend': 1.0, 'for': 1.0, 'granny': 1.0, 'toy': 1.0, 'helping': 1.0, 'gotten': 1.0, 'and': 2.0, 'the': 1.0, 'great': 1.0, 'they': 1.0, 'a': 1.0, 'it': 1.0, 'children': 1.0, 'this': 1.0, 'all': 1.0, 'have': 1.0, 'is': 2.0, 'many': 1.0, 'super': 1.0, 'hours': 1.0, 'safe': 1.0, 'fun': 1.0, 'of': 1.0, 'clean': 1.0, 'i': 1.0, 'would': 1.0, 'definitely': 1.0}
Word element => {'lot': 1.0, 'me': 1.0, 'helps': 1.0, 'my': 1.0, 'do': 1.0, 'you': 1.0, 'a': 2.0, 'must': 1.0, 'for': 1.0, 'one': 2.0, 'your': 1.0, 'like': 1.0, 'and': 2.0, 'sweep': 1.0, 'little': 2.0, 'vacuum': 1.0, 'who': 1.0, 'this': 1.0, 'have': 1.0, 'loves': 2.0, 'to': 1.0}
Word element => {'s': 1.0, 'takes': 1.0, 'and': 1.0, 'broom': 1.0, 'talking': 1.0, 'the': 2.0, 'wish': 1.0, 'love': 1.0, 'for': 1.0, 'just': 1.0, 'but': 1.0, 'it': 3.0, 'or': 1.0, 'loves': 1.0, 'i': 1.0, 'old': 1.0, 'toy': 1.0, 'care': 1.0, 'mths': 1.0, 'grandma': 1.0, 'cleaner': 1.0, 'to': 1.0, 'vacuum': 1.0, 'was': 1.0, 'realistic': 1.0, '15': 1.0, 'a': 1.0, 'my': 1.0, 'push': 1.0, 'she': 1.0, 'dont': 1.0}
Word element => {'out': 1.0, 'o': 1.0, 'my': 1.0, '3': 1.0, 'later': 1.0, 'rest': 1.0, 'has': 1.0, 'around': 1.0, 'but': 1.0, 'off': 1.0, 'easily': 1.0, 'too': 1.0, 'handle': 1.0, 'vacuum': 1.0, 'had': 1.0, 'comes': 1.0, 'up': 1.0, 'far': 1.0, 'broom': 1.0, 'on': 1.0, 'pieces': 1.0, 'the': 4.0, 'are': 1.0, 'held': 1.0, 'still': 1.0, 'yesterday': 1.0, 'y': 1.0, 'occasionally': 1.0, 'well': 1.0, 'a': 1.0, 'drug': 1.0, 'year': 1.0}
Word element => {'anyone': 1.0, 'toy': 1.0, 'as': 1.0, 'i': 1.0, 'floor': 1.0, 'wold': 1.0, 'mom': 2.0, 'idea': 1.0, 'likes': 1.0, 'granddaughter': 1.0, 'to': 2.0, 'recommend': 1.0, 'she': 2.0, 'child': 1.0, 'clean': 1.0, 'and': 2.0, 'help': 1.0, '2nd': 1.0, 'enjoys': 1.0, 's': 2.0, 'the': 2.0, 'helping': 1.0, 'talked': 1.0, 'that': 1.0, 'this': 1.0, 'it': 2.0, 'sweep': 1.0, 'is': 1.0, 'a': 2.0, 'gift': 1.0, 'birthday': 1.0, 'cute': 1.0, 'her': 1.0, 'liked': 1.0, 'for': 1.0}
Word element => {'finish': 1.0, 'she': 1.0, 'times': 1.0, 'year': 1.0, 'for': 1.0, 'my': 1.0, 'would': 1.0, 'after': 1.0, 'was': 1.0, 'granddaughter': 1.0, 'grab': 1.0, 'of': 1.0, 'product': 1.0, 'hoped': 1.0, '1': 1.0, 'couple': 1.0, 'old': 1.0, 'i': 1.0, 's': 1.0, 'attention': 1.0, 'a': 2.0, 'while': 1.0, 'but': 1.0, 'it': 1.0, 'with': 1.0, 'this': 1.0, 'turning': 1.0, 'the': 1.0, 'knob': 1.0}
Word element => {'child': 1.0, 'own': 1.0, 'your': 1.0, 'better': 1.0, 'would': 1.0, 'parts': 1.0, 'little': 1.0, 'of': 1.0, 'enough': 1.0, 'track': 1.0, 'not': 1.0, 'feeling': 1.0, 'that': 2.0, 'drain': 1.0, 'down': 1.0, 'though': 1.0, 'keep': 2.0, 'was': 3.0, 'this': 3.0, 'christmas': 1.0, 'with': 2.0, 'perhaps': 1.0, 'wouldn': 1.0, 'only': 1.0, 'concept': 1.0, 'about': 1.0, 'also': 1.0, 'key': 2.0, 'in': 1.0, 'two': 1.0, 'i': 5.0, 'thought': 1.0, 'buy': 1.0, 'days': 1.0, 'recipient': 2.0, 'toy': 2.0, 'well': 1.0, 'the': 9.0, 'feel': 1.0, 'great': 2.0, 'go': 1.0, 's': 1.0, 'a': 4.0, 't': 1.0, 'immensely': 1.0, 'enjoyed': 1.0, 'for': 4.0, 'one': 1.0, 'book': 1.0, 'work': 1.0, 'money': 1.0, 'but': 2.0, 'because': 2.0, 'kid': 2.0, 'is': 2.0, 'enjoyment': 1.0, 'organized': 1.0, 'so': 1.0, 'flushed': 1.0, 'hard': 1.0, 'from': 1.0, 'and': 3.0, 'soon': 1.0, 'dislike': 1.0, 'dwindles': 1.0, 'it': 5.0, 'misplaced': 1.0, 'to': 2.0, 'as': 3.0, 'all': 3.0, 'idea': 1.0, 'again': 1.0}
Word element => {'please': 1.0, 'turn': 1.0, 'really': 1.0, 'going': 1.0, 'gets': 1.0, 'to': 1.0, 'easy': 1.0, 'operate': 1.0, 'once': 1.0, 'at': 1.0, 'loves': 1.0, 't': 1.0, 'with': 1.0, 'he': 2.0, 'it': 4.0, 'excited': 1.0, 're': 1.0, 'my': 1.0, 'i': 1.0, 'get': 1.0, 'fact': 1.0, 'unless': 1.0, 'in': 1.0, 'on': 1.0, 'won': 1.0, 'we': 2.0, 'stop': 1.0, 'very': 1.0, 'son': 1.0, 'crying': 1.0, 'times': 1.0}
Word element => {'will': 1.0, 'grandkids': 1.0, 'they': 1.0, 'your': 1.0, 'movement': 1.0, 'unique': 1.0, 'sideways': 1.0, 'sound': 1.0, 'make': 1.0, 'new': 1.0, 'and': 2.0, 'grandchild': 1.0, 'ago': 1.0, 'month': 1.0, 'our': 1.0, 'awesome': 1.0, 'year': 1.0, '6': 1.0, 'several': 1.0, 'a': 1.0, 'want': 1.0, 'is': 2.0, 'broke': 1.0, 'years': 1.0, 'toy': 1.0, 'to': 2.0, 'buy': 1.0, 'old': 1.0, 'crab': 1.0, 'child': 1.0, 'little': 1.0, 'it': 4.0, 'first': 1.0, 'this': 1.0, '4': 1.0, 'love': 1.0, 'for': 3.0, 'one': 2.0, 'replace': 1.0, 'the': 3.0, 'we': 2.0, 'got': 1.0}
Word element => {'winner': 1.0, 'cart': 1.0, 'opposed': 1.0, 'having': 1.0, 'safer': 1.0, 'its': 1.0, 'car': 3.0, 'convertible': 1.0, 'stores': 1.0, 'hands': 1.0, 'where': 1.0, 'am': 2.0, 'while': 1.0, 'loves': 1.0, 'than': 1.0, 'security': 1.0, 'child': 2.0, 'definitely': 1.0, 'parent': 1.0, 'think': 1.0, 'around': 1.0, 'need': 1.0, 'or': 1.0, 'solely': 1.0, 'chest': 2.0, 'close': 2.0, 'right': 1.0, 'handy': 1.0, 'grab': 1.0, 'only': 2.0, 'usually': 1.0, 'advantage': 1.0, 'an': 1.0, 'always': 1.0, 'next': 1.0, 'them': 3.0, 'foot': 1.0, 'also': 4.0, 'outside': 1.0, 'straps': 3.0, 'hand': 1.0, 'easy': 1.0, 'call': 1.0, 'comfort': 1.0, 'sleeping': 1.0, 'they': 2.0, 'hood': 3.0, 'bulky': 1.0, 'padding': 1.0, 'asleep': 1.0, 'which': 1.0, 'side': 1.0, 'made': 1.0, 'up': 1.0, 'mother': 1.0, 'without': 1.0, 'love': 2.0, 'yet': 3.0, 'brand': 1.0, 'another': 1.0, 'my': 6.0, 'i': 20.0, 'house': 1.0, 'mind': 1.0, 'with': 7.0, 'seat': 3.0, 'in': 11.0, 'if': 2.0, 'keep': 1.0, 'since': 3.0, 'please': 2.0, 'can': 1.0, 'so': 4.0, 'time': 1.0, 'provides': 2.0, 'bark': 1.0, 'dark': 1.0, 'being': 3.0, 'lay': 1.0, 'very': 4.0, 'not': 9.0, 'creates': 1.0, 'do': 1.0, 'much': 1.0, 'a': 10.0, 'bunching': 1.0, 'have': 11.0, 'thing': 1.0, 'material': 2.0, 'really': 1.0, 'was': 4.0, 'but': 9.0, 'quality': 2.0, 'others': 1.0, 'she': 3.0, 'baby': 5.0, 'will': 3.0, 'secure': 2.0, 'bought': 1.0, 'adjusted': 1.0, 'stitching': 1.0, 'more': 2.0, 'protect': 1.0, 'impressive': 1.0, 'as': 1.0, 'falls': 1.0, 'body': 1.0, 'earth': 1.0, 'box': 1.0, 'that': 5.0, 'things': 1.0, 'able': 2.0, 'you': 7.0, 'when': 2.0, 'feets': 1.0, 'brown': 1.0, 'prone': 1.0, 'neck': 1.0, 'undo': 1.0, 'opening': 1.0, 'look': 1.0, 'selecting': 1.0, 'notice': 1.0, 'snug': 1.0, 'selected': 1.0, 'is': 14.0, 'from': 1.0, 'feels': 1.0, 'out': 1.0, 'adjustability': 1.0, 'place': 2.0, 'careful': 1.0, 'back': 3.0, 'this': 6.0, 'it': 16.0, 'are': 4.0, 'first': 3.0, 'durable': 1.0, 'color': 3.0, 'lot': 2.0, 'one': 3.0, 'to': 18.0, 'compare': 1.0, 'size': 1.0, 'used': 6.0, 'shorter': 1.0, 'for': 9.0, 'likes': 2.0, 'fit': 2.0, 'daughter': 3.0, 'use': 8.0, 'front': 4.0, 'gets': 1.0, 'adjust': 3.0, 'shopping': 1.0, 'how': 1.0, 'feel': 2.0, 'your': 2.0, 'impressed': 2.0, 'now': 1.0, 'almost': 1.0, 'lint': 1.0, 'frame': 1.0, 'buckle': 1.0, 'elements': 1.0, 'carrier': 15.0, 'pocket': 2.0, 'take': 1.0, 'then': 1.0, 'area': 3.0, 'legs': 1.0, 'removable': 1.0, 'enough': 1.0, 's': 1.0, 'sides': 1.0, 'be': 1.0, 'and': 8.0, 'arms': 1.0, 'see': 1.0, 'access': 1.0, 'own': 1.0, 'offers': 3.0, 'just': 2.0, 'of': 5.0, 'the': 47.0, 'doing': 2.0, 'person': 1.0, 'older': 1.0, 'torso': 2.0, 'long': 1.0}
Word element => {'overall': 1.0, 'felt': 1.0, '8': 1.0, '5': 1.0, 'right': 1.0, 'would': 1.0, 'think': 1.0, 'large': 1.0, 'stature': 1.0, 'point': 1.0, 'positioning': 1.0, 'then': 1.0, 'best': 1.0, 'like': 2.0, 'up': 2.0, 'seems': 1.0, 'see': 1.0, 'carried': 1.0, 'position': 3.0, 'back': 1.0, 'from': 1.0, 'child': 3.0, 'someone': 1.0, 'also': 1.0, 'help': 2.0, 'second': 1.0, 'having': 1.0, 'may': 1.0, 'me': 1.0, 'kid': 1.0, 'how': 1.0, 'figure': 1.0, 'sometimes': 1.0, 'face': 2.0, 'couldn': 1.0, 'thing': 1.0, 'motherhood': 1.0, 'tall': 1.0, 'new': 1.0, 'relatively': 1.0, 'am': 1.0, 'coming': 1.0, 'i': 8.0, 'solo': 1.0, 'items': 1.0, 'really': 1.0, 'backpack': 1.0, 'as': 1.0, 'diaper': 1.0, 'don': 1.0, 'hiking': 1.0, 'out': 5.0, 'what': 1.0, 'when': 1.0, 's': 2.0, 'include': 1.0, 'other': 2.0, 'some': 1.0, 'additional': 1.0, '4': 1.0, 'different': 1.0, 'carriers': 2.0, 'needed': 1.0, 'newborn': 1.0, 'where': 1.0, 're': 2.0, 'foot': 2.0, 'before': 1.0, 'old': 1.0, 'months': 2.0, 'taking': 1.0, '3': 1.0, 'on': 3.0, 'be': 6.0, 'is': 6.0, 'use': 3.0, 'front': 3.0, 'possible': 1.0, 'please': 1.0, 'places': 1.0, 'place': 1.0, 'keys': 1.0, 'no': 2.0, 'baby': 11.0, 'but': 3.0, 'so': 3.0, 'can': 5.0, 'money': 1.0, 'toting': 1.0, 'secure': 1.0, 'they': 1.0, 'sleeping': 1.0, 'for': 6.0, 'say': 1.0, 'comfortable': 2.0, 'padded': 1.0, 'your': 3.0, 'feel': 1.0, 'because': 1.0, 'that': 4.0, 'babies': 1.0, 'if': 3.0, 'want': 3.0, 'high': 1.0, 'to': 12.0, 'pretty': 1.0, 'small': 1.0, 'a': 9.0, 'pros': 1.0, 'with': 2.0, 'this': 5.0, 'easy': 1.0, 'found': 2.0, 'bag': 1.0, 'using': 1.0, 'looking': 1.0, 'extra': 1.0, 'of': 1.0, 'person': 1.0, 'the': 14.0, 'forward': 1.0, 'not': 5.0, 'etc': 1.0, 'control': 1.0, 'will': 1.0, 'means': 1.0, 'designed': 1.0, 'carrier': 5.0, 'features': 1.0, 'them': 1.0, 'always': 1.0, 'carry': 1.0, 'cons': 1.0, 'note': 1.0, 'hood': 2.0, 'and': 4.0, 'comes': 1.0, 'these': 1.0, 'something': 1.0, 'straps': 3.0, 'add': 1.0, 'two': 1.0, 'nice': 3.0, 'little': 2.0, 'which': 1.0, 'ons': 1.0, 'feeding': 1.0, 'although': 2.0, 'likely': 1.0, 'used': 1.0, 'unless': 1.0, 'after': 1.0, 'it': 3.0, '9': 1.0, 'just': 1.0, 'along': 1.0, 't': 3.0, 'likes': 1.0, 'have': 3.0, 'you': 10.0, 'things': 2.0, 'its': 1.0, 'detachable': 1.0, 'remove': 1.0, 'without': 2.0, 'choose': 1.0, 'head': 2.0, 'whether': 1.0, 'need': 1.0, 'or': 3.0, 'about': 2.0, 'behind': 2.0, 'facing': 3.0, 'm': 1.0, 'in': 4.0, 'there': 2.0, 'plus': 1.0, 'are': 6.0, 'diapers': 1.0}
Word element => {'makes': 1.0, 'old': 1.0, 'much': 1.0, 'have': 1.0, 'snuggly': 1.0, 'hold': 1.0, 'they': 1.0, 'looking': 1.0, 'gold': 1.0, 'better': 1.0, 'their': 1.0, 'worth': 1.0, 'are': 2.0, 'that': 1.0, 'now': 1.0, 'accordingly': 1.0, 'thinks': 1.0, 'what': 1.0, 'your': 1.0, 'on': 1.0, 'further': 1.0, 'review': 1.0, 'has': 1.0, 'a': 2.0, 'great': 2.0, 'currently': 1.0, 'perfect': 1.0, 'this': 2.0, 'children': 1.0, 'gift': 2.0, 'so': 1.0, 'against': 1.0, '4th': 1.0, 'to': 4.0, 'carriers': 1.0, 'her': 4.0, 'used': 2.0, 'niece': 1.0, 'i': 4.0, 'happy': 2.0, 'details': 1.0, 'my': 2.0, 'weight': 1.0, 'made': 1.0, 'for': 3.0, 'one': 1.0, 'awesome': 1.0, 'baby': 6.0, 'style': 1.0, 'me': 1.0, 'give': 3.0, 'than': 2.0, 'carrier': 2.0, 'it': 3.0, 'she': 4.0, 'the': 8.0, 'hands': 2.0, 'was': 3.0, 'expecting': 1.0, 'store': 1.0, 'backpack': 1.0, 'get': 1.0, 'item': 1.0, 'boba': 1.0, 'will': 3.0, 'use': 2.0, 'and': 4.0, 'similar': 1.0, 'shower': 1.0, 'of': 4.0, 'you': 2.0, 'when': 1.0, 'again': 2.0, 'these': 1.0, 'products': 1.0, 'carrying': 1.0, 'say': 1.0, 'more': 1.0, 'is': 2.0, 'around': 1.0, 'especially': 1.0, 'who': 1.0, 'at': 1.0, 've': 1.0, 'edit': 1.0, 'in': 2.0, 'but': 1.0, 'can': 1.0, 'past': 1.0}
Word element => {'combo': 1.0, 'color': 1.0, 'tone': 1.0, 'two': 1.0, 'have': 1.0, 'plus': 1.0, 'foot': 1.0, 'back': 1.0, 'stable': 1.0, 'big': 1.0, 'very': 3.0, 'better': 1.0, 'keep': 1.0, 'for': 1.0, 'comfortable': 2.0, 'and': 4.0, 'looking': 1.0, 'good': 1.0, 'your': 1.0, 'adjust': 1.0, 'has': 1.0, 'great': 1.0, 'the': 4.0, 'helpful': 1.0, 'are': 2.0, 'glacier': 1.0, 'close': 1.0, 'little': 1.0, 'functional': 1.0, 'a': 3.0, 'price': 1.0, 'helps': 1.0, 'baby': 1.0, 'height': 1.0, 'is': 3.0, 'which': 1.0, 'carrier': 1.0, 'straps': 2.0, 'easy': 1.0, 'this': 1.0, 'it': 4.0, 'stylish': 1.0, 's': 1.0, 'body': 1.0, 'also': 2.0, 'to': 3.0, 'extra': 1.0}
Word element => {'were': 1.0, 'they': 1.0, 'foot': 1.0, 't': 1.0, 'didn': 1.0, 'wearing': 1.0, 'while': 1.0, 'adjusted': 1.0, 'properly': 1.0, 'keys': 1.0, 'things': 1.0, 'little': 2.0, 'liked': 1.0, 'it11': 1.0, 'really': 1.0, 'nicely9': 1.0, 'padded': 1.0, 'cute': 2.0, 'are': 1.0, 'hood': 1.0, 'ergo7': 1.0, 'trys': 1.0, 'other': 2.0, 'adjusting': 1.0, 'curve': 1.0, 'straps': 2.0, 'back5': 1.0, 'colors10': 1.0, 'front': 2.0, 'on': 5.0, 'much': 1.0, 'put': 1.0, 'can': 1.0, '4': 1.0, 'more': 1.0, 'babies': 1.0, 'hips': 1.0, 'adjusts': 1.0, 'between': 1.0, 'than': 3.0, 'adjust': 1.0, 'easier': 1.0, 'favorite': 1.0, 'classic': 1.0, 'but': 3.0, 'not': 3.0, 've': 2.0, 'out': 1.0, 'shopping': 1.0, 'could': 2.0, 'armpits': 1.0, 's': 2.0, 'is': 5.0, 'comes': 2.0, 'around': 1.0, 'if': 3.0, '5': 1.0, 'before': 1.0, 'now': 1.0, 'almost': 1.0, 'reviewed': 1.0, 'hook': 1.0, 'think': 1.0, 'beloved': 1.0, 'for': 3.0, 'love': 1.0, '3': 4.0, 'strong': 1.0, 'larger': 1.0, 'carried': 2.0, 'to': 8.0, 'boba': 2.0, 'similar': 1.0, 'top': 1.0, 'carrier': 3.0, 'jumped': 1.0, 'there': 2.0, 'parks': 1.0, 'back2': 1.0, 'ergo2': 1.0, 'have': 2.0, 'a': 5.0, 'small': 1.0, 'baby': 4.0, 'wore': 1.0, 'olds': 1.0, 'list': 1.0, 'date': 1.0, 'learning': 1.0, 'my': 3.0, 'been': 2.0, 'has': 2.0, 'next': 1.0, 'easily': 1.0, 'that': 3.0, 'three': 1.0, 'own': 1.0, 'tried': 1.0, 'putting': 1.0, 'i': 8.0, 'few': 1.0, 'this': 3.0, 'harnesscon': 1.0, 'wear': 1.0, 'it': 5.0, 'under': 1.0, 'ergo': 3.0, 'month': 1.0, 'comparable': 1.0, 'quickly': 1.0, 'only': 1.0, 'children': 1.0, 'your': 2.0, 'probably': 1.0, 'and': 2.0, 'ergo3': 1.0, 'of': 3.0, 'the': 15.0, 'infants': 1.0, 'toddler': 2.0, 'year': 1.0, 'babywearing': 1.0, 'in': 2.0, 'pain': 1.0, 'exactly': 1.0, 'who': 1.0, '12': 1.0, 'shoulders': 1.0, 'spread': 1.0, 'hours': 1.0, 'days': 1.0, 'feature': 1.0, 'need': 2.0, 'touring': 1.0, '1': 2.0, 'comfortable': 2.0, 'adore': 1.0, 'chicago': 1.0, 'years': 2.0, 'no': 1.0, 'grocery': 1.0, 'waists': 1.0, 'carriers': 2.0, '6': 2.0, 'cleaning': 1.0, 'cooking': 1.0, 'necessary': 1.0, 'walking': 1.0, 'house': 1.0, 'legs': 1.0, 'old': 1.0, 'second': 1.0, 'oldhere': 1.0, 'why': 1.0, 'pros': 1.0, 'very': 1.0, 'like': 3.0, 'loops': 1.0, 'strap': 1.0, 'back': 1.0, 'connects': 1.0, 'behind': 1.0, 'uncomfortable': 1.0, 'great8': 1.0, 'neck': 1.0}
Word element => {'generations': 1.0, 'my': 1.0, 'for': 1.0, 'down': 1.0, 'a': 1.0, 'pass': 1.0, 'comfort': 1.0, 'the': 3.0, 'craftsmanship': 1.0, 'to': 1.0, 'up': 1.0, 'but': 1.0, 'quality': 1.0, 'like': 1.0, 'and': 1.0, 'reviews': 1.0, 'add': 1.0, 'want': 1.0, 'is': 2.0, 'other': 1.0, 'can': 1.0, 'sum': 1.0, 'it': 3.0, 'build': 1.0, 'i': 1.0, 'you': 1.0, 'seem': 1.0, 'sturdy': 1.0, 'that': 2.0, 'something': 1.0}
Word element => {'more': 2.0, 'provide': 1.0, 'straps': 1.0, 'shoulder': 1.0, 'ride': 2.0, 'love': 1.0, 'for': 3.0, 'comfortable': 2.0, 'waist': 1.0, 'hiking': 1.0, 'used': 1.0, 'we': 1.0, '35': 1.0, 'who': 1.0, '3': 1.0, 'older': 1.0, 'using': 1.0, 'even': 1.0, 'freedom': 1.0, 'could': 1.0, 'support': 1.0, 'again': 1.0, 'once': 1.0, 'carrier': 2.0, 'low': 1.0, 'they': 1.0, 'them': 1.0, 'wearing': 1.0, 'out': 1.0, 'does': 1.0, 'maybe': 1.0, 'having': 1.0, 'boba': 2.0, 'than': 1.0, 'contained': 1.0, 'had': 1.0, 'did': 2.0, 'keep': 1.0, 'still': 1.0, 'while': 4.0, 'facing': 2.0, '18': 1.0, 'pounds': 2.0, 'errands': 1.0, 'child': 2.0, '11': 1.0, 'sit': 1.0, 'what': 1.0, 'when': 1.0, 'am': 1.0, 'thought': 1.0, 'it': 9.0, 'so': 3.0, 'around': 2.0, 'enter': 1.0, 'second': 1.0, 'disappointment': 1.0, 'much': 2.0, 'try': 1.0, 'to': 8.0, 'all': 1.0, 'almost': 1.0, 'now': 1.0, 'was': 5.0, 'old': 1.0, 'have': 1.0, 'running': 1.0, 'about': 3.0, 'she': 3.0, 'unfortunately': 1.0, 'baby': 2.0, 'bjorn': 2.0, 'in': 2.0, 'a': 8.0, 'twists': 1.0, 't': 1.0, 'going': 1.0, 'but': 2.0, 'riders': 1.0, 'hard': 1.0, 'work': 1.0, 'didn': 1.0, 'daughter': 5.0, 'got': 1.0, 'time': 1.0, 'heard': 1.0, 'my': 10.0, 'me': 2.0, 'not': 5.0, 'her': 5.0, 'use': 3.0, 'front': 2.0, 'born': 1.0, 'however': 1.0, 'excited': 1.0, 'great': 1.0, 'first': 1.0, 'and': 10.0, 'the': 9.0, 'of': 1.0, 'you': 1.0, 'things': 1.0, 'little': 2.0, 'disappointed': 1.0, 'only': 2.0, 'biggest': 1.0, 'would': 1.0, 'because': 1.0, 'that': 3.0, 'strap': 1.0, 'loves': 1.0, 'very': 2.0, 'cannot': 1.0, 'carry': 2.0, 'on': 7.0, 'your': 3.0, 'forwards': 1.0, 'tried': 1.0, 'own': 1.0, 'see': 2.0, 'i': 9.0, 'putting': 1.0, 'trying': 1.0, 'be': 1.0, 'just': 2.0, 'wish': 1.0, 'squirms': 1.0, 'neck': 1.0, 'months': 1.0, 'get': 2.0, 'definitely': 1.0, 'better': 3.0, 'at': 1.0, 'is': 5.0, 'look': 2.0, 'world': 1.0, 'back': 4.0}
Word element => {'other': 1.0, 'anything': 1.0, 'choice': 1.0, 'definately': 1.0, 'friendly': 1.0, 'high': 1.0, 'but': 1.0, 'pricey': 1.0, 'sticks': 1.0, 'for': 2.0, 'enough': 1.0, 'dad': 1.0, 'like': 1.0, 'wouldn': 1.0, 'control': 1.0, 'head': 1.0, 'small': 2.0, 'that': 1.0, 'into': 1.0, 'kids': 1.0, 'this': 1.0, 'trouble': 1.0, 'had': 1.0, 'with': 4.0, 'bad': 1.0, 'i': 3.0, 'think': 1.0, 'on': 1.0, 'put': 1.0, 'pretty': 2.0, 'theres': 1.0, 'positioned': 1.0, 'boba': 1.0, 'not': 2.0, 'settle': 1.0, 'just': 1.0, 'notoriously': 1.0, 'wife': 2.0, 'good': 1.0, 'her': 1.0, 'fabric': 1.0, 'carriers': 3.0, 'bjorn': 1.0, 'no': 2.0, 'about': 1.0, 'easy': 2.0, 'lot': 4.0, 'use': 1.0, 'every': 1.0, 'really': 3.0, 'more': 1.0, 'is': 2.0, 'support': 1.0, 'some': 2.0, 'my': 2.0, 'tried': 1.0, 'the': 5.0, 'wrap': 2.0, 't': 1.0, 's': 5.0, 'a': 8.0, 'carrier': 1.0, 'out': 2.0, 'quality': 1.0, 'baby': 5.0, 'rated': 1.0, 'moby': 2.0, 'there': 2.0, 'of': 3.0, 'm': 1.0, 'best': 1.0, 'little': 1.0, 'very': 1.0, 'one': 2.0, 'comfortable': 1.0, 'she': 3.0, 'it': 7.0, 'as': 1.0, 'to': 2.0, 'and': 4.0, 'likes': 1.0, 'has': 1.0, 'reasonbly': 1.0, 'because': 1.0, 'does': 1.0, 'flexible': 1.0, 'than': 3.0, 'straps': 1.0, 'nicer': 1.0, 'are': 1.0, 'better': 1.0}
Word element => {'overall': 1.0, 'wiggling': 1.0, 'onto': 1.0, 'hanging': 1.0, 'while': 1.0, 'neck': 1.0, 'behind': 1.0, 'buckled': 1.0, 'some': 1.0, 'does': 2.0, 'right': 1.0, 'isn': 1.0, 'if': 1.0, 'new': 1.0, 'allow': 1.0, 'purchase': 1.0, 'my': 3.0, 'fits': 1.0, 'or': 1.0, 'over': 2.0, 'chose': 1.0, 'able': 1.0, 'due': 1.0, 'outdated': 1.0, 'same': 1.0, 'ergo': 1.0, 'expected': 1.0, 'comfortably': 1.0, 'snugli': 1.0, 'used': 2.0, 'mainly': 1.0, 'tried': 1.0, 'much': 1.0, 'for': 2.0, 'was': 3.0, 't': 1.0, 'belt': 1.0, 'as': 3.0, 'waist': 1.0, 'quite': 1.0, 'carrier': 4.0, 'back': 2.0, 'better': 1.0, 'this': 3.0, 'soft': 1.0, 'with': 1.0, 'it': 7.0, 'very': 2.0, 'up': 2.0, 'pleased': 1.0, 'affordable': 1.0, 'mentioned': 1.0, 'a': 5.0, 'in': 2.0, 'take': 1.0, 'excess': 1.0, 'to': 6.0, 'length': 1.0, 'adjusted': 1.0, 'purchasing': 1.0, 'made': 1.0, 'am': 2.0, 'when': 1.0, 'though': 1.0, 'is': 4.0, 'myself': 1.0, 'product': 1.0, 'price': 3.0, 'both': 1.0, 'others': 2.0, 'baby': 4.0, 'comfortable': 1.0, 'padded': 1.0, 'and': 8.0, 'easy': 1.0, 'get': 2.0, 'out': 2.0, 'well': 1.0, 'i': 10.0, 'feet': 1.0, 'the': 14.0, 'of': 2.0, 'elastic': 1.0, 'front': 1.0, 'practice': 1.0, 'beco': 1.0, 'have': 2.0, 'not': 1.0, 'carry': 1.0, 'more': 1.0, 'husband': 1.0, 'replace': 1.0, 'petite': 1.0, 'yet': 1.0, 'love': 2.0, 'he': 1.0, 'interested': 1.0, '6': 1.0, 'like': 1.0, 'boba': 2.0, 'removable': 1.0, 'so': 1.0, 'can': 1.0, 'great': 2.0, 'foot': 1.0, 'structured': 1.0, 'straps': 1.0, 'than': 1.0, 'way': 1.0, 'ride': 1.0, 'that': 1.0, 'loops': 1.0, 'strap': 2.0, 'be': 1.0, 'wrapped': 1.0, 'even': 2.0, 'buckle': 1.0}
Word element => {'herself': 1.0, 'buy': 1.0, 'if': 1.0, 'retail': 1.0, 'packs': 1.0, 'other': 1.0, 'anything': 1.0, 'apparently': 1.0, 'has': 1.0, 'review': 1.0, 'comfortably': 1.0, 't': 1.0, 'could': 1.0, 'a': 1.0, 'one': 1.0, 'for': 5.0, 'price': 1.0, 'product': 2.0, 'and': 8.0, 'gotten': 1.0, 'show': 1.0, 'carrier': 2.0, 'back': 2.0, 'needed': 1.0, 'is': 2.0, 'around': 1.0, 'say': 1.0, 'our': 2.0, 'to': 4.0, 'any': 1.0, 'sure': 1.0, 'get': 2.0, 'but': 2.0, 'past': 1.0, 'work': 1.0, 'housework': 1.0, 'didn': 1.0, 'previous': 1.0, 'gladly': 1.0, 'unless': 1.0, 'had': 2.0, 'what': 1.0, 'hooked': 1.0, 'was': 2.0, 'before': 1.0, 'use': 2.0, 'outstanding': 1.0, 'her': 4.0, 'used': 1.0, 'not': 2.0, 'she': 7.0, 'month': 1.0, 'up': 2.0, 'happened': 1.0, 'children': 1.0, 'this': 4.0, 'with': 2.0, 'paid': 1.0, 'accident': 1.0, 'simply': 1.0, 'minutes': 1.0, 'another': 1.0, 'daughter': 1.0, 'in': 3.0, 'hiking': 1.0, 'superior': 1.0, '18': 1.0, 'said': 1.0, 'the': 3.0, 'asleep': 1.0, 'out': 1.0, 'about': 2.0, 'activities': 1.0, 'old': 1.0, 'loves': 1.0, 'even': 1.0, 'win': 2.0, 'recently': 1.0, 'he': 2.0, 'sick': 1.0, 'by': 1.0, 'fussy': 1.0, 'done': 2.0, 'house': 1.0, 'enough': 1.0, 'general': 1.0, 'put': 1.0, 'on': 1.0, 'it': 7.0, 'him': 2.0, 'fell': 1.0, 'within': 1.0, 's': 2.0, 'peacefully': 1.0, 'allowing': 1.0, 'they': 1.0, 'sleeping': 1.0, 'being': 1.0, 'very': 1.0, 'cannot': 1.0, 'situation': 1.0, 'd': 2.0, 'have': 1.0}
Word element => {'stick': 1.0, 'parent': 1.0, 'likely': 1.0, 'review': 1.0, 'update': 1.0, 'driving': 1.0, 'push': 1.0, 'since': 1.0, 'actually': 1.0, 'nuts': 1.0, 'realized': 1.0, 'idea': 1.0, 'great': 2.0, 'chance': 1.0, 'foot': 1.0, 'thought': 1.0, 'initially': 1.0, 'option': 1.0, 'isn': 1.0, 'use': 2.0, 'insert': 1.0, 'an': 4.0, 'options': 1.0, 'fabric': 1.0, 'super': 1.0, 'written': 1.0, 'already': 1.0, 'what': 1.0, 'obviously': 1.0, 'like': 2.0, 'now': 1.0, 'stage': 1.0, 'hair': 1.0, 'position': 2.0, 'back': 2.0, 'comes': 1.0, 'better': 2.0, 'haven': 1.0, 'pouch': 1.0, 'were': 2.0, 'padded': 3.0, 'on': 1.0, 'long': 1.0, 'van': 1.0, 'maybe': 1.0, 'ask': 1.0, 'so': 6.0, '2': 2.0, 'buy': 1.0, 'having': 1.0, 'making': 2.0, 'cleaning': 1.0, 'daughter': 3.0, 'also': 2.0, 'need': 3.0, 'up': 1.0, '29': 1.0, 'beach': 2.0, 'directions': 1.0, 'carry': 4.0, 'home': 1.0, 'infant': 1.0, 'by': 2.0, 'pull': 1.0, 'asap': 1.0, 'would': 1.0, 'tight': 1.0, 'immediately': 2.0, 'somewhere': 1.0, 'excited': 1.0, 'always': 1.0, 'everything': 1.0, 'them': 4.0, 'carriers': 1.0, 'however': 1.0, 'yet': 1.0, 'car': 1.0, 'camel': 1.0, 'forgotten': 1.0, 'with': 9.0, 'ii': 1.0, 'wear': 1.0, 'this': 4.0, 'backup': 1.0, 'butterflybeco': 1.0, 'lining': 1.0, 'boba': 1.0, 'well': 3.0, 'i': 35.0, 'ergo': 3.0, 'else': 1.0, 'month': 1.0, 'another': 1.0, 'me': 4.0, 'aren': 1.0, 'miserable': 1.0, 'size': 1.0, 'right': 2.0, 'to': 15.0, 'pretty': 1.0, 'carnivaland': 1.0, 'tell': 1.0, '1': 2.0, 'why': 2.0, 'very': 7.0, 'build': 2.0, 'seams': 1.0, 'that': 7.0, 'two': 1.0, 'was': 6.0, 'baby': 5.0, 'she': 1.0, 'accessory': 1.0, 'dinner': 1.0, 'while': 2.0, 've': 3.0, 'which': 2.0, 'good': 1.0, 'can': 3.0, 'is': 10.0, 'at': 4.0, 'preface': 1.0, 'say': 1.0, 'easy': 2.0, '22lbs': 1.0, 'must': 1.0, 'comfortable': 2.0, 'see': 1.0, 'off': 1.0, 'black': 1.0, 'we': 1.0, 'then': 1.0, 'might': 3.0, 'or': 3.0, 'popular': 1.0, 'a': 8.0, 'story': 1.0, 'imagine': 2.0, 'carrier': 7.0, 'saying': 1.0, 'the': 26.0, 'it': 14.0, 'own': 1.0, 'be': 1.0, 'my': 13.0, 'are': 1.0, 'reviewers': 1.0, 'her': 3.0, 'similar': 1.0, 'tried': 1.0, 'just': 2.0, 'and': 12.0, '6': 2.0, 'arms': 1.0, 'exhausting': 1.0, 'not': 3.0, 'try': 3.0, 'solid': 1.0, 'love': 1.0, 'ideal': 1.0, 's': 5.0, 'm': 3.0, 'beco': 6.0, 'have': 3.0, 'down': 1.0, 'brown': 1.0, 'base': 1.0, 'looking': 1.0, 'reason': 2.0, 'you': 6.0, 'cumbersome': 1.0, 'keep': 1.0, 'for': 8.0, 'shells': 1.0, 'mine': 1.0, 'child': 2.0, 'hand': 1.0, 'really': 2.0, 'out': 1.0, 'almost': 1.0, 'prove': 1.0, 'of': 2.0, 'even': 1.0, 'old': 2.0, 'as': 4.0, 'carrying': 1.0, 'chest': 1.0, 'sooo': 1.0, 'periods': 1.0, 'necessary': 1.0, 'looked': 1.0, 'extended': 1.0, 'over': 1.0, 'hard': 2.0, 'house': 2.0, 'attempted': 1.0, 'many': 1.0, 'your': 2.0, 'compounded': 1.0, 'put': 1.0, 'pulling': 1.0, 'walking': 2.0, 'either': 1.0, 'do': 3.0, 'floor': 1.0, 'short': 1.0, 'plain': 1.0, 'infact': 1.0, 'had': 4.0, '2yr': 1.0, 'adjust': 1.0, 'around': 3.0, 'least': 1.0, 'could': 2.0, 'once': 3.0, 'inside': 1.0, 'simply': 1.0, 'unstable': 1.0, 'reach': 1.0, 'myself': 1.0, 'one': 4.0, '5': 1.0, 'straps': 4.0, '7': 1.0, 'colors': 1.0, 'large': 2.0, 'babies': 1.0, 'they': 1.0, 'issue': 2.0, 'when': 3.0, 'honestly': 1.0, 'sure': 1.0, 'tightened': 1.0, 'thickly': 1.0, 't': 6.0, 'correctly': 1.0, 'butterfly': 1.0, 'beloved': 2.0, 'positioned': 1.0, 'content': 1.0, 'but': 2.0, 'didn': 1.0, 'arm': 1.0, 'movement': 1.0, 'noticed': 1.0, 'wanted': 1.0, 'constructed': 1.0, 'couldn': 2.0, 'collecting': 1.0, 'll': 3.0, 'heck': 1.0, 'vacuuming': 1.0, 'in': 7.0, 'main': 2.0, 'hopeful': 1.0, 'works': 1.0}
Word element => {'skin': 1.0, 'still': 1.0, 'things': 1.0, 'of': 1.0, 'even': 1.0, 'down': 1.0, 'long': 1.0, 'distributes': 1.0, 'hurt': 1.0, 'for': 2.0, 'comfortable': 2.0, 'remove': 1.0, 'it': 5.0, 'with': 1.0, 'wearing': 1.0, 'after': 1.0, 'against': 1.0, 'evenly': 1.0, 'time': 2.0, 'free': 1.0, 'is': 4.0, 'weight': 1.0, 'and': 3.0, 'me': 1.0, 'my': 2.0, 'doesn': 1.0, 's': 1.0, 't': 1.0, 'a': 2.0, 'back': 1.0, 'carrier': 1.0, 'entire': 1.0, 'extremely': 1.0, 'child': 1.0, 'soft': 1.0, 'this': 1.0, 'allows': 1.0, 'to': 3.0, 'baby': 1.0, 'wipe': 1.0, 'have': 1.0, 'fabric': 1.0, 'the': 4.0, 'hands': 1.0, 'easy': 1.0, 'also': 1.0, 'care': 1.0, 'enough': 2.0, 'that': 1.0, 'resilient': 1.0, 'i': 1.0, 'cloth': 1.0, 'but': 1.0, 'most': 1.0, 'can': 1.0, 'just': 1.0, 'wet': 1.0}
Word element => {'one': 1.0, 'quality': 1.0, 'good': 2.0, 'pretty': 1.0, 'wife': 1.0, 'overall': 1.0, 'carry': 1.0, 'want': 1.0, 'would': 1.0, 'at': 1.0, 'who': 1.0, 'old': 1.0, 'yr': 1.0, 'with': 1.0, 'try': 1.0, 'did': 1.0, 'ones': 1.0, '45': 1.0, '15': 1.0, 'wight': 1.0, 'recommended': 1.0, 'for': 1.0, 'not': 3.0, 'in': 1.0, 'long': 1.0, 'untill': 1.0, 'also': 1.0, 'foot': 1.0, 'really': 1.0, 'around': 1.0, 'is': 4.0, 'very': 1.0, 'little': 2.0, 'figure': 1.0, 'may': 1.0, 'my': 2.0, 'fact': 1.0, 'front': 1.0, 'used': 2.0, 'does': 1.0, '3': 1.0, 'on': 3.0, 'your': 1.0, 'they': 1.0, 'held': 1.0, 'or': 1.0, 'pounds': 2.0, 'i': 4.0, 'it': 5.0, 'back': 1.0, 'carrier': 2.0, 'which': 1.0, 'like': 2.0, 'and': 4.0, 'the': 5.0, 'babies': 1.0, 'that': 3.0, 'work': 1.0, 'but': 3.0, 'sitting': 1.0, 'can': 2.0, 'fine': 1.0, 'right': 1.0, 'him': 2.0, 'be': 3.0, 'have': 2.0, 'decent': 1.0, 'these': 1.0, 'some': 1.0, 'rest': 1.0, '30': 1.0, 'soft': 1.0, 'this': 3.0, 'kids': 2.0, 'dont': 1.0, 'seem': 1.0, 'as': 3.0, 'all': 1.0, 'to': 2.0, 'now': 1.0, 'problem': 1.0, 'out': 2.0, 'kind': 1.0, 'of': 1.0, 'cheaper': 1.0, 'over': 1.0, 'up': 1.0, 'push': 1.0, 'a': 3.0, 'notice': 1.0}
Word element => {'think': 1.0, 'said': 1.0, 'recommend': 1.0, 'whatever': 1.0, 'can': 1.0, 'approach': 1.0, 'friend': 1.0, 'second': 1.0, 'but': 1.0, 'have': 2.0, 'if': 1.0, 'every': 1.0, 'size': 1.0, 'once': 1.0, 'go': 1.0, 'babies': 1.0, 'individual': 1.0, 'about': 1.0, 'carriers': 1.0, 'serves': 1.0, 'reviews': 1.0, 'all': 1.0, 'fits': 1.0, 'other': 1.0, 'reinforce': 1.0, 'reading': 1.0, 'run': 1.0, 'defeats': 1.0, 'just': 1.0, 'looking': 1.0, 'bag': 1.0, 'store': 1.0, 'grocery': 1.0, 'those': 1.0, 'phone': 1.0, 'cell': 1.0, 'hated': 1.0, 'first': 1.0, 'are': 3.0, 'pants': 1.0, 'access': 1.0, 'ability': 1.0, 'remove': 1.0, 'does': 1.0, 'on': 2.0, 'much': 1.0, 'put': 2.0, 's': 5.0, 'a': 14.0, 'purpose': 1.0, 'from': 1.0, 'post': 1.0, 'my': 4.0, 'often': 1.0, 'myself': 1.0, 'runs': 1.0, 'basically': 1.0, 'place': 3.0, 'brother': 1.0, 'for': 4.0, 'pretty': 1.0, 'to': 7.0, 'waist': 1.0, 'everyone': 2.0, 'laws': 1.0, 't': 3.0, 'belt': 1.0, 'i': 3.0, 'padded': 1.0, 'your': 3.0, 'any': 1.0, 'feel': 1.0, 'two': 1.0, 'nice': 2.0, 'comfortable': 1.0, 'been': 1.0, 'wife': 1.0, 'everything': 1.0, 'canvas': 1.0, 'the': 13.0, 'of': 2.0, 'adjusted': 1.0, 'also': 1.0, 'could': 2.0, 'will': 2.0, 'loves': 1.0, 'loops': 1.0, 'stomach': 1.0, 'office': 1.0, 'easy': 1.0, 'solution': 1.0, 'them': 1.0, 'has': 2.0, 'straddle': 1.0, 'most': 1.0, 'back': 1.0, 'carrier': 6.0, 'baby': 3.0, 'straps': 1.0, 'one': 1.0, 'held': 2.0, 'or': 6.0, 'by': 2.0, 'adjustable': 1.0, 'highly': 1.0, 'bottle': 1.0, 'few': 1.0, 'this': 6.0, 'trip': 1.0, 'and': 8.0, 'child': 4.0, 'isn': 2.0, 'shoulder': 1.0, 'don': 1.0, 'at': 1.0, 'is': 6.0, 'around': 1.0, 'borrow': 1.0, 'because': 1.0, 'that': 10.0, 'fall': 1.0, 'in': 9.0, 'as': 2.0, 'diaper': 2.0, 'heavy': 1.0, 'weave': 1.0, 'be': 1.0, 'water': 1.0, 'less': 1.0, 'way': 1.0, 'than': 1.0, 'carrying': 1.0, 'kid': 2.0, 'it': 6.0, 'quick': 3.0, 'slip': 1.0, 'out': 1.0, 'sign': 1.0, 'fail': 1.0, '2min': 1.0, 'endanger': 1.0, 'cover': 1.0, 'tight': 1.0, 'would': 3.0, 'really': 2.0, 'setup': 1.0, 'there': 3.0, 'head': 2.0, 'keep': 1.0, 'literally': 1.0, 'bobbing': 1.0, 'like': 1.0, 'minimum': 1.0, 'when': 3.0, 'you': 4.0, 'they': 1.0, 'wearing': 1.0, 'thing': 1.0, 'duty': 1.0, 'happens': 1.0, 'asleep': 1.0, 'which': 1.0, 'good': 2.0, 'pockets': 2.0}
Word element => {'room': 1.0, 'how': 1.0, 'comment': 1.0, 'adjustment': 1.0, 'wearing': 1.0, 'typically': 1.0, 'over': 1.0, 'adjusted': 1.0, '25': 1.0, 'know': 1.0, 'parent': 2.0, 'smallest': 2.0, 'note': 1.0, 'would': 2.0, 'doubt': 1.0, 'much': 1.0, 'be': 1.0, 'intimidating': 1.0, 'getting': 1.0, '11': 1.0, 'wouldn': 1.0, 'directions': 1.0, 'going': 1.0, 'downside': 1.0, 'main': 1.0, 'front': 1.0, 'waist': 2.0, 'inability': 1.0, 'carried': 1.0, 'being': 1.0, 'about': 1.0, 'tells': 1.0, 'carseat': 1.0, 'often': 1.0, 'fallen': 1.0, 'find': 1.0, 'somewhere': 1.0, 'times': 1.0, 'for': 4.0, 'into': 1.0, 'trips': 1.0, 'short': 2.0, 'don': 2.0, 'seem': 1.0, 'hands': 1.0, 'have': 4.0, 'arrive': 1.0, 'get': 1.0, 'except': 1.0, 'up': 1.0, 'carrying': 1.0, 'in': 3.0, 'm': 3.0, 'like': 2.0, 'from': 1.0, 'feels': 1.0, 'but': 3.0, 'perhaps': 1.0, 'sleep': 1.0, 'back': 3.0, 'on': 8.0, 'tired': 1.0, 'constructed': 1.0, 'high': 1.0, 'against': 1.0, 'to': 13.0, 'as': 5.0, 'want': 1.0, 'still': 1.0, 'if': 4.0, 'hikes': 1.0, 'is': 4.0, 'd': 2.0, 'different': 1.0, 'honestly': 1.0, '15': 1.0, 'a': 12.0, 'fit': 2.0, 'fairly': 1.0, 't': 7.0, 's': 7.0, 'all': 1.0, 'fits': 2.0, 'me': 2.0, 'my': 11.0, 'eventually': 1.0, 'anything': 1.0, 'asleep': 1.0, 'good': 2.0, 'which': 2.0, 'carrier': 3.0, 'say': 2.0, 'comfortable': 3.0, 'lot': 1.0, 'try': 1.0, 'one': 5.0, 'settings': 1.0, 'more': 1.0, 'babies': 1.0, 'you': 4.0, '4': 1.0, 'stores': 1.0, 'seen': 2.0, 'what': 2.0, 'when': 2.0, 'line': 1.0, 'pull': 1.0, 'this': 4.0, 'him': 4.0, 'wear': 3.0, 'it': 10.0, 've': 3.0, 'enough': 1.0, 'boba': 3.0, 'means': 1.0, 'will': 1.0, 'use': 1.0, 'smaller': 1.0, 'well': 2.0, 'i': 21.0, 'positions': 1.0, 'no': 2.0, 'arms': 1.0, 'and': 9.0, 'there': 2.0, 'lb': 1.0, 'longer': 1.0, 'the': 10.0, 'of': 4.0, 'blackwith': 1.0, 'needs': 1.0, 'pick': 1.0, 'using': 1.0, 'reason': 1.0, 'carriers': 1.0, 'chest': 2.0, 'mine': 1.0, 'city': 1.0, 'haven': 3.0, 'wants': 1.0, 'transfer': 1.0, 'carts': 1.0, 'toddlers': 1.0, 'mostly': 1.0, 'rn': 1.0, 'need': 3.0, 'or': 1.0, 'toddler': 1.0, 'thebabybj': 1.0, 'facing': 2.0, 'son': 2.0, 'probably': 2.0, 'feel': 1.0, 'sizes': 1.0, 'your': 1.0, 'fine': 1.0, 'we': 1.0, 'then': 1.0, 'own': 1.0, 'seems': 3.0, 'tried': 2.0, 'see': 4.0, 'forward': 1.0, 'not': 1.0, 'recommend': 1.0, 'clothes': 1.0, 'lbs': 1.0, 'was': 1.0, 'really': 2.0, 'out': 1.0, 'enjoyed': 1.0, 'that': 4.0, '20': 1.0, 'unlike': 1.0, 'big': 2.0, 'ouml': 1.0, 'some': 1.0, 'baby': 2.0, 'others': 1.0, '26': 1.0, 'bunch': 1.0, 'used': 2.0, 'original': 1.0, 'bottom': 1.0, 'he': 6.0, 'so': 1.0, 'can': 3.0, 'even': 1.0, 'problem': 1.0, 'touch': 1.0, 'though': 1.0, 'helpful': 1.0, 'heavier': 1.0, 'now': 1.0, 'little': 3.0}
Word element => {'found': 1.0, 'so': 1.0, 'room': 1.0, 'has': 1.0, 'body': 1.0, 'on': 1.0, 'good': 1.0, 'feels': 1.0, 'this': 1.0, 'it': 1.0, 'close': 1.0, 'me': 1.0, 'and': 2.0, 'very': 1.0, 'happy': 1.0, 'my': 2.0, 'the': 2.0, 'would': 1.0, 'secure': 1.0, 'toddler': 1.0, 'work': 1.0, 'to': 2.0, 'was': 1.0, 'some': 1.0, 'at': 1.0, 'carrier': 2.0, 'that': 2.0, 'a': 1.0, 'for': 3.0, 'looking': 1.0, 'i': 3.0, 'she': 3.0, '35': 1.0, 'baby': 1.0, 'is': 2.0, 'm': 1.0, 'too': 1.0, 'carriers': 1.0, 'grow': 1.0, 'boba': 1.0, 'even': 1.0, 'long': 1.0, 'works': 1.0, 'wonderfully': 1.0}
Word element => {'recommend': 1.0, 'definitely': 1.0, 'there': 1.0, 'comfortable': 1.0, 'in': 2.0, 'everywhere': 1.0, 'load': 1.0, 'her': 3.0, 'carry': 1.0, 'some': 1.0, 'elena': 1.0, 'i': 5.0, 'new': 1.0, 'is': 2.0, 'around': 1.0, 'here': 1.0, 'received': 1.0, 'with': 1.0, 'loader': 1.0, 'looks': 1.0, 'she': 4.0, 'it': 2.0, 'me': 3.0, 'and': 5.0, 'easy': 1.0, 'get': 1.0, 'done': 1.0, 'just': 2.0, 'the': 1.0, 'without': 1.0, 'right': 1.0, 'gift': 1.0, 'very': 2.0, 'requires': 1.0, 'my': 2.0, 'as': 1.0, 'to': 3.0, 'love': 2.0, 'vacuum': 1.0, 'front': 1.0, 'content': 1.0, 'boba': 3.0, 'being': 1.0, 'this': 1.0, 'allows': 1.0, 'have': 1.0, 'now': 1.0, 'free': 1.0, 'hand': 1.0, 'so': 1.0, 'can': 2.0, 'work': 1.0, 't': 1.0, 'a': 3.0, 's': 2.0}
Word element => {'use': 1.0, 'pretty': 1.0, 'seems': 1.0, 'build': 1.0, 'lighter': 1.0, 'much': 1.0, 'too': 2.0, 'to': 1.0, 'was': 1.0, 'just': 1.0, 'description': 1.0, 'my': 1.0, 'for': 3.0, 'pound': 2.0, '15': 1.0, 'easy': 1.0, '30ish': 1.0, '45': 1.0, 'great': 1.0, 'the': 3.0, 't': 1.0, 'carrier': 1.0, 'isn': 1.0, 'like': 1.0, 'says': 1.0, 'children': 2.0, 'this': 1.0, 'it': 1.0, 'stylish': 1.0, 's': 1.0, 'and': 2.0, 'probably': 1.0, 'fine': 1.0, 'very': 1.0, 'son': 1.0, 'range': 1.0, 'quality': 1.0, 'but': 1.0, '35': 1.0}
Word element => {'past': 1.0, 'like': 1.0, 'not': 1.0, 'fight': 1.0, 'with': 1.0, 'youngest': 1.0, 'happy': 1.0, 'super': 1.0, 'are': 1.0, 'some': 1.0, 'has': 1.0, 'experience': 1.0, 'in': 1.0, 'carrier': 1.0, 'back': 1.0, 'did': 1.0, 'them': 1.0, 'of': 2.0, 'have': 3.0, 'far': 1.0, 'by': 1.0, 'the': 4.0, 'is': 1.0, 'more': 1.0, 'kids': 1.0, 'this': 1.0, 'research': 1.0, 'it': 4.0, 'years': 1.0, 'best': 1.0, 'very': 1.0, 'decided': 1.0, 'tried': 3.0, 'i': 5.0, '4': 1.0, 'over': 1.0, 'too': 1.0, 'and': 8.0, 'does': 1.0, 'than': 2.0, 'different': 1.0, 'carriers': 2.0, 'we': 2.0, 'a': 2.0, 'lot': 1.0, 'easy': 1.0, 'before': 1.0, 'slings': 1.0, 'boba': 1.0, 'patterns': 1.0, 'all': 1.0, 'any': 2.0, 'to': 1.0, 'or': 1.0, 'worth': 1.0, 'its': 1.0, 'much': 1.0, 'was': 1.0, 'quicker': 1.0, 'on': 3.0, '3': 1.0, 'put': 1.0, 'adjust': 1.0, 'available': 1.0, 'colors': 1.0, 'sling': 2.0, 'great': 1.0, 'investment': 1.0, 'comfortable': 1.0, 'my': 3.0}
Word element => {'k': 1.0, 'o': 1.0, 'open': 1.0, 'long': 1.0, 'wide': 1.0, 'spreading': 1.0, 'that': 1.0, 'not': 1.0, 'apparently': 1.0, 'held': 1.0, 'baby': 2.0, 'edges': 1.0, 'out': 1.0, 'reason': 1.0, 'straight': 1.0, 'realize': 1.0, 'tiring': 1.0, 'from': 1.0, 'away': 1.0, 'small': 1.0, 'have': 1.0, 'just': 1.0, 'stage': 1.0, 'am': 1.0, 'barely': 1.0, 'when': 1.0, 'above': 1.0, 'be': 3.0, 'assume': 1.0, 'in': 1.0, 'too': 1.0, 'and': 1.0, 'kind': 1.0, 'easy': 2.0, 'strap': 2.0, 'carrier': 2.0, 'this': 2.0, 'she': 2.0, 'it': 7.0, 'lb': 2.0, 'is': 7.0, 'constantly': 1.0, 'put': 2.0, 'on': 2.0, 'weight': 1.0, 'pull': 1.0, 'daughter': 2.0, 'afraid': 1.0, 'for': 5.0, 'hanging': 1.0, 'the': 11.0, 'requirement': 1.0, 'my': 2.0, 'minimum': 1.0, '15': 2.0, 't': 2.0, 'a': 2.0, 'legs': 3.0, 'off': 1.0, '2': 1.0, 'but': 2.0, 'shoulder': 2.0, 'don': 2.0, 'comfortable': 1.0, '1': 1.0, 'feel': 1.0, 'of': 4.0, 'take': 1.0, 'stress': 1.0, 'i': 7.0, 'two': 1.0, 'tried': 1.0, 'things': 1.0, 'bigger': 1.0, 'lot': 1.0, 'at': 2.0, 'carrying': 1.0, 'her': 6.0, 'half': 1.0, 'mouth': 2.0, 'seems': 1.0, 'will': 3.0, 'also': 2.0, 'hour': 1.0, 'like': 1.0, 'right': 1.0, 'if': 1.0, 'licking': 1.0, 'to': 4.0, 'all': 1.0, 'time': 2.0}
Word element => {'providing': 1.0, 'poking': 1.0, 'child': 1.0, 'product': 1.0, 'carrying': 1.0, 'great': 1.0, 'square': 1.0, 'brown': 1.0, 'picture': 1.0, 'from': 1.0, 'not': 3.0, 'case': 1.0, 'glacier': 1.0, 'noting': 1.0, 'worth': 1.0, 'been': 1.0, 'into': 1.0, 'box': 1.0, 'style': 1.0, 'experience': 1.0, 'comfortable': 2.0, 'padded': 1.0, 'feel': 1.0, 'in': 6.0, 'comes': 1.0, 'gray': 2.0, 'once': 1.0, 'but': 2.0, 'past': 1.0, 'am': 1.0, 'than': 2.0, 'find': 1.0, 'up': 2.0, 'and': 8.0, 'get': 1.0, 'squeezing': 1.0, 'easy': 1.0, 'bit': 2.0, 'we': 1.0, 's': 1.0, 'me': 1.0, 'my': 3.0, 'tight': 1.0, 'of': 3.0, 'the': 16.0, 'are': 2.0, 'fairly': 1.0, 'that': 3.0, '20': 1.0, 'a': 5.0, 'unnecessary': 1.0, 'carrier': 2.0, 'back': 2.0, 'top': 1.0, 'also': 1.0, 'harder': 1.0, 'previously': 1.0, 'enjoyed': 1.0, 'understand': 1.0, 'toe': 1.0, 'chest': 1.0, 'carriers': 3.0, 'good': 1.0, 'trying': 1.0, 'be': 1.0, 'i': 7.0, 'lb': 1.0, 'baby': 5.0, 'both': 1.0, 'used': 3.0, 'were': 2.0, 'have': 3.0, 'is': 2.0, 'snug': 1.0, 'other': 2.0, 'all': 5.0, 'to': 7.0, 'with': 3.0, 'it': 4.0, 'felt': 1.0, 'remove': 1.0, 'had': 1.0, 'was': 4.0, 'fabric': 2.0, 'for': 2.0, 'make': 1.0, 'on': 3.0, 'think': 1.0, 'dangerously': 1.0, 'boba': 2.0, 'enough': 1.0, 'lean': 1.0, 'much': 1.0, 'easier': 2.0, 'asian': 1.0, 'supportive': 1.0, 'able': 1.0, 'things': 1.0, 'approximately': 1.0, 'some': 2.0, 'support': 1.0, 'straps': 1.0, 'very': 2.0, 'additional': 1.0, 'secure': 1.0, 'directions': 1.0, 'strap': 1.0, 'provided': 1.0, 'adult': 1.0, 'wish': 1.0, 'listings': 1.0, 'clear': 2.0, 'loop': 1.0, 'sturdy': 2.0, 'they': 1.0, 'hard': 1.0, 'provides': 1.0, 'additionally': 1.0}
Word element => {'5': 1.0, 'earned': 1.0, 'excited': 1.0, 'gets': 1.0, 'around': 1.0, 'does': 1.0, 'has': 1.0, 'them': 1.0, 'willing': 1.0, 'handy': 1.0, 'silly': 1.0, 'stirrups': 1.0, 'hours': 1.0, 'son': 1.0, 'now': 1.0, 'thrash': 1.0, 'padding': 1.0, 'also': 1.0, 'received': 1.0, 'broken': 1.0, 'hood': 1.0, 'construction': 1.0, 'one': 2.0, 'great': 3.0, 'those': 1.0, 'tightness': 1.0, 'right': 1.0, 'hard': 1.0, 'petite': 1.0, 'cushiony': 1.0, 'new': 1.0, 'time': 1.0, 'wide': 1.0, 'can': 1.0, 'so': 2.0, 'during': 1.0, 'within': 1.0, 'though': 1.0, 'will': 1.0, 'continued': 1.0, 'listen': 1.0, 'sure': 1.0, 'leave': 1.0, 'body': 3.0, 'as': 2.0, 'come': 1.0, 'where': 1.0, 'spotter': 1.0, 'out': 1.0, 'carry': 2.0, 'alone': 1.0, 'nervous': 1.0, 'service': 1.0, 'still': 2.0, 'sense': 1.0, 'spoiled': 1.0, 'not': 2.0, 'really': 1.0, 'used': 2.0, 'avid': 1.0, 'when': 5.0, 'am': 4.0, 'kid': 1.0, 'each': 1.0, 'would': 2.0, 'having': 1.0, 'than': 1.0, 'much': 1.0, 'do': 1.0, 'put': 1.0, 'stood': 1.0, 'your': 2.0, 'bought': 2.0, 'a': 11.0, 'use': 2.0, 'butterfly': 1.0, 'large': 1.0, 'just': 4.0, 'second': 2.0, 'at': 1.0, 'is': 10.0, 'more': 1.0, 'amazing': 1.0, 'enough': 2.0, 'boba': 2.0, 'hour': 1.0, 'recommend': 1.0, 'tighten': 1.0, 'planning': 1.0, 'were': 1.0, 'for': 4.0, 'have': 2.0, 'beco': 4.0, 'in': 4.0, 'doorstep': 1.0, 'but': 2.0, 'aside': 1.0, 'affair': 1.0, 'love': 1.0, 'he': 3.0, 'stars': 1.0, 'wanted': 1.0, 'wearer': 1.0, 'baby': 3.0, 'was': 9.0, 'pro': 2.0, 'another': 1.0, 'sans': 1.0, 'never': 1.0, 'born': 1.0, 'got': 2.0, 'we': 1.0, 'then': 2.0, 'be': 1.0, 'i': 22.0, 'putting': 2.0, 'days': 1.0, 'soft': 1.0, 'pain': 1.0, 'few': 1.0, 'this': 1.0, 'very': 1.0, 'cannot': 1.0, 'being': 1.0, 'carrier': 8.0, 'back': 4.0, 'wear': 1.0, 'thought': 1.0, 'it': 12.0, 'starting': 1.0, 'ii': 1.0, 'with': 6.0, 'customer': 1.0, 'adjusting': 2.0, '13': 1.0, 'old': 1.0, 'getting': 2.0, 'big': 1.0, 'thirty': 2.0, 'long': 1.0, 'on': 5.0, 'near': 1.0, 'pound': 1.0, 'while': 1.0, 'removed': 1.0, 'inches': 1.0, 'two': 4.0, 'little': 2.0, 'to': 10.0, 'an': 3.0, 'all': 3.0, 'get': 4.0, 'looking': 1.0, 'using': 1.0, 'like': 2.0, 'of': 2.0, 'the': 19.0, 'longer': 1.0, 'half': 1.0, 'who': 1.0, 'pressure': 1.0, 'feeling': 1.0, 'wearing': 1.0, 'there': 1.0, 'first': 3.0, 'are': 2.0, 'leverage': 1.0, 'things': 2.0, 'because': 3.0, 'that': 7.0, 'difficult': 2.0, 'ergo': 1.0, 'month': 1.0, 'under': 1.0, 'my': 8.0, 'me': 1.0, 'structured': 1.0, 'straps': 2.0, 'anyone': 1.0, 'and': 11.0, 'arms': 1.0}
Word element => {'be': 1.0, 'strain': 1.0, 'would': 1.0, 'year': 1.0, 'serious': 1.0, '45': 1.0, 'carry': 1.0, 'old': 2.0, 'four': 2.0, 'from': 1.0, 'kids': 1.0, 'accommodates': 1.0, 'worked': 1.0, 'frame': 1.0, 'almost': 1.0, 'max': 1.0, 'their': 1.0, 'no': 1.0, 'years': 1.0, 'extended': 1.0, 'were': 1.0, 'did': 1.0, 'six': 1.0, 'five': 1.0, 'to': 4.0, 'designed': 1.0, 'size': 1.0, 'company': 1.0, 'only': 1.0, 'comes': 1.0, 'around': 1.0, 'not': 1.0, 'but': 2.0, 'most': 1.0, 'back': 3.0, 'didn': 1.0, 'got': 1.0, 'wanted': 1.0, 'balancing': 1.0, 'support': 1.0, 'consider': 1.0, 'well': 1.0, 'feet': 2.0, 'i': 7.0, 'short': 1.0, 'silly': 1.0, 'etc': 1.0, 'lots': 1.0, 'wearing': 1.0, 'wife': 1.0, 'everything': 1.0, 'after': 1.0, 'backpacks': 1.0, 'there': 1.0, 'up': 1.0, 'shoulder': 1.0, 'don': 1.0, 'expert': 1.0, 'few': 1.0, 'tightening': 1.0, 'hands': 1.0, 'myself': 1.0, 'hoofing': 1.0, 'reaching': 1.0, 'boba': 5.0, 'm': 1.0, 'in': 4.0, 'brown': 1.0, 'however': 1.0, 'bit': 1.0, 'tall': 1.0, 'time': 1.0, 'feminine': 1.0, 'at': 1.0, 'is': 5.0, 'pound': 1.0, 'on': 3.0, 'fashion': 1.0, 'some': 1.0, 'tedious': 1.0, 'and': 9.0, 'one': 2.0, 'too': 2.0, 'getting': 1.0, 'with': 2.0, 'they': 1.0, 'pink': 2.0, 'are': 3.0, 'first': 1.0, 'it': 5.0, 'finally': 1.0, 'kid': 5.0, 'strength': 1.0, 'so': 1.0, 'can': 1.0, 'past': 1.0, 'way': 1.0, 'says': 2.0, 'straps': 2.0, 'things': 1.0, 'you': 3.0, 'when': 1.0, 'twins': 1.0, 'nice': 1.0, 'use': 1.0, 'fit': 1.0, 't': 3.0, 'small': 1.0, 'situated': 1.0, 'a': 10.0, 'see': 1.0, 're': 1.0, 'where': 1.0, 'for': 2.0, 'we': 1.0, 'fine': 1.0, 'have': 3.0, 'used': 1.0, 'all': 1.0, 'our': 1.0, 'extra': 1.0, 'looking': 1.0, 'the': 13.0, 'of': 2.0, 'slightly': 1.0, 'soft': 1.0, 'carrier': 3.0, 'sling': 1.0, '6': 1.0, 'carriers': 1.0, 'tries': 1.0, 'them': 1.0, 'has': 1.0, 'may': 1.0, 'my': 3.0, 'me': 2.0, 'type': 1.0, 'stripes': 1.0, 'made': 1.0, 'side': 1.0, 'good': 1.0, 'which': 1.0, 'dad': 1.0, 'that': 1.0, 'deep': 1.0, 'feel': 2.0, 'mom': 1.0, 'color': 1.0, 'gender': 1.0, 'between': 1.0, 'neutral': 1.0, 'low': 1.0, 'parents': 1.0, 'profile': 1.0, 'need': 1.0, 'or': 1.0}
Word element => {'height': 1.0, 'extra': 1.0, 'needs': 1.0, 'tall': 1.0, 'having': 1.0, 'unless': 1.0, 'over': 1.0, 'recommend': 1.0, 'however': 1.0, 'secure': 1.0, 'seems': 1.0, 'month': 1.0, 'very': 1.0, '16': 1.0, 'been': 1.0, 've': 1.0, 'designation': 1.0, 'understand': 1.0, 're': 1.0, 'time': 1.0, 'reach': 1.0, 'most': 1.0, '15': 2.0, 'toddlers': 1.0, 'say': 1.0, 'website': 1.0, 'much': 1.0, 'zippered': 1.0, 'course': 1.0, 'her': 1.0, 'little': 2.0, 'two': 2.0, 'back': 1.0, 'that': 4.0, 'because': 1.0, 'use': 4.0, 'carrier': 6.0, 'they': 3.0, 'pink': 1.0, 'for': 9.0, 'such': 1.0, 'meant': 2.0, 'you': 8.0, 'things': 1.0, 'these': 1.0, 'glance': 1.0, 'foot': 2.0, 'option': 2.0, 'if': 5.0, 'great': 1.0, 'pocket': 1.0, 'bursts': 1.0, 'straps': 2.0, 'structured': 1.0, 'way': 1.0, 'listed': 1.0, 'matter': 1.0, 'would': 2.0, 'comfortable': 1.0, 'bulky': 1.0, 'detachable': 3.0, 'pacifier': 1.0, 'available': 2.0, 'difference': 1.0, 'no': 1.0, 'so': 4.0, 'daughter': 1.0, 'sure': 2.0, 'in': 6.0, 'toddler': 4.0, 'obviously': 1.0, 'older': 2.0, 'have': 5.0, 'when': 1.0, 'he': 1.0, 'taller': 1.0, 'here': 1.0, 'at': 2.0, 'look': 1.0, 'ring': 2.0, 'helpful': 1.0, 'plain': 2.0, 'the': 43.0, 'makes': 1.0, 'point': 1.0, 'of': 5.0, 'old': 3.0, 'noticed': 1.0, 'lacks': 2.0, 'embroidered': 1.0, 'width': 1.0, 'using': 1.0, 'with': 2.0, 'allows': 1.0, 'first': 1.0, 'has': 7.0, 'this': 11.0, 'babies': 1.0, 'soft': 1.0, 'choose': 1.0, 'alike': 1.0, 'll': 1.0, 'them': 1.0, 'star': 1.0, 'bother': 1.0, 'classic': 1.0, 'baby': 4.0, 'are': 6.0, 'my': 5.0, 'another': 1.0, 'opinion': 1.0, 'not': 5.0, 'different': 1.0, 'carriers': 2.0, 'areas': 1.0, 'an': 4.0, 'optional': 1.0, 'also': 1.0, 'key': 1.0, 'boba': 14.0, '2': 2.0, 'wearing': 1.0, 'few': 1.0, 'organic': 1.0, 'lb': 1.0, '3': 2.0, 'identical': 1.0, 'almost': 1.0, 'figure': 1.0, 'features': 1.0, 'padding': 1.0, 'to': 7.0, 'months': 2.0, '5': 3.0, 'one': 1.0, 'held': 1.0, 'strap': 3.0, 'decide': 1.0, 'position': 2.0, 'i': 12.0, 'putting': 1.0, 'etc': 1.0, 'a': 13.0, 'small': 1.0, 'and': 9.0, 'just': 1.0, 'as': 3.0, 'approximately': 1.0, 'what': 1.0, 'front': 3.0, 'elastic': 1.0, 'on': 6.0, 'items': 1.0, 'wallet': 1.0, 'or': 2.0, 'feature': 4.0, 'couple': 1.0, 'above': 1.0, 't': 3.0, '1': 2.0, 'attach': 2.0, 'pouch': 2.0, 'it': 11.0, 'be': 1.0, 'own': 1.0, 'sold': 2.0, 'than': 1.0, 'bit': 1.0, 'set': 1.0, 'separately': 2.0, 'real': 1.0, 'easily': 1.0, 'hood': 2.0, 'belt': 1.0, 'flowers': 1.0, 'around': 1.0, 'rolls': 1.0, 'up': 5.0, 'carefully': 1.0, 'place': 1.0, 'ergo': 12.0, 'bunches': 1.0, 'rings': 1.0, 'completely': 1.0, 'either': 1.0, 'do': 2.0, 'gets': 1.0, 'prefers': 1.0, 'body': 1.0, 'rolled': 1.0, 'diapers': 1.0, 'but': 1.0, 'personal': 1.0, 'stuffed': 1.0, 'into': 1.0, 'don': 2.0, 'shoulder': 1.0, 'who': 1.0, 'from': 1.0, 'regard': 1.0, 'prefer': 1.0, 'd': 2.0, 'reason': 2.0, 'm': 2.0, 's': 2.0, 'doesn': 1.0, 'various': 1.0, 'insert': 2.0, 'again': 1.0, 'which': 1.0, '8': 1.0, 'lbs': 3.0, 'knowledge': 1.0, 'looking': 2.0, 'does': 2.0, 'perhaps': 2.0, 'similar': 1.0, 'hip': 2.0, 'carry': 2.0, 'far': 1.0, 'out': 1.0, 'being': 1.0, 'said': 1.0, 'really': 2.0, 'where': 1.0, 'your': 1.0, 'though': 1.0, 'infant': 1.0, 'by': 2.0, 'after': 1.0, 'can': 3.0, 'is': 12.0, 'awhile': 1.0, 'colors': 1.0, 'preference': 1.0, 'husband': 1.0, 'hates': 1.0, 'our': 1.0, 'nice': 2.0, 'big': 1.0}
Word element => {'look': 1.0, 'might': 1.0, 'em': 1.0, 'stretch': 1.0, 'people': 1.0, 'speak': 1.0, 'some': 2.0, 'roll': 1.0, 'adults': 1.0, 'comfortable': 4.0, 'start': 1.0, 'each': 1.0, 'x': 2.0, 'particularly': 1.0, 'heavier': 3.0, 'what': 3.0, 'front': 1.0, 'guess': 1.0, 'out': 2.0, 'review': 1.0, 'want': 4.0, 'forever': 1.0, 'pouch': 5.0, 'lot': 3.0, 'with': 12.0, 'won': 1.0, 'two': 1.0, 'gets': 4.0, 'noted': 1.0, 'types': 1.0, 'or': 8.0, 'relate': 1.0, 'does': 2.0, 'concern': 1.0, 'besides': 2.0, 'life': 1.0, 'range': 1.0, 'carry': 6.0, 'couple': 1.0, 'here': 1.0, 'comfortably': 1.0, 'loops': 1.0, 'pamphlet': 1.0, 'they': 8.0, 'age': 1.0, 'right': 1.0, 'like': 5.0, 'seems': 1.0, 'good': 5.0, 'another': 2.0, 'sections': 1.0, 'which': 6.0, 'cards': 1.0, 'storage': 1.0, 'expect': 1.0, 'mark': 2.0, 'little': 5.0, 'korner': 2.0, 'completely': 1.0, 'less': 2.0, 'detail': 1.0, 'approximately': 1.0, 'weigh': 1.0, 'specifies': 1.0, 'think': 1.0, 'why': 2.0, 'ole': 1.0, 'addition': 1.0, 'ways': 1.0, 'chalk': 1.0, 'holds': 1.0, 'away': 1.0, 'sure': 2.0, 'loved': 1.0, 'when': 1.0, 'heavy': 1.0, 'diaper': 4.0, 'd': 2.0, '15lbs': 2.0, 'if': 13.0, 'w': 1.0, 'literature': 1.0, 'most': 1.0, 'newborn': 4.0, 'say': 3.0, 'honest': 1.0, 'use': 11.0, 'especially': 1.0, 'registry': 1.0, 'being': 4.0, 'you': 22.0, 'choice': 1.0, 'other': 6.0, 'let': 3.0, 'all': 4.0, 'ones': 2.0, 'found': 2.0, 'have': 8.0, 'kozy': 1.0, 'personally': 1.0, 'this': 14.0, 'shown': 1.0, 'toddlers': 4.0, 'structured': 1.0, 'fleece': 1.0, 'is': 23.0, 'be': 15.0, 'it': 28.0, 'sold': 1.0, 'while': 4.0, 'abducted': 1.0, 'would': 4.0, 'kangaroo': 2.0, 'my': 6.0, 'are': 8.0, 'between': 3.0, 'i': 31.0, 'could': 4.0, 'mysteries': 1.0, 'infant': 1.0, 'fun': 1.0, '3': 1.0, 'too': 1.0, 'niche': 1.0, 'try': 2.0, 'even': 1.0, 'old': 1.0, 'woven': 2.0, 'around': 2.0, 'the': 94.0, 'babies': 4.0, 'without': 5.0, 'supportive': 1.0, 'used': 2.0, 'bjorn': 2.0, 'for': 18.0, 'said': 2.0, 'using': 3.0, 'in': 20.0, 'main': 2.0, 'others': 1.0, 'many': 1.0, 'your': 15.0, 'baby': 20.0, 'listed': 2.0, 'sling': 2.0, 'wanted': 1.0, 'carrier': 12.0, 'm': 2.0, 'month': 1.0, 'credit': 1.0, 'matter': 1.0, 'them': 8.0, 'has': 6.0, 'comes': 4.0, 'desert': 1.0, 'see': 2.0, '6': 3.0, 'arms': 1.0, 'carriers': 11.0, 'months': 1.0, 'their': 1.0, 'says': 1.0, 'mei': 3.0, 'useful': 1.0, 'wee': 1.0, 'happy': 1.0, 'wrap': 5.0, 'moby': 1.0, 'only': 5.0, '15lb': 3.0, 'correctly': 1.0, 'long': 3.0, 'stretchy': 4.0, 'll': 2.0, 'its': 1.0, 'how': 1.0, 'one': 9.0, 'got': 1.0, 'human': 1.0, 'that': 17.0, 'very': 1.0, 'but': 7.0, 'owned': 2.0, 'personal': 1.0, 'preferences': 1.0, 'piece': 2.0, 'fanatics': 1.0, 'great': 1.0, 'so': 7.0, 'island': 1.0, '9': 1.0, 'wear': 2.0, 'starting': 2.0, 'tai': 3.0, 'markets': 1.0, 'first': 1.0, 'experiences': 1.0, 'carried': 1.0, 'now': 4.0, 'about': 2.0, 'wearing': 1.0, 'thing': 5.0, 'as': 15.0, 'karrier': 1.0, 'above': 4.0, 'offered': 1.0, 'boba': 18.0, 'well': 1.0, 'kids': 2.0, 'more': 5.0, 'at': 2.0, 'control': 4.0, 'talk': 1.0, 'storchenwiege': 1.0, 'words': 1.0, 'itself': 2.0, 'not': 9.0, 'different': 1.0, 'head': 4.0, 'note': 1.0, 'list': 1.0, 'love': 1.0, 'hit': 1.0, 'discuss': 1.0, 'wouldn': 1.0, 'don': 2.0, 'still': 1.0, 'ergo': 22.0, 'put': 1.0, 'on': 6.0, 'plus': 1.0, 'probably': 2.0, 'beco': 1.0, 'off': 1.0, 'grimy': 1.0, 'any': 1.0, 'pretty': 1.0, 'bit': 2.0, 'up': 6.0, 'froglike': 2.0, 'hassle': 1.0, 'tying': 1.0, 'running': 1.0, 'liked': 1.0, 'outside': 1.0, 'differences': 1.0, 'going': 2.0, '2': 2.0, 'was': 1.0, 'get': 5.0, 'gritty': 1.0, 'wraps': 1.0, 'a': 32.0, 'able': 1.0, 'ground': 2.0, 'creates': 1.0, 'obvious': 1.0, 'know': 1.0, 'problems': 1.0, 'strapped': 1.0, 'wet': 1.0, 'passed': 1.0, 'gave': 1.0, 'and': 31.0, 'those': 1.0, 'significantly': 1.0, 'hike': 1.0, 'already': 1.0, 've': 3.0, 'college': 1.0, 'ended': 2.0, 'make': 2.0, 'she': 1.0, 'liking': 1.0, 'spread': 1.0, 'bag': 3.0, 'over': 3.0, 'sleeping': 1.0, 'upper': 1.0, 'compare': 1.0, 'stitched': 1.0, 'back': 3.0, 'shoulders': 1.0, 'remarkably': 1.0, 'similar': 1.0, 'hardly': 1.0, 'perhaps': 1.0, 'also': 4.0, 'versatility': 1.0, 'high': 1.0, 'shoulder': 3.0, 'ever': 1.0, 'straps': 7.0, 'had': 2.0, 'fact': 1.0, 'weren': 1.0, 'of': 22.0, 'ergookay': 1.0, 'weight': 1.0, 'preferring': 1.0, 'brings': 1.0, 'h': 1.0, 'essentially': 1.0, 'nicely': 1.0, 'comparison': 1.0, 'vs': 1.0, 'basically': 2.0, 'possible': 1.0, 'carries': 1.0, 'waist': 2.0, 'shower': 1.0, 'appear': 2.0, 'dimensions': 1.0, 'by': 1.0, 'older': 2.0, 'padding': 1.0, 'ergos': 1.0, 'will': 5.0, 'nitty': 1.0, 'wanting': 1.0, 'fabric': 3.0, 's': 14.0, 'into': 3.0, 'need': 2.0, 'taller': 1.0, 'he': 1.0, 'hood': 1.0, '5': 1.0, 'infrequently': 1.0, 'expands': 1.0, 're': 4.0, 'honestly': 1.0, 'stuffed': 1.0, 'soft': 1.0, 'pocket': 3.0, 'zipper': 1.0, 'big': 2.0, 'hold': 1.0, 'these': 7.0, 'extra': 3.0, 'wipes': 1.0, 'keys': 1.0, 'child': 2.0, 'money': 1.0, '8': 2.0, 'belt': 3.0, 'few': 1.0, 'noticeable': 1.0, 'do': 1.0, 'something': 1.0, 'called': 1.0, 'velcro': 1.0, 'absent': 1.0, 'useless': 1.0, 'from': 1.0, 'doing': 1.0, 'option': 2.0, 'along': 2.0, 'lines': 1.0, 'been': 3.0, 'accessories': 1.0, 'attachment': 1.0, 'designed': 2.0, 'enough': 1.0, 'attach': 1.0, 'carrying': 4.0, 'special': 1.0, 'difference': 2.0, 'ring': 2.0, 'capacity': 2.0, 'foot': 4.0, 'seem': 1.0, 't': 5.0, 'me': 1.0, 'detachable': 1.0, 'us': 1.0, 'butt': 1.0, 'intervals': 1.0, 'positioned': 1.0, 'flexed': 1.0, 'padded': 2.0, 'position': 2.0, 'leverage': 1.0, 'stand': 1.0, 'beings': 1.0, 'stuff': 1.0, 'millennia': 1.0, 'mentioned': 2.0, 'pick': 1.0, '4': 1.0, 'can': 8.0, 'same': 6.0, 'down': 2.0, 'kid': 1.0, 'function': 1.0, 'conclusionas': 1.0, 'wish': 1.0, 'seen': 1.0, 'an': 3.0, 'years': 1.0, 'prefer': 1.0, 'really': 2.0, 'things': 1.0, 'color': 1.0, 'to': 41.0, 'because': 1.0, 'choices': 2.0, 'colors': 1.0, 'decides': 1.0, 'parent': 1.0, 'fashion': 1.0}
Word element => {'toddler': 1.0, 'into': 1.0, 'older': 1.0, 'of': 1.0, 'parent': 1.0, 'recommend': 1.0, 'the': 3.0, 'her': 1.0, 'outgrown': 1.0, 'great': 1.0, 'comfortable': 1.0, 'one': 1.0, 'carry': 1.0, 'age': 1.0, 'bjorn': 1.0, 'in': 1.0, 'daughter': 2.0, 'is': 4.0, 'highly': 1.0, 'really': 1.0, 'either': 1.0, 'absolutely': 1.0, 'perfect': 1.0, 'this': 3.0, 'have': 1.0, 'has': 1.0, 'likes': 1.0, 'boba': 1.0, 'everyone': 1.0, 'any': 1.0, 'to': 3.0, 'as': 1.0, 'our': 3.0, 'minimizes': 1.0, 'front': 1.0, 'transitioned': 1.0, 'we': 1.0, 'a': 2.0, 'or': 1.0, 'strain': 1.0, 'it': 1.0, 'she': 1.0, 'riding': 1.0, 'high': 1.0, 'your': 1.0, 'on': 2.0, 'carrier': 1.0, 'back': 2.0, 'baby': 2.0, 'quality': 1.0, 'wear': 1.0, 'and': 3.0, 'for': 2.0, 'product': 1.0, 'i': 1.0}
Word element => {'helpful': 1.0, 'review': 1.0, 'weather': 1.0, 'southern': 1.0, 'hot': 1.0, 'very': 1.0, 'as': 2.0, 'our': 5.0, 'to': 1.0, 'but': 1.0, 'past': 1.0, 'can': 1.0, 'made': 1.0, 'style': 1.0, 'tailor': 1.0, 'available': 1.0, 'sling': 2.0, 'called': 1.0, 'smaller': 1.0, 'time': 1.0, 'its': 1.0, 'much': 2.0, 'was': 3.0, 'this': 3.0, 'cotton': 1.0, 'classic': 1.0, 'mesh': 1.0, 'favorite': 2.0, '7': 1.0, 'writing': 1.0, 'overheating': 1.0, 'and': 3.0, '6': 2.0, 'carriers': 2.0, 'different': 1.0, 'wrap': 1.0, 'we': 3.0, 's': 1.0, 'through': 1.0, 'old': 1.0, 'soothes': 1.0, 'longer': 1.0, 'the': 8.0, 'of': 1.0, 'direct': 1.0, 'shower': 1.0, 'no': 1.0, 'have': 2.0, 'one': 2.0, 'months': 1.0, 'for': 4.0, 'he': 2.0, 'love': 1.0, 'also': 1.0, 'month': 1.0, 'on': 4.0, 'over': 1.0, 'pounds': 1.0, 'amazon': 1.0, 'front': 1.0, 'is': 4.0, 'current': 1.0, 'organic': 1.0, '24': 1.0, 'by': 1.0, 'light': 1.0, 'comfortable': 2.0, 'wear': 1.0, 'most': 1.0, 'back': 1.0, 'exposed': 1.0, 'carry': 1.0, 'nap': 1.0, 'mom': 1.0, 'head': 1.0, 'or': 4.0, 'dad': 1.0, 'baby': 3.0, 'in': 3.0, 'well': 1.0, 'happier': 1.0, 'problem': 1.0, 'than': 1.0, 'when': 1.0, 'roll': 1.0, 'out': 1.0, 'hood': 1.0, 'that': 2.0, 'go': 2.0, 'protects': 1.0, 'from': 1.0, 'sun': 1.0, 'design': 1.0, 'boba': 3.0, 'enough': 1.0, 'not': 1.0, 'skin': 1.0, 'gone': 1.0, 'sweating': 1.0, 'there': 1.0, 'allows': 1.0, 'with': 1.0, 'excessive': 1.0}
Word element => {'highly': 1.0, 'would': 1.0, 'i': 1.0, 'item': 1.0, 'this': 3.0, 'car': 1.0, 'adapter': 1.0, 'purpose': 1.0, 'secures': 1.0, 'the': 1.0, 'recommend': 1.0, 'snugly': 1.0, 'seat': 1.0, 'to': 1.0, 'for': 1.0, 'maclaren': 1.0, 'our': 1.0, 'stroller': 1.0}
Word element => {'does': 1.0, 'tilt': 1.0, 'stays': 1.0, 'shake': 1.0, 'out': 1.0, 'baby': 1.0, 'access': 1.0, 'so': 1.0, 'lap': 1.0, 'go': 1.0, 't': 1.0, 'belt': 1.0, 'doesn': 1.0, 'durable': 1.0, 'easily': 1.0, 'you': 1.0, 'tried': 2.0, 'frame': 1.0, 'on': 1.0, 'depends': 1.0, 'also': 1.0, 'will': 1.0, 'right': 1.0, 'like': 2.0, 'works': 1.0, 'still': 1.0, 'lighter': 1.0, 'new': 1.0, 'off': 1.0, 're': 1.0, 'fits': 1.0, 'my': 4.0, 'adaptor': 2.0, 'child': 2.0, 'that': 5.0, 'firm': 1.0, 'can': 1.0, 'but': 1.0, 'umbrella': 1.0, 'use': 1.0, 'travel': 2.0, 'first': 1.0, 'buying': 1.0, 'with': 3.0, 'looks': 1.0, 'it': 6.0, 'the': 7.0, 'stroller': 4.0, 'connect': 1.0, 'in': 2.0, 'slide': 1.0, 'mothercare': 1.0, 'used': 1.0, 'mino': 1.0, 'graco': 1.0, 'classic': 1.0, 'forward': 1.0, 'system': 2.0, 'size': 1.0, 'tough': 1.0, 'and': 5.0, 'infant': 2.0, 'car': 3.0, 'to': 3.0, 'seat': 3.0, 'me': 1.0, 'not': 2.0, 'i': 6.0, 'saved': 1.0, 'love': 1.0, 'for': 1.0, 'second': 1.0, 'around': 1.0, 'plan': 1.0, 'comes': 1.0, 'is': 1.0, 'tought': 1.0, 'this': 3.0, 'full': 1.0, 'worth': 1.0, 'space': 1.0, 'have': 2.0, 'trunks': 1.0, 'has': 1.0, 'of': 1.0}
Word element => {'puts': 1.0, 'what': 1.0, 'considering': 1.0, 'pretty': 1.0, 'way': 1.0, 'he': 1.0, 'durable': 1.0, 'it': 1.0, 'quickly': 1.0, 'are': 1.0, 'my': 1.0, 'little': 1.0, 'that': 2.0, 'pricey': 1.0, 'through': 2.0, 'save': 1.0, 'bulk': 1.0, 'in': 1.0, 'the': 1.0, 'more': 1.0, 'these': 1.0, 'yseem': 1.0, 'they': 1.0, 'a': 1.0, 'made': 1.0, 'them': 3.0, 'to': 2.0, 'buying': 1.0, 'suggest': 1.0, 'alone': 1.0, 'buy': 1.0, 'i': 1.0, 'cash': 1.0, 'and': 1.0, 'chews': 1.0, 'son': 1.0, 'sense': 1.0, 'so': 1.0}
Word element => {'the': 1.0, 'we': 1.0, 'house': 1.0, 'stroller': 1.0, 'perfect': 1.0, 'phil': 1.0, 'our': 1.0, 'teds': 1.0, 'second': 1.0, 'is': 1.0, 'seat': 1.0, 'have': 1.0, 'are': 1.0, 'my': 1.0, 'constantly': 1.0, 'friends': 1.0, 'this': 1.0, 'it': 2.0, 'when': 1.0, 'i': 1.0, 'love': 1.0, 'for': 1.0, 'using': 1.0, 'one': 1.0, 'little': 1.0, 'at': 1.0}
Word element => {'t': 1.0, 'who': 1.0, 'arrived': 1.0, 'phil': 1.0, 'in': 1.0, 'it': 1.0, 'love': 2.0, 'great': 1.0, 's': 1.0, 'second': 1.0, 'shape': 1.0, 'equipment': 1.0, 'ted': 1.0, 'seat': 1.0, 'ready': 1.0, 'be': 1.0, 'to': 1.0, 'installed': 1.0, 'and': 2.0, 'as': 1.0, 'doesn': 1.0, 'a': 1.0}
Word element => {'life': 1.0, 'infant': 1.0, 'my': 1.0, 'comfortable': 1.0, 'hate': 1.0, 'good': 1.0, 'or': 1.0, 'strollers': 1.0, 'suprislingling': 1.0, 'stroller': 3.0, 'an': 1.0, 'this': 3.0, 'having': 1.0, 'grocery': 1.0, 'is': 2.0, 'single': 1.0, 'into': 2.0, 'that': 1.0, '34': 2.0, 'double': 3.0, 'even': 1.0, 'exactly': 1.0, 'to': 4.0, 'i': 2.0, 'needed': 1.0, 'store': 1.0, 'get': 1.0, 'easy': 1.0, 'durable': 1.0, 'compact': 1.0, 'your': 1.0, 'make': 2.0, 'kit': 1.0, 'for': 1.0, 'fit': 1.0, 'what': 1.0, 'operate': 1.0, 'and': 2.0, 'block': 1.0, 'wide': 1.0, 'entire': 1.0, 'cargo': 1.0, 'aisle': 1.0, 'toddler': 1.0, 'sidewalk': 1.0, 'space': 1.0, 'much': 1.0, 'less': 1.0, 'easier': 1.0, 'won': 1.0, 'go': 1.0, 'a': 2.0, 't': 1.0, 'without': 1.0, 'the': 1.0, 'largest': 1.0, 'suv': 1.0}
Word element => {'sturdy': 1.0, 'ago': 1.0, 'worth': 1.0, 'found': 1.0, 'had': 1.0, 'to': 1.0, 'recommend': 1.0, 'easy': 1.0, 'also': 1.0, 'back': 1.0, 'off': 1.0, 'or': 1.0, 'strong': 1.0, 'not': 1.0, 'get': 1.0, 'and': 3.0, 'have': 3.0, 's': 1.0, 'carriers': 1.0, 'so': 1.0, 'best': 1.0, 'really': 1.0, 'many': 1.0, 'is': 3.0, '4': 1.0, 'on': 2.0, 'the': 4.0, 'weight': 1.0, 'puts': 1.0, 'tried': 2.0, 'i': 5.0, 'one': 1.0, 'your': 2.0, 'wish': 1.0, '5': 1.0, 'we': 1.0, 'kids': 2.0, 'by': 1.0, 'highly': 1.0, 'money': 1.0, 'hips': 1.0, 'baby': 1.0, 'far': 1.0, 'shoulders': 1.0, 'this': 2.0, 'it': 4.0, 'of': 1.0}
Word element => {'this': 1.0, 'loved': 1.0, 'baby': 1.0}
Word element => {'comfort': 1.0, 'baby': 1.0, 'both': 1.0, 'i': 1.0, 'carriers': 1.0, 'best': 1.0, 'very': 1.0, 'and': 2.0, 'of': 2.0, 'one': 1.0, 'for': 2.0, 'in': 1.0, 'wear': 1.0, 'mobility': 1.0, 'to': 2.0, 'across': 1.0, 'construction': 1.0, 'whether': 1.0, 'easy': 1.0, 'excellent': 1.0, 'are': 1.0, 'is': 3.0, 'on': 1.0, 'goodthis': 1.0, 'product': 1.0, 'allows': 1.0, 'come': 1.0, 'parent': 2.0, 'this': 1.0, 'worn': 1.0, 'have': 2.0, 'the': 2.0, 'great': 1.0, 'quality': 1.0, 'an': 1.0, 'back': 1.0, 'frontmaterials': 1.0, 'good': 1.0, 'or': 1.0}
Word element => {'read': 1.0, 'able': 1.0, 'being': 1.0, 'forward': 1.0, 'look': 1.0, 'stretch': 1.0, 'their': 2.0, 'space': 1.0, 'plenty': 1.0, 'have': 1.0, 'but': 1.0, 'product': 1.0, 'love': 2.0, 'for': 3.0, 'arms': 1.0, 'absolutely': 1.0, 'of': 2.0, 'up': 2.0, 'with': 2.0, 'only': 1.0, 'great': 3.0, 'the': 1.0, 'babes': 1.0, 'started': 1.0, 'we': 2.0, 'a': 3.0, 'out': 2.0, 'quite': 1.0, 'hips': 1.0, '18': 1.0, 'ergo': 1.0, 'comfortably': 1.0, 'was': 1.0, 'now': 1.0, 'use': 1.0, 'front': 1.0, 'wonderful': 1.0, 'heads': 1.0, 'and': 3.0, 'lbs': 1.0, 'how': 1.0, 'while': 2.0, 'to': 4.0, 'our': 2.0, 'that': 1.0, 'research': 1.0, '9': 1.0, 'it': 2.0, 'backs': 1.0, 'month': 1.0, 'found': 1.0, 'carries': 1.0, 'old': 1.0, 'bit': 1.0, 'so': 1.0, 'inside': 1.0, 'his': 1.0, 'then': 1.0, 'downfall': 1.0, 'is': 1.0, 'which': 1.0, 'cannot': 1.0, 'turn': 1.0, 'bjorn': 1.0, 'in': 1.0, 'face': 1.0}
Word element => {'before': 1.0, 'store': 1.0, 'out': 1.0, 'buy': 1.0, 'probably': 1.0, 'light': 1.0, 'very': 1.0, 'but': 1.0, 'look': 1.0, 'likes': 1.0, 'he': 1.0, 'of': 1.0, 'a': 1.0, 't': 2.0, 'the': 8.0, 'baby': 1.0, 'in': 1.0, 'itself': 1.0, 'bjorn': 1.0, 'padded': 1.0, 'again': 1.0, 'am': 1.0, 'fan': 1.0, 'i': 4.0, 'old': 1.0, 'my': 2.0, 'pull': 1.0, 'facing': 1.0, 'still': 1.0, 'on': 1.0, 'around': 1.0, 'is': 4.0, 'distribution': 1.0, 'try': 1.0, 'much': 1.0, 'at': 2.0, 'since': 1.0, 'petite': 1.0, 'find': 1.0, 'than': 1.0, 'overall': 1.0, 'better': 1.0, 'purchasing': 1.0, 'weight': 1.0, 'however': 1.0, 'shoulders': 1.0, 'with': 1.0, 'have': 2.0, 'and': 2.0, 'straps': 1.0, 'always': 1.0, 'don': 1.0, 'up': 1.0, 'wouldn': 1.0, 'even': 1.0, 'buckle': 1.0, 'attached': 1.0, 'carrier': 1.0, 'back': 1.0, 'for': 1.0, 'as': 1.0, 'to': 3.0, 'all': 1.0, 'pads': 1.0, 'issues': 1.0, 'annoying': 1.0, 'it': 4.0, 'month': 1.0, '16': 1.0, 'me': 1.0, 'stay': 1.0, 'not': 1.0}
Word element => {'thanks': 1.0, 'beyond': 1.0, 'above': 1.0, 'replace': 1.0, 'obligated': 1.0, 'weren': 1.0, 'hassle': 1.0, 'really': 1.0, 'response': 1.0, 'helpful': 1.0, 'nice': 1.0, 'very': 1.0, 'customer': 1.0, 'free': 2.0, 'for': 2.0, 't': 1.0, 'replacement': 1.0, 'sent': 1.0, 'time': 2.0, 'in': 2.0, 'jagged': 1.0, 'son': 1.0, 'when': 1.0, 'months': 1.0, 'on': 2.0, '3': 1.0, 'much': 1.0, 'put': 1.0, 'all': 3.0, 'as': 2.0, 'asleep': 1.0, 'own': 1.0, 'packs': 1.0, 'quick': 1.0, 'week': 1.0, 'they': 3.0, 'cut': 1.0, '15': 1.0, 'toys': 2.0, 'inc': 2.0, 'a': 4.0, 'went': 1.0, '26': 1.0, 'we': 1.0, 'front': 3.0, 'use': 1.0, 'within': 1.0, 'during': 1.0, 'old': 1.0, 'from': 1.0, 'best': 1.0, 'into': 1.0, 'plastic': 1.0, 'this': 1.0, 'me': 2.0, 'my': 5.0, 'super': 2.0, 'ergo': 2.0, 'is': 4.0, 'that': 4.0, 'fall': 1.0, 'will': 1.0, 'around': 1.0, 'europe': 1.0, 'comfortabale': 1.0, 'rep': 1.0, 'weighs': 1.0, 'left': 1.0, 'by': 1.0, 'appreciated': 1.0, 'have': 1.0, 'contacted': 1.0, 'back': 1.0, 'most': 1.0, 'so': 2.0, 'can': 1.0, '2': 2.0, '80': 1.0, 'but': 3.0, 'sling': 1.0, 'comfortable': 1.0, 'he': 1.0, 'far': 1.0, 'love': 1.0, 'strap': 2.0, 'out': 1.0, 'about': 1.0, 'kiddo': 1.0, 'used': 1.0, 'day': 3.0, 'anything': 1.0, 'days': 1.0, 'certainly': 1.0, 'service': 1.0, 'turn': 1.0, 'still': 3.0, 'every': 1.0, 'him': 1.0, 'it': 3.0, '9': 1.0, 'and': 6.0, 'arms': 1.0, 'trip': 2.0, 'brazil': 1.0, 'only': 1.0, 'pack': 1.0, 'complaint': 1.0, 'parts': 1.0, 'pieces': 1.0, 'chest': 1.0, 'i': 7.0, 'well': 1.0, 'broke': 1.0, 'are': 1.0, 'first': 1.0, 'or': 1.0, 'seller': 1.0, 'the': 11.0, 'of': 1.0, 'lbs': 1.0, 'was': 4.0, 'to': 4.0, 'usable': 1.0, 'broken': 1.0, 'some': 1.0, 'edges': 1.0}
Word element => {'to': 2.0, 'although': 1.0, 'still': 1.0, 'get': 1.0, 'floor': 1.0, 'rock': 1.0, 'have': 1.0, 'it': 3.0, 'idea': 1.0, 'nice': 1.0, 'does': 1.0, 'i': 1.0, 'a': 2.0, 'will': 1.0, 'off': 1.0, 'smooth': 1.0, 'use': 1.0, 'not': 1.0, 'just': 1.0, 'wicker': 1.0, 'my': 1.0, 'the': 1.0, 'bassinet': 1.0, 'up': 1.0}
Word element => {'too': 1.0, 'soft': 1.0, 'nice': 1.0, 'mill': 1.0, 'of': 1.0, 'and': 2.0, 'fact': 1.0, 'daughter': 1.0, 'loves': 1.0, 'it': 1.0, 'run': 1.0, 'my': 1.0, 'the': 3.0, '34': 2.0, 'that': 1.0, 'is': 1.0, 'not': 1.0, 'colors': 1.0}
Word element => {'other': 1.0, 'return': 1.0, 'dried': 1.0, 'really': 1.0, 'did': 1.0, 'i': 1.0, 'foam': 1.0, 'shrink': 1.0, 'it': 2.0, 'one': 1.0, 'love': 2.0, 'will': 1.0, 'doesn': 1.0, 'but': 1.0, 'print': 1.0, 'my': 1.0, 'wished': 1.0, 'on': 1.0, 't': 1.0, 'the': 3.0, '2': 1.0, 'fit': 2.0, 'new': 1.0, 'washed': 1.0, 'colgate': 1.0, 'used': 1.0, 'mattress': 1.0, 'flannel': 1.0, 'bought': 1.0, 'and': 2.0}
Word element => {'others': 1.0, 'disappointments': 1.0, 'after': 1.0, 'on': 1.0, 'happy': 1.0, 'me': 1.0, 'for': 1.0, 'tender': 1.0, 'a': 2.0, 'comfort': 1.0, 'extra': 1.0, 'understand': 1.0, 'unsnap': 1.0, 'buckles': 1.0, 'am': 1.0, 'you': 1.0, 'chance': 1.0, 'trying': 1.0, 'that': 1.0, 'safety': 1.0, 'have': 2.0, 'this': 3.0, 'with': 3.0, 'it': 1.0, 'is': 3.0, 'are': 1.0, 'crotch': 1.0, 'the': 8.0, 'like': 1.0, 'very': 3.0, 'feature': 1.0, 'i': 4.0, 'once': 1.0, 'to': 5.0, 'easy': 1.0, 'facing': 2.0, 'narrow': 1.0, 'use': 2.0, 'took': 1.0, 'then': 1.0, 'how': 1.0, 'they': 2.0, 'function': 1.0, 'simple': 1.0, 'press': 2.0, 'in': 3.0, 'many': 1.0, 'buckle': 1.0, 'back': 1.0, 'carrier': 3.0, 'top': 1.0, 'button': 1.0, 'out': 4.0, 'pull': 1.0, 'my': 1.0, 'sides': 1.0, 'baby': 1.0, 'helps': 1.0, 'comfortable': 2.0, 'and': 2.0, 'ability': 1.0, 'section': 1.0}
Word element => {'nicely': 1.0, 'if': 1.0, 'very': 1.0, 'be': 1.0, 'inwards': 1.0, 'fold': 1.0, 'facing': 1.0, 'are': 1.0, 'they': 1.0, 'entire': 1.0, 'their': 1.0, 'turned': 1.0, 'neck': 1.0, 'compact': 1.0, 'mama': 1.0, 'other': 1.0, 'something': 1.0, 'would': 1.0, 'heads': 1.0, 'and': 1.0, 'older': 1.0, 'getting': 1.0, 'easily': 1.0, 'you': 1.0, 'seen': 1.0, 'when': 2.0, 'use': 1.0, 'sure': 1.0, 'tote': 1.0, 'tai': 1.0, 'my': 3.0, 'including': 1.0, 'see': 1.0, 'easiest': 1.0, 'the': 4.0, 'tried': 2.0, 'shopping': 1.0, 'time': 2.0, 'minute': 1.0, 'this': 5.0, 'have': 3.0, 'fit': 1.0, 'for': 3.0, 'is': 4.0, 'many': 1.0, 's': 1.0, 'a': 3.0, 'well': 1.0, 'feature': 1.0, 'i': 8.0, 'etc': 1.0, 'long': 1.0, 'good': 1.0, 'carriers': 2.0, 'her': 1.0, 'also': 1.0, 'slings': 1.0, 'secure': 1.0, 'forward': 1.0, 'mei': 1.0, 'can': 3.0, 'but': 1.0, 'baby': 4.0, 'whenever': 1.0, 'in': 4.0, 'like': 1.0, 'cannot': 1.0, 'carrier': 3.0, 'less': 1.0, 'than': 2.0, 'babies': 1.0, 'been': 1.0, 'loves': 1.0, 'put': 1.0, 'think': 1.0, 'to': 2.0, 'sleep': 1.0, 'as': 1.0, 'always': 1.0, 'it': 2.0, 'she': 1.0, 'not': 1.0}
Word element => {'easier': 1.0, 'definitely': 1.0, 'love': 1.0, 'using': 1.0, 'chores': 1.0, 'safe': 1.0, 'feel': 1.0, 'getting': 1.0, 'dropping': 1.0, 'risked': 1.0, 'now': 1.0, 'used': 1.0, 'secure': 1.0, '11': 1.0, 'months': 1.0, '3': 1.0, 'thumb': 1.0, 'safety': 1.0, 'hold': 1.0, 'reverse': 1.0, 'follow': 1.0, 'arm': 1.0, 'supporting': 1.0, 'never': 1.0, 'shoulders': 1.0, 'position': 1.0, 'pick': 1.0, 'buckled': 1.0, 'keep': 1.0, 'waist': 2.0, 'around': 1.0, 'be': 1.0, 'haven': 1.0, 'made': 1.0, 'which': 1.0, 'life': 1.0, 'unbuckle': 1.0, '2': 1.0, 'back': 2.0, 'carrier': 1.0, 'unclasp': 1.0, 'very': 1.0, 'read': 1.0, 'to': 6.0, 'while': 2.0, 'facing': 1.0, 'by': 3.0, 'when': 1.0, 'daughter': 1.0, 'steps': 1.0, 'got': 1.0, 'way': 1.0, 'reach': 1.0, 'hands': 2.0, 'case': 1.0, 'petite': 1.0, 'too': 1.0, 'one': 3.0, 'lot': 1.0, 'option': 1.0, 'has': 1.0, 'them': 1.0, 'wellmade': 1.0, 'comfortable': 1.0, 'off': 2.0, 'seems': 2.0, 'also': 2.0, 'justbecause': 1.0, 'having': 1.0, 'am': 1.0, 'deciding': 1.0, 'problems': 1.0, 'that': 1.0, 'easily': 1.0, 'because': 1.0, 'time': 2.0, 'about': 1.0, 'behind': 1.0, 'adjustments': 1.0, 'month': 1.0, 'same': 1.0, 'ergo': 2.0, 'review': 1.0, 't': 1.0, 'along': 1.0, 'baby': 3.0, 'adjusted': 1.0, 'bought': 1.0, 'i': 15.0, 'two': 1.0, 'a': 7.0, 'between': 1.0, 'had': 3.0, 'lbs': 1.0, 'was': 2.0, 'her': 2.0, 'use': 1.0, 'complained': 1.0, 'front': 1.0, 'you': 2.0, 'buckling': 1.0, 'and': 17.0, 'with': 3.0, 'this': 3.0, 'or': 2.0, 'feature': 1.0, 'need': 1.0, 'carries': 1.0, 'thought': 1.0, 'it': 9.0, 'walking': 1.0, 'ended': 1.0, 'even': 1.0, 'buckle': 7.0, 'base': 1.0, 'up': 2.0, 'hard': 2.0, 'over': 2.0, 'found': 1.0, 'easy': 1.0, 'however': 1.0, 'returning': 1.0, 'in': 3.0, 'on': 3.0, 'make': 1.0, 'all': 3.0, 'other': 1.0, 'straps': 3.0, 'hand': 1.0, 'at': 2.0, 'is': 2.0, 'more': 3.0, 'put': 1.0, 'much': 1.0, 'middle': 1.0, 'times': 1.0, 'wiggle': 1.0, 'versatile': 1.0, 'offers': 1.0, 've': 1.0, 'down': 2.0, 'several': 1.0, 'beco': 1.0, 'have': 3.0, 'household': 1.0, 'once': 1.0, 'room': 1.0, 'terms': 1.0, 'carry': 1.0, 'doing': 1.0, 'finger': 2.0, 'the': 19.0, 'person': 1.0, 'of': 2.0, 'take': 1.0, 'then': 1.0, 'leg': 1.0, 'myself': 2.0, 'liked': 1.0, 'item': 1.0, 'how': 1.0, 'such': 1.0, 'for': 1.0, 'sides': 1.0, 'narrower': 1.0, 'so': 1.0, 'can': 1.0, 'my': 10.0, 'head': 2.0, 'index': 1.0, 'still': 1.0, 'every': 1.0}
Word element => {'give': 1.0, 'over': 1.0, 'has': 1.0, 'car': 1.0, 'am': 1.0, 'happened': 1.0, 'things': 1.0, 'holding': 1.0, 'year': 1.0, 'been': 1.0, 'smoothly': 1.0, 'meaning': 1.0, 'runs': 1.0, 'scratches': 1.0, 'causing': 1.0, 'ground': 1.0, 'turns': 1.0, 'tray': 1.0, 'much': 1.0, 'put': 1.0, 'closes': 1.0, 'crap': 1.0, 'piece': 1.0, 'close': 1.0, 'from': 1.0, 'plus': 1.0, 'are': 1.0, 'thankfully': 1.0, 'bars': 1.0, 'handle': 1.0, 'is': 7.0, 'busy': 1.0, 'body': 1.0, 'heavy': 1.0, 'as': 1.0, 'pretty': 1.0, 'to': 8.0, 'pushing': 1.0, 'someone': 1.0, 'way': 4.0, 'son': 2.0, 'hate': 1.0, 'when': 1.0, 'sit': 1.0, 'really': 4.0, 'either': 1.0, 'afar': 1.0, 'would': 1.0, 'intersection': 1.0, 'but': 2.0, 'so': 3.0, 'can': 1.0, 'our': 1.0, 'stroller': 4.0, 'have': 3.0, 'crossing': 1.0, 'and': 8.0, 'should': 1.0, 'in': 2.0, 'forward': 1.0, 'not': 1.0, 'street': 2.0, 'world': 1.0, 'food': 1.0, 'or': 1.0, 'falling': 1.0, 'they': 2.0, '4': 1.0, 'well': 2.0, 'coming': 1.0, 'i': 12.0, 'he': 2.0, 'this': 3.0, '30': 1.0, 'buy': 1.0, 'sent': 1.0, 'no': 1.0, 'thing': 1.0, 'rusting': 1.0, 'lbs': 1.0, 'was': 5.0, 'had': 4.0, 'moves': 1.0, 'of': 3.0, 'the': 23.0, 'strapped': 1.0, 'still': 1.0, 'shaky': 1.0, 'asked': 1.0, 'if': 2.0, 'fell': 1.0, 'flew': 1.0, 'problem': 1.0, 'wheel': 3.0, 'a': 6.0, 'tiny': 1.0, 'only': 1.0, 'minus': 1.0, 'front': 1.0, 'enough': 1.0, 'say': 1.0, 'drag': 1.0, 'hold': 1.0, 'back': 4.0, 'an': 1.0, 'all': 4.0, 'barrow': 1.0, 'other': 2.0, 'side': 1.0, 'user': 1.0, 'while': 1.0, 'another': 1.0, 'trying': 1.0, 'it': 12.0, 'him': 1.0, 'be': 1.0, 'up': 3.0, 'pieces': 1.0, 'pick': 1.0, 'parts': 1.0, 'pissed': 1.0, 'spokes': 1.0, 'on': 2.0, 'strong': 1.0, 'looks': 1.0, 'undone': 1.0, 'my': 2.0, 'me': 2.0, 'doctors': 1.0, 'did': 1.0, 'call': 1.0, 'for': 1.0, 'fabric': 1.0, 'reclines': 1.0, 'out': 1.0, 'replacement': 1.0, 'yes': 1.0, 'off': 2.0, 'seems': 1.0, 'fine': 1.0, 'forces': 1.0, 'reclined': 1.0, 'almost': 1.0, 'now': 2.0, '1': 1.0, 'that': 2.0, 'because': 1.0, 'nice': 1.0, 'two': 1.0, 'little': 1.0, 'string': 1.0, 'around': 1.0, 'his': 1.0, 'weight': 1.0, 'wheels': 1.0}
Word element => {'for': 1.0, 'moms': 1.0, 'recommend': 1.0, 'about': 1.0, 'anything': 1.0, 'register': 1.0, 'wont': 1.0, 'time': 1.0, 'they': 1.0, 'anyone': 1.0, 'company': 1.0, 'called': 1.0, 'try': 1.0, 'jiggles': 1.0, 'side': 2.0, 'on': 2.0, 'stoller': 1.0, 'stay': 1.0, 'first': 1.0, 'it': 2.0, 'this': 5.0, 'i': 2.0, 'buy': 2.0, 'you': 2.0, 'does': 2.0, 'front': 1.0, 'wheel': 3.0, 'the': 3.0, 'falls': 1.0, 'not': 7.0, 'all': 1.0, 'able': 1.0, 'or': 1.0, 'off': 1.0, 'work': 1.0, 'stroller': 1.0, 'back': 1.0, 'will': 2.0, 'do': 4.0, 'and': 2.0, 'go': 1.0, 'be': 1.0, 'to': 3.0, 'if': 1.0, 'move': 1.0, 'from': 1.0}
Word element => {'asap': 1.0, 'getting': 1.0, 'one': 2.0, 'better': 1.0, 'little': 1.0, 'spend': 1.0, 'buy': 1.0, 'not': 1.0, 'horrible': 1.0, 'walking': 1.0, 'few': 1.0, 'after': 1.0, 'unlocked': 1.0, 'lock': 1.0, 'now': 1.0, 'order': 1.0, 'in': 1.0, 'has': 1.0, 'locked': 2.0, 'isn': 1.0, 'do': 1.0, 'only': 1.0, 'wheel': 1.0, 'with': 2.0, 'get': 2.0, 'and': 4.0, 'worst': 1.0, 'am': 1.0, 'you': 3.0, 'good': 1.0, 'it': 4.0, 'this': 3.0, 'shower': 1.0, 'parents': 1.0, 'from': 2.0, 'i': 4.0, 'even': 1.0, 'got': 1.0, 'minutes': 1.0, 'was': 1.0, 'at': 1.0, 'thought': 1.0, 'stroller': 5.0, 'still': 1.0, 'because': 1.0, 'all': 1.0, 'as': 2.0, 'to': 4.0, 'seat': 1.0, 'know': 1.0, 'baby': 1.0, 'over': 1.0, 'don': 1.0, 'price': 1.0, 'place': 1.0, 'deal': 2.0, 'the': 7.0, 'a': 7.0, 't': 2.0, 'my': 3.0, 're': 1.0, 'car': 1.0, 'bob': 1.0, 'babies': 1.0, 'r': 1.0, 'for': 2.0, 'supposed': 1.0, 'be': 2.0, 'able': 1.0, 'us': 1.0, 'if': 2.0, 'money': 1.0, 'but': 1.0, 'can': 1.0, 'wobbles': 1.0, 'reasonable': 1.0, 'gift': 1.0, 'gosh': 1.0, 'more': 1.0, 'comes': 1.0, 'jog': 2.0, 'is': 2.0}
Word element => {'jogging': 1.0, 'is': 1.0, 'sure': 1.0, 'lbs': 1.0, 'running': 1.0, 'my': 1.0, 'strolling': 1.0, 'stayed': 1.0, 'or': 1.0, 'until': 1.0, 'pay': 1.0, 'what': 1.0, 'get': 1.0, 's': 1.0, 'you': 2.0, 'runner': 1.0, 'four': 1.0, 'great': 1.0, 'the': 2.0, 'a': 1.0, 'for': 3.0, 'using': 1.0, 'am': 1.0, 'm': 1.0, 'when': 1.0, 'jogger': 1.0, 'carrier': 1.0, 'not': 1.0, 'started': 1.0, 'because': 1.0, 'baby': 1.0, 'purchased': 1.0, 'i': 3.0, 'old': 1.0, 'we': 1.0, 'but': 1.0, 'weeks': 1.0, '22': 1.0, 'wobbly': 2.0, 'this': 2.0, 'it': 2.0, 'with': 1.0, 'infant': 1.0, 'was': 2.0, 'son': 1.0, 'very': 1.0}
Word element => {'stable': 1.0, 'why': 1.0, 's': 2.0, 'pain': 1.0, 'because': 1.0, 'through': 1.0, 'so': 1.0, 'ice': 1.0, 'lot': 1.0, 'bit': 2.0, 'a': 4.0, 'snow': 1.0, 'the': 1.0, 'get': 1.0, 'and': 1.0, 'quite': 1.0, 'to': 3.0, 'tromps': 1.0, 'it': 3.0, 'of': 2.0, 'fold': 1.0, 'takes': 1.0, 'strength': 1.0, 'unlatch': 1.0, 'weighs': 1.0, 'but': 1.0, 'that': 1.0}
Word element => {'less': 1.0, 'had': 1.0, 'difficulty': 1.0, 'i': 5.0, 'some': 1.0, 'really': 1.0, 'folds': 1.0, 'correctly': 1.0, 'however': 1.0, 'like': 2.0, 'the': 5.0, 'getting': 1.0, 'it': 2.0, 'this': 3.0, 'way': 3.0, 'stroller': 3.0, 'gets': 1.0, 'fold': 1.0, 'handles': 1.0, 'don': 1.0, 'have': 1.0, 'is': 1.0, 'caught': 1.0, 'that': 2.0, 'basket': 1.0, 'to': 3.0, 'all': 1.0, 'seat': 1.0, 'not': 2.0, 'think': 1.0, 'on': 1.0, 'comfortably': 1.0, 'has': 1.0, 'be': 1.0, 'reclined': 1.0, 'convenient': 1.0, 't': 1.0, 'a': 1.0, 'if': 1.0, 'push': 1.0, 'are': 1.0, 'in': 1.0, 'hurry': 1.0, 'you': 1.0, 'am': 1.0, 'than': 1.0, '5': 1.0, 'feet': 1.0, 'too': 1.0, 'and': 1.0, 'tall': 2.0}
Word element => {'t': 1.0, 'didn': 1.0, 'appropriately': 1.0, 'strapped': 1.0, 'were': 1.0, 'luckily': 1.0, 'this': 1.0, 'is': 1.0, 'jog': 1.0, 'asked': 1.0, 'into': 1.0, 'to': 1.0, 'and': 6.0, 'moms': 1.0, 'price': 2.0, 'gravel': 1.0, 'both': 1.0, 'regret': 1.0, 'be': 1.0, 'injuries': 1.0, 'money': 1.0, 'but': 2.0, 'about': 1.0, 'baby': 4.0, 'wondered': 1.0, 'buying': 1.0, 'with': 4.0, 'babies': 2.0, 'husband': 1.0, 'now': 2.0, 'he': 1.0, 'angry': 1.0, 'went': 1.0, 'on': 1.0, 'imagine': 1.0, 'a': 2.0, 'could': 1.0, 'not': 1.0, 'because': 1.0, 'right': 1.0, 'saving': 1.0, 'can': 1.0, 'so': 3.0, 'you': 3.0, 'when': 1.0, 'hurt': 1.0, 'i': 5.0, 'bob': 3.0, 'two': 1.0, 'came': 1.0, 'our': 1.0, 'how': 2.0, 'stroller': 1.0, 'babytrends': 1.0, 'saying': 1.0, 'just': 1.0, 'why': 1.0, 'from': 3.0, 'part': 1.0, 'suffer': 1.0, 'flying': 1.0, 'there': 1.0, 'them': 1.0, 'always': 1.0, 'parents': 1.0, 'major': 1.0, 'up': 2.0, 'jogger': 2.0, 'mean': 1.0, 'front': 3.0, 'wheel': 3.0, 'me': 3.0, 'my': 3.0, 'wobble': 1.0, 'locked': 1.0, 'huge': 1.0, 'too': 2.0, 'one': 2.0, 'we': 1.0, 'difference': 1.0, 'most': 1.0, 'back': 1.0, 'trend': 4.0, 'locking': 1.0, 'buy': 1.0, 'no': 1.0, 'gotten': 1.0, 'the': 13.0, 'of': 3.0, 'all': 2.0, 'other': 2.0, 'running': 2.0, 'have': 2.0, 'was': 2.0, 'over': 2.0, 'google': 1.0, 'such': 1.0, 'for': 4.0, 'it': 4.0, 'am': 1.0, 'okay': 1.0, 'they': 1.0, 'group': 1.0, 'kept': 1.0, 'stupid': 1.0, 'would': 1.0, 'had': 1.0, 'experienced': 1.0, 'm': 1.0, 'in': 2.0, 'seems': 2.0, 'tons': 1.0}
Word element => {'size': 1.0, 'is': 1.0, 'turns': 1.0, 'smooth': 1.0, 'i': 1.0, 'love': 1.0, 'a': 2.0, 'this': 1.0, 'and': 1.0, 'very': 2.0, 'like': 1.0, 'perfect': 1.0, 'easy': 1.0, 'stroller': 2.0, 'but': 1.0, 'its': 1.0, 'in': 1.0, 'cadillac': 1.0, 'form': 1.0}
Word element => {'two': 1.0, 'bought': 1.0, 'gift': 1.0, 'recommend': 1.0, 'would': 1.0, 'secure': 1.0, 'and': 1.0, 'hold': 1.0, 'feel': 1.0, 'most': 1.0, 'as': 1.0, 'adorable': 1.0, 'to': 1.0, 'baby': 2.0, 'little': 2.0, 'the': 2.0, 'a': 5.0, 'mini': 1.0, 'is': 2.0, 'time': 1.0, 'blanket': 3.0, 'i': 3.0, 'for': 3.0, 'one': 1.0, 'in': 1.0, 've': 1.0, 'long': 1.0, 'this': 2.0, 'it': 1.0, 'just': 1.0, 'wonderful': 1.0, 'right': 1.0, 'seen': 1.0, 'size': 1.0}
Word element => {'look': 1.0, 'open': 1.0, 'so': 1.0, 'drawer': 2.0, 'his': 1.0, 'are': 1.0, 'they': 1.0, 'knows': 1.0, 'when': 1.0, 'secure': 1.0, 'feel': 1.0, 'makes': 1.0, 'babies': 1.0, 'where': 1.0, 'for': 2.0, 'size': 1.0, 'small': 1.0, 'buy': 1.0, 'random': 1.0, 'and': 5.0, 'chose': 1.0, 'beginning': 1.0, 'i': 4.0, 'two': 1.0, 'born': 2.0, 'approaches': 1.0, 'to': 5.0, 'had': 1.0, 'was': 2.0, 'store': 1.0, 'today': 1.0, 'in': 3.0, 'bought': 1.0, 'one': 2.0, 'son': 1.0, 'cranky': 1.0, 'perfect': 1.0, 'found': 1.0, 'this': 2.0, 'feels': 1.0, 'daily': 1.0, 'he': 5.0, 'only': 1.0, 'with': 2.0, 'month': 1.0, 'it': 5.0, '5': 2.0, 'before': 1.0, 'even': 2.0, 'the': 2.0, 'my': 1.0, 'later': 1.0, 'blankets': 1.0, 'change': 1.0, 'introduced': 1.0, 'quite': 1.0, 'wakes': 1.0, 'since': 2.0, 'light': 1.0, 'few': 1.0, 'grab': 1.0, 'him': 2.0, 'always': 1.0, 'up': 1.0, 'till': 1.0, 'more': 1.0, 'sleeps': 1.0, 'a': 2.0, 's': 1.0}
Word element => {'extra': 1.0, 'an': 1.0, 'we': 1.0, 'favorite': 1.0, 'perfect': 1.0, 'condition': 1.0, 'everywhere': 1.0, 'sons': 1.0, 'you': 1.0, 'it': 1.0, 'square': 1.0, 'now': 1.0, 'is': 1.0, 'have': 1.0, 'this': 1.0, 'thanks': 1.0, 'little': 1.0, 'my': 1.0, 'goes': 1.0, 'youngest': 1.0}
Word element => {'great': 1.0, 'hours': 1.0, '24': 1.0, 'allow': 1.0, 'then': 1.0, 'washer': 1.0, 'washing': 1.0, 'not': 1.0, 'do': 1.0, 'i': 1.0, 'come': 1.0, 'thread': 1.0, 'had': 1.0, 'even': 1.0, 'dry': 1.0, 'week': 1.0, 'still': 1.0, 'washes': 1.0, '2': 1.0, 'held': 2.0, 'follow': 1.0, 'durable': 1.0, 'and': 2.0, 'first': 2.0, 'it': 7.0, 'very': 2.0, 'of': 1.0, 'back': 1.0, 'never': 1.0, 'piglet': 2.0, 'were': 1.0, 'that': 1.0, 'as': 2.0, 'our': 1.0, 'to': 4.0, 'was': 3.0, 'now': 1.0, 'loose': 1.0, 'out': 1.0, 'blanky': 1.0, 'looking': 1.0, 'buy': 1.0, 'air': 1.0, 'in': 3.0, 'cycle': 1.0, 'will': 1.0, 'also': 1.0, 'water': 1.0, 'daughter': 2.0, 'sears': 1.0, 'say': 1.0, 'is': 3.0, 'instructions': 1.0, 'amazon': 1.0, 'often': 1.0, 'business': 1.0, 'my': 2.0, 'we': 7.0, 'a': 4.0, 'going': 1.0, 's': 3.0, '8': 1.0, 'favorite': 1.0, 'hot': 1.0, 'has': 2.0, 'toy': 2.0, 'for': 1.0, 'actually': 1.0, 'have': 1.0, 'on': 2.0, '3': 2.0, 'this': 3.0, 'found': 1.0, 'soft': 1.0, 'luckily': 1.0, 'easy': 1.0, 'wash': 1.0, 'over': 1.0, 'up': 3.0, 'cheaper': 1.0, 'mouth': 1.0, 'find': 1.0, 'than': 1.0, 'the': 3.0, 'months': 1.0, 'one': 1.0, 'bought': 1.0}
Word element => {'his': 1.0, 'for': 1.0, 'in': 1.0, 'the': 1.0, 'likes': 1.0, 'bed': 1.0, 'keeps': 1.0, 'him': 1.0, 'shelf': 1.0, 'it': 2.0, 'but': 1.0, 'as': 2.0, 'much': 1.0, 'room': 1.0, 'on': 1.0, 'so': 1.0, 'not': 1.0, 'tigger': 1.0, 'mom': 1.0}
Word element => {'around': 1.0, 'too': 1.0, 'anything': 1.0, 'the': 1.0, 't': 1.0, 'newborn': 2.0, 'my': 1.0, 'bought': 1.0, 'for': 1.0, 'love': 1.0, 'absolutely': 1.0, 'hard': 1.0, 'sister': 1.0, 'this': 2.0, 'blankie': 1.0, 'it': 1.0, 'and': 2.0, 'cuuuuute': 1.0, 'as': 1.0, 'want': 1.0, 'is': 1.0, 'totally': 1.0, 'so': 2.0, 'soft': 1.0, 'recommend': 1.0, 'i': 2.0, 'esp': 1.0, 's': 1.0, 'you': 1.0, 'don': 1.0}
Word element => {'sweet': 1.0}
Word element => {'frequent': 1.0, 'and': 1.0, 'every': 1.0, 'it': 1.0, 'with': 1.0, 'day': 1.0, 'sleeping': 1.0, 'her': 1.0, 'due': 1.0, 'favorite': 1.0, 'two': 1.0, 'of': 1.0, '6': 1.0, 'nap': 1.0, 'ordered': 1.0, 's': 1.0, 'night': 1.0, 'old': 1.0, 'be': 1.0, 'machine': 1.0, 'to': 1.0, 'mo': 1.0, 'washing': 1.0, 'seam': 1.0, 'my': 1.0, 'the': 2.0, 'them': 1.0, 'noticed': 1.0, 'is': 1.0, 'coming': 1.0, 'on': 1.0, 'in': 1.0, 'apart': 1.0, 'oldest': 1.0, 'one': 1.0, 'blanket': 1.0, 'could': 1.0}
Word element => {'future': 1.0, 'in': 1.0, 'another': 1.0, 'gladly': 1.0, 'would': 1.0, 'no': 1.0, 'or': 1.0, 'thats': 1.0, 'loves': 1.0, 'it': 1.0, 'this': 1.0, 'security': 1.0, 'pooh': 1.0, 'issues': 1.0, 'version': 1.0, 'winnie': 1.0, 'great': 1.0, 'the': 3.0, 'neice': 1.0, 'my': 1.0, 'has': 1.0, 'and': 1.0, 'why': 1.0, 'description': 1.0, 'flaws': 1.0, 'on': 1.0, 'one': 1.0, 'purchasing': 1.0, 'was': 2.0, 'spot': 1.0, 'blanket': 1.0, 'buy': 1.0, 'i': 1.0, 'products': 1.0}
Word element => {'anything': 1.0, 'seen': 1.0, 'the': 2.0, 'a': 1.0, 'print': 1.0, 'different': 1.0, 'gift': 2.0, 'was': 2.0, 'hit': 1.0, 'like': 1.0, 'and': 1.0, 'never': 1.0, 'love': 1.0, 'great': 1.0, 'it': 2.0, 'something': 1.0, 'had': 1.0}
Word element => {'quality': 1.0, 'fall': 1.0, 'good': 1.0, 'sleep': 1.0, 'not': 2.0, 'can': 2.0, 'without': 1.0, 'love': 1.0, 'it': 3.0, 'son': 1.0, 'throw': 1.0, 'out': 1.0, 'plush': 1.0, 'my': 1.0, 'the': 1.0, 'and': 3.0, 'like': 1.0, 'soft': 1.0, 'washer': 1.0, 'pooh': 1.0, 'that': 1.0, 'so': 1.0, 'i': 3.0, 'his': 1.0, 'does': 1.0, 'apart': 1.0, 'in': 1.0}
Word element => {'product': 1.0, 'didn': 1.0, 'just': 1.0, 'miss': 1.0, 'another': 1.0, 'her': 1.0, 'we': 1.0, 'my': 1.0, 'like': 1.0, 'and': 1.0, 'granddaughter': 1.0, 'great': 1.0, 'it': 3.0, 't': 1.0, 'loves': 1.0, 'this': 1.0, 'she': 2.0, 'had': 1.0, 'one': 2.0, 'got': 1.0, 'so': 2.0, 'needed': 1.0, 'washing': 1.0}
Word element => {'an': 1.0, 'mom': 1.0, 'wash': 1.0, 'which': 1.0, 'hand': 1.0, 'downside': 1.0, 'made': 1.0, 'well': 1.0, 'very': 2.0, 'something': 1.0, 'second': 1.0, 'buy': 1.0, 'seems': 1.0, 'will': 1.0, 'only': 2.0, 'happens': 1.0, 'much': 1.0, 'bit': 1.0, 'so': 1.0, 'cute': 1.0, 'holding': 1.0, 'bouncer': 1.0, 'think': 1.0, 'on': 1.0, 'hugs': 1.0, 'his': 1.0, 'edges': 2.0, 'it': 7.0, 'this': 1.0, 'he': 7.0, 'inconvenience': 1.0, 'old': 2.0, 'i': 3.0, 'guess': 1.0, 'instantly': 1.0, 'silk': 3.0, 'but': 1.0, '2': 1.0, 'another': 1.0, 'my': 2.0, 'along': 2.0, 'a': 3.0, 'we': 1.0, 'case': 1.0, 'loves': 2.0, 'loved': 1.0, 'had': 1.0, 'was': 3.0, 'now': 1.0, 'the': 7.0, 'asleep': 1.0, 'product': 1.0, 'for': 2.0, 'busy': 1.0, 'shy': 1.0, 'son': 1.0, 'to': 4.0, 'as': 2.0, 'when': 1.0, 'one': 1.0, 'bought': 1.0, 'months': 2.0, 'blanket': 2.0, 'never': 1.0, 'him': 1.0, 'interested': 1.0, 'because': 1.0, 'just': 2.0, 'in': 3.0, 'is': 6.0, 'there': 1.0, 'of': 2.0, 'no': 1.0, '5': 1.0, 'and': 3.0, 'soon': 1.0, 'give': 1.0, 'falls': 1.0}
Word element => {'case': 1.0, 'hers': 1.0, 'in': 1.0, 'second': 1.0, 'without': 1.0, 'this': 1.0, 'it': 1.0, 'month': 1.0, 'highly': 1.0, 'money': 1.0, 'sleep': 1.0, 'doesn': 1.0, 'lost': 1.0, '18': 1.0, 'reccomend': 1.0, 'my': 1.0, 't': 1.0, 'the': 1.0, 's': 1.0, 'a': 1.0, 'well': 1.0, 'cuddly': 1.0, 'and': 1.0, 'cute': 1.0, 'worth': 1.0, 'old': 1.0, 'i': 1.0, 'gets': 1.0, 'considering': 1.0, 'daughter': 1.0, 'm': 1.0}
Word element => {'has': 1.0, 'but': 1.0, 'at': 1.0, 'poorly': 1.0, 'reliable': 1.0, 'hot': 1.0, 'worked': 1.0, 'very': 2.0, 'leaking': 1.0, 'is': 1.0, 'the': 1.0, 'when': 1.0, 'even': 1.0, 'thermometer': 1.0, 'use': 1.0, 'began': 1.0, 'soon': 1.0, 'cooler': 1.0, 'about': 1.0, 'take': 1.0, 'month': 1.0, 'in': 1.0, 'water': 2.0, '1': 1.0, 'and': 1.0, 'teampatures': 1.0, 'first': 1.0, 'this': 1.0, 'it': 4.0, 'stopped': 1.0, 'was': 1.0, 'to': 1.0, 'its': 1.0, 'after': 3.0, 'correctly': 1.0, 'of': 1.0, 'reading': 1.0, 'says': 1.0}
Word element => {'here': 1.0, 'waste': 1.0, 'life': 1.0, 'back': 1.0, 'came': 1.0, 'never': 1.0, 'silicon': 1.0, 'with': 1.0, 'cleaning': 1.0, 'tried': 1.0, 'inside': 1.0, 'metal': 1.0, 'baby': 1.0, 'after': 1.0, 't': 1.0, 'terminals': 1.0, 'the': 5.0, '10': 1.0, 'seemed': 1.0, 'opened': 1.0, 'your': 1.0, 'bath': 1.0, 'money': 1.0, 'but': 2.0, 'disappointing': 1.0, 'water': 1.0, 'not': 1.0, 'better': 1.0, 'he': 1.0, 'how': 1.0, '7': 1.0, 'c': 1.0, 'i': 1.0, 'about': 1.0, 'battery': 1.0, 'it': 6.0, 'this': 1.0, 'bought': 1.0, 'sealing': 1.0, 'husband': 1.0, 'had': 1.0, 'other': 1.0, 'feedback': 1.0, 'have': 1.0, 'to': 3.0, 'all': 1.0, 'uses': 1.0, 'device': 2.0, 'rusted': 1.0, 'sputtered': 1.0, 'out': 2.0, 'and': 5.0, 'b': 1.0, 'my': 1.0, 'don': 1.0, 'up': 2.0, 'than': 1.0, 'died': 1.0, 'find': 1.0, 'that': 1.0, 'is': 1.0, 'thermometers': 1.0, 'gotten': 1.0, 'waterproof': 1.0, 'in': 1.0}
Word element => {'proof': 1.0, 'dummy': 1.0, 'fast': 1.0, 'safe': 1.0, 'bath': 1.0, 'for': 1.0, 'and': 1.0, 'setting': 1.0, 'second': 1.0, 'off': 1.0, 'on': 1.0, 'you': 1.0, 'the': 4.0, 'drying': 1.0, 'as': 1.0, 'it': 1.0, 'advertised': 1.0, 'this': 1.0, 'put': 1.0, 'towel': 1.0, 'turns': 1.0, 'exactly': 1.0, 'turtle': 1.0, 'works': 1.0, 'down': 1.0, 'a': 1.0, 'up': 1.0, 'conserves': 1.0, 'sensors': 1.0, 'which': 1.0, 'battery': 1.0, 'time': 1.0, 'makes': 1.0}
Word element => {'worth': 1.0, 'definitely': 1.0, 'is': 1.0, 'sooner': 1.0, 'mold': 1.0, 'crevices': 1.0, 'hard': 1.0, 'of': 1.0, 'price': 1.0, 'ton': 1.0, 'had': 2.0, 'nearly': 1.0, '5': 1.0, 'as': 1.0, 'to': 4.0, 'for': 1.0, 'pricey': 1.0, 'so': 1.0, 'time': 1.0, 'think': 1.0, 'bath': 3.0, 'thermometer': 3.0, 'tag': 1.0, 'last': 1.0, 'clean': 1.0, 'her': 1.0, 'does': 1.0, 'keep': 1.0, 'i': 7.0, 'only': 2.0, 'wish': 1.0, 'this': 2.0, 'with': 1.0, 'reach': 1.0, 'the': 2.0, 'my': 1.0, 'submerged': 1.0, 'not': 1.0, 'seems': 1.0, 'also': 1.0, 'in': 1.0, 'well': 1.0, 'daughter': 1.0, 'be': 1.0, 'multiple': 1.0, 'but': 1.0, 'work': 1.0, 'can': 1.0, 'way': 1.0, 't': 1.0, 'a': 3.0, 's': 4.0, 'quickly': 1.0, 'tell': 1.0, 'getting': 1.0, 'too': 1.0, 'and': 3.0, 'easy': 2.0, 'get': 1.0, 'bought': 2.0, 'cool': 1.0, 'precise': 1.0, 'should': 1.0, 'wasn': 1.0, 'out': 1.0, 'that': 1.0, 'loves': 1.0, 'been': 1.0, 'very': 1.0, 'grew': 1.0, 'read': 1.0, 'little': 1.0, 'when': 1.0, 'times': 1.0, 'whole': 1.0, 'no': 1.0, 'fully': 1.0, 'issues': 1.0, 'it': 10.0, 'she': 1.0, 'felt': 1.0, 'was': 1.0}
Word element => {'doubles': 1.0, 'priced': 1.0, 'toy': 1.0, 'right': 1.0, 'product': 1.0, 'accurately': 1.0, 'bath': 1.0, 'is': 2.0, 'a': 2.0, 'this': 1.0, 'temperature': 1.0, 'great': 2.0, 'it': 1.0, 'works': 1.0, 'also': 1.0, 'well': 1.0, 'as': 1.0, 'and': 1.0, 'gauges': 1.0}
Word element => {'recommend': 1.0, 'that': 1.0, 'than': 1.0, 'any': 1.0, 'well': 1.0, 'get': 1.0, 'temperature': 1.0, 'to': 1.0, 'can': 1.0, 'right': 1.0, 'simple': 1.0, 'instructions': 1.0, 'thermometer': 1.0, 'like': 1.0, 'as': 1.0, 'tells': 1.0, 'very': 1.0, 'hot': 1.0, 'current': 1.0, 'really': 1.0, 'cold': 1.0, 'also': 1.0, 'this': 1.0, 'it': 2.0, 's': 1.0, 'follow': 1.0, 'simpler': 1.0, 'green': 1.0, 'i': 2.0, 'more': 1.0, 't': 1.0, 'the': 1.0, 'red': 1.0, 'too': 2.0, 'blue': 1.0, 'because': 1.0, 'just': 1.0}
Word element => {'sorry': 1.0, 'better': 1.0, 'judgement': 1.0, 'reinforce': 1.0, 'than': 1.0, 'having': 1.0, 'like': 1.0, 'i': 2.0, 'take': 1.0, 'safe': 2.0, 'fun': 1.0, 'is': 2.0, 'traffic': 1.0, 'also': 1.0, 'in': 2.0, 'temperature': 1.0, 'hot': 1.0, 'well': 1.0, 'on': 1.0, 'showers': 1.0, '3': 1.0, 'cute': 1.0, 'turtle': 2.0, 'display': 1.0, 'would': 1.0, 'to': 2.0, 'knows': 1.0, 'a': 2.0, 'go': 1.0, 'that': 1.0, 'glows': 1.0, 'loves': 1.0, 'quite': 1.0, 'sort': 1.0, 'helpful': 1.0, 'she': 1.0, 'it': 3.0, 'older': 1.0, 'children': 1.0, 'this': 1.0, 'come': 1.0, 'the': 3.0, 'yr': 1.0, 'made': 1.0, 'tub': 1.0, 'child': 1.0, 'my': 2.0, 'so': 2.0, 'of': 1.0, 'light': 1.0, 'game': 1.0, 'for': 1.0, 'handy': 1.0, 'old': 1.0, 'young': 1.0, 'toddlers': 1.0, 'green': 1.0, 'and': 1.0, 'if': 1.0, 'when': 1.0, 'you': 1.0, 'have': 1.0}
Word element => {'bath': 1.0, 'with': 1.0, 'error': 1.0, 'giving': 1.0, 'months': 1.0, 'keeps': 1.0, 'worked': 2.0, 'every': 1.0, 'stopped': 1.0, 'couple': 1.0, 'when': 1.0, 'great': 1.0, 'it': 1.0, 'working': 1.0, 'after': 1.0, 'but': 1.0, 'just': 2.0, 'a': 1.0}
Word element => {'ready': 1.0, 'were': 1.0, 'both': 1.0, 'turned': 1.0, 'down': 1.0, 'product': 1.0, 'true': 1.0, 'take': 1.0, 'want': 1.0, 't': 1.0, 'didn': 1.0, 'i': 1.0, 'time': 1.0, 'bath': 1.0, 'during': 1.0, 'red': 1.0, 'tried': 1.0, 'the': 13.0, 'turns': 1.0, 'blue': 3.0, 'light': 1.0, 'cold': 1.0, 'cooled': 1.0, 'course': 1.0, 'is': 4.0, 'changed': 1.0, 'turtlemeter': 3.0, 'works': 1.0, 'out': 3.0, 'it': 4.0, 'showing': 1.0, 'of': 2.0, 'comfortable': 1.0, 'box': 1.0, 'straight': 1.0, 'when': 3.0, 'and': 1.0, 'green': 1.0, 'too': 2.0, 'daughter': 1.0, 'water': 5.0, 'girls': 1.0, 'hot': 1.0, 'my': 2.0, 'entire': 1.0, 'zone': 1.0, 'color': 1.0, 'loved': 1.0, 'then': 1.0, 'how': 1.0, 'colors': 1.0, 'telling': 1.0, 'get': 2.0, '8221': 1.0, 'which': 1.0, 'to': 6.0, '8217': 1.0, 'in': 2.0, 'turn': 1.0, 'since': 1.0, 'means': 1.0, 'they': 1.0, 'was': 1.0, 'recommend': 1.0, 'me': 2.0, '8220': 1.0, 'stay': 1.0}
Word element => {'water': 1.0, 'and': 1.0, 'reading': 1.0, 'also': 1.0, 'good': 1.0, 'surely': 1.0, 'will': 2.0, 'product': 1.0, 'taking': 1.0, 'bath': 1.0, 'recommed': 1.0, 'others': 1.0, 'kids': 2.0, 'gives': 1.0, 'for': 2.0, 'something': 1.0, 'love': 1.0, 'proper': 1.0, 'safe': 1.0, 'while': 1.0}
Word element => {'expressed': 1.0, 'opinions': 1.0, 'received': 1.0, 'disclosure': 1.0, 'self': 1.0, 'supervision': 1.0, 'adult': 1.0, 'safe': 1.0, 'happy': 1.0, 'turtle': 1.0, 'this': 2.0, 'my': 1.0, 'would': 1.0, 'accurate': 1.0, 'be': 2.0, 'free': 1.0, 'now': 1.0, 'weeks': 1.0, 'of': 1.0, 'couple': 1.0, 'product': 1.0, 'for': 2.0, 'worked': 1.0, 'having': 1.0, 'than': 2.0, 'works': 1.0, 'much': 1.0, 'facilitate': 1.0, 'buttons': 1.0, 'water': 1.0, 'different': 1.0, 'in': 2.0, 'or': 1.0, 'i': 2.0, 'it': 4.0, 'so': 1.0, 'switches': 1.0, 'no': 1.0, 'more': 1.0, 'is': 4.0, 'you': 1.0, 'there': 1.0, 'but': 2.0, 'aaa': 1.0, 'nephew': 1.0, 'that': 4.0, 'are': 3.0, 'cold': 1.0, 'the': 4.0, 'red': 1.0, 'a': 2.0, 's': 1.0, 't': 1.0, 'turtlemeter': 1.0, 'included': 1.0, 'have': 1.0, 'his': 2.0, 'activates': 1.0, 'dad': 1.0, 'like': 1.0, 'press': 1.0, 'shows': 1.0, 'any': 1.0, 'to': 5.0, 'as': 2.0, 'means': 1.0, 'bath': 1.0, '3': 2.0, 'seems': 2.0, 'also': 1.0, 'batteries': 1.0, 'get': 1.0, 'easy': 1.0, 'very': 2.0, 'read': 1.0, 'color': 1.0, 'truthful': 1.0, 'really': 2.0, 'screens': 1.0, 'blue': 1.0, 'recommend': 1.0, 'doesn': 1.0, 'green': 1.0, 'soon': 1.0, 'and': 5.0, 'too': 2.0, 'review': 1.0, 'well': 1.0, 'toy': 1.0, 'likes': 1.0, 'has': 1.0, 'easier': 1.0, 'hot': 1.0, 'just': 1.0, 'right': 1.0}
Word element => {'just': 1.0, 'mom': 1.0, 'say': 1.0, 'always': 1.0, 'but': 1.0, 'time': 1.0, 'hate': 1.0, 'used': 1.0, 'the': 2.0, '2': 1.0, 'who': 1.0, 'turtle': 2.0, 'love': 1.0, 'one': 2.0, 'for': 1.0, 'in': 1.0, 'we': 1.0, 'younger': 1.0, 'i': 2.0, 'old': 1.0, 'now': 1.0, 'to': 3.0, 'loves': 1.0, 'my': 2.0, 'bought': 1.0, 'months': 1.0, 'with': 1.0, 'this': 1.0, 'older': 1.0, 'it': 3.0, 'want': 1.0, 'is': 2.0, 'really': 1.0, 'addition': 1.0, 'convenient': 1.0, 'bath': 2.0, 'use': 1.0, 'she': 2.0}
Word element => {'turtles': 1.0, 'who': 1.0, 'water': 1.0, 'temerature': 1.0, 'right': 1.0, 'mind': 1.0, 'your': 1.0, 'time': 2.0, 'is': 1.0, 'bath': 1.0, 'to': 1.0, 'love': 1.0, 'parents': 1.0, 'for': 1.0, 'guesswork': 1.0, 'perfect': 1.0, 'turtle': 2.0, 'out': 1.0, 'doesn': 1.0, 'put': 1.0, 'first': 1.0, 'this': 2.0, 'ease': 1.0, 't': 1.0, 'the': 4.0, 'plus': 1.0, 'takes': 1.0, 'of': 2.0, 'gauge': 1.0, 'just': 1.0, 'know': 1.0, 'lets': 1.0, 'you': 1.0}
Word element => {'buy': 1.0, 'regret': 1.0, 'be': 1.0, 'would': 1.0, 'issue': 1.0, 'an': 1.0, 'there': 1.0, 'service': 1.0, 'their': 1.0, 'seems': 1.0, 'anyway': 1.0, 'however': 1.0, 'reviews': 1.0, 'other': 1.0, 'in': 1.0, 'issues': 1.0, 'he': 1.0, 'of': 1.0, 'not': 1.0, 'have': 1.0, 'stated': 1.0, 'cautious': 1.0, 'got': 1.0, 'purchased': 1.0, 'bath': 2.0, 'this': 2.0, 'with': 1.0, 'first': 1.0, 'much': 1.0, 'parents': 2.0, 'for': 3.0, 'them': 1.0, 'stayed': 1.0, 't': 1.0, 'we': 7.0, 'my': 2.0, 'advice': 1.0, 'one': 1.0, 'bought': 2.0, 'were': 1.0, 'overly': 1.0, 'at': 1.0, 'us': 1.0, 'and': 2.0, 'too': 1.0, 'so': 2.0, 'time': 3.0, 'home': 1.0, 'it': 6.0, 'she': 1.0, 'customer': 1.0, 'really': 2.0, 'is': 3.0, 'you': 1.0, 'when': 2.0, 'gives': 1.0, 'ok': 1.0, 'won': 1.0, 'temperature': 1.0, 'comfort': 1.0, 'any': 1.0, 'our': 1.0, 'as': 2.0, 'to': 2.0, 'was': 2.0, 'know': 1.0, 'because': 2.0, 'the': 2.0, 'negative': 1.0, 'her': 1.0, 'experienced': 1.0, 'previously': 1.0, 'responsive': 1.0, 'liked': 1.0, 'hated': 1.0, 'daughter': 1.0, 'water': 1.0, 'cold': 1.0, 'if': 1.0, 'being': 1.0}
Word element => {'bath': 1.0, 'a': 1.0, 'as': 1.0, 'some': 1.0, 'shows': 1.0, 'by': 1.0, 'toy': 1.0, 'baby': 1.0, 'sure': 1.0, 'it': 3.0, 'works': 1.0, 'even': 1.0, 'numbers': 1.0, 'if': 1.0, 'random': 1.0, 'light': 1.0, 'just': 1.0, 'not': 2.0, 'reliable': 1.0, 'am': 1.0, 'i': 2.0, 'the': 1.0, 'time': 1.0, 'enough': 1.0, 'likes': 1.0, 'half': 1.0, 'go': 1.0}
Word element => {'or': 1.0, 'bathing': 1.0, 'when': 2.0, 'baby': 1.0, 'tub': 3.0, 'off': 1.0, 'probably': 1.0, 'temp': 1.0, 'quickly': 2.0, 'at': 1.0, 'safe': 1.0, 'turns': 1.0, 'the': 9.0, 'loving': 1.0, 'down': 1.0, 'this': 1.0, 'with': 3.0, 'it': 1.0, 'six': 1.0, 'old': 1.0, 'of': 1.0, 'addition': 1.0, 'to': 3.0, 'our': 2.0, 'that': 1.0, 'on': 1.0, 'bath': 3.0, 'use': 2.0, 'and': 2.0, 'too': 3.0, 'us': 1.0, 'together': 1.0, 'water': 3.0, 'new': 1.0, 'cool': 1.0, 'infant': 2.0, 'turtle': 1.0, 'week': 1.0, 'doesn': 1.0, 'there': 1.0, 'lets': 1.0, 'start': 1.0, 'high': 1.0, 'time': 1.0, 'so': 1.0, 'primarily': 1.0, 'end': 1.0, 'much': 1.0, 'during': 1.0, 'filling': 1.0, 'an': 1.0, 'note': 1.0, 'we': 1.0, 't': 1.0, 's': 1.0, 'responds': 1.0, 'big': 1.0, 'regular': 1.0, 'in': 3.0}
Word element => {'says': 1.0, 'descripion': 1.0, 'exactly': 1.0, 'functions': 1.0, 'before': 1.0, 'both': 1.0, 'it': 1.0, 'felt': 1.0, 'thermometer': 1.0, 'bath': 1.0, 'try': 1.0, 'with': 1.0, 'this': 2.0, 'used': 1.0, 'pleased': 2.0, 'so': 1.0, 'am': 1.0, 'but': 1.0, 'never': 1.0, 'that': 1.0, 'written': 1.0, 'have': 3.0, 'had': 1.0, 'review': 1.0, 'as': 1.0, 'our': 1.0, 'to': 2.0, 'any': 1.0, 'baby': 1.0, 'for': 2.0, 'product': 1.0, 'be': 1.0, 'i': 6.0, 'two': 1.0, 'thermometers': 1.0, 'the': 2.0, 'great': 1.0, 'more': 1.0, 'water': 1.0, 'and': 1.0, 'other': 1.0, 'malfunctioned': 1.0, 'one': 1.0, 'decided': 1.0, 'because': 1.0, 'not': 1.0, 'of': 1.0, 'they': 1.0, 'reviews': 1.0, 'we': 1.0, 'a': 1.0, 's': 1.0, 'could': 1.0}
Word element => {'once': 1.0, 'had': 1.0, 'buy': 1.0, 'waited': 1.0, 'have': 2.0, 'return': 2.0, 'couldn': 1.0, 'would': 1.0, 'new': 1.0, 'hottest': 1.0, 'didn': 1.0, 'even': 1.0, 'for': 1.0, 'cold': 1.0, '34': 2.0, 'reading': 1.0, 'stayed': 1.0, 'kept': 1.0, 'so': 1.0, 'time': 2.0, 'died': 1.0, 'maybe': 1.0, 'than': 1.0, 'longer': 1.0, 'in': 1.0, 'never': 1.0, 'him': 1.0, 'were': 1.0, 'could': 1.0, 'a': 1.0, 't': 2.0, 'we': 4.0, 'weeks': 1.0, 'helped': 1.0, 'temps': 1.0, 'his': 2.0, 'before': 2.0, 'i': 4.0, 'one': 2.0, 'bought': 1.0, 'purchase': 1.0, 'my': 2.0, 'wish': 1.0, 'this': 3.0, 'first': 2.0, 'it': 11.0, 'stopped': 1.0, 'on': 1.0, 'bath': 3.0, 'son': 2.0, 'worked': 1.0, 'to': 4.0, 'was': 3.0, 'born': 2.0, 'about': 1.0, 'thing': 1.0, 'able': 1.0, 'mistake': 1.0, 'after': 3.0, 'every': 1.0, 'amazing': 1.0, 'when': 1.0, 'give': 1.0, 'me': 1.0, 'temperature': 1.0, 'do': 1.0, 'and': 2.0, 'gauge': 1.0, 'water': 2.0, 'left': 1.0, 'learned': 1.0, '6': 1.0, 'how': 1.0, 'properly': 1.0, 'the': 3.0, 'myself': 1.0, 'just': 4.0, 'then': 2.0, 'working': 1.0, 'right': 1.0, 'dried': 1.0, 'single': 1.0}
Word element => {'lights': 1.0, 'far': 1.0, 'so': 1.0, 'one': 1.0, 's': 1.0, 'we': 1.0, 'great': 1.0, 'red': 1.0, 'it': 1.0, 'bubbles': 1.0, 'doing': 1.0, 'this': 1.0, 'went': 1.0, 'before': 1.0, 'even': 1.0, 'thru': 2.0, 'radiate': 1.0, 'seems': 1.0, 'readings': 1.0, 'versions': 1.0, 'of': 2.0, 'manhandling': 1.0, 'coming': 1.0, 'us': 1.0, 'several': 1.0, 'endure': 1.0, 'to': 1.0, 'our': 1.0, 'that': 1.0, 'sturdy': 1.0, 'year': 1.0, 'old': 1.0, 'two': 1.0, 'i': 1.0, 'the': 2.0, 'without': 1.0, 'enough': 1.0, 'dying': 1.0, 'bath': 1.0, 'on': 1.0, 'across': 1.0, 'green': 1.0, 'and': 2.0, 'are': 1.0, 'accurate': 1.0, 'like': 1.0, 'thermometers': 1.0, 'blue': 1.0}
Word element => {'tub': 1.0, 'in': 1.0, 'around': 1.0, 'on': 1.0, 'colors': 1.0, 'thermometer': 1.0, 'will': 1.0, 'different': 1.0, 'that': 1.0, 'love': 1.0, 'the': 6.0, 'great': 1.0, 'thrown': 1.0, 'feature': 1.0, 'temperature': 1.0, 'getting': 1.0, 'and': 1.0, 'of': 1.0, 'based': 1.0, 'up': 1.0, 'turtle': 1.0, 'glow': 1.0, 'holds': 1.0, 'well': 1.0, 'to': 1.0, 'abuse': 1.0}
Word element => {'smells': 1.0, 'is': 1.0, 'of': 2.0, 'think': 1.0, 'this': 1.0, 'plastic': 1.0, 'even': 1.0, 'con': 1.0, 'i': 1.0, 'does': 1.0, 'do': 1.0, 'that': 1.0, 'what': 1.0, 'exactly': 1.0, 'to': 1.0, 's': 1.0, 'can': 1.0, 'it': 2.0, 'supposed': 1.0, 'only': 1.0}
Word element => {'you': 1.0, 'works': 1.0, 'just': 1.0, 'when': 1.0, 'flawlessly': 1.0, 'right': 1.0, 'exactly': 1.0, 'this': 1.0, 'at': 1.0, 'shows': 1.0, 'little': 1.0, 'thank': 1.0, 'awesome': 1.0, 'the': 1.0, 'more': 1.0, 'turtle': 1.0, 'is': 2.0, 'no': 1.0, 'guessing': 1.0, 'water': 2.0, 'and': 1.0, 'temp': 1.0}
Word element => {'for': 1.0, 'kids': 1.0, 'fun': 1.0, 'well': 1.0, 's': 1.0, 'play': 1.0, 'this': 1.0, 'to': 1.0, 'product': 1.0, 'a': 1.0, 'as': 1.0, 'and': 1.0, 'great': 1.0, 'it': 2.0, 'makes': 1.0, 'with': 1.0, 'is': 1.0, 'bath': 1.0, 'time': 1.0, 'easy': 1.0}
Word element => {'great': 1.0, 'about': 1.0, 'easy': 1.0, 'time': 1.0, 'makes': 1.0, '98': 1.0, 'worry': 1.0, '100': 1.0, 'start': 1.0, 'product': 1.0, 'usually': 1.0, 'but': 1.0, 'two': 1.0, 'at': 2.0, 'safe': 1.0, 'says': 1.0, 'my': 2.0, 'a': 1.0, 'check': 1.0, 'less': 1.0, 'when': 1.0, 'i': 3.0, 'thing': 1.0, 'pregnant': 1.0, 'used': 1.0, 'even': 1.0, 'son': 1.0, 'is': 1.0, 'its': 1.0, 'to': 2.0, 'was': 1.0, 'now': 1.0, 'it': 3.0, 'water': 1.0, '4': 1.0, 'months': 1.0, 'hundred': 1.0, 'temperature': 1.0, 'and': 2.0, 'we': 1.0, 'one': 1.0, 'for': 1.0, 'use': 1.0, 'bath': 3.0, 'every': 1.0}
Word element => {'5': 1.0, 'from': 1.0, 'dropping': 1.0, 'too': 2.0, 'water': 1.0, 'better': 1.0, 'indicates': 1.0, 'thermometers': 1.0, 'the': 4.0, 'really': 2.0, 'is': 2.0, 'fine': 1.0, 'rating': 1.0, 'other': 1.0, 'it': 3.0, 'stopped': 1.0, 'stars': 1.0, 'love': 1.0, 'for': 2.0, 'using': 1.0, 'thermometer': 2.0, 'or': 1.0, 'i': 2.0, 'a': 1.0, 'my': 2.0, 'than': 1.0, 'because': 1.0, 'baby': 1.0, 'cold': 1.0, 'are': 1.0, 'must': 1.0, 'have': 1.0, 'update': 1.0, 'bathing': 1.0, 'after': 1.0, 'if': 1.0, '10': 1.0, 'weeks': 1.0, '2': 1.0, 'but': 1.0, 'disappointing': 1.0, 'hot': 1.0, 'has': 1.0, 'working': 1.0, 'this': 1.0, 'sensor': 1.0, 'batteries': 1.0, 'seems': 1.0, 'to': 2.0, 'be': 1.0, 'm': 1.0, 'messed': 1.0, 'up': 1.0}
Word element => {'quickly': 1.0, 'arrived': 1.0, 'well': 1.0, 'works': 1.0, 'hot': 1.0, 'cute': 1.0, 'packaged': 1.0, 'so': 2.0, 'great': 1.0, 'the': 1.0, 'make': 1.0, 'is': 1.0, 'turtle': 1.0, 'highly': 1.0, 'colors': 1.0, 'it': 2.0, 'this': 1.0, 'and': 2.0, 'temperature': 1.0, 'for': 1.0, 'cold': 1.0, 'good': 1.0, 'different': 1.0, 'water': 1.0, 'recommend': 1.0, 'easy': 1.0, 'thermometer': 1.0, 'use': 1.0, 'was': 1.0, 'to': 1.0}
Word element => {'hot': 1.0, 'right': 1.0, 'showing': 1.0, 'lights': 1.0, 'cold': 1.0, 'are': 1.0, 'there': 1.0, 'shuts': 1.0, 'snd': 1.0, 'too': 2.0, 'when': 2.0, 'removed': 1.0, 'toy': 1.0, 'automatically': 1.0, 'cute': 1.0, 'if': 1.0, 'constantly': 1.0, 'does': 1.0, 'a': 2.0, 'just': 1.0, 'not': 1.0, 'is': 3.0, 'monitoring': 1.0, 'on': 1.0, 'in': 1.0, 'also': 2.0, 'turns': 1.0, 'turtle': 1.0, 'only': 1.0, 'this': 1.0, 'it': 3.0, 'or': 1.0, 'off': 1.0, 'temperture': 2.0, 'job': 1.0, 'great': 1.0, 'the': 4.0, 'displays': 1.0, 'water': 4.0, 'put': 1.0, 'but': 1.0, 'instantly': 1.0}
Word element => {'functional': 1.0, 'has': 1.0, 'recommend': 1.0, 'be': 1.0, 'to': 1.0, 'cute': 1.0, 'gift': 1.0, 'mother': 1.0, 'the': 1.0, 'a': 1.0, 'and': 2.0, 'as': 1.0, 'very': 1.0, 'highly': 1.0, 'tried': 1.0, 'i': 2.0, 'purchased': 1.0, 'already': 1.0, 'out': 1.0, 'is': 1.0, 'this': 2.0, 'it': 2.0, 'with': 1.0, 'happy': 1.0, 'would': 1.0}
Word element => {'in': 1.0, 'evenings': 1.0, 'easier': 1.0, 'much': 1.0, 'fast': 1.0, 'shipped': 1.0, 'cute': 1.0, 's': 1.0, 'faster': 1.0, 'it': 2.0, 'can': 1.0, 'i': 1.0, 'the': 3.0, 'my': 1.0, 'prepping': 1.0, 'of': 1.0, 'say': 1.0, 'water': 1.0, 'what': 1.0, 'his': 1.0, 'me': 1.0, 'temperature': 1.0, 'and': 2.0, 'entertains': 1.0, 'tells': 1.0, 'son': 1.0, 'bath': 1.0, 'makes': 1.0}
Word element => {'around': 1.0, 'likes': 1.0, 'm': 1.0, 'daughter': 1.0, 'happy': 1.0, 'my': 1.0, 'water': 1.0, 'under': 1.0, 'kicking': 1.0, 'hold': 1.0, 'turn': 1.0, 'to': 1.0, 'dry': 1.0, 'directions': 1.0, 'i': 2.0, 'don': 1.0, 'colors': 1.0, 'very': 1.0, 'range': 1.0, 'you': 1.0, 'and': 1.0, 'temperature': 1.0, 'alarm': 1.0, 'tell': 1.0, 'other': 1.0, 'off': 2.0, 'or': 1.0, 'good': 1.0, 'no': 1.0, 'works': 1.0, 'with': 1.0, 'it': 6.0, 'hot': 1.0, 'recommend': 1.0, 'crazy': 1.0, 'cold': 1.0, 'comments': 1.0, 'reading': 1.0, 'based': 1.0, 'on': 1.0, 't': 1.0, 'great': 1.0, 'the': 2.0}
Word element => {'works': 1.0, 'it': 1.0, 'great': 1.0, 'and': 1.0, 'cute': 1.0}
Word element => {'tell': 1.0, 'way': 1.0, 'my': 1.0, 'the': 1.0, 'easy': 1.0, 'far': 1.0, 'but': 1.0, 'thermometer': 1.0, 'use': 1.0, 'while': 1.0, 'so': 1.0, 'as': 1.0, 'very': 1.0, 'and': 2.0, 'only': 1.0, 'it': 2.0, 'once': 1.0, 'was': 1.0, 'to': 2.0, 'both': 1.0, 'used': 1.0, 'our': 1.0, 'confident': 1.0, 'have': 1.0, 'a': 1.0, 'bathing': 1.0, 'wrist': 1.0, 'clear': 1.0, 'i': 1.0, 'felt': 1.0, 'newborn': 1.0, 'having': 1.0}
Word element => {'stores': 1.0, 'available': 1.0, 'readily': 1.0, 'products': 1.0, 'these': 1.0, 'why': 1.0, 'attention': 1.0, 'it': 1.0, 'still': 1.0, 'more': 1.0, 'is': 1.0, 'see': 1.0, 'second': 1.0, 'split': 1.0, 'for': 1.0, 'little': 1.0, 'take': 1.0, 'have': 1.0, 'don': 1.0, 'you': 1.0, 'sure': 1.0, 'easy': 1.0, 'awareness': 1.0, 'makes': 1.0, 'display': 1.0, 'coded': 1.0, 'one': 1.0, 'color': 1.0, 'things': 1.0, 'keep': 1.0, 'aren': 1.0, 'but': 1.0, 'past': 1.0, 'in': 2.0, 'water': 4.0, 'correct': 2.0, 'warmer': 1.0, 'cooler': 1.0, 'cools': 1.0, 'to': 4.0, 'baths': 1.0, 'us': 1.0, 'by': 1.0, 'if': 2.0, 'agreeing': 1.0, 'wife': 1.0, 'needs': 1.0, 'so': 2.0, 'hot': 1.0, 'like': 2.0, 'wasn': 1.0, 'taught': 1.0, 'your': 2.0, 'on': 2.0, 'guy': 1.0, 'showers': 1.0, 'the': 5.0, 'we': 1.0, 'a': 2.0, 't': 3.0, 'my': 1.0, 'were': 1.0, 'or': 1.0, 'tends': 1.0, 'before': 1.0, 'm': 1.0, 'temp': 4.0, 'both': 1.0, 'eyes': 1.0, 'this': 1.0, 'ok': 1.0, 'never': 1.0, 'keeps': 1.0, 'surprised': 1.0, 'too': 1.0, 'and': 1.0, 'eliminates': 1.0, 'not': 1.0, 'track': 1.0, 'me': 2.0, 'guessing': 1.0, 'also': 1.0, 'i': 3.0, 'adding': 1.0, 'how': 1.0, 'fast': 2.0, 'enough': 1.0, 'off': 2.0, 'much': 1.0}
Word element => {'hot': 1.0, 'or': 1.0, 'cold': 1.0, 'indication': 1.0, 'of': 1.0, 'reading': 1.0, 'just': 2.0, 'even': 1.0, 'bath': 1.0, 'time': 1.0, 'is': 1.0, 'for': 1.0, 'in': 1.0, 'have': 1.0, 'must': 1.0, 'see': 1.0, 'a': 1.0, 'product': 1.0, 'put': 1.0, 'water': 1.0, 'with': 1.0, 'this': 1.0, 'it': 3.0, 'right': 1.0, 'can': 1.0, 'the': 2.0, 'too': 2.0, 'when': 1.0, 'you': 3.0, 's': 1.0, 'color': 1.0, 'running': 1.0, 'temperature': 1.0, 'do': 1.0, 'and': 1.0}
Word element => {'happened': 1.0, 'read': 2.0, 'seen': 1.0, 'highest': 1.0, 'friendly': 1.0, 'not': 2.0, 'the': 18.0, 'imagine': 1.0, 'quickly': 1.0, 'mouths': 1.0, 'so': 2.0, 'boy': 1.0, 'll': 3.0, 'reading': 1.0, 'grab': 1.0, 'water': 1.0, 'up': 1.0, 'had': 2.0, 'nighttime': 1.0, 'add': 1.0, 'thick': 1.0, 'baby': 2.0, 'then': 2.0, 'we': 5.0, 'wrist': 1.0, 'away': 1.0, 'elbow': 1.0, 'my': 2.0, 'are': 1.0, 'hottest': 1.0, 'first': 1.0, 'care': 1.0, 'wasn': 1.0, 'fine': 1.0, 'like': 2.0, 'really': 1.0, 'battery': 1.0, 'look': 1.0, 'can': 2.0, 'is': 2.0, 'or': 1.0, 'likes': 1.0, 't': 3.0, 'you': 4.0, 'feet': 1.0, 'i': 15.0, 'well': 1.0, 'what': 2.0, 'glance': 1.0, 'he': 4.0, 'this': 3.0, 'be': 2.0, 'it': 19.0, 'red': 1.0, 'with': 5.0, 'plunk': 1.0, 'soon': 1.0, 'green': 2.0, 'too': 3.0, 'that': 3.0, 'problems': 1.0, 'easily': 1.0, 'loves': 1.0, 'his': 2.0, 'mouth': 1.0, 'blue': 2.0, 'floats': 2.0, 'in': 6.0, 'thermometer': 1.0, 'dry': 1.0, 'bath': 4.0, 'thought': 1.0, 'test': 1.0, 'sitting': 1.0, 'their': 1.0, 'most': 1.0, 'son': 1.0, 'big': 2.0, 'ducky': 1.0, 'turns': 1.0, 'an': 1.0, 'all': 1.0, 'raising': 1.0, 'of': 2.0, 'ultimately': 1.0, 'our': 1.0, 'how': 1.0, 'right': 1.0, 'cold': 1.0, 'to': 8.0, 'now': 1.0, 'works': 1.0, 'pose': 1.0, 'tell': 1.0, 'its': 1.0, 'easy': 1.0, 'know': 1.0, 'a': 8.0, 'turtle': 3.0, 'about': 2.0, 'freaks': 1.0, 'colors': 1.0, 'wanted': 1.0, 'tub': 3.0, 'more': 2.0, 'protect': 1.0, 'don': 1.0, 'afraid': 1.0, 'for': 3.0, 'lit': 1.0, 'light': 1.0, 'warm': 1.0, 'and': 8.0, 'just': 5.0, 'after': 2.0, 'infant': 1.0, 'by': 1.0, 'pool': 1.0, 'funky': 1.0, 'great': 1.0, 'if': 3.0, 'bigger': 2.0, 'slight': 1.0, 'letting': 1.0, 'going': 2.0, 'kid': 1.0, 'nothing': 1.0, 'screen': 3.0, 'break': 1.0, 'kick': 2.0, 'off': 1.0, 'yes': 1.0, 'become': 1.0, 'toy': 1.0, 'hazard': 2.0, 'around': 1.0, 'each': 1.0, 've': 2.0, 'no': 2.0, 'hot': 1.0, 'found': 1.0, 'have': 1.0, 'does': 1.0, 'smell': 2.0, 'afternoon': 1.0, 'was': 1.0, 'rubber': 1.0, 'make': 1.0, 'open': 1.0, 'survive': 1.0, 'work': 1.0, 'over': 1.0, 'plastic': 2.0, 'package': 1.0, 'but': 1.0, 'went': 2.0, 'at': 2.0, 'squishy': 1.0, 'being': 1.0, 'aired': 1.0, 'probably': 1.0, 'before': 1.0, 'when': 2.0, 'honestly': 1.0, 'any': 1.0, 'smells': 1.0, 'temp': 3.0, 'since': 2.0, 'nicely': 1.0, 'made': 1.0, 'rubbery': 1.0, 'where': 1.0, 'your': 1.0, 'pity': 1.0, 'as': 2.0, 'hawaii': 1.0, 'teacher': 1.0, 'during': 1.0, 'out': 2.0, 'attest': 1.0, 'guy': 1.0, 'matter': 1.0, 'quick': 1.0, 'than': 2.0, 'they': 2.0, 'will': 1.0, 'could': 1.0, 'put': 1.0, 'did': 1.0, 'betting': 1.0, 'packed': 1.0, 'again': 1.0, 'm': 3.0, 's': 5.0, 'doesn': 1.0, 'choking': 2.0, 'seem': 1.0, 'them': 1.0, 'regular': 1.0, 'spa': 2.0, 'things': 1.0, 'myself': 1.0, 'numbers': 1.0, 'wishing': 1.0, 'd': 1.0, 'little': 1.0, '107': 1.0, 'control': 1.0, 'house': 1.0}
Word element => {'keep': 1.0, 'did': 1.0, 'after': 1.0, 'so': 1.0, 'mold': 1.0, 'of': 1.0, 'know': 1.0, 'really': 1.0, 'works': 1.0, 'part': 2.0, 'couldn': 1.0, 'turtle': 1.0, 'great': 1.0, 't': 2.0, 'the': 2.0, 'into': 1.0, 'water': 1.0, 'tossed': 1.0, 'afraid': 1.0, 'don': 1.0, 'see': 1.0, 'a': 2.0, 'thermometer': 1.0, 'got': 1.0, 'how': 1.0, 'it': 3.0, 'week': 1.0, 'examined': 1.0, 'but': 2.0, 'which': 1.0, 'anything': 1.0, 'whole': 1.0, 'i': 6.0, 'guess': 1.0, 'was': 1.0, 'had': 1.0, 'tiny': 1.0}
Word element => {'amazon': 1.0, 'rating': 1.0, 'why': 1.0, 'problem': 1.0, 'case': 1.0, 'high': 1.0, 'my': 1.0, 'resolve': 1.0, 'water': 1.0, 'no': 1.0, 's': 1.0, 'or': 1.0, 'battery': 1.0, 'replacing': 1.0, 'i': 3.0, 'understand': 1.0, 'leak': 1.0, 'there': 1.0, 'up': 1.0, 'it': 1.0, 'only': 1.0, 'now': 1.0, 'to': 1.0, 'in': 1.0, 'cannot': 2.0, 'started': 1.0, 't': 1.0, '2': 1.0, 'mess': 1.0, 'the': 5.0, 'use': 1.0, 'after': 1.0, 'so': 2.0, 'and': 1.0, '1': 1.0, 'temperature': 2.0, 'get': 1.0, 'for': 1.0, 'exact': 1.0, 'gets': 1.0, 'number': 2.0, 'by': 1.0, 'can': 1.0, 'judge': 1.0, 'don': 1.0, 'colors': 1.0}
Word element => {'may': 1.0, 'sibling': 1.0, 'or': 1.0, 'who': 1.0, 'baby': 1.0, 'got': 1.0, 'if': 1.0, 'oh': 1.0, 'hit': 1.0, 'decent': 1.0, 'others': 1.0, 'wants': 1.0, 'gets': 1.0, 'storage': 1.0, 'throw': 2.0, 'thing': 1.0, 'not': 2.0, 'weight': 1.0, 'seconds': 1.0, 'take': 1.0, 'prepared': 1.0, 'are': 1.0, 'after': 1.0, 'dry': 1.0, 'in': 3.0, 'maybe': 2.0, 'does': 1.0, 'note': 1.0, 'but': 1.0, 'extra': 1.0, 'blue': 1.0, 'be': 2.0, 'don': 1.0, 'floats': 1.0, 've': 2.0, 'screen': 1.0, 'great': 1.0, 'the': 6.0, 'with': 1.0, 'red': 1.0, 'do': 1.0, 'works': 1.0, 'it': 7.0, 'this': 2.0, 'toys': 1.0, 'shows': 1.0, 'couldn': 1.0, 'couple': 1.0, 'that': 1.0, 'tj': 1.0, 'been': 1.0, 'bath': 1.0, 'make': 1.0, 'on': 1.0, 'actually': 1.0, 'for': 2.0, 'like': 1.0, 'using': 1.0, 'now': 1.0, 'to': 7.0, 't': 2.0, 'a': 6.0, 'we': 1.0, 'say': 1.0, 'around': 1.0, 'check': 1.0, 'top': 1.0, 'shower': 1.0, 'of': 1.0, 'instructions': 1.0, 'use': 1.0, 'when': 1.0, 'simpler': 1.0, 'you': 5.0, 'best': 1.0, 'temp': 2.0, 'tub': 1.0, 'sure': 1.0, 'easy': 1.0, 'and': 4.0, 'green': 1.0, 'too': 2.0, 'cold': 1.0, 'wet': 1.0, 'few': 1.0, 'just': 1.0, 'right': 1.0, 'usage': 1.0, 'toy': 2.0, 'has': 2.0, 'hot': 1.0, 'one': 1.0, 'months': 1.0, 'color': 1.0, 'so': 5.0, 'have': 1.0}
Word element => {'happy': 2.0, 'in': 1.0, 'parents': 1.0, 'always': 1.0, 'gone': 1.0, 'mostly': 1.0, 'now': 1.0, 'adults': 1.0, 'us': 1.0, 'nice': 1.0, 'this': 1.0, 'come': 1.0, 'bathing': 1.0, 'temperature': 1.0, 'hot': 1.0, 'has': 1.0, 'baby': 4.0, 'don': 1.0, 'really': 1.0, 'advised': 1.0, 'but': 1.0, 'turtle': 1.0, 'him': 1.0, 'thermometer': 1.0, 'bath': 2.0, 'worried': 1.0, 'use': 2.0, 'so': 1.0, 'i': 2.0, 'was': 5.0, 'our': 2.0, 'to': 3.0, 'water': 4.0, 'green': 1.0, 'and': 5.0, 'too': 4.0, 'when': 1.0, 'the': 4.0, 'warm': 3.0, 'for': 2.0, 'using': 1.0, 's': 1.0, 't': 2.0, 'we': 3.0, 'is': 3.0, 'want': 1.0, 'it': 1.0, 'felt': 1.0, 'find': 1.0, 'newborn': 1.0, 'out': 1.0, 'eczema': 2.0, 'temp': 1.0, 'that': 3.0, 'been': 1.0, 'didn': 1.0, 'definitely': 1.0, 'bought': 1.0, 'cool': 1.0, 'either': 1.0, 'had': 1.0, 'what': 1.0}
Word element => {'was': 1.0, 'bad': 2.0, 'or': 1.0, 'stick': 1.0, 'would': 1.0, 'i': 1.0, 'temps': 1.0, 'instead': 1.0, 'exact': 1.0, 'just': 1.0, 'worried': 1.0, 'are': 1.0, 'baby': 1.0, 'very': 1.0, 'little': 1.0, 'have': 1.0, 'you': 1.0, 'but': 2.0, 'toddler': 1.0, 'buy': 1.0, 'plays': 1.0, 'always': 1.0, 'up': 1.0, '6': 1.0, 'he': 1.0, 'with': 2.0, 'picked': 1.0, 'as': 2.0, 'ok': 1.0, 'trusted': 1.0, 'get': 1.0, 'tub': 1.0, 'old': 1.0, 'reasons': 1.0, 'one': 1.0, 'bought': 1.0, 'the': 4.0, 'no': 1.0, 'about': 1.0, 'bulky': 1.0, 'in': 1.0, 'product': 1.0, 'for': 6.0, 'is': 3.0, 'a': 4.0, 'check': 1.0, 'be': 1.0, 'him': 2.0, 'moment': 1.0, 'it': 5.0, 'month': 1.0, 'this': 3.0, 'doing': 1.0, 'thermometer': 2.0, 'on': 1.0, 'bath': 1.0, 'so': 1.0, 'toy': 1.0, 'temperature': 1.0, 'changes': 1.0, 'similar': 1.0, 'and': 2.0, 'did': 1.0, 'those': 1.0, 'me': 1.0, 'kinda': 1.0, 'not': 3.0, 'fun': 1.0, 'temp': 2.0, 'register': 1.0, 'if': 1.0, 'same': 1.0, 'another': 1.0, 'my': 1.0, 'may': 1.0, 'good': 2.0}
Word element => {'of': 1.0, 'totally': 1.0, 'product': 1.0, 'because': 1.0, 'thermometer': 1.0, 'use': 1.0, 'better': 1.0, 'a': 1.0, 'blue': 1.0, 'money': 1.0, 'don': 1.0, 'toy': 1.0, 'few': 1.0, 'working': 2.0, 'overpriced': 1.0, 'green': 1.0, 'buy': 1.0, 'you': 1.0, 'after': 1.0, 'waste': 1.0, 'uses': 1.0, 'numbers': 1.0, 'showing': 1.0, 'light': 1.0, 'and': 1.0, 'it': 1.0, 'stopped': 2.0, 'this': 2.0, 'only': 1.0, 'defective': 1.0, 'traditional': 1.0, 't': 1.0, 'the': 2.0, 'is': 2.0}
Word element => {'stores': 1.0, 'baby': 1.0, 'other': 1.0, 'those': 1.0, 'of': 1.0, 'read': 1.0, 'easy': 1.0, 'old': 1.0, 'i': 2.0, 'to': 1.0, 'loves': 1.0, 'and': 2.0, 'knows': 1.0, 'than': 1.0, 'in': 1.0, 'water': 1.0, 'pull': 1.0, 'great': 1.0, 'placed': 1.0, 'turtlemeter': 1.0, 'is': 3.0, 'second': 1.0, 'longer': 1.0, 'the': 2.0, 'turns': 1.0, 'turtle': 2.0, 'absolutely': 1.0, 'cute': 1.0, 'works': 1.0, 'she': 1.0, 'month': 1.0, 'it': 3.0, 'this': 2.0, '6': 1.0, 'how': 1.0, 's': 1.0, 'on': 1.0, 'bath': 1.0, 'purchased': 1.0, 'time': 1.0, 'temperature': 1.0, 'lasted': 1.0, 'has': 1.0, 'when': 1.0, 'out': 1.0, 'gauge': 2.0, 'my': 1.0, 'tempurature': 1.0, 'another': 1.0, 'from': 1.0, 'months': 1.0, 'one': 1.0}
Word element => {'baby': 1.0, 'helpful': 1.0, 'as': 1.0, 'just': 1.0, 'be': 1.0, 'will': 1.0, 'when': 1.0, 'm': 1.0, 'loves': 1.0, 'so': 1.0, 'expecting': 1.0, 'she': 2.0, 'pregnancy': 1.0, 'wife': 1.0, 'for': 2.0, 'could': 1.0, 'arrives': 1.0, 'my': 1.0, 'make': 1.0, 'correct': 1.0, 'during': 1.0, 'it': 2.0, 'this': 1.0, 'and': 1.0, 'temperature': 1.0, 'mothers': 1.0, 'bath': 1.0, 'purchased': 1.0, 'i': 2.0, 'sure': 2.0, 'our': 1.0, 'were': 1.0, 'that': 1.0, 'her': 1.0, 'within': 1.0, 'the': 1.0, 'temperatures': 1.0}
Word element => {'husband': 1.0, 'down': 1.0, 'cooled': 1.0, 'would': 3.0, 'birth': 1.0, 'slightly': 1.0, 'cool': 1.0, 'before': 1.0, 'used': 1.0, 'this': 1.0, 'it': 5.0, 'only': 1.0, 'a': 3.0, 'naked': 1.0, 'waiting': 1.0, 'you': 2.0, 'soaking': 1.0, 'the': 3.0, 'bring': 1.0, 'great': 1.0, 'for': 5.0, 'our': 1.0, 'to': 1.0, 'standing': 1.0, 'had': 1.0, 'temp': 2.0, 'no': 1.0, 'sponge': 1.0, 'once': 2.0, 'of': 1.0, 'more': 1.0, 'is': 1.0, 'your': 1.0, 'bath': 3.0, 'tool': 1.0, 'use': 1.0, 'get': 2.0, 'reaches': 1.0, 'and': 3.0, 'in': 4.0, 'because': 1.0, 'by': 1.0, 'just': 1.0, 'give': 1.0, 'not': 1.0, 'tolerable': 1.0, 'step': 1.0, 'i': 5.0, 'my': 3.0, 'baby': 2.0, 'did': 1.0, 'own': 1.0, 'checking': 1.0, 'him': 2.0, 'but': 1.0, 'after': 1.0}
Word element => {'product': 1.0, 'for': 1.0, 'surprise': 1.0, 'good': 1.0, 'floating': 1.0, 'cold': 1.0, 'around': 1.0, 'is': 2.0, 'water': 3.0, 'glance': 1.0, 'regulate': 1.0, 'bigger': 1.0, 'at': 2.0, 'or': 1.0, 'loves': 1.0, 'too': 1.0, 'and': 1.0, 'me': 4.0, 'which': 1.0, 'know': 1.0, 'like': 2.0, 'so': 1.0, 'i': 3.0, 'watching': 1.0, 'multicolor': 1.0, 'the': 6.0, 'if': 1.0, 'better': 1.0, 'this': 2.0, 'it': 3.0, 'display': 2.0, 'turtle': 1.0, 'lets': 2.0, 'far': 1.0, 'also': 2.0, 'given': 1.0, 'idea': 1.0, 'of': 1.0, 'what': 1.0, 'my': 2.0, 'baby': 2.0, 'prefers': 1.0, 'a': 3.0, 's': 2.0, 'much': 2.0, 'expected': 1.0, 'temperature': 3.0, 'hot': 1.0, 'has': 1.0, 'easier': 1.0, 'to': 1.0, 'than': 1.0, 'find': 1.0, 'right': 1.0, 'really': 2.0, 'every': 1.0, 'bath': 1.0}
Word element => {'baths': 1.0, 'even': 1.0, 'my': 2.0, 'water': 1.0, 'if': 1.0, 'wonder': 1.0, 'never': 1.0, 'current': 1.0, 'second': 1.0, 'every': 1.0, 'checks': 1.0, 'most': 1.0, 'prefers': 1.0, 'read': 1.0, 'anymore': 1.0, 'recommend': 1.0, 'use': 2.0, 'bath': 1.0, 'thermometer': 2.0, 'so': 2.0, 'finding': 1.0, 'to': 3.0, 'everyone': 1.0, 'it': 3.0, 'this': 2.0, 'easy': 1.0, 'get': 1.0, 'i': 4.0, 'is': 6.0, 'accurate': 1.0, 'would': 1.0, 've': 1.0, 'been': 1.0, 'now': 1.0, 'weeks': 1.0, 'blue': 2.0, 'for': 3.0, 'a': 1.0, 'the': 6.0, 'red': 2.0, 'color': 1.0, 'progression': 1.0, 'makes': 1.0, 'right': 2.0, 'fast': 1.0, 'simple': 1.0, 'and': 3.0, 'green': 3.0, 'too': 3.0, 'cold': 1.0, 'few': 1.0, 'just': 1.0, 'using': 1.0, 'know': 2.0, 'temperature': 4.0, 'hot': 2.0, 'within': 1.0, 'you': 3.0, 'what': 1.0, 'll': 1.0, 'range': 1.0, 'baby': 2.0}
Word element => {'fix': 1.0, 'hoping': 1.0, 'in': 1.0, 'up': 3.0, 'of': 2.0, 'so': 2.0, 'after': 1.0, 'or': 2.0, 'meter': 1.0, 'but': 3.0, 'put': 1.0, 'month': 1.0, 'it': 3.0, 'first': 1.0, 'started': 1.0, 'light': 1.0, 'just': 1.0, 'the': 9.0, 'turtlemeter': 1.0, 'would': 1.0, 'new': 1.0, 'is': 3.0, 'that': 3.0, 'a': 1.0, 'we': 2.0, 'digital': 2.0, 'temperature': 1.0, 'worked': 1.0, 'used': 1.0, 'color': 1.0, 'still': 2.0, 'act': 1.0, 'indicates': 1.0, 'if': 1.0, 'water': 1.0, 'too': 1.0, 'warm': 1.0, 'messed': 2.0, 'cold': 1.0, 'actually': 1.0, 'fine': 1.0, 'right': 1.0, 'read': 3.0, 'couple': 1.0, 'out': 2.0, 'to': 1.0, 'all': 1.0, 'times': 1.0, 'you': 1.0, 'cannot': 1.0, 'batteries': 1.0}
Word element => {'great': 1.0, 'or': 1.0, 'hot': 1.0, 'too': 1.0, 'my': 1.0, 'been': 1.0, 'since': 1.0, 'turtlemeter': 1.0, 'very': 1.0, 'as': 1.0, 'son': 1.0, 'using': 1.0, 'love': 1.0, 'this': 1.0, 'it': 2.0, 'cold': 1.0, 'helpful': 1.0, 'buy': 1.0, 'i': 3.0, 'absolutely': 1.0, 'found': 1.0, 'was': 1.0, 'have': 1.0, 'born': 1.0, 'about': 1.0, 'always': 1.0, 'worried': 1.0, 'water': 1.0, 'being': 1.0}
Word element => {'as': 1.0, 'and': 1.0, 'tub': 1.0, 'in': 1.0, 'a': 2.0, 'cute': 1.0, 'holding': 1.0, 'easier': 1.0, 'to': 1.0, 'right': 1.0, 'easy': 1.0, 'just': 1.0, 'tell': 1.0, 'so': 1.0, 'makes': 1.0, 'little': 1.0, 'love': 1.0, 'this': 1.0, 'it': 3.0, 's': 1.0, 'bonus': 1.0, 'way': 1.0, 'turtle': 1.0, 'i': 1.0, 'or': 1.0, 'if': 1.0, 'the': 2.0, 'thermometer': 1.0, 'bath': 1.0, 'is': 1.0, 'than': 1.0, 'water': 1.0, 'too': 2.0, 'hot': 1.0, 'cold': 1.0}
Word element => {'win': 2.0, 'a': 1.0, 's': 1.0, 'bathes': 1.0, 'while': 1.0, 'with': 1.0, 'seemed': 1.0, 'times': 1.0, 'sure': 1.0, 'love': 1.0, 'for': 1.0, 'baths': 1.0, 'girl': 1.0, 'happens': 1.0, 'personally': 1.0, 'm': 1.0, 'water': 2.0, 'i': 5.0, 'nervous': 1.0, 'have': 1.0, 'to': 3.0, 'was': 2.0, 'husband': 1.0, 'so': 2.0, 'time': 1.0, 'comfort': 1.0, 'hot': 2.0, 'has': 1.0, 'the': 4.0, 'my': 3.0, 'every': 1.0, 'baby': 2.0, 'many': 2.0, 'say': 2.0, 'is': 2.0, 'fine': 1.0, 'bathed': 1.0, 'cold': 1.0, 'given': 1.0, 'opposite': 1.0, 'he': 1.0, 'this': 1.0, 'parents': 1.0, 'always': 1.0, 'would': 1.0, 'new': 1.0, 'turtlemeter': 1.0, 'me': 1.0, 'play': 1.0, 'too': 2.0, 'and': 1.0, 'loves': 1.0, 'that': 1.0, 'it': 3.0, 'she': 2.0}
Word element => {'useful': 1.0, 'able': 1.0, 'by': 1.0, 'hope': 1.0, 'before': 1.0, 'side': 1.0, 'out': 1.0, 'then': 1.0, 'enough': 1.0, 'long': 1.0, 'his': 1.0, 'at': 1.0, 'looking': 1.0, 'extremely': 1.0, 'he': 1.0, 'but': 1.0, 'm': 1.0, 'nice': 1.0, 'is': 1.0, 'only': 2.0, 'happy': 1.0, 'turtle': 3.0, 'doing': 1.0, 'perfect': 1.0, 'this': 2.0, 'so': 1.0, 'with': 2.0, 'very': 1.0, 'from': 1.0, 'son': 2.0, 'moved': 1.0, 'and': 6.0, 'get': 1.0, 'couldn': 1.0, 'not': 1.0, 'me': 1.0, 'thermometer': 2.0, 'already': 1.0, 'lifespan': 1.0, 'put': 1.0, 'bath': 4.0, 'in': 3.0, 'set': 1.0, 'built': 1.0, 'had': 2.0, 'as': 1.0, 'to': 6.0, 'loves': 1.0, 'that': 3.0, 'baby': 2.0, 'am': 1.0, 'when': 1.0, 'i': 13.0, 'because': 1.0, 'home': 1.0, 'temperature': 2.0, 'well': 1.0, 'brought': 1.0, 'know': 2.0, 'using': 1.0, 'bought': 1.0, 'one': 1.0, 'my': 4.0, 'the': 6.0, 's': 2.0, 'a': 5.0, 'ago': 1.0, 't': 2.0, 'hospital': 1.0, 'reassuring': 1.0, 'be': 1.0, 'giving': 2.0, 'him': 1.0, 'warm': 1.0, 'baths': 1.0, 'prolong': 1.0, 'it': 8.0, 'month': 1.0, 'take': 3.0, 'll': 1.0, 'everytime': 2.0, 'soooo': 1.0, 'new': 2.0, 'was': 3.0, 'consistent': 1.0, 'doesn': 1.0, 'leave': 1.0, 'have': 1.0}
Word element => {'dried': 1.0, 'off': 1.0, 'stay': 1.0, 'will': 1.0, 'or': 1.0, 'take': 1.0, 'bottom': 2.0, 'only': 1.0, 'dry': 1.0, 'turtle': 1.0, 'had': 1.0, 'thought': 1.0, 'a': 1.0, 'getting': 1.0, 'once': 1.0, 'of': 2.0, 'out': 2.0, '101': 1.0, '100': 1.0, 'usually': 1.0, 'red': 1.0, 'cold': 1.0, 'if': 3.0, 'thing': 1.0, 'about': 2.0, 'wipe': 1.0, 'baby': 1.0, 'helps': 1.0, 'guess': 1.0, 'nervous': 1.0, 'was': 2.0, 'work': 1.0, 'but': 2.0, 'on': 1.0, 'make': 1.0, 'bath': 1.0, 'put': 2.0, 'ready': 1.0, 'blue': 1.0, 'baths': 1.0, 'warm': 1.0, 'really': 1.0, 'is': 5.0, 'away': 1.0, 'older': 1.0, 'durable': 1.0, 'it': 8.0, 'this': 2.0, 'my': 1.0, 'few': 1.0, 'just': 2.0, 'seconds': 1.0, 'glad': 1.0, 'i': 5.0, 'so': 2.0, 'got': 1.0, 'thermometer': 1.0, 'use': 1.0, 'hot': 2.0, 'likes': 1.0, 'cute': 1.0, 'green': 1.0, 'too': 3.0, 'and': 4.0, 'turns': 1.0, 'the': 8.0, 'fine': 1.0, 'takes': 1.0, 'right': 4.0, 'temp': 2.0, 'lights': 1.0, 'for': 1.0, 'to': 1.0, 'our': 1.0, 'accurate': 1.0, 'new': 1.0, 'top': 1.0, 'sure': 1.0, 'easy': 1.0, 'when': 2.0, 'times': 1.0, 'you': 3.0, 'in': 2.0, 'water': 3.0, '15': 1.0, 'later': 1.0, 'over': 1.0, 'child': 1.0, 'up': 1.0}
Word element => {'bit': 1.0, 'a': 1.0, 'will': 1.0, 'longer': 1.0, 'really': 1.0, 'so': 1.0, 'fast': 1.0, 'one': 1.0, 'for': 2.0, 'company': 1.0, 'you': 1.0, 'shows': 1.0, 'hoping': 1.0, 'now': 1.0, 'product': 1.0, 'temp': 1.0, 'very': 2.0, 'and': 2.0, 'good': 1.0, 'this': 1.0, 'it': 2.0, 'clear': 1.0, 'i': 2.0, 'different': 1.0, 'used': 1.0, 'long': 1.0, 'before': 1.0, 'the': 1.0, 't': 1.0, 'didn': 1.0, 'last': 2.0, 'm': 1.0, 'too': 1.0}
Word element => {'up': 1.0, 'as': 1.0, 'enjoy': 1.0, 'would': 1.0, 'boy': 1.0, 'my': 1.0, 'and': 1.0, 'toy': 1.0, 'engaging': 1.0, 'an': 1.0, 'be': 1.0, 'used': 1.0, 'found': 1.0, 'still': 1.0, 'are': 1.0, 'the': 2.0, 'we': 1.0, 'havent': 1.0, 'b': 1.0, 'thermometer': 1.0, 'since': 1.0, 'bathing': 1.0, 'yet': 1.0, 'one': 1.0, 'i': 2.0, 'little': 2.0, 'in': 1.0, 'to': 2.0, 'had': 1.0, 'playing': 1.0, 'that': 1.0, 'something': 1.0, 'our': 1.0, 'sink': 1.0, 'just': 1.0, 'have': 1.0, 'grows': 1.0, 'he': 1.0, 'with': 1.0, 'it': 1.0, 'this': 1.0, 'c': 1.0}
Word element => {'you': 1.0, 'temperate': 1.0, 'go': 1.0, 'to': 1.0, 'product': 1.0, 'on': 1.0, 'is': 1.0, 'lights': 1.0, 'this': 1.0, 'loves': 1.0, 'helpful': 1.0, 'it': 1.0, 'know': 1.0, 'very': 1.0, 'and': 1.0, 'let': 1.0, 'the': 2.0, 'my': 1.0, 'doughter': 1.0, 'because': 1.0}
Word element => {'good': 1.0, 'up': 1.0, 'keep': 1.0, 'awesome': 1.0, 'an': 1.0, 'such': 1.0, 'making': 1.0, 'you': 1.0, 'thank': 1.0, 'have': 1.0, 'about': 1.0, 'thing': 1.0, 'less': 1.0, 'be': 1.0, 'regret': 1.0, 'my': 1.0, 'do': 1.0, 'and': 3.0, 'turtle': 2.0, 'this': 1.0, 'it': 3.0, 'that': 2.0, 'i': 5.0, 'not': 3.0, 'after': 1.0, 'boy': 1.0, 'so': 1.0, 'reviews': 1.0, 'cold': 1.0, 'reading': 1.0, 'the': 6.0, 'one': 1.0, 'decided': 1.0, 'all': 1.0, 'to': 6.0, 'as': 1.0, 'product': 1.0, 'for': 1.0, 'love': 1.0, 'work': 1.0, 'reads': 1.0, 'tub': 1.0, 'every': 1.0, 'worried': 2.0, 'second': 1.0, 'is': 1.0, 'ahead': 1.0, 'baby': 1.0, 'great': 1.0, 'nice': 1.0, 'buy': 1.0, 'thx': 1.0, 'warm': 1.0, 'in': 1.0, 'temperature': 1.0, 'hot': 1.0, 'new': 1.0, 'mom': 1.0, 'temp': 1.0, 'm': 1.0, 'bath': 1.0, 'constantly': 1.0, 'makers': 1.0, 'go': 1.0, 'a': 1.0, 's': 1.0}
Word element => {'right': 1.0, 'just': 1.0, 'water': 1.0, 'temp': 1.0, 'and': 2.0, 'when': 1.0, 'us': 1.0, 'gives': 1.0, 'works': 1.0, 'love': 2.0, 'product': 1.0, 'i': 1.0, 'green': 1.0, 'to': 1.0, 'it': 1.0, 'this': 1.0, 'a': 1.0, 'blue': 1.0, 'indicate': 1.0, 'up': 1.0, 'reading': 1.0, 'immediately': 1.0, 'great': 1.0, 'the': 2.0, 'red': 1.0, 'light': 1.0, 'is': 1.0, 'features': 1.0}
Word element => {'rubber': 1.0, 'now': 1.0, 'to': 1.0, 'month': 1.0, 'that': 1.0, 'thought': 1.0, 'work': 1.0, 'but': 1.0, 'i': 1.0, 'toy': 1.0, 'about': 1.0, 'a': 1.0, 'well': 1.0, 'for': 3.0, 'worked': 1.0, 'product': 1.0, '19': 1.0, 'it': 1.0, 'with': 1.0, 'this': 1.0, 'working': 1.0, '2': 1.0, 'the': 1.0, 'are': 1.0, 'batteries': 2.0, 'not': 1.0, 'refused': 1.0, 'and': 2.0, 'is': 1.0, 'changed': 1.0, 'them': 1.0, 'new': 2.0, 'thermometer': 1.0}
Word element => {'water': 1.0, 'out': 1.0, 'take': 1.0, 'after': 1.0, 'on': 1.0, 'stay': 1.0, 'will': 1.0, 'i': 1.0, 'do': 1.0, 'one': 1.0, 'for': 1.0, 'not': 1.0, 'thermometer': 1.0, 'it': 2.0, 'only': 1.0, 'like': 1.0, 'your': 1.0, 'dry': 1.0, 'little': 1.0, 'or': 1.0, 'off': 1.0, 'of': 1.0, 'completely': 1.0, 'bottom': 1.0, 'the': 3.0, 'great': 1.0, 'is': 1.0, 'that': 1.0, 'you': 2.0, 'thing': 1.0, 'have': 1.0, 'to': 1.0}
Word element => {'great': 1.0, 'a': 1.0, 'totally': 1.0, 'plate': 1.0, 'belly': 1.0, 'water': 1.0, 'this': 1.0, 'it': 4.0, 'on': 1.0, 'to': 2.0, 'out': 1.0, 'contact': 1.0, 'with': 1.0, 'red': 1.0, 'triggered': 1.0, 'i': 1.0, 'too': 2.0, 'and': 4.0, 'green': 1.0, 'you': 2.0, 'how': 1.0, 'thermometer': 1.0, 'product': 1.0, 'love': 1.0, 'works': 1.0, 'by': 1.0, 'just': 2.0, 'also': 1.0, 'floats': 1.0, 'temp': 1.0, 'tub': 1.0, 'easy': 1.0, 'read': 1.0, 'coding': 1.0, 'helpful': 1.0, 'blue': 1.0, 'color': 1.0, 'cool': 1.0, 'is': 3.0, 'plunk': 1.0, 'around': 1.0, 'right': 1.0, 'hot': 1.0, 'well': 1.0, 'the': 4.0, 'turns': 1.0, 'turn': 1.0, 'in': 1.0, 'itself': 1.0, 'off': 2.0, 'after': 1.0, 'take': 1.0, 'dry': 1.0}
Word element => {'work': 1.0, 'guess': 1.0, 'babies': 1.0, 'likes': 1.0, 'the': 2.0, 'these': 1.0, 'about': 1.0, 'baby': 1.0, 'all': 1.0, 'to': 2.0, 'had': 1.0, 'water': 1.0, 'regular': 1.0, 'i': 2.0, 'it': 5.0, 'found': 2.0, 'this': 2.0, 'sale': 1.0, 'he': 1.0, 'with': 1.0, 'worry': 1.0, 'great': 1.0, 'until': 1.0, 'on': 1.0, 'price': 1.0, 'gem': 1.0, 'temp': 1.0, 'would': 1.0, 'recommend': 1.0, 'use': 1.0, 'even': 2.0, 'works': 1.0, 'and': 4.0, 'play': 1.0, 'out': 1.0, 'update': 1.0, 'bought': 2.0, 'one': 1.0, 'of': 1.0, 'takes': 1.0, 'my': 1.0, 'co': 1.0, 'for': 1.0, 'love': 1.0, 'worker': 1.0, 'at': 1.0, 'who': 1.0, 'just': 1.0, 'a': 1.0, 'they': 1.0}
Word element => {'problem': 1.0, 'due': 1.0, 'but': 1.0, 'less': 1.0, 'in': 1.0, 'year': 1.0, '3': 1.0, 'through': 2.0, 'product': 1.0, 'to': 2.0, 't': 1.0, 'a': 1.0, 'went': 1.0, 'love': 1.0, 'tends': 1.0, 'can': 1.0, 'than': 1.0, 'water': 1.0, 'this': 2.0, 'seep': 1.0, 'and': 1.0, 'really': 1.0, 'change': 1.0, 'corrodes': 1.0, 'battery': 2.0}
Word element => {'recommended': 1.0, 'out': 1.0, 'take': 1.0, 'when': 1.0, 'or': 1.0, 'off': 1.0, 'on': 1.0, 'automatically': 1.0, 'glance': 1.0, 'great': 1.0, 'are': 1.0, 'highly': 1.0, 'colors': 1.0, 'turns': 1.0, 'display': 1.0, 'backlit': 1.0, 'date': 1.0, 'to': 1.0, 'an': 1.0, 'i': 2.0, 'a': 2.0, 'bathtub': 1.0, 'how': 1.0, 'reading': 1.0, 'up': 1.0, 'always': 1.0, 'item': 1.0, 'our': 1.0, 'birth': 1.0, 'bought': 1.0, 'and': 3.0, 'gives': 1.0, 'as': 1.0, 'for': 2.0, 'love': 1.0, 'quick': 1.0, 'this': 1.0, 'it': 5.0, 'in': 2.0, 'adjusts': 1.0, 'home': 1.0, 'add': 1.0, 'you': 3.0, 'throw': 1.0, 'water': 2.0, 'so': 1.0}
Word element => {'now': 1.0, 'with': 1.0, 'up': 1.0, 'fogged': 1.0, 'never': 1.0, 'works': 1.0, 'were': 1.0, 'to': 1.0, 'our': 1.0, 'that': 1.0, 'of': 2.0, '6': 1.0, 'confident': 1.0, 'baby': 1.0, 'terrified': 1.0, 'us': 1.0, 'birth': 1.0, 'this': 3.0, 'first': 1.0, 'wouldn': 1.0, 'it': 2.0, 'my': 2.0, 'since': 1.0, 'play': 1.0, 'too': 3.0, 'and': 1.0, 'had': 1.0, 'great': 1.0, 'feel': 1.0, 'use': 1.0, 'every': 1.0, 'course': 1.0, '5': 1.0, 'accidentally': 1.0, 'water': 1.0, 'months': 1.0, 'old': 1.0, 'i': 1.0, 've': 1.0, 'so': 1.0, 'time': 1.0, 'day': 1.0, 'definitely': 1.0, 'likes': 1.0, 'hot': 1.0, 'helped': 1.0, 'is': 2.0, 'more': 1.0, 'we': 3.0, 't': 1.0, 'the': 1.0, 'bath': 1.0, 'make': 1.0, 'or': 1.0, 'cold': 1.0, 'son': 2.0, 'still': 2.0}
Word element => {'fine': 1.0, 'a': 1.0, 'all': 1.0, 'recommend': 1.0, 'it': 1.0, 'great': 1.0, 'immensely': 1.0, 'my': 1.0, 'as': 1.0, 'and': 2.0, 'to': 1.0, 'product': 2.0, 'by': 1.0, 'enjoyed': 1.0, 'daughter': 1.0, 'her': 1.0, 'son': 1.0, 'idea': 1.0, 'would': 1.0}
Word element => {'again': 1.0, 'read': 1.0, 'much': 1.0, 'would': 1.0, 'previous': 1.0, 'hot': 1.0, 'too': 1.0, 'water': 1.0, 'if': 1.0, 'glance': 1.0, 'know': 1.0, 'can': 1.0, 'or': 1.0, 'buy': 1.0, 'i': 1.0, 'month': 1.0, 'a': 3.0, 'to': 1.0, 'had': 2.0, 'now': 1.0, 'is': 1.0, 'one': 1.0, 'for': 1.0, 'it': 1.0, 'this': 1.0, 'and': 1.0, 'temperature': 1.0, 'at': 1.0, 'two': 1.0, 'used': 1.0, 'we': 2.0, 's': 2.0, 'been': 1.0, 'harder': 1.0, 'so': 2.0, 'far': 1.0, 'great': 2.0, 'the': 3.0, 'screen': 1.0, 've': 1.0, 'colored': 1.0, 'indicator': 1.0}
Word element => {'baby': 1.0, 'for': 1.0, 'right': 1.0, 'still': 1.0, 'that': 1.0, 'sure': 1.0, 'be': 1.0, 'put': 1.0, 'water': 1.0, 'just': 2.0, 'easy': 1.0, 'very': 1.0, 'temperature': 1.0, 'and': 3.0, 'well': 1.0, 's': 1.0, 'nice': 1.0, 'itself': 1.0, 'to': 2.0, 'works': 1.0, 'it': 3.0, 'in': 1.0, 'the': 4.0, 'turns': 1.0, 'on': 1.0, 'good': 1.0, 'is': 1.0, 'looks': 1.0, 'leave': 1.0, 'use': 1.0, 'thermometer': 1.0, 'there': 1.0}
Word element => {'disappointed': 1.0, 'so': 1.0, 'started': 1.0, 'weeks': 1.0, 'water': 1.0, 'for': 1.0, '134': 1.0, 'hot': 1.0, 'the': 2.0, 'great': 1.0, 'it': 1.0, 'worked': 1.0, 'then': 1.0, 'two': 1.0, 'no': 1.0, 'show': 1.0, 'same': 1.0, 'matter': 1.0, 'and': 1.0, 'temperature': 1.0, 'how': 1.0, 'or': 1.0, 'cold': 1.0, 'to': 1.0, 'was': 1.0}
Word element => {'recommend': 1.0, 'really': 1.0, 'have': 1.0, 'batteries': 1.0, 'several': 1.0, 'now': 1.0, 'weeks': 1.0, 'older': 1.0, 'is': 1.0, 'his': 1.0, 'by': 1.0, 'amused': 1.0, 'be': 1.0, 'down': 1.0, 'll': 1.0, 'it': 1.0, 'looks': 1.0, 'she': 2.0, 'cold': 1.0, 'pal': 1.0, 'yet': 1.0, 'or': 1.0, 'using': 1.0, 'know': 2.0, 'me': 1.0, 'wouldn': 1.0, 'injure': 1.0, 'this': 2.0, 'one': 1.0, 'for': 3.0, 'love': 1.0, 'proclivity': 1.0, 'out': 1.0, 'been': 1.0, 'that': 2.0, 've': 1.0, 'something': 1.0, 'i': 8.0, 'sure': 1.0, 'the': 3.0, 'run': 1.0, 'clear': 1.0, 'warning': 1.0, 'great': 1.0, 'read': 1.0, 'little': 4.0, 'steaming': 1.0, 'when': 2.0, 'am': 2.0, 'baths': 1.0, 'hot': 2.0, 'too': 1.0, 'and': 6.0, 'need': 1.0, 'pregnant': 1.0, 'to': 2.0, 'my': 2.0, 'guy': 1.0, 'make': 1.0, 'so': 1.0, 'cute': 1.0, 'after': 1.0, 'surface': 1.0, 'colors': 1.0, 't': 1.0, 'internet': 1.0, 'could': 1.0, 'use': 1.0, 'before': 1.0, 'her': 1.0, 'scoured': 1.0, 'birth': 1.0, 'helpful': 1.0, 'are': 1.0, 'lets': 1.0, 'cheery': 1.0, 'getting': 1.0, 'along': 1.0, 'turtle': 1.0, 'bobbing': 1.0, 'floats': 1.0}
Word element => {'recommend': 1.0, 'brilliant': 1.0, 'highly': 1.0, 'every': 1.0, 'is': 3.0, 'bath': 2.0, 'use': 1.0, 'thermometer': 1.0, 'her': 1.0, 'even': 1.0, 'get': 1.0, 'too': 1.0, 'and': 2.0, 'while': 1.0, 'how': 1.0, 'time': 1.0, 'so': 2.0, 'perfect': 1.0, 'this': 4.0, 'with': 1.0, 'nice': 1.0, 'grand': 2.0, 'turtle': 1.0, 'exactly': 1.0, 'product': 1.0, 'love': 3.0, 'for': 1.0, 'can': 2.0, 'wait': 1.0, 'warm': 1.0, 'the': 1.0, 'playing': 1.0, 'that': 1.0, 'awesome': 1.0, 'it': 4.0, 'she': 1.0, 'baby': 2.0, 'temperature': 1.0, 'toy': 1.0, 'our': 2.0, 'to': 3.0, 'giving': 1.0, 'here': 1.0, 'adorable': 1.0, 'floats': 1.0, 'i': 1.0, 'going': 1.0, 'a': 3.0, 'we': 3.0, 't': 1.0, 's': 1.0, 'thanks': 1.0, 'you': 1.0, 'know': 1.0, 'water': 1.0, 'will': 1.0, 'have': 1.0}
Word element => {'affordable': 1.0, 'item': 1.0, 'fabulous': 1.0, 'really': 1.0, 'see': 1.0, 'can': 1.0, 'floats': 1.0, 'back': 1.0, 'turtle': 3.0, 'super': 1.0, 'screen': 1.0, 'lcd': 1.0, 'and': 3.0, 'read': 1.0, 'grandchild': 1.0, 'year': 1.0, 'visits': 1.0, 'love': 1.0, 'got': 1.0, 'have': 1.0, 'with': 1.0, 'she': 2.0, 'it': 2.0, 'old': 1.0, 'i': 2.0, 'turtlemeter': 2.0, 'here': 1.0, 'price': 1.0, 'ton': 1.0, 'hand': 1.0, 'taking': 1.0, 'us': 1.0, 'easily': 1.0, 'when': 1.0, 'bath': 2.0, 'on': 3.0, 'constantly': 1.0, '3': 1.0, 'to': 2.0, 'our': 1.0, 'loves': 2.0, 'that': 1.0, 'of': 2.0, 'course': 1.0, 'around': 1.0, 'is': 1.0, 'toys': 1.0, 'at': 1.0, 'displays': 1.0, 'in': 1.0, 'this': 1.0, 'perfect': 1.0, 'the': 8.0, 'easy': 1.0, 'tub': 2.0, 'shell': 1.0, 'her': 1.0, 'time': 1.0, 'temperature': 2.0, 'toy': 1.0, 'water': 1.0, 'a': 3.0, 'we': 1.0, 's': 3.0}
Word element => {'did': 1.0, 'design': 1.0, 'distruction': 1.0, 'good': 2.0, 'so': 1.0, 'after': 1.0, 'turtle': 2.0, 'the': 2.0, 'great': 1.0, 'with': 1.0, 'it': 3.0, 'this': 1.0, 'working': 1.0, 'well': 1.0, 'likes': 1.0, 'described': 1.0, 'us': 1.0, 'built': 1.0, 'we': 2.0, 'a': 4.0, 's': 1.0, 'solid': 1.0, 'as': 1.0, 'to': 3.0, 'only': 1.0, 'try': 1.0, 'thermometer': 1.0, 'diffrent': 1.0, 'prior': 1.0, 'one': 1.0, 'died': 1.0, 'product': 1.0, 'love': 1.0, 'for': 1.0, 'play': 1.0, 'and': 2.0, 'couple': 1.0, 'on': 1.0, 'of': 1.0, 'baths': 1.0, 'recommend': 1.0, 'anyone': 1.0, 'who': 1.0, 'is': 1.0, 'looking': 1.0, 'baby': 1.0, 'quality': 1.0, 'reliable': 1.0}
Word element => {'your': 1.0, 'of': 1.0, 'on': 1.0, 'instant': 1.0, 'an': 1.0, 'temperature': 1.0, 'get': 1.0, 'and': 1.0, 'into': 1.0, 'water': 1.0, 'throw': 1.0, 'for': 1.0, 'though': 1.0, 'in': 1.0, 'the': 3.0, 'my': 1.0, 'is': 1.0, 'turtle': 1.0, 'baby': 1.0, 'little': 1.0, 'even': 1.0, 'bath': 1.0, 'use': 1.0, 'read': 1.0, 'easy': 1.0, 'just': 1.0, 'tub': 1.0, 'to': 1.0, 'i': 1.0, 'advertised': 1.0, 'this': 1.0, 'it': 2.0, 'you': 1.0, 'pool': 2.0, 's': 1.0, 'so': 1.0}
Word element => {'great': 1.0, 'addition': 1.0, 'in': 1.0, 'good': 1.0, 'm': 1.0, 'sure': 1.0, 'so': 1.0, 'red': 1.0, 'right': 1.0, 'blue': 1.0, 'show': 1.0, 'perfect': 1.0, 'is': 2.0, 'have': 2.0, 'cold': 2.0, 'for': 1.0, 'actually': 1.0, 'ducks': 1.0, 'warm': 1.0, 'was': 4.0, 'do': 1.0, 'only': 1.0, 'its': 4.0, 'normal': 1.0, 'shifts': 1.0, 'wanted': 1.0, 'or': 2.0, 'i': 6.0, 'a': 1.0, 'go': 1.0, 'determine': 1.0, 'whether': 1.0, 'turtlemeter': 2.0, 'my': 2.0, 'one': 1.0, 'bought': 1.0, 'color': 2.0, 'the': 9.0, 'baby': 1.0, 'does': 1.0, 'because': 1.0, 'just': 3.0, 'showed': 1.0, 'always': 1.0, 'of': 3.0, 'bottom': 1.0, 'green': 2.0, 'and': 2.0, 'too': 4.0, 'daughter': 1.0, 'water': 2.0, 'loves': 1.0, 'that': 2.0, 'toy': 1.0, 'temperature': 2.0, 'insecure': 1.0, 'has': 1.0, 'hot': 2.0, 'bath': 1.0, 'make': 1.0, 'on': 1.0, 'but': 2.0, 'from': 1.0, 'hard': 1.0, 'something': 1.0, 'super': 1.0, 'if': 2.0, 'felt': 1.0, 'it': 5.0, 'showing': 1.0, 'not': 1.0, 'those': 1.0, 'me': 2.0, 'all': 1.0, 'to': 5.0, 'word': 2.0, 'actual': 1.0}
Word element => {'friend': 1.0, 'a': 1.0, 'meter': 1.0, 'turtle': 1.0, 'the': 1.0, 'my': 1.0, 'was': 1.0, 'shower': 1.0, 'it': 4.0, 'daily': 1.0, 'this': 1.0, 'threw': 1.0, 'duck': 1.0, 'used': 1.0, 'for': 1.0, 'love': 1.0, 'given': 1.0, 'i': 3.0, 'at': 1.0, 'once': 1.0, 'use': 1.0, 'thermometer': 1.0, 'purchased': 1.0, 'and': 3.0, 'hate': 1.0, 'away': 1.0, 'recently': 1.0, 'another': 1.0}
Word element => {'f': 1.0, 'actually': 1.0, 'displays': 1.0, 'the': 2.0, 'degrees': 1.0, 'knows': 1.0, 'in': 1.0, 'safety': 1.0, 'it': 1.0, 'floats2': 1.0, 'batt': 1.0, 'see': 1.0, 'hazards4': 1.0, 'temperature5': 1.0, 'i': 1.0, 'included3': 1.0, '1': 1.0, 'no': 1.0, 'potential': 1.0}
Word element => {'if': 1.0, 'you': 1.0, 'helps': 1.0, 'which': 1.0, 'bright': 1.0, 'very': 1.0, 'color': 1.0, 'and': 1.0, 'read': 1.0, 'easy': 1.0, 'temp': 2.0, 'also': 1.0, 'floats': 1.0, 'cold': 2.0, 'hot': 2.0, 'how': 1.0, 'or': 2.0, 'we': 1.0, 'tell': 2.0, 'so': 1.0, 'could': 1.0, 'for': 2.0, 'product': 1.0, 'this': 1.0, 'still': 1.0, 'cute': 1.0, 'ordered': 1.0, 'turtle': 1.0, 'the': 5.0, 'water': 2.0, 'to': 2.0, 'was': 1.0, 'bath': 1.0, 'time': 1.0, 'our': 1.0, 'little': 1.0, 'guy': 1.0, 'is': 4.0, 'really': 1.0}
Word element => {'manual': 1.0, 'read': 1.0, 'failed': 1.0, 'item': 1.0, 'and': 1.0, 'it': 1.0, 'of': 1.0, 'drying': 1.0, 'mistake': 1.0, 'use': 1.0, 'in': 1.0, 'water': 1.0, 'when': 1.0, 'too': 1.0, 'did': 1.0, 'if': 1.0, 'made': 1.0, 'child': 1.0, 'i': 2.0, 'guess': 1.0, 'you': 1.0, 'need': 1.0, 'hot': 1.0, 'is': 1.0, 'longer': 1.0, 'the': 3.0, 'great': 1.0, 'works': 1.0, 'sure': 1.0, 'to': 1.0, 'product': 2.0, 'no': 1.0, 'off': 1.0, 'or': 1.0, 'dry': 1.0, 'your': 1.0, 'cold': 1.0, 'for': 1.0, 'not': 3.0, 'just': 1.0, 'make': 1.0}
Word element => {'be': 1.0, 'should': 1.0, 'bathtub': 1.0, 'purchases': 1.0, 'old': 1.0, '6': 1.0, 'so': 1.0, 'time': 1.0, 'just': 1.0, 'by': 1.0, 'those': 1.0, 'not': 1.0, 'have': 1.0, 'one': 1.0, 'bought': 1.0, 'products': 1.0, 'about': 1.0, 'that': 1.0, 'finding': 1.0, 'm': 1.0, 'water': 1.0, '5': 2.0, 'thermometer': 1.0, 'got': 1.0, 'use': 1.0, 'in': 1.0, 'said': 1.0, 'digital': 1.0, 'designed': 1.0, 'probably': 1.0, 'numbers': 1.0, 'another': 1.0, 'my': 2.0, 'this': 2.0, 'she': 1.0, 'it': 6.0, 'stopped': 2.0, 'unreadable': 1.0, 'out': 1.0, 'turtle': 1.0, 'would': 1.0, 'go': 1.0, 's': 2.0, 'baths': 3.0, 'first': 2.0, 'degrees': 1.0, 'worked': 2.0, 'still': 1.0, '1': 1.0, 'great': 1.0, 'the': 5.0, 'red': 1.0, 'baby': 2.0, 'for': 3.0, 'bath': 1.0, '3': 1.0, 'was': 2.0, 'weeks': 1.0, '887': 1.0, 'then': 2.0, 'became': 1.0, 'working': 2.0, '2': 1.0, 'but': 1.0, 'waterproof': 1.0, 'blue': 1.0, 'total': 1.0, 'at': 2.0, 'to': 1.0, 'all': 1.0, 'least': 1.0, 'show': 1.0, 'and': 1.0, 'green': 1.0, 'junk': 1.0, 'i': 3.0, 'or': 2.0, 'is': 1.0, 'completely': 1.0, 'of': 3.0}
Word element => {'drains': 1.0, 'vertically': 1.0, 'out': 2.0, 'take': 1.0, 'done': 1.0, 'once': 1.0, 'you': 1.0, 'when': 1.0, 'water': 3.0, 'colors': 1.0, 'too': 1.0, 'and': 4.0, 'changes': 1.0, 'turns': 1.0, 'the': 8.0, 'that': 3.0, 'use': 1.0, 'every': 1.0, 'put': 1.0, 'bath': 2.0, 'i': 1.0, 'whole': 1.0, 'battery': 1.0, 'little': 1.0, 'very': 1.0, 'we': 3.0, 'a': 1.0, 'love': 1.0, 'cold': 1.0, 'actual': 1.0, 'as': 1.0, 'to': 2.0, 'works': 1.0, 'its': 1.0, 'toy': 1.0, 'temperature': 1.0, 'well': 1.0, 'hot': 1.0, 'or': 1.0, 're': 1.0, 'off': 2.0, 'light': 1.0, 'just': 3.0, 'know': 1.0, 'right': 1.0, 'displays': 1.0, 'adorable': 1.0, 'keep': 1.0, 'if': 1.0, 'in': 1.0, 'also': 1.0, 'tub': 1.0, 'time': 1.0, 'so': 2.0, 'is': 2.0, 'cooling': 1.0, 'it': 6.0, 'prolong': 1.0}
Word element => {'any': 1.0, 'have': 1.0, 'not': 1.0, 'does': 1.0, 'good': 1.0, 'to': 1.0, 'my': 1.0, 'make': 1.0, 'cool': 1.0, 'smell': 1.0, 'design': 1.0, 'strongly': 1.0, 'the': 2.0, 'red': 1.0, 'quality': 1.0, 'blue': 1.0, 'indication': 1.0, 'green': 1.0, 'fyi': 1.0, 'looks': 1.0, 'is': 1.0, 'time': 1.0, 'very': 2.0, 'convenient': 1.0, 'use': 1.0, 'this': 1.0, 'it': 2.0, 'save': 1.0, 'recomment': 1.0, 'product': 1.0, 'material': 1.0}
Word element => {'favorite': 1.0, 'toy': 1.0, 'baby': 1.0, 'my': 1.0, 'using': 1.0, 'after': 1.0, 'very': 1.0, 'need': 1.0, 'be': 1.0, 'touching': 1.0, 'off': 1.0, 'will': 1.0, 'but': 1.0, 'bath': 1.0, 'use': 1.0, 'thermometer': 1.0, 'automatically': 1.0, 'cute': 1.0, 'it': 2.0, 'sensor': 1.0, 'turtle': 1.0, 'to': 3.0, 'turned': 1.0, 'wipe': 1.0, 'on': 1.0, 'when': 1.0, 'water': 2.0, 's': 1.0, 'you': 1.0, 'becomes': 1.0, 'easy': 1.0, 'remember': 1.0, 'the': 2.0}
Word element => {'poke': 1.0, 'or': 1.0, 'secure': 1.0, 'feels': 1.0, 'crib': 1.0, 'roll': 1.0, 'and': 1.0, 'knees': 1.0, 'on': 1.0, 'in': 1.0, 'herself': 2.0, 'back': 1.0, 'pacifier': 1.0, 'her': 4.0, 'get': 2.0, 'help': 1.0, 'difference': 1.0, 'winter': 1.0, 'sometimes': 1.0, 'doesn': 1.0, 'was': 1.0, 'now': 1.0, 'snug': 1.0, 'zipper': 4.0, 'that': 1.0, 'solves': 1.0, 'reviews': 1.0, 'i': 2.0, 'mouth': 1.0, 'having': 1.0, 'this': 1.0, 'stretchiness': 1.0, 'original': 1.0, 'agree': 1.0, 'with': 3.0, 'woombie': 3.0, 'other': 1.0, 'hands': 2.0, 'the': 6.0, 'my': 2.0, 'pants': 1.0, 'by': 1.0, 'daughter': 1.0, 'for': 1.0, 'where': 1.0, 'started': 1.0, 'baby': 1.0, 't': 1.0, 'a': 6.0, 'issue': 1.0, 'connected': 1.0, 'instead': 1.0, 'like': 2.0, 'wake': 1.0, 'pair': 1.0, 'of': 2.0, 'jacket': 1.0, 'but': 1.0, 'can': 3.0, 'prefers': 1.0, 'makes': 1.0, 'to': 1.0, 'all': 1.0, '8': 1.0, 'around': 1.0, 'is': 2.0, 'almost': 1.0, 'months': 1.0, 'difficult': 1.0, 'still': 1.0, 'enough': 1.0, 'it': 1.0, 'she': 2.0}
Word element => {'baby': 1.0, 'her': 1.0, 'for': 1.0, 'them': 1.0, 'receive': 1.0, 'happy': 1.0, 'how': 1.0, 'gift': 1.0, 'a': 1.0, 'tall': 1.0, 'as': 2.0, 'and': 1.0, 'purchased': 1.0, 'at': 1.0, 'to': 1.0, 'was': 1.0, 'surprised': 1.0, 'but': 1.0, 'than': 1.0, 'we': 1.0, 'other': 1.0, 'they': 2.0, 'displayed': 1.0, 'were': 3.0, 'that': 1.0, 'are': 1.0, 'mother': 1.0, 'these': 1.0, 'the': 1.0, 'new': 1.0}
Word element => {'have': 1.0, 'are': 1.0, 'my': 4.0, 'dogs': 2.0, 'without': 1.0, 'squeekers': 1.0, 'inside': 1.0, 'so': 1.0, 'interested': 1.0, 'these': 1.0, 't': 2.0, 'i': 2.0, 'far': 1.0, 'boys': 2.0, 'nuts': 1.0, 'didn': 1.0, 'aren': 1.0, 'done': 1.0, 'drive': 1.0, 'and': 1.0, 'they': 1.0, 'had': 1.0, 'could': 1.0, 'realize': 1.0, 'that': 1.0, 'think': 1.0, 'really': 1.0}
Word element => {'detail': 1.0, 'that': 1.0, 'on': 1.0, 'only': 1.0, 'based': 1.0, 'return': 1.0, 'to': 1.0, 'i': 2.0, 'am': 1.0, 'not': 1.0, 'them': 1.0, 'a': 1.0, 'the': 1.0, 'fan': 1.0, 'fabric': 1.0, 'have': 1.0, 'big': 1.0, 'of': 1.0, 'may': 1.0}
Word element => {'better': 1.0, 'price': 1.0, 'for': 1.0, 'noticeable': 1.0, 'horribly': 1.0, 'things': 1.0, 'paint': 1.0, 'spot': 1.0, 'missing': 1.0, 'also': 1.0, 'there': 1.0, 'glossy': 1.0, 'than': 1.0, 'shows': 1.0, 'side': 2.0, 'so': 1.0, 'expecting': 1.0, 'was': 3.0, 'twisted': 1.0, 'ribbons': 1.0, 'rather': 1.0, 'of': 1.0, 'one': 1.0, 'how': 1.0, 'displayed': 1.0, 'is': 4.0, 'were': 1.0, 'way': 1.0, 'matte': 1.0, 'wall': 1.0, 'lazy': 1.0, 'disappointed': 1.0, 'company': 1.0, 'little': 2.0, 'ribbon': 1.0, 'well': 1.0, 'odd': 1.0, 'that': 1.0, 'backwards': 1.0, 'next': 1.0, 'these': 2.0, 'the': 10.0, 'control': 1.0, 'a': 3.0, 't': 2.0, 'aren': 2.0, 'but': 2.0, 'them': 1.0, 'quality': 2.0, 'placed': 1.0, 'blue': 1.0, 'compliment': 1.0, 'this': 1.0, 'are': 1.0, 'they': 1.0, 'lacks': 1.0, 'irritating': 1.0, 'really': 1.0, 'it': 1.0, 'looks': 1.0, 'cute': 1.0, 'frames': 1.0, 'line': 1.0, 'together': 1.0, 'i': 4.0, 'picture': 1.0, 'want': 1.0, 'hangers': 1.0, 'same': 1.0, 'and': 3.0, 'on': 2.0, 'put': 2.0, 'think': 1.0, 'in': 1.0, 'length': 1.0, 'which': 2.0, 'am': 1.0, 'clock': 1.0, 'when': 1.0, 'right': 1.0, 'all': 1.0, 'to': 1.0, 'each': 1.0, 'other': 2.0}
Word element => {'glove': 1.0, 'good': 1.0, 'deter': 1.0, 'and': 2.0, 'as': 1.0, 'like': 1.0, 'window': 1.0, 'a': 2.0, 'feeling': 1.0, 'basement': 1.0, 'the': 3.0, 'fits': 2.0, 'perfect': 3.0, 'i': 1.0, 'have': 1.0, 'usual': 1.0, 'but': 1.0, 'abut': 1.0, 'actually': 1.0, 'it': 2.0, 'is': 1.0, 'to': 1.0, 'price': 1.0, 'size': 1.0}
Word element => {'attached': 1.0, 'garage': 2.0, 'that': 2.0, 'pricey': 1.0, 'were': 1.0, 'our': 2.0, 'to': 3.0, 'the': 4.0, 'sense': 1.0, 'window': 1.0, 'security': 1.0, 'easy': 1.0, 'this': 1.0, 'with': 1.0, 'it': 3.0, 'of': 1.0, 'windows': 1.0, 'really': 1.0, 'more': 1.0, 'comes': 1.0, 'is': 2.0, 'a': 1.0, 'well': 1.0, 'so': 1.0, 'bit': 1.0, 'product': 1.0, 'love': 1.0, 'bought': 2.0, 'one': 1.0, 'liked': 1.0, 'but': 1.0, 'house': 1.0, 'secure': 1.0, 'and': 3.0, 'did': 1.0, 'not': 1.0, 'think': 1.0, 'guards': 1.0, 'on': 1.0, 'strong': 1.0, 'very': 2.0, 'seem': 2.0, 'test': 1.0, 'they': 1.0, 'install': 1.0, 'out': 1.0, 'i': 4.0, 'two': 1.0}
Word element => {'bent': 1.0, 'arrived': 1.0, 'related': 1.0, 'as': 1.0, 'match': 1.0, 'a': 3.0, 'that': 1.0, 'used': 1.0, 'door': 2.0, 'guard': 1.0, 'to': 1.0, 'fit': 1.0, 'packaging': 1.0, 'bit': 1.0, 'size': 1.0, 'not': 1.0, 'was': 1.0, 'tho': 1.0, 'tough': 1.0}
Word element => {'buy': 1.0, 'as': 1.0, 'items': 1.0, 'ill': 1.0, 'from': 2.0, 'buying': 1.0, 'first': 1.0, 'my': 1.0, 'more': 1.0, 'reccomend': 2.0, 'out': 1.0, 'baby': 2.0, 'them': 2.0, 'were': 1.0, 'goose': 2.0, 'that': 1.0, 'so': 1.0, 'time': 1.0, 'bowties': 1.0, 'was': 1.0, 'its': 1.0, 'littl': 1.0, 'read': 1.0, 'sooo': 1.0, 'i': 7.0, 'weirded': 1.0, 'just': 1.0, 'loved': 1.0, 'got': 1.0, 'and': 1.0, 'get': 1.0, 'velcro': 2.0, 'it': 2.0, 'her': 1.0, 'hair': 1.0, 'these': 3.0, 'the': 2.0, 'they': 1.0, 'soft': 1.0, 'cute': 1.0, 'are': 1.0, 'highly': 1.0, 'irritating': 1.0, 'really': 1.0, 'love': 1.0, 'when': 3.0, 'you': 2.0, 'put': 1.0, 'on': 1.0, 'but': 1.0, 'can': 1.0, 'plastic': 1.0, 'pull': 1.0, 'snap': 3.0, 'off': 1.0, 'or': 1.0, 'wow': 1.0, 'because': 1.0, 'than': 1.0, 'better': 1.0, 'non': 1.0, 'metal': 1.0}
Word element => {'stretchy': 1.0, 'full': 1.0, 'swaddler': 1.0, 'semi': 1.0, 'say': 1.0, 'accomplish': 1.0, 'item': 2.0, 'our': 2.0, 'after': 1.0, 'has': 2.0, 'them': 2.0, 'elevated': 1.0, 'at': 2.0, 'sleeps': 2.0, 'reflux': 2.0, 'keep': 3.0, 'book': 1.0, 'makes': 1.0, 'transition': 1.0, 'since': 2.0, 'ordered': 1.0, 'eventually': 1.0, 'zipped': 1.0, 'your': 1.0, 'searching': 1.0, 'for': 2.0, 'slept': 1.0, 'in': 5.0, 'he': 9.0, 'him': 5.0, 'be': 2.0, 'it': 9.0, 'hasn': 1.0, 'simply': 2.0, 'reswaddle': 1.0, 'been': 1.0, 'amazon': 1.0, 'that': 2.0, 'because': 4.0, 'swaddle': 3.0, 'velcro': 2.0, 'with': 2.0, 'through': 3.0, 'minute': 2.0, 'then': 1.0, 'middle': 1.0, 'we': 6.0, 'reviews': 1.0, 'but': 5.0, 'blankets': 2.0, 'night': 3.0, 'however': 2.0, 'able': 1.0, 'you': 1.0, 'found': 3.0, 'have': 3.0, '8': 1.0, 'to': 7.0, 'high': 1.0, 'closures': 1.0, 'all': 2.0, 'an': 2.0, 'busted': 2.0, 'overnight': 1.0, 'little': 3.0, 'nice': 2.0, 'happiest': 1.0, 'swaddling': 4.0, 'would': 2.0, 'on': 1.0, 't': 2.0, 'ago': 1.0, 'a': 13.0, 'frustrated': 1.0, 'parents': 1.0, 'original': 2.0, 'helping': 1.0, 'asleep': 1.0, 'of': 7.0, 'without': 1.0, 'soft': 1.0, 'now': 1.0, 'me': 1.0, 'were': 1.0, 'website': 1.0, 'sleeping': 3.0, 'they': 2.0, 'leggie': 2.0, 'sleep': 2.0, 'out': 3.0, 'dvd': 1.0, 'so': 4.0, 'is': 5.0, 'can': 2.0, 'needs': 1.0, 'started': 1.0, 'baby': 3.0, 'purchased': 1.0, 'had': 3.0, 'not': 5.0, 'being': 2.0, 'swaddled': 1.0, 'snap': 1.0, 'very': 1.0, 'knew': 1.0, 'these': 1.0, 'swing': 1.0, 'receiving': 1.0, 'arms': 3.0, 'loves': 1.0, 'move': 5.0, 'nursing': 1.0, 'yet': 1.0, 'interesting': 1.0, 'up': 2.0, 'under': 2.0, 'green': 1.0, 'block': 1.0, 'gave': 1.0, 'was': 2.0, 'chin': 2.0, 'sometimes': 1.0, '2am': 1.0, 'blocks': 1.0, 'than': 1.0, 'mouth': 1.0, 'hands': 1.0, 'away': 1.0, 'does': 1.0, 'more': 3.0, 'some': 3.0, 'confined': 1.0, 'last': 1.0, 'first': 1.0, 'did': 1.0, 'time': 1.0, 's': 1.0, 'woombie': 4.0, 'tahiti': 1.0, 'about': 2.0, 'guy': 2.0, 'week': 1.0, 'blanket': 1.0, 'improved': 1.0, 'love': 1.0, 'stretch': 1.0, 'tried': 1.0, 'and': 18.0, 'just': 1.0, 'when': 1.0, 'extent': 1.0, 'miracle': 2.0, 'haven': 1.0, 'his': 9.0, 'lot': 1.0, 'us': 1.0, 'also': 1.0, '2': 1.0, 'or': 1.0, 'still': 1.0, 'getting': 1.0, 'movement': 1.0, 'weeks': 2.0, 'true': 2.0, 'great': 1.0, 'woombies': 2.0, 'product': 2.0, 'child': 1.0, 'open': 2.0, 'think': 1.0, 'will': 1.0, 'treating': 1.0, 'from': 1.0, 'somewhat': 1.0, 'both': 1.0, '5': 1.0, 'goal': 1.0, 'got': 1.0, 'no': 1.0, 'hurt': 1.0, 'snuggly': 1.0, 'do': 1.0, 'cozy': 1.0, 'cool': 1.0, 'again': 1.0, 'i': 9.0, 'zip': 1.0, 'having': 1.0, 'buy': 1.0, 'gone': 1.0, 'worn': 1.0, '3': 1.0, 'stars': 1.0, 'make': 1.0, 'sound': 1.0, 'like': 1.0, 'their': 1.0, 'my': 2.0, 'are': 4.0, 'hour': 1.0, 'struggles': 1.0, 'online': 1.0, 'the': 20.0, 'experience': 1.0}
Word element => {'keeps': 1.0, 'thing': 1.0, 'swaddle': 1.0, 'woombie': 1.0, 'other': 1.0, 'not': 1.0, 'bit': 1.0, 'top': 1.0, '8lbs': 1.0, 'only': 1.0, 'up': 1.0, 'wakes': 1.0, 'of': 2.0, 'middle': 1.0, 'good': 1.0, 'fabric': 1.0, 'her': 5.0, 'because': 1.0, 'safely': 1.0, 'wears': 1.0, 'little': 1.0, 'nap': 1.0, 'chunky': 1.0, 'during': 1.0, 'too': 1.0, 'and': 5.0, 'bed': 1.0, 'given': 1.0, 'when': 1.0, 'us': 1.0, 'safety': 1.0, 'is': 2.0, 'sleeps': 1.0, 'stretchy': 1.0, 'the': 10.0, 'products': 1.0, 'these': 3.0, 'swing': 1.0, 'diaper': 1.0, 'are': 2.0, 'periods': 1.0, 'best': 1.0, 'day': 1.0, 'longer': 1.0, 'as': 3.0, 'our': 2.0, 'to': 3.0, 'newborn': 1.0, 'in': 1.0, 'it': 1.0, 'she': 2.0, 'significantly': 1.0, 'doesn': 1.0, 'belt': 1.0, 'actually': 1.0, 'for': 2.0, 'stars': 1.0, 'that': 1.0, 'changing': 1.0, 'leggies': 1.0, 'secure': 1.0, 'can': 1.0, 'but': 2.0, 'i': 2.0, 'allow': 1.0, 'would': 1.0, 'tighter': 1.0, 'snug': 2.0, 'have': 3.0, 'baby': 1.0, 'night': 1.0, 'them': 1.0, 'swaddled': 1.0, '5': 1.0, 'off': 1.0, 'pry': 1.0, 'legs': 3.0, 'on': 1.0, 't': 1.0, 's': 2.0, 'we': 1.0, 'a': 3.0}
Word element => {'development': 1.0, 'which': 1.0, 'freely': 1.0, 'important': 1.0, 'legs': 1.0, 'her': 1.0, 'his': 1.0, 'move': 1.0, 'able': 1.0, 'be': 1.0, 'around': 1.0, 'too': 1.0, 'will': 1.0, 'op': 1.0, 'adorably': 1.0, 'buy': 2.0, 'tight': 1.0, 'for': 3.0, 'in': 1.0, 'hip': 1.0, 'your': 1.0, 'actually': 1.0, 'sad': 1.0, 'it': 3.0, 'this': 1.0, 'the': 2.0, 't': 1.0, 'armless': 1.0, 'pyjama': 1.0, 'is': 2.0, 'photo': 1.0, 'swaddler': 1.0, 'about': 1.0, 'hips': 1.0, 'baby': 2.0, 'don': 1.0, 'normal': 1.0, 'look': 1.0, 'to': 3.0, 'use': 1.0}
Word element => {'others': 1.0, 'found': 1.0, 'around': 1.0, 'not': 1.0, 'when': 1.0, 'i': 2.0, 'swaddle': 1.0, 'a': 1.0, 'liked': 1.0, 'mine': 1.0, 'one': 1.0, 'tight': 1.0, 'love': 1.0, 'went': 1.0, 'this': 1.0, 'it': 1.0, 'babies': 1.0, 'hated': 1.0, 'some': 1.0, 'settle': 1.0, 'might': 1.0, 'crazy': 1.0, 'she': 2.0, 'but': 1.0, 'put': 1.0, 'her': 1.0, 'better': 1.0, 'did': 1.0, 'in': 1.0, 'shopped': 1.0, 'and': 2.0}
Word element => {'buckle': 1.0, 'swing': 1.0, 'wanting': 1.0, 'disappointed': 1.0, 'really': 1.0, 'to': 3.0, 'was': 5.0, 'tries': 1.0, 'tried': 1.0, 'way': 1.0, 'only': 1.0, 'this': 2.0, '5oz': 1.0, 'swaddled': 1.0, 'her': 4.0, 'i': 5.0, '10lbs': 1.0, 'bought': 1.0, 'be': 1.0, 'tight': 3.0, 'my': 1.0, 'baby': 2.0, 'swaddle': 2.0, 'so': 2.0, 'since': 1.0, 'who': 2.0, 'when': 1.0, 'times': 1.0, 'zipped': 1.0, 'and': 2.0, 'too': 2.0, 'girl': 1.0, 'on': 1.0, 'sleeps': 1.0, 'is': 1.0, 'stretch': 1.0, 'it': 5.0, 'she': 3.0, 'couple': 1.0, 'out': 1.0, 'but': 2.0, 'still': 2.0, 'for': 2.0, 'fit': 1.0, 'scream': 1.0, 'in': 3.0, 'could': 1.0, 'we': 1.0, 's': 1.0, 'a': 2.0, 'of': 1.0, 'once': 1.0, 'would': 1.0, 'just': 1.0, 'from': 1.0, 'being': 1.0, 'that': 1.0, 'loves': 1.0}
Word element => {'pretty': 1.0, 'out': 1.0, 'will': 1.0, 'seems': 1.0, 'material': 1.0, 'extra': 1.0, 'of': 1.0, 'so': 1.0, 'legs': 1.0, 'year': 1.0, 'for': 1.0, 'fit': 1.0, 'mean': 1.0, 'way': 1.0, 'this': 1.0, 'he': 2.0, 'now': 1.0, 'mail': 1.0, 'finally': 1.0, 'decided': 1.0, 'i': 2.0, 'old': 1.0, 'hopefully': 1.0, 'my': 1.0, 'loved': 1.0, 'home': 1.0, '12': 1.0, 'week': 1.0, 'but': 1.0, 'work': 2.0, 'well': 1.0, 'has': 2.0, 'grow': 1.0, 'to': 4.0, 'its': 2.0, 'being': 1.0, 'leftover': 1.0, 'with': 1.0, 'woombie': 1.0, 'get': 1.0, 'and': 1.0, 'harnessed': 1.0, 'swaddled': 1.0, 'since': 1.0, 'alot': 2.0, 'because': 1.0, 'just': 1.0, 'in': 3.0, 'things': 1.0, 'into': 1.0, 'leggies': 2.0, 'that': 1.0, 'need': 1.0, 'him': 1.0, 'be': 1.0, 'recieved': 1.0, 'the': 3.0, '1': 1.0, 'big': 1.0, 'great': 1.0, 'it': 7.0, 'looks': 2.0, 'sleeps': 1.0, 'is': 1.0, 'brought': 1.0, 'like': 3.0, 'could': 1.0, 'we': 2.0, 'going': 2.0, 'except': 1.0, 'part': 1.0}
Word element => {'overall': 1.0, 'small': 1.0, 'too': 1.0, 'old': 1.0, 'baby': 1.0, 'hips': 1.0, 'want': 1.0, 'was': 2.0, 'not': 1.0, 'legs': 1.0, '0': 1.0, 'wish': 1.0, 'this': 1.0, 'product': 1.0, 'love': 1.0, 'with': 1.0, 'woombie': 1.0, 'my': 3.0, 'the': 3.0, 'is': 1.0, 'more': 1.0, 'they': 1.0, 'swaddled': 1.0, 'that': 1.0, 'babies': 1.0, 'do': 2.0, 'break': 1.0, 'offer': 1.0, 'a': 1.0, 'we': 1.0, 'as': 1.0, 'great': 1.0, 'big': 1.0, 'like': 1.0, 'especially': 1.0, 'i': 3.0, 'breaking': 1.0, 'out': 2.0, 'of': 2.0, 'one': 1.0, 'cant': 1.0, '6': 1.0, 'her': 1.0, 'swaddle': 1.0, 'blankets': 1.0, 'but': 2.0, 'individualized': 1.0, 'came': 1.0, 'it': 1.0, 'month': 3.0, 'in': 1.0, 'sizes': 1.0, 'size': 2.0, '3': 3.0, 'on': 1.0}
Word element => {'its': 1.0, 'has': 1.0, 'one': 1.0, 'way': 1.0, 'either': 1.0, 'sides': 1.0, 'arms': 1.0, 'really': 1.0, 'first': 1.0, 'fights': 1.0, 'trying': 1.0, 'be': 1.0, 'miracle': 1.0, 'although': 1.0, 'long': 1.0, 'for': 1.0, 'this': 2.0, 'even': 1.0, 'didn': 1.0, 'certainly': 1.0, 'however': 1.0, 'did': 1.0, 'swaddle': 2.0, 'bouncer': 1.0, 'out': 1.0, 'able': 1.0, 'chest': 1.0, 'them': 1.0, 'baby': 1.0, 'don': 1.0, 'on': 1.0, 'allowed': 1.0, 'sleepsack': 2.0, 'her': 4.0, 'i': 1.0, 'by': 1.0, 'swaddleme': 1.0, 'can': 1.0, 'she': 3.0, 'it': 4.0, 'get': 1.0, 'and': 2.0, 'woombie': 1.0, 'liked': 1.0, 'does': 1.0, 'because': 2.0, 'of': 1.0, 'at': 1.0, 'keep': 1.0, 'being': 1.0, 'while': 1.0, 'as': 2.0, 'to': 3.0, 'hands': 1.0, 'without': 1.0, 'the': 7.0, 's': 1.0, 'could': 1.0, 't': 2.0, 'benefits': 1.0, 'my': 2.0, 'daughter': 2.0, 'legs': 1.0, 'blanket': 1.0, 'are': 2.0, 'nice': 1.0, 'like': 2.0, 'which': 1.0, 'you': 1.0, 'seem': 1.0, 'still': 1.0, 'buckle': 1.0, 'that': 1.0, 'into': 1.0, 'worth': 1.0, 'or': 2.0, 'swing': 1.0, 'they': 1.0, 'swaddled': 2.0, 'is': 1.0, 'something': 1.0, 'offer': 1.0}
Word element => {'individually': 1.0, 'air': 1.0, 'but': 1.0, 'reflex': 1.0, 'due': 1.0, 'himself': 1.0, 'wouldn': 1.0, 'so': 1.0, 'tucked': 1.0, 'zip': 1.0, 'great': 1.0, 'those': 1.0, 'wildly': 1.0, 'kicked': 1.0, 'recommend': 1.0, 'pouch': 1.0, 'them': 1.0, 'kept': 1.0, 'product': 1.0, 'products': 1.0, 'since': 1.0, 'free': 1.0, 'having': 1.0, 'really': 1.0, 'seemed': 1.0, 'son': 1.0, 'note': 1.0, 'moro': 1.0, 'times': 1.0, 'another': 1.0, 'joy': 1.0, 'bundle': 1.0, 'swaddler': 1.0, 'lb': 1.0, '15': 1.0, 'smaller': 1.0, 'size': 1.0, 'highly': 1.0, 'rocking': 1.0, 'this': 5.0, 'sooner': 1.0, 'up': 2.0, 'favorite': 1.0, 'purchased': 1.0, 'kick': 1.0, 'had': 3.0, 'what': 1.0, 'it': 1.0, 'him': 4.0, 'be': 5.0, 'on': 3.0, '3': 2.0, 'used': 1.0, 'same': 1.0, 'often': 1.0, 'month': 2.0, 'bought': 1.0, 'legs': 3.0, 'months': 2.0, 'for': 2.0, 'actually': 1.0, 'where': 1.0, 'to': 10.0, 'swaddlers': 1.0, 'snugly': 1.0, 'sleep': 4.0, 'was': 7.0, 'big': 1.0, 'see': 1.0, 'until': 1.0, 'far': 1.0, 'he': 7.0, 'original': 1.0, 'have': 3.0, 'baby': 3.0, 'able': 2.0, 'night': 1.0, 'loved': 1.0, 'leggies': 1.0, 'into': 2.0, 'feet': 1.0, 'i': 7.0, '4': 3.0, 'woombie': 2.0, 'fact': 1.0, 'old': 2.0, 'tightly': 1.0, 'once': 1.0, 'in': 7.0, 'newborn': 1.0, 'of': 1.0, 'the': 11.0, 'time': 1.0, 'tall': 1.0, 'arms': 1.0, 'and': 7.0, 'one': 2.0, 'too': 2.0, 'we': 1.0, 'swaddled': 3.0, 'discovered': 1.0, 'could': 2.0, 'small': 1.0, 'a': 2.0, 'naps': 1.0, 'by': 2.0, 'about': 1.0, 'only': 1.0, 'swaddling': 1.0, 'boy': 1.0, 'would': 1.0, 'nap': 1.0, 'during': 3.0, 'day': 2.0, 'greatly': 1.0, 'or': 1.0, 'bouncing': 1.0, 'at': 2.0, 'first': 1.0, 'enjoy': 1.0, 'turn': 1.0, 'if': 1.0, 'bounced': 1.0, '0': 1.0, 'wish': 1.0, 'rocked': 1.0, 'late': 1.0, 'side': 1.0, 'using': 1.0, 'wake': 1.0, 'way': 1.0, 'particular': 1.0, 'both': 1.0, 'buckled': 1.0, 'swing': 1.0, 'safely': 2.0, 'that': 1.0, 'because': 1.0, 'his': 6.0, 'completely': 1.0, 'content': 1.0, 'all': 1.0, 'other': 2.0, 'helped': 1.0, 'my': 5.0, 'me': 1.0, 't': 1.0, 'rest': 1.0, 'grown': 1.0, 'allow': 1.0, 'from': 1.0}
Word element => {'but': 1.0, 'had': 1.0, 'quicker': 1.0, 'was': 2.0, 'to': 2.0, 'and': 1.0, 'get': 1.0, 'guy': 1.0, 'little': 1.0, 'didn': 1.0, 'pacifier': 3.0, 'would': 1.0, 'finally': 2.0, 'brands': 1.0, 'having': 1.0, 'different': 1.0, 'take': 2.0, 'many': 1.0, 'that': 2.0, 'realize': 1.0, 'of': 1.0, 'up': 1.0, 'there': 1.0, 'i': 4.0, 'tried': 1.0, 'retail': 1.0, 'finding': 1.0, 'difficulty': 1.0, 'my': 1.0, 'buying': 1.0, 'stores': 1.0, 'the': 1.0, 'a': 2.0, 't': 1.0, 'mam': 1.0, 'which': 1.0, 'he': 1.0, 'found': 1.0, 'this': 1.0, 'has': 1.0, 'them': 1.0, 'started': 1.0, 'actually': 1.0, 'lot': 1.0, 'at': 1.0, 'some': 1.0, 'available': 1.0, 'though': 1.0, 'ended': 1.0}
Word element => {'awesome': 1.0, 'sterilzing': 1.0, 'though': 1.0, 'case': 1.0, 'product': 1.0, 'paid': 1.0, 's': 1.0, 'way': 1.0, 'it': 3.0, 'shelf': 1.0, 'love': 1.0, 'selected': 1.0, 'high': 1.0, 'price': 2.0, 'i': 4.0, '2x': 1.0, 'seller': 1.0, 'too': 1.0, 'was': 3.0, 'from': 1.0, 'on': 1.0, 'over': 1.0, 'house': 1.0, 'but': 1.0, 'desperate': 1.0, 'great': 1.0, 'the': 7.0, 't': 1.0, 'couldn': 1.0, 'and': 1.0, 'is': 1.0, 'leave': 1.0, 'so': 1.0}
Word element => {'mortar': 1.0, 'and': 1.0, 'brick': 1.0, 'mold': 1.0, 'll': 1.0, 'important': 1.0, 'in': 2.0, 'light': 1.0, 'clearish': 1.0, 'a': 3.0, 'found': 1.0, 'this': 1.0, 'difficult': 1.0, 'son': 2.0, 'under': 2.0, 'brands': 1.0, 'although': 1.0, 'my': 2.0, 'cap': 3.0, 'another': 1.0, 'owned': 1.0, 'prefers': 1.0, 'but': 3.0, 'even': 2.0, 'very': 1.0, 'more': 2.0, 'have': 1.0, 'pacifier': 1.0, 'are': 1.0, 'it': 4.0, 'him': 1.0, 'be': 2.0, 'low': 1.0, 'nipple': 1.0, 'handy': 1.0, 'site': 1.0, 'them': 2.0, 'feature': 1.0, 'other': 1.0, 'what': 2.0, 'when': 1.0, 'night': 1.0, 'you': 2.0, 'clean': 3.0, 'again': 1.0, 'wears': 1.0, 'keep': 1.0, 'is': 6.0, 'at': 4.0, 'find': 1.0, 'since': 1.0, 'they': 2.0, 'think': 1.0, 'fashion': 1.0, 'tried': 1.0, 'off': 1.0, 'enough': 1.0, 's': 1.0, 'glow': 2.0, 'growing': 1.0, 'get': 3.0, 'area': 1.0, 'kind': 1.0, 'pretty': 2.0, 'to': 4.0, 'dropped': 1.0, 'these': 3.0, 'once': 1.0, 'the': 7.0, 'of': 3.0, 'impossible': 1.0, 'if': 1.0, 'squeeze': 1.0, 'sort': 1.0, 'with': 1.0, 'nutty': 1.0, 'i': 6.0, 'retail': 1.0, 'pumping': 1.0, 'buy': 1.0, 'into': 1.0, 'not': 1.0, 'out': 1.0, 'keeping': 1.0, 'properly': 1.0, 'likes': 1.0, 'review': 1.0, 'will': 2.0, 'can': 1.0, 'diligent': 1.0, 'about': 1.0, 'time': 1.0, 'amazon': 2.0, 'price': 1.0, 'for': 1.0, 'up': 1.0, 'water': 1.0, 'less': 1.0, 'much': 1.0, 'everywhere': 1.0, 'picking': 1.0}
Word element => {'retrievals': 1.0, 'night': 1.0, 'of': 1.0, 'saver': 1.0, 'life': 1.0, 'for': 1.0, 'model': 1.0, 'dark': 1.0, 'purchased': 1.0, 'in': 1.0, 'also': 1.0, 'we': 1.0, 'middle': 1.0, 'a': 2.0, 'was': 1.0, 'pacifiers': 1.0, 'it': 1.0, 'that': 1.0, 'frustrating': 1.0, 'our': 1.0, 'pacifier': 1.0, 'they': 1.0, 'glow': 1.0, 'loves': 1.0, 'clips': 1.0, 'the': 3.0, 'these': 1.0, 't': 1.0, 'have': 1.0, 'baby': 1.0, 'regular': 1.0, 'little': 1.0, 'didn': 1.0, 'solution': 1.0, 'work': 1.0, 'but': 1.0, 'an': 1.0, 'ingenious': 1.0}
Word element => {'for': 1.0, 'convertible': 1.0, 'suck': 1.0, 'can': 1.0, 'she': 1.0, 'so': 1.0, 'arm': 1.0, 'one': 1.0, 'have': 1.0, 'was': 1.0, 'how': 1.0, 'out': 3.0, 'soon': 1.0, 'and': 4.0, 'get': 2.0, 'to': 4.0, 'sleep': 1.0, 'think': 1.0, 'swaddle': 2.0, 'is': 1.0, 'woombie': 2.0, 'bottom': 1.0, 'of': 1.0, 'figured': 1.0, 'hands': 3.0, 'prevents': 1.0, 'the': 7.0, 'worth': 1.0, 'my': 2.0, 'extra': 1.0, 'a': 1.0, 'we': 1.0, 'then': 1.0, 'letting': 1.0, 'cost': 1.0, 'would': 1.0, 'her': 7.0, 'fabric': 1.0, 'likes': 1.0, 'up': 1.0, 'over': 1.0, 'face': 1.0, 'hand': 1.0, 'using': 1.0, 'hold': 1.0, 'trying': 1.0, 'mouth': 1.0, 'allows': 1.0, 'this': 1.0, 'daughter': 1.0, 'pull': 1.0, 'together': 1.0, 'at': 1.0, 'baby': 1.0, 'night': 1.0, 'i': 1.0, 'that': 2.0, 'sack': 1.0, 'will': 1.0, 'start': 1.0}
Word element => {'child': 1.0, 'next': 1.0, 'on': 1.0, 'again': 1.0, 'trying': 1.0, 'be': 1.0, 'll': 1.0, 'this': 2.0, 'that': 1.0, 'though': 1.0, 'say': 1.0, 'others': 1.0, 'like': 1.0, 'tired': 1.0, 'works': 1.0, 'her': 1.0, 'i': 4.0, 'arms': 1.0, 'but': 1.0, 'one': 1.0, 'woombie': 1.0, 'move': 1.0, 'the': 1.0, 'my': 2.0, 'little': 1.0, 'heard': 1.0, 'got': 1.0, 'loved': 1.0, 'think': 1.0, 'of': 1.0, 'not': 1.0, 'thing': 1.0, 'able': 1.0, 'after': 1.0, 've': 1.0, 'while': 1.0, 'being': 1.0, 'magic': 1.0, 'to': 1.0, 'a': 1.0}
Word element => {'keep': 1.0, 'there': 1.0, 'lets': 1.0, 'sides': 1.0, 'summer': 1.0, 'we': 1.0, 'out': 1.0, 'get': 1.0, 'cant': 1.0, 'because': 2.0, 'upset': 1.0, 'of': 1.0, 'up': 2.0, 'for': 2.0, 'i': 2.0, 'brand': 1.0, 'old': 1.0, 'things': 1.0, 'great': 1.0, 'diaper': 1.0, 'my': 2.0, 'pull': 1.0, 'woombie': 1.0, 'with': 2.0, 'hoping': 1.0, 'was': 1.0, 'only': 1.0, 'its': 1.0, 'swaddlers': 1.0, 'to': 2.0, 'horrible': 1.0, 'gets': 1.0, 'changes': 1.0, 'issue': 1.0, 'she': 2.0, 'it': 4.0, 'month': 1.0, 'zipper': 1.0, 'would': 1.0, 'ended': 1.0, 'after': 1.0, 'really': 3.0, 'is': 1.0, 'has': 1.0, 'about': 1.0, 'colic': 1.0, 'hearing': 1.0, 'us': 1.0, 'and': 2.0, 'too': 1.0, 'hands': 3.0, 'the': 6.0, 'stretchy': 1.0, 'then': 1.0, 'concept': 1.0, 'you': 2.0, 'that': 2.0, '2': 1.0, 'work': 1.0, 'can': 1.0, 'top': 1.0, 'unzip': 1.0, 'by': 1.0, 'just': 1.0, 'bottom': 1.0, 'using': 1.0, 'like': 1.0, 'which': 1.0, 'allows': 1.0, 'her': 4.0}
Word element => {'suggest': 1.0, 'definitely': 1.0, 'would': 1.0, 'linining': 1.0, 'inside': 1.0, 'accent': 1.0, 'colored': 1.0, 'like': 1.0, 'but': 1.0, 'bottle': 1.0, 'this': 3.0, 'mother': 1.0, 'diaper': 1.0, 'the': 2.0, 'it': 3.0, 'month': 1.0, 'bag': 3.0, '16': 1.0, 'black': 1.0, 'of': 4.0, 'old': 1.0, 'pockets': 2.0, 'is': 2.0, 'amazing': 1.0, 'plenty': 1.0, 'have': 2.0, 'a': 3.0, 'we': 2.0, 'zips': 1.0, 'has': 3.0, 'likes': 1.0, 'i': 2.0, 'two': 2.0, 'great': 1.0, 'padded': 1.0, 'as': 2.0, 'different': 1.0, 'styles': 1.0, 'or': 1.0, 'matching': 1.0, 'and': 2.0, 'insulated': 1.0, 'hook': 1.0, 'actually': 1.0, 'for': 1.0, 'shut': 1.0, 'strap': 1.0, 'lots': 1.0, 'room': 1.0, 'my': 1.0, 'keys': 1.0, 'husband': 1.0, 'been': 1.0, 'changing': 1.0, 'that': 1.0, 'trim': 1.0, 'pad': 1.0, 'silver': 1.0}
Word element => {'great': 1.0, 'has': 1.0, 'more': 1.0, 'just': 4.0, 'leads': 1.0, 'ok': 1.0, 'i': 7.0, 'color': 2.0, 'months': 1.0, 'ten': 1.0, 'word': 1.0, 'to': 3.0, 'got': 1.0, 'shipped': 1.0, 'be': 1.0, 'would': 3.0, 'box': 1.0, 'work': 3.0, 'but': 5.0, 'one': 2.0, 'lot': 1.0, 'at': 1.0, 'things': 1.0, 'bucks': 1.0, 'then': 1.0, 'we': 4.0, 't': 6.0, 'don': 1.0, 'up': 1.0, 'was': 6.0, 'available': 1.0, 'a': 1.0, 'imagine': 1.0, 'believe': 1.0, 'it': 8.0, 'first': 2.0, 'this': 8.0, 'bag': 6.0, 'need': 1.0, 'of': 3.0, 'the': 5.0, 'longer': 1.0, 'complaint': 1.0, 'been': 1.0, 'amazon': 1.0, 'avocado': 1.0, 'did': 2.0, 'didn': 2.0, 'ordered': 2.0, 'saying': 1.0, 'return': 1.0, 'tuquoise': 1.0, 'black': 2.0, 'so': 1.0, 'thinking': 1.0, 'getting': 1.0, 'items': 1.0, 'delivery': 1.0, 'couldn': 2.0, 'after': 1.0, 'ended': 1.0, 'no': 1.0, 'about': 3.0, 'for': 4.0, 'us': 2.0, 'big': 3.0, 'when': 1.0, 'opened': 1.0, 'how': 1.0, 'in': 3.0, 'm': 1.0, 'spacious': 2.0, 'bags': 1.0, 'wasn': 1.0, 'eddy': 1.0, 'and': 3.0, 'flat': 1.0, 'which': 1.0, 'itself': 1.0, 'not': 1.0, 'me': 2.0, 'my': 1.0, 'second': 1.0, 'seem': 1.0, 'access': 1.0, 'even': 1.0, 'practical': 1.0, 'very': 3.0, 'being': 1.0, 'returning': 1.0, 'easy': 1.0, 'long': 1.0, 'that': 5.0, 'because': 1.0, 'deep': 1.0, 'two': 1.0, 'skinny': 1.0, 'end': 1.0, 'all': 3.0, 'an': 1.0, 'bauer': 1.0}
Word element => {'tell': 1.0, 'hour': 1.0, 'up': 1.0, 'dried': 1.0, 'from': 1.0, 'of': 1.0, 'water': 1.0, 'graco': 1.0, 'well': 1.0, 'cute': 1.0, 'really': 1.0, 'size': 1.0, 'was': 1.0, 'had': 1.0, 'husband': 1.0, 'all': 1.0, 'spilled': 1.0, 'to': 1.0, 'it': 5.0, 'love': 1.0, 'cant': 1.0, 'one': 1.0, 'i': 4.0, 'hate': 1.0, 'fits': 1.0, 'my': 2.0, 'just': 1.0, 'carter': 1.0, 'even': 1.0, 'got': 1.0, 'already': 2.0, 'stroller': 1.0, 'diaper': 1.0, 'bag': 3.0, 'bulky': 1.0, 'about': 1.0, 'baby': 1.0, 'weeks': 1.0, '2': 1.0, 'but': 1.0, 'me': 2.0, 'not': 1.0, 'kinda': 1.0, 'the': 1.0, 'ugly': 1.0, 'thermos': 1.0, 'is': 2.0, 'and': 7.0, 'too': 2.0, 'you': 2.0, 'when': 1.0, 'great': 2.0, '1': 1.0, 'big': 1.0, 'bulkiness': 1.0, 'bottom': 1.0, 'especially': 1.0, 'have': 1.0, 'a': 4.0, 'ago': 1.0, 's': 1.0, 'going': 1.0, 'million': 1.0, 'things': 1.0, 'in': 3.0, 'this': 3.0, 'perfect': 1.0, 'on': 1.0, 'your': 1.0, 'price': 1.0, 'onto': 1.0, 'arms': 1.0}
Word element => {'pad': 1.0, 'wipe': 1.0, 'comes': 1.0, 'and': 2.0, 'hole': 1.0, 'fairly': 1.0, 'of': 1.0, 'pockets': 2.0, 'size': 1.0, 'so': 2.0, 'full': 1.0, '3': 1.0, 'black': 1.0, 'a': 1.0, 'well': 1.0, 's': 1.0, 'changing': 1.0, 'as': 2.0, 'outside': 1.0, 'has': 2.0, 'bag': 1.0, 'bottle': 1.0, 'holders': 1.0, 'inside': 1.0, 'on': 1.0, 'the': 2.0, '2': 1.0, 'holder': 1.0, 'sides': 1.0, 'with': 1.0, 'durable': 1.0, 'this': 1.0, 'it': 2.0, 'smaller': 1.0, 'not': 1.0, 'much': 1.0}
Word element => {'long': 1.0, 'last': 1.0, 'zippers': 1.0, 'bag': 1.0, 'this': 1.0, 'are': 2.0, 't': 1.0, 'the': 1.0, 'diaper': 1.0, 'really': 1.0, 'returning': 1.0, 'will': 1.0, 'm': 1.0, 'cheap': 1.0, 'i': 2.0, 'they': 2.0, 'flimsy': 1.0, 'because': 1.0, 'not': 1.0, 'feel': 1.0, 'smooth': 1.0, 'stick': 1.0, 'and': 1.0, 'don': 1.0, 'imagine': 1.0}
Word element => {'carrying': 1.0, 'will': 1.0, 'if': 1.0, 'versatile': 1.0, 'not': 1.0, 'underneath': 1.0, 'feelable': 1.0, 'uncomfortably': 1.0, 'but': 1.0, 'cushion': 2.0, 'go': 1.0, 'force': 1.0, 'be': 2.0, 'aways': 1.0, 'extent': 1.0, 'shortened': 2.0, 'my': 1.0, 'at': 1.0, 'sits': 1.0, 'is': 4.0, 'completely': 1.0, 'much': 2.0, 'hold': 1.0, 'something': 1.0, 'straps': 1.0, 'hand': 1.0, 'heights': 1.0, 'got': 1.0, 'way': 1.0, 'than': 2.0, 'sharing': 1.0, 'does': 1.0, 'different': 1.0, 'very': 1.0, 'our': 1.0, 'to': 5.0, 'are': 1.0, 'all': 1.0, 'an': 1.0, 'has': 1.0, 'funny': 1.0, 's': 2.0, 'a': 2.0, 'then': 1.0, 'we': 1.0, 't': 1.0, 'neutral': 1.0, 'free': 2.0, 'bag': 4.0, 'looking': 1.0, 'over': 1.0, 'he': 1.0, 'slider': 2.0, 'it': 4.0, 'this': 1.0, 'adjustable': 1.0, 'chest': 2.0, 'shorter': 1.0, 'for': 3.0, 'cheap': 1.0, 'sit': 1.0, 'when': 2.0, 'you': 2.0, 'style': 1.0, 'give': 1.0, 'carried': 1.0, 'on': 2.0, 'your': 2.0, 'people': 1.0, 'both': 1.0, 'and': 8.0, 'across': 1.0, 'gray': 1.0, 'carry': 2.0, 'pad': 1.0, 'actually': 1.0, 'color': 1.0, 'uncomfortable': 1.0, 'i': 5.0, 'more': 1.0, 'husband': 1.0, 'head': 1.0, 'shoulder': 4.0, '2': 2.0, 'can': 2.0, 'so': 2.0, '1yr': 1.0, 'old': 2.0, 'metal': 1.0, 'have': 1.0, '5yr': 1.0, 'movement': 1.0, 've': 1.0, 'strap': 1.0, 'position': 1.0, 'had': 1.0, 'orange': 1.0, 'either': 2.0, 'body': 1.0, 'diaper': 1.0, 'bags': 1.0, 'from': 1.0, 'into': 1.0, 'hospital': 1.0, 'need': 3.0, 'or': 2.0, 'because': 1.0, 'that': 1.0, 'types': 1.0, 'better': 1.0, 'suited': 1.0, 'us': 1.0, 'also': 2.0, 'in': 2.0, 'gets': 1.0, 'the': 13.0, 'of': 1.0, 'doesn': 1.0, 'back': 1.0}
Word element => {'because': 1.0, 'instead': 1.0, 'everyday': 1.0, 'use': 1.0, 'now': 1.0, 'well': 1.0, 'wear': 1.0, 'survived': 1.0, 'do': 1.0, 'bulging': 1.0, 'fit': 1.0, 'not': 1.0, 'accessible': 1.0, 'looked': 1.0, 'zipper': 2.0, '18': 1.0, 'small': 2.0, 'added': 1.0, 'other': 1.0, 'an': 1.0, 'einstein': 1.0, 'all': 2.0, 'makes': 1.0, 'top': 3.0, 'did': 1.0, 'so': 7.0, 'bottle': 1.0, 'this': 1.0, 'compartment': 1.0, 'side': 3.0, 'which': 6.0, 'spacious': 2.0, 'is': 9.0, 'at': 1.0, 'special': 1.0, 'nothing': 2.0, 'abroad': 1.0, 'd': 2.0, 'someone': 1.0, 'attached': 1.0, '2': 4.0, 'end': 2.0, 'try': 1.0, 'one': 4.0, 'held': 1.0, 'much': 2.0, 'tear': 1.0, 'changing': 1.0, 'fed': 1.0, 'put': 2.0, 'strap': 3.0, 'inch': 1.0, 'easily': 1.0, 'fall': 1.0, 'for': 4.0, 'searching': 1.0, '10': 1.0, 'love': 1.0, 'sorta': 1.0, 'could': 1.0, 'padding': 1.0, 'handles': 1.0, 'longer': 1.0, 'the': 20.0, 'or': 2.0, 'nice': 2.0, 'little': 3.0, 'two': 1.0, 'mesh': 1.0, 'like': 1.0, 'vera': 2.0, 'it': 12.0, 'already': 1.0, 'thought': 1.0, 'were': 1.0, 'abyss': 1.0, 'full': 2.0, 'dirty': 1.0, 'bottles': 3.0, 'had': 5.0, 'was': 4.0, 'look': 1.0, 'filled': 1.0, 'of': 6.0, 'even': 2.0, 'lifts': 1.0, 'pockets': 6.0, 'with': 1.0, 'bradley': 2.0, 'i': 12.0, 'become': 1.0, 'short': 1.0, 'pad': 1.0, 'wanted': 1.0, 'a': 10.0, 'bag': 8.0, 'them': 3.0, 'baby': 7.0, 'has': 4.0, 'gotten': 1.0, 'our': 2.0, 'to': 5.0, 'as': 1.0, 'would': 1.0, 'you': 2.0, 'in': 5.0, 'his': 3.0, 'pouch': 1.0, 'duds': 1.0, 'place': 1.0, 'tooth': 1.0, 'they': 1.0, 'more': 3.0, 'that': 4.0, 'onesies': 1.0, 'we': 1.0, 'inside': 3.0, 'never': 2.0, 'take': 1.0, 'find': 1.0, 'very': 3.0, 'plays': 1.0, 'binkies': 2.0, 'blanky': 1.0, 'bigger': 1.0, 'food': 1.0, 'giving': 1.0, 'always': 1.0, 'space': 2.0, 'there': 3.0, 'but': 8.0, 'diapers': 1.0, 'paste': 1.0, 'gaps': 1.0, 'on': 1.0, 'flight': 1.0, 'travel': 3.0, 'both': 1.0, 'ends': 1.0, 'long': 1.0, 'although': 2.0, 'fallen': 1.0, 'conscious': 1.0, 't': 1.0, 'convenient': 1.0, 'might': 1.0, 'formula': 1.0, 'their': 1.0, 'hand': 1.0, 'taggy': 1.0, 'adjustable': 1.0, 'if': 1.0, 'great': 2.0, 'shoulder': 1.0, 'ever': 1.0, 'm': 1.0, 'doesn': 1.0, 'reach': 1.0, 'dig': 1.0, 'closure': 1.0, 'through': 1.0, 'into': 1.0, 'three': 1.0, 'where': 1.0, 'your': 1.0, 'flimsy': 1.0, 'case': 1.0, 'larger': 1.0, 'out': 2.0, 'magnetic': 1.0, 'storing': 1.0, 'pocket': 1.0, 'hey': 1.0, 'and': 20.0, 'just': 2.0, 'free': 1.0, 'toys': 1.0, 'eczema': 1.0, 'only': 1.0, 'blame': 1.0, 'liquid': 1.0, 'large': 1.0, 'wipes': 1.0, 'wish': 1.0, 'transparent': 1.0, 'found': 1.0, 'have': 1.0, 'secure': 1.0, 'are': 3.0, 'my': 2.0, 'hour': 1.0, 'gift': 1.0, 'lotion': 2.0, 'packed': 1.0, 'sleep': 1.0, 'too': 2.0, '3': 2.0, 'lost': 1.0, 'tunes': 1.0, 'up': 1.0, 'sized': 1.0, 'n': 1.0, '12': 1.0, 'size': 2.0, 'skin': 1.0, 'things': 2.0, 'packs': 1.0, 'vaseline': 1.0, 'though': 1.0, 'after': 1.0, 'infant': 1.0, 'individual': 1.0, 'serving': 1.0, 'blanket': 1.0}
Word element => {'smaller': 1.0, 'or': 1.0, 'picnic': 1.0, 'want': 1.0, 'looks': 1.0, 'it': 1.0, 'with': 1.0, 'this': 1.0, 'house': 1.0, 'option': 1.0, 'laptops': 1.0, 'work': 1.0, 'out': 1.0, 'lunch': 1.0, 'trip': 1.0, 'your': 1.0, 'places': 1.0, 'you': 1.0, 'plenty': 1.0, 'essentials': 1.0, 'light': 1.0, 'all': 1.0, 'also': 1.0, 'good': 1.0, 'of': 3.0, 'bag': 1.0, 'need': 1.0, 'nice': 1.0, 'pockets': 1.0, 'too': 2.0, 'and': 1.0, 'for': 6.0, 'the': 4.0, 'diaper': 1.0, 'should': 1.0, 'be': 1.0, 't': 1.0, 'a': 3.0, 'roomy': 1.0, 'well': 1.0, 'fathers': 1.0, 'that': 1.0, 'don': 1.0, 'possible': 1.0, 'embarrassment': 1.0, 'carrying': 3.0, 'some': 2.0, 'other': 1.0, 'bags': 1.0, 'new': 1.0, 'would': 1.0}
Word element => {'none': 1.0, 'next': 1.0, 'in': 1.0, 'space': 1.0, 'carry': 1.0, 'stay': 1.0, 'if': 2.0, 'you': 2.0, 'the': 4.0, 'small': 1.0, 'side': 1.0, 'is': 3.0, 'on': 1.0, 'to': 2.0, 'closed': 1.0, 'bag': 1.0, 'it': 2.0, 'this': 1.0, 'anything': 1.0, 'everyday': 1.0, 'put': 1.0, 'inside': 2.0, 'plan': 1.0, 'front': 1.0, 'do': 1.0, 'worse': 1.0, 'pockets': 2.0, 'not': 1.0}
Word element => {'worth': 1.0, 'think': 1.0, 'money': 1.0, 'don': 1.0, 'blanket': 1.0, 'a': 1.0, 'instead': 1.0, 'use': 2.0, 'was': 1.0, 'to': 3.0, 'can': 1.0, 'and': 1.0, 'get': 1.0, 'it': 4.0, 'this': 1.0, 'with': 1.0, 'is': 1.0, 'problem': 1.0, 'so': 1.0, 'that': 1.0, 't': 1.0, 'the': 2.0, 'stay': 1.0, 'gauzy': 1.0, 'an': 1.0, 'but': 1.0, 'easy': 1.0, 'you': 1.0, 's': 1.0, 'just': 1.0, 'not': 2.0, 'tend': 1.0, 'open': 1.0, 'close': 1.0, 'i': 2.0}
Word element => {'snagged': 1.0, 'how': 1.0, 'hasn': 1.0, 'but': 1.0, 'outconsit': 1.0, 'frog': 1.0, 'cameleoneasy': 1.0, 'both': 1.0, 'baby': 1.0, 'fitfits': 1.0, 'keep': 1.0, 'off': 1.0, 'sun': 2.0, 'yet': 1.0, 'for': 1.0, 'to': 3.0, 'was': 2.0, 'looking': 1.0, 'without': 1.0, 't': 1.0, 'the': 2.0, 'great': 1.0, 'in': 1.0, 'having': 1.0, 'i': 2.0, 'buy': 1.0, 'easily': 1.0, 'could': 2.0, '100': 1.0, 'happened': 1.0, 'ways': 1.0, 'breezy': 1.0, 'canopy': 1.0, 'reach': 1.0, 'prospricesug': 1.0, 'and': 3.0, 'this': 2.0, 'see': 1.0, 'a': 1.0, 'solution': 1.0}
Word element => {'with': 1.0, 'useful': 1.0, 'look': 1.0, 'i': 1.0, 'opened': 1.0, 'they': 1.0, 'used': 1.0, 'have': 2.0, 'this': 1.0, 'stroller': 1.0, 'but': 1.0, 'just': 1.0, 'package': 1.0, 'jeep': 1.0, 'very': 1.0, 'and': 1.0, 'not': 1.0, 'them': 1.0, 'my': 1.0, 'yet': 1.0}
Word element => {'up': 1.0, 'a': 1.0, 'time': 1.0, 'her': 1.0, 'in': 1.0, 'perfect': 1.0, 's': 1.0, 'size': 1.0, 'without': 1.0, 'to': 1.0, 'prayer': 1.0, 'go': 1.0, 'my': 1.0, 'bed': 1.0, 'for': 3.0, 'very': 1.0, 'year': 1.0, 'daughter': 1.0, 'purchase': 1.0, 'loves': 1.0, 'that': 1.0, 'second': 1.0, 'is': 2.0, 'spanish': 1.0, 'the': 3.0, '2': 1.0, 'i': 1.0, 'old': 1.0, 'doll': 1.0, 'she': 1.0, 'back': 1.0, 'will': 1.0, 'cute': 1.0, 'absolutely': 1.0, 'this': 1.0, 'it': 4.0, 'carries': 1.0, 'everywhere': 1.0, 'and': 2.0, 'not': 1.0}
Word element => {'kids': 1.0, 'years': 1.0, 'be': 1.0, 'definitely': 1.0, 'at': 1.0, 'see': 1.0, 'sometimes': 1.0, 'white': 1.0, 'boring': 1.0, 'than': 1.0, 'prettier': 1.0, 'are': 1.0, 'much': 1.0, 'names': 1.0, 'childrens': 1.0, 'buying': 1.0, 'was': 1.0, 'ones': 1.0, 'the': 4.0, 'these': 1.0, 'school': 1.0, 'they': 2.0, 'for': 2.0, 'mats': 2.0, 'photo': 1.0, 'of': 1.0, 'three': 1.0, 'so': 2.0, 'ordered': 1.0, 'old': 1.0, 'i': 3.0, 'very': 1.0, 'will': 1.0, 'quality': 1.0, 'stores': 1.0, 'my': 2.0, 'happy': 1.0, 'children': 1.0, 'with': 3.0, 'come': 1.0, 'stickers': 1.0, 'personalize': 1.0, 'you': 2.0, 'can': 1.0}
Word element => {'a': 1.0, 'so': 1.0, 'moon': 1.0, 'simply': 1.0, 'really': 1.0, 'daughter': 1.0, 'adorable': 1.0, 'year': 1.0, 'for': 2.0, '5': 1.0, 'surprise': 1.0, 's': 1.0, 'my': 1.0, 'the': 1.0, 'old': 1.0, 'i': 1.0, 'bought': 1.0, 'this': 1.0, 'it': 2.0, 'her': 1.0, 'she': 1.0, 'wanted': 1.0, 'was': 1.0, 'over': 1.0}
Word element => {'even': 1.0, 'a': 1.0, 'in': 1.0, 'for': 1.0, 'skin': 1.0, 'would': 1.0, 'etc': 1.0, 'purchase': 1.0, 'almost': 1.0, 'sons': 1.0, 'again': 1.0, 'water': 1.0, 'week': 1.0, 'stayed': 1.0, 'exactly': 1.0, 'as': 1.0, 'described': 1.0, 'and': 1.0, 'my': 1.0, 'on': 1.0}
Word element => {'wearing': 1.0, 'regular': 1.0, 'them': 2.0, 'fun': 1.0, 'but': 2.0, 'quickly': 1.0, 'pumpkin': 1.0, 'ones': 1.0, 'the': 3.0, 'these': 1.0, 'out': 1.0, 'halloween': 1.0, 'my': 1.0, 'spider': 1.0, 'is': 1.0, 'fine': 1.0, '5': 1.0, 'legs': 1.0, 'wish': 1.0, 'son': 1.0, 'year': 1.0, 'grew': 1.0, 'little': 1.0, 'when': 1.0, 'he': 2.0, 'received': 1.0, 'into': 1.0, 'craze': 1.0, 'furry': 1.0, 'old': 1.0, 'i': 1.0, 'entered': 1.0, 'silly': 1.0, 'of': 1.0, 'there': 1.0, 'altogether': 1.0, 'has': 1.0, 'like': 1.0, 'bandz': 1.0, 'which': 1.0, 'were': 1.0, 'a': 1.0, 'better': 1.0, 'looking': 1.0, 'are': 1.0, 'briefly': 1.0, 'and': 1.0, 'have': 1.0, 'survived': 1.0}
Word element => {'pocket': 1.0, 'had': 1.0, 'hoping': 1.0, 'was': 1.0, 'enough': 1.0, 'easy': 1.0, 'onto': 1.0, 'them': 1.0, 'and': 2.0, 'attached': 1.0, 'pins': 1.0, 'not': 1.0, 'just': 1.0, 'also': 1.0, 'disappointed': 1.0, 'within': 1.0, 'baby': 1.0, 'about': 1.0, 'took': 1.0, 'i': 3.0, 'fix': 1.0, 'thing': 1.0, 'am': 1.0, 'it': 2.0, 'only': 1.0, 'side': 1.0, 'is': 1.0, 'diaper': 1.0, 'the': 5.0, 'ripped': 1.0, 'bag': 4.0, 'overall': 1.0, 'of': 4.0, 'does': 1.0, 'both': 1.0, 'off': 1.0, 'hand': 1.0, 'straps': 1.0, 'a': 2.0, 'one': 1.0, 'love': 1.0, 'using': 1.0, 'inside': 1.0, 'zipper': 1.0, 'back': 1.0, 'week': 1.0}
Word element => {'winter': 1.0, 'cool': 1.0, 'great': 1.0, 'which': 1.0, 'keeping': 1.0, 'smooth': 1.0, 'cloth': 1.0, 'has': 1.0, 'up': 1.0, 'little': 1.0, 'too': 1.0, 'when': 1.0, 'place': 1.0, 'hold': 1.0, 'stay': 1.0, 'small': 1.0, 'warmer': 1.0, 'support': 1.0, 'my': 1.0, 'for': 2.0, 'in': 4.0, 'extra': 1.0, 'add': 1.0, 'a': 4.0, 'well': 1.0, 'snuzzler': 1.0, 'was': 1.0, 'to': 2.0, 'head': 1.0, 'works': 1.0, 'terry': 1.0, 'he': 1.0, 'it': 3.0, 'this': 1.0, 'baby': 1.0, 'car': 1.0, 'and': 1.0, 'sons': 1.0, 'seat': 1.0, 'summer': 1.0, 'is': 1.0, 'side': 2.0, 'really': 1.0, 'or': 2.0, 'stroller': 1.0, 'helped': 1.0}
Word element => {'quality': 1.0, 'up': 1.0, 'standing': 1.0, 'toddler': 1.0, 'pre': 1.0, 'changed': 1.0, 'adjustment': 1.0, 'daddy': 1.0, 'snap': 1.0, 'even': 1.0, 'training': 1.0, 'on': 1.0, 'strong': 1.0, 'potty': 1.0, 's': 1.0, 't': 4.0, 'going': 1.0, 'a': 4.0, 'go': 1.0, 'we': 2.0, 'moving': 1.0, 'v2s': 1.0, 'taller': 1.0, 'been': 1.0, 'now': 2.0, 'so': 3.0, 'can': 2.0, 'size': 1.0, 'bit': 1.0, 'easy': 2.0, 'last': 1.0, 'proof': 1.0, 'different': 1.0, 'they': 5.0, 'months': 1.0, 'but': 3.0, 'chubby': 1.0, 'few': 1.0, 'design': 1.0, 'chunky': 1.0, 'weight': 1.0, 'hidden': 1.0, 're': 3.0, 'squirmy': 1.0, 'think': 1.0, 'types': 1.0, 'enough': 1.0, 'have': 3.0, 'body': 1.0, 'as': 2.0, 'leave': 1.0, 'good': 1.0, 'prefolds': 1.0, 'wise': 1.0, 'these': 2.0, 'us': 2.0, 'things': 1.0, 'i': 6.0, 'for': 5.0, 'didn': 1.0, '95': 1.0, 'actually': 1.0, 'down': 1.0, 've': 2.0, 'sitter': 1.0, 'many': 1.0, 'others': 1.0, 'baby': 2.0, 'them': 1.0, 'height': 1.0, 'sing': 1.0, 'd': 1.0, 'very': 1.0, 'little': 1.0, 'the': 7.0, 'of': 1.0, '12m': 1.0, 'and': 7.0, 'to': 3.0, 'waist': 1.0, 'use': 2.0, 'pray': 1.0, 'great': 3.0, 'tried': 1.0, 'until': 1.0, 'material': 1.0, 'still': 1.0, 'slimmed': 1.0, 'every': 1.0, 'too': 1.0, 'lasted': 1.0, 'no': 1.0, 'starting': 1.0, 'wear': 1.0, 'or': 1.0, 'he': 1.0, 'yet': 1.0, 'that': 2.0, 'because': 1.0, 'with': 1.0, 'is': 3.0, 'say': 1.0, 'cute': 1.0, 'are': 2.0, 'like': 2.0, 'fact': 1.0, 'best': 1.0, 'tummy': 1.0, 'isn': 1.0, 'don': 1.0, 'short': 1.0, 'marks': 1.0, 'rise': 1.0, 'tear': 1.0, 'his': 2.0, 'only': 1.0}
Word element => {'apartment': 1.0, 'an': 1.0, 'dishwasher': 1.0, 'in': 1.0, 'live': 1.0, 'by': 1.0, 'easy': 1.0, 'makes': 1.0, 'one': 1.0, 'clean': 1.0, 'different': 1.0, 'switch': 1.0, 'handles': 1.0, 'replace': 1.0, 'clip': 1.0, 'hand': 1.0, 'know': 1.0, 'throws': 1.0, 'to': 2.0, 'cups': 1.0, 'out': 1.0, 'don': 1.0, 'child': 2.0, 'yet': 1.0, 'or': 2.0, 'off': 2.0, 'i': 2.0, 'customizable': 1.0, 'spouts': 1.0, 'sometimes': 1.0, 'flip': 1.0, 'it': 4.0, 'with': 2.0, 'only': 1.0, 'love': 1.0, 'avent': 1.0, 'lid': 2.0, 'my': 1.0, 'without': 1.0, 'the': 5.0, 'these': 2.0, 'great': 1.0, 'we': 1.0, 'a': 2.0, 't': 2.0, 'is': 1.0, 'that': 3.0, 'have': 1.0, 'them': 2.0, 'sippy': 1.0, 'problem': 1.0, 'drops': 1.0, 'if': 2.0, 'too': 1.0, 'and': 2.0, 'half': 1.0, 'daughter': 1.0, 'water': 1.0, 'than': 1.0, 'spills': 1.0, 'how': 1.0, 'anything': 1.0, 'other': 1.0, 'are': 3.0, 'they': 2.0, 'on': 1.0, 'put': 1.0, 'your': 2.0, 'very': 2.0, 'loosens': 1.0, 'when': 1.0, 'you': 3.0, 'prefers': 1.0, 'work': 1.0, 'can': 3.0, 'take': 2.0, 'doesn': 1.0}
Word element => {'recomiendo': 1.0, 'bonitos': 1.0, 'sin': 1.0, 'excelente': 2.0, 'venededor': 1.0, 'producto': 2.0, 'llego': 1.0, 'lo': 1.0, 'tiempo': 1.0, 'problema': 1.0, 'totalmente': 1.0, 'este': 1.0, 'en': 1.0, 'muy': 1.0, 'y': 1.0, 'estipulado': 1.0, 'nuevo': 1.0, 'el': 1.0}
Word element => {'what': 1.0, 'have': 1.0, 'i': 1.0, 'of': 1.0, 'no': 1.0, 'a': 1.0, 'the': 1.0, 'cup': 3.0, 'avent': 1.0, 'money': 1.0, 'baby': 1.0, 's': 1.0, 'this': 2.0, 'it': 1.0, 'first': 1.0, 'leaks': 2.0, 'is': 2.0, 'fine': 1.0, 'but': 1.0, 'waste': 1.0, '12': 1.0, 'everytime': 1.0, 'and': 2.0, 'matter': 1.0}
Word element => {'me': 1.0, 'item': 1.0, 'just': 2.0, 'while': 1.0, 'didn': 1.0, 'avent': 1.0, 'these': 1.0, 't': 2.0, 'the': 3.0, 'wasn': 1.0, 'lids': 1.0, 'for': 1.0, 'love': 1.0, 'i': 2.0, 'mismatched': 1.0, 'seem': 1.0, 'well': 1.0, 'returned': 1.0, 'us': 1.0, 'cups': 1.0, 'to': 2.0, 'coordinate': 1.0, 'this': 1.0, 'with': 1.0, 'they': 1.0, 'appeared': 1.0}
Word element => {'came': 1.0, 'marketing': 1.0, 'fire': 1.0, '24': 1.0, 'drinks': 1.0, 'ounces': 1.0, 'trusted': 1.0, 'what': 3.0, 'arrived': 1.0, 'quickly': 1.0, 'they': 2.0, 'product': 1.0, 'year': 4.0, 'for': 4.0, 'sitting': 1.0, '2': 4.0, 'but': 1.0, 'month': 4.0, 'it': 3.0, '18': 3.0, 'these': 1.0, 'i': 6.0, 'fan': 1.0, 'can': 1.0, 'so': 1.0, 'to': 3.0, 'am': 1.0, 'bottles': 2.0, '4': 1.0, 'cups': 1.0, 'cup': 2.0, 'need': 1.0, 'or': 1.0, 'old': 5.0, 'realized': 1.0, 'pantry': 1.0, 'let': 1.0, 'no': 1.0, 'a': 3.0, 'something': 1.0, 'clip': 1.0, 'state': 1.0, 'would': 1.0, 'that': 3.0, 'filled': 1.0, 'not': 4.0, 'and': 2.0, 'one': 1.0, 'too': 1.0, 'tough': 1.0, 'me': 1.0, 'my': 2.0, 'avent': 5.0, 'lid': 2.0, '12': 1.0, 'who': 1.0, 'up': 1.0, 'change': 1.0, 'sippy': 3.0, 'beverage': 1.0, 'at': 1.0, 'is': 4.0, 'with': 2.0, 'bottle': 2.0, 'this': 4.0, 'big': 1.0, 'of': 4.0, 'the': 6.0, 'flip': 2.0, 'mine': 1.0, 'use': 2.0, 'genius': 1.0, 'travel': 1.0, 'belt': 1.0, 'nearly': 1.0, 'bought': 1.0, 'waterproof': 1.0, 'an': 1.0, 'other': 1.0, 'most': 1.0, 'making': 2.0, 'matter': 1.0, 'huge': 1.0, 'caps': 1.0, 'designed': 1.0, 'as': 2.0, 'diaper': 1.0, 'bag': 1.0, 'there': 1.0, 'sport': 3.0, 'first': 1.0, 'bad': 1.0, 'are': 1.0, 'ounce': 1.0, 'after': 1.0, 'gradations': 1.0, 'have': 1.0, 'on': 1.0, 'open': 1.0, 'measure': 1.0, 'out': 1.0, 'juice': 1.0, 'guess': 1.0, 'in': 1.0, 'm': 1.0, 'sure': 1.0, 'certainly': 1.0}
Word element => {'spilling': 1.0, 'problems': 1.0, 'had': 1.0, 'not': 1.0, 'however': 1.0, 'transitioning': 1.0, 'just': 1.0, 'of': 1.0, 'portion': 1.0, 'bottle': 2.0, 'leaking': 1.0, 'unfortunately': 1.0, 'out': 1.0, 'in': 2.0, 'when': 1.0, 'easily': 1.0, 'were': 1.0, 'loves': 1.0, 'babies': 1.0, 'that': 2.0, 'uses': 1.0, 'toddler': 1.0, 'ours': 1.0, 'pops': 1.0, 'design': 2.0, 'other': 1.0, 'only': 1.0, 'mouth': 1.0, 'having': 1.0, 'more': 1.0, 'is': 5.0, 'blue': 1.0, 'inside': 1.0, 'we': 2.0, 'bunny': 1.0, 'a': 6.0, 'easier': 1.0, 'has': 1.0, 'well': 1.0, 'i': 2.0, 'cute': 1.0, 'soft': 1.0, 'this': 3.0, 'found': 1.0, 'or': 1.0, 'cup': 4.0, 'downside': 1.0, 'like': 1.0, 'very': 1.0, 'subtle': 1.0, 'and': 7.0, 'orange': 1.0, 'the': 12.0, 'goes': 1.0, 'made': 1.0, 'colors': 1.0, 'prefers': 1.0, 'removable': 1.0, 'them': 1.0, 'baby': 2.0, 'sippy': 2.0, 'handles': 1.0, 'tip': 1.0, 'used': 1.0, 'helpful': 1.0, 'with': 2.0, 'piece': 2.0, 'rejected': 1.0, 'remove': 1.0, 'may': 1.0, 'my': 2.0, 'lid': 1.0, 'be': 2.0, 'still': 1.0, 'difficult': 1.0, 'he': 1.0, 'plastic': 4.0, 'washing': 1.0, 'from': 1.0, 'hard': 1.0, 'compared': 1.0, 'any': 1.0, 'to': 5.0, 'cups': 2.0, 'for': 2.0, 'where': 1.0, 'have': 2.0}
Word element => {'service': 1.0, 'happy': 1.0, 'washable': 1.0, 'advanced': 1.0, 'more': 1.0, 'kids': 1.0, 'taken': 2.0, 'be': 2.0, 'are': 1.0, 'cute': 1.0, 'only': 1.0, 'didn': 1.0, 'ordered': 1.0, '6': 1.0, 'them': 1.0, 'lid': 1.0, 'send': 1.0, 'put': 1.0, 'fabulous': 1.0, 'designs': 1.0, 'from': 1.0, 'valve': 1.0, 'report': 1.0, 'lift': 1.0, 'received': 1.0, 'also': 3.0, 'is': 6.0, 'had': 1.0, 'who': 1.0, '12': 1.0, 'into': 1.0, 'or': 1.0, 'handles': 3.0, 'another': 1.0, 'ounce': 3.0, 'liked': 1.0, 'for': 2.0, 'com': 2.0, 'very': 3.0, 'adorable': 1.0, 'product': 2.0, 'year': 1.0, '26': 1.0, 't': 1.0, 'ago': 1.0, 'a': 3.0, 'these': 1.0, 'they': 8.0, 'the': 12.0, 'of': 2.0, 'packaging': 2.0, 'was': 2.0, 'march': 2.0, 'have': 2.0, 'even': 1.0, 'contacted': 1.0, 'surprised': 1.0, 'mailed': 1.0, 'what': 1.0, 'when': 1.0, 'am': 2.0, 'truly': 1.0, 'daughter': 2.0, 'cup': 2.0, 'cups': 6.0, 'liquid': 1.0, 'i': 10.0, '2011': 2.0, 'old': 1.0, 'easily': 1.0, 'that': 2.0, 'because': 4.0, 'apart': 1.0, 'than': 1.0, 'so': 1.0, 'can': 5.0, 'plain': 1.0, 'their': 1.0, '25': 1.0, 'customer': 2.0, 'hold': 2.0, 'like': 1.0, '1': 1.0, 'avent': 1.0, 'great': 3.0, 'and': 7.0, '5': 1.0, 'thought': 1.0, '9': 2.0, 'it': 3.0, 'month': 2.0, 'chatting': 1.0, 'said': 1.0, 'hoping': 1.0, 'there': 1.0, 'amazon': 3.0, 'unto': 1.0, 'immediately': 1.0, 'happily': 1.0, 'someone': 1.0, 'shipped': 1.0, 'representative': 1.0, 'out': 2.0, 'on': 2.0, 'update': 1.0, 'set': 1.0, 'were': 2.0, 'overnight': 1.0, 'this': 2.0, 'time': 1.0, 'my': 2.0, 'me': 2.0, 'right': 2.0, 'less': 1.0, '24': 1.0, 'hours': 1.0, 'with': 2.0, 'about': 1.0, 'above': 1.0, 'mentioned': 1.0, 'issue': 1.0}
Word element => {'no': 1.0, 'on': 2.0, 'have': 1.0, 'nipple': 2.0, 'the': 3.0, 't': 1.0, 'to': 2.0, 'supposed': 1.0, 'with': 1.0, 'this': 1.0, 'first': 1.0, 'it': 1.0, 'a': 1.0, 'philips': 1.0, 'isn': 1.0, 'hole': 2.0, 'wake': 1.0, 'm': 1.0, 'up': 1.0, 'i': 1.0, 'one': 1.0, 'not': 1.0, 'receive': 1.0, 'cup': 1.0}
Word element => {'esp': 1.0, 'with': 1.0, 'happy': 1.0, 'herself': 1.0, 'feed': 1.0, 'handles': 1.0, 'is': 2.0, 'overall': 1.0, 'realised': 1.0, 'there': 2.0, 'leak': 1.0, 'says': 1.0, '6': 1.0, 'price': 1.0, 'absolutely': 1.0, 'of': 1.0, 'once': 1.0, 'no': 2.0, 'product': 2.0, 'snip': 1.0, 'hard': 1.0, 'i': 4.0, 'tested': 1.0, 'old': 1.0, 'but': 1.0, 'making': 1.0, 'rubbish': 1.0, 'in': 2.0, 'thought': 1.0, 'doesn': 1.0, 'was': 1.0, 'to': 1.0, 'first': 1.0, 'teat': 2.0, 'review': 1.0, 'buy': 1.0, 'unlike': 1.0, 'then': 1.0, 'the': 8.0, 'a': 3.0, 'hole': 2.0, 't': 1.0, 'so': 1.0, 'adjusted': 1.0, 'purchase': 1.0, 'my': 2.0, 'water': 1.0, 'grip': 1.0, 'at': 1.0, 'lot': 1.0, 'reviews': 1.0, 'does': 1.0, 'and': 3.0, 'it': 1.0, 'month': 1.0, 'trying': 1.0}
Word element => {'well': 1.0, 'into': 1.0, 'converts': 1.0, 'works': 1.0, 'then': 1.0, 'on': 1.0, 'my': 2.0, 'convert': 1.0, 'larger': 3.0, 'sippy': 2.0, 'hardware': 1.0, 'to': 3.0, 'it': 1.0, 'out': 1.0, 'priced': 1.0, 'parts': 2.0, 'as': 2.0, 'getting': 1.0, 'and': 2.0, 'bottles': 3.0, 'cheaper': 1.0, 'cups': 2.0, 'is': 1.0, 'i': 1.0, 'buy': 2.0, 'great': 1.0, 'the': 3.0, 'these': 1.0, 'just': 1.0, 'all': 1.0, 'put': 1.0}
Word element => {'loves': 1.0, 'and': 1.0, 'month': 1.0, 'grandson': 1.0, 'which': 1.0, 'my': 1.0, 'cup': 2.0, 'regular': 1.0, 'to': 1.0, 'it': 1.0, 'this': 2.0, 'he': 2.0, 'first': 1.0, 'love': 1.0, 'for': 1.0, 'one': 1.0, 'use': 1.0, 'a': 1.0, 'immediately': 1.0, '6': 1.0, '34': 2.0, 'sippy': 1.0, 'refused': 1.0, 'tried': 1.0, 'old': 1.0, 'i': 2.0, 'took': 1.0}
Word element => {'use': 1.0, 's': 1.0, 'within': 1.0, 'rapidly': 1.0, 'quite': 1.0, 'tore': 1.0, 'spouts': 1.0, 'for': 2.0, 'perfect': 1.0, 'but': 1.0, 'handles': 1.0, 'and': 2.0, 'size': 1.0, '7': 1.0, 'month': 2.0, 'spout': 1.0, 'last': 1.0, 'of': 1.0, '6': 1.0, 'too': 1.0, 'a': 2.0, 'are': 1.0, 'these': 1.0, '2': 1.0, 'the': 4.0, 'had': 1.0, 'to': 1.0, 'hold': 1.0, 'not': 1.0, 'soft': 1.0, 'old': 1.0, 'i': 1.0, 'does': 1.0, 'long': 1.0}
Word element => {'from': 1.0, 'came': 1.0, 'arrive': 1.0, 'thru': 1.0, 'chew': 1.0, 'item': 1.0, 'will': 1.0, 'old': 1.0, 'white': 1.0, 'surprised': 1.0, 'ordered': 1.0, 'so': 1.0, 'price': 1.0, 'great': 1.0, 'these': 2.0, 'the': 5.0, 'ones': 1.0, 'has': 1.0, 'directly': 1.0, 'error': 1.0, 'they': 2.0, 'amazon': 2.0, 'guy': 1.0, '3': 1.0, 'again': 1.0, 'are': 1.0, 'see': 1.0, 'them': 2.0, 'a': 3.0, 'go': 1.0, 'trainers': 1.0, 'used': 1.0, 'with': 2.0, 'children': 1.0, 'older': 1.0, 'this': 3.0, 'for': 2.0, 'and': 2.0, 'trainer': 1.0, 'my': 2.0, 'i': 3.0, 'clear': 1.0, 'decided': 1.0, 'little': 1.0, 'very': 2.0, 'open': 1.0, 'quickly': 1.0, 'featured': 1.0, 'at': 1.0, 'three': 1.0, 'disappointed': 1.0, 'in': 1.0, 'morning': 1.0, 'box': 1.0, 'teeth': 1.0, 'like': 2.0, 'not': 1.0, 'same': 1.0, 'picture': 1.0, 'as': 1.0, 'our': 1.0, 'to': 2.0, 'cups': 2.0, 'received': 1.0, 'have': 2.0, 'once': 1.0, 'spout': 2.0, 'bottles': 1.0}
Word element => {'bottles': 1.0, 'natural': 1.0, 'regular': 1.0, 'avent': 1.0, 'to': 1.0, 'the': 5.0, 'is': 1.0, 'i': 1.0, 'bottle': 1.0, 'and': 1.0, 'only': 1.0, 'pro': 1.0, 's': 1.0, 'handles': 1.0, 'recommend': 1.0, 'rest': 1.0, 'of': 1.0, 'nuk': 1.0, 'nipples': 1.0, 'terrible': 1.0, 'was': 1.0, 'compared': 1.0}
Word element => {'products': 1.0, 'their': 1.0, 'it': 5.0, 'this': 3.0, 'like': 1.0, 'matter': 1.0, 'of': 1.0, 'i': 6.0, 'use': 2.0, 'my': 1.0, 'avent': 1.0, 'no': 1.0, 'regret': 1.0, 'trying': 1.0, 'to': 1.0, 'completely': 1.0, 'is': 1.0, 'could': 1.0, 'a': 2.0, 'and': 2.0, 'sieve': 1.0, 'that': 1.0, 'in': 1.0, 've': 1.0, 'daughter': 1.0, 'm': 1.0, 'find': 1.0, 'leaks': 2.0, 'what': 1.0, 'used': 1.0, 'before': 1.0, 'top': 1.0, 'have': 1.0, 'on': 1.0, 'the': 3.0, 'nipple': 1.0, 'bought': 1.0, 'one': 2.0, 'cup': 1.0, 'or': 1.0, 'never': 1.0, 'not': 1.0, 'sure': 1.0, 'ever': 1.0, 'will': 1.0, 'sippy': 2.0, 'quality': 1.0, 'again': 1.0, 'if': 1.0}
Word element => {'not': 1.0, 'different': 1.0, '8oz': 1.0, 'have': 1.0, 'leaks': 1.0, 'nipple': 1.0, 'it': 4.0, 'this': 3.0, 'that': 3.0, 'really': 2.0, 'is': 2.0, 'holds': 1.0, 'only': 1.0, 'much': 1.0, 'so': 1.0, 'does': 1.0, 'find': 1.0, 'one': 1.0, 'for': 1.0, 'i': 2.0, 'cup': 2.0, 'like': 1.0, 'and': 3.0, 'couldn': 1.0, 'down': 1.0, 'item': 1.0, 'we': 1.0, 'a': 2.0, 't': 1.0, 'the': 3.0, 'leak': 1.0, 'diaper': 1.0, 'has': 1.0, 'brand': 1.0, 'makes': 1.0, 'another': 1.0, 'my': 2.0, 'cap': 1.0, 'complaintant': 1.0, 'easy': 1.0, 'high': 1.0, 'low': 1.0, 'throw': 1.0, 'appreciated': 1.0, 'in': 1.0, 'bag': 1.0, 'about': 1.0, 'sippy': 2.0, 'baby': 1.0, 'to': 1.0, 'any': 1.0, 'if': 1.0, 'searched': 1.0, 'puts': 1.0, 'upside': 1.0, '4oz': 1.0, 'pressure': 1.0, 'on': 1.0}
Word element => {'kids': 1.0, 'any': 1.0, 'with': 1.0, 'found': 1.0, 'never': 1.0, 'i': 1.0, 'work': 1.0, 'been': 1.0, 'us': 1.0, 'have': 1.0, 'independent': 1.0, 'leave': 1.0, 'no': 1.0, 'just': 1.0, 'but': 1.0, 'tippee': 1.0, 'tommy': 1.0, 'away': 1.0, 'right': 2.0, 'several': 1.0, 've': 3.0, 'we': 2.0, 's': 3.0, 't': 1.0, 'a': 2.0, 'dozen': 1.0, 'half': 1.0, 'out': 2.0, 'different': 1.0, 'proof': 1.0, 'problem': 1.0, 'my': 2.0, 'the': 6.0, 'of': 3.0, 'spout': 1.0, 'soft': 1.0, 'perfect': 1.0, 'she': 2.0, 'others': 2.0, 'many': 1.0, 'completely': 1.0, 'best': 1.0, 'including': 1.0, 'light': 1.0, 'using': 1.0, 'which': 1.0, 'for': 1.0, 'love': 1.0, 'one': 1.0, 'too': 1.0, 'it': 4.0, 'lined': 1.0, 'starting': 1.0, 'and': 2.0, 'cup': 1.0, 'cups': 1.0, 'to': 5.0, 'daughter': 1.0, 'on': 1.0, 'all': 1.0, 'an': 1.0, 'was': 3.0, 'had': 1.0, 'her': 2.0, 'use': 2.0, 'that': 4.0, 'breast': 1.0, 'tried': 2.0, 'own': 1.0, 'off': 2.0, 'difficult': 1.0, 'bat': 1.0, 'incredible': 1.0, 'since': 1.0, 'breastfed': 1.0, 'didn': 1.0, 'adapt': 1.0, 'even': 1.0, 'bottles': 1.0, 'or': 2.0, 'really': 1.0, 'weight': 1.0, 'not': 2.0, 'feeding': 1.0, 'flexible': 1.0, 'makes': 1.0, 'transition': 1.0, 'from': 1.0, 'bulky': 1.0, 'properly': 1.0, 'highly': 1.0, 'this': 2.0, 'bottle': 1.0, 'can': 1.0, 'so': 1.0, 'is': 2.0, 'handle': 1.0, 'recommend': 1.0, 'together': 1.0, 'piece': 1.0, 'able': 1.0, 'you': 1.0, 'turn': 1.0, 'always': 1.0, 'sippy': 2.0, 'up': 1.0, 'leak': 1.0}
Word element => {'expectations': 1.0, 'easy': 1.0, 'all': 1.0, 'to': 1.0, 'product': 1.0, 'this': 1.0, 'meets': 1.0, 'with': 1.0, 'handles': 1.0, 'months': 1.0, 'my': 1.0, 'adjust': 1.0, 'baby': 1.0, 'and': 2.0, 'her': 1.0, 'water': 1.0, 'half': 1.0, 'holding': 1.0, 'three': 1.0, 'a': 1.0, 'was': 1.0, 'at': 1.0}
Word element => {'watching': 1.0, 'great': 1.0, 'but': 1.0, 'water': 1.0, 'than': 1.0, 'him': 1.0, 'others': 1.0, 'regular': 1.0, 'is': 2.0, 'son': 1.0, 'definitely': 1.0, 'drink': 1.0, 'been': 1.0, 'has': 1.0, 'sippy': 1.0, 'love': 1.0, 'using': 1.0, 'basis': 1.0, 'doing': 1.0, 'worth': 1.0, 'pricier': 1.0, 'this': 2.0, 'it': 1.0, 'cup': 1.0, 'my': 1.0, 'a': 2.0, 'since': 1.0, 'and': 1.0, 'on': 1.0, '4': 1.0, 'months': 1.0, 'old': 1.0}
Word element => {'me': 1.0, 'problem': 1.0, 'assemble': 1.0, 'to': 1.0, 'pieces': 1.0, 'of': 1.0, 'a': 2.0, 'does': 1.0, 'the': 1.0, 'refuse': 1.0, 'who': 1.0, 'sippy': 1.0, 'any': 1.0, 'highly': 1.0, 'i': 1.0, 'old': 1.0, 'would': 1.0, 'not': 2.0, 'bottle': 2.0, 'breastfed': 1.0, 'but': 1.0, 'week': 1.0, 'take': 1.0, '16': 1.0, 'or': 1.0, 'loves': 1.0, 'quick': 1.0, 'it': 1.0, 'this': 2.0, 'my': 1.0, 'cup': 1.0, 'lot': 1.0, 'she': 1.0, 'recommend': 1.0, 'though': 2.0, 'for': 2.0, 'so': 2.0, 'have': 1.0, 'babies': 1.0}
Word element => {'for': 1.0, 'holes': 1.0, 'defined': 1.0, 'three': 1.0, 'down': 1.0, 'unless': 1.0, 'goes': 1.0, 'are': 3.0, 'normal': 1.0, 'been': 1.0, 'on': 3.0, 'bites': 1.0, 'that': 4.0, 'silicone': 1.0, 'like': 2.0, 'using': 1.0, 'thin': 1.0, 'not': 2.0, 'advance': 1.0, 'those': 1.0, 'nipples': 2.0, 'can': 3.0, 'but': 2.0, 'you': 2.0, 'from': 1.0, 'to': 2.0, 'any': 1.0, 'bottles': 1.0, 'had': 1.0, 'remains': 1.0, 'purchased': 1.0, 'slit': 1.0, 'training': 1.0, 'known': 1.0, 'before': 1.0, 'opening': 1.0, 'about': 1.0, 'if': 2.0, 'clear': 1.0, 'less': 1.0, 'sippy': 8.0, '7': 1.0, 'buy': 2.0, 'i': 2.0, 'closed': 1.0, 'cup': 1.0, '4': 1.0, 'otherwise': 1.0, 'in': 1.0, 'regular': 2.0, 'perfect': 1.0, 'bottle': 2.0, 'this': 6.0, 'more': 1.0, 'other': 1.0, 'have': 1.0, 'with': 2.0, 'it': 4.0, 'she': 4.0, 'would': 1.0, 'month': 1.0, 'super': 1.0, 'nipple': 7.0, 'of': 2.0, 'the': 16.0, 'these': 2.0, 'and': 4.0, 'starving': 1.0, 'a': 2.0, 'thick': 1.0, 'harder': 3.0, 'daughter': 2.0, 'also': 1.0, 'best': 1.0, 'material': 2.0, 'handles': 1.0, 'one': 2.0, 'actual': 1.0, 'vertical': 1.0, 'ones': 1.0, 'come': 2.0, 'made': 1.0, 'good': 1.0, 'my': 2.0, 'hungry': 1.0, 'old': 2.0, 'has': 3.0, 'is': 7.0, 'at': 1.0, 'since': 1.0, '1': 1.0, 'great': 1.0, 'week': 1.0, 'was': 1.0, 'does': 1.0, 'separate': 2.0, 'replacement': 3.0, 'out': 2.0, 'use': 1.0, 'as': 2.0, 'unable': 1.0, 'months': 1.0, 'get': 1.0, 'liquid': 3.0, 'difference': 1.0, 'between': 1.0}
Word element => {'best': 1.0, 'one': 1.0, 'liked': 1.0, 'would': 1.0, '4': 1.0, 'old': 1.0, 'i': 1.0, 'of': 1.0, 'month': 1.0, 'sippy': 1.0, 'bought': 1.0, 'cup': 1.0, 'my': 1.0, 'the': 3.0, 'and': 1.0, 'bottle': 1.0, 'drink': 1.0, 'out': 1.0, 'including': 1.0, '5': 1.0, 'different': 1.0, 'medela': 1.0, 'bottles': 1.0, 'she': 1.0, 'this': 1.0, 'only': 1.0, 'calma': 1.0}
Word element => {'occasionally': 1.0, '1': 1.0, 'cup': 1.0, 'sippy': 1.0, 'still': 1.0, 'old': 1.0, 'to': 1.0, 'uses': 1.0, 'bottle': 1.0, 'my': 1.0, 'the': 1.0, 'soft': 1.0, 'on': 1.0, 'year': 1.0, 'for': 1.0, 'this': 1.0, 'makes': 1.0, 'spout': 1.0, 'transitioning': 1.0, 'it': 2.0, 'perfect': 1.0, 'from': 1.0}
Word element => {'kanteens': 1.0, 'an': 1.0, 'years': 1.0, 'll': 1.0, 'used': 1.0, 'washed': 1.0, 'makes': 1.0, 'chemically': 1.0, 'secondly': 1.0, 'long': 1.0, 'store': 1.0, 'there': 1.0, 'heating': 1.0, 'minimize': 1.0, 'steel': 2.0, 'stainless': 2.0, 'buying': 1.0, 'free': 1.0, 'bpa': 1.0, 'whether': 1.0, 'mentioned': 1.0, 'taste': 3.0, 'smell': 2.0, 'chemical': 1.0, 'those': 1.0, 'hands': 1.0, 'seen': 1.0, 'any': 4.0, 'don': 1.0, 'still': 2.0, 'tip': 1.0, 'requires': 1.0, 'in': 7.0, 'yes': 2.0, 'off': 2.0, 'truly': 1.0, 'wet': 2.0, 'dr': 1.0, 'occurs': 1.0, 'it': 19.0, 'be': 2.0, 'drink': 1.0, 'silicone': 2.0, 'anti': 1.0, 'forcing': 1.0, 'plastic': 4.0, 'tricky': 1.0, 'drinker': 2.0, 'through': 4.0, 'first': 3.0, 'at': 4.0, 'part': 1.0, 'give': 2.0, 'will': 7.0, 'could': 1.0, 'child': 3.0, 'older': 1.0, 'inevitably': 1.0, 'supposed': 1.0, 't': 2.0, 'buy': 4.0, 'sippies': 3.0, 'compared': 2.0, 'oral': 1.0, 'expenses': 1.0, 'when': 4.0, 'unnecessary': 2.0, 'a': 15.0, 'eliminates': 1.0, 'reason': 1.0, 'replace': 1.0, 'overall': 1.0, 'they': 2.0, 'beats': 1.0, 'properly': 1.0, 'adapter': 1.0, 'would': 3.0, 'hard': 1.0, 'concept': 1.0, 'over': 2.0, 'proof': 1.0, 'hunt': 1.0, 'advanced': 1.0, 'colic': 1.0, 'the': 51.0, 'of': 9.0, 'vent': 4.0, 'placing': 1.0, 'nipple': 3.0, 'factor': 1.0, 'option': 1.0, 'screw': 1.0, 'same': 2.0, 'that': 9.0, 'because': 3.0, 'correctly': 1.0, 'ring': 1.0, 'bottles': 1.0, 'after': 1.0, 'though': 2.0, 'by': 2.0, 'cup': 4.0, 'cups': 8.0, 'aspect': 2.0, 'crazy': 1.0, 'her': 1.0, 'use': 2.0, 'are': 1.0, 'my': 1.0, 'strong': 1.0, 'nose': 1.0, 'waste': 1.0, 'development': 1.0, 'spouts': 2.0, 'second': 1.0, 'with': 7.0, 'beyond': 1.0, 'was': 4.0, 'she': 2.0, 'make': 1.0, 'on': 2.0, 'flow': 1.0, 'assemble': 2.0, 'sucking': 2.0, 'tipped': 1.0, 'matter': 1.0, 'stars': 1.0, 'straw': 2.0, 'pieces': 1.0, 'for': 11.0, 'love': 2.0, 'far': 3.0, 'just': 1.0, 'tried': 1.0, 'and': 22.0, 'sippy': 9.0, 'up': 2.0, 'get': 4.0, 'able': 1.0, 'you': 12.0, 'sure': 1.0, 'instructions': 1.0, 'or': 1.0, 'effort': 1.0, 'personally': 1.0, 'once': 3.0, 'one': 1.0, 'got': 1.0, 'absolutely': 1.0, 'out': 1.0, 'design': 3.0, 'separate': 1.0, 'only': 4.0, 'then': 1.0, 'birth': 1.0, 'avoid': 1.0, 'like': 1.0, 'fine': 1.0, 'way': 2.0, 'all': 3.0, 'avent': 6.0, 'other': 4.0, 'grow': 2.0, 'to': 10.0, 'chew': 1.0, 'superior': 1.0, 'is': 11.0, 'can': 8.0, 'bottle': 1.0, 'this': 4.0, 'soft': 1.0, 'work': 1.0, 'minimal': 3.0, 'do': 2.0, 'different': 1.0, 'not': 6.0, 'tighten': 2.0, 'piece': 2.0, 'what': 1.0, 'fact': 1.0, 'happen': 2.0, 'barely': 1.0, '4': 1.0, 'order': 1.0, 'allow': 1.0, 'from': 4.0, 'air': 7.0, 's': 4.0, 'typo': 1.0, 'base': 1.0, 'took': 1.0, 'overflow': 1.0, 'as': 2.0, 'experienced': 1.0, 'future': 1.0, 'reviewers': 2.0, 'various': 1.0, 'hot': 1.0, 'have': 3.0, 'liquids': 1.0, 'leak': 4.0, 'think': 1.0, 'another': 1.0, 'forces': 1.0, 'liquid': 4.0, 'added': 1.0, 'back': 4.0, 'bonus': 1.0, 'connects': 1.0, 'both': 2.0, 'which': 4.0, 'leaking': 1.0, 'totally': 1.0, 'star': 1.0, 'them': 1.0, 'rarely': 1.0, 'but': 3.0, 'i': 13.0, 'cause': 1.0, 'great': 1.0, 'if': 2.0, 'wouldn': 1.0, 'more': 2.0, 'probably': 2.0, 'many': 1.0, 'where': 1.0, 'your': 4.0, 'lot': 3.0, 'worn': 1.0, 'too': 1.0, 'designed': 1.0, 'go': 1.0, 'their': 2.0, 'toddler': 2.0, 'head': 2.0, 'did': 1.0, 'thought': 1.0, 'test': 1.0, 'klean': 1.0, 'myself': 1.0, 'teeth': 2.0, 'while': 2.0, 'beginner': 3.0, 've': 2.0, 'container': 3.0, 'straws': 1.0, 'best': 1.0, 'intake': 3.0, 'very': 1.0, 'required': 1.0, 'since': 1.0, 'so': 2.0, 'playtex': 4.0, 'say': 1.0, 'few': 1.0, 'times': 2.0, 'no': 1.0, 'impossible': 1.0, 'finish': 1.0, 'down': 1.0, 'brown': 1.0, 'last': 1.0, 'than': 1.0, 'bit': 1.0, 'spout': 10.0, 'also': 2.0, 'better': 1.0}
Word element => {'mouth': 1.0, 'in': 1.0, 'shoves': 1.0, 'if': 1.0, 'doesn': 1.0, 'hurt': 1.0, 'soft': 1.0, 'nice': 1.0, 'spout': 1.0, 'hard': 1.0, 'it': 2.0, 'this': 1.0, 'her': 1.0, 'what': 1.0, 'the': 2.0, 't': 3.0, 'she': 5.0, 'baby': 1.0, 'liked': 1.0, 'for': 2.0, 'was': 1.0, 'had': 1.0, 'couldn': 1.0, 'and': 2.0, 'know': 1.0, 'cup': 2.0, 'my': 1.0, 'several': 1.0, 'too': 1.0, 'cups': 1.0, 's': 1.0, 'never': 1.0, 'tried': 1.0, 'i': 1.0, 'a': 1.0, 'them': 1.0, 'out': 1.0, 'is': 1.0, 'figure': 1.0, 'really': 2.0, 'so': 2.0, 'bottle': 1.0, 'didn': 1.0}
Word element => {'freedom': 1.0, 'chance': 1.0, 'first': 1.0, 'not': 1.0, 'flat': 1.0, 'gaggy': 1.0, 'face': 1.0, 'and': 4.0, 'typical': 1.0, 'like': 1.0, 'hold': 1.0, 'pukey': 1.0, 'willing': 1.0, 'make': 1.0, 'my': 2.0, 'would': 1.0, 'never': 1.0, 'ebf': 1.0, 'take': 1.0, 'awful': 1.0, 'breastmilk': 1.0, 'months': 1.0, 'this': 3.0, 'with': 1.0, 'the': 1.0, 'nipple': 1.0, 'can': 1.0, 'smiles': 1.0, 'we': 1.0, 't': 1.0, 's': 1.0, 'a': 2.0, 'when': 1.0, 'so': 1.0, 'bottle': 2.0, 'been': 1.0, 'sippy': 1.0, 'baby': 1.0, 'it': 2.0, 'she': 4.0, 'tried': 1.0, 'old': 1.0, 'for': 1.0, 'actually': 1.0, 'five': 1.0, 'drinks': 1.0, 'won': 1.0, 'likes': 1.0, 'thing': 1.0, 'willingly': 1.0, 'plays': 1.0, 'at': 1.0, 'now': 1.0, 'herself': 1.0, 'is': 2.0, 'water': 1.0, 'cup': 1.0, 'or': 1.0}
Word element => {'coming': 1.0, 'real': 1.0, 'prepare': 1.0, 'baby': 2.0, 'up': 1.0, 'and': 1.0, 'product': 1.0, 'great': 1.0, 'it': 2.0, 'cups': 1.0, 's': 1.0, 'easy': 1.0, 'for': 2.0, 'hold': 1.0, 'll': 1.0, 'the': 3.0, 'drink': 1.0}
Word element => {'again': 1.0, 'would': 1.0, 'buy': 1.0, 'i': 1.0, 'teeth': 1.0, 'hurt': 1.0, 'and': 1.0, 'to': 1.0, 'much': 1.0, 'not': 1.0, 'great': 1.0, 'we': 1.0, 'but': 1.0, 'starter': 1.0, 'use': 1.0, 'a': 1.0, 'sippy': 1.0, 'juice': 2.0, 'is': 1.0, 'like': 1.0, 'it': 2.0, 'this': 1.0, 'for': 1.0, 'small': 1.0, 'so': 1.0, 'our': 1.0, 'her': 1.0, 'does': 1.0, 'drink': 1.0, 'daughter': 1.0, 'too': 1.0}
Word element => {'well': 1.0, 'those': 1.0, 'pampers': 1.0, 'use': 1.0, 'for': 1.0, 'issues': 1.0, 'cups': 1.0, 'gas': 1.0, 'daughter': 1.0, 'didn': 2.0, 'but': 1.0, 'have': 1.0, 'all': 1.0, 'trainer': 1.0, 'my': 1.0, 'the': 2.0, 't': 2.0, 'these': 1.0, 'they': 1.0, 'first': 1.0, 'with': 1.0, 'having': 1.0, 'really': 2.0, 'good': 1.0, 'took': 1.0, 'tried': 1.0, 'i': 2.0, 'like': 1.0, 'and': 2.0, 'them': 1.0, 'at': 1.0, 'to': 1.0, 'was': 1.0, 'flow': 1.0, 'bottles': 2.0, 'she': 2.0}
Word element => {'spout': 1.0, 'of': 1.0, 'good': 1.0, 'we': 1.0, 'but': 1.0, 'alone': 1.0, 'use': 1.0, 'got': 1.0, 'purchased': 1.0, 'have': 1.0, 'wish': 1.0, 'was': 1.0, 'bottle': 1.0, 'the': 5.0, 'are': 1.0, 'interchange': 1.0, 'for': 1.0, 'could': 2.0, 'well': 2.0, 'typical': 1.0, 'handles': 2.0, 'too': 1.0, 'style': 1.0, 'which': 1.0, 'nice': 1.0, 'as': 1.0, 'from': 1.0, 'son': 1.0, 'worked': 1.0, 'with': 1.0, 'transitioning': 1.0, 'this': 1.0, 'trainer': 1.0, 'my': 1.0, 'cup': 1.0, 'avent': 2.0, 'bottles': 1.0, 'wonderful': 1.0, 'classic': 1.0, 'because': 1.0, 'i': 3.0, 'out': 1.0, 'them': 1.0}
Word element => {'cup': 1.0, 'everything': 1.0, 'i': 1.0, 'and': 1.0, 'weeks': 1.0, '3': 1.0, 'about': 2.0, 'them': 1.0, 'sippy': 1.0, 'the': 2.0, 'against': 1.0, 'especially': 1.0, 'until': 1.0, 'transition': 1.0, 'is': 1.0, 'now': 1.0, 'to': 1.0, 'was': 1.0, 've': 1.0, 'cups': 1.0, 'daughter': 1.0, 'completely': 1.0, 'love': 1.0, 'using': 1.0, 'for': 2.0, 'one': 1.0, 'our': 1.0, 'we': 2.0, 'this': 2.0, 'pink': 1.0, 'been': 1.0, 'found': 1.0, 'cute': 1.0, 'girls': 1.0}
Word element => {'other': 1.0, 'interchangeable': 1.0, 'are': 1.0, 'parts': 1.0, 'that': 1.0, 'love': 1.0, 'herself': 1.0, 'hold': 1.0, 'much': 1.0, 'problem': 1.0, 'pretty': 1.0, 'can': 1.0, 'she': 1.0, 'months': 1.0, 'few': 1.0, 'baby': 1.0, 'her': 1.0, 'rather': 1.0, 'philips': 1.0, 'a': 1.0, 'loves': 1.0, 'products': 1.0, 'i': 1.0, 'took': 1.0, 'tries': 1.0, 'with': 2.0, 'this': 3.0, 'it': 1.0, 'only': 1.0, 'cup': 1.0, 'my': 1.0, 'the': 2.0, 'to': 1.0, 'master': 1.0, 'drinking': 1.0, 'from': 1.0, '5': 1.0, 'than': 1.0, 'bottle': 2.0, 'no': 1.0, 'at': 1.0, '6': 1.0}
Word element => {'wastes': 1.0, 'because': 1.0, 'product': 1.0, 'this': 1.0, 'recommend': 1.0, 'not': 1.0, 'would': 1.0, 'add': 1.0, 'easy': 1.0, 'makes': 2.0, 'formula': 2.0, 'opening': 1.0, 'that': 1.0, 'were': 1.0, 'frustrating': 1.0, 'hate': 1.0, 'and': 4.0, 'do': 1.0, 'day': 1.0, 'ring': 2.0, 'very': 1.0, 'through': 1.0, 'have': 2.0, 'fussiness': 1.0, 'supposedly': 1.0, 'bought': 1.0, 's': 1.0, 'a': 3.0, 'causes': 1.0, 'we': 1.0, 'avent': 1.0, 'my': 1.0, 'however': 1.0, 'went': 1.0, 'the': 6.0, 'bottles': 2.0, 'mess': 1.0, 'i': 5.0, 'wide': 1.0, '16': 1.0, 'put': 1.0, 'on': 1.0, 'bottle': 3.0, 'to': 4.0, 'reduce': 1.0, 'colic': 1.0, 'leak': 1.0, 'it': 5.0, 'is': 1.0, 'at': 1.0, 'messy': 1.0, '200': 1.0, 'newborn': 1.0, 'sticky': 1.0, 'you': 1.0, 'twins': 2.0, 'when': 1.0, 'am': 1.0, 'leaky': 1.0, 'like': 1.0}
Word element => {'baby': 1.0, 'a': 1.0, 'hold': 1.0, 'perfect': 1.0, 'easy': 1.0, 'size': 1.0, 'choose': 1.0, 'this': 1.0, 'trainer': 2.0, 'to': 1.0, 'old': 1.0, 'first': 1.0, 'good': 1.0, 'cup': 1.0, 'for': 2.0, 'daughter': 1.0, 'my': 1.0, '5': 1.0, 'months': 1.0}
Word element => {'them': 1.0, 'loves': 1.0, 'baby': 1.0, 'and': 1.0, 'with': 1.0, 'replaced': 1.0, 'perfect': 1.0, 'i': 1.0, 'for': 1.0, 'these': 1.0, 'our': 1.0, 'product': 1.0, 'newborn': 1.0, 'rought': 1.0, 'carseat': 1.0, 'ones': 1.0, 'great': 1.0, 'were': 1.0, 'too': 1.0, 'so': 1.0}
Word element => {'atleast': 1.0, 'thicker': 1.0, 'a': 1.0, 'be': 1.0, 'price': 1.0, 'however': 1.0, 'little': 2.0, 'my': 1.0, 'in': 1.0, 'they': 2.0, 'neck': 1.0, 'though': 1.0, 'because': 1.0, 'just': 1.0, 'for': 1.0, 'using': 1.0, 'than': 1.0, 'better': 1.0, 'could': 1.0, 'digging': 1.0, 'thin': 1.0, 'i': 1.0, 'very': 1.0, 'it': 2.0, 'can': 1.0, 'seatbelt': 1.0, 'soft': 1.0, 'fabric': 1.0, 'feel': 1.0, 'is': 3.0, 'ones': 1.0, 'the': 6.0, 'are': 1.0, 'were': 1.0, 'although': 1.0, 'still': 1.0, 'straps': 2.0, 'sort': 1.0, 'of': 1.0, 'sharp': 1.0, 'at': 2.0, 'and': 2.0, 'comfy': 1.0, 'edges': 2.0, 'carseat': 1.0, 'expensive': 1.0}
Word element => {'buck': 1.0, 'they': 1.0, 'that': 1.0, 'half': 1.0, 'about': 1.0, 'be': 1.0, 'make': 1.0, 'should': 1.0, 'think': 1.0, 'i': 1.0, '30': 1.0, '10': 1.0, '3': 1.0, 'so': 1.0, 'have': 1.0, 'in': 1.0, 'comfortable': 1.0, 'bucks': 1.0, 'build': 1.0, 'sure': 1.0, 'but': 1.0, 'probably': 1.0, 'me': 1.0, 'cant': 1.0, 'cost': 1.0, 'manufacturers': 1.0, 'just': 1.0, 'not': 1.0, 'x': 1.0, 'why': 1.0, 'a': 2.0, 'carseat': 1.0, 'expensive': 1.0, 'these': 2.0, 'really': 1.0, 'actually': 1.0, 'are': 2.0, 'strap': 1.0, 'fantastic': 1.0, 'its': 1.0, 'triplets': 1.0, 'to': 2.0, 'abit': 1.0, 'we': 1.0}
Word element => {'up': 1.0, 'held': 1.0, 'price': 1.0, 'become': 1.0, 'they': 2.0, 'small': 1.0, 'my': 1.0, 'these': 1.0, 'more': 1.0, 'son': 1.0, 'and': 2.0, 'now': 1.0, 'was': 1.0, 'when': 1.0, 'have': 2.0, 'got': 1.0, 'even': 1.0, 'handy': 1.0, 'he': 1.0, 'is': 1.0, 'really': 1.0, 'good': 1.0, 'teething': 1.0, 'that': 1.0, 'were': 1.0, 'well': 1.0, 'a': 1.0}
Word element => {'spots': 1.0, 'neck': 2.0, 'seatbelt': 1.0, 'on': 1.0, 'marks': 1.0, 'strap': 1.0, 'from': 1.0, 'sore': 1.0, 'her': 3.0, 'was': 1.0, 'work': 1.0, 'daughter': 1.0, 'my': 1.0, 'digging': 1.0, 'into': 1.0, 'we': 1.0, 'purchased': 1.0, 'more': 1.0, 'these': 1.0, 'they': 1.0, 'getting': 1.0, 'and': 1.0, 'perfect': 1.0, 'no': 1.0}
Word element => {'snack': 1.0, 'or': 1.0, 'all': 1.0, 'are': 1.0, 'black': 1.0, 'better': 1.0, 'than': 1.0, 'use': 1.0, 'and': 1.0, 'to': 1.0, 'soft': 1.0, 'simple': 1.0, 'reversible': 1.0, 'that': 1.0, 'came': 1.0, 'marks': 1.0, 'covers': 1.0, 'doesn': 1.0, 'with': 1.0, 'drool': 1.0, 'is': 1.0, 'carseat': 1.0, 'the': 4.0, 'these': 1.0, 'great': 1.0, 't': 1.0, 'strap': 1.0, 'show': 1.0}
Word element => {'intended': 1.0, 'and': 1.0, 'done': 1.0, 'they': 5.0, 'has': 1.0, 'you': 1.0, 'daughter': 1.0, 'backpack': 1.0, 'of': 1.0, 'ordered': 1.0, 'worth': 1.0, 'my': 1.0, 'to': 3.0, 'can': 1.0, 'effort': 1.0, 'them': 2.0, 'say': 1.0, 's': 1.0, 't': 1.0, 'anout': 1.0, 'no': 1.0, 're': 2.0, 'cover': 1.0, 'came': 1.0, 'what': 1.0, 'before': 1.0, 'strap': 1.0, 'i': 3.0, 'color': 1.0, 'bought': 1.0, 'trick': 1.0, 'do': 3.0, 'only': 1.0, 'soft': 1.0, 'chafing': 1.0, 'wish': 1.0, 'this': 1.0, 'covers': 1.0, 'it': 1.0, 'actually': 1.0, 'in': 1.0, 'd': 1.0, 'amazon': 1.0, 'wasn': 1.0, 'straps': 1.0, 'return': 1.0, 'the': 5.0, 'job': 1.0}
Word element => {'them': 1.0, 'we': 1.0, 'months': 1.0, 'over': 1.0, 'up': 1.0, 'baby': 1.0, 'my': 1.0, 'are': 1.0, 'something': 1.0, 'love': 1.0, 'yet': 1.0, 'for': 1.0, 'looking': 1.0, 'to': 1.0, 'was': 1.0, 'neck': 1.0, 'have': 1.0, 's': 1.0, 'i': 1.0, 'from': 1.0, 'car': 1.0, 'seat': 1.0, 'soft': 1.0, 'durabe': 1.0, 'held': 1.0, 'protect': 1.0, 'straps': 1.0, 'great': 1.0, 'the': 1.0, 'these': 1.0, 'they': 1.0}
Word element => {'soft': 1.0, 'very': 1.0, 'of': 1.0, 'have': 1.0, 'better': 1.0, 'stroller': 1.0, 'but': 1.0, 'chest': 1.0, 'on': 1.0, 'place': 1.0, 'right': 1.0, 'when': 1.0, 'fastened': 1.0, 'month': 1.0, 'for': 1.0, 'out': 1.0, 'usa': 1.0, 'made': 1.0, 'are': 1.0, 'my': 1.0, 'they': 1.0, 'the': 1.0, 'these': 1.0, 'in': 3.0, 'seems': 1.0, 'a': 2.0, 'since': 1.0, 'like': 1.0, 'little': 2.0, 'bought': 1.0, 'used': 1.0, 'her': 2.0, 'low': 1.0, 'long': 1.0, '5': 1.0, 'i': 1.0, 'old': 1.0, 'car': 2.0, 'okay': 1.0, 'not': 1.0, 'seat': 2.0, 'strap': 1.0, 'is': 1.0}
Word element => {'again': 1.0, 'buy': 1.0, 'born': 1.0, 'thick': 1.0, 'being': 1.0, 'want': 1.0, 'wouldn': 1.0, 'thin': 1.0, 'were': 1.0, 'saying': 1.0, '5': 1.0, 'given': 1.0, 'have': 2.0, 'than': 2.0, 'other': 1.0, 'name': 1.0, 'too': 1.0, 'and': 2.0, 'neck': 1.0, 'newborn': 1.0, 'my': 2.0, 'change': 1.0, 'but': 1.0, 'work': 1.0, 'me': 1.0, 'not': 1.0, 'i': 8.0, 'color': 2.0, 'bought': 1.0, 'reviewers': 1.0, 'are': 3.0, 'they': 5.0, 'any': 1.0, 'to': 2.0, 'as': 1.0, 'seat': 1.0, 'our': 1.0, 'disagree': 1.0, 'into': 1.0, 'that': 4.0, 'thickness': 1.0, 'some': 1.0, 'these': 2.0, 'the': 5.0, 'stars': 1.0, 'actually': 1.0, 'for': 4.0, 'straps': 1.0, 'still': 1.0, 'wonderfully': 1.0, 'car': 1.0, 'dark': 1.0, 'dig': 1.0, 'so': 1.0, 'kept': 1.0, 'new': 1.0, 'would': 5.0, 'super': 1.0, 'perfect': 1.0, 'soft': 1.0, 'long': 1.0, 'only': 1.0, 'it': 1.0, 'especially': 1.0, 'complaint': 1.0, 'more': 2.0, 'is': 2.0, '34': 2.0, 'of': 3.0, 'pink': 2.0, 'ok': 1.0, 'chicco': 1.0, 'was': 1.0, 'hoping': 1.0, 't': 1.0, 's': 2.0, 'a': 2.0, 'light': 1.0, 'them': 3.0}
Word element => {'possible': 1.0, 'be': 1.0, 'wants': 1.0, 'who': 1.0, 'any': 1.0, 'i': 1.0, 'remove': 1.0, 'attach': 1.0, 'their': 1.0, 'were': 1.0, 'child': 1.0, 'covers': 1.0, 'always': 2.0, 'in': 1.0, 'falling': 1.0, 'her': 2.0, 'is': 1.0, 'washing': 1.0, 'seat': 1.0, 'addition': 1.0, 's': 1.0, 'mom': 1.0, 'by': 1.0, 'daughter': 1.0, 'recommend': 1.0, 'easy': 2.0, 'she': 2.0, 'asleep': 1.0, 'to': 5.0, 'my': 1.0, 'the': 1.0, 'these': 1.0, 'great': 1.0, 'comfy': 1.0, 'and': 2.0, 'as': 3.0, 'for': 1.0, 'tugging': 1.0, 'straps': 1.0, 'car': 2.0, 'moves': 1.0, 'at': 1.0, 'digging': 1.0, 'into': 1.0, 'this': 1.0, 'velcro': 1.0, 'skin': 1.0}
Word element => {'wall': 1.0, 'you': 1.0, 'info': 1.0, 'good': 1.0, 'maybe': 1.0, 'fix': 1.0, 'out': 1.0, 'them': 2.0, 'convenient': 1.0, 'fyi': 1.0, 'i': 1.0, 'but': 2.0, 'sitting': 1.0, 'have': 2.0, 'able': 1.0, 'and': 2.0, 'it': 3.0, 'go': 1.0, 'a': 3.0, 's': 2.0, 'pretty': 1.0, 'to': 4.0, 'grab': 1.0, 'be': 1.0, 'cluttered': 1.0, 'without': 1.0, 'the': 3.0, 'heavy': 1.0, 'holes': 2.0, 'poutting': 1.0, '34': 2.0, 'essentials': 1.0, 'so': 1.0, 'not': 1.0, 'kinda': 1.0, 'hang': 1.0, 'simple': 1.0, 'your': 1.0, 'put': 1.0, 'on': 2.0, 'support': 1.0, 'in': 1.0, 'drywall': 1.0, 'wire': 2.0, 'looking': 1.0, 'stud': 2.0, 'are': 1.0, 'before': 1.0, '5': 1.0, 'little': 1.0, 'inches': 1.0, 'being': 1.0, 'apart': 1.0, 'silly': 1.0, 'through': 1.0, 'hung': 1.0, 'just': 2.0, 'by': 1.0}
Word element => {'ordering': 1.0, 'when': 1.0, 'side': 1.0, 'looks': 1.0, 'it': 2.0, 'the': 4.0, 'diaper': 1.0, 'practical': 1.0, 'and': 3.0, 'get': 1.0, 'i': 3.0, 'amount': 1.0, 'have': 1.0, 'stacker': 1.0, 'be': 1.0, 'all': 1.0, 'to': 1.0, 'look': 1.0, 'hunted': 1.0, 'its': 1.0, 'was': 1.0, 'on': 1.0, 'great': 1.0, 'nice': 1.0, 'smart': 1.0, 'something': 1.0, 'would': 1.0, 'is': 2.0, 'holds': 1.0, 'a': 1.0, 'well': 1.0, 'of': 2.0, 'set': 1.0, 'over': 1.0, 'up': 1.0, 'diapers': 1.0, 'that': 2.0, 'changing': 1.0, 'which': 1.0, 'table': 1.0, 'this': 1.0, 'perfect': 1.0, 'also': 1.0, 'good': 1.0, 'wipes': 1.0, 'product': 1.0, 'fit': 1.0, 'worried': 1.0, 'about': 1.0}
Word element => {'box': 1.0, 'standard': 1.0, 'wipies': 1.0, 'a': 1.0, 'fits': 1.0, 'by': 1.0, 'side': 2.0, 'huggies': 1.0, 'nursery': 1.0, 'nice': 1.0, 'in': 1.0, 'hung': 1.0, 'sturdy': 1.0, 'material': 1.0, 'able': 1.0, 'and': 2.0, 'very': 1.0, 'of': 1.0, 'up': 1.0, 'i': 2.0, 'closet': 1.0, 'diapers': 1.0, 'doesn': 1.0, '2': 1.0, 'the': 1.0, 't': 1.0, 'take': 1.0, 'much': 1.0, 'was': 1.0, 'to': 1.0, 'space': 1.0, 'size': 1.0, 'fill': 1.0, 'it': 3.0, 'with': 1.0}
Word element => {'but': 1.0, 'could': 1.0, 'like': 1.0, 'functional': 1.0, 'to': 1.0, 'be': 3.0, 'in': 1.0, 'the': 3.0, 'diaper': 1.0, 'cocoa': 1.0, 'bigger': 1.0, 'fully': 1.0, 'jj': 1.0, 'stripe': 1.0, 'i': 3.0, 'set': 1.0, 'my': 1.0, 'cole': 1.0, 'smaller': 1.0, 'have': 1.0, 'room': 1.0, 'on': 1.0, 'is': 1.0, 'sons': 1.0, 'and': 1.0, 'love': 1.0, 'it': 4.0, 'stacker': 1.0, 'otherhand': 1.0, 'than': 1.0, 'should': 1.0}
Word element => {'included': 1.0, 'closet': 1.0, 'find': 1.0, 'i': 2.0, 'hangers': 1.0, 'a': 1.0, 'wipes': 1.0, 'needed': 1.0, 'table': 1.0, 'holds': 1.0, 'tub': 1.0, 'of': 1.0, 'pleasantly': 1.0, 'lots': 1.0, 'and': 1.0, 'perfectly': 1.0, 'it': 1.0, 'changing': 1.0, 'hang': 1.0, 'on': 1.0, 'the': 1.0, 'my': 1.0, 'wall': 1.0, 'to': 2.0, 'was': 1.0, 'surprised': 1.0, 'diapers': 1.0, 'but': 1.0, 'above': 1.0}
Word element => {'its': 1.0, 'about': 1.0, 'should': 1.0, 'easy': 1.0, 'makes': 1.0, 'half': 1.0, 'angle': 1.0, 'an': 1.0, 'back': 1.0, 'send': 1.0, 'price': 2.0, 'this': 2.0, 'looked': 1.0, 'i': 3.0, 'item': 1.0, 'size': 1.0, 'damage': 1.0, 'plastic': 1.0, 'however': 2.0, 'order': 1.0, 'my': 2.0, 'the': 5.0, 'diaper': 1.0, 'it': 5.0, 'looks': 2.0, 'is': 1.0, 'quite': 1.0, 'or': 1.0, 'like': 4.0, 'and': 3.0, 'actual': 1.0, 'to': 2.0, 'had': 2.0, 'access': 1.0, 'functionality': 1.0, 'of': 3.0, 'in': 2.0, 'because': 1.0, 'first': 1.0, 'snaps': 1.0, 'alternative': 1.0, 'didn': 1.0, 'cheap': 1.0, 'opinion': 1.0, 'for': 2.0, 'fit': 2.0, 'front': 1.0, 't': 1.0, 'a': 1.0, 'water': 1.0, 'cost': 1.0, 'something': 1.0, 'that': 2.0, 'those': 1.0, 'caddies': 1.0, 'good': 1.0, 'wipes': 1.0, 'at': 1.0}
Word element => {'looking': 1.0, 'im': 1.0, 'but': 1.0, 'longer': 1.0, 'last': 1.0, 'thought': 1.0, 'stoller': 1.0, 'with': 1.0, 'overall': 1.0, 'now': 2.0, 'so': 1.0, 'replacement': 1.0, 'out': 1.0, 'maxed': 1.0, 'alreay': 1.0, 'disappointed': 1.0, 'weight': 1.0, 'on': 2.0, 'is': 3.0, 'stap': 1.0, 'however': 1.0, 'pulls': 1.0, 'small': 1.0, 'size': 2.0, 'storage': 1.0, 'under': 1.0, 'than': 1.0, 'pros': 1.0, 'left': 1.0, 'usual': 1.0, 'i': 3.0, 'whole': 1.0, 'reclines': 1.0, 'child': 2.0, 'tray': 1.0, 'bought': 1.0, 'snack': 1.0, 'really': 1.0, '1yr': 1.0, 'this': 3.0, 'useless': 1.0, 'it': 2.0, 'hard': 1.0, 'stroller': 4.0, 'would': 1.0, 'following': 1.0, 'for': 4.0, '25th': 1.0, 'making': 1.0, 'percentile': 1.0, 'has': 1.0, 'only': 1.0, 'its': 1.0, 'seat': 2.0, 'to': 2.0, 'old': 1.0, 'locking': 1.0, 'quickly': 1.0, 'a': 3.0, 'discovered': 1.0, 'without': 1.0, 'the': 5.0, 'larger': 1.0, 'umbrella': 1.0, 'unsteady': 1.0, 'wheels': 2.0, 'push': 1.0, 'my': 1.0, 'cons': 1.0, 'straps': 1.0, 'very': 1.0, 'who': 1.0}
Word element => {'cars': 1.0, 'fit': 1.0, 'in': 1.0, 'also': 1.0, 'compact': 1.0, 'much': 1.0, 'which': 1.0, 'contour': 1.0, 'was': 2.0, 'can': 1.0, 'looking': 1.0, 'umbrella': 1.0, 'built': 1.0, 'one': 4.0, 'for': 1.0, 'but': 1.0, 'stroller': 1.0, 'more': 1.0, 'the': 1.0, 'nicely': 1.0, 'and': 3.0, 'a': 1.0, 'lighter': 1.0, 'kept': 1.0, 'this': 3.0, 'smaller': 1.0, 'my': 1.0, 'old': 1.0, 'purchased': 1.0, 'two': 1.0, 'year': 1.0, 'very': 1.0, 'from': 1.0, 'is': 2.0, 'amazon': 1.0, 'eventually': 1.0, 'returned': 1.0}
Word element => {'shot': 1.0, 'stay': 1.0, 'can': 1.0, 'though': 1.0, 'not': 2.0, 'that': 2.0, 'deal': 1.0, 'on': 1.0, 'out': 1.0, 'bolt': 1.0, 'big': 1.0, 'open': 1.0, 'off': 1.0, 'twisted': 1.0, 'i': 2.0, 's': 1.0, 'impression': 1.0, 'spin': 1.0, 'necessary': 1.0, 'and': 2.0, 'ball': 1.0, 'other': 1.0, 'play': 1.0, 'when': 1.0, 'phone': 1.0, 'the': 4.0, 'side': 1.0, 'is': 3.0, 'door': 2.0, 'with': 1.0, 'it': 4.0, 'ordering': 1.0, 'under': 1.0, 'there': 2.0, 'a': 3.0, 'but': 1.0, 'they': 1.0, 'has': 1.0, 'comes': 1.0, 'was': 2.0, 'to': 2.0, 'be': 1.0}
Word element => {'market': 1.0, 'carriers': 1.0, 'some': 1.0, 'not': 1.0, 'just': 1.0, 'when': 1.0, 'tangled': 1.0, 'easy': 1.0, 'get': 1.0, 'off': 1.0, 'would': 1.0, 'never': 1.0, 'thought': 1.0, 'it': 3.0, 'this': 3.0, 'mos': 1.0, 'hard': 1.0, 'come': 1.0, 'love': 1.0, 'for': 2.0, 'one': 1.0, 'and': 3.0, 'try': 1.0, 'do': 1.0, 'that': 1.0, 'babies': 1.0, 'have': 1.0, 'unfortunately': 1.0, 'infantino': 1.0, 'often': 1.0, 'my': 1.0, 'another': 1.0, 'alone': 2.0, 'really': 1.0, 'son': 1.0, 'difficult': 1.0, 'because': 1.0, 'be': 1.0, 'as': 2.0, 'to': 5.0, 'now': 1.0, 'put': 2.0, 'on': 3.0, 'i': 5.0, 'carrier': 1.0, 'big': 1.0, 'great': 1.0, 'the': 3.0, '7': 1.0, 's': 1.0, 'a': 1.0, 'so': 2.0, 'smaller': 1.0, 'bit': 1.0, 'other': 2.0, 'use': 2.0, 'straps': 1.0, 'are': 1.0, 'they': 1.0, 'is': 2.0, 'completely': 1.0}
Word element => {'product': 1.0, 'pictures': 1.0, 'babies': 1.0, 'cozy': 1.0, 'squished': 1.0, 'is': 1.0, 'in': 2.0, 'finally': 1.0, 'when': 1.0, 'around': 1.0, 'makes': 1.0, 'time': 1.0, 'poor': 1.0, 't': 1.0, 'the': 4.0, 'are': 1.0, 'my': 1.0, 'advertisement': 1.0, 'you': 1.0, 'straps': 1.0, 'on': 3.0, 'doesn': 1.0, 'put': 2.0, 'difficult': 1.0, 'he': 3.0, 'it': 2.0, 'come': 1.0, 'baby': 1.0, 'alone': 1.0, 'look': 1.0, 'to': 1.0, 'if': 1.0, 'as': 2.0, 'very': 1.0, 'get': 1.0, 'and': 1.0, 'like': 2.0, 'i': 4.0, 'off': 1.0, 'there': 1.0, 'completely': 1.0, 'tangled': 1.0, 'every': 1.0, 'feel': 2.0, 'am': 1.0, 'jostling': 1.0}
Word element => {'carrier': 1.0, 'money': 1.0, 'upset': 1.0, 'straps': 1.0, 'not': 1.0, 'just': 1.0, 'all': 1.0, 'so': 1.0, 'the': 2.0, 'my': 1.0, 'uncomfortable': 1.0, 'waste': 1.0, 'on': 1.0, 'your': 1.0, 'time': 1.0, 'this': 1.0, 'with': 1.0, 'it': 3.0, 'hates': 1.0, 'do': 1.0, 'me': 1.0, 'get': 1.0, 'and': 1.0, 'her': 2.0, 'face': 1.0, 'she': 1.0, 'facing': 1.0, 'daughter': 1.0, 'when': 1.0, 'gets': 1.0, 'is': 2.0, 'really': 1.0}
Word element => {'again': 1.0, 'not': 1.0, 'definitely': 1.0, 'ill': 1.0, 'so': 1.0, 'is': 1.0, 'months': 1.0, 'baby': 1.0, 'patiently': 1.0, 'now': 1.0, 'for': 2.0, 'her': 1.0, 'kills': 1.0, 'my': 1.0, 'bought': 1.0, 'buy': 1.0, 'i': 2.0, 'your': 1.0, 'shes': 1.0, 'unborn': 1.0, 'three': 1.0, 'and': 1.0, 'cant': 1.0, 'use': 1.0, 'arrival': 1.0, 'this': 1.0, 'it': 4.0, 'waiting': 1.0, 'anymore': 1.0, 'uncomfortable': 1.0, 'back': 1.0}
Word element => {'bag': 1.0, 'me': 1.0, 'bundle': 1.0, 'safer': 1.0, 'much': 1.0, 'baby': 1.0, 'out': 1.0, 'get': 1.0, 'seem': 1.0, 'can': 1.0, 'cole': 1.0, 'this': 2.0, 'velcro': 1.0, 'handle': 1.0, 'alternative': 1.0, 'previous': 1.0, 'closure': 1.0, 'the': 5.0, 'sewn': 1.0, 'a': 3.0, 't': 2.0, 'agree': 2.0, 'however': 1.0, 'that': 3.0, 'cover': 1.0, 'of': 3.0, 'is': 1.0, 'around': 1.0, 'onboard': 1.0, 'don': 1.0, 'my': 1.0, 'fits': 1.0, 'gaps': 1.0, 'said': 1.0, 'air': 1.0, 'i': 4.0, 'know': 1.0, 'device': 1.0, 'seems': 1.0, 'also': 1.0, 'so': 1.0, 'needs': 1.0, 'some': 1.0, 'warm': 1.0, '35': 1.0, 'type': 1.0, 'our': 1.0, 'seat': 3.0, 'to': 4.0, 'keep': 2.0, 'problem': 1.0, 'flap': 1.0, 'down': 1.0, 'have': 1.0, 'with': 1.0, 'piece': 1.0, 'onto': 1.0, 'and': 2.0, 'it': 5.0, 'solved': 1.0, 'figured': 1.0, 'car': 2.0, 'why': 1.0, 'review': 1.0, 'jj': 1.0}
Word element => {'good': 1.0, 'say': 1.0, 'half': 1.0, 'blanket': 1.0, 'been': 1.0, 'always': 2.0, 'has': 1.0, 't': 2.0, 'doesn': 1.0, 'enough': 2.0, 'thin': 1.0, 'blocks': 1.0, 'although': 1.0, 'issue': 1.0, 'an': 1.0, 'close': 1.0, 'could': 1.0, '3': 1.0, 'on': 3.0, 'for': 4.0, 'bottom': 1.0, 'love': 2.0, 'even': 1.0, 'personally': 1.0, 'lights': 1.0, 'place': 1.0, 'off': 1.0, 'cover': 2.0, 'or': 2.0, 'months': 1.0, 'but': 2.0, 'can': 2.0, 'so': 2.0, 'really': 1.0, 'registry': 1.0, 'is': 4.0, 'my': 3.0, 'have': 4.0, 'due': 1.0, 'it': 9.0, 'baby': 3.0, 'she': 5.0, 'this': 4.0, 'the': 6.0, 'doing': 1.0, 'to': 10.0, 'sleep': 1.0, 'was': 2.0, 'power': 1.0, 'not': 2.0, 'a': 1.0, 'small': 1.0, 'added': 1.0, 'are': 1.0, 'well': 2.0, 'i': 8.0, 'in': 4.0, 'almost': 1.0, 'air': 3.0, 'under': 2.0, 'winter': 1.0, 'able': 1.0, 'gone': 1.0, 'us': 2.0, 'lift': 1.0, 'about': 2.0, 'shield': 1.0, 'read': 1.0, 'and': 4.0, 'closed': 1.0, 'too': 2.0, 'easy': 1.0, 'needed': 1.0, 'check': 1.0, 'used': 1.0, 'her': 6.0, 'from': 2.0, 'while': 2.0, 'cold': 2.0, 'still': 3.0, 'brand': 1.0, 'new': 1.0, 'shape': 1.0, 'because': 1.0, 'that': 3.0, 'flap': 1.0, 'there': 1.0, 'light': 1.0, 's': 4.0, 'sides': 1.0, 'discretely': 1.0, 'out': 2.0, 'daughter': 1.0, 'happens': 1.0, 'smother': 1.0, 'put': 1.0, 'do': 1.0, 'without': 1.0, 'cracks': 1.0, 'works': 1.0, 'awake': 1.0, 'block': 1.0, 'trying': 1.0, 'stays': 1.0, 'be': 1.0, 'll': 1.0, 'everything': 1.0, 'shut': 1.0, 'being': 2.0, 'face': 1.0, 'over': 1.0, 'open': 1.0, 'depending': 1.0, 'when': 3.0, 'what': 1.0, 'warm': 2.0, 'had': 2.0, 'never': 1.0, 'some': 1.0, 'we': 3.0, 'take': 2.0, 'reviews': 1.0}
Word element => {'very': 1.0, 'air': 1.0, 'for': 1.0, 'in': 1.0, 'also': 1.0, 'sheer': 1.0, 'coverage': 1.0, 'washed': 1.0, 'of': 1.0, 'dried': 1.0, 'right': 1.0, 'over': 1.0, 'hot': 1.0, 'car': 1.0, 'fit': 1.0, 'have': 1.0, 'baby': 2.0, 'about': 1.0, 'how': 1.0, 'reviews': 1.0, 'mixed': 1.0, 'this': 1.0, 'it': 3.0, 'the': 3.0, 'read': 1.0, 'too': 2.0, 'graco': 1.0, 'i': 2.0, 'detergent': 1.0, 'well': 2.0, 'a': 1.0, 'amount': 1.0, 'carseat': 1.0, 'perfectly': 1.0, 'and': 3.0, 'fits': 1.0, 'not': 2.0, 'seat': 1.0, 'just': 1.0, 'is': 1.0}
Word element => {'reccommend': 1.0, 'would': 1.0, 'in': 1.0, 'wonderful': 1.0, 'and': 4.0, 'quality': 1.0, 's': 1.0, 'live': 1.0, 'where': 1.0, 'snowy': 1.0, 'this': 1.0, 'it': 3.0, 'windy': 1.0, 'i': 2.0, 'stays': 1.0, 'wind': 1.0, 'cold': 1.0, 'keeps': 1.0, 'is': 2.0, 'really': 1.0, 'even': 1.0, 'down': 1.0, 'flap': 1.0, 'my': 1.0, 'the': 2.0, 'highly': 1.0, 'baby': 1.0, 'nice': 2.0, 'warm': 1.0, 'a': 1.0}
Word element => {'they': 1.0, 'don': 1.0, 'babies': 1.0, 'most': 1.0, 'for': 1.0, 'zip': 1.0, 'start': 1.0, 'matters': 1.0, 'easy': 1.0, 'super': 1.0, 'price': 1.0, 'too': 2.0, 'wouldn': 1.0, 'by': 1.0, 'home': 1.0, 'we': 1.0, 'also': 1.0, 'does': 2.0, 'say': 1.0, 'top': 1.0, 'places': 1.0, 'drap': 1.0, 'warmth': 1.0, 'great': 2.0, 'ready': 1.0, 'this': 3.0, 'about': 3.0, 'in': 3.0, 'be': 2.0, 'can': 1.0, 'so': 4.0, 'old': 2.0, 'carseat': 1.0, 'long': 1.0, 'use': 1.0, 'her': 5.0, 'think': 2.0, 'definitely': 1.0, 'better': 1.0, 'is': 2.0, 'at': 1.0, 'provides': 1.0, 'over': 3.0, 'up': 1.0, 'get': 2.0, 'months': 3.0, 'small': 1.0, 'a': 4.0, 'go': 1.0, 'will': 2.0, 'could': 2.0, 'going': 2.0, 's': 3.0, 'job': 1.0, 'to': 8.0, 'our': 2.0, 'body': 1.0, 'as': 3.0, 'all': 2.0, 'was': 5.0, 'works': 1.0, 'without': 1.0, 'the': 7.0, 'of': 3.0, 'once': 1.0, 'very': 1.0, '9': 1.0, 'thought': 1.0, 'it': 13.0, 'joy': 1.0, 'stretched': 1.0, 'little': 2.0, 'nice': 2.0, 'way': 1.0, 'wake': 1.0, 'than': 1.0, 'weather': 1.0, 'really': 2.0, 'couldn': 1.0, 'couple': 1.0, 'out': 2.0, 'and': 8.0, 'graco': 1.0, 'what': 1.0, 'when': 4.0, 'that': 1.0, 'because': 1.0, 'easily': 1.0, 'i': 12.0, '4': 1.0, 'seconds': 1.0, 'started': 1.0, 'she': 4.0, 'baby': 2.0, 'needed': 1.0, 'but': 3.0, 'unzip': 2.0, '30': 1.0, 'easier': 1.0, 'has': 1.0, 'something': 1.0, 've': 1.0, 'would': 2.0, 'help': 1.0, 'never': 2.0, 'toasty': 1.0, 'warm': 3.0, 'had': 1.0, 'cold': 1.0, 'though': 1.0, 'problem': 1.0, 'bundle': 1.0, 'with': 1.0, 'zipper': 1.0, 'rest': 1.0, 't': 3.0, 'snagged': 1.0, 'need': 1.0, 'or': 1.0, 'been': 1.0, 'used': 1.0, 'keep': 2.0, 'did': 1.0, 'usually': 1.0, 'only': 1.0, 'hitting': 1.0, 'slowly': 1.0, 'stirring': 1.0, 'much': 2.0, 'put': 1.0, 'keeps': 1.0, 'flap': 1.0, 'while': 1.0, 'which': 2.0, 'got': 2.0, 'even': 1.0, 'blanket': 1.0, '5': 1.0, 'why': 1.0, 'just': 2.0, 'blankets': 1.0, 'loud': 1.0, 'push': 1.0, 'off': 1.0, 'still': 1.0}
Word element => {'ok': 1.0, 'its': 1.0, 'all': 1.0, 'because': 1.0, 'cover': 1.0, 'between': 1.0, 'see': 1.0, 'can': 1.0, 'down': 1.0, 'flap': 1.0, 'closing': 1.0, 'when': 1.0, 'i': 1.0, 'doesn': 2.0, 'but': 1.0, 'product': 1.0, 'fit': 1.0, 'like': 1.0, 'and': 1.0, 'do': 1.0, 'come': 1.0, 'this': 1.0, 'it': 3.0, 't': 2.0, 'the': 6.0, 'great': 1.0, 'carrier': 1.0, 'lays': 1.0, 'on': 2.0, 'child': 1.0, 'sides': 1.0, 'also': 1.0, 'face': 1.0, 'way': 1.0, 's': 1.0, 'you': 1.0}
Word element => {'over': 1.0, 'don': 1.0, 'shield': 1.0, 'wind': 1.0, 'nice': 1.0, 'works': 1.0, 'above': 1.0, 'part': 1.0, 'well': 2.0, 'bucket': 1.0, 'transfer': 1.0, 'put': 1.0, 'on': 1.0, 'baby': 2.0, 'between': 1.0, 'no': 1.0, 'there': 1.0, 'safe': 1.0, 'car': 3.0, 'like': 2.0, 'also': 2.0, 'want': 1.0, 'if': 1.0, 'layer': 1.0, 'everything': 1.0, 'that': 2.0, 'pops': 1.0, 'keeps': 1.0, 'it': 7.0, 'this': 2.0, 'warmest': 1.0, 'really': 2.0, 'blanket': 2.0, '34': 2.0, 'm': 1.0, 'by': 1.0, 'quite': 1.0, 'happy': 1.0, 'tight': 1.0, 'my': 2.0, 'can': 2.0, 'but': 2.0, 'didn': 1.0, 'three': 1.0, 'outdoors': 1.0, 'i': 6.0, 'expect': 1.0, 'carry': 1.0, 'purchased': 1.0, 'as': 3.0, 'seat': 2.0, 'to': 3.0, 'son': 1.0, 'in': 2.0, 'have': 2.0, 'meaning': 1.0, 'world': 1.0, 'flights': 1.0, 'of': 1.0, 'always': 2.0, 'we': 1.0, 'a': 1.0, 's': 5.0, 't': 2.0, 'stairs': 1.0, 're': 1.0, 'cover': 2.0, 'off': 2.0, 'around': 1.0, 'holds': 1.0, 'be': 1.0, 'him': 1.0, 'would': 1.0, 'bottom': 1.0, 'down': 1.0, 'his': 3.0, 'and': 3.0, 'wrap': 1.0, 'the': 8.0, 'place': 1.0, 'reach': 1.0, 'so': 1.0, 'time': 1.0, 'you': 2.0, 'when': 1.0, 'easily': 2.0, 'fallen': 1.0, 'head': 2.0, 'husband': 1.0, 'insulates': 1.0}
Word element => {'windy': 1.0, 'on': 1.0, 'closed': 1.0, 'stay': 1.0, 'flap': 1.0, 'so': 1.0, 'top': 1.0, 'love': 1.0, 'this': 1.0, 'would': 1.0, 'at': 1.0, 'mom': 1.0, 'but': 1.0, 'had': 1.0, 'the': 2.0, 'my': 1.0, 'days': 1.0, 'a': 1.0, 'sew': 1.0, 'cover': 1.0, 'velcro': 1.0, 'closure': 1.0}
Word element => {'system': 1.0, '5': 1.0, 'under': 1.0, 'doesn': 1.0, 'but': 1.0, 'soft': 1.0, 'this': 1.0, 'harness': 1.0, 'the': 5.0, 'nicely': 1.0, 'car': 1.0, 'because': 1.0, 'is': 2.0, 'side': 1.0, 'negate': 1.0, 'it': 3.0, 'she': 1.0, 'that': 1.0, '34': 2.0, 'cover': 2.0, 'better': 1.0, 'me': 1.0, 'bundle': 1.0, 'carrier': 1.0, 'fits': 1.0, 'my': 1.0, 'baby': 1.0, 'on': 1.0, 'and': 3.0, 'tall': 1.0, 'good': 1.0, 'her': 1.0, 'long': 1.0, 'little': 1.0, 'head': 1.0, 'feet': 1.0, 'strap': 1.0, 'are': 1.0, 's': 3.0, 't': 1.0, 'a': 1.0, 'bit': 1.0, 'point': 1.0, 'warm': 1.0, 'snug': 1.0, 'seat': 1.0, 'as': 2.0, 'all': 1.0}
Word element => {'item': 1.0, 'are': 1.0, 'you': 1.0, 'what': 1.0, 'guess': 1.0, 'i': 1.0, 'snug': 1.0, 'be': 1.0, 'dealing': 1.0, 'but': 1.0, 'fits': 1.0, 'happens': 1.0, 'platinum': 1.0, 'when': 1.0, 'graco': 1.0, 'a': 4.0, 'throwing': 1.0, 'much': 1.0, 'and': 1.0, 'up': 1.0, 'little': 3.0, 'your': 1.0, 'bundling': 1.0, 'than': 1.0, 'could': 1.0, 'blanket': 1.0, 'over': 1.0, 'him': 1.0, 'with': 1.0, 'only': 1.0, 'it': 2.0, 'my': 1.0, 'universal': 1.0, 'more': 1.0, 'the': 1.0, 'fit': 1.0, 'complaint': 1.0, 'is': 3.0, 'snugride': 1.0, 'easier': 1.0, 'that': 2.0, 'big': 1.0, 'one': 1.0, 'for': 1.0}
Word element => {'other': 1.0, 'which': 1.0, 'rest': 1.0, 'also': 1.0, 'to': 1.0, 'head': 1.0, 'true': 1.0, 'many': 1.0, 'is': 1.0, 'does': 1.0, 'her': 2.0, 'not': 1.0, 'seat': 2.0, 'daughter': 1.0, 'picture': 1.0, 'air': 1.0, 'cover': 1.0, 'for': 1.0, 'love': 1.0, 'this': 1.0, 'it': 3.0, 'i': 1.0, 'warm': 1.0, 'on': 1.0, 'over': 1.0, 'car': 1.0, 'do': 1.0, 'and': 2.0, 'the': 4.0, 'nicely': 1.0, 'keeps': 1.0, 'cold': 1.0, 'winter': 1.0, 'covers': 1.0, 'out': 1.0, 'fits': 1.0, 'my': 1.0, 'color': 1.0}
Word element => {'no': 1.0, 'graco': 1.0, 'fits': 1.0, 'i': 1.0, 'in': 1.0, 'on': 1.0, 'warm': 1.0, 'baby': 1.0, 'my': 2.0, 'perfectly': 1.0, 'and': 2.0, 'into': 1.0, 'goes': 1.0, 'use': 1.0, 'walks': 1.0, 'option': 1.0, 'to': 1.0, 'supposed': 1.0, 'that': 1.0, 'you': 1.0, 'great': 1.0, 'the': 4.0, 'keeps': 1.0, 'are': 1.0, 'not': 2.0, 'seat': 2.0, 'outside': 1.0, 'kind': 1.0, 'as': 1.0, 'tested': 1.0, 'is': 2.0, 'issues': 1.0, 'crash': 1.0, 'car': 2.0, 'it': 1.0, 'with': 1.0, 'this': 1.0, 'a': 1.0}
Word element => {'s': 1.0, 'baby': 1.0, 'back': 1.0, 'will': 1.0, 'cover': 1.0, 'is': 2.0, 'definitely': 1.0, 'car': 1.0, 'it': 3.0, 'this': 1.0, 'serve': 1.0, 'other': 1.0, 'its': 1.0, 'purpose': 1.0, 'and': 1.0, 'safer': 1.0, 'most': 1.0, 'covers': 1.0, 'than': 1.0, 'go': 1.0, 'does': 1.0, 'because': 1.0, 'seat': 1.0, 'not': 1.0, 'the': 1.0, 'great': 1.0, 'behind': 1.0}
Word element => {'move': 1.0, 'that': 1.0, 'mommy': 1.0, 'for': 1.0, 'an': 1.0, 'this': 1.0, 'addition': 1.0, 'seat': 1.0, 'covers': 1.0, 'the': 3.0, 'soft': 1.0, 'and': 1.0, 'it': 1.0, 'new': 1.0, 'excellent': 1.0, 'babe': 1.0, 'on': 1.0, 'warmth': 1.0, 'is': 2.0, 'with': 1.0, 'added': 1.0}
Word element => {'item': 1.0, 'recommend': 1.0, 'i': 3.0, 'newborn': 1.0, 'well': 2.0, 'and': 2.0, 'perfectly': 1.0, 'get': 1.0, 'work': 1.0, 'but': 1.0, 'coverage': 1.0, 'isn': 1.0, 'love': 1.0, 'for': 2.0, 'color': 1.0, 'pull': 1.0, 'works': 1.0, 'end': 1.0, 'deal': 1.0, 'the': 6.0, 'a': 4.0, 't': 1.0, 'is': 2.0, 'durable': 1.0, 'it': 1.0, 'car': 3.0, 'cover': 1.0, 'provides': 1.0, 'girl': 1.0, 'base': 1.0, 'highly': 1.0, 'lock': 1.0, 'material': 1.0, 'perfect': 1.0, 'this': 2.0, 'soft': 1.0, 'my': 1.0, 'fits': 1.0, 'neutral': 1.0, 'would': 2.0, 'either': 1.0, 'or': 1.0, 'into': 1.0, 'zipper': 1.0, 'have': 1.0, 'seat': 3.0, 'to': 3.0, 'up': 1.0, 'boy': 1.0, 'bit': 1.0, 'big': 1.0}
Word element => {'velcro': 1.0, 'does': 2.0, 'cold': 2.0, 'came': 1.0, 'windy': 1.0, 'and': 2.0, 'stay': 1.0, 'not': 1.0, 'doesn': 1.0, 'was': 1.0, 'top': 4.0, 'star': 1.0, 'that': 2.0, 'air': 1.0, 'in': 4.0, 'handles': 1.0, 'is': 1.0, 'feel': 1.0, 't': 2.0, 'don': 1.0, 'there': 3.0, 'the': 9.0, 'of': 3.0, 'gap': 1.0, 'for': 3.0, 'product': 1.0, 'where': 1.0, 'allows': 1.0, 'conditions': 1.0, 'this': 3.0, '3': 1.0, 'on': 3.0, 'wind': 1.0, 'it': 4.0, 'i': 3.0, 'couple': 1.0, 'out': 1.0, 'giving': 1.0, 'am': 1.0, 'when': 1.0, 'wi': 1.0, 'are': 2.0, 'blanket': 1.0, 'home': 1.0, 'by': 1.0, 'just': 2.0, 'choice': 1.0, 'apart': 1.0, 'once': 1.0, 'shut': 1.0, 'over': 1.0, 'work': 1.0, 'but': 1.0, 'better': 1.0, 'process': 1.0, 'secure': 1.0, 'ok': 1.0, 'we': 3.0, 'then': 2.0, 'far': 1.0, 'me': 1.0, 'reasons': 2.0, 'may': 2.0, 'blow': 1.0, 'off': 1.0, 'heavier': 1.0, 'cover': 1.0, 'us': 1.0, 'also': 1.0, 'receiving': 1.0, 'new': 1.0, 'as': 3.0, 'our': 1.0, 'to': 2.0, 'seam': 1.0, 'after': 1.0, 'only': 1.0, 'put': 2.0, 'much': 1.0, 'common': 1.0, 'using': 1.0, 'car': 1.0, 'ride': 1.0, 'safety': 1.0, 'had': 1.0, 'closed': 1.0, 'replace': 1.0, 'seem': 1.0, 'safer': 1.0, 'unfortunately': 1.0, 'baby': 1.0, 'other': 1.0, 'one': 2.0, 'ones': 1.0, 'perfect': 1.0, 'live': 1.0, 'staying': 1.0, 'a': 6.0, 'small': 1.0, 'piece': 1.0}
Word element => {'this': 1.0, 'with': 1.0, 'happy': 1.0, 'his': 2.0, 'that': 2.0, 'able': 1.0, 'have': 1.0, 'super': 1.0, 'would': 1.0, 'be': 1.0, 'him': 2.0, 'down': 1.0, 'complaint': 1.0, 'flap': 1.0, 'he': 2.0, 'only': 1.0, 'keeps': 1.0, 'cold': 1.0, 'are': 1.0, 'the': 2.0, 'is': 2.0, 'very': 1.0, 'our': 1.0, 'to': 4.0, 'outside': 1.0, 'open': 1.0, 'pull': 1.0, 'alaskan': 1.0, 'am': 1.0, 'when': 2.0, 'warm': 2.0, 'though': 1.0, 'purchase': 1.0, 'my': 2.0, 'winters': 1.0, 'it': 1.0, 'covers': 1.0, 'out': 1.0, 'face': 2.0, 't': 1.0, 'we': 2.0, 'doesn': 1.0, 'son': 1.0, 'seem': 1.0, 'bother': 1.0, 'in': 1.0, 'air': 1.0, 'always': 1.0, 'nice': 1.0, 'and': 1.0, 'get': 1.0, 'so': 1.0, 'i': 1.0}
Word element => {'times': 1.0, 'money': 1.0, 'worth': 1.0, '100': 1.0, 'blanket': 1.0, 'seats': 1.0, 'fits': 1.0, 'perfect': 1.0, 'love': 1.0, 'for': 1.0, 'all': 1.0, 'have': 2.0, 'must': 1.0, 'definite': 1.0, 'is': 1.0, 'it': 3.0, 'this': 1.0, 'with': 1.0, 'a': 2.0, 'car': 2.0, 'over': 1.0, 'nice': 1.0, 'your': 1.0, 's': 1.0, 'so': 1.0, 'to': 2.0, 'seat': 1.0, 'not': 1.0, 'the': 1.0, 'mess': 1.0}
Word element => {'safe': 1.0, 'very': 1.0, 'up': 1.0, 'set': 1.0, 'come': 1.0, 'doesn': 1.0, 'filler': 1.0, 'edges': 1.0, 'sew': 1.0, 'then': 1.0, 'imagine': 1.0, 'winter': 1.0, 'would': 1.0, 'ny': 1.0, 'no': 1.0, 'in': 2.0, 'baby': 3.0, 'so': 1.0, 'simply': 1.0, 'i': 3.0, 'areas': 1.0, 'how': 2.0, 'bundle': 1.0, 'freezing': 1.0, 'and': 4.0, 't': 4.0, 'without': 1.0, 'the': 8.0, 'behind': 1.0, 'this': 2.0, 'it': 2.0, 'is': 1.0, 'can': 2.0, 'my': 1.0, 'seat': 1.0, 'to': 1.0, 'keep': 1.0, 'supposed': 1.0, 'for': 1.0, 'me': 1.0, 'those': 1.0, 'done': 1.0, 'simple': 1.0, 'warm': 2.0, 'colder': 1.0, 'just': 1.0, 'won': 1.0, 'out': 1.0, 'obstruct': 1.0, 'cut': 2.0, 'm': 1.0, 'get': 2.0, 'sure': 1.0, 'sooo': 1.0, 'obstructing': 1.0, 'understand': 1.0, 'solution': 1.0, 'parts': 1.0, 'that': 1.0, 'straps': 1.0, 'way': 1.0, 'sit': 1.0, 'on': 1.0, 'make': 1.0, 'your': 1.0}
Word element => {'the': 1.0, 'functional': 1.0, 'fleece': 1.0, 'expectation': 1.0, 'baby': 1.0, 'and': 2.0, 'stylish': 1.0, 'met': 1.0, 'my': 2.0, 'winter': 1.0, 'product': 1.0, 'its': 1.0, 'to': 1.0, 'inner': 1.0, 'it': 1.0, 'this': 1.0, 'wisconsin': 1.0, 'during': 1.0, 'simple': 1.0, 'every': 1.0, 'use': 1.0, 'is': 1.0, 'lining': 1.0, 'cold': 1.0, 'keeps': 1.0, 'nice': 1.0, 'warm': 1.0}
Word element => {'cover': 1.0, 'car': 1.0, 'reason': 1.0, 'in': 1.0, 'his': 1.0, 'carseat': 1.0, 'sweat': 1.0, 'd': 1.0, 'with': 1.0, 'he': 1.0, 'its': 1.0, 'winds': 1.0, 'for': 2.0, 'son': 1.0, 'from': 1.0, 'the': 2.0, 'my': 1.0, 'to': 4.0, 'as': 1.0, 'seat': 1.0, 'tends': 1.0, 'some': 1.0, 'but': 1.0, 'blankets': 1.0, 'we': 1.0, 'perfect': 1.0, 'this': 2.0, 'dont': 1.0, 'have': 1.0, 'many': 1.0, 'over': 1.0, 'him': 1.0, 'option': 1.0, 'since': 1.0, 'winter': 1.0, 'easy': 1.0, 'was': 1.0, 'recommend': 1.0, 'access': 1.0, 'put': 1.0, 'strong': 1.0, 'your': 1.0, 'fast': 1.0, 'childs': 1.0, 'face': 1.0, 'everyone': 1.0, 'protection': 1.0, 'i': 1.0}
Word element => {'necessary': 1.0, 'jackets': 1.0, 'no': 1.0, 'blanket': 1.0, 'a': 1.0, 'with': 1.0, 'her': 1.0, 'manufacturers': 1.0, 'seat': 1.0, 'not': 1.0, 'my': 1.0, 'for': 1.0, 'daughter': 1.0, 'in': 1.0, 'cover': 2.0, 'maintaining': 1.0, 'i': 1.0, 'while': 1.0, 'straps': 1.0, 'warm': 1.0, 'car': 1.0, 'to': 1.0, 'then': 1.0, 'keeping': 1.0, 'baby': 1.0, 'wear': 1.0, 'under': 1.0, 'the': 3.0, 'warning': 1.0, 'great': 1.0, 'bulky': 2.0, 'clothes': 1.0, 'zip': 1.0, 'put': 1.0}
Word element => {'up': 1.0, 'through': 1.0, 'you': 1.0, 'when': 1.0, 'accident': 1.0, 'an': 1.0, 'it': 2.0, 'right': 1.0, 'important': 1.0, 'were': 1.0, 'cold': 1.0, 'carseat': 2.0, 'or': 1.0, 'belts': 1.0, 'baby': 2.0, 'between': 1.0, 'on': 1.0, 'put': 1.0, 'of': 1.0, 'zip': 1.0, 'blanket': 2.0, 'told': 1.0, 'about': 1.0, 'not': 2.0, 'like': 1.0, 'know': 1.0, 'intended': 1.0, 'was': 2.0, 'i': 4.0, 'be': 1.0, 'work': 1.0, 'can': 2.0, 'this': 4.0, 'with': 1.0, 'the': 6.0, 'great': 1.0, 'does': 1.0, 'having': 1.0, 'in': 2.0, 'item': 2.0, 'also': 1.0, 'is': 2.0, 'goes': 1.0, 'live': 1.0, 'worried': 1.0, 'awesome': 1.0, 'something': 1.0, 'that': 2.0, 'colorado': 1.0, 'worked': 1.0, 's': 1.0, 'a': 1.0, 'we': 2.0, 'unpredictable': 1.0, 'for': 1.0, 'where': 1.0, 'us': 1.0, 'and': 3.0, 'material': 1.0, 'really': 2.0, 'weather': 1.0, 'sleep': 1.0, 'as': 1.0, 'seat': 1.0, 'any': 1.0, 'to': 3.0, 'our': 2.0, 'all': 1.0, 'have': 1.0, 'time': 1.0, 'has': 1.0, 'out': 1.0, 'extra': 1.0, 'unlike': 1.0, 'always': 1.0, 'keep': 1.0, 'little': 2.0, 'one': 2.0, 'warm': 1.0, 'others': 1.0, 'some': 1.0}
Word element => {'poorly': 1.0, 'some': 1.0, 'job': 1.0, 'made': 1.0, 'the': 1.0, 'ok': 1.0, 'does': 1.0, 'i': 1.0, 'expecting': 1.0, 'to': 1.0, 'an': 1.0, 'product': 1.0, 'it': 1.0, 'extent': 1.0, 'sure': 1.0, 'what': 1.0, 'not': 1.0, 'was': 2.0, 'but': 1.0}
Word element => {'with': 1.0, 'happy': 1.0, 'very': 1.0, 'm': 1.0, 'folded': 1.0, 'flap': 1.0, 'then': 1.0, 'way': 1.0, 'over': 1.0, 'up': 2.0, 'exposed': 1.0, 'be': 1.0, 'so': 1.0, 'store': 1.0, 'walking': 1.0, 'picture': 1.0, 'shown': 1.0, 'she': 1.0, 'it': 3.0, 'winter': 1.0, 'momentarily': 1.0, 'given': 1.0, 'in': 1.0, 'midwest': 1.0, '5': 1.0, 'cold': 1.0, 'keeps': 2.0, 'elements': 1.0, 'is': 2.0, 'material': 1.0, 'really': 1.0, 'zips': 1.0, 'we': 1.0, 's': 1.0, 'a': 4.0, 'half': 1.0, 'well': 1.0, 'while': 1.0, 'part': 1.0, 'down': 1.0, 'high': 1.0, 'purchase': 1.0, 'my': 2.0, 'push': 1.0, 'need': 1.0, 'during': 1.0, 'can': 1.0, 'but': 1.0, 'seperate': 1.0, 'and': 3.0, 'overall': 1.0, 'shape': 1.0, 'without': 1.0, 'the': 6.0, 'quality': 1.0, 'baby': 3.0, 'warm': 1.0, 'made': 1.0, 'of': 1.0, 'this': 2.0, 'soft': 1.0, 'product': 1.0, 'for': 2.0, 'stars': 1.0, 'into': 1.0, 'that': 2.0, 'gets': 1.0, 'washes': 1.0, 'only': 1.0, 'its': 1.0, 'as': 1.0, 'to': 2.0, 'i': 3.0, 'coat': 1.0, 'would': 1.0, 'have': 1.0, 'find': 1.0, 'easy': 1.0, 're': 1.0, 'cover': 2.0}
Word element => {'flap': 1.0, 'over': 1.0, 'folded': 1.0, 'the': 1.0, 'a': 1.0, 'past': 1.0, 'winter': 1.0, 'life': 1.0, 'saver': 1.0, 'keep': 1.0, 'cold': 1.0, 'during': 1.0, 'and': 1.0, 'seems': 1.0, 'was': 1.0, 'to': 1.0, 'liked': 1.0, 'my': 1.0, 'little': 1.0, 'boy': 1.0, 'warm': 1.0, 'playing': 1.0, 'terribly': 1.0, 'it': 1.0, 'he': 1.0, 'this': 2.0, 'with': 1.0}
Word element => {'there': 1.0, 'are': 1.0, 'want': 1.0, 'might': 1.0, 'if': 1.0, 'however': 1.0, 'whole': 1.0, 'without': 1.0, 'remove': 1.0, 'actually': 1.0, 'elastic': 1.0, 'all': 2.0, 'doesn': 1.0, 'urface': 1.0, 'uneven': 1.0, 'don': 1.0, 'kind': 1.0, 'put': 1.0, 'after': 1.0, 'onto': 2.0, 't': 2.0, 'belt': 1.0, 'holes': 1.0, 'bag': 1.0, 'sleeping': 1.0, 'mini': 1.0, 'than': 1.0, 'better': 1.0, 'carseat': 4.0, 'like': 2.0, 'time': 1.0, 'not': 2.0, 'california': 2.0, 'live': 2.0, 's': 7.0, 'a': 5.0, 'though': 2.0, 'cold': 1.0, 'on': 1.0, 'long': 1.0, 'taller': 1.0, 'etc': 1.0, '4': 2.0, 'newborn': 1.0, 'out': 2.0, 'i': 2.0, 'feet': 1.0, 'convenience': 1.0, 'need': 1.0, 'or': 1.0, 'tile': 1.0, 'frame': 1.0, 'worth': 1.0, 'warmer': 1.0, 'so': 5.0, 'can': 2.0, 'down': 1.0, 'when': 3.0, 'push': 1.0, 'you': 9.0, 'but': 3.0, 'unzip': 1.0, 'have': 4.0, 'outside': 1.0, 'grow': 1.0, 'shopping': 1.0, 'our': 1.0, 'bring': 1.0, 'your': 1.0, 'keeps': 1.0, 'feel': 1.0, 'months': 2.0, 'bottom': 2.0, 'love': 1.0, 'for': 6.0, 'this': 2.0, 'wish': 1.0, 'cole': 1.0, 'it': 13.0, 'lay': 1.0, 'very': 2.0, 'little': 1.0, 'go': 1.0, 'freezing': 2.0, 'and': 8.0, 'try': 1.0, 'one': 1.0, 'too': 1.0, 'convenient': 1.0, 'as': 1.0, 'indoor': 1.0, 'with': 2.0, 'baby': 9.0, 'seat': 1.0, 'in': 7.0, 'against': 1.0, 'to': 6.0, 'length': 1.0, 'bundleme': 4.0, 'up': 2.0, 'moving': 1.0, 'we': 5.0, 'leg': 1.0, 'consider': 1.0, 'zip': 1.0, 'car': 2.0, 'of': 4.0, 'the': 22.0, 'winter': 2.0, 'at': 2.0, 'is': 4.0, 'more': 2.0, 'will': 1.0, 'warm': 2.0, 'kick': 1.0, 'cover': 4.0, 'wrap': 1.0, 'designed': 1.0, 'room': 1.0, 'used': 1.0, 'about': 1.0, 'pull': 1.0, 'by': 1.0, 'inside': 1.0, 'weather': 2.0, '99': 1.0, 'product': 2.0, 'price': 1.0, 'both': 1.0, 'even': 4.0, 'got': 1.0, 'use': 1.0, 'layer': 1.0, 'easily': 1.0, 'that': 2.0, 'because': 1.0, 'sister': 1.0, 'looks': 1.0, 'my': 1.0, 'jj': 1.0, 'side': 1.0, 'gift': 1.0, 'agree': 1.0}
Word element => {}
Word element => {'warm': 1.0, 'jacket': 1.0, 'putting': 1.0, 'be': 1.0, 'chicago': 1.0, 'blanket': 1.0, 'are': 1.0, 'stretches': 1.0, 'store': 1.0, 'grocery': 1.0, 'from': 1.0, 'keep': 1.0, 'trips': 1.0, 'short': 1.0, 'works': 1.0, 'sense': 1.0, 'will': 1.0, 'seems': 1.0, 'position': 1.0, 'longer': 1.0, 'down': 1.0, 'pushing': 1.0, 'car': 2.0, 'this': 1.0, 'the': 12.0, 'december': 1.0, 'goes': 2.0, 'carseat': 1.0, 'top': 1.0, 'deemed': 1.0, 'well': 1.0, 'has': 1.0, 'i': 5.0, 'because': 1.0, 'not': 2.0, 'between': 1.0, 'read': 1.0, 'it': 4.0, 'she': 2.0, 'enough': 1.0, 'neither': 1.0, 'cover': 5.0, 'unsafe': 1.0, 'in': 1.0, 'bundleme': 1.0, 'my': 1.0, 'been': 1.0, 'that': 1.0, 'purchased': 1.0, 'then': 1.0, 'and': 4.0, 'child': 2.0, 'over': 2.0, 'of': 2.0, 'm': 1.0, 'when': 2.0, 'resting': 1.0, 'sure': 1.0, 'if': 1.0, 'head': 4.0, 'is': 3.0, 'for': 2.0, 'supposed': 1.0, 'seat': 2.0, 'outside': 3.0, 'to': 4.0, 'we': 1.0, 'a': 2.0, 's': 1.0, 'go': 1.0, 'visiting': 1.0, 'under': 3.0, 'or': 1.0, 'make': 1.0, 'on': 2.0, 'put': 2.0, 'but': 1.0, 'her': 3.0, 'fabric': 1.0, 'comfortable': 1.0}
Word element => {'great': 1.0, 'and': 1.0, 'under': 1.0, 'that': 2.0, 'want': 1.0, 'will': 2.0, 'went': 1.0, 'iowa': 1.0, 'blanket': 1.0, 'live': 1.0, 'winter': 1.0, 'be': 2.0, 'wanted': 1.0, 'to': 1.0, 'i': 4.0, 'one': 2.0, 'for': 1.0, 'in': 1.0, 'daughter': 1.0, 'didn': 1.0, 'safety': 1.0, 'these': 1.0, 'the': 1.0, 'of': 1.0, 'keep': 1.0, 'warm': 2.0, 'my': 1.0, 'underneath': 1.0, 'this': 3.0, 'it': 1.0, 'straps': 1.0, 'so': 1.0, 'risk': 1.0, 'works': 1.0, 'her': 1.0, 'well': 1.0, 'we': 1.0, 't': 2.0, 'a': 1.0, 'don': 1.0, 'enough': 1.0, 'very': 1.0, 'cold': 1.0, 'days': 1.0, 'but': 2.0, 'can': 1.0, 'put': 1.0, 'think': 1.0, 'on': 1.0}
Word element => {'works': 1.0, 'still': 1.0, 'but': 1.0, 'like': 1.0, 'picture': 1.0, 'air': 1.0, 'for': 1.0, 'fit': 1.0, 'cool': 1.0, 'wind': 1.0, 'baby': 1.0, 'little': 1.0, 'item': 1.0, 'this': 1.0, 'it': 1.0, 'the': 5.0, 'cons': 1.0, 'pros': 1.0, 'is': 1.0, 'a': 1.0, 'from': 1.0, 'protects': 1.0, 'big': 1.0, 'our': 1.0, 'car': 1.0, 'and': 2.0, 'do': 1.0, 'seat': 1.0, 'not': 1.0}
Word element => {'harness': 1.0, 'between': 1.0, 'anything': 1.0, 'baby': 1.0, 'don': 1.0, 'also': 1.0, 'bag': 1.0, 'without': 1.0, 'you': 1.0, 'warmth': 1.0, 'have': 1.0, 'all': 1.0, 'because': 1.0, 'just': 1.0, 'didn': 1.0, 'work': 1.0, 'weird': 1.0, 'carseat': 1.0, 'jj': 1.0, 'i': 2.0, 'safer': 1.0, 'sleeping': 1.0, 'from': 1.0, 'lite': 1.0, 'and': 3.0, 'had': 1.0, 'for': 1.0, 'awesome': 1.0, 'it': 1.0, 'feel': 1.0, 'instead': 1.0, 'got': 1.0, 'the': 4.0, 't': 2.0, 'these': 1.0, 'keyfit30': 1.0, 'they': 2.0, 'cole': 1.0, 'bundleme': 1.0, 're': 2.0}
Word element => {'much': 1.0, 'costs': 1.0, 'one': 1.0, 'overall': 1.0, 'almost': 1.0, 'are': 1.0, 'there': 1.0, 'hips': 1.0, 'that': 1.0, 'into': 1.0, 'prefer': 1.0, 'weight': 1.0, 'bear': 1.0, 'straps': 1.0, 'un': 1.0, 'means': 1.0, 'short': 1.0, 'but': 2.0, 'long': 1.0, 'belt': 1.0, 'like': 1.0, 'facing': 1.0, 'front': 1.0, 'mode': 2.0, 'backpack': 1.0, 'versatile': 1.0, 'an': 1.0, 'smaller': 1.0, 'adjusted': 1.0, 'or': 1.0, 'yet': 1.0, 'inside': 1.0, 'lb': 1.0, 'didn': 1.0, 'handled': 1.0, 'adjustable': 1.0, 'infantino': 1.0, 'very': 3.0, 'for': 3.0, 'liked': 1.0, 'ergo': 1.0, 'brands': 1.0, 'what': 2.0, 'adjust': 1.0, 'moby': 1.0, 've': 1.0, 'more': 1.0, 'is': 6.0, '35': 1.0, 'type': 2.0, 'tried': 1.0, 'portion': 1.0, 'attractive': 1.0, 'ways': 1.0, 'dig': 1.0, 'first': 1.0, 'this': 5.0, 'with': 1.0, 'it': 2.0, 'beco': 2.0, 'in': 1.0, 'bjorn': 1.0, 'baby': 1.0, 'best': 1.0, 'price': 1.0, 'off': 1.0, 'rather': 1.0, 'of': 3.0, 'available': 1.0, 'carrier': 2.0, 't': 1.0, 'we': 4.0, 'a': 3.0, 'black': 1.0, 'nylon': 1.0, 'padded': 2.0, 'great': 1.0, 'the': 6.0, 'to': 1.0, 'waist': 1.0, 'our': 2.0, 'infant': 2.0, 'now': 1.0, 'toddler': 2.0, 'too': 1.0, 'and': 3.0, 'while': 1.0, 'not': 1.0, 'many': 2.0, 'pretty': 1.0, 'some': 1.0, 'decent': 1.0, 'carriers': 1.0, 'good': 1.0, 'fabric': 1.0, 'value': 1.0, 'muted': 1.0}
Word element => {'now': 1.0, 'months': 1.0, 'nearly': 1.0, 'has': 1.0, 'he': 2.0, 'said': 1.0, 'in': 1.0, 'life': 1.0, 'just': 1.0, 'are': 1.0, 'they': 1.0, 'uses': 1.0, 'using': 1.0, 'know': 1.0, 'husband': 1.0, 'mom': 1.0, 'd': 1.0, 'm': 1.0, 'course': 1.0, 'use': 2.0, 'her': 4.0, 'something': 1.0, 've': 1.0, 'and': 1.0, 'starting': 1.0, 'respected': 1.0, 'highly': 1.0, 'but': 2.0, '9': 1.0, 'gift': 1.0, 'maker': 1.0, 'if': 1.0, 'to': 1.0, 'was': 3.0, 'had': 1.0, 'baby': 2.0, 'imitation': 1.0, 'terrific': 1.0, 'given': 2.0, 'model': 1.0, 'never': 1.0, 'ok': 1.0, 'she': 1.0, 'disliked': 1.0, 'it': 7.0, 'perfect': 1.0, 'this': 4.0, 'only': 1.0, 'so': 2.0, 'a': 2.0, 's': 5.0, 't': 1.0, 'the': 6.0, 'these': 1.0, 'recently': 1.0, 'daughter': 1.0, 'us': 1.0, 'market': 1.0, 'five': 1.0, 'volumes': 1.0, 'seen': 1.0, 'contribution': 1.0, 'flattery': 1.0, 'for': 5.0, 'product': 1.0, 'out': 1.0, 'wasn': 1.0, 'party': 1.0, 'my': 2.0, 'form': 1.0, 'is': 3.0, 'many': 1.0, 'sincerest': 1.0, 'shower': 1.0, 'of': 4.0, 'then': 1.0, 'were': 2.0, 'been': 1.0, 'gave': 1.0, 'that': 3.0, 'me': 1.0, 'not': 2.0, 'boyfriend': 1.0, 'indeed': 1.0, 'who': 1.0, 'at': 1.0, 'i': 5.0, 'on': 1.0, 'think': 1.0, 'flattered': 1.0, 'speaks': 1.0}
Word element => {'should': 1.0, 'average': 1.0, 'stress': 1.0, 'hip': 1.0, 'some': 1.0, 'lead': 1.0, 'legs': 1.0, 'where': 1.0, 'stomach': 1.0, 'straddle': 1.0, 'facing': 1.0, 'left': 1.0, 'adjusting': 1.0, 'chests': 1.0, 'pressed': 1.0, 'babies': 1.0, '8': 1.0, 'our': 2.0, 'definitely': 1.0, 'ground': 1.0, 'drop': 1.0, 'fail': 1.0, 'kid': 1.0, 'going': 1.0, 'ain': 1.0, 'sure': 1.0, 'lb': 2.0, 'comfortably': 1.0, 'whether': 1.0, 'seriously': 1.0, 'maneuvers': 1.0, 'those': 1.0, 'support': 1.0, 'perform': 1.0, 'circus': 1.0, 'have': 1.0, 'time': 1.0, 'under': 1.0, 'same': 1.0, 'however': 1.0, 'and': 7.0, 'both': 1.0, 'place': 2.0, 's': 6.0, 'a': 12.0, 'could': 2.0, 'without': 1.0, 'remove': 1.0, 'already': 1.0, 'it': 10.0, 'on': 9.0, 'balancing': 1.0, 'make': 2.0, '3': 1.0, 'job': 1.0, 'to': 13.0, 'must': 2.0, 'question': 1.0, 'ourselves': 1.0, 'very': 1.0, 'being': 1.0, 'if': 2.0, 'much': 1.0, 'put': 5.0, 'do': 1.0, 'child': 1.0, 'price': 1.0, 'product': 1.0, 'for': 3.0, 'inferior': 2.0, 'are': 3.0, 'just': 1.0, '35': 2.0, 'by': 2.0, 'strap': 1.0, 'difficult': 1.0, 'fact': 2.0, 'number': 1.0, 'around': 2.0, 'thing': 1.0, '2': 1.0, 'advertised': 1.0, 'but': 3.0, 'shoulder': 5.0, 'the': 22.0, 'of': 2.0, 'stable': 1.0, 'i': 2.0, 'is': 4.0, 'at': 3.0, 'back': 2.0, 'this': 3.0, 'attempt': 1.0, 'spring': 1.0, 'fairly': 1.0, 't': 2.0, 'cost': 2.0, 'down': 1.0, 've': 1.0, 'as': 2.0, 'awkward': 1.0, 'blades': 1.0, 'in': 4.0, 'elements': 1.0, 'quite': 1.0, 'carrier': 3.0, 'man': 1.0, 'forward': 1.0, 'not': 2.0, 'hang': 1.0, 'there': 3.0, 'that': 6.0, 'necessarily': 1.0, 'room': 1.0, 'once': 1.0, 'aspects': 1.0, 'two': 1.0, 'little': 1.0, 'tight': 2.0, 'another': 1.0, 'my': 1.0, 'able': 1.0, 'you': 7.0, 'd': 1.0, 'yourself': 2.0, 'someone': 1.0, 'used': 1.0, 'bjorn': 6.0, 'clip': 2.0, 'your': 6.0, 'probably': 1.0, 'be': 1.0, 'chuckle': 1.0, 'infantino': 3.0, 'elegant': 1.0, 'also': 1.0, 'straps': 2.0, 'fine': 1.0, 'then': 2.0, 'attach': 2.0, 'watching': 1.0, 'them': 1.0, 'baby': 5.0, 'with': 2.0, 'try': 1.0, 'one': 1.0, 'waistband': 1.0, 'overall': 1.0, 'slide': 1.0, 'wife': 1.0, 'ever': 1.0, 'other': 2.0, 'which': 1.0, 'side': 1.0, 'can': 1.0, 'clips': 1.0, 'locks': 1.0, 'or': 1.0}
Word element => {'again': 1.0, 'want': 1.0, 'now': 1.0, 'can': 1.0, 'bigger': 1.0, 'get': 1.0, 's': 1.0, 'maybe': 1.0, 'not': 1.0, 'comfort': 1.0, 'up': 1.0, 'boy': 1.0, 'adjustments': 1.0, 'than': 1.0, 'against': 2.0, 'to': 10.0, 't': 4.0, 'going': 1.0, 'could': 1.0, 'wasn': 1.0, 'concern': 1.0, 'around': 3.0, 'look': 2.0, 'is': 3.0, 'more': 1.0, 'carried': 3.0, 'on': 3.0, 'think': 2.0, 'make': 2.0, 'ride': 1.0, 'rogan': 1.0, 'has': 1.0, 'in': 2.0, 'm': 2.0, 'fun': 1.0, 'able': 1.0, 'name': 1.0, 'i': 13.0, 'old': 1.0, 'and': 7.0, 'was': 6.0, 'lbs': 1.0, 'what': 1.0, 'when': 3.0, 'me': 4.0, 'my': 4.0, 'infantino': 1.0, 'thing': 1.0, 'day': 1.0, 'big': 2.0, 'say': 1.0, 'comfortable': 2.0, 'carrier': 2.0, 'sleep': 1.0, 'back': 3.0, 'this': 1.0, 'couldn': 1.0, '5': 1.0, 'month': 1.0, 'baby': 1.0, 'she': 2.0, 'little': 2.0, 'upset': 1.0, 'very': 1.0, 'for': 3.0, 'age': 1.0, 'mommy': 6.0, 'off': 1.0, 'see': 2.0, 'tried': 1.0, 'no': 1.0, 'supportive': 1.0, '18': 1.0, 'smooshed': 1.0, 'used': 1.0, 'be': 2.0, 'the': 5.0, 'front': 1.0, 'a': 3.0, 'small': 1.0, 'okay': 1.0, 'didn': 1.0, 'wanted': 2.0, 'but': 5.0, 'don': 1.0, 'shoulder': 1.0, 'anything': 1.0, 'all': 1.0, 'other': 1.0, 'straps': 2.0, 'because': 1.0, 'that': 2.0, 'only': 1.0, 'put': 1.0, 'do': 1.0, 'it': 3.0, 'wear': 1.0, 'try': 1.0, 'too': 2.0, 'one': 1.0, 'strap': 1.0, 'down': 1.0, 'her': 3.0, 'carriers': 1.0, 'which': 1.0, 'seem': 1.0, 'safe': 1.0, 'did': 1.0, 'balance': 1.0, 'first': 1.0}
Word element => {'becoming': 1.0, 'from': 1.0, 'superior': 2.0, 'torso': 1.0, 'or': 1.0, 'either': 1.0, 'anywhere': 1.0, 'straps': 1.0, 'discomfort': 1.0, 'any': 1.0, 'waist': 1.0, 'across': 1.0, 'distributed': 1.0, 'weight': 1.0, 'my': 1.0, 'squirming': 1.0, 'little': 1.0, 'after': 1.0, 'he': 1.0, 'where': 1.0, 'legs': 1.0, 'get': 1.0, 'us': 1.0, 'helped': 1.0, 'instructions': 1.0, 'settled': 1.0, 'illustrated': 1.0, 'hardly': 1.0, 's': 4.0, 'hands': 1.0, 'requires': 1.0, 'comfortably': 1.0, 'came': 1.0, 'wide': 1.0, 'time': 2.0, 'so': 1.0, 'superb': 1.0, 'what': 1.0, 'when': 1.0, 'you': 1.0, 'that': 1.0, 'been': 1.0, 'strap': 1.0, 'discovered': 1.0, 'make': 1.0, 'a': 10.0, 'confusion': 1.0, 'recommended': 1.0, 'arms': 1.0, 'and': 9.0, 'was': 5.0, 'had': 1.0, 'as': 1.0, 'it': 7.0, 'replaced': 1.0, 'have': 1.0, 'practice': 1.0, 'product': 4.0, 'carrier': 6.0, 'back': 3.0, 'to': 9.0, 'high': 1.0, 'upgrade': 1.0, 'worked': 1.0, 'company': 1.0, 'only': 1.0, 'quickly': 4.0, 'infantino': 5.0, 'no': 2.0, 'were': 1.0, 'known': 1.0, 'glance': 1.0, 'well': 1.0, 'coming': 1.0, 'i': 3.0, 'baby': 7.0, 'becomes': 1.0, 'are': 1.0, 'first': 2.0, 'balance': 3.0, 'close': 1.0, 'helping': 1.0, 'current': 1.0, 'range': 1.0, 'we': 2.0, 'take': 1.0, 'checked': 1.0, 'pair': 1.0, 'there': 2.0, 'soon': 1.0, 'owned': 1.0, 'another': 1.0, 'fact': 1.0, 'is': 5.0, 'at': 2.0, 'quality': 1.0, 'customer': 1.0, 'exception': 1.0, 'felt': 1.0, 'loose': 1.0, 'out': 1.0, 'estimation': 1.0, 'stuff': 1.0, 'just': 1.0, 'dispelled': 1.0, 'try': 1.0, 'confusing': 1.0, 'use': 1.0, 'front': 2.0, 'clear': 1.0, 'service': 1.0, 'bigger': 1.0, 'if': 1.0, 'read': 1.0, 'cradled': 1.0, 'manual': 3.0, 'bit': 2.0, 'however': 1.0, 'second': 2.0, 'be': 1.0, 'nature': 1.0, 'this': 1.0, 'particular': 1.0, 'has': 2.0, 'for': 1.0, 'such': 1.0, 'none': 1.0, 'some': 1.0, 'the': 17.0, 'longer': 1.0, 'natural': 1.0, 'of': 4.0, 'mommy': 2.0, 'age': 1.0, 'in': 6.0, 'groups': 1.0, 'weights': 1.0, 'which': 4.0, 'reading': 1.0, 'into': 1.0, 'three': 1.0, 'designed': 1.0, 'great': 1.0, 'passing': 1.0, 'carry': 2.0, 'style': 1.0, 'facing': 2.0}
Word element => {'for': 1.0, 'good': 1.0, 'back': 1.0, 'down': 1.0, 'pack': 1.0, 'doesnt': 1.0, 'i': 1.0, 'it': 1.0, 'like': 1.0, 'price': 1.0, 'how': 1.0, 'fits': 1.0, 'slide': 1.0, 'backing': 1.0, 'so': 1.0, 'the': 2.0, 'helps': 1.0, 'my': 2.0, 'baby': 1.0}
Word element => {'parents': 1.0, 'comfortable': 1.0, 'better': 1.0, 'apparently': 1.0, 'heard': 1.0, 'or': 1.0, 've': 1.0, 'they': 1.0, 'both': 2.0, 'son': 1.0, 'after': 1.0, 'issues': 1.0, 'others': 1.0, 'some': 1.0, 'first': 2.0, 'with': 2.0, 'over': 1.0, 'child': 1.0, 'out': 1.0, 'her': 2.0, 'used': 1.0, 'but': 1.0, 'my': 2.0, 'baby': 4.0, 'very': 1.0, 'supports': 1.0, 'about': 1.0, 'infantino': 3.0, 'daughter': 1.0, 'in': 1.0, 'law': 1.0, 'well': 2.0, 'a': 3.0, 'either': 1.0, 'had': 5.0, 'recommend': 1.0, 'was': 1.0, 'popular': 1.0, 'before': 2.0, 'known': 2.0, 'using': 1.0, 'liked': 1.0, 'carrier': 2.0, 'it': 3.0, 'she': 3.0, 'tried': 2.0, 'time': 1.0, 'so': 1.0, 'friends': 1.0, 'few': 1.0, 'days': 1.0, 'moms': 1.0, 'and': 6.0, 'really': 1.0, 'found': 1.0, 'that': 1.0, 'the': 6.0, 'is': 1.0, 'around': 1.0, 'more': 2.0, 'balance': 1.0, 'for': 2.0, 'actually': 1.0, 'dads': 1.0, 'who': 1.0, 'have': 2.0}
Word element => {'safe': 1.0, 'recommend': 1.0, 'better': 1.0, 'things': 1.0, 'see': 1.0, 'able': 1.0, 'while': 1.0, 'after': 1.0, 'lot': 1.0, 'bigger': 1.0, 'comfortable': 2.0, 'averaged': 1.0, 'an': 1.0, 'support': 1.0, 'built': 1.0, 'stimulated': 1.0, 'gets': 1.0, 'hugs': 1.0, 'your': 1.0, 'loading': 1.0, 'then': 1.0, 'curious': 1.0, 'have': 1.0, 'naturally': 1.0, 'if': 2.0, 'so': 3.0, 'purchase': 1.0, 'may': 1.0, 'visibility': 1.0, 'little': 3.0, 'very': 1.0, 'front': 3.0, 'is': 9.0, 'will': 2.0, 'infantino': 1.0, 'they': 1.0, 'means': 1.0, 'not': 4.0, 'than': 1.0, 'tend': 1.0, 'sized': 1.0, 'brands': 1.0, 'what': 1.0, 'both': 1.0, 'price': 1.0, 'but': 2.0, 'money': 3.0, 'them': 1.0, 'baby': 1.0, 'expensive': 1.0, 'for': 8.0, 'one': 3.0, 'heavier': 1.0, 'the': 12.0, 'it': 3.0, 'this': 2.0, 'found': 1.0, 'worth': 1.0, 'straps': 1.0, 'a': 11.0, 's': 1.0, 'when': 1.0, 'easily': 1.0, 'you': 2.0, 'balance': 1.0, 'chest': 1.0, 'other': 1.0, 'lumbar': 1.0, 'back': 3.0, 'carrier': 6.0, 'body': 1.0, 'which': 2.0, 'be': 3.0, 'all': 2.0, 'as': 6.0, 'to': 5.0, 'her': 2.0, 'good': 2.0, 'substitute': 1.0, 'get': 1.0, 'and': 1.0, 'that': 1.0, 'well': 1.0, 'has': 1.0, 'wide': 1.0, 'i': 2.0, 'two': 2.0, 'over': 1.0, 'child': 4.0, 'in': 4.0, 'snuggle': 1.0, 'definitely': 1.0, 'close': 2.0, 'there': 2.0}
Word element => {'on': 1.0, 'put': 1.0, 'comfortable': 1.0, 'd': 1.0, 'weight': 1.0, 'support': 1.0, 'nonwithstanding': 1.0, 'for': 2.0, 'pets': 1.0, 'designed': 1.0, 'fault': 1.0, 'that': 2.0, 'female': 1.0, 'well': 1.0, 'hair': 1.0, 'her': 1.0, 'spec': 1.0, '15': 1.0, 'short': 2.0, 'itself': 1.0, 'have': 2.0, 'ok': 1.0, 'i': 2.0, 'lb': 1.0, 'carrier': 3.0, 'this': 1.0, 'the': 3.0, 'shedding': 1.0, 'baby': 1.0, 'another': 1.0, 'lends': 1.0, 'and': 2.0, 'not': 2.0, 'me': 1.0, 'easy': 1.0, 'human': 1.0, 'as': 1.0, 'to': 3.0, 'look': 1.0, 'pet': 1.0, 'much': 1.0, 'better': 1.0, 'cage': 1.0, 'does': 1.0, 'than': 1.0, 'scary': 1.0, 'cat': 1.0, 'straight': 1.0, 'it': 3.0, 'she': 1.0, 'but': 2.0, 'can': 1.0, 'location': 1.0, 'don': 1.0, 'up': 1.0, 'there': 1.0, 'of': 1.0, 'application': 1.0, 'since': 1.0, 'trips': 1.0, 'at': 1.0, 's': 2.0, 'a': 1.0, 't': 1.0, 'we': 1.0, 'walk': 1.0, 'is': 5.0, 'like': 1.0, 'downside': 1.0}
Word element => {'california': 1.0, 'designed': 1.0, 'china': 1.0, 'made': 1.0, 'sized': 1.0, 'larger': 1.0, 'best': 1.0, 'works': 1.0, '12': 1.0, 'you': 1.0, 'whatever': 1.0, 'forcing': 1.0, 'piece': 1.0, 'sewed': 1.0, 'while': 1.0, 'hand': 1.0, 'stiffer': 1.0, 'stick': 2.0, 'quality': 1.0, 'nylon': 1.0, 'lose': 1.0, 'time': 1.0, 'when': 1.0, 'like': 1.0, 'only': 1.0, 'pretty': 1.0, 'babe': 1.0, '34': 1.0, 'anything': 1.0, 'used': 1.0, 'harder': 2.0, 'more': 2.0, 'two': 1.0, 'side': 1.0, 'alone': 1.0, 'buckles': 1.0, 'out': 3.0, 'left': 1.0, 'was': 2.0, 'come': 1.0, 'opinion': 1.0, 'disappointment': 1.0, 'weather': 1.0, 'flap': 1.0, 'making': 1.0, 'hood': 1.0, 'cheaper': 2.0, 'than': 3.0, 'child': 1.0, 'keys': 1.0, 'phone': 1.0, 'wearing': 1.0, 'carrying': 1.0, 'pocket': 2.0, 'which': 5.0, 'carry': 1.0, 'in': 7.0, 'back': 2.0, 'down': 1.0, 'padded': 1.0, 'pad': 1.0, 'waist': 1.0, 'comfortable': 2.0, 'due': 1.0, 'sturdy': 1.0, 'mention': 1.0, 'have': 4.0, 'but': 4.0, 'most': 1.0, 'touch': 1.0, 'also': 1.0, 'humble': 1.0, 'that': 5.0, 'held': 1.0, 'associated': 1.0, 'balance': 1.0, 'there': 6.0, 'moms': 1.0, 'for': 9.0, 'black': 2.0, 'health': 1.0, 'so': 5.0, 'age': 1.0, '8': 2.0, 'plastic': 1.0, 'months': 1.0, 'get': 3.0, 'infant': 3.0, 'though': 2.0, 'by': 1.0, '50': 1.0, 'round': 1.0, '18': 1.0, 'sleeping': 1.0, 'over': 1.0, 'small': 2.0, 'pounders': 1.0, 'quickly': 1.0, 'seem': 1.0, 'children': 1.0, 'grow': 1.0, 'length': 2.0, 'our': 2.0, '170': 1.0, 'fabric': 1.0, 'into': 3.0, '6': 1.0, 'their': 1.0, 'carriers': 2.0, 'bodies': 1.0, 'bib': 1.0, 'pound': 3.0, 'lbs': 3.0, 'clothes': 1.0, 'son': 1.0, 'both': 2.0, 'cons': 2.0, '130': 1.0, 'tempered': 1.0, 'protection': 1.0, 'of': 17.0, 'the': 32.0, 'vines': 1.0, 'including': 1.0, 'glacier': 1.0, 'good': 1.0, 'mom': 1.0, 'her': 3.0, 'wrote': 1.0, 'rn': 1.0, 'theboba': 1.0, 'this': 6.0, 'with': 6.0, 'feature': 1.0, 'or': 4.0, 'i': 8.0, 'seen': 1.0, 'ups': 1.0, 'pounds': 1.0, 'benefit': 1.0, 'husband': 1.0, 'versa': 1.0, 'say': 1.0, 'obvious': 1.0, 'can': 2.0, 'is': 15.0, 'at': 1.0, 'around': 2.0, 'each': 1.0, 'end': 1.0, 'will': 2.0, 'lining': 1.0, 'review': 2.0, 'reviews': 3.0, 'we': 2.0, '15': 1.0, 'take': 2.0, 'has': 1.0, 'close': 1.0, 'may': 1.0, 'are': 5.0, 'my': 4.0, 'ergo': 4.0, 'stars': 4.0, 'on': 9.0, 'lb': 1.0, 'too': 2.0, '3': 4.0, 'accommodate': 1.0, 'camel': 1.0, 'well': 1.0, 'boba': 3.0, 'some': 4.0, 'one': 2.0, '5': 3.0, 'theinfantino': 1.0, 'ouml': 1.0, 'instead': 1.0, 'might': 1.0, 'city': 1.0, 'features': 2.0, 'opinions': 1.0, 'lot': 1.0, 'haven': 1.0, 'carrier': 11.0, 'value': 1.0, 'm': 1.0, 's': 3.0, 'elasticity': 1.0, 'original': 1.0, 'ecosash': 1.0, 'vital': 1.0, 'pros': 2.0, 'takes': 1.0, 'a': 12.0, 'bloomin': 1.0, 'biggest': 1.0, 'suggest': 1.0, 'holds': 1.0, 'advertised': 1.0, 'thebabybj': 1.0, 'part': 1.0, 'baby': 7.0, 'classic': 1.0, 'bands': 1.0, 'them': 2.0, 'everything': 1.0, 'here': 2.0, 'strap': 1.0, 'put': 2.0, 'tighten': 1.0, 'its': 3.0, 'themselves': 1.0, 'drawbacks': 1.0, 'vice': 1.0, 'way': 1.0, 'ones': 1.0, 'all': 2.0, 'wallet': 1.0, 'other': 3.0, 'sleepy': 1.0, 'buckle': 1.0, 'an': 2.0, 'great': 1.0, 'differently': 2.0, 'built': 2.0, 'competitors': 1.0, 'babes': 1.0, 'long': 1.0, 'toddlers': 1.0, 'sizable': 1.0, 'structured': 1.0, 'intro': 1.0, 'general': 1.0, 'straps': 5.0, 'shaped': 1.0, 'wife': 1.0, 'needs': 1.0, 'these': 1.0, 'comes': 1.0, 'yay': 1.0, 'attachment': 1.0, 'front': 2.0, 'what': 1.0, 'surprised': 1.0, 'they': 1.0, 'save': 1.0, 're': 1.0, '4': 2.0, 'worth': 1.0, 'infantino': 3.0, 'please': 1.0, 'really': 3.0, 'thought': 1.0, 'it': 17.0, 'babies': 1.0, 'soft': 2.0, 'didn': 1.0, 't': 2.0, 'belt': 1.0, 'to': 14.0, 'right': 1.0, 'offers': 1.0, 'new': 1.0, 'from': 3.0, 'feels': 1.0, 'backs': 1.0, 'overlooked': 1.0, 'try': 1.0, 'price': 1.0, 'nice': 2.0, 'less': 1.0, 'as': 2.0, 'body': 4.0, 'money': 1.0, 'position': 1.0, 'believe': 1.0, 'toddler': 1.0, 'material': 1.0, 'runs': 1.0, 'and': 15.0, 'just': 2.0, 'tried': 2.0, 'think': 1.0, 'type': 1.0, 'many': 1.0, 'your': 1.0, 'quite': 1.0, 'spit': 1.0, 'no': 2.0, 'directions': 1.0, 'different': 2.0, 'not': 1.0, 'itself': 1.0, 'design': 1.0, 'connect': 1.0, '35': 2.0, 'extra': 3.0, 'elastic': 2.0, 'makes': 2.0, 'consolidating': 1.0, 'very': 3.0}
Word element => {'makes': 1.0, 'so': 1.0, 'register': 1.0, 'went': 1.0, 'when': 1.0, 'only': 1.0, 'gift': 1.0, 'since': 1.0, 'one': 2.0, 'happier': 1.0, 'even': 1.0, 'have': 1.0, 'would': 1.0, 'i': 2.0, 'top': 1.0, 'door': 1.0, 'little': 1.0, 'with': 2.0, 'version': 1.0, 'other': 1.0, 'arching': 1.0, 'amazon': 1.0, 'kids': 1.0, 'found': 1.0, 'wish': 1.0, 'car': 1.0, 'their': 1.0, 'but': 2.0, 'toys': 2.0, 'grandson': 1.0, 'of': 1.0, 'up': 2.0, 'size': 1.0, 'room': 2.0, 'is': 1.0, 'plenty': 1.0, 'on': 1.0, 'carried': 1.0, '3': 1.0, 'enough': 1.0, 'christmas': 1.0, 'it': 9.0, 'be': 1.0, 'wouldnt': 1.0, 'fact': 1.0, 'my': 1.0, 'and': 7.0, 'in': 2.0, 'fit': 2.0, 'for': 2.0, 'tree': 1.0, 'out': 1.0, 'ample': 1.0, 'was': 3.0, 'all': 1.0, 'to': 3.0, 'had': 2.0, 'did': 1.0, 'not': 1.0, 'overwhelm': 1.0, 'pieces': 1.0, 'were': 2.0, 'the': 7.0, 'good': 2.0, 'been': 1.0, 'that': 5.0, 'into': 2.0, 'about': 1.0, 'thing': 1.0, 'able': 1.0, 'present': 1.0, 'easy': 2.0, 'take': 2.0, 'down': 2.0, 'a': 2.0, 'we': 1.0, 'thrilled': 1.0, 'large': 1.0, 'worried': 1.0, 'by': 1.0, 'they': 1.0}
Word element => {'carriers': 1.0, 'standard': 1.0, 'consider': 1.0, 'blackfor': 1.0, 'rn': 1.0, 'used': 1.0, 'good': 1.0, 'find': 1.0, 'could': 1.0, 'likely': 1.0, 'since': 1.0, 'particular': 1.0, 'dads': 1.0, 'give': 1.0, 'piece': 1.0, 'without': 1.0, 'thick': 1.0, 'plus': 1.0, 'mess': 1.0, 'so': 2.0, 'gold': 1.0, 'should': 1.0, 'ugly': 1.0, 'people': 2.0, 'black': 1.0, 'plain': 1.0, 'side': 1.0, 'patterned': 1.0, 'panel': 1.0, 'reversible': 1.0, 'sort': 1.0, 'some': 3.0, 'shoulders': 3.0, 'hazard': 1.0, 'they': 7.0, 'ends': 1.0, 'was': 5.0, 'four': 2.0, 'crisscross': 1.0, 'lbs': 1.0, 'secure': 3.0, 'pretty': 3.0, 'to': 9.0, 'bottom': 1.0, 'little': 6.0, 'two': 2.0, 'had': 3.0, 'city': 1.0, 'tricky': 1.0, 'with': 5.0, 'must': 1.0, 'waist': 1.0, 'but': 4.0, 'shoulder': 1.0, 'isn': 1.0, 'those': 2.0, 'because': 5.0, 'that': 4.0, 'easily': 1.0, 'everywhere': 1.0, 'than': 3.0, 'do': 3.0, 'much': 1.0, 'once': 1.0, 'the': 27.0, 'ababybj': 1.0, 'sides': 2.0, 'loops': 1.0, 'put': 1.0, 'strap': 3.0, 'position': 1.0, 'bring': 1.0, 'behind': 3.0, 'about': 2.0, 'throw': 1.0, 'mean': 1.0, 'afraid': 1.0, 'for': 6.0, 'through': 2.0, 'fabric': 2.0, 'one': 7.0, 'try': 1.0, 'too': 1.0, 'be': 2.0, 'it': 22.0, 'thought': 2.0, 'this': 6.0, 'few': 1.0, 'first': 1.0, 'didn': 5.0, 'really': 5.0, 'hand': 2.0, 'straps': 5.0, 'carry': 3.0, 'yes': 1.0, 'see': 2.0, 'off': 2.0, 'tiny': 2.0, 'small': 2.0, 'fairly': 1.0, 't': 9.0, 'hanging': 2.0, 'as': 1.0, 'whole': 1.0, 'sit': 1.0, 'front': 7.0, 'what': 1.0, 'when': 2.0, 'out': 2.0, 'i': 22.0, 'feet': 1.0, 'tie': 2.0, 'ball': 1.0, 'facing': 2.0, 'ones': 1.0, 'all': 3.0, 'an': 1.0, 'other': 2.0, 'are': 3.0, 'my': 8.0, 'me': 2.0, 'backpack': 2.0, 'smaller': 2.0, 'has': 1.0, 'anyway': 1.0, 'use': 1.0, 'wash': 1.0, 'wide': 2.0, 'feel': 1.0, 'words': 1.0, 'on': 8.0, 'toddlers': 1.0, 'long': 1.0, 'over': 1.0, 'work': 2.0, 'at': 2.0, 'turn': 1.0, 'can': 1.0, 'is': 5.0, 'you': 6.0, 'down': 2.0, 'seem': 1.0, 'd': 1.0, 'annoyed': 1.0, 'like': 3.0, 'mesh': 1.0, 'back': 3.0, 'then': 3.0, 'we': 2.0, 'inside': 1.0, 'take': 1.0, 'star': 1.0, 'them': 3.0, 'extra': 1.0, 'next': 1.0, 'part': 1.0, 'designer': 1.0, 'baby': 7.0, 'splits': 1.0, 'slipping': 1.0, 'in': 6.0, 'terribly': 1.0, 'seat': 1.0, 's': 5.0, 'm': 1.0, 'hide': 1.0, 'time': 1.0, 'top': 1.0, 'did': 1.0, 'ouml': 1.0, 'lap': 1.0, 'were': 4.0, 'there': 2.0, 'somehow': 1.0, 'of': 7.0, 'even': 3.0, 'your': 4.0, 'where': 1.0, 'couldn': 1.0, 'dangling': 1.0, 'he': 1.0, 'necessary': 1.0, 'looked': 1.0, 'uncomfortable': 1.0, 'by': 1.0, 'though': 2.0, 'longer': 1.0, 'does': 1.0, 'hot': 1.0, 'have': 4.0, 'velcro': 2.0, 'gather': 1.0, 'don': 2.0, 'still': 3.0, 'better': 1.0, 'comes': 1.0, 'seemed': 1.0, 'sure': 1.0, 'would': 3.0, 'closure': 1.0, 'make': 3.0, 'poor': 1.0, 'mine': 2.0, 'broader': 1.0, 'interested': 1.0, '25': 1.0, 'around': 3.0, 'each': 1.0, 'how': 2.0, 'which': 1.0, 'more': 1.0, 'husband': 1.0, 'heavy': 1.0, 'now': 1.0, 'might': 3.0, 'carrier': 5.0, 'cloth': 1.0, 'going': 2.0, 'guy': 1.0, 'kept': 1.0, 'think': 2.0, 'kids': 2.0, 'keeping': 2.0, 'eye': 1.0, 'and': 16.0, 'tried': 2.0, 'just': 1.0, 'hands': 1.0, 'want': 1.0, 'free': 1.0, 'nice': 1.0, 'occasion': 1.0, 'big': 1.0, 'original': 1.0, 'reason': 1.0, 'a': 17.0, 'bag': 2.0, 'features': 1.0, 'fit': 2.0, 'easy': 1.0, 'up': 1.0, 'washing': 1.0, 'wad': 1.0, 'not': 1.0, 'clean': 1.0, 'get': 2.0, 'also': 1.0}
Word element => {'drawbacks': 1.0, 'enough': 1.0, 'price': 1.0, 'decent': 1.0, 'overall': 1.0, 'extra': 1.0, 'were': 1.0, 'pouch': 1.0, 'd': 1.0, 'women': 1.0, 'patterned': 1.0, 'would': 1.0, 'they': 1.0, 'spit': 1.0, 's': 1.0, 'interesting': 1.0, 'appealing': 1.0, 'very': 1.0, 'not': 2.0, 'there': 1.0, 'black': 2.0, 'solid': 1.0, 'turned': 1.0, 'reversible': 1.0, 'panel': 1.0, 'wipes': 1.0, 'neutral': 2.0, 'uncomfortable': 1.0, 'get': 1.0, 'might': 1.0, 'climate': 1.0, 'gender': 1.0, 'humid': 1.0, 'warm': 1.0, 'super': 1.0, 'thick': 1.0, 'fabric': 1.0, 'for': 8.0, 'complaint': 1.0, 'biggest': 1.0, 'wearing': 1.0, 'adjusted': 1.0, 'does': 1.0, 'this': 3.0, 'secure': 1.0, 'hide': 1.0, 'everything': 1.0, 'make': 1.0, 'rather': 1.0, 'like': 1.0, 'averse': 1.0, 'position': 1.0, 'comfortable': 2.0, 'you': 8.0, 'tied': 2.0, 'ends': 1.0, 'so': 1.0, 'can': 4.0, 'most': 1.0, 'but': 2.0, 'especially': 1.0, 'where': 1.0, 't': 1.0, 'fit': 2.0, 'don': 1.0, 'buckles': 3.0, 'element': 1.0, 'behind': 1.0, 'have': 3.0, 'great': 1.0, 'majority': 1.0, 'm': 1.0, 'in': 6.0, 'pretty': 1.0, 'to': 11.0, 'mei': 1.0, 'different': 1.0, 'rate': 1.0, 'carriers': 4.0, 'time': 3.0, 'much': 1.0, 'untied': 1.0, 'put': 2.0, 'adjust': 1.0, 'was': 1.0, 'prep': 1.0, 'slightly': 1.0, 'adult': 2.0, 'size': 1.0, 'your': 3.0, 'probably': 1.0, 'risk': 1.0, 'see': 1.0, 'a': 7.0, 'smaller': 1.0, 'use': 3.0, 'front': 3.0, 'as': 1.0, 'body': 4.0, 'good': 1.0, 'which': 1.0, 'men': 1.0, 'carrier': 6.0, 'top': 1.0, 'double': 1.0, 'feels': 1.0, 'allow': 1.0, 'from': 1.0, 'infantino': 1.0, 'today': 1.0, 'pros': 1.0, 'is': 5.0, 'more': 3.0, 'around': 2.0, 'longer': 1.0, 'of': 3.0, 'the': 21.0, 'and': 7.0, 'store': 1.0, 'sure': 1.0, 'market': 1.0, 'straps': 7.0, 'pull': 1.0, 'thought': 1.0, 'it': 14.0, 'tai': 1.0, 'range': 1.0, 'easier': 1.0, 'll': 1.0, 'while': 1.0, 'tie': 1.0, 'facing': 2.0, 'out': 1.0, 'i': 6.0, 'baby': 5.0, 'becomes': 1.0, 'however': 1.0, 'know': 1.0, 'found': 1.0, 'assemble': 1.0, 'than': 3.0, 'with': 4.0, 'dirt': 1.0, 'ecosash': 2.0, 'pricecons': 1.0, 'other': 1.0, 'them': 2.0, 'has': 3.0, 'leeway': 1.0, 'even': 1.0, 'weight': 1.0, 'on': 2.0, 'long': 1.0, 'every': 1.0, 'if': 4.0, 'diapers': 1.0, 'are': 1.0, 'framed': 1.0, 'could': 1.0, 'means': 1.0, 'will': 1.0, 'feature': 1.0, 'or': 5.0, 'need': 1.0, 'up': 1.0, 'affordable': 1.0, 'takes': 2.0, 'my': 1.0, 'me': 4.0, 'may': 1.0, 'because': 2.0, 'that': 4.0, 'pattern': 1.0, 'one': 2.0, 'rear': 1.0, 'lot': 1.0, 'second': 1.0, 'be': 6.0, 'nature': 1.0}
Word element => {'highly': 1.0, 'runs': 1.0, 'family': 1.0, 'be': 2.0, 'able': 1.0, 'new': 1.0, 'away': 1.0, 'bag': 1.0, 'handy': 1.0, 'easy': 1.0, 'most': 1.0, 'events': 1.0, 'far': 1.0, 'by': 1.0, 'carriers': 1.0, 'like': 1.0, 'items': 1.0, 'had': 1.0, 'will': 1.0, 'also': 2.0, 'secure': 1.0, 'in': 3.0, 'them': 1.0, 'baby': 2.0, 'carrier': 2.0, 'easier': 2.0, 'that': 1.0, 'tried': 1.0, 'things': 1.0, 'recommend': 1.0, 'store': 2.0, 'peanut': 1.0, 'expecting': 1.0, 'for': 1.0, 'one': 3.0, 'comfortable': 3.0, 'comes': 2.0, 'holds': 1.0, 'is': 6.0, 'second': 1.0, 'convenient': 1.0, 'with': 4.0, 'ways': 1.0, 'first': 1.0, 'it': 8.0, 'the': 6.0, 'are': 2.0, 'reviews': 1.0, 'and': 10.0, 'much': 1.0, 'do': 1.0, 'very': 2.0, 'other': 4.0, 'some': 1.0, 'already': 1.0, 'child': 2.0, 'close': 1.0, 'looking': 1.0, 'once': 2.0, 'of': 1.0, 'our': 1.0, 'to': 6.0, 'all': 2.0, 'small': 1.0, 'have': 1.0, 'isn': 1.0, 'difficult': 1.0, 'on': 3.0, 'make': 1.0, 'put': 3.0, 'infantino': 1.0, 'despite': 1.0, 'this': 3.0, 'perfect': 1.0, 'soft': 1.0, 'again': 1.0, 'when': 1.0, 'you': 1.0, 'walks': 1.0, 'ecosash': 1.0, 't': 1.0, 'we': 4.0, 'a': 2.0}
Word element => {'to': 2.0, 'seems': 1.0, 'it': 1.0, 'stick': 1.0, 'hair': 1.0, 'fuzz': 1.0, 'lint': 1.0, 'of': 1.0, 'piece': 1.0, 'every': 1.0, 'attractive': 1.0, 'but': 1.0, 'fabric': 1.0, 'the': 1.0, 'is': 1.0, 'feels': 1.0, 'heavy': 1.0, 'almost': 1.0, 'suede': 1.0, 'and': 1.0, 'like': 1.0}
Word element => {'delivery': 1.0, 'fast': 1.0, 'inside': 1.0, 're': 1.0, 'they': 1.0, 'are': 1.0, 'amazon': 1.0, 'instructions': 1.0, 'job': 1.0, 'heck': 1.0, 'ugly': 1.0, 'the': 4.0, 'worth': 1.0, 'carrier': 2.0, 'this': 1.0, 'seriously': 1.0, 'tried': 1.0, 'about': 1.0, 'just': 1.0, 'super': 1.0, 've': 1.0, 'on': 3.0, 'think': 1.0, 'daughter': 1.0, 'sturdy': 1.0, 'with': 1.0, 'older': 1.0, 'it': 2.0, 'looks': 1.0, 'is': 3.0, 'definitely': 1.0, 'mom': 1.0, 'described': 1.0, 'til': 1.0, 'exactly': 1.0, 'from': 1.0, 'like': 1.0, 'dad': 1.0, 'them': 1.0, 'baby': 1.0, 'lots': 1.0, 'versatile': 1.0, 'nice': 1.0, '2yrs': 1.0, '2mo': 1.0, 'tais': 1.0, 'long': 2.0, 'both': 1.0, 'good': 1.0, 'last': 1.0, 'her': 1.0, 'straps': 1.0, 'still': 1.0, 'fit': 1.0, 'for': 1.0, 'will': 2.0, 'its': 2.0, 'all': 1.0, 'as': 2.0, 'least': 1.0, 'to': 1.0, 'marked': 1.0, 'at': 1.0, 'carry': 1.0, 'old': 2.0, 'i': 3.0, 'my': 2.0, 'dd': 1.0, 'experience': 1.0, 'huge': 1.0, 'we': 1.0, 'froggy': 1.0, 'have': 2.0, 'of': 1.0, 'but': 1.0, 'mei': 1.0}
Word element => {'hopeful': 1.0, 'am': 1.0, 'but': 1.0, 'easier': 1.0, 'straps': 1.0, 'will': 2.0, 'where': 1.0, 'an': 1.0, 'at': 1.0, 'manuver': 1.0, 'is': 1.0, 'able': 1.0, 'have': 1.0, 'getting': 1.0, 'not': 1.0, 'me': 2.0, 'her': 4.0, 'on': 4.0, 'ends': 1.0, 'a': 1.0, 'instructions': 1.0, 'front': 1.0, 'allow': 1.0, 'following': 1.0, 'had': 1.0, 'to': 5.0, 'i': 6.0, 'old': 1.0, 'positions': 1.0, 'and': 4.0, 'tough': 1.0, 'bought': 1.0, 'be': 2.0, 'my': 4.0, 'allows': 1.0, 'this': 2.0, 'wear': 3.0, 'carrier': 1.0, 'back': 3.0, 'towards': 1.0, '7': 1.0, 'time': 1.0, 'away': 1.0, 'free': 1.0, 'wrap': 1.0, 'place': 1.0, 'the': 3.0, 'facing': 1.0, 'it': 1.0, 'month': 1.0, 'she': 2.0, 'baby': 1.0, 'age': 1.0, 'in': 1.0, 'bjorn': 1.0, 'which': 1.0, 'these': 1.0, 'lower': 1.0, 'both': 1.0, 'arms': 1.0, 'hope': 1.0, 'been': 1.0, 'that': 1.0, 'rather': 1.0, 'once': 1.0}
Word element => {'program': 1.0, 'amazon': 1.0, 'free': 1.0, 'received': 1.0, 'note': 1.0, 'from': 1.0, 'made': 1.0, 'wahm': 1.0, 'quality': 1.0, 'combined': 1.0, 'thebabywearer': 1.0, 'think': 1.0, 'vine': 1.0, 'safer': 1.0, 'learn': 2.0, 'starter': 1.0, 'good': 1.0, 'unusable': 1.0, 'make': 1.0, 'length': 1.0, 'features': 1.0, 'used': 1.0, 'money': 1.0, 'more': 1.0, 'tuck': 1.0, 'twist': 1.0, 'instead': 1.0, 'would': 4.0, 're': 1.0, 'support': 1.0, 'always': 1.0, 'back': 4.0, 'arms': 2.0, 'under': 4.0, 'shoulders': 1.0, 'instructions': 1.0, 'tied': 3.0, 'might': 1.0, 'woman': 1.0, 'out': 1.0, 'enjoyed': 1.0, 'not': 3.0, 'carrying': 1.0, 'cross': 4.0, 'wearing': 2.0, 'clearly': 1.0, 'thing': 2.0, 'first': 1.0, 'few': 1.0, 'this': 5.0, 've': 2.0, 'favorite': 1.0, 'be': 4.0, 'it': 14.0, 'wear': 1.0, 'mei': 6.0, 'common': 1.0, 'double': 1.0, 'carrier': 8.0, 'sling': 1.0, 'pocket': 2.0, 'bow': 1.0, 'soft': 1.0, 'skin': 1.0, 'things': 1.0, 'some': 2.0, 'never': 1.0, 'on': 6.0, 'although': 1.0, 'long': 1.0, 'overall': 1.0, 'issue': 1.0, 'they': 3.0, 'avoid': 1.0, 'like': 1.0, 'which': 4.0, 'the': 44.0, 'youtube': 1.0, 'slings': 3.0, 'difficult': 1.0, 'recalled': 1.0, 'much': 2.0, 'behind': 1.0, 'structured': 1.0, 'satin': 1.0, 'straps': 7.0, 'ring': 1.0, 'is': 10.0, 'at': 1.0, 'that': 7.0, 'because': 2.0, 'tie': 7.0, 'recommend': 1.0, 'infantino': 2.0, 'appreciate': 1.0, 'find': 2.0, 'very': 7.0, 'actually': 1.0, 'color': 1.0, 'price': 2.0, 'such': 1.0, 'opinion': 2.0, 'labels': 1.0, 'ribcage': 1.0, 'recall': 1.0, 'videos': 1.0, 'have': 4.0, 'i': 14.0, 'babywearing': 1.0, 'well': 2.0, 'carriers': 3.0, 'their': 1.0, 'should': 1.0, 's': 9.0, 'above': 1.0, 't': 1.0, 'bag': 2.0, 'a': 18.0, 'informativecons': 1.0, 'unnecessary': 1.0, 'small': 3.0, 'kinds': 1.0, 'bring': 2.0, 'ergo': 1.0, 'don': 1.0, 'super': 1.0, 'wraps': 1.0, 'able': 2.0, 'often': 1.0, 'get': 1.0, 'left': 1.0, 'market': 1.0, 'years': 1.0, 'maybe': 1.0, 'supportive': 1.0, 'shoulder': 1.0, 'limit': 1.0, 'no': 1.0, 'after': 1.0, 'for': 9.0, 'moms': 1.0, 'when': 1.0, 'pouch': 1.0, 'voluntarily': 1.0, 'curve': 1.0, 'said': 1.0, 'reversible': 1.0, 'in': 16.0, 'low': 1.0, 'tais': 2.0, 'community': 1.0, 'say': 1.0, 'warned': 1.0, 'dangerous': 1.0, 'kind': 1.0, 'top': 1.0, 'are': 7.0, 'my': 4.0, 'facing': 1.0, 'meant': 1.0, 'may': 1.0, 'booklet': 1.0, 'me': 3.0, 'you': 6.0, 'owned': 1.0, 'there': 3.0, 'front': 3.0, 'fact': 1.0, 'baby': 17.0, 'panels': 3.0, 'totally': 1.0, 'them': 12.0, 'slingrider': 1.0, 'has': 1.0, 'larger': 1.0, 'was': 2.0, 'tai': 4.0, 'lbs': 1.0, 'had': 1.0, 'as': 5.0, 'annoying': 2.0, 'future': 1.0, 'body': 1.0, 'an': 1.0, 'to': 10.0, 'com': 1.0, 'method': 2.0, 'pretty': 1.0, 'fabric': 1.0, 'into': 1.0, 'comparable': 1.0, 'particular': 1.0, 'all': 7.0, 'way': 2.0, 'pros': 2.0, 'invest': 1.0, 'cons': 1.0, 'going': 1.0, 'stiff': 1.0, 'repeatedly': 1.0, 'heavier': 1.0, 'helpful': 1.0, 'below': 2.0, 'almost': 2.0, 'max': 1.0, 'weight': 2.0, 'extra': 1.0, '35': 1.0, 'we': 1.0, 'big': 1.0, 'nice': 1.0, 'neutral': 1.0, 'large': 1.0, 'detachable': 2.0, 'making': 1.0, 'hood': 1.0, 'somewhat': 1.0, 'bulk': 1.0, 'etc': 1.0, 'and': 18.0, 'just': 1.0, 'uncomfortable': 3.0, 'see': 2.0, 'buying': 1.0, 'panel': 2.0, 'fuss': 1.0, 'identifying': 1.0, 'cpsc': 1.0, 'so': 2.0, 'unimportant': 1.0, 'one': 1.0, 'got': 1.0, 'about': 1.0, 'instruction': 1.0, 'extended': 1.0, 'over': 4.0, 'waist': 3.0, 'how': 2.0, 'where': 2.0, 'your': 9.0, 'better': 3.0, 'unsafe': 1.0, 'comes': 1.0, 'limits': 1.0, 'makes': 1.0, 'if': 3.0, 'touch': 1.0, 'popular': 1.0, 'or': 3.0, 'bulky': 1.0, 'properly': 2.0, 'really': 2.0, 'legs': 2.0, 'then': 2.0, 'cheap': 1.0, 'only': 2.0, 'enough': 1.0, 'around': 4.0, 'seen': 2.0, 'liked': 1.0, 'tying': 2.0, 'petite': 2.0, 'with': 7.0, 'picture': 2.0, 'am': 1.0, 'of': 14.0, 'even': 1.0, 'but': 3.0, 'knot': 1.0}
Word element => {'it': 1.0, 'higher': 1.0, 'comfortable': 2.0, 'seems': 1.0, 'carried': 1.0, 'compartments': 1.0, 'is': 2.0, 'easy': 1.0, 'product': 1.0, 'to': 2.0, 'very': 1.0, 'attachable': 1.0, 'and': 1.0, 'adjust': 1.0, 'baby': 3.0, 'good': 3.0, 'carry': 1.0, 'felt': 1.0, 'more': 1.0, 'are': 1.0, 'hood': 1.0, 'the': 6.0}
Word element => {'he': 1.0, 'once': 1.0, 'better': 1.0, 'use': 1.0, 'though': 1.0, 'return': 1.0, 'overall': 1.0, 'looking': 1.0, 'silly': 1.0, 'bit': 1.0, 'ties': 1.0, 'base': 1.0, 'down': 1.0, 'like': 1.0, 'straight': 1.0, 'comfortable': 1.0, 'feel': 1.0, 'baby': 2.0, 'hates': 1.0, 'will': 1.0, 'secure': 1.0, 'work': 1.0, 'can': 1.0, 'but': 2.0, 'feels': 1.0, 'because': 1.0, 'maybe': 2.0, 'carrier': 2.0, 'my': 1.0, 'the': 5.0, 'm': 1.0, 'i': 5.0, 'sure': 1.0, 'far': 1.0, 'it': 5.0, 'wish': 1.0, 'this': 1.0, 'when': 1.0, 'am': 1.0, 'correctly': 1.0, 'adjusting': 1.0, 'not': 3.0, 'me': 2.0, 'too': 1.0, 'and': 2.0, 'legs': 2.0, 'are': 2.0, 'spread': 1.0, 'if': 1.0, 'apart': 1.0, 'long': 1.0, 'wide': 2.0, 'to': 3.0, 'all': 1.0, 'his': 1.0, 'girl': 1.0, 'bigger': 1.0, 'at': 2.0, 'other': 1.0, 'carriers': 1.0, 't': 1.0, 'we': 1.0, 'could': 1.0, 'a': 2.0, 's': 2.0, 'allow': 1.0, 'hang': 1.0, 'one': 1.0, 'is': 2.0, 'quite': 1.0}
Word element => {'sooner': 1.0, 'bought': 1.0, 'had': 1.0, 'only': 1.0, 'happy': 1.0, 'easily': 2.0, 'because': 2.0, 'that': 1.0, 'so': 2.0, 'very': 1.0, 'more': 2.0, 'babies': 1.0, 'can': 4.0, 'is': 5.0, 'at': 1.0, 'while': 2.0, 'was': 3.0, 'wear': 1.0, 'see': 1.0, 'slip': 3.0, 'overall': 1.0, 'they': 1.0, 'noticed': 1.0, 'on': 3.0, 'long': 2.0, 'tip': 1.0, 'lock': 1.0, 'straps': 4.0, 'of': 5.0, 'the': 15.0, 'feels': 2.0, 'me': 2.0, 'may': 1.0, 'are': 3.0, 'my': 2.0, 'you': 8.0, 'think': 2.0, 'carry': 3.0, 'in': 7.0, 'slipping': 1.0, 'back': 4.0, 'most': 1.0, 'odd': 1.0, 'now': 1.0, 'wish': 1.0, 'figure': 1.0, 'as': 6.0, 'bags': 1.0, 'to': 12.0, 'pretty': 1.0, 'year': 1.0, 'video': 1.0, 'for': 7.0, 'fabric': 1.0, 'with': 5.0, 'using': 2.0, 'switched': 1.0, 'wide': 1.0, 'off': 2.0, 'picked': 1.0, 'sizing': 1.0, 'this': 8.0, 'up': 1.0, 'knowing': 1.0, 'baby': 3.0, 'others': 2.0, 'many': 1.0, 'about': 2.0, 'size': 1.0, 'shoulder': 2.0, 'don': 2.0, 'undo': 1.0, 'but': 3.0, 'knots': 1.0, 'i': 27.0, 'well': 2.0, 'one': 4.0, 'months': 1.0, 'found': 1.0, 'have': 8.0, 'likes': 2.0, 't': 3.0, 'fit': 1.0, 'shoulders': 1.0, 'last': 1.0, '22': 1.0, 'tei': 1.0, 'her': 2.0, 'must': 1.0, 'change': 1.0, 'whose': 1.0, 'stick': 1.0, 'lifetime': 1.0, 'weight': 1.0, 'too': 3.0, 'lb': 1.0, 'go': 1.0, 'mobi': 3.0, 'does': 2.0, 'wrap': 2.0, 'feel': 6.0, 'padded': 1.0, 'if': 3.0, 'great': 1.0, 'agree': 1.0, 'toddler': 1.0, 'material': 2.0, 'it': 14.0, 'be': 4.0, 'secure': 2.0, 'break': 1.0, 'do': 4.0, 'much': 3.0, 'could': 2.0, 'will': 1.0, 'might': 1.0, 'a': 11.0, 'm': 2.0, 'doesn': 1.0, 's': 3.0, 'sides': 1.0, 'transition': 1.0, 'cargo': 1.0, 'larger': 1.0, 'raters': 1.0, 'loved': 1.0, 'sure': 1.0, 'other': 1.0, 'mei': 1.0, 'd': 1.0, 'switch': 1.0, 'style': 1.0, 'carriers': 2.0, 'want': 1.0, 'precious': 1.0, 'world': 1.0, 'or': 1.0, '20': 1.0, 'all': 3.0, 'way': 5.0, 'than': 1.0, 'carrying': 1.0, 'wearing': 1.0, 'able': 1.0, 'wraps': 1.0, 'like': 4.0, 'fine': 2.0, 'though': 2.0, 'after': 1.0, 'easier': 1.0, 'll': 1.0, 'out': 1.0, 'front': 2.0, 'what': 1.0, 'when': 2.0, 'those': 3.0, 'instructs': 1.0, 'people': 2.0, 'from': 1.0, 'who': 1.0, 'supportive': 1.0, 'complicated': 1.0, 'not': 3.0, 'these': 1.0, 'really': 3.0, 'sorts': 1.0, 'smaller': 1.0, 'compared': 1.0, 'knot': 1.0, 'plastic': 1.0, 'how': 1.0, 'years': 1.0, 'our': 1.0, 'broken': 1.0, 'also': 1.0, 'us': 1.0, 'worry': 1.0, 're': 1.0, 'million': 1.0, 'missing': 1.0, 'taking': 1.0, 'resize': 1.0, 'forever': 1.0, 'pouch': 3.0, 'were': 1.0, 'just': 3.0, 'and': 9.0, 'complaining': 1.0, 'she': 4.0, 'make': 1.0, 'reversible': 1.0, 'velcro': 1.0, 'least': 1.0, 'around': 1.0, 'crisscross': 1.0, 'four': 1.0, 'kind': 1.0, 'top': 1.0, 'there': 3.0, 'keeping': 1.0, 'anything': 1.0, 'nice': 1.0, 'big': 1.0, 'burp': 1.0, 'cloth': 1.0, 'which': 1.0}
Word element => {'little': 1.0, 'fair': 1.0, 'than': 1.0, 'policy': 1.0, 'amazon': 1.0, 'one': 1.0, 'day': 1.0, 'for': 3.0, 'out': 1.0, 'risk': 1.0, 'works': 1.0, 'try': 2.0, 'are': 1.0, 'they': 1.0, 'just': 1.0, 'few': 1.0, 'if': 2.0, 'see': 2.0, 'would': 1.0, 'it': 2.0, 'heads': 1.0, 'own': 1.0, 'support': 1.0, 'not': 2.0, 'price': 1.0, 'years': 1.0, 'their': 2.0, 'what': 1.0, 'either': 1.0, 'had': 1.0, 'return': 1.0, 'cons': 1.0, 'good': 1.0, 'carriers': 2.0, 'stylish': 1.0, 'have': 3.0, 'that': 1.0, 'babies': 2.0, 'starter': 1.0, 'mom': 1.0, 's': 1.0, 'could': 1.0, 'a': 9.0, 'possible': 1.0, 'seem': 1.0, 'middle': 1.0, 'let': 1.0, 'or': 1.0, 'i': 2.0, 'several': 1.0, 'comfort': 1.0, 'then': 1.0, 'far': 1.0, 'you': 3.0, 'idea': 1.0, 'road': 1.0, 'fits': 1.0, 'my': 2.0, '7': 1.0, 'in': 3.0, 'item': 1.0, 'also': 1.0, 'seems': 1.0, 'baby': 1.0, 'wore': 1.0, 'quality': 1.0, 'book': 1.0, 'to': 5.0, 'all': 1.0, 'as': 2.0, 'friends': 1.0, 'so': 2.0, 'this': 3.0, 'with': 1.0, 'carrier': 2.0, 'nice': 2.0, 'willing': 1.0, 'which': 1.0, 'giving': 1.0, 'be': 2.0, 'of': 1.0, 'plus': 1.0, 'heavier': 1.0, 'the': 2.0, 'line': 1.0, 'more': 1.0, 'is': 3.0, 'design': 1.0, 'never': 1.0}
Word element => {'bed': 1.0, 'her': 1.0, 'once': 1.0, 'of': 1.0, 'out': 2.0, 'get': 1.0, 'toddler': 1.0, 'do': 1.0, 'need': 1.0, 'i': 1.0, 'does': 1.0, 'lower': 1.0, 't': 1.0, 'a': 1.0, 'my': 1.0, 'fits': 1.0, 'pali': 1.0, 'an': 3.0, 'it': 5.0, 'this': 1.0, 'how': 1.0, 'did': 1.0, 'know': 1.0, 'just': 1.0, 'by': 1.0, 'given': 1.0, 'fit': 1.0, 'for': 1.0, 'hasn': 1.0, 'old': 1.0, 'was': 1.0, 'crib': 1.0, 'not': 1.0, 'give': 1.0, 'has': 1.0, 'the': 2.0, 'same': 1.0, 'us': 1.0, 'sliding': 1.0, 'bought': 1.0, 'one': 1.0, 'mechanism': 1.0, 'to': 2.0, 'as': 1.0, 'would': 1.0, 'drop': 1.0, 'is': 1.0, 'bit': 1.0, 'friends': 1.0, 'so': 1.0, 'fallen': 1.0, 'easily': 1.0, 'you': 1.0, 'side': 1.0, 'protection': 1.0, 'but': 2.0, 'can': 2.0, 'use': 1.0, 'what': 1.0, 'either': 1.0, 'in': 2.0, 'up': 1.0, 'or': 1.0, 'perfectly': 1.0, 'down': 1.0, 'both': 1.0, 'that': 1.0, 'configuration': 1.0}
Word element => {'seat': 1.0, 'car': 1.0, 's': 1.0, 'needed': 1.0, 'amenities': 1.0, 'clear': 1.0, 'the': 4.0, 'less': 1.0, 'all': 1.0, 'go': 1.0, 'than': 1.0, 'stroller': 1.0, 'instructions': 1.0, 'on': 1.0, 'parents': 1.0, 'for': 3.0, 'time': 1.0, 'has': 1.0, 'of': 1.0, 'first': 1.0, 'only': 1.0, 'and': 1.0, 'difficulty': 1.0, 'was': 1.0, 'assembly': 1.0, 'mechanism': 1.0}
Word element => {'baby': 1.0, 'for': 1.0, 'and': 1.0, 'also': 1.0, 'nice': 1.0, 'soft': 1.0, 'blanketcolors': 1.0, 'fabric': 1.0, 'that': 1.0, 'pleasant': 1.0, 'decals': 1.0, 'sturdy': 1.0, 'soothing': 1.0, 'are': 2.0, 'the': 2.0, 'with': 1.0, 'on': 1.0}
Word element => {'it': 1.0, 'this': 1.0, 'for': 1.0, 'you': 1.0, 'if': 1.0, 'wrap': 1.0, 'awaddle': 1.0, 'a': 2.0, 'like': 1.0, 'cozy': 2.0, 'soft': 1.0, 'wash': 1.0, 'but': 1.0, 'are': 2.0, 'not': 1.0, 'because': 1.0, 'is': 1.0, 'aden': 1.0, 'instead': 1.0, 'up': 1.0, 'of': 2.0, 'wraps': 1.0, 'isn': 1.0, 'they': 2.0, 'i': 1.0, 'cute': 1.0, 'do': 2.0, 'and': 3.0, 'fooled': 1.0, 'difference': 1.0, 'anais': 1.0, 'price': 1.0, 'don': 1.0, 'bought': 1.0, 'be': 1.0, 'looking': 1.0, 'size': 1.0, 'ones': 1.0, 'the': 4.0, 'these': 1.0, 't': 2.0, 'great': 1.0}
Word element => {'colorado': 1.0, 'made': 1.0, 'bed': 2.0, 'for': 1.0, 'that': 1.0, 'into': 1.0, 'section': 1.0, 'get': 1.0, 'and': 3.0, 'being': 2.0, 'i': 2.0, 'step': 1.0, 'night': 1.0, 'bought': 1.0, 'stool': 1.0, 'this': 1.0, 'it': 2.0, 'come': 1.0, 'not': 1.0, 'price': 1.0, 'c': 1.0, 'at': 1.0, 'able': 2.0, 'sits': 1.0, 'great': 1.0, 'reach': 1.0, 'the': 5.0, 'because': 1.0, 'having': 1.0, 'in': 2.0, 'u': 1.0, 'like': 1.0, 'teeth': 1.0, 's': 2.0, 'a': 1.0, 'to': 3.0, 'our': 3.0, 'sink': 1.0, 'high': 1.0, 'up': 1.0, 'fact': 1.0, 'bathroom': 1.0, 'works': 1.0, 'her': 1.0, 'time': 1.0, 'will': 1.0, 'after': 1.0, 'definately': 2.0, 'worth': 1.0, 'brush': 1.0, 'handy': 1.0, 'when': 1.0, 'daughter': 1.0, 'is': 1.0, 'own': 1.0}
Word element => {'better': 1.0, 'improvement': 1.0, 'could': 1.0, 'use': 2.0, 'still': 1.0, 'and': 1.0, 'item': 1.0, 'a': 1.0, 'came': 2.0, 'on': 1.0, 'second': 1.0, 's': 1.0, 'off': 2.0, 'day': 1.0, 'great': 1.0, 'the': 6.0, 'it': 3.0, 'tried': 1.0, 'i': 3.0, 'vertical': 1.0, 'when': 1.0, 'to': 1.0, 'place': 1.0, 'love': 1.0, 'handle': 1.0, 'quality': 1.0, 'zipper': 4.0, 'but': 2.0, 'put': 1.0, 'back': 1.0, 'in': 1.0, 'loop': 1.0, 'of': 1.0}
Word element => {'bigger': 1.0, 'cushion': 1.0, 'more': 1.0, 'find': 1.0, 'mats': 1.0, 'recommend': 1.0, 'not': 1.0, 'nice': 1.0, 'which': 1.0, 'dark': 1.0, 'brown': 1.0, 'off': 1.0, 'tiles': 4.0, 'square': 1.0, 'set': 5.0, 'would': 3.0, 'was': 3.0, 'padded': 1.0, 'back': 1.0, 'only': 1.0, 'with': 3.0, 'buying': 1.0, 'been': 2.0, 'have': 1.0, 'larger': 1.0, 'and': 9.0, 'combine': 1.0, 'could': 1.0, 'small': 1.0, 'a': 5.0, 't': 3.0, 'going': 1.0, 'way': 2.0, 'note': 1.0, 'an': 1.0, 'for': 1.0, 'color': 1.0, 'big': 1.0, 'mat': 4.0, 'can': 1.0, 'so': 1.0, 'make': 2.0, 'surprisingly': 1.0, '3': 1.0, 'when': 2.0, 'roll': 1.0, 'alone': 1.0, 'head': 1.0, 'to': 4.0, 'up': 2.0, 'isn': 2.0, 'floors': 1.0, 'is': 7.0, 'these': 1.0, 'comes': 1.0, 'second': 1.0, 'had': 1.0, 'configure': 1.0, 'each': 1.0, 'skinner': 1.0, 'the': 10.0, 'longer': 1.0, 'down': 1.0, 'wide': 1.0, 'long': 1.0, 'peeling': 1.0, 'infant': 1.0, '6': 1.0, 'he': 1.0, 'this': 2.0, 'handy': 1.0, 'unfortunately': 1.0, 'baby': 1.0, 'like': 2.0, 'also': 1.0, 'my': 3.0, 'able': 1.0, 'you': 1.0, 'starts': 1.0, 'tadpole': 1.0, 'matches': 1.0, 'ended': 1.0, 'laying': 1.0, 'that': 5.0, 'because': 1.0, 'create': 1.0, 'son': 2.0, 'lifts': 1.0, '9': 1.0, 'starting': 1.0, 'it': 2.0, 'finish': 1.0, 'his': 1.0, 'well': 1.0, 'i': 7.0, 'fast': 1.0, 'hurts': 1.0, 'too': 2.0, 'one': 2.0, 'rolling': 1.0, 'crying': 1.0, '2': 1.0, 'thing': 1.0, 'about': 1.0, 'did': 1.0, 'something': 1.0, 'buy': 1.0, 'looked': 1.0, 'but': 1.0, 'hardwood': 2.0, 'floor': 1.0, 'didn': 1.0, 'fine': 1.0, 'reviews': 1.0, '18': 1.0, 'said': 1.0}
Word element => {'of': 1.0, 'waste': 1.0, 'but': 1.0, 'bad': 1.0, 'thin': 1.0, 'ad': 1.0, 'sorry': 1.0, 'the': 2.0, 'falls': 1.0, 'crappy': 1.0, 'apart': 1.0, '3': 1.0, 'weeks': 1.0, 'after': 1.0, 'review': 1.0, 'for': 1.0, 'trash': 1.0, 'in': 1.0, 'put': 1.0, 'money': 1.0, 'it': 1.0}
Word element => {'along': 1.0, 'replacements': 1.0, 'buy': 1.0, 'so': 1.0, 'them': 1.0, 'had': 1.0, 've': 1.0, 'on': 1.0, 'little': 1.0, 'couple': 2.0, 'go': 1.0, 'a': 3.0, 't': 2.0, 'the': 4.0, 'money': 1.0, 'don': 2.0, 'to': 3.0, 'any': 1.0, 'replace': 1.0, 'chewing': 1.0, 'leak': 2.0, 'of': 1.0, 'spend': 1.0, 'months': 1.0, 'one': 2.0, 'straw': 1.0, 'i': 3.0, 'this': 1.0, 'truly': 1.0, 'it': 3.0, 'with': 3.0, 'sucking': 1.0, 'other': 1.0, 'have': 1.0, 'these': 1.0, 'already': 1.0, 'done': 1.0, 'and': 2.0, 'trying': 1.0, 'giving': 1.0, 'tons': 1.0, 'kinds': 1.0, 'that': 2.0, 'is': 2.0, 'ones': 1.0, 'yes': 1.0, 'kind': 1.0, 'flip': 1.0, 'stars': 1.0, 'top': 1.0, 'lid': 1.0, 'only': 3.0, 'try': 1.0, 'works': 1.0, 'free': 1.0, 'reason': 1.0, 'lasts': 1.0, 'times': 1.0, 'am': 1.0, 'less': 1.0, '5': 1.0, 'find': 1.0, 'than': 1.0, 'because': 1.0, 'silicone': 1.0}
Word element => {'go': 1.0, 'on': 1.0, 'keep': 1.0, 'it': 1.0, 'making': 1.0, 'down': 1.0, 'folds': 1.0, 'countless': 1.0, 'through': 1.0, 'i': 1.0, 'old': 1.0, 'to': 3.0, 'and': 1.0, 'straw': 1.0, 'month': 1.0, 'gone': 1.0, 'have': 2.0, '21': 1.0, 'a': 1.0, 'are': 1.0, 'my': 1.0, 'these': 1.0, 'the': 2.0, 'cups': 1.0, 'by': 1.0, 'them': 1.0, 'clean': 2.0, 'easy': 3.0, 'use': 1.0, 'far': 1.0, 'favorite': 1.0}
Word element => {'cup': 1.0, 'the': 3.0, 'great': 2.0, 'of': 2.0, 'both': 1.0, 'cleaner': 1.0, 'option': 1.0, 'trouble': 1.0, 'but': 1.0, 'water': 1.0, 'is': 1.0, '18': 1.0, 'cap': 1.0, 'flipping': 1.0, 'for': 1.0, 'love': 1.0, 'straw': 1.0, 'old': 2.0, 'esp': 1.0, 'i': 2.0, '4': 1.0, 'on': 1.0, 'year': 1.0, 'her': 1.0, 'clean': 1.0, 'we': 1.0, 'a': 5.0, 'and': 3.0, 'younger': 1.0, 'have': 1.0, 'this': 1.0, 'month': 1.0, 'it': 1.0, 'with': 1.0, 'durable': 1.0, 'has': 1.0, 'bottle': 1.0, 'bit': 1.0, 'an': 1.0, 'own': 1.0, 'alternative': 1.0, 'overall': 1.0, 'easy': 1.0, 'to': 2.0, 'one': 1.0, 'bought': 1.0, 'them': 1.0, 'sippy': 1.0}
Word element => {'garbage': 1.0, 'i': 1.0, 'so': 1.0, 'they': 1.0, 'as': 1.0, 'straw': 1.0, 'and': 2.0, 'daughter': 1.0, 'myself': 1.0, 't': 1.0, 'unable': 1.0, 'anything': 1.0, 'is': 1.0, '16': 1.0, 'well': 1.0, 'months': 1.0, 'tried': 1.0, 'the': 1.0, 'my': 1.0, 'wasn': 1.0, 'able': 1.0, 'to': 1.0, 'get': 1.0}
Word element => {'bottle': 1.0, 'liquid': 2.0, 'to': 1.0, 'tend': 1.0, 'splash': 1.0, 'much': 1.0, 'don': 1.0, 'you': 1.0, 'reasonably': 1.0, 'design': 1.0, 'in': 2.0, 'straw': 3.0, 'for': 1.0, 'is': 2.0, 'are': 1.0, 'open': 1.0, 'ok': 1.0, 'spill': 1.0, 'work': 1.0, 'back': 1.0, 't': 1.0, 'the': 4.0, 'these': 1.0, 'makes': 1.0, 'they': 2.0, 'deep': 1.0, 'out': 1.0, 'cleaning': 2.0, 'difficult': 1.0, 'do': 1.0, 'and': 2.0, 'getting': 1.0, 'when': 1.0, 'cups': 1.0, 'removal': 1.0, 'after': 1.0, 'well': 1.0, 'funny': 1.0, 'a': 1.0, 'with': 1.0, 'puzzle': 1.0}
Word element => {'annunciate': 1.0, 'ability': 1.0, 'muscles': 1.0, 'jaw': 1.0, 'his': 2.0, 'works': 1.0, 'really': 1.0, 'these': 1.0, 'great': 1.0, 'the': 4.0, 'with': 1.0, 'buying': 1.0, 'of': 2.0, 'bulk': 1.0, 'up': 1.0, 'convenience': 1.0, 'never': 1.0, 'style': 1.0, 'alone': 1.0, 'it': 3.0, 'and': 6.0, 'very': 1.0, 'color': 1.0, 'son': 1.0, 'difficult': 1.0, 'talk': 1.0, 'was': 1.0, 'store': 1.0, 'lot': 1.0, 'sippy': 1.0, 'let': 1.0, 'in': 1.0, 'kids': 1.0, 'perfect': 1.0, 'helped': 1.0, 'are': 1.0, 'for': 1.0, 'younger': 1.0, 'my': 1.0, 'requires': 1.0, 's': 1.0, 'a': 1.0, 'sucking': 1.0, 'so': 1.0, 'delay': 1.0, 'mouth': 1.0, 'because': 1.0, 'find': 1.0, 'power': 1.0, 'drink': 1.0, 'to': 3.0, 'cups': 1.0, 'all': 1.0, 'liquid': 1.0, 'leaks': 1.0, 'is': 1.0, '3': 1.0, 'has': 2.0, 'speech': 1.0}
Word element => {'if': 1.0, 'so': 1.0, 'up': 1.0, 'don': 1.0, 'child': 2.0, 'toddler': 1.0, 'spurts': 1.0, 'there': 2.0, 'barely': 1.0, 'times': 1.0, 'could': 2.0, 's': 3.0, 'a': 6.0, 'plastic': 2.0, 'washing': 1.0, 'ribbed': 1.0, 'we': 2.0, 'take': 1.0, 'they': 4.0, 'suck': 1.0, 'in': 1.0, 'is': 1.0, 'at': 2.0, 'munchkin': 1.0, 'from': 2.0, 'difficult': 1.0, 'way': 1.0, 'son': 1.0, 'returned': 1.0, 'refund': 1.0, 'was': 1.0, 'and': 6.0, 'toss': 1.0, 'walmart': 1.0, 'my': 2.0, 'these': 2.0, 'bought': 1.0, 'replace': 1.0, 'cup': 4.0, 'cups': 4.0, 'to': 4.0, 'horrible': 1.0, 'as': 1.0, 'aged': 1.0, 'very': 1.0, 'straw': 5.0, 'for': 4.0, 'stiff': 1.0, 'though': 1.0, 'needed': 1.0, 'luckily': 1.0, 'had': 1.0, 'either': 1.0, 't': 1.0, 'fairly': 1.0, 'this': 1.0, 'pain': 1.0, 'liquid': 2.0, 'top': 1.0, 'even': 1.0, 'used': 1.0, 'drink': 2.0, 'recommend': 1.0, 'full': 1.0, 'were': 1.0, 'pieces': 1.0, 'multiple': 1.0, 'it': 4.0, 'him': 1.0, 'just': 1.0, 'get': 1.0, 'found': 1.0, 'easy': 2.0, 'out': 2.0, 'husband': 1.0, 'also': 2.0, 'tried': 1.0, 'i': 4.0, 'well': 1.0, 'do': 1.0, 'pack': 1.0, 'not': 1.0, 'those': 1.0, 'have': 3.0, 'the': 13.0, 'of': 2.0, 'been': 1.0, 'playtex': 1.0, 'with': 1.0, 'straws': 1.0, 'like': 1.0, 'but': 2.0, 'best': 1.0, 'no': 1.0, 'years': 1.0, 'plus': 1.0, 'are': 3.0, 'first': 1.0, 'adult': 1.0, 're': 2.0, 'inexpensive': 1.0}
Word element => {'them': 1.0, 'four': 1.0, 'ordered': 1.0, 'knew': 1.0, 'this': 1.0, 'wish': 1.0, 'use': 1.0, 'clean': 1.0, 'are': 1.0, 'of': 2.0, 'out': 1.0, 'liquid': 1.0, 'impossible': 1.0, 'only': 1.0, 'its': 1.0, 'that': 2.0, 'get': 3.0, 'and': 3.0, 'like': 1.0, 'someones': 1.0, 'old': 1.0, '4': 1.0, 'i': 7.0, 'son': 2.0, '10': 1.0, 'hard': 2.0, 'from': 2.0, 'compared': 1.0, 'straw': 3.0, 'figured': 1.0, 'liked': 1.0, 'ones': 1.0, 'owned': 1.0, 'my': 2.0, 'lid': 2.0, 'thats': 1.0, 'so': 1.0, 'have': 1.0, 'small': 1.0, 'munchkin': 1.0, 'really': 1.0, 'plain': 1.0, 'sames': 1.0, 'with': 1.0, 'he': 1.0, 'it': 5.0, 'month': 1.0, 'the': 4.0, 'without': 1.0, 'just': 2.0, 'all': 1.0, 'any': 1.0, 'cups': 2.0, 'to': 4.0, '12': 1.0, 'one': 1.0, 'months': 1.0, 'on': 1.0, 'major': 1.0, 'now': 2.0, 'hates': 1.0, 'whenever': 1.0, 'before': 1.0, 'drinks': 1.0, 'could': 1.0, 'a': 4.0, 'we': 1.0, 'sound': 1.0, 'choking': 1.0, 'problem': 1.0}
Word element => {'anymore': 1.0, 'won': 1.0, 'bummed': 1.0, 'little': 1.0, 'a': 1.0, 'never': 1.0, 'before': 1.0, 'exact': 1.0, 'purchased': 1.0, 'defect': 1.0, 'of': 1.0, 'some': 1.0, 't': 1.0, 'these': 1.0, 'the': 2.0, 'but': 1.0, 'belive': 1.0, 'in': 1.0, 'straws': 1.0, 'buy': 1.0, 'i': 2.0, 'kind': 1.0, 'had': 3.0, 'to': 3.0, 'through': 1.0, 'manufacturing': 1.0, 'strange': 1.0, 'have': 1.0, 'suck': 1.0, 'anything': 1.0, 'm': 1.0, 'cups': 1.0, 'kids': 1.0, 'too': 1.0, 'this': 1.0, 'hard': 1.0, 'probably': 1.0, 'issue': 1.0, 'and': 2.0, 'get': 1.0, 'them': 1.0}
Word element => {'money': 1.0, 'were': 1.0, 'almost': 1.0, 'worst': 1.0, 'do': 1.0, 'impossible': 1.0, 'rim': 1.0, 'your': 1.0, 'ever': 1.0, 'they': 2.0, 'these': 1.0, 'the': 2.0, 'yet': 1.0, 'cups': 1.0, 'to': 1.0, 'suck': 1.0, 'liquid': 1.0, 'out': 1.0, 'are': 1.0, 'leaked': 1.0, 'of': 1.0, 'around': 1.0, 'waste': 1.0, 'absolute': 1.0, 'not': 1.0}
Word element => {'properly': 1.0, 'doesn': 1.0, 'then': 1.0, 'twisted': 1.0, 'sufficiently': 1.0, 'haven': 1.0, 'if': 1.0, 'give': 1.0, 'do': 1.0, 'for': 1.0, 'proof': 1.0, 'around': 1.0, 'he': 2.0, 'it': 4.0, 'will': 1.0, 'his': 1.0, 'long': 1.0, 'before': 1.0, 'mostly': 1.0, 'on': 3.0, 'valve': 1.0, 'these': 1.0, 'the': 6.0, 'now': 1.0, 'test': 1.0, 'son': 1.0, 'flexed': 1.0, 'best': 1.0, 'but': 1.0, '2': 1.0, 'can': 1.0, 'into': 1.0, 'loves': 1.0, 'that': 2.0, 'sippy': 2.0, 'are': 1.0, 'straw': 3.0, 'often': 1.0, 'my': 1.0, 'cup': 1.0, 'find': 2.0, 'to': 5.0, 'cups': 1.0, 'i': 6.0, 'guess': 1.0, 'straws': 1.0, 'suck': 2.0, 'they': 1.0, 'don': 1.0, 'last': 1.0, 'and': 1.0, 'soon': 1.0, 'transition': 1.0, 'be': 1.0, 'him': 2.0, 'go': 1.0, 't': 3.0, 's': 3.0, 'a': 2.0, 'rammed': 1.0, 'convenient': 1.0, 'just': 1.0, 'time': 1.0, 'so': 1.0, 'have': 2.0, 'chewing': 1.0, 'leak': 1.0}
Word element => {'through': 1.0, 'liquid': 1.0, 'no': 1.0, 'though': 1.0, 'straw': 1.0, 'and': 1.0, 'flip': 1.0, 'likes': 1.0, 'because': 1.0, 'toddler': 1.0, 'nice': 1.0, 'comes': 1.0, 'wanted': 1.0, 'to': 1.0, 'be': 2.0, 'the': 1.0, 'great': 1.0, 'these': 1.0, 'they': 1.0, 'i': 2.0, 'feature': 1.0, 'cups': 1.0, 'thought': 1.0, 'close': 1.0, 'would': 1.0, 'my': 1.0, 're': 1.0, 'useless': 1.0}
Word element => {'them': 1.0, 'can': 1.0, 'older': 1.0, 'get': 1.0, 'no': 2.0, 'open': 1.0, 'as': 1.0, 'year': 1.0, 'werea': 1.0, 'so': 1.0, 'spils': 1.0, 'feel': 1.0, 'old': 1.0, 'i': 1.0, 'too': 1.0, 'cups': 2.0, 'mess': 1.0, 'these': 2.0, 'they': 4.0, 'better': 1.0, 'are': 1.0, 'my': 1.0, 'were': 1.0, 'grandbabies': 2.0, 'because': 1.0, 'much': 1.0, 'to': 1.0, 'than': 1.0, 'speech': 1.0, 'sipy': 1.0, 'of': 1.0, 'love': 1.0, 'switched': 1.0, 'over': 1.0, 'both': 2.0, 'before': 1.0}
Word element => {'smaller': 1.0, 'now': 1.0, 'we': 1.0, 'thus': 1.0, 'replace': 1.0, 'bought': 1.0, 'this': 1.0, 'matt': 1.0, 'plat': 1.0, 'cut': 1.0, 'or': 1.0, 'tile': 1.0, 'shapes': 1.0, 'comfortable': 1.0, '12': 2.0, 'tiles': 1.0, 'brands': 1.0, 'stupidly': 1.0, 'like': 2.0, 'i': 6.0, 'circle': 1.0, 'satisfied': 1.0, 'room': 1.0, 'mostly': 1.0, 'other': 3.0, 'play': 3.0, 'lots': 1.0, 'doesn': 1.0, 'on': 1.0, 'pieces': 1.0, 'typically': 1.0, 'easy': 1.0, 'area': 2.0, 'get': 1.0, 'left': 1.0, 'outs': 1.0, 'small': 2.0, 'a': 4.0, 'my': 1.0, 'block': 2.0, 'another': 1.0, 'kids': 1.0, 'were': 1.0, 'together': 1.0, 'and': 3.0, 'letters': 1.0, 'but': 1.0, 'for': 3.0, 'to': 6.0, 'hoping': 1.0, 'of': 2.0, 'the': 9.0, 'nicely': 1.0, 'put': 1.0, 'floor': 1.0, 'have': 5.0, 'blends': 1.0, 'sets': 1.0, 'it': 4.0, 'with': 3.0, 'decor': 1.0, 'living': 1.0, 'are': 2.0, 'difficult': 1.0, 'clean': 1.0, 'than': 1.0, 'blocks': 3.0, 'way': 1.0, 'return': 1.0, 'many': 1.0, 'cracks': 1.0, 'by': 1.0, 'am': 2.0, 'finish': 1.0, 'that': 3.0, 'easily': 1.0, 'starts': 1.0, 'you': 1.0, 'too': 1.0, 'one': 1.0, 'came': 1.0, 'in': 4.0, 'patch': 1.0, 'peeled': 1.0, 'peel': 2.0, 'matts': 1.0, 'off': 2.0, 't': 2.0, 'rest': 1.0, 'will': 2.0, 'also': 1.0, 'exposed': 1.0, 'little': 1.0, 'fingers': 1.0, 'covered': 1.0, 'toy': 1.0, 'dirt': 1.0, 'best': 1.0, 'them': 1.0, 'either': 1.0, 'fyi': 1.0, 'if': 3.0, 'bigger': 1.0, 'didn': 1.0, 'provides': 1.0, 'measure': 1.0}
Word element => {'didn': 1.0, 'might': 1.0, 'things': 1.0, 'who': 1.0, 'or': 1.0, 'don': 1.0, 'you': 2.0, 'if': 1.0, 'so': 1.0, 'makes': 1.0, 'time': 2.0, 'apart': 2.0, 'have': 1.0, 'likes': 2.0, 'my': 1.0, 't': 2.0, 'mess': 1.0, 'the': 1.0, 'huge': 1.0, 'cats': 2.0, 'started': 1.0, 'beautiful': 1.0, 'to': 2.0, 'looks': 1.0, 'this': 1.0, 'it': 4.0, 'me': 1.0, 'and': 2.0, 'again': 1.0, 'then': 1.0, 'a': 3.0, 'using': 1.0, 'for': 3.0, 'work': 1.0, 'toddler': 2.0, 'but': 2.0, 'scratching': 1.0, 'which': 1.0, 'take': 2.0, 'post': 1.0}
Word element => {'small': 1.0, 'i': 2.0, 'would': 3.0, 'not': 1.0, 'good': 1.0, 'as': 2.0, 'like': 1.0, 'is': 1.0, 'children': 1.0, 'it': 1.0, 'this': 1.0, 'if': 1.0, 'suggest': 1.0, 'for': 2.0, 'thought': 1.0, 'something': 2.0, 'looking': 1.0, 'kid': 1.0, 'a': 1.0, 'little': 1.0, 'more': 1.0, 'be': 1.0, 'product': 1.0, 'friendly': 1.0, 'you': 1.0}
Word element => {'sticker': 1.0, 'off': 1.0, 'peel': 1.0, 'starting': 1.0, 'did': 1.0, 'the': 1.0, 't': 2.0, 'corners': 1.0, 'like': 2.0, 'wasn': 2.0, 'nice': 1.0, 'pink': 1.0, 'very': 2.0, 'a': 2.0, 'daughter': 1.0, 'mats': 1.0, 'liked': 1.0, 'for': 1.0, 'in': 1.0, 'my': 1.0, '5': 1.0, 'find': 1.0, 'mat': 2.0, 'most': 1.0, 'got': 1.0, 'play': 2.0, 'month': 1.0, 'durable': 1.0, 'this': 1.0, 'it': 3.0, 'old': 1.0, 'i': 3.0, 'were': 1.0, 'that': 2.0, 'our': 1.0, 'living': 1.0, 'room': 1.0, 'time': 1.0, 'and': 3.0, 'do': 1.0, 'sit': 1.0, 'tummy': 1.0, 'to': 2.0, 'was': 1.0}
Word element => {'an': 1.0, 'cushion': 1.0, 'enough': 1.0, 're': 2.0, 'they': 1.0, 'able': 1.0, 'that': 1.0, 'sq': 2.0, 'get': 1.0, 'you': 2.0, '20': 1.0, 'disappointed': 1.0, 'be': 1.0, 'actually': 1.0, 'for': 2.0, 'to': 4.0, 'have': 1.0, 'small': 1.0, 'walk': 1.0, 'walking': 1.0, 'entirely': 1.0, 'adult': 1.0, 'mat': 3.0, 'price': 1.0, 'protect': 2.0, 'crawling': 1.0, '12': 1.0, 'months': 1.0, 'crawl': 1.0, 'fall': 1.0, 'around': 1.0, 'is': 4.0, '24': 2.0, 'padding': 1.0, 'buy': 2.0, 'on': 3.0, 'your': 2.0, 'soft': 1.0, 'this': 2.0, 'it': 2.0, 'even': 3.0, 'wouldn': 1.0, 'try': 1.0, 'do': 1.0, 'too': 1.0, 'play': 2.0, 'and': 5.0, 'not': 1.0, 'me': 1.0, 'same': 1.0, 'if': 2.0, 'very': 1.0, 'ft': 2.0, 'thin': 1.0, 'glass': 1.0, 'believe': 1.0, 'the': 3.0, 'falling': 1.0, 'step2': 1.0, 'or': 2.0, 'let': 1.0, 'head': 1.0, 'alone': 1.0, 'ahead': 1.0, 'baby': 2.0, 'over': 1.0, 'child': 2.0, 'don': 1.0, 'though': 1.0, 'could': 1.0, 'a': 3.0, 's': 2.0, 't': 2.0, 'go': 1.0}
Word element => {'on': 1.0, 'than': 1.0, 'better': 1.0, 'tiles': 1.0, 'larger': 1.0, 'has': 1.0, 'when': 1.0, 'before': 1.0, 'product': 1.0, 'similar': 1.0, 'and': 1.0, 'a': 2.0, 'covers': 1.0, 'tried': 1.0, 'the': 2.0, 'other': 1.0, 'we': 1.0, 'you': 2.0, 'compare': 1.0, 'amazon': 1.0, 'is': 1.0, 'price': 1.0, 'pay': 1.0, 'alternatives': 1.0, 'one': 1.0, 'for': 1.0, 'value': 1.0, 'area': 1.0, 'this': 3.0, 'it': 1.0}
Word element => {'infant': 1.0, 'my': 1.0, 'considering': 1.0, 'even': 1.0, 'satisfied': 1.0, 'and': 2.0, 'hour': 1.0, 'sun': 1.0, 'set': 1.0, 'ordinary': 1.0, 'out': 3.0, 'just': 2.0, 'an': 1.0, 'smell': 2.0, 'did': 1.0, 'however': 1.0, 'this': 1.0, 'im': 1.0, 'absolutely': 1.0, 'thin': 1.0, 'improvement': 1.0, 'off': 2.0, 'that': 1.0, 'bit': 1.0, 'so': 1.0, 'after': 1.0, 'small': 1.0, 'more': 2.0, 'is': 2.0, 'padding': 1.0, 'side': 1.0, 'top': 2.0, 'anything': 1.0, 'scratches': 1.0, 'how': 2.0, 'becomes': 1.0, 'i': 5.0, 'tried': 1.0, 'very': 2.0, 'of': 1.0, 'skeptical': 1.0, 'it': 5.0, 'true': 1.0, 'ordering': 1.0, 'negative': 1.0, 'not': 1.0, 'recommend': 1.0, 'was': 2.0, 'layer': 1.0, 'reviews': 1.0, 'gone': 1.0, 'about': 3.0, 'the': 9.0, 'scratch': 2.0, 'as': 1.0, 'to': 3.0, 'all': 1.0, 'active': 1.0, 'nothing': 1.0, 'bad': 1.0, 'air': 1.0, 'in': 1.0, 'brown': 1.0, 'has': 2.0, 'like': 1.0, 'reading': 1.0, 'manufacturer': 1.0, 'cannot': 1.0, 'a': 3.0, 'see': 1.0, 'corner': 1.0, 'new': 1.0, 've': 1.0, 'would': 1.0, 'be': 1.0, 'but': 1.0, 'wooden': 1.0, 'maybe': 1.0, 'purchasing': 1.0, 'made': 1.0, 'for': 1.0, 'effect': 1.0, 'significant': 1.0}
Word element => {'floor': 1.0, 'floors': 1.0, 'wood': 1.0, 'has': 1.0, 'way': 1.0, 'of': 1.0, 'roll': 1.0, 'money': 1.0, 'can': 1.0, 'apt': 1.0, 'sister': 1.0, 'mat': 1.0, 'out': 2.0, 'medium': 1.0, 'so': 1.0, 'friends': 1.0, 'hope': 1.0, 'pingko': 1.0, 'day': 1.0, 'spit': 1.0, 'peel': 1.0, 'with': 2.0, 'crawl': 1.0, 'big': 1.0, 'bubble': 1.0, 'up': 3.0, 'and': 3.0, 'getting': 1.0, 'every': 1.0, 'playmat': 1.0, 'negative': 1.0, 'small': 1.0, 'order': 1.0, 'is': 2.0, 'save': 1.0, 'my': 3.0, 'the': 3.0, 'thing': 1.0, 'about': 1.0, 'started': 1.0, 'baby': 2.0, 'after': 1.0, 'ended': 1.0, 'she': 1.0, 'it': 3.0, 'this': 3.0, 'newphew': 2.0, 'first': 1.0, 'better': 1.0, 'true': 1.0, 'totally': 1.0, 'you': 1.0, 'would': 1.0, 'need': 1.0, 'works': 1.0, 'its': 1.0, '7months': 1.0, 'space': 1.0, 'at': 2.0, 'as': 1.0, 'to': 3.0, 'least': 2.0, 'your': 1.0, 'on': 2.0, '3': 1.0, 'packs': 1.0, 'product': 1.0, 'for': 2.0, 'a': 3.0, 'limited': 1.0, 'enough': 1.0, 'area': 1.0, 'i': 1.0, 'care': 1.0}
Word element => {'opened': 1.0, 'could': 1.0, 'but': 1.0, 'set': 1.0, 'when': 1.0, 'angry': 1.0, '16': 1.0, 'to': 1.0, 'was': 2.0, 'because': 1.0, 'not': 2.0, '21': 1.0, 'cover': 2.0, 'such': 1.0, 'ft': 2.0, 'needed': 1.0, 'down': 1.0, 'does': 1.0, 'i': 3.0, 'playmat': 1.0, 'it': 5.0, 'this': 1.0, 'return': 1.0, 'a': 2.0, 'unhappy': 1.0, 'covers': 1.0, 'ripoff': 1.0, 'barely': 1.0, 'larger': 1.0, 'area': 1.0, 'sq': 2.0, 'and': 1.0, 'very': 2.0}
Word element => {'her': 3.0, 'catch': 1.0, 'sure': 1.0, 'to': 3.0, 'had': 1.0, 'was': 1.0, 'i': 2.0, 'by': 1.0, 'have': 1.0, 'tummy': 1.0, 'hardwood': 2.0, 'time': 1.0, 'we': 2.0, 'a': 2.0, 'floor': 3.0, 'too': 1.0, 'tough': 1.0, 'play': 1.0, 'and': 1.0, 'away': 1.0, 'my': 1.0, 'rolled': 1.0, 'she': 2.0, 'needed': 1.0, 'baby': 1.0, 'whenever': 1.0, 'colors': 1.0, 'with': 1.0, 'this': 1.0, 'over': 1.0, 'make': 1.0, 'on': 2.0, 'for': 2.0, 'looked': 1.0, 'bang': 1.0, 'second': 1.0, 'd': 1.0, 'head': 1.0, 'provides': 1.0, 'protection': 1.0, 'the': 5.0, 'without': 1.0, 'if': 1.0, 'being': 1.0, 'hurt': 1.0, 'are': 1.0, 'since': 1.0, 'adorable': 1.0}
Word element => {'by': 1.0, 'those': 1.0, 'with': 1.0, 'problem': 1.0, 'have': 1.0, 'didn': 1.0, 'out': 2.0, 'taken': 1.0, 'be': 1.0, 'can': 1.0, 'they': 1.0, 'shapes': 1.0, '34': 2.0, 'along': 1.0, 'tape': 1.0, 'popping': 1.0, 'so': 1.0, 'packing': 1.0, 'thing': 1.0, 'whole': 1.0, 'flipped': 1.0, 'finally': 1.0, 'seams': 1.0, 'i': 3.0, 'save': 1.0, 'mat': 1.0, 'still': 1.0, 'carpet': 1.0, 'the': 8.0, 'over': 1.0, 'up': 1.0, 'of': 2.0, 'much': 1.0, 'look': 1.0, 'spit': 1.0, 'put': 2.0, 'on': 1.0, 'from': 1.0, 'accident': 1.0, 'left': 1.0, 'area': 1.0, 'together': 2.0, 'foam': 2.0, 'disasters': 1.0, 'this': 1.0, 'down': 1.0, 'is': 1.0, 'pretty': 1.0, 'to': 3.0, 'our': 2.0, 'easier': 1.0, 'pushing': 1.0, 'though': 1.0, 'colors': 1.0, 'abc': 1.0, 'a': 1.0, 't': 1.0, 's': 1.0, 'squares': 2.0, 'easily': 1.0, 'you': 1.0, 'keep': 1.0, 'at': 1.0, 'come': 1.0, 'bright': 1.0, 'print': 1.0, 'see': 1.0, 'primary': 1.0, 'minutes': 1.0, 'mats': 1.0, 'than': 1.0, 'usually': 1.0, '10': 1.0, 'apart': 1.0, 'and': 1.0, 'play': 1.0, 'too': 1.0, 'after': 1.0, 'baby': 1.0, 'them': 2.0, 'every': 1.0}
Word element => {'interests': 1.0, 'your': 1.0, 'custom': 1.0, 'fun': 1.0, 'head': 1.0, 'several': 1.0, 'sets': 2.0, 'climb': 1.0, 'kept': 1.0, 'also': 1.0, 'from': 1.0, 'son': 1.0, 'obnoxious': 1.0, 'together': 1.0, 'larger': 1.0, 'large': 1.0, 'small': 1.0, 'have': 1.0, 'these': 1.0, 'the': 2.0, 'pattern': 1.0, 'play': 1.0, 'and': 3.0, 'they': 1.0, 'area': 1.0, 'learned': 1.0, 'create': 1.0, 'as': 1.0, 'all': 1.0, 'to': 3.0, 'our': 2.0, 'of': 1.0, 'for': 1.0, 'love': 1.0, 'this': 1.0, 'a': 1.0, 'we': 1.0, 's': 1.0, 'fall': 1.0, 'is': 1.0, 'injuries': 1.0, 'thick': 1.0, 'he': 1.0, 'how': 1.0, 'colors': 1.0, 'are': 1.0, 'not': 1.0, 've': 1.0, 'super': 1.0, 'i': 1.0, 'different': 1.0, '2': 2.0, 'work': 1.0}
Word element => {'around': 1.0, 'rolling': 1.0, 'head': 1.0, 'hurting': 1.0, 'hard': 1.0, 'from': 1.0, 'girl': 1.0, 'living': 1.0, 'knees': 1.0, 'out': 1.0, 'use': 2.0, 'gym': 1.0, 'playmat': 1.0, 'floors': 2.0, 'enjoy': 1.0, 'have': 2.0, 's': 1.0, 'we': 1.0, 'play': 1.0, 'very': 1.0, 'both': 1.0, 'her': 3.0, 'tile': 1.0, 'down': 1.0, 'pieces': 1.0, 'in': 2.0, 'also': 1.0, 'she': 1.0, 'kneel': 1.0, 'room': 2.0, 'bedroom': 1.0, 'cushioning': 1.0, 'great': 1.0, 'hardwood': 1.0, 'for': 3.0, 'some': 1.0, 'of': 2.0, 'under': 1.0, 'matches': 1.0, 'our': 1.0, 'as': 1.0, 'to': 3.0, 'my': 1.0, 'i': 1.0, 'on': 1.0, 'put': 1.0, 'take': 1.0, 'baby': 2.0, 'helps': 1.0, 'swing': 1.0, 'picture': 1.0, 'us': 1.0, 'taking': 1.0, 'area': 1.0, 'when': 2.0, 'am': 1.0, 'pleased': 1.0, 'keep': 1.0}
Word element => {'surface': 1.0, 'would': 1.0, 'a': 1.0, 'assume': 1.0, 'i': 1.0, 'out': 1.0, 'pieces': 1.0, 'and': 1.0, 's': 1.0, 'under': 1.0, 'better': 1.0, 'keep': 1.0, 'to': 2.0, 'hard': 1.0, 'it': 2.0, 'this': 1.0, 'chair': 1.0, 'my': 1.0, 'the': 3.0, 'usually': 1.0, 'bought': 1.0, 'eats': 1.0, 'we': 1.0, 'when': 1.0, 'pop': 1.0, 'where': 1.0, 'okay': 1.0, 'table': 1.0, 'she': 2.0, 'protect': 1.0, 'carpet': 2.0, 'on': 3.0, 'works': 1.0, 'work': 1.0, 'walks': 1.0, 'toddler': 1.0, 'but': 1.0}
Word element => {'doesn': 1.0, 'one': 1.0, 'bought': 1.0, 'though': 1.0, 'then': 1.0, 'puzzle': 1.0, 'with': 1.0, 'secondary': 1.0, 'older': 1.0, 'are': 1.0, 'good': 2.0, 'suppose': 1.0, 'they': 2.0, 'time': 1.0, 'pieces': 2.0, 'enjoy': 1.0, 'pull': 1.0, 're': 2.0, 'it': 6.0, 'well': 1.0, 't': 1.0, 'we': 2.0, 'a': 3.0, 's': 1.0, 'i': 4.0, 'that': 2.0, 'their': 1.0, 'mat': 2.0, 'as': 2.0, 'to': 4.0, 'all': 2.0, 'and': 3.0, 'playing': 1.0, 'the': 4.0, 'll': 2.0, 'until': 1.0, 'feel': 1.0, 'every': 1.0, 'think': 2.0, 'on': 1.0, 'gums': 1.0, 'while': 1.0, 'but': 1.0, 'when': 1.0, 'twins': 2.0, 'you': 1.0, 'squares': 1.0, 'oh': 1.0, 'give': 1.0, 'those': 1.0, 'fall': 1.0, 'apart': 3.0, 'want': 1.0, 'come': 2.0, 'move': 1.0, 'my': 1.0, 'cushy': 1.0, 'another': 2.0, 'edge': 1.0, 'room': 1.0, 'love': 3.0, 'stars': 1.0, 'keeping': 1.0, 'out': 1.0, 'teething': 1.0, 'start': 1.0}
Word element => {'right': 1.0, 'them': 1.0, 'on': 1.0, 'like': 1.0, 'head': 1.0, 'from': 1.0, 'her': 2.0, 'keep': 1.0, 'enough': 1.0, 'floor': 1.0, 'material': 1.0, 'able': 1.0, 'we': 2.0, 'not': 1.0, 'just': 1.0, 'work': 1.0, 'but': 1.0, 'chew': 1.0, 'bit': 1.0, 'a': 1.0, 'cracking': 1.0, 'the': 4.0, 'wonder': 1.0, 'yet': 1.0, 'is': 2.0, 'fine': 1.0, 'price': 1.0, 'about': 1.0, 'baby': 1.0, 'been': 1.0, 'they': 1.0, 'has': 1.0, 'to': 3.0, 'it': 2.0, 'pieces': 1.0, 'and': 2.0}
Word element => {'lol': 1.0, 'one': 1.0, 'you': 1.0, 'filling': 1.0, 'at': 1.0, 'deal': 1.0, 'not': 1.0, 'h': 1.0, 'mat': 1.0, 'had': 1.0, 'to': 2.0, 'grey': 1.0, 'been': 1.0, 'all': 1.0, 'have': 1.0, 'except': 1.0, 'pattern': 1.0, 'pictured': 1.0, 'exactly': 1.0, 'it': 1.0, 'looked': 1.0, 'and': 1.0, 'packages': 1.0, 'big': 1.0, 'as': 1.0, 'job': 1.0, 'good': 1.0, 'that': 1.0, 'really': 1.0, 'is': 1.0, 'the': 4.0, 'my': 1.0, 'i': 1.0, 'square': 1.0, 'when': 1.0, 'person': 1.0, 'received': 1.0, 'in': 1.0, 'package': 1.0, 'a': 2.0, 'but': 1.0, 'above': 1.0, 'quality': 1.0, 'blue': 1.0, 'dark': 1.0, 'should': 1.0}
Word element => {'like': 1.0, 'in': 1.0, 'labeled': 1.0, 'properly': 1.0, 'didn': 1.0, 'been': 1.0, 'wish': 1.0, 'but': 1.0, 'cute': 1.0, 'buy': 1.0, 'i': 4.0, 'when': 1.0, 'said': 1.0, 'mats': 1.0, 'for': 1.0, 'rest': 1.0, 'years': 1.0, 'safe': 1.0, 'babies': 1.0, 'had': 1.0, 'was': 1.0, 'read': 1.0, 'description': 1.0, 'because': 1.0, 'purchased': 1.0, 'this': 1.0, 'it': 4.0, '4': 1.0, 'months': 1.0, 's': 1.0, 'and': 1.0, 'of': 1.0, 'up': 1.0, 'clearly': 1.0, 'arrived': 1.0, 't': 1.0, 'the': 4.0, 'label': 1.0, '3': 1.0}
Word element => {'and': 1.0, 'really': 1.0, 'however': 1.0, 'what': 1.0, 'on': 1.0, 'is': 2.0, 'nice': 1.0, 'play': 1.0, 'comfy': 1.0, 'this': 1.0, 'except': 1.0, 'i': 1.0, 'than': 1.0, 'thought': 1.0, 'it': 3.0, 'was': 1.0, 'would': 1.0, 'to': 1.0, 'product': 1.0, 'be': 1.0, 'step': 1.0, 'bigger': 1.0}
Word element => {'loose': 1.0, 'after': 1.0, 'part': 1.0, '4': 1.0, 'stars': 1.0, 'they': 1.0, 'because': 1.0, 'baby': 1.0, 'few': 1.0, 'design': 1.0, 'gave': 1.0, 'for': 1.0, 'love': 1.0, 'only': 1.0, 'it': 1.0, 'the': 2.0, 'my': 1.0, 'i': 2.0, 'took': 1.0, 'inside': 1.0, 'out': 1.0, 'a': 1.0, 'times': 1.0, 'got': 1.0}
Word element => {'square': 1.0, 'cover': 1.0, 'two': 1.0, 'up': 1.0, 'picked': 1.0, 'playroom': 2.0, 'in': 2.0, 'enjoying': 1.0, 'footage': 1.0, 'really': 1.0, 'that': 1.0, 'son': 1.0, 'little': 1.0, 'his': 2.0, 'does': 1.0, 'frisbees': 1.0, 'wipe': 1.0, 'to': 2.0, 'throwing': 1.0, 'easy': 1.0, 'but': 1.0, 'than': 1.0, 'thick': 1.0, 'sets': 1.0, 'picking': 1.0, 'enjoy': 1.0, 'stars': 1.0, 're': 1.0, 'my': 1.0, 'more': 1.0, 'the': 1.0, 'and': 2.0, 'like': 1.0, 'nice': 1.0, 'clean': 1.0, 'out': 1.0, 'them': 2.0, 'we': 2.0, 'other': 1.0}
Word element => {'someone': 1.0, 'would': 1.0, 'color': 1.0, 'blues': 1.0, 'side': 1.0, 'many': 1.0, 'too': 1.0, 'call': 1.0, 'pattern': 1.0, 'fit': 1.0, 'not': 2.0, 'did': 1.0, 'received': 1.0, 'that': 1.0, 'mat': 1.0, 'on': 1.0, 'colors': 1.0, 'i': 5.0, 'missing': 1.0, 'given': 1.0, 'mine': 1.0, 'and': 3.0, 'foam': 1.0, 'like': 2.0, 'very': 1.0, 'the': 6.0, 'this': 1.0, 'correct': 1.0, 'different': 1.0, 'are': 1.0, 'colonial': 1.0, 'shown': 1.0, 'arrived': 1.0, 'in': 1.0, 'light': 1.0, 'thickness': 1.0, 'dark': 3.0, 'to': 1.0, 'was': 2.0, 'beige': 1.0, 'quality': 1.0, 'blue': 2.0, 'squares': 1.0}
Word element => {'area': 1.0, 'addition': 1.0, 'a': 1.0, 'corner': 1.0, 'nursery': 1.0, 'tummy': 1.0, 'size': 1.0, 'and': 2.0, 'colors': 1.0, 'mat': 1.0, 'cute': 1.0, 'is': 1.0, 'time': 1.0, 'on': 1.0, 'great': 1.0, 'the': 3.0, 'my': 1.0, 'for': 1.0, 'love': 1.0, 'perfect': 1.0, 'i': 1.0, 'play': 1.0, 'daughters': 1.0, 'her': 1.0, 'does': 1.0, 'of': 1.0, 'she': 1.0, 'to': 1.0, 'its': 1.0, 'this': 1.0}
Word element => {'down': 1.0, 'excited': 1.0, 'son': 1.0, 'is': 1.0, 'this': 1.0, 'gone': 1.0, 'nothing': 1.0, 'for': 1.0, 'i': 1.0, 'only': 1.0, 'let': 1.0, 'my': 2.0, 'so': 1.0, 'order': 1.0, 'got': 1.0, 'half': 1.0, 'then': 1.0, 'of': 1.0, 'wtf': 1.0, 'was': 1.0, 'not': 2.0, 'cool': 2.0, '15': 1.0}
Word element => {}
Word element => {'brand': 1.0, 'size': 1.0, 'exact': 1.0, 'use': 1.0, 'every': 1.0, 'of': 1.0, 'ordered': 2.0, 'dishes': 2.0, 'in': 1.0, 'also': 1.0, 'love': 2.0, 'for': 1.0, 'i': 4.0, 'these': 1.0, 'the': 6.0, 'ikea': 2.0, 'more': 1.0, 'they': 2.0, 'are': 2.0, 'package': 1.0, '2': 1.0, 'but': 1.0, 'difficult': 1.0, 'and': 3.0, 'too': 1.0, 'store': 1.0, 'as': 1.0, 'cups': 1.0, 'to': 2.0, 'pricey': 1.0, 'out': 1.0, 'them': 2.0, 'so': 1.0, 'several': 1.0, 'sets': 1.0, 'three': 1.0, 'just': 1.0, 'meal': 1.0, 'children': 1.0, 'from': 1.0, 'ages': 1.0, '7': 1.0, 'try': 1.0, 'much': 1.0, 'one': 1.0, 'cuter': 1.0, 'fish': 1.0, 'design': 1.0, 'find': 1.0, 'than': 1.0, 'idea': 1.0}
Word element => {'set': 1.0, 'deal': 1.0, 'big': 1.0, 'anyways': 1.0, 'for': 2.0, 'bed': 1.0, 'use': 1.0, 'like': 1.0, 'we': 1.0, 'so': 1.0, 'small': 1.0, 'are': 1.0, 'little': 1.0, 'washer': 1.0, 'be': 1.0, 'brushing': 1.0, 'to': 3.0, 'much': 1.0, 'can': 1.0, 'them': 1.0, 'clean': 1.0, 'complain': 1.0, 'fun': 1.0, 'no': 1.0, 'at': 1.0, 'benefit': 1.0, 'colors': 1.0, 'about': 1.0, 'us': 1.0, 'cups': 1.0, 'easy': 1.0, 'time': 1.0, 'they': 1.0, 'not': 1.0, 'and': 3.0, 'but': 1.0, 'put': 1.0, 'teeth': 1.0, 'in': 1.0, 'great': 1.0, 'microwaved': 1.0, 'the': 2.0, 'dish': 1.0, 'is': 1.0, 'a': 2.0, 'which': 1.0, 'nice': 1.0}
Word element => {'far': 1.0, 'so': 1.0, 'wrack': 1.0, 'top': 1.0, 'on': 1.0, 'we': 1.0, 'fine': 2.0, 'work': 1.0, 'put': 1.0, 'they': 2.0, 'you': 1.0, 'all': 1.0, 'for': 1.0, 'the': 4.0, 'great': 1.0, 'get': 1.0, 'and': 1.0, 'only': 1.0, 'price': 1.0, 'colors': 1.0, 've': 1.0, 'pieces': 1.0, 'in': 1.0, 'wash': 1.0, 'like': 1.0, 'dishwasher': 1.0, 'i': 1.0, 'them': 1.0}
Word element => {'deformed': 1.0, 'flimsy': 1.0, 'little': 1.0, 'seem': 1.0, 'do': 1.0, 'the': 2.0, 'great': 2.0, 'from': 1.0, 'peel': 1.0, 'would': 2.0, 'have': 1.0, 'they': 5.0, 'be': 1.0, 'unsanitary': 1.0, 'and': 5.0, 'dishes': 1.0, 'of': 1.0, 'set': 2.0, 'had': 2.0, 'it': 2.0, 'other': 2.0, 'that': 4.0, 'kinds': 1.0, 'terrific': 1.0, 'microwave': 1.0, 'might': 1.0, 't': 2.0, 'a': 3.0, 'we': 1.0, 'dish': 1.0, 'bought': 1.0, 'heat': 1.0, 'few': 1.0, 'top': 1.0, 'stuff': 1.0, 'think': 1.0, 'make': 1.0, 'use': 1.0, 'this': 2.0, 'doing': 1.0, 'all': 1.0, 'to': 2.0, 'as': 2.0, 'trust': 1.0, 'you': 1.0, 'don': 2.0, 'about': 1.0, 'worry': 1.0, 'dishwasher': 1.0, 'than': 1.0, 'does': 1.0, 'is': 2.0, 'say': 1.0, 'off': 1.0, 're': 2.0, 'safe': 1.0, 'i': 2.0}
Word element => {'future': 1.0, 'will': 1.0, 'at': 1.0, 'to': 1.0, 'purchase': 1.0, 'we': 1.0, 'colors': 1.0, 'bought': 1.0, 'the': 1.0, 'more': 1.0, 'my': 1.0, 'size': 1.0, 'and': 1.0, 'him': 1.0, 'great': 1.0, 'this': 1.0, 'in': 1.0, 'look': 1.0, 'for': 2.0, 'sons': 1.0, 'feedings': 1.0, 'perfect': 1.0}
Word element => {'free': 1.0, 'bpa': 1.0, 'can': 1.0, 'they': 2.0, 'i': 1.0, 'also': 1.0, 'addition': 1.0, 'bigger': 1.0, 'other': 1.0, 'with': 1.0, 'complaint': 1.0, 'should': 1.0, 'dishwasher': 1.0, 'in': 2.0, 'to': 1.0, 'cups': 1.0, 'fishy': 1.0, 'conjunction': 1.0, 'only': 1.0, 'perfect': 2.0, 'kids': 1.0, 'this': 3.0, 'it': 1.0, 'getting': 1.0, 'vibrant': 1.0, 'is': 4.0, 'side': 1.0, 'go': 1.0, 'a': 5.0, 'preschooler': 1.0, 'my': 1.0, 're': 3.0, 'great': 1.0, 'toddler': 1.0, 'that': 4.0, 'set': 2.0, 'design': 1.0, 'love': 1.0, 'for': 3.0, 'the': 7.0, 'plates': 2.0, 'colors': 1.0, 'and': 2.0, 'bowls': 2.0, 'exciting': 1.0, 'little': 1.0, 'small': 1.0, 'plate': 1.0, 'so': 1.0, 'if': 2.0, 'you': 3.0, 'looking': 1.0, 'are': 4.0, 'deeper': 1.0, 'on': 1.0, 'bowl': 1.0, 'or': 1.0, 'dinner': 1.0, 'then': 2.0, 'size': 1.0, 'skip': 1.0}
Word element => {}
Word element => {'set': 1.0, 'expensive': 1.0, 'splatter': 1.0, 'topple': 1.0, 'will': 1.0, 'on': 1.0, 'same': 1.0, 'these': 1.0, 'especially': 1.0, 'go': 1.0, 'rested': 1.0, 'spoonto': 1.0, 'tip': 1.0, 'spin': 1.0, 'soft': 1.0, 'greeninstead': 1.0, 'do': 1.0, 'sanity': 1.0, 'infant': 1.0, '6': 1.0, 'clouding': 1.0, 'fading': 1.0, 'color': 1.0, 'washing': 1.0, 'upon': 1.0, 'heating': 1.0, 'used': 3.0, 'feeding': 1.0, 'although': 2.0, 'or': 1.0, 'food': 3.0, 'but': 1.0, 'multi': 1.0, 'curvature': 1.0, 'theoxo': 1.0, 'over': 1.0, 'daily': 1.0, 'additionally': 1.0, 'being': 1.0, 'makes': 1.0, 'nor': 2.0, 'it': 2.0, 'e': 1.0, 'colors': 1.0, 'place': 1.0, 'mixing': 1.0, 'of': 2.0, 'the': 16.0, 'plates': 2.0, 'we': 1.0, 'a': 2.0, 'opt': 1.0, 't': 3.0, 'curved': 1.0, '8': 1.0, 'down': 1.0, 'types': 1.0, 'pack': 2.0, 'residue': 1.0, 'our': 1.0, 'tot': 1.0, 'cups': 2.0, 'to': 2.0, 'your': 1.0, 'any': 1.0, 'theirmunchkin': 2.0, 'for': 6.0, 'spoon': 1.0, 'peas': 1.0, 'g': 1.0, 'bowls': 4.0, 'and': 6.0, 'one': 1.0, 'pattern': 1.0, 'old': 1.0, 'forefinger': 1.0, 'different': 1.0, 'than': 2.0, 'multiple': 1.0, 'times': 1.0, 'when': 3.0, 'more': 2.0, 'spoons': 1.0, 'is': 1.0, 'months': 1.0, 'get': 1.0, 'easy': 1.0, 'love': 1.0, 'yet': 1.0, 'carrots': 1.0, 'haven': 2.0, 'bowl': 4.0, 'seconds': 1.0, 'bucks': 1.0, 'you': 1.0, 'upside': 1.0, 'brand': 1.0, '15': 1.0, 'in': 2.0, 'air': 1.0, 'serving': 1.0, 'are': 3.0, 'cute': 1.0, 'designs': 1.0, 'from': 1.0, 'while': 1.0, 'pleasant': 1.0, 'rims': 2.0, 'have': 1.0, 'microwave': 1.0, 'wave': 1.0, 'like': 1.0, 'curve': 1.0, 'side': 2.0, 'thumb': 1.0, 'also': 2.0, 'gradually': 1.0, 'taller': 1.0, 'all': 1.0, 'matching': 1.0, 'other': 1.0, 'viewed': 1.0, 'buy': 1.0, 'add': 1.0, 'some': 1.0, 'few': 1.0, 'panache': 1.0, 'this': 1.0, 'upper': 1.0, 'carry': 1.0, 'with': 3.0, '5': 3.0, 'helps': 1.0, 'not': 1.0, 'dry': 1.0, 'placed': 1.0, 'just': 2.0, 'faster': 1.0, 'don': 1.0, 'had': 1.0}
Word element => {'new': 1.0, 'brand': 1.0, 'look': 1.0, 'durable': 1.0, 'come': 1.0, 'several': 1.0, 'are': 2.0, 'for': 1.0, 'plates': 1.0, 'colors': 1.0, 'size': 1.0, 'and': 3.0, 'very': 1.0, 'have': 1.0, 'in': 1.0, 'perfect': 1.0, 'cups': 1.0, 'months': 1.0, 'the': 1.0, 'these': 1.0, 'used': 1.0, 'they': 1.0, 'still': 1.0, 'bowls': 1.0, 'cute': 1.0, 'we': 1.0, 'them': 1.0}
Word element => {'dinner': 1.0, 'together': 1.0, 'tray': 1.0, 'her': 2.0, 'on': 1.0, 'fit': 1.0, 'enough': 1.0, 'eat': 1.0, 'small': 1.0, 'are': 1.0, 'bowls': 1.0, 'teach': 1.0, 'ready': 1.0, 'anyone': 1.0, 'just': 1.0, 'self': 2.0, 'this': 2.0, 'mommy': 1.0, 'loves': 1.0, 'plates': 1.0, 'for': 1.0, 'daughter': 1.0, 'like': 1.0, 'recommened': 1.0, 'start': 1.0, 'feeding': 2.0, 'the': 1.0, 'great': 1.0, 'a': 1.0, 'highchair': 1.0, 'would': 1.0, 'daddy': 1.0, 'up': 1.0, 'getting': 1.0, 'and': 4.0, 'pack': 2.0, 'was': 1.0, 'to': 4.0, 'let': 1.0, 'super': 1.0, 'easy': 1.0, 'them': 1.0, 'clean': 1.0, 'bight': 1.0, 'colors': 1.0, 'our': 1.0, 'i': 1.0}
Word element => {'okay': 1.0, 'much': 1.0, 'it': 1.0, 't': 1.0, 'don': 1.0, 'the': 4.0, 'is': 2.0, 'actual': 1.0, 'color': 1.0, 'darker': 1.0, 'but': 1.0, 'than': 1.0, 'i': 1.0, 'picture': 1.0, 'in': 1.0, 'shows': 1.0, 'quality': 1.0, 'like': 1.0, 'page': 1.0, 'so': 2.0}
Word element => {'portion': 1.0, 'help': 1.0, 'will': 1.0, 'size': 1.0, 'the': 1.0, 'movie': 1.0, 'i': 2.0, 'know': 1.0, 'snack': 1.0, 'this': 1.0, 'smaller': 1.0, 'set': 1.0, 'kids': 1.0, 'but': 1.0, 'time': 1.0, 'is': 1.0, 'meant': 1.0, 'sizing': 1.0, 'bought': 1.0, 'in': 1.0, 'for': 2.0, 'them': 1.0}
Word element => {'get': 1.0, 'ones': 1.0, 'pick': 1.0, 'to': 1.0, 'because': 1.0, 'colors': 1.0, 'which': 1.0, 'in': 1.0, 'come': 1.0, 'size': 1.0, 'like': 1.0, 'and': 1.0, 'my': 2.0, 'helps': 1.0, 'kids': 2.0, 'that': 1.0, 'they': 2.0, 'them': 1.0, 'great': 1.0, 'love': 1.0, 'it': 1.0}
Word element => {'haven': 1.0, 'seem': 1.0, 'everything': 1.0, 'just': 1.0, 'seems': 1.0, 'right': 1.0, 'size': 1.0, 'them': 1.0, 'had': 1.0, 'to': 2.0, 'complain': 1.0, 'texture': 1.0, 'fun': 1.0, 'some': 1.0, 'have': 1.0, 'ago': 1.0, 'over': 1.0, 'too': 1.0, 'daughter': 1.0, 'very': 1.0, 'year': 1.0, 'anything': 1.0, 'which': 1.0, 'our': 1.0, 'they': 3.0, 'durable': 1.0, 'this': 1.0, 'working': 1.0, 'got': 1.0, 'stacks': 1.0, 'set': 1.0, 'we': 1.0, 'and': 2.0, 'are': 2.0, 'still': 1.0, 't': 1.0, 'the': 2.0, 'great': 1.0, 'yet': 1.0, 'for': 1.0, 'love': 1.0, 'i': 1.0, 'about': 2.0, 'colors': 1.0, 'well': 1.0, 'a': 1.0, 'bright': 1.0}
Word element => {'kids': 1.0, 'for': 1.0, 'loved': 1.0, 'i': 1.0, 'is': 1.0, 'sturdy': 1.0, 'perfect': 1.0, 'package': 1.0, 'plastic': 1.0, 'isnt': 1.0, 'but': 1.0, 'too': 1.0, 'thick': 1.0, 'it': 1.0, 'none': 1.0, 'my': 1.0, 'the': 3.0, 'less': 1.0}
Word element => {'shaped': 1.0, 'were': 1.0, 'nice': 1.0, 'use': 1.0, 'close': 1.0, 'cover': 1.0, 'lid': 1.0, 'any': 1.0, 'to': 2.0, 'shape': 1.0, 'weird': 1.0, 'that': 2.0, 'kind': 1.0, 'con': 1.0, 'only': 1.0, 'but': 1.0, 'can': 1.0, 'food': 1.0, 'up': 1.0, 'quickly': 1.0, 'microwave': 1.0, 'are': 1.0, 'if': 1.0, 'everything': 1.0, 'meals': 1.0, 'saran': 1.0, 'items': 1.0, 'so': 1.0, 'with': 1.0, 'warming': 1.0, 'it': 4.0, 'this': 1.0, 'they': 2.0, 'i': 6.0, 't': 1.0, 'a': 1.0, 's': 1.0, 'how': 1.0, 'feeding': 1.0, 'inexpensive': 1.0, 'there': 1.0, 'used': 1.0, 'set': 1.0, 'of': 4.0, 'like': 2.0, 'traditional': 1.0, 'you': 2.0, 'am': 1.0, 'easily': 1.0, 'in': 1.0, '8217': 2.0, 'dishwasher': 1.0, 'need': 1.0, 'anything': 1.0, 'bowls': 2.0, 'and': 3.0, 'more': 1.0, 'is': 1.0, 'comes': 1.0, 'be': 1.0, 'multiple': 1.0, 'would': 1.0, 'each': 1.0, 'for': 3.0, 'love': 1.0, 'product': 1.0, 'because': 1.0, 'usually': 2.0, 'never': 1.0, 'out': 1.0, 'clean': 1.0, 'baby': 1.0, 'them': 2.0, 'rack': 1.0, 'just': 1.0, 'stick': 1.0, 'put': 1.0, 'your': 1.0, 'on': 1.0, 'wrap': 1.0, 'the': 5.0, 'top': 1.0, 'have': 2.0, 'also': 1.0}
Word element => {'size': 1.0, 'they': 1.0, 'quality': 1.0, 'good': 2.0, 'last': 1.0, 'time': 1.0, 'so': 1.0, 'else': 1.0, 'was': 1.0, 'seperately': 1.0, 'bought': 1.0, 'i': 4.0, 'had': 1.0, 'purchased': 1.0, 'knew': 1.0, 'already': 1.0, 'such': 1.0, 'great': 1.0, 'for': 2.0, 'and': 2.0, 'bowls': 1.0, 'find': 1.0, 'cute': 1.0, 'that': 1.0, 'perfect': 1.0, 'this': 3.0, 'kids': 1.0, 'a': 4.0, 't': 1.0, 'going': 1.0, 'my': 1.0, 'anywhere': 1.0, 'long': 1.0, 'is': 1.0, 'stuff': 1.0, 'the': 5.0, 'plates': 1.0, 'deal': 2.0, 'combine': 1.0, 'cups': 1.0, 'to': 2.0, 'all': 1.0, 'together': 1.0, 'price': 1.0, 'you': 1.0, 'but': 1.0, '2': 1.0, 'aren': 1.0, 'better': 1.0, 'are': 2.0}
Word element => {'everyday': 1.0, 'in': 1.0, 'hold': 1.0, 'they': 1.0, 'bowls': 1.0, 'cups': 1.0, 'out': 1.0, 'use': 1.0, 'sturdy': 1.0, 'purchased': 1.0, 'to': 2.0, 'old': 1.0, 'i': 1.0, 'up': 1.0, 'of': 1.0, 'set': 1.0, 'my': 1.0, 'are': 3.0, 'drink': 1.0, 'little': 2.0, 'the': 4.0, 'great': 3.0, 'well': 1.0, 'a': 3.0, 'is': 2.0, 'year': 1.0, 'son': 1.0, 'one': 1.0, 'for': 2.0, 'plates': 1.0, 'size': 2.0, 'and': 3.0, 'this': 1.0, 'he': 1.0, 'dishwasher': 1.0, 'easily': 1.0, 'able': 1.0}
Word element => {'dish': 1.0, 'or': 1.0, 'hand': 1.0, 'in': 1.0, 'wash': 1.0, 'made': 1.0, 'so': 1.0, 'are': 2.0, 'washer': 1.0, 'little': 1.0, 'colors': 1.0, 'baby': 1.0, 'my': 1.0, 'have': 2.0, 'used': 1.0, 'great': 1.0, 'the': 4.0, 'these': 2.0, 'well': 2.0, 'since': 1.0, 'and': 3.0, 'up': 1.0, 'bowls': 1.0, 'dishes': 2.0, 'we': 2.0, 'guy': 1.0, 'starting': 1.0, 'love': 1.0, 'plates': 1.0, 'to': 1.0, 'now': 1.0, 'eating': 1.0, 'cereal': 1.0, 'moved': 1.0, 'by': 1.0, 'cups': 1.0}
Word element => {'fun': 1.0, 'size': 1.0, 'perfect': 1.0, 'trouble': 1.0, 'they': 2.0, 'too': 1.0, 'cups': 2.0, 'well': 1.0, 'i': 1.0, 'used': 1.0, 'does': 1.0, 'colors': 1.0, 'any': 1.0, 'price': 1.0, 'are': 3.0, 'for': 1.0, 'have': 2.0, 'and': 2.0, 'with': 1.0, 'only': 1.0, 'set': 1.0, 'up': 1.0, 'the': 5.0, 'great': 1.0, 'small': 1.0, 'so': 1.0, 'my': 1.0, 'lo': 1.0, 'far': 1.0, 'bowls': 1.0, 'holding': 1.0, 'not': 1.0}
Word element => {'set': 1.0, 'this': 1.0, 'glad': 1.0, 'other': 1.0, 'bowls': 1.0, 'can': 1.0, 'put': 1.0, 'reviews': 1.0, 'stated': 1.0, 'bought': 1.0, 'be': 1.0, 'many': 1.0, 'although': 1.0, 'that': 1.0, 'in': 1.0, 't': 1.0, 'these': 1.0, 'the': 3.0, 'microwave': 2.0, 'i': 2.0, 'packaging': 1.0, 'and': 1.0, 'for': 1.0, 'plates': 1.0, 'say': 1.0, 'safe': 1.0, 'm': 1.0}
Word element => {'would': 1.0, 'wish': 1.0, 'bowls': 1.0, 'plates': 1.0, 'colors': 1.0, 'in': 1.0, 'a': 2.0, 'feeding': 1.0, 'been': 1.0, 'have': 1.0, 'they': 1.0, 'my': 1.0, 'are': 3.0, 'great': 1.0, 'the': 3.0, '2': 1.0, 'toddlers': 1.0, 'variety': 1.0, 'product': 1.0, 'to': 1.0, 'come': 2.0, 'with': 3.0, 'this': 2.0, 'year': 1.0, 'spoons': 1.0, 'starting': 1.0, 'satisfied': 1.0, 'just': 1.0, 'doing': 1.0, 'use': 1.0, 'old': 1.0, 'i': 2.0, 'job': 1.0, 'good': 1.0, 'off': 1.0, 'there': 1.0, 'set': 2.0, 'of': 2.0, 'munchkin': 1.0, 'that': 1.0, 'their': 1.0, 'sippy': 1.0, 'too': 2.0, 'coming': 1.0, 'm': 1.0, 'cups': 3.0, 'and': 2.0}
Word element => {'recommend': 1.0, 'in': 1.0, 'they': 1.0, 'clean': 1.0, 'breaking': 1.0, 'dishwasher': 1.0, 'worry': 1.0, 'his': 1.0, 'to': 1.0, 'notorius': 1.0, 'son': 1.0, 'is': 2.0, 'my': 1.0, 'up': 1.0, 'set': 1.0, 'have': 1.0, 'i': 2.0, 'for': 1.0, 'love': 1.0, 'plates': 1.0, 'when': 1.0, 'cups': 1.0, 'with': 1.0, 'this': 1.0, 'he': 1.0, 'done': 1.0, 'and': 1.0, 'the': 1.0, 'nicely': 1.0, 'cracking': 1.0, 't': 1.0, 'these': 1.0, 'highly': 1.0, 'about': 1.0, 'throwing': 1.0, 'don': 1.0}
Word element => {'new': 1.0, 'brand': 1.0, 'broken': 1.0, 'or': 1.0, 'cracked': 1.0, 'love': 1.0, 'for': 1.0, 'using': 1.0, 'been': 1.0, 'we': 1.0, 'them': 2.0, 'at': 1.0, 'and': 4.0, 'not': 1.0, 'stand': 1.0, 'over': 1.0, 'trauma': 1.0, 'old': 1.0, 'i': 1.0, 'kids': 1.0, 'dishwashing': 1.0, 'still': 1.0, 'dishes': 1.0, 'look': 1.0, 'to': 1.0, 'bought': 1.0, 'toddler': 1.0, 'food': 1.0, 'up': 1.0, 'of': 1.0, 'set': 1.0, 'year': 2.0, 'best': 1.0, 'that': 1.0, 'a': 2.0, 'well': 2.0, 'have': 4.0, 'all': 1.0, 'these': 1.0, '2': 1.0, 'the': 3.0, 'they': 2.0, 'cutting': 1.0, 'toddlers': 2.0, 'half': 1.0, 'throw': 1.0}
Word element => {'sets': 1.0, 'or': 1.0, 'and': 1.0, 'sell': 1.0, 'gender': 2.0, 'like': 1.0, 'i': 1.0, 'thing': 1.0, 'that': 1.0, 'our': 1.0, 'specific': 1.0, 'size': 1.0, 'a': 1.0, 'stained': 1.0, 'not': 1.0, 'resistant': 1.0, 'the': 2.0, 't': 3.0, 'really': 1.0, 'is': 1.0, 'containers': 1.0, 'neutral': 1.0, 'hasn': 1.0, 'they': 3.0, 'as': 1.0, 'stain': 1.0, 'colors': 1.0, 'don': 2.0, 'any': 1.0, 'be': 1.0, 'to': 1.0, 'seem': 1.0, 'for': 1.0, 'mine': 1.0, 'yet': 1.0, 'foods': 1.0, 'are': 2.0, 'only': 1.0, 'with': 1.0, 'other': 1.0, 'we': 1.0, 'toddler': 1.0, 'put': 1.0, 'perfect': 1.0, 'in': 1.0, 'them': 1.0, 'unlike': 1.0}
Word element => {'new': 1.0, 'anywhere': 1.0, 'i': 1.0, 'best': 1.0, 'these': 1.0, 'find': 1.0, 'are': 1.0, 'price': 1.0, 'hands': 1.0, 'cute': 1.0, 'could': 1.0, 'for': 2.0, 'durable': 1.0, 'items': 1.0, 'and': 1.0, 'great': 1.0, 'size': 1.0, 'easy': 1.0, 'dishes': 1.0, 'to': 1.0, 'little': 1.0, 'clean': 1.0}
Word element => {'them': 1.0, 'on': 1.0, 'fish': 1.0, 'loves': 1.0, 'my': 1.0, 'fun': 1.0, 'got': 1.0, 'durable': 1.0, 'it': 2.0, 'are': 1.0, 'helpful': 1.0, 'i': 1.0, 'great': 1.0, 'the': 3.0, 'for': 2.0, 'daycare': 1.0, 'and': 2.0, 'each': 1.0, 'daughter': 1.0, 'kids': 2.0, 'of': 1.0, 'set': 1.0, 'feeding': 1.0, 'home': 1.0, 'our': 1.0, 'they': 1.0, 'really': 2.0, 'is': 1.0, 'items': 1.0, 'assigning': 1.0, 'day': 1.0, 'colors': 1.0}
Word element => {'cup': 1.0, 'from': 1.0, 'how': 1.0, 'drink': 1.0, 'toddler': 1.0, 'teach': 1.0, 'to': 2.0, 'way': 1.0, 'great': 1.0, 'a': 2.0, 'cups': 1.0, 'products': 1.0, 'able': 1.0, 'son': 1.0, 'all': 1.0, 'perfect': 2.0, 'the': 1.0, 'are': 2.0, 'my': 2.0, 'weather': 1.0, 'and': 2.0, 'for': 1.0, 'daughter': 1.0}
Word element => {'day': 1.0, 'every': 1.0, 'use': 1.0, 'my': 1.0, 'value': 1.0, 'set': 1.0, 'would': 1.0, 'that': 1.0, 'color': 1.0, 'contrasting': 1.0, 'in': 1.0, 'a': 4.0, 'had': 1.0, 'nothing': 1.0, 'there': 2.0, 'them': 3.0, 'still': 1.0, 'seem': 1.0, 'around': 1.0, 'is': 3.0, 'pieces': 1.0, 'on': 2.0, 'design': 2.0, 'fish': 1.0, 'simple': 1.0, 'these': 4.0, 'version': 1.0, 'like': 1.0, 'and': 6.0, 'much': 1.0, 'do': 1.0, 'plate': 1.0, 'the': 9.0, 'plates': 2.0, 'for': 1.0, 'help': 1.0, 'colors': 1.0, 'are': 4.0, 'useful': 1.0, 'fairly': 1.0, 'of': 2.0, 'stop': 1.0, 'cute': 1.0, 'bright': 1.0, 'since': 1.0, 'nice': 3.0, 'unisex': 1.0, 'not': 2.0, 'to': 4.0, 'as': 2.0, 'clean': 1.0, 'good': 1.0, 'off': 1.0, 'they': 1.0, 'old': 1.0, 'makes': 1.0, 'older': 1.0, 'flatter': 1.0, 'have': 1.0, 'an': 1.0, 'edge': 3.0, 'kids': 3.0, 'this': 1.0, 'band': 1.0, 'scoop': 1.0, 'it': 2.0, 'easier': 2.0, 'but': 1.0, 'food': 1.0}
Word element => {'little': 1.0, 'your': 1.0, 'one': 1.0, 'for': 1.0, 'set': 1.0, 'like': 1.0, 'colors': 1.0, 'munchkin': 1.0, 'have': 1.0, 'other': 1.0, 'nice': 1.0, 'which': 1.0, 'first': 1.0, 'this': 1.0, 'durable': 1.0, 'weight': 1.0, 'the': 1.0, 'are': 1.0, 'light': 1.0, 'dishes': 1.0, 'to': 1.0, 'very': 1.0, 'match': 1.0, 'products': 1.0, 's': 1.0, 'exciting': 1.0, 'silverware': 1.0, 'what': 1.0, 'etc': 1.0, 'and': 1.0, 'appear': 1.0, 'not': 1.0}
Word element => {'daughter': 1.0, 'have': 1.0, 'haven': 1.0, 'they': 1.0, 'and': 2.0, 'up': 1.0, 'months': 1.0, 'few': 1.0, 'them': 1.0, 'clean': 1.0, 'well': 1.0, 'a': 1.0, 'anything': 1.0, 'for': 1.0, 'seems': 1.0, 'in': 1.0, 'now': 1.0, 'had': 2.0, 'to': 2.0, 'buy': 1.0, 'else': 1.0, 't': 1.0, 'these': 1.0, 'the': 1.0, 'my': 1.0, 'like': 1.0, 'dishwasher': 1.0}
Word element => {'items': 1.0, 'cold': 1.0, 'sandwiches': 1.0, 'most': 1.0, 'actually': 1.0, 'that': 1.0, 'similar': 1.0, 'this': 1.0, 'to': 2.0, 'our': 1.0, 'cups': 1.0, 'away': 1.0, 'older': 1.0, 'kind': 2.0, 'stove': 1.0, 'glass': 1.0, 'something': 1.0, 've': 1.0, 'blah': 2.0, 'on': 2.0, 'm': 1.0, 'reserve': 1.0, 'i': 4.0, 'use': 3.0, 'plastic': 1.0, 'he': 1.0, 'into': 2.0, 'fantastic': 1.0, 'things': 1.0, 'you': 2.0, 'set': 2.0, 's': 3.0, 'small': 1.0, 'a': 7.0, 'rest': 1.0, 't': 4.0, 'just': 1.0, 'but': 1.0, 'corners': 1.0, 'two': 1.0, 'little': 1.0, 'value': 1.0, '1': 1.0, 'plop': 1.0, 're': 2.0, 'free': 1.0, 'want': 1.0, 'if': 2.0, 'then': 1.0, 'we': 2.0, 'fine': 1.0, 'isn': 1.0, 'is': 1.0, 'completely': 1.0, 'till': 1.0, 'it': 3.0, 'ot': 1.0, 'these': 4.0, 'microwave': 3.0, 'safe': 3.0, 'not': 2.0, 'beefs': 1.0, 'track': 1.0, 'up': 1.0, 'and': 5.0, 'bowls': 1.0, 'be': 1.0, 'bpa': 1.0, 'heat': 2.0, 'done': 1.0, 'ikea': 1.0, 'with': 1.0, 'without': 1.0, 'person': 1.0, 'of': 6.0, 'the': 3.0, 'plates': 1.0, 'having': 1.0, 'do': 1.0, 'those': 1.0, 'sharp': 1.0, '2': 1.0, 'dishes': 1.0, 'me': 1.0, 'my': 3.0, 'husband': 1.0, 'keep': 2.0, 'microwaving': 1.0, 'what': 2.0, 'had': 1.0, 'can': 1.0, 'so': 2.0, 'bit': 2.0, 'from': 2.0, 'cute': 1.0, 'plus': 1.0, 'are': 2.0, 'won': 1.0, 'let': 1.0, 'ton': 1.0, 'son': 1.0, 'even': 1.0, 'got': 1.0, 'for': 3.0, 'aren': 1.0, 'they': 1.0, 'cut': 1.0, 'lips': 1.0}
Word element => {'design': 1.0, 'fish': 1.0, 'love': 1.0, 'great': 1.0, 'happy': 1.0, 'little': 1.0, 'both': 1.0, 'i': 1.0, 'this': 1.0, 'boy': 1.0, 'set': 1.0, 'multi': 1.0, 'so': 1.0, 'girl': 1.0, 'color': 1.0, 'the': 1.0, 'are': 1.0, 'my': 2.0, 'quality': 1.0, 'like': 1.0, 'and': 2.0}
Word element => {'good': 1.0, 're': 1.0, 'really': 1.0, 'me': 1.0, 'or': 1.0, 'doesn': 1.0, 'spots': 1.0, 'trouble': 1.0, 'microwave': 1.0, 'dishwasher': 1.0, 'in': 2.0, 'thrown': 1.0, 'i': 1.0, 'con': 1.0, 'get': 2.0, 'couple': 1.0, 'break': 1.0, 'happy': 1.0, 'price': 1.0, 'm': 1.0, 'daughter': 1.0, 'to': 1.0, 'cups': 1.0, 'little': 1.0, 'very': 2.0, 'with': 1.0, 'now': 1.0, 'of': 3.0, 'they': 2.0, 'for': 2.0, 'like': 1.0, 'which': 1.0, 'using': 1.0, 'been': 1.0, 'months': 1.0, 'some': 1.0, 'these': 1.0, 'deal': 1.0, 'pro': 1.0, 'without': 1.0, 'plates': 1.0, 'the': 6.0, 'them': 2.0, 'has': 1.0, 'well': 1.0, 'but': 2.0, 'up': 2.0, 'don': 1.0, 't': 3.0, 'a': 7.0, 'we': 2.0, 'goes': 1.0, 'haven': 1.0, 'used': 2.0, 'do': 1.0, 'much': 1.0, 'higher': 1.0, 'she': 1.0, 'lot': 1.0, 'seem': 1.0, 'still': 1.0, 'and': 4.0, 'bowls': 2.0, 'sometimes': 1.0, 'holding': 1.0, 'needs': 1.0, 've': 1.0, 'lip': 1.0, 'my': 1.0, 'lid': 1.0, 'use': 1.0, 'are': 1.0}
Word element => {'customer': 1.0, 'experience': 1.0, 'is': 1.0, 'care': 2.0, 'special': 1.0, 'expectations': 1.0, 'inquiries': 1.0, 'such': 1.0, 'the': 4.0, 'especially': 1.0, 'exceeded': 1.0, 'baby': 1.0, 'bib': 1.0, 'and': 2.0, 'service': 1.0, 'it': 1.0, 'with': 1.0, 'excellent': 1.0, 'very': 1.0, 'reply': 1.0, 'products': 2.0, 'i': 2.0, 'am': 1.0, 'my': 2.0, 'happy': 1.0, 'item': 1.0, 'every': 1.0, 'purchased': 1.0, 'to': 2.0, 'refreshing': 1.0, 'given': 1.0, 'prompt': 1.0}
Word element => {'would': 1.0, 'but': 1.0, 'doesn': 1.0, 'though': 1.0, 'washes': 1.0, 'a': 3.0, 'just': 1.0, 'so': 1.0, 'after': 1.0, 'pilling': 1.0, 'really': 1.0, 'is': 1.0, 'of': 2.0, 'baby': 1.0, 'don': 1.0, 'dog': 1.0, 'another': 1.0, 'think': 1.0, 'loves': 1.0, 'it': 3.0, 'he': 2.0, 'this': 2.0, 'i': 2.0, 'for': 3.0, 'reviewer': 1.0, 'my': 1.0, 't': 2.0, 'puppy': 1.0, 'the': 2.0, 'be': 1.0, 'bought': 1.0, 'dragging': 1.0, 'chewing': 1.0, 'like': 1.0, 'blanket': 1.0, 'on': 2.0, 'matter': 1.0, 'couple': 1.0, 'and': 1.0, 'edges': 1.0, 'while': 1.0, 'nice': 1.0, 'lays': 1.0, 'around': 1.0, 'top': 1.0}
Word element => {'is': 1.0, 'but': 1.0, 'still': 1.0, 'night': 1.0, 'at': 1.0, 'wakes': 1.0, 'when': 1.0, 'get': 2.0, 'enough': 1.0, 'stretch': 1.0, 'plenty': 1.0, 'so': 1.0, 'co': 1.0, 'height': 1.0, 'ordered': 1.0, 'finally': 1.0, 'way': 1.0, 'was': 1.0, 'the': 3.0, 'far': 1.0, 'working': 1.0, 'then': 2.0, 'glider': 1.0, 'soothing': 1.0, 'did': 1.0, 'second': 1.0, 'sleep': 2.0, 'to': 4.0, 'our': 1.0, 'first': 1.0, 'with': 4.0, 'my': 2.0, 'are': 1.0, 'best': 1.0, 'both': 1.0, 'used': 1.0, 'room': 2.0, 'motions': 1.0, 'before': 1.0, 'bad': 1.0, 'size': 1.0, 'crib': 1.0, 'sleepers': 1.0, 'which': 1.0, 'perfect': 1.0, 'sleeper': 2.0, 'this': 3.0, 'wish': 1.0, 'me': 1.0, 'not': 1.0, 'would': 1.0, 'day': 1.0, 'solution': 1.0, 'route': 1.0, 'from': 1.0, 'i': 5.0, 'two': 1.0, 'have': 3.0, 'thing': 1.0, 'gone': 1.0, 'once': 1.0, 'of': 3.0, 'up': 2.0, 'her': 3.0, 'good': 1.0, 'next': 1.0, 'basket': 2.0, 'into': 3.0, 'has': 1.0, 'girls': 1.0, 'it': 2.0, 'she': 7.0, '1': 1.0, 'and': 4.0, 'couple': 1.0, 'out': 2.0, 'little': 1.0, 'grew': 1.0, 'ended': 1.0, 'in': 1.0, 'quickly': 1.0, 'bed': 4.0, 'fit': 1.0, 'for': 2.0, 's': 2.0, 'we': 2.0, 'a': 5.0, 'transitioned': 1.0, 'us': 1.0, 'moses': 2.0, 'few': 1.0, 'months': 2.0}
Word element => {'travel': 1.0, 'needed': 1.0, 'easy': 1.0, 'weight': 1.0, 'light': 1.0, 'available': 1.0, 'would': 1.0, 'only': 1.0, 'exactly': 1.0, 'bassinet': 3.0, 'i': 2.0, 'her': 1.0, 'wish': 1.0, 'found': 1.0, 'this': 4.0, 'move': 1.0, 'come': 1.0, 'he': 1.0, 'have': 2.0, 'what': 2.0, 'had': 1.0, 'second': 1.0, 'is': 4.0, 'about': 1.0, 'baby': 3.0, 'and': 3.0, 'up': 1.0, 'of': 1.0, 'also': 1.0, 'will': 1.0, 'an': 1.0, 'my': 2.0, 'they': 1.0, 'babies': 1.0, 'been': 1.0, 'next': 1.0, 'makes': 1.0, 'so': 1.0, 'daughter': 1.0, 'never': 1.0, 'wow': 1.0, 'heard': 1.0, 'feel': 1.0, 'oldest': 1.0, 'anything': 1.0, 'with': 2.0, 'convenient': 1.0, 'product': 1.0, 'for': 2.0, 'bed': 1.0, 'parents': 1.0, 'mother': 1.0, 'reach': 1.0, 'the': 3.0, 'was': 1.0, 'father': 1.0, 'to': 3.0, 'as': 1.0, 'if': 2.0, 'it': 1.0, 'she': 1.0, 'in': 1.0, 'arm': 1.0, 's': 1.0}
Word element => {'sippy': 1.0, 'to': 2.0, 'an': 1.0, 'easy': 1.0, 'we': 1.0, 'it': 1.0, 'tip': 1.0, 'from': 1.0, 'transition': 1.0, 'cup': 1.0, 'soft': 1.0, 'the': 3.0, 'bottle': 1.0, 'have': 2.0, 'abuse': 1.0, 'several': 1.0, 'them': 1.0, 'and': 1.0, 'of': 1.0, 'up': 1.0, 'makes': 1.0, 'they': 1.0, 'held': 1.0, 'despite': 1.0}
Word element => {'little': 1.0, 'plays': 1.0, 'she': 1.0, 'while': 1.0, 'kitten': 1.0, 'new': 1.0, 'set': 1.0, 'with': 2.0, 'it': 1.0, 'this': 1.0, 'you': 1.0, 'her': 1.0, 'works': 1.0, 'what': 1.0, 'if': 1.0, 'cute': 1.0, 'my': 2.0, 'small': 1.0, 'see': 1.0, 'and': 1.0, 'very': 1.0, 'know': 1.0, 'brush': 4.0, 'got': 2.0, 'fine': 1.0, 'want': 1.0, 'the': 3.0, 'puppy': 1.0, 'comb': 2.0, 'i': 4.0, 'picture': 1.0, 'thought': 1.0, 'image': 1.0, 'to': 2.0, 'was': 1.0, 'actually': 1.0}
Word element => {'return': 1.0, 'toddler': 1.0, 'newborn': 1.0, 'of': 1.0, 'care': 1.0, 'taking': 1.0, 'while': 1.0, 'day': 1.0, 'every': 1.0, 'charging': 1.0, 'to': 1.0, 'hours': 1.0, 'access': 1.0, 'like': 1.0, 'there': 1.0, 'however': 1.0, 'so': 1.0, 'feedings': 1.0, 'my': 1.0, 'for': 2.0, 'one': 1.0, 'in': 2.0, 'static': 1.0, 'recharge': 1.0, 'nap': 1.0, 'have': 1.0, 'is': 2.0, 'with': 1.0, 'perfect': 1.0, 'this': 1.0, 'older': 1.0, 'light': 1.0, 'interested': 1.0, 'infant': 1.0, 'problem': 1.0, 'we': 1.0, 'a': 5.0, 'docking': 1.0, 'without': 1.0, 'the': 2.0, '2': 1.0, 'batteries': 3.0, 'and': 3.0, 'not': 3.0, 'did': 1.0, 'uh': 1.0, 'night': 2.0, 'i': 1.0, 'tool': 1.0, 'does': 1.0, 'station': 1.0, 'graco': 1.0, 'rechargable': 1.0, 'last': 1.0, 'no': 1.0, 'about': 1.0, 'am': 1.0, 'barely': 1.0, 'an': 1.0}
Word element => {'trashed': 1.0, 'receivers': 1.0, 'where': 1.0, 'placed': 1.0, 'worthless': 1.0, 'little': 1.0, 'yourself': 1.0, 'these': 1.0, 'the': 1.0, 'more': 1.0, 'regardless': 1.0, 'no': 1.0, 'good': 1.0, 'reception': 1.0, 'spend': 1.0, 'a': 3.0, 'are': 3.0, 'favor': 1.0, 'to': 1.0, 'getting': 1.0, 'and': 3.0, 'monitor': 1.0, 'do': 1.0, 'get': 1.0, 'of': 1.0, 'set': 1.0}
Word element => {'peace': 1.0, 'extra': 1.0, 'worth': 1.0, 'can': 1.0, 'money': 2.0, 'on': 1.0, 'your': 1.0, 'problem': 1.0, 'never': 1.0, 'top': 1.0, 'you': 1.0, 'when': 1.0, 'sleep': 1.0, 'to': 2.0, 'had': 1.0, 'don': 1.0, 'angelcare': 3.0, 'there': 1.0, 'too': 1.0, 'and': 3.0, 'go': 1.0, 't': 1.0, 's': 2.0, 'a': 2.0, 'was': 2.0, 'unfortunately': 1.0, 'my': 3.0, 'set': 4.0, 'static': 1.0, 'the': 8.0, 'nice': 1.0, 'until': 1.0, 'monitor': 2.0, 'very': 1.0, 'son': 2.0, 'his': 1.0, 'adapter': 1.0, 'almost': 1.0, 'year': 1.0, 'one': 1.0, 'decided': 1.0, 'lungs': 1.0, 'product': 2.0, 'i': 5.0, 'is': 2.0, 'recently': 1.0, 'crying': 1.0, 'parent': 1.0, 'it': 3.0, 'this': 3.0, 'of': 2.0, 'shower': 1.0, 'mind': 1.0, 'with': 3.0, 'waste': 1.0, 'broke': 1.0, 'baby': 1.0, 'old': 1.0, 'interference': 1.0, 'he': 1.0, 'received': 1.0, 'dropped': 1.0, 'graco': 1.0, 'at': 2.0, 'so': 3.0, 'hear': 1.0, 'much': 1.0, 'try': 1.0, 'that': 1.0, 'which': 1.0, 'using': 1.0, 'cannot': 1.0, 'even': 1.0}
Word element => {'purchase': 1.0, 'static': 1.0, 'is': 1.0, 'connection': 1.0, 'because': 1.0, 'i': 1.0, 'does': 1.0, 'would': 1.0, 'not': 2.0, 'work': 1.0, 'losing': 1.0, 'it': 4.0, 'keeps': 1.0, 'up': 1.0, 'and': 1.0, 'all': 1.0, 'loses': 1.0, 'me': 1.0, 'also': 1.0, 'reception': 1.0, 'beeping': 1.0, 'wakes': 1.0}
Word element => {'wouldn': 1.0, 'of': 1.0, 'better': 1.0, 'channels': 1.0, 'due': 1.0, 'likely': 1.0, 'problem': 1.0, 'price': 1.0, 'fisher': 1.0, 'can': 1.0, 'but': 1.0, 'are': 1.0, 've': 1.0, 'choose': 1.0, 'maybe': 2.0, 'interference': 1.0, 'constant': 1.0, 'hear': 1.0, 'in': 2.0, 'completely': 1.0, 'is': 1.0, 'used': 1.0, 'static': 1.0, 'unplugged': 1.0, 'have': 2.0, 'bad': 1.0, 'pick': 2.0, 'just': 1.0, 'life': 1.0, 'station': 1.0, 'sometimes': 1.0, 'isn': 1.0, 'i': 3.0, 'much': 1.0, 'works': 1.0, 'well': 1.0, 'job': 1.0, 'the': 13.0, 'great': 1.0, 'this': 5.0, 'useless': 1.0, 'it': 2.0, 'complain': 1.0, 'with': 1.0, 'ac': 1.0, 'doesn': 1.0, 'unfortunately': 1.0, '12': 1.0, 'charged': 1.0, 'did': 1.0, 'wired': 1.0, 'receiver': 3.0, 'plugged': 1.0, 'and': 3.0, 'monitor': 5.0, 'if': 1.0, 'outlet': 1.0, 'pretty': 1.0, 'batteries': 1.0, 'from': 2.0, 'preserving': 1.0, 'so': 3.0, 'on': 1.0, 'inevitably': 1.0, 'when': 2.0, 'you': 1.0, 'about': 1.0, 'battery': 2.0, 'wall': 1.0, 'a': 1.0, 'we': 4.0, 't': 4.0, 'radio': 2.0, 's': 3.0, 'renders': 1.0, 'way': 2.0, 'our': 1.0, 'all': 1.0, 'to': 2.0, 'plug': 1.0, 'that': 5.0, 'into': 1.0, 'actually': 1.0, 'where': 1.0, 'product': 1.0, 'houses': 1.0, 'goes': 1.0, 'downhill': 1.0, 'don': 1.0, 'up': 2.0, 'stations': 1.0}
Word element => {'wall': 1.0, 'so': 1.0, 'plugged': 1.0, 'use': 1.0, 'batteries': 2.0, 'to': 1.0, 'need': 1.0, 'upstairs': 1.0, 'from': 1.0, 'is': 1.0, 'well': 2.0, 'work': 1.0, 'first': 1.0, 'this': 2.0, 'other': 2.0, 'the': 3.0, 't': 2.0, 'they': 1.0, 'that': 1.0, 'terrible': 1.0, 'posted': 1.0, 'static': 1.0, 'mine': 1.0, 'reviewer': 1.0, 'downstairs': 1.0, 'one': 2.0, 'into': 1.0, 'or': 1.0, '3': 1.0, 'different': 1.0, 've': 1.0, 'by': 1.0, 'works': 1.0, 'before': 1.0, 'brands': 1.0, 'rechargeable': 1.0, 'monitor': 1.0, 'and': 1.0, 'i': 3.0, 'tried': 1.0, 'bursts': 1.0, 'have': 1.0, 'all': 1.0, 'of': 1.0, 'any': 1.0, 'about': 1.0, 'don': 2.0}
Word element => {'anyone': 1.0, 'do': 1.0, 'recommenced': 1.0, '50ft': 1.0, 'not': 1.0, 'foot': 1.0, 'this': 2.0, 'sucks': 1.0, 'away': 1.0, 'makes': 1.0, 'static': 1.0, 'anywhere': 1.0, 'you': 1.0, 'are': 1.0, 'a': 1.0, 'to': 1.0, 'product': 2.0, 'whether': 1.0, 'i': 1.0, 'or': 1.0, 'your': 1.0}
Word element => {'s': 1.0, 'noise': 1.0, 'white': 1.0, 'bit': 1.0, 'there': 1.0, 'quiet': 1.0, 'like': 1.0, 'wouldn': 1.0, 'll': 1.0, 'don': 1.0, 'as': 2.0, 'one': 1.0, 'too': 1.0, 'aaa': 1.0, '3': 1.0, 'doesn': 1.0, 'without': 1.0, 'ever': 1.0, 'playing': 1.0, 'of': 1.0, 'the': 17.0, 'across': 1.0, 'and': 5.0, 'batteries': 4.0, 'plugged': 2.0, 'also': 3.0, 'crib': 1.0, 'it': 7.0, 'nightstand': 1.0, 'nice': 1.0, 'big': 1.0, 'stays': 1.0, 'on': 4.0, 'use': 1.0, 'her': 3.0, 'negative': 1.0, 'she': 1.0, 'baby': 1.0, 'for': 5.0, 'listen': 1.0, 'was': 3.0, 'had': 1.0, 'outside': 2.0, 'sound': 1.0, 'placement': 1.0, 'needed': 1.0, 'newborn': 1.0, 'out': 2.0, 'static': 1.0, 'tonight': 1.0, 'pleased': 1.0, 'my': 3.0, 'another': 2.0, 'far': 1.0, 'i': 9.0, 'tried': 1.0, 'more': 1.0, 'is': 3.0, 'wish': 1.0, 'this': 2.0, 'dinner': 1.0, 'got': 1.0, 'base': 3.0, 'took': 1.0, 'even': 2.0, 'while': 2.0, 'very': 3.0, 'monitor': 1.0, 'toddler': 1.0, 'resting': 1.0, 'get': 2.0, 'we': 2.0, 'a': 4.0, 'quickly': 1.0, 'options': 1.0, 'ate': 1.0, 'screwdriver': 1.0, 'with': 2.0, 'drain': 1.0, 'nightlight': 1.0, 'but': 1.0, 'you': 2.0, 'when': 2.0, 'have': 1.0, 'switch': 2.0, 'whole': 1.0, 'unit': 5.0, 'come': 1.0, 'problem': 1.0, 'though': 1.0, 'them': 1.0, 'has': 2.0, 't': 3.0, 'separate': 1.0, 'reception': 1.0, 'not': 1.0, 'if': 1.0, 'clear': 2.0, 'stay': 1.0, 'minor': 1.0, 'that': 1.0, 'since': 1.0, 'room': 4.0, 'once': 1.0, 'are': 2.0, 'think': 1.0, 'parent': 4.0, 'to': 5.0, 'hoping': 2.0, 'pretty': 1.0, 'do': 1.0, 'much': 1.0, 'feature': 1.0, 'need': 1.0, 'back': 1.0, 'positive': 1.0, 'overall': 1.0, 'lightweight': 1.0, 'so': 1.0, 'in': 7.0, 'm': 1.0, 'light': 1.0, 'using': 1.0}
Word element => {'buck': 1.0, 'associate': 1.0, 'aa': 1.0, 'not': 1.0, 'aaa': 1.0, 'get': 1.0, 'sure': 1.0, 'plug': 1.0, 'these': 1.0, 'of': 1.0, 'all': 1.0, 'that': 1.0, 'so': 1.0, 'batteries': 1.0, 'ran': 1.0, 'last': 1.0, 'fact': 1.0, 'exclusively': 1.0, 'my': 1.0, 'ask': 1.0, 'what': 1.0, 'gets': 1.0, 'available': 1.0, 'out': 1.0, 'went': 1.0, 'price': 1.0, 'm': 2.0, 'store': 1.0, 'read': 2.0, 'one': 1.0, 'bought': 1.0, 'for': 1.0, 'where': 1.0, 'product': 1.0, 'and': 5.0, 'other': 1.0, 'before': 1.0, 'you': 2.0, 'when': 3.0, 'beeps': 1.0, 'a': 1.0, 's': 2.0, 'could': 1.0, 't': 1.0, 'the': 7.0, 'great': 2.0, 'models': 1.0, 'with': 2.0, 'normally': 1.0, 'it': 2.0, 'in': 3.0, 'monitors': 1.0, 'glad': 1.0, 'reviews': 2.0, 'didn': 1.0, 'got': 3.0, 'saved': 1.0, 'otherwise': 1.0, 'i': 11.0, 'quality': 2.0, 'them': 1.0, 'night': 1.0, 'clear': 1.0, 'despite': 1.0, 'battery': 1.0, 'home': 2.0, 'live': 1.0, 'low': 1.0, 'were': 1.0, 'terrible': 1.0, '40': 1.0, 'this': 3.0, 'found': 1.0, 'make': 1.0, 'on': 3.0, 'really': 1.0, 'pleased': 1.0, 'mine': 1.0, 'light': 1.0, 'more': 2.0, 'is': 2.0, 'comes': 1.0, 'crystal': 1.0}
Word element => {'not': 1.0, 're': 1.0, 'you': 1.0, 'if': 1.0, 'so': 1.0, 'that': 1.0, 'see': 1.0, 'unit': 1.0, 'received': 1.0, 'had': 1.0, 'mean': 1.0, 'then': 1.0, 'took': 1.0, 'stupidly': 1.0, 'batteries': 4.0, 'adaptor': 1.0, 'looking': 2.0, 'this': 1.0, 'carefully': 1.0, 'specific': 1.0, 'was': 2.0, 'to': 4.0, 'wanted': 1.0, 'is': 1.0, 'annoyed': 1.0, 'an': 1.0, 'but': 1.0, 'out': 1.0, 'it': 6.0, 'ac': 1.0, 'with': 2.0, 'even': 2.0, 'the': 5.0, 'm': 1.0, 'graco': 1.0, 'only': 1.0, 'try': 1.0, 'opened': 1.0, 'over': 1.0, 'isn': 1.0, 'site': 1.0, 'today': 1.0, 'battery': 1.0, 'annoyance': 1.0, 'really': 1.0, 'second': 1.0, 'yet': 1.0, 'product': 1.0, 'for': 2.0, 'one': 1.0, 'requires': 1.0, 'my': 1.0, 'since': 1.0, 't': 2.0, 'going': 1.0, 'a': 2.0, 'haven': 1.0, 'inexpensive': 1.0, '3aaa': 1.0, 'monitor': 2.0, 'rechargeable': 4.0, 'description': 1.0, 'and': 1.0, 'after': 1.0, 'which': 1.0, 'reading': 1.0, 'i': 4.0, 'stated': 1.0, 'because': 1.0, 'power': 1.0, 'source': 1.0}
Word element => {'buttons': 1.0, 'or': 1.0, 'snaps': 1.0, 'never': 1.0, 'grace': 1.0, 'manage': 1.0, 'saving': 1.0, 'time': 1.0, 'sacks': 1.0, 'husbands': 1.0, 'night': 2.0, 'my': 1.0, 'zipper': 1.0, 'were': 1.0, 'changes': 1.0, 'the': 1.0, 'these': 1.0, 'diaper': 1.0, 'could': 1.0, 'during': 2.0, 'we': 1.0, 'always': 1.0, 'recommend': 1.0, 'he': 1.0, 'them': 1.0, 'now': 1.0, 'to': 1.0, 'new': 1.0, 'parents': 1.0}
Word element => {'15': 1.0, 'enough': 1.0, 'back': 1.0, 'now': 1.0, 'lately': 1.0, 'attention': 1.0, 'bored': 1.0, 'vigorous': 1.0, 'me': 1.0, 'not': 1.0, 'ok': 1.0, 's': 1.0, 'spins': 1.0, 'if': 1.0, 'his': 1.0, 'it': 7.0, 'he': 8.0, 'just': 2.0, 'by': 1.0, 'when': 4.0, 'but': 1.0, 'will': 1.0, 'spill': 1.0, 'was': 2.0, 'and': 3.0, 'had': 1.0, '12': 1.0, 'over': 1.0, 'semi': 1.0, 'months': 3.0, 'bought': 1.0, 'floor': 1.0, 'wants': 1.0, 'son': 1.0, 'usually': 1.0, 'does': 3.0, '14': 1.0, 'i': 1.0, 'these': 1.0, 'hands': 1.0, 'the': 4.0, 'three': 1.0, 'drink': 1.0, 'my': 1.0, 'or': 1.0, 'motion': 1.0, 'cup': 1.0, 'interested': 1.0, 'down': 2.0, 'favorite': 1.0, 'started': 1.0, 'them': 1.0, 'sippy': 1.0, 'problem': 1.0, 'sprinkle': 1.0, 'occassionally': 1.0, 'around': 2.0, 'is': 3.0, 'loves': 1.0, 'that': 3.0, 'has': 1.0, 'likes': 1.0, 'cups': 1.0, 'to': 3.0, 'all': 1.0, 'turn': 1.0, 'upside': 2.0, 'shake': 1.0, 'shaking': 1.0, 'only': 3.0, 'happens': 1.0, 'start': 1.0}
Word element => {'disappointing': 1.0, 'pretty': 1.0, 'the': 1.0, 'ripped': 1.0, 'already': 1.0, 'in': 2.0, 'center': 1.0, 'year': 1.0, 'oct': 1.0, 'and': 1.0, 'bought': 1.0, 's': 1.0, 'actually': 1.0, 'this': 1.0, 'it': 2.0, 'i': 2.0, 'rips': 1.0, 'hoping': 1.0, 'was': 1.0, 'would': 1.0, 'two': 1.0, 'at': 1.0, 'least': 1.0, 'last': 1.0, 'a': 1.0}
Word element => {'already': 1.0, 'being': 1.0, 'seems': 1.0, 'about': 1.0, 'nothing': 1.0, 'and': 2.0, 'very': 1.0, 'can': 1.0, 'beat': 1.0, 'you': 1.0, 'that': 1.0, 'amazing': 1.0, 'came': 1.0, 'plus': 1.0, 'there': 1.0, 'waterproof': 2.0, 'moderately': 1.0, 'this': 2.0, 'it': 3.0, 'with': 2.0, 'mattress': 1.0, 'is': 3.0, 'really': 1.0, 'comfortable': 1.0, 'bed': 2.0, 't': 1.0, 'lightweight': 1.0, 'the': 1.0, 'i': 2.0, 'reliable': 1.0, 'bought': 1.0, 'mean': 1.0}
Word element => {'price': 1.0, 'very': 1.0, 'right': 1.0, 'just': 1.0, 'hard': 1.0, 'it': 2.0, 'he': 7.0, 'matress': 1.0, 'son': 1.0, 'when': 1.0, 'hurt': 1.0, 'sometimes': 1.0, 'i': 3.0, 'him': 3.0, 'let': 1.0, 'my': 3.0, 'for': 3.0, 'bed': 1.0, 'is': 4.0, '8': 1.0, 'alway': 1.0, 'bought': 1.0, 'months': 1.0, 'so': 1.0, 'himself': 1.0, 'good': 1.0, 'bump': 1.0, 'but': 1.0, 'doesn': 1.0, 'this': 2.0, 'soft': 1.0, 'mattress': 2.0, 'his': 2.0, 'except': 1.0, 'since': 1.0, 'lot': 1.0, 'active': 1.0, 'crib': 2.0, 'falls': 1.0, 'got': 1.0, 'sits': 1.0, 's': 1.0, 'a': 1.0, 't': 1.0, 'in': 3.0, 'cry': 1.0, 'up': 1.0, 'play': 2.0, 'too': 2.0, 'and': 2.0, 'has': 1.0, 'to': 1.0, 'not': 1.0}
Word element => {'happy': 1.0, 'you': 1.0, 'mattresses': 1.0, 'through': 1.0, 'fit': 1.0, 'enough': 1.0, 'crib': 1.0, 'buy': 1.0, 'waterproof': 1.0, 'son': 1.0, 'has': 1.0, 'been': 1.0, 'that': 1.0, 'comfortable': 1.0, 'snug': 1.0, 'night': 1.0, 'i': 3.0, 'but': 1.0, 'will': 1.0, 'secure': 1.0, 'weeks': 1.0, 'since': 1.0, 'my': 1.0, 'the': 3.0, 'crinkly': 1.0, 'obviously': 1.0, 'not': 2.0, 'in': 1.0, 'and': 1.0, 'too': 1.0, 'this': 1.0, 'soft': 1.0, 'one': 1.0, 'casing': 1.0, '6': 1.0, 'on': 1.0, 'is': 1.0, 'researching': 1.0, 'noisy': 1.0, 'or': 1.0, 'sleeping': 1.0, 'like': 1.0, 'it': 1.0, 'might': 1.0, 'be': 2.0, 'time': 1.0, 'so': 1.0, 'glad': 1.0, 'thought': 1.0, 'purchased': 1.0, 'spent': 1.0, 'way': 1.0, 'to': 1.0, 'much': 1.0}
Word element => {'that': 1.0, 'price': 1.0, 'bed': 1.0, 'for': 3.0, 'way': 1.0, 'my': 1.0, 'it': 5.0, 'unbeatable': 1.0, 'hard': 1.0, 'year': 1.0, 'son': 1.0, 'in': 1.0, 'newborn': 1.0, 'but': 1.0, '2': 1.0, 'the': 1.0, 'is': 4.0, 'padding': 1.0, 'there': 1.0, 'course': 1.0, 's': 2.0, 'a': 4.0, 'old': 1.0, 'i': 2.0, 'this': 1.0, 'mattress': 1.0, 'toddler': 2.0, 'and': 1.0, 'too': 1.0, 'or': 1.0, 'good': 1.0, 'feels': 1.0, 'placed': 1.0, 'enough': 1.0, 'like': 1.0, 'reason': 1.0, 'foam': 1.0, 'with': 1.0, 'piece': 1.0, 'on': 1.0, 'of': 2.0, 'plywood': 1.0, 'some': 1.0, 'covered': 1.0, 'definitely': 1.0, 'not': 1.0, 'sleep': 1.0, 'to': 1.0, 'll': 1.0, 'him': 1.0, 'be': 1.0, 'returning': 1.0, 'asap': 1.0}
Word element => {'and': 1.0, 'fitting': 1.0, 'clean': 1.0, 'have': 1.0, 'chance': 1.0, 'yet': 2.0, 'the': 1.0, 'my': 1.0, 'use': 1.0, 'but': 1.0, 'easy': 1.0, 'be': 1.0, 'mattress': 2.0, 'nice': 1.0, 'to': 3.0, 'had': 1.0, 'not': 2.0, 'i': 1.0, 'here': 1.0, 'as': 1.0, 'baby': 1.0, 'is': 1.0, 'this': 1.0, 'it': 1.0, 'seems': 1.0, 'well': 1.0, 'a': 1.0}
Word element => {'wait': 1.0, 't': 1.0, 'i': 1.0, 'get': 1.0, 'and': 2.0, 'like': 1.0, 'in': 1.0, 'newborn': 1.0, 'exactly': 1.0, 'mentioned': 1.0, 'one': 1.0, 'for': 2.0, 'little': 1.0, 'crib': 1.0, 'it': 1.0, 'this': 1.0, 'basic': 1.0, 'a': 1.0, 'needed': 1.0, 'other': 1.0, 'we': 2.0, 'mattress': 1.0, 'what': 1.0, 'our': 2.0, 'were': 1.0, 'can': 1.0, 'looking': 1.0, 'is': 1.0, 'people': 1.0, 'no': 1.0, 'to': 1.0, 'had': 1.0, 'bowing': 1.0}
Word element => {'pay': 1.0, 'one': 1.0, 'cheapest': 1.0, 'bought': 1.0, 'more': 1.0, 'the': 3.0, 'ones': 1.0, 'because': 1.0, 'same': 1.0, 'have': 1.0, 'comply': 1.0, 'manufacturers': 1.0, 'government': 1.0, 'it': 1.0, 'this': 1.0, 'with': 2.0, 'we': 1.0, 'safety': 1.0, 'was': 1.0, 'to': 1.0, 'standards': 1.0, '34': 2.0, 'why': 1.0, 'as': 1.0, 'regulations': 1.0, 'expensive': 1.0}
Word element => {'now': 1.0, 'exactly': 1.0, 'about': 1.0, 'night': 1.0, 'i': 2.0, 'is': 1.0, 'sleeping': 1.0, 'son': 1.0, 'read': 1.0, 'positive': 1.0, 'review': 1.0, 'been': 1.0, 'every': 1.0, 'got': 1.0, 'and': 1.0, 'like': 1.0, 'the': 1.0, 'more': 1.0, 'my': 1.0, 'what': 1.0, 'mattress': 1.0, 'his': 1.0, 'through': 1.0, 'new': 1.0, 'bed': 1.0, 'this': 1.0, 'he': 1.0, 'has': 1.0}
Word element => {'mattress': 1.0, 'a': 1.0, 'looking': 1.0, 'someone': 1.0, 'recommend': 1.0, 'would': 1.0, 'i': 1.0, 'quickly': 1.0, 'and': 1.0, 'our': 1.0, 'this': 2.0, 'fit': 1.0, 'to': 1.0, 'exactly': 1.0, 'for': 1.0, 'in': 1.0, 'crib': 2.0, 'works': 1.0, 'great': 1.0, 'it': 1.0, 'shipped': 1.0}
Word element => {'reason': 1.0, 'with': 1.0, 'should': 1.0, 'probably': 1.0, 'have': 1.0, 'grandson': 1.0, 'it': 1.0, 'very': 1.0, 'one': 1.0, 'does': 1.0, 'not': 1.0, 'springs': 1.0, 'seem': 1.0, 'gotten': 1.0, 'to': 1.0, 'be': 1.0, 'that': 1.0, 'comfortable': 1.0, 'for': 2.0, 'my': 1.0, 'little': 1.0}
Word element => {'good': 1.0, 'cover': 1.0, 'purchase': 1.0, 'bedding': 1.0, 'changing': 1.0, 'great': 2.0, 'the': 3.0, 'waterproof': 1.0, 'is': 4.0, 'light': 1.0, 'foam': 1.0, 'nice': 1.0, 'crib': 1.0, 'for': 1.0, 'which': 2.0, 'firm': 1.0, 'but': 1.0, 'its': 1.0, 'and': 1.0, 'very': 2.0}
Word element => {'great': 1.0, 'having': 1.0, 'since': 1.0, 'pains': 1.0, 'had': 1.0, 'has': 1.0, 'comfortably': 1.0, 'more': 1.0, 'is': 1.0, 'now': 2.0, 'quality': 1.0, 'with': 2.0, 'it': 2.0, 'so': 2.0, 'anymore': 1.0, 'was': 4.0, 'er': 1.0, 'out': 2.0, 'him': 2.0, 'would': 1.0, 'took': 1.0, 'i': 4.0, 'old': 2.0, 'son': 2.0, 'day': 1.0, 'crying': 1.0, 'from': 1.0, 'firm': 1.0, 'but': 1.0, 'one': 2.0, 'uncomfortable': 1.0, 'the': 3.0, 't': 1.0, 'my': 2.0, 'and': 5.0, 'happy': 1.0, 'woke': 1.0, 'not': 1.0, 'me': 1.0, 'threw': 1.0, 'up': 1.0, 'replaced': 1.0, 'fine': 1.0, 'really': 1.0, 'how': 1.0, 'received': 1.0, 'he': 2.0, 'upper': 1.0, 'on': 1.0, 'dr': 1.0, 'positions': 1.0, 'told': 1.0, 'back': 2.0, 'check': 1.0, 'his': 4.0, 'didn': 1.0, 'surprised': 1.0, 'realize': 1.0, 'sink': 1.0, 'this': 3.0, 'found': 1.0, 'pain': 1.0, 'mattress': 6.0, 'soft': 1.0, 'when': 2.0, 'slept': 1.0, 'sleeping': 1.0, 'body': 1.0, 'in': 1.0, 'that': 1.0, 'into': 1.0, 'leaving': 1.0, 'to': 3.0, 'sleep': 1.0}
Word element => {'for': 1.0, 'value': 1.0, 'snd': 1.0, 'we': 1.0, 'glad': 1.0, 'fits': 1.0, 'money': 1.0, 'firm': 1.0, 'proven': 1.0, 'crib': 1.0, 'waterproof': 1.0, 'others': 1.0, 'perfectly': 1.0, 'and': 1.0, 'quality': 1.0, 'nice': 1.0, 'over': 1.0, 'completely': 1.0, 'it': 1.0, 'this': 1.0, 's': 1.0, 'to': 1.0, 'bought': 1.0, 'be': 1.0, 'the': 1.0, 'as': 1.0, 'best': 1.0}
Word element => {'would': 1.0, 'better': 1.0, 'is': 1.0, 'but': 1.0, 'perfectly': 1.0, 'it': 3.0, 'the': 2.0, 'fits': 1.0, 'than': 2.0, 'kids': 1.0, 'came': 1.0, 'one': 1.0, 'bed': 1.0, 'large': 1.0, 'nice': 1.0, 'fast': 1.0, 'very': 1.0, 'box': 1.0, 'like': 1.0, 'anyone': 1.0, 'seems': 1.0, 'a': 2.0, 'recommend': 1.0, 'lot': 1.0, 'to': 2.0, 'was': 1.0, 'little': 1.0, 'expected': 1.0, 'bit': 1.0, 'lighter': 1.0, 'old': 1.0, 'i': 1.0}
Word element => {'springs': 1.0, 'has': 1.0, 'over': 1.0, 'glad': 1.0, 'and': 1.0, 'is': 1.0, 'firm': 1.0, 'concerned': 1.0, 'we': 2.0, 'to': 1.0, 'was': 2.0, 'not': 1.0, 'able': 1.0, 'at': 1.0, 'crib': 1.0, 'one': 1.0, 'for': 1.0, 'in': 1.0, 'that': 2.0, 'new': 1.0, 'the': 2.0, 'it': 1.0, 'this': 2.0, 'bought': 3.0, 'firmness': 1.0, 'person': 1.0, 'test': 1.0, 'very': 1.0, 'but': 1.0, 'surprised': 1.0, 'being': 1.0, 'how': 1.0}
Word element => {'one': 1.0, 'cover': 1.0, 'proof': 1.0, 'perfect': 1.0, 'regular': 1.0, 'nice': 1.0, 'mattress': 1.0, 'buying': 1.0, 'size': 1.0, 'shipping': 1.0, 'another': 1.0, 'price': 1.0, 'problem': 1.0, 'if': 1.0, 'goes': 1.0, 'quick': 1.0, 'first': 1.0, 'good': 1.0, 'no': 1.0, 'something': 1.0, 'water': 1.0, 'wrong': 1.0, 'i': 1.0, 'will': 1.0, 'have': 1.0}
Word element => {'packaged': 1.0, 'well': 1.0, 'crib': 1.0, 'kalani': 1.0, 'price': 1.0, 'mattress': 2.0, 'davinci': 1.0, 'is': 1.0, 'feels': 2.0, 'perfectly': 1.0, 'great': 2.0, 'and': 3.0, 'the': 2.0, 'my': 1.0, 'firm': 1.0, 'fits': 1.0, 'promptly': 1.0, 'arrived': 1.0, 'into': 1.0}
Word element => {'is': 1.0, 'great': 1.0, 'it': 1.0, 'and': 1.0, 'fits': 1.0, 'safe': 1.0, 'they': 1.0, 'comfortable': 1.0, 'there': 1.0, 'this': 1.0, 'crib': 1.0, 'in': 1.0, 'for': 1.0, 'baby': 1.0, 'house': 1.0, 'the': 1.0, 'my': 2.0, 'are': 2.0, 'got': 1.0, 'so': 1.0, 'i': 1.0, 'grandchildren': 1.0, 'when': 1.0}
Word element => {'making': 1.0, 'before': 1.0, 'detail': 1.0, 'every': 1.0, 'you': 1.0, 'stuff': 1.0, 'out': 1.0, 'check': 1.0, 's': 1.0, 'items': 1.0, 'essential': 1.0, 'mattresses': 1.0, 'comes': 1.0, 'materials': 1.0, 'cheap': 1.0, 'from': 1.0, 'made': 1.0, 'lousy': 1.0, 'likely': 1.0, 'inexpensive': 1.0, 'anymore': 1.0, 'store': 1.0, 'baby': 1.0, 'unfortunately': 1.0, 'we': 13.0, 'a': 4.0, 'kid': 1.0, 'purchase': 2.0, 'another': 2.0, 'decided': 1.0, 'after': 1.0, 'better': 1.0, 'durability': 1.0, 'couldn': 1.0, 'heavenly': 1.0, 'and': 2.0, 'similar': 1.0, 'happy': 1.0, 'one': 1.0, 'too': 1.0, 'was': 3.0, '60': 1.0, 'to': 5.0, 'item': 1.0, 'lajobi': 1.0, 'our': 1.0, 'fooled': 1.0, 'as': 2.0, 'end': 1.0, 'other': 1.0, 'lessons': 1.0, 'an': 2.0, 'it': 5.0, 'with': 1.0, '2009': 1.0, 'r': 1.0, 'foam': 1.0, 'find': 1.0, 'having': 1.0, 'scrutinize': 1.0, 'than': 1.0, 'tear': 2.0, 'found': 3.0, 'mattress': 4.0, 'person': 1.0, 'the': 11.0, 'doing': 1.0, 'when': 2.0, 'learned': 2.0, 'embrace': 2.0, 'in': 2.0, 'itself': 1.0, 'first': 1.0, 'bad': 1.0, 'for': 2.0, 'package': 1.0, 'where': 1.0, 'babies': 1.0, 'that': 3.0, 'were': 5.0, 'price': 1.0, 'product': 2.0, 'child': 1.0, 'gentle': 2.0, 'is': 1.0, 'at': 2.0, 'online': 1.0, 'flimsy': 1.0, 'its': 1.0, 'research': 1.0, 'safety': 1.0, 'even': 1.0, 'didn': 1.0, 'dreams': 1.0, 'on': 5.0, 'amazon': 1.0, 'but': 2.0, 'amazed': 1.0, 't': 2.0, 'cost': 1.0, 'affordable': 1.0, 'less': 1.0, 'can': 1.0, 'so': 3.0, '1st': 1.0, 'went': 1.0, 'opened': 1.0, 'plastic': 2.0, 'soon': 1.0, 'there': 2.0, 'same': 1.0, 'box': 1.0, 'spot': 1.0, 'wrapper': 1.0, 'crib': 3.0, 'features': 1.0, 'torn': 1.0, 'obviously': 1.0, 'expect': 1.0, 'us': 1.0, 'also': 2.0, 'mishandling': 1.0, 'involved': 1.0, 'distributor': 1.0, 'material': 1.0, 'be': 2.0}
Word element => {'dreams': 1.0, 'our': 1.0, 'deal': 1.0, 'for': 1.0, 'crib': 2.0, 'safety': 1.0, 'best': 1.0, 'find': 1.0, 'the': 2.0, 'tried': 1.0, 'to': 1.0, 'with': 1.0, 'we': 2.0, 'a': 1.0, 'complaints': 1.0, '1st': 1.0, 'mattress': 2.0, 'and': 1.0, 'have': 1.0, 'no': 1.0, 'money': 1.0, 'baby': 1.0, 'about': 1.0, 'heavenly': 1.0}
Word element => {'came': 1.0, 'from': 1.0, 'carry': 1.0, 'right': 1.0, 'store': 1.0, 'to': 2.0, 'have': 1.0, 'nice': 1.0, 'matteress': 1.0, 'and': 1.0, 'very': 1.0, 'it': 2.0, 'great': 1.0, 'money': 1.0, 'doorstep': 1.0, 'i': 1.0, 'for': 1.0, 'my': 1.0, 'the': 1.0, 'not': 1.0, 'home': 1.0, 'did': 1.0}
Word element => {'item': 1.0, 'purchase': 1.0, 'dissatisfied': 1.0, 'from': 1.0, 'very': 1.0, 'am': 1.0, 'recommendations': 1.0, 'reading': 1.0, 'after': 1.0, 'bought': 1.0, 'had': 1.0, 'reviews': 1.0, 'sleeps': 1.0, 'area': 1.0, 'read': 1.0, 'glowing': 2.0, 'she': 1.0, 'sag': 1.0, 'a': 1.0, 'baby': 1.0, 'clear': 1.0, 'i': 2.0, 'noticeable': 1.0, 'old': 1.0, 'barely': 1.0, 'in': 2.0, 'been': 1.0, 'crib': 1.0, 'for': 1.0, 'has': 3.0, '5': 1.0, 'months': 1.0, 'lbs': 1.0, 'and': 3.0, 'month': 1.0, 'girl': 1.0, 'new': 1.0, 'several': 1.0, '18': 1.0, 'my': 3.0, 'distinction': 1.0, 'the': 5.0, '2': 1.0, 'it': 1.0, 'with': 2.0, 'this': 1.0, 'mattress': 2.0}
Word element => {'on': 1.0, 'well': 1.0, 'sleeps': 1.0, 'new': 1.0, 'his': 1.0, 'my': 1.0, 'i': 1.0, 'it': 1.0, 'bought': 1.0, 'mattress': 1.0, 'toddler': 1.0, 'nicely': 1.0, 'and': 2.0, 'loves': 1.0, 'grandson': 1.0, 'this': 2.0, 'for': 1.0, 'a': 1.0, 'bed': 2.0, 'frame': 1.0, 'fits': 1.0}
Word element => {'makes': 1.0, 'when': 1.0, 'it': 1.0, 'likes': 1.0, 'arrival': 1.0, 'she': 1.0, 'baby': 1.0, 'nice': 1.0, 'mattress': 1.0, 'for': 1.0, 'look': 1.0, 'forward': 1.0, 'to': 1.0, 'the': 2.0, 'seeing': 1.0, 'soon': 1.0, 'her': 1.0, 'price': 1.0, 'if': 1.0}
Word element => {'very': 2.0, 'options': 1.0, 'over': 1.0, 'good': 1.0, 'the': 1.0, 'were': 1.0, 'fears': 1.0, 'of': 1.0, 'report': 1.0, 'quite': 1.0, 'happy': 1.0, 'some': 1.0, 'comfortably': 1.0, 'comfort': 1.0, 'worried': 2.0, 'other': 1.0, 'making': 1.0, 'about': 1.0, 'money': 1.0, 'firm': 2.0, 'baby': 2.0, 'also': 1.0, 'online': 1.0, 'perfectly': 1.0, 'down': 1.0, 'suitable': 1.0, 'because': 1.0, 'find': 1.0, 'mattress': 1.0, 'this': 2.0, 'unfounded': 1.0, 'that': 2.0, 'as': 1.0, 'all': 1.0, 'to': 2.0, 'our': 1.0, 'savings': 1.0, 'something': 1.0, 'me': 1.0, 'getting': 1.0, 'crib': 2.0, 'was': 2.0, 'sleeps': 1.0, 'is': 3.0, 'it': 3.0, 'felt': 1.0, 'know': 1.0, 'hand': 1.0, 'whether': 1.0, 'and': 4.0, 'appropriately': 1.0, 'until': 1.0, 'almost': 1.0, 'on': 1.0, 'lastly': 1.0, 't': 2.0, 'a': 3.0, 's': 1.0, 'guilty': 1.0, 'so': 1.0, 'compromising': 1.0, 'inexpensively': 1.0, 'i': 8.0, 'thinking': 1.0, '34': 2.0, 'am': 2.0, 'fits': 1.0, 'save': 1.0, 'purchase': 1.0, 'my': 3.0, 'got': 1.0, 'wouldn': 2.0, 'safety': 1.0}
Word element => {'that': 1.0, 'right': 1.0, 'this': 1.0, 'hard': 1.0, 'mattress': 1.0, 'one': 1.0, 'for': 1.0, 'crib': 1.0, 'price': 1.0, 'quality': 1.0, 'to': 1.0, 'beat': 1.0, 'the': 3.0, 'great': 1.0, 'perfectly': 1.0, 'fit': 1.0, 'firmness': 1.0, 'is': 1.0, 'on': 1.0, 'just': 1.0, 'so': 1.0, 'glad': 1.0, 'i': 1.0, 'best': 1.0, 'decided': 1.0}
Word element => {'did': 1.0, 'frame': 1.0, 'and': 1.0, 'perfectly': 1.0, 'the': 5.0, 'at': 2.0, 'no': 2.0, 'sheets': 1.0, 'have': 1.0, 'tightly': 1.0, 'fits': 1.0, 'smell': 1.0, 'fit': 2.0, 'it': 3.0, 'jenny': 1.0, 'with': 1.0, 'this': 1.0, 'mattress': 4.0, 'purchased': 1.0, 'between': 1.0, 'we': 2.0, 'a': 1.0, 'crib': 3.0, 'into': 1.0, 'lind': 1.0, 'been': 1.0, 'not': 1.0, 'kind': 1.0, 'sleeping': 1.0, 'problems': 1.0, 'from': 1.0, 'very': 1.0, 'of': 1.0, 'chemical': 1.0, 'when': 1.0, 'daughter': 1.0, 'opened': 1.0, 'package': 1.0, 'to': 2.0, 'all': 2.0, 'any': 1.0, 'our': 2.0, 'has': 1.0, 'target': 1.0, 'gaps': 1.0, 'on': 2.0, 'also': 1.0, 'regular': 1.0}
Word element => {'fits': 1.0, 'love': 1.0, 'of': 2.0, 'expedited': 1.0, 'quality': 1.0, 'as': 1.0, 'boxed': 1.0, 'because': 1.0, 'great': 1.0, 'the': 2.0, 'it': 1.0, 'this': 1.0, 'delivery': 1.0, 'and': 2.0, 'chose': 1.0, 'i': 2.0, 'stated': 1.0, 'rating': 1.0, 'a': 1.0, 'mattress': 1.0, 'packaged': 1.0, 'perfect': 1.0, 'in': 1.0, 'plastic': 1.0, 'price': 1.0}
Word element => {'great': 1.0, 'not': 1.0, 'is': 1.0, 'course': 1.0, 'before': 1.0, 'years': 1.0, 'our': 1.0, 'seems': 1.0, 'she': 1.0, 'this': 1.0, 'it': 2.0, 'be': 2.0, 'to': 2.0, 'whether': 1.0, 'of': 1.0, 'bed': 1.0, 'tell': 1.0, 'daughter': 1.0, 'us': 1.0, 'or': 1.0, 'able': 1.0, 'likes': 1.0, 'quality': 1.0, 'will': 1.0, 'but': 1.0}
Word element => {'quality': 1.0, 'out': 1.0, 'foam': 1.0, 'was': 2.0, 'when': 2.0, 'waterproof': 1.0, 'comes': 1.0, 'firm': 1.0, 'change': 1.0, 'a': 5.0, 'go': 1.0, 's': 1.0, 'bedding': 1.0, 'barely': 1.0, 'you': 2.0, 'gapping': 1.0, 'no': 2.0, 'say': 1.0, 'stink': 1.0, 'being': 1.0, 'if': 1.0, '1': 1.0, 'great': 2.0, 'fit': 1.0, 'love': 2.0, 'far': 1.0, 'can': 3.0, 'zips': 1.0, 'so': 1.0, 'bit': 1.0, 'that': 1.0, 'check': 1.0, 'big': 1.0, 'liberty': 1.0, 'loosen': 1.0, 'thing': 1.0, 'ourdream': 1.0, 'hard': 1.0, 'it': 9.0, 'mattress': 5.0, 'with': 3.0, 'elastic': 1.0, 'purchased': 1.0, 'either': 2.0, 'collection': 1.0, 'white': 1.0, 'stretchier': 1.0, 'well': 1.0, 'i': 7.0, '4': 1.0, 'on': 3.0, 'here': 1.0, 'force': 1.0, 'honestly': 1.0, 'in': 3.0, 'crib': 2.0, 'without': 1.0, 'slightly': 1.0, 'not': 1.0, 'and': 5.0, 'too': 1.0, 'there': 1.0, 'to': 6.0, 'high': 2.0, 'we': 1.0, 'reviews': 1.0, 'really': 1.0, 'have': 1.0, 'get': 1.0, 'some': 1.0, 'finger': 1.0, 'the': 8.0, 'of': 3.0, 'me': 3.0, 'my': 1.0, 'purchase': 1.0, 'another': 1.0, 'fitted': 1.0, 'sheets': 2.0, 'little': 1.0, 'this': 4.0, 'thicker': 1.0, 'but': 1.0, 'corners': 1.0, 'for': 3.0, 'fabric': 1.0, 'clean': 1.0, 'fingertip': 1.0, 'way': 1.0, 'worked': 1.0, 'is': 4.0, 'at': 1.0, 'as': 1.0, 'heavy': 1.0, 'based': 1.0, 'side': 1.0, 'which': 1.0, 'unzipped': 1.0, 'makes': 1.0, 'opened': 1.0, 'four': 1.0, 'cover': 3.0, 'off': 1.0, 'all': 4.0, 'ever': 1.0, 'packed': 1.0, 'thats': 1.0, 'or': 2.0, 'need': 1.0, 'something': 1.0}
Word element => {'next': 1.0, 'recommend': 1.0, 'would': 1.0, 'again': 1.0, 'comfortable': 1.0, 'old': 1.0, 'and': 1.0, 'very': 1.0, 'purchases': 1.0, 'bought': 1.0, 'made': 1.0, 'my': 2.0, 'will': 1.0, 'baby': 2.0, 'this': 1.0, 'mattress': 1.0, 'for': 2.0, 'i': 3.0, '4': 1.0, 'it': 1.0, 'month': 1.0}
Word element => {'crib': 1.0, 'like': 1.0, 'good': 1.0, 'victoria': 1.0, 'yet': 1.0, 'my': 1.0, 'use': 1.0, 'hopefully': 1.0, 'fits': 1.0, 'not': 1.0, 'have': 1.0, 'perfectly': 1.0, 'i': 1.0, 'quality': 1.0, 'but': 1.0, 'will': 1.0, 'material': 1.0, 'be': 1.0, 'it': 3.0, 'durable': 1.0, 'seems': 1.0, 'in': 1.0, 'graco': 1.0, 'too': 1.0}
Word element => {'high': 1.0, 'anyone': 1.0, 'a': 3.0, 'soft': 1.0, 'would': 1.0, 'weight': 1.0, 'to': 2.0, 'recommend': 1.0, 'easy': 1.0, 'smell': 1.0, 'say': 1.0, 'i': 2.0, 'looking': 1.0, 'plastic': 1.0, 'must': 1.0, 'clean': 1.0, 'arrived': 1.0, 'have': 1.0, 'but': 2.0, 'quality': 2.0, 'for': 2.0, 'yet': 1.0, 'hasn': 1.0, 'am': 1.0, 'price': 2.0, 'firm': 1.0, 'highly': 2.0, 'baby': 1.0, 'and': 3.0, 'impressed': 1.0, 'mattress': 3.0, 'is': 3.0, 'this': 2.0, 'with': 1.0, 'it': 2.0, 'the': 1.0, 't': 1.0, 'great': 3.0, 'light': 1.0, 'doesnt': 1.0, 'that': 1.0}
Word element => {'but': 1.0, 'recommend': 1.0, 'definitely': 1.0, 'i': 1.0, 'our': 1.0, 'comfortable': 1.0, 'for': 1.0, 'we': 1.0, 'limbs': 1.0, 'or': 1.0, 'firm': 1.0, 'baby': 1.0, 'would': 1.0, 'sides': 1.0, 'the': 2.0, 'fit': 1.0, 'around': 1.0, 'stuck': 1.0, 'in': 3.0, 'crib': 1.0, 'bought': 1.0, 'fits': 1.0, 'fingers': 1.0, 'to': 2.0, 'was': 1.0, 'got': 1.0, 'use': 1.0, 'pad': 1.0, 'a': 1.0, 'craft': 1.0, 'are': 1.0, 'mattress': 2.0, 'sheets': 1.0, 's': 2.0, 'gaps': 1.0, 'tuscany': 1.0, '4': 1.0, 'stork': 1.0, 'no': 1.0, 'shower': 1.0, 'this': 2.0, 'it': 3.0, 'get': 1.0, '1': 1.0, 'and': 3.0, 'perfectly': 2.0, 'there': 1.0}
Word element => {'when': 1.0, 'week': 1.0, 'a': 1.0, 'than': 1.0, 'now': 1.0, 'time': 1.0, 'haven': 1.0, 't': 1.0, 'first': 1.0, 'gotten': 1.0, 'later': 1.0, 'not': 1.0, 'at': 1.0, 'her': 1.0, 'should': 1.0, 'yet': 1.0, 'the': 4.0, 'needs': 1.0, 'get': 2.0, 'bed': 3.0, 'mattress': 1.0, 'baby': 1.0, 'same': 1.0}
Word element => {'wouldn': 1.0, 'it': 1.0, 'purchased': 1.0, 'crib': 2.0, 'in': 1.0, 'this': 2.0, 'mattress': 2.0, 'nervous': 1.0, 'reviews': 1.0, 'reading': 1.0, 'of': 1.0, 'the': 4.0, 'great': 2.0, 'snugly': 1.0, 'stork': 1.0, 'negative': 1.0, 'or': 1.0, 'into': 1.0, 'i': 2.0, 'some': 1.0, 'monza': 1.0, 'touch': 1.0, 'not': 1.0, 'would': 1.0, 'after': 1.0, 'was': 1.0, 'be': 1.0, 'money': 1.0, 'firm': 2.0, 'to': 1.0, 'our': 1.0, 'craft': 1.0, 't': 1.0, 'we': 2.0, 'a': 2.0, 'ii': 1.0, 'and': 2.0, 'is': 2.0, 'very': 1.0, 'enough': 1.0, 're': 1.0, 'think': 1.0, 'on': 1.0, 'fits': 1.0, 'tight': 1.0, 'fit': 1.0, 'for': 1.0, 'budget': 1.0}
Word element => {'work': 1.0, 'product': 1.0, 'packing': 1.0, 'believe': 1.0, 'however': 1.0, 'cause': 1.0, 't': 1.0, 'figured': 1.0, 'the': 5.0, 'needs': 1.0, 'hole': 2.0, 'a': 2.0, 'item': 1.0, 'received': 1.0, 'is': 1.0, 'fine': 1.0, 'i': 3.0, 'bottom': 2.0, 'punched': 1.0, 'of': 2.0, 'problem': 1.0, 'keep': 1.0, 'shouldn': 1.0, 'with': 1.0, 'this': 2.0, 'it': 2.0, 'considering': 1.0, 'through': 1.0, 'top': 1.0, 'we': 1.0, 'would': 1.0, 'some': 1.0, 'at': 1.0, 'just': 1.0}
Word element => {'quality': 1.0, 'good': 1.0, 'be': 1.0, 'price': 1.0, 'baby': 1.0, 'and': 1.0, 'all': 1.0, 'this': 1.0, 'blow': 1.0, 'reasonable': 1.0, 'mattress': 1.0, 'for': 1.0, 'seemed': 1.0, 'kids': 1.0, 'cover': 1.0, 'up': 1.0, 'set': 1.0, '34': 2.0, 'new': 1.0, 'accidental': 1.0, 'the': 4.0, 'has': 1.0, 'outs': 1.0, 'a': 2.0, 'protect': 1.0, 'was': 1.0, 'had': 1.0, 'to': 2.0, 'from': 1.0}
Word element => {'highly': 1.0, 'baby': 1.0, 'your': 1.0, 'do': 1.0, 'which': 1.0, 'added': 1.0, 'thin': 1.0, 'purchase': 1.0, 'problems': 1.0, 'bed': 1.0, 'pleased': 1.0, 'used': 1.0, 'co': 2.0, 'recommend': 2.0, 'was': 2.0, 'because': 1.0, 'comfortable': 2.0, 'some': 1.0, 'topper': 1.0, 'have': 1.0, 'if': 1.0, 'want': 1.0, 'did': 2.0, 'infant': 1.0, 'softness': 1.0, 'were': 2.0, 'adjusted': 1.0, 'importance': 1.0, 'by': 1.0, 'priced': 1.0, 'toddler': 1.0, 'understood': 1.0, 'it': 5.0, 'with': 2.0, 'looked': 1.0, 'be': 1.0, 'pediatrician': 1.0, 'd': 1.0, 'however': 1.0, 'had': 1.0, 'purchased': 1.0, 'use': 1.0, 'instead': 1.0, 'expensive': 1.0, 'for': 4.0, 'we': 2.0, 'a': 5.0, 'told': 1.0, 'firmness': 1.0, 'son': 3.0, 'mattresses': 1.0, 'read': 1.0, 'very': 2.0, 'and': 9.0, 'am': 2.0, 'coil': 1.0, 'extremely': 1.0, 'is': 1.0, 'more': 1.0, 'completely': 1.0, 'sleeper': 2.0, 'this': 3.0, 'mattress': 5.0, 'based': 1.0, 'reasonably': 1.0, 'of': 2.0, 'otherwise': 1.0, 'i': 7.0, 'give': 1.0, 'not': 1.0, 'good': 1.0, 'that': 2.0, 'been': 1.0, 'into': 2.0, 'infants': 1.0, 'without': 1.0, 'the': 2.0, 'durable': 1.0, 'satisfied': 1.0, 'ones': 1.0, 'toddlers': 1.0, 'any': 1.0, 'all': 1.0, 'our': 5.0, 'to': 4.0, 'foam': 2.0, 'but': 2.0, 'most': 1.0, 'firm': 1.0}
Word element => {'and': 1.0, 'price': 1.0, 'product': 1.0, 'be': 1.0, 'to': 1.0, 'bad': 1.0, 'guess': 1.0, 'i': 1.0, 'this': 1.0, 'with': 1.0, 'must': 1.0, 'tight': 1.0, 'reasonable': 1.0, 'mattress': 1.0, 'which': 1.0, 'bumpers': 1.0, 'nice': 1.0, 'aren': 1.0, 'crib': 2.0, 't': 2.0, 'the': 2.0, 'a': 3.0, 'like': 1.0, 'isn': 1.0, 'they': 1.0, 'our': 1.0, 'seems': 2.0, 'complaining': 1.0, 'twins': 1.0, 'so': 1.0, 'approve': 1.0, 'white': 1.0, 'fits': 1.0, 'but': 1.0, 'good': 1.0, 'into': 1.0, 'fine': 1.0, 'is': 1.0}
Word element => {'high': 1.0, 'of': 1.0, 'seems': 1.0, 'quality': 1.0, 'and': 1.0, 'well': 1.0, 'fits': 1.0, 'it': 1.0, 'we': 2.0, 'with': 1.0, 'ordered': 1.0, 'this': 1.0, 'mattress': 1.0, 'baby': 1.0, 'go': 1.0, 'a': 1.0, 'crib': 1.0, 'be': 1.0, 'to': 2.0, 'purchased': 1.0}
Word element => {'maintain': 1.0, 'new': 1.0, 'will': 1.0, 'her': 1.0, 'able': 1.0, 'newborn': 1.0, 'snugly': 1.0, 'using': 1.0, 'width': 1.0, 'right': 1.0, 'are': 1.0, 'is': 1.0, 'around': 2.0, 'buying': 1.0, 'elastic': 1.0, 'with': 1.0, 'its': 1.0, 'garanimals': 1.0, 'sheet': 1.0, 'off': 1.0, 'take': 1.0, 'shape': 2.0, 'back': 1.0, 'bounce': 1.0, 'doesn': 1.0, 'permanent': 1.0, 'be': 2.0, 'all': 1.0, 'as': 3.0, 'to': 2.0, 'use': 1.0, 'appears': 1.0, 'pressure': 1.0, 'same': 1.0, 'if': 1.0, 'after': 2.0, 'move': 1.0, 'however': 1.0, 'they': 1.0, 'between': 1.0, 'later': 1.0, 't': 1.0, 'a': 3.0, 'since': 1.0, 'over': 1.0, 'or': 1.0, 'first': 1.0, 'this': 3.0, 'mattress': 7.0, 'she': 1.0, 'it': 7.0, 'month': 1.0, 'perfectly': 1.0, 'soon': 1.0, 'and': 3.0, 'i': 6.0, 'two': 1.0, 'on': 2.0, 'put': 1.0, 'for': 2.0, 'significant': 1.0, 'fit': 1.0, 'had': 3.0, 'size': 1.0, 'crib': 4.0, 'edge': 1.0, 'in': 3.0, 'sheets': 4.0, 'way': 2.0, 'fits': 1.0, 'my': 2.0, 'shrunk': 2.0, 'can': 1.0, 'change': 1.0, 'but': 2.0, '2': 1.0, 'without': 1.0, 'the': 15.0, 'inches': 1.0, 'into': 1.0, 'that': 2.0, 'creating': 1.0, 'gap': 1.0, 'of': 4.0, 'short': 1.0, 'side': 1.0, 'has': 2.0, 'lengthwise': 1.0, 'ever': 1.0, 'stayed': 2.0, 'when': 1.0, 'am': 2.0, 'not': 1.0, 'sure': 1.0}
Word element => {'great': 2.0, 'one': 1.0, 'would': 1.0, 'market': 1.0, 'yet': 1.0, 'not': 3.0, 'have': 1.0, 'same': 1.0, 'did': 1.0, 'theirs': 1.0, 'saying': 1.0, 'review': 1.0, 'read': 1.0, 'until': 1.0, 'literally': 1.0, 'size': 1.0, 'definitely': 1.0, 'think': 1.0, 'bows': 1.0, 'standard': 1.0, 'they': 1.0, 'much': 1.0, 'put': 2.0, 'no': 1.0, 'like': 1.0, 'it': 8.0, 'another': 2.0, 'trying': 1.0, 'window': 1.0, 'multiple': 1.0, 'recommend': 1.0, 'full': 1.0, 'mattress': 5.0, 'this': 3.0, 'found': 1.0, 'purchased': 2.0, 'had': 1.0, 'now': 1.0, 'figure': 1.0, '1': 1.0, 'in': 5.0, 'lauren': 1.0, 'tag': 1.0, 'angelcare': 1.0, 'up': 1.0, 'moved': 1.0, 'gap': 2.0, 'shower': 1.0, 'baby': 1.0, 'our': 4.0, 'as': 3.0, 'length': 2.0, 'to': 2.0, 'lengthwise': 1.0, 'side': 1.0, 'gift': 1.0, 'and': 4.0, '50': 1.0, 'a': 3.0, 'we': 3.0, 't': 2.0, 'why': 1.0, 'removed': 1.0, 'for': 2.0, 'was': 3.0, 'spent': 1.0, 'monitor': 2.0, 'measured': 2.0, '4': 1.0, 'etc': 1.0, 'on': 5.0, 'of': 1.0, 'the': 14.0, 'thing': 1.0, '2': 2.0, 'registry': 1.0, 'beach': 1.0, 'crib': 4.0, 'didn': 2.0, 'are': 1.0, 'first': 1.0, 'value': 1.0, 'stuffed': 1.0, 'graco': 1.0, 'movement': 2.0, 'results': 1.0, 'when': 3.0, 'am': 2.0, 'hours': 1.0, 'times': 1.0, 'bends': 1.0, 'around': 1.0, 'notice': 1.0, 'at': 1.0, 'is': 2.0, 'out': 1.0, 'nothing': 1.0, 'finished': 1.0, 'room': 1.0, 'away': 1.0, 'from': 1.0, 'sheets': 2.0, 'wall': 1.0, 'other': 1.0, 'all': 1.0, 'measures': 1.0, 'still': 1.0, 'but': 4.0, 'rolled': 1.0, 'printed': 1.0, 'finally': 1.0, 'bumper': 1.0, 'huge': 1.0, 'large': 1.0, 'towel': 1.0, 'there': 1.0, 'about': 1.0, 'moment': 1.0, 'being': 1.0, 'so': 1.0, 'showing': 1.0, 'frustrated': 1.0, 'after': 1.0, 'measuring': 1.0, 'my': 1.0, '52': 2.0, 'i': 14.0, 'well': 1.0, 'that': 1.0, 'only': 1.0, 'check': 1.0, 'received': 1.0, 'also': 1.0}
Word element => {'all': 1.0, 'up': 1.0, 'hold': 1.0, 'just': 1.0, 'alone': 1.0, 'sheet': 1.0, 'waterproof': 1.0, 'fit': 1.0, 'handle': 1.0, 'fine': 1.0, 'would': 1.0, 'became': 1.0, 'good': 2.0, 'torn': 1.0, 'yr': 1.0, 'recommend': 1.0, 'well': 1.0, 'a': 2.0, 'doesn': 1.0, 'but': 2.0, 'fitted': 1.0, 'with': 1.0, 'only': 1.0, 'it': 2.0, 'looked': 1.0, 'very': 1.0, 'outside': 1.0, '2': 1.0, 't': 2.0, 'the': 1.0, 'couldn': 1.0, 'and': 1.0, 'shredded': 1.0, 'at': 1.0, 'quickly': 1.0, 'old': 1.0, 'i': 1.0}
Word element => {'softer': 1.0, 'i': 1.0, 'was': 1.0, 'not': 1.0, 'our': 1.0, 'wish': 1.0, 'problems': 2.0, 'quickly': 1.0, 'it': 2.0, 'without': 1.0, 'mattress': 1.0, 'good': 1.0, 'firm': 1.0, 'but': 2.0, 'with': 1.0, 'having': 1.0, 'is': 1.0, 'feels': 1.0, 'delivered': 1.0, 'a': 1.0, 'baby': 1.0, 'little': 1.0, 'too': 1.0}
Word element => {'short': 1.0, 'too': 1.0, 'issues': 1.0, 'have': 1.0, 'didn': 1.0, 'crib': 1.0, 'being': 1.0, 'brand': 1.0, 'fit': 1.0, 'snug': 1.0, 'nice': 1.0, 'in': 1.0, 'also': 1.0, 'for': 1.0, 'is': 1.0, 'quality': 1.0, 'but': 1.0, '100': 1.0, 'went': 1.0, 'can': 1.0, 'so': 2.0, 'was': 2.0, 'any': 1.0, 'price': 2.0, 'mattress': 2.0, 'great': 1.0, 't': 2.0, 'the': 4.0, 'a': 2.0, 'since': 1.0, 'and': 1.0, 'it': 3.0, 'this': 1.0, 'with': 2.0, 'tell': 1.0, 'we': 2.0, 'reviews': 1.0, 'delta': 1.0, 'mostly': 1.0, 'good': 2.0, 'you': 1.0, 'our': 1.0, 'were': 1.0, 'that': 1.0, 'isn': 1.0}
Word element => {'based': 1.0, 'on': 2.0, 'settled': 1.0, 'this': 1.0, 'other': 1.0, 'and': 2.0, 'it': 2.0, 'mattresses': 1.0, 'perfect': 1.0, 'one': 1.0, 'i': 2.0, 'was': 1.0, 'crib': 1.0, 'for': 1.0, 'the': 3.0, 'read': 1.0, 'bought': 1.0, 'reviews': 2.0, 'of': 1.0}
Word element => {'night': 1.0, 'at': 1.0, 'to': 1.0, 'my': 1.0, 'comfortable': 1.0, 'firm': 1.0, 'loves': 1.0, 'this': 1.0, 'going': 1.0, 'bed': 2.0, 'daughter': 1.0, 'year': 1.0, 'warranty': 1.0, 'a': 1.0, '7': 1.0, 'with': 1.0, 'is': 1.0, 'very': 1.0, 'comes': 1.0, 'and': 2.0, 'it': 1.0}
Word element => {'away': 1.0, 'so': 1.0, 'touch': 1.0, 'the': 1.0, 'soft': 1.0, 'will': 1.0, 'baby': 1.0, 'hard': 1.0, 'to': 1.0, 'being': 1.0, 'and': 1.0, 'most': 1.0, 'choice': 1.0, 'feels': 1.0, 'cribs': 1.0, 'snooze': 1.0, 'infant': 1.0, 'enough': 1.0, 'fits': 1.0, 'firm': 1.0, 'great': 1.0, 'without': 1.0}
Word element => {'for': 1.0, 'air': 1.0, 'letting': 1.0, 'd': 1.0, 'bit': 1.0, 'so': 1.0, 'of': 1.0, 'is': 1.0, 'firm': 1.0, 'but': 2.0, 'surprised': 1.0, 'good': 1.0, 'about': 1.0, 'no': 1.0, 'at': 1.0, 'it': 8.0, 'recommend': 1.0, 'was': 2.0, 'that': 1.0, 'i': 3.0, 'thinking': 1.0, 'days': 1.0, 'buy': 1.0, 'reluctant': 1.0, 'such': 1.0, 'very': 2.0, 'little': 1.0, 'haven': 1.0, 'be': 1.0, 'used': 1.0, 'long': 1.0, 'yet': 1.0, 'before': 1.0, 'chemical': 1.0, '5': 1.0, 'pleasantly': 1.0, 'hasn': 1.0, 'using': 1.0, 'which': 1.0, 'mattress': 1.0, 'lost': 1.0, 'might': 1.0, 'a': 4.0, 't': 2.0, 's': 1.0, 'shape': 1.0, 'weeks': 1.0, 'away': 1.0, 'out': 1.0, 'couple': 1.0, 'to': 1.0, 'all': 1.0, 'have': 1.0, 'did': 1.0, 'an': 1.0, 'smell': 1.0, 'inexpensive': 1.0, 'went': 1.0, 'after': 1.0}
Word element => {'i': 1.0, 'comfortable': 1.0, 'the': 2.0, 'with': 1.0, 'is': 1.0, 'was': 1.0, 'not': 1.0, 'cost': 1.0, 'happy': 1.0, 'mattress': 1.0, 'safe': 1.0, 'but': 1.0, 'perfect': 1.0, 'it': 1.0, 'high': 1.0, 'and': 2.0, 'quality': 2.0, 'only': 1.0, 'seems': 1.0, 'to': 1.0, 'be': 1.0}
Word element => {'retardants': 1.0, 'toxic': 1.0, 'use': 1.0, 'value': 1.0, 'flame': 1.0, 'good': 1.0, 'a': 1.0, 'also': 1.0, 'doesn': 1.0, 'an': 1.0, 'be': 1.0, 'you': 1.0, 'infant': 1.0, 'came': 1.0, 'like': 1.0, 'want': 1.0, 'just': 1.0, 'firm': 1.0, 'fits': 1.0, 'mattress': 1.0, 'nice': 1.0, 't': 1.0, 'the': 1.0, 'crib': 1.0, 'it': 1.0, 'pretty': 2.0, 'and': 3.0, 'perfectly': 1.0, 'delivery': 1.0, 'quickly': 1.0, 'after': 1.0, 'to': 1.0, 'was': 1.0}
Word element => {'easy': 1.0, 'be': 1.0, 'will': 1.0, 'is': 1.0, 'love': 1.0, 'chemicals': 1.0, 'like': 1.0, 'anything': 1.0, 'wipe': 1.0, 'to': 1.0, 'smelled': 1.0, 'never': 1.0, 'though': 1.0, 'down': 1.0, 'even': 1.0, 'days': 1.0, 'just': 1.0, 'waterproof': 1.0, 'crib': 1.0, 'that': 1.0, 'spaces': 1.0, 'fit': 1.0, 'my': 1.0, 'on': 1.0, 'support': 1.0, 'the': 2.0, 'and': 2.0, 'baby': 1.0, 'air': 1.0, 'few': 1.0, 'in': 1.0, 'needs': 1.0, 'has': 1.0, 'let': 1.0, 'no': 1.0, 'right': 1.0, 'it': 4.0, 'with': 1.0, 'between': 1.0, 'a': 1.0, 'i': 2.0, 'out': 1.0}
Word element => {'still': 1.0, 'before': 1.0, 'sure': 1.0, 'make': 1.0, 'buy': 1.0, 'you': 3.0, 'if': 1.0, 'dirtier': 1.0, 'lot': 1.0, 'appeared': 1.0, 'wiping': 1.0, 'up': 1.0, 'so': 1.0, 'and': 2.0, 'away': 1.0, 'customer': 1.0, 'some': 1.0, 'recommend': 1.0, 'was': 3.0, 'had': 2.0, 'new': 1.0, 'value': 2.0, 'clean': 1.0, 'good': 4.0, 'did': 1.0, 'sending': 1.0, 'got': 1.0, 'needed': 1.0, 's': 2.0, 'we': 1.0, 'a': 9.0, 'return': 2.0, 'dirtiness': 1.0, 'the': 5.0, 'replacement': 3.0, 'very': 1.0, 'service': 1.0, 'pretty': 1.0, 'used': 1.0, 'to': 2.0, 'our': 2.0, 'wipe': 1.0, 'baby': 3.0, 'thing': 1.0, 'about': 1.0, 'is': 1.0, 'use': 1.0, 'amazon': 1.0, '50': 1.0, 'crib': 2.0, 'for': 3.0, 'entire': 1.0, 'one': 1.0, 'mattress': 5.0, 'sleeper': 1.0, 'this': 3.0, 'first': 1.0, 'it': 8.0, 'light': 1.0, 'cut': 1.0, 'i': 5.0, 'than': 1.0, 'because': 3.0, 'in': 1.0, 'taking': 1.0, 'right': 1.0, 'ended': 1.0, 'after': 1.0, 'quickly': 1.0, 'arrived': 1.0, 'noticed': 1.0}
Word element => {'would': 1.0, '1': 1.0, 'naomi': 1.0, 'athena': 1.0, 'amazon': 1.0, 'of': 1.0, 'crib': 2.0, 'bought': 1.0, 'decided': 1.0, 'recommend': 1.0, 'was': 2.0, 'had': 1.0, 'its': 5.0, 'to': 5.0, 'very': 1.0, 'read': 1.0, 'easy': 3.0, 'firm': 1.0, 'best': 1.0, 'price': 1.0, 'baby': 1.0, 'height': 1.0, 'a': 1.0, 'it': 3.0, '4': 1.0, 'i': 5.0, 'on': 1.0, 'this': 2.0, 'mattress': 3.0, 'need': 1.0, 'plus': 1.0, 'because': 1.0, 'reviews': 1.0, 'decent': 1.0, 'has': 1.0, 'adjust': 1.0, 'the': 4.0, 'off': 1.0, 'cover': 1.0, 'light': 1.0, 'so': 2.0, 'good': 2.0, 'clean': 1.0, 'seems': 1.0, 'in': 3.0, 'be': 1.0, 'that': 1.0, 'which': 2.0, 'like': 1.0, 'move': 1.0, 'everything': 1.0, 'if': 1.0, 'you': 1.0, 'and': 2.0, 'description': 1.0, 'too': 1.0, 'for': 1.0, 'fit': 1.0}
Word element => {'my': 1.0, 'anyway': 1.0, 'for': 1.0, 'super': 1.0, 'want': 1.0, 'really': 1.0, 'soft': 2.0, 'it': 2.0, 'you': 1.0, 's': 1.0, 'to': 2.0, 'much': 1.0, 'right': 1.0, 'mattresses': 1.0, 'easy': 1.0, 'price': 1.0, 'don': 1.0, 'about': 1.0, 'firm': 1.0, 'other': 1.0, 'mattress': 1.0, 'than': 1.0, 'say': 1.0, 'not': 1.0, 'crib': 2.0, 'waterproof': 1.0, 'and': 3.0, 'like': 1.0, 'fits': 1.0, 'clean': 1.0, 'seems': 1.0, 'great': 1.0, 'infants': 1.0, 't': 1.0, 'the': 1.0, 'well': 1.0, 'since': 1.0, 'a': 1.0, 'mix': 1.0, 'of': 1.0}
Word element => {'disapproved': 1.0, 'tested': 1.0, 'truth': 1.0, 'review': 1.0, 'floor': 1.0, 'wood': 1.0, 'laying': 1.0, 'half': 1.0, 'folding': 1.0, 'comforter': 1.0, 'getting': 1.0, 'compare': 1.0, 'can': 2.0, 'way': 1.0, 'no': 1.0, 'there': 1.0, 'foam': 1.0, 'have': 2.0, 'am': 2.0, 'mattresses': 1.0, 'used': 1.0, 'mins': 1.0, 'how': 1.0, 'item': 1.0, 'about': 1.0, 'hounded': 1.0, 'king': 1.0, 'told': 1.0, 'for': 4.0, 'completed': 1.0, 'in': 2.0, 'mattress': 4.0, 'this': 7.0, '01p': 1.0, 'adults': 1.0, '15': 1.0, 'a': 4.0, 't': 1.0, 's': 1.0, 'gentlemen': 1.0, 'return': 1.0, '5th': 1.0, 'down': 1.0, 'board': 1.0, 'com': 1.0, 'but': 4.0, 'firm': 3.0, 'ups': 1.0, '4': 1.0, 'i': 11.0, 'on': 4.0, 'parent': 1.0, 'process': 1.0, 'usual': 1.0, 'sleeping': 1.0, 'they': 1.0, 'received': 1.0, 'he': 1.0, 'was': 3.0, 'amazon': 2.0, 'say': 1.0, 'and': 9.0, 'is': 7.0, 'at': 1.0, 'total': 1.0, 'who': 1.0, 'customer': 1.0, 'from': 2.0, 'hard': 1.0, 'as': 1.0, 'to': 4.0, 'shipping': 1.0, 'wow': 1.0, 'not': 3.0, 'my': 5.0, 'me': 1.0, 'buyers': 1.0, 'of': 2.0, 'the': 5.0, '46pm': 1.0, 'don': 1.0, 'april': 1.0, 'good': 1.0, 'excellent': 1.0, 'had': 1.0, 'just': 2.0, 'home': 1.0, 'by': 1.0, 'going': 1.0, 'kid': 4.0, 'too': 1.0, 'try': 1.0, 'it': 6.0, 'out': 1.0, 'proceeded': 1.0, 'with': 1.0, 'get': 2.0, 'his': 1.0, 'product': 1.0, 'year': 1.0, 'memory': 1.0, 'pillow': 2.0, 'lay': 1.0, 'even': 1.0, 'instead': 1.0, 'know': 2.0, 'some': 1.0, 'ladies': 1.0, 'these': 2.0, 'reviewers': 1.0, 'are': 1.0, 'where': 1.0, 'come': 1.0, 'service': 1.0, 'certainly': 1.0, 'when': 1.0, 'great': 2.0, 'older': 1.0, 'sleep': 1.0, 'perhaps': 1.0, 'back': 1.0, 'that': 1.0, 'problems': 1.0, 'old': 1.0, '5': 2.0, 'bounces': 1.0, '2013': 1.0, 'off': 1.0, 'california': 1.0, 'walls': 1.0, 'adult': 1.0}
Word element => {'nightly': 1.0, 'they': 1.0, 'since': 1.0, 'item': 1.0, 'quality': 1.0, 'smelly': 1.0, 'non': 1.0, 'and': 1.0, 'pay': 1.0, 'do': 1.0, 'made': 1.0, 'over': 1.0, 'cheaper': 1.0, 'up': 1.0, 'child': 1.0, 'my': 2.0, 'away': 1.0, 'get': 2.0, 'wakes': 1.0, 'horrible': 1.0, 'i': 6.0, 'with': 1.0, 'higher': 1.0, 'it': 7.0, 'sleep': 1.0, 'to': 2.0, 'smell': 2.0, 'an': 1.0, 'but': 1.0, 'that': 2.0, 'inexpensive': 1.0, 'bathe': 1.0, 'this': 1.0, 'mattress': 2.0, 'her': 1.0, 'before': 1.0, 'has': 1.0, 'everyday': 1.0, 'compared': 1.0, 'smelling': 1.0, 'rate': 1.0, 'cannot': 1.0, 'like': 2.0, 'when': 1.0, 'bed': 1.0, 'if': 2.0, 'even': 1.0, 'didn': 1.0, 'could': 1.0, 'go': 1.0, 'a': 5.0, 't': 1.0, 'is': 2.0, 'more': 3.0, 'would': 2.0, 'others': 1.0, 'on': 1.0, '3': 1.0, 'for': 1.0, 'stars': 1.0, 'payed': 1.0, 'little': 2.0, 'very': 1.0, 'light': 1.0}
Word element => {'40': 1.0, 'for': 1.0, 'get': 1.0, 'quite': 1.0, 'guess': 1.0, 'would': 2.0, 'end': 1.0, 'much': 1.0, 'were': 1.0, 'seemed': 1.0, 'than': 2.0, 'expectations': 1.0, 'quality': 1.0, 'baby': 2.0, 'had': 1.0, 'was': 4.0, 'be': 1.0, 'cheap': 1.0, 'two': 1.0, 'etc': 1.0, 'i': 7.0, 'received': 1.0, 'recently': 1.0, 'better': 1.0, 'crib': 1.0, 'his': 2.0, 'it': 8.0, 'higher': 1.0, 'this': 3.0, 'because': 1.0, 'that': 3.0, 'expected': 1.0, 'box': 1.0, 'how': 1.0, 'our': 2.0, 'all': 1.0, 'high': 3.0, 'to': 2.0, '50': 1.0, 'and': 6.0, 'ordered': 1.0, 'surprised': 1.0, 'product': 1.0, 'year': 1.0, 'toddler': 1.0, 'might': 1.0, 'old': 2.0, 'something': 1.0, 'invoice': 1.0, 'great': 1.0, 'spring': 2.0, 'on': 3.0, 'are': 1.0, 'another': 1.0, 'my': 2.0, 'mattress': 6.0, 'reading': 1.0, 'sleeping': 1.0, 'pleased': 1.0, 'set': 1.0, 'special': 1.0, 'with': 2.0, 'however': 1.0, 'what': 1.0, 'when': 1.0, 'out': 1.0, 'the': 7.0, 'of': 1.0, 'took': 1.0, 'even': 1.0, 'looked': 1.0, 'compared': 1.0, 'registry': 1.0, 'really': 1.0, 'see': 1.0, 'expecting': 1.0, 'if': 1.0, 'felt': 1.0, 'destroyed': 1.0, 'same': 1.0, 'stating': 1.0, 'too': 1.0, 'one': 2.0, 'just': 1.0, 'by': 1.0, 'after': 2.0, 'glowing': 1.0, 'foam': 1.0, 'at': 2.0, 'is': 4.0, 'hopes': 1.0, 'say': 1.0, 'we': 2.0, 'reviews': 2.0, 'fine': 1.0, 'now': 1.0, 'but': 1.0, 'not': 1.0, 'core': 1.0, 'anything': 1.0, 'expect': 1.0}
Word element => {'infants': 1.0, 'anyone': 1.0, 'i': 1.0, 'probably': 1.0, 'pay': 1.0, 'still': 1.0, 'would': 2.0, 'us': 1.0, 'r': 1.0, 'coupon': 1.0, 'if': 1.0, 'you': 2.0, 'fantastic': 1.0, 'roll': 1.0, '20': 1.0, 'room': 1.0, 'hard': 1.0, 'and': 1.0, 'too': 2.0, 'way': 1.0, 'plenty': 1.0, 'recommend': 1.0, 'was': 2.0, 'wanted': 1.0, 'now': 2.0, 'babies': 1.0, 'that': 2.0, 'sleep': 1.0, 'to': 3.0, 'our': 3.0, 'hindsight': 1.0, 'in': 2.0, 'product': 1.0, 'for': 6.0, 'even': 1.0, '2nd': 1.0, 'panicking': 1.0, 'used': 2.0, 'this': 4.0, 'mattress': 6.0, 'soft': 2.0, 'child': 1.0, 'stomach': 1.0, 'get': 1.0, 'gotten': 1.0, 'perfectly': 1.0, 'than': 1.0, '8m': 1.0, 'price': 1.0, 'best': 1.0, 'very': 1.0, 'without': 1.0, 'the': 5.0, 'we': 3.0, 'a': 3.0, 'could': 1.0, 'have': 1.0, 'money': 1.0, 'firm': 1.0, 'but': 1.0, 'me': 1.0, 'not': 1.0, 'old': 1.0, 'more': 1.0, 'around': 1.0, 'is': 3.0, 'sleeps': 1.0, 'on': 2.0, '1st': 3.0, '5mos': 1.0, 'she': 2.0, 'her': 1.0, 'cradle': 1.0, 'comfortably': 1.0, 'has': 1.0, 'firmer': 1.0, 'of': 1.0}
Word element => {'issues': 1.0, 'using': 1.0, 'before': 1.0, 'odor': 1.0, 'setup': 1.0, 'had': 2.0, 'either': 1.0, 'would': 1.0, 'do': 1.0, 'you': 1.0, 'if': 1.0, 'or': 1.0, 'between': 1.0, 'of': 2.0, 'gap': 2.0, 'several': 1.0, 'no': 3.0, 'there': 2.0, 'sheet': 2.0, 'recommend': 1.0, 'two': 1.0, 'i': 2.0, 'well': 1.0, 'months': 2.0, 'over': 1.0, '14': 1.0, 'now': 1.0, 'sleeps': 1.0, 'is': 2.0, 'her': 1.0, 'price': 1.0, 'mesh': 1.0, 'for': 2.0, 'bed': 1.0, 'babyletto': 1.0, 'the': 11.0, 'loves': 1.0, 'mattress': 7.0, 'this': 1.0, 'she': 1.0, 'it': 2.0, 'with': 2.0, 'layers': 1.0, 'very': 1.0, 'year': 1.0, 'started': 1.0, 'quality': 2.0, 'and': 7.0, 'perfectly': 1.0, 'mercer': 1.0, 'daughter': 2.0, 'but': 1.0, 'past': 1.0, 'old': 1.0, 'hasn': 1.0, 'suffered': 1.0, 'in': 2.0, 'also': 1.0, 'at': 1.0, 'our': 1.0, 'all': 1.0, 'have': 1.0, 'a': 1.0, 't': 1.0, 'we': 3.0, 'crib': 3.0, 'my': 1.0, 'fits': 1.0, 'use': 1.0, 'be': 1.0, 'liner': 2.0, 'cover': 2.0}
Word element => {'for': 1.0, 'especially': 1.0, 'pleased': 1.0, 'be': 1.0, 'as': 1.0, 'nice': 1.0, 'mattress': 1.0, 's': 1.0, 'couldn': 1.0, 'and': 2.0, 'perfectly': 1.0, 'damage': 1.0, 'without': 1.0, 'exactly': 1.0, 'is': 1.0, 'price': 1.0, 'any': 1.0, 'firm': 1.0, 'it': 2.0, 'this': 1.0, 'also': 1.0, 'in': 2.0, 'specified': 1.0, 'crib': 1.0, 'more': 1.0, 't': 1.0, 'the': 2.0, 'fits': 1.0, 'arrived': 1.0, 'good': 1.0, 'i': 1.0, 'snug': 1.0, 'packaging': 1.0}
Word element => {'or': 1.0, 'day': 1.0, 'a': 1.0, 'in': 1.0, 'gets': 1.0, 'my': 1.0, 'hospital': 1.0, 'grandson': 1.0, 'will': 1.0, 'two': 1.0, 'new': 1.0, 'get': 1.0, 'to': 1.0, 'try': 1.0, 'from': 1.0, 'out': 1.0, 'as': 2.0, 'home': 1.0, 'soon': 1.0, 'he': 1.0}
Word element => {'had': 1.0, 'we': 1.0, 'she': 1.0, 'sleeps': 1.0, 'it': 2.0, 'not': 1.0, 'sturdy': 1.0, 'one': 1.0, 'soft': 1.0, 'too': 1.0, 'daughter': 1.0, 'and': 1.0, 'our': 1.0, 'better': 1.0, 'through': 1.0, 'night': 1.0, 'old': 1.0, 'the': 2.0, 'uses': 1.0, 'on': 1.0, 'nice': 1.0, '10': 1.0, 'soundly': 1.0, 'times': 1.0, 'than': 1.0}
Word element => {'bought': 1.0, 's': 1.0, 'also': 1.0, 'a': 1.0, 'for': 2.0, 'crib': 3.0, 'mattress': 2.0, 'one': 1.0, 'i': 1.0, 'mother': 1.0, 'liked': 1.0, 'great': 1.0, 'coils': 1.0, 'my': 1.0, 'the': 1.0, 'idea': 1.0, 'not': 1.0, 'of': 1.0, 'having': 1.0}
Word element => {'to': 1.0, 'have': 1.0, 'actually': 1.0, 'i': 1.0, 'condition': 1.0, 'in': 1.0, 'ordered': 1.0, 'were': 1.0, 'it': 1.0, 'order': 2.0, 'was': 1.0, 'perfect': 1.0, 'easy': 1.0, 'all': 1.0, 'items': 1.0, 'and': 3.0, 'will': 1.0, 'soon': 1.0, 'quick': 1.0, 'delivery': 1.0, 'again': 2.0}
Word element => {'through': 1.0, 'could': 1.0, 'bay': 1.0, 'a': 1.0, 'soft': 1.0, 'fits': 1.0, 'any': 1.0, 'and': 2.0, 'gaps': 1.0, 'leave': 1.0, 'that': 1.0, 'comfortable': 1.0, 'possibly': 1.0, 'it': 1.0, 'the': 1.0, 'does': 1.0, 'not': 1.0, 'bed': 1.0, 'fall': 1.0, 'well': 1.0}
Word element => {'comfortable': 1.0, 'yet': 1.0, 'enough': 1.0, 'excellent': 1.0, 'fitting': 1.0, 'mattress': 1.0, 'sheets': 1.0, 'problem': 1.0, 'firm': 1.0, 'fits': 1.0, 'seems': 1.0, 'our': 1.0, 'and': 1.0, 'with': 1.0, 'standard': 1.0, 'safety': 1.0, 'for': 1.0, 'in': 1.0, 'crib': 2.0, 'no': 1.0}
Word element => {'baby': 1.0, 'and': 1.0, 'so': 1.0, 'safe': 1.0, 'far': 1.0, 'but': 1.0, 'beautiful': 1.0, 'sturdy': 1.0, 'bed': 1.0, 'looking': 1.0, 'to': 1.0, 'for': 1.0, 'crib': 1.0, 'seems': 1.0, 'haven': 1.0, 't': 1.0, 'converted': 1.0, 'it': 2.0, 'yet': 1.0, 'the': 1.0, 'toddler': 1.0}
Word element => {'size': 1.0, 'mattresses': 1.0, 'when': 1.0, 'cheaper': 1.0, 'other': 1.0, 'this': 3.0, 'at': 1.0, 'is': 1.0, 'a': 2.0, 'of': 1.0, 'good': 1.0, 'mattress': 1.0, 'to': 1.0, 'much': 1.0, 'and': 1.0, 'great': 1.0, 'compared': 1.0, 'price': 1.0, 'bargain': 1.0}
Word element => {'size': 1.0, 'us': 1.0, 'r': 1.0, 'babies': 1.0, 'expensive': 1.0, 'standard': 1.0, '50': 1.0, 'price': 1.0, 'reviews': 1.0, 'than': 1.0, 'fits': 1.0, 'crib': 2.0, 'at': 1.0, 'was': 1.0, 'great': 2.0, 'perfectly': 1.0, 'dollars': 1.0, 'the': 1.0, 'less': 1.0}
Word element => {'item': 1.0, 'they': 1.0, 'others': 1.0, 'from': 1.0, 'on': 1.0, 'based': 1.0, 'bought': 1.0, 'i': 1.0, 'perfect': 1.0, 'is': 1.0, 'youre': 1.0, 'and': 2.0, 'getting': 1.0, 'the': 1.0, 'great': 1.0, 'it': 1.0, 'mine': 1.0, 'for': 2.0, 'which': 1.0, 'matched': 1.0, 'what': 1.0, 'mattress': 1.0, 'quality': 1.0, 'toddler': 1.0, 'baby': 1.0, 'price': 1.0, 'soft': 1.0, 'a': 2.0, 'mini': 1.0, 'reviews': 1.0, 'memory': 1.0, '100': 1.0, 'like': 1.0, 'foam': 1.0, 'or': 1.0, 'isnt': 1.0, 'its': 1.0, 'to': 1.0}
Word element => {'run': 1.0, 'hassle': 1.0, 'yourself': 1.0, 'save': 1.0, 'money': 1.0, 'few': 1.0, 'replacing': 1.0, 'want': 1.0, 'crib': 7.0, 'went': 1.0, 'risks': 1.0, 'not': 4.0, 'give': 1.0, 'there': 1.0, 'baby': 2.0, 'many': 1.0, 'with': 4.0, 'switch': 1.0, 'now': 2.0, '1st': 1.0, 'almost': 1.0, 'an': 5.0, 'immediately': 1.0, 'the': 24.0, 'out': 1.0, 'took': 1.0, 'risk': 2.0, 'nursery': 1.0, 'lift': 1.0, 'you': 4.0, '2': 1.0, 'pregnant': 1.0, '7': 1.0, 'up': 1.0, 'was': 4.0, 'sids': 3.0, 'goes': 1.0, 'light': 1.0, 'reason': 1.0, 'he': 1.0, 'how': 3.0, 'disappointed': 1.0, 'so': 5.0, 'since': 1.0, '1': 2.0, 'use': 3.0, 'of': 4.0, 'old': 1.0, 'brand': 1.0, 'decided': 1.0, 'very': 3.0, 'too': 2.0, '50': 1.0, 'sleep': 2.0, 'used': 1.0, 'snugly': 3.0, 'pay': 3.0, 'were': 2.0, 'piece': 1.0, 'box': 1.0, 'into': 3.0, 'placed': 2.0, 'that': 3.0, 'easily': 1.0, 'because': 2.0, 'am': 2.0, 'last': 1.0, 'roll': 1.0, 'hopeful': 1.0, 'in': 8.0, 'product': 1.0, 'products': 1.0, 'child': 2.0, 'toddler': 1.0, 'for': 14.0, 'months': 2.0, 'gap': 2.0, 'able': 2.0, 'get': 2.0, 'against': 1.0, 'bought': 1.0, 'apa': 1.0, 'inserted': 1.0, 'purchasing': 1.0, 'serta': 7.0, 'flimsy': 1.0, 'i': 9.0, 'when': 5.0, 'bed': 1.0, 'arrived': 1.0, 'have': 5.0, 'put': 2.0, 'recalled': 1.0, 'do': 1.0, 'long': 2.0, 'storkcraft': 1.0, 'soft': 4.0, 'from': 1.0, 'stairs': 1.0, 'mattress': 17.0, 'this': 9.0, 'be': 6.0, 'it': 20.0, 'reviews': 1.0, 'then': 1.0, 'shouldn': 2.0, 'february': 1.0, 'a': 15.0, 'sides': 1.0, 'advice': 1.0, 'amazon': 1.0, 'safety': 1.0, 'size': 1.0, '5': 2.0, 'got': 1.0, 'enough': 1.0, 'would': 2.0, 'can': 1.0, 'is': 5.0, 'second': 1.0, 'noted': 2.0, 'all': 2.0, 'way': 2.0, 'sheets': 4.0, 'what': 1.0, 'bowed': 1.0, 'we': 9.0, 'middle': 2.0, 'sagged': 1.0, 'bending': 1.0, 'as': 3.0, 'bend': 1.0, 'arriving': 1.0, 'rails': 1.0, 'which': 2.0, 'every': 2.0, 'great': 2.0, 'if': 1.0, 'recommendation': 1.0, 'has': 1.0, 'at': 4.0, 'target': 1.0, 'just': 1.0, 'and': 21.0, 'firm': 1.0, 'least': 1.0, 'does': 1.0, 'bow': 1.0, 'my': 8.0, 'are': 2.0, 'serious': 1.0, 'on': 6.0, 'tuscany': 1.0, 'worth': 1.0, '4': 2.0, 'fell': 1.0, 'anywhere': 1.0, 'ends': 1.0, 'inch': 1.0, 'son': 5.0, 'both': 1.0, 'his': 2.0, 'fit': 3.0, 't': 5.0, 'supposed': 1.0, 'another': 2.0, 'extra': 2.0, 'between': 1.0, 'over': 1.0, 'stuck': 1.0, 'suffocate': 1.0, 'sign': 1.0, 'doubt': 1.0, 'standard': 2.0, 'definitely': 1.0, 'short': 2.0, 'should': 2.0, 's': 11.0, 'doesn': 1.0, 'will': 3.0, 'could': 1.0, 'returning': 2.0, 'safe': 1.0, 'mattresses': 2.0, 'they': 1.0, 'husband': 1.0, 'purchased': 2.0, 'junk': 1.0, 'having': 1.0, 'buy': 2.0, 'or': 1.0, 'also': 2.0, 'need': 1.0, 'don': 2.0, 'customer': 1.0, 'said': 1.0, 'infant': 4.0, 'by': 1.0, 'after': 1.0, 'time': 1.0, 'had': 1.0, 'to': 13.0, 'right': 1.0, 'our': 3.0, 'trust': 1.0, 'years': 1.0, 'opinion': 1.0, 'come': 1.0}
Word element => {'packaged': 1.0, 'was': 1.0, 'slept': 1.0, 'as': 1.0, 'the': 3.0, 'well': 2.0, 'craft': 1.0, 'time': 1.0, 'same': 1.0, 'mattress': 1.0, 'quickly': 1.0, 'stork': 1.0, 'at': 1.0, 'grandson': 1.0, 'ordered': 1.0, 'we': 1.0, 'our': 1.0, 'on': 1.0, 'tuscany': 1.0, '4': 1.0, 'in': 1.0, 'crib': 2.0, 'this': 1.0, 'it': 3.0, 'and': 2.0, '1': 1.0, 'perfectly': 1.0, 'arrived': 1.0, 'fits': 1.0, 'inside': 1.0}
Word element => {'price': 1.0, 'needed': 1.0, 'i': 1.0, 'the': 3.0, 'is': 2.0, 'a': 1.0, 'mattress': 1.0, 'perfect': 1.0, 'beat': 1.0, 'can': 1.0, 'it': 1.0, 't': 1.0, 'fit': 1.0, 'you': 1.0, 'what': 1.0, 'set': 1.0, 'exactly': 1.0, 'for': 1.0, 'crib': 1.0}
Word element => {'it': 1.0, 'considering': 1.0, 'would': 1.0, 'this': 1.0, 'others': 1.0, 'with': 1.0, 'happy': 1.0, 'are': 1.0, 'exactly': 1.0, 'purchase': 1.0, 'we': 1.0, 'what': 1.0, 'i': 1.0, 'price': 1.0, 'highly': 1.0, 'very': 1.0, 'wanted': 1.0, 'and': 2.0, 'for': 2.0, 'such': 1.0, 'a': 1.0, 'recommend': 1.0, 'good': 1.0}
Word element => {'thanks': 1.0, 'well': 1.0, 'so': 1.0, 'that': 1.0, 'very': 1.0, 'daughter': 1.0, 'loves': 1.0, 'his': 1.0, 'new': 1.0, 'is': 3.0, 'happy': 1.0, 'mattress': 1.0, 'he': 3.0, 'sleeping': 2.0, 'all': 1.0, 'night': 1.0, 'my': 1.0}
Word element => {'little': 1.0, 'good': 1.0, 'like': 1.0, 'seems': 1.0, 'over': 1.0, 'up': 1.0, 'priced': 1.0, 'not': 2.0, 'very': 1.0, 'hold': 1.0, 'sure': 1.0, 'reasonably': 1.0, 'arrived': 1.0, 'was': 1.0, 'purpose': 1.0, 'its': 1.0, 'but': 1.0, 'will': 2.0, 'price': 1.0, 'baby': 1.0, 'serve': 1.0, 'a': 1.0, 'haul': 1.0, 'well': 2.0, 'long': 1.0, 'mattress': 2.0, 'm': 1.0, 'it': 3.0, 'this': 1.0, 'the': 3.0, 'for': 1.0, 'yet': 1.0, 'has': 1.0, 'so': 1.0, 'i': 1.0, 'how': 1.0}
Word element => {'mattress': 1.0, 'functions': 1.0, 'yet': 1.0, 'baby': 1.0, 'she': 2.0, 'sleeps': 1.0, 'on': 1.0, 'perfectly': 1.0, 'it': 2.0, 'issues': 1.0, 'i': 1.0, 'a': 1.0, 'doesn': 1.0, 'far': 1.0, 'any': 1.0, 'as': 3.0, 'and': 1.0, 'know': 1.0, 'chiropractic': 1.0, 'have': 1.0, 't': 1.0}
Word element => {'at': 1.0, 'trouble': 1.0, 'no': 1.0, 'has': 1.0, 'call': 1.0, 'though': 1.0, 'fine': 1.0, 'just': 1.0, 'sleeping': 1.0, 'like': 1.0, 'will': 1.0, 'seems': 1.0, 'than': 1.0, 'neurosis': 1.0, 'pad': 1.0, 'thin': 1.0, 'online': 1.0, 'comparing': 1.0, 'anything': 1.0, 'other': 2.0, 'bought': 1.0, 'one': 1.0, 'went': 1.0, 'night': 1.0, 'them': 1.0, 'quality': 1.0, 'the': 1.0, 'hard': 1.0, 'wondered': 1.0, 'for': 2.0, 'reviews': 1.0, 'they': 1.0, 'so': 2.0, 'time': 1.0, 'daughter': 1.0, 'water': 1.0, 'she': 2.0, 'it': 6.0, 'more': 1.0, 'say': 1.0, 'is': 3.0, 'with': 1.0, 'foremost': 1.0, 'a': 4.0, 'perfectly': 1.0, 'mess': 1.0, 'i': 6.0, 'was': 3.0, 'have': 1.0, 'ok': 1.0, 'pick': 1.0, 'or': 1.0, 'let': 2.0, 'state': 1.0, 'me': 1.0, 'not': 1.0, 'but': 1.0, 'firm': 1.0, 'as': 2.0, 'to': 6.0, 'sleep': 1.0, 'on': 2.0, 'mattresses': 2.0, 'are': 1.0, 'and': 2.0, 'too': 2.0, 'mom': 1.0, 'first': 2.0, 'pros': 1.0, 'plush': 1.0, 'out': 1.0, 'resistant': 1.0, 'in': 2.0, 'fits': 1.0, 'my': 3.0, 'babies': 1.0, 'that': 4.0, 'davinci': 1.0, 'compare': 1.0, 'nothing': 1.0, 'crib': 1.0, 'win': 1.0, 'if': 2.0, 'being': 1.0, 'based': 1.0, 'this': 2.0, 'mattress': 3.0, 'lost': 1.0, 'trying': 1.0}
Word element => {'well': 1.0, 'sleep': 1.0, 'quickly': 1.0, 'shipped': 1.0, 'to': 1.0, 'was': 1.0, 'comfy': 1.0, 'and': 1.0, 'grandson': 1.0, 't': 1.0, 'our': 1.0, 'for': 1.0, 'though': 1.0, 'can': 1.0, 'ordered': 1.0, 'arrived': 1.0, 'on': 1.0, 'condition': 1.0, 'seems': 1.0, 'in': 1.0, 'perfect': 1.0, 'even': 1.0, 'this': 1.0, 'it': 3.0, 'he': 2.0, 'we': 1.0, 'tell': 1.0, 'us': 1.0, 's': 1.0}
Word element => {'products': 1.0, 'consistent': 1.0, 'if': 1.0, 'clear': 1.0, 'advantage': 1.0, 'point': 1.0, '1st': 1.0, 'at': 1.0, 'naps': 1.0, 'but': 1.0, 'used': 1.0, 'certifications': 1.0, 'a': 2.0, 'only': 1.0, 'durable': 1.0, 'across': 1.0, 'and': 5.0, 'daily': 1.0, 'comfy': 1.0, 'sure': 1.0, 'get': 1.0, 'price': 2.0, 'son': 1.0, 'is': 6.0, 'summer': 1.0, 'my': 2.0, 'due': 2.0, 'the': 4.0, 'safety': 2.0, 'by': 2.0, 'for': 3.0, 'occasional': 1.0, 'use': 1.0, 'design': 1.0, 'plasticky': 1.0, 'great': 1.0, 'feel': 1.0, 'all': 1.0, 'to': 3.0, 'however': 1.0, 'of': 1.0, 'suspect': 1.0, 'pad': 1.0, 'cover': 2.0, 'which': 2.0, 'water': 1.0, 'not': 3.0, 'mattress': 5.0, 'this': 2.0, 'provided': 1.0, 'eyes': 1.0, 'functional': 1.0, 'usage': 1.0, 'comfort': 1.0, 'hot': 1.0, 'resistant': 1.0, 'in': 2.0, 'planning': 1.0}
Word element => {'little': 1.0, 'our': 1.0, 'for': 1.0, 'too': 1.0, 'bit': 1.0, 'it': 1.0, 'the': 1.0, 'is': 2.0, 'a': 2.0, 'do': 1.0, 'mattress': 1.0, 'stiff': 1.0, 'good': 1.0, 'as': 1.0, 'if': 1.0, 'price': 1.0, 'one': 1.0, 'i': 1.0, 'feel': 1.0, 'however': 1.0}
Word element => {'the': 3.0, 'pleased': 1.0, 'and': 1.0, 'very': 1.0, 'we': 1.0, 'this': 1.0, 'firmness': 1.0, 'lauren': 1.0, 'crib': 2.0, 'from': 1.0, 'mattress': 2.0, 'were': 1.0, 'perfectly': 1.0, 'of': 2.0, 'speed': 1.0, 'worked': 1.0, 'with': 2.0, 'delivery': 1.0, 'our': 1.0, 'delta': 1.0, 'walmart': 1.0}
Word element => {'and': 1.0, 'soft': 1.0, 'not': 1.0, 'its': 1.0, 'the': 2.0, 'holds': 1.0, 'good': 1.0, 'no': 2.0, 'sleeps': 1.0, 'baby': 1.0, 'for': 2.0, 'crib': 1.0, 'it': 1.0, 'this': 1.0, 'our': 1.0, 'gaps': 1.0, 'bought': 1.0, 'past': 1.0, '5': 1.0, 'on': 1.0, 'months': 1.0, 'newborn': 1.0, 'also': 1.0, 'complaints': 1.0, 'well': 1.0, 'a': 1.0, 'fits': 1.0, 'like': 1.0, 'glove': 1.0}
Word element => {'baby': 1.0, 'my': 1.0, 'and': 1.0, 'perfect': 1.0, 'fits': 1.0, 'mattress': 1.0, 'wasnt': 1.0, 'awesome': 1.0, 'that': 1.0, 'worried': 1.0, 'said': 1.0, 'really': 1.0, 'of': 1.0, 'product': 1.0, 'be': 1.0, 'this': 1.0, 'it': 4.0, 'ordered': 1.0, 'i': 2.0, 'going': 1.0, 'when': 1.0, 'to': 1.0, 'was': 3.0, 'exacxt': 1.0, 'great': 1.0, 'the': 3.0, 'right': 1.0, 'size': 2.0, 'because': 1.0, 'others': 1.0, 'sleeps': 1.0, 'reviews': 1.0, 'but': 1.0}
Word element => {'old': 1.0, 'over': 1.0, 'rip': 1.0, 'guess': 1.0, 'll': 1.0, 'perfectly': 1.0, 'dimensions': 1.0, 'give': 1.0, 'flip': 1.0, 'really': 1.0, 'each': 1.0, 'and': 3.0, 'torn': 1.0, 'it': 5.0, 'now': 1.0, 'older': 1.0, 'use': 2.0, 'inch': 1.0, 'suffocating': 1.0, 'but': 1.0, 'an': 1.0, 'one': 1.0, 'bought': 1.0, 'that': 1.0, 'returning': 1.0, 'kids': 1.0, 'this': 1.0, 'mattress': 2.0, 'is': 1.0, 'left': 1.0, 'than': 1.0, 'standard': 2.0, 'our': 2.0, 'to': 1.0, 'fits': 2.0, 'rooms': 1.0, 'in': 1.0, 'poses': 1.0, 'for': 3.0, 'crib': 3.0, 'risk': 1.0, 'should': 1.0, 'becoming': 1.0, 'the': 4.0, 'other': 2.0, 'dangerously': 1.0, 'have': 2.0, 'small': 1.0, 'we': 4.0, 's': 2.0, 'a': 3.0, 'i': 1.0, 'stating': 1.0, '4': 1.0, 'head': 1.0, 'very': 1.0, 'real': 1.0, 'are': 1.0, 'rather': 1.0, 'gap': 1.0, 'of': 1.0, 'sleepovers': 1.0, 'baby': 2.0, 'trapped': 1.0, 'listing': 1.0}
Word element => {'on': 1.0, 'sleep': 1.0, 'almost': 1.0, 'and': 1.0, 'all': 1.0, 'not': 1.0, 'firm': 1.0, 'price': 1.0, 'mattress': 1.0, 'a': 1.0, 'like': 1.0, 'for': 1.0, 'bed': 1.0, 'snugly': 1.0, 'of': 1.0, 'son': 1.0, 'amazed': 1.0, 'quality': 1.0, 'toddler': 1.0, 'my': 1.0, 'heavy': 1.0, 'such': 1.0, 'the': 2.0, 'in': 1.0, 'fits': 1.0, 'i': 3.0, 's': 3.0, 'other': 1.0, 'it': 4.0, 'this': 1.0, 'want': 1.0, 'many': 1.0, 'people': 1.0, 'who': 1.0, 'bought': 2.0, 'product': 1.0, 'to': 1.0, 'was': 1.0, 'at': 3.0}
Word element => {'sure': 1.0, 'would': 1.0, 'could': 1.0, 'that': 1.0, 'on': 1.0, 'cover': 1.0, 'quality': 1.0, 'we': 1.0, 'and': 1.0, 'clean': 1.0, 'arrived': 1.0, 'well': 1.0, 'a': 3.0, 'for': 1.0, 'given': 1.0, 'recommend': 1.0, 'mattresses': 1.0, 'quickly': 1.0, 'at': 1.0, 'after': 1.0, 'found': 1.0, 'gift': 1.0, 'had': 1.0, 'to': 4.0, 'be': 3.0, 'looking': 1.0, 'i': 1.0, 'as': 2.0, 'decided': 1.0, 'off': 1.0, 'good': 2.0, 'the': 1.0, 'safety': 1.0, 'crib': 1.0, 'several': 1.0, '1st': 1.0, 'heavenly': 1.0, 'dreams': 1.0, 'mattress': 3.0, 'this': 1.0, 'taken': 1.0, 'with': 1.0, 'it': 4.0}
Word element => {'night': 1.0, 'all': 1.0, 'she': 1.0, 'of': 1.0, 'break': 1.0, 'to': 1.0, 'than': 1.0, 'pun': 1.0, 'no': 1.0, 'bed': 1.0, 'a': 2.0, 'like': 1.0, 'baby': 1.0, 'nights': 1.0, 'most': 1.0, 'intended': 1.0, 'every': 1.0, 'morning': 1.0, 'child': 1.0, 'her': 2.0, 'my': 1.0, 'sleeps': 2.0, 'are': 1.0, 'with': 1.0, 'having': 1.0, 'in': 1.0, 'us': 1.0, 'habit': 1.0, 'other': 1.0, 'we': 1.0, 'trying': 1.0}
Word element => {'money': 1.0, 'don': 1.0, 'sheets': 1.0, 'matress': 1.0, 'other': 1.0, 'easier': 1.0, 'our': 1.0, 'than': 2.0, 'to': 2.0, 'much': 3.0, 'a': 1.0, 'did': 1.0, 'and': 1.0, 'set': 1.0, 'crib': 1.0, 'like': 1.0, 'spend': 2.0, 'not': 2.0, 'needed': 1.0, 'lighter': 1.0, 'so': 2.0, 'i': 1.0, 'this': 2.0, 'change': 1.0, 'want': 1.0, 'second': 1.0, 'is': 2.0, 'quality': 1.0, 'but': 1.0, 'far': 1.0, 'mattress': 1.0, 'more': 1.0, 't': 1.0, 'great': 1.0, 'heavy': 1.0, 'perfect': 1.0, 'seems': 1.0}
Word element => {'utilized': 1.0, 'girl': 1.0, 'into': 1.0, 'so': 1.0, 'lightweight': 1.0, 'my': 1.0, 'another': 1.0, 'purchase': 1.0, 'quickly': 1.0, 'bed': 1.0, 'great': 1.0, '1': 1.0, 'comfortable': 1.0, 'big': 1.0, 'excited': 1.0, 'positive': 1.0, 'the': 5.0, 'of': 1.0, '2007': 1.0, 'not': 2.0, 'this': 2.0, 'mattress': 2.0, 'ordered': 1.0, 'little': 1.0, 'very': 2.0, 'crib': 3.0, 'hers': 1.0, 'in': 3.0, '4': 1.0, 'coming': 1.0, 'i': 3.0, 'shipped': 1.0, 'aspen': 1.0, 'have': 4.0, 'to': 7.0, 'our': 2.0, 'as': 2.0, 'reviews': 1.0, 'we': 4.0, 'small': 1.0, 'a': 4.0, 'going': 1.0, 'down': 1.0, 'and': 4.0, 'months': 1.0, 'get': 2.0, 'decided': 1.0, 'for': 1.0, 'using': 1.0, 'worried': 1.0, 'new': 2.0, 'fits': 1.0, 'all': 2.0, 'an': 1.0, 'toddler': 2.0, 'price': 1.0, 'center': 1.0, 'from': 1.0, 'reminding': 1.0, 'took': 1.0, 'about': 1.0, 'gaping': 1.0, 'or': 1.0, 'anything': 1.0, 'but': 2.0, 'firm': 1.0, 'pushed': 1.0, 'on': 1.0, 'give': 1.0, 'perfectly': 1.0, 'there': 1.0, 'was': 1.0, 'enough': 1.0, 'cover': 1.0, 'laughably': 1.0, 'be': 1.0, 'that': 2.0, 'because': 1.0, 'concerned': 1.0, 'snug': 1.0, 'is': 2.0, 'obsessed': 1.0, 'with': 3.0, 'it': 2.0, 'baby': 1.0, 'she': 1.0, 'keep': 1.0, 'trampoline': 1.0, 'her': 1.0, 'has': 1.0, 'almost': 1.0, 'now': 1.0, 'are': 1.0, 'am': 3.0, 'okay': 1.0, 'too': 1.0, 'one': 2.0, 'happy': 1.0, 'seems': 1.0, 'see': 1.0}
Word element => {'product': 1.0, 'wonderful': 1.0, 'a': 1.0, 'creates': 1.0, 'springs': 1.0, 'combined': 1.0, 'memory': 1.0, 'that': 1.0, 'reviewers': 1.0, 'other': 1.0, 'bouncy': 1.0, 'more': 1.0, 'the': 4.0, 'agree': 1.0, 'comfortable': 1.0, 'and': 1.0, 'foam': 1.0, 'like': 1.0, 'not': 1.0, 'many': 1.0, 'is': 2.0, 'much': 1.0, 'mattress': 1.0, 'it': 1.0, 'with': 2.0, 'this': 1.0, 'most': 1.0, 'there': 1.0, 'of': 1.0, 'baby': 1.0, 'mattresses': 1.0, 'out': 1.0, 'cheap': 1.0, 'i': 1.0}
Word element => {'sheets': 1.0, 'enough': 1.0, 'light': 1.0, 'but': 1.0, 'firm': 1.0, 'change': 1.0, 'very': 2.0, 'happy': 1.0, 'mattress': 2.0, 'davinci': 1.0, 'perfectly': 1.0, 'this': 2.0, 'fit': 1.0, 'purchase': 1.0, 'kalani': 1.0, 'our': 1.0, 'to': 1.0, 'convertible': 1.0, 'crib': 1.0, 'the': 2.0, 'with': 1.0, 'is': 1.0}
Word element => {'under': 1.0, 'crib': 1.0, 'with': 2.0, 'it': 1.0, 'you': 1.0, 'almost': 1.0, 'good': 1.0, 'materials': 1.0, 'need': 2.0, 'any': 1.0, 'baby': 1.0, 'for': 1.0, 'softer': 1.0, 'perfect': 1.0, 'but': 1.0, 'work': 1.0, 'are': 1.0, 'the': 1.0, 'prevent': 1.0, 'mattress': 1.0, 'does': 1.0, 'a': 3.0, 'stains': 1.0, 'and': 2.0, 'getting': 1.0, 'use': 1.0, 'wet': 1.0, 'still': 1.0, 'to': 2.0, 'cover': 1.0, '100': 1.0, 'provide': 1.0, 'touch': 1.0}
Word element => {'and': 1.0, 'soft': 1.0, 'hard': 1.0, 'it': 2.0, 'very': 1.0, 'like': 1.0, 'good': 2.0, 'no': 1.0, 'sleeps': 1.0, 'baby': 1.0, 'its': 1.0, 'crib': 1.0, 'for': 1.0, 'the': 1.0, 'offers': 1.0, 'on': 1.0, 'mattress': 2.0, 'nice': 1.0, 'far': 1.0, 'i': 1.0, 'a': 1.0, 'so': 1.0, 'defects': 1.0, 'durability': 1.0, 'between': 1.0, 'balance': 1.0}
Word element => {'staying': 1.0, 'just': 2.0, 'thought': 1.0, 'what': 1.0, 'mattress': 1.0, 'am': 1.0, 'with': 2.0, 'this': 1.0, 'it': 2.0, 'slept': 1.0, 'very': 1.0, 'and': 1.0, 'i': 2.0, 'us': 1.0, 'when': 1.0, 'would': 1.0, 'was': 1.0, 'granddaughter': 1.0, 'be': 1.0, 'happy': 1.0, 'my': 1.0, 'the': 1.0, 'is': 1.0, 'fine': 1.0, 'in': 1.0, 'crib': 1.0}
Word element => {'consider': 1.0, 'good': 1.0, 'a': 4.0, 't': 2.0, 'compresses': 1.0, 'bows': 1.0, 'for': 3.0, 'on': 1.0, 'put': 2.0, 'reviewers': 1.0, 'are': 2.0, 'other': 1.0, 'stated': 1.0, 'two': 2.0, 'i': 6.0, 'otherwise': 1.0, 'years': 2.0, 'is': 3.0, 'at': 1.0, 'once': 1.0, 'the': 8.0, 'of': 1.0, 'gap': 1.0, 'when': 1.0, 'you': 1.0, 'last': 1.0, 'am': 2.0, 'as': 1.0, 'our': 4.0, 'inches': 1.0, 'read': 1.0, 'mattress': 2.0, 'this': 3.0, 'up': 1.0, 'have': 4.0, 'crib': 3.0, 'been': 2.0, 'that': 3.0, 'three': 1.0, 'into': 1.0, 'point': 1.0, 'sheets': 1.0, 'toddler': 1.0, 'trying': 1.0, 'be': 1.0, 'and': 4.0, 'anyone': 1.0, 'out': 2.0, 'figure': 1.0, 'now': 3.0, 'wish': 1.0, 'fitted': 1.0, 'with': 3.0, 'buying': 1.0, 'it': 6.0, 'she': 2.0, 'short': 2.0, 'to': 5.0, 'length': 2.0, 'converting': 1.0, 'bed': 1.0, 'decided': 1.0, 'too': 2.0, 'one': 1.0, 'we': 3.0, 'shouldn': 1.0, 'measurements': 1.0, 'reviews': 1.0, 'they': 1.0, 'see': 1.0, 'couldn': 1.0, 'if': 1.0, 'same': 1.0, 'there': 1.0, 'else': 1.0, 'glad': 1.0, 'not': 1.0, 'only': 1.0, 'why': 1.0, 'just': 1.0, 'filling': 1.0, 'towel': 1.0, 'daughter': 1.0, 'pull': 1.0, 'but': 1.0, 'can': 1.0, 'new': 1.0, 'would': 1.0, 'something': 1.0, 'was': 1.0, 'say': 1.0, 'experience': 1.0, 'comfortable': 1.0, 'seemed': 1.0, 'like': 1.0, 'address': 1.0, 'issue': 1.0, 'though': 1.0}
Word element => {'to': 1.0, 'recommend': 1.0, 'would': 1.0, 'it': 1.0, 'perfectly': 1.0, 'mattress': 1.0, 'i': 1.0, 'one': 1.0, 'toned': 1.0, 'this': 1.0, 'fit': 1.0, 'our': 1.0, 'anyone': 1.0, 'definitely': 1.0, 'mercer': 1.0, 'babyletto': 1.0, 'three': 1.0, 'crib': 1.0, 'in': 1.0, 'two': 1.0}
Word element => {'nine': 1.0, 'past': 1.0, 'these': 1.0, 'months': 1.0, 'well': 1.0, 'good': 1.0, 'the': 2.0, 'is': 2.0, 'a': 2.0, 'mattress': 2.0, 'lasted': 1.0, 'little': 1.0, 'smaller': 1.0, 'crib': 1.0, 'than': 1.0, 'but': 1.0, 'otherwise': 1.0, 'it': 1.0}
Word element => {'comfortable': 1.0, 'the': 1.0, 'very': 1.0, 'and': 2.0, 'smoothly': 1.0, 'sheets': 1.0, 'bed': 1.0, 'toddler': 1.0, 'mattress': 2.0, 'durable': 1.0, 'crib': 1.0, 'for': 1.0, 'is': 2.0, 'a': 1.0, 'perfect': 1.0, 's': 1.0, 'fit': 2.0, 'our': 1.0, 'little': 1.0, 'grandaughter': 1.0}
Word element => {'price': 1.0, 'especially': 1.0, 'with': 1.0, 'happy': 1.0, 'am': 1.0, 'far': 1.0, 'kind': 1.0, 'there': 1.0, 'that': 1.0, 'reviews': 1.0, 'other': 1.0, 'unlike': 1.0, 'so': 1.0, 'time': 1.0, 'arrived': 1.0, 'shipment': 1.0, 'purchase': 1.0, 'my': 2.0, 'softness': 1.0, 'more': 1.0, 'for': 2.0, 'yet': 1.0, 'foul': 1.0, 'uncomfortable': 1.0, 've': 1.0, 'would': 1.0, 'of': 1.0, 'rather': 1.0, 'baby': 2.0, 'test': 1.0, 'from': 1.0, 'and': 2.0, 'seems': 1.0, 'hasn': 1.0, 'which': 1.0, 'seemed': 1.0, 'made': 1.0, 'out': 1.0, 'her': 1.0, 'weren': 1.0, 'mattress': 1.0, 'the': 2.0, 'be': 2.0, 'usually': 1.0, 'any': 3.0, 'to': 4.0, 'it': 1.0, 'debut': 1.0, 'just': 1.0, 'adult': 1.0, 'but': 1.0, 'firm': 2.0, 'most': 1.0, 'purchased': 1.0, 'are': 1.0, 'on': 3.0, 'side': 1.0, 'somewhat': 1.0, 'soften': 1.0, 'things': 1.0, 'odors': 1.0, 'slip': 1.0, 'up': 1.0, 'i': 3.0, 't': 2.0, 'a': 2.0, 'cover': 1.0, 'walmart': 1.0, 'give': 1.0, 'read': 1.0, 'very': 1.0, 'mattresses': 2.0, 'little': 1.0}
Word element => {'better': 1.0, 'for': 2.0, 'it': 6.0, 'get': 1.0, 'and': 3.0, 'reason': 1.0, 'in': 1.0, 'well': 1.0, 'me': 1.0, 'not': 2.0, 'seeing': 1.0, 'was': 1.0, 'enough': 1.0, 'good': 2.0, 'of': 2.0, 'this': 1.0, 'based': 1.0, 'huge': 1.0, 'one': 1.0, 'the': 4.0, 'layers': 1.0, 'mattresses': 1.0, 'price': 1.0, 'range': 1.0, 'crib': 2.0, 'come': 1.0, 'cheapest': 1.0, 'however': 1.0, 'on': 1.0, 'reviews': 1.0, 'i': 1.0, 'fancy': 1.0, 'did': 1.0, 'a': 1.0, 's': 2.0, 'made': 1.0, 'fits': 1.0, 'solid': 1.0, 'no': 1.0, 'is': 1.0, 'great': 2.0, 'nice': 1.0, 'being': 1.0, '10': 1.0, 'does': 1.0, 'have': 1.0, 'all': 1.0, 'to': 1.0, 'insides': 1.0, 'firm': 1.0, 'but': 1.0}
Word element => {'or': 1.0, 'crib': 1.0, 'a': 1.0, 'has': 1.0, 'recommend': 1.0, 'toddler': 1.0, 'but': 1.0, 'me': 1.0, 'anyone': 1.0, 'perfect': 1.0, 'my': 1.0, 'which': 1.0, 'lol': 1.0, 'omg': 1.0, 'soft': 1.0, 'mattress': 1.0, 'not': 1.0, 'would': 1.0, 'bed': 1.0, 'for': 1.0, 'love': 1.0, 'it': 1.0, 'this': 2.0, 'ghetto': 1.0, 'son': 1.0, 's': 1.0, 'so': 1.0, 'i': 2.0, 'anxious': 1.0, 'touch': 1.0, 'size': 1.0, 'to': 2.0}
Word element => {'firm': 1.0, 'of': 1.0, 'kind': 1.0, 'right': 1.0, 'africa': 1.0, 'into': 1.0, 'water': 1.0, 'too': 2.0, 'it': 3.0, 'and': 1.0, 'perfectly': 1.0, 'the': 2.0, 'had': 1.0, 'perfect': 1.0, 'in': 1.0, 'here': 1.0, 'love': 1.0, 'one': 1.0, 'crib': 1.0, 'shipped': 1.0, 'made': 1.0, 'fits': 1.0, 'proof': 1.0, 'piece': 1.0, 's': 1.0, 'that': 1.0, 'not': 2.0, 'thick': 1.0, 'thin': 1.0}
Word element => {'comfortable': 1.0, 'is': 1.0, 'and': 1.0, 'still': 1.0, 'multiple': 1.0, 'washes': 1.0, 'to': 1.0, 'up': 1.0, 'held': 1.0, 'has': 1.0}
Word element => {'being': 1.0, 'time': 1.0, 'serve': 1.0, 'get': 1.0, 'you': 2.0, 'that': 1.0, 'little': 1.0, 'but': 2.0, 'will': 2.0, 'what': 1.0, 'mattress': 2.0, 'i': 1.0, 'guess': 1.0, 'cheap': 1.0, 'the': 2.0, 'a': 2.0, 'is': 2.0, 'pay': 1.0, 'for': 2.0, 'it': 1.0, 'this': 1.0, 'not': 1.0, 'take': 1.0, 'him': 1.0, 'kindergarten': 1.0, 'through': 1.0, 'purpose': 1.0, 'its': 1.0, 'to': 1.0}
Word element => {'at': 1.0, 'one': 1.0, 'snug': 1.0, 'took': 1.0, 'crib': 1.0, 'for': 2.0, 'in': 2.0, 'also': 1.0, 'and': 2.0, 'getting': 1.0, 'little': 1.0, 'very': 2.0, 'it': 3.0, 'yourself': 1.0, 'only': 1.0, 'preparation': 1.0, 'well': 1.0, 'guy': 1.0, 'perfect': 1.0, 'this': 1.0, 'mattress': 2.0, 'made': 1.0, 'fits': 1.0, 'lower': 1.0, 'just': 1.0, 'few': 1.0, 'paying': 1.0, 'got': 1.0, 'delivered': 1.0, 'arrival': 1.0, 'instead': 1.0, 'days': 2.0, 's': 1.0, 'a': 3.0, 'ago': 1.0, 'high': 1.0, 'which': 1.0, 'is': 1.0, 'more': 1.0, 'our': 2.0, 'to': 1.0, 'be': 1.0, 'highly': 1.0, '2': 1.0, 'money': 1.0, 'store': 1.0, 'recommend': 1.0, 'saving': 1.0, 'baby': 1.0, 'quality': 2.0, 'of': 1.0}
Word element => {'highly': 1.0, 'bed': 1.0, 'in': 1.0, 'old': 1.0, 'year': 1.0, 'for': 1.0, 'begin': 1.0, 'had': 1.0, 'night': 1.0, 'ahead': 1.0, 'use': 1.0, 'amazon': 1.0, 'on': 1.0, 'seller': 1.0, 'up': 1.0, 'came': 1.0, 'another': 1.0, 'one': 1.0, 'bought': 1.0, 'high': 1.0, 'sounded': 1.0, '100': 1.0, 'an': 1.0, 'firm': 1.0, '2': 2.0, 'but': 2.0, 'recommend': 1.0, 'wishing': 1.0, 'was': 1.0, 'i': 2.0, 'the': 5.0, 'comfortable': 2.0, '1': 2.0, 'spend': 1.0, 'great': 1.0, 'researched': 1.0, 'very': 1.0, 'mattresses': 1.0, 't': 2.0, 'we': 4.0, 'her': 1.0, 'different': 1.0, 'than': 1.0, 'crib': 1.0, 'didn': 1.0, 'even': 1.0, 'this': 2.0, 'mattress': 4.0, 'went': 1.0, 'born': 1.0, 'needed': 1.0, 'wan': 1.0, 'and': 4.0, 'innerspring': 1.0, 'with': 3.0, 'heavy': 1.0, 'first': 1.0, 'she': 1.0, 'it': 4.0, 'daughter': 1.0, 'am': 1.0, 'when': 1.0, 'while': 1.0, 'has': 1.0, 'that': 1.0, 'been': 1.0, 'changing': 1.0, 'our': 2.0, 'to': 2.0, 'all': 2.0, 'as': 3.0, 'toddler': 1.0, 'sheets': 1.0, 'sleeps': 1.0, 'more': 1.0, 'is': 4.0, 'second': 1.0, 'no': 1.0, 'fun': 1.0}
Word element => {'touch': 1.0, 'by': 1.0, 'too': 1.0, 'seem': 1.0, 'doesn': 1.0, 'price': 1.0, 'couldn': 1.0, 'we': 1.0, 'firm': 1.0, 'but': 1.0, 't': 3.0, 'haven': 1.0, 'used': 1.0, 'seems': 1.0, 'the': 1.0, 'yet': 1.0, 'beat': 1.0, 'it': 1.0, 'great': 1.0, 'quality': 1.0, 'and': 1.0}
Word element => {'room': 1.0, 'extra': 1.0, 'that': 1.0, 'safe': 1.0, 'isn': 1.0, 'all': 1.0, 'to': 1.0, 'as': 1.0, 'returning': 1.0, 'll': 1.0, 'way': 1.0, 'gap': 1.0, 'big': 1.0, 't': 1.0, 'could': 1.0, 'a': 2.0, 'since': 1.0, 'see': 1.0, 'was': 2.0, 'there': 1.0, 'just': 1.0, 'says': 1.0, 'measured': 1.0, 'it': 3.0, 'but': 2.0, 'back': 1.0, 'put': 1.0, 'on': 1.0, 'standard': 1.0, 'other': 1.0, 'is': 1.0, 'april': 1.0, 'this': 2.0, 'mattress': 2.0, '49': 1.0, 'my': 1.0, 'end': 1.0, 'in': 3.0, 'posted': 1.0, 'the': 4.0, 'i': 5.0, 'long': 2.0, 'regarding': 1.0, 'either': 2.0, '52': 2.0, 'then': 1.0, 'when': 2.0, 'barely': 1.0, 'ordered': 1.0, 'description': 1.0, 'and': 1.0, 'issue': 1.0, 'some': 1.0, 'batch': 1.0, 'reviews': 1.0, 'have': 2.0, 'crib': 2.0, 'bad': 1.0, 'sizing': 1.0, 'be': 2.0}
Word element => {'find': 1.0, 'would': 1.0, 'about': 1.0, 'who': 1.0, 'that': 1.0, 'bed': 1.0, 'toddler': 1.0, 'reviews': 1.0, 'they': 1.0, 'is': 2.0, 'till': 1.0, 'use': 1.0, 'intention': 1.0, 'with': 1.0, 'buy': 1.0, 'me': 1.0, 'not': 2.0, 'safety': 1.0, 'move': 1.0, 'however': 1.0, 'infants': 1.0, 'couldn': 1.0, 'see': 1.0, 'only': 1.0, 'but': 1.0, 'can': 1.0, 'an': 1.0, 'd': 1.0, 'price': 1.0, 'compared': 1.0, 'ok': 1.0, 'saw': 1.0, 'light': 1.0, 'by': 1.0, 'twin': 1.0, 'crib': 2.0, 'feels': 1.0, 'the': 3.0, 'this': 5.0, 'soft': 3.0, 'mattress': 5.0, 'may': 1.0, 'girls': 2.0, 'read': 1.0, 'little': 1.0, 'mattresses': 2.0, 'bending': 1.0, 'in': 4.0, '17': 1.0, 'anyone': 1.0, 'be': 1.0, 'putting': 1.0, 'recommend': 1.0, 'expecting': 1.0, 'on': 2.0, 'ends': 1.0, 'so': 1.0, 'boy': 1.0, 'have': 1.0, 'twins': 1.0, 'too': 3.0, 'and': 6.0, 'firmness': 1.0, 'serious': 1.0, 'middle': 1.0, 'young': 1.0, 'old': 1.0, 'tested': 1.0, '22lb': 1.0, 'out': 2.0, 'month': 1.0, 'she': 2.0, 'it': 6.0, 'reasons': 1.0, 'one': 1.0, 'for': 3.0, 'firmer': 1.0, 'of': 2.0, 'immediately': 1.0, 'any': 1.0, 'sleep': 1.0, 'to': 2.0, 'our': 1.0, 'jumped': 1.0, 't': 1.0, 'could': 2.0, 'a': 1.0, 's': 3.0, 'i': 7.0, 'two': 1.0, 'flapping': 1.0, 'are': 1.0}
Word element => {'glad': 1.0, 'so': 1.0, 'am': 1.0, 'i': 2.0, 'price': 1.0, 'and': 4.0, 'his': 2.0, 'bedroom': 1.0, 'bassinet': 1.0, 'spends': 1.0, 'tag': 1.0, 'different': 1.0, 'tons': 1.0, 'in': 4.0, 'without': 1.0, 'the': 3.0, 'currently': 1.0, 'a': 3.0, 't': 1.0, 'only': 1.0, 'mattress': 3.0, 'this': 2.0, 'is': 5.0, 'it': 2.0, 'nights': 1.0, 'perfectly': 2.0, '8': 1.0, 'now': 1.0, 'weeks': 1.0, 'an': 1.0, 'old': 1.0, 'baby': 2.0, 'don': 1.0, 'firm': 1.0, 'money': 1.0, 'napping': 1.0, 'standard': 1.0, 'crib': 2.0, 'size': 1.0, 'very': 1.0, 'as': 1.0, 'supportive': 1.0, 'be': 1.0, 'fits': 1.0, 'my': 2.0, 'fool': 1.0, 'value': 1.0, 'your': 1.0, 'on': 2.0, 'bought': 1.0, 'one': 1.0, 'big': 1.0, 'spend': 1.0, 'comfortable': 1.0, 'for': 1.0, 'excellent': 1.0, 'safe': 1.0}
Word element => {'recommend': 1.0, 'i': 1.0, 'allow': 1.0, 't': 1.0, 'mattress': 1.0, 'the': 1.0, 'protects': 1.0, 'leakage': 1.0, 'it': 2.0, 'doesn': 1.0, 'a': 1.0, 'firm': 1.0, 'adorable': 1.0, 'any': 1.0, 'comes': 1.0, 'fully': 1.0, 'is': 1.0, 'waterproof': 1.0, 'with': 1.0, 'totally': 1.0, 'that': 1.0, 'cover': 1.0}
Word element => {'mattress': 1.0, 'but': 1.0, 'is': 1.0, 'lol': 1.0, 'great': 1.0, 'it': 1.0, 'perfectly': 1.0, 'needs': 1.0, 'has': 2.0, 'worked': 1.0, 'our': 1.0, 'my': 1.0, 'for': 1.0, 'daughter': 1.0, 'been': 1.0, 'she': 1.0, 'baby': 2.0, 'sleeps': 1.0, 'like': 1.0, 'a': 3.0}
Word element => {'fit': 1.0, 'the': 2.0, 'napped': 1.0, 'him': 1.0, 'it': 1.0, 'only': 2.0, 'he': 1.0, 'with': 2.0, 'room': 1.0, 'on': 1.0, 'nice': 1.0, 'few': 1.0, 'to': 1.0, 'our': 2.0, 'as': 1.0, 'very': 1.0, 'and': 2.0, 'issue': 1.0, 'getting': 1.0, 'times': 1.0, 'far': 1.0, 'haven': 1.0, 'fits': 1.0, 'tight': 1.0, 'in': 3.0, 'crib': 1.0, 'waterproof': 1.0, 'has': 1.0, 'keep': 1.0, 'at': 1.0, 'baby': 1.0, 'night': 1.0, 'old': 1.0, 't': 1.0, 'we': 1.0, 'a': 2.0, 's': 1.0, 'sheets': 1.0, 'weeks': 1.0, '2': 1.0, 'but': 1.0, 'an': 1.0, 'pleased': 1.0, 'so': 1.0, 'pnp': 1.0, 'mattress': 1.0, 'had': 1.0, 'pad': 1.0, 'or': 1.0}
Word element => {'paid': 1.0, 'price': 1.0, 'by': 1.0, 'am': 1.0, 'manner': 1.0, 'safe': 1.0, 'quality': 1.0, 'surprised': 1.0, 'toddler': 1.0, 'weeks': 1.0, 'a': 2.0, 'three': 1.0, 'the': 4.0, 'my': 1.0, 'use': 1.0, 'in': 1.0, 'perfect': 1.0, 'fits': 1.0, 'to': 1.0, 'very': 1.0, 'year': 1.0, 'mattress': 1.0, 'bought': 1.0, 'grandchildren': 1.0, 'that': 1.0, 'bed': 1.0, 'for': 3.0, 'comfortable': 1.0, 'i': 3.0, 'visit': 1.0, 'this': 1.0, 'it': 2.0, 'is': 1.0, 'feels': 1.0, 'and': 1.0}
Word element => {'well': 1.0, 'crib': 1.0, 'tuscany': 1.0, 'storkcraft': 1.0, 'my': 1.0, 'fits': 1.0, 'firm': 1.0, 'nice': 1.0, 'mattress': 1.0, 'as': 1.0, 'quality': 1.0, 'i': 2.0, 'perfectly': 1.0, 'great': 1.0, 'it': 2.0, 'got': 1.0, 'purchased': 1.0, 'to': 1.0, 'fit': 1.0}
Word element => {'recommend': 1.0, 'definitely': 1.0, 'all': 1.0, 'slept': 1.0, 'would': 1.0, 'him': 1.0, 'considering': 1.0, 'when': 1.0, 'like': 1.0, 'we': 2.0, '4': 1.0, 'on': 2.0, 'is': 1.0, 'my': 1.0, 'the': 1.0, 'go': 1.0, 'a': 1.0, 'to': 3.0, 'purchased': 2.0, 'mattress': 3.0, 'seemed': 1.0, 'nice': 1.0, 'crib': 3.0, 'anyone': 1.0, 'in': 2.0, 's': 1.0, 'night': 1.0, 'i': 2.0, 'through': 1.0, 'new': 1.0, 'soundly': 1.0, 'grandson': 1.0, 'dream': 1.0, 'he': 2.0, 'with': 1.0, 'this': 2.0, 'it': 5.0, '1': 1.0, 'me': 1.0, 'perfectly': 1.0, 'very': 1.0, 'placed': 1.0, 'quality': 1.0, 'fits': 1.0}
Word element => {'purchase': 1.0, 'very': 1.0, 'months': 1.0, 'now': 1.0, 'is': 2.0, 'baby': 1.0, 'grandson': 1.0, 'a': 1.0, 'like': 1.0, 'know': 1.0, 'and': 1.0, 'up': 1.0, 'sleep': 1.0, 'all': 1.0, 'i': 1.0, 'in': 1.0, 'rested': 1.0, 'our': 1.0, 'when': 1.0, 'gets': 1.0, 'house': 1.0, 'my': 1.0, 'happy': 2.0, 'with': 1.0, 'he': 2.0, '19': 1.0, 'at': 1.0}
Word element => {'purchased': 1.0, 'much': 1.0, 'nice': 1.0, 'they': 1.0, 'cart': 1.0, 'baby': 3.0, 'crib': 1.0, 'wife': 1.0, 'past': 1.0, 'by': 1.0, 'daughter': 1.0, 'ones': 1.0, 'the': 4.0, 'in': 1.0, 'adding': 1.0, 'my': 1.0, 'after': 1.0, 'had': 1.0, 'to': 1.0, 'was': 1.0, 'i': 1.0, 'better': 1.0, 'recommended': 1.0, 'thought': 1.0, 'but': 1.0, 'a': 2.0, 'bed': 2.0, 'really': 1.0, 'said': 1.0, 'amazon': 1.0, 'is': 1.0, 'and': 2.0, 'it': 1.0}
Word element => {'love': 1.0, 'expectations': 1.0, 'the': 1.0, 'my': 1.0, 'saw': 1.0, 'reluctant': 1.0, 'cannot': 1.0, 'like': 1.0, 'at': 1.0, 'was': 3.0, 'when': 2.0, 'price': 1.0, 'good': 1.0, 'something': 1.0, 'that': 1.0, 'you': 1.0, 'but': 1.0, 'tell': 1.0, 'be': 1.0, 'bought': 1.0, 'first': 1.0, 'it': 3.0, 'cheap': 1.0, 'i': 6.0, 'beyond': 1.0}
Word element => {'price': 1.0, 'it': 1.0, 'approved': 1.0, 'well': 1.0, 'valuedefinately': 1.0, 'reasonable': 1.0, 'comfortable': 1.0, 'of': 1.0, 'good': 2.0, 'baby': 1.0, 'and': 2.0, 'reccomended': 1.0, 'wife': 1.0, 'for': 1.0, 'most': 1.0, 'my': 1.0, 'fits': 1.0, 'all': 1.0}
Word element => {'able': 1.0, 'i': 1.0, 'any': 1.0, 'down': 1.0, 'mattress': 1.0, 'it': 1.0, 'this': 1.0, 'simple': 1.0, 'and': 1.0, 'am': 1.0, 'fast': 1.0, 'my': 2.0, 'of': 1.0, 'up': 2.0, 'there': 1.0, 'bed': 1.0, 'for': 1.0, 'comfortable': 1.0, 'isn': 1.0, 'son': 2.0, 'very': 1.0, 'be': 1.0, 'wipe': 1.0, 'soak': 1.0, 'to': 4.0, 'much': 1.0, 'seems': 1.0, 'really': 2.0, 'is': 2.0, 'wetting': 1.0, 'more': 1.0, 'the': 3.0, 't': 2.0, 'say': 1.0, 'a': 1.0, 'little': 1.0, 'clean': 2.0, 'wetness': 1.0, 'doesn': 1.0, 'but': 1.0}
Word element => {'clean': 1.0, 'and': 1.0, 'to': 2.0, 'be': 1.0, 'built': 1.0, 'easy': 1.0, 'relatively': 1.0, 'fast': 1.0, 'are': 1.0, 'a': 2.0, 'mattress': 2.0, 'which': 1.0, 'nice': 1.0, 'for': 1.0, 'comfortable': 1.0, 'crib': 2.0, 'little': 1.0, 'on': 1.0, 'firm': 1.0, 'side': 1.0, 'sturdy': 1.0, 'value': 1.0, 'more': 1.0, 'the': 1.0, 'great': 1.0, 'shipping': 1.0}
Word element => {'loves': 1.0, 'my': 1.0, 'gaps': 1.0, 'about': 1.0, 'to': 1.0, 'worries': 1.0, 'mattress': 1.0, 'toddler': 1.0, 'nice': 1.0, 'fit': 2.0, 'bought': 1.0, 'pleased': 1.0, 'been': 1.0, 'it': 1.0, 'this': 1.0, 'with': 1.0, 'standard': 1.0, 'is': 1.0, 've': 1.0, 'year': 1.0, 'very': 1.0, 'and': 1.0, 'old': 1.0, 'i': 2.0, 'a': 1.0, 'size': 1.0, 'tight': 1.0, 'bed': 1.0, 'no': 1.0, '2': 1.0, 'the': 1.0}
Word element => {'nice': 1.0}
Word element => {'recommend': 1.0, 'definitely': 1.0, 'would': 1.0, 'really': 1.0, 'a': 1.0, 'at': 1.0, 'very': 1.0, 'infant': 1.0, 'quality': 1.0, 'an': 1.0, 'superior': 1.0, 'them': 1.0, 'give': 1.0, 'price': 1.0, 'dogs': 1.0, 'treatment': 1.0, 'they': 2.0, 'our': 2.0, 'shepherds': 1.0, 'purchased': 1.0, 'to': 1.0, 'product': 1.0, 'be': 2.0, 'for': 2.0, 'this': 1.0, 'durable': 1.0, 'have': 1.0, 'of': 1.0, 'i': 3.0, 'proven': 1.0, 'good': 2.0, 'quite': 1.0, 'theywould': 1.0, 'and': 1.0, 'am': 1.0, 'sure': 1.0, 'can': 1.0, 'if': 1.0, 'survive': 1.0, 'these': 1.0, 'german': 1.0, '2': 1.0, 'the': 1.0}
Word element => {'nice': 1.0, 'so': 1.0, 'looks': 1.0, 'ordered': 1.0, 'i': 1.0, 'it': 1.0, 'be': 1.0, 'to': 1.0, 'product': 1.0, 'seems': 1.0, 'haven': 1.0, 't': 1.0, 'of': 1.0, 'been': 1.0, 'what': 1.0, 'set': 1.0, 'far': 1.0, 'but': 1.0, 'as': 1.0, 'up': 1.0, 'the': 1.0, 'yet': 1.0}
Word element => {'price': 1.0, 'mattress': 1.0, 'on': 1.0, 'better': 1.0, 'this': 1.0, 'play': 1.0, 'n': 1.0, 'well': 1.0, 'a': 1.0, 'great': 1.0, 'slept': 1.0, 'money': 1.0, 'the': 2.0, 'my': 1.0, 'she': 1.0, 'worth': 1.0, 'been': 1.0, 'crib': 1.0, 'had': 1.0, 'daughter': 1.0, 'in': 2.0, 'much': 1.0, 'pack': 1.0}
Word element => {'for': 1.0, 'not': 1.0, 'between': 1.0, 'space': 1.0, 'our': 1.0, 'inches': 1.0, 'acceptable': 1.0, 'mattress': 2.0, 'on': 2.0, 'sheet': 1.0, 'soon': 1.0, 'crib': 2.0, '2': 1.0, 'the': 1.0, 'a': 1.0, 'this': 2.0, 'standard': 1.0, 'extra': 1.0, 'we': 1.0, 'as': 2.0, 'very': 1.0, 'would': 1.0, 'was': 1.0, 'about': 1.0, 'us': 2.0, 'flimsy': 1.0, 'put': 1.0, 'additionally': 1.0, 'of': 1.0, 'up': 1.0, 'fold': 1.0, 'there': 1.0, 'and': 1.0, '1': 1.0}
Word element => {'1st': 1.0, 'safety': 1.0, 'a': 1.0, 'thanks': 1.0, 'mattress': 2.0, 'really': 1.0, 'has': 1.0, 'no': 1.0, 's': 1.0, 'sleeping': 1.0, 'son': 1.0, 'bed': 1.0, 'for': 2.0, 'he': 1.0, 'with': 2.0, 'this': 2.0, 'happy': 1.0, 'my': 1.0, 'great': 1.0, 'the': 1.0, 'product': 1.0, 'bought': 1.0, 'firm': 1.0, 'not': 1.0, 'toddler': 1.0, 'quality': 1.0, 'but': 1.0, 'uncomfortable': 1.0, 'trouble': 1.0}
Word element => {'one': 1.0, 'their': 1.0, 'sturdy': 1.0, 'for': 4.0, 'love': 1.0, 'recommended': 1.0, 'including': 1.0, 'articles': 1.0, 'lot': 1.0, 'little': 1.0, 'read': 1.0, 'mattresses': 1.0, 'have': 2.0, 'bsf': 1.0, 'a': 3.0, 's': 1.0, 't': 1.0, 'the': 1.0, 'great': 1.0, 'surprised': 1.0, 'recommend': 1.0, 'was': 2.0, 'doesn': 1.0, 'but': 1.0, 'firm': 1.0, 'crib': 2.0, 'perfectly': 1.0, 'and': 2.0, 'it': 2.0, 'price': 1.0, 'numerous': 1.0, 'pediatrician': 1.0, 'anyone': 1.0, 'i': 3.0, 'really': 1.0, 'mattress': 2.0, 'babies': 1.0, 'that': 1.0, 'using': 1.0, 'which': 1.0, 'like': 1.0, 'firmer': 1.0, 'of': 1.0, 'affordable': 1.0, 'my': 2.0, 'fits': 1.0, 'purchase': 1.0, 'super': 1.0, 'would': 1.0, 'springs': 1.0, 'looking': 1.0}
Word element => {'recommend': 1.0, 'would': 1.0, 'product': 1.0, 'a': 1.0, 'on': 1.0, 'you': 1.0, 'if': 1.0, 'me': 1.0, 'and': 1.0, 'like': 1.0, 'fits': 1.0, 'price': 1.0, 'ask': 1.0, 'firm': 1.0, 'perfect': 1.0, 'mattress': 1.0, 'great': 2.0, 'more': 1.0, 't': 1.0, 'is': 1.0, 'really': 1.0, 'of': 1.0, 'this': 1.0, 'it': 2.0, 'i': 2.0, 'love': 1.0, 'comfortable': 1.0, 'that': 1.0, 'isn': 1.0, 'luxurious': 1.0, 'full': 1.0, 'but': 1.0, 'pokey': 1.0, 'springs': 1.0, 'so': 1.0, 'much': 1.0}
Word element => {'did': 1.0, 'glad': 1.0, 'am': 1.0, 'reviews': 1.0, 'great': 1.0, 'other': 1.0, 'after': 1.0, 'but': 1.0, 'it': 1.0, 'about': 1.0, 'was': 1.0, 'r': 1.0, 'babies': 1.0, 'seeing': 1.0, 'looked': 1.0, 'way': 1.0, 'were': 1.0, 'for': 3.0, 'one': 1.0, 'on': 1.0, 'is': 2.0, 'without': 1.0, 'the': 5.0, 'ones': 1.0, 'little': 1.0, 'mattresses': 1.0, 'of': 3.0, 'ordering': 1.0, 'better': 2.0, 'if': 1.0, 'quality': 2.0, 'us': 1.0, 'we': 5.0, 'at': 1.0, 'munchkin': 1.0, 've': 1.0, 'in': 2.0, 'online': 1.0, 'see': 1.0, 'what': 2.0, 'this': 2.0, 'found': 1.0, 'mattress': 1.0, 'nervous': 1.0, 'kind': 1.0, 'all': 1.0, 'to': 1.0, 'our': 1.0, 'as': 1.0, 'range': 1.0, 'price': 1.0, '200': 1.0, 'person': 1.0, 'looking': 1.0, 'and': 1.0, 'good': 1.0, 'not': 1.0, 'than': 1.0, '120': 1.0, 'are': 1.0, 'so': 2.0, 'pleased': 1.0, 'i': 2.0}
Word element => {'much': 1.0, 'very': 1.0, 'you': 1.0, 'too': 1.0, 'kiddo': 1.0, 'my': 1.0, 'comfy': 1.0, 'seems': 2.0, 'plus': 1.0, 'few': 1.0, 'will': 1.0, 'm': 1.0, 'last': 1.0, 'i': 1.0, 'great': 1.0, 'it': 1.0, 'sure': 1.0, 'a': 1.0, 'thank': 1.0, 'for': 1.0, 'years': 1.0}
Word element => {'temperpedic': 1.0, 'a': 1.0, 'like': 1.0, 'coils': 1.0, 'those': 1.0, 'material': 1.0, 'be': 1.0, 'oh': 1.0, 'found': 1.0, 'i': 1.0, 'fast': 1.0, 'super': 1.0, 'mattress': 1.0, 'shipping': 1.0, 'is': 1.0, 't': 2.0, 'the': 2.0, 'made': 1.0, 'perfect': 1.0, 'and': 2.0, 'you': 1.0, 'can': 1.0, 'its': 1.0, 'to': 1.0, 'beat': 1.0, 'this': 1.0, 'with': 1.0, 'it': 1.0, 'price': 1.0, 'isn': 1.0}
Word element => {'log': 1.0, 'like': 1.0, 'which': 1.0, 'review': 1.0, 'will': 1.0, 'should': 1.0, 'however': 1.0, 'reviews': 2.0, 'comfortable': 1.0, 'contrary': 1.0, 'weeks': 1.0, 'negative': 2.0, 'he': 1.0, 'only': 1.0, 'shrink': 1.0, 'complained': 1.0, 'when': 1.0, 'this': 4.0, 'mattress': 2.0, 'sleeps': 2.0, 'is': 2.0, 'that': 1.0, 'were': 1.0, 'month': 1.0, 'issues': 1.0, 'in': 3.0, 'crib': 1.0, 'grandson': 2.0, 'waterproof': 1.0, 'the': 4.0, 'my': 3.0, 'various': 1.0, '8': 1.0, 'have': 1.0, 'had': 1.0, 'old': 1.0, 'putting': 1.0, 'i': 2.0, 'there': 1.0, 'of': 2.0, 'about': 1.0, 'no': 1.0, 'see': 1.0, 'house': 1.0, 'pad': 1.0, 'and': 2.0, 'update': 1.0, 'couple': 1.0, 'uses': 1.0, 'sheets': 1.0, 'on': 2.0, 'gaps': 1.0, 't': 1.0, 'a': 4.0, 'we': 1.0, 'over': 1.0, 'don': 1.0, 'to': 1.0, 'any': 1.0}
Word element => {'too': 1.0, 'on': 1.0, 'pillow': 1.0, 'loves': 1.0, 'have': 1.0, 'my': 1.0, 'this': 1.0, 'it': 2.0, 'separately': 1.0, 'bed': 1.0, 'keep': 1.0, 'dog': 1.0, 'sammi': 1.0, 'cleaned': 1.0, 'lab': 1.0, 'a': 2.0, 'as': 1.0, 'purchased': 2.0, 'to': 1.0, 'was': 1.0, 'easy': 1.0, 'crib': 1.0, 'sheets': 1.0, 'i': 1.0, 'large': 1.0, 'soft': 1.0}
Word element => {'as': 1.0, 'good': 1.0, 'gap': 1.0, 'fits': 1.0, 'all': 1.0, 'doesn': 1.0, 'it': 2.0, 'slept': 1.0, 'comfortable': 1.0, 'for': 1.0, 'crib': 2.0, 'assuming': 1.0, 'mattress': 1.0, 'nice': 1.0, 'm': 1.0, 'and': 1.0, 'my': 1.0, 'the': 1.0, 't': 1.0, 'at': 1.0, 'was': 1.0, 'granddaughter': 1.0, 'a': 1.0, 'well': 2.0, 'so': 1.0, 'i': 1.0}
Word element => {'good': 1.0, 'has': 1.0, 'firm': 1.0, 'is': 1.0, 'the': 1.0, 'my': 1.0, 'mattress': 2.0, 'at': 1.0, 'a': 2.0, 'great': 1.0, 'confortably': 1.0, 'and': 1.0, 'very': 1.0, 'her': 1.0, 'price': 1.0, 'reasonable': 1.0, 'sleeps': 1.0, 'structure': 1.0, 'crib': 1.0, 'in': 1.0, 'daughter': 1.0}
Word element => {'gives': 1.0, 'inside': 1.0, 'compare': 1.0, 'fits': 1.0, 'them': 1.0, 'of': 1.0, 'none': 1.0, 'offer': 1.0, 'to': 3.0, 'every': 1.0, 'it': 2.0, 'this': 2.0, 'us': 1.0, 'firm': 1.0, 'baby': 1.0, 'price': 1.0, 'a': 2.0, 'is': 2.0, 'great': 2.0, 'the': 3.0, 'touch': 1.0, 'i': 3.0, 'tried': 1.0, 'mattress': 4.0, 'have': 2.0, 'babies': 1.0, 'for': 3.0, 'been': 1.0, 'crib': 2.0, 'support': 1.0, 'months': 1.0, 'perfectly': 1.0, 'and': 3.0, 'depot': 1.0, 'think': 1.0, 'r': 1.0, 'has': 1.0, 'shopping': 1.0, 'target': 1.0}
Word element => {'will': 1.0, 'hopefully': 1.0, 'have': 1.0, 'we': 1.0, 'already': 1.0, 'crib': 1.0, 'as': 1.0, 'year': 1.0, 'of': 1.0, 'has': 1.0, 'fits': 1.0, 'firm': 1.0, 'last': 1.0, 'mattresses': 1.0, 'far': 1.0, 'for': 1.0, 'one': 2.0, 'this': 1.0, 'it': 1.0, 'mattress': 1.0, 'nice': 1.0, 'over': 1.0, 'these': 1.0, 'perfectly': 1.0, 'and': 1.0, 'lasted': 1.0, 'well': 1.0, 'a': 1.0, 'so': 1.0}
Word element => {'lot': 1.0, 'use': 1.0, 'hour': 1.0, 'one': 1.0, 'for': 1.0, 'quiet': 1.0, 'go': 1.0, 'and': 4.0, 'up': 1.0, 'crayons': 1.0, 'with': 1.0, 'it': 5.0, 'simplenow': 1.0, 'sleeping': 1.0, 'adult': 1.0, 'plain': 1.0, 'a': 2.0, 'floor': 1.0, 'is': 4.0, 'on': 2.0, 'we': 1.0, 'pure': 1.0, 'peace': 1.0, 'mattress': 2.0, 'opened': 1.0, 'the': 4.0, 'at': 1.0, 'no': 1.0, 'let': 1.0, 'box': 2.0, 'kids': 1.0, 'awesome': 1.0, 'about': 1.0, 'entertainment': 1.0, 'i': 1.0, 'laid': 1.0}
Word element => {'child': 1.0, 'would': 1.0, 'that': 1.0, 'how': 1.0, 'imagine': 1.0, 'cant': 1.0, 'to': 1.0, 'barely': 1.0, 'seems': 1.0, 'firm': 1.0, 'comfortable': 1.0, 'for': 3.0, 'but': 1.0, 'toddler': 1.0, 'my': 1.0, 'layed': 1.0, 'i': 3.0, 'infants': 1.0, 'as': 3.0, 'and': 1.0, 'is': 1.0, 'be': 2.0, 'bought': 1.0, 'rock': 1.0, 'on': 1.0, 'a': 2.0, 'down': 1.0, 'this': 1.0, 'it': 4.0, 'moved': 1.0}
Word element => {'firm': 1.0, 'belly': 1.0, 'of': 1.0, 'especially': 1.0, 'their': 1.0, 'should': 2.0, 'seems': 1.0, 'pretty': 1.0, 'old': 1.0, 'when': 1.0, 'doesn': 1.0, 'babies': 1.0, 'so': 1.0, 'delicate': 1.0, 'at': 1.0, 'low': 1.0, 'mattress': 2.0, 'her': 1.0, 'beginning': 1.0, 'like': 1.0, 'the': 2.0, 'are': 1.0, 'is': 1.0, 'sleeps': 1.0, 't': 1.0, 'a': 1.0, 'be': 1.0, 'my': 1.0, 'i': 3.0, '4': 1.0, 'over': 1.0, 'think': 2.0, 'on': 1.0, 'it': 2.0, 'precious': 1.0, 'month': 1.0, 'softer': 1.0, 'quality': 1.0, 'baby': 1.0, 'rolls': 1.0, 'and': 2.0, 'get': 1.0, 'life': 1.0, 'worried': 1.0, 'than': 1.0, 'because': 1.0, 'stay': 1.0, 'as': 2.0}
Word element => {'to': 1.0, 'get': 1.0, 'we': 1.0, 'and': 1.0, 'side': 1.0, 'had': 1.0, 'could': 1.0, 'this': 1.0, 'have': 1.0, 'flimsy': 1.0, 'better': 1.0, 'been': 1.0, 'little': 1.0, 'it': 1.0, 'was': 1.0, 'a': 2.0, 'replacement': 1.0, 'the': 1.0, 'on': 1.0}
Word element => {'because': 1.0, 'crying': 1.0, 'them': 1.0, 'noticed': 1.0, 'haven': 1.0, 'grandkids': 1.0, 'have': 1.0, 'and': 1.0, 'of': 2.0, 'seems': 1.0, 'they': 2.0, 'talk': 1.0, 'mattress': 2.0, 'yet': 1.0, 'a': 1.0, 'don': 1.0, 'is': 1.0, 'on': 1.0, 'it': 3.0, 'slept': 1.0, 'average': 1.0, 'can': 1.0, 'quality': 1.0, 'but': 1.0, 't': 2.0, 'the': 2.0, 'cry': 1.0, 'we': 1.0}
Word element => {'time': 1.0, 'on': 1.0, 'my': 1.0, 'shipped': 1.0, 'crib': 2.0, 'for': 1.0, 'priced': 1.0, 'granddaughter': 1.0, 'was': 1.0, 'said': 1.0, 'till': 1.0, 'davici': 1.0, 'him': 1.0, 'the': 2.0, 'great': 1.0, 'ordered': 1.0, 'out': 1.0, 'convertible': 1.0, 'loved': 1.0, 'through': 1.0, 'should': 1.0, 'she': 1.0, 'last': 1.0, 'it': 2.0, 'he': 1.0, 'grows': 1.0}
Word element => {'from': 1.0, 'complaints': 1.0, 'perfectly': 1.0, 'no': 1.0, 'bed': 1.0, 'fits': 1.0, 'glad': 1.0, 'i': 2.0, 'price': 1.0, 'and': 1.0, 'very': 1.0, 'quality': 1.0, 'quickly': 1.0, 'bought': 1.0, 'this': 1.0, 'the': 1.0, 'find': 1.0, 'best': 1.0, 'could': 1.0, 'for': 1.0, 'baby': 1.0, 'shipped': 1.0}
Word element => {'shipping': 1.0, 'regular': 1.0, 'chose': 1.0, 'morning': 1.0, 'received': 1.0, 'price': 1.0, 'say': 1.0, 'must': 1.0, 'very': 1.0, 'bed': 1.0, 'for': 3.0, 'love': 1.0, 'am': 1.0, 'you': 1.0, 'the': 2.0, 'my': 2.0, 'i': 4.0, 'contemplating': 1.0, 'fri': 1.0, 'old': 1.0, 'night': 1.0, 'days': 1.0, 'but': 1.0, 'will': 1.0, 'awesome': 1.0, 'year': 1.0, 'spent': 1.0, 'at': 1.0, 'soft': 1.0, 'mattress': 1.0, 'daughter': 1.0, 'and': 3.0, 'too': 2.0, 'which': 1.0, 'get': 1.0, 'researching': 1.0, 'it': 4.0, 'hard': 1.0, 'tues': 1.0, 'satsified': 1.0, 'not': 3.0, 'just': 1.0, 'to': 1.0, 'all': 1.0, 'right': 1.0, 'be': 1.0, 'disappointed': 1.0, 'plus': 1.0, 'toddler': 1.0, 'ordered': 1.0, '3': 1.0, 'on': 2.0, 's': 2.0, 'a': 1.0}
Word element => {'fit': 1.0, 'worth': 1.0, 'was': 1.0, 'walmart': 1.0, 'including': 1.0, 'came': 1.0, 'quick': 1.0, 'the': 1.0, 'perfectly': 1.0, 'love': 1.0, 'it': 3.0, 'cheaper': 1.0, 'to': 1.0, 'store': 2.0, 'then': 1.0, 'going': 1.0, 'and': 1.0, 'any': 1.0}
Word element => {'made': 1.0, 'already': 1.0, 'can': 1.0, 'than': 1.0, 'much': 3.0, 'crap': 1.0, 'back': 1.0, 'my': 1.0, 'better': 2.0, 'is': 2.0, 'son': 1.0, 'tell': 1.0, 'dont': 1.0, 'mattress': 1.0, 'expensive': 2.0, 'more': 2.0, 'the': 1.0, 'ones': 1.0, 'look': 1.0, 'was': 1.0, 'i': 2.0, 'for': 1.0, 'one': 2.0, 'bought': 1.0, 'a': 1.0, 'and': 1.0, 'this': 2.0, 'it': 1.0}
Word element => {'to': 1.0, 'easy': 1.0, 'and': 1.0, 'is': 1.0, 'sheet': 1.0, 'my': 1.0, '3x': 1.0, 'for': 2.0, 'bed': 1.0, 'dog': 3.0, '100lbs': 1.0, 'a': 2.0, 'nice': 1.0, 'beds': 1.0, 'who': 1.0, 'as': 2.0, 'quality': 1.0, 'this': 3.0, 't': 1.0, 'most': 1.0, 'use': 1.0, 'even': 1.0, 'cheap': 1.0, 'weighs': 1.0, 'i': 1.0, 'over': 1.0, 'size': 1.0, 'crib': 1.0, 'aren': 1.0, 'much': 1.0, 'wash': 1.0, 'also': 1.0}
Word element => {'too': 1.0, 'baby': 1.0, 'hope': 1.0, 'purchased': 1.0, 'does': 1.0, 'i': 3.0, 'bed': 1.0, 'enough': 1.0, 'this': 1.0, 'fit': 1.0, 'is': 1.0, 'soft': 1.0, 'my': 1.0, 'the': 1.0, 'yet': 1.0, 'firm': 1.0, 'love': 1.0, 'perfectly': 1.0, 'it': 2.0, 'had': 1.0, 'crib': 1.0, 'in': 1.0}
Word element => {'too': 1.0, 'how': 1.0, 'price': 1.0, 'saved': 1.0, 'it': 1.0, 'this': 1.0, 't': 1.0, 'more': 1.0, 'the': 2.0, 'my': 1.0, 'can': 1.0, 'love': 1.0, 'sleeping': 1.0, 'but': 1.0, 'quality': 1.0, 'i': 3.0, 'much': 1.0, 'believe': 1.0, 'on': 1.0, 'is': 1.0, 'mattress': 1.0, 'little': 1.0, 'girl': 1.0, 'well': 1.0, 'in': 1.0}
Word element => {'nice': 1.0, 'because': 1.0, 'foam': 1.0, 'us': 1.0, 'the': 1.0, 'my': 1.0, 'loved': 1.0, 'and': 2.0, 'it': 2.0, 'firm': 1.0, 'sleep': 1.0, 'of': 1.0, 'anymore': 1.0, 'he': 1.0, 'son': 1.0, 'next': 1.0, 'doesnt': 1.0, 'right': 1.0, 'to': 1.0}
Word element => {'right': 1.0, 'just': 1.0, 'ordered': 1.0, 'we': 1.0, 'the': 1.0, 'crib': 1.0, 'in': 1.0, 'worked': 1.0, 'issues': 1.0, 'with': 1.0, 'have': 1.0, 'fit': 1.0, 'did': 1.0, 'was': 1.0, 'not': 1.0, 'and': 1.0, 'any': 1.0, 'great': 1.0, 'it': 2.0, 'perfectly': 1.0}
Word element => {'likely': 1.0, 'will': 1.0, 'burp': 1.0, 'use': 1.0, 'rags': 1.0, 'size': 1.0, 'so': 1.0, 'lb': 1.0, 'small': 1.0, 'maintain': 1.0, 'cold': 1.0, 'had': 1.0, 'suggest': 1.0, 'remover': 1.0, 'stain': 1.0, 'spot': 1.0, 'buying': 1.0, 'with': 1.0, 'out': 1.0, 'come': 1.0, 'stains': 1.0, 'point': 1.0, 'like': 1.0, '4': 1.0, 'i': 3.0, 'color': 1.0, 'one': 1.0, 'for': 3.0, 'get': 1.0, 'five': 1.0, 'and': 3.0, 'combination': 1.0, 'seem': 1.0, 'the': 7.0, 'considering': 1.0, 'these': 2.0, 'receiving': 1.0, 'future': 1.0, 'at': 1.0, 'we': 1.0, 'a': 5.0, 'stitching': 1.0, 'well': 2.0, 'are': 2.0, 'of': 2.0, 'washed': 1.0, 'wash': 1.0, 'up': 1.0, 'good': 1.0, 'water': 1.0, 'value': 1.0, 'be': 2.0, 'in': 2.0, 've': 1.0, 'd': 1.0, 'price': 1.0, 'though': 1.0, 'colors': 1.0, 'they': 1.0, 're': 1.0, 'softness': 1.0, 'high': 1.0, 'not': 1.0, 'baby': 1.0, 'them': 2.0, 'quality': 1.0, 'most': 1.0, 'blankets': 1.0, 'but': 1.0, 'as': 3.0, 'patterns': 1.0, 'to': 2.0, 'durable': 1.0, 'swaddling': 1.0, 'perfect': 1.0, 'this': 1.0, 'just': 1.0, 'variety': 1.0, 'few': 1.0, 'you': 1.0, 'times': 1.0, 'more': 1.0, 'is': 1.0, 'package': 1.0, 'holding': 1.0}
Word element => {'cheap': 1.0, 'thin': 1.0, 'extremely': 1.0, 'to': 1.0, 'quality': 1.0, 'and': 2.0, 'holes': 1.0, 'already': 1.0, 'shred': 1.0, 'were': 1.0, 'there': 1.0, 'ordered': 1.0, 'looked': 1.0, 'but': 1.0, 'because': 1.0, 'these': 1.0, 'they': 1.0, 'really': 1.0, 'began': 1.0, 'cute': 1.0, 'wash': 1.0, 'after': 1.0, 'one': 1.0}
Word element => {'that': 1.0, 'clients': 1.0, 'are': 1.0, 'my': 1.0, 'for': 2.0, 'pack': 1.0, 'part': 1.0, 'perfect': 1.0, 'use': 1.0, 'they': 1.0, 'these': 1.0, 'flannel': 1.0, 'as': 1.0, 'blankets': 1.0, 'of': 1.0, 'castor': 1.0, 'a': 1.0, 'i': 1.0, 'oil': 1.0}
Word element => {'awesome': 1.0, 'lot': 1.0, 'spits': 1.0, 'who': 1.0, 'have': 1.0, 'if': 1.0, 'a': 4.0, 'swaddling': 1.0, 'size': 1.0, 'cloths': 1.0, 'also': 1.0, 'newborn': 1.0, 'perfect': 1.0, 'they': 1.0, 'but': 1.0, 'just': 1.0, 'special': 1.0, 'light': 1.0, 'particularly': 1.0, 'summer': 1.0, 'really': 1.0, 'burp': 1.0, 'good': 2.0, 'you': 1.0, 'designs': 1.0, 's': 1.0, 'expensive': 1.0, 'blanket': 1.0, 'bibs': 1.0, 'nothing': 1.0, 'up': 1.0, 'there': 1.0, 'are': 2.0, 'cheap': 1.0, 'these': 2.0, 'ones': 1.0, 'the': 2.0, 'more': 1.0, 'and': 3.0, 'as': 3.0, 'for': 2.0, 'love': 1.0, 'baby': 1.0, 'about': 1.0, 'colors': 1.0}
Word element => {'car': 1.0, 'polishing': 1.0, 'even': 1.0, 'or': 1.0, 'they': 1.0, 'pros': 1.0, 'laundry': 1.0, 'load': 1.0, 'that': 1.0, 'in': 1.0, 'everything': 1.0, 'your': 1.0, 'on': 1.0, 'cotton': 1.0, 'loose': 1.0, 'burp': 1.0, 'there': 1.0, 'wash': 1.0, 'cloths': 2.0, 'these': 2.0, 'the': 1.0, 'arrived': 1.0, 'by': 1.0, '28': 2.0, 'and': 3.0, 'too': 1.0, 'them': 2.0, 'baby': 2.0, 'use': 1.0, 'at': 1.0, 'was': 1.0, 'rough': 1.0, 'i': 2.0, 'received': 1.0, 'of': 2.0, 'once': 1.0, 'shower': 1.0, 'great': 1.0, '1': 2.0, 'excited': 1.0, 'only': 1.0, 'work': 1.0, '2': 1.0, 'advertised': 1.0, 'set': 1.0, 'could': 1.0, 'a': 4.0, 'piles': 1.0, 'gift': 1.0, 'to': 1.0, 'as': 3.0, 'tufts': 1.0, 'are': 4.0, 'real': 1.0, 'cons': 1.0, 'way': 1.0, 'small': 1.0, 'drop': 1.0, 'would': 1.0, 'adequately': 1.0, 'for': 3.0, 'cover': 1.0, 'doll': 1.0, 'writhing': 1.0, 'useless': 1.0, 'every': 1.0, 'material': 1.0, 'flannel': 1.0, 'is': 1.0, 'not': 1.0, 'this': 1.0, 'soft': 1.0, 'time': 1.0}
Word element => {'set': 1.0, 'purchasing': 1.0, 'however': 1.0, 'after': 1.0, 'small': 1.0, 'so': 1.0, 'registry': 1.0, 'they': 3.0, 'don': 1.0, 'very': 2.0, 'baby': 1.0, 'them': 3.0, 'was': 1.0, 'happy': 1.0, 'another': 1.0, 'my': 1.0, 'fell': 1.0, 'be': 1.0, 'love': 1.0, 'for': 1.0, 'the': 2.0, 'these': 1.0, 'with': 1.0, 'in': 2.0, 'to': 1.0, 'patterns': 1.0, 'receive': 1.0, 'value': 1.0, 'of': 3.0, 'and': 3.0, 'washing': 1.0, 'not': 1.0, 'are': 3.0, 'from': 1.0, 'coziest': 1.0, 'thin': 1.0, 'ups': 1.0, 'good': 1.0, 'spit': 1.0, 'won': 1.0, 'i': 4.0, 'etc': 1.0, 'blankets': 2.0, 'but': 1.0, 'sized': 1.0, 'find': 1.0, 't': 2.0, 'discovered': 1.0, 'a': 1.0, 'lot': 1.0}
Word element => {'trick': 1.0, 'kennels': 1.0, 'house': 1.0, 'they': 1.0, 'dog': 1.0, 'these': 1.0, 'little': 2.0, 'and': 1.0, 'blankets': 1.0, 'do': 1.0, 'nice': 1.0, 'my': 1.0, 'are': 1.0, 'the': 2.0, 'in': 1.0, 'for': 1.0, 'money': 1.0, 'i': 1.0, 'use': 1.0, 'them': 1.0}
Word element => {'material': 1.0, 'loves': 1.0, 'size': 1.0, 'perfect': 1.0, 'they': 1.0, 'i': 1.0, 'love': 1.0, 'using': 1.0, 'ferret': 1.0, 'and': 1.0, 'blankets': 1.0, 'the': 1.0, 'are': 1.0, 'my': 2.0, 'baby': 1.0, 'little': 1.0, 'receiving': 1.0, 'in': 1.0, 'buddies': 1.0, 'cage': 1.0}
Word element => {'lousy': 1.0, 'check': 1.0, 'usually': 1.0, 'this': 2.0, 'by': 1.0, 'won': 1.0, 'inhale': 1.0, 'swallow': 1.0, 'teething': 1.0, 'on': 1.0, 'rethinking': 1.0, 'wouldn': 2.0, 'looser': 1.0, 'simple': 1.0, 'out': 1.0, 'had': 2.0, 'loose': 2.0, 'enough': 1.0, 'was': 2.0, 'it': 3.0, 'definitely': 2.0, 'better': 1.0, 'little': 1.0, 'shrink': 1.0, 'products': 1.0, 'cotton': 2.0, 't': 4.0, 'wasn': 1.0, 'or': 2.0, 'most': 1.0, 'washer': 1.0, 'dreadful': 1.0, 'for': 6.0, 'like': 2.0, 'cheap': 2.0, 'actually': 3.0, 'd': 2.0, 'infant': 1.0, 'give': 3.0, 'not': 2.0, 'be': 2.0, 'leave': 1.0, 'horrible': 1.0, 'as': 2.0, 'weave': 1.0, 'm': 4.0, 'in': 5.0, 'even': 1.0, 'snuggle': 1.0, 'edit': 2.0, 'colors': 1.0, 'embarrassed': 1.0, 'cut': 1.0, 'they': 6.0, 'puppy': 5.0, 'how': 1.0, 'washing': 1.0, 'usa': 1.0, 'get': 2.0, 'easy': 1.0, 'so': 5.0, 'can': 1.0, 'but': 9.0, 'things': 1.0, 'blankets': 1.0, 'brand': 1.0, 'low': 2.0, 'count': 2.0, 'very': 2.0, 'clearly': 1.0, 'sure': 2.0, 'thread': 3.0, 'look': 1.0, 'patterns': 1.0, 'is': 1.0, 'with': 2.0, 'of': 1.0, 'the': 16.0, 'these': 5.0, 'real': 1.0, 'exactly': 1.0, 'all': 1.0, 'surged': 3.0, 'an': 1.0, 'well': 1.0, 'i': 15.0, 'a': 8.0, 's': 1.0, 'off': 1.0, 'see': 1.0, 'description': 1.0, 'stitch': 1.0, 'and': 1.0, 'getting': 1.0, 'letting': 1.0, 'edges': 3.0, 'thin': 1.0, 'now': 1.0, 're': 3.0, 'trim': 1.0, 'pakistan': 1.0, 'reviews': 1.0, 'fine': 2.0, 'tag': 2.0, 'her': 2.0, 'into': 1.0, 'that': 3.0, 'baby': 1.0, 'she': 1.0, 'make': 1.0, 'goes': 1.0, 'bed': 1.0, 'after': 2.0, 'lol': 1.0, 'if': 2.0, 'matters': 2.0, 'actual': 1.0, 'happy': 1.0, 'just': 1.0, 'stuff': 1.0, 'them': 5.0, 'always': 1.0, 'will': 2.0, 'tags': 1.0, 'when': 1.0, 'what': 1.0, 'my': 3.0, 'may': 1.0, 'happens': 1.0, 'situation': 1.0, 'never': 1.0, 'made': 4.0, 'gift': 1.0, 'though': 1.0, 'dog': 1.0, 'dryer': 1.0, 'have': 2.0, 'shown': 1.0, 'buy': 2.0, 'dogs': 1.0, 'pulled': 1.0, 'to': 12.0, 'high': 1.0, 'pretty': 2.0, 'did': 1.0, 'standards': 1.0, 'find': 1.0, 'since': 2.0, 'each': 1.0, 'prefer': 1.0, 'end': 1.0, 'carefully': 1.0, 'up': 1.0, 'shrinkage': 2.0, 'mangling': 1.0, 'are': 6.0, 'first': 1.0, 'soft': 1.0, 'anything': 2.0}
Word element => {'while': 1.0, 'quite': 1.0, 'last': 1.0, 'm': 1.0, 'snuggle': 1.0, 'them': 3.0, 'tends': 1.0, 'cover': 1.0, 'still': 1.0, 'outfits': 1.0, 'his': 1.0, 'of': 1.0, 'with': 1.0, 'sure': 1.0, 'easy': 1.0, 'old': 1.0, 'nice': 1.0, 'born': 1.0, 'snug': 1.0, 'have': 1.0, 'll': 1.0, '8': 1.0, 'x40': 1.0, 'chris': 1.0, 'at': 1.0, 'to': 3.0, 'give': 1.0, 'not': 1.0, 'blankets': 3.0, 'can': 1.0, 'was': 1.0, '14lbs': 1.0, 'they': 2.0, 'well': 1.0, 'has': 1.0, '7lbs': 1.0, 'these': 2.0, 'a': 1.0, 'we': 1.0, 'going': 1.0, 'you': 1.0, 'many': 2.0, 'is': 1.0, 'match': 1.0, '14oz': 1.0, 'too': 1.0, 'and': 7.0, 'got': 1.0, 'swaddled': 1.0, 'before': 2.0, '20': 1.0, '5': 1.0, 'very': 1.0, 'inches': 2.0, 'he': 2.0, '22': 1.0, 'grab': 1.0, 'him': 4.0, 'be': 1.0, 'flannel': 1.0, 'now': 1.0, 'weeks': 1.0, 'up': 1.0, 'over': 1.0, 'so': 2.0, '30': 1.0, 'swaddling': 1.0, 'i': 2.0, 'become': 1.0, 'for': 2.0, 'are': 1.0, 'cute': 1.0}
Word element => {'better': 1.0, 'a': 1.0, 'pay': 1.0, 'would': 1.0, 'okay': 1.0, 'get': 1.0, 'sure': 2.0, 'take': 1.0, 'also': 1.0, 'will': 2.0, 'them': 1.0, 'quality': 2.0, 'baby': 1.0, 'price': 1.0, 'my': 1.0, 'small': 1.0, 'so': 2.0, 'blanket': 1.0, 'are': 3.0, 'i': 4.0, 'am': 3.0, 'out': 1.0, 'loose': 1.0, 'thick': 1.0, 'very': 4.0, 'firstly': 1.0, 'but': 2.0, 'blankets': 1.0, 'at': 1.0, 'not': 4.0, 'impressed': 1.0, 'soon': 1.0, 'and': 3.0, 'with': 1.0, 'it': 2.0, 'come': 1.0, 'they': 3.0, 'the': 4.0, 'these': 1.0, 'receiving': 1.0, 'rather': 1.0, 'of': 1.0, 'stitching': 1.0, 'alot': 1.0, 'edge': 1.0, 'more': 1.0, 'around': 1.0, 'is': 1.0, 'good': 1.0, 'for': 2.0, 'nice': 1.0, 'soft': 1.0, 'grow': 1.0, 'to': 1.0, 'all': 1.0, 'maybe': 1.0}
Word element => {'blankets': 1.0, 'own': 1.0, 'my': 1.0, 'small': 1.0, 'make': 1.0, 'a': 1.0, 'wrap': 1.0, 'to': 4.0, 'unraveled': 1.0, 'up': 1.0, 'way': 1.0, 'were': 2.0, 'the': 2.0, 'these': 1.0, 'and': 1.0, 'edges': 1.0, 'came': 1.0, 'surged': 1.0, 'but': 1.0, 'use': 1.0, 'i': 1.0, 'baby': 1.0, 'ended': 1.0, 'in': 1.0, 'having': 1.0, 'fabric': 1.0}
Word element => {'why': 1.0, 'received': 1.0, 'i': 1.0, 'order': 1.0, 'not': 1.0, 've': 1.0, 'have': 1.0, 'yet': 1.0, 'the': 1.0, 'a': 1.0, 'for': 1.0, 'done': 1.0, 'over': 1.0, 'month': 1.0, 'and': 1.0}
Word element => {'temporary': 1.0, 'small': 1.0, 'something': 1.0, 'buy': 1.0, 'washing': 1.0, 'first': 1.0, 'cute': 1.0, 'after': 1.0, 'started': 1.0, 'well': 1.0, 'on': 1.0, 'think': 1.0, 'good': 1.0, 'feels': 1.0, 'it': 2.0, 'thin': 1.0, 'wear': 1.0, 'carter': 1.0, 'just': 1.0, 'not': 1.0, 'to': 2.0, 'edges': 1.0, 'inferior': 1.0, 'newborn': 1.0, 'will': 2.0, 'unravel': 1.0, 'do': 1.0, 'and': 6.0, 'probably': 1.0, 'picture': 1.0, 'gerber': 1.0, 'i': 3.0, 'ordered': 1.0, 'is': 2.0, 'sooner': 1.0, 'are': 2.0, 'the': 7.0, 'others': 1.0, 'these': 2.0, 'really': 1.0, 'aware': 1.0, 'they': 4.0, 'colors': 1.0, 'don': 1.0, 'jill': 1.0, 'prints': 1.0, 'want': 1.0, 'if': 1.0, 'spasilk': 1.0, 'be': 2.0, 'overcasting': 1.0, 'that': 1.0, '28': 1.0, 'square': 1.0, '34': 1.0, 'noticeably': 1.0, 'like': 3.0, 'which': 1.0, 'so': 1.0, 'smaller': 1.0, 'because': 1.0, 'than': 2.0, 'flannel': 1.0, 'look': 2.0, 'important': 1.0, 'but': 3.0, 'blankets': 1.0, 'most': 1.0, 'for': 2.0, 'you': 1.0, 'macdonald': 1.0, 'outgrown': 1.0, 't': 1.0, 'a': 1.0, 'soft': 1.0, 'swaddling': 1.0}
Word element => {'mi': 1.0, 'para': 1.0, 'muy': 1.0, 'bebe': 1.0, 'unas': 1.0, 'son': 1.0, 'bonitas': 1.0, 'anuncio': 1.0, 'producto': 1.0, 'llego': 1.0, 'el': 2.0, 'a': 1.0, 'se': 1.0, 'tiempo': 1.0, 'en': 2.0, 'buena': 1.0, 'como': 1.0, 'envoltura': 1.0, 'sabanas': 1.0, 'indico': 1.0}
Word element => {'looked': 1.0, 'bright': 1.0, 'arrived': 1.0, 'great': 1.0, 'nice': 1.0, 'really': 1.0, 'colors': 1.0, 'about': 1.0, 'positive': 1.0, 'folded': 1.0, 'rags': 1.0, 'burp': 1.0, 'picture': 1.0, 'diapers': 1.0, 'changing': 1.0, 'or': 1.0, 'is': 1.0, 'around': 1.0, 'good': 1.0, 'would': 1.0, 'well': 1.0, 'themes': 1.0, 'smaller': 1.0, 'my': 1.0, 'much': 2.0, 'wrap': 1.0, 'the': 6.0, 'receiving': 1.0, 'these': 5.0, 'diaper': 1.0, 'blanket': 1.0, 'are': 3.0, 'cake': 2.0, 'little': 1.0, 'very': 1.0, 'i': 4.0, 'have': 1.0, 'able': 1.0, 'not': 1.0, 'carter': 1.0, 'washing': 1.0, 'see': 1.0, 'they': 4.0, 'used': 1.0, 'bought': 2.0, 'for': 3.0, 'make': 1.0, 'on': 3.0, 'maybe': 1.0, 'than': 1.0, 'use': 2.0, 'girl': 1.0, 'which': 1.0, 'were': 2.0, 'mostly': 1.0, 'made': 1.0, 'baby': 1.0, 'them': 1.0, 'just': 1.0, 'light': 1.0, 'by': 1.0, 't': 2.0, 'a': 2.0, 's': 1.0, 'also': 2.0, 'cheaper': 1.0, 'blankets': 1.0, 'but': 2.0, 'can': 2.0, 'imagine': 1.0, 'if': 1.0, 'being': 1.0, 'as': 2.0, 'to': 3.0, 'swaddle': 1.0, 'with': 1.0, 'thin': 1.0, 'and': 3.0}
Word element => {'lime': 1.0, 'and': 1.0, 'from': 1.0, 'person': 1.0, 'green': 1.0, 'i': 1.0, 'bought': 1.0, 'prettier': 1.0, 'them': 1.0, 'a': 2.0, 'orange': 1.0, 'even': 1.0, 'registry': 1.0, 'perfect': 1.0, 'in': 2.0, 'for': 1.0, 'are': 1.0, 'shower': 1.0, 'colors': 1.0, 'baby': 1.0, 'june': 1.0, 'the': 2.0, 'mother': 1.0, 's': 1.0, 'color': 1.0, 'scheme': 1.0, 'aqua': 1.0, 'is': 1.0}
Word element => {'way': 1.0, 'they': 1.0, 'him': 1.0, 'can': 1.0, 'on': 1.0, 'nap': 1.0, 'for': 1.0, 'open': 1.0, 'soft': 1.0, 'bright': 1.0, 'to': 2.0, 'got': 1.0, 'i': 3.0, 'are': 2.0, 'these': 1.0, 'the': 1.0, 'really': 1.0, 'keep': 1.0, 'and': 1.0, 'colors': 1.0, 'hope': 1.0, 'out': 1.0, 'them': 1.0, 'that': 1.0}
Word element => {'nice': 1.0, 'stitch': 1.0, 'piece': 1.0, 'doubled': 1.0, 'the': 1.0, 'cut': 1.0, 'out': 1.0, 'right': 1.0, 'front': 1.0, 'two': 2.0, 'up': 2.0, 'fold': 1.0, 'sides': 2.0, 'fluff': 1.0, 'heat': 1.0, 'cuddly': 1.0, 'both': 1.0, 'before': 1.0, 'into': 2.0, 'that': 1.0, 'cute': 2.0, '2': 1.0, 'cloths': 2.0, 'these': 2.0, 'pre': 1.0, 'burp': 2.0, 'inches': 1.0, 'very': 5.0, 'washedcons': 1.0, 'and': 7.0, 'are': 4.0, 'shrink': 1.0, 'when': 2.0, 'or': 1.0, 'medium': 1.0, 'turn': 1.0, 'in': 2.0, 'length': 1.0, 'thin': 1.0, 'width': 1.0, 'like': 1.0, 'they': 4.0, 'top': 1.0, 'soften': 1.0, 'together': 2.0, 'stiff': 1.0, 'a': 1.0, 'see': 1.0, 'paper': 1.0, 'pros': 1.0, 'heavy': 1.0, 'above': 1.0, 'solution': 1.0, 'prewash': 1.0, 'them': 5.0, 'thirds': 1.0, 'topstitch': 1.0, 'washed': 2.0, 'on': 1.0, 'make': 1.0, 'way': 1.0, 'reversable': 1.0, 'sew': 1.0}
Word element => {'like': 1.0, 'something': 1.0, 'or': 1.0, 'looking': 1.0, 'just': 1.0, 'even': 1.0, 'daughter': 1.0, 'great': 2.0, 'small': 1.0, 'premie': 1.0, 'full': 1.0, 'soft': 1.0, 'my': 1.0, 'are': 2.0, 'i': 2.0, 'clothes': 1.0, 'baby': 2.0, 'about': 1.0, 'burp': 2.0, 'me': 1.0, 'and': 2.0, 'probably': 1.0, 'use': 2.0, 'term': 1.0, 'so': 1.0, 'swaddle': 2.0, 'd': 1.0, 'only': 1.0, 'it': 1.0, 'they': 3.0, 'your': 1.0, 'these': 3.0, 'cloths': 1.0, 'receiving': 1.0, 're': 2.0, 'enough': 1.0, 'as': 1.0, 'to': 4.0, 'when': 1.0, 'you': 2.0, 'irritate': 1.0, 'face': 1.0, 'clean': 1.0, 'her': 1.0, 'long': 1.0, 'don': 1.0, 'up': 1.0, 'if': 2.0, 'want': 1.0, 'for': 2.0, 't': 2.0, 's': 2.0, 'a': 2.0, 'that': 2.0, 'but': 1.0, 'blankets': 1.0, 'work': 1.0, 'aren': 1.0}
Word element => {'colors': 1.0, 'is': 1.0, 'pro': 1.0, 'when': 1.0, 'will': 1.0, 'quality': 1.0, 'fold': 1.0, 'of': 3.0, 'blankets': 3.0, 'some': 1.0, 'made': 1.0, 'are': 2.0, 'or': 1.0, 'low': 1.0, 'not': 2.0, 'uniformly': 1.0, 'after': 1.0, 'cut': 1.0, '100': 1.0, 'you': 3.0, 'the': 4.0, 'these': 1.0, 'can': 1.0, 'see': 2.0, 'top': 1.0, 'layer': 1.0, 'on': 1.0, 'only': 1.0, 'this': 1.0, 'cotton': 3.0, 'first': 1.0, 'wash': 1.0}
Word element => {'cloth': 1.0, 'never': 1.0, 'him': 1.0, 'were': 1.0, 'first': 1.0, 'before': 1.0, 'even': 1.0, 'used': 1.0, 'other': 1.0, 'luvable': 1.0, 'i': 3.0, 'bought': 1.0, 'times': 1.0, 'they': 1.0, 'these': 2.0, 'grown': 1.0, 'and': 4.0, 'blankets': 2.0, 'at': 1.0, 'several': 1.0, 'are': 1.0, 'friends': 1.0, 'so': 1.0, 'he': 1.0, 'washing': 1.0, 'this': 1.0, 'soft': 2.0, 'swaddling': 1.0, 'after': 1.0, 'sometimes': 1.0, 'for': 2.0, 'my': 1.0, 'now': 1.0, 'is': 1.0, 'm': 1.0, 'to': 1.0, 'as': 2.0, 'using': 1.0, 'sleeping': 1.0, 'burp': 1.0, 'them': 2.0, 'baby': 1.0, 'clothes': 1.0, 'cover': 1.0, 'while': 1.0, 'also': 1.0, 'wash': 1.0, 'a': 1.0}
Word element => {'that': 1.0, 'for': 1.0, 'is': 1.0, 'size': 1.0, 'burpies': 1.0, 'them': 1.0, 'use': 1.0, 'we': 1.0, 'stiff': 1.0, 'pretty': 2.0, 'now': 1.0, 'to': 2.0, 'even': 1.0, 'aren': 1.0, 'blankets': 1.0, 'they': 2.0, 'undone': 1.0, 'washing': 1.0, 'not': 1.0, 'actually': 1.0, 'are': 2.0, 'becomes': 1.0, '6lb': 1.0, 't': 1.0, 'these': 1.0, 'the': 2.0, 'enough': 1.0, 'fabric': 1.0, 'as': 1.0, 'big': 1.0, 'after': 1.0, 'swaddle': 1.0, 'a': 1.0, 'perfect': 1.0, 'newborn': 1.0, 'in': 1.0, 'starting': 1.0, 'and': 1.0, 'edges': 1.0, 'come': 1.0}
Word element => {'cover': 1.0, 'size': 1.0, 'had': 1.0, 'i': 1.0, 'are': 3.0, 'my': 1.0, 'too': 1.0, '6': 1.0, 'difficulty': 1.0, 'blankets': 1.0, 'swaddling': 2.0, 'great': 1.0, 'the': 1.0, 'these': 1.0, 'they': 1.0, 'besides': 1.0, 'for': 2.0, 'pound': 1.0, 'baby': 1.0, 'because': 1.0, 'small': 2.0, 'however': 1.0, 'other': 1.0, 'tiny': 1.0, 'purposes': 1.0, 'a': 2.0}
Word element => {'clothes': 1.0, 'burp': 1.0, 'them': 2.0, 'kept': 1.0, 'we': 1.0, 'and': 1.0, 'shape': 1.0, 'square': 1.0, 'lost': 1.0, 'used': 1.0, 'even': 1.0, 'washed': 1.0, 'first': 1.0, 'it': 1.0, 'their': 1.0, 'were': 2.0, 'colors': 1.0, 'my': 1.0, 'for': 1.0, 'nice': 1.0, 'grandson': 1.0, 'blankets': 1.0, 'as': 1.0, 'very': 1.0, 'the': 3.0, 'these': 1.0, 'ordered': 1.0, 'see': 1.0, 'i': 1.0, 'quality': 1.0, 'but': 1.0, 'was': 1.0, 'material': 1.0, 'they': 2.0, 'time': 1.0, 'poor': 1.0, 'can': 1.0, 'right': 1.0, 'through': 1.0, 'is': 1.0, 'thin': 1.0}
Word element => {'worth': 1.0, 'bought': 1.0, 'i': 2.0, 'use': 1.0, 'well': 1.0, 'really': 2.0, 'work': 1.0, 'but': 2.0, 'cloths': 1.0, 'burp': 1.0, 'as': 1.0, 'to': 1.0, 'now': 1.0, 'we': 1.0, 'small': 1.0, 'made': 1.0, 'are': 4.0, 'nicer': 1.0, 'thin': 2.0, 'too': 2.0, 'hadn': 1.0, 'cheaply': 1.0, 'they': 3.0, 'makes': 1.0, 'way': 1.0, 'and': 2.0, 'blankets': 1.0, 'weren': 1.0, 'receiving': 1.0, 'much': 1.0, 'completely': 1.0, 'useless': 1.0, 'using': 1.0, 'for': 2.0, 'wish': 1.0, 'carters': 1.0, 'swaddling': 1.0, 'larger': 1.0, 't': 2.0, 'these': 3.0, 'ones': 1.0, 'returning': 1.0, 'that': 2.0}
Word element => {'out': 1.0, 'use': 1.0, 'get': 1.0, 'that': 1.0, 'if': 1.0, 'swaddle': 1.0, 'able': 1.0, 'be': 1.0, 's': 1.0, 't': 1.0, 'won': 1.0, 'can': 1.0, 'but': 3.0, 'color': 1.0, 'smaller': 2.0, 'my': 1.0, 'your': 1.0, 'on': 3.0, 'washed': 1.0, 'they': 3.0, 'dry': 1.0, 'are': 3.0, 'i': 5.0, 'mean': 1.0, 'cute': 1.0, 'still': 1.0, 'the': 6.0, 'and': 4.0, 'this': 1.0, 'full': 1.0, 'soft': 1.0, 'damp': 1.0, 'price': 1.0, 'brand': 1.0, 'many': 1.0, 'side': 1.0, 'designs': 1.0, 'liked': 1.0, 'pack': 1.0, 'size': 1.0, 'in': 2.0, 'drying': 1.0, 'comparison': 1.0, 'to': 2.0, 'of': 2.0, 'carters': 1.0, 'setting': 1.0, 'some': 2.0, 'others': 1.0, 'them': 4.0, 'you': 2.0, 'when': 1.0, 'got': 2.0, 'even': 1.0, 'before': 1.0, 'how': 1.0, 'washing': 1.0, 'with': 2.0, 'hope': 1.0, 'heat': 1.0, 'low': 1.0, 'were': 1.0}
Word element => {'day': 1.0, 'around': 1.0, 'to': 1.0, 'still': 1.0, 'actually': 1.0, 'drags': 1.0, 'these': 1.0, 'were': 1.0, 'them': 1.0, 'a': 1.0, 'gift': 1.0, 'my': 2.0, 'this': 1.0, 'grandson': 2.0, 'new': 1.0, 'ago': 1.0, 'two': 1.0, 'for': 1.0, 'years': 1.0}
Word element => {'bought': 1.0, 'we': 1.0, 'others': 1.0, 'than': 1.0, 'cloth': 1.0, 'as': 1.0, 'use': 1.0, 'on': 1.0, 'lay': 1.0, 'in': 1.0, 'her': 1.0, 'burp': 1.0, 'or': 2.0, 'to': 2.0, 'soft': 1.0, 'are': 3.0, 'swaddle': 1.0, 'small': 1.0, 'smaller': 1.0, 'my': 1.0, 'sizes': 1.0, 'blankets': 1.0, 'patterns': 1.0, 'nice': 2.0, 'and': 3.0, 'do': 1.0, 'the': 3.0, 'great': 1.0, 'these': 1.0, 'they': 1.0, 'ground': 1.0, 'wrap': 1.0, 'a': 2.0, 'little': 1.0, 'colors': 1.0, 'baby': 1.0, 'is': 1.0, 'tiny': 1.0, 'just': 1.0, 'not': 1.0, 'but': 1.0, 'work': 1.0}
Word element => {'on': 1.0, 'ideal': 1.0, 'sleep': 1.0, 'good': 1.0, 'a': 1.0, 'not': 1.0, 'to': 2.0, 'its': 1.0, 'she': 1.0, 'them': 1.0, 'newborns': 1.0, 'for': 2.0, 'firm': 1.0, 'newborn': 1.0, 'perfect': 1.0, 'very': 1.0, 'cant': 1.0, 'i': 1.0, 'buy': 1.0, 'soft': 1.0, 'wait': 1.0, 'can': 1.0, 'my': 1.0, 'it': 1.0, 'come': 1.0, 'so': 1.0}
Word element => {'soft': 1.0, 'on': 1.0, 'and': 1.0, 'grandson': 1.0, 'year': 1.0, 'use': 1.0, 'purchased': 2.0, 'side': 1.0, 'is': 2.0, 'to': 1.0, 'met': 1.0, 'my': 1.0, 'find': 1.0, 'great': 1.0, 'more': 1.0, 'the': 2.0, 'than': 1.0, 'fits': 1.0, 'mattress': 2.0, 'hard': 1.0, 'it': 3.0, 'this': 2.0, 'a': 2.0, 'our': 1.0, 'that': 1.0, 'perfect': 1.0, 'in': 1.0, 'expectations': 1.0, 'crib': 2.0, 'tight': 1.0, 'for': 2.0, 'one': 1.0, 'old': 1.0, 'i': 2.0}
Word element => {'happier': 1.0, 'couldn': 1.0, 'repeatedly': 1.0, 'weight': 1.0, 'extra': 1.0, 'form': 1.0, 'same': 1.0, 'still': 1.0, 'its': 1.0, 'sleeping': 1.0, 'started': 1.0, 'while': 1.0, 'into': 1.0, 'son': 1.0, 'old': 1.0, 'previously': 1.0, 'yr': 1.0, 'said': 1.0, 'quick': 1.0, 'despite': 1.0, 'sleeps': 1.0, 'loves': 1.0, 'asleep': 1.0, 'which': 1.0, 'swing': 1.0, 'only': 1.0, 'better': 1.0, 'has': 1.0, 'falls': 1.0, 'as': 2.0, 'away': 1.0, 'didn': 1.0, 'matches': 1.0, 'bed': 1.0, 'climb': 1.0, 'own': 1.0, 'her': 7.0, '3': 1.0, 'left': 1.0, 'we': 2.0, 'reviews': 1.0, 'finally': 1.0, 'when': 2.0, 'new': 1.0, 'wide': 1.0, 'than': 3.0, 'am': 1.0, 'deciding': 1.0, '1': 1.0, 'find': 1.0, 'does': 1.0, 'different': 1.0, '5': 1.0, 'before': 2.0, 'a': 7.0, 's': 1.0, 'once': 2.0, 'at': 2.0, 'hours': 2.0, 'searching': 1.0, 'for': 4.0, 't': 2.0, 'fit': 2.0, 'crib': 5.0, 'mattress': 7.0, 'few': 1.0, 'this': 5.0, 'soft': 1.0, 'it': 9.0, 'after': 2.0, 'she': 4.0, 'others': 1.0, 'had': 3.0, 'was': 2.0, 'across': 2.0, 'and': 8.0, '27': 1.0, 'that': 2.0, 'buy': 1.0, 'of': 1.0, 'the': 8.0, 'my': 5.0, 'waterproof': 1.0, 'bought': 1.0, 'cheaper': 1.0, 'read': 1.0, 'mattresses': 1.0, 'very': 1.0, '52': 1.0, 'needed': 1.0, 'fits': 1.0, 'an': 1.0, 'other': 1.0, 'pretty': 1.0, 'bassinet': 2.0, 'to': 3.0, 'length': 2.0, 'in': 6.0, 'itself': 1.0, 'arrived': 1.0, 'sleep': 2.0, 'snugly': 1.0, 'both': 1.0, 'with': 1.0, 'width': 1.0, 'beautifully': 1.0, 'like': 2.0, 'really': 1.0, 'cover': 1.0, 'pad': 1.0, 'know': 1.0, 'found': 2.0, 'bit': 1.0, 'came': 2.0, 'sheet': 1.0, 'so': 1.0, 'least': 2.0, 'seem': 1.0, 'firm': 1.0, 'but': 2.0, '2': 3.0, 'liking': 1.0, 'broke': 1.0, 'slept': 1.0, 'i': 11.0, 'putting': 1.0, 'be': 3.0, 'chance': 1.0, 'feels': 1.0, 'great': 1.0, 'daughter': 2.0, 'could': 1.0, 'will': 1.0, 'born': 1.0, 'pleased': 1.0, 'less': 1.0, 'by': 2.0, 'sites': 1.0, 'home': 1.0, 'would': 2.0, 'weeks': 1.0, 'right': 1.0, 'll': 1.0, 'able': 1.0, 'give': 1.0, 'on': 5.0, 'update': 2.0}
Word element => {'well': 1.0, 'crib': 1.0, 'size': 1.0, 'standard': 1.0, 'my': 1.0, 'fits': 1.0, 'and': 1.0, 'i': 1.0, 'the': 4.0, 'gassing': 1.0, 'out': 1.0, 'off': 1.0, 'obvious': 1.0, 'flame': 1.0, 'packaging': 1.0, 'of': 1.0, 'appears': 1.0, 'there': 2.0, 'no': 3.0, 'before': 1.0, 'mattress': 2.0, 'this': 1.0, 'it': 2.0, 'purchasing': 1.0, 'what': 1.0, 'had': 1.0, 'be': 1.0, 'to': 2.0, 'as': 3.0, 'mattresses': 1.0, 'very': 2.0, 'natural': 3.0, 'advertise': 1.0, 'contacted': 1.0, 'manufacturer': 1.0, 'ask': 1.0, 'organic': 1.0, 'firm': 1.0, 'thermo': 1.0, 'bonded': 1.0, 'core': 1.0, 'expensive': 1.0, 'product': 1.0, 'meant': 1.0, 'assured': 1.0, 'is': 4.0, 'compressed': 1.0, 'that': 1.0, 'fiber': 1.0, 'they': 2.0, 'me': 1.0, 'retardant': 1.0, 'foam': 1.0, 'in': 1.0}
Word element => {'m': 1.0, 'as': 1.0, 'this': 2.0, 'on': 2.0, 'dream': 1.0, 'classic': 1.0, 'mattress': 1.0, 'his': 1.0, '34': 2.0, '2': 1.0, 'the': 1.0, 'review': 1.0, 'fits': 1.0, 'stationary': 1.0, 'my': 1.0, 'in': 2.0, 'crib': 1.0, 'writing': 1.0, 'afternoon': 1.0, 'me': 1.0, '1': 1.0, 'perfectly': 1.0, 'convertible': 1.0, 'i': 1.0, 'old': 1.0, 'taking': 1.0, 'is': 1.0, '18months': 1.0, 'side': 1.0, 'nap': 1.0}
Word element => {'his': 1.0, 'on': 1.0, 'comfy': 1.0, 'loves': 1.0, 'highly': 1.0, 'very': 1.0, 'and': 2.0, 'fits': 1.0, 'the': 1.0, 'in': 1.0, 'playing': 1.0, 'crib': 2.0, 'it': 3.0, 'perfectly': 1.0, 'recommend': 1.0, 'he': 1.0, 'sleeping': 1.0}
Word element => {'reasonable': 1.0, 'price': 1.0, 'tell': 1.0, 'other': 1.0, 'but': 2.0, 'needs': 1.0, 'bit': 1.0, 'gave': 1.0, 'daughter': 1.0, 'thinking': 1.0, 'i': 3.0, 'indicate': 1.0, 'labels': 1.0, 'be': 1.0, 'our': 1.0, 'to': 4.0, 'was': 3.0, 'purchased': 1.0, 'this': 1.0, 'recently': 1.0, 'for': 1.0, 'one': 1.0, 'fits': 1.0, 'my': 2.0, '6': 1.0, 'there': 1.0, 'sturdier': 1.0, 'try': 1.0, 'transferred': 1.0, 'nursery': 1.0, 'from': 2.0, 'which': 2.0, 'sleeping': 1.0, 'bassinet': 1.0, 'are': 1.0, 'the': 4.0, 'great': 1.0, 'crib': 1.0, 'and': 2.0, 'difference': 1.0, 'it': 3.0, 'month': 1.0, 'she': 1.0, 'is': 2.0, 'really': 1.0, 'side': 2.0, 'we': 2.0, 'a': 3.0, 'going': 1.0, 's': 1.0, 'could': 1.0, 'not': 1.0, 'in': 1.0, 'firmness': 1.0}
Word element => {'wait': 1.0, 'so': 1.0, 'need': 1.0, 'monthes': 1.0, 'crib': 1.0, 'inside': 1.0, 'but': 2.0, 'love': 2.0, 'tight': 1.0, 'here': 1.0, 'fit': 1.0, 'it': 6.0, 'this': 1.0, 'how': 1.0, 'sides': 1.0, 'before': 1.0, 'mattress': 1.0, 'has': 1.0, 'the': 2.0, 'two': 1.0, 'i': 4.0, 'took': 1.0, 'our': 1.0, 'forever': 1.0, 'was': 1.0, 'to': 1.0, 'perfectly': 1.0, 'get': 1.0, 'worth': 1.0, 'ordered': 1.0}
Word element => {'color': 1.0, 'for': 1.0, 'between': 1.0, 'in': 1.0, 'diapers': 1.0, 'put': 1.0, 'and': 1.0, 'up': 1.0, 'cake': 1.0, 'bigger': 1.0, 'little': 1.0, 'be': 1.0, 'to': 2.0, 'would': 1.0, 'they': 1.0, 'used': 1.0, 'a': 2.0, 'them': 1.0, 'were': 2.0, 'thought': 1.0, 'use': 1.0, 'i': 2.0, 'some': 1.0, 'things': 1.0, 'if': 1.0, 'you': 1.0, 'basket': 1.0, 'making': 1.0, 'great': 1.0, 'the': 2.0, 'diaper': 1.0, 'roll': 1.0}
Word element => {'can': 1.0, 'up': 1.0, 'cleaning': 1.0, 'messes': 1.0, 'soft': 1.0, 'or': 1.0, 'seuss': 1.0, 'on': 3.0, 'would': 1.0, 'gift': 1.0, 'is': 2.0, 'side': 1.0, 'little': 1.0, 'so': 1.0, 'order': 1.0, 'cutest': 1.0, 'with': 1.0, 'this': 1.0, 'other': 1.0, 'and': 1.0, 'material': 1.0, 'friends': 1.0, 'wrong': 1.0, 'go': 1.0, 'different': 1.0, 't': 1.0, 'great': 1.0, 'the': 3.0, 'these': 1.0, 'dr': 1.0, 'again': 1.0, 'one': 1.0, 'for': 1.0, 'works': 1.0}
Word element => {'amazon': 1.0, 'pleased': 1.0, 'very': 2.0, 'be': 1.0, 'high': 1.0, 'unsure': 1.0, 'issue': 1.0, 'production': 1.0, 'hoping': 1.0, 'was': 3.0, 'bees': 1.0, 'to': 2.0, 'which': 1.0, 'and': 3.0, 'get': 1.0, 'is': 1.0, 'available': 1.0, 'birds': 1.0, 'that': 2.0, 'bottle': 2.0, 'a': 2.0, 'what': 1.0, 'received': 1.0, 'i': 4.0, 'two': 2.0, 'quality': 1.0, 'them': 1.0, 'sippy': 3.0, 'tops': 3.0, 'of': 2.0, 'photo': 1.0, 'the': 4.0, 'these': 1.0, 'earthlust': 2.0, 'told': 1.0, 'despite': 1.0, 'for': 1.0, 'fit': 1.0, 'product': 2.0, 'water': 1.0, 'on': 2.0, 'this': 2.0, 'pack': 1.0, 'only': 1.0, 'hard': 1.0, 'first': 1.0, 'replacement': 1.0, 'page': 1.0, 'again': 1.0, 'when': 2.0, 'you': 2.0, 'will': 1.0, 'item': 1.0, 'are': 3.0, 'find': 2.0, 'contacted': 1.0, 'they': 2.0, 'through': 1.0, 'order': 1.0, 'working': 1.0}
Word element => {'money': 1.0, 'well': 1.0, 'door': 1.0, 'still': 1.0, 'in': 1.0, 'could': 1.0, 'he': 1.0, 'pop': 1.0, 'but': 2.0, 'dryer': 1.0, 'and': 1.0, 'worth': 1.0, 'climb': 2.0, 'not': 1.0, 'couldn': 1.0, 'grandson': 1.0, 't': 1.0, 'get': 1.0, 'them': 1.0, 'opened': 2.0, 'into': 1.0, 'my': 1.0, 'the': 3.0}
Word element => {'plan': 1.0, 'seller': 1.0, 'good': 1.0, 'color': 1.0, 'visit': 1.0, 's': 1.0, 'to': 1.0, 'mother': 1.0, 'the': 1.0, 'expectant': 1.0, 'purchase': 1.0, 'just': 1.0, 'a': 2.0, 'again': 1.0, 'that': 1.0, 'matched': 1.0, 'gift': 1.0, 'as': 1.0, 'and': 2.0, 'scheme': 1.0, 'was': 1.0, 'coincidence': 1.0, 'it': 1.0}
Word element => {'of': 1.0, 'patterns': 1.0, 'nice': 1.0, 'is': 1.0, 'this': 1.0, 'so': 1.0, 'girls': 1.0, 'pink': 1.0, 'i': 1.0, 'too': 1.0, 'cute': 1.0, 'colors': 2.0, 'feel': 1.0, 'soft': 1.0, 'carter': 1.0, 'than': 1.0, 'smaller': 1.0, 'but': 1.0, 'albeit': 1.0, 'hate': 1.0, 'and': 2.0, 'typical': 1.0, 'awesome': 1.0, 'for': 3.0, 'bit': 1.0, 'wash': 1.0, 'mix': 1.0, 'a': 3.0, 'them': 1.0, 'shades': 1.0, 'they': 1.0, 's': 1.0, 'great': 1.0, 'infants': 1.0, 'the': 3.0, 'these': 1.0, 'ones': 1.0, 'blankets': 1.0, 'once': 1.0, 'are': 3.0, 'real': 1.0}
Word element => {'too': 1.0, 'going': 1.0, 'nephew': 1.0, 'born': 1.0, 'be': 2.0, 'as': 2.0, 'very': 1.0, 'and': 1.0, 'but': 1.0, 'cute': 1.0, 'soft': 1.0, 'blanket': 1.0, 'not': 1.0, 'to': 2.0, 'was': 1.0, 'is': 2.0, 's': 1.0, 'only': 1.0, 'with': 2.0, 'it': 3.0, 'this': 1.0, 'real': 1.0, 'almost': 1.0, 'think': 1.0, 'soon': 1.0, 'fur': 1.0, 'i': 2.0, 'happy': 2.0, 'my': 1.0}
Word element => {'purchase': 1.0, 'pattern': 1.0, 'and': 2.0, 'very': 2.0, 'the': 5.0, 'is': 1.0, 'feels': 1.0, 'not': 1.0, 'love': 1.0, 'this': 1.0, 'only': 1.0, 'with': 1.0, 'it': 1.0, 'underside': 1.0, 'blanket': 2.0, 'warm': 1.0, 'monkey': 1.0, 'happy': 1.0, 'i': 1.0, 'cute': 1.0, 'but': 1.0, 's': 1.0, 'silky': 1.0, 'of': 1.0}
Word element => {'though': 1.0, 'small': 1.0, 'but': 1.0, 'hat': 1.0, 'is': 1.0, 'month': 1.0, 'old': 1.0, 'costume': 2.0, 'my': 1.0, 'halloween': 2.0, 'a': 2.0, 'for': 3.0, 'in': 1.0, 'nicely': 1.0, 'the': 3.0, '2': 1.0, 'only': 1.0, 'it': 3.0, 'this': 1.0, 'part': 1.0, 'used': 3.0, 'was': 1.0, 'runs': 1.0, 'we': 2.0, 'adorable': 1.0, 'as': 1.0, 'very': 1.0, 'later': 1.0, 'cozy': 1.0, 'sleep': 1.0, 'lined': 1.0, 'sack': 1.0, 'winter': 1.0}
Word element => {'months': 1.0, '6': 1.0, 'last': 1.0, 'sized': 1.0, 'has': 1.0, 'who': 1.0, 'fit': 1.0, 'cap': 1.0, 'that': 1.0, 'infant': 1.0, '1mo': 1.0, 'take': 1.0, 'and': 4.0, 'quality': 1.0, 'too': 1.0, 'sack': 1.0, 'adorable': 1.0, 'normal': 1.0, 'to': 3.0, 'head': 1.0, 'sooo': 1.0, 'the': 2.0, 'made': 1.0, 'for': 1.0, 'love': 1.0, 'only': 1.0, 'this': 2.0, 'it': 2.0, 's': 2.0, 'a': 1.0, 'well': 1.0, 'supposed': 1.0, 'material': 1.0, 'is': 4.0, 'small': 1.0, 'so': 1.0, 'i': 1.0, 'touch': 1.0, 'soft': 1.0, 'my': 2.0, 'snuggle': 1.0, 'high': 1.0, 'nice': 1.0}
Word element => {'than': 1.0, 'words': 1.0, 'more': 1.0, 'have': 1.0, 'i': 3.0, 'why': 1.0, 'is': 1.0, 'it': 2.0, 'love': 1.0, 'a': 1.0, 'really': 1.0, 'write': 1.0, 'to': 1.0, 'still': 1.0, 'cute': 1.0, 'wish': 1.0, 'am': 1.0, 'baby': 1.0}
Word element => {'tight': 1.0, 'is': 1.0, 'wear': 1.0, 'said': 1.0, '6': 1.0, 'two': 1.0, 'ridiculously': 1.0, 'the': 2.0, 'chest': 1.0, 'a': 2.0, 'hat': 1.0, 'be': 1.0, 'to': 1.0, 'head': 1.0, 'old': 2.0, 'months': 1.0, 's': 3.0, 'only': 1.0, 'but': 1.0, 'especially': 1.0, 'fits': 1.0, 'it': 2.0, 'month': 1.0}
Word element => {'since': 1.0, 'in': 1.0, 'liked': 1.0, 'but': 1.0, 'issue': 1.0, 'skin': 1.0, 'so': 1.0, 'against': 1.0, 'softest': 1.0, 'd': 1.0, 'not': 2.0, 'fabric': 1.0, 'your': 1.0, 'on': 1.0, 'be': 1.0, 'pouch': 1.0, 'rather': 1.0, 'of': 1.0, 'inside': 1.0, 'bottom': 1.0, 'along': 1.0, 'during': 1.0, 'is': 3.0, 'fully': 1.0, 'aspen': 1.0, 'sacks': 1.0, 'it': 2.0, 'just': 1.0, 'greater': 1.0, 'this': 3.0, 'inner': 1.0, 'love': 1.0, 'they': 1.0, 'has': 1.0, 'the': 8.0, 'socks': 1.0, 'diamonds': 1.0, 'diaper': 1.0, 'we': 1.0, 't': 1.0, 'are': 1.0, 'baby': 3.0, 'up': 1.0, 'don': 1.0, 'leave': 1.0, 'have': 1.0, 'zipper': 1.0, 'and': 1.0, 'changes': 1.0, 'nice': 1.0, 'makes': 1.0, 'warm': 2.0, 'underneath': 1.0, 'my': 1.0, 'extended': 1.0, 'surface': 1.0, 'if': 2.0, 'an': 1.0, 'own': 1.0, 'size': 1.0, 'outside': 1.0, 'as': 2.0, 'sleep': 1.0, 'to': 2.0, 'would': 1.0, 'cozy': 1.0, 'allow': 1.0, 'very': 1.0, 'little': 1.0, 'access': 1.0, 'i': 3.0, 'sack': 1.0, 'also': 1.0, 'smooth': 1.0, 'prefer': 1.0, 'babies': 1.0, 'that': 1.0, 'one': 1.0, 'raised': 1.0, 'clothed': 1.0, 'version': 1.0}
Word element => {'cute': 1.0, 'its': 1.0, 'and': 1.0, 'fit': 1.0, 'it': 1.0, 'really': 1.0, 'of': 1.0, 'rest': 1.0, 'big': 1.0, 'kid': 1.0, 'had': 1.0, 'a': 1.0, 'to': 1.0, 'head': 1.0, 'small': 1.0, 'my': 1.0, 'the': 2.0, 'so': 1.0, 'was': 1.0, 'however': 1.0, 'hat': 1.0, 'wonderfully': 1.0, 'waaay': 1.0}
Word element => {'warm': 1.0, 'keeps': 1.0, 'c': 1.0, 'new': 1.0, 'especially': 1.0, 'baby': 1.0, 'highly': 1.0, 'would': 1.0, 'costume': 1.0, 'unique': 1.0, 'england': 1.0, 'on': 1.0, 'b': 1.0, 'half': 1.0, 'adorable': 1.0, 'son': 1.0, 'i': 1.0, 'old': 1.0, 'anyone': 1.0, 'in': 3.0, 'reccommend': 1.0, 'awesome': 1.0, 'month': 1.0, 'a': 1.0, 'cozy': 1.0, '3': 1.0, 'we': 1.0, 'compliments': 1.0, 'and': 2.0, 'quality': 1.0, 'happy': 1.0, 'my': 1.0, 'he': 1.0, 'looked': 1.0, 'it': 3.0, 'this': 3.0, 'to': 1.0, 'was': 2.0, 'the': 1.0, 'great': 1.0, 'such': 1.0, 'too': 1.0, 'got': 1.0, 'so': 2.0, 'may': 1.0}
Word element => {'described': 1.0, 'exactly': 1.0, 'was': 1.0, 'manner': 1.0, 'with': 1.0, 'this': 2.0, 'nursery': 1.0, 'library': 1.0, 'of': 1.0, 'the': 2.0, 'i': 3.0, 'and': 2.0, 'chosen': 1.0, 'as': 3.0, 'timely': 1.0, 't': 1.0, 'a': 5.0, 'friend': 2.0, 'bought': 1.0, 'unique': 1.0, 'for': 2.0, 'product': 1.0, 'baby': 2.0, 'it': 2.0, 'she': 1.0, 'has': 2.0, 'really': 1.0, 'reading': 1.0, 'comment': 1.0, 'not': 1.0, 'on': 1.0, 'how': 1.0, 'yet': 1.0, 'theme': 1.0, 'or': 1.0, 'gift': 2.0, 'wears': 1.0, 'little': 1.0, 'can': 2.0, 'letters': 1.0, 'but': 1.0, 'arrived': 2.0, 'tell': 1.0, 'thanks': 1.0, 'you': 1.0, 'owls': 1.0, 'that': 1.0, 'fits': 1.0, 'my': 1.0, 'loved': 1.0, 'what': 1.0, 'in': 1.0}
Word element => {'try': 1.0, 'baby': 1.0, 'see': 1.0, 'how': 1.0, 'it': 2.0, 'sure': 1.0, 't': 1.0, 'this': 1.0, 'since': 1.0, 'like': 1.0, 'as': 1.0, 'didn': 1.0, 'fits': 1.0, 'just': 1.0, 'a': 1.0, 'the': 2.0, 'not': 1.0, 'bought': 1.0, 'gift': 1.0, 'looks': 1.0, 'i': 1.0, 'picture': 1.0}
Word element => {'sack': 1.0, 'well': 1.0, 'made': 1.0, 'i': 2.0, 'and': 2.0, 'quality': 1.0, 'very': 1.0, 'it': 2.0, 'love': 1.0, 'material': 1.0, 'would': 1.0, 'seemed': 1.0, 'adorable': 1.0, 'to': 1.0, 'be': 1.0, 'cap': 1.0, 'recommend': 1.0, 'good': 1.0, 'of': 1.0}
Word element => {'cute': 1.0, 'its': 1.0, 'are': 1.0, 'outerwear': 1.0, 'and': 1.0, 'material': 1.0, 'at': 1.0, 'using': 1.0, 'a': 2.0, 'outfit': 1.0, 'we': 2.0, 'workmanship': 1.0, 'my': 1.0, 'halloween': 1.0, 'costume': 1.0, 'too': 1.0, 'grandson': 1.0, 't': 1.0, 'give': 1.0, 'quality': 1.0, 'doesn': 1.0, 'precious': 1.0, 'but': 1.0, 'hoot': 1.0, 'think': 1.0}
Word element => {'huge': 1.0, 't': 1.0, 'don': 1.0, 'warning': 1.0, 'use': 1.0, 'more': 1.0, 'gotten': 1.0, 'have': 1.0, 'could': 1.0, 'earlier': 1.0, 'had': 1.0, 'just': 2.0, 'absurdly': 1.0, 'chunky': 1.0, 'surprise': 1.0, 'shower': 1.0, 'month': 1.0, '5': 1.0, 'i': 10.0, 'assume': 1.0, 'big': 4.0, 'figured': 1.0, 'in': 2.0, 'age': 1.0, 'not': 1.0, 'itself': 1.0, 'saw': 1.0, 'past': 1.0, 'but': 2.0, 'anyone': 1.0, 'and': 2.0, 'when': 3.0, 'up': 1.0, 'costume': 1.0, 'closer': 1.0, 'until': 1.0, 'tried': 2.0, 'given': 1.0, 'looks': 1.0, 'my': 3.0, 'on': 3.0, 'an': 1.0, 'baby': 4.0, 'ish': 1.0, 'top': 1.0, 's': 3.0, 'put': 2.0, 'much': 1.0, 'dress': 1.0, 'only': 1.0, 'of': 3.0, 'the': 7.0, 'person': 1.0, 'received': 1.0, '6': 3.0, 'love': 1.0, 'he': 2.0, 'wish': 1.0, '0': 1.0, 'present': 1.0, 'as': 2.0, 'sleep': 1.0, 'lbs': 1.0, 'was': 3.0, 'to': 3.0, 'pretty': 1.0, 'barely': 1.0, 'range': 2.0, 'adorable': 1.0, 'main': 1.0, 'hat': 1.0, 'would': 2.0, 'weeks': 2.0, 'old': 1.0, 'it': 11.0, 'him': 3.0, 'outfit': 3.0, 'thought': 1.0, 'already': 2.0, 'imagine': 1.0, 'a': 6.0, 'small': 2.0, 'halloween': 2.0, 'is': 4.0, 'at': 3.0, 'snug': 1.0, 'able': 1.0, 'squeeze': 1.0, 'his': 1.0, 'head': 1.0, 'this': 2.0, 'few': 1.0, 'out': 1.0, 'photo': 1.0, 'be': 2.0, 'granted': 1.0, 'ops': 1.0, 'your': 1.0, 'probably': 1.0, 'has': 1.0, 'noggin': 1.0, 'still': 2.0, 'little': 3.0, 'because': 1.0, 'that': 3.0, '4': 1.0, 'case': 1.0, 'buys': 1.0, 'owl': 1.0, 'piece': 1.0, 'so': 4.0, 'disappointing': 1.0, 'bit': 1.0, 'months': 1.0, 'too': 4.0, 'one': 1.0, 'sack': 1.0, 'd': 1.0, 'about': 1.0, 'for': 4.0, '10': 1.0}
Word element => {'resist': 1.0, 'really': 1.0, 's': 1.0, 'though': 1.0, 'in': 1.0, 'precious': 1.0, 'will': 1.0, 'she': 2.0, 'too': 1.0, 'm': 1.0, 'sure': 1.0, 'appropriate': 1.0, 'who': 1.0, 'nights': 1.0, 'young': 1.0, 'for': 2.0, 'costume': 1.0, 'even': 1.0, 'her': 1.0, 'it': 1.0, 'this': 1.0, 'look': 1.0, 'granddaughter': 1.0, 'mo': 1.0, 't': 2.0, 'more': 1.0, 'still': 1.0, 'bought': 1.0, 'be': 1.0, 'old': 1.0, 'i': 3.0, 'has': 1.0, '3': 1.0, 'days': 1.0, 'couldn': 2.0, 'and': 1.0, 'up': 1.0, 'halloween': 1.0, 'my': 1.0, 'mixed': 1.0}
Word element => {'in': 1.0, 'leg': 1.0, 'legs': 1.0, 'putting': 1.0, 'worrying': 1.0, 'snaps': 1.0, 'of': 1.0, 'bunch': 1.0, 'a': 1.0, 'unbottoning': 1.0, 'without': 1.0, 'right': 1.0, 'adorable': 1.0, 'to': 1.0, 'holes': 1.0, 'great': 1.0, 'it': 2.0, 'looked': 1.0, 'who': 1.0, 'or': 1.0, 'into': 1.0, 'around': 1.0, 'fit': 1.0, 'new': 1.0, 'and': 2.0, 'halloween': 1.0, 'my': 1.0, 'buttoning': 1.0, 'niece': 1.0, 's': 2.0, 'for': 1.0, 'mom': 1.0, 'change': 1.0, 'want': 1.0, 'their': 1.0, 'quickly': 1.0, 'about': 1.0, 'baby': 1.0}
Word element => {'fit': 1.0, 'to': 1.0, 'baby': 1.0, 'its': 1.0, 'a': 1.0, 'piece': 1.0, 'my': 1.0, 'the': 1.0, 'trully': 1.0, 'is': 1.0, 'recommend': 1.0, 'gorgous': 1.0, 'i': 1.0, 'beautiful': 1.0, 'fabric': 1.0, 'very': 1.0, 'cant': 1.0, 'wait': 1.0}
Word element => {'baby': 1.0, 'long': 1.0, 'tag': 1.0, 'out': 1.0, 'halloween': 1.0, 'old': 1.0, '1mo': 1.0, 'b': 1.0, 'my': 1.0, 'had': 1.0, 'c': 1.0, 'price': 2.0, 'use': 1.0, 'amazon': 1.0, 'many': 1.0, 'first': 1.0, 'it': 3.0, 'wanted': 1.0, 'was': 2.0, 'boutique': 1.0, 's': 1.0, 't': 1.0, 'a': 1.0, 'check': 1.0, 'lot': 1.0, 'at': 1.0, 'they': 1.0, 'double': 1.0, 'way': 1.0, 'when': 1.0, 'you': 1.0, 'is': 2.0, 'more': 1.0, 'the': 4.0, 'and': 2.0, 'great': 1.0, '1': 1.0, 'like': 1.0, 'items': 1.0, 'so': 1.0, 'i': 3.0, '0': 1.0, 'this': 4.0, 'found': 1.0, 'cute': 1.0, '6': 1.0, 'received': 1.0, 'much': 1.0, 'person': 1.0, 'for': 3.0, 'get': 1.0, 'sure': 1.0, 'enough': 1.0, 'here': 1.0, 'says': 1.0, 'just': 1.0, 'to': 2.0, 'as': 1.0, 'little': 1.0, 'bug': 1.0, 'will': 1.0, 'sack': 2.0, 'lying': 1.0, 'cuter': 1.0, 'hoping': 1.0, 'in': 1.0, 'if': 1.0, 'aren': 1.0, '2': 1.0, 'can': 1.0, 'of': 3.0, 'imagine': 1.0, 'that': 1.0}
Word element => {'girl': 1.0, 'on': 1.0, 'put': 1.0, 'wait': 1.0, 'can': 1.0, 'than': 1.0, 'the': 4.0, 'shower': 1.0, 'gift': 1.0, 'is': 2.0, 'it': 4.0, 'looks': 1.0, 'well': 1.0, 'my': 2.0, 'snuggle': 1.0, 'in': 2.0, 'unless': 1.0, 'for': 1.0, 'to': 1.0, 'as': 1.0, 'very': 1.0, 'great': 1.0, 'big': 1.0, 'baby': 3.0, 'seems': 1.0, 'sack': 1.0, 'withholds': 1.0, 'i': 1.0, 'got': 1.0, 'picture': 1.0, 'this': 2.0, 'soft': 1.0, 'really': 1.0, 'cutest': 1.0, 'material': 1.0, 'delicate': 1.0, 'so': 1.0, 'ever': 1.0, 'looking': 1.0, 'size': 1.0, 'just': 1.0, 'hope': 1.0, 'real': 1.0, 'through': 1.0, 't': 1.0, 'a': 1.0, 'might': 1.0, 'last': 1.0, 'wash': 1.0, 'over': 1.0, 'months': 1.0, '6': 1.0, 'and': 2.0, 'tall': 1.0}
Word element => {'price': 1.0, 'reasonable': 1.0, 'for': 2.0, 'design': 1.0, 'great': 1.0, 'it': 1.0, 'loved': 1.0, 'this': 1.0, 'any': 1.0, 'as': 1.0, 'a': 2.0, 'baby': 1.0, 'the': 1.0, 'shower': 1.0, 'gift': 2.0, 'newborn': 1.0, 'adorable': 1.0, 'be': 1.0, 'purchased': 1.0, 'to': 1.0, 'was': 1.0, 'mom': 1.0}
Word element => {'agree': 1.0, 'i': 1.0, 'which': 1.0, 'was': 1.0, 'cute': 1.0, 'comments': 1.0, 'of': 1.0, 'lot': 1.0, 'gift': 1.0, 'when': 1.0, 'a': 2.0, 'well': 1.0, 'top': 1.0, 'for': 1.0, 'fit': 1.0, 'area': 1.0, 'seller': 1.0, 'medium': 1.0, 'picture': 1.0, 'to': 3.0, 'colors': 1.0, 'true': 1.0, 'perfect': 1.0, 'this': 2.0, 'she': 1.0, 'it': 4.0, 'with': 3.0, 'is': 5.0, 'across': 1.0, 'and': 2.0, 'favorite': 1.0, 'sack': 1.0, 'are': 1.0, 'the': 10.0, 'opened': 1.0, 'ones': 1.0, 'were': 1.0, 'high': 1.0, 'made': 1.0, 'so': 1.0, 'depend': 1.0, 'my': 1.0, 'fits': 1.0, '6mo': 1.0, 'totally': 1.0, 'babies': 2.0, 'old': 1.0, 'small': 1.0, 'have': 2.0, 'snug': 1.0, 'but': 2.0, 'baby': 3.0, 'quality': 1.0, 'does': 1.0, 'on': 2.0, 'how': 2.0, 'weights': 1.0, 'great': 1.0, 'big': 1.0, 'no': 1.0, 'problem': 1.0, 'there': 1.0, 'larger': 1.0, 'narrow': 1.0, 'birth': 1.0}
Word element => {'she': 1.0, 'months': 1.0, 'my': 1.0, 'is': 2.0, 'sacks': 1.0, 'outgrown': 1.0, 'one': 1.0, 'i': 1.0, 'far': 1.0, 'almost': 1.0, 'sleep': 1.0, 'sizes': 1.0, 'have': 1.0, 'daughter': 1.0, 'by': 1.0, 'and': 3.0, 'quality': 1.0, 'several': 1.0, 'we': 1.0, 'more': 1.0, 'the': 3.0, 'cutest': 1.0, 'made': 1.0, 'best': 1.0, 'warmest': 1.0, '5': 1.0, 'wish': 1.0, 'in': 1.0, 'has': 1.0, 'they': 1.0, 'this': 1.0, 'only': 1.0, 'it': 2.0}
Word element => {'of': 1.0, 'recommend': 1.0, 'lot': 1.0, 'we': 1.0, 'have': 1.0, 'highly': 1.0, 'baby': 1.0, 'by': 1.0, 'them': 1.0, 'made': 1.0, 'use': 1.0, 'got': 1.0, 'everything': 1.0, 'so': 1.0, 'i': 1.0, 'love': 1.0, 'this': 1.0, 'it': 1.0, 'with': 1.0, 'super': 1.0, 'cute': 1.0, 'glad': 1.0, 'came': 1.0, 'a': 2.0, 'bib': 1.0, 'outfit': 1.0, 'aspen': 1.0, 'is': 1.0, 'really': 1.0}
Word element => {'to': 1.0, 'fits': 1.0, 'it': 1.0, 'nephew': 1.0, 'see': 1.0, 'true': 1.0, 'this': 1.0, 'abolutely': 1.0, 'thing': 1.0, 'size': 1.0, 'ever': 1.0, 'every': 1.0, 'wearing': 1.0, 'i': 2.0, 'my': 1.0, 'the': 1.0, 'cutest': 1.0, 'die': 1.0, 'is': 1.0, 'time': 1.0}
Word element => {'boy': 1.0, 'in': 1.0, '00': 1.0, '30': 1.0, 'little': 1.0, 'close': 1.0, 'her': 1.0, 'what': 1.0, 'you': 2.0, 'for': 2.0, 'i': 1.0, 'price': 1.0, 'if': 1.0, 'great': 1.0, 'robs': 1.0, 'go': 1.0, 'sister': 1.0, 'it': 1.0, 'this': 3.0, 'other': 1.0, 'loves': 1.0, 'into': 1.0, 'my': 1.0, 'stores': 1.0, 'will': 2.0, 'law': 1.0, 'a': 1.0, 'see': 1.0, 'got': 1.0, 'similar': 1.0, 'and': 1.0, 'was': 1.0, 'to': 2.0, 'be': 1.0}
Word element => {'price': 1.0, 'well': 2.0, 'is': 1.0, 'a': 1.0, 'great': 1.0, 'gave': 1.0, 'it': 2.0, 'to': 1.0, 'gift': 1.0, 'made': 2.0, 'my': 1.0, 'sister': 1.0, 'law': 1.0, 'in': 1.0, 'and': 2.0, 'as': 1.0, 'fits': 1.0}
Word element => {'quickly': 1.0, 'shipped': 1.0, 'plenty': 1.0, 'preference': 1.0, 'made': 1.0, 'my': 1.0, 'were': 1.0, 'bib': 1.0, 'combined': 1.0, 'nicely': 1.0, 'the': 1.0, 'booties': 1.0, 'also': 1.0, 'softer': 1.0, 'shark': 1.0, 'item': 1.0, 'it': 2.0, 'this': 1.0, 'with': 1.0, 'a': 2.0, 'nice': 1.0, 'of': 1.0, 'set': 1.0, 'packaged': 1.0, 'robe': 1.0, 'was': 1.0, 'gift': 1.0, 'cute': 1.0, 'wish': 1.0, 'room': 1.0, 'bit': 1.0, 'just': 1.0}
Word element => {'of': 1.0, 'out': 1.0, 'grow': 1.0, 'larger': 1.0, 'ever': 1.0, 'they': 1.0, 'pretty': 1.0, 'wish': 1.0, 'to': 1.0, 'had': 1.0, 'darn': 1.0, 'well': 1.0, 'i': 2.0, 'here': 1.0, 'it': 2.0, 'sizes': 1.0, 's': 1.0, 'yep': 1.0, 'listed': 1.0, 'my': 1.0, 'on': 1.0, 'adorable': 1.0, 'as': 1.0, 'don': 1.0, 'want': 1.0, 't': 1.0, 'little': 1.0, 'man': 1.0}
Word element => {'worth': 1.0, 'its': 1.0, 'fun': 1.0, 'have': 1.0, 'would': 1.0, 'towels': 1.0, 'add': 1.0, 'hadn': 1.0, 'than': 1.0, 'apart': 1.0, 'still': 1.0, 'if': 2.0, 'was': 1.0, 'as': 3.0, 'began': 1.0, 't': 2.0, 's': 7.0, 'robe': 1.0, 'a': 6.0, 'could': 1.0, 'and': 4.0, '3': 1.0, 'think': 3.0, 'break': 1.0, 'after': 1.0, 'cute': 3.0, 'that': 3.0, 'microfiber': 1.0, 'durable': 1.0, 'cycle': 1.0, 'on': 2.0, 'noticed': 1.0, 'old': 2.0, 'those': 1.0, 'hooded': 1.0, 'just': 1.0, 'free': 1.0, 'has': 1.0, 'the': 2.0, 'of': 2.0, 'used': 1.0, 'square': 1.0, 'but': 2.0, 'to': 6.0, 'pretty': 1.0, 'more': 2.0, 'bathrobe': 1.0, 'though': 1.0, 'yet': 1.0, 'let': 1.0, 'too': 1.0, 'one': 3.0, 'lively': 1.0, 'i': 7.0, '4': 1.0, 'wrong': 1.0, 'washing': 1.0, 'softner': 1.0, 'few': 1.0, 'this': 2.0, 'soft': 1.0, '0': 1.0, 'friends': 1.0, 'already': 1.0, 'starting': 1.0, 'it': 14.0, 'month': 2.0, 'plenty': 1.0, 'with': 1.0, 'is': 2.0, 'look': 1.0, 'isn': 1.0, 'trouble': 1.0, 'tatty': 1.0, 'two': 1.0, 'little': 4.0, 'very': 1.0, 'another': 1.0, 'side': 1.0, 'not': 1.0, 'skin': 1.0, 're': 1.0, 'buttery': 1.0, 'things': 1.0, 'you': 1.0, 'able': 1.0, 'softener': 1.0, 'some': 1.0, 'gentle': 1.0, 'never': 1.0, 'rough': 1.0, 'difficult': 1.0, 'face': 1.0, 'even': 4.0, 'practical': 1.0, 'big': 1.0, 'smaller': 1.0, 'use': 1.0, 'fabric': 2.0, 'for': 2.0, 'gets': 1.0, 'sized': 1.0, 'apply': 1.0, 've': 1.0, 'traded': 1.0, 'out': 1.0, 'shaped': 1.0}
Word element => {'too': 1.0, 'but': 1.0, 'cuddling': 1.0, 'small': 1.0, 'have': 1.0, 'would': 1.0, 'he': 1.0, 'that': 1.0, 'older': 1.0, 'now': 1.0, 'item': 1.0, '1': 1.0, 'adorable': 1.0, 'range': 1.0, 'so': 2.0, 'd': 1.0, 'still': 1.0, 'son': 1.0, 'toddling': 1.0, 'after': 2.0, 'got': 1.0, 'loved': 2.0, 'cons': 1.0, 'towel': 1.0, 'someone': 1.0, 'surprise': 1.0, 'it': 6.0, 'this': 2.0, 'us': 1.0, 'i': 3.0, 'for': 3.0, 'had': 1.0, 'husband': 1.0, 'was': 1.0, 'bath': 1.0, 'on': 3.0, 'listed': 1.0, 'his': 1.0, 'my': 3.0, 'rougher': 1.0, 'not': 1.0, 'pro': 1.0, 'the': 3.0, 's': 4.0, 'a': 1.0, 't': 1.0, 'fabric': 1.0, 'registry': 1.0, 'really': 1.0, 'because': 1.0, 'than': 1.0, 'age': 1.0, 'practical': 1.0, 'hoped': 1.0, 'own': 1.0, 'whim': 1.0, 'wasn': 1.0, 'hooded': 1.0, 'is': 1.0, 'around': 1.0, 'baths': 1.0}
Word element => {'too': 1.0, 'and': 1.0, 'funnier': 1.0, 'looks': 1.0, 'the': 2.0, 'this': 1.0, 'robe': 2.0, 'bought': 1.0, 'looked': 1.0, 'even': 1.0, 'but': 1.0, 'cute': 1.0, 'child': 1.0, 'funny': 1.0, 'that': 1.0, 's': 1.0, 'wearing': 1.0, 'i': 1.0, 'it': 1.0, 'why': 1.0}
Word element => {'pictures': 1.0, 'of': 1.0, 'to': 1.0, 'bath': 1.0, 'after': 1.0, 'the': 1.0, 'my': 1.0, 'kid': 1.0, 'lot': 1.0, 'moment': 1.0, 'looks': 1.0, 'amazing': 1.0, 'like': 1.0, 'a': 3.0, 'great': 1.0, 'it': 1.0, 'take': 1.0, 'shark': 1.0, 's': 1.0}
Word element => {'care': 1.0, 't': 1.0, 'people': 1.0, 'soft': 1.0, 'how': 1.0, 'but': 1.0, 'use': 1.0, 'wish': 1.0, 'i': 2.0, 'as': 2.0, 'knew': 1.0, 'cute': 1.0, 'hoped': 1.0, 'still': 1.0, 'we': 1.0, 'registries': 1.0, 'not': 1.0, 'because': 1.0, 'had': 1.0, 'to': 1.0, 'now': 1.0, 'have': 1.0, 'super': 1.0, 'two': 1.0, 'don': 1.0}
Word element => {'purchase': 1.0, 'smart': 1.0, 'nice': 1.0, 'back': 1.0, 'photos': 1.0, 'delivery': 1.0, 'sizing': 1.0, 'good': 1.0, 'this': 1.0, 'quick': 1.0, 'material': 1.0, 'the': 2.0, 'like': 1.0, 'would': 1.0, 'exactly': 1.0, 'right': 1.0, 'looks': 1.0, 'certainly': 1.0, 'myself': 1.0, 'pleased': 1.0, 'buy': 1.0, 'again': 1.0, 'patting': 1.0, 'on': 1.0, 'now': 1.0, 'for': 1.0}
Word element => {'registry': 1.0, 'it': 1.0, 'was': 1.0, 'mom': 1.0, 'on': 1.0, 'is': 1.0, 'a': 1.0, 'his': 1.0, 'new': 1.0, 'their': 1.0, 'sharks': 1.0, 'gift': 2.0, 'due': 1.0, 'my': 1.0, 'loves': 1.0, 'this': 1.0, 'grandson': 1.0, 'for': 1.0, 'in': 1.0, 'february': 1.0}
Word element => {'now': 1.0, 'act': 1.0, 'ok': 1.0, 'age': 1.0, 'of': 1.0, 'newphew': 1.0, 'this': 1.0, 'looks': 1.0, 'll': 1.0, 'sorry': 1.0, 'own': 1.0, 'my': 3.0, 'sooo': 1.0, 'cute': 1.0, 'thing': 1.0, 'one': 1.0, 'i': 3.0, 'wish': 1.0, 'in': 1.0, 'had': 1.0}
Word element => {'recommend': 1.0, 'highly': 1.0, 'i': 2.0, 'think': 1.0, 'anyone': 1.0, 'much': 1.0, 'pretty': 1.0, 'for': 1.0, 'gift': 1.0, 'this': 1.0, 'ever': 1.0, 'is': 1.0, 'a': 1.0, 'the': 1.0, 'cutest': 1.0, 'make': 1.0, 'great': 1.0, 'it': 1.0, 'robe': 1.0, 'thing': 1.0, 'would': 2.0}
Word element => {'sizes': 1.0, 'in': 1.0, 'them': 1.0, 'made': 1.0, 'get': 1.0, 'when': 1.0, 'i': 2.0, 'stiff': 1.0, 'is': 1.0, 'very': 1.0, 'adult': 1.0, 'sure': 1.0, 'it': 4.0, 'first': 1.0, 'quick': 1.0, 'once': 1.0, 'super': 1.0, 'you': 1.0, 's': 1.0, 'delivered': 1.0, 'am': 1.0, 'up': 1.0, 'washed': 1.0, 'but': 1.0, 'will': 1.0, 'wish': 1.0, 'soften': 1.0, 'they': 1.0}
Word element => {'softest': 1.0, 'cloth': 1.0, 'terry': 1.0, 'expected': 1.0, 'would': 1.0, 'as': 2.0, 'also': 1.0, 'lean': 1.0, 'so': 2.0, 'have': 1.0, 'small': 1.0, 'abnormally': 1.0, 'gets': 1.0, 'exposed': 1.0, 'surpisingly': 1.0, 'not': 4.0, 'and': 1.0, 'his': 2.0, 'because': 1.0, 'does': 1.0, 'i': 2.0, 'old': 1.0, 'he': 3.0, 'bought': 1.0, 'recently': 1.0, 'for': 1.0, 'skin': 1.0, 'baths': 1.0, 'but': 4.0, '2': 1.0, 'my': 1.0, 'fits': 1.0, 'it': 7.0, 'month': 1.0, 'covers': 1.0, 'soft': 1.0, 'this': 2.0, '0': 1.0, 'somewhat': 1.0, '6month': 1.0, 'barely': 1.0, 'the': 1.0, 'rump': 1.0, 'very': 1.0, 'or': 1.0, 'goes': 1.0, 'is': 3.0, 'around': 1.0, 'him': 1.0, 'a': 1.0, 's': 3.0, 'after': 1.0, 'cute': 1.0, 'like': 1.0, 'becuase': 1.0, 'long': 1.0, 'cold': 1.0, 'says': 1.0, 'wet': 1.0}
Word element => {'arrived': 1.0, 'when': 1.0, 'nice': 1.0, 'is': 1.0, 'am': 1.0, 'as': 2.0, 'brother': 1.0, 'but': 1.0, 'quality': 1.0, 'wait': 1.0, 'him': 1.0, 'was': 1.0, 'hoping': 1.0, 'to': 1.0, 'wash': 1.0, 'cannot': 1.0, 'could': 1.0, 'good': 1.0, 'sister': 1.0, 'it': 5.0, 'this': 1.0, 'my': 2.0, 'once': 1.0, 'nephew': 1.0, 'soooo': 1.0, 'bought': 1.0, 'i': 3.0, 'wearing': 1.0, 'still': 1.0, 'cute': 1.0, 'not': 1.0, 'and': 2.0, 'get': 1.0, 'see': 1.0, 'a': 1.0, 'for': 1.0, 'handle': 1.0, 'on': 1.0}
Word element => {'months': 1.0, '0': 1.0, '9': 1.0, 'pretty': 1.0, 'sure': 1.0, 'was': 1.0, 'material': 1.0, 'gift': 1.0, 'and': 1.0, 'accurate': 1.0, 'not': 1.0, 'huge': 1.0, 'age': 1.0, 'baby': 1.0, 'a': 2.0, 'the': 2.0, 'for': 2.0, 'it': 1.0, 'shower': 1.0, 'this': 1.0, 'got': 1.0, 'am': 1.0, 'hit': 1.0, 'is': 2.0, 'standard': 1.0, 'anything': 1.0, 'super': 1.0, 'soft': 1.0, 'sizing': 1.0, 'or': 1.0, 'i': 1.0}
Word element => {'month': 1.0, '6': 1.0, 'than': 1.0, 'bigger': 1.0, 'anything': 1.0, 'fit': 1.0, 'thinking': 1.0, 'purchase': 1.0, 'would': 2.0, 'wearing': 1.0, 'so': 1.0, 'size': 1.0, 'a': 2.0, 'ish': 1.0, 'baby': 2.0, 'as': 2.0, 'blue': 2.0, 'but': 1.0, 'cute': 1.0, 'color': 2.0, 'super': 1.0, 'clothes': 1.0, 's': 1.0, 'not': 2.0, 'the': 2.0, 'more': 1.0, 'is': 2.0, 'shows': 1.0, 'like': 1.0, 'true': 1.0, 'picture': 1.0, 'old': 1.0, 'i': 1.0, 'green': 1.0, 'to': 1.0, 'this': 2.0, 'it': 2.0, 'definitely': 1.0}
Word element => {'fall': 1.0, 'stuffing': 1.0, 'want': 1.0, 'and': 1.0, 'uses': 1.0, 'just': 1.0, 'after': 1.0, 'tore': 1.0, 'fin': 1.0, 'of': 2.0, 'tip': 1.0, 'that': 2.0, 'into': 1.0, 'd': 1.0, 'robe': 1.0, 'so': 1.0, 'additionally': 1.0, 'quality': 1.0, 'on': 1.0, 'months': 1.0, 'he': 1.0, 'this': 1.0, 'it': 5.0, 'figured': 1.0, 'but': 1.0, '2': 2.0, 'deal': 1.0, 'the': 4.0, 'little': 1.0, 'loved': 1.0, 'didn': 1.0, 'got': 1.0, 'such': 1.0, 'already': 1.0, 'when': 1.0, 'as': 1.0, 'our': 1.0, 'grow': 1.0, 'to': 2.0, 'out': 1.0, 'couple': 1.0, 'newborn': 1.0, 'wasn': 1.0, 'doesn': 1.0, 'was': 1.0, 'unfortunately': 1.0, 'at': 1.0, 'big': 2.0, 'great': 1.0, '1': 1.0, 'actually': 1.0, 'fit': 1.0, 'him': 1.0, 'we': 5.0, 't': 4.0, 'a': 4.0, 's': 1.0, 'had': 1.0, 'disappointment': 1.0, 'isn': 1.0, 'hand': 1.0, 'stitch': 1.0}
Word element => {'future': 1.0, 'expensive': 1.0, 'a': 1.0, 'this': 1.0, 'cheaper': 1.0, 'i': 1.0, 'very': 1.0, 'it': 3.0, 'love': 1.0, 'much': 1.0, 'is': 2.0, 'son': 1.0, 'in': 1.0, 'for': 1.0, 'lovelymy': 1.0, 'daythanks': 1.0, 'use': 1.0, 'hope': 1.0, 'little': 1.0, 'designit': 1.0, 'every': 1.0}
Word element => {'mascot': 1.0, 's': 1.0, 'shark': 1.0, 'club': 1.0, 'can': 1.0, 'wait': 1.0, 'coach': 1.0, 'our': 2.0, 'for': 1.0, 'swim': 1.0, 'logo': 1.0, 'expectant': 1.0, 'this': 1.0, 't': 1.0, 'is': 1.0, 'was': 1.0, 'to': 1.0, 'a': 2.0, 'see': 1.0, 'her': 1.0, 'baby': 1.0, 'gift': 1.0, 'dressed': 1.0, 'as': 1.0}
Word element => {'baby': 1.0, 'of': 1.0, 'picture': 1.0, 'take': 1.0, 's': 1.0, 'sure': 1.0, 'can': 1.0, 'wait': 1.0, 'in': 1.0, 'wash': 1.0, 'made': 1.0, 'gift': 1.0, 'well': 1.0, 'a': 2.0, 'looks': 1.0, 'is': 1.0, 'so': 1.0, 'robe': 1.0, 'not': 1.0, 'it': 3.0, 'this': 1.0, 'the': 1.0, 't': 1.0, 'i': 2.0, 'm': 1.0, 'how': 1.0, 'will': 1.0, 'but': 1.0, 'to': 1.0}
Word element => {'and': 1.0, 'adorablein': 1.0, 'cute': 1.0, 'so': 1.0, 'looked': 1.0, 'baby': 1.0, 'loved': 1.0, 'this': 2.0, 'mother': 1.0, 'is': 1.0, 'a': 2.0, 'the': 2.0, 'pretty': 1.0, 'creation': 2.0, 'was': 1.0, 'giftand': 1.0, 'great': 1.0, 'it': 2.0}
Word element => {'is': 1.0, 'its': 1.0, 'presentation': 1.0, 'fun': 1.0, 'it': 2.0, 's': 1.0, 'an': 1.0, 'the': 1.0, 'a': 1.0, 'amazing': 1.0, 'gift': 1.0, 'i': 1.0, 'article': 1.0, 'recommend': 1.0, 'good': 1.0, 'has': 1.0, 'nice': 1.0, 'quality': 1.0, 'and': 2.0}
Word element => {'wrapped': 1.0, 'were': 1.0, 'love': 1.0, 'i': 1.0, 'they': 1.0, 'these': 2.0, 'are': 2.0, 'a': 2.0, 'new': 1.0, 'very': 1.0, 'perfect': 1.0, 'how': 1.0, 'cute': 1.0, 'little': 1.0, 'baby': 1.0, 'gift': 1.0, 'for': 1.0}
Word element => {'give': 1.0, 'delight': 1.0, 'inital': 1.0, 'opening': 1.0, 'can': 1.0, 'you': 1.0, 'lot': 1.0, 'not': 1.0, 'made': 1.0, 'a': 2.0, 'well': 1.0, 'in': 1.0, 'be': 1.0, 'i': 1.0, 'between': 1.0, 'debated': 1.0, 'of': 1.0, '34': 2.0, 'outside': 1.0, 'decided': 1.0, 'adorable': 1.0, 'cute': 1.0, 'still': 1.0, 'favorite': 1.0, 'present': 1.0, 'relevant': 1.0, 'an': 1.0, 'but': 2.0, 'to': 1.0, 'team': 1.0, 'was': 2.0, 'would': 1.0, 'with': 1.0, 'onesies': 1.0, 'this': 2.0, 'do': 1.0, 'accessories': 1.0, 'and': 2.0, 'need': 1.0, 'ultimately': 1.0, 'season': 1.0, 'fulfil': 1.0, 'the': 2.0, 'package': 1.0, 'box': 1.0, 'sports': 1.0}
Word element => {'course': 1.0, 'law': 1.0, 'sister': 1.0, 'will': 1.0, 'he': 1.0, 'with': 1.0, 'shorts': 1.0, 'cute': 1.0, 'now': 1.0, 'was': 1.0, 'had': 1.0, 'so': 2.0, 'knew': 1.0, 'it': 6.0, 'this': 1.0, 'i': 7.0, 'saw': 1.0, 'need': 1.0, 'nephew': 1.0, 'of': 2.0, 'pair': 1.0, 'packaging': 1.0, 'once': 1.0, 'brother': 1.0, 'for': 1.0, 'parents': 1.0, 'the': 4.0, 'my': 2.0, 'did': 1.0, 'cutest': 1.0, 's': 1.0, 'go': 1.0, 'a': 1.0, 'adored': 1.0, 'khaki': 1.0, 'born': 1.0, 'golfing': 1.0, 'to': 6.0, 'all': 1.0, 'and': 4.0, 'soon': 1.0, 'be': 3.0, 'second': 1.0, 'outfit': 1.0, 'is': 3.0, 'order': 1.0, 'then': 1.0, 'arrived': 1.0, 'has': 1.0, 'cart': 1.0, 'even': 1.0, 'cuter': 1.0, 'itself': 1.0, 'in': 2.0, 'stud': 1.0, 'ever': 1.0, 'person': 1.0, 'man': 1.0, 'not': 1.0, 'excited': 1.0, 'mention': 1.0, 'little': 2.0, 'golf': 1.0, 'adorable': 1.0}
Word element => {'friends': 1.0, 'other': 1.0, 'and': 2.0, 'two': 1.0, 'buying': 1.0, 'now': 1.0, 'so': 1.0, 'the': 2.0, 'have': 1.0, 'for': 2.0, 'given': 1.0, 'packaging': 1.0, 'i': 2.0, 'go': 1.0, 'crazy': 1.0, 'adorable': 1.0, 'over': 1.0, 'shower': 1.0, 'this': 1.0, 'it': 1.0, 'people': 1.0, 'is': 2.0, 'outfit': 1.0, 'gifts': 1.0, 'will': 1.0, 'continue': 1.0}
Word element => {'baby': 1.0, 'at': 1.0, 'hit': 1.0, 'a': 1.0, 'cute': 1.0, 'too': 1.0, 'didn': 1.0, 'but': 1.0, 'inside': 1.0, 'quality': 1.0, 'up': 1.0, 'everything': 1.0, 'best': 1.0, 'bad': 1.0, 'golf': 1.0, 'just': 1.0, 'not': 2.0, 'was': 2.0, 'shower': 1.0, 'cotton': 1.0, 'it': 3.0, 'way': 1.0, 'the': 4.0, 't': 1.0, 'packed': 1.0, 'and': 2.0, 'matter': 1.0, 'is': 2.0, 'folded': 1.0, 'cart': 1.0}
Word element => {'good': 1.0, 'picture': 1.0, 'i': 1.0, 'in': 1.0, 'for': 1.0, 'what': 1.0, 'as': 2.0, 'like': 1.0, 'quality': 1.0, 'gift': 1.0, 'cute': 1.0, 'soft': 1.0, 'the': 3.0, 'looks': 2.0, 'is': 4.0, 'item': 1.0, 'it': 3.0, 'this': 1.0, 'didnt': 1.0, 'fabric': 1.0, 'just': 1.0, 'not': 2.0, 'kids': 1.0, 'pleasing': 1.0, 'too': 1.0, 'a': 1.0}
Word element => {'outfit': 1.0, 'that': 1.0, 'out': 1.0, 'wear': 1.0, 'so': 1.0, 'bed': 1.0, 'your': 1.0, 'on': 1.0, 'photos': 1.0, 'right': 1.0, 'can': 1.0, 'you': 1.0, 'days': 1.0, 'cute': 1.0, 'gift': 1.0, 'bought': 1.0, 'my': 1.0, '34': 2.0, 'hospital': 2.0, 'worked': 1.0, 'as': 1.0, 'done': 1.0, 'get': 1.0, 'and': 1.0, 'me': 1.0, 'while': 1.0, 'took': 1.0, 'i': 2.0, 'a': 2.0, 'see': 1.0, 'perfect': 1.0, 'newborn': 1.0, 'in': 1.0, 'nephew': 1.0, 'he': 1.0, 'with': 1.0, 'this': 1.0, 'sister': 1.0, 'it': 2.0, 'the': 2.0, 'great': 1.0, 'had': 1.0, 'now': 1.0, 'to': 2.0, 'was': 1.0, 'because': 1.0}
Word element => {'money': 1.0, 'waste': 1.0, 'a': 1.0, 'but': 1.0, 'picture': 1.0, 'more': 1.0, 'the': 1.0, 'laundered': 1.0, 'shrinking': 1.0, 'it': 1.0, 'when': 2.0, 'tuft': 1.0, 'rough': 1.0, 'not': 1.0, 'of': 1.0, 'shrinks': 1.0, 'set': 1.0, 'entire': 1.0, 'dried': 1.0, 'good': 1.0, 'fur': 1.0, 'design': 1.0, 'in': 1.0, 'disintegrates': 1.0, 'quickly': 1.0, 'material': 1.0, 'wearable': 1.0, 'is': 2.0, 'looks': 1.0}
Word element => {'stick': 1.0, 'bag': 1.0, 'need': 1.0, 'all': 1.0, 'cart': 1.0, 'you': 1.0, 's': 1.0, 'parents': 1.0, 'love': 1.0, 'quality': 1.0, 'and': 1.0, 'cute': 3.0, 'the': 1.0, 'great': 1.0, 'such': 1.0, 'is': 3.0, 'outfit': 1.0, 'it': 3.0, 'this': 1.0, 'a': 2.0, 'present': 1.0, 'little': 1.0, 'give': 1.0, 'comes': 1.0, 'to': 2.0, 'new': 1.0, 'that': 1.0, 'golf': 2.0, 'so': 2.0, 'packaged': 1.0, 'in': 2.0}
Word element => {'much': 1.0, 'thank': 1.0, 'so': 1.0, 'of': 1.0, 'beautiful': 1.0, 'i': 1.0, 'satisfied': 1.0, 'it': 1.0, 'price': 1.0, 'm': 1.0, 'you': 1.0, 'reasonable': 1.0, 'is': 1.0, 'packing': 1.0, 'with': 1.0, 'the': 2.0, 'couse': 1.0, 'was': 1.0, 'very': 1.0, 'items': 1.0, 'and': 2.0}
Word element => {'for': 1.0, 'baby': 1.0, 'preppy': 1.0, 'little': 1.0, 'adorable': 1.0, 'an': 1.0, 'that': 1.0, 'so': 2.0, 'pics': 1.0, 'golfer': 1.0, 'are': 1.0, 'buy': 1.0, 'i': 2.0, 'fast': 1.0, 'and': 1.0, 'my': 2.0, 'regret': 1.0, 'outfit': 1.0, 'golfers': 1.0, 'grew': 1.0, 'is': 1.0, 'of': 1.0, 'made': 1.0, 'out': 1.0, 'this': 1.0, 'only': 1.0, 'he': 2.0, 'it': 1.0, 'to': 1.0, 'had': 1.0, 'husband': 1.0, 'was': 1.0, 'great': 1.0, 'such': 1.0}
Word element => {'cute': 1.0, 'friggin': 1.0, 'too': 1.0}
Word element => {'he': 1.0, 'fit': 1.0, 'this': 1.0, 'and': 1.0, 'golf': 1.0, 'right': 1.0, 'painted': 1.0, 'newborn': 1.0, 'will': 1.0, 'baby': 3.0, 'outfit': 2.0, 'due': 1.0, 'for': 1.0, 'in': 3.0, 'his': 1.0, 'great': 1.0, 'walls': 1.0, 'course': 1.0, 'with': 2.0, 'april': 1.0, 'room': 1.0}
Word element => {'cart': 1.0, 'cute': 1.0, 'packaged': 1.0, 'in': 2.0, 'will': 1.0, 'you': 1.0, 'thing': 1.0, 'if': 1.0, 'even': 1.0, 'gift': 1.0, 'think': 1.0, 'your': 1.0, 'make': 1.0, '20': 1.0, 'steal': 1.0, 'right': 1.0, 'isn': 1.0, 'look': 2.0, 'love': 1.0, 'for': 2.0, 'charge': 1.0, 't': 1.0, 'a': 7.0, 'well': 1.0, 'cut': 1.0, 'and': 3.0, 'plus': 1.0, 'newsboy': 1.0, 'poms': 1.0, 'enjoy': 1.0, 'preppy': 1.0, 'looks': 3.0, 'outfit': 5.0, 'golf': 4.0, 'like': 2.0, 'the': 7.0, 'comes': 1.0, 'is': 2.0, 'more': 1.0, 'this': 3.0, 'with': 1.0, 'outstanding': 1.0, 'adorable': 1.0, 'fresh': 1.0, 'box': 1.0, 'that': 2.0, 'an': 2.0, 'blue': 1.0, 'trendy': 1.0, 'very': 1.0, 'little': 2.0, 'baby': 2.0, '60': 1.0, 'shaping': 1.0, 'photographs': 1.0, 'makes': 1.0, 'would': 1.0, 'super': 1.0, 'of': 1.0, 'details': 1.0, 'cap': 1.0, 'prop': 1.0, 'i': 2.0, 'photo': 1.0, 'prepster': 2.0, 'off': 1.0, 'now': 1.0, 'slippers': 1.0, 'darling': 1.0, 'result': 1.0, 'was': 2.0, 'bit': 1.0, 'so': 3.0, 'clean': 1.0, 'hat': 1.0, 'high': 1.0, 'end': 1.0, 'boutiques': 1.0}
Word element => {'beautifully': 1.0, 'cute': 1.0, 'resist': 1.0, 'outfit': 1.0, 'we': 1.0, 'are': 1.0, 'packaged': 1.0, 'not': 1.0, 'so': 1.0, 'expecting': 1.0, 'besides': 1.0, 'our': 1.0, 'being': 1.0, 'adorable': 1.0, 'first': 1.0, 'is': 1.0, 'next': 1.0, 'it': 1.0, 'month': 1.0, 'this': 1.0, 'grandson': 1.0, 'simply': 1.0, 'could': 1.0}
Word element => {'tend': 1.0, 'bigger': 1.0, 'hat': 1.0, 'is': 2.0, 'the': 3.0, 'are': 1.0, 'a': 1.0, 'bodysuit': 1.0, 'hats': 1.0, 'booties': 1.0, 'for': 1.0, 'than': 1.0, 'perfect': 1.0, 'very': 1.0, 'big': 1.0, 'be': 1.0, 'to': 1.0, 'newborn': 2.0}
Word element => {'golf': 1.0, 'is': 2.0, 'my': 1.0, 'the': 2.0, 'bought': 1.0, 'gift': 1.0, 'son': 1.0, 'best': 1.0, 'i': 1.0, 'buy': 1.0, 'far': 1.0, 'saw': 1.0, 'teach': 1.0, 'expecting': 1.0, 'so': 1.0, 'a': 1.0, 'girl': 1.0, 'and': 1.0, 'this': 2.0, 'he': 2.0, 'going': 1.0, 'was': 1.0, 'to': 1.0, 'her': 1.0}
Word element => {'satisfied': 1.0, 'product': 1.0, 'baby': 1.0, 'is': 1.0, 'size': 1.0, 'fit': 1.0, 'item': 1.0, 'ideal': 1.0, 'outfit': 1.0, 'good': 1.0, 'of': 1.0, 'cute': 1.0, 'as': 2.0, 'described': 2.0, 'and': 1.0, 'quality': 1.0, 'very': 1.0, 'customer': 1.0, 'set': 1.0}
Word element => {}
Word element => {'onesie': 1.0, 'before': 1.0, 'of': 1.0, 'fits': 1.0, 'out': 1.0, 'may': 1.0, 'afraid': 1.0, 'booties': 1.0, 'the': 3.0, 'wear': 1.0, 'adorable': 1.0, 'still': 1.0, 'newborn': 1.0, 'sized': 1.0, 'and': 1.0, 'outfit': 1.0, 'is': 1.0, 'just': 1.0, 'not': 1.0, 'to': 1.0, 'hoping': 1.0, 'was': 1.0, 'able': 1.0, 'together': 1.0, 'definitely': 1.0, 'it': 2.0, 'he': 3.0, 'but': 1.0, 'will': 1.0, 'grow': 2.0, 'into': 1.0, 'whole': 1.0, 'i': 2.0, 'm': 2.0, 'be': 1.0, 'll': 1.0}
Word element => {'fit': 1.0, 'don': 1.0, 'and': 1.0, 'think': 1.0, 'quite': 1.0, 'hefty': 1.0, 'been': 1.0, 'family': 1.0, 'extended': 1.0, 'my': 1.0, 'in': 1.0, 'of': 1.0, 'present': 1.0, 'but': 1.0, 'while': 1.0, 'a': 1.0, 'babies': 1.0, 'have': 2.0, 'as': 1.0, 'never': 1.0, 'would': 2.0, 'was': 1.0, 'i': 2.0, 'them': 1.0, 'out': 1.0, 'newborns': 2.0, 'picked': 1.0, 'this': 2.0, 'it': 3.0, 'on': 1.0, 'is': 2.0, 't': 1.0, 'the': 2.0, 'wish': 1.0, 'for': 1.0, 'list': 1.0, 'cute': 1.0, 'some': 1.0}
Word element => {'in': 1.0, 'it': 2.0, 'cart': 1.0, 'i': 1.0, 'golf': 2.0, 'outfit': 1.0, 'is': 2.0, 'such': 1.0, 'a': 1.0, 'comes': 1.0, 'and': 1.0, 'since': 1.0, 'box': 1.0, 'fun': 1.0, 'the': 1.0, 'my': 1.0, 'husband': 1.0, 'saved': 1.0, 'this': 1.0, 'loves': 1.0, 'adorable': 1.0, 'to': 1.0}
Word element => {'material': 1.0, 'horrible': 1.0, 'of': 1.0, 'because': 1.0, 'online': 1.0, 'a': 1.0, 'present': 1.0, 'the': 1.0, 'cheap': 1.0, 'felt': 1.0, 'when': 1.0, 'i': 2.0, 'synthetic': 1.0, 'it': 2.0, 'fabric': 1.0, 'bought': 1.0, 'and': 1.0, 'as': 1.0, 'received': 1.0, 'embarrassed': 1.0}
Word element => {'the': 1.0, 'is': 1.0, 'service': 1.0, 'time': 1.0, 'on': 1.0, 'it': 1.0, 'quality': 1.0, 'this': 1.0, 'loved': 1.0, 'recommend': 1.0, 'good': 3.0, 'detail': 1.0, 'excellent': 1.0, 'color': 1.0, 'product': 2.0, 'arrive': 1.0, 'i': 2.0, 'combiancion': 1.0}
Word element => {'deliverer': 1.0, 'time': 1.0, 'quality': 1.0, 'amazing': 1.0, 'gift': 1.0, 'so': 3.0, 'exciting': 1.0, 'set': 1.0, 'of': 2.0, 'the': 3.0, 'beauty': 1.0, 'is': 2.0, 'clothe': 1.0, 'and': 3.0, 'piece': 1.0, 'every': 1.0, 'she': 1.0, 'perfect': 2.0, 'babyshower': 1.0, 'for': 2.0, 'a': 3.0, 'with': 1.0, 'this': 2.0, 'item': 1.0, 'presentation': 1.0, 'was': 3.0, 'friend': 1.0}
Word element => {'presents': 1.0, 'they': 1.0, 'bought': 1.0, 'i': 1.0, 'one': 1.0, 'third': 1.0, 'is': 1.0, 'make': 1.0, 'the': 2.0, 'a': 1.0, 'almost': 1.0, 'this': 1.0, 'loves': 1.0, 'great': 1.0, 'it': 2.0, 'was': 1.0, 'his': 1.0, 'favorite': 1.0, 'baby': 2.0, 'plush': 1.0, 'year': 1.0, 'for': 1.0}
Word element => {'bag': 1.0, 'of': 1.0, 'out': 1.0, 'over': 1.0, 'was': 1.0, 'everyone': 1.0, 'baby': 1.0, 'when': 1.0, 'gave': 1.0, 'than': 1.0, 'but': 1.0, 'bigger': 1.0, 'little': 1.0, 's': 2.0, 'gift': 1.0, 'cute': 2.0, 'soft': 1.0, 'so': 1.0, 'pulled': 1.0, 'a': 3.0, 'is': 1.0, 'thing': 2.0, 'expected': 1.0, 'socks': 1.0, 'shower': 1.0, 'it': 4.0, 'this': 1.0, 'i': 2.0, 'that': 1.0, 'good': 1.0, 'the': 2.0, 'awed': 1.0, 'actually': 1.0, 'are': 1.0, 'and': 2.0, 'as': 1.0, 'very': 1.0}
Word element => {'baby': 1.0, 'not': 1.0, 'myself': 1.0, 'got': 1.0, 'unique': 1.0, 'over': 1.0, 'costs': 1.0, 'boutique': 1.0, 'in': 1.0, 'a': 2.0, 'store': 1.0, 'it': 1.0, 'this': 3.0, '10': 1.0, 'saw': 1.0, 'i': 3.0, 'dollars': 1.0, 'more': 1.0, 'than': 1.0, 'what': 1.0, 'for': 2.0, 'love': 1.0, 'animal': 1.0, 'stuffed': 1.0, 'its': 1.0, 'so': 1.0, 'gift': 1.0, 'cute': 1.0, 'and': 1.0}
Word element => {'so': 1.0, 'prints': 1.0, 'subtle': 1.0, 'or': 1.0, 'my': 1.0, 'pants': 1.0, 'color': 1.0, 'solid': 1.0, 'preferred': 1.0, 'with': 1.0, 'only': 1.0, 'opinion': 1.0, 'as': 1.0, 'have': 1.0, 'was': 1.0, 'would': 2.0, 'them': 1.0, 'a': 1.0, 'gift': 1.0, 'reason': 1.0, 'they': 2.0, 'more': 2.0, 'these': 1.0, 'the': 2.0, 'mom': 1.0, 'gave': 1.0, '4': 1.0, 'i': 1.0, 'either': 1.0, 'loved': 1.0, 'got': 1.0, 'instead': 1.0, '34': 4.0, 'of': 1.0, 'outfits': 1.0, 'go': 1.0, '5': 1.0, 'because': 1.0}
Word element => {'looks': 1.0, 'got': 1.0, 'where': 1.0, 'ask': 1.0, 'beautiful': 1.0, 'everybody': 1.0, 'i': 2.0, 'bought': 1.0, 'my': 2.0, 'and': 1.0, 'friends': 1.0, 'them': 4.0, 'in': 1.0, 'for': 1.0, 'grandughter': 1.0, 'her': 1.0, 'grandaughter': 1.0, 'mom': 1.0, 'love': 1.0}
Word element => {'hit': 1.0, 'always': 1.0, 'cute': 1.0, 'so': 1.0, 'shower': 1.0, 'are': 2.0, 'the': 3.0, 'these': 1.0, 'they': 2.0, 'best': 1.0, 're': 1.0, 'go': 1.0, 'baby': 1.0, 'to': 1.0, 'gift': 1.0, 'of': 1.0, 'girls': 1.0, 'for': 1.0}
Word element => {'so': 1.0, 'them': 1.0, 'get': 1.0, 'to': 1.0, 'excited': 1.0, 'perfectly': 1.0, 'fun': 1.0, 'fit': 1.0, 'find': 1.0, 'my': 1.0, 'are': 1.0, 'these': 2.0, 'they': 1.0, 'precious': 1.0, 'granddaughter': 1.0, 'priced': 1.0, 'quickly': 1.0, 'reasonably': 1.0, 'colors': 1.0, 'quality': 1.0, 'and': 2.0}
Word element => {'i': 1.0, 'daughters': 1.0, 'the': 1.0, 'ex': 1.0, 'and': 1.0, 'as': 1.0, 'very': 1.0, 'before': 1.0, 'both': 1.0, 'cleared': 1.0, 'this': 1.0, 'with': 1.0, 'it': 1.0, 'well': 1.0, 'a': 1.0, 'gift': 1.0, 'purchased': 1.0, 'thumbs': 1.0, 'got': 1.0, 'up': 2.0, '6': 1.0, 'ended': 1.0, 'over': 1.0, 'going': 1.0}
Word element => {'at': 1.0, 'was': 1.0, 'chef': 1.0, 'a': 1.0, 'adorable': 1.0, 'niece': 1.0, 'so': 1.0, 'got': 1.0, 'this': 1.0, 'for': 1.0, 'shower': 1.0, 'the': 1.0, 'my': 1.0, 'baby': 2.0, 'new': 1.0, 'dad': 1.0, 'is': 1.0, 'cute': 1.0, 'her': 1.0}
Word element => {'show': 1.0, 'for': 1.0, 'connected': 1.0, 'whole': 1.0, 'opens': 1.0, 'box': 1.0, 'and': 1.0, 'constantly': 1.0, 'very': 1.0, 'cooking': 1.0, 'thanks': 1.0, 'which': 1.0, 'in': 1.0, 'outfit': 2.0, 'is': 1.0, 'cousin': 1.0, 'checked': 1.0, 'a': 2.0, 'black': 1.0, 'with': 1.0, 'business': 1.0, 'he': 1.0, 'shower': 1.0, 'wearing': 1.0, 'the': 2.0, 'these': 1.0, 'white': 1.0, 'owns': 1.0, 'pants': 1.0, 'cute': 1.0, 'was': 1.0, 'baby': 1.0, 'hit': 1.0}
Word element => {'high': 1.0, 'was': 1.0, 'product': 1.0, 'of': 2.0, 'meet': 1.0, 'exceeded': 1.0, 'our': 2.0, 'grandson': 1.0, 'expectations': 1.0, 'new': 1.0, 'the': 2.0, 'looked': 1.0, 'perfect': 1.0, 'and': 1.0, 'quality': 2.0}
Word element => {'product': 1.0, 'definitely': 1.0, 'i': 1.0, 'comfortable': 1.0, 'was': 1.0, 'this': 1.0, 'complements': 1.0, 'a': 1.0, 'lot': 1.0, 'very': 2.0, 'and': 2.0, 'my': 1.0, 'baby': 1.0, 'recommend': 1.0, 'of': 1.0, 'light': 1.0, 'cute': 1.0, 'costume': 1.0, 'had': 1.0}
Word element => {'in': 1.0, 'box': 1.0, 'the': 1.0, 'even': 1.0, 'hit': 1.0, 'big': 1.0, 'was': 1.0, 'a': 3.0, 'is': 2.0, 'comes': 1.0, 'as': 1.0, 'cute': 1.0, 'whose': 1.0, 'gift': 1.0, 'to': 1.0, 'newborn': 1.0, 'gave': 1.0, 'daddy': 1.0, 'chef': 1.0, 'it': 2.0}
Word element => {'every': 1.0, 'worth': 1.0, 'and': 1.0, 'addorable': 1.0, 'absolutely': 1.0, 'is': 1.0, '6': 1.0, 'penny': 1.0, 'size': 1.0, 'runs': 1.0, '0': 1.0, 'definitely': 1.0, 'but': 1.0, 'than': 1.0, 'the': 2.0, 'closer': 1.0, 'large': 1.0, 'months': 1.0, 'to': 1.0, 'outfit': 1.0, '3': 2.0}
Word element => {'perfect': 1.0, 'but': 1.0, 'be': 1.0, 'would': 1.0, 'sure': 1.0, 'expected': 1.0, 'chefs': 1.0, 'cuter': 1.0, 'i': 3.0, 'than': 1.0, 'what': 1.0, 'even': 1.0, 'is': 1.0, 'son': 1.0, 'costume': 1.0, 'with': 1.0, 'he': 1.0, 'it': 2.0, 'this': 2.0, 'love': 1.0, 'comfortable': 1.0, 'for': 1.0, 'my': 1.0, 'great': 1.0, 'the': 1.0, 'was': 2.0, 'its': 1.0, 'to': 1.0, 'wear': 1.0, 'size': 2.0, 'wasnt': 1.0}
Word element => {'and': 1.0, 'dad': 1.0, 'is': 1.0, 'who': 1.0, 'loved': 1.0, 'this': 1.0, 'outfit': 1.0, 'baby': 1.0, 'it': 1.0, 'chef': 1.0, 'great': 1.0, 'the': 1.0, 'my': 1.0, 'mom': 1.0, 'was': 1.0, 'a': 2.0, 'new': 1.0, 'friend': 1.0, 'gift': 1.0, 'for': 1.0, 'sons': 1.0}
Word element => {'perfectly': 1.0, 'purpose': 1.0, 'serves': 1.0, 'on': 1.0, 'made': 1.0, 'whose': 1.0, 'this': 2.0, 'be': 1.0, 'small': 1.0, 'plush': 1.0, 'content': 1.0, 'to': 3.0, 'is': 4.0, 'left': 1.0, 'very': 1.0, 'things': 1.0, 'up': 1.0, 'of': 1.0, 'basically': 1.0, 'the': 5.0, 'some': 1.0, 'these': 1.0, 'my': 1.0, 'it': 2.0, 'she': 1.0, 'baby': 2.0, 'people': 1.0, 'take': 1.0, 'instead': 1.0, 'blankets': 1.0, 'but': 1.0, 'gnawing': 1.0, 'would': 1.0, 'enjoy': 1.0, 'not': 2.0, 'because': 1.0, 'part': 1.0, 'silky': 1.0, 'rattle': 1.0, 'a': 5.0, 'girl': 1.0, 'edges': 1.0, 'animal': 1.0, 'stuffed': 1.0, 'continually': 1.0, 'slobbered': 1.0, 'head': 1.0, 'body': 1.0, 'like': 1.0, 'seems': 1.0, 'in': 1.0, 'her': 1.0, 'negative': 1.0, 'pacifier': 1.0, 'blanket': 4.0, 'are': 1.0, 'for': 2.0, 'suck': 1.0, 'reviews': 1.0, 'they': 1.0, 'and': 1.0, 'too': 1.0}
Word element => {'item': 1.0, 'cute': 1.0, 'better': 1.0, 'ups': 1.0, 'back': 1.0, 'as': 1.0, 'few': 1.0, 'a': 1.0, 'lose': 1.0, 'would': 1.0, 'nervous': 1.0, 'seat': 1.0, 'car': 1.0, 'of': 1.0, 'out': 1.0, 'falling': 1.0, 'so': 2.0, 'kept': 1.0, 'once': 1.0, 'born': 1.0, 'months': 1.0, 'daughter': 1.0, 'and': 2.0, 'about': 1.0, 'baby': 1.0, 'she': 1.0, 'my': 2.0, 'for': 1.0, 'one': 1.0, 'old': 1.0, 'took': 1.0, 'i': 4.0, 'feel': 1.0, 'purchased': 1.0, 'got': 2.0, 'we': 2.0, 'shower': 1.0, 'it': 3.0, 'quick': 1.0, 'now': 1.0, 'to': 1.0, 'was': 1.0, 'really': 1.0, 'realized': 1.0, 'more': 1.0, 'the': 1.0, '2': 1.0}
Word element => {'or': 1.0, 'girl': 1.0, 'for': 1.0, 'perfect': 1.0, 'boy': 1.0, 'there': 1.0, 'out': 1.0, 's': 1.0, 'lovey': 1.0, 'lot': 1.0, 'the': 1.0, 'nicer': 1.0, 'of': 1.0, 'then': 1.0, 'nice': 1.0, 'it': 1.0, 'gave': 1.0, 'a': 3.0, 'very': 1.0, 'quality': 2.0, 'as': 1.0, 'gift': 1.0, 'much': 1.0}
Word element => {'jakka': 1.0, 'his': 1.0, 'loves': 1.0, 'a': 1.0, 'of': 1.0, 'like': 1.0, 'seems': 1.0, 'month': 1.0, 'one': 1.0, 'for': 2.0, 'old': 1.0, 'lovie': 1.0, 'were': 1.0, 'our': 2.0, 'bought': 1.0, 'it': 1.0, 'with': 1.0, 'this': 1.0, 'christmas': 1.0, 'giraffe': 2.0, 'we': 2.0, 'kind': 1.0, 'son': 2.0, 'very': 2.0, 'quality': 1.0, 'and': 2.0, 'impressed': 1.0, '2': 1.0, 'the': 1.0, 'detail': 1.0, 's': 1.0, 'special': 1.0}
Word element => {'grandpa': 1.0, 'from': 1.0, 'my': 1.0, 'leaf': 1.0, 'grand': 1.0, 'crinkle': 1.0, 'proud': 1.0, 'a': 1.0, 'this': 2.0, 'daughter': 1.0, 'for': 1.0, 'stuffed': 1.0, 'so': 1.0, 'animal': 1.0, 'cute': 1.0, 'soft': 1.0, 'it': 1.0, 'comes': 1.0, 'and': 1.0, 'is': 3.0, 'with': 1.0}
Word element => {'as': 2.0, 'hope': 1.0, 'and': 1.0, 'found': 1.0, 'theme': 1.0, 'much': 1.0, 'room': 1.0, 'enjoys': 1.0, 'jungle': 1.0, 's': 1.0, 'baby': 1.0, 'that': 1.0, 'him': 1.0, 'mine': 1.0, 'for': 1.0, 'a': 2.0, 'giraffe': 1.0, 'when': 1.0, 'bear': 3.0, 'order': 1.0, 'so': 1.0, 'enjoyed': 1.0, 'then': 1.0, 'got': 1.0, 'the': 4.0, 'form': 1.0, 'my': 2.0, 'in': 1.0, 'huggie': 2.0, 'i': 4.0, 'step': 1.0, 'grandson': 2.0, 'learned': 1.0, 'has': 3.0, 'of': 1.0, 'ready': 1.0, 'announced': 1.0, 'birth': 1.0, 'impending': 1.0, 'child': 1.0, 'his': 2.0, 'it': 1.0, 'he': 1.0, 'this': 1.0, 'first': 1.0, 'to': 1.0}
Word element => {'love': 1.0, 'however': 1.0, 'noticeable': 1.0, 'in': 1.0, 'is': 1.0, 'rattle': 1.0, 'our': 1.0, 'daughter': 1.0, 'giraffe': 1.0, 'leaf': 1.0, 'not': 1.0, 'loves': 1.0, 'this': 1.0, 'it': 4.0, 'the': 2.0, 'great': 1.0, 's': 2.0, 'and': 1.0, 'crinkles': 1.0, 'cuddly': 1.0, 'little': 1.0, 'but': 1.0, 'a': 1.0, 'she': 1.0, 'lot': 1.0, 'soft': 1.0, 'barely': 1.0}
Word element => {'like': 1.0, 'looks': 1.0, 'room': 1.0, 's': 1.0, 'baby': 1.0, 'winner': 1.0, 'that': 1.0, 'new': 1.0, 'everyone': 1.0, 'gift': 1.0, 'was': 1.0, 'the': 1.0, 'yet': 1.0, 'perfect': 1.0, 'a': 3.0, 'match': 1.0, 'for': 2.0, 'unborn': 1.0}
Word element => {'gift': 1.0, 'crafted': 1.0, 'what': 1.0, 'exactly': 1.0, 'taggie': 1.0, 'was': 2.0, 'this': 1.0, 'expecting': 1.0, 'i': 1.0, 'your': 1.0, 'perfect': 1.0, 'just': 1.0, 'everything': 1.0, 'as': 1.0, 'very': 1.0, 'and': 1.0, 'soft': 1.0, 'overall': 1.0, 'well': 1.0, 'a': 2.0, 'or': 1.0, 'good': 1.0, 'for': 1.0, 'about': 1.0, 'baby': 1.0}
Word element => {'toys': 1.0, 'are': 1.0, 'playmate': 1.0, 'we': 1.0, 'she': 1.0, 'baby': 1.0, 'so': 1.0, 'her': 1.0, 'daughter': 1.0, 'for': 1.0, 'grand': 1.0, 'purchased': 1.0, 'loved': 1.0, 'our': 1.0, 'the': 2.0, 'these': 1.0, 'easter': 1.0, 'first': 1.0, 'it': 1.0, 'was': 1.0, 'thing': 1.0, 'grabbed': 1.0, 'jaka': 1.0, 'nice': 1.0}
Word element => {'has': 1.0, 'long': 1.0, 'do': 1.0, 'continue': 1.0, 'my': 3.0, 'me': 2.0, 'almost': 1.0, 'now': 2.0, 'head': 2.0, 'requires': 1.0, 'up': 2.0, '23': 1.0, 'awoke': 1.0, 'took': 1.0, 'take': 1.0, 'horrified': 1.0, 'amazon': 4.0, 'prime': 2.0, 'contacting': 1.0, 'product': 2.0, 'already': 1.0, 'nap': 1.0, 'a': 4.0, 'regret': 1.0, 'expeditions': 1.0, 'this': 4.0, 'of': 6.0, 'learned': 1.0, 'three': 1.0, 'kind': 1.0, 'monday': 1.0, 'off': 2.0, '2013': 2.0, 'grandsons': 1.0, 'see': 1.0, 'pick': 1.0, 'parts': 2.0, 'sewn': 1.0, 'might': 1.0, 'elsewhere': 1.0, 'much': 1.0, 'pictures': 2.0, 'window': 1.0, 'what': 2.0, 'october': 1.0, 'crinkle': 2.0, 'first': 1.0, 'i': 17.0, 'it': 7.0, 'lovie': 2.0, 'as': 3.0, 'right': 1.0, 'to': 15.0, 'was': 7.0, 'had': 7.0, 'purchased': 2.0, 'stitching': 2.0, 'when': 4.0, 'disregarded': 1.0, 'giraffes': 1.0, 'information': 1.0, 'make': 1.0, 'happy': 1.0, 'one': 1.0, 'baby': 2.0, 'fluke': 1.0, 'have': 3.0, 'thing': 1.0, 'measures': 1.0, 'an': 1.0, 'other': 1.0, 'grandson': 2.0, 'returning': 1.0, 'completely': 1.0, 'is': 4.0, 'm': 2.0, 'hadn': 1.0, 'aspen': 1.0, 'promptly': 1.0, 'in': 3.0, 'dec': 1.0, 'hands': 2.0, 'happened': 1.0, 'harm': 1.0, 'leaf': 3.0, 'come': 2.0, 'went': 4.0, 'with': 4.0, 'him': 1.0, 'he': 5.0, 'visiting': 2.0, 'crunching': 1.0, 'thinking': 1.0, '34': 1.0, 'just': 1.0, 'and': 19.0, 'anyone': 1.0, 'store': 1.0, 'again': 2.0, 'described': 1.0, 'which': 1.0, 'arrived': 1.0, 'that': 7.0, 'concerned': 1.0, 'involving': 1.0, 'not': 2.0, 'wrong': 2.0, 'on': 5.0, '3': 1.0, 'telling': 1.0, 'unravelled': 1.0, 'were': 1.0, 'so': 6.0, 'find': 1.0, '16': 1.0, 'very': 1.0, 'knew': 1.0, 'his': 1.0, 'mouth': 1.0, 'reporting': 1.0, 'any': 1.0, 'item': 1.0, 'wrote': 1.0, 'for': 2.0, 'purchase': 1.0, 'then': 1.0, 'only': 1.0, 'makes': 1.0, 'toy': 5.0, 'advise': 1.0, 'specifically': 1.0, 'ages': 1.0, 'them': 2.0, 'blanket': 1.0, 'responded': 1.0, 'undone': 1.0, 'like': 1.0, 'wasn': 1.0, 'infant': 2.0, 'by': 1.0, 'threads': 1.0, 'seemed': 1.0, 'bought': 1.0, 'sure': 2.0, 'instructions': 1.0, 'believe': 1.0, 'purchasing': 1.0, 'send': 2.0, 'could': 1.0, 'giraffe': 3.0, 'sent': 1.0, 'intact': 1.0, 'from': 2.0, 'who': 2.0, 'little': 2.0, 'replied': 1.0, 'contact': 1.0, 'the': 29.0, 'process': 1.0, 'standard': 1.0, 'reached': 1.0, 'they': 4.0, 'issue': 2.0, 'end': 1.0, 'message': 1.0, 'screen': 1.0, 'consumer': 1.0, 'came': 1.0, 'choked': 1.0, 'said': 1.0, 'lesson': 1.0, 'wet': 1.0, 'passed': 1.0, 'thankful': 2.0, 'month': 1.0, 'basically': 1.0, 'back': 2.0, 'check': 1.0, 't': 2.0, 'sol': 1.0, 'but': 1.0, 'fifteen': 1.0, 'return': 1.0, 'bucks': 1.0, 'no': 1.0, 'occurred': 1.0, 'must': 1.0, 'am': 1.0, 'about': 1.0, 'told': 1.0, 'out': 1.0, 'infants': 1.0, 'follow': 1.0, 'thru': 1.0, 'childs': 1.0, 'would': 1.0, 'explanation': 1.0, 'through': 1.0, 'company': 1.0, 'entering': 1.0, 'considering': 1.0, 'exposed': 1.0, 'september': 1.0, 'if': 1.0}
Word element => {'yourself': 1.0, 'want': 1.0, 'might': 1.0, 'you': 2.0, 'caution': 1.0, 'old': 1.0, 'but': 1.0, 'leaf': 2.0, 'reinforce': 1.0, 'hanging': 1.0, 'his': 1.0, 'or': 1.0, 'seems': 1.0, 'off': 2.0, 'fell': 1.0, 'month': 1.0, 'annoying': 1.0, 'elephant': 1.0, 'months': 3.0, '4': 2.0, 't': 2.0, 'hardly': 1.0, 's': 2.0, 'rattle': 1.0, 'a': 7.0, 'boy': 1.0, 'can': 1.0, 'so': 2.0, 'time': 1.0, 'crinkly': 1.0, 'and': 6.0, 'lot': 1.0, 'three': 1.0, 'calming': 1.0, 'gentle': 1.0, 'when': 2.0, 'barely': 1.0, 'if': 1.0, 'lovey': 2.0, 'without': 1.0, 'soft': 1.0, 'this': 5.0, 'at': 3.0, 'is': 1.0, 'more': 1.0, 'beautiful': 1.0, 'was': 5.0, 'i': 7.0, 'well': 1.0, 'trunk': 1.0, 'than': 1.0, 'washing': 2.0, 'he': 1.0, 'nearby': 1.0, 'not': 1.0, 'give': 1.0, 'with': 2.0, 'bother': 1.0, 'garment': 1.0, 'adults': 1.0, 'began': 1.0, 'all': 2.0, 'other': 1.0, 'my': 2.0, 'however': 1.0, 'little': 1.0, 'whole': 1.0, 'now': 1.0, 'five': 1.0, 'chewing': 1.0, 'on': 2.0, 'much': 1.0, 'do': 2.0, 'put': 1.0, 'it': 9.0, 'thought': 1.0, 'use': 1.0, 'wash': 2.0, 'followed': 1.0, 'even': 1.0, 'didn': 1.0, 'in': 2.0, 'point': 1.0, 'net': 1.0, 'bag': 1.0, 'to': 5.0, 'pulled': 1.0, 'feel': 1.0, 'out': 1.0, 'the': 7.0, 'of': 3.0, 'machine': 1.0, 'return': 1.0, 'parents': 1.0, 'head': 1.0, 'gift': 1.0, 'instructions': 1.0, 'registry': 1.0, 'been': 1.0, 'because': 1.0, 'that': 1.0, 'trying': 1.0, 'must': 1.0, 'warn': 1.0, 'buy': 2.0}
Word element => {'it': 1.0, 'this': 1.0, 'neighbors': 1.0, 'soft': 1.0, 'so': 2.0, 'i': 1.0, 'packaging': 1.0, 'bought': 1.0, 'cute': 1.0, 'gift': 1.0, 'loved': 1.0, 'elephant': 1.0, 'they': 1.0, 'and': 1.0, 'as': 1.0, 'is': 2.0, 'the': 2.0, 'my': 1.0, 'a': 2.0, 'for': 1.0, 'had': 1.0, 'who': 1.0, 'just': 1.0, 'baby': 1.0}
Word element => {'tired': 1.0, 'grabbing': 1.0, 'but': 1.0, 'loves': 1.0, 'been': 1.0, 'have': 1.0, 'wouldn': 1.0, 'bedtime': 1.0, 'stroking': 1.0, 'big': 1.0, 'if': 1.0, 'sure': 1.0, 'it': 3.0, 'made': 1.0, 'why': 1.0, 'bell': 1.0, 'which': 1.0, 'hold': 1.0, 'thing': 1.0, 'mom': 1.0, 'loud': 1.0, 'lovey': 2.0, 'i': 2.0, 'bed': 1.0, 'love': 1.0, 'for': 3.0, 'little': 1.0, 'very': 1.0, 'one': 2.0, 'bought': 1.0, 'travel': 2.0, 'him': 1.0, 'be': 2.0, 'probably': 1.0, 'tail': 1.0, 'size': 1.0, 'more': 1.0, 'is': 5.0, 'with': 1.0, 'soft': 1.0, 'this': 4.0, 'every': 1.0, 'getting': 1.0, 'along': 1.0, 'starts': 1.0, 'another': 1.0, 'my': 1.0, 'silk': 1.0, 'other': 1.0, 'naps': 1.0, 'will': 1.0, 'the': 4.0, 'both': 1.0, 'would': 1.0, 'super': 1.0, 'cute': 2.0, 'daytime': 1.0, 'held': 1.0, 'too': 1.0, 'similar': 1.0, 'and': 5.0, 'wasn': 1.0, 'couple': 2.0, 'toy': 1.0, 'has': 2.0, 'continue': 1.0, 'up': 1.0, 'on': 1.0, 'think': 1.0, 'guy': 1.0, 'washed': 1.0, 'to': 4.0, 'weeks': 1.0, 'now': 1.0, 'he': 3.0, 'washing': 1.0, 't': 2.0, 'a': 3.0, 'when': 2.0, 'gives': 1.0, 'times': 1.0}
Word element => {'search': 1.0, 'continue': 1.0, 'to': 1.0, 'have': 1.0, 'that': 1.0, 'frustrated': 1.0, 'bit': 1.0, 'girl': 1.0, 'baby': 1.0, 'looking': 1.0, 'm': 1.0, 'i': 2.0, 'picture': 1.0, 'does': 1.0, 'very': 1.0, 'my': 1.0, 'color': 1.0, 'and': 2.0, 'me': 1.0, 'return': 1.0, 'a': 4.0, 'gray': 1.0, 'elephant': 2.0, 'gift': 1.0, 'cute': 1.0, 'the': 3.0, 'this': 2.0, 'is': 2.0, 'looks': 1.0, 'blanket': 1.0, 'are': 1.0, 'actually': 1.0, 'but': 2.0, 'blue': 2.0, 'work': 1.0, 'one': 1.0, 'for': 3.0, 'not': 1.0, 'because': 1.0}
Word element => {'happy': 1.0, 'w': 1.0, 'give': 1.0, 'll': 1.0, 'pillow': 1.0, 'superstore': 1.0, 'brobee': 1.0, 'blanket': 1.0, 'fleece': 1.0, 'by': 1.0, 'ahead': 1.0, 'thread': 1.0, '400': 1.0, 'blissfully': 1.0, 'them': 1.0, 'she': 1.0, 'will': 1.0, 'sleeping': 1.0, 'they': 1.0, 'quality': 1.0, 'supplemented': 1.0, 'see': 1.0, 'yo': 2.0, 'can': 2.0, 'but': 3.0, 'outside': 1.0, 'at': 1.0, 'is': 6.0, 'say': 1.0, 'sheet': 3.0, 'toddler': 2.0, 'finding': 1.0, 'sheets': 3.0, 'thick': 1.0, 'snuggly': 1.0, 'all': 1.0, 'characters': 1.0, 'end': 2.0, 'positive': 1.0, 'husband': 1.0, 'extent': 1.0, 'much': 1.0, 'forms': 1.0, 'to': 3.0, 'pretty': 1.0, 'white': 1.0, 'loves': 2.0, 'complaining': 1.0, 'new': 1.0, 'and': 7.0, 'daughter': 1.0, 'since': 1.0, 'find': 1.0, 'standard': 1.0, 'are': 1.0, 'cute': 1.0, 'count': 1.0, 'mattress': 2.0, 'soft': 2.0, 'hint': 1.0, 'this': 2.0, 'unaware': 1.0, 'her': 2.0, 's': 2.0, 't': 1.0, 'pal': 1.0, 'a': 5.0, 'of': 6.0, 'the': 13.0, 'these': 2.0, 'sets': 1.0, 'it': 4.0, 'with': 2.0, 'expect': 1.0, 'fitted': 1.0, 'that': 4.0, 'thrilled': 1.0, 'was': 1.0, 'over': 1.0, 'on': 4.0, 'just': 2.0, 'stuff': 1.0, 'girl': 1.0, 'from': 1.0, 'big': 1.0, 'border': 1.0, 'bed': 2.0, 'i': 7.0, 'suppose': 1.0, 'super': 1.0, 'often': 1.0, 'felt': 1.0, 'hear': 1.0, 'nearby': 1.0, 'not': 3.0, 'gabba': 4.0, 'world': 1.0, 'stay': 1.0, 'course': 2.0, 'label': 1.0, 'trying': 1.0, 'thin': 1.0, 'now': 1.0, 'woolish': 1.0, 'very': 2.0, 'either': 2.0, 'guess': 1.0, 'wouldn': 1.0, 'know': 1.0, 'fabric': 2.0, 'for': 2.0, 'like': 2.0, 'cheap': 1.0, 'also': 1.0, 'buy': 1.0, 'satin': 1.0, 'set': 1.0, 'comforter': 1.0, 'my': 3.0, 'entire': 1.0, 'went': 1.0, 'those': 1.0, 'inside': 1.0, 'through': 1.0, 'material': 1.0, 'starts': 1.0, 'things': 1.0, 'blankets': 1.0, 'you': 2.0, 'again': 1.0, 'd': 1.0}
Word element => {'he': 1.0, 'gift': 1.0, 'christmas': 1.0, 'was': 1.0, 'sent': 1.0, 'to': 1.0, 'him': 1.0, 'it': 1.0, 'way': 1.0, 'the': 2.0, 'my': 1.0, 'loved': 1.0, 'this': 1.0, 'grandson': 1.0, 'perfect': 1.0, 'all': 1.0, 'germany': 1.0, 'for': 3.0}
Word element => {'i': 1.0, 'super': 1.0, 'in': 1.0, 'bed': 1.0, 'stay': 1.0, 'want': 1.0, 'this': 1.0, 'cute': 1.0, 'her': 1.0, 'lived': 1.0, 'product': 1.0, 'to': 3.0, 'own': 1.0, 'my': 2.0, 'up': 1.0, 'and': 2.0, 'toddler': 1.0, 'expectation': 1.0, 'got': 1.0, 'love': 1.0, 'it': 2.0}
Word element => {'with': 1.0, 'am': 1.0, 'times': 1.0, '20': 1.0, 'maybe': 1.0, '6': 1.0, 'from': 1.0, 'after': 1.0, 'car': 1.0, 'dump': 1.0, 'over': 1.0, 'carry': 1.0, 'since': 1.0, 'stroller': 1.0, 'months': 1.0, 'hang': 1.0, 'is': 2.0, 'month': 1.0, 'looks': 1.0, 'it': 6.0, 'organized': 1.0, 'very': 1.0, 'be': 1.0, 'do': 1.0, 'and': 2.0, 'ounce': 1.0, 'decent': 1.0, 'these': 1.0, 'onto': 1.0, 'interior': 1.0, 'the': 3.0, 'that': 1.0, 'was': 1.0, 'had': 1.0, 'to': 5.0, 'magnetic': 1.0, 'done': 1.0, 'bag': 3.0, 'hassle': 2.0, 'small': 1.0, 'has': 1.0, 'nice': 1.0, 'big': 1.0, 'i': 4.0, 'two': 1.0, 'biggest': 1.0, 'my': 1.0, 'found': 1.0, 'this': 1.0, 'frankly': 1.0, 'things': 1.0, 'problem': 1.0, 'using': 1.0, 'hand': 2.0, '9': 1.0, 'not': 1.0, 'in': 4.0, 'a': 5.0, 'go': 1.0, 'could': 1.0, 'for': 2.0, 'closure': 1.0, 'opinion': 1.0, 'fit': 1.0, 'or': 1.0, 'bottles': 1.0, 'burp': 1.0, 'clothes': 2.0, 'an': 1.0, 'diapers': 1.0, 'shoulder': 1.0, 'work': 1.0, '2': 2.0, 'but': 2.0, 'extra': 1.0, 'set': 1.0, 'of': 1.0, 'your': 2.0, '3': 2.0, 'wipes': 1.0}
Word element => {'need': 1.0, 'might': 1.0, 'than': 1.0, 'smaller': 1.0, 'be': 1.0, 'it': 2.0, 'just': 1.0, 'making': 1.0, 'm': 1.0, 'them': 1.0, 'out': 1.0, 'in': 1.0, 'warned': 1.0, 'work': 1.0, 'but': 2.0, 'hardly': 1.0, 'bag': 1.0, 'of': 3.0, 'is': 2.0, 'look': 1.0, 'interior': 1.0, 'diaper': 1.0, 'the': 4.0, 'so': 2.0, 'small': 2.0, 'are': 1.0, 'can': 1.0, 'i': 2.0, 'pockets': 1.0, 'love': 1.0, 'tight': 1.0, 'that': 2.0, 'you': 1.0, 'and': 2.0, 'get': 1.0, 'some': 2.0, 'things': 1.0}
Word element => {'quality': 1.0, 'wide': 1.0, 'easy': 1.0, 'bit': 1.0, 'promptly': 1.0, 'be': 1.0, 'although': 1.0, 'skip': 1.0, 'ideas': 1.0, 'competes': 1.0, 'which': 1.0, 'gift': 1.0, 'good': 1.0, 'several': 1.0, 'comes': 1.0, 'shaped': 1.0, 'have': 3.0, 'could': 2.0, 'out': 2.0, 'hook': 1.0, 'seemed': 1.0, 'stroller': 2.0, 'around': 1.0, 'got': 1.0, 'some': 2.0, 'never': 1.0, 'carrying': 1.0, 'snaps': 1.0, 'designs': 1.0, 'from': 1.0, 'purchased': 1.0, 'ripping': 1.0, 'strap': 1.0, 'lived': 1.0, 'shoulder': 1.0, 'pad': 2.0, 'cushion': 1.0, 'also': 1.0, 'unraveled': 1.0, 'prone': 1.0, 'making': 1.0, 'overall': 3.0, 'thin': 1.0, 'inaccessible': 1.0, 'now': 1.0, 'almost': 1.0, 'smaller': 1.0, 'box': 1.0, 'small': 1.0, 'a': 6.0, 'certainly': 1.0, 'if': 1.0, 'collapsing': 1.0, 'tissues': 2.0, 'unused': 1.0, 'were': 2.0, 'but': 3.0, 'tissue': 1.0, 'large': 1.0, 'between': 1.0, 'wipes': 4.0, 'handy': 1.0, 'theoretically': 1.0, 'stitching': 1.0, 'messenger': 1.0, 'frustrated': 1.0, 'nice': 1.0, 'two': 1.0, 'things': 1.0, 'public': 1.0, 's': 1.0, 'go': 1.0, 't': 2.0, 'diaper': 1.0, 'as': 3.0, 'replace': 1.0, 'construction': 1.0, 'needs': 1.0, 'shallow': 1.0, 'places': 1.0, 'one': 3.0, 'too': 2.0, 'and': 11.0, 'similar': 1.0, 'in': 3.0, 'below': 1.0, 'sized': 2.0, 'since': 1.0, 'find': 2.0, 'couldn': 1.0, 'involved': 1.0, 'i': 9.0, 'well': 4.0, 'convenient': 1.0, 'them': 1.0, 'baby': 1.0, 'allowed': 1.0, 'lots': 1.0, 'underneath': 1.0, 'design': 2.0, 'create': 1.0, 'pros': 1.0, 'are': 1.0, 'first': 1.0, 'fabric': 2.0, 'shorter': 1.0, 'for': 3.0, 'yet': 1.0, 'love': 1.0, 'with': 4.0, 'pockets': 5.0, 'being': 1.0, 'relatively': 1.0, 'inner': 1.0, 'apart': 1.0, 'was': 3.0, 'all': 1.0, 'an': 1.0, 'continued': 1.0, 'system': 1.0, 'of': 5.0, 'the': 19.0, 'there': 2.0, 'perfectly': 1.0, 'organized': 1.0, 'so': 3.0, 'me': 2.0, 'why': 1.0, 'just': 3.0, 'wet': 1.0, 'college': 1.0, 'few': 1.0, 'really': 1.0, 'excellent': 1.0, 'issues': 1.0, 'basic': 1.0, 'certificate': 1.0, 'would': 2.0, 'loved': 1.0, 'to': 10.0, 'became': 1.0, 'excessively': 1.0, 'makes': 1.0, 'cutesy': 1.0, 'magnetic': 1.0, 'upgrades': 1.0, 'close': 1.0, 'at': 1.0, 'is': 3.0, 'off': 1.0, 'see': 1.0, 'access': 1.0, 'supplies': 1.0, 'stars': 1.0, 'bathroom': 1.0, 'much': 2.0, 'changing': 2.0, 'proportioned': 1.0, 'deep': 2.0, 'that': 2.0, 'comment': 1.0, 'easier': 2.0, 'table': 1.0, 'bag': 3.0, 'using': 1.0, 'on': 3.0, 'cons': 1.0, 'container': 1.0, 'fell': 1.0, '3': 1.0, 'useless': 1.0, 'thought': 1.0, 'it': 5.0, 'not': 4.0, 'dry': 1.0, 'up': 3.0, 'hop': 1.0, 'days': 1.0, 'anything': 1.0, 'hooking': 1.0, 'points': 1.0, 'pocket': 4.0, 'left': 2.0}
Word element => {'carrier': 1.0, 'also': 1.0, 'lillebaby': 1.0, 'at': 1.0, 'don': 1.0, 'or': 1.0, 'works': 1.0, 'baby': 1.0, 'under': 1.0, 'put': 1.0, 'me': 1.0, 'with': 1.0, 'disposable': 1.0, 'thin': 1.0, 'always': 1.0, 'length': 1.0, 'in': 1.0, 'so': 1.0, 'bit': 1.0, 'pad': 2.0, 'genius': 1.0, 'wipes': 1.0, 'contains': 1.0, 'flap': 1.0, 'an': 1.0, 'bottom': 1.0, 'inside': 1.0, 'else': 1.0, 'attach': 1.0, 'other': 1.0, 'really': 2.0, 'can': 1.0, 'it': 4.0, 'this': 3.0, 'looked': 1.0, 'chux': 1.0, 'bring': 2.0, 'great': 1.0, 'stroller': 1.0, 'diaper': 2.0, 'the': 7.0, 'is': 4.0, 'more': 1.0, 'and': 4.0, 'pockets': 1.0, 'purchased': 1.0, 'use': 2.0, 'wallet': 1.0, 'because': 1.0, 't': 1.0, 's': 2.0, 'a': 4.0, 'changing': 2.0, 'that': 5.0, 'like': 2.0, 'all': 1.0, 'pads': 1.0, 'to': 2.0, 'outside': 1.0, 'very': 1.0, 'one': 1.0, 'my': 3.0, 'of': 1.0, 'i': 9.0, 'two': 1.0, 'some': 2.0, 'love': 2.0, 'for': 3.0, 'inner': 1.0, 'items': 1.0, 'zipper': 1.0, 'small': 2.0, 'has': 1.0, 'roomy': 1.0, 'purse': 1.0, 'balanket': 1.0, 'pocket': 1.0, 'dipaers': 1.0, 'short': 1.0, 'wanted': 1.0, 'bag': 4.0, 'toys': 1.0}
Word element => {'using': 1.0, 'if': 1.0, 'purchasing': 1.0, 'long': 1.0, 'not': 1.0, 'me': 1.0, 'than': 1.0, 'choose': 1.0, 'because': 1.0, 'way': 1.0, 'no': 1.0, 'there': 1.0, 'off': 1.0, 'broke': 1.0, 'few': 1.0, 'just': 1.0, 'pull': 1.0, 'you': 1.0, 'am': 1.0, 'when': 1.0, 'yesterday': 1.0, 'until': 1.0, 'anyway': 1.0, 'use': 1.0, 'functionality': 1.0, 'continued': 1.0, 'rip': 1.0, 'began': 1.0, 'didn': 1.0, 'pockets': 1.0, 'my': 2.0, 'it': 4.0, 'perfect': 1.0, 'this': 6.0, 'with': 1.0, 'quick': 1.0, 'the': 8.0, 'diaper': 3.0, 'side': 1.0, 'run': 1.0, 'more': 1.0, 'plan': 1.0, 'completely': 1.0, 'around': 1.0, 'is': 3.0, 'fit': 1.0, 'sad': 1.0, 'for': 4.0, 'too': 1.0, 'greatly': 1.0, 'and': 1.0, 'fix': 1.0, 'bags': 1.0, 'that': 2.0, 'trips': 1.0, 'one': 3.0, 'months': 2.0, 'on': 2.0, 'mess': 1.0, 'i': 7.0, 'two': 1.0, '6': 1.0, 'of': 1.0, 'zipper': 1.0, 'have': 2.0, 'bag': 7.0, 'outer': 1.0, 'size': 1.0, 'all': 1.0, 'as': 1.0, 'our': 1.0, 'to': 6.0, 'recommend': 1.0, 'store': 1.0, 'originally': 1.0, 'took': 1.0, 'loved': 1.0, 'purchased': 1.0, 'needs': 1.0, 'time': 1.0, 'smaller': 1.0, 'so': 4.0, 'do': 1.0, 'only': 1.0, 'much': 1.0, 'used': 1.0, 'declined': 1.0, 'finally': 1.0, 'friend': 1.0, 'but': 2.0, 'quality': 1.0, 'recently': 1.0, 'has': 1.0, 'a': 3.0, 't': 1.0, 's': 2.0, 'material': 1.0}
Word element => {'duckies': 1.0, 'go': 1.0, 'full': 1.0, 'so': 1.0, 'of': 1.0, 'understand': 1.0, 'swag': 2.0, 'you': 1.0, 'had': 1.0, 'how': 1.0, 'should': 1.0, 'rubber': 1.0, 'breathing': 1.0, 'fire': 1.0, 'per': 1.0, 'ducks': 1.0, 'were': 2.0, 'much': 1.0, 'costed': 1.0, 'dont': 1.0, 'these': 1.0, 'the': 1.0, 'duck': 1.0, 'greatest': 1.0, 'i': 1.0, 'thing': 1.0, 'have': 2.0, 'they': 3.0, 'ever': 1.0, 'bought': 1.0, 'like': 1.0, '50': 1.0}
Word element => {'tried': 1.0, 'things': 1.0, 'anything': 1.0, 'open': 1.0, 'me': 1.0, 'not': 1.0, 'magnetic': 1.0, 'always': 2.0, 'them': 1.0, 'baby': 1.0, 'clothes': 1.0, 'have': 2.0, 'but': 4.0, '2': 2.0, 'change': 1.0, 'like': 1.0, 'if': 1.0, 'stay': 1.0, 'bigger': 1.0, 'something': 1.0, 'would': 3.0, 'for': 4.0, 'closure': 1.0, 'to': 1.0, 'looking': 1.0, 'bag': 4.0, 'never': 1.0, 'holder': 1.0, 'be': 1.0, 'bought': 1.0, 'closed': 1.0, 'and': 3.0, 'loose': 1.0, 'month': 2.0, 'fell': 1.0, 'paper': 1.0, 'room': 2.0, 'thinking': 1.0, 'i': 10.0, 'etc': 1.0, 'old': 1.0, 'this': 3.0, 'tipping': 1.0, 'with': 1.0, 't': 5.0, 'small': 1.0, 'a': 4.0, 'as': 1.0, 'diaper': 1.0, 'is': 5.0, '1': 1.0, 'shoulder': 2.0, 'don': 3.0, 'in': 2.0, 'apart': 2.0, 'need': 2.0, 'falling': 1.0, 'am': 2.0, 'sit': 1.0, 'when': 1.0, 'won': 1.0, 'now': 1.0, 'upright': 1.0, 'loaded': 1.0, 'so': 1.0, 'time': 1.0, 'will': 1.0, 'spilling': 1.0, 'contents': 1.0, 'strap': 1.0, 'blanket': 1.0, 'cover': 2.0, 'think': 1.0, 'parent': 1.0, 'ripping': 1.0, 'on': 2.0, 'stuff': 1.0, 'both': 1.0, 'ton': 1.0, 'sides': 1.0, 'sling': 1.0, 'it': 3.0, 'already': 1.0, 'receiving': 1.0, 'carrying': 1.0, 'wipes': 2.0, 'the': 9.0, 'of': 2.0, 'first': 2.0, 'diapers': 1.0, 'cloth': 2.0, 'even': 1.0, 'only': 1.0, 'usually': 1.0, 'because': 1.0, 'nursing': 1.0, 'overwhelm': 1.0, 'size': 1.0, 'haven': 1.0, 'yet': 1.0, 'go': 1.0, 'figured': 1.0, 'basics': 1.0, 'out': 1.0}
Word element => {'system': 1.0, 'not': 1.0, 'that': 1.0, 'car': 1.0, 'model': 1.0, 'does': 1.0, 'i': 1.0, 'latch': 1.0, 'very': 1.0, 'love': 1.0, 'way': 1.0, 'base': 1.0, 'have': 1.0, 'fit': 1.0, 'securely': 1.0, 'the': 3.0, 'my': 1.0, 'older': 1.0, 'in': 1.0}
Word element => {'overall': 1.0, 'east': 1.0, 'install': 1.0, 'great': 1.0, 'one': 1.0, 'here': 1.0, 'video': 1.0, 'on': 2.0, 'really': 1.0, 'my': 1.0, 'fits': 1.0, 'steel': 1.0, 'of': 2.0, 'market': 1.0, 'mostly': 1.0, 'made': 1.0, 'very': 1.0, 'designed': 1.0, 'with': 2.0, 'it': 6.0, 'this': 1.0, 'because': 1.0, 'car': 5.0, 'check': 1.0, 'needed': 1.0, 'relatively': 1.0, 'stroller': 1.0, 'work': 1.0, 'will': 1.0, 'buzz': 1.0, 'has': 1.0, 'review': 1.0, 'well': 2.0, 'ratings': 1.0, 'i': 2.0, 'as': 1.0, 'seat': 5.0, 'to': 2.0, 'was': 2.0, 'cosi': 1.0, 'mico': 1.0, 'sturdy': 1.0, 'adapter': 1.0, 'purchased': 1.0, 'have': 1.0, 'recently': 1.0, 'reason': 1.0, 'a': 3.0, 't': 1.0, 'we': 5.0, 'and': 3.0, 'cheap': 1.0, 'love': 2.0, 'for': 2.0, 'maxi': 1.0, 'quinny': 4.0, 'something': 1.0, 'larger': 2.0, 'sturdier': 1.0, 'the': 8.0, 'turns': 1.0, 'out': 2.0, 'didn': 1.0, 'safety': 3.0, '1st': 2.0, 'is': 2.0, 'compatible': 1.0, 'wanted': 2.0, 'need': 1.0, 'which': 1.0, 'you': 1.0}
Word element => {'constantly': 1.0, 'with': 2.0, 'along': 1.0, 'stories': 1.0, 'own': 1.0, 'hannah': 1.0, 'set': 1.0, 'her': 1.0, 'to': 1.0, 'all': 2.0, 'have': 3.0, 'far': 1.0, 'favorite': 1.0, 'fur': 1.0, 'many': 1.0, 'every': 1.0, 'these': 2.0, 'such': 1.0, 'the': 1.0, 'go': 1.0, 's': 1.0, 'a': 1.0, 't': 1.0, 'i': 2.0, 'softest': 1.0, 'personalities': 1.0, 'beautiful': 1.0, 'how': 1.0, 'incredible': 1.0, 'they': 3.0, 'of': 2.0, 'kittens': 3.0, 'like': 1.0, 'are': 4.0, 'my': 2.0, 'life': 1.0, 'by': 1.0, 'sweet': 1.0, 'she': 1.0, 'has': 1.0, 'girls': 1.0, 'little': 4.0, 'purchased': 1.0, 'stuffed': 1.0, 'for': 1.0, 'sister': 2.0, 'them': 2.0, 'colors': 1.0, 'about': 1.0, 'too': 1.0, 'and': 3.0, 'imaginable': 1.0, 'but': 1.0, 'can': 1.0, 'say': 1.0, 'enough': 1.0, 'their': 1.0, 'should': 1.0, 'girl': 1.0, 'big': 1.0}
Word element => {'seen': 1.0, 'without': 1.0, 'amazing': 1.0, 'you': 1.0, 'have': 3.0, 'stuffed': 1.0, 'to': 3.0, 'future': 1.0, 'sets': 1.0, 'two': 1.0, 'and': 3.0, 'as': 1.0, 'words': 1.0, 'are': 2.0, 'ever': 1.0, 'they': 1.0, 'craftsmanship': 1.0, 'doubt': 1.0, 'for': 2.0, 'finest': 1.0, 'gifts': 1.0, 'quality': 1.0, 'precious': 1.0, 'animals': 1.0, 'how': 1.0, 'kitties': 1.0, 'more': 1.0, 'the': 2.0, 'these': 1.0, 'is': 1.0, 'touch': 1.0, 'i': 4.0, 'too': 1.0, 'when': 1.0, 'bought': 2.0, 'truly': 1.0, 'absolutely': 1.0, 'gift': 1.0, 'see': 1.0, 'a': 3.0, 'appreciate': 1.0, 'them': 3.0, 'set': 1.0, 'exquisite': 1.0, 'saw': 1.0}
Word element => {'the': 1.0, 'hit': 1.0, 'different': 1.0, 'what': 1.0, 'rally': 1.0, 'i': 1.0, 'invited': 1.0, 'party': 2.0, 'at': 1.0, 'was': 1.0, 'to': 1.0, 'a': 3.0, 'gift': 1.0, 'dr': 1.0, 'seus': 1.0, 'for': 1.0, 'something': 1.0, 'and': 1.0, 'wanted': 1.0}
Word element => {'overall': 1.0, 'expensive': 1.0, 'worth': 1.0, 'little': 1.0, 'a': 1.0, 'it': 4.0, 'is': 2.0, 'towel': 1.0, 'the': 1.0, 'cutest': 1.0, 'my': 1.0, 'but': 1.0, 'just': 1.0, 'daughter': 1.0, 'had': 1.0, 'to': 1.0, 'loved': 1.0, 'this': 1.0, 'have': 1.0}
Word element => {'bag': 1.0, 'outside': 1.0, 'combinations': 1.0, 'color': 1.0, 'do': 1.0, 'i': 1.0, 'is': 1.0, 'a': 1.0, 'material': 2.0, 'could': 1.0, 'bags': 1.0, 'and': 1.0, 'like': 2.0, 'be': 1.0, 'ticker': 1.0, 'the': 4.0, 'more': 1.0, 'plastic': 1.0, 'but': 1.0}
Word element => {'have': 1.0, 'perfect': 1.0, 'snowpants': 1.0, 'pair': 1.0, 'd': 2.0, 'salesperson': 1.0, 'comment': 1.0, 'thin': 1.0, 'something': 1.0, 'lining': 1.0, 'silky': 1.0, 'looked': 1.0, 'you': 2.0, 's': 2.0, 'a': 3.0, 'and': 6.0, 'purchase': 1.0, 'of': 4.0, 'person': 2.0, 'the': 15.0, 'would': 3.0, 'orange': 1.0, 'lucky': 1.0, 'enough': 1.0, 'pad': 1.0, 'was': 5.0, 'doesn': 1.0, 'to': 4.0, 'as': 4.0, 'on': 1.0, 'looking': 1.0, 'bag': 4.0, 'before': 1.0, 'but': 1.0, 'planned': 1.0, 'like': 3.0, 'cheap': 2.0, 'i': 9.0, 'me': 1.0, 'looks': 1.0, 'been': 2.0, 'amazon': 1.0, 'find': 2.0, 'than': 1.0, 'because': 1.0, 'children': 1.0, 'for': 2.0, 'fabric': 5.0, 'stock': 1.0, 'made': 2.0, 'in': 4.0, 'brown': 1.0, 'grippy': 1.0, 'did': 1.0, 'very': 4.0, 'at': 1.0, 'is': 2.0, 'look': 2.0, 'not': 2.0, 'bold': 1.0, 'they': 1.0, 'picture': 1.0, 'with': 3.0, 'pockets': 1.0, 'this': 4.0, 'thicker': 1.0, 'toddler': 1.0, 'had': 1.0, 'type': 2.0, 't': 1.0, 'fit': 1.0, 'rest': 1.0, 'even': 1.0, 'instead': 1.0, 'working': 1.0, 'nice': 2.0, 'store': 1.0, 'seemed': 2.0, 'great': 1.0, 'wish': 1.0, 'expect': 1.0, 'links': 1.0, 'other': 1.0, 'really': 1.0, 'underneath': 1.0, 'design': 1.0, 'layout': 1.0, 'how': 1.0, 'disappointed': 2.0, 'stroller': 1.0, 'cream': 2.0, 'be': 2.0, 'attachments': 1.0, 'large': 1.0, 'do': 2.0, 'changing': 1.0, 'canvas': 1.0, 'everything': 1.0, 'huh': 1.0, 'newborn': 1.0, 'needed': 1.0, 'it': 10.0, 'thought': 1.0}
Word element => {'in': 1.0, 'made': 1.0, 'bags': 1.0, 'designer': 1.0, '200': 1.0, 'be': 1.0, 'price': 3.0, 'realistic': 1.0, 'high': 2.0, 'have': 1.0, 'those': 1.0, 'bottles': 1.0, 'keys': 1.0, 'want': 1.0, 'everything': 1.0, 'alternative': 1.0, 'pockets': 1.0, 'got': 1.0, 'do': 1.0, 'end': 2.0, 'its': 1.0, 'case': 1.0, 'that': 2.0, 'nursing': 1.0, 'especially': 1.0, 'durable': 1.0, 'wants': 1.0, 'still': 1.0, 'and': 1.0, 'cream': 1.0, 'higher': 1.0, 'covers': 1.0, 'it': 2.0, 'more': 1.0, 'is': 4.0, 'many': 1.0, 'course': 1.0, 'spend': 1.0, 'until': 1.0, 'what': 1.0, 'purchased': 1.0, 'phone': 1.0, 'nordstrom': 1.0, 'use': 1.0, 'design': 1.0, 'saw': 1.0, 'bag': 3.0, 'the': 8.0, 'diaper': 1.0, 'would': 1.0, 'hesitant': 1.0, 'are': 1.0, 'buy': 1.0, 'etc': 1.0, 'i': 6.0, 'to': 4.0, 'was': 1.0, 'kind': 1.0, 'get': 1.0, 'poor': 1.0, 'reviews': 1.0, 'they': 2.0, 'like': 2.0, 'reading': 1.0, 'of': 4.0, 'about': 1.0, 'workmanship': 2.0, 'someone': 1.0, 'cell': 1.0, 'you': 1.0, 'who': 1.0, 'at': 1.0, 'after': 1.0, 'materials': 3.0, 'literally': 1.0, 'wish': 1.0, 'perfect': 1.0, 'one': 1.0, 'cheap': 1.0, 'for': 4.0, 'fine': 1.0, 'links': 1.0, 'quality': 1.0, 'loved': 1.0, '70': 1.0, 'money': 1.0, 'but': 1.0, 'aren': 1.0, 'a': 3.0, 't': 1.0, 'going': 1.0, 'coach': 1.0}
Word element => {'bag': 1.0, 'this': 1.0, 'recommend': 1.0, 'some': 1.0, 'then': 1.0, 'great': 1.0, 'highly': 1.0, 'need': 1.0, 'and': 2.0, 'quality': 1.0, 'very': 1.0, 'i': 2.0, 'the': 1.0, 'is': 1.0, 'everything': 1.0, 'style': 1.0, 'cute': 1.0, 'fits': 1.0}
Word element => {'again': 1.0, 'buy': 1.0, 'staining': 1.0, 'tear': 1.0, 'god': 1.0, 'wet': 1.0, 'or': 1.0, 'careful': 1.0, 'extra': 1.0, 'out': 1.0, 'often': 1.0, 'washable': 1.0, 'machine': 1.0, 'probably': 1.0, 'your': 1.0, 'feel': 1.0, 'things': 1.0, 'brushing': 1.0, 'detract': 1.0, 'does': 1.0, 'think': 1.0, 'skip': 1.0, 'portion': 1.0, 'though': 1.0, 'part': 1.0, 'despite': 1.0, 'permanent': 1.0, 'left': 1.0, 'said': 1.0, 'zipper': 1.0, 'brown': 2.0, 'course': 1.0, 'section': 2.0, 'still': 1.0, 'their': 1.0, 'test': 1.0, 'was': 2.0, 'up': 1.0, 'water': 3.0, 'actually': 1.0, 'wasn': 1.0, 'don': 1.0, 'leaked': 1.0, 'bac': 1.0, 'fault': 1.0, 'proof': 1.0, 'anti': 1.0, 'get': 2.0, 'nowadays': 1.0, 'many': 1.0, 'canvas': 1.0, 'not': 4.0, 'extreme': 1.0, 'kind': 1.0, 'white': 1.0, 'cell': 2.0, 'making': 1.0, 'stuff': 1.0, 'on': 3.0, 'slick': 1.0, 'at': 1.0, 'is': 4.0, 'more': 2.0, 'changing': 1.0, 'practical': 2.0, 'bags': 1.0, 'diaper': 2.0, 'pocket': 3.0, 'pinning': 1.0, 'they': 2.0, 'dirty': 2.0, 'detracts': 1.0, 'access': 2.0, 'trendy': 1.0, 'against': 1.0, 'pretty': 2.0, 'to': 5.0, 'all': 3.0, 'outside': 1.0, 'easy': 2.0, 'them': 1.0, 'pattern': 1.0, 'and': 10.0, 'day': 1.0, 'pad': 1.0, 'with': 1.0, 'pockets': 2.0, 'lightweight': 1.0, 'so': 5.0, 'co': 1.0, 'ran': 1.0, 'of': 10.0, 'the': 27.0, 'hop': 1.0, 'without': 1.0, 'in': 3.0, 'stylish': 2.0, 'proofing': 1.0, 'superfluous': 1.0, 'diapering': 1.0, 'are': 4.0, 'pacifier': 2.0, 'love': 5.0, 'for': 3.0, 'bottle': 1.0, 'this': 2.0, 'perfect': 1.0, 'coated': 1.0, 'fast': 1.0, 'i': 13.0, 'from': 3.0, 'feels': 1.0, 'extremely': 1.0, 'being': 2.0, 'toothbrush': 1.0, 'hard': 1.0, 'over': 1.0, 'poopy': 1.0, 'me': 1.0, 'my': 3.0, 'when': 3.0, 'what': 2.0, 'wear': 1.0, 'it': 16.0, 'thought': 1.0, 'link': 1.0, 'beige': 1.0, 'gross': 1.0, 'best': 1.0, 'about': 1.0, 'no': 1.0, 'down': 1.0, 'inside': 1.0, 'done': 1.0, 'complaint': 1.0, 'a': 11.0, 't': 3.0, 's': 5.0, 'have': 2.0, 'roomy': 1.0, 'phone': 1.0, 'use': 1.0, 'got': 2.0, 'daughter': 1.0, 'doesn': 1.0, 'stain': 3.0, 'go': 2.0, 'opted': 1.0, 'zippers': 1.0, 'child': 1.0, 'digging': 1.0, 'only': 1.0, 'coloring': 1.0, 'also': 1.0, 'empty': 1.0, 'contrast': 1.0, 'corners': 1.0, 'but': 2.0, 'ordered': 1.0, 'orange': 4.0, 'would': 2.0, 'forbid': 1.0, 'granted': 1.0, 'cream': 2.0, 'be': 1.0, 'than': 1.0, 'easily': 1.0, 'that': 7.0, 'because': 1.0, 'unique': 1.0, 'dark': 1.0, 'looking': 3.0, 'bag': 7.0, 'wiggling': 1.0, 'light': 1.0, 'gets': 2.0, 'really': 1.0, 'material': 2.0, 'none': 1.0, 'nylon': 1.0}
Word element => {'highly': 1.0, 'down': 1.0, 'weigh': 1.0, 'would': 1.0, 'larger': 1.0, 'were': 1.0, 'in': 1.0, 'is': 1.0, 'more': 1.0, 'always': 1.0, 'wear': 1.0, 'if': 1.0, 'want': 2.0, 'how': 1.0, 'depending': 1.0, 'and': 1.0, 'handy': 1.0, 'incredibly': 1.0, 'also': 1.0, 'strap': 1.0, 'adjustable': 1.0, 'out': 1.0, 'sure': 1.0, 'my': 1.0, 'me': 2.0, 'purse': 1.0, 'gotten': 1.0, 'size': 1.0, 'nothing': 1.0, 'probably': 1.0, 'up': 1.0, 'over': 1.0, 'it': 7.0, 'with': 2.0, 'perfect': 1.0, 'allows': 1.0, 'this': 2.0, 'taken': 1.0, 'take': 1.0, 'quite': 1.0, 'room': 1.0, 'compliments': 1.0, 'a': 2.0, 'recommended': 1.0, 'has': 1.0, 'well': 1.0, 'since': 1.0, 'front': 1.0, 'because': 2.0, 'just': 1.0, 'few': 1.0, 'now': 1.0, 'any': 1.0, 'as': 1.0, 'to': 4.0, 'falls': 1.0, 'have': 3.0, 'able': 1.0, 'hang': 1.0, 'one': 1.0, 'for': 1.0, 'love': 1.0, 'of': 2.0, 'the': 5.0, 'am': 1.0, 'different': 1.0, 'compartments': 1.0, 'or': 1.0, 'everywhere': 1.0, 'bottles': 1.0, 'pockets': 1.0, 'diapers': 1.0, 'but': 1.0, 'change': 2.0, 'clothes': 1.0, 'bag': 3.0, 'toys': 1.0, 'junk': 1.0, 'i': 8.0, 'become': 1.0, 'etc': 1.0, 'zippers': 1.0, 'on': 2.0, 'make': 1.0}
Word element => {'well': 1.0, 'use': 1.0, 'compliments': 1.0, 'lots': 1.0, 'gets': 1.0, 'purpose': 1.0, 'sense': 1.0, 'non': 1.0, 'makes': 1.0, 'waterproof': 1.0, 'interior': 1.0, 'diaper': 2.0, 'the': 6.0, 'colors': 1.0, 'i': 2.0, 'and': 3.0, 'you': 1.0, 'stylish': 1.0, 'more': 3.0, 'is': 1.0, 'a': 5.0, 'for': 4.0, 'yet': 1.0, 'as': 2.0, 'all': 1.0, 'exterior': 1.0, 'need': 1.0, 'bag': 3.0, 'it': 2.0, 'are': 1.0, 'great': 1.0, 'big': 1.0, 'enough': 1.0, 'lot': 1.0, 'my': 1.0, 'surprise': 1.0, 'was': 1.0, 'only': 1.0, 'its': 3.0, 'material': 3.0, 'be': 1.0, 'this': 1.0, 'based': 1.0, 'of': 2.0, 'stuff': 1.0, 'on': 1.0, 'pockets': 1.0, 'picture': 1.0, 'thought': 1.0, 'something': 1.0, 'would': 1.0, 'which': 1.0, 'hold': 1.0, 'like': 2.0, 'canvas': 1.0, 'baby': 1.0, 'actuality': 1.0, 'can': 1.0, 'but': 1.0, 'in': 1.0, 'plastic': 1.0}
Word element => {'of': 1.0, 'average': 1.0, 'months': 1.0, 'fabric': 1.0, 'from': 1.0, 'away': 1.0, 'ripped': 1.0, 'i': 1.0, 'to': 1.0, 'liked': 1.0, 'low': 1.0, 'after': 1.0, 'part': 1.0, 'this': 1.0, 'bag': 1.0, 'zipper': 1.0, 'ten': 1.0, 'the': 3.0, 'for': 1.0, 'most': 1.0, 'use': 1.0, 'but': 1.0, 'just': 1.0}
Word element => {'carrying': 1.0, 'since': 1.0, 'question': 1.0, 'it': 1.0, 'asked': 1.0, 'a': 1.0, 'that': 2.0, 'is': 1.0, 'started': 1.0, 'my': 1.0, 'the': 1.0, 'bag': 1.0, 'how': 1.0, 'looking': 1.0, 'be': 1.0, 'daughter': 1.0, 'most': 1.0, 'could': 1.0, 'diaper': 1.0, 'awesome': 1.0}
Word element => {'front': 1.0, 'in': 1.0, 'cell': 1.0, 'ziplock': 1.0, 'basically': 1.0, 'sized': 1.0, 'sleeper': 1.0, 'wipes': 1.0, 'diapers': 1.0, '5': 1.0, 'before': 1.0, 'need': 1.0, 'everything': 2.0, 'hop': 2.0, 'if': 1.0, 'usual': 1.0, 'to': 3.0, 'the': 14.0, 'of': 2.0, 'pockets': 1.0, 'with': 2.0, 'placement': 1.0, 'it': 3.0, 'felt': 1.0, 'fit': 3.0, 'fabric': 1.0, 'for': 1.0, 'inner': 1.0, 'my': 2.0, 'cream': 1.0, 'make': 1.0, 'dr': 1.0, 'wanted': 1.0, 'portable': 1.0, 'would': 1.0, 'oz': 1.0, 'lining': 1.0, 'changing': 1.0, 'a': 8.0, 'can': 1.0, 'but': 1.0, 'contents': 3.0, 'keys': 1.0, 'skip': 2.0, 'sandwich': 1.0, 'this': 2.0, 'bottle': 2.0, 'and': 5.0, 'purse': 3.0, 'i': 7.0, '4': 1.0, 'just': 1.0, 'sanitizer': 1.0, 'easy': 2.0, 'also': 2.0, 'compact': 1.0, 'sunglasses': 1.0, 'phone': 2.0, 'that': 1.0, 'breast': 1.0, 'bought': 1.0, 'one': 1.0, 'pocket': 1.0, 'footed': 1.0, 'versa': 2.0, 'all': 1.0, 'combo': 1.0, 'wallet': 1.0, 'pump': 1.0, 'lotion': 1.0, 'brown': 1.0, 'something': 1.0, 'hand': 2.0, 'nursing': 1.0, 'love': 1.0, 'bottom': 1.0, 'cover': 1.0, 'pad': 1.0, 'life': 1.0, 'medela': 1.0, 'accessible': 1.0, 'collection': 1.0, 'came': 1.0, 'great': 1.0, 'used': 1.0, 'duo': 2.0, 'diaper': 3.0, 'awkward': 1.0, 'was': 2.0, 'disassembled': 1.0, 'carry': 1.0, 'had': 1.0, 'dump': 1.0, 'out': 1.0, 'bag': 4.0, 'looking': 1.0, 'saver': 1.0, 'blue': 1.0, 'is': 2.0, 'at': 1.0, 'makes': 2.0, 'finding': 1.0, 'things': 1.0}
Word element => {'storing': 1.0, 'for': 1.0, 'of': 1.0, 'all': 1.0, 'at': 1.0, 'unzipped': 1.0, 'keep': 1.0, 'material': 1.0, 'usually': 1.0, 'pockets': 1.0, 'i': 1.0, 'and': 2.0, 'lots': 1.0, 'any': 1.0, 'like': 1.0, 'bag': 3.0, 'it': 1.0, 'this': 1.0, 'definitely': 1.0, 'times': 1.0, 'who': 1.0, 'fantastic': 1.0, 'recommend': 1.0, 'moms': 1.0, 'would': 1.0, 'to': 1.0, 'look': 1.0, 'zipper': 1.0, 'doesn': 1.0, 'extension': 1.0, 'in': 1.0, 'a': 2.0, 'middle': 1.0, 'that': 1.0, 'great': 1.0, 't': 1.0, 'diaper': 2.0, 'the': 2.0, 'stuff': 1.0, 'want': 1.0, 'is': 1.0}
Word element => {'get': 1.0, 'plus': 1.0, 'great': 1.0, 'a': 2.0, 'easily': 1.0, 'of': 1.0, 'along': 1.0, 'designing': 1.0, 'its': 1.0, 'attaching': 1.0, 'to': 2.0, 'all': 1.0, 'small': 1.0, 'have': 1.0, 'further': 1.0, 'safe': 1.0, 'no': 1.0, 'oversized': 1.0, 'sturdy': 1.0, 'with': 1.0, 'it': 2.0, 'own': 1.0, 'the': 4.0, 'stroller': 1.0, 'diaper': 1.0, 'stylish': 1.0, 'feature': 1.0, 'i': 2.0, 'buy': 1.0, 'pockets': 1.0, 'bag': 3.0, 'full': 1.0, 'this': 2.0, 'dont': 1.0, 'functional': 2.0, 'wish': 1.0, 'comes': 1.0, 'is': 2.0, 'say': 1.0, 'had': 2.0, 'thought': 1.0, 'are': 1.0, 'just': 1.0, 'not': 2.0, 'look': 1.0, 'right': 1.0, 'size': 1.0, 'seperate': 1.0, 'too': 2.0, 'and': 2.0, 'cant': 1.0, 'pad': 1.0, 'enough': 1.0, 'but': 1.0, 'put': 1.0, 'they': 1.0, 'so': 2.0, 'time': 1.0, 'definately': 1.0, 'changing': 1.0, 'that': 1.0, 'into': 1.0}
Word element => {'anyone': 1.0, 'would': 1.0, 'good': 1.0, 'definitely': 1.0, 'favorite': 1.0, 'purchase': 1.0, 'my': 1.0, 'the': 4.0, 'diaper': 1.0, 'great': 1.0, 'mother': 1.0, 'stylish': 1.0, 'functinal': 1.0, 't': 1.0, 'a': 6.0, 'appearance': 1.0, 'purse': 1.0, 'have': 2.0, 'it': 3.0, 'bag': 6.0, 'kind': 1.0, 'is': 6.0, 'recommend': 1.0, 'doesn': 1.0, 'an': 1.0, 'year': 1.0, 'awesome': 1.0, 'pockets': 1.0, 'old': 1.0, 'absolutely': 1.0, 'snob': 1.0, 'of': 3.0, 'are': 1.0, 'probably': 1.0, 'size': 1.0, 'four': 1.0, 'can': 1.0, 'this': 4.0, 'perfect': 1.0, 'newborn': 1.0, 'needs': 1.0, 'in': 1.0, 'love': 1.0, 'fit': 1.0, 'adjusted': 1.0, 'and': 8.0, 'across': 1.0, 'everything': 1.0, 'feature': 1.0, 'i': 2.0, 'two': 1.0, 'quickly': 1.0, 'am': 1.0, 'easily': 1.0, 'to': 2.0, 'body': 1.0, 'which': 1.0}
Word element => {'havn': 1.0, 'far': 1.0, 'so': 1.0, 'and': 1.0, 'made': 1.0, 'seems': 1.0, 'any': 1.0, 'colors': 1.0, 'like': 1.0, 'bigger': 1.0, 'be': 2.0, 'issues': 1.0, 'bag': 2.0, 'other': 1.0, 'would': 1.0, 'had': 1.0, 'to': 1.0, 'was': 2.0, 'impression': 1.0, 'i': 2.0, 't': 1.0, 'the': 3.0, 'are': 1.0, 'under': 1.0, 'then': 2.0, 'good': 1.0, 'this': 1.0, 'it': 3.0, 'that': 1.0, 'really': 1.0, 'is': 1.0, 'well': 1.0, 'a': 1.0, 'pretty': 1.0, 'stroller': 1.0, 'straps': 1.0, 'nice': 1.0}
Word element => {'another': 1.0, 'buying': 1.0, 'prob': 1.0, 'on': 1.0, 'this': 1.0, 'bag': 2.0, 'people': 1.0, 'stylish': 1.0, 'think': 1.0, 'great': 1.0, 'love': 1.0, 'it': 2.0, 'roomy': 1.0, 's': 1.0, 'like': 1.0, 'designer': 1.0, 'stroller': 1.0, 'fits': 1.0}
Word element => {'price': 1.0, 'beat': 1.0, 'really': 1.0, 'pouches': 1.0, 'front': 1.0, 'zippered': 1.0, 'in': 1.0, 'zippers': 2.0, 'makes': 1.0, 'has': 1.0, 'was': 2.0, 'hard': 2.0, 'it': 2.0, 'annoying': 1.0, 'say': 2.0, 'i': 4.0, 'used': 1.0, 'without': 1.0, 'the': 4.0, 'diaper': 1.0, 'dash': 1.0, 'straw': 1.0, 'year': 1.0, 'very': 2.0, 'kind': 1.0, 'bag': 3.0, 'must': 1.0, 'have': 2.0, 'size': 1.0, 'skip': 1.0, 'and': 3.0, 'buy': 2.0, 'reluctant': 1.0, 'an': 1.0, 'can': 1.0, 'but': 2.0, 'versa': 1.0, 'lots': 1.0, 't': 1.0, 'a': 3.0, 's': 1.0, 'stylish': 1.0, 'you': 2.0, 'great': 1.0, 'nice': 2.0, 'good': 1.0, 'of': 2.0, 'who': 1.0, 'space': 1.0, 'sippy': 1.0, 'still': 1.0, 'for': 1.0, 'fit': 1.0, 'to': 3.0, 'cups': 1.0, 'if': 1.0, 'something': 1.0}
Word element => {'like': 1.0, 'diaper': 1.0, 't': 2.0, 'bag': 2.0, 'haven': 1.0, 'i': 2.0, 'adorable': 1.0, 'a': 2.0, 'use': 1.0, 'doesn': 1.0, 'but': 1.0, 'this': 1.0, 'it': 3.0, 'chance': 1.0, 'love': 1.0, 'yet': 1.0, 'is': 1.0, 'looks': 1.0, 'really': 1.0, 'practical': 1.0, 'gotten': 1.0, 'and': 1.0, 'that': 1.0, 'to': 1.0, 'look': 1.0}
Word element => {'bought': 1.0, 'lowest': 1.0, '37': 2.0, 'around': 1.0, 'usually': 1.0, 'days': 1.0, 'couple': 1.0, 'changed': 1.0, 'price': 1.0, 'list': 1.0, 'wish': 1.0, 'ps': 1.0, 'gold': 1.0, 'like': 1.0, 'd': 1.0, 'never': 1.0, 'interior': 1.0, 'but': 1.0, 'work': 1.0, 'added': 1.0, 'a': 3.0, 's': 3.0, 'beating': 1.0, 'sweater': 1.0, 'kids': 1.0, 'this': 4.0, 'perfect': 1.0, 'petunia': 1.0, 'takes': 2.0, 'under': 1.0, 'winter': 1.0, 'fall': 1.0, 'my': 2.0, 'looks': 1.0, 'it': 8.0, 'wasted': 1.0, 'and': 10.0, 'looking': 1.0, 'using': 1.0, 'bag': 5.0, 'have': 2.0, 'boots': 1.0, 'am': 1.0, 'for': 2.0, 't': 1.0, 'fit': 1.0, 'three': 2.0, 'is': 1.0, 'at': 3.0, 'space': 1.0, 'amazon': 1.0, 'been': 1.0, 'months': 1.0, '4': 1.0, 'i': 6.0, 'beautiful': 1.0, 'accents': 1.0, 'option': 1.0, 'great': 3.0, 'of': 2.0, 'the': 10.0, 'hanging': 1.0, 'are': 2.0, 'trendy': 1.0, 'new': 1.0, 've': 1.0, 'feels': 1.0, 'outside': 1.0, 'to': 3.0, 'with': 2.0, 'pockets': 1.0, 'iphone': 1.0, 'even': 1.0, 'an': 1.0, 'perfectly': 1.0, 'much': 1.0, 'still': 1.0, 'every': 2.0, 'love': 1.0, 'yet': 1.0, 'haven': 1.0, 'extension': 1.0, 'rat': 1.0, 'needed': 1.0, 'use': 1.0, 'had': 1.0, 'pickle': 1.0, 'bottoms': 1.0, 'leggings': 1.0, 'were': 1.0, 'pack': 1.0, 'better': 1.0, 'ppb': 1.0, 'bulky': 1.0, 'settled': 1.0, 'five': 1.0, 'versa': 1.0, 'advantage': 1.0, 'inch': 1.0, 'teal': 1.0, 'cart': 1.0, 'makes': 1.0, 'know': 1.0, 'easy': 1.0, 'staple': 1.0, 'find': 1.0, 'you': 1.0, 'things': 1.0, 'clips': 1.0, 'noticed': 1.0, 'on': 1.0, 'stroller': 1.0, 'shopping': 1.0}
Word element => {'make': 1.0, 'expansion': 1.0, 'zipper': 1.0, 'bigger': 1.0, 'bottles': 1.0, 'and': 2.0, 'bags': 1.0, 'it': 1.0, 'this': 1.0, 'is': 1.0, 'on': 1.0, 'to': 1.0, 'had': 1.0, 'of': 1.0, 'tons': 1.0, 'love': 1.0, 'one': 1.0, 'pockets': 1.0, 'i': 2.0, 've': 1.0, 'by': 1.0, 'favorite': 1.0, 'hold': 1.0, 'far': 1.0, 'my': 1.0, 'great': 1.0, 'diaper': 1.0, 'the': 3.0, 'sides': 1.0, 'dr': 1.0, 'brown': 1.0, 's': 1.0}
Word element => {'crossbody': 1.0, 'his': 1.0, 'too': 1.0, 'and': 2.0, 'less': 1.0, 'is': 1.0, '2yr': 1.0, 'doesn': 1.0, 'cost': 1.0, 'did': 1.0, 'looks': 1.0, 'it': 4.0, 'this': 2.0, 'i': 4.0, 'old': 1.0, 'be': 1.0, 'putting': 1.0, 'lots': 1.0, 'bought': 1.0, 'than': 1.0, 'because': 1.0, 'not': 1.0, 'like': 2.0, 'look': 1.0, 'husband': 1.0, 'diaper': 2.0, 'a': 2.0, 't': 1.0, 'that': 2.0, 'of': 1.0, 'hundreds': 1.0, 'room': 1.0, 'you': 1.0, 'shoulder': 1.0, '80': 1.0, 'but': 1.0, 'can': 3.0, 'expand': 1.0, 'if': 1.0, 'everything': 1.0, 'needed': 1.0, 'love': 1.0, 'for': 1.0, 'fit': 1.0, 'bag': 4.0, 'wanted': 1.0, 'need': 1.0, 'my': 2.0, 'newborn': 1.0, 'also': 1.0, 'mind': 1.0, 'over': 1.0}
Word element => {'just': 1.0, 'happy': 1.0, 'get': 1.0, 'card': 1.0, 'percentage': 1.0, 'they': 1.0, 'service': 2.0, 'customer': 1.0, 'good': 1.0, 'has': 1.0, 'amazon': 1.0, 'with': 2.0, 'credited': 1.0, 'however': 1.0, 'come': 1.0, 'is': 1.0, 'pad': 2.0, 'that': 1.0, 'changing': 2.0, 'carrying': 1.0, 'not': 4.0, 'bag': 3.0, 'pockets': 2.0, 'i': 6.0, 'to': 3.0, 'as': 2.0, 'ripped': 1.0, 'very': 2.0, 'amount': 1.0, 'after': 1.0, 'so': 2.0, 'would': 1.0, 'hold': 1.0, 'times': 1.0, 'one': 1.0, 'it': 5.0, 'certain': 1.0, 'much': 1.0, 'only': 2.0, 'hard': 1.0, 'the': 10.0, 'diaper': 1.0, 'look': 1.0, 'was': 5.0, 'of': 4.0, 'did': 2.0, 'loved': 1.0, 'inside': 1.0, 'but': 1.0, 'week': 1.0, 'back': 2.0, 'had': 1.0, 'thought': 1.0, 'a': 3.0, 'or': 1.0, 'on': 1.0, 'couple': 1.0, 'another': 1.0, 'purchase': 1.0, 'my': 3.0, 'baby': 1.0, 'still': 1.0, 'product': 1.0, 'supposed': 1.0, 'actually': 1.0, 'perfect': 1.0, 'this': 1.0, 'full': 1.0, 'used': 1.0, 'small': 1.0, 'have': 1.0, 'and': 2.0, 'too': 1.0, 'missing': 1.0, 'also': 1.0}
Word element => {'to': 1.0, 'that': 1.0, 'disappointed': 1.0, 'money': 1.0, 'apart': 1.0, 'such': 1.0, 've': 1.0, 'since': 1.0, 'unhappy': 1.0, 'little': 1.0, 'very': 1.0, 'd': 1.0, 'm': 2.0, 'of': 1.0, 'lysol': 1.0, 'another': 1.0, 'purchase': 1.0, 'cream': 1.0, 'diaper': 2.0, 'before': 1.0, 'compliments': 1.0, 'and': 3.0, 'spend': 1.0, '1': 1.0, 'couple': 1.0, 'the': 3.0, 'however': 1.0, 'on': 2.0, 'over': 2.0, 'diapers': 1.0, 'got': 1.0, 'loved': 1.0, 'basis': 1.0, 'spray': 1.0, 'wallet': 1.0, 'i': 9.0, 'amount': 1.0, 'yesterday': 1.0, 'water': 1.0, 'product': 1.0, 'for': 2.0, 'just': 1.0, 'this': 3.0, 'with': 1.0, 'higher': 1.0, 'fell': 2.0, 'it': 3.0, 'month': 1.0, 'need': 1.0, 'short': 1.0, 'toys': 1.0, 'bag': 4.0, 'came': 1.0, 'off': 1.0, 'cover': 1.0, 'get': 1.0, 'left': 1.0, 'small': 1.0, 'zipper': 1.0, 'have': 1.0, 'nursing': 1.0, 'strap': 1.0, 'more': 1.0, 'say': 1.0, 'is': 1.0, 'completely': 2.0, '6': 1.0, 'daily': 1.0, 'unstitched': 1.0, 'carry': 1.0, 'quality': 1.0, 'sippy': 1.0, 'never': 1.0, 'fill': 1.0, 'a': 4.0, 'had': 2.0, 'what': 1.0, 'wipes': 1.0, 'time': 1.0, 'bottle': 1.0, 'cup': 1.0}
Word element => {'love': 1.0, 'one': 1.0, 'trick': 1.0, 'big': 1.0, 'overly': 1.0, 'could': 1.0, 'wasn': 1.0, 'sophisticated': 1.0, 'stay': 1.0, 'nursery': 1.0, 'of': 1.0, 'my': 1.0, 'color': 1.0, 'bag': 2.0, 'i': 2.0, 'in': 2.0, 'which': 1.0, 'didn': 1.0, 'even': 2.0, 'but': 1.0, 'inside': 1.0, 'and': 1.0, 'organized': 1.0, 'me': 1.0, 'person': 1.0, 'did': 1.0, 'better': 1.0, 'is': 1.0, 'teal': 1.0, 'wanted': 1.0, 'was': 1.0, 't': 2.0, 'the': 3.0, 'more': 1.0, 'this': 2.0, 'it': 2.0, 'excited': 1.0, 'a': 1.0, 'since': 1.0, 'realize': 1.0, 'that': 2.0, 's': 1.0}
Word element => {'in': 1.0, 'if': 1.0, '5': 1.0, 'to': 2.0, 'been': 2.0, 'would': 3.0, 'it': 1.0, 'nice': 1.0, 'return': 1.0, 'black': 1.0, 'star': 1.0, 'inconvience': 1.0, 'however': 1.0, 'shipping': 1.0, 'fast': 1.0, 'red': 1.0, 'the': 3.0, 'diaper': 2.0, 'daughter': 1.0, 'ordered': 3.0, 'i': 4.0, 'get': 1.0, 'cream': 2.0, 'and': 4.0, 'bag': 2.0, 'my': 1.0, 'color': 2.0, 'an': 1.0, 'quality': 1.0, 'blue': 1.0, 'received': 2.0, 'brown': 1.0, 'what': 1.0, 'luckily': 1.0, 'have': 3.0, 'likes': 1.0, 'otherwise': 1.0}
Word element => {'awesome': 1.0, 'looks': 1.0, 'be': 1.0, 'would': 1.0, 'it': 2.0, 'love': 1.0, 'a': 1.0, 'this': 1.0, 'bag': 1.0, 'larger': 1.0, 'very': 1.0, 'i': 1.0, 'spacious': 1.0, 'little': 1.0, 'but': 1.0, 'thought': 1.0, 'than': 1.0}
Word element => {'heartbeat': 1.0, 'buy': 1.0, 'like': 1.0, 'diaper': 1.0, 'this': 1.0, 'bag': 2.0, 'decide': 1.0, 'being': 1.0, 'is': 1.0, 'it': 2.0, 'looks': 1.0, 'stuff': 1.0, 'on': 1.0, 'long': 1.0, 'one': 1.0, 'junk': 1.0, 'i': 2.0, 'real': 1.0, 'took': 1.0, 'pockets': 1.0, 'very': 1.0, 'best': 1.0, 'me': 1.0, 'and': 2.0, 'purses': 1.0, 'of': 2.0, 'time': 1.0, 'so': 1.0, 'has': 1.0, 'roomy': 1.0, 'would': 1.0, 'super': 1.0, 'purse': 1.0, 'bulky': 1.0, 'about': 1.0, 'a': 5.0, 'the': 1.0, 'without': 1.0, 'enough': 1.0, 'to': 1.0, 'all': 2.0, 'my': 2.0, 'keep': 1.0, 'lot': 1.0, 'in': 2.0, 'fabric': 1.0, 'wipes': 1.0, 'clean': 1.0, 'again': 1.0, 'am': 1.0, 'easily': 1.0, 'for': 1.0, 'picky': 1.0, 'actually': 1.0}
Word element => {'compliments': 1.0, 'of': 1.0, 'lots': 1.0, 've': 1.0, 'zippers': 1.0, 'has': 1.0, 'it': 2.0, 'stylish': 1.0, 'you': 1.0, 'bag': 1.0, 'on': 1.0, 'boatload': 1.0, 'which': 1.0, 'designer': 1.0, 'gotten': 1.0, 'and': 3.0, 'can': 1.0, 'looking': 1.0, 'turq': 1.0, 'bags': 1.0, 'cute': 2.0, 'at': 1.0, 'i': 3.0, 'is': 1.0, 'lining': 1.0, 'really': 3.0, 'gold': 1.0, 'couldnt': 1.0, 'practical': 1.0, 'bring': 1.0, 'that': 1.0, 'were': 1.0, 'was': 1.0, 'to': 1.0, 't': 1.0, 'diaper': 2.0, 'more': 1.0, 'expensive': 1.0, 'spend': 1.0, 'but': 2.0, 'much': 1.0, 'myself': 1.0, 'see': 1.0, 'a': 2.0}
Word element => {'be': 1.0, 's': 1.0, 'to': 2.0, 'tacky': 1.0, 'fabric': 1.0, 'possibly': 1.0, 'bag': 1.0, 'strike': 1.0, 'enable': 1.0, 'utilitarian': 1.0, 'but': 1.0, 'necessary': 1.0, 'probably': 1.0, 'purse': 1.0, 'me': 1.0, 'much': 1.0, 'saying': 1.0, 'cleaned': 1.0, 'bags': 1.0, 'as': 1.0, 'easily': 1.0, 'could': 1.0, 'like': 1.0, 'it': 1.0, 'this': 2.0, 'that': 2.0, 'cheesy': 1.0, 'not': 1.0, 'while': 1.0, 'babyish': 1.0, 'most': 2.0, 'overly': 1.0, 'is': 2.0, 'looks': 1.0, 'or': 1.0, 'diaper': 2.0, 'the': 2.0, 'a': 2.0, 'classic': 1.0}
Word element => {'last': 1.0, 'to': 1.0, 'going': 1.0, 'is': 1.0, 'this': 1.0, 'that': 1.0, 'pockets': 1.0, 'of': 1.0, 'good': 1.0, 'bag': 2.0, 'lots': 1.0, 'feel': 1.0, 'a': 1.0, 'taking': 1.0, 'without': 1.0, 'can': 1.0, 'right': 1.0, 'and': 1.0, 'away': 2.0, 'big': 1.0, 'fashionable': 1.0, 'from': 1.0, 'such': 1.0, 'the': 2.0, 'room': 1.0, 'on': 1.0, 'inside': 1.0, 'also': 1.0, 'you': 1.0}
Word element => {'loved': 1.0, 'bag': 1.0, 'this': 1.0, 'it': 2.0, 'a': 2.0, 'recipient': 1.0, 'gift': 1.0, 'bought': 1.0, 'for': 1.0, 't': 1.0, 'diaper': 1.0, 'the': 1.0, 'as': 1.0, 'like': 2.0, 'your': 1.0, 'bad': 1.0, 'item': 1.0, 'average': 1.0, 'not': 1.0, 'guy': 1.0, 'look': 1.0, 'buying': 1.0, 'doesn': 1.0, 'an': 1.0}
Word element => {'again': 1.0, 'buy': 1.0, 'definitely': 1.0, 'though': 1.0, 'style': 1.0, 'had': 1.0, 'wish': 1.0, 'do': 1.0, 'little': 1.0, 'looked': 1.0, 'pattern': 1.0, 'months': 1.0, 'options': 2.0, 'only': 1.0, 've': 1.0, 'although': 1.0, 'seems': 1.0, 'messenger': 1.0, 'this': 2.0, 'unisex': 1.0, 'metallic': 1.0, 'purse': 1.0, 'bag': 4.0, 'would': 2.0, 'new': 1.0, 'wasn': 1.0, 'half': 1.0, 'big': 1.0, 'since': 1.0, '1': 1.0, 'great': 1.0, 'year': 1.0, 's': 2.0, 'basics': 1.0, 'it': 10.0, 'while': 1.0, 'sketch': 1.0, 'carry': 1.0, 'dude': 1.0, 't': 2.0, 'fit': 2.0, 'actually': 1.0, 'especially': 1.0, 'favorite': 1.0, 'went': 1.0, 'inside': 1.0, 'enough': 3.0, 'hold': 1.0, 'which': 1.0, 'like': 1.0, 'far': 1.0, 'trip': 1.0, 'and': 7.0, 'skip': 2.0, 'versa': 2.0, 'diamond': 1.0, 'there': 1.0, 'of': 1.0, 'the': 8.0, 'diaper': 3.0, 'additional': 1.0, 'really': 1.0, 'second': 1.0, 'is': 1.0, 'around': 1.0, 'i': 11.0, 'short': 1.0, 'etc': 1.0, '4': 1.0, 'used': 3.0, 'hop': 2.0, 'dash': 1.0, 'deluxe': 1.0, 'more': 2.0, 'husband': 1.0, 'purchased': 1.0, 'was': 2.0, 'flashy': 1.0, 'upgraded': 1.0, 'a': 8.0, 'small': 1.0, 'instead': 1.0, 'cloth': 5.0, 'contacted': 1.0, 'pockets': 1.0, 'wetbag': 1.0, 'for': 8.0, 'fabric': 2.0, 'but': 1.0, 'so': 1.0, 'can': 1.0, 'you': 1.0, 'when': 1.0, 'tearing': 1.0, 'because': 1.0, 'easily': 1.0, 'couldn': 1.0, 'need': 1.0, 'or': 2.0, 'front': 1.0, 'pocket': 1.0, 'sturdy': 1.0, 'they': 2.0, 'toys': 1.0, 'started': 1.0, 'were': 1.0, 'gave': 1.0, 'my': 3.0, 'me': 2.0, 'roomy': 1.0, 'credit': 1.0, 'toward': 1.0, 'wipes': 1.0, 'large': 1.0, 'to': 2.0, 'hoping': 1.0, 'in': 2.0, 'perfect': 1.0, '3': 2.0, 'stuff': 1.0, 'all': 2.0, 'other': 1.0, 'snaps': 1.0, 'feels': 1.0, 'diapers': 4.0, 'are': 1.0, 'cute': 1.0}
Word element => {'needs': 1.0, 'highly': 1.0, 'as': 1.0, 'fashionable': 1.0, 'use': 1.0, 'all': 1.0, 'and': 1.0, 'purse': 1.0, 'pockets': 1.0, 'i': 2.0, 'awesome': 1.0, 'for': 1.0, 'recommend': 1.0, 'has': 1.0, 'of': 1.0, 'is': 2.0, 'bag': 1.0, 'it': 4.0, 'this': 1.0, 'my': 1.0, 'too': 1.0, 'tons': 1.0, 'functional': 1.0, 'babys': 1.0}
Word element => {'also': 1.0, 'that': 1.0, 'awesome': 1.0, 'would': 1.0, 'future': 1.0, 'for': 2.0, 'be': 2.0, 'travel': 3.0, 'and': 2.0, 'diaper': 1.0, 'the': 1.0, '34': 2.0, 'a': 2.0, 'inside': 1.0, 'easy': 1.0, 'purpose': 1.0, 'was': 1.0, 'to': 4.0, 'intended': 1.0, 'use': 2.0, 'purchased': 1.0, 'bag': 3.0, 'pockets': 1.0, 'i': 2.0, 'etc': 1.0, 'both': 1.0, 'made': 1.0, 'out': 1.0, 'paperwork': 1.0, 'intend': 1.0, 'this': 1.0, 'it': 4.0, 'as': 1.0, 'very': 1.0, 'organize': 1.0, 'documents': 1.0}
Word element => {'kids': 1.0, 'two': 1.0, 'for': 1.0, 'free': 1.0, 'hands': 1.0, 'be': 1.0, 'can': 1.0, 'so': 1.0, 'inside': 1.0, 'of': 1.0, 'torso': 1.0, 'plenty': 1.0, 'a': 1.0, 'throw': 1.0, 'functional': 1.0, 'expectations': 1.0, 'like': 1.0, 'my': 3.0, 'and': 1.0, 'messenger': 1.0, 'room': 1.0, 'exceeded': 1.0, 'still': 1.0, 'to': 1.0, 'bag': 1.0, 'as': 1.0, 'fashionable': 1.0, 'over': 1.0, 'i': 2.0, 'this': 1.0, 'it': 1.0}
Word element => {'compartment': 1.0, 'quickly': 1.0, 'became': 1.0, 'it': 2.0, 'own': 1.0, 'vera': 1.0, 'this': 1.0, 'but': 1.0, 'adorable': 1.0, 'bradley': 1.0, 'i': 5.0, 'chronic': 1.0, 'also': 1.0, 'black': 1.0, 'hole': 1.0, 'a': 2.0, 'the': 2.0, 'diaper': 1.0, 'my': 1.0, 'pull': 1.0, 'which': 1.0, 'last': 1.0, 'needed': 1.0, 'over': 1.0, 'am': 1.0, 'packer': 1.0, 'every': 1.0, 'pad': 1.0, 'bag': 2.0, 'was': 2.0, 'as': 1.0, 'to': 1.0, 'have': 1.0, 'everything': 1.0, 'out': 1.0, 'has': 1.0, 'would': 1.0, 'something': 1.0, 'changing': 1.0, 'that': 1.0, 'just': 1.0, 'its': 1.0, 'much': 2.0, 'and': 1.0, 'time': 1.0, 'organized': 1.0, 'more': 1.0, 'holds': 1.0, 'is': 1.0, 'love': 2.0}
Word element => {'twins': 1.0, 'is': 1.0, 'useful': 1.0, 'how': 1.0, 'like': 1.0, 'nice': 1.0, 'and': 1.0, 'purse': 1.0, 'with': 1.0, 'it': 3.0, 'using': 1.0, 'see': 1.0, 'a': 1.0, 'will': 1.0, 'doesn': 1.0, 'forward': 1.0, 'bag': 1.0, 't': 1.0, 'have': 2.0, 'to': 2.0, 'looking': 1.0, 'our': 1.0, 'that': 1.0, 's': 1.0, 'very': 1.0, 'why': 1.0, 'i': 1.0, 'bought': 1.0, 'lot': 1.0, 'of': 1.0, 'compartments': 1.0}
Word element => {'again': 1.0, 'wallet': 1.0, 'extra': 1.0, 'blanket': 1.0, 'a': 1.0, 'enough': 1.0, 'to': 2.0, 'had': 1.0, 'clothes': 1.0, 's': 1.0, 'you': 1.0, 'though': 1.0, 'for': 2.0, 'feed': 1.0, 'buy': 1.0, 'cloth': 1.0, 'i': 3.0, 'me': 3.0, 'good': 1.0, 'has': 1.0, 'carry': 3.0, 'roomy': 1.0, 'been': 1.0, 'breast': 1.0, 'bag': 1.0, 'diaper': 1.0, 't': 1.0, 'd': 1.0, 'so': 2.0, 'bottles': 2.0, 'don': 1.0, 'it': 1.0, 'this': 2.0, 'with': 1.0, 'not': 1.0, 'would': 1.0, 'diapers': 1.0, 'work': 1.0, 'sure': 1.0, 'how': 1.0, 'if': 1.0}
Word element => {'s': 1.0, 'keys': 1.0, 'pocket': 1.0, 'to': 1.0, 'stuff': 1.0, 'of': 1.0, 'so': 2.0, 'got': 2.0, 'and': 4.0, 'my': 1.0, 'ago': 1.0, 'put': 1.0, 'week': 1.0, 'carry': 1.0, 'two': 1.0, 'a': 4.0, 'have': 1.0, 'far': 1.0, 'just': 2.0, 'for': 1.0, 'love': 2.0, 'cards': 1.0, 'this': 1.0, 'it': 3.0, 'bag': 1.0, 'month': 1.0, 'phone': 2.0, 'kids': 1.0, 'great': 1.0, 'the': 2.0, '2': 1.0, 'year': 1.0, 'i': 5.0, 'old': 2.0, 'go': 1.0, '5': 1.0, 'in': 1.0, 've': 1.0, 'cell': 2.0, 'lot': 1.0}
Word element => {'pocket': 1.0, 'like': 1.0, 'the': 2.0, 'great': 1.0, 'diaper': 1.0, 'i': 2.0, 'pockets': 1.0, 'to': 1.0, 'look': 1.0, 'had': 1.0, 'this': 1.0, 'it': 3.0, 'bag': 2.0, 'light': 1.0, 'tons': 1.0, 'stuff': 1.0, 'is': 3.0, 'easy': 1.0, 'at': 1.0, 'lot': 1.0, 'stay': 1.0, 'of': 2.0, 'up': 1.0, 't': 1.0, 'a': 3.0, 'organized': 1.0, 'styling': 1.0, 'recommend': 1.0, 'doesn': 1.0, 'love': 1.0, 'for': 2.0, 'mine': 1.0, 'top': 1.0, 'fits': 1.0, 'my': 1.0, 'keys': 1.0, 'and': 4.0, 'too': 1.0, 'weight': 1.0, 'small': 1.0, 'zipper': 1.0, 'have': 1.0, 'almost': 1.0, 'year': 1.0, 'well': 1.0, 'has': 1.0, 'held': 1.0, 'highly': 1.0}
Word element => {'diaper': 1.0, 'look': 1.0, 'all': 1.0, 'size': 1.0, 'the': 1.0, 'that': 1.0, 'fantastic': 1.0, 'convenient': 1.0, 'like': 1.0, 'pockets': 1.0, 'love': 3.0, 'it': 1.0, 'a': 1.0, 'doesn': 1.0, 'bag': 1.0, 't': 1.0}
Word element => {'design': 1.0, 'appeals': 1.0, 'lots': 1.0, 'the': 2.0, 'is': 2.0, 'bag': 1.0, 'many': 1.0, 'and': 1.0, 'as': 2.0, 'described': 1.0, 'pockets': 1.0, 'it': 1.0, 'large': 1.0, 'really': 1.0, 'features': 1.0, 'of': 1.0, 'good': 1.0, 'has': 1.0}
Word element => {'up': 1.0, 'already': 1.0, 'kids': 1.0, 'two': 1.0, 'things': 1.0, 'my': 1.0, 'a': 2.0, 'not': 1.0, 'year': 1.0, 'best': 1.0, 'what': 1.0, 'bag': 1.0, 'it': 1.0, 'this': 2.0, 'between': 1.0, 'so': 1.0, '3years': 1.0, 'and': 2.0, 'me': 1.0, 'purse': 2.0, 'mine': 1.0, 'for': 1.0, 'love': 2.0, 'great': 1.0, 'mess': 1.0, 'diaper': 1.0, 'the': 1.0, 'many': 1.0, 'is': 2.0, 'totally': 1.0, 'paid': 1.0, 'pockets': 1.0, 'i': 4.0, 'complete': 1.0, 'in': 2.0, 've': 2.0, 'have': 1.0, 'able': 1.0, 'holding': 1.0, 'worth': 1.0, 'being': 1.0, 'had': 2.0, 'to': 1.0}
Word element => {'last': 1.0, 'months': 1.0, 'over': 1.0, 'often': 1.0, 'used': 1.0, 'haven': 1.0, 'too': 1.0, 'coming': 2.0, 'until': 1.0, 'bag': 1.0, 'because': 1.0, 'started': 1.0, 'are': 1.0, 't': 1.0, 'the': 3.0, 'diaper': 1.0, 'like': 1.0, 'and': 1.0, 'did': 1.0, 'really': 2.0, 'this': 1.0, 'it': 3.0, 'few': 1.0, 'shame': 1.0, 'pockets': 1.0, 'i': 2.0, 'apart': 2.0, 'inside': 1.0, 'outside': 1.0, 'at': 1.0, 'seams': 1.0, 's': 1.0, 'a': 1.0}
Word element => {'gets': 1.0, 'formula': 1.0, 'pouch': 1.0, 'a': 1.0, 'outfit': 1.0, 'extra': 1.0, 'bottles': 1.0, 'two': 1.0, 'bag': 1.0, 'bulky': 1.0, 'diaper': 1.0, 'look': 1.0, 'had': 2.0, 'does': 1.0, 'for': 4.0, 'one': 1.0, 'high': 2.0, 'good': 1.0, 'an': 1.0, 'but': 1.0, 'and': 3.0, 'me': 1.0, 'meds': 1.0, 'not': 1.0, 'three': 1.0, 'hopes': 2.0, 'functional': 1.0, 'i': 3.0, 'guess': 1.0, 'very': 2.0, 'from': 1.0, 'previous': 1.0, 'full': 1.0, 'reviews': 1.0, 'this': 2.0, 'it': 2.0, 'with': 1.0}
Word element => {'is': 1.0, 'but': 1.0, 'usable': 1.0, 'much': 1.0, 'space': 1.0, 'carry': 1.0, 'got': 1.0, 'petunia': 1.0, 'returned': 1.0, 'too': 1.0, 'ginormous': 1.0, 'just': 2.0, 'all': 1.0, 'have': 2.0, 'bag': 4.0, 'which': 1.0, 'seemed': 1.0, 'hopes': 1.0, 'for': 2.0, 'seems': 1.0, 'in': 1.0, 'diaper': 1.0, 'picklebottom': 1.0, 'this': 2.0, 'it': 3.0, 'smaller': 1.0, 'high': 1.0, 'i': 4.0, 'me': 1.0, 'and': 3.0, 'needed': 1.0, 'am': 1.0, 'a': 3.0, 'everything': 1.0, 'however': 1.0, 'as': 1.0, 'big': 1.0, 'very': 1.0, 'picky': 1.0, 'had': 1.0, 'to': 2.0, 'wanted': 1.0, 'was': 2.0}
Word element => {'is': 1.0, 'loves': 1.0, 'since': 1.0, 'that': 2.0, 'no': 1.0, 'forth': 1.0, 'back': 1.0, 'kept': 1.0, 'got': 1.0, 'wallet': 1.0, 'i': 1.0, 'keys': 1.0, 'you': 1.0, 'and': 5.0, 'purse': 1.0, 'issues': 1.0, 'bag': 2.0, 'she': 3.0, 'll': 1.0, 'tell': 1.0, 'we': 2.0, 'love': 1.0, 'loosing': 1.0, 'to': 1.0, 'both': 1.0, 'her': 1.0, 'it': 1.0, 'with': 1.0, 'this': 2.0, 'moved': 1.0, 'why': 1.0, 'as': 1.0, 'from': 1.0, 'great': 1.0, 'more': 1.0, 'diaper': 1.0}
Word element => {'don': 1.0, 'that': 1.0, 'diaper': 1.0, 'of': 1.0, 'to': 1.0, 'me': 1.0, 'less': 1.0, 'have': 1.0, 't': 1.0, 'bag': 1.0, 'frumpy': 1.0, 'style': 1.0, 'carrying': 1.0, 'alot': 1.0, 'opposed': 1.0, 'makes': 1.0, 'feel': 1.0, 'great': 1.0, 'it': 1.0, 'any': 1.0, 'bags': 1.0, 'as': 1.0}
Word element => {'clothes': 1.0, 'extra': 1.0, 'the': 1.0, 'my': 1.0, 'all': 1.0, 'love': 1.0, 'room': 1.0, 'this': 1.0, 'bag': 1.0, 'have': 2.0, 'potty': 1.0, 'newborns': 1.0, 'i': 2.0, '4': 1.0, 'trainer': 1.0, 'stuff': 1.0, 'kids': 1.0, 'enough': 1.0, 'and': 2.0, 'for': 2.0}
Word element => {'not': 1.0, 'style': 1.0, 'off': 1.0, 'ripping': 1.0, 'are': 1.0, 'stiches': 1.0, 'material': 1.0, 'of': 2.0, 'made': 1.0, 's': 1.0, 'over': 1.0, 'had': 1.0, 'very': 2.0, 'as': 1.0, 'year': 1.0, 'i': 1.0, 'love': 1.0, 'for': 1.0, 'one': 1.0, 'pocket': 1.0, 'is': 1.0, 'disappointed': 1.0, 'in': 1.0, 'apart': 1.0, 'falling': 1.0, 've': 1.0, 'bad': 1.0, 'thing': 1.0, 'it': 3.0, 'this': 1.0, 'well': 1.0, 'front': 1.0, 'a': 2.0, 'and': 3.0, 'but': 1.0, 'quality': 2.0, 'back': 1.0, 'zipper': 1.0, 'the': 7.0, 'small': 1.0, 'broke': 1.0}
Word element => {'is': 1.0, 'when': 1.0, 'bag': 1.0, 'a': 1.0, 'become': 1.0, 'baby': 1.0, 'will': 1.0, 'laptop': 1.0, 'well': 1.0, 'for': 1.0, 'made': 1.0, 'good': 1.0, 'of': 1.0, 'stashing': 1.0, 'grown': 1.0, 'stuff': 1.0, 'lots': 1.0, 'colors': 1.0, 'pockets': 1.0, 'and': 1.0}
Word element => {'recommend': 1.0, 'which': 1.0, 'straps': 1.0, 'stroller': 1.0, 'do': 1.0, 'sure': 1.0, 'heavy': 1.0, 'going': 1.0, 'lifted': 1.0, 'over': 1.0, 'told': 1.0, 'after': 1.0, 'yet': 1.0, 'probably': 1.0, 'could': 1.0, 'you': 2.0, 'changing': 1.0, 'back': 1.0, 'notepads': 1.0, 'pouches': 1.0, 'extra': 1.0, 'wipes': 1.0, 'four': 1.0, 'thinking': 1.0, 'etc': 2.0, 'clips': 1.0, 'he': 2.0, 'ties': 1.0, 'hair': 2.0, 'larger': 1.0, 'spoons': 1.0, 'lost': 1.0, 'want': 1.0, 'personal': 2.0, 'great': 1.0, 'if': 1.0, 'attach': 1.0, 'asked': 1.0, 'how': 4.0, 'hand': 2.0, 'something': 1.0, 'items': 2.0, 'on': 6.0, 'although': 1.0, 'long': 3.0, 'noticed': 1.0, 'husband': 1.0, 'versa': 2.0, 'skip': 1.0, 'zippered': 4.0, 'plus': 1.0, 'first': 2.0, 'am': 1.0, 'glad': 1.0, 'are': 2.0, 'room': 1.0, 'my': 5.0, 'looks': 1.0, 'worth': 1.0, 'trying': 1.0, 'few': 1.0, 'weekend': 1.0, 'roomy': 1.0, 'bottle': 1.0, 'were': 1.0, 'shaped': 1.0, 'at': 4.0, 'can': 1.0, 'is': 8.0, 'look': 1.0, 'decide': 1.0, 'hop': 1.0, 'the': 31.0, 'even': 1.0, 'of': 7.0, 'refrigerated': 1.0, 'i': 34.0, 't': 7.0, 'small': 2.0, 'there': 5.0, 'she': 1.0, 'baby': 2.0, 'be': 1.0, 'it': 26.0, 'much': 2.0, 'kids': 1.0, 'thin': 1.0, 'cell': 1.0, 'buying': 1.0, 'with': 5.0, 'pockets': 6.0, 'have': 1.0, 'staying': 1.0, 'your': 1.0, 'where': 1.0, 're': 1.0, 'phone': 2.0, 'love': 2.0, 'stick': 1.0, 'far': 1.0, 'bottom': 1.0, 'hurts': 1.0, 'for': 11.0, 'liked': 1.0, 'so': 4.0, 'lightweight': 2.0, 'walked': 1.0, 'holds': 3.0, 'wish': 1.0, 'mainly': 1.0, 'use': 4.0, 'diapers': 1.0, 'park': 1.0, 'but': 6.0, 'two': 4.0, 'mom': 1.0, 'her': 1.0, 'little': 3.0, 'had': 3.0, 'was': 9.0, 'a': 10.0, 'bag': 6.0, 'looking': 1.0, 'couple': 1.0, 'just': 1.0, 'and': 11.0, 'spent': 1.0, 'inside': 1.0, 'never': 1.0, 'shopping': 1.0, 'haven': 3.0, 'crayons': 1.0, 'hopefully': 1.0, 'this': 2.0, 'downside': 1.0, 'diaper': 3.0, 'up': 2.0, 'as': 2.0, 'less': 1.0, 'sippy': 1.0, 'digging': 1.0, 'ok': 1.0, 'break': 1.0, 'plain': 1.0, 'really': 3.0, 'second': 1.0, 'bought': 1.0, 'all': 1.0, 'saw': 1.0, 'way': 1.0, 'inner': 1.0, 'than': 2.0, 'weeks': 2.0, 'neutral': 2.0, 'been': 1.0, 'blue': 1.0, 'while': 1.0, 've': 2.0, 'down': 1.0, 'll': 1.0, 'to': 10.0, 'right': 1.0, 'since': 1.0, 'lastly': 1.0, 'things': 6.0, 'because': 1.0, 'deep': 1.0, 'me': 1.0, 'compartments': 2.0, 'that': 2.0, 'always': 1.0, 'bandaids': 1.0, 'felt': 1.0, 'put': 3.0, 'strap': 1.0, 'highly': 1.0, 'rough': 1.0, 'birth': 1.0, 'like': 3.0, 'wasn': 1.0, 'find': 1.0, 'very': 2.0, 'comfortable': 1.0, 'say': 1.0, 'when': 2.0, 'only': 2.0, 'then': 1.0, 'needed': 1.0, 'easier': 1.0, 'travel': 1.0, 'carried': 1.0, 'periods': 1.0, 'not': 1.0, 'different': 2.0, 'edges': 1.0, 'duo': 3.0, 'short': 1.0, 'gold': 2.0, 'accents': 1.0, 'pad': 1.0, 'color': 1.0, 'bright': 1.0, 'will': 1.0, 'lining': 1.0, 'more': 2.0, 's': 4.0, 'doesn': 1.0, 'm': 2.0, 'main': 1.0, 'in': 6.0, 'happy': 1.0, 'got': 1.0, 'one': 1.0, 'surprised': 2.0, 'gender': 1.0, 'they': 2.0, 'overall': 1.0, 'or': 1.0, 'handy': 1.0, 'also': 5.0, 'need': 2.0, 'food': 2.0, 'its': 1.0, 'plan': 1.0, 'still': 2.0, 'don': 2.0, 'now': 1.0, 'anymore': 1.0, 'carts': 1.0, 'those': 3.0, 'functionality': 1.0, 'interested': 1.0, 'get': 1.0, 'insulated': 1.0, 'cup': 1.0, 'fact': 2.0, 'front': 3.0, 'other': 4.0, 'wallet': 1.0, 'such': 1.0, 'homemade': 1.0, 'compartment': 1.0, 'child': 1.0, 'keys': 1.0, 'black': 1.0, 'chapstick': 1.0, 'sanitizer': 1.0, 'easy': 1.0, 'well': 1.0, 'access': 1.0, 'did': 1.0, 'time': 1.0, 'top': 1.0, 'pocket': 2.0, 'another': 2.0, 'open': 3.0, 'think': 1.0, 'supposed': 1.0, 'hold': 1.0}
Word element => {'leap': 1.0, 'big': 1.0, 'top': 1.0, 'from': 1.0, 'feminine': 1.0, 'more': 1.0, 'that': 1.0, 'mention': 1.0, 'should': 1.0, 'right': 1.0, '3': 1.0, 'people': 1.0, 'might': 2.0, 'cup': 1.0, 'sippy': 1.0, 'keep': 1.0, 'be': 2.0, 'previous': 1.0, 'got': 1.0, 'didn': 1.0, 'with': 1.0, 'pockets': 2.0, 'after': 2.0, 'making': 1.0, 'fell': 1.0, 'backpack': 1.0, 'material': 1.0, 'really': 1.0, 'cheapen': 1.0, 'don': 2.0, 'seem': 1.0, 'they': 1.0, 'bright': 1.0, 'some': 1.0, 'entirely': 1.0, 'are': 1.0, 'reviewers': 1.0, 'find': 1.0, 'accents': 2.0, 'gold': 2.0, 'day': 1.0, 'mentioned': 1.0, 'of': 3.0, 'the': 9.0, 't': 3.0, 'going': 2.0, 'a': 6.0, 's': 2.0, 'looking': 2.0, 'bag': 5.0, 'stars': 1.0, 'wanted': 1.0, 'my': 4.0, 'looks': 1.0, 'me': 3.0, 'not': 1.0, 'this': 3.0, 'perfect': 1.0, 'tacky': 1.0, 'wallet': 2.0, 'to': 10.0, 'diaper': 1.0, 'as': 2.0, 'other': 1.0, 'all': 1.0, 'very': 1.0, 'almost': 1.0, 'out': 2.0, 'hence': 1.0, 'i': 11.0, 'look': 2.0, 'is': 3.0, 'personal': 1.0, 'but': 4.0, 'or': 1.0, 'food': 1.0, 'love': 1.0, 'does': 1.0, 'tissues': 1.0, 'apart': 1.0, 'for': 6.0, '10': 1.0, 'it': 7.0, 'thought': 1.0, 'would': 2.0, 'too': 1.0, 'try': 1.0, 'its': 1.0, 'think': 3.0, 'pack': 1.0, 'despite': 1.0, 'was': 2.0, 'minutes': 1.0, 'trying': 1.0, 'two': 1.0, 'nice': 1.0, 'frustrated': 1.0, 'and': 3.0, 'trip': 1.0, 'like': 1.0, 'give': 1.0, 'there': 1.0, 'enough': 1.0, 'room': 1.0, 'able': 1.0, 'things': 1.0, 'phone': 1.0, 'front': 1.0, 'use': 1.0, 'chapstick': 1.0, 'baby': 1.0, 'them': 1.0, 'items': 2.0, 'also': 3.0, 'when': 1.0, 'zippered': 1.0, 'have': 2.0, 'in': 1.0, 'over': 1.0, 'work': 2.0, 'hard': 1.0, 'shiny': 1.0, 'outer': 1.0, 'handy': 1.0}
Word element => {'practical': 1.0, 'totally': 1.0, 'fan': 1.0, 'is': 1.0, 'plus': 1.0, 'big': 1.0, 'best': 1.0, 'love': 1.0, 'holds': 1.0, 'fits': 1.0, 'like': 1.0, 'bags': 1.0, 'around': 1.0, 'without': 1.0, 'looking': 1.0, 'plenty': 1.0, 'carrying': 1.0, 'style': 1.0, 'a': 1.0, 'and': 2.0, 'gigantic': 1.0, 'bag': 1.0, 'it': 1.0, 'this': 1.0, 'i': 1.0, 've': 1.0, 'had': 1.0, 'diaper': 1.0, 'several': 1.0, 'my': 1.0}
Word element => {'ll': 1.0, 'like': 1.0, 'convenient': 1.0, 'mind': 1.0, 's': 1.0, 't': 3.0, 'a': 2.0, 'because': 2.0, 'them': 1.0, 'wallet': 1.0, 'but': 3.0, 'aren': 1.0, 'shoulder': 1.0, 'put': 1.0, 'make': 2.0, 'on': 1.0, 'think': 1.0, 'secured': 1.0, 'smallest': 1.0, 'would': 2.0, 'lining': 1.0, 'keep': 1.0, 'support': 1.0, 'little': 1.0, 'waterproof': 1.0, 'easy': 1.0, 'sure': 1.0, 'even': 1.0, 'with': 2.0, 'pockets': 3.0, 'didn': 2.0, 'appreciated': 1.0, 'have': 2.0, 'all': 2.0, 'pretty': 1.0, 'to': 3.0, 'diaper': 1.0, 'as': 2.0, 'it': 8.0, 'my': 2.0, 'looks': 1.0, 'only': 1.0, 'its': 1.0, 'access': 1.0, 'outer': 2.0, 'bottom': 2.0, 'look': 1.0, 'at': 1.0, 'is': 1.0, 'around': 1.0, 'pros': 1.0, 'phone': 1.0, 'mom': 1.0, 'shape': 1.0, 'overall': 1.0, '4': 1.0, 'stuffcons': 1.0, 'some': 1.0, 'interior': 1.0, 'in': 2.0, 'm': 1.0, 'the': 6.0, 'cardboard': 2.0, 'without': 1.0, 'super': 1.0, 'same': 1.0, 'size': 1.0, 'not': 1.0, 'looking': 1.0, 'bag': 2.0, 'or': 1.0, 'need': 1.0, 'variation': 1.0, 'tip': 1.0, 'over': 1.0, 'throw': 1.0, 'let': 1.0, 'no': 3.0, 'real': 1.0, 'fabric': 1.0, 'for': 1.0, 'structure': 1.0, 'shipped': 1.0, 'and': 2.0, 'kept': 1.0, 'mine': 1.0, 'i': 7.0, 'feet': 1.0, 'stap': 1.0, 'heavier': 1.0, 'precarious': 1.0, 'cover': 1.0, 'good': 3.0, 'side': 1.0, 'which': 1.0, 'gets': 1.0, 'you': 1.0, 'really': 1.0, 'one': 1.0, 'disappointed': 1.0}
Word element => {'way': 1.0, 'forward': 1.0, 'carry': 1.0, 'no': 1.0, 'with': 1.0, 'move': 1.0, 'mama': 1.0, 'handsfree': 1.0, 'handles': 1.0, 'attach': 1.0, 'quality': 1.0, 'good': 1.0, 'purpose': 1.0, 'its': 1.0, 'fashion': 1.0, 'your': 2.0, 'on': 2.0, 'utilize': 1.0, 'style': 1.0, 'like': 1.0, 'i': 1.0, 'pockets': 1.0, 'in': 3.0, 'stroller': 1.0, 'diaper': 4.0, 'the': 4.0, 'say': 1.0, 'around': 1.0, 'is': 3.0, 'more': 1.0, 'would': 1.0, 'this': 1.0, 'shoulder': 1.0, 'can': 5.0, 'that': 3.0, 'thought': 1.0, 'what': 1.0, 'you': 6.0, 'stylish': 1.0, 'a': 6.0, 'be': 1.0, 'very': 2.0, 'chic': 1.0, 'spacious': 1.0, 'achieved': 1.0, 'carrying': 1.0, 'material': 1.0, 'every': 1.0, 'of': 1.0, 'inside': 1.0, 'have': 3.0, 'zipper': 1.0, 'out': 1.0, 'inch': 1.0, 'expandable': 1.0, 'useful': 1.0, 'if': 1.0, 'bag': 5.0, 'need': 1.0, 'as': 1.0, 'all': 2.0, 'to': 2.0, 'who': 1.0, 'space': 1.0, 'for': 2.0, 'yet': 1.0, 'large': 1.0, 'burden': 1.0, 'items': 1.0, 'and': 3.0, 'design': 1.0}
Word element => {'bottles': 1.0, 'need': 1.0, 'we': 1.0, 'enough': 1.0, 'pieces': 1.0, 'in': 1.0, 'fits': 1.0, 'for': 2.0, 'one': 1.0, 'really': 1.0, 'has': 2.0, 'plus': 1.0, 'of': 2.0, 'based': 1.0, 'my': 1.0, 'a': 1.0, 'outside': 1.0, 'replacement': 1.0, 'as': 1.0, 'bits': 1.0, 'and': 3.0, 'bag': 1.0, 'pockets': 2.0, 'old': 1.0, 'ordered': 1.0, 'on': 1.0, 'room': 1.0, 'reviews': 1.0, 'this': 1.0, 'it': 3.0, 'nicely': 1.0, 'great': 1.0, 's': 1.0, 'lots': 1.0, 'so': 1.0, 'everything': 2.0}
Word element => {'price': 1.0, 'especially': 1.0, 'recommending': 1.0, 'stop': 1.0, 'issue': 1.0, 'enough': 1.0, 'isn': 1.0, 'but': 1.0, 'shoulder': 1.0, 'affordable': 1.0, 'padding': 1.0, 'some': 1.0, 'used': 1.0, 'have': 1.0, 'would': 1.0, 'basic': 1.0, 'very': 1.0, 'on': 1.0, 'think': 2.0, 'drawback': 1.0, 'also': 1.0, 'strap': 1.0, 'are': 1.0, 'bottles': 1.0, 'for': 1.0, 'insulation': 1.0, 'excellent': 1.0, 'this': 2.0, 'i': 3.0, 'stroller': 1.0, 'diaper': 1.0, 'the': 5.0, '190': 1.0, 'an': 1.0, 'friend': 1.0, 'be': 2.0, 'one': 1.0, 'bought': 1.0, 't': 1.0, 'could': 1.0, 's': 3.0, 'a': 2.0, 'retail': 1.0, 'straps': 1.0, 'original': 1.0, 'so': 1.0, 'many': 1.0, 'bag': 3.0, 'ju': 4.0, 'registry': 1.0, 'well': 1.0, 'has': 1.0, 'though': 1.0, 'much': 1.0, 'which': 1.0, 'was': 1.0, 'now': 1.0, 'from': 1.0, 'part': 2.0, 'pockets': 1.0, 'even': 1.0, 'great': 3.0, 'drawbacks': 1.0, 'skip': 1.0, 'is': 2.0, 'around': 1.0, 'of': 3.0, 'use': 1.0, 'hop': 1.0, 'almost': 1.0, 'compliments': 1.0, 'that': 1.0, 'loves': 1.0, 'my': 4.0, 'exclusively': 1.0, 'how': 1.0, 'too': 1.0, 'and': 2.0, 'get': 1.0, 'minor': 1.0, 'me': 3.0, 'at': 1.0, 'who': 1.0, 'as': 3.0, 'tells': 1.0, 'gift': 1.0, 'it': 5.0, 'she': 1.0}
Word element => {'one': 1.0, 'an': 1.0, 'rip': 1.0, 'probably': 1.0, 'they': 1.0, 'stitching': 1.0, 'material': 1.0, 'over': 1.0, 'cheaper': 1.0, 'little': 1.0, 'be': 1.0, 'still': 1.0, 'seem': 1.0, 'lining': 1.0, 'however': 1.0, 'first': 1.0, 'inner': 1.0, 'for': 1.0, 'her': 1.0, 'last': 1.0, 'should': 1.0, 'time': 1.0, 'bit': 1.0, 'so': 3.0, 'decent': 1.0, 'pretty': 1.0, 'that': 1.0, 'awesome': 2.0, 'stylish': 1.0, 'and': 4.0, 'purse': 1.0, 'got': 1.0, 'pockets': 2.0, 'two': 1.0, 'i': 2.0, 'like': 1.0, 'attention': 1.0, 'bells': 1.0, 'bag': 3.0, 'glad': 1.0, 'stroller': 1.0, 'diaper': 3.0, 'the': 6.0, 'soft': 1.0, 'this': 2.0, 'it': 2.0, 'looks': 1.0, 'of': 2.0, 'caught': 1.0, 'because': 1.0, 'a': 4.0, 'has': 1.0, 'well': 1.0, 'my': 1.0, 'years': 1.0, 'onto': 1.0, 'long': 1.0, 'works': 1.0, 'but': 1.0, 'shoulder': 1.0, 'are': 1.0, 'strap': 1.0, 'will': 1.0, 'seems': 1.0, 'clamp': 1.0, 'also': 1.0, 'in': 1.0, 'when': 1.0, 'am': 1.0, 'wearing': 1.0, 'quality': 1.0, 'baby': 1.0, 'whistles': 1.0, 'carrier': 1.0, 'hooks': 1.0, 'on': 1.0, 'to': 1.0, 'our': 2.0, 'all': 1.0, 'outside': 1.0}
Word element => {'highley': 1.0, 'pinch': 1.0, 'change': 1.0, 'dirty': 1.0, 'those': 1.0, 'them': 2.0, 'the': 1.0, 'off': 1.0, 'pad': 1.0, 'that': 1.0, 'changing': 1.0, 'also': 1.0, 'alley': 1.0, 'plenty': 2.0, 'wife': 2.0, 'you': 3.0, 'recommended': 1.0, 'has': 3.0, 'on': 1.0, 'your': 1.0, 'almost': 1.0, 'and': 2.0, 'looks': 1.0, 'it': 4.0, 'this': 1.0, 'with': 1.0, 'newborn': 1.0, 'in': 2.0, 'needs': 1.0, 'one': 1.0, 'classy': 1.0, 'bought': 1.0, 'my': 2.0, 'little': 1.0, 'very': 1.0, 'like': 1.0, 's': 1.0, 'we': 1.0, 'a': 4.0, 'for': 5.0, 'diaper': 1.0, 'of': 3.0, 'capartments': 1.0, 'up': 1.0, 'pockets': 1.0, 'everything': 1.0, 'areas': 1.0, 'else': 1.0, 'bag': 1.0, 'need': 3.0, 'anything': 1.0, 'addition': 1.0, 'all': 1.0, 'our': 1.0, 'as': 1.0, 'to': 4.0, 'was': 1.0, 'carry': 1.0, 'keep': 1.0, 'space': 1.0, 'is': 1.0, 'around': 1.0, 'just': 1.0, 'purse': 1.0, 'babywise': 1.0, 'several': 1.0, 'right': 1.0}
Word element => {'satisfied': 1.0, 'using': 1.0, 'm': 2.0, 'i': 2.0, 'classic': 1.0, 'attaches': 1.0, 'look': 1.0, 'to': 2.0, 'bag': 2.0, 'diaper': 1.0, 't': 1.0, 'the': 3.0, 'like': 1.0, 'easily': 1.0, '8217': 2.0, 'overseas': 1.0, 'and': 2.0, 'amazon': 1.0, 's': 1.0, 'perfect': 1.0, 'with': 1.0, 'it': 3.0, 'day': 1.0, 'from': 1.0, 'shipping': 1.0, 'very': 3.0, 'big': 1.0, 'fit': 1.0, 'enough': 1.0, 'everything': 1.0, 'needed': 1.0, 'stroller': 1.0, 'doesn': 1.0}
Word element => {'on': 1.0, 'depends': 1.0, 'useful': 1.0, 'not': 1.0, 'esthetic': 1.0, 'this': 1.0, 'functional': 1.0, 'as': 1.0, 'to': 1.0, 'was': 1.0, 'difficult': 1.0, 'got': 1.0, 'keeping': 1.0, 'the': 4.0, 'bag': 2.0, 'very': 1.0, 'floppy': 1.0, 'more': 2.0, 'is': 3.0, 'collapses': 1.0, 't': 1.0, 'a': 1.0, 's': 1.0, 'you': 2.0, 'way': 1.0, 'chain': 1.0, 'look': 2.0, 'isn': 1.0, 'linked': 1.0, 'that': 1.0, 'one': 1.0, 'love': 1.0, 'much': 1.0, 'intrinsically': 1.0, 'so': 4.0, 'problem': 1.0, 'it': 6.0, 'with': 1.0, 'find': 1.0, 'had': 1.0, 'what': 2.0, 'inside': 1.0, 'but': 2.0, 'i': 3.0, 'like': 1.0, 'm': 1.0, 'sturdy': 1.0, 'previously': 1.0, 'skip': 1.0, 'want': 2.0, 'hop': 1.0, 'studio': 1.0, 'my': 1.0, 'last': 1.0, 'kid': 1.0, 'and': 1.0}
Word element => {'makes': 1.0, 'milk': 1.0, 'producing': 1.0, 'myself': 1.0, 'too': 1.0, 'they': 1.0, 'removing': 1.0, 'digging': 1.0, 'used': 1.0, 'clothes': 1.0, 'year': 1.0, 'exclusively': 1.0, 'pump': 1.0, 'feeding': 1.0, 'breast': 1.0, 'stink': 1.0, 'stays': 1.0, 'where': 1.0, 'into': 2.0, 'put': 1.0, 'pain': 1.0, 'removed': 2.0, 'nicely': 1.0, 'dirty': 1.0, 'happy': 1.0, 'deodorant': 1.0, 'sturdy': 1.0, 'quite': 1.0, 'straps': 1.0, 'heavy': 1.0, 'nasal': 1.0, 'boo': 2.0, 'band': 1.0, 'kit': 1.0, 'bibs': 1.0, 'but': 3.0, 'diapers': 1.0, '6': 1.0, 'about': 1.0, 'wipes': 1.0, 'physically': 1.0, 'tissues': 1.0, 'spritz': 1.0, 'hand': 1.0, 'bacterial': 1.0, 'stick': 1.0, 'case': 2.0, 'chap': 1.0, 'also': 2.0, 'ointment': 2.0, 'd': 1.0, 'wash': 1.0, 'body': 1.0, 'easy': 1.0, 'soap': 1.0, 's': 2.0, 'burt': 1.0, 'know': 2.0, 'feel': 2.0, 'prime': 1.0, 'comparing': 1.0, 'amazon': 2.0, 'free': 1.0, 'plus': 1.0, 'never': 5.0, 'some': 5.0, 'sites': 1.0, 'products': 1.0, 'bauer': 1.0, 'prices': 1.0, 'remorse': 1.0, 'me': 2.0, 'bin': 1.0, 'when': 4.0, 'what': 1.0, 'bucks': 1.0, 'girly': 1.0, 'blankets': 1.0, 'you': 2.0, 'us': 1.0, 'old': 2.0, 'of': 7.0, 'person': 2.0, 'online': 1.0, 'the': 20.0, 'nothing': 1.0, 'out': 3.0, 'to': 10.0, 'sometimes': 1.0, 'with': 6.0, 'thing': 1.0, 'pass': 1.0, '2': 4.0, 'jump': 1.0, 'registry': 1.0, 'this': 6.0, 'usually': 1.0, 'wallet': 1.0, 'other': 1.0, 'nail': 1.0, 'saw': 1.0, 'all': 2.0, 'an': 2.0, 'making': 2.0, 'cream': 1.0, 'carry': 1.0, 'more': 4.0, 'was': 3.0, 'husband': 1.0, 'purchased': 2.0, 'boy': 1.0, 'would': 2.0, 'pads': 1.0, 'now': 3.0, 'orange': 1.0, 'had': 4.0, 'look': 1.0, 'at': 1.0, 'does': 1.0, 'looking': 1.0, 'contact': 1.0, 'light': 3.0, 'weekender': 1.0, 'buyers': 1.0, 'before': 1.0, 'not': 6.0, 'so': 3.0, 'is': 9.0, 'can': 2.0, 'remove': 1.0, 'how': 1.0, 'o': 1.0, 'placed': 1.0, 'that': 11.0, 'bees': 1.0, 'few': 2.0, 'fall': 1.0, 'say': 2.0, 'sunblock': 1.0, 'around': 3.0, 'woo': 1.0, 'shopping': 1.0, 'his': 1.0, 'caught': 2.0, 'bags': 3.0, 'clippers': 1.0, 'as': 6.0, 'anti': 1.0, 'disappointed': 1.0, 'figured': 1.0, 'just': 4.0, 'and': 20.0, 'love': 1.0, 'him': 1.0, 'ready': 1.0, 'looked': 1.0, 'he': 1.0, 'car': 1.0, 'regrets': 1.0, 'yet': 1.0, 'purchase': 1.0, 'for': 10.0, '5': 1.0, 'lenses': 1.0, 'one': 2.0, 'held': 2.0, 't': 6.0, 'bag': 14.0, 'a': 18.0, 'cleans': 1.0, 'small': 1.0, 'could': 3.0, 'cover': 1.0, 'will': 2.0, 'again': 1.0, 'which': 1.0, 'good': 2.0, 'wasn': 2.0, 'like': 5.0, 'then': 1.0, 'cheap': 3.0, 'joined': 1.0, 'have': 8.0, 'found': 1.0, 'get': 2.0, 'shipping': 1.0, 'however': 2.0, 'own': 1.0, 'be': 3.0, 'it': 11.0, 'or': 2.0, 'outfit': 1.0, 'don': 2.0, 'isn': 1.0, 'items': 1.0, 'on': 4.0, 'girl': 1.0, 'hoo': 1.0, 'pack': 1.0, 'cart': 1.0, 'go': 1.0, 'packed': 1.0, 'immediately': 1.0, 'eye': 3.0, 'blanket': 1.0, 'room': 1.0, 'are': 2.0, 'my': 12.0, 'saved': 1.0, 'something': 2.0, 'i': 29.0, 'well': 2.0, 'off': 1.0, 'seems': 1.0, 'leads': 1.0, 'solution': 1.0, 'people': 1.0, 'in': 11.0, 'came': 1.0, 'said': 1.0, 'feels': 2.0, 'shoulder': 1.0, 'took': 2.0, 'think': 1.0, 'definitely': 1.0, 'moment': 1.0, 'baby': 6.0, 'did': 2.0, 'time': 1.0, 'aspirator': 1.0, 'there': 6.0, 'our': 1.0, 'trust': 1.0, 'find': 1.0, 'very': 2.0, 'its': 1.0, 'later': 1.0, 'feeling': 1.0, 'aids': 1.0, 'day': 1.0, 'since': 2.0, 'fairly': 1.0, 'colored': 1.0, 'them': 3.0, 'gotten': 1.0, 'hygiene': 1.0, 'has': 2.0, 'eddie': 1.0, 'comment': 2.0, 'man': 2.0, 'either': 1.0, 'do': 2.0, 'though': 1.0, 'after': 2.0, 'we': 5.0, 'works': 2.0, 'days': 1.0, 'update': 1.0, 'months': 2.0, 'am': 3.0, 'aware': 1.0, 'sure': 1.0, 'breastfed': 1.0, 'back': 2.0, 'check': 1.0, 'dirt': 1.0, 'first': 1.0, 'show': 1.0, 'color': 2.0, 'little': 1.0, 'white': 2.0, 'break': 1.0, 'beige': 1.0, 'tan': 1.0, 'personally': 1.0, 'pumpkin': 1.0, 'add': 1.0, 'modern': 1.0, 'should': 1.0, 'burp': 1.0, 'hopefully': 1.0, 'here': 2.0, 'nursing': 3.0, 'consider': 1.0, 'diaper': 3.0, 'up': 5.0, 'sized': 3.0, 'huge': 1.0, 'duffle': 1.0, 'currently': 1.0, '35': 1.0, 'extra': 4.0, 'enough': 1.0, 'outfits': 1.0, 'receiving': 1.0, 'moby': 4.0, 'use': 2.0, 'these': 1.0, 'cloths': 1.0, 'travel': 4.0, 'son': 2.0, 'yes': 1.0, 'wrap': 6.0, 'from': 1.0, 'who': 1.0, 'worth': 1.0, '4': 2.0}
Word element => {'recommend': 1.0, 'purse': 1.0, 'it': 1.0, 'use': 1.0, 'i': 1.0, 'diaper': 2.0, 'pleased': 1.0, 'with': 1.0, 'highly': 1.0, 'combo': 1.0, 'as': 1.0, 'very': 1.0, 'like': 1.0, 'purchase': 1.0, 'looks': 1.0, 'this': 1.0, 'bag': 3.0, 'a': 3.0, 'not': 1.0, 'fashionable': 1.0}
Word element => {'complaint': 1.0, 'were': 1.0, 'if': 1.0, 'i': 1.0, 'of': 1.0, 'm': 1.0, '5': 2.0, '7': 1.0, 'who': 1.0, 'my': 2.0, 'but': 2.0, 'one': 2.0, 'for': 1.0, 'give': 1.0, 'o': 1.0, 'little': 2.0, 'both': 1.0, 'out': 1.0, 'towel': 2.0, 'velure': 1.0, 'a': 2.0, 'baby': 1.0, 'another': 1.0, 'very': 1.0, 'like': 1.0, 'grew': 1.0, 'is': 4.0, 'side': 1.0, 's': 1.0, 'larger': 1.0, 'stars': 1.0, 'soft': 2.0, 'would': 1.0, 'sides': 1.0, 'bit': 1.0, 'great': 1.0, 'more': 1.0, 'are': 1.0, 'now': 1.0, 'rough': 1.0, 'still': 1.0, 'only': 1.0, 'this': 2.0, 'it': 3.0, 'cotton': 1.0}
Word element => {'and': 1.0, 'softer': 1.0, 'sooooooo': 1.0, 'others': 1.0, 'the': 1.0, 'thinner': 1.0, 'much': 1.0, 'bit': 1.0, 'baby': 1.0, 'few': 1.0, 'she': 1.0, 'my': 2.0, 'of': 1.0, 'sure': 1.0, 'favorite': 1.0, 'kinds': 1.0, 'than': 1.0, 'different': 1.0, 'since': 1.0, 'a': 2.0, 'got': 1.0, 'three': 1.0, 'i': 2.0, 'love': 1.0, 'for': 1.0, 'one': 1.0, 'born': 1.0, 's': 2.0, 'months': 1.0, 'towels': 1.0, 'was': 1.0, 'now': 1.0, 'is': 2.0, 'but': 2.0, 'it': 3.0, 'this': 1.0}
Word element => {'one': 1.0, 'another': 1.0, 'bought': 1.0, 'it': 1.0, 'good': 1.0, 'product': 1.0, 'bath': 1.0, 'is': 2.0, 'sooo': 1.0, 'the': 2.0, 'cute': 1.0, 'soft': 1.0, 'absorves': 1.0, 'and': 1.0, 'very': 1.0, 'humidity': 1.0, 'after': 1.0, 'all': 1.0}
Word element => {'box': 1.0, 'of': 1.0, 'rest': 1.0, 'with': 1.0, 'this': 1.0, 'other': 1.0, 've': 1.0, 'rosemary': 1.0, 'the': 4.0, 'my': 1.0, 'review': 1.0, 'for': 1.0, 'read': 1.0, 'should': 1.0, 'flavor': 1.0, 'i': 1.0, 'too': 1.0, 'overwhelming': 1.0, 'palate': 1.0, 'part': 1.0, 'before': 1.0, 'even': 1.0, 'what': 1.0, 'a': 1.0, 'waste': 1.0, 'was': 1.0, 'buying': 1.0, 'to': 1.0}
Word element => {'them': 1.0, 'chunky': 1.0, 'or': 1.0, 'smooth': 1.0, 'rather': 1.0, 'little': 1.0, 'a': 1.0, 'like': 1.0, 'not': 1.0, 'did': 1.0, 'mine': 1.0, 'gritty': 1.0, 'to': 2.0, 'exposed': 1.0, 'there': 1.0, 'was': 2.0, 'think': 1.0, 'also': 2.0, 'cared': 1.0, 'this': 5.0, 'older': 1.0, 'it': 3.0, 'nor': 1.0, 'months': 2.0, '7': 1.0, 'than': 1.0, 'because': 1.0, 'maybe': 1.0, 'they': 1.0, 'and': 2.0, 'too': 2.0, 'spices': 1.0, 'for': 3.0, 'young': 1.0, 'son': 1.0, 'open': 1.0, 'texture': 1.0, 'i': 2.0, 'flavor': 1.0, 'niece': 1.0, 'way': 1.0, 'when': 2.0, 'you': 2.0, 'off': 1.0, 'neither': 1.0, 'smell': 1.0, 'can': 1.0, 'but': 2.0, 'are': 1.0, 'more': 1.0, 'is': 1.0, 'fine': 1.0, 'dominant': 1.0, 'tasted': 1.0, 'rosemary': 1.0, 'the': 3.0, 'its': 1.0, 'much': 1.0, 'pack': 1.0, 'have': 2.0, 'my': 2.0, 'may': 2.0, 'putting': 1.0, 'be': 1.0, '13': 1.0, 'who': 1.0, 'babies': 1.0, 'been': 2.0}
Word element => {'no': 1.0, 'has': 1.0, 'they': 2.0, 'only': 1.0, 'it': 1.0, 'with': 1.0, 'one': 1.0, 'love': 1.0, 'thus': 1.0, 'send': 1.0, 'i': 3.0, 'far': 1.0, 'in': 1.0, 'the': 6.0, 'ones': 1.0, 'by': 1.0, 'pain': 1.0, 'this': 1.0, 'found': 1.0, 'kids': 1.0, 'been': 1.0, 'that': 1.0, 'headrest': 1.0, 'there': 1.0, 'of': 1.0, 'best': 1.0, 'test': 1.0, 'market': 1.0, 'and': 2.0, 'after': 1.0, 'so': 1.0, 'researching': 1.0, 'on': 1.0, 'is': 2.0, 'asked': 1.0, 'different': 1.0, 'out': 1.0, 'proof': 1.0, 'tested': 1.0, 'can': 1.0, 'did': 1.0, 'company': 1.0, 'crash': 2.0, 'my': 1.0, 'happy': 1.0, 'am': 1.0, 'to': 1.0, 'sleep': 1.0, 'car': 1.0}
Word element => {'wipes': 1.0, 'love': 1.0, 'for': 1.0, 'diapers': 1.0, 'inside': 1.0, 'baggggg': 1.0, 'small': 1.0, 'bit': 1.0, 'quite': 1.0, 'and': 3.0, 'fit': 1.0, 'bag': 2.0, 'can': 1.0, 'i': 2.0, 'in': 1.0, 'of': 1.0, 'cute': 1.0, 'super': 1.0, 'things': 1.0, 'space': 1.0, 'on': 1.0, 'this': 2.0, 'durable': 1.0, 'with': 1.0, 'the': 1.0, 'a': 2.0, 'front': 1.0, 'comes': 1.0, 'to': 1.0, 'monogram': 1.0}
Word element => {'complimented': 1.0, 'off': 1.0, 'stylish': 1.0, 'bags': 1.0, 'diaper': 1.0, 'times': 1.0, 'traditional': 1.0, 'both': 1.0, 'not': 1.0, 'me': 1.0, 'definitely': 1.0, 'one': 1.0, 'what': 1.0, 'had': 1.0, 'still': 1.0, 'sturdy': 1.0, 'straps': 1.0, 'though': 1.0, 'durable': 1.0, 'little': 1.0, 'allow': 1.0, 'would': 2.0, 'pull': 1.0, 'enjoy': 1.0, 'in': 3.0, 'also': 1.0, 'if': 1.0, 'apart': 1.0, 'as': 3.0, 'outside': 1.0, 'to': 2.0, 'nicely': 1.0, 'myself': 1.0, 'the': 7.0, 'comfortable': 1.0, 'great': 1.0, 'can': 1.0, 'but': 1.0, 'use': 1.0, 'i': 7.0, 'several': 1.0, 'bulky': 1.0, 'purse': 2.0, 'and': 5.0, 'it': 9.0, 'only': 1.0, 'fact': 1.0, 'fits': 1.0, 'my': 3.0, 'so': 1.0, 'smaller': 1.0, 'better': 1.0, 'since': 1.0, 'keep': 1.0, 'main': 1.0, 'has': 1.0, 'this': 1.0, 'medication': 1.0, 'be': 1.0, 'been': 1.0, 'that': 3.0, 'need': 1.0, 'bag': 5.0, 'came': 1.0, 'zipped': 1.0, 'for': 3.0, 'inside': 2.0, 'complaint': 1.0, 'child': 1.0, 'up': 1.0, 'diapers': 1.0, 'pockets': 2.0, 'even': 1.0, 'on': 2.0, 'make': 1.0, 'carried': 1.0, 'are': 3.0, 'deep': 1.0, 'a': 5.0, 'zips': 1.0, 'completely': 1.0, 'is': 4.0, 'have': 3.0, 'coming': 1.0}
Word element => {'have': 1.0, 'quality': 1.0, 'very': 1.0, 'compliments': 1.0, 'good': 1.0, 'keep': 1.0, 'that': 1.0, 'bag': 2.0, 'came': 1.0, 'organized': 1.0, 'and': 1.0, 'gotten': 1.0, 'to': 1.0, 'love': 1.0, 'i': 1.0, 'on': 1.0, 'this': 1.0, 'it': 2.0, 'with': 1.0, 'many': 1.0, 'is': 1.0, 'the': 1.0, 'items': 1.0, 'small': 2.0, 'handy': 1.0}
Word element => {'easy': 1.0, 'sturdy': 1.0, 'bed': 1.0, 'seems': 1.0, 'full': 1.0, 'a': 1.0, 's': 1.0, 'son': 1.0, 'was': 1.0, 'assemble': 1.0, 'convert': 1.0, 'daybed': 1.0, 'what': 1.0, 'product': 1.0, 'exactly': 1.0, 'to': 3.0, 'i': 1.0, 'needed': 1.0, 'very': 1.0, 'sized': 1.0, 'wanted': 1.0, 'and': 2.0, 'my': 1.0}
Word element => {'had': 1.0, 'surfer': 1.0, 'which': 1.0, 'of': 1.0, 'there': 1.0, 'one': 3.0, 'for': 2.0, 'baseball': 1.0, 'since': 1.0, 'snoopy': 1.0, 'it': 4.0, 'with': 1.0, 'showed': 1.0, '6': 1.0, '99': 1.0, 'plates': 1.0, 'the': 1.0, 'title': 1.0, 'knew': 1.0, 'start': 1.0, 'my': 1.0, 'very': 1.0, 'would': 1.0, 'disapointed': 1.0, 'i': 6.0, 'two': 1.0, 'got': 1.0, 'per': 1.0, 'order': 2.0, 'then': 1.0, 'plate': 2.0, 'get': 1.0, 'am': 1.0, 'when': 1.0, 'and': 1.0, 'too': 1.0, 'going': 1.0, 'is': 1.0, 'asked': 1.0, 'was': 2.0, 'all': 1.0, 'to': 2.0, 'wanted': 1.0, 'only': 1.0, 'much': 1.0, 'bs': 1.0, 'if': 1.0, 'pay': 1.0, 'not': 2.0}
Word element => {'price': 1.0, 'the': 1.0, 'half': 1.0, 'for': 1.0, 'walgreens': 1.0, 'but': 1.0, 'works': 1.0, 'great': 1.0, 'it': 1.0, 'bummed': 1.0, 'i': 2.0, 'when': 1.0, 'really': 1.0, 'was': 1.0, 'at': 1.0, 'saw': 1.0}
Word element => {'your': 1.0, 'can': 1.0, 'if': 1.0, 'so': 1.0, 'trace': 1.0, 'baby': 1.0, 'any': 2.0, 'bottle': 1.0, 'give': 1.0, 'feeding': 1.0, 'breast': 1.0, 'before': 1.0, 'and': 1.0, 'instead': 1.0, 'alcohol': 1.0, 'feel': 1.0, 'to': 1.0, 'for': 2.0, 'that': 1.0, 'evenings': 1.0, 'bag': 1.0, 'dinner': 1.0, 'my': 1.0, 'diaper': 1.0, 'these': 1.0, 'in': 1.0, 'having': 1.0, 'glass': 1.0, 'like': 1.0, 'is': 1.0, 'really': 1.0, 'there': 1.0, 'of': 2.0, 'i': 2.0, 'responsible': 1.0, 'wine': 1.0, 'when': 1.0, 'am': 1.0, 'offered': 1.0, 'nice': 1.0, 'check': 1.0, 'a': 2.0, 'with': 1.0, 'it': 1.0, 'you': 1.0, 's': 1.0}
Word element => {'of': 1.0, '3': 1.0, 'or': 1.0, 'age': 1.0, 'i': 5.0, 'night': 1.0, 'with': 3.0, 'first': 1.0, 'it': 1.0, 'thanks': 1.0, 'product': 1.0, 'now': 1.0, 'much': 2.0, 'daughter': 1.0, 'slept': 1.0, 'pretty': 1.0, 'my': 3.0, 'the': 1.0, 'these': 1.0, 'such': 1.0, '2': 1.0, 'swaddler': 1.0, 'early': 1.0, 'not': 1.0, 'know': 1.0, 'a': 1.0, 'at': 2.0, 'used': 1.0, 'had': 2.0, 'what': 1.0, 'child': 1.0, 'and': 1.0, 'after': 1.0, 'so': 1.0, 'having': 1.0, 'success': 1.0, 'second': 1.0, 'this': 1.0, 'wish': 1.0, 'known': 1.0, 'through': 1.0, 'then': 1.0, 'would': 1.0, 'definitely': 1.0, 'recommend': 1.0, 'any': 2.0, 'to': 1.0, 'least': 1.0, 'that': 1.0, 'parents': 1.0, 'have': 1.0}
Word element => {'thru': 1.0, 'seat': 1.0, 'car': 1.0, 'one': 1.0, 'for': 1.0, 'too': 1.0, 'of': 1.0, 'doesnt': 1.0, 'to': 2.0, 'she': 1.0, 'dont': 1.0, 'every': 1.0, 'that': 2.0, 'out': 1.0, 'easily': 1.0, 'like': 2.0, 'side': 1.0, 'is': 1.0, 'change': 1.0, 'only': 1.0, 'it': 1.0, 'need': 1.0, 'squiggle': 1.0, 'i': 4.0, 'have': 1.0, 'unwrap': 1.0, 'her': 2.0, 'time': 1.0, 'the': 2.0, 'buckle': 1.0, 'also': 1.0, 'hole': 1.0}
Word element => {'too': 1.0, 'that': 1.0, 'now': 1.0, 'is': 2.0, 'only': 1.0, 'small': 1.0, 'helps': 1.0, 'the': 1.0, 'getting': 1.0, 'love': 1.0, 'it': 2.0, 'sleep': 1.0, 'our': 1.0, 'little': 1.0, 'one': 1.0, 'much': 1.0, 'problem': 1.0, 'so': 1.0, 'longer': 1.0}
Word element => {'bought': 1.0, 'we': 1.0, 'lot': 1.0, 'best': 1.0, 'infact': 1.0, 'works': 1.0, 'easy': 1.0, 'to': 1.0, 'pretty': 1.0, 'well': 1.0, 'on': 1.0, 'of': 1.0, 'good': 2.0, 'size': 1.0, 'and': 1.0, 'put': 1.0, 'the': 2.0, 'comfort': 1.0}
Word element => {'fine': 1.0, 'just': 1.0, 'dryer': 1.0, 'i': 2.0, 'it': 5.0, 'and': 2.0, 'get': 1.0, 'costco': 1.0, 'from': 1.0, 'big': 1.0, 'positives': 1.0, 'carts': 2.0, 'in': 2.0, 'also': 1.0, 've': 1.0, 'addition': 1.0, 'only': 1.0, 'its': 1.0, 'purpose': 1.0, 'use': 1.0, 'stained': 1.0, 'already': 1.0, 'even': 1.0, 'fits': 1.0, 'shopping': 1.0, 'out': 1.0, 'to': 2.0, 'all': 1.0, 'the': 4.0, 'covered': 1.0, 'of': 1.0, 'imagine': 1.0, 'target': 1.0, 'other': 1.0, 'reviewers': 1.0, 'not': 1.0, 'high': 1.0, 'chairs': 1.0, 'but': 1.0, 'that': 1.0, 'if': 1.0, 'lot': 1.0, 'main': 1.0, 'comes': 1.0, 'is': 1.0, 'for': 1.0, 'feeding': 1.0, 'washed': 1.0, 'go': 1.0, 'might': 1.0, 'a': 1.0}
Word element => {'goes': 1.0, 'bottom': 1.0, 'baby': 1.0, 'bit': 1.0, 'little': 1.0, 'be': 1.0, 'a': 4.0, 'fits': 1.0, 'out': 1.0, 'large': 1.0, 'more': 1.0, 'is': 1.0, 'overpriced': 1.0, 'i': 2.0, 'where': 1.0, 'for': 1.0, 'restaurant': 1.0, 'price': 1.0, 'this': 2.0, 'it': 4.0, 'with': 1.0, 'are': 2.0, 'the': 4.0, 'ridiculously': 1.0, 'some': 1.0, 'of': 1.0, 'that': 1.0, 'costco': 1.0, 'way': 1.0, 'easily': 2.0, 'you': 1.0, 'one': 2.0, 'color': 1.0, 'high': 1.0, 'cart': 2.0, 'and': 2.0, 'too': 1.0, 'padded': 1.0, 'unisex': 1.0, 'big': 1.0, 'trick': 1.0, 'there': 2.0, 'chair': 1.0, 'because': 1.0, 'does': 1.0, 'got': 1.0, 'even': 1.0, 'but': 1.0, 'can': 2.0, 'take': 1.0, 'off': 1.0, 'put': 1.0, 'on': 1.0, 'think': 1.0, 'hand': 1.0, 'however': 1.0}
Word element => {'product': 1.0, 'recommend': 1.0, 'would': 1.0, 'and': 2.0, 'my': 1.0, 'are': 1.0, 'girl': 1.0, 'cover': 1.0, 'boy': 1.0, 'up': 1.0, 'washed': 1.0, 'used': 1.0, 'not': 1.0, 'but': 1.0, 'have': 1.0, 'this': 1.0, 'it': 1.0, 'i': 2.0, 'or': 1.0, 'really': 1.0, 'the': 1.0, 'universal': 1.0, 'colors': 1.0, 'nice': 1.0, 'yet': 1.0, 'for': 1.0, 'well': 1.0, 'a': 1.0}
Word element => {'best': 1.0, '25': 1.0, 'see': 1.0, 'minimal': 1.0, 'padding': 2.0, 'them': 1.0, 'in': 1.0, 'thread': 1.0, 'hard': 1.0, 'toys': 1.0, 'for': 2.0, 'on': 1.0, 'think': 1.0, 'hooks': 1.0, 'peeves': 1.0, 'tiny': 1.0, 'pet': 1.0, 'comfortable': 1.0, 'also': 1.0, 'seems': 1.0, 'daughter': 1.0, 'the': 8.0, 'ones': 1.0, 'are': 2.0, 'those': 1.0, 'and': 2.0, '2': 1.0, 'trader': 1.0, 'market': 2.0, 'before': 1.0, 'enough': 1.0, 'cover': 2.0, 'anything': 1.0, 'target': 1.0, 'i': 5.0, 'tried': 1.0, 'to': 2.0, 'seat': 1.0, 'it': 8.0, 'this': 1.0, 'walmart': 1.0, 'did': 1.0, 'lot': 1.0, 'joes': 1.0, 'of': 1.0, 'plus': 1.0, 'mentioned': 1.0, 'so': 3.0, 'everything': 1.0, 'far': 1.0, 'buying': 1.0, 'cushioning': 1.0, 'basket': 1.0, 'that': 1.0, 'comforter': 2.0, 'have': 1.0, 'someone': 1.0, 'a': 4.0, 's': 4.0, 'like': 3.0, 'thin': 1.0, 'does': 3.0, 'having': 2.0, 'over': 1.0, 'would': 2.0, 'more': 1.0, 'is': 2.0, 'say': 1.0, 'very': 1.0, 'research': 1.0, 'trick': 1.0, 'fits': 1.0, 'my': 2.0}
Word element => {'came': 1.0, 'fold': 1.0, 'you': 1.0, 'if': 1.0, 'even': 1.0, 'back': 1.0, 'into': 1.0, 'that': 1.0, 'container': 1.0, 'with': 1.0, 'comes': 1.0, 'will': 1.0, 'also': 1.0, 'don': 1.0, 'washable': 1.0, 'it': 4.0, 'but': 2.0, 'out': 1.0, 'first': 1.0, 'concerned': 1.0, 'tightly': 1.0, 'fits': 1.0, 'white': 1.0, 'the': 3.0, 'great': 1.0, 'of': 1.0, 'there': 1.0, 'others': 1.0, 'some': 1.0, 'at': 2.0, 'baby': 1.0, 'compared': 1.0, 'plastic': 1.0, 'how': 1.0, 'well': 1.0, 't': 2.0, 's': 2.0, 'a': 3.0, 'cart': 2.0, 'background': 1.0, 'isn': 1.0, 'i': 2.0, 'buy': 1.0, 'tried': 1.0, 'originally': 1.0, 'priced': 1.0, 'maybe': 1.0, 'recommend': 1.0, 'was': 2.0, 'as': 2.0, 'to': 2.0, 'cover': 2.0, 'very': 1.0, 'best': 1.0, 'this': 1.0, 'soft': 1.0, 'easy': 1.0, 'use': 1.0, 'highly': 1.0, 'every': 1.0, 'and': 1.0, 've': 1.0, 'simply': 1.0, 'so': 1.0, 'far': 1.0, 'color': 1.0, 'fit': 1.0, 'highchair': 1.0, 'for': 1.0}
Word element => {'with': 1.0, 'very': 1.0, 'overall': 1.0, 'them': 1.0, 'on': 1.0, 'big': 1.0, 'way': 1.0, 'in': 1.0, 'high': 1.0, 'is': 1.0, 'use': 1.0, 'how': 1.0, 'after': 1.0, 'wal': 1.0, 'and': 1.0, 'so': 1.0, 'time': 1.0, 'happy': 1.0, 'cart': 2.0, 'target': 1.0, 'the': 3.0, 'about': 1.0, 'thing': 1.0, 'everything': 1.0, 'licking': 1.0, 'was': 1.0, 'restaurants': 1.0, 'i': 5.0, 'daughter': 1.0, 'loves': 1.0, 'this': 3.0, 'only': 1.0, 'glad': 1.0, 'lick': 1.0, 'freaking': 1.0, 'far': 1.0, 'got': 2.0, 'really': 1.0, 'every': 1.0, 'salmonella': 1.0, 'm': 2.0, 'mart': 1.0, 'all': 1.0, 'to': 3.0, 'our': 1.0, 'fit': 1.0, 'for': 2.0, 'it': 2.0, 'she': 1.0, 's': 1.0, 't': 1.0, 'we': 1.0, 'a': 1.0, 'don': 1.0, 'child': 1.0, 'shopping': 2.0, 'out': 1.0, 'purchase': 1.0, 'fits': 1.0, 'hearing': 1.0, 'from': 1.0, 've': 1.0, 'chairs': 1.0, 'used': 1.0, 'albertsons': 1.0}
Word element => {'purchase': 1.0, 'debated': 1.0, 'hang': 1.0, 'little': 1.0, 'to': 3.0, 'i': 1.0, 'old': 1.0, 'transport': 1.0, 'my': 1.0, 'the': 1.0, 'mouth': 1.0, 'but': 1.0, 'easy': 1.0, '8': 1.0, 'son': 1.0, 'others': 1.0, 'loops': 1.0, 'comfortable': 1.0, 'extremely': 1.0, 'with': 1.0, 'it': 2.0, 'toys': 1.0, 'not': 1.0, 'fold': 1.0, 'and': 1.0, 'like': 1.0}
Word element => {'out': 1.0, 'wiggle': 1.0, 'try': 1.0, 'sure': 1.0, 'eye': 1.0, 'close': 1.0, 'keep': 1.0, 'riding': 1.0, 'he': 2.0, 'while': 1.0, 'be': 1.0, 'him': 2.0, 'however': 1.0, 'went': 1.0, 'baby': 2.0, 'goes': 1.0, 'really': 1.0, 'back': 2.0, 'preferred': 1.0, 'versus': 1.0, 'bottom': 1.0, 'strap': 1.0, 'safety': 1.0, 'anyway': 1.0, 'over': 2.0, 'don': 1.0, 'belly': 1.0, 'thing': 1.0, 'one': 1.0, 'comfortable': 1.0, 'nice': 1.0, 'not': 2.0, 'doesn': 1.0, 'was': 1.0, 'right': 1.0, 'look': 1.0, 'i': 5.0, 'easily': 1.0, 'costco': 1.0, 'concerned': 1.0, 'target': 1.0, 'against': 1.0, 'so': 2.0, 'boy': 1.0, 'cart': 2.0, 'and': 2.0, 'carts': 1.0, 'would': 1.0, 'super': 1.0, 'this': 1.0, 'it': 4.0, 'used': 1.0, 'does': 1.0, 'love': 2.0, 'for': 2.0, 'girly': 1.0, 'letters': 1.0, 'son': 1.0, 'with': 2.0, 'pink': 1.0, 'seat': 3.0, 'to': 6.0, 'as': 1.0, 'of': 2.0, 'slips': 1.0, 'the': 9.0, 'have': 4.0, 'small': 1.0, 'cushy': 1.0, 'my': 1.0, 'just': 1.0, 'large': 1.0, 's': 3.0, 't': 2.0, 'a': 3.0, 'others': 1.0, 'mentioned': 1.0, 'legs': 1.0, 'cover': 1.0, 'in': 2.0, 'seems': 1.0, 'general': 1.0, 'pretty': 1.0, 'neutral': 1.0, 'hold': 1.0, 'which': 1.0, 'is': 3.0, 'on': 3.0, 'make': 2.0}
Word element => {'buy': 1.0, 'every': 1.0, 'floor': 1.0, 'on': 1.0, 'falling': 1.0, 'them': 1.0, 'have': 1.0, 'about': 1.0, 'supports': 1.0, 'his': 2.0, 'carseat': 1.0, 'this': 1.0, 'he': 2.0, 'it': 1.0, 'heavy': 1.0, 'two': 1.0, 'etc': 1.0, 'i': 2.0, 'old': 1.0, 'my': 1.0, 'little': 1.0, 'didn': 1.0, 'worry': 1.0, '5': 1.0, 'minutes': 1.0, 'was': 1.0, 'mo': 1.0, 'lug': 1.0, 'getting': 1.0, 'so': 2.0, 't': 2.0, 'a': 1.0, 'wobbles': 1.0, 'but': 1.0, 'will': 1.0, 'better': 1.0, 'want': 1.0, 'if': 1.0, 'the': 2.0, 'without': 1.0, 'worrying': 1.0, 'don': 1.0, 'wobbly': 1.0, 'over': 1.0, 'bump': 1.0, 'him': 1.0, 'within': 1.0, 'head': 1.0, 'me': 1.0, 'not': 1.0, 'that': 1.0, 'basket': 1.0, 'great': 1.0, 'mention': 1.0, 'around': 1.0, 'holds': 1.0, 'toys': 1.0, 'burpcloths': 1.0, 'to': 3.0, 'all': 1.0}
Word element => {'easily': 1.0, 'always': 1.0, 's': 1.0, 'so': 1.0, 'car': 1.0, 'the': 1.0, 'this': 1.0, 'nearby': 1.0, 'is': 1.0, 'cleans': 1.0, 'it': 3.0, 'great': 1.0, 'in': 1.0, 'for': 1.0, 'all': 1.0, 'kids': 1.0, 'covering': 1.0, 'we': 1.0, 'keep': 1.0, 'of': 1.0, 'and': 1.0, 'seats': 1.0}
Word element => {'says': 1.0, 'looks': 1.0, 'product': 1.0, 'what': 1.0, 'came': 1.0, 'the': 2.0, 'prime': 1.0, 'it': 2.0, 'love': 1.0, 'day': 1.0, 'next': 1.0, 'with': 1.0, 'amazon': 1.0, 'does': 2.0, 'i': 1.0, 'shipping': 1.0, 'and': 2.0}
Word element => {'cute': 1.0, 'looking': 1.0, 'cart': 1.0, 'neutral': 1.0, 'and': 1.0, 'to': 1.0, 'was': 2.0, 'wanted': 1.0, 'any': 1.0, 'baby': 1.0, 'highly': 1.0, 'gender': 1.0, 'that': 1.0, 'cover': 1.0, 'what': 1.0, 'a': 1.0, 'i': 3.0, 'comfortable': 1.0, 'for': 2.0, 'my': 1.0, 'is': 1.0, 'exactly': 1.0, 'recommend': 1.0, 'parent': 1.0, 'this': 1.0, 'it': 1.0}
Word element => {'germs': 1.0, 'it': 1.0, 'can': 1.0, 'different': 1.0, 'in': 1.0, 'little': 1.0, 'worth': 1.0, 'well': 1.0, 'expensive': 1.0, 'fits': 1.0, 'but': 1.0, 'from': 1.0, 'very': 2.0, 'as': 1.0, 'nice': 1.0, 'sizes': 1.0, 'fabric': 1.0, 'babies': 1.0, 'and': 1.0, 'comfy': 1.0, 'bit': 1.0, 'you': 1.0, 'keep': 1.0, 'cart': 1.0, 'your': 1.0}
Word element => {'would': 1.0, 'item': 1.0, 'overall': 1.0, 'cups': 1.0, 'hook': 1.0, 'want': 1.0, 'no': 1.0, 'loops': 1.0, 'come': 1.0, 'doesn': 1.0, 'this': 2.0, 'just': 2.0, 'sam': 1.0, 'large': 1.0, 'fine': 1.0, 'description': 1.0, 'and': 7.0, 'out': 1.0, 'by': 1.0, 'fooled': 1.0, 'say': 1.0, 'is': 1.0, 'comes': 1.0, 'make': 1.0, 'put': 1.0, 'did': 1.0, 'wash': 1.0, 'isn': 2.0, 'don': 1.0, 'sippy': 1.0, 'up': 1.0, 'apart': 2.0, 'everything': 1.0, 'be': 2.0, 'fell': 1.0, 'it': 16.0, 'covers': 1.0, 'am': 2.0, 'they': 1.0, 'cart': 1.0, 'stitching': 1.0, 'matters': 1.0, 'toys': 1.0, 'infantino': 1.0, 'thing': 1.0, 'including': 1.0, 'cover': 1.0, 'a': 4.0, 't': 5.0, 's': 2.0, 'happy': 1.0, 'one': 1.0, 'wish': 1.0, 'litterally': 1.0, 'purchasing': 1.0, 'after': 1.0, 'some': 1.0, 'baggie': 1.0, 'the': 6.0, 'to': 5.0, 'job': 1.0, 'turned': 1.0, 'was': 1.0, 'sure': 1.0, 'store': 2.0, 'i': 8.0, 'have': 1.0, 'different': 1.0, 'week': 1.0, 'again': 1.0, 'car': 1.0, 'any': 1.0, 'surprised': 1.0, 'wouldn': 1.0, 'with': 4.0, 'in': 6.0, 'there': 1.0, 'fall': 1.0, 'that': 4.0, 'because': 1.0, 'does': 1.0, 'really': 2.0, 'but': 4.0, 'able': 1.0, 'girly': 1.0, 'soft': 1.0, 'works': 1.0, 'club': 1.0, 'which': 1.0, 'has': 2.0, 'toy': 1.0, 'decent': 1.0, 'roll': 1.0, 'padding': 1.0, 'came': 1.0, 'on': 1.0, 'long': 1.0, 'pleasantly': 1.0, 'not': 2.0, 'run': 1.0, 'plastic': 1.0, 'pouch': 1.0, 'little': 1.0, 'big': 1.0, 'first': 2.0, 'are': 1.0, 'bad': 1.0, 'so': 1.0, 'for': 1.0, 'also': 1.0, 'purchased': 1.0, 'buy': 1.0, 'carts': 1.0, 'something': 1.0, 'straps': 2.0, 'since': 1.0}
Word element => {'one': 1.0, 'little': 1.0, 'have': 1.0, 'must': 1.0, 'definite': 1.0, 'take': 1.0, 'still': 1.0, 'go': 1.0, 'we': 2.0, 'a': 3.0, 'year': 1.0, 'almost': 1.0, 'does': 1.0, 'her': 1.0, 'part': 1.0, 'solution': 1.0, 'touch': 1.0, 'i': 1.0, 'so': 1.0, 'keep': 1.0, 'was': 1.0, 'purpose': 1.0, 'not': 1.0, 'just': 1.0, 'material': 1.0, 'attachment': 1.0, 'cushion': 1.0, 'shopping': 1.0, 'cart': 1.0, 'perfect': 1.0, 'in': 1.0, 'chairs': 1.0, 'everywhere': 1.0, 'or': 1.0, 'for': 2.0, 'great': 1.0, 'comfortable': 1.0, 'and': 4.0, 'that': 1.0, 'hooks': 1.0, 'of': 2.0, 'is': 2.0, 'carts': 1.0, 'enough': 2.0, 'new': 1.0, 'as': 1.0, 'to': 1.0, 'any': 1.0, 'well': 1.0, 'toy': 1.0, 'the': 5.0, 'there': 1.0, 'chair': 1.0, 'washer': 1.0, 'which': 1.0, 'purchase': 1.0, 'high': 1.0, 'throw': 1.0, 'she': 2.0, 'looks': 1.0, 'it': 3.0, 'old': 1.0, 'brand': 1.0, 'are': 1.0}
Word element => {'us': 1.0, 'cute': 1.0, 'so': 1.0, 'greta': 1.0, '3': 1.0, 'or': 1.0, 'mart': 1.0, 'for': 3.0, 'love': 2.0, 've': 2.0, 'a': 2.0, 'we': 3.0, 'year': 1.0, 'anything': 1.0, 'through': 1.0, 'had': 1.0, 'thought': 1.0, 'been': 2.0, 'that': 2.0, 'is': 1.0, 'i': 4.0, 'buy': 1.0, 'read': 1.0, 'strap': 2.0, 'buying': 1.0, 'now': 1.0, 'before': 1.0, 'its': 1.0, 'works': 1.0, 'this': 2.0, 'it': 2.0, 'cover': 3.0, 'stills': 1.0, 'reviews': 1.0, 'really': 1.0, 'plain': 1.0, 'pattern': 1.0, 'and': 3.0, 'fits': 1.0, 'virtually': 1.0, 'great': 2.0, 'the': 2.0, 'did': 1.0, 'since': 1.0, 'at': 2.0, 'some': 1.0, 'point': 1.0, 'lose': 1.0, 'you': 1.0, 'there': 1.0, 'just': 1.0, 'using': 1.0, 'which': 1.0, 'like': 1.0, '2': 1.0, 'but': 1.0, 'can': 1.0, 'wanted': 1.0, 'wal': 1.0}
Word element => {'my': 1.0, 'for': 1.0, 'comfortable': 1.0, 'and': 1.0, 'carts': 1.0, 'nicely': 1.0, 'the': 1.0, 'when': 1.0, 'or': 1.0, 'any': 1.0, 'all': 1.0, 'have': 1.0, 'it': 2.0, 'this': 1.0, 'other': 1.0, 'useful': 1.0, 'product': 2.0, 'be': 1.0, 'store': 1.0, 'place': 1.0, 'son': 1.0, 'very': 2.0, 'as': 1.0, 'must': 1.0, 'a': 2.0, 'is': 3.0, 'you': 1.0, 'are': 1.0, 'fits': 1.0, 'out': 1.0, 'shopping': 2.0, 'in': 1.0, 'grocery': 1.0}
Word element => {'there': 1.0, 'options': 1.0, 'other': 1.0, 'of': 1.0, 'some': 1.0, 'than': 1.0, 'choice': 1.0, 'but': 1.0, 'was': 1.0, 'thing': 1.0, 'not': 1.0, 'just': 1.0, 'you': 2.0, 'sides': 1.0, 'the': 4.0, 'educational': 1.0, 'smallest': 1.0, 'get': 2.0, 'and': 2.0, 'enough': 1.0, 'more': 1.0, 'around': 1.0, 'what': 1.0, 'see': 1.0, 'carry': 1.0, 'fabric': 1.0, 'good': 1.0, 'until': 1.0, 'into': 1.0, 'padding': 1.0, 'it': 4.0, 'felt': 1.0, 'i': 3.0, 'keep': 1.0, 'in': 1.0, 'colored': 1.0, 'to': 1.0, 'our': 1.0, 'well': 1.0, 'trunk': 1.0, 's': 2.0, 'we': 2.0, 'a': 3.0, 'go': 1.0, 'restaurant': 1.0, 'love': 1.0, 'out': 1.0, 'shopping': 1.0, 'velcro': 1.0, 'cart': 1.0, 'or': 1.0, 'held': 1.0, 'up': 1.0, 'very': 1.0, 'so': 1.0, 'far': 1.0, 'like': 2.0, 'numbers': 1.0}
Word element => {'much': 1.0, 'do': 1.0, 'like': 1.0, 'in': 3.0, 'fit': 1.0, 'for': 1.0, 'enough': 1.0, 'make': 1.0, 'and': 3.0, 'because': 1.0, 'that': 1.0, 'stains': 1.0, 'fold': 1.0, 'you': 1.0, 'seen': 1.0, 'but': 3.0, 'dries': 1.0, 'right': 1.0, 'just': 1.0, 'by': 1.0, 'super': 2.0, 'great': 1.0, 'wants': 1.0, 'carts': 1.0, 'digits': 2.0, 'math': 1.0, 'wherever': 1.0, 'baby': 1.0, 'them': 1.0, 'a': 3.0, 'my': 2.0, 'we': 4.0, 'take': 1.0, 'to': 4.0, 'shopping': 1.0, 'our': 1.0, 'all': 1.0, 'compact': 1.0, 'go': 1.0, 'learn': 1.0, 'can': 1.0, 'so': 1.0, 'bit': 1.0, 'padded': 1.0, 'needs': 1.0, 'restaurants': 1.0, 'two': 2.0, 'it': 7.0, 'thought': 1.0, 'were': 1.0, 'on': 1.0, 'amount': 1.0, 'works': 1.0, 'bulky': 1.0, 'no': 1.0, 'hands': 1.0, 'myself': 1.0, 'appropriate': 1.0, 'diaper': 1.0, 'practical': 1.0, 'bag': 2.0, 'plastic': 1.0, 'these': 1.0, 'comes': 1.0, 'babies': 1.0, 'husband': 1.0, 'more': 1.0, 'hang': 1.0, 'need': 1.0, 'or': 1.0, 'thin': 1.0, 'adults': 1.0, 'tried': 1.0, 'was': 1.0, 'challenging': 1.0, 'itself': 1.0, 'not': 3.0, 'dry': 1.0, 'suppose': 1.0, 'into': 1.0, 'fading': 1.0, 'have': 1.0, 'dryer': 1.0, 'the': 1.0, 'of': 2.0, 'are': 1.0, 'is': 1.0, 'at': 1.0, 'one': 1.0, 'lot': 1.0, 'point': 1.0, 'her': 1.0, 'wash': 1.0, 'quite': 1.0, 'huge': 1.0, 'than': 1.0, 'i': 3.0, 'fast': 1.0, 'thinking': 1.0, 'getting': 1.0, 'second': 1.0, 'later': 1.0}
Word element => {'metal': 1.0, 'those': 1.0, 'baby': 1.0, 'the': 1.0, 'thick': 1.0, 'as': 2.0, 'and': 1.0, 'but': 1.0, 'cover': 1.0, 'cart': 2.0, 'cushioned': 1.0, 'nice': 1.0, 'against': 1.0, 'expected': 1.0, 'cushion': 1.0, 'not': 1.0, 'seat': 2.0, 'thicker': 1.0, 'a': 1.0, 'is': 1.0, 'have': 1.0, 'i': 2.0, 'wish': 1.0, 'had': 1.0, 'for': 1.0, 'hard': 1.0, 'this': 1.0, 'it': 1.0, 'stronger': 1.0}
Word element => {'washed': 1.0, 'be': 1.0, 'but': 1.0, 'color': 1.0, 'best': 1.0, 'not': 1.0, 'is': 1.0, 'white': 1.0, 'can': 1.0, 'maybe': 1.0, 'don': 1.0, 'carrier': 1.0, 'the': 1.0, 't': 1.0, 'these': 1.0, 'wish': 1.0, 'it': 1.0, 'this': 1.0, 'children': 1.0, 'purchased': 1.0, 'had': 1.0, 'to': 1.0, 'for': 1.0, 'love': 1.0, 'when': 1.0, 'raising': 1.0, 'they': 1.0, 'cart': 1.0, 'has': 1.0, 'fall': 1.0, 'we': 2.0, 'attach': 1.0, 'grandson': 1.0, 'toys': 1.0, 'our': 2.0, 'were': 1.0, 'hooks': 1.0, 'on': 1.0, 'so': 1.0}
Word element => {'to': 1.0, 'also': 1.0, 'really': 1.0, 'waist': 1.0, 'not': 1.0, 'low': 1.0, 'so': 1.0, 'thighs': 1.0, 'i': 1.0, 'stick': 1.0, 'it': 3.0, 'like': 1.0, 'carts': 1.0, 'fuzzies': 1.0, 'however': 1.0, 'goes': 1.0, 'how': 1.0, 'easy': 1.0, 'fits': 1.0, 'over': 2.0, 'the': 3.0, 'is': 1.0, 'seatbelt': 1.0}
Word element => {'comfort': 1.0, 'while': 1.0, 'use': 1.0, 'him': 1.0, 'transition': 1.0, 'time': 1.0, 'during': 1.0, 'toys': 1.0, 'cart': 1.0, 'little': 1.0, 'even': 1.0, 'carseat': 1.0, 'his': 2.0, 'was': 3.0, 'to': 2.0, 'had': 1.0, 'or': 1.0, 'high': 1.0, 'my': 1.0, 'when': 1.0, 'outgrown': 1.0, 'restaurant': 1.0, 'for': 2.0, 'love': 1.0, 'chair': 1.0, 'unsteady': 1.0, 'this': 1.0, 'it': 4.0, 'he': 1.0, 'now': 1.0, 'older': 1.0, 'have': 2.0, 'still': 1.0, 'son': 1.0, 'in': 2.0, 'at': 1.0, 'is': 2.0, 'every': 1.0, 'really': 1.0, 'and': 2.0, 'once': 1.0, 'of': 1.0, 'necessary': 1.0, 'cute': 1.0, 'i': 1.0, 'that': 3.0, 'sitting': 1.0, 'but': 2.0, 'can': 1.0, 'clip': 1.0, 'onto': 1.0, 'a': 5.0, 'we': 2.0, 's': 2.0, 'not': 1.0, 'comfortable': 1.0, 'great': 1.0, 'padded': 1.0, 'nice': 1.0}
Word element => {'and': 1.0, 'product': 1.0, 'to': 2.0, 'clean': 1.0, 'its': 1.0, 'cushion': 1.0, 'great': 1.0, 'it': 2.0, 'use': 1.0, 'easy': 2.0, 'fits': 1.0, 'all': 1.0, 'even': 1.0, 'carts': 2.0, 'the': 1.0, 'a': 1.0, 'large': 1.0, 'costco': 1.0, 'provides': 1.0, 'nice': 1.0}
Word element => {'cushion': 1.0, 'help': 1.0, 'to': 1.0, 'daughter': 1.0, 'blanket': 1.0, 'a': 1.0, 'my': 1.0, 'end': 1.0, 'simply': 1.0, 'don': 2.0, 'covers': 1.0, 'this': 1.0, 'it': 2.0, 'love': 1.0, 'either': 1.0, 'putting': 1.0, 'i': 3.0, 'up': 1.0, '34': 2.0, 'hate': 1.0, 'think': 1.0, 'padded': 1.0, 'behind': 1.0, 't': 3.0, 'the': 2.0, 'but': 1.0, 'back': 1.0, 'works': 1.0, 'part': 1.0, 'enough': 1.0, 'in': 1.0, 'isn': 1.0, 'shopping': 1.0, 'cart': 1.0}
Word element => {'love': 3.0, 'matter': 1.0, 'no': 1.0, 'children': 1.0, 'life': 1.0, 'rubber': 1.0, 'have': 1.0, 'will': 2.0, 'value': 1.0, 'aspect': 1.0, 'introduce': 1.0, 'vs': 1.0, 'whole': 1.0, 'languages': 1.0, 'different': 1.0, 'parent': 1.0, 'with': 3.0, 'favour': 1.0, 'nonetheless': 1.0, 'bear': 1.0, 'elephant': 1.0, 'animal': 1.0, 'african': 1.0, 'contain': 1.0, 'not': 1.0, 'superiour': 1.0, 'older': 2.0, 'did': 1.0, 'enough': 1.0, 'squeezable': 1.0, 'coloured': 1.0, 'brightly': 1.0, 'these': 2.0, 'about': 1.0, 'thing': 1.0, 'ensures': 1.0, 'here': 1.0, 'competitive': 1.0, 'extremely': 1.0, 'purchased': 1.0, 'being': 1.0, 'later': 1.0, 'this': 1.0, 'few': 1.0, 'order': 1.0, 'squeezed': 1.0, 'or': 3.0, 'need': 1.0, 'supple': 1.0, 'babies': 2.0, 'more': 1.0, 'identification': 1.0, 'excite': 1.0, 'which': 3.0, 'enjoy': 1.0, 'course': 1.0, 'e': 1.0, 'another': 1.0, 'english': 2.0, 'animals': 2.0, 'reviewers': 1.0, 'both': 1.0, 'allow': 1.0, 'fabulous': 1.0, 'fun': 1.0, 'were': 1.0, 'was': 2.0, 'purchase': 3.0, 'old': 1.0, 'power': 1.0, 'teach': 1.0, 'colour': 2.0, 'going': 1.0, 'small': 1.0, 'a': 6.0, 't': 1.0, 's': 3.0, 'in': 6.0, 'does': 1.0, 'primary': 1.0, 'quality': 1.0, 'their': 2.0, 'hours': 1.0, 'and': 14.0, 'similar': 1.0, 'day': 2.0, 'wanted': 1.0, 'are': 3.0, 'first': 1.0, 'french': 1.0, 'generations': 1.0, 'by': 1.0, 'bright': 2.0, 'tub': 6.0, 'many': 2.0, 'unfortunately': 1.0, 'baby': 2.0, 'o': 5.0, 'had': 1.0, 'to': 9.0, 'as': 5.0, 'saw': 2.0, 'colours': 3.0, 'grandemere': 2.0, 'now': 1.0, 'they': 8.0, 'well': 1.0, 'i': 13.0, 'stated': 1.0, 'my': 2.0, 'learning': 2.0, 'already': 1.0, 'new': 3.0, 'polar': 1.0, 'following': 1.0, 'adorable': 1.0, 'munchkin': 1.0, 'source': 1.0, 'version': 2.0, 'brand': 2.0, 'bay': 1.0, 'that': 3.0, 'because': 4.0, 'of': 10.0, 'the': 20.0, 'days': 1.0, 'without': 1.0, 'great': 2.0, 'toy': 1.0, 'squeak': 3.0, 'over': 2.0, 'them': 3.0, 'budget': 1.0, 'spent': 1.0, 'opted': 1.0, 'searched': 1.0, 'long': 1.0, 'on': 1.0, 'bath': 4.0, 'would': 1.0, 'boy': 1.0, 'so': 2.0, 'try': 1.0, 'return': 1.0, 'returned': 1.0, 'point': 1.0, 'toys': 9.0, 'infantino': 5.0, 'toddlers': 2.0, 'internet': 1.0, 'gone': 1.0, 'names': 1.0, 'but': 3.0, 'when': 1.0, 'grandfils': 1.0, 'be': 2.0, 'ugh': 1.0, 'didn': 1.0, 'water': 2.0, 'up': 1.0, 'carefully': 1.0, 'grandson': 1.0, 'found': 2.0, 'is': 2.0, 'look': 1.0, 'at': 2.0, 'any': 1.0, 'your': 1.0, 'name': 1.0, 'toddler': 1.0, 'price': 1.0, 'product': 2.0, 'for': 3.0, 'you': 1.0, 'able': 1.0, 'success': 1.0, 'an': 1.0, 'marshalls': 1.0, 'other': 1.0, 'squirt': 3.0, 'nothing': 1.0, 'like': 1.0, 'family': 2.0, 'staying': 1.0, 'ended': 1.0, 'purchasing': 1.0, 'interact': 1.0, 'off': 1.0}
Word element => {'little': 1.0, 'right': 1.0, 'cute': 1.0, 'animals': 1.0, 'colors': 1.0, 'babies': 1.0, 'have': 1.0, 'my': 1.0, 'happy': 1.0, 'nephews': 1.0, 'sizes': 1.0, 'nieces': 1.0, 'are': 2.0, 'gifts': 1.0, 'for': 5.0, 'too': 1.0, 'and': 5.0, 'me': 1.0, 'from': 1.0, 'these': 1.0, 'already': 1.0, 'use': 1.0, 'on': 1.0, 'bath': 1.0, 'this': 1.0, 'tub': 1.0, 'of': 1.0, 'set': 2.0, 'toys': 1.0, 'is': 1.0, 'second': 1.0, 'so': 1.0, 'shapes': 1.0, 'great': 1.0, 'hands': 1.0, 'the': 3.0, 'bought': 1.0, 'beach': 1.0, 'i': 1.0, 'old': 1.0, 'new': 1.0, 've': 1.0, 's': 1.0, 'friend': 2.0, 'an': 1.0, 'pool': 1.0, '5': 1.0, 'was': 1.0, 'as': 2.0, 'to': 2.0, 'expressions': 1.0, 'even': 1.0, 'her': 3.0, 'received': 1.0, 'extra': 1.0, 'other': 1.0, '7': 1.0, 'month': 1.0, 'keep': 1.0, 'just': 2.0}
Word element => {'bound': 1.0, 'there': 1.0, 'loves': 1.0, 'months': 1.0, 'one': 1.0, 'huge': 1.0, 'real': 1.0, 'though': 1.0, 'as': 1.0, 'to': 4.0, 's': 4.0, 'we': 1.0, 'it': 5.0, 'green': 1.0, 'month': 1.0, 'precious': 1.0, 'stacker': 1.0, 'each': 1.0, 'heaven': 1.0, 'little': 1.0, 'very': 1.0, 'wonderful': 1.0, 'old': 2.0, '8': 1.0, 'll': 1.0, 'respond': 1.0, 'has': 1.0, 'toy': 2.0, 'on': 1.0, 'think': 1.0, 'how': 1.0, 'ring': 2.0, 'bead': 2.0, 'about': 1.0, 'she': 3.0, 'baby': 3.0, 'never': 1.0, 'design': 1.0, '5': 1.0, 'be': 1.0, 'forbid': 1.0, 'know': 1.0, 'like': 1.0, 'really': 1.0, 'you': 4.0, 'when': 1.0, 'and': 3.0, 'lose': 1.0, 'doesn': 2.0, 'was': 1.0, 'will': 2.0, 'unique': 1.0, 'but': 1.0, 'such': 1.0, 'now': 1.0, 'this': 2.0, 't': 3.0, 'waves': 1.0, 'with': 2.0, 'regret': 1.0, 'mind': 1.0, 'my': 2.0, 're': 1.0, 'girl': 1.0, 'offer': 1.0, 'the': 5.0, 'even': 2.0, 'hit': 1.0, 'base': 1.0, 'around': 1.0, 'or': 1.0, 'love': 1.0, 'treats': 1.0, 'still': 1.0, 'if': 1.0, 'squeaks': 1.0, 'your': 1.0, 'mom': 2.0, 'head': 1.0, 'soft': 1.0, 'bop': 1.0, 'comically': 1.0, 'so': 1.0, 'which': 1.0, 'made': 1.0, 'are': 1.0, 'a': 6.0, 'rattle': 1.0, 'well': 1.0, 'i': 1.0, 'fish': 1.0, 'partially': 1.0, 'stuffed': 1.0, 'adorable': 1.0, 'favorites': 1.0, 'shaped': 1.0, 'chicken': 2.0, 'ever': 1.0, 'something': 2.0, 'buy': 1.0, 'use': 1.0, 'her': 1.0, 'don': 1.0}
Word element => {'recommend': 1.0, 'highly': 1.0, 'my': 1.0, 'offers': 1.0, 'great': 1.0, 'love': 2.0, 'and': 2.0, 'each': 1.0, 'house': 1.0, 's': 2.0, 'months': 2.0, 'a': 1.0, 'grammy': 1.0, 'at': 1.0, 'have': 1.0, 'we': 1.0, 'activity': 1.0, 'different': 1.0, 'playing': 1.0, '7': 1.0, 'it': 3.0, '22': 1.0, 'this': 2.0, 'children': 1.0, 'with': 1.0, 'ring': 1.0}
Word element => {'update': 1.0, 'will': 1.0, 'i': 1.0, 'his': 1.0, 'fine': 1.0, 'can': 1.0, 'it': 1.0, 'slober': 1.0, 'the': 1.0, 'my': 1.0, 'loves': 1.0, 'well': 1.0, 'son': 1.0, 'anthing': 1.0, 'and': 1.0, 'up': 1.0, 'collect': 1.0, 'comes': 1.0, 'to': 1.0, 'hand': 1.0, 'if': 1.0, 'seems': 1.0, 'wash': 1.0, 'just': 1.0, 'fabric': 1.0, 'thing': 1.0}
Word element => {'5': 1.0, 'getting': 1.0, 'out': 1.0, 'use': 1.0, 'of': 2.0, 'ton': 1.0, 'have': 1.0, 'care': 1.0, 'don': 1.0, 'stack': 1.0, 'gotten': 1.0, 'ever': 1.0, 'easily': 1.0, 'like': 1.0, 'hold': 1.0, 'enough': 1.0, 'he': 3.0, 'toys': 2.0, 'past': 1.0, 'work': 1.0, 'would': 1.0, 'rings': 2.0, 'activity': 1.0, '1': 1.0, 'until': 1.0, 'loves': 1.0, 'in': 1.0, 'hoping': 1.0, 'doesn': 1.0, 'was': 1.0, 'old': 1.0, 'got': 1.0, 'purchased': 1.0, 'because': 1.0, 'chew': 1.0, 'him': 1.0, 'stacker': 1.0, 'it': 2.0, 'month': 1.0, 'light': 1.0, 'and': 4.0, 'the': 5.0, 'my': 1.0, 'teethers': 1.0, 'them': 2.0, 'baby': 1.0, 'toy': 1.0, 'if': 1.0, 'entertaining': 1.0, 'for': 3.0, 'months': 1.0, 'entertainment': 1.0, 'one': 1.0, 'two': 1.0, 'i': 3.0, '4': 1.0, 'on': 1.0, 'able': 1.0, 'to': 3.0, 'as': 1.0, 'all': 1.0, 'fabric': 1.0, 'start': 1.0, 'red': 1.0, 'stacking': 1.0, 'so': 1.0, 'thankful': 1.0, 'especially': 1.0, 'little': 1.0, 'birdy': 1.0, 'a': 1.0, 'we': 1.0, 't': 2.0, 's': 2.0, 'this': 2.0, 'perfect': 1.0, 'size': 1.0}
Word element => {'activity': 1.0, 'use': 1.0, 'our': 1.0, 'to': 3.0, 'classify': 1.0, 'would': 1.0, 'each': 1.0, 'i': 2.0, '4': 1.0, 'having': 1.0, 'than': 1.0, 'pieces': 1.0, 'gone': 1.0, 'no': 1.0, 'issues': 1.0, 'are': 3.0, 'as': 2.0, 'heavy': 1.0, 'great': 1.0, 'shapes': 1.0, 'of': 3.0, 'the': 4.0, 'find': 1.0, 'since': 1.0, 'played': 1.0, 'and': 7.0, 'play': 2.0, 'far': 1.0, 'construction': 1.0, 'around': 1.0, 'at': 1.0, 'is': 5.0, 'they': 2.0, 'toy': 4.0, 'have': 2.0, 'a': 1.0, '12': 1.0, 'had': 2.0, 'months': 2.0, 'so': 2.0, 'simply': 1.0, 'materials': 3.0, 'been': 1.0, 'it': 6.0, 'kids': 2.0, 'soft': 1.0, 'with': 6.0, 'now': 1.0, 'interestng': 1.0, 'stacker': 4.0, 'most': 2.0, 'in': 2.0, 'my': 1.0, 'fits': 1.0, 'opinion': 1.0, 'for': 1.0, 'unique': 1.0, 'any': 2.0, 'sizes': 2.0, 'highy': 1.0, 'still': 1.0, 'every': 1.0, 'through': 1.0, 'material': 1.0, 'this': 6.0, 'highly': 1.0, 'part': 1.0, 'opposed': 1.0, 'infantino': 1.0, 'toys': 1.0, 'bag': 1.0, 'different': 1.0, 'same': 1.0, 'shape': 1.0, 'twins': 1.0, 'primarily': 1.0, 'better': 1.0, 'pack': 1.0, 'various': 1.0, 'safe': 1.0, 'we': 2.0, 'take': 1.0, 'because': 3.0, 'that': 1.0, 'young': 1.0, 'infants': 1.0, 'easy': 1.0, 'also': 1.0, 'us': 1.0, 'on': 1.0, 'them': 1.0, 'trips': 1.0, 'has': 1.0, 'always': 1.0, 'happy': 1.0, 'were': 1.0, 'piece': 1.0, 'recommend': 1.0}
Word element => {'puncture': 1.0, 'would': 1.0, 'chewing': 1.0, 'feared': 1.0, 'unclear': 1.0, 'in': 2.0, 'did': 1.0, 'although': 1.0, 'rattle': 1.0, 'my': 1.0, 'the': 6.0, 'got': 1.0, 'cheapest': 1.0, 'as': 1.0, 'toss': 1.0, 'ring': 3.0, '7': 1.0, 'toys': 1.0, 'of': 2.0, 'was': 3.0, 'month': 1.0, 'this': 1.0, 'it': 2.0, 'yet': 1.0, 'one': 2.0, 'love': 1.0, 'green': 1.0, 'i': 3.0, 'old': 1.0, 'filled': 1.0, 'is': 1.0, 'what': 1.0, 'her': 2.0, 'garbage': 1.0, 'favorites': 1.0, 'she': 1.0, 'mirrored': 1.0, 'and': 2.0}
Word element => {'because': 1.0, 'but': 1.0, 'through': 1.0, 'goes': 1.0, 'them': 1.0, 'also': 1.0, 'batteries': 1.0, 'little': 1.0, 'stimulating': 1.0, 'quickly': 1.0, 'fun': 1.0, 'are': 1.0, 'over': 2.0, 'would': 1.0, 'button': 1.0, 'daughter': 2.0, 'for': 3.0, 'ones': 1.0, 'the': 2.0, 'great': 1.0, 'colors': 1.0, 'toy': 2.0, 'loved': 2.0, 'it': 5.0, 'this': 2.0, 'dance': 1.0, 'is': 3.0, 'pretty': 1.0, '4mo': 1.0, 'watch': 1.0, 'and': 4.0, 'that': 1.0, 'thought': 1.0, 'grab': 1.0, 'to': 2.0, 'was': 1.0, 'so': 1.0, 'a': 1.0, 'funny': 1.0, 'learned': 1.0, 'how': 1.0, 'my': 2.0, 'push': 2.0, 'easy': 1.0, 'she': 1.0}
Word element => {'give': 1.0, 'gifts': 1.0, 'favorite': 1.0, 'of': 1.0, 'and': 3.0, 'catching': 1.0, 'as': 1.0, 'the': 2.0, 'is': 3.0, 'music': 1.0, 'to': 1.0, 'colorful': 1.0, 'toy': 1.0, 'pleasant': 1.0, 'has': 1.0, 'eye': 1.0, 'my': 2.0, 'grandchild': 1.0, 'gift': 1.0, 'movement': 1.0, 'received': 1.0, 'become': 1.0, 'first': 1.0, 'this': 1.0, 'it': 2.0, 'bright': 1.0, 'a': 1.0, 'one': 1.0}
Word element => {'longer': 1.0, 'backups': 1.0, 'have': 1.0, 'just': 2.0, 'from': 1.0, 'if': 1.0, 'know': 1.0, 'don': 1.0, 'i': 1.0, 'the': 3.0, 'use': 1.0, 'lasted': 1.0, 'toy': 3.0, 'likes': 1.0, 'more': 1.0, 'is': 1.0, 'makes': 1.0, 'with': 1.0, 'wish': 1.0, 'this': 2.0, 'it': 5.0, 'she': 2.0, 'her': 1.0, 'last': 1.0, 'all': 2.0, 'our': 1.0, 'that': 1.0, 'for': 1.0, 'love': 2.0, 'daughter': 1.0, 't': 1.0, 'we': 3.0, 'plays': 1.0, 'button': 1.0, 'weeks': 1.0, 'make': 1.0, 'noise': 1.0, 'several': 1.0, 'and': 1.0, 'probably': 1.0, 'but': 1.0, 'can': 1.0, 'wear': 1.0, 'move': 1.0, 'however': 1.0, 'time': 1.0, 'so': 2.0, 'out': 1.0, 'quickly': 1.0, '6': 1.0, 'since': 1.0, 'much': 1.0, 'bought': 1.0}
Word element => {'disappointed': 1.0, 'to': 1.0, 'have': 1.0, 'sooo': 1.0, 'you': 2.0, 'easily': 1.0, 'antsy': 1.0, 'dansy': 1.0, 'something': 1.0, 'that': 1.0, 'there': 1.0, 'was': 1.0, 'now': 1.0, 'it': 3.0, 'he': 4.0, 'much': 1.0, 'only': 2.0, 'moving': 1.0, 'pounds': 1.0, 'i': 1.0, 'old': 2.0, 'my': 1.0, 'since': 1.0, 't': 1.0, 'a': 1.0, 'and': 6.0, 'changes': 1.0, 'loved': 1.0, 'buy': 1.0, 'grandson': 1.0, 'holds': 1.0, 'is': 3.0, 'the': 4.0, 'great': 1.0, 'about': 1.0, 'whenever': 1.0, '5': 1.0, 'different': 1.0, 'one': 1.0, 'bought': 1.0, 'months': 2.0, 'your': 1.0, 'on': 1.0, 'little': 2.0, 'delights': 1.0, '2': 1.0, 'music': 1.0, 'just': 1.0, 'be': 1.0, 'him': 1.0, 'almost': 1.0, 'his': 1.0, 'won': 1.0, 'has': 1.0, 'toy': 1.0, 'mood': 1.0, 'bit': 1.0, 'this': 2.0, 'cranky': 1.0, 'enjoys': 1.0, 'handles': 1.0, 'are': 1.0, 'chewing': 1.0, 'for': 2.0, '14': 1.0}
Word element => {'for': 1.0, 'on': 2.0, 'perfect': 1.0, 'chew': 1.0, 'textures': 1.0, '3': 1.0, 'different': 1.0, 'many': 1.0, 'has': 1.0, 'our': 1.0, 'baby': 1.0, 'and': 2.0, 'cute': 1.0, 'absolutely': 1.0, 'it': 1.0, 'months': 1.0, 's': 1.0, 'loves': 1.0, 'this': 1.0, 'to': 1.0, 'toy': 1.0, 'so': 2.0}
Word element => {'keep': 2.0, 'trouble': 1.0, 'clean': 1.0, 'out': 1.0, 'her': 2.0, 'carried': 1.0, 'my': 2.0, 'any': 1.0, 'another': 1.0, 'be': 1.0, 'bought': 1.0, 'i': 1.0, 'when': 1.0, 'in': 2.0, 'law': 1.0, 'much': 1.0, 'the': 1.0, 'mother': 1.0, 'so': 1.0, 'this': 1.0, 'for': 2.0, 'love': 1.0, 'without': 1.0, 'can': 1.0, 'entertained': 1.0, 'we': 1.0, 'hands': 1.0, 'store': 1.0, 'she': 1.0, 'duaghter': 1.0, 'has': 1.0, 'they': 2.0, 'easily': 1.0, 'roll': 1.0, 'of': 1.0, 'up': 1.0, 'and': 3.0}
Word element => {'servers': 1.0, 'otherwise': 1.0, 'its': 1.0, 'cart': 1.0, 'handles': 1.0, 'shopping': 1.0, 'over': 1.0, 'as': 2.0, 'wish': 1.0, 'padded': 1.0, 'i': 1.0, 'all': 1.0, 'thought': 1.0, 'it': 2.0, 'not': 1.0, 'was': 1.0, 'easier': 1.0, 'to': 1.0, 'purpose': 1.0, 'put': 1.0}
Word element => {'gift': 1.0, 'one': 1.0, 'second': 1.0, 'now': 1.0, 'because': 1.0, 'glad': 1.0, 'am': 1.0, 'can': 1.0, 'but': 1.0, '2': 1.0, 'ordered': 1.0, 'accidentally': 1.0, 'i': 3.0, 'purchase': 1.0, 'with': 1.0, 'toy': 1.0, 'secure': 1.0, 'front': 1.0, 'right': 1.0, 'a': 3.0, 'there': 1.0, 'give': 1.0, 'stay': 1.0, 'have': 1.0, 'flats': 1.0, 'pacifiers': 1.0, 'being': 1.0, 'too': 1.0, 'and': 4.0, 'just': 1.0, 'this': 2.0, 'happy': 1.0, 'velcro': 1.0, 'cart': 3.0, 'on': 2.0, 'around': 1.0, 'is': 3.0, 'that': 1.0, 'it': 3.0, 'covers': 1.0, 'sanitizer': 1.0, 'cushion': 1.0, 'very': 1.0, 'little': 1.0, 'offers': 1.0, 'metal': 1.0, 'of': 1.0, 'place': 1.0, 'without': 1.0, 'the': 10.0, 'spot': 1.0, 'great': 2.0, 'such': 1.0, 'store': 1.0, 'folds': 1.0, 'easy': 1.0, 'advertises': 1.0, 'in': 3.0, 'cumbersome': 1.0, 'take': 1.0, 'buckle': 1.0, 'car': 1.0, 'colors': 1.0, 'are': 2.0, 'fun': 1.0, 'prints': 1.0, 'things': 1.0, 'enough': 1.0, 'cover': 1.0, 'off': 1.0, 'extra': 1.0, 'even': 1.0, 'pockets': 1.0, 'actually': 1.0, 'for': 1.0, 'seat': 1.0, 'all': 3.0, 'to': 4.0, 'as': 2.0, 'hand': 1.0}
Word element => {'nico': 1.0, 'higi': 1.0, 'del': 1.0, 'el': 1.0, 'tocar': 1.0, 'eacute': 1.0, 'de': 1.0, 'aislado': 1.0, 'carrito': 1.0, 'me': 1.0, 'directamente': 1.0, 'especial': 1.0, 'lleva': 1.0, 'encanta': 1.0, 'es': 1.0, 'para': 1.0, 'lo': 1.0, 'se': 2.0, 'cuando': 1.0, 'al': 2.0, 'mantiene': 2.0, 'bebe': 1.0, 'supermercado': 2.0}
Word element => {'high': 1.0, 'is': 2.0, 'the': 2.0, 'and': 1.0, 'very': 1.0, 'cart': 1.0, 'clean': 1.0, 'shopping': 1.0, 'to': 2.0, 'easy': 2.0, 'all': 2.0, 'carry': 1.0, 'cover': 1.0, 'chair': 1.0, 'everywhere': 1.0}
Word element => {'very': 1.0, 'trying': 1.0, 's': 1.0, 'pieces': 1.0, 'spin': 1.0, 'one': 1.0, 'between': 1.0, 'old': 1.0, 'purchase': 1.0, 'purchased': 1.0, 'toy': 1.0, 'legs': 1.0, '5': 1.0, 'grab': 1.0, 'triangle': 1.0, 'to': 2.0, 'now': 1.0, 'is': 1.0, 'crawl': 1.0, 'on': 2.0, 'our': 1.0, 'and': 4.0, 'month': 2.0, 'learning': 1.0, 'happy': 1.0, 'ago': 1.0, 'even': 1.0, 'his': 3.0, 'towards': 1.0, 'put': 1.0, 'a': 1.0, 'it': 1.0, 'with': 3.0, 'he': 2.0, 'this': 2.0, 'loves': 1.0, 'other': 1.0, 'we': 2.0, 'sit': 1.0, 'hand': 2.0, 'own': 1.0, 'll': 2.0, 'the': 3.0}
Word element => {'price': 1.0, 'worth': 1.0, 'certainly': 1.0, 'minutes': 1.0, 'for': 1.0, 'happily': 1.0, 'with': 1.0, 'of': 1.0, 'out': 1.0, 'took': 1.0, 'see': 1.0, '30': 1.0, 'this': 2.0, 'he': 6.0, 'it': 5.0, 'what': 1.0, 'his': 1.0, 'something': 1.0, 've': 1.0, 'enjoys': 1.0, 'lately': 1.0, 'going': 1.0, 's': 1.0, 'way': 1.0, 'i': 1.0, 'noticed': 1.0, 'old': 1.0, 'my': 1.0, 'from': 1.0, 'matter': 1.0, 'been': 1.0, 'box': 1.0, 'that': 3.0, 'loves': 1.0, 'to': 2.0, 'has': 1.0, 'toy': 2.0, 'toys': 1.0, 'still': 1.0, 'son': 1.0, 'is': 2.0, 'months': 1.0, 'strong': 1.0, 'on': 1.0, 'side': 3.0, '7': 1.0, 'sitting': 1.0, 'can': 2.0, 'other': 1.0, 'no': 1.0, 'which': 1.0, 'and': 4.0, 'finds': 1.0, 'turning': 1.0, 'turn': 1.0, 'little': 1.0, 'the': 3.0, 'turns': 1.0, 'hands': 1.0, 'manipulate': 1.0, 'just': 1.0, 'light': 1.0, 'enough': 1.0, 'so': 1.0, 'pick': 1.0, 'over': 1.0, 'up': 1.0}
Word element => {'complicated': 1.0, 'months': 1.0, 'be': 1.0, 'head': 1.0, 'big': 1.0, 'keeps': 1.0, 'but': 1.0, 'nice': 1.0, 'babies': 1.0, 'against': 1.0, 'bit': 1.0, 'under': 1.0, 'a': 1.0, 'might': 1.0, 'it': 1.0, 'this': 1.0, 'hitting': 1.0, 'is': 1.0, 'for': 1.0, '6': 1.0, 'my': 1.0, 'toy': 1.0, 'baby': 1.0, 'her': 1.0}
Word element => {'down': 1.0, 'take': 1.0, 'gets': 1.0, 'now': 1.0, 'even': 1.0, 'in': 1.0, 'interested': 1.0, 'been': 1.0, 'always': 1.0, 'four': 1.0, 'was': 1.0, 'developmental': 1.0, 'excited': 1.0, 'nice': 1.0, 'because': 1.0, 'this': 1.0, 'first': 1.0, 'i': 2.0, 'makes': 1.0, 'old': 2.0, 'thinks': 1.0, 'daughter': 1.0, 'brain': 1.0, 'by': 1.0, 'sound': 1.0, 'over': 1.0, 'bought': 1.0, 'months': 3.0, 'with': 2.0, 'piece': 1.0, 'fun': 2.0, 'since': 1.0, 'lot': 1.0, 'it': 8.0, 'she': 8.0, 'the': 2.0, 'my': 1.0, 'too': 1.0, 'and': 2.0, 'see': 1.0, 'of': 1.0, 'toy': 1.0, 'has': 2.0, '12': 1.0, 'had': 2.0, 'to': 3.0, 'for': 1.0, 'rattling': 1.0, 'her': 2.0, 'when': 2.0, 'you': 1.0, 'a': 3.0, 's': 3.0, 'could': 1.0, 'working': 1.0, 'shelf': 1.0, 'began': 1.0, 'from': 1.0, 'while': 1.0, 'how': 1.0, 'figure': 1.0, 'little': 2.0, 'out': 1.0, 'played': 1.0, 'move': 1.0, 'each': 1.0, 'shake': 1.0, 'is': 1.0, 'around': 1.0}
Word element => {'during': 1.0, 'uses': 1.0, 'tummy': 1.0, 'all': 1.0, 'time': 2.0, 'has': 1.0, 'toy': 1.0, 'much': 1.0, 'loved': 1.0, 'daycare': 1.0, 'with': 1.0, 'he': 3.0, 'this': 1.0, 'it': 3.0, 's': 1.0, 'son': 1.0, 'my': 1.0, 'so': 1.0, 'i': 2.0, 'the': 1.0, 'figured': 1.0, 'him': 1.0, 'would': 1.0, 'at': 1.0, 'and': 1.0, 'get': 1.0, 'plays': 1.0, 'one': 1.0, 'for': 1.0, 'home': 1.0}
Word element => {'good': 1.0, 'still': 1.0, '3': 1.0, 'has': 1.0, 'in': 2.0, 'up': 1.0, 'can': 1.0, 'toys': 1.0, 'bird': 1.0, 'cage': 1.0, 'weeks': 1.0, 'inside': 1.0, 'shape': 1.0, 'and': 1.0, 'parrot': 2.0, 'hang': 1.0, 'she': 2.0, 'being': 1.0, 'my': 2.0, 'bought': 1.0, 'likes': 1.0, 's': 2.0, 'cheap': 1.0, 'i': 2.0, 'had': 1.0, 'to': 1.0, 'was': 1.0, 'one': 1.0, 'for': 1.0, 'this': 2.0, 'it': 4.0, 'durable': 1.0, 'which': 1.0, 'so': 1.0, 'chew': 1.0, 'most': 1.0, 'got': 1.0, 'is': 1.0, 'day': 1.0, 'why': 1.0}
Word element => {'more': 1.0, 'like': 1.0, 'to': 1.0, 'plays': 1.0, 'grow': 1.0, 'month': 1.0, '9': 1.0, 'my': 1.0, 'old': 1.0, 'toy': 1.0, 'very': 1.0, 'is': 1.0, 'time': 1.0, 'interesting': 1.0, 'for': 1.0, 'a': 2.0, 'few': 1.0, 'but': 1.0, 'will': 1.0, 'maybe': 1.0, 'minutes': 1.0, 'at': 1.0, 'it': 2.0, 'only': 1.0, 'with': 1.0, 'this': 1.0, 'he': 1.0}
Word element => {'6mo': 1.0, 'if': 1.0, 'limited': 1.0, 'that': 1.0, 'the': 1.0, 'are': 1.0, 'there': 1.0, 'noise': 1.0, 'doesnt': 1.0, 'thats': 1.0, 'down': 1.0, 'over': 1.0, 'up': 1.0, 'anything': 1.0, 'move': 1.0, 'construction': 1.0, 'they': 1.0, 'goin': 1.0, 'ok': 1.0, 'touch': 1.0, 'lots': 1.0, 'seems': 1.0, 'attention': 1.0, 'get': 2.0, 'really': 2.0, 'around': 1.0, 'more': 1.0, 'is': 4.0, 'old': 1.0, '8mo': 1.0, 'grabbing': 1.0, 'things': 1.0, 'r': 1.0, 'some': 1.0, 'somebody': 1.0, 'stool': 1.0, 'plush': 1.0, 'again': 1.0, 'you': 3.0, 'about': 1.0, 'and': 3.0, 'like': 1.0, 'know': 1.0, 'just': 2.0, 'not': 3.0, 'minute': 1.0, 'this': 3.0, 'dont': 2.0, 'big': 1.0, '1': 1.0, '13mo': 1.0, 'has': 1.0, 'kiddin': 1.0, 'likes': 1.0, 'said': 1.0, 'in': 1.0, 'step': 1.0, 'zippers': 1.0, 'cheap': 1.0, 'for': 3.0, 'made': 1.0, 'china': 1.0, 'smth': 1.0, 'alice': 1.0, 'sides': 1.0, 'rattles': 1.0, 'baby': 3.0, 'quality': 1.0, 'can': 1.0, 'but': 4.0, 'got': 1.0, 'it': 5.0, 'she': 1.0, 'of': 2.0, 'her': 2.0, 'touching': 1.0, 'then': 1.0, 'buttons': 1.0, 'i': 2.0, 'etc': 1.0, 'does': 1.0, 'beads': 1.0, 'toys': 3.0, 'its': 1.0, 'tiny': 1.0, 'much': 1.0, 'do': 2.0, 'pyramids': 1.0, 'to': 1.0, 'any': 1.0, 'all': 2.0, 'cups': 1.0, 'your': 1.0, 'movements': 1.0, 'make': 1.0, 'on': 2.0}
Word element => {'she': 1.0, 'with': 1.0, 'do': 1.0, 't': 1.0, 'likes': 1.0, 'isn': 1.0, 'my': 1.0, 'but': 1.0, 'it': 3.0, 'year': 1.0, 'seemed': 1.0, 'there': 1.0, 'much': 1.0, 'old': 1.0, 'to': 3.0, 'like': 1.0, 'around': 1.0, 'carry': 1.0, '1': 1.0, 'really': 1.0}
Word element => {'captivate': 1.0, 'always': 1.0, 'just': 1.0, 't': 1.0, 'such': 1.0, 's': 1.0, 'toy': 1.0, 'colors': 1.0, 'nice': 1.0, 'have': 1.0, 'seemingly': 1.0, 'love': 1.0, 'well': 1.0, 'since': 1.0, 'a': 2.0, 'sad': 1.0, 'child': 1.0, 'that': 1.0, 'our': 1.0, 'thought': 1.0, 'doesn': 1.0, 'but': 2.0, 'i': 1.0, 'briefly': 1.0, 'pieces': 1.0, 'moving': 1.0, 'this': 1.0, 'it': 3.0, 'with': 1.0, 'etc': 1.0, 'would': 2.0, 'grand': 1.0, 'daughter': 1.0, 'ignored': 1.0, 'played': 1.0, 'designed': 1.0, 'has': 1.0, 'ever': 1.0, 'so': 1.0}
Word element => {'nice': 1.0, 'playing': 1.0, 'time': 1.0, 'of': 1.0, 'lot': 1.0, 'spends': 1.0, 'and': 1.0, 'sit': 1.0, 'grandson': 1.0, 'my': 1.0, 'the': 1.0, 'one': 1.0, 'for': 1.0, 'colors': 1.0, 'toy': 1.0, 'to': 1.0, 'i': 2.0, 'cute': 1.0, 'super': 1.0, 'check': 1.0, 'a': 2.0, 'is': 2.0, 'larger': 1.0, 'purchased': 1.0, 'then': 1.0, 'with': 1.0, 'this': 2.0, 'it': 1.0, 'he': 1.0, 'much': 1.0, 'expected': 1.0, 'dimensions': 1.0, 'started': 1.0, 'just': 1.0}
Word element => {'i': 1.0, 'over': 1.0, 'girl': 1.0, 'fight': 1.0, 'it': 3.0, 'boy': 1.0, 'twin': 1.0, 'is': 1.0, 'recommend': 1.0, 'good': 1.0, 'sturdy': 1.0, 'strong': 1.0, 'highly': 1.0, 'very': 2.0, 'quality': 1.0, 'and': 2.0, 'my': 1.0}
Word element => {'loves': 1.0, 'parts': 1.0, 'that': 1.0, 'now': 1.0, 'him': 1.0, 'home': 1.0, 'at': 1.0, 'but': 1.0, 'us': 1.0, 'sitting': 1.0, 'take': 1.0, 'the': 1.0, 'great': 1.0, 't': 1.0, 'we': 1.0, 'much': 1.0, 'favorite': 2.0, 'has': 1.0, 's': 4.0, 'months': 1.0, 'little': 2.0, 'been': 1.0, 'anywhere': 1.0, 'my': 1.0, 'for': 2.0, 'one': 1.0, 'up': 1.0, '6': 1.0, 'all': 1.0, '8': 1.0, 'anyway': 1.0, 'from': 1.0, 'big': 1.0, 'as': 2.0, 'don': 1.0, 'toy': 2.0, 'about': 1.0, 'any': 1.0, 'is': 1.0, 'a': 2.0, 'moving': 1.0, 'he': 2.0, 'with': 1.0, 'this': 1.0, 'it': 3.0, 'so': 1.0}
Word element => {'made': 1.0, 'her': 1.0, 'colorful': 1.0, 'to': 1.0, 'old': 1.0, 'toy': 1.0, 'coordination': 1.0, 'eye': 1.0, 'awhile': 1.0, 'month': 1.0, 'hand': 1.0, '9': 1.0, 'keeps': 1.0, 'has': 1.0, 'something': 1.0, 'our': 1.0, 'that': 1.0, 'well': 1.0, 'a': 1.0, 'this': 1.0, 'loves': 1.0, 'busy': 1.0, 'for': 1.0, 'she': 1.0, 'great': 1.0, 'the': 1.0, 'different': 1.0, 'sides': 1.0, 'improve': 1.0, 'and': 2.0, 'each': 1.0, 'is': 1.0, 'side': 1.0}
Word element => {'bit': 1.0, 'nothing': 1.0, 'himself': 1.0, 'corner': 1.0, 'came': 1.0, 'is': 1.0, 'around': 1.0, 'move': 1.0, 'learning': 1.0, 'weight': 2.0, 'if': 1.0, 'not': 1.0, 'shape': 1.0, 'mention': 1.0, 'will': 1.0, 'his': 2.0, 'down': 1.0, 'favorite': 1.0, 'crawl': 1.0, 'with': 1.0, 'him': 1.0, 'out': 1.0, 'sides': 1.0, 'tries': 1.0, 'never': 2.0, 'but': 2.0, 'most': 1.0, 'triangular': 1.0, 'then': 1.0, 'taken': 1.0, 'it': 7.0, 'this': 2.0, 'flipped': 1.0, 'he': 6.0, 'son': 2.0, 'little': 2.0, 'very': 2.0, 'for': 2.0, 'nearing': 1.0, 'that': 1.0, 'been': 1.0, 'gave': 1.0, 'one': 2.0, 'months': 3.0, 'put': 2.0, 'on': 4.0, 'bulky': 1.0, 'about': 1.0, 'six': 2.0, 'makes': 1.0, 'old': 1.0, 'i': 3.0, 'tried': 1.0, 'was': 2.0, 'my': 2.0, 'really': 2.0, 'bringing': 1.0, 'toy': 5.0, 'has': 1.0, 'stable': 1.0, 'of': 4.0, 'have': 1.0, 'to': 5.0, 'all': 1.0, 'which': 1.0, 'spinners': 1.0, 'are': 1.0, 'spins': 1.0, 'them': 1.0, 's': 1.0, 'a': 8.0, 'just': 1.0, 'few': 2.0, 'hurt': 1.0, 'again': 1.0, '11': 1.0, 'when': 2.0, 'times': 1.0, 'moves': 1.0, 've': 1.0, 'waiting': 1.0, 'major': 1.0, 'now': 1.0, 'weeks': 1.0, 'play': 1.0, 'similar': 1.0, 'and': 4.0, 'the': 3.0}
Word element => {'baby': 1.0, 'entertain': 1.0, 'get': 1.0, 'rather': 1.0, 'bit': 1.0, 'an': 1.0, 'title': 1.0, 'just': 1.0, 'for': 1.0, 'product': 1.0, 'be': 1.0, 'okay': 1.0, 'got': 1.0, 'mom': 1.0, 'the': 12.0, 'my': 2.0, 'along': 1.0, 'and': 1.0, 'play': 2.0, 'd': 1.0, 'mirror': 1.0, 'other': 1.0, 'on': 5.0, 'in': 1.0, 'said': 2.0, 'son': 1.0, 'to': 1.0, 'as': 1.0, 'with': 3.0, 'this': 4.0, 'we': 1.0, 'a': 3.0, 'that': 3.0, 'same': 2.0, 'little': 2.0, 'have': 1.0, 'tikes': 1.0, 'can': 1.0, 'plastic': 1.0, 'more': 2.0, 'is': 4.0, 'level': 1.0, 'pieces': 1.0, 'cube': 3.0, 'one': 1.0, 'much': 2.0, 'better': 2.0, 'than': 1.0, 'flip': 1.0, 'toy': 2.0, 'about': 1.0, 'bigger': 1.0, 'spinner': 1.0, 'toys': 1.0, 'beads': 1.0, 'makes': 1.0, 'interesting': 1.0, 'side': 1.0, 'run': 1.0, 'not': 1.0, 'track': 1.0, 'i': 2.0}
Word element => {'little': 1.0, '2': 1.0, 'other': 1.0, 'some': 1.0, 'every': 1.0, 'move': 1.0, 'or': 1.0, 'many': 1.0, 'are': 1.0, 'there': 1.0, 'everyday': 1.0, 'with': 1.0, 'still': 1.0, 'a': 1.0, 'christmas': 1.0, 'grandmom': 1.0, 'getting': 1.0, 'up': 1.0, 'ended': 1.0, 'kind': 1.0, 'get': 1.0, 'activity': 1.0, 'millions': 1.0, 'toys': 2.0, 'beings': 1.0, 'of': 3.0, 'shopping': 1.0, 'they': 1.0, 'that': 1.0, 'were': 2.0, 'children': 1.0, 'now': 1.0, 'older': 1.0, 'month': 1.0, 'she': 3.0, 'it': 2.0, 'old': 1.0, 'i': 4.0, 'touch': 1.0, 'pick': 1.0, 'her': 5.0, 'youngest': 1.0, 'so': 3.0, 'playing': 1.0, 'the': 1.0, 'for': 3.0, 'is': 3.0, '10': 1.0, 'months': 1.0, 'sisters': 1.0, 'asking': 1.0, 'and': 2.0, 'part': 1.0, 'later': 1.0, 'hard': 1.0, 'from': 2.0, 'list': 1.0, 'have': 2.0, 'younger': 1.0, 'when': 2.0, 'seen': 2.0, 'has': 2.0, 'toy': 3.0, '3': 1.0, 'on': 1.0, 'put': 1.0, 'this': 5.0, 'wish': 2.0, 'things': 1.0, 'mainly': 1.0, 'just': 1.0, 'because': 2.0, 'what': 1.0, 'had': 2.0, 'to': 3.0, 'listen': 1.0, 'was': 1.0, 'my': 3.0, 'family': 1.0}
Word element => {'hugely': 1.0, 'interested': 1.0, 'keeps': 1.0, 'how': 1.0, 'do': 1.0, 'like': 1.0, 'mos': 1.0, 'now': 1.0, 'textures': 1.0, 'who': 1.0, 'busy': 1.0, 'that': 2.0, 'more': 1.0, 'around': 1.0, 'looking': 1.0, 'most': 1.0, 'can': 1.0, 'but': 1.0, 'with': 3.0, 'be': 2.0, 'somewhere': 1.0, 'immediately': 1.0, 'generally': 1.0, 'sturdy': 1.0, 'pink': 1.0, 'they': 1.0, 'cause': 1.0, 'a': 3.0, 'sides': 2.0, 's': 2.0, 'when': 1.0, 'you': 1.0, 'very': 1.0, 'posts': 1.0, 'am': 1.0, 'for': 3.0, 'toy': 2.0, 'baby': 2.0, 'my': 3.0, 'bought': 1.0, 'one': 2.0, 'exersaucer': 1.0, 'huge': 2.0, '5': 1.0, 'recommended': 1.0, 'and': 4.0, 'total': 1.0, 'green': 1.0, 'on': 1.0, 'months': 1.0, 'except': 1.0, '4': 1.0, 'well': 1.0, 'i': 3.0, 'junk': 1.0, 'took': 1.0, 'touching': 1.0, 'old': 2.0, 'was': 1.0, 'has': 1.0, 'eddie': 1.0, 'to': 4.0, 'all': 2.0, 'are': 1.0, 'first': 1.0, 'he': 4.0, 'plastic': 1.0, 'this': 4.0, 'him': 1.0, 'it': 5.0, 'the': 10.0, 'of': 5.0, 'there': 1.0, 'see': 1.0, 'in': 1.0, 'at': 1.0, 'is': 3.0, 'pic': 1.0, 'have': 1.0, 'liked': 1.0, 'just': 1.0, 'five': 1.0, 'flipping': 1.0, 'recently': 1.0, 'nice': 1.0, 'explored': 1.0, 'laced': 1.0, 'fan': 1.0, 'lots': 1.0, 'beads': 1.0, 'portable': 1.0, 'kept': 1.0, 'onto': 1.0, 'd': 1.0, 'twisty': 1.0, 'side': 3.0, 'which': 1.0, 'flaps': 2.0, 'know': 1.0, 'here': 1.0, 'weird': 1.0, '7': 1.0, 'up': 1.0, 'favorite': 1.0, 'if': 1.0, 'were': 1.0, 'not': 1.0, 'between': 1.0, 'continues': 1.0, 'laying': 1.0, 'interest': 1.0}
Word element => {'toy': 1.0, 'really': 1.0, 'with': 1.0, 'it': 1.0, 'wil': 1.0, 'box': 1.0, 'wasn': 1.0, 'child': 1.0, 'the': 3.0, 't': 1.0, 'kind': 1.0, 'those': 1.0, 'i': 1.0, 'one': 1.0, 'think': 1.0, 'its': 1.0, 'happy': 1.0, 'end': 1.0, 'boring': 1.0, 'that': 1.0, 'of': 3.0, 'up': 1.0, 'things': 1.0, 'at': 1.0, 'bottem': 1.0}
Word element => {'transport': 1.0, 'easy': 1.0, 'months': 2.0, '5': 1.0, 'too': 1.0, 'when': 1.0, 's': 1.0, 'enjoys': 1.0, 'son': 1.0, 'to': 1.0, 'was': 1.0, 'now': 1.0, 'really': 1.0, 'is': 1.0, '10': 1.0, 'for': 1.0, 'bought': 1.0, 'we': 1.0, 'old': 2.0, 'still': 1.0, 'toy': 1.0, 'our': 1.0, 'that': 1.0, 'almost': 1.0, 'he': 3.0, 'this': 2.0, 'it': 1.0}
Word element => {'happy': 1.0, 'month': 1.0, 'it': 1.0, 'manipulated': 1.0, 'his': 1.0, 'activities': 1.0, '7': 1.0, 'a': 1.0, 'is': 2.0, 'on': 1.0, 'that': 1.0, 'easily': 1.0, 'like': 1.0, 'by': 1.0, 'playmat': 1.0, 'baby': 1.0, 'i': 1.0, 'while': 1.0, 'plenty': 1.0, 'there': 1.0, 'of': 1.0, 'keep': 1.0, 'to': 1.0, 'the': 1.0}
Word element => {'product': 1.0, 'like': 1.0, 'eyes': 1.0, 'seen': 1.0, 'item': 1.0, 'same': 1.0, 'which': 1.0, 'look': 1.0, 'year': 1.0, 'good': 2.0, 'toys': 1.0, 'by': 1.0, 'kids': 1.0, 'playing': 1.0, 'that': 1.0, 'old': 1.0, 'years': 1.0, 'baby': 1.0, 'currently': 1.0, '2': 1.0, 'many': 1.0, 'is': 3.0, 'moving': 1.0, 'it': 1.0, 'with': 1.0, 'my': 1.0, 'a': 1.0, 'well': 1.0, '1': 2.0, 'and': 1.0, 'after': 1.0, 'not': 1.0, 'nolgeot': 1.0, 'have': 1.0}
Word element => {'entertaining': 1.0, 'he': 1.0, 'very': 1.0, 'similar': 1.0, 'that': 1.0, 'one': 1.0, 'made': 1.0, 'my': 1.0, 'them': 1.0, 'another': 1.0, 'well': 1.0, '5': 1.0, 'is': 1.0, 'son': 1.0, 'month': 1.0, 'old': 1.0, 'just': 1.0, 'we': 1.0, 'finds': 1.0, 'loves': 1.0, 'this': 1.0, 'have': 1.0}
Word element => {'lack': 1.0, 'stimulating': 1.0, 'mix': 1.0, 'things': 1.0, 'only': 1.0, 'these': 1.0, 'sure': 1.0, 'edges': 1.0, 'not': 1.0, 'in': 4.0, 'mistaken': 1.0, 'what': 2.0, 'sit': 1.0, 'when': 2.0, 'thought': 1.0, 'be': 1.0, 'it': 11.0, 'so': 3.0, 'were': 1.0, 'reviews': 1.0, 'moving': 1.0, 'them': 1.0, 'has': 4.0, 'always': 2.0, 'few': 1.0, 'this': 5.0, '7': 1.0, 'up': 1.0, 'noisy': 1.0, 'about': 1.0, 'more': 1.0, 'isn': 1.0, 'thrown': 1.0, 'was': 1.0, 'minutes': 1.0, 'another': 1.0, 'angle': 1.0, 'or': 4.0, 'because': 2.0, 'easily': 1.0, 'that': 5.0, 'maybe': 2.0, 'for': 4.0, 'the': 23.0, 'original': 1.0, 'by': 1.0, 'whirlygig': 1.0, 'lying': 1.0, '8': 1.0, 'plastic': 1.0, 'money': 1.0, 'bought': 1.0, 'dropped': 1.0, 'getting': 1.0, 'too': 1.0, 'one': 3.0, 've': 1.0, 'down': 2.0, 'sadly': 1.0, 'seems': 1.0, 'risk': 1.0, 'poorly': 1.0, 'i': 7.0, 'well': 1.0, 'of': 5.0, 'old': 2.0, 'would': 1.0, 'distracted': 1.0, 'months': 1.0, 'trouble': 1.0, 'which': 1.0, 'again': 1.0, 'wire': 2.0, 'loves': 2.0, 'almost': 1.0, 'attention': 1.0, 'other': 3.0, 'an': 1.0, 'right': 1.0, 'to': 4.0, 'straight': 1.0, 'out': 1.0, 'daughter': 3.0, 'glowing': 1.0, 'welcome': 1.0, 'how': 1.0, 'edited': 1.0, 'free': 1.0, 'unassisted': 1.0, 'interested': 1.0, 'either': 1.0, 'pulling': 1.0, 'bad': 1.0, 'my': 3.0, 'are': 4.0, 'slightly': 1.0, 'review': 2.0, 'half': 1.0, 'house': 1.0, 'toy': 3.0, 'used': 1.0, 'move': 1.0, 't': 2.0, 'a': 5.0, 'seem': 1.0, 'kids': 2.0, 'stronger': 1.0, 'month': 2.0, 'same': 1.0, 'batteries': 1.0, 'device': 1.0, 'get': 1.0, 'often': 1.0, 'she': 6.0, 'like': 2.0, 'raised': 1.0, 'respite': 1.0, 'from': 2.0, 'spent': 1.0, '15': 1.0, 'low': 1.0, 'toys': 4.0, 'colors': 1.0, 'noise': 2.0, 'some': 1.0, 'beads': 5.0, 'stick': 1.0, 'quality': 1.0, 'also': 1.0, 'sitting': 1.0, 'holds': 1.0, 'rounded': 1.0, 'much': 1.0, 'there': 2.0, 'very': 2.0, 'her': 2.0, 'little': 2.0, 'ago': 1.0, 'two': 2.0, 'require': 1.0, 'engage': 1.0, 'at': 2.0, 'flippy': 1.0, 'panels': 1.0, 'tubes': 1.0, '20': 1.0, 'all': 4.0, 'way': 2.0, 'around': 2.0, 'requires': 1.0, 'potentially': 1.0, 'dexterity': 1.0, 'definitely': 1.0, 'older': 1.0, 'inevitably': 1.0, 'supposed': 1.0, 'three': 1.0, 'designed': 1.0, 'considering': 1.0, 'company': 1.0, 'into': 1.0, 'but': 4.0, 'rows': 1.0, 'act': 1.0, 'timer': 1.0, 'light': 1.0, 'hung': 1.0, 'with': 3.0, 'static': 1.0, 'corners': 1.0, 'face': 1.0, 'corner': 1.0, 'could': 1.0, 'can': 2.0, 'is': 11.0, 'turn': 2.0, 'independently': 1.0, 'm': 1.0, 's': 2.0, 'doesn': 1.0, 'bent': 1.0, 'textures': 1.0, 'on': 1.0, 'center': 1.0, 'end': 1.0, 'you': 2.0, 'sand': 1.0, 'they': 1.0, 'now': 3.0, 'slide': 1.0, 'back': 1.0, 'heavy': 1.0, 'whatever': 1.0, 'loud': 1.0, 'table': 1.0, 'side': 3.0, 'll': 2.0, 'height': 1.0, 'dangerous': 1.0, 'unsuspecting': 1.0, 'toes': 1.0, 'and': 14.0, 'tried': 1.0, 'runs': 1.0, 'grow': 1.0, 'meantime': 1.0, 'obnoxious': 1.0, 'have': 2.0, 'found': 1.0}
Word element => {'again': 1.0, 'not': 1.0, 'would': 1.0, 'very': 1.0, 'their': 1.0, 'babies': 1.0, 'i': 1.0, 'briefly': 1.0, 'just': 1.0, 'with': 1.0, 'it': 2.0, 'then': 1.0, 'purchase': 1.0, 'long': 1.0, 'interest': 1.0, 'move': 1.0, 'play': 1.0, 'along': 1.0, 'never': 1.0, 'held': 1.0}
Word element => {'recommend': 1.0, 'i': 1.0, 'easy': 1.0, 'durable': 1.0, 'pretty': 1.0, 'flipped': 1.0, 'is': 1.0, 'toy': 2.0, 'when': 1.0, 'noise': 1.0, 'rainstick': 1.0, 'a': 2.0, 'they': 1.0, 'triangles': 1.0, 'little': 1.0, 'also': 1.0, 'in': 1.0, 'connect': 1.0, 'to': 1.0, 'all': 1.0, 'for': 1.0, 'each': 2.0, 'its': 2.0, 'much': 1.0, 'several': 1.0, 'activities': 1.0, 'clean': 1.0, 'different': 1.0, 'spinning': 1.0, '9': 1.0, 'month': 1.0, 'enjoys': 1.0, 'son': 1.0, 'type': 2.0, 'old': 1.0, 'side': 1.0, 'clear': 1.0, 'perfect': 1.0, 'this': 1.0, 'so': 1.0, 'which': 1.0, 'favorites': 1.0, 'have': 1.0, 'small': 1.0, 'there': 2.0, 'of': 2.0, '34': 4.0, 'my': 1.0, 'these': 1.0, 'sides': 1.0, 'and': 4.0, 'features': 1.0, 'his': 1.0, 'are': 4.0, 'spinners': 1.0, 'hands': 1.0, 'the': 4.0, 'orange': 1.0, 'balls': 1.0, 'make': 1.0, 'on': 1.0, 'corkscrew': 1.0, 'tubes': 1.0, 'that': 1.0, 'definitely': 1.0, 'blue': 1.0}
Word element => {'plus': 1.0, 'noise': 1.0, 'no': 1.0, 'are': 2.0, 'that': 2.0, 'toys': 1.0, 'bought': 1.0, 'be': 2.0, 'favorite': 1.0, 'with': 1.0, 'it': 6.0, 'she': 2.0, 'will': 3.0, 'i': 5.0, 'old': 1.0, 'only': 1.0, 'granddaughter': 1.0, 'was': 2.0, 'older': 1.0, 'weeks': 1.0, 'now': 1.0, 'think': 1.0, 'impressed': 1.0, 'soon': 1.0, 'and': 4.0, 'is': 4.0, 'my': 1.0, 'the': 2.0, 'heavy': 2.0, 'reviews': 1.0, 'least': 1.0, 'all': 1.0, 'as': 2.0, 'so': 1.0, 'would': 1.0, 'not': 2.0, 'know': 1.0, 'forget': 1.0, 'love': 1.0, 'where': 1.0, 'plastic': 1.0, '6': 1.0, 'growing': 1.0, 'fast': 1.0, 'a': 4.0, 'toy': 2.0, 'really': 1.0, 'attractive': 1.0, 'cheaply': 1.0, 'made': 1.0, 'very': 3.0, 'little': 1.0, 'but': 2.0, 'most': 1.0}
Word element => {'from': 1.0, 'off': 1.0, 'this': 1.0, 'with': 1.0, 'time': 1.0, 'has': 1.0, '6': 1.0, 'of': 1.0, 'played': 1.0, '17': 1.0, 'on': 1.0, 'months': 1.0, 'never': 1.0, 'child': 1.0, 'my': 1.0, 'more': 1.0, 'to': 1.0, 'but': 1.0, 'than': 1.0, 'a': 2.0, 'and': 1.0, 'couple': 1.0, 'minutes': 1.0, 'at': 1.0}
Word element => {'toy': 1.0, 'at': 1.0, 'bored': 1.0, 'we': 1.0, 'different': 1.0, '6': 1.0, 'get': 1.0, 'and': 1.0, 'grandson': 1.0, 'my': 1.0, 'great': 1.0, 't': 1.0, 'the': 1.0, 'for': 1.0, 'purchased': 1.0, 'old': 1.0, 'i': 1.0, 'was': 1.0, 'all': 1.0, 'fascinated': 1.0, 'by': 1.0, 'mos': 1.0, 'this': 1.0, 'he': 1.0, 'it': 1.0, 'with': 1.0, 'sides': 1.0, 'three': 1.0, 'didn': 1.0}
Word element => {'stuff': 1.0, 'seems': 1.0, 'for': 1.0, 'pretty': 1.0, 'so': 1.0, 'good': 1.0, 'stays': 1.0, 'activities': 1.0, 't': 1.0, 'thing': 1.0, 'hold': 1.0, 'it': 2.0, 'this': 1.0, 'with': 1.0, 'playing': 1.0, 'stop': 2.0, '7': 1.0, 'try': 1.0, 'won': 1.0, 'you': 1.0, 'month': 1.0, 'him': 2.0, 'my': 1.0, 'make': 1.0, 'interesting': 1.0, 'and': 2.0, 'mad': 1.0, 'gets': 1.0, 'when': 1.0, 'has': 1.0, 'of': 1.0, 'a': 1.0, 'lot': 1.0}
Word element => {'built': 1.0, 'durable': 1.0, 'incredibly': 1.0, 'is': 1.0, 'use': 1.0, 'of': 1.0, 'lot': 1.0, 'next': 1.0, 'giggles': 1.0, 'kicks': 1.0, 'on': 1.0, 'toys': 1.0, 'spin': 1.0, 'child': 1.0, 'up': 1.0, 'bright': 1.0, 'year': 1.0, 'and': 4.0, 'do': 1.0, 'get': 2.0, 'especially': 1.0, 'new': 1.0, 'the': 5.0, 'such': 1.0, '2': 1.0, 'well': 2.0, 'toy': 2.0, 'colors': 1.0, 'about': 1.0, 'old': 2.0, 'different': 1.0, 'spinning': 1.0, 'parts': 1.0, 'bought': 1.0, 'months': 1.0, 'loved': 1.0, 'this': 1.0, 'with': 1.0, 'for': 2.0, 'daughter': 1.0, 'when': 1.0, 'was': 1.0, 'now': 1.0, 'it': 4.0, 'she': 6.0, 'continued': 1.0, 'as': 5.0, 'our': 2.0, 'to': 1.0, 'grow': 1.0, 'a': 2.0, 'we': 1.0, 'could': 2.0, 'things': 1.0, 'from': 1.0, 'seeing': 1.0, '6': 1.0, 'how': 1.0, 'fast': 1.0, 'sounds': 1.0, 'will': 2.0, 'still': 1.0, 'moving': 1.0, 'pick': 1.0}
Word element => {'7': 1.0, 'clean': 1.0, 'words': 1.0, 'other': 1.0, 'in': 3.0, 'balls': 1.0, 'little': 1.0, 'of': 1.0, 'used': 1.0, 'tons': 1.0, 'there': 1.0, 'break': 1.0, 'condition': 1.0, 'cause': 1.0, 'new': 1.0, 'drop': 1.0, 'weight': 1.0, 'some': 1.0, 'got': 2.0, 'since': 1.0, 'item': 1.0, 'long': 1.0, '20mins': 1.0, 'attention': 1.0, 'his': 1.0, 'loud': 1.0, 'noise': 1.0, 'laundry': 1.0, 'makes': 1.0, 'up': 1.0, 'way': 1.0, 'down': 1.0, 'can': 2.0, 'sitting': 1.0, 's': 3.0, 't': 1.0, 'may': 1.0, 'my': 1.0, 'serves': 1.0, 'bending': 1.0, 'enough': 2.0, 'is': 1.0, 'completely': 1.0, 'around': 1.0, 'mine': 1.0, 'keeps': 1.0, 'pick': 1.0, 'do': 1.0, 'its': 1.0, 'all': 1.0, 'to': 5.0, 'or': 2.0, 'this': 2.0, 'plastic': 1.0, 'he': 3.0, 'annoying': 1.0, 'it': 7.0, 'with': 1.0, 'loves': 1.0, 'into': 1.0, 'that': 2.0, 'ps': 1.0, 'careful': 1.0, 'without': 1.0, 'the': 1.0, 'kiddo': 1.0, 'playing': 1.0, 'lol': 1.0, 'if': 1.0, 'come': 1.0, 'move': 1.0, 'big': 1.0, 'hard': 1.0, 'from': 1.0, 'mess': 1.0, 'i': 2.0, 'play': 1.0, 'and': 6.0, 'not': 2.0, 'me': 1.0, 'get': 1.0, 'for': 3.0, 'be': 1.0, 'him': 3.0, 'so': 1.0, 'time': 2.0, 'check': 1.0, 'on': 2.0, 'huge': 1.0, 'triangle': 1.0, 'sucked': 1.0}
Word element => {'ok': 1.0, 'just': 1.0, 'right': 1.0, 'now': 1.0, 'older': 1.0, 'gets': 1.0, 'more': 1.0, 'captivated': 1.0, 'but': 2.0, 'seems': 1.0, 'will': 1.0, 'if': 1.0, '9': 1.0, 'her': 2.0, 'does': 1.0, 'with': 3.0, 'leave': 1.0, 'interacting': 1.0, 'play': 1.0, 'and': 3.0, 'probably': 1.0, 'poke': 1.0, 'as': 1.0, 'to': 3.0, 'toy': 1.0, 'alone': 1.0, 'stay': 1.0, 'heavy': 1.0, 'there': 1.0, 'of': 1.0, 'when': 1.0, 'm': 1.0, 'daughter': 1.0, 'old': 1.0, 'for': 2.0, 'the': 1.0, 'playing': 1.0, 'that': 1.0, 'i': 2.0, 'becomes': 1.0, 'my': 1.0, 'may': 1.0, 'uninterested': 1.0, 'kind': 1.0, 'big': 1.0, 'why': 1.0, 's': 2.0, 'a': 1.0, 'it': 5.0, 'she': 5.0, 'month': 1.0, 'so': 2.0, 'like': 3.0, 'prod': 1.0, 'at': 1.0, 'though': 1.0}
Word element => {'again': 1.0, 'definitely': 1.0, 'would': 1.0, 'boy': 1.0, 'our': 1.0, 'entertainment': 1.0, 'hours': 1.0, 'has': 1.0, 'price': 1.0, 'type': 1.0, 'center': 1.0, 'activity': 1.0, 'simple': 1.0, 'bag': 1.0, 'see': 1.0, 'when': 1.0, 'plane': 1.0, 'turn': 2.0, 'in': 2.0, 'which': 1.0, 'like': 2.0, 'some': 2.0, 'no': 1.0, 'thing': 1.0, 'about': 2.0, 'buy': 1.0, 'something': 1.0, 'new': 1.0, 'that': 4.0, 'provided': 1.0, 'loves': 1.0, 'is': 3.0, 'babies': 1.0, 'more': 2.0, 'around': 1.0, 'his': 1.0, 'there': 3.0, 'set': 1.0, 'he': 3.0, 'to': 8.0, 'son': 2.0, 'for': 7.0, 'this': 4.0, 'my': 2.0, 'toys': 2.0, 'started': 1.0, 'baby': 1.0, 'great': 1.0, 'big': 1.0, 'of': 4.0, 'doing': 1.0, 'the': 6.0, 'bought': 1.0, 'months': 1.0, 'wanting': 1.0, 'on': 2.0, 'i': 3.0, 'old': 1.0, 'do': 2.0, 'flippers': 1.0, 'its': 1.0, 'interesting': 1.0, 'than': 1.0, 'reach': 1.0, 'matter': 1.0, 'and': 5.0, 'green': 1.0, 'lot': 1.0, 'too': 1.0, 'toss': 1.0, 'out': 2.0, 'pink': 1.0, 'with': 1.0, 'easy': 1.0, 'learned': 1.0, 'who': 1.0, 'just': 3.0, 'toward': 1.0, 'you': 1.0, 'things': 2.0, 'take': 1.0, 'a': 4.0, 'go': 2.0, 'was': 1.0, 'cog': 1.0, 'needs': 1.0, 'smaller': 1.0, 'used': 1.0, 'toy': 2.0, 'move': 1.0, 'up': 1.0, 'along': 1.0, 'himself': 1.0, 'little': 3.0, '6': 1.0, 'track': 1.0, 'are': 4.0, 'first': 1.0, 'sitting': 1.0, 'but': 2.0, 'front': 1.0, 'it': 5.0, 'starting': 1.0, 'him': 2.0, 'interaction': 1.0, 'down': 1.0, 'turned': 1.0, 'whatever': 1.0, 'quickly': 1.0, 'find': 1.0, 'diaper': 1.0, 'playing': 1.0, 'an': 1.0}
Word element => {'portable': 1.0, 'of': 1.0, 'instead': 1.0, 'nice': 1.0, 'have': 1.0, 'would': 1.0, 'still': 1.0, 'necessities': 1.0, 'for': 1.0, 'playyard': 1.0, 'room': 1.0, 'ving': 1.0, 'toy': 3.0, 'tiny': 1.0, 'was': 1.0, 'to': 1.0, 'travel': 1.0, 'be': 1.0, 'but': 2.0, 'fits': 1.0, 'lea': 1.0, 'while': 1.0, 'expecting': 1.0, 'i': 1.0, 'solid': 1.0, 'as': 1.0, 'very': 1.0, 'a': 5.0, 'is': 1.0, 'bag': 1.0, 'this': 1.0, 'it': 3.0, 'perfectly': 1.0, 'been': 1.0, 'little': 1.0, 'bigger': 1.0, 'luckily': 1.0, 'in': 1.0, 'the': 1.0, 'diaper': 1.0}
Word element => {'sit': 1.0, 'this': 1.0, 'recommend': 1.0, 'would': 1.0, 'a': 1.0, 'activities': 1.0, '6': 1.0, 'all': 1.0, 'use': 1.0, 'perfect': 1.0, 'to': 2.0, 'old': 1.0, 'weight': 1.0, 'for': 3.0, 'my': 1.0, 'up': 1.0, 'infants': 1.0, 'and': 2.0, 'learning': 1.0, 'him': 1.0, 'great': 1.0, 'month': 1.0, 'colors': 1.0}
Word element => {'choice': 1.0, 'excellent': 1.0, 'out': 1.0, 'turned': 1.0, 'christmas': 1.0, '1st': 1.0, 'this': 1.0, 'my': 1.0, 'pleased': 1.0, 'was': 1.0, 'her': 2.0, 'daughter': 2.0, 'for': 2.0, '7': 1.0, 'it': 1.0, 'month': 1.0, 'an': 1.0, 'be': 1.0, 'old': 1.0, 'to': 2.0, 'receive': 1.0}
Word element => {'center': 1.0, 'activity': 1.0, 'like': 1.0, 'her': 1.0, 'sustain': 1.0, 't': 1.0, 'wooden': 1.0, 'toy': 1.0, 'our': 1.0, 'although': 1.0, 'to': 1.0, 'okay': 1.0, 'because': 1.0, 'little': 2.0, 'is': 1.0, 'feels': 1.0, 'cheap': 1.0, 'a': 3.0, 's': 2.0, 'large': 1.0, 'it': 5.0, 'as': 1.0, 'stick': 1.0, 'for': 1.0, 'somewhere': 1.0, 'in': 1.0, 'interest': 1.0, 'going': 1.0, 'your': 1.0, 'bag': 1.0, 'doesn': 1.0, 'but': 1.0}
Word element => {'laptop': 1.0, 'a': 1.0, 'smaller': 1.0, 'turns': 1.0, 'picture': 1.0, 'this': 1.0, 'like': 1.0, 'looks': 2.0, 'it': 2.0, 'would': 1.0, 'to': 1.0, 'product': 1.0, 'be': 2.0, 'bigger': 1.0, 'than': 2.0, 'out': 1.0, 'from': 1.0, 'the': 1.0}
Word element => {'one': 1.0, 'in': 1.0, 'toys': 1.0, 'great': 1.0, 'colors': 1.0, 'and': 1.0, 'see': 1.0, 'are': 1.0, 'the': 1.0, 'my': 1.0, 'multiple': 1.0, 'many': 1.0, 'an': 1.0, 'toy': 1.0, 'to': 1.0, 'so': 1.0, 'thing': 1.0, 'son': 1.0, 'with': 1.0, 'loves': 1.0, 'this': 1.0, 'play': 1.0}
Word element => {'sitting': 1.0, 'because': 1.0, 'just': 1.0, 'child': 1.0, 'good': 1.0, 'learning': 1.0, 'flips': 1.0, 'playing': 1.0, 'that': 1.0, 'spins': 1.0, 'and': 3.0, 'little': 1.0, 'for': 3.0, 'right': 1.0, 'kid': 1.0, 'height': 1.0, 'twists': 1.0, 'a': 2.0, 'while': 1.0, 'grasp': 1.0, 'learned': 1.0, 'has': 2.0, 'movements': 1.0, 'up': 1.0, 'of': 1.0, 'with': 1.0, 'it': 3.0, 'this': 1.0, 'who': 1.0, 'sit': 1.0, 'able': 1.0, 'to': 2.0, 'is': 5.0, 'fine': 1.0, 'great': 2.0, 'the': 2.0, 'hand': 1.0}
Word element => {'capture': 1.0, 'seem': 1.0, 'both': 1.0, 'they': 1.0, 'corner': 1.0, 'over': 1.0, 'noticed': 1.0, 'which': 1.0, 'chewing': 1.0, 'keeps': 1.0, 'just': 1.0, 'attention': 1.0, 'she': 3.0, 'it': 5.0, 'this': 1.0, 'with': 2.0, 'that': 1.0, 'loves': 1.0, 'baby': 1.0, 'engaged': 2.0, 'stations': 1.0, 'also': 1.0, 'in': 2.0, 'really': 2.0, 'rather': 1.0, 'good': 1.0, 'her': 4.0, 'than': 2.0, 'does': 1.0, 'on': 1.0, 'first': 1.0, 'various': 1.0, 'the': 5.0, 'was': 1.0, 'had': 1.0, 'to': 2.0, 'larger': 1.0, 'but': 3.0, 's': 1.0, 't': 1.0, 'a': 1.0, 'i': 2.0, 'catches': 1.0, 'got': 1.0, 'way': 1.0, 'cube': 1.0, 'given': 1.0, 'at': 1.0, 'same': 1.0, 'time': 1.0, 'toy': 2.0, 'expected': 1.0, 'has': 1.0, 'haven': 1.0}
Word element => {'out': 1.0, 'toys': 1.0, 'noisy': 1.0, 'alternative': 1.0, 'a': 1.0, 'enjoy': 1.0, 'seems': 1.0, 'really': 2.0, 'there': 1.0, 'of': 1.0, 'didn': 1.0, 'my': 1.0, 'start': 1.0, 'good': 1.0, 'activities': 1.0, 'until': 1.0, 'the': 1.0, 't': 1.0, 'play': 1.0, 'too': 1.0, 'daughter': 1.0, 'cute': 1.0, 'with': 2.0, 'it': 2.0, 'she': 2.0, 'now': 1.0, 'to': 3.0, 'was': 1.0, 'lots': 1.0, 'toy': 1.0, 'about': 1.0, 'months': 1.0, '8': 1.0, 'and': 1.0}
Word element => {'7': 1.0, 'is': 1.0, 'now': 1.0, 'triangle': 1.0, 'to': 1.0, 'still': 1.0, 'old': 2.0, 'likes': 1.0, 'bought': 1.0, 'my': 1.0, 'she': 1.0, 'baby': 1.0, 'play': 1.0, 'this': 1.0, 'i': 1.0, 'when': 1.0, 'was': 1.0, '5': 1.0, 'it': 1.0, 'month': 2.0}
Word element => {'choices': 1.0, 'fun': 1.0, 'of': 1.0, 'with': 1.0, 'play': 1.0, 'pick': 1.0, 'and': 2.0, 'each': 1.0, 'offers': 1.0, 'my': 1.0, 'mo': 1.0, '7': 1.0, 'they': 1.0, 'toy': 1.0, 'old': 1.0, 'great': 1.0, 'love': 1.0, 'it': 2.0, 'lots': 1.0, 'side': 1.0, 'twin': 1.0, 'a': 1.0, 'boys': 1.0}
Word element => {'son': 1.0, 'he': 2.0, 'it': 4.0, 'month': 1.0, 'can': 1.0, 'loves': 2.0, 'old': 1.0, 'toy': 1.0, 'great': 1.0, 'the': 2.0, 'my': 1.0, '6': 1.0, 'things': 1.0, 'sound': 1.0, 'makes': 1.0, 'when': 1.0, 'you': 1.0, 'turn': 1.0, 'twirl': 1.0, 'on': 1.0, 'over': 1.0, 'and': 1.0, 'all': 1.0, 'little': 1.0}
Word element => {'teether': 1.0, 'favorite': 1.0, 'problem': 1.0, 'thing': 1.0, 'moves': 1.0, 'own': 1.0, 'sits': 1.0, 'that': 1.0, 'enough': 1.0, 'around': 1.0, 'is': 2.0, 'now': 1.0, 'spin': 1.0, 'spinnies': 1.0, 'of': 1.0, 'handle': 1.0, 'for': 2.0, 'when': 2.0, 'just': 2.0, 'it': 5.0, 'this': 2.0, 'him': 2.0, 'all': 1.0, 'to': 3.0, 'was': 3.0, 'old': 1.0, 'my': 1.0, 'still': 1.0, 'son': 1.0, 'big': 2.0, 'i': 1.0, '4': 1.0, 'bought': 1.0, 'months': 3.0, 'support': 1.0, 'at': 2.0, 'would': 1.0, 'position': 1.0, '5': 3.0, 'ends': 1.0, 'yesterday': 1.0, 'himself': 1.0, 'in': 1.0, 'but': 1.0, 'sitting': 1.0, 'teething': 1.0, 'we': 1.0, 'a': 2.0, 'propped': 1.0, 'up': 1.0, 'too': 1.0, 'moved': 1.0, 'and': 2.0, 'chew': 1.0, 'without': 1.0, 'the': 2.0, 'interested': 1.0, 'figured': 1.0, 'though': 1.0, 'help': 1.0, 'his': 3.0, 'out': 1.0, 'he': 6.0, 'how': 1.0, 'on': 3.0, 'make': 1.0}
Word element => {'crawling': 1.0, 'he': 1.0, 'sooner': 1.0, 'was': 1.0, 've': 1.0, 'should': 1.0, 'it': 2.0, 'plays': 1.0, 'when': 1.0, 'i': 1.0, 'ordered': 1.0, 'think': 1.0, 'unfortunately': 1.0, 'my': 1.0, 'time': 2.0, 'with': 1.0, 'son': 1.0, 'this': 1.0, 'to': 1.0, 'outgrew': 1.0, 'still': 2.0, 'toy': 1.0, 'but': 1.0}
Word element => {'to': 1.0, 'we': 1.0, 'activities': 1.0, 'skills': 1.0, 'motor': 1.0, 'our': 1.0, 'any': 1.0, 'highly': 1.0, 'and': 1.0, 'very': 1.0, 'loves': 1.0, 'this': 1.0, 'child': 2.0, 'her': 1.0, 'so': 1.0, 'busy': 1.0, 'many': 1.0, 'recommend': 1.0, 'keeps': 1.0, 'good': 1.0}
Word element => {'need': 1.0, 'i': 2.0, 'another': 1.0, 'entertainment': 1.0, 'hours': 1.0, 'down': 1.0, 'laying': 1.0, 'lap': 1.0, 'on': 1.0, 'everyone': 1.0, 'triplets': 1.0, 'kids': 1.0, 'favorites': 1.0, 're': 1.0, 'my': 1.0, 'of': 2.0, 'is': 1.0, 'think': 1.0, 'loves': 1.0, 'other': 1.0, 'play': 2.0, 'with': 2.0, 'this': 1.0, 'it': 5.0, 'one': 2.0, 'often': 1.0, 'shakes': 1.0, 'and': 1.0, 'each': 1.0, 'they': 1.0, 'steal': 1.0, 'if': 1.0, 'from': 1.0, 'their': 1.0, 'spins': 1.0}
Word element => {'loves': 1.0, 'already': 1.0, 'of': 1.0, 'out': 1.0, 'the': 1.0, 'figured': 1.0, 'has': 1.0, 'my': 1.0, 'functions': 1.0, 'one': 1.0, 'in': 1.0, 'toys': 1.0, 'it': 1.0, 'this': 1.0, 'with': 3.0, 'motor': 1.0, 'fun': 1.0, 'many': 2.0, 'toy': 2.0, 'old': 1.0, 'shape': 1.0, 'and': 2.0, 'small': 1.0, 'function': 1.0, 'large': 1.0, 'objects': 1.0, 'play': 2.0, 'all': 2.0, '8': 1.0, 'month': 1.0, 'triangle': 1.0, 'to': 2.0, 'granddaughter': 1.0}
Word element => {'blocks': 1.0, '8': 1.0, 'over': 1.0, 'playmates': 1.0, 'his': 1.0, 'first': 1.0, 'minute': 1.0, 'this': 3.0, 'it': 1.0, 'fight': 1.0, 'with': 2.0, 'item': 1.0, 'tested': 1.0, 'out': 1.0, 'lots': 1.0, 'about': 1.0, 'the': 1.0, 'another': 1.0, 'my': 1.0, 'at': 1.0, 'daycare': 1.0, 'was': 1.0, 'all': 1.0, 'to': 3.0, 'do': 1.0, 'is': 1.0, 'son': 1.0, 'from': 1.0, 'by': 1.0, 'time': 1.0, 'so': 1.0, 'i': 1.0, 'got': 1.0, 'him': 1.0, 'would': 1.0, 'months': 2.0, 'one': 1.0, 'for': 2.0, 'home': 1.0, 'that': 1.0, 'loves': 1.0, 'there': 1.0, 'he': 2.0, '6': 1.0, 's': 1.0, 'and': 2.0, 'play': 2.0, '15': 1.0, '20': 1.0}
Word element => {'chest': 1.0, 'space': 1.0, 'money': 1.0, 'core': 1.0, 'his': 1.0, 'while': 1.0, 'front': 1.0, 'in': 3.0, 'triangle': 1.0, 'boppy': 1.0, 'would': 2.0, 'was': 1.0, 'sit': 1.0, 'when': 1.0, 'sitting': 1.0, '2': 1.0, 'prop': 1.0, 'mostly': 1.0, 'helps': 1.0, '5': 1.0, 'distracted': 1.0, 'things': 1.0, 'engage': 1.0, 'develop': 1.0, 'force': 1.0, 'minutes': 2.0, 'can': 4.0, 'most': 1.0, 'just': 1.0, 'no': 1.0, 'time': 1.0, 'play': 1.0, 'behind': 1.0, 'about': 1.0, 'walk': 1.0, 'has': 1.0, 'always': 1.0, 'way': 2.0, 'sound': 1.0, 'the': 7.0, 'of': 4.0, 'but': 1.0, 'exceptions': 1.0, 'stand': 1.0, '8': 1.0, 'toys': 2.0, 's': 1.0, 'a': 4.0, 'might': 1.0, 'likes': 1.0, 't': 1.0, 'i': 5.0, 'to': 5.0, 'month': 1.0, 'him': 6.0, 'rake': 1.0, 'it': 4.0, 'pull': 1.0, 'is': 5.0, 'with': 3.0, 'few': 2.0, 'this': 5.0, 'found': 1.0, 'perfect': 1.0, 'worth': 1.0, 'almost': 1.0, 'son': 2.0, 'little': 1.0, 'get': 1.0, 'and': 7.0, 'brute': 1.0, 'physical': 1.0, 'that': 3.0, 'not': 1.0, 'like': 2.0, 'crawl': 1.0, 'hand': 1.0, 'one': 2.0, 'lot': 1.0, 'repeatedly': 1.0, 'distract': 1.0, 'anything': 1.0, 'all': 2.0, 'einstein': 1.0, 'other': 1.0, 'haven': 1.0, 'else': 1.0, 'up': 2.0, 'favorite': 1.0, 'engaging': 1.0, 'besides': 2.0, 'neptune': 1.0, 'are': 1.0, 'ocean': 1.0, 'orchestra': 1.0, 'skills': 2.0, 'for': 4.0, 'claw': 1.0, 'learning': 1.0, 'my': 2.0, 'me': 1.0, 'musical': 1.0, 'very': 2.0, 'being': 1.0, 'development': 1.0, '1': 1.0, 'encourages': 1.0, 'fine': 1.0, 'practice': 1.0, 'he': 3.0, 'motor': 1.0, 'baby': 4.0, 'panels': 1.0, 'fingers': 1.0, 'pincer': 1.0, 'movements': 1.0, 'exercising': 1.0, 'old': 1.0, 'grasps': 1.0, 'toy': 4.0, 'move': 1.0, 'beyond': 1.0}
Word element => {'baby': 1.0, 'thank': 1.0, 'time': 1.0, 'you': 1.0, 's': 1.0, 'that': 1.0, 'mommies': 1.0, 'minutes': 1.0, 'maybe': 1.0, 'hours': 1.0, 'like': 1.0, 'long': 1.0, 'what': 1.0, 'buy': 1.0, 'minute': 1.0, 'lol': 1.0, 'anything': 1.0, 'ok': 1.0, 'son': 1.0, 'great': 1.0, 'sits': 1.0, 'seems': 1.0, 'in': 2.0, 'for': 1.0, '15': 1.0, 'a': 2.0, 'loses': 1.0, 'but': 2.0, 'interest': 1.0, 'within': 1.0, 'plays': 1.0, 'pretty': 1.0, 'much': 1.0, 'my': 1.0, 'or': 1.0, 'so': 1.0, 'world': 1.0, 'gem': 1.0, 'know': 1.0, 'not': 1.0, 'with': 2.0, 'this': 2.0, 'he': 1.0, 'and': 1.0}
Word element => {'recommend': 1.0, 'definitely': 1.0, 'will': 1.0, 'it': 1.0, 'month': 1.0, 'my': 1.0, 'one': 1.0, 'activities': 1.0, 'daughter': 1.0, 'in': 1.0, 'toy': 2.0, 'loves': 1.0, 'incorporates': 1.0, 'educational': 1.0, 'multiple': 1.0, 'very': 1.0, 'like': 1.0, 'sound': 1.0, '7': 1.0, 'textures': 1.0, 'etc': 1.0}
Word element => {'excellent': 1.0, 'all': 1.0, 'while': 1.0, 'in': 1.0, 'sound': 1.0, 'also': 1.0, 'movement': 1.0, 'finger': 1.0, 'practice': 1.0, 'her': 1.0, 'of': 1.0, 'provides': 1.0, 'makes': 1.0, 'designed': 1.0, 'concepts': 1.0, 'and': 1.0, 'shape': 1.0, 'lot': 1.0, 'well': 1.0, 'a': 1.0, 'is': 1.0, 'to': 1.0, 'now': 1.0, 'color': 1.0, 'my': 1.0, 'the': 1.0, 'about': 1.0, 'helps': 1.0, 'baby': 1.0, 'enjoys': 1.0, 'shaking': 1.0, 'till': 1.0, 'it': 5.0, 'first': 1.0, 'from': 1.0, 'day': 1.0}
Word element => {'this': 1.0, 'buying': 1.0, 'version': 1.0, 'and': 2.0, 'were': 1.0, 'while': 1.0, 'toys': 1.0, 'some': 1.0, 't': 1.0, 'we': 4.0, 'included': 1.0, 'rented': 1.0, 'on': 1.0, 'the': 7.0, 'product': 1.0, 'match': 1.0, 'infantino': 1.0, 'does': 1.0, 'what': 1.0, 'i': 2.0, 'vacation': 1.0, 'received': 2.0, 'box': 1.0, 'not': 2.0, 'amazon': 1.0, 'really': 1.0, 'photo': 1.0, 'of': 1.0, 'in': 3.0, 'activity': 1.0, 'pictured': 1.0, 'since': 1.0, 'liked': 1.0, 'decided': 1.0, 'triangle': 1.0, 'one': 3.0, 'it': 1.0, 'older': 1.0, 'recommend': 1.0, 'was': 3.0, 'unfortunately': 1.0, 'don': 1.0, 'child': 1.0, 'cheaper': 1.0, 'quality': 1.0, 'did': 1.0, 'order': 1.0, 'include': 1.0, 'our': 1.0, 'as': 1.0, 'to': 1.0, 'all': 1.0, 'activities': 1.0}
Word element => {'5': 1.0, 'it': 4.0, 'handle': 1.0, 'car': 1.0, 'wraps': 1.0, 'eyes': 1.0, 'baby': 1.0, 'toy': 2.0, 'on': 1.0, 'is': 1.0, 'really': 1.0, 'his': 2.0, 'and': 3.0, 'only': 1.0, 'do': 1.0, 'the': 5.0, 's': 1.0, 't': 1.0, 'purchase': 1.0, 'my': 1.0, '10': 1.0, 'if': 1.0, 'bothers': 1.0, 'to': 3.0, 'seat': 1.0, 'me': 1.0, 'not': 2.0, 'does': 1.0, 'because': 1.0, 'of': 1.0, 'good': 1.0, 'or': 1.0, 'close': 1.0, 'didn': 1.0, 'however': 1.0, 'face': 1.0, 'sure': 1.0, 'cross': 1.0, 'i': 3.0, 'idea': 1.0, 'times': 1.0, 'am': 1.0, 'him': 1.0, 'cost': 2.0, 'would': 1.0, 'music': 1.0, 'but': 1.0, 'see': 1.0, 'entertained': 1.0, 'return': 1.0, 'that': 1.0, 'keep': 1.0, 'at': 1.0}
Word element => {'either': 1.0, 'general': 1.0, 'seem': 1.0, 'didnt': 1.0, 'she': 1.0, 'by': 1.0, 'for': 1.0, 'plays': 1.0, 'baby': 2.0, 'in': 1.0, 'songs': 1.0, 'the': 2.0, 'amused': 1.0, 'out': 1.0, 'made': 1.0, 'cute': 1.0, 'arm': 1.0, 'really': 1.0, 'is': 1.0, 'get': 1.0, 'and': 3.0, 'me': 1.0, 'thing': 2.0, 'carrier': 1.0, 'to': 3.0, 'much': 1.0, 'with': 1.0, 'this': 1.0, 'it': 3.0, 'so': 1.0, 'harder': 1.0, 'but': 1.0, 'put': 1.0, 'down': 1.0}
Word element => {'recommend': 1.0, 'any': 1.0, 'highly': 1.0, 'on': 1.0, 'concentrate': 1.0, 'allows': 1.0, 'beneficial': 1.0, 'extremely': 1.0, 'which': 1.0, 'me': 1.0, 'and': 1.0, 'keeps': 1.0, 'soon': 1.0, 'month': 1.0, 'seven': 1.0, 'would': 1.0, 'him': 2.0, 'as': 2.0, 'very': 1.0, 'happy': 1.0, 'my': 1.0, 'for': 1.0, 'entertaining': 1.0, 'driving': 1.0, 'in': 1.0, 'to': 3.0, 'is': 2.0, 'play': 1.0, 'tries': 1.0, 'old': 1.0, 'i': 2.0, 'put': 1.0, 'occupied': 1.0, 'his': 1.0, 'car': 1.0, 'because': 1.0, 'seat': 1.0, 'parent': 1.0, 'it': 3.0, 'with': 1.0, 'this': 2.0, 'he': 1.0, 'immediately': 1.0}
Word element => {'annoying': 1.0, 'really': 1.0, 'gets': 1.0, 'would': 1.0, 'as': 1.0, 'like': 1.0, 'loves': 1.0, 'this': 2.0, 'my': 1.0, 'more': 2.0, 'if': 1.0, 'daughter': 1.0, 'had': 1.0, 'but': 1.0, 'than': 1.0, 'i': 1.0, 'one': 1.0, 'absolutely': 1.0, 'it': 2.0, 'tune': 1.0}
Word element => {'risk': 1.0, 'own': 1.0, 'your': 1.0, 'buy': 1.0, 'response': 1.0, 'absolutely': 1.0, 'from': 1.0, 'later': 1.0, 'long': 1.0, 'very': 1.0, 'didn': 1.0, 'enjoyed': 1.0, 'because': 1.0, 'at': 1.0, 'three': 1.0, 'they': 1.0, 'if': 1.0, '2013': 1.0, 'review': 1.0, 'update': 1.0, 'back': 1.0, 'respond': 1.0, 'hear': 1.0, 'waiting': 1.0, 'up': 1.0, 'is': 1.0, 'longer': 1.0, 'rated': 1.0, 'baby': 2.0, 'seemed': 1.0, 'product': 1.0, 'stars': 1.0, 'lights': 1.0, 'for': 2.0, 'months': 1.0, 'one': 1.0, 'this': 2.0, 'of': 1.0, 'shower': 1.0, 'two': 1.0, 'i': 5.0, 'revceived': 1.0, 'and': 4.0, 'will': 1.0, 'item': 2.0, 'to': 2.0, 'as': 1.0, 'enjoy': 1.0, 'quit': 1.0, 'used': 1.0, 't': 1.0, 'a': 2.0, 're': 1.0, 'gift': 1.0, 'still': 1.0, 'use': 1.0, 'the': 5.0, 'really': 2.0, 'portion': 1.0, 'that': 1.0, 'makes': 1.0, 'problem': 1.0, 'working': 1.0, 'after': 1.0, 'ends': 1.0, 'spin': 1.0, '11': 1.0, 'am': 1.0, 'work': 1.0, 'music': 1.0, 'but': 2.0, 'month': 2.0, 'it': 3.0, 'she': 1.0, 'january': 1.0, 'about': 1.0, 'no': 2.0, 'interested': 1.0, 'emailed': 1.0, 'my': 3.0, 'company': 2.0}
Word element => {'crazy': 1.0, 'i': 3.0, 'from': 1.0, 'think': 1.0, 'and': 1.0, 'up': 1.0, 'my': 1.0, 'the': 1.0, 'husband': 1.0, 'itself': 1.0, 'item': 1.0, 'wonderful': 1.0, 'for': 2.0, 'is': 2.0, 'mart': 1.0, 'actually': 1.0, 'paid': 1.0, 'this': 1.0, 'picked': 1.0, 'only': 1.0, 'it': 2.0, 'wal': 1.0, 'book': 1.0, 'but': 1.0, '15': 1.0, '30': 1.0}
Word element => {'now': 1.0, 'ointment': 1.0, 'pacifier': 1.0, 'items': 1.0, 'small': 1.0, 'couple': 1.0, 'room': 1.0, 'of': 1.0, 'change': 1.0, 'one': 1.0, 'carrying': 1.0, 'wipes': 1.0, 'grocery': 1.0, 'case': 1.0, 'into': 1.0, 'or': 2.0, 'clothes': 1.0, 'baby': 1.0, 'the': 2.0, 'diaper': 2.0, 'my': 2.0, 'taking': 2.0, 'wristlet': 1.0, 'it': 2.0, 'this': 2.0, 'leftover': 1.0, 'piece': 1.0, 'with': 2.0, 'quick': 1.0, 'hard': 1.0, 'anywhere': 1.0, 'bag': 5.0, 'me': 2.0, 'use': 1.0, 'handy': 1.0, 'for': 3.0, 'great': 1.0, 'big': 1.0, 'store': 1.0, 'else': 1.0, 'is': 3.0, 'wherein': 1.0, 'would': 1.0, 'be': 1.0, 'up': 1.0, 'and': 3.0, 'too': 1.0, 'much': 1.0, 'space': 1.0, 'carry': 1.0, 'as': 1.0, 'to': 3.0, 'easily': 1.0, 'will': 1.0, 'alternative': 1.0, 'diapers': 1.0, 'like': 1.0, 'hold': 1.0, '3': 1.0, 'etc': 1.0, 'i': 1.0, '4': 1.0, 'a': 5.0, 'go': 2.0}
Word element => {'bags': 1.0, 'diaper': 1.0, 'large': 1.0, 'an': 1.0, 'looking': 1.0, 'anyone': 1.0, 'recommend': 1.0, 'would': 1.0, '5': 1.0, 'throw': 1.0, 'about': 1.0, 'use': 1.0, 'alternative': 1.0, 'diapers': 2.0, 'will': 1.0, 'or': 1.0, 'we': 1.0, 'go': 2.0, 'a': 3.0, 'this': 1.0, 'it': 3.0, 'with': 1.0, 'little': 1.0, 'great': 1.0, 'too': 1.0, 'and': 1.0, 'tote': 1.0, 'sometime': 1.0, 'small': 3.0, 'so': 1.0, 'for': 2.0, 'pampers': 1.0, 'you': 1.0, 'am': 1.0, 'taking': 1.0, 'holds': 1.0, 'is': 1.0, 'on': 2.0, 'sanitizer': 1.0, 'wipes': 1.0, 'case': 1.0, 'i': 4.0, 'in': 2.0, 'snack': 1.0, 'bag': 1.0, 'hand': 1.0, 'keep': 1.0, 'my': 1.0, 'car': 1.0, 'never': 1.0, 'the': 3.0, 'without': 1.0, 'strap': 1.0, 'easy': 1.0, 'makes': 1.0, 'to': 3.0, 'carry': 1.0}
Word element => {'wristlet': 1.0, 'large': 1.0, 'as': 1.0, 'its': 1.0, 'on': 1.0, 'used': 1.0, 'be': 1.0, 'own': 1.0, 'pretty': 1.0, 'bag': 1.0, 'love': 1.0, 'for': 1.0, 'or': 1.0, 'mommy': 1.0, 'in': 1.0, 'perfect': 1.0, 'can': 2.0, 'size': 1.0, 'am': 1.0, 'purse': 1.0, 'and': 3.0, 'a': 1.0, 'gorgeous': 1.0, 'is': 2.0, 'diaper': 1.0, 'the': 1.0, 'my': 2.0, 'print': 1.0, 'it': 5.0, 'this': 1.0, 'i': 1.0, 'use': 1.0, 'keeping': 1.0, 'transfer': 1.0, 'so': 2.0, 'items': 1.0, 'between': 1.0}
Word element => {'really': 2.0, 'entire': 1.0, 'tote': 1.0, 'store': 1.0, 'you': 1.0, 'diaper': 2.0, 'great': 1.0, 'my': 1.0, 'without': 1.0, 'the': 3.0, 'reach': 1.0, 'and': 5.0, 'quick': 2.0, 'this': 3.0, 'it': 3.0, 'bay': 1.0, 'at': 1.0, 'keeps': 1.0, 'out': 1.0, 'keeping': 1.0, 'baby': 1.0, 'been': 1.0, 'makes': 1.0, 'handy': 2.0, 'daughter': 1.0, 'in': 2.0, 'also': 1.0, 'diapers': 2.0, 'little': 1.0, 'very': 1.0, 'wipes': 2.0, 'has': 1.0, 'well': 1.0, 'bags': 1.0, 'so': 1.0, 'easy': 1.0, 'as': 2.0, 'to': 3.0, 'within': 1.0, 'grab': 2.0, 'just': 1.0, 'having': 1.0, 'because': 1.0, 'trip': 1.0, 'what': 1.0, 'bag': 4.0, 'need': 1.0, 's': 2.0, 'a': 1.0, 'go': 1.0, 'we': 1.0, 'can': 1.0, 'for': 1.0}
Word element => {'cute': 1.0, 'so': 1.0, 'design': 1.0, 'plus': 1.0, 'extra': 1.0, 'can': 1.0, 'size': 1.0, 'car': 1.0, 'back': 1.0, 'an': 1.0, 'diapers': 1.0, 'set': 1.0, 'of': 1.0, 'keep': 2.0, 'or': 1.0, 'out': 2.0, 'run': 1.0, 'quick': 1.0, 'with': 1.0, 'it': 1.0, 'bag': 2.0, 'store': 1.0, 'as': 1.0, 'to': 2.0, 'is': 3.0, 'bringing': 1.0, 'this': 1.0, 'perfect': 2.0, 'in': 1.0, 'for': 1.0, 'the': 5.0, 'a': 2.0, 't': 2.0, 'diaper': 1.0, 'clothes': 1.0, '3': 1.0, 'i': 3.0, '4': 1.0, 'won': 1.0, 'wipes': 1.0, 'when': 1.0, 'and': 2.0, 'too': 1.0, 'be': 1.0, 'long': 1.0, 'up': 1.0, 'don': 1.0, 'big': 1.0, 'feel': 1.0, 'know': 1.0, 'like': 1.0}
Word element => {'enough': 1.0, 'isn': 1.0, 'gear': 1.0, 'baby': 1.0, 'if': 1.0, 'as': 1.0, 'but': 1.0, 'sellers': 1.0, 'shameful': 1.0, 'us': 1.0, 'i': 1.0, 'r': 1.0, 'product': 2.0, 'babies': 1.0, 'awesome': 1.0, 'same': 1.0, 'for': 1.0, 'exact': 1.0, 'expensive': 1.0, '49': 1.0, '119': 1.0, 'at': 1.0, 'me': 1.0, 'difference': 1.0, 't': 1.0, 'amoung': 1.0, '99': 2.0, 'are': 1.0, 'kidding': 1.0, 'small': 1.0, 'double': 1.0, 'you': 1.0, 'can': 1.0, 'available': 1.0, 'understand': 1.0, 'a': 1.0}
Word element => {'winner': 1.0, 'needed': 1.0, 'everything': 1.0, 'stylish': 1.0, 'looked': 1.0, 'wasn': 1.0, 'something': 1.0, 'i': 2.0, 'far': 2.0, 'thus': 1.0, 'durable': 1.0, 'seems': 1.0, 'wipe': 1.0, 'keep': 1.0, 'insulated': 1.0, 'material': 1.0, 'silver': 1.0, 'interior': 1.0, 'one': 1.0, 'rectangular': 1.0, 'by': 1.0, 'bottles': 4.0, 'let': 1.0, 'plus': 1.0, 'transport': 1.0, 'containers': 2.0, 'and': 8.0, 'tuck': 1.0, 'is': 6.0, 'somewhat': 1.0, 'day': 1.0, 'son': 1.0, 'would': 1.0, 'bulky': 1.0, 'tight': 1.0, 'pack': 2.0, 'papers': 1.0, 'only': 1.0, 'or': 1.0, 'food': 1.0, '2': 1.0, 'but': 1.0, 'ice': 2.0, 'of': 3.0, 'the': 12.0, 'without': 1.0, 'although': 1.0, 'carseat': 1.0, 'room': 1.0, '5': 1.0, 'brown': 1.0, 'in': 1.0, 'easy': 2.0, 'bit': 1.0, 'so': 1.0, 'contents': 1.0, 'cooler': 2.0, 'could': 1.0, 'we': 5.0, 'stacked': 1.0, 's': 3.0, 'a': 7.0, 'especially': 1.0, 'down': 2.0, 'for': 3.0, 'wanted': 1.0, 'gerber': 1.0, 'stars': 1.0, 'ordered': 2.0, 'replace': 1.0, '4': 1.0, 'daycare': 2.0, 'doesn': 1.0, 'those': 1.0, 'my': 1.0, 'me': 1.0, 'velcros': 1.0, '3': 1.0, 'dr': 1.0, 'on': 2.0, 'large': 1.0, 'pacifiers': 1.0, 'just': 1.0, 'with': 2.0, '8oz': 1.0, 'this': 3.0, 'perfect': 1.0, 'reflective': 1.0, 'it': 3.0, 'now': 1.0, 'to': 9.0, 'any': 1.0, 'nice': 1.0, 'little': 1.0, 'generic': 1.0, 'plastic': 1.0, 'sideways': 1.0, 'next': 1.0, 'that': 5.0, 'into': 1.0, 'pocket': 2.0, 'they': 1.0, 'front': 1.0, 'use': 1.0, 'back': 1.0, 'various': 1.0, 't': 2.0, 'fit': 1.0, 'spare': 1.0, 'was': 3.0, 'clothes': 1.0, 'out': 1.0, 'couple': 2.0, 'side': 2.0, 'coolers': 1.0, 'enough': 1.0, 'carry': 3.0, 'cold': 1.0, 'problem': 1.0, 'there': 2.0, 'hang': 1.0, 'tylenol': 1.0, 'great': 1.0, 'cracked': 1.0, 'reason': 1.0, 'months': 1.0, 'get': 1.0, 'after': 1.0, 'had': 1.0}
Word element => {'house': 1.0, 'in': 1.0, 'difficult': 1.0, 'plump': 1.0, 'thanks': 1.0, 'reflux': 1.0, 'horrible': 1.0, 'helped': 1.0, 'up': 1.0, 'right': 1.0, 'ate': 1.0, 'at': 1.0, 'bad': 1.0, 'doesn': 1.0, 'really': 1.0, 'sweet': 1.0, 'stuff': 1.0, 'add': 1.0, 'bottles': 1.0, 'her': 4.0, 'sweeten': 1.0, 'hated': 1.0, 'first': 1.0, 'eating': 1.0, 'with': 2.0, 'this': 2.0, 'much': 2.0, 'the': 2.0, 'eat': 1.0, 'veggies': 1.0, 'product': 1.0, 'love': 1.0, 'intolerance': 1.0, 'i': 1.0, 'didn': 1.0, 'drink': 1.0, 'year': 2.0, 'daughter': 2.0, 'healthy': 1.0, 'multiple': 1.0, 'of': 2.0, 'has': 1.0, 'stayed': 1.0, 'during': 1.0, 'and': 5.0, 'couldn': 1.0, 'is': 1.0, 'protein': 1.0, 'formula': 1.0, 'had': 1.0, 'our': 1.0, 'all': 1.0, 'to': 4.0, 'through': 1.0, 'taste': 2.0, 'loved': 1.0, 'food': 1.0, 'but': 1.0, 'life': 1.0, 'just': 1.0, 'because': 1.0, 'my': 2.0, 'tolerate': 1.0, 'would': 1.0, 'very': 1.0, 'mix': 1.0, 't': 3.0, 'a': 2.0, 'she': 3.0, 'it': 5.0, 'scoop': 1.0, 'them': 1.0}
Word element => {'be': 1.0, 'think': 1.0, 'friends': 1.0, 'and': 1.0, 'it': 1.0, 'love': 1.0, 'this': 2.0, 'item': 1.0, 'is': 1.0, 'perfect': 2.0, 'for': 1.0, 'wish': 1.0, 'had': 2.0, 'i': 4.0, 'one': 1.0, 'when': 1.0, 'shower': 1.0, 'my': 2.0, 'will': 1.0, 'baby': 2.0}
Word element => {'see': 1.0, 'these': 1.0, 'the': 2.0, 'diaper': 1.0, 'i': 1.0, 'cloth': 1.0, 'old': 1.0, 'wash': 1.0, 'softer': 1.0, 'enough': 1.0, 'was': 1.0, 'washclothes': 1.0, 't': 1.0, 'we': 1.0, 's': 1.0, 'need': 1.0, 'nice': 1.0, 'and': 1.0, 'reusable': 1.0, 'now': 1.0, 'away': 1.0, 'as': 1.0, 'son': 1.0, 'didn': 1.0, 'diapers': 1.0, 'instead': 1.0, 'really': 1.0, 'regular': 1.0, 'is': 1.0, 'of': 1.0, 'use': 1.0, 'rash': 1.0, 'for': 2.0, 'dollar': 1.0, 'which': 1.0, 'using': 1.0, 'after': 1.0, '5': 1.0, 'having': 1.0, 'than': 1.0, 'month': 1.0, 'went': 1.0, 'they': 1.0, 'are': 1.0, 'disposable': 1.0, 'wipes': 3.0, 'good': 1.0, 'value': 1.0}
Word element => {'stain': 1.0, 'that': 1.0, 'complaint': 1.0, 'away': 1.0, 'throw': 1.0, 'money': 1.0, 'logo': 1.0, 'not': 1.0, 'm': 1.0, 'side': 1.0, 'cleaner': 1.0, 'they': 1.0, 'towels': 1.0, 'paper': 1.0, 'opposed': 1.0, 'face': 1.0, 'wiping': 1.0, 'meals': 1.0, 'after': 1.0, 'cleanup': 1.0, 'the': 3.0, 'compare': 1.0, 'won': 1.0, 'it': 1.0, 'need': 1.0, 'will': 1.0, 'diaper': 1.0, 'is': 1.0, 'more': 1.0, 'for': 2.0, 'love': 2.0, 'one': 3.0, 'using': 1.0, 'others': 1.0, 'these': 2.0, 'some': 1.0, 'something': 1.0, 'super': 1.0, 'sons': 1.0, 'at': 1.0, 'soft': 1.0, 'them': 1.0, 'wasting': 1.0, 'changes': 1.0, 'and': 3.0, 'i': 7.0, 'cloth': 1.0, 'guess': 1.0, 'use': 4.0, 'wet': 1.0, 'with': 3.0, 'because': 1.0, 'usually': 1.0, 'as': 1.0, 'to': 7.0, 'my': 3.0, 'get': 1.0, 'easy': 1.0, 'got': 1.0, 'diapers': 1.0, 'wipes': 3.0, 'dry': 1.0, 'on': 1.0, 'your': 1.0, 'per': 1.0, 'only': 1.0, 'poop': 1.0, 'disposable': 2.0, 't': 1.0, 'could': 1.0, 'have': 1.0, 'used': 1.0, '5': 1.0, 'tends': 1.0, 'or': 1.0, 'time': 1.0, 'so': 1.0, 'if': 1.0, 'him': 1.0, 'trying': 1.0, 'cb': 1.0, 'when': 1.0, 'easily': 2.0, 'you': 1.0, 'how': 1.0, 'many': 1.0}
Word element => {'using': 1.0, 'cause': 1.0, 'repelling': 1.0, 'issues': 1.0, 'before': 1.0, 'remember': 1.0, 'complained': 1.0, 'have': 1.0, 'urine': 1.0, 'just': 1.0, 'with': 3.0, 'diaper': 1.0, 'that': 1.0, 'changing': 1.0, 'are': 1.0, 'if': 1.0, 'from': 1.0, 'but': 1.0, 'organic': 1.0, 'purchased': 1.0, 'will': 1.0, 'also': 1.0, 'side': 3.0, 'is': 2.0, 'picked': 1.0, 'it': 2.0, 'fleece': 3.0, 'cotton': 2.0, 'i': 8.0, 'cloth': 3.0, 'at': 1.0, 'option': 1.0, 'amazon': 1.0, 'use': 6.0, 'others': 1.0, 'these': 4.0, 'currently': 1.0, 'the': 9.0, 'and': 7.0, 'liked': 1.0, 'them': 1.0, 'wipe': 1.0, 'having': 1.0, 'because': 1.0, 'those': 1.0, 'not': 3.0, 'end': 1.0, 'do': 3.0, 'poop': 2.0, 'bottom': 2.0, 'my': 3.0, 'water': 3.0, 'daughter': 1.0, 'washes': 1.0, 'gets': 1.0, 'soft': 1.0, 'diapers': 3.0, 'even': 1.0, 'did': 1.0, 'softener': 3.0, 'after': 1.0, 'several': 1.0, 'clean': 1.0, 'wipes': 6.0, 'her': 1.0, 'fabric': 3.0, 'repel': 2.0, 'gentle': 1.0, 'once': 1.0, 'on': 1.0, 'wash': 2.0, 'up': 1.0, 'over': 1.0, 'off': 1.0, 'any': 1.0, 'to': 3.0, 'all': 1.0, 'as': 1.0, 's': 1.0, 'we': 3.0, 'a': 2.0}
Word element => {'this': 1.0, 'order': 1.0, 've': 1.0, 'that': 1.0, 'only': 1.0, 'much': 1.0, 'time': 1.0, 'so': 1.0, 'diapers': 1.0, 'two': 2.0, 'of': 3.0, 'love': 2.0, 'for': 1.0, 'ordered': 1.0, 'held': 1.0, 'have': 2.0, 'stock': 1.0, 'decided': 1.0, 'one': 1.0, 'months': 2.0, 'great': 1.0, 'currently': 1.0, 'the': 4.0, 'but': 1.0, '2': 1.0, 'around': 1.0, 'is': 2.0, 'my': 1.0, 'and': 3.0, 'charlie': 1.0, 'good': 1.0, 'wipes': 4.0, 'up': 1.0, 'child': 2.0, 'them': 1.0, 'baby': 2.0, 'first': 2.0, 'cotton': 2.0, 'due': 1.0, '15': 1.0, 'we': 6.0, 'a': 1.0, 'set': 1.0, 'sets': 2.0, 'few': 1.0, 'banana': 1.0, 'll': 1.0, 'in': 2.0, 'are': 2.0, 'ordering': 1.0, 'since': 1.0, 'three': 1.0, 'they': 1.0, 'double': 2.0, 'sided': 2.0, 'our': 2.0, 'to': 3.0, 'now': 1.0, 'these': 2.0, 'add': 1.0, 'cloth': 1.0}
Word element => {'own': 1.0, 'some': 1.0, 'should': 1.0, 'a': 1.0, 'wipe': 2.0, 'to': 2.0, 'lot': 1.0, 'easy': 1.0, 'makes': 1.0, 'also': 1.0, 'feature': 1.0, 'double': 1.0, 'water': 1.0, 'straight': 1.0, 'it': 1.0, 'with': 2.0, 'usually': 1.0, 'buy': 1.0, 'i': 3.0, 'soft': 1.0, 'sided': 1.0, 'but': 1.0, 'so': 1.0, 'when': 1.0, 'rashy': 1.0, 'disposable': 1.0, 'are': 1.0, 'one': 1.0, 'using': 1.0, 'for': 2.0, 'face': 1.0, 'wipes': 2.0, 'more': 1.0, 'the': 3.0, 'diaper': 1.0, 'these': 2.0, 'mess': 1.0, 'my': 1.0, 'biggest': 1.0, 'part': 1.0, 'of': 1.0, 'about': 1.0, 'baby': 1.0, 'is': 1.0, 'use': 2.0, 'feel': 1.0, 'best': 1.0}
Word element => {'recommend': 1.0, 'highly': 1.0, 'their': 1.0, 'have': 1.0, 'they': 1.0, 'durability': 1.0, 'softness': 1.0, 'original': 1.0, 'after': 1.0, 'retained': 1.0, 'my': 1.0, 'started': 1.0, 'diapers': 1.0, 'and': 1.0, 'me': 1.0, 'charlie': 1.0, 'purchased': 1.0, 'with': 1.0, 'diapering': 1.0, 'wipes': 1.0, 'as': 1.0, 'friend': 1.0, 'cloth': 1.0, 'i': 2.0, 'washes': 1.0, 'multiple': 1.0, 'when': 1.0, 'these': 1.0, 'in': 1.0, 'a': 1.0, 'gift': 1.0, 'quickly': 1.0, 'banana': 1.0, 'fell': 1.0, 'for': 1.0, 'love': 1.0}
Word element => {'sensitive': 1.0, 'my': 1.0, 'much': 1.0, 'that': 1.0, 'learned': 1.0, 'i': 2.0, 'comfortable': 1.0, 'one': 1.0, 's': 1.0, 'double': 1.0, 'however': 1.0, 'size': 1.0, 'and': 2.0, 'enjoy': 1.0, 'more': 1.0, 'the': 6.0, 'these': 1.0, 'great': 1.0, 'sided': 1.0, 'work': 1.0, 'nice': 1.0, 'its': 1.0, 'to': 1.0, 'have': 2.0, 'other': 1.0, 'options': 1.0, 'fleece': 2.0, 'on': 3.0, 'is': 1.0, 'side': 1.0, 'quickly': 1.0, 'skin': 1.0, 'children': 1.0, 'cotton': 1.0}
Word element => {'other': 1.0, 'instead': 1.0, 'few': 1.0, 'recommend': 1.0, 'highly': 1.0, 'would': 1.0, 'buying': 1.0, 'with': 1.0, 'up': 1.0, 'be': 1.0, 'washcloth': 1.0, 'wipe': 1.0, 'these': 3.0, 'the': 1.0, 'several': 1.0, 'so': 2.0, 'seem': 1.0, 'washes': 2.0, 'more': 2.0, 'is': 1.0, 'stitching': 1.0, 't': 1.0, 'a': 5.0, 'well': 2.0, 'didn': 1.0, 'little': 1.0, 'but': 3.0, 'osocozy': 1.0, 'worth': 1.0, 'i': 6.0, 'cloth': 2.0, 'am': 1.0, 'great': 1.0, 'nice': 2.0, 'which': 1.0, 'diapering': 1.0, 'expensive': 1.0, 'purchased': 1.0, 'first': 1.0, 'dollars': 1.0, 'try': 1.0, 'only': 1.0, 'too': 2.0, 'and': 5.0, 'wipes': 2.0, 'are': 3.0, 'coming': 1.0, 'have': 1.0, 'spending': 1.0, 'off': 1.0, 'enough': 1.0, 'make': 1.0, 'bought': 1.0, 'holding': 1.0, 'after': 1.0, 'package': 1.0, 'of': 2.0, 'as': 1.0, 'to': 2.0, 'oh': 1.0, 'my': 1.0, 'function': 1.0, 'they': 2.0, 'found': 1.0, 'soft': 1.0, 'not': 1.0}
Word element => {'gift': 1.0, 'give': 1.0, 'right': 1.0, 'just': 1.0, 'regularly': 1.0, '10': 1.0, 'ideal': 1.0, 'face': 1.0, 'and': 3.0, 'absorbent': 1.0, 'size': 1.0, 'so': 2.0, 'after': 1.0, 'meals': 1.0, 'is': 2.0, 'burp': 1.0, 'they': 1.0, 'soft': 1.0, 'this': 2.0, 'must': 1.0, 'have': 1.0, 'for': 2.0, 'parents': 1.0, 'use': 2.0, 'cloth': 2.0, 'baths': 1.0, 'now': 1.0, 'that': 1.0, 'as': 2.0, 'all': 1.0, 'to': 1.0, 'our': 1.0, 'wash': 1.0, 'child': 1.0, 'them': 1.0, 'are': 2.0, 'wi': 1.0, 'seriously': 1.0, 'toddler': 1.0, 'a': 3.0, 'we': 1.0, 'at': 1.0, 'i': 1.0, 'two': 1.0, 'new': 1.0, 'dinner': 1.0, 'table': 1.0, 'the': 2.0, 'hands': 1.0, 'e': 1.0, 'wipes': 1.0, 'her': 2.0, 'packs': 1.0, 'shower': 1.0, 'of': 1.0}
Word element => {'absorbent': 1.0, 'since': 1.0, 'than': 1.0, 'baby': 1.0, 's': 1.0, 'super': 1.0, 'perfect': 1.0, 'use': 1.0, 'soft': 1.0, 'for': 2.0, 'which': 1.0, 'wipes': 1.0, 'very': 1.0, 'as': 1.0, 'bib': 2.0, 'regular': 1.0, 'is': 3.0, 'now': 1.0, 'are': 1.0, 'the': 1.0, 'we': 1.0, 'skin': 1.0, 'it': 3.0, 'month': 1.0, 'our': 1.0, 'better': 1.0, 'three': 1.0, 'old': 1.0}
Word element => {'others': 1.0, 'overall': 1.0, 'off': 1.0, 'had': 1.0, 'my': 1.0, 'especially': 1.0, 'polyester': 1.0, 'sides': 1.0, 's': 1.0, 'a': 3.0, 't': 3.0, 'pretty': 1.0, 'to': 4.0, 'daughter': 1.0, 'bottle': 1.0, 'so': 1.0, 'need': 1.0, 'brands': 1.0, 'these': 3.0, 'plain': 1.0, 'wipes': 3.0, 'wipe': 1.0, 'quite': 1.0, 'all': 2.0, 'other': 2.0, 'love': 1.0, 'for': 1.0, 'wanted': 1.0, 'stars': 1.0, 'product': 1.0, 'huge': 1.0, 'after': 1.0, 'usually': 1.0, 'only': 3.0, 'messes': 1.0, 'much': 1.0, 'when': 2.0, 'shrink': 1.0, 'spray': 1.0, 'stain': 1.0, 'and': 4.0, 'one': 2.0, 'try': 1.0, 'too': 3.0, 'description': 1.0, 'skin': 1.0, 'impressed': 1.0, 'on': 1.0, 'impression': 1.0, 'because': 1.0, 'that': 2.0, 'something': 1.0, 'better': 1.0, 'with': 1.0, 'is': 8.0, '2': 1.0, 'organic': 2.0, 'of': 3.0, 'the': 7.0, 'size': 1.0, 'plus': 1.0, 'bad': 1.0, 'perfect': 1.0, 'soft': 1.0, 'them': 1.0, 'has': 1.0, 'i': 7.0, 'well': 1.0, 'hot': 1.0, 'rash': 1.0, 'fleecy': 1.0, 'her': 1.0, 'tag': 1.0, 'wash': 1.0, 'water': 2.0, 'up': 2.0, 'good': 1.0, 'which': 1.0, 'side': 2.0, 'some': 1.0, 'gentle': 1.0, 'enough': 1.0, 'cut': 1.0, 'they': 2.0, 'washing': 1.0, 'reusable': 1.0, '100': 1.0, 'm': 1.0, 'in': 1.0, 'would': 1.0, 'either': 1.0, 'using': 1.0, 'reason': 1.0, 'didn': 1.0, 'there': 1.0, 'give': 1.0, '5': 1.0, 'misleading': 1.0, 'was': 1.0, 'under': 1.0, 'recommend': 1.0, 'were': 1.0, 'don': 2.0, 'cotton': 2.0, 'however': 1.0, 'also': 1.0, 'annoying': 1.0}
Word element => {'more': 1.0, 'picked': 1.0, 'when': 1.0, 'been': 1.0, 'but': 1.0, 'help': 1.0, 'reaching': 1.0, 'brand': 1.0, 'continue': 1.0, 'will': 1.0, 's': 1.0, 'here': 2.0, 'ordered': 2.0, 'two': 1.0, '40': 1.0, '18': 1.0, 'non': 1.0, 'worth': 1.0, 'following': 1.0, 've': 1.0, 'tried': 2.0, 'things': 1.0, 'review': 1.0, 'single': 1.0, 'was': 4.0, 'exclusively': 1.0, 'thing': 1.0, '300': 1.0, 'darn': 1.0, 'about': 2.0, 'no': 1.0, '8': 1.0, 'after': 2.0, 'wet': 1.0, 'this': 1.0, 'few': 1.0, 'if': 1.0, 'service': 1.0, 'every': 1.0, 'amazing': 1.0, 'then': 1.0, 'son': 1.0, 'which': 2.0, 'leaking': 1.0, 'stripping': 2.0, 'worked': 2.0, 'packs': 1.0, 'stuck': 1.0, 'not': 2.0, 'department': 1.0, 'started': 1.0, 'diaper': 2.0, 'strip': 1.0, 'a': 4.0, 'done': 1.0, 'going': 1.0, 'internet': 1.0, 't': 1.0, 'for': 1.0, 'using': 2.0, 'us': 1.0, '6': 1.0, 'thought': 1.0, 'to': 7.0, 'charlie': 4.0, 'our': 1.0, 'be': 1.0, 'overnight': 1.0, 'were': 1.0, 'first': 1.0, 'diapers': 5.0, 'even': 2.0, 'cloth': 1.0, 'i': 13.0, 'would': 2.0, 'weeks': 2.0, 'used': 1.0, 'friendly': 1.0, 'time': 1.0, 'so': 1.0, 'lover': 1.0, 'absorbing': 2.0, 'they': 3.0, 'customer': 1.0, 'their': 2.0, 'directions': 1.0, 'out': 1.0, 'nothing': 2.0, 'liners': 1.0, 'amount': 1.0, 'on': 1.0, 'think': 1.0, 'me': 1.0, 'miffed': 1.0, 'my': 2.0, 'banana': 4.0, 'website': 1.0, 'of': 4.0, 'the': 2.0, 'completely': 1.0, 'had': 2.0, 'warm': 1.0, 'wash': 1.0, 'conclusion': 1.0, 'water': 1.0, 'up': 1.0, 'don': 1.0, 'over': 1.0, 'with': 2.0, 'an': 1.0, 'eco': 1.0, 'soap': 1.0, 'some': 2.0, 'these': 2.0, 'six': 1.0, 'research': 1.0, 'came': 1.0, 'because': 2.0, 'that': 1.0, 'again': 1.0, 'inserts': 1.0, 'reputable': 1.0, 'must': 1.0, 'have': 3.0, 'build': 1.0, 'and': 2.0, 'avail': 1.0, 'want': 1.0, 'them': 2.0, 'has': 2.0, 'm': 1.0}
Word element => {'shape': 1.0, 'great': 1.0, 'many': 1.0, 'it': 1.0, 've': 1.0, 'but': 1.0, 'against': 1.0, 'still': 1.0, 'warn': 1.0, 'tags': 1.0, 'instructions': 1.0, 'in': 1.0, 'dingy': 1.0, 'turning': 1.0, 'keep': 1.0, 'absorbancy': 1.0, 'their': 1.0, 'them': 2.0, 'strip': 1.0, 'works': 1.0, 'only': 1.0, 'times': 1.0, 'you': 2.0, 'if': 2.0, 'own': 1.0, 'problem': 1.0, 'are': 3.0, 'care': 3.0, 'from': 1.0, 'hard': 2.0, 'excellent': 1.0, 'i': 3.0, 'gray': 1.0, 'cloth': 1.0, 'recommend': 1.0, 'products': 1.0, 'these': 1.0, 'the': 4.0, 'for': 2.0, 'inserts': 3.0, 'highly': 1.0, 'maintains': 1.0, 'thing': 1.0, 'about': 1.0, 'specifically': 1.0, 'very': 1.0, 'done': 1.0, 'wondering': 1.0, 'is': 1.0, 'periodic': 1.0, 'and': 4.0, 'charlie': 1.0, 'bleach': 1.0, 'me': 1.0, 'as': 1.0, 'to': 2.0, 'proper': 1.0, 'diapers': 2.0, 'well': 1.0, 'see': 1.0, 'have': 2.0, 'stiff': 1.0, 'banana': 1.0, 'harder': 1.0, 'water': 3.0, 'using': 1.0, 'which': 1.0, 'like': 1.0, 'map': 1.0, 'site': 1.0, 'with': 1.0, 'chlorine': 2.0, 'your': 1.0, 'on': 2.0, 'that': 2.0, 'my': 3.0, 'this': 1.0, 'found': 1.0, 'bleaching': 1.0, 'of': 1.0}
Word element => {'waste': 1.0, 'spent': 1.0, 'worth': 1.0, 'were': 1.0, 'feel': 1.0, 'leak': 1.0, 'start': 1.0, 'that': 3.0, 'like': 1.0, 'know': 1.0, 'cloth': 2.0, 'contributing': 1.0, 'did': 1.0, 'softener': 1.0, 'washes': 1.0, 'repel': 1.0, 'many': 1.0, 'through': 1.0, 'gone': 1.0, 'so': 1.0, 'on': 2.0, 'think': 1.0, 'we': 2.0, 't': 1.0, 'in': 1.0, 'money': 1.0, 'but': 1.0, 'work': 1.0, 'sided': 2.0, 'diapers': 3.0, 'urinates': 1.0, 'she': 1.0, 'bottom': 1.0, 'used': 1.0, 'don': 1.0, 'wash': 2.0, 'will': 1.0, 'also': 1.0, 'use': 5.0, 'purchased': 1.0, 'had': 1.0, 'their': 1.0, 'better': 1.0, 'if': 3.0, 'these': 4.0, 'hands': 1.0, 'the': 6.0, 'problems': 1.0, 'fabric': 2.0, 'her': 2.0, 'wipes': 8.0, 'face': 1.0, 'softeners': 1.0, 'well': 2.0, 'am': 1.0, 'when': 1.0, 'for': 2.0, 'first': 1.0, 'beginning': 1.0, 'recall': 1.0, 'my': 1.0, 'wipe': 1.0, 'them': 2.0, 'not': 3.0, 'have': 2.0, 'fleece': 2.0, 'cotton': 1.0, 'with': 1.0, 'and': 5.0, 'poop': 1.0, 'do': 2.0, 'double': 2.0, 'repelling': 1.0, 'they': 2.0, 'prior': 1.0, 'i': 12.0, 'become': 1.0, 'sticky': 1.0, 'our': 1.0, 'to': 5.0, 'as': 3.0, 'any': 1.0, 'daughter': 1.0, 'water': 2.0}
Word element => {'bother': 1.0, 'is': 1.0, 'also': 1.0, 'with': 1.0, 'it': 2.0, 'eat': 1.0, 'down': 1.0, 'sit': 1.0, 'before': 1.0, 'work': 1.0, 'to': 3.0, 'seem': 1.0, 'feed': 1.0, 'ones': 1.0, 'container': 1.0, 'out': 1.0, 'old': 1.0, 'an': 1.0, 'in': 1.0, 'put': 1.0, 'another': 1.0, 'up': 2.0, 'one': 2.0, 'that': 1.0, 'acordian': 1.0, 'huggies': 1.0, 'face': 1.0, 'love': 1.0, 'for': 3.0, 'like': 1.0, 'using': 1.0, 'double': 1.0, 'after': 2.0, 'so': 7.0, 'meals': 1.0, 'pops': 1.0, 'paper': 1.0, 'banana': 1.0, 'friendly': 2.0, 'cleaned': 1.0, 'charlie': 1.0, 'and': 8.0, 'purchased': 1.0, 'either': 2.0, 'these': 3.0, 'are': 1.0, 'disposable': 2.0, 'best': 1.0, 'both': 1.0, 'tag': 1.0, 'wipes': 4.0, 'her': 4.0, 'little': 2.0, 'sided': 1.0, 'etc': 1.0, 'i': 6.0, 'perfect': 2.0, 'soft': 2.0, 'the': 4.0, 'hands': 2.0, 'silky': 1.0, 'while': 1.0, 'solution': 1.0, 'keep': 1.0, 'lot': 1.0, 'faces': 1.0, 'its': 1.0, 'doesn': 1.0, 'was': 1.0, 'because': 1.0, 'style': 1.0, 'me': 2.0, 'not': 2.0, 'wet': 1.0, 'just': 2.0, 't': 1.0, 'we': 1.0, 'a': 1.0, 'of': 1.0, 'or': 1.0, 'towels': 1.0, 'enviro': 1.0, 'really': 1.0, 'folded': 1.0, 'wipe': 1.0, 'baby': 2.0, 'them': 2.0}
Word element => {'washer': 1.0, 'out': 1.0, 'taking': 1.0, 'after': 1.0, 'just': 1.0, 'dryer': 1.0, 'solution': 2.0, 'tip': 1.0, 'fit': 1.0, 'even': 1.0, 'shape': 1.0, 'maintain': 1.0, 'fast': 1.0, 'well': 1.0, 'disposable': 1.0, 'warmer': 2.0, 'use': 2.0, 'hypocrite': 1.0, 'place': 1.0, 'refill': 1.0, 'the': 5.0, '2': 1.0, 'saver': 1.0, 'are': 1.0, 'oil': 2.0, 't': 2.0, 'a': 6.0, 'up': 1.0, 'wash': 1.0, 'don': 2.0, 'i': 1.0, 'cloth': 1.0, 'buy': 1.0, 'you': 1.0, 'am': 1.0, 'in': 3.0, 'diapering': 1.0, 'happy': 1.0, 'gallon': 1.0, 'combo': 1.0, 'dry': 1.0, 'packs': 1.0, 'with': 3.0, 'it': 1.0, 'necessary': 1.0, 'of': 6.0, 'and': 4.0, 'get': 1.0, 'spray': 4.0, 'x': 1.0, 'them': 1.0, 'wipe': 4.0, 'baby': 2.0, 'quality': 1.0, 'wipes': 5.0, 'very': 1.0, 'little': 1.0, 'fill': 1.0, 'mostly': 1.0, 'water': 1.0, 'time': 1.0, 'bottle': 2.0, 'bit': 1.0, 'these': 3.0, 'some': 1.0, 'if': 1.0, 'drops': 1.0, 'lavender': 1.0, 'be': 1.0, 'essential': 1.0, 'as': 1.0, 'to': 1.0, 'dampen': 1.0, 'put': 1.0, 'make': 1.0, 'on': 1.0, 'your': 2.0}
Word element => {'diapering': 1.0, 'cloth': 1.0, 'anyone': 1.0, 'recommend': 1.0, 'i': 1.0, 'us': 1.0, 'problem': 1.0, 'it': 1.0, 'wet': 1.0, 'them': 1.0, 'hold': 1.0, 'update': 1.0, 'after': 2.0, 'so': 2.0, '12': 1.0, 'soft': 2.0, 'times': 1.0, '11': 1.0, 'very': 2.0, 'have': 1.0, 'love': 1.0, 'for': 3.0, 'one': 1.0, 'we': 3.0, 'a': 4.0, 'they': 4.0, 'these': 2.0, 'reusable': 1.0, 'nicely': 1.0, 'wipes': 2.0, 'supply': 2.0, 'still': 2.0, 'as': 4.0, 'to': 2.0, 'use': 4.0, 'washcloths': 1.0, 'and': 2.0, 'shape': 1.0, 'their': 1.0, 'were': 1.0, 'that': 2.0, '10': 1.0, 'being': 1.0, 'washed': 1.0, 'three': 1.0, 'week': 1.0, 'but': 1.0, 'year': 1.0, 'almost': 1.0, 'are': 1.0, 'not': 2.0, 'wash': 1.0, 'nearly': 1.0, 'once': 1.0, 'is': 3.0, 'unfortunate': 1.0, 'expected': 1.0, 'much': 1.0}
Word element => {'feeding': 1.0, 'and': 6.0, 'too': 3.0, 'wipes': 5.0, 'soft': 3.0, 'perfect': 1.0, 'parts': 1.0, 'delicate': 1.0, 'aprince': 1.0, 'wiping': 1.0, 's': 4.0, 't': 2.0, 'a': 1.0, 'only': 1.0, 'pack': 2.0, 'it': 3.0, 'them': 3.0, 'wipe': 3.0, 'baby': 2.0, 'her': 4.0, 'tag': 1.0, 'use': 4.0, 'to': 5.0, 'as': 1.0, 'very': 1.0, '15': 1.0, 'like': 1.0, 'thoroughly': 1.0, 'absorbent': 3.0, 'for': 1.0, '10': 1.0, 'after': 2.0, 'made': 2.0, 'side': 2.0, 'is': 6.0, 'private': 1.0, 'lint': 1.0, 'varyandosocozy': 1.0, 'flannel': 1.0, 'material': 2.0, 'triedbabykicks': 1.0, 'i': 5.0, 'daughter': 2.0, 'catch': 1.0, 'osocozy': 1.0, 'my': 3.0, 'may': 1.0, 'banana': 1.0, 'babykicks': 1.0, 'drool': 1.0, 'hands': 2.0, 'but': 2.0, 'organic': 1.0, 'colors': 1.0, 'rough': 1.0, 'oils': 1.0, 'face': 2.0, 'fleece': 1.0, 'don': 1.0, 'cotton': 1.0, 'be': 1.0, 'thin': 2.0, 'however': 1.0, 'leaves': 1.0, 'behind': 1.0, 'charlie': 1.0, 'water': 1.0, 'favorite': 1.0, 'jersey': 1.0, 'nooks': 1.0, 'repel': 1.0, 'thick': 2.0, 'please': 1.0, 'note': 1.0, 'because': 1.0, 'that': 1.0, 'since': 1.0, 'out': 2.0, 'natural': 1.0, 'the': 6.0, 'of': 2.0, 'will': 2.0, 'satin': 1.0, 'also': 1.0, 'initally': 1.0, 've': 1.0, 'several': 1.0, 'washes': 1.0, 'they': 1.0, 'warmer': 1.0, 'so': 1.0, 'doesn': 1.0, 'bother': 1.0, 'with': 1.0, 'are': 1.0, 'crannies': 1.0, 'lionheart': 1.0, 'ultimate': 1.0}
Word element => {'logo': 1.0, 'use': 1.0, 'perfect': 1.0, 'i': 2.0, 'daughters': 1.0, 'soft': 1.0, 'hands': 1.0, 'her': 1.0, 'them': 1.0, 'super': 1.0, 'size': 1.0, 'really': 1.0, 'are': 1.0, 'my': 1.0, 'they': 1.0, 'love': 1.0, 'for': 1.0, 'cute': 1.0, 'wiping': 1.0, 'face': 1.0, 'and': 1.0, 'great': 1.0, 'behind': 1.0, 'pink': 1.0}
Word element => {'soft': 1.0, 'so': 1.0, 'to': 1.0, 'stretch': 1.0, 'bit': 1.0, 'little': 1.0, 'a': 1.0, 'other': 1.0, 'wipes': 2.0, 'and': 3.0, 'of': 2.0, 'are': 5.0, 'different': 1.0, 'cotton': 1.0, 'got': 2.0, 'great': 2.0, 'the': 1.0, 'these': 1.0, 'they': 5.0, 'i': 1.0, 'one': 1.0, 've': 2.0, 'expensive': 1.0, 'quality': 1.0, 'but': 1.0, 'types': 1.0, 'high': 1.0, '4': 1.0, 'on': 2.0, 'them': 1.0, 'fleece': 1.0, 'side': 1.0}
Word element => {'cloth': 2.0, 'wipe': 1.0, 'thickness': 1.0, 'wipes': 1.0, 'favorite': 1.0, 'of': 1.0, 'my': 1.0, 'are': 2.0, 'prince': 1.0, 'warmer': 1.0, 'the': 2.0, 'these': 4.0, 'holds': 1.0, 'perfect': 1.0, 'about': 1.0, 'lionheart': 1.0, '10': 1.0, 'easily': 1.0, 'love': 1.0, 'for': 1.0, 'effective': 1.0, 'an': 1.0, 'clean': 1.0, 'we': 1.0}
Word element => {'recommend': 1.0, 'baby': 3.0, 'highly': 1.0, 'and': 1.0, 'for': 1.0, 'which': 1.0, 'does': 1.0, 'great': 3.0, 'love': 1.0, 'it': 1.0, 'so': 1.0, 'item': 1.0, 'this': 1.0, 'sounds': 1.0, 'soothe': 1.0}
Word element => {'kinds': 1.0, 'than': 1.0, 'daughter': 1.0, 'difficult': 1.0, 'ones': 2.0, 'these': 1.0, 'the': 3.0, 'diaper': 1.0, 'bumgenius': 1.0, 'my': 3.0, 'types': 1.0, 'real': 1.0, 't': 1.0, 'a': 2.0, 'on': 1.0, 'grovia': 1.0, 'put': 2.0, 'cute': 1.0, 'super': 1.0, 'more': 1.0, 'is': 2.0, 'at': 1.0, 'three': 1.0, 'little': 2.0, 'different': 1.0, 'of': 1.0, 'bad': 1.0, 'to': 1.0, 'all': 1.0, 'two': 1.0, 'i': 3.0, 'so': 1.0, 'and': 2.0, 'do': 1.0, 'other': 2.0, 'this': 1.0, 'with': 1.0, 'it': 1.0, 'stained': 1.0, 'c': 1.0, 'd': 1.0, 'm': 1.0, 'haven': 1.0, 'disappointed': 1.0, 'in': 1.0, 'like': 1.0, 'stains': 1.0, 'that': 1.0, 'one': 1.0, 'entire': 1.0, 'but': 2.0, 'can': 1.0, 'be': 1.0, 'have': 1.0, 'dryer': 1.0}
Word element => {'diapers': 1.0, 'these': 1.0, 'more': 1.0, 'have': 1.0, 'to': 1.0, 'would': 1.0, 'ever': 1.0, 'red': 1.0, 'drier': 1.0, 'disposable': 1.0, 'was': 1.0, 'mark': 1.0, 'look': 1.0, 'it': 4.0, 'jeans': 1.0, 'his': 2.0, 'does': 1.0, 'so': 2.0, 'wearing': 1.0, 'he': 1.0, 'how': 1.0, 'fast': 1.0, 'well': 1.0, 'trim': 1.0, 'fit': 1.0, 'my': 2.0, '32lbs': 1.0, '38inches': 1.0, 'diaper': 2.0, 'pee': 1.0, 'the': 2.0, 'a': 2.0, 't': 1.0, 'tall': 1.0, 'and': 2.0, '2': 1.0, 'can': 1.0, 'dried': 1.0, 'lot': 1.0, 'of': 2.0, 'on': 1.0, 'guy': 1.0, 'washed': 1.0, 'under': 1.0, 'son': 1.0, 'never': 1.0, 'in': 2.0, 'i': 2.0, 'don': 1.0, 'no': 1.0, 'about': 1.0, 'like': 2.0, 'hold': 1.0, 'know': 1.0, 'staining': 1.0, 'issues': 1.0, 'looove': 1.0, 'one': 1.0}
Word element => {'expensive': 1.0, 'bit': 1.0, 'they': 1.0, 'honestly': 1.0, 'buck': 1.0, 'your': 1.0, 'can': 1.0, 'really': 1.0, 'you': 1.0, 'versus': 1.0, 'alvas': 1.0, 'stash': 1.0, 'out': 1.0, 'filling': 1.0, 'totsbots': 1.0, 'swaddlebees': 1.0, 'blueberry': 1.0, 'freetime': 1.0, 'pocket': 2.0, 'alva': 1.0, 'least': 1.0, 'order': 1.0, 'compared': 1.0, 'those': 1.0, 'kid': 1.0, 'wound': 1.0, 'great': 1.0, 'be': 1.0, 'might': 1.0, 'different': 3.0, 'bg': 1.0, 'said': 1.0, 'print': 1.0, 'ultimately': 1.0, 'other': 1.0, 'all': 1.0, 'to': 7.0, 'then': 1.0, 'loved': 1.0, 'than': 1.0, 'work': 2.0, 'aio': 2.0, 'isn': 1.0, 'cotton': 1.0, 'babies': 1.0, 'more': 3.0, 'a': 4.0, 's': 1.0, 'the': 11.0, 'remove': 1.0, 'it': 4.0, 'lbs': 1.0, 'who': 1.0, '12': 1.0, 'type': 1.0, 'had': 1.0, 'leaks': 2.0, 'used': 2.0, 'newborn': 1.0, 'is': 5.0, 'at': 2.0, 'adorable': 1.0, 'once': 1.0, 'my': 5.0, 'and': 5.0, 'dozen': 1.0, 'bought': 2.0, 'for': 7.0, 'beat': 1.0, 't': 2.0, 'fit': 1.0, 'snaps': 1.0, 'from': 2.0, 'period': 1.0, 'grovia': 2.0, 'on': 1.0, 'pros': 1.0, 'son': 2.0, 'robots': 1.0, 'rotation': 1.0, 'this': 4.0, 'well': 2.0, 'i': 11.0, 'only': 2.0, 'os': 1.0, 'he': 1.0, 'interested': 1.0, '6': 1.0, 'half': 1.0, '20': 1.0, 'because': 2.0, 'that': 4.0, 'hit': 1.0, 'bang': 1.0, 'covers': 1.0, 'like': 1.0, 'as': 2.0, 'body': 1.0, 'diaper': 3.0, 'prefolds': 1.0, 'side': 1.0, 'made': 1.0, 'simplex': 1.0, 'with': 3.0, 'organic': 1.0, 'us': 1.0, 'also': 2.0, 'single': 1.0, 'little': 1.0, 'trim': 1.0, 'cons': 1.0, 'just': 1.0, 'get': 2.0, 'sure': 1.0, 'correctly': 1.0, 'given': 1.0, 'time': 1.0, 'after': 2.0, 'prepped': 1.0, 'cannot': 1.0, 'very': 1.0, 'being': 2.0, 'every': 2.0, 'if': 1.0, 'fully': 1.0, '5': 2.0, 'or': 1.0, 've': 1.0, 'favorite': 2.0, 'up': 2.0, 'working': 1.0, 'diapers': 3.0, 'are': 3.0, 'challenging': 1.0, 'use': 1.0, 'front': 1.0, 'one': 4.0, 'try': 1.0, 'ones': 2.0, 'although': 1.0, 'in': 1.0, 'm': 1.0, 'otherwise': 1.0, 'd': 1.0, 'them': 1.0}
Word element => {'so': 1.0, 'leaks': 1.0, 'old': 1.0, 'and': 1.0, 's': 1.0, 'becoming': 1.0, 'very': 1.0, 'grovia': 1.0, 'month': 1.0, 'using': 1.0, 'a': 1.0, 'are': 2.0, 'my': 2.0, 'they': 2.0, 'started': 1.0, 'just': 1.0, 'diapers': 1.0, 'we': 1.0, 'no': 1.0, 'quickly': 1.0, 'far': 1.0, 'favorite': 1.0, 'hybrid': 1.0, 'nice': 1.0, 'system': 1.0, 'fit': 1.0, 'on': 1.0, '2': 1.0}
Word element => {'buy': 1.0, 'ones': 1.0, 'probably': 1.0, 'will': 1.0, 'favorites': 1.0, 'are': 1.0, 'this': 1.0, 'used': 1.0, 'i': 2.0, 'us': 1.0, 'don': 1.0, 'diaper': 1.0, 'time': 1.0, 'hours': 1.0, '5': 1.0, 'sleeps': 1.0, 'well': 1.0, 'yet': 1.0, 'then': 1.0, 'through': 1.0, 'doesn': 1.0, '6': 1.0, 'he': 2.0, 'though': 1.0, 'even': 3.0, 'of': 2.0, 'few': 1.0, 'fell': 1.0, 'for': 2.0, 'love': 2.0, 'in': 2.0, 'bought': 1.0, 'one': 1.0, 'ten': 1.0, 've': 1.0, 'new': 1.0, 'my': 2.0, 'fail': 1.0, 're': 1.0, 'son': 1.0, 'on': 1.0, 'grovia': 4.0, 'with': 3.0, 'be': 2.0, 'cotton': 2.0, 'absolutely': 1.0, 'prints': 1.0, 'and': 7.0, 'shells': 2.0, 'prefolds': 1.0, 'the': 7.0, 'whatsoever': 1.0, 'night': 2.0, 'them': 1.0, 'about': 1.0, 'no': 4.0, 'booster': 1.0, 'main': 1.0, 'at': 2.0, 'had': 1.0, 'leaks': 1.0, 'now': 2.0, 'disappointments': 1.0, 'problems': 1.0, 'old': 1.0, 'blowouts': 1.0, 'use': 1.0, 'organic': 2.0, 'soaker': 1.0, 'our': 1.0, 'sleep': 1.0, 'to': 1.0, 'pads': 2.0, 'sometimes': 2.0, 'ours': 1.0, 'products': 1.0, 'these': 1.0, 'add': 1.0, 'if': 1.0, 't': 2.0, 'we': 4.0, 'a': 3.0, 'going': 1.0, 'week': 1.0, 'car': 1.0, 'from': 1.0, 'while': 1.0}
Word element => {'pay': 1.0, '40': 1.0, 'almost': 1.0, 'at': 1.0, 'looking': 1.0, 'reusable': 1.0, 'of': 1.0, 'package': 1.0, 'for': 2.0, 'expensive': 1.0, 'also': 1.0, 'come': 1.0, 'see': 1.0, 'hard': 1.0, 'page': 1.0, 'the': 2.0, 'review': 1.0, 'back': 1.0, 'but': 1.0, 'single': 1.0, 'very': 1.0, 'read': 1.0, 'do': 1.0, 'try': 2.0, 'not': 1.0, 'heard': 1.0, 'diapering': 1.0, 'than': 1.0, 'brands': 2.0, 'to': 6.0, 'wanted': 1.0, 'had': 1.0, 'was': 2.0, 'new': 1.0, 'two': 1.0, 'i': 7.0, 'cloth': 1.0, 'going': 1.0, 'a': 5.0, 'willing': 1.0, 'which': 1.0, 'know': 1.0, 'are': 3.0, 'diaper': 2.0, 'these': 1.0, 'if': 1.0, 'that': 2.0, 'were': 1.0, 'liners': 4.0, 'more': 2.0, 'is': 2.0, 'should': 2.0, 'ordering': 1.0, 'it': 2.0, 'carefully': 1.0, 'this': 1.0, 'with': 2.0, 'and': 3.0, 'several': 1.0, 'just': 2.0, 'few': 1.0, 'grovia': 1.0, 'shell': 2.0, 'good': 1.0, 'so': 2.0, 'surprised': 1.0, 'ordered': 2.0, 'other': 1.0, 'came': 1.0, 'again': 1.0, 'am': 2.0, 'you': 3.0, 'when': 1.0, 'arrived': 1.0, 'they': 2.0, 'shells': 1.0, 'even': 1.0, 'diapers': 2.0, 'perhaps': 1.0, 'have': 1.0}
Word element => {'son': 1.0, '11': 1.0, 'made': 1.0, 'my': 1.0, 'to': 2.0, 'and': 1.0, 'm': 1.0, 'old': 1.0, 'cloth': 1.0, 'i': 1.0, 'diapers': 2.0, 'but': 1.0, 'easy': 2.0, 'have': 1.0, 'fit': 1.0, 'new': 1.0, 'pound': 1.0, 'love': 1.0, 'it': 1.0, 'these': 2.0, 'great': 1.0, 'month': 1.0, 'so': 1.0, 'wash': 1.0, '4': 1.0, 'on': 1.0}
Word element => {'doesn': 1.0, 'favorite': 1.0, 'who': 1.0, 'him': 1.0, 'fit': 1.0, 'and': 2.0, 'fully': 1.0, 'are': 1.0, 'his': 1.0, 'sized': 1.0, 'though': 1.0, 'rise': 1.0, 'small': 1.0, 'is': 2.0, 'up': 1.0, '21lb': 1.0, 'my': 2.0, 'in': 1.0, 'skinny': 2.0, 'robots': 1.0, 'old': 1.0, 'little': 1.0, 't': 1.0, 'great': 2.0, 'the': 3.0, '2': 1.0, 'shells': 1.0, 'they': 2.0, 'aplix': 1.0, 'babies': 1.0, 'have': 1.0, 'year': 1.0, 'grovia': 2.0, 'best': 1.0, 'this': 1.0, 'it': 1.0, 'velcro': 1.0, 'for': 2.0, 'love': 2.0, 'whatever': 1.0, 'you': 1.0, 'print': 1.0, 'hook': 1.0, 'run': 1.0, 'loop': 1.0, 'wanna': 1.0, 'call': 1.0}
Word element => {'definitely': 1.0, 'great': 1.0, 'overall': 1.0, 'around': 1.0, 'wet': 1.0, 'get': 1.0, 'will': 2.0, 'then': 1.0, 'son': 1.0, 'when': 1.0, 'reason': 1.0, 'use': 1.0, 'got': 1.0, 'diapers': 1.0, 'but': 1.0, 'able': 1.0, 'space': 1.0, 'at': 1.0, 'some': 1.0, 'one': 1.0, 'product': 1.0, 'for': 2.0, 'love': 1.0, 'i': 1.0, 'genius': 1.0, 'system': 1.0, 'shell': 1.0, 'my': 2.0, 'using': 1.0, 'which': 1.0, 'in': 1.0, 'diaper': 1.0, 'the': 2.0, 'this': 1.0, 'it': 2.0, 'bag': 1.0, 'up': 1.0, 'continue': 1.0, 'its': 1.0, 'all': 1.0, 'to': 1.0, 'than': 1.0, 'because': 1.0, 'poops': 1.0, 'not': 1.0, 'and': 2.0, 'we': 2.0, 't': 1.0, 's': 1.0, 'with': 1.0, 'convenient': 1.0, 'bum': 1.0, 'be': 1.0, 'reused': 1.0, 'being': 1.0, 'if': 1.0, 'edges': 1.0, 'experienced': 1.0, 'dirty': 1.0, 'less': 1.0, 'home': 1.0, 'haven': 1.0, 'leaks': 1.0}
Word element => {'seen': 1.0, 'he': 1.0, 'skin': 1.0, 's': 1.0, 'by': 1.0, 'not': 1.0, 'covered': 1.0, 'pul': 1.0, 'have': 1.0, 'other': 1.0, 'big': 1.0, 'no': 1.0, 'baby': 2.0, 'my': 3.0, 'mind': 1.0, 'insert': 1.0, 'are': 1.0, 'supersoft': 1.0, 't': 1.0, 'diaper': 1.0, 'the': 2.0, 'on': 2.0, 'touching': 1.0, 'fit': 1.0, 'doesn': 1.0, 'inside': 1.0, 'but': 2.0, 'far': 1.0, 'bit': 1.0, 'so': 1.0, 'is': 1.0, 'really': 2.0, 'leaks': 1.0, 'to': 1.0, 'look': 1.0, 'shells': 1.0, 'they': 3.0, 'a': 1.0, 'well': 1.0, 'and': 1.0, 'like': 1.0, 'i': 1.0, 'that': 2.0}
Word element => {'better': 1.0, 'up': 1.0, 'snap': 1.0, 'but': 1.0, 'both': 1.0, 'almost': 1.0, 'still': 1.0, 'same': 1.0, 'at': 1.0, 'diaper': 1.0, 'worn': 2.0, 'bent': 1.0, 'tabs': 1.0, 'out': 2.0, 'made': 1.0, 'these': 2.0, 'the': 12.0, 'this': 1.0, 'soft': 1.0, 'badly': 1.0, 'about': 1.0, 'bought': 1.0, 'months': 1.0, 'one': 2.0, 'hold': 1.0, 'using': 1.0, 'shells': 4.0, 'has': 1.0, 'so': 1.0, 'bit': 1.0, 'time': 2.0, 'on': 1.0, '3': 1.0, 'grovia': 1.0, 'very': 1.0, 'velcro': 2.0, 'elastic': 1.0, 'with': 3.0, 'stick': 1.0, 'hard': 1.0, 'looks': 1.0, 'it': 2.0, 'bleached': 1.0, 'terribly': 1.0, 'have': 2.0, 'new': 1.0, 'tooth': 1.0, 've': 1.0, 'i': 4.0, 'of': 3.0, 'and': 5.0, 'getting': 3.0, 'are': 3.0, 'snaps': 3.0, 'a': 3.0, 'fabric': 2.0, 'different': 1.0, 'than': 1.0, 'pilling': 1.0, 'material': 1.0, 'for': 1.0, 'supposed': 2.0, 'be': 1.0, 'not': 2.0, 'much': 1.0, 'poop': 1.0, 'as': 1.0, 'to': 4.0, 'mention': 1.0, 'been': 1.0, 'stains': 2.0, 'that': 3.0, 'more': 2.0, 'is': 3.0}
Word element => {'better': 1.0, 'so': 1.0, 'and': 3.0, 'cloth': 2.0, 'i': 1.0, 'to': 1.0, 'colorful': 1.0, 'was': 3.0, 'make': 1.0, 'shell': 1.0, 've': 1.0, 'in': 1.0, 'that': 1.0, 'diapered': 1.0, 'pants': 1.0, 'my': 1.0, 'such': 1.0, 'diaper': 1.0, 'the': 2.0, 'first': 1.0, 'this': 2.0, 'even': 1.0, 'diapering': 1.0, 'before': 1.0, 'plastic': 1.0, 'but': 1.0, 'back': 1.0, 'soft': 1.0, 'days': 1.0, '34': 4.0, 'of': 1.0, 'going': 1.0, 'pins': 1.0}
Word element => {'everywhere': 1.0, 'seals': 1.0, 'and': 2.0, 'in': 2.0, 'for': 1.0, 'great': 2.0, 'diaper': 3.0, 'the': 4.0, 'are': 1.0, 'insert': 1.0, 'taking': 1.0, 'closure': 1.0, 'rope': 1.0, 'well': 2.0, 'about': 1.0, '5': 1.0, 'grovia': 1.0, 'from': 1.0, 'very': 2.0, 'works': 1.0, 'take': 1.0, 'bag': 4.0, 'durable': 1.0, 'it': 1.0, 'this': 1.0, 'holds': 1.0, 'quality': 1.0, 'diapers': 1.0, 'shell': 1.0, '6': 1.0, 'there': 1.0, 'is': 1.0, 'no': 1.0, 'along': 1.0, 'smell': 2.0}
Word element => {'out': 1.0, 'while': 1.0, 'odors': 1.0, 'leaks': 1.0, 'about': 1.0, 'any': 1.0, 'had': 1.0, 'very': 2.0, 'both': 1.0, 'been': 1.0, 'wet': 1.0, 'well': 1.0, 'months': 1.0, 'never': 1.0, 'diapers': 1.0, 'work': 1.0, 've': 1.0, 'and': 3.0, 'wetbags': 1.0, 'ones': 1.0, 'these': 1.0, 'or': 1.0, 'poopy': 1.0, 'too': 1.0, 'contain': 1.0, 'i': 1.0, 'using': 1.0, 'for': 1.0, 'can': 1.0, '7': 1.0, 'have': 1.0}
Word element => {'find': 1.0, 'say': 1.0, 'compact': 1.0, 'anymore': 1.0, 'tho': 1.0, 'enough': 1.0, 'luxury': 1.0, 'no': 2.0, 'purse': 1.0, 'tucked': 1.0, 'must': 1.0, 'doesn': 1.0, 'inside': 1.0, 'netting': 1.0, 'apply': 1.0, 'big': 1.0, 'sticky': 1.0, 'applying': 1.0, 'inserts': 2.0, 'shell': 1.0, 'option': 1.0, 'rinse': 1.0, 'snap': 3.0, 'stock': 1.0, 'classify': 1.0, 'more': 1.0, 'another': 1.0, 'january': 1.0, 'now': 2.0, 'friendly': 1.0, 'decided': 1.0, 'used': 1.0, 'pads': 1.0, 'with': 1.0, 'you': 1.0, 'night': 1.0, 'grab': 2.0, 'daily': 1.0, 'fluffy': 1.0, 'on': 4.0, 'diapering': 1.0, 'excited': 1.0, 'after': 1.0, 'changed': 1.0, 'g': 2.0, 'gro': 3.0, 'three': 1.0, 'day': 3.0, 'leakage': 1.0, 'full': 1.0, 'recommend': 3.0, 'was': 2.0, 'good': 1.0, 'outing': 1.0, 'which': 1.0, 'bag': 1.0, 'using': 2.0, 'blog': 2.0, 'detergent': 1.0, 'rocking': 1.0, 'been': 1.0, 'wash': 1.0, 'use': 2.0, 'odor': 1.0, 'some': 1.0, 'never': 1.0, 'or': 1.0, 'need': 1.0, 'falling': 1.0, 'any': 3.0, 'pretty': 1.0, 'to': 11.0, 'though': 1.0, 'during': 1.0, 'part': 3.0, 'potty': 1.0, 'get': 1.0, 'months': 2.0, 'too': 1.0, 'one': 4.0, 'at': 1.0, 'look': 1.0, 'is': 3.0, 'finished': 1.0, 'am': 2.0, 'perfect': 2.0, 'barely': 1.0, 'and': 12.0, 'totally': 2.0, 'green': 1.0, 'carry': 1.0, 'august': 1.0, 'reviews': 1.0, 'they': 8.0, 'holding': 1.0, 'expecting': 1.0, 'covering': 1.0, 'still': 2.0, 'son': 2.0, 'i': 27.0, 'two': 3.0, 'old': 1.0, 'who': 1.0, 'dry': 1.0, 'not': 2.0, 'just': 3.0, 'new': 1.0, 'worried': 1.0, 'cute': 1.0, 'are': 7.0, 'diapers': 7.0, 'issues': 1.0, 'them': 5.0, 'reading': 1.0, 'nicely': 1.0, 'newborns': 1.0, 'user': 1.0, 'pee': 2.0, 'there': 2.0, 'larger': 1.0, 'up': 3.0, 'list': 1.0, 'don': 3.0, 'child': 1.0, 'all': 1.0, 'ever': 1.0, 'grobaby': 1.0, 'especially': 1.0, 'girl': 1.0, 'his': 1.0, 'have': 9.0, 'yet': 1.0, 'far': 1.0, 'love': 3.0, 'for': 7.0, 'much': 1.0, 'bum': 2.0, '16': 2.0, 'gum': 1.0, 'reasons': 1.0, 'my': 6.0, 'genius': 2.0, 'will': 3.0, 'disposable': 2.0, 'be': 2.0, 'm': 2.0, 'in': 3.0, 'about': 2.0, 'size': 2.0, 'most': 2.0, 'but': 5.0, 'so': 4.0, 'can': 2.0, 'fit': 3.0, 't': 5.0, 'a': 7.0, 'baby': 4.0, 'many': 1.0, 'basis': 1.0, 'cloth': 5.0, 'easy': 5.0, 'soak': 1.0, 'know': 1.0, 'however': 1.0, 'grovia': 1.0, 'own': 1.0, 'see': 2.0, 'these': 5.0, 'before': 1.0, 'training': 1.0, 'hardly': 1.0, 'maybe': 2.0, 'huge': 1.0, 'assemble': 1.0, 'apart': 1.0, 'than': 1.0, 'problems': 1.0, 'that': 5.0, 'because': 1.0, 'version': 1.0, 'continue': 1.0, 'prints': 1.0, 'the': 13.0, 'of': 11.0, 'longer': 1.0, 'haves': 1.0, 'would': 1.0, 'types': 1.0, 'think': 2.0, 'outgrowing': 1.0, 'different': 2.0, 'thought': 1.0, 'it': 3.0, 'top': 2.0, 'as': 1.0, 'diaper': 5.0}
Word element => {'tear': 1.0, 'so': 1.0, 'wear': 1.0, 'washing': 1.0, 'leaking': 1.0, 'no': 3.0, 'fit': 1.0, 'find': 1.0, 'to': 1.0, 'them': 1.0, 'in': 1.0, 'been': 1.0, 'daughter': 1.0, 'by': 1.0, 'my': 2.0, 'are': 1.0, 'diapers': 1.0, 'favorite': 1.0, 'far': 2.0, 'crazy': 1.0, 'easy': 1.0, 'the': 1.0, 'these': 1.0, 'has': 1.0, 'they': 1.0, 'brand': 1.0, 'for': 1.0, 'love': 1.0, 'it': 1.0, 'i': 1.0, 'right': 1.0, '7': 1.0, 'instructions': 1.0, 'months': 1.0, 's': 1.0, 'and': 3.0}
Word element => {'match': 1.0, 'colors': 1.0, 'or': 1.0, 'tops': 1.0, 'pool': 1.0, 'have': 2.0, 'short': 1.0, 'swimming': 1.0, 'trek': 1.0, 'for': 1.0, 'love': 1.0, 'the': 4.0, 'these': 1.0, 'leak': 1.0, 'diaper': 1.0, 'ones': 1.0, 'should': 1.0, 'disposable': 1.0, 'lakeside': 1.0, 'and': 1.0, 'changing': 1.0, 'but': 1.0, 'diapers': 1.0, 'swim': 2.0, 'will': 1.0, 'we': 1.0, 'a': 2.0, 'go': 2.0, 'if': 1.0, 'to': 7.0, 'i': 1.0, 'cloth': 1.0, 'buy': 1.0, 'are': 1.0, 'strap': 1.0, 'get': 1.0, 'easy': 1.0, 'make': 1.0, 'on': 1.0, 'over': 1.0, 'with': 1.0, 'it': 1.0, 'so': 1.0, 'liquid': 1.0, 'out': 1.0, 'clean': 1.0, 'little': 1.0, 'urge': 1.0, 'in': 1.0, 'many': 1.0}
Word element => {'be': 1.0, 'wipeable': 1.0, 'were': 1.0, 'inside': 1.0, 'would': 2.0, 'cover': 1.0, 'soft': 1.0, 'these': 1.0, 'the': 4.0, 'great': 1.0, 'best': 1.0, 'grovia': 1.0, 'for': 1.0, 'love': 1.0, 'if': 1.0, '9': 1.0, 'on': 1.0, 'lbs': 1.0, 'nice': 1.0, 'thing': 1.0, 'babies': 1.0, 'covers': 1.0, 'i': 2.0, 'once': 1.0, 'to': 1.0, 'they': 2.0, 'and': 3.0, 'get': 1.0, 'mesh': 1.0, 'about': 1.0, 'only': 1.0, 'this': 1.0, 'lining': 1.0, 'change': 1.0, 'is': 2.0, 'smaller': 1.0, 'my': 1.0, 'trim': 1.0, 'favorite': 1.0}
Word element => {'sides': 1.0, 'banana': 1.0, 'not': 1.0, 'flip': 1.0, 'wick': 1.0, 'are': 2.0, 'wetness': 1.0, 'doesn': 1.0, 'pockets': 1.0, 'tried': 1.0, 'i': 1.0, 'snap': 1.0, 'charlie': 1.0, 'and': 1.0, 'away': 1.0, 'me': 1.0, 't': 1.0, 'the': 1.0, 'these': 1.0, 'great': 1.0, 'for': 1.0, 'love': 1.0, 'two': 1.0, 'on': 1.0}
Word element => {'december': 1.0, 'wait': 1.0, 'darn': 1.0, 'ones': 1.0, 'come': 1.0, 'girl': 1.0, 'boy': 1.0, 'this': 1.0, 'colors': 2.0, 'do': 1.0, 'nap': 1.0, 'than': 2.0, 'for': 3.0, 'cannot': 1.0, 'son': 2.0, 'but': 1.0, 'adding': 1.0, 'even': 1.0, 'trim': 2.0, 'there': 1.0, 'seeing': 1.0, 'improvement': 1.0, 'night': 1.0, 'everytime': 1.0, 'created': 1.0, 'stay': 2.0, 'not': 2.0, 'washing': 1.0, 'during': 1.0, 'does': 1.0, 'new': 2.0, 'although': 1.0, 'better': 1.0, 'like': 1.0, 'snaps': 2.0, 'be': 1.0, 'baby': 1.0, 'shells': 1.0, 'these': 1.0, 'great': 3.0, 'shell': 1.0, 'likely': 1.0, 'at': 1.0, 'is': 5.0, 'pul': 1.0, 'can': 1.0, 'so': 4.0, 'on': 2.0, 'inserts': 2.0, 'have': 5.0, 'to': 8.0, 'as': 2.0, 'updated': 1.0, 'design': 3.0, 'came': 1.0, 'did': 1.0, 'keep': 1.0, 'makes': 1.0, 'liner': 1.0, 'right': 1.0, 'easier': 1.0, 'they': 8.0, 'work': 1.0, 'chain': 1.0, 'concept': 1.0, 'then': 1.0, 'loved': 1.0, 'small': 1.0, 'a': 6.0, 'find': 1.0, 'since': 1.0, 'switching': 1.0, 'get': 1.0, 'it': 3.0, 'higher': 1.0, 'problems': 1.0, 'that': 7.0, 'been': 2.0, 'gave': 1.0, 'were': 1.0, 'out': 4.0, 'using': 1.0, 'which': 2.0, 've': 1.0, 'replacing': 1.0, 'and': 8.0, 'fibers': 1.0, 'i': 11.0, 'laundry': 3.0, 'less': 1.0, 'rise': 1.0, 'when': 2.0, 'traveling': 1.0, 'wet': 2.0, 'place': 1.0, 'pulling': 1.0, 'insert': 2.0, 'tabs': 1.0, 'more': 3.0, 'babies': 1.0, 'realistic': 1.0, 'converted': 1.0, 'no': 1.0, 'whole': 1.0, 'smell': 1.0, 'all': 2.0, 'grobaby': 1.0, 'other': 1.0, 'sent': 1.0, 'reviewers': 1.0, 'said': 1.0, 'in': 3.0, 'us': 1.0, 'also': 2.0, 'love': 1.0, 't': 1.0, 'fairly': 1.0, 'aplix': 2.0, 'fit': 1.0, 'compared': 1.0, 'cute': 1.0, 'plus': 1.0, 'improves': 1.0, 'first': 2.0, 'are': 5.0, 'diapers': 2.0, 'has': 2.0, 'them': 3.0, 'older': 1.0, 'with': 1.0, 'oh': 1.0, 'old': 1.0, 'fact': 1.0, 'only': 2.0, 'company': 3.0, 'prints': 2.0, 'of': 3.0, 'the': 20.0, 'natural': 2.0, 'organic': 1.0, 'sleep': 1.0, 'back': 3.0, 'making': 1.0, 'most': 1.0, 'my': 2.0, 'reasons': 1.0, 'bought': 1.0, 'really': 1.0, 'seems': 1.0, 'grovia': 1.0, 'dislike': 1.0, 'terry': 1.0, 'booster': 1.0, 'closed': 2.0, 'soakers': 1.0, 'big': 1.0, 'recently': 1.0}
Word element => {'diaper': 1.0, 'overnight': 1.0, 'an': 1.0, 'never': 1.0, 'your': 1.0, 'however': 1.0, 'multiple': 1.0, 'you': 1.0, 'in': 1.0, 'snap': 1.0, 'convenient': 1.0, 'also': 1.0, 'than': 1.0, 'better': 1.0, 'get': 1.0, 'months': 1.0, '4': 1.0, 'i': 6.0, 'clothes': 1.0, 'baby': 2.0, 'disadvantage': 1.0, 'under': 1.0, 'son': 2.0, 'space': 1.0, 'three': 1.0, 'they': 3.0, 'pocket': 2.0, 'just': 3.0, 'a': 5.0, 'take': 2.0, 'we': 1.0, 's': 1.0, 'buy': 1.0, 'something': 1.0, 'can': 1.0, 'so': 4.0, 'uses': 1.0, 'time': 1.0, 'wearing': 1.0, 'more': 4.0, 'would': 3.0, 'bulky': 1.0, 'grovia': 2.0, 'make': 1.0, 'and': 3.0, 'be': 3.0, 'heinys': 1.0, 'that': 1.0, 'kangacare': 1.0, 'only': 1.0, 'much': 2.0, 'bum': 1.0, 'do': 2.0, 'far': 1.0, 'he': 4.0, 'with': 2.0, 'is': 8.0, 'rumparooz': 1.0, 'my': 2.0, 'too': 1.0, 'one': 1.0, 'happy': 1.0, 'use': 6.0, 'first': 1.0, 'are': 3.0, 'diapers': 3.0, 'perhaps': 1.0, 'perfect': 1.0, 'when': 2.0, 'large': 1.0, 'sunning': 1.0, 'aio': 3.0, 'his': 1.0, 'having': 1.0, 'fairly': 1.0, 'fit': 2.0, 'for': 3.0, 'system': 2.0, 'shell': 4.0, 'now': 1.0, 'the': 11.0, 'of': 2.0, 'larger': 1.0, 'bulkiness': 1.0, 'genius': 1.0, 'will': 1.0, 'washing': 1.0, 'biosoaker': 1.0, 'staining': 1.0, 'noticeable': 1.0, 'likely': 1.0, 'once': 1.0, 'these': 3.0, 'to': 7.0, 'pads': 2.0, 'leak': 2.0, 'trimmer': 1.0, 'tighter': 1.0, 'if': 2.0, 'going': 1.0, 'bm': 2.0, 'them': 1.0, 'has': 1.0, 'blowout': 1.0, 'good': 1.0, 'which': 1.0, 'noticeably': 1.0, 'like': 1.0, 'after': 1.0, 'prone': 2.0, 'brands': 1.0, 'although': 1.0, 'up': 1.0, 'less': 1.0, 'takes': 1.0, 'right': 1.0, 'it': 2.0, 'out': 3.0, 'regular': 1.0, 'sure': 1.0, 'dry': 1.0, 'not': 2.0}
Word element => {'them': 1.0, 'or': 1.0, 'suede': 1.0, 'hot': 1.0, 'many': 1.0, 'baby': 1.0, 'warm': 1.0, 'rise': 1.0, 'size': 1.0, 'fuzzibunz': 1.0, 'this': 1.0, 'soft': 2.0, 'snap': 2.0, 'trim': 1.0, 'forever': 1.0, 'extra': 1.0, 'sanitize': 1.0, 'is': 1.0, 'more': 1.0, 'wetness': 1.0, 'fitting': 1.0, 'inside': 1.0, 'fleece': 1.0, 'be': 2.0, 'bum': 1.0, 'one': 2.0, 'in': 2.0, 'outside': 1.0, 'cloth': 2.0, 'with': 2.0, 'pockets': 1.0, 'versus': 1.0, 'and': 3.0, 'pros': 1.0, 'on': 5.0, 'no': 1.0, 'super': 1.0, 'would': 1.0, 'organic': 1.0, 'doubler': 1.0, 'so': 1.0, 'can': 1.0, 'but': 1.0, 'material': 1.0, 'diaper': 1.0, 'of': 2.0, 'the': 2.0, 'must': 1.0, 'have': 2.0, 'very': 1.0, 'dried': 1.0, 'all': 1.0, 'an': 1.0, 'issue': 1.0, 'for': 1.0, 'washed': 1.0, 'since': 1.0, 'i': 4.0, 'stuffing': 1.0, 'a': 1.0, 'cycle': 1.0, 'me': 1.0, 'my': 4.0, 'to': 2.0, 'high': 1.0, 'efficiency': 1.0, 'feels': 1.0, 'from': 1.0, 'washer': 1.0, 'uses': 1.0, 'favorite': 1.0, 'water': 1.0, 'line': 1.0, 'cons': 1.0, 'stiff': 1.0, 'wash': 1.0, 'cotton': 1.0, 'don': 1.0, 'style': 2.0, 'washing': 1.0, 'comes': 1.0, 'these': 2.0, 't': 2.0, 'separate': 1.0, 'genius': 1.0, 'that': 2.0, 'because': 1.0, 'they': 2.0, 'probably': 1.0, 'feel': 1.0, 'great': 1.0, 'take': 1.0, 'dry': 1.0, 'recommend': 1.0, 'dislike': 1.0, 'yes': 1.0, 'diapers': 3.0, 'are': 2.0, 'stash': 1.0}
Word element => {'us': 1.0, 'them': 1.0, 'snaps': 1.0, 'go': 1.0, 'mandarin': 1.0, 't': 1.0, 'more': 1.0, 'the': 3.0, 'are': 1.0, 'couldn': 1.0, 'and': 2.0, 'use': 2.0, 'easy': 1.0, 'for': 1.0, 'love': 1.0, 'grobaby': 1.0, 'grovia': 1.0, 'way': 1.0, 'we': 1.0, 'so': 1.0, 'to': 2.0, 'color': 1.0, 'is': 1.0, 'exclusively': 1.0, 'beautiful': 1.0}
Word element => {'cute': 1.0, 'overall': 1.0, 'fabric': 1.0, 'cutting': 1.0, 'it': 1.0, 'remove': 1.0, 'really': 1.0, 'my': 1.0, 'left': 1.0, 'inside': 1.0, 'skin': 1.0, 'snaps': 1.0, 'didn': 1.0, 'also': 1.0, 'of': 1.0, 'out': 1.0, 'sneak': 1.0, 'tends': 1.0, 'wish': 1.0, 'this': 1.0, 'legs': 1.0, 'no': 1.0, 'bulky': 1.0, 'very': 1.0, 'snappi': 1.0, 'traditional': 1.0, 'on': 3.0, 'put': 1.0, 'have': 2.0, 'great': 1.0, 'ones': 1.0, 'these': 1.0, 'without': 1.0, 'the': 8.0, 'around': 1.0, 'is': 1.0, 'more': 1.0, 'inner': 1.0, 'expensive': 1.0, 'used': 1.0, 'prefold': 2.0, 'so': 2.0, 'one': 1.0, 'i': 6.0, 'but': 1.0, 'work': 3.0, 'hat': 1.0, 'lining': 1.0, 've': 1.0, 'they': 4.0, 'there': 1.0, 'shells': 1.0, 'mark': 1.0, 'right': 1.0, 'plastic': 1.0, 'been': 1.0, 'had': 1.0, 'as': 2.0, 'to': 3.0, 'inserts': 1.0, 'are': 1.0, 'with': 3.0, 'fitting': 1.0, 'baby': 1.0, 'them': 2.0, 'since': 1.0, 'well': 2.0, 's': 2.0, 't': 2.0, 'a': 3.0, 'leak': 2.0, 'far': 1.0, 'too': 1.0, 'and': 1.0, 'm': 1.0, 'still': 1.0, 'using': 1.0, 'coordinating': 1.0, 'like': 1.0, 'way': 3.0, 'find': 1.0, 'than': 1.0, 'home': 1.0, 'made': 1.0, 'pants': 1.0, 'getting': 1.0, 'did': 1.0, 'over': 1.0, 'don': 1.0}
Word element => {'hoops': 1.0, 'jumped': 1.0, 'has': 1.0, 'cottonbabies': 1.0, 'anytime': 1.0, 'should': 1.0, 'look': 1.0, 'urge': 1.0, 'negative': 1.0, 'first': 1.0, 'higher': 1.0, 'seriously': 1.0, 'possible': 1.0, 'am': 1.0, 'pay': 1.0, 'quality': 1.0, 'service': 1.0, 'customer': 1.0, 'poor': 1.0, 'emailing': 1.0, 'keep': 1.0, 'last': 1.0, 'written': 1.0, 'sizing': 1.0, 'gave': 1.0, 'run': 1.0, 'couldn': 1.0, 'return': 1.0, 'replacement': 1.0, 'explaining': 1.0, 'no': 2.0, 'unless': 1.0, 'guarantee': 2.0, 'cannot': 1.0, 'telling': 1.0, '4': 1.0, 'under': 1.0, 'trying': 1.0, 'purchases': 1.0, 'proof': 1.0, 'getting': 1.0, 'around': 2.0, 'running': 1.0, 'falling': 1.0, 'sent': 3.0, 'daughters': 1.0, 'simply': 1.0, 'never': 1.0, 'take': 1.0, 'went': 1.0, 'conversation': 1.0, 'back': 2.0, 'thus': 1.0, 'pictures': 3.0, 'problems': 1.0, 'emailed': 1.0, 'me': 6.0, 'led': 1.0, 'store': 1.0, 'woman': 1.0, 'spoke': 1.0, 'frustrated': 1.0, '3red': 1.0, '11': 1.0, 'range': 1.0, 'do': 1.0, 'wrangle': 1.0, 'walking': 1.0, 'w': 1.0, 'live': 2.0, 'normal': 1.0, 'at': 3.0, 'snail': 1.0, '27': 1.0, 'ended': 1.0, 'she': 3.0, 'hours': 1.0, 'baby': 1.0, 'period': 2.0, 'that': 12.0, 'because': 1.0, 'touch': 2.0, 'resorted': 1.0, 'cheap': 1.0, 'only': 1.0, 'feel': 1.0, 'quickly': 1.0, 'through': 1.0, 'into': 2.0, 'company': 2.0, 'bedrest': 1.0, 'handle': 1.0, 'people': 1.0, 'excited': 1.0, 'os': 3.0, 'question': 1.0, 'during': 1.0, 'out': 3.0, 'and': 21.0, 'just': 5.0, 'jr': 1.0, 'had': 6.0, 'daughter': 2.0, 'swaddlebees': 2.0, 'proportionate': 1.0, 'see': 3.0, 'responded': 1.0, 'until': 1.0, 'son': 1.0, 'now': 1.0, 'done': 1.0, 'almost': 1.0, 'limit': 1.0, 'mail': 1.0, 'well': 1.0, 'i': 33.0, 'grovia': 1.0, 'handful': 1.0, 'small': 1.0, 'a': 12.0, 'month': 1.0, 'kids': 1.0, 'person': 2.0, 'as': 2.0, 'are': 2.0, 'issues': 1.0, 'my': 14.0, 'defect': 1.0, 'fit': 4.0, 'ago': 2.0, 'friends': 1.0, 'fun': 1.0, 'messages': 1.0, 't': 4.0, 'year': 2.0, 'grobaby': 1.0, 'other': 2.0, 'an': 1.0, 'drawn': 1.0, 'could': 2.0, 'inserts': 4.0, 'frequent': 1.0, 'when': 1.0, 'local': 1.0, 'about': 9.0, 'believe': 1.0, 'several': 1.0, 'while': 1.0, 've': 3.0, 'within': 4.0, 'shelves': 1.0, 'working': 1.0, 'pounds': 1.0, 'who': 4.0, 'website': 1.0, 'were': 8.0, 'noticeably': 1.0, 'trouble': 2.0, 'get': 2.0, 'bought': 1.0, 'couple': 1.0, 'started': 1.0, 'throughout': 1.0, 'them': 13.0, 'grow': 1.0, 'past': 1.0, 'was': 15.0, 'recommend': 1.0, 'disappointed': 1.0, 'how': 2.0, 'explained': 1.0, 'these': 1.0, 'already': 1.0, 'kim': 1.0, 'be': 1.0, 'it': 5.0, 'on': 8.0, 'long': 2.0, 'apart': 1.0, 'going': 3.0, 'cloth': 1.0, '2': 4.0, 'machine': 1.0, 'pregnant': 1.0, 'with': 8.0, '1': 2.0, 'began': 1.0, 'time': 2.0, 'so': 4.0, 'would': 3.0, 'raving': 1.0, 'is': 3.0, 'can': 1.0, 'their': 1.0, 'actual': 1.0, 'for': 6.0, 'moms': 1.0, 'know': 1.0, 're': 3.0, 'not': 4.0, 'let': 1.0, 'issue': 1.0, 'they': 10.0, 'kept': 1.0, 'week': 1.0, 'fuzzy': 1.0, 'bunz': 1.0, 'bother': 1.0, 'growth': 1.0, 'ecconappis': 1.0, 'to': 24.0, 'charts': 1.0, 'got': 2.0, 'one': 4.0, '5': 1.0, 'review': 1.0, 'currently': 1.0, 'largest': 1.0, 'setting': 1.0, 'super': 1.0, 'don': 1.0, 'anticipate': 1.0, 'forth': 2.0, 'much': 1.0, 'washing': 1.0, 'up': 1.0, 'diaper': 6.0, 'sized': 4.0, 'his': 2.0, 'haven': 1.0, 'any': 2.0, 'the': 18.0, 'online': 1.0, 'ceo': 1.0, 'your': 1.0, 'ever': 1.0, 'talking': 1.0, 'm': 1.0, 's': 2.0, 'call': 1.0, 'all': 4.0, 'way': 2.0, 'returned': 1.0, 'reach': 1.0, 'by': 1.0, 'after': 4.0, 'row': 1.0, 'training': 2.0, 'bad': 1.0, 'called': 1.0, 'we': 3.0, 'birth': 1.0, 'like': 1.0, 'wasn': 1.0, 'fine': 1.0, 'document': 1.0, 'used': 1.0, 'mostly': 1.0, 'disposables': 1.0, 'some': 2.0, 'homemade': 1.0, 'actually': 2.0, 'us': 2.0, 'fitted': 1.0, '24': 1.0, 'covers': 1.0, 'bummed': 1.0, 'there': 4.0, 'instead': 1.0, 'holes': 1.0, 'scattered': 1.0, 'looked': 1.0, 'great': 1.0, 'threat': 1.0, 'if': 3.0, 'something': 2.0, 'diapers': 6.0, 'bumgenius': 2.0, 'but': 3.0, 'old': 2.0, 'of': 11.0, 'even': 2.0, 'stored': 1.0, 'indoors': 1.0, 'another': 1.0, 'weighs': 1.0, 'fax': 1.0, 'usual': 1.0, 'send': 1.0, 'times': 2.0, 'organic': 1.0, 'ormsby': 1.0, 'planning': 1.0, 'months': 1.0, 'otherwise': 1.0, 'again': 2.0, 'which': 2.0, 'use': 1.0, 'shop': 1.0, 'seeing': 1.0, 'this': 4.0, 'also': 4.0, 'need': 1.0, 'voicemail': 2.0, 'or': 3.0, 'warranty': 1.0, 'potty': 2.0, 'in': 7.0, 'threats': 1.0, 'here': 3.0, 'help': 2.0, 'height': 1.0, 'email': 3.0, 'eaten': 1.0, 'telephone': 1.0, 'left': 1.0, 'chat': 1.0, 'you': 3.0, 'fitting': 1.0, 'answer': 2.0, 'questions': 1.0, 'weight': 2.0, 'too': 1.0, '3': 4.0}
Word element => {'anyone': 1.0, 'would': 1.0, 'every': 1.0, 'with': 1.0, 'were': 1.0, 'piece': 1.0, 'super': 1.0, 'to': 2.0, 'cute': 1.0, 'very': 1.0, 'need': 1.0, 'recommend': 1.0, 'has': 1.0, 'pleased': 1.0, 'you': 1.0, 'start': 1.0, 'your': 1.0, 'nursery': 1.0, 'everything': 1.0, 'we': 1.0}
Word element => {'all': 1.0, 'at': 1.0, 'not': 1.0, 'good': 1.0, 'or': 1.0, 'over': 1.0, 'fall': 1.0, 'spokes': 1.0, 'a': 2.0, 'in': 1.0, 'for': 2.0, 'popsicle': 1.0, 'thin': 1.0, 'like': 1.0, 'behaves': 1.0, 'very': 1.0, 'buy': 1.0, 'bend': 1.0, 'putting': 1.0, 'flimsy': 1.0, 'item': 1.0, 'styrofoam': 1.0, 'sticks': 1.0, 'base': 1.0, 'this': 1.0, 'it': 1.0, 'would': 1.0, 'be': 1.0, 'acceptable': 1.0, 'anything': 1.0, 'bottles': 1.0, 'but': 1.0, 'the': 1.0, 'lightweight': 1.0, 'more': 1.0}
Word element => {'cups': 1.0, 'sippy': 1.0, 'plus': 1.0, 'because': 1.0, 'been': 1.0, 'bottles': 1.0, 'bigger': 1.0, 'added': 1.0, '4': 1.0, 'for': 1.0, 'accommodate': 1.0, 'could': 1.0, 'well': 1.0, 'and': 1.0, 'accessories': 1.0, 'to': 1.0, 'purpose': 1.0, 'serves': 1.0, 'room': 1.0, 'is': 1.0, 'more': 1.0, 'the': 1.0, 'drying': 1.0, 'bpa': 1.0, 'has': 1.0, 'free': 1.0, 'stars': 1.0, 'only': 1.0, 'it': 1.0, 'have': 1.0}
Word element => {'stupid': 1.0, 'feel': 1.0, 'than': 1.0, 'bit': 1.0, 'is': 1.0, 'be': 2.0, 'carrier': 1.0, 'advised': 1.0, 'but': 1.0, 'paid': 1.0, 'pleased': 1.0, '6': 1.0, 'there': 1.0, 'for': 1.0, 'item': 1.0, 'somewhat': 1.0, 'to': 1.0, 'was': 1.0, 'low': 1.0, 'after': 1.0, 'this': 1.0, 'with': 1.0, 'it': 1.0, 'found': 1.0, '17': 1.0, 'i': 3.0, 'law': 1.0, 'a': 3.0, 'quite': 2.0, 'ridiculous': 1.0, 'price': 2.0, 'withnanother': 1.0, 'more': 1.0, '99': 2.0, 'the': 1.0, 'higher': 1.0, 'ought': 1.0}
Word element => {'score': 1.0, 'for': 1.0, 'cradle': 1.0, '4': 1.0, 'not': 1.0, 'costs': 1.0, 'will': 1.0, '15': 1.0, 'intended': 1.0, 'as': 1.0, 'bath': 2.0, 'during': 2.0, 'sealed': 1.0, 'available': 1.0, 'colors': 1.0, 'since': 1.0, 'turtles': 1.0, 'help': 1.0, 'just': 2.0, 's': 3.0, 'a': 7.0, 'laundry': 1.0, 'less': 1.0, 'inside': 1.0, 'but': 2.0, 'spent': 1.0, 'none': 1.0, 'picture': 1.0, 'prescribed': 1.0, 'than': 1.0, 'thinner': 1.0, 'that': 1.0, 'soft': 1.0, 'this': 3.0, 'awfully': 1.0, 'foam': 1.0, 'add': 1.0, 'might': 1.0, 'came': 1.0, 'guessing': 1.0, 'which': 1.0, 'towels': 1.0, 'manufacturer': 1.0, 'reading': 1.0, 'like': 1.0, 'seems': 2.0, 'time': 3.0, '00': 1.0, 'so': 2.0, 'he': 2.0, 'boy': 1.0, 'either': 1.0, '3': 1.0, 'taking': 1.0, 'also': 1.0, 'received': 1.0, 'us': 1.0, 'closer': 1.0, 'frame': 1.0, 'i': 3.0, 'well': 2.0, 'with': 3.0, 'fitting': 1.0, 'specified': 1.0, 'was': 2.0, 'r': 1.0, 'do': 1.0, 'and': 6.0, 'once': 1.0, 'the': 7.0, 'of': 2.0, 'lil': 1.0, 'sponge': 1.0, 'no': 1.0, 'down': 1.0, 'several': 1.0, 'additional': 1.0, 'cost': 1.0, 'using': 1.0, 'bag': 1.0, 'baby': 1.0, 'logo': 1.0, 'on': 2.0, 'in': 4.0, 'm': 1.0, 'cut': 1.0, 'they': 1.0, 'think': 1.0, 'usual': 1.0, 'retailer': 1.0, 're': 2.0, 'if': 1.0, 'suited': 1.0, 'steady': 1.0, 'should': 2.0, 'matters': 1.0, 'or': 1.0, 'scalloped': 1.0, 'keep': 1.0, 'makes': 1.0, 'we': 1.0, 'fine': 2.0, 'difference': 1.0, 'obviously': 1.0, 'job': 1.0, 'to': 3.0, 'any': 1.0, 'our': 2.0, 'you': 1.0, 'other': 1.0, 'one': 1.0, 'bit': 1.0, 'grandson': 1.0, 'makeshift': 1.0, 'blue': 1.0, 'look': 1.0, 'at': 2.0, 'patterns': 1.0, 'is': 2.0, 'form': 2.0, 'it': 6.0, 'him': 2.0}
Word element => {'xoxoanne': 1.0, 'shopping': 1.0, 'happy': 1.0, 'envy': 1.0, 'incredible': 1.0, 'beware': 1.0, 'purchased': 1.0, 'option': 1.0, 'not': 1.0, 'may': 1.0, 'person': 1.0, 'seeing': 1.0, 'area': 1.0, 'someone': 1.0, 'helps': 1.0, 'review': 1.0, 'hope': 1.0, 'costomer': 1.0, 'satisfied': 1.0, 'options': 1.0, 'conclusion': 1.0, 'child': 1.0, 'entirely': 1.0, 'small': 1.0, 'available': 2.0, 'still': 1.0, 'advantage': 1.0, 'regarding': 1.0, 'an': 2.0, 'basket': 3.0, 'tossed': 1.0, 'bottle': 1.0, 'water': 1.0, 'huge': 1.0, 'lives': 1.0, 'practice': 1.0, 'running': 1.0, 'proved': 1.0, 'arrival': 1.0, 'another': 1.0, 'spend': 1.0, 'deal': 2.0, 'where': 1.0, 'many': 1.0, 'optional': 1.0, 'other': 1.0, 'reason': 1.0, 'looking': 1.0, 'but': 4.0, 'chose': 1.0, 'make': 2.0, 'handle': 2.0, 'at': 1.0, 'look': 1.0, 'height': 1.0, 'adjustable': 1.0, '4': 1.0, 'adjustble': 1.0, 'cup': 1.0, 'inside': 1.0, 'weather': 1.0, 'using': 3.0, 'with': 4.0, 'once': 1.0, 'lack': 1.0, 'accessories': 2.0, 'fold': 1.0, 'far': 1.0, 'ride': 3.0, 'really': 2.0, 'some': 2.0, 'folding': 1.0, 'though': 1.0, 'storage': 1.0, 'months': 1.0, '5': 1.0, 'high': 1.0, 'hoping': 1.0, 'to': 10.0, 'work': 1.0, 'minimal': 1.0, 'isn': 1.0, 'takes': 1.0, '7': 2.0, 'up': 3.0, 'iowa': 1.0, 'single': 1.0, 'errands': 1.0, 'well': 1.0, 'access': 1.0, 'big': 2.0, 'was': 1.0, 'bar': 2.0, 'been': 3.0, 'location': 1.0, 'has': 3.0, 'had': 1.0, 'configuration': 2.0, 'weeks': 1.0, 'problem': 1.0, 'now': 1.0, 'figure': 1.0, 'comfy': 1.0, 'used': 1.0, 'in': 8.0, 'seat': 10.0, 'perfect': 2.0, 'family': 3.0, 'biggest': 1.0, 'wagon': 1.0, 'of': 2.0, 'old': 3.0, 'you': 1.0, 'able': 1.0, 'easily': 1.0, 'advantages': 1.0, 'because': 1.0, 'that': 2.0, 'when': 1.0, 'kiddo': 1.0, 'our': 2.0, 'how': 2.0, 'very': 1.0, 'find': 1.0, 'why': 1.0, 'double': 1.0, 'reviews': 2.0, 'we': 1.0, 'my': 11.0, 'me': 5.0, 'retailers': 1.0, 'awesome': 1.0, 'stroller': 10.0, 'year': 2.0, 'leaving': 1.0, 'being': 1.0, 'tried': 1.0, 'just': 2.0, 'and': 9.0, 'baby': 1.0, 'hours': 1.0, 'reading': 1.0, 'volvo': 1.0, 'car': 3.0, 'the': 40.0, 'online': 1.0, 'feel': 1.0, 'unfolded': 1.0, 'fit': 2.0, 'ago': 1.0, 'above': 1.0, 't': 5.0, 'purchase': 1.0, 'for': 12.0, 'whole': 1.0, 'as': 2.0, 'this': 2.0, 'explorer': 4.0, 'i': 12.0, 'bag': 3.0, 'a': 10.0, 'higher': 1.0, 'mall': 1.0, 'configurations': 1.0, 'growing': 1.0, 'quick': 1.0, 'bit': 1.0, 'bought': 1.0, 'which': 2.0, 'helpful': 1.0, 'four': 1.0, 'items': 1.0, 'on': 4.0, 'have': 5.0, 'found': 2.0, 'hot': 1.0, 'since': 1.0, 'day': 1.0, 'so': 1.0, 'is': 7.0, 'can': 5.0, 's': 1.0, 'doesn': 1.0, 'heat': 1.0, 've': 1.0, 'while': 2.0, 'hasn': 1.0, 'ect': 1.0, 'or': 2.0, 'accommodates': 1.0, 'graco': 1.0, 'perfectly': 2.0, 'give': 1.0, 'hang': 2.0, 'space': 1.0, 'most': 1.0, 'preschool': 1.0, 'back': 2.0, 'adaptor': 2.0, 'enjoyed': 1.0, 'carry': 5.0, 'out': 2.0, 'cot': 5.0, 'it': 6.0, 'be': 3.0, 'second': 3.0, 'normal': 1.0, 'possible': 1.0, 'pram': 1.0, 'newborn': 2.0, 'stretch': 1.0, 'pool': 1.0, 'loved': 1.0, 'choose': 1.0, 'tummy': 1.0, 'top': 1.0, 'time': 1.0, 'week': 1.0, 'guy': 2.0, 'end': 1.0, 'attached': 1.0, 'all': 1.0, 'swam': 1.0, 'who': 1.0, 'from': 1.0, 'gives': 1.0, 'sleeping': 1.0, 'worked': 1.0, 'if': 1.0, 'great': 2.0, 'into': 1.0, 'pick': 1.0, 'oldest': 1.0, 'also': 2.0, 'fine': 1.0, 'like': 2.0, 'upper': 1.0, 'purchases': 1.0, 'forward': 1.0, 'smooth': 2.0, 'changes': 1.0, 'ok': 1.0, 'mini': 1.0, 'diddie': 1.0, 'lost': 1.0, 'worthless': 1.0, 'thus': 1.0, 'attaches': 1.0, 'discuss': 1.0, 'holders': 1.0}
Word element => {'folded': 1.0, 'difficult': 1.0, 'work': 1.0, 'might': 1.0, 'how': 1.0, 'so': 1.0, 'car': 1.0, 'compared': 1.0, 'flat': 1.0, 'completely': 2.0, 'mind': 1.0, 'taking': 2.0, 'back': 2.0, 'collapses': 1.0, 'use': 1.0, 'kit': 4.0, 'doubles': 4.0, 'whether': 1.0, 'answer': 1.0, 'p': 1.0, 'with': 2.0, 'dissatisfied': 1.0, 'models': 1.0, 'trying': 1.0, 'any': 1.0, 'anyone': 1.0, 'recommend': 1.0, 'll': 1.0, 'soon': 1.0, 'fall': 1.0, 'apart': 1.0, 'going': 1.0, 'looking': 1.0, 'being': 2.0, 'jumped': 1.0, 'nothing': 1.0, 'box': 1.0, 'out': 3.0, 'straight': 1.0, 'liking': 1.0, 'holding': 1.0, 'menuveurs': 1.0, 'or': 1.0, 'spending': 1.0, 'enough': 2.0, 'down': 2.0, 've': 2.0, 'adjusts': 1.0, 'people': 1.0, 'help': 1.0, 'goes': 1.0, 'handlebar': 2.0, 'oldest': 1.0, 'cup': 1.0, 'jogging': 1.0, 'sort': 1.0, 'agree': 1.0, 'teds': 3.0, 'front': 1.0, 'jogger': 2.0, 'number': 1.0, 'an': 1.0, 'roads': 1.0, 'extremely': 1.0, 'cobblestone': 1.0, 'his': 1.0, 'handles': 1.0, 'getting': 1.0, 'thinking': 2.0, 'giant': 1.0, 'different': 1.0, 'not': 4.0, 'air': 1.0, 'done': 1.0, 'adjustable': 1.0, 'almost': 1.0, 'in': 8.0, 'currently': 1.0, 'push': 1.0, 'first': 1.0, 'bothered': 1.0, 'size': 2.0, 'buggy': 2.0, 'imagine': 1.0, 'others': 1.0, 'wheel': 1.0, 'never': 2.0, 'some': 3.0, 'cheap': 1.0, 'only': 2.0, 'for': 10.0, 'purchase': 1.0, 'great': 2.0, 'if': 3.0, 'still': 2.0, 'having': 2.0, 'three': 1.0, 'day': 1.0, 'since': 1.0, 'very': 2.0, 'find': 2.0, 'explorer': 1.0, 'this': 6.0, 'bit': 1.0, 'glider': 1.0, 'truly': 1.0, 'stated': 1.0, 'been': 1.0, 'we': 2.0, 'a': 8.0, 'brothers': 1.0, 'two': 1.0, 'ago': 1.0, 't': 1.0, 'living': 1.0, 'the': 28.0, 'even': 1.0, 'old': 2.0, 'of': 10.0, 'doing': 1.0, 'italy': 2.0, 'didn': 1.0, 'duo': 1.0, 'younger': 1.0, 'quality': 1.0, 'found': 1.0, 'have': 3.0, 'important': 1.0, 'four': 2.0, 'but': 6.0, 'fold': 2.0, 'schwinn': 2.0, 'list': 1.0, 'strollers': 1.0, 'built': 2.0, 'stroller': 9.0, 'year': 1.0, 'child': 1.0, 'price': 2.0, 'up': 2.0, 'over': 1.0, 'distance': 1.0, 'on': 7.0, 'pushing': 1.0, 'realize': 1.0, 'had': 2.0, 'type': 1.0, 'as': 3.0, 'to': 14.0, 'years': 3.0, 'no': 1.0, 'would': 4.0, 'room': 1.0, 'are': 2.0, 'my': 12.0, 'me': 3.0, 'single': 2.0, 'at': 4.0, 'double': 4.0, 'every': 1.0, 'video': 1.0, 'initially': 1.0, 'through': 1.0, 'considering': 1.0, 'husband': 1.0, 'resolve': 1.0, 'more': 1.0, 'traveled': 1.0, 'able': 2.0, 'get': 3.0, 'was': 9.0, 'though': 1.0, 'by': 3.0, 'all': 3.0, 'i': 21.0, 'simple': 1.0, 'fix': 1.0, 'know': 1.0, 'save': 2.0, 'graco': 2.0, 'yourself': 1.0, 'did': 1.0, 'time': 3.0, 'assembled': 1.0, 'and': 21.0, 'just': 1.0, 'once': 1.0, 'compliments': 1.0, 'immediately': 1.0, 'hundred': 1.0, 'could': 1.0, 'durable': 1.0, 'go': 2.0, 'youtube': 1.0, 'instructional': 1.0, 'assembly': 1.0, 'it': 17.0, 'be': 4.0, 'own': 1.0, 'off': 3.0, 'until': 1.0, 'small': 1.0, 'complaint': 1.0, 'compact': 2.0, 'is': 10.0, 'can': 3.0, 'included': 1.0, 'worth': 1.0, 'order': 1.0, 'holder': 1.0, 'tires': 1.0, 'actually': 1.0, 'accessories': 1.0, 'bottom': 2.0, 'issue': 1.0, 'that': 7.0, 'wish': 1.0, 'there': 3.0, 'you': 3.0, 'owned': 2.0, 'around': 1.0, 'least': 1.0, 'seem': 1.0, 'storage': 1.0, 'tray': 1.0, 'like': 1.0, 'something': 1.0, 'well': 2.0, 'line': 1.0, 'where': 1.0, 'bought': 1.0, 'put': 1.0, 'tag': 1.0, 'asked': 1.0, 'tell': 1.0, 'them': 1.0, 'm': 1.0, 's': 5.0, 'without': 1.0, 'maybe': 1.0, 'agrees': 1.0, 'best': 1.0, 'locking': 1.0, 'absolutely': 1.0, 'one': 1.0, 'need': 1.0, 'also': 1.0, 'research': 1.0, 'area': 1.0, 'phil': 3.0, 'penny': 1.0, 'finding': 1.0, 'mountain': 2.0, 'extra': 1.0, 'couple': 1.0, 'plenty': 1.0, 'cheaper': 2.0}
Word element => {'learn': 1.0, 'live': 1.0, 'arrived': 1.0, 'love': 1.0, 'kit': 1.0, 'doubles': 1.0, 'spent': 1.0, 'then': 1.0, 'but': 1.0, 'money': 2.0, 'worth': 1.0, 'use': 1.0, 'easy': 1.0, 'versatile': 1.0, 'so': 1.0, 'is': 1.0, 'to': 2.0, 'phil': 1.0, 'was': 3.0, 'after': 1.0, 'invest': 1.0, 'i': 7.0, 'knew': 1.0, 'on': 1.0, 'guy': 1.0, 'cousin': 1.0, 'months': 2.0, 'little': 1.0, 'totally': 1.0, 'been': 1.0, 'apart': 1.0, 'daughter': 3.0, 'you': 1.0, 'when': 3.0, 'explorer': 1.0, 'children': 1.0, 'tried': 1.0, '22': 2.0, 'wish': 1.0, 'this': 4.0, 'with': 1.0, 'it': 1.0, 'and': 6.0, 'has': 2.0, 'who': 1.0, 'born': 2.0, 'my': 8.0, 'ted': 1.0, 'taking': 1.0, 's': 1.0, 'a': 3.0, 'double': 1.0, 'stroller': 4.0, 'life': 1.0, 'are': 1.0, 'saver': 1.0, 'out': 1.0, 'before': 1.0, 'once': 1.0, 'both': 1.0, 'fun': 1.0, 'purchased': 2.0, 'son': 2.0, 'them': 1.0, 'baby': 1.0, 'in': 3.0, 'bjorn': 1.0, 'needed': 1.0, 'carrier': 1.0, 'the': 4.0, 'not': 1.0}
Word element => {'job': 1.0, 'for': 1.0, 'and': 1.0, 'solid': 1.0, 'seems': 1.0, 'very': 1.0, 'as': 1.0, 'but': 1.0, 'dog': 1.0, 'my': 1.0, 'use': 1.0, 'excellent': 1.0, 'started': 1.0, 'because': 1.0, 'not': 1.0, 'product': 2.0, 'did': 1.0, 'i': 2.0, 'gate': 2.0, 'a': 1.0, 'so': 1.0, 'jumping': 1.0, 'to': 1.0, 'had': 1.0, 'the': 4.0, 'replace': 1.0, 'advertised': 1.0, 'with': 1.0, 'it': 1.0, 'different': 1.0, 'is': 1.0, 'type': 1.0, 'completely': 1.0, 'of': 1.0}
Word element => {'small': 1.0, 'well': 1.0, 'wanted': 1.0, 'like': 1.0, 'very': 1.0, 'and': 1.0, 'i': 3.0, 'or': 1.0, 'what': 1.0, 'just': 1.0, 'sturdy': 1.0, 'recommend': 1.0, 'gate': 3.0, 'really': 1.0, 'is': 2.0, 'the': 2.0, 'made': 1.0, 'would': 1.0, 'for': 1.0, 'it': 1.0, 'this': 1.0, 'children': 1.0, 'dogs': 1.0, 'medium': 1.0}
Word element => {'wall': 1.0, 'them': 1.0, 'through': 1.0, 'used': 1.0, 'center': 1.0, 'small': 2.0, 'screw': 1.0, 'have': 1.0, 'job': 1.0, 'secure': 1.0, 'put': 1.0, 'but': 1.0, 'actually': 1.0, 'are': 1.0, 'hold': 1.0, 'do': 1.0, 'and': 1.0, 'very': 2.0, 'install': 1.0, 'to': 4.0, 'place': 1.0, 'than': 1.0, 'gate': 1.0, 'well': 2.0, 'a': 3.0, 'that': 1.0, 'their': 1.0, 'were': 1.0, 'the': 3.0, 'these': 1.0, 'they': 2.0, 'hole': 1.0, 'also': 1.0, 'in': 2.0, 'little': 1.0, 'easy': 1.0, 'bigger': 1.0, 'expected': 1.0, 'bit': 1.0, 'i': 2.0}
Word element => {'disappointed': 1.0, 't': 1.0, 'don': 1.0, 'it': 1.0, 'money': 1.0, 'i': 2.0, 'my': 1.0, 'cheap': 1.0, 'product': 1.0, 'not': 1.0, 'at': 1.0, 'very': 2.0, 'quality': 1.0, 'and': 1.0, 'recommend': 1.0, 'good': 1.0, 'all': 1.0, 'wasted': 1.0}
Word element => {'pants': 1.0, 'sewing': 1.0, 'than': 1.0, 'better': 1.0, 'mom': 1.0, 'idea': 1.0, 'item': 1.0, 'have': 1.0, 'needed': 1.0, 'for': 1.0, 'much': 1.0, 'pricey': 1.0, 'a': 2.0, 'of': 1.0, 'execution': 1.0, 'suppose': 1.0, 'and': 1.0, 'the': 1.0, 'ones': 1.0, 'great': 1.0, 'tiny': 1.0, 's': 2.0, 'who': 1.0, 'little': 2.0, 'it': 1.0, 'with': 1.0, 'waists': 1.0, 'but': 1.0, 'i': 1.0}
Word element => {'versiable': 1.0, 'great': 1.0, 'thank': 1.0, 'product': 1.0, 'this': 1.0, 'works': 1.0, 'in': 1.0, 'son': 1.0, 'figured': 1.0, 'that': 1.0, 'play': 2.0, 'n': 1.0, 'up': 1.0, 'also': 1.0, 'with': 2.0, 'find': 2.0, 'way': 1.0, 'than': 1.0, 'could': 2.0, 'we': 1.0, 'bedding': 2.0, 'yoiu': 1.0, 't': 3.0, 'life': 1.0, 'by': 1.0, 'on': 3.0, 'your': 1.0, 'went': 3.0, 'aunt': 1.0, 'family': 1.0, 'most': 1.0, 'but': 2.0, 'disabled': 1.0, 'am': 1.0, 'you': 1.0, 'picked': 1.0, 'thinking': 1.0, 'buy': 1.0, 'day': 2.0, 'reason': 1.0, 'some': 1.0, 'hat': 1.0, 'have': 1.0, 'grandbabie': 1.0, 'to': 4.0, 'nt': 1.0, 'angel': 1.0, 'two': 1.0, 'little': 3.0, 'set': 1.0, 'there': 2.0, 'they': 1.0, 'i': 7.0, 'well': 1.0, 'mobile': 2.0, 'one': 1.0, 'just': 1.0, 'join': 1.0, 'such': 1.0, 'for': 4.0, 'expensive': 1.0, 'of': 3.0, 'the': 10.0, 'onoe': 1.0, 'line': 1.0, 'crib': 1.0, 'lt': 1.0, 'anywho': 1.0, 'bout': 1.0, 'my': 4.0, 'me': 2.0, 'princess': 2.0, 'not': 1.0, 'put': 1.0, 'do': 1.0, 'and': 5.0, 'so': 4.0, 'didn': 2.0, 'ordered': 1.0, 'his': 1.0, 'girl': 1.0, 'raised': 1.0, 'baby': 1.0, 'she': 2.0, 'it': 4.0, 'is': 3.0, 'more': 1.0, 'our': 2.0, 'shopping': 2.0, 'how': 1.0, 'grocery': 1.0, 'boys': 1.0, 'first': 2.0, 'owell': 1.0, 'walmarts': 1.0, 'mention': 1.0, 'has': 1.0, 'next': 1.0, 'grandchildren': 1.0, 'over': 1.0, 'course': 1.0, 'section': 1.0, 'guess': 1.0, 'what': 1.0, 'purchased': 1.0, 'bit': 1.0, 'know': 1.0, 'found': 1.0, 'yep': 1.0, 'right': 2.0, 'pack': 2.0, 'othee': 1.0, 'gets': 1.0, 'a': 5.0, 'nana': 1.0, 'spoiled': 1.0}
Word element => {'girl': 1.0, 'baby': 1.0, 'a': 1.0, 'anyone': 1.0, 'recommend': 1.0, 'crib': 1.0, 'with': 1.0, 'on': 1.0, 'her': 1.0, 'cute': 1.0, 'i': 2.0, 'it': 2.0, 'gave': 1.0, 'granddaughter': 1.0, 'this': 1.0, 'to': 2.0, 'my': 1.0, 'and': 1.0, 'mobile': 1.0, 'looks': 1.0, 'so': 1.0}
Word element => {'hang': 1.0, 'fabric': 1.0, 'great': 1.0, 'of': 2.0, 'ordered': 1.0, 's': 1.0, 'for': 1.0, 'nicely': 1.0, 'very': 1.0, 'quality': 1.0, 'and': 2.0, 'son': 1.0, 'room': 1.0, 'these': 1.0, 'they': 2.0, 'made': 1.0, 'my': 1.0, 'are': 2.0, 'adorable': 1.0}
Word element => {'impressed': 1.0, 'for': 1.0, 'cost': 1.0, 'songs': 1.0, 'was': 1.0, 'to': 3.0, 'not': 3.0, 'see': 1.0, 'fold': 1.0, 'a': 1.0, 's': 1.0, 'it': 2.0, 'much': 1.0, 'other': 1.0, 'the': 6.0, 'you': 1.0, 'when': 2.0, 'i': 2.0, 'use': 1.0, 'than': 1.0, 'day': 1.0, 'thought': 1.0, 'that': 1.0, 'too': 1.0, 'play': 1.0, 'and': 1.0, 'surprised': 1.0, 'also': 1.0, 'will': 1.0, 'but': 1.0, 'music': 2.0, 'is': 1.0, 'this': 1.0, 'pain': 1.0, 'full': 1.0, 'overall': 1.0, 'rather': 1.0, 'snippets': 1.0, 'have': 2.0, 'press': 1.0, 'button': 1.0, 'bigger': 1.0, 'repeatedly': 1.0, 'received': 1.0, 'how': 1.0, 'fairs': 1.0, 'up': 1.0, 'child': 1.0, 'in': 1.0, 'length': 1.0, 'arrives': 1.0}
Word element => {'lights': 1.0, 'day': 1.0, 'my': 1.0, 'price': 1.0, 'totally': 1.0, 'every': 1.0, 'bigger': 1.0, 'larger': 1.0, 'area': 1.0, 'make': 1.0, 'liking': 1.0, 'parts': 1.0, 'noticing': 1.0, 'or': 2.0, 'more': 1.0, 'wiggles': 1.0, 'be': 3.0, 'coos': 1.0, 'on': 3.0, 'your': 3.0, 'months': 1.0, 'hang': 1.0, 'is': 1.0, 'at': 1.0, 'keep': 1.0, 'for': 4.0, 'mirror': 1.0, 'continues': 1.0, 'has': 2.0, 'start': 1.0, 'right': 1.0, '2': 1.0, 'around': 1.0, 'music': 2.0, 'hanging': 2.0, 'weeks': 1.0, 'worth': 1.0, 'now': 1.0, 'the': 12.0, 'of': 2.0, 'to': 5.0, 'was': 2.0, 'vary': 1.0, 'old': 1.0, 'mat': 2.0, 'gift': 1.0, 'dog': 1.0, 'before': 1.0, 'a': 3.0, 'we': 5.0, 'born': 1.0, 'son': 6.0, 'couple': 1.0, 'absolutely': 1.0, 'out': 1.0, 'and': 7.0, 'play': 2.0, 'loved': 1.0, 'got': 1.0, 'can': 4.0, 'so': 1.0, 'are': 3.0, 'just': 2.0, 'variety': 1.0, 'by': 1.0, 'one': 1.0, 'happy': 1.0, 'in': 3.0, 'when': 3.0, 'things': 1.0, 'you': 1.0, 'with': 3.0, 'this': 3.0, 'him': 1.0, 'it': 9.0, 'love': 1.0, 'fold': 2.0, 'far': 1.0, 'he': 4.0, 'our': 5.0, 'how': 2.0, 'gets': 2.0, 'adjust': 1.0, 'himself': 1.0, 'plays': 2.0, 'putting': 1.0, 'i': 4.0, 'will': 1.0, 'adding': 1.0, 'find': 1.0, 'laying': 1.0, 'soothing': 1.0, 'down': 3.0, 'grown': 1.0, 'from': 2.0, 'fun': 1.0, 'not': 1.0, 'baby': 1.0, 'many': 1.0, 'started': 2.0, 'toys': 3.0, 'like': 3.0, 'using': 1.0, 'less': 1.0, 'up': 2.0, 's': 1.0, 'sides': 1.0, 'gives': 1.0, 'they': 1.0, 'that': 6.0, 'way': 1.0, 'as': 5.0, 'annoying': 1.0, 'leave': 1.0, 'have': 2.0, 'rings': 4.0, 'rearranged': 1.0, 'used': 1.0, 'great': 2.0, 'some': 3.0, 'own': 1.0, 'all': 1.0, 'other': 1.0, 'little': 2.0, 'us': 1.0, 'items': 2.0}
Word element => {'store': 1.0, 'if': 1.0, 'pay': 1.0, 'junk': 1.0, 'would': 2.0, '80': 2.0, 'almost': 1.0, 'quickly': 2.0, 'package': 1.0, 'after': 1.0, 'and': 4.0, 'similar': 1.0, 'play': 1.0, 'of': 1.0, 'the': 12.0, 'quality': 2.0, 'baby': 1.0, 'bought': 1.0, 'get': 1.0, 'months': 1.0, 'on': 1.0, 's': 1.0, 'a': 3.0, 't': 1.0, '2010': 1.0, 'heavier': 1.0, 'opened': 1.0, 'starts': 1.0, 'joy': 1.0, 'another': 1.0, 'bright': 1.0, 'however': 1.0, 'our': 3.0, 'rather': 1.0, 'cheap': 2.0, 'daughter': 3.0, 'soon': 1.0, 'playgym': 2.0, 'us': 2.0, 'turned': 1.0, 'gave': 2.0, 'that': 1.0, 'been': 1.0, 'my': 3.0, 'looks': 1.0, 'as': 6.0, 'annoying': 1.0, 'anger': 1.0, 'loved': 1.0, 'so': 3.0, 'walls': 1.0, 'it': 5.0, 'thought': 2.0, 'playmat': 3.0, 'much': 2.0, 'disappointment': 1.0, 'old': 1.0, 'i': 9.0, 'seen': 1.0, '4': 1.0, 'buy': 1.0, 'shown': 1.0, 'washed': 1.0, 'friend': 2.0, '1': 2.0, 'mat': 1.0, 'is': 3.0, 'with': 3.0, 'overall': 1.0, 'thin': 1.0, '3': 2.0, 'older': 1.0, 'this': 1.0, 'thicker': 1.0, 'are': 2.0, 'first': 1.0, 'her': 1.0, 'wash': 1.0, 'over': 1.0, 'gentle': 1.0, 'cycle': 1.0, 'has': 1.0, 'decided': 1.0, 'toy': 1.0, 'china': 1.0, 'fabric': 1.0, 'for': 3.0, '10': 1.0, 'times': 1.0, '2': 2.0, 'made': 2.0, 'side': 1.0, 'not': 3.0, 'sturdy': 1.0, 'picture': 1.0, 'even': 1.0, 'very': 2.0, 'flimsy': 1.0, 'in': 3.0, 'to': 3.0, 'high': 2.0, 'length': 1.0, 'one': 2.0, 'electronic': 1.0, 'doesn': 1.0, 'piece': 1.0, 'full': 1.0, 'had': 2.0, 'songs': 1.0, 'toys': 1.0, 'gets': 1.0, 'bored': 1.0}
Word element => {'anymore': 1.0, 'us': 1.0, 'rolling': 1.0, '1': 1.0, '4': 1.0, 'he': 1.0, 'now': 1.0, 'besides': 1.0, 'at': 1.0, 'that': 2.0, 'lights': 1.0, 'for': 3.0, 'liked': 1.0, 'is': 3.0, 'months': 1.0, 'one': 1.0, 'bought': 1.0, 'all': 2.0, 'to': 1.0, 'our': 1.0, 'as': 1.0, 'son': 1.0, 'ok': 1.0, 'just': 2.0, 'second': 1.0, 'rainforest': 1.0, 'worth': 1.0, 'or': 1.0, 'mat': 1.0, 't': 2.0, 'a': 1.0, 'we': 2.0, 'and': 4.0, 'play': 2.0, 'this': 3.0, 'it': 1.0, 'have': 1.0, 'area': 1.0, 'fisher': 2.0, 'of': 1.0, 'don': 1.0, 'over': 1.0, 'up': 1.0, 'place': 1.0, 'the': 7.0, 'in': 1.0, 'walls': 2.0, 'so': 3.0, 'much': 1.0, 'better': 1.0, 'quality': 1.0, 'price': 2.0, 'fun': 1.0, 'be': 1.0, 'him': 1.0, 'on': 1.0, 'are': 1.0, 'idea': 1.0, 'work': 1.0, '2': 1.0, 'money': 1.0, 'music': 1.0, 'but': 1.0, 'can': 1.0, 'down': 1.0, 'isn': 1.0}
Word element => {'no': 1.0, 'received': 1.0, 'with': 1.0, 'it': 1.0, 'first': 1.0, 'time': 2.0, 'they': 3.0, 'have': 2.0, 'amazon': 1.0, 'this': 1.0, 'provided': 1.0, 'ordered': 1.0, 'in': 1.0, 'had': 1.0, 'to': 5.0, 'mail': 1.0, 'now': 1.0, 'look': 1.0, 'the': 5.0, 'link': 1.0, 'personalized': 1.0, 'replacement': 1.0, 'ornament': 2.0, 'and': 2.0, 'recommend': 1.0, 'refund': 1.0, 'do': 1.0, 'followed': 1.0, 'nice': 1.0, 'i': 5.0, 'directions': 1.0, 'though': 1.0, 'goodwill': 1.0, 'e': 1.0, 'were': 1.0, 'enough': 1.0, 'a': 1.0, 'personalization': 2.0, 'but': 2.0, 'not': 1.0, 'me': 2.0, 'wrong': 1.0, 'provide': 2.0, 'got': 1.0, 'even': 1.0, 'ornaments': 1.0, 'again': 2.0, 'did': 1.0, 'gave': 1.0}
Word element => {'come': 1.0, 'years': 1.0, 'for': 1.0, 'enjoy': 1.0, 'it': 3.0, 'expect': 1.0, 'i': 2.0, 'cute': 1.0, 'very': 1.0, 'and': 2.0, 'nice': 1.0, 'to': 2.0, 'product': 1.0, 'exactly': 1.0, 'was': 2.0, 'expected': 1.0, 'what': 1.0, 'a': 1.0}
Word element => {'email': 1.0, 'received': 1.0, 'later': 1.0, 'an': 2.0, 'out': 1.0, 'figure': 1.0, 'hour': 1.0, 'trying': 1.0, 'time': 1.0, 'of': 1.0, 'lot': 1.0, 'a': 1.0, 'spent': 1.0, 'quickly': 1.0, 'then': 1.0, 'delivered': 1.0, 'product': 2.0, 'description': 1.0, 'happy': 1.0, 'to': 2.0, 'was': 4.0, 'explaining': 1.0, 'thing': 1.0, 'only': 1.0, 'this': 2.0, 'with': 1.0, 'it': 3.0, 'as': 1.0, 'very': 2.0, 'personalized': 1.0, 'perfect': 1.0, 'the': 2.0, 'wish': 1.0, 'that': 1.0, 'i': 3.0, 'explained': 1.0, 'how': 1.0, 'and': 1.0, 'get': 1.0}
Word element => {'new': 1.0, 'like': 1.0, 'still': 1.0, 'time': 1.0, 'used': 1.0, 'years': 1.0, 'another': 1.0, 'them': 1.0, 'washable': 1.0, 'very': 1.0, 'as': 1.0, 'and': 2.0, 'looks': 1.0, 'is': 1.0, 'it': 1.0, 'with': 2.0, 'purchased': 1.0, 'got': 1.0, 'so': 1.0, 'am': 2.0, 'soft': 1.0, 'set': 1.0, 'recommending': 1.0, 'friends': 1.0, 'reliable': 1.0, '2': 2.0, 'the': 2.0, 'happy': 1.0, 'ago': 1.0, 'my': 1.0, 'whole': 1.0, 'i': 4.0, 'backup': 1.0, 'but': 1.0, 'those': 1.0, 'have': 1.0, 'fabric': 1.0, 'all': 1.0, 'babies': 1.0, 'to': 1.0, 'machine': 1.0}
Word element => {'not': 1.0, 'came': 1.0, 'in': 1.0, 'us': 1.0, 'fully': 1.0, 'take': 2.0, 'our': 1.0, 'all': 1.0, 'to': 2.0, 'area': 1.0, 'just': 1.0, 'large': 1.0, 'have': 1.0, 'car': 1.0, 'counter': 1.0, 'on': 1.0, 'unfold': 1.0, 'also': 1.0, 'no': 1.0, 'there': 1.0, 'spot': 1.0, 'great': 1.0, 'if': 1.0, 'it': 2.0, 'with': 3.0, 'vital': 1.0, 'this': 4.0, 'one': 2.0, 'is': 4.0, 'out': 4.0, 'outfit': 1.0, 'hand': 1.0, 'which': 1.0, 'diaper': 7.0, 'the': 7.0, 'of': 3.0, 'bags': 1.0, 'while': 1.0, 'part': 1.0, 'useful': 1.0, 'are': 4.0, 'my': 1.0, 'requirement': 1.0, 'over': 1.0, 'stocked': 1.0, 'use': 2.0, 'need': 1.0, 'bag': 3.0, 'go': 1.0, 'a': 6.0, 'we': 6.0, 'hangs': 1.0, 'extra': 1.0, 'carrying': 1.0, 'baby': 1.0, 'mesh': 1.0, 'supplies': 1.0, 'or': 3.0, 'pad': 1.0, 'unfolds': 1.0, 'section': 1.0, 'toddler': 1.0, 'that': 1.0, 'changing': 3.0, 'truck': 1.0, 'station': 2.0, 'every': 1.0, 'platforms': 1.0, 'so': 1.0, 'but': 1.0, 'change': 2.0, 'most': 1.0, 'can': 2.0, 'when': 5.0, 'you': 3.0, 'easily': 2.0, 'access': 1.0, 'wipes': 1.0, 'and': 3.0, 'back': 1.0, 'needed': 1.0}
Word element => {'highly': 1.0, 'ours': 1.0, 'not': 1.0, 'other': 1.0, 'maybe': 1.0, 'placing': 1.0, 'i': 1.0, 'prior': 1.0, 'months': 1.0, 'painted': 1.0, 'did': 1.0, 'come': 1.0, 'with': 1.0, 'several': 1.0, 'wall': 3.0, 'the': 6.0, 'these': 1.0, 'off': 1.0, 'them': 5.0, '2': 1.0, 'can': 1.0, 'right': 1.0, 'issue': 1.0, 'moved': 1.0, 'and': 5.0, 'we': 3.0, 'daughters': 1.0, 'reposition': 1.0, 'they': 2.0, 'used': 1.0, 'never': 1.0, 'differently': 1.0, 'room': 3.0, 'be': 2.0, 'an': 1.0, 'will': 1.0, 'in': 2.0, 'had': 1.0, 'now': 1.0, 'as': 2.0, 'our': 2.0, 'to': 2.0, 'all': 1.0, 'have': 2.0, 'different': 1.0, 'ways': 1.0, 'over': 2.0, 'recommend': 1.0, 'was': 1.0, 'expecting': 1.0, 'next': 1.0, 'been': 1.0, 'paint': 2.0, 'for': 2.0, 'years': 1.0, 'still': 1.0, 'holding': 1.0, 'on': 2.0, 'strong': 1.0, 'reviewers': 1.0, 'are': 1.0, 'again': 1.0, 'old': 1.0, 'removing': 1.0}
Word element => {'handy': 1.0, 'without': 1.0, 'this': 1.0, 'have': 1.0, 'find': 1.0, 'great': 1.0, 't': 1.0, 'the': 2.0, 'racks': 1.0, 'a': 2.0, 'baby': 1.0, 'don': 1.0, 'them': 1.0, 'but': 1.0, 'i': 1.0, 'for': 1.0, 'basket': 1.0, 'washing': 1.0, 'smaller': 1.0, 'really': 1.0, 'type': 1.0, 'items': 1.0, 'dishwasher': 1.0, 'in': 1.0, 'falling': 1.0, 'through': 1.0}
Word element => {'as': 1.0, 'and': 1.0, 'on': 2.0, 'expanders': 1.0, 'has': 1.0, 'her': 2.0, 'for': 1.0, 'use': 1.0, 'able': 1.0, 'childhood': 1.0, 'portion': 1.0, 'be': 1.0, 'with': 1.0, 'grows': 1.0, 'this': 1.0, 'it': 5.0, 'can': 1.0, 'secured': 1.0, 'we': 1.0, 'to': 2.0, 'actually': 1.0, 'good': 1.0, 'loves': 1.0, 'just': 1.0, 'daughter': 1.0, 'portable': 1.0, 'anywhere': 1.0, 'pull': 1.0, 'my': 1.0, 'bottom': 1.0, 'of': 1.0, 'up': 1.0, 'a': 2.0, 'bar': 1.0, 'will': 2.0, 'quality': 1.0, 'so': 2.0, 'she': 3.0, 'swing': 1.0, 'side': 1.0, 'is': 1.0, 'the': 2.0, 'such': 1.0, 'grow': 1.0, 'amazing': 1.0}
Word element => {'excellent': 1.0, 'now': 1.0, 'from': 2.0, 'out': 1.0, 'trying': 1.0, 'brand': 1.0, 'buying': 1.0, 'same': 1.0, 'by': 1.0, 'boat': 1.0, 'etc': 1.0, 'bird': 1.0, 'shaped': 2.0, 'excited': 2.0, 'be': 2.0, 'time': 2.0, 'as': 1.0, 'enough': 1.0, 'wasn': 1.0, 'house': 1.0, 'younger': 1.0, 'was': 2.0, 'once': 1.0, 'threw': 1.0, 'even': 2.0, 'interested': 1.0, 'nearby': 1.0, 'not': 3.0, 'kids': 1.0, 'anyhow': 1.0, 'patent': 1.0, 'them': 1.0, 'has': 1.0, 'like': 3.0, 'absolute': 1.0, 'have': 1.0, 'would': 2.0, 'or': 1.0, 'feature': 1.0, 'make': 1.0, 'anymore': 1.0, 'sound': 1.0, 'buy': 1.0, 'add': 1.0, 'actually': 3.0, 'close': 1.0, 'remotely': 1.0, 'know': 1.0, 'found': 1.0, 'this': 5.0, 'anything': 1.0, 'soft': 2.0, 'haven': 2.0, 'i': 4.0, '4': 1.0, 'to': 2.0, 'disappointed': 1.0, 'our': 3.0, 'can': 2.0, 'so': 2.0, 'in': 4.0, 'right': 1.0, 'on': 5.0, 'therefore': 1.0, 'infants': 1.0, 'over': 1.0, 'design': 2.0, 'we': 5.0, 'fit': 1.0, 't': 9.0, 'a': 8.0, 'maybe': 1.0, 's': 1.0, 'useful': 1.0, 'are': 1.0, 'cutest': 1.0, 'plain': 1.0, '2': 2.0, 'making': 2.0, 'most': 1.0, 'they': 1.0, 'aren': 1.0, 'me': 1.0, 'may': 1.0, 'my': 2.0, 'reasons': 1.0, 'believe': 2.0, 'bought': 1.0, 'doing': 1.0, 'the': 12.0, 'of': 3.0, 'for': 6.0, 'nursery': 1.0, 'here': 1.0, 'its': 1.0, 'decor': 1.0, 'at': 3.0, 'is': 9.0, 'more': 1.0, 'why': 2.0, 'sure': 1.0, 'market': 2.0, '5': 1.0, 'bee': 1.0, '1': 1.0, 'and': 11.0, 'tucked': 1.0, 'one': 5.0, 'too': 3.0, 'propelling': 2.0, 'awesome': 1.0, 'about': 2.0, 'play': 1.0, 'but': 3.0, 'chose': 1.0, 'thought': 1.0, 'it': 13.0, 'comfortable': 1.0, 'unique': 1.0, 'park': 1.0, 'were': 2.0, 'used': 1.0, 'toy': 2.0, 'sounds': 1.0, 'started': 1.0, 'girl': 1.0, 'isn': 1.0, 'don': 2.0, 'list': 1.0, 'dream': 1.0, 'ever': 1.0, 'other': 4.0, 'an': 3.0, 'until': 1.0, 'see': 1.0, 'own': 1.0, 'never': 1.0, 'interior': 1.0, 'swing': 5.0, 'young': 1.0, 'because': 1.0, 'that': 4.0, 'she': 2.0, 'others': 1.0, 'baby': 3.0, 'many': 1.0, 'safe': 1.0, 'available': 1.0, 'there': 1.0, 'pretend': 1.0, 'plastic': 1.0, 'do': 1.0, 'put': 1.0, 'much': 2.0, 'match': 1.0, 'those': 1.0, 'inside': 1.0, 'later': 1.0, 'very': 2.0, 'made': 2.0, 'which': 1.0, 'swings': 4.0, 'using': 1.0, 'makes': 1.0, 'probably': 1.0, 'feel': 1.0, 'mom': 1.0, 'example': 1.0, 'better': 1.0, 'when': 3.0, '3': 1.0, 'older': 1.0, 'daughter': 2.0, 'her': 2.0, 'pity': 1.0, 'product': 1.0, 'products': 1.0, 'haba': 3.0, 'didn': 1.0}
Word element => {'him': 1.0, 'when': 1.0, 'wait': 1.0, 'can': 2.0, 'but': 1.0, 'right': 1.0, 'inside': 1.0, 'hanging': 1.0, 'have': 1.0, 'though': 1.0, 'even': 1.0, 'up': 1.0, 'months': 2.0, 'he': 5.0, 'this': 1.0, 'had': 1.0, 'husband': 1.0, 'now': 2.0, 'young': 1.0, 'i': 2.0, 'so': 1.0, 'son': 1.0, 'very': 1.0, 'is': 7.0, 't': 1.0, 'we': 2.0, 's': 1.0, 'a': 3.0, 'my': 1.0, 'pilot': 1.0, 'get': 1.0, 'spring': 1.0, 'although': 1.0, 'support': 1.0, 'knew': 1.0, 'only': 1.0, 'nursery': 1.0, 'put': 1.0, '3': 2.0, 'theme': 1.0, 'it': 5.0, 'truly': 1.0, 'tall': 1.0, 'and': 4.0, 'too': 1.0, 'enjoy': 1.0, 'well': 1.0, 'has': 2.0, 'next': 1.0, 'been': 1.0, 'plane': 1.0, 'in': 1.0, 'photo': 1.0, 'ops': 1.0, 'built': 1.0, 'nice': 1.0, 'great': 1.0, 'adjustable': 1.0, 'back': 1.0, 'for': 4.0, 'love': 3.0, 'fit': 1.0, 'outside': 1.0, 'to': 4.0, 'our': 2.0, 'all': 1.0, 'sizes': 1.0, 'able': 1.0, 'sit': 1.0}
Word element => {'definitely': 1.0, 'diaper': 1.0, 'of': 1.0, 'for': 1.0, 'up': 1.0, 'waking': 1.0, 'check': 1.0, 'see': 1.0, 'able': 1.0, 'moist': 1.0, 'out': 1.0, 'my': 1.0, 'without': 1.0, 'the': 8.0, 'they': 1.0, 'dry': 1.0, 'other': 1.0, 'this': 1.0, 'it': 1.0, 'though': 1.0, 'warm': 1.0, 'room': 1.0, 'had': 1.0, 'changes': 1.0, 'middle': 1.0, 'seem': 1.0, 'go': 1.0, 's': 1.0, 'keeps': 1.0, 'never': 1.0, 'huggies': 1.0, 'feature': 1.0, 'i': 4.0, 've': 1.0, 'wipes': 2.0, 'favorite': 1.0, 'and': 4.0, 'wipe': 1.0, 'night': 1.0, 'baby': 2.0, 'more': 1.0, 'is': 1.0, 'little': 1.0, 'can': 1.0, 'easily': 1.0, 'brands': 1.0, 'than': 1.0, 'find': 1.0, 'provides': 2.0, 'button': 1.0, 'on': 2.0, 'use': 1.0, 'warmer': 2.0, 'to': 2.0, 'any': 1.0, 'as': 1.0, 'into': 1.0, 'light': 5.0, 'just': 1.0, 'enough': 2.0, 'him': 1.0, 'be': 1.0}
Word element => {'plastic': 1.0, 'wrapped': 1.0, 'him': 1.0, 'is': 1.0, 'my': 1.0, 'his': 1.0, 'new': 1.0, 'for': 3.0, 'it': 2.0, 'christmas': 1.0, 'this': 1.0, 'purchased': 1.0, 'still': 1.0, 'in': 2.0, 'perfect': 1.0, 'i': 1.0, 'hang': 1.0, 'garage': 1.0, 'brand': 1.0, 'and': 2.0, 'so': 1.0, 'funny': 1.0, 'husband': 1.0, 'to': 1.0, 'was': 1.0}
Word element => {'flat': 1.0, 'my': 1.0, 'and': 1.0, 'hanging': 1.0, 'now': 1.0, 'i': 1.0, 'however': 1.0, 'have': 1.0, 'this': 1.0, 'sees': 1.0, 'in': 1.0, 'instant': 1.0, 'an': 1.0, 'converstation': 1.0, 'was': 1.0, 'not': 1.0, 'starter': 1.0, 'everyone': 2.0, 'it': 3.0, 'approved': 1.0, 'of': 1.0}
Word element => {'purchase': 1.0, 'definitely': 1.0, 'would': 1.0, 'set': 1.0, 'versatile': 1.0, 'unique': 1.0, 'a': 1.0, 'and': 3.0, 'colors': 1.0, 'absolutely': 1.0, 'can': 1.0, 'vivid': 1.0, 'love': 1.0, 'you': 1.0, 'again': 1.0, 'are': 1.0, 'the': 2.0, 'is': 2.0, 'beautiful': 1.0, 'i': 2.0, 'different': 1.0, 'this': 2.0, 'very': 1.0, 'match': 1.0, 'bedding': 2.0, 'them': 1.0, 'almost': 1.0, 'textures': 1.0, 'to': 1.0, 'also': 1.0, 'anything': 1.0, 'patterns': 1.0}
Word element => {'repurchase': 1.0, 'definitely': 1.0, 'would': 1.0, 't': 1.0, 'doesn': 1.0, 'over': 1.0, 'had': 1.0, 'best': 1.0, 'supposed': 1.0, 'its': 1.0, 'does': 1.0, 'worth': 1.0, 'product': 1.0, 'extremely': 1.0, 'am': 1.0, 'overall': 1.0, 'having': 1.0, 'everything': 1.0, 'else': 1.0, 'poop': 1.0, 'getting': 1.0, 'without': 1.0, 'way': 1.0, 'quality': 1.0, 'rinse': 1.0, 'quick': 1.0, 'got': 1.0, 'new': 1.0, 'poops': 1.0, 'take': 1.0, 'was': 1.0, 'clothes': 1.0, 'dirty': 1.0, 'if': 1.0, 'zippered': 1.0, 'clear': 1.0, 'you': 3.0, 'changes': 1.0, 'use': 1.0, 'her': 2.0, 'gave': 1.0, 'can': 1.0, 'so': 2.0, 'look': 1.0, 'at': 1.0, 'is': 1.0, 'old': 1.0, 'downside': 1.0, 'documents': 1.0, 'mom': 1.0, 'your': 2.0, 'on': 2.0, 'long': 1.0, 'although': 1.0, 'bag': 4.0, 'banded': 1.0, 'handles': 1.0, 'zipper': 2.0, 'have': 2.0, 'well': 1.0, 'i': 9.0, 'no': 1.0, 'several': 1.0, 'put': 1.0, 'changing': 1.0, 'big': 1.0, 'mums': 1.0, 'everywhere': 1.0, 'that': 2.0, 'deep': 1.0, 'size': 1.0, 'features': 1.0, 'my': 1.0, 'looks': 2.0, 'outfit': 1.0, 'it': 9.0, 'also': 5.0, 'all': 1.0, 'other': 2.0, 'case': 1.0, 'adjustable': 1.0, 'of': 2.0, 'the': 9.0, 'for': 7.0, 'ugly': 1.0, 'love': 1.0, 'one': 5.0, 'house': 1.0, 'holding': 1.0, 'diaper': 2.0, 'bags': 1.0, 'from': 1.0, 'out': 1.0, 'absolutely': 1.0, 'slight': 1.0, 'a': 11.0, 'with': 5.0, 'pockets': 5.0, 'even': 2.0, 'to': 7.0, 'clean': 2.0, 'good': 4.0, 'mirror': 1.0, 'wipes': 1.0, 'bit': 1.0, 'easy': 3.0, 'months': 1.0, 'get': 2.0, 'great': 2.0, 'fantastic': 1.0, 'maintaining': 1.0, 'and': 9.0, 'play': 1.0, 'compliments': 1.0, 'exterior': 1.0, 'middle': 1.0, 'see': 1.0, 'checking': 1.0, 'some': 1.0, 'three': 2.0, 'balm': 1.0, 'money': 2.0, 's': 1.0, 'sides': 1.0, 'home': 1.0, 'bottles': 1.0, 'or': 3.0, 'keep': 2.0, 'makeup': 1.0, 'hand': 1.0, '7': 1.0, 'pleased': 1.0, 'up': 1.0, 'takes': 1.0, 'change': 1.0, 'water': 1.0, 'this': 3.0, 'bottle': 3.0, 'they': 1.0, 'cute': 2.0, 'diapers': 1.0, 'are': 1.0, 'pocket': 1.0, 'quite': 1.0, 'inside': 1.0, 'always': 2.0, 'has': 1.0, 'temperature': 1.0, 'in': 1.0, 'give': 1.0, 'there': 2.0, 'plain': 1.0, 'clip': 1.0, 'room': 1.0, 'cleans': 1.0, 'comes': 2.0, 'attachment': 1.0, 'letting': 1.0, 'two': 4.0, 'pediatrician': 1.0, 'little': 2.0, 'very': 3.0, 'lip': 1.0, 'thick': 1.0, 'day': 1.0, 'short': 1.0, 'etc': 1.0, 'pad': 1.0}
Word element => {'i': 1.0, 'then': 1.0, 'm': 1.0, 'happy': 2.0, 's': 1.0, 'it': 1.0, 'thanks': 1.0, 'she': 2.0, 'loves': 1.0, 'this': 1.0, 'was': 1.0, 'a': 1.0, 'gift': 1.0, 'first': 1.0, 'my': 1.0, 'for': 2.0, 'wife': 1.0, 'our': 1.0, 'and': 1.0, 'if': 1.0, 'child': 1.0}
Word element => {'but': 1.0, 'set': 1.0, 'loved': 1.0, 'valance': 2.0, 'goodness': 1.0, 'only': 1.0, 'place': 1.0, 'not': 1.0, 'was': 1.0, 'comforter': 1.0, 'i': 1.0, 'it': 1.0, 'amazon': 1.0, 'the': 2.0, 'find': 2.0, 'because': 1.0, 'com': 1.0, 'could': 2.0, 'thank': 1.0}
Word element => {'room': 1.0, 'her': 1.0, 'perfect': 1.0, 'the': 1.0, 'nicely': 1.0, 'very': 1.0, 'up': 1.0, 'washed': 1.0, 'and': 1.0, 'ruffle': 1.0, 'love': 1.0, 'adds': 1.0, 'it': 2.0, 'this': 1.0, 'fit': 1.0, 'touch': 1.0, 'i': 1.0, 'really': 1.0, 'easy': 1.0, 'was': 1.0, 'to': 2.0, 'on': 1.0, 'dust': 1.0, 'my': 1.0, 'babe': 1.0, 's': 1.0, 'little': 1.0, 'crib': 1.0}
Word element => {'into': 1.0, 'my': 1.0, 'nicely': 1.0, 'very': 1.0, 'and': 1.0, 'is': 1.0, 'belt': 2.0, 'of': 1.0, 'i': 1.0, 's': 2.0, 'this': 1.0, 'he': 1.0, 'it': 3.0, 'love': 1.0, 'made': 1.0, 'fits': 1.0, 'just': 1.0, 'quality': 1.0, 'toddler': 1.0, 'wonderful': 1.0, 'can': 1.0, 'right': 1.0, 'something': 1.0, 'grow': 1.0}
Word element => {'time': 1.0, 'not': 1.0, 'are': 1.0, 'regular': 1.0, 'baby': 1.0, 'washcloths': 1.0, 'enjoyable': 1.0, 'soft': 1.0, 'of': 1.0, 'were': 1.0, 'can': 1.0, 'rough': 1.0, 'towels': 1.0, 'why': 1.0, 'as': 1.0, 'bath': 1.0, 'purchased': 1.0, 'an': 1.0, 'hooded': 1.0, 'too': 1.0, 'mom': 1.0, 'never': 1.0, 'go': 1.0, 'cloths': 1.0, 'well': 1.0, 'a': 1.0, 'skin': 1.0, 'shower': 1.0, 'with': 1.0, 'ones': 1.0, 'the': 1.0, 'these': 2.0, 'gift': 1.0, 'make': 1.0, 'enough': 1.0, 'for': 2.0, 'expectant': 1.0, 'get': 1.0, 'you': 1.0}
Word element => {'baby': 1.0, 'my': 1.0, 'unfortunately': 1.0, 'are': 1.0, 'size': 1.0, 'nice': 1.0, 'not': 1.0, 'else': 1.0, 'is': 1.0, 'on': 1.0, 'a': 1.0, 'fabric': 1.0, 'but': 1.0, 'use': 1.0, 'the': 1.0, 'these': 1.0, 'very': 1.0, 'soft': 1.0, 'i': 1.0, 'm': 1.0, 'going': 1.0, 'to': 2.0, 'look': 1.0, 'for': 1.0, 'something': 1.0}
Word element => {'boy': 1.0, 'her': 1.0, 'was': 2.0, 'the': 3.0, 'washcloths': 1.0, 'lb': 1.0, 'gift': 1.0, 'yellowthe': 1.0, 'pack': 1.0, 'receiving': 1.0, 'please': 1.0, '4': 1.0, '12': 1.0, 'clothes': 1.0, 'soft': 1.0, 'person': 1.0, 'friends': 1.0, 'very': 2.0, 'and': 1.0, 'luvable': 1.0, 'said': 1.0, 'she': 1.0, 'wash': 1.0, 'right': 1.0, 'size': 1.0, 'were': 1.0, 'for': 1.0}
Word element => {'in': 1.0, 'be': 1.0, 'always': 1.0, 'can': 1.0, 'or': 1.0, 'of': 1.0, '12': 1.0, 'there': 1.0, 'through': 1.0, 'integrated': 1.0, 'soft': 1.0, 'fray': 1.0, 'pattern': 1.0, 'and': 3.0, 'very': 1.0, 'the': 4.0, 'store': 2.0, 'i': 2.0, 'buy': 1.0, 'serger': 1.0, 'these': 1.0, 'cloths': 1.0, 'm': 1.0, 'glad': 1.0, 'are': 2.0, 'because': 1.0, 'than': 1.0, 'didn': 1.0, 'them': 1.0, 'baby': 3.0, 'cheaper': 1.0, 'wash': 2.0, 'don': 1.0, 'any': 1.0, 'so': 2.0, 'at': 1.0, 'solid': 1.0, 'with': 1.0, 'works': 1.0, 'much': 1.0, 'its': 1.0, 'only': 1.0, 'fabric': 2.0, 'well': 1.0, 'has': 1.0, 'they': 1.0, 'cut': 1.0, 'been': 1.0, 'that': 1.0, 'into': 1.0, 'squares': 1.0, 'hemmed': 1.0, 't': 2.0, 'a': 1.0, 'terry': 1.0, 'if': 1.0, 'more': 1.0, 'acceptable': 1.0, 'is': 2.0, 'side': 1.0, 'on': 1.0, 'color': 1.0, 'one': 2.0}
Word element => {'basket': 1.0, 'shower': 1.0, 'pack': 1.0, 'to': 1.0, 'a': 1.0, 'use': 1.0, 'enough': 1.0, 'can': 1.0, 'great': 2.0, 'you': 1.0, 'stuff': 1.0, 'of': 2.0, 'good': 1.0, '12': 1.0, 'deal': 1.0, 'never': 1.0, 'cloths': 1.0, 'also': 1.0, 'nice': 1.0, 'variety': 1.0, 'for': 1.0, 'and': 1.0, 'price': 1.0, 'colors': 1.0, 'baby': 1.0}
Word element => {'buy': 1.0, 'definitely': 1.0, 'to': 1.0, 'purchased': 1.0, 'when': 1.0, 'i': 3.0, 'others': 1.0, 'more': 1.0, 'are': 1.0, 'these': 1.0, 'they': 1.0, 'do': 1.0, 'would': 1.0, 've': 1.0, 'not': 1.0, 'perfect': 1.0, 'wash': 1.0, 'well': 1.0, 'need': 1.0, 'like': 1.0, 'and': 1.0, 'curl': 1.0, 'up': 1.0}
Word element => {'for': 1.0, 'money': 1.0, 'are': 1.0, 'very': 1.0, 'and': 1.0, 'but': 1.0, 'deal': 1.0, 'they': 2.0, 'ones': 1.0, 'the': 1.0, 'great': 1.0, 'a': 1.0, 'thin': 2.0, 'was': 1.0, 'would': 2.0, 'extra': 1.0, 'better': 1.0, 'if': 1.0, 'how': 1.0, 'i': 2.0, 'have': 2.0, 'small': 1.0, 'd': 1.0, 'be': 1.0, 'some': 1.0, 'spent': 1.0, 'known': 1.0, 'little': 1.0}
Word element => {'problem': 1.0, 'no': 1.0, 'for': 1.0, 'in': 1.0, 'arrived': 1.0, 'purchased': 1.0, 'from': 1.0, 'a': 1.0, 'shower': 1.0, 'the': 2.0, 'baby': 2.0, 'pleased': 1.0, 'gift': 1.0, 'registry': 1.0, 'very': 1.0, 'quality': 1.0, 'time': 1.0, 'with': 2.0}
Word element => {'known': 1.0, 'if': 1.0, 'on': 1.0, 'passed': 1.0, 'would': 2.0, 'what': 1.0, 'brand': 1.0, 'same': 1.0, 'ago': 1.0, 'junk': 1.0, 'month': 1.0, 'have': 2.0, 'pack': 1.0, 'four': 1.0, 'not': 1.0, 'because': 1.0, 'i': 6.0, 'anything': 1.0, 'is': 1.0, 'thin': 1.0, 'thicker': 1.0, 'a': 3.0, 'as': 2.0, 'paid': 1.0, 'are': 2.0, 'they': 1.0, 'the': 1.0, 'these': 4.0, 'lot': 1.0, 'today': 1.0, 'but': 2.0, 'can': 1.0, 'with': 1.0, 'it': 2.0, 'received': 1.0, 'and': 1.0, 'get': 1.0, 'away': 1.0, 'for': 2.0, 'newborn': 1.0, 'returning': 1.0, 'were': 1.0, 'that': 1.0, 'about': 1.0, 'worth': 1.0, 'ordered': 2.0}
Word element => {'out': 1.0, 'go': 1.0, 'thin': 1.0, 'too': 1.0, 'use': 1.0, 'picture': 1.0, 'on': 2.0, 'and': 1.0, 'nice': 1.0, 'are': 1.0, 'the': 3.0, 'they': 3.0, 'after': 1.0, 'just': 1.0, 'not': 1.0, 'old': 1.0, 'look': 1.0, 'to': 1.0, 'wash': 1.0, 'but': 1.0, 'house': 1.0, 'can': 1.0, 'first': 1.0, 'looked': 1.0, 'it': 1.0}
Word element => {'too': 1.0, 'them': 1.0, 'on': 1.0, 'to': 1.0, 's': 1.0, 'many': 1.0, 'so': 1.0, 'for': 1.0, 'love': 1.0, 'bought': 1.0, 'we': 1.0, 'problems': 1.0, 'no': 1.0, 'i': 1.0, 'stretchy': 1.0, 'with': 1.0, 'pack': 1.0, 'fabric': 1.0, 'have': 1.0, 'loves': 1.0, 'but': 1.0, 'than': 2.0, 'little': 1.0, 'price': 1.0, 'washcloths': 1.0, 'baby': 2.0, 'she': 1.0, 'bigger': 1.0, 'a': 2.0, 'that': 1.0, 'happy': 1.0, 'stores': 1.0, 're': 2.0, 'my': 1.0, 'more': 1.0, 'great': 1.0, 'these': 1.0, 'the': 2.0, 'girl': 1.0, 'and': 3.0, 'teeth': 1.0, 'in': 2.0, 'softer': 1.0, 'they': 2.0, 'slightly': 1.0}
Word element => {'etc': 1.0, 'stuff': 1.0, 'will': 1.0, 'nothing': 1.0, 'do': 1.0, 'are': 1.0, 'they': 1.0, 'the': 3.0, 'these': 1.0, 'deal': 1.0, 'expected': 1.0, 'extra': 1.0, 'job': 1.0, 'good': 1.0, 'tape': 1.0, 'no': 1.0, 'for': 1.0, 'washcloths': 1.0, 'money': 1.0, 'fancy': 1.0, 'packaging': 1.0, 'easy': 1.0, 'was': 1.0, 'to': 1.0, 'as': 1.0, 'open': 1.0}
Word element => {'towels': 1.0, 'of': 1.0, 'texture': 1.0, 'and': 1.0, 'love': 1.0, 'color': 1.0, 'arrived': 1.0, 'i': 2.0, 'but': 1.0, 'use': 1.0, 'hasn': 1.0, 'to': 1.0, 'them': 1.0, 'because': 1.0, 'the': 3.0, 'yet': 3.0, 'my': 1.0, 'son': 1.0, 'have': 1.0, 't': 1.0}
Word element => {'clean': 1.0, 'care': 1.0, 'to': 1.0, 'easy': 1.0, 'face': 1.0, 'i': 1.0, 'found': 1.0, 'that': 1.0, 'they': 1.0, 'these': 1.0, 'my': 1.0, 'are': 2.0, 'washcloths': 1.0, 'soft': 1.0, 'and': 2.0, 'effective': 1.0, 'for': 2.0, 'cleaning': 1.0}
Word element => {'price': 1.0, 'well': 1.0, 'definitely': 1.0, 'packaging': 1.0, 'from': 1.0, 'very': 1.0, 'were': 1.0, 'mentioned': 1.0, 'had': 1.0, 'reviewer': 1.0, 'another': 1.0, 'taped': 1.0, 'that': 1.0, 'i': 1.0, 're': 1.0, 'states': 1.0, 'in': 1.0, 'premoistened': 1.0, 'wipe': 1.0, 'baby': 2.0, 'keep': 1.0, 'alternative': 1.0, 'did': 1.0, 'they': 5.0, 'these': 1.0, 'great': 1.0, 'the': 3.0, 'an': 1.0, 'warmer': 1.0, '65': 1.0, 'ours': 1.0, 'disposable': 1.0, 'are': 1.0, 'for': 1.0, 'actually': 1.0, 'like': 1.0, 'thin': 1.0, 'package': 1.0, 'to': 3.0, 'as': 3.0, 'so': 1.0, 'remove': 1.0, 'it': 1.0, 'skin': 1.0, 'cotton': 2.0, 'come': 1.0, 'a': 1.0, 'we': 1.0, 's': 1.0, 'tiny': 1.0, 'folds': 1.0, 'easy': 2.0, 'wipes': 1.0, 'clean': 1.0, 'despite': 1.0, 'being': 1.0, 'listed': 1.0, 'work': 2.0, '80': 1.0, 'not': 1.0, 'individually': 1.0}
Word element => {'strong': 1.0, 'is': 1.0, 'and': 1.0, 'soft': 1.0, 'really': 1.0, 'the': 1.0, 'are': 1.0, 'i': 2.0, 'they': 1.0, 'these': 1.0, 'can': 1.0, 'have': 1.0, 'just': 1.0, 'few': 1.0, 'got': 1.0, 'so': 2.0, 'that': 1.0, 'a': 1.0, 'material': 1.0, 'extra': 1.0}
Word element => {'purchased': 1.0, 'would': 1.0, 'never': 1.0, 'have': 1.0, 'detail': 2.0, 'lack': 1.0, 'picture': 1.0, 'or': 1.0, 'important': 1.0, 'of': 2.0, 'a': 1.0, 'i': 1.0, 'packaging': 1.0, 'description': 2.0, 'included': 1.0, 'are': 1.0, 'these': 2.0, 'the': 2.0, 'an': 1.0, 'baby': 1.0, 'been': 2.0, 'had': 1.0, 'cloths': 2.0, 'wash': 2.0, 'in': 1.0, 'them': 1.0, 'shown': 1.0, 'major': 1.0, 'this': 1.0}
Word element => {'borns': 1.0, 'use': 1.0, 'to': 1.0, 'tempted': 1.0, 'wont': 1.0, 'be': 1.0, 'product': 1.0, 'items': 1.0, 'so': 1.0, 'many': 1.0, 'too': 1.0, 'especially': 1.0, 'new': 2.0, 'can': 1.0, 'never': 1.0, 'born': 1.0, 'have': 1.0, 'one': 1.0, 'for': 1.0, 'baby': 1.0, 'happy': 1.0, 'they': 1.0, 'are': 1.0, 'wash': 1.0, 'colored': 1.0, 'great': 1.0, 'the': 2.0, 'clothes': 1.0, 'girly': 1.0, 'boys': 1.0}
Word element => {'not': 1.0, 'would': 1.0, 'likes': 1.0, 'of': 1.0, 'by': 1.0, 'stitching': 1.0, 'a': 1.0, 'one': 1.0, 'for': 1.0, 'this': 1.0, 'it': 1.0, 'use': 1.0, 'effort': 1.0, 'recommend': 1.0, 'store': 1.0, 'while': 1.0, 'place': 1.0, 'to': 3.0, 'poor': 1.0, 'product': 1.0, 'be': 1.0, 'cannot': 1.0, 'in': 1.0, 'wasted': 1.0, 'and': 2.0, 'an': 1.0, 'quality': 1.0, 'very': 1.0, 'as': 2.0, 'the': 1.0, '2': 1.0, '99': 1.0, 'still': 1.0, 'worth': 1.0, 'bucks': 1.0, 'so': 2.0, 'extra': 1.0, '5': 1.0, 'thin': 1.0, 'used': 1.0, 'any': 1.0, 'washcloths': 1.0, 'made': 1.0, 'buy': 1.0, 'i': 1.0}
Word element => {'perfect': 1.0, '12': 1.0, 'think': 1.0, 'is': 1.0, '10': 1.0, '6': 1.0, 'seen': 1.0, 've': 1.0, 'or': 1.0, 'i': 2.0, 'one': 1.0, 'either': 1.0, 'were': 1.0, 'can': 1.0, 'enough': 1.0, 'have': 1.0, 't': 1.0, 'of': 1.0, 'pack': 2.0, 'most': 1.0, 'washcloths': 1.0, 'the': 1.0, 'that': 1.0}
Word element => {'up': 1.0, 'we': 1.0, 'till': 1.0, 'they': 1.0, 'forever': 1.0, 'least': 1.0, 'last': 2.0, 'at': 1.0, 'things': 1.0, 'move': 1.0, 'if': 1.0, 'even': 1.0, 'will': 1.0, 'quality': 1.0, 'for': 1.0, 'beat': 1.0, 'size': 1.0, 'can': 1.0, 'first': 1.0, 'this': 1.0, 'it': 1.0, 'get': 1.0, 'in': 1.0, 'reason': 1.0, 'these': 1.0, 't': 2.0, 'the': 4.0, 'wasn': 1.0, 'you': 2.0, 'year': 1.0, 'best': 1.0, 'why': 1.0, 'is': 1.0, 'i': 1.0, 'count': 1.0, '12': 1.0, '4': 1.0, 'give': 1.0, 'stars': 1.0, 'not': 1.0, 'because': 1.0, 'don': 1.0, 'price': 4.0, '8217': 2.0}
Word element => {'return': 1.0, 'have': 1.0, 't': 1.0, 'ordered': 1.0, 'washcloths': 1.0, 'sent': 1.0, 'to': 3.0, 'want': 1.0, 'them': 2.0, 'didn': 1.0, 'but': 1.0, 'others': 1.0, 'pictured': 1.0, 'were': 1.0, 'decided': 1.0, 'sincei': 1.0, 'keep': 1.0}
Word element => {'la': 2.0, 'ali': 1.0, 'clothes': 1.0, 'wash': 1.0, 'too': 1.0, 'they': 1.0, 'are': 1.0, 'them': 1.0, 'a': 1.0, 'adorable': 1.0, 'as': 1.0, 'were': 1.0, 'many': 1.0, 'you': 1.0, 'given': 1.0, 'gift': 1.0, 'never': 1.0, 'loved': 1.0, 'have': 1.0}
Word element => {'folded': 1.0, 'slightly': 1.0, 'keep': 1.0, 'makes': 1.0, 'which': 1.0, 'their': 1.0, 'is': 1.0, 'issue': 1.0, 'about': 1.0, 'shape': 1.0, 'velcro': 1.0, 'by': 1.0, 'been': 1.0, 'frustrating': 1.0, 'have': 1.0, 'some': 1.0, 'stack': 1.0, 'scraps': 1.0, 'own': 1.0, 'all': 1.0, 'an': 1.0, 'sew': 1.0, 'disposable': 1.0, 'tons': 1.0, 'mentioning': 1.0, 'pricey': 1.0, 'worse': 1.0, 'into': 1.0, 'ready': 1.0, 'box': 1.0, 'perfect': 1.0, 'duty': 1.0, 'only': 1.0, 'options': 1.0, 'quickly': 1.0, 'researching': 1.0, 'resources': 1.0, 'in': 6.0, 'but': 2.0, 'my': 3.0, 'electric': 1.0, 'from': 1.0, 'decided': 1.0, 'money': 1.0, 'bought': 1.0, 'to': 7.0, 'tedious': 1.0, 'and': 5.0, 'propensity': 1.0, 'too': 1.0, 'are': 4.0, 'diapers': 2.0, 'was': 1.0, 'had': 1.0, 'purchased': 1.0, 'textured': 1.0, 'cloth': 3.0, 'on': 2.0, '3': 1.0, 'waste': 1.0, 'warmer': 3.0, 'stretch': 1.0, 'use': 3.0, 'might': 1.0, 'a': 1.0, 's': 2.0, 'hardly': 1.0, 'these': 3.0, 'as': 2.0, 'diaper': 2.0, 'go': 1.0, 'figured': 1.0, 'i': 8.0, 'well': 1.0, 'holding': 1.0, 'half': 2.0, 'hot': 1.0, 'also': 1.0, 'just': 2.0, 'otherwise': 1.0, 'wet': 1.0, 'not': 2.0, 'forward': 1.0, 'out': 1.0, 'nothing': 1.0, 'of': 3.0, 'the': 6.0, 'time': 1.0, 'looking': 1.0, 'consuming': 1.0, 'damaged': 1.0, 'found': 2.0, 'task': 1.0, 'wipes': 5.0, 'smidge': 1.0, 'washcloths': 1.0, 'when': 1.0, 'little': 1.0, 'thin': 1.0, 'enough': 1.0, 'there': 2.0, 'perfectly': 1.0, 'for': 1.0, 'fit': 1.0, 'they': 2.0, 'big': 1.0, 'nicely': 2.0, 'already': 1.0, 'it': 2.0, 'worth': 1.0, 'doz': 1.0, 'that': 1.0, 'because': 1.0, 'than': 1.0, 'neatly': 1.0, 'since': 1.0, 'reaching': 1.0, 'empty': 1.0, 'fold': 1.0, 'hems': 1.0, 'them': 4.0, 'with': 1.0, 'plain': 1.0, 'up': 1.0, 'water': 1.0, 'we': 2.0, 'then': 1.0}
Word element => {'smash': 1.0, 'big': 1.0, 'all': 2.0, 'and': 1.0, 'very': 1.0, 'colors': 1.0, 'a': 1.0, 'them': 1.0, 'loved': 1.0, 'flowers': 1.0, 'were': 2.0, 'pretty': 1.0, 'they': 1.0, 'pefect': 1.0, 'for': 1.0, 'one': 1.0, 'i': 1.0, 'the': 2.0, 'washcloth': 1.0, 'made': 1.0, 'every': 1.0}
Word element => {'out': 1.0, 'worth': 1.0, 'moneys': 1.0, 've': 1.0, 'glad': 1.0, 'm': 1.0, 'i': 1.0, 'you': 1.0, 'because': 1.0, 'dirty': 1.0, 'gets': 1.0, 'easy': 1.0, 'soothing': 1.0, 'made': 1.0, 'overall': 1.0, 'is': 1.0, 'really': 3.0, 'anything': 1.0, 'wash': 1.0, 'nearly': 1.0, 'the': 8.0, 'spiral': 1.0, 'great': 1.0, 'remove': 1.0, 'it': 7.0, 'soft': 2.0, 'this': 4.0, 'link': 1.0, 'gift': 1.0, 'musical': 1.0, 'here': 1.0, 'be': 1.0, 'its': 1.0, 'had': 1.0, 'purchased': 1.0, 'alba': 1.0, 'of': 2.0, 'lullaby': 1.0, 'after': 1.0, 'so': 1.0, 'wings': 1.0, 'velcro': 1.0, 'owl': 3.0, 'type': 1.0, 'received': 1.0, 'bought': 1.0, 'mobile': 4.0, 'for': 1.0, 'love': 2.0, 's': 1.0, 'we': 7.0, 'a': 2.0, 'if': 1.0, 'same': 1.0, 'kathe': 2.0, 'baby': 1.0, 'well': 1.0, 'has': 1.0, 'toy': 2.0, 'and': 5.0, 'to': 3.0, 'our': 2.0, 'daughter': 1.0, 'by': 2.0, 'attached': 1.0, 'also': 1.0, 'seems': 1.0, 'amused': 1.0, 'tried': 1.0, 'box': 1.0, 'that': 1.0, 'kruse': 2.0, 'been': 1.0, 'gotten': 1.0, 'definitely': 1.0, 'plays': 2.0, 'music': 3.0, 'can': 2.0, 'are': 1.0, 'strap': 1.0}
Word element => {'relatives': 1.0, 'stay': 1.0, 'when': 1.0, 'we': 1.0, 'take': 1.0, 'or': 1.0, 'as': 1.0, 'car': 1.0, 'her': 1.0, 'loop': 1.0, 'velro': 1.0, 'attaches': 1.0, 'toy': 1.0, 'has': 1.0, 'a': 7.0, 's': 2.0, 'go': 2.0, 'could': 1.0, 'us': 1.0, 'also': 1.0, 'but': 2.0, 'daughter': 2.0, 'pull': 1.0, 'name': 1.0, 'soothing': 2.0, 'sweet': 1.0, 'with': 3.0, 'oh': 1.0, 'things': 1.0, 'you': 1.0, 'am': 1.0, 'beautiful': 1.0, 'was': 1.0, 'definitely': 1.0, 'plays': 2.0, 'that': 6.0, 'been': 1.0, 'lullaby': 3.0, 'sleep': 1.0, 'to': 4.0, 'all': 1.0, 'string': 1.0, 'owl': 5.0, 'finding': 1.0, 'she': 1.0, 'him': 2.0, 'it': 4.0, 'crib': 2.0, 'hang': 1.0, 'and': 8.0, 'shopped': 1.0, 'play': 1.0, 'my': 3.0, 'item': 1.0, 'our': 1.0, 'sewn': 1.0, 'tell': 1.0, 'without': 1.0, 'do': 1.0, 'put': 2.0, 'actually': 1.0, 'picky': 1.0, 'this': 4.0, 'is': 6.0, 'claimed': 1.0, 'really': 4.0, 'adorable': 1.0, 'lot': 1.0, 'since': 1.0, 'helps': 1.0, 'different': 1.0, 'fabric': 1.0, 'made': 1.0, 'good': 1.0, 'fabrics': 1.0, 'have': 1.0, 'can': 2.0, 'so': 1.0, 'time': 1.0, 'had': 1.0, 'on': 2.0, 'near': 1.0, 'great': 1.0, 'well': 3.0, 'daughters': 1.0, 'i': 14.0, 'putting': 1.0, 'seat': 1.0, 'in': 2.0, 'colors': 1.0, 'wanted': 1.0, 'toys': 2.0, 'found': 1.0, 'know': 2.0, 'get': 1.0, 'sounding': 1.0, 'hard': 1.0, 'over': 1.0, 'the': 7.0, 'of': 1.0, 'alba': 2.0, 'lullabies': 1.0, 'played': 1.0, 'some': 1.0, 'glad': 1.0, 'funky': 1.0, 'music': 1.0, 'around': 1.0, 'his': 1.0, 'both': 1.0, 'house': 1.0, 'love': 2.0, 'he': 2.0, 'just': 1.0}
Word element => {'idea': 1.0, 'good': 1.0, 'a': 1.0, 'where': 1.0, 'wash': 1.0, 'having': 1.0, 'from': 1.0, 'faded': 1.0, 'that': 1.0, 'much': 2.0, 'is': 1.0, 'who': 1.0, '2': 1.0, 'the': 2.0, 'not': 1.0, 'brought': 1.0, 'to': 1.0, 'had': 1.0, 'was': 2.0, 'at': 1.0, 'item': 1.0, 'went': 2.0, 'grandchild': 1.0, 'my': 1.0, 'end': 1.0, 'she': 2.0, 'always': 1.0, 'clorox': 1.0, 'of': 1.0, 'month': 1.0, 'used': 1.0, 'her': 1.0, 'with': 1.0, 'it': 3.0, 'turning': 1.0, 'this': 1.0, 'first': 1.0, 'for': 1.0, 'one': 1.0, 'so': 2.0}
Word element => {'try': 1.0, 'first': 1.0, 'print': 1.0, 'get': 1.0, 'of': 1.0, 'away': 1.0, 'both': 1.0, 'up': 1.0, 'is': 1.0, 'shouldn': 1.0, 'it': 1.0, 'he': 1.0, 'perfect': 1.0, 'this': 2.0, 'with': 2.0, 'so': 2.0, 'son': 1.0, 'i': 3.0, 'read': 1.0, 'a': 1.0, 's': 2.0, 't': 2.0, 'the': 9.0, 'before': 1.0, 'waste': 1.0, 'handprint': 2.0, 'an': 1.0, 'money': 1.0, 'but': 1.0, 'work': 1.0, 'review': 1.0, 'purchasing': 1.0, 'product': 2.0, 'll': 1.0, 'throwing': 1.0, 'be': 1.0, 'while': 1.0, 'what': 1.0, 'thought': 1.0, 'my': 1.0, 'unfortunately': 1.0, 'on': 1.0, 'make': 1.0, 'issue': 1.0, 'green': 1.0, 'and': 1.0, 'other': 2.0, 'wiped': 1.0, 'didn': 1.0, 'paint': 1.0, 'just': 1.0, 'sleeping': 1.0, 'like': 1.0, 'canvas': 2.0, 'you': 1.0, 'unless': 1.0, 'happened': 2.0, 'to': 2.0, 'customer': 1.0, 'enough': 1.0, 'lucky': 1.0, 're': 1.0, 'off': 1.0, 'same': 1.0, 'thing': 1.0, 'also': 1.0, 'ended': 1.0}
Word element => {'better': 1.0, 'believe': 1.0, 'elsewhere': 1.0, 'amazon': 1.0, 'use': 1.0, 'paid': 1.0, 'stars': 1.0, 'considered': 1.0, 's': 1.0, 'dollars': 1.0, 'talking': 1.0, 'they': 1.0, 'price': 2.0, 'child': 1.0, 'commented': 1.0, 'reviewer': 1.0, 'each': 1.0, 'instead': 1.0, 'looking': 1.0, 'using': 1.0, 'one': 2.0, 'rear': 1.0, 'fact': 1.0, 'do': 2.0, 'why': 1.0, 'sure': 1.0, 'not': 1.0, 'consider': 1.0, 'again': 1.0, 'began': 1.0, 'stop': 1.0, 'come': 1.0, 'what': 1.0, 'when': 1.0, 'times': 1.0, 'locked': 1.0, 'have': 2.0, 'all': 1.0, 'other': 1.0, 'an': 1.0, 'with': 1.0, 'wheel': 1.0, 'never': 1.0, 'that': 2.0, 'due': 1.0, 'either': 1.0, 'ease': 2.0, 'no': 2.0, 'wheels': 3.0, 'wife': 1.0, 'center': 1.0, 'from': 1.0, 'benefited': 1.0, 'also': 2.0, 'ft': 1.0, '6': 1.0, 'am': 1.0, 'around': 1.0, 'bar': 1.0, 'me': 1.0, 'my': 2.0, 'may': 1.0, 'about': 1.0, 'darn': 1.0, 'for': 4.0, 'like': 1.0, 'cheap': 2.0, 'simple': 1.0, 'features': 1.0, 'jumped': 1.0, 'on': 7.0, 'feel': 1.0, 'your': 1.0, 'as': 1.0, 'was': 1.0, 'is': 9.0, 'at': 1.0, 'curb': 1.0, 'who': 1.0, 'very': 1.0, 'stroller': 5.0, 'way': 1.0, 'assemble': 1.0, 'than': 1.0, '1': 1.0, 'find': 1.0, 'great': 1.0, 'nice': 1.0, 'disassemble': 1.0, 't': 1.0, 'confident': 1.0, 'imagine': 1.0, 'a': 7.0, 'steps': 1.0, 'got': 1.0, 'few': 2.0, 'this': 3.0, 'holders': 1.0, 'it': 6.0, 'to': 8.0, 'pretty': 1.0, 'pop': 1.0, 'time': 1.0, 'tall': 1.0, 'i': 12.0, 'more': 1.0, 'sells': 1.0, 'considering': 1.0, 'its': 2.0, 'up': 2.0, 'less': 1.0, 'couldn': 1.0, 'lack': 2.0, 'woot': 1.0, 'are': 1.0, 'lock': 1.0, '290': 1.0, 'holder': 1.0, '5': 1.0, 'the': 18.0, 'of': 5.0, 'sturdiness': 1.0, 'adjustable': 1.0, '4': 2.0, 'cup': 2.0, 'prone': 1.0, 'mechanism': 1.0, 'sucky': 1.0, 'but': 3.0, 'cake': 1.0, 'can': 2.0, 'by': 1.0, '150': 1.0, 'clip': 1.0, 'though': 1.0, 'suspension': 3.0, 'basket': 1.0, 'bottom': 1.0, 'down': 2.0, 'kids': 1.0, 'decent': 1.0, 'safety': 1.0, 'size': 1.0, 'know': 1.0, 'however': 1.0, 'quite': 1.0, 'over': 2.0, 'open': 1.0, 'be': 1.0, 'you': 3.0, 'push': 3.0, 'things': 2.0, 'setup': 1.0, 'falling': 1.0, 'out': 1.0, 'forces': 1.0, 'if': 1.0, 'piece': 1.0, 'piled': 1.0, 'in': 4.0, 'give': 1.0, 'there': 1.0, 'has': 1.0, 'based': 1.0, 'which': 1.0, 'dangerous': 1.0, 'alleviates': 1.0, 'abuse': 1.0, 'recommended': 1.0, 'and': 6.0, 'arms': 1.0, 'locking': 1.0, 'back': 1.0, 'harder': 1.0, 'front': 2.0}
Word element => {'plan': 1.0, 'super': 1.0, 'issues': 1.0, 'whole': 1.0, 'criticism': 1.0, 'overall': 1.0, 'especially': 1.0, 'use': 2.0, 'impossible': 1.0, 'press': 1.0, 'chassis': 1.0, 'will': 1.0, 'you': 1.0, 'don': 1.0, 'unbalanced': 1.0, 'quite': 1.0, 'face': 1.0, 'rash': 1.0, 'little': 1.0, 'got': 1.0, 'started': 1.0, 'until': 1.0, 'alone': 1.0, 'mattress': 1.0, 'there': 1.0, 'overstate': 1.0, 'these': 1.0, 'room': 1.0, 'even': 1.0, 'right': 1.0, 'we': 1.0, 'then': 1.0, 'without': 1.0, 'anything': 1.0, 'release': 1.0, 'bring': 1.0, 'have': 1.0, 'stomach': 1.0, 'put': 1.0, 'baby': 7.0, 'go': 2.0, 't': 7.0, 'imagine': 1.0, 'a': 12.0, 'around': 2.0, 'his': 2.0, 'abide': 1.0, 'ready': 1.0, 'wheel': 1.0, 'spent': 1.0, 'carseat': 1.0, 'sheet': 1.0, 'came': 1.0, 'snap': 1.0, 'wasn': 1.0, 'was': 9.0, 'hold': 1.0, 'are': 2.0, 'sport': 1.0, 'saved': 1.0, 'mess': 1.0, 'bought': 1.0, 'and': 10.0, 'n': 2.0, 'how': 1.0, 'stroller': 4.0, 'but': 2.0, 'disaster': 1.0, 'covered': 1.0, 'didn': 2.0, 'toting': 1.0, 'wouldn': 1.0, 'had': 4.0, 'flipped': 1.0, 'i': 17.0, 'slept': 2.0, 'problem': 1.0, 'carry': 5.0, 'for': 4.0, 'he': 6.0, 'love': 1.0, 'my': 3.0, 'me': 1.0, 'miserable': 1.0, 'nearly': 1.0, 'move': 1.0, 'toy': 1.0, 'children': 1.0, 'older': 1.0, 'weren': 1.0, 'with': 8.0, 'bit': 1.0, 'know': 2.0, 'found': 1.0, 'person': 1.0, 'the': 17.0, 'few': 1.0, 'this': 5.0, 'weekend': 1.0, 'long': 1.0, 'on': 2.0, 'realize': 1.0, 'problems': 1.0, 'because': 3.0, 'kiddy': 1.0, 'that': 3.0, 'into': 1.0, 'infant': 2.0, 'inset': 1.0, 'screaming': 1.0, 'meal': 1.0, 'by': 1.0, 'just': 1.0, 'when': 3.0, 'strapped': 1.0, 'an': 3.0, 'finally': 1.0, 'm': 1.0, 'in': 5.0, 'seat': 1.0, 'bassinet': 1.0, 'to': 13.0, 'sleep': 2.0, 'heavy': 1.0, 'as': 3.0, 'over': 2.0, 'it': 12.0, 'him': 4.0, 'cot': 5.0, 'clipped': 1.0, 'be': 2.0, 'is': 3.0, 'look': 1.0, 'at': 3.0, 'buttons': 1.0, 'covering': 1.0, 'if': 1.0, 'every': 1.0, 'only': 2.0, 'amazing': 1.0, 'rough': 1.0, 'bat': 1.0, 'can': 3.0, 'so': 3.0, 'one': 1.0, 'holidays': 1.0, 'happy': 3.0, 'being': 1.0, 'lay': 1.0, 's': 1.0, 'sides': 1.0, 'conference': 1.0, 'while': 1.0, 'despite': 1.0, 'awake': 1.0, 'blanket': 1.0, 'down': 2.0, 'peaceful': 1.0, 'husband': 1.0, 'great': 2.0}
Word element => {'with': 1.0, 'made': 1.0, 'tree': 1.0, 'on': 1.0, 'won': 1.0, 'stands': 1.0, 'buy': 1.0, 'thing': 1.0, 'pleased': 1.0, 'resin': 1.0, 'are': 2.0, 'only': 1.0, 'so': 1.0, 'boy': 1.0, 'they': 4.0, 'though': 1.0, 'summer': 1.0, 'want': 1.0, 'twin': 1.0, 'give': 1.0, 'be': 1.0, 'of': 2.0, 'beautifully': 1.0, 'these': 3.0, 'the': 2.0, 'girl': 1.0, 'beautiful': 1.0, 'grandchildren': 1.0, 'were': 1.0, 'ornaments': 2.0, 'their': 1.0, 'that': 1.0, 'two': 1.0, 'i': 7.0, 'bought': 1.0, 'one': 2.0, 'had': 1.0, 'get': 2.0, 'all': 1.0, 'to': 2.0, 'as': 1.0, 'this': 1.0, 'wish': 1.0, 'instead': 1.0, 'purchase': 1.0, 'my': 2.0, 'ceramic': 1.0, 'them': 1.0, 'and': 4.0, 'collectables': 1.0, 'for': 3.0, 'afraid': 1.0, 'both': 1.0, 'm': 3.0, 'years': 1.0, 'go': 1.0, 't': 1.0, 'we': 1.0, 'going': 1.0, 'might': 1.0, 'broken': 2.0, 'over': 1.0}
Word element => {'a': 1.0, 'last': 1.0, 'will': 1.0, 'good': 1.0, 'time': 1.0, 'is': 1.0, 'the': 1.0, 'just': 1.0, 'this': 1.0, 'were': 1.0, 'was': 1.0, 'right': 1.0, 'exactly': 1.0, 'long': 1.0, 'we': 1.0, 'looking': 1.0, 'what': 1.0, 'came': 1.0, 'for': 2.0, 'quality': 1.0, 'and': 2.0, 'personalized': 1.0}
Word element => {'job': 1.0, 'great': 1.0, 'they': 1.0, 'them': 1.0, 'where': 1.0, 'asking': 1.0, 'dad': 1.0, 'his': 2.0, 'grandson': 1.0, 'have': 1.0, 'my': 2.0, 'i': 4.0, 'tree': 1.0, 'one': 2.0, 'for': 4.0, 'house': 1.0, 'then': 1.0, 'of': 1.0, 'this': 1.0, 'it': 1.0, 'to': 1.0, 'was': 1.0, 'so': 1.0, 'ordered': 4.0, 'cute': 1.0, 'people': 1.0, 'do': 1.0, 'and': 1.0, 'gotten': 1.0, 'a': 2.0, 'lot': 1.0}
Word element => {'great': 1.0, 'were': 1.0, 'colors': 1.0, 'our': 1.0, 'added': 1.0, 'family': 1.0, 'we': 1.0, 'loved': 1.0, 'grandson': 1.0, 'this': 1.0, 'new': 1.0, 'details': 1.0, 'to': 1.0, 'an': 1.0, 'the': 1.0, 'and': 1.0, 'ornament': 1.0, 'as': 1.0, 'example': 1.0, 'of': 1.0}
Word element => {'pro': 1.0, 'actually': 1.0, 'is': 1.0, 'very': 1.0, 'like': 1.0, 'name': 1.0, 'just': 1.0, 'what': 1.0, 'looking': 2.0, 'looks': 1.0, 'i': 2.0, 'would': 1.0, 'was': 2.0, 'worried': 1.0, 'which': 1.0, 'for': 1.0, 'great': 1.0, 'cheap': 1.0, 'the': 2.0, 'printing': 1.0, 'of': 1.0}
Word element => {'being': 1.0, 'is': 1.0, 'my': 1.0, 'and': 1.0, 'when': 1.0, 'completely': 1.0, 'picture': 1.0, 'was': 2.0, 'the': 1.0, 't': 1.0, 'item': 1.0, 'order': 1.0, 'blanket': 1.0, 'sold': 1.0, 'thinking': 1.0, 'ordered': 1.0, 'came': 1.0, 'that': 1.0, 'something': 1.0, 'different': 1.0, 'disappointed': 1.0, 'doesn': 1.0, 'very': 1.0, 'match': 1.0, 'this': 1.0, 'it': 2.0, 'with': 1.0}
Word element => {'beat': 1.0, 'it': 1.0, 'heart': 1.0, 'gift': 1.0, 'make': 1.0, 'would': 2.0, 'visit': 1.0, 'they': 1.0, 'names': 1.0, 'animal': 1.0, 'can': 1.0, 'dolls': 1.0, 'be': 1.0, 'lost': 1.0, 'this': 4.0, 'as': 1.0, 'my': 1.0, 'ways': 1.0, 'several': 1.0, 'made': 1.0, 'out': 1.0, 'played': 1.0, 'puzzle': 1.0, 'set': 1.0, 'of': 1.0, 'learning': 1.0, 're': 1.0, 'enough': 1.0, 'buy': 1.0, 'figurine': 1.0, 'well': 1.0, 'toy': 2.0, 'child': 1.0, 'don': 1.0, 'in': 2.0, 'sorting': 1.0, 'when': 1.0, 'games': 1.0, 'i': 2.0, 'etc': 1.0, 'left': 1.0, 'great': 2.0, 'we': 1.0, 'a': 4.0, 't': 1.0, 'play': 1.0, 'and': 2.0, 'loves': 1.0, 'that': 1.0, 'playing': 1.0, 'stacking': 1.0, 'with': 2.0, 'mind': 1.0, 'if': 1.0, 'being': 1.0, 'attractive': 1.0, 'really': 1.0, 'plenty': 1.0, 'adults': 1.0, 'enjoy': 1.0}
Word element => {'plasticky': 1.0, 'not': 1.0, 'toy': 1.0, 'classic': 1.0, 'haven': 1.0, 'in': 1.0, 'stuck': 1.0, 'keep': 1.0, 'pretty': 1.0, 'little': 2.0, 'to': 1.0, 'be': 1.0, 'imagine': 1.0, 'i': 1.0, 'this': 1.0, 'tune': 1.0, 'is': 1.0, 'it': 6.0, 'looks': 1.0, 'hey': 1.0, 'real': 2.0, 'harder': 1.0, 'guitar': 1.0, 'cheap': 1.0, 'actually': 1.0, 'flowers': 1.0, 'feels': 1.0, 'wood': 1.0, 'like': 3.0, 'and': 5.0, 'used': 1.0, 'just': 2.0, 'affordable': 1.0, 'the': 1.0, 'works': 1.0, 'much': 1.0, 'or': 1.0, 'yet': 1.0, 'but': 2.0, 'stuff': 1.0, 'on': 1.0, 'good': 1.0, 'seems': 1.0, 'sounds': 1.0, 'homemade': 1.0, 'someone': 1.0, 'seem': 1.0, 'shellacked': 1.0, 'might': 1.0, 'a': 4.0, 't': 1.0, 's': 2.0, 'them': 2.0, 'there': 1.0}
Word element => {'great': 1.0, 'one': 1.0, 'when': 1.0, 'i': 1.0, 'here': 1.0, 'of': 1.0, 'we': 1.0, 'on': 1.0, 'product': 1.0, 'bought': 1.0, 'amazing': 1.0, 'wary': 1.0, 'little': 1.0, 'a': 1.0, 'was': 1.0, 'this': 1.0, 'it': 4.0, 'than': 1.0, 's': 2.0, 'actually': 1.0, 'pretty': 1.0, 'higher': 1.0, 'but': 1.0, 'quality': 1.0, 'looks': 1.0}
Word element => {'so': 1.0, 'out': 1.0, 'was': 1.0, 'amazon': 1.0, 'cool': 1.0, 'van': 1.0, 'toy': 2.0, 'over': 1.0, 'came': 1.0, 'when': 1.0, 'old': 1.0, 'coffee': 1.0, 'abuse': 1.0, 'no': 1.0, 'had': 1.0, 'seems': 1.0, 'months': 1.0, 'huge': 1.0, '3': 1.0, 'kinds': 1.0, 'harlod': 1.0, 'and': 3.0, 'stand': 1.0, 'bday': 1.0, 'made': 1.0, 'fits': 1.0, 'my': 3.0, 'her': 3.0, 'imaginarium': 1.0, 'together': 1.0, 'pad': 1.0, 'pixar': 1.0, 'have': 1.0, 'hilo': 1.0, 'it': 4.0, 'chip': 1.0, 'this': 3.0, 'loves': 1.0, 'box': 1.0, 'daughter': 1.0, 'got': 2.0, 'avoid': 1.0, 'for': 5.0, 'he': 2.0, 'love': 1.0, 'well': 1.0, 'i': 2.0, 'table': 1.0, 'we': 2.0, 't': 1.0, 'could': 1.0, 'cars': 4.0, 'pay': 1.0, 'trains': 1.0, 'does': 1.0, 'she': 3.0, 'many': 1.0, 'played': 1.0, 'gentle': 1.0, '6': 1.0, 'rescrewing': 1.0, 'that': 2.0, 'problems': 1.0, 'wood': 1.0, 'pretty': 1.0, 'to': 3.0, 'climbing': 1.0, '1': 1.0, 'not': 1.0, 'sure': 1.0, 'kind': 1.0, 'easy': 1.0, 'boy': 1.0, 'would': 1.0, 'happy': 1.0, 'one': 1.0, 'too': 2.0, '2nd': 1.0, 'try': 1.0, 'put': 1.0, 'match': 1.0, 'much': 1.0, 'but': 4.0, 'le': 1.0, 'thing': 1.0, '2': 1.0, 'chopper': 1.0, 'with': 4.0, 'on': 3.0, 'long': 1.0, 'if': 1.0, 'keep': 1.0, 'did': 1.0, 'hours': 1.0, 'paint': 1.0, 'thomas': 1.0, 'wouldn': 1.0, 'directions': 1.0, 'follow': 1.0, 'nt': 1.0, 'girl': 1.0, 'year': 1.0, 'sits': 1.0, 'is': 2.0, 'very': 2.0, 'the': 4.0, 'of': 3.0, 'attention': 1.0, 'order': 1.0, 'or': 1.0, 'you': 1.0, 'be': 1.0, 'unscrewing': 1.0, 'hit': 1.0, 'friends': 1.0}
Word element => {'simulate': 1.0, 'just': 1.0, 'kids': 1.0, 'the': 2.0, 'frog': 1.0, 'varnish': 1.0, 'hoping': 1.0, 'to': 1.0, 'it': 2.0, 'love': 1.0, 'construction': 1.0, 'toy': 1.0, 'wooden': 1.0, 'sturdy': 1.0, 'safe': 1.0, 'fun': 1.0, 'hours': 1.0, 'my': 1.0, 'pulling': 1.0, 'on': 1.0, 'and': 2.0, 'of': 1.0, 'up': 1.0, 'goes': 1.0, 'down': 1.0}
Word element => {'future': 1.0, 'in': 1.0, 'see': 1.0, 'i': 1.0, 'but': 1.0, 'good': 1.0, 'product': 1.0, 'using': 2.0, 'well': 1.0, 'made': 1.0, 'yet': 1.0, 'my': 1.0, 'son': 1.0, 'is': 1.0, 'not': 1.0, 'him': 1.0, 'can': 1.0, 'it': 2.0}
Word element => {'products': 1.0, 'phat': 1.0, 'baby': 1.0, 'several': 1.0, 'with': 1.0, 'home': 1.0, 'to': 1.0, 'have': 1.0, 't': 1.0, 'receive': 1.0, 'didn': 1.0, 'but': 1.0, 'i': 2.0, 'beautiful': 1.0, 'love': 1.0, 'it': 2.0, 'my': 2.0, 'yet': 1.0, 'looks': 1.0, 'collection': 1.0, 'decorate': 1.0, 'for': 1.0}
Word element => {'forever': 1.0, 'entertained': 1.0, 'different': 1.0, 'recommend': 1.0, 'thankfully': 1.0, 'very': 1.0, 'describe': 1.0, 'sure': 1.0, 'exactly': 1.0, 'annoying': 1.0, 'squeaking': 1.0, 'another': 1.0, 'third': 1.0, 'squeeze': 1.0, 'gentle': 1.0, 'mushroom': 1.0, 'out': 1.0, 'hair': 1.0, 'your': 2.0, 'want': 1.0, 'keep': 1.0, 'makes': 4.0, 'not': 5.0, 'note': 1.0, 'll': 1.0, 'shake': 1.0, 'when': 3.0, 'actually': 2.0, 'accents': 2.0, 'would': 1.0, 'orange': 2.0, 'owl': 2.0, 'squeak': 1.0, 'toy': 2.0, 'rope': 1.0, 'cotton': 1.0, 'by': 1.0, 'attached': 1.0, 'all': 1.0, 'toys': 3.0, 'three': 2.0, 'than': 1.0, 'like': 1.0, 'or': 2.0, 'to': 6.0, 'sleep': 1.0, 'car': 1.0, 'on': 5.0, 'since': 1.0, 'one': 3.0, 'lot': 1.0, 'main': 2.0, 'rattle': 1.0, 'a': 12.0, 's': 8.0, 't': 1.0, 'go': 1.0, 'curls': 1.0, 'mobile': 3.0, 'pleasant': 1.0, 'hang': 1.0, 'type': 2.0, 'traditional': 1.0, 'last': 1.0, 'am': 1.0, 'hanging': 1.0, 'fantastic': 1.0, 'great': 1.0, 'crib': 1.0, 'been': 1.0, 'kruse': 1.0, 'm': 1.0, 'seat': 1.0, 'in': 3.0, 'style': 1.0, 'daughter': 1.0, 'definitely': 1.0, 'better': 1.0, 'durability': 1.0, 'moves': 1.0, 'the': 11.0, 'of': 4.0, 'love': 2.0, 'how': 1.0, 'stroller': 1.0, 'connect': 1.0, 'noise': 4.0, 'their': 1.0, 'quality': 1.0, 'and': 8.0, 'that': 6.0, 'heads': 1.0, 'products': 1.0, 'two': 1.0, 'kathe': 1.0, 're': 1.0, 'they': 1.0, 'more': 1.0, 'handle': 2.0, 'is': 7.0, 'these': 1.0, 'comes': 1.0, 'tear': 1.0, 'around': 1.0, 'europe': 1.0, 'also': 1.0, 'side': 3.0, 'made': 2.0, 'my': 2.0, 'crinkling': 1.0, 'ordered': 1.0, 'with': 4.0, 'it': 24.0, 'rattles': 1.0, 'this': 4.0, 'easy': 1.0, 'found': 1.0, 'kids': 2.0, 'soft': 2.0, 'anyways': 1.0, 'wash': 1.0, 'use': 3.0, 'first': 1.0, 'are': 1.0, 'plus': 1.0, 'help': 1.0, 've': 1.0, 'green': 2.0, 'super': 1.0, 'something': 1.0, 'spinning': 1.0, 'loud': 1.0, 'you': 6.0, 'things': 1.0, 'over': 1.0, 'doesn': 1.0, 'really': 5.0, 'second': 1.0, 'durable': 1.0, 'circle': 1.0, 'i': 8.0, 'well': 1.0, 'them': 1.0, 'has': 2.0, 'for': 2.0, 'fabric': 2.0, 'curly': 1.0, 'from': 1.0, 'velcro': 1.0, 'each': 1.0, 'end': 1.0, 'can': 5.0, 'so': 2.0, 'ends': 1.0, 'have': 1.0, 'be': 1.0, 'part': 2.0, 'anywhere': 2.0}
Word element => {'diapers': 1.0, 'and': 1.0, 'clothe': 1.0, 'uses': 1.0, 'i': 2.0, 'love': 1.0, 'a': 1.0, 'many': 1.0, 'again': 1.0, 'sprayer': 2.0, 'other': 1.0, 'this': 2.0, 'have': 1.0, 'would': 1.0, 'purchase': 1.0, 'must': 1.0, 'for': 1.0}
Word element => {'relevant': 1.0, 'before': 1.0, 'sized': 1.0, 'sight': 1.0, 'angles': 1.0, 'turns': 1.0, 'viewing': 1.0, 'station': 2.0, 'base': 1.0, 'really': 2.0, 'work': 1.0, 'but': 1.0, 'nuts': 1.0, 'barrel': 1.0, 'was': 1.0, 'opposite': 1.0, 'out': 2.0, 'purchased': 1.0, 'they': 1.0, 'drawers': 1.0, 'loaded': 1.0, 'isn': 1.0, 'quality': 1.0, 'description': 1.0, 'and': 4.0, 'happy': 1.0, 'too': 1.0, 't': 2.0, 'a': 3.0, 's': 2.0, 'are': 3.0, 'very': 1.0, 'changing': 2.0, 'that': 5.0, 'materials': 1.0, 'assembly': 1.0, 'so': 1.0, 'items': 1.0, 'crib': 3.0, 'includes': 1.0, 'both': 1.0, '34': 2.0, 'headboard': 1.0, 'years': 1.0, 'throughout': 1.0, 'well': 5.0, 'breeze': 1.0, 'obvious': 1.0, 'the': 11.0, 'of': 3.0, 'there': 1.0, 'here': 1.0, 'two': 2.0, 'nice': 1.0, 'slide': 1.0, 'not': 2.0, 'store': 1.0, 'sure': 1.0, 're': 1.0, 'fully': 1.0, 'where': 1.0, 'for': 1.0, 'conversion': 2.0, 'kit': 2.0, 'to': 2.0, 'common': 1.0, 'looking': 1.0, 'you': 1.0, 'have': 2.0, 'toddler': 1.0, 'bed': 4.0, 'youth': 3.0, 'extra': 1.0, 'another': 1.0, 'cap': 1.0, 'worried': 1.0, 'placed': 1.0, 'stuff': 1.0, 'just': 1.0, 'this': 1.0, 'few': 2.0, 'about': 1.0, 'frame': 1.0, 'worth': 1.0, 'now': 1.0, 'thought': 1.0, 'it': 1.0, 'requires': 1.0, 'noting': 1.0, 'haven': 1.0, 'back': 1.0, 'terribly': 1.0, 'in': 1.0, 'look': 1.0, 'at': 1.0, 'is': 2.0, 'end': 1.0, 'rails': 1.0, 'connect': 1.0}
Word element => {'of': 1.0, 'waste': 1.0, 'poorly': 1.0, 'looking': 1.0, 'unprofessional': 1.0, 'and': 2.0, 'them': 1.0, 'a': 1.0, 'purchased': 1.0, 'money': 1.0, 'throwing': 1.0, 'for': 1.0, 'babyshower': 1.0, 'they': 1.0, 'with': 2.0, 'pleased': 1.0, 'however': 1.0, 'overlapping': 1.0, 'very': 3.0, 'spaced': 1.0, 'wasn': 1.0, 'these': 1.0, 't': 1.0, 'the': 3.0, 'cheap': 1.0, 'i': 4.0, 'footprints': 1.0, 'balloons': 2.0, 'when': 1.0, 'was': 1.0, 'footprint': 1.0, 'received': 1.0, 'theme': 1.0, 'were': 2.0}
Word element => {'s': 1.0, 'home': 1.0, 'taken': 1.0, 'has': 1.0, 'inflated': 1.0, 'week': 1.0, 'them': 1.0, 'a': 1.0, 'for': 2.0, 'i': 1.0, 'grandson': 1.0, 'loved': 1.0, 'great': 1.0, 'all': 1.0, 'just': 1.0, 'hit': 1.0, 'foom': 1.0, 'lasted': 1.0, 'baby': 2.0, 'these': 1.0, 'at': 1.0, 'the': 2.0, 'shower': 1.0}
Word element => {'mom': 1.0, 'he': 1.0, 'meaning': 1.0, 'his': 1.0, 'very': 1.0, 'my': 1.0, 'one': 1.0, 'for': 1.0, 'worked': 1.0, 'easier': 1.0, 'well': 1.0, 'has': 2.0, 'out': 1.0, 'shampoo': 2.0, 'water': 2.0, 'hand': 2.0, 'just': 1.0, 'or': 1.0, 'these': 1.0, 'the': 2.0, 'great': 1.0, 'much': 1.0, 'squirmy': 1.0, 'try': 1.0, 'toddler': 1.0, 'doesn': 1.0, 'time': 1.0, 'friends': 1.0, 'bathe': 1.0, 'face': 2.0, 'if': 2.0, 'visor': 1.0, 'are': 1.0, 's': 1.0, 't': 2.0, 'a': 5.0, 'but': 1.0, 'work': 1.0, 'can': 1.0, 'you': 3.0, 'idea': 1.0, 'need': 1.0, 'them': 1.0, 'baby': 2.0, 'don': 1.0, 'always': 2.0, 'of': 2.0, 'and': 4.0, 'to': 3.0, 'their': 1.0, 'with': 1.0, 'it': 1.0, 'keeps': 1.0, 'moving': 1.0, 'this': 1.0, 'on': 1.0, 'bath': 1.0, 'your': 1.0, 'they': 1.0, 'calmer': 1.0, 'free': 1.0, 'especially': 1.0, 'off': 1.0, 're': 1.0, 'at': 1.0, 'who': 1.0, 'keep': 2.0, 'lot': 1.0, 'really': 1.0, 'have': 1.0, 'son': 1.0, 'still': 1.0}
Word element => {'not': 1.0, 'kids': 1.0, 'love': 1.0, 'remind': 1.0, 'would': 1.0, 'while': 1.0, 'so': 1.0, 'after': 1.0, 'hot': 1.0, 'bulb': 1.0, 'few': 1.0, 'touch': 1.0, 'i': 1.0, 'night': 1.0, 'obviously': 1.0, 'obsessed': 1.0, 'son': 1.0, 'the': 2.0, 'my': 1.0, 'find': 1.0, 'cover': 1.0, 'light': 1.0, 'get': 1.0, 'and': 3.0, 'fine': 1.0, 'is': 1.0, 'realistic': 1.0, 'of': 1.0, 'times': 1.0, 'dino': 1.0, 'it': 3.0, 'this': 1.0, 'with': 1.0, 'only': 1.0, 'he': 1.0, 'dinosaurs': 1.0, 'a': 3.0, 'we': 2.0, 'to': 1.0, 'was': 2.0, 'dropped': 1.0, 'could': 1.0, 's': 1.0}
Word element => {'piece': 1.0, 'the': 1.0, 'not': 1.0, 'embossed': 1.0, 'bulb': 1.0, 'of': 1.0, 'best': 1.0, 'cheesy': 1.0, 'looking': 1.0, 'light': 1.0, 'designer': 1.0, 'dinosaur': 1.0, 'and': 2.0, 'very': 1.0, 'kind': 1.0, 'an': 2.0, 'old': 1.0, '1980ies': 1.0, 'fashioned': 1.0}
Word element => {'use': 1.0, 'can': 1.0, 'nice': 1.0, 'they': 1.0, 'makes': 1.0, 'my': 1.0, 'for': 1.0, 'little': 1.0, 'a': 1.0, 'baby': 1.0, 'band': 1.0, 'like': 1.0, 'big': 1.0, 'very': 1.0, 'sounds': 1.0, 'have': 1.0, 'so': 1.0, 'shake': 1.0, 'noise': 2.0, 'it': 4.0, 'to': 1.0, 'too': 1.0, 'make': 1.0, 't': 1.0, 'the': 3.0, 'longer': 1.0, 'is': 1.0, 'limited': 1.0, 'rattle': 1.0, 'wrist': 1.0, 'making': 1.0, 'but': 1.0, 'doesn': 1.0, 'inside': 1.0, 'much': 1.0, 'room': 1.0, 'in': 1.0, 'beads': 1.0, 'there': 1.0}
Word element => {'fine': 1.0, 'wrist': 1.0, 'babies': 1.0, 'around': 1.0, 'touch': 1.0, 'you': 1.0, 'sounds': 1.0, 'only': 1.0, 'perfectly': 1.0, 'it': 5.0, 's': 1.0, 'arm': 1.0, 'cute': 1.0, 'thought': 1.0, 'but': 1.0, 'would': 1.0, 'wraps': 1.0, 'sound': 1.0, 'i': 1.0, 'when': 2.0, 'baby': 1.0, 'moved': 1.0}
Word element => {'beads': 1.0, 'shakers': 1.0, 'drawn': 1.0, 'play': 1.0, 'little': 1.0, 'all': 1.0, 'clean': 1.0, 'easy': 1.0, 'and': 2.0, 'hazard': 1.0, 'choking': 1.0, 'a': 1.0, 'plastic': 1.0, 'toddlers': 1.0, 'is': 1.0, 'in': 1.0, 'being': 1.0, 'toy': 1.0, 'to': 4.0, 'i': 1.0, 'safe': 1.0, 'mouth': 1.0, 'for': 1.0, 'love': 2.0, 'parts': 1.0, 'that': 2.0, 'it': 1.0, 'with': 3.0, 'this': 1.0, 'inside': 1.0, 'put': 1.0, 'toys': 1.0, 'big': 1.0, 'ones': 1.0, 'the': 3.0, 'care': 1.0, 'are': 2.0, 'enough': 1.0, 'so': 1.0, 'they': 1.0, 'not': 1.0}
Word element => {'the': 1.0, 'ways': 1.0, 'his': 1.0, 'there': 1.0, 'stacking': 1.0, 'different': 1.0, 'are': 1.0, 'my': 1.0, 'motor': 1.0, 'so': 1.0, 'one': 1.0, 'loves': 1.0, 'pegs': 1.0, 'grandson': 1.0, 'working': 1.0, 'to': 1.0, 'use': 1.0, 'this': 1.0, 'it': 2.0, 'and': 1.0, 'many': 1.0, 'is': 1.0, 'really': 1.0, 'finer': 1.0, 'skills': 1.0}
Word element => {'cute': 1.0, 'is': 1.0, 'worth': 1.0, 'his': 1.0, 'cheeks': 1.0, 'drooling': 1.0, 'fever': 1.0, 'hardly': 1.0, 'a': 2.0, 'never': 1.0, 'has': 1.0, 'son': 1.0, 'off': 1.0, 'reduced': 1.0, 'edge': 1.0, 'right': 1.0, 'teething': 1.0, 'takes': 1.0, 'think': 1.0, 'always': 1.0, 'there': 1.0, 'of': 1.0, 'supplier': 1.0, 'try': 1.0, 'works': 1.0, 'much': 1.0, 'and': 4.0, 'getting': 1.0, 'least': 1.0, 'to': 2.0, 'the': 8.0, 'able': 1.0, 'really': 1.0, 'at': 1.0, 'keep': 1.0, 'some': 1.0, 'process': 1.0, 'but': 2.0, 'had': 1.0, 'correct': 1.0, 'it': 3.0, 'were': 1.0, 'ones': 1.0, 'necklace': 2.0, 'here': 1.0, 'plus': 1.0, 'twice': 1.0, 'issues': 1.0, 'i': 4.0, 'buy': 1.0, 'responding': 1.0, 'how': 1.0, 'my': 2.0, 'amber': 1.0, 'emails': 1.0, 'nice': 1.0, 'about': 1.0, 'super': 2.0, 'would': 2.0, 'baltic': 1.0, 'anymore': 1.0, 'was': 2.0, 'recommend': 1.0, 'red': 1.0, 'quick': 1.0, 'with': 1.0, 'cure': 1.0, 'happened': 1.0, 'again': 1.0, 'art': 1.0, 'actually': 1.0, 'm': 1.0, 'wrong': 1.0, 'not': 1.0, 'get': 1.0, 'sure': 1.0}
Word element => {'on': 1.0, 'waste': 1.0, 'their': 1.0, 'your': 1.0, 'they': 1.0, 'money': 1.0, 'don': 1.0, 'about': 1.0, 'bought': 1.0, 'friends': 1.0, 'many': 1.0, 'well': 1.0, 'how': 1.0, 'told': 1.0, 'at': 1.0, '1st': 1.0, 'will': 1.0, 'and': 3.0, 'my': 2.0, 't': 1.0, 'the': 1.0, 'item': 2.0, 'worked': 1.0, 'son': 1.0, 'for': 3.0, 'was': 1.0, 'had': 1.0, 's': 1.0, 'in': 1.0, 'teeth': 1.0, 'i': 4.0, 'kids': 1.0, 'when': 1.0, 'have': 2.0, 'born': 1.0, 'thing': 1.0, 'use': 1.0, 'amazed': 1.0, 'new': 1.0, 'ointments': 1.0, 'used': 1.0, 'his': 1.0, 'only': 1.0, 'this': 2.0, 'it': 3.0, 'come': 1.0}
Word element => {'if': 1.0, 'britax': 1.0, 'to': 2.0, 'go': 1.0, 'sure': 1.0, 'make': 1.0, 'fits': 1.0, 'made': 1.0, 'll': 1.0, 'certain': 1.0, 'and': 2.0, 'very': 2.0, 'deceiving': 1.0, 'website': 1.0, 'good': 1.0, 'models': 1.0, 'only': 1.0, 'it': 4.0, 'can': 1.0, 'see': 1.0, 'check': 1.0, 'a': 1.0, 'doesn': 1.0, 'is': 2.0, 'description': 1.0, 'on': 1.0, 'the': 2.0, 't': 1.0, 'we': 1.0, 'design': 1.0, 'tell': 1.0, 'you': 3.0, 'although': 1.0, 'that': 1.0, 'use': 1.0}
Word element => {'use': 1.0, 'daughter': 1.0, 'reattach': 1.0, 'will': 1.0, 'sure': 1.0, 'closing': 1.0, 'an': 1.0, 'didn': 1.0, 'holder': 1.0, 'cup': 1.0, 'truck': 1.0, 'however': 1.0, 'much': 1.0, 'person': 1.0, 'of': 3.0, 'by': 1.0, 'toward': 1.0, 'not': 2.0, 'cruiser': 1.0, 'land': 1.0, 'room': 1.0, 'shutting': 1.0, 'difficulty': 1.0, 'some': 1.0, 'has': 1.0, 'car': 1.0, 'reviewers': 1.0, '70cs': 1.0, 'adocate': 1.0, 'drink': 1.0, 'little': 1.0, 'his': 2.0, 'does': 1.0, 'carseat': 2.0, 'forward': 1.0, 'placed': 2.0, 'doesn': 1.0, 'was': 2.0, 'my': 4.0, 'biggest': 1.0, 'age': 1.0, 'in': 3.0, 'when': 1.0, 'am': 1.0, 'gives': 1.0, 'is': 2.0, 'more': 1.0, 'and': 3.0, 'place': 1.0, 'the': 15.0, 'reach': 1.0, 'husband': 1.0, 'issue': 2.0, 'like': 2.0, 'leave': 1.0, 'small': 1.0, 'have': 3.0, 'sit': 1.0, 'other': 1.0, 'this': 1.0, 'it': 6.0, 'door': 3.0, 'he': 1.0, 'placement': 1.0, 'that': 1.0, 'him': 1.0, 'we': 1.0, 's': 1.0, 't': 2.0, 'a': 4.0, 'i': 3.0, 'stated': 1.0, 'put': 1.0, 'on': 3.0, 'center': 1.0, 'to': 3.0, 'as': 1.0, 'seat': 3.0, 'sitting': 1.0, 'but': 2.0, '2': 1.0, 'can': 1.0, 'middle': 1.0, 'son': 1.0, 'still': 1.0, 'if': 3.0, 'suv': 1.0, 'side': 1.0, 'where': 1.0}
Word element => {'useful': 1.0, 'will': 1.0, 'keeping': 1.0, 'm': 1.0, 'babies': 1.0, 'on': 1.0, 'able': 1.0, 'be': 2.0, 'him': 1.0, 'expect': 1.0, 'it': 4.0, 'crackers': 1.0, 'small': 1.0, 'leave': 1.0, 'i': 2.0, 'enough': 1.0, 'if': 1.0, 'from': 1.0, 'something': 1.0, 'just': 1.0, 'rear': 1.0, 'not': 1.0, 'those': 1.0, 'one': 1.0, 'snacks': 2.0, 'for': 2.0, 'was': 1.0, 'only': 1.0, 'placement': 1.0, 'stayed': 1.0, 'use': 1.0, 'cs': 1.0, 'grapes': 1.0, 'of': 3.0, 'or': 3.0, 'cup': 4.0, 'tight': 1.0, 'my': 3.0, 'design': 1.0, 'holder': 3.0, 'attached': 2.0, 'complaint': 1.0, 'perfectly': 1.0, 'tall': 1.0, 'and': 4.0, 'like': 1.0, 'which': 1.0, 'hangs': 1.0, 'compatible': 1.0, 'to': 3.0, 'seat': 2.0, 'as': 2.0, 'year': 1.0, 'listed': 1.0, 'is': 4.0, 'more': 2.0, 'a': 1.0, 's': 1.0, 't': 2.0, 'but': 1.0, 'can': 2.0, '2': 1.0, 'car': 1.0, 'attachment': 1.0, 'fine': 1.0, 'isn': 1.0, 'itself': 1.0, 'in': 3.0, 'average': 1.0, 'than': 1.0, 'sized': 1.0, 'old': 1.0, 'facing': 1.0, 'time': 1.0, 'bottle': 1.0, 'advocate': 1.0, 'so': 2.0, 'reach': 2.0, 'the': 8.0, 'furthest': 1.0, 'this': 1.0, 'perfect': 1.0, 'recline': 1.0, 'lot': 1.0, 'option': 1.0}
Word element => {'carseat': 1.0, 'next': 1.0, 'if': 1.0, 'have': 1.0, 'usually': 1.0, 'in': 1.0, 'holder': 1.0, 'handy': 1.0, 'the': 4.0, 'to': 2.0, 'comes': 1.0, 'someone': 1.0, 'quite': 1.0, 'cup': 1.0, 'happy': 1.0, 'am': 1.0, 'bit': 1.0, 'with': 1.0, 'only': 1.0, 'it': 3.0, 'issue': 1.0, 'i': 1.0, 'that': 1.0, 'sitting': 1.0, 'take': 1.0, 'sticks': 1.0, 'out': 2.0, 'from': 1.0, 'is': 2.0, 'side': 1.0, 'a': 1.0, 'we': 1.0}
Word element => {'all': 1.0, 'issues': 1.0, 'at': 1.0, 'no': 1.0, 'but': 1.0, 'bit': 1.0, 'a': 1.0, 's': 1.0, 'is': 2.0, 'pricey': 1.0, 'that': 2.0, 'something': 1.0, 'con': 1.0, 'has': 1.0, 'than': 1.0, 'water': 1.0, 'go': 1.0, 'now': 1.0, 'to': 4.0, 'cup': 1.0, 'seat': 2.0, 'other': 1.0, 'attach': 1.0, 'britax': 1.0, 'i': 1.0, 'for': 1.0, 'one': 1.0, 'car': 2.0, 'holder': 1.0, 'would': 1.0, 'and': 2.0, 'so': 1.0, 'hold': 1.0, 'far': 1.0, 'easy': 1.0, 'only': 1.0, 'with': 1.0, 'this': 1.0, 'it': 3.0, 'what': 1.0, 'her': 1.0, 'works': 1.0, 'the': 4.0, 'great': 1.0, 'bottle': 1.0, 'little': 1.0}
Word element => {'to': 1.0, 'it': 1.0, 'found': 1.0, 'etc': 1.0, 'bit': 1.0, 'bottles': 2.0, 'a': 1.0, 'is': 1.0, 'but': 2.0, 'fits': 1.0, 'holds': 1.0, 'seats': 1.0, 'and': 1.0, 'flimsy': 1.0, 'britax': 1.0, 'i': 2.0, 'car': 1.0, 'definitely': 1.0, 'in': 1.0, 've': 1.0, 'broken': 1.0, 'be': 1.0, 'replaced': 1.0, 'than': 1.0, 'water': 1.0, 'sturdy': 1.0, 'already': 1.0, 'two': 1.0, 'sippy': 1.0, 'less': 1.0, 'cups': 1.0}
Word element => {'enough': 1.0, 'long': 1.0, 'have': 1.0, 'cost': 1.0, 'to': 2.0, 'very': 1.0, 'reach': 1.0, 'and': 1.0, 'worth': 1.0, 'cup': 1.0, 'holder': 1.0, 'they': 2.0, 'little': 1.0, 'handy': 1.0, 'use': 1.0, 't': 1.0, 'the': 2.0, 'are': 2.0, 'love': 1.0, 'older': 1.0, 'it': 1.0, 'don': 1.0, 'a': 1.0, 'until': 1.0, 'their': 1.0, 'arms': 1.0}
Word element => {'a': 1.0, 'useless': 1.0, 'my': 1.0, 'the': 1.0, 'waste': 1.0, 'on': 1.0, 'attach': 1.0, 'completely': 1.0, 'of': 3.0, 'was': 1.0, 'to': 2.0, 'what': 1.0, 'carseat': 1.0, 'before': 1.0, 'this': 1.0, 'it': 2.0, 's': 1.0, 'ordered': 1.0, 'i': 1.0, 'arms': 1.0, 'one': 2.0, 'for': 1.0, 'all': 1.0, 'son': 1.0, 'day': 1.0, 'money': 1.0, 'broke': 1.0, 'off': 1.0, 'rendering': 1.0}
Word element => {'not': 1.0, 'though': 1.0, 'overall': 1.0, 'better': 1.0, 'much': 1.0, 'imo': 1.0, 'able': 1.0, 'few': 1.0, 'forward': 1.0, 'in': 1.0, 'hoping': 1.0, 'britax': 1.0, 'once': 1.0, 'of': 1.0, 'struggle': 1.0, 'good': 1.0, 'her': 3.0, 'fits': 1.0, 'money': 1.0, 'but': 2.0, 'daughter': 1.0, 'm': 1.0, 'months': 2.0, 'on': 1.0, 'old': 1.0, 'i': 2.0, 'that': 1.0, 'loves': 1.0, 'perfect': 1.0, 'this': 1.0, 'rear': 2.0, 'is': 3.0, 'worth': 1.0, 'cup': 2.0, 'because': 1.0, 'marathon': 1.0, 'still': 2.0, 'facing': 3.0, 'it': 3.0, 'she': 6.0, 'easy': 1.0, 'car': 2.0, 'access': 1.0, 'our': 1.0, 'cups': 1.0, 'seat': 2.0, 'to': 3.0, 'sits': 1.0, 'didn': 1.0, 'rank': 1.0, '5': 1.0, '19': 1.0, 'sometimes': 1.0, 's': 3.0, 't': 1.0, 'a': 4.0, 'bit': 1.0, 'expensive': 1.0, 'product': 1.0, 'where': 1.0, 'stars': 1.0, 'for': 1.0, 'turns': 1.0, 'the': 3.0, 'reach': 2.0, 'from': 1.0}
Word element => {'i': 1.0, 'car': 1.0, 'well': 1.0, 'works': 1.0, 'you': 2.0, 'and': 1.0, 'likely': 1.0, 'tried': 1.0, 'the': 1.0, 'some': 1.0, 'seat': 2.0, 'will': 1.0, 'most': 1.0, 'unlike': 1.0, 'want': 1.0, 'brands': 1.0, 'if': 1.0, 'other': 1.0, 'this': 1.0, 'have': 2.0, 'stable': 1.0}
Word element => {'strains': 1.0, 'strapped': 1.0, 'him': 2.0, 'from': 1.0, 'away': 1.0, 'far': 1.0, 'pretty': 1.0, 'in': 1.0, 'said': 1.0, 'is': 3.0, 'but': 2.0, 'holders': 1.0, 'doesn': 1.0, 'an': 1.0, 'come': 1.0, 'with': 1.0, 'it': 7.0, 'others': 1.0, 'broken': 1.0, 'flimsy': 1.0, 'since': 1.0, 'like': 1.0, 'reach': 1.0, 'the': 1.0, 'great': 1.0, 'a': 1.0, 't': 2.0, 'figured': 1.0, 'when': 1.0, 'easily': 2.0, 'idea': 1.0, 'yet': 1.0, 'cup': 1.0, 'tight': 1.0, 'my': 1.0, 'he': 1.0, 'addition': 1.0, 'how': 1.0, 'have': 2.0, 'boulevard': 1.0, 'positioned': 1.0, 'pops': 1.0, 'and': 3.0, 'out': 3.0, 'old': 1.0, 'for': 1.0, 'annoy': 1.0, 'cheap': 1.0, 'haven': 1.0, 'i': 2.0, 'two': 1.0, 'year': 1.0, 'kind': 1.0, 'to': 2.0, 'mommy': 1.0, 'popping': 1.0, 'by': 1.0, 'over': 2.0, 'feels': 1.0, 'of': 1.0}
Word element => {'month': 1.0, 'a': 1.0, 'after': 1.0, 'so': 1.0, 'toward': 1.0, 'be': 1.0, 'to': 1.0, 'had': 1.0, 'daughter': 1.0, 'placed': 1.0, 'about': 1.0, 'broke': 1.0, 'holder': 1.0, 'my': 1.0, 'cup': 1.0, 'bottom': 1.0, 'of': 2.0, 'use': 1.0, 'then': 1.0, 'far': 1.0, 'the': 2.0, 't': 1.0, 'carseat': 1.0, 'that': 1.0, 'couldn': 1.0, 'reach': 1.0, 'only': 1.0, 'this': 1.0, 'it': 2.0}
Word element => {'and': 1.0, 'into': 1.0, 'stays': 1.0, 'clicks': 1.0, 'it': 1.0, 'great': 1.0, 'way': 1.0, 'to': 1.0, 'prevent': 1.0, 'the': 3.0, 'sippy': 1.0, 'conveniently': 1.0, 'all': 1.0, 'flying': 1.0, 'seat': 1.0, 'cup': 1.0, 'secure': 1.0, 'car': 2.0, 'over': 1.0, 'from': 1.0}
Word element => {'able': 1.0, 'little': 1.0, 'good': 1.0, 'connected': 1.0, 'hard': 1.0, 'extra': 1.0, 'push': 1.0, 'says': 1.0, 'just': 1.0, 'several': 1.0, 'off': 1.0, 'when': 1.0, 'idea': 1.0, 'am': 1.0, 'times': 1.0, 'fallen': 1.0, 'has': 1.0, 'hopefully': 1.0, 'my': 2.0, 'it': 13.0, 'this': 1.0, 'he': 4.0, 'that': 1.0, 'been': 1.0, 'young': 1.0, 'i': 4.0, 'bought': 1.0, 'a': 2.0, 'could': 1.0, 'go': 1.0, 'too': 1.0, 'and': 4.0, 'cup': 1.0, 'whining': 1.0, 'not': 1.0, 'me': 1.0, 'sure': 1.0, 'get': 1.0, 'car': 1.0, 'himself': 1.0, 'older': 1.0, 'now': 1.0, 'him': 1.0, 'be': 3.0, 'grab': 1.0, 'our': 1.0, 'seat': 2.0, 'to': 8.0, 'as': 1.0, 'have': 1.0, 'still': 2.0, 'son': 2.0, 'gets': 1.0, 'for': 2.0, 'where': 1.0, 'seems': 1.0, 'also': 1.0, 'will': 2.0, 'but': 2.0, 'fall': 1.0, 'connecting': 1.0, 'is': 4.0, 'more': 2.0, 'reach': 2.0, 'the': 2.0, 'with': 2.0, 'convenient': 1.0, 'right': 1.0, 'connects': 1.0, 'so': 1.0, 'like': 1.0, 'cannot': 1.0, 'grows': 1.0, 'make': 1.0, 'impressed': 1.0, 'constantly': 1.0}
Word element => {'i': 2.0, 'overall': 1.0, 'have': 1.0, 'falls': 1.0, 'off': 2.0, 'take': 1.0, 'easy': 1.0, 'if': 4.0, 'strapped': 1.0, 'like': 1.0, 'downside': 2.0, '19': 1.0, 'he': 2.0, 'sippy': 3.0, 'his': 2.0, 'put': 2.0, 'great': 1.0, 'could': 1.0, 'a': 4.0, 't': 1.0, 'cup': 3.0, 'buldges': 1.0, 'is': 4.0, 'now': 1.0, 'only': 1.0, 'its': 2.0, 'has': 1.0, 'that': 3.0, 'next': 1.0, 'it': 5.0, 'month': 1.0, 'old': 1.0, 'my': 1.0, 'tight': 1.0, 'one': 1.0, 'in': 3.0, 'also': 2.0, 'car': 1.0, 'to': 6.0, 'seat': 2.0, 'bumped': 1.0, 'but': 2.0, 'can': 1.0, 'the': 6.0, 'place': 2.0, 'reach': 1.0, 'tall': 1.0, 'out': 1.0, 'so': 1.0, 'not': 1.0, 'kinda': 1.0, 'idea': 1.0, 'someone': 1.0, 'gets': 1.0, 'wants': 1.0, 'be': 1.0, 'him': 1.0, 'always': 1.0, 'sit': 1.0, 'way': 1.0}
Word element => {'taking': 1.0, 'go': 1.0, 'a': 3.0, 'have': 2.0, 'you': 3.0, 'on': 1.0, 'low': 1.0, 'the': 2.0, 'sits': 1.0, 'in': 1.0, 'toddler': 1.0, 'but': 1.0, 'potential': 1.0, 'has': 1.0, 'holder': 1.0, 're': 1.0, 'smaller': 1.0, 'cup': 1.0, 'of': 2.0, 'bigger': 2.0, 'chance': 1.0, 'for': 4.0, 'side': 1.0, 'is': 2.0, 'kid': 1.0, 'toddlers': 1.0, 'if': 2.0, 'properly': 1.0, 'strapped': 1.0, 'it': 4.0, 'children': 2.0, 'this': 1.0, 'out': 1.0, 'kids': 1.0, 'when': 1.0, 'seat': 1.0, 'because': 1.0, 'difficult': 1.0, 'reach': 2.0, 'and': 1.0, 'so': 2.0, 'small': 1.0, 'to': 1.0}
Word element => {'again': 1.0, 'worth': 1.0, 'sad': 1.0, 'sturdier': 1.0, 'built': 1.0, 'attach': 1.0, 'holder': 1.0, 'after': 1.0, 'broke': 1.0, 'few': 1.0, 'car': 2.0, 'not': 1.0, 'just': 1.0, 'seat': 2.0, 'of': 1.0, 'cup': 1.0, 'easy': 1.0, 'especially': 1.0, 'enough': 1.0, 'buying': 1.0, 'was': 1.0, 'to': 2.0, 'attached': 1.0, 'wish': 1.0, 'different': 1.0, 'it': 2.0, '15': 1.0, 'a': 3.0, 'but': 1.0, 'doesn': 1.0, 'months': 1.0, 'little': 1.0, 'allow': 1.0, 'the': 2.0, 't': 1.0, 'for': 2.0, 'really': 1.0, 'type': 1.0}
Word element => {'better': 1.0, 'a': 1.0, 'they': 1.0, 'wish': 1.0, 'had': 1.0, 'to': 1.0, 'the': 2.0, 'for': 1.0, 'design': 2.0, 'have': 1.0, 'sticks': 1.0, 'ordered': 1.0, 'out': 1.0, 'i': 2.0, 'britax': 1.0, 'my': 1.0, 'cup': 1.0, 'holder': 1.0, 'seat': 2.0, 'second': 1.0, 'is': 2.0, 'car': 2.0, 'this': 1.0, 'it': 1.0, 'an': 1.0, 'awkward': 1.0, 'that': 1.0, 'when': 1.0, 'attached': 1.0}
Word element => {'car': 1.0, 'for': 1.0, 'have': 1.0, 'must': 1.0, 'a': 2.0, 'she': 2.0, 'so': 1.0, 'ever': 1.0, 'fits': 1.0, 'her': 1.0, 'we': 1.0, 'seat': 2.0, 'the': 2.0, 'on': 1.0, 'with': 1.0, 'it': 2.0, 'cups': 1.0, 'when': 1.0, 'wants': 1.0, 'reach': 1.0, 'and': 1.0, 'can': 1.0, 'right': 1.0, 'product': 1.0, 'inside': 1.0, 'put': 2.0, 'back': 1.0, 'happy': 1.0}
Word element => {'pricey': 1.0, 'to': 1.0, 'useless': 1.0, 'is': 1.0, 'it': 1.0, 'so': 1.0, 'chair': 1.0, 'seems': 1.0, 'very': 1.0, 'like': 1.0, 'did': 1.0, 'a': 1.0, 'sturdy': 1.0, 'holder': 1.0, 'not': 1.0, 'me': 1.0, 'but': 1.0, 'fit': 1.0, '08': 1.0, 'my': 1.0}
Word element => {'weeks': 1.0, 'broke': 1.0, 'clip': 1.0, 'physically': 1.0, 'child': 1.0, 'who': 1.0, 'after': 1.0, 'small': 1.0, 'can': 1.0, 'month': 1.0, 'it': 3.0, 'have': 1.0, 'the': 1.0, 't': 3.0, '4': 1.0, 'clips': 1.0, 'a': 2.0, 'match': 1.0, 'last': 1.0, 'didn': 2.0, 'quite': 1.0, 'up': 1.0, 'break': 1.0, 'and': 1.0, 'said': 1.0, 'was': 1.0, 'model': 1.0, 'for': 1.0, 'our': 1.0}
Word element => {'seats': 1.0, 'advertising': 1.0, 'them': 1.0, 'giving': 1.0, 'm': 1.0, 'now': 1.0, 'you': 1.0, 'unless': 1.0, 'buy': 1.0, 'don': 1.0, 'so': 1.0, 'out': 1.0, 'came': 1.0, 'also': 1.0, 'will': 1.0, 'is': 1.0, 'say': 1.0, 'on': 1.0, 'support': 1.0, 'poor': 1.0, 'model': 1.0, 'hold': 1.0, 'his': 1.0, 'holder': 3.0, 'fits': 1.0, 'my': 1.0, 'cs': 1.0, 'but': 1.0, 'most': 1.0, 'no': 1.0, 'there': 1.0, 'i': 2.0, 'brand': 1.0, 'old': 1.0, 'r': 1.0, 'britax': 1.0, 'are': 2.0, 'and': 2.0, 'boulevard': 3.0, 'much': 1.0, 'only': 2.0, 'was': 1.0, 'notes': 1.0, '15': 1.0, 'in': 1.0, 'fit': 1.0, 'expensive': 1.0, 'for': 2.0, 'cup': 3.0, 'yet': 1.0, 'son': 1.0, 'it': 3.0, 'month': 1.0, 'this': 4.0, 'carries': 1.0, 'buying': 1.0, 'slots': 1.0, 't': 1.0, 'ago': 1.0, 'a': 2.0, 'we': 1.0, '1star': 1.0, 'the': 6.0, 'car': 3.0, 'to': 2.0, 'seat': 2.0, 'not': 1.0, 'just': 1.0, 'few': 1.0, 'bought': 2.0, 'one': 2.0, 'months': 1.0, 'pretty': 1.0, 'that': 3.0, 'babies': 1.0, 'us': 1.0, 'new': 2.0, 'enough': 1.0}
Word element => {'highly': 1.0, 'happy': 2.0, 'm': 1.0, 'item': 1.0, 'necessary': 1.0, 'of': 1.0, 'height': 1.0, 'tilt': 2.0, 'slight': 1.0, 'so': 1.0, 'ever': 1.0, 'an': 1.0, 'recommended': 1.0, 'has': 1.0, 'solidly': 1.0, 'in': 1.0, 'sets': 1.0, 'great': 1.0, 'bonus': 1.0, 'hold': 1.0, 'problem': 1.0, 'no': 1.0, 'with': 1.0, 'thought': 1.0, 'that': 2.0, 'it': 4.0, 'this': 1.0, 'depending': 1.0, 'children': 1.0, 'first': 1.0, 'looked': 1.0, 'able': 1.0, 'was': 2.0, 'cup': 1.0, 'held': 1.0, 'up': 2.0, 'britax': 1.0, 'not': 2.0, 'to': 2.0, 'seat': 2.0, 'cupholder': 1.0, 'i': 3.0, 'is': 2.0, 'my': 3.0, 'choice': 1.0, 'wouldn': 1.0, 'safety': 1.0, 'number': 1.0, 'and': 1.0, 'too': 1.0, 'name': 1.0, 'daughter': 1.0, 'one': 1.0, 'tot': 1.0, 'at': 1.0, 'sippy': 1.0, 'little': 1.0, 'far': 1.0, 'surpriised': 1.0, 'forward': 1.0, 'can': 1.0, 'but': 2.0, 'placed': 1.0, 'on': 2.0, 's': 2.0, 'a': 1.0, 't': 1.0, 'just': 1.0, 'worried': 1.0, 'be': 1.0, 'the': 3.0, 'reach': 2.0, 'inside': 1.0, 'perfectly': 1.0, 'her': 1.0, 'for': 1.0, 'actually': 1.0}
Word element => {'websites': 1.0, 'retailer': 1.0, 'various': 1.0, 'components': 1.0, 'complaining': 1.0, 'issue': 3.0, 'component': 1.0, 'missing': 2.0, 'brands': 1.0, 'does': 1.0, 'think': 1.0, 'standard': 1.0, 'having': 1.0, 'britax': 4.0, 'include': 1.0, 'car': 6.0, 'install': 1.0, '1': 1.0, 'complete': 1.0, 'most': 1.0, 'money': 1.0, '2': 1.0, 'got': 2.0, 'never': 1.0, 'as': 4.0, 'to': 6.0, 'our': 2.0, 'product': 2.0, 'for': 1.0, 'stars': 1.0, 'holder': 2.0, 'actually': 1.0, 'with': 2.0, 'it': 5.0, 'ordered': 2.0, 'when': 2.0, 'rate': 1.0, 'cannot': 1.0, 'seen': 1.0, 'cup': 3.0, 'these': 1.0, 'of': 4.0, 'the': 9.0, 'received': 2.0, 'not': 5.0, 'seats': 1.0, 'just': 1.0, 'by': 1.0, 'reviews': 1.0, 'we': 4.0, 'a': 7.0, 'funny': 1.0, 'return': 1.0, 'way': 1.0, 'hanger': 1.0, 'if': 1.0, 'regularly': 1.0, 'impressed': 1.0, 'amazon': 2.0, 'its': 1.0, 'do': 1.0, 'much': 1.0, 'had': 2.0, 'and': 5.0, 'they': 1.0, 'because': 1.0, 'easily': 1.0, 'that': 1.0, 'next': 1.0, 'refunded': 1.0, 'firs': 1.0, 'seat': 6.0, 'in': 1.0, 'on': 6.0, 'update': 1.0, 'out': 1.0, 'may': 1.0, 'another': 1.0, '2013': 1.0, 'can': 1.0, 'so': 1.0, 'time': 2.0, 'i': 6.0, 'now': 1.0, 'have': 2.0, 'lot': 1.0, '2nd': 1.0, 'too': 1.0, 'one': 1.0, 'was': 1.0, 'is': 3.0, 'at': 1.0, 'this': 3.0, 'sticks': 1.0, 'no': 1.0, 'inbuilt': 1.0, 'from': 2.0, 'be': 1.0, 'damaged': 1.0, 'passengers': 1.0, 'about': 1.0, '300': 1.0, 'shame': 1.0, 'all': 2.0, 'other': 3.0, 'an': 1.0, 'spending': 1.0, 'close': 1.0, 'quality': 1.0, 'after': 1.0, 'updating': 1.0}
Word element => {'that': 1.0, 'now': 1.0, 'of': 1.0, 'car': 1.0, 'in': 1.0, 'getting': 1.0, 're': 1.0, 'be': 1.0, 'him': 1.0, 'with': 1.0, 'have': 1.0, 'things': 1.0, 'other': 1.0, 'various': 1.0, 'snack': 1.0, 'sunglasses': 1.0, 'some': 1.0, 'was': 1.0, 'i': 4.0, 'old': 1.0, 'and': 3.0, 'actually': 1.0, 'for': 2.0, 'cars': 1.0, 'son': 1.0, 'sippycups': 1.0, 'child': 1.0, 'roadtrip': 1.0, 'one': 1.0, 'decided': 1.0, 'planning': 1.0, 'd': 1.0, 'may': 1.0, 'purchase': 1.0, 'family': 1.0, 'fits': 1.0, 'my': 1.0, 'carseat': 2.0, 'year': 1.0, 'his': 3.0, 'used': 1.0, 'when': 2.0, 'seen': 1.0, 'cupholder': 2.0, 'roundabout': 1.0, 'proud': 1.0, 'we': 2.0, 's': 4.0, 'a': 2.0, 'friend': 1.0, 'think': 1.0, 'on': 1.0, 'uses': 1.0, '2': 1.0, 'the': 2.0, 'added': 1.0, 'britax': 1.0, 'it': 4.0, 'only': 1.0, 'to': 3.0, 'our': 2.0, 'all': 1.0, 'time': 1.0, 'toy': 1.0, 'has': 2.0, 'not': 1.0, 'little': 2.0, 'he': 4.0, 'camelbak': 1.0, 'cup': 1.0, 'bottles': 1.0, 'also': 1.0, 'hold': 1.0}
Word element => {'months': 1.0, 'of': 2.0, 'a': 1.0, 'broke': 1.0, 'seat': 1.0, 'within': 1.0, 'car': 1.0, 'tabs': 1.0, 'unfortunately': 1.0, 'connect': 1.0, 'in': 2.0, 'year': 1.0, 'could': 1.0, 'though': 1.0, 'things': 2.0, 'put': 1.0, 'us': 1.0, 'when': 1.0, 'have': 1.0, 'getting': 1.0, 'couple': 1.0, 'reach': 1.0, 'couldn': 1.0, 'was': 2.0, 'to': 2.0, 'old': 1.0, 'cupholder': 2.0, 'the': 4.0, 't': 1.0, '2': 1.0, 'that': 1.0, 'our': 1.0, 'he': 2.0, 'it': 4.0, 'buckled': 1.0, 'helpful': 1.0, 'so': 1.0}
Word element => {'off': 1.0, 'broke': 1.0, '70': 1.0, 'but': 1.0, 'didn': 1.0, 'my': 2.0, 'boulevard65': 1.0, 't': 1.0, 'fit': 2.0, 'advocate': 1.0, 'on': 2.0, 'said': 1.0, 'quality': 1.0, 'like': 1.0, 'it': 2.0, 'should': 1.0, 'poor': 1.0}
Word element => {'side': 1.0, 'does': 1.0, 'britax': 1.0, 'i': 1.0, 'the': 1.0, 'my': 1.0, 'car': 1.0, 'daughter': 1.0, 'm': 1.0, 'fits': 1.0, 'but': 1.0, 'it': 1.0, 'with': 2.0, 'on': 1.0, 'well': 1.0, 's': 1.0, 'fall': 1.0, 'goes': 1.0, 'off': 1.0, 'at': 1.0, 'seat': 1.0, 'not': 2.0, 'times': 1.0, 'sure': 1.0, 'playing': 1.0, 'that': 1.0}
Word element => {'easily': 1.0, 'in': 1.0, 'daughter': 1.0, 'goes': 1.0, 'how': 1.0, 'broken': 1.0, 'holder': 1.0, 'of': 1.0, 'everything': 1.0, 'however': 1.0, 'that': 1.0, 'loves': 1.0, 'this': 1.0, 'it': 3.0, 'cup': 1.0, 'my': 1.0, 'are': 1.0, 'seat': 2.0, 'because': 1.0, 'the': 3.0, 'sits': 1.0, 'clips': 1.0, 'on': 1.0, 'hold': 1.0, 'to': 1.0}
Word element => {'quality': 1.0, 'but': 1.0, 'good': 1.0, 'very': 1.0, 'tend': 1.0, 'they': 1.0, 'any': 1.0, 'about': 1.0, 'for': 1.0, 'to': 1.0, 'now': 1.0, 'is': 2.0, 'with': 1.0, 'our': 1.0, 'functionally': 1.0, 'through': 1.0, 'been': 1.0, 'both': 1.0, 'on': 1.0, '4': 1.0, 'of': 1.0, 'britax': 1.0, 'have': 2.0, 'we': 2.0, 'subpar': 1.0, 'kids': 2.0, 'these': 1.0, 'the': 1.0, 'marathon': 1.0, 'pressure': 1.0, 'them': 2.0, 'snap': 1.0, 'carseats': 1.0, 'break': 1.0, 'and': 2.0, 'use': 1.0, 'problem': 1.0}
Word element => {'you': 1.0, 'just': 1.0, 'keeping': 1.0, 'ships': 1.0, 'so': 1.0, 'issues': 1.0, 'processed': 1.0, 'amazon': 1.0, 'use': 1.0, 'possible': 1.0, 'despite': 1.0, 'no': 2.0, 'there': 1.0, 'saying': 1.0, 'star': 1.0, '1': 1.0, 'but': 1.0, 'fine': 1.0, 'packaging': 1.0, 'of': 1.0, 'quality': 1.0, 'were': 1.0, 'in': 3.0, 'case': 1.0, 'box': 2.0, 'gave': 1.0, 'that': 2.0, 'fits': 1.0, 'with': 2.0, 'fitting': 1.0, 'it': 8.0, 'this': 3.0, 'modify': 1.0, 'make': 1.0, 'on': 3.0, 'not': 3.0, 'did': 2.0, 'other': 1.0, 'worked': 1.0, 'marathon': 1.0, 'britax': 2.0, 'holder': 1.0, 'cup': 1.0, 'recommend': 1.0, 'was': 2.0, 'unfortunately': 1.0, 'us': 1.0, 'convertible': 1.0, 'car': 1.0, 'have': 1.0, 'need': 1.0, 'shows': 1.0, 'due': 1.0, 'from': 1.0, 'description': 2.0, 'and': 2.0, 'couldn': 1.0, 'before': 1.0, 'even': 1.0, 'the': 9.0, 'website': 1.0, 'i': 4.0, 'very': 1.0, 'read': 1.0, 'reviews': 1.0, 'disappointed': 1.0, 'purchasing': 1.0, 'had': 1.0, 'we': 3.0, 't': 1.0, 'a': 1.0, 'our': 3.0, 'seat': 4.0, 'as': 1.0, 'to': 6.0, 'any': 2.0, 'for': 1.0, 'product': 1.0, 'fit': 2.0, 'where': 1.0, 'because': 1.0, 'does': 1.0, 'find': 1.0, 'return': 3.0, 'way': 3.0}
Word element => {'of': 1.0, 'purchase': 1.0, 'the': 2.0, 'in': 1.0, 'built': 1.0, 'included': 1.0, 'should': 1.0, 'purchse': 1.0, 'separate': 1.0, 'being': 1.0, 'it': 1.0, 'this': 1.0, 'with': 2.0, 'item': 1.0, 'right': 1.0, 'useful': 1.0, 'each': 1.0, 'is': 2.0, 'be': 1.0, 'bought': 1.0, 'very': 1.0, 'as': 3.0, 'must': 1.0, 'for': 2.0, 'one': 1.0, 'i': 1.0, 'on': 1.0, 'clips': 1.0, 'chair': 1.0, 'and': 1.0, 'do': 1.0, 'a': 2.0, 'drinks': 1.0, 'or': 1.0, 'snacks': 1.0, 'seat': 1.0, 'not': 2.0, '5': 1.0, 'stars': 1.0, 'agree': 1.0}
Word element => {'means': 1.0, 'clean': 1.0, 'sides': 1.0, 'can': 2.0, 'you': 1.0, 'change': 1.0, 'is': 1.0, 'nice': 1.0, 'which': 1.0, 'easily': 2.0, 'pops': 1.0, 'lost': 2.0, 'the': 2.0, 'at': 1.0, 'boy': 1.0, 'so': 2.0, 'toys': 1.0, 'did': 1.0, 'got': 1.0, 'loved': 1.0, 'cup': 3.0, 'my': 1.0, 'get': 1.0, 'and': 3.0, 'little': 1.0, 'when': 1.0, 'off': 1.0, 'checked': 1.0, 'or': 1.0, 'snacks': 1.0, 'put': 1.0, 'but': 2.0, 'also': 1.0, 'fight': 1.0, 'in': 1.0, 'this': 1.0, 'it': 6.0, 'we': 2.0, 'took': 1.0, 'our': 1.0, 'carseat': 1.0, 'gate': 1.0, 'on': 1.0, 'a': 1.0}
Word element => {'car': 1.0, 'latch': 1.0, 'fully': 1.0, 'could': 1.0, 'boulevard': 1.0, 'have': 1.0, 'it': 2.0, 'this': 1.0, 'i': 2.0, 'your': 1.0, 't': 1.0, 'the': 4.0, 'cup': 1.0, 'my': 1.0, 'of': 2.0, 'not': 1.0, 'seat': 2.0, 'money': 2.0, 'don': 1.0, 'get': 1.0, 'reach': 1.0, 'and': 2.0, 'daughter': 1.0, 'in': 1.0, 'cannot': 1.0, 'to': 3.0, 'on': 1.0, 'waste': 2.0, 'over': 1.0, 'side': 1.0, 'put': 1.0, 'her': 1.0}
Word element => {'crayons': 1.0, 'side': 1.0, 'other': 1.0, 'will': 1.0, 'put': 1.0, '50': 1.0, 'it': 3.0, 'this': 1.0, 'with': 1.0, 'snacks': 1.0, 'for': 2.0, 'fit': 1.0, 'car': 2.0, 'out': 3.0, 'roundabout': 2.0, 'stay': 1.0, 'not': 2.0, 'one': 1.0, 'huge': 1.0, 'just': 1.0, 'holder': 1.0, 'was': 1.0, 'help': 1.0, 'though': 1.0, 'in': 4.0, 'big': 1.0, '55': 1.0, 'us': 1.0, 'etc': 1.0, 'i': 2.0, 'deal': 1.0, 'the': 2.0, 'use': 1.0, 'but': 1.0, 'most': 1.0, 'holds': 1.0, 'our': 1.0, 'seat': 1.0, 'to': 2.0, 'cups': 2.0, 'all': 1.0, 'sippy': 1.0, 'cup': 1.0, 'bottles': 1.0, 'a': 2.0, 'we': 1.0, 'might': 1.0, 'so': 1.0, 'falling': 1.0, 'order': 1.0, 'far': 1.0, 'and': 1.0, 'even': 1.0, 'often': 1.0, 'another': 1.0}
Word element => {'pay': 1.0, 'didn': 1.0, 'glad': 1.0, 'options': 1.0, 'probably': 1.0, 'there': 2.0, 'must': 1.0, 'car': 1.0, 'placed': 1.0, 'will': 1.0, 'but': 2.0, 'work': 1.0, 'just': 2.0, 'seat': 1.0, 'out': 2.0, 'with': 1.0, 'are': 1.0, 'britax': 1.0, 'of': 3.0, 'i': 4.0, 'carseat': 1.0, 'this': 2.0, 'recent': 1.0, 'instructions': 1.0, 'older': 1.0, 'free': 1.0, 'then': 1.0, 'fits': 1.0, 'purchase': 1.0, 'my': 2.0, 'marathon': 1.0, 'fine': 1.0, 'he': 1.0, 'received': 1.0, 'old': 1.0, 'indicated': 1.0, 'new': 1.0, 'be': 1.0, 'for': 1.0, 'where': 1.0, 'when': 1.0, 'which': 1.0, '10': 1.0, 'puts': 1.0, 'the': 2.0, 'reach': 1.0, 'it': 4.0, 'useless': 1.0, 'month': 1.0, 'on': 1.0, 'think': 2.0, 'until': 1.0, 'better': 2.0, 't': 1.0, 'a': 1.0, 's': 2.0}
Word element => {'holder': 1.0, 'expensive': 1.0, 'so': 1.0, 'seat': 1.0, 'car': 1.0, 'daughter': 1.0, 'about': 1.0, 'second': 1.0, 'cup': 1.0, 'my': 1.0, 'with': 1.0, 'come': 1.0, 'this': 1.0, 'the': 1.0, 't': 2.0, 'two': 1.0, 'stay': 1.0, 'knock': 1.0, 'off': 1.0, 'put': 1.0, 'doesn': 2.0, 'a': 2.0, 'material': 1.0, 'can': 1.0, 'flimsy': 1.0, 'i': 1.0, 'am': 1.0, 'in': 1.0, 'seems': 1.0, 'disappointed': 1.0, 'that': 1.0}
Word element => {'again': 1.0, 'buy': 1.0, 'i': 1.0, 'plus': 1.0, 'real': 1.0, 'a': 1.0, 'it': 1.0, 'works': 1.0, 'to': 1.0, 'would': 1.0, 'hold': 1.0, 'with': 1.0, 'enough': 1.0, 'the': 2.0, 'seat': 2.0, 'car': 2.0, 'cups': 1.0, 'well': 1.0, 'large': 1.0, 'for': 1.0, 'most': 1.0}
Word element => {'big': 1.0, 'her': 1.0, 'like': 1.0, 'and': 1.0, 'tries': 1.0, 'it': 1.0, 'uses': 1.0, 'she': 1.0, 'its': 1.0, 'a': 1.0, 'must': 1.0, 'have': 1.0, 'even': 1.0, 'perfect': 1.0, 's': 1.0, 'sister': 1.0, 'for': 1.0, 'my': 1.0, 'granddaughter': 1.0, 'carseat': 1.0, 'be': 1.0, 'to': 1.0, 'younger': 1.0}
Word element => {'to': 1.0, 'people': 1.0, 'get': 1.0, 'advice': 1.0, 'i': 1.0, 'very': 1.0, 'because': 1.0, 's': 1.0, 'it': 3.0, 'works': 1.0, 'for': 1.0, 'with': 1.0, 'is': 1.0, 'son': 1.0, 'happy': 1.0, 'chair': 1.0, 'my': 1.0, 'good': 1.0, 'really': 1.0, 'he': 1.0}
Word element => {'another': 1.0, 'however': 1.0, 'that': 2.0, 'too': 1.0, 'sitting': 2.0, 'own': 1.0, 'never': 2.0, 'intended': 1.0, 'paying': 1.0, 'given': 1.0, 'd': 1.0, 'medications': 1.0, 'dehydration': 1.0, 'severe': 1.0, 'therefore': 1.0, 'admittance': 1.0, 'fine': 1.0, 'then': 1.0, 'surgery': 1.0, 'heart': 1.0, 'open': 1.0, 'second': 1.0, 'after': 1.0, 'hospital': 1.0, 'been': 2.0, 'just': 1.0, 'above': 1.0, 'wrote': 1.0, 'moreover': 1.0, 'purpose': 2.0, 'from': 2.0, 'mama': 1.0, 'discharged': 1.0, 'deprived': 1.0, 'am': 1.0, 'car': 3.0, 'holder': 4.0, 'cup': 5.0, 'right': 1.0, 'review': 3.0, 'product': 2.0, 'commented': 1.0, 'who': 1.0, 'passenger': 1.0, 'useful': 1.0, 'occurred': 1.0, 'folks': 1.0, 'very': 3.0, 'reply': 1.0, 'not': 8.0, 'ex': 1.0, 'stroller': 3.0, 'to': 13.0, 'all': 1.0, 'she': 2.0, 'baby': 3.0, 'offers': 1.0, 'remarks': 2.0, 'valco': 3.0, 'let': 1.0, 'gotten': 2.0, 'user': 1.0, 'while': 1.0, 'getting': 1.0, 'whilst': 1.0, 'carseat': 3.0, 'of': 3.0, 'attention': 1.0, 'the': 19.0, 'myself': 1.0, 'have': 1.0, 'for': 8.0, 'sleep': 1.0, 'back': 1.0, 'next': 1.0, 'always': 1.0, 'boulevard': 1.0, 'but': 4.0, 'mode': 1.0, 'her': 2.0, 'use': 4.0, 'made': 1.0, 'cupholder': 3.0, 'i': 15.0, 'well': 1.0, 'a': 7.0, 'going': 1.0, 't': 1.0, 'free': 1.0, 'rephrase': 1.0, 'attached': 1.0, 'would': 1.0, 've': 2.0, 'resulting': 1.0, 'purchased': 1.0, 'had': 3.0, 'daughter': 2.0, 'got': 2.0, 'tri': 1.0, 'can': 1.0, 'so': 3.0, 'time': 3.0, 'usually': 2.0, 'only': 2.0, 'works': 2.0, 'do': 3.0, 'much': 1.0, 'weak': 1.0, 'what': 1.0, 'when': 2.0, 'meant': 1.0, 'push': 1.0, 'you': 2.0, 'bottle': 1.0, 'this': 6.0, 'it': 14.0, '70': 1.0, 'useless': 1.0, 'with': 5.0, 'me': 6.0, 'my': 7.0, 'seat': 3.0, 'm': 2.0, 'in': 4.0, 'driving': 1.0, 'did': 2.0, 'keep': 1.0, 'since': 2.0, '2012': 1.0, 'hand': 1.0, 'pushed': 1.0, 'be': 1.0, 'drink': 1.0, 'granted': 1.0, 'was': 7.0, 's': 2.0, 'sense': 1.0, 'still': 1.0, 'stay': 1.0, 'if': 2.0, 'convertible': 1.0, 'subsequent': 1.0, 'round': 1.0, 'as': 3.0, 'universal': 1.0, 'anyone': 1.0, 'and': 3.0, 'better': 1.0, 'on': 3.0, 'update': 1.0, 'huge': 1.0, 'september': 1.0, 'don': 1.0, 'those': 1.0, 'negative': 2.0, 'comments': 1.0, 'name': 1.0, 'any': 1.0, 'feel': 1.0, 'sole': 1.0, 'or': 2.0, 'need': 1.0, 're': 2.0, 'especially': 1.0, 'is': 1.0, 'britax': 1.0, 'first': 1.0}
Word element => {'britax': 1.0, 'from': 1.0, 'something': 1.0, 'i': 1.0, 'posts': 1.0, 'in': 1.0, 'slots': 1.0, 'above': 1.0, 'adjustability': 1.0, 'your': 1.0, 'if': 1.0, 'accommodate': 1.0, 'to': 3.0, 'be': 1.0, 'able': 1.0, 'item': 1.0, 'directly': 1.0, 'point': 1.0, 'with': 1.0, 'this': 1.0, 'it': 1.0, 'price': 1.0, 'should': 1.0, 'more': 1.0, 'the': 4.0, 'for': 1.0, 'several': 1.0, 'not': 1.0, 'seat': 2.0, 'difficult': 1.0, 'different': 1.0, 'expected': 1.0, 'sized': 1.0, 'and': 1.0, 'quite': 1.0, 'sippy': 1.0, 'cups': 1.0, 'side': 1.0, 'is': 1.0, 'attach': 1.0, 'car': 1.0}
Word element => {'attached': 1.0, 'stay': 1.0, 'so': 1.0, 'and': 1.0, 'hung': 1.0, 'much': 1.0, 'be': 1.0, 'but': 1.0, 'trick': 1.0, 'the': 4.0, 'made': 1.0, 'does': 1.0, 'one': 2.0, 'would': 2.0, 'holder': 1.0, 'cup': 1.0, 'not': 1.0, 'because': 1.0, 'seat': 1.0, 'clip': 1.0, 'better': 1.0, 'if': 1.0, 'first': 1.0, 'this': 1.0, 'it': 2.0, 'off': 1.0, 'into': 1.0, 'we': 1.0, 'got': 1.0, 'purchase': 1.0, 'to': 1.0, 'was': 1.0, 'had': 1.0, 'broke': 1.0, 'another': 1.0}
Word element => {'work': 1.0, 'will': 1.0, 'you': 1.0, 'don': 1.0, 'they': 1.0, 'advocate': 3.0, 'is': 1.0, 'for': 3.0, 'daughter': 1.0, 'which': 2.0, 'son': 1.0, 'year': 1.0, '70': 1.0, 'tell': 1.0, 'we': 1.0, 'cs': 3.0, 'and': 2.0, 'that': 1.0, 'our': 2.0, 'bummer': 1.0, 'bought': 1.0, 'just': 1.0, 'have': 1.0, 'the': 3.0, 't': 2.0, 'fit': 1.0, 'a': 1.0, 'old': 1.0, 'this': 1.0, 'models': 1.0, 'only': 1.0, 'it': 1.0, 'won': 1.0}
Word element => {'off': 2.0, 'fell': 2.0, 'it': 6.0, 'first': 1.0, 'this': 4.0, 'with': 1.0, 'but': 2.0, 'i': 4.0, 'the': 3.0, 'sorry': 1.0, 'car': 2.0, 'm': 1.0, 'right': 1.0, 'seriously': 1.0, 'mean': 1.0, 'terrible': 2.0, 'that': 1.0, 'to': 1.0, 'seat': 2.0, 'cup': 2.0, 'touch': 1.0, 'holder': 2.0, 'time': 1.0, 'say': 1.0, 'is': 2.0, 'free': 1.0, 'away': 1.0, 'and': 1.0, 'baby': 1.0, 'don': 1.0, 'didn': 1.0, 'even': 2.0, 'a': 1.0, 't': 2.0, 's': 2.0, 'anymore': 1.0, 'how': 1.0, 'thing': 1.0, 'came': 1.0, 'my': 2.0, 'purchase': 1.0, 'of': 1.0, 'britax': 1.0, 'joke': 1.0, 'should': 1.0, 'think': 1.0, 'put': 1.0, 'on': 1.0, 'make': 1.0}
Word element => {'buy': 1.0, 'will': 1.0, 'and': 1.0, 'products': 1.0, 'strong': 1.0, 'makes': 1.0, 'britax': 1.0, 'seat': 1.0, 'nice': 1.0, 'car': 1.0, 'was': 1.0, 'more': 1.0, 'my': 1.0, 'this': 1.0, 'riding': 1.0, 'grandson': 1.0, 'to': 1.0, 'use': 1.0, 'while': 1.0, 'for': 1.0, 'in': 1.0, 'his': 1.0}
Word element => {'problems': 1.0, 'no': 1.0, 'had': 1.0, '15': 1.0, '10': 1.0, 'an': 1.0, 'also': 1.0, 'will': 1.0, 'doesn': 1.0, 'car': 3.0, 'first': 1.0, 'with': 3.0, 'it': 5.0, 'only': 1.0, 'in': 1.0, 'safety': 1.0, 'into': 1.0, 'that': 4.0, 'seat': 3.0, 'cups': 1.0, 'our': 1.0, 'as': 1.0, 'to': 2.0, 'comes': 1.0, 'is': 4.0, 'place': 1.0, 'the': 6.0, 't': 1.0, 'like': 2.0, 'hold': 1.0, 'too': 1.0, 'tall': 1.0, 'glad': 1.0, 'holder': 2.0, 'cup': 3.0, 'snapping': 1.0, 'than': 1.0, 'negative': 1.0, 'stated': 1.0, 'i': 3.0, 'one': 2.0, 'shallow': 1.0, 'not': 1.0, 'stay': 1.0, 'those': 1.0, 'other': 2.0, 'sippy': 1.0, 'reviewers': 1.0, 'deeper': 1.0, 'britax': 1.0, 'come': 1.0, 'however': 1.0, 'since': 1.0, 'for': 1.0, 'actually': 1.0, 'this': 1.0, 'functional': 1.0, 'extra': 1.0, 'unlike': 1.0, 'll': 1.0, 'pay': 1.0}
Word element => {'almost': 1.0, 'holder': 1.0, 'cup': 1.0, 'place': 1.0, 'child': 1.0, 'out': 1.0, 'requires': 1.0, 'carseat': 1.0, 'mount': 1.0, 'hold': 1.0, 'not': 1.0, 'size': 1.0, 'reach': 1.0, 'and': 1.0, 'most': 1.0, 'sturdy': 1.0, 'britax': 1.0, 'of': 2.0, 'to': 3.0, 'be': 1.0, 'product': 1.0, 'seems': 1.0, 'for': 1.0, 'fond': 1.0, 'it': 1.0, 'only': 1.0, 'this': 1.0, 'thing': 1.0, 'have': 2.0, 'the': 4.0, 'i': 2.0, 'cups': 1.0, 'where': 1.0, 'm': 1.0, 'is': 1.0, 'you': 2.0}
Word element => {'bind': 1.0, 'in': 1.0, 'are': 1.0, 'you': 1.0, 'gold': 1.0, 'when': 1.0, 'cups': 1.0, 'convertible': 1.0, 'britax': 1.0, 'for': 1.0, 'on': 1.0, 'is': 1.0, 'great': 1.0, 'the': 1.0, 'a': 2.0, 'car': 1.0, 'it': 1.0, 'this': 1.0, 'seat': 1.0, 'fish': 1.0, 'attach': 1.0, 'to': 1.0, 'was': 1.0, 'add': 1.0, 'easy': 1.0, 'fits': 1.0, 'all': 1.0, 'and': 2.0, 'different': 1.0, 'size': 1.0, 'sippy': 1.0}
Word element => {'great': 1.0, 'works': 1.0}
Word element => {'is': 1.0, 'so': 1.0, 'anyone': 1.0, 'or': 1.0, 'good': 1.0, 'would': 1.0, 'holder': 1.0, 'not': 1.0, 'seat': 2.0, 'toys': 1.0, 'the': 1.0, 'to': 3.0, 'attaches': 1.0, 'be': 1.0, 'soother': 1.0, 'recommend': 1.0, 'store': 1.0, 'misplaced': 1.0, 'easily': 1.0, 'a': 2.0, 'britax': 1.0, 'as': 1.0, 'it': 1.0, 'with': 1.0, 'this': 1.0, 'other': 1.0, 'size': 1.0, 'can': 1.0, 'used': 1.0, 'little': 1.0}
Word element => {'broke': 1.0, 'ordered': 1.0, 'i': 1.0, 'why': 1.0, 'reason': 1.0, 'in': 1.0, 'which': 1.0, 'arrived': 1.0, 'was': 1.0, 'missing': 1.0, 'clip': 1.0, 'the': 4.0, 'that': 1.0, 'very': 2.0, 'seat': 1.0, 'important': 1.0, 'ours': 1.0, 'it': 2.0, 'place': 1.0, 'first': 1.0, 'attaches': 1.0, 'to': 1.0, 'car': 1.0}
Word element => {'fast': 1.0, 'time': 1.0, 'my': 1.0, 'baby': 1.0, 'price': 1.0, 'little': 1.0, 'a': 2.0, 'and': 2.0, 'service': 1.0, 'taller': 1.0, 'grand': 1.0, 'would': 1.0, 'all': 1.0, 'able': 1.0, 'the': 1.0, 'great': 2.0, 'i': 1.0, 'child': 1.0, 'for': 1.0, 'like': 1.0, 'access': 1.0, 'easy': 1.0, 'was': 1.0, 'to': 1.0, 'higher': 1.0, 'uses': 1.0, 'on': 1.0, 'side': 1.0, 'set': 1.0, 'of': 1.0, 'seat': 1.0, 'valuethanks': 1.0, 'it': 2.0, 'this': 1.0}
Word element => {'worth': 1.0, 'was': 1.0, 'think': 1.0, 'very': 1.0, 'and': 1.0, 'handy': 1.0, 'perfect': 1.0, 's': 1.0, 'i': 2.0, 'money': 1.0, 'it': 2.0, 'bought': 2.0, 'go': 1.0, 'this': 1.0, 'car': 1.0, 'to': 1.0, 'with': 1.0, 'we': 1.0, 'the': 2.0, 'seat': 1.0}
Word element => {'need': 1.0, 'when': 1.0, 'there': 1.0, 'are': 1.0, 'don': 1.0, 'they': 3.0, 'inside': 1.0, 'their': 1.0, 'know': 1.0, 'having': 1.0, 'free': 1.0, 'crying': 1.0, 'off': 1.0, 'them': 4.0, 'what': 1.0, 'no': 1.0, 'and': 2.0, 'seats': 1.0, 'car': 1.0, 'other': 1.0, 'right': 1.0, 'screw': 1.0, 'that': 1.0, 'clamp': 1.0, 'cupholders': 1.0, 'foods': 1.0, 'little': 1.0, '70': 1.0, 'sides': 1.0, 'clips': 2.0, 'once': 1.0, 'of': 3.0, 'not': 1.0, 'deal': 1.0, 'the': 7.0, 'great': 1.0, 'matter': 1.0, 'part': 1.0, 'his': 2.0, 'kids': 2.0, 'this': 1.0, 'knock': 1.0, 'with': 1.0, 'he': 1.0, 'sure': 1.0, 'trash': 1.0, 'is': 3.0, 'cupholder': 2.0, 'i': 2.0, 'want': 1.0, 'if': 2.0, 'keep': 2.0, 'whining': 1.0, 'worth': 1.0, 'or': 5.0, 'for': 2.0, 'snacks': 1.0, 'good': 1.0, 'bought': 2.0, 'came': 1.0, 'unit': 1.0, 'securely': 2.0, 'aftermarket': 1.0, 'as': 2.0, 'seat': 1.0, 'to': 2.0, 'so': 2.0, 'kid': 1.0, 'but': 1.0, '2': 1.0, 'can': 1.0, 'rip': 1.0, 'boulevard': 1.0, 'drinks': 2.0, 'go': 1.0, 't': 1.0, 'a': 2.0, 'we': 1.0, 'onto': 1.0, 'm': 1.0, 'whatever': 1.0, 'it': 8.0, 'she': 1.0, 'cars': 1.0, 'wants': 1.0, 'in': 1.0, 'have': 1.0}
Word element => {'one': 1.0, 'board': 1.0, 'this': 1.0, 'with': 1.0, 'it': 2.0, 'a': 3.0, 'twists': 1.0, 'don': 1.0, 'want': 1.0, 'drawing': 1.0, 'go': 1.0, 'britax': 1.0, 'constantly': 1.0, 'very': 1.0, 'falls': 1.0, 'or': 1.0, 'off': 1.0, 'cup': 2.0, 'holder': 2.0, 'barely': 1.0, 'to': 3.0, 'way': 1.0, 'you': 1.0, 't': 1.0, 'not': 1.0, 'reliable': 1.0, 'needs': 1.0, 'back': 1.0}
Word element => {'far': 1.0, 'so': 1.0, 'happy': 1.0, 'seen': 1.0, 'have': 1.0, 'from': 1.0, 'it': 1.0, 'is': 3.0, 'what': 1.0, 'that': 1.0, 'holder': 1.0, 'cup': 1.0, 'a': 1.0, 'removed': 1.0, 'easily': 1.0, 'i': 1.0, 'or': 1.0, 'stable': 1.0, 'attached': 1.0, 'very': 1.0, 'and': 1.0}
Word element => {'note': 1.0, 'just': 1.0, 'isn': 1.0, 'door': 1.0, 'close': 1.0, 'car': 1.0, 'of': 1.0, 'side': 1.0, 'bigger': 1.0, 'gets': 1.0, 'issue': 1.0, 'should': 1.0, 'no': 1.0, 'in': 1.0, 'something': 1.0, 'drop': 1.0, 'which': 1.0, 'hold': 1.0, 'out': 1.0, 'reaching': 1.0, 'fit': 1.0, 'for': 1.0, 'enough': 1.0, 'off': 2.0, 'seat': 1.0, 'as': 1.0, 'to': 6.0, 'doesn': 1.0, 'was': 1.0, 'and': 2.0, 'do': 1.0, 'getting': 1.0, 'cleaning': 1.0, 'cup': 2.0, 'my': 3.0, 'problem': 1.0, 'closer': 1.0, 'easily': 2.0, 'spare': 1.0, 'huge': 1.0, 'insulated': 1.0, 'room': 1.0, 'with': 1.0, 'she': 1.0, 'it': 5.0, 'child': 1.0, 'placement': 1.0, 'hard': 1.0, 'strong': 1.0, 'on': 2.0, 'holds': 1.0, 'comes': 1.0, 'thermos': 1.0, 'back': 2.0, 'get': 1.0, 'easy': 1.0, 'install': 1.0, 'further': 1.0, 'take': 1.0, 'marathon': 1.0, 'daughters': 1.0, 'britax': 1.0, 'her': 3.0, 'not': 1.0, 'that': 1.0, 'deal': 1.0, 'the': 3.0, 'year': 2.0, 'non': 1.0, 'old': 2.0, 'become': 1.0, 'i': 1.0, 'but': 2.0, '2': 2.0, 'can': 2.0, 'this': 1.0, 'wish': 1.0, 'has': 1.0, 'so': 1.0, 'time': 1.0, 't': 2.0, 's': 1.0, 'a': 4.0}
Word element => {'3': 1.0, 'least': 1.0, 'need': 1.0, 'probably': 1.0, 'inserts': 1.0, 'you': 3.0, 'if': 1.0, 'absorbent': 1.0, 'to': 2.0, 'insert': 1.0, 'have': 2.0, 'on': 1.0, 'wetter': 1.0, 'this': 1.0, 'it': 2.0, 'bed': 1.0, 'one': 1.0, 'using': 1.0, 'for': 2.0, 'often': 1.0, 'not': 1.0, 'is': 2.0, 'plan': 1.0, 'a': 2.0, 'night': 2.0, 'i': 1.0, 'takes': 1.0, 'long': 1.0, 'next': 1.0, 'time': 2.0, 'dry': 1.0, 'at': 1.0, 'meaning': 1.0, 'these': 1.0, 'heavy': 1.0, 'the': 1.0, 'ensure': 1.0, 'will': 1.0, 'but': 1.0, 'ready': 2.0}
Word element => {'environment': 1.0, 'with': 1.0, 'engage': 1.0, 'facing': 1.0, 'home': 1.0, 'comforted': 1.0, 'early': 1.0, 'fact': 1.0, 'the': 4.0, 'outward': 1.0, 'is': 2.0, 'really': 1.0, 'facilitate': 1.0, 'nice': 1.0, 's': 1.0, 'that': 1.0, 'what': 1.0, 'even': 1.0, 'both': 1.0, 'by': 1.0, 'or': 1.0, 'can': 3.0, 'she': 1.0, 'it': 1.0, 'this': 1.0, 'parent': 1.0, 'he': 1.0, 'visually': 1.0, 'baby': 1.0, 'heartbeat': 1.0, 'helps': 1.0, 'running': 1.0, 'use': 1.0, 'at': 1.0, 'told': 1.0, 'on': 2.0, 'your': 2.0, 'and': 2.0, 'mentally': 1.0, 'smell': 1.0, 'i': 1.0, 'you': 3.0, 'when': 1.0, 'am': 1.0, 'errands': 1.0, 'child': 2.0, 'bond': 1.0, 'for': 1.0, 'sides': 1.0, 'later': 1.0, 'face': 1.0}
Word element => {'is': 1.0, 'right': 1.0, 'to': 1.0, 'describe': 1.0, 'words': 1.0, 'stupid': 1.0, '18': 1.0, 'i': 2.0, 'about': 1.0, 'as': 1.0, 'purchase': 2.0, 'down': 1.0, 'using': 1.0, 'a': 1.0, 'bought': 1.0, 'gift': 1.0, 'this': 3.0, 'have': 1.0, 'nothing': 1.0, 'negative': 1.0}
Word element => {'poor': 1.0, 'the': 1.0, 'quality': 1.0, 'work': 1.0, 'priced': 1.0, 'navigates': 1.0, 'and': 3.0, 'horrible': 1.0, 'is': 2.0, 'sunshade': 1.0, 'terribly': 1.0, 'doesnt': 2.0, 'terrible': 1.0, 'too': 1.0, 'bars': 1.0, 'are': 1.0, 'short': 1.0, 'recline': 1.0, 'maclaren': 1.0, 'handle': 1.0, 'for': 1.0, 'over': 2.0, 'so': 1.0, 'rated': 1.0, 'fully': 1.0, 'certainly': 1.0}
Word element => {'are': 1.0, 'for': 1.0, 'recommend': 1.0, 'train': 1.0, 'and': 1.0, 'this': 2.0, 'others': 1.0, 'is': 1.0, 'product': 1.0, 'to': 3.0, 'better': 1.0, 'potty': 1.0, 'i': 2.0, 'use': 1.0, 'even': 1.0, 'easy': 2.0, 'than': 1.0, 'thought': 1.0, 'trying': 1.0, 'who': 1.0, 'install': 1.0}
Word element => {'stool': 1.0, 'none': 1.0, 'step': 1.0, 'tried': 1.0, 'i': 1.0, 'but': 1.0, 'training': 2.0, 'use': 2.0, 'instead': 1.0, 'then': 1.0, 'a': 4.0, 'we': 1.0, 'kids': 1.0, 'doing': 1.0, 'this': 2.0, 'with': 2.0, 'train': 1.0, 'it': 1.0, 'of': 2.0, 'really': 1.0, 'amazing': 1.0, 'friends': 1.0, 'potty': 2.0, 'the': 3.0, 'my': 2.0, 'daughter': 1.0, 'stools': 1.0, 'them': 2.0, 'were': 1.0, 'and': 3.0, 'tall': 1.0, 'enough': 1.0, 'is': 1.0, 'around': 1.0, 'for': 1.0, 'toliet': 3.0, 'teaches': 1.0, 'all': 1.0, 'seat': 3.0, 'our': 1.0, 'to': 3.0, 'just': 1.0, 'life': 1.0, 'turn': 1.0, 'helped': 1.0, 'saver': 1.0, 'having': 1.0, 'on': 1.0, 'was': 1.0, 'recommend': 1.0}
Word element => {'use': 1.0, 'never': 1.0, 'would': 1.0, 'girls': 1.0, 'my': 1.0, 'chair': 1.0, 'almost': 1.0, 'does': 1.0, 'it': 3.0, 'this': 1.0, 'unsteady': 1.0, 'fit': 1.0, 'of': 1.0, 'ladder': 1.0, 'is': 1.0, 'on': 1.0, 'concept': 1.0, 'potty': 1.0, 'underneath': 1.0, 'great': 1.0, 'the': 4.0, 'extremely': 1.0, 'while': 1.0, 'seat': 1.0, 'not': 1.0, 'was': 2.0, 'properly': 1.0, 'toilet': 2.0, 'and': 1.0}
Word element => {'looks': 1.0, 'idea': 1.0, 'just': 1.0, 'moving': 1.0, 'good': 1.0, 'keeps': 1.0, 'it': 1.0, 'this': 1.0, 'is': 1.0, 'for': 1.0, 'unstable': 1.0, 'small': 1.0, 'my': 1.0, 'months': 1.0, '22': 1.0, 'too': 1.0, 'girl': 1.0, 'and': 1.0, 'very': 1.0}
Word element => {'happy': 1.0, 'otherwise': 1.0, 'snapping': 1.0, 'on': 1.0, 'keep': 1.0, 'though': 1.0, 'well': 1.0, 'least': 1.0, 'at': 1.0, 'be': 1.0, 'to': 3.0, 'very': 3.0, 'lock': 1.0, 'roads': 1.0, 'down': 1.0, 'country': 1.0, 'and': 2.0, 'impressed': 1.0, 't': 1.0, 'the': 4.0, 'back': 1.0, 'doesn': 1.0, 'stroller': 1.0, 'we': 3.0, 'through': 1.0, 'system': 1.0, 'seem': 1.0, 'city': 1.0, 'taken': 1.0, 'it': 2.0, 'with': 1.0, 'really': 1.0, 'is': 1.0, 'sunshade': 1.0, 'have': 2.0, 'restraint': 1.0, 'how': 1.0, 'love': 1.0, 'comfortable': 1.0, 'in': 2.0, 'seems': 1.0}
Word element => {'features': 1.0, 'this': 2.0, 'strollers': 1.0, 'much': 2.0, 'townhouse': 1.0, 'out': 1.0, 'stairs': 1.0, 'etc': 1.0, 'car': 1.0, 'cover': 1.0, 'rain': 1.0, 'holder': 1.0, 'kit': 1.0, 'doubles': 1.0, 'need': 1.0, 'pieces': 1.0, 'almost': 1.0, 'prohibitive': 1.0, 'pushing': 1.0, 'brake': 1.0, 'metal': 1.0, 'accidentally': 1.0, '5': 1.0, '1': 1.0, 'pulling': 1.0, '6': 2.0, 'husband': 1.0, 'w': 1.0, 'totally': 1.0, 'arm': 1.0, 'hold': 1.0, 'collapsed': 1.0, 'one': 3.0, 'hand': 1.0, 'something': 1.0, 'usedsummary': 1.0, 'bus': 1.0, 'requires': 1.0, 'that': 2.0, 'while': 1.0, 'public': 1.0, 'on': 2.0, 'impossible': 2.0, 'practically': 1.0, 'break': 1.0, 'handed': 1.0, 'nice': 1.0, 'two': 1.0, 'step': 1.0, 'eyes': 1.0, 'her': 1.0, 'were': 1.0, 'still': 1.0, 'if': 1.0, 'escalator': 1.0, 'i': 5.0, 'several': 1.0, 've': 1.0, 'down': 4.0, 'go': 1.0, 'a': 7.0, 'could': 1.0, 'up': 4.0, 'price': 1.0, 'child': 3.0, 'has': 1.0, 'always': 1.0, 'can': 1.0, 'p': 2.0, 'multi': 1.0, 'but': 2.0, 'complicated': 1.0, 'ramps': 1.0, 'simply': 2.0, 'time': 1.0, 'make': 1.0, 'my': 10.0, 'opinion': 1.0, 'for': 4.0, 'cheap': 2.0, 't': 4.0, 'fit': 1.0, 'enabling': 1.0, 'awkward': 1.0, 'dwellers': 1.0, 'also': 1.0, 'both': 1.0, 'sunshade': 1.0, 'seat': 1.0, 'in': 4.0, 'transportation': 1.0, 'dishwasher': 1.0, 'than': 2.0, 'reach': 1.0, 'about': 1.0, 'frequently': 1.0, 'handbag': 1.0, 'and': 14.0, 'won': 1.0, 'curb': 1.0, 'necessary': 1.0, 'the': 14.0, 'of': 3.0, 'worse': 1.0, 'urban': 3.0, 'used': 1.0, 'inconvenient': 2.0, 'whole': 1.0, 'excessive': 1.0, 'sidewalk': 1.0, 'you': 5.0, 'things': 1.0, 'we': 1.0, 'take': 2.0, 'makes': 2.0, 'adapter': 1.0, 'old': 4.0, 'fold': 1.0, 'solid': 1.0, 'bits': 1.0, 'sun': 1.0, 'unsnapped': 1.0, 'dangerous': 1.0, 'bit': 1.0, 'disappointing': 1.0, 'option': 1.0, 'non': 1.0, 'three': 1.0, 'squeezed': 1.0, 'completely': 1.0, 'single': 1.0, 'very': 1.0, 'collapse': 1.0, 'wheel': 1.0, 'better': 1.0, '800': 1.0, 'pack': 1.0, 'front': 1.0, 'made': 1.0, 'which': 4.0, 'shut': 1.0, 'lack': 2.0, 'with': 3.0, 'snack': 2.0, 'tray': 3.0, 'kick': 1.0, 'had': 3.0, 'spills': 1.0, 'purchased': 1.0, 'bar': 2.0, 'shade': 1.0, 'it': 5.0, 'thought': 1.0, 'other': 2.0, 'an': 1.0, 'all': 2.0, 'clicked': 2.0, 'to': 5.0, 'cup': 3.0, 'holders': 2.0, 'your': 2.0, 'fanny': 1.0, 'using': 1.0, 'looking': 1.0, 'close': 1.0, 'is': 5.0, 'handle': 2.0, 'stroller': 13.0, 'coffee': 1.0, 'off': 1.0, 'until': 1.0, 'began': 1.0, 'be': 1.0, 'jumps': 1.0, 'snapped': 1.0, 'daily': 1.0, 'open': 1.0, 'pull': 1.0}
Word element => {'comfortable': 1.0, 'fully': 1.0, 'move': 1.0, 'down': 1.0, 'having': 1.0, 'opposed': 1.0, 'least': 1.0, '150': 1.0, '100': 1.0, 'extra': 1.0, 'an': 1.0, 'spent': 1.0, 'wish': 1.0, 'end': 4.0, 'spend': 1.0, 'seats': 2.0, 'just': 1.0, 'while': 1.0, 'cups': 1.0, 'protection': 1.0, 'had': 3.0, 'double': 1.0, 'remove': 1.0, 'without': 1.0, 'store': 2.0, 'because': 2.0, 'that': 5.0, 'retractable': 1.0, 'extras': 1.0, 'money': 1.0, 'bought': 1.0, 'we': 4.0, 'upright': 1.0, 'degrees': 1.0, '5': 1.0, 's': 1.0, 'before': 1.0, 'much': 1.0, 'if': 1.0, 'reclining': 1.0, 'so': 5.0, 'can': 7.0, 'constantly': 1.0, 'protect': 1.0, 'more': 5.0, 'handlebars': 1.0, 'using': 1.0, 'bag': 2.0, 'your': 1.0, 'tray': 1.0, 'strapping': 1.0, 'standard': 1.0, 'think': 3.0, 'get': 2.0, 'really': 1.0, 'either': 1.0, 'would': 4.0, 'even': 2.0, 'fold': 2.0, 'models': 3.0, 'far': 1.0, 'not': 1.0, 'cushy': 1.0, 'higher': 3.0, 'harder': 1.0, 'weight': 2.0, 'what': 1.0, 'when': 7.0, '50': 1.0, 'and': 9.0, 'kids': 2.0, 'this': 1.0, 'vibe': 2.0, 'hoods': 2.0, 'on': 2.0, 'near': 1.0, 'great': 1.0, 'to': 15.0, 'were': 4.0, 'comes': 1.0, 'these': 1.0, 'once': 2.0, 'was': 5.0, 'their': 1.0, 'younger': 2.0, 'i': 2.0, 'coming': 1.0, 'have': 5.0, 'flat': 2.0, '14lbs': 1.0, 'my': 2.0, 'right': 1.0, 'true': 1.0, 'maneuver': 1.0, 'pad': 1.0, 'control': 1.0, 'as': 1.0, 'annoying': 1.0, 'bags': 1.0, 'diaper': 1.0, 'heavy': 1.0, 'of': 4.0, 'the': 42.0, 'than': 2.0, 'reach': 2.0, 'conveniences': 1.0, 'invading': 1.0, 'asleep': 1.0, 'hard': 2.0, 'from': 1.0, 'recline': 2.0, 'hits': 1.0, 'it': 5.0, 'carriage': 1.0, '33': 1.0, 'positions': 1.0, 'about': 3.0, 'useless': 2.0, 'older': 1.0, 'limit': 2.0, 'attached': 2.0, 'strolls': 1.0, '35': 1.0, 'rear': 2.0, 'too': 1.0, 'ones': 1.0, 'one': 3.0, 'little': 2.0, 'food': 1.0, 'or': 2.0, 'at': 1.0, 'is': 14.0, '26lb': 1.0, 'completely': 1.0, 'seat': 3.0, 'in': 14.0, 'but': 2.0, 'shift': 1.0, 'our': 3.0, 'stroller': 5.0, 'back': 5.0, 'a': 5.0, 't': 3.0, 'jogger': 1.0, 'front': 6.0, 'snack': 1.0, 'with': 4.0, 'hand': 1.0, 'are': 2.0, 'cover': 1.0, 'helpful': 1.0, '23lbs': 1.0, 'set': 1.0, 'sun': 4.0, 'otherwise': 1.0, 'sleeping': 1.0, 'they': 4.0, 'don': 3.0, 'different': 1.0, 'under': 2.0, 'sibling': 1.0, 'basket': 4.0, 'child': 4.0, 'toddler': 3.0, 'space': 1.0, 'forget': 1.0, 'getting': 1.0, 'you': 10.0, 'things': 2.0, 'out': 2.0, 'needed': 1.0, 'newborn': 2.0, 'hang': 1.0, 'there': 2.0, 'disturb': 1.0, 'baby': 3.0, 'both': 1.0, 'functional': 1.0, 'kicking': 1.0, 'who': 1.0, 'want': 1.0, 'second': 3.0, 'also': 5.0, 'panier': 1.0, 'bit': 2.0, 'position': 3.0, 'clipped': 1.0, 'quickly': 1.0, 'only': 5.0, 'usually': 1.0}
Word element => {'durability': 1.0, 'age': 1.0, 'years': 1.0, 'that': 1.0, 'own': 1.0, 'up': 1.0, 'pleased': 1.0, 'am': 1.0, 'juice': 1.0, 'snacks': 1.0, 'quality': 1.0, 'their': 1.0, 'when': 1.0, 'wipe': 1.0, 'traveling': 1.0, 'direction': 1.0, 'any': 1.0, 'hood': 1.0, 'design': 1.0, 'sun': 2.0, 'follow': 1.0, 'new': 1.0, 'classic': 1.0, 's': 2.0, 'clip': 1.0, 'simple': 1.0, 'adaptors': 1.0, 'covers': 1.0, 'has': 1.0, 'fantastic': 1.0, 'great': 2.0, 'teds': 2.0, 'phil': 2.0, 'flat': 1.0, 'material': 1.0, 'reclining': 1.0, 'baby': 2.0, 'newborn': 2.0, 'us': 1.0, 'hopping': 1.0, 'enough': 1.0, 'from': 1.0, 'ducks': 1.0, 'fold': 1.0, 'active': 1.0, 'while': 1.0, 'as': 4.0, 'lie': 1.0, 'to': 17.0, 'use': 2.0, 'her': 1.0, 'different': 2.0, 'stay': 1.0, 'me': 1.0, 'my': 4.0, 'maneuver': 1.0, 'on': 4.0, 'exercise': 1.0, 'put': 1.0, 'make': 1.0, 'enjoyed': 1.0, 'out': 4.0, 'accommodate': 1.0, 'taking': 1.0, 'seat': 6.0, 'in': 6.0, 'upright': 1.0, 'air': 1.0, 'adventures': 1.0, 'highly': 1.0, 'this': 5.0, 'spill': 1.0, 'kids': 3.0, 'feed': 1.0, 'is': 5.0, 'way': 1.0, 'assemble': 1.0, 'for': 9.0, 'found': 1.0, 'easy': 5.0, 'product': 1.0, 'child': 3.0, 'toddler': 2.0, 'our': 3.0, 'stroller': 10.0, 'very': 1.0, 'store': 1.0, 'take': 1.0, 'we': 3.0, 'could': 2.0, 'a': 9.0, 'cost': 1.0, 't': 1.0, 'napping': 1.0, 'trunk': 1.0, 'protection': 1.0, 'start': 1.0, 'buy': 1.0, 'hand': 1.0, 'can': 1.0, 'so': 3.0, 'ride': 2.0, 'children': 3.0, 'adjusts': 1.0, 'it': 5.0, 'excited': 1.0, 'recommend': 1.0, 'together': 1.0, 'were': 2.0, 'little': 1.0, 'walks': 1.0, 'two': 3.0, 'i': 4.0, 'quickly': 1.0, 'anyone': 1.0, 'and': 8.0, 'looking': 1.0, 'using': 2.0, 'light': 1.0, 'by': 2.0, 'the': 20.0, 'of': 7.0, 'clean': 1.0, 'car': 3.0, 'convenient': 1.0, 'effort': 1.0, 'be': 1.0, 'perfect': 1.0, 'walking': 1.0, 'or': 2.0, 'grocery': 1.0, 'sidewalk': 1.0, 'didn': 1.0, 'provide': 1.0, 'have': 1.0, 'bulk': 1.0, 'which': 1.0, 'side': 2.0, 'rear': 1.0, 'one': 1.0, 'was': 4.0, 'filled': 1.0, 'tires': 1.0, 'navigate': 1.0, 'riding': 2.0, 'three': 1.0, 'with': 2.0, 'smooth': 1.0, 'house': 1.0, 'both': 2.0, 'immediately': 1.0, 'terrains': 1.0, 'second': 1.0, 'awesome': 1.0, 'six': 1.0, 'positions': 1.0, 'allowed': 1.0}
Word element => {'recommend': 1.0, 'diaper': 1.0, 'would': 2.0, 'if': 1.0, 'did': 2.0, 'see': 1.0, 'look': 1.0, 'was': 2.0, 'to': 2.0, 'got': 1.0, 'it': 6.0, 'i': 3.0, 'my': 1.0, 'baby': 2.0, '1': 1.0, 'and': 2.0, 'like': 2.0, 'not': 3.0, 'difficult': 1.0, 'work': 1.0, 'put': 1.0, 'on': 1.0, 'for': 1.0, 'comfortable': 1.0}
Word element => {'and': 1.0, 'nice': 1.0, 'with': 1.0, 'toy': 1.0, 'to': 1.0, 'play': 2.0, 'chunky': 1.0, 'fun': 1.0, 'rated': 1.0, 'stars': 1.0, 'because': 1.0, '4': 1.0, 'i': 1.0, 'shapes': 1.0, 'it': 1.0, 'wish': 1.0, 'had': 1.0, 'of': 1.0, 'more': 1.0, 'the': 1.0}
Word element => {'nice': 1.0, 'out': 1.0, 'go': 1.0, 'we': 1.0, 'time': 1.0, 'all': 1.0, 'comments': 1.0, 'pricey': 1.0, 'up': 1.0, 'worth': 1.0, 'still': 1.0, 'totseat': 1.0, 'how': 1.0, 'being': 1.0, 'lil': 1.0, 'when': 1.0, 'by': 1.0, 'is': 2.0, 'versatile': 1.0, 'my': 1.0, 'the': 2.0, 'more': 1.0, 'but': 1.0, 'track': 1.0, 'practical': 1.0, 'own': 1.0, 'get': 1.0, 'and': 3.0, 'far': 1.0, 'though': 1.0, 'i': 2.0, 'this': 2.0, 'hard': 1.0, 'it': 4.0, 'had': 1.0, 'was': 2.0, 'to': 1.0, 'very': 1.0, 'shipping': 1.0, 'about': 1.0, 'ended': 1.0}
Word element => {'whew': 1.0, 'out': 1.0, 'getting': 1.0, 'button': 1.0, 'the': 1.0, 'playing': 1.0, 'no': 1.0, 'proudly': 1.0, 'seatbelt': 2.0, '34': 2.0, 'his': 2.0, 'wears': 1.0, 'car': 1.0, 'my': 1.0, 'me': 1.0, 'too': 1.0, 'and': 1.0, 'i': 1.0, 'he': 2.0, 'interest': 1.0, 'boy': 1.0, 'so': 1.0, 'bit': 1.0, 'peace': 1.0, 'before': 1.0, 'for': 3.0, 'drive': 1.0, 'this': 2.0, 'provided': 1.0, 'with': 1.0, 'mind': 1.0, 'system': 1.0, 'has': 2.0, 'of': 1.0, 'a': 3.0, 'we': 2.0, 'son': 1.0, 'cars': 1.0, 'simple': 1.0, 'wanted': 1.0, 'had': 1.0, 'magic': 1.0, 'now': 1.0, 'something': 1.0, 'as': 1.0, 'seat': 1.0, 'to': 2.0, 'our': 1.0, 'is': 2.0, 'around': 1.0, 'more': 1.0, 'big': 2.0, 'install': 1.0, 'town': 1.0, 'much': 1.0, 'try': 1.0, 'harness': 1.0, 'him': 1.0, 'in': 2.0, 'little': 1.0, 'tool': 1.0, 'like': 1.0}
Word element => {'with': 2.0, '5': 1.0, 'of': 1.0, 'instead': 1.0, 'lost': 1.0, 'buckles': 1.0, 'or': 1.0, 'forgotten': 1.0, 'have': 2.0, 'his': 2.0, 'car': 4.0, 'one': 3.0, 'several': 1.0, 'hard': 1.0, 'from': 2.0, 'but': 1.0, 'can': 1.0, 'is': 2.0, 'buckle': 1.0, 'undoing': 1.0, 'up': 1.0, 'child': 1.0, 'needs': 1.0, 'in': 2.0, 'special': 1.0, 'important': 1.0, 'been': 1.0, 'that': 1.0, 'because': 1.0, 'does': 1.0, 'do': 1.0, 'works': 1.0, 'regard': 1.0, 'stop': 1.0, 'simple': 1.0, 'seatbelt': 1.0, 'highway': 1.0, 'it': 5.0, 'refasten': 1.0, 'high': 1.0, 'place': 1.0, 'the': 7.0, 'some': 1.0, 'such': 1.0, 'prevent': 1.0, '4': 1.0, 'i': 4.0, 'babysitter': 1.0, 'dad': 1.0, 'which': 1.0, 'device': 1.0, 'when': 1.0, 'am': 1.0, 'on': 1.0, 'moved': 1.0, 'and': 2.0, 'as': 1.0, 'seat': 1.0, 'to': 4.0, 'belt': 1.0, 'was': 1.0, 'thought': 1.0, 'had': 1.0, 'scored': 1.0, 'him': 1.0, 'would': 1.0, 'guard': 2.0, 'cost': 1.0, 'could': 1.0, 'we': 1.0, 's': 1.0, 't': 1.0, 'a': 2.0, 'very': 1.0, 'little': 1.0, 'for': 4.0, 'my': 2.0, 'purchase': 1.0}
Word element => {'both': 1.0, 'varying': 1.0, 'work': 1.0, 'may': 1.0, 'compatible': 1.0, 'you': 2.0, 'if': 1.0, 'inserts': 1.0, 'rounded': 1.0, 'were': 1.0, 'together': 1.0, 'snap': 1.0, 'that': 1.0, 'belts': 1.0, 'buckle': 1.0, 'inside': 1.0, 'bottom': 2.0, 'two': 1.0, 'i': 2.0, 'the': 9.0, 'his': 1.0, 'out': 1.0, 'from': 1.0, 'offer': 1.0, 'toddler': 1.0, 'sizes': 1.0, 'size': 1.0, 'their': 1.0, 'advance': 1.0, 'autistic': 1.0, 'not': 3.0, 'of': 3.0, 'getting': 1.0, 'did': 2.0, 'clip': 1.0, 'combination': 1.0, 'with': 2.0, 'wish': 1.0, 'this': 2.0, 'it': 4.0, 'others': 1.0, 'would': 2.0, 'bought': 1.0, 'be': 1.0, 'length': 1.0, 'in': 3.0, 'center': 1.0, 'our': 2.0, 'seat': 4.0, 'to': 2.0, 'corners': 1.0, 'large': 1.0, 'few': 1.0, 'we': 2.0, 'a': 2.0, 'could': 1.0, 'than': 1.0, 'sized': 1.0, 'installed': 1.0, 'and': 5.0, 'too': 2.0, 'have': 1.0, 'small': 1.0, 'manufacturer': 1.0, 'device': 2.0, 'know': 1.0, 'width': 2.0, 'lengthwise': 1.0, 'intended': 1.0, 'was': 1.0, 'belt': 2.0, 'recommend': 1.0, 'product': 1.0, 'fit': 3.0, 'for': 3.0, 'parents': 1.0, 'shaped': 1.0, 'at': 1.0, 'keep': 1.0, 'who': 1.0, 'buckles': 2.0}
Word element => {'well': 1.0, 'of': 1.0, 'baby': 2.0, 'don': 1.0, 'clipped': 2.0, 'vehicle': 1.0, 'my': 4.0, 'toddler': 1.0, 'in': 1.0, 'accidentally': 1.0, 'chevy': 1.0, 'at': 1.0, 'tahoe': 1.0, 'the': 4.0, 'great': 1.0, 's': 1.0, 'a': 1.0, 't': 1.0, 'what': 1.0, 'her': 2.0, '02': 1.0, 'and': 1.0, 'would': 2.0, 'guard': 1.0, 'when': 1.0, 'just': 1.0, 'not': 1.0, 'car': 1.0, 'drive': 2.0, 'this': 1.0, 'she': 2.0, 'it': 1.0, 'end': 1.0, 'works': 1.0, 'only': 1.0, 'with': 1.0, 'makes': 1.0, 'so': 1.0, 'but': 1.0, 'can': 1.0, 'i': 2.0, 'being': 1.0, 'unbuckle': 3.0, 'want': 1.0, 'seat': 3.0, 'as': 1.0, 'to': 1.0, 'that': 1.0, 'into': 2.0}
Word element => {'unbuckling': 1.0, 'him': 1.0, 'as': 2.0, 'time': 1.0, '10': 1.0, 'minutes': 1.0, 'we': 1.0, 'every': 1.0, 'get': 3.0, 'me': 1.0, 'inside': 1.0, 'but': 1.0, 'stressful': 1.0, 'takes': 1.0, 'works': 1.0, 'it': 2.0, 'almost': 1.0, 'into': 1.0, 'the': 4.0, 'himself': 1.0, 'car': 2.0, 'to': 3.0, 'through': 1.0, 'usually': 1.0, '3': 1.0, 'belt': 1.0, 'buckle': 1.0, 'guard': 1.0, 'i': 1.0, 'have': 1.0}
Word element => {'i': 1.0, 'be': 1.0, 'his': 1.0, 'by': 1.0, 'recommended': 1.0, 'a': 1.0, 'best': 1.0, 'as': 1.0, 'program': 1.0, 'day': 1.0, 'problems': 1.0, 'open': 1.0, 'am': 1.0, 'how': 1.0, 'child': 1.0, 'was': 1.0, 'to': 4.0, 'knows': 1.0, 'disabled': 1.0, 'driver': 1.0, 'transportation': 1.0, 'seat': 1.0, 'has': 1.0, 'have': 1.0, 'this': 1.0, 'and': 1.0, 'get': 1.0, 'agreeing': 1.0, 'attention': 1.0, 's': 1.0, 'so': 1.0, 'who': 1.0, 'far': 1.0, 'been': 1.0, 'the': 2.0, 'belt': 1.0, 'answer': 1.0, 'our': 1.0}
Word element => {'recommend': 1.0, 'struggle': 1.0, 'don': 1.0, 'out': 1.0, 'quickly': 1.0, 'accident': 1.0, 'get': 3.0, 'an': 1.0, 'ever': 1.0, 'if': 1.0, 'do': 2.0, 'couldn': 1.0, 'and': 3.0, 'about': 1.0, 'play': 1.0, 'was': 3.0, 'doesn': 1.0, 'unbuckle': 3.0, 'time': 1.0, 'belt': 1.0, 't': 4.0, 'a': 4.0, 's': 2.0, 'careful': 1.0, 'switched': 1.0, 'is': 2.0, 'guard': 3.0, 'buckle': 2.0, 'up': 1.0, 'miracle': 1.0, 'car': 1.0, 'three': 1.0, 'pulling': 1.0, 'often': 1.0, 'tight': 1.0, 'another': 1.0, 'booster': 1.0, 'consistently': 1.0, 'got': 1.0, 'use': 1.0, 'after': 1.0, 'to': 9.0, 'as': 1.0, 'off': 1.0, 'tried': 1.0, 'old': 1.0, 'i': 13.0, 'for': 1.0, 'worker': 1.0, 'be': 1.0, 'hated': 1.0, 'first': 1.0, 'him': 5.0, 'it': 4.0, 'highly': 1.0, 'this': 4.0, 'love': 1.0, 'he': 9.0, 'how': 2.0, 'his': 2.0, 'from': 1.0, 'matter': 1.0, 'over': 1.0, 'hard': 1.0, 'back': 1.0, 'product': 2.0, 'year': 1.0, 'toddler': 1.0, 'himself': 1.0, 'did': 1.0, 'unbuckling': 1.0, 'verge': 1.0, 'tantrum': 1.0, 'seat': 3.0, 'in': 3.0, 'the': 5.0, 'of': 1.0, 'having': 1.0, 'because': 1.0, 'that': 2.0, 'knew': 1.0, 'had': 1.0, 'when': 1.0, 'what': 1.0, 'bought': 1.0, 'great': 1.0, 'nice': 1.0, 'thing': 1.0, 'need': 1.0, 'or': 1.0, 'no': 1.0, 'let': 1.0, 'always': 1.0, 'tries': 1.0, 'can': 1.0, 'have': 3.0, 'with': 3.0, 'slots': 1.0, 'toys': 1.0, 'watch': 1.0, 'my': 2.0, 'me': 1.0, 'keys': 1.0, 'on': 1.0, 'long': 1.0, 'toy': 1.0, 'thin': 1.0, 'enough': 1.0, 'between': 1.0, 'know': 1.0, 'buckled': 1.0}
Word element => {'to': 1.0, 'this': 1.0, 'do': 1.0, 'of': 1.0, 'waste': 1.0, 'money': 1.0, 'it': 2.0, 'i': 2.0, 'expecting': 1.0, 's': 1.0, 'recommed': 1.0, 'useless': 1.0, 'was': 2.0, 'not': 2.0, 'a': 1.0, 'what': 1.0, 'anyone': 1.0, 'basically': 1.0, 'and': 1.0}
Word element => {'again': 1.0, 'safe': 1.0, 'means': 1.0, 'which': 1.0, 'longer': 1.0, 'any': 1.0, 'belt': 1.0, 'how': 1.0, 'not': 1.0, 'seat': 2.0, 'car': 1.0, 'she': 2.0, 'allow': 1.0, 'been': 1.0, 'little': 1.0, 'daughter': 1.0, 'my': 1.0, 'a': 3.0, 'does': 1.0, 'her': 3.0, 'down': 1.0, 'send': 1.0, 'wiggle': 1.0, 'drive': 1.0, 'do': 1.0, 'and': 1.0, 'god': 1.0, 'learned': 1.0, 'has': 2.0, 'of': 1.0, 'product': 1.0, 'had': 1.0, 'syndrome': 1.0, 'to': 3.0, 'loves': 1.0, 'for': 1.0, 'one': 1.0, 'this': 3.0, 'with': 1.0, 's': 1.0, 'unbuckle': 1.0, 'that': 1.0, 'guard': 1.0, 'out': 1.0}
Word element => {'there': 1.0, 'keep': 1.0, 'wonderful': 1.0, 'front': 1.0, 'back': 1.0, 'pocket': 1.0, 'mesh': 1.0, 'inside': 1.0, 'throw': 1.0, 'i': 1.0, 'stop': 1.0, 'we': 2.0, 'car': 3.0, 'undo': 2.0, 'and': 8.0, 'had': 1.0, 'to': 4.0, 'in': 1.0, 'cannot': 1.0, 'key': 1.0, 'stick': 1.0, 'seats': 1.0, 'move': 1.0, 'late': 1.0, 'the': 6.0, 'my': 1.0, 'booster': 1.0, 'things': 1.0, 'when': 1.0, 'times': 1.0, 'rebuckle': 1.0, 'likes': 1.0, 'is': 2.0, 'around': 1.0, 'of': 3.0, 'year': 1.0, 'his': 1.0, 'old': 1.0, 'out': 2.0, 'him': 1.0, 'so': 4.0, 'time': 1.0, 'on': 2.0, '3': 1.0, 'your': 1.0, 'being': 1.0, 'product': 1.0, 'for': 1.0, 'he': 1.0, 'this': 2.0, 'wasted': 1.0, 'it': 5.0, 'get': 2.0, 'easy': 1.0, 'many': 3.0, 'buckle': 1.0, 'take': 2.0, 'off': 1.0, 'that': 1.0, 'into': 1.0, 'by': 1.0, 'just': 2.0}
Word element => {'sticks': 1.0, 'wooden': 1.0, 'no': 1.0, 'latch': 1.0, 'down': 1.0, 'push': 1.0, 'key': 1.0, 'your': 1.0, 'it': 1.0, 'if': 1.0, 'for': 2.0, 'cover': 1.0, 'tried': 1.0, 'out': 1.0, 'that': 1.0, 'realized': 1.0, 'after': 1.0, 'upset': 1.0, 'against': 1.0, 'so': 1.0, 'need': 2.0, 'simple': 2.0, 'both': 1.0, 'disengage': 1.0, 'fixed': 2.0, 'these': 2.0, 'the': 4.0, 'use': 2.0, 'must': 1.0, 'have': 2.0, 'lolly': 1.0, 'quick': 1.0, 'with': 1.0, 'straight': 1.0, 'childrens': 1.0, 'saftey': 1.0, 'was': 1.0, 'belt': 2.0, 'disconnected': 1.0, 'effective': 1.0, 'using': 1.0, 'is': 1.0, 'had': 1.0, 'excellent': 1.0, 'not': 1.0, 'guard': 1.0, 'went': 1.0, 'seats': 1.0, 'belts': 1.0, 'to': 5.0, 'seat': 3.0, 'as': 2.0, 's': 1.0, 'we': 1.0, 'a': 2.0, 'incident': 1.0, 'i': 4.0, 'prior': 1.0, 'you': 1.0, 'when': 1.0, 'provided': 1.0, 'this': 2.0, 'kids': 1.0, 'my': 1.0, 'family': 1.0, 'car': 3.0, 'member': 1.0, 'well': 1.0, 'has': 1.0, 'said': 1.0, 'in': 1.0, 'error': 1.0, 'of': 1.0, 'hunt': 1.0, 'instead': 1.0, 'there': 1.0, 'an': 2.0, 'own': 1.0, 'ignition': 1.0, 'and': 3.0, 'anything': 1.0}
Word element => {'understand': 1.0, 'is': 1.0, 'buckled': 1.0, 'keeps': 1.0, 'he': 2.0, 'has': 1.0, 'my': 1.0, 'the': 2.0, 'and': 2.0, 'use': 1.0, 'autism': 1.0, 'easy': 1.0, 'to': 2.0, 'product': 1.0, 'that': 2.0, 'a': 1.0, 'belt': 1.0, 'son': 1.0, 'from': 1.0, 'stay': 1.0, 'unbuckling': 1.0, 'needs': 1.0, 'in': 2.0, 'car': 1.0, 'does': 1.0, 'seat': 1.0, 'not': 1.0}
Word element => {'or': 1.0, 'lost': 1.0, 'case': 1.0, 'spares': 1.0, 'wanted': 1.0, 'transporting': 1.0, 'people': 1.0, 'into': 1.0, 'place': 2.0, 'belt': 1.0, 'was': 2.0, 'keep': 2.0, 'did': 1.0, 'getting': 1.0, 'driver': 1.0, 'best': 1.0, 'trick': 1.0, 'depending': 1.0, 'else': 1.0, 'as': 2.0, 'to': 5.0, 'program': 1.0, 'this': 3.0, 'day': 1.0, 'extra': 1.0, 'for': 2.0, 'product': 2.0, 'love': 1.0, 'daughter': 1.0, 'i': 7.0, 'complicated': 1.0, 'used': 2.0, 'special': 1.0, 'vehicles': 1.0, 'use': 2.0, 'her': 5.0, 'different': 1.0, 'what': 1.0, 'have': 2.0, 'it': 10.0, 'from': 1.0, 'seatbelt': 1.0, 'explaining': 1.0, 'exactly': 1.0, 'be': 2.0, 'multiple': 1.0, 'a': 1.0, 'we': 2.0, 'is': 7.0, 'more': 1.0, 'in': 4.0, 'needs': 1.0, 'transportation': 1.0, 'can': 2.0, 'so': 2.0, 'the': 6.0, 'device': 2.0, 'of': 4.0, 'adult': 1.0, 'out': 1.0, 'and': 5.0, 'broken': 1.0, 'simple': 3.0, 'part': 1.0, 'during': 1.0, 'popsicle': 1.0, 'snap': 1.0, 'only': 1.0, 'much': 1.0, 'on': 1.0, 'types': 1.0, 'pack': 1.0, 'think': 1.0, 'who': 1.0, 'vehicle': 1.0, 'keeps': 1.0, 'looking': 1.0, 'bag': 1.0, 'reason': 1.0, 'everyone': 1.0, 'various': 1.0, 'safe': 1.0, 'many': 1.0, 'issue': 1.0, 'each': 1.0, 'new': 1.0, 'how': 1.0, 'they': 1.0, 'should': 1.0, 'than': 1.0, 'that': 3.0, 'easily': 1.0, 'because': 1.0, 'really': 1.0, 'track': 1.0, 'keeping': 1.0, 'sticks': 1.0, 'an': 1.0, 'gets': 1.0, 'stash': 1.0, 'just': 1.0, 'great': 1.0, 'bought': 1.0, 'one': 1.0, 'ones': 1.0, 'with': 1.0, 'some': 1.0}
Word element => {'out': 1.0, 'get': 1.0, 'can': 1.0, 'assumes': 1.0, 'he': 3.0, 'don': 1.0, 'sometimes': 1.0, 'even': 3.0, 'learn': 1.0, 'so': 1.0, 'time': 1.0, 'every': 1.0, 'use': 2.0, 'about': 1.0, 'guys': 1.0, 'these': 1.0, 'they': 1.0, 'usual': 1.0, 'and': 3.0, 'great': 2.0, 'the': 1.0, 'try': 2.0, 'works': 2.0, 'it': 6.0, 'this': 1.0, 'with': 2.0, 'doesn': 1.0, 'recommend': 1.0, 'was': 1.0, 'vehicle': 1.0, 'while': 1.0, 'unbuckling': 1.0, 'bought': 1.0, 'his': 1.0, 'year': 1.0, 'bind': 1.0, 'son': 1.0, 'open': 1.0, 'for': 1.0, 'old': 1.0, 'consistency': 1.0, 'i': 1.0, 'himself': 1.0, 'not': 1.0, 'autistic': 1.0, 'moving': 1.0, 'keeps': 1.0, 'him': 1.0, 'in': 2.0, 'secure': 1.0, 'also': 1.0, 'all': 1.0, 'as': 1.0, 'to': 2.0, 'our': 1.0, 'seat': 1.0, 'just': 1.0, 'who': 1.0, 'keep': 1.0, 't': 3.0, 's': 1.0, 'we': 3.0, 'a': 2.0, 'supply': 1.0, 'of': 1.0, 'kept': 1.0, 'popsicle': 1.0, 'five': 1.0, 'sticks': 1.0, 'hand': 1.0, 'which': 1.0, 'comes': 1.0, 'is': 1.0, 'on': 1.0, 'push': 1.0}
Word element => {'and': 1.0, 'while': 1.0, 'belt': 1.0, 'unbuckle': 2.0, 'purchased': 1.0, 'was': 1.0, 'to': 1.0, 'would': 1.0, 'exactly': 1.0, 'product': 1.0, 'needed': 1.0, 'old': 2.0, 'i': 3.0, '4': 1.0, 'great': 1.0, 'a': 1.0, 'is': 2.0, 'sister': 1.0, 'it': 1.0, 'this': 2.0, 'grandson': 2.0, 'strapped': 1.0, 'keep': 1.0, 'seat': 2.0, 'my': 2.0, 'two': 1.0, 'booster': 1.0, 'year': 2.0, 'driving': 1.0, 'in': 1.0, 'what': 1.0, 'before': 1.0, 'his': 3.0}
Word element => {'way': 1.0, 'in': 1.0, 'for': 1.0, 'buckled': 1.0, 'belt': 1.0, 'we': 2.0, 'respect': 1.0, 'her': 1.0, 'used': 1.0, 'worked': 1.0, 'day': 1.0, 'every': 1.0, 'use': 1.0, 'great': 1.0, 't': 1.0, 'the': 2.0, 'my': 1.0, 'mad': 1.0, 'need': 1.0, 'so': 1.0, 'to': 1.0, 'was': 1.0, 'now': 1.0, 'this': 1.0, 'first': 1.0, 'only': 1.0, 'it': 1.0, 'us': 1.0, 'daughter': 1.0, 'when': 1.0, 'she': 1.0, 'doesn': 1.0, 'keep': 1.0}
Word element => {'keeps': 1.0, 'seat': 1.0, 'my': 1.0, 'intended': 1.0, 'have': 1.0, 'this': 1.0, 'it': 1.0, 'was': 1.0, 'to': 1.0, 'would': 1.0, 'exactly': 1.0, 'and': 1.0, 'do': 1.0, '4': 1.0, 'i': 1.0, 'wish': 1.0, 'year': 1.0, 'from': 1.0, 'unbuckling': 1.0, 'what': 1.0, 'does': 1.0, 'his': 1.0, 'belt': 1.0, 'invented': 1.0}
Word element => {'erin': 1.0, 'as': 1.0, 'things': 1.0, 'when': 1.0, 'making': 1.0, 'thanks': 1.0, 'rocks': 1.0, 'teds': 2.0, 'phil': 2.0, 'review': 1.0, 'leaving': 1.0, 'were': 1.0, 'called': 1.0, 'makes': 1.0, 'friendly': 1.0, 'kind': 1.0, 'parent': 1.0, 'better': 1.0, 'knowledgable': 1.0, 'wouldn': 1.0, 'extremely': 1.0, 'easy': 1.0, 'office': 1.0, 'folks': 1.0, 'questions': 1.0, 'a': 2.0, 'customer': 2.0, 'their': 2.0, '5': 1.0, 'trying': 1.0, 'another': 1.0, 'more': 1.0, 'kid': 1.0, 'anywhere': 1.0, 'want': 1.0, 'have': 4.0, 'walking': 2.0, 'be': 3.0, 'recently': 1.0, 'didn': 1.0, 'cooler': 1.0, 'sorts': 1.0, 'been': 1.0, 'say': 1.0, 'is': 4.0, 'double': 1.0, 'they': 2.0, 'never': 2.0, 'knew': 1.0, 'me': 1.0, 'my': 8.0, '3': 2.0, 'stars': 1.0, 'wanted': 2.0, 'portable': 1.0, 'on': 2.0, 'purchase': 1.0, 'whatever': 1.0, 'children': 1.0, 'few': 1.0, 'this': 5.0, 'gathers': 1.0, 'i': 19.0, 'one': 2.0, 'year': 1.0, 'explorer': 1.0, 'previously': 1.0, 'son': 2.0, 'need': 1.0, 'or': 1.0, 'until': 1.0, 'feel': 1.0, 'bring': 1.0, 'exercise': 1.0, 'months': 1.0, 'get': 2.0, 'and': 11.0, 'had': 4.0, 'delightful': 1.0, 'to': 10.0, 'stroller': 5.0, 'our': 2.0, 'other': 1.0, 'all': 2.0, 't': 2.0, 'go': 2.0, 'difference': 1.0, 'we': 1.0, 'thing': 1.0, '2': 1.0, 'so': 1.0, 'raving': 1.0, 'can': 2.0, 'without': 1.0, 'in': 2.0, 'service': 2.0, 'if': 2.0, 'expecting': 1.0, 'store': 1.0, 'people': 1.0, 'second': 1.0, 'ride': 1.0, 'comfortably': 1.0, 'olds': 1.0, 'hair': 1.0, 'yet': 1.0, 'love': 2.0, 'for': 3.0, 'daily': 1.0, 'pushing': 1.0, 'leap': 1.0, 'crapy': 1.0, 'am': 2.0, 'strollers': 1.0, 'walk': 1.0, 'grocery': 1.0, 'now': 1.0, 'like': 1.0, 'out': 2.0, 'wanting': 1.0, 'should': 1.0, 'rip': 1.0, 'room': 1.0, 'swim': 1.0, 'gear': 1.0, 'rude': 1.0, 'the': 7.0, 'of': 3.0, 'plant': 1.0, 'matter': 1.0, 'each': 1.0, 'adventures': 1.0, 'give': 1.0, 'there': 1.0, 'with': 2.0, 'plenty': 1.0, 'adventure': 1.0, 'splurge': 1.0, 'are': 3.0, 'that': 2.0, 'thrilled': 1.0, 'good': 2.0, 'made': 1.0}
Word element => {'performs': 1.0, 'through': 1.0, 'all': 1.0, 'have': 1.0, 'just': 1.0, 'my': 1.0, 'inline': 1.0, 't': 1.0, 'the': 1.0, 'be': 1.0, 'terrains': 1.0, 'strollers': 1.0, 'easy': 1.0, 'double': 1.0, 'is': 1.0, 'many': 1.0, 'with': 1.0, 'it': 1.0, 'taken': 1.0, 'comparing': 1.0, 'this': 2.0, 'after': 1.0, 'our': 1.0, 'that': 2.0, 'explorer': 1.0, 'purchase': 1.0, 'purchased': 1.0, 'amazingly': 1.0, 'stroller': 3.0, 'an': 1.0, 'other': 1.0, 'we': 3.0, 'happier': 1.0, 'was': 1.0, 'to': 1.0, 'husband': 1.0, 'wanted': 1.0, 'couldn': 1.0, 'and': 2.0, 'maneuver': 1.0}
Word element => {'boot': 1.0, 'doors': 1.0, 'glides': 1.0, 'been': 1.0, 'tubes': 1.0, 'through': 1.0, 'show': 1.0, 'bike': 1.0, 'enough': 1.0, 'hmmmm': 1.0, 'aired': 1.0, 'as': 1.0, 'this': 2.0, 'wanted': 1.0, 'short': 1.0, 'day': 1.0, 'another': 1.0, 'drove': 1.0, 'car': 1.0, 'did': 1.0, 'easy': 1.0, 'found': 1.0, 'around': 2.0, 'warned': 1.0, 'out': 2.0, 'hubby': 1.0, 'or': 1.0, 'would': 1.0, 'equipment': 1.0, 'pushing': 1.0, 'ugly': 1.0, 'imagined': 1.0, 'stuck': 1.0, 'in': 4.0, 'strollers': 1.0, 'started': 1.0, 'has': 1.0, 'next': 1.0, 'them': 1.0, 'to': 11.0, 'fits': 1.0, 'all': 1.0, 'going': 1.0, 'story': 1.0, 'a': 3.0, 'gas': 1.0, 's': 1.0, 'purchase': 1.0, 'looks': 1.0, 'my': 5.0, 'great': 5.0, 'is': 1.0, 'at': 2.0, 'well': 2.0, 'i': 10.0, 'try': 1.0, 'one': 2.0, 'husband': 2.0, 'head': 1.0, 'low': 1.0, 'tires': 2.0, 'and': 9.0, 'just': 1.0, 'not': 4.0, 'man': 1.0, 'blew': 1.0, 'checked': 1.0, 'explorer': 1.0, 'research': 1.0, 'else': 1.0, 'easily': 1.0, 'because': 1.0, 'that': 3.0, 'nice': 1.0, 'little': 2.0, 'read': 2.0, 'figure': 1.0, 'like': 1.0, 'began': 1.0, 'so': 6.0, 'it': 13.0, 'long': 1.0, 'on': 1.0, 'do': 1.0, 'put': 2.0, 'get': 2.0, 'except': 1.0, 'somewhere': 1.0, 'for': 4.0, 'when': 1.0, 'grow': 1.0, 'arrived': 1.0, 'flat': 1.0, 'filled': 1.0, 'was': 5.0, 'phil': 1.0, 'we': 2.0, 'then': 3.0, 'reviews': 1.0, 'they': 1.0, 'had': 3.0, 'feel': 1.0, 'surprised': 1.0, 'of': 1.0, 'the': 12.0, 'ran': 1.0, 'down': 2.0, 'station': 1.0, 'hard': 1.0, 'park': 1.0, 'were': 3.0, 'piece': 1.0, 'together': 1.0, 'line': 1.0, 'stroller': 2.0, 'our': 1.0, 'how': 1.0, 'front': 1.0, 'wheel': 1.0, 'less': 1.0, 'up': 4.0, 'rotate': 1.0, 'first': 1.0, 'lock': 1.0, 'local': 1.0, 'call': 1.0, 'make': 1.0, 'help': 1.0, 'toucher': 1.0, 'ted': 1.0, 'but': 1.0, 'went': 1.0, 'packed': 1.0, 'stroll': 2.0, 'house': 1.0}
Word element => {'down': 1.0, 'passed': 1.0, 'been': 1.0, 'and': 1.0, 'all': 1.0, 'neutral': 1.0, 'is': 1.0, 'since': 1.0, 'son': 1.0, '6': 1.0, 'cuz': 1.0, 'years': 1.0, 'for': 3.0, 'daughter': 1.0, 'in': 1.0, '5': 2.0, 'great': 1.0, 'the': 1.0, '2': 2.0, 'its': 1.0, 'now': 1.0, 'blanket': 1.0, 'buy': 1.0, 'old': 1.0, 'i': 2.0, 'color': 1.0, 'ago': 1.0, 'my': 2.0, 'bought': 1.0, 'be': 1.0, 'month': 1.0, 'october': 1.0, 'almost': 1.0, 'good': 1.0, 'will': 1.0, 'quality': 1.0, 'cute': 1.0, 'use': 1.0, 'this': 1.0, 'it': 1.0}
Word element => {'pink': 1.0, 'covered': 1.0, 'material': 1.0, 'really': 1.0, 'plushy': 1.0, 'but': 1.0, 'cover': 1.0, 'getting': 1.0, 'only': 1.0, 'are': 1.0, 'like': 1.0, 'sound': 1.0, 'get': 1.0, 'if': 1.0, 'nap': 3.0, 'her': 1.0, 'nanny': 3.0, 'about': 1.0, 'baby': 2.0, 'i': 1.0, 'heard': 1.0, 'the': 7.0, 'little': 2.0, 'who': 1.0, 'gave': 1.0, 'daughter': 2.0, 'you': 1.0, 'when': 1.0, 'well': 1.0, 'just': 2.0, 'and': 2.0, 'description': 1.0, 'birth': 1.0, 'had': 1.0, 'girl': 2.0, 'entire': 1.0, 'one': 2.0, 'for': 2.0, 'so': 1.0, 'cute': 1.0, 'this': 2.0, 'perfect': 1.0, 'in': 4.0, 'my': 2.0, 'fact': 1.0, 'letting': 1.0, 'rather': 1.0, 'to': 1.0, 'sleep': 1.0, 'because': 1.0, 'than': 1.0, 'bassinet': 1.0, 'asked': 1.0, 'is': 3.0, 'sleeps': 1.0, 'it': 4.0, 'she': 1.0, 'a': 3.0, 'could': 1.0, 's': 1.0, 'makes': 1.0}
Word element => {'poliester': 1.0, 'big': 1.0, 'car': 1.0, 'for': 1.0, 'stroller': 1.0, 'use': 1.0, 'or': 1.0, 'i': 4.0, 'returned': 1.0, 'disappointed': 1.0, 'item': 1.0, 'it': 5.0, 'blankie': 1.0, 'this': 3.0, 'only': 1.0, '100': 1.0, 'received': 1.0, 'expected': 1.0, 'the': 1.0, 'was': 2.0, 'as': 1.0, 'seat': 1.0, 'to': 1.0, 'difference': 1.0, 'and': 2.0, 'when': 1.0, 'you': 2.0, 'a': 1.0, 't': 2.0, 's': 1.0, 'that': 1.0, 'very': 1.0, 'inches': 1.0, 'discribed': 1.0, 'can': 1.0, 'money': 1.0, 'about': 1.0, 'cost': 1.0, 'need': 1.0, 'if': 1.0, '10': 2.0, 'cover': 1.0, 'mouse': 1.0, 'isn': 1.0, 'small': 1.0, 'other': 1.0, 'side': 1.0, 'is': 1.0, 'covered': 1.0}
Word element => {'so': 1.0, 'to': 1.0, 'preventing': 1.0, 'at': 1.0, 'work': 1.0, 'enough': 1.0, 'fit': 2.0, 'rails': 3.0, 'these': 1.0, 't': 1.0, 'the': 3.0, 'not': 1.0, 'started': 1.0, 'on': 2.0, 'are': 2.0, 'chewing': 2.0, 'big': 1.0, 'as': 2.0, 'they': 1.0, 'our': 2.0, 'wouldn': 1.0, 'soon': 1.0, 'boys': 1.0, 'them': 1.0, 'covers': 1.0, 'crib': 1.0, 'twin': 1.0, 'bought': 1.0, 'could': 1.0, 'perfectly': 1.0, 'and': 2.0, 'reach': 1.0, 'fairly': 1.0, 'wide': 1.0, 'size': 1.0, 'plastic': 1.0, 'standard': 1.0, 'wraps': 1.0, 'we': 1.0}
Word element => {'furniture': 1.0, 'their': 1.0, 'expensive': 1.0, 'before': 1.0, 'this': 1.0, 'have': 1.0, 'these': 1.0, 'invention': 1.0, 'gets': 1.0, 'to': 2.0, 'buy': 1.0, 'make': 1.0, 'baby': 2.0, 'your': 1.0, 'ever': 1.0, 'wishes': 1.0, 'is': 1.0, 'a': 1.0, 'best': 1.0, 'must': 1.0, 'for': 1.0, 'prtoect': 1.0, 'teeth': 1.0, 'anyone': 1.0, 'sure': 1.0, 'who': 1.0}
Word element => {'there': 1.0, 'out': 1.0, 'recall': 1.0, 'see': 1.0, 'm': 1.0, 'done': 1.0, 'which': 1.0, 'issue': 1.0, 'take': 1.0, 'not': 1.0, 'me': 1.0, 'told': 1.0, 'send': 1.0, 'them': 1.0, 'called': 1.0, 'when': 1.0, 'their': 1.0, 've': 1.0, 'would': 1.0, 'new': 1.0, 'and': 3.0, 'sit': 1.0, 'her': 1.0, 'buttons': 2.0, 'glad': 1.0, 'stroller': 2.0, 'weeks': 1.0, 'while': 1.0, 'old': 1.0, 'i': 6.0, 'tried': 1.0, 'on': 1.0, 'make': 1.0, '3': 1.0, 'my': 1.0, 'website': 1.0, 'without': 1.0, 'the': 8.0, 'but': 1.0, '2': 1.0, 'a': 1.0, 'ago': 1.0, 't': 2.0, 'in': 2.0, 'having': 1.0, 'year': 1.0, 'of': 4.0, 'lean': 1.0, 'use': 1.0, 'wonderful': 1.0, 'wish': 1.0, 'this': 5.0, 'picture': 1.0, 'didn': 1.0, 'they': 1.0, 'function': 1.0, 'so': 2.0, 'months': 1.0, 'sisters': 1.0, 'bought': 1.0, 'within': 1.0, 'broke': 1.0, 'realize': 1.0, 'for': 1.0, 'impact': 1.0, 'twin': 1.0, 'until': 1.0, 'it': 2.0, 'fell': 1.0, 'she': 1.0, 'turned': 1.0, 'seat': 3.0, 'to': 3.0, 'prominent': 1.0, 'more': 1.0, 'is': 1.0, 'around': 1.0, 'don': 1.0, 'over': 1.0, 'valco': 1.0, 'ever': 1.0, 'forward': 1.0, 'slightly': 1.0}
Word element => {'hope': 1.0, 'so': 1.0, 'star': 1.0, 'five': 1.0, 'rating': 1.0, 'a': 1.0, 'can': 1.0, 'maybe': 1.0, 'be': 1.0, 'should': 1.0, 'sold': 1.0, 'stated': 1.0, 'why': 1.0, 'read': 1.0, 'have': 1.0, 'but': 1.0, 'daughter': 1.0, 'wonder': 1.0, 'for': 1.0, 'review': 1.0, 'my': 1.0, 'feel': 1.0, 'purchase': 1.0, 'to': 2.0, 'wanted': 1.0, 'like': 1.0, 'not': 2.0, 'know': 1.0, 'products': 1.0, 'i': 7.0, 'is': 1.0, 'many': 1.0, 'that': 2.0, 'recalled': 2.0, 'this': 3.0, 'it': 3.0, 'has': 3.0, 'give': 1.0, 'been': 3.0, 'would': 1.0, 'if': 2.0, 'corrected': 2.0}
Word element => {'too': 1.0, 'it': 1.0, 'like': 1.0, 'and': 1.0, 'needs': 1.0, 'my': 1.0, 'for': 1.0, 'daughter': 1.0, 'had': 2.0, 'i': 1.0, 'one': 1.0, 'her': 1.0, 'child': 1.0, 'twins': 1.0, 'perfect': 1.0, 'this': 1.0, 'then': 1.0, 'seat': 1.0, 'was': 1.0}
Word element => {'washing': 1.0, 'me': 1.0, 'out': 1.0, 'cleaning': 1.0, 'them': 1.0, 'wash': 1.0, 'she': 1.0, 'is': 1.0, 'large': 1.0, 'front': 1.0, 'was': 1.0, 'machine': 1.0, 'to': 2.0, 'great': 1.0, 'the': 2.0, 'crib': 1.0, 'then': 1.0, 'instead': 1.0, 'has': 1.0, 'dry': 1.0, 'which': 2.0, 'transitional': 1.0, 'a': 1.0, 't': 1.0, 'we': 1.0, 'rail': 1.0, 'doing': 1.0, 'this': 1.0, 'with': 1.0, 'have': 1.0, 'still': 1.0, 'knotted': 1.0, 'air': 1.0, 'for': 3.0, 'bows': 1.0, 'my': 1.0, 'off': 1.0, 're': 1.0, 'daughter': 1.0, 'lay': 1.0, 'plays': 1.0, 'ties': 1.0, 'i': 1.0, 'they': 1.0, 'double': 1.0, 'of': 1.0, 'easy': 2.0, 'get': 2.0, 'undone': 1.0, 'can': 1.0, 'but': 1.0}
Word element => {'book': 1.0, 'win': 1.0, 'a': 1.0, 'visible': 1.0, 'me': 1.0, 'it': 2.0, 'blinks': 1.0, 'catching': 1.0, 'eye': 1.0, 'better': 2.0, 'walking': 1.0, 'us': 1.0, 'when': 2.0, 'am': 1.0, 'make': 1.0, 'on': 1.0, '4': 1.0, 'i': 2.0, 'him': 3.0, 'putting': 1.0, 'makes': 2.0, 'old': 1.0, 'that': 3.0, 'stroller': 1.0, 'feel': 1.0, 'great': 1.0, 'the': 5.0, 'evenings': 1.0, 'these': 1.0, 'strap': 1.0, 'are': 1.0, 'my': 3.0, 'in': 2.0, 'for': 1.0, 'handle': 1.0, 'more': 1.0, 'traffic': 1.0, 'is': 3.0, 'safer': 1.0, 'biking': 1.0, 'side': 1.0, 'of': 1.0, 'keep': 1.0, 'who': 1.0, 'oblivious': 1.0, 'year': 1.0, 'his': 3.0, 'about': 1.0, 'half': 1.0, 'facing': 1.0, 'surrounding': 1.0, 'under': 1.0, 'with': 2.0, 'them': 2.0, 'bar': 2.0, 'see': 1.0, 'and': 2.0, 'to': 5.0, 'seat': 1.0, 'time': 1.0, 'so': 1.0, 'drivers': 1.0, 'but': 1.0, 'can': 1.0}
Word element => {}
Word element => {'if': 1.0, 'as': 2.0, 'itself': 1.0, 'cost': 1.0, 'not': 1.0, 'work': 1.0, 'it': 1.0, 'had': 1.0, 'product': 1.0, 'much': 1.0, 'to': 2.0, 'pack': 1.0, 'purchase': 1.0, 'another': 1.0, 'i': 1.0, '4': 1.0, 'of': 1.0, 'batteries': 2.0, 'more': 1.0, 'make': 1.0}
Word element => {'makes': 1.0, 'ton': 1.0, 'off': 1.0, 'throws': 1.0, 'night': 1.0, 'i': 1.0, 'dusk': 1.0, 'comfortable': 1.0, 'using': 1.0, 'at': 2.0, 'lot': 1.0, 'walking': 1.0, 'attached': 1.0, 'with': 1.0, 'this': 1.0, 'it': 2.0, 'stroller': 2.0, 'walks': 1.0, 'wife': 1.0, 'my': 1.0, 'more': 1.0, 'the': 1.0, 'feel': 1.0, 'bob': 1.0, 'purchased': 1.0, 'to': 1.0, 'inexpensive': 1.0, 'light': 2.0, 'her': 2.0, 'me': 1.0, 'and': 3.0, 'a': 3.0, 'front': 1.0, 'of': 2.0}
Word element => {'ever': 1.0, 'investment': 1.0, 'this': 1.0, 'have': 1.0, 'bunny': 1.0, 'now': 1.0, 'live': 1.0, 'without': 2.0, 'she': 2.0, 'cannot': 2.0, 'must': 1.0, 'best': 1.0, 'and': 2.0, 'my': 1.0, 'the': 1.0, 'of': 1.0, 'them': 1.0, 'daugther': 1.0, 'together': 1.0, 'everywhere': 1.0, 'goes': 1.0, 'sleep': 1.0, 'both': 1.0, 'her': 1.0, 'buddies': 1.0}
Word element => {'great': 1.0, 'wash': 1.0, 'soft': 1.0, 'well': 1.0, 'super': 1.0, 'us': 1.0, 'we': 1.0, 'have': 1.0, 'several': 1.0, 'of': 1.0, 'the': 1.0, 'with': 1.0, 'buddie': 1.0, 'they': 2.0, 'same': 1.0, 'quality': 1.0, 'and': 1.0, 'travel': 1.0, 'everywhere': 1.0, 'blanket': 1.0}
Word element => {'can': 1.0, 'you': 1.0, 'if': 1.0, 'band': 1.0, 'tub': 1.0, 'to': 2.0, 'floorall': 1.0, 'reason': 2.0, 'stand': 2.0, 'no': 2.0, 'seat': 1.0, 'the': 1.0, 'europe': 1.0, 'is': 1.0, 'on': 2.0, 'bath': 1.0, 'over': 1.0, 'babies': 1.0}
Word element => {'time': 1.0, 'will': 1.0, 'this': 2.0, 'had': 1.0, 've': 1.0, 'settings': 1.0, '4': 1.0, 'adjust': 1.0, 'actually': 1.0, 'croch': 1.0, 'elastic': 1.0, 'front': 1.0, 'in': 1.0, 'snaps': 1.0, 'decided': 1.0, '6': 1.0, 'into': 1.0, 'that': 1.0, 'has': 1.0, 'month': 2.0, '14': 1.0, 'another': 1.0, 'company': 1.0, 'he': 2.0, 'love': 1.0, 'fabric': 1.0, 'for': 3.0, 'size': 4.0, 'slightly': 1.0, 'son': 2.0, 'old': 2.0, 'well': 1.0, 'i': 10.0, 'shorten': 1.0, 'cloth': 2.0, 'be': 1.0, 'it': 6.0, 'thought': 1.0, 'him': 1.0, 'so': 3.0, 'after': 1.0, 'about': 1.0, 'since': 1.0, '20lbs': 1.0, 'thirsties': 1.0, 'fit': 2.0, 't': 1.0, 'using': 1.0, 'like': 1.0, 'g': 1.0, 'and': 4.0, 'demonstrating': 1.0, 'how': 2.0, 'charlie': 2.0, 'was': 1.0, 'crotch': 1.0, 'wanted': 1.0, 'length': 1.0, 'to': 3.0, 'would': 2.0, 'medium': 5.0, 'duo': 1.0, 'his': 1.0, 'us': 1.0, 'also': 1.0, 'diapers': 2.0, 'use': 2.0, 'one': 4.0, 'lot': 1.0, 'try': 1.0, 'much': 2.0, 'diaper': 5.0, 'insert': 1.0, 'of': 1.0, 'longer': 1.0, 'the': 13.0, 'my': 2.0, 'banana': 2.0, 'website': 1.0, 'bulkier': 1.0, 'runs': 1.0, 'but': 2.0, 'work': 2.0, 'not': 1.0, 'a': 7.0, 'small': 2.0, 'long': 1.0, 'on': 1.0, 'now': 2.0, 'think': 1.0, 'better': 3.0, 'fitted': 1.0, 'at': 1.0, 'is': 3.0, 'way': 1.0, 'than': 2.0, 'explain': 1.0, 's': 2.0, 'narrower': 1.0, '7': 1.0, 'change': 1.0, 'less': 1.0, 'there': 1.0, 'bulk': 1.0, 'large': 1.0, 'between': 1.0, 'they': 1.0, 'months': 1.0, 'legs': 1.0, 'stability': 1.0, 'very': 1.0, 'found': 2.0, 'doesn': 1.0, 'setting': 1.0, 'youtube': 1.0, 'video': 1.0, 'you': 1.0, 'great': 1.0, 'fits': 1.0, 'other': 1.0, 'with': 1.0}
Word element => {'banana': 1.0, 'up': 1.0, 'charlie': 1.0, 'and': 1.0, 'as': 1.0, 'stand': 1.0, 'use': 2.0, 'diapers': 3.0, 'daytime': 1.0, 'brands': 1.0, 'none': 1.0, 'for': 2.0, 'other': 1.0, 'to': 1.0, 't': 1.0, 'these': 1.0, 'kawaii': 1.0, 'tried': 1.0, 'i': 1.0, 'night': 1.0, 'well': 1.0, 'can': 1.0, 'wrong': 1.0, 'go': 1.0, 'with': 1.0}
Word element => {'yucky': 1.0, 'keep': 1.0, 'addition': 1.0, 'tote': 1.0, 'free': 1.0, 'keeping': 1.0, 'use': 1.0, 'detergent': 1.0, 'laundry': 1.0, 'everyday': 1.0, 'grandparents': 1.0, 'short': 1.0, 'trips': 1.0, 'away': 1.0, 'weekend': 1.0, 'oils': 1.0, 'overnight': 1.0, 'inserts': 1.0, 'clean': 2.0, 'solid': 1.0, 'bio': 1.0, 'range': 1.0, 'full': 1.0, 'offers': 1.0, 'basically': 1.0, 'unconvinced': 1.0, 'about': 1.0, 'helpful': 1.0, 'youtube': 1.0, 'every': 2.0, 'essential': 1.0, 'wash': 1.0, 'not': 1.0, 'hand': 1.0, '36': 1.0, '27': 1.0, 'personal': 1.0, 'run': 1.0, 'll': 1.0, 'you': 2.0, 'comparison': 1.0, 'ridiculous': 1.0, 'when': 1.0, 'noticeable': 1.0, 'really': 1.0, 'separate': 1.0, 'only': 2.0, 'combatting': 1.0, 'odor': 1.0, 'circulation': 1.0, 'allowing': 1.0, 'clothes': 2.0, 'seem': 1.0, 'toss': 1.0, 'compared': 1.0, 'nothing': 1.0, 'gotten': 1.0, 'has': 3.0, 'smell': 2.0, 'plus': 2.0, 'poos': 1.0, 'open': 1.0, 'another': 2.0, 'elastic': 2.0, 'attributed': 1.0, 'leaks': 1.0, 'absorbent': 1.0, 'folding': 1.0, 's': 1.0, 'grows': 1.0, 'simplicity': 1.0, 'deal': 1.0, 'ease': 1.0, 'baby': 3.0, 'design': 1.0, 'specific': 1.0, 'air': 1.0, 'dedicate': 1.0, 'forward': 1.0, 'friends': 1.0, 't': 1.0, 'home': 1.0, 'by': 2.0, 'coincidence': 1.0, 'been': 3.0, 'went': 1.0, 'blowouts': 1.0, 'third': 1.0, 'next': 1.0, 'them': 2.0, 'instructions': 1.0, 'box': 3.0, 'at': 2.0, 'happy': 1.0, 'price': 1.0, 'try': 1.0, 'were': 1.0, 'recommend': 2.0, 'shelf': 1.0, 'options': 1.0, 'see': 1.0, 'learn': 1.0, 'med': 1.0, 'disposable': 3.0, 'alternatives': 1.0, 'stays': 1.0, 'fears': 1.0, 'that': 1.0, 'decided': 1.0, 'used': 1.0, 'child': 1.0, 'final': 1.0, 'their': 4.0, 'for': 17.0, 'find': 1.0, 'day': 3.0, 'since': 1.0, 'double': 1.0, 'upfront': 1.0, 'having': 4.0, 'stain': 1.0, 'returned': 1.0, 'what': 1.0, '12': 2.0, 'won': 1.0, 'bullseye': 1.0, 'birth': 1.0, 'perception': 1.0, 'with': 12.0, 'smells': 1.0, 'any': 1.0, 'loud': 1.0, 'night': 1.0, 'just': 1.0, 'and': 27.0, 'check': 1.0, 'back': 1.0, 'checked': 1.0, 'banana': 5.0, 'changed': 1.0, 'disposables': 2.0, 'charlie': 5.0, 'tab': 1.0, 'our': 2.0, 'completely': 2.0, 'was': 4.0, 'to': 16.0, 'breakouts': 1.0, 'messy': 1.0, 'bra': 1.0, 'on': 5.0, 'childhood': 1.0, 'bag': 2.0, 'a': 6.0, 'small': 2.0, 'elder': 1.0, 'now': 2.0, 'other': 1.0, 'way': 1.0, 'all': 2.0, 'no': 5.0, 'greatest': 1.0, 'cb': 1.0, 'lots': 1.0, 'causing': 1.0, 'basket': 1.0, 'info': 1.0, 'cleaning': 1.0, 'covers': 2.0, 'care': 2.0, 'out': 7.0, 'research': 1.0, 'children': 1.0, 'hands': 1.0, 'but': 3.0, 'diapers': 14.0, 'my': 7.0, 'are': 7.0, 'local': 1.0, 'once': 2.0, 'further': 1.0, 'these': 1.0, 'brands': 2.0, 'of': 8.0, 'experience': 1.0, 'the': 28.0, 'fit': 1.0, 'easy': 3.0, 'discomfort': 1.0, 'fabulous': 1.0, 'neutralizes': 1.0, 'said': 1.0, 'diapering': 5.0, 'liners': 2.0, 'started': 1.0, 'in': 7.0, 'long': 2.0, 'per': 1.0, 'plastic': 2.0, 'crinkly': 2.0, '34': 2.0, 'who': 1.0, 'from': 2.0, 'snaps': 1.0, 'simple': 1.0, 'i': 13.0, 'rashes': 1.0, 'we': 4.0, 'leg': 2.0, 'safety': 1.0, 'pins': 2.0, 'size': 1.0, 'awesome': 1.0, 'few': 1.0, 'decide': 1.0, 'may': 1.0, 'whether': 1.0, 'd': 2.0, 'actually': 2.0, 'stick': 1.0, 'down': 1.0, 've': 3.0, 'own': 1.0, 'it': 3.0, '6': 5.0, 'months': 2.0, 'trying': 1.0, 'pocket': 1.0, 'parent': 1.0, 'is': 4.0, 'can': 1.0, 'ask': 1.0, 'so': 1.0, 'purchased': 1.0, 'convert': 1.0, 'husband': 1.0, 'beginning': 1.0, 'total': 1.0, 'exclusively': 1.0, 'up': 1.0, 'washing': 2.0, 'sized': 1.0, 'diaper': 4.0, 'as': 1.0, 'family': 1.0, 'sticking': 1.0, 'bleaching': 1.0, 'more': 3.0, 'perfect': 1.0, 'system': 2.0, 'expecting': 1.0, 'had': 2.0, 'minimal': 1.0, 'works': 1.0, 'soft': 1.0, 'fast': 1.0, 'staining': 1.0, 'sunning': 1.0, 'best': 1.0, 'stains': 1.0, 'surprised': 1.0, 'they': 4.0, 'wake': 1.0, 'sleeping': 1.0, 'videos': 2.0, 'found': 2.0, 'have': 2.0, 'put': 1.0, 'pleasantly': 1.0, 'numerous': 1.0, 'strap': 1.0, 'urine': 1.0, 'style': 1.0, 'one': 1.0, '5': 1.0, 'choosing': 1.0, 'adjustable': 2.0, 'against': 1.0, 'gussets': 2.0, 'still': 1.0, 'super': 2.0, 'don': 1.0, 'come': 1.0, 'save': 1.0, 're': 3.0, 'center': 1.0, 'cloth': 4.0, 'going': 1.0, '2': 1.0, 'os': 2.0, 'lg': 1.0, 'stuffing': 1.0, 'which': 1.0, 'great': 5.0, 'top': 1.0, 'did': 1.0, 'time': 2.0, 'wet': 1.0, 'sizing': 1.0, 'waist': 1.0, 'store': 2.0, 'velcro': 1.0}
Word element => {'leak': 1.0, 'can': 1.0, 'wetter': 1.0, 'if': 1.0, 'trim': 1.0, 'fuzzibunz': 1.0, 'very': 1.0, 'is': 1.0, 'wear': 1.0, 'i': 1.0, 'touch': 1.0, 'micro': 1.0, 'to': 2.0, 'have': 2.0, 'pad': 1.0, 'like': 3.0, 'ewww': 1.0, 'you': 2.0, 'that': 1.0, 'at': 1.0, 'dont': 1.0, 'it': 5.0, 'secures': 1.0, 'just': 1.0, 'difficult': 1.0, 'heavy': 1.0, 'diaper': 1.0, 'pee': 1.0, 'the': 1.0, 'a': 4.0, 'well': 1.0, 'but': 1.0, 'boy': 1.0, 'they': 1.0, 'makes': 1.0, 'and': 1.0, 'do': 1.0, 'get': 1.0, 'out': 2.0}
Word element => {'fit': 1.0, 'a': 1.0, 'end': 1.0, 'smaller': 1.0, 'runs': 1.0, 'although': 1.0, 'great': 1.0, 'it': 3.0, 'enjoy': 1.0, 'os': 1.0, 'favorites': 1.0, 'diapers': 1.0, 'and': 1.0, 'my': 1.0, 'the': 2.0, 'on': 1.0, 'is': 1.0, 'cb': 1.0, 'i': 1.0, 'one': 1.0, 'has': 1.0, 'really': 1.0, 'of': 2.0}
Word element => {'looking': 1.0, 're': 1.0, 'try': 1.0, 'give': 1.0, 'comfortable': 1.0, 'very': 1.0, 'protection': 1.0, 'offer': 1.0, 'clean': 1.0, 'brands': 1.0, 'near': 1.0, 'during': 1.0, 'let': 1.0, 'but': 1.0, 'wetter': 1.0, 'pads': 1.0, 'bulkier': 1.0, 'larger': 1.0, 'little': 2.0, 'brand': 1.0, 'competition': 1.0, 'inside': 1.0, 'they': 3.0, 'go': 1.0, 'a': 7.0, 'million': 1.0, 'when': 1.0, 'night': 2.0, 'you': 2.0, 'perfect': 1.0, 'man': 1.0, 'pocket': 1.0, 'quite': 1.0, 'definitely': 1.0, 'giant': 1.0, 'think': 1.0, 'would': 2.0, 'bulky': 2.0, 'weeks': 1.0, 'bananas': 1.0, 'now': 2.0, 'decided': 1.0, 'son': 2.0, 'been': 1.0, 'and': 8.0, 'since': 1.0, 'for': 4.0, 'blueberry': 1.0, 't': 3.0, 'fit': 2.0, 'love': 1.0, 'leak': 1.0, 'parents': 1.0, 'time': 2.0, 'with': 1.0, 'hunt': 1.0, 'as': 2.0, 'heavy': 1.0, 'diaper': 3.0, 'fuzzibuns': 1.0, 'pregnant': 1.0, 'have': 3.0, 'finally': 1.0, 'down': 1.0, 'narrowed': 1.0, 've': 1.0, 'in': 1.0, 'randomly': 1.0, 'old': 1.0, 'cloth': 4.0, 'i': 7.0, 'had': 1.0, 'wear': 1.0, 'him': 1.0, 'it': 1.0, 'thought': 1.0, 'to': 3.0, 'was': 1.0, 'tried': 1.0, 'look': 2.0, 'at': 1.0, 'is': 4.0, 'rumparooz': 1.0, 'other': 2.0, '4': 1.0, 'adjustable': 1.0, 'our': 2.0, 'charlie': 3.0, 'my': 1.0, 'banana': 2.0, 'change': 1.0, 'takes': 1.0, 'we': 5.0, 'fine': 1.0, 'can': 1.0, 'so': 2.0, 'cake': 1.0, 'insert': 1.0, 'pop': 1.0, 'day': 3.0, 'diapers': 3.0, 'first': 1.0, 'are': 4.0, 'cute': 1.0, 'stylish': 1.0, 'great': 2.0, 'don': 2.0, 'if': 1.0, 'bigger': 1.0, 'every': 1.0, 'buttons': 1.0, 'like': 2.0, 'easy': 2.0, 'found': 1.0, 'bit': 1.0, 'know': 1.0, 'never': 1.0, 'some': 2.0, 'the': 10.0, 'of': 2.0, 'months': 1.0, 'legs': 1.0, 'also': 1.0, 'elastic': 1.0, 'front': 1.0, 'use': 1.0, 'load': 1.0, 'different': 1.0, 'that': 2.0, 'because': 1.0, 'them': 3.0, 'has': 1.0, '12': 1.0, 'won': 1.0, 'discretionary': 1.0, 'your': 1.0, 'flap': 1.0, 'out': 1.0, 'much': 1.0, 'do': 1.0}
Word element => {'recommend': 1.0, 'also': 1.0, 'in': 1.0, 'hip': 1.0, 'adjust': 1.0, 'dry': 1.0, 'at': 1.0, 'super': 1.0, 'waist': 1.0, 'to': 1.0, 'us': 1.0, 'when': 1.0, 'great': 3.0, 'the': 11.0, 'adjustable': 1.0, 'and': 6.0, 'away': 1.0, 's': 1.0, 'soaking': 1.0, 'inserts': 1.0, 'tightness': 1.0, 'is': 4.0, 'double': 1.0, 'pocket': 1.0, 'absorbency': 1.0, 'loved': 2.0, 'moisture': 1.0, 'it': 2.0, 'wet': 1.0, 'just': 1.0, 'front': 1.0, 'wicking': 1.0, 'allows': 1.0, 'this': 1.0, 'soft': 2.0, 'fit': 1.0, 'for': 1.0, 'delicate': 1.0, 'baby': 1.0, 'material': 2.0, 'highly': 1.0, 'bottoms': 1.0, 'from': 1.0, 'got': 1.0, 'even': 1.0, 'diaper': 1.0, 'insert': 1.0, 'bum': 1.0}
Word element => {'in': 1.0, 'are': 1.0, 'quality': 1.0, 'them': 2.0, 'a': 1.0, 'heard': 1.0, 'i': 2.0, 'understand': 1.0, 'completely': 1.0, 'cb': 1.0, 'they': 2.0, 'about': 1.0, 'ordered': 1.0, 'becoming': 1.0, 'didn': 1.0, 'satisfied': 1.0, 'the': 2.0, 'diaper': 1.0, 'great': 1.0, 't': 1.0, 'things': 1.0, 'let': 1.0, 'leaders': 1.0, 'because': 1.0, 'know': 1.0, 'market': 1.0, 'me': 1.0, 'and': 2.0, 'why': 1.0, 'very': 1.0, 'was': 1.0, 'with': 1.0, 'high': 1.0}
Word element => {'used': 1.0, 'her': 1.0, 'wash': 1.0, 'by': 1.0, 'just': 2.0, 'enough': 1.0, 'be': 4.0, 'd': 1.0, 'made': 1.0, 'them': 3.0, 'one': 2.0, 'ones': 1.0, 'thankfully': 1.0, 'if': 2.0, 'choice': 1.0, 'same': 1.0, 'did': 1.0, 'like': 2.0, 'manufacturer': 1.0, 'using': 1.0, 'only': 3.0, 'didn': 1.0, 'and': 7.0, 'bunch': 1.0, 'those': 1.0, 'not': 1.0, 'me': 1.0, 'my': 2.0, 'wetter': 1.0, 'leak': 5.0, 'diapers': 3.0, 'are': 1.0, 'different': 1.0, 'consistent': 1.0, 'is': 3.0, 'really': 1.0, 'types': 1.0, 'flip': 1.0, 'have': 4.0, 'i': 13.0, '4': 1.0, 'of': 7.0, 'the': 6.0, 'extreme': 1.0, 'these': 4.0, 'had': 2.0, 'either': 1.0, 'pretty': 1.0, 'to': 3.0, 'any': 1.0, 'on': 1.0, 'funny': 1.0, 'upset': 1.0, 'a': 5.0, 't': 6.0, 'even': 1.0, 'cloth': 1.0, 'basis': 1.0, 'for': 2.0, 'system': 1.0, 'never': 1.0, 'with': 1.0, 've': 2.0, 'all': 2.0, 'ever': 1.0, 'other': 3.0, 'help': 1.0, 'bought': 1.0, 'ending': 1.0, 'it': 2.0, 'diaper': 3.0, 'as': 1.0, 'heavy': 1.0, 'time': 1.0, 'because': 1.0, 'that': 2.0, 'so': 1.0, 'can': 2.0, 'four': 1.0, 'faulty': 1.0, 'up': 2.0, 'isn': 1.0, 'don': 1.0, 'tried': 2.0, 'own': 1.0, 'inserts': 2.0, 'consider': 1.0, 'won': 1.0, 'taking': 1.0, 'daughter': 1.0, 'out': 1.0, 'while': 1.0, 'wearing': 1.0, 'they': 1.0, 'others': 1.0, 'many': 2.0, 'she': 1.0, 'trusted': 1.0, 'will': 1.0, 'back': 1.0, 'world': 1.0}
Word element => {'again': 1.0, 'ss': 1.0, 'thru': 1.0, 'them': 2.0, 'send': 1.0, 'let': 3.0, 'at': 1.0, 'contacted': 1.0, 'serendipity': 2.0, 'then': 2.0, 'through': 1.0, 'anything': 1.0, 'days': 1.0, 'or': 1.0, 'returns': 1.0, 'on': 2.0, 'your': 1.0, '3': 1.0, 'deal': 1.0, 'know': 2.0, 'not': 2.0, 'amazon': 4.0, 'hassle': 1.0, 'phone': 1.0, 'but': 2.0, 'gift': 4.0, 'color': 1.0, 'recieved': 2.0, 'purchases': 1.0, 'oh': 1.0, 'with': 4.0, 'first': 2.0, 'this': 3.0, 'wish': 1.0, 'it': 5.0, 'me': 3.0, 'my': 2.0, 'party': 1.0, 'nice': 1.0, 'little': 1.0, 'and': 6.0, 'had': 2.0, 'what': 1.0, 'was': 2.0, 'to': 7.0, 'ever': 1.0, 'all': 3.0, 'exchange': 1.0, 'wanted': 2.0, 'a': 5.0, 'going': 1.0, 't': 3.0, 'bedding': 1.0, 'return': 4.0, 'purchasing': 1.0, 'bought': 2.0, 'registry': 1.0, 'so': 1.0, 'shopper': 2.0, 'does': 1.0, 'were': 1.0, 'known': 1.0, 'i': 12.0, 'calls': 1.0, 'they': 2.0, '3rd': 1.0, 'contact': 1.0, 'boy': 1.0, 'would': 1.0, 'her': 1.0, 'person': 1.0, 'the': 9.0, 'of': 2.0, 'do': 1.0, 'end': 2.0, 'you': 2.0, 'after': 2.0, 'unless': 1.0, 'have': 3.0, 'credit': 1.0, 'pay': 2.0, 'shipping': 2.0, 'buy': 1.0, 'wants': 1.0, 'for': 4.0, 'wasn': 1.0, 'happy': 1.0, 'now': 1.0, 'lovely': 1.0, 'account': 1.0, 'woman': 1.0, 'check': 1.0, 'in': 2.0, 'hadn': 1.0, 'set': 1.0, 'off': 1.0, 'own': 1.0, 'registered': 1.0, 'asked': 1.0, 'certainly': 1.0, 'who': 2.0, 'won': 1.0, 'be': 1.0}
Word element => {'unusable': 1.0, 'completely': 1.0, 'time': 1.0, 'quite': 1.0, 'have': 1.0, 'then': 1.0, 'did': 2.0, 'first': 1.0, 'almost': 1.0, 'arrived': 1.0, 'of': 1.0, 'child': 1.0, 'up': 1.0, 'dried': 1.0, 'right': 1.0, 'the': 5.0, 'defective': 1.0, 'imprint': 1.0, 'but': 1.0, 'work': 2.0, '2': 1.0, 'our': 1.0, 'all': 1.0, 'to': 2.0, 'was': 4.0, 'it': 5.0, 'this': 3.0, 'clay': 3.0, 'had': 2.0, 'purchased': 1.0, 'be': 1.0, 'and': 5.0, 'foam': 1.0, 'wasn': 1.0, 'consistency': 1.0, 'i': 1.0, 'when': 1.0, 'return': 1.0, 'styrofoam': 1.0, 'not': 2.0, 'shaped': 1.0, 'ribbon': 1.0, 'would': 1.0, 'like': 1.0, 'hold': 1.0, 'an': 1.0, 'also': 1.0, 'missing': 1.0, 'given': 1.0, 'product': 2.0, 'for': 2.0, 'while': 1.0, 'part': 1.0, 'were': 1.0, 'years': 1.0, 't': 1.0, 'could': 1.0, 'a': 2.0, 'we': 3.0, 'ago': 1.0}
Word element => {'because': 1.0, 'background': 1.0, 'white': 2.0, 'are': 1.0, 'the': 2.0, 'my': 1.0, 'daughter': 1.0, 'panels': 1.0, 'cute': 1.0, 'have': 1.0, 'loves': 1.0, 'walls': 1.0, 'it': 2.0, 's': 1.0, 'lavender': 1.0, 'i': 2.0, 'so': 1.0, 'up': 1.0, 'and': 2.0, 'very': 1.0, 'like': 1.0}
Word element => {'anyone': 1.0, 'for': 1.0, 'factor': 1.0, 'mess': 1.0, 'leakage': 1.0, 'no': 4.0, 'staying': 1.0, 'great': 1.0, 'house': 1.0, 're': 2.0, 'they': 1.0, 'them': 1.0, 'down': 1.0, 'up': 1.0, 'someone': 1.0, 'you': 1.0, 'when': 1.0, 'tied': 1.0, 'bag': 2.0, 'change': 1.0, 'stinky': 1.0, 'or': 2.0, 'gets': 2.0, 'hotel': 1.0, 'apartment': 1.0, 'line': 1.0, 'smell': 1.0, 'an': 1.0, 'diapers': 1.0, 'goes': 1.0, 'live': 1.0, 'after': 1.0, 'sacks': 1.0, 'bags': 1.0, 'straight': 1.0, 'hook': 1.0, 'disposable': 1.0, 'continued': 1.0, 'fabulous': 1.0, 'building': 1.0, 'diaper': 2.0, 'these': 1.0, 'in': 4.0, 'kid': 1.0, 'right': 1.0, 'ick': 1.0, 'summer': 1.0, 'infant': 1.0, 'inc': 1.0, 'out': 1.0, 'full': 1.0, 'this': 1.0, 'with': 1.0, 'of': 2.0, 'around': 1.0, 'trash': 1.0, 'always': 2.0, 'there': 1.0, 'has': 1.0, 'carry': 1.0, 'whenever': 1.0, 'chute': 2.0, 'at': 1.0, 'keep': 1.0, 'bought': 1.0, 'classy': 1.0, 'one': 2.0, 'and': 6.0, 'green': 2.0, 'the': 4.0, 'hanging': 1.0, 'on': 1.0, 'attached': 1.0, 'to': 1.0, 'that': 1.0, 'changing': 1.0, 'table': 1.0, 'wipes': 1.0, 's': 1.0, 'we': 4.0, 'a': 4.0, 'go': 1.0}
Word element => {'me': 1.0, 'on': 1.0, 'rip': 1.0, 'one': 1.0, 'had': 1.0, 'never': 1.0, 'about': 1.0, 'them': 1.0, 'thin': 1.0, 'are': 1.0, 'public': 1.0, 'wipes': 1.0, 'been': 1.0, 'into': 1.0, 'filled': 1.0, 'waste': 1.0, 'there': 1.0, 'available': 1.0, 'shocked': 1.0, 'this': 1.0, 'i': 2.0, 'less': 1.0, 've': 1.0, 'cost': 1.0, 'easier': 1.0, 'these': 1.0, 'trash': 1.0, 'more': 1.0, 'diaper': 2.0, 'for': 1.0, 'actually': 1.0, 'fit': 1.0, 'using': 2.0, 'and': 4.0, 'smart': 1.0, 'dog': 1.0, 'year': 1.0, 'competitors': 1.0, 'soiled': 1.0, 'don': 2.0, 'bags': 1.0, 'from': 1.0, 'much': 1.0, 'pet': 1.0, 'diapers': 1.0, 'in': 1.0, 'm': 1.0, 'category': 1.0, 'they': 2.0, 're': 1.0, 'really': 1.0, 'but': 1.0, 'can': 1.0, 'aren': 1.0, 'change': 1.0, 'if': 1.0, 'want': 1.0, 'convenient': 1.0, 'we': 1.0, 't': 3.0, 'a': 5.0, 'trashcan': 1.0, 'when': 1.0, 'you': 2.0, 'have': 3.0, 'to': 2.0, 'or': 1.0, 'were': 1.0, 'throw': 1.0, 'loose': 1.0}
Word element => {'room': 1.0, 'diapers': 3.0, 'my': 2.0, 'for': 3.0, 'using': 1.0, 'one': 1.0, 'diaper': 2.0, 'these': 1.0, 'the': 2.0, 'also': 2.0, 'having': 1.0, 'take': 1.0, 'bag': 1.0, 'smelly': 1.0, 'garbage': 1.0, 'ever': 1.0, 'buy': 1.0, 'received': 1.0, 'first': 1.0, 'have': 1.0, 'gift': 1.0, 'bags': 1.0, 'sons': 1.0, 'since': 1.0, 'at': 2.0, 'sold': 1.0, 'and': 3.0, 'wet': 2.0, 'use': 1.0, 'instead': 1.0, 'them': 2.0, 'clothes': 1.0, 'i': 3.0, 'etc': 1.0, 'home': 1.0, 'directly': 1.0, 'dirty': 1.0, 'of': 1.0, 'pail': 1.0, 'as': 1.0, 'to': 1.0, 'special': 1.0, 'a': 3.0, 'go': 1.0, 'been': 1.0, 'into': 1.0, 'in': 2.0, 'regular': 1.0, 'can': 1.0}
Word element => {'refills': 1.0, 'to': 1.0, 'quick': 1.0, 'it': 1.0, 'of': 2.0, 'too': 1.0, 'and': 4.0, 'i': 1.0, 'genie': 1.0, 'smell': 1.0, 'those': 1.0, 'way': 1.0, 'a': 1.0, 's': 1.0, 'love': 1.0, 'are': 3.0, 'my': 1.0, 'the': 2.0, 'these': 1.0, '99': 1.0, 'diaper': 1.0, 'dirty': 1.0, 'they': 2.0, 'sacks': 1.0, 'worth': 1.0, 'easy': 1.0, 'up': 1.0, 'anyway': 1.0, 'cheaper': 2.0, 'diapers': 2.0, 'out': 1.0, 'stiny': 1.0, 'them': 1.0, 'really': 1.0, 'better': 1.0, 'dispose': 1.0, 'quickly': 1.0, 'keep': 1.0, 'at': 1.0, 'pack': 1.0, 'nursery': 1.0, 'much': 2.0, 'r': 1.0, 'us': 1.0, '3': 1.0, 'babies': 1.0, 'totally': 1.0, 'maybe': 1.0, 'than': 1.0}
Word element => {'well': 1.0, 'hold': 1.0, 'and': 1.0, 'tear': 1.0, 'or': 1.0, 'rip': 1.0, 'never': 1.0, 'in': 1.0, 've': 1.0, 'thin': 1.0, 're': 1.0, 'had': 1.0, 'to': 2.0, 'don': 1.0, 'but': 1.0, 'diapers': 1.0, 'so': 1.0, 'have': 1.0, 'stinky': 2.0, 'trash': 1.0, 'can': 1.0, 'smell': 1.0, 'we': 4.0, 'them': 1.0, 'out': 1.0, 'run': 1.0, 't': 1.0, 'these': 1.0, 'the': 2.0, 'outside': 1.0, 'big': 1.0, 'every': 1.0, 'they': 2.0, 'time': 1.0, 'change': 1.0, 'for': 1.0, 'love': 1.0, 'one': 2.0}
Word element => {'s': 1.0, 'she': 1.0, 'a': 2.0, 'as': 1.0, 'them': 1.0, 'give': 1.0, 'gift': 1.0, 'bags': 1.0, 'and': 1.0, 'of': 2.0, 'types': 1.0, 'friend': 1.0, 'several': 1.0, 'two': 1.0, 'i': 1.0, 'tried': 1.0, 'are': 2.0, 'the': 1.0, 'these': 1.0, 'time': 1.0, 'they': 1.0, 'pregnant': 1.0, 'have': 1.0, 'we': 1.0, 'kids': 1.0, 'on': 1.0, 'every': 1.0, 'most': 1.0, 'effective': 1.0, 'cost': 1.0, 'announces': 1.0, 'environmentally': 1.0, 'sound': 1.0, 'top': 1.0, 'with': 1.0, 'it': 1.0}
Word element => {'potty': 1.0, 'trained': 1.0, 'have': 1.0, 'smell': 1.0, 'at': 1.0, 'fresh': 1.0, 'poo': 1.0, 'our': 1.0, 'contained': 1.0, 'keeping': 1.0, 'bags': 1.0, 'and': 1.0, 'the': 2.0, 'great': 1.0, 'a': 1.0, 'clean': 1.0, 'work': 1.0, 'will': 1.0, 'scent': 1.0, 'continue': 1.0, 'to': 1.0, 'buy': 1.0, 'till': 1.0, 'girl': 1.0, 'is': 1.0}
Word element => {'beat': 1.0, 'in': 1.0, 'fit': 1.0, 'these': 1.0, 'the': 1.0, 'tie': 1.0, 'there': 1.0, 'of': 2.0, 'up': 1.0, 'completely': 1.0, 'bring': 1.0, 'keep': 1.0, 'days': 1.0, 't': 2.0, 'a': 3.0, 'my': 1.0, 'diapers': 2.0, 'can': 2.0, 'work': 2.0, 'quality': 1.0, 'me': 1.0, 'and': 3.0, 'pack': 1.0, 'have': 2.0, 'to': 3.0, 'had': 1.0, 'still': 1.0, 'son': 1.0, 'with': 1.0, 'entire': 1.0, 'one': 1.0, 'shut': 1.0, 'worth': 1.0, 'yet': 1.0, 'bag': 3.0, 'i': 3.0, '4': 1.0, 'haven': 1.0, 'room': 1.0, 'rip': 1.0, 'they': 1.0, 'pleasant': 1.0, 'price': 1.0, 'an': 1.0, 'smell': 1.0, 'their': 2.0, 'vs': 1.0, 'be': 1.0}
Word element => {'are': 1.0, 'better': 1.0, 'they': 1.0, 'with': 1.0, 'stick': 1.0, 'easily': 1.0, 'rip': 1.0, 'control': 1.0, 'odor': 1.0, 'thinner': 1.0, 'than': 1.0, 'and': 1.0, 'bags': 2.0, 'at': 1.0, 'grocery': 1.0, 'much': 1.0, 'store': 1.0, 'you': 1.0, 'a': 1.0, 'get': 1.0, 'sassy': 1.0, 'transparent': 1.0, 'no': 1.0}
Word element => {'wipe': 1.0, 'with': 1.0, 'you': 1.0, 'take': 1.0, 'shouldn': 1.0, 'back': 1.0, 'll': 1.0, 'bag': 1.0, 'open': 1.0, 'slip': 1.0, 'tried': 1.0, 'through': 1.0, 'right': 1.0, 'finger': 2.0, 'my': 2.0, 'thin': 1.0, 'very': 1.0, 'will': 1.0, 'also': 1.0, 'because': 1.0, 'maybe': 1.0, 'use': 3.0, 'about': 1.0, '200': 1.0, 'of': 2.0, 'up': 3.0, 'box': 1.0, 'as': 3.0, 'to': 7.0, 'typically': 1.0, 'soon': 1.0, 'and': 4.0, 'toss': 1.0, 'diaper': 3.0, 'these': 2.0, 'ones': 3.0, 'the': 7.0, 'pee': 1.0, 'change': 1.0, 'but': 1.0, 'blue': 2.0, 'diapers': 2.0, 'long': 1.0, 'disposable': 1.0, 'sassy': 3.0, 'are': 2.0, 'sides': 1.0, 'summer': 2.0, 't': 1.0, 's': 1.0, 'go': 1.0, 'a': 2.0, 'sacks': 1.0, 'went': 1.0, 'come': 1.0, 'it': 2.0, 'considering': 1.0, 'try': 1.0, 'rose': 1.0, 'only': 2.0, 'in': 1.0, 'infant': 2.0, 'between': 1.0, 'they': 2.0, 'half': 1.0, 'size': 1.0, 'each': 1.0, 'new': 1.0, 'would': 1.0, 'fit': 2.0, '3': 1.0, 'two': 2.0, 'i': 6.0, '4': 1.0, 'before': 1.0, 'price': 1.0, 'd': 1.0, 'have': 2.0, 'which': 2.0, 'hold': 1.0, 'decided': 1.0, 'one': 4.0}
Word element => {'after': 1.0, 'clean': 1.0, 'diaper': 1.0, 'messy': 1.0, 'a': 1.0, 'handle': 1.0, 'can': 2.0, 'i': 1.0, 'bought': 1.0, 'to': 1.0, 's': 1.0, 'take': 1.0, 'the': 2.0, 'on': 1.0, 'they': 2.0, 'these': 1.0, 'dog': 2.0, 'up': 1.0, 'walk': 1.0, 'if': 1.0}
Word element => {'to': 1.0, 'really': 1.0, 'soiled': 1.0, 'getting': 1.0, 'clothes': 1.0, 'staying': 1.0, 'not': 1.0, 'other': 1.0, 'with': 1.0, 'success': 1.0, 've': 1.0, 'shipping': 1.0, 'paying': 1.0, 'be': 1.0, 'll': 1.0, 'think': 1.0, 'most': 1.0, 'but': 2.0, 'eligible': 1.0, 'prime': 1.0, 'daughter': 1.0, 'it': 5.0, 'these': 1.0, 'that': 2.0, 'problem': 1.0, 'her': 2.0, 'i': 7.0, 'poor': 1.0, 'they': 1.0, 'tiny': 1.0, 'pain': 1.0, 'this': 1.0, 'doing': 1.0, 'few': 1.0, 'keep': 1.0, 'bib': 1.0, 'quite': 1.0, 's': 1.0, 'a': 3.0, 'keeps': 1.0, 'sticker': 1.0, 'of': 3.0, 'worked': 1.0, 'more': 1.0, 'is': 2.0, 'use': 1.0, 'amazon': 1.0, 'purchased': 1.0, 'had': 2.0, 'was': 1.0, 'time': 1.0, 'so': 2.0, 'my': 2.0, '5': 1.0, 'fastened': 2.0, 'well': 1.0, 'half': 1.0, 'months': 1.0, 'and': 1.0, 'spend': 1.0, 'holding': 1.0, 'ordered': 1.0, 'hoping': 1.0, 'in': 1.0, 'the': 5.0, 'job': 1.0, 'place': 1.0, 'part': 1.0, 'from': 1.0, 'while': 1.0, 'yes': 1.0, 'feed': 1.0, 'for': 3.0, 'product': 2.0, 'than': 1.0, 'does': 2.0, 'because': 1.0}
Word element => {'thread': 1.0, 'had': 1.0, 'haven': 1.0, 'every': 1.0, 'tugged': 1.0, 'over': 1.0, 'up': 1.0, 'spit': 1.0, 'single': 1.0, 'very': 1.0, 'are': 1.0, 'they': 2.0, 'target': 1.0, 'durable': 1.0, 'ones': 1.0, 'standard': 1.0, 'than': 1.0, 'months': 2.0, 'g': 1.0, 'miss': 1.0, 'giraffe': 1.0, 'daughter': 2.0, 'hops': 1.0, 'frog': 1.0, 'named': 2.0, 'bigger': 1.0, 'at': 3.0, 'since': 1.0, 'see': 1.0, 't': 1.0, 'a': 2.0, 'too': 1.0, 'and': 5.0, 'inch': 1.0, 'getting': 1.0, 'has': 2.0, 'she': 1.0, 'mr': 1.0, 'huggybuddy': 2.0, 'for': 1.0, 'all': 1.0, 'as': 1.0, 'our': 2.0, 'to': 1.0, 'now': 1.0, 'playing': 1.0, 'the': 1.0, 'with': 2.0, 'cuddling': 1.0, 'her': 3.0, 'been': 1.0, 'loves': 1.0, 'them': 4.0, 'loose': 1.0, 'out': 1.0, '9': 1.0, 'i': 1.0, 'chewed': 1.0, 'but': 1.0, 'babbling': 1.0, '2': 1.0, 'can': 1.0, 'size': 1.0, 'much': 1.0, 'use': 1.0, 'of': 1.0, 'while': 1.0, 'longer': 1.0, 'is': 1.0, 'those': 1.0, 'not': 1.0, 'great': 1.0, 'big': 1.0}
Word element => {'tag': 1.0, 'play': 1.0, 'loves': 1.0, 'she': 1.0, 'and': 2.0, 'soft': 1.0, 'one': 1.0, 'to': 2.0, 'i': 1.0, 'old': 1.0, 'back': 1.0, 'my': 1.0, 'a': 1.0, 'cuddle': 1.0, 'froggy': 1.0, 'ordered': 1.0, 'the': 2.0, '2': 1.0, 'very': 1.0, 'as': 1.0, 'year': 1.0, 'clutched': 1.0, 'in': 1.0, 'up': 1.0, 'always': 1.0, 'her': 1.0, 'hand': 1.0, 'has': 1.0, 'with': 2.0, 'this': 1.0, 'it': 2.0, 's': 1.0}
Word element => {'so': 1.0, 'these': 1.0, 'prettier': 1.0, 'bold': 1.0, 'when': 1.0, 'i': 1.0, 'it': 1.0, 'much': 1.0, 'pack': 1.0, 'purchased': 1.0, 'carrier': 1.0, 'ebay': 1.0, 'are': 1.0, 'my': 1.0, 'the': 1.0, 'came': 1.0, 'on': 1.0, 'with': 1.0}
Word element => {'everyone': 1.0, 'with': 1.0, 'happy': 1.0, 'compliments': 1.0, 'many': 1.0, 'purchase': 1.0, 'neat': 1.0, 'fits': 1.0, 'covers': 1.0, 'it': 2.0, 't': 1.0, 'wouldn': 1.0, 'because': 1.0, 'carrier': 3.0, 'oxy': 1.0, 'of': 1.0, 'off': 1.0, 'to': 5.0, 'recommend': 1.0, 'was': 1.0, 'machine': 1.0, 'get': 1.0, 'easy': 2.0, 'and': 8.0, 'very': 2.0, 'adorable': 1.0, 'options': 1.0, 'out': 2.0, 'quality': 1.0, 'them': 3.0, 'so': 3.0, 'delicate': 1.0, 'i': 7.0, 'am': 1.0, 'shrink': 1.0, 'when': 1.0, 'ergo': 1.0, 'only': 2.0, 'came': 2.0, 'these': 2.0, 'the': 8.0, 'nice': 1.0, 'excited': 1.0, 'great': 1.0, 'they': 3.0, 'dry': 1.0, 'washed': 1.0, 'on': 3.0, 'put': 2.0, 'make': 1.0, 'are': 1.0, 'different': 1.0, 'good': 1.0, 'clean': 1.0, 'fabric': 1.0, 'have': 1.0, 'is': 1.0, 'wash': 1.0, 'in': 2.0, 'hand': 1.0, 'want': 1.0, 'if': 1.0, 'were': 1.0, 'would': 2.0, 'use': 1.0, 'cycle': 1.0, 'line': 1.0}
Word element => {'husband': 1.0, 'neutral': 1.0, 'are': 1.0, 'colors': 1.0, 'else': 1.0, 'cozy': 1.0, 'an': 1.0, 'lap': 1.0, 'plane': 1.0, 'air': 1.0, 'in': 2.0, 'holding': 1.0, 'used': 1.0, 'have': 1.0, 'whole': 1.0, 'anything': 2.0, 'do': 1.0, 'notices': 1.0, 'me': 1.0, 'too': 1.0, 'and': 3.0, 'i': 3.0, 'old': 1.0, 'her': 3.0, 'long': 1.0, 'wear': 2.0, 'time': 1.0, 'so': 2.0, 'while': 3.0, 'be': 1.0, 'allows': 1.0, 'this': 1.0, 'with': 1.0, 'well': 1.0, 'front': 1.0, 'hardly': 1.0, 'a': 1.0, 'it': 4.0, 'she': 5.0, 'worth': 1.0, 'both': 1.0, 'snuggles': 1.0, 'wore': 1.0, 'week': 1.0, 'the': 5.0, 'my': 3.0, 'perfectly': 1.0, '8': 1.0, 'sit': 1.0, 'worn': 1.0, 'to': 3.0, 'all': 1.0, 'money': 1.0, 'can': 1.0, 'side': 1.0, 'is': 2.0, 'day': 1.0, 'legs': 1.0, 'enough': 2.0, 'on': 1.0, 'great': 1.0, 'until': 1.0, 'big': 1.0, 'comfortable': 1.0, 'at': 1.0, 'fair': 1.0, 'will': 1.0, 'also': 1.0, 'slept': 1.0}
Word element => {'long': 1.0, 'run': 1.0, 'after': 1.0, 'did': 1.0, 'my': 1.0, 'happy': 1.0, 'and': 2.0, 'quality': 1.0, 'time': 1.0, 'adjust': 1.0, 'hope': 1.0, 'good': 1.0, 'not': 1.0, 'washing': 1.0, 'colour': 1.0, 'easy': 1.0, 'straps': 1.0, 'purchase': 1.0, 'use': 1.0, 'to': 2.0, 'i': 1.0, 'with': 1.0, 'this': 1.0, 'for': 1.0, 'a': 1.0}
Word element => {'just': 1.0, 'less': 1.0, 'injuries': 1.0, 'serious': 1.0, 'had': 1.0, 'back': 3.0, 'killed': 1.0, 'ones': 1.0, 'favorite': 1.0, 'her': 1.0, 'carriers': 1.0, 'other': 2.0, 'used': 1.0, 'the': 3.0, 'is': 1.0, 'more': 1.0, 'don': 1.0, 'baby': 3.0, 'you': 1.0, 'are': 1.0, 'an': 1.0, 'but': 2.0, 'tore': 1.0, 'secure': 1.0, 'newborn': 1.0, 'grocery': 1.0, 'in': 4.0, 'carrying': 2.0, 'some': 1.0, 'recommend': 1.0, 'insert': 1.0, 'mastered': 1.0, 'lot': 1.0, 'my': 7.0, 'ergo': 2.0, 'and': 3.0, 'getting': 1.0, 'if': 1.0, 'so': 1.0, 'than': 1.0, 'does': 1.0, 'etc': 1.0, 'i': 6.0, 'putting': 1.0, 've': 1.0, 'would': 1.0, 'using': 1.0, 'actually': 1.0, 'love': 1.0, 'for': 1.0, 'parking': 1.0, 'arms': 1.0, 'absolutely': 1.0, 'bothers': 1.0, 'use': 1.0, 'felt': 1.0, 'it': 3.0, 'this': 3.0, 'people': 1.0, 'take': 1.0, 'to': 1.0, 'have': 2.0, 'on': 1.0, 't': 1.0, 'walks': 1.0, 'a': 1.0}
Word element => {'than': 1.0, 'other': 1.0, 'prevent': 1.0, 'but': 1.0, 'holder': 1.0, 'not': 1.0, 'pocket': 2.0, 'also': 1.0, 'had': 1.0, 'when': 1.0, 'easily': 1.0, 'like': 2.0, 'in': 1.0, 'bottle': 1.0, 'so': 1.0, 'it': 8.0, 'he': 2.0, 'head': 1.0, 'sun': 2.0, 'really': 2.0, 'has': 2.0, 'to': 3.0, 'loves': 1.0, 'that': 3.0, 'love': 1.0, 'use': 1.0, 'simple': 1.0, 'its': 1.0, 'much': 1.0, 'too': 1.0, 'and': 3.0, 'asleep': 1.0, 'the': 3.0, 'comfortable': 1.0, 'great': 3.0, 'falls': 1.0, 'little': 1.0, 'fact': 1.0, 'my': 1.0, 'baby': 1.0, 'a': 2.0, 'hoody': 1.0, 'pockets': 1.0, 'cover': 1.0, 'from': 2.0, 'rain': 1.0, 'plus': 1.0, 'his': 1.0, 'holds': 1.0, 'is': 2.0, 'sleeps': 1.0, 'i': 1.0, 'two': 1.0, 'additional': 1.0, 'woild': 1.0, 'him': 1.0, 'be': 1.0, 'if': 1.0}
Word element => {'reversible': 1.0, 'be': 1.0, 'ensure': 1.0, 'they': 1.0, 'world': 1.0, 'face': 1.0, 'baby': 2.0, 'of': 1.0, 'tod': 1.0, 'stroller': 1.0, 'result': 1.0, 'goes': 1.0, 'so': 1.0, '5': 1.0, 'unecessary': 1.0, 'decided': 1.0, 'in': 3.0, 'outgrow': 1.0, 'will': 1.0, 'cushion': 1.0, 'infant': 1.0, 'with': 1.0, 'perfectly': 1.0, 'position': 2.0, 'would': 1.0, 'still': 1.0, 'ergo': 1.0, 'well': 1.0, 'we': 1.0, 'a': 3.0, 'not': 3.0, 'if': 1.0, 'back': 2.0, 'rest': 1.0, 'hips': 1.0, '4mo': 1.0, 'no': 1.0, 'because': 2.0, 'does': 1.0, '4': 1.0, 'i': 2.0, 'tried': 1.0, 'the': 6.0, 'perfect': 1.0, 'pain': 2.0, 'this': 2.0, 'major': 1.0, 'expenses': 1.0, 'tiny': 1.0, 'only': 1.0, 'soon': 1.0, 'too': 1.0, 'and': 4.0, 'cannot': 2.0, 'using': 1.0, 'stars': 1.0, 'for': 2.0, 'or': 1.0, '23lbs': 1.0, 'little': 1.0, 'my': 2.0, '20mo': 1.0, 'is': 5.0, 'make': 1.0, 'on': 1.0, 'your': 1.0, 'then': 1.0, 'great': 1.0, 'feel': 1.0, 'front': 1.0, 'use': 1.0, 'am': 1.0, 'you': 1.0, 'sitting': 1.0, 'work': 1.0, 'but': 3.0, 'can': 1.0, 'instead': 1.0, 'there': 1.0, 'nothing': 1.0, 'due': 1.0, 'suitable': 1.0, 'our': 1.0, 'as': 2.0, 'to': 3.0, 'belt': 1.0, '14lbs': 1.0, '25in': 1.0, 'misuse': 1.0, 'that': 2.0, 'it': 5.0, 'she': 3.0}
Word element => {'it': 1.0, 'in': 1.0, 'he': 1.0, 'big': 1.0, 'i': 1.0, 'liked': 2.0, 'my': 1.0, 'the': 1.0, 'is': 1.0, 'a': 1.0, 'ergobaby': 1.0, 'always': 1.0, 'organic': 1.0, 'baby': 2.0, 'little': 1.0, 'sleep': 1.0, 'but': 1.0, 'too': 1.0}
Word element => {'have': 1.0, 'wasn': 1.0, 'just': 1.0, '2': 1.0, 'don': 1.0, 'over': 1.0, 'now': 1.0, 've': 1.0, 'injured': 1.0, 'lucky': 1.0, 'balance': 2.0, 'hands': 1.0, 'the': 5.0, 'apply': 1.0, 'pay': 2.0, 'still': 1.0, 'us': 2.0, 'problem': 1.0, 'r': 1.0, 'their': 1.0, 'hours': 1.0, 'true': 1.0, 'credit': 3.0, 'used': 1.0, 'retailer': 1.0, 'they': 5.0, 'been': 1.0, 'gave': 1.0, 'babies': 1.0, 'that': 1.0, 'companies': 1.0, 'use': 1.0, 'phone': 1.0, 'amazon': 5.0, 'want': 2.0, 'is': 2.0, 'around': 1.0, 'counterfeit': 1.0, 'i': 4.0, 't': 2.0, 'we': 1.0, 'a': 7.0, 'months': 1.0, '5': 1.0, 'sent': 1.0, 'carriers': 1.0, 'and': 3.0, 'refund': 1.0, 'trying': 1.0, 'giving': 1.0, 'do': 1.0, 'full': 1.0, 'well': 1.0, 'ergo': 3.0, 'baby': 2.0, 'for': 2.0, 'yet': 1.0, 'fake': 1.0, 'on': 3.0, 'carried': 1.0, 'in': 1.0, 'using': 1.0, 'which': 1.0, 'suppliers': 1.0, 'denying': 1.0, 'an': 1.0, 'from': 3.0, 'bigger': 1.0, 'who': 1.0, 'refusing': 1.0, 'stock': 1.0, 'instead': 1.0, 'my': 3.0, 'purchase': 2.0, 'gift': 4.0, 'are': 3.0, 'card': 7.0, 'me': 3.0, 'not': 1.0, 'aware': 1.0, 'authorized': 1.0, 'our': 1.0, 'as': 1.0, 'to': 6.0}
Word element => {'old': 1.0, 'not': 1.0, 'a': 2.0, 'newborn': 1.0, 'perfect': 1.0, 'with': 1.0, 'than': 1.0, 'better': 1.0, 'thus': 1.0, 'much': 1.0, 'made': 1.0, 'began': 1.0, 'my': 1.0, 'ergo': 1.0, 'smart': 1.0, 'was': 1.0, 'to': 3.0, 'for': 2.0, 'switched': 1.0, 'which': 1.0, 'carrier': 1.0, 'babybjorn': 2.0, 'baby': 2.0, 'year': 1.0, 'very': 1.0, 'and': 1.0, 'feel': 2.0, 'too': 1.0, 'after': 1.0, 'small': 1.0, 'the': 1.0, 'we': 1.0, 'needed': 1.0, 'carry': 1.0, 'on': 1.0, 'but': 1.0, 'back': 2.0, 'our': 2.0, 'something': 1.0, 'that': 1.0}
Word element => {'highly': 1.0, 'thing': 1.0, 'best': 1.0, 'everywhere': 1.0, 'spoon': 1.0, 'feed': 2.0, 'ever': 1.0, 'day': 1.0, 'his': 1.0, 'takes': 1.0, 'of': 1.0, 'rather': 1.0, 'hips': 1.0, 'is': 1.0, 'son': 1.0, 'that': 1.0, 'being': 1.0, 'for': 1.0, 'in': 3.0, 'comfortable': 2.0, 'bought': 1.0, 'months': 1.0, 'also': 1.0, 'seven': 1.0, 'during': 1.0, 'weighs': 1.0, 'cramped': 1.0, 'i': 7.0, 'well': 1.0, 'has': 1.0, 'he': 3.0, 'it': 5.0, 'this': 2.0, 'with': 2.0, 'recommend': 1.0, 'was': 1.0, 'husband': 1.0, 'all': 1.0, 'as': 1.0, 'to': 1.0, 'very': 1.0, 'little': 1.0, 'baby': 1.0, 'weight': 1.0, '210': 1.0, 'back': 2.0, 'breast': 1.0, 'use': 1.0, 'everyday': 1.0, 'naps': 1.0, 'anything': 1.0, 'old': 1.0, 'non': 1.0, 'used': 1.0, 'than': 1.0, 'does': 1.0, 'down': 1.0, 'stop': 1.0, 'the': 5.0, 'my': 6.0, 'given': 1.0, 'and': 3.0, 'most': 1.0, 'but': 1.0, 'can': 2.0, 'take': 1.0, 'pretty': 1.0, 'pack': 4.0, 'do': 1.0, 'much': 1.0, 'put': 1.0, '110': 1.0, 'on': 2.0, 'when': 1.0, 'lbs': 1.0, 'weigh': 1.0, 'freedom': 1.0, 'child': 1.0, 'me': 3.0, 'not': 1.0, 'like': 1.0, 'him': 1.0, 'be': 1.0, 'a': 1.0, 's': 3.0}
Word element => {'use': 1.0, 'fully': 1.0, 'easy': 1.0, 'very': 1.0, 'them': 1.0, 'this': 1.0, 'be': 1.0, 'to': 2.0, 'baby': 2.0, 'been': 1.0, 'want': 1.0, 'is': 1.0, 'others': 1.0, 'for': 1.0, 'comfortable': 1.0, 'your': 1.0, 'recomentded': 1.0, 'i': 1.0, 'if': 1.0, 'non': 1.0, 've': 1.0, 'some': 1.0, 'hates': 1.0, 'ergonomic': 1.0, 'my': 1.0, 'you': 2.0, 'trying': 1.0, 'carriers': 1.0, 'and': 1.0}
Word element => {'product': 1.0, 'fist': 1.0, 'the': 1.0, 'holding': 1.0, 'still': 1.0, 'stay': 1.0, 'he': 1.0, 'it': 4.0, 'can': 1.0, 'without': 1.0, 'kid': 1.0, 'wife': 1.0, 'very': 1.0, 'day': 1.0, 'year': 1.0, 'she': 1.0, 'been': 1.0, 'to': 1.0, 'its': 1.0, 'my': 2.0, 'good': 1.0, 'loves': 2.0, 'got': 1.0, 'complaning': 1.0, 'there': 1.0, 'extended': 1.0, 'like': 1.0, 'periots': 1.0, 'for': 3.0, 'using': 1.0, 'a': 1.0, 'and': 1.0}
Word element => {'green': 1.0, 'solid': 1.0, 'month': 1.0, 'four': 1.0, 'pre': 1.0, 'suited': 1.0, 'classicbefore': 1.0, 'black': 1.0, 'size': 2.0, 'seems': 1.0, 'does': 1.0, 'frustrating': 1.0, 'been': 1.0, 'needs': 1.0, 'meet': 1.0, 'has': 2.0, 'necessary': 1.0, 'isn': 1.0, 'inser': 1.0, 'or': 1.0, 'all': 1.0, 'hold': 1.0, 'backs': 1.0, 'their': 1.0, 'concerned': 1.0, 'best': 1.0, 'much': 3.0, 'larger': 1.0, 'significantly': 1.0, 'thus': 1.0, 'website': 1.0, 'as': 2.0, 'sides': 1.0, 'medium': 1.0, 'indicate': 1.0, 'stretch': 1.0, 'hard': 1.0, 'am': 1.0, 'construction': 1.0, 'personal': 1.0, 'partly': 2.0, 'taste': 1.0, 'realize': 1.0, 'hates': 1.0, 'your': 2.0, 'always': 1.0, 'unless': 1.0, 'deficit': 1.0, 'assist': 1.0, 'having': 2.0, 'fastening': 1.0, 'wrap': 3.0, 'let': 1.0, 'carrier': 7.0, 'sling': 1.0, 'wanted': 1.0, 'alone': 1.0, 'home': 1.0, 'handling': 1.0, 'days': 1.0, 'help': 1.0, 'didn': 1.0, 'reassurance': 1.0, 'happen': 1.0, 'dinners': 1.0, 'use': 1.0, 'especially': 1.0, 'with': 3.0, 'someone': 1.0, 'good': 2.0, 'large': 1.0, 'tube': 1.0, 'breathing': 1.0, 'tell': 1.0, 'need': 1.0, 'also': 1.0, 'totally': 1.0, 'you': 5.0, 'dangerous': 1.0, 'fabulous': 1.0, 'up': 1.0, 'standing': 1.0, 'getting': 1.0, 'asleep': 1.0, 'back': 4.0, 'perhaps': 2.0, 'pretty': 2.0, 'calm': 1.0, 'became': 1.0, 've': 1.0, 'while': 1.0, 'may': 1.0, 'facing': 3.0, 'would': 5.0, 'legs': 1.0, 'then': 2.0, 'only': 2.0, 'another': 1.0, 'think': 4.0, 'parent': 1.0, 'do': 7.0, 'general': 1.0, 'put': 2.0, 'ensconced': 1.0, 'onto': 1.0, 'in': 12.0, 'seat': 1.0, 'experiences': 1.0, 'terribly': 1.0, 'i': 23.0, 'suits': 1.0, 'ouml': 4.0, 'but': 9.0, 'crib': 1.0, 'sometimes': 1.0, 'that': 12.0, 'times': 1.0, 'fall': 1.0, 'because': 3.0, 'into': 3.0, 'belt': 2.0, 'beat': 1.0, 'slipped': 1.0, 'than': 3.0, 'wear': 2.0, 'difficult': 2.0, 'thought': 1.0, 'when': 14.0, 'handier': 1.0, 'don': 1.0, 'still': 2.0, 'great': 1.0, 'clipping': 1.0, 'if': 2.0, 'reliable': 1.0, 'throwing': 1.0, 'out': 5.0, 'it': 22.0, 'be': 10.0, 'too': 1.0, 'naptime': 1.0, 'one': 1.0, 'fluff': 1.0, 'just': 1.0, 'and': 24.0, 'feels': 1.0, 'daughter': 5.0, 'to': 35.0, 'right': 1.0, 'myself': 1.0, 'place': 3.0, 'process': 2.0, 'the': 53.0, 'me': 7.0, 'there': 2.0, 'rave': 1.0, 'rn': 4.0, 'at': 4.0, 'her': 12.0, 'about': 3.0, 'couldn': 1.0, 'lift': 1.0, 'liability': 1.0, 'fitted': 1.0, 'us': 1.0, 'pouch': 1.0, 'shopping': 2.0, 'pack': 3.0, 'cart': 1.0, 'we': 4.0, 'reviews': 1.0, 'warmth': 1.0, 'go': 2.0, 'fasten': 1.0, 'nap': 1.0, 'a': 13.0, 'doesn': 1.0, 'm': 2.0, 's': 6.0, 'soothe': 1.0, 'against': 1.0, 'better': 3.0, 'bj': 3.0, 'waist': 1.0, 'fasteners': 1.0, 'lifesaver': 1.0, 'both': 1.0, 'easier': 1.0, 'needed': 2.0, 'now': 5.0, 'of': 16.0, 'old': 4.0, 'around': 4.0, 'newborn': 1.0, 'say': 1.0, 'on': 4.0, 'difficulty': 1.0, 'my': 17.0, 'are': 1.0, 'first': 1.0, 'major': 1.0, 'plus': 2.0, 'drift': 1.0, 'so': 2.0, 'is': 18.0, 'can': 2.0, 'enough': 2.0, 't': 8.0, 'above': 1.0, 'off': 1.0, 'multiple': 1.0, 'see': 1.0, 'find': 2.0, 'ways': 1.0, 'very': 3.0, '58': 1.0, 'sleeping': 1.0, 'fit': 2.0, 'easy': 2.0, 'able': 1.0, 'often': 2.0, 'get': 3.0, 'however': 1.0, 're': 2.0, 'know': 1.0, 'unlatch': 1.0, 'thirteen': 1.0, 'make': 1.0, 'she': 7.0, 'mattress': 1.0, 'cushioned': 1.0, 'olive': 1.0, 'other': 2.0, 'adult': 1.0, 'an': 1.0, 'people': 1.0, 'more': 1.0, 'adept': 1.0, 'was': 4.0, 'relatively': 1.0, 'this': 11.0, 'position': 2.0, 'itself': 1.0, 'materials': 1.0, 'child': 1.0, 'material': 1.0, 'toddler': 2.0, 'somehow': 1.0, 'front': 4.0, 'bigger': 1.0, 'support': 1.0, 'sleep': 1.0, 'include': 1.0, 'babybj': 1.0, 'baby': 21.0, 'ease': 1.0, 'free': 1.0, 'buckling': 1.0, 'will': 3.0, 'original': 3.0, 'spite': 1.0, 'outward': 1.0, 'negative': 1.0, 'currently': 1.0, 'review': 4.0, 'might': 1.0, 'hands': 1.0, 'want': 2.0, 'below': 1.0, 'backpack': 2.0, 'parents': 3.0, 'for': 7.0, 'really': 3.0, 'happy': 1.0, 'useful': 3.0, 'promotional': 1.0, '11': 1.0, 'had': 1.0, 'not': 2.0, 'bother': 1.0, 'buying': 1.0, 'some': 1.0, 'itty': 1.0, 'without': 2.0, 'maybe': 1.0, 'bitty': 1.0, 'older': 1.0, 'helpful': 2.0, 'revise': 1.0, 'world': 1.0, 'new': 1.0, 'wasn': 1.0, 'like': 2.0, 'from': 1.0, 'who': 1.0, 'loved': 1.0, 'instructions': 2.0, 'suggest': 1.0, 'felt': 1.0, 'months': 3.0, 'otherwise': 1.0, 'yet': 2.0, '4': 1.0, 'work': 2.0, 'though': 1.0, 'by': 1.0, 'infant': 2.0, 'product': 4.0, 'insert': 5.0, 'did': 1.0, 'time': 1.0, 'kind': 1.0, 'turns': 1.0, 'found': 1.0, 'have': 3.0, 'hot': 1.0, 'ergo': 15.0, 'dog': 1.0, 'maya': 2.0, 'being': 1.0, 'mother': 1.0, 'prefers': 1.0, 'body': 3.0, 'again': 1.0, 'which': 3.0}
Word element => {'touching': 1.0, 'but': 1.0, 'use': 2.0, 'far': 1.0, 'ground': 1.0, 'well': 1.0, 'as': 1.0, 'best': 1.0, 'i': 2.0, 'by': 1.0, 'carrier': 1.0, 'it': 1.0, 'this': 1.0, 'the': 2.0, 't': 1.0, 'have': 1.0, 'is': 1.0, 'much': 1.0, 'to': 2.0, 'easier': 1.0, 'moby': 1.0, 'in': 1.0, 'public': 1.0, 'don': 1.0, 'worry': 1.0, 'bout': 1.0}
Word element => {'everybody': 1.0, 'recommend': 1.0, 'carrier': 1.0, 'soooooooooooooo': 1.0, 'little': 1.0, 'of': 1.0, 'rid': 1.0, 'good': 1.0, 'or': 2.0, 'whether': 1.0, 'i': 4.0, 'when': 1.0, 'my': 2.0, 'great': 1.0, 'debating': 1.0, 'to': 2.0, 'now': 1.0, 'was': 2.0, 'so': 1.0, '2nd': 1.0, 'am': 1.0, 'because': 1.0, 'not': 1.0, 'just': 1.0, 'want': 1.0, 'longer': 1.0, 'is': 2.0, 'for': 2.0, 'using': 1.0, 'a': 2.0, 'still': 2.0, 'baby': 2.0, 'it': 2.0, 'first': 1.0, 'this': 4.0, 'he': 1.0, 'use': 1.0, 'keeping': 1.0, 'already': 1.0, '3': 1.0, 'toddler': 1.0, 'getting': 1.0, 'and': 1.0}
Word element => {'ll': 1.0, 'on': 1.0, 'out': 1.0, 'planning': 1.0, 'wasn': 1.0, 'came': 1.0, 'infant': 1.0, 'since': 1.0, 'see': 1.0, 'guess': 1.0, 'i': 4.0, 'last': 1.0, 'of': 1.0, 'wearing': 1.0, 'was': 1.0, 'to': 2.0, 'that': 1.0, 'were': 1.0, 'using': 1.0, 'one': 2.0, 'snag': 1.0, 'lucky': 1.0, 'love': 1.0, 'with': 2.0, 'come': 1.0, 'it': 5.0, 'try': 1.0, 'either': 1.0, 'we': 1.0, 'hubby': 1.0, 'navy': 1.0, 'and': 1.0, 'but': 1.0, 'surprised': 1.0, 'blue': 1.0, 'doesn': 1.0, 'quality': 1.0, 'the': 2.0, 'great': 1.0, 'ones': 1.0, 't': 2.0, 'insert': 1.0, 'mind': 1.0}
Word element => {'price': 1.0, 'worth': 1.0, 'insert': 1.0, 'heart': 2.0, 'loves': 1.0, 'it': 1.0, 'i': 1.0, 'also': 1.0, 'comfortable': 1.0, 'very': 1.0, 'and': 1.0, 'infant': 2.0, 'to': 1.0, 'purchased': 1.0, 'my': 1.0, 'the': 2.0}
Word element => {'recommend': 1.0, 'all': 1.0, 'at': 1.0, 'hours': 1.0, 'love': 3.0, 'for': 1.0, 'daughter': 1.0, 'month': 1.0, 'on': 1.0, 'sceptical': 1.0, 'old': 1.0, 'i': 4.0, '6': 1.0, 'completely': 1.0, 'my': 2.0, 'more': 1.0, 'the': 1.0, 'be': 1.0, 'would': 1.0, 'was': 2.0, 'forgiving': 1.0, 'carrier': 2.0, 'it': 1.0, 'this': 2.0, 'shoulders': 1.0, 'that': 1.0, 'and': 1.0, 'back': 1.0, 'but': 1.0, 'highly': 1.0, 'any': 1.0, 'babybjorn': 1.0, 'than': 1.0, 'wrong': 1.0, 'soreness': 1.0, 'without': 1.0, 'can': 1.0, 'wear': 1.0}
Word element => {'dont': 1.0, 'note': 1.0, 'space': 1.0, 'strollers': 1.0, 'holding': 1.0, 'old': 1.0, '2yr': 1.0, 'umbrella': 1.0, 'than': 1.0, 'way': 4.0, 'family': 1.0, 'internacionally': 1.0, 'travelling': 2.0, 'came': 1.0, 's': 1.0, 'id': 1.0, 'put': 1.0, 'sec': 1.0, 'hip': 1.0, 'with': 4.0, 'purchace': 1.0, 'buying': 2.0, 'on': 3.0, 'actually': 1.0, 'for': 2.0, 'love': 2.0, 'or': 1.0, 'min': 1.0, 'just': 5.0, 'pieces': 1.0, 'got': 2.0, 'back': 2.0, 'recomend': 1.0, 'carrier': 1.0, 'is': 3.0, 'say': 1.0, 'more': 1.0, 'if': 1.0, 'stoller': 1.0, 'asked': 1.0, 'comes': 1.0, 'that': 2.0, 'loves': 1.0, '5': 1.0, 'so': 4.0, 'can': 1.0, 'pregnant': 1.0, 'about': 2.0, 'whole': 1.0, 'p': 1.0, 'from': 3.0, 'found': 1.0, 'easy': 1.0, 'get': 1.0, 'lot': 2.0, 'a': 4.0, 'to': 11.0, 'it': 12.0, 'fell': 1.0, 'first': 1.0, 'an': 1.0, 'all': 2.0, 'ever': 2.0, 'day': 2.0, 'thats': 1.0, 'i': 13.0, '4': 1.0, 'when': 2.0, 'was': 3.0, 'buggies': 1.0, 'carry': 1.0, 'aunt': 1.0, 'child': 1.0, 'she': 1.0, 'baby': 2.0, 'babybjorn': 2.0, 'did': 1.0, 'after': 1.0, 'canada': 1.0, 'weight': 1.0, 'reserched': 1.0, 'instead': 1.0, 'sore': 1.0, 'there': 1.0, 'carriers': 1.0, 'infact': 1.0, 'we': 1.0, 'then': 1.0, 'time': 1.0, 'heard': 1.0, 'hesitate': 1.0, 'my': 10.0, 'me': 1.0, '1': 1.0, 'friend': 1.0, 'month': 1.0, 'ergo': 4.0, 'told': 1.0, 'best': 2.0, 'im': 1.0, 'your': 1.0, 'mom': 1.0, 'had': 2.0, 'hand': 1.0, 'buy': 1.0, 'ship': 1.0, 'bought': 1.0, 'anyone': 1.0, 'and': 7.0, 'the': 7.0, 'of': 3.0, 'her': 3.0, 'use': 2.0, 'amazon': 1.0, 'hers': 1.0, 'in': 3.0, 'orderd': 1.0, 'days': 1.0, '5th': 1.0, 'shipped': 1.0, '2': 1.0, 'happens': 1.0, 'thinking': 1.0, 'picked': 1.0, 'canadian': 1.0, 'especially': 1.0, 'doesnt': 1.0, 'better': 2.0, 'sell': 1.0, 'how': 1.0, 'this': 3.0, '30': 1.0, 'car': 1.0, '7': 1.0, 'up': 2.0, 'takes': 2.0}
Word element => {'help': 1.0, 'external': 1.0, 'sit': 1.0, 'how': 1.0, 'learn': 1.0, 'few': 1.0, 'a': 1.0, 'do': 1.0, 'solution': 1.0, 'easiest': 1.0, 'ergo': 1.0, 'or': 2.0, 'your': 1.0, 'on': 4.0, 'looking': 1.0, 'something': 1.0, 'position': 1.0, 'minutes': 1.0, 'was': 2.0, 'any': 1.0, 'to': 6.0, 'using': 1.0, 'for': 3.0, 'product': 1.0, 'ergobaby': 1.0, 'side': 2.0, '7': 1.0, 'be': 1.0, 'heavvy': 1.0, 'happy': 1.0, 'my': 3.0, 'and': 2.0, 'too': 1.0, 'i': 5.0, 'old': 1.0, 'need': 1.0, 'found': 1.0, 'this': 1.0, 'have': 1.0, 'used': 1.0, 'before': 1.0, 'about': 1.0, 'several': 1.0, 'baby': 4.0, 'started': 1.0, 'very': 1.0, 'her': 2.0, 'carriers': 1.0, 'when': 1.0, 'am': 1.0, 'you': 3.0, 'it': 1.0, 'she': 2.0, 'month': 1.0, 'infant': 1.0, 'if': 1.0, 'want': 1.0, 'front': 1.0, 'use': 2.0, 'without': 1.0, 'the': 6.0, 'insert': 1.0, 'at': 1.0, 'carry': 2.0, 'that': 2.0, 'time': 1.0, 'began': 1.0, 'carrier': 1.0, 'back': 3.0, 'in': 4.0, 'order': 1.0}
Word element => {'are': 1.0, 'who': 1.0, 'us': 1.0, 'for': 1.0, 'actually': 1.0, 'somewhere': 1.0, 'know': 1.0, 'side': 1.0, 'were': 1.0, 'alone': 1.0, 're': 1.0, 'if': 1.0, 'cause': 1.0, 'you': 3.0, 'of': 2.0, 'once': 1.0, 'comfortable': 1.0, 'back': 2.0, 'front': 2.0, 'put': 1.0, 'on': 4.0, 'accessible': 1.0, 'over': 1.0, 'wish': 1.0, 'lost': 1.0, 'this': 1.0, 'it': 4.0, 'with': 2.0, 'shoulders': 1.0, 'impossible': 1.0, 'those': 1.0, 'not': 2.0, 'buckles': 1.0, 'or': 1.0, 'almost': 1.0, 'i': 7.0, 'tried': 3.0, 'bounce': 1.0, 'some': 1.0, 'carry': 2.0, 'watched': 1.0, 'to': 4.0, 'videos': 1.0, 'very': 1.0, 'son': 1.0, 'and': 5.0, 'kind': 1.0, 'get': 2.0, 'straps': 1.0, 'because': 1.0, 'find': 1.0, 'flexible': 1.0, 'the': 4.0, 'contortionists': 1.0, 've': 2.0, 'buckle': 1.0, 'trying': 1.0, 'be': 1.0, 'but': 1.0, 'can': 1.0, 'my': 2.0, 'more': 1.0, 'around': 1.0, 'do': 1.0, 'much': 1.0, 'must': 1.0, 'have': 1.0, 'falls': 1.0, 'out': 1.0, 'so': 1.0, 'scary': 1.0, 'a': 2.0, 't': 1.0, 's': 1.0}
Word element => {'sending': 1.0, 'thru': 1.0, 'like': 1.0, 'trouble': 1.0, 'oh': 1.0, 'accident': 1.0, 'by': 1.0, 'black': 1.0, 'me': 1.0, 'sent': 1.0, 'they': 1.0, 'one': 2.0, 'worth': 1.0, 'secure': 2.0, 'but': 3.0, 'doesn': 1.0, 'inside': 1.0, 'weeks': 1.0, 'very': 1.0, 'safer': 1.0, 'purchased': 1.0, 'didn': 1.0, 'sits': 1.0, 'baby': 2.0, 'carry': 1.0, 'tried': 1.0, 'old': 1.0, 'the': 4.0, 'wrap': 1.0, 'i': 4.0, 'thinking': 1.0, 'of': 1.0, 'soooooo': 1.0, 'much': 2.0, 'it': 4.0, 'this': 2.0, 'initially': 1.0, 'would': 1.0, 'feel': 2.0, 'comfortable': 1.0, 'newborn': 1.0, 'to': 2.0, 'be': 1.0, 'my': 2.0, 'price': 1.0, 'ergobaby': 1.0, 'green': 1.0, 'and': 4.0, 'going': 1.0, 't': 2.0, 'a': 2.0, 's': 1.0, 'so': 1.0, 'ordered': 1.0, 'snuggly': 1.0, 'feels': 1.0, 'more': 2.0, 'is': 2.0, 'he': 1.0, 'moby': 1.0, '6': 1.0, 'well': 1.0, 'easier': 1.0, 'has': 1.0, 'have': 1.0, 'insert': 1.0, 'back': 1.0, 'carrier': 1.0}
Word element => {'safe': 1.0, 'happy': 1.0, 'extremely': 1.0, 'baby': 1.0, 'really': 1.0, 'purpose': 1.0, 'additional': 1.0, 'an': 1.0, 'another': 1.0, 'made': 1.0, 'ergo': 2.0, 'that': 3.0, 'bat': 1.0, 'they': 1.0, 'others': 1.0, 'lower': 1.0, 'just': 1.0, 'and': 5.0, 'couple': 1.0, 'carriers': 1.0, 'would': 3.0, 'position': 1.0, 'after': 1.0, 'the': 2.0, 'other': 1.0, 'buy': 1.0, 'gotten': 1.0, 'extra': 1.0, 'have': 3.0, 'soft': 1.0, 'this': 5.0, 'it': 2.0, 'like': 1.0, 'using': 1.0, 'for': 3.0, 'love': 1.0, 'faced': 1.0, 'don': 2.0, 'money': 1.0, 't': 2.0, 'a': 2.0, 'of': 1.0, 'months': 1.0, 'wished': 2.0, 'two': 1.0, 'i': 10.0, 'carrier': 2.0, 'back': 1.0, 'compare': 1.0, 'forward': 2.0, 'issues': 1.0, 'is': 2.0, 'even': 1.0, 'need': 1.0, 'right': 1.0, 'off': 1.0, 'or': 1.0, 'spend': 1.0, 'only': 1.0, 'try': 1.0, 'what': 1.0, 'had': 1.0, 'still': 1.0, 'facing': 1.0}
Word element => {'added': 1.0, 'back': 1.0, 'me': 1.0, 'helps': 1.0, 'the': 3.0, 'more': 1.0, 'position': 2.0, 'pregnancy': 1.0, 'is': 1.0, 'front': 1.0, 'gorgeous': 1.0, 'from': 1.0, 'out': 1.0, 'pain': 2.0, 'pubic': 1.0, 'i': 1.0, 'have': 1.0, 'color': 1.0, 'would': 1.0, 'relieve': 1.0, 'like': 1.0, 'it': 1.0, 'if': 1.0, 'facing': 1.0}
Word element => {'just': 1.0, 'not': 1.0, 'kids': 1.0, '4': 1.0, 'very': 1.0, 'and': 2.0, 'the': 2.0, 'is': 3.0, 'person': 1.0, 'in': 1.0, 'wish': 1.0, '4th': 1.0, 'to': 1.0, 'had': 1.0, 'all': 1.0, 'pack': 1.0, 'have': 2.0, 'it': 2.0, 'this': 1.0, 'carrier': 1.0, 'ergo': 1.0, 'soft': 1.0, 'beautiful': 1.0, 'i': 2.0, 'for': 1.0, 'comfortable': 1.0, 'versatile': 1.0, 'particular': 1.0, 'so': 1.0, 'would': 1.0}
Word element => {'rethinking': 1.0, 'consider': 1.0, 'suggest': 1.0, 'um': 1.0, 'different': 1.0, 'a': 1.0, 'really': 1.0, 'not': 1.0, 'barking': 1.0, 'so': 1.0, 'everyone': 1.0, 'unpack': 1.0, 'wait': 1.0, 'bail': 1.0, 'hours': 1.0, 'about': 1.0, 'time': 1.0, 'five': 1.0, 'for': 2.0, 'connect': 1.0, 'had': 3.0, 'desperately': 1.0, 'other': 1.0, 'go': 1.0, 'but': 1.0, 'big': 1.0, 'twin': 2.0, 'which': 3.0, 'like': 2.0, 'cannot': 1.0, 'beginning': 1.0, 'always': 1.0, 'needs': 2.0, 'head': 1.0, 'babies': 1.0, 'into': 2.0, 'use': 1.0, 'insert': 1.0, 'fun': 1.0, 'bundled': 1.0, 'stroller': 1.0, 'are': 3.0, 'normal': 1.0, 'infant': 2.0, 'chest': 1.0, 'here': 1.0, 'secured': 1.0, 'buried': 1.0, 'wiggling': 1.0, 'now': 1.0, 'beyond': 1.0, 'against': 1.0, 'to': 9.0, 'most': 1.0, 'sleep': 1.0, 'once': 1.0, 'in': 6.0, 'm': 3.0, 'the': 14.0, 'of': 1.0, 'joints': 1.0, 'and': 10.0, 'arms': 1.0, 'finally': 1.0, 'going': 2.0, 'i': 10.0, 'it': 4.0, 'annoying': 1.0, 'is': 8.0, 'fine': 1.0, 's': 1.0, 'sinking': 1.0, 'out': 2.0, 're': 1.0, 'my': 3.0, 'totally': 1.0, 'felt': 1.0, 'ergo': 2.0, 'slipping': 2.0, 'they': 5.0, 'between': 1.0, 'sort': 1.0, 'with': 2.0, 'even': 1.0, 'get': 1.0, 'except': 1.0, 'put': 1.0, 'their': 1.0, '2': 1.0, 'thing': 1.0, 'no': 1.0, 'bjorn': 1.0, 'clip': 3.0, 'be': 1.0, 'after': 2.0, 'you': 1.0, 'feel': 1.0, 'your': 1.0, 'idea': 1.0, 'she': 2.0, 'baby': 1.0, 'nanny': 1.0, 'carrier': 3.0, 'located': 1.0, 'just': 1.0, 'worst': 1.0, 'way': 1.0, 'reach': 2.0, 'matter': 1.0, 'while': 1.0, 'what': 1.0, 'that': 4.0, 'because': 2.0, 'have': 2.0, 'thus': 1.0, 'this': 2.0, 'morning': 1.0, 'getting': 1.0, 'try': 2.0, 'too': 1.0, 'one': 1.0, 'single': 1.0, 'he': 1.0, 'shoulderblades': 1.0, 'melting': 1.0, 'down': 2.0, 'possible': 1.0, 'dog': 2.0, 'minutes': 1.0, 'trying': 1.0, 'freaking': 1.0}
Word element => {'to': 3.0, 'issue': 1.0, 'and': 1.0, 'it': 2.0, 'do': 1.0, 'only': 1.0, 'hard': 1.0, 'very': 1.0, 'so': 1.0, 'that': 2.0, 'comfortable': 3.0, 'inside': 1.0, 'far': 1.0, 'challenge': 1.0, 'sure': 1.0, 'is': 5.0, 'the': 5.0, 'carrier': 1.0, 'have': 2.0, 'i': 1.0, 'this': 1.0, 'found': 2.0, 'way': 1.0, 'straps': 2.0, 'after': 1.0, 'sometimes': 1.0, 'adjusting': 1.0, 'be': 1.0, 'loaded': 1.0, 'in': 1.0, 'but': 1.0, 'most': 1.0, 'can': 1.0, 'what': 1.0, 'location': 1.0, 's': 2.0, 'we': 2.0, 'a': 2.0, 'of': 1.0, 'there': 1.0, 'make': 1.0, 'baby': 2.0, 'them': 1.0, 'adjust': 1.0, 'not': 1.0, 'if': 1.0, 'wear': 1.0, 'better': 1.0}
Word element => {'360': 1.0, 'anxiously': 1.0, 'am': 1.0, 'when': 2.0, 'i': 1.0, 'nearly': 1.0, 'my': 1.0, 'the': 3.0, 'asleep': 2.0, 'of': 2.0, 'fall': 1.0, 'loves': 1.0, 'baby': 1.0, 'instantly': 1.0, 'will': 2.0, 'placed': 1.0, 'in': 2.0, 'release': 1.0, 'is': 1.0, 'awaiting': 1.0, 'not': 1.0, 'peek': 1.0, 'curiosity': 1.0, 'sides': 1.0, 'through': 1.0, 'he': 3.0, 'this': 2.0, 'it': 1.0}
Word element => {'last': 1.0, 'product': 1.0, 'believe': 1.0, 'i': 1.0, 'strong': 1.0, 'many': 1.0, 'is': 1.0, 'fabric': 1.0, 'have': 1.0, 'carrier': 1.0, 'we': 1.0, 'out': 1.0, 'there': 1.0, 'very': 1.0, 'best': 1.0, 'boy': 1.0, 'most': 1.0, 'for': 1.0, 'comfortable': 1.0, 'love': 1.0, 'are': 1.0, 'a': 2.0, 'girl': 1.0, 'years': 1.0, 'baby': 1.0, 'colors': 1.0, 'the': 3.0, 'universal': 1.0, 'and': 2.0, 'will': 2.0, 'but': 1.0, 'work': 1.0, 'this': 1.0, 'it': 1.0, 'with': 1.0}
Word element => {'heave': 1.0, 'cool': 1.0, 'mine': 1.0, 'nylon': 1.0, 'is': 2.0, 'soon': 1.0, 'versus': 1.0, 'temperature': 1.0, 'away': 1.0, 'right': 1.0, 'plus': 1.0, 'calms': 1.0, 'hikes': 1.0, 'well': 1.0, 'next': 1.0, 'free': 1.0, 'shopping': 1.0, 'on': 1.0, 'son': 1.0, 'as': 4.0, 'carrier': 3.0, 'need': 1.0, 'his': 1.0, 'down': 1.0, 'used': 1.0, 'i': 3.0, 'when': 1.0, 'the': 2.0, 'my': 2.0, 'in': 2.0, 'body': 1.0, 'moderate': 1.0, 've': 1.0, 'grocery': 1.0, 'hands': 1.0, 'store': 1.0, 'to': 2.0, 'use': 1.0, 'he': 1.0, 'this': 2.0, 'it': 2.0, 'at': 1.0, 'carry': 1.0}
Word element => {'never': 1.0, 'would': 1.0, 'instead': 1.0, 'dealer': 1.0, 'plastic': 1.0, 'authorized': 1.0, 'in': 1.0, 'which': 1.0, 'from': 1.0, 'your': 1.0, 'faded': 1.0, 'ergo': 4.0, 'an': 1.0, 'is': 1.0, 'fake': 1.0, 'was': 1.0, 'came': 1.0, 'bag': 1.0, 'the': 1.0, 'buy': 1.0, 'packaging': 1.0, 'do': 1.0, 'and': 1.0, 'this': 1.0, 'it': 1.0, 'a': 1.0}
Word element => {'friendly': 1.0, 'are': 1.0, 'people': 1.0, 'husband': 1.0, 'need': 1.0, 'her': 1.0, 'me': 2.0, 'with': 1.0, 'only': 1.0, 'come': 1.0, 'and': 4.0, 'worships': 1.0, 'church': 1.0, 'it': 3.0, 'she': 2.0, 'at': 2.0, 'got': 1.0, 'wear': 1.0, 'so': 2.0, 'happy': 1.0, 'my': 2.0, 'i': 5.0, 'old': 1.0, 'have': 2.0, 'back': 1.0, 'the': 3.0, 'strangers': 1.0, 'baby': 1.0, 'ask': 1.0, 'for': 1.0, 'comfortable': 1.0, 'insert': 1.0, 'in': 4.0, 'this': 2.0, 'perfect': 1.0, 'was': 1.0, 'to': 1.0, 'had': 1.0, '6': 1.0, 'there': 2.0, 'up': 1.0, 'isnt': 1.0, 'days': 1.0, 'put': 1.0, 'make': 1.0, 'sure': 1.0, 'is': 1.0, 'help': 2.0, 'someone': 1.0, 'you': 1.0, 'clip': 1.0, 'if': 2.0, 'straps': 1.0}
Word element => {'this': 1.0, 'basket': 1.0, 'cart': 1.0, 'carseat': 1.0, 'second': 1.0, 'contained': 1.0, 'keep': 2.0, 'which': 1.0, 'shopping': 1.0, 'grocery': 1.0, 'going': 1.0, 'pressure': 1.0, 'weight': 2.0, 'live': 2.0, 'been': 1.0, 'found': 1.0, 'carried': 1.0, 'but': 1.0, 'bjorn': 1.0, 'started': 1.0, 'tired': 1.0, 'being': 1.0, 'nap': 1.0, 'carry': 4.0, 'would': 1.0, 've': 1.0, 'time': 2.0, 'a': 5.0, 's': 2.0, 'using': 2.0, 'for': 4.0, 'too': 1.0, 'daughter': 3.0, 't': 3.0, 'fairly': 1.0, 'periods': 1.0, 'ergo': 6.0, 'half': 1.0, 'and': 8.0, 'recommended': 1.0, 'couldn': 3.0, 'was': 1.0, 'i': 7.0, 'walks': 1.0, 'two': 1.0, 'works': 1.0, 'without': 3.0, 'believe': 1.0, 'shoulders': 1.0, 'her': 5.0, 'allows': 1.0, 'with': 1.0, 'quickly': 2.0, 'only': 1.0, 'put': 2.0, 'much': 1.0, 'it': 2.0, 'baby': 2.0, 'she': 1.0, 'first': 2.0, 'fussy': 1.0, 'on': 3.0, 'long': 2.0, 'nearly': 1.0, 'become': 1.0, 'caused': 1.0, 'my': 9.0, 'me': 3.0, 'to': 6.0, 'uncomfortable': 1.0, 'when': 3.0, 'great': 1.0, 'carrying': 1.0, 'rides': 1.0, 'sister': 1.0, 'that': 2.0, 'because': 1.0, 'law': 1.0, 'child': 1.0, 'year': 1.0, 'toddler': 1.0, 'is': 2.0, 'designed': 1.0, 'the': 10.0, 'of': 3.0, 'carrier': 2.0, 'allowed': 1.0, 'most': 1.0, 'back': 1.0, 'hips': 1.0, 'becoming': 1.0, 'sore': 1.0, 'or': 1.0, 'if': 1.0, 'still': 1.0, 'frequently': 1.0, 'we': 1.0, 'difference': 1.0, 'take': 1.0, 'over': 1.0, 'daily': 1.0, 'in': 5.0, 'm': 1.0, 'able': 1.0, 'comfortable': 1.0, 'number': 1.0, 'miles': 1.0, 'now': 1.0, 'also': 1.0, 'have': 1.0, 'an': 1.0, 'infant': 1.0}
Word element => {'too': 1.0, 'preferred': 1.0, '0': 1.0, 'for': 2.0, 'insert': 1.0, 'though': 1.0, 'wrap': 1.0, 'i': 2.0, 'my': 1.0, 'bulky': 1.0, 'the': 2.0, 'great': 2.0, 'infant': 2.0, 'boba': 1.0, 'month': 1.0, 'is': 2.0, 'this': 2.0, '3': 1.0, 'stage': 1.0, 'but': 1.0, 'bigger': 1.0, 'babies': 1.0, 'did': 1.0, 'not': 1.0, 'like': 1.0}
Word element => {'book': 1.0, 'weight': 1.0, 'would': 1.0, 'places': 1.0, 'on': 1.0, 'your': 2.0, 'ergo': 1.0, 'my': 3.0, 'daughter': 1.0, 'sore': 1.0, 'of': 1.0, 'got': 1.0, 'instead': 1.0, 'purchased': 1.0, 'so': 1.0, 'items': 1.0, 'became': 1.0, 'i': 2.0, 'tried': 1.0, 'as': 1.0, 'very': 1.0, 'and': 3.0, 'five': 1.0, 'both': 1.0, 'tan': 1.0, 'baby': 3.0, 'heavier': 1.0, 'the': 3.0, 'k': 1.0, 'lower': 1.0, 'body': 1.0, 'bjorn': 1.0, 'in': 2.0, 'that': 1.0, 'awesome': 1.0, 'have': 1.0, 'shoulders': 2.0, 'fabric': 1.0, 'traveling': 1.0, 'for': 1.0, 'airports': 1.0, 'this': 1.0, 'wish': 1.0, 'soft': 1.0, 'back': 1.0, 'top': 1.0, 'sooner': 1.0, 'favorite': 1.0}
Word element => {'provide': 1.0, 'didn': 1.0, 'which': 1.0, 'from': 1.0, 'to': 1.0, 'stroller': 1.0, 'wind': 1.0, 'old': 2.0, 'i': 3.0, 'youngest': 1.0, 'the': 7.0, '2': 1.0, 'being': 1.0, '10': 1.0, 'back': 1.0, 'carrier': 4.0, 'with': 2.0, 'weeks': 1.0, 'older': 1.0, 'do': 1.0, 'and': 6.0, 'me': 1.0, 'protect': 1.0, 'm': 1.0, 'sun': 1.0, 'mom': 1.0, 'walking': 1.0, 't': 1.0, 'a': 3.0, 'front': 1.0, 'boys': 1.0, 'of': 2.0, 'eurgobaby': 1.0, 'gone': 1.0, 'ages': 1.0, 'baby': 2.0, 'other': 1.0, 'killing': 1.0, 'under': 1.0, 'three': 1.0, 'lot': 1.0, 'put': 1.0, '3': 1.0, 'distributes': 1.0, 'in': 2.0, 'also': 1.0, 'double': 1.0, 'goes': 1.0, 'my': 6.0, 'were': 1.0, 'wait': 1.0, 'kids': 1.0, 'pain': 1.0, 'is': 1.0, 'love': 1.0, 'shoulders': 1.0, 'good': 1.0}
Word element => {'though': 1.0, 'even': 1.0, 'get': 1.0, 'easy': 1.0, 'pretty': 1.0, 'also': 1.0, 'bit': 1.0, 'against': 1.0, 'right': 1.0, 'up': 1.0, 'since': 1.0, 'especially': 1.0, 'hot': 1.0, 'little': 1.0, 'very': 1.0, 'not': 1.0, 'highly': 1.0, 'material': 1.0, 'cuddled': 1.0, 'heavy': 1.0, 'into': 1.0, 'that': 1.0, 'had': 1.0, 'recommend': 1.0, 'doesn': 1.0, 'shade': 1.0, 'it': 6.0, 'this': 3.0, 'bad': 2.0, 'one': 1.0, 'expensive': 1.0, 'love': 1.0, 'i': 5.0, 'tried': 1.0, 'reason': 1.0, 'in': 2.0, 'my': 1.0, 'pull': 1.0, 'asleep': 1.0, 'the': 7.0, 'a': 2.0, 't': 1.0, 'breathable': 1.0, 'because': 1.0, 'few': 1.0, 'carriers': 1.0, 'to': 4.0, 'as': 1.0, 'and': 2.0, 'like': 1.0, 'hold': 1.0, 'baby': 4.0, 'back': 1.0, 'carrier': 2.0, 'compared': 1.0, 'others': 1.0, 'sun': 1.0, 'can': 1.0, 'out': 1.0, 'handy': 1.0, 'falls': 1.0, 'hurt': 1.0, 'you': 2.0, 'when': 1.0, 'if': 1.0, 'comes': 1.0, 'is': 6.0, 'say': 1.0, 've': 1.0, 'would': 1.0, 'something': 1.0, 'be': 1.0}
Word element => {'loves': 1.0, 'so': 1.0, 'else': 1.0, 'fall': 1.0, 'will': 1.0, 'son': 1.0, 'anywhere': 1.0, 'my': 1.0, 'world': 1.0, 'place': 1.0, 'brands': 1.0, 'four': 1.0, 'of': 1.0, 'that': 1.0, 'i': 2.0, 'tried': 1.0, 'the': 5.0, 'than': 1.0, 'correct': 1.0, 'meets': 1.0, 'carrier': 3.0, 'it': 2.0, 'faster': 1.0, 'he': 2.0, 'only': 1.0, 'this': 3.0, 'prevent': 1.0, 'dysplasia': 1.0, 'is': 2.0, 'guidelines': 1.0, 'love': 1.0, 'comfortable': 1.0, 'for': 2.0, 'most': 1.0, 'hip': 2.0, 'position': 1.0, 'asleep': 1.0, 'to': 1.0, 'in': 2.0, 'also': 1.0}
Word element => {'ergo': 1.0, 'asleep': 1.0, 'happy': 1.0, 'always': 1.0, 'upset': 1.0, 'felling': 1.0, 'close': 1.0, 'comfortable': 1.0, 'nice': 1.0, 'in': 1.0, 'hiking': 1.0, 'walking': 1.0, 'house': 1.0, 'being': 1.0, 'everything': 1.0, 'it': 1.0, 'life': 1.0, 'not': 2.0, 'favorite': 1.0, 'shopping': 1.0, 'out': 2.0, 'with': 2.0, 'falls': 1.0, 'have': 1.0, 'leave': 1.0, 'never': 1.0, 'my': 1.0, 'doing': 1.0, 'this': 2.0, 'so': 1.0, 'carried': 1.0, 'on': 2.0, 'laundry': 1.0, 'old': 1.0, 'i': 4.0, 'was': 1.0, 'still': 1.0, 'dog': 1.0, 'gift': 1.0, 'best': 1.0, 'to': 3.0, 'as': 1.0, 'his': 1.0, 'year': 2.0, 'calming': 1.0, 'from': 1.0, 'baby': 5.0, 'is': 1.0, '25lb': 1.0, 'can': 1.0, 'but': 1.0, 'organic': 1.0, 'one': 2.0, 'for': 2.0, 'love': 1.0, 'sling': 1.0, 'go': 1.0, 'a': 2.0, 'imagine': 1.0, 'shower': 1.0, 'be': 1.0, 'cotton': 1.0, 'either': 1.0, 'front': 1.0, 'use': 2.0, 'loved': 1.0, 'or': 2.0, 'carrier': 1.0, 'back': 1.0, 'that': 1.0, 'maya': 1.0, 'home': 1.0, 'made': 1.0, 'soon': 1.0, 'cmfortable': 1.0, 'and': 3.0, 'too': 2.0, 'easily': 1.0, 'when': 3.0, 'cleaning': 1.0, 'recieved': 1.0, 'did': 1.0, 'seems': 1.0, 'also': 2.0, 'its': 1.0, 'tiny': 1.0, 'good': 1.0, 'last': 1.0, 'carriers': 1.0, 'using': 1.0, 'like': 1.0, 'other': 1.0}
Word element => {'come': 1.0, 'time': 1.0, 'boy': 1.0, 'son': 1.0, 'big': 1.0, 'worked': 1.0, 'day': 2.0, 'her': 2.0, 'his': 1.0, 'long': 2.0, 'for': 5.0, 'one': 1.0, 'of': 1.0, 'every': 1.0, 'use': 1.0, 'purchase': 1.0, 'my': 4.0, 'was': 3.0, 'granddaughter': 1.0, 'to': 3.0, 'daughter': 3.0, 'when': 1.0, 'saw': 2.0, 'it': 6.0, 'mos': 1.0, 'convenient': 1.0, 'with': 1.0, 'loves': 1.0, 'i': 2.0, 'using': 1.0, '17': 1.0, 'originally': 1.0, 'patients': 1.0, 'age': 1.0, 'but': 1.0, 'a': 2.0, 'walks': 1.0, 'will': 1.0, 'this': 2.0, 'perfect': 1.0, 'myself': 1.0, 'useful': 2.0, 'how': 1.0, 'would': 1.0, 'be': 2.0, 'care': 1.0, 'is': 1.0, 'easy': 1.0, 'and': 1.0}
Word element => {'napping': 1.0, 'they': 1.0, 'a': 2.0, 's': 2.0, 'it': 3.0, 'in': 1.0, 'this': 1.0, 'soft': 1.0, 'your': 1.0, 'carried': 1.0, 'loves': 1.0, 'carrier': 1.0, 'nice': 1.0, 'around': 2.0, 'is': 3.0, 'being': 1.0, 'hood': 1.0, 'to': 3.0, 'easy': 1.0, 'use': 1.0, 'wants': 1.0, 'and': 2.0, 'do': 1.0, 'my': 1.0, 'very': 2.0, 'little': 1.0, 'you': 1.0, 'when': 3.0, 'one': 1.0, 'for': 1.0, 'baby': 1.0, 'be': 1.0, 'or': 2.0, 'held': 1.0, 'but': 1.0, 're': 1.0, 'house': 1.0, 'have': 1.0, 'fabric': 1.0, 'life': 1.0, 'just': 1.0, 'few': 1.0, 'things': 1.0, 'the': 3.0, 'saver': 1.0, 'sunny': 1.0, 'shopping': 1.0, 'out': 1.0}
Word element => {'though': 1.0, 'made': 1.0, 'bummer': 1.0, 'well': 1.0, 'a': 1.0, 'still': 1.0, 'print': 1.0, 'looks': 1.0, 'fine': 1.0, 'reading': 1.0, 'not': 1.0, 'disappointed': 1.0, 'carrier': 1.0, 'the': 1.0, 't': 1.0, 'that': 1.0, 'fault': 1.0, 'super': 1.0, 'allow': 1.0, 'to': 2.0, 'was': 2.0, 'i': 1.0, 'this': 1.0, 'excited': 1.0, 'it': 1.0, 'but': 2.0, 'doesn': 1.0, 'baby': 1.0, 'face': 1.0, 'comfy': 1.0, 'and': 1.0, 'get': 1.0, 'probably': 1.0, 'outward': 1.0, 'my': 1.0, 'own': 1.0, 'for': 1.0}
Word element => {'baby': 1.0, 'of': 1.0, 'carriers': 1.0, 'so': 1.0, 'ergo': 2.0, 'we': 1.0, 'tried': 1.0, 'the': 2.0, 'a': 1.0, 'have': 1.0, 'simply': 2.0, 'm': 1.0, 'kinds': 1.0, 'many': 1.0, 'best': 2.0, 'i': 1.0, 'is': 2.0, 'midwife': 1.0, 'and': 1.0}
Word element => {'levels': 1.0, 'whole': 1.0, 'also': 1.0, 'much': 1.0, 'made': 1.0, 'happy': 1.0, 'very': 1.0, 'is': 1.0, 'baby': 1.0, 'who': 2.0, 'gift': 1.0, 'on': 1.0, 'positioning': 1.0, 'throw': 1.0, 'her': 2.0, 'different': 1.0, 'family': 1.0, 'my': 2.0, 'i': 3.0, 'this': 3.0, 'thoroughly': 1.0, 'the': 2.0, 'can': 1.0, 'but': 1.0, 'give': 1.0, 's': 2.0, 't': 1.0, 'a': 2.0, 'law': 1.0, 'detailed': 1.0, 'daughter': 1.0, 'fit': 1.0, 'stars': 1.0, 'for': 2.0, 'in': 3.0, 'easier': 1.0, 'review': 1.0, 'was': 1.0, 'wanted': 1.0, 'all': 1.0, 'to': 1.0, 'would': 1.0, 'requesting': 1.0, 'bill': 1.0, 'researched': 1.0, 'it': 5.0, 'she': 4.0, 'thought': 1.0, 'had': 1.0, 'what': 1.0, '5': 1.0, 'before': 1.0, 'of': 2.0, 'life': 1.0, 'says': 1.0, 'there': 1.0, 'carrier': 2.0, 'and': 2.0, 'kind': 2.0, 'talked': 1.0, 'so': 1.0, 'friends': 1.0, 'into': 1.0, 'loves': 1.0, 'are': 1.0, 'many': 2.0, 'organics': 1.0, 'ways': 1.0}
Word element => {'chores': 1.0, 'shopping': 1.0, 'neighborhood': 1.0, 'best': 1.0, 'very': 1.0, 'three': 1.0, 'versatile': 1.0, 'can': 1.0, 'it': 3.0, 'with': 1.0, 'doing': 1.0, 'this': 2.0, 'he': 3.0, 'year': 1.0, 'almost': 1.0, 'household': 1.0, 'owned': 1.0, 'my': 1.0, 'sits': 1.0, 'and': 4.0, 'carrier': 2.0, 'have': 1.0, 'of': 1.0, 'immediately': 1.0, 'there': 1.0, 'fourth': 1.0, 'baby': 2.0, 'i': 5.0, 'type': 1.0, 'old': 1.0, 'infant': 1.0, 'when': 1.0, 'think': 1.0, 'put': 1.0, 'doesn': 1.0, 'going': 1.0, 't': 1.0, 'walks': 1.0, 'in': 1.0, 'here': 1.0, 'goes': 1.0, 'is': 3.0, 'around': 1.0, 'fall': 1.0, 'sleep': 1.0, 'to': 1.0, 'the': 4.0, 'asleep': 1.0, 'use': 2.0, 'content': 1.0, 'if': 1.0, 'just': 1.0, 'for': 1.0}
Word element => {'doesnot': 1.0, 'if': 1.0, 'quite': 1.0, 'back': 1.0, 'front': 1.0, 'herself': 1.0, 'in': 2.0, 'stand': 1.0, 'carry': 1.0, 'best': 1.0, 'the': 3.0, 'seen': 1.0, 'by': 1.0, 'hard': 1.0, 'its': 1.0, 'baby': 2.0, 'ever': 1.0, 'i': 1.0, 'carrier': 1.0, 'have': 1.0, 'but': 1.0, 'easy': 1.0, 'to': 1.0}
Word element => {'different': 1.0, 'helps': 1.0, 'it': 1.0, 'how': 1.0, 'channel': 1.0, 'youtube': 1.0, 'ways': 1.0, 'on': 2.0, 'videos': 1.0, 'put': 1.0, 'but': 1.0, '1st': 1.0, 'a': 3.0, 'the': 2.0, 'great': 1.0, 'can': 2.0, 'twins': 1.0, 'our': 1.0, 'has': 1.0, 'they': 2.0, 'of': 1.0, 'each': 1.0, 'love': 1.0, 'for': 1.0, 'one': 1.0, 'at': 1.0, 'two': 1.0, 'have': 1.0, 'carrier': 1.0, 'we': 2.0, 'are': 1.0, 'woren': 1.0, 'explain': 1.0, 'be': 2.0, 'to': 2.0, 'three': 1.0, 'little': 1.0, 'watch': 1.0, 'tricking': 1.0, 'them': 2.0, 'out': 1.0, 'and': 2.0, 'ergobaby': 1.0, 'firgure': 1.0}
Word element => {'tested': 1.0, 'safety': 1.0, 'been': 1.0, 'not': 1.0, 'they': 1.0, 'of': 1.0, 'beware': 1.0, 'please': 1.0, 'never': 1.0, 'would': 1.0, 'probably': 1.0, 'before': 1.0, 'research': 1.0, 'ergos': 1.0, 'done': 1.0, 'hadn': 1.0, 'if': 1.0, 'way': 1.0, 'off': 1.0, 'prepared': 1.0, 'it': 2.0, 'looked': 1.0, 'the': 6.0, 'warning': 1.0, 'my': 1.0, 'ergo': 2.0, 'warrior': 1.0, 'suspected': 1.0, 'label': 1.0, 'for': 1.0, 'up': 2.0, 'reading': 1.0, '34': 2.0, 'on': 1.0, 'right': 1.0, 'instruction': 1.0, 'counterfeit': 2.0, 't': 1.0, 'a': 2.0, 'could': 1.0, 's': 1.0, 'when': 1.0, 'stealth': 1.0, 'i': 4.0, 'tell': 1.0, 'arrived': 1.0, 'fake': 1.0, 'package': 1.0, 'after': 1.0, 'was': 3.0, 'though': 1.0, 'beat': 1.0, 'spot': 1.0, 'already': 1.0, 'bat': 1.0, 'with': 1.0, 'manual': 1.0, 'buckle': 1.0, 'in': 2.0, 'said': 1.0, 'and': 2.0, 'ripped': 1.0, 'did': 1.0, 'correct': 1.0, 'thing': 1.0, 'no': 1.0, 'crooked': 1.0, 'have': 3.0, 'misspellings': 1.0, 'but': 1.0}
Word element => {'pain': 1.0, 'use': 1.0, 'she': 1.0, 'carrier': 1.0, 'much': 1.0, 'due': 1.0, 'the': 1.0, 'to': 1.0, 'had': 1.0, 'in': 1.0, 'daughter': 1.0, 'baby': 1.0, 'years': 1.0, 'has': 1.0, 'an': 1.0, 'back': 1.0, 'problems': 1.0, 'from': 1.0, 'law': 1.0, 'a': 1.0, 'without': 1.0, 'can': 1.0, 'horse': 1.0, 'my': 1.0, 'accident': 1.0, 'riding': 1.0, 'ago': 1.0, 'is': 1.0, 'this': 1.0, 'only': 1.0}
Word element => {'good': 1.0, 'stars': 2.0, 'too': 1.0, 'and': 7.0, 'moby': 2.0, 'how': 2.0, 'he': 2.0, 'originally': 1.0, 'child': 1.0, 'their': 1.0, 'better': 1.0, 'mentioned': 1.0, 'why': 1.0, 'reason': 1.0, 'they': 1.0, 'however': 1.0, 'wrap': 2.0, 'a': 3.0, 'weights': 1.0, 'not': 1.0, 'getting': 1.0, 'all': 1.0, 'to': 2.0, 'am': 1.0, '125': 1.0, 'months': 1.0, 'bought': 2.0, 'baby': 6.0, 'than': 1.0, 's': 1.0, 'maybe': 1.0, 'me': 1.0, 'my': 3.0, 'big': 2.0, 'support': 1.0, 'great': 1.0, 'carrying': 1.0, 'buy': 1.0, '4': 1.0, '24': 1.0, 'is': 4.0, 'more': 1.0, 'around': 1.0, 'said': 1.0, 'for': 2.0, 'such': 1.0, '10': 1.0, 'carrier': 3.0, 'needed': 1.0, 'back': 1.0, 'from': 1.0, 'with': 3.0, 'this': 4.0, '30': 2.0, 'him': 1.0, 'it': 4.0, 'had': 2.0, 'when': 1.0, 'what': 1.0, 'lbs': 2.0, 'was': 5.0, '20': 1.0, 'because': 2.0, 'that': 1.0, 'gave': 1.0, 'ergo': 1.0, 'there': 1.0, 'instead': 1.0, 'reviews': 1.0, 'difference': 1.0, 'weight': 1.0, 'distributed': 1.0, 'never': 2.0, 'shoulders': 1.0, 'overall': 1.0, 'can': 1.0, '2': 1.0, 'see': 1.0, 'much': 1.0, 'before': 1.0, 'nap': 1.0, 'helps': 1.0, '5': 2.0, 'the': 6.0, 'of': 1.0, 'have': 1.0, 'pains': 1.0, 'after': 1.0, 'hip': 1.0, 'mins': 2.0, 'approximatly': 1.0, 'also': 1.0, 'i': 10.0, 'slept': 1.0, 'm': 1.0, 'used': 1.0, 'carry': 1.0, 'hope': 1.0, 'on': 1.0, 'takes': 1.0}
Word element => {'rid': 1.0, 'get': 1.0, 'off': 1.0, 'i': 2.0, 'one': 2.0, 'of': 1.0, 'cried': 1.0, 'threw': 1.0, 'in': 2.0, 'that': 2.0, 't': 1.0, 'cry': 1.0, 'more': 1.0, 'my': 2.0, 'bought': 1.0, 'disaster': 1.0, 'didn': 1.0, 'every': 1.0, 'from': 1.0, 'baby': 2.0, 'another': 1.0, 'brand': 1.0, 'this': 1.0, 'it': 2.0, 'to': 1.0, 'was': 1.0, 'finally': 1.0, 'time': 1.0}
Word element => {'anyone': 1.0, 'would': 1.0, 'lbs': 1.0, 'up': 1.0, 'hold': 1.0, 'can': 1.0, 'so': 1.0, 's': 1.0, 'is': 1.0, 'much': 1.0, 'than': 1.0, 'hopefully': 1.0, 'bullet': 1.0, 'imagined': 1.0, 'the': 2.0, '1st': 1.0, 'another': 1.0, 'baby': 1.0, 'pack': 2.0, 'to': 3.0, '45': 1.0, 'i': 6.0, 'decided': 1.0, 'child': 1.0, 'product': 1.0, 'bought': 1.0, 'ergo': 2.0, 'my': 2.0, 'for': 2.0, 'love': 2.0, 'a': 1.0, 'front': 2.0, 'comfy': 1.0, 'and': 3.0, 'recommend': 1.0, 'cheaper': 1.0, 'rarely': 1.0, 'used': 1.0, 'our': 1.0, 'this': 1.0, 'it': 3.0, 'with': 1.0, 'better': 2.0, '2nd': 1.0, 'pay': 1.0, 'bite': 1.0}
Word element => {'will': 1.0, 'bit': 1.0, 'around': 1.0, 'a': 3.0, 'support': 1.0, 'baby': 1.0, 'when': 2.0, 'tired': 1.0, 'hurt': 1.0, '12': 1.0, 'min': 1.0, 'excellent': 1.0, 'really': 1.0, 'less': 1.0, 'weight': 2.0, 'but': 1.0, 'shoulder': 1.0, 'can': 1.0, 'bjorn': 1.0, 'in': 4.0, 'price': 1.0, 'weighed': 1.0, 'though': 1.0, 'plus': 1.0, 'for': 4.0, 'moby': 1.0, 'love': 1.0, 'he': 3.0, 'walk': 1.0, 'which': 1.0, 'using': 1.0, 'right': 1.0, '30': 1.0, 'ergo': 1.0, 'more': 2.0, 'is': 2.0, 'completely': 1.0, 'great': 2.0, 'lower': 1.0, 'padded': 1.0, 'nicely': 1.0, 'the': 6.0, 'hands': 1.0, 'shoulders': 2.0, 'than': 2.0, 'way': 1.0, 'straps': 1.0, 'tried': 3.0, 'i': 5.0, 'life': 1.0, 'just': 1.0, 'lumbar': 1.0, 'and': 10.0, 'we': 1.0, 'then': 2.0, 'started': 1.0, 'hot': 1.0, 'infantino': 1.0, 'to': 5.0, 'back': 2.0, 'sleep': 2.0, 'lbs': 1.0, 'was': 3.0, 'store': 1.0, 'allows': 1.0, 'with': 1.0, 'quick': 1.0, 'even': 1.0, 'fall': 1.0, 'that': 1.0, 'into': 1.0, 'after': 1.0, 'an': 1.0, 'finally': 1.0, 'leaving': 1.0, 'also': 1.0, 'newborn': 1.0, 'convinced': 1.0, 'try': 1.0, 'have': 1.0, 'proved': 1.0, 'distributes': 1.0, 'on': 1.0, 'your': 1.0, 'florida': 1.0, 'put': 1.0, 'hips': 1.0, 'front': 1.0, 'pouch': 1.0, 'my': 5.0, 'me': 1.0, 'keys': 1.0, 'hour': 1.0, 'wallet': 1.0, 'has': 2.0, 'puts': 1.0, 'trips': 1.0, 'free': 1.0, 'aid': 1.0, 'strap': 1.0, 'it': 8.0, 'him': 1.0}
Word element => {'anyone': 1.0, 'to': 1.0, 'recommend': 1.0, 'definitely': 1.0, 'hurt': 1.0, 'back': 1.0, 'doesn': 1.0, 'supportive': 1.0, 'how': 1.0, '15': 1.0, 'carrier': 1.0, 'loves': 1.0, '27': 1.0, 'is': 2.0, 'son': 1.0, 'months': 1.0, 'lbs': 1.0, 'my': 2.0, 'works': 1.0, 't': 1.0, 'great': 1.0, 'out': 1.0, 'love': 1.0, 'for': 1.0, 'us': 1.0, 'old': 1.0, 'i': 1.0, 'this': 1.0, 'it': 2.0, 'he': 1.0, 'so': 1.0, 'and': 4.0, 'do': 1.0}
Word element => {'metro': 1.0, 'orbeco': 1.0, 'as': 2.0, 'whether': 2.0, 'accommodates': 1.0, 'cheapest': 1.0, 'spoc': 1.0, 'found': 1.0, 'this': 1.0, 'allows': 1.0, 'purchased': 2.0, 'had': 1.0, 'when': 1.0, 'seem': 1.0, 'but': 4.0, 'p': 1.0, 'directions': 1.0, 'front': 4.0, 'use': 2.0, 'a': 3.0, 's': 3.0, 'we': 4.0, 't': 1.0, 'did': 1.0, 'getting': 1.0, 'much': 1.0, 'thought': 1.0, 'it': 4.0, 'i': 4.0, 'cloth': 1.0, 'piece': 1.0, 'black': 1.0, 'o': 1.0, 'bjorn': 2.0, 'in': 2.0, 'baby': 7.0, 'quality': 1.0, 'now': 1.0, 'different': 1.0, 'that': 4.0, 'into': 1.0, 'gemini': 4.0, 'moby': 2.0, 'online': 1.0, 'used': 1.0, 'built': 1.0, 've': 1.0, 'position': 4.0, 'would': 1.0, 'side': 4.0, 'versatile': 1.0, 'carrier': 7.0, 'back': 2.0, 'facing': 3.0, 'ergobaby': 1.0, 'carriers': 2.0, '6': 1.0, 'c': 1.0, 'aprica': 2.0, 'both': 1.0, 'and': 6.0, 'only': 1.0, 'mistakenly': 1.0, 'quickly': 1.0, 'simple': 1.0, 'need': 1.0, 'or': 2.0, 'of': 3.0, 'the': 12.0, 'ergo': 6.0, 'is': 3.0, 'more': 2.0, 'easier': 1.0, 'll': 1.0, 'definitely': 1.0, 'supportive': 1.0, 'probly': 1.0, 'out': 2.0, 'forward': 2.0, 'not': 2.0, 'beco': 3.0, 'daunting': 1.0, 'have': 1.0, 'bought': 1.0, 'still': 1.0, 'if': 1.0, 'simplest': 1.0, 'first': 1.0, 'like': 1.0, 'high': 1.0, 'to': 1.0, 'our': 3.0, 'haven': 1.0, 'less': 1.0, 'figured': 1.0, 'for': 1.0, 'help': 1.0, 'though': 1.0, 'does': 1.0, 'than': 2.0, 'comfortable': 1.0, 'except': 1.0}
Word element => {'months': 1.0, 'expecting': 1.0, 'who': 1.0, 'bought': 1.0, 'much': 1.0, 'so': 1.0, 'brother': 1.0, 'errands': 1.0, 'of': 1.0, 'hours': 1.0, 'and': 1.0, 'do': 1.0, 'able': 1.0, 'the': 2.0, 'another': 1.0, 'alone': 1.0, 'baby': 3.0, 'because': 1.0, 'few': 2.0, 'she': 1.0, 'my': 2.0, 'ergo': 2.0, 'for': 1.0, 'love': 2.0, 'absolutely': 1.0, 'too': 1.0, 'daughter': 1.0, 'in': 2.0, 'loves': 1.0, 'carrier': 1.0, 'i': 3.0, 'law': 1.0, 'a': 3.0, 'minutes': 1.0, 'fast': 1.0, 'am': 1.0, 's': 2.0, 'to': 1.0, 'asleep': 1.0, 'it': 3.0, 'with': 1.0}
Word element => {'its': 1.0, 'but': 1.0, 'what': 1.0, 'not': 1.0, 's': 1.0, 'wrong': 1.0, 'don': 1.0, 'plastic': 1.0, 'just': 2.0, 'unfortunately': 1.0, 'blue': 1.0, 'painted': 1.0, 'figured': 1.0, 'get': 1.0, 'legs': 1.0, 'required': 1.0, 'recommend': 1.0, 'were': 1.0, 'on': 1.0, 'open': 2.0, 'great': 1.0, 'foot': 1.0, 't': 1.0, 'rest': 1.0, 'comfortablly': 1.0, 'storage': 2.0, 'middle': 1.0, 'extra': 2.0, 'close': 1.0, 'for': 5.0, 'love': 1.0, 'would': 1.0, 'either': 2.0, 'bar': 1.0, 'down': 2.0, 'have': 1.0, 'to': 7.0, 'there': 2.0, 'adjust': 1.0, 'has': 1.0, 'left': 1.0, 'however': 1.0, 'easy': 1.0, 'tray': 1.0, 'completely': 1.0, 'really': 1.0, 'features': 1.0, 'different': 1.0, 'lot': 1.0, 'see': 1.0, 'climb': 1.0, 'small': 1.0, 'a': 8.0, 'all': 1.0, 'an': 1.0, 'disappointed': 1.0, 'stroller': 4.0, 'anyone': 1.0, 'and': 5.0, 'like': 1.0, 'this': 1.0, 'through': 1.0, 'holders': 1.0, 'recline': 1.0, 'it': 7.0, 'remove': 1.0, 'size': 1.0, 'i': 6.0, 'because': 1.0, 'that': 2.0, 'basket': 1.0, 'assemble': 1.0, 'way': 1.0, 'expected': 1.0, 'decent': 1.0, 'cell': 1.0, 'are': 1.0, 'you': 4.0, 'push': 3.0, 'of': 1.0, 'the': 11.0, 'myself': 1.0, 'nice': 1.0, 'two': 2.0, 'little': 2.0, 'very': 1.0, 'surprising': 1.0, 'or': 4.0, 'right': 2.0, 'toddler': 1.0, 'compartment': 1.0, 'm': 1.0, 'seat': 1.0, 'in': 4.0, 'both': 1.0, 'bigger': 1.0, 'buttons': 1.0, 'bars': 1.0, 'is': 7.0, 'handle': 1.0, 'back': 1.0, 'cup': 1.0, 'adjustable': 1.0, 'can': 5.0, 'so': 1.0, 'looks': 1.0, 'me': 2.0, 'my': 1.0, 'husband': 1.0, 'keys': 1.0, 'phone': 1.0, 'between': 1.0, 'large': 1.0, 'side': 1.0, 'made': 1.0, 'snack': 1.0, 'pockets': 1.0, 'with': 2.0, 'attached': 1.0, 'materials': 1.0, 'withvelcro': 1.0, 'pull': 1.0, 'items': 1.0, 'overall': 1.0, 'thin': 2.0, 'slide': 1.0, 'was': 2.0, 'cleaning': 1.0, 'simple': 1.0, 'no': 1.0, 'tools': 1.0}
Word element => {'flat': 1.0, 'lies': 1.0, 'comfortable': 1.0, 'and': 2.0, 'roomy': 1.0, 'removable': 1.0, 'color': 1.0, 'nice': 1.0, 'maneuver': 1.0, 'i': 1.0, 'canopy': 1.0, 'love': 1.0, 'this': 1.0, 'holder': 1.0, 'cup': 1.0, 'big': 1.0, 'with': 1.0, 'peek': 1.0, 'window': 1.0, 'stroller': 1.0, 'easy': 1.0, 'to': 1.0}
Word element => {'of': 1.0, 'back': 1.0, 'my': 1.0, 'the': 1.0, 'great': 1.0, 'jeep': 1.0, 'and': 2.0, 'fold': 1.0, 'in': 1.0, 'for': 1.0, 'away': 1.0, 'stow': 1.0, 'memaw': 1.0, 'to': 3.0, 'unfold': 1.0, 'stroller': 1.0, 'easy': 2.0, 'use': 1.0}
Word element => {'hope': 1.0, 'new': 2.0, 'already': 1.0, 'no': 1.0, 'today': 1.0, 'returning': 1.0, 'm': 1.0, 'return': 1.0, 'free': 1.0, 'have': 1.0, 'broken': 1.0, 'snack': 1.0, 'but': 1.0, 'it': 6.0, 'flowers': 1.0, 'so': 1.0, 'simply': 1.0, 'need': 1.0, 'got': 1.0, 'gray': 1.0, 'ever': 1.0, 'has': 3.0, 'deal': 1.0, 'the': 5.0, 'only': 1.0, 'its': 1.0, 'unfortunately': 1.0, 'was': 2.0, 'issues': 1.0, 'colors': 1.0, 'plus': 1.0, 'will': 1.0, 'stroller': 1.0, 'i': 8.0, 'old': 1.0, 'ordered': 1.0, 'noticeable': 1.0, 'tray': 1.0, 'one': 3.0, 'are': 1.0, 'all': 1.0, 'with': 1.0, 'pink': 1.0, 'features': 1.0, 'year': 1.0, 'open': 1.0, 'great': 1.0, 'big': 1.0, 'lightweight': 1.0, 'my': 1.0, 'daughter': 1.0, 'you': 1.0, 'when': 1.0, 'and': 1.0, 'tough': 1.0, 'love': 1.0, 'for': 1.0, 'stars': 1.0, 'because': 1.0, 'not': 1.0, 'received': 1.0, 'that': 2.0, 'gave': 1.0, 'been': 1.0, '5': 1.0, 'before': 1.0, 'a': 2.0}
Word element => {'using': 1.0, 'further': 1.0, 'back': 1.0, 'foot': 1.0, 'slightly': 1.0, 'position': 1.0, 'and': 1.0, 'do': 1.0, 'nicely': 1.0, 'the': 4.0, 'made': 1.0, 'rolls': 1.0, 'was': 1.0, 'has': 2.0, 'well': 2.0, 'a': 2.0, 'we': 1.0, 'bought': 1.0, 'be': 2.0, 'grandson': 2.0, 'month': 1.0, 'it': 2.0, 'for': 1.0, 'visits': 1.0, 'padded': 1.0, 'comfortable': 1.0, 'occasional': 1.0, 'hood': 1.0, 'use': 1.0, 'easily': 1.0, 'folded': 1.0, 'when': 2.0, 'attached': 1.0, 'positions': 1.0, 'old': 1.0, '4': 1.0, 'i': 1.0, 'is': 1.0, 'rest': 1.0, 'indoors': 1.0, 'removed': 1.0, 'car': 1.0, 'sitting': 1.0, '2': 2.0, 'can': 2.0, 'but': 2.0, 'stroller': 2.0, 'seat': 2.0, 'our': 1.0, 'very': 1.0, 'in': 2.0, 'reclined': 1.0, 'this': 1.0, 'wish': 1.0}
Word element => {'place': 1.0, 'fast': 1.0, 'wasn': 1.0, 'like': 1.0, 'to': 2.0, 'squeezing': 1.0, 'get': 1.0, 'and': 1.0, 'latch': 1.0, 'won': 1.0, 'just': 2.0, 'some': 2.0, 'tight': 1.0, 'seems': 1.0, 'in': 2.0, 't': 2.0, 'the': 6.0, 'closed': 1.0, 'take': 1.0, 'preventing': 1.0, 'designed': 1.0, 'liner': 2.0, 'has': 1.0, 'through': 2.0, 'cool': 1.0, 'winter': 1.0, 'mesh': 1.0, 'well': 1.0, 'breezes': 1.0, 'worked': 1.0, 'from': 2.0, 'downside': 1.0, 'prevents': 1.0, 'coming': 1.0, 'is': 1.0, 'fold': 1.0, 'cases': 1.0, 'up': 2.0, 'that': 1.0, 'with': 1.0, 'folding': 1.0, 'this': 2.0, 'only': 1.0, 'it': 5.0, 'will': 1.0, 'stroller': 3.0}
Word element => {'while': 1.0, 'others': 1.0, 'touching': 1.0, 'detour': 1.0, 'carrier': 1.0, 'for': 1.0, 'recommended': 1.0, 'close': 1.0, 'nurses': 1.0, 'birth': 1.0, 'after': 1.0, 'nicu': 1.0, 'the': 3.0, 'also': 1.0, 'in': 2.0, 'on': 1.0, 'is': 1.0, 'public': 1.0, 'time': 1.0, 'during': 1.0, 'weather': 1.0, 'getting': 1.0, 'and': 3.0, 'get': 1.0, 'to': 4.0, 'easy': 1.0, 'from': 2.0, 'protects': 1.0, 'cover': 2.0, 'this': 1.0, 'or': 1.0, 'off': 1.0, 'sun': 1.0, 'rain': 1.0, 'baby': 2.0, 'helps': 1.0, 'my': 1.0, 'wind': 1.0, 'cold': 1.0, 'spent': 1.0, 'some': 1.0}
Word element => {'well': 1.0, 'pretty': 1.0, 'the': 1.0, 'fit': 1.0, 'but': 1.0, 'winter': 1.0, 'as': 2.0, 'i': 1.0, 'carseat': 1.0, 'not': 1.0, 'was': 1.0, 'so': 1.0, 'hoping': 1.0, 'for': 2.0, 'thick': 1.0, 'nor': 1.0, 'really': 1.0, 'ideal': 1.0}
Word element => {'condition': 1.0, 'my': 1.0, 'great': 1.0, 'the': 1.0, 'keep': 1.0, 'i': 1.0, 'to': 2.0, 'exactly': 1.0, 'what': 1.0, 'is': 1.0, 'cozy': 1.0, 'this': 1.0, 'cover': 1.0, 'infant': 1.0, 'protected': 1.0, 'cold': 1.0, 'weather': 1.0, 'and': 1.0, 'germs': 1.0, 'needed': 1.0, 'easy': 1.0, 'use': 1.0, 'timely': 1.0, 'from': 1.0, 'shipping': 1.0}
Word element => {'great': 1.0, 'product': 1.0, 'price': 1.0, 'be': 3.0, 'can': 3.0, 'but': 1.0, 'brutal': 1.0, 'on': 2.0, 'put': 2.0, 'starts': 1.0, 'my': 2.0, 'fact': 1.0, 'worry': 1.0, 'room': 1.0, 'prevented': 1.0, 'walking': 1.0, 'or': 1.0, 'have': 3.0, 'coats': 1.0, 'his': 3.0, 'snow': 1.0, 'would': 1.0, 'bulky': 1.0, 'about': 1.0, 'draft': 1.0, 'no': 1.0, 'to': 2.0, 'as': 3.0, 'over': 2.0, 'up': 1.0, 'help': 1.0, 'through': 1.0, 'breathing': 1.0, 'for': 2.0, 'love': 1.0, 'where': 1.0, 'cover': 1.0, 'really': 1.0, 'real': 1.0, 'given': 1.0, 'this': 2.0, 'dont': 1.0, 'him': 1.0, 'it': 5.0, 'suits': 1.0, 'doubt': 1.0, 'down': 2.0, 'and': 2.0, 'tuck': 1.0, 'there': 1.0, 'perfectly': 1.0, 'soon': 1.0, 'little': 1.0, 'huge': 1.0, 'car': 2.0, 'cool': 1.0, 'that': 2.0, 'because': 1.0, 'man': 1.0, 'i': 6.0, 'small': 1.0, 'a': 3.0, 'we': 2.0, 'fit': 1.0, 'belt': 1.0, 'lays': 1.0, 'holes': 1.0, 'seat': 4.0, 'in': 3.0, 'co': 1.0, 'still': 1.0, 'winters': 1.0, 'all': 2.0, 'an': 1.0, 'another': 1.0, 'extra': 1.0, '5': 1.0, 'blanket': 1.0, 'are': 1.0, 'with': 1.0, 'weather': 1.0, 'inside': 1.0, 'negative': 1.0, 'snug': 1.0, 'is': 4.0, 'when': 1.0, 'keeps': 1.0, 'flap': 2.0, 'door': 1.0, 'face': 3.0, 'right': 3.0, 'top': 1.0, 'back': 1.0, 'the': 9.0, 'of': 2.0, 'out': 2.0, 'except': 1.0, 'get': 1.0, 'colorado': 1.0, 'sense': 1.0}
Word element => {'worth': 1.0, 'otherwise': 1.0, 'is': 1.0, 'on': 1.0, 'fit': 1.0, 'better': 1.0, 'we': 1.0, 'carseat': 1.0, 'thing': 1.0, 'it': 4.0, 'much': 1.0, 'like': 1.0, 'very': 1.0, 'only': 1.0, 'just': 1.0, 'had': 1.0, 'wish': 1.0, 'a': 1.0}
Word element => {'enough': 1.0, 'him': 1.0, 'onesie': 1.0, 'my': 1.0, 'warm': 2.0, 'sometime': 1.0, 's': 1.0, 'winter': 1.0, 'totally': 1.0, 'i': 1.0, 'and': 2.0, 'where': 1.0, 'really': 1.0, 'leave': 1.0, 'rain': 1.0, 'place': 1.0, 'we': 1.0, 'recommend': 1.0, 'lot': 1.0, 'snow': 2.0, 'the': 3.0, 'in': 2.0, 'for': 2.0, 'son': 1.0, 'year': 1.0, 'best': 1.0, 'cover': 1.0, 'its': 2.0, 'sun': 1.0, 'almost': 1.0, 'help': 1.0, 'months': 1.0, '6': 1.0, 'of': 1.0, 'a': 2.0, 'only': 1.0, 'it': 2.0, 'this': 2.0, 'with': 1.0, 'keeps': 1.0, 'wind': 1.0}
Word element => {'beautifully': 1.0, 'stretched': 1.0, 'in': 1.0, 'zippers': 1.0, 'baby': 1.0, 'smoothly': 1.0, 'get': 1.0, 'and': 4.0, 'the': 1.0, '32': 1.0, 'help': 1.0, 'warm': 1.0, 'larger': 1.0, 'it': 3.0, 'soft': 1.0, 'this': 2.0, 'was': 2.0, 'i': 3.0, 'graco': 1.0, 'snug': 1.0, 'glide': 1.0, 'is': 1.0, 'got': 1.0, 'thrilled': 1.0, 'worried': 1.0, 'cover': 1.0, 'out': 1.0, 'little': 1.0, 'when': 1.0, 'easily': 1.0, 'a': 2.0, 'that': 1.0, 'cozy': 1.0, 'super': 1.0, 'would': 1.0, 'not': 1.0, 'to': 1.0, 'seat': 2.0, 'fit': 1.0, 'my': 1.0, 'ride': 1.0, 'infant': 1.0, 'car': 2.0, 'being': 1.0, 'safely': 1.0, 'than': 1.0, 'carriers': 1.0, 'most': 1.0, 'but': 1.0}
Word element => {'fantastic': 1.0, 'was': 1.0, 'part': 1.0, 'packaged': 2.0, 'i': 1.0, 'one': 1.0, 'it': 1.0, 'with': 1.0, 'and': 1.0, 'quickly': 1.0, 'no': 1.0, 'of': 2.0, 'issues': 1.0, 'came': 1.0, 'were': 1.0, 'parts': 1.0, 'that': 1.0, 'product': 2.0, 'a': 2.0, 'wasn': 1.0, 'little': 2.0, 'the': 3.0, 't': 1.0, 'other': 1.0, 'better': 1.0, 'surprised': 1.0, 'but': 1.0}
Word element => {'on': 1.0, 'turn': 1.0, 'easier': 1.0, 'be': 1.0, 'would': 1.0, 'so': 1.0, 'shade': 1.0, 'inside': 1.0, 'is': 1.0, 'light': 1.0, 'if': 1.0, 'off': 1.0, 'hope': 1.0, 'to': 1.0, 'switch': 1.0, 'matches': 1.0, 'i': 1.0, 'are': 1.0, 'the': 4.0, 'my': 1.0, 'color': 1.0, 'carefully': 1.0, 'cute': 1.0, 'should': 1.0, 'very': 2.0, 'animals': 1.0, 'room': 1.0, 'little': 1.0, 'it': 3.0, 'does': 1.0, 'what': 1.0, 'well': 1.0, 'a': 2.0, 'made': 1.0, 'lamp': 1.0, 'and': 2.0, 'do': 1.0, 'not': 1.0, 'just': 1.0}
Word element => {'buy': 1.0, 'good': 1.0, 'pretty': 1.0, 'sturdy': 1.0, 'as': 1.0, 'to': 1.0, 'its': 1.0, 'suppose': 1.0, 'so': 2.0, 'and': 1.0, 'too': 1.0, 'sits': 1.0, 'the': 3.0, 'is': 3.0, 'should': 1.0, 'i': 6.0, 'will': 1.0, 'but': 4.0, 'work': 1.0, 'looks': 1.0, 'it': 5.0, 'nice': 1.0, 'excited': 1.0, 'fit': 1.0, 'love': 1.0, 'lower': 1.0, 'just': 1.0, 'like': 1.0, 'head': 1.0, 'wrong': 1.0, 'wide': 1.0, 'was': 1.0, 'doesn': 1.0, 'giraffes': 1.0, 'covered': 1.0, 'lamp': 3.0, 'than': 2.0, 'maybe': 1.0, 'am': 2.0, 'this': 2.0, 'doing': 1.0, 'something': 1.0, 'that': 1.0, 'don': 1.0, 'about': 1.0, 'make': 1.0, 'think': 1.0, 't': 2.0, 'a': 1.0, 'shade': 1.0, 'disappointed': 1.0, 'little': 1.0, 'very': 1.0, 'somehow': 1.0, 'other': 1.0}
Word element => {'wait': 1.0, 'can': 1.0, 'september': 1.0, 'coming': 1.0, 'use': 1.0, 's': 1.0, 'well': 1.0, 'set': 1.0, 't': 1.0, 'the': 2.0, 'we': 1.0, 'bedding': 1.0, 'lamp': 2.0, 'it': 1.0, 'with': 1.0, 'this': 3.0, 'jake': 1.0, 'adorable': 1.0, 'be': 1.0, 'to': 1.0, 'perfectly': 1.0, 'and': 2.0, 'absolutely': 1.0, 'worth': 1.0, 'coordinates': 1.0, 'will': 1.0, 'price': 1.0, 'i': 1.0, 'putting': 1.0, 'good': 1.0}
Word element => {'nursery': 1.0, 'in': 1.0, 'cute': 1.0, 'said': 1.0, 'being': 1.0, 'flimsy': 1.0, 'the': 5.0, 'is': 4.0, 'not': 1.0, 'lamp': 1.0, 'it': 1.0, 'pictured': 1.0, 'that': 1.0, 'best': 1.0, 'shade': 1.0, 'especially': 1.0, 'just': 1.0, 'but': 1.0, 'as': 1.0, 'quality': 1.0}
Word element => {'it': 1.0, 'worth': 1.0, 'really': 1.0, 'not': 1.0, 'so': 1.0, 'for': 2.0, 'in': 1.0, 'dark': 1.0, 'glow': 1.0, 'good': 1.0, 'of': 2.0, 'don': 1.0, 'a': 1.0, 'they': 1.0, 'but': 1.0, 'than': 1.0, 'the': 2.0, 'more': 1.0, 'these': 1.0, 't': 1.0, 'pacifiers': 1.0, 'couple': 1.0, 'minutes': 1.0, 'that': 1.0, 'point': 1.0, 's': 1.0, 'kind': 1.0, 'selling': 1.0}
Word element => {'like': 1.0, 'so': 1.0, 'no': 1.0, 'right': 1.0, 'though': 1.0, 'against': 1.0, 'my': 1.0, 'itchy': 2.0, 'sometimes': 1.0, 'now': 1.0, 'get': 1.0, 'and': 2.0, 'cover': 1.0, 'pillow': 1.0, 'out': 1.0, 'up': 2.0, 'set': 1.0, 'of': 2.0, 'job': 2.0, 'keeping': 2.0, 's': 1.0, 'you': 3.0, 'awesome': 1.0, 'that': 1.0, 'the': 5.0, 'flat': 1.0, 'does': 2.0, 'i': 4.0, 'again': 1.0, 'overall': 2.0, 'back': 1.0, 'laying': 1.0, 'stretched': 1.0, 'mean': 1.0, 'from': 1.0, 'well': 1.0, 'on': 1.0, 'side': 1.0, 'is': 1.0, 'velcro': 1.0, 'belly': 1.0, 'it': 4.0, 'only': 1.0, 'if': 1.0, 'problem': 1.0, 'your': 1.0, 'partially': 1.0}
Word element => {'fine': 1.0, 'just': 1.0, 'will': 1.0, 'for': 1.0, 'behind': 1.0, 'and': 2.0, 'be': 1.0, 'giving': 1.0, 'luch': 1.0, 'more': 1.0, 'say': 1.0, 'baby': 2.0, 'i': 1.0, 'charm': 1.0, 'it': 1.0, 'this': 1.0, 'good': 1.0, 'of': 1.0, 'confident': 1.0, 'the': 3.0, 'believe': 1.0, 'never': 1.0, 'have': 1.0, 'eye': 1.0, 'that': 2.0, 'angel': 1.0, 'hurts': 1.0, 'evil': 1.0, 'face': 1.0, 'a': 3.0, 'we': 1.0, 'sometimes': 1.0, 'things': 1.0, 'in': 1.0, 'your': 2.0, 'makes': 1.0, 'me': 1.0, 'give': 1.0, 'not': 1.0, 'bit': 1.0, 'so': 1.0, 'back': 1.0, 'all': 1.0, 'to': 1.0, 'smile': 1.0, 'as': 1.0, 'sweet': 1.0, 'haters': 1.0, 'gift': 1.0, 'nice': 1.0, 'feel': 1.0}
Word element => {'need': 1.0, 'dad': 1.0, 'mom': 1.0, 'cute': 1.0, 'super': 1.0, 'baby': 1.0, 'ear': 1.0, 'because': 1.0, 'stars': 1.0, 'three': 1.0, 'giving': 1.0, 'm': 1.0, 'nerves': 1.0, 'one': 1.0, 'wall': 1.0, 's': 1.0, 'you': 1.0, 'only': 1.0, 'it': 9.0, 'this': 1.0, 'of': 1.0, 'driving': 1.0, 'shake': 1.0, 'the': 3.0, 'my': 2.0, 'so': 1.0, 'time': 1.0, '1': 1.0, 'me': 1.0, 'and': 5.0, 'far': 1.0, 'old': 1.0, 'step': 1.0, 'wand': 1.0, 'girl': 1.0, 'year': 1.0, 'daughter': 1.0, 'has': 1.0, 'likes': 2.0, 'pick': 1.0, 'mothers': 1.0, 'hearing': 1.0, 'plugs': 1.0, 'patient': 1.0, 'that': 1.0, 'grate': 1.0, 'plays': 2.0, 'up': 2.0, 'sound': 2.0, 'over': 4.0, 'on': 2.0, 'every': 1.0, 'i': 1.0, 'etc': 1.0, 'even': 1.0, 'is': 1.0, 'say': 1.0, 'to': 1.0, 'same': 1.0, 'magical': 1.0, 'little': 1.0, 'but': 2.0, 'most': 1.0, 'needless': 1.0, 'can': 1.0}
Word element => {'a': 1.0, 'child': 1.0, 'the': 1.0, 'could': 1.0, 'that': 1.0, 'else': 1.0, 'anything': 1.0, 'as': 1.0, 'any': 1.0, 'toy': 3.0, 'entertain': 1.0, 'doesnt': 1.0, 'it': 1.0, 'tune': 1.0, 'this': 2.0, 'stop': 1.0, 'play': 1.0, 'get': 1.0, 'makes': 1.0, 'started': 1.0, 'seeing': 1.0, 'possibly': 1.0, 'are': 1.0, 'you': 1.0, 'there': 1.0, 'turned': 1.0, 'lights': 1.0, 'its': 2.0, 'movement': 1.0, 'though': 1.0, 'once': 1.0, 'no': 1.0, 'dud': 1.0, 'into': 1.0, 'or': 1.0}
Word element => {'loved': 1.0, 'our': 1.0, 'still': 1.0, 'we': 1.0, 'but': 1.0, 'photo': 1.0, 'i': 1.0, 'ribbons': 1.0, 'the': 2.0, 'flat': 1.0, 'it': 2.0, 'love': 1.0, 'were': 1.0, 'pressed': 1.0, 'daughter': 1.0, 'wish': 1.0, 'playing': 1.0, 'in': 1.0, 'as': 1.0, 'and': 1.0}
Word element => {'hand': 1.0, 'have': 1.0, 'need': 1.0, 'find': 1.0, 'to': 1.0, 'now': 1.0, 'pillowcase': 1.0, 'go': 1.0, 'happens': 1.0, 'press': 1.0, 'permanent': 1.0, 'on': 1.0, 'dries': 1.0, 'dryer': 1.0, 'even': 1.0, 'new': 1.0, 'washed': 1.0, 'and': 3.0, 'baby': 1.0, 'something': 1.0, 'our': 1.0, 'one': 1.0, 'love': 1.0, 'for': 1.0, 'with': 1.0, 'it': 2.0, 'this': 1.0, 'purchased': 1.0, 'we': 3.0, 'more': 1.0, 'great': 3.0, 'the': 2.0, 'chime': 1.0, 'in': 4.0, 'sound': 1.0, 'is': 1.0, 'case': 2.0, 'pillow': 1.0, 'just': 1.0, 'not': 1.0, 'annoying': 1.0, 'a': 4.0}
Word element => {'varieties': 1.0, 'animal': 1.0, 'make': 1.0, 'there': 1.0, 'well': 1.0, 'a': 2.0, 'just': 2.0, 'not': 1.0, 'in': 1.0, 'they': 3.0, 'picture': 1.0, 'bought': 1.0, 'and': 4.0, 'both': 1.0, 'monkey': 1.0, 'annoying': 1.0, 'toppers': 1.0, 'frog': 1.0, 'cake': 1.0, 'trust': 1.0, 'made': 1.0, 'are': 2.0, 'the': 3.0, 'diaper': 1.0, 'these': 2.0, 'great': 1.0, 'look': 1.0, 'for': 1.0, 'more': 1.0, 'is': 3.0, 'very': 1.0, 'little': 1.0, 'i': 3.0, 'chime': 1.0, 'like': 2.0, 'which': 1.0, 'sweet': 1.0, 'at': 1.0, 'to': 1.0, 'all': 1.0, 'have': 1.0, 'gund': 1.0, 'quality': 1.0, 'wonderful': 1.0, 'brand': 1.0, 'that': 1.0, 'soft': 1.0, 'perfect': 1.0, 'wish': 1.0, 've': 1.0, 'would': 1.0}
Word element => {'time': 1.0, 'same': 1.0, 'the': 1.0, 'easily': 1.0, 'have': 1.0, 'been': 1.0, 'that': 1.0, 'would': 2.0, 'however': 1.0, 'i': 3.0, 'soaked': 1.0, 'are': 2.0, 'my': 2.0, 'newborn': 1.0, 'wash': 1.0, 'very': 1.0, 'personally': 1.0, 'and': 3.0, 'they': 3.0, 'these': 1.0, 'more': 1.0, 'towels': 2.0, 'bought': 1.0, 'colors': 1.0, 'task': 1.0, 'baby': 2.0, 'as': 2.0, 'patterns': 1.0, 'which': 1.0, 'for': 1.0, 'thick': 1.0, 'after': 1.0, 'cute': 1.0, 'thought': 1.0, 'drying': 1.0, 'a': 3.0, 'dry': 1.0, 'thicker': 1.0, 'bath': 1.0, 'hair': 1.0, 'rather': 1.0, 'of': 1.0, 'with': 1.0, 'not': 1.0, 'squirming': 1.0, 'will': 1.0, 'makes': 1.0, 'warm': 1.0, 'keep': 1.0, 'at': 1.0}
Word element => {'towel': 1.0, 'often': 1.0, 'as': 2.0, 'more': 1.0, 'the': 1.0, 'are': 1.0, 'towels': 1.0, 'soft': 1.0, 'than': 1.0, 'but': 1.0, 'really': 1.0, 'i': 1.0, 'blanket': 1.0, 'm': 1.0, 'a': 2.0, 'using': 1.0, 'thin': 2.0, 'them': 1.0}
Word element => {'off': 1.0, 'sett': 1.0, 'but': 1.0, 'lol': 1.0, 'stickers': 1.0, 'lot': 1.0, 'a': 1.0, 'purchased': 1.0, 'have': 1.0, 'this': 2.0, 'big': 1.0, 'of': 1.0, 'really': 2.0, 'out': 1.0, 'bring': 1.0, 'appearance': 1.0, 'in': 1.0, 'the': 1.0, 'my': 1.0, 'room': 2.0, 'son': 2.0, 'i': 1.0}
Word element => {'value': 1.0, 'excellent': 1.0, 'an': 1.0, 'frames': 1.0, 'picture': 1.0, 'growing': 1.0, 'wood': 1.0, 'quickly': 1.0, 'and': 4.0, 'mos': 1.0, 'he': 1.0, 'with': 1.0, 'after': 1.0, 'so': 1.0, '18': 1.0, 'growth': 1.0, 'safari': 1.0, 'old': 1.0, 'i': 1.0, 'different': 1.0, 'chart': 1.0, 'ones': 1.0, 'the': 1.0, 'great': 1.0, 'around': 1.0, 'is': 2.0, 'room': 1.0, 'son': 1.0, 'my': 1.0, 'happy': 1.0, 'has': 2.0, 's': 1.0, 'love': 1.0, 'for': 2.0, 'themed': 1.0, 'product': 1.0, 'sturdy': 1.0, 'made': 1.0, 'shopping': 1.0, 'out': 1.0, 'of': 1.0, 'easy': 1.0, 'to': 1.0, 'it': 2.0, 'colorful': 1.0, 'one': 1.0, 'decided': 1.0, 'hang': 1.0, 'this': 2.0, 'pictures': 1.0, 'on': 1.0, '3': 1.0}
Word element => {'growth': 1.0, 'sports': 1.0, 'bought': 1.0, 'very': 1.0, 'son': 1.0, 'one': 1.0, 'for': 1.0, 'paper': 1.0, 'looks': 1.0, 'is': 1.0, 'in': 3.0, 'my': 2.0, 'a': 1.0, 'purchased': 1.0, 'room': 3.0, 'much': 1.0, 'had': 1.0, 'to': 1.0, 'was': 1.0, 'matches': 1.0, 'i': 2.0, 'older': 1.0, 'it': 2.0, 'this': 2.0, 'cute': 1.0, 'theme': 1.0, 'his': 2.0, 'sons': 1.0, 'and': 2.0, 'better': 1.0, 'go': 1.0, 'than': 1.0, 'the': 2.0, 'chart': 2.0}
Word element => {'but': 2.0, 'board': 1.0, 's': 2.0, 'a': 6.0, 't': 1.0, 'because': 1.0, 'store': 1.0, 'was': 5.0, 'doesn': 1.0, 'recommend': 1.0, 'eventually': 1.0, 'fact': 1.0, 'my': 1.0, 'will': 1.0, 'keepsake': 1.0, 'i': 5.0, 'kids': 1.0, 'perfect': 1.0, 'this': 1.0, 'as': 2.0, 'to': 3.0, 'the': 7.0, 'nicely': 1.0, 'hanging': 1.0, 'command': 1.0, '0': 1.0, 'liked': 1.0, 'for': 1.0, 'can': 1.0, 'so': 1.0, 'first': 1.0, 'are': 2.0, 'boys': 1.0, 'when': 1.0, 'and': 2.0, 'listed': 1.0, 'although': 1.0, 'you': 1.0, 'choice': 1.0, 'it': 11.0, 'really': 1.0, 'material': 1.0, 'at': 2.0, 'is': 3.0, 'say': 1.0, 'wood': 3.0, 'gender': 1.0, 'taking': 1.0, 'animals': 1.0, 'neutral': 1.0, 'both': 1.0, 'm': 1.0, 'bright': 1.0, 'once': 1.0, 'got': 1.0, 'heights': 1.0, 'please': 1.0, 'fine': 1.0, 'colors': 1.0, 'start': 1.0, 'mark': 1.0, 'photo': 1.0, 'slots': 1.0, 'with': 1.0, 'little': 1.0, 'nice': 1.0, 'do': 3.0, 'have': 1.0, 'hard': 1.0, 'open': 1.0, 'measure': 1.0, 'marker': 1.0, 'up': 1.0, 'on': 1.0, 'carved': 1.0, 'wall': 1.0, 'before': 1.0, 'fold': 1.0, 'love': 1.0, 'bottom': 1.0, 'unfold': 1.0, 'down': 1.0, '3m': 1.0, 'strip': 1.0, 'or': 3.0, 'something': 1.0, 'light': 1.0, 'using': 1.0, 'like': 1.0, 'paint': 1.0, 'twins': 1.0, 'note': 1.0, 'partial': 1.0, 'composite': 1.0, 'type': 1.0, 'not': 1.0, 'sturdy': 2.0, 'cut': 1.0}
Word element => {'one': 1.0, 'another': 1.0, 'again': 1.0, 'buy': 1.0, 'room': 1.0, 'bed': 1.0, 'his': 1.0, 'my': 1.0, 'grandson': 1.0, 'loved': 1.0, 'will': 1.0, 'gift': 1.0, 'would': 1.0, 'mom': 1.0, 'great': 1.0, 'it': 1.0, 'perfect': 1.0, 'in': 1.0, 'for': 1.0, 'look': 1.0}
Word element => {'and': 2.0, 'well': 1.0, 'bright': 1.0, 'purchase': 1.0, 'sturdy': 1.0, 'happy': 1.0, 'my': 1.0, 'worth': 1.0, 'hangs': 1.0, 'product': 1.0, 'are': 1.0, 'checking': 1.0, 'chart': 1.0, 'the': 2.0, 'great': 1.0, 'very': 1.0, 'son': 1.0, 'on': 1.0, 'stays': 1.0, 'loves': 1.0, 'with': 1.0, 'this': 1.0, 'his': 1.0, 'price': 1.0, 'colors': 1.0, 'height': 1.0}
Word element => {'correct': 1.0, 'animals': 1.0, 'has': 2.0, 'but': 1.0, 'stamp': 1.0, 'plasticy': 1.0, 'does': 1.0, 'or': 1.0, 'hold': 1.0, 'some': 1.0, 'others': 1.0, 'space': 1.0, 'three': 1.0, 's': 1.0, 't': 1.0, 'stencil': 1.0, 'functional': 1.0, 'this': 1.0, 'flush': 1.0, 'chart': 2.0, 'which': 1.0, 'plan': 2.0, 'good': 1.0, 'months': 1.0, 'top': 1.0, 'growth': 2.0, 'when': 1.0, 'you': 2.0, 'that': 1.0, 'for': 1.0, 'to': 6.0, 'as': 2.0, 'had': 1.0, 'feel': 1.0, 'name': 1.0, 'have': 2.0, 'a': 4.0, 'small': 1.0, 'and': 4.0, 'couple': 1.0, 'weight': 1.0, 'it': 12.0, 'like': 3.0, 'decoration': 1.0, 'my': 2.0, 'looks': 1.0, 'solved': 1.0, 'the': 8.0, 'of': 1.0, 'hang': 1.0, 'there': 1.0, 'wall': 2.0, 'several': 1.0, 'are': 1.0, 'painted': 1.0, 'on': 2.0, 'pictures': 1.0, 'much': 1.0, 'put': 1.0, 'with': 1.0, 'crisp': 1.0, 'solid': 1.0, 'bottom': 1.0, 'edges': 1.0, 'quality': 1.0, 'item': 1.0, 'at': 4.0, 'is': 3.0, 'look': 1.0, 'feels': 1.0, 'from': 1.0, 'fix': 1.0, 'problem': 1.0, 'part': 1.0, 'away': 1.0, 'circles': 1.0, 'in': 1.0, 'yes': 1.0, 'decorative': 1.0, 'mentioned': 1.0, 'doesn': 1.0, 'blank': 1.0, 'lay': 1.0, 'enjoy': 1.0, 'section': 1.0, 'by': 1.0, 'i': 5.0, 'feet': 1.0, 'putting': 1.0, 'height': 1.0, 'flat': 1.0, 'son': 1.0, 'nail': 2.0, 'edge': 1.0, 'use': 1.0, 'head': 1.0, 'hardest': 1.0, 'making': 1.0, 'sure': 1.0}
Word element => {'full': 1.0, 'house': 1.0, 'with': 1.0, 'alone': 1.0, 'game': 1.0, 'the': 1.0, 'watching': 1.0, 're': 1.0, 'a': 2.0, 'conversation': 1.0, 's': 1.0, 'piece': 1.0, 'it': 1.0, 'great': 1.0, 'and': 1.0, 'you': 1.0, 'fun': 1.0, 'have': 1.0, 'to': 1.0, 'or': 1.0, 'when': 1.0}
Word element => {'team': 1.0, 'pressing': 1.0, 'room': 1.0, 'season': 1.0, 'scores': 1.0, 'during': 1.0, 'on': 1.0, 'but': 1.0, 'haha': 1.0, 'nice': 1.0, 'smiled': 1.0, 'other': 1.0, 'bringing': 1.0, 'practice': 1.0, 'up': 1.0, 'mom': 1.0, 'head': 1.0, 'sleepy': 1.0, 'son': 1.0, 'his': 2.0, 'does': 1.0, 'used': 1.0, 'it': 5.0, 'bedroom': 1.0, 'goal': 2.0, 'we': 1.0, 's': 1.0, 'when': 1.0, 'you': 1.0, 'for': 1.0, 'brother': 1.0, 'themed': 1.0, 'i': 3.0, 'day': 1.0, 'buy': 1.0, 'be': 1.0, 'anywhere': 1.0, 'into': 1.0, 'loves': 1.0, 'too': 1.0, 'soon': 1.0, 'and': 3.0, 'so': 1.0, 'hockey': 2.0, 'he': 2.0, 'addition': 1.0, 'the': 8.0, 'place': 1.0, 'an': 1.0, 'back': 1.0, 'our': 1.0, 'as': 1.0, 'to': 4.0, 'family': 1.0, 'my': 1.0, 'may': 1.0, 'another': 1.0, 'about': 1.0, 'bought': 1.0, 'one': 1.0, 'plan': 1.0, 'is': 2.0, 'this': 1.0, 'allows': 1.0, 'perfect': 1.0, 'wake': 1.0, 'sounds': 1.0, 'by': 1.0, 'light': 3.0, 'just': 3.0, 'using': 1.0, 'like': 2.0, 'at': 1.0, 'fun': 1.0, 'games': 1.0, 'remote': 1.0}
Word element => {'see': 1.0, 'when': 1.0, 'everyone': 1.0, 'freaks': 1.0, 'and': 1.0, 'well': 1.0, 's': 1.0, 'sounds': 1.0, 'this': 1.0, 'really': 1.0, 'is': 1.0, 'made': 1.0, 'the': 1.0, 'looks': 1.0, 'so': 1.0, 'they': 1.0, 'games': 1.0, 'awesome': 1.0, 'makes': 1.0, 'fun': 1.0, 'watching': 1.0, 'great': 1.0, 'it': 2.0}
Word element => {'room': 1.0, 'and': 2.0, 'anywhere': 1.0, 'mounted': 1.0, 'can': 3.0, 'seconds': 1.0, 'your': 1.0, 'on': 2.0, 'in': 2.0, 'stars': 1.0, 'three': 1.0, 'offered': 1.0, 'x': 1.0, 'battery': 1.0, 'to': 4.0, 'our': 1.0, '300rj': 1.0, 'control': 1.0, 'an': 1.0, 'option': 2.0, 'great': 2.0, 'red': 1.0, 'with': 3.0, 'powered': 1.0, 'standard': 1.0, 'not': 2.0, 'style': 1.0, 'amazon': 1.0, 'use': 1.0, 'but': 1.0, 'com': 1.0, 'mode': 1.0, 'at': 1.0, 'is': 4.0, 'a': 3.0, 'fortune': 1.0, 'it': 5.0, 'police': 1.0, '34': 2.0, 'this': 5.0, 'puck': 1.0, 'activated': 1.0, 'kids': 1.0, 'height': 1.0, 'home': 2.0, 'bright': 2.0, 'pl': 1.0, 'gets': 1.0, 'turn': 1.0, 'still': 1.0, 'fan': 1.0, 'beacon': 1.0, 'own': 1.0, 'off': 2.0, 'led': 1.0, 'ultra': 1.0, 'button': 1.0, '5': 2.0, 'remote': 3.0, 'diameter': 1.0, 'team': 2.0, 'scores': 2.0, 'celebrate': 1.0, 'you': 2.0, 'loud': 1.0, 'push': 2.0, 'speaker': 1.0, 'the': 13.0, 'of': 3.0, 'hockey': 3.0, 'light': 3.0, 'just': 1.0, 'because': 1.0, 'that': 3.0, 'has': 2.0, 'next': 1.0, 'be': 2.0, 'built': 1.0, 'blasts': 1.0, 'when': 2.0, 'goal': 1.0, 'base': 1.0, 'horn': 3.0, 'or': 4.0, 'selector': 1.0, 'as': 4.0, 'leave': 2.0, 'also': 2.0, 'will': 1.0, 'activate': 1.0, '15': 1.0, 'games': 1.0, 'for': 6.0, '10': 1.0, 'each': 1.0, 'unit': 1.0, 'switch': 1.0, 'we': 2.0, 'take': 1.0}
Word element => {'impress': 1.0, 'im': 1.0, 'long': 1.0, 'a': 1.0, 'last': 1.0, 'will': 1.0, 'time': 1.0, 'is': 2.0, 'set': 1.0, 'well': 1.0, 'material': 1.0, 'the': 1.0, 'made': 1.0, 'it': 2.0, 'perfect': 1.0, 'fits': 1.0, 'soft': 1.0, 'and': 1.0}
Word element => {'brand': 1.0, 'and': 1.0, 'video': 1.0, 'purchased': 1.0, 'just': 1.0, 'baby': 2.0, 'why': 1.0, 'again': 2.0, 'have': 1.0, 'small': 1.0, 'between': 1.0, 'monitors': 1.0, 'motorola': 1.0, 'then': 3.0, 'features': 1.0, 'of': 2.0, 'hours': 1.0, 'monitor': 4.0, '1': 1.0, 'for': 3.0, 'lucky': 1.0, 'this': 1.0, 'with': 2.0, 'other': 1.0, 'but': 1.0, 'distance': 1.0, 'deal': 1.0, 'the': 6.0, 'is': 1.0, 'more': 1.0, 'c': 1.0, 'm': 1.0, 'price': 1.0, 'charge': 1.0, 'compared': 1.0, 'all': 1.0, 'to': 3.0, 'its': 2.0, '3': 2.0, 'apartment': 1.0, 'rooms': 1.0, 'b': 1.0, 'having': 1.0, 'in': 1.0, 'battery': 1.0, 'i': 1.0, 'less': 1.0, 'live': 1.0, 'hold': 1.0, 'we': 3.0, 'go': 2.0, 'wont': 1.0, 'a': 4.0, 'since': 1.0, 'if': 2.0, 'me': 1.0, 'not': 3.0, 'mobile': 1.0, 'months': 1.0, 'decided': 2.0, 'huge': 1.0, 'an': 1.0, 'so': 1.0}
Word element => {'10': 1.0, 'after': 1.0, 'take': 1.0, 'enough': 1.0, 'long': 1.0, 'last': 1.0, 'even': 1.0, 'now': 1.0, 'getting': 1.0, 'weaker': 1.0, 'suppose': 1.0, 'hours': 1.0, 'keeps': 1.0, 'never': 1.0, 'fact': 1.0, 'that': 2.0, 'beep': 1.0, 'and': 3.0, 'monitor': 2.0, 'won': 1.0, 'lasted': 1.0, 'has': 1.0, 'temperature': 1.0, 'me': 1.0, 'not': 1.0, 'are': 1.0, 'the': 8.0, 'great': 2.0, 'a': 1.0, 't': 2.0, 'it': 6.0, 'this': 2.0, 'for': 1.0, 'love': 3.0, 'dies': 1.0, 'baby': 1.0, 'don': 1.0, 'your': 1.0, 'on': 2.0, 'waste': 1.0, 'features': 1.0, 'is': 4.0, 'shower': 1.0, 'of': 1.0, 'battery': 2.0, 'lullaby': 1.0, 'alert': 1.0, 'adjust': 1.0, 'how': 1.0, 'you': 3.0, 'when': 1.0, 'all': 1.0, 'to': 4.0, 'or': 1.0, 'high': 1.0, 'low': 1.0, 'what': 1.0, 'in': 1.0, 'will': 1.0, 'also': 1.0, 'do': 1.0, 'nursery': 1.0, 'button': 1.0, 'minutes': 1.0, 'talk': 1.0, 'i': 3.0, 'feature': 1.0, 'but': 1.0, 'work': 1.0, 'money': 1.0, 'can': 1.0, '5': 1.0, 'sensitive': 1.0}
Word element => {'be': 1.0, 'not': 1.0, 'you': 1.0, 'good': 2.0, 'no': 1.0, 'had': 1.0, 'to': 1.0, 'made': 1.0, 'various': 1.0, 'my': 1.0, 'static': 1.0, 'choice': 1.0, 'this': 2.0, 'will': 1.0, 'quality': 2.0, 'that': 1.0, 'choose': 1.0, 'i': 2.0, 'market': 1.0, 'monitor': 1.0, 'digital': 1.0, 'more': 1.0, 'the': 3.0, 'ones': 1.0, 'opinion': 1.0, 'ratings': 1.0, 'from': 1.0, 'best': 2.0, 'disappointed': 1.0, 'songs': 1.0, 'in': 2.0, 'love': 1.0, 'one': 1.0, 'purchasing': 1.0, 'on': 1.0, 'over': 1.0}
Word element => {'recommend': 1.0, 'a': 2.0, 'very': 1.0, 'and': 2.0, 'monitor': 2.0, 'it': 2.0, 'this': 2.0, 'have': 1.0, 'for': 1.0, 'its': 1.0, 'everyone': 1.0, 'to': 1.0, 'had': 1.0, 'price': 1.0, 'about': 1.0, 'picture': 1.0, 'deal': 1.0, 'on': 1.0, 'month': 1.0, 'amazing': 1.0, 'great': 2.0, 'the': 2.0, 'are': 1.0, 'i': 2.0, 'clear': 1.0, 'options': 1.0, 'is': 2.0, 'really': 1.0, 'nice': 1.0, 'would': 1.0}
Word element => {'awake': 1.0, 'versus': 1.0, 'sleep': 1.0, 'their': 1.0, 'just': 1.0, 'baby': 1.0, 'your': 1.0, 'if': 1.0, 'see': 1.0, 'anything': 1.0, 'would': 1.0, 'used': 1.0, 'verified': 1.0, 'it': 3.0, 'degrees': 1.0, 'pros': 1.0, 'a': 4.0, 'moving': 1.0, 'we': 1.0, 'key': 1.0, 'reports': 1.0, 'excellent': 1.0, 'operate': 1.0, 'had': 1.0, 'function': 2.0, 'display': 2.0, 'independently': 1.0, 'ergonomic': 1.0, 'design': 1.0, 'but': 1.0, 'nightvision2': 1.0, 'with': 2.0, 'wall': 1.0, 'patchy': 1.0, 'easy': 1.0, 'colour': 1.0, 'are': 1.0, '6': 1.0, 'being': 1.0, 'slow': 1.0, 'to': 5.0, 'as': 1.0, 'now': 2.0, 'use': 1.0, 'refreshes': 1.0, 'been': 2.0, 'experience': 1.0, 'generally': 1.0, 'outset': 1.0, 'in': 3.0, 'have': 1.0, 'for': 2.0, 'using': 1.0, 'like': 1.0, 'months': 1.0, 'both': 1.0, 'i': 4.0, 'my': 1.0, 'may': 1.0, 'mount': 1.0, 'higher': 1.0, 'temperature': 2.0, 'good': 1.0, 'digital': 2.0, 'and': 6.0, 'actual': 1.0, 'too': 1.0, '1': 1.0, 'dect': 1.0, 'analogue': 1.0, 'be': 1.0, 'phones4': 1.0, 'room': 1.0, 'thermometer2': 1.0, 'that': 2.0, 'vox': 1.0, 'handheld': 1.0, 'times': 1.0, 'shouting': 1.0, 'baby3': 1.0, 'same': 1.0, 'loud': 1.0, 'you': 2.0, 'motion': 1.0, 'attention': 1.0, 'the': 10.0, 'of': 2.0, 'is': 8.0, 'at': 2.0, 'screen': 1.0, 'due': 1.0, 'monitor': 2.0, 'interference': 1.0, 'benefit': 1.0, 'set': 1.0, 'frequency': 1.0, 'few': 1.0, 'this': 3.0, 'absence': 1.0, 'else': 1.0, 'wife': 1.0, 'can': 2.0, 'functionsummarymy': 1.0, 'differing': 1.0, 'views': 1.0, 'usecons1': 1.0, 'on': 1.0, 'necessity': 1.0, 'video': 1.0, 'did': 1.0, 'agree': 1.0, 'not': 2.0, 'needing': 1.0, 'always': 1.0, 'has': 1.0, 'them': 1.0, 'having': 1.0}
Word element => {'recommend': 1.0, 'would': 1.0, 'other': 1.0, 'to': 1.0, 'big': 1.0, 'daytime': 1.0, 'at': 1.0, 'much': 1.0, 'so': 2.0, 'is': 3.0, 'our': 1.0, 'highly': 1.0, 'baby': 1.0, 'been': 1.0, 'a': 1.0, 'care': 1.0, 'better': 1.0, 'did': 1.0, 'child': 1.0, 'extensive': 1.0, 'screen': 1.0, 'in': 1.0, 'also': 1.0, 'night': 1.0, 'clear': 1.0, 'i': 3.0, 'for': 2.0, 'one': 2.0, 'monitor': 3.0, 'and': 2.0, 'first': 1.0, 'research': 1.0, 'this': 3.0, 'wonderful': 1.0, 'monitors': 1.0, 'have': 1.0, 'has': 1.0, 'the': 4.0, 'compared': 1.0, 'angel': 1.0, 'video': 1.0, 'but': 1.0}
Word element => {'put': 2.0, 'on': 3.0, 'in': 2.0, 'started': 1.0, 'baby': 1.0, 'little': 1.0, 'monitor': 1.0, 'husband': 1.0, 'normally': 1.0, 'nights': 1.0, 'instead': 1.0, 'there': 1.0, 'helps': 1.0, 'few': 1.0, 'tempeture': 1.0, 'light': 1.0, 'us': 1.0, 'a': 3.0, 'could': 1.0, 'lullabies': 1.0, 'move': 1.0, 'are': 1.0, 'no': 1.0, 'about': 1.0, 'lullaby': 1.0, 'up': 2.0, 'daddy': 1.0, 'crying': 1.0, 'one': 1.0, 'for': 3.0, 'say': 1.0, 'to': 8.0, 'all': 1.0, 'least': 1.0, 'ourselves': 1.0, 'pick': 1.0, 'running': 1.0, 'have': 2.0, 'it': 4.0, 'him': 5.0, 'be': 1.0, 'would': 3.0, 'only': 1.0, 'without': 2.0, 'great': 2.0, 'feel': 1.0, 'i': 8.0, 'has': 1.0, 'save': 1.0, 'cons': 1.0, 'my': 2.0, 'me': 2.0, 'anyone': 1.0, 'and': 9.0, 'really': 2.0, 'sleep': 2.0, 'back': 2.0, 'or': 4.0, 'worth': 1.0, 'with': 1.0, 'pros': 1.0, 'intercom': 1.0, 'they': 1.0, 'comfort': 1.0, 'gives': 1.0, 'rushing': 1.0, 'better': 1.0, 'want': 1.0, 'turn': 1.0, 'every': 1.0, 'if': 1.0, 'picked': 1.0, 'learn': 1.0, 'his': 2.0, 'see': 1.0, 'own': 2.0, 'of': 1.0, 'the': 7.0, 'moves': 1.0, 'himself': 1.0, 'leaving': 1.0, 'is': 1.0, 'at': 1.0, 'mommy': 1.0, 'love': 1.0, 'he': 2.0, 'makes': 2.0, 'noise': 2.0, 'comes': 1.0, 'room': 1.0, 'which': 1.0, 'like': 1.0, 'know': 1.0, 'rest': 1.0, 'time': 1.0, 'buy': 1.0, 'totally': 1.0, 'recommend': 1.0}
Word element => {'around': 1.0, 'moving': 1.0, 'really': 1.0, 'aware': 1.0, 'happening': 1.0, 'what': 1.0, 'know': 1.0, 'clear': 1.0, 'picture': 1.0, 'does': 1.0, 'find': 1.0, 'happen': 1.0, 'problems': 1.0, 'before': 1.0, 'ordered': 1.0, 'set': 2.0, 'glad': 1.0, 'dd': 1.0, 'until': 1.0, 'enough': 1.0, 'off': 1.0, 'son': 1.0, 'adult': 1.0, 'for': 1.0, 'bought': 1.0, 'one': 1.0, 'cute': 1.0, 'mr': 1.0, 'bed': 1.0, 'opportunity': 1.0, 'sound': 1.0, 'don': 1.0, 'an': 2.0, 'am': 1.0, 'tied': 1.0, 'back': 1.0, 'new': 1.0, 'i': 8.0, 'sleep': 1.0, 'to': 6.0, 'was': 1.0, 'now': 1.0, 'use': 1.0, 's': 2.0, 'a': 1.0, 'walks': 1.0, 't': 1.0, 'the': 6.0, 'have': 3.0, 'this': 3.0, 'he': 2.0, 'with': 1.0, 'bedroom': 1.0, 'in': 1.0, 'that': 1.0, 'case': 1.0, 'started': 1.0, 'getting': 1.0, 'monitor': 1.0, 'me': 2.0, 'and': 2.0, 'get': 1.0, 'carry': 1.0, 'keep': 1.0, 'eye': 1.0, 'make': 1.0, 'on': 1.0, 'him': 2.0}
Word element => {'around': 1.0, 'will': 1.0, 'morning': 1.0, 'call': 1.0, 'currently': 1.0, 'provided': 1.0, 'customer': 1.0, 'quality': 1.0, 'dissapointed': 1.0, 'more': 1.0, 'another': 1.0, 'with': 1.0, 'am': 3.0, 'though': 1.0, 'so': 2.0, 'can': 1.0, 'charging': 2.0, 'half': 1.0, 'less': 1.0, 'here': 2.0, 'backorder': 1.0, 'claimed': 1.0, 'thing': 1.0, 'funny': 1.0, 'came': 1.0, 'see': 1.0, 'seems': 1.0, 'until': 1.0, 'temporary': 1.0, 'as': 2.0, 'waiting': 1.0, 'different': 1.0, 'out': 2.0, 'sent': 2.0, 'have': 3.0, 'when': 1.0, 'what': 1.0, 'who': 1.0, 'going': 1.0, 'finally': 2.0, 'mad': 1.0, 'now': 3.0, 'really': 2.0, 'korea': 1.0, 'from': 3.0, 'someone': 1.0, 'shipped': 1.0, 'very': 1.0, 'being': 1.0, 'one': 1.0, 'explaned': 1.0, 'they': 4.0, 'before': 1.0, 'connecting': 1.0, 'least': 1.0, 'eight': 1.0, 'send': 1.0, 'started': 1.0, 'has': 2.0, 'them': 1.0, 'cord': 1.0, 'for': 4.0, 'unit': 1.0, 'email': 3.0, 'receive': 1.0, 'be': 3.0, 'non': 2.0, 'motorola': 5.0, 'are': 2.0, 'working': 5.0, 'actually': 1.0, 'order': 1.0, 'weeks': 1.0, 'would': 5.0, 'time': 3.0, 'model': 2.0, 'new': 1.0, 'even': 1.0, 'took': 1.0, 'contacted': 2.0, '24': 1.0, 'to': 8.0, 'was': 7.0, 'than': 2.0, 'way': 1.0, 'tracking': 2.0, 'how': 2.0, 'plugged': 1.0, 'us': 1.0, 'received': 2.0, 'february': 1.0, 'since': 2.0, 'is': 2.0, 'at': 1.0, 'it': 11.0, 'others': 1.0, 'baby': 2.0, 'she': 4.0, 'only': 1.0, 'do': 1.0, 'this': 6.0, 'well': 1.0, 'calls': 1.0, 'i': 20.0, 'two': 3.0, 'prior': 1.0, 'buy': 1.0, 'without': 1.0, 'days': 3.0, 'day': 2.0, 'in': 6.0, 'itself': 1.0, 'not': 2.0, 'after': 2.0, 'and': 19.0, 'hours': 1.0, 'monitor': 10.0, 'told': 3.0, 'amount': 1.0, 'long': 1.0, 'on': 6.0, 'think': 1.0, 'parent': 1.0, 'process': 1.0, 'purchased': 1.0, 'had': 4.0, 'where': 1.0, 'phone': 1.0, 'of': 3.0, 'the': 20.0, 'back': 4.0, 'an': 2.0, 'product': 1.0, 'camera': 1.0, 'video': 1.0, 'six': 2.0, 'additional': 1.0, 'monitors': 1.0, 'just': 1.0, 'by': 2.0, 'months': 1.0, 'get': 2.0, 'that': 12.0, 'been': 2.0, 'goes': 1.0, 'information': 2.0, 'we': 2.0, 'then': 3.0, 'representative': 3.0, 'sending': 1.0, 'should': 1.0, 'stopped': 2.0, 'recieved': 3.0, 'mail': 1.0, 'let': 1.0, 'use': 2.0, 'her': 3.0, 'know': 1.0, 'made': 1.0, 'based': 1.0, 'which': 1.0, 'returned': 1.0, 'warranty': 2.0, 'return': 1.0, 'spoke': 2.0, 'me': 4.0, 'my': 3.0, 'service': 1.0, 'still': 1.0, 'asked': 2.0, 'number': 1.0, 'eta': 1.0, 'month': 1.0, 'under': 1.0, 'same': 2.0, 'waited': 1.0, 'response': 1.0, 'seven': 1.0, 'spent': 1.0, 'knew': 1.0, 'never': 2.0, 'emailed': 2.0, 'a': 8.0, 'again': 3.0, 'called': 2.0, 't': 1.0, 'replacement': 3.0, 'were': 2.0}
Word element => {'5': 1.0, 'mean': 1.0, 'takes': 1.0, 'that': 1.0, 'how': 1.0, 'out': 2.0, 'update': 1.0, 'manufacturer': 1.0, 'am': 1.0, 'when': 1.0, 'you': 1.0, 'for': 1.0, 'passes': 1.0, 'product': 1.0, 'in': 1.0, 'camera': 1.0, 'on': 2.0, '3': 1.0, 'connection': 1.0, 'up': 1.0, 'not': 1.0, 'friendly': 1.0, 'months': 2.0, 'bought': 1.0, 'wifi': 1.0, 'with': 2.0, 'it': 1.0, 'stopped': 1.0, 'only': 1.0, 'likely': 1.0, 'loud': 1.0, 'unit': 1.0, 'included': 1.0, 'to': 1.0, 'as': 1.0, 'use': 1.0, 'privacy': 1.0, 'video': 1.0, 'back': 1.0, 'losing': 1.0, 'a': 1.0, 'basically': 1.0, 'the': 7.0, 'promised': 1.0, 'same': 1.0, 'monitor': 2.0, 'ced': 1.0, 'working': 1.0, 'will': 2.0, 'batteries': 1.0, 'about': 1.0, '150': 1.0, 'time': 1.0, 'i': 3.0, 'two': 1.0, 'way': 2.0, 'voice': 1.0, 'is': 1.0, 'and': 4.0, 'too': 1.0, 'this': 2.0, 'buyer': 1.0, 'long': 1.0, 'wireless': 1.0, 'beware': 1.0, 'seller': 1.0, 'started': 1.0, 'usa': 1.0, 'find': 1.0, 'does': 1.0}
Word element => {'mount': 1.0, 'be': 1.0, 'how': 1.0, 'sure': 1.0, 'into': 1.0, 'looked': 1.0, 'haven': 1.0, 'all': 1.0, 'playing': 1.0, 'talking': 1.0, 'receiving': 1.0, 'se': 1.0, 'feed': 1.0, 'just': 2.0, 'by': 2.0, 'have': 2.0, 'menu': 2.0, 'there': 2.0, 'time': 1.0, 'needs': 1.0, 'easy': 1.0, 'bit': 1.0, 'really': 2.0, 'room': 1.0, 'before': 1.0, 'sound': 3.0, 'don': 1.0, 'm': 1.0, 'in': 3.0, 'said': 1.0, 'if': 2.0, 'every': 1.0, 'turn': 1.0, 's': 1.0, 'small': 2.0, 'a': 7.0, 'we': 1.0, 't': 3.0, 'could': 1.0, 'you': 4.0, 'been': 2.0, 'were': 1.0, 'straight': 1.0, 'to': 6.0, 'sleep': 1.0, 'as': 1.0, 'its': 1.0, 'only': 1.0, 'now': 1.0, 'is': 5.0, 'anything': 1.0, 'computer': 1.0, 'for': 2.0, 'and': 4.0, 'same': 1.0, 'month': 1.0, 'green': 2.0, 'monitor': 2.0, 'he': 1.0, 'this': 1.0, 'controlled': 1.0, 'wish': 1.0, 'can': 1.0, 'but': 3.0, '2': 1.0, 'voice': 1.0, 'way': 2.0, 'fact': 1.0, 'my': 1.0, 'camera': 4.0, 'video': 4.0, 'option': 1.0, 'fantastic': 1.0, 'great': 3.0, '1': 1.0, 'baby': 1.0, 'she': 1.0, 'deal': 1.0, 'check': 2.0, 'basically': 1.0, 'your': 1.0, '3': 1.0, 'on': 4.0, 'or': 1.0, 'her': 1.0, 'music': 1.0, 'his': 1.0, 'light': 2.0, 'using': 2.0, 'urge': 1.0, 'also': 1.0, 'get': 1.0, 'that': 2.0, 'tyke': 1.0, 'not': 1.0, 'glimpse': 1.0, 'the': 17.0, 'attention': 1.0, 'of': 4.0, 'it': 3.0, 'hits': 1.0, 'philips': 1.0, '4': 1.0, 'was': 2.0, 'off': 1.0, 'grumbling': 1.0, 'front': 2.0, 'unit': 2.0, 'wasn': 1.0, 'out': 1.0, 'little': 2.0, 'capture': 1.0, 'putting': 1.0, 'coming': 1.0, 'i': 4.0, 'well': 1.0, 'll': 1.0, 'easier': 1.0, 'surface': 1.0, 'control': 1.0, 'volume': 1.0, 'with': 1.0}
Word element => {'recommend': 1.0, 'nursery': 1.0, 'issues': 1.0, 'house': 1.0, 'story': 1.0, 'through': 1.0, 'able': 1.0, 'great': 1.0, 'range': 1.0, 'product': 1.0, 'verstile': 1.0, 'love': 1.0, 'this': 1.0, 'perfect': 1.0, 'volume': 1.0, 'face': 1.0, 'my': 2.0, 'from': 1.0, 'inches': 1.0, '16': 1.0, 'about': 1.0, 'mouth': 1.0, 'their': 1.0, 'holding': 1.0, 'loud': 1.0, 'ones': 1.0, 'there': 2.0, 'didn': 1.0, 't': 1.0, 'a': 1.0, 'walk': 1.0, 'wonder': 1.0, 'how': 2.0, 'the': 4.0, 'place': 1.0, 'being': 1.0, 'if': 2.0, 'i': 8.0, '3': 1.0, 'your': 1.0, 'they': 3.0, 'many': 1.0, 'is': 5.0, 'am': 1.0, 'when': 2.0, 'you': 1.0, 'monitors': 1.0, 'must': 1.0, 'have': 1.0, 'into': 1.0, 'disagree': 1.0, '20': 1.0, 'room': 1.0, 'other': 1.0, 'design': 1.0, 'hold': 1.0, 'like': 1.0, 'all': 1.0, 'to': 3.0, 'any': 2.0, 'baby': 2.0, 'in': 3.0, 'it': 4.0, 'with': 2.0, 'speaker': 1.0, 'are': 3.0, 'highly': 1.0, 'speak': 2.0, 'plain': 1.0, 'too': 1.0, 'green': 1.0, 'and': 3.0, 'top': 1.0, 'boring': 1.0, 'some': 1.0, 'modern': 1.0, 'close': 1.0, 'looking': 1.0, 'out': 4.0, 'still': 1.0, 'look': 1.0, 'but': 1.0, 'most': 1.0, 'of': 3.0, 'nurseries': 1.0, 'peoples': 1.0, 'floor': 1.0, 'assesment': 1.0}
Word element => {'issues': 1.0, '6': 1.0, 'had': 1.0, 've': 1.0, 'though': 1.0, 'recharges': 1.0, 'plug': 1.0, 'batteries': 1.0, 'months': 1.0, 'get': 1.0, 'plugged': 1.0, 'battery': 1.0, 'complaint': 1.0, 'rechargeable': 1.0, 'only': 1.0, 'have': 4.0, 'either': 1.0, 'would': 1.0, 'wouldn': 1.0, 'did': 1.0, 'clip': 1.0, 'not': 2.0, 'does': 2.0, 'monitor': 2.0, 'be': 2.0, 'd': 1.0, 'low': 1.0, 'go': 2.0, 'a': 6.0, 'quality': 1.0, 'just': 3.0, 'wish': 1.0, 'warns': 1.0, 'but': 5.0, 'music': 1.0, 'over': 1.0, 'work': 1.0, '80': 1.0, 'split': 1.0, 'sqft': 1.0, 'gets': 1.0, 'no': 2.0, 'asleep': 1.0, 'good': 1.0, 'picks': 1.0, 't': 1.0, 'belt': 1.0, 'further': 1.0, 'sounds': 1.0, 'could': 2.0, 'will': 1.0, 'gauge': 1.0, 'vision': 1.0, 'is': 7.0, 'level': 1.0, 'outside': 1.0, 'that': 2.0, 'problems': 1.0, 'range': 1.0, 'big': 1.0, 'great': 1.0, 'seems': 2.0, 'until': 1.0, 'very': 1.0, 'nice': 2.0, 'little': 3.0, 'and': 5.0, 'the': 13.0, 'of': 1.0, 'once': 1.0, 'up': 3.0, 'sound': 1.0, 'upstairs': 1.0, 'can': 2.0, 'so': 2.0, 'house': 2.0, 'camera': 1.0, 'video': 1.0, 'slightest': 1.0, 'in': 4.0, 'screen': 2.0, 'with': 3.0, 'thought': 1.0, 'it': 11.0, 'baby': 2.0, 'she': 1.0, 'night': 1.0, 'you': 2.0, 'creepy': 1.0, 'loud': 1.0, 'me': 1.0, 'my': 1.0, 'rocks': 1.0, 'or': 1.0, 'feature': 1.0, 'if': 1.0, 'still': 1.0, 'clear': 1.0, 'run': 1.0, '2000': 1.0, 'audio': 1.0, 'hand': 1.0, 'know': 1.0, 'do': 1.0, 'gardening': 1.0, 'set': 1.0, 'on': 1.0, 'your': 2.0, 'porch': 1.0, 'hear': 1.0, 'respond': 1.0, 'we': 1.0, 'fine': 1.0, 'some': 1.0, 'never': 2.0, 'smaller': 1.0, 'use': 1.0, 'i': 12.0, 'well': 1.0, 'talk': 1.0, 'back': 1.0, 'irritated': 1.0, 'cool': 1.0, 'when': 1.0, 'what': 1.0, 'he': 1.0, 'here': 1.0, 'watch': 1.0, 'temp': 1.0, 'pretty': 1.0, 'to': 8.0, 'high': 2.0, 'think': 2.0, 'better': 1.0, 'than': 1.0}
Word element => {'wish': 1.0, 'type': 1.0, 'video': 1.0, 'price': 1.0, 'on': 5.0, 'do': 1.0, 'put': 1.0, 'in': 1.0, 'when': 5.0, 'leave': 1.0, 'thing': 2.0, 'about': 1.0, 'main': 1.0, 'did': 1.0, 'makes': 1.0, 'keep': 1.0, 'want': 1.0, 'don': 1.0, 'make': 1.0, 'sound': 1.0, 'beep': 4.0, 'bulky': 1.0, 'would': 2.0, 'super': 1.0, 'there': 1.0, 'but': 1.0, 'change': 1.0, 'noise': 3.0, 'just': 3.0, 'life': 1.0, 'being': 1.0, 'very': 3.0, 'picture': 1.0, 'monitor': 3.0, 'could': 1.0, 'a': 7.0, 'we': 3.0, 't': 2.0, 'like': 4.0, 'sleeping': 1.0, 'i': 6.0, 'turn': 2.0, 'if': 4.0, 'clear': 1.0, 'and': 5.0, 'which': 2.0, 'good': 2.0, 'last': 1.0, 'at': 1.0, 'is': 7.0, 'around': 1.0, 'quiet': 1.0, 'battery': 2.0, 'really': 1.0, 'it': 11.0, 'with': 1.0, 'few': 1.0, 'this': 1.0, 'to': 6.0, 'any': 2.0, 'review': 1.0, 'mention': 1.0, 'nightstand': 1.0, 'that': 2.0, 'of': 1.0, 'the': 9.0, 'finally': 1.0, 'baby': 2.0, 'you': 7.0, 'things': 1.0, 'loud': 3.0, 'night': 1.0, 'monitoring': 1.0, 'trying': 1.0, 'ensure': 1.0, 'be': 1.0, 'system': 1.0, 'beeping': 1.0, 'does': 2.0, 'not': 4.0, 'down': 1.0, 'turned': 3.0, 'off': 2.0, 'house': 1.0, 'though': 1.0, 'anything': 1.0, 'need': 1.0, 'or': 1.0, 'have': 2.0, 'running': 1.0, 'overall': 1.0, 'low': 1.0, 'plugged': 1.0, 'also': 2.0, 'bit': 1.0, 'so': 2.0, 'doesn': 1.0, 'way': 1.0, 'clip': 1.0, 'wanted': 1.0, 'onto': 1.0, 'while': 1.0, 'are': 3.0, 'working': 1.0, 'bad': 1.0, 'for': 1.0}
Word element => {'full': 1.0, 'purchased': 1.0, 'without': 1.0, 'sleeping': 1.0, 'could': 1.0, 'husband': 1.0, 'screaming': 1.0, 'tended': 1.0, 'while': 1.0, 'should': 1.0, 'continue': 1.0, 'low': 1.0, 'five': 1.0, 'volume': 1.0, 'gripe': 1.0, 'primary': 1.0, 'using': 1.0, 'when': 1.0, 'after': 1.0, 'today': 1.0, 'unplugged': 1.0, 'months': 1.0, 'broken': 1.0, 'c': 1.0, 'guess': 1.0, 'dropped': 1.0, 'want': 1.0, 'pick': 1.0, 'shape': 1.0, 'handheld': 1.0, 'lowest': 1.0, 'awkward': 1.0, 'as': 1.0, 'however': 1.0, 'know': 1.0, 'built': 1.0, 'be': 2.0, 'lack': 1.0, 'room': 1.0, 'daughter': 1.0, 'in': 2.0, 'reads': 2.0, 'though': 1.0, 'price': 1.0, 'product': 1.0, 'video': 2.0, 'would': 2.0, 'summer': 2.0, 'really': 1.0, 'battery': 1.0, '89': 1.0, 'apply': 1.0, 'not': 7.0, 'may': 1.0, 'my': 5.0, 'review': 1.0, 'usage': 1.0, 'always': 2.0, 'has': 2.0, 'started': 1.0, 'hot': 1.0, 'particular': 1.0, 'wi': 1.0, 'that': 2.0, 'gripes': 1.0, 'by': 1.0, '78': 1.0, 'just': 3.0, 'high': 3.0, 'to': 9.0, 'pass': 1.0, 'nice': 3.0, '7': 1.0, '79': 1.0, 'up': 4.0, 'basically': 1.0, 'of': 2.0, 'the': 19.0, 'move': 1.0, 'used': 1.0, 'misleading': 1.0, 'image': 1.0, 'thermometer': 1.0, 'was': 5.0, 've': 4.0, 't': 1.0, 'a': 6.0, 's': 6.0, 'but': 4.0, 'music': 1.0, 'all': 3.0, 'playing': 1.0, 'other': 1.0, 'shelf': 1.0, 'levels': 1.0, 'so': 4.0, 'it': 15.0, 'few': 1.0, 'this': 5.0, 'south': 1.0, 'only': 2.0, 'nursery': 1.0, 'florida': 1.0, 'do': 2.0, 'couldn': 1.0, 'monitor': 4.0, 'listed': 1.0, 'and': 6.0, 'about': 2.0, 'infrared': 1.0, 'minutes': 1.0, '100': 2.0, 'able': 1.0, 'you': 1.0, 'night': 2.0, 'well': 1.0, 'i': 15.0, 'control': 1.0, 'day': 2.0, 'etc': 1.0, 'or': 1.0, 'feature': 1.0, 'died': 1.0, 'then': 1.0, 'fine': 3.0, 'at': 1.0, 'is': 9.0, 'like': 1.0, 'no': 1.0, 'traditional': 1.0, 'feel': 1.0, 'idea': 1.0, 'live': 1.0, 'necessary': 1.0, 'range': 1.0, 'never': 1.0, 'had': 2.0, 'have': 2.0, 'interrupted': 1.0, 'there': 2.0, 'deal': 1.0, 'baby': 2.0, 'many': 1.0, 'mute': 2.0, 'lights': 1.0, 'hearing': 1.0, 'lit': 1.0, '10': 1.0, 'for': 2.0, 'where': 1.0, 'model': 2.0, 'too': 1.0, 'one': 1.0, 'b': 1.0, 'seems': 1.0, 'fi': 1.0, 'rises': 1.0, 'plugged': 1.0, 'also': 1.0, 'trick': 1.0, 'talking': 1.0, 'first': 1.0, 'are': 2.0, 'cute': 1.0, 'realize': 1.0, 'on': 1.0, 'almost': 1.0, 'air': 1.0, 'clear': 1.0, 'if': 3.0, 'temp': 1.0, 'goes': 1.0, 'above': 1.0}
Word element => {'instead': 1.0, 'return': 1.0, 'them': 1.0, 'weeks': 1.0, 'take': 1.0, 'exchanged': 1.0, 'be': 1.0, 'needed': 1.0, 'who': 1.0, 'out': 1.0, 'buying': 1.0, 'with': 1.0, 'unit': 4.0, 'it': 3.0, 'stopped': 1.0, 'however': 1.0, 'other': 1.0, 'conditions': 1.0, 'just': 1.0, 'light': 1.0, 'and': 2.0, 'rechargeable': 1.0, 'low': 1.0, 'both': 1.0, 'was': 2.0, 'while': 1.0, 'the': 7.0, 'a': 1.0, 't': 1.0, '4': 1.0, 'stated': 1.0, 'i': 2.0, 'brand': 1.0, 'old': 1.0, 'opted': 1.0, 'features': 1.0, 'second': 1.0, 'shouldn': 1.0, 'is': 1.0, 'battery': 2.0, 'no': 1.0, 'worked': 1.0, 'day': 1.0, 'to': 5.0, 'as': 1.0, 'in': 1.0, 'parent': 1.0, 'images': 1.0, 'plain': 1.0, 'through': 1.0, 'motorola': 1.0, 'working': 1.0, 'great': 1.0, 'spend': 1.0, '3': 1.0, 'impressed': 1.0, 'on': 2.0, 'find': 1.0, 'maybe': 1.0, 'faulty': 1.0, 'simply': 1.0, 'due': 1.0, 'pack': 2.0, 'contacted': 1.0, 'have': 1.0, 'an': 1.0, 'money': 1.0, 'but': 2.0, 'would': 1.0, 'new': 2.0}
Word element => {'anyone': 1.0, 'definitely': 1.0, 'back': 1.0, 'would': 3.0, 'power': 3.0, 'occasions': 1.0, 'out': 1.0, 'entire': 1.0, 'drain': 1.0, 'if': 1.0, 'also': 1.0, 'will': 2.0, 'sometimes': 1.0, 'press': 2.0, 'to': 5.0, 'automatically': 1.0, 'have': 1.0, 'button': 2.0, 'rather': 1.0, 'switch': 1.0, 'off': 3.0, 'on': 5.0, 'spent': 1.0, 'without': 1.0, 'turns': 1.0, 'the': 8.0, 'me': 1.0, 'not': 2.0, 'recommend': 1.0, 'was': 2.0, 'at': 1.0, 'image': 1.0, 'money': 1.0, 'price': 1.0, 'it': 9.0, 'dont': 1.0, 'this': 2.0, 'even': 1.0, 'two': 1.0, 'i': 7.0, 'clear': 1.0, 'night': 1.0, 'and': 7.0, 'only': 1.0, 'do': 1.0, 'get': 2.0, 'hold': 2.0, 'dollar': 1.0, 'monitor': 4.0, 'very': 1.0, 'charge': 1.0, 'from': 1.0, 'still': 1.0, 'worth': 1.0, 'had': 1.0, 'purchased': 1.0, 'good': 2.0, 'product': 1.0, 'cheap': 1.0, 'com': 1.0, 'for': 1.0, 'notice': 1.0, 'a': 3.0, 'battery': 2.0, 'no': 1.0, 'about': 1.0, 'woot': 1.0, 'thing': 1.0, 'is': 2.0, 'fancy': 1.0, 'that': 2.0, 'daylight': 1.0, 'when': 1.0, 'you': 2.0, 'way': 1.0, 'take': 1.0, 'pretty': 1.0, 'better': 1.0, 'turn': 1.0, 'in': 1.0, 'up': 1.0, 'sound': 1.0, 'however': 1.0, 'my': 1.0, 'unplug': 1.0, '20': 1.0, 'there': 1.0}
Word element => {'throwing': 1.0, 'just': 1.0, 're': 1.0, 'end': 1.0, 'okay': 1.0, 'start': 1.0, 'recommend': 1.0, 'never': 1.0, 'position': 1.0, 'right': 1.0, 'wall': 1.0, 'charge': 1.0, 'now': 1.0, 'or': 1.0, 'with': 1.0, 'within': 1.0, 'problem': 1.0, 'its': 1.0, 'sure': 1.0, 'stopped': 1.0, 'week': 1.0, 'knows': 1.0, 'who': 1.0, 'crib': 1.0, 'in': 4.0, 'check': 1.0, 'went': 1.0, 'away': 1.0, 'clicked': 1.0, 'here': 1.0, 'be': 1.0, 'couldn': 1.0, 'sleeper': 1.0, 'this': 3.0, 'plugged': 1.0, 'us': 1.0, 'wake': 1.0, 'would': 2.0, 'screen': 1.0, 've': 1.0, 'how': 1.0, 'our': 2.0, 'as': 3.0, 'been': 1.0, 'limit': 1.0, 'noise': 1.0, 'so': 1.0, 'sensitive': 1.0, 'noisy': 1.0, 'up': 2.0, 'set': 2.0, 'used': 1.0, 'unplugged': 1.0, 'being': 2.0, 's': 2.0, 't': 1.0, 'ago': 2.0, 'a': 8.0, 'then': 1.0, 'we': 8.0, 'could': 1.0, 'pick': 1.0, 'worse': 1.0, 'loved': 1.0, 'wont': 1.0, 'daughter': 2.0, 'got': 2.0, 'even': 1.0, 'half': 1.0, 'about': 4.0, 'money': 1.0, 'bought': 1.0, 'year': 2.0, 'great': 2.0, 'since': 2.0, 'and': 3.0, '80': 1.0, 'but': 4.0, 'deal': 1.0, 'she': 2.0, 'month': 1.0, 'exact': 1.0, 'have': 1.0, 'working': 1.0, 'first': 2.0, 'cord': 2.0, 'for': 3.0, 'liked': 1.0, 'at': 1.0, 'is': 7.0, 'of': 1.0, 'the': 17.0, 'longer': 1.0, 'battery': 2.0, 'sale': 1.0, 'really': 1.0, 'picture': 1.0, 'monitor': 5.0, 'only': 1.0, 'click': 1.0, 'terrible': 1.0, 'when': 2.0, 'vox': 1.0, 'that': 2.0, 'easily': 1.0, 'cried': 1.0, 'was': 2.0, 'pro': 1.0, 'minutes': 1.0, 'to': 6.0, 'pretty': 1.0, 'if': 2.0, 'clear': 1.0, 'has': 1.0, 'always': 1.0, 'unit': 1.0, 'her': 2.0, 'con': 1.0, 'beeping': 1.0, 'life': 1.0, 'double': 1.0, 'havent': 1.0, 'low': 1.0, 'your': 1.0, 'probably': 1.0, 'see': 1.0, 'off': 2.0, 'crying': 2.0, 'you': 1.0, 'able': 3.0, 'starts': 1.0, 'may': 1.0, 'my': 1.0, 'unless': 1.0, 'after': 2.0, 'two': 1.0, 'i': 4.0, 'using': 1.0, 'audio': 1.0, 'long': 1.0, 'on': 3.0, 'noticed': 1.0, 'not': 2.0, 'heard': 1.0, 'it': 8.0, 'thought': 1.0, 'figured': 1.0}
Word element => {'drawing': 1.0, 'back': 1.0, 'go': 1.0, 'increases': 1.0, 'board': 1.0, 'but': 1.0, 'than': 1.0, 'wake': 1.0, 'hear': 1.0, 'will': 3.0, 'so': 1.0, 'can': 2.0, 'provided': 1.0, 'move': 1.0, 'another': 1.0, 'going': 1.0, 'finally': 1.0, 'by': 1.0, 'hanging': 1.0, 'them': 2.0, 'for': 2.0, 'money': 1.0, 'more': 2.0, 'be': 2.0, 'clearly': 1.0, 'down': 1.0, 'stick': 1.0, 'they': 3.0, 'sids': 1.0, 'make': 2.0, 'lights': 1.0, 'mute': 2.0, 'even': 1.0, 't': 1.0, 'doesn': 1.0, 'manufacturer': 1.0, 'actual': 1.0, 'obvious': 1.0, 'lullabies': 1.0, 'mean': 1.0, 'miss': 1.0, 'does': 2.0, 'power': 1.0, '1': 1.0, 'since': 1.0, 'find': 1.0, 'etc': 1.0, 'well': 1.0, 'i': 2.0, 'in': 2.0, 'ability': 1.0, 'product': 2.0, 'child': 5.0, 'on': 10.0, 'wise': 1.0, 'room': 1.0, 'talk': 1.0, 'noises': 1.0, 'known': 1.0, 'recommend': 2.0, 'like': 1.0, 'worked': 1.0, 'not': 2.0, 'no': 3.0, 'none': 1.0, 'some': 3.0, 'movie': 1.0, 'temperature': 1.0, 'best': 1.0, 'monitor': 6.0, 'features': 1.0, 'you': 10.0, 'things': 2.0, 'monitors': 1.0, 'able': 1.0, 'after': 1.0, 'background': 1.0, 'bad': 1.0, 'are': 2.0, 'first': 1.0, 'it': 5.0, 'this': 7.0, 'purchase': 1.0, 'purchased': 1.0, 'to': 13.0, 'views': 1.0, 'av': 3.0, 'name': 1.0, 'your': 6.0, 'any': 1.0, 'leaving': 1.0, 'being': 2.0, 'course': 1.0, 'still': 2.0, 'turn': 1.0, 'stay': 1.0, 'if': 3.0, 'want': 1.0, 'we': 1.0, 'there': 2.0, 'multiple': 2.0, 'button': 2.0, 'also': 1.0, 'mark': 1.0, 'right': 1.0, 'as': 1.0, 'unable': 1.0, 'size': 1.0, 'little': 1.0, 'nice': 1.0, 'due': 1.0, 'screen': 1.0, 'cable': 5.0, 'customers': 1.0, 'say': 2.0, 'a': 3.0, 'small': 1.0, 'and': 7.0, 'doing': 1.0, 'longer': 1.0, 'the': 19.0, 'of': 6.0, 'boneheaded': 1.0, 'anything': 1.0, 'companies': 1.0, 'look': 1.0, 'biannon': 2.0, 'is': 7.0, 'at': 2.0, 'up': 3.0, '7': 1.0, 'or': 4.0, 'would': 2.0, 'summer': 3.0, 'puchase': 1.0, 'bells': 1.0, 'part': 1.0, 'fits': 1.0, 'obtain': 1.0, 'other': 2.0, 'an': 2.0, 'see': 4.0, 'own': 1.0, 'out': 4.0, 'however': 1.0, 'tv': 1.0, 'because': 1.0, 'offering': 1.0, 'that': 2.0, 'phase': 1.0, 'which': 2.0, 'good': 2.0, 'how': 1.0, 'luck': 1.0, 'motorola': 6.0, 'whistles': 1.0, 'volume': 2.0, 'with': 3.0, 'better': 1.0, 'twice': 1.0, 'sell': 2.0, 'should': 4.0, 'come': 1.0, 're': 3.0, 'their': 2.0, 'lucky': 1.0, 'enough': 1.0, 'do': 1.0, 'put': 1.0, 'cellphone': 1.0, 'just': 4.0}
Word element => {'let': 1.0, 'could': 1.0, 'where': 1.0, 'knows': 1.0, 'any': 1.0, 'than': 1.0, 'cheaper': 1.0, 'unit': 2.0, 'whole': 1.0, 'buy': 1.0, 'find': 2.0, 'units': 1.0, 'this': 1.0, 'usually': 1.0, 'question': 1.0, 'short': 1.0, 'life': 1.0, 'by': 1.0, 'for': 1.0, 'one': 3.0, 'desk': 1.0, 'make': 1.0, 'at': 1.0, 'vision': 1.0, 'is': 4.0, 'afford': 1.0, 't': 3.0, 'a': 6.0, 'we': 1.0, 'work': 1.0, 'tempted': 1.0, 'but': 6.0, 'guide': 1.0, 'really': 3.0, 'battery': 1.0, 'wall': 1.0, 'about': 1.0, 'i': 13.0, 'everything': 1.0, 'still': 1.0, 'if': 2.0, 'needed': 1.0, 'crib': 1.0, 'around': 1.0, 'his': 2.0, 'out': 2.0, 'hate': 1.0, 'stayed': 1.0, '3m': 1.0, 'doing': 1.0, 'the': 5.0, 'of': 2.0, 'recently': 1.0, 'has': 2.0, 'won': 1.0, 'anyone': 1.0, 'and': 3.0, 'plugged': 1.0, 'he': 2.0, 'so': 1.0, 'can': 3.0, 'lightweight': 1.0, 'monitor': 2.0, 'fixed': 1.0, 'to': 4.0, 'other': 2.0, 'all': 1.0, 'sure': 1.0, 'hook': 1.0, 'please': 1.0, 'anywhere': 1.0, 'though': 1.0, 'moved': 1.0, 'trouble': 1.0, 'they': 1.0, 'nap': 1.0, 'while': 1.0, 'user': 1.0, 'that': 1.0, 'easily': 3.0, 'have': 3.0, 'it': 4.0, 'm': 2.0, 'in': 3.0, 'toddler': 1.0, 'video': 1.0, 'camera': 2.0, 'when': 1.0, 'beside': 1.0, 'my': 2.0, 'me': 2.0, 'not': 1.0, 'on': 1.0, 'long': 1.0, 'enough': 1.0, 'stand': 1.0, 'move': 1.0, 'used': 1.0, 'night': 1.0, 'baby': 1.0, 'isn': 1.0, 'wonderful': 1.0, 'works': 2.0, 'tell': 1.0, 'bed': 1.0, 'need': 3.0, 'or': 1.0, 'which': 1.0, 'mounting': 1.0, 'cannot': 1.0, 'know': 1.0, 'talks': 1.0, '150': 1.0, 'multiple': 2.0, 'yes': 1.0, 'cameras': 2.0, 'second': 1.0}
Word element => {'baby': 1.0, 'hear': 1.0, 'can': 1.0, 'you': 1.0, 'room': 1.0, 'in': 1.0, 'being': 1.0, 'extra': 1.0, 'same': 1.0, 'picture': 2.0, 'i': 1.0, 'night': 1.0, 'get': 1.0, '86': 1.0, 'monitor': 2.0, 'and': 4.0, 'day': 1.0, 'a': 2.0, 'it': 1.0, 'with': 1.0, 'your': 1.0, 'next': 1.0, 'have': 1.0, 'needed': 1.0, 'is': 3.0, 'summer': 2.0, 'second': 1.0, 'inadequate': 1.0, 'like': 1.0, 'spend': 1.0, 'one': 1.0, 'for': 1.0, 'my': 1.0, 'dollars': 1.0, 'the': 5.0, 'child': 1.0, 'breathe': 1.0, 'terrible': 1.0, 'volume': 1.0}
Word element => {'definitely': 1.0, 'ever': 1.0, 'have': 1.0, 'things': 1.0, 'best': 1.0, 'far': 1.0, 'anything': 1.0, 'there': 1.0, 'on': 1.0, 'back': 1.0, 'pops': 1.0, 'or': 1.0, 'yet': 1.0, 'he': 1.0, 'mode': 1.0, 'goes': 1.0, 'it': 3.0, 'this': 3.0, 'doing': 1.0, 'room': 1.0, 'noise': 1.0, 'before': 1.0, 'long': 1.0, 'had': 1.0, 'purchased': 1.0, 'what': 1.0, 'while': 1.0, 'product': 1.0, 'for': 4.0, 'love': 1.0, 'monitor': 2.0, 'and': 1.0, 'after': 1.0, 'when': 2.0, 'idea': 1.0, 'issue': 1.0, 'husband': 1.0, 'recommend': 1.0, 'was': 2.0, 'its': 1.0, 'interference': 1.0, 'old': 1.0, 'despite': 1.0, 'over': 1.0, 'i': 4.0, '4': 1.0, 'one': 2.0, 'bought': 2.0, 'months': 1.0, 'of': 3.0, 'great': 1.0, 'video': 1.0, 'my': 2.0, 'fact': 1.0, 'into': 1.0, 'that': 2.0, 'son': 2.0, 'any': 1.0, 'sleep': 1.0, 'our': 1.0, 'as': 1.0, 'with': 1.0, 'piece': 1.0, 'mind': 1.0, 'asleep': 1.0, 'the': 5.0, 'myself': 1.0, 'not': 2.0, 'by': 1.0, 'large': 1.0, 'would': 1.0, 've': 1.0, 'screen': 1.0, 'is': 2.0, 'could': 1.0, 'we': 3.0, 'toyed': 1.0, 'a': 6.0, 's': 2.0, 'in': 1.0, 'itself': 1.0}
Word element => {'you': 1.0, 'last': 1.0, 'connect': 1.0, 'in': 1.0, 'good': 1.0, 'not': 1.0, 'is': 1.0, 'far': 1.0, 'all': 2.0, 'but': 1.0, 'video': 1.0, 'works': 1.0, 'low': 1.0, 'to': 1.0, 'was': 2.0, 'hours': 1.0, 'no': 1.0, 'at': 1.0, 'so': 3.0, 'battery': 1.0, 'i': 1.0, '1': 1.0, 'and': 1.0, 'about': 1.0, 'price': 1.0, 'time': 1.0, 'has': 1.0, 'audio': 1.0, 'the': 3.0, 'my': 1.0, 'need': 1.0, 'nice': 3.0, 'worked': 1.0, 'skeptical': 1.0, 'very': 3.0, 'problems': 1.0, 'modified': 1.0, 'review': 1.0, 'only': 1.0, 'it': 2.0}
Word element => {'purchase': 1.0, 'failed': 1.0, 'in': 1.0, 'returned': 1.0, 'qualification': 1.0, 'this': 2.0, 'remove': 1.0, 'press': 1.0, 'receiving': 1.0, 'until': 1.0, 'sending': 1.0, '30': 1.0, 'and': 1.0, 'lost': 2.0, 'picture': 1.0, 'all': 1.0, 'bad': 2.0, 'does': 2.0, 'signal': 1.0, 'will': 1.0, 'but': 1.0, 'back': 1.0, 'work': 2.0, 'not': 5.0, 'awful': 1.0, 'recommended': 1.0, 'seller': 1.0, 'dollars': 1.0, 'the': 5.0, 'my': 1.0, 'i': 4.0, 'battery': 1.0, 'is': 2.0, 'want': 1.0, 'any': 1.0, 'money': 2.0, 'for': 1.0, 'suggest': 1.0, 'product': 1.0, 'buying': 1.0, 'to': 2.0}
Word element => {'time': 1.0, 'we': 1.0, 'not': 1.0, 'did': 1.0, 'plugged': 1.0, 'however': 1.0, 'out': 1.0, 'us': 1.0, 'likely': 1.0, 'last': 1.0, 'lot': 1.0, 'a': 2.0, 'down': 1.0, 'any': 1.0, 'helps': 1.0, 'it': 1.0, 'engineer': 1.0, 'the': 4.0, 'most': 1.0, 'monitor': 2.0, 'our': 1.0, 'would': 1.0, 'hold': 1.0, 'all': 1.0, 'have': 3.0, 'to': 3.0, 'you': 1.0, 'way': 1.0, 'in': 1.0, 'camera': 1.0, 'also': 1.0, 'battery': 1.0, 'of': 1.0}
Word element => {'better': 1.0, 'assume': 1.0, 'poor': 1.0, 'about': 1.0, 'other': 1.0, 'an': 2.0, 'only': 2.0, 'stopped': 1.0, 'after': 1.0, 'come': 1.0, 'wake': 1.0, 'started': 1.0, 'from': 1.0, 'sound': 1.0, 'no': 1.0, 'noise': 1.0, 'their': 1.0, 'but': 2.0, 'mode': 3.0, 'into': 2.0, 'hour': 2.0, 'go': 1.0, 'used': 1.0, 'handheld': 1.0, 'times': 1.0, 'couple': 1.0, 'also': 2.0, 'life': 2.0, 'said': 1.0, 'screaming': 1.0, 'the': 21.0, 'of': 3.0, 'waste': 1.0, 'even': 2.0, 'instead': 1.0, 'there': 1.0, 'some': 1.0, 'save': 1.0, 'another': 1.0, 'screen': 2.0, 'would': 6.0, 'use': 1.0, 'smaller': 1.0, 'so': 3.0, 'be': 3.0, 'a': 5.0, 'maximum': 1.0, 'we': 6.0, 'going': 2.0, 't': 1.0, 'well': 1.0, 'as': 2.0, 'to': 5.0, 'worked': 2.0, 'back': 1.0, 'making': 1.0, 'sleep': 3.0, 'pay': 1.0, 'ear': 1.0, 'video': 2.0, 'money': 2.0, 'others': 1.0, 'many': 1.0, 'battery': 4.0, 'really': 4.0, 'looks': 1.0, 'few': 1.0, 'this': 4.0, 'night': 2.0, 'you': 4.0, 'priced': 1.0, 'twins': 1.0, 'full': 1.0, 'were': 1.0, 'when': 3.0, 'what': 1.0, 'it': 5.0, 'thought': 1.0, 'had': 1.0, 'terrible': 4.0, 'lasts': 1.0, 'because': 1.0, 'that': 5.0, 'babies': 4.0, 'has': 1.0, 'them': 1.0, 'next': 1.0, 'monitor': 8.0, 'motorola': 2.0, 'digital': 1.0, 'and': 9.0, 'get': 1.0, 'lasted': 1.0, 'crying': 1.0, 'one': 2.0, 'for': 3.0, 'was': 2.0, 'low': 1.0, 'buying': 1.0, 'have': 4.0, 'first': 2.0, 'are': 2.0, 'currently': 1.0, 'audio': 1.0, 'hold': 1.0, 'in': 3.0, 'still': 1.0, 'if': 2.0, 'features': 1.0, 'crib': 2.0, 'just': 2.0, 'screened': 1.0, 'could': 1.0, 'means': 1.0, 'sleeping': 1.0, 'they': 2.0, 'by': 1.0, 'bright': 1.0, 'difficult': 1.0, 'white': 1.0, 'since': 1.0, 'washed': 1.0, 'your': 1.0, 'on': 2.0, 'out': 1.0, 'wasn': 1.0, 'half': 1.0, 'both': 1.0, 'or': 1.0, 'volume': 2.0, 'not': 2.0, 'is': 8.0, 'vision': 1.0, 'at': 2.0, 'up': 3.0, 'same': 1.0, 'hear': 2.0, 'days': 1.0, 'without': 2.0, 'tell': 1.0, 'anything': 1.0, 'room': 1.0, 'enough': 1.0, 'woken': 1.0, 'until': 1.0, 'blown': 1.0}
Word element => {'don': 1.0, 'much': 1.0, 'be': 2.0, 'so': 1.0, 'is': 2.0, 'very': 1.0, 't': 1.0, 'grainy': 1.0, 'the': 4.0, 'light': 1.0, 'view': 2.0, 'you': 1.0, 'almost': 1.0, 'exposed': 1.0, 'white': 1.0, 'buy': 1.0, 'night': 1.0, 'completely': 1.0, 'screen': 1.0, 'in': 1.0, 'all': 1.0, 'units': 1.0, 'will': 2.0, 'same': 1.0, 'exception': 1.0, 'no': 1.0}
Word element => {'kitchen': 1.0, 'top': 1.0, 'currently': 1.0, 'angles': 1.0, 'viewing': 1.0, 'counter': 1.0, 'had': 1.0, 'difficult': 1.0, 'laughable': 1.0, 'handheld': 1.0, 'great': 1.0, 'pros': 1.0, 'get': 1.0, 'only': 1.0, 'usually': 1.0, 'sleeper': 1.0, 'thankfully': 1.0, 'up': 2.0, 'way': 1.0, 'wake': 1.0, 'setting': 2.0, 'doesn': 1.0, 'hard': 1.0, 'negative': 1.0, 'other': 1.0, 'monitor': 1.0, 'adjust': 1.0, '250': 1.0, 're': 1.0, 'breaker': 1.0, 'but': 1.0, 'charge': 1.0, '20mins': 1.0, 'low': 2.0, '15': 1.0, 'horrible': 2.0, 'life': 2.0, 'highest': 1.0, 'battery': 3.0, 'sake': 1.0, 'hear': 2.0, 'total': 1.0, 'same': 1.0, 'lighter': 1.0, 'go': 1.0, 'do': 1.0, 'radiocons': 1.0, 'my': 2.0, 'just': 3.0, 'we': 5.0, 's': 10.0, 'hardly': 1.0, 'since': 2.0, 'her': 3.0, 'stand': 2.0, 'down': 1.0, 'll': 1.0, 'you': 2.0, 'night': 4.0, 'nuisance': 1.0, 'around': 1.0, 'bed': 1.0, 'walking': 1.0, 'otherwise': 1.0, 'd': 1.0, 'portable': 1.0, 'onto': 1.0, 'tell': 1.0, 'hand': 1.0, 'ours': 2.0, 'watching': 1.0, 'has': 1.0, 'got': 1.0, '4': 1.0, 'nice': 3.0, 'two': 1.0, 'and': 6.0, 'tv': 1.0, 'sold': 1.0, 'woot': 1.0, '2': 1.0, 'thing': 1.0, 'despite': 1.0, '300': 1.0, 'about': 2.0, 'light': 1.0, 'looking': 1.0, 'including': 1.0, 'wall': 1.0, 'people': 1.0, 'be': 2.0, 'clipped': 1.0, 'video': 2.0, 'product': 1.0, 'for': 5.0, '75': 1.0, 'it': 16.0, 'deal': 1.0, 'baby': 1.0, 'she': 1.0, 'volume': 3.0, 'with': 1.0, 'first': 1.0, 'luxury': 1.0, 'above': 1.0, 'this': 2.0, 'at': 4.0, 'is': 8.0, 'vision': 1.0, 'time': 1.0, 'roughly': 1.0, 'away': 1.0, 'good': 2.0, 'which': 1.0, 'asleep': 1.0, 'device': 2.0, 'of': 2.0, 'the': 16.0, 'was': 1.0, 'constantly': 1.0, 'so': 2.0, 'can': 3.0, 'lightweight': 1.0, 'm': 1.0, 'in': 2.0, 'us': 1.0, 'plugged': 1.0, 'also': 4.0, 'ideal': 1.0, 'spit': 1.0, 'how': 1.0, 'item': 1.0, 'very': 1.0, 'if': 1.0, 'clear': 3.0, 'spend': 1.0, 'display': 3.0, 'during': 2.0, 'day': 2.0, 'when': 2.0, 'what': 1.0, 'have': 5.0, 'a': 10.0, 'small': 2.0, 'been': 1.0, 'that': 1.0, 'convenience': 1.0, 'posting': 1.0, 'itself': 1.0, 'not': 4.0, 'wish': 2.0, 'superb': 1.0, 'see': 1.0, 'obnoxious': 1.0, 'wife': 2.0, 'everything': 1.0, 'crib': 1.0, 'pacifier': 1.0, 'absolutely': 1.0, 'out': 1.0, 'i': 6.0, 'feet': 1.0, 'noticed': 1.0, 'on': 3.0, 'nap': 1.0, '5': 1.0, 'color': 1.0, 'embarrassing': 1.0, 't': 1.0, 'separate': 1.0, 'vertical': 1.0, 'crying': 2.0, 'held': 1.0, 'would': 1.0, 'pretty': 3.0, 'to': 8.0, 'while': 1.0, 'necessity': 1.0}
Word element => {'black': 1.0, 'hang': 1.0, 'color': 1.0, 'cream': 1.0, 'also': 1.0, 'on': 1.0, '3': 1.0, 'opposed': 1.0, 'above': 1.0, 'foot': 1.0, 'breathing': 1.0, 'cord': 1.0, 'crib': 1.0, 'aesthetic': 1.0, 'closer': 1.0, 'mount': 1.0, 'i': 1.0, 'min': 1.0, 'wall': 1.0, 'battery': 1.0, 'maybe': 1.0, 'because': 1.0, 'not': 1.0, 'camera': 2.0, 'in': 3.0, 'sound': 1.0, 'life': 1.0, 'keep': 1.0, 'looks': 1.0, 'it': 4.0, 'is': 7.0, 'shouldn': 1.0, 'nursery': 1.0, 'only': 1.0, 'purely': 1.0, '25': 1.0, 'as': 1.0, 'to': 4.0, 'crappy': 1.0, 'now': 1.0, 'look': 1.0, 'like': 1.0, 'need': 1.0, '1': 1.0, 'nice': 2.0, 'be': 1.0, 'considered': 1.0, 't': 1.0, 'a': 3.0, 'we': 1.0, 'cordless': 1.0, 'monitor': 2.0, 'green': 1.0, 'plugged': 1.0, 'and': 3.0, 'the': 9.0, 'basically': 1.0, 'you': 2.0, 'when': 2.0, 'charged': 1.0, 'unplugged': 1.0, 'fully': 1.0, 'luckily': 1.0, 'd': 1.0, 'both': 1.0, 'of': 1.0, 'picture': 1.0, 'night': 1.0, 'quality': 1.0, '80': 1.0, 'but': 2.0, 'paid': 1.0, 'good': 1.0, 'daylight': 1.0, 'ok': 1.0}
Word element => {'dime': 1.0, 'of': 1.0, 'she': 1.0, 'with': 1.0, 'live': 1.0, 'us': 1.0, 'when': 1.0, 'as': 1.0, 'to': 4.0, 'had': 2.0, 'capable': 1.0, 'these': 2.0, 'we': 2.0, 't': 1.0, 'the': 2.0, 'have': 1.0, 'kids': 1.0, 'wish': 1.0, 'my': 2.0, 'push': 1.0, 'were': 1.0, 'makes': 1.0, 'young': 1.0, 'living': 1.0, 'run': 1.0, 'mom': 1.0, 'alone': 1.0, 'way': 1.0, 'i': 1.0, 'two': 1.0, 'no': 1.0, 'bring': 1.0, 'communication': 1.0, 'priceless': 1.0, 'having': 1.0, 'her': 1.0, 'every': 2.0, 'room': 1.0, 'five': 1.0, 'and': 2.0, 'anymore': 1.0, 'talk': 1.0, 'minutes': 1.0, 'just': 1.0, 'isn': 1.0, 'button': 1.0, 'see': 1.0, 'worth': 1.0}
Word element => {'please': 1.0, 'time': 1.0, 'next': 1.0, 'base': 1.0, 'bigger': 1.0, 'over': 1.0, 'needed': 1.0, 'if': 1.0, 'but': 1.0, 'reception': 1.0, 'it': 3.0, 'this': 2.0, 'second': 1.0, 'flaw': 1.0, 'is': 2.0, 'fall': 1.0, 've': 1.0, 'tried': 1.0, 'i': 3.0, 'buy': 1.0, 'guess': 1.0, 'the': 1.0, 'and': 2.0, 'monitor': 1.0, 'several': 1.0, 'monitors': 1.0, 'have': 1.0, 'one': 3.0, 'again': 1.0, 'd': 1.0, 'best': 1.0, 'skinny': 1.0, 'every': 1.0, 'gets': 1.0, 'wants': 1.0, 'has': 1.0, 'all': 1.0, 'to': 3.0, 'some': 1.0, 'fatal': 1.0, 'a': 2.0, 'we': 1.0, 's': 2.0, 'trying': 1.0, 'probably': 1.0, 'size': 1.0, 'like': 1.0, 'cracker': 1.0, 'stand': 1.0, 'on': 1.0, 'do': 1.0, 'its': 2.0, 'end': 1.0}
Word element => {'no': 1.0, 'is': 1.0, 'sound': 1.0, 'perfect': 1.0, 'are': 1.0, 'useless': 1.0, 'the': 1.0, '2': 1.0, 'monitors': 1.0, 'room': 1.0, 'fisher': 1.0, 'motorola': 1.0, 'walls': 1.0, 'bought': 1.0, 'interference': 1.0, 'price': 1.0, 'thick': 1.0, 'clear': 1.0, 'i': 1.0, 'and': 2.0, 'reach': 1.0, 'signal': 1.0, 'could': 1.0, 'because': 1.0, 'not': 1.0, 'were': 1.0, 'our': 1.0, 'this': 1.0, 's': 1.0}
Word element => {'them': 1.0, 'with': 1.0, 'problems': 1.0, 'size': 1.0, 'are': 1.0, 'batteries': 1.0, 'any': 1.0, 'to': 1.0, 'battery': 1.0, 'clip': 1.0, 'parents': 1.0, 'like': 1.0, 'highly': 1.0, 'really': 1.0, 'son': 1.0, 'in': 1.0, 'floor': 1.0, 'walking': 1.0, 'cat': 1.0, 'room': 1.0, 'noise': 1.0, 'picks': 1.0, 'be': 1.0, 'falling': 1.0, 'motorola': 1.0, 'the': 7.0, 'slightest': 1.0, 'settled': 1.0, 'my': 1.0, 'tight': 1.0, 'one': 2.0, 'perfect': 1.0, 'this': 3.0, 'even': 1.0, 'wouldn': 1.0, 'it': 1.0, 'that': 3.0, 'is': 2.0, 'very': 1.0, 'monitor': 5.0, 'across': 1.0, 'and': 4.0, 'for': 1.0, 'afraid': 1.0, 'figured': 1.0, 'constently': 1.0, 'money': 2.0, 'work': 1.0, 'would': 2.0, 'exactly': 1.0, 'spend': 2.0, 'i': 10.0, 'clear': 1.0, 's': 1.0, 't': 3.0, 'a': 2.0, 'since': 1.0, 'good': 1.0, 'rechargable': 1.0, 'choice': 1.0, 'they': 2.0, 'has': 2.0, 'think': 1.0, 'on': 3.0, 'make': 1.0, 'have': 2.0, 'crystal': 1.0, 'talkie': 1.0, 'after': 2.0, 'phones': 1.0, 'recommend': 1.0, 'belt': 1.0, 'was': 2.0, 'researching': 1.0, 'sure': 1.0, 'right': 1.0, 'extra': 1.0, 'walkie': 1.0, 'looking': 1.0, 'what': 1.0, 'over': 1.0, 'don': 2.0, 'up': 1.0, 'budget': 1.0, 'sound': 1.0}
Word element => {'now': 1.0, 'of': 2.0, 'complete': 1.0, 'unreliable': 1.0, 'buy': 1.0, 'one': 1.0, 'no': 1.0, 'encourage': 1.0, 'long': 1.0, 'up': 1.0, 'pick': 1.0, 'that': 1.0, 'hopes': 1.0, 'back': 1.0, 'thirty': 1.0, 'wait': 1.0, 'off': 1.0, 'in': 2.0, 'turn': 2.0, 'even': 1.0, 'am': 1.0, 'you': 2.0, 'waste': 1.0, 'expect': 1.0, 'motorala': 1.0, 'is': 3.0, 'name': 1.0, 'have': 2.0, 'monitor': 3.0, 'and': 6.0, 'get': 1.0, 'works': 1.0, 'do': 2.0, 'with': 1.0, 'minute': 1.0, 'this': 2.0, 'it': 6.0, 'returning': 1.0, 'relink': 1.0, 'the': 8.0, 'tried': 2.0, 'i': 3.0, 'five': 1.0, 'fifth': 1.0, 'fooled': 1.0, 'to': 4.0, 'a': 4.0, 'we': 2.0, 'like': 1.0, 'worst': 1.0, 'nothing': 2.0, 'than': 1.0, 'what': 1.0, 'better': 1.0, 'please': 1.0, 'far': 2.0, 'then': 2.0, 'not': 1.0, 'seconds': 2.0, 'be': 1.0, 'will': 2.0, 'process': 1.0, 'money': 1.0, 'but': 1.0, 'work': 1.0, 'something': 1.0, 'would': 5.0, 'drop': 2.0, 'on': 1.0, 'continuously': 1.0, 'make': 1.0, 'product': 1.0, 'for': 2.0, 'by': 1.0, 'signal': 3.0, 'few': 1.0, 'minutes': 1.0}
Word element => {'works': 1.0, 'interference': 1.0, 'causes': 1.0, 'since': 1.0, 'most': 2.0, 'should': 1.0, 'try': 1.0, 'down': 1.0, 'reception': 1.0, 'interfering': 1.0, 'there': 1.0, 'cables': 1.0, 'charging': 1.0, 'providing': 1.0, 'set': 1.0, 'receiver': 1.0, 'could': 2.0, 'too': 1.0, 'nice': 2.0, 'life': 1.0, 'long': 1.0, 'has': 1.0, 'love': 1.0, 'gap': 1.0, 'you': 3.0, 'thank': 1.0, 'make': 2.0, 'hasn': 1.0, 'technology': 2.0, 'meanwhile': 1.0, 'junk': 1.0, 'other': 1.0, 'market': 1.0, 'parents': 1.0, 'if': 2.0, 'promised': 1.0, 'as': 1.0, 'work': 3.0, 'crazy': 1.0, 'drive': 1.0, 'will': 2.0, 'video': 1.0, 'every': 1.0, 'service': 1.0, 'contact': 1.0, 'month': 1.0, 'failed': 1.0, 'others': 1.0, 'so': 3.0, 'reliable': 2.0, 'incredibly': 1.0, 'monitoring': 2.0, 'which': 1.0, 'graco': 3.0, 'actually': 1.0, 'us': 5.0, 'techncian': 1.0, 'new': 1.0, 'model': 1.0, 'worried': 1.0, 'went': 1.0, 'by': 1.0, 'affected': 1.0, 'bedtime': 1.0, 'really': 1.0, 'dramatically': 1.0, 'this': 6.0, 'picked': 1.0, 'beeped': 2.0, 'relieved': 1.0, 'home': 1.0, 'feet': 1.0, 'calls': 1.0, 'finally': 1.0, 'i': 6.0, 'way': 1.0, 'all': 2.0, '20': 1.0, 'problems': 1.0, 'because': 3.0, 'that': 12.0, 'these': 1.0, 'downstairs': 1.0, 'turn': 1.0, 'is': 8.0, 'sons': 1.0, 'pick': 1.0, 'motorola': 2.0, 'couldn': 1.0, 'static': 1.0, 'battery': 1.0, 'arrived': 1.0, 'frequency': 1.0, 'monitors': 2.0, 'night': 1.0, 'the': 16.0, 'one': 7.0, 'analog': 1.0, 'cordless': 2.0, 'up': 2.0, 'each': 1.0, 'multiple': 1.0, 'your': 1.0, 'where': 1.0, 'many': 2.0, 'random': 1.0, 'ft': 2.0, 'house': 1.0, 'ours': 2.0, 'no': 1.0, 'lived': 1.0, 'isn': 1.0, 'quest': 1.0, 'small': 1.0, 'a': 14.0, 'story': 1.0, 'between': 1.0, 'but': 2.0, 'modest': 1.0, 'saturated': 1.0, 'baby': 1.0, 'hours': 1.0, 'drove': 1.0, 'times': 1.0, 'fears': 1.0, 'eight': 1.0, 't': 5.0, 'improve': 1.0, 'temperature': 1.0, 'in': 1.0, 'neighborhood': 1.0, 'type': 1.0, 'years': 2.0, 'our': 4.0, 'was': 7.0, 'then': 2.0, 'only': 3.0, 'be': 3.0, 'it': 16.0, 'shouted': 1.0, 'with': 6.0, 'unfounded': 1.0, 'monitor': 7.0, 'awake': 1.0, 'similar': 1.0, 'lose': 1.0, 'decent': 1.0, 'had': 4.0, '1200': 1.0, 'rechargeable': 2.0, 'naps': 1.0, 'beeps': 1.0, 'child': 2.0, 'away': 1.0, 'used': 3.0, 'friendly': 1.0, 'upstairs': 1.0, 'his': 2.0, 'of': 4.0, 'even': 3.0, 'base': 1.0, 'for': 8.0, 'time': 2.0, 'began': 1.0, 'better': 1.0, 'parent': 2.0, 'twice': 1.0, 'sq': 2.0, 'establish': 1.0, 'than': 1.0, 'bedroom': 1.0, 'frequencies': 1.0, 'to': 11.0, 'right': 2.0, 'next': 1.0, 'people': 1.0, 'solution': 1.0, 'also': 1.0, 'need': 4.0, 'or': 4.0, 'know': 1.0, 're': 1.0, 'beeping': 2.0, 'evolved': 1.0, 'system': 1.0, 'when': 2.0, 'what': 2.0, 'lost': 3.0, 'signal': 1.0, 'like': 1.0, 'me': 2.0, 'learning': 1.0, 'are': 1.0, 'room': 2.0, 'issues': 1.0, 'my': 4.0, 'phone': 2.0, 'available': 1.0, 'nuts': 1.0, 'still': 1.0, 'don': 2.0, 'reviewer': 1.0, 'scoured': 1.0, 'ago': 1.0, 'two': 2.0, 'moved': 1.0, '2000': 1.0, '4': 2.0, 'wi': 4.0, 'unit': 1.0, 'now': 2.0, 'air': 1.0, 'son': 1.0, 'both': 1.0, 'needed': 1.0, 'woke': 1.0, 'connection': 3.0, 'stated': 1.0, 'internet': 1.0, 'fi': 4.0, 'something': 1.0, 'looking': 2.0, 'about': 2.0, 'not': 1.0, 'different': 1.0, 'devices': 1.0, 'humidity': 1.0, 'especially': 1.0, 'use': 1.0, 'buying': 2.0, 'think': 1.0, 'another': 2.0, 'find': 2.0, 'very': 2.0, 's': 1.0, 'expensive': 1.0, 'would': 4.0, 'tried': 3.0, 'and': 16.0, 'just': 3.0, 'found': 1.0, 'have': 7.0, 'dead': 1.0, 'never': 3.0, 'needs': 1.0, 'sale': 1.0, 'happened': 1.0, 'asleep': 1.0, 'added': 1.0, 'back': 1.0, 'its': 1.0, '46': 1.0, 'store': 1.0, 'sure': 1.0, 'box': 2.0, 'dect': 1.0, 'before': 1.0, 'we': 14.0, 'sony': 1.0, 'called': 1.0, 'believe': 1.0, 'told': 1.0, 'out': 1.0, 'bridging': 1.0, '2': 5.0, 'nature': 1.0, 'weather': 1.0, 'said': 2.0, 'ghz': 1.0, 'larger': 1.0, 'level': 1.0, 'at': 4.0, 'operates': 1.0, 'on': 2.0, 'babycall': 1.0, 'first': 2.0, 'n': 1.0, 'router': 1.0, 'often': 1.0, 'however': 1.0, 'were': 2.0, 'let': 1.0, 'they': 3.0}
Word element => {'have': 1.0, 'definitely': 1.0, 'manufacturers': 1.0, 'monitor': 1.0, 'other': 1.0, 'calling': 1.0, 'crying': 1.0, 'static': 1.0, 'want': 2.0, 'don': 1.0, 'plus': 1.0, 'right': 1.0, 'down': 1.0, 'bumped': 1.0, 'been': 1.0, 'noise': 2.0, 'generate': 1.0, 'great': 1.0, 'early': 1.0, 'by': 1.0, 'they': 1.0, 'lasted': 1.0, 'has': 1.0, 'brands': 1.0, 'only': 1.0, 'much': 1.0, 'works': 1.0, 'top': 1.0, 'or': 2.0, 'i': 3.0, 'numerous': 1.0, 'die': 1.0, 'huge': 1.0, 'bought': 1.0, 'one': 1.0, 'for': 1.0, 'cancellation': 1.0, 'my': 2.0, 'since': 1.0, 'go': 1.0, 't': 1.0, 's': 1.0, 'a': 3.0, 'catch': 1.0, 'monitors': 1.0, 'born': 1.0, 'dropped': 1.0, 'failing': 1.0, 'son': 2.0, 'year': 1.0, 'listen': 2.0, 'was': 1.0, 'kids': 1.0, 'this': 1.0, 'it': 1.0, 'motorolla': 2.0, 'around': 1.0, 'is': 2.0, 'tossed': 1.0, 'amazing': 1.0, 'way': 2.0, 'always': 1.0, 'of': 1.0, 'too': 3.0, 'and': 3.0, 'so': 1.0, 'far': 1.0, 'the': 3.0, 'without': 1.0, 'to': 6.0, 'all': 2.0, 'any': 1.0, 've': 1.0, 'signs': 1.0}
Word element => {'outstanding': 1.0, 'which': 1.0, 'system': 1.0, 'motorola': 1.0, 'the': 1.0, 'cannot': 1.0, 'product': 1.0, 'still': 1.0, '6': 1.0, 'lt': 1.0, 'video': 1.0, 'but': 1.0, 'durable': 1.0, 'it': 3.0, 'only': 1.0, 'monitor': 1.0, 'and': 1.0, 'ive': 1.0, 'good': 1.0, 'has': 1.0, 'prefer': 1.0, 'solid': 1.0, 'months': 1.0, 'well': 1.0, 'say': 1.0, 'for': 1.0, 'functions': 1.0, 'owned': 1.0, 'how': 1.0, 'is': 2.0, 'feel': 1.0}
Word element => {'crying': 1.0, 't': 1.0, 'the': 1.0, 'when': 1.0, 'silent': 1.0, 's': 1.0, 'have': 1.0, 'buzz': 2.0, 'fact': 1.0, 'house': 1.0, 'a': 1.0, 'it': 1.0, 'this': 1.0, 'background': 1.0, 'analog': 1.0, 'had': 1.0, 'in': 2.0, 'constant': 1.0, 'product': 1.0, 'isn': 1.0, 'has': 1.0, 'no': 1.0, 'of': 1.0, 'monitor': 1.0, 'and': 1.0, 'other': 1.0, 'we': 1.0, 'baby': 2.0, 'lots': 1.0, 'our': 2.0, 'wireless': 1.0, 'products': 1.0}
Word element => {'possible': 1.0, 'returning': 1.0, 'll': 1.0, 'expensive': 1.0, 'more': 1.0, 'apparently': 1.0, 'yard': 1.0, 'into': 1.0, 'even': 1.0, 'kitchen': 1.0, 'walk': 1.0, 'could': 1.0, 'by': 1.0, 'manhandling': 1.0, 'lot': 1.0, 'succumbed': 1.0, 'recently': 1.0, 'fisher': 1.0, 'cheap': 1.0, 'with': 1.0, 'or': 3.0, 'dark': 1.0, 'down': 2.0, 'won': 1.0, 'up': 2.0, 'sound': 2.0, 'fortunately': 1.0, 'cut': 1.0, 'without': 2.0, 'put': 2.0, 'on': 2.0, 'expectations': 1.0, 'difficult': 1.0, 'very': 2.0, 'monitor': 3.0, 'usually': 1.0, 'narrow': 1.0, 'were': 2.0, 'i': 5.0, 'two': 1.0, 'such': 1.0, '10': 1.0, 'for': 2.0, 'price': 1.0, 'product': 2.0, 'high': 1.0, 'to': 5.0, 'least': 1.0, 'had': 1.0, 'knocking': 1.0, 'which': 3.0, 'reading': 1.0, 'all': 5.0, 'other': 1.0, 't': 3.0, 's': 1.0, 'directly': 1.0, 'after': 2.0, 'be': 2.0, 'it': 3.0, 'this': 3.0, 'as': 2.0, 'units': 2.0, 'is': 1.0, 'at': 3.0, 'are': 1.0, 'first': 1.0, 'pick': 1.0, 'mine': 1.0, 'the': 10.0, 'of': 3.0, 'linked': 1.0, 'them': 4.0, 'needing': 1.0, 'in': 2.0, 'disappointed': 1.0, 'tall': 1.0, 'and': 4.0, 'doesn': 1.0, 'was': 1.0, 'over': 1.0, 'work': 1.0, 'not': 2.0, 'reception': 2.0, 'but': 1.0, 'seconds': 1.0, 'didn': 1.0, 'provide': 1.0, 'although': 2.0, 'sometimes': 1.0, 'followed': 1.0, 'kids': 1.0, 'troubleshooting': 1.0, 'losing': 1.0, 'below': 1.0, 'tips': 1.0, 'makes': 1.0, 'did': 1.0, 'from': 1.0, 'my': 3.0, 'daughter': 1.0, 'feats': 1.0, 'room': 2.0, '5': 1.0, 'old': 1.0, 'living': 1.0, 'have': 1.0, 'a': 2.0, 'small': 1.0, 'both': 1.0, 'house': 1.0, 'would': 1.0, 'especially': 1.0, 'come': 1.0, 'we': 1.0, 'reviews': 1.0, 'then': 1.0, 'out': 1.0, 'soon': 1.0, 'there': 1.0, 'no': 1.0, 'light': 1.0, 'saying': 1.0, 'because': 1.0, 'that': 1.0, 'remained': 1.0}
Word element => {'absolute': 1.0, 'an': 1.0, 'are': 1.0, 'price': 1.0, 'bargain': 1.0, 'clear': 1.0, 'it': 1.0, 'pleasantly': 1.0, 'them': 1.0, 'would': 2.0, 'the': 8.0, 'these': 2.0, 'monitor': 1.0, 'other': 1.0, 'surprised': 1.0, 'offer': 1.0, 'have': 1.0, 'story': 1.0, 'on': 1.0, 's': 1.0, 'we': 5.0, 'a': 3.0, 'top': 1.0, 'from': 2.0, 'entire': 1.0, 'one': 1.0, 'decided': 1.0, 'were': 3.0, 'that': 2.0, 'square': 1.0, 'looking': 1.0, 'feet': 1.0, 'large': 1.0, 'two': 1.0, '3500': 1.0, 'house': 3.0, 'cover': 1.0, 'floor': 2.0, 'to': 4.0, 'bottom': 1.0, 'rather': 1.0, 'skeptical': 1.0, 'of': 1.0, 'based': 1.0, 'do': 1.0, 'only': 1.0, 'end': 1.0, 'for': 2.0, 'actually': 2.0, 'across': 1.0, 'and': 3.0, 'description': 1.0, 'they': 1.0, 'coverage': 2.0, 'seemed': 1.0, 'work': 1.0, 'but': 1.0, 'reception': 3.0, 'most': 1.0, 'get': 1.0, 'shot': 1.0, 'area': 1.0, 'boy': 1.0, 'so': 1.0, 'not': 1.0, 'give': 1.0}
Word element => {'needs': 1.0, 'free': 1.0, 'not': 1.0, 'plug': 2.0, 'setting': 1.0, 'tipsy': 1.0, 'profile': 1.0, 'applications': 1.0, 'overall': 1.0, 'thin': 1.0, 'noises': 1.0, 'cue': 1.0, 'visual': 1.0, 'give': 1.0, 'room': 1.0, 'checking': 1.0, 'double': 1.0, 'often': 1.0, 'light': 1.0, 'apart': 1.0, 'farm': 1.0, 'tell': 2.0, 'is': 1.0, 'at': 1.0, 'for': 4.0, 'field': 1.0, 'post': 1.0, 'my': 1.0, 'may': 1.0, 'or': 1.0, 'need': 1.0, 'hay': 1.0, 'our': 1.0, 'to': 7.0, 'noisy': 1.0, 'specialized': 1.0, 'as': 2.0, 'house': 2.0, 'see': 2.0, 'off': 2.0, 'all': 2.0, 'an': 1.0, 'i': 3.0, 'table': 1.0, 'll': 1.0, 'range': 2.0, 'where': 1.0, 'especially': 1.0, 'from': 1.0, 'later': 1.0, 'actual': 1.0, 'try': 1.0, 'do': 1.0, 'pack': 1.0, 'its': 2.0, 'has': 2.0, 'incredible': 1.0, 'reaches': 1.0, 'monitor': 1.0, 'when': 1.0, 'number': 1.0, 'chores': 1.0, 'naps': 1.0, 'set': 1.0, 'large': 1.0, 'life': 1.0, 'just': 1.0, 'signal': 1.0, 'laws': 1.0, 'across': 1.0, 'and': 2.0, 'plugged': 1.0, 'aaa': 1.0, 'but': 1.0, 'bumped': 1.0, 'this': 1.0, 'it': 7.0, 'in': 5.0, 'after': 1.0, 'gatherings': 1.0, 'window': 1.0, 'a': 5.0, 'we': 1.0, 'unfortunatly': 1.0, 'low': 1.0, 'no': 2.0, 'easily': 1.0, 'that': 1.0, 'far': 1.0, 'if': 5.0, 'buttons': 1.0, 'great': 4.0, 'flaws': 1.0, 'sort': 1.0, 'the': 3.0, 'of': 3.0, 'replacement': 1.0, 'couple': 1.0, 'battery': 4.0, 'really': 1.0, 'poor': 1.0, 'etc': 1.0, 'day': 2.0, 'bedtime': 1.0, 'last': 1.0, 'hours': 1.0, 'lights': 2.0, 'even': 1.0, 'turned': 1.0, 'will': 1.0, 'die': 1.0, 'work': 1.0, 'hard': 2.0, 'over': 1.0, 'sound': 2.0, 'you': 3.0, 'night': 1.0, 'can': 3.0, 'so': 3.0, 'uses': 1.0, 'time': 1.0, 'use': 1.0, 'receiving': 1.0, 'charge': 1.0, 'design': 1.0, 'long': 1.0, 'on': 3.0, 'are': 3.0}
Word element => {'best': 1.0, 'isn': 1.0, 'outfit': 1.0, 'but': 1.0, 'shower': 1.0, 'at': 1.0, 'something': 1.0, 'to': 1.0, 'looking': 1.0, 'if': 1.0, 'that': 1.0, 'into': 1.0, 'cotton': 1.0, 'first': 2.0, 'this': 3.0, 'with': 1.0, 'he': 1.0, 'rough': 1.0, 'give': 1.0, 'not': 1.0, 'just': 2.0, 'somewhat': 1.0, 'way': 1.0, 'quality': 1.0, 'baby': 1.0, 'clothes': 1.0, 're': 1.0, 'photo': 1.0, 'set': 1.0, 'and': 2.0, 'really': 1.0, 'is': 4.0, 't': 1.0, 's': 1.0, 'a': 2.0, '15': 1.0, 'the': 7.0, 'open': 1.0, 'great': 1.0, 'big': 1.0, 'son': 1.0, 'package': 1.0, 'cute': 6.0, 'what': 1.0, 'fade': 1.0, 'in': 3.0, 'wash': 1.0, 'or': 1.0, 'you': 2.0, 'when': 1.0, 'they': 1.0, 'time': 1.0, 'my': 1.0, 'months': 1.0, 'think': 2.0, '3': 1.0, 'looks': 1.0, 'it': 1.0, 'month': 1.0, 'hit': 1.0, '4': 1.0, 'pounds': 1.0, 'i': 2.0, 'll': 1.0, 'finally': 1.0, 'fit': 1.0}
Word element => {'think': 1.0, 'c': 1.0, 'size': 1.0, 'determining': 1.0, 'b': 1.0, 'wrong': 1.0, 'but': 1.0, 'what': 1.0, 'and': 1.0, 'time': 1.0, 'my': 1.0, 'wanted': 1.0, 'was': 3.0, 'to': 1.0, 'in': 2.0, 'big': 1.0, 'exactly': 1.0, 'weight': 2.0, 'factor': 1.0, 'on': 1.0, 'is': 1.0, 'age': 1.0, 'baby': 4.0, 'it': 2.0, 'mega': 1.0, 'by': 1.0, 'described': 1.0, 'not': 2.0, 'should': 2.0, 'great': 1.0, 'the': 3.0, 'i': 4.0, 'product': 1.0, 'be': 2.0, 'recieved': 2.0, 'a': 4.0, '9mth': 1.0, 'of': 1.0, 'based': 1.0, '6': 1.0, 'woombie': 2.0, 'for': 1.0, 'comparison': 1.0, 'which': 2.0, 'pretty': 1.0}
Word element => {'day': 1.0, 'price': 1.0, 'wintertime': 1.0, 'color': 1.0, 'have': 2.0, 'or': 2.0, 'organic': 1.0, 'in': 1.0, 'came': 1.0, 'wish': 1.0, 'pounds': 1.0, 'true': 1.0, 'sizes': 1.0, 'big': 1.0, 've': 1.0, 'trying': 1.0, 'worth': 1.0, 'now': 1.0, 'are': 3.0, 'great': 2.0, 'option': 1.0, 'possible': 1.0, 'far': 1.0, 'pull': 1.0, 'sure': 1.0, 'while': 2.0, 'looked': 1.0, 'from': 2.0, 'mega': 1.0, 'blanket': 2.0, 'managed': 1.0, 'were': 2.0, 'perfect': 2.0, 'found': 1.0, 'allows': 1.0, 'soft': 1.0, 'otherwise': 1.0, 'they': 2.0, 'sleeping': 1.0, 'using': 1.0, 'which': 1.0, 'keeping': 2.0, 'out': 3.0, 'difficulty': 1.0, 'inside': 1.0, 'would': 1.0, 'swaddling': 2.0, 'weeks': 1.0, 'them': 2.0, 'has': 2.0, 'i': 1.0, 'well': 3.0, 'just': 1.0, 'this': 1.0, 'few': 1.0, 'worried': 1.0, 'flexible': 1.0, 'legs': 3.0, 'months': 1.0, 'use': 1.0, 'her': 10.0, 'initially': 1.0, 'enough': 1.0, 'leggies': 2.0, 'because': 2.0, 'that': 1.0, 'we': 5.0, 'a': 2.0, 's': 1.0, 't': 1.0, 'convertible': 1.0, 'soon': 1.0, 'one': 1.0, 'too': 2.0, 'who': 1.0, 'nice': 1.0, 'little': 1.0, 'baby': 2.0, 'she': 7.0, 'it': 1.0, 'website': 1.0, 'my': 1.0, 'me': 1.0, 'not': 1.0, 'woombie': 4.0, 'but': 2.0, 'you': 1.0, 'blankets': 1.0, 'around': 1.0, '7': 1.0, 'escape': 1.0, 'alternative': 1.0, 'even': 1.0, 'born': 1.0, 'used': 1.0, 'move': 2.0, 'face': 1.0, 'swaddle': 2.0, 'after': 1.0, 'to': 9.0, 'as': 7.0, 'was': 1.0, 'make': 1.0, 'houdinied': 1.0, 'the': 14.0, 'of': 1.0, 'about': 1.0, 'for': 3.0, 'suffocating': 1.0, 'other': 1.0, 'an': 1.0, 'long': 1.0, 'on': 2.0, 'amazon': 1.0, 'free': 2.0, 'wakes': 1.0, 'be': 4.0, 'warmer': 1.0, 'can': 2.0, 'so': 2.0, 'wean': 1.0, 'kick': 1.0, 'listed': 1.0, 'and': 6.0, 'arms': 2.0, 'scratching': 1.0, 'when': 1.0, 'what': 1.0, 'wriggled': 2.0, 'material': 3.0, 'options': 1.0, 'only': 1.0, 'hasn': 1.0, 'these': 1.0, 'room': 1.0, 'neck': 1.0, 'at': 1.0, 'is': 4.0, 'snug': 1.0, 'every': 1.0, 'still': 1.0, 'if': 1.0}
Word element => {'aware': 1.0, 'make': 1.0, 's': 1.0, 'our': 1.0, 'to': 6.0, 'sure': 2.0, 'base': 1.0, 'stalls': 1.0, 'had': 1.0, 'we': 1.0, 'a': 2.0, 'crib': 2.0, 'ever': 1.0, 'very': 3.0, 'mattresses': 1.0, 'mattress': 4.0, 'this': 3.0, 'about': 1.0, 'thing': 1.0, 'don': 1.0, 'daughter': 1.0, 'washer': 1.0, 'such': 1.0, 'roll': 1.0, 'great': 1.0, 'are': 2.0, 'my': 3.0, 'since': 1.0, 'not': 2.0, 'because': 1.0, 'breathable': 1.0, 'than': 1.0, 'over': 1.0, 'hard': 1.0, '9': 1.0, 'it': 7.0, 't': 3.0, 'fit': 2.0, 'expensive': 1.0, 'products': 1.0, 'product': 2.0, 'on': 4.0, 'feel': 1.0, 'your': 1.0, 'downfalls': 1.0, 'everyone': 1.0, 'doesn': 2.0, 'weeks': 1.0, 'however': 1.0, 'especially': 2.0, 'come': 1.0, 'there': 1.0, 'at': 1.0, 'is': 5.0, 'more': 1.0, 'important': 1.0, 'rug': 1.0, 'i': 4.0, 'really': 1.0, 'every': 1.0, 'if': 3.0, 'covering': 1.0, 'could': 1.0, 'will': 2.0, 'also': 1.0, 'out': 1.0, 'push': 1.0, 'things': 1.0, 'you': 1.0, 'gives': 1.0, 'need': 1.0, 'one': 2.0, 'and': 1.0, 'shape': 1.0, 'doing': 1.0, 'the': 8.0, 'of': 3.0, 'as': 1.0, 'awkward': 1.0, 'so': 1.0, 'time': 1.0, 'm': 1.0, 'in': 1.0, 'addition': 1.0, 'difficult': 1.0, 'by': 1.0, 'just': 1.0, 'yourself': 1.0, 'am': 1.0, 'last': 1.0, 'her': 2.0, 'she': 1.0, 'many': 1.0, 'baby': 1.0, 'like': 2.0, 'burn': 1.0, 'knees': 1.0, 'have': 1.0, 'something': 1.0, 'get': 2.0, 'legs': 1.0, 'trying': 1.0, 'be': 1.0, 'downer': 1.0}
Word element => {'worth': 1.0, 'easy': 1.0, 'weight': 1.0, 'are': 1.0, 'they': 2.0, 'face': 1.0, 'their': 1.0, 'also': 1.0, 'in': 1.0, 'water': 2.0, 'without': 1.0, 'so': 1.0, 'use': 1.0, 'rince': 1.0, 'toy': 1.0, 'a': 1.0, 'to': 3.0, 'now': 1.0, 'is': 1.0, 'for': 1.0, 'old': 1.0, 'i': 2.0, '4': 1.0, 'my': 1.0, 'float': 1.0, 'these': 2.0, 'the': 2.0, 'light': 1.0, 'month': 1.0, 'hair': 1.0, 'you': 1.0, 'way': 1.0, 'it': 1.0, 'getting': 1.0, 'do': 1.0, 'and': 2.0, 'sons': 1.0, 'direct': 1.0, 'shaped': 1.0, 'bought': 1.0, 'allows': 1.0}
Word element => {'chew': 1.0, 'feel': 1.0, 'so': 1.0, 'safer': 1.0, 'washing': 1.0, 'keep': 1.0, 'another': 1.0, 'grab': 1.0, 'find': 1.0, 'letting': 1.0, 'mouth': 1.0, 'in': 3.0, 'not': 1.0, 'my': 2.0, 'me': 2.0, 'tub': 3.0, 'most': 2.0, 'work': 1.0, 'but': 1.0, 'sitting': 1.0, 'bath': 1.0, 'on': 3.0, 'stuff': 3.0, 'all': 1.0, 'other': 1.0, 'we': 1.0, 'these': 1.0, 'more': 1.0, 'baby': 3.0, 'end': 1.0, 'appealing': 1.0, 'gets': 1.0, 'seem': 1.0, 'son': 1.0, 'hand': 1.0, 'the': 10.0, 'of': 3.0, 'like': 2.0, 'rather': 1.0, 'wash': 1.0, 'moved': 1.0, 'months': 1.0, 'color': 1.0, 'to': 4.0, 'pretty': 2.0, 'older': 1.0, 'with': 1.0, 'love': 1.0, 'ugly': 1.0, 'he': 2.0, 'plastic': 2.0, 'visually': 1.0, 'very': 1.0, 'three': 1.0, 'into': 1.0, 'them': 2.0, 'has': 1.0, 'next': 1.0, 'almost': 1.0, 'his': 2.0, 'i': 7.0, 'fact': 1.0, 'old': 1.0, 'outsmarting': 1.0, 'are': 3.0, 'little': 1.0, 'nice': 2.0, 'big': 1.0, 'they': 7.0, 'have': 2.0, 'a': 5.0, 'small': 2.0, 'clean': 1.0, 'simple': 1.0, 'design': 1.0, 'combination': 1.0, 'stack': 1.0, 'than': 1.0, 'way': 1.0, 'and': 7.0, 'brilliant': 1.0, 'made': 1.0, 'side': 1.0, 'at': 1.0, 'is': 2.0, 'look': 1.0, 'pitcher': 1.0, 'up': 1.0, 'takes': 1.0, 'there': 1.0, 'okay': 2.0, 'rinsing': 1.0, '9': 1.0, 'it': 4.0, 'him': 3.0, 'off': 1.0, 'd': 1.0, 'birds': 1.0, 'also': 2.0, 'bathroom': 1.0, 'start': 1.0, 'float': 1.0, 'was': 1.0, 'sell': 1.0, 'package': 1.0, 'bird': 2.0, 'from': 2.0, 'specifically': 1.0, 'sticks': 1.0}
Word element => {'workmanship': 1.0, 'quality': 1.0, 'well': 1.0, 'as': 1.0, 'by': 1.0, 'fun': 1.0, 'just': 1.0, 'are': 1.0, 'toys': 1.0, 'color': 1.0, 'smaller': 1.0, 'acts': 1.0, 'themselves': 1.0, 'while': 1.0, 'use': 1.0, 'to': 1.0, 'in': 1.0, 'nice': 1.0, 'dunks': 1.0, 'stacking': 1.0, 'for': 2.0, 'love': 2.0, 'can': 1.0, 'the': 1.0, 'these': 1.0, 'they': 1.0, 'different': 1.0, 'rinsing': 1.0, 'with': 1.0, 'me': 1.0, 'and': 2.0, 'she': 1.0, 'we': 1.0, 'play': 1.0, 'boats': 1.0, 'them': 1.0, 'several': 1.0, 'ways': 1.0}
Word element => {'in': 1.0, 'happier': 1.0, 'probably': 1.0, 'will': 1.0, 'better': 2.0, 'were': 2.0, 'mess': 1.0, 'i': 2.0, 'sprouts': 1.0, 'have': 1.0, 'factor': 1.0, 'set': 1.0, 'used': 1.0, 'happens': 1.0, 'bit': 1.0, 'smaller': 1.0, 'so': 1.0, 'tub': 2.0, 'out': 1.0, 'he': 3.0, 'floor': 1.0, 'way': 1.0, 'dump': 2.0, 'older': 1.0, 'fill': 1.0, 'toy': 1.0, 'has': 1.0, 'likes': 1.0, 'toddler': 2.0, 'or': 1.0, 'not': 2.0, 'thing': 2.0, 'large': 1.0, 'when': 1.0, 'you': 1.0, 'baby': 1.0, 'them': 3.0, 'up': 1.0, 'child': 1.0, 'love': 1.0, 'for': 2.0, 'think': 1.0, 'on': 1.0, 'your': 1.0, 'these': 1.0, 'can': 1.0, 'but': 3.0, '2': 1.0, 'the': 7.0, 'playing': 1.0, 'that': 1.0, 'something': 1.0, 'year': 1.0, 'little': 1.0, 'very': 1.0, 'son': 2.0, 'they': 3.0, 'means': 1.0, 'because': 2.0, 'does': 1.0, 'limiting': 1.0, 'old': 1.0, 'cute': 1.0, 'quite': 2.0, 'good': 1.0, 'green': 1.0, 'and': 3.0, 'are': 3.0, 'my': 2.0, 'stacking': 1.0, 'with': 3.0, 'this': 3.0, 'it': 2.0, 'which': 2.0, 'hold': 1.0, 'keep': 1.0, 'who': 1.0, 'lot': 3.0, 'we': 1.0, 's': 4.0, 'a': 9.0, 'might': 1.0, 'of': 4.0, 'water': 4.0, 'trying': 1.0, 'here': 1.0, 'be': 2.0, 'if': 1.0, 'ideal': 1.0, 'rinse': 1.0, 'gotten': 1.0, 'looking': 1.0, 'cups': 1.0, 'to': 4.0, 'head': 1.0, 'is': 2.0}
Word element => {'durable': 1.0, 'be': 1.0, 'cute': 1.0, 'so': 1.0, 'nice': 1.0, 'highly': 1.0, 'really': 1.0, 'are': 2.0, 'in': 1.0, 'recommended': 1.0, 'well': 1.0, 'do': 1.0, 'very': 3.0, 'float': 2.0, 'these': 2.0, 'the': 4.0, 'them': 4.0, 'easy': 1.0, 'tub': 2.0, 'out': 1.0, 'watch': 1.0, 'rinse': 1.0, 'right': 1.0, 'now': 1.0, 'fill': 1.0, 'makes': 1.0, 'old': 2.0, 'i': 2.0, 'months': 1.0, 'my': 2.0, 'cup': 1.0, 'toys': 1.0, 'received': 1.0, 'for': 1.0, 'love': 1.0, '10': 1.0, 'hop': 1.0, 'and': 4.0, 'size': 1.0, 'skip': 1.0, '3': 1.0, 'dunck': 1.0, 'it': 1.0, 'she': 2.0, 'pour': 1.0, 'christmas': 1.0, 'is': 1.0, 'around': 1.0, 'year': 1.0, 'seem': 1.0, 'ducks': 1.0, 'storage': 1.0, 'son': 1.0, 'to': 3.0, 'as': 1.0, 'also': 2.0, 'up': 1.0, 'of': 1.0, 'use': 1.0, 'a': 2.0, 'loves': 2.0, 'that': 1.0, 'they': 1.0, 'stack': 1.0, 'daughter': 1.0, 'water': 1.0, 'together': 1.0}
Word element => {'of': 1.0, 'off': 1.0, 'shampoo': 1.0, 'rinsing': 1.0, 'perfect': 1.0, 'are': 1.0, 'my': 1.0, '8': 1.0, 'they': 1.0, 'these': 1.0, 'him': 1.0, 'month': 1.0, 'loves': 1.0, 'splash': 1.0, 'soap': 1.0, 'old': 1.0, 'to': 1.0, 'for': 1.0, 'bathtime': 1.0, 'and': 2.0, 'during': 1.0}
Word element => {'1': 1.0, 'only': 1.0, 'using': 1.0, 'wind': 1.0, 'always': 1.0, 'house': 1.0, 'her': 1.0, 'up': 1.0, 'child': 1.0, 'them': 2.0, 'for': 2.0, 'these': 2.0, 'more': 1.0, 'the': 1.0, 'any': 1.0, 'our': 1.0, 'that': 1.0, 'haven': 1.0, 'sure': 1.0, 'm': 1.0, 'not': 1.0, 'just': 1.0, 'why': 1.0, 'toys': 1.0, 'simple': 1.0, 'other': 1.0, 'so': 3.0, 'needs': 1.0, 'anyone': 1.0, 'in': 1.0, 'use': 1.0, 'bath': 1.0, 'than': 1.0, 'redundant': 1.0, 'water': 1.0, 'found': 1.0, 'i': 1.0, 'mother': 1.0, 'real': 1.0, 'cup': 2.0, 'my': 1.0, 'has': 2.0, 't': 1.0, 'we': 2.0, 'a': 1.0, 'are': 1.0, 'pouring': 1.0, '50': 1.0, 'and': 2.0, 'pour': 1.0, 'especially': 1.0, '8': 1.0, 'one': 1.0, 'bought': 1.0, 'at': 1.0, 'keep': 1.0}
Word element => {'for': 1.0, 'perfect': 1.0, 'toys': 1.0, 'simple': 1.0, 'cups': 1.0, 'boats': 1.0, 'i': 1.0, 'ducks': 1.0, 'and': 1.0, 'like': 1.0, 'my': 1.0, 'time': 1.0, 'bath': 1.0, 'son': 1.0, 'likes': 1.0, 're': 3.0, 'them': 1.0, 'pour': 1.0, 'too': 1.0, 'these': 1.0, 'they': 3.0}
Word element => {'a': 1.0, 'want': 1.0, 'nest': 1.0, 'toy': 1.0, 'baby': 1.0, 'outside': 1.0, 'to': 2.0, 'my': 1.0, 'are': 2.0, 'in': 2.0, 'loves': 1.0, 'more': 1.0, 'float': 1.0, 'the': 2.0, 'these': 1.0, 'daughters': 1.0, 'do': 1.0, 'and': 2.0, 'what': 1.0, 'hair': 1.0, 'stack': 1.0, 'multifunctional': 1.0, 'of': 3.0, 'adorably': 1.0, 'they': 4.0, 'designed': 1.0, 'sink': 1.0, 'that': 1.0, 's': 1.0, 'soap': 1.0, 'you': 2.0, 'can': 1.0, 'bath': 1.0, 'use': 1.0, 'out': 2.0, 'tub': 2.0, 'them': 1.0, 'rinse': 1.0}
Word element => {'off': 1.0, 'of': 1.0, 'amount': 1.0, 'right': 1.0, 'just': 1.0, 'very': 1.0, 'and': 2.0, 's': 1.0, 're': 1.0, 'baby': 3.0, 'for': 3.0, 'cute': 1.0, 'they': 2.0, 'the': 1.0, 'these': 1.0, 'are': 1.0, 'but': 1.0, 'functional': 1.0, 'handy': 1.0, 'pouring': 1.0, 'water': 2.0, 'rinsing': 1.0, 'come': 1.0, 'over': 1.0, 'head': 1.0, 'also': 1.0, 'in': 1.0, 'body': 1.0, 'toys': 1.0, 'hold': 1.0}
Word element => {'sink': 1.0, 'poor': 1.0, 'learn': 1.0, 'seeing': 1.0, 'forward': 1.0, 'look': 1.0, 'rinse': 1.0, 'pouring': 1.0, 'useful': 1.0, 'are': 1.0, 'loves': 1.0, 'with': 3.0, 'bring': 1.0, 'big': 1.0, 'in': 1.0, 'months': 1.0, 'traditional': 1.0, 'reach': 1.0, 'the': 3.0, 'for': 3.0, 'these': 2.0, 'hit': 1.0, 'were': 1.0, 'like': 2.0, 'and': 5.0, 'etc': 1.0, 'i': 2.0, 'ducks': 2.0, 'sits': 1.0, 'got': 1.0, 'baby': 1.0, 'them': 6.0, 'her': 3.0, 'clean': 1.0, 'out': 1.0, 'me': 1.0, 'modern': 1.0, 'can': 1.0, 'suck': 1.0, 'they': 3.0, 'mouth': 1.0, 'because': 2.0, 'my': 1.0, 'things': 1.0, 'no': 1.0, 'space': 1.0, 'at': 1.0, 'husband': 1.0, 'our': 1.0, 'to': 9.0, 'now': 1.0, 'likes': 1.0, 'we': 1.0, 't': 1.0, 'a': 1.0, 'lined': 1.0, 'take': 1.0, 'don': 1.0, 'up': 1.0, 'of': 2.0, 'bottom': 1.0, 'how': 2.0, '6': 1.0, 'him': 1.0, 'be': 1.0, 'cleaned': 1.0, 'she': 1.0, 'moldy': 1.0, 'daughter': 1.0, 'water': 3.0, '5': 1.0, 'shoot': 1.0, 'make': 1.0, 'bath': 1.0, 'on': 2.0}
Word element => {'babies': 1.0, 'cute': 1.0, 'recommend': 1.0, 'really': 1.0, 'for': 1.0, 'which': 1.0, 'water': 1.0, 'is': 1.0, 'on': 1.0, 'float': 1.0, 'or': 1.0, 'i': 1.0, 'it': 2.0, 'love': 1.0, 'can': 1.0, 'these': 2.0, 'used': 1.0, 'be': 1.0, 'to': 1.0, 'let': 1.0, 'the': 2.0, 'shower': 1.0, 'baby': 1.0}
Word element => {'durable': 1.0, 'strong': 1.0, 'plastic': 1.0, 'they': 1.0, 'loves': 1.0, 'work': 1.0, 'at': 1.0, 'bright': 1.0, 'her': 1.0, 'cups': 1.0, 'daughter': 1.0, 'seems': 1.0, 'in': 1.0, 'my': 1.0, 'these': 1.0, 'great': 1.0, 'the': 3.0, 'bathtub': 1.0, 'kiddie': 1.0, 'pool': 1.0, 'and': 2.0, 'colorful': 1.0, 'to': 1.0, 'sand': 1.0, 'scoop': 1.0, 'stacking': 1.0, 'beach': 1.0}
Word element => {'two': 1.0, 'use': 1.0, 'bath': 1.0, 'time': 1.0, 'rinse': 1.0, 'my': 1.0, 'one': 1.0, 'for': 1.0, 'to': 2.0, 'toy': 1.0, 'the': 2.0, 'great': 1.0, 'month': 1.0, 'hair': 1.0, 'i': 1.0, 'old': 1.0, '17': 1.0, 's': 1.0, 'grandson': 1.0, 'other': 1.0, 'play': 1.0, 'and': 1.0, 'with': 1.0, 'he': 1.0, 'gets': 1.0}
Word element => {'there': 1.0, 'out': 1.0, 'products': 1.0, 'other': 1.0, 'some': 1.0, 'waterfall': 1.0, 'a': 1.0, 'by': 1.0, 'overcome': 1.0, 'being': 1.0, 'like': 2.0, 'grip': 1.0, 'comfy': 1.0, 'and': 1.0, 'hold': 1.0, 'to': 2.0, 'they': 1.0, 't': 1.0, 'these': 1.0, 'the': 1.0, 'are': 1.0, 'make': 1.0, 'my': 1.0, 'hair': 1.0, 'easy': 2.0, 'narrow': 1.0, 'love': 1.0, 'spouts': 1.0, 'doesn': 1.0, 'washing': 1.0, 'baby': 1.0, 's': 2.0, 'he': 2.0, 'feel': 1.0}
Word element => {'inside': 1.0, 'mold': 1.0, 'developing': 1.0, 'about': 1.0, 'one': 1.0, 'plays': 1.0, 'squirty': 1.0, 'rinse': 1.0, 'concern': 1.0, 'while': 1.0, 'spin': 2.0, 'perfect': 1.0, 'also': 1.0, '12': 1.0, 'him': 1.0, 'month': 1.0, 'to': 3.0, 'old': 1.0, 'i': 1.0, 'with': 3.0, 'he': 4.0, 'on': 2.0, 'bath': 3.0, 'son': 1.0, 'toys': 1.0, 'fill': 1.0, 'others': 1.0, 'these': 1.0, 'the': 3.0, 'they': 2.0, 'isn': 1.0, 'my': 1.0, 'are': 1.0, 'taking': 1.0, 'and': 2.0, 'play': 1.0, 'them': 3.0, 'when': 1.0, 'not': 1.0, 'because': 1.0, 'even': 1.0, 't': 1.0, 's': 1.0, 'a': 2.0, 'floor': 1.0, 'around': 1.0, 'like': 1.0, 'toy': 1.0, 'loves': 3.0, 'that': 1.0, 'of': 1.0}
Word element => {'good': 1.0, 'off': 1.0, 'rinsing': 1.0, 'for': 1.0, 'without': 1.0, 'yr': 1.0, 'plus': 1.0, 'of': 1.0, 'breaking': 1.0, 'tub': 1.0, 'out': 1.0, 'are': 1.0, 'bubbles': 1.0, 'my': 2.0, 've': 1.0, 'great': 1.0, 'the': 1.0, 'these': 1.0, 'pretty': 1.0, 'they': 1.0, 'by': 1.0, 'kids': 1.0, 'to': 2.0, 'be': 1.0, 'toys': 1.0, 'purchase': 1.0, 'sturdy': 1.0, 'simple': 1.0, 'imaginations': 1.0, 'cute': 1.0, 'survived': 1.0, 'like': 2.0, 'old': 1.0, 'provoke': 1.0, 'i': 2.0, 'seem': 1.0, 'a': 1.0, 'few': 1.0, '1': 1.0, 'flying': 1.0, 'trips': 1.0}
Word element => {'another': 1.0, 'bath': 1.0, 'time': 1.0, 'very': 1.0, 'son': 1.0, 'only': 1.0, 'with': 2.0, 'cute': 1.0, 'super': 1.0, 'not': 1.0, 'helpful': 1.0, 'are': 1.0, 'my': 1.0, 'but': 1.0, 'while': 1.0, 'these': 1.0, 'likes': 1.0, 'to': 1.0, 'during': 1.0, 'play': 1.0, 'one': 1.0, 'i': 1.0, 'rinse': 1.0, 'hair': 1.0, 'his': 1.0}
Word element => {'fabulous': 1.0, 'are': 1.0, 'they': 1.0, 'grandchildren': 1.0, 'last': 1.0, 'i': 2.0, 'have': 1.0, 'dunks': 1.0, 'too': 1.0, 'without': 1.0, 'hair': 1.0, 's': 1.0, 'child': 1.0, 'a': 1.0, 'bath': 3.0, 'many': 1.0, 'is': 1.0, 'these': 1.0, 'the': 4.0, 're': 1.0, 'my': 1.0, 'find': 1.0, 'two': 1.0, 'water': 2.0, 'and': 1.0, 'each': 1.0, 'of': 1.0, 'giver': 2.0, 'children': 1.0, 'it': 2.0, 'for': 2.0, 'one': 2.0, 'perfect': 1.0, 'until': 1.0, 'hope': 1.0, 'into': 1.0, 'holds': 1.0, 'little': 1.0, 'will': 1.0, 'toy': 1.0, 'to': 1.0, 'enough': 1.0, 'rinse': 1.0}
Word element => {'standard': 1.0, 'on': 1.0, 'take': 1.0, 'fun': 1.0, 'are': 1.0, 'plus': 1.0, 'rubber': 1.0, 'him': 1.0, 'rinse': 1.0, 'duck': 1.0, 'modern': 1.0, 'can': 1.0, 'them': 1.0, 'drinking': 1.0, 'pour': 1.0, 'when': 1.0, 'i': 2.0, 'he': 3.0, 'off': 1.0, 'or': 1.0, 'almost': 2.0, 'from': 1.0, 'son': 1.0, 'to': 2.0, 'was': 1.0, 'now': 1.0, 'is': 1.0, 'pouring': 1.0, 'for': 3.0, 'bathtime': 1.0, 'the': 1.0, '2': 1.0, 'these': 1.0, 'they': 2.0, 'use': 1.0, 'got': 1.0, 'me': 1.0, '1': 1.0, 'and': 3.0, 'xmas': 1.0, 'remain': 1.0, 'a': 2.0, 'my': 1.0, 'staple': 1.0, 'likes': 1.0}
Word element => {'along': 1.0, 'float': 1.0, 'older': 1.0, 'manipulate': 1.0, 'for': 1.0, 'will': 1.0, 'that': 1.0, 'smooth': 1.0, 'simple': 1.0, 'great': 1.0, 'colored': 1.0, 'course': 1.0, 'are': 2.0, 'eyes': 1.0, 'but': 1.0, 'nicely': 1.0, 'first': 1.0, 'easy': 1.0, 'sure': 1.0, 'precise': 1.0, 'm': 1.0, 'and': 6.0, 'when': 2.0, 'fantastic': 1.0, 'pour': 2.0, 'dripped': 1.0, 'my': 1.0, 'think': 1.0, 'good': 1.0, 'i': 3.0, 'tried': 1.0, 'pretty': 1.0, 'holes': 1.0, 'they': 5.0, 'old': 1.0, 'makes': 1.0, 'the': 3.0, 'though': 1.0, 'son': 1.0, 'little': 1.0, 'brightly': 1.0, 'very': 2.0, 'is': 1.0, 'not': 1.0, 'about': 1.0, 're': 1.0, 'enough': 1.0, 'll': 1.0, 'grab': 1.0, 'him': 1.0, 'be': 2.0, 'yet': 1.0, 'as': 1.0, 'to': 3.0, 'care': 1.0, 's': 1.0, 'notice': 1.0, 'a': 5.0, 'these': 1.0, 'hit': 1.0, 'washing': 1.0, 'he': 2.0, 'does': 1.0, 'his': 1.0, 'them': 2.0, 'use': 1.0, 'water': 1.0, 'over': 1.0, 'shape': 1.0, 'head': 2.0, 'cute': 1.0, 'after': 1.0, 'size': 1.0, 'tail': 1.0, 'of': 1.0, 'spout': 1.0}
Word element => {'happy': 1.0, 'was': 1.0, 'i': 1.0, 'with': 1.0, 'they': 2.0, 'came': 1.0, 'in': 1.0, 'very': 1.0, 'quality': 1.0, 'and': 2.0, 'great': 1.0, 'pictured': 1.0, 'were': 1.0, 'bigger': 1.0, 'than': 1.0, 'the': 1.0, 'are': 1.0, 'made': 1.0}
Word element => {'something': 1.0, 'nice': 1.0, 'need': 1.0, 'all': 1.0, 'etc': 1.0, 'hair': 1.0, 'little': 1.0, 'display': 1.0, 'can': 1.0, 'artwork': 1.0, 'ergonical': 1.0, 'cute': 1.0, 'sand': 1.0, 'ties': 1.0, 'practical': 2.0, 'dirt': 1.0, 'and': 3.0, 'at': 1.0, 'safe': 1.0, 'like': 1.0, 'slick': 1.0, 'cool': 2.0, 'water': 1.0, 'pour': 1.0, 'small': 1.0, 'so': 2.0, 'are': 1.0, 'these': 2.0, 'look': 1.0, 'to': 1.0, 'pebbles': 1.0, 'you': 1.0, 's': 2.0, 'bathe': 2.0, 'gadgets': 1.0, 'use': 1.0, 'ducks': 1.0, 'we': 1.0, 'play': 1.0, 'hek': 1.0, 'i': 2.0, 'when': 1.0, 'shower': 1.0, 'it': 2.0}
Word element => {'definitely': 1.0, 'belts': 1.0, 'last': 1.0, 'materials': 1.0, 'highly': 1.0, 'quality': 1.0, 'and': 1.0, 'durability': 1.0, 'second': 1.0, 'recommend': 1.0, 'of': 2.0, 't': 1.0, 'these': 2.0, 've': 1.0, 'one': 1.0, 'i': 1.0, 'to': 1.0, 'purchased': 1.0, 'can': 1.0, 'beat': 1.0, 'made': 1.0, 'are': 1.0, 'the': 2.0}
Word element => {'back': 1.0, 'send': 1.0, 'hassle': 1.0, 'of': 1.0, 'got': 1.0, 'soo': 1.0, 'three': 1.0, 'just': 2.0, 'then': 1.0, 'dark': 1.0, 'little': 1.0, 'very': 1.0, 'getting': 1.0, 'washing': 1.0, 'received': 1.0, 'said': 1.0, 'here': 1.0, 'on': 2.0, 'make': 1.0, 'i': 10.0, 'and': 4.0, 'green': 4.0, 'to': 4.0, 'machine': 1.0, 'pumped': 1.0, 'under': 1.0, 'the': 5.0, 'more': 1.0, 'came': 1.0, 'lime': 3.0, 'gave': 1.0, 'that': 1.0, 'it': 10.0, 'much': 1.0, 'do': 1.0, 'its': 1.0, 'assumption': 1.0, 'magnets': 1.0, 'scooper': 2.0, 'fun': 1.0, 'onto': 1.0, 'ordered': 1.0, 'grey': 1.0, 'neither': 1.0, 'color': 1.0, 'because': 1.0, 'does': 1.0, 'what': 1.0, 'work': 1.0, 'sad': 1.0, 'stars': 1.0, 'for': 1.0, 'need': 1.0, 'hunter': 1.0, 'hold': 1.0, 'sure': 1.0, 'would': 1.0, 'was': 6.0, 'recommend': 1.0, 'when': 1.0, 'someone': 1.0, 'a': 5.0, 's': 1.0}
Word element => {'where': 1.0, 'and': 1.0, 'my': 1.0, 'always': 1.0, 'of': 1.0, 'to': 1.0, 'rockin': 1.0, 'washer': 1.0, 'handy': 1.0, 'know': 1.0, 'just': 1.0, 'if': 1.0, 'have': 1.0, 'scoop': 2.0, 'you': 1.0, 'detergent': 1.0, 'a': 1.0, 'side': 1.0, 'is': 3.0, 'magnet': 1.0, 'feature': 1.0, 'green': 1.0, 'i': 2.0, 'the': 3.0, 'great': 1.0, 'must': 1.0, 'stick': 1.0, 'this': 1.0, 'it': 2.0, 'at': 1.0, 'use': 1.0, 'keeping': 1.0}
Word element => {'dryer': 1.0, 'product': 1.0, 'to': 1.0, 'is': 1.0, 'stuck': 1.0, 'this': 1.0, 'my': 1.0, 'find': 1.0, 'because': 1.0, 'little': 1.0, 'thing': 1.0, 'great': 1.0, 'it': 2.0, 'can': 1.0, 'alway': 1.0, 'and': 1.0, 'comes': 1.0, 'in': 1.0, 'handy': 1.0, 'i': 1.0}
Word element => {'s': 1.0, 'washer': 1.0, 'it': 2.0, 'can': 1.0, 'magnetic': 1.0, 'simply': 1.0, 'this': 1.0, 'laundry': 2.0, 'i': 1.0, 'scoop': 1.0, 'in': 1.0, 'ability': 1.0, 'my': 1.0, 'the': 1.0, 'with': 1.0, 'is': 1.0, 'room': 1.0, 'ideal': 1.0, 'to': 2.0, 'attach': 1.0, 'keep': 1.0}
Word element => {'company': 1.0, 'look': 1.0, 'again': 1.0, 'you': 1.0, 'when': 1.0, 'normal': 1.0, 'just': 1.0, 'being': 1.0, 'buy': 1.0, 'definitely': 1.0, 'accidents': 1.0, 'undone': 1.0, 'because': 1.0, 'not': 2.0, 'huge': 1.0, 'son': 1.0, 'to': 3.0, 'as': 1.0, 'last': 1.0, 'time': 1.0, 'has': 1.0, 'several': 1.0, 'year': 1.0, 'his': 2.0, 'from': 1.0, 'part': 1.0, 'i': 2.0, 'uniform': 1.0, 'will': 1.0, 'also': 1.0, 'seems': 1.0, 'must': 1.0, 'have': 1.0, 'able': 1.0, 'at': 1.0, 'who': 1.0, 'wear': 1.0, 'he': 1.0, 'this': 2.0, 'only': 1.0, 'of': 2.0, 'a': 4.0, 'belt': 4.0, 'easy': 1.0, 'get': 1.0, 'difference': 1.0, 'and': 1.0, 'on': 1.0, 'but': 2.0, 'made': 1.0, 'is': 1.0, 'it': 3.0, 'looks': 1.0, 'for': 1.0, 'be': 1.0, 'him': 1.0, 'had': 1.0, 'operate': 1.0, 'school': 1.0, 'nice': 1.0}
Word element => {'product': 1.0, 'well': 1.0, 'strong': 1.0, 'is': 1.0, 'recommend': 1.0, 'really': 2.0, 'this': 2.0, 'innovation': 1.0, 'highly': 1.0, 'and': 2.0, 'will': 1.0, 'works': 1.0, 'love': 1.0, 'repurchase': 1.0, 'in': 1.0, 'the': 1.0, 'black': 1.0, 'velcro': 1.0}
Word element => {'shiny': 1.0, 'not': 1.0, 'is': 1.0, 'the': 1.0, 'diaper': 1.0, 'off': 1.0, 'on': 1.0, 'take': 1.0, 'easy': 1.0, 'from': 1.0, 'how': 1.0, 'product': 1.0, 'for': 3.0, 'color': 1.0, 'one': 1.0, 'recommend': 1.0, 'belt': 1.0, 'shorts': 1.0, 'i': 4.0, 'old': 1.0, 'month': 1.0, 'it': 4.0, 'didn': 1.0, 'been': 1.0, 'until': 1.0, 'great': 1.0, 'realize': 1.0, 'would': 2.0, 'definitely': 1.0, 'blue': 1.0, 'looking': 1.0, 'changes': 1.0, 'son': 2.0, 'difficult': 1.0, 'relatively': 1.0, 'started': 1.0, 'be': 1.0, 'to': 2.0, 'its': 1.0, 'my': 2.0, '14': 1.0, 'find': 1.0, 'perfect': 1.0, 'this': 2.0, 'found': 1.0, 'after': 1.0, 'navy': 1.0, 'so': 1.0, 'searching': 1.0, 'too': 1.0, 'and': 4.0, 'online': 1.0, 'down': 1.0, 'at': 1.0, 'several': 1.0, 'different': 1.0, 'places': 1.0, 'has': 1.0, 'quickly': 1.0, 'arrived': 1.0, 'keeps': 1.0, 'a': 1.0, 't': 1.0, 's': 1.0, 'far': 1.0, 'falling': 1.0}
Word element => {'recommend': 1.0, 'i': 1.0, 'go': 1.0, 'undo': 1.0, 'when': 2.0, 'needs': 1.0, 'in': 1.0, 'not': 1.0, 'so': 2.0, 'loves': 1.0, 'he': 2.0, 'velcro': 1.0, 'it': 5.0, 'this': 2.0, 'is': 1.0, 'feels': 1.0, 'perfectly': 1.0, 'and': 2.0, 'son': 2.0, 'very': 1.0, 'bathroom': 1.0, 'daddy': 1.0, 'up': 1.0, 'dig': 1.0, 'like': 1.0, 'my': 2.0, 'made': 1.0, 'a': 1.0, 'the': 1.0, 'sits': 2.0, 'grown': 1.0, 'down': 1.0, 'does': 1.0, 'his': 1.0, 'to': 2.0, 'its': 2.0, 'belt': 2.0, 'soft': 1.0, 'can': 1.0, 'wonderful': 1.0, 'strongly': 2.0}
Word element => {'is': 1.0, 'for': 1.0, 'uniform': 1.0, 'in': 1.0, 'buckle': 1.0, 'prefers': 1.0, 'a': 2.0, 'compliance': 1.0, 'belt': 2.0, '3': 1.0, 'requirements': 1.0, 'the': 2.0, 'my': 1.0, 'nice': 1.0, 'over': 1.0, 'magnet': 1.0, 'with': 1.0, 'it': 1.0, 'velcro': 1.0, 'year': 1.0, 'son': 1.0, 'as': 1.0, 'up': 1.0, 'old': 1.0, 'i': 1.0, 'back': 1.0, 'but': 1.0, 'will': 1.0, 'complain': 1.0, 'not': 1.0}
Word element => {'of': 1.0, 'pair': 1.0, 'every': 1.0, 'for': 1.0, 'right': 1.0, 'can': 1.0, 'you': 1.0, 'fully': 1.0, 'old': 1.0, 'to': 1.0, 'being': 1.0, 'our': 1.0, 'that': 1.0, 'pants': 2.0, 'trouble': 1.0, 'two': 1.0, 'means': 1.0, 'year': 1.0, 'having': 1.0, 'in': 1.0, 'fit': 2.0, 'it': 1.0, 'he': 1.0, 'this': 1.0, 'we': 1.0, 'likes': 1.0, 'sizes': 1.0, 'due': 1.0, 'adjustable': 1.0, 'the': 2.0, 'wearing': 1.0, 'finding': 1.0, 'between': 1.0, 'belt': 1.0, 'solved': 1.0, 'problem': 1.0, 'get': 1.0, 'and': 1.0}
Word element => {'product': 1.0, 'restroom': 1.0, 'inorder': 1.0, 'at': 1.0, 'quickly': 1.0, 'allowa': 1.0, 'and': 1.0, 'less': 1.0, 'way': 1.0, 'is': 1.0, 'one': 1.0, 'for': 1.0, 'excellent': 1.0, 'have': 1.0, 'this': 1.0, 'purchased': 1.0, 'to': 4.0, 'wish': 1.0, 'knows': 1.0, 'him': 1.0, 'would': 1.0, 'operate': 1.0, 'unadjust': 1.0, '2belts': 1.0, 'perect': 1.0, 'i': 2.0, 'perfect': 3.0, 'the': 1.0, 'traditional': 1.0, 'back': 1.0, 'but': 1.0, 'school': 2.0, 'annoying': 1.0, 'my': 1.0, 'son': 1.0, 'how': 1.0, 'attend': 1.0, 'a': 1.0, 'belt': 1.0}
Word element => {'airing': 1.0, 'on': 1.0, 'want': 1.0, 'does': 1.0, 'have': 1.0, 'suppose': 1.0, 'out': 2.0, 'plan': 1.0, 'is': 2.0, 'be': 2.0, 'side': 1.0, 'warning': 1.0, 'only': 1.0, 'while': 1.0, 'about': 1.0, 'comfortable': 2.0, 'figure': 1.0, 'very': 1.0, 'difficult': 1.0, 'visiting': 1.0, 'beds': 1.0, 'son': 1.0, 'my': 2.0, 'used': 1.0, 'before': 2.0, 'or': 2.0, 'cover': 1.0, 'off': 1.0, 'babies': 1.0, 'that': 2.0, 'plastic': 1.0, 'he': 1.0, 'complain': 1.0, 'with': 1.0, 'using': 1.0, 'which': 1.0, 'sleeping': 1.0, 'so': 1.0, 'co': 1.0, 'stopped': 1.0, 'it': 7.0, 'month': 2.0, 'and': 3.0, 'nursing': 1.0, 'either': 1.0, 'then': 1.0, 'in': 3.0, 'for': 3.0, 'bed': 2.0, 'sleep': 1.0, 'our': 2.0, 'all': 1.0, 'to': 4.0, '15': 1.0, 'old': 1.0, 'purposefully': 1.0, 'i': 2.0, 'you': 1.0, 'traveling': 1.0, 'when': 1.0, 'custom': 1.0, 'less': 1.0, 'made': 1.0, 'would': 4.0, 'gassing': 1.0, 'found': 1.0, 'this': 1.0, 'mattress': 1.0, 'complaints': 1.0, 'previous': 1.0, 'got': 1.0, 'didn': 1.0, 'the': 1.0, 'ever': 1.0, 'we': 3.0, 'a': 4.0, 't': 1.0, 'notice': 1.0, 'smell': 1.0, 'an': 1.0, 'organic': 1.0, 'but': 1.0, 'left': 1.0, 'garage': 1.0}
Word element => {'excellent': 1.0, 'was': 1.0, 'delivery': 1.0, 'granndaughter': 1.0, 'the': 1.0, 'my': 1.0, 'for': 1.0, 'bought': 1.0, 'she': 1.0, 'baby': 1.0, 'and': 2.0, 'great': 1.0, 'it': 3.0, 'completely': 1.0, 'i': 1.0, 'is': 2.0, 'adorable': 1.0, 'soft': 1.0, 'loves': 1.0, 'this': 1.0, 'doll': 1.0, 'colorful': 1.0}
Word element => {'done': 1.0, 'be': 1.0, 'fine': 1.0, 'fluffy': 1.0, 'less': 1.0, 'they': 2.0, 'washing': 1.0, 'tossed': 1.0, 'end': 1.0, 'only': 1.0, 'surface': 1.0, 'instructions': 1.0, 'care': 1.0, 'countless': 1.0, 'big': 1.0, 'are': 2.0, 'those': 1.0, 'these': 1.0, 'others': 1.0, 'still': 1.0, 'cried': 1.0, 'happy': 1.0, 'today': 1.0, 'the': 6.0, 'in': 2.0, 'came': 1.0, 'since': 1.0, 'has': 3.0, 'of': 2.0, 'machine': 1.0, 'always': 1.0, 'wash': 1.0, 'up': 2.0, 'on': 1.0, 'was': 2.0, 'to': 4.0, 'mail': 1.0, 'now': 2.0, 'a': 1.0, 'we': 3.0, 'girl': 1.0, 'lost': 1.0, 'this': 1.0, 'first': 1.0, 'times': 1.0, 'when': 1.0, 'daughter': 1.0, 'have': 4.0, 'purchased': 1.0, 'doll': 1.0, 'it': 3.0, 'she': 5.0, 'old': 2.0, 'ever': 1.0, 'buy': 1.0, 'my': 2.0, 'little': 1.0, 'baby': 1.0, 'them': 1.0, 'so': 3.0, 'loved': 1.0, 'far': 1.0, 'been': 1.0, 'gave': 1.0, 'that': 2.0, 'sisters': 1.0, 'months': 1.0, 'one': 2.0, 'hand': 1.0, 'own': 1.0, 'say': 1.0, 'is': 1.0, '5': 1.0, 'years': 1.0, 'but': 2.0, '2': 2.0, 'can': 1.0, 'money': 1.0, 'and': 4.0, 'actually': 1.0, 'i': 1.0, '4': 2.0, 'saved': 1.0, 'her': 1.0, 'new': 2.0}
Word element => {'fast': 1.0, 'girl': 1.0, 'little': 1.0, 'shipped': 1.0, 'a': 2.0, 'this': 1.0, 'she': 1.0, 'doll': 1.0, 'one': 1.0, 'keepsake': 1.0, 'i': 1.0, 'had': 1.0, 'is': 1.0, 'on': 1.0, 'in': 1.0, 'perfect': 2.0, 'of': 2.0, 'the': 2.0, 'history': 1.0, 'as': 2.0, 'best': 1.0, 'bought': 1.0, 'dolls': 1.0, 'ever': 1.0}
Word element => {'best': 1.0, 'is': 1.0, 'it': 1.0, 'life': 1.0, 'girls': 1.0, 'bay': 1.0, 'i': 1.0, 'doll': 1.0, 'have': 1.0, 'this': 1.0, '30': 1.0, 'my': 1.0, 'the': 2.0, 'in': 1.0, 'baught': 1.0, 'for': 2.0, 'years': 1.0, 'all': 1.0, 'little': 1.0}
Word element => {'family': 1.0, 'our': 1.0, 'born': 1.0, 'little': 1.0, 'each': 1.0, 'has': 1.0, 'become': 1.0, 'soft': 1.0, 'so': 1.0, 'baby': 2.0, 'special': 1.0, 'classic': 1.0, 'calls': 1.0, 'without': 1.0, 'girl': 1.0, 'anytime': 1.0, 'nap': 1.0, 'my': 1.0, 'bed': 1.0, 'one': 1.0, 'for': 3.0, 'year': 1.0, 'as': 1.0, 'and': 1.0, 'purchased': 1.0, 'old': 1.0, 'to': 1.0, 'was': 1.0, 'granddaughter': 1.0, 'into': 1.0, 'or': 1.0, 'loves': 1.0, 'traditional': 1.0, 't': 1.0, 'a': 2.0, 'go': 1.0, 'her': 2.0, 'down': 1.0, 'sweet': 1.0, 'doll': 3.0, 'she': 2.0, 'gift': 2.0, 'absolutely': 1.0, 'this': 2.0, 'it': 1.0, 'won': 1.0}
Word element => {'outfits': 1.0, 'colors': 1.0, 'child': 1.0, 'my': 1.0, 'of': 1.0, 'advertised': 1.0, 'with': 2.0, 'versatile': 1.0, 'that': 1.0, 'nice': 1.0, 'will': 1.0, 'as': 1.0, 'and': 1.0, 'quality': 1.0, 'different': 1.0, 'lot': 1.0, 'grow': 1.0, 'go': 1.0, 'a': 2.0, 'belt': 1.0}
Word element => {'dolly': 1.0, 'since': 1.0, 'without': 1.0, 'slept': 1.0, 'ever': 2.0, 'has': 1.0, 'old': 1.0, 'weeks': 1.0, '6': 1.0, 'loved': 1.0, 'was': 1.0, 'to': 1.0, 'had': 1.0, 'when': 1.0, 'daughter': 1.0, 'much': 1.0, 'received': 1.0, 'best': 1.0, '11': 1.0, '3': 1.0, 'is': 1.0, 'replace': 1.0, 'and': 2.0, 'my': 1.0, 'times': 1.0, 'not': 1.0, 'because': 1.0, 'doll': 1.0, 'yr': 1.0, 'she': 3.0, 'this': 1.0, 'first': 1.0, 'it': 2.0, 'so': 1.0, 'her': 1.0, 'one': 1.0}
Word element => {'time': 1.0, 'put': 1.0, 'them': 2.0, 'a': 1.0, 'go': 1.0, 'two': 1.0, 'i': 3.0, 'old': 1.0, 'trip': 1.0, 'because': 1.0, 'will': 3.0, '8': 2.0, 'have': 2.0, 'capsule': 1.0, 'year': 1.0, 'buy': 1.0, 'day': 1.0, 'this': 1.0, 'not': 2.0, 'give': 1.0, 'these': 1.0, 'without': 1.0, 'the': 1.0, 'road': 1.0, 'twins': 1.0, 'wear': 1.0, 'my': 2.0, 'owned': 1.0, 'how': 1.0, 'dolls': 1.0, 'birth': 1.0, 'and': 1.0, 'since': 1.0, 'more': 1.0, 'is': 1.0, 'out': 1.0, 'third': 1.0, 'set': 1.0, 'of': 1.0, 'purchased': 1.0, 'every': 1.0, 'in': 2.0, 'years': 1.0, 'they': 1.0, 'only': 1.0, 'much': 1.0, 'love': 1.0, 'repeat': 1.0, 'girls': 1.0, 'likely': 1.0, 'anywhere': 1.0, 'need': 1.0, 'to': 2.0}
Word element => {'her': 1.0, 'much': 1.0, 'so': 1.0, 'in': 2.0, 'when': 1.0, 'daughter': 1.0, 'loved': 1.0, 'got': 1.0, 'doll': 1.0, 'she': 3.0, 'little': 1.0, '1999': 1.0, 'my': 1.0, 'great': 1.0, 'a': 2.0, 'is': 1.0, 'amazing': 1.0, 'ripped': 1.0, 'with': 1.0, 'it': 2.0, 'this': 2.0, 'had': 1.0, 'was': 1.0, 'born': 1.0, 's': 1.0, 'intact': 1.0, 'gift': 1.0, 'still': 2.0, 'always': 1.0, 'up': 1.0, 'but': 1.0}
Word element => {'this': 1.0, 'definitely': 1.0, 'would': 1.0, 'i': 1.0, 'plus': 1.0, 'a': 1.0, 'washable': 1.0, 'product': 1.0, 'being': 1.0, 'adorable': 1.0, 'quality': 1.0, 'face': 1.0, 'recommend': 1.0, 'good': 1.0, 'no': 1.0, 'love': 1.0, 'is': 2.0, 'that': 1.0, 'there': 1.0, 'choking': 1.0, 'hazard': 1.0}
Word element => {'hope': 1.0, 'i': 1.0, 'so': 1.0, 'found': 1.0, 'of': 1.0, 'go': 1.0, 'let': 1.0, 't': 1.0, 'couldn': 1.0, 'because': 1.0, 'a': 1.0, 'lasts': 1.0, 'in': 1.0, 'put': 1.0, 'received': 1.0, 'when': 2.0, '10': 3.0, 'same': 1.0, 'doll': 1.0, 'she': 3.0, 'lasted': 1.0, 'another': 1.0, 'years': 3.0, 'grandaughter': 1.0, 'grandmother': 1.0, 'ago': 1.0, 'my': 1.0, 'born': 1.0, 'from': 1.0, 'online': 1.0, 'before': 1.0, 'her': 1.0, 'excited': 1.0, 'this': 2.0, 'it': 4.0, 'other': 1.0, 'we': 2.0, 'frame': 1.0, 'had': 1.0, 'was': 2.0, 'to': 1.0}
Word element => {'i': 1.0, 'place': 1.0, 'only': 1.0, 'birth': 1.0, 'at': 1.0, 'find': 1.0, 'my': 1.0, 'can': 1.0, 'it': 1.0, 'daughter': 1.0, 'for': 1.0, 'years': 2.0, 'buying': 1.0, 'brings': 1.0, 'her': 2.0, 'been': 1.0, 'every': 1.0, 'christmas': 1.0, 'received': 1.0, 'santa': 1.0, 'on': 1.0, 'now': 2.0, '10': 1.0}
Word element => {'own': 1.0, 'cute': 1.0, 'soft': 1.0, 'her': 1.0, 'so': 1.0, 'she': 1.0, 'doll': 1.0, 'play': 1.0, 'and': 1.0, 't': 1.0, 'great': 1.0, 'can': 2.0, 'wait': 1.0, 'a': 1.0, 'is': 2.0, 'this': 2.0, 'first': 1.0, 'with': 1.0, 'on': 1.0, 'i': 1.0, 'till': 1.0, 'my': 1.0, 'grand': 1.0, 'daughter': 1.0}
Word element => {'buy': 1.0, 'a': 1.0, 'hold': 1.0, 'to': 2.0, 'even': 1.0, 'one': 1.0, 'i': 2.0, 'like': 1.0, 'quality': 1.0, 'it': 2.0, 'love': 1.0, 'the': 1.0, 'is': 2.0, 'good': 1.0, 'of': 1.0, 'soft': 1.0, 'doll': 1.0, 'this': 2.0, 'so': 1.0}
Word element => {'like': 1.0, 'a': 1.0, 'show': 1.0, 'do': 2.0, 'fall': 1.0, 'off': 1.0, 'will': 1.0, 'it': 1.0, 'that': 1.0, 'you': 2.0, 'have': 1.0, 'to': 1.0, 'spare': 1.0, 'hold': 1.0, 'with': 1.0, 'on': 1.0, 'the': 1.0, 'puppet': 2.0, 'how': 1.0, 'hand': 1.0, 'or': 1.0, 'your': 1.0}
Word element => {'wait': 1.0, 'long': 1.0, 'that': 1.0, 'are': 1.0, 'you': 1.0, 'when': 1.0, 'week': 1.0, 'no': 1.0, 'tracking': 1.0, 'was': 1.0, 'there': 1.0, 'mail': 1.0, 'in': 1.0, 'forever': 1.0, 'took': 2.0, 'half': 1.0, 'well': 1.0, 'these': 3.0, 'time': 1.0, 'so': 2.0, 'if': 1.0, 'eat': 2.0, 'however': 1.0, 'nauseous': 1.0, 'subside': 1.0, 'just': 3.0, 'it': 2.0, 'the': 2.0, 'basically': 1.0, 'candy': 2.0, 'available': 1.0, 'help': 1.0, 'work': 1.0, 'a': 5.0, 't': 1.0, 's': 2.0, 'seem': 1.0, 'i': 3.0, 'and': 5.0, 'couple': 1.0, 'me': 3.0, 'nausea': 1.0, 'note': 1.0, 'seemed': 1.0, 'feel': 1.0, 'get': 2.0, 'kind': 1.0, 'from': 1.0, 'of': 1.0, 'gross': 1.0, 'to': 6.0, 'all': 1.0, 'sugar': 2.0, '3': 1.0, 'candies': 1.0, 'more': 1.0, 'is': 2.0, 'side': 1.0, '12grams': 1.0, 'don': 1.0, 'than': 1.0, 'usually': 1.0, 'much': 2.0, 'for': 2.0, 'queasiness': 1.0, 'little': 1.0, 'like': 1.0}
Word element => {'day': 1.0, 'her': 1.0, 'through': 1.0, 'get': 1.0, 'helped': 1.0, 'it': 1.0, 'my': 2.0, 'work': 1.0, 'was': 1.0, 'ever': 1.0, 'so': 1.0, 'really': 1.0, 'thankful': 1.0, 'these': 1.0, 'wife': 2.0, 'for': 1.0, 'thank': 1.0, 'drops': 1.0, 'you': 1.0}
Word element => {'much': 1.0, 'cost': 1.0, 'glad': 1.0, 'disappointed': 1.0, 'very': 1.0, 'at': 1.0, 'work': 1.0, 'sour': 1.0, 'they': 3.0, 'bad': 1.0, 'the': 1.0, 'least': 1.0, 't': 4.0, 'taste': 1.0, 'just': 1.0, 'all': 1.0, 'me': 1.0, 'didn': 3.0, 'but': 1.0, 'big': 1.0, 'aren': 1.0, 'for': 1.0, 'in': 1.0}
Word element => {'use': 1.0, '116': 1.0, 'died': 1.0, 'just': 1.0, 'old': 1.0, '3': 1.0, 'update': 1.0, 'out': 1.0, 'batteries': 2.0, 'weeks': 2.0, 'bounces': 1.0, 'days': 1.0, 'plays': 1.0, 'support': 1.0, 'the': 6.0, 'control': 1.0, 'yet': 1.0, 'neck': 1.0, 'cleans': 1.0, 'this': 1.0, 'it': 3.0, 'no': 1.0, 'expect': 1.0, 'has': 1.0, 'any': 1.0, 'seat': 1.0, 'not': 2.0, 'is': 4.0, 'would': 2.0, 'baby': 3.0, 'vibrates': 1.0, 'of': 2.0, 'i': 2.0, 'bounce': 1.0, 'head': 2.0, 'but': 1.0, 'music': 1.0, 'recommend': 1.0, 'for': 1.0, '17': 1.0, 'using': 1.0, 'toys': 1.0, 'lacks': 1.0, 'are': 1.0, 'fabric': 1.0, 'have': 1.0, 'worn': 1.0, 'great': 1.0, 'nice': 2.0, 'everyday': 1.0, 'and': 4.0, 'pattern': 1.0, 'what': 1.0, '11': 2.0, 'when': 1.0, 'easily': 1.0, 'you': 1.0, 'at': 1.0, 'who': 1.0, '13': 1.0}
Word element => {'problem': 1.0, 'major': 1.0, 'other': 1.0, 'of': 2.0, 'no': 1.0, 'replace': 1.0, 'they': 1.0, 'are': 1.0, 'called': 1.0, 'horror': 1.0, 'in': 2.0, 'buzzy': 1.0, 'later': 1.0, 'watched': 1.0, 'seconds': 1.0, 'out': 1.0, 'worn': 1.0, 'that': 1.0, 'devastated': 1.0, 'offering': 1.0, 'and': 3.0, 'however': 2.0, 'so': 2.0, 'after': 1.0, 'or': 1.0, 'worth': 1.0, 'on': 1.0, 'make': 1.0, 'letting': 1.0, 've': 1.0, 'new': 1.0, 'it': 3.0, 'only': 2.0, 'this': 2.0, 'recall': 1.0, 'first': 1.0, 'with': 1.0, 'know': 1.0, 'hand': 1.0, 'vibration': 2.0, 'done': 1.0, 'used': 1.0, 'chair': 1.0, 'mine': 1.0, 'ok': 1.0, 'still': 1.0, 'son': 1.0, 'very': 1.0, 'a': 1.0, 'we': 2.0, 'careful': 1.0, 'the': 6.0, 'music': 1.0, 'weak': 1.0, 'but': 2.0, '2': 1.0, 'ones': 1.0, 'company': 1.0, 'my': 3.0, 'mother': 1.0, 'loved': 2.0, 'option': 1.0, 'at': 1.0, 'any': 1.0, 'word': 1.0, 'as': 2.0, 'to': 2.0, 'had': 2.0, 'was': 2.0, 'product': 1.0, 'right': 1.0, 'replaced': 1.0, 'smoking': 1.0, 'before': 1.0, '5': 1.0, 'mechanism': 1.0, 'months': 1.0, 'i': 6.0, 'noticed': 1.0, 'customers': 1.0, 'enough': 1.0, 'dying': 1.0, 'batteries': 1.0, 'were': 1.0, 'times': 1.0, 'again': 1.0, 'started': 1.0, 'them': 1.0, 'be': 1.0, 'multiple': 1.0}
Word element => {'very': 1.0, '25': 1.0, 'weight': 2.0, 'but': 1.0, 'fragile': 1.0, 'scary': 1.0, 'so': 1.0, 'not': 2.0, 'straight': 1.0, 'head': 2.0, 'on': 1.0, 'months': 1.0, 'limit': 2.0, 'now': 1.0, 'weeks': 1.0, 'week': 1.0, 'about': 1.0, 'toy': 1.0, 'from': 1.0, 'his': 1.0, 'luckily': 1.0, 'lbs': 2.0, 'when': 2.0, 'up': 2.0, '12': 1.0, 'bar': 1.0, 'the': 6.0, 's': 1.0, 'could': 1.0, 'a': 2.0, 't': 1.0, 'great': 2.0, 'seat': 1.0, 'slipped': 1.0, 'he': 6.0, 'this': 1.0, 'ground': 1.0, 'first': 1.0, 'hold': 1.0, 'sat': 1.0, 'was': 3.0, 'however': 1.0, 'more': 1.0, 'is': 4.0, 'really': 1.0, 'right': 1.0, 'it': 3.0, 'fell': 2.0, 'onto': 1.0, 'at': 1.0, 'flimsy': 1.0, 'lot': 1.0, 'too': 1.0, 'and': 3.0, 'off': 2.0, 'cover': 1.0, 'wasn': 1.0, 'newborn': 1.0, 'rails': 1.0, '20': 1.0, '5': 1.0}
Word element => {'carter': 1.0, 'be': 1.0, 'contacting': 1.0, 'will': 1.0, 'me': 1.0, 'to': 1.0, 'ever': 1.0, 'has': 1.0, 'nothing': 1.0, 'them': 1.0, 'of': 1.0, 'each': 1.0, 'for': 1.0, 'only': 1.0, 'moving': 1.0, 'i': 6.0, 'like': 1.0, '17': 1.0, 'old': 1.0, 'while': 1.0, 'bouncer': 2.0, 'treadmill': 1.0, 'just': 1.0, 'was': 3.0, 'now': 1.0, 'warning': 1.0, 'owned': 1.0, 'my': 1.0, 'in': 2.0, 'nearby': 1.0, 'daughter': 1.0, 'terrified': 1.0, 'months': 1.0, 'happened': 1.0, 'am': 1.0, 'lbs': 1.0, 'trash': 1.0, 'more': 1.0, 'is': 2.0, '6': 1.0, 'and': 5.0, 'this': 2.0, 'kids': 1.0, 'scared': 1.0, 'it': 2.0, 'she': 3.0, 'collapsed': 1.0, 'the': 2.0, 'without': 1.0, 'wasn': 1.0, 'on': 1.0, 'think': 1.0, 'even': 1.0, 'startled': 1.0, 'sitting': 1.0, 'but': 2.0, 'than': 1.0, '5': 1.0, 'different': 1.0, 'anything': 1.0, 'have': 2.0, 's': 1.0, 't': 1.0, 'a': 1.0}
Word element => {'buy': 1.0, 'don': 1.0, 'save': 1.0, 'it': 1.0, 'money': 2.0, 'of': 1.0, 'waste': 1.0, 'total': 1.0, 't': 1.0, 'this': 1.0, 'leaking': 1.0, 'is': 1.0, 'the': 1.0, 'your': 1.0, 'i': 1.0, 'not': 1.0, 'was': 1.0, 'please': 1.0, 'absorbent': 1.0, 'place': 1.0, 'all': 1.0, 'over': 1.0}
Word element => {'them': 1.0, 'out': 1.0, 'pregnancy': 1.0, 'another': 1.0, 'lot': 1.0, 'a': 1.0, 'do': 1.0, 'and': 1.0, 'help': 1.0, 'day': 1.0, 'helped': 1.0, 'but': 1.0, 'would': 1.0, 'thing': 1.0, 'was': 1.0, 'my': 1.0, 'sickness': 1.0, 'morning': 1.0, 'cure': 1.0, 'off': 1.0, 'that': 1.0, 'did': 1.0, 'the': 2.0, 't': 2.0, 'edge': 1.0, 'with': 2.0, 'only': 1.0, 'wouldn': 2.0, 'it': 1.0, 'sure': 1.0, 'completely': 1.0, 'take': 1.0}
Word element => {'or': 1.0, 'falls': 1.0, 'if': 1.0, 'for': 2.0, 'keeping': 1.0, 'but': 1.0, 'not': 1.0, 'cover': 1.0, 'blanket': 1.0, 'thin': 1.0, 'a': 1.0, 'you': 1.0, 's': 1.0, 'it': 4.0, 'works': 1.0, 'the': 1.0, 'great': 1.0, 'can': 1.0, 'socks': 1.0, 'warm': 1.0, 'underneath': 1.0, 'and': 1.0, 'at': 1.0, 'blankets': 1.0, 'add': 1.0, 'plus': 1.0, 'all': 1.0, 'rain': 1.0, 'catches': 1.0}
Word element => {'most': 1.0, 'help': 1.0, 'throwing': 1.0, 'from': 1.0, 'sour': 1.0, 'stop': 1.0, 'up': 1.0, 'feeling': 1.0, 're': 1.0, 'you': 3.0, 's': 1.0, 'well': 1.0, 'can': 1.0, 'when': 1.0, 'it': 1.0, 'hard': 1.0, 'they': 1.0, 'ill': 1.0, 'really': 1.0, 'to': 1.0, 'like': 2.0, 'flavors': 1.0, 'all': 1.0, 'work': 1.0, 'but': 1.0, 'ones': 1.0, 'these': 1.0, 'the': 4.0, 'pretty': 1.0, 'if': 1.0, 'flavor': 1.0}
Word element => {'huge': 1.0, 'they': 1.0, 'line': 1.0, 'impressed': 1.0, 'oz': 1.0, '17': 1.0, 'babyganics': 1.0, 'like': 1.0, 'products': 1.0, 'mouth': 1.0, 'his': 1.0, 'in': 1.0, 'baby': 1.0, 'your': 1.0, 'inside': 1.0, 'getting': 1.0, 'avoid': 1.0, 'wipe': 1.0, 'hold': 1.0, 'great': 1.0, 'a': 4.0, 'to': 10.0, 'easy': 4.0, 'get': 1.0, 'easier': 1.0, 'puts': 1.0, 'has': 2.0, 'toy': 2.0, 'that': 2.0, 'clean': 3.0, 'handles': 1.0, 'giraffe': 1.0, 'nice': 1.0, 'two': 1.0, 'i': 2.0, 'paint': 1.0, 'directions': 1.0, 'can': 1.0, 'harmful': 1.0, 'light': 1.0, 'it': 1.0, 'nicely': 1.0, '3': 1.0, 'on': 4.0, 'toxic': 2.0, 'my': 3.0, 'which': 1.0, 'made': 1.0, 'flat': 1.0, 'pros': 1.0, 'son': 3.0, 'month': 1.0, 'under': 1.0, 'for': 4.0, 'chew': 2.0, 'old': 1.0, 'loop': 2.0, 'makes': 1.0, 'non': 2.0, 'rubber': 1.0, 'gnon': 3.0, 'stroller': 1.0, 'free': 2.0, 'tips': 1.0, '100': 1.0, 'this': 1.0, 'are': 1.0, 'background': 1.0, 'phthalates': 1.0, 'alternative': 1.0, 'sophie': 2.0, 'benefit': 1.0, 'set': 1.0, 'the': 5.0, 'of': 2.0, 'natural': 1.0, 'vanilla': 2.0, 'and': 5.0, 'teething': 1.0, 'decorated': 1.0, 'not': 2.0, 'with': 6.0, 'grade': 1.0, 'paints': 1.0, 'cleaner': 1.0, 's': 1.0, 'phthalate': 1.0, 'pvc': 1.0, 'thin': 1.0, 'gnaw': 1.0, 'no': 1.0, 'disappeared': 1.0, 'very': 2.0, 'been': 1.0, 'pliable': 1.0, 'head': 1.0, 'have': 1.0, 'running': 1.0, 'anything': 1.0, 'soft': 2.0, 'works': 1.0, 'do': 1.0, 'is': 3.0, 'handle': 1.0, 'holding': 1.0, 'food': 2.0, 'or': 1.0, 'purchased': 1.0, 'attach': 1.0, 'scent': 2.0, 'strap': 1.0, 'carseat': 1.0, 'conclusion': 1.0, 'hug': 1.0, 'harder': 1.0, 'knowing': 1.0, 'water': 2.0, 'vulli': 1.0, 'toys': 2.0, 'cons': 1.0, 'quickly': 1.0, 'as': 2.0, 'annoying': 1.0, 'squeaking': 1.0, 'use': 1.0, 'her': 1.0, 'wash': 1.0, 'follow': 1.0}
Word element => {'without': 1.0, 'go': 1.0, 'sophie': 1.0, 't': 1.0, 'months': 2.0, 'three': 1.0, 'and': 1.0, 'don': 1.0, 'baby': 1.0, 'anywhere': 1.0, 'my': 1.0, 'are': 1.0, 'was': 1.0, 'later': 1.0, 'when': 1.0, 'one': 1.0, 'i': 1.0, 'old': 1.0, 'still': 1.0, 'ordered': 1.0, 'two': 1.0, 'we': 2.0, 'this': 1.0, 'it': 2.0, 'is': 1.0, 'of': 1.0, 'toys': 1.0, 'favorite': 1.0, 'loving': 1.0, 'her': 1.0}
Word element => {'and': 1.0, 'cuteness': 1.0, 'love': 1.0, 'babies': 1.0, 'the': 1.0, 'made': 1.0, 'he': 1.0, 'durability': 1.0, 'parents': 1.0, 'teething': 1.0, 'loves': 1.0, 'these': 1.0, 'but': 2.0, 'just': 1.0, 'obviously': 1.0, 'not': 1.0, 'general': 1.0, 'playing': 1.0, 'for': 3.0, 'in': 1.0}
Word element => {'idea': 1.0, 'gift': 1.0, 'loves': 1.0, 'and': 1.0, '1st': 1.0, 'tooth': 1.0, 'his': 1.0, 'sophie': 1.0, 'is': 1.0, 'great': 1.0, 'it': 1.0, 'month': 1.0, 'best': 1.0, 'buy': 1.0, 'got': 1.0, 'ever': 1.0, 'the': 1.0, 'my': 1.0, '5': 1.0, 'old': 1.0, 'just': 1.0}
Word element => {'geeat': 1.0}
Word element => {'over': 2.0, 'sophie': 1.0, 'll': 1.0, 'up': 1.0, 'them': 1.0, 'loves': 1.0, 'have': 1.0, 'daughter': 1.0, 'my': 2.0, 'picked': 1.0, 'it': 1.0, 'this': 1.0, 'shower': 1.0, 'baby': 2.0, 'toy': 1.0, 'an': 1.0, 'amazing': 1.0, 'gift': 1.0, 'now': 1.0, 'standard': 1.0, 'told': 1.0, 's': 1.0, 'our': 1.0, 'buy': 1.0, 'i': 2.0, 'also': 1.0, 'hers': 1.0, 've': 1.0, 'is': 1.0, 'people': 1.0, 'who': 1.0}
Word element => {'friends': 1.0, 'family': 1.0, 'reviews': 1.0, 'on': 1.0, 'is': 2.0, 'purchased': 1.0, 'fellow': 1.0, 'completely': 1.0, 'am': 1.0, 'so': 1.0, 'and': 2.0, 'little': 1.0, 'as': 1.0, 'big': 1.0, 'loves': 1.0, 'good': 1.0, 'choice': 1.0, 'happy': 2.0, 'these': 1.0, 'the': 1.0, 'teething': 1.0, 'boy': 1.0, 'too': 1.0, 'mom': 1.0, 'for': 1.0}
Word element => {'though': 1.0, 'of': 1.0, 'gets': 1.0, 'happy': 1.0, 'be': 1.0, 'will': 1.0, 'worth': 1.0, 'was': 1.0, 'spent': 1.0, 'paid': 1.0, 'better': 1.0, 'one': 2.0, 'does': 1.0, 'noise': 1.0, 'on': 2.0, 'make': 1.0, 'get': 1.0, 'as': 1.0, 'to': 2.0, 'for': 1.0, 'expensive': 1.0, 'price': 1.0, '34': 4.0, 'up': 1.0, 'house': 1.0, 'in': 1.0, 'ears': 1.0, 'game': 1.0, 'a': 2.0, 'we': 1.0, 'my': 1.0, 'time': 1.0, 'so': 1.0, 'the': 12.0, 'dogs': 1.0, 'dog': 2.0, 'granddaughter': 1.0, 'perked': 1.0, 'he': 2.0, 'this': 1.0, 'quick': 1.0, 'with': 3.0, 'keep': 1.0, 'really': 2.0, 'is': 1.0, 'when': 2.0, 'handles': 1.0, 'giraffe': 1.0, 'not': 1.0, 'kinda': 1.0, 'heard': 1.0, 'now': 1.0, 'away': 1.0, 'play': 1.0, 'and': 2.0, 'smacking': 1.0, 'from': 1.0, 'meh': 1.0, 'teething': 1.0, 'i': 1.0, 'thought': 1.0, 'truly': 1.0, 'it': 8.0, 'she': 4.0, 'new': 1.0, 'would': 1.0, 'hold': 1.0, 'like': 2.0, 'chewing': 1.0, 'teether': 1.0, 'toy': 1.0, 'likes': 1.0, 'squeak': 1.0, 'seemed': 1.0, 'squeaky': 1.0}
Word element => {'gifts': 1.0, 'welcome': 1.0, 'and': 1.0, 'baby': 2.0, 'his': 1.0, 'easily': 1.0, 'my': 2.0, 'since': 1.0, 'granddaughter': 1.0, 'for': 2.0, 'loved': 1.0, 'grandson': 1.0, 'bought': 1.0, 'ring': 1.0, 'i': 1.0, 'teething': 1.0, 'is': 1.0, 'nice': 1.0, 'so': 1.0, 'that': 1.0, 'they': 1.0, 'can': 1.0, 'shower': 1.0, 'this': 1.0, 'it': 1.0, 'the': 1.0, 'great': 1.0, 'grasp': 1.0}
Word element => {'tethers': 1.0, 'companions': 1.0, 'love': 1.0, 'a': 1.0, 'so': 1.0, 'i': 2.0, 'don': 1.0, 'about': 1.0, 'purchased': 1.0, 'to': 1.0, 'as': 1.0, 'why': 1.0, 'daughter': 1.0, 'know': 1.0, 'and': 2.0, 'me': 1.0, 'my': 2.0, 'set': 1.0, 'keep': 1.0, 'told': 1.0, 'at': 1.0, 'but': 1.0, 'house': 1.0, 'these': 2.0, 'the': 1.0, 't': 1.0, 'babies': 1.0}
Word element => {'dog': 1.0, 'thing': 1.0, 'worst': 1.0, 'inside': 1.0, 'on': 1.0, 'water': 2.0, 'brush': 1.0, 'warm': 1.0, 'soap': 1.0, 'quick': 1.0, 'made': 1.0, 'are': 1.0, 'material': 1.0, 'it': 3.0, 'am': 1.0, 'fast': 1.0, 'yucky': 1.0, 'soft': 1.0, 'is': 4.0, 'always': 1.0, 'original': 2.0, 'bottle': 1.0, 'so': 2.0, 'making': 1.0, 'other': 1.0, 'nicely': 1.0, 'the': 11.0, 'sophie': 2.0, 'each': 1.0, 'would': 1.0, 'buy': 1.0, 'squeaker': 1.0, 'compliment': 1.0, 'definitely': 1.0, 't': 2.0, 'we': 1.0, 'a': 3.0, 'use': 1.0, 'front': 1.0, 'both': 1.0, 'doesn': 2.0, 'recommend': 1.0, 'of': 2.0, 'toys': 1.0, 'i': 3.0, 'two': 1.0, 'friend': 1.0, 'teether': 1.0, 'to': 2.0, 'and': 2.0, 'sure': 1.0, 'scrub': 1.0, 'get': 4.0, 'works': 1.0, 'do': 1.0, 'cover': 1.0, 'legs': 1.0, 'my': 1.0, 'under': 1.0, 'son': 1.0, 'help': 1.0, 'ring': 1.0, 'hold': 1.0, 'teeth': 2.0, 'pretty': 1.0, 'further': 1.0, 'or': 1.0, 'back': 1.0, 'from': 1.0, 'while': 1.0, 'great': 3.0, 'sohpie': 1.0, 'but': 1.0, 'firm': 1.0, 'for': 1.0, 'that': 1.0, 'assuming': 1.0, 'these': 1.0, 'final': 1.0, 'cut': 1.0, 'through': 1.0, 'gums': 1.0, 'they': 2.0}
Word element => {'teeth': 1.0, 'to': 1.0, 'way': 1.0, 'has': 1.0, 'around': 1.0, 'month': 1.0, '3': 1.0, 'for': 3.0, 'years': 1.0, 'he': 1.0, 'it': 1.0, 'this': 1.0, 'loves': 1.0, 'and': 2.0, 'my': 1.0, 'bought': 1.0, 'old': 1.0, 'i': 1.0, 'ones': 1.0, 'great': 1.0, 'the': 1.0, 'sophie': 1.0, 'giraffe': 1.0, 'little': 1.0, 'been': 1.0, 'many': 1.0, 'is': 1.0, 'a': 1.0}
Word element => {'toys': 1.0, 'other': 1.0, 'i': 1.0, 'they': 1.0, 'to': 1.0, 'much': 1.0, 'babies': 1.0, 'quick': 1.0, 'on': 1.0, 'chew': 1.0, 'liked': 1.0, 'for': 1.0, 'am': 1.0, 'delivery': 1.0, 'and': 2.0, 'very': 1.0, 'as': 2.0, 'these': 1.0, 'great': 1.0, 'are': 1.0, 'happy': 1.0, 'my': 1.0, 'so': 1.0, 'twins': 1.0, 'their': 1.0}
Word element => {'recommended': 1.0, 'sooth': 1.0, 'highly': 1.0, 'and': 2.0, 'them': 1.0, 'bought': 1.0, 'my': 1.0, 'for': 1.0, 'great': 1.0, 'were': 1.0, 'helkp': 1.0, 'really': 1.0, 'when': 1.0, 'these': 1.0, 'they': 2.0, 'teething': 1.0, 'sisters': 1.0, 'born': 1.0, 'product': 1.0, 'to': 1.0, 'liked': 1.0}
Word element => {'besides': 1.0, 'something': 1.0, 'interested': 1.0, 'brought': 1.0, 'fruit': 1.0, 'i': 1.0, 'but': 2.0, 'is': 3.0, 'mangos': 1.0, 'my': 1.0, 'hates': 1.0, 'mixed': 1.0, 'meats': 1.0, 'me': 1.0, 'mix': 1.0, 'very': 2.0, 'picky': 1.0, 'son': 1.0, 'sweet': 1.0, 'meat': 1.0, 'and': 3.0, 'eater': 1.0, 'likes': 1.0, 'cereal': 2.0, 'with': 1.0, 'he': 3.0, 'this': 1.0, 'it': 2.0, 'eating': 1.0, 'trying': 1.0, 'potatoes': 1.0, 'him': 1.0, 'never': 1.0, 'making': 1.0, 'anything': 1.0, 'fish': 1.0, 'a': 1.0, 'we': 1.0, 'cook': 1.0, 'his': 1.0, 'grandma': 1.0, 'home': 1.0, 'absolutely': 1.0, 'that': 2.0, 'loves': 1.0, 'good': 1.0, 'makes': 1.0, 'mashed': 1.0, 'feel': 1.0}
Word element => {'gift': 1.0, 'day': 1.0, 'uses': 1.0, 'every': 1.0, 'she': 1.0, 'comes': 1.0, 'and': 1.0, 'my': 1.0, 'in': 1.0, 'daughter': 1.0, 'loves': 1.0, 'great': 1.0, 'it': 2.0, 's': 1.0, 'her': 1.0, 'box': 1.0, 'buy': 1.0, 'too': 1.0, 'new': 1.0, 'a': 2.0, 'toy': 1.0}
Word element => {'had': 1.0, 'wish': 1.0, 'i': 2.0, 'teething': 1.0, 'vanilla': 1.0, 'my': 1.0, 'sophie': 1.0, 'traditional': 1.0, 't': 2.0, 'the': 3.0, 'gotten': 1.0, 'and': 1.0, 'didn': 1.0, 'send': 1.0, 'instead': 1.0, 'use': 1.0, 'even': 1.0, 'they': 1.0, 'one': 1.0, 'rubber': 1.0, 's': 1.0, 'hated': 1.0, 'well': 1.0, 'baby': 1.0, 'taste': 1.0, 'really': 1.0, 'doesn': 1.0, 'first': 1.0, 'he': 2.0, 'it': 1.0, 'much': 1.0, 'though': 1.0}
Word element => {'product': 1.0, 'soft': 1.0, 'also': 1.0, 's': 1.0, 'how': 1.0, 'gums': 1.0, 'his': 1.0, 'against': 1.0, 'rub': 1.0, 'himself': 1.0, 'teething': 1.0, 'months': 1.0, 'i': 1.0, 'old': 1.0, 'many': 1.0, 'is': 2.0, 'now': 1.0, 'very': 1.0, 'adorable': 1.0, 'son': 1.0, 'has': 1.0, 'and': 2.0, 'my': 1.0, 'great': 1.0, 'the': 1.0, '5': 1.0, 'rings': 1.0, 'b': 1.0, 'loves': 1.0, 'love': 1.0, 'one': 1.0, 'most': 1.0, 'c': 1.0, 'can': 1.0, 'he': 2.0, 'this': 1.0, 'it': 3.0, 'darn': 1.0, 'hold': 1.0}
Word element => {'use': 1.0, 'doesn': 1.0, 'less': 1.0, 'son': 1.0, 'teether': 1.0, 'good': 1.0, 'of': 1.0, 'rather': 2.0, 'd': 1.0, 'pricey': 1.0, 'i': 2.0, 'old': 1.0, 've': 1.0, 'in': 2.0, 'hold': 1.0, 'mouths': 1.0, 'one': 2.0, 'easy': 1.0, 'light': 1.0, 'little': 2.0, 'very': 2.0, 'and': 5.0, 'gotten': 1.0, 'to': 1.0, 'him': 2.0, 'month': 1.0, 'it': 2.0, 'this': 4.0, 'he': 2.0, '5': 1.0, 'than': 1.0, 'chew': 1.0, 'mouth': 2.0, 'only': 1.0, 'tiny': 1.0, 'other': 2.0, 'hands': 1.0, 'the': 2.0, 'great': 1.0, 'bunch': 1.0, 'ones': 2.0, 'a': 2.0, 's': 4.0, 't': 2.0, 'fits': 1.0, 'my': 4.0, 'lo': 2.0, 'have': 1.0, 'younger': 1.0, 'small': 1.0, 'teethers': 2.0, 'their': 1.0, 'but': 3.0, 'is': 2.0, 'comfortably': 1.0, 'likes': 1.0, 'that': 2.0, 'loves': 2.0, 'babies': 1.0, 'perfectly': 1.0, 'especially': 1.0, 'expensive': 1.0, 'for': 2.0, 'fit': 1.0, 'sophie': 2.0, 'round': 1.0, 'don': 1.0}
Word element => {'niece': 1.0, '6': 1.0, 'our': 1.0, 'for': 1.0, 'gift': 1.0, 'this': 1.0, 'old': 1.0, 'product': 1.0, 'was': 2.0, 'made': 1.0, 'a': 2.0, 'month': 1.0, 'great': 1.0, 'it': 2.0, 'well': 1.0, 'quick': 1.0, 'shipped': 1.0, 'very': 2.0, 'and': 1.0}
Word element => {'with': 1.0, 'wide': 1.0, 'using': 1.0, 'love': 1.0, 'for': 1.0, 'product': 1.0, 'non': 1.0, 'teething': 2.0, 'world': 1.0, 'out': 1.0, 'is': 3.0, 'puts': 1.0, 'company': 1.0, 'anyone': 1.0, 'the': 1.0, 'great': 1.0, 'i': 2.0, 'toxic': 2.0, 'your': 1.0, 'd': 1.0, '60': 1.0, 'money': 1.0, 'baby': 2.0, 'it': 2.0, 'sold': 1.0, 'from': 1.0, 's': 2.0, 'a': 2.0, 'its': 1.0, 'all': 1.0, 'to': 1.0, 'this': 4.0, 'soft': 1.0, 'massages': 1.0, 'no': 1.0, 'safe': 1.0, 'materials': 2.0, 'gums': 1.0, 'plus': 1.0, 'of': 1.0, 'worries': 1.0, 'paints': 1.0, 'worth': 1.0, 'or': 1.0, 'dishwasher': 1.0, 'top': 1.0, 'shelf': 1.0, 'recommend': 1.0}
Word element => {'his': 2.0, 'to': 1.0, 'toy': 3.0, 'onto': 1.0, 'product': 1.0, 'my': 1.0, 'enjoys': 1.0, 'easy': 1.0, 'hands': 1.0, 'yet': 1.0, 'for': 1.0, 'son': 1.0, 'durable': 1.0, 'with': 1.0, 'is': 1.0, 'little': 2.0, 'hang': 1.0, 'the': 2.0, 'great': 1.0, 'teeth': 1.0, 'and': 1.0, 'sharp': 1.0, 'no': 1.0, 'punctures': 1.0}
Word element => {'hit': 1.0, 'even': 1.0, 'big': 1.0, 'squeak': 1.0, 'bonus': 1.0, 'an': 1.0, 'with': 1.0, 'though': 1.0, 'clips': 1.0, 'added': 1.0, 'pacifier': 1.0, 'not': 1.0, 'those': 1.0, 'of': 1.0, 'attach': 1.0, 'something': 1.0, 'when': 1.0, 'helps': 1.0, 'on': 1.0, 'think': 1.0, 'gnaw': 1.0, 'flavor': 1.0, 'i': 6.0, 'scent': 1.0, 'it': 9.0, 'this': 2.0, 'want': 1.0, 'if': 1.0, 'see': 1.0, 'since': 1.0, 'get': 1.0, 'and': 2.0, 'liked': 1.0, 'handle': 1.0, 'doesn': 1.0, 'was': 2.0, 'one': 4.0, 'decided': 1.0, 'still': 1.0, 'son': 2.0, 'to': 5.0, 'as': 1.0, 'him': 4.0, 'or': 1.0, 'have': 1.0, 'sophie': 2.0, 'the': 4.0, 'always': 1.0, 'original': 2.0, 'so': 2.0, 'my': 2.0, 'really': 1.0, 'flavored': 2.0, 'highly': 1.0, 'firm': 1.0, 'disappointed': 1.0, 'loves': 2.0, 'that': 3.0, 'well': 1.0, 'easier': 1.0, 'he': 2.0, 'received': 1.0, 'much': 1.0, 'neither': 1.0, 'scented': 2.0, 'nonetheless': 1.0, 'just': 1.0, 'a': 1.0, 't': 1.0, 's': 3.0, 'for': 1.0, 'actually': 1.0, 'more': 1.0, 'is': 3.0, 'than': 1.0}
Word element => {'hands': 1.0, 'little': 1.0, 'size': 1.0, 'perfect': 1.0, 'cute': 1.0, 'of': 1.0, 's': 1.0, 'teething': 1.0, 'design': 1.0, 'a': 1.0, 'my': 1.0, 'for': 2.0, 'love': 1.0, 'sophie': 1.0, 'such': 1.0, 'the': 2.0, 'great': 1.0, 'products': 1.0, 'i': 1.0, 'son': 1.0, 'is': 1.0, 'loves': 1.0, 'it': 1.0, 'this': 1.0, 'giraffe': 1.0, 'too': 1.0, 'and': 1.0}
Word element => {'been': 1.0, 'he': 1.0, 'has': 1.0, 'one': 1.0, 'loves': 1.0, 'this': 1.0, 'properly': 1.0, 'son': 1.0, 'had': 1.0, 'it': 1.0, 'great': 1.0, 'trouble': 1.0, 'getting': 1.0, 'larger': 1.0, 'my': 1.0, 'the': 1.0, 'sophie': 1.0, 'but': 1.0, 'mouth': 1.0, 'into': 1.0, 'his': 1.0}
Word element => {'packaging': 1.0, 'oh': 1.0, 'from': 1.0, 'recommending': 1.0, 'll': 1.0, 'her': 1.0, 'although': 1.0, 'in': 1.0, 'regular': 1.0, 'than': 1.0, 'be': 2.0, 'as': 1.0, 'to': 3.0, 'small': 1.0, 'his': 1.0, 'everywhere': 1.0, 'there': 1.0, 'on': 2.0, 'give': 1.0, 'loves': 1.0, 'been': 1.0, 'suggested': 1.0, 'daughter': 1.0, 'ring': 1.0, 'still': 1.0, 'son': 2.0, 'great': 1.0, 'big': 1.0, 'teething': 2.0, 'hold': 1.0, 'version': 1.0, 'them': 1.0, 'this': 3.0, 'it': 4.0, 'he': 2.0, 'loved': 1.0, 'much': 1.0, 'try': 1.0, 'got': 1.0, 'now': 1.0, 'delivered': 1.0, 'i': 5.0, 'non': 1.0, 'old': 1.0, 'was': 1.0, 'thought': 1.0, 'had': 1.0, 'able': 1.0, 'sophie': 3.0, 'such': 1.0, 'original': 1.0, 'd': 1.0, 'both': 1.0, 're': 1.0, 'too': 1.0, 'and': 7.0, 'for': 2.0, 'since': 1.0, 's': 1.0, 'a': 2.0, 'we': 1.0, 'hands': 1.0, 'the': 3.0, 'pro': 1.0, 'my': 3.0, 'family': 1.0, 'comes': 1.0, 'is': 3.0, 'four': 1.0, 'months': 1.0, 'friends': 1.0, 'time': 1.0, 'well': 1.0, 'easier': 1.0, 'has': 1.0, 'cute': 1.0, 'drool': 1.0, 'stop': 1.0, 'yesterday': 1.0, 'super': 1.0, 've': 1.0, 'gnawing': 1.0}
Word element => {'felt': 1.0, 'china': 1.0, 'in': 1.0, 'made': 1.0, 'not': 1.0, 'giving': 1.0, 'and': 1.0, 'have': 1.0, 'it': 1.0, 'this': 1.0, 'will': 1.0, 'product': 1.0, 'cute': 1.0, 'gift': 1.0, 'twin': 1.0, 'safer': 1.0, 'as': 1.0, 'a': 2.0, 're': 1.0, 'i': 3.0, 'gave': 1.0, 'when': 2.0, 'update': 1.0, 'talk': 1.0, 'they': 1.0, 'of': 1.0, 'baby': 1.0, 'age': 1.0, 'teething': 1.0, 'mother': 1.0, 'the': 1.0, 'to': 3.0, 'was': 1.0}
Word element => {'vulli': 1.0, 'do': 1.0, 'way': 1.0, 'doesn': 1.0, 'rubber': 1.0, 'line': 1.0, 'owner': 1.0, 'dog': 3.0, 'of': 1.0, 'good': 3.0, 'squeaking': 1.0, 'silicone': 1.0, 'previous': 1.0, 'non': 1.0, 'old': 1.0, 'although': 1.0, 'rings': 1.0, 'also': 2.0, 'in': 2.0, 'for': 2.0, 'yet': 1.0, 'one': 1.0, 'addition': 1.0, 'he': 2.0, 'noted': 1.0, 'is': 3.0, 'really': 1.0, 'hair': 1.0, 'easier': 1.0, 'well': 1.0, 'nice': 1.0, 'reviewer': 1.0, 'my': 2.0, 'small': 1.0, 'so': 1.0, 'everything': 1.0, 'size': 1.0, 'attract': 1.0, 'i': 1.0, '4': 1.0, 'on': 1.0, 'sophie': 3.0, 's': 1.0, 'a': 4.0, 't': 2.0, 'the': 8.0, 'it': 1.0, 'month': 1.0, 'purse': 1.0, 'too': 1.0, 'and': 1.0, 'stick': 2.0, 'as': 2.0, 'to': 4.0, 'hold': 1.0, 'teething': 1.0, 'wanting': 1.0, 'his': 1.0, 'can': 2.0, 'but': 1.0, 'lot': 1.0, 'navigate': 1.0, 'this': 1.0, 'grip': 1.0, 'full': 1.0, 'because': 1.0, 'mouth': 1.0, 'sized': 1.0, 'that': 1.0, 'loves': 1.0}
Word element => {'recommend': 1.0, 'it': 2.0, 'the': 1.0, 'and': 1.0, 'loves': 1.0, 'this': 1.0, 'teething': 1.0, 'ring': 1.0, 'to': 1.0, 'just': 2.0, 'perfect': 1.0, 'for': 1.0, 'hands': 1.0, 'would': 1.0, 'was': 1.0, 'hold': 1.0, 'baby': 1.0, 'little': 1.0}
Word element => {'daughter': 1.0, 'by': 1.0, 'was': 1.0, 'consumed': 1.0, 'that': 1.0, 'up': 1.0, 'of': 1.0, 'and': 1.0, 'with': 1.0, 'this': 1.0, 'time': 1.0, 'some': 1.0, 'playing': 1.0, 'the': 3.0, 'sophie': 1.0, 'more': 1.0, 'my': 2.0, 'biting': 1.0, 'came': 1.0, 'i': 2.0, 'hevea': 1.0, 'it': 1.0, 'month': 1.0, 'she': 1.0, 'prefers': 2.0, 'but': 1.0, 'area': 1.0, 'clearly': 1.0, 'teether': 2.0, 'pick': 1.0, 'one': 2.0, 'her': 1.0, 'also': 2.0, 'seems': 1.0, '5': 1.0, 'panda': 2.0, 'does': 1.0, 'ear': 1.0, 'than': 1.0, 'spend': 1.0, 'easily': 1.0, 'to': 1.0, 'dirt': 1.0, 'assume': 1.0, 'other': 1.0, 'product': 1.0, 'old': 1.0, 'noticed': 1.0, 'paint': 1.0, 'off': 1.0, 'horn': 1.0}
Word element => {'him': 1.0, 'was': 1.0, 'giraffe': 1.0, 'sized': 1.0, 'better': 1.0, 'sophie': 1.0, 'full': 1.0, 'our': 1.0, 'baby': 1.0, 'didn': 1.0, 'just': 1.0, 'the': 1.0, 'find': 1.0, 't': 1.0, 'this': 1.0, 'for': 1.0, 'interesting': 1.0, 'much': 1.0, 'to': 1.0, 'be': 1.0, 'that': 1.0}
Word element => {'looking': 1.0, 'what': 1.0, 'sure': 1.0, 'am': 1.0, 'pictured': 1.0, 'but': 1.0, 'great': 1.0, 'the': 2.0, 'organic': 1.0, 'sheet': 2.0, 'for': 1.0, 'love': 1.0, 'it': 2.0, 'this': 1.0, 'is': 4.0, 'really': 1.0, 'i': 4.0, 'was': 1.0, 'had': 1.0, 'to': 1.0, 'strange': 1.0, 'brown': 1.0, 'jersey': 1.0, 'color': 1.0, 'that': 2.0, 'orangy': 1.0, 'chocolate': 1.0, 'return': 1.0, 'a': 2.0, 'very': 1.0, 'just': 1.0, 'not': 2.0}
Word element => {'a': 1.0, 'get': 1.0, 'to': 1.0, 'gifts': 1.0, 'showers': 1.0, 'baby': 1.0, 'it': 2.0, 'was': 1.0, 'for': 2.0, 'my': 1.0, 'loved': 1.0, 'and': 1.0, 'lol': 1.0, 'cute': 1.0, 'looked': 1.0, 'nephew': 1.0, 'he': 2.0, 'good': 1.0}
Word element => {'laundry': 1.0, 'in': 2.0, 'other': 1.0, 'another': 1.0, 'him': 1.0, 'working': 1.0, 'exercise': 1.0, 'on': 1.0, 'lie': 1.0, 'letting': 1.0, 'different': 1.0, 'good': 1.0, 'also': 1.0, 'thing': 1.0, 'clothing': 1.0, 'm': 2.0, 'while': 3.0, 'his': 2.0, 'edges': 1.0, 'over': 1.0, 'doesn': 1.0, 'baby': 2.0, 'large': 1.0, 'chose': 1.0, 'could': 1.0, 't': 1.0, 'a': 4.0, 's': 5.0, 'made': 1.0, 'the': 9.0, 'diaper': 2.0, 'bed': 1.0, 'for': 2.0, 'or': 2.0, 'washes': 1.0, 'i': 8.0, 'when': 1.0, 'times': 1.0, 'hang': 1.0, 'bought': 1.0, 'have': 2.0, 'this': 2.0, 'it': 6.0, 'with': 1.0, 'enough': 1.0, 'pad': 3.0, 'use': 2.0, 'that': 2.0, 'changing': 2.0, 'those': 1.0, 'attractive': 1.0, 'as': 1.0, 'to': 2.0, 'and': 3.0, 'vinyl': 1.0, 'well': 2.0, 'has': 1.0, 'an': 3.0, 'but': 1.0, 'floor': 2.0, 'print': 2.0, 'padding': 1.0, 'around': 1.0, 'is': 3.0, 'now': 1.0, 'thin': 1.0, 'probably': 1.0, 'nothing': 1.0, 'better': 1.0, 'same': 1.0, 'layer': 1.0, 'if': 2.0, 'find': 1.0, 'because': 1.0, 'than': 1.0, 'extra': 1.0, 'buy': 1.0, 'waterproof': 1.0, 'll': 1.0, 'bottom': 1.0, 'of': 1.0, 'there': 1.0, 'so': 2.0, 'contained': 1.0, 'get': 1.0, 'accident': 1.0}
Word element => {'one': 1.0, 'have': 1.0, 'should': 1.0, 'everyone': 1.0, 'no': 1.0, 'matress': 2.0, 'a': 2.0, 'can': 1.0, 'when': 1.0, 'buy': 1.0, 'you': 1.0, 'wash': 2.0, 'it': 2.0, 'this': 2.0, 'still': 1.0, 'worth': 1.0, 'been': 1.0, 'is': 3.0, 'more': 1.0, 't': 1.0, 'the': 2.0, 'mess': 2.0, 'has': 1.0, 'good': 2.0, 'but': 1.0, 'idea': 1.0, 'take': 1.0, 'clean': 1.0, 'made': 1.0, 'out': 1.0, 'and': 3.0}
Word element => {'place': 1.0, 'to': 1.0, 'tp': 1.0, 'easy': 2.0, 'then': 1.0, 'other': 1.0, 'play': 1.0, 'pack': 1.0, 'my': 1.0, 'for': 1.0, 'no': 1.0, 'keeps': 1.0, 'dry': 1.0, 'that': 1.0, 'sweaty': 1.0, 'a': 2.0, 'clean': 1.0, 'leaky': 1.0, 'is': 2.0, 'only': 1.0, 'it': 2.0, 'this': 1.0, 'and': 2.0, 'matter': 1.0, 'great': 2.0, 'the': 3.0, 'diaper': 1.0, 'mattress': 1.0, 'what': 1.0, 'baby': 1.0, 'downfall': 1.0, 'or': 1.0, 's': 1.0, 'bit': 1.0, 'product': 1.0, 'short': 1.0}
Word element => {'no': 1.0, 's': 1.0, 'there': 1.0, 'things': 1.0, 'absolute': 1.0, 'making': 1.0, 'are': 1.0, 'cut': 1.0, 'they': 1.0, 'original': 1.0, 'their': 1.0, 'snap': 1.0, 'instead': 1.0, 'neck': 3.0, 'or': 2.0, 'three': 1.0, 'lot': 1.0, 'has': 1.0, 'corners': 1.0, 'but': 2.0, 'work': 1.0, 'finished': 1.0, 'at': 1.0, 'is': 4.0, 'cheaper': 1.0, 'up': 1.0, 'a': 4.0, 't': 1.0, 'make': 1.0, 'implore': 1.0, 'branding': 1.0, 'sure': 2.0, 'model': 1.0, 'get': 1.0, 'i': 4.0, 'better': 1.0, 'just': 1.0, 'not': 4.0, 'company': 2.0, 'trying': 1.0, 'another': 1.0, 'off': 2.0, 'seems': 1.0, 'stick': 1.0, 've': 1.0, 'undone': 1.0, 'prevented': 1.0, 'such': 1.0, 'for': 2.0, 'product': 4.0, 'woombie': 2.0, 'with': 2.0, 'third': 1.0, 'our': 2.0, 'to': 8.0, 'an': 1.0, 'all': 3.0, 'that': 3.0, 'of': 6.0, 'the': 13.0, 'hands': 2.0, 'stretchy': 1.0, 'doesn': 1.0, 'was': 2.0, 'as': 1.0, 'crazy': 1.0, 'recommend': 1.0, 'made': 1.0, 'have': 1.0, 'zipper': 1.0, 'two': 1.0, 'little': 1.0, 'very': 1.0, 'girl': 1.0, 'velcro': 1.0, 'this': 4.0, 'it': 2.0, 'these': 1.0, 'comes': 1.0, 'attachment': 1.0, 'changes': 1.0, 'would': 2.0, 'washes': 1.0, 'if': 1.0, 'still': 1.0, 'and': 5.0, 'been': 1.0, 'smoothly': 1.0, 'getting': 1.0, 'came': 1.0, 'after': 1.0, 'on': 2.0, 'amount': 1.0, 'killing': 1.0, 'thing': 1.0, 'unhappy': 1.0, 'm': 2.0, 'in': 2.0, 'unfortunately': 1.0, 'baby': 1.0, 'fingers': 1.0, 'mouth': 1.0, 'does': 1.0, 'older': 1.0, 'reason': 1.0, 'woombies': 1.0, 'stretch': 1.0, 'her': 6.0, 'snaps': 1.0, 'from': 1.0, 'part': 1.0, 'face': 2.0, 'we': 1.0, 'take': 1.0, 'lettering': 1.0, 'bought': 1.0, 'effort': 1.0}
Word element => {'best': 1.0, 'sure': 1.0, 'not': 1.0, 'pinned': 1.0, 'their': 1.0, 'without': 1.0, 'down': 2.0, 'son': 1.0, 'with': 1.0, 'continue': 1.0, 'have': 1.0, 'will': 1.0, 'like': 1.0, 'mattress': 1.0, 'hit': 1.0, 'head': 1.0, 'little': 1.0, 'second': 1.0, 'swaddled': 1.0, 'definitely': 1.0, 'using': 1.0, 'light': 1.0, 'wiggling': 1.0, 'm': 1.0, 'in': 4.0, 'a': 6.0, 't': 3.0, 'finally': 1.0, 'going': 1.0, 'he': 7.0, 'daughter': 1.0, 'got': 1.0, 'loved': 1.0, 'then': 2.0, 'legs': 1.0, 'get': 2.0, 'arms': 1.0, 'and': 10.0, 'was': 2.0, 's': 1.0, 'maybe': 1.0, 'by': 1.0, 'few': 1.0, 'when': 2.0, 'again': 1.0, 'night': 2.0, 'tired': 1.0, 'baby': 6.0, 'i': 10.0, '4': 1.0, 'awhile': 1.0, 'flailing': 1.0, 'asleep': 1.0, 'sleep': 2.0, 'more': 1.0, 'is': 6.0, 'too': 1.0, 'one': 1.0, '10': 1.0, 'for': 5.0, 'bet': 1.0, 'woombie': 6.0, 'out': 5.0, 'blanket': 5.0, 'wildly': 2.0, 'after': 3.0, 'kept': 1.0, 'ending': 1.0, 'the': 12.0, 'of': 2.0, 'horrifying': 1.0, 'miracle': 7.0, 'serious': 1.0, 'just': 1.0, 'why': 1.0, 'up': 2.0, 'don': 1.0, 'another': 1.0, 'minutes': 3.0, 'trying': 1.0, 'be': 1.0, 'it': 1.0, 'him': 4.0, 'had': 1.0, 'neck': 1.0, 'brought': 1.0, 'star': 1.0, 'item': 1.0, 'twisted': 1.0, 'sack': 1.0, 'now': 1.0, 'weird': 1.0, 'to': 4.0, 'high': 1.0, 'fell': 1.0, 'grew': 1.0, 'update': 1.0, 'long': 1.0, 'around': 1.0, 'his': 4.0, 'hopes': 1.0, 'seriously': 1.0, 'picked': 1.0, 'digress': 1.0, 'into': 1.0, 'thing': 2.0, 'about': 2.0, 'they': 1.0, 'weirded': 1.0, 'make': 1.0, 'nuts': 1.0, 'put': 2.0, 'different': 2.0, 'your': 2.0, 'sizes': 1.0, 'straightjacketed': 1.0, 'wiggler': 1.0, 'prefers': 1.0, 'being': 1.0, 'flailed': 2.0, 'himself': 1.0, 'wiggle': 1.0, 'calm': 2.0, 'my': 1.0, 'guess': 2.0, 'if': 1.0, 'still': 2.0, 'every': 1.0, 'other': 1.0, 'that': 2.0, '20': 1.0, 'can': 3.0, 'so': 1.0}
Word element => {'on': 1.0, 'tried': 1.0, 'loves': 2.0, 'hours': 1.0, 'went': 1.0, 'silent': 1.0, 'in': 1.0, 'put': 2.0, 'changed': 1.0, 'down': 1.0, 'world': 1.0, 'womb': 1.0, 'transition': 1.0, 'wrong': 1.0, 'for': 1.0, 'fabric': 1.0, 'confined': 2.0, 'this': 3.0, 'second': 1.0, 'cranky': 2.0, 'secure': 1.0, 'startle': 1.0, 'countless': 1.0, 'follows': 1.0, '1': 1.0, 'cotton': 1.0, 'pediatrician': 1.0, 'airflow': 1.0, 'therapists': 1.0, 'comfortable': 1.0, 'experience': 1.0, 'to': 5.0, 'swaddle': 1.0, 'effective': 2.0, 'back': 1.0, 'sleep': 1.0, 'most': 1.0, 'night': 1.0, 'blankets': 1.0, 'use': 2.0, 'company': 1.0, 'prevents': 2.0, 'will': 2.0, 'easiest': 1.0, 'baby': 3.0, 'hugs': 1.0, 'scratching': 1.0, 'is': 2.0, 'doulas': 1.0, 'woombie': 2.0, 'with': 1.0, 'design': 1.0, 'gently': 1.0, 'the': 2.0, 'natural': 2.0, 'safest': 1.0, 'dads': 1.0, 'by': 1.0, 'just': 1.0, 'easing': 1.0, 'and': 8.0, 'recommended': 1.0, 'pediatricians': 1.0, 'sids': 1.0, 'nurses': 1.0, 'personal': 1.0, 'physical': 1.0, 'soft': 1.0, 'guidlines': 1.0, 'maintains': 1.0, 'no': 1.0, 'be': 1.0, 'colic': 1.0, 'loose': 1.0, 'reflex': 1.0, 'covering': 1.0, 'development': 1.0, 'face': 1.0, 'moms': 1.0, 'come': 1.0, 'a': 2.0, 'promotes': 1.0, 'unnecessary': 1.0, 'not': 4.0, 'waking': 1.0, 'safe': 1.0, 'due': 1.0, 'soothes': 1.0, 'babies': 1.0, 'airways': 1.0, 'my': 2.0, 'undone': 1.0, 'would': 1.0, 'overheat': 1.0, 'easy': 1.0, 'again': 2.0, 'zip': 1.0, 'him': 3.0, 'it': 4.0, 'up': 1.0, 'slept': 1.0, 'i': 3.0, 'thinking': 1.0, 'was': 5.0, 'son': 1.0, 'eco': 1.0, 'voted': 1.0, 'like': 1.0, 'so': 2.0, 'motor': 1.0, 'he': 5.0, 'we': 1.0, 'then': 1.0, 'feels': 2.0, 'from': 1.0, 'wiped': 1.0}
Word element => {'better': 1.0, 'matters': 1.0, 'baby': 1.0, 'of': 1.0, 'there': 2.0, 'big': 2.0, 'like': 1.0, 'which': 2.0, 'posted': 2.0, 'color': 2.0, 'my': 1.0, 'not': 2.0, 'photos': 2.0, 'because': 1.0, 'than': 2.0, 'out': 1.0, 'newborn': 1.0, 'are': 1.0, 'actually': 1.0, 'deal': 1.0, 'the': 4.0, 'size': 2.0, 'looser': 1.0, 'they': 1.0, 'inconsistent': 1.0, 'same': 1.0, 'if': 1.0, 'son': 1.0, 'changes': 1.0, 'each': 2.0, 'much': 1.0, 'is': 4.0, 'woombie': 1.0, 'with': 1.0, 'it': 2.0, 'i': 5.0, 'see': 2.0, 'well': 1.0, 'ordered': 1.0, 'a': 1.0, 't': 1.0, 's': 1.0, 'and': 4.0, 'too': 1.0, 'when': 1.0, 'doesn': 1.0, 'swaddlers': 1.0, 'all': 1.0, 'as': 2.0, 'sleep': 1.0, 'room': 1.0, 'worry': 1.0, 'pretty': 1.0, 'safe': 1.0, 'other': 2.0, 'that': 1.0}
Word element => {'in': 1.0, 'is': 1.0, 'instantly': 1.0, 'almost': 1.0, 'down': 1.0, 'calms': 1.0, 'has': 1.0, 'isn': 1.0, 'viva': 1.0, 'be': 1.0, 'turned': 1.0, 'looking': 1.0, 'love': 1.0, 'for': 2.0, 'woombie': 2.0, 'not': 1.0, 'she': 5.0, 'it': 4.0, 'this': 1.0, 'my': 1.0, 'and': 2.0, 'forward': 1.0, 'week': 1.0, 'to': 2.0, 'our': 1.0, 'loves': 1.0, 'that': 1.0, 'am': 1.0, 'when': 2.0, 'daughter': 1.0, 'i': 3.0, 'started': 1.0, 'night': 1.0, 'old': 1.0, 'marley': 2.0, 'wife': 1.0, 'out': 1.0, 'of': 1.0, 'know': 1.0, 'sleeping': 1.0, 'sole': 1.0, 'through': 1.0, 'the': 3.0, 'la': 1.0, 'but': 1.0, '2': 1.0, 'about': 1.0, 'transitioned': 1.0, 'we': 1.0, 't': 1.0, 'a': 1.0, 'before': 1.0, 'bought': 1.0, 'months': 1.0, 'reason': 1.0, 'absolutely': 1.0}
Word element => {'newborn': 1.0, 'ador': 1.0, 'stuff': 1.0, 'am': 1.0, 'adjust': 1.0, 'reach': 1.0, 'are': 1.0, 'front': 2.0, 'only': 1.0, 'parents': 1.0, 'between': 1.0, 'share': 1.0, 'money': 1.0, 'worth': 1.0, '8211': 1.0, 'day': 1.0, 'every': 1.0, 'worn': 1.0, 'truly': 2.0, 'help': 1.0, 'out': 2.0, 'anywhere': 1.0, 'buckles': 3.0, 'mei': 1.0, 'best': 1.0, 'radiation': 1.0, 'done': 2.0, 'heat': 1.0, 'they': 1.0, 'comfort': 1.0, 'work': 1.0, 'head': 1.0, 'blanket': 1.0, 'soft': 1.0, 'hours': 1.0, 'promptly': 1.0, 'hood': 1.0, 'asleep': 1.0, 'side': 1.0, 'unclench': 1.0, 'love': 2.0, 'he': 3.0, 'or': 1.0, '4': 2.0, 'fast': 1.0, 'well': 2.0, 'putting': 1.0, 'i': 13.0, 'it': 2.0, 'tai': 1.0, 'hits': 1.0, '3': 1.0, 'on': 4.0, '16': 1.0, 'put': 2.0, 'whenever': 1.0, 'adjustments': 1.0, 'about': 1.0, 'from': 1.0, 'children': 1.0, 'hands': 1.0, 'down': 1.0, '8': 2.0, 'and': 13.0, 'quality': 1.0, 'their': 1.0, 'experience': 1.0, 'base': 1.0, 'alot': 1.0, 'praises': 1.0, 'lately': 1.0, 'would': 1.0, 'weeks': 1.0, 'seems': 1.0, 'tried': 3.0, 'let': 1.0, 'supportive': 2.0, 'my': 5.0, 'you': 2.0, 'starts': 1.0, 'have': 8.0, 'highest': 1.0, 'this': 4.0, 'perfect': 1.0, 'carrier': 4.0, 'chest': 1.0, 'mine': 1.0, 'carriers': 2.0, 'been': 2.0, 'that': 1.0, 'more': 1.0, 'babies': 1.0, 'with': 1.0, 'singing': 1.0, 'reviews': 1.0, 'but': 3.0, 'write': 1.0, 'wanted': 1.0, 'to': 13.0, 'back': 1.0, 'sleep': 1.0, 'the': 18.0, 'of': 5.0, 'can': 5.0, 'so': 1.0, 'his': 1.0, 'swallow': 1.0, 'around': 2.0, 'baby': 2.0, 'many': 1.0, 'others': 1.0, 'all': 1.0, '17lbs': 1.0, 'for': 5.0, 'also': 1.0, 'us': 1.0, 'was': 1.0, 'doesn': 1.0, 'get': 1.0, 'legs': 1.0, 'months': 2.0, 'try': 1.0, 'lot': 1.0, 'too': 1.0, 'one': 1.0, 'its': 5.0, 'falls': 1.0, 'slim': 1.0, 'a': 4.0, 'tiny': 1.0, 'leaving': 1.0, 'very': 3.0, 'found': 1.0, 'know': 2.0, 'easy': 4.0, 'use': 1.0, 'dont': 1.0, 'canvas': 1.0, 'height': 1.0, 'metro': 1.0, 'be': 3.0, 'bc': 4.0, 'here': 1.0, 'softest': 1.0, 'w': 1.0, 'compare': 1.0, 'cinched': 1.0, '7': 1.0, 'up': 1.0, 'favorite': 1.0, '8217': 1.0, 'in': 3.0, 'fit': 2.0, 't': 1.0, 'child': 1.0, 'often': 1.0, 'month': 1.0, 'wonderful': 1.0, 'old': 1.0, 'will': 1.0, 'when': 2.0, 'sit': 1.0, 'awake': 1.0, 'snug': 1.0, 'is': 3.0, 'look': 1.0, 'cross': 1.0, 'straps': 2.0, 'wants': 1.0}
Word element => {'better': 1.0, 'bit': 1.0, 'works': 1.0, 'more': 1.0, 'any': 1.0, 'too': 1.0, 'one': 1.0, 'long': 1.0, 'on': 1.0, 'circulation': 1.0, 'off': 1.0, 'actually': 1.0, 'straps': 1.0, 'facing': 3.0, 'great': 1.0, 'carrying': 1.0, 'front': 1.0, 'carry': 1.0, 'cons': 1.0, 'comment': 1.0, 'back': 1.0, 'explains': 1.0, 'might': 1.0, 'sheet': 1.0, 'direction': 1.0, 'comes': 1.0, 'pro': 1.0, 'a': 4.0, 'am': 1.0, 'into': 2.0, 'bigger': 1.0, 'still': 2.0, 's': 1.0, 't': 4.0, 'haven': 1.0, 'city': 1.0, 'initially': 1.0, 'placement': 1.0, 'don': 2.0, 'work': 1.0, 'over': 3.0, 'floppy': 1.0, 'heavier': 1.0, 'cover': 2.0, 'froggy': 1.0, 'up': 1.0, 'inwards': 1.0, 'face': 1.0, 'born': 1.0, 've': 1.0, 'little': 1.0, 'very': 1.0, 'she': 6.0, 'it': 10.0, 'about': 2.0, 'faces': 1.0, 'supports': 1.0, 'in': 2.0, 'since': 1.0, 'style': 1.0, 'those': 1.0, 'not': 1.0, 'when': 3.0, 'steps': 1.0, 'daughter': 1.0, 'figure': 1.0, 'now': 2.0, 'used': 1.0, 'friendly': 1.0, 'lbs': 1.0, 'was': 3.0, 'had': 1.0, 'and': 5.0, 'tucked': 1.0, 'started': 2.0, 'carrier': 5.0, 'old': 1.0, 'i': 8.0, '4': 2.0, 'get': 1.0, 'legs': 4.0, 'months': 1.0, 'for': 3.0, 'love': 1.0, 'using': 1.0, 'straddle': 1.0, 'with': 2.0, 'hip': 1.0, 'this': 3.0, '8': 1.0, 'at': 2.0, 'is': 5.0, 'but': 3.0, 'so': 1.0, 'can': 2.0, 'me': 1.0, 'my': 2.0, 'peek': 1.0, 'inward': 1.0, 'are': 2.0, 'cutting': 1.0, 'out': 5.0, 'the': 9.0, 'of': 1.0, 'leg': 2.0, 'that': 4.0, 'concerned': 1.0, 'hips': 2.0, 'rated': 1.0, 'knees': 1.0, 'would': 1.0, 'weeks': 1.0, 'properly': 1.0, 'from': 1.0, 'dangle': 1.0, 'cut': 1.0, 'they': 1.0, 'same': 1.0, 'proper': 1.0, 'height': 1.0, 'as': 3.0, 'to': 3.0, 'all': 1.0, 'head': 2.0, 'sun': 1.0, 'go': 1.0, 'protects': 1.0, 'lets': 1.0, 'also': 1.0, 'put': 1.0, 'needs': 1.0, 'time': 1.0, 'nap': 1.0, 'her': 14.0, 'use': 1.0, 'how': 2.0, 'stroller': 1.0, 'tricky': 1.0}
Word element => {'penny': 1.0, 'saddest': 1.0, 'will': 1.0, 'feeling': 1.0, 'without': 1.0, 'periods': 1.0, 'gets': 1.0, 'pik': 1.0, 'asks': 1.0, 'primarily': 1.0, 'immediately': 1.0, 'calms': 1.0, 'excited': 1.0, 'solution': 1.0, '2013': 1.0, 'ago': 1.0, 'years': 1.0, 'few': 1.0, 'regret': 1.0, 'only': 1.0, 'loose': 1.0, 'child': 1.0, 'kinds': 1.0, 'up': 1.0, 'roll': 1.0, 'them': 1.0, 'elastic': 1.0, 'time': 2.0, 'first': 2.0, 'pictures': 1.0, 'someday': 1.0, 'there': 1.0, 'sure': 1.0, 'instructions': 1.0, 'dream': 1.0, 'straps': 3.0, 'padded': 1.0, 'important': 1.0, 'breathe': 1.0, 'canvas': 1.0, 'brushed': 1.0, 'would': 1.0, 'summer': 1.0, 'strain': 2.0, 'neutral': 1.0, 'very': 7.0, 'at': 3.0, 'whenever': 1.0, 'from': 2.0, 'black': 2.0, 'didn': 2.0, 'ordered': 1.0, 'whitney': 1.0, 'helps': 2.0, 'distribute': 1.0, 'reference': 1.0, 'brief': 1.0, 'buy': 2.0, 'gear': 1.0, 'day': 1.0, 'please': 1.0, 'use': 4.0, 'has': 1.0, 'anyway': 2.0, 'gender': 1.0, 'success': 1.0, 'you': 3.0, 'weekends': 1.0, 'loud': 1.0, 'your': 2.0, 'home': 1.0, 'am': 4.0, 'put': 1.0, 'strap': 1.0, 'skin': 1.0, 'myself': 1.0, 'the': 25.0, 'doing': 1.0, 'every': 1.0, 'print': 1.0, 'any': 1.0, 'pretty': 1.0, 'com': 1.0, 'but': 1.0, 'couldn': 1.0, 'about': 1.0, 'lot': 2.0, 'huge': 1.0, 'frogmama': 1.0, 'love': 1.0, 'far': 1.0, 'with': 10.0, 'ergo': 1.0, 'transfer': 1.0, 'month': 1.0, 'be': 5.0, 'it': 10.0, 'wear': 2.0, 'negative': 1.0, 'shoulders': 2.0, 'this': 9.0, 'research': 1.0, 'correctly': 1.0, '15lb': 1.0, 'excess': 1.0, 'positions': 1.0, 'another': 1.0, 'trying': 2.0, 'me': 1.0, 'environment': 1.0, 'simple': 1.0, 'i': 21.0, 'wants': 1.0, 'well': 1.0, 'seems': 2.0, 'off': 1.0, '25lbs': 1.0, 'big': 1.0, 'was': 5.0, 'ergonomic': 1.0, 'bulky': 1.0, 'comfortable': 2.0, 'item': 1.0, 'afraid': 1.0, 'actually': 2.0, 'for': 9.0, 'back': 3.0, 'carrier': 5.0, 'killing': 1.0, 'anything': 1.0, 'soft': 1.0, 'fussy': 1.0, 'hot': 1.0, 'have': 4.0, 'he': 8.0, 'him': 5.0, 'cooperative': 1.0, 'in': 4.0, 'air': 1.0, 'now': 4.0, 'arms': 1.0, 'able': 1.0, 'get': 2.0, 'update': 1.0, 'felt': 1.0, 'months': 2.0, 'or': 1.0, 'almost': 1.0, 'done': 1.0, 'carried': 1.0, 'make': 1.0, 'she': 1.0, 'need': 2.0, 'also': 4.0, 'is': 9.0, 'can': 2.0, 'so': 5.0, 'included': 1.0, 'nap': 1.0, 'a': 14.0, 't': 8.0, 'belt': 3.0, 'cost': 1.0, 'along': 1.0, 'do': 2.0, 'much': 3.0, 'though': 1.0, 'by': 1.0, 'after': 2.0, 'sensitive': 1.0, 'an': 1.0, 'other': 1.0, 'optional': 1.0, '20': 1.0, 'way': 1.0, 'all': 3.0, 'tried': 1.0, 'and': 23.0, 'just': 3.0, 'which': 2.0, 'stay': 2.0, 'site': 2.0, 'not': 2.0, 'been': 2.0, 'amazon': 1.0, 'that': 3.0, 'because': 1.0, 'when': 2.0, 'on': 4.0, 'may': 1.0, 'facing': 1.0, 'through': 3.0, '5': 2.0, 'got': 2.0, 'price': 1.0, 'bigger': 1.0, 'support': 3.0, 'no': 2.0, 'extended': 2.0, 'investment': 1.0, 'additional': 2.0, 'several': 1.0, 'used': 2.0, 'backorder': 1.0, 'hip': 1.0, 'away': 1.0, 'carry': 5.0, 'front': 2.0, 'great': 3.0, 'walked': 1.0, 'my': 11.0, 'are': 4.0, 'worth': 1.0, 'order': 1.0, '4': 2.0, 'of': 4.0, 'old': 2.0, 'as': 3.0, 'heavy': 1.0, 'bought': 2.0, 'better': 1.0, 'recent': 1.0, 'loves': 1.0, 'note': 1.0, 'family': 1.0, 'wore': 1.0, 'too': 2.0, 'weight': 2.0, 'part': 1.0, 'baby': 3.0, 'ease': 1.0, 'hours': 1.0, 'tiredness': 1.0, 'gathering': 1.0, 'bjorn': 1.0, 'goes': 1.0, 'during': 1.0, 'out': 3.0, 'getting': 1.0, 'hips': 1.0, 'instead': 1.0, 'took': 1.0, 'around': 2.0, 'visiting': 1.0, 'while': 1.0, 've': 2.0, 'everyone': 1.0, 'once': 1.0, 'both': 1.0, 'son': 3.0, 'mom': 1.0, 'little': 1.0, 'tired': 1.0, 's': 2.0, 'to': 15.0, 'right': 1.0, 'reading': 1.0, 'll': 1.0, 'we': 3.0, 'isn': 2.0, 'still': 1.0, '130lbs': 1.0, 'don': 2.0, 'easy': 1.0, 'want': 1.0, 'perfect': 1.0, 'more': 1.0}
Word element => {'gets': 1.0, 'lower': 1.0, 'waist': 1.0, 'hubby': 1.0, 'waistlines': 1.0, 'con': 1.0, 'due': 1.0, 'correctly': 1.0, 'probably': 1.0, 'control': 1.0, 'against': 1.0, 'better': 1.0, 'until': 1.0, 'much': 1.0, 'very': 1.0, 'supported': 1.0, 'well': 1.0, 'head': 2.0, 'fit': 1.0, 'big': 1.0, 'error': 1.0, 'maybe': 1.0, 'newborn': 1.0, 'awkward': 2.0, 'trying': 1.0, 'pull': 1.0, 'body': 1.0, 'may': 1.0, 'close': 1.0, 'tighten': 2.0, 'chest': 2.0, 'enough': 2.0, 'high': 2.0, 'quite': 2.0, 'putting': 1.0, 'weren': 1.0, 'think': 1.0, 'looking': 1.0, 'loosely': 1.0, 'beginning': 1.0, 'should': 2.0, 'looser': 1.0, 'little': 4.0, 'first': 1.0, 'get': 2.0, 'help': 1.0, 'definitely': 1.0, 'curve': 1.0, 'trouble': 1.0, 'learning': 1.0, 'than': 3.0, 'bit': 1.0, 'takes': 1.0, 'low': 1.0, 'counter': 1.0, 'had': 4.0, 'action': 1.0, 'used': 5.0, 'sweatshirt': 1.0, 'has': 1.0, 'while': 1.0, 'carry': 9.0, 'carrying': 2.0, 'great': 2.0, 'some': 2.0, 'inside': 1.0, 'never': 1.0, 'be': 3.0, 'it': 20.0, 'inward': 1.0, 'useful': 3.0, 'position': 1.0, 'interested': 1.0, 'carriers': 1.0, 'dynamic': 1.0, '1': 3.0, 'since': 1.0, 'this': 5.0, 'because': 3.0, 'that': 2.0, 'times': 1.0, 'few': 1.0, 'fall': 1.0, 'wasn': 2.0, 'like': 5.0, 'really': 3.0, 'overall': 1.0, 'drawbacks': 1.0, 'away': 1.0, 'allows': 1.0, 'width': 1.0, 'other': 1.0, 'all': 1.0, 'an': 2.0, 'are': 2.0, 'my': 6.0, 'cooking': 1.0, 'me': 3.0, 'hood': 2.0, 'looks': 1.0, 'felt': 2.0, 'months': 4.0, 'am': 1.0, 'lbs': 3.0, 'was': 3.0, 'those': 1.0, '110': 1.0, 'about': 2.0, 'hold': 1.0, 'today': 1.0, 'on': 9.0, 'disneyland': 2.0, 'tip': 1.0, 'born': 1.0, 'have': 6.0, '4': 5.0, 'i': 10.0, 'of': 8.0, 'old': 1.0, 'see': 1.0, 'when': 2.0, 'weigh': 1.0, 'pushed': 1.0, 'to': 19.0, 'boning': 1.0, 'stars': 1.0, 'for': 9.0, 'retrospect': 1.0, 'needed': 1.0, 'son': 1.0, 'height': 1.0, 'flat': 1.0, 'him': 7.0, 'he': 11.0, 'carrier': 2.0, 'recommended': 1.0, 'couple': 2.0, 'mostly': 1.0, 'viewing': 1.0, 'essentially': 1.0, 'feel': 1.0, 'any': 1.0, 'the': 19.0, 'experience': 1.0, 'comfortable': 3.0, 'so': 4.0, 'continue': 1.0, 'use': 2.0, 'at': 5.0, 'can': 2.0, 'is': 7.0, 'getting': 1.0, '13': 1.0, 'limit': 1.0, 'positions': 1.0, 'anecdotes': 1.0, 'middle': 1.0, 'we': 8.0, 'ago': 1.0, 't': 9.0, 'belt': 2.0, 'leaning': 1.0, 'a': 16.0, 'different': 1.0, 'review': 1.0, 'solely': 1.0, 'in': 8.0, 'based': 1.0, 'good': 3.0, 'stay': 1.0, 'super': 1.0, 'still': 3.0, 'from': 2.0, 'here': 1.0, 'addition': 1.0, 'feels': 1.0, 'danger': 1.0, 'wider': 1.0, 'starting': 1.0, 'counterbalance': 1.0, 'complained': 1.0, 'always': 1.0, 'space': 2.0, 'chop': 1.0, 'stir': 1.0, 'pack': 2.0, 'stove': 1.0, 'back': 4.0, 'been': 2.0, 'went': 1.0, 'over': 1.0, '18': 2.0, 'but': 3.0, 'park': 1.0, 'naps': 1.0, 'rounder': 1.0, 'heavy': 1.0, 'sit': 1.0, 'as': 3.0, 'rather': 1.0, 'hip': 2.0, 'backpack': 3.0, 'with': 7.0, 'using': 2.0, 'situations': 1.0, 'didn': 4.0, 'need': 1.0, 'or': 1.0, 'extra': 1.0, 'forward': 1.0, 'weights': 1.0, 'user': 1.0, 'lot': 1.0, 'haven': 1.0, 'his': 3.0, 'shopping': 1.0, 'things': 1.0, 'you': 1.0, 'swing': 1.0, 'make': 2.0, 'sure': 1.0, 'out': 2.0, 'stopped': 1.0, 'one': 1.0, '5': 2.0, 'got': 1.0, 'heavier': 1.0, 'after': 1.0, 'though': 2.0, 'comfort': 2.0, 'gives': 1.0, 'too': 1.0, 'walk': 1.0, '3': 3.0, 'weight': 1.0, 'lb': 1.0, 'letting': 1.0, 'cloth': 1.0, '2': 2.0, 's': 3.0, 'grows': 1.0, 'kid': 1.0, 'continues': 1.0, 'higher': 1.0, 'slips': 1.0, 'now': 1.0, 'almost': 1.0, 'straps': 2.0, 'cons': 1.0, 'padding': 1.0, 'crossing': 1.0, 'ease': 1.0, 'baby': 5.0, 'what': 1.0, 'front': 5.0, 'folds': 2.0, 'each': 1.0, 'around': 3.0, 'least': 1.0, 'adequate': 1.0, 'up': 4.0, 'tried': 1.0, 'and': 19.0, 'just': 1.0, '8': 1.0, 'stuff': 1.0, 'support': 2.0, 'article': 1.0, 'clothing': 1.0, 'lap': 1.0, 'instead': 2.0, 'places': 1.0, '23': 1.0, 'there': 2.0, 'isn': 1.0, 'shape': 1.0, 'hard': 1.0}
Word element => {'have': 1.0, 'tei': 1.0, 'or': 1.0, 'of': 1.0, 'time': 1.0, 'same': 1.0, 'not': 1.0, 'easily': 1.0, 'this': 1.0, 'it': 1.0, 'moby': 1.0, 'in': 1.0, 'carrier': 1.0, 'need': 1.0, 'and': 1.0, 'the': 2.0, 't': 1.0, 'an': 1.0, 'to': 2.0, 'mei': 1.0, 'you': 1.0, 'course': 1.0, 'figure': 1.0, 'easy': 1.0, 'insert': 1.0, 'comfortable': 1.0, 'for': 1.0, 'year': 1.0, 'ha': 2.0, 'out': 1.0, 'newborns': 1.0, 'tried': 1.0, 'old': 1.0, 'i': 2.0, 'can': 1.0, 'prefer': 1.0, 'at': 1.0, 'super': 1.0, 'carry': 1.0, 'ergo': 1.0, 'my': 2.0, 'don': 1.0, 'baby': 1.0, 'three': 1.0}
Word element => {'straps': 1.0, 'safety': 1.0, 'excellent': 1.0, 'cover': 1.0, 'handy': 1.0, 'has': 1.0, 'washable': 1.0, 'bjorn': 1.0, 'baby': 1.0, 'head': 1.0, 'like': 1.0, 'very': 1.0, 'get': 1.0, 'ache': 1.0, 'it': 1.0, 'can': 1.0, 'machine': 1.0, 'secure': 1.0, 'quality': 1.0, 'naps': 1.0, 'back': 1.0, 'never': 1.0, 'for': 1.0, 'love': 1.0, 'comfortable': 1.0, 'how': 1.0, 'is': 1.0, 'adjustable': 1.0, 'carried': 1.0, 'in': 1.0, 'be': 1.0, 'variety': 1.0, 'a': 1.0, 'of': 1.0, 'ways': 1.0}
Word element => {'every': 1.0, 'size': 1.0, 'the': 1.0, 'change': 1.0, 'and': 1.0, 'be': 1.0, 'should': 2.0, 'marathon': 2.0, 'about': 1.0, 'information': 1.0, 'cover': 1.0, 'not': 2.0, 'this': 1.0, 'fit': 1.0, '2009': 1.0, 'with': 1.0, 'year': 1.0, 'for': 1.0, 'does': 1.0, 'britax': 3.0, 'seat': 1.0, 'no': 1.0}
Word element => {'seat': 1.0, 'to': 1.0, 'comes': 1.0, 'safety': 1.0, 'when': 1.0, 'out': 1.0, 'no': 1.0, 'protection': 1.0, 'and': 1.0, 'seats': 1.0, 'it': 1.0, 'with': 1.0, 'only': 1.0, 'this': 1.0, 'qualit': 1.0, 'impact': 1.0, 'is': 1.0, 'side': 1.0, 'doubt': 1.0, 'one': 1.0, 'great': 1.0, 'the': 1.0, 'trust': 1.0, 'safest': 1.0, 'car': 2.0, 'of': 1.0, 'britax': 1.0, 'there': 1.0, 'we': 1.0}
Word element => {'perfect': 1.0, 'works': 1.0, 'britax': 1.0, 'agile': 1.0, 'same': 1.0, 'its': 1.0, 'brand': 1.0, 'the': 5.0, 'that': 1.0, 'it': 2.0, 'everything': 1.0, 'b': 1.0, 'like': 2.0, 'about': 1.0, 'i': 3.0, 'good': 1.0, 'sleeping': 1.0, 'is': 1.0, 'looks': 1.0, 'a': 1.0, 'bag': 1.0, 'fabric': 1.0, 'have': 1.0, 'and': 1.0, 'matching': 1.0, 'love': 1.0, 'for': 1.0, 'stroller': 2.0}
Word element => {'able': 1.0, 'not': 1.0, 'feet': 1.0, 'of': 1.0, 'bottom': 1.0, 'down': 1.0, 'roll': 1.0, 'gets': 1.0, 'possible': 1.0, 'get': 1.0, 'open': 1.0, 'little': 1.0, 'very': 2.0, 'belts': 1.0, 'but': 1.0, 'can': 1.0, 'shoulder': 1.0, 'lap': 1.0, 'clips': 1.0, 'agile': 1.0, 'tight': 1.0, 'b': 1.0, 'are': 1.0, 'britax': 1.0, 'knows': 1.0, 'need': 1.0, 'meet': 1.0, 'don': 1.0, 'removed': 1.0, 'un': 1.0, 'piece': 2.0, 'then': 1.0, 'through': 1.0, 'deal': 1.0, 'the': 13.0, 'clipping': 1.0, 'holes': 1.0, 'exactly': 1.0, 'way': 1.0, 'into': 1.0, 'that': 2.0, 'what': 1.0, 'close': 1.0, 'looking': 1.0, 'you': 1.0, 'when': 2.0, 'just': 1.0, 'by': 1.0, 'i': 4.0, 'thing': 1.0, 'threading': 1.0, 'anymore': 1.0, 'was': 1.0, 'as': 2.0, 'to': 4.0, 'other': 1.0, 'than': 1.0, 'big': 1.0, '1': 1.0, 'tuck': 1.0, 'and': 7.0, 'a': 2.0, 't': 2.0, 'could': 1.0, 'where': 1.0, 'for': 1.0, 'it': 3.0, 'do': 1.0, 'much': 1.0, 'only': 1.0, 'pain': 1.0, 'wish': 1.0, 'this': 2.0, 'guy': 1.0, 'on': 1.0, 'put': 1.0, 'stroller': 1.0, 'unzip': 1.0, 'top': 2.0, 'back': 1.0, 'off': 1.0, 'around': 1.0, 'is': 1.0, 'buckles': 1.0, 'them': 1.0, 'in': 1.0, 'be': 3.0, 'anyone': 1.0, 'bigger': 1.0, 'who': 1.0, 'won': 1.0, 'has': 1.0}
Word element => {'hassle': 1.0, 'even': 1.0, 'purchase': 1.0, 'quality': 1.0, 'great': 2.0, 'added': 1.0, 'britax': 1.0, 'are': 1.0, 'side': 1.0, 'all': 1.0, 'to': 2.0, 'since': 1.0, 'not': 1.0, 'just': 1.0, 'a': 1.0, 'might': 1.0, 'pain': 1.0, 'this': 1.0, 'remove': 1.0, 'it': 1.0, 'muff': 3.0, 'otherwise': 1.0, 'i': 3.0, 'zippers': 1.0, 'spring': 1.0, 'day': 1.0, '2': 1.0, 'but': 1.0, 'the': 10.0, 'replace': 1.0, 'rethread': 1.0, 'need': 1.0, 'like': 2.0, 'during': 1.0, 'and': 6.0, 'one': 1.0, 'again': 1.0, 'you': 2.0, 'when': 1.0, 'have': 1.0, 'take': 1.0, 'for': 2.0, 'grooves': 1.0, 'each': 1.0, 'would': 2.0, 'if': 1.0, 'apart': 1.0, 'thread': 1.0, 'slide': 1.0, 'stuff': 1.0, 'think': 1.0, 'with': 1.0, 'slots': 1.0, 'were': 1.0, 'next': 1.0, 'totally': 1.0, 'that': 1.0, 'easier': 1.0, 'is': 1.0, 'fall': 1.0, 'around': 1.0, 'be': 1.0, 'its': 1.0, 'harness': 2.0, 'much': 1.0}
Word element => {'replace': 1.0, 'it': 2.0, 'this': 2.0, 'with': 1.0, 's': 1.0, 'a': 2.0, 'phil': 1.0, 'muff': 2.0, 'i': 3.0, 'buy': 1.0, 'material': 2.0, 'inner': 1.0, 'for': 1.0, 'what': 1.0, 'suggest': 1.0, 'part': 1.0, 'works': 1.0, 'is': 2.0, 'on': 2.0, 'britax': 2.0, 'of': 2.0, 'b': 2.0, 'my': 1.0, 'the': 8.0, 'such': 1.0, 'stiff': 1.0, 'warm': 1.0, 'bought': 2.0, 'one': 1.0, 'uncomfortable': 1.0, 'muffs': 1.0, 'agile': 2.0, 'at': 1.0, 'to': 1.0, 'outside': 1.0, 'as': 2.0, 'all': 1.0, 'cozy': 2.0, 'would': 1.0, 'that': 1.0, 'same': 1.0, 'want': 1.0, 'if': 1.0, 'you': 2.0, 'bag': 1.0, 'not': 1.0, 'style': 1.0, 'and': 1.0, 'ted': 1.0, 'sleeping': 1.0, 'which': 1.0}
Word element => {'two': 2.0, 'have': 1.0, 'bag': 1.0, 'britax': 2.0, 'the': 1.0, 'great': 2.0, 'you': 2.0, 'i': 2.0, 'buy': 1.0, 'doing': 1.0, 'are': 1.0, 'if': 1.0, 'strollers': 1.0, 'and': 1.0, 'very': 1.0, 'm': 1.0, 'my': 1.0, 'happy': 1.0, 'stuff': 1.0, 'is': 1.0, 'models': 1.0, 'this': 1.0, 'with': 1.0, 'purchases': 1.0, 'for': 1.0}
Word element => {'clothes': 1.0, 'winter': 1.0, 'wearing': 1.0, 'if': 1.0, 'little': 1.0, 'still': 1.0, 'although': 1.0, 'better': 1.0, 'insert': 1.0, 'body': 1.0, 'like': 1.0, 'summer': 1.0, 'help': 1.0, 'was': 1.0, 'him': 1.0, 'thicker': 1.0, 'infant': 1.0, 'purpose': 1.0, 'pound': 1.0, 'big': 1.0, 'really': 2.0, 'newborn': 1.0, 'hoping': 1.0, 'in': 2.0, 'it': 2.0, 'have': 1.0, '8': 1.0, 'the': 3.0, '70g': 1.0, 'that': 1.0, 'to': 1.0, 'our': 1.0, 'an': 2.0, 'i': 3.0, 'are': 1.0, 'pavilion': 1.0, 'britax': 1.0, 'seems': 1.0, 'serve': 1.0, 'this': 1.0, 'found': 1.0, 'straps': 1.0, 'child': 1.0, 'made': 1.0, 'they': 1.0, 'akward': 1.0, 'for': 1.0, 'opinion': 1.0, 'fit': 1.0, 'would': 1.0, 'position': 1.0, 'shoulder': 1.0, 'and': 2.0, 'too': 1.0, 'put': 1.0, '3': 1.0, 'on': 1.0, 'didn': 1.0, 't': 1.0, 'we': 1.0, 'a': 2.0, 'fits': 1.0, 'tight': 2.0, 'my': 1.0}
Word element => {'understand': 1.0, 'to': 1.0, 'directions': 1.0, 'easy': 1.0, 'far': 1.0, 'so': 1.0, 'were': 1.0, 'it': 1.0, 'from': 1.0, 've': 1.0, 'been': 1.0, 'using': 1.0, 'this': 1.0, 'problems': 1.0, 'for': 1.0, 'now': 1.0, 'we': 1.0, 'weeks': 1.0, '3': 1.0, 'and': 1.0, 'no': 1.0}
Word element => {'the': 2.0, 'infants': 1.0, 'didn': 1.0, 'this': 1.0, 'into': 2.0, 'well': 1.0, 'needed': 1.0, 'easy': 2.0, 'it': 3.0, 'she': 1.0, 'do': 1.0, 'and': 1.0, 'car': 3.0, 'for': 2.0, 'baby': 1.0, 'straight': 2.0, 'britax': 2.0, 'of': 1.0, 'when': 1.0, 'gets': 1.0, 'seats': 1.0, 'bucket': 1.0, 'big': 1.0, 'must': 1.0, 'thing': 1.0, 'was': 2.0, 'our': 2.0, 'seat': 2.0, 'as': 2.0, 'to': 2.0, 'followed': 1.0, 'need': 1.0, 'instructions': 1.0, 'on': 1.0, 'fast': 1.0, 'insert': 1.0, 'enough': 1.0, 'll': 1.0, 'be': 1.0, 'take': 1.0, 'newborn': 1.0, 'out': 1.0, 't': 1.0, 'a': 2.0, 'we': 2.0, 'going': 2.0, 's': 1.0, 'large': 1.0}
Word element => {'guess': 1.0, 'wastefulness': 1.0, 'star': 1.0, 'minus': 1.0, 'use': 1.0, 'who': 1.0, 'else': 1.0, 'anyone': 1.0, 'know': 1.0, 'until': 1.0, 'one': 1.0, 'months': 1.0, 'she': 1.0, 'it': 8.0, 'only': 1.0, 'this': 1.0, 'with': 1.0, 'used': 1.0, 'specific': 1.0, 'her': 2.0, 'however': 1.0, 'after': 1.0, 'so': 2.0, 'just': 1.0, 'out': 1.0, 'but': 1.0, 'more': 1.0, 'insert': 1.0, 'for': 2.0, 'actually': 1.0, 'don': 1.0, 'anyway': 1.0, 'in': 2.0, 'pretty': 1.0, 'buckle': 1.0, 'helped': 1.0, 'britax': 2.0, 'seat': 2.0, 'to': 4.0, 'was': 1.0, 'could': 1.0, 't': 1.0, 's': 1.0, 'we': 3.0, 'weighed': 1.0, 'go': 1.0, 'throw': 1.0, 'the': 1.0, 'without': 1.0, 'comfortably': 1.0, 'easier': 1.0, 'that': 1.0, 'car': 1.0, 'infant': 1.0, 'removed': 1.0, 'enough': 1.0, 're': 1.0, 'done': 1.0, 'sit': 1.0, 'hate': 1.0, 'now': 1.0, 'away': 1.0, 'two': 1.0, 'i': 3.0}
Word element => {'install': 1.0, 'to': 1.0, 'looking': 1.0, 'nice': 1.0, 'easy': 1.0, 'perfect': 1.0, 'one': 1.0, 'i': 1.0, 'very': 2.0, 'for': 1.0, 'macclaren': 1.0, 'are': 1.0, 'seen': 1.0, 'stroler': 1.0, 'is': 1.0, 'others': 1.0, 'this': 1.0, 'have': 1.0, 'bulky': 1.0}
Word element => {'have': 1.0, 'which': 1.0, 'strollers': 1.0, 'out': 1.0, 'choices': 1.0, 'few': 1.0, 'are': 1.0, 'do': 1.0, 'considering': 1.0, 'munchkin': 1.0, 'nicely': 1.0, 'the': 2.0, 'godsend': 1.0, 'simple': 1.0, 'other': 1.0, 'it': 5.0, 'models': 1.0, 'this': 1.0, 'holder': 2.0, 'others': 1.0, 'cup': 2.0, 'volo': 1.0, 'tubing': 3.0, 'maclarens': 1.0, 'and': 3.0, 'my': 1.0, 'fits': 2.0, 'stroller': 1.0, 'cupholders': 1.0, 'will': 2.0, 'work': 1.0, 'a': 1.0, 'is': 2.0, 'rear': 1.0, 'on': 2.0, 'maclaren': 5.0, 'valcobaby': 1.0, 'techno': 2.0, 'not': 4.0, 'xt': 2.0, 'round': 1.0, 'any': 1.0, 'as': 3.0, 'all': 1.0, 'triumph': 1.0, 'squre': 1.0, 'quest': 1.0, 'sure': 1.0, 'bulky': 1.0, 'about': 1.0, 'there': 2.0, 'xlr': 2.0, 'has': 1.0, 'if': 1.0, 'same': 1.0, 'then': 1.0, 'loved': 1.0, 'for': 2.0, 'fit': 1.0, 'i': 1.0}
Word element => {'bello': 1.0, 'varias': 1.0, 'duradero': 1.0, 'y': 2.0, 'un': 2.0, 'excelente': 1.0, 'envases': 1.0, 'que': 1.0, 'sirve': 1.0, 'mate': 1.0, 'comodo': 1.0, 'de': 3.0, 'tama': 1.0, 'ligero': 1.0, 'medidas': 1.0, 'ntilde': 1.0, 'acabado': 1.0, 'para': 1.0, 'o': 1.0}
Word element => {'highly': 1.0, 'over': 1.0, 'am': 1.0, 'after': 1.0, 'whatever': 1.0, 'but': 1.0, 'huge': 1.0, 'is': 1.0, 'minor': 1.0, 'logo': 1.0, 'shame': 1.0, 'good': 1.0, 'britax': 1.0, 'hacking': 1.0, 'about': 1.0, 'no': 1.0, 'plus': 1.0, 'perfectly': 1.0, 'square': 1.0, 'that': 3.0, 'a': 4.0, 'well': 1.0, 'recommend': 1.0, 'was': 1.0, 'to': 4.0, 'low': 1.0, 'high': 2.0, 'cup': 3.0, 'get': 1.0, 'model': 1.0, 'hopes': 1.0, 'ordered': 1.0, 'fyi': 1.0, 'on': 4.0, 'searching': 1.0, 'tubing': 1.0, 'desperate': 1.0, 'reviews': 1.0, 'i': 5.0, 'stating': 1.0, 'it': 1.0, 'based': 1.0, 'this': 3.0, 'works': 1.0, 'other': 1.0, 'holder': 3.0, 'from': 1.0, 'required': 1.0, 'shipping': 1.0, 'the': 5.0, 'us': 1.0, 'had': 1.0, 'maclarens': 1.0, 'ship': 1.0, 'uk': 1.0, 'decent': 1.0, 'so': 2.0, 'time': 1.0, 'have': 1.0, 'does': 1.0, 'maclaren': 2.0, 'techno': 1.0, 'moon': 1.0, 'detail': 1.0, 'if': 1.0, 'xt': 1.0, 'helps': 1.0, 'anyone': 1.0, 'in': 1.0, 'and': 2.0, 'my': 1.0, '2011': 1.0, 'fact': 1.0, 'for': 2.0, 'fit': 3.0}
Word element => {'is': 1.0, 'referring': 1.0, 'washer': 1.0, 'on': 1.0, 'cycle': 1.0, 'straps': 2.0, 'but': 1.0, 'easy': 1.0, 'twist': 1.0, 'tend': 1.0, 'to': 1.0, 'was': 1.0, 'no': 2.0, 'great': 1.0, 'adjustable': 1.0, 'behind': 1.0, 'the': 5.0, 'my': 1.0, 'this': 1.0, 'delicate': 1.0, 'like': 1.0, 'we': 2.0, 'get': 1.0, 'twisted': 1.0, 'son': 1.0, 'seat': 1.0, 'washing': 1.0, 'cover': 1.0, 'pretty': 1.0, 'love': 1.0, 'using': 1.0}
Word element => {'the': 1.0, 'like': 1.0, 'if': 1.0, 'of': 1.0, 'out': 1.0, 'our': 1.0, 'still': 1.0, 'may': 1.0, 'future': 1.0, 'a': 2.0, 'fine': 1.0, 'duggars': 1.0, 'kids': 1.0, 'too': 1.0, 'him': 2.0, 'son': 1.0, 'for': 4.0, 'it': 5.0, 'only': 1.0, 'any': 1.0, 're': 2.0, 'my': 1.0, 'bought': 1.0, 'fit': 1.0, 'we': 3.0, 'get': 1.0, 'and': 1.0, 'couple': 1.0, 'while': 1.0, 'weeks': 1.0, 'but': 2.0, 'small': 1.0, 'after': 1.0, 'was': 1.0, 'keeping': 1.0}
Word element => {'comfortably': 1.0, 'loved': 1.0, 'in': 1.0, 'him': 1.0, 'put': 1.0, 'i': 1.0, 'them': 1.0, 'hated': 1.0, 'and': 1.0, 'even': 1.0, 'up': 3.0, 'seats': 1.0, 'now': 1.0, 'to': 1.0, 'sit': 2.0, 'good': 1.0, 'loves': 1.0, 't': 1.0, 'as': 3.0, 'son': 1.0, 'my': 1.0, 'baby': 2.0, 'not': 1.0, 'seat': 1.0, 'it': 1.0, 'this': 2.0, 'he': 4.0, 'one': 1.0, 'yet': 1.0, 'love': 1.0, 'can': 2.0, 'though': 1.0, 'soon': 1.0, 'hold': 1.0, 'himself': 1.0, 'were': 1.0, 'that': 1.0, 'other': 1.0, 'we': 1.0, 'bought': 1.0}
Word element => {'i': 1.0, 'so': 1.0, 'it': 2.0, 'the': 2.0, 'is': 1.0, 'like': 2.0, 'very': 1.0, 'part': 1.0, 'pod': 1.0, 'supportive': 1.0, 'baby': 1.0, 'hard': 1.0, 'to': 1.0, 'put': 1.0, 'though': 1.0, 'in': 1.0, 'white': 1.0}
Word element => {'issue': 1.0, 'cover': 1.0, 'cloth': 1.0, 'if': 1.0, 'out': 1.0, 'sweating': 1.0, 'degrees': 1.0, 'evening': 1.0, 'would': 1.0, 'summer': 1.0, 'patio': 1.0, 'dining': 2.0, 'plastic': 1.0, 'any': 1.0, 'our': 2.0, 'chair': 2.0, 'to': 9.0, 'high': 1.0, 'enough': 1.0, 'big': 1.0, 'comfortable': 1.0, 'wasn': 1.0, 'but': 1.0, 'sitting': 1.0, 't': 2.0, 'a': 7.0, 'get': 1.0, 'months': 1.0, 'tether': 1.0, 'bought': 1.0, 'easy': 1.0, 'table': 1.0, 'willing': 1.0, 'which': 1.0, 'she': 3.0, 'it': 6.0, 'avoid': 1.0, 'daughter': 1.0, 'restaurant': 1.0, 'highchair': 1.0, 'seat': 4.0, 'in': 3.0, 'this': 3.0, 'restaurants': 1.0, 'i': 2.0, 'nice': 1.0, 'beneath': 1.0, 'two': 1.0, 'quite': 1.0, 'carrier': 1.0, 'be': 3.0, 'more': 1.0, 'the': 9.0, 'of': 2.0, 'longer': 1.0, 'attach': 2.0, 'depending': 1.0, 'example': 1.0, 'standard': 1.0, '90': 1.0, 'than': 1.0, 'wooden': 1.0, 'old': 1.0, 'had': 2.0, 'warm': 2.0, 'wanted': 1.0, 'was': 1.0, 'store': 1.0, 'waist': 1.0, 'doesn': 1.0, 'and': 2.0, 'is': 2.0, 'at': 2.0, 'space': 1.0, 'when': 1.0, 'sit': 1.0, 'entertained': 1.0, 'her': 5.0, 'negative': 1.0, 'infant': 1.0, 'car': 2.0, 'has': 1.0, 'action': 1.0, 'toy': 2.0, 'temperature': 1.0, 'very': 1.0, 'no': 1.0, 'supportive': 1.0, 'shape': 1.0, 'seems': 1.0, 'harness': 1.0, 'only': 1.0, 'or': 2.0, 'with': 1.0, 'part': 1.0, 'during': 1.0, 'wanting': 1.0, 'meal': 1.0, 'on': 4.0, 'much': 2.0, 'floor': 1.0, 'can': 1.0, 'so': 1.0, 'really': 1.0, 'we': 1.0, 'take': 1.0, '7': 1.0, 'up': 1.0, 'keep': 1.0, 'cargo': 1.0, 'that': 1.0, 'sometimes': 1.0, 'gets': 1.0, 'for': 4.0, 'ambient': 1.0}
Word element => {'laying': 1.0, 'straps': 1.0, 'safety': 1.0, 'there': 1.0, 'chair': 1.0, 'while': 1.0, 'like': 1.0, 'angle': 1.0, 'awkward': 1.0, 'will': 1.0, 'sticking': 2.0, 'again': 1.0, 'down': 1.0, 'unsightly': 1.0, 'press': 1.0, 'having': 1.0, 'end': 1.0, '12': 1.0, 'knees': 5.0, 'slide': 1.0, 'sometimes': 1.0, 'also': 1.0, 'would': 1.0, 'purchase': 1.0, 'but': 2.0, 'bit': 1.0, 'contoured': 1.0, 'were': 2.0, 'better': 1.0, 'might': 1.0, 'least': 1.0, 'hands': 1.0, 'or': 1.0, 'though': 1.0, 'possible': 1.0, 'way': 2.0, 'when': 2.0, 'sit': 1.0, 'and': 3.0, 'arms': 1.0, 'free': 1.0, 'feeding': 1.0, 'spin': 1.0, 'tray': 3.0, 'after': 1.0, 'it': 6.0, 'episodes': 1.0, 'reclining': 1.0, 'she': 8.0, 'baby': 2.0, 'bald': 1.0, 'another': 1.0, 'may': 1.0, 'often': 1.0, 'into': 1.0, 'non': 1.0, 'movement': 1.0, 'bebepod': 1.0, 'weighing': 1.0, 'this': 3.0, 'different': 1.0, 'before': 1.0, '5': 2.0, 'perhaps': 1.0, 'back': 4.0, '12lbs': 1.0, 'option': 1.0, 'did': 1.0, 'keep': 2.0, 'her': 12.0, 'use': 2.0, 'not': 2.0, 'in': 4.0, 'seat': 5.0, 'to': 13.0, 'easily': 1.0, 'because': 3.0, 'that': 6.0, 'for': 5.0, 'love': 1.0, 'at': 3.0, 'is': 7.0, 'around': 2.0, 'spit': 1.0, 'update': 1.0, 'on': 8.0, '3': 1.0, 'tummy': 1.0, 'now': 1.0, '22': 1.0, 'upright': 2.0, 'able': 3.0, 'over': 1.0, 'provides': 1.0, 'reduce': 1.0, 'the': 15.0, 'of': 2.0, 'knowing': 1.0, 'up': 7.0, '2013': 1.0, 'off': 1.0, 'seems': 1.0, 'own': 1.0, 'i': 6.0, 'head': 1.0, 'has': 1.0, 'used': 2.0, 'toy': 1.0, 'little': 3.0, 'spot': 1.0, 'if': 2.0, 'still': 2.0, 'enjoy': 1.0, 'growing': 1.0, 'slumped': 1.0, 'perspective': 1.0, 'more': 1.0, 'manipulate': 2.0, 'toys': 1.0, 'difficult': 1.0, 'position': 1.0, 'oz': 1.0, 'can': 2.0, 'so': 2.0, 'floor': 2.0, 'much': 1.0, 'wheel': 1.0, 'stuck': 1.0, 'last': 1.0, 'beginning': 1.0, 'thesassy': 1.0, 'developmental': 1.0, 'wonder': 1.0, 'suction': 1.0, 'toyon': 1.0, 'slides': 1.0, 'be': 5.0, 'theprince': 1.0, 'are': 2.0, 'lionheart': 1.0, 'upgrade': 2.0, 'trayshe': 1.0, 'get': 2.0, 'months': 2.0, 'too': 1.0, 'one': 1.0, 'was': 2.0, '2': 1.0, 'a': 6.0, 'small': 3.0, 'ending': 1.0, 'which': 1.0, 'side': 1.0}
Word element => {'happy': 1.0, 'are': 1.0, 'this': 1.0, 'weeks': 1.0, 'in': 1.0, 'think': 1.0, 'much': 1.0, 'up': 1.0, 'sit': 1.0, 'yet': 1.0, 'cannot': 1.0, 'because': 1.0, 'got': 1.0, 'use': 1.0, 'blue': 1.0, 'change': 1.0, 'but': 1.0, 'be': 1.0, 'was': 1.0, 'surprised': 1.0, 'ordered': 1.0, 'would': 1.0, 'something': 2.0, 'were': 1.0, 'had': 1.0, 'thought': 1.0, 'arrived': 1.0, 'purchase': 1.0, 'fits': 1.0, 'the': 4.0, 'is': 3.0, 'will': 2.0, 'item': 1.0, 'good': 1.0, 'that': 2.0, 'box': 1.0, 'too': 1.0, 'and': 3.0, 'get': 1.0, 'very': 2.0, 'with': 1.0, 'pink': 1.0, 'son': 1.0, 'when': 1.0, 'oh': 1.0, 'well': 2.0, 'we': 5.0, 'a': 2.0, 'have': 1.0, 'able': 1.0, 'used': 1.0, 'he': 2.0, 'few': 1.0, 'large': 1.0, 'three': 1.0, 'it': 2.0, 'month': 1.0, 'old': 1.0, 'to': 3.0, 'our': 1.0, 'seat': 1.0, 'not': 1.0, 'properly': 1.0, 'though': 1.0}
Word element => {'at': 1.0, 'started': 1.0, 'easier': 1.0, 'we': 1.0, 'high': 1.0, 'chair': 2.0, 'is': 1.0, 'time': 1.0, 'and': 1.0, 'every': 1.0, '7m': 1.0, 'have': 1.0, 'this': 2.0, 'way': 1.0, 'it': 1.0, 'bebepod': 1.0, 'but': 1.0, 'use': 1.0}
Word element => {'even': 1.0, 'kids': 1.0, 'this': 1.0, 'designed': 1.0, 'who': 1.0, 'people': 1.0, 'bits': 1.0, 'comes': 1.0, 'girl': 1.0, 'little': 2.0, 'have': 1.0, 'coming': 1.0, 'keeps': 1.0, 'out': 1.0, 'break': 1.0, 'not': 1.0, 'did': 2.0, 'second': 1.0, 'cheated': 1.0, 'really': 1.0, 'now': 1.0, 'garbage': 1.0, 'on': 2.0, 'back': 1.0, 'won': 2.0, 'up': 2.0, 'poking': 2.0, 'metal': 2.0, 'and': 2.0, 'plastic': 2.0, 'if': 1.0, 'feel': 1.0, 'great': 1.0, 'the': 6.0, 'squirms': 1.0, 'behind': 1.0, 'with': 1.0, 'first': 1.0, 'also': 1.0, 'high': 1.0, 'pieces': 1.0, 'good': 1.0, 'off': 3.0, 'leaving': 1.0, 'would': 1.0, 'be': 1.0, 'seatbelt': 1.0, 'it': 5.0, 'fell': 1.0, 'but': 1.0, 'can': 1.0, 'bumbo': 1.0, 'of': 2.0, 'where': 1.0, 'actually': 1.0, 'for': 2.0, 'tray': 1.0, 'bought': 1.0, 'one': 2.0, 'chair': 1.0, 'worked': 1.0, 'our': 2.0, 'to': 1.0, 'as': 1.0, 'from': 1.0, 'i': 1.0, 'two': 1.0, 'when': 1.0, 'idea': 1.0, 'twins': 1.0, 'round': 3.0, 'convert': 1.0, 'cap': 3.0, 'sharp': 1.0, 'go': 2.0, 't': 2.0, 's': 2.0, 'a': 4.0, 'we': 1.0, 'removed': 1.0, 'that': 1.0, 'babies': 1.0, 'box': 2.0, 'before': 1.0, 'wigglier': 1.0, 'use': 1.0}
Word element => {'overall': 1.0, 'would': 1.0, 'how': 1.0, 'sure': 1.0, 'snugly': 1.0, 'sits': 1.0, 'feeding': 1.0, 'comfy': 1.0, 'in': 1.0, 'itself': 1.0, 'floor': 1.0, 'dirty': 1.0, 'gotten': 1.0, 'baby': 2.0, 'them': 1.0, 'able': 1.0, 'seem': 1.0, 'like': 1.0, 'cannot': 1.0, 'bebepod': 1.0, 'my': 1.0, 'underneath': 1.0, 'secure': 1.0, 'pretty': 1.0, 'be': 1.0, 'liner': 1.0, 'useful': 1.0, 'are': 1.0, 'curves': 1.0, 'tray': 2.0, 'really': 2.0, 'the': 10.0, 'more': 1.0, 'is': 6.0, 'say': 1.0, '14': 1.0, 'does': 1.0, 'i': 5.0, 'about': 1.0, 'was': 1.0, 'excited': 1.0, 'remove': 1.0, 'useless': 1.0, 'it': 6.0, 'from': 1.0, 'stick': 1.0, 'hard': 1.0, 'larger': 1.0, 'chair': 5.0, 'not': 2.0, 'stay': 1.0, 'this': 1.0, 'perfect': 1.0, 'getting': 2.0, 'and': 3.0, 'but': 2.0, 'can': 1.0, 'time': 1.0, 'so': 3.0, 'away': 1.0, 'thin': 1.0, 'reason': 1.0, 'never': 1.0, 'stayed': 1.0, 'white': 1.0, 'on': 3.0, 'threw': 1.0, 'piece': 1.0, 'have': 2.0, 't': 1.0, 'a': 3.0, 'seat': 1.0, 'as': 1.0, 'to': 6.0, 'actual': 1.0, 'center': 1.0, 'fit': 1.0, 'for': 1.0, 'setting': 1.0, 'some': 1.0, 'straps': 2.0}
Word element => {'would': 1.0, 'use': 1.0, 'extremely': 1.0, 'a': 1.0, 'to': 2.0, 'on': 1.0, 'can': 1.0, 'has': 1.0, 'seat': 1.0, 'and': 1.0, 'chunky': 1.0, 'portable': 1.0, 'my': 1.0, 't': 1.0, 'chair': 1.0, 'far': 1.0, 'so': 3.0, 'legs': 1.0, 'i': 3.0, 'good': 1.0, 'hope': 1.0, 'recommend': 1.0, 'easy': 1.0, 'strap': 1.0, 'she': 1.0, 'doesn': 1.0, 'with': 1.0, 'this': 1.0, 'outgrow': 1.0, 'it': 2.0, 'daughter': 1.0, 'too': 1.0, 'some': 1.0, 'quickly': 1.0, 'like': 1.0, 'that': 1.0}
Word element => {'floor': 1.0, 'attach': 1.0, 'get': 1.0, 'round': 1.0, 'amused': 1.0, 'straight': 1.0, 'handle': 1.0, 'herself': 1.0, 'muscle': 1.0, 'not': 2.0, 'does': 1.0, 'slouched': 1.0, 'contoured': 1.0, 'is': 2.0, 'somewhat': 1.0, 'way': 1.0, 'from': 1.0, 'guess': 1.0, 'strength': 1.0, 'i': 1.0, 'in': 1.0, 'use': 2.0, 'high': 1.0, 'her': 2.0, 'before': 1.0, 'got': 1.0, 'even': 1.0, 'version': 1.0, 'hold': 1.0, 'body': 1.0, 'table': 1.0, 'can': 1.0, 'baby': 3.0, 'join': 1.0, 'for': 2.0, 'infant': 1.0, 'nice': 1.0, 'lets': 1.0, 'chair': 4.0, 'you': 1.0, 'when': 1.0, 'times': 1.0, 'to': 3.0, 'had': 1.0, 'now': 1.0, 'just': 1.0, 'by': 1.0, 'meal': 1.0, 'booster': 1.0, 'yet': 1.0, 'or': 1.0, 'let': 1.0, 'since': 1.0, 'at': 1.0, 'the': 7.0, 'this': 1.0, 'she': 4.0, 'month': 1.0, 'it': 4.0, 'impression': 1.0, 'that': 2.0, 'spit': 1.0, 'will': 1.0, 'have': 3.0, 'little': 1.0, 'very': 1.0, 'limited': 1.0, 'out': 1.0, 'fits': 1.0, 'of': 1.0, 'however': 1.0, 've': 1.0, 'up': 2.0, 'over': 1.0, 'we': 2.0, 'a': 3.0, 'and': 2.0, 'under': 1.0, 'still': 1.0, 'sometimes': 1.0}
Word element => {'highly': 1.0, 'would': 1.0, 'tub': 1.0, 'bath': 1.0, 'in': 1.0, 'use': 1.0, 'try': 1.0, 'are': 1.0, 'bathtime': 1.0, 'now': 1.0, 'recommend': 1.0, 'was': 1.0, 'huge': 1.0, 'has': 1.0, 'us': 1.0, 'i': 2.0, 'old': 1.0, 'child': 1.0, 'him': 2.0, 'product': 1.0, 'significant': 1.0, 'love': 1.0, 'for': 1.0, 'chair': 2.0, 'toys': 1.0, 'needs': 1.0, 'unsupported': 1.0, 'too': 1.0, 'and': 4.0, 'play': 1.0, 'this': 5.0, 'with': 4.0, 'how': 1.0, 'teach': 1.0, 'he': 2.0, 'have': 1.0, 'been': 1.0, 'special': 1.0, 'delays': 1.0, 'is': 2.0, 'struggle': 1.0, 'almost': 1.0, 'year': 1.0, 'gives': 1.0, 'our': 1.0, 'to': 4.0, 'as': 1.0, 'going': 1.0, 'a': 2.0, 'we': 2.0, 't': 1.0, 'the': 2.0, 'long': 1.0, 'down': 1.0, 'can': 1.0, 'but': 1.0, 'ability': 1.0, 'helping': 1.0, 'tired': 1.0, 'of': 1.0, 'sit': 3.0, 'always': 1.0, 'laying': 1.0}
Word element => {'the': 6.0, 'in': 1.0, 'is': 1.0, 'one': 1.0, 'tray': 1.0, 'plastic': 1.0, 'bigger': 1.0, 'hard': 1.0, 'come': 1.0, 'with': 1.0, 'not': 2.0, 'material': 1.0, 'thing': 1.0, 'have': 1.0, 'might': 1.0, 'a': 5.0, 'rubber': 1.0, 'like': 1.0, 'seat': 1.0, 'as': 2.0, 'bumbo': 3.0, 'good': 3.0, 'think': 2.0, 'or': 1.0, 'this': 3.0, 'soft': 1.0, 'belt': 1.0, 'has': 2.0, 'lasted': 1.0, 'us': 1.0, 'looks': 1.0, 'it': 3.0, 'month': 1.0, 'i': 3.0, 'two': 1.0, 'than': 2.0, 'does': 1.0, 'pretty': 1.0, 'better': 1.0, 'green': 1.0, 'and': 1.0, 'get': 1.0, 'its': 3.0, 'much': 1.0, 'value': 1.0, 'other': 1.0, 'picture': 1.0, 'got': 1.0}
Word element => {'clean': 1.0, 'old': 1.0, 'year': 1.0, 'now': 1.0, 'floor': 1.0, 'easy': 2.0, 'table': 1.0, 'for': 1.0, 'love': 1.0, 'comfortable': 1.0, 'along': 1.0, 'meals': 1.0, 'used': 2.0, 'set': 1.0, 'nearly': 1.0, 'up': 2.0, 'it': 4.0, 'this': 1.0, 'connecting': 1.0, 'is': 2.0, 'on': 1.0, '4': 1.0, 'one': 1.0, 'tray': 1.0, 'months': 1.0, 'also': 1.0, 'item': 1.0, 'dinner': 1.0, 'chair': 1.0, 'take': 2.0, 'infant': 1.0, 'off': 1.0, 'use': 1.0, 'from': 1.0, 'and': 4.0, 'too': 2.0, 'doesn': 1.0, 'a': 2.0, 'we': 2.0, 't': 1.0, 'much': 1.0, 'space': 1.0, 'to': 2.0, 'all': 1.0, 'as': 1.0, 'seat': 1.0, 'our': 2.0, 'very': 1.0, 'little': 1.0, 'in': 1.0, 'with': 1.0, 'onwards': 1.0}
Word element => {'very': 2.0, 'by': 1.0, 'enough': 1.0, 'gains': 1.0, 'come': 1.0, 'be': 1.0, 'clean': 1.0, 'extremely': 1.0, 'amazon': 1.0, 's': 3.0, 'sure': 1.0, '5': 1.0, 'appropriate': 1.0, 'age': 1.0, 'from': 1.0, 'mine': 1.0, 'brother': 1.0, 'big': 1.0, 'outside': 1.0, 'dinner': 1.0, 'here': 1.0, 'bc': 1.0, 'unlike': 1.0, 'onto': 1.0, 'would': 1.0, 'tight': 1.0, 'security': 1.0, 'you': 3.0, 'another': 1.0, 'extra': 2.0, 'room': 1.0, 'bulk': 1.0, 'there': 1.0, 'plus': 1.0, 'are': 1.0, 'diapers': 1.0, 'wears': 1.0, 'time': 1.0, 'child': 1.0, 'larger': 1.0, 'positive': 1.0, 'into': 1.0, 'onestepahead': 2.0, 'go': 3.0, 'this': 1.0, 'body': 1.0, 'as': 5.0, 'sale': 1.0, 'if': 3.0, 'still': 1.0, 'easy': 1.0, 'writing': 1.0, 'bit': 1.0, 'can': 4.0, 'so': 6.0, 'neck': 1.0, 'love': 1.0, 'yet': 1.0, 'or': 3.0, 'babies': 2.0, 'just': 1.0, 'seats': 1.0, 'seat': 2.0, 'm': 2.0, 'in': 2.0, 'rated': 1.0, 'regular': 1.0, 'plenty': 1.0, 'allows': 1.0, 'with': 4.0, 'it': 17.0, 'period': 1.0, 'month': 2.0, 'muscle': 1.0, 'control': 4.0, 'of': 2.0, 'longer': 1.0, 'the': 17.0, 'play': 1.0, 'about': 2.0, 'that': 4.0, 'because': 1.0, 'than': 2.0, 'read': 2.0, 'daughter': 3.0, 't': 1.0, 'fit': 1.0, 'my': 3.0, 'weight': 1.0, 'chair': 9.0, 'had': 2.0, 'was': 5.0, 'is': 4.0, 'at': 2.0, 'look': 1.0, 'll': 1.0, 'true': 1.0, 'table': 1.0, 'right': 1.0, 'to': 14.0, 'using': 1.0, 'light': 1.0, 'looking': 1.0, 'wants': 1.0, 'buy': 2.0, 'have': 2.0, 'imagine': 1.0, 'a': 12.0, 'small': 1.0, 'old': 2.0, 'bebepod': 1.0, 'i': 14.0, 'booster': 2.0, '4': 2.0, 'two': 1.0, 'one': 2.0, 'after': 1.0, 'tray': 2.0, 'toy': 1.0, 'decided': 3.0, 'most': 1.0, 'legs': 1.0, 'get': 1.0, 'months': 1.0, 'bumbo': 5.0, 'com': 2.0, 'but': 2.0, 'bought': 1.0, 'money': 1.0, 'pleased': 1.0, 'up': 3.0, 'her': 1.0, 'use': 2.0, 'anyway': 1.0, 'cheaper': 1.0, 'floor': 1.0, 'do': 1.0, 'much': 1.0, 'only': 1.0, 'anyone': 1.0, 'and': 16.0, 'around': 1.0, 'strap': 2.0, 'catalog': 1.0, 'shocked': 1.0, 'baby': 2.0, 'she': 2.0, 'many': 1.0, 'people': 1.0, 'sit': 4.0, 'when': 2.0, 'even': 1.0, 'cloth': 1.0, 'searched': 1.0, 'your': 1.0, 'online': 2.0, 'see': 2.0, 'our': 2.0, 'how': 2.0, 'sized': 1.0, 'charging': 1.0, 'watch': 1.0, 'through': 1.0, 'we': 2.0, 'then': 3.0, 'reviews': 2.0, 'recommend': 1.0, 'were': 2.0, 'us': 1.0, 'also': 1.0, 'mixed': 1.0, 'supportive': 1.0, 'no': 1.0, 'mail': 1.0, 'saying': 1.0, 'not': 3.0, 'herself': 1.0, 'separately': 2.0, 'flipping': 1.0, 'waste': 1.0, 'doesn': 1.0, 'waist': 1.0, 'everyone': 1.0, 'step': 1.0, 'came': 2.0, 'ahead': 2.0, 'while': 3.0, 'saw': 1.0, 'for': 9.0, '10': 1.0, 'on': 4.0}
Word element => {'chair': 1.0, 'feeding': 1.0, 'you': 1.0, 'use': 1.0, 'bored': 1.0, 'get': 1.0, 'they': 1.0, 'her': 2.0, 'friction': 1.0, 'i': 3.0, 'pjs': 1.0, 'would': 3.0, 'better': 1.0, 'type': 1.0, 'incase': 1.0, 'is': 1.0, 'tray': 1.0, 'and': 1.0, 'getting': 1.0, 'it': 3.0, 'parent': 1.0, 'with': 1.0, 'baby': 1.0, 'sturdier': 1.0, 'although': 1.0, 'can': 1.0, 'bumbo': 1.0, 'much': 2.0, 'this': 3.0, 'perfect': 2.0, 'in': 1.0, 'also': 1.0, 'than': 1.0, 'a': 2.0, 's': 1.0, 'go': 1.0, 'sit': 1.0, 'toys': 1.0, 'due': 1.0, 'the': 2.0, 'without': 1.0, 'pants': 1.0, 'pulling': 1.0, 'let': 1.0, 'or': 2.0, 'never': 1.0, 'footsie': 1.0, 'put': 1.0, 'on': 2.0, 'as': 1.0, 'seat': 2.0, 'to': 3.0, 'burn': 1.0, 'out': 1.0, 'recommend': 1.0, 'material': 1.0, 'every': 1.0, 'suggest': 1.0}
Word element => {'so': 1.0, 'did': 1.0, 'own': 1.0, 'on': 1.0, 'sit': 1.0, 'but': 1.0, 'fit': 2.0, 'seems': 1.0, 'this': 1.0, 'it': 3.0, 'job': 2.0, 'big': 1.0, 'a': 1.0, 'the': 2.0, 'my': 1.0, 'her': 1.0, 'does': 1.0, 'tight': 1.0, 'for': 1.0, 'like': 1.0, 'could': 1.0, 'up': 1.0, 'always': 1.0, 'fine': 1.0, 'daughter': 1.0, 'too': 1.0, 'by': 1.0, 'she': 2.0, 'time': 1.0, 'its': 1.0, 'was': 1.0}
Word element => {'space': 1.0, 'appreciate': 1.0, 've': 1.0, 'would': 1.0, 'size': 1.0, 'support': 1.0, 'blanket': 1.0, 'tuck': 1.0, 'bigger': 1.0, 'if': 1.0, '6': 1.0, 'just': 1.0, 'less': 1.0, 'annoyed': 1.0, 'anything': 1.0, 'about': 1.0, 'picky': 1.0, 'baby': 2.0, 'gets': 2.0, 'adjust': 1.0, 'probably': 1.0, 'll': 2.0, 'he': 7.0, 'has': 1.0, 'solution': 1.0, 'five': 1.0, 'bouncy': 1.0, 'convenient': 1.0, 'use': 1.0, 'only': 1.0, 'useless': 1.0, 'even': 1.0, 'instead': 1.0, 'chair': 3.0, 'thingy': 2.0, 'was': 3.0, 'cheaper': 1.0, 'pretty': 1.0, 'to': 1.0, 'as': 3.0, 'simpler': 1.0, 'simplifies': 1.0, 'with': 2.0, 'this': 5.0, 'him': 3.0, 'it': 7.0, 'so': 3.0, 'bit': 3.0, 'friends': 1.0, 'visiting': 1.0, 'chairs': 1.0, 'update': 1.0, 'on': 3.0, 'guy': 1.0, 'some': 1.0, 'these': 1.0, 'decided': 1.0, 'color': 1.0, 'been': 1.0, 'relaxed': 1.0, 'amazon': 1.0, 'mint': 1.0, 'after': 1.0, 'tray': 1.0, 'but': 6.0, 'of': 3.0, 'the': 8.0, 'and': 8.0, 'green': 3.0, 'we': 4.0, 'small': 1.0, 'a': 10.0, 's': 3.0, 'belt': 2.0, 't': 2.0, 'enjoyed': 1.0, 'out': 1.0, 'floor': 1.0, 'much': 3.0, 'fusses': 1.0, 'state': 1.0, 'sitting': 1.0, 'their': 1.0, 'convinced': 1.0, 'feeding': 5.0, 'came': 1.0, 'girl': 1.0, 'around': 2.0, 'his': 3.0, 'had': 1.0, 'since': 2.0, 'my': 2.0, 'may': 1.0, 'typically': 1.0, 'got': 1.0, 'are': 1.0, 'bothered': 1.0, 'at': 3.0, 'is': 2.0, 'considering': 1.0, 'more': 3.0, 'little': 3.0, 'minty': 1.0, 'nice': 1.0, 'really': 1.0, 'than': 3.0, 'i': 7.0, 'seat': 4.0, 'in': 7.0, 'm': 3.0, 'not': 4.0, 'fussy': 1.0, 'bright': 1.0, 'by': 1.0, 'that': 1.0, 'option': 1.0, 'spring': 1.0, 'sort': 1.0, 'quite': 2.0, 'thing': 1.0, 'think': 3.0, 'better': 2.0, 'definitely': 1.0, 'getting': 1.0, 'for': 3.0, 'extra': 1.0, 'minutes': 1.0, 'earlier': 1.0, '100': 1.0, 'months': 1.0, 'bumbo': 4.0, 'get': 1.0, 'legs': 1.0, 'too': 2.0, 'one': 3.0, 'held': 1.0, 'snugly': 1.0, 'aren': 1.0, 'they': 1.0, 'were': 1.0, 'made': 1.0, 'which': 2.0, 'be': 1.0, 'waist': 1.0, 'useful': 1.0, 'later': 1.0, 'isn': 1.0, 'now': 2.0, 'straps': 1.0}
Word element => {'broken': 1.0, 'newer': 1.0, 'about': 1.0, 'works': 1.0, 'without': 1.0, 'version': 1.0, 'has': 1.0, 'like': 1.0, 'angle': 1.0, 'we': 2.0, 'regular': 1.0, 'using': 2.0, 'wiggling': 1.0, 'use': 1.0, 'll': 1.0, 'much': 2.0, 'do': 1.0, 'put': 1.0, 'floor': 1.0, 'been': 1.0, 'that': 2.0, 'to': 7.0, '4': 1.0, 'and': 2.0, 'don': 1.0, 'child': 1.0, 'save': 1.0, 'months': 1.0, 'one': 2.0, 'support': 1.0, 'my': 5.0, 'learning': 1.0, 'great': 1.0, 'model': 1.0, 'bebepod': 2.0, 'have': 4.0, 'straps': 2.0, 'but': 2.0, 'back': 1.0, 'older': 2.0, 't': 1.0, 'twists': 1.0, 'now': 2.0, 'sister': 1.0, 'it': 3.0, 'this': 4.0, 'provides': 1.0, 'can': 1.0, 'so': 3.0, 'chair': 5.0, 'far': 1.0, 'think': 1.0, 'better': 1.0, 'worry': 1.0, 'out': 1.0, 'on': 2.0, 'update': 1.0, 'the': 11.0, 'of': 2.0, 'tray': 1.0, 'after': 1.0, 'was': 2.0, 'another': 1.0, 'trying': 1.0, 'show': 1.0, 'friend': 1.0, 'how': 1.0, 'position': 1.0, 'white': 1.0, 'up': 1.0, 'pommel': 1.0, 'done': 1.0, 'a': 4.0, 'slight': 1.0, 'off': 2.0, 'you': 1.0, 'times': 1.0, 'inserted': 1.0, 'planning': 1.0, 'piece': 1.0, 'with': 1.0, 'i': 8.0, 'broke': 2.0, 'even': 1.0, 'though': 1.0, 'baby': 2.0, 'many': 1.0, 'also': 1.0, 'in': 1.0, 'bucket': 1.0, 'is': 3.0, 'at': 1.0, 'daughter': 1.0, 'for': 1.0, 'decide': 1.0, 'sit': 1.0, 'when': 1.0, 'what': 1.0}
Word element => {'straps': 1.0, 'of': 1.0, 'almost': 1.0, 'easy': 1.0, 'because': 1.0, 'be': 2.0, 'ladder': 1.0, 'step': 1.0, 'out': 1.0, 'attach': 2.0, 'floor': 1.0, 'taking': 2.0, 'adjustment': 1.0, 'chair': 3.0, 'high': 1.0, 'huge': 1.0, 'didn': 1.0, 'easily': 1.0, 'times': 1.0, 'will': 1.0, 'also': 1.0, 'few': 2.0, 'away': 1.0, 'weeks': 1.0, 'any': 1.0, 'to': 4.0, 'all': 1.0, 'seat': 1.0, 'not': 1.0, 'this': 1.0, 'quick': 1.0, 'with': 2.0, 'first': 2.0, 'vintage': 1.0, 'the': 3.0, 'great': 1.0, 'my': 1.0, 'so': 1.0, 'time': 1.0, 'she': 2.0, 'it': 7.0, 'month': 1.0, 'can': 1.0, 'but': 1.0, '2': 1.0, 'sitting': 1.0, 'hated': 1.0, 'kitchen': 2.0, 'old': 1.0, 'tried': 1.0, 'tries': 1.0, 'restaurants': 1.0, '4': 1.0, 'i': 2.0, 'space': 1.0, 'at': 1.0, 'was': 1.0, 'tummy': 1.0, 'put': 1.0, '3': 1.0, 'on': 1.0, 'impressed': 1.0, 'and': 2.0, 'after': 1.0, 'want': 1.0, 'regularly': 1.0, 'small': 1.0, 't': 1.0, 'we': 2.0, 's': 3.0, 'a': 4.0, 'about': 1.0, 'using': 1.0, 'for': 1.0, 'over': 1.0, 'up': 2.0, 'better': 1.0, 'own': 1.0, 'her': 1.0}
Word element => {'months': 1.0, 'within': 1.0, 'out': 1.0, 'see': 1.0, 'of': 2.0, 'kind': 1.0, 'seems': 1.0, 'piece': 1.0, 'with': 1.0, 'dealing': 1.0, 'then': 1.0, 'appealing': 1.0, 'back': 1.0, 'sending': 1.0, 'my': 2.0, 'high': 1.0, 'and': 2.0, 'me': 1.0, 'chair': 2.0, 'few': 1.0, 'meal': 1.0, 'to': 1.0, 'hates': 1.0, 'growing': 1.0, 'feeding': 1.0, 'wood': 1.0, 'a': 3.0, 'it': 4.0, 'children': 1.0, 'this': 2.0, 'is': 3.0, 'more': 1.0, 'small': 1.0, 'have': 1.0, 'regular': 1.0, 'in': 3.0, 'daughter': 2.0, 'product': 1.0, 'for': 5.0, 'bebepod': 1.0, 'great': 1.0, 'comfortable': 2.0, 'i': 4.0, 'so': 1.0, 'india': 1.0, 'time': 1.0, 'much': 3.0, 'her': 1.0, 'easier': 1.0, 'baby': 1.0, 'recoomend': 1.0, 'sit': 1.0, 'cons': 1.0, 'white': 1.0, 'arrived': 1.0, 'the': 4.0, 'pro': 1.0, 'no': 1.0, 'assembly': 1.0, 'required': 1.0, 'sturdy': 1.0, 'cover': 1.0, 'highly': 1.0, 'fron': 1.0, 'broken': 2.0, 'less': 1.0, 'live': 1.0}
Word element => {'anchored': 1.0, 'keep': 1.0, 'tight': 1.0, 'nice': 1.0, 'used': 1.0, 'soft': 1.0, 'to': 1.0, 'its': 1.0, 'it': 1.0, 'hard': 1.0, 'little': 1.0, 'products': 1.0, 'have': 1.0, 'like': 1.0, 'and': 1.0, 'charis': 1.0, 'plastic': 1.0, 'them': 1.0, 'isnt': 1.0, 'straps': 1.0, 'some': 1.0, 'seat': 1.0, 'good': 1.0, 'of': 1.0, 'the': 2.0, 'a': 2.0, 'cushiony': 1.0, 'work': 1.0, 'on': 2.0, 'variety': 1.0, 'other': 1.0, 'we': 1.0}
Word element => {'loves': 1.0, 'convenient': 1.0, 'height': 1.0, 'a': 1.0, 'at': 1.0, 'put': 1.0, 'top': 1.0, 'counter': 1.0, 'on': 1.0, 'perfect': 1.0, 'very': 1.0, 'and': 1.0, 'she': 1.0, 'baby': 2.0, 'for': 2.0, 'comfortable': 1.0, 'sturdy': 1.0, 'seating': 1.0, 'it': 1.0, 'can': 1.0, 'to': 2.0, 'be': 1.0, 'used': 1.0}
Word element => {'really': 1.0, 'an': 1.0, 'pay': 1.0, 'm': 1.0, 'now': 1.0, 'out': 1.0, 'worked': 1.0, 'think': 1.0, 'the': 1.0, 'with': 2.0, 'had': 1.0, 'if': 1.0, 'toys': 1.0, 'or': 1.0, 'just': 2.0, 'not': 2.0, 'he': 1.0, 'this': 2.0, 'it': 4.0, 'that': 4.0, 'were': 1.0, 'hoping': 1.0, 'doesn': 1.0, 'unfortunately': 1.0, 'item': 1.0, 'adjusted': 1.0, 'holds': 1.0, 'more': 2.0, 'get': 1.0, 'and': 1.0, 'such': 1.0, 'some': 1.0, 'though': 1.0, 'help': 1.0, 'something': 1.0, 'position': 1.0, 'super': 1.0, 'would': 2.0, 'him': 1.0, 'little': 1.0, 'close': 1.0, 'for': 3.0, 'sit': 1.0, 'have': 3.0, 'up': 1.0, 'of': 1.0, 'like': 1.0, 'provide': 1.0, 'i': 3.0, 'there': 3.0, 'mean': 1.0, 'a': 1.0, 'going': 1.0, 't': 1.0, 'we': 2.0, 's': 1.0, 'do': 1.0, 'much': 3.0, 'anyways': 1.0, 'money': 1.0, 'sitting': 1.0, 'tray': 2.0, 'one': 1.0, 'entertainment': 1.0, 'our': 1.0, 'to': 6.0, 'as': 1.0, 'come': 2.0, 'move': 1.0, 'sort': 1.0, 'should': 1.0, 'better': 1.0, 'ledge': 1.0}
Word element => {'in': 1.0, 'staying': 1.0, 'on': 1.0, 'are': 1.0, 'up': 2.0, 'and': 1.0, 'to': 2.0, 'sitting': 1.0, 'a': 1.0, 'kids': 1.0, 'working': 1.0, 'start': 2.0, 'my': 1.0, 'good': 1.0, 'girls': 1.0, 'longer': 1.0, 'is': 1.0, 'for': 1.0, 'love': 1.0, 'this': 2.0, 'it': 1.0, 'your': 1.0, 'they': 1.0, 'twin': 1.0, 'been': 1.0, 'have': 1.0, 'able': 1.0, 'sit': 1.0, 'we': 1.0}
Word element => {'hurt': 1.0, 'off': 1.0, 'could': 1.0, 'revealing': 1.0, 'easily': 2.0, 'white': 1.0, 'center': 1.0, 'when': 1.0, 'on': 1.0, 'piece': 1.0, 'lbs': 1.0, 'uncomfortable': 1.0, 'pops': 1.0, 'constricted': 1.0, 'parts': 1.0, 'returning': 1.0, 'up': 1.0, 'and': 2.0, 'tried': 1.0, 'old': 1.0, '5': 1.0, 's': 1.0, 'fingers': 1.0, 'mo': 1.0, 'my': 1.0, 'item': 1.0, 'in': 1.0, 'for': 1.0, 'first': 1.0, 'looked': 1.0, '19': 1.0, 'it': 2.0, 'she': 3.0, 'very': 1.0, 'big': 1.0, 'about': 1.0, 'ended': 1.0, 'age': 1.0, 'her': 2.0}
Word element => {'over': 1.0, 'falling': 1.0, 'sturdy': 1.0, 'keeps': 1.0, 'it': 3.0, 'just': 1.0, 'but': 1.0, 'balance': 1.0, 's': 2.0, 'enough': 1.0, 'bought': 1.0, 'my': 1.0, 'this': 1.0, 'to': 2.0, 'up': 2.0, 'not': 1.0, 'hold': 2.0, 'bike': 1.0, 'son': 1.0, 'i': 1.0, 'prince': 1.0, 'lionheart': 1.0}
Word element => {'any': 1.0, 'other': 1.0, 'have': 1.0, 't': 1.0, 'park': 1.0, 'don': 1.0, 'really': 1.0, 'should': 1.0, 'the': 1.0, 'you': 1.0, 'i': 1.0, 'think': 1.0, 'without': 1.0, 'way': 1.0, 'it': 2.0, 'to': 1.0, 'although': 1.0, 'be': 1.0, 'included': 1.0, 'with': 1.0, 'bikes': 1.0}
Word element => {'does': 1.0, 'still': 1.0, 'it': 2.0, 'away': 1.0, 'consequently': 1.0, 'narrow': 1.0, 'balance': 1.0, 'other': 1.0, 'too': 1.0, 'and': 3.0, 'in': 4.0, 'pieces': 1.0, 'ours': 1.0, 'securely': 1.0, 'prince': 3.0, 'is': 4.0, 'we': 2.0, 'a': 2.0, 'sand': 1.0, 'do': 1.0, 'wheel': 2.0, 'their': 1.0, 'been': 1.0, 'that': 1.0, 'at': 1.0, 'three': 1.0, 'adore': 1.0, 'pretty': 1.0, 'of': 1.0, 'great': 1.0, 'big': 1.0, 'this': 2.0, 'bike': 4.0, 'have': 2.0, 'work': 1.0, 'most': 1.0, 'past': 1.0, 'pales': 1.0, 'lionheart': 3.0, 'had': 1.0, 'disappointment': 1.0, 'comparison': 1.0, 'which': 1.0, 'products': 2.0, 'fasten': 1.0, 'however': 1.0, 'favorite': 1.0, 'stand': 2.0, 'not': 2.0, 'our': 1.0, 'to': 4.0, 'together': 1.0, 'slot': 1.0, 'product': 1.0, 'supposed': 1.0, 'for': 2.0, 'fit': 2.0, 'the': 5.0, 'bikes': 1.0}
Word element => {'notice': 1.0, 'way': 1.0, 'no': 1.0, 'theres': 1.0, 'when': 1.0, 'they': 3.0, 'wood': 1.0, 'all': 1.0, 'scratches': 1.0, 'were': 2.0, 'and': 2.0, 'there': 1.0, 'of': 1.0, 'seat': 1.0, 'made': 1.0, 't': 1.0, 'great': 2.0, 'the': 4.0, 'material': 1.0, 'be': 1.0, 'looks': 1.0, 'item': 1.0, 'put': 1.0, 'but': 2.0, 'box': 2.0, 'blind': 1.0, 'unless': 1.0, 'seems': 1.0, 'perfect': 1.0, 'in': 3.0, 'was': 1.0, 'to': 1.0, 'had': 1.0, 'over': 1.0, 'condition': 1.0, 'it': 3.0, 'this': 1.0, 'bike': 1.0, 'a': 1.0, 'didn': 1.0, 'rip': 1.0}
Word element => {'book': 1.0, 'in': 1.0, 'old': 1.0, '3': 1.0, 'surviving': 1.0, 'weather': 1.0, 'hold': 1.0, 'how': 1.0, 'sure': 1.0, 'keep': 1.0, 'durable': 1.0, 'wood': 1.0, 'solid': 2.0, 'are': 1.0, 'tires': 1.0, 'superb': 1.0, 'quality': 1.0, 'hills': 1.0, 'up': 2.0, 'carry': 1.0, 'had': 1.0, 'would': 1.0, 've': 1.0, 'move': 1.0, 'if': 1.0, 'a': 8.0, 'take': 2.0, 'this': 2.0, 'year': 1.0, 'bike': 2.0, 'while': 1.0, 'from': 1.0, 'test': 1.0, 'gets': 1.0, 'very': 1.0, 'little': 2.0, 'it': 7.0, 'she': 2.0, 'though': 1.0, 'persist': 1.0, 'inside': 1.0, 'favorite': 2.0, 'now': 2.0, 'outside': 1.0, 'as': 2.0, 'to': 6.0, 'frame': 2.0, 'is': 4.0, 'soon': 1.0, 'and': 3.0, 'may': 1.0, 'my': 2.0, 'daughters': 1.0, 'did': 1.0, 'along': 1.0, 'simple': 1.0, 'thing': 1.0, 'the': 4.0, 'm': 1.0, 'tricycle': 1.0, 'days': 1.0, 'i': 3.0, 'become': 1.0, 'so': 2.0, 'but': 4.0, 'seems': 1.0, 'will': 1.0, 'times': 1.0, 'you': 1.0, 'quickly': 1.0, 'not': 2.0, 'glides': 1.0, 'few': 2.0, 'just': 1.0, 'heaver': 1.0, 'do': 2.0, 'much': 1.0, 'than': 1.0, 'balance': 1.0}
Word element => {'halo': 1.0, 'top': 1.0, 'from': 1.0, 'to': 1.0, 'product': 1.0, 'those': 1.0, 'much': 1.0, 'zips': 1.0, 'bottom': 1.0, 'changes': 1.0, 'love': 1.0, 'one': 1.0, 'wonderful': 1.0, 'it': 1.0, 'this': 1.0, 'makes': 1.0, 'sleepsack': 1.0, 'over': 2.0, 'i': 2.0, 'night': 1.0, 'that': 1.0, 'easier': 1.0, 'prefer': 1.0, 'diaper': 1.0, 'the': 1.0}
Word element => {'only': 1.0, 'swaddled': 1.0, 'home': 1.0, 'from': 1.0, 'away': 1.0, 'while': 1.0, 'napping': 1.0, 'time': 1.0, 'bag': 1.0, 'carry': 1.0, 'also': 1.0, 'helpful': 1.0, 'very': 1.0, 'it': 1.0, 'wasn': 1.0, 'out': 4.0, 'newborn': 1.0, 'reflex': 1.0, '2': 1.0, 'would': 3.0, 'wiggle': 1.0, 'was': 4.0, 'to': 5.0, 'sleep': 2.0, 'all': 1.0, 'diaper': 1.0, 'as': 1.0, 'how': 1.0, 'hands': 1.0, 'teach': 1.0, 'old': 2.0, 'makes': 1.0, 'beginning': 1.0, '3mos': 1.0, 'a': 4.0, 'might': 1.0, 'basis': 1.0, 'reached': 1.0, 't': 1.0, 'startling': 1.0, 'superb': 1.0, 'breaking': 1.0, 'not': 1.0, 'product': 4.0, 'for': 3.0, 'this': 6.0, 'when': 1.0, 'car': 1.0, 'again': 1.0, 'is': 3.0, 'unfortunately': 1.0, 'she': 5.0, 'baby': 3.0, 'lacking': 1.0, 'sleepsacks': 1.0, 'until': 1.0, 'problem': 2.0, 'hand': 1.0, 'like': 1.0, 'convenient': 1.0, 'with': 1.0, 'after': 2.0, 'be': 1.0, 'suddenly': 1.0, 'they': 1.0, 'holes': 1.0, 'your': 1.0, 'so': 4.0, 'constantly': 1.0, 'on': 1.0, '3': 1.0, 'peek': 1.0, 'me': 2.0, 'my': 3.0, 're': 1.0, 'coordination': 1.0, 'you': 3.0, 'things': 1.0, 'able': 1.0, 'and': 3.0, 'arms': 5.0, 'peeking': 1.0, 'still': 1.0, 'had': 1.0, 'wake': 1.0, 'halo': 2.0, 'the': 8.0, 'of': 1.0, 'up': 1.0, 'i': 6.0, 'figured': 1.0, 'forced': 1.0, 'her': 5.0, 'use': 2.0, 'through': 2.0, 'velcro': 1.0, 'just': 2.0, 'seat': 1.0, 'm': 1.0, 'in': 5.0, 'mentioning': 1.0, 'case': 2.0, 'having': 2.0, 'because': 1.0, 'same': 1.0, 'hard': 1.0, 'daily': 1.0, 'get': 1.0, 'months': 2.0, 'decided': 1.0, 'eye': 1.0, '5': 1.0, 'put': 1.0, '5months': 1.0, 'free': 1.0, 'overall': 1.0}
Word element => {'wish': 1.0, 'product': 1.0, 'like': 1.0, 'herself': 1.0, 'mouth': 1.0, 'it': 2.0, 'to': 7.0, 't': 3.0, 'should': 1.0, 'into': 1.0, 'around': 1.0, '11': 2.0, 'was': 1.0, 'lbs': 3.0, 'that': 2.0, 'because': 1.0, 'go': 1.0, '14': 1.0, 'just': 3.0, 'by': 1.0, 'large': 1.0, 'or': 1.0, 'tightly': 1.0, 'shrunk': 1.0, 'she': 5.0, 'baby': 1.0, 'them': 3.0, 'over': 3.0, 'have': 3.0, 'a': 2.0, 'small': 2.0, 'we': 2.0, 'leg': 1.0, 'however': 1.0, 'come': 1.0, 'is': 2.0, 'at': 2.0, 'since': 1.0, 'some': 2.0, 'can': 3.0, 'up': 2.0, 'change': 1.0, 'are': 3.0, 'for': 3.0, 'love': 1.0, 'i': 6.0, 'in': 1.0, 'size': 2.0, 'right': 1.0, 'place': 1.0, 'longer': 1.0, 'of': 3.0, 'the': 12.0, 'worried': 1.0, 'time': 1.0, 'velcro': 1.0, 'unusable': 1.0, 'wings': 1.0, 'don': 2.0, 'cotton': 1.0, 'trying': 1.0, 'be': 1.0, 'suffocate': 1.0, 'fleece': 1.0, 'get': 4.0, 'mistake': 1.0, 'microfleece': 1.0, 'even': 2.0, 'got': 1.0, 'anymore': 1.0, 'on': 1.0, 'snugly': 1.0, 'and': 4.0, 'arms': 1.0, 'out': 1.0, 'understand': 1.0, 'how': 1.0, 'her': 4.0, 'use': 1.0, 'my': 1.0, 'undone': 1.0, 'either': 1.0, 'would': 2.0, 'diaper': 1.0, 'fasten': 1.0, 'lasted': 1.0, 'too': 1.0, 'ones': 3.0, 'one': 1.0, 'big': 1.0, 'arm': 1.0, 'fastened': 1.0, 'pack': 1.0, 'end': 1.0, 'they': 1.0, 'pouch': 2.0, 'were': 1.0, 'swaddleme': 1.0, 'very': 1.0, 'beginning': 1.0, 'cries': 1.0, 'you': 1.0, 'blankets': 1.0, 'able': 1.0, 'before': 1.0, 'somehow': 1.0, 'with': 1.0}
Word element => {'cute': 1.0, 'fun': 1.0, 'durable': 1.0, 'really': 1.0, 'seems': 1.0, 'got': 1.0, 'mom': 1.0, 'were': 1.0, 'it': 3.0, 'i': 1.0, 'and': 2.0, 'as': 1.0, 'prints': 1.0, 'a': 1.0, 'the': 3.0, 'new': 1.0, 'gift': 1.0, 'loved': 2.0, 'softness': 1.0}
Word element => {'enough': 1.0, 'by': 1.0, 'swear': 1.0, 'gifts': 1.0, 'given': 1.0, 'high': 1.0, 'rate': 1.0, 'whom': 1.0, 'those': 1.0, 'as': 3.0, 'and': 1.0, 'them': 3.0, 'newborns': 1.0, 'members': 1.0, 'up': 1.0, 'of': 1.0, 'making': 1.0, 'family': 1.0, 'can': 1.0, 'wonderful': 1.0, 'have': 2.0, 'well': 1.0, 'a': 2.0, 'really': 1.0, 'people': 1.0, 'is': 1.0, 'swaddling': 1.0, 'to': 2.0, 'i': 2.0, 'swaddleme': 1.0, 'old': 1.0, 'few': 1.0, 'months': 1.0, 'so': 1.0, 'creation': 1.0, 'easy': 1.0, 'who': 1.0, 'used': 1.0, 't': 1.0, 'these': 1.0}
Word element => {'of': 1.0, 'few': 1.0, 'has': 1.0, 'months': 1.0, 'was': 1.0, 'is': 3.0, 'longer': 1.0, '3': 1.0, 'now': 1.0, 'weeks': 1.0, 'naps': 1.0, 'but': 1.0, 'my': 1.0, 'to': 1.0, 'sleep': 1.0, 'stays': 1.0, 'i': 1.0, 'old': 1.0, 'them': 1.0, 'night': 1.0, 'baby': 1.0, 'ruined': 1.0, 'been': 1.0, 'little': 1.0, 'using': 1.0, 'falls': 1.0, 'have': 1.0, 'this': 2.0, 'first': 1.0, 'only': 1.0, 'with': 1.0, 'she': 2.0, 'it': 1.0, 'velcro': 1.0, 'for': 1.0, 'product': 1.0, 'afternoon': 1.0, 'a': 2.0, 'and': 4.0, 'socks': 1.0, 'since': 1.0, 'at': 1.0, 'faster': 1.0, 'fussy': 1.0, 'problem': 1.0, 'when': 1.0, '6': 1.0, 'washing': 1.0, 'asleep': 2.0, 'the': 1.0, 'sticks': 1.0, 'her': 1.0}
Word element => {'fabric': 1.0, 'soft': 1.0, 'babies': 1.0, 'definitely': 1.0, 'wiggly': 1.0, 'will': 1.0, 'but': 1.0, 'birth': 1.0, 'future': 1.0, 'at': 1.0, 'still': 1.0, 'on': 1.0, 'strong': 1.0, 'guy': 1.0, 'pea': 1.0, 'wrapped': 1.0, 'very': 2.0, 'little': 3.0, 'didn': 1.0, 'to': 2.0, 'our': 2.0, 'these': 2.0, 'the': 1.0, 'liking': 1.0, 'baby': 1.0, 'them': 2.0, 'started': 1.0, 'one': 1.0, 'right': 1.0, '9oz': 1.0, 'week': 1.0, '9lbs': 1.0, 'using': 1.0, 'like': 1.0, 't': 2.0, 'a': 3.0, 'we': 3.0, 'away': 1.0, 'and': 5.0, 'perfectly': 1.0, 'couldn': 1.0, 'easy': 2.0, 'get': 2.0, 'in': 1.0, 'pod': 1.0, 'use': 3.0, 'hospital': 1.0, 'up': 1.0, 'cried': 1.0, 'of': 1.0, 'for': 1.0, 'fit': 1.0, 'after': 1.0, 'so': 1.0, 'about': 1.0, 'stopped': 1.0, 'he': 1.0, 'being': 1.0, 'swaddled': 1.0, 'much': 1.0, 'when': 1.0, 'stretch': 1.0, 'out': 2.0}
Word element => {'summer': 1.0, 'in': 1.0, 'even': 1.0, 'weight': 1.0, 'lighter': 1.0, 'weather': 1.0, 'cold': 1.0, 'especially': 1.0, 'fleece': 1.0, 'stay': 1.0, 'that': 1.0, 'work': 2.0, 'knit': 1.0, 'will': 2.0, 'secure': 1.0, 'ensure': 1.0, 'is': 4.0, 'birthdays': 1.0, 'pros': 1.0, 'with': 1.0, 'velcro': 1.0, 'techniques': 1.0, 'it': 1.0, 'have': 1.0, 'who': 1.0, 'the': 5.0, 'great': 1.0, 'these': 1.0, 'are': 1.0, 'new': 1.0, 'last': 1.0, 'little': 1.0, 'struggled': 1.0, 'mes': 1.0, 'for': 2.0, 'parents': 1.0, 'months': 1.0, 'one': 1.0, 'swaddle': 1.0, 'or': 1.0, 'warm': 2.0, 'old': 1.0, 'six': 1.0, 'i': 2.0, 'baby': 1.0, 'about': 1.0, 'years': 1.0, 'helps': 1.0, 'out': 1.0, 'of': 1.0, 'and': 4.0, 'this': 1.0, 'swaddling': 1.0, 'wish': 1.0, 'had': 1.0, 'our': 1.0, 'to': 1.0, 'known': 1.0, 'before': 1.0, 'your': 1.0, 'wrapped': 1.0, 'tightly': 1.0}
Word element => {'how': 1.0, 'consider': 1.0, 'way': 1.0, 'wrap': 1.0, 'couldn': 1.0, 'wide': 1.0, 'enough': 2.0, 'actually': 1.0, '25th': 1.0, 'we': 1.0, 'think': 1.0, 'don': 1.0, 'great': 2.0, 'now': 1.0, 'worth': 1.0, 'but': 3.0, 'out': 2.0, 'grows': 1.0, 'when': 1.0, 'will': 1.0, 'grow': 1.0, 'all': 1.0, 'fits': 1.0, 'sizing': 1.0, 'price': 1.0, 'bum': 1.0, 'be': 1.0, 'many': 1.0, 'baby': 3.0, 'slit': 1.0, 'grew': 1.0, 'though': 2.0, 'colors': 1.0, 'however': 1.0, 'found': 1.0, 'easy': 1.0, 'months': 1.0, 'get': 2.0, 'they': 3.0, 'too': 2.0, 'arms': 1.0, 'and': 4.0, 'green': 1.0, 'that': 3.0, 'loves': 1.0, 'munchkin': 1.0, 'swaddling': 1.0, 'would': 2.0, 'little': 1.0, 'very': 1.0, 't': 3.0, 'likes': 1.0, 'them': 7.0, 'has': 1.0, 'for': 2.0, 'fabric': 1.0, 'like': 2.0, 'percentile': 1.0, 'hold': 2.0, 'made': 1.0, 'good': 2.0, 'which': 1.0, 'not': 2.0, 'work': 2.0, 'prefers': 1.0, 'pretty': 2.0, 'to': 4.0, 'let': 1.0, 'really': 1.0, 'who': 1.0, 'regular': 1.0, 'in': 3.0, 're': 1.0, 'my': 4.0, 'some': 1.0, 'soft': 1.0, 'without': 1.0, 'myself': 1.0, 'quite': 2.0, 'velcro': 1.0, 's': 4.0, 'small': 1.0, 'a': 1.0, 'elsewhere': 1.0, 'might': 1.0, 'he': 4.0, 'him': 1.0, 'it': 5.0, 'fast': 1.0, 'well': 4.0, 'i': 5.0, 'worked': 1.0, 'bent': 1.0, 'were': 1.0, 'recommend': 2.0, 'inside': 1.0, 'blankets': 1.0, 'you': 3.0, 'if': 2.0, 'still': 3.0, 'are': 2.0, 'cute': 1.0, 'got': 2.0, 'monkeys': 1.0, 'off': 1.0, 'seems': 1.0, 'also': 1.0, '7': 1.0, 'up': 1.0, 'use': 2.0, 'wash': 1.0, 'only': 2.0, 'since': 1.0, 'washed': 1.0, 'long': 2.0, 'update': 2.0, 'pound': 1.0, 'on': 1.0, 'room': 1.0, 'these': 5.0, 'once': 1.0, 'the': 14.0, 'of': 2.0, 'at': 1.0, 'is': 1.0, 'husband': 1.0, 'more': 2.0, 'around': 2.0, 'expensive': 1.0, 'can': 4.0, 'so': 1.0, 'check': 1.0, 'as': 2.0, 'diaper': 1.0, '3': 1.0, 'taking': 1.0, 'whole': 1.0, 'thing': 1.0, 'convenient': 1.0, 'with': 1.0, 'oh': 1.0}
Word element => {'stuff': 1.0, 'all': 1.0, 'time': 1.0, 'so': 1.0, 'anything': 1.0, 'out': 2.0, 'newborn': 1.0, 'wasn': 1.0, 'it': 1.0, 'but': 1.0, '2': 2.0, 'than': 1.0, 'same': 1.0, 'did': 1.0, 'swaddle': 1.0, 'better': 1.0, 'enough': 1.0, 'loved': 1.0, 'got': 1.0, 'even': 3.0, '2nd': 1.0, 'nurses': 1.0, 'us': 1.0, 'several': 1.0, 'bust': 1.0, 'about': 1.0, 'regular': 1.0, 'in': 3.0, 'to': 2.0, 'that': 1.0, 'with': 1.0, 'times': 1.0, 'shrinks': 1.0, 'when': 1.0, 'shrink': 2.0, 'clearly': 1.0, 'hospital': 1.0, 'teach': 1.0, 'our': 1.0, 'how': 1.0, 'washing': 1.0, 'i': 2.0, '4': 1.0, 'given': 1.0, 'great': 2.0, '1': 1.0, 'tried': 2.0, 'until': 1.0, 'a': 7.0, 'could': 1.0, 'then': 1.0, 'we': 5.0, 'of': 3.0, 'the': 7.0, 'baby': 1.0, 'she': 3.0, 'deal': 1.0, 'my': 1.0, 'while': 1.0, 'went': 1.0, 'using': 1.0, 'brought': 1.0, 'blanket': 2.0, 'swaddled': 1.0, 'home': 1.0, 'being': 1.0, 'swaddleme': 1.0, 'd': 1.0, 'purchased': 1.0, 'and': 3.0, 'was': 2.0, 'bit': 1.0, 'however': 1.0, 'easy': 1.0, 'get': 1.0, 'bought': 1.0, 'husband': 1.0, 'more': 3.0, 'is': 1.0, 'first': 1.0, 'size': 4.0, 'up': 1.0, 'her': 3.0, 'wash': 1.0, 'proper': 1.0, 'them': 1.0, 'little': 1.0, 'they': 2.0, 'smallest': 1.0, 't': 2.0, 'fit': 2.0, 'perfectly': 1.0, 'if': 1.0, 'still': 2.0, 'problem': 1.0, 'though': 2.0, 'within': 1.0, 'ounces': 1.0, 'couldn': 1.0, 'would': 1.0, 'buy': 1.0}
Word element => {'our': 1.0, 'too': 1.0, 'is': 1.0, 'the': 1.0, 'addition': 1.0, 'for': 1.0, 'in': 1.0, 'it': 2.0, 'i': 1.0, 'does': 1.0, 'material': 1.0, 'not': 2.0, 'cover': 1.0, 'her': 1.0, 'so': 1.0, 'ended': 1.0, 'tropical': 1.0, 'weather': 2.0, 'hot': 1.0, 'up': 1.0, 'properly': 1.0, 'using': 1.0}
Word element => {'loves': 1.0, 'she': 1.0, 'baby': 1.0, 'our': 2.0, 'gift': 2.0, 'bought': 1.0, 'new': 1.0, 'girl': 2.0, 'put': 1.0, 'a': 2.0, 'her': 1.0, 'down': 1.0, 'born': 1.0, 'year': 1.0, 'as': 2.0, 'and': 2.0, 'got': 1.0, 'we': 2.0, '2': 1.0, 'old': 1.0, 'for': 2.0, 'neighbor': 1.0, 'this': 1.0, 'it': 3.0, 'would': 1.0, 'not': 1.0}
Word element => {'cute': 1.0, '30': 1.0, 'after': 1.0, 'sounds': 1.0, 'nature': 1.0, 'play': 1.0, 'itself': 1.0, 'shines': 1.0, 'is': 1.0, 'minutes': 1.0, 'can': 1.0, 'for': 1.0, 'in': 1.0, 'nursery': 1.0, 'cutest': 1.0, 'the': 1.0, 'lullabies': 1.0, 'a': 2.0, 'will': 1.0, 'blue': 1.0, 'turn': 1.0, 'gadget': 1.0, 'stars': 1.0, 'functional': 1.0, 'little': 1.0, 'three': 1.0, 'colors': 1.0, 'green': 1.0, 'it': 2.0, 'this': 1.0, 'amber': 1.0, 'and': 2.0, 'off': 1.0, 'or': 2.0, 'yellow': 1.0, 'you': 1.0}
Word element => {'soother': 1.0, 'without': 1.0, 'couldn': 1.0, 'else': 1.0, 'out': 1.0, 'that': 1.0, 'right': 1.0, 'while': 1.0, 'hard': 1.0, 'very': 2.0, 'was': 2.0, 'service': 1.0, 't': 1.0, 'we': 1.0, 'go': 2.0, 'a': 5.0, 'infant': 1.0, 'summer': 1.0, 'stars': 1.0, 'it': 2.0, 'this': 1.0, 'still': 1.0, 'receipt': 1.0, 'things': 1.0, 'tried': 1.0, 'shipped': 1.0, 'use': 1.0, 'make': 1.0, '3': 1.0, 'on': 1.0, 'one': 2.0, 'months': 1.0, 'i': 4.0, 'through': 1.0, 'warranty': 1.0, 'took': 1.0, 'us': 1.0, 'happened': 1.0, 'when': 1.0, 'after': 1.0, 'called': 1.0, '6': 1.0, 'of': 2.0, 'has': 1.0, 'they': 1.0, 'nice': 2.0, '1': 1.0, 'and': 3.0, 'give': 1.0, 'me': 1.0, 'year': 1.0, 'about': 1.0, 'told': 1.0, 'customer': 1.0, 'night': 2.0, 'them': 1.0, 'had': 1.0, 'what': 1.0, 'buy': 1.0, 'days': 1.0, 'sent': 1.0, 'as': 1.0, 'to': 2.0, 'copy': 1.0, 'something': 1.0, 'new': 1.0, 'my': 1.0, 'in': 1.0, 'brand': 1.0, 'because': 1.0, 'died': 1.0, '14': 1.0}
Word element => {'calming': 1.0, 'very': 1.0, 'of': 1.0, 'combination': 1.0, 'falling': 1.0, 'loves': 1.0, 'white': 1.0, 'anything': 1.0, 'never': 1.0, 'old': 1.0, 'year': 1.0, 'my': 1.0, 'them': 1.0, 'light': 1.0, 'yrs': 1.0, 'you': 1.0, 'noise': 1.0, '5': 2.0, 'kid': 1.0, 'one': 1.0, 'time': 2.0, 'same': 2.0, 'asleep': 1.0, 'the': 7.0, 'who': 1.0, 'at': 2.0, 'a': 1.0, 'this': 2.0, 'only': 2.0, 'products': 1.0, 'lights': 2.0, 'for': 2.0, 'love': 1.0, 'product': 1.0, 'purchased': 1.0, 'have': 2.0, 'has': 1.0, 'well': 1.0, 'buddy': 2.0, 'each': 1.0, 'i': 2.0, 'feature': 4.0, 'nature': 1.0, 'and': 5.0, 'play': 1.0, 'timer': 2.0, 'is': 2.0, 'lite': 1.0, 'extremely': 1.0, 'both': 2.0, 'plays': 1.0, 'can': 1.0, 'but': 2.0, 'music': 4.0, 'relaxing': 1.0, 'or': 2.0, 'heartbeat': 1.0, 'slept': 1.0, 'sounds': 1.0, 'think': 1.0, '3': 1.0, 'on': 1.0, 'slumber': 2.0, 'dream': 1.0, 'choose': 1.0, 'comparable': 1.0, 'as': 1.0, 'to': 4.0}
Word element => {'it': 1.0, 'makes': 1.0, 'man': 1.0, 'as': 2.0, 'very': 1.0, 'of': 1.0, 'cant': 1.0, 'is': 2.0, 'that': 1.0, 'cute': 2.0, 'find': 1.0, 'frog': 1.0, 'made': 1.0, 'mr': 1.0, 'relieved': 1.0, 'in': 1.0, 'what': 1.0, 'online': 1.0, 'to': 3.0, 'was': 1.0, 'see': 1.0, 'well': 1.0, 'easy': 1.0, 'use': 1.0, 'person': 1.0, 'wait': 1.0, 'little': 1.0}
Word element => {'job': 1.0, 'batteries': 1.0, 'eats': 1.0, 'perfect': 1.0, '34': 2.0, 'loves': 1.0, 'sturdier': 1.0, 'little': 1.0, 'a': 3.0, 'might': 1.0, 's': 3.0, 'seem': 1.0, 'wants': 1.0, 'than': 1.0, 'b': 1.0, 'but': 3.0, 'music': 4.0, 'lights': 2.0, 'for': 4.0, 'stars': 2.0, 'had': 1.0, 'what': 1.0, 'have': 3.0, 'those': 1.0, 'not': 2.0, 'fine': 1.0, 'important': 2.0, 'my': 3.0, 'looks': 1.0, 'it': 13.0, 'just': 2.0, 'light': 1.0, 'works': 1.0, 'only': 2.0, 'her': 1.0, 'like': 2.0, 'made': 1.0, 'which': 1.0, 'and': 5.0, 'this': 3.0, 'kids': 2.0, 'keeps': 1.0, 'daughter': 2.0, 'honestly': 1.0, 'in': 1.0, 'of': 3.0, 'the': 9.0, 'on': 2.0, 'except': 1.0, 'outside': 1.0, 'other': 2.0, 'all': 2.0, 'turtle': 1.0, 'dark': 1.0, 'plays': 4.0, 'think': 1.0, 'better': 1.0, 'i': 4.0, 'does': 2.0, 'sharing': 1.0, '4': 1.0, 'one': 2.0, 'happy': 1.0, 'matters': 1.0, 'guess': 1.0, 't': 1.0, 'likes': 1.0, 'is': 3.0, 'repetitive': 1.0, 'gave': 1.0, 'same': 1.0, 'still': 1.0, 'if': 1.0, 'tune': 1.0, 'over': 2.0, 'each': 1.0, 'song': 1.0, 'selection': 1.0, 'that': 4.0, 'because': 4.0, '20': 2.0, 'room': 1.0, 'minutes': 2.0, 'or': 2.0, 'volume': 1.0, 'cloud': 1.0, 'so': 3.0, 'control': 1.0, 'quietest': 1.0, 'doesn': 1.0, 'setting': 1.0, 'loud': 1.0, 'you': 1.0, 'again': 1.0, 'always': 1.0, 'them': 1.0, 'cute': 1.0, 'are': 1.0, 'kind': 1.0, 'bright': 1.0, 'red': 1.0, 'be': 1.0, 'stays': 1.0}
Word element => {'again': 1.0, 'would': 1.0, 'bothers': 1.0, 'enough': 1.0, 'quality': 1.0, 'fuzzy': 1.0, 'slightly': 1.0, 'recordings': 1.0, 'is': 2.0, 'really': 1.0, 'it': 3.0, 'picked': 1.0, 'this': 1.0, 'amber': 2.0, 'colors': 1.0, 'about': 1.0, 'thing': 1.0, 'like': 2.0, 'better': 1.0, 'all': 1.0, 'our': 1.0, 'turtle': 1.0, 't': 1.0, 'the': 8.0, 'red': 3.0, 'only': 1.0, 'nursery': 1.0, 'don': 1.0, 'over': 1.0, 'i': 4.0, 'b': 1.0, 'matched': 1.0, 'twilight': 1.0, 'because': 1.0, 'me': 1.0, 'not': 2.0, 'light': 2.0, 'setting': 1.0, 'green': 2.0, 'and': 2.0, 'are': 2.0, 'that': 2.0, 'totally': 1.0, 'at': 1.0, 'so': 1.0, 'buy': 1.0, 'blue': 1.0, 'music': 1.0, 'but': 2.0, 'still': 1.0, 'cute': 1.0, 'look': 1.0, 'actually': 1.0, 'stars': 1.0, 'product': 1.0, 'in': 2.0, 'general': 1.0}
Word element => {'room': 1.0, 'little': 1.0, 'and': 2.0, 'lights': 1.0, 'this': 2.0, 'the': 2.0, 'my': 1.0, 'month': 1.0, 'light': 1.0, 'sweet': 1.0, 'is': 1.0, 'music': 1.0, 'night': 1.0, 'old': 1.0, 'i': 1.0, '4': 1.0, 'bought': 1.0, 'love': 1.0, 'for': 1.0, 'very': 1.0, 'year': 1.0, '8': 1.0, 'a': 1.0, 'granddaughters': 1.0}
Word element => {'in': 1.0, 'due': 1.0, 'sister': 1.0, 'use': 1.0, 'my': 1.0, 'purchase': 1.0, 'often': 1.0, 'great': 1.0, 'is': 2.0, 'one': 1.0, 'months': 2.0, 'will': 1.0, 'batteries': 1.0, 'for': 3.0, 'very': 1.0, 'same': 1.0, 'routine': 1.0, 'turned': 1.0, 'was': 1.0, 'lasted': 1.0, 'well': 1.0, 'who': 1.0, 'since': 1.0, 'cute': 1.0, 'gift': 1.0, 'song': 1.0, 'obviously': 1.0, 'besides': 1.0, 'it': 7.0, 'first': 1.0, 'of': 2.0, 'always': 1.0, 'considering': 1.0, 'much': 1.0, 'how': 1.0, 'received': 1.0, 'nightly': 1.0, 'on': 1.0, 'think': 2.0, 'the': 7.0, 'when': 1.0, 'i': 4.0, 'few': 1.0, 'butterfly': 1.0, 'to': 1.0, 'our': 2.0, 'sleep': 1.0, 'as': 1.0, 'didn': 1.0, 'that': 1.0, 'been': 1.0, 'play': 1.0, 'and': 4.0, 'played': 1.0, 'goes': 1.0, 'home': 1.0, '2': 1.0, 'music': 1.0, 'night': 1.0, 'baby': 3.0, 'have': 1.0, 'which': 1.0, 'comforting': 1.0, 'brought': 1.0, 'using': 1.0, 'definitely': 1.0, 'ever': 1.0, 'we': 4.0, 'a': 2.0, 't': 1.0, 's': 2.0, 'part': 1.0, 'right': 1.0}
Word element => {'forever': 1.0, 'lasts': 1.0, 'plays': 1.0, 'soft': 1.0, 'nice': 1.0, 'too': 1.0, 'good': 1.0, 'wrestle': 1.0, 'he': 1.0, 'i': 1.0, 'loves': 1.0, 'it': 2.0, 'say': 1.0, 'with': 1.0, 'witb': 1.0, 'more': 1.0, 'need': 1.0, 'and': 4.0, 'music': 1.0, 'to': 1.0, 'snuggle': 1.0}
Word element => {'becomes': 1.0, 'replace': 1.0, 'have': 1.0, 'week': 1.0, 'light': 2.0, 'very': 3.0, 'and': 2.0, 'noise': 2.0, 'g': 1.0, 'at': 1.0, 'bad': 2.0, 'to': 1.0, 'all': 1.0, 'baby': 2.0, 'night': 2.0, 'not': 1.0, 'brought': 1.0, 'an': 1.0, 'than': 1.0, 'but': 1.0, 'music': 1.0, 'are': 1.0, 'soothing': 1.0, 'when': 1.0, 'the': 5.0, 'is': 2.0, 'more': 1.0, 'about': 2.0, 'thing': 1.0, 'kenny': 1.0, 'good': 1.0, 'or': 1.0, 'this': 1.0, 'it': 2.0, 'first': 1.0, 'that': 1.0, 'uses': 1.0, 'on': 1.0, 'up': 1.0, 'white': 2.0, 'fast': 2.0, 'had': 1.0, 'expensive': 1.0, 'product': 1.0, 'for': 1.0, 'batteries': 2.0, 'hour': 1.0, 'so': 1.0, 'every': 1.0, 'a': 2.0, 'we': 2.0, 'home': 1.0, 'within': 1.0}
Word element => {'nice': 1.0, 'their': 1.0, 'have': 2.0, 'would': 2.0, 'something': 1.0, 'honestly': 1.0, 'though': 1.0, 'get': 1.0, 'you': 2.0, 'guess': 1.0, 'i': 1.0, 'lasted': 2.0, 'makes': 1.0, 'of': 2.0, 'the': 3.0, 'been': 1.0, 'that': 2.0, 'batteries': 1.0, 'in': 1.0, 'pay': 1.0, 'changes': 1.0, 'it': 3.0, 'this': 1.0, 'amount': 1.0, 'twilight': 1.0, 'before': 1.0, 'died': 1.0, 'for': 2.0, 's': 1.0, 'a': 2.0, 'we': 1.0, 'arrived': 1.0, 'week': 1.0, 'shortly': 1.0, 'weeks': 1.0, 'cloud': 1.0, 'battery': 1.0, 'no': 1.0, 'thing': 1.0, 'later': 1.0, 'around': 2.0, '2': 2.0, 'sitting': 1.0, 'childhood': 1.0, 'on': 1.0, 'quit': 1.0, 'daughter': 1.0, 'just': 1.0, 'by': 1.0, 'and': 1.0, 'too': 1.0, 'bookcase': 1.0, 'what': 1.0, 'had': 1.0, 'my': 1.0, 'b': 1.0, 'ladybug': 1.0, 'years': 1.0, 'difference': 1.0, 'broke': 1.0, 'through': 1.0, 'working': 1.0, 'then': 1.0}
Word element => {'dexterity': 1.0, 'cause': 1.0, 'thus': 1.0, 'the': 5.0, 'great': 2.0, 'home': 1.0, 'goes': 2.0, 'who': 1.0, 'trips': 1.0, 'in': 3.0, 'buttons': 1.0, 'turn': 1.0, 'put': 1.0, 'etc': 1.0, 'control': 1.0, 'and': 10.0, 'play': 1.0, 'sleep': 3.0, 'as': 1.0, 'to': 5.0, 'pack': 1.0, 'purchase': 1.0, 'only': 1.0, 'have': 1.0, 'ipod': 1.0, 'gift': 1.0, 'a': 6.0, 'we': 4.0, 's': 5.0, 'on': 2.0, 'long': 1.0, 'deck': 1.0, 'worked': 1.0, 'bed': 1.0, 'son': 1.0, 'one': 2.0, 'room': 1.0, 'before': 1.0, 'also': 1.0, 'received': 1.0, 'he': 8.0, 'our': 2.0, 'how': 1.0, 'for': 2.0, 'stars': 1.0, 'handy': 1.0, 'sheep': 2.0, 'removed': 1.0, 'figured': 1.0, 'you': 1.0, 'blanket': 1.0, 'soother': 1.0, 'began': 1.0, 'shower': 1.0, 'view': 1.0, 'him': 1.0, '9': 1.0, 'it': 2.0, 'at': 1.0, 'is': 3.0, 'was': 1.0, 'block': 1.0, 'minutes': 1.0, 'voila': 1.0, 'sleeping': 1.0, 'baby': 1.0, 'figure': 1.0, 'now': 2.0, 'taking': 1.0, 'older': 1.0, 'that': 4.0, 'turned': 1.0, 've': 1.0, 'just': 1.0, 'placed': 1.0, 'frog': 2.0, 'crib': 1.0, 'effect': 1.0, 'size': 1.0, 'not': 1.0, 'getting': 1.0, 'awake': 1.0, 'nighttime': 1.0, 'few': 1.0, 'this': 3.0, 'bottle': 1.0, 'so': 1.0, 'very': 1.0, 'plays': 1.0, 'out': 2.0, 'his': 3.0, 'around': 1.0, 'music': 1.0, 'rotates': 1.0, 'through': 1.0, 'when': 1.0, 'what': 1.0, 'likes': 1.0, 'complaint': 1.0, 'hang': 1.0, 'there': 1.0, 'no': 1.0, 'with': 2.0, 'volume': 1.0, 'months': 1.0, 'get': 1.0, 'helped': 2.0, 'an': 1.0, 'all': 1.0, 'fits': 1.0, 'overall': 1.0}
Word element => {'long': 1.0, 'really': 1.0, 'last': 1.0, 'down': 1.0, 'at': 1.0, 'no': 1.0, 'one': 1.0, 'needed': 1.0, 'and': 2.0, 'old': 1.0, 'it': 3.0, 'he': 1.0, 'biggie': 1.0, 'nana': 1.0, 'son': 1.0, 'his': 1.0, 'year': 1.0, 'second': 1.0, 'our': 1.0, 'frog': 1.0, 'combo': 1.0, 'of': 1.0, 'my': 1.0, 'purchase': 1.0, '3': 1.0, 'love': 1.0, 'for': 1.0, 'actually': 2.0, 'stars': 1.0, 'turn': 1.0, 'house': 1.0, 'but': 1.0, 'music': 2.0, 'its': 1.0, 'the': 2.0, 'is': 1.0, 'more': 1.0, 'this': 2.0, 'perfect': 1.0, 'wish': 1.0, 'does': 1.0, 'than': 1.0, 'we': 1.0, 's': 2.0, 'could': 1.0, 'a': 2.0, 'time': 1.0, 'bit': 1.0, 'loves': 1.0, 'item': 1.0, 'batteries': 1.0}
Word element => {'seller': 1.0, 'has': 1.0, 'case': 1.0, 'but': 5.0, 'music': 1.0, 'doesn': 2.0, 'was': 2.0, 'back': 1.0, 'have': 1.0, 'anything': 1.0, 'no': 1.0, 'shuts': 1.0, 'same': 1.0, 'want': 1.0, 'everything': 1.0, 'than': 2.0, 'apart': 1.0, 'this': 3.0, 'wish': 1.0, 'one': 1.0, 't': 4.0, 's': 3.0, 'late': 1.0, 'ok': 1.0, 'the': 9.0, 'of': 2.0, 'more': 1.0, 'light': 1.0, 'just': 2.0, 'i': 7.0, 'night': 1.0, 'on': 1.0, 'better': 1.0, 'think': 1.0, 'lost': 1.0, 'threw': 1.0, 'child': 1.0, 'with': 1.0, 'it': 9.0, 'baby': 1.0, 'she': 1.0, 'is': 3.0, 'look': 1.0, 'isn': 1.0, 'to': 6.0, 'unable': 1.0, 'as': 2.0, 'adorable': 1.0, 'day': 1.0, 'plays': 1.0, 'got': 1.0, 'know': 1.0, 'however': 1.0, 'come': 1.0, 'so': 2.0, 'do': 2.0, 'only': 1.0, 'older': 1.0, 'warn': 1.0, 'box': 1.0, 'spot': 2.0, 'shipping': 1.0, 'people': 1.0, 'hadn': 1.0, 'in': 1.0, 'said': 1.0, 'far': 1.0, 'then': 1.0, 'sewn': 1.0, 'item': 2.0, 'also': 1.0, 'wings': 1.0, 'away': 1.0, 'mins': 1.0, 'and': 1.0, 'about': 2.0, 'awesome': 1.0, 'that': 1.0, 'easily': 1.0, 'be': 2.0, 'other': 1.0, 'an': 2.0, 'threads': 1.0, 'infant': 1.0, 'would': 1.0, 'get': 2.0, 'nothing': 1.0, 'out': 1.0, 'cute': 1.0, 'my': 1.0, 'off': 1.0, 'see': 1.0, 'even': 1.0, 'lights': 1.0, 'for': 2.0, 'awake': 1.0, 'enough': 2.0, 'dark': 1.0, '15': 1.0}
Word element => {'crying': 1.0, 'her': 1.0, 'with': 1.0, 'used': 1.0, 'born': 1.0, 'soothing': 1.0, 'helps': 1.0, 'my': 1.0, 'ever': 1.0, '11': 1.0, 'old': 1.0, 'loves': 1.0, 'month': 1.0, 'it': 3.0, 'i': 1.0, 'niece': 1.0, 'very': 1.0, 'and': 1.0, 'since': 1.0, 'she': 1.0, 'was': 1.0}
Word element => {'item': 1.0, 'glad': 1.0, 'so': 1.0, 'm': 1.0, 'all': 1.0, 'crib': 1.0, 'her': 1.0, 'she': 2.0, 'at': 1.0, 'lays': 1.0, 'month': 1.0, '9': 1.0, 'walls': 1.0, 'for': 1.0, 'in': 1.0, 'this': 2.0, 'granddaughter': 1.0, 'lights': 1.0, 'and': 3.0, 'my': 1.0, 'the': 2.0, 'bought': 2.0, 'old': 1.0, 'i': 3.0, 'looks': 1.0, 'is': 1.0, 'around': 1.0, 'amazed': 1.0, 'excellent': 1.0, 'just': 2.0, 'covering': 1.0, 'beautiful': 1.0, 'ceiling': 1.0}
Word element => {'guests': 1.0, 'other': 1.0, 'mom': 1.0, 'new': 1.0, 'from': 1.0, 'rave': 1.0, 'friends': 1.0, 'huge': 1.0, 'my': 1.0, 'reviews': 1.0, 'are': 3.0, 'for': 2.0, 'i': 2.0, 'cute': 2.0, 'always': 1.0, 'so': 1.0, 'all': 1.0, 'have': 1.0, 'showers': 1.0, 'they': 2.0, 'the': 1.0, 'these': 2.0, 'such': 1.0, 'hit': 1.0, 'their': 1.0, 'baby': 1.0, 'a': 1.0, 'super': 1.0, 'and': 3.0, 'gotten': 1.0, 'get': 1.0}
Word element => {'in': 1.0, 'longer': 1.0, 'being': 1.0, 'amber': 2.0, 'this': 4.0, 'as': 1.0, 'best': 1.0, 'why': 1.0, 'son': 1.0, 'problem': 1.0, 'leaps': 1.0, 'better': 1.0, 'dark': 1.0, 'of': 1.0, 'other': 1.0, 'is': 3.0, 'the': 6.0, 'with': 1.0, 'red': 1.0, 'solved': 1.0, 'spent': 1.0, 'afraid': 1.0, 'for': 1.0, 'mine': 1.0, 'color': 1.0, 'one': 3.0, 'daughter': 1.0, 've': 1.0, 'was': 1.0, 'not': 2.0, 'on': 1.0, 'happened': 1.0, 'sure': 1.0, 'that': 1.0, 'money': 1.0, 'but': 1.0, 'i': 1.0, 'purple': 1.0, 'cloud': 1.0, 'ours': 1.0, 'too': 1.0, 'green': 1.0, 'and': 3.0, 'review': 1.0, 'has': 1.0, 'my': 1.0, 'b': 1.0, 'bounds': 1.0, 'batteries': 1.0, 'last': 1.0}
Word element => {'3': 1.0, 'old': 1.0, 'newborn': 1.0, 'loves': 1.0, 'this': 1.0, 'son': 1.0, 'is': 1.0, 'and': 1.0, 'very': 1.0, 'i': 1.0, 'cute': 1.0, 'it': 3.0, 'works': 1.0, 'great': 1.0, 'bought': 1.0, 'my': 2.0, 'year': 1.0, 'daughter': 1.0, 'for': 1.0}
Word element => {'nursery': 1.0, 'has': 2.0, 'and': 1.0, 'theme': 1.0, 'lot': 1.0, 'a': 2.0, 'it': 2.0, 'purchased': 1.0, 'this': 1.0, 'in': 1.0, 'for': 1.0, 'frog': 1.0, 'the': 1.0, 'shower': 1.0, 'my': 1.0, 'baby': 1.0, 'she': 2.0, 'i': 1.0, 'daughters': 1.0, 'uses': 1.0}
Word element => {'down': 1.0, 'lay': 1.0, 'soon': 1.0, 'the': 1.0, 'looking': 1.0, 'starts': 1.0, 'a': 1.0, 'have': 1.0, 'loves': 1.0, 'stars': 1.0, '3': 1.0, 'old': 1.0, 'been': 1.0, 'months': 2.0, 'we': 2.0, 'fall': 1.0, 'is': 1.0, 'as': 2.0, 'son': 1.0, 'couple': 1.0, 'and': 2.0, 'our': 1.0, 'help': 1.0, 'him': 2.0, 'to': 1.0, 'asleep': 1.0, 'of': 1.0, 'it': 1.0, 'this': 1.0, 'he': 2.0, 'using': 1.0, 'for': 2.0}
Word element => {'importantly': 1.0, 'more': 1.0, 'me': 1.0, 'very': 1.0, 'everyday': 1.0, 'batteries': 1.0, 'will': 1.0, 'or': 1.0, 'press': 1.0, 'turn': 1.0, 'everytime': 1.0, 'how': 1.0, '3rd': 1.0, 'learned': 1.0, 'yr': 1.0, 'does': 1.0, 'all': 1.0, 'to': 2.0, 'old': 1.0, 'two': 1.0, 'i': 2.0, 'she': 1.0, 'it': 5.0, 'one': 1.0, 'love': 1.0, 'for': 3.0, 'and': 6.0, 'the': 3.0, 'so': 1.0, 'on': 2.0, 'herself': 1.0, 'fine': 1.0, 'daughter': 2.0, 'm': 1.0, 'colors': 1.0, 'new': 1.0, 'songs': 1.0, 'dissapointing': 1.0, 'doesn': 1.0, '2': 1.0, 'change': 1.0, 'but': 1.0, 'work': 1.0, 'week': 1.0, 'none': 1.0, 'of': 1.0, 'loves': 1.0, 'that': 1.0, 'matters': 1.0, 'if': 1.0, 'my': 3.0, 'starts': 1.0, 'out': 1.0, 'through': 1.0, 'then': 1.0, 'buttons': 1.0, 'working': 1.0, 'go': 1.0, 't': 1.0, 'a': 1.0}
Word element => {'them': 1.0, 'buy': 1.0, 'soothing': 1.0, 'more': 1.0, 'is': 1.0, 'i': 2.0, 'turned': 1.0, 'be': 1.0, 'volume': 1.0, 'sometimes': 1.0, 'get': 1.0, 'anyway': 1.0, 'over': 2.0, 'of': 1.0, 'some': 1.0, 'off': 1.0, 're': 1.0, 'again': 1.0, 'you': 1.0, 'other': 1.0, 'those': 1.0, 'drift': 1.0, 'same': 1.0, 'have': 1.0, 'would': 2.0, 'try': 1.0, 'only': 1.0, 'with': 1.0, 'thought': 1.0, 'low': 1.0, 'were': 1.0, 'big': 1.0, 'son': 1.0, 'from': 1.0, 'see': 1.0, 'at': 1.0, 'since': 1.0, 'getting': 2.0, 'and': 4.0, 'was': 1.0, 'sleep': 1.0, 'our': 2.0, 'as': 3.0, 'to': 5.0, 'crib': 3.0, 'annoying': 1.0, 'she': 2.0, 'may': 1.0, 'which': 1.0, 'like': 1.0, 'a': 4.0, 'we': 3.0, 'got': 2.0, 'replace': 1.0, 'deal': 1.0, 'basically': 1.0, 'the': 9.0, 'easier': 1.0, 'toy': 3.0, 'her': 1.0, 'price': 1.0, 'both': 1.0, 'used': 1.0, 'daughter': 1.0, 'repeating': 1.0, 'kids': 2.0, 'this': 3.0, 'beloved': 1.0, 'little': 2.0, 'ceiling': 1.0, 'their': 1.0, 'better': 2.0, 'but': 1.0, 'can': 2.0, 'music': 2.0, 'also': 1.0, 'than': 1.0, 'having': 1.0, 'pretty': 1.0, 'frog': 1.0, 'toys': 4.0, 'transition': 1.0, 'they': 3.0, 'lights': 1.0, 'for': 4.0, 'love': 2.0, 'stars': 1.0, 'think': 1.0, 'on': 1.0, 'made': 1.0}
Word element => {'said': 1.0, 'awesome': 1.0, 'way': 1.0, 'with': 1.0, 'tell': 1.0, 'so': 1.0, 'box': 2.0, 'of': 2.0, 'out': 1.0, 'never': 1.0, 'low': 2.0, 'can': 1.0, 'but': 3.0, 'think': 2.0, 'on': 1.0, 'was': 5.0, 'to': 1.0, 'very': 7.0, 'shipping': 1.0, 'test': 1.0, 'they': 1.0, 'look': 1.0, 'ate': 1.0, 'playing': 1.0, 'the': 10.0, 'my': 1.0, 'good': 1.0, 'her': 1.0, 'before': 1.0, 'had': 1.0, 'what': 2.0, 'it': 12.0, 'from': 4.0, 'looked': 1.0, 'give': 2.0, 'i': 10.0, 'dogs': 1.0, 'baby': 1.0, 'bought': 1.0, 'and': 4.0, 'package': 1.0, 't': 2.0, 's': 2.0, 'could': 3.0, 'a': 3.0, 'see': 1.0, 'review': 1.0, 'well': 1.0, 'control': 1.0, 'friend': 1.0, 'took': 1.0, 'loved': 1.0, 'fast': 1.0, 'item': 2.0, 'this': 1.0, 'soft': 1.0, 'pretty': 1.0, 'if': 1.0, 'mode': 1.0, 'sound': 1.0, 'don': 1.0, 'up': 2.0, 'for': 1.0, 'lit': 2.0, 'really': 1.0, 'like': 2.0, 'know': 1.0, 'worth': 1.0, 'volume': 2.0}
Word element => {'seriously': 1.0, 'this': 1.0, 'regret': 1.0, 'batteries': 1.0, 'of': 1.0, 'set': 1.0, 'third': 1.0, 'my': 1.0, 'i': 4.0, 's': 1.0, 'about': 1.0, 'adorable': 1.0, 'and': 2.0, 'month': 1.0, 'it': 3.0, 'love': 1.0, 'a': 1.0, 've': 1.0, 'buying': 1.0, 'm': 1.0, 'owned': 1.0, 'in': 1.0, 'for': 1.0}
Word element => {'size': 1.0, 'same': 1.0, 'find': 1.0, 'because': 1.0, 'long': 1.0, 'use': 1.0, 'able': 1.0, 'wasn': 1.0, 'wise': 1.0, 'length': 1.0, 'in': 2.0, 'is': 3.0, 'really': 4.0, 'side': 1.0, 'fleece': 1.0, 'i': 5.0, 'narrower': 1.0, 'print': 2.0, 'cute': 1.0, 'price': 1.0, 'larger': 1.0, 'helps': 1.0, 'baby': 1.0, 'of': 2.0, 'up': 1.0, 'and': 3.0, 'like': 2.0, 'wish': 1.0, 'soft': 1.0, 'this': 3.0, 'it': 7.0, 'only': 1.0, 'also': 1.0, 'sack': 1.0, 'cut': 1.0, 'was': 1.0, 'sleep': 1.0, 'to': 2.0, 'since': 1.0, 'at': 1.0, 'top': 1.0, 'complaint': 1.0, 'especially': 1.0, 'stay': 1.0, 'not': 1.0, 'the': 6.0, 'place': 1.0, 'tad': 1.0, 'face': 1.0, 'ride': 1.0, 'small': 1.0, 'great': 1.0, 'near': 1.0, 'could': 1.0, 't': 1.0, 'a': 3.0, 's': 1.0, 'my': 1.0, 'that': 1.0, 'runs': 1.0, 'on': 1.0}
Word element => {'have': 1.0, 'i': 1.0, 'fits': 1.0, 'so': 1.0, 'smaller': 1.0, 'is': 1.0, 'making': 1.0, 'halo': 1.0, 'zipper': 3.0, 'very': 1.0, 'like': 1.0, 'up': 1.0, 'under': 1.0, 'b': 1.0, 'than': 1.0, 'better': 1.0, 'it': 3.0, 'and': 3.0, 'changes': 1.0, 'goes': 1.0, 'w': 1.0, 'long': 1.0, 'down': 1.0, 'the': 1.0, 'diaper': 1.0, 'for': 1.0, 'that': 1.0, 'easier': 1.0, 'has': 1.0, 'issues': 1.0, 'cover': 2.0, 'no': 1.0, 'c': 1.0, 'at': 2.0, 'top': 2.0}
Word element => {'recommend': 1.0, 'satisfied': 1.0, 'four': 1.0, 'traditional': 1.0, 'around': 1.0, 'more': 1.0, 'the': 2.0, 'used': 1.0, 'her': 2.0, 'and': 3.0, 'our': 2.0, 'as': 1.0, 'replacement': 1.0, 'very': 1.0, 'swaddle': 1.0, 'after': 1.0, 'rolling': 1.0, 'would': 1.0, 'this': 3.0, 'with': 1.0, 'we': 2.0, 'a': 1.0, 'are': 1.0, 'keeps': 1.0, 'started': 1.0, 'passed': 1.0, 'daughter': 2.0, 'comfortable': 1.0, 'extremely': 1.0, 'while': 1.0, 'for': 1.0, 'product': 1.0, 'winter': 1.0, 'point': 1.0, 'warm': 1.0, 'on': 1.0, 'month': 1.0, 'it': 2.0, 'nights': 1.0, 'leaving': 1.0, 'heartily': 1.0, 'arms': 1.0, 'free': 1.0, 'well': 1.0, 'has': 1.0, 'slept': 1.0, 'in': 1.0, 'i': 1.0}
Word element => {'purchasing': 1.0, 'disappointed': 1.0, 'easier': 1.0, 'of': 1.0, 'waste': 1.0, 'very': 1.0, 'a': 1.0, 'uncomfortable': 1.0, 'help': 1.0, 'bathe': 1.0, 'and': 1.0, 'done': 1.0, 'doesnt': 1.0, 'to': 1.0, 'money': 1.0, 'towel': 1.0, 'should': 1.0, 'i': 1.0, 'have': 1.0, 'her': 1.0, 'before': 1.0, 'more': 1.0, 'it': 2.0, 'research': 1.0}
Word element => {'but': 1.0, 'than': 1.0, 'spendy': 1.0, 'tired': 1.0, 'naps': 1.0, 'away': 1.0, 'think': 1.0, 'solution': 1.0, 'mission': 1.0, 'chemy': 1.0, 'free': 1.0, 'bpa': 1.0, 'though': 1.0, 'even': 1.0, 'honestly': 1.0, 'brand': 1.0, 'worth': 1.0, 'now': 1.0, 'still': 1.0, 'every': 1.0, 'spit': 1.0, 'pacifier': 2.0, 'have': 2.0, 'little': 4.0, 'looks': 1.0, 'me': 1.0, 'my': 4.0, 'at': 3.0, 'hevea': 2.0, 'and': 5.0, 'months': 1.0, 'one': 3.0, 'a': 7.0, 't': 3.0, 'could': 1.0, 'baby': 3.0, 'started': 1.0, 'any': 1.0, 'other': 1.0, 'all': 1.0, 'to': 9.0, 'as': 1.0, 'times': 1.0, 'preferences': 1.0, 'care': 1.0, 'fed': 1.0, 'anything': 1.0, 'for': 3.0, 'sucks': 1.0, 'anti': 1.0, 'different': 1.0, 'boy': 4.0, 'so': 3.0, 'cute': 1.0, 'first': 1.0, 'he': 7.0, 'our': 5.0, 'how': 1.0, 'children': 1.0, 'on': 3.0, 'long': 1.0, 'out': 1.0, 'understand': 1.0, 'while': 1.0, 'were': 1.0, 'breast': 1.0, 'that': 2.0, 'loves': 1.0, 'more': 1.0, 'husband': 1.0, 'comes': 1.0, 'didn': 2.0, 'got': 1.0, 'then': 1.0, 'we': 4.0, 'take': 2.0, 'learn': 1.0, 'loved': 2.0, 'suck': 3.0, 'his': 1.0, 'takes': 1.0, 'change': 1.0, 'favorite': 1.0, 'thing': 1.0, 'found': 2.0, 'however': 1.0, 'was': 3.0, 'natural': 1.0, 'the': 6.0, 'finger': 1.0, 'of': 2.0, 'find': 1.0, 'pinky': 1.0, 'fingers': 1.0, 'saw': 1.0, 'nurses': 1.0, 'hospital': 1.0, 'do': 2.0, 'nuk': 1.0, 'this': 2.0, 'few': 1.0, 'pacifiers': 4.0, 'just': 2.0, 'i': 7.0, 'well': 2.0, 'used': 1.0, 'when': 4.0, 'sit': 1.0, 's': 4.0, 'funny': 1.0, 'ha': 1.0, 'tasted': 1.0, 'seat': 1.0, 'in': 1.0, 'most': 1.0, 'back': 1.0, 'car': 1.0, 'd': 3.0, 'best': 1.0, 'couldn': 1.0, 'until': 1.0, 'tried': 3.0, 'see': 1.0, 'very': 1.0, 'being': 1.0, 'things': 1.0, 'choice': 1.0, '3': 1.0, 'taking': 1.0, 'older': 1.0, 'give': 1.0, 'it': 16.0, 'him': 1.0}
Word element => {'some': 1.0, 'do': 1.0, 'yourself': 1.0, 'you': 1.0, 'were': 1.0, 'different': 1.0, 'suggest': 1.0, 'correct': 1.0, 'amperage': 1.0, 'did': 1.0, 'same': 1.0, 'if': 1.0, 'time': 1.0, 'voltage': 1.0, 'part': 2.0, 'from': 1.0, 'meaning': 1.0, 'the': 7.0, 'damaged': 1.0, 'also': 1.0, 'item': 2.0, 'this': 1.0, 'first': 1.0, 'it': 2.0, 'just': 1.0, 'is': 1.0, 'an': 1.0, 'money': 1.0, 'advertised': 1.0, 'but': 1.0, 'back': 1.0, 'ameda': 2.0, 'of': 1.0, 'description': 1.0, 'and': 3.0, 'would': 1.0, 'have': 1.0, 'contacted': 1.0, 'never': 1.0, 'pump': 1.0, 'save': 1.0, 'my': 1.0, 'eventually': 1.0, 'i': 4.0, 'tried': 1.0, 'as': 1.0, 'all': 1.0, 'to': 2.0, 'use': 1.0, 'not': 2.0, 'heard': 1.0, 'seller': 1.0, 'return': 1.0, 'match': 1.0, 'ordered': 1.0, 'directly': 1.0}
Word element => {'ship': 1.0, 'then': 1.0, 'advertise': 1.0, 'you': 1.0, 'and': 1.0, 'do': 1.0, 'how': 1.0, 'the': 4.0, 'match': 1.0, 'black': 2.0, 'a': 1.0, 'for': 1.0, 'product': 1.0, 'looking': 1.0, 'white': 3.0, 'showing': 1.0, 'adapter': 1.0, 'to': 1.0, 'was': 5.0, 'i': 3.0, 'in': 2.0, 'screen': 1.0, 'when': 1.0, 'pump': 1.0, 'my': 1.0, 'color': 2.0, 'received': 1.0, 'something': 1.0, 'that': 2.0, 'ordered': 1.0, 'it': 2.0, 'this': 1.0, 'breast': 1.0, 'on': 1.0}
Word element => {'5': 1.0, 'give': 1.0, 'didn': 1.0, 'pricey': 1.0, 'since': 1.0, 'but': 1.0, 'so': 1.0, 'she': 1.0, 'bottles': 1.0, 'for': 1.0, 'could': 1.0, 'leave': 1.0, 'my': 1.0, 'bought': 1.0, 'breastpump': 1.0, 'this': 1.0, 'it': 4.0, 'i': 2.0, 'at': 1.0, 'works': 1.0, 'her': 1.0, 'stars': 1.0, 'workplace': 1.0, 't': 1.0, 'the': 1.0, 'heavy': 1.0, 'carrying': 1.0, 'wife': 1.0, 's': 2.0, 'while': 1.0, 'still': 1.0}
Word element => {'house': 1.0, 'key': 1.0, 'which': 1.0, 'free': 1.0, 'your': 1.0, 'good': 1.0, 'very': 1.0, 'colors': 1.0, 'buck': 1.0, 'because': 1.0, 'favor': 1.0, 'battery': 1.0, 'about': 1.0, 'but': 1.0, 'teaches': 2.0, 'guess': 1.0, 'overall': 1.0, 'shape': 1.0, 'and': 4.0, 'i': 3.0, 'putting': 1.0, 'elephant': 1.0, 'it': 3.0, 'month': 1.0, 'sorter': 1.0, 'bucks': 1.0, 'still': 1.0, 'cute': 2.0, 'the': 6.0, 'cause': 1.0, 'holes': 1.0, 'my': 1.0, 'less': 1.0, 'just': 1.0, 'few': 1.0, 'pushing': 1.0, 'that': 1.0, 'loves': 1.0, 'or': 1.0, 'this': 2.0, 'picked': 1.0, 'up': 1.0, 'of': 1.0, 'bang': 1.0, 'from': 1.0, 'sorts': 1.0, 'local': 1.0, 'well': 1.0, 'recently': 1.0, 'old': 1.0, 'makes': 1.0, 'effect': 1.0, 'for': 3.0, 'his': 1.0, 'ears': 1.0, 'in': 2.0, 's': 1.0, 'a': 2.0, 'we': 1.0, 'are': 1.0, 'costco': 1.0, 'working': 1.0, '12': 1.0, 'correct': 1.0, 'shapes': 2.0, 'is': 2.0, 'right': 1.0, 'triangle': 2.0, 'noises': 1.0, 'our': 1.0, 'as': 1.0, 'all': 1.0, 'fun': 1.0}
Word element => {'to': 1.0, 'up': 1.0, 'grow': 1.0, 'maybe': 1.0, 'fan': 1.0, 'not': 1.0, 'hopefully': 1.0, 'months': 1.0, 'a': 2.0, 'in': 1.0, 'few': 1.0, 'friend': 1.0, 'daughter': 1.0, 'too': 1.0, 'the': 1.0, 'my': 1.0, 'and': 1.0, 'plate': 1.0, 'along': 1.0, 'it': 1.0, 'with': 1.0, 'this': 2.0, 'i': 1.0, 's': 3.0, 'she': 4.0, 'solid': 1.0, 'food': 1.0, 'batman': 1.0, 'but': 2.0, 'll': 2.0, 'bowl': 1.0, 'bought': 1.0, 'be': 2.0, 'one': 1.0, 'love': 1.0, 'for': 2.0, 'yet': 2.0, 'young': 1.0, 'using': 1.0}
Word element => {'doo': 1.0, 'would': 1.0, 'i': 1.0, 'loves': 1.0, 'lover': 1.0, 'old': 1.0, 's': 1.0, 'a': 1.0, 'it': 3.0, 'plate': 1.0, 'recommend': 1.0, 'sturdy': 1.0, '1': 1.0, 'nice': 1.0, 'the': 1.0, 'my': 1.0, 'scooby': 1.0, '3': 1.0, '2': 1.0, 'for': 1.0, 'year': 1.0}
Word element => {'a': 1.0, 'for': 1.0, 'i': 1.0, 'together': 1.0, 'stay': 1.0, 'they': 1.0, 'seemed': 1.0, 'although': 1.0, 'refund': 1.0, 'and': 1.0, 'playmat': 1.0, 'way': 1.0, 'cars': 1.0, 'we': 1.0, 'returned': 1.0, 'too': 1.0, 'when': 1.0, 'toy': 1.0, 'received': 1.0, 'much': 1.0, 'durable': 1.0, 'it': 2.0, 'this': 2.0, 'item': 1.0, 'flimsy': 1.0, 'would': 2.0, 'not': 2.0, 'scooted': 1.0, 'lay': 1.0, 'hooked': 1.0, 'in': 1.0, 'disappointed': 1.0, 'flat': 1.0, 'the': 2.0, 'around': 1.0, 'on': 1.0, 'floor': 1.0}
Word element => {'much': 1.0, 'think': 1.0, 'i': 1.0, 'find': 1.0, 'the': 1.0, 't': 1.0, 'do': 1.0, 'couldn': 1.0, 'will': 1.0, 'but': 2.0, 'train': 1.0, 'pals': 1.0, 'nephew': 1.0, 'months': 1.0, 'my': 1.0, 'one': 2.0, 'for': 2.0, 'year': 1.0, 'seemed': 1.0, 'got': 2.0, '18': 1.0, 'choo': 2.0, 'to': 1.0, 'like': 1.0, 'because': 1.0, 'is': 2.0, 'he': 2.0, 'this': 3.0, 'christmas': 1.0, 'it': 2.0, 'with': 1.0, 'set': 1.0, 'always': 1.0, 'playing': 1.0, 'our': 1.0, 'we': 2.0, 'daughters': 1.0, 'better': 1.0, 'playskool': 2.0}
Word element => {'this': 1.0, 'if': 1.0, 'set': 1.0, 'get': 1.0, 'room': 1.0, 'it': 1.0, 'as': 2.0, 'quality': 1.0, 'all': 1.0, 'perfect': 1.0, 'will': 1.0, 'baby': 1.0, 'fir': 1.0, 'was': 1.0, 'a': 1.0, 'nice': 1.0, 'size': 1.0, 'beautiful': 1.0, 'colors': 1.0, 'of': 1.0, 'rest': 1.0, 'good': 2.0}
Word element => {'eye': 1.0, 'other': 1.0, 'no': 1.0, 'still': 1.0, 'up': 1.0, 'wakes': 1.0, 'morning': 1.0, 'her': 2.0, 'giraffe': 1.0, 'with': 1.0, 'and': 3.0, 'talks': 1.0, '5': 1.0, '9': 1.0, 'now': 1.0, 'of': 1.0, 'out': 1.0, 'loves': 1.0, 'that': 2.0, 'little': 1.0, 'crib': 2.0, 'did': 1.0, 'cute': 1.0, 'has': 1.0, 'toy': 1.0, 'i': 7.0, 'night': 1.0, 'but': 1.0, 'store': 1.0, 'was': 1.0, 'animal': 1.0, 'thought': 1.0, 'stuffed': 2.0, 'had': 1.0, 'at': 1.0, 'it': 5.0, 'this': 1.0, 'he': 6.0, 'caught': 1.0, 'sleeps': 1.0, 'is': 1.0, 'shouldn': 1.0, 'went': 1.0, 'my': 1.0, 'the': 4.0, 't': 1.0, 'saw': 1.0, 'have': 2.0, 'animals': 1.0, 'gravitated': 1.0, 'months': 2.0, 'one': 1.0, 'just': 1.0, 'by': 1.0, 'put': 1.0, 'on': 1.0, '3': 1.0, 'in': 3.0, 'his': 2.0, 'when': 1.0, 'miss': 1.0, 'you': 1.0, 'would': 1.0, 'know': 2.0, 'hold': 1.0, 'to': 3.0, 'all': 1.0, 'sleep': 1.0, 'registry': 1.0, 'every': 1.0}
Word element => {'likes': 1.0, 'girl': 1.0, 'little': 1.0, 'it': 1.0, 'money': 1.0, 'the': 1.0, 'less': 1.0, 'for': 1.0, 'never': 1.0, 'thought': 1.0, 'would': 1.0, 'and': 1.0, 'as': 2.0, 'get': 1.0, 'a': 1.0, 'good': 1.0, 'seat': 1.0, 'this': 1.0, 'i': 1.0, 'one': 1.0}
Word element => {'looking': 1.0, 'shelters': 1.0, 'shop': 1.0, 'are': 1.0, 'those': 1.0, 'idea': 1.0, 'start': 1.0, 'as': 1.0, 'child': 1.0, 'inverse': 1.0, 'search': 1.0, 'feature': 1.0, 'also': 1.0, 'parts': 1.0, 'change': 1.0, 'itbut': 1.0, 'usefull': 2.0, 'be': 1.0, 'would': 1.0, 'believe': 2.0, 'time': 1.0, 'can': 1.0, 'so': 2.0, 'full': 1.0, 'youin': 1.0, 'for': 4.0, 'holds': 2.0, 'is': 5.0, 'obstacle': 1.0, 'that': 5.0, 'kidturn': 1.0, 'few': 2.0, 'just': 1.0, 'costs': 1.0, 'wont': 1.0, 'a': 7.0, 'radio': 1.0, 'starts': 1.0, 'you': 8.0, 'when': 3.0, 'make': 1.0, 'teh': 1.0, 'material': 1.0, 'edge': 1.0, 'realy': 1.0, 'cheap': 1.0, 'signal': 1.0, 'like': 1.0, 'pricebut': 1.0, 'and': 7.0, 'gadget': 2.0, 'deviceits': 1.0, 'to': 7.0, 'all': 1.0, 'its': 1.0, 'only': 1.0, 'battery': 1.0, 'thing': 1.0, 'more': 2.0, 'feelsthe': 1.0, 'strong': 1.0, 'chinese': 1.0, 'used': 1.0, 'beeps': 2.0, 'set': 2.0, 'low': 1.0, 'very': 1.0, 'ok': 1.0, 'hook': 1.0, 'better': 1.0, 'open': 1.0, 'it': 13.0, 'with': 4.0, 'top': 1.0, 'needed': 1.0, 'from': 1.0, 'feels': 1.0, 'switch': 2.0, 'i': 3.0, 'youthe': 1.0, 'well': 1.0, 'not': 4.0, 'days': 1.0, 'get': 1.0, 'switching': 1.0, 'accodingly': 1.0, 'betweenand': 1.0, 'off': 1.0, 'abs': 1.0, 'part': 2.0, 'problem': 1.0, 'frequencies': 1.0, 'shortens': 1.0, 'have': 3.0, 'one': 6.0, 'fields': 1.0, 'range': 1.0, 'the': 15.0, 'of': 3.0, 'longer': 1.0, 'lost': 1.0, 'kid': 7.0, 'childs': 1.0, 'locate': 1.0, 'therefore': 1.0, 'alert': 2.0, 'if': 1.0, 'still': 2.0, 'will': 1.0, 'after': 1.0, 'made': 1.0, 'good': 1.0, 'adjustable': 1.0, 'nice': 1.0, 'distance': 2.0, 'mode': 1.0, 'but': 2.0, 'distancesbut': 1.0, 'preferso': 1.0, 'quantity': 1.0, 'obstacles': 1.0, 'in': 4.0, 'beeping': 4.0, 'on': 1.0, 'long': 1.0, 'near': 3.0, 'realize': 1.0}
Word element => {'a': 1.0, 'needed': 1.0, 'so': 1.0, 'favorite': 1.0, 'daughters': 1.0, 'up': 1.0, 'like': 1.0, 'is': 1.0, 'my': 1.0, 'the': 1.0, 'back': 1.0, 'blanket': 1.0, 'it': 1.0, 'second': 1.0, 's': 1.0, 'we': 2.0, 'this': 2.0, 'have': 1.0, 'bought': 1.0}
Word element => {'perfect': 1.0, 'ordered': 1.0, 'giraffe': 1.0, 'stuffed': 1.0, 'darling': 1.0, 'so': 1.0, 'we': 1.0, '3': 1.0, 'soft': 1.0, 'cute': 1.0, 'and': 1.0, 'it': 1.0, 'the': 3.0, 'also': 1.0, 'finishes': 1.0, 'piece': 1.0, 'set': 1.0, 'with': 1.0}
Word element => {'snicker': 1.0, 'all': 1.0, 'perfect': 1.0, 'doodle': 1.0, 'with': 1.0, 'is': 1.0, 'print': 1.0, 'everything': 1.0, 'the': 2.0, 'look': 1.0, 'soft': 1.0, 'matches': 1.0, 'it': 1.0, 'perfectly': 1.0, 'nursery': 2.0, 'adorablevery': 1.0, 'will': 1.0}
Word element => {'great': 1.0, 'sliding': 1.0, 'worry': 1.0, 'over': 1.0, 'don': 1.0, 'child': 1.0, 'sit': 1.0, 'rest': 1.0, 'like': 1.0, 'smooth': 1.0, 'isn': 1.0, 'and': 1.0, 'than': 1.0, 'other': 1.0, 'baby': 1.0, 'me': 1.0, 'of': 2.0, 'necessary': 1.0, 'love': 2.0, 'sling': 1.0, 'one': 1.0, 'deeper': 1.0, 'was': 2.0, 'all': 1.0, 'to': 6.0, 'had': 1.0, 't': 2.0, 'a': 1.0, 'that': 3.0, 'empty': 1.0, 'i': 4.0, 'this': 1.0, 'it': 5.0, 'have': 2.0, 'itself': 1.0, 'in': 1.0, 'my': 2.0, 'infant': 1.0, 'house': 1.0, 'an': 1.0, 'clean': 1.0, 'so': 2.0, 'bit': 1.0, 'is': 2.0, 'very': 1.0, 'from': 1.0, 'tub': 7.0, 'easy': 1.0, 'the': 8.0, 'everything': 1.0, 'if': 2.0, 'down': 1.0, 'bottom': 1.0, 'complaint': 1.0, 'would': 1.0, 'him': 1.0, 'be': 1.0, 'floor': 1.0, 'when': 1.0, 'you': 3.0, 'bath': 3.0, 'your': 2.0, 'on': 1.0, 'son': 1.0, 'difficult': 1.0, 'about': 2.0, 'no': 1.0, 'lift': 1.0, 'water': 1.0}
Word element => {'bathe': 1.0, 'elevated': 1.0, 'fact': 1.0, 'like': 1.0, 'and': 2.0, 'all': 2.0, 'doesn': 1.0, 'makes': 1.0, 'keep': 1.0, 's': 2.0, 'that': 2.0, 'note': 1.0, 'am': 1.0, 'last': 1.0, 'though': 1.0, 'or': 1.0, 'mildew': 1.0, 'issues': 1.0, 'any': 1.0, '37': 1.0, 'found': 1.0, 'a': 5.0, 'hole': 1.0, 't': 4.0, 'full': 1.0, 'recommend': 1.0, 'was': 1.0, 'do': 1.0, 'much': 1.0, 'only': 1.0, 'tub': 3.0, 'get': 3.0, 'leaning': 1.0, 'haven': 1.0, 'little': 1.0, 'good': 1.0, 'side': 1.0, 'head': 1.0, 'told': 1.0, 'about': 1.0, 'no': 1.0, 'his': 1.0, 'bru': 1.0, 'been': 2.0, 'my': 1.0, 'of': 2.0, 'the': 15.0, 'over': 3.0, 'don': 1.0, 'cool': 1.0, 'support': 1.0, 'on': 1.0, 'waste': 1.0, 'chilled': 1.0, 'difficult': 1.0, 'deal': 1.0, 'baby': 5.0, 'money': 1.0, 'but': 1.0, 'gem': 1.0, 'it': 10.0, 'him': 1.0, 'be': 1.0, 'i': 7.0, 'while': 2.0, 'very': 2.0, 'later': 1.0, 'make': 1.0, 'bathtub': 2.0, 'bathing': 2.0, 'sometimes': 1.0, 'for': 2.0, 'chance': 1.0, 'using': 2.0, 'hand': 1.0, 'happy': 1.0, 'one': 2.0, 'hang': 1.0, 'can': 1.0, 'so': 5.0, 'to': 9.0, 'had': 2.0, 'seat': 4.0, 'in': 3.0, 'have': 3.0, 'anything': 1.0, 'soooo': 1.0, 'would': 2.0, 'easier': 2.0, 'with': 4.0, 'reclined': 1.0, 'slipping': 1.0, 'up': 1.0, 'change': 1.0, 'water': 4.0, 'drain': 1.0, 'month': 1.0, 'under': 1.0, 'green': 2.0, 'infant': 2.0, 'not': 3.0, 'dry': 1.0, 'wouldn': 1.0, 'is': 5.0, 'at': 1.0, 'sits': 1.0, 'pool': 1.0, 'huge': 1.0, 'way': 1.0, 'now': 1.0, 'just': 1.0, 'this': 4.0, 'few': 1.0, 'you': 1.0, 'we': 1.0, 'then': 1.0, 'take': 1.0, 'material': 2.0, 'out': 1.0, 'pouring': 1.0, 'tip': 1.0, 'until': 1.0, 'hours': 1.0}
Word element => {'use': 1.0, 'enough': 1.0, 'big': 1.0, 'gets': 1.0, 'he': 1.0, 'in': 2.0, 'baby': 2.0, 'lean': 1.0, 'bottom': 1.0, 'and': 4.0, 'wait': 1.0, 'done': 1.0, 'toilet': 1.0, 'can': 2.0, 'right': 1.0, 'till': 1.0, 'is': 2.0, 'wash': 1.0, 'over': 1.0, 'has': 2.0, 'it': 2.0, 'with': 1.0, 'without': 1.0, 'the': 8.0, 'my': 4.0, 'back': 1.0, 'this': 1.0, 'soft': 1.0, 'able': 1.0, 'sit': 1.0, 'cushion': 1.0, 'out': 1.0, 'seat': 1.0, 'to': 5.0, 'flexible': 1.0, 'for': 1.0, 'be': 1.0, 'used': 1.0, 'sink': 1.0, 'that': 1.0, 't': 1.0, 'a': 1.0, 'plug': 1.0, 'get': 1.0, 'tub': 3.0, 'easy': 1.0, 'am': 1.0, 'easily': 1.0, 'when': 1.0, 'you': 1.0, 'are': 1.0, 'on': 2.0, 'bath': 1.0, 'water': 1.0, 'saved': 1.0, 'i': 2.0, 'flows': 1.0}
Word element => {'recommend': 1.0, 'its': 1.0, 'nice': 1.0, 'obese': 1.0, 'short': 1.0, 'unless': 1.0, 'price': 1.0, 'year': 1.0, 'around': 1.0, '30': 2.0, 'max': 1.0, 'before': 2.0, 'maximum': 2.0, 'baby': 3.0, 'keep': 1.0, 'choosing': 1.0, 'when': 1.0, 'market': 1.0, 'weight': 2.0, 'babies': 1.0, 'more': 1.0, 'different': 1.0, 'rather': 1.0, 'use': 2.0, 'going': 1.0, 'but': 2.0, 'inspected': 1.0, 'should': 1.0, 'bottom': 1.0, 'specific': 1.0, 'so': 1.0, 'fact': 1.0, 'higher': 1.0, 'based': 1.0, 'good': 1.0, 'which': 1.0, 'height': 3.0, 'due': 2.0, 'do': 1.0, 'explained': 1.0, 'enough': 1.0, 'get': 2.0, 'order': 1.0, 'clip': 2.0, 'factors': 1.0, '1': 1.0, 'required': 1.0, 'road': 1.0, 'most': 2.0, 'locking': 3.0, 'techs': 1.0, 'across': 1.0, 'and': 6.0, 'belt': 1.0, 'fit': 2.0, 'for': 4.0, 'feature': 1.0, 'sole': 1.0, 'other': 1.0, 'fits': 1.0, 'an': 2.0, 'very': 1.0, 'being': 1.0, 'want': 1.0, 'certified': 1.0, 'still': 1.0, 'if': 3.0, 'am': 2.0, 'seats': 3.0, 's': 1.0, 'middle': 2.0, '12th': 1.0, 'you': 4.0, 'able': 2.0, 'have': 5.0, 'reach': 1.0, 'way': 2.0, 'than': 2.0, 'belts': 1.0, 'row': 1.0, 'a': 14.0, 'amateur': 1.0, 'off': 2.0, 'look': 1.0, 'is': 10.0, 'line': 1.0, 'indeed': 1.0, 'who': 1.0, 'years': 1.0, 'mind': 1.0, 'both': 1.0, 'add': 1.0, 'odyssey': 1.0, 'of': 6.0, 'the': 24.0, 'past': 1.0, 'experience': 1.0, 'car': 12.0, 'infant': 2.0, 'to': 12.0, 'as': 3.0, 'with': 1.0, 'this': 12.0, 'spot': 1.0, 'kids': 1.0, 'purchased': 2.0, 'had': 2.0, 'trick': 1.0, '2': 1.0, 'safekids': 2.0, 'well': 1.0, 'i': 11.0, 'work': 1.0, 'over': 1.0, 'nearly': 1.0, '7': 1.0, 'not': 2.0, 'today': 1.0, '3': 2.0, '2006': 1.0, 'honda': 2.0, 'does': 1.0, 'installation': 2.0, 'installed': 2.0, 'that': 9.0, 'because': 1.0, 'bases': 1.0, 'my': 2.0, 'technician': 1.0, 'purpose': 1.0, 'allow': 1.0, 'be': 2.0, 'seat': 16.0, 'in': 4.0, 'help': 1.0, 'informed': 1.0, 'outgrow': 1.0, 'though': 1.0, 'happy': 1.0, 'lot': 1.0, 'one': 2.0, 'on': 4.0, 'long': 1.0, 'curse': 1.0, 'would': 2.0, 'tight': 1.0, 'properly': 2.0, 'read': 1.0, 'your': 4.0, 'online': 1.0, 'will': 3.0, 'us': 1.0, 'automatic': 1.0, 'also': 1.0, 'it': 4.0, 'always': 1.0, 'cars': 2.0, 'has': 1.0, 'only': 2.0, 'narrow': 3.0, 'by': 1.0, 'enlisted': 1.0, 'fireman': 1.0, 'lbs': 1.0, 'was': 2.0, 'first': 2.0, 'plus': 1.0, 'blessing': 1.0, 'are': 2.0, 'light': 1.0, 'grandparent': 1.0, 'using': 1.0, 'latch': 3.0, 'those': 1.0, 'impossible': 1.0, 'install': 4.0, 'hit': 1.0, 'base': 5.0, 'even': 1.0}
Word element => {'second': 1.0, 'having': 1.0, 'm': 1.0, '20': 1.0, 'here': 1.0, 'be': 1.0, 'reached': 1.0, 'stroller': 1.0, 'changed': 1.0, 'only': 1.0, 'much': 1.0, 'so': 2.0, 'with': 2.0, 'again': 1.0, 'dealing': 1.0, 'double': 1.0, 'cause': 1.0, 'have': 1.0, 'admit': 1.0, 'middle': 1.0, 'in': 1.0, 'newborn': 1.0, 'paired': 1.0, 'get': 1.0, 'soon': 1.0, 'and': 5.0, 'couldn': 1.0, 'me': 1.0, 'seatbelts': 1.0, 'from': 1.0, 'go': 1.0, 'might': 1.0, 'a': 1.0, 't': 3.0, 'place': 1.0, 'the': 10.0, 'this': 2.0, 'first': 1.0, 'my': 2.0, 'ever': 1.0, 'for': 3.0, '99': 2.0, 'drove': 1.0, 'as': 2.0, 'to': 1.0, 'seat': 4.0, 'rid': 1.0, 'r': 1.0, 'had': 1.0, 'purchased': 2.0, 'us': 1.0, 'pounds': 1.0, 'i': 10.0, 'wait': 1.0, 'of': 2.0, 'child': 1.0, 'up': 1.0, 'hated': 2.0, 'clips': 1.0, 'belts': 1.0, 'car': 3.0, 'infant': 1.0, 'can': 1.0, 'work': 1.0, 'sitting': 1.0, 'it': 5.0, 'felt': 1.0, 'almost': 1.0, 'preferred': 1.0, 'impossible': 1.0, 'been': 1.0, 'babies': 1.0, 'that': 5.0, 'alone': 1.0, 'baby': 2.0, 'will': 1.0, 'also': 1.0, 'didn': 1.0, 'like': 1.0, 'never': 1.0, 'seemed': 1.0, 'reclined': 1.0, 'unfortunately': 1.0, 'was': 2.0, 'crazy': 1.0, 'doesn': 1.0}
Word element => {'recommend': 1.0, 'but': 1.0, 'pain': 1.0, 'thing': 1.0, 'take': 1.0, 'toy': 1.0, 'or': 1.0, 'pacifier': 1.0, 'dropped': 1.0, 'not': 1.0, 'heard': 1.0, 'wow': 1.0, '4': 1.0, 'i': 7.0, 'no': 1.0, 'she': 1.0, 'baby': 3.0, 'school': 1.0, '1': 1.0, 'prospect': 1.0, 'which': 2.0, 's': 3.0, 'driveway': 1.0, 'go': 1.0, 'could': 1.0, 'for': 1.0, 'year': 1.0, 'product': 1.0, 'where': 1.0, 'spray': 1.0, 'getting': 1.0, 'anyone': 1.0, 'and': 8.0, 'very': 1.0, 'off': 1.0, 'access': 1.0, 'old': 1.0, 'her': 2.0, 'is': 3.0, 'around': 1.0, 'the': 8.0, 'of': 3.0, 'always': 1.0, 'way': 1.0, '8': 1.0, 'have': 3.0, 'a': 7.0, 'small': 1.0, 'zipper': 1.0, 'remove': 1.0, 'works': 2.0, 'with': 2.0, 'elastic': 1.0, 'quick': 1.0, 'mosquitoes': 1.0, 'was': 2.0, 'alive': 2.0, 'absolutely': 1.0, 'out': 1.0, 'to': 9.0, 'in': 1.0, 'seat': 1.0, 'only': 2.0, 'amazing': 1.0, 'morning': 1.0, 'every': 1.0, 'if': 1.0, 'wait': 1.0, 'shady': 1.0, 'my': 1.0, 'fits': 1.0, 'had': 1.0, 'it': 5.0, 'thought': 1.0, 'never': 1.0, 'saw': 1.0, 'this': 2.0, 'perfect': 1.0, 'snugly': 1.0, 'give': 1.0, 'there': 1.0, 'bus': 1.0, 'are': 1.0, 'fairly': 1.0, 'about': 1.0, 'gaps': 1.0, 'put': 1.0, 'long': 1.0, 'on': 1.0, 'afternoon': 1.0, 'make': 1.0, 'coating': 1.0, 'even': 1.0, 'eaten': 1.0, 'when': 1.0, 'bug': 1.0, 'so': 1.0, 'can': 2.0, 'change': 1.0, 'slip': 1.0, 'through': 1.0, 'bit': 1.0, 'easy': 1.0, 'months': 1.0, 'get': 1.0, 'cover': 1.0, 'would': 2.0, 'be': 2.0, 'thrilled': 1.0, 'that': 1.0, 'because': 1.0}
Word element => {'comfortable': 1.0, 'calm': 1.0, 'works': 1.0, 'knows': 1.0, 'keep': 1.0, 'who': 1.0, 'little': 1.0, 'question': 1.0, 'maybe': 1.0, 'having': 1.0, 'preferred': 1.0, 'really': 1.0, 'restaurant': 1.0, 've': 1.0, 'something': 1.0, 'mall': 1.0, 'like': 1.0, 'or': 2.0, 'environment': 1.0, 'noisy': 1.0, 'were': 1.0, 'inside': 1.0, 'used': 1.0, 'disturbing': 1.0, 'take': 1.0, 'on': 1.0, 'put': 1.0, 'more': 1.0, 'is': 1.0, 'off': 1.0, 'cover': 4.0, 'for': 1.0, 'one': 1.0, 'had': 2.0, 'was': 2.0, 'quickly': 1.0, 'things': 1.0, 'too': 1.0, 'and': 6.0, 'not': 1.0, 'me': 1.0, 'we': 4.0, 'a': 5.0, 'well': 1.0, 'friend': 1.0, 'felt': 1.0, 'she': 2.0, 'it': 3.0, 'found': 1.0, 'this': 3.0, 'when': 2.0, 'other': 1.0, 'blown': 1.0, 'my': 1.0, 'over': 1.0, 'dust': 1.0, 'baby': 4.0, 'two': 1.0, 'i': 2.0, 'bugs': 1.0, 'out': 1.0, 'third': 1.0, 'kept': 2.0, 'closely': 1.0, 'learned': 1.0, 'easy': 1.0, 'protected': 2.0, 'from': 1.0, 'seat': 1.0, 'outside': 1.0, 'to': 4.0, 'as': 2.0, 'best': 1.0, 'if': 1.0, 'being': 1.0, 'in': 2.0, 'also': 1.0, 'her': 2.0, 'born': 1.0, 'wished': 1.0, 'face': 1.0, 'adult': 1.0, 'sun': 1.0, 'direct': 1.0, 'of': 1.0, 'gave': 1.0, 'that': 2.0, 'busy': 1.0, 'exploring': 1.0, 'toddler': 1.0, 'place': 1.0, 'without': 1.0, 'the': 5.0, 'hands': 2.0}
Word element => {'clean': 1.0, 'so': 1.0, 'came': 1.0, 'of': 1.0, 'seat': 1.0, 'it': 2.0, 't': 1.0, 'second': 1.0, 'doesn': 1.0, 'go': 1.0, 'and': 1.0, 'would': 1.0, 'low': 1.0, 'easier': 1.0, 'enough': 1.0, 'to': 1.0, 'be': 1.0, 'first': 1.0, 'wished': 1.0, 'the': 1.0}
Word element => {'clean': 1.0, 'apart': 1.0, 'take': 1.0, 'plays': 1.0, 'lights': 1.0, 'it': 1.0, 'way': 1.0, 'the': 1.0, 'is': 1.0, 'so': 1.0, 'weight': 1.0, 'easy': 2.0, 'an': 1.0, 'music': 1.0, 'to': 2.0, 'very': 1.0, 'like': 1.0, 'and': 3.0, 'up': 2.0, 'iit': 1.0, 'light': 1.0, 'pick': 1.0}
Word element => {'on': 1.0, 'that': 1.0, 'the': 1.0, 'has': 1.0, 'of': 1.0, 'we': 1.0, 'beautiful': 1.0, 'promised': 1.0, 'price': 1.0, 'love': 2.0, 'it': 3.0, 'great': 2.0, 'experience': 1.0, 'activities': 1.0, 'color': 1.0, 'arrived': 1.0, 'all': 1.0, 'just': 1.0, 'as': 1.0}
Word element => {'fabric': 1.0, 'sharp': 1.0, 'as': 1.0, 'from': 1.0, 'she': 1.0, 'when': 1.0, 'her': 1.0, 'cut': 2.0, 'my': 1.0, 'another': 1.0, 'baby': 1.0, 'rest': 1.0, 'on': 3.0, 'board': 2.0, 'back': 2.0, 'plastic': 2.0, 'safe': 1.0, 'the': 7.0, 'a': 2.0, 'is': 4.0, 'padding': 2.0, 'of': 3.0, 'there': 1.0, 'which': 1.0, 'one': 1.0, 'for': 1.0, 'skin': 1.0, 'direction': 1.0, 'it': 1.0, 'hard': 1.0, 'children': 1.0, 'seat': 2.0, 'not': 1.0, 'who': 1.0, 'thin': 1.0, 'head': 1.0, 'like': 1.0, 'turned': 1.0, 'had': 1.0, 'to': 3.0, 'their': 1.0, 'enough': 1.0, 'heads': 1.0}
Word element => {'cute': 1.0, 'far': 1.0, 'while': 1.0, 'to': 1.0, 'be': 1.0, '28': 1.0, 'm': 1.0, 'daughter': 2.0, 'other': 1.0, 'not': 1.0, 'the': 3.0, 'my': 2.0, 'feet': 1.0, 'is': 3.0, 'can': 1.0, 'most': 1.0, 'able': 1.0, '25': 1.0, 'couldn': 1.0, 'floor': 1.0, 'very': 1.0, 'inches': 1.0, 'and': 1.0, 'tall': 1.0, 'sure': 1.0, 'use': 1.0, 'poster': 1.0, 'how': 1.0, 'her': 2.0, 'baby': 2.0, 'loving': 1.0, 'height': 1.0, 'inch': 1.0, 'agree': 1.0, 'so': 2.0, 'she': 1.0, 'it': 4.0, 'older': 1.0, 'better': 1.0, 'for': 3.0, 's': 3.0, 't': 2.0, 'a': 2.0, 'touch': 1.0, 'taller': 1.0, 'or': 1.0, 'age': 1.0, 'in': 1.0, '85th': 1.0, 'at': 1.0, 'i': 2.0, '4': 1.0, 'months': 1.0, 'percentile': 1.0, 'won': 1.0, 'that': 1.0, 'babies': 1.0}
Word element => {'what': 1.0, 'product': 1.0, 'exactly': 1.0, 'its': 1.0, 'loves': 1.0, 'he': 1.0, 'nice': 3.0, 'colors': 1.0, 'bought': 1.0, 'my': 1.0, 'and': 1.0, 'expected': 1.0, 'walker': 1.0, 'i': 2.0, 'for': 1.0, 'son': 1.0, '6': 1.0, 'it': 2.0, 'month': 1.0}
Word element => {'moments': 1.0, 'entertained': 1.0, 'being': 1.0, 'even': 1.0, 'not': 1.0, '6': 1.0, 'basic': 1.0, 'so': 1.0, 'are': 1.0, 'toys': 1.0, 'also': 1.0, 'volume': 1.0, 'but': 1.0, 'music': 1.0, 'and': 1.0, 'out': 1.0, 'come': 1.0, 'with': 3.0, 'this': 2.0, 'daily': 1.0, 'use': 1.0, 'then': 2.0, 'it': 2.0, 'month': 2.0, 'old': 1.0, 'non': 1.0, 'few': 1.0, 'light': 1.0, 'a': 4.0, 'i': 1.0, 'no': 1.0, 'battery': 4.0, 'walker': 1.0, 'of': 2.0, 'rather': 1.0, 'cannot': 1.0, 'anyone': 1.0, 'disappointed': 1.0, 'less': 1.0, 'the': 6.0, 'replace': 1.0, 'find': 1.0, 'died': 3.0, 'one': 2.0, 'for': 2.0, 'after': 1.0, 'am': 1.0, 'you': 3.0, 'at': 1.0, 'to': 3.0, 'as': 1.0, 'all': 2.0, 'close': 1.0, 'looking': 1.0, 'control': 1.0, 'consider': 1.0, 'should': 1.0, 'my': 1.0, 'purchase': 1.0, 'another': 1.0, 'together': 1.0, 'more': 1.0, 'is': 2.0, 'definatly': 1.0, 'get': 1.0, 'that': 1.0, 'case': 1.0, 'what': 1.0, 'pay': 1.0, 'has': 4.0}
Word element => {'for': 1.0, 'been': 1.0, 'have': 1.0, 'toes': 1.0, 'adjust': 1.0, 'tall': 1.0, 'needs': 1.0, 'in': 1.0, 'a': 2.0, 'be': 1.0, 'would': 1.0, 'now': 1.0, 'to': 2.0, 'its': 1.0, 'fingers': 1.0, 'lower': 1.0, 'not': 1.0, 'height': 1.0, 'baby': 1.0, 'she': 1.0, 'it': 2.0, 'this': 1.0, 'with': 1.0, 'months': 1.0, 'on': 2.0, 'too': 1.0, 'walking': 2.0, 'loves': 1.0, 'quite': 1.0, 'our': 1.0, 'own': 1.0, 'better': 1.0, 'option': 1.0, 'but': 1.0, 'dragging': 1.0, 'concept': 1.0, 's': 1.0, 'and': 1.0, 'getting': 1.0, '2': 1.0, 'figured': 1.0, 'the': 1.0, 'down': 1.0, 'her': 2.0}
Word element => {'this': 1.0, 'you': 1.0, 'it': 1.0, 'love': 1.0, 'we': 1.0, 'with': 2.0, 'wont': 1.0, 'house': 1.0, 'so': 1.0, 'unhappy': 1.0, 'me': 1.0, 'than': 1.0, 'saucer': 1.0, 'better': 1.0, 'product': 1.0, 'be': 1.0, 'much': 1.0, 'those': 1.0, 'the': 1.0, 'she': 1.0, 'things': 1.0, 'walks': 1.0, 'around': 1.0}
Word element => {'used': 1.0, 'be': 1.0, 'can': 1.0, 'tray': 1.0, 'old': 1.0, 'yrs': 1.0, 'and': 3.0, '1': 1.0, 'until': 1.0, 'pillow': 1.0, 'unless': 1.0, 'walking': 1.0, 'already': 1.0, 'learning': 1.0, 'lower': 1.0, 'not': 1.0, 'reach': 1.0, 'the': 2.0, 'adjustment': 1.0, 'my': 1.0, 'high': 2.0, 'she': 1.0, 'baby': 1.0, 'was': 1.0, 'to': 3.0, 'its': 1.0, 'have': 2.0, 'does': 1.0, 'her': 1.0, 'long': 1.0, 'couldn': 1.0, 'floor': 1.0, '8230': 1.0, 'a': 2.0, 't': 1.0, 'we': 1.0, 'would': 1.0, 'under': 1.0, 'off': 1.0, 'legs': 1.0, 'feet': 1.0, 'kid': 1.0, 'comes': 1.0, 'around': 1.0, 'level': 1.0, 'is': 1.0, 'real': 1.0, 'nothing': 1.0, 'snacks': 1.0, 'for': 1.0, 'walk': 1.0, 'on': 1.0, 'put': 2.0, 'your': 1.0, 'toy': 1.0, 'has': 1.0}
Word element => {'through': 1.0, 'better': 1.0, 'her': 1.0, 'hear': 1.0, 'could': 1.0, 'room': 1.0, 'wall': 1.0, 's': 1.0, 'child': 1.0, 'office': 1.0, 'my': 1.0, 'work': 1.0, 'to': 1.0, 'had': 1.0, 've': 1.0, 'lose': 1.0, 'the': 4.0, 'these': 2.0, 'and': 1.0, 'monitor': 1.0, 'other': 1.0, 'consistently': 1.0, 'door': 1.0, 'is': 3.0, 'next': 1.0, 'has': 1.0, 'time': 1.0, 'every': 1.0, 'baby': 1.0, 'reviewer': 1.0, 'from': 1.0, 'as': 1.0, 'only': 1.0, 'which': 2.0, 'i': 2.0, 'worse': 1.0, 'nearly': 1.0, 'noted': 1.0, 'signal': 1.0, 'than': 1.0, 'all': 1.0, 'no': 1.0, 'at': 1.0}
Word element => {'are': 1.0, 'other': 1.0, 'sounds': 1.0, 'pick': 1.0, 'go': 1.0, 'like': 1.0, 'turned': 1.0, 'explain': 1.0, 'hard': 1.0, 'attn': 1.0, 'sleep': 1.0, 'pay': 1.0, 'monitors': 1.0, 'you': 2.0, 'sleeping': 1.0, 'time': 1.0, 'breathing': 1.0, 'better': 1.0, 'think': 1.0, 'on': 4.0, 'into': 2.0, 'function': 1.0, 'only': 1.0, 'fried': 1.0, 'boot': 1.0, 'had': 1.0, 'more': 1.0, 'charged': 1.0, 'became': 1.0, 'to': 9.0, 'our': 2.0, 'elsewhere': 1.0, 'being': 1.0, 'is': 4.0, 'and': 8.0, 'of': 1.0, 'the': 16.0, 'place': 1.0, 'turns': 1.0, 'really': 1.0, 'battery': 1.0, 'frequently': 1.0, 'i': 5.0, 'short': 1.0, 'etc': 1.0, 'months': 1.0, 'one': 1.0, 'sometimes': 2.0, 'actually': 2.0, 'if': 3.0, 'turn': 2.0, 'have': 5.0, 's': 5.0, 'a': 2.0, 'even': 2.0, 'we': 6.0, 'reviews': 2.0, 'leave': 1.0, 'units': 1.0, 'with': 1.0, 'him': 1.0, 'it': 8.0, 'loses': 1.0, 'when': 1.0, 'pain': 1.0, 'beeps': 1.0, 'again': 2.0, 'charge': 1.0, 'monitor': 6.0, 'low': 1.0, 'make': 1.0, 'sound': 2.0, '7': 1.0, 'up': 2.0, 'previous': 2.0, 'quality': 2.0, 'baby': 1.0, 'made': 1.0, 'good': 1.0, 'can': 1.0, 'mode': 2.0, 'but': 2.0, 'sum': 1.0, 'babys': 1.0, 'totally': 1.0, 'same': 1.0, 'hear': 1.0, 'that': 4.0, 'because': 2.0, 'for': 2.0, 'cord': 1.0, 'predictable': 1.0, 'crib': 1.0, 'agree': 1.0, 'wound': 1.0, 'manually': 1.0, 'portion': 1.0, 'inside': 1.0, 'his': 1.0, 'logistics': 1.0, 'nursery': 1.0, 'here': 1.0, 'randomly': 1.0, 'be': 1.0, 'worked': 1.0, 'out': 1.0, 'in': 6.0, 'm': 2.0, 'not': 1.0, 'sure': 3.0, 'would': 1.0, 'each': 1.0, 'was': 1.0, 'plugged': 1.0, 'also': 1.0, 'this': 1.0, 'echo': 1.0, 'off': 3.0, 'creep': 1.0, 'charger': 1.0, 'circuited': 1.0, 'tightly': 1.0, 'room': 1.0, 'button': 1.0, 'thus': 1.0}
Word element => {'one': 1.0, 'out': 1.0, 'monitors': 1.0, 'there': 2.0, 'night': 1.0, 'colored': 1.0, 'buy': 1.0, 'blue': 1.0, 'also': 1.0, 'disturbing': 1.0, 'long': 1.0, 'knows': 1.0, 'for': 1.0, 'him': 1.0, 'awoke': 1.0, 'who': 1.0, 'at': 1.0, 'do': 1.0, 'like': 1.0, 'sleeping': 2.0, 'sure': 1.0, 'get': 1.0, 'consistently': 1.0, 'and': 4.0, 'very': 1.0, 'monitor': 2.0, 'warning': 1.0, 'light': 1.0, 'signal': 1.0, 'more': 1.0, 'is': 1.0, 'noted': 1.0, 'randomly': 1.0, 'turn': 2.0, 'i': 5.0, 'to': 6.0, 'as': 1.0, 'personally': 1.0, 'son': 1.0, 'it': 4.0, 'this': 4.0, 'how': 1.0, 'he': 1.0, 'myself': 1.0, 'the': 4.0, 'without': 1.0, 'm': 1.0, 'absolutely': 1.0, 'particularly': 1.0, 'work': 2.0, 'back': 1.0, 'would': 1.0, 'enjoy': 1.0, 'not': 1.0, 'recommend': 1.0, 'are': 1.0, 'reviewers': 1.0, 'other': 3.0, 'have': 3.0, 'drops': 1.0, 'if': 1.0, 'frustrating': 1.0, 'sneaking': 1.0, 't': 3.0, 'go': 1.0, 's': 1.0, 'realize': 1.0, 'has': 2.0, 'times': 1.0, 'again': 1.0, 'you': 2.0, 'happened': 1.0, 'on': 2.0, 'base': 2.0, 'crying': 1.0, 'off': 1.0, 'that': 1.0, 'been': 2.0, 'into': 1.0, 'don': 3.0, 'my': 1.0, 'room': 1.0, 'while': 1.0}
Word element => {'noise': 1.0, 'making': 1.0, 'is': 1.0, 'baby': 1.0, 'not': 1.0, 'because': 2.0, 'and': 1.0, 'monitor': 1.0, 'they': 2.0, 'a': 3.0, 've': 1.0, 'pieces': 1.0, 'in': 1.0, 'broke': 1.0, 'strong': 1.0, 'on': 1.0, 'the': 3.0, 'are': 1.0, 'of': 1.0, 'still': 1.0, 'louder': 1.0, 'to': 2.0, 'excellent': 1.0, 'purchased': 1.0, 'every': 1.0, 'first': 1.0, 'with': 1.0, 'units': 1.0, 'lost': 1.0, 'one': 1.0, 'be': 1.0, 'travel': 1.0, 'an': 1.0, '2': 1.0, 'but': 1.0, 'will': 1.0, 'day': 1.0, 'know': 1.0, 'trip': 1.0, 'like': 1.0, 'that': 1.0, 'have': 1.0, 'vibrate': 1.0, 'i': 3.0, 'feature': 1.0, 'so': 1.0, 'if': 2.0, 'you': 2.0, 'enough': 1.0, 'parent': 1.0, 're': 1.0, 'easy': 1.0, 'area': 1.0}
Word element => {'mind': 1.0, 'of': 1.0, 'price': 1.0, 'pleased': 1.0, 'love': 2.0, 'can': 1.0, 'if': 1.0, 'nice': 1.0, 'and': 1.0, 'monitor': 2.0, 'peace': 1.0, 'used': 1.0, 'talk': 1.0, 'static': 1.0, 'with': 1.0, 'it': 1.0, 'this': 1.0, 'that': 1.0, 'sound': 1.0, 'level': 2.0, 'light': 1.0, 'base': 1.0, 'we': 1.0, 'be': 1.0, 'to': 2.0, 'very': 1.0, 'from': 1.0, 'no': 1.0, 'great': 1.0, '2': 1.0, 'night': 1.0}
Word element => {'off': 1.0, 'take': 1.0, 'should': 1.0, 'graco': 1.0, 'long': 1.0, 'beeps': 1.0, 'all': 2.0, 'at': 1.0, 'not': 1.0, 'having': 1.0, 'is': 1.0, 'and': 1.0, 'market': 2.0, 'monitor': 1.0, 'the': 2.0, 'one': 1.0, 'night': 1.0, 'worse': 1.0, 'be': 1.0, 'on': 1.0, 'piece': 1.0, 'of': 1.0, 'trash': 1.0, 'this': 1.0, 'it': 2.0, 'better': 1.0, 'constantly': 1.0, 'would': 1.0, 'losing': 1.0, 'than': 1.0, 'signal': 1.0}
Word element => {'safety': 1.0, 'mind': 1.0, 'do': 2.0, 'me': 1.0, 'infuriated': 1.0, 'really': 1.0, 'woke': 1.0, 'before': 1.0, 'how': 1.0, 'sure': 1.0, 'even': 1.0, 'aren': 1.0, 'parents': 1.0, 'deprived': 1.0, 'turned': 1.0, 'crying': 2.0, 'resulting': 1.0, 'favor': 1.0, 'was': 2.0, '3': 1.0, 'long': 1.0, 'on': 1.0, 'approximately': 1.0, 'hearing': 1.0, 'signal': 1.0, 'just': 1.0, 'by': 1.0, 'enough': 1.0, 'parent': 1.0, 'once': 1.0, 'wake': 1.0, 'week': 1.0, 'please': 1.0, 'within': 1.0, 'light': 2.0, 'using': 1.0, 'looking': 2.0, '2': 1.0, 'but': 1.0, 'provide': 1.0, 'which': 2.0, 'good': 1.0, 'look': 1.0, 'at': 4.0, 'main': 1.0, 'drop': 1.0, 'and': 6.0, 'monitor': 5.0, 'that': 3.0, 'a': 6.0, 't': 2.0, 'distance': 1.0, 'two': 1.0, 'i': 1.0, 'in': 3.0, 'also': 2.0, 'it': 4.0, 'as': 1.0, 'units': 1.0, 'annoying': 1.0, 'to': 4.0, 'yourself': 1.0, 'unplugging': 1.0, 'unit': 2.0, 'off': 1.0, 'see': 1.0, 'every': 1.0, 'if': 1.0, 'had': 5.0, 'wanted': 2.0, 'of': 4.0, 'the': 13.0, 'baby': 6.0, 'all': 2.0, 'an': 1.0, 'going': 1.0, 'finally': 1.0, 'beeping': 1.0, 'left': 1.0, 'sound': 1.0, 'up': 2.0, 'this': 2.0, 'only': 1.0, 'usually': 1.0, 'does': 1.0, 'happen': 1.0, 'buy': 1.0, 'gone': 1.0, 'no': 1.0, 'so': 1.0, 'piece': 1.0, 'noises': 1.0, 'were': 2.0, 'indicator': 2.0, 'getting': 1.0, 'out': 1.0, 'would': 3.0, 'beep': 1.0, 'bed': 1.0, 'again': 1.0, 'hours': 1.0, 'middle': 1.0, 'times': 2.0, 'night': 1.0, 'you': 2.0, 'your': 1.0, 'idea': 1.0, 'after': 1.0, 'unless': 1.0, 'itself': 1.0, 'not': 3.0, 'for': 4.0, 'routinely': 1.0, 're': 1.0, 'where': 1.0, 'second': 1.0, 'we': 6.0, 'then': 1.0, 's': 1.0, 'plug': 1.0, 'making': 1.0, 'sleep': 2.0, 'back': 1.0, 'there': 2.0, 'are': 1.0, 'have': 1.0, 'isn': 1.0}
Word element => {'research': 1.0, 'much': 1.0, 'feel': 1.0, 'your': 1.0, 'waking': 1.0, 'thus': 1.0, 'also': 1.0, 'back': 1.0, 'they': 2.0, 'other': 1.0, 'each': 1.0, 'them': 1.0, 'both': 1.0, 'off': 1.0, 'don': 1.0, 'woken': 1.0, 'shrill': 2.0, 'feedback': 2.0, 'sharp': 1.0, 'that': 1.0, 'know': 1.0, 'pieces': 1.0, 'got': 1.0, 've': 1.0, 'the': 9.0, 'hear': 4.0, '3': 1.0, 'near': 2.0, 'on': 3.0, 'think': 1.0, 'barely': 1.0, 'you': 8.0, 'handheld': 1.0, 'times': 1.0, 'when': 2.0, 'work': 1.0, 'need': 1.0, 'or': 1.0, 'sucks': 1.0, 'more': 1.0, 'signal': 3.0, 'move': 1.0, 'used': 1.0, '50': 2.0, 'and': 4.0, 'home': 1.0, 'up': 1.0, 'less': 1.0, 'didn': 1.0, 'seconds': 1.0, 'sure': 1.0, 'store': 1.0, 'was': 3.0, 'doesn': 1.0, 'is': 6.0, 'at': 1.0, 'whim': 1.0, 'out': 2.0, 'a': 3.0, 't': 5.0, 'go': 1.0, 'could': 1.0, 's': 1.0, 'unit': 2.0, 'it': 15.0, 'annoying': 1.0, 'few': 1.0, 'this': 4.0, 'wish': 1.0, '30': 2.0, 'have': 3.0, 'way': 1.0, 'than': 1.0, 'bought': 2.0, 'm': 1.0, 'sync': 1.0, 'placed': 1.0, 'just': 1.0, 'why': 1.0, 'very': 2.0, 'her': 1.0, 'baby': 3.0, 'play': 1.0, 'about': 2.0, 'whole': 1.0, 'reading': 1.0, 'good': 1.0, 'which': 1.0, 'never': 1.0, 'stupid': 1.0, 'would': 1.0, 'beep': 1.0, 'loosing': 2.0, 'reason': 1.0, 'feet': 2.0, 'i': 10.0, 'even': 1.0, 'took': 1.0, 'first': 1.0, 'working': 2.0, 'had': 1.0, 'away': 2.0, 'from': 1.0, 'while': 1.0, 'volume': 1.0, 'with': 3.0, 'low': 1.0, 'buying': 1.0, 'really': 1.0, 'to': 5.0, 'receiver': 2.0, 'outside': 1.0, 'time': 1.0, 'can': 4.0, 'so': 3.0, 'looses': 1.0, 'sometimes': 2.0, 'for': 2.0, 'then': 2.0, 'reviews': 1.0, 'take': 2.0, 'my': 1.0, 'son': 1.0, 'he': 1.0, 'creating': 1.0, 'but': 2.0, 'napping': 1.0, 'into': 1.0, 'kitchen': 1.0, 'if': 2.0, 'every': 2.0, 'turn': 3.0, 'paid': 1.0, 'usually': 1.0, 'only': 1.0}
Word element => {'upstairs': 1.0, 'patent': 1.0, '2': 1.0, 'the': 2.0, 'my': 1.0, 'downstairs': 1.0, 'for': 2.0, 'one': 2.0, 'love': 2.0, 'units': 1.0, 'it': 1.0, 'this': 1.0, 'excited': 1.0, 'two': 1.0, 'super': 1.0, 'about': 1.0, 'way': 1.0, 's': 1.0, 'am': 1.0, 'i': 3.0, 'feature': 1.0, 'that': 1.0, 'temperature': 1.0, 'monitor': 1.0, 'and': 1.0, 'me': 1.0, 'having': 1.0, 'in': 1.0, 'tells': 1.0, 'son': 1.0, 'room': 1.0}
Word element => {'market': 1.0, 'should': 1.0, 'graco': 1.0, 'they': 1.0, 'does': 1.0, 'from': 2.0, 'impossible': 1.0, 'because': 1.0, 'that': 3.0, 'on': 6.0, 'information': 1.0, 'but': 1.0, 'units': 2.0, 'is': 2.0, 'at': 1.0, 'keep': 1.0, 'did': 1.0, 'light': 2.0, 'just': 1.0, 'read': 3.0, 'monitor': 4.0, 'pull': 1.0, 'home': 1.0, 'a': 2.0, 's': 2.0, 't': 1.0, 'for': 1.0, 'child': 1.0, 'product': 2.0, 'reception': 3.0, 'not': 3.0, 'purchasing': 1.0, 'bought': 1.0, 'this': 2.0, 'wish': 1.0, 'it': 7.0, 'night': 4.0, 'others': 1.0, 'baby': 1.0, 'i': 5.0, 'two': 1.0, 'when': 2.0, 'beeps': 1.0, 'of': 2.0, 'the': 16.0, 'without': 1.0, 'part': 1.0, 'though': 1.0, 'room': 4.0, 'noise': 1.0, 'before': 1.0, 'worst': 1.0, 'and': 6.0, 'to': 3.0, 'all': 1.0, 'our': 2.0, 'had': 3.0, 'parental': 2.0, 'got': 1.0, 'even': 1.0, 'said': 1.0, 'theirs': 1.0, 'volume': 1.0, 'with': 1.0, 'off': 1.0, 'up': 4.0, 'knowing': 1.0, 'doesn': 1.0, 'was': 2.0, 'beep': 1.0, 'looses': 1.0, 'warning': 1.0, 'multiple': 1.0, 'mornings': 1.0, 'screen': 3.0, 'due': 1.0, 'woke': 2.0, 'showed': 1.0, 'way': 1.0, 'picking': 1.0, 'have': 1.0, 'ours': 1.0, 'no': 1.0, 'still': 1.0, 'if': 1.0, 'being': 1.0, 'infant': 1.0, 'temp': 1.0, 'through': 1.0, 'first': 1.0, 'floor': 1.0, 'his': 1.0, 'second': 1.0, 'really': 1.0, 'back': 1.0, 'making': 1.0, 'depend': 1.0, 'kept': 1.0, 'receipt': 1.0, 'reviews': 2.0, 'we': 4.0, 'take': 1.0}
Word element => {'let': 1.0, 'll': 1.0, 'hopefully': 1.0, 'sigh': 1.0, 'soon': 1.0, 'be': 1.0, 'will': 1.0, 'monitors': 1.0, 'research': 1.0, '2': 1.0, 'a': 1.0, 'about': 1.0, 'battery': 1.0, 'range': 1.0, 'read': 1.0, 'and': 1.0, 'too': 1.0, 'my': 1.0, 'cracks': 1.0, 'signal': 1.0, 'life': 1.0, 'through': 1.0, 'actually': 2.0, 'product': 1.0, 'for': 1.0, 'we': 5.0, 'reviews': 1.0, 'they': 2.0, 'is': 1.0, 'of': 2.0, 'the': 7.0, 'needed': 1.0, 'trying': 1.0, 'researched': 1.0, 'babies': 1.0, 'more': 1.0, 'husband': 1.0, 'to': 5.0, 'typically': 1.0, 'possible': 1.0, 'fell': 1.0, 'have': 2.0, 'excited': 1.0, '1': 1.0, 'this': 2.0, 'wish': 1.0, 'before': 1.0, 'room': 1.0, 'ft': 1.0, 'garage': 1.0, 'now': 1.0, 'allow': 1.0, 'way': 1.0, 'than': 1.0, 'purchasing': 1.0, 'our': 1.0, 'disappointed': 1.0, 'i': 5.0, 'unlike': 1.0, 'else': 1.0, 'everything': 1.0, 'very': 2.0, 'being': 1.0, 'it': 5.0, 'thought': 1.0, 'had': 1.0, 'were': 1.0, 'that': 1.0, 'return': 2.0, 'sure': 1.0, 'learned': 1.0, 'freedom': 1.0, 'plugged': 1.0, 'us': 3.0, 'course': 1.0, 'still': 1.0, 'keep': 1.0, 'as': 4.0, 'leave': 1.0, '000': 1.0, 'units': 1.0, 'bit': 1.0, 'would': 3.0, 'boy': 1.0, 'so': 1.0, 'time': 1.0, 'while': 1.0, 'was': 1.0, 'but': 1.0, 'napping': 1.0, 'not': 2.0, 'r': 1.0, 'much': 1.0, 'only': 1.0, 'when': 2.0, 'am': 1.0, 'under': 1.0, 'loose': 1.0, 'in': 2.0, 'made': 1.0, 'which': 1.0, 'his': 1.0, 'bad': 1.0, 'experience': 1.0, 'with': 1.0, 'parent': 1.0, 're': 1.0, 'meticulously': 1.0, 'spending': 1.0, 'used': 1.0, 'lesson': 1.0}
Word element => {'far': 1.0, 'has': 1.0, 'different': 1.0, 'computers': 1.0, 'issues': 1.0, 'had': 2.0, 'static': 1.0, 'no': 2.0, 'absolutely': 1.0, 'overall': 1.0, 'us': 1.0, 'plugged': 1.0, 'keep': 1.0, 'life': 1.0, 'battery': 1.0, 'about': 1.0, 'say': 1.0, 'night': 1.0, 'forget': 1.0, 'might': 1.0, 'since': 2.0, 'beeps': 1.0, 'with': 3.0, 'helps': 1.0, 'need': 1.0, 'when': 1.0, 'only': 1.0, 'on': 3.0, 'time': 2.0, 'heard': 1.0, 'first': 1.0, 'working': 1.0, 'cell': 1.0, 'woken': 1.0, 'reset': 1.0, 'would': 1.0, 'weeks': 1.0, 'two': 1.0, 'turn': 2.0, 'every': 1.0, 'my': 1.0, 'most': 1.0, 'but': 3.0, 'mentioned': 1.0, 'through': 1.0, 'months': 1.0, 'bought': 2.0, 'happy': 1.0, 'one': 7.0, 'just': 6.0, 'fairly': 1.0, 't': 4.0, 'once': 2.0, 'room': 3.0, 'before': 1.0, 'have': 7.0, 'born': 1.0, 'three': 1.0, 'bedroom': 3.0, 'served': 1.0, 'don': 1.0, 'up': 2.0, 'been': 1.0, 'their': 1.0, 'network': 1.0, 'our': 2.0, 'units': 1.0, 'leave': 1.0, 'annoying': 1.0, 'as': 1.0, 'pretty': 2.0, 'to': 5.0, 'and': 9.0, 'phones': 1.0, 'across': 1.0, 'interference': 1.0, 'breath': 1.0, 'monitor': 5.0, 'very': 1.0, 'few': 1.0, 'this': 3.0, 'it': 7.0, 'often': 1.0, 'loose': 1.0, 'hear': 5.0, 'month': 1.0, 'baby': 3.0, 'she': 2.0, 'light': 1.0, 'using': 1.0, 'signal': 1.0, 'like': 2.0, 'cry': 1.0, 'for': 2.0, 'm': 2.0, 'in': 9.0, 'of': 2.0, 'the': 22.0, 'anything': 1.0, 'without': 3.0, 'sleeper': 1.0, 'needed': 1.0, 'last': 1.0, 'i': 20.0, 'slept': 1.0, 'well': 3.0, 'even': 1.0, 'several': 1.0, 've': 1.0, 'turned': 1.0, 'way': 1.0, 'occasionally': 1.0, 'was': 1.0, 'flawless': 1.0, 's': 4.0, 'maybe': 1.0, 'that': 4.0, 'problems': 1.0, 'deep': 1.0, 'sigh': 1.0, 'ok': 1.0, 'reviews': 2.0, 'then': 1.0, 'we': 3.0, 'fine': 2.0, 'think': 1.0, 'better': 1.0, 'parent': 1.0, 'people': 1.0, 'house': 2.0, 'wasn': 2.0, 'unit': 3.0, 'does': 2.0, 'kitchen': 2.0, 'living': 1.0, 'convenience': 1.0, 'sound': 1.0, 'area': 1.0, 'wireless': 1.0, 'throughout': 1.0, 'can': 4.0, 'constantly': 1.0, 'so': 2.0, 'ever': 1.0, 'all': 5.0, 'an': 1.0, 'a': 7.0, 'added': 1.0, 'tool': 1.0, 'be': 2.0, 'read': 1.0, 'honest': 1.0, 'd': 1.0, 'probably': 2.0, 'use': 1.0, 'her': 4.0, 'hearing': 1.0, 'from': 1.0, 'at': 2.0, 'is': 1.0, 'almost': 1.0, 'hall': 1.0}
Word element => {'buy': 1.0, 'do': 1.0, 'between': 1.0, 'walls': 1.0, 'be': 1.0, '100': 1.0, 'than': 1.0, 'less': 1.0, 'safe': 1.0, 'shocked': 1.0, 'version': 1.0, 'this': 1.0, 'monitor': 1.0, 'long': 1.0, 'rated': 1.0, 'started': 1.0, 'that': 1.0, 'were': 1.0, 'better': 1.0, 'their': 1.0, 'replace': 1.0, 'monitors': 2.0, 'have': 3.0, 'these': 3.0, 'are': 1.0, 'and': 5.0, 'away': 1.0, 'any': 1.0, 'our': 1.0, 'chosen': 1.0, 'sleep': 1.0, 'to': 4.0, 'rooms': 1.0, 'children': 1.0, 'it': 2.0, 'shopping': 1.0, 'feet': 2.0, 'range': 1.0, 'down': 1.0, 'see': 1.0, '000': 2.0, 'church': 2.0, 'at': 2.0, 'no': 2.0, 'put': 1.0, 'was': 1.0, 'doesn': 1.0, 'for': 1.0, 'where': 2.0, 'parents': 1.0, 'you': 2.0, 'am': 1.0, 'base': 2.0, 'in': 2.0, 'i': 2.0, 'near': 1.0, 'while': 1.0, 'from': 1.0, '2': 2.0, 'can': 1.0, 'work': 1.0, 'sitting': 1.0, 'reception': 1.0, 'if': 1.0, 'a': 1.0, 't': 1.0, 'we': 1.0, 's': 1.0, 'not': 3.0, 'line': 1.0, 'of': 1.0, 'the': 3.0, 'sight': 1.0}
Word element => {'on': 1.0, 'expect': 1.0, 'would': 1.0, 'but': 1.0, 'so': 2.0, 'life': 1.0, 'communication': 1.0, 'always': 1.0, 'way': 1.0, 'this': 2.0, 'range': 2.0, 'and': 3.0, 'very': 1.0, 'monitor': 3.0, 'well': 1.0, 'temperature': 1.0, 'are': 1.0, 'my': 2.0, 'what': 1.0, 'had': 1.0, 'from': 1.0, 'wife': 1.0, 'for': 1.0, 'have': 1.0, 'as': 2.0, 'to': 1.0, 'all': 1.0, 'expecting': 1.0, 'a': 1.0, 'it': 1.0, 'month': 1.0, 'many': 1.0, 'people': 1.0, 'realistic': 1.0, 'that': 3.0, 'allowing': 1.0, 'were': 1.0, 'two': 1.0, 'i': 4.0, 'happy': 1.0, 'guess': 1.0, 'clear': 1.0, 'complains': 1.0, 'disappointed': 1.0, 'over': 1.0, 'sound': 1.0, 'with': 1.0, 'complain': 1.0, 'battery': 1.0, 'despite': 1.0, 'about': 1.0, '2000': 1.0, 'feet': 1.0, 'luckily': 1.0, 'cristal': 1.0, 'expectations': 1.0, 'is': 3.0, 'more': 1.0, 'the': 2.0, 'you': 1.0, 'am': 1.0, 'conclude': 1.0, 'not': 1.0, 'displays': 1.0}
Word element => {'return': 1.0, 'with': 1.0, 'displeased': 1.0, 'extremely': 1.0, 'overall': 1.0, 'or': 1.0, 'low': 1.0, 'of': 1.0, 'because': 1.0, 'beeping': 1.0, 'if': 1.0, 'be': 1.0, 'trying': 1.0, 'light': 1.0, 'take': 1.0, 'battery': 1.0, 'thing': 1.0, 'made': 1.0, 'doesn': 1.0, 'should': 1.0, 're': 1.0, 'parent': 2.0, 'think': 1.0, 'didn': 1.0, 'will': 1.0, 'batteries': 1.0, 'dissappointed': 1.0, 'illuminate': 1.0, 'gets': 1.0, 'the': 3.0, 'developer': 1.0, 'this': 5.0, 'first': 1.0, 'it': 5.0, 'is': 4.0, 'second': 1.0, 'source': 1.0, 'non': 2.0, 'type': 1.0, 'attempting': 1.0, 'nighttime': 1.0, 'baby': 2.0, 'my': 1.0, 'another': 1.0, 'horribly': 1.0, 'figure': 1.0, 'read': 1.0, 'monitor': 5.0, 'soon': 1.0, 'and': 3.0, 'one': 1.0, 'mechanism': 1.0, 'year': 1.0, 'i': 5.0, 'something': 1.0, 've': 1.0, 'try': 1.0, 'liked': 1.0, '2000': 1.0, 'use': 1.0, 'last': 1.0, 's': 2.0, 't': 2.0, 'a': 4.0, 'reality': 1.0, 'so': 4.0, 'm': 1.0, 'charging': 1.0, 'd': 2.0, 'what': 1.0, 'purchased': 1.0, 'thought': 1.0, 'product': 2.0, 'for': 1.0, 'supposed': 1.0, 'to': 5.0, 'have': 2.0, 'out': 1.0, 'feet': 2.0, 'can': 1.0, 'but': 1.0, 'reception': 3.0, 'inconsistent': 1.0, 'at': 1.0, 'else': 1.0, '50': 1.0, 'when': 1.0, 'you': 4.0}
Word element => {'craftsmanship': 1.0, 'away': 1.0, 'warn': 1.0, 'vehemently': 1.0, 'one': 1.0, 'if': 1.0, 'seriously': 1.0, 'retail': 1.0, 'payed': 1.0, 'of': 1.0, 'piece': 1.0, 'biggest': 1.0, 'produced': 1.0, 'perfectly': 1.0, 'monitor': 2.0, 'room': 1.0, 'other': 1.0, 'crying': 1.0, 'several': 1.0, 'has': 1.0, 'silent': 1.0, 'lets': 1.0, 'never': 2.0, 'and': 4.0, 'baby': 2.0, 'night': 1.0, 'junk': 1.0, 'i': 10.0, 'at': 1.0, 'let': 1.0, 'buy': 1.0, 'day': 1.0, 'ever': 3.0, 'friends': 1.0, 'time': 1.0, 'isn': 1.0, 'family': 1.0, 'another': 2.0, 'my': 2.0, 'owned': 2.0, 'worst': 1.0, 'stay': 1.0, 'heard': 1.0, 'me': 2.0, 'it': 4.0, 'full': 1.0, 'lost': 1.0, 'this': 5.0, 'shoddy': 1.0, 'amazon': 1.0, 'is': 4.0, 'again': 1.0, 'you': 1.0, 'am': 1.0, 'times': 1.0, 'beeps': 1.0, 'even': 1.0, 'warning': 1.0, 'for': 1.0, 'product': 2.0, 'own': 1.0, 'an': 1.0, 'your': 1.0, 'on': 1.0, 'will': 2.0, 'item': 3.0, 'have': 5.0, 'that': 2.0, 'babies': 1.0, 'reviewed': 1.0, 'like': 1.0, 'know': 2.0, 'receiving': 1.0, 't': 1.0, 'a': 1.0, 'player': 1.0, 'signal': 2.0, 'clearly': 1.0, 'first': 1.0, 'hear': 1.0, 'can': 1.0, 'music': 2.0, 'possibly': 1.0, 'the': 8.0, 'without': 1.0, 'playing': 1.0, 'to': 2.0, 'our': 1.0, 'saddened': 1.0, 'while': 1.0, 'from': 3.0, 'then': 1.0, 'though': 1.0, 'cuts': 1.0, 'out': 1.0, 'graco': 2.0, 'during': 1.0}
Word element => {'with': 1.0, 'something': 1.0, 'buy': 1.0, 'either': 1.0, 'turned': 1.0, 'save': 1.0, 'my': 1.0, 'didn': 2.0, 'off': 2.0, 'tried': 1.0, 'or': 1.0, 'room': 1.0, 'noise': 1.0, 'white': 1.0, 'there': 1.0, 'realized': 1.0, '00am': 1.0, 'up': 1.0, 'woke': 1.0, 'i': 3.0, 'together': 1.0, 'son': 1.0, 'still': 1.0, 'middle': 1.0, 'turn': 1.0, 'in': 1.0, 'good': 1.0, 'last': 1.0, 'crept': 1.0, 'and': 6.0, 'sometime': 1.0, 'months': 1.0, 'from': 1.0, 'matter': 1.0, 'monitor': 3.0, 'unaware': 1.0, 'cutting': 1.0, 'review': 1.0, 'has': 2.0, 'is': 2.0, 'longer': 1.0, 'receiver': 2.0, 'beep': 1.0, 'out': 2.0, 'was': 2.0, 'all': 1.0, 'to': 2.0, 'taken': 1.0, 'stopped': 1.0, 'it': 7.0, 'only': 1.0, 'nightmare': 1.0, 'several': 1.0, 'no': 3.0, 'of': 2.0, 'night': 2.0, 'baby': 1.0, 'nothing': 3.0, 'working': 2.0, 'money': 1.0, 'work': 2.0, '2': 1.0, 'but': 4.0, 'will': 1.0, 'at': 1.0, 'since': 1.0, 'your': 1.0, 'on': 2.0, '3': 1.0, 'constantly': 1.0, 'proximity': 1.0, 'using': 1.0, 'for': 1.0, 'sometimes': 1.0, 'package': 1.0, 'base': 2.0, 'this': 2.0, 'lost': 1.0, 'signal': 1.0, 'anything': 1.0, 'other': 1.0, 's': 1.0, 't': 2.0, 'a': 2.0, 'we': 1.0, 'does': 1.0, 'the': 9.0, 'basically': 1.0, 'leaving': 1.0, 'when': 1.0, 'times': 2.0, 'you': 1.0, 'into': 1.0, 'been': 2.0, 'that': 2.0, 'coming': 1.0, 'have': 1.0}
Word element => {'waste': 1.0, 'not': 1.0, 'do': 1.0, 'houses': 1.0, 'family': 1.0, 'along': 1.0, 'brought': 1.0, 'trip': 1.0, 'road': 1.0, 'bedroom': 1.0, 'went': 1.0, 'just': 1.0, 'still': 2.0, 'roofing': 1.0, 'metal': 1.0, 'over': 1.0, 'materials': 1.0, 'be': 1.0, 'next': 1.0, 'that': 2.0, 'house': 1.0, 'off': 1.0, 'if': 1.0, 'wrote': 1.0, 'to': 1.0, 'our': 3.0, 'in': 3.0, 'baby': 1.0, 'video': 1.0, 'friend': 1.0, 'longest': 1.0, 'money': 1.0, 'but': 2.0, 'work': 3.0, 'well': 1.0, 'garden': 2.0, 'during': 1.0, 'nap': 1.0, 'reviews': 1.0, 'the': 3.0, 'more': 1.0, 'and': 6.0, 'monitor': 1.0, 'read': 1.0, 'first': 1.0, 'it': 7.0, 'use': 2.0, 'amazon': 1.0, 'really': 1.0, 'i': 4.0, 'vacations': 1.0, 'must': 1.0, 'have': 1.0, 'target': 1.0, 'looked': 1.0, 'from': 1.0, 'range': 1.0, 'for': 1.0, 'bought': 1.0, 'one': 2.0, 'this': 3.0, 'wish': 1.0, 'anywhere': 1.0, 'wanted': 1.0, 'crib': 1.0, 'even': 1.0, 'didn': 3.0, 'your': 1.0, 'on': 4.0, 'portable': 1.0, 'time': 1.0, 'so': 1.0, 'a': 3.0, 'we': 5.0, 't': 3.0, 'go': 1.0, 's': 2.0, 'could': 2.0, 'out': 1.0, 'had': 2.0, 'purchased': 1.0, 'because': 1.0}
Word element => {'recommending': 1.0, 'away': 1.0, 'need': 1.0, 'risk': 1.0, 'taking': 1.0, 'enough': 1.0, 'sure': 1.0, 'one': 1.0, 'floor': 1.0, 'much': 1.0, 'trip': 1.0, 'went': 1.0, 'then': 1.0, 'moving': 1.0, 'go': 1.0, 'will': 4.0, 'could': 2.0, 'seem': 1.0, 'they': 2.0, 'monitors': 1.0, 'things': 1.0, 'night': 2.0, 'plug': 1.0, 'maybe': 2.0, 'battery': 1.0, 'fine': 1.0, 'like': 4.0, 'already': 2.0, '9': 1.0, 'opened': 1.0, 'hear': 4.0, 'first': 1.0, 'barely': 1.0, 'bed': 2.0, 'when': 3.0, 'into': 1.0, 'invest': 1.0, 'this': 3.0, 'it': 16.0, 'be': 6.0, 'about': 2.0, 'creaky': 1.0, 'buy': 1.0, 'something': 1.0, 't': 6.0, 'decided': 2.0, 'unnecessary': 1.0, 'baby': 5.0, 'she': 2.0, 'worried': 2.0, 'heard': 1.0, 'words': 1.0, 'worked': 2.0, 's': 2.0, 'm': 3.0, 'main': 1.0, 'in': 7.0, 'us': 3.0, 'but': 4.0, 'past': 1.0, 'daughter': 6.0, 'happy': 1.0, 'too': 1.0, 'hour': 1.0, 'room': 4.0, 'my': 8.0, 'me': 1.0, 'that': 10.0, 'slightest': 1.0, 'months': 1.0, 'trouble': 1.0, 'settled': 1.0, 'pain': 1.0, 'benefit': 1.0, 'not': 6.0, 'as': 5.0, 'making': 2.0, 'don': 2.0, '4yr': 1.0, 'back': 1.0, 'loud': 1.0, 'sleep': 2.0, 'the': 28.0, 'old': 2.0, 'of': 3.0, 'moves': 1.0, 'getting': 1.0, 'time': 1.0, 'did': 3.0, 'have': 5.0, 'found': 1.0, 'able': 1.0, 'get': 1.0, 'however': 2.0, 'for': 7.0, 'charge': 1.0, 'talk': 3.0, 'while': 1.0, 'thing': 1.0, 'her': 8.0, 'especially': 2.0, 'use': 1.0, 'lit': 1.0, 'at': 3.0, 'trips': 1.0, 'has': 3.0, 'always': 1.0, 'on': 5.0, 'long': 1.0, 'feature': 1.0, 'i': 20.0, 'well': 1.0, '4': 1.0, 'plan': 1.0, 'later': 1.0, 'monitor': 8.0, 'won': 1.0, 'doubt': 1.0, 'yrs': 1.0, 'over': 5.0, 'wake': 3.0, 'so': 2.0, 'way': 2.0, 'all': 3.0, 'an': 2.0, 'other': 2.0, 'playing': 1.0, 'our': 3.0, 'cords': 1.0, 'how': 1.0, 'full': 1.0, 'were': 2.0, 'give': 1.0, 'infant': 2.0, 'after': 1.0, 'though': 1.0, 'out': 3.0, 'during': 1.0, 'see': 1.0, 'seems': 1.0, 'wouldn': 2.0, 'up': 5.0, 'noisy': 1.0, 'seemed': 1.0, 'being': 1.0, 'low': 1.0, 'continue': 2.0, 'around': 1.0, 'music': 1.0, 'we': 9.0, 'called': 1.0, 'was': 3.0, 'and': 9.0, 'just': 2.0, 'anyone': 1.0, 'properly': 1.0, 'would': 1.0, 'day': 1.0, 'beep': 1.0, 'll': 1.0, 'to': 22.0, 'right': 2.0, 'now': 1.0, 'new': 3.0, 'liked': 1.0, 'instead': 2.0, 'a': 11.0, 'hit': 1.0, 'stairs': 1.0, 'tell': 1.0, 'pregnant': 1.0, 'needed': 1.0, 'features': 1.0, 'few': 2.0, 'fall': 1.0, 'voice': 1.0, 'quite': 1.0, 'activated': 1.0, 'option': 1.0, 'which': 1.0, 'nice': 2.0, 'bump': 1.0, 'every': 1.0, 'if': 1.0, 'upstairs': 1.0, 'lot': 1.0, 'buttons': 1.0, 'can': 1.0, 'basement': 1.0, 'is': 5.0, 'turn': 1.0, 'luckily': 1.0, 'didn': 1.0, 'volume': 3.0, 'sound': 1.0, 'sleeps': 1.0, 'button': 2.0, 'another': 1.0, 'parent': 1.0, 'tries': 1.0, 'unit': 1.0, 'tested': 1.0, 'had': 2.0, 'house': 1.0, 'finding': 1.0, 'want': 1.0, 'dark': 1.0, 'causing': 1.0, 'light': 1.0, 'with': 8.0, 'using': 2.0, '16': 1.0, 'very': 4.0, 'find': 1.0, 'going': 1.0}
Word element => {'purchased': 1.0, 'refund': 1.0, 'request': 1.0, 'with': 1.0, 'graco': 1.0, 'back': 1.0, 'through': 2.0, 'her': 1.0, 'cannot': 1.0, 'because': 1.0, 'attention': 1.0, 'for': 2.0, 'daughter': 1.0, 'my': 1.0, 'often': 1.0, 'awakened': 1.0, 've': 1.0, 'effective': 1.0, 'longer': 1.0, 'unit': 4.0, 'this': 4.0, 'it': 2.0, 'i': 2.0, 'feature': 1.0, 'unexpected': 1.0, 'been': 2.0, 'turning': 1.0, 'in': 3.0, 'disappointed': 1.0, 'however': 2.0, 'were': 1.0, 'have': 1.0, 'well': 1.0, 'going': 1.0, 'we': 4.0, 'a': 2.0, 'the': 8.0, 'simplicity': 1.0, 'about': 1.0, 'no': 1.0, 'is': 2.0, 'of': 2.0, 'excited': 1.0, 'seemed': 1.0, 'monitor': 2.0, 'too': 1.0, 'and': 1.0, 'fresh': 1.0, 'dropping': 1.0, 'amazon': 1.0, 'use': 1.0, 'nursery': 1.0, 'hear': 1.0, 'nightlight': 1.0, 'beginning': 1.0, 'thereby': 1.0, 'noticed': 1.0, 'but': 1.0, 'as': 2.0, 'to': 2.0, 'turned': 1.0, 'features': 1.0, 'remedy': 1.0, 'on': 1.0, 'when': 2.0, 'parent': 2.0, 'off': 1.0, 'not': 2.0, 'screaming': 1.0, 'establishing': 1.0, 'by': 2.0, 'signal': 1.0}
Word element => {'graco': 1.0, 'different': 1.0, 'upsetting': 1.0, 'from': 1.0, 'not': 2.0, 'there': 1.0, 'screaming': 1.0, 'at': 1.0, 'buying': 2.0, 'with': 1.0, 'this': 2.0, 'stops': 1.0, 'and': 3.0, 'very': 1.0, 'monitor': 3.0, 'temperature': 1.0, 'like': 1.0, 'the': 4.0, 'myself': 1.0, 'to': 2.0, 'all': 1.0, 'i': 3.0, 'numerous': 1.0, 'in': 1.0, 'would': 1.0, 'screen': 1.0, 'sound': 1.0, 'experienced': 1.0, 'product': 1.0, 'for': 1.0, 'what': 1.0, 'transmitting': 1.0, 'reviews': 1.0, 'happens': 1.0, 'it': 1.0, 'month': 1.0, 'us': 1.0, 'have': 1.0, 'coming': 1.0, 'no': 2.0, 'several': 1.0, 'again': 1.0, 'seen': 1.0, 'times': 1.0, 'a': 3.0, 'peep': 1.0, 'echo': 1.0, 'will': 2.0, 'can': 1.0, 'but': 1.0, 'warning': 1.0, 'show': 1.0, 'on': 1.0, 'is': 3.0, 'out': 1.0, 'another': 1.0, 'my': 1.0, 'baby': 1.0, 'here': 1.0, 'be': 2.0}
Word element => {'well': 1.0, 'there': 1.0, 'occasion': 1.0, 'traveled': 1.0, 'vibrate': 1.0, 'hear': 2.0, 'green': 1.0, 'set': 1.0, 'so': 4.0, 'lightweight': 2.0, 'warmer': 1.0, 'yard': 1.0, 'interrupting': 1.0, 'hubby': 1.0, 'feature': 3.0, 'want': 2.0, 'albeit': 1.0, 'or': 3.0, 'ain': 1.0, 'static': 1.0, 'me': 3.0, 'at': 2.0, 'can': 1.0, 'turn': 1.0, 'is': 11.0, 'sits': 1.0, 'if': 3.0, 'great': 2.0, 'why': 1.0, 'favorites': 1.0, 'clear': 2.0, 'wake': 1.0, 'than': 2.0, 'of': 5.0, 'the': 22.0, 'few': 1.0, 'here': 1.0, 'nursery': 1.0, 'clearly': 1.0, 'labeled': 1.0, 'coaster': 1.0, 'takes': 1.0, 'change': 2.0, 'still': 1.0, 'don': 3.0, 'normal': 1.0, 'manual': 1.0, 'my': 4.0, 'room': 4.0, 'are': 2.0, 'strap': 1.0, 'belt': 1.0, 't': 5.0, 'rest': 2.0, 'negative': 1.0, 'it': 13.0, 'unit': 4.0, 'but': 1.0, 'all': 1.0, 'as': 5.0, 'colder': 1.0, 'wanted': 1.0, 'its': 1.0, 'much': 4.0, 'watching': 1.0, 'has': 3.0, 'always': 1.0, 'next': 1.0, 'rarely': 1.0, 'i': 13.0, 'buy': 2.0, 'comes': 2.0, 'bought': 2.0, 'read': 3.0, 'vibe': 2.0, 'color': 3.0, '50': 1.0, 'night': 1.0, 'you': 2.0, 'with': 5.0, 'direction': 1.0, 'table': 1.0, 'loud': 1.0, 'helping': 1.0, 'baby': 4.0, 'she': 3.0, 'in': 5.0, 'competitive': 1.0, 'experiences': 1.0, 'specifically': 1.0, 'price': 1.0, 'this': 4.0, 'zero': 2.0, 'from': 4.0, 'center': 1.0, 'shocked': 1.0, 'right': 1.0, 'to': 14.0, 'cold': 1.0, 'small': 2.0, 'a': 8.0, 'across': 1.0, 'tiny': 1.0, 'love': 2.0, 'm': 1.0, 's': 2.0, 'because': 1.0, 'that': 3.0, 'movie': 1.0, 'review': 1.0, 'wonderful': 1.0, 'suppose': 1.0, 'need': 2.0, 'also': 1.0, 'easy': 5.0, 'forget': 1.0, 'enough': 1.0, 'we': 3.0, 'crying': 1.0, 'parent': 3.0, 'know': 2.0, 're': 1.0, 'around': 1.0, 'many': 1.0, 'where': 1.0, 'your': 1.0, 'on': 4.0, 'light': 3.0, 'reason': 1.0, 'looking': 1.0, 'gets': 3.0, 'louder': 3.0, 'when': 2.0, 'sound': 2.0, 'made': 1.0, 'which': 1.0, 'changes': 1.0, 'husband': 1.0, 'sounds': 1.0, 'like': 1.0, 'signal': 1.0, 'for': 3.0, 'little': 1.0, 'her': 4.0, 'making': 1.0, 'turns': 1.0, 'monitor': 4.0, 'yellow': 2.0, 'red': 1.0, 'into': 1.0, 'towards': 1.0, 'insulated': 1.0, 'up': 1.0, 'hall': 1.0, 'temp': 1.0, 'our': 2.0, 'some': 1.0, 'write': 1.0, 'house': 2.0, 'feet': 1.0, 'home': 2.0, 'see': 3.0, 'multiple': 1.0, 'features': 2.0, 'outside': 1.0, 'hers': 1.0, 'problems': 2.0, 'walls': 1.0, 'was': 2.0, 'would': 1.0, 'either': 1.0, 'just': 1.0, 'and': 17.0, 'warm': 1.0, 'had': 2.0, 'size': 1.0, 'too': 1.0, 'weight': 1.0, 'weighs': 1.0, 'head': 1.0, 'nothing': 1.0, 'out': 2.0, 'screen': 1.0, 'gagdet': 1.0, 'have': 1.0, 'phobic': 1.0, 'mostly': 1.0, 'instruction': 1.0, 'control': 1.0, 'digital': 1.0, 've': 2.0, 'losing': 1.0, 'being': 1.0, 'range': 1.0, 'daughter': 1.0, 'buttons': 2.0, 'haven': 1.0, 'switch': 1.0, 'channels': 1.0, 'away': 1.0, 'sometimes': 1.0, 'carrying': 1.0, 'kitchen': 1.0, 'more': 2.0, 'bedroom': 1.0}
Word element => {'though': 1.0, 'carrying': 1.0, 'always': 1.0, 'of': 1.0, 'instead': 1.0, 'upstairs': 1.0, 'be': 1.0, 'to': 2.0, 'would': 1.0, 'two': 1.0, '14': 1.0, 'months': 1.0, 'me': 1.0, 'issue': 1.0, 'and': 2.0, 'monitor': 2.0, 'used': 1.0, 'able': 1.0, 'have': 2.0, 've': 2.0, 'we': 1.0, 't': 1.0, 'the': 3.0, 'downstairs': 1.0, 'liked': 1.0, 'love': 2.0, 'for': 1.0, 'one': 3.0, 'is': 1.0, 'units': 1.0, 'parent': 1.0, 'it': 1.0, 'only': 1.0, 'this': 1.0, 'with': 2.0, 'that': 1.0, 'i': 3.0, 'buy': 1.0, 'didn': 1.0}
Word element => {'reliable': 1.0, 'baby': 1.0, 'of': 1.0, 'mission': 1.0, 'sole': 1.0, 'feature': 1.0, 'temperature': 1.0, 'love': 1.0, 'they': 1.0, 'room': 1.0, 'in': 1.0, 'happen': 1.0, 'but': 2.0, 'transmitting': 1.0, 'is': 1.0, 'sounds': 2.0, 'with': 2.0, 'parent': 2.0, 'this': 2.0, 'it': 6.0, 'intermittently': 1.0, 'unit': 1.0, 'keeps': 1.0, 'are': 3.0, 'connection': 1.0, 'gone': 1.0, 'the': 6.0, 'monitor': 4.0, 'and': 1.0, 'chance': 1.0, '3': 1.0, 'later': 1.0, 'from': 1.0, 'transmitted': 1.0, 'target': 2.0, 'shopping': 1.0, 'that': 1.0, 'gave': 1.0, 'returned': 1.0, 'losing': 1.0, 't': 1.0, 'a': 4.0, 's': 2.0, 'bought': 1.0, 'months': 1.0, 'quits': 1.0, 'base': 1.0, 'happens': 1.0, 'few': 1.0, 'when': 2.0, 'you': 3.0, 'beeps': 1.0, 'times': 1.0, 'real': 1.0, 'then': 1.0, 'so': 1.0, 'if': 2.0, 'not': 4.0, 'know': 1.0, 'maybe': 1.0, 'actual': 1.0, 'as': 1.0, 'to': 2.0, 'all': 1.0, 'child': 1.0, 'don': 1.0, 'begin': 1.0, 'still': 1.0}
Word element => {'then': 1.0, 'quality': 1.0, 'night': 1.0, 'of': 1.0, 'middle': 1.0, 'room': 1.0, 'only': 1.0, 'are': 1.0, 'onto': 1.0, 'be': 1.0, 'small': 1.0, 'extremely': 1.0, 'walk': 1.0, 'however': 1.0, 'beeps': 1.0, 'when': 2.0, 'you': 1.0, 'i': 2.0, 'right': 1.0, 'worse': 1.0, 'beeping': 1.0, 'altogether': 1.0, 'hook': 1.0, 'that': 1.0, 'initially': 1.0, 't': 1.0, 's': 3.0, 'we': 2.0, 'very': 1.0, 'monitor': 1.0, 'and': 4.0, 'getting': 1.0, 'like': 1.0, 'it': 8.0, 'frustrating': 1.0, 'with': 1.0, 'in': 3.0, 'seems': 1.0, 'good': 1.0, 'april': 1.0, 'to': 1.0, 'think': 1.0, 'your': 1.0, 'portable': 1.0, 'pants': 1.0, 'cuts': 2.0, 'great': 1.0, 'the': 4.0, 'or': 2.0, 'off': 2.0, 'was': 1.0, 'belt': 1.0, 'around': 1.0, 'don': 1.0, 'over': 1.0, 'bought': 1.0, 'months': 1.0, 'signal': 1.0, 'few': 1.0, 'this': 1.0, 'lost': 1.0, 'can': 1.0, 'past': 1.0, 'reception': 1.0, 'another': 1.0, 'starts': 1.0, 'signaling': 1.0}
Word element => {'front': 1.0, 'or': 1.0, 'naptime': 1.0, 'living': 1.0, 'using': 1.0, 'time': 1.0, 'so': 1.0, 'me': 1.0, 'out': 1.0, 'beep': 1.0, 'loud': 1.0, 'gave': 1.0, 'whenever': 1.0, 'porch': 1.0, 'get': 1.0, 'couldn': 1.0, 'by': 1.0, 'right': 1.0, 'your': 1.0, 'on': 2.0, 'placed': 1.0, 'monitor': 2.0, 'open': 2.0, 'nice': 1.0, 'nightstand': 1.0, 'stays': 1.0, 'mine': 1.0, 'consistent': 1.0, 'was': 1.0, 'store': 1.0, 'had': 2.0, 'don': 1.0, 'up': 1.0, 'child': 1.0, 'during': 1.0, 'graco': 1.0, 'actually': 1.0, 'for': 2.0, 'lost': 1.0, 'this': 1.0, 'it': 6.0, 'mail': 1.0, 'is': 4.0, 'waste': 1.0, 'second': 1.0, 'door': 2.0, 'return': 1.0, 'since': 1.0, 'piece': 1.0, 'about': 1.0, 'no': 2.0, 'wake': 1.0, 'of': 1.0, 'junk': 1.0, 'hall': 1.0, 'claim': 1.0, 'heaven': 1.0, 'got': 1.0, 'to': 3.0, 'our': 2.0, 'as': 1.0, 'from': 1.0, 'gift': 1.0, 'still': 2.0, 'receipt': 1.0, 'are': 1.0, 'baby': 2.0, 'check': 1.0, 'back': 1.0, 'they': 1.0, 'has': 1.0, 'the': 10.0, 'hoping': 1.0, 'in': 2.0, 'but': 1.0, 'money': 1.0, 'reception': 3.0, 'my': 2.0, 'forget': 1.0, 'bedroom': 1.0, 'forbid': 1.0, 'room': 2.0, 'closed': 1.0, 'and': 4.0, 'across': 1.0, 't': 2.0, 'a': 3.0, 'we': 2.0, 's': 2.0}
Word element => {'garden': 1.0, 'working': 1.0, 'outside': 1.0, 'm': 1.0, 'while': 1.0, 'one': 1.0, 'for': 1.0, 'still': 1.0, 'room': 1.0, 'long': 1.0, 'i': 3.0, 'so': 1.0, 'ft': 2.0, 'bad': 1.0, 'thing': 1.0, 'this': 1.0, 'right': 1.0, 'looking': 1.0, 'can': 2.0, 'maybe': 1.0, 'is': 1.0, 't': 1.0, 'the': 2.0, 'on': 1.0, 'believe': 1.0, 'they': 1.0, 'say': 1.0, 'use': 1.0, '2000': 2.0, 'you': 1.0, 'reception': 1.0, 'if': 1.0, 'were': 1.0, 'empty': 1.0, 'in': 2.0, 'an': 1.0}
Word element => {'take': 1.0, 'do': 1.0, 'free': 1.0, 'away': 1.0, 'of': 1.0, 'happen': 1.0, 'will': 1.0, 'sleeping': 1.0, 'safely': 1.0, 'both': 1.0, 'there': 1.0, 'monitor': 3.0, 'joke': 1.0, 'life': 1.0, 'if': 3.0, 'lucky': 2.0, 're': 1.0, 'worse': 2.0, 'truly': 1.0, 'loses': 1.0, 'it': 7.0, 'your': 1.0, 'constantly': 1.0, 'on': 4.0, 'so': 1.0, 'time': 1.0, 'awhile': 1.0, 'getting': 1.0, 'plugged': 1.0, 'and': 6.0, 'stay': 1.0, 'not': 2.0, 'me': 1.0, 'is': 7.0, 'warranty': 1.0, 'really': 1.0, 'features': 1.0, 'piece': 1.0, 'with': 2.0, 'this': 8.0, 'went': 1.0, 'born': 1.0, 'shows': 1.0, 'due': 1.0, 'was': 2.0, 'march': 1.0, 'husband': 1.0, 'junk': 1.0, 'i': 2.0, 'even': 1.0, 'got': 2.0, 'to': 1.0, 'as': 4.0, 'feet': 1.0, 'third': 1.0, 'replacement': 1.0, 'a': 4.0, 'units': 1.0, 'thankfully': 1.0, 'who': 1.0, 'since': 1.0, 'well': 1.0, 'gift': 1.0, 'sound': 1.0, 'child': 2.0, 'no': 1.0, 'battery': 1.0, 'january': 1.0, 'reaches': 1.0, 'back': 2.0, 'my': 2.0, 'turn': 1.0, 'in': 3.0, 'for': 2.0, 'buy': 1.0, 'sent': 1.0, 'when': 3.0, 'you': 6.0, 'are': 3.0, 'iffy': 1.0, 'the': 3.0, 'great': 1.0, 'they': 1.0, 'reviews': 1.0, 'thought': 1.0, 'would': 1.0, 'be': 1.0, 'especially': 1.0, 'can': 1.0, 'reception': 1.0, '2': 1.0, 'but': 3.0, 'distance': 2.0, 'let': 1.0, 'worked': 1.0, 'tell': 1.0}
Word element => {'more': 1.0, 'two': 1.0, 'for': 1.0, 'looking': 1.0, 'battery': 1.0, 'that': 1.0, 'set': 1.0, 'full': 1.0, 'nice': 1.0, 'size': 1.0, 'yo': 1.0, 'of': 1.0, 'good': 1.0, 'just': 1.0, 'functionsgood': 1.0, 'and': 1.0, 'need': 1.0, 'be': 1.0, 'provided': 1.0, 'by': 1.0}
Word element => {'else': 1.0, 'something': 1.0, 'for': 1.0, 'shopping': 1.0, 'am': 1.0, 'peep': 1.0, 'nary': 1.0, 'what': 1.0, 'house': 1.0, 'across': 1.0, 'connection': 1.0, 'reset': 1.0, 'phrase': 1.0, 'baby': 5.0, 'unit': 5.0, 'parent': 2.0, 'it': 4.0, 'loses': 1.0, 'me': 1.0, 'my': 1.0, 'be': 2.0, 'randomly': 1.0, 'turning': 1.0, 'advertises': 1.0, 'problem': 2.0, 'wish': 1.0, 'this': 3.0, 'but': 2.0, 'without': 1.0, 'by': 2.0, 'after': 1.0, 'had': 1.0, 'was': 1.0, 'doesn': 2.0, 'one': 2.0, 'looking': 1.0, 'using': 1.0, 'know': 1.0, 'sleeping': 1.0, 'a': 2.0, 't': 3.0, 's': 2.0, 'up': 2.0, 'seldom': 1.0, 'sound': 1.0, 'the': 13.0, 'of': 1.0, 'wake': 2.0, 'manufacture': 1.0, 'year': 1.0, 'and': 5.0, 'monitor': 4.0, 'didn': 1.0, 'beeping': 1.0, 'get': 1.0, 'resting': 1.0, 'putting': 1.0, 'i': 3.0, 'showing': 1.0, 'two': 1.0, 'old': 1.0, 'outside': 1.0, 'any': 1.0, 'to': 2.0, 'all': 1.0, 'really': 2.0, 'return': 1.0, 'warranty': 1.0, 'reviews': 1.0, 'we': 3.0, 'then': 1.0, 'through': 2.0, 'are': 1.0, 'working': 1.0, 'sending': 3.0, 'night': 1.0, 'starts': 1.0, 'you': 5.0, 'beeps': 1.0, 'again': 1.0, 'next': 1.0, 'that': 3.0, 'wait': 1.0, 'near': 1.0, 'on': 1.0, 'will': 2.0, 'wails': 1.0, 'turn': 1.0, 'if': 3.0, 'placing': 1.0, 'want': 1.0, 'can': 2.0, 'ironic': 1.0, 'graco': 1.0, 'with': 2.0, 'start': 1.0, 'reassurance': 1.0, 'is': 1.0, 'safe': 1.0, 'own': 1.0, 'off': 1.0, 'until': 2.0, 'yes': 1.0, 'do': 1.0, 'give': 1.0, 'seem': 1.0, 'temperature': 1.0, 'some': 1.0, 'sometimes': 1.0, 'static': 1.0, 'from': 2.0}
Word element => {'window': 1.0, 'of': 1.0, 'then': 1.0, 'one': 1.0, 'new': 1.0, 'find': 1.0, 'can': 1.0, 'until': 1.0, 'holding': 1.0, 'everywhere': 1.0, 'plug': 1.0, 'have': 1.0, 'either': 1.0, 'wireless': 1.0, 'm': 3.0, 'when': 1.0, 'daughter': 1.0, 'just': 1.0, 'even': 1.0, 'house': 1.0, 'off': 2.0, 'with': 2.0, 'this': 3.0, 'loud': 1.0, 'it': 5.0, 'first': 1.0, 'cuts': 1.0, 'my': 2.0, 'words': 1.0, 'out': 1.0, 'beep': 1.0, 'that': 1.0, 'next': 1.0, 'makes': 1.0, 'and': 2.0, 'hate': 1.0, 'monitor': 1.0, 'not': 1.0, 'me': 1.0, 'waa': 1.0, 'on': 3.0, 'constantly': 1.0, 'how': 1.0, 'vibrate': 1.0, 'like': 1.0, 'cannot': 1.0, 'in': 3.0, 'only': 1.0, 'much': 1.0, 'room': 1.0, 'i': 8.0, 'beeping': 1.0, 'kicking': 1.0, 'night': 1.0, 'the': 5.0, 'express': 1.0, 'thing': 2.0, 'if': 1.0, 'want': 1.0, 'all': 1.0, 'to': 3.0, 'throw': 1.0, 'go': 1.0, 'a': 2.0, 't': 1.0, 's': 2.0, 'cries': 1.0, 'shuts': 1.0, 'don': 1.0}
Word element => {'someone': 1.0, 'before': 1.0, 'wondering': 1.0, 'each': 1.0, 'terrible': 1.0, 'worth': 1.0, 'did': 1.0, 'with': 1.0, 'trouble': 1.0, 'reading': 1.0, 'after': 1.0, 'your': 1.0, 'recommend': 1.0, 'not': 3.0, 'say': 2.0, 'sad': 1.0, 'money': 2.0, 'bought': 1.0, 'protection': 1.0, 'us': 1.0, 'friends': 1.0, 'decided': 1.0, 'thank': 1.0, 'happpened': 1.0, 'never': 1.0, 'some': 1.0, 'knew': 1.0, 'woken': 1.0, 'back': 1.0, 'm': 1.0, 'hadn': 2.0, 'in': 2.0, 'said': 1.0, 'than': 1.0, 'wake': 1.0, 'shower': 1.0, 'happened': 1.0, 'what': 1.0, 'goodness': 1.0, 'when': 1.0, 'again': 1.0, 'using': 1.0, 'know': 1.0, 'that': 8.0, 'been': 1.0, 'was': 5.0, 'once': 1.0, 'room': 2.0, 's': 1.0, 'a': 2.0, 'reviews': 1.0, 'we': 4.0, 't': 5.0, 'plan': 1.0, 'gift': 1.0, 'returned': 1.0, 'son': 2.0, 'sony': 1.0, 'to': 5.0, 'other': 1.0, 'all': 1.0, 'two': 1.0, 'well': 1.0, 'i': 17.0, 'ours': 1.0, 'let': 1.0, 'at': 2.0, 'beep': 1.0, 'either': 1.0, 'weeks': 2.0, 'would': 2.0, 'my': 5.0, 'me': 1.0, 'time': 3.0, 'heard': 2.0, 'and': 10.0, 'monitor': 4.0, 'checked': 1.0, 'temperature': 1.0, 'loved': 1.0, 'okay': 1.0, 'felt': 2.0, 'of': 5.0, 'the': 13.0, 'great': 1.0, 'sure': 1.0, 'seemed': 1.0, 'night': 3.0, 'others': 1.0, 'baby': 1.0, 'tired': 1.0, 'him': 3.0, 'it': 12.0, 'thought': 2.0, 'had': 4.0, 'up': 4.0, 'don': 2.0, 'about': 1.0, 'for': 1.0, 'actually': 1.0, 'brother': 1.0, 'his': 1.0, 'feeding': 1.0, 'cried': 1.0, 'opened': 1.0, 'into': 2.0, 'talk': 1.0, 'bedroom': 1.0, 'went': 1.0, 'woke': 1.0, 'more': 1.0, 'door': 1.0, 'our': 3.0, 'how': 2.0, 'love': 1.0, 'he': 1.0, 'shutting': 1.0, 'screaming': 2.0, 'this': 4.0, 'few': 1.0, 'came': 1.0, 'crying': 1.0, 'see': 1.0, 'off': 2.0, 'but': 3.0, 'as': 2.0, 'horrible': 1.0, 'turned': 2.0, 'realize': 1.0, 'long': 2.0, 'on': 4.0, 'wasting': 1.0, 'put': 1.0, 'everything': 1.0, 'can': 1.0, 'so': 2.0, 'from': 1.0, 'being': 2.0, 'later': 1.0, 'middle': 2.0, 'hours': 1.0, 'bed': 1.0, 'realized': 1.0, 'wasn': 1.0, 'out': 1.0, 'people': 1.0, 'mind': 1.0, 'got': 2.0, 'daughter': 1.0, 'her': 1.0}
Word element => {'together': 1.0, 'brand': 1.0, 'another': 1.0, 'drove': 1.0, 'happening': 1.0, 'buy': 1.0, 'something': 1.0, 'even': 1.0, 'would': 1.0, 'those': 1.0, 'have': 1.0, 'keep': 2.0, 'three': 1.0, 'y': 1.0, 'especially': 1.0, 'stand': 1.0, 'us': 1.0, 'plugged': 1.0, 'and': 2.0, 'time': 2.0, 'at': 1.0, 'is': 3.0, 'sensitive': 1.0, 'so': 2.0, 'can': 4.0, 'music': 2.0, 'aren': 1.0, 'breathing': 1.0, 'useful': 1.0, 'our': 4.0, 'as': 1.0, 'all': 2.0, 'most': 2.0, 'sleep': 1.0, 'southwest': 1.0, 'living': 1.0, 'etc': 1.0, 'i': 6.0, 'reading': 3.0, 'like': 1.0, 'whole': 1.0, 'battery': 1.0, 'vibrates': 1.0, 'having': 1.0, 'registry': 1.0, 'found': 1.0, 'this': 1.0, 'good': 1.0, 'gift': 1.0, 'a': 2.0, 'we': 5.0, 't': 5.0, 's': 3.0, 'going': 2.0, 'very': 3.0, 'monitor': 2.0, 'daughter': 1.0, 'got': 1.0, 'didn': 1.0, 'fear': 1.0, 'florida': 1.0, 'vibrate': 2.0, 'from': 1.0, 'feels': 1.0, 'temperature': 3.0, 'but': 1.0, 'chose': 1.0, 'it': 14.0, 'baby': 3.0, 'she': 1.0, 'seemed': 1.0, 'option': 2.0, 'tech': 1.0, 'to': 5.0, 'high': 1.0, 'light': 1.0, 'just': 3.0, 'when': 2.0, 'on': 2.0, 'think': 1.0, 'completely': 2.0, 'static': 1.0, 'sometimes': 1.0, 'whenever': 1.0, 'toggles': 1.0, 'between': 1.0, 'different': 1.0, 'hearing': 1.0, 'her': 2.0, 'in': 3.0, 'temps': 1.0, 'night': 2.0, 'cries': 1.0, 'the': 10.0, 'of': 3.0, 'disturbing': 1.0, 'be': 3.0, 'suddenly': 1.0, 'issues': 2.0, 'though': 1.0, 'because': 2.0, 'that': 3.0, 'blinks': 1.0, 'out': 3.0, 'room': 1.0, 'worry': 1.0, 'not': 1.0, 'scares': 1.0, 'me': 1.0, 'my': 2.0, 'blink': 1.0, 'or': 1.0, 'husband': 1.0, 'hear': 3.0, 'if': 2.0}
Word element => {'returning': 1.0, 'be': 1.0, 'linear': 1.0, 'foot': 1.0, 'square': 1.0, 'they': 1.0, 'systems': 1.0, 'measurement': 1.0, 'confusion': 1.0, 'or': 1.0, 'claim': 1.0, 'covering': 1.0, '400': 1.0, 'signal': 1.0, 'some': 1.0, 'work': 1.0, 'but': 1.0, 'video': 1.0, 'color': 1.0, 'digital': 1.0, 'touch': 1.0, 'infant': 1.0, 'room': 1.0, 'big': 1.0, 'sleeping': 1.0, 'range': 1.0, 'get': 2.0, 'not': 1.0, 'me': 1.0, 'monitor': 4.0, 'and': 2.0, 'would': 1.0, 'monitorwas': 1.0, 'allow': 1.0, 'claims': 1.0, 'meant': 1.0, 'thesummer': 1.0, 'for': 2.0, 'while': 1.0, 'marketing': 1.0, 'i': 5.0, 'tried': 1.0, 'ploy': 1.0, 'this': 3.0, 'it': 2.0, 'at': 3.0, 'outside': 1.0, 'to': 3.0, 'purchased': 1.0, '2000': 4.0, 'store': 1.0, 'will': 2.0, '200': 2.0, 'see': 1.0, 'looking': 1.0, 'feet': 6.0, 'baby': 4.0, 'solely': 1.0, 'home': 1.0, 'made': 1.0, 's': 1.0, 'a': 6.0, 'could': 2.0, 'in': 2.0, 'the': 2.0, 'maybe': 1.0, 'because': 1.0, 'yard': 2.0, 'my': 3.0, 'is': 2.0, 'have': 1.0, 'spotty': 1.0, 'of': 1.0, 'walk': 1.0, 'that': 2.0, 'box': 1.0, 'into': 1.0, 'am': 1.0, 'local': 1.0, 'barely': 1.0, 'even': 1.0}
Word element => {'richer': 1.0, 'better': 1.0, 'will': 1.0, '2': 1.0, 'quiet': 2.0, 'several': 1.0, 'tie': 1.0, 'out': 2.0, 'feet': 1.0, 'probably': 1.0, 'your': 2.0, 'stops': 1.0, 'room': 1.0, 'years': 1.0, 'range': 1.0, 'nice': 1.0, 'a': 3.0, 'we': 4.0, 't': 3.0, 's': 1.0, 'can': 1.0, 'constantly': 1.0, 'so': 3.0, 'them': 1.0, 'target': 1.0, 'to': 2.0, 'our': 2.0, 'have': 1.0, 'are': 1.0, 'working': 3.0, 'beeps': 1.0, 'when': 1.0, 'you': 2.0, 'used': 1.0, 'by': 1.0, 'screaming': 1.0, 'it': 6.0, 'numerous': 1.0, 'stopped': 1.0, 'loses': 1.0, 'this': 1.0, 'work': 1.0, 'hard': 1.0, 'digital': 1.0, '50': 2.0, 'and': 7.0, 'monitor': 4.0, 'worst': 1.0, 'last': 1.0, 'is': 6.0, 'got': 1.0, 'use': 1.0, 'she': 1.0, 'baby': 3.0, 'the': 6.0, 'of': 2.0, 'hear': 1.0, 'after': 1.0, 'even': 1.0, 'base': 1.0, 'went': 1.0, 'his': 1.0, 'mere': 1.0, 'whether': 1.0, 'head': 1.0, 'off': 2.0, 'good': 1.0, 'connection': 1.0, 'with': 1.0, 'all': 1.0, 'cans': 1.0, 'never': 1.0, 'know': 1.0, 'sleeping': 1.0, 'in': 1.0, 'toddler': 1.0, 'child': 1.0, '20': 1.0, 'problems': 1.0, 'that': 3.0, 'because': 2.0, 'or': 1.0, 'far': 1.0, 'he': 1.0, 'yet': 1.0, 'isn': 1.0, 'money': 1.0, 'bought': 1.0, 'time': 1.0, 'model': 1.0, 'was': 1.0, 'doesn': 1.0, 'supposed': 1.0, 'for': 1.0, 'be': 2.0, '1000': 1.0, 'ft': 1.0, 'away': 1.0, 'save': 1.0, 'rinse': 1.0, 'string': 1.0, 'between': 1.0}
Word element => {'too': 1.0, 'that': 1.0, 'grownups': 1.0, 'made': 1.0, 'for': 1.0, 'something': 1.0, 'wish': 1.0, 'this': 1.0, 'i': 1.0, 'matches': 1.0, 'perfectly': 1.0, 'it': 1.0, 'is': 1.0, 'super': 1.0, 'soft': 1.0, 'like': 1.0, 'and': 1.0, 'they': 1.0, 'our': 1.0, 'blanket': 1.0, 'warm': 1.0, 'nursery': 1.0}
Word element => {'just': 1.0, 'finally': 1.0, 'an': 1.0, 'extra': 1.0, 'day': 1.0, 'rough': 1.0, 'having': 1.0, 'down': 1.0, 'calm': 1.0, 'thing': 1.0, 'only': 1.0, 'the': 1.0, 'him': 1.0, 'be': 1.0, 'was': 1.0, 'became': 1.0, 'gift': 1.0, 'baby': 1.0, 'whenever': 1.0, 'to': 1.0, 'as': 1.0, 'son': 2.0, 'very': 1.0, 'blanket': 4.0, 'start': 1.0, '34': 2.0, 'his': 3.0, 'once': 1.0, 'of': 1.0, 'shower': 1.0, 'this': 4.0, 'received': 1.0, 'he': 7.0, 'with': 1.0, 'it': 4.0, 'my': 2.0, 'in': 1.0, 'snuggle': 1.0, 'case': 1.0, 'that': 1.0, 'loves': 1.0, 'would': 1.0, 'never': 1.0, 'noticed': 1.0, 'go': 1.0, 'a': 2.0, 'we': 2.0, 's': 2.0, '18': 1.0, 'one': 1.0, 'bought': 1.0, 'mobile': 2.0, 'months': 1.0, 'too': 1.0, 'and': 2.0, 'say': 1.0, 'is': 1.0, 'gives': 1.0, 'when': 1.0, 'nudna': 2.0, 'can': 1.0, 'but': 1.0, 'now': 1.0, 'leaves': 1.0, 'let': 1.0, 'everywhere': 1.0, 'behind': 1.0, 'drags': 1.0, 'seems': 1.0, 'also': 1.0, 'named': 1.0}
Word element => {'baby': 1.0, 'them': 1.0, 'cute': 1.0, 'dolls': 1.0, 'so': 1.0, 'ago': 1.0, 'for': 1.0, 'years': 1.0, 'pins': 1.0, 'my': 2.0, 'are': 1.0, 'use': 1.0, 'diapers': 1.0, 'just': 1.0, 'these': 1.0, 'used': 1.0, 'sons': 1.0, 'like': 1.0, 'i': 2.0, '50': 1.0, 'on': 1.0}
Word element => {'want': 1.0, 'pins': 2.0, 'walgreen': 1.0, 'them': 1.0, 'more': 1.0, 'asked': 1.0, 'on': 1.0, 'shipment': 1.0, 'manager': 1.0, 'could': 1.0, 's': 1.0, 'a': 2.0, 'i': 4.0, 'suppose': 1.0, 'with': 2.0, 'he': 1.0, 'sticky': 1.0, 'located': 1.0, 'price': 1.0, 'are': 1.0, 'the': 4.0, 'diaper': 2.0, 'at': 1.0, 'tape': 1.0, 'about': 1.0, 'no': 1.0, 'thing': 1.0, 'where': 1.0, 'disposal': 1.0, 'found': 1.0, 'cute': 1.0, 'reasonable': 1.0, 'ducks': 1.0, 'even': 1.0, 'diapers': 1.0, 'past': 1.0, 'but': 1.0, 'blue': 1.0, 'of': 2.0, 'were': 1.0, 'and': 1.0, 'what': 2.0, 'had': 1.0, 'was': 1.0, 'you': 1.0, 'idea': 1.0, 'fast': 1.0, 'right': 1.0, 'talking': 1.0, 'here': 1.0, 'use': 1.0, 'amazon': 1.0}
Word element => {'preferred': 1.0, 'have': 1.0, 'i': 1.0, 'found': 1.0, 'photo': 1.0, 'than': 1.0, 'in': 1.0, 'bluer': 1.0, 'actually': 1.0, 'are': 1.0, 'color': 1.0, 'my': 1.0, 'they': 2.0, 'more': 1.0, 'the': 2.0, 'these': 1.0, 'them': 1.0, 'be': 2.0, 'almost': 1.0, 'grey': 1.0, 'blue': 1.0, 'but': 1.0, 'will': 1.0, 'suit': 1.0, 'would': 1.0, 'look': 1.0, 'to': 2.0, 'purpose': 1.0}
Word element => {'overly': 1.0, 't': 1.0, 'don': 1.0, 'around': 1.0, 'tie': 1.0, 'squirm': 1.0, 'i': 2.0, 'it': 2.0, 'suppose': 1.0, 'but': 1.0, 'kid': 1.0, 'could': 1.0, 'to': 1.0, 'be': 1.0, 'secure': 1.0, 'more': 1.0, 'my': 1.0, 'tight': 1.0, 'therefore': 1.0, 'likes': 1.0}
Word element => {'sunflowers': 1.0, 'theme': 1.0, 'baby': 1.0, 's': 1.0, 'who': 1.0, 'is': 1.0, 'cousin': 1.0, 'this': 1.0, 'bag': 1.0, 'was': 1.0, 'adorable': 1.0, 'i': 2.0, 'love': 1.0, 'absolutely': 1.0, 'it': 2.0, 'got': 1.0, 'diaper': 1.0, 'for': 1.0, 'my': 1.0}
Word element => {'loves': 1.0, 'baby': 1.0, 'from': 1.0, 'move': 1.0, 'weight': 1.0, 'also': 1.0, 'slow': 1.0, 'fast': 1.0, 'once': 1.0, 'good': 1.0, 'return': 1.0, 'swinging': 2.0, 'or': 1.0, 'light': 1.0, 'just': 2.0, 'not': 3.0, 'm': 1.0, 'be': 1.0, 'which': 1.0, 'what': 1.0, 'operate': 1.0, 'ready': 1.0, 'is': 5.0, 'room': 2.0, 'before': 1.0, '5': 1.0, 'with': 1.0, 'annoying': 1.0, 'it': 9.0, 'wish': 1.0, 'this': 2.0, 'some': 1.0, 'house': 1.0, 'does': 1.0, 'very': 2.0, 'problems': 1.0, 'to': 8.0, 'its': 4.0, 'on': 4.0, 'ours': 1.0, 'law': 1.0, 'in': 1.0, 'for': 1.0, 'easy': 1.0, 'sure': 1.0, 'get': 1.0, 'too': 2.0, 'starting': 1.0, 'and': 3.0, 'swing': 5.0, 'fantastic': 1.0, 'manually': 1.0, 'have': 4.0, 'news': 1.0, 'i': 5.0, 'catches': 1.0, 'through': 1.0, 'mother': 1.0, 'defective': 1.0, 'the': 5.0, 'minutes': 1.0, 'was': 1.0, 'unfortunately': 1.0, 'my': 2.0, 'push': 1.0, 'every': 1.0, 'use': 1.0, 'time': 3.0, 'start': 1.0, 'isn': 1.0, 'could': 1.0, 'go': 1.0, 's': 2.0, 'a': 2.0, 't': 2.0, 'we': 2.0, 'excited': 1.0, 'until': 1.0, 'process': 1.0, 'but': 2.0, 'can': 3.0, 'finally': 1.0, 'own': 4.0, 'problem': 1.0, '10': 1.0, 'if': 2.0, 'sometimes': 1.0, 'take': 1.0, 'don': 1.0, 'up': 1.0}
Word element => {'expecting': 1.0, 'was': 1.0, 'better': 1.0, 'swings': 1.0, 'motor': 1.0, 'decent': 1.0, 'have': 1.0, 'portable': 1.0, 'be': 1.0, 'would': 1.0, 'travel': 1.0, 'large': 1.0, 'it': 5.0, 'this': 1.0, 'with': 2.0, 'snugabunny': 1.0, 'little': 1.0, 'price': 2.0, 'for': 1.0, 'fit': 1.0, 'more': 1.0, 'is': 2.0, 'unscrew': 1.0, 'frame': 1.0, 'still': 1.0, 'while': 1.0, 'trunk': 1.0, 'sedan': 1.0, 'smaller': 1.0, 'my': 2.0, 'thought': 1.0, 'to': 2.0, 'our': 1.0, 'seat': 2.0, 'fisher': 1.0, 'of': 2.0, 'metal': 1.0, 'in': 1.0, 'does': 1.0, 'than': 2.0, 'having': 1.0, 'wouldn': 1.0, 'midsize': 1.0, 'only': 1.0, 'much': 2.0, 'pack': 1.0, 'too': 1.0, 'and': 3.0, 'play': 1.0, 'stroller': 1.0, '2': 1.0, 'but': 1.0, 'the': 4.0, 'without': 1.0, 'off': 1.0, 't': 1.0, 'a': 2.0, 's': 1.0, 'screws': 1.0, 'i': 2.0}
Word element => {'made': 1.0, 'how': 1.0, 'is': 2.0, 'wasnt': 1.0, 'a': 1.0, 'thinking': 1.0, 'exchanged': 1.0, 'returned': 1.0, 'grandson': 1.0, 'cute': 1.0, 'another': 1.0, 'price': 1.0, 'was': 4.0, 'its': 1.0, 'the': 2.0, 'piece': 1.0, 'support': 1.0, 'my': 1.0, 'because': 1.0, 'seat': 2.0, 'no': 1.0, 'it': 2.0, 'this': 2.0, 'and': 2.0, 'bought': 1.0, 'i': 2.0, 'right': 1.0, 'however': 1.0, 'there': 3.0, 'almost': 1.0, 'dangerous': 1.0, 'back': 1.0, 'which': 1.0, 'missing': 1.0, 'for': 2.0, 'actually': 1.0}
Word element => {'baby': 1.0, 'the': 1.0, 'of': 1.0, 'ages': 1.0, 'at': 1.0, 'i': 1.0, 'options': 1.0, 'it': 1.0, 'love': 1.0, 'you': 1.0, 'different': 1.0, 'available': 1.0, 'with': 1.0, 'this': 1.0, 'to': 2.0, 'product': 1.0, 'all': 1.0, 'use': 1.0}
Word element => {'use': 1.0, 'sufficient': 1.0, 'of': 1.0, 'time': 1.0, 'run': 1.0, 'older': 1.0, 'gets': 1.0, 'he': 1.0, 'enjoy': 1.0, 'little': 1.0, 'red': 1.0, 'spinning': 1.0, 'by': 1.0, 'baby': 1.0, 'about': 1.0, 'runs': 1.0, 'wheel': 1.0, 'only': 1.0, 'bedtime': 1.0, 'naps': 1.0, 'own': 1.0, 'calm': 1.0, 'securely': 1.0, 'top': 1.0, 'supposed': 1.0, 'for': 3.0, 'fit': 2.0, 'wide': 1.0, 'likes': 1.0, 'has': 2.0, 'month': 1.0, 'it': 4.0, 'activated': 1.0, 'minute': 2.0, 'this': 2.0, '15': 1.0, 'simple': 1.0, 'is': 2.0, 'fall': 1.0, 'a': 2.0, 'we': 2.0, 't': 1.0, 'others': 1.0, 'be': 1.0, 'him': 2.0, 'wouldn': 1.0, 'got': 1.0, 'one': 1.0, 'lively': 1.0, 'mobile': 1.0, 'will': 2.0, 'because': 2.0, 'size': 1.0, 'crib': 2.0, 'that': 1.0, 'been': 2.0, '5': 1.0, 'rail': 1.0, 'old': 1.0, 'but': 1.0, '2': 1.0, 'most': 1.0, 'music': 3.0, 'and': 3.0, 'feature': 1.0, 'i': 1.0, 'watching': 1.0, 'motion': 1.0, 've': 1.0, 'using': 1.0, 'successfully': 1.0, 'as': 1.0, 'any': 1.0, 'our': 4.0, 'to': 2.0, 'the': 6.0, 'asleep': 1.0, 'soothing': 2.0, 'down': 1.0, 'his': 1.0, 'help': 1.0, 'think': 1.0, 'on': 1.0}
Word element => {'momento': 1.0, 'disfrutado': 1.0, 'ha': 1.0, 'compra': 1.0, 'lo': 1.0, 'mi': 2.0, 'seguro': 1.0, 'este': 1.0, 'mejor': 1.0, 'para': 1.0, 'practico': 1.0, 'movil': 1.0, 'el': 2.0, 'mucho': 1.0, 'bebe': 2.0, 'hasta': 1.0, 'tiene': 1.0, 'varias': 1.0, 'melodias': 1.0, 'y': 1.0, 'es': 2.0, 'muy': 1.0}
Word element => {'your': 1.0, 'recommend': 1.0, 'people': 1.0, 'lot': 1.0, 'but': 1.0, 'get': 1.0, 'if': 2.0, 'wouldn': 2.0, 'baby': 2.0, 'reset': 1.0, 'there': 1.0, 'spin': 1.0, '15min': 2.0, 'is': 1.0, 'more': 1.0, 'should': 1.0, 'time': 1.0, 'so': 4.0, 'from': 2.0, 'very': 1.0, 'sleeping': 2.0, 'the': 4.0, 'control': 1.0, 'these': 1.0, 'my': 1.0, 'this': 2.0, 'only': 1.0, 'you': 1.0, 'severe': 1.0, 'her': 5.0, 'good': 1.0, 'or': 1.0, 'sleep': 1.0, 'to': 7.0, 'had': 2.0, 'now': 1.0, 'old': 1.0, 'i': 4.0, 'bouncer': 2.0, '15': 1.0, 'bad': 1.0, 'transitioning': 2.0, 'crib': 4.0, 'swing': 1.0, '3month': 1.0, 'm': 1.0, 'for': 3.0, 'every': 1.0, 'min': 1.0, 'not': 2.0, 'than': 1.0, 'because': 2.0, 'mobile': 1.0, 'guess': 1.0, 'spins': 1.0, 'that': 1.0, 'be': 1.0, 'trying': 1.0, 'a': 1.0, 't': 2.0, 'go': 2.0, 's': 2.0, 'we': 1.0, 'have': 5.0, 'upright': 1.0, 'of': 2.0, 'comfortable': 1.0, 'reflux': 1.0, 'it': 4.0, 'she': 1.0, 'in': 4.0, 'and': 2.0, 'under': 1.0, 'transition': 2.0}
Word element => {'instantly': 1.0, 'died': 1.0, 'pretty': 1.0, 'think': 1.0, 'since': 1.0, 'spinner': 1.0, 'for': 1.0, 'right': 1.0, 'have': 1.0, 'you': 1.0, 'get': 1.0, 'song': 1.0, 'would': 1.0, 'almost': 1.0, 'activates': 1.0, 'girl': 1.0, 'spin': 2.0, 'doesnt': 2.0, 'my': 2.0, 'baby': 1.0, 'quit': 1.0, 'that': 1.0, 'brand': 1.0, 'good': 1.0, 'different': 1.0, 'few': 1.0, 'mines': 1.0, 'had': 1.0, 'to': 5.0, 'difficult': 1.0, 'still': 1.0, 'sometimes': 3.0, 'after': 1.0, 'later': 1.0, 'days': 1.0, 'like': 1.0, 'pros': 1.0, 'upbeat': 1.0, '9': 1.0, 'music': 2.0, 'playtime': 1.0, 'problem': 2.0, 'well': 1.0, 'go': 1.0, 'a': 2.0, 'it': 5.0, 'its': 2.0, 'only': 2.0, 'then': 1.0, 'working': 1.0, 'through': 1.0, 'overall': 1.0, 'sleepy': 2.0, 'batteries': 1.0, 'way': 1.0, 'cons': 1.0, 'touch': 1.0, 'theres': 1.0, 'tug': 1.0, 'other': 3.0, 'i': 2.0, 'two': 1.0, 'seemed': 1.0, 'modes': 1.0, 'of': 1.0, 'mobile': 2.0, 'months': 1.0, 'one': 2.0, 'laidback': 1.0, 'play': 1.0, 'and': 1.0, 'the': 7.0, 'is': 4.0, 'more': 2.0}
Word element => {'immediately': 1.0, 'wakes': 1.0, 'with': 1.0, 'plays': 1.0, 'out': 2.0, 'figured': 1.0, 'nap': 1.0, 'but': 1.0, 'before': 1.0, 'had': 1.0, 'back': 1.0, 'consistently': 1.0, 'got': 1.0, 'by': 1.0, 'room': 1.0, 'minutes': 1.0, 'another': 1.0, 'something': 1.0, 'needed': 1.0, 'only': 1.0, 'drowsy': 1.0, 'wasn': 1.0, 'couple': 2.0, 'easier': 1.0, 'crib': 3.0, 'happily': 1.0, 'asleep': 2.0, 'side': 1.0, 'from': 2.0, 'button': 1.0, 'instead': 1.0, 'hit': 1.0, 'having': 1.0, 'makes': 1.0, 'keep': 2.0, 'time': 2.0, 'played': 1.0, 'daytime': 1.0, 'mobile': 4.0, 'bought': 1.0, 'her': 13.0, 'carousel': 1.0, 'now': 1.0, 'almost': 1.0, 'animals': 2.0, 'closer': 1.0, 'honest': 1.0, 'wish': 1.0, 'liked': 1.0, 'have': 1.0, 'weeks': 1.0, 'would': 1.0, 'position': 2.0, 'on': 6.0, 'think': 2.0, 'better': 1.0, 'music': 3.0, '2': 1.0, 'head': 1.0, 'start': 1.0, 'where': 1.0, 'for': 5.0, 'like': 1.0, 'angle': 1.0, '1': 1.0, 'baby': 1.0, 'she': 8.0, 'it': 10.0, 'crying': 1.0, 'naptime': 1.0, 'one': 1.0, 'lot': 1.0, 'crane': 1.0, 'a': 7.0, 's': 1.0, 'we': 2.0, 'ago': 1.0, 'likes': 2.0, 't': 3.0, 'up': 2.0, 'available': 1.0, 'first': 1.0, 'plus': 1.0, 'after': 1.0, 'cheapest': 1.0, 'face': 1.0, 'i': 9.0, 'feature': 1.0, 'fan': 1.0, 'reviewing': 1.0, 'and': 7.0, 'was': 1.0, 'mobiles': 1.0, 'amazon': 1.0, 'front': 2.0, 'this': 2.0, 'more': 3.0, 'at': 3.0, 'is': 1.0, 'of': 6.0, 'the': 18.0, 'without': 1.0, 'part': 1.0, 'over': 1.0, 'hard': 1.0, 'herself': 2.0, 'set': 1.0, 'ever': 1.0, 'all': 1.0, 'other': 1.0, 'an': 1.0, 'sort': 1.0, 'turned': 1.0, 'down': 1.0, 'when': 3.0, 'they': 1.0, 'moved': 2.0, 'get': 3.0, 'pretty': 1.0, 'to': 13.0, 'how': 1.0, 'our': 1.0, 'falls': 1.0, 'as': 1.0, 'little': 1.0, 'ceiling': 1.0, 'than': 1.0, 'way': 1.0, 'tried': 1.0, 'own': 1.0, 'see': 2.0, 'always': 1.0, 'them': 1.0, 'has': 2.0, 'needing': 1.0, 'fallen': 1.0, 'expensive': 1.0, 'neck': 1.0, 'versions': 1.0, 'turn': 2.0, 'if': 1.0, 'still': 1.0, 'that': 3.0, 'laughs': 1.0, 'us': 1.0, 'goingedit': 1.0, 'song': 1.0, 'also': 2.0, 'can': 1.0, 'so': 2.0, 'hadn': 1.0, 'in': 6.0, 'm': 1.0, 'meantime': 1.0, 'glad': 1.0, 'eventually': 1.0, 'dip': 1.0, 'didn': 1.0, 'larger': 1.0, 'be': 1.0, 'put': 2.0, 'much': 2.0}
Word element => {'that': 1.0, 'been': 1.0, 'really': 1.0, 'but': 3.0, 'towards': 2.0, 'due': 1.0, 'have': 1.0, 'needs': 1.0, 'also': 1.0, 'i': 1.0, 't': 1.0, 'the': 7.0, 'more': 1.0, 'it': 3.0, 'this': 1.0, 'mobile': 3.0, 'hang': 1.0, 'straight': 1.0, 'purchased': 1.0, 'all': 1.0, 'to': 2.0, 'child': 1.0, 'over': 1.0, 'on': 1.0, 'development': 1.0, 'tilt': 1.0, 'laying': 1.0, 'figures': 2.0, 'not': 1.0, 'primarily': 1.0, 'do': 1.0, 'face': 1.0, 'down': 1.0, 'meets': 2.0, 'rather': 1.0, 'basic': 2.0, 'cost': 1.0, 'would': 1.0, 'baby': 1.0, 'ahead': 1.0, 'crib': 1.0, 'purposes': 1.0, 'for': 1.0, 'eye': 1.0, 'doesn': 1.0, 'tracking': 1.0, 'great': 1.0, 'nice': 1.0}
Word element => {}
Word element => {'disappointed': 1.0, 'little': 1.0, 'out': 1.0, 'bag': 1.0, 'baby': 1.0, 'can': 1.0, 'consumer': 1.0, 'called': 1.0, 'assistance': 1.0, 'do': 1.0, 'how': 1.0, 'about': 1.0, 'no': 1.0, 'was': 2.0, 'there': 1.0, 'book': 1.0, 'instruction': 1.0, 'show': 1.0, 'sat': 1.0, 'put': 1.0, 'on': 1.0, 'bit': 1.0, 'time': 1.0, 'this': 2.0, 'first': 1.0, 'it': 3.0, 'she': 3.0, 'went': 1.0, 'played': 1.0, 'just': 1.0, 'got': 1.0, 'through': 1.0, 'then': 1.0, '8': 1.0, 'witht': 1.0, 'bar': 3.0, 'go': 1.0, 'steps': 1.0, 'a': 2.0, 'the': 11.0, 'suggestion': 1.0, 'showed': 1.0, 'booster': 1.0, 'my': 2.0, 'like': 1.0, 'i': 7.0, 'toy': 3.0, 'while': 1.0, 'old': 1.0, 'noticed': 1.0, 'and': 4.0, 'too': 1.0, 'am': 1.0, 'when': 2.0, 'folded': 1.0, 'is': 1.0, 'months': 1.0, 'one': 1.0, 'tray': 1.0, 'up': 1.0, 'of': 1.0, 'gave': 1.0, 'that': 1.0, 'seemed': 1.0, 'big': 1.0, 'seat': 3.0, 'to': 5.0, 'as': 1.0, 'for': 2.0, 'fit': 1.0, 'in': 2.0, 'they': 1.0, 'between': 1.0, 'back': 1.0, 'me': 1.0, 'photos': 1.0}
Word element => {'show': 1.0, 'smooth': 1.0, 'perfectly': 1.0, 'not': 1.0, 'that': 1.0, 'giving': 1.0, 'keeping': 1.0, 'so': 1.0, 'different': 1.0, 'up': 1.0, 'don': 1.0, 'like': 1.0, 'way': 1.0, 'even': 1.0, 'reorder': 1.0, 'love': 1.0, 'one': 2.0, 'such': 1.0, 'the': 7.0, 'pictures': 1.0, 'this': 2.0, 't': 1.0, 'a': 3.0, 'could': 1.0, 'was': 1.0, 'only': 1.0, 'its': 1.0, 'molding': 1.0, 'at': 1.0, 'as': 1.0, 'to': 2.0, 'seat': 2.0, 'son': 1.0, 'from': 1.0, 'want': 1.0, 'same': 1.0, '10': 1.0, 'great': 1.0, 'nice': 1.0, 'm': 1.0, 'price': 1.0, 'mart': 1.0, 'it': 4.0, 'elephant': 1.0, 'more': 1.0, 'is': 4.0, 'my': 1.0, 'find': 1.0, 'really': 1.0, 'cutest': 1.0, 'two': 1.0, 'i': 5.0, 'tried': 1.0, 'heads': 1.0, 'and': 2.0, 'issue': 1.0, 'attachment': 1.0, 'have': 2.0, 'toy': 1.0, 'has': 1.0, 'cross': 1.0, 'criss': 1.0, 'creases': 1.0, 'through': 1.0, 'wal': 1.0, 'press': 1.0, 'came': 1.0, 'but': 2.0}
Word element => {'her': 1.0, 'feeding': 1.0, 'we': 1.0, 'us': 1.0, 'daughter': 1.0, 'when': 1.0, 'entertaining': 1.0, 'clean': 1.0, 'to': 1.0, 'table': 1.0, 'easy': 1.0, 'at': 1.0, 'super': 1.0, 'otherwise': 1.0, 'on': 1.0, 'area': 1.0, 'small': 1.0, 'portable': 1.0, 're': 1.0, 'my': 1.0, 'the': 3.0, 'with': 1.0, 'only': 1.0, 'want': 1.0, 'is': 1.0, 'tray': 1.0, 'and': 2.0, 'for': 2.0, 'peeve': 1.0, 'dining': 1.0, 'perfect': 1.0, 'pet': 1.0, 'but': 2.0, 'our': 2.0, 'that': 1.0, 'snaps': 1.0, 'taking': 1.0, 'oddly': 1.0, 'off': 1.0, 'seem': 1.0, 'not': 1.0, 'difficult': 1.0}
Word element => {'top': 1.0, 'on': 1.0, 'was': 1.0, 'come': 1.0, 'thing': 1.0, 'only': 1.0, 'tell': 1.0, 'didn': 1.0, 'directions': 1.0, 'together': 1.0, 'up': 2.0, 'strap': 2.0, 'with': 4.0, 'carry': 1.0, 'fold': 1.0, 'awhile': 1.0, 'how': 2.0, 'it': 10.0, 'this': 2.0, 'older': 1.0, 'yet': 1.0, 'of': 2.0, 'be': 3.0, 'i': 5.0, 'places': 1.0, 'they': 1.0, 'take': 1.0, 'is': 1.0, 'really': 1.0, 'bought': 1.0, 'tray': 2.0, 'could': 1.0, 't': 1.0, 'a': 2.0, 'bar': 2.0, 'handy': 1.0, 'cute': 1.0, 'chair': 1.0, 'because': 2.0, 'not': 1.0, 'and': 3.0, 'folds': 1.0, 'sure': 1.0, 'get': 1.0, 'very': 2.0, 'toy': 2.0, 'all': 1.0, 'as': 1.0, 'to': 4.0, 'long': 1.0, 'pleased': 1.0, 'used': 1.0, 'you': 2.0, 'am': 1.0, 'someone': 1.0, 'can': 3.0, 'place': 1.0, 'the': 7.0, 'without': 1.0, 'love': 1.0, 'for': 1.0, 'fit': 1.0, 'in': 2.0, 'secure': 1.0, 'will': 2.0, 'seems': 1.0, 'small': 1.0, 'so': 2.0, 'purchase': 1.0, 'my': 1.0, 'hopefully': 1.0, 'able': 1.0, 'use': 1.0}
Word element => {'good': 1.0, 'not': 1.0, 'removed': 1.0, 'off': 1.0, 'or': 1.0, 'trying': 1.0, 'be': 1.0, 'insert': 4.0, 'found': 1.0, 'full': 1.0, 'borrowed': 1.0, 'cute': 1.0, 'darn': 1.0, 'tell': 1.0, 'll': 1.0, 'viewfinder': 1.0, 'cannot': 1.0, 'like': 1.0, 'clear': 1.0, 'through': 1.0, 'ones': 1.0, 'do': 1.0, 'meal': 1.0, 'plan': 1.0, 'is': 4.0, 'leans': 1.0, 'meals': 1.0, 'their': 1.0, 'funny': 1.0, 'look': 1.0, 'fixing': 1.0, 'over': 1.0, 'up': 1.0, 'finishing': 1.0, 'remove': 1.0, 'it': 4.0, 'month': 1.0, 'puffs': 1.0, 'seats': 2.0, 'gift': 1.0, 'we': 3.0, 'a': 4.0, 'for': 1.0, 'love': 1.0, 'finger': 2.0, 'i': 2.0, 'old': 1.0, 'seat': 1.0, 'to': 5.0, 'our': 1.0, 'as': 1.0, 'play': 2.0, 'and': 5.0, 'they': 3.0, 'so': 1.0, 'time': 2.0, 'these': 1.0, 'triplet': 1.0, 'one': 1.0, 'tray': 5.0, 'either': 1.0, 'had': 1.0, 'bar': 3.0, 'purchased': 1.0, 'have': 2.0, 'still': 1.0, 'busy': 1.0, 'same': 1.0, '10': 1.0, 'now': 1.0, 'of': 1.0, 'the': 16.0, 'myself': 1.0, 'toy': 6.0, 'godchildren': 1.0, 'bars': 1.0, 'with': 3.0, 'food': 1.0, 'but': 1.0, 'four': 1.0, 'can': 2.0, 'think': 1.0, 'on': 5.0, 'put': 2.0, 'little': 1.0, 'foods': 1.0, 'get': 1.0, 'munch': 1.0, 'keeps': 1.0, 'three': 1.0, 'at': 1.0, 'find': 1.0, 'having': 1.0, 'baby': 1.0, 'them': 1.0, 'you': 3.0, 'when': 3.0}
Word element => {'happy': 1.0, 'am': 1.0, 'overall': 1.0, 'general': 1.0, 'other': 1.0, 'compared': 1.0, 'whimsy': 1.0, 'of': 1.0, 'adds': 1.0, 'on': 1.0, 'design': 1.0, 'until': 1.0, 'with': 3.0, 'lifesaver': 1.0, 'extremely': 1.0, 'he': 2.0, 'second': 1.0, 'eat': 2.0, 'wants': 1.0, 'fold': 1.0, 'there': 1.0, 'an': 1.0, 'seats': 2.0, 'his': 1.0, 'features': 1.0, 'many': 1.0, 'is': 2.0, 'i': 4.0, 'tray': 1.0, 'one': 1.0, 'love': 1.0, 'for': 1.0, 'but': 1.0, 'particularly': 1.0, 'aren': 1.0, 'genius': 1.0, 'like': 1.0, 'primary': 1.0, 'loves': 1.0, 'totally': 1.0, 'that': 2.0, 'basic': 1.0, 'are': 1.0, 'this': 2.0, 'booster': 1.0, 'it': 3.0, 'elephant': 2.0, 'better': 1.0, 'keep': 1.0, 'than': 1.0, 'a': 2.0, 's': 2.0, 't': 1.0, 'downs': 1.0, 'travel': 1.0, 'also': 1.0, 'in': 2.0, 'colors': 1.0, 'clips': 1.0, 'over': 1.0, 'back': 2.0, 'top': 1.0, 'seat': 4.0, 'to': 4.0, 'too': 1.0, 'and': 1.0, 'buckles': 1.0, 'playing': 1.0, 'the': 7.0, 'place': 1.0, 'toy': 2.0, 'baby': 1.0, 'bar': 2.0, 'have': 1.0, 'purchase': 1.0, 'impatient': 1.0, 'bit': 1.0, 'time': 1.0, 'boy': 1.0}
Word element => {'shop': 1.0, 'children': 1.0, 'their': 1.0, 'resale': 1.0, 'charity': 1.0, 'donate': 1.0, 'local': 2.0, 'restaurants': 1.0, 'boutique': 1.0, 'waiting': 1.0, 'standard': 1.0, 'than': 1.0, 'having': 1.0, 'or': 2.0, 'booster': 1.0, 'value': 1.0, 's': 4.0, 'a': 6.0, 'months': 2.0, 'entertainment': 1.0, 'tray': 1.0, 'is': 4.0, 'at': 1.0, 'handle': 1.0, 'whatever': 1.0, 'years': 1.0, 'for': 6.0, 'when': 2.0, 'sit': 1.0, 'we': 5.0, 'take': 1.0, 'chair': 4.0, '15': 1.0, 'wanted': 1.0, 'more': 2.0, 'granddaughter': 1.0, 'to': 10.0, 'our': 1.0, 'well': 1.0, 'has': 1.0, 'and': 1.0, 'play': 1.0, 'beach': 1.0, 'during': 1.0, 'ago': 1.0, 'likes': 1.0, 'along': 1.0, 'are': 1.0, 'loaned': 1.0, 'easy': 1.0, 'taken': 1.0, 'because': 1.0, 'thrilled': 1.0, 'meal': 1.0, 'this': 3.0, 'snack': 1.0, 'with': 2.0, 'it': 7.0, 'she': 2.0, 'the': 6.0, 'of': 1.0, 'compact': 1.0, 'us': 2.0, 'dinner': 1.0, 'finished': 1.0, 'out': 1.0, 'sturdy': 1.0, 'values': 1.0, 'have': 4.0, 'proved': 1.0, 'very': 1.0, 'clean': 1.0, 'while': 1.0, 'week': 1.0, 'changed': 1.0, 'up': 2.0, 'intervening': 1.0, 'parents': 1.0, 'maddie': 3.0, 'bar': 1.0, 'excellent': 1.0, 'on': 1.0, 'still': 2.0, 'if': 1.0, 'travel': 1.0, 'will': 1.0, 'over': 1.0, 'work': 1.0, 'bought': 1.0, 'money': 1.0, 'can': 1.0, 'several': 1.0, 'until': 1.0, 'big': 1.0, 'enough': 1.0, 're': 1.0, 'easier': 1.0, 'table': 1.0, 'in': 2.0, 'proudly': 1.0, 'grown': 1.0, 'be': 1.0, 'five': 1.0, 'real': 1.0, 'winner': 1.0}
Word element => {'name': 1.0, 'is': 1.0, 'to': 1.0, 'now': 1.0, 'son': 1.0, 'the': 2.0, 'my': 2.0, 'that': 1.0, 'out': 1.0, 'turtle': 1.0, '34': 2.0, 'says': 1.0, 'found': 1.0, 's': 1.0, 'wife': 1.0, 'everytime': 1.0, 'so': 1.0, 'and': 2.0, 'table': 1.0, 'go': 1.0, 'timmy': 2.0, 'we': 1.0, 'runs': 1.0, 'over': 1.0}
Word element => {'cute': 1.0, 'for': 1.0, 'us': 1.0, 'daughter': 1.0, 'high': 1.0, 'my': 1.0, 'chair': 1.0, 'inexpensive': 1.0, 'and': 2.0, 'boosts': 1.0, 'more': 1.0, 'the': 1.0, 'great': 1.0, 'her': 1.0, 'works': 1.0, 'no': 1.0, 'super': 1.0, 'seat': 1.0, 'it': 1.0, '22': 1.0, 'this': 1.0, 'is': 1.0, 'yay': 1.0, 'perfect': 1.0, 'mo': 1.0, 'to': 1.0, 'height': 1.0}
Word element => {'cute': 1.0, 'face': 1.0, 'turtle': 1.0, 'happy': 1.0, 'me': 1.0, 'really': 1.0, 'an': 1.0, 'learned': 1.0, 'needed': 1.0, 'what': 1.0, 'exactly': 1.0, 'reviews': 1.0, 'between': 1.0, 't': 1.0, 'we': 1.0, 'a': 2.0, 'did': 1.0, 'i': 2.0, 'wipe': 1.0, 'likes': 1.0, 'easier': 1.0, 'sink': 1.0, 'so': 2.0, 'made': 1.0, 'meals': 1.0, 'one': 1.0, 'us': 1.0, 'too': 1.0, 'and': 3.0, 'table': 1.0, 'price': 3.0, 'do': 1.0, 'much': 1.0, 'old': 1.0, 'this': 3.0, 'that': 1.0, 'loves': 1.0, 'or': 1.0, 'place': 1.0, 'the': 6.0, 'mention': 1.0, 'great': 3.0, 'booster': 2.0, 'at': 1.0, 'it': 2.0, 'month': 1.0, 'is': 4.0, 'son': 2.0, 'lesson': 1.0, '18': 1.0, 'as': 1.0, 'our': 1.0, 'to': 3.0, 'clean': 2.0, 'don': 1.0, 'up': 1.0, 'of': 1.0, 'than': 1.0, 'his': 1.0, 'expensive': 1.0, 'for': 2.0, 'highchair': 2.0, 'cushion': 1.0, 'straps': 1.0, 'buying': 1.0, 'with': 1.0, 'piece': 1.0, 'my': 3.0, 'tightly': 1.0, 'plastic': 1.0, 'sitting': 1.0, 'can': 1.0, 'other': 1.0, 'scratches': 1.0, 'prevent': 1.0, 'kitchen': 1.0, 'you': 1.0, 'chair': 2.0, 'on': 2.0, 'put': 1.0, 'in': 2.0, 'just': 2.0}
Word element => {'delighted': 1.0, 'family': 1.0, 'at': 1.0, 'booster': 1.0, 'solid': 1.0, 'money': 1.0, 'worth': 1.0, 'which': 1.0, 'undo': 1.0, 'but': 1.0, 'table': 1.0, 'she': 2.0, 'played': 1.0, 'xmas': 1.0, 'i': 1.0, 'old': 1.0, 'granddaughter': 1.0, 'was': 1.0, 'to': 2.0, 'join': 1.0, 'for': 2.0, 'amazon': 1.0, 'is': 1.0, 'herself': 1.0, 'dinner': 1.0, '2yr': 1.0, 'loved': 1.0, 'my': 1.0, 'the': 4.0, 'bought': 2.0, 'purchases': 1.0, 'it': 3.0, 'this': 1.0, 'with': 2.0, 'have': 1.0, 'able': 1.0, 'all': 2.0, 'from': 1.0, 'day': 2.0, 'could': 1.0, 'snap': 1.0, 'good': 1.0, 'into': 1.0, 'not': 1.0, 'seat': 1.0}
Word element => {'chair': 1.0, 'his': 1.0, 'down': 1.0, 'on': 2.0, 'what': 1.0, 'edge': 1.0, 'over': 1.0, 'that': 1.0, 'fact': 1.0, 'an': 1.0, 'under': 1.0, 'son': 1.0, 'very': 1.0, 'decided': 1.0, 'bonus': 1.0, 'enjoys': 1.0, 'way': 1.0, 'added': 1.0, 'this': 1.0, 'it': 4.0, 'he': 1.0, 'price': 1.0, 'simple': 1.0, 'quite': 1.0, 'off': 1.0, 'or': 1.0, 'going': 1.0, 's': 2.0, 'a': 2.0, 'at': 1.0, 'was': 1.0, 'our': 1.0, 'as': 1.0, 'seat': 2.0, 'to': 6.0, 'easy': 2.0, 'stays': 1.0, 'install': 1.0, 'floor': 1.0, 'see': 1.0, 'securely': 1.0, 'and': 3.0, 'the': 5.0, 'reach': 1.0, 'good': 1.0, 'clean': 1.0, 'attaches': 1.0, 'out': 1.0, 'is': 2.0, 'turtle': 1.0, 'him': 1.0, 'sides': 1.0, 'clip': 1.0, 'in': 1.0, 'stable': 1.0, 'even': 1.0, 'when': 1.0, 'lean': 1.0}
Word element => {'purchase': 1.0, 'definitely': 1.0, 'highchair': 1.0, 'to': 1.0, 'in': 1.0, 'having': 1.0, 'us': 1.0, 'table': 1.0, 'longer': 1.0, 'is': 1.0, 'seat': 1.0, 'sit': 1.0, 'have': 1.0, 'loves': 1.0, 'dinner': 1.0, 'pleased': 1.0, 'with': 2.0, 'this': 1.0, 'it': 1.0, 'son': 1.0, 'very': 1.0, 'and': 2.0, 'been': 1.0, 'small': 1.0, 'my': 1.0, 'great': 2.0, 'the': 1.0, 'we': 1.0, 'a': 3.0, 'sitting': 1.0, 'price': 1.0, 'no': 1.0, 'booster': 1.0, 'at': 1.0}
Word element => {'this': 1.0, 'bought': 1.0, 'is': 1.0, 'reason': 1.0, 'theme': 1.0, 'very': 2.0, 'i': 2.0, 'cute': 1.0, 'turtle': 1.0, 'inexpensive': 1.0, 'all': 2.0, 'which': 1.0, 'in': 2.0, 'good': 1.0, 'place': 1.0, 'first': 1.0, 'green': 1.0, 'product': 1.0, 'love': 1.0, 'the': 3.0}
Word element => {'no': 1.0, 'buy': 1.0, 'child': 1.0, 'adjusts': 1.0, 'appealing': 1.0, 'less': 1.0, 'brands': 1.0, 'other': 1.0, 'many': 1.0, 'which': 1.0, 'like': 1.0, 'adjust': 1.0, 'doesn': 1.0, 'it': 3.0, 'she': 1.0, 'so': 1.0, 'height': 2.0, 'percentile': 1.0, '98': 1.0, 'is': 1.0, 'makes': 1.0, 'old': 1.0, '2': 1.0, 'with': 1.0, 'mind': 1.0, 'keep': 1.0, 'kid': 2.0, 'that': 2.0, 'have': 3.0, 'this': 2.0, 'saw': 1.0, 'need': 1.0, 'one': 4.0, 'for': 4.0, 'i': 4.0, 'price': 3.0, 'baby': 2.0, 'thought': 1.0, 'had': 1.0, 't': 1.0, 's': 1.0, 'we': 1.0, 'a': 5.0, 'order': 1.0, 'then': 1.0, 'year': 1.0, 'sturdy': 1.0, 'grow': 1.0, 'our': 1.0, 'to': 5.0, 'seat': 2.0, 'my': 2.0, 'upgrade': 1.0, 'low': 1.0, 'high': 1.0, 'tall': 1.0, 'too': 1.0, 'and': 3.0, 'reach': 1.0, 'the': 6.0, 'sits': 1.0, 'would': 2.0, 'new': 1.0, 'on': 3.0, 'first': 1.0, 'pros': 1.0, 'fisher': 3.0, 'easy': 1.0, 'good': 1.0, 'her': 2.0, 'clean': 1.0, 'cute': 1.0, 'very': 1.0, 'light': 1.0, 'also': 1.0, 'seems': 1.0, 'age': 1.0, 'in': 2.0, 'cons': 1.0, 'way': 1.0, 'again': 1.0, 'when': 1.0, 'you': 1.0, 'daughter': 1.0, 'booster': 1.0, 'll': 1.0, 'chair': 1.0}
Word element => {'us': 1.0, 'toy': 1.0, '20': 1.0, 'deals': 1.0, 'the': 1.0, 'dollars': 1.0, 'more': 1.0, 'great': 1.0, 'these': 1.0, 'has': 1.0, 'amazon': 1.0, 'entertain': 1.0, 'to': 2.0, 'right': 1.0, 'similar': 1.0, 'got': 1.0, 'niece': 1.0, 'because': 2.0, 'little': 1.0, 'near': 1.0, 'few': 1.0, 'store': 1.0, 'needed': 1.0, 'she': 1.0, 'glad': 1.0, 'chair': 1.0, 'my': 1.0, 'we': 2.0, 'at': 2.0, 'something': 1.0, 'our': 1.0, 'house': 1.0, 'for': 1.0, 'a': 1.0, 'days': 1.0, 'costed': 1.0, 'gravitated': 1.0, 'this': 1.0, 'it': 1.0}
Word element => {'securely': 1.0, 'straps': 1.0, 'also': 1.0, 'log': 1.0, 'very': 1.0, 'are': 1.0, 'snaps': 1.0, 'of': 1.0, 'out': 1.0, 'he': 2.0, 'it': 5.0, 'daily': 1.0, 'this': 1.0, 'happy': 1.0, 'unlock': 1.0, 'from': 1.0, 'now': 1.0, 'to': 4.0, 'not': 1.0, 'we': 1.0, 'converted': 1.0, 'other': 1.0, 'i': 4.0, 'can': 1.0, 'would': 1.0, 'so': 1.0, 'am': 1.0, 'bought': 1.0, 'putting': 1.0, 'him': 2.0, 'be': 1.0, 'chair': 2.0, 'easy': 1.0, 'sure': 1.0, 'the': 4.0, 'my': 1.0, '18month': 1.0, 'uses': 1.0, 'no': 1.0, 'table': 1.0, 'm': 1.0, 'eat': 1.0, 'if': 1.0, 'problem': 1.0, 'high': 1.0, '18months': 1.0, 'is': 1.0, 'able': 1.0, 'have': 1.0, 'use': 1.0, 'old': 2.0, '35': 1.0, '5': 1.0, 'tall': 1.0, 'and': 2.0, 'at': 1.0, '29lbs': 1.0, 'in': 1.0}
Word element => {'old': 1.0, 'a': 1.0, 'year': 1.0, 'from': 1.0, 'likes': 1.0, 'he': 2.0, 'then': 1.0, 'the': 2.0, 'my': 1.0, 'reach': 1.0, 'what': 1.0, 'does': 1.0, 'but': 2.0, 'can': 1.0, 'table': 1.0, 'like': 1.0, 'to': 1.0, 'now': 2.0, 'is': 1.0, 'seat': 1.0, 'not': 1.0, 'being': 1.0, 'knows': 1.0, 'buckled': 1.0, 'expect': 1.0, 'two': 2.0, 'in': 1.0, 'so': 1.0, 'grandson': 1.0, 'who': 1.0}
Word element => {'works': 1.0, 'still': 1.0, 'up': 1.0, 'but': 1.0, 'put': 1.0, 'at': 1.0, 'son': 1.0, 'is': 1.0, 'to': 1.0, 'my': 1.0, 'boost': 2.0, 'small': 1.0, 'a': 3.0, 'seat': 1.0, 'little': 2.0, 'give': 1.0, 'the': 2.0, 'great': 2.0, 'he': 1.0, 'it': 3.0, 'dinner': 1.0, 'loves': 1.0, 'table': 1.0, 'thought': 1.0, 'that': 1.0, 's': 1.0, 'him': 1.0, 'would': 1.0, 'turtle': 1.0, 'higher': 1.0, 'pretty': 1.0, 'i': 1.0}
Word element => {'him': 1.0, 'highchairs': 1.0, 'gone': 1.0, 'of': 3.0, 'have': 1.0, 'able': 1.0, 'he': 1.0, 'it': 2.0, 'with': 1.0, 'and': 3.0, 'crib': 1.0, 'i': 3.0, 'two': 1.0, 'his': 1.0, 'both': 1.0, 'does': 1.0, 'long': 1.0, 'my': 2.0, 'climb': 1.0, 'through': 1.0, 'only': 1.0, 'much': 1.0, 'was': 1.0, 'out': 2.0, 'them': 1.0, 'son': 1.0, 'trick': 1.0, 'to': 2.0, 'as': 2.0, 'is': 3.0, 'anything': 1.0, 'pretty': 1.0, 'could': 1.0, 'so': 1.0, 'clean': 1.0, 'last': 1.0, 'get': 1.0, 'easy': 1.0, 'this': 2.0, 'resort': 1.0, 'but': 2.0, 'can': 1.0, 'not': 1.0, 'cute': 1.0, 'will': 1.0, 'also': 1.0, 'the': 1.0, 'use': 1.0}
Word element => {'chair': 1.0, 'securely': 1.0, 'face': 1.0, 'turtle': 1.0, 'daughter': 1.0, 'i': 1.0, 'fits': 1.0, 'perfect': 1.0, 'it': 1.0, 'love': 1.0, 'on': 1.0, 'is': 1.0, 'a': 1.0, 'loves': 1.0, 'this': 1.0, 'fit': 1.0, 'and': 1.0, 'the': 2.0, 'booster': 1.0, 'my': 1.0}
Word element => {'need': 1.0, 'you': 1.0, 'light': 1.0, 'but': 1.0, 'sturdy': 1.0, 'join': 1.0, 'can': 1.0, 'so': 1.0, 'at': 2.0, 'to': 4.0, 'very': 2.0, 'big': 1.0, 'my': 1.0, 'is': 1.0, 'it': 1.0, 'he': 2.0, 'with': 1.0, 'that': 1.0, 'there': 1.0, 'grandmas': 1.0, '34': 2.0, 'ever': 1.0, 'cart': 1.0, 'boy': 1.0, 'able': 1.0, 'sit': 1.0, 'goes': 1.0, 'loves': 1.0, 'may': 1.0, 'easy': 1.0, 'table': 2.0, 'like': 1.0, 'a': 1.0, 'grandson': 1.0, 'chair': 1.0, 'also': 2.0, 'where': 1.0, 'too': 1.0, 'us': 2.0, 'the': 2.0, 'great': 1.0}
Word element => {'long': 1.0, 'inches': 1.0, 'pounds': 1.0, '37': 1.0, 'side': 1.0, 'larger': 1.0, 'on': 1.0, 'is': 1.0, 'the': 1.0, 'my': 1.0, 'and': 1.0, 'two': 1.0, 'year': 1.0, 'old': 1.0, '38': 1.0, 'loves': 1.0, 'this': 1.0, 'she': 2.0, 'fits': 1.0, 'daugher': 1.0, 'well': 1.0}
Word element => {'many': 1.0, 'recommending': 1.0, 'i': 1.0, 'love': 1.0, 'it': 2.0, 'to': 1.0, 'old': 1.0, 'other': 1.0, 'have': 1.0, 'loves': 1.0, 'under': 1.0, '17': 1.0, 'my': 2.0, 'moms': 1.0, 'perfect': 1.0, 'fits': 1.0, 'mo': 1.0, 'table': 1.0}
Word element => {'price': 1.0, 'but': 1.0, 'down': 1.0, 'take': 2.0, 'table': 1.0, 'top': 1.0, 'high': 1.0, 'have': 1.0, 'rambunctious': 1.0, '30lbs': 1.0, '21': 1.0, 'heavy': 1.0, 'really': 2.0, 'chair': 1.0, 'strapped': 1.0, 'they': 1.0, '35inches': 1.0, 'child': 1.0, 'think': 1.0, 'your': 1.0, 'big': 2.0, 'near': 1.0, 're': 2.0, 'when': 1.0, 'you': 1.0, 'however': 1.0, 'far': 1.0, 'thus': 1.0, 'not': 1.0, 'making': 1.0, 'of': 1.0, 'he': 1.0, 'this': 2.0, 'it': 3.0, 'age': 1.0, 'in': 4.0, 'careful': 1.0, 'the': 4.0, 'succeeded': 1.0, 'cute': 1.0, 'is': 5.0, 'for': 3.0, 'actually': 1.0, 'getting': 1.0, 'tall': 1.0, 'and': 4.0, 'only': 2.0, 'certain': 1.0, 'all': 2.0, 'our': 2.0, 'any': 1.0, 'to': 3.0, 'value': 1.0, 'booster': 2.0, 'my': 1.0, 'still': 1.0, 'son': 3.0, 'from': 1.0, 'sit': 1.0, 'lunge': 1.0, 'about': 1.0, 'thing': 1.0, 'months': 1.0, 'one': 3.0, 'his': 1.0, 'sturdy': 1.0, 'haven': 1.0, 'attaches': 1.0, 'good': 1.0, 'clean': 1.0, 'securely': 1.0, 'easy': 1.0, 'so': 1.0, 'time': 1.0, 'a': 3.0, 't': 1.0, 's': 2.0, 'we': 2.0, 'tried': 1.0, 'fan': 1.0, 'i': 2.0, 'would': 2.0, 'him': 1.0, 'be': 1.0}
Word element => {'visiting': 1.0, 'not': 1.0, 'chair': 1.0, 'brings': 1.0, 'on': 1.0, 'booster': 1.0, 'the': 1.0, 'loves': 1.0, 'this': 1.0, 'it': 2.0, 'she': 1.0, 'easy': 1.0, 'when': 1.0, 'daughter': 1.0, 'grand': 1.0, 'level': 1.0, 'our': 2.0, 'and': 2.0, 'her': 1.0, 'to': 2.0, 'way': 1.0, 's': 2.0, 'my': 1.0, 'stores': 1.0, 'of': 1.0, 'fits': 1.0, 'clean': 1.0, 'out': 1.0}
Word element => {'disappointed': 1.0, 'won': 1.0, 'you': 1.0, 'and': 1.0, 'secure': 1.0, 'are': 1.0, 'straps': 1.0, 'seat': 1.0, 'makes': 1.0, 'table': 1.0, 'turtle': 1.0, 'grand': 1.0, 'under': 1.0, 'so': 1.0, 'snug': 1.0, 'fun': 1.0, 'booster': 1.0, 't': 1.0, 'adjustable': 1.0, 'the': 2.0, 'little': 1.0, 'daughter': 1.0, 'sweet': 1.0, 'her': 1.0, 'it': 1.0, 'this': 1.0, 'is': 1.0, 'my': 2.0, 'high': 1.0, 'happy': 1.0, 'chair': 1.0, 'to': 1.0, 'be': 2.0, 'fits': 1.0, 'out': 1.0, 'plus': 1.0, 'of': 1.0}
Word element => {'until': 1.0, 'good': 1.0, 'chair': 1.0, 'stay': 1.0, 'idea': 1.0, 'visiting': 1.0, 'a': 1.0, 'since': 1.0, 'to': 2.0, 'friends': 1.0, 'usually': 1.0, 'have': 2.0, 'recommended': 1.0, 's': 2.0, 'come': 1.0, 'this': 1.0, 'it': 2.0, 'i': 1.0, 'grandchildren': 1.0, 'for': 1.0, 'in': 1.0, 'are': 1.0, 'the': 2.0, 'just': 2.0, 'grandparents': 1.0, 'easy': 1.0}
Word element => {'highly': 1.0, 'easy': 1.0, 'recommended': 1.0, 'practical': 1.0, 'very': 2.0, 'seats': 1.0, 'straps': 1.0, 'cute': 1.0, 'product': 1.0, 'to': 1.0, 'only': 1.0, 'it': 2.0, 'this': 1.0, 'those': 1.0, 'other': 1.0, 'is': 2.0, 'toddlers': 1.0, 'not': 1.0, 'for': 1.0, 'has': 1.0, 'wiggly': 1.0, 'booster': 1.0, 'functional': 1.0, 'unlike': 1.0, 'clean': 1.0}
Word element => {'gets': 1.0, 'other': 1.0, 'table': 1.0, 'feel': 1.0, 'her': 3.0, 'old': 1.0, 'about': 1.0, 'another': 1.0, '15': 1.0, 'first': 1.0, 'higher': 1.0, 'she': 1.0, 'it': 3.0, 'this': 1.0, 'safety': 1.0, 'same': 1.0, 'was': 4.0, 'with': 1.0, 'buying': 1.0, 'think': 1.0, 'on': 1.0, 'is': 6.0, 'our': 1.0, 'to': 1.0, 'seat': 2.0, 'chair': 2.0, 'very': 2.0, 'year': 1.0, 'i': 7.0, 'for': 2.0, 'love': 1.0, 'cheap': 1.0, 'a': 1.0, 'we': 2.0, 'have': 2.0, 'the': 5.0, 'but': 1.0, '2': 1.0, 'booster': 2.0, 'position': 1.0, 'decided': 1.0, 'one': 1.0, 'planning': 1.0, 'too': 1.0, 'tall': 1.0, 'and': 6.0, 'buckling': 1.0, 'ok': 1.0, 'saw': 1.0, 'thought': 1.0, 'cute': 1.0, 'so': 1.0, 'strap': 1.0, 'get': 1.0, 'easy': 1.0, 'age': 1.0, 'in': 1.0, 'disappointed': 1.0, 'how': 1.0, 'high': 1.0, 'low': 1.0, '5': 1.0}
Word element => {'use': 1.0, 'enough': 1.0, 'big': 1.0, 'until': 1.0, 'or': 1.0, 'have': 1.0, 'll': 1.0, 'guess': 1.0, 'out': 1.0, 'this': 1.0, 'only': 1.0, 'ordered': 1.0, 'still': 1.0, 'so': 3.0, 'however': 1.0, 'inexpensive': 1.0, 'of': 2.0, 'up': 1.0, 'crawling': 1.0, 'chair': 1.0, 'instead': 1.0, 'i': 5.0, 'old': 1.0, 'high': 1.0, 'another': 1.0, 'my': 1.0, 'her': 4.0, 'straps': 1.0, 'sit': 1.0, 'able': 1.0, 'year': 2.0, 'from': 1.0, 'solution': 1.0, 'seat': 1.0, 'as': 1.0, 'to': 5.0, 's': 1.0, 'a': 1.0, 't': 1.0, 'be': 1.0, 'wait': 1.0, 'wanted': 1.0, 'simple': 1.0, 'and': 1.0, 'the': 3.0, 'reach': 1.0, 'really': 1.0, 'it': 2.0, 'she': 2.0, 'lifts': 1.0, 'by': 1.0, 'but': 1.0, '2': 2.0, 'can': 1.0, 'very': 1.0, 'inches': 1.0, 'easily': 1.0, 'table': 2.0, 'like': 1.0, 'maybe': 1.0, 'having': 1.0, 'at': 1.0, 'keep': 1.0}
Word element => {'problem': 1.0, 'and': 1.0, 'very': 1.0, 'booster': 1.0, 'the': 2.0, 'seems': 1.0, 'underneath': 1.0, 'good': 1.0, 'well': 1.0, 'a': 1.0, 'resolved': 1.0, 'is': 2.0, 'it': 4.0, 'this': 1.0, 'we': 2.0, 'use': 1.0, 'but': 1.0, 'everyday': 1.0, 'sticked': 1.0, 'although': 1.0, 'seat': 2.0, 'not': 1.0, 'high': 1.0, 'made': 1.0, 'towel': 1.0}
Word element => {'than': 1.0, 'table': 1.0, 'bar': 1.0, 'and': 2.0, 'perfectly': 1.0, 'works': 1.0, 'loves': 1.0, 'boy': 1.0, 'comfortable': 1.0, 'our': 2.0, 'little': 1.0, 'my': 1.0, 'more': 1.0, 'kitchen': 1.0, 'seems': 1.0, 'in': 1.0, 'area': 1.0, 'with': 1.0, 'it': 2.0, 'this': 1.0, 'he': 1.0, 'to': 1.0, 'feel': 1.0, 'highchair': 1.0, 'rather': 1.0}
Word element => {'cushion': 1.0, 'with': 1.0, 'or': 2.0, 'would': 1.0, 'something': 1.0, 'so': 1.0, 'about': 1.0, 'do': 1.0, 'nothing': 1.0, 'unfortunatley': 1.0, 'purchase': 1.0, 'underneath': 1.0, 'be': 2.0, 'crumbs': 1.0, 'off': 1.0, 'take': 1.0, 'need': 1.0, 'head': 1.0, 'by': 1.0, 'look': 1.0, 'right': 1.0, 'mainly': 1.0, 'there': 1.0, 'chair': 4.0, 'wooden': 1.0, 'when': 1.0, 'hiding': 1.0, 'you': 1.0, 'finish': 1.0, 'damage': 1.0, 'up': 1.0, 'also': 1.0, 'scratched': 1.0, 'it': 3.0, 'eating': 1.0, 'plastic': 1.0, 'he': 1.0, 'll': 1.0, 'down': 1.0, 'meals': 1.0, 'and': 3.0, 'turtle': 2.0, 'ordered': 1.0, 'might': 1.0, 'a': 5.0, 'we': 4.0, 's': 5.0, 'amazon': 1.0, 'old': 1.0, 'different': 1.0, 'clean': 1.0, 'good': 1.0, 'not': 2.0, 'middle': 1.0, 'son': 1.0, 'his': 1.0, 'year': 1.0, 'can': 1.0, 'but': 1.0, '2': 1.0, 'deal': 1.0, 'the': 10.0, 'other': 1.0, 'adjustable': 1.0, 'is': 1.0, 'more': 1.0, 'on': 2.0, 'this': 2.0, 'recent': 1.0, 'in': 2.0, 'for': 4.0, 'one': 2.0, 'next': 1.0, 'loves': 1.0, 'that': 3.0, 'booster': 1.0, 'value': 1.0, 'price': 1.0, 'easy': 2.0, 'seat': 5.0, 'our': 4.0, 'least': 1.0, 'to': 5.0, 'softer': 1.0, 'wipe': 1.0, 'great': 1.0, 'big': 1.0, 'install': 1.0, 'downside': 1.0, 'like': 1.0, 'at': 1.0, 'of': 1.0, 'reviews': 1.0, 'has': 1.0}
Word element => {'its': 1.0, 'quality': 1.0, 'beat': 1.0, 'you': 1.0, 'turtle': 1.0, 'even': 1.0, 'her': 2.0, 'attachment': 1.0, 'be': 1.0, 'left': 1.0, 'is': 1.0, 'really': 1.0, 'cant': 1.0, 'tray': 1.0, 'one': 3.0, 'cheap': 1.0, 'love': 1.0, 'for': 3.0, 'i': 2.0, 'old': 2.0, 'price': 1.0, 'absolutely': 1.0, 'still': 1.0, 'straps': 1.0, 'this': 2.0, 'taken': 1.0, 'it': 1.0, 'the': 4.0, 'chair': 2.0, 'thought': 1.0, 'had': 1.0, 'to': 1.0, 'my': 3.0, 'off': 1.0, 'that': 2.0, 'loves': 1.0, 'a': 2.0, 'could': 1.0, 'hole': 1.0, 'in': 2.0, 'yr': 1.0, 'drop': 1.0, '2': 2.0, 'food': 1.0, 'and': 3.0, 'has': 1.0, 'silverware': 1.0, 'simple': 1.0, 'are': 1.0, 'great': 1.0, 'nice': 1.0, 'previously': 1.0, 'year': 1.0, 'sturdy': 1.0, 'booster': 1.0, 'daughter': 1.0}
Word element => {'clean': 1.0, 'fun': 1.0, 'grandchildren': 1.0, 'i': 1.0, 'this': 1.0, 'for': 1.0, 'in': 1.0, 'keep': 1.0, 'restaurants': 1.0, 'to': 2.0, 'easy': 1.0, 'use': 1.0, 'even': 1.0, 'trip': 1.0, 'make': 1.0, 'the': 2.0, 'more': 1.0}
Word element => {'about': 1.0, 'care': 1.0, 'you': 1.0, 'chairs': 1.0, 'wooden': 1.0, 'between': 1.0, 'something': 1.0, 'bit': 1.0, 'on': 1.0, 'sits': 1.0, 'up': 1.0, 'scratched': 1.0, 'has': 1.0, 'update': 1.0, 'use': 1.0, 'plastic': 1.0, 'piece': 1.0, 'molded': 1.0, 'this': 5.0, 'it': 3.0, 'of': 1.0, 'chair': 1.0, 'there': 1.0, 'is': 3.0, 'around': 1.0, 'enough': 1.0, 'recommend': 1.0, 'was': 2.0, 's': 2.0, 'a': 3.0, 'great': 1.0, 'dollars': 1.0, 'the': 3.0, '2': 1.0, 'fit': 1.0, 'for': 3.0, 'i': 3.0, 'old': 1.0, 'very': 1.0, 'still': 2.0, 'under': 1.0, 'son': 1.0, 'and': 4.0, 'fifteen': 1.0, 'easy': 1.0, 'good': 1.0, 'paid': 1.0, 'clean': 1.0, 'short': 1.0, 'one': 1.0, 'bought': 1.0, 'table': 1.0, 'which': 1.0, 'main': 1.0, 'reason': 1.0, 'family': 1.0, 'purchase': 2.0, 'my': 2.0, 'd': 1.0, 'years': 1.0, '5': 1.0, 'room': 1.0, 'putting': 1.0, 'him': 1.0, 'any': 1.0, 'all': 1.0, 'seat': 5.0, 'to': 3.0, 'our': 1.0, 'grow': 1.0}
Word element => {'obnoxious': 1.0, 'and': 2.0, 'is': 1.0, 'arrive': 1.0, 'to': 1.0, 'monkey': 1.0, 'this': 1.0, 'cheaper': 1.0, 'one': 1.0, 'i': 2.0, 'while': 1.0, 'waited': 1.0, 'borrowed': 1.0, 'less': 1.0, 'the': 2.0, 'from': 1.0, 'bouncer': 1.0, 'a': 1.0, 'rainforest': 1.0, 'cuter': 1.0, 'way': 1.0, 'neighbor': 1.0, 'for': 1.0}
Word element => {'additional': 1.0, 'like': 1.0, 'showering': 1.0, 're': 1.0, 'place': 1.0, 'overall': 1.0, 'tip': 1.0, 'aren': 1.0, 'they': 1.0, 'careful': 1.0, 'very': 1.0, 'strength': 1.0, 'some': 1.0, 'never': 1.0, 'harness': 1.0, '5': 1.0, 'justify': 1.0, 'turns': 1.0, 'up': 1.0, 'wakes': 1.0, 'he': 1.0, 'take': 1.0, 'arch': 1.0, 'congested': 1.0, 'when': 1.0, 'great': 2.0, 'option': 1.0, 'hang': 1.0, 'soon': 2.0, 'there': 3.0, 'long': 1.0, 'run': 1.0, 'does': 1.0, 'chair': 5.0, 'a': 5.0, 'cost': 1.0, 't': 4.0, 'finally': 1.0, 'going': 1.0, 'plug': 1.0, 's': 1.0, 'would': 2.0, 'position': 1.0, 'fifth': 1.0, 'for': 2.0, 'myself': 1.0, 'with': 2.0, 'few': 1.0, 'this': 4.0, 'him': 1.0, 'it': 4.0, 'if': 1.0, 'same': 1.0, 'problem': 1.0, 'did': 1.0, 'bunny': 1.0, 'getting': 1.0, 'standard': 1.0, 'think': 1.0, 'grows': 1.0, 'off': 1.0, 'until': 1.0, 'toes': 1.0, 'you': 5.0, 'because': 1.0, 'that': 3.0, 'their': 2.0, 'worth': 1.0, 'naps': 1.0, 'bouncy': 4.0, 'time': 1.0, 'don': 1.0, 'isn': 2.0, 'just': 1.0, 'seats': 1.0, 'extra': 3.0, 'something': 1.0, 'buy': 1.0, 'design': 1.0, 'back': 1.0, 'most': 1.0, 'money': 1.0, 'but': 4.0, '34': 2.0, 'here': 1.0, 'be': 4.0, 'i': 4.0, 'or': 1.0, 'feature': 1.0, 'have': 3.0, 'all': 1.0, 'your': 2.0, 'any': 1.0, 'as': 5.0, 'features': 2.0, 'people': 1.0, 'about': 1.0, 'let': 1.0, 'no': 3.0, 'over': 2.0, 'hard': 1.0, 'while': 2.0, 'how': 1.0, 'not': 3.0, 'stub': 1.0, 'toe': 1.0, 'out': 2.0, 'are': 2.0, 'cute': 2.0, 'complaining': 1.0, 'inches': 1.0, 'ear': 1.0, 'pillow': 1.0, 'at': 1.0, 'is': 6.0, 'one': 1.0, 'try': 1.0, 'too': 1.0, 'and': 6.0, 'low': 1.0, 'laughed': 1.0, 'to': 8.0, 'high': 1.0, 'seen': 1.0, 'adjustable': 1.0, 'baby': 6.0, 'point': 1.0, 'toys': 1.0, 'stubbing': 1.0, 'bird': 1.0, 'contrast': 1.0, 'removable': 1.0, 'enough': 3.0, 'little': 1.0, 'capture': 1.0, 'toy': 1.0, 'bar': 1.0, 'gets': 2.0, 'storage': 1.0, 'forewarned': 1.0, 'in': 4.0, 'matter': 1.0, 'way': 1.0, 'the': 15.0, 'attention': 1.0, 'of': 3.0, 'vibration': 2.0}
Word element => {'plush': 1.0, 'not': 1.0, 'too': 1.0, 'definitely': 1.0, 'hates': 1.0, 'bouncer': 1.0, 'would': 1.0, 'him': 1.0, 'recommend': 1.0, 'cheaper': 1.0, 'snuggs': 1.0, 'snuggabunny': 1.0, 'still': 2.0, 'fit': 1.0, 'loved': 1.0, 'upright': 1.0, 'have': 1.0, 'fabric': 1.0, 'my': 1.0, 'washed': 1.0, 'he': 1.0, 'this': 1.0, 'looked': 1.0, 'it': 5.0, 'sits': 1.0, 'the': 2.0, 'great': 2.0, 'i': 3.0, 'one': 1.0, 'quality': 1.0, 'perfectly': 2.0, 'and': 6.0, 'another': 1.0, 'baby': 1.0, 'as': 2.0, 'from': 1.0, 'day': 1.0, 'is': 1.0, '3': 1.0, 'loving': 1.0, 'months': 1.0}
Word element => {'months': 1.0, 'look': 1.0, 'to': 1.0, 'tell': 1.0, 'be': 2.0, 'very': 1.0, 's': 1.0, 'you': 2.0, 'baby': 3.0, 'really': 1.0, 'fall': 1.0, 'is': 2.0, 'longer': 1.0, 'feet': 2.0, 'can': 1.0, 'however': 1.0, 'short': 1.0, 'bouncer': 1.0, 'if': 1.0, 'base': 2.0, 'rest': 1.0, 'cute': 1.0, 'the': 5.0, 'my': 1.0, 'it': 2.0, 'only': 1.0, 'loved': 1.0, 'use': 1.0, 'at': 1.0, 'was': 1.0, 'bent': 1.0, 'in': 1.0, 'this': 2.0, 'perfect': 1.0, 'pictures': 1.0, 'would': 1.0, 'and': 2.0, 'his': 1.0, 'legs': 1.0, 'are': 1.0, 'slightly': 1.0, 'i': 2.0, 'should': 1.0, 'able': 1.0, 'where': 2.0, 'for': 1.0, 'think': 1.0, '3': 1.0}
Word element => {'back': 1.0, 'first': 1.0, 's': 1.0, 'if': 1.0, 'same': 1.0, 'before': 1.0, 'calls': 1.0, 'gets': 1.0, 'woman': 1.0, 'silly': 1.0, 'banana': 2.0, 'pull': 2.0, 'entertained': 1.0, 'customer': 1.0, 'he': 1.0, 'this': 1.0, 'she': 1.0, 'felt': 1.0, 'it': 5.0, 'something': 1.0, 'to': 2.0, 'our': 1.0, 'were': 1.0, 'know': 1.0, 'and': 4.0, 'my': 1.0, 'think': 1.0, 'on': 2.0, 'put': 1.0, 'send': 1.0, 'baby': 1.0, 'thing': 1.0, 'about': 2.0, 'toy': 3.0, 'price': 1.0, 'i': 6.0, 'that': 1.0, 'loves': 1.0, 'many': 1.0, 'pretty': 1.0, 'safe': 1.0, 'service': 1.0, 'bouncer': 2.0, 'called': 1.0, 'is': 1.0, 'said': 1.0, 'turn': 1.0, 'in': 1.0, 'will': 1.0, 'also': 1.0, 'be': 1.0, 'him': 1.0, 'broken': 2.0, 'the': 6.0, 'turns': 1.0, 'but': 1.0, 'can': 1.0, 'comments': 1.0, 'helpful': 1.0, 'you': 2.0, 'when': 1.0, 'arrived': 1.0, 'out': 1.0, 'ours': 1.0, 'was': 1.0, 'thought': 1.0, 'bar': 1.0, 'had': 1.0, 'fisher': 1.0, 'they': 1.0, 'read': 1.0, 'very': 1.0}
Word element => {'puts': 1.0, 'company': 1.0, 'by': 1.0, 'made': 1.0, 'have': 1.0, 'poor': 1.0, 'very': 1.0, 'disappointment': 1.0, 'review': 1.0, 'was': 1.0, 'our': 1.0, 'all': 1.0, 'to': 5.0, 'a': 3.0, 'we': 2.0, 'neck': 2.0, 'adequate': 1.0, 'wait': 1.0, 'head': 2.0, 'flaw': 1.0, 'provide': 1.0, 'but': 2.0, 'past': 1.0, 'does': 1.0, 'problem': 1.0, 'three': 1.0, 'main': 1.0, 'my': 3.0, 'from': 1.0, 'hard': 1.0, 'son': 3.0, 'just': 1.0, 'says': 1.0, 'not': 1.0, 'quality': 1.0, 'their': 1.0, 'description': 1.0, 'and': 3.0, 'support': 2.0, 'some': 1.0, 'one': 1.0, 'flaws': 1.0, 'this': 8.0, 'newborn': 1.0, 'kicks': 1.0, 'design': 2.0, 'swing': 1.0, 'positioned': 1.0, 'for': 4.0, 'product': 1.0, 'another': 2.0, 'opinion': 1.0, 'using': 2.0, 'after': 1.0, 'when': 2.0, 'in': 4.0, 'm': 2.0, 'noticing': 1.0, 'first': 1.0, 'the': 12.0, 'of': 4.0, 'birth': 1.0, 'be': 1.0, 'i': 2.0, 'feet': 1.0, 'putting': 1.0, 'shame': 1.0, 'he': 5.0, 'plastic': 1.0, 'him': 1.0, 'it': 2.0, 'due': 1.0, 'born': 1.0, 'however': 1.0, 'lack': 1.0, 'tried': 1.0, 'until': 1.0, 'bar': 1.0, 'more': 1.0, 'is': 5.0, 'control': 2.0, 'before': 1.0, 'now': 1.0, 'major': 1.0, 'loves': 1.0, 'able': 1.0, 'use': 1.0, 'had': 1.0, 'kick': 1.0, 'music': 1.0, 'his': 2.0, 'bouncer': 3.0, 'months': 1.0, 'legs': 1.0, 'sound': 2.0, 'make': 1.0, 'on': 3.0, 'used': 1.0, 'decided': 1.0, 'toy': 1.0, 'bounce': 1.0, 'panel': 1.0, 'can': 1.0, 'so': 1.0, 'that': 4.0, 'bangs': 1.0, 'ankles': 1.0, 'toys': 1.0, 'downfall': 1.0, 'surprised': 1.0, 'no': 1.0, 'else': 1.0, 'mentioned': 1.0}
Word element => {'version': 1.0, 'different': 1.0, 'is': 2.0, 'size': 1.0, 'same': 2.0, 'just': 1.0, 'not': 1.0, 's': 1.0, 'but': 1.0, 'house': 2.0, 'found': 1.0, 'absolutely': 1.0, 'shape': 1.0, 'and': 3.0, 'monkey': 1.0, 'have': 2.0, 'it': 2.0, 'this': 2.0, 'another': 1.0, 'ended': 1.0, 'height': 1.0, 'price': 1.0, 'relatives': 1.0, 'a': 1.0, 'the': 4.0, 'snug': 1.0, 'up': 1.0, 'fisher': 1.0, 'keep': 1.0, 'we': 4.0, 'everything': 1.0, 'bouncer': 2.0, 'so': 1.0, 'even': 1.0, 'does': 1.0, 'love': 1.0, 'one': 1.0, 'that': 2.0, 'returning': 1.0, 'volume': 1.0, 'our': 3.0, 'remotely': 1.0, 'little': 1.0, 'purchased': 1.0, 'to': 1.0, 'at': 2.0}
Word element => {'rocker': 1.0, 'want': 2.0, 'don': 2.0, 'bedroom': 1.0, 'always': 1.0, 'of': 1.0, 'comfortably': 1.0, 'him': 3.0, 'it': 2.0, 'i': 4.0, 'old': 1.0, 'my': 2.0, 'wasn': 1.0, 'bulky': 1.0, 'the': 2.0, 'in': 2.0, 'that': 2.0, 'by': 1.0, 'laying': 1.0, 'wanted': 1.0, 'too': 1.0, 'and': 3.0, 'big': 1.0, '1': 1.0, 'definitely': 1.0, 'week': 1.0, 'work': 1.0, 'holding': 1.0, 'to': 2.0, 'sleep': 1.0, 'all': 1.0, 'so': 2.0, 'time': 1.0, 't': 3.0, 's': 1.0, 'peacefully': 1.0, 'would': 1.0, 'something': 1.0, 'super': 1.0, 'this': 2.0, 'soft': 1.0, 'sleeps': 1.0, 'flat': 1.0, 'vibrations': 1.0, 'wonders': 1.0, 'fit': 1.0, 'spoil': 1.0, 'love': 1.0}
Word element => {'eacute': 1.0, 'mucho': 1.0, '100': 1.0, 'todo': 1.0, 'esperaba': 1.0, 'excelente': 1.0, 'bien': 1.0, 'que': 1.0, 'producto': 1.0, 'rapido': 1.0, 'disfruta': 1.0, 'el': 2.0, 'beb': 1.0, 'recomendado': 1.0, 'env': 1.0, 'lo': 2.0, 'iacute': 1.0, 'o': 1.0, 'y': 1.0, 'muy': 2.0, 'es': 1.0}
Word element => {'babies': 1.0, 'for': 1.0, 'makes': 1.0, 'even': 1.0, 'the': 1.0, 'my': 1.0, 'and': 1.0, 'great': 1.0, 'it': 1.0, 'absolutely': 1.0, 'noises': 1.0, 'keeps': 1.0, 'item': 1.0, 'loves': 1.0, 'this': 1.0, 'little': 1.0, 'she': 1.0, 'baby': 1.0, 'its': 1.0, 'soft': 1.0, 'her': 1.0, 'likes': 1.0, 'cool': 1.0}
Word element => {'recommended': 1.0, 'definitely': 1.0, 'fine': 1.0, 'issue': 1.0, 'others': 1.0, 'comments': 1.0, 'stumped': 1.0, 'it': 7.0, 'this': 2.0, 'with': 1.0, 'for': 1.0, 'in': 1.0, 'same': 1.0, 'apart': 1.0, 'fussing': 1.0, 'batteries': 1.0, 'didn': 1.0, 'i': 5.0, 'had': 1.0, 'thought': 1.0, 'that': 3.0, 'a': 1.0, 't': 1.0, 'bouncer': 1.0, 'so': 2.0, 'but': 1.0, 'work': 1.0, 'was': 2.0, 'to': 3.0, 'cozy': 1.0, 'until': 1.0, 'the': 4.0, 'website': 1.0, 'after': 1.0, 'cute': 2.0, 'and': 4.0, 'looked': 1.0, 'while': 1.0, 'trying': 1.0, 'you': 1.0, 'take': 1.0, 'up': 1.0, 'fisher': 1.0, 'reading': 1.0, 'put': 1.0, 'on': 3.0, 'worked': 1.0, 'bananas': 1.0, 'price': 1.0, 'saw': 2.0, 'activate': 1.0, 're': 1.0, 'pull': 1.0, 'suppose': 1.0, 'then': 1.0, 'started': 1.0, 'other': 1.0}
Word element => {'ve': 1.0, 'factor': 1.0, 'height': 1.0, 'review': 1.0, 'meh': 1.0, 'ends': 1.0, 'quicklymy': 1.0, 'musicmusic': 1.0, 'get': 1.0, 'jungle': 1.0, 'lengthwise': 1.0, 'about': 1.0, 'also': 1.0, 'head': 1.0, 'while': 1.0, 'of': 2.0, 'have': 2.0, 'off': 1.0, 'legs': 1.0, '2': 1.0, '1': 1.0, 'just': 1.0, 'at': 2.0, 'under': 1.0, 'and': 2.0, 'was': 1.0, 'softlights': 1.0, 'so': 1.0, 'been': 1.0, 'that': 2.0, 'were': 1.0, 'for': 3.0, 'suggest': 1.0, 'broke': 1.0, 'old': 2.0, '4': 2.0, 'i': 3.0, '23': 1.0, 'one': 1.0, 'months': 4.0, 'bought': 1.0, 'bouncer': 1.0, 'wanted': 1.0, 'short': 2.0, 'another': 2.0, 'my': 1.0, 'eye': 1.0, 'loved': 1.0, 'based': 1.0, 'this': 2.0, 'to': 5.0, 'seat': 2.0, 'pull': 1.0, 'daughter': 1.0, 'outgrown': 1.0, 'you': 1.0, 'when': 1.0, 'on': 1.0, 'make': 1.0, '3': 2.0, 'it': 3.0, 'she': 2.0, 'find': 1.0, 'basically': 1.0, 'hanging': 1.0, 'the': 4.0, 'is': 4.0, 'her': 2.0, 'fabric': 1.0, 'inches': 1.0, 'very': 2.0, 'catching': 1.0, 'why': 1.0, 'are': 2.0, 'pros': 1.0, 'babynoise': 1.0, 'volume': 1.0, 'or': 1.0, 'mainly': 1.0, 'given': 1.0, 'animals': 2.0, 'cutecons': 1.0, '34': 4.0, 'outgrow': 1.0, 'in': 1.0, 'length': 1.0, 'a': 1.0, 'we': 2.0, 'goodsounds': 1.0, 's': 1.0}
Word element => {'out': 1.0, 'have': 1.0, 'many': 1.0, 'best': 1.0, 'yet': 1.0, 'the': 2.0, 'bought': 1.0, 'quiets': 1.0, 'used': 1.0, 'baby': 4.0, 'items': 1.0, 'and': 1.0, 'lulls': 1.0, 'to': 1.0, 'we': 1.0, 'feed': 1.0, 'for': 1.0, 'in': 1.0, 'on': 2.0, 'one': 1.0, 'of': 2.0}
Word element => {'lighter': 1.0, 'styles': 1.0, 'available': 1.0, 'kitchen': 1.0, 'top': 1.0, 'snugabunny': 1.0, 'space': 1.0, 're': 1.0, 'something': 1.0, 'several': 1.0, 'bounceralso': 1.0, 'keywords': 1.0, 'ie': 1.0, 'sr': 2.0, 'dp': 1.0, 'amazon': 1.0, 'www': 1.0, 'http': 1.0, 'don': 1.0, 'remember': 1.0, 'have': 2.0, 'smaller': 2.0, '8': 1.0, 'link': 2.0, 'lol': 1.0, 'after': 1.0, 'also': 1.0, 'himself': 1.0, 'with': 1.0, 'play': 1.0, 'other': 1.0, 'i': 1.0, 'well': 1.0, 'cut': 1.0, 'they': 1.0, 'your': 2.0, 'move': 1.0, 'toy': 2.0, 'perfect': 1.0, 'bouncing': 1.0, 'cheap': 1.0, 'how': 1.0, 'our': 2.0, 'bought': 1.0, 'out': 3.0, 'table': 1.0, 'easier': 1.0, 'right': 2.0, 'ride': 1.0, 'went': 1.0, 'time': 1.0, 'great': 1.0, 'having': 1.0, 'animals': 3.0, 'looked': 1.0, 'adorable': 3.0, 'child': 2.0, 'price': 4.0, 'front': 1.0, 'fisher': 4.0, 'their': 1.0, 'saw': 1.0, 'bouncers': 1.0, 'which': 1.0, 'using': 1.0, 'qid': 1.0, 'initially': 1.0, 'mouth': 1.0, 'because': 1.0, 'seat': 3.0, 'in': 9.0, 'or': 2.0, 'com': 1.0, 'but': 2.0, '2': 1.0, 'baby': 2.0, 'examine': 1.0, 'bar': 2.0, 'deluxe': 1.0, 'here': 2.0, 'be': 1.0, 'as': 3.0, 'makes': 1.0, 'on': 1.0, 'noticed': 1.0, 'them': 7.0, 'has': 1.0, 'utf8': 1.0, 'less': 1.0, 'up': 2.0, 't': 2.0, 'giving': 1.0, 's': 6.0, 'going': 1.0, 'small': 2.0, 'a': 8.0, 'way': 1.0, 'reach': 1.0, 'paste': 1.0, 'are': 4.0, 'started': 1.0, 'toys': 3.0, 'son': 6.0, 'bat': 2.0, 'difficult': 1.0, '27s': 1.0, 'gets': 1.0, 'babys': 1.0, 'much': 2.0, 'put': 2.0, 'fitting': 1.0, 'registered': 1.0, 'b0042d69uq': 1.0, 'and': 13.0, 'for': 3.0, 'sorry': 1.0, 'actually': 1.0, 'he': 3.0, 'this': 1.0, 'bouncy': 1.0, 'pain': 1.0, 'thought': 1.0, 'him': 1.0, 'it': 14.0, '3': 1.0, 'useless': 1.0, 'around': 1.0, 'his': 1.0, 'what': 1.0, 'may': 1.0, 'my': 3.0, 'another': 1.0, 'pretty': 2.0, 'to': 17.0, 'high': 1.0, '1394582174': 1.0, 'removable': 1.0, 'loved': 1.0, 'above': 1.0, 'enough': 1.0, 'pooped': 1.0, 'cover': 2.0, 'see': 1.0, 'off': 2.0, 'stiff': 2.0, 'can': 3.0, 'so': 4.0, 'easy': 1.0, 'know': 1.0, 'bit': 1.0, 'was': 5.0, 'never': 1.0, 'take': 1.0, 'we': 5.0, 'moving': 2.0, 'you': 4.0, 'able': 2.0, 'trouble': 1.0, 'bouncer': 3.0, 'legs': 2.0, 'get': 5.0, 'kind': 2.0, 'bounce': 1.0, 'ref': 1.0, 'at': 3.0, 'look': 1.0, 'is': 3.0, 'the': 20.0, 'of': 8.0, 'bulky': 1.0, 'house': 1.0, 'holding': 1.0, 'too': 1.0, 'one': 3.0, 'arm': 1.0, 'from': 1.0, 'while': 2.0, 'room': 1.0, 'give': 1.0, 'bulk': 1.0, 'chair': 2.0, 'weight': 1.0, '4': 1.0, 'island': 1.0, 'frame': 1.0, 'clean': 2.0, 'if': 3.0, 'momentum': 1.0, 'dirty': 1.0, 'will': 1.0, '1': 4.0, 'friend': 1.0}
Word element => {'grabbed': 1.0, 'be': 1.0, 'four': 1.0, 'bar': 1.0, 'toy': 1.0, 'why': 1.0, 'sure': 1.0, 'find': 1.0, 'us': 1.0, 'both': 1.0, 'which': 1.0, 'reach': 2.0, 'without': 1.0, 'insert': 1.0, 'and': 3.0, 'soon': 1.0, 'rock': 1.0, 'like': 1.0, 'vibration': 1.0, 'hand': 1.0, 'almost': 2.0, 's': 1.0, 'a': 4.0, 't': 3.0, 'would': 1.0, 'newborn': 1.0, 'm': 1.0, 'in': 2.0, 'snugly': 1.0, 'though': 1.0, 'how': 1.0, 'snugness': 1.0, 'he': 2.0, 'meant': 1.0, 'you': 2.0, 'well': 1.0, 'i': 6.0, 'type': 1.0, 'batted': 1.0, 'old': 1.0, 'annoying': 1.0, 'as': 2.0, 'high': 1.0, 'to': 5.0, 'son': 3.0, 'very': 1.0, 'at': 2.0, 'notice': 1.0, 'is': 4.0, 'items': 1.0, 'my': 5.0, 'its': 1.0, 'wiggle': 1.0, 'was': 4.0, 'born': 1.0, 'thing': 1.0, 'play': 1.0, 'about': 1.0, 'with': 1.0, 'yourself': 1.0, 'n': 1.0, 'not': 2.0, 'this': 2.0, 'it': 8.0, 'the': 6.0, 'of': 3.0, 'guess': 1.0, 'holder': 1.0, 'amused': 1.0, 'favorite': 1.0, 'purchased': 2.0, 'when': 3.0, 'sit': 1.0, 'what': 1.0, 'got': 1.0, 'didn': 1.0, 'even': 1.0, 'baby': 6.0, 'always': 1.0, 'them': 2.0, 'your': 2.0, 'birds': 1.0, 'grows': 1.0, 'by': 3.0, 'or': 3.0, 'his': 1.0, 'around': 1.0, 'music': 1.0, 'but': 1.0, 'really': 2.0, 'bounce': 2.0, 'different': 1.0, 'before': 1.0, 'knew': 1.0, 'months': 2.0, 'bouncer': 1.0, 'can': 2.0, 'so': 3.0, 'needs': 1.0, 'new': 1.0, 'time': 1.0, 'out': 1.0, 'understand': 1.0, 'young': 1.0, 'that': 1.0, 'still': 1.0, 'every': 1.0, 'if': 1.0, 'want': 2.0, 'one': 1.0, 'lot': 1.0, 'until': 1.0, 'here': 1.0, 'grab': 1.0, 'came': 1.0, 'aren': 1.0, 'they': 2.0, 'first': 1.0, 'are': 1.0}
Word element => {'money': 1.0, 'previously': 1.0, 'worth': 1.0, 'or': 1.0, 'seen': 1.0, 've': 1.0, 'other': 1.0, 'than': 1.0, 'different': 1.0, 'no': 1.0, 'how': 1.0, 'out': 1.0, 'suppose': 1.0, 'vibrating': 1.0, 'and': 2.0, '1': 1.0, 'nice': 1.0, 'great': 1.0, 'the': 3.0, 'it': 5.0, 'works': 1.0, 'only': 1.0, 'little': 1.0, 'boy': 1.0, 'buy': 1.0, 'had': 1.0, 'decided': 1.0, 'i': 1.0, 'feature': 1.0, 'fisher': 1.0, 'absolutely': 1.0, 'price': 1.0, 'baby': 1.0, 'colors': 1.0, 'don': 1.0, 'see': 1.0, 's': 4.0, 't': 1.0, 'we': 2.0, 'a': 3.0, 'ago': 1.0, 'any': 1.0, 'to': 3.0, 'our': 2.0, 'bright': 1.0, '3yrs': 1.0, 'for': 2.0, 'owned': 1.0, 'another': 1.0, 'reviewer': 1.0, 'daughter': 1.0, 'that': 2.0, 'gave': 1.0, 'bouncer': 3.0, 'soothes': 1.0, 'star': 1.0, 'cranky': 1.0, 'keep': 1.0, 'be': 1.0, 'him': 1.0, 'previous': 1.0, 'spaced': 1.0, 'why': 1.0, 'interested': 1.0, 'legs': 1.0, 'are': 1.0}
Word element => {'sleep': 1.0, 'touch': 1.0, 'see': 1.0, 's': 1.0, 'lightly': 1.0, 'light': 1.0, 'baby': 2.0, 'she': 1.0, 'placed': 1.0, 'it': 1.0, 'portable': 1.0, 'can': 2.0, 'near': 1.0, 'to': 1.0, 'right': 1.0, 'be': 1.0, 'mother': 1.0, 'bounces': 1.0, 'where': 1.0}
Word element => {'goooooooooooooooooooooooooooood': 1.0, 's': 1.0, 'it': 1.0}
Word element => {'on': 1.0, 'ac': 1.0, 'we': 1.0, 'vibrator': 1.0, 'its': 1.0, 'adapter': 1.0, 'had': 1.0, 'wish': 1.0, 'an': 1.0, 'through': 1.0, 'be': 1.0, 'so': 2.0, 'fly': 1.0, 'i': 1.0, 'rocked': 1.0, 'it': 1.0, 'only': 1.0, 'the': 1.0, 'great': 1.0, 't': 1.0, 'many': 1.0, 'didn': 1.0, 'batteries': 1.0, 'also': 1.0, 'would': 1.0, 'nice': 1.0, 'own': 1.0, 'if': 1.0}
Word element => {'s': 1.0, 'help': 1.0, 'any': 1.0, 'stars': 1.0, '5': 1.0, 'like': 2.0, 'mobile': 1.0, 'bought': 1.0, 'one': 1.0, 'circle': 1.0, 'wish': 1.0, 'enough': 1.0, 'house': 1.0, 'isn': 1.0, 'to': 3.0, 'sleep': 2.0, 'noises': 1.0, 'all': 2.0, 'our': 1.0, 'as': 1.0, 'worth': 1.0, 'now': 1.0, 'weeks': 1.0, 'since': 1.0, 'keep': 1.0, 'gold': 1.0, 'hours': 2.0, 'their': 1.0, 'in': 4.0, 'said': 1.0, 'loves': 1.0, 'been': 1.0, '8': 1.0, 'give': 1.0, 'perfectly': 1.0, 'loving': 1.0, 'but': 2.0, 'weight': 1.0, 'chair': 4.0, 'getting': 1.0, 'recieved': 1.0, 'comfy': 1.0, 'and': 2.0, 'moved': 1.0, 'a': 2.0, 'will': 3.0, 'could': 1.0, 'birds': 1.0, 'my': 4.0, 'b': 1.0, 'i': 3.0, 'old': 2.0, 'aren': 1.0, 'they': 2.0, 'has': 1.0, 'day': 1.0, 'for': 3.0, 'parents': 1.0, 'he': 6.0, 'it': 6.0, 'look': 1.0, 'at': 3.0, 'is': 4.0, 'so': 2.0, 'do': 1.0, 'his': 1.0, 'cries': 1.0, 'the': 7.0, 'attention': 1.0, 'snugabunny': 1.0, 'on': 1.0, 'great': 1.0, 'comfortable': 1.0, 'be': 1.0, 'minutes': 1.0, 'matter': 1.0, 'compared': 1.0, 'infant': 2.0, 'c': 1.0, 'product': 1.0, 'toddler': 1.0, 'price': 1.0, 'stand': 1.0, 'cozy': 1.0, 'had': 1.0, 'fisher': 1.0, 'doesn': 2.0, 'downfalls': 1.0, 't': 4.0, 'rocker': 1.0, 'shower': 1.0, 'baby': 2.0, 'very': 1.0, 'with': 2.0, 'after': 1.0, 'about': 1.0, 'whereas': 1.0, 'that': 4.0, '20': 1.0, 'still': 1.0, 'buttons': 1.0, 'stay': 1.0, 'content': 1.0, 'louder': 1.0, 'even': 1.0, 'this': 4.0, 'few': 1.0}
Word element => {'to': 1.0, 'things': 1.0, 'want': 1.0, 'babies': 1.0, 'bla': 1.0, 'my': 1.0, 'by': 1.0, 'where': 2.0, 'for': 1.0, 'any': 1.0, 'as': 2.0, 'had': 1.0, 'havent': 1.0, 'we': 1.0, 's': 1.0, 'a': 5.0, 'lot': 1.0, 'hard': 1.0, 'from': 1.0, 'that': 2.0, 'problems': 1.0, 'slide': 1.0, 'kind': 1.0, 'board': 1.0, 'but': 2.0, 'his': 1.0, 'music': 1.0, 'and': 8.0, 'like': 1.0, 'which': 1.0, 'sinks': 1.0, 'some': 1.0, 'aspects': 1.0, 'these': 1.0, 'buttons': 1.0, 'does': 2.0, 'feet': 1.0, 'i': 2.0, 'or': 2.0, 'sounds': 1.0, 'also': 1.0, 'up': 1.0, 'don': 1.0, 'vibrate': 1.0, 'with': 3.0, 'kicking': 2.0, 'mind': 1.0, 'this': 1.0, 'aspect': 1.0, 'rabbit': 1.0, 'cooler': 1.0, 'eyes': 1.0, 'it': 5.0, 'bird': 1.0, 'down': 2.0, 'are': 3.0, 'cute': 1.0, 'ends': 1.0, 'of': 3.0, 'the': 8.0, 'leaf': 1.0, 'have': 1.0, 'thing': 1.0, 'about': 1.0, 'baby': 2.0, 'many': 1.0, 'at': 1.0, 'look': 1.0, 'is': 4.0, 'slides': 1.0, 'silly': 2.0, 'control': 1.0, 'bland': 1.0, 'he': 1.0, 'plastic': 1.0, 't': 1.0, 'kicker': 1.0, 'ears': 1.0, 'always': 1.0, 'bouncer': 2.0, 'legs': 1.0, 'feets': 1.0, 'heal': 1.0, 'placement': 1.0, 'should': 1.0, 'sturdy': 1.0, 'they': 1.0, 'directly': 1.0, 'somewhere': 1.0, 'else': 2.0, 'not': 1.0, 'bicycle': 1.0, 'under': 1.0, 'gets': 1.0, 'birds': 2.0, 'dangling': 1.0, 'nothing': 1.0, 'very': 1.0, 'little': 2.0, 'boring': 2.0, 'looking': 1.0, 'neutral': 1.0, 'put': 1.0, 'tones': 1.0, 'dots': 1.0}
Word element => {'for': 1.0, 'something': 1.0, 'just': 1.0, 'you': 2.0, 'again': 1.0, 'not': 2.0, 'would': 1.0, 'overall': 1.0, 'my': 1.0, 'mins': 2.0, 'failed': 1.0, '30': 2.0, 'this': 5.0, 'soft': 1.0, 'eyes': 1.0, 'but': 3.0, 'material': 1.0, 'if': 1.0, 'every': 1.0, 's': 3.0, 't': 4.0, 'could': 1.0, '6': 1.0, 'how': 1.0, 'very': 1.0, 'visually': 1.0, 'because': 1.0, 'aren': 1.0, 'they': 2.0, 'before': 1.0, 'stops': 1.0, 'noise': 1.0, 'mistake': 1.0, 'want': 1.0, 'aptly': 1.0, 'the': 8.0, 'hanging': 1.0, 'off': 1.0, 're': 1.0, 'enough': 1.0, 'afterward': 1.0, 'asleep': 1.0, 'made': 1.0, 'read': 2.0, 'purchased': 1.0, 'we': 1.0, 'reviews': 2.0, 'then': 1.0, 'i': 7.0, 'super': 1.0, 'shuts': 1.0, 'legs': 1.0, 'bouncer': 1.0, 'so': 3.0, 'vibrating': 1.0, 'realized': 1.0, 'old': 1.0, 'functionally': 1.0, 'worthless': 1.0, 'in': 2.0, 'buying': 1.0, 'timer': 1.0, 'it': 5.0, 'colorful': 1.0, 'stars': 1.0, 'on': 3.0, 'make': 1.0, 'changed': 1.0, 'week': 1.0, 'falls': 1.0, 'leave': 2.0, 'a': 3.0, 'small': 1.0, 'purchase': 1.0, 'function': 1.0, 'only': 1.0, 'be': 3.0, 'woken': 1.0, 'up': 1.0, 'isn': 1.0, 'don': 2.0, 'product': 1.0, 'child': 1.0, 'when': 1.0, 'give': 1.0, 'there': 1.0, 'should': 1.0, 'an': 1.0, 'great': 1.0, 'option': 1.0, 'keep': 1.0, 'is': 2.0, 'at': 1.0, 'or': 1.0, 'indefinitely': 1.0, 'second': 1.0, 'hazard': 1.0, 'birds': 1.0, 'cute': 2.0, 'first': 1.0, 'are': 2.0, 'usable': 1.0, 'to': 4.0, 'pretty': 1.0, '3': 1.0, 'catch': 1.0, 'negative': 1.0, 'third': 1.0, 'definitely': 2.0, 'and': 3.0, 'tripping': 1.0, 'bottom': 1.0, 'know': 1.0}
Word element => {'assemble': 1.0, 'easy': 1.0, 'enjoys': 1.0, 'which': 1.0, 'that': 1.0, 'makes': 1.0, 'time': 1.0, 'all': 1.0, 'legs': 1.0, 'even': 1.0, 'his': 1.0, 'is': 1.0, 'when': 1.0, 'an': 1.0, 'music': 1.0, 'to': 3.0, 'bouncer': 2.0, 'grandson': 2.0, 'bounce': 1.0, 'i': 1.0, 'purchased': 1.0, 'added': 1.0, 'feature': 1.0, 'loves': 2.0, 'quite': 1.0, 'crying': 1.0, 'as': 1.0, 'up': 1.0, 'delivery': 1.0, 'and': 3.0, 'my': 2.0, 'kick': 1.0, 'him': 2.0, 'babysitting': 1.0, 'more': 1.0, 'the': 3.0, 'calm': 1.0, 'helps': 1.0, 'for': 1.0, 'often': 1.0, 'quick': 1.0, 'he': 3.0, 'this': 1.0, 'it': 1.0, 'help': 1.0, 'prime': 1.0, 'light': 1.0}
Word element => {'trial': 1.0, 'anyway': 2.0, 'both': 1.0, 'll': 1.0, 'space': 1.0, 'had': 1.0, 'stuff': 1.0, 'just': 1.0, 'wished': 1.0, 'kinda': 1.0, 'with': 2.0, 'is': 4.0, 'more': 3.0, 'work': 2.0, 'chose': 1.0, 'but': 2.0, 'will': 2.0, 'were': 1.0, 'snugabunny': 1.0, 'took': 1.0, 'motion': 1.0, 'since': 1.0, 'a': 8.0, 'swinging': 1.0, 'we': 8.0, 's': 4.0, 't': 2.0, 'going': 1.0, 'wants': 1.0, 'probably': 1.0, 'it': 12.0, '5': 1.0, 'our': 1.0, 'as': 1.0, 'limited': 1.0, 'sleep': 1.0, 'of': 1.0, 'the': 5.0, '4': 1.0, 'does': 1.0, 'than': 3.0, 'so': 3.0, 'get': 1.0, 'bouncer': 4.0, '15': 1.0, 'out': 1.0, 'newborn': 1.0, 'put': 1.0, 'on': 1.0, 'looks': 1.0, 'my': 1.0, 'give': 1.0, 'itself': 1.0, 'not': 3.0, 'stay': 1.0, 'and': 6.0, 'in': 5.0, 'm': 1.0, 'got': 1.0, 'daughter': 2.0, 'soft': 1.0, 'don': 1.0, 'compact': 1.0, 'baby': 1.0, 'she': 6.0, 'unfortunately': 1.0, 'doesn': 1.0, 'minutes': 1.0, 'did': 2.0, 'however': 1.0, 'swing': 4.0, 'compared': 1.0, 'all': 1.0, 'other': 1.0, 'too': 1.0, 'one': 1.0, 'hoping': 1.0, 'to': 3.0, 'pretty': 1.0, 'i': 3.0, 'well': 1.0, 'mood': 1.0, 'fall': 2.0, 'that': 2.0, '20': 2.0, 'because': 1.0, 'result': 1.0, 'very': 1.0, 'plush': 1.0, 'first': 1.0, 'for': 2.0, 'like': 1.0, 'cheap': 1.0, 'this': 3.0, 'few': 1.0, 'hope': 1.0, 'weeks': 2.0, 'error': 1.0, 'now': 2.0, '6': 1.0, 'asleep': 3.0, 'bouncers': 1.0, 'made': 1.0, 'good': 1.0, 'when': 1.0, 'sit': 1.0, 'after': 1.0, 'occasionally': 1.0, 'max': 1.0, 'simply': 1.0, 'only': 1.0, 'really': 1.0, 'chance': 1.0, 'have': 2.0, 'think': 1.0, 'better': 1.0}
Word element => {'sleep': 1.0, 'go': 1.0, 's': 1.0, 'somebody': 1.0, 'sure': 1.0, 'make': 1.0, 'you': 1.0, 'night': 1.0, 'so': 3.0, 'to': 2.0, 'fixed': 2.0, 'he': 6.0, 'toy': 1.0, 'shower': 1.0, 'set': 1.0, 'both': 1.0, 'in': 3.0, 'light': 1.0, 'foot': 1.0, 'or': 1.0, 'problem': 2.0, 'but': 1.0, 'work': 2.0, 'change': 1.0, 'not': 2.0, 'review': 2.0, 'vibration': 2.0, 'like': 1.0, 'baby': 2.0, 'of': 2.0, 'the': 14.0, 'gift': 1.0, 'bought': 1.0, 'a': 2.0, 'likes': 3.0, 't': 2.0, 'item': 1.0, 'will': 1.0, 'batteries': 3.0, 'received': 1.0, 'also': 2.0, 'for': 1.0, 'friend': 1.0, 'finally': 1.0, 'disappointing': 1.0, 'put': 4.0, 'top': 1.0, 'time': 1.0, 'new': 1.0, 'old': 2.0, 'makes': 1.0, 'i': 8.0, 'when': 4.0, 'again': 1.0, 'only': 2.0, 'this': 2.0, 'month': 1.0, 'very': 2.0, 'two': 1.0, 'little': 1.0, 'as': 1.0, 'noises': 1.0, 'from': 1.0, 'at': 1.0, 'is': 3.0, 'amazon': 1.0, 'and': 3.0, 'loves': 2.0, 'that': 3.0, 'every': 1.0, 'gas': 1.0, 'pull': 1.0, 'my': 5.0, 'banana': 1.0, 'times': 1.0, 'middle': 1.0, 'gets': 1.0, 'different': 1.0, 'better': 1.0, 'way': 1.0, 'than': 1.0, 'music': 2.0, 'his': 3.0, 'swing': 1.0, 'distracted': 1.0, 'helps': 1.0, 'it': 8.0, 'him': 1.0, 'too': 1.0, 'lot': 1.0, 'with': 1.0, '2': 1.0, 'thing': 1.0, 'don': 1.0, 'legs': 1.0, 'bouncer': 1.0, 'are': 1.0, 'on': 1.0, 'long': 1.0, 'husband': 1.0, 'them': 1.0, 'always': 1.0, 'lights': 1.0, 'took': 1.0, 'hit': 1.0, 'doesn': 1.0, 'off': 1.0, 'see': 1.0}
Word element => {'bought': 1.0, 'glad': 1.0, 'wash': 1.0, 'of': 1.0, 'off': 1.0, 'cloth': 1.0, 'take': 1.0, 'too': 1.0, 'and': 3.0, 'get': 1.0, 'do': 1.0, 'like': 2.0, 'i': 4.0, 'in': 1.0, 'turn': 1.0, 'sit': 1.0, 'favorite': 1.0, 'great': 1.0, 'lights': 1.0, 'the': 7.0, 'place': 1.0, 'month': 1.0, 'it': 3.0, 'this': 2.0, 'him': 2.0, 'trying': 1.0, 'son': 1.0, 'or': 1.0, 'to': 5.0, 'sleep': 1.0, 'my': 1.0, 'fact': 1.0, 'his': 1.0, 'can': 1.0, 'music': 1.0, 'you': 1.0, 'am': 2.0, 'when': 1.0, 'few': 1.0, 'minutes': 1.0, 'old': 1.0, 'laundry': 1.0, '3': 1.0, 'put': 1.0, 'on': 2.0, 'make': 1.0, 'dinner': 1.0, 'we': 1.0, 's': 1.0, 'a': 1.0, 'go': 1.0, 'vibrator': 1.0, 'is': 1.0, 'because': 1.0, 'chair': 4.0, 'helps': 1.0, 'loves': 1.0, 'that': 2.0}
Word element => {'walking': 1.0, 'stub': 1.0, 't': 1.0, 'don': 1.0, 'enough': 1.0, 'sure': 1.0, 'space': 1.0, 'especially': 1.0, 'adjust': 1.0, 'safety': 1.0, 'more': 1.0, 'wider': 1.0, 'note': 1.0, 'frame': 1.0, 'worth': 1.0, 's': 1.0, 'money': 1.0, 'care': 1.0, 'like': 1.0, 'before': 1.0, 'by': 1.0, 'as': 1.0, 'heavy': 1.0, 'just': 2.0, '17': 1.0, 'my': 2.0, '4': 1.0, 'thing': 1.0, 'think': 1.0, 'pack': 1.0, '25': 1.0, 'limit': 2.0, 'base': 1.0, 'even': 1.0, 'toe': 1.0, 'out': 1.0, 'weight': 2.0, 'couple': 1.0, 'so': 2.0, 'can': 2.0, 'monkey': 1.0, 'but': 2.0, 'not': 3.0, 'on': 2.0, '3': 1.0, 'toys': 1.0, 'used': 1.0, 'toy': 2.0, 'and': 1.0, 'obnxious': 1.0, 'baby': 3.0, 'makes': 1.0, 'side': 1.0, 'which': 1.0, 'make': 2.0, 'goes': 1.0, 'sound': 1.0, 'fleecy': 1.0, 'up': 3.0, 'seat': 2.0, 'in': 3.0, 'have': 4.0, 'with': 2.0, 'arch': 2.0, 'felt': 1.0, 'got': 1.0, 'truly': 1.0, 'this': 6.0, 'take': 1.0, 'then': 1.0, 'we': 2.0, 'a': 7.0, 'how': 1.0, 'our': 4.0, 'to': 8.0, 'your': 1.0, 'feel': 1.0, 'probably': 1.0, 'any': 1.0, 'without': 1.0, 'yes': 1.0, 'off': 1.0, 'well': 1.0, 'feet': 1.0, 'i': 10.0, 'he': 1.0, 'love': 2.0, 'actual': 1.0, 'too': 2.0, 'one': 1.0, 'monkeyin': 2.0, 'clearance': 1.0, 'the': 15.0, 'of': 1.0, 'than': 1.0, 'wake': 1.0, 'around': 6.0, 'at': 1.0, 'is': 4.0, 'say': 1.0, 'prefer': 1.0, 'meals': 1.0, 'comfy': 1.0, 'need': 2.0, 'feature': 1.0, 'or': 4.0, 'rainforest': 2.0, 'be': 2.0, 'it': 9.0, 'him': 1.0, 'house': 2.0, 'regret': 1.0, 'kind': 1.0, 'bouncer': 5.0, 'months': 2.0, 'get': 1.0, 'crinkle': 1.0, 'lifesaver': 1.0, 'also': 1.0, 'will': 4.0, 'removed': 1.0, 'they': 1.0, 'cut': 1.0, 'still': 1.0, 'if': 2.0, 'want': 1.0, 'eat': 1.0, 'down': 1.0, 'when': 1.0, 'overstimulation': 1.0, '20': 1.0, 'easily': 2.0, 'that': 4.0, 'been': 1.0, 'lbs': 1.0, 'was': 7.0, 'little': 1.0, 'material': 1.0, 'tricky': 1.0, 'nervous': 1.0, 'walk': 1.0, 'about': 1.0, 'really': 1.0, 'quiet': 1.0, 'tight': 1.0, 'would': 2.0, 'for': 3.0, 'stimulate': 1.0, 'stable': 1.0, 'nap': 1.0, 'worried': 1.0, 'time': 1.0, 'never': 2.0, 'though': 1.0, 'during': 2.0, 'problem': 2.0, 'you': 9.0, 'loud': 1.0, 'able': 1.0, 'are': 1.0, 'first': 1.0, 'purchase': 1.0}
Word element => {'parents': 1.0, 'for': 1.0, 'the': 3.0, 'wish': 1.0, 'important': 1.0, 'plug': 1.0, 'an': 1.0, 'electrical': 1.0, 'rapid': 1.0, 'rare': 1.0, 'prematurely': 1.0, 'and': 2.0, 'it': 2.0, 'could': 1.0, 'a': 3.0, 'we': 4.0, 'goes': 1.0, 'during': 1.0, 'timer': 1.0, 'little': 1.0, 'batteries': 1.0, 'risk': 1.0, 'lacks': 1.0, 'two': 1.0, 'duration': 1.0, 'lot': 1.0, 'at': 1.0, 'features': 1.0, 'but': 1.0, 'change': 1.0, 'sessions': 1.0, 'select': 1.0, 'my': 1.0, 'like': 1.0, 'rate': 1.0, 'both': 1.0, 'die': 1.0, 'snugabunny': 1.0, 'through': 1.0, 'vary': 1.0, 'so': 1.0, 'sleep': 1.0, 'to': 1.0, 'them': 2.0, 'of': 2.0, 'rather': 1.0, 'than': 1.0, 'tend': 1.0, 'having': 1.0, 'periods': 1.0}
Word element => {'toy': 1.0, 'any': 1.0, 'with': 1.0, 'par': 1.0, 'but': 1.0, 'obnoxious': 1.0, 'vibe': 1.0, 'caribbean': 1.0, 'music': 1.0, 'did': 1.0, 'said': 1.0, 'that': 3.0, 'spider': 1.0, '34': 2.0, 'rendition': 1.0, 'drum': 1.0, 'loves': 1.0, 'day': 1.0, 'blue': 1.0, 'extra': 1.0, 'in': 4.0, 'months': 1.0, 'uncomfortable': 1.0, 's': 4.0, 'very': 1.0, 'her': 3.0, 'started': 1.0, 'using': 1.0, 'which': 1.0, 'like': 1.0, 'for': 2.0, 'lights': 1.0, 'thing': 2.0, 'hands': 1.0, 'baby': 1.0, 'she': 5.0, 'it': 4.0, 'little': 2.0, 'two': 2.0, 'old': 1.0, '6': 2.0, 'rubbing': 1.0, 'reached': 1.0, 'window': 1.0, 'course': 1.0, 'enjoy': 1.0, 'still': 1.0, 'every': 2.0, 'purchased': 1.0, 'loved': 1.0, 'shower': 1.0, 'the': 15.0, 'effects': 1.0, 'of': 2.0, 'hear': 2.0, 'this': 2.0, 'soft': 1.0, 'pull': 1.0, 'daughter': 1.0, 'together': 1.0, 'washes': 1.0, 'weeks': 1.0, 'beginning': 1.0, 'hung': 1.0, 'was': 3.0, 'you': 2.0, 'while': 2.0, 'flashing': 1.0, 'first': 1.0, 'are': 1.0, 'playing': 1.0, 'an': 1.0, 'and': 3.0, 'musical': 1.0, 'looks': 1.0, 'my': 1.0, 'me': 1.0, 'on': 2.0, 'put': 1.0, 'alien': 1.0, 'now': 2.0, 'bananas': 1.0, 'had': 1.0, 'songs': 1.0, 'sound': 1.0, 'up': 1.0, 'over': 1.0, 'itsy': 1.0, 'to': 5.0, 'pretty': 2.0, 'easy': 1.0, 'kind': 1.0, 'delicate': 1.0, 'cycle': 1.0, 'seems': 1.0, 'will': 1.0, 'gripes': 1.0, 'steel': 1.0, 'bottom': 1.0, 'sits': 1.0, 'is': 1.0, 'a': 3.0, 'rattle': 1.0, 'small': 1.0, 'have': 1.0, 'i': 2.0, 'well': 1.0, 'feet': 1.0, 'out': 1.0, 'always': 1.0, 'edge': 1.0, 'when': 2.0, 'results': 1.0, 'heels': 1.0, 'piping': 1.0, 'held': 1.0, 'lot': 1.0, 'want': 1.0, 'great': 1.0, 'throw': 1.0, 'bitsy': 1.0, 'time': 1.0}
Word element => {'a': 1.0, 'worth': 1.0, 'still': 1.0, 'months': 1.0, 'but': 1.0, 'house': 1.0, 'around': 1.0, 'things': 1.0, 'daughter': 1.0, 'for': 3.0, 'in': 1.0, 'first': 1.0, 'it': 1.0, 'only': 1.0, 'this': 2.0, 'nap': 1.0, 'my': 1.0, 'couple': 1.0, 'matching': 1.0, 'and': 2.0, 'bought': 1.0, 'i': 2.0, 'she': 2.0, 'born': 1.0, 'the': 2.0, 'great': 1.0, 'used': 1.0, 'before': 1.0, 'her': 2.0, 'did': 1.0, 'buying': 1.0, 'was': 3.0, 'to': 1.0, 'bouncer': 2.0, 'kept': 1.0, 'swing': 1.0, 'close': 1.0, 'while': 1.0}
Word element => {'made': 1.0, 'poorly': 1.0, 'attention': 1.0, 'his': 1.0, 'toys': 1.0, 'strap': 1.0, 'had': 1.0, 'in': 1.0, 'does': 1.0, 'he': 1.0, 'kept': 1.0, 'know': 1.0, 'so': 1.0, 'of': 2.0, 'sets': 1.0, 'have': 1.0, 'the': 6.0, 'came': 1.0, 'ton': 1.0, '34': 2.0, 'immediately': 1.0, 'noises': 1.0, 'to': 6.0, 'baby': 1.0, 'light': 1.0, 'few': 1.0, 't': 4.0, 'a': 2.0, 'sit': 1.0, 'return': 1.0, 'front': 1.0, 'for': 1.0, 'batteries': 3.0, 'i': 7.0, 'ordered': 1.0, 'still': 1.0, 'test': 1.0, 'this': 1.0, 'on': 1.0, 'make': 1.0, 'put': 1.0, 'weeks': 1.0, 'doesn': 1.0, 'together': 1.0, 'isn': 1.0, 'takes': 1.0, 'button': 1.0, 'and': 1.0, 'get': 1.0, 'before': 2.0, 'didn': 2.0, 'even': 1.0, 'part': 1.0, 'say': 1.0, 'three': 1.0, 'keep': 2.0, 'that': 1.0, 'box': 1.0, 'or': 2.0, 'off': 1.0, 'other': 1.0, 'anything': 1.0, 'it': 9.0, 'fell': 1.0, 'but': 3.0, 'work': 1.0, 'needless': 1.0, 'can': 1.0, 'tried': 1.0, 'click': 1.0, 'up': 1.0, 'over': 1.0, 'vibrate': 1.0, 'some': 1.0, 'top': 1.0}
Word element => {'reliable': 1.0, 'wonderful': 1.0, 'produced': 1.0, 'fisher': 1.0, 'again': 1.0, 'once': 1.0, 'currently': 1.0, 'best': 1.0, 'than': 1.0, 'among': 1.0, 'floor': 1.0, 'used': 1.0, 'alas': 1.0, 'too': 1.0, 'and': 9.0, 'long': 1.0, 'on': 2.0, 'strong': 1.0, 'lastly': 1.0, 'keeping': 1.0, 'washing': 1.0, 'to': 2.0, 'feel': 1.0, 'any': 1.0, 'removable': 1.0, 'but': 2.0, 'music': 2.0, 'most': 1.0, 'cozy': 1.0, 'cover': 1.0, 'newborns': 1.0, 'be': 2.0, 'fair': 1.0, 'soothed': 1.0, 'bouncer': 2.0, 'throughout': 1.0, 'toys': 1.0, 'course': 2.0, 'pleasant': 1.0, 'there': 1.0, 'distributed': 1.0, 'level': 3.0, 'for': 4.0, 'love': 3.0, 'this': 6.0, 'wish': 1.0, 'tipping': 1.0, 'it': 5.0, 'absolutely': 1.0, 'cute': 1.0, 'eye': 1.0, 'stable': 1.0, 'importantly': 1.0, 'very': 1.0, 'little': 1.0, 'vibrating': 2.0, 'i': 5.0, 'option': 2.0, 'is': 11.0, 'at': 2.0, 'keep': 1.0, 'more': 2.0, 'babies': 1.0, 'that': 2.0, 'case': 2.0, 'of': 3.0, 'the': 14.0, 'infants': 1.0, 'those': 1.0, 'relaxing': 1.0, 'need': 1.0, 'or': 1.0, 'batteries': 1.0, 'drain': 1.0, 'only': 1.0, 'quickly': 1.0, 'with': 2.0, 'market': 1.0, 'equipped': 1.0, 'has': 2.0, 'them': 1.0, 'baby': 2.0, 'all': 2.0, 'an': 1.0, 'plush': 1.0, 'adjusting': 1.0, 'noise': 1.0, 'say': 1.0, 'worry': 1.0, 'will': 1.0, 'could': 1.0, 't': 1.0, 'a': 2.0, 'lights': 1.0, 'even': 1.0, 'extremely': 1.0, 'wouldn': 1.0, 'price': 2.0, 'product': 4.0, 'products': 1.0, 'about': 1.0, 'unless': 1.0, 'motion': 1.0, 'things': 1.0, 'you': 1.0, 'have': 1.0, 'big': 1.0, 'fidgety': 1.0, 'seat': 3.0, 'in': 2.0, 'good': 1.0, 'which': 1.0, 'engaged': 1.0, 'should': 1.0}
Word element => {'doesn': 1.0, 'or': 1.0, 'sat': 1.0, 'want': 1.0, 'the': 1.0, 'but': 1.0, 'young': 1.0, 'chair': 1.0, 'there': 1.0, 'experience': 1.0, 'from': 1.0, 'upright': 2.0, 'for': 2.0, 'love': 3.0, 'one': 1.0, 'kept': 1.0, 'so': 3.0, 'my': 2.0, 'be': 3.0, 'him': 1.0, 'that': 1.0, '2months': 1.0, 'light': 1.0, 'i': 1.0, 'brightly': 1.0, 'haven': 1.0, 'loved': 1.0, 'this': 4.0, 'he': 4.0, 'it': 3.0, 't': 3.0, 'its': 1.0, 'much': 1.0, 'great': 1.0, 'comfortable': 1.0, 'occupied': 1.0, '1': 1.0, 'like': 1.0, 'up': 2.0, 'vibrates': 1.0, 'of': 1.0, 'hours': 1.0, 'seems': 1.0, 'in': 1.0, 'bouncer': 1.0, 'wanted': 1.0, 'and': 2.0, 'too': 1.0, 'seen': 1.0, 'when': 3.0, 'more': 3.0, 'around': 1.0, '5': 1.0, 'got': 1.0, 'didn': 1.0, 'son': 1.0, 'seem': 1.0, 'find': 1.0, 'as': 1.0, 'to': 4.0, 'sleep': 1.0, 'any': 1.0}
Word element => {'product': 1.0, 'makes': 1.0, 'funny': 1.0, 'was': 1.0, 'buy': 1.0, 'laugh': 1.0, 'a': 2.0, 'and': 1.0, 'very': 1.0, 'this': 1.0, 'loves': 1.0, 'him': 1.0, 'it': 1.0, 'good': 2.0, 'its': 1.0, 'because': 1.0, 'mi': 1.0, 'is': 1.0, 'son': 1.0}
Word element => {'a': 1.0, 'in': 1.0, 'sleep': 1.0, 'baby': 2.0, 'loves': 1.0, 'way': 1.0, 'great': 1.0, 'it': 2.0, 'has': 1.0, 'to': 1.0, 'product': 1.0, 'adorable': 1.0, 'soothing': 1.0, 'the': 1.0, 'my': 1.0, 'puts': 1.0, 'songs': 1.0, 'that': 1.0}
Word element => {'too': 1.0, 'right': 1.0, 'price': 1.0, 'adorable': 1.0, 'is': 2.0, 'sounds': 1.0, 'cover': 1.0, 'light': 1.0, 'what': 1.0, 'seem': 1.0, 's': 1.0, 'at': 1.0, 'something': 1.0, 'love': 1.0, 'for': 1.0, 'and': 6.0, 'wanted': 2.0, 'to': 2.0, 'bar': 1.0, 'a': 1.0, 'monkey': 1.0, 'my': 1.0, 'the': 6.0, 'am': 1.0, 'i': 5.0, 'grandmother': 1.0, 'grandbabies': 1.0, 'reviews': 1.0, 'just': 1.0, 'searched': 2.0, 'home': 1.0, 'read': 1.0, 'babies': 1.0, 'have': 1.0, 'all': 1.0, 'of': 1.0, 'ordered': 1.0, 'this': 1.0, 'it': 1.0}
Word element => {'recommend': 1.0, 'would': 1.0, 'nap': 1.0, 'put': 1.0, 'me': 1.0, 'and': 6.0, 'away': 1.0, 'vibrating': 1.0, 'material': 1.0, 'in': 1.0, 'kick': 1.0, 'him': 1.0, 'i': 4.0, 'bouncing': 1.0, 'sit': 1.0, 'busy': 1.0, 'it': 2.0, 'allows': 1.0, 'soft': 1.0, 'this': 3.0, 'short': 1.0, 'bouncer': 2.0, 'is': 4.0, 'baby': 2.0, 'wherever': 1.0, 'very': 1.0, 'himself': 1.0, 'happy': 1.0, 'but': 1.0, 'monkey': 1.0, 'to': 2.0, 'love': 2.0, 'for': 3.0, 'lights': 1.0, 'the': 4.0, 'great': 2.0, 'mechanism': 1.0, 'periods': 1.0, 'works': 2.0, 'quiet': 1.0, 'also': 1.0, 'sounds': 1.0, 'bar': 1.0, 'well': 1.0, 'removes': 1.0, 'keeping': 1.0, 'of': 1.0, 'time': 2.0, 'am': 1.0, 'easily': 1.0}
Word element => {'purchase': 1.0, 'made': 1.0, 'glad': 1.0, 'am': 1.0, 'terrific': 1.0, 'second': 1.0, 'with': 1.0, 'reuse': 1.0, 'velcro': 1.0, 'or': 1.0, 'on': 1.0, 'put': 1.0, 'i': 3.0, 'weather': 1.0, 'seemed': 1.0, 'summertime': 1.0, 'it': 1.0, 'but': 1.0, 'were': 1.0, 'face': 1.0, 'them': 2.0, 'pull': 1.0, 'snap': 1.0, 'off': 1.0, 'ears': 2.0, 'cutting': 1.0, 'child': 1.0, 'anyway': 1.0, 'up': 1.0, 'much': 1.0, 'end': 1.0, 'himself': 1.0, 'did': 1.0, 'else': 1.0, 'his': 3.0, '5': 1.0, 'laying': 1.0, 'than': 1.0, 'now': 2.0, 'was': 2.0, 'plan': 1.0, 'is': 2.0, 'afraid': 1.0, 'for': 3.0, 'this': 3.0, 'he': 4.0, 'first': 1.0, 'anywhere': 1.0, 'bouncer': 2.0, 'so': 2.0, 'little': 2.0, 'loves': 1.0, 'been': 1.0, 'still': 1.0, 'old': 1.0, 'purchased': 1.0, 'seat': 1.0, 'as': 1.0, 'to': 5.0, 'sleep': 2.0, 'our': 2.0, 'hot': 1.0, 'has': 1.0, 'suffocate': 1.0, 'favorite': 1.0, 'starting': 1.0, 'and': 2.0, 'items': 1.0, 'couldn': 1.0, 'get': 1.0, 'at': 1.0, 'blessing': 1.0, 'the': 4.0, 'fleece': 1.0, 'him': 1.0, 'would': 1.0, 'of': 1.0, 'rather': 1.0, 'flat': 1.0, 'in': 1.0, 's': 1.0, 'might': 1.0, 'we': 4.0, 'bunny': 3.0, 't': 1.0, 'a': 5.0, 'months': 1.0, 'one': 2.0, 'huge': 1.0, 'just': 1.0, 'us': 1.0, 'about': 1.0}
Word element => {'old': 1.0, 'months': 1.0, 'comfortably': 1.0, 'sleeps': 1.0, 'she': 3.0, 'little': 1.0, 'be': 1.0, 'place': 1.0, 'to': 1.0, 'favorite': 1.0, 'granddaughters': 1.0, 'our': 1.0, 'is': 2.0, 'loves': 1.0, 'this': 1.0, 'it': 1.0, 'works': 1.0, 'when': 1.0, 'in': 1.0, 'also': 1.0, '2': 1.0, 'the': 1.0, 'nothing': 1.0, 'hanging': 1.0, 'else': 1.0, 'items': 1.0}
Word element => {'stretch': 1.0, 'set': 1.0, 'allow': 1.0, 'found': 1.0, 'glad': 1.0, 'parent': 1.0, 'new': 1.0, 'recommend': 1.0, 'careful': 1.0, 'by': 1.0, 'walking': 1.0, 'when': 1.0, 'overlook': 1.0, 'supposed': 1.0, 'however': 1.0, 'down': 2.0, 'something': 2.0, 'needed': 1.0, 'very': 1.0, 'being': 2.0, '5': 1.0, 'at': 2.0, 'look': 1.0, 'around': 2.0, 'catch': 1.0, 'music': 1.0, 'night': 1.0, 'you': 2.0, 'lights': 1.0, 'base': 3.0, '7': 2.0, 'insistence': 1.0, 'opposed': 1.0, 'hoped': 1.0, 'will': 1.0, '36': 1.0, 'steep': 1.0, 'born': 1.0, 'mobile': 1.0, 'safe': 1.0, 'daughter': 4.0, '24': 1.0, 'false': 1.0, 'dinged': 1.0, 'probably': 1.0, 'feel': 1.0, 'your': 1.0, 'any': 2.0, 'couldn': 1.0, '37': 1.0, 'nicer': 1.0, 'sleep': 1.0, 'most': 1.0, 'our': 5.0, 'on': 2.0, 'claiming': 1.0, 'about': 4.0, 'for': 11.0, 'well': 2.0, 'finally': 1.0, 'i': 4.0, 'contributes': 1.0, 'bought': 1.0, 'believe': 1.0, 'this': 7.0, 'short': 3.0, 'months': 1.0, 'the': 14.0, 'a': 8.0, 'small': 2.0, 'could': 1.0, 's': 6.0, 'we': 14.0, 'reviews': 3.0, 't': 2.0, 'that': 6.0, 'because': 2.0, 'worked': 2.0, 'tripping': 1.0, 'too': 4.0, 'held': 1.0, 'happy': 2.0, 'are': 2.0, 'first': 2.0, 'length': 1.0, 'newborns': 1.0, 'put': 1.0, 'concerns': 1.0, 'or': 3.0, 'out': 3.0, 'in': 4.0, 'said': 2.0, 'used': 2.0, 'bouncer': 2.0, 'vibrating': 1.0, 'thinking': 1.0, 'now': 2.0, 'weeks': 2.0, 'would': 3.0, 'deal': 1.0, 'be': 4.0, 'it': 8.0, 'month': 1.0, 'frankly': 1.0, 'pounds': 1.0, 'moved': 1.0, 'two': 1.0, 'her': 3.0, 'little': 3.0, 'these': 2.0, 'some': 3.0, 'also': 1.0, 'us': 2.0, 'flat': 1.0, 'there': 1.0, 'chair': 7.0, 'know': 1.0, 're': 4.0, 'come': 1.0, 'while': 1.0, 'report': 1.0, 'claims': 1.0, 'time': 1.0, 'quick': 1.0, 'than': 1.0, 'nice': 1.0, 'big': 1.0, 'so': 2.0, 'is': 3.0, 'can': 1.0, 'addition': 1.0, 'from': 2.0, 'breather': 1.0, 'purpose': 1.0, 'has': 3.0, 'newest': 1.0, 'an': 2.0, 'all': 1.0, 'to': 10.0, 'right': 1.0, 'side': 1.0, 'll': 2.0, '30': 1.0, 'beautifully': 1.0, 'stick': 1.0, 'far': 2.0, 'legs': 1.0, 'cheap': 1.0, 'only': 1.0, '15': 1.0, 'minutes': 1.0, 'really': 2.0, 'expect': 1.0, 'wish': 1.0, 'even': 1.0, 'of': 2.0, 'old': 1.0, 'chairs': 2.0, 'not': 2.0, 'nature': 1.0, 'myself': 1.0, 'babysitters': 1.0, 'places': 1.0, 'but': 3.0, 'park': 1.0, 'were': 1.0, 'child': 1.0, 'baby': 1.0, 'hours': 1.0, 'was': 3.0, 'beyond': 1.0, 'unhealthy': 1.0, 'quite': 1.0, 'incline': 1.0, 'neglectful': 1.0, 'overall': 2.0, 'they': 1.0, 'had': 2.0, 'massive': 1.0, 'served': 1.0, 'don': 1.0, 'certain': 1.0, 'using': 1.0, 'plush': 1.0, 'soft': 1.0, 'breaker': 1.0, 'sounds': 1.0, 'easy': 1.0, 'attractive': 1.0, 'neutral': 1.0, 'large': 1.0, 'sit': 1.0, 'as': 2.0, 'tripped': 1.0, 'bird': 1.0, 'she': 4.0, 'make': 1.0, 'perfect': 1.0, 'reviewers': 1.0, 'its': 1.0, 'size': 1.0, 'think': 1.0, 'bigger': 1.0, 'variety': 1.0, 'remember': 1.0, 'people': 1.0, 'nuts': 1.0, 'just': 3.0, 'and': 12.0, 'complaining': 1.0, 'exaggerated': 1.0, 'over': 2.0, 'until': 1.0, 'kinda': 1.0}
Word element => {'recommend': 1.0, 'purchase': 1.0, 'it': 2.0, 'love': 1.0, 'just': 1.0, 'hhey': 1.0, 'does': 1.0, 'i': 1.0, 'so': 1.0, 'premie': 1.0, 'purchased': 1.0, 'who': 1.0, 'this': 1.0, 'awesome': 1.0, 'for': 1.0, 'a': 2.0, 'friend': 1.0, 'is': 1.0, 'baby': 2.0, 'highly': 1.0, 'and': 2.0}
Word element => {'now': 1.0, 'to': 2.0, 'was': 1.0, 'give': 1.0, 'not': 1.0, 'just': 1.0, 'and': 2.0, 'very': 1.0, 'activity': 1.0, 'bouncer': 1.0, 'the': 2.0, 'unfortunately': 1.0, 'light': 1.0, 'received': 1.0, 'excited': 1.0, 'it': 2.0, 'return': 1.0, 'bar': 1.0, 'a': 1.0, 'try': 1.0, 'work': 1.0, 'will': 1.0, 'am': 1.0, 'i': 2.0, 'packaging': 1.0}
Word element => {'stars': 1.0, 'think': 1.0, 'even': 2.0, 'for': 1.0, 'steep': 1.0, 'purchased': 1.0, 'not': 1.0, 'glad': 1.0, 'overall': 1.0, 'am': 1.0, 'low': 1.0, 'annoying': 1.0, 'pillow': 1.0, 'position': 1.0, 'head': 1.0, 'awake': 1.0, 'jar': 1.0, 'saves': 1.0, 'while': 1.0, 'turns': 1.0, 'after': 1.0, 'shuts': 1.0, 'batteries': 1.0, 'who': 2.0, 'time': 2.0, 'sleep': 1.0, 'vibration': 3.0, 'price': 1.0, 'product': 2.0, 'softness': 1.0, 'padding': 1.0, 'some': 1.0, 'part': 1.0, 'folded': 1.0, 'up': 2.0, 'end': 1.0, 'plastic': 1.0, 'hard': 1.0, 'cringe': 1.0, 'mobile': 2.0, 'guess': 1.0, 'color': 1.0, 'bird': 1.0, 'about': 2.0, 'all': 2.0, 'to': 6.0, 'be': 3.0, 'likes': 1.0, 't': 4.0, 'small': 1.0, 'a': 3.0, 'adjustable': 1.0, '4': 1.0, 'was': 4.0, 'anymore': 1.0, 'now': 2.0, '3': 1.0, 'your': 1.0, 'long': 1.0, 'on': 4.0, 'so': 2.0, 'constantly': 2.0, 'therefore': 1.0, 'very': 1.0, 'son': 4.0, 'least': 1.0, 'seem': 1.0, 'may': 1.0, 'me': 1.0, 'my': 5.0, 'm': 2.0, 'in': 3.0, 'will': 1.0, 'and': 9.0, 'put': 1.0, 'do': 4.0, 'rather': 1.0, 'like': 5.0, 'more': 3.0, 'really': 3.0, 'old': 1.0, 'off': 2.0, 'seems': 1.0, 'until': 1.0, 'mostly': 1.0, 'blanket': 1.0, 'lame': 1.0, '5': 2.0, 'or': 1.0, 'what': 2.0, 'when': 4.0, 'entertain': 1.0, 'meant': 1.0, 'you': 2.0, 'thing': 3.0, 'toes': 2.0, 'few': 1.0, 'this': 5.0, 'interactive': 1.0, 'he': 10.0, 'sits': 2.0, 'is': 8.0, 'at': 3.0, 'one': 2.0, 'lot': 1.0, 'makes': 1.0, 'keep': 1.0, 'did': 1.0, 'loved': 1.0, 'got': 1.0, 'younger': 1.0, 'weeks': 1.0, 'would': 3.0, 'every': 1.0, 'enjoy': 1.0, 'if': 3.0, 'always': 1.0, 'them': 1.0, 'but': 4.0, 'they': 1.0, 'just': 2.0, 'give': 2.0, 'hang': 1.0, 'there': 1.0, 'nothing': 1.0, 'active': 1.0, 'first': 1.0, 'are': 1.0, 'music': 3.0, 'around': 1.0, 'his': 3.0, 'of': 2.0, 'the': 14.0, 'attention': 1.0, 'second': 1.0, 'doesn': 4.0, 'everyone': 1.0, 'else': 1.0, 'him': 2.0, 'it': 14.0, 'states': 1.0, 'stub': 2.0, 'putting': 1.0, 'i': 12.0, 'feet': 1.0, 'third': 1.0, 'negative': 1.0, 'because': 3.0, 'bangs': 1.0, 'that': 3.0, 'box': 1.0, 'we': 2.0, 'moving': 2.0, 'get': 1.0, 'months': 2.0, 'bouncer': 1.0, 'moved': 2.0, 'legs': 1.0, 'bland': 1.0, 'control': 1.0, 'people': 1.0, 'mind': 1.0}
Word element => {'seat': 1.0, 'timer': 1.0, 'music': 1.0, 'vibrater': 1.0, 'are': 1.0, 'great': 1.0, 'diffrent': 1.0, 'the': 4.0, 'a': 1.0, 'well': 3.0, 'all': 1.0, 'easy': 1.0, 'toy': 1.0, 'as': 2.0, 'very': 1.0, 'in': 1.0, 'also': 1.0, 'seems': 1.0, 'stiched': 1.0, 'up': 1.0, 'and': 1.0, 'to': 2.0, 'was': 1.0, 'light': 1.0, 'features': 1.0, 'stuff': 1.0, '4': 1.0, 'on': 1.0, 'this': 1.0, 'it': 2.0, 'works': 2.0, 'has': 1.0, 'assemble': 1.0, '3': 1.0, 'or': 1.0}
Word element => {'low': 1.0, 'is': 5.0, 'say': 1.0, 'plan': 1.0, 'more': 1.0, 'everything': 1.0, 'if': 1.0, 'before': 1.0, 'myself': 1.0, 'the': 5.0, 'do': 1.0, 'for': 1.0, 'loves': 1.0, 'assemble': 1.0, 'than': 1.0, '20': 1.0, 'that': 2.0, 'because': 1.0, '14': 1.0, 'will': 2.0, 'also': 1.0, 'can': 2.0, 'was': 3.0, 'minutes': 1.0, 'pretty': 1.0, 'to': 6.0, 'but': 2.0, 'write': 1.0, 'it': 6.0, 'this': 3.0, 'full': 2.0, 'a': 3.0, 'easy': 1.0, 'where': 1.0, 'fully': 1.0, 'obvious': 1.0, 'went': 1.0, 'until': 1.0, 'my': 3.0, 'able': 2.0, 'born': 1.0, 'due': 1.0, 'toys': 1.0, 'not': 1.0, 'less': 1.0, 'in': 6.0, 'seat': 2.0, 'm': 1.0, 'i': 7.0, '4': 1.0, 'has': 1.0, 't': 3.0, 'likes': 1.0, 'product': 1.0, 'child': 2.0, 'isn': 1.0, 'use': 1.0, 'return': 1.0, 'entertained': 1.0, '2014': 1.0, 'sit': 1.0, 'very': 1.0, 'later': 1.0, 'while': 2.0, 'order': 1.0, 'then': 1.0, 'room': 1.0, 'once': 1.0, 'enamored': 1.0, 'yet': 1.0, 'he': 5.0, '18': 1.0, 'review': 3.0, 'eta': 1.0, 'baby': 1.0, 'months': 1.0, 'out': 1.0, 'wait': 1.0, 'cook': 1.0, 'dinner': 1.0, 'would': 1.0, 'and': 2.0, 'give': 1.0, 'hang': 1.0, 'perfectly': 1.0, 'january': 1.0, 'now': 1.0, 'old': 1.0, '6': 1.0, 'interested': 1.0, 'lights': 1.0, 'even': 1.0, 'with': 1.0, 'been': 1.0, 'blue': 1.0, 'light': 1.0, 'cute': 1.0, 'are': 1.0}
Word element => {'fussy': 1.0, 'when': 1.0, 'to': 1.0, 'go': 1.0, 'seat': 1.0, 'interested': 1.0, 'isn': 1.0, 'grandaughter': 1.0, 'trick': 1.0, 'in': 1.0, 'perfect': 1.0, 'also': 1.0, 'well': 1.0, 'need': 1.0, 'and': 1.0, 'or': 1.0, 'colic': 1.0, 'you': 1.0, 'our': 1.0, 'that': 2.0, 't': 1.0, 'the': 4.0, 'made': 1.0, 'is': 6.0, 'arch': 1.0, 'bouncer': 2.0, 'infant': 1.0, 'toys': 1.0, 'inexpensive': 1.0, 'bothering': 1.0, 'with': 1.0, 'it': 3.0, 'only': 1.0, 'this': 1.0, 'tummy': 1.0, 'have': 1.0, 'for': 1.0, 'but': 1.0, 'will': 1.0, 'an': 1.0, 'she': 1.0, 'may': 1.0, 'her': 3.0, 'does': 1.0}
Word element => {'not': 1.0, 'music': 1.0, 'there': 1.0, 'sounds': 2.0, 'also': 2.0, 'over': 1.0, 'don': 1.0, '38': 1.0, 'volume': 1.0, 'or': 3.0, 'were': 1.0, 'got': 1.0, 'when': 3.0, 'that': 1.0, 'easily': 1.0, 'lbs': 1.0, 'wider': 1.0, 'seem': 2.0, 'we': 3.0, 'a': 4.0, 's': 2.0, 't': 3.0, 'than': 1.0, 'does': 1.0, 'having': 1.0, 'review': 1.0, 'has': 1.0, 'other': 1.0, 'rainforest': 1.0, 'obviously': 1.0, 'bouncy': 1.0, 'old': 1.0, 'control': 1.0, 'waterfall': 1.0, 'option': 1.0, 'great': 1.0, 'for': 3.0, 'assembled': 1.0, 'model': 1.0, 'easy': 1.0, 'legs': 1.0, 'get': 1.0, 'any': 1.0, 'is': 7.0, 'caught': 1.0, 'first': 1.0, 'this': 2.0, 'very': 1.0, 'recommended': 1.0, 'tripping': 1.0, 'and': 6.0, 'walk': 1.0, 'play': 1.0, 'too': 1.0, 'some': 1.0, 'have': 1.0, 'seats': 1.0, 'pulls': 1.0, 'by': 1.0, 'bright': 1.0, 'base': 1.0, 'holding': 1.0, 'sitting': 1.0, 'noise': 2.0, 'before': 1.0, 'continuously': 1.0, 'make': 1.0, 'nuts': 1.0, '3': 1.0, 'quickly': 1.0, 'only': 1.0, 'baby': 3.0, 'down': 1.0, 'soothing': 1.0, 'good': 1.0, 'of': 1.0, 'the': 9.0, 'attention': 1.0, 'to': 3.0, 'pretty': 2.0, 'seat': 2.0, 'in': 2.0, 'out': 1.0, 'colors': 1.0, 'though': 1.0, 'obnoxious': 1.0, 'would': 1.0, 'either': 1.0, 'aren': 1.0, 'sturdy': 1.0, 'year': 1.0, 'me': 1.0, 'my': 1.0, 'been': 1.0, 'doesn': 1.0, 'nature': 2.0, 'be': 1.0, 'worse': 1.0, 'it': 6.0, 'wear': 1.0}
Word element => {'snugabunny': 1.0, 'swing': 1.0, 'little': 1.0, 'my': 1.0, 'the': 1.0, 'prefers': 1.0, 'old': 1.0, 'of': 1.0, 'she': 4.0, 'baby': 1.0, 'held': 1.0, 'most': 1.0, 'spent': 1.0, 'lifesaver': 1.0, 'in': 1.0, 'newborn': 1.0, 'being': 1.0, 'time': 1.0, 'is': 1.0, 'a': 2.0, 'now': 1.0, 'was': 2.0, 'not': 1.0, 'with': 1.0, 'this': 1.0, 'her': 1.0, 'here': 1.0, 'when': 1.0, 'months': 1.0, '4': 1.0, 'that': 1.0}
Word element => {'birds': 1.0, 'at': 1.0, 'looks': 1.0, 'and': 2.0, 'the': 1.0, 'my': 1.0, 'too': 1.0, 'girl': 1.0, 'likes': 2.0, 'looking': 1.0, 'her': 1.0, 'bouncer': 1.0, 'baby': 1.0, 'she': 3.0, 'contrable': 1.0, 'stays': 1.0, 'hours': 1.0, 'for': 1.0, 'in': 1.0, 'really': 1.0, 'asleep': 1.0, 'it': 1.0}
Word element => {'liked': 1.0, 'have': 1.0, 'than': 1.0, 'a': 1.0, 'price': 1.0, 'and': 3.0, 'vibration': 1.0, 'just': 1.0, 'not': 1.0, 'item': 1.0, 'also': 1.0, 'more': 1.0, 'is': 2.0, 'perfect': 1.0, 'this': 2.0, 'only': 1.0, 'would': 3.0, 'one': 1.0, 'i': 4.0, 'old': 1.0, 'putting': 1.0, 'needed': 1.0, 'it': 3.0, 'she': 1.0, 'con': 1.0, 'easy': 1.0, 'right': 1.0, 'somewhat': 1.0, 'an': 1.0, 'birds': 1.0, 'week': 1.0, 'infant': 1.0, 'craddle': 1.0, 'my': 1.0, '3': 1.0, 'for': 1.0, 'assemble': 1.0, 'that': 1.0, 'loves': 1.0, 'her': 1.0, 'good': 1.0, 'music': 1.0, 'did': 1.0, 'recommend': 1.0, 'was': 3.0, 'the': 4.0, 'myself': 1.0, 'am': 1.0, 'seat': 1.0, 'to': 1.0, 'typically': 1.0, 'little': 1.0, 'very': 1.0, 'at': 1.0, 'things': 1.0, 'singing': 1.0, 'together': 1.0}
Word element => {'likes': 1.0, 'that': 1.0, 'and': 1.0, 'much': 1.0, 't': 1.0, 'doesn': 1.0, 'to': 1.0, 'loves': 1.0, 's': 2.0, 'prefers': 1.0, 'a': 4.0, 'believe': 1.0, 'bouncer': 1.0, 'baby': 1.0, 'batteries': 1.0, 'swing': 1.0, 'little': 1.0, 'my': 2.0, 'is': 2.0, 'must': 1.0, 'this': 1.0, 'he': 2.0, 'it': 3.0, 'with': 1.0, 'only': 1.0, 'new': 1.0, 'complaint': 1.0, 'i': 1.0, 'could': 1.0, 'vibrate': 1.0, 'move': 1.0, 'stronger': 1.0, 'what': 1.0, 'even': 1.0}
Word element => {'stores': 1.0, 'find': 1.0, 'which': 1.0, 'the': 2.0, 'on': 1.0, 'price': 1.0, 'best': 1.0, 'handling': 1.0, 'difficult': 1.0, 'shipping': 1.0, 'refunding': 1.0, 'another': 1.0, 'my': 2.0, 'internet': 1.0, 'a': 2.0, 'product': 1.0, 'for': 3.0, 'comfortable': 1.0, 'one': 2.0, 'and': 2.0, 'get': 2.0, 'very': 1.0, 'adorable': 1.0, 'is': 1.0, 'in': 1.0, 'said': 2.0, 'amazon': 1.0, 'was': 3.0, 'to': 3.0, 'had': 1.0, 'baby': 1.0, 'from': 1.0, 'hard': 1.0, 'this': 1.0, 'plush': 1.0, 'first': 1.0, 'it': 4.0, 'item': 1.0, 'cute': 1.0, 'fed': 1.0, 'delayed': 1.0, 'extremely': 1.0, 'once': 1.0, 'ex': 1.0, 'got': 2.0, 'then': 1.0, 'order': 1.0, 'they': 4.0, 'would': 1.0, 'me': 1.0, 'not': 1.0, 'i': 2.0, '4': 1.0, 'weeks': 1.0, 'week': 1.0, 'back': 1.0, 'within': 1.0, 'shipped': 1.0, 'somehow': 1.0, 'finally': 1.0, 'that': 1.0, 'sent': 2.0}
Word element => {'toys': 1.0, 'offer': 1.0, 'play': 1.0, 'to': 1.0, 'lights': 1.0, 'now': 1.0, 'can': 1.0, 'of': 2.0, 'sounds': 1.0, 'remove': 1.0, 'grow': 1.0, 'become': 1.0, 'cozy': 1.0, 'new': 1.0, 'too': 1.0, 'reach': 1.0, 'and': 5.0, 'very': 2.0, 'as': 1.0, 'aware': 1.0, 'more': 1.0, 'the': 4.0, 'for': 1.0, 'washable': 1.0, 'has': 1.0, 'overhead': 1.0, 'boy': 1.0, 'they': 2.0, 'bar': 1.0, 'a': 1.0, 'is': 2.0, 'aray': 1.0, 'bouncer': 1.0, 'addaptible': 1.0, 'brightly': 1.0, 'born': 1.0, 'removable': 1.0, 'you': 1.0, 's': 1.0, 'also': 1.0, 'colored': 1.0, 'body': 1.0, 'cushion': 2.0, 'with': 1.0, 'this': 1.0, 'it': 2.0}
Word element => {'buy': 1.0, 'don': 2.0, 'know': 1.0, 'you': 4.0, 'second': 1.0, 'be': 2.0, 'based': 1.0, 'couldn': 1.0, 'and': 7.0, 'similar': 1.0, 'necessary': 1.0, 'support': 1.0, 'knew': 1.0, 'some': 1.0, 'products': 1.0, 'baby': 4.0, 'to': 6.0, 'seat': 4.0, 'grow': 1.0, 'trust': 1.0, 'used': 1.0, 'had': 1.0, 'babe': 1.0, 'was': 2.0, 'minutes': 1.0, 'upon': 1.0, 'daughter': 1.0, 'what': 2.0, 'when': 1.0, 'for': 4.0, 'too': 1.0, 'one': 2.0, 'use': 1.0, 'purchase': 1.0, 'a': 9.0, 'reviews': 1.0, 'we': 4.0, 't': 3.0, 'bunny': 1.0, 'your': 2.0, 'chose': 1.0, 'but': 1.0, 'can': 1.0, 'all': 1.0, 'other': 2.0, 'ears': 1.0, 'home': 1.0, 'time': 1.0, 'new': 1.0, 'needed': 1.0, 'newborn': 2.0, 'put': 1.0, 'much': 1.0, 'day': 1.0, 'son': 1.0, 'knowing': 1.0, 'enough': 1.0, 'our': 2.0, 'how': 1.0, 'it': 3.0, 'annoying': 1.0, 'hesitate': 1.0, 'me': 1.0, 'looks': 1.0, 'of': 2.0, 'the': 6.0, 'place': 1.0, 'hands': 1.0, 'provides': 1.0, 'happier': 1.0, 'music': 1.0, 'around': 1.0, 'his': 1.0, 'secure': 1.0, 'sounds': 1.0, 'comfortable': 1.0, 'cozy': 1.0, 'down': 1.0, 'soothing': 1.0, 'nap': 1.0, 'need': 3.0, 'or': 1.0, 'behind': 1.0, 'just': 1.0, 'this': 3.0, 'few': 1.0, 'free': 1.0, 'with': 3.0, 'plenty': 1.0, 'set': 1.0, 'bouncy': 1.0, 'cradle': 1.0, 'i': 2.0, 'well': 1.0, 'these': 1.0, 'room': 1.0, 'cute': 1.0, 'first': 2.0, 'are': 1.0, 'really': 1.0, 'quiet': 1.0, 'not': 1.0, 'like': 2.0, 'is': 1.0, 'at': 1.0, 'stinkin': 1.0, 'head': 1.0, 'said': 1.0}
Word element => {'dad': 1.0, 'and': 1.0, 'mom': 1.0, 'therefore': 1.0, 'loves': 1.0, 'the': 1.0, 'start': 1.0, 'my': 1.0, '4': 1.0, 'love': 1.0, 'it': 2.0, 'works': 1.0, 'great': 1.0, 'month': 1.0, 'music': 1.0, 'to': 1.0, 'old': 1.0, 'has': 1.0, 'how': 1.0, 'she': 1.0, 'figured': 1.0, 'out': 1.0}
Word element => {'very': 1.0, 'constructed': 1.0, 'mom': 1.0, 'grandson': 1.0, 'attractive': 1.0, 'other': 1.0, 'our': 1.0, 'for': 1.0, 'new': 1.0, 'things': 1.0, 'is': 1.0, 'time': 1.0, 'bouncer': 1.0, 'movement': 1.0, 'allows': 1.0, 'perfect': 2.0, 'well': 1.0, 'a': 1.0, 'little': 1.0, 'to': 1.0, 'do': 1.0, 'and': 1.0, 'this': 1.0, 'it': 1.0, 'he': 1.0, 'enjoys': 1.0, 'the': 1.0}
Word element => {'counter': 1.0, 'top': 1.0, 'from': 1.0, 'the': 1.0, 'wherever': 1.0, 'goes': 1.0, 'such': 1.0, 'gentle': 1.0, 'entertain': 1.0, 'to': 2.0, 'and': 2.0, 'floor': 1.0, 'vibration': 1.0, 'a': 2.0, 'create': 1.0, 'entertainment': 1.0, 'comfy': 1.0, 'help': 1.0, 'position': 1.0, 'is': 1.0, 'action': 1.0, 'with': 1.0}
Word element => {'though': 1.0, 'soft': 1.0, 'safe': 1.0, 'seems': 1.0, 'up': 1.0, 'fold': 1.0, 'bouncers': 1.0, 'complaint': 1.0, 'is': 1.0, 'most': 1.0, 'my': 1.0, 'except': 1.0, 'that': 1.0, 'for': 1.0, 'love': 1.0, 'aside': 1.0, 'can': 1.0, 'i': 1.0, 'they': 2.0, 'be': 1.0, 'to': 1.0, 'store': 1.0, 't': 1.0, 'bulky': 1.0, 'and': 3.0, 'with': 1.0, 'this': 2.0, 'hard': 1.0, 'because': 1.0, 'put': 1.0, 'baby': 1.0, 'don': 1.0}
Word element => {'falls': 1.0, 'until': 1.0, 'just': 1.0, 'take': 1.0, 'light': 1.0, 'having': 1.0, 'is': 1.0, 'her': 1.0, 'asleep': 1.0, 'to': 1.0, 'was': 1.0, 'thing': 1.0, 'mom': 1.0, 'chills': 1.0, 'that': 1.0, 's': 1.0, 'you': 1.0, 'friend': 1.0, 'enough': 1.0, 'new': 1.0, 'anywhere': 1.0, 'my': 1.0, 'the': 2.0, 'for': 1.0, 'it': 2.0, 'first': 1.0, 'this': 2.0, 'got': 1.0, 'i': 1.0, 'baby': 2.0, 'best': 1.0, 'very': 1.0, 'can': 1.0, 'and': 1.0, 'get': 1.0, 'a': 1.0}
Word element => {'known': 1.0, 'trusted': 1.0, 'fisher': 1.0, 'is': 1.0, 'features': 1.0, 'all': 1.0, 'nice': 1.0, 'think': 1.0, 'fact': 1.0, 'but': 1.0, 'price': 1.0, 'baby': 1.0, 'love': 1.0, 'yet': 1.0, 'for': 1.0, 'had': 2.0, 'gift': 2.0, 'product': 1.0, 'bought': 1.0, 's': 2.0, 'niece': 1.0, 'i': 4.0, 'and': 4.0, 'the': 2.0, 't': 1.0, 'my': 1.0, 'that': 2.0, 'thought': 1.0, 'can': 1.0, 'her': 1.0, 'works': 1.0, 'this': 1.0, 'it': 4.0, 'looked': 1.0, 'say': 1.0, 'as': 3.0, 'adorable': 1.0, 'brand': 1.0, 'how': 1.0, 'a': 4.0, 'well': 1.0, 'she': 1.0, 'not': 1.0}
Word element => {'from': 1.0, 'another': 1.0, 'got': 1.0, 'full': 1.0, 'else': 1.0, 'bouncer': 1.0, 'star': 1.0, 'because': 1.0, 'i': 1.0, 'found': 1.0, 'together': 1.0, 'was': 1.0, 'product': 1.0, 'we': 1.0, 'play': 1.0, 'gave': 1.0, 'this': 1.0, 'it': 2.0, 'refund': 1.0, 'and': 2.0, 'a': 1.0, 'bar': 1.0, 'someplace': 1.0, 'out': 1.0, 'that': 1.0, 'the': 1.0, 'broken': 1.0, 'sent': 1.0, 'put': 1.0, 'back': 1.0, 'one': 1.0, 'for': 1.0}
Word element => {'son': 1.0, 'had': 1.0, 'the': 1.0, 'stand': 1.0, 'couldn': 1.0, 'so': 2.0, 'eat': 1.0, 'feedings': 1.0, 'my': 3.0, 'lot': 1.0, 'used': 1.0, 'her': 3.0, 'this': 2.0, 'with': 1.0, 'guy': 1.0, 'expecting': 1.0, 'little': 1.0, 'don': 1.0, 'baby': 1.0, 'loved': 1.0, 'for': 2.0, 'old': 1.0, 'but': 1.0, 'own': 1.0, 'and': 4.0, 'get': 1.0, 'comfy': 1.0, 'that': 1.0, 'we': 1.0, 'a': 1.0, 't': 2.0, 'could': 1.0, 'cook': 1.0, 'always': 1.0, 'dinner': 1.0, 'husband': 1.0, 'bouncer': 2.0, 'wanted': 1.0, 'our': 1.0, 'to': 1.0, 'i': 3.0, 'two': 1.0, 'year': 1.0, 'from': 1.0, 'in': 1.0, 'she': 2.0, 'it': 4.0, 'looks': 1.0, 'second': 1.0, 'm': 1.0, 'borrowing': 1.0, 'does': 1.0, 'sister': 1.0, 'because': 1.0}
Word element => {'easy': 1.0, 'long': 1.0, 'a': 1.0, 'last': 1.0, 'pretty': 1.0, 'batteries': 1.0, 'house': 1.0, 'change': 1.0, 'and': 2.0, 'time': 1.0, 'son': 1.0, 'loves': 1.0, 'it': 2.0, 's': 1.0, 'are': 1.0, 'the': 1.0, 'my': 1.0, 'small': 1.0, 'light': 1.0, 'enough': 1.0, 'to': 2.0, 'around': 1.0, 'carry': 1.0}
Word element => {'sounds': 1.0, 'the': 1.0, 'feet': 2.0, 'his': 1.0, 'kicks': 1.0, '1': 1.0, 'adorable': 1.0, 'curious': 2.0, 'is': 1.0, 'grandson': 1.0, 'my': 1.0, 'for': 1.0, 'month': 1.0, 'he': 2.0, 'this': 1.0, 'it': 1.0, 'got': 1.0, 'about': 1.0, 'everything': 1.0, 'like': 1.0, 'but': 1.0, 'thought': 1.0, 'make': 1.0, 'george': 1.0, 'especially': 1.0, 'old': 1.0, 'i': 1.0, 'when': 1.0, 'was': 1.0}
Word element => {'rounding': 1.0, '3': 1.0, '2': 1.0, 'got': 1.0, 'time': 1.0, 'tummy': 1.0, 'carrying': 1.0, 'babysitters': 1.0, 'not': 1.0, 'hold': 1.0, 'carry': 1.0, 'should': 1.0, 'learned': 1.0, 'but': 2.0, 'terrified': 1.0, 'birth': 2.0, 'before': 1.0, 'was': 2.0, 'hours': 1.0, 'their': 1.0, 'babies': 1.0, 'suggested': 1.0, 'no': 1.0, 'crib': 1.0, 'even': 1.0, 'day': 2.0, 'any': 1.0, 'your': 2.0, 'there': 2.0, 'give': 1.0, 'will': 1.0, 'devices': 1.0, 'head': 1.0, 'flathead': 3.0, 'giving': 1.0, 'contraptions': 1.0, 'these': 5.0, 'about': 1.0, 'often': 1.0, 'gave': 1.0, 'graduated': 1.0, 'month': 3.0, 'it': 4.0, 'used': 1.0, 'up': 1.0, 'nighttime': 1.0, 'them': 2.0, 'many': 1.0, 'baby': 8.0, 'snuggles': 1.0, 'in': 4.0, 'third': 1.0, 'when': 3.0, 'things': 2.0, 'complaints': 1.0, 'you': 6.0, 'again': 2.0, 'am': 1.0, 'i': 9.0, 'cozy': 1.0, 'would': 1.0, 'answer': 1.0, 'he': 2.0, 'go': 1.0, 'attractive': 1.0, 'really': 3.0, 'highly': 1.0, 'this': 2.0, 'to': 10.0, 'sleep': 3.0, 'leave': 1.0, 'as': 6.0, 'wondered': 1.0, 'lot': 1.0, 'still': 1.0, 'if': 4.0, 'a': 10.0, 'tiny': 1.0, 'been': 1.0, 'nails': 1.0, 'swing': 3.0, 'at': 5.0, 'is': 7.0, 'unsupervised': 1.0, 'can': 1.0, 'so': 4.0, 'newborn': 1.0, 'sleeper': 1.0, 'needed': 1.0, 'first': 3.0, 'are': 2.0, 'see': 1.0, 'yes': 2.0, 'and': 9.0, 'months': 2.0, 'bouncer': 8.0, 'get': 2.0, 'that': 2.0, 'because': 1.0, 'since': 2.0, 'find': 1.0, 'way': 1.0, 'than': 1.0, 't': 1.0, 'rocker': 3.0, 'myself': 1.0, 'all': 4.0, 'playing': 2.0, 'good': 4.0, 'comfortable': 1.0, 'didn': 1.0, 'chatting': 1.0, 'use': 4.0, 'out': 2.0, 'cutting': 1.0, 'second': 1.0, 'now': 2.0, 'pulling': 1.0, 'recliner': 1.0, 'around': 1.0, 'his': 2.0, 'reading': 2.0, 'they': 3.0, 'sleeping': 1.0, 'naps': 1.0, 'need': 1.0, 'or': 3.0, 'just': 1.0, 'with': 2.0, 'quick': 1.0, 'my': 4.0, 'bathroom': 1.0, 'makes': 1.0, 'book': 1.0, 'supervised': 1.0, 'backs': 1.0, 'for': 7.0, 'such': 1.0, 'reviews': 1.0, 'then': 1.0, 'we': 2.0, 'take': 1.0, 'doing': 1.0, 'the': 17.0, 'of': 3.0, 'like': 1.0, 'care': 1.0, 'rather': 1.0, 'have': 2.0, 'something': 1.0, 'dogs': 1.0, 'be': 1.0, 'safer': 1.0, 'floor': 1.0, 'put': 2.0, 'on': 3.0}
Word element => {'friend': 1.0, 'shower': 1.0, 'a': 2.0, 'gift': 1.0, 'bought': 1.0, 'cute': 1.0, 'good': 1.0, 'for': 3.0, 'newborns': 1.0, 'babies': 1.0, 'very': 1.0, 'and': 2.0, 'little': 1.0, 'use': 1.0, 'easy': 1.0, 'product': 1.0, 'to': 1.0}
Word element => {'best': 1.0, 'of': 1.0, 'him': 1.0, 'enought': 1.0, 'buys': 1.0, 'much': 1.0, 'not': 1.0, 'also': 2.0, 'everywhere': 1.0, 'take': 1.0, 'durable': 1.0, 'very': 2.0, 'my': 2.0, 'washable': 1.0, 'sound': 1.0, 'extra': 1.0, 'an': 1.0, 'sooth': 1.0, 'get': 1.0, 'one': 1.0, 'months': 2.0, 'bananas': 1.0, 'just': 1.0, 'by': 1.0, 'vibration': 1.0, 'using': 1.0, 'started': 1.0, 'reaching': 1.0, 'was': 2.0, 'now': 2.0, 'for': 3.0, 'love': 1.0, 'lights': 1.0, 'ready': 1.0, 'put': 1.0, 'while': 1.0, 'we': 5.0, 'entertained': 1.0, 'bouncer': 1.0, 'items': 1.0, 'perfect': 1.0, 'this': 5.0, 'it': 5.0, 'he': 3.0, 'to': 1.0, 'our': 2.0, 'morning': 1.0, 'portion': 1.0, 'every': 1.0, 'but': 1.0, 'work': 1.0, '2': 1.0, 'in': 2.0, 'is': 5.0, '5': 1.0, 'been': 1.0, 'initially': 1.0, 'has': 1.0, 'likes': 1.0, 'too': 1.0, 'finds': 1.0, 'and': 2.0, 'enjoying': 1.0, 'hilarious': 1.0, 'when': 1.0, 'you': 1.0, 'the': 6.0, 'hanging': 1.0, 'there': 1.0, 'are': 1.0, 'son': 4.0, 'still': 1.0, 'middle': 1.0, 'if': 1.0, 'pull': 1.0, 'banana': 1.0, 'makes': 1.0}
Word element => {'much': 1.0, 'was': 1.0, 'neutral': 1.0, 'gender': 1.0, 'carry': 1.0, 'stiff': 1.0, 'too': 1.0, 'we': 1.0, 'toes': 1.0, 'you': 3.0, 'than': 2.0, 'ear': 1.0, 'does': 2.0, 'everyone': 1.0, 'safer': 1.0, 'its': 2.0, 'like': 2.0, 'comfortable': 1.0, 'base': 2.0, 'of': 2.0, 'the': 6.0, 'hanging': 1.0, 'house': 1.0, 'foot': 2.0, 'but': 3.0, 'soft': 1.0, 'this': 1.0, 'if': 1.0, 'baby': 5.0, 'not': 1.0, 'and': 3.0, 'from': 1.0, 'very': 2.0, 'inches': 1.0, 'love': 1.0, 'body': 1.0, 'as': 1.0, 'to': 4.0, 'wide': 1.0, 'don': 1.0, 'might': 1.0, 'a': 3.0, 'bunny': 2.0, 't': 1.0, 'seat': 1.0, 'in': 1.0, 'said': 1.0, 'also': 1.0, 'will': 1.0, 'warm': 1.0, 'ages': 1.0, 'cheaper': 2.0, 'uncomfy': 1.0, 'makes': 1.0, 'else': 1.0, 'bouncers': 1.0, 'bouncer': 2.0, 'toys': 1.0, 'can': 2.0, 'so': 1.0, 'would': 1.0, 'summer': 1.0, 'they': 1.0, 'material': 1.0, 'bounce': 2.0, 'be': 3.0, 'repeatedly': 1.0, 'is': 2.0, 'at': 1.0, 'stubbed': 1.0, 'that': 2.0, 'easier': 1.0, 'true': 1.0, 'pillow': 1.0, 'off': 2.0, 'own': 1.0, 'come': 2.0, 'washing': 2.0, 'adjust': 1.0, 'plastic': 1.0, 'connected': 1.0, 'by': 1.0, 'piece': 1.0, 'sweating': 1.0, 'cushioning': 1.0, 'thrill': 1.0, 'with': 1.0, 'for': 4.0, 'fabric': 1.0, 'have': 2.0, 'lets': 1.0, 'thought': 1.0, 'it': 3.0, 'higher': 1.0, 'several': 1.0, 'birds': 1.0, 'grows': 1.0, 'feel': 1.0, 'your': 1.0, 'seem': 1.0, 'hang': 1.0, 'all': 1.0, 'links': 1.0, 'i': 3.0, 'use': 1.0, 'me': 1.0, 'my': 2.0, 'fisher': 1.0, 'product': 1.0, 'price': 1.0}
Word element => {'thank': 1.0, 'music': 1.0, 'to': 1.0, 'from': 1.0, 'bouncer': 1.0, 'it': 2.0, 'lights': 2.0, 'loves': 1.0, 's': 1.0, 'about': 1.0, 'cute': 1.0, 'and': 1.0, 'the': 3.0, 'my': 1.0, 'looks': 1.0, 'you': 1.0, 'comfortable': 1.0, 'nephew': 1.0, 'everything': 1.0}
Word element => {'longer': 1.0, 'while': 1.0, 'floor': 1.0, 'touching': 1.0, 'son': 1.0, 'point': 1.0, 'began': 1.0, 'months': 1.0, 'but': 1.0, 'weeks': 1.0, 'fussy': 1.0, 'few': 1.0, 'baby': 1.0, 'for': 1.0, 'last': 1.0, 'sag': 1.0, 'fantastic': 1.0, 'to': 3.0, 'was': 3.0, 'would': 1.0, 'great': 1.0, 'the': 4.0, 'my': 2.0, 'unfortunately': 1.0, 'less': 1.0, 'a': 1.0, 'after': 1.0, 'bouncer': 3.0, 'only': 1.0, 'it': 2.0, 'this': 1.0, 'that': 2.0, 'needs': 1.0, 'in': 1.0, 'soothe': 1.0, 'than': 1.0, 'thing': 1.0, 'four': 1.0}
Word element => {'worth': 1.0, 'for': 1.0, 'family': 1.0, 'another': 1.0, 'purchasing': 1.0, 'returning': 1.0, 'up': 1.0, 'quickly': 1.0, 'carry': 1.0, 'bouncer': 2.0, 'ended': 1.0, 'snugga': 2.0, 'between': 1.0, 'so': 1.0, 'surface': 1.0, 'comforting': 1.0, 'i': 4.0, 'bulky': 1.0, 'bouncy': 1.0, 'price': 2.0, 'toy': 1.0, 'wouldn': 1.0, 'this': 2.0, 'higher': 1.0, 'remove': 1.0, 'it': 2.0, 'hard': 1.0, 'was': 3.0, 'have': 2.0, 't': 1.0, 'bunny': 2.0, 'a': 1.0, 'purchased': 1.0, 'bar': 2.0, 'our': 1.0, 'to': 5.0, 'seat': 2.0, 'not': 1.0, 'floors': 1.0, 'second': 1.0, 'is': 2.0, 'reflective': 1.0, 'of': 1.0, 'always': 1.0, 'baby': 2.0, 'quality': 1.0, 'thin': 1.0, 'and': 3.0, 'learned': 1.0, 'get': 1.0, 'very': 1.0, 'also': 1.0, 'having': 1.0, 'that': 1.0, 'into': 1.0, 'chair': 1.0, 'the': 8.0, 'without': 1.0}
Word element => {'meets': 1.0, 'nice': 1.0, 'baby': 1.0, 'the': 1.0, 'yet': 1.0, 'my': 1.0, 'for': 1.0, 'but': 1.0, 'easy': 1.0, 'descriptions': 1.0, 'product': 1.0, 'to': 1.0, 'assemble': 1.0, 'good': 1.0, 'price': 1.0, 'it': 2.0, 'quality': 1.0, 'and': 2.0, 'pretty': 1.0, 'seems': 1.0, 'used': 1.0, 'haven': 1.0, 't': 1.0}
Word element => {'star': 1.0, 'five': 1.0, 'my': 1.0, 'rest': 1.0, 'instruction': 1.0, 'vague': 1.0, 'manufacture': 1.0, 'did': 1.0, 'yellow': 1.0, 'me': 1.0, 'peeling': 1.0, 'gentleman': 1.0, 'time': 1.0, 'this': 1.0, 'call': 1.0, 'minus': 1.0, 'have': 1.0, 'fine': 2.0, 'everything': 1.0, '5v': 1.0, '1': 1.0, 'and': 2.0, 'that': 2.0, 'sure': 1.0, 'used': 1.0, 'thanks': 1.0, 'again': 1.0, 'happened': 2.0, 'nothing': 2.0, 'began': 1.0, 'bar': 1.0, 's': 1.0, 'a': 3.0, 'connected': 1.0, 'user': 1.0, 'got': 1.0, 'need': 1.0, 'toys': 1.0, 'sons': 1.0, 'three': 1.0, 'seems': 1.0, 'batteries': 1.0, 'polled': 1.0, 'one': 2.0, 'it': 4.0, 'the': 14.0, '34': 2.0, 'enjoy': 1.0, 'pull': 3.0, 'banana': 3.0, 'worths': 1.0, 'toy': 1.0, 'ask': 1.0, 'work': 1.0, 'music': 2.0, 'all': 1.0, 'to': 8.0, 'manual': 3.0, 'told': 1.0, 'battery': 2.0, 'is': 3.0, 'amazon': 2.0, 'directly': 1.0, 'days': 1.0, 'product': 1.0, 'for': 3.0, 'assemble': 1.0, 'make': 1.0, 'on': 2.0, '3': 1.0, 'called': 1.0, 'however': 1.0, 'replacement': 1.0, 'multimeter': 1.0, 'question': 1.0, 'each': 1.0, 'new': 2.0, 'should': 1.0, 'said': 1.0, 'turn': 1.0, 'in': 1.0, 'i': 5.0, 'two': 1.0, 'insert': 1.0, 'still': 1.0, 'according': 1.0, 'aa': 1.0}
Word element => {'loves': 1.0, 'comfortable': 1.0, 'but': 1.0, 'old': 1.0, 'vibrations': 1.0, 'months': 1.0, 'three': 1.0, 'granddaughter': 1.0, 'is': 2.0, 'love': 1.0, 'it': 3.0, 'when': 1.0, 'i': 1.0, 'bought': 1.0, 'the': 1.0, 'my': 1.0, 'very': 1.0, 'and': 1.0, 'only': 1.0, 'in': 1.0, 'for': 1.0, 'sleeps': 1.0, 'she': 4.0}
Word element => {'price': 1.0, 'of': 2.0, 'regardless': 1.0, 'better': 1.0, 'none': 1.0, 'have': 1.0, 'everyone': 1.0, 'would': 1.0, 'on': 1.0, 'spent': 1.0, 'i': 3.0, 'also': 1.0, 'music': 1.0, 'its': 1.0, 'with': 1.0, 'top': 1.0, 'over': 1.0, 'him': 1.0, 'deal': 1.0, 'heck': 1.0, 'the': 3.0, 'stabilize': 1.0, 'help': 1.0, 'footrest': 1.0, 'has': 1.0, 'cooler': 1.0, 'got': 1.0, 'and': 4.0, 'similar': 1.0, 'babies': 1.0, 'born': 1.0, 'had': 2.0, 'who': 1.0, 'at': 1.0, 'found': 1.0, '30': 1.0, 'this': 5.0, 'us': 1.0, 'activity': 2.0, 'daughter': 1.0, 'r': 1.0, 'plush': 1.0, 'my': 2.0, 'arch': 2.0, 'it': 2.0, 'month': 2.0, 'lights': 1.0, 'where': 1.0, 'for': 2.0, 'expensive': 1.0, 'great': 1.0, 'grand': 1.0, 'hammock': 1.0, 'old': 2.0, 'an': 2.0, '6': 1.0, 'grandson': 1.0, 'days': 1.0, 'not': 1.0, '14': 2.0, 'because': 1.0, 'to': 3.0, 'as': 1.0, 'recommend': 1.0, 'was': 1.0, 'doesn': 1.0, 'lays': 1.0, 'really': 1.0, 'is': 5.0, 'while': 1.0, 'matter': 1.0, 'vibrates': 1.0, 'baby': 1.0, 'which': 1.0, 'like': 1.0, 'ago': 1.0, 't': 1.0, 'a': 4.0, 'way': 2.0, 'one': 3.0, 'bought': 1.0, 'cuter': 1.0}
Word element => {'move': 1.0, 'she': 1.0, 'been': 1.0, 'little': 1.0, 'i': 1.0, 'when': 1.0, 'daughter': 1.0, 'my': 1.0, 'helpful': 1.0, 'it': 4.0, 'has': 1.0, 'loves': 1.0, 't': 1.0, 'very': 1.0, 'need': 1.0, 'bounces': 1.0, 'moves': 1.0, 'her': 1.0, 'legs': 1.0, 'so': 1.0, 'don': 1.0, 'to': 2.0, 'be': 1.0, 'there': 1.0}
Word element => {'old': 1.0, 'same': 1.0, 'note': 1.0, 'quick': 1.0, 'cleaning': 1.0, 'nap': 1.0, 'help': 1.0, 'used': 1.0, 'batteries': 1.0, 'also': 1.0, 'just': 1.0, 'started': 1.0, 'bananas': 2.0, 'those': 1.0, 'for': 1.0, 'focus': 1.0, 'were': 1.0, 'watch': 1.0, 'would': 1.0, 'surprise': 1.0, 'learn': 1.0, 'are': 1.0, 'helped': 1.0, 'things': 1.0, 'easy': 1.0, 'get': 1.0, 'trying': 1.0, 'grab': 1.0, 'him': 5.0, 'entertained': 1.0, 'really': 2.0, 'swing': 1.0, 'luv': 1.0, 'what': 1.0, 'bar': 1.0, 'reach': 1.0, 'the': 6.0, 'this': 1.0, 'zoo': 1.0, 'months': 1.0, 'bought': 1.0, 'wasn': 1.0, 'using': 1.0, 'vibration': 1.0, 'like': 2.0, 'pulled': 1.0, 'great': 1.0, 'spend': 1.0, 'my': 2.0, 'from': 1.0, 'still': 1.0, 'son': 2.0, 'done': 1.0, 'need': 1.0, 'bouncer': 2.0, 'he': 1.0, 'pleasant': 1.0, 'how': 1.0, '6': 2.0, 'feature': 1.0, 'i': 5.0, 'you': 1.0, 'when': 4.0, 'm': 1.0, 'was': 3.0, 'about': 1.0, 'has': 1.0, 'toy': 1.0, 'is': 3.0, 'monty': 1.0, 'a': 3.0, 't': 1.0, 'we': 4.0, 'now': 2.0, 'weeks': 1.0, 'and': 6.0, 'sold': 1.0, 'on': 1.0, 'it': 4.0, 'remove': 1.0, 'believer': 1.0, 'as': 1.0, 'to': 6.0, 'our': 1.0, 'music': 1.0, 'most': 1.0, 'change': 1.0, 'but': 2.0, 'can': 1.0, 'needed': 1.0, 'that': 3.0, 'loves': 1.0, 'time': 1.0, 'in': 1.0, 'yes': 1.0, 'named': 1.0}
Word element => {'isn': 1.0, 'music': 1.0, 'adorable': 1.0, 'annoying': 1.0, 'monkey': 1.0, 'bassinet': 1.0, 'than': 1.0, 'bouncer': 1.0, 'in': 2.0, 'while': 1.0, 't': 1.0, 'the': 4.0, 'bouncy': 1.0, 'seat': 1.0, 'sometimes': 1.0, 's': 1.0, 'loves': 1.0, 'absolutely': 1.0, 'daughter': 1.0, 'terribly': 1.0, 'this': 1.0, 'it': 1.0, 'only': 1.0, 'and': 2.0, 'thing': 1.0, 'our': 1.0, 'that': 1.0, 'she': 2.0, 'calm': 1.0, 'does': 1.0, 'down': 1.0, 'her': 2.0, 'will': 1.0, 'naps': 1.0, 'much': 1.0, 'is': 1.0, 'longer': 1.0}
Word element => {'order': 1.0, 'not': 1.0, 'frustrating': 1.0, 'single': 1.0, 'read': 1.0, 'line': 1.0, 'together': 1.0, 'reviews': 1.0, 'after': 1.0, 'would': 1.0, 'new': 1.0, 'try': 1.0, 'refund': 1.0, 'got': 1.0, 'never': 1.0, 'because': 1.0, 'mail': 1.0, 'gotten': 1.0, 'back': 1.0, 'mailed': 1.0, 'doesnt': 1.0, 'infant': 1.0, 'work': 1.0, 'but': 2.0, 'put': 3.0, 'thing': 1.0, 'damn': 1.0, 'look': 1.0, 'son': 1.0, 'worked': 1.0, 'lo': 1.0, 'chair': 1.0, 'behold': 1.0, 'toys': 1.0, 'feel': 1.0, 'stellar': 1.0, 'and': 6.0, 'perfectly': 1.0, 'again': 1.0, 'am': 1.0, 'so': 2.0, 'reading': 1.0, 'frustrated': 1.0, 'love': 1.0, 'my': 1.0, 'a': 2.0, 'ago': 1.0, 'the': 11.0, 'of': 2.0, 'up': 1.0, 'loves': 1.0, 'lost': 1.0, 'this': 1.0, 'it': 6.0, 'ordered': 2.0, 'i': 5.0, 'two': 1.0, 'decided': 1.0, 'one': 2.0, 'months': 1.0, 'instructions': 2.0, 'followed': 1.0, 'every': 1.0, 'didnt': 1.0, 'in': 3.0, 'shut': 1.0, 'apart': 1.0, 'dangling': 1.0, 'nothing': 2.0, 'to': 1.0, 'all': 2.0, 'seat': 1.0, 'have': 1.0, 'must': 1.0, 'vibrator': 1.0, 'toy': 2.0, 'batteries': 2.0, 'tore': 1.0, 'bar': 2.0, 'screwed': 1.0, 'packed': 1.0}
Word element => {'up': 1.0, 'old': 1.0, 'ok': 1.0, 'its': 1.0, 'you': 1.0, 'want': 1.0, 'if': 1.0, 'advice': 1.0, 'something': 1.0, 'against': 1.0, 'hitting': 1.0, 'month': 1.0, 'it': 4.0, 'dont': 1.0, 'this': 2.0, 'money': 1.0, 'cushion': 1.0, 'at': 1.0, 'no': 1.0, 'me': 1.0, 'not': 4.0, '4': 1.0, 'i': 3.0, 'guess': 1.0, 'needed': 1.0, 'a': 2.0, 'bouncer': 1.0, 'seating': 1.0, 'comfortable': 1.0, 'toy': 1.0, 'has': 1.0, 'cradle': 1.0, 'is': 3.0, 'more': 1.0, 'newborn': 3.0, 'also': 1.0, 'that': 1.0, 'gerd': 1.0, 'does': 2.0, 'bar': 1.0, 'what': 1.0, 'cheap': 1.0, 'for': 5.0, 'expensive': 1.0, 'thats': 1.0, 'get': 2.0, 'and': 2.0, 'trying': 1.0, 'any': 1.0, 'all': 1.0, 'to': 1.0, 'buying': 1.0, 'my': 2.0, 'save': 1.0, 'musical': 1.0, 'arrived': 1.0, 'ones': 1.0, 'broken': 1.0, 'turn': 1.0, 'your': 1.0, 'on': 1.0, 'the': 3.0, 'without': 1.0}
Word element => {'product': 1.0, 'reconfigured': 1.0, 'been': 1.0, 'think': 1.0, 'into': 1.0, 'secured': 1.0, 'issue': 1.0, 'pose': 1.0, 'facing': 1.0, 'onto': 1.0, 'padded': 1.0, 'mounts': 1.0, 'bar': 2.0, 'in': 1.0, 'i': 2.0, 'biggest': 1.0, 'left': 1.0, 'being': 1.0, 'after': 1.0, 'drains': 1.0, 'forget': 1.0, 'close': 1.0, 'that': 3.0, 'or': 1.0, 'feature': 2.0, 'toy': 3.0, 'over': 1.0, 'work': 1.0, 'can': 2.0, 'setting': 4.0, 'and': 6.0, 'should': 3.0, 'their': 1.0, 'make': 1.0, 'frog': 1.0, 'month': 1.0, 'a': 9.0, 'we': 1.0, 's': 1.0, 'tabs': 1.0, 'babies': 1.0, 'settings': 2.0, 'is': 14.0, 'as': 2.0, 'to': 7.0, 'son': 2.0, 'safety': 1.0, 'seeing': 1.0, 'not': 7.0, 'just': 2.0, 'bouncer': 4.0, 'day': 1.0, 'short': 1.0, 'an': 1.0, 'all': 2.0, 'playing': 1.0, 'way': 1.0, 'reach': 1.0, 'it': 4.0, 'him': 1.0, 'bought': 1.0, 'one': 1.0, 'old': 1.0, 'lights': 3.0, 'this': 4.0, 'eyes': 1.0, 'quick': 1.0, 'volume': 1.0, 'with': 3.0, 'have': 2.0, 'thing': 1.0, 'play': 1.0, 'about': 1.0, 'belly': 1.0, 'baby': 5.0, 'loud': 1.0, 'you': 1.0, 'when': 2.0, 'batteries': 1.0, 'who': 2.0, 'for': 6.0, 'cord': 1.0, 'turn': 2.0, 'back': 1.0, 'herself': 1.0, 'bother': 1.0, 'side': 1.0, 'which': 5.0, 'like': 1.0, 'vibration': 2.0, 'automatically': 1.0, 'great': 4.0, 'be': 1.0, 'stays': 1.0, 'has': 1.0, 'encourage': 1.0, 'second': 1.0, 'on': 5.0, 'long': 1.0, 'time': 1.0, 'first': 1.0, 'are': 3.0, 'also': 2.0, 'developing': 1.0, 'my': 3.0, 'focus': 1.0, 'do': 2.0, 'music': 5.0, 'his': 2.0, 'swing': 1.0, 'there': 1.0, 'eye': 1.0, 'helps': 1.0, 'two': 1.0, 'little': 2.0, 'yet': 1.0, 'he': 1.0, 'pull': 1.0, 'fussy': 1.0, 'downfall': 2.0, 'the': 25.0, 'of': 2.0, 'mode': 1.0, 'does': 1.0, 'shut': 1.0, 'see': 1.0, 'off': 2.0, 'however': 1.0, 'easy': 1.0}
Word element => {'items': 1.0, 'of': 1.0, 'worth': 1.0, 'totally': 1.0, 'animals': 1.0, 'dangling': 1.0, 'really': 1.0, 'now': 1.0, 'away': 1.0, 'right': 2.0, 'pop': 1.0, 'need': 1.0, 'toys': 1.0, 'so': 1.0, 'time': 1.0, 'at': 2.0, 'stare': 1.0, 'which': 1.0, 'dot': 1.0, 'polk': 1.0, 'have': 2.0, 'don': 1.0, 'up': 1.0, 'stick': 1.0, 'ears': 1.0, 'immediatly': 1.0, 'long': 1.0, 'came': 1.0, 'light': 1.0, 'car': 1.0, '1': 1.0, 'big': 2.0, 'on': 2.0, 'stuff': 1.0, 'home': 1.0, 'top': 1.0, 'needed': 1.0, 'with': 1.0, 'than': 1.0, 'sister': 1.0, 'first': 1.0, 'month': 1.0, 'she': 3.0, 'it': 3.0, 'her': 1.0, 't': 1.0, 'a': 3.0, 'we': 3.0, 'the': 8.0, 'my': 2.0, 'liked': 1.0, 'neice': 1.0, 'kept': 1.0, 'what': 1.0, 'had': 1.0, 'was': 2.0, 'all': 1.0, 'to': 1.0, 'off': 1.0, 'bassinets': 1.0, 'ordered': 1.0, 'etc': 1.0, 'i': 2.0, 'them': 1.0, 'night': 1.0, 'swings': 1.0, 'needing': 1.0, 'would': 1.0, 'something': 1.0, 'likes': 1.0, 'easier': 1.0, 'little': 2.0, 'pattern': 1.0, 'and': 3.0, 'for': 3.0, 'use': 2.0, '30': 1.0, 'this': 1.0, 'perfect': 1.0, 'when': 1.0, 'you': 1.0, 'most': 1.0, 'music': 1.0, '2': 1.0, 'monkey': 1.0, 'but': 1.0, 'can': 1.0, 'seats': 1.0, 'born': 1.0, 'move': 1.0, 'more': 1.0, 'around': 1.0, 'room': 2.0}
Word element => {'me': 1.0, 'be': 1.0, 'to': 1.0, 'place': 1.0, 'favorite': 1.0, 'happy': 2.0, 'babies': 1.0, 'her': 1.0, 'is': 1.0, 'i': 1.0, 'it': 2.0, 'recipient': 1.0, 'bought': 1.0, 'and': 1.0, 'loves': 1.0, 'this': 1.0, 'bouncer': 1.0, 'a': 1.0, 'friend': 1.0, 'for': 1.0, 'she': 1.0}
Word element => {'adorable': 1.0, 'anyone': 1.0, 'recommend': 1.0, 'd': 1.0, 'having': 1.0, 'done': 1.0, 'couple': 1.0, 'it': 2.0, 'things': 2.0, 'two': 1.0, 'i': 2.0, 'one': 1.0, 'that': 1.0, 'volume': 1.0, 'comfy': 1.0, 'setting': 2.0, 'me': 1.0, 'about': 1.0, 'toy': 1.0, 'get': 1.0, 'easy': 1.0, 'this': 2.0, 'soft': 1.0, 'favorite': 1.0, 'my': 1.0, 'without': 1.0, 'the': 4.0, 'shower': 1.0, 'of': 1.0, 'chair': 1.0, 'there': 1.0, 'to': 4.0, 'seat': 1.0, 'is': 2.0, 'super': 1.0, 'settings': 1.0, 'said': 1.0, 'so': 1.0, 'how': 1.0, 's': 2.0, 'a': 3.0, 'bar': 1.0, 'child': 1.0, 'different': 1.0, 'makes': 1.0, 'music': 1.0, 'and': 6.0, 'play': 1.0, 'long': 1.0, 'restart': 1.0, 'parent': 2.0, 'enough': 1.0, 'love': 1.0, 'for': 2.0, 'lights': 1.0, 'assemble': 1.0, 'actually': 1.0}
Word element => {'disappointed': 1.0, 'be': 1.0, 'crying': 1.0, 'stops': 1.0, 'sleep': 1.0, 'eventually': 1.0, 'what': 1.0, 'if': 2.0, 'strapped': 1.0, 'there': 1.0, 'move': 1.0, 'machine': 1.0, 'parents': 1.0, 'shut': 1.0, 'comes': 1.0, 'his': 1.0, 'around': 1.0, 'is': 5.0, 'to': 4.0, 'cover': 1.0, 'off': 2.0, 're': 1.0, 'light': 1.0, 'whose': 1.0, 'this': 2.0, 'super': 1.0, 'songs': 1.0, 'settings': 1.0, 'the': 7.0, 'throw': 1.0, 'great': 2.0, 'gift': 1.0, 'puts': 1.0, 'has': 1.0, 'pan': 1.0, 'required': 1.0, 'with': 1.0, 'timer': 1.0, 'him': 1.0, 'it': 7.0, 'nights': 1.0, 'sounds': 2.0, 'will': 2.0, 'batteries': 1.0, 'for': 1.0, 'she': 1.0, 'baby': 3.0, 'c': 1.0, 'bird': 1.0, 'washing': 1.0, 'he': 1.0, 'not': 4.0, 'a': 6.0, 's': 1.0, 't': 1.0, 'we': 2.0, 'night': 1.0, 'you': 4.0, 'price': 1.0, 'thank': 1.0, 'makes': 1.0, 'flute': 1.0, 'plays': 1.0, 'soft': 1.0, 'days': 1.0, 'or': 1.0, 'seat': 2.0, 'in': 3.0, 'and': 5.0, 'up': 3.0, 'don': 1.0, 'mean': 1.0, 'fisher': 1.0, 'purchase': 1.0, 'slowly': 1.0, 'only': 1.0, 'accident': 1.0, 'all': 1.0, 'an': 1.0, 'enough': 1.0, 'removable': 1.0, 'but': 1.0, 'pick': 1.0, 'overhead': 1.0, 'vibrating': 2.0, 'mixed': 1.0, 'mobile': 1.0, 'two': 1.0, 'i': 3.0, 'birds': 1.0, 'on': 3.0, 'put': 1.0, 'your': 1.0, '3': 1.0, 'strings': 1.0, 'together': 1.0, 'strap': 1.0, 'vibrates': 1.0, 'are': 3.0, 'clips': 1.0, 'so': 2.0, 'new': 1.0, 'chirping': 1.0, 'time': 1.0, 'out': 1.0, 'easy': 1.0, 'know': 3.0, 'they': 1.0, 'saves': 1.0, 'have': 1.0, 'fall': 1.0, 'that': 2.0}
Word element => {'soothed': 1.0, 'of': 1.0, 'how': 1.0, 'her': 3.0, 'works': 1.0, 't': 1.0, 'great': 1.0, 'joked': 1.0, 'and': 3.0, 'she': 1.0, 'my': 1.0, 'own': 1.0, 'for': 2.0, 'had': 1.0, 'it': 2.0, 'this': 1.0, 'got': 1.0, 'baby': 1.0, 'about': 1.0, 'a': 1.0, 'i': 2.0, 'massage': 1.0, 'chair': 1.0, 'didn': 1.0}
Word element => {'this': 1.0, 'returning': 1.0, 'be': 1.0, 'piece': 1.0, 'get': 1.0, 'again': 1.0, 'than': 2.0, 'have': 1.0, 'to': 4.0, 'its': 1.0, 'now': 1.0, 'thin': 1.0, 'really': 2.0, 'the': 4.0, 'not': 2.0, 'i': 1.0, 'old': 1.0, 'even': 1.0, 'picture': 1.0, 'on': 3.0, '3': 1.0, 'cute': 1.0, 'off': 1.0, 'or': 1.0, 'fluffy': 1.0, 'stick': 1.0, 'above': 1.0, 'first': 1.0, 'well': 1.0, 'going': 1.0, 'go': 1.0, 's': 2.0, 'for': 1.0, 'and': 4.0, 'play': 1.0, 'vibrate': 1.0, 'my': 1.0, 'refuses': 1.0, 'tangled': 1.0, 'buttons': 1.0, 'working': 1.0, 'loved': 1.0, 'at': 1.0, 'music': 1.0, 'but': 1.0, 'so': 1.0, 'looks': 2.0, 'it': 6.0, 'month': 1.0, 'she': 1.0, 'turn': 1.0, 'in': 1.0, 'disappointed': 1.0, 'little': 1.0, 'birds': 1.0}
Word element => {'seen': 1.0, 'other': 1.0, 'extra': 2.0, 'roomy': 1.0, 'very': 1.0, 've': 1.0, 'seems': 1.0, 'also': 1.0, 'padding': 1.0, 'is': 1.0, 'think': 1.0, 'i': 2.0, 'for': 1.0, 'at': 1.0, 'yard': 1.0, 'corn': 1.0, 'friend': 1.0, 'new': 1.0, 'with': 1.0, 'sale': 1.0, 'this': 1.0, 'then': 1.0, 'got': 1.0, 'bouncers': 1.0, 'so': 1.0, 'a': 2.0, 'baby': 1.0, 'price': 1.0, 'steal': 1.0, 'my': 1.0, 'the': 1.0, 'dollars': 2.0, 'great': 2.0, 'was': 1.0, '25': 1.0, 'getting': 1.0, 'and': 1.0, 'thought': 1.0, 'she': 1.0, 'cozy': 1.0, '50': 1.0, 'brand': 1.0}
Word element => {'than': 1.0, 'more': 1.0, 'those': 1.0, 'gotten': 1.0, 'boring': 1.0, 'since': 1.0, 'keep': 1.0, 'used': 1.0, 'go': 1.0, 'a': 1.0, 'on': 2.0, 'make': 1.0, 'think': 1.0, 'sounds': 1.0, 'batteries': 1.0, 'also': 1.0, 'mins': 1.0, 'and': 4.0, 'not': 2.0, 'just': 1.0, 'by': 1.0, 'rather': 1.0, 'like': 2.0, 'appears': 1.0, 'bored': 1.0, 'put': 1.0, 'much': 3.0, 'naps': 1.0, 'bouncer': 1.0, 'now': 1.0, 'attached': 1.0, 'was': 1.0, 'an': 1.0, 'all': 1.0, 'in': 3.0, 'seat': 3.0, 'mobile': 1.0, 'born': 1.0, 'have': 5.0, 'rocker': 1.0, 't': 1.0, 'likes': 1.0, 'has': 1.0, 'one': 1.0, 'lasted': 1.0, 'we': 1.0, 'take': 1.0, 'to': 7.0, 'pretty': 2.0, 'wk': 1.0, 'this': 3.0, 'soft': 1.0, 'wish': 1.0, 'daily': 1.0, 'vibrate': 1.0, 'me': 1.0, 'my': 3.0, 'at': 2.0, 'is': 5.0, 'around': 1.0, 'very': 1.0, 'easy': 1.0, 'kind': 1.0, 'sure': 1.0, 'i': 7.0, 'old': 1.0, 'bounce': 1.0, 'been': 1.0, 'starting': 1.0, 'it': 7.0, '9': 1.0, 'she': 3.0, 'baby': 2.0, 'spent': 1.0, 'time': 1.0, 'using': 1.0, 'looking': 1.0, 'don': 1.0, 'so': 1.0, 'headrest': 1.0, 'strip': 1.0, 'fabric': 1.0, 'flops': 1.0, 'when': 1.0, 'am': 1.0, 'times': 1.0, 'trying': 1.0, 'infant': 1.0, 'checking': 1.0, 'the': 7.0, 'of': 2.0, 'longer': 1.0, 'out': 1.0, 'after': 1.0, 'because': 1.0, 'that': 1.0, '20': 1.0, 'feature': 1.0, 'or': 1.0, 'are': 1.0, 'working': 1.0, 'gets': 1.0, 'function': 1.0, 'only': 1.0, 'quickly': 1.0, 'if': 1.0, 'awake': 1.0, 'would': 1.0}
Word element => {'price': 1.0, 'great': 1.0, 'just': 1.0, 'had': 1.0, 'her': 1.0, 'which': 1.0, 'preferred': 1.0, '10': 1.0, 'rainforest': 1.0, 'but': 2.0, 'will': 1.0, 'than': 1.0, 'even': 2.0, 'stuck': 1.0, 'first': 1.0, 'wish': 1.0, 'this': 2.0, 'with': 1.0, 'liked': 1.0, 'loved': 1.0, 'more': 1.0, 'hanging': 2.0, 'the': 5.0, 'from': 1.0, 'toys': 2.0, 'bouncer': 3.0, 'when': 1.0, 'old': 1.0, 'i': 3.0, '4': 1.0, 'one': 2.0, 'bought': 1.0, 'months': 2.0, 'over': 1.0, 'on': 1.0, 'baby': 1.0, 'it': 2.0, 'she': 4.0, 'now': 1.0, 'to': 3.0, 'for': 1.0, 'lights': 1.0, 'look': 1.0, 'at': 2.0, 'go': 1.0, 's': 1.0, 'sit': 1.0, 'me': 1.0, 'too': 1.0, 'and': 3.0, 'play': 1.0, 'still': 1.0, 'in': 1.0, 'turn': 1.0}
Word element => {'seat': 1.0, 'bouncy': 1.0, 'an': 1.0, 'off': 1.0, 'hanging': 1.0, 'are': 1.0, 'his': 1.0, 'little': 1.0, 'month': 1.0, 'on': 1.0, '4': 1.0, 'my': 1.0, 'and': 1.0, 'me': 1.0, 'has': 1.0, 'tall': 1.0, 'toys': 1.0, 'texture': 1.0, 'old': 1.0, 'i': 1.0, 'son': 1.0, 'very': 1.0, 'that': 2.0, 'everything': 1.0, 'bouncer': 3.0, 'a': 3.0, 'is': 4.0, 'it': 1.0, 'only': 1.0, 'this': 2.0, 'lights': 1.0, 'was': 1.0, 'feet': 1.0, 'size': 1.0, 'looking': 1.0, 'otherwise': 1.0, 'soft': 1.0, 'for': 2.0, 'exceptional': 1.0, 'in': 1.0, 'great': 1.0, 'the': 3.0, 'music': 1.0, 'problem': 1.0}
Word element => {'little': 1.0, 'nuce': 1.0, 'vibrates': 1.0, 'sounds': 1.0, 'bird': 1.0, 'soft': 2.0, 'volume': 1.0, 'very': 1.0, 'and': 2.0, 'comforting': 1.0, 'a': 1.0, 'is': 2.0, 'this': 1.0, 'it': 1.0, 'with': 1.0, 'product': 1.0, 'music': 1.0, 'plays': 1.0, 'control': 1.0, 'the': 1.0, 'fabric': 1.0, 'one': 1.0, 'for': 1.0, 'has': 1.0, 'your': 1.0}
Word element => {'sure': 1.0, 'more': 1.0, 'another': 1.0, 'use': 1.0, 'i': 1.0, 'hurt': 1.0, 'to': 2.0, 'everything': 1.0, 'does': 1.0, 'out': 1.0, 'feet': 1.0, 'his': 1.0, 'smacks': 1.0, 'will': 1.0, 'seems': 1.0, 'slept': 1.0, 'really': 1.0, 'strap': 1.0, 'saver': 1.0, 'doesn': 1.0, 'was': 1.0, 'so': 2.0, 'n': 1.0, 'rock': 1.0, 'home': 1.0, 'nana': 1.0, 'even': 1.0, 'part': 1.0, 'or': 1.0, 'let': 1.0, 'in': 5.0, 'had': 1.0, 'now': 2.0, 'one': 2.0, 'without': 1.0, 'reach': 1.0, 'the': 5.0, 'roll': 1.0, 'these': 1.0, 'such': 1.0, 'great': 1.0, 'at': 2.0, 'since': 1.0, 'beginning': 1.0, 't': 1.0, 'we': 3.0, 'a': 2.0, 's': 3.0, 'for': 1.0, 'actually': 1.0, 'this': 3.0, 'he': 7.0, 'month': 1.0, 'it': 7.0, 'comfy': 1.0, 'daily': 1.0, 'have': 2.0, 'of': 2.0, 'banana': 1.0, 'pull': 1.0, 'himself': 1.0, 'can': 1.0, '2': 1.0, 'but': 3.0, 'make': 1.0, 'on': 2.0, 'put': 1.0, 'day': 1.0, 'ever': 1.0, 'that': 2.0, 'been': 1.0, 'has': 1.0, 'toy': 2.0, 'chair': 1.0, 'life': 1.0, 'just': 2.0, 'bet': 1.0, 'play': 1.0, 'and': 1.0, 'finds': 1.0, 'never': 3.0, 'him': 4.0, 'us': 1.0}
Word element => {'looked': 1.0, 'bounce': 1.0, 'i': 1.0, 'move': 1.0, 'toy': 1.0, 'baby': 2.0, 'to': 3.0, 'actually': 1.0, 'lights': 1.0, 'attention': 1.0, 'snug': 1.0, 'have': 1.0, 'cradles': 1.0, 'able': 1.0, 'it': 4.0, 'with': 2.0, 'is': 3.0, 'we': 1.0, 's': 1.0, 'a': 3.0, 'make': 1.0, 'the': 5.0, 'great': 1.0, 'you': 1.0, 'manually': 1.0, 'and': 4.0, 'chose': 1.0, 'nicest': 1.0, 'probably': 1.0, 'this': 1.0, 'soft': 1.0, 'bar': 1.0, 'excellent': 1.0, 'at': 3.0, 'keeping': 1.0, 'eventually': 1.0, 'so': 1.0, 'boy': 1.0, 'will': 1.0, 'music': 1.0, 'work': 1.0, 'be': 1.0, 'bat': 1.0, 'would': 1.0, 'bouncer': 2.0, 'toys': 1.0, 'rainforest': 1.0, '34': 2.0, 'both': 1.0, 'girl': 1.0}
Word element => {'house': 1.0, 'around': 1.0, 'fussy': 1.0, 'parents': 1.0, 'his': 1.0, 'him': 1.0, 'they': 1.0, 'place': 1.0, 'gets': 1.0, 'when': 1.0, 'or': 1.0, 'in': 1.0, 'so': 1.0, 'window': 1.0, 'he': 2.0, 'this': 1.0, 'do': 1.0, 'and': 1.0, 'seat': 1.0, 'just': 1.0, 'there': 1.0, 'looking': 2.0, 'out': 1.0, 'sits': 1.0, 'the': 2.0}
Word element => {'everything': 1.0, 'pleased': 1.0, 'very': 1.0, 'breathing': 1.0, 'their': 1.0, 'that': 1.0, 'angle': 1.0, 'kind': 1.0, 'at': 1.0, 'up': 1.0, 'crumples': 1.0, 'design': 1.0, 'never': 1.0, 'ideal': 1.0, 'important': 1.0, 'so': 1.0, 'toys': 1.0, 'bouncer': 2.0, 'rounded': 1.0, 'this': 3.0, 'it': 3.0, 'with': 4.0, 'thrilled': 1.0, 'anything': 1.0, 'is': 2.0, 'type': 2.0, 'much': 1.0, 'awkward': 1.0, 'proved': 1.0, 'baby': 3.0, 'and': 1.0, 'new': 1.0, 'the': 3.0, 'ones': 1.0, 'are': 1.0, 'cuter': 1.0, 'bought': 1.0, 'affects': 1.0, 'gift': 1.0, 'than': 1.0, 'find': 1.0, 'parents': 1.0, 'for': 1.0, 'we': 1.0, 'a': 3.0, 'could': 1.0, 'in': 1.0, 'store': 1.0, 'was': 1.0, 'buy': 1.0, 'any': 1.0, 'as': 3.0, 'to': 2.0, 'seat': 1.0, 'style': 1.0, 'me': 1.0, 'not': 1.0, 'shower': 1.0, 'of': 4.0, 'near': 1.0, 'legs': 2.0, 'fatal': 1.0, 'my': 1.0, 'daughter': 1.0, 'on': 1.0, 'positioning': 1.0}
Word element => {'recommend': 1.0, 'definitely': 1.0, 'well': 1.0, 'loves': 1.0, 'have': 1.0, 'absolutely': 1.0, 'he': 1.0, 'this': 1.0, 'it': 1.0, 'would': 1.0, 'him': 1.0, 'chair': 1.0, 'as': 1.0, 'son': 1.0, 'old': 1.0, 'but': 1.0, 'week': 1.0, 'cozy': 1.0, 'seat': 1.0, 'my': 1.0, 'great': 1.0, 'the': 2.0, 'prefers': 1.0, 's': 1.0, 'super': 1.0, 'five': 1.0, 'and': 1.0, 'bouncer': 1.0, 'comforting': 1.0, 'for': 1.0, 'we': 1.0, 'swing': 1.0}
Word element => {'concerned': 1.0, 'bit': 1.0, 'm': 1.0, 'stable': 1.0, 'down': 1.0, 'create': 1.0, 'suppose': 1.0, 'i': 2.0, 'looked': 1.0, 'sure': 1.0, 'happen': 1.0, 'did': 1.0, 'up': 1.0, 'over': 1.0, 'tip': 1.0, 'using': 1.0, 'like': 2.0, 'however': 1.0, 'move': 1.0, 'bouncer': 2.0, 'in': 1.0, 'there': 1.0, 'strapped': 1.0, 'would': 1.0, 'cozy': 1.0, 'and': 7.0, 'just': 2.0, 'light': 1.0, 'was': 2.0, 'normal': 1.0, 'flip': 1.0, 'bounce': 1.0, 'material': 1.0, 'chance': 1.0, 'be': 3.0, 'not': 3.0, 'the': 8.0, 'but': 2.0, 'music': 1.0, 'bar': 1.0, 'purchased': 1.0, 'sturdy': 1.0, 'overly': 1.0, 'who': 1.0, 'months': 1.0, 'soft': 1.0, 'this': 1.0, 'stopped': 1.0, 'colorful': 1.0, 'it': 8.0, 'he': 1.0, 'will': 1.0, 'item': 1.0, 'kid': 2.0, 'for': 1.0, 'were': 2.0, 'around': 1.0, 'is': 5.0, 'might': 1.0, 'a': 4.0, 't': 1.0, 'we': 2.0, 'entertaining': 1.0, 'realized': 1.0, 'old': 1.0, 'metal': 1.0, 'enough': 1.0, 'cover': 1.0, 'legs': 2.0, 'ok': 1.0, 'to': 3.0, 'seat': 1.0, 'our': 2.0, 'as': 2.0, 'seemed': 2.0, 'big': 1.0, 'didn': 1.0, 'seem': 1.0, 'should': 1.0, 'started': 1.0, 'baby': 2.0, 'maybe': 1.0, 'does': 1.0, '3': 1.0, 'movements': 2.0, 'when': 1.0}
Word element => {'on': 1.0, 'so': 2.0, 'and': 1.0, 'that': 1.0, 'i': 1.0, 'does': 1.0, 'it': 2.0, 'love': 1.0, 'can': 1.0, 'sure': 1.0, 'who': 1.0, 'best': 1.0, 'from': 1.0, 'not': 1.0, 'she': 2.0, 'easy': 1.0, 'likes': 1.0, 'all': 1.0, 'to': 2.0, 'watch': 1.0, 'move': 1.0, 'room': 2.0, 's': 1.0, 'going': 1.0}
Word element => {'purchase': 1.0, 'made': 1.0, 'we': 1.0, 'glad': 1.0, 'alright': 1.0, 'music': 1.0, 'light': 1.0, 'love': 2.0, 'for': 1.0, 'awesome': 1.0, 'the': 5.0, 'are': 1.0, 'is': 2.0, 'thing': 1.0, 'at': 1.0, 'it': 1.0, 'this': 2.0, 'my': 1.0, 'monkey': 1.0, 'sounds': 1.0, 'they': 1.0, 'twins': 1.0, 'watching': 1.0, 'waterfall': 1.0, 'up': 1.0, 'and': 1.0, 'stare': 1.0, 'price': 1.0, 'pleasant': 1.0}
Word element => {'3': 1.0, 'but': 1.0, 'mos': 1.0, 'infants': 1.0, 'for': 2.0, 'back': 1.0, 'to': 1.0, 'plus': 1.0, 'adjust': 1.0, 'not': 1.0, 'great': 1.0, 'it': 2.0, 'love': 1.0, 'lay': 1.0, 'bouncer': 1.0, 'the': 1.0, 'is': 2.0, 'i': 1.0, 'does': 1.0, 'this': 1.0, 'monkey': 1.0, 'so': 1.0, 'cute': 1.0}
Word element => {'re': 1.0, 'didn': 1.0, 'they': 3.0, 'little': 1.0, 'showers': 1.0, 'from': 1.0, 'you': 1.0, 'but': 1.0, 'wish': 1.0, 'learn': 1.0, 'aaa': 1.0, 'or': 1.0, 'aa': 1.0, 't': 2.0, 'moment': 1.0, 'on': 1.0, 'do': 1.0, 'put': 1.0, 'space': 1.0, 'frog': 1.0, 'pretty': 1.0, 'to': 5.0, 'has': 1.0, 'next': 1.0, 'gave': 1.0, 'babies': 1.0, 'loves': 1.0, 'free': 1.0, 'away': 1.0, 'getting': 1.0, 'vibrating': 2.0, 'mission': 1.0, 'dangling': 1.0, 'continuosly': 1.0, 'chair': 3.0, 'there': 1.0, 'bouncer': 1.0, 'wanted': 1.0, 'take': 2.0, 'we': 1.0, 'a': 5.0, 's': 3.0, 'different': 1.0, 'played': 1.0, 'lit': 1.0, 'for': 5.0, 'actually': 3.0, 'even': 1.0, 'lights': 2.0, 'expensive': 1.0, 'register': 1.0, 'baby': 3.0, 'she': 2.0, 'daughter': 2.0, 'pull': 1.0, 'son': 2.0, 'experience': 1.0, 'stop': 1.0, 'my': 6.0, 'bought': 1.0, 'one': 2.0, 'and': 10.0, 'with': 3.0, 'few': 1.0, 'this': 4.0, 'had': 2.0, 'bar': 1.0, 'was': 4.0, 'minutes': 1.0, 'keep': 1.0, 'did': 2.0, 'that': 4.0, 'because': 2.0, 'having': 1.0, 'just': 1.0, 'light': 1.0, 'vibrated': 1.0, 'music': 2.0, 'so': 2.0, 'can': 2.0, '2': 1.0, 'toys': 1.0, 'sounds': 1.0, 'also': 1.0, 'batteries': 2.0, 'coming': 1.0, 'i': 10.0, 'well': 1.0, 'it': 8.0, 'him': 1.0, 'in': 1.0, 'love': 2.0, 'he': 1.0, 'entertained': 1.0, 'at': 1.0, 'is': 1.0, 'setting': 1.0, 'the': 9.0, 'seperate': 1.0, 'all': 1.0, 'playing': 1.0, 'without': 1.0, 'if': 2.0, 'every': 1.0, 'have': 1.0, 'remember': 3.0, 'shut': 1.0, 'chairs': 1.0, 'vibration': 1.0, 'boring': 1.0, 'off': 1.0, 'know': 1.0, 'easy': 1.0, 'nothing': 1.0, 'out': 1.0, 'not': 1.0, 'first': 1.0, 'hated': 1.0, 'are': 1.0, 'part': 1.0, 'up': 3.0, 'takes': 1.0, '1': 1.0, 'c': 1.0, 'battery': 1.0}
Word element => {'it': 1.0, 'noise': 1.0, 'make': 1.0, 'feet': 1.0, 'my': 1.0, 'monkey': 1.0, 'kick': 1.0, 'would': 1.0, 'child': 1.0, 'washable': 1.0, 'design': 1.0, 'lift': 1.0, 'music': 1.0, 'is': 1.0, 'light': 1.0, 'how': 1.0, 'very': 1.0, 'do': 1.0, 'and': 2.0, 'could': 1.0, 'like': 1.0, 'not': 1.0, 'know': 1.0, 'which': 1.0, 'nice': 1.0, 'important': 1.0, 'i': 2.0, 'to': 2.0, 'lights': 1.0, 'the': 4.0, 't': 1.0, 'quality': 1.0, 'but': 1.0, 'baby': 1.0, 'don': 1.0}
Word element => {'used': 1.0, 'up': 1.0, 'played': 1.0, 'worked': 1.0, 'function': 1.0, 'constantly': 1.0, 'had': 1.0, 'long': 1.0, 'last': 1.0, 'things': 1.0, 'some': 1.0, 'get': 1.0, 'and': 3.0, 'as': 1.0, 'to': 4.0, 'was': 2.0, 'grab': 1.0, 'able': 1.0, 'so': 2.0, 'done': 1.0, 'bouncer': 2.0, 'anywhere': 1.0, 'really': 1.0, 'is': 1.0, 'batteries': 1.0, 'slept': 1.0, 'watch': 1.0, 'you': 1.0, 'i': 5.0, 'music': 1.0, 'change': 1.0, 'can': 1.0, 'this': 1.0, 'bring': 1.0, 'great': 1.0, 'the': 6.0, 'a': 1.0, 't': 2.0, 'loved': 2.0, 'only': 1.0, 'try': 1.0, 'for': 1.0, 'battery': 1.0, 'thing': 1.0, 'about': 1.0, 'because': 1.0, 'life': 1.0, 'just': 2.0, 'while': 1.0, 'it': 5.0, 'she': 2.0, 'regular': 1.0, 'in': 1.0, 'or': 1.0, 'vibrating': 1.0, 'hung': 1.0, 'out': 1.0, 'baby': 1.0, 'them': 1.0, 'birds': 1.0, 'gave': 1.0, 'that': 2.0, 'my': 1.0, 'eventually': 2.0, 'didn': 2.0, 'like': 1.0}
Word element => {'available': 1.0, 'one': 1.0, 'best': 1.0, 'doubt': 1.0, 'but': 1.0, 'here': 1.0, 'expensive': 1.0, '100': 1.0, 'paid': 1.0, 'music': 1.0, 'a': 3.0, 'we': 1.0, 'came': 1.0, 'although': 1.0, '6': 1.0, 'helped': 1.0, 'naps': 1.0, 'great': 2.0, 'comfortable': 1.0, 'nice': 1.0, 'without': 1.0, 'soft': 1.0, 'this': 3.0, 'to': 2.0, 'how': 1.0, 'our': 2.0, 'most': 1.0, 'sleep': 1.0, 'now': 2.0, 'older': 1.0, 'was': 2.0, 'when': 2.0, 'daughter': 2.0, 'wife': 1.0, 'newborn': 1.0, 'in': 2.0, 'for': 3.0, 'able': 2.0, 'born': 1.0, 'played': 1.0, 'be': 1.0, 'attachments': 1.0, 'gets': 1.0, 'before': 1.0, 'known': 1.0, 'purchased': 1.0, 'old': 1.0, 'soothes': 1.0, 'i': 2.0, 'that': 3.0, 'loves': 1.0, 'and': 9.0, 'play': 1.0, 'very': 2.0, 'may': 1.0, 'my': 1.0, 'her': 7.0, 'baby': 1.0, 'she': 7.0, 'it': 6.0, 'out': 1.0, 'absolutely': 1.0, 'with': 2.0, 'chair': 6.0, 'there': 1.0, 'adores': 1.0, 'is': 10.0, 'preparation': 1.0, 'vibration': 1.0, 'like': 1.0, 'which': 1.0, 'arrival': 1.0, 'hold': 1.0, 'no': 1.0, 'life': 1.0, 'battery': 1.0, 'really': 1.0, 'stronger': 1.0, 'had': 1.0, 'kick': 1.0, 'danger': 1.0, 'months': 1.0, 'legs': 2.0, 'make': 1.0, 'rock': 1.0, 'feature': 1.0, 'falling': 1.0, 'up': 1.0, 'down': 1.0, 'rocker': 1.0, 'support': 1.0, 'straps': 1.0, 'so': 1.0, 'the': 9.0, 'of': 2.0, 'balanced': 1.0, 'sway': 1.0, 'tight': 1.0, 'would': 2.0, 'does': 1.0, 'itself': 1.0, 'not': 3.0, 'even': 1.0, 'aaliyah': 1.0, 'adore': 1.0, 'kicking': 1.0, 'still': 1.0, 'if': 2.0, 'much': 1.0, 'have': 1.0, 'willingly': 1.0}
Word element => {'quality': 1.0, 'compared': 1.0, 'several': 1.0, 'list': 1.0, 'we': 1.0, 'different': 1.0, 'built': 1.0, 'and': 1.0, 'bouncers': 1.0, 'bouncer': 1.0, 'very': 2.0, 'from': 1.0, 'install': 1.0, 'well': 1.0, 'a': 1.0, 'is': 1.0, 'this': 2.0, 'topped': 1.0, 'product': 1.0, 'to': 1.0, 'companies': 1.0, 'our': 1.0, 'easy': 1.0, 'great': 1.0}
Word element => {'do': 1.0, 'arms': 1.0, 'mommy': 1.0, 's': 1.0, 'second': 1.0, 'well': 1.0, 'out': 1.0, 'boy': 1.0, 'just': 1.0, 'loves': 1.0, 'this': 1.0, 'thing': 1.0, 'his': 2.0, 'recommend': 1.0, 'favorite': 2.0, 'to': 2.0, 'place': 1.0, 'baby': 1.0, 'hang': 1.0}
Word element => {'clean': 1.0, 'hours': 1.0, 'top': 1.0, 'from': 1.0, 'hang': 1.0, 'minutes': 1.0, 'few': 2.0, 'after': 1.0, 'off': 2.0, 'turned': 1.0, 'kick': 1.0, 'have': 2.0, 'it': 4.0, 'she': 3.0, 'were': 1.0, 'which': 1.0, 'daughter': 1.0, 'for': 3.0, 'chair': 2.0, 'batteries': 1.0, 'makes': 1.0, 'they': 1.0, 'too': 1.0, 'and': 2.0, 'matching': 1.0, 'turns': 1.0, 'the': 5.0, 'we': 6.0, 'a': 4.0, 'toys': 1.0, 'wanted': 1.0, 'our': 1.0, 'to': 5.0, 'loves': 1.0, 'until': 1.0, 'travel': 1.0, 'use': 2.0, 'comfy': 1.0, 'vibrate': 2.0, 'fast': 1.0, 'but': 2.0, 'swing': 1.0, 'blowing': 1.0, 'rock': 1.0, 'through': 1.0, 'way': 1.0, 'plays': 1.0, 'sent': 1.0, 'feature': 1.0, 'i': 1.0, 'called': 1.0, 'easy': 2.0, 'get': 1.0, 'fisher': 1.0, 'price': 1.0, 'replacement': 1.0, 'motor': 1.0, 'still': 1.0, 'same': 1.0, 'problem': 1.0, 'likes': 1.0, 'expected': 1.0}
Word element => {'for': 1.0, 'old': 1.0, 'him': 1.0, 'it': 2.0, 'afraid': 1.0, 'little': 1.0, 'son': 1.0, 's': 3.0, 'boring': 1.0, 'maybe': 1.0, 't': 1.0, 'of': 1.0, 'he': 3.0, 'grows': 1.0, 'and': 1.0, 'very': 1.0, 'like': 1.0, 'when': 2.0, 'my': 1.0, 'small': 1.0, 'doesn': 1.0, 'a': 1.0}
Word element => {'liked': 1.0, 'nothing': 1.0, '5': 1.0, 'instead': 1.0, 'option': 1.0, 'that': 1.0, 'stages': 1.0, 'was': 2.0, 'thought': 1.0, 'had': 1.0, 'our': 1.0, 'to': 2.0, 'its': 2.0, 'front': 1.0, 'we': 2.0, 's': 1.0, 'a': 2.0, 'nice': 1.0, 'beginning': 1.0, 'and': 2.0, 'vibration': 1.0, 'pretty': 1.0, 'an': 1.0, 'own': 1.0, 'but': 2.0, 'music': 1.0, 'used': 1.0, 'majority': 1.0, 'in': 1.0, 'still': 1.0, 'serious': 1.0, 'son': 1.0, 'playing': 1.0, 'the': 4.0, 'of': 3.0, 'it': 2.0, '4': 1.0, 'bounce': 1.0, 'really': 2.0, 'just': 1.0, 'controller': 1.0, 'make': 1.0, 'on': 1.0, 'your': 1.0, 'little': 1.0, 'bit': 1.0, 'has': 1.0, 'comfort': 1.0, 'baby': 1.0, 'hence': 1.0, 'actually': 1.0, 'for': 2.0, 'stars': 1.0}
Word element => {'mobile': 1.0, '10': 1.0, 'am': 1.0, 'while': 1.0, 'sauce': 1.0, 'apple': 1.0, 'his': 1.0, 'when': 1.0, 'in': 1.0, 'piece': 1.0, 'months': 1.0, '5': 2.0, 'or': 1.0, 'until': 1.0, 'was': 1.0, 'now': 1.0, 'alternative': 1.0, 'is': 2.0, 'great': 1.0, 't': 1.0, 'like': 1.0, 'catching': 1.0, 'son': 1.0, 'as': 1.0, 'very': 1.0, 'didn': 1.0, 'use': 1.0, 'our': 1.0, 'minute': 1.0, 'i': 1.0, 'old': 1.0, 'we': 1.0, 'shower': 1.0, 'eating': 1.0, 'this': 1.0, 'he': 3.0, 'it': 2.0, 'a': 2.0, 'happy': 1.0, 'high': 1.0, 'chair': 1.0}
Word element => {'baby': 1.0, 'on': 1.0, 'not': 1.0, 'do': 1.0, 'that': 1.0, 'so': 1.0, 'sitting': 1.0, 'removed': 1.0, 'the': 2.0, 'are': 1.0, 'they': 2.0, 'toys': 1.0, 'good': 1.0, 'well': 1.0, 'as': 1.0, 'and': 1.0, 'impede': 1.0, 'can': 1.0, 'easily': 1.0, 'be': 1.0}
Word element => {'amazon': 1.0, 'on': 1.0, 'dollars': 1.0, 'for': 1.0, 'mart': 1.0, '8': 1.0, 'set': 1.0, 'that': 1.0, 'at': 1.0, 'together': 1.0, 'd': 1.0, 'wal': 1.0, 'extra': 1.0, 'come': 1.0, 'this': 1.0, 'found': 1.0, 'be': 1.0, 'to': 2.0, 'store': 1.0, 'willing': 1.0, 'pay': 1.0, 'a': 1.0, 'little': 1.0, 'avoid': 1.0, 'but': 1.0, 'i': 2.0, 'six': 1.0}
Word element => {'stronger': 1.0, 'when': 1.0, 'themselves': 1.0, 'hurt': 1.0, 'would': 1.0, 'play': 1.0, 'to': 2.0, 'every': 1.0, 'plastic': 1.0, 'older': 1.0, 'it': 1.0, 'with': 1.0, 'hard': 1.0, 'introduce': 1.0, 'drop': 1.0, 'month': 1.0, 'my': 1.0, 'again': 1.0, 'are': 2.0, 'cute': 1.0, 'aren': 1.0, 'so': 1.0, 'twins': 1.0, 'i': 1.0, 'tried': 1.0, 'old': 1.0, 'very': 1.0, 'and': 4.0, 'will': 1.0, 'but': 1.0, 'ready': 1.0, '6': 1.0, 'set': 1.0, 'of': 1.0, 'yet': 1.0, 'for': 1.0, 'them': 3.0, 'a': 2.0, 'time': 1.0, 'they': 4.0, 'bit': 2.0, 'these': 1.0, 't': 1.0, 'heavy': 1.0, 'course': 1.0}
Word element => {}
Word element => {'she': 1.0, 'or': 1.0, 'carseat': 1.0, 'her': 2.0, 'attach': 1.0, 'we': 1.0, 'but': 1.0, 'onto': 1.0, 'hold': 1.0, 'just': 1.0, 'because': 1.0, 'swing': 1.0, 'little': 1.0, 'a': 2.0, 'them': 2.0, 'made': 1.0, 'are': 2.0, 'my': 1.0, 'should': 1.0, 'cute': 4.0, '4': 1.0, 'rattles': 1.0, 'have': 1.0, 'girl': 1.0, 'they': 2.0, 'big': 1.0, 'and': 2.0, 'drags': 1.0, 'heavy': 1.0, 'for': 1.0, '4mo': 1.0, 'old': 1.0, 'to': 4.0, 'baby': 1.0, 'grandaughter': 1.0}
Word element => {'recommend': 1.0, 'pricing': 1.0, 'much': 1.0, 'it': 1.0, 'she': 1.0, 'brought': 1.0, 'gd': 1.0, 'loves': 1.0, 'this': 1.0, 'very': 2.0, 'as': 1.0, 'a': 1.0, 'gift': 1.0, 'daughter': 1.0, 'frds': 1.0, 'for': 1.0, 'my': 1.0, 'i': 1.0, 'n': 1.0}
Word element => {'would': 1.0, 'i': 1.0, 'recommend': 1.0, 'toys': 1.0, 'have': 1.0, 'other': 1.0, 'chew': 1.0, 'than': 1.0, 'babies': 1.0, 'seem': 1.0, 'and': 1.0, 'like': 1.0, 'to': 1.0, 'these': 1.0, 'they': 2.0, 'my': 1.0, 'are': 1.0, 'different': 1.0, 'cute': 1.0}
Word element => {'all': 1.0, 'interested': 1.0, 'min': 1.0, '2': 1.0, 'with': 1.0, 'play': 1.0, 'and': 2.0, 'my': 1.0, 'i': 1.0, 'to': 1.0, 'old': 1.0, 'at': 1.0, 'not': 1.0, 'granddaughter': 1.0, 'was': 1.0, 'really': 1.0, 'for': 1.0, 'cute': 1.0, 'excited': 1.0, '12': 1.0, 'it': 1.0, 'month': 1.0}
Word element => {'all': 1.0, 'course': 1.0, 'of': 1.0, 'ring': 1.0, 'purse': 1.0, 'especially': 1.0, 'although': 1.0, 'child': 1.0, 'a': 2.0, 't': 1.0, 'was': 1.0, 'turned': 1.0, 'buying': 1.0, 'kids': 1.0, 'this': 1.0, 'christmas': 2.0, 'suggest': 1.0, 'had': 1.0, 'what': 1.0, 'smiled': 2.0, 'before': 1.0, 'wouldn': 1.0, 'even': 1.0, 'different': 1.0, 'her': 2.0, 'you': 1.0, 'when': 2.0, 'gave': 1.0, 'big': 2.0, '1': 1.0, 'too': 3.0, 'and': 4.0, 'my': 1.0, 'never': 1.0, 'saw': 1.0, 'opened': 1.0, 'for': 2.0, 'love': 1.0, 'i': 4.0, 'little': 2.0, 'textures': 1.0, 'just': 1.0, 'one': 1.0, 'bought': 1.0, 'colorful': 1.0, 'it': 2.0, 'she': 4.0, 'more': 1.0, 'the': 2.0, 'these': 1.0, 'know': 1.0, 'dad': 1.0, 'really': 1.0, 'teethers': 1.0, 'niece': 1.0, 'loved': 1.0, 'how': 1.0, 'they': 3.0, 'parts': 1.0, 'were': 1.0, 'think': 1.0, 'are': 4.0, 'days': 1.0, 'definitely': 1.0, 'worth': 1.0, 'four': 1.0, 'but': 2.0}
Word element => {'than': 1.0, 'be': 1.0, 'tub': 2.0, 'put': 1.0, 'need': 1.0, 'easier': 1.0, 'll': 1.0, 'think': 1.0, 'don': 1.0, 'since': 1.0, 'underneath': 1.0, 'cleaned': 1.0, 'thoroughly': 1.0, 'should': 1.0, 'rip': 1.0, 'able': 1.0, 'tonight': 1.0, 'impossible': 1.0, 'now': 1.0, 'almost': 1.0, 'was': 2.0, 'mine': 1.0, 'pleased': 1.0, 'less': 1.0, 'up': 1.0, 'clean': 2.0, 'hard': 1.0, 'very': 1.0, 's': 1.0, 'stopper': 2.0, 'issue': 1.0, 'plastic': 2.0, 'just': 2.0, 'to': 13.0, 'as': 2.0, 'there': 1.0, 'shower': 1.0, 'holes': 2.0, 'without': 1.0, '2': 1.0, 'enjoys': 1.0, 'but': 4.0, 'toy': 3.0, 'off': 2.0, 'gift': 1.0, 'bar': 3.0, 'had': 2.0, 'a': 3.0, 'could': 1.0, 'might': 1.0, 't': 2.0, 'and': 7.0, 'like': 1.0, 'know': 1.0, 'baby': 5.0, 'unfortunately': 1.0, 'dad': 1.0, 'version': 1.0, 'didn': 1.0, 'realized': 1.0, 'of': 4.0, 'the': 13.0, 'longer': 1.0, 'after': 1.0, 'mold': 1.0, 'me': 2.0, 'my': 5.0, 'looks': 1.0, 'thought': 1.0, 'it': 7.0, 'well': 1.0, 'i': 12.0, 'am': 1.0, 'last': 1.0, 'this': 3.0, 'them': 1.0, 'target': 1.0, 'registry': 1.0, 'solid': 1.0, 'is': 1.0, 'at': 1.0, 'no': 2.0, 'carry': 1.0, 'year': 1.0, 'product': 1.0, 'actually': 1.0, 'overall': 1.0, 'insert': 1.0, 'kept': 1.0, 'tearing': 1.0, 'bathtime': 1.0, 'into': 2.0, 'box': 1.0, 'that': 1.0, 'out': 1.0, 'cutting': 1.0, 'little': 1.0, 'were': 1.0, 'piece': 1.0, 'with': 3.0, 'wrong': 1.0, 'binding': 1.0, 'probably': 1.0, 'have': 3.0, 'finally': 1.0, 'taken': 1.0, 'back': 2.0, 'anyway': 1.0, 'cheaper': 1.0, 'got': 3.0, 'mildew': 1.0, 'older': 1.0, 'taking': 1.0, 'so': 1.0, 'ask': 1.0, 'newborn': 1.0, 'one': 1.0, 'try': 1.0, 'area': 1.0, 'make': 1.0, 'close': 1.0, 'under': 1.0, 'same': 1.0, 'tears': 1.0, 'planned': 1.0, 'bigger': 1.0, 'course': 1.0, 'every': 1.0, 'enjoy': 1.0, 'they': 1.0, 'cut': 1.0, 'some': 1.0, 'never': 1.0, 'around': 1.0, 'return': 1.0, 'seemed': 1.0, 'take': 1.0, 'fine': 1.0, 'come': 1.0, 'also': 1.0}
Word element => {'about': 1.0, 'can': 1.0, 'which': 1.0, 'in': 1.0, 'drain': 2.0, 'there': 1.0, 'attached': 1.0, 'rings': 1.0, 'also': 1.0, 'enough': 1.0, 'off': 1.0, 'strainer': 1.0, 'cup': 1.0, 'taking': 1.0, 'entertain': 1.0, 'positioned': 1.0, 'so': 3.0, 'he': 3.0, 'it': 5.0, 'convenient': 1.0, 'with': 2.0, 'tummy': 1.0, 'love': 1.0, 'for': 1.0, 'highly': 1.0, 'getting': 1.0, 'butt': 1.0, 'son': 2.0, 'great': 1.0, 'seemed': 1.0, 'big': 1.0, 'from': 1.0, 'say': 1.0, 'is': 4.0, '5': 1.0, 'months': 1.0, 'bought': 1.0, 'our': 2.0, 'to': 6.0, 'was': 1.0, 'things': 1.0, 'happier': 1.0, 'are': 1.0, 'deeper': 1.0, 'tub': 6.0, 'makes': 1.0, 'old': 1.0, 'i': 2.0, 'reviewed': 1.0, 'his': 1.0, 'perfectly': 1.0, 'down': 1.0, 'and': 2.0, 'too': 1.0, 'play': 2.0, 't': 1.0, 'a': 1.0, 'we': 2.0, 'could': 1.0, 'not': 1.0, 'that': 1.0, 'loves': 3.0, 'playing': 1.0, 'the': 10.0, 'bump': 1.0, 'this': 3.0, 'perfect': 1.0, 'falling': 1.0, 'size': 1.0, 'prevent': 1.0, 'be': 2.0, 'him': 2.0, 'much': 2.0, 'end': 1.0, 'bar': 2.0}
Word element => {'important': 1.0, 'like': 1.0, 'looked': 1.0, 'wouldn': 1.0, 'bath': 1.0, 'fantastic': 1.0, 'divider': 1.0, 'sections': 1.0, 'because': 1.0, 'breakers': 1.0, 'listed': 1.0, 'cons': 1.0, 'none': 1.0, 'better': 1.0, 'so': 1.0, 'bit': 1.0, 'attached': 1.0, 've': 1.0, 'would': 1.0, 'at': 1.0, '28': 1.0, 'daughter': 2.0, '7': 1.0, 'taller': 1.0, 'that': 1.0, 'babies': 1.0, 'loves': 4.0, 'what': 2.0, 'bar': 1.0, 'inches': 1.0, 'little': 4.0, 'for': 4.0, 'i': 2.0, 'perfect': 1.0, 'wish': 1.0, 'this': 2.0, 'she': 6.0, 'it': 2.0, 'of': 2.0, 'shower': 1.0, 'is': 4.0, 'say': 1.0, 'doesn': 1.0, 'yellow': 1.0, 'my': 2.0, 're': 1.0, 's': 2.0, 'a': 3.0, 't': 2.0, 'tub': 2.0, 'baby': 1.0, 'months': 1.0, 'still': 1.0, 'anyway': 1.0, 'are': 3.0, 'will': 1.0, 'also': 2.0, 'deal': 1.0, 'the': 6.0, 'orange': 1.0, 'toy': 1.0, 'hair': 1.0, 'too': 1.0, 'and': 4.0, 'short': 1.0, 'toys': 1.0, 'washing': 1.0, 'care': 2.0, 'making': 1.0, 'thrilled': 1.0, 'just': 1.0, 'they': 2.0, 'nice': 1.0, 'me': 1.0, 'stay': 1.0, 'those': 1.0}
Word element => {'lame': 1.0, 'pieces': 1.0, 'are': 1.0, 'there': 1.0, 'since': 1.0, 'collects': 1.0, 'big': 1.0, 'shown': 1.0, 'thats': 1.0, 'newborn': 1.0, 'keeping': 1.0, 'k': 1.0, 'clunky': 1.0, 'overall': 1.0, 'off': 1.0, 'picture': 1.0, 'show': 1.0, 'handy': 1.0, 'does': 2.0, 'fine': 1.0, 'is': 4.0, 'small': 1.0, 'have': 1.0, 'disinfectant': 1.0, 'bath': 1.0, 'after': 1.0, 'works': 1.0, 'much': 1.0, 'pretty': 3.0, 'cleaned': 1.0, 'removed': 1.0, 'if': 1.0, 'in': 3.0, 'the': 7.0, 'they': 1.0, 'notch': 1.0, 'holes': 1.0, 'every': 1.0, 'aware': 1.0, 'stopper': 3.0, 'o': 1.0, 'with': 2.0, 'come': 2.0, 'it': 10.0, 'this': 2.0, 'first': 1.0, 'not': 5.0, 'which': 1.0, 'thoroughly': 1.0, 'brought': 1.0, 'did': 1.0, 'and': 4.0, 'of': 2.0, 'bought': 1.0, 'r': 1.0, 'be': 1.0, 'hard': 1.0, 'from': 2.0, 'has': 1.0, 'toy': 2.0, 'baby': 3.0, 'scum': 1.0, 'get': 2.0, 'tub': 2.0, 'i': 1.0, 'sliding': 1.0, 'us': 1.0, 'about': 1.0, 'no': 1.0, 'very': 1.0, 'little': 2.0, 'mildew': 2.0, 'so': 3.0, 'babies': 1.0, 'that': 2.0, 'you': 1.0, 'a': 3.0, 'might': 1.0, 'bar': 2.0, 'either': 1.0, 'few': 1.0, 'for': 1.0, 'stars': 1.0, 'soap': 1.0, 'second': 1.0, 'removable': 1.0, 'but': 3.0, 'can': 1.0, 'as': 1.0, 'to': 1.0, 'all': 1.0, 'actual': 1.0, 'grow': 1.0, 'down': 1.0, 'mold': 1.0}
Word element => {'dangerous': 1.0, 'checked': 1.0, 'not': 2.0, 'been': 1.0, 'have': 1.0, 'think': 1.0, 'want': 1.0, 'by': 1.0, 'horrified': 1.0, 'am': 1.0, '5': 1.0, 'all': 1.0, 'almost': 1.0, 'read': 1.0, 'info': 1.0, 'price': 1.0, 'complained': 1.0, 'fisher': 1.0, 'unplugged': 1.0, 'immediately': 1.0, 'stopped': 1.0, 'completely': 1.0, 'from': 1.0, 'smell': 2.0, 'contact': 1.0, 'there': 1.0, 'later': 1.0, 'minutes': 1.0, 'laundry': 1.0, 'some': 1.0, 'do': 2.0, 'went': 3.0, 'her': 3.0, 'please': 1.0, 'fell': 1.0, 'over': 1.0, '2': 1.0, 'find': 1.0, '1': 1.0, 'on': 3.0, 'born': 1.0, 'revised': 1.0, 'week': 1.0, 'so': 1.0, 'expensive': 1.0, 'for': 3.0, 'be': 3.0, 'to': 8.0, 'as': 2.0, 'that': 5.0, 'into': 1.0, 'super': 1.0, 'often': 1.0, 'website': 1.0, 'my': 3.0, 'our': 1.0, 'how': 3.0, '6': 1.0, 'reviews': 1.0, 'moving': 1.0, 'we': 3.0, 'a': 4.0, 'could': 2.0, 'go': 1.0, 'version': 2.0, 'son': 1.0, 'check': 1.0, 'wonders': 1.0, 'seem': 1.0, 'still': 1.0, 'buy': 2.0, 'downside': 1.0, 'old': 2.0, 'yr': 1.0, 'purchasing': 1.0, 'had': 5.0, 'either': 1.0, 'was': 4.0, 'baby': 2.0, 'unfortunately': 1.0, 'were': 1.0, 'recommend': 1.0, 'when': 5.0, 'great': 1.0, 'only': 2.0, 'burning': 3.0, 'it': 8.0, '3': 2.0, 'older': 1.0, 'weekend': 1.0, 'this': 6.0, 'daughter': 2.0, 'got': 1.0, 'took': 1.0, 'even': 1.0, 'loved': 1.0, 'motor': 2.0, 'he': 1.0, 'far': 1.0, 'little': 2.0, '12': 1.0, 'batteries': 1.0, 'strong': 2.0, 'swing': 8.0, 'did': 1.0, 'ocean': 1.0, '25': 1.0, 'their': 2.0, 'and': 5.0, 'also': 1.0, 'plugged': 1.0, 'out': 2.0, 'absolutely': 1.0, 'wall': 1.0, 'about': 5.0, 'plug': 1.0, 'in': 2.0, 't': 3.0, 'along': 1.0, 'with': 1.0, 'excited': 1.0, 'after': 2.0, 'around': 1.0, 'asleep': 1.0, 'good': 1.0, 'is': 3.0, 'at': 1.0, 'slowest': 1.0, 'setting': 1.0, 'the': 17.0, 'of': 2.0, 'moves': 1.0, 'newborn': 1.0, 'really': 1.0, 'things': 2.0, 'loud': 1.0, 'separating': 1.0, 'months': 1.0, 'legs': 1.0, 'they': 1.0, 'shop': 1.0, 'll': 1.0, 'don': 1.0, 'isn': 2.0, 'cute': 1.0, 'bad': 2.0, 'but': 1.0, 'coming': 1.0, 'fast': 1.0, 'i': 9.0, 'parents': 1.0, 'before': 1.0, 'too': 1.0, 'one': 1.0}
Word element => {'one': 1.0, 'new': 1.0, 'sending': 1.0, 'are': 1.0, 'me': 1.0, 'and': 1.0, 'of': 1.0, 'fisher': 1.0, 'call': 1.0, 'did': 1.0, 'i': 2.0, 'out': 1.0, 'already': 1.0, 'free': 1.0, 'they': 1.0, 'has': 1.0, 'worry': 1.0, 'a': 2.0, 'burned': 1.0, 'in': 1.0, 'you': 1.0, 'so': 1.0, 'however': 1.0, 'plugs': 1.0, 'motor': 1.0, 'is': 1.0, 'months': 1.0, 'on': 1.0, 'only': 1.0, 'it': 2.0, 'this': 1.0, '2': 1.0, 'great': 1.0, 'the': 1.0, 't': 1.0, 'have': 2.0, 'had': 1.0, 'to': 1.0, 'charge': 1.0, 'going': 1.0, 'price': 1.0, 'don': 1.0, 'about': 1.0, 'broke': 1.0, 'swing': 1.0, 'batteries': 1.0}
Word element => {'toys': 1.0, 'detachable': 1.0, 'and': 1.0, 'in': 1.0, 'look': 1.0, 'to': 1.0, 'has': 1.0, 'else': 1.0, 'somebody': 1.0, 'at': 1.0, 'not': 1.0, 'like': 1.0, 'all': 1.0, 'works': 1.0, 'great': 1.0, 'adorable': 1.0, 'music': 1.0, 'baby': 1.0, 'price': 1.0, 'cute': 1.0, 'mobile': 1.0, 'loud': 1.0, 'with': 1.0, 'tray': 1.0, 'said': 1.0, 'is': 1.0, 'nice': 1.0, 'there': 1.0, 'a': 1.0, 'mirror': 1.0, 'for': 2.0}
Word element => {'her': 1.0, 'types': 1.0, 'between': 1.0, 'difference': 1.0, 'tell': 1.0, 'a': 1.0, 't': 1.0, 'songs': 2.0, 'soothing': 2.0, 'only': 1.0, 'playful': 1.0, 'falls': 1.0, 'baby': 1.0, 'my': 1.0, 'makes': 1.0, 'switch': 2.0, 'to': 3.0, 'hope': 1.0, 'says': 1.0, 'just': 1.0, 'also': 1.0, 'sound': 1.0, 'back': 1.0, 'front': 1.0, 'is': 5.0, 'wow': 1.0, 'this': 1.0, 'it': 4.0, 'side': 2.0, 'versatile': 1.0, 'swing': 4.0, 'there': 1.0, 'box': 1.0, 'that': 3.0, 'power': 1.0, 'choose': 1.0, 'so': 2.0, 'for': 1.0, 'actually': 1.0, 'love': 1.0, 'like': 1.0, 'using': 1.0, 'activities': 1.0, 'thinking': 1.0, 'two': 1.0, '4': 2.0, 'i': 6.0, 'am': 1.0, 'when': 2.0, 'you': 4.0, 'fairly': 1.0, 'are': 2.0, 'done': 1.0, 'and': 4.0, 'asleep': 1.0, 'the': 10.0, 'always': 1.0, 'creaking': 1.0, 'flip': 1.0, 'turn': 1.0, 'stops': 3.0, 'or': 1.0, 'swinging': 1.0, 'nap': 1.0, 'motor': 1.0, 'but': 2.0, 'can': 3.0, 'music': 1.0, 'one': 3.0, 'mobile': 1.0, 'put': 1.0, 'on': 4.0, 'individually': 1.0, 'disappointment': 1.0, 'what': 2.0, 'quiet': 1.0}
Word element => {'buck': 1.0, 'lowest': 1.0, 'with': 1.0, 'this': 2.0, 'months': 1.0, 'and': 2.0, '1': 1.0, 'big': 1.0, 'problems': 1.0, 'son': 1.0, 'setting': 1.0, 'some': 1.0, '4': 1.0, 'two': 1.0, 'i': 2.0, 'my': 2.0, 'its': 2.0, 'had': 2.0, 'wobbles': 1.0, 'ground': 1.0, 'baby': 1.0, 'loved': 1.0, 'did': 1.0, 'if': 1.0, 'swing': 3.0, 'even': 1.0, 'so': 1.0, 'the': 2.0, 'but': 2.0, '2': 1.0, 'it': 4.0, 'lifts': 1.0, 'off': 1.0, 'product': 1.0, 'for': 2.0, 'horribly': 1.0, 'bang': 1.0, 'by': 1.0, 'overall': 1.0, 'are': 1.0, 'a': 1.0, 's': 1.0, 'outgrown': 1.0, 'you': 1.0, 'not': 2.0, 'bad': 1.0, 'looking': 1.0, 'on': 1.0, 'your': 1.0}
Word element => {'value': 1.0, 'good': 1.0, 'pleased': 1.0, 'we': 1.0, 'are': 1.0, 'overall': 1.0, 'money': 1.0, 'baby': 1.0, 'for': 1.0, 'functions': 1.0, 'and': 1.0, 'this': 1.0, 'with': 1.0, 'it': 1.0, 'noise': 1.0, 'purchase': 1.0, 'use': 1.0, 'built': 1.0, 'of': 1.0, 'seems': 1.0, 'noisy': 1.0, 'but': 1.0, 'weeks': 1.0, 'three': 1.0, 'bit': 1.0, 'after': 1.0, 'not': 1.0, 'well': 1.0, 'a': 1.0, 'when': 1.0, 'does': 1.0, 'operating': 1.0, 'the': 2.0, 'solidly': 1.0, 'bother': 1.0}
Word element => {'purchased': 1.0, 'smaller': 1.0, 'than': 1.0, 'more': 1.0, 'much': 1.0, 'enjoys': 1.0, 'baby': 1.0, 'note': 1.0, 'positive': 1.0, 'compact': 1.0, 'prepaid': 1.0, 'sent': 1.0, 'buy': 1.0, 'which': 1.0, 'cost': 1.0, 'new': 1.0, 'shipping': 1.0, '20': 1.0, 'weird': 1.0, 'company': 1.0, 'in': 2.0, 'extra': 1.0, 'another': 1.0, 'label': 1.0, 'me': 3.0, 'minor': 1.0, 'not': 2.0, 'and': 6.0, 'vibrating': 1.0, 'getting': 1.0, 'bought': 1.0, 'mobile': 1.0, 'due': 1.0, 'wanted': 1.0, 'got': 1.0, 'on': 3.0, 'for': 2.0, 'i': 6.0, 'etc': 1.0, 'they': 3.0, 'places': 1.0, 'overall': 1.0, 'last': 1.0, 'amazon': 1.0, 'sale': 1.0, 'cradle': 1.0, 'pain': 1.0, 'it': 5.0, '99': 1.0, 'of': 1.0, 'the': 14.0, 'as': 4.0, 'to': 7.0, 'noises': 1.0, 'best': 1.0, 'product': 1.0, 'price': 1.0, 'd': 2.0, 'stuck': 1.0, 'swing': 3.0, 'around': 2.0, 'is': 1.0, 'a': 10.0, 's': 1.0, 'nicer': 1.0, 'had': 3.0, 'was': 3.0, 'return': 5.0, 'store': 1.0, 'we': 2.0, 'then': 2.0, 'credited': 1.0, 'rec': 1.0, 'probably': 1.0, 'pay': 2.0, 'making': 1.0, 'back': 1.0, 'process': 1.0, 'work': 1.0, 'little': 1.0, 'frustrating': 1.0, 'noise': 2.0, 'adjusting': 1.0, 'this': 2.0, 'few': 1.0, 'by': 1.0, 'just': 1.0, 'refused': 1.0, 'issues': 1.0, 'original': 1.0, 'squeeking': 1.0, 'quite': 1.0, 'loud': 1.0, 'once': 2.0, 'these': 1.0, 'bad': 2.0, 'are': 1.0, 'has': 1.0, 'them': 1.0, 'placement': 1.0, 'ok': 1.0, 'if': 1.0, 'local': 1.0, 'lot': 1.0, 'too': 1.0, 'one': 6.0, 'rear': 1.0, 'an': 1.0, 'legs': 1.0, 'get': 1.0}
Word element => {'of': 1.0, 'lot': 1.0, 'i': 1.0, 'there': 1.0, 'out': 2.0, 'swing': 1.0, 'shrinkage': 1.0, 'had': 1.0, 'machine': 1.0, 'was': 1.0, 'tray': 1.0, 'best': 1.0, 'mirror': 1.0, 'loved': 1.0, 'put': 1.0, 'great': 1.0, 'controls': 1.0, 'effects': 1.0, 'cranking': 1.0, 'motor': 1.0, 'everyone': 1.0, 'its': 1.0, 'product': 1.0, 'distribution': 1.0, 'be': 1.0, 'this': 1.0, 'with': 2.0, 'very': 1.0, 'play': 1.0, 'too': 1.0, 'and': 6.0, 'away': 1.0, 'were': 1.0, 'a': 1.0, 'we': 1.0, 'hours': 1.0, 'volume': 1.0, 'or': 1.0, 'swinging': 1.0, 'year': 1.0, 'spent': 1.0, 'the': 3.0, 'checked': 1.0, 'my': 1.0, 'happy': 1.0, 'them': 1.0, 'baby': 2.0, 'no': 2.0, 'about': 3.0, 'has': 1.0, 'last': 1.0, 'many': 1.0, 'ignorant': 1.0, 'complaining': 1.0, 'apart': 1.0, 'are': 2.0, 'how': 1.0, 'set': 2.0, 'wash': 1.0, 'sound': 1.0, 'loudness': 1.0, 'over': 1.0, 'up': 1.0, 'from': 1.0, 'properly': 1.0, 'sleep': 1.0, 'to': 4.0, 'noises': 1.0, 'all': 1.0, 'able': 1.0, 'us': 1.0, 'wider': 1.0, 'have': 1.0, 'weight': 1.0, 'legs': 1.0, 'need': 1.0, 'joyful': 1.0, 'you': 1.0, 'will': 1.0, 'issues': 2.0}
Word element => {'last': 1.0, 'amazing': 1.0, 'at': 1.0, 'comprise': 1.0, 'why': 1.0, 'm': 1.0, 'inch': 1.0, 'an': 1.0, 'about': 1.0, 'sure': 1.0, 'left': 1.0, 'some': 1.0, 'measure': 1.0, 'safety': 1.0, 'won': 1.0, 'then': 1.0, 'out': 1.0, 'off': 1.0, 'enough': 1.0, 'legs': 1.0, 'if': 1.0, 'been': 1.0, 'that': 1.0, 'have': 1.0, 'i': 2.0, 'plug': 1.0, 'reason': 1.0, 'never': 1.0, 've': 1.0, 'maybe': 1.0, 'does': 1.0, 'second': 1.0, 'strong': 1.0, 'put': 1.0, 'on': 1.0, 'loudest': 1.0, 'not': 2.0, 'trouble': 1.0, 'lifts': 1.0, 'fell': 1.0, 'it': 8.0, 'this': 3.0, 'in': 5.0, 'minutes': 1.0, 'doesn': 2.0, 'was': 2.0, 'he': 2.0, 'slow': 1.0, 'weeks': 1.0, 'now': 2.0, 'sleeping': 1.0, 'still': 1.0, 'son': 3.0, 'noticed': 1.0, 'old': 1.0, 'swing': 7.0, 'hopefully': 1.0, 'my': 3.0, 'when': 2.0, 'us': 2.0, 'will': 1.0, 'batteries': 1.0, 'swings': 2.0, 'just': 4.0, 'few': 2.0, 'fine': 1.0, 'right': 1.0, 'isn': 1.0, 'asleep': 1.0, 'the': 10.0, 'ground': 1.0, 'quietest': 1.0, 'going': 1.0, 'a': 3.0, 'we': 3.0, 't': 5.0, 's': 4.0, 'spread': 1.0, '15lbs': 1.0, 'had': 1.0, 'either': 1.0, 'speed': 2.0, 'motor': 1.0, 'bother': 1.0, 'all': 3.0, 'any': 1.0, 'leg': 1.0, 'of': 1.0, 'for': 3.0, 'is': 2.0, 'aren': 1.0, 'but': 3.0, 'four': 2.0, 'bought': 1.0, 'months': 2.0, 'and': 3.0}
Word element => {'very': 1.0, 'disappointed': 1.0, 'in': 1.0, 'for': 1.0, 'it': 2.0, 'stopped': 1.0, 'plug': 1.0, 'you': 1.0, 'the': 3.0, 'motor': 1.0, 'and': 2.0, 'bought': 1.0, 'we': 2.0, 'because': 1.0, 'not': 1.0, 'use': 1.0, 'swing': 1.0, 'batteries': 1.0, 'used': 1.0, 'have': 1.0, 'could': 1.0, 'working': 1.0, 'past': 1.0, '4': 1.0, 'months': 1.0}
Word element => {'did': 1.0, 'like': 1.0, 'swing': 1.0, 'to': 1.0, 'was': 1.0, 'happy': 1.0, 'am': 1.0, 'models': 1.0, 'older': 1.0, 'this': 1.0, 'with': 1.0, 'it': 1.0, 'works': 1.0, 'the': 1.0, 't': 1.0, 'great': 1.0, 'very': 1.0, 'and': 1.0, 'i': 1.0, 'assemble': 1.0, 'doesn': 1.0, 'a': 1.0, 'take': 1.0, 'easy': 1.0, 'lot': 1.0, 'up': 1.0, 'of': 2.0, 'some': 1.0, 'space': 1.0}
Word element => {'wakes': 1.0, 'loud': 1.0, 'buckle': 1.0, 'when': 1.0, 'you': 2.0, 'this': 3.0, 'wouldn': 1.0, 'snap': 1.0, 'house': 1.0, 'can': 1.0, 'but': 2.0, 'so': 1.0, 'it': 3.0, 'she': 3.0, 'great': 1.0, 'the': 5.0, 'tray': 1.0, 'bought': 1.0, 'one': 4.0, 'grandparents': 1.0, 'for': 1.0, 'two': 1.0, 'i': 3.0, 'aquarium': 2.0, 'another': 2.0, 'about': 1.0, 'both': 1.0, 'price': 1.0, 'mirror': 1.0, 'already': 1.0, 'was': 1.0, 'had': 1.0, 'to': 2.0, 'look': 1.0, 'like': 1.0, 'which': 1.0, 'fisher': 1.0, 'of': 1.0, 'swing': 3.0, 'that': 1.0, 'loves': 2.0, 'swings': 1.0, 'same': 1.0, 'and': 4.0, 'needed': 1.0, 'herself': 1.0, 'very': 1.0, 'cute': 1.0, 'her': 3.0, 'clean': 1.0, 'at': 1.0, 'in': 3.0, 'is': 2.0, 'say': 1.0, 'has': 2.0, 't': 1.0, 'we': 2.0, 'a': 2.0, 'favorite': 1.0}
Word element => {'even': 1.0, 'in': 1.0, 'still': 1.0, 'will': 1.0, 'after': 1.0, 'so': 1.0, 'complaint': 1.0, 'fall': 1.0, 'is': 1.0, 'side': 2.0, 'room': 1.0, 'movement': 1.0, 'of': 2.0, 'up': 1.0, 'lot': 1.0, 'much': 1.0, 'only': 1.0, 'this': 1.0, 'loud': 2.0, 'with': 2.0, 'my': 1.0, 'squeak': 2.0, 'i': 2.0, '4': 1.0, 'months': 1.0, 'swing': 1.0, 'she': 1.0, 'it': 3.0, 'stopped': 1.0, 'month': 1.0, 'doesn': 1.0, 'daughter': 1.0, 'have': 2.0, 'that': 1.0, 'loves': 1.0, 'a': 1.0, 't': 2.0, '2': 1.0, 'asleep': 1.0, 'the': 2.0, 'thing': 1.0, 'about': 1.0, 'use': 1.0, 'every': 1.0, 'started': 1.0, 'to': 3.0, 'very': 1.0, 'old': 1.0, 'hasn': 1.0, 'take': 1.0, 'pretty': 1.0, 'gotten': 1.0, 'used': 1.0}
Word element => {'baby': 2.0, 'swinging': 1.0, 'without': 1.0, 'it': 4.0, 'love': 1.0, 'gift': 1.0, 'absolutely': 1.0, 'we': 1.0, 'lot': 1.0, 'lost': 1.0, 'got': 1.0, 'be': 1.0, 'is': 1.0, 'versatile': 1.0, 'time': 1.0, 'in': 1.0, 'also': 1.0, 'best': 1.0, 'very': 1.0, 'my': 1.0, 'girl': 1.0, 'spends': 1.0, 'a': 1.0, 'of': 1.0}
Word element => {'good': 1.0, 'is': 2.0, 'price': 1.0, 'month': 1.0, 'it': 2.0, 'bad': 1.0, 'i': 1.0, 'already': 1.0, 'long': 1.0, 'died': 1.0, 'last': 1.0, 'quality': 1.0, 'and': 1.0, 'only': 1.0, 't': 1.0, 'have': 1.0, 'the': 1.0, 'motor': 1.0, 'less': 1.0, 'but': 1.0, 'than': 1.0, 'doesn': 1.0, 'a': 1.0}
Word element => {'sounds': 1.0, 'animal': 1.0, 'and': 1.0, 'music': 1.0, 'quiet': 1.0, 'the': 1.0, 'not': 1.0, 'that': 1.0, 'plug': 1.0, 'just': 1.0, 'into': 1.0, 'socketplays': 1.0, 'runs': 1.0, 'love': 1.0, 'it': 2.0, 'can': 1.0, 'on': 1.0, 'batteries': 1.0}
Word element => {'stores': 1.0, 'of': 1.0, 'at': 1.0, 'cheaper': 1.0, 'particular': 1.0, 'are': 1.0, 'front': 1.0, 'just': 1.0, 'not': 1.0, 'side': 2.0, '1': 1.0, 'able': 1.0, 'us': 1.0, 'what': 1.0, 'had': 4.0, 'things': 1.0, 'there': 1.0, 'silent': 1.0, 'be': 1.0, 'swinging': 1.0, 'noisy': 1.0, 'the': 3.0, 'and': 6.0, 'our': 1.0, 'any': 1.0, 'to': 7.0, 'hoping': 1.0, 'it': 5.0, 'this': 4.0, 'do': 1.0, 'only': 1.0, 'now': 1.0, 'older': 2.0, 'more': 1.0, 'is': 3.0, 'second': 1.0, 'a': 4.0, 'we': 4.0, 'everything': 1.0, 'negative': 1.0, 'good': 1.0, 'that': 4.0, 'were': 2.0, 'swing': 4.0, 'local': 1.0, 'twins': 1.0, 'when': 2.0, 'both': 2.0, 'two': 1.0, 'i': 2.0, 'was': 3.0, 'expecting': 1.0, 'thing': 1.0, 'have': 4.0, 'swings': 1.0, 'also': 1.0, 'moves': 1.0, 'an': 1.0, '2': 1.0, 'but': 1.0, 'model': 2.0, 'mobile': 1.0, 'one': 3.0, 'for': 1.0, 'love': 1.0, 'got': 1.0, 'find': 1.0, 'than': 1.0, 'does': 1.0, 'because': 1.0, 'back': 2.0, 'needed': 1.0, 'they': 2.0, 'makes': 1.0, 'noise': 1.0, 'forth': 1.0, 'would': 1.0}
Word element => {'7': 1.0, 'in': 1.0, 'swing': 2.0, 'every': 1.0, 'same': 1.0, 'baby': 1.0, 'only': 1.0, 'a': 1.0, 'zoo': 1.0, 'the': 6.0, '1': 1.0, 'stage': 1.0, 'of': 3.0, 'speed': 2.0, 'good': 1.0, 'to': 1.0, 'product': 1.0, 'but': 1.0, 'is': 3.0, 'with': 1.0, 'problem': 1.0}
Word element => {'see': 1.0, 'price': 1.0, 'contact': 1.0, 'he': 1.0, 'while': 1.0, 'fisher': 1.0, 'easy': 1.0, 'not': 1.0, 'do': 1.0, 'try': 1.0, 'its': 1.0, 'because': 1.0, 'chair': 2.0, 'of': 1.0, 'front': 1.0, 'have': 1.0, 'what': 1.0, 'had': 1.0, 'thing': 1.0, 'one': 1.0, 'in': 1.0, 'this': 2.0, 'with': 1.0, 'loud': 1.0, 'lowest': 1.0, 'baby': 3.0, 'that': 4.0, 'head': 1.0, 'problem': 2.0, 'carry': 1.0, 'motor': 1.0, 'playing': 1.0, 'the': 14.0, 'can': 1.0, 'sitting': 1.0, 'but': 2.0, 'work': 1.0, 'music': 1.0, '2': 1.0, 'previously': 1.0, 'features': 1.0, 'more': 1.0, 'is': 3.0, 'realized': 1.0, 'sound': 1.0, 'over': 1.0, 'your': 1.0, 'put': 2.0, 'on': 4.0, 'read': 1.0, 'electricity': 1.0, 'table': 1.0, 'like': 2.0, 'which': 2.0, 'swing': 3.0, 'nice': 1.0, 'comfortable': 1.0, 'for': 1.0, 'toys': 1.0, 'has': 2.0, 'i': 6.0, 'and': 4.0, 'too': 2.0, 'will': 1.0, 'batteries': 1.0, 'swings': 1.0, 'plus': 1.0, 'apeed': 1.0, 'high': 1.0, 'we': 1.0, 'a': 2.0, 'she': 1.0, 'remove': 1.0, 'looks': 1.0, 'month': 1.0, 'to': 5.0, 'all': 1.0, 'swinging': 1.0, 'or': 2.0, 'depending': 1.0, 'reviews': 1.0}
Word element => {'time': 1.0, 'min': 1.0, 'a': 1.0, '15': 1.0, 'great': 1.0, 'the': 1.0, 'leave': 1.0, 'times': 1.0, 'swing': 1.0, 'three': 1.0, 'loves': 1.0, 'or': 1.0, 'use': 1.0, 'sitting': 1.0, 'posts': 1.0, 'other': 1.0, 'dishes': 1.0, 'do': 1.0, 'even': 1.0, 'assistant': 1.0, 'eat': 1.0, 'that': 1.0, 'can': 1.0, 'my': 1.0, 'daily': 1.0, 'it': 2.0, 'shower': 1.0, 'this': 1.0, 'call': 1.0, 'i': 6.0, 'in': 1.0, 've': 1.0, 'just': 2.0, 'not': 1.0, 'had': 1.0, 'problems': 1.0, 'for': 1.0, 'about': 2.0, 'personal': 1.0, 'any': 1.0, 'at': 1.0, 'two': 2.0, 'she': 1.0, 'read': 1.0, 'months': 1.0, 'on': 2.0}
Word element => {'off': 1.0, 'swing': 1.0, 'if': 1.0, 'gets': 1.0, 'readily': 1.0, 'he': 2.0, 'time': 1.0, 'minutes': 1.0, '15': 1.0, 'about': 1.0, 'for': 1.0, 'agitated': 1.0, 'but': 1.0, 'great': 1.0, 'seemed': 1.0, '2': 1.0, 'thing': 2.0, 'real': 1.0, 'list': 1.0, 'rock': 1.0, 'a': 5.0, 'going': 2.0, 'let': 1.0, 's': 2.0, 'plug': 1.0, 'consider': 1.0, 'musical': 1.0, 'we': 1.0, 'take': 1.0, 'gentle': 1.0, 'travel': 1.0, 'product': 1.0, 'stars': 1.0, 'to': 6.0, 'our': 1.0, 'much': 1.0, 'its': 1.0, '3': 1.0, 'batteries': 1.0, 'secure': 1.0, 'cycle': 1.0, 'not': 3.0, '4': 1.0, 'i': 5.0, 'they': 1.0, 'sturdy': 1.0, 'advantage': 1.0, 'need': 1.0, 'toys': 1.0, 'asleep': 1.0, 'which': 1.0, 'like': 3.0, 'get': 2.0, 'and': 4.0, 'too': 3.0, 'in': 3.0, 'm': 3.0, '34': 2.0, 'acceptable': 1.0, 'more': 1.0, 'music': 1.0, 'around': 1.0, 'what': 2.0, 'with': 1.0, 'this': 3.0, 'it': 6.0, 'higher': 1.0, 'does': 1.0, 'variety': 1.0, 'give': 1.0, 'hang': 1.0, 'bit': 3.0, 'needs': 1.0, 'so': 1.0, 'selection': 1.0, 'else': 1.0, 'improving': 1.0, 'even': 1.0, 'is': 5.0, 'at': 2.0, 'lowest': 1.0, 'doesn': 1.0, 'setting': 1.0, 'vigorous': 1.0, 'just': 1.0, 'hey': 1.0, 'up': 1.0, 'slow': 1.0, 'turned': 1.0, 'down': 2.0, 'did': 1.0, 'you': 1.0, 'ever': 1.0, 'close': 1.0, 'month': 1.0, 'hear': 1.0, 'the': 8.0, 'of': 2.0, 'little': 1.0, 'fall': 1.0, '20': 1.0, 'because': 1.0, 'that': 1.0, 'are': 1.0, 'disorienting': 1.0, 'baby': 2.0, 'them': 2.0, 'face': 1.0, 'out': 1.0, 'huge': 1.0, 'way': 1.0, 'old': 1.0, 't': 1.0, 'looped': 1.0, 'likes': 1.0}
Word element => {'reviews': 1.0, 'good': 1.0, 'c': 1.0, 'cheaper': 1.0, 'find': 1.0, 'and': 1.0, 'couldn': 1.0, 'but': 1.0, 'overpriced': 1.0, 'had': 1.0, 'was': 1.0, 'make': 1.0, 'power': 1.0, 'anything': 1.0, 'which': 1.0, 'has': 1.0, 'is': 1.0, 'really': 1.0, 'works': 1.0, 'that': 1.0, 'ac': 1.0, 'in': 1.0, 'reason': 1.0, 'we': 2.0, 'the': 1.0, 't': 2.0, 'it': 3.0, 'this': 2.0, 'only': 1.0, 'like': 1.0, 'bought': 1.0, 'little': 1.0, 'swing': 2.0, 'batteries': 1.0, 'don': 1.0, 'a': 3.0, 'sense': 1.0}
Word element => {'out': 1.0, 'hold': 1.0, 'will': 1.0, 'feel': 1.0, 'didn': 1.0, 'know': 1.0, 'than': 1.0, '14': 1.0, 'did': 1.0, 'as': 2.0, 'to': 4.0, 'loves': 2.0, 'that': 1.0, 'been': 1.0, 'think': 1.0, 'just': 1.0, 'stuff': 1.0, 'on': 1.0, '3': 1.0, 'nice': 1.0, 'two': 2.0, 'i': 8.0, 'otherwise': 2.0, '4': 1.0, 'naps': 1.0, 'other': 1.0, 'but': 4.0, 'music': 1.0, '2': 1.0, 'sleep': 1.0, 'back': 1.0, 'daughter': 1.0, 'swings': 1.0, 'sounds': 1.0, 'in': 3.0, 'and': 6.0, 't': 1.0, 'a': 1.0, 'the': 8.0, 'my': 3.0, 'hopefully': 1.0, 'have': 3.0, 'it': 5.0, 'with': 1.0, 'buying': 1.0, 'this': 2.0, 'wish': 1.0, 'she': 4.0, 'baby': 1.0, 'softer': 1.0, 'great': 3.0, 'decision': 1.0, 'swing': 1.0, 'best': 1.0, 'both': 1.0, 'maybe': 1.0, 'plug': 1.0, 'or': 2.0, 'swinging': 1.0, 'motor': 1.0, 'far': 1.0, 'for': 3.0, 'third': 1.0, 'made': 1.0, 'child': 1.0, 'notice': 1.0, 'is': 5.0, 'level': 2.0, 'really': 1.0, 'they': 3.0, 'leaving': 1.0, 'her': 3.0, 'there': 1.0, 'cheery': 1.0, 'so': 3.0, 'put': 1.0, 'much': 1.0, 'only': 1.0, 'animals': 1.0, 'had': 2.0, 'songs': 1.0, 'bad': 1.0, 'first': 1.0, 'are': 2.0, 'them': 2.0, 'has': 2.0, 'nature': 1.0, 'one': 2.0, 'months': 1.0, 'night': 1.0, 'cries': 1.0, 'choice': 1.0, 'colors': 1.0, 'bright': 1.0, 'choices': 1.0, 'move': 1.0, 'occasionally': 1.0, 'when': 1.0, 'lbs': 1.0, 'stops': 1.0, 'old': 1.0}
Word element => {'of': 1.0, 'wide': 1.0, 'to': 1.0, 'like': 2.0, 'variety': 1.0, 'be': 1.0, 'travel': 1.0, 'and': 1.0, 'would': 1.0, 'only': 1.0, 'it': 1.0, 'portable': 1.0, 'i': 1.0, 'that': 1.0, 'swing': 1.0, 'is': 1.0, 'music': 1.0, 'problem': 1.0, 'mobile': 1.0, 'excellent': 1.0, 'more': 1.0, 'the': 2.0, 'we': 1.0, 'lot': 1.0, 'since': 1.0, 'a': 1.0, 'stylish': 1.0}
Word element => {'legs': 1.0, 'get': 1.0, 'give': 1.0, 'need': 1.0, 'started': 1.0, 'getting': 1.0, 'noisy': 1.0, 'walk': 1.0, 'mechanics': 1.0, 'is': 2.0, 'complaint': 1.0, 'swinging': 2.0, 'have': 1.0, 'older': 1.0, 'gets': 1.0, 'faster': 1.0, 'speeds': 1.0, 'plenty': 1.0, 'push': 1.0, 'are': 2.0, 'there': 1.0, 'an': 1.0, 'child': 1.0, 'my': 3.0, 'adaptor': 1.0, 'in': 2.0, 'she': 2.0, 'it': 4.0, 'first': 1.0, 'this': 1.0, 'having': 2.0, 'died': 1.0, 'love': 3.0, 'with': 1.0, 'frustrating': 1.0, 'ac': 1.0, 'i': 1.0, 'about': 1.0, 'positions': 1.0, 'at': 1.0, 'swing': 4.0, 'also': 1.0, 'batteries': 1.0, 'little': 4.0, 'well': 1.0, 'has': 1.0, 'bit': 1.0, 'so': 2.0, 'time': 2.0, 'was': 1.0, 'as': 1.0, 'to': 3.0, 'and': 3.0, 'going': 1.0, 'we': 1.0, 'a': 6.0, 'go': 1.0, 'huge': 1.0, 'week': 1.0, 'packs': 1.0, 'once': 1.0, 'of': 2.0, 'you': 1.0, 'when': 2.0, 'again': 1.0, 'the': 4.0, 'only': 1.0, 'works': 1.0, 'daughter': 1.0, 'that': 3.0, 'loves': 1.0, 'buy': 1.0, 'looking': 1.0, 'herself': 1.0, 'd': 1.0, 'both': 1.0, 'mirror': 1.0}
Word element => {'sit': 1.0, 'addition': 1.0, 'toys': 1.0, 'willing': 1.0, 'minutes': 1.0, 'in': 1.0, 'her': 1.0, 'would': 1.0, 'play': 1.0, 'nap': 1.0, 'great': 1.0, 'the': 1.0, 't': 1.0, 'and': 3.0, 'cranky': 1.0, 'tray': 1.0, 'want': 1.0, 'grew': 1.0, 'just': 2.0, 'put': 1.0, 'but': 1.0, 'she': 3.0, 'didn': 1.0, 'swing': 2.0, 'out': 1.0, 'there': 1.0, 'up': 1.0, 'of': 1.0, 'loved': 1.0, 'then': 1.0, 'life': 1.0, 'recently': 1.0, 'my': 1.0, 'with': 1.0, 'this': 2.0, 'it': 3.0, 'a': 3.0, '9': 1.0, 'saver': 1.0, 'months': 1.0, 'sleep': 1.0, 'until': 1.0, 'to': 4.0, 'was': 4.0, 'daughter': 1.0, 'when': 2.0}
Word element => {'mirror': 1.0, 'mobile': 1.0, 'songs': 1.0, 'dead': 1.0, 'something': 1.0, 'don': 2.0, 'up': 2.0, 'noise': 1.0, 'on': 3.0, 'for': 3.0, 'actually': 1.0, 'motor': 1.0, 'love': 1.0, 'lifesaver': 1.0, 'been': 1.0, 'loves': 1.0, 'swing': 2.0, 'it': 5.0, 'she': 1.0, 'this': 2.0, 'so': 2.0, 'time': 1.0, 't': 2.0, 'a': 5.0, 's': 2.0, 'categorize': 1.0, 'does': 3.0, 'down': 1.0, 'her': 1.0, 'defect': 1.0, 'job': 1.0, 'to': 4.0, 'sleep': 1.0, 'as': 1.0, 'any': 1.0, 'will': 1.0, 'would': 1.0, 'weeks': 1.0, 'approx': 1.0, 'than': 1.0, 'wake': 1.0, 'doing': 1.0, 'the': 10.0, 'of': 4.0, 'is': 3.0, 'daughter': 1.0, 'be': 2.0, 'my': 2.0, 'me': 3.0, 'not': 2.0, 'those': 1.0, 'wrong': 1.0, '50': 1.0, 'and': 3.0, 'out': 1.0, 'lifting': 1.0, '6': 1.0, 'old': 1.0, 'point': 1.0, 'i': 7.0, 'loud': 1.0, 'but': 1.0, 'we': 1.0, 'leg': 2.0, 'then': 1.0, 'again': 1.0, 'was': 1.0, 'what': 1.0, 'expected': 1.0, 'sound': 2.0, 'make': 1.0, 'disturb': 1.0, 'little': 1.0, 'angel': 1.0, 'know': 2.0, 'however': 1.0, 'lift': 1.0, 'research': 1.0, 'pillows': 1.0, 'seems': 1.0, 'off': 1.0, 'ground': 1.0, 'held': 1.0, 'one': 2.0, 'which': 1.0, 'contention': 1.0, 'side': 1.0, 'big': 1.0, 'issue': 1.0, 'more': 2.0, 'husband': 1.0, 'keep': 1.0, 'from': 1.0, 'set': 1.0, 'if': 4.0, 'still': 1.0, 'or': 1.0, 'need': 1.0, 'put': 2.0, 'do': 1.0}
Word element => {'weight': 1.0, '25': 1.0, 'enough': 1.0, 'up': 1.0, 'think': 1.0, 't': 1.0, 'price': 1.0, 'they': 1.0, 'opperated': 1.0, 'from': 2.0, 'past': 1.0, 'hard': 1.0, 'work': 1.0, 'will': 2.0, 'batteries': 2.0, 'have': 2.0, 'all': 1.0, 'as': 1.0, 'lessened': 1.0, 'to': 6.0, 'option': 1.0, 'since': 1.0, 'bigger': 1.0, 'keep': 1.0, 'drain': 1.0, 'appreaciate': 1.0, 'full': 1.0, 'very': 1.0, 'kido': 1.0, 'little': 1.0, 'a': 3.0, 'seems': 1.0, 'tried': 1.0, 'fast': 1.0, 'i': 5.0, 'thinking': 1.0, 'enjoys': 1.0, 'so': 1.0, 'after': 1.0, 'money': 1.0, 'bought': 1.0, 'just': 2.0, 'college': 1.0, 'this': 2.0, 'few': 1.0, 'nursery': 1.0, 'comfortable': 1.0, 'swings': 1.0, 'using': 1.0, 'for': 2.0, 'my': 3.0, 'save': 1.0, 'been': 1.0, 'entertained': 1.0, 'pounds': 1.0, 'swing': 5.0, 's': 1.0, 'plug': 1.0, 'motion': 1.0, 'didn': 1.0, 'church': 1.0, 'making': 1.0, 'it': 1.0, 'battery': 1.0, 'really': 1.0, 'listed': 1.0, 'and': 4.0, 'one': 4.0, 'too': 1.0, 'beef': 1.0, 'us': 1.0, 'baby': 3.0, 'she': 2.0, 'spending': 1.0, 'fund': 1.0, 'complaint': 1.0, 'handle': 1.0, 'at': 2.0, 'is': 4.0, 'more': 1.0, 'always': 1.0, 'has': 1.0, 'limit': 1.0, 'gotten': 1.0, 'action': 1.0, 'in': 3.0, 'm': 1.0, 'do': 1.0, '16': 1.0, 'on': 1.0, 'pound': 2.0, 'motor': 2.0, 've': 1.0, 'got': 1.0, 'folks': 1.0, 'setting': 1.0, 'take': 1.0, 'swinging': 2.0, 'maximum': 1.0, 'set': 1.0, 'months': 1.0, 'get': 1.0, 'fisher': 1.0, 'the': 14.0, 'of': 1.0, 'be': 1.0, 'barely': 1.0, 'there': 1.0, 'bad': 1.0, 'good': 1.0}
Word element => {'back': 1.0, '112': 1.0, 'get': 1.0, 'of': 1.0, 'waste': 1.0, 'huge': 1.0, 'what': 1.0, 'happening': 1.0, 'nothing': 1.0, 'can': 1.0, 'money': 2.0, 'but': 1.0, 'running': 1.0, 'motor': 1.0, 'turned': 1.0, 'in': 1.0, 'save': 1.0, 'my': 2.0, 'sat': 1.0, 'hope': 1.0, 'just': 2.0, 'seemingly': 1.0, 'old': 1.0, 'noticed': 1.0, 'first': 1.0, 'month': 1.0, 'it': 9.0, 'this': 1.0, 'was': 5.0, 'elsewhere': 1.0, 'seat': 1.0, 'all': 1.0, 'daughter': 1.0, 'together': 2.0, 'your': 1.0, 'on': 2.0, '3': 1.0, 'put': 2.0, 'i': 7.0, 'opened': 1.0, 'then': 1.0, 'wouldn': 1.0, 'got': 1.0, 'didn': 1.0, 'figured': 1.0, 'swing': 1.0, 'excitedly': 1.0, 'testing': 1.0, 'cover': 1.0, 'that': 1.0, 'box': 1.0, 'a': 1.0, 't': 2.0, 'could': 1.0, 'and': 5.0, 'getting': 1.0, 'lights': 1.0, 'for': 1.0, 'fit': 1.0, 'properly': 1.0, 'thing': 1.0, 'today': 1.0, 'no': 1.0, 'big': 1.0, 'worked': 1.0, 'the': 7.0, 'deal': 1.0, 'up': 1.0, 'wash': 1.0, 'shrink': 1.0, 'after': 1.0, 'everything': 1.0, 'finally': 1.0, 'out': 1.0, 'settings': 1.0, 'look': 1.0, 'fine': 1.0, 'were': 1.0, 'swung': 1.0, 'well': 1.0}
Word element => {'make': 1.0, '100': 1.0, 'another': 1.0, 'buy': 1.0, 'recommend': 1.0, 'definitely': 1.0, 'generally': 1.0, 'done': 1.0, 'past': 1.0, 'sit': 1.0, 'down': 1.0, 'laid': 1.0, 'nor': 1.0, 'sleep': 1.0, 'rocked': 1.0, 'doesn': 2.0, 'days': 1.0, 'awesome': 1.0, 'than': 1.0, 'world': 1.0, 'end': 1.0, 'not': 1.0, 'while': 2.0, 'music': 1.0, 'his': 1.0, 'business': 1.0, 'deserves': 1.0, 'company': 1.0, 'easy': 1.0, 'sold': 1.0, 'if': 1.0, 'service': 1.0, 'customer': 1.0, 'kept': 1.0, 'stars': 1.0, '4': 1.0, 'would': 2.0, 'care': 1.0, 'like': 1.0, 'mins': 2.0, 'will': 4.0, 'anyone': 1.0, 'and': 9.0, 'housing': 2.0, 'out': 3.0, 'understand': 1.0, 'a': 5.0, 't': 4.0, 'fine': 1.0, 'take': 1.0, 'we': 4.0, 'went': 2.0, 'literally': 1.0, 'safe': 1.0, 'born': 1.0, 'in': 5.0, 'built': 1.0, 'be': 5.0, 'here': 1.0, 'up': 1.0, 'get': 1.0, 'months': 1.0, 'sometimes': 1.0, 'replaced': 1.0, 's': 1.0, 'heavily': 1.0, 'some': 1.0, 'spent': 1.0, 'of': 4.0, 'the': 14.0, 'many': 1.0, 'deal': 1.0, 'with': 3.0, 'him': 2.0, 'it': 13.0, 'this': 5.0, '10': 1.0, 'for': 5.0, 'he': 5.0, 'motor': 2.0, 'hours': 1.0, 'playing': 1.0, 'an': 1.0, 'other': 1.0, 'all': 2.0, 'heavy': 1.0, 'as': 1.0, 'to': 6.0, 'our': 1.0, 'running': 1.0, 'have': 2.0, '8': 2.0, 'use': 1.0, 'very': 2.0, 'review': 1.0, 'chatted': 1.0, 'day': 1.0, 'entertained': 1.0, 'swing': 3.0, 'didn': 1.0, 'even': 1.0, 'had': 2.0, 'disappointment': 1.0, 'one': 1.0, 'held': 1.0, 'teething': 1.0, 'periods': 1.0, '3': 1.0, 'today': 1.0, 'thing': 1.0, 'night': 2.0, 'you': 2.0, 'but': 1.0, 'is': 6.0, 'housework': 1.0, 'best': 1.0, 'product': 4.0, 'price': 1.0, 'inconvenient': 1.0, 'used': 3.0, 'since': 1.0, 'was': 1.0, 'fast': 1.0, 'slept': 1.0, 'well': 3.0, 'i': 4.0, 'online': 1.0, 'fisher': 1.0, 'time': 2.0, 'can': 2.0, 'so': 1.0, 'they': 1.0, 'want': 2.0, 'free': 1.0, 'worth': 1.0, 'almost': 1.0, 'now': 1.0, 'has': 6.0, 'next': 2.0, 'gave': 1.0, 'problems': 1.0, 'that': 4.0, 'rock': 1.0, 'been': 3.0, 'week': 1.0, '5': 2.0, 'star': 1.0, 'during': 1.0, 'though': 1.0, 'broken': 1.0, 'amount': 1.0, 'on': 1.0, 'also': 1.0, 'us': 1.0, 'fact': 1.0, 'just': 4.0, 'great': 1.0, 'my': 1.0, 'me': 2.0}
Word element => {'struggling': 1.0, 'could': 1.0, 'you': 1.0, 'till': 1.0, 'months': 1.0, 'few': 1.0, 'hear': 1.0, 'so': 1.0, '10': 1.0, 'baby': 1.0, 'a': 2.0, 'took': 1.0, 'i': 1.0, 'and': 1.0, 'smoothing': 1.0, 'grew': 1.0, 'is': 2.0, 'big': 1.0, 'son': 1.0, '2': 1.0, 'the': 3.0, 'plugs': 1.0, 'my': 1.0, 'music': 1.0, 'was': 1.0, 'its': 1.0, 'switch': 1.0, 'to': 2.0, 'quicker': 1.0, 'easy': 1.0, 'motor': 1.0, 'position': 1.0, 'love': 1.0, 'he': 1.0, 'this': 1.0, 'only': 2.0, 'it': 2.0, 'sway': 1.0, 'that': 2.0, 'in': 1.0, 'bad': 1.0, 'thing': 1.0, 'out': 1.0}
Word element => {'much': 1.0, 'you': 1.0, 'very': 1.0, 'day': 1.0, 'all': 1.0, '10': 1.0, 'kids': 1.0, 'we': 1.0, 'daycare': 1.0, 'and': 1.0, 'for': 1.0, 'our': 1.0, '2': 1.0, 'infants': 1.0, 'great': 1.0, 'r': 1.0, 'so': 1.0, 'this': 1.0, 'thank': 1.0, 'has': 1.0, 'life': 1.0, 'swing': 1.0, 'been': 1.0, 'a': 1.0, 'watch': 1.0, 'saver': 1.0}
Word element => {'anyone': 1.0, 'recommend': 1.0, 'would': 1.0, 'nice': 1.0, 'very': 1.0, 'still': 1.0, 'but': 1.0, 'on': 1.0, 'i': 1.0, 'old': 1.0, 'buy': 1.0, 'them': 1.0, 'don': 1.0, 'price': 1.0, 'we': 2.0, 'batteries': 1.0, 'swing': 2.0, 'power': 1.0, 'you': 1.0, 'fisher': 1.0, 'has': 1.0, 'better': 1.0, 'music': 1.0, '2nd': 1.0, 'd': 1.0, 'so': 1.0, 'and': 1.0, 'our': 1.0, 'cord': 1.0, 'is': 2.0, 'this': 3.0, 'have': 1.0, 'expensive': 1.0, 'both': 2.0, 'one': 1.0, 'liked': 1.0, 'love': 1.0, 'model': 1.0, 't': 1.0, 'the': 3.0, 'to': 2.0}
Word element => {'no': 1.0, 'in': 1.0, 'plug': 1.0, 'as': 2.0, 'more': 1.0, 't': 1.0, 'cute': 1.0, 'so': 1.0, 'is': 1.0, 'brand': 1.0, 'batteries': 1.0, 'swing': 2.0, 'of': 1.0, 'too': 1.0, 'when': 1.0, 'old': 1.0, 'i': 3.0, 'wasnt': 1.0, 'straight': 1.0, 'one': 2.0, 'model': 2.0, 'but': 1.0, 'doesn': 1.0, 'an': 1.0, 'this': 2.0, 'older': 1.0, 'it': 4.0, 'and': 3.0, 'scared': 1.0, 'my': 1.0, 'high': 1.0, 'went': 1.0, 'does': 1.0, 'even': 1.0, 'just': 1.0, 'broke': 1.0, 'about': 1.0, 'to': 1.0, 'had': 1.0, 'buying': 1.0, 'a': 1.0, 'new': 1.0}
Word element => {'w': 1.0, 'time': 1.0, 'have': 1.0, 'i': 2.0, 'bcz': 1.0, 'for': 1.0, 'most': 1.0, 'valuable': 1.0, 'sleep': 1.0, 'baby': 2.0, 'lines': 1.0, 'the': 1.0, 'my': 1.0, 'is': 1.0, 'item': 1.0, 'other': 1.0, 'play': 1.0, 'there': 1.0, 'watch': 1.0, 'pit': 1.0, 'to': 2.0, 'tv': 1.0, 'do': 1.0, 'me': 1.0, 'and': 2.0, 'toys': 1.0, 'it': 1.0, 'with': 1.0, 'this': 1.0, 'he': 1.0}
Word element => {'about': 1.0, 'don': 1.0, 'is': 1.0, 'mirror': 1.0, 't': 1.0, 'the': 2.0, 'my': 1.0, 'top': 1.0, 'swing': 2.0, 'there': 1.0, 'nothing': 1.0, 'like': 3.0, 'loves': 1.0, 'i': 3.0, 'on': 1.0, 'as': 1.0, 'son': 1.0, 'so': 1.0, 'this': 2.0, 'he': 1.0, 'can': 1.0, 'look': 1.0, 'himself': 1.0, 'at': 1.0, 'position': 1.0, 'setting': 1.0, '3': 1.0, 'well': 1.0}
Word element => {'thoughts': 1.0, 'second': 1.0, 'having': 1.0, 'bread': 1.0, 'sliced': 1.0, 'third': 1.0, 'past': 1.0, 'but': 2.0, 'music': 1.0, 'go': 1.0, 'ago': 1.0, 't': 1.0, 'a': 1.0, 'level': 1.0, 'adjust': 1.0, 'far': 1.0, 'two': 2.0, 'watching': 1.0, 'now': 2.0, 'stopping': 1.0, 'else': 1.0, 'everything': 2.0, 'for': 1.0, '10': 1.0, 'was': 2.0, 'its': 1.0, 'try': 1.0, 'bought': 1.0, 'every': 1.0, 'perfectly': 1.0, 'accordingly': 1.0, 'setting': 1.0, 'some': 1.0, 'purchased': 1.0, 'is': 1.0, 'at': 6.0, 'since': 1.0, 'causing': 1.0, 'when': 1.0, 'again': 1.0, 'just': 1.0, 'soothed': 1.0, 'and': 3.0, 'not': 1.0, 'easily': 1.0, 'problems': 1.0, 'begins': 1.0, 'won': 1.0, 'i': 6.0, 'well': 1.0, 'on': 1.0, 'put': 1.0, 'without': 1.0, 'asleep': 1.0, 'functioning': 1.0, 'would': 2.0, 'weeks': 2.0, 'properly': 1.0, 'part': 1.0, 'working': 3.0, 'first': 3.0, 'this': 2.0, 'already': 1.0, 'thought': 1.0, 'it': 8.0, 'she': 1.0, 'swing': 1.0, 'minus': 1.0, 'automatically': 1.0, 'main': 1.0, 'time': 1.0, 'speed': 2.0, 'so': 2.0, 'to': 1.0, 'falls': 1.0, 'as': 3.0, 'max': 1.0, 'minutes': 1.0, 'stops': 1.0, 'reduce': 1.0, 'degradation': 1.0, 'expect': 1.0, 'maybe': 1.0, 'after': 3.0, 'product': 1.0, 'year': 1.0, 'or': 1.0, 'me': 1.0, 'my': 1.0, 'daughter': 1.0, 'loves': 1.0, 'looking': 1.0, 'herself': 1.0, 'm': 1.0, 'in': 1.0, 'mirror': 1.0, 'best': 1.0, 'toys': 1.0, 'array': 1.0, 'the': 8.0, 'of': 1.0, 'her': 1.0, 'thing': 1.0}
Word element => {'be': 1.0, 'will': 1.0, 'you': 1.0, 'offers': 1.0, 'whistles': 1.0, 'bells': 1.0, 'mother': 1.0, 'his': 1.0, 'lower': 1.0, 'products': 1.0, 'that': 1.0, 'loves': 1.0, 'grandson': 1.0, 'swing': 1.0, 'my': 2.0, 'and': 4.0, 'after': 1.0, 'childcare': 1.0, 'wife': 1.0, 'profession': 1.0, 'their': 1.0, 'price': 1.0, 'm': 2.0, 'this': 1.0, 'kids': 1.0, 'disappointed': 1.0, 'purchasing': 1.0, 'less': 1.0, 'nine': 1.0, 'marginal': 1.0, 'proud': 1.0, 'a': 4.0, 'no': 1.0, 'quasi': 1.0, 'decided': 1.0, 'not': 2.0, 'cost': 1.0, 'appreciates': 1.0, 'new': 1.0, 'accurate': 1.0, 'grandfather': 1.0, 'or': 1.0, 'well': 1.0, 'has': 1.0, 'fisher': 1.0, 'poor': 1.0, 'of': 2.0, 'i': 4.0, 'become': 1.0, 'grand': 1.0, 'further': 1.0, 'many': 1.0, 'than': 2.0, 'mom': 1.0, 'positive': 1.0, 'descriptions': 1.0, 'graco': 2.0, 'experiences': 1.0, 'at': 2.0, 'with': 1.0, 'the': 5.0, 'brand': 2.0, 'items': 1.0, 'lack': 1.0, 'folks': 1.0, 'for': 1.0, 'product': 2.0, 'quality': 1.0, 'all': 1.0, 'as': 2.0, 'to': 1.0, 'look': 2.0}
Word element => {'everything': 1.0, 'pattern': 1.0, 'fun': 1.0, 'mouse': 1.0, 'quiet': 1.0, 'is': 1.0, 'and': 2.0, 'in': 1.0, 'to': 1.0, 'swing': 1.0, 'little': 1.0, 'my': 2.0, 'cute': 1.0, 'gift': 1.0, 'about': 1.0, 'colors': 1.0, 'baby': 1.0, 'another': 1.0, 'as': 4.0, 'loves': 1.0, 'a': 2.0, 'well': 1.0, 'one': 1.0, 'love': 1.0, 'for': 1.0, 'which': 1.0, 'received': 1.0, 'girl': 1.0, 'took': 1.0, 'i': 2.0, 'nap': 1.0, 'we': 1.0, 'product': 1.0, 'louder': 1.0, 'immediately': 1.0, 'shower': 1.0, 'this': 3.0, 'it': 2.0, 'back': 1.0}
Word element => {'say': 1.0, 'things': 1.0, 'good': 1.0, 'but': 1.0, 'nothing': 1.0, 'have': 1.0, 'one': 1.0, 'used': 1.0, 'every': 1.0, 'they': 1.0, 'has': 1.0, 'and': 2.0, 'appreciative': 1.0, 'need': 1.0, 'day': 2.0, 'to': 3.0, 'was': 3.0, 'of': 1.0, 'up': 1.0, 'set': 1.0, 'been': 1.0, 'swing': 1.0, 'were': 1.0, 'that': 1.0, 'the': 1.0, 'care': 1.0, 'dire': 1.0, 'it': 1.0, 'donated': 1.0, 'a': 1.0, 'easy': 1.0, 'church': 1.0, 'in': 1.0}
Word element => {'crazy': 1.0, 'work': 1.0, 'but': 3.0, 'people': 1.0, 'is': 2.0, 'really': 1.0, 'loud': 1.0, 'it': 6.0, 'not': 1.0, 'and': 1.0, 'beginning': 1.0, 'now': 3.0, 'had': 1.0, 'to': 4.0, 'the': 5.0, 'great': 1.0, 't': 1.0, 'swing': 1.0, 'little': 1.0, 'worked': 1.0, 'know': 1.0, 'like': 2.0, 'sleeping': 1.0, 'wish': 1.0, 'legs': 1.0, 'creeking': 2.0, 'for': 1.0, 'months': 1.0, 'one': 1.0, 'said': 1.0, 'in': 1.0, 'seems': 2.0, 'i': 3.0, 'don': 1.0, 'how': 2.0, 'make': 1.0, 'stop': 1.0, 'keep': 2.0, 'repetitive': 1.0, '5': 1.0, 'noise': 1.0, 'nothing': 1.0, 'bad': 1.0, 'fix': 1.0, 'some': 1.0, 'knew': 1.0, 'with': 1.0, 'adjusting': 1.0}
Word element => {'scheme': 1.0, 'thing': 1.0, 'annoying': 1.0, 'color': 1.0, 'love': 1.0, 'swing': 2.0, 'that': 2.0, 'squeakiness': 1.0, 'fairly': 1.0, 'of': 2.0, 'great': 1.0, 'the': 6.0, 'i': 2.0, 'much': 1.0, 'design': 1.0, 'it': 1.0, 'only': 1.0, 'as': 2.0, 'must': 1.0, 'say': 1.0, 'draws': 1.0, 'me': 1.0, 'back': 1.0, 'is': 1.0, 'gets': 1.0}
Word element => {'house': 1.0, 'her': 1.0, 'mobile': 1.0, 'play': 1.0, 'other': 1.0, 'to': 1.0, 'likes': 1.0, 'fisher': 1.0, 'has': 1.0, 'this': 1.0, 'he': 1.0, 'with': 1.0, 'swing': 2.0, 'mother': 1.0, 'the': 3.0, 'my': 3.0, 'enjoys': 1.0, 'one': 1.0, 'is': 1.0, 'second': 1.0, 'baby': 1.0, 'price': 1.0, 'in': 1.0, 'law': 1.0, 'at': 1.0}
Word element => {'only': 1.0, 'battery': 1.0, 'fisher': 1.0, 'few': 1.0, 'off': 1.0, 'run': 1.0, 'boring': 1.0, 'quite': 2.0, 'girl': 1.0, 'yes': 1.0, 'cute': 1.0, 'bright': 1.0, 'are': 3.0, 'colors': 2.0, 'either': 1.0, 'of': 1.0, 'goes': 1.0, 'have': 2.0, 'didn': 2.0, 'batteries': 1.0, 'also': 2.0, 'swings': 4.0, 'some': 2.0, 'her': 1.0, 'week': 1.0, 'plugged': 1.0, 'boyish': 1.0, 'and': 5.0, 'take': 1.0, '5': 1.0, 'weeks': 1.0, 'now': 1.0, 'all': 1.0, 'to': 2.0, 'was': 2.0, 'more': 1.0, 'around': 1.0, 'is': 5.0, 'old': 2.0, 'my': 2.0, 'that': 2.0, 'loves': 2.0, 'this': 1.0, 'she': 2.0, 'it': 3.0, 'swing': 2.0, 'stationary': 1.0, 'when': 1.0, 'daughter': 1.0, 'be': 1.0, 'multiple': 1.0, 'in': 2.0, 'were': 2.0, 'watch': 1.0, 'can': 1.0, 'but': 1.0, 'music': 2.0, 'the': 10.0, 'control': 1.0, 'bought': 1.0, 'mobile': 3.0, 'price': 1.0, 'mirror': 1.0, 'i': 3.0, 'feature': 1.0, 'very': 2.0, '1': 1.0, 'nice': 2.0, 'like': 1.0, 'which': 1.0, 'has': 1.0, 'animals': 1.0, 'speeds': 1.0, 'so': 1.0, 'far': 1.0, 'other': 2.0, 'naps': 1.0, 'slowest': 1.0, 'soothing': 1.0, 'speed': 1.0, 'plenty': 1.0, 'love': 1.0, 'for': 1.0, 'baby': 1.0, 'or': 2.0, 'volume': 1.0, 't': 2.0, 'a': 3.0}
Word element => {'mobile': 1.0, 'in': 1.0, 'animals': 1.0, 'and': 1.0, 'my': 1.0, 'fact': 1.0, 'to': 2.0, 'she': 1.0, 'easy': 1.0, 'is': 1.0, 'up': 1.0, 'set': 1.0, 'i': 1.0, 'buy': 1.0, 'it': 2.0, 'this': 1.0, 'ones': 1.0, 'the': 3.0, 't': 1.0, 'tracks': 1.0, 'have': 1.0, 'little': 1.0, 'swing': 1.0, 'batteries': 1.0, 'love': 1.0, 'for': 1.0, 'attention': 1.0, 'lastly': 1.0, 's': 1.0, 'catch': 1.0, 'bright': 1.0, 'don': 1.0, 'colors': 1.0}
Word element => {'but': 1.0, 'so': 2.0, 'looks': 1.0, 'we': 2.0, 'swing': 1.0, 'the': 1.0, 'do': 1.0, 'and': 2.0, 'far': 1.0, 'times': 1.0, 'grandson': 1.0, 'loves': 1.0, 'have': 1.0, 'old': 1.0, 'issues': 1.0, 'month': 1.0, 'only': 1.0, 'it': 2.0, 'no': 1.0, 'two': 1.0, 'to': 1.0, 'was': 1.0, 'easy': 1.0, 'assemble': 1.0, 'cute': 1.0, 'used': 1.0, 'a': 1.0, 'few': 1.0}
Word element => {'broke': 1.0, 'for': 4.0, 'it': 11.0, 'thought': 1.0, 'soothe': 2.0, 'much': 2.0, 'pictures': 1.0, 'put': 1.0, 'only': 1.0, 'amazing': 1.0, 'plus': 1.0, 'working': 1.0, 'rock': 1.0, 'been': 1.0, 'than': 2.0, 'having': 3.0, 'forgot': 1.0, 'there': 1.0, 'instead': 1.0, 'took': 1.0, 'clean': 1.0, 'when': 4.0, 'cook': 1.0, 'getting': 1.0, 'beautiful': 1.0, 'bring': 1.0, 'stomach': 1.0, 'would': 1.0, 'either': 1.0, 'before': 1.0, 'husband': 1.0, 'are': 4.0, 'my': 1.0, 'me': 3.0, 'of': 4.0, 'the': 21.0, 'definitely': 1.0, 'incredibly': 1.0, 'must': 1.0, 'have': 4.0, 'godsend': 1.0, 'just': 2.0, 'and': 13.0, 'trip': 1.0, 'waited': 1.0, 'toys': 1.0, 'appreciate': 1.0, 'baby': 3.0, 'high': 1.0, 'to': 10.0, 'fixed': 1.0, 'reviews': 1.0, 'we': 10.0, 'take': 1.0, 'bounce': 1.0, 'almost': 1.0, 'tone': 1.0, 'really': 2.0, 'quiet': 2.0, 'at': 1.0, 'in': 2.0, 's': 5.0, 'doesn': 1.0, 'm': 1.0, 'said': 1.0, 'swing': 10.0, 'motor': 3.0, 'him': 3.0, 'he': 2.0, 'love': 2.0, 'yet': 1.0, 'lot': 1.0, 'happy': 1.0, 'too': 2.0, 'pattern': 1.0, 'with': 6.0, 'allows': 1.0, 'this': 10.0, 'time': 1.0, 'so': 3.0, 'is': 9.0, 'can': 2.0, 'house': 1.0, 'a': 13.0, 'simple': 1.0, 'i': 5.0, 'nature': 1.0, 'fast': 2.0, 'weeks': 1.0, 'true': 1.0, '5': 1.0, 'one': 3.0, 'absolutely': 1.0, 'out': 1.0, 'but': 1.0, 'enjoys': 1.0, 'our': 4.0, 'item': 1.0, 'luck': 1.0, 'all': 2.0, 'an': 1.0, 'loud': 1.0, 'sleep': 3.0, 'pitched': 1.0, 'that': 3.0, 'young': 1.0, 'times': 1.0, 'fall': 1.0, 'loves': 1.0, 'impressed': 1.0, 'cuter': 1.0, 'product': 1.0, 'year': 1.0, 'such': 2.0, 'price': 2.0, 'mobile': 1.0, 'little': 2.0, 'very': 2.0, 'slow': 1.0, 'music': 1.0, 'person': 1.0, 'speed': 1.0, 'play': 1.0, 'on': 5.0, 'read': 1.0, 'update': 1.0, 'here': 1.0, 'colors': 1.0, 'bright': 1.0, 'them': 2.0, 'has': 1.0, 'removable': 1.0, 'cord': 1.0, 'tray': 1.0, 'sad': 1.0, 'extension': 1.0, 'feature': 1.0, 'or': 1.0, 'don': 1.0, 'still': 1.0, 'service': 1.0, 't': 4.0, 'also': 1.0, 'us': 3.0, 'easy': 1.0, 're': 2.0, 'know': 1.0, 'break': 2.0, 'down': 1.0, 've': 1.0, 'set': 1.0, 'up': 2.0, 'as': 3.0, 'less': 1.0, 'recently': 1.0, 'surprisingly': 1.0, 'sounds': 1.0, 'wasn': 1.0, 'hassle': 1.0, 'not': 3.0, 'different': 3.0, 'speeds': 1.0, 'trouble': 1.0, 'able': 2.0, 'however': 1.0, 'get': 2.0, 'if': 2.0, 'great': 3.0, 'none': 1.0, 'especially': 1.0, 'use': 1.0, 'want': 1.0, 'nearly': 1.0, 'most': 1.0, 'space': 1.0, 'comes': 1.0, 'which': 2.0, 'anywhere': 1.0, 'after': 1.0, 'though': 1.0, 'now': 1.0, 'problem': 2.0, '100': 1.0, 'satisfied': 1.0, 'updated': 1.0, 'friend': 1.0, 'since': 1.0, 'had': 2.0, 'annoying': 1.0, 'fisher': 2.0, 'customer': 1.0, 'were': 2.0, 'help': 1.0, 'they': 2.0, 'stock': 1.0, 'impression': 1.0, 'motors': 1.0, 'gave': 1.0, 'common': 1.0, 'go': 1.0}
Word element => {'much': 1.0, 'enjoy': 1.0, 'i': 3.0, 'own': 1.0, 'my': 2.0, 'to': 1.0, 'similar': 1.0, 'and': 1.0, 'as': 2.0, 'son': 2.0, 'having': 1.0, 'one': 2.0, 'for': 2.0, 'll': 1.0, 'friends': 1.0, 'bought': 2.0, 'twins': 1.0, 'swear': 1.0, 'by': 1.0, 'hope': 1.0, 'this': 2.0, 'it': 2.0, 'a': 1.0, 'that': 1.0, 's': 1.0, 'they': 1.0}
Word element => {'gift': 1.0, 'shower': 1.0, 'baby': 1.0, 'a': 1.0, 'to': 2.0, 'this': 1.0, 'add': 1.0, 'is': 1.0, 'packaged': 1.0, 'it': 1.0, 's': 1.0, 'perfect': 1.0, 'nicely': 1.0, 'very': 1.0, 'and': 1.0, 'looks': 1.0, 'cute': 1.0}
Word element => {'good': 1.0, 'put': 1.0, 'will': 1.0, 'sure': 1.0, 'am': 1.0, 'speaks': 1.0, 'the': 1.0, 'use': 1.0, 'feel': 1.0, 'so': 1.0, 'price': 1.0, 'baby': 1.0, 's': 1.0, 'not': 1.0, 'and': 4.0, 'stores': 1.0, 'in': 2.0, 'to': 1.0, 'was': 3.0, 'had': 1.0, 'for': 3.0, 'fisher': 1.0, 'set': 1.0, 'our': 1.0, 'shower': 1.0, 'this': 2.0, 'it': 3.0, 'i': 4.0, 'exactly': 1.0, 'seen': 1.0, 'looking': 1.0, 'gift': 1.0, 'is': 2.0, 'gradson': 1.0, 'included': 1.0, 'itself': 1.0, 'name': 1.0, 'due': 1.0, 'anytime': 1.0, 'what': 1.0, 'his': 2.0}
Word element => {'brother': 1.0, 'boys': 1.0, 'loves': 1.0, 'good': 1.0, 'music': 1.0, 'girls': 1.0, 'easy': 1.0, 'work': 1.0, 'but': 1.0, 'so': 1.0, 'my': 1.0, 'and': 4.0, 'to': 1.0, 'granddaughter': 1.0, 'not': 1.0, 'her': 1.0, 'does': 1.0, 'i': 1.0, 'for': 1.0, 'love': 1.0, 'this': 1.0, 'it': 2.0, 'sounds': 1.0, 'remove': 1.0, 'a': 1.0, 'twin': 1.0, 'swing': 2.0, 'little': 1.0, 'great': 1.0, 'the': 1.0, 'heavy': 1.0, 'is': 1.0, 'too': 2.0, 'fast': 1.0}
Word element => {'recommend': 1.0, 'definitely': 1.0, 'would': 1.0, 'noise': 1.0, 'rubbing': 1.0, 'slight': 1.0, 'or': 1.0, 'that': 1.0, 'swing': 1.0, 'so': 1.0, 'however': 1.0, 'there': 1.0, 'is': 3.0, 'sounds': 1.0, 'adjustable': 1.0, 'music': 2.0, 'nature': 1.0, 'be': 1.0, 'to': 1.0, 'works': 1.0, 'can': 1.0, 'soft': 1.0, 'enough': 1.0, 'soothe': 1.0, 'baby': 1.0, 'rocking': 1.0, 'gentle': 1.0, 'well': 1.0, 'a': 1.0}
Word element => {'disappointed': 1.0, 'problem': 1.0, 'still': 1.0, 'under': 1.0, 'blanket': 1.0, 'so': 1.0, 'enough': 1.0, 'to': 2.0, 'head': 2.0, 'bruise': 1.0, 'of': 1.0, 'notch': 1.0, 'cushion': 1.0, 'sit': 1.0, 'back': 1.0, 'was': 1.0, 'doesn': 1.0, 'i': 5.0, 'whole': 1.0, 'not': 1.0, 'in': 1.0, 'swing': 1.0, 'lets': 1.0, 'loved': 1.0, 'this': 2.0, 'surprised': 1.0, 'thick': 1.0, 'noticed': 1.0, 'wiggles': 1.0, 'padding': 1.0, 'more': 1.0, 'around': 1.0, 'is': 1.0, 'my': 1.0, 'the': 6.0, 'a': 4.0, 't': 1.0, 'small': 1.0, 'until': 1.0, 'put': 1.0, 'on': 1.0, 'm': 1.0, 'protect': 1.0, 'his': 1.0, 'fix': 1.0, 'from': 1.0, 'babies': 1.0, 'that': 1.0, 'happened': 1.0, 'when': 1.0, 'you': 1.0, 'he': 1.0, 'adjust': 1.0, 'has': 1.0, 'but': 2.0, 'sitting': 1.0, 've': 1.0, 'position': 1.0, 'lot': 2.0, 'bigger': 1.0, 'gotten': 1.0, 'and': 1.0}
Word element => {'recommend': 1.0, '100x': 1.0, 'around': 1.0, 'whether': 1.0, 'head': 1.0, 'nothing': 1.0, 'out': 2.0, 'absolutely': 1.0, 'assembly': 1.0, 'than': 1.0, 'within': 1.0, 'multiple': 1.0, 'button': 1.0, 'in': 6.0, 'did': 1.0, 'makes': 1.0, 'mommy': 1.0, 'accomplish': 1.0, 'grandpa': 1.0, 'product': 1.0, 'enough': 1.0, 'lucky': 1.0, 'their': 1.0, 'parts': 1.0, 'were': 1.0, 'list': 1.0, 'christmas': 2.0, 'swings': 2.0, 'this': 3.0, 'rocking': 1.0, 'cash': 1.0, 'had': 5.0, 'completely': 2.0, 'thankfully': 1.0, 'sometimes': 1.0, 'played': 1.0, 'some': 1.0, 'come': 1.0, 'the': 13.0, 'when': 1.0, 'about': 2.0, 'play': 2.0, 'until': 1.0, 'off': 1.0, 'detachable': 2.0, 'birds': 1.0, 'mentioned': 1.0, '20': 2.0, 'because': 1.0, 'screwdriver': 1.0, 'easily': 1.0, 'extra': 1.0, 'another': 1.0, 'was': 4.0, 'grandma': 1.0, 'most': 1.0, 'hate': 1.0, 'on': 4.0, 'reviews': 1.0, 'we': 5.0, 'swinging': 3.0, 'moving': 1.0, 'seems': 1.0, 'weeks': 1.0, 'receive': 1.0, 'summer': 1.0, 'either': 1.0, 'would': 1.0, 'mixed': 1.0, 'heard': 1.0, 'new': 2.0, 'chirping': 1.0, 'but': 3.0, '2': 2.0, 'already': 2.0, 'decent': 1.0, 'box': 1.0, 'i': 5.0, 'well': 1.0, 'continue': 1.0, 'co': 1.0, 'second': 5.0, 'from': 4.0, 'babies': 1.0, 'more': 1.0, 'loves': 1.0, 'lasted': 1.0, 'his': 1.0, 'lot': 1.0, 'while': 1.0, 've': 4.0, 'definitely': 2.0, 'reattaches': 1.0, 'bought': 1.0, 'better': 1.0, 'swing': 13.0, 'hand': 4.0, 'our': 4.0, 'to': 13.0, 'daughter': 3.0, 'required': 1.0, 'phillips': 1.0, 'enjoy': 2.0, 'still': 1.0, 'with': 3.0, 'allows': 1.0, 'only': 3.0, 'being': 2.0, 'music': 5.0, 'recliner': 2.0, 't': 2.0, 'daddy': 1.0, 'far': 1.0, 'worker': 1.0, 'for': 5.0, 'both': 1.0, 'shell': 1.0, 'complete': 1.0, 'foot': 1.0, 'great': 1.0, 'her': 3.0, 'toys': 1.0, 'has': 1.0, 'fallen': 1.0, 'asleep': 1.0, 'made': 1.0, 'three': 1.0, 'won': 1.0, 'ago': 1.0, 'two': 1.0, 'upset': 1.0, 'days': 2.0, 'really': 1.0, 'easy': 2.0, 'multi': 1.0, 'ability': 1.0, 'task': 1.0, 'what': 1.0, 'fact': 1.0, 'hour': 1.0, 'my': 2.0, 'me': 2.0, 'assembling': 1.0, 'baby': 2.0, 'rocker': 3.0, 'she': 1.0, 'which': 2.0, 'goodies': 1.0, 'of': 3.0, 'even': 1.0, 'satisfied': 1.0, 'forest': 1.0, 'is': 6.0, 'carry': 1.0, 'ol': 1.0, 'feature': 1.0, 'or': 2.0, 'able': 1.0, 'weak': 1.0, 'you': 2.0, 'night': 1.0, 'minutes': 1.0, 'control': 1.0, 'and': 11.0, 'just': 1.0, 'playing': 1.0, 'an': 1.0, 'other': 1.0, 'own': 1.0, 'it': 8.0, 'be': 1.0, 'nature': 1.0, 'belly': 1.0, 'by': 1.0, 'after': 1.0, 'order': 1.0, '4': 1.0, 'a': 10.0, 'nap': 1.0, 'lullabies': 1.0, 'there': 1.0, 'sitting': 1.0, 'also': 1.0, 'want': 1.0, 'reminded': 1.0, 'd': 1.0, 'hear': 1.0, 'shut': 1.0, 'as': 2.0, 'speaker': 1.0, 'didn': 1.0, 'featured': 1.0, 'sound': 1.0, 'any': 1.0, 'went': 1.0, 'been': 1.0, '75': 1.0, 'sounds': 1.0, 'like': 1.0, 'so': 1.0}
Word element => {'like': 1.0, 'bran': 1.0, 'at': 2.0, 'months': 1.0, '5': 1.0, 'a': 2.0, 's': 1.0, 'attention': 1.0, 'her': 1.0, 'call': 1.0, 'store': 1.0, 'she': 2.0, 'any': 1.0, 'price': 1.0, 'colors': 1.0, 'baby': 3.0, 'its': 3.0, 'new': 1.0, 'especially': 1.0, 'moves': 1.0, 'just': 2.0, 'perfect': 2.0, 'thing': 1.0, 'all': 1.0, 'much': 1.0, 'when': 1.0, 'so': 1.0, 'toys': 1.0, 'my': 2.0, 'the': 1.0, 'good': 1.0, 'loves': 1.0, 'up': 1.0, 'omg': 1.0, 'starts': 1.0, 'and': 5.0, 'adores': 1.0, 'singing': 1.0, 'for': 2.0, 'this': 1.0, 'it': 1.0}
Word element => {'without': 1.0, 'done': 1.0, 'know': 1.0, 'perfect': 1.0, 'highly': 1.0, 'this': 4.0, 'still': 1.0, 'on': 2.0, 'blanket': 1.0, 'knees': 1.0, 'that': 1.0, 'highest': 1.0, 'have': 3.0, 'them': 1.0, 'has': 1.0, 'lower': 1.0, 'setting': 2.0, 'grandaughter': 3.0, 'purchased': 3.0, 'bent': 1.0, 'recommend': 2.0, 'keep': 1.0, 'underneath': 2.0, 'another': 1.0, 'my': 4.0, 'may': 1.0, 'purchase': 1.0, 'outgrown': 1.0, 'what': 1.0, 'when': 1.0, 'folded': 1.0, 'unless': 1.0, 'gram': 1.0, 'one': 4.0, 'mobile': 1.0, 'for': 4.0, 'love': 1.0, 'daughter': 1.0, 'are': 3.0, 'first': 2.0, 'nicely': 1.0, 'already': 1.0, 'it': 3.0, 'higher': 1.0, 'fisher': 2.0, 'two': 1.0, 'luv': 2.0, 's': 4.0, 'a': 5.0, 'we': 1.0, 't': 1.0, 'as': 3.0, 'lowest': 1.0, 'but': 2.0, 'house': 2.0, 'than': 1.0, 'zoo': 2.0, 'products': 1.0, 'price': 2.0, 'different': 2.0, 'jumper': 1.0, 'and': 3.0, 'at': 3.0, 'is': 2.0, 'pillow': 2.0, 'jumperoo': 4.0, 'so': 1.0, 'time': 1.0, 'well': 1.0, 'i': 7.0, 'feet': 1.0, 'would': 3.0, 'settings': 1.0, 'touch': 1.0, 'placed': 1.0, 'just': 1.0, 'purchases': 1.0, 'christmas': 1.0, 'u': 2.0, 'her': 3.0, 'use': 3.0, 'their': 1.0, 'the': 6.0, 'longer': 1.0, 'or': 1.0, 'worth': 1.0, 'sizes': 1.0, 'snugabunny': 1.0, 'swing': 1.0, 'to': 4.0, 'bassinet': 1.0, 'much': 1.0, 'playmat': 1.0, 'with': 1.0, 'no': 1.0, 'you': 3.0, 'complaints': 1.0, 'gives': 1.0, 'they': 1.0, 'which': 1.0, 'plan': 1.0, 'made': 1.0, 'don': 1.0}
Word element => {'setup': 1.0, 'all': 1.0, 'final': 1.0, 'doing': 1.0, 'decided': 1.0, 'reviews': 1.0, 'reading': 1.0, 'upon': 1.0, 'base': 1.0, 'into': 1.0, 'other': 1.0, 'we': 1.0, 'fit': 1.0, 'did': 1.0, 'legs': 1.0, 'just': 1.0, 'not': 2.0, 'vertical': 1.0, 'after': 1.0, 'correctly': 1.0, 'jumperoo': 1.0, 'the': 6.0, 'experience': 1.0, 'frustrating': 1.0, 'were': 1.0, 'unit': 1.0, 'it': 1.0, 'unable': 1.0, 'to': 3.0, 'place': 1.0, 'poor': 1.0, 'step': 1.0, 'i': 1.0, 'retun': 1.0, 'in': 1.0, 'getting': 1.0, 'and': 1.0, 'do': 1.0, 'snap': 1.0, 'like': 1.0, 'quality': 1.0}
Word element => {'outgrowes': 1.0, 'when': 1.0, 'xmas': 1.0, 'alexander': 1.0, 'pony': 1.0, 'rockin': 1.0, 'flyer': 1.0, 'purchased': 1.0, 'must': 1.0, 'trampoline': 1.0, 'have': 2.0, 'a': 1.0, 'radio': 1.0, 'we': 1.0, 'from': 1.0, 'get': 1.0, 'little': 1.0, 'your': 1.0, 'so': 2.0, 'will': 1.0, 'hour': 1.0, 'an': 1.0, 'me': 1.0, 'was': 1.0, 'almost': 1.0, 'rainforest': 1.0, 'loves': 3.0, '10': 1.0, 'son': 2.0, 'months': 1.0, 'decided': 1.0, 'one': 2.0, 'i': 2.0, 'because': 2.0, 'or': 1.0, 'worth': 2.0, 'cute': 1.0, 'for': 1.0, 'struggled': 1.0, 'has': 1.0, 'well': 2.0, 'between': 1.0, 'chores': 1.0, 'getting': 1.0, 'it': 6.0, 'this': 5.0, 'he': 2.0, 'with': 1.0, 'even': 1.0, 'jump': 2.0, 'is': 3.0, '00': 1.0, 'more': 1.0, 'jumperoo': 2.0, 'the': 7.0, 'though': 1.0, 'do': 1.0, 'buys': 1.0, 'much': 2.0, 'fun': 1.0, 'best': 1.0, 'mirror': 1.0, 'design': 1.0, 'and': 7.0, 'play': 1.0, 'my': 3.0, 'doesnt': 1.0, 'toys': 1.0, 'favorite': 1.0, 'but': 1.0, 'music': 1.0, 'newer': 1.0, 'thing': 1.0, 'to': 3.0, 'all': 1.0, 'made': 1.0, 'of': 2.0}
Word element => {'unsure': 1.0, 'parents': 1.0, 'any': 1.0, 'it': 3.0, 'this': 2.0, 'he': 3.0, 'with': 1.0, 'and': 3.0, '1': 1.0, 'almost': 1.0, 'or': 1.0, 'old': 1.0, 'purchased': 1.0, 'months': 1.0, 'christmas': 1.0, 'uses': 1.0, 'i': 1.0, '4': 1.0, 'for': 3.0, 'entertains': 1.0, 'now': 1.0, 'is': 1.0, 'still': 1.0, 'son': 1.0, 'my': 1.0, 'when': 1.0, 'who': 1.0, 'at': 1.0, 'grown': 1.0, 'him': 3.0, 'well': 1.0, 'we': 2.0, 's': 1.0, 'a': 1.0, 'will': 1.0, 'stay': 1.0, 'in': 1.0, 'there': 1.0, 'while': 2.0, 'contains': 1.0, 'are': 2.0, 'making': 1.0, 'quite': 1.0, 'vacuuming': 1.0, 'would': 1.0, 'dinner': 1.0, 'something': 1.0, 'that': 1.0, 'like': 1.0, 'was': 1.0, 'recommend': 1.0}
Word element => {'alot': 1.0, 'is': 1.0, 'which': 1.0, 'moves': 1.0, 'whenever': 1.0, 'lights': 1.0, 'flashing': 1.0, 'music': 1.0, 'playing': 1.0, 'of': 1.0, 'keeps': 1.0, 'bought': 1.0, 'enough': 1.0, 'month': 1.0, 'can': 1.0, 'absolutely': 1.0, 'him': 1.0, '4': 1.0, 'for': 2.0, 'he': 3.0, 'christmas': 1.0, 'it': 3.0, 'this': 1.0, 'grandson': 1.0, 't': 1.0, 'loves': 1.0, 'my': 1.0, 'i': 1.0, 'old': 1.0, 'and': 1.0, 'get': 1.0, 'entertained': 1.0, 'by': 1.0}
Word element => {'hyper': 1.0, 'hes': 1.0, 'get': 1.0, 'way': 1.0, 'yet': 1.0, 'not': 1.0, 'hard': 1.0, 'things': 2.0, 'activities': 1.0, 'of': 2.0, 'are': 1.0, 'there': 1.0, 'super': 1.0, 'jumperoo': 1.0, 'the': 4.0, 'for': 2.0, 'lights': 1.0, 'jumps': 3.0, 'sounds': 1.0, 'laughs': 1.0, 'months': 2.0, 'put': 1.0, 'on': 1.0, '3': 1.0, 'is': 3.0, 'as': 2.0, 'to': 9.0, 'excited': 1.0, 'spot': 1.0, 'when': 1.0, 'thanks': 1.0, 'you': 1.0, 'so': 3.0, 'start': 2.0, 'my': 2.0, 'screams': 1.0, 'little': 2.0, 'anyways': 1.0, 'but': 2.0, 'just': 3.0, 'done': 1.0, 'wait': 1.0, 'only': 1.0, 'do': 1.0, 'much': 1.0, 'it': 5.0, 'this': 3.0, 'stage': 1.0, 'he': 4.0, 'have': 1.0, 'pillows': 1.0, 'thing': 1.0, 'that': 1.0, 'loves': 2.0, 'at': 3.0, 'using': 1.0, 'longer': 1.0, 'stand': 1.0, 'favorite': 1.0, 's': 2.0, 'we': 1.0, 'could': 1.0, 'a': 2.0, 'loved': 1.0, 'soon': 1.0, 'starting': 1.0, 'tall': 1.0, 'and': 7.0, 'awesome': 1.0, 'his': 2.0, '4': 1.0, 'i': 2.0, 'lots': 2.0, 'touch': 2.0, 'jump': 1.0, 'old': 1.0, 'turn': 1.0, 'in': 2.0, 'holding': 1.0, 'gets': 1.0, 'son': 2.0, 'under': 1.0, 'feet': 1.0, 'putting': 2.0, 'him': 4.0, 'be': 1.0}
Word element => {'price': 1.0, 'fisher': 1.0, 'you': 1.0, 'thank': 1.0, 'mom': 1.0, 'bouncing': 1.0, '1hr': 1.0, '45min': 1.0, 'in': 1.0, 'playing': 1.0, 'that': 1.0, 'thing': 1.0, 'housework': 1.0, 'the': 2.0, 'entertained': 1.0, 'to': 2.0, 'turned': 1.0, 'just': 1.0, 'for': 2.0, 'months': 1.0, 'stay': 1.0, 'toys': 1.0, 'who': 1.0, 'grandson': 1.0, 'loves': 1.0, 'my': 1.0, 'allows': 1.0, 'bought': 1.0, 'six': 1.0, 'i': 1.0, 'bounce': 1.0, 'do': 1.0, 'and': 2.0, 'absolutely': 1.0, 'only': 1.0, 'with': 1.0, 'first': 1.0, 'this': 2.0, 'he': 3.0, 'it': 1.0, 'will': 2.0, 'tigger': 1.0, 'is': 2.0, 'like': 1.0, 'easily': 1.0}
Word element => {'months': 1.0, '4': 1.0, 'enjoyed': 1.0, 'up': 1.0, 'himself': 1.0, 'hold': 1.0, 'able': 1.0, 'or': 1.0, 'taller': 1.0, 'flopping': 1.0, 'get': 2.0, 'interesting': 1.0, 'jumper': 1.0, 'exercise': 1.0, 'energy': 1.0, 'adjustable': 1.0, 'from': 1.0, 'with': 1.0, 'it': 3.0, 'he': 1.0, 'my': 2.0, 'starting': 1.0, 'and': 2.0, 'too': 1.0, 'both': 1.0, 'loved': 1.0, 'interact': 1.0, 'as': 2.0, 'to': 3.0, 'seat': 1.0, 'not': 1.0, 'toys': 1.0, 'of': 1.0, 'has': 1.0, 'plenty': 1.0, 'the': 2.0, 'heavier': 1.0, 'out': 1.0, 'this': 1.0, 'kids': 3.0, 'perfect': 1.0, 'some': 1.0, 'a': 1.0, 'nice': 1.0, 'size': 1.0, 'wide': 1.0, 'so': 1.0, 'helps': 1.0, 'baby': 2.0, 'keep': 1.0, 'is': 2.0, 'around': 2.0, 'should': 1.0, 'jumps': 1.0, 'be': 1.0}
Word element => {'bought': 1.0, 'originally': 1.0, 'when': 1.0, 'big': 1.0, 'awhile': 1.0, 'too': 1.0, 'and': 1.0, 'everything': 1.0, 'house': 1.0, 'be': 1.0, 'lowest': 1.0, 'but': 1.0, 'than': 1.0, 'because': 1.0, 'okay': 1.0, 'little': 2.0, 'get': 2.0, 'perfectly': 1.0, 'extra': 1.0, 'entertained': 1.0, 'the': 2.0, 'things': 1.0, '6': 1.0, 'so': 1.0, 'time': 1.0, 'do': 1.0, 'its': 2.0, 'old': 1.0, 'i': 4.0, 'to': 3.0, 'grow': 1.0, 'd': 1.0, 'absolutely': 1.0, 'this': 3.0, 'she': 2.0, 'month': 1.0, 'it': 5.0, 'love': 1.0, 'for': 3.0, 'where': 1.0, 'by': 1.0, 'put': 1.0, 'on': 2.0, 'toy': 1.0, 'a': 2.0, 'around': 1.0, 'is': 2.0, 'level': 1.0, 'small': 1.0, 'have': 2.0, 'pillow': 1.0, 'my': 2.0, 'underneath': 1.0, 'her': 2.0, 'rather': 1.0, 'into': 1.0}
Word element => {'to': 1.0, 'and': 2.0, 'is': 1.0, 'a': 1.0, 'fantastic': 2.0, 'easy': 1.0, 'jumperoo': 1.0, 'are': 1.0, 'the': 1.0, 'my': 1.0, 'clean': 1.0, 'its': 1.0, 'baby': 1.0, 'sounds': 1.0, 'this': 1.0, 'loves': 1.0, 'it': 1.0, 'colours': 1.0}
Word element => {'buy': 1.0, 'great': 1.0, 'for': 2.0, 'entertained': 1.0, 'keeps': 1.0, 'spoon': 1.0, 'also': 1.0, 'awhile': 1.0, 'surrounding': 1.0, 'bangs': 1.0, 'are': 1.0, 'toys': 3.0, 'hanging': 1.0, 'the': 5.0, 'happy': 1.0, 'is': 1.0, 'arms': 1.0, 'bounces': 3.0, 'rhino': 1.0, 'once': 1.0, 'baby': 5.0, 'her': 3.0, 'seat': 1.0, 'all': 1.0, 'even': 1.0, 'got': 1.0, 'didn': 1.0, 'give': 2.0, 'she': 7.0, 'it': 9.0, 'this': 1.0, 'first': 2.0, 'and': 4.0, 'like': 2.0, 'wasn': 1.0, 'woman': 1.0, 'when': 2.0, 'cried': 1.0, '6': 1.0, 'i': 2.0, 'old': 1.0, 'little': 2.0, 'grew': 1.0, 's': 1.0, 'might': 1.0, 't': 3.0, 'a': 5.0, 'from': 1.0, 'adorable': 1.0, 'at': 3.0, 'who': 1.0, 'sure': 1.0, 'on': 1.0, 'your': 2.0, 'put': 1.0, 'monkey': 1.0, 'but': 1.0, 'now': 1.0, 'weeks': 1.0, 'doesn': 1.0, 'him': 1.0, 'said': 1.0, 'in': 2.0, 'my': 4.0, 'after': 1.0, 'time': 2.0, 'so': 1.0, 'just': 4.0, 'few': 1.0, 'that': 1.0, 'loves': 2.0, 'into': 1.0, 'one': 1.0, 'bought': 1.0, 'months': 1.0, 'entertaining': 1.0, 'if': 2.0, 'take': 1.0}
Word element => {'out': 1.0, 'get': 1.0, 'worth': 1.0, 'is': 2.0, 'cruising': 1.0, 'started': 1.0, '50': 1.0, '9': 1.0, 'til': 1.0, 'occasionally': 1.0, 'very': 1.0, 'only': 1.0, 'and': 2.0, '10': 2.0, 'of': 2.0, 'maximum': 1.0, 'in': 2.0, 'loved': 1.0, 'ordered': 1.0, 'best': 1.0, 'daughter': 1.0, 'you': 1.0, 'when': 2.0, 'after': 1.0, 'they': 1.0, 'saucer': 2.0, 'reviews': 1.0, 'months': 3.0, 'on': 2.0, 'sounds': 1.0, 'item': 2.0, 'must': 1.0, 'have': 1.0, 'to': 2.0, 'all': 2.0, '30': 1.0, 'this': 3.0, 'she': 7.0, 'it': 7.0, 'old': 3.0, '4': 1.0, 'i': 2.0, 'opinion': 1.0, 'for': 1.0, 'expensive': 1.0, 'annoy': 1.0, 'product': 1.0, 'be': 2.0, 'jumping': 1.0, 'my': 2.0, 'seemed': 1.0, 'great': 1.0, 'music': 1.0, 'but': 1.0, '2': 1.0, '13': 1.0, 'now': 1.0, 'minutes': 1.0, 'was': 1.0, 'what': 1.0, 'had': 1.0, 'thought': 2.0, 'thing': 1.0, 'about': 2.0, 'not': 1.0, 'stay': 1.0, 'saucers': 1.0, 'would': 2.0, 'know': 1.0, 'reading': 1.0, 'which': 1.0, 'used': 2.0, '5': 1.0, 'before': 2.0, 'her': 2.0, 'time': 1.0, 'next': 1.0, 'a': 2.0, 's': 1.0, 'we': 2.0, 'could': 1.0, 'll': 1.0, 'stand': 1.0, 'an': 1.0, 'own': 1.0, 'the': 7.0, 'jumperoo': 1.0}
Word element => {'gift': 1.0, 'excellent': 1.0, 'install': 1.0, 'easy': 1.0, 'in': 1.0, 'time': 1.0, 'to': 1.0, 'jumping': 1.0, '1st': 1.0, 'jumperoo': 2.0, 'loves': 1.0, 'son': 3.0, '5': 1.0, 'my': 3.0, 'the': 1.0, 'more': 1.0, 'make': 1.0, 'and': 2.0, 'hanging': 1.0, 'got': 1.0, 'sturdy': 1.0, 'toys': 1.0, 'christmas': 1.0, 'it': 2.0, 'this': 2.0, 'he': 1.0, 'design': 1.0, 'love': 1.0, 'for': 2.0, 'music': 1.0, 'safe': 1.0, 'fun': 1.0, 's': 1.0, 'mth': 1.0, 'enjoys': 1.0, 'even': 1.0, 'his': 1.0}
Word element => {'wash': 1.0, 'off': 1.0, 'take': 1.0, 'easier': 1.0, 'move': 1.0, 'jumper': 2.0, 'types': 1.0, 'on': 3.0, 'your': 2.0, 'assemble': 1.0, 'fabric': 1.0, 'for': 2.0, 'useful': 1.0, 'it': 3.0, 'month': 1.0, 'family': 1.0, 'another': 1.0, 'bit': 1.0, 'easy': 1.0, 'found': 2.0, 'wish': 1.0, 'gift': 1.0, 'since': 2.0, 'floors': 1.0, 'at': 1.0, 'a': 5.0, 'could': 2.0, 'years': 1.0, 'also': 1.0, 'seat': 1.0, 'member': 1.0, 'in': 3.0, 'turn': 1.0, 'past': 1.0, 'two': 1.0, 'i': 7.0, 'feature': 1.0, 'sturdy': 1.0, 'purchased': 1.0, 'of': 2.0, 'the': 7.0, 'so': 2.0, 'jumperoo': 1.0, 'room': 2.0, 'these': 1.0, 'carrying': 1.0, 'some': 2.0, 'fact': 1.0, 'old': 1.0, 'carpeted': 2.0, 'jump': 1.0, 'handy': 1.0, 'one': 1.0, 'to': 8.0, 'eyes': 1.0, 'its': 2.0, 'was': 1.0, 'have': 3.0, 'light': 2.0, 'this': 1.0, 'few': 1.0, 'son': 3.0, 'and': 2.0, 'swiveling': 1.0, 'while': 2.0, 'baby': 1.0, 'with': 2.0, 'arm': 1.0, 'when': 2.0, 'times': 1.0, 'comparing': 1.0, 'brands': 1.0, 'like': 1.0, 'jumpers': 1.0, 'has': 1.0, 'likes': 1.0, 'other': 3.0, 'all': 1.0, 'rainforest': 1.0, 'an': 1.0, 'open': 1.0, '360': 1.0, 'that': 3.0, 'padded': 1.0, 'do': 1.0, 'floor': 1.0, 'versus': 1.0, '8': 1.0, 'plastic': 1.0, 'bottom': 1.0, 'he': 1.0, 'even': 1.0, 'base': 1.0, 'enough': 1.0, 'loved': 1.0, 'degrees': 1.0, 'came': 1.0, 'needed': 1.0, 'housekeeping': 1.0, 'his': 1.0, 'around': 1.0, 'my': 3.0, 'me': 1.0, 'were': 1.0}
Word element => {'review': 1.0, 'update': 1.0, 'will': 1.0, 'come': 1.0, 'certainly': 1.0, 'month': 1.0, 'after': 1.0, 'haven': 1.0, 'we': 2.0, 'jumper': 2.0, 'because': 1.0, 'no': 3.0, 'glad': 1.0, 'instead': 1.0, 'much': 1.0, 'took': 1.0, 'thought': 1.0, 'snacks': 1.0, 'there': 2.0, '11': 1.0, 'needs': 1.0, 'ever': 1.0, 'doesn': 2.0, 'away': 1.0, 'base': 2.0, 'too': 1.0, '3': 1.0, 'supposed': 1.0, 'on': 7.0, 'amount': 1.0, 'set': 1.0, 'as': 2.0, 'entertained': 3.0, 'stretchier': 1.0, 'daughter': 1.0, 'overwhelming': 3.0, 'spends': 1.0, 'issues': 2.0, 'room': 2.0, 'my': 4.0, 'are': 7.0, 'being': 2.0, 'low': 1.0, 'were': 3.0, 'stays': 1.0, 'noises': 1.0, 'far': 2.0, 'love': 3.0, 'yet': 1.0, 'fixed': 1.0, 'to': 13.0, 'that': 5.0, 'problems': 4.0, 'sound': 1.0, 'newest': 1.0, 'so': 9.0, 'level': 1.0, 'can': 4.0, 'is': 8.0, 'at': 4.0, 'was': 2.0, 'toys': 4.0, 'giggles': 1.0, 'wanted': 1.0, 'up': 3.0, 'favorite': 1.0, 'would': 3.0, 'springs': 1.0, 'hesitant': 1.0, 'have': 6.0, 'really': 5.0, 'many': 4.0, 'others': 1.0, 'negative': 1.0, 'the': 29.0, 'held': 1.0, 'heard': 2.0, 'model': 1.0, 'worried': 1.0, 'etc': 2.0, 'feature': 1.0, 'simplistic': 1.0, 'i': 18.0, 'buy': 1.0, 'wants': 1.0, 'spent': 1.0, 'very': 1.0, 'knew': 1.0, 'some': 3.0, 'their': 1.0, 'paint': 2.0, 'about': 2.0, 'price': 4.0, 'reading': 1.0, 'annoying': 1.0, 'fisher': 4.0, 'once': 1.0, 'for': 6.0, '10': 1.0, 'attention': 1.0, 'other': 9.0, 'think': 1.0, 'another': 1.0, 'jumping': 1.0, 'break': 1.0, 'endlessly': 2.0, 'noise': 1.0, 'colors': 1.0, 'snap': 1.0, 'with': 5.0, 'this': 6.0, 'tme': 1.0, 'from': 3.0, 'hours': 1.0, 'part': 1.0, 'fix': 1.0, 'jumperoos': 2.0, 'actually': 1.0, 'catch': 1.0, 'music': 3.0, 'attached': 1.0, '2': 1.0, 'most': 1.0, 'but': 8.0, 'pointless': 1.0, 'tell': 1.0, '1': 1.0, 'day': 1.0, 'since': 1.0, 'least': 1.0, 'makes': 1.0, 'keep': 3.0, 'when': 6.0, 'reviews': 2.0, 'let': 1.0, 'they': 7.0, 'not': 4.0, 'enthusiastic': 1.0, 'keen': 1.0, 'hanging': 1.0, 't': 9.0, 'them': 6.0, 'tray': 3.0, 'cord': 1.0, 'tries': 1.0, 'has': 1.0, 'a': 6.0, 'overly': 1.0, 'been': 1.0, 'bounces': 2.0, 'one': 4.0, 'locking': 1.0, '5': 1.0, 'stable': 1.0, 'comments': 1.0, 'hasn': 1.0, 'then': 1.0, 'only': 1.0, 'caught': 1.0, 'be': 2.0, 'it': 6.0, 'am': 1.0, '9': 1.0, 'keeps': 1.0, 'any': 4.0, 'her': 8.0, 'ironically': 1.0, '4': 1.0, '7': 1.0, 'red': 1.0, 'bird': 1.0, 'came': 2.0, 'figured': 1.0, 'scrapes': 1.0, 'face': 1.0, 'couldn': 2.0, 'just': 1.0, 'and': 20.0, 'tried': 1.0, 'seems': 1.0, 'make': 1.0, 'she': 12.0, 'scratch': 1.0, 'do': 1.0, 'nothing': 1.0, 'out': 1.0, 'could': 1.0, 'wasn': 1.0, 'like': 2.0, 'finger': 1.0, 'jumpers': 2.0, 'had': 4.0, 'if': 3.0, 'great': 1.0, 'sort': 1.0, 'barely': 1.0, 'relaxing': 1.0, 'interest': 1.0, 'arms': 2.0, '6': 1.0, 'even': 1.0, 'of': 9.0, 'covered': 1.0, 'fabric': 1.0, 'through': 1.0, 'off': 1.0, 'lots': 1.0, 'move': 1.0, 'time': 1.0, 'did': 1.0, 'mechanism': 1.0, 'toy': 3.0, 'small': 2.0, 'complaint': 2.0, 'leaves': 2.0, 'stay': 1.0, 'which': 1.0, 'rhino': 2.0, 'monkey': 2.0, 'hang': 1.0, 'in': 3.0, 'get': 3.0, 'able': 1.0, 'pulls': 1.0, 'hard': 1.0, 'enough': 2.0, 'pull': 2.0, 'ones': 1.0, 'all': 6.0, 'nail': 1.0, 'way': 1.0, 'than': 1.0, 'wish': 2.0, 'seemed': 2.0, 'better': 1.0, 'chips': 1.0, 'hold': 1.0, 'almost': 1.0, 'plain': 1.0, 'bouncy': 1.0, '8': 1.0, 'teether': 2.0, 'perfect': 1.0, 'more': 1.0, 'nice': 1.0}
Word element => {'restriction': 1.0, 'weight': 1.0, 'old': 1.0, 'month': 1.0, 'little': 1.0, 'well': 1.0, 'a': 1.0, 'under': 1.0, '5': 1.0, 'leg': 1.0, 'that': 1.0, 'us': 1.0, 'tight': 1.0, 'for': 3.0, 'to': 2.0, 'plenty': 1.0, 'there': 1.0, 'are': 2.0, 'my': 3.0, 'holes': 1.0, 'the': 3.0, 'bouncer': 1.0, 'loves': 2.0, 'play': 1.0, 'baby': 2.0, 'animals': 1.0, 'is': 3.0, 'together': 1.0, 'hanging': 1.0, 'chunky': 1.0, 'issue': 1.0, 'reach': 1.0, 'and': 2.0, 'he': 1.0, 'only': 1.0, 'this': 1.0, 'with': 1.0, 'it': 1.0, 'sturdy': 1.0, 'safe': 1.0}
Word element => {'clean': 1.0, 'assemble': 1.0, 'to': 1.0, 'seems': 1.0, 'easy': 1.0, 'just': 1.0, 'is': 1.0, 'einstein': 1.0, 'very': 1.0, 'as': 1.0, '6mo': 1.0, 'and': 3.0, 'sturdy': 1.0, 'good': 1.0, 'adores': 1.0, 'we': 1.0, 'have': 1.0, 'this': 2.0, 'also': 1.0, 'my': 1.0, 'the': 1.0, 'one': 2.0}
Word element => {'sanitized': 1.0, 'keep': 1.0, 'easy': 1.0, 'penny': 1.0, 'clean': 1.0, 'every': 1.0, 'worth': 1.0, 'my': 1.0, 'loved': 1.0, 'very': 1.0, 'and': 2.0, 'deal': 1.0, 'it': 3.0, 'awesome': 1.0, 'daughter': 1.0, 'for': 1.0, 'months': 1.0, 'was': 2.0, 'to': 1.0, 'an': 1.0}
Word element => {'completed': 1.0, 'my': 1.0, 'so': 1.0, 'i': 1.0, 'busy': 1.0, 'easy': 1.0, 'to': 1.0, 'together': 1.0, 'and': 1.0, 'checklist': 1.0, 'put': 1.0, 'henry': 1.0, 'is': 1.0, 'get': 1.0, 'already': 1.0, 'loving': 1.0, 'can': 1.0, 'him': 1.0, 'it': 1.0, 'keeps': 1.0}
Word element => {'like': 1.0, 'up': 1.0, 'on': 1.0, 'my': 3.0, 'scrunch': 1.0, 'home': 1.0, 'the': 1.0, 't': 1.0, 'other': 1.0, 'loves': 1.0, 'have': 1.0, 'doesn': 1.0, 'perfect': 1.0, 's': 2.0, 'it': 2.0, 'month': 1.0, 'him': 1.0, 'highchairs': 1.0, 'weekends': 1.0, 'son': 1.0, '11': 1.0, 'nards': 1.0, 'old': 1.0, 'i': 1.0, 'at': 1.0}
Word element => {'recommend': 1.0, 'overall': 1.0, 'with': 1.0, 'toys': 1.0, 'of': 1.0, 'some': 1.0, 'have': 1.0, 'boy': 1.0, 'has': 1.0, 'well': 2.0, 'back': 1.0, 'very': 1.0, 'son': 1.0, 'only': 2.0, 'he': 3.0, 'this': 2.0, 'it': 4.0, 'jumper': 2.0, 'and': 3.0, 'lights': 2.0, 'love': 1.0, 'for': 2.0, 'music': 1.0, 'but': 2.0, '2': 2.0, 'the': 2.0, 'happy': 2.0, 'made': 1.0, 'out': 1.0, 'one': 1.0, 'months': 1.0, 'put': 1.0, 'on': 1.0, 'seems': 2.0, 'old': 1.0, 'to': 5.0, 'seat': 1.0, 'not': 1.0, 'would': 2.0, 'fills': 1.0, 'a': 2.0, 'we': 1.0, 'pillow': 1.0, 'him': 2.0, 'be': 3.0, 'my': 1.0, 'underneath': 1.0, 'able': 1.0, 'bop': 1.0, 'more': 1.0, 'is': 5.0, 'around': 2.0, 'laying': 1.0, 'his': 1.0, 'big': 1.0, '1': 1.0, 'comfortable': 1.0, 'great': 1.0, 'nice': 1.0}
Word element => {'product': 1.0, 'recommend': 1.0, 'highly': 1.0, 'difficulty': 1.0, 'dangling': 1.0, 'touch': 1.0, 'old': 1.0, 'quite': 1.0, 'loves': 2.0, 'yet': 1.0, 'my': 2.0, 'feet': 1.0, '5': 1.0, 'this': 3.0, 'with': 2.0, 'she': 2.0, 'it': 1.0, 'month': 1.0, 'floor': 1.0, 'don': 1.0, 'baby': 1.0, 'by': 1.0, 'put': 1.0, 'different': 1.0, 'her': 2.0, 'the': 5.0, 'jumperoo': 1.0, 'playing': 1.0, 'and': 1.0, 'have': 1.0, 'rotates': 1.0, 'can': 2.0, 'but': 2.0, 'music': 1.0, 'easily': 1.0, 'little': 1.0, 'access': 1.0, 'so': 1.0, 'seat': 2.0, 'to': 2.0, 't': 2.0, 'we': 1.0, 'toys': 2.0, 'need': 1.0, 'in': 1.0, 'turn': 2.0, 'herself': 2.0, 'while': 1.0, 'hearing': 1.0, 'wife': 1.0, 'daughter': 1.0, 'together': 1.0}
Word element => {'find': 1.0, 'you': 1.0, 'msrp': 1.0, 'expensive': 1.0, 'consider': 1.0, 'would': 1.0, 'more': 2.0, 'foot': 1.0, 'off': 1.0, 'after': 2.0, 'on': 1.0, 'amount': 1.0, 'small': 1.0, 'a': 5.0, 'maybe': 1.0, 's': 3.0, 'going': 1.0, 'were': 1.0, 'although': 1.0, 'looking': 1.0, 'day': 1.0, 'minutes': 1.0, '3': 1.0, 'guy': 2.0, 'grows': 1.0, 'one': 2.0, 'deserved': 1.0, 'even': 1.0, 'decided': 1.0, 'used': 1.0, 'muscle': 1.0, 'most': 1.0, '2': 1.0, 'built': 1.0, 'be': 4.0, 'high': 1.0, 'to': 9.0, 'all': 1.0, 'our': 2.0, 'crazy': 1.0, 'as': 1.0, 'parents': 1.0, 'straps': 1.0, 'for': 2.0, 'can': 3.0, 'so': 2.0, 'has': 2.0, 'toys': 1.0, 'of': 5.0, 'the': 5.0, 'months': 2.0, 'get': 1.0, 'jumper': 3.0, 'and': 2.0, 'highly': 1.0, 'this': 4.0, 'kids': 1.0, 'with': 1.0, 'elastic': 1.0, 'only': 1.0, 'put': 1.0, 'do': 1.0, 'should': 1.0, 'some': 2.0, 'fun': 1.0, 'mention': 1.0, 'but': 1.0, 'print': 1.0, 'infants': 1.0, 'provides': 1.0, 'his': 1.0, 'strengthening': 1.0, 'not': 1.0, 'reading': 1.0, 'like': 1.0, 'we': 3.0, 'reviews': 1.0, 'little': 1.0, 'loved': 1.0, 'at': 2.0, '5': 1.0, 'pillow': 1.0, 'often': 1.0, 'under': 1.0, 'every': 1.0, 'if': 1.0, 'still': 1.0, 'seem': 1.0, 'time': 2.0, 'uses': 1.0, 'height': 1.0, '75': 1.0, 'it': 7.0, '9': 1.0, 'well': 1.0, 'feet': 1.0, 'i': 3.0, 'that': 1.0, 'gets': 1.0, 'adjust': 1.0, 'he': 3.0, 'seeing': 1.0, 'what': 1.0, 'hours': 1.0, 'times': 1.0, 'sale': 1.0, 'swear': 1.0, 'break': 1.0, 'quality': 1.0, 'last': 1.0, 'good': 1.0}
Word element => {'price': 1.0, 'with': 1.0, 'themselves': 1.0, 'jumping': 1.0, 'and': 1.0, 'it': 1.0, 'was': 1.0, 'in': 1.0, 'playing': 1.0, 'for': 1.0, 'a': 1.0, 'friend': 1.0, 'fisher': 1.0, 'around': 1.0, 'of': 1.0, 'he': 1.0, 'one': 1.0, 'outdid': 1.0, 'mine': 1.0, 's': 1.0, 'baby': 1.0, 'this': 2.0, 'loved': 1.0}
Word element => {'price': 1.0, 'a': 1.0, 'for': 1.0, 'awesome': 1.0, 'neck': 1.0, 'muscles': 1.0, 'his': 1.0, '3': 1.0, 'toys': 1.0, 'really': 2.0, 'keep': 1.0, 'music': 1.0, 'to': 1.0, 'lights': 1.0, 'loves': 1.0, 'great': 1.0, 'the': 1.0, 'my': 1.0, 'it': 2.0, 'month': 1.0, 'him': 3.0, '5': 2.0, 'jumper': 1.0, 'and': 3.0, 'hanging': 1.0, 'entertained': 1.0, 'old': 1.0, 'i': 1.0, 'back': 1.0, 'helped': 1.0, 'put': 1.0, 'pieces': 1.0, 'in': 1.0, 'months': 1.0, 'starting': 1.0, 'strengthen': 1.0, 'there': 1.0, 'at': 1.0}
Word element => {'gift': 1.0, 'as': 1.0, 'again': 1.0, 'buy': 1.0, 'would': 1.0, 'desirable': 1.0, 'floor': 1.0, 'baby': 1.0, 'crawly': 1.0, 'other': 1.0, 'self': 1.0, 'chores': 1.0, 'studying': 1.0, 'through': 1.0, 'away': 1.0, 'his': 1.0, 'on': 2.0, 'guy': 1.0, 'loves': 1.0, 'well': 1.0, 'even': 1.0, 'got': 1.0, 'good': 1.0, 'paid': 1.0, 'had': 1.0, 'was': 1.0, 'within': 1.0, 'bounces': 1.0, 'deal': 1.0, 'the': 4.0, 'less': 1.0, 'made': 1.0, 'first': 1.0, 'this': 2.0, 'it': 2.0, 'he': 2.0, 'hour': 1.0, 'a': 3.0, 'we': 2.0, 'others': 1.0, 'knew': 1.0, 'worth': 1.0, 'likeable': 1.0, 'which': 1.0, 'dad': 1.0, 'my': 1.0, 'son': 1.0, 'jumper': 1.0, 'more': 1.0, 'is': 3.0, 'and': 3.0, 'tall': 1.0, 'where': 1.0, 'for': 3.0, 'so': 1.0, 'adjustability': 1.0, 'huge': 1.0, 'plus': 1.0, 'money': 1.0, 'can': 1.0, 'activities': 1.0, 'happily': 1.0, 'pop': 1.0, 'little': 1.0, 'age': 1.0, 'in': 1.0}
Word element => {'product': 1.0, 'months': 1.0, 'we': 2.0, 'box': 1.0, 'some': 2.0, 'open': 2.0, 'the': 2.0, 'today': 1.0, 'is': 2.0, 'and': 2.0, 'missing': 2.0, 'part': 2.0, 'after': 1.0}
Word element => {'toes': 1.0, 'on': 1.0, 'jumping': 1.0, 'months': 1.0, '3': 1.0, 'was': 1.0, 'since': 1.0, 'my': 1.0, 'one': 1.0, 'it': 1.0, 'absolutely': 1.0, 'has': 1.0, 'he': 2.0, 'loves': 1.0, 'this': 1.0, 'old': 1.0, 'toy': 1.0, 'his': 1.0, 'enjoying': 1.0, 'little': 1.0, 'been': 1.0}
Word element => {'attached': 1.0, 'toys': 1.0, 'with': 1.0, 'played': 1.0, 'that': 2.0, 'the': 1.0, 'my': 1.0, 'loved': 1.0, 'it': 2.0, 'she': 3.0, 'even': 1.0, 'used': 1.0, 'till': 1.0, 'walk': 1.0, 'could': 1.0, 'was': 1.0, 'granddaughter': 1.0, 'after': 1.0}
Word element => {'this': 1.0, 'with': 1.0, 'cute': 1.0, 'passed': 1.0, 'review': 1.0, 'hard': 1.0, 'he': 2.0, 'so': 3.0, 'played': 1.0, 'get': 1.0, 'hes': 1.0, 'probably': 1.0, 'use': 1.0, 'happy': 1.0, 'son': 1.0, 'very': 1.0, 'tall': 1.0, 'play': 1.0, 'loves': 1.0, 'to': 1.0, 'in': 2.0, 'his': 2.0, 'of': 1.0, 'produce': 1.0, '5': 1.0, 'months': 1.0, 'old': 1.0, 'touch': 1.0, 'yet': 1.0, 'out': 1.0, 'couple': 1.0, 'feet': 1.0, 'don': 1.0, 'purchase': 1.0, 'my': 1.0, 'another': 1.0, 'a': 2.0, 's': 2.0, '26': 1.0, 't': 1.0, 'jumperoo': 1.0, 'the': 1.0, 'great': 1.0, 'floor': 1.0, 'pillow': 1.0, 'like': 1.0, 'i': 1.0, 'stated': 1.0, 'times': 1.0, 'idea': 1.0}
Word element => {'them': 1.0, 'use': 1.0, 'wont': 1.0, 'just': 1.0, 'we': 1.0, 'irritating': 1.0, 'and': 1.0, '17': 1.0, 'music': 1.0, 'he': 1.0, 'it': 2.0, 'of': 1.0, '34': 2.0, 'is': 3.0, 'boy': 1.0, 'time': 1.0, 'the': 2.0, 'weeks': 1.0, 'but': 2.0, 'will': 1.0, 'sit': 1.0, 'rather': 1.0, 'in': 1.0, 'young': 1.0, 'for': 1.0, 'short': 1.0, 'still': 1.0, 'loooves': 1.0, 'periods': 1.0}
Word element => {'jumperoo': 1.0, 'luv': 1.0, 'fisher': 1.0, 'stay': 1.0, 'to': 1.0, 'feel': 1.0, 'as': 1.0, 'princess': 1.0, 'a': 1.0, 'my': 1.0, 'the': 2.0, 'choose': 1.0, 'i': 1.0, 'price': 1.0, 'toy': 1.0, 'u': 1.0, 'product': 1.0, 'for': 1.0, 'zoo': 1.0, 'is': 2.0, 'on': 1.0, 'it': 1.0, 'farther': 1.0, 'first': 1.0, 'this': 1.0, 'have': 1.0, 'new': 1.0, 'good': 1.0, 'no': 1.0, 'inside': 1.0, 'but': 1.0, 'narrow': 1.0, 'she': 2.0, 'seems': 1.0, 'interest': 1.0}
Word element => {'essentials': 1.0, 'list': 1.0, 'recommend': 1.0, 'highly': 1.0, 'overall': 1.0, 'imagine': 1.0, 'contact': 1.0, 'd': 2.0, 'switch': 1.0, 'around': 1.0, 'spin': 1.0, 'short': 1.0, 'himself': 1.0, 'very': 2.0, 'wobbly': 1.0, 'being': 1.0, 'stable': 3.0, 'now': 1.0, 'figure': 1.0, 'eat': 1.0, 'complained': 1.0, 'fold': 1.0, 'definitely': 1.0, 'solid': 2.0, 'under': 1.0, 'stronger': 1.0, 'month': 1.0, 'opportunity': 1.0, 'couldn': 1.0, 'exersaucers': 2.0, 'off': 3.0, 'enough': 4.0, 'something': 1.0, 'would': 1.0, 'boy': 1.0, 'springs': 1.0, 'feet': 2.0, 'i': 7.0, 'sometimes': 1.0, 'bouncing': 1.0, 'burn': 1.0, 'bouncers': 1.0, 'll': 1.0, 'side': 1.0, 'few': 2.0, 'hang': 1.0, 'control': 2.0, 'minutes': 1.0, 'was': 6.0, 'do': 1.0, 'put': 1.0, 'exercise': 1.0, 'had': 2.0, 'able': 2.0, 'jumperoo': 1.0, 'get': 1.0, 'legs': 1.0, '4': 1.0, 'seen': 1.0, 'on': 5.0, 'long': 1.0, 'frequently': 1.0, 'about': 2.0, 'baby': 2.0, 'height': 2.0, 'pros': 1.0, 'complicated': 1.0, 'son': 2.0, 'for': 8.0, 'entire': 1.0, 'loves': 1.0, 'that': 7.0, 'bounces': 2.0, 'been': 1.0, 'far': 2.0, 'smoothly': 1.0, 'when': 1.0, 'pillow': 1.0, '90th': 1.0, 'first': 1.0, 'my': 4.0, 'are': 2.0, 'less': 1.0, 'anyway': 1.0, 'has': 1.0, 'them': 2.0, 'developed': 1.0, 'spins': 1.0, 'reach': 6.0, 'adores': 1.0, 'lowest': 1.0, 'his': 5.0, 'music': 1.0, '1': 1.0, 'since': 2.0, 'flails': 1.0, 'distraction': 1.0, 'the': 20.0, 'struggling': 1.0, 'floor': 6.0, 'setting': 1.0, 'and': 14.0, 'pretty': 1.0, 'once': 1.0, 'wise': 1.0, 'flimsy': 1.0, 'though': 1.0, 'quite': 1.0, 'keep': 2.0, 'at': 3.0, 'can': 2.0, 'is': 3.0, 'we': 1.0, 'reviews': 1.0, 'a': 12.0, 's': 5.0, 'attention': 1.0, 'other': 1.0, 'really': 1.0, 'gives': 2.0, 'core': 2.0, 'some': 1.0, 'never': 1.0, 'energy': 1.0, 'apparatus': 1.0, 've': 3.0, 'if': 1.0, 'great': 1.0, 'alternative': 1.0, 'in': 1.0, 'push': 1.0, 'seat': 2.0, 'safety': 1.0, 'toys': 2.0, 'yet': 1.0, 'interesting': 1.0, 'silly': 1.0, 'age': 1.0, 'appropriate': 1.0, 'head': 2.0, 'nothing': 1.0, 'out': 1.0, '3': 1.0, 'too': 3.0, 'all': 4.0, 'ones': 1.0, 'but': 3.0, 'old': 1.0, 'of': 5.0, 'even': 1.0, 'flashing': 1.0, 't': 2.0, 'hanging': 1.0, 'fun': 1.0, 'not': 3.0, 'give': 3.0, 'irritating': 1.0, 'ten': 1.0, 'quick': 1.0, 'easy': 1.0, 'have': 1.0, 'load': 1.0, 'found': 1.0, 'remove': 1.0, 'anything': 1.0, 'up': 1.0, 'washing': 1.0, 'felt': 1.0, 'months': 1.0, 'read': 1.0, 'jumpers': 1.0, 'where': 1.0, 'people': 1.0, 'their': 2.0, 'need': 1.0, 'also': 3.0, 'sitting': 1.0, 'like': 1.0, 'wasn': 1.0, 'children': 1.0, 'between': 1.0, 'top': 1.0, 'time': 2.0, 'tall': 2.0, 'developmentally': 1.0, 'he': 12.0, 'him': 5.0, 'lights': 1.0, 'ready': 1.0, 'using': 1.0, 'with': 2.0, 'meal': 1.0, 'assistance': 1.0, 'bounce': 1.0, 'mom': 1.0, 'little': 2.0, 'to': 18.0, 'charts': 1.0, 'laundry': 1.0, 'cons': 1.0, '2': 1.0, 'going': 2.0, 'cloth': 1.0, 'stiff': 1.0, 'perfect': 1.0, 'doorways': 1.0, 'more': 3.0, 'most': 1.0, 'jarring': 1.0, 'or': 3.0, 'effort': 1.0, 'think': 1.0, 'good': 1.0, 'term': 1.0, 'track': 1.0, 'it': 17.0, 'percentile': 1.0, 'be': 1.0}
Word element => {'support': 1.0, 'feet': 1.0, 'her': 1.0, 'used': 1.0, 'old': 1.0, 'mths': 1.0, 'option': 1.0, 'lowest': 1.0, 'even': 1.0, 'bouncer': 1.0, 'true': 1.0, 'wise': 1.0, 'we': 1.0, 'a': 1.0, 'is': 2.0, 'more': 1.0, 'learn': 1.0, 'has': 1.0, 'that': 1.0, 'several': 1.0, 'nice': 1.0, 'choice': 1.0, 'same': 1.0, '10': 1.0, 'luv': 1.0, 'bored': 1.0, 'my': 3.0, 'zoo': 1.0, 'really': 1.0, 'jumperoo': 1.0, 'the': 5.0, 'options': 1.0, 'searched': 1.0, 'u': 1.0, 'jumpers': 1.0, 'enjoy': 1.0, 'daughter': 1.0, 'under': 1.0, 'gets': 1.0, 'both': 1.0, 'm': 1.0, 'made': 1.0, 'purchasing': 1.0, 'for': 4.0, 'love': 1.0, 'pillow': 1.0, 'finally': 1.0, 'tall': 1.0, 'and': 4.0, 'play': 1.0, '4': 1.0, 'i': 4.0, 'one': 1.0, 'decided': 1.0, 'to': 2.0, 'as': 1.0, 'age': 1.0, '8217': 1.0, 'think': 1.0, 'on': 3.0, 'grows': 1.0, 'older': 1.0, 'little': 1.0, 'easily': 1.0, 'so': 1.0, 'it': 3.0, 'she': 3.0, 'will': 2.0, 'but': 2.0, 'stay': 1.0, 'sure': 1.0, 'minutes': 1.0, 'max': 1.0}
Word element => {'though': 1.0, 'room': 1.0, 'take': 1.0, 'to': 1.0, 'isn': 1.0, 'huge': 1.0, 'in': 2.0, 'know': 1.0, 'like': 1.0, 'don': 1.0, 'up': 2.0, 'lot': 1.0, 'at': 1.0, 'him': 1.0, 'of': 2.0, 'wake': 1.0, 'rather': 1.0, 'when': 1.0, 'my': 1.0, 'high': 1.0, 'baby': 1.0, 'first': 1.0, 'this': 1.0, 'only': 1.0, 'much': 1.0, 'old': 1.0, 'i': 3.0, 'liked': 1.0, 'it': 5.0, 'month': 1.0, 'that': 3.0, 'loves': 1.0, 'until': 1.0, 'got': 1.0, 'so': 1.0, 'the': 4.0, 'morning': 1.0, 'feet': 1.0, 'and': 2.0, 'jumper': 2.0, 'scream': 1.0, 'put': 2.0, 'four': 2.0, 'but': 1.0, 'back': 1.0, 'is': 3.0, 'just': 1.0, 'going': 1.0, 't': 2.0, 'we': 1.0, 'a': 3.0, 'pillow': 1.0, 'under': 1.0, 'his': 1.0, 'he': 2.0, 'fixed': 1.0, 'problem': 1.0, 'would': 1.0, 'draw': 1.0}
Word element => {'with': 1.0, 'buck': 1.0, 'beat': 1.0, 'can': 1.0, 'you': 1.0, 'i': 1.0, 'touch': 1.0, 'on': 2.0, 'allowed': 1.0, 'her': 3.0, 'jumper': 3.0, 'months': 1.0, 'bought': 1.0, 'was': 1.0, 'purchased': 1.0, 'had': 2.0, 'to': 3.0, 'six': 1.0, 'items': 1.0, 'my': 3.0, 'another': 1.0, 'early': 1.0, 'not': 2.0, 'stand': 1.0, 'ground': 1.0, 'and': 3.0, 'enjoying': 1.0, 'bang': 1.0, 'wife': 1.0, 'many': 1.0, 'preemie': 1.0, 'is': 1.0, 'yet': 1.0, 'using': 1.0, 'problems': 1.0, 'a': 2.0, 'could': 1.0, 'daughter': 2.0, 'enjoy': 1.0, 'this': 2.0, 'she': 3.0, 'it': 2.0, 'for': 3.0, 'actually': 1.0, 'the': 4.0, 'begin': 1.0, 'own': 1.0, 'has': 2.0, 'flip': 1.0, 'in': 1.0, 'that': 2.0, 'been': 1.0, 'miracle': 1.0}
Word element => {'of': 1.0, 'has': 1.0, 'officially': 1.0, 'know': 1.0, 'let': 1.0, 'updating': 1.0, 'll': 1.0, 'having': 1.0, 'your': 1.0, 'taller': 1.0, 'levels': 1.0, 'height': 1.0, 'will': 1.0, 'also': 1.0, 'lifesaver': 1.0, 'real': 1.0, 'crying': 1.0, 'from': 1.0, 'three': 1.0, 'keep': 2.0, 'in': 1.0, 'work': 1.0, 'can': 1.0, 'adjustable': 1.0, 'kitchen': 1.0, 'floor': 1.0, 'dishes': 1.0, 'do': 1.0, 'screaming': 1.0, 'just': 2.0, 'by': 1.0, 'take': 1.0, 'i': 2.0, 'up': 1.0, 'contraptions': 1.0, 'about': 1.0, 'thing': 3.0, 'now': 2.0, 'say': 1.0, 'is': 4.0, 'really': 1.0, 'amazon': 1.0, 'so': 2.0, 'out': 3.0, 'update': 2.0, 'cool': 1.0, 'jumping': 1.0, 'my': 2.0, 'baby': 5.0, 'this': 3.0, 'it': 6.0, 'he': 3.0, 'that': 1.0, 'loves': 2.0, 'him': 3.0, 'clean': 1.0, 'different': 1.0, 'entertained': 1.0, 'upset': 1.0, 's': 2.0, 'a': 2.0, 'wanted': 1.0, 'need': 1.0, '15': 1.0, 'vacuum': 1.0, 'love': 1.0, 'for': 3.0, 'grown': 1.0, 'purchasing': 1.0, 'thank': 2.0, 'getting': 1.0, 'me': 1.0, 'and': 7.0, 'great': 2.0, '1': 1.0, 'all': 1.0, 'to': 5.0, 'as': 2.0, 'without': 1.0, 'jumperoo': 2.0, 'place': 1.0, 'the': 8.0, 'promised': 1.0, 'stop': 1.0, 'experience': 1.0, '2012': 1.0, 'worry': 1.0, '20': 1.0, 'when': 3.0, 'you': 6.0, 'lbs': 1.0, 'gets': 2.0, 'still': 2.0}
Word element => {'anyone': 1.0, 'would': 1.0, 'toys': 1.0, 'keep': 1.0, 'own': 1.0, 'up': 1.0, 'entertained': 1.0, 'learns': 1.0, 'while': 1.0, 'enough': 1.0, 'gives': 1.0, 'the': 2.0, 'and': 1.0, 'all': 1.0, 'sit': 1.0, 'upright': 2.0, 'a': 1.0, 'recommend': 1.0, 'she': 2.0, 'little': 1.0, 'grandaughter': 2.0, 'for': 1.0, 'jumperoo': 3.0, 'loves': 1.0, 'my': 2.0, '3': 1.0, 'on': 1.0, 'support': 1.0, 'over': 1.0, 'months': 1.0, 'i': 3.0, 'old': 1.0, 'was': 1.0, 'to': 5.0, 'bought': 1.0, 'be': 2.0, 'mom': 1.0, 'when': 1.0, 'gave': 1.0, 'this': 2.0, 'it': 1.0, 'her': 4.0}
Word element => {'unsafe': 1.0, 'or': 1.0, 'budge': 1.0, 'not': 1.0, 'does': 1.0, 'it': 1.0, 'which': 1.0, 'occupied': 1.0, 'down': 1.0, 'him': 2.0, 'is': 1.0, 'time': 1.0, 'has': 1.0, 'generally': 1.0, 'seems': 1.0, 'seem': 1.0, 'son': 1.0, 'very': 1.0, 'to': 2.0, 'our': 1.0, 'as': 2.0, 'keeps': 1.0, 'are': 1.0, 'span': 1.0, 'attention': 1.0, 'up': 2.0, 'minutes': 1.0, '20': 1.0, 's': 1.0, 'a': 2.0, 'can': 1.0, 'but': 1.0, 'quality': 1.0, 'for': 1.0, 'jumps': 1.0, '30': 1.0, 'this': 1.0, 'he': 2.0, 'hard': 1.0, 'amazing': 1.0, 'without': 1.0, 'the': 2.0, 'short': 1.0, 'toys': 1.0, 'enough': 1.0, 'at': 1.0, 'keep': 1.0, 'overwhelmed': 1.0, 'terrific': 1.0, 'entertained': 1.0, 'being': 1.0, 'about': 1.0, 'lbs': 1.0, 'and': 3.0}
Word element => {'absolutely': 1.0, 'daughter': 1.0, 'month': 1.0, 'my': 1.0, 'floor': 1.0, 'the': 1.0, 'on': 1.0, 'toy': 2.0, 'sturdy': 1.0, 'why': 1.0, 'is': 2.0, '7': 1.0, 'maybe': 1.0, 'sure': 1.0, 'wobbly': 1.0, 'this': 2.0, 'it': 2.0, 'reviews': 1.0, 'are': 1.0, 'saying': 1.0, 'flat': 1.0, 'together': 1.0, 'jiggly': 1.0, 'they': 1.0, 'old': 1.0, 'putting': 1.0, 'loves': 1.0, 'or': 1.0, 'arent': 1.0, 'correctly': 1.0, 'not': 1.0, 'because': 1.0, 'and': 1.0}
Word element => {'35': 1.0, 'find': 1.0, 'store': 1.0, 'besides': 1.0, 'else': 1.0, 'cl': 1.0, 'pricy': 1.0, 'door': 1.0, 'regular': 1.0, 'thru': 1.0, 'designed': 1.0, 'very': 1.0, 'or': 2.0, 'fit': 1.0, 't': 2.0, 'doesn': 2.0, 'baby': 1.0, 'power': 1.0, 'man': 1.0, 'preggo': 1.0, 'there': 1.0, 'out': 1.0, 'deals': 1.0, 'great': 2.0, 'least': 1.0, 'entertained': 1.0, 'child': 1.0, 'count': 1.0, 'outside': 1.0, 'doorway': 1.0, 'through': 1.0, 'turn': 1.0, 'if': 2.0, 'be': 2.0, 'should': 1.0, 'as': 3.0, 'annoying': 1.0, 'where': 1.0, 'coordination': 1.0, 'eye': 1.0, 'buy': 1.0, 'hand': 1.0, 'attraction': 1.0, 'place': 1.0, 'so': 1.0, 'can': 4.0, 'jumperoo': 5.0, 'while': 1.0, 'pee': 1.0, 'steep': 1.0, 'them': 1.0, 'kicking': 2.0, 'started': 1.0, 'design': 1.0, 'underneath': 2.0, 'me': 1.0, 'my': 2.0, 'difficult': 1.0, 'loves': 1.0, 'tee': 1.0, 'go': 1.0, 'a': 7.0, 'get': 3.0, 'tons': 1.0, 'legs': 2.0, 'bulky': 1.0, 'would': 1.0, 's': 2.0, 'giving': 1.0, 'good': 1.0, 'save': 1.0, 'cons': 1.0, 'books': 1.0, 'gonna': 1.0, 'jump': 1.0, 'tried': 2.0, 'putting': 2.0, 'i': 7.0, '4': 1.0, 'but': 3.0, 'dangled': 1.0, 'up': 1.0, 'change': 1.0, 'all': 4.0, 'to': 9.0, 'not': 1.0, 'easily': 1.0, 'that': 3.0, 'because': 3.0, 'he': 4.0, 'him': 4.0, 'it': 10.0, 'few': 1.0, 'this': 4.0, 'pain': 1.0, 'work': 1.0, 'over': 1.0, 'hard': 2.0, 'looked': 1.0, 'ballerina': 1.0, 'fun': 1.0, 'music': 1.0, 'his': 4.0, 'colors': 1.0, 'stars': 1.0, 'fabric': 1.0, 'for': 6.0, 'and': 13.0, 'ended': 1.0, 'book': 1.0, 'un': 1.0, 'seat': 2.0, 'm': 1.0, 'in': 5.0, 'your': 2.0, 'idea': 1.0, 'toes': 2.0, 'when': 1.0, 'take': 1.0, 'then': 1.0, 'one': 1.0, 'day': 1.0, 'was': 3.0, 'actively': 1.0, 'loud': 1.0, 'you': 6.0, 'able': 2.0, 'part': 1.0, 'touch': 1.0, 'with': 1.0, 'got': 1.0, 'is': 4.0, 'look': 1.0, 'at': 4.0, 'cheap': 1.0, 'like': 3.0, 'think': 1.0, '30mins': 1.0, 'do': 4.0, 'floor': 1.0, 'put': 2.0, 'little': 2.0, 'will': 2.0, 'amount': 1.0, 'on': 4.0, '6months': 1.0, 'only': 1.0, 'end': 1.0, 'toy': 1.0, 'kiddo': 2.0, 'used': 2.0, '2months': 1.0, 'yard': 1.0, 'some': 1.0, 'now': 1.0, 'pros': 1.0, 'apart': 1.0, 'way': 1.0, 'assemble': 3.0, '90': 2.0, 'walker': 2.0, 'time': 1.0, 'the': 8.0, 'of': 2.0, 'metal': 1.0, 'they': 1.0, 'are': 2.0, 'before': 1.0}
Word element => {'price': 1.0, 'excellent': 1.0}
Word element => {'response': 1.0, 'with': 1.0, 'no': 1.0, 'about': 1.0, 'contact': 1.0, 'have': 1.0, 'baby': 1.0, 'yourself': 1.0, 'spin': 1.0, 'rotate': 1.0, 'not': 1.0, 'rickety': 1.0, 'pretty': 1.0, 'also': 2.0, 'are': 1.0, 'side': 1.0, 'which': 1.0, 'tried': 1.0, 'correctly': 1.0, 'built': 1.0, 'be': 1.0, 'checking': 1.0, 'even': 1.0, 'wobbly': 1.0, 'son': 1.0, 'adorable': 1.0, 'very': 1.0, 'and': 3.0, 'rotating': 1.0, 'we': 2.0, 'a': 1.0, 'does': 1.0, 'zoo': 1.0, 'really': 1.0, 'is': 1.0, 'i': 5.0, 'however': 1.0, 'was': 4.0, 'had': 2.0, 'the': 6.0, 'jumperoo': 1.0, 'sure': 1.0, 'get': 1.0, 'fisher': 2.0, 'loved': 1.0, 'this': 3.0, 'excited': 1.0, 'it': 4.0, 'for': 2.0, 'one': 1.0, 'theme': 1.0, 'to': 3.0, 'seat': 2.0, 'our': 2.0, 'were': 1.0, 'you': 1.0, 'unless': 1.0, 'posts': 1.0, 'twins': 1.0, 'idea': 1.0, 'when': 1.0, 'best': 1.0, 'both': 1.0, 'price': 2.0, 'jumperoos': 1.0, 'previously': 1.0, 'they': 1.0, 'disappointed': 1.0, 'in': 1.0, 'of': 1.0, 'once': 1.0, 'put': 1.0, 'daughter': 1.0, 'together': 1.0, 'after': 1.0, 'base': 1.0, 'received': 1.0, 'extremely': 1.0}
Word element => {'high': 1.0, 'so': 1.0, 'bouncing': 1.0, 'on': 1.0, 'skull': 1.0, 'her': 1.0, 'brushing': 1.0, 'because': 1.0, 'green': 1.0, 'and': 3.0, 'issue': 1.0, 'gets': 1.0, 'daughter': 1.0, 'but': 1.0, 'soft': 1.0, 'this': 1.0, 'with': 1.0, 'only': 1.0, 'of': 1.0, 'out': 1.0, 'i': 1.0, 'bounce': 1.0, 'took': 1.0, 'concerned': 1.0, 'ground': 1.0, 'that': 2.0, 'swivels': 1.0, 'it': 2.0, 'she': 2.0, 'little': 2.0, 'hanging': 1.0, 'the': 6.0, 'my': 2.0, 'right': 1.0, 'bounces': 1.0, '7': 1.0, 'great': 1.0, 'grand': 1.0, 'would': 1.0, 'never': 2.0, 'whole': 1.0, 'thing': 2.0, 'was': 2.0, 'off': 2.0, 'leaves': 1.0, 'attached': 1.0, 'tips': 1.0, 'over': 2.0, 'months': 1.0, 'them': 1.0, 'baby': 1.0, 'bored': 1.0, 'toys': 1.0, 'seat': 1.0, 'is': 4.0, 'around': 1.0, '360': 1.0, 'going': 1.0, 'a': 1.0, 'we': 1.0}
Word element => {'stars': 1.0, '4': 1.0, 'product': 1.0, 'quality': 1.0, 'this': 1.0, 'overall': 1.0, 'thin': 1.0, 'book': 2.0, 'thick': 1.0, 'by': 1.0, 'followed': 1.0, 'below': 1.0, 'firm': 1.0, 'began': 2.0, 'his': 2.0, 'jump': 1.0, 'finally': 1.0, 'percentile': 1.0, 'month': 1.0, '55th': 1.0, 'inches': 1.0, '26': 1.0, 'setting': 1.0, 'on': 1.0, 'able': 1.0, 'have': 2.0, 'as': 1.0, 'lowest': 1.0, 'leave': 1.0, 'zoo': 2.0, 'having': 1.0, 'does': 1.0, 'inspect': 1.0, 'colorful': 1.0, 'it': 5.0, 'growing': 1.0, 'eat': 1.0, 'being': 1.0, 'average': 1.0, 'stopping': 1.0, 'recommend': 1.0, 'together': 1.0, 'hot': 1.0, 'height': 1.0, 'son': 2.0, '5': 2.0, 'a': 9.0, '15': 1.0, 'he': 4.0, '6': 2.0, 'extremely': 1.0, 'time': 1.0, 'feet': 2.0, 'i': 2.0, 'two': 2.0, 'old': 2.0, 'dinner': 1.0, 'occasionally': 1.0, 'one': 1.0, 'lot': 1.0, 'space': 1.0, 'luv': 2.0, 'taller': 1.0, 'attachments': 1.0, 'be': 1.0, 'to': 6.0, 'our': 1.0, 'now': 2.0, 'and': 8.0, 'my': 3.0, 'without': 1.0, 'at': 2.0, 'is': 7.0, 'meal': 1.0, 'large': 1.0, 'been': 2.0, '20': 1.0, 'that': 2.0, 'husband': 1.0, 'babies': 1.0, 'u': 2.0, 'using': 2.0, 'pillow': 1.0, 'easier': 1.0, 'table': 1.0, 'like': 1.0, 'reach': 1.0, 'assemble': 1.0, 'disassembled': 1.0, 'past': 2.0, 'food': 1.0, 'jumperoo': 4.0, 'can': 2.0, 'minutes': 1.0, 'happily': 1.0, 'inhale': 1.0, 'easy': 1.0, 'sturdy': 1.0, 'with': 4.0, 'drawback': 1.0, 'chew': 1.0, 'said': 1.0, 'in': 1.0, 'then': 1.0, 'take': 1.0, 'up': 1.0, 'for': 4.0, 'shorter': 1.0, 'the': 11.0, 'of': 1.0, 'although': 1.0, 'fairly': 1.0, 'reviewers': 1.0, 'grab': 1.0, 'quickly': 1.0, 'touching': 1.0, 'permanent': 1.0, 'much': 1.0, 'do': 1.0, 'floor': 2.0, 'has': 1.0, 'location': 1.0, 'also': 1.0, 'other': 1.0, 'coincidentally': 1.0, 'mentioned': 1.0, 'months': 3.0, 'moved': 1.0, 'jumps': 1.0, 'legs': 1.0, 'not': 1.0, 'even': 1.0}
Word element => {'of': 1.0, 'was': 1.0, 'kind': 1.0, 'sure': 1.0, 'in': 1.0, 'supporting': 1.0, 'worried': 1.0, 'm': 2.0, 'taller': 1.0, 'pull': 1.0, 'daughter': 1.0, 'leaves': 1.0, 'now': 1.0, 'not': 1.0, 'cords': 1.0, 'were': 1.0, 'they': 1.0, 'tugging': 1.0, 'hard': 1.0, 'which': 1.0, 'is': 2.0, 'snap': 1.0, 'pointed': 1.0, 'have': 1.0, 'others': 1.0, 'beef': 1.0, 'only': 1.0, 'down': 1.0, 'broken': 1.0, 'be': 1.0, 'easily': 1.0, 'an': 1.0, 'months': 1.0, '7': 1.0, 'extra': 1.0, 'and': 6.0, 'play': 1.0, 'at': 2.0, 'her': 2.0, '10': 1.0, 'got': 1.0, 'had': 1.0, 'first': 1.0, 'wish': 1.0, 'this': 2.0, 'old': 1.0, 'i': 5.0, 'on': 2.0, 'put': 1.0, 'think': 1.0, 'for': 3.0, 'love': 1.0, 'designed': 1.0, 'mat': 1.0, 'storage': 1.0, 'under': 1.0, 'so': 1.0, 'elephant': 2.0, 'it': 3.0, 'month': 1.0, 'she': 4.0, 'going': 1.0, 'a': 2.0, 'we': 1.0, 'could': 1.0, 'my': 3.0, 'eventually': 2.0, 'feet': 1.0, 'out': 2.0, 'little': 2.0, 'grew': 1.0, 'features': 1.0, 'to': 3.0, 'as': 3.0, 'half': 1.0, 'well': 1.0, 'stretchy': 1.0, 'reach': 2.0, 'jumperoo': 1.0, 'the': 3.0, 'stretched': 1.0, 'great': 1.0, 'monkey': 2.0, 'can': 2.0, 'but': 2.0, 'music': 1.0, 'are': 3.0, 'also': 1.0, 'loves': 2.0, 'that': 5.0}
Word element => {'price': 1.0, 'fisher': 1.0, 'brand': 1.0, 'who': 1.0, 'recommend': 1.0, 'totally': 1.0, 'i': 1.0, 'to': 1.0, 'jumping': 1.0, 'best': 1.0, 'son': 1.0, 'loves': 1.0, 'features': 1.0, 'jumper': 1.0, 'and': 2.0, 'our': 1.0, 'for': 2.0, 'anyone': 1.0, 'in': 2.0, 'wants': 1.0, 'got': 1.0, 'we': 2.0, 'entertained': 1.0, 'this': 2.0, 'he': 2.0, 'it': 2.0, 'would': 1.0, 'him': 2.0, 'can': 1.0, 'the': 2.0, 'hours': 1.0, 'let': 1.0, 'all': 1.0, 'sit': 1.0, 'keep': 1.0, 'if': 1.0}
Word element => {'into': 1.0, 'around': 1.0, 'be': 1.0, 'to': 1.0, 'explorer': 1.0, 'getting': 1.0, 'and': 1.0, 'jumper': 1.0, 'my': 1.0, 'unfortunately': 1.0, 'little': 1.0, 'likes': 1.0, 'babies': 1.0, 'm': 1.0, 'other': 1.0, 't': 1.0, 'sure': 1.0, 'i': 2.0, 'often': 1.0, 'one': 1.0, 'trouble': 1.0, 'an': 1.0, 'will': 1.0, 'doesn': 1.0, 'use': 1.0, 'as': 2.0, 'like': 1.0, 'crawling': 1.0, 'enjoy': 1.0, 'would': 1.0, 'this': 1.0, 'it': 1.0, 'he': 1.0, 's': 1.0}
Word element => {'would': 1.0, 'your': 1.0, 'great': 1.0, 'nice': 1.0, 'enjoys': 1.0, 'much': 1.0, 'guy': 1.0, 'very': 1.0, 'day': 1.0, 'jumps': 1.0, 'since': 1.0, 'had': 1.0, 'and': 3.0, 'me': 1.0, 'my': 2.0, 'two': 1.0, 'girl': 1.0, 'try': 1.0, 'purchased': 1.0, 'love': 1.0, 'for': 2.0, 'one': 3.0, 'i': 1.0, 'we': 1.0, 'she': 1.0, 'little': 3.0, 'wash': 1.0, 'having': 1.0, 'all': 1.0, 'babies': 1.0, 'loves': 1.0, 'works': 1.0, 'does': 1.0, 'both': 1.0, 'her': 1.0, 'so': 1.0, 'this': 1.0, 'it': 2.0, 'sister': 1.0, 'he': 1.0}
Word element => {'of': 1.0, 'tons': 1.0, 'recommended': 1.0, 'has': 1.0, 'apartment': 1.0, 'an': 1.0, 'live': 1.0, 'me': 1.0, 'inconvenient': 1.0, 'which': 1.0, 'since': 1.0, 'space': 1.0, 'some': 1.0, 'fun': 2.0, 'does': 1.0, 'having': 1.0, 'is': 2.0, 'single': 1.0, 'then': 1.0, 'highly': 1.0, 'every': 1.0, 'still': 1.0, 'i': 3.0, 'months': 1.0, '6': 1.0, 'there': 1.0, 'always': 1.0, 'uses': 1.0, 'christmas': 1.0, 'mom': 1.0, 'daughter': 1.0, 'day': 1.0, 'my': 2.0, 'was': 1.0, 'now': 1.0, 'take': 1.0, '11months': 1.0, 'stopped': 1.0, 'it': 4.0, 'she': 6.0, 'in': 2.0, 'jumperoo': 1.0, 'the': 2.0, 'we': 1.0, 't': 1.0, 'morning': 1.0, 'from': 1.0, 'while': 1.0, 'cleaning': 1.0, 'or': 1.0, 'gave': 1.0, 'loves': 2.0, 'making': 1.0, 'breakfast': 1.0, 'on': 1.0, 'put': 1.0, 'love': 1.0, 'for': 3.0, 'jumps': 2.0, 'her': 2.0, 'and': 2.0, 'this': 2.0, 'dont': 1.0, 'have': 1.0, 'but': 2.0, 'music': 1.0, 'old': 2.0, 'hasn': 1.0}
Word element => {'month': 1.0, 'for': 1.0, 'a': 1.0, 'ground': 1.0, 'side': 1.0, 'the': 2.0, '6': 1.0, '34': 2.0, 'child': 1.0, 'sit': 1.0, 'high': 1.0, 'in': 1.0, 'time': 1.0, 'office': 1.0, 'spending': 1.0, 'to': 1.0, 'be': 1.0, 'that': 1.0, 'our': 1.0, 'her': 1.0, 'down': 1.0, 'old': 1.0, 'device': 1.0, 'would': 1.0, 'this': 1.0, 'only': 1.0, 'it': 1.0, 'loves': 1.0, 'off': 1.0}
Word element => {'turn': 1.0, 'one': 1.0, 'long': 1.0, 'with': 2.0, 'kid': 1.0, 'nuts': 1.0, 'your': 1.0, 'loud': 1.0, 'just': 1.0, 'them': 1.0, 'baby': 1.0, 'sometimes': 1.0, 'hours': 1.0, 'some': 1.0, 'for': 2.0, 'entertained': 1.0, 'her': 1.0, 'stand': 1.0, 'down': 2.0, 'keeps': 1.0, 'little': 2.0, 'are': 2.0, 'bangs': 1.0, 'girl': 1.0, 'is': 4.0, 'loves': 1.0, 'drive': 1.0, 'this': 2.0, 'you': 3.0, 'am': 1.0, 'when': 1.0, 'i': 1.0, 'really': 1.0, 'bounce': 1.0, 'too': 1.0, 'writing': 1.0, 'and': 4.0, 'as': 3.0, 'my': 1.0, 'jumping': 1.0, 'she': 2.0, 'it': 11.0, 'colorful': 1.0, 'vigorously': 1.0, 'does': 1.0, 'because': 1.0, 'doesn': 1.0, 'can': 2.0, 'but': 2.0, 'option': 1.0, 'we': 1.0, 'a': 2.0, 't': 3.0, 'playing': 1.0, 'the': 1.0, 'far': 1.0, 'short': 1.0, 'toys': 2.0, 'up': 1.0, 'won': 1.0, 'has': 1.0, 'varying': 1.0, 'volume': 1.0, 'like': 1.0, 'using': 1.0, 'which': 1.0, 'nice': 1.0}
Word element => {'safely': 1.0, 'can': 1.0, 'time': 1.0, 'she': 3.0, 'by': 1.0, 'loves': 2.0, 'old': 1.0, '6': 1.0, 'friend': 1.0, 'our': 1.0, 'for': 1.0, 'month': 1.0, 'this': 2.0, 'it': 1.0, 'got': 1.0, 'we': 1.0, 'recommended': 1.0, 'bouncing': 1.0, 'a': 1.0, 'now': 1.0, 'granddaughter': 1.0, 'was': 1.0, 'jumping': 1.0, 'do': 1.0, 'and': 1.0, 'around': 1.0, 'all': 1.0, 'the': 1.0}
Word element => {'pleased': 1.0, 'most': 1.0, 'are': 1.0, 'in': 1.0, 'keep': 1.0, 'toys': 1.0, 'together': 1.0, 'entertained': 1.0, 'simple': 1.0, 'awesome': 1.0, 'set': 1.0, 'best': 1.0, 'son': 1.0, 'ryder': 1.0, 'compare': 1.0, 'for': 2.0, 'loves': 1.0, 'and': 3.0, 'end': 1.0, 'my': 1.0, 'product': 1.0, 'bought': 1.0, 'with': 1.0, 'he': 2.0, 'this': 2.0, 'it': 2.0, 'the': 3.0, 'great': 1.0, 'i': 4.0, 'found': 1.0, 'here': 1.0, 'out': 1.0, 'was': 1.0, 'to': 2.0, 'put': 1.0, 'an': 1.0, 'item': 1.0, 'prices': 1.0, 'price': 1.0, 'deal': 1.0}
Word element => {'make': 1.0, 'out': 1.0, 'figured': 1.0, 'she': 2.0, 'favorite': 1.0, 'is': 1.0, 'bounce': 1.0, '4': 1.0, 'months': 1.0, 'to': 1.0, 'old': 1.0, 'as': 2.0, 'and': 1.0, 'this': 1.0, 'it': 1.0, 'became': 1.0, 'how': 1.0, 'soon': 1.0, 'her': 1.0}
Word element => {'useful': 1.0, 'best': 1.0, 'i': 2.0, 'it': 2.0, 'toys': 1.0, 'really': 1.0, 'very': 1.0, 'like': 1.0, 'not': 1.0, 'would': 1.0, 'little': 1.0, 'a': 1.0, 'are': 1.0, 'the': 2.0, '5': 1.0, 'give': 1.0, 'but': 1.0}
Word element => {'100': 1.0, 'tough': 1.0, 'also': 1.0, 'excellent': 1.0, 'drinking': 1.0, 'product': 1.0, 'for': 1.0, 'it': 1.0, 'learning': 1.0, 'quality': 1.0, 'very': 2.0, 'and': 3.0, 'entertainment': 1.0, 'recommend': 1.0, 'good': 2.0, 'of': 1.0, 'them': 1.0}
Word element => {'when': 1.0, 'loves': 1.0, 'grandson': 1.0, 'our': 1.0, 'advertised': 1.0, 'sturdy': 1.0, 'my': 1.0, 'complaints': 1.0, 'wife': 1.0, 'daughter': 1.0, 'arrived': 1.0, 'put': 1.0, 'together': 1.0, 's': 1.0, 'it': 4.0, 'without': 1.0, 'and': 2.0, 'any': 1.0}
Word element => {'around': 1.0, 'by': 1.0, 'highly': 1.0, 'baby': 1.0, 'recommend': 1.0, 'she': 1.0, 'all': 2.0, 'fascinated': 1.0, 'toys': 1.0, 'has': 2.0, 'girl': 1.0, 'activities': 2.0, 'jumper': 1.0, 'my': 1.0, 'it': 3.0, 'is': 1.0, 'on': 1.0, 'a': 1.0, 'the': 1.0, 'great': 2.0, 'such': 1.0, 'so': 1.0, 'much': 1.0, 'fun': 1.0, 'that': 1.0, 's': 1.0}
Word element => {'from': 1.0, 'reviews': 1.0, 'had': 1.0, 'pick': 1.0, 'did': 1.0, 'star': 1.0, 'reserving': 1.0, 'i': 2.0, 'in': 1.0, 'seen': 1.0, 'gave': 1.0, 't': 1.0, 'our': 1.0, 'others': 1.0, 'him': 1.0, 'enjoy': 1.0, 'grandson': 1.0, 'haven': 1.0, 'yet': 1.0, 'for': 1.0, 'newest': 1.0, 'gift': 1.0, 'a': 3.0, '4': 1.0, 'because': 2.0, 'but': 1.0, 'will': 1.0, 'is': 1.0, 'looks': 1.0, 'favorable': 1.0, 'like': 1.0, 'it': 6.0, 'this': 1.0, 'christmas': 1.0, 'he': 1.0, 'am': 1.0, 'being': 1.0, 'we': 1.0}
Word element => {'over': 1.0, 'want': 1.0, 'any': 1.0, 'bored': 1.0, 'gets': 1.0, 'interchangeable': 1.0, 'one': 3.0, 'house': 1.0, 'bought': 1.0, 'big': 1.0, 'not': 1.0, 's': 1.0, 'box': 1.0, 'out': 1.0, 'did': 1.0, 'hanging': 3.0, 'facing': 1.0, 'which': 1.0, 'side': 2.0, 'baby': 2.0, 'deal': 1.0, 'she': 7.0, 'month': 1.0, 'it': 6.0, 'grandmas': 1.0, 'having': 1.0, 'choose': 1.0, 'remove': 1.0, 'without': 1.0, 'able': 1.0, 'you': 3.0, 'when': 3.0, 'entertain': 2.0, 'barely': 1.0, 'on': 4.0, 'also': 1.0, 'or': 1.0, 'enough': 1.0, 'therefore': 1.0, 'build': 1.0, 'strenth': 1.0, 'easilystablelights': 1.0, 'issues': 1.0, 'sounds': 1.0, 'toys': 3.0, 'acrossed': 1.0, 'bouncer': 1.0, 'but': 2.0, 'yet': 1.0, 'love': 2.0, 'stars': 1.0, 'for': 3.0, 'really': 2.0, 'pros': 1.0, 'ground': 2.0, 'pretty': 1.0, 'to': 11.0, 'our': 3.0, 'seat': 3.0, 'other': 1.0, 'einstein': 2.0, 'all': 2.0, 'would': 2.0, 'option': 1.0, 'like': 1.0, 'pleasing': 1.0, 'and': 6.0, 'tall': 1.0, 'come': 1.0, 'we': 4.0, 'a': 5.0, 't': 2.0, 'the': 19.0, 'of': 5.0, '6': 1.0, 'monkey': 1.0, 'give': 2.0, 'there': 1.0, 'because': 2.0, 'that': 4.0, 'backwards': 2.0, 'first': 1.0, 'are': 3.0, '5': 1.0, 'blanket': 2.0, 'bother': 1.0, 'herself': 1.0, 'several': 1.0, 'only': 1.0, 'turning': 1.0, 'turn': 2.0, 'rail': 1.0, 'this': 2.0, 'took': 1.0, 'herthe': 1.0, 'with': 3.0, 'bit': 1.0, 'can': 3.0, 'so': 2.0, 'touch': 2.0, 'underneath': 1.0, 'is': 3.0, 'around': 2.0, 'difficult': 1.0, 'swivelthe': 1.0, 'giraffe': 2.0, 'move': 1.0, 'toy': 3.0, 'them': 2.0, 'unfinished': 1.0, 'has': 2.0, 'have': 3.0, 'add': 1.0, 'doesn': 1.0, 'setting': 1.0, 'musical': 1.0, 'me': 2.0, 'learning': 1.0, 'put': 1.0, 'scratch': 1.0, 'floor': 1.0, 'seems': 1.0, 'off': 1.0, 'see': 2.0, 'daughter': 1.0, 'lowest': 1.0, 'jumper': 2.0, 'sucks': 1.0, 'up': 1.0, 'i': 2.0, 'her': 3.0, 'defeating': 1.0, 'oldbounces': 1.0, 'bouncescons': 1.0, 'purpose': 1.0}
Word element => {'baby': 1.0, 'our': 1.0, 'kinda': 1.0, 'doesn': 1.0, 'loves': 1.0, 't': 1.0, 'lights': 1.0, 'and': 1.0, 'toy': 1.0, 'music': 1.0, 'disappointingotherwise': 1.0, 'the': 4.0, 'it': 1.0, 'got': 1.0, 'looks': 1.0, 'nice': 1.0, 'just': 1.0, 'today': 1.0, 'jumperoo': 1.0, 'but': 1.0, 'work': 1.0, 'thing': 1.0, 'with': 1.0}
Word element => {'does': 1.0, 'however': 1.0, 'use': 1.0, 'now': 1.0, '2': 1.0, '1': 1.0, '6': 1.0, 'not': 1.0, 'is': 3.0, 'had': 2.0, 'to': 5.0, 'her': 1.0, 'negative': 1.0, '5': 2.0, 'still': 2.0, 'under': 2.0, 'was': 2.0, 'minutes': 1.0, 'feet': 2.0, 'only': 2.0, 'easy': 1.0, 'it': 1.0, 'she': 1.0, 'old': 2.0, 'bounce': 3.0, 'took': 1.0, 'jumperoo': 1.0, 'the': 6.0, 'baby': 6.0, 'started': 1.0, 'using': 1.0, 'love': 1.0, 'for': 1.0, 'when': 1.0, 'and': 2.0, 'too': 1.0, 'together': 1.0, 'months': 2.0, 'i': 1.0, '4': 2.0, 'little': 1.0, 'high': 1.0, 'at': 1.0, 'height': 1.0, 'shortest': 1.0, 'put': 2.0, '3': 1.0, 'inch': 1.0, 'we': 2.0, 'a': 4.0, 'could': 1.0, 's': 1.0, 'needs': 1.0, 'so': 1.0, 'star': 1.0, 'loves': 1.0, 'gave': 1.0, 'box': 2.0, 'that': 1.0, 'why': 1.0}
Word element => {'friendly': 1.0, 'baby': 1.0, 'music': 1.0, 'easily': 1.0, 'jumps': 1.0, 'very': 2.0, 'and': 2.0, 'is': 1.0, 'on': 1.0, 'son': 1.0, 'loves': 1.0, 'this': 1.0, 'he': 1.0, 'toys': 2.0, 'great': 1.0, 'it': 1.0, 'can': 1.0, 'reach': 1.0, 'jumperoo': 1.0, 'all': 2.0, 'are': 1.0, 'my': 1.0, 'the': 3.0}
Word element => {'not': 1.0, 'older': 1.0, 'feet': 1.0, 'gets': 1.0, 'under': 1.0, 'touch': 1.0, 'floor': 1.0, 'enough': 1.0, 'adjust': 1.0, 'doesn': 1.0, 'i': 1.0, '4': 1.0, 'example': 1.0, 'old': 1.0, 'young': 1.0, 'pretty': 1.0, 'pillow': 1.0, 'own': 1.0, 'their': 1.0, 'on': 1.0, 'do': 1.0, 'like': 1.0, 'they': 1.0, 'knows': 1.0, 'be': 1.0, 'anyone': 1.0, 'start': 1.0, 'look': 1.0, 'nothing': 1.0, 'does': 1.0, 'bit': 2.0, 'giraffe': 1.0, 'activities': 1.0, 'm': 1.0, '34': 2.0, 'boring': 1.0, 'this': 2.0, 'she': 2.0, 'month': 1.0, 'it': 2.0, 'hang': 1.0, 'little': 3.0, 'babies': 1.0, 'been': 1.0, 'more': 2.0, 'is': 3.0, 'are': 1.0, 'my': 1.0, 'were': 1.0, 'high': 1.0, 'things': 1.0, 'animals': 1.0, 'closer': 1.0, 'cute': 3.0, 'the': 8.0, 'jumperoo': 2.0, 'hanging': 1.0, 't': 1.0, 'a': 3.0, 'could': 1.0, 'too': 1.0, 'and': 4.0, 'hoping': 1.0, 'in': 1.0, 'will': 1.0, 'also': 1.0, 'quality': 1.0, 'baby': 2.0, 'as': 1.0, 'to': 7.0, 'opinion': 1.0, 'actually': 1.0, 'for': 2.0, 'lights': 1.0, 'enjoy': 2.0, 'super': 1.0, 'would': 1.0, 'but': 4.0, 'music': 1.0, 'if': 2.0, 'bored': 1.0, 'use': 1.0, 'variety': 1.0, 'wedge': 1.0, 'have': 2.0, 'great': 1.0, 'nice': 1.0, 'view': 1.0}
Word element => {'it': 1.0, 'worth': 1.0, 'priced': 1.0, 'well': 2.0, 'one': 1.0, 'went': 1.0, 'amazon': 1.0, 'free': 1.0, 'its': 1.0, 'awesome': 1.0, 'this': 2.0, 'had': 1.0, 'have': 2.0, 'all': 1.0, 'wich': 1.0, 'easy': 2.0, 'sleeves': 1.0, 'buy': 1.0, 'springs': 1.0, 'base': 1.0, 'first': 3.0, 'with': 2.0, 'he': 2.0, 'click': 1.0, 'attach': 1.0, 'of': 2.0, 'realised': 1.0, 'assembly': 1.0, 'at': 1.0, 'fun': 1.0, 'shipping': 1.0, 'son': 1.0, 'very': 1.0, 'course': 1.0, 'the': 4.0, 'liking': 1.0, 'was': 2.0, 'another': 1.0, 'my': 2.0, 'jumping': 1.0, 'together': 1.0, 'just': 1.0, 'toys': 1.0, 'that': 1.0, 'we': 1.0, 'could': 1.0, 'jump': 1.0, 'is': 2.0, 'more': 1.0, 'around': 1.0, 'and': 5.0, 'break': 1.0, 'reson': 1.0, 'legs': 1.0, 'off': 1.0, 'than': 1.0, 'having': 1.0, 'for': 1.0, 'an': 2.0, 'hour': 1.0, 'from': 1.0, 'wife': 1.0, 'then': 1.0, 'real': 1.0, 'i': 1.0}
Word element => {'come': 1.0, 'reaching': 1.0, 'feet': 1.0, 'their': 1.0, 'grandkids': 1.0, 'old': 1.0, 'seven': 1.0, 'under': 1.0, 'pillows': 1.0, 'i': 1.0, 'ground': 1.0, 'from': 1.0, 'high': 1.0, 'month': 1.0, 'it': 2.0, 'that': 1.0, 'five': 1.0, 'got': 1.0, 'floor': 2.0, 'set': 1.0, 'of': 2.0, 'don': 1.0, 'up': 2.0, 'grandchildren': 1.0, 'entertain': 1.0, 'when': 1.0, 'quickly': 1.0, 'get': 1.0, 'and': 4.0, 'themselves': 1.0, 'how': 1.0, 'put': 1.0, 'on': 1.0, 'bored': 1.0, 'is': 3.0, 'jumperoo': 1.0, 'the': 7.0, 'infants': 1.0, 'yet': 1.0, 'stars': 1.0, 'product': 1.0, 'for': 3.0, 'love': 1.0, 'who': 2.0, 'close': 1.0, 'grandson': 1.0, 'four': 1.0, 'aren': 1.0, 'little': 1.0, 'instead': 1.0, 'crawling': 1.0, 'him': 1.0, 'long': 1.0, 'down': 1.0, 'periods': 1.0, 'time': 1.0, 'my': 1.0, 'jumping': 2.0, 'to': 3.0, 'though': 1.0, 'doesn': 1.0, 'know': 1.0, 'sometimes': 1.0, 'stop': 1.0, 't': 3.0, 'we': 1.0, 'have': 1.0, 'great': 1.0, 'rescue': 1.0, 'reason': 1.0, 'this': 1.0}
Word element => {'together': 1.0, 'put': 1.0, 'entertaining': 1.0, 'very': 2.0, 'finds': 1.0, 'reach': 1.0, 'complaint': 1.0, 'my': 1.0, 'it': 2.0, 'only': 1.0, 'this': 1.0, 'the': 2.0, 't': 1.0, 'daughters': 1.0, 'other': 1.0, 'that': 2.0, 'is': 2.0, 'item': 1.0, 'feet': 1.0, 'unable': 1.0, 'love': 1.0, 'don': 1.0, 'bottom': 1.0, 'easy': 1.0, 'she': 2.0, 'so': 1.0, 'i': 1.0, 'touch': 1.0, 'was': 1.0, 'to': 2.0, 'then': 1.0}
Word element => {'lovvvvves': 1.0, 'still': 1.0, 'bounce': 1.0, 'quite': 1.0, 'wasn': 1.0, 'part': 1.0, 'side': 1.0, 'bounces': 4.0, 'stare': 1.0, 'time': 1.0, 'them': 3.0, 'goes': 1.0, 'play': 3.0, 'and': 10.0, 'toys': 4.0, 'short': 1.0, 'since': 1.0, 'too': 2.0, 'lot': 1.0, 'jump': 1.0, 'anything': 1.0, 'adjustable': 1.0, 'reach': 4.0, 'place': 1.0, 't': 4.0, 's': 4.0, 'a': 3.0, 'bouncer': 2.0, 'months': 1.0, 'really': 3.0, 'look': 1.0, 'at': 2.0, 'is': 4.0, 'baby': 2.0, 'she': 16.0, 'it': 6.0, 'little': 1.0, 'couldn': 2.0, 'floor': 1.0, 'went': 1.0, 'enough': 1.0, 'loved': 3.0, 'girl': 1.0, 'or': 1.0, 'loves': 2.0, 'young': 1.0, 'that': 2.0, 'with': 4.0, 'this': 4.0, 'but': 3.0, 'so': 2.0, 'can': 2.0, 'around': 2.0, 'music': 1.0, 'ever': 1.0, 'all': 2.0, 'to': 10.0, 'in': 4.0, 'seat': 2.0, 'favorite': 1.0, 'thing': 1.0, 'almost': 1.0, 'now': 3.0, 'was': 2.0, 'when': 2.0, 'my': 2.0, 'plays': 1.0, 'hippo': 1.0, 'anyway': 1.0, 'her': 4.0, 'jumper': 1.0, 'different': 1.0, 'well': 1.0, 'i': 1.0, 'think': 1.0, '3': 1.0, 'be': 2.0, 'annoying': 1.0, 'lowest': 1.0, 'besides': 1.0, '8': 1.0, 'mommy': 1.0, 'holding': 1.0, 'monkey': 1.0, 'there': 1.0, 'first': 1.0, 'are': 1.0, 'the': 12.0, 'of': 2.0, 'for': 3.0, 'opinion': 1.0, 'on': 2.0, 'spins': 1.0, 'able': 2.0, 'see': 1.0, 'seems': 1.0, 'like': 1.0, 'old': 2.0, 'downside': 1.0, 'comfortable': 1.0, 'flexible': 1.0, 'isn': 1.0, 'heights': 1.0, 'took': 1.0, 'even': 1.0, 'only': 1.0, 'while': 1.0, 'setting': 1.0, 'kinda': 1.0}
Word element => {'crap': 1.0, 'money': 1.0, 'for': 1.0, 'regret': 1.0, 'my': 1.0, 'this': 2.0, 'excited': 1.0, 'just': 1.0, 'not': 1.0, 'i': 2.0, 'buying': 1.0, 'to': 1.0, 'was': 1.0, 'its': 4.0, 'daughter': 1.0, 'too': 1.0, 'shes': 1.0, 'big': 1.0, 'of': 3.0, 'sturdy': 1.0, 'get': 1.0, 'and': 2.0, 'a': 2.0, 'piece': 1.0, 'waste': 1.0, 'months': 1.0, 'hunk': 1.0, '7': 1.0, 'plastic': 1.0, 'garbage': 1.0}
Word element => {'this': 1.0, 'loves': 1.0, 'kid': 1.0, 'my': 1.0}
Word element => {'music': 1.0, 'a': 1.0, 'installed': 1.0, 'girl': 1.0, 'on': 1.0, 'is': 2.0, 'toys': 1.0, 'seat': 1.0, 'jumperoo': 1.0, 'got': 1.0, 'so': 1.0, 'nice': 2.0, 'and': 2.0, 'the': 3.0, 'my': 1.0, 'plus': 1.0, 'baby': 1.0, 'loves': 1.0, 'comfy': 1.0, 'it': 2.0, 'rotatable': 1.0}
Word element => {'would': 1.0, 'price': 1.0, 'jumper': 1.0, 'touch': 1.0, 'll': 1.0, 'right': 1.0, 'move': 1.0, 'plastic': 2.0, 'makes': 1.0, 'cover': 1.0, 'muscle': 1.0, 'less': 1.0, 'takes': 1.0, 'probably': 1.0, 'motion': 1.0, 'also': 1.0, 'hands': 1.0, 'getting': 1.0, 'stretchy': 1.0, 'they': 1.0, 'be': 2.0, 'd': 1.0, 'very': 1.0, '360': 1.0, 'just': 3.0, 'from': 1.0, 'rhino': 1.0, 'grab': 1.0, 'only': 1.0, 'teaches': 1.0, 'base': 1.0, 'love': 1.0, 'yet': 1.0, 'solid': 1.0, 'a': 6.0, 'than': 2.0, 'definitely': 1.0, 'think': 3.0, 'better': 3.0, 'style': 1.0, 'look': 1.0, 'is': 2.0, 'floors': 1.0, 'wood': 1.0, 'doesn': 1.0, 'stable': 1.0, 'those': 1.0, 'overwhelmed': 1.0, 'has': 1.0, 'them': 3.0, 'turn': 1.0, 'if': 2.0, 'enjoy': 1.0, 'simple': 1.0, 'toys': 1.0, 'as': 3.0, 'annoying': 1.0, 'becoming': 1.0, 'isn': 1.0, 'around': 1.0, 'music': 1.0, 'busy': 1.0, 'or': 2.0, 'little': 2.0, 'nice': 2.0, 'balance': 1.0, 'are': 3.0, 'colors': 1.0, 'but': 4.0, 'grasp': 1.0, 's': 8.0, 't': 3.0, 'after': 2.0, 'like': 1.0, 'bouncing': 1.0, 'bit': 2.0, 'leaves': 1.0, 'easy': 2.0, 'and': 6.0, 'seems': 1.0, 'boredom': 1.0, 'forever': 1.0, 'enough': 2.0, 'entertains': 1.0, 'open': 1.0, 'something': 3.0, 'wants': 2.0, 'shift': 1.0, 'required': 1.0, 'great': 1.0, 'spinning': 1.0, 'old': 1.0, 'non': 1.0, 'recommend': 1.0, 'were': 2.0, 'together': 1.0, 'daughter': 1.0, 'floor': 1.0, 'do': 1.0, 'put': 1.0, 'months': 1.0, 'get': 1.0, 'except': 1.0, 'have': 1.0, 'battery': 1.0, 'no': 1.0, 'whole': 1.0, 'to': 7.0, 'grow': 1.0, 'was': 3.0, 'more': 1.0, 'door': 1.0, 'interested': 1.0, '6': 1.0, 'bouncy': 1.0, 'herself': 1.0, 'well': 1.0, 'i': 12.0, 'stop': 1.0, 'etc': 1.0, 'when': 2.0, 'few': 1.0, 'this': 4.0, 'it': 19.0, 'me': 1.0, 'downsides': 1.0, 'my': 2.0, 'fine': 1.0, 'take': 1.0, 'month': 1.0, 'super': 1.0, 'babbles': 1.0, 'plant': 1.0, 'tools': 1.0, 'her': 10.0, 'last': 1.0, 'out': 4.0, 'position': 1.0, 'loves': 2.0, 'tires': 1.0, 'of': 6.0, 'the': 16.0, 'toes': 1.0, 'thing': 1.0, 'dishes': 1.0, 'done': 1.0, 'made': 1.0, 'ready': 1.0, 'morning': 1.0, 'too': 2.0, 'happy': 1.0, 'can': 6.0, 'so': 2.0, 'had': 1.0, 'overall': 1.0, 'outgown': 1.0, 'chair': 2.0, 'hang': 1.0, 'monkey': 1.0, 'there': 1.0, 'forward': 1.0, 'not': 5.0, 'time': 1.0, 'worried': 1.0, 'bright': 1.0, 'bottles': 1.0, 'by': 1.0, 'wouldn': 1.0, 'on': 5.0, 'long': 1.0, 'size': 1.0, 'seeing': 1.0, 'seat': 1.0, 'in': 5.0, 'm': 1.0, 'laughs': 1.0, 'that': 4.0, 'concerned': 1.0, 'entertaining': 1.0, 'fabric': 1.0, 'cord': 1.0, 'for': 2.0, 'an': 1.0, 'older': 1.0, 'worth': 1.0, 'now': 2.0, 'others': 1.0, 'she': 11.0, 'baby': 1.0, 'height': 1.0, 'adjustable': 1.0, 'without': 1.0, 'tell': 1.0, 'with': 1.0, 'plenty': 1.0, 'once': 1.0, 'wise': 1.0, 'room': 1.0}
Word element => {'new': 1.0, 'put': 1.0, 'too': 1.0, 'ty': 1.0, 'thing': 1.0, 'together': 1.0, 'job': 1.0, 'good': 1.0, 'loved': 1.0, 'grandson': 1.0, 'it': 1.0, 'he': 1.0, 'this': 2.0, 'mas': 1.0, 'and': 2.0, 'my': 1.0, 'for': 2.0, 'was': 3.0, 'had': 1.0, 'to': 1.0, 'be': 1.0, 'on': 1.0, 'time': 1.0, 'x': 1.0}
Word element => {'ever': 1.0, 'best': 1.0, 'smiled': 1.0, 'woke': 1.0, 'nap': 1.0, 'again': 1.0, 'when': 1.0, 'fallen': 1.0, 'hopping': 1.0, 'started': 2.0, 'at': 2.0, 'care': 1.0, 'pillow': 1.0, 'had': 2.0, 'jump': 1.0, 'loves': 1.0, 'let': 1.0, 'yet': 1.0, '30': 1.0, 'this': 1.0, 'with': 2.0, '6': 1.0, 'he': 8.0, 'jumper': 2.0, 'and': 4.0, 'his': 2.0, 'before': 1.0, 'minutes': 1.0, 'was': 1.0, 'it': 2.0, 'doorway': 2.0, 'help': 1.0, 'there': 1.0, 'of': 1.0, 'i': 6.0, 'didn': 1.0, 'even': 1.0, 'got': 1.0, 'but': 2.0, 'most': 1.0, 'for': 1.0, 'months': 1.0, 'hang': 1.0, 'having': 1.0, 'because': 1.0, 'feet': 1.0, 'reaching': 1.0, 'me': 1.0, 'not': 1.0, 't': 1.0, 'a': 2.0, 's': 3.0, 'could': 1.0, 'purchase': 1.0, 'jumping': 1.0, 'underneath': 1.0, 'my': 2.0, 'no': 2.0, 'up': 1.0, 'assembly': 1.0, 'on': 1.0, 'son': 1.0, 'time': 2.0, 'so': 2.0, 'spend': 1.0, 'great': 2.0, 'get': 1.0, 'easy': 1.0, 'did': 1.0, 'to': 3.0, 'seat': 1.0, 'all': 2.0, 'asleep': 1.0, 'place': 1.0, 'hanging': 1.0, 'the': 3.0, 'myself': 1.0, 'within': 1.0, 'him': 2.0, 'in': 2.0, 'good': 1.0, 'downstairs': 1.0, 'toys': 1.0}
Word element => {'my': 1.0, 'entire': 1.0, 'that': 1.0, 'returning': 1.0, 'of': 1.0, 'hassle': 1.0, 'through': 1.0, 'becaues': 1.0, 'this': 1.0, 'go': 1.0, 'resolve': 1.0, 'to': 2.0, 'again': 1.0, 'calling': 1.0, 'be': 2.0, 'jumper': 1.0, 'issue': 1.0, 'and': 2.0, 'very': 1.0, 'service': 1.0, 'called': 1.0, 'customer': 1.0, 'not': 2.0, 'step': 1.0, 'i': 4.0, 'does': 2.0, 'one': 2.0, 'sent': 1.0, 'want': 1.0, 'really': 1.0, 'second': 2.0, 'music': 1.0, 'the': 4.0, 'next': 1.0, 'they': 1.0, 'player': 1.0, 'a': 2.0, 'definitely': 1.0, 'within': 1.0, 'dont': 1.0, 'frustrated': 1.0, 'either': 1.0, 'am': 1.0, 'but': 1.0, 'work': 2.0, 'week': 1.0, 'will': 2.0}
Word element => {'jump': 1.0, 'but': 1.0, 'barely': 1.0, 'just': 1.0, 'can': 2.0, 'old': 1.0, 'jumperoo': 1.0, 'loves': 1.0, 'reach': 1.0, 'and': 2.0, 'my': 1.0, 'are': 1.0, 'the': 1.0, 'great': 1.0, 'he': 2.0, 'this': 2.0, 'it': 1.0, 'him': 1.0, 'a': 1.0, 'fine': 1.0, 'is': 2.0, 'months': 1.0, 'on': 1.0, 'bored': 1.0, 'floor': 1.0, 'product': 1.0, 'now': 1.0, 'to': 1.0, 'being': 1.0, 'baby': 1.0, 'lots': 1.0, '6': 1.0, 'there': 1.0, 'of': 1.0, 'toys': 1.0, 'keep': 1.0, 'from': 1.0}
Word element => {'buy': 1.0, 'great': 1.0, 'a': 1.0, 'hungry': 1.0, 's': 1.0, 'till': 1.0, 'stop': 1.0, 'not': 1.0, 'and': 1.0, 'my': 1.0, 'end': 1.0, 'will': 1.0, 'on': 1.0, 'son': 1.0, 'he': 2.0, 'his': 1.0, 'loves': 1.0, 'this': 1.0, 'play': 1.0, 'hours': 1.0, 'for': 1.0, 'in': 1.0, 'jumperoo': 1.0}
Word element => {'jumperoo': 1.0, 'while': 1.0, 'little': 1.0, 'a': 1.0, 'himself': 1.0, 'can': 1.0, 'him': 1.0, 'once': 1.0, 'in': 2.0, 'saucer': 1.0, 'put': 1.0, 'but': 1.0, 'ready': 1.0, 'it': 1.0, 'he': 4.0, 'this': 2.0, 'loves': 1.0, 'jump': 1.0, 'before': 1.0, 'have': 1.0, 'just': 1.0, 'i': 1.0, 'old': 1.0, 'entertain': 1.0, 'knew': 1.0, 'month': 1.0, 'son': 1.0, 'activity': 1.0, '5': 1.0, '4': 1.0, 'months': 1.0, 'my': 1.0, 'great': 1.0, 't': 1.0, 'the': 1.0, 'was': 3.0, 'one': 1.0, 'for': 2.0, 'we': 2.0, 'baby': 1.0, 'smiling': 1.0, 'and': 2.0, 'laughing': 1.0, 'couldn': 1.0, 'einstein': 1.0}
Word element => {'purchase': 1.0, 'made': 1.0, 'great': 1.0, 'the': 1.0, 'my': 1.0, 'other': 1.0, 'this': 1.0, 'lights': 1.0, 'bouncing': 1.0, 'her': 1.0, 'loves': 1.0, 'activities': 1.0, 'absolutely': 1.0, 'and': 2.0, 'chair': 1.0, 'hold': 1.0, 'daughter': 1.0, 'interest': 1.0, 'strong': 1.0, 'music': 1.0, 'pretty': 1.0, 'well': 2.0, 'in': 1.0, 'also': 1.0, 'bouncer': 1.0, 'is': 1.0}
Word element => {'coffee': 1.0, 'my': 1.0, 'drink': 1.0, 'review': 1.0, 'write': 1.0, 'like': 1.0, 'bored': 1.0, 'playing': 1.0, 'awesome': 1.0, 'gives': 1.0, 'babies': 1.0, 'time': 1.0, 'they': 1.0, 'the': 1.0, 'lot': 1.0, 'now': 1.0, 'to': 2.0, 'since': 1.0, 'a': 2.0, 'of': 1.0, 'other': 1.0, 'things': 2.0, 'this': 1.0, 'with': 1.0, 'excited': 1.0, 'it': 1.0, 'also': 1.0, 'do': 1.0, 'and': 3.0, 'break': 1.0, 'get': 2.0, 'me': 1.0}
Word element => {'busy': 1.0, 'and': 1.0, 'entertained': 1.0, 'son': 1.0, 'for': 1.0, 'fun': 1.0, 'keeps': 1.0, 'of': 1.0, 'my': 2.0, '7': 1.0, 'loves': 1.0, 'him': 1.0, 'month': 1.0, 'it': 1.0, 'absolutely': 1.0, 'easy': 1.0, 'old': 1.0, 'to': 1.0, 'assemble': 1.0, 'lots': 1.0}
Word element => {'easy': 1.0, 'together': 1.0, 'feet': 1.0, 'her': 1.0, 'under': 1.0, 'we': 1.0, 'or': 1.0, 'pillow': 1.0, 'short': 1.0, 'not': 1.0, 'one': 1.0, 'for': 1.0, 'entertaining': 1.0, 'as': 1.0, 'very': 2.0, 'putting': 1.0, 'i': 1.0, 'buy': 1.0, 'little': 1.0, 'baby': 1.0, 'great': 1.0, 'the': 2.0, 'so': 1.0, 'small': 1.0, 'agree': 1.0, 'well': 1.0, 'a': 2.0, 'also': 1.0, 'it': 1.0, 'with': 1.0, 'is': 2.0, 'was': 1.0, 'its': 1.0, 'everyone': 1.0, 'put': 1.0, 'lowest': 1.0, 'and': 1.0, 'setting': 1.0, 'high': 1.0, 'that': 1.0, 'our': 1.0}
Word element => {'would': 1.0, 'but': 1.0, 'loves': 1.0, 'great': 1.0, 't': 1.0, 'purchase': 1.0, 'iam': 1.0, 'little': 1.0, 'niece': 1.0, 'very': 1.0, 'i': 1.0, 'old': 1.0, 'product': 1.0, 'be': 1.0, 'pleased': 1.0, 'my': 1.0, 'was': 1.0, 'highly': 1.0, 'afraid': 1.0, 'recommend': 1.0, '4month': 1.0, 'may': 1.0, 'with': 1.0, 'this': 3.0, 'it': 1.0, 'a': 1.0, 'tall': 1.0, 'for': 1.0, 'works': 1.0, 'her': 1.0}
Word element => {'checked': 1.0, 'fact': 1.0, 'learned': 1.0, 'sure': 2.0, 'slimy': 1.0, 'get': 1.0, 'out': 1.0, 'a': 2.0, 'found': 1.0, 'this': 1.0, 'place': 1.0, 'these': 1.0, 'bought': 1.0, 'one': 3.0, 'selling': 1.0, 'for': 1.0, 'lights': 2.0, 'replacement': 1.0, 't': 2.0, 'fit': 1.0, 'already': 1.0, 'it': 3.0, 'problem': 1.0, 'them': 1.0, 'through': 2.0, 'completely': 1.0, 'is': 2.0, 'the': 9.0, 'of': 2.0, 'i': 12.0, 'component': 1.0, 'enough': 1.0, 'didn': 2.0, 'neither': 1.0, 'smudges': 1.0, 'batteries': 2.0, 'also': 1.0, 'have': 1.0, 'had': 1.0, 'amazon': 4.0, 'on': 1.0, 'lesson': 1.0, 'used': 3.0, 'work': 4.0, 'can': 1.0, 'not': 3.0, 'installed': 1.0, 'first': 2.0, 'are': 3.0, 'sound': 2.0, 'and': 7.0, 'gotten': 1.0, 'put': 1.0, 'do': 1.0, 'exchanged': 1.0, 'two': 1.0, 'little': 1.0, 'wobbly': 1.0, 'very': 2.0, 'double': 1.0, 'they': 1.0, 'easily': 1.0, 'because': 1.0, 'that': 3.0, 'assembling': 1.0, 'am': 1.0, 'when': 2.0, 'did': 2.0, 'obviously': 1.0, 'before': 2.0, 'jumpers': 1.0, 'manufacturer': 1.0, 'from': 2.0, 'correctly': 2.0, '34': 2.0, 'price': 1.0, 'paying': 1.0, 'assembled': 2.0, 'new': 2.0, 'spin': 1.0, 'tell': 1.0, 'there': 1.0, 'gross': 1.0, 'parts': 1.0, 'fingers': 1.0, 'if': 1.0, 'defect': 1.0, 'or': 2.0, 'getting': 1.0, 'items': 1.0, 'my': 1.0, 'prices': 1.0, 'fully': 1.0, 'was': 1.0, 'in': 2.0, 'm': 2.0, 'seat': 1.0, 'to': 1.0, 'seem': 1.0}
Word element => {'helpful': 1.0, 'was': 1.0, 'review': 1.0, 'hope': 1.0, 'reading': 1.0, 'thanks': 1.0, 'obnoxious': 1.0, 'recommend': 1.0, 'anymore': 1.0, 'want': 1.0, 'loves': 1.0, 'walking': 1.0, 'ready': 1.0, 'feature': 1.0, 't': 2.0, 'steps': 1.0, 'improvements': 1.0, 'used': 2.0, 'but': 2.0, 'same': 1.0, 'when': 2.0, 'less': 1.0, 'up': 1.0, 'takes': 1.0, '7': 1.0, 'occupied': 1.0, 'keep': 1.0, 'interested': 1.0, '6': 1.0, 'pliers': 1.0, 'fashionable': 1.0, 'flipping': 1.0, 'remove': 1.0, 'pegs': 1.0, 'hole': 1.0, '5': 1.0, 'holes': 2.0, 'through': 2.0, 'straps': 2.0, 'unit': 1.0, 'requires': 2.0, 'while': 1.0, 'each': 1.0, 'some': 2.0, 'pole': 1.0, 'would': 1.0, 'sliding': 2.0, 'button': 2.0, 'pushing': 1.0, 'as': 3.0, 'adjusting': 1.0, 'adjust': 2.0, 'easier': 2.0, 'closed': 1.0, 'replace': 1.0, '4': 1.0, 'within': 1.0, 'toys': 2.0, 'additional': 1.0, 'hold': 1.0, 'here': 2.0, 'granted': 1.0, 'built': 1.0, 'be': 4.0, 'hasn': 1.0, 'preference': 1.0, 'to': 10.0, 'two': 2.0, 'height': 2.0, 'complicated': 1.0, 'practice': 1.0, 'have': 3.0, 'small': 2.0, 'a': 4.0, 'jumperooand': 1.0, 'i': 3.0, 'well': 1.0, 'n': 5.0, 'this': 4.0, 'jumperoos': 1.0, 'jumperooout': 1.0, 'strongly': 1.0, 'it': 6.0, 'he': 2.0, 'yet': 1.0, 'love': 1.0, 'fabric': 1.0, 'shorter': 1.0, 'for': 5.0, 'one': 2.0, 'tray': 1.0, 'that': 2.0, 'has': 4.0, 'next': 1.0, 'there': 1.0, 'loud': 1.0, 'you': 2.0, 'is': 9.0, 'babies': 1.0, 'more': 2.0, 'really': 2.0, 'simple': 1.0, 'bounce': 2.0, 'expands': 1.0, 'breakdown': 1.0, 'prefers': 1.0, 'over': 5.0, 'work': 1.0, '2': 1.0, 'seriously': 1.0, 'much': 3.0, 'do': 1.0, 'put': 1.0, 'strong': 1.0, 'your': 1.0, 'better': 1.0, 'flip': 1.0, 'think': 1.0, '3': 1.0, 'amount': 1.0, 'on': 3.0, 'openings': 1.0, 'stuff': 1.0, 'why': 1.0, 'okay': 1.0, 'of': 1.0, 'longer': 1.0, 'the': 31.0, 'baby': 11.0, 'softer': 2.0, 'leg': 1.0, 'we': 4.0, 'difference': 1.0, 'even': 1.0, 'squishier': 1.0, 'and': 12.0, 'play': 5.0, 'our': 4.0, 'how': 1.0, 'seat': 1.0, 'in': 6.0, 'new': 1.0, 'model': 1.0, 'cool': 1.0, 'clean': 1.0, 'form': 1.0, 'zoo': 2.0, 'reach': 1.0, 'than': 1.0, 'luz': 6.0, 'nets': 1.0, 'different': 1.0, 'jumperoofisher': 2.0, 'price': 2.0, 'plastic': 2.0, '34': 6.0, 'from': 1.0, 'fun': 1.0, 'by': 1.0, 'pull': 2.0, 'snp': 9.0, 'jumps': 1.0, 'legs': 1.0, 'can': 5.0, 'jumperoo': 2.0, 'so': 4.0, 'u': 2.0, 'smaller': 1.0, '1': 2.0, 'lower': 1.0, 'doesn': 1.0, 'step': 5.0, 'setting': 1.0, 'will': 1.0, 'means': 1.0, 'colors': 1.0, 'start': 2.0, 'all': 2.0, 'fits': 1.0, 'other': 1.0, 'jumping': 1.0, 'space': 1.0, 'sooner': 1.0, 'luv': 2.0, 'bungees': 1.0, 'first': 1.0, 'are': 1.0, 's': 1.0, 'sides': 1.0, 'third': 1.0, 'good': 1.0, 'side': 1.0}
Word element => {'that': 1.0, 'find': 1.0, 'rotate': 1.0, 'toys': 1.0, 'space': 1.0, 'mirror': 1.0, 'herself': 2.0, 'see': 1.0, 'old': 1.0, 'mo': 1.0, '6': 1.0, 'my': 1.0, 'don': 2.0, 'of': 1.0, 'sees': 1.0, 'besides': 1.0, 'overpowering': 1.0, 'easily': 1.0, 'cheerfulcons': 1.0, 'wants': 1.0, 'still': 1.0, 'or': 1.0, 'hang': 1.0, 'lively': 1.0, 'giraffe': 1.0, 'doesn': 1.0, 'sided': 1.0, 'decor': 1.0, 'very': 2.0, 'big': 2.0, 'direction': 1.0, 'whichever': 1.0, 'colourful': 1.0, 'in': 3.0, 'look': 1.0, 'our': 1.0, 'to': 3.0, 'for': 2.0, 'a': 1.0, 't': 4.0, 's': 2.0, 'well': 1.0, 'baby': 4.0, 'she': 1.0, 'it': 3.0, 'with': 1.0, 'pros': 1.0, 'think': 1.0, 'stuff': 1.0, 'more': 2.0, 'is': 1.0, 'backside': 1.0, 'only': 1.0, 'works': 1.0, 'adult': 1.0, 'bounce': 1.0, 'condo': 1.0, 'but': 2.0, 'can': 3.0, 'music': 1.0, 'wish': 2.0, 'there': 2.0, 're': 1.0, 'too': 2.0, 'play': 1.0, 'deal': 1.0, 'the': 5.0, 'leaf': 1.0, 'not': 1.0, 'i': 1.0, 'two': 1.0, 'so': 1.0}
Word element => {'kitchen': 1.0, 'was': 1.0, 'belly': 1.0, 'reached': 1.0, 'that': 1.0, 'a': 1.0, 'have': 1.0, 'not': 1.0, 'did': 1.0, 'or': 1.0, 'easy': 1.0, 'wipeable': 1.0, 'this': 2.0, 'and': 4.0, 'chose': 1.0, 'chunky': 1.0, 'many': 1.0, '4': 2.0, 'i': 2.0, 'old': 2.0, 'close': 1.0, 'buy': 2.0, '1': 1.0, 'great': 2.0, '2': 1.0, 'went': 1.0, 'my': 2.0, 'were': 1.0, 'high': 2.0, 'all': 1.0, 'to': 5.0, 'is': 4.0, 'comes': 1.0, 'price': 1.0, 'try': 1.0, 'chair': 1.0, 'for': 2.0, 'together': 1.0, 'daughter': 1.0, 'in': 2.0, 'three': 1.0, 'main': 1.0, '9': 1.0, 'uncomfortable': 1.0, 'months': 2.0, 'tray': 2.0, 'reasons': 1.0, 'way': 1.0, 'straps': 1.0, 'put': 1.0, '3': 1.0, 'her': 4.0, 'the': 2.0, 'without': 1.0, 'squishing': 1.0, 'looks': 1.0, 'it': 1.0, 'she': 4.0, 'month': 1.0, 'very': 2.0, 'looked': 1.0, 'wearing': 1.0, 'quality': 1.0, 'baby': 1.0, 'clothes': 1.0, 'chairs': 1.0}
Word element => {'underneath': 1.0, 'from': 1.0, 'pulling': 1.0, 'leaning': 1.0, 'baby': 1.0, 'where': 1.0, 'too': 1.0, 'not': 1.0, 'will': 1.0, 'but': 1.0, 'allow': 1.0, 'wheels': 1.0, 'front': 1.0, 'that': 2.0, 'like': 1.0, 'set': 1.0, 'up': 2.0, 'is': 1.0, 'tray': 2.0, 'design': 1.0, 'cute': 1.0, 'can': 1.0, 'i': 1.0, 'for': 1.0, 'one': 1.0, 'cleaning': 1.0, 'clean': 1.0, 'or': 2.0, 'off': 2.0, 'both': 1.0, 'comes': 1.0, 'to': 4.0, 'hands': 1.0, 'easy': 4.0, 'take': 1.0, 'piece': 1.0, 'the': 1.0, 'it': 1.0, 'this': 1.0, 'with': 1.0, 'roll': 3.0, 'top': 1.0}
Word element => {'up': 1.0, 'sitting': 1.0, 'not': 1.0, 'be': 1.0, 'us': 1.0, 'could': 1.0, 'where': 1.0, 'laps': 1.0, 'much': 1.0, 'put': 1.0, 'together': 1.0, 'would': 1.0, 'son': 1.0, 'originally': 1.0, 'highchair': 1.0, 'bought': 1.0, 'actually': 1.0, 'infants': 1.0, 'button': 1.0, 'very': 1.0, 'a': 1.0, 'always': 1.0, 'has': 1.0, 'adjust': 1.0, 'types': 1.0, 'with': 1.0, 'happens': 1.0, 'avoiding': 1.0, 'two': 1.0, 'wipe': 1.0, 'enough': 1.0, 'loved': 1.0, 'yet': 1.0, 'he': 3.0, 'far': 1.0, 'buttons': 1.0, 've': 1.0, 'super': 1.0, 'friends': 1.0, 'so': 1.0, 'disgusting': 1.0, 'visiting': 1.0, 'babysitting': 1.0, 'stuck': 1.0, 'while': 1.0, 'from': 1.0, 'some': 1.0, 'knew': 1.0, 'these': 1.0, 'did': 1.0, 'but': 1.0, 'fussed': 1.0, 'many': 1.0, 'baby': 1.0, 'started': 1.0, 'chair': 2.0, 'sure': 1.0, 'researching': 1.0, 'get': 3.0, 'eat': 1.0, 'fisher': 1.0, 'of': 2.0, 'the': 13.0, 'hands': 1.0, 't': 3.0, 'feature': 1.0, 'food': 2.0, 'or': 2.0, 'seeing': 1.0, 'latch': 1.0, 'collection': 1.0, 'chairs': 2.0, 'completely': 1.0, 'is': 4.0, 'happier': 1.0, 'around': 1.0, 'well': 1.0, 'fast': 1.0, 'grime': 1.0, 'i': 8.0, 'able': 1.0, 'things': 1.0, 'you': 1.0, 'because': 1.0, 'young': 1.0, 'that': 1.0, 'seams': 1.0, 'easily': 1.0, 'one': 1.0, 'tray': 2.0, 'easy': 6.0, 'know': 1.0, 'like': 2.0, 'washer': 1.0, 'reclined': 1.0, 'solids': 1.0, 'throw': 1.0, 'wasn': 1.0, 'place': 1.0, 'began': 1.0, 'seconds': 1.0, 'didn': 1.0, 'connections': 1.0, 'feeding': 1.0, 'when': 2.0, 'what': 1.0, 'needed': 1.0, 'since': 2.0, 'indeed': 1.0, 'buying': 1.0, 'was': 4.0, 'our': 3.0, 'high': 3.0, 'to': 10.0, 'other': 1.0, 'all': 1.0, 'on': 3.0, 'and': 9.0, 'see': 1.0, 'until': 1.0, 'off': 2.0, 'don': 1.0, 'have': 2.0, 'jiggle': 1.0, 'him': 1.0, 'recline': 1.0, 'it': 3.0, 'seat': 1.0, 'in': 5.0, 'just': 1.0, 'right': 1.0, 'important': 1.0, 'arthritis': 1.0, 'hated': 1.0, 'first': 1.0, 'are': 1.0, 'reasons': 2.0, 'my': 1.0, 'me': 1.0, 'clean': 2.0, 'reclines': 1.0, 'for': 5.0, 'fabric': 1.0, 'wipes': 1.0, 'price': 1.0, 'before': 1.0, 'mentions': 1.0, 'no': 1.0, 'crevices': 1.0, 'houses': 1.0, 'into': 1.0, 'we': 5.0, 'take': 1.0, 'straps': 2.0}
Word element => {'out': 1.0, 'switch': 1.0, 'an': 1.0, 'with': 1.0, 'they': 1.0, 'them': 1.0, 'wipe': 1.0, 'three': 1.0, 'the': 5.0, 'deessert': 1.0, 'to': 1.0, 'darkest': 1.0, 'seat': 1.0, 'not': 1.0, 'of': 2.0, 'a': 1.0, 'dar': 1.0, 'while': 1.0, 'high': 1.0, 'sell': 1.0, 'ordering': 1.0, 'washing': 1.0, 'he': 1.0, 'comes': 1.0, 'is': 2.0, 'recommend': 1.0, 'beautiful': 1.0, 'was': 1.0, 'covers': 1.0, 'it': 3.0, 'nights': 1.0, 'i': 4.0, 'cloth': 1.0, 'chair': 1.0, 'last': 1.0, 'wipes': 1.0, 'extra': 1.0, 'definitely': 1.0, 'would': 2.0, 'hesitant': 1.0, 'you': 1.0, 'easily': 1.0, 'when': 2.0, 'very': 1.0, 'little': 1.0, 'prune': 1.0, 'saw': 1.0, 'wish': 1.0, 'functional': 1.0, 'this': 1.0, 'soft': 1.0, 'material': 1.0, 'can': 1.0, 'most': 1.0, 'but': 1.0, 'everything': 1.0, 'so': 2.0, 'including': 1.0, 'right': 1.0, 'additionaly': 1.0, 'seems': 1.0, 'that': 1.0, 'off': 2.0, 'cover': 2.0}
Word element => {'product': 1.0, 'am': 1.0, 'clean': 1.0, 'to': 1.0, 'easy': 1.0, 'claims': 1.0, 'manufacturer': 1.0, 'have': 1.0, 'loves': 1.0, 'old': 1.0, 'i': 2.0, 'just': 1.0, '28': 1.0, 'a': 1.0, 'month': 1.0, 'sitting': 1.0, 'is': 3.0, 'chair': 1.0, 'creative': 1.0, 'baby': 1.0, 'and': 2.0, 'very': 3.0, 'as': 1.0, 'with': 1.0, 'it': 1.0, 'this': 2.0, 'he': 1.0, 'perfect': 1.0, 'in': 1.0, 'satisfied': 1.0, 'design': 1.0, 'the': 2.0}
Word element => {'things': 1.0, 'other': 1.0, 'do': 1.0, 'tries': 1.0, 'of': 1.0, 'out': 1.0, 'contort': 1.0, 'chair': 1.0, 'is': 1.0, 'confident': 1.0, 'feel': 1.0, 'me': 1.0, 'always': 1.0, 'way': 1.0, 'straps': 1.0, 'quite': 1.0, 'can': 1.0, 'food': 1.0, 'his': 2.0, 'sturdy': 1.0, 'feels': 1.0, 'to': 2.0, 'doesn': 1.0, 'was': 1.0, 'safe': 1.0, 'pretty': 1.0, 'together': 1.0, 'this': 1.0, 'love': 1.0, 'catches': 1.0, 'i': 3.0, 'weighs': 1.0, 'easy': 1.0, 'far': 2.0, 'mouth': 1.0, 'because': 1.0, 'just': 1.0, 'few': 1.0, '18': 1.0, 'strong': 1.0, 'make': 2.0, 'put': 1.0, 'towards': 1.0, 't': 2.0, 'ago': 1.0, 'a': 1.0, 'days': 1.0, 'and': 5.0, 'it': 5.0, 'looks': 1.0, 'really': 1.0, 'so': 2.0, 'son': 2.0, 'comfortably': 1.0, 'likes': 1.0, 'lbs': 1.0, 'tray': 1.0, 'months': 1.0, 'adorable': 1.0, 'at': 1.0, 'he': 3.0, 'received': 1.0, '6': 1.0, 'my': 2.0, 'fits': 1.0, 'in': 4.0, 'item': 1.0, 'also': 1.0, 'body': 1.0, 'like': 1.0, 'into': 1.0, 'that': 3.0, 'the': 6.0, 'are': 1.0, 'curves': 1.0, 'them': 2.0, 'baby': 1.0}
Word element => {'recommended': 1.0, 'son': 1.0, 'our': 1.0, 'it': 1.0, 'love': 2.0, 'are': 1.0, 'the': 2.0, 'coco': 1.0, 'that': 1.0, 'sorbet': 1.0, 'plastic': 1.0, 'straps': 1.0, 'easy': 1.0, 'to': 1.0, 'highly': 1.0, 'ez': 1.0, 'very': 1.0, 'loves': 1.0, 'highchair': 1.0, 'clean': 2.0, 'its': 1.0}
Word element => {'chair': 1.0, 'high': 1.0, 'both': 1.0, 'works': 1.0, 'years': 1.0, 'months': 1.0, 'little': 1.0, 'two': 1.0, 'have': 1.0, 'grandchildren': 1.0, 'that': 1.0, 'cover': 1.0, 'came': 1.0, 'for': 1.0, 'love': 2.0, 'cleans': 1.0, 'so': 1.0, 'easy': 2.0, 'day': 1.0, 'and': 3.0, 'like': 1.0, '9': 1.0, 'move': 1.0, 'we': 1.0, 'to': 1.0, 'this': 1.0, 'it': 4.0, 'first': 1.0, 'use': 1.0, 'purchased': 1.0, 'of': 1.0, 'washed': 1.0, '2': 1.0, 'the': 2.0, 'them': 1.0, 'clean': 1.0, 'out': 1.0, 'looking': 1.0, 'i': 2.0}
Word element => {'purchase': 1.0, 'before': 1.0, 'did': 1.0, 'wish': 1.0, 'doesn': 1.0, 'place': 1.0, 'keeping': 1.0, 'while': 1.0, 'between': 1.0, 'even': 1.0, 'no': 1.0, 'see': 1.0, 'leave': 1.0, 'as': 1.0, 'squeeze': 1.0, 'careful': 1.0, 'using': 1.0, 'started': 1.0, 'right': 1.0, 'respond': 1.0, 'didn': 1.0, 'they': 1.0, 'some': 1.0, 'mean': 1.0, 'what': 1.0, 'show': 1.0, 'posted': 1.0, 'update': 1.0, 'are': 1.0, 'first': 1.0, 'work': 2.0, 'might': 1.0, 'have': 4.0, 'were': 1.0, 'because': 1.0, 'problems': 1.0, 'that': 1.0, 'babies': 2.0, 'bar': 2.0, 'just': 3.0, 'hope': 1.0, 'grow': 1.0, 'month': 1.0, '6': 1.0, 'flat': 1.0, 'aleady': 1.0, 'but': 4.0, 'squirming': 1.0, 'unsure': 1.0, 'my': 3.0, 'another': 1.0, 'like': 2.0, 'great': 3.0, 'bubble': 1.0, 'finger': 1.0, 'the': 7.0, 'read': 1.0, 'little': 1.0, 'know': 3.0, 'easy': 2.0, 'try': 1.0, 'one': 2.0, 'growth': 1.0, 'funstional': 1.0, 'and': 6.0, 'soon': 1.0, 'there': 1.0, 'with': 4.0, 'this': 4.0, 'dont': 1.0, 'all': 3.0, 'an': 1.0, 'other': 1.0, 'people': 2.0, 'said': 1.0, 'seat': 1.0, 'in': 7.0, 'age': 1.0, 'at': 1.0, 'pic': 2.0, 'is': 7.0, 'really': 4.0, 'old': 1.0, 'youc': 1.0, 'i': 14.0, 'you': 5.0, 'things': 1.0, 'we': 2.0, 'reviews': 2.0, 'she': 2.0, 'baby': 3.0, 'about': 1.0, 'say': 1.0, 'crotch': 1.0, 'its': 1.0, 'clean': 1.0, 'use': 1.0, 'her': 5.0, 'girl': 1.0, 'average': 1.0, 'test': 1.0, 'chair': 3.0, 'weight': 1.0, 'for': 5.0, 'was': 1.0, 'lbs': 1.0, 'can': 2.0, 'so': 4.0, 'high': 1.0, 'to': 11.0, 'against': 1.0, 'tight': 3.0, 'would': 2.0, 'small': 3.0, 'a': 5.0, 'fit': 2.0, 't': 5.0, 'wont': 1.0, 'maybe': 1.0, 'has': 2.0, 'much': 1.0, '16': 1.0, 'butt': 2.0, 'not': 3.0, 'thought': 1.0, 'it': 7.0, 'already': 2.0, 'pressing': 1.0, 'up': 1.0, 'those': 1.0, 'thighs': 1.0, 'now': 2.0, 'be': 2.0, 'room': 3.0, 'want': 1.0, 'bigger': 2.0, 'if': 2.0, 'hand': 1.0, 'buy': 1.0, 'could': 2.0, 'will': 1.0, 'store': 2.0, 'sure': 1.0, 'return': 1.0, 'any': 2.0, 'your': 1.0, 'or': 1.0}
Word element => {'recommend': 1.0, 'buy': 1.0, 'very': 1.0, 'overall': 1.0, 'something': 1.0, 'or': 1.0, 'out': 1.0, 'giant': 1.0, 'some': 1.0, 'this': 1.0, 'babies': 1.0, 'that': 1.0, 'reviews': 1.0, 'have': 1.0, 'small': 1.0, 'the': 1.0, 'baffled': 1.0, 'i': 1.0, 'old': 2.0, 'wonderful': 1.0, '7': 1.0, 'average': 1.0, 'size': 1.0, 'maybe': 1.0, 'tray': 1.0, 'say': 1.0, 'is': 3.0, 'height': 1.0, '27lbs': 1.0, 'removable': 1.0, 'easy': 2.0, 'to': 3.0, 'good': 1.0, 'different': 1.0, 'clean': 2.0, 'adjusts': 1.0, 'in': 1.0, 'at': 1.0, 'three': 1.0, 'for': 2.0, 'it': 2.0, 'month': 2.0, 'my': 1.0, 'son': 1.0, 'an': 1.0, 'too': 1.0, 'tall': 1.0, 'and': 1.0, 'm': 1.0, '34': 1.0, 'chair': 2.0, 'there': 2.0, 'of': 1.0, 'highly': 1.0, 'plenty': 1.0, '20': 1.0, 'room': 1.0, 'him': 1.0, 'a': 2.0, 'we': 1.0}
Word element => {'up': 1.0, 'clean': 1.0, 'super': 1.0, 'sooooo': 1.0, 'reviews': 1.0, 'their': 1.0, 'i': 4.0, 'buy': 1.0, 'old': 1.0, 'of': 1.0, 'so': 1.0, 'debate': 1.0, 'and': 1.0, 'after': 1.0, 'chose': 1.0, 'delivery': 1.0, 'very': 2.0, 'amazon': 1.0, 'about': 1.0, 'long': 1.0, 'off': 1.0, 'in': 2.0, 'this': 1.0, 'based': 1.0, 'perfect': 1.0, 'm': 1.0, 'few': 1.0, 'by': 1.0, 'chair': 2.0, 'liked': 1.0, 'chunk': 1.0, 'to': 2.0, 'happy': 1.0, 'fast': 1.0, 'simple': 1.0, 'assemble': 1.0, 'impressed': 1.0, 'put': 1.0, 'together': 1.0, 'myself': 1.0, 'you': 1.0, 'a': 2.0, 's': 1.0, 'which': 1.0, 'know': 1.0, 'easy': 2.0, 'four': 1.0, 'it': 3.0, 'month': 1.0, 'my': 1.0, 'fits': 1.0}
Word element => {'lbs': 1.0, 'till': 1.0, 'up': 1.0, 'not': 1.0, 'fold': 1.0, 'easy': 2.0, 'perfect': 1.0, 'size': 1.0, 'necesseray': 1.0, 'close': 1.0, 'tray': 2.0, 'anjustments': 1.0, 'hope': 1.0, '50': 1.0, 'and': 5.0, 'enjoying': 1.0, 'am': 1.0, 'you': 2.0, 'recline': 1.0, 'it': 4.0, 'month': 1.0, 'my': 2.0, 'looks': 2.0, 'with': 1.0, 'buying': 1.0, 'this': 4.0, 'heavy': 1.0, 'leave': 1.0, 'as': 4.0, 'our': 1.0, 'any': 1.0, 'least': 1.0, 'for': 2.0, 'move': 1.0, 'decided': 1.0, 'which': 2.0, 'like': 1.0, '5': 1.0, 'before': 1.0, 'market': 1.0, 'old': 1.0, 'wrote': 1.0, 'clean': 2.0, 'to': 8.0, 'high': 3.0, 'a': 4.0, 's': 2.0, 'choose': 2.0, 'find': 1.0, 'read': 1.0, 'honest': 1.0, 'we': 1.0, 'reviews': 1.0, 'about': 1.0, 'limit': 1.0, 'no': 1.0, 'hight': 1.0, 'be': 1.0, 'opinion': 1.0, 'trying': 1.0, 'right': 1.0, 'some': 1.0, 'never': 1.0, 'all': 2.0, 'helped': 1.0, 'are': 1.0, 'will': 2.0, 'happy': 1.0, 'lot': 2.0, 'of': 2.0, 'the': 6.0, 'weight': 1.0, 'chair': 3.0, 'there': 2.0, 'people': 1.0, 'baby': 1.0, 'many': 1.0, 'help': 1.0, 'make': 1.0, 'on': 1.0, '3': 1.0, 'their': 1.0, 'decision': 1.0, 'additional': 1.0, 'i': 4.0, 'well': 1.0, 'them': 1.0, 'has': 2.0, 'makes': 1.0, 'did': 1.0, 'tons': 1.0, 'positions': 1.0, 'research': 1.0, 'finally': 1.0, 'just': 1.0, 'ez': 1.0, 'but': 1.0, 'chose': 1.0, 'fisher': 1.0, 'product': 2.0, 'price': 1.0, 'can': 1.0, 'so': 1.0, 'purchase': 1.0, 'simply': 1.0, 'options': 1.0, 'really': 2.0, 'hard': 1.0, 'needed': 1.0, 'details': 1.0, 'veeeery': 1.0, 'feeding': 1.0, 'need': 1.0, 'comfortable': 1.0, 'nice': 1.0, 'son': 1.0, 'at': 2.0, 'is': 3.0, 'very': 1.0, 'being': 1.0}
Word element => {'recommend': 1.0, 'speak': 1.0, 'can': 1.0, 'so': 1.0, 'up': 1.0, 'folding': 1.0, 'tried': 1.0, 'haven': 1.0, 'from': 1.0, 'to': 2.0, 'smoothest': 1.0, 'for': 2.0, 'blueberries': 1.0, 'wiped': 1.0, 'and': 4.0, 'i': 3.0, 'operation': 1.0, 'finger': 1.0, 'virtually': 1.0, 'chair': 1.0, 'still': 1.0, 'squashed': 1.0, 'raspberries': 1.0, 'would': 1.0, 'new': 1.0, 've': 2.0, 'remove': 1.0, 'looks': 1.0, 'it': 4.0, 'this': 1.0, 'with': 1.0, 'only': 1.0, 'had': 1.0, 'than': 2.0, 'water': 1.0, 'high': 1.0, 'is': 1.0, 'more': 2.0, 'the': 5.0, 'tray': 3.0, 'months': 1.0, 'just': 1.0, 'not': 2.0, 'if': 1.0, 'everything': 1.0, '9': 1.0, 'else': 2.0, 'off': 1.0, 'paint': 1.0, 'nothing': 2.0, 'in': 1.0, 'dishwasher': 1.0, 'about': 1.0, 'no': 1.0, 'space': 1.0, 'that': 1.0, 'stains': 1.0, 'liner': 2.0, 'fits': 1.0, 'competing': 1.0, 't': 1.0, 'we': 2.0, 's': 1.0}
Word element => {'large': 1.0, 'in': 1.0, 'was': 2.0, 'to': 4.0, 'this': 1.0, 'first': 1.0, 'days': 1.0, 'on': 1.0, 'when': 2.0, 'daughter': 1.0, 'i': 6.0, 'dimensions': 1.0, 'watch': 1.0, 'high': 1.0, 'my': 1.0, 'tray': 1.0, 'bought': 1.0, 'the': 5.0, 'larger': 1.0, 'chair': 3.0, 'much': 1.0, 'grand': 1.0, 'love': 1.0, 'assemble': 1.0, 'for': 1.0, 'easy': 2.0, 'it': 4.0, 'she': 1.0, 'then': 1.0, 't': 1.0, 'a': 1.0, 'little': 1.0, 'didn': 1.0, 'than': 1.0, 'but': 1.0, 'secure': 1.0, 'pay': 1.0, 'attention': 1.0, 'expected': 1.0, 'has': 1.0, 'received': 1.0, 'adjust': 1.0, 'worked': 1.0, 'out': 1.0, 'her': 1.0, 'clean': 1.0, 'use': 1.0, 'wonderful': 1.0, 'is': 2.0, 'too': 1.0, 'and': 1.0}
Word element => {'happy': 1.0, 'body': 1.0, 'do': 1.0, 'sometimes': 1.0, 'place': 1.0, 'foods': 1.0, 'up': 2.0, 'pick': 1.0, 'order': 1.0, 'reach': 1.0, 'hard': 1.0, 'seems': 1.0, 'then': 1.0, 'wipe': 1.0, 'fact': 1.0, '10': 1.0, 'purchase': 1.0, 'for': 6.0, 'probably': 1.0, 'your': 1.0, '18': 1.0, 'chairs': 1.0, 'features': 1.0, 'this': 3.0, 'flat': 1.0, 'also': 1.0, 'us': 1.0, 'comfortably': 1.0, 'glad': 1.0, 'has': 1.0, 'them': 1.0, 'since': 3.0, 'around': 1.0, 'in': 7.0, 'seat': 1.0, 'on': 9.0, 'put': 3.0, 'floor': 1.0, 'outgrow': 1.0, 'problem': 1.0, 'sections': 1.0, 'that': 4.0, 'because': 1.0, 'completely': 1.0, 'at': 2.0, 'cloth': 1.0, 'buckle': 2.0, 'damp': 1.0, 'every': 2.0, 'chose': 1.0, 'parts': 1.0, 'pack': 1.0, 'weighs': 1.0, 'think': 1.0, 'child': 2.0, 'immediately': 1.0, 'old': 2.0, 'even': 1.0, 'of': 6.0, 'the': 24.0, 'enough': 1.0, 'but': 2.0, 'when': 3.0, 'sit': 1.0, 'ordered': 1.0, 'with': 4.0, 'too': 1.0, 'price': 1.0, 'try': 1.0, 'one': 3.0, 'just': 4.0, 'and': 11.0, 'comfy': 1.0, 'nice': 1.0, 'if': 2.0, 'great': 2.0, 'arrived': 1.0, 'grow': 1.0, 'she': 4.0, 'screws': 2.0, 'floors': 1.0, 'clean': 1.0, 'a': 12.0, 'by': 2.0, 'after': 3.0, 'tray': 6.0, 'about': 1.0, 'behind': 1.0, 'part': 1.0, 'baby': 3.0, 'moment': 1.0, 'no': 3.0, 'years': 1.0, 'pounds': 1.0, 'etc': 1.0, 'feature': 2.0, 'or': 2.0, 'cause': 1.0, 'i': 20.0, 'removable': 1.0, 'sent': 1.0, 'm': 1.0, 'snug': 1.0, 's': 5.0, 'really': 1.0, 'dishwasher': 1.0, 'looks': 1.0, 'fits': 1.0, 'all': 4.0, 'other': 2.0, 'finger': 1.0, 'fancy': 1.0, 'initiallly': 1.0, 'they': 1.0, 'issue': 1.0, 'find': 2.0, 'very': 2.0, 'fisher': 1.0, 'eat': 1.0, 'bit': 2.0, 'cups': 1.0, 'booster': 1.0, 'to': 10.0, 'hoping': 1.0, 'washable': 1.0, 'wash': 2.0, 'shop': 1.0, 'use': 1.0, 'her': 5.0, 'off': 1.0, 'hand': 1.0, 'buy': 1.0, 'wants': 1.0, 'straps': 2.0, 'like': 2.0, 'new': 1.0, 'top': 1.0, 'time': 1.0, 'above': 1.0, 't': 6.0, 'easy': 1.0, 'fit': 2.0, 'further': 1.0, 'pushes': 1.0, 'still': 2.0, 'don': 2.0, 'cover': 1.0, 'will': 3.0, 'travel': 1.0, 'anytime': 1.0, 'months': 2.0, 'storage': 1.0, 'there': 1.0, 'chair': 5.0, 'comfortable': 1.0, 'say': 1.0, 'more': 1.0, 'wouldn': 1.0, 'want': 1.0, 'it': 14.0, 'be': 2.0, 'often': 1.0, 'able': 1.0, 'you': 2.0, 'rainforrest': 1.0, 'escape': 1.0, 'out': 2.0, 'added': 1.0, 'back': 1.0, 'bar': 2.0, 'would': 1.0, 'first': 1.0, 'two': 1.0, 'doubt': 1.0, 'tummy': 1.0, 'whether': 1.0, 'not': 1.0, 'forward': 1.0, 'never': 2.0, 'take': 1.0, 'called': 1.0, 'we': 1.0, 'moving': 1.0, 'my': 4.0, 'are': 2.0, 'room': 1.0, 'who': 1.0, 'have': 4.0, 'hair': 1.0, 'three': 1.0, 'into': 1.0, 'am': 1.0, 'age': 1.0, 'meal': 1.0, 'nicely': 1.0, 'table': 1.0, 'closer': 1.0, 'comment': 1.0, 'tile': 1.0, 'thing': 1.0, 'highchair': 1.0, 'cleanup': 1.0, 'carpet': 1.0, 'harder': 1.0, 've': 1.0, 'folded': 1.0, 'so': 2.0, 'is': 6.0, 'turn': 1.0, 'can': 2.0, 'slightly': 1.0, 'irritating': 1.0, 'how': 1.0, 'safety': 1.0, 'high': 1.0, 'located': 1.0, 'soon': 1.0, 'stomach': 1.0}
Word element => {'precio': 1.0, 'buen': 1.0, 'recomendablemuy': 1.0, 'ntilde': 1.0, 'muy': 1.0, 'indicadas': 1.0, '100': 2.0, 'son': 1.0, 'very': 1.0, 'are': 1.0, 'para': 1.0, 'listed': 1.0, 'ni': 1.0, 'priceexcelente': 1.0, 'time': 1.0, 'el': 1.0, 'on': 1.0, 'specifications': 1.0, 'excellent': 1.0, 'product': 1.0, 'arrived': 1.0, 'child': 1.0, 'recommendedvery': 1.0, 'comfortable': 1.0, 'for': 1.0, 'tiempo': 1.0, 'good': 1.0, 'o': 1.0, 'la': 1.0, 'producto': 1.0, 'comoda': 1.0, 'llego': 1.0, 'the': 1.0, 'especificaciones': 1.0, 'a': 1.0, 'las': 1.0}
Word element => {'messy': 1.0, 'eaters': 1.0, 'this': 1.0, 'recommend': 1.0, 'highly': 1.0, 'been': 1.0, 'single': 1.0, 'hot': 1.0, 'is': 1.0, 'until': 1.0, 'it': 3.0, 'realize': 1.0, 'friday': 1.0, 'on': 2.0, 'forget': 1.0, 'not': 2.0, 'just': 2.0, 'for': 1.0, 'love': 3.0, 'childcare': 1.0, 'afternoon': 1.0, 'year': 2.0, 'from': 1.0, 'home': 1.0, 'bought': 1.0, 'over': 1.0, 'don': 1.0, 'soiled': 1.0, 'in': 1.0, 'ease': 1.0, 'two': 1.0, 'i': 4.0, 'of': 2.0, 'them': 1.0, 'run': 1.0, 'out': 1.0, 's': 1.0, 't': 1.0, 'a': 4.0, 'simplicity': 1.0, 'are': 1.0, 'getting': 1.0, 'highchairs': 1.0, 'any': 1.0, 'all': 1.0, 'to': 1.0, 'seat': 2.0, 'our': 1.0, 'kiddos': 1.0, 'so': 1.0, 'these': 2.0, 'the': 4.0, 'washcloth': 1.0, 'used': 1.0, 'reclines': 1.0, 'monday': 1.0, 'even': 1.0, 'only': 1.0, 'and': 8.0, 'too': 1.0, 'but': 1.0, 'off': 2.0, 'clean': 1.0, 'last': 1.0, 'wipes': 2.0, 'fabric': 1.0, 'they': 1.0, 'still': 1.0, 'stain': 1.0, 'right': 1.0, 'takes': 1.0, 'heavily': 2.0, 'look': 1.0, 'brand': 1.0, 'new': 1.0, 'everything': 2.0, 'if': 1.0}
Word element => {'recommend': 1.0, 'learned': 1.0, 'lesson': 1.0, 'personally': 1.0, 'instead': 1.0, 'knew': 1.0, 'if': 1.0, 'afterwards': 1.0, 'chemical': 1.0, 'like': 1.0, 'smells': 1.0, 'straps': 1.0, 'on': 3.0, 'minutes': 1.0, 'was': 1.0, 'heights': 1.0, 'has': 1.0, 'chair': 5.0, 'doesn': 1.0, 'waist': 1.0, 'glue': 3.0, 'spare': 1.0, 'likes': 1.0, 't': 2.0, 'a': 3.0, 'adjustable': 1.0, 'other': 2.0, 'careful': 1.0, 'is': 4.0, 'say': 1.0, 'only': 2.0, 'harness': 1.0, 'residue': 2.0, 'it': 4.0, 'remove': 1.0, 'first': 1.0, 'smooth': 1.0, 'with': 1.0, 'this': 2.0, 'have': 3.0, 'than': 1.0, 'assemble': 1.0, 'love': 3.0, 'for': 1.0, 'kinda': 1.0, 'not': 1.0, 'and': 4.0, 'get': 1.0, 'but': 2.0, 'can': 2.0, 'surface': 1.0, 'everything': 1.0, 'being': 1.0, 'positions': 1.0, 'thing': 1.0, 'i': 13.0, 'two': 1.0, 'me': 1.0, 'my': 3.0, 'to': 8.0, 'high': 2.0, 'regret': 1.0, 'be': 2.0, '15': 1.0, 'trap': 1.0, 'sticks': 1.0, 'that': 3.0, 'because': 2.0, 'kids': 1.0, 'clever': 1.0, 'idea': 1.0, 'desperation': 1.0, 'alright': 1.0, 'option': 1.0, 'strap': 1.0, 'food': 1.0, 'need': 1.0, 'or': 1.0, 'tray': 5.0, 'one': 1.0, 'wide': 1.0, '3': 2.0, 'catch': 1.0, 'got': 2.0, 'daughter': 1.0, 'seat': 1.0, 'in': 2.0, 'shining': 1.0, 'peel': 1.0, 'prefer': 1.0, 'sticker': 1.0, 'the': 15.0, 'of': 4.0, 'hurry': 1.0, 'sticky': 1.0, 'out': 1.0, 'finally': 1.0, 'tried': 1.0, 'rid': 2.0, 'wd': 1.0, '40': 1.0, 'also': 3.0, 'crumbs': 1.0, 'coat': 1.0, 'ended': 1.0, 'takes': 1.0, 'up': 1.0, 'ordering': 1.0, 'just': 1.0, 'safe': 1.0}
Word element => {'deal': 1.0, 'what': 1.0, 'free': 1.0, 'prime': 1.0, 'price': 1.0, 'clean': 1.0, 'easy': 2.0, 'himself': 1.0, 'assemble': 1.0, 'feed': 1.0, 'wants': 1.0, 'old': 1.0, 'was': 1.0, 'to': 3.0, 'mo': 1.0, '10': 1.0, 'excellent': 1.0, 'not': 1.0, 'practical': 1.0, 'or': 1.0, 'chairs': 1.0, 'chair': 1.0, 'amazon': 2.0, 'high': 1.0, 'that': 2.0, 'were': 1.0, 'the': 1.0, '2': 1.0, 'bought': 1.0, 'a': 2.0, 'shipping': 1.0, 'from': 1.0, 'as': 1.0, 'very': 2.0, 'but': 1.0, 'ad': 1.0, 'this': 1.0, 'for': 1.0, 'beautiful': 1.0, 'active': 1.0, 'functional': 1.0, 'little': 1.0}
Word element => {'means': 1.0, 'way': 1.0, 'size': 1.0, 'normal': 1.0, 'items': 1.0, 'these': 1.0, 'disinfect': 1.0, 'still': 1.0, 'by': 3.0, 'but': 1.0, 'can': 1.0, 'kinda': 1.0, 'not': 2.0, 'my': 2.0, 'fit': 1.0, 'is': 1.0, 'hand': 1.0, 'washer': 1.0, 'like': 2.0, 'thing': 1.0, 'only': 1.0, 'plastic': 1.0, 'deal': 1.0, 'the': 4.0, 'roomy': 1.0, 'material': 1.0, 'really': 1.0, 'dishwasher': 2.0, 'in': 3.0, 'said': 1.0, 'didn': 1.0, 'and': 3.0, 'big': 1.0, 'great': 1.0, 'it': 7.0, 'before': 1.0, 'tray': 1.0, 'one': 3.0, 'i': 12.0, 'lots': 1.0, '300': 1.0, 'high': 2.0, 'dish': 1.0, 't': 3.0, 's': 4.0, 'a': 4.0, 'chair': 1.0, 'think': 1.0, 'chairs': 1.0, 'at': 2.0, 'either': 1.0, 'ranging': 1.0, 'wash': 1.0, 'don': 1.0, 'up': 1.0, 'of': 1.0, 'looked': 2.0, 'from': 1.0, 'with': 1.0, 'mind': 1.0, 'buying': 1.0, 'doesn': 1.0, 'was': 2.0, 'any': 1.0, 'to': 2.0, 'because': 1.0, 'ended': 1.0, 'cute': 1.0, 'enough': 1.0, 'easy': 1.0, 'clean': 1.0, 'this': 3.0, 'frankly': 1.0, 'sick': 1.0, 'small': 1.0, 'have': 2.0, 'ad': 1.0, 'buy': 1.0, 'looking': 1.0, 'price': 2.0, '60': 1.0, 'm': 1.0, 'getting': 1.0, 'did': 1.0}
Word element => {'years': 1.0, '4': 1.0, 'your': 1.0, 'didn': 1.0, 'zoo': 1.0, 'luv': 1.0, '1': 1.0, '3': 2.0, 'chairand': 1.0, 'blue': 1.0, 'sky': 1.0, 'planet': 1.0, 'precious': 1.0, 'price': 1.0, 'afisher': 1.0, 'till': 2.0, 'anyway': 1.0, 'u': 1.0, 'use': 2.0, 'be': 1.0, 'will': 2.0, 'not': 3.0, 'decorated': 1.0, 'modern': 1.0, 'reviewers': 1.0, 'belts': 1.0, 'main': 1.0, 'space': 1.0, 'which': 1.0, 'tray': 2.0, 'happy': 2.0, 'one': 1.0, 'months': 1.0, 'like': 2.0, 'covers': 1.0, 'it': 7.0, 'friendly': 1.0, 'now': 2.0, 'brown': 2.0, 'said': 1.0, 'removable': 1.0, 'or': 1.0, 'food': 1.0, 'more': 1.0, 'is': 4.0, 'say': 1.0, 'around': 1.0, 'the': 12.0, 'able': 1.0, 'you': 4.0, 'when': 1.0, 'fun': 1.0, 'in': 1.0, 'm': 2.0, 'adult': 1.0, 'chair': 6.0, 'there': 1.0, 'with': 2.0, 'this': 3.0, 'perfect': 1.0, 'really': 2.0, 'makes': 1.0, 'old': 2.0, 'adjust': 1.0, 'he': 6.0, 'i': 5.0, 'colors': 1.0, 'bright': 1.0, 'design': 1.0, 'fram': 1.0, 'also': 2.0, 'buy': 1.0, 'straps': 1.0, 'cons': 1.0, 'are': 1.0, 'bad': 1.0, 'cute': 1.0, 'chubby': 1.0, 'but': 3.0, 'print': 1.0, 'height': 1.0, 'and': 6.0, 'just': 1.0, 'wipe': 1.0, 'baby': 3.0, 'tried': 1.0, 'own': 1.0, 'off': 1.0, 'recommend': 1.0, 'dirty': 1.0, 'if': 2.0, 'have': 1.0, 'high': 1.0, 'to': 3.0, 'area': 1.0, 'reclines': 1.0, 'fabric': 2.0, 'for': 2.0, 'maybe': 1.0, 's': 5.0, 'small': 1.0, 'a': 3.0, 'fit': 3.0, 't': 2.0, 'go': 1.0, '2': 2.0, 'thing': 1.0, 'that': 2.0, 'because': 1.0, 'daily': 1.0, 'open': 1.0, 'can': 1.0, 'so': 1.0, 'would': 1.0, 'boy': 2.0, 'seating': 1.0, 'doesn': 1.0, 'under': 1.0, 'me': 1.0, 'entire': 1.0, 'my': 2.0, 'thight': 1.0, 'other': 1.0, 'fits': 1.0, 'less': 1.0, '7': 1.0, 'great': 1.0, 'think': 1.0}
Word element => {'wipes': 1.0, 'grooves': 1.0, 'tiny': 1.0, 'no': 1.0, 'clean': 2.0, 'recommend': 1.0, 'easy': 1.0, 'used': 1.0, 'highchair': 1.0, 'fabric': 1.0, 'have': 1.0, 'easily': 1.0, 'namebrand': 1.0, 'peg': 1.0, 'perego': 1.0, 'the': 2.0, 'prima': 1.0, 'fancy': 1.0, 'i': 2.0, 'one': 1.0, 'and': 2.0, 'high': 1.0, 'highly': 1.0, 'price': 1.0, 'tag': 1.0, 'this': 1.0, 'it': 2.0, 'to': 2.0, 'was': 1.0, 'but': 1.0, 'crap': 1.0, 'is': 1.0, 'really': 1.0}
Word element => {'kitchen': 1.0, 'thei': 1.0, 'in': 1.0, 'space': 1.0, 'upa': 1.0, 'of': 1.0, 'fold': 1.0, 'take': 1.0, 'loves': 1.0, 'grandson': 1.0, 'too': 1.0, 'it': 3.0, 'this': 1.0, 'he': 1.0, 'parents': 1.0, 'love': 1.0, 'for': 1.0, 'and': 2.0, 'as': 1.0, 'our': 1.0, 'bought': 1.0, 'is': 1.0, 'lot': 1.0, 'easy': 2.0, 'to': 2.0, 'small': 1.0, 'unfold': 1.0, 'clean': 1.0, 'his': 1.0, 'does': 1.0, 'not': 1.0}
Word element => {'had': 1.0, 'having': 1.0, 'after': 1.0, 'chairs': 1.0, 'wood': 1.0, 'looking': 1.0, 'uncomfortable': 1.0, 'expensive': 1.0, 'fancy': 1.0, 'those': 1.0, 'all': 1.0, 'high': 1.0, 'to': 1.0, 'and': 6.0, 'prairie': 1.0, 's': 2.0, 'a': 3.0, 't': 3.0, 'we': 1.0, 'in': 2.0, 'actually': 2.0, 'love': 1.0, 'cloth': 1.0, 'style': 1.0, 'house': 1.0, 'enough': 1.0, 'cover': 1.0, 'but': 2.0, 'anytime': 1.0, 'stable': 1.0, 'isn': 1.0, 'right': 1.0, 'takes': 1.0, 'decent': 1.0, 'purchased': 1.0, 'size': 1.0, 'would': 1.0, 'bug': 1.0, 'when': 2.0, 'i': 6.0, 'pattern': 1.0, 'one': 2.0, 'price': 1.0, 'messy': 2.0, 'understand': 1.0, 'extras': 1.0, 'our': 1.0, 'how': 1.0, 'horrible': 1.0, 'months': 1.0, 'get': 1.0, 'so': 3.0, 'time': 1.0, 'monster': 1.0, 'glad': 2.0, 'it': 3.0, 'am': 1.0, 'eating': 1.0, 'this': 2.0, 'stomach': 1.0, 'picked': 1.0, 'is': 1.0, 'of': 1.0, 'the': 7.0, 'deal': 1.0, 'big': 1.0, 'just': 1.0, 'life': 1.0, 'mostly': 1.0, 'that': 1.0, 'because': 1.0, 'looks': 1.0, 'my': 1.0, 'porous': 1.0, 'got': 1.0, 'daughter': 1.0, '60': 1.0, 'was': 2.0, 'circles': 1.0, 'six': 1.0, 'old': 1.0, 'not': 1.0, 'puking': 1.0, 'non': 1.0, 'kept': 1.0, 'really': 1.0, 'soft': 1.0, 'fed': 1.0, 'clean': 1.0, 'no': 1.0, 'about': 1.0, 'are': 1.0, 'gets': 1.0, 'great': 1.0, 'throw': 1.0, 'her': 1.0, 'wash': 1.0, 'wipe': 1.0, 'else': 1.0, 'everything': 1.0, 'with': 1.0, '1920': 1.0, 'every': 1.0, 'damp': 1.0, 'which': 1.0, 'didn': 2.0, 'seconds': 1.0, 'straps': 1.0, 'buy': 1.0}
Word element => {'this': 1.0, 'recommend': 1.0, 'definitely': 1.0, 'i': 1.0, 'a': 1.0, 's': 1.0, 'and': 2.0, 'product': 1.0, 'would': 1.0, 'at': 1.0, 'was': 1.0, 'everything': 1.0, 'promised': 1.0, 'more': 1.0, 'the': 1.0, 'great': 1.0, 'it': 2.0, 'steal': 1.0, 'price': 1.0}
Word element => {'spacious': 1.0, 'chair': 1.0, 'high': 1.0, 'okay': 1.0, 'an': 1.0, 'just': 1.0, 'look': 1.0, 'do': 1.0, 'neck': 1.0, 'cut': 1.0, 'they': 1.0, 'rubber': 1.0, 'in': 2.0, 've': 1.0, 'also': 1.0, 'highchair': 1.0, 'it': 3.0, 'wish': 1.0, 'this': 1.0, 'with': 1.0, 'old': 1.0, 'i': 4.0, 'cramped': 1.0, 'on': 1.0, 'when': 2.0, 'm': 2.0, 'and': 1.0, 'too': 1.0, 'little': 2.0, 'into': 1.0, 'been': 1.0, 'a': 2.0, 'at': 1.0, 'since': 2.0, 'comfortable': 1.0, 'pulled': 1.0, 'using': 1.0, 'place': 1.0, 'the': 6.0, 'my': 1.0, 'pull': 1.0, 'feels': 1.0, 'son': 1.0, 'four': 1.0, 'all': 4.0, 'to': 1.0, 'seat': 1.0, 'more': 1.0, 'is': 1.0, 'caught': 1.0, 'not': 2.0, 'months': 1.0, 'tray': 2.0, 'straps': 1.0, 'way': 1.0, 'him': 2.0, 'trying': 1.0, 'out': 2.0, 'sometimes': 1.0, 'thighs': 1.0, 'his': 2.0, 'get': 1.0, 'bottom': 1.0, 'of': 1.0, 'was': 2.0, 'crazy': 1.0, 'about': 1.0}
Word element => {'practical': 1.0, 'being': 1.0, 'life': 1.0, 'your': 1.0, 'look': 1.0, 'that': 2.0, 'haven': 1.0, 'far': 1.0, 'for': 2.0, 'towels': 1.0, 'paper': 1.0, 'yourself': 1.0, 'do': 1.0, 'try': 1.0, 'first': 1.0, 'day': 1.0, 'during': 1.0, 'because': 1.0, 'almost': 1.0, 'wash': 1.0, 'use': 1.0, 'favor': 1.0, 'plastic': 3.0, 'not': 1.0, 'feeding': 2.0, 'every': 2.0, 'can': 2.0, 'food': 1.0, 'single': 1.0, 'very': 1.0, 'down': 2.0, 'smudged': 1.0, 'liked': 1.0, 'dirty': 1.0, 'double': 1.0, 'it': 7.0, 'found': 1.0, 'this': 3.0, 'with': 4.0, 'come': 1.0, 'born': 1.0, 'recommend': 1.0, 'was': 2.0, 'high': 2.0, 'fits': 1.0, 'my': 1.0, 'after': 1.0, 'cute': 1.0, 'solids': 1.0, 'so': 2.0, 'reality': 1.0, 'even': 2.0, 'got': 1.0, 'cover': 2.0, 'pad': 2.0, 'chair': 3.0, 'simplifying': 1.0, 'present': 1.0, 'and': 6.0, 'hate': 2.0, 'thought': 1.0, 'i': 10.0, 'seem': 1.0, 'son': 1.0, 'gets': 1.0, 'the': 5.0, 'of': 1.0, 'once': 1.0, 'comfortable': 1.0, 'padded': 1.0, 'night': 1.0, 'wipe': 2.0, 'started': 1.0, 'to': 3.0, 'as': 1.0, 'seat': 1.0, 've': 1.0, 'in': 2.0, 'looked': 1.0, 'while': 1.0, 't': 2.0, 's': 1.0, 'a': 7.0, 'might': 1.0, 'using': 1.0, 'like': 1.0, 'fabric': 2.0, 'good': 1.0, 'you': 1.0, 'when': 1.0, 'idea': 1.0, 'huge': 1.0, 'one': 1.0, 'tray': 2.0, 'hang': 1.0, 'third': 1.0, 'out': 1.0}
Word element => {'soon': 1.0, 'check': 1.0, 'sent': 1.0, 'sure': 1.0, 'return': 2.0, 'even': 1.0, 'day': 1.0, 'second': 1.0, 'pounds': 1.0, 'place': 1.0, 'click': 2.0, 'really': 1.0, 'some': 1.0, 'needs': 1.0, 'idea': 1.0, 'eating': 1.0, 'while': 1.0, 'hug': 1.0, 'just': 1.0, 'spot': 1.0, 'yes': 1.0, 'all': 1.0, 'where': 1.0, 'besides': 1.0, 'manufacturing': 1.0, 'try': 1.0, 'talking': 1.0, 'into': 2.0, 'seem': 1.0, 'helpful': 2.0, 'send': 1.0, 'slots': 2.0, 'cover': 1.0, 'so': 2.0, 'clips': 1.0, 'jumperoo': 1.0, 'u': 1.0, 'problem': 2.0, 'anywhere': 1.0, 'though': 1.0, 'from': 1.0, 'hold': 2.0, 'animals': 1.0, 'between': 1.0, 'left': 1.0, 'safety': 1.0, 'away': 1.0, 'hide': 1.0, 'someone': 1.0, 'but': 5.0, 'maybe': 1.0, 'bottom': 1.0, 'fold': 2.0, 'then': 2.0, 'days': 1.0, 'without': 1.0, 'tell': 1.0, 'its': 1.0, 'lock': 1.0, 'are': 2.0, 'hazard': 1.0, 'squished': 1.0, 'and': 11.0, 'average': 1.0, 'did': 1.0, 'makes': 1.0, 'keep': 1.0, 'grow': 2.0, 'as': 6.0, 'to': 22.0, 'falling': 1.0, 'or': 4.0, 'buckles': 1.0, 'tightly': 1.0, 'luv': 1.0, 'room': 2.0, '5': 1.0, 'have': 5.0, 'not': 13.0, 'does': 7.0, 'tries': 1.0, 'them': 2.0, 'has': 2.0, 'right': 1.0, 'easier': 2.0, 'me': 1.0, 'my': 5.0, 'what': 2.0, 'when': 1.0, 'things': 1.0, 'push': 2.0, 'you': 6.0, 'for': 4.0, 'son': 3.0, 'loves': 1.0, 'difficult': 1.0, 'a': 6.0, 'it': 25.0, 'christmas': 1.0, 'this': 5.0, '130': 1.0, 'wish': 2.0, 'got': 1.0, 'baby': 2.0, 'about': 2.0, 'unless': 1.0, 'tray': 1.0, 'was': 6.0, 'well': 2.0, 'i': 12.0, 'little': 1.0, 'nice': 1.0, 'two': 3.0, 'old': 1.0, 'closet': 2.0, 'seat': 6.0, 'in': 7.0, 'patterns': 1.0, 'look': 1.0, 'at': 2.0, 'is': 6.0, 'comfortable': 1.0, 'say': 1.0, 'people': 1.0, 'improvements': 1.0, 'move': 4.0, 'that': 3.0, 'they': 3.0, 'sturdy': 1.0, 'bit': 1.0, 'writing': 1.0, 'easy': 3.0, 'months': 1.0, 'get': 1.0, 'zoo': 1.0, 'clean': 1.0, 'like': 3.0, 'matter': 1.0, 'than': 1.0, 'way': 2.0, 'were': 1.0, 'full': 1.0, 'together': 1.0, 'pull': 1.0, 'their': 1.0, 'wheels': 1.0, 'out': 2.0, 'the': 30.0, 'of': 3.0, 'directions': 3.0, 'wanted': 1.0, 'colors': 2.0, 'onto': 3.0, 'price': 3.0, 'weight': 1.0, 'chair': 5.0, 'put': 2.0, 'match': 1.0, '16': 1.0, 'much': 1.0, 'do': 4.0, 'only': 1.0, 'pound': 1.0, 'on': 5.0, 'propped': 1.0, 'bigger': 1.0, 'still': 1.0, 'turn': 1.0, 'if': 4.0, 'would': 2.0, 'either': 1.0, 'nicer': 1.0, 'had': 3.0, 'good': 1.0, 'gift': 1.0, 'side': 3.0, 'handles': 1.0, 'button': 1.0, 'refund': 1.0, 'fisher': 3.0, 'front': 2.0, 'insert': 1.0, 'slide': 1.0, 'open': 2.0, 'work': 1.0, 'hard': 1.0, 'period': 1.0, 'back': 1.0, 'received': 1.0, 'also': 1.0, 'folded': 1.0, 'folding': 1.0, 'says': 1.0, 'something': 1.0, 'up': 1.0, 'very': 5.0, 'lay': 1.0, 'down': 1.0}
Word element => {'yet': 1.0, 'close': 1.0, 'haven': 1.0, 'have': 1.0, 'seem': 1.0, 'need': 1.0, 'about': 1.0, 'move': 1.0, 'looked': 1.0, 'from': 1.0, 'hard': 1.0, 'right': 1.0, 'pop': 1.0, 'easier': 1.0, 'do': 1.0, 'much': 1.0, 'tray': 2.0, 'everything': 1.0, 'very': 1.0, 'little': 2.0, 'don': 1.0, 'up': 1.0, 'wonderful': 2.0, 'on': 1.0, 'height': 1.0, 'see': 1.0, 'couldn': 1.0, 'you': 1.0, 'dishwasher': 1.0, 'in': 1.0, 'regular': 1.0, 'of': 2.0, 'often': 1.0, 'my': 1.0, 'high': 1.0, 'hanging': 1.0, 'the': 13.0, 'great': 1.0, 'with': 1.0, 'this': 2.0, 'assemble': 1.0, 'doesn': 1.0, 'was': 2.0, 'had': 1.0, 'bit': 1.0, 'so': 3.0, 'between': 1.0, 'because': 2.0, '14': 1.0, 'help': 1.0, 'chair': 5.0, 'far': 1.0, 'even': 1.0, 'easy': 2.0, 'large': 1.0, 'just': 1.0, 'delivered': 1.0, 'base': 1.0, 'yesterday': 1.0, 'and': 6.0, 'higher': 1.0, 'she': 1.0, 'it': 6.0, 'month': 1.0, 'cover': 2.0, 'makes': 1.0, 'old': 1.0, 'i': 3.0, 'which': 1.0, 'like': 1.0, 'that': 4.0, 'seat': 1.0, 'to': 7.0, 'all': 1.0, 'wraps': 1.0, 'is': 3.0, 'fall': 1.0, 'around': 1.0, 'but': 2.0, 'food': 1.0, 'can': 3.0, 'sit': 1.0, 'way': 1.0, 'straps': 2.0, 'saver': 1.0, 'are': 1.0, 'adjust': 2.0, 'fabric': 1.0, 'clean': 2.0, 't': 5.0, 's': 1.0, 'we': 2.0, 'a': 4.0, 'option': 1.0, 'space': 1.0}
Word element => {'comfortably': 1.0, 'nicely': 1.0, 'blow': 1.0, 'bottle': 1.0, 'this': 1.0, 'know': 1.0, 'is': 1.0, 'plastic': 1.0, 'straps': 1.0, 'hazard': 1.0, 'choking': 1.0, 'product': 1.0, 'children': 1.0, 'how': 1.0, 'weird': 1.0, 'was': 1.0, 'baby': 1.0, 'deal': 1.0, 'big': 1.0, 'yourself': 1.0, 'up': 1.0, 'fabric': 1.0, 'for': 1.0, 'holes': 1.0, 'pole': 1.0, 'directions': 1.0, 'no': 2.0, 'there': 2.0, 'minor': 1.0, 'clean': 2.0, 'again': 1.0, 'forward': 1.0, 'tip': 1.0, 'do': 2.0, 'front': 1.0, 'fun': 1.0, 'wiped': 2.0, 'from': 1.0, 'roll': 2.0, 'when': 3.0, 'you': 8.0, 'smoothly': 1.0, 'work': 1.0, 'but': 2.0, 'doesn': 3.0, 'unless': 2.0, 'tray': 2.0, 'though': 1.0, 'cons': 1.0, 'caps': 2.0, 'way': 1.0, 'them': 1.0, 'try': 2.0, 'dropping': 1.0, 'mostly': 1.0, '5': 1.0, 'before': 1.0, 'on': 5.0, 'using': 1.0, 'annoyance': 1.0, 'just': 4.0, 'ground': 1.0, 'a': 7.0, 's': 5.0, 'going': 2.0, 'loose': 1.0, 'month': 1.0, 'already': 1.0, 'thought': 1.0, 'it': 17.0, 'trying': 1.0, 'play': 1.0, 'and': 7.0, 'room': 1.0, 'clicks': 1.0, 'get': 3.0, 'old': 1.0, 'well': 1.0, 'i': 3.0, 'adjusts': 1.0, 'mechanism': 1.0, 'used': 1.0, 'without': 1.0, 'place': 2.0, 'toys': 1.0, 'who': 1.0, 'keep': 1.0, 'somehow': 1.0, 'have': 3.0, 'adjustment': 1.0, 'begin': 1.0, 're': 3.0, 'solids': 1.0, 't': 3.0, 'rest': 2.0, 'clicking': 1.0, 'now': 1.0, 'smooth': 1.0, 'with': 1.0, 'slots': 1.0, 'fold': 1.0, 'he': 1.0, 'screwed': 1.0, 'pull': 1.0, 'wheels': 1.0, 'out': 3.0, 'chair': 2.0, 'couple': 2.0, 'pros': 1.0, 'create': 1.0, 'locking': 1.0, 'back': 3.0, 'the': 22.0, 'of': 6.0, 'we': 3.0, 'leg': 1.0, 'then': 1.0, 'need': 1.0, 'or': 1.0, 'falling': 1.0, 'drink': 1.0, 'be': 2.0, 'slides': 1.0, 'seat': 1.0, 'in': 4.0, 'right': 3.0, 'maneuver': 1.0, 'more': 1.0, 'settings': 1.0, 'sliding': 1.0, 'would': 1.0, 'into': 1.0, 'feeding': 1.0, 'backwards': 1.0, 'can': 2.0, 'so': 2.0, 'to': 13.0, 'against': 1.0, 'folding': 1.0, 'lean': 1.0, 'wall': 1.0, 've': 1.0, 'down': 1.0, 'first': 1.0, 'lock': 2.0, 'are': 5.0, 'had': 1.0, 'screws': 3.0, 'nicer': 1.0, 'an': 1.0, 'diaper': 1.0, 'as': 2.0, 'awkward': 1.0, 'course': 1.0, 'if': 1.0, 'they': 2.0, 'were': 1.0, 'easily': 2.0, 'fall': 1.0, 'that': 2.0, 'because': 2.0}
Word element => {'recommend': 1.0, 'were': 1.0, 'being': 1.0, 'wrote': 1.0, 'people': 1.0, 'those': 1.0, 'know': 1.0, 'fantastic': 1.0, 'an': 1.0, 'cockpit': 1.0, 'completely': 2.0, 'climbing': 1.0, 'first': 3.0, 'hated': 1.0, 'holes': 1.0, 'they': 2.0, 'between': 1.0, 'since': 1.0, 'never': 2.0, 'when': 2.0, 'chairsomething': 1.0, 'straps': 3.0, 'ridiculous': 1.0, 'importantly': 1.0, 'section': 1.0, 'months': 2.0, 'down': 2.0, 'get': 3.0, 'however': 1.0, 'wipe': 2.0, 'baby': 6.0, 'many': 1.0, 'behind': 1.0, 'about': 3.0, 'padding': 1.0, 'in': 11.0, 'seat': 7.0, 'looking': 1.0, 'using': 1.0, 'surely': 1.0, 'what': 2.0, 'fact': 1.0, 'out': 4.0, 'rather': 1.0, 'leg': 1.0, 'we': 1.0, 'reviews': 1.0, 'fine': 1.0, 'old': 4.0, 'of': 8.0, 'the': 17.0, 'every': 2.0, 'person': 1.0, 'used': 2.0, 'nearly': 1.0, 'time': 2.0, 'scared': 1.0, 'this': 5.0, 'few': 1.0, 'second': 2.0, 'dried': 1.0, 'single': 1.0, 'originally': 1.0, 'bauer': 1.0, 'by': 1.0, 't': 7.0, 'easy': 3.0, 'fit': 2.0, 'will': 1.0, 'summary': 1.0, 'a': 16.0, 'small': 6.0, 'for': 5.0, 'love': 1.0, 'had': 6.0, 'to': 14.0, 'high': 8.0, 'chair': 11.0, 'are': 1.0, 'my': 12.0, 'me': 1.0, 'legs': 2.0, 'then': 2.0, 'sat': 1.0, 'well': 1.0, 'characteristic': 1.0, 'child': 3.0, 'year': 2.0, 'clean': 2.0, 'cool': 1.0, 'was': 7.0, 'eddie': 1.0, 'didn': 4.0, 'complaints': 1.0, 'you': 2.0, 'than': 1.0, 'all': 2.0, 'way': 1.0, 'wooden': 2.0, 'easily': 1.0, 'that': 8.0, 'because': 1.0, 'start': 1.0, 'colors': 1.0, 'wanted': 1.0, 'include': 1.0, 'feeding': 1.0, 'been': 1.0, 'refused': 1.0, 'use': 2.0, 'head': 1.0, 'material': 1.0, 'same': 1.0, 'and': 15.0, 'just': 2.0, 'so': 7.0, 'ez': 1.0, 'very': 3.0, 'why': 1.0, 'have': 2.0, 'such': 1.0, 'try': 2.0, 'bought': 1.0, 'washed': 1.0, 'remove': 1.0, 'maybe': 1.0, 'without': 2.0, 'airplane': 1.0, 'thought': 1.0, 'solved': 1.0, 'wrong': 1.0, 'generally': 1.0, 'point': 1.0, 'kitchen': 1.0, 'sooo': 1.0, 'other': 1.0, 'ton': 2.0, 'most': 1.0, 'space': 1.0, 'different': 1.0, 'not': 3.0, 'eye': 1.0, 'one': 5.0, '5': 1.0, 'sore': 1.0, 'tasteful': 1.0, 'but': 2.0, 'i': 24.0, 'simple': 1.0, 'also': 1.0, 'harness': 1.0, '19': 1.0, 'which': 1.0, 'at': 5.0, 'is': 2.0, 'could': 1.0, 'beginning': 1.0, 'pretending': 1.0, 'don': 3.0, 'want': 3.0, 'make': 3.0, 'store': 1.0, 'spend': 1.0, 'definitely': 2.0, 'here': 1.0, 'said': 1.0, 'order': 1.0, 'actually': 2.0, 'solids': 1.0, 'size': 1.0, 'reasonably': 1.0, 'deceptive': 1.0, 'shoulder': 1.0, 'took': 1.0, 'pounds': 3.0, '6': 1.0, 'carried': 1.0, 'see': 1.0, 'he': 4.0, 'him': 2.0, 'looked': 2.0, 'annoyed': 1.0, 'would': 2.0, 'fabric': 1.0, 'company': 1.0, 'if': 4.0, 'great': 1.0, 'talking': 1.0, 'meals': 1.0, 's': 5.0, 'grows': 1.0, 'average': 1.0, 'no': 1.0, 'now': 1.0, 'problem': 2.0, 'concerns': 1.0, 'put': 1.0, 'too': 3.0, '3': 2.0, 'from': 2.0, 'who': 1.0, '33': 2.0, 'sit': 2.0, 'inexpensive': 1.0, 'as': 1.0, 'little': 1.0, 'sold': 1.0, 'it': 21.0, 'be': 1.0, 'before': 1.0, 'sure': 1.0, 'loved': 1.0, 'keep': 1.0}
Word element => {'whole': 1.0, 'one': 1.0, 'wisely': 1.0, 'invest': 1.0, 'would': 1.0, 'if': 1.0, 'with': 1.0, 'her': 1.0, 'clean': 1.0, 'creases': 1.0, 'tiny': 1.0, 'friend': 1.0, 'leaving': 1.0, 'stand': 1.0, 'of': 2.0, 'sit': 1.0, 'straps': 1.0, 'still': 1.0, 'washer': 1.0, 'like': 1.0, 'you': 1.0, 'easily': 1.0, 'and': 6.0, 'put': 1.0, 'washed': 1.0, 'then': 1.0, 'having': 1.0, 'find': 1.0, 'wooden': 1.0, 'price': 1.0, 'removed': 1.0, 'that': 3.0, 'ocd': 1.0, 'chico': 1.0, 'basically': 1.0, 'myself': 1.0, 'the': 6.0, 'is': 1.0, 'many': 1.0, 'get': 1.0, 'fisher': 1.0, 'model': 2.0, 'dish': 1.0, 'a': 5.0, 'my': 3.0, 'were': 1.0, 'high': 2.0, 'crevices': 1.0, 'toothpicks': 1.0, 'out': 1.0, 'third': 1.0, 'this': 2.0, 'she': 1.0, 'annoying': 1.0, 'it': 2.0, 'have': 1.0, 'i': 6.0, 'not': 1.0, 'style': 1.0, 'graco': 1.0, 'chair': 4.0, 'who': 1.0, 'used': 1.0, 'are': 1.0, 'plastic': 2.0, 'cover': 1.0, 'slight': 1.0, 'be': 1.0, 'very': 1.0, 'to': 2.0, 'as': 1.0, 'however': 1.0, 'money': 1.0, 'can': 3.0, 'food': 2.0, 'has': 3.0, 'cracks': 1.0, 'collects': 1.0, 'in': 3.0, 'person': 1.0, 'boon': 1.0, 'so': 2.0, 'bit': 1.0}
Word element => {'theme': 1.0, 'had': 2.0, 'out': 1.0, 'but': 1.0, 'were': 1.0, 'researched': 1.0, 'other': 1.0, 'and': 1.0, 'as': 1.0, 'very': 1.0, 'looking': 1.0, 'high': 2.0, 'brands': 1.0, 'been': 1.0, 'for': 1.0, 'nice': 1.0, 'which': 1.0, 'nursery': 1.0, 'chair': 4.0, 'in': 1.0, 'also': 1.0, 'perfect': 2.0, 'all': 1.0, 'stood': 1.0, 'the': 6.0, 'are': 1.0, 'is': 2.0, 'features': 1.0, 'this': 2.0, 'it': 1.0, 'advertised': 1.0, 'easily': 1.0, 'assembled': 1.0, 'i': 2.0}
Word element => {'safety': 1.0, 'with': 1.0, 'satisfied': 1.0, 'completely': 1.0, 'i': 1.0, 'comfortable': 1.0, 'and': 1.0, 'like': 1.0, 'features': 1.0, 'really': 1.0, 'good': 1.0, 'child': 1.0, 'high': 1.0, 'about': 1.0, 'it': 1.0, 'chair': 1.0, 'nothing': 1.0, 'was': 2.0, 'not': 1.0, 'to': 1.0, 'the': 1.0, 'my': 1.0}
Word element => {'out': 1.0, 'use': 1.0, 'lots': 1.0, 'with': 1.0, 'happy': 1.0, 'am': 1.0, 'overall': 1.0, 'rest': 1.0, 'foot': 1.0, 'adjustable': 1.0, 'love': 2.0, 'for': 2.0, 'comfortable': 2.0, 'looking': 1.0, 'without': 1.0, 'the': 7.0, 'lines': 1.0, 'tray': 1.0, 'is': 1.0, 'table': 1.0, 'get': 1.0, 'easy': 1.0, 'of': 3.0, 'and': 5.0, 'clean': 1.0, 'i': 4.0, 'non': 1.0, 'old': 2.0, 'stability': 1.0, 'chair': 2.0, 'we': 1.0, 't': 1.0, 'a': 1.0, 'that': 2.0, 'purchase': 1.0, 'my': 2.0, 'simple': 1.0, 'able': 1.0, '8': 1.0, 'although': 1.0, 'wide': 1.0, 'was': 1.0, 'to': 3.0, 'would': 1.0, 'be': 1.0, 'smooth': 1.0, 'this': 3.0, 'only': 1.0, 'brilliant': 1.0, 'straps': 1.0, 'push': 1.0, 'are': 2.0, 'very': 2.0, 'year': 1.0, 'equals': 1.0, 'it': 2.0, 'month': 1.0, 'think': 1.0, '3': 1.0, 'things': 1.0, 'up': 1.0, 'don': 1.0, 'footprint': 1.0, 'will': 1.0, 'also': 1.0}
Word element => {'overall': 1.0, 'appears': 1.0, 't': 1.0, 'large': 1.0, 'far': 1.0, 'small': 2.0, 'footprint': 1.0, 'cleans': 1.0, 'cute': 1.0, 'are': 1.0, 'animals': 1.0, 'colors': 1.0, 'out': 1.0, 'too': 1.0, 'and': 3.0, 'can': 2.0, 'happy': 1.0, 'guess': 1.0, 'tape': 1.0, 'mailing': 1.0, 'choice': 1.0, 'being': 1.0, 'covering': 1.0, 'babies': 1.0, 'that': 4.0, 'off': 1.0, 'cover': 1.0, 'under': 1.0, 'so': 2.0, 'polly': 1.0, 'toddler': 2.0, 'd': 1.0, 'years': 1.0, 'for': 2.0, 'was': 1.0, 'chicco': 1.0, 'collects': 1.0, 'dirties': 1.0, 'fabric': 1.0, 'clean': 3.0, 'this': 3.0, 'with': 3.0, 'up': 1.0, 'very': 2.0, 'high': 1.0, 'my': 6.0, 'it': 6.0, 'annoying': 1.0, 'i': 5.0, 'say': 1.0, 'is': 8.0, 'crumbs': 2.0, 'really': 1.0, 'replace': 1.0, 'the': 5.0, 'one': 1.0, 'bought': 1.0, 'as': 2.0, 'seat': 1.0, 'to': 3.0, 'them': 1.0, 'wipe': 2.0, 'there': 1.0, 'chair': 2.0, 'especially': 1.0, 'favorite': 1.0, 'only': 1.0, 'tiny': 1.0, 'its': 1.0, 'much': 1.0, 'better': 1.0, 'put': 1.0, 'constantly': 1.0, 'easy': 1.0, 'solution': 1.0, 'hard': 1.0, 'part': 1.0, 'plastic': 1.0, 'way': 2.0, 'straps': 1.0, 'they': 1.0, 'am': 1.0, 'easily': 2.0, 'which': 1.0, 'great': 1.0, 'nice': 1.0, 'keep': 1.0, 'crack': 1.0, 'since': 2.0, 'in': 1.0}
Word element => {'perfect': 1.0, 'worked': 1.0, 'geared': 1.0, 'seem': 1.0, 'everyone': 1.0, 'doesn': 1.0, 'those': 1.0, 'products': 1.0, 'perhaps': 1.0, 'most': 1.0, 'observed': 1.0, 'they': 2.0, 'side': 2.0, 'finding': 1.0, 'seen': 1.0, '4': 1.0, 'stability': 1.0, 'needs': 1.0, 'as': 3.0, 'big': 4.0, 'be': 3.0, 'wish': 1.0, 'footprint': 1.0, 'think': 3.0, 'both': 1.0, 'people': 2.0, 'just': 1.0, 'couldn': 1.0, 'out': 2.0, 'my': 4.0, 'items': 1.0, 'getting': 1.0, 'while': 1.0, 'either': 1.0, 'would': 3.0, 'where': 1.0, 'don': 2.0, 'like': 1.0, 'foresight': 1.0, 'am': 1.0, 'bottomed': 1.0, 'adjust': 1.0, 'how': 2.0, 'he': 2.0, 'love': 1.0, 'also': 1.0, 'plenty': 1.0, 'with': 1.0, 'attached': 1.0, 'have': 5.0, 'chairs': 1.0, 'terrible': 1.0, 'machine': 1.0, 'washing': 1.0, 'm': 1.0, 'in': 4.0, 'clean': 2.0, 'actually': 1.0, 'large': 2.0, 'wipes': 1.0, 'picky': 1.0, 'highchair': 1.0, 'can': 1.0, 'so': 2.0, 'time': 1.0, 'did': 1.0, 'chair': 8.0, 'throw': 1.0, 'very': 2.0, 'little': 1.0, 'glad': 1.0, 'came': 1.0, 'what': 1.0, 'when': 1.0, 'miss': 1.0, 'but': 5.0, 'money': 1.0, 'removable': 1.0, 'didn': 1.0, 'even': 1.0, 'use': 1.0, 'legs': 1.0, 'get': 1.0, 'months': 1.0, 'wider': 1.0, 'tray': 3.0, 'this': 4.0, 'few': 1.0, 'could': 2.0, 'small': 5.0, 'a': 8.0, 's': 3.0, 'fit': 3.0, 't': 6.0, 'spend': 1.0, 'spot': 1.0, 'space': 1.0, 'ish': 1.0, 'baby': 6.0, 'not': 2.0, 'easily': 1.0, 'that': 7.0, 'because': 3.0, 'find': 2.0, 'used': 1.0, 'set': 2.0, 'fair': 1.0, 'take': 2.0, 'gear': 1.0, 'fabric': 1.0, 'for': 6.0, 'such': 1.0, 'room': 1.0, 'these': 1.0, 'never': 1.0, 'knew': 1.0, 'some': 5.0, 'of': 9.0, 'the': 16.0, 'well': 1.0, 'i': 24.0, 'shops': 1.0, 'buy': 1.0, 'straps': 2.0, 'speak': 1.0, 'it': 12.0, 'dried': 1.0, 'got': 1.0, 'truly': 1.0, 'high': 8.0, 'to': 10.0, 'consignment': 1.0, 'put': 1.0, 'much': 1.0, 'pad': 1.0, 'short': 1.0, 'wanted': 2.0, 'simple': 1.0, 'up': 1.0, 'one': 3.0, 'too': 2.0, 'and': 9.0, 'stick': 1.0, 'down': 2.0, 'son': 1.0, 'hate': 1.0, 'flat': 2.0, 'amount': 2.0, 'on': 4.0, 'screws': 1.0, 'had': 3.0, 'counter': 2.0, 'food': 2.0, 'or': 3.0, 'true': 1.0, 'right': 1.0, 'table': 2.0, 'next': 1.0, 'has': 3.0, 'all': 3.0, 'an': 1.0, 'now': 1.0, 'coverthis': 1.0, 'you': 1.0, 'things': 2.0, 'babies': 4.0, 'more': 1.0, 'at': 2.0, 'look': 1.0, 'is': 7.0, 'know': 1.0, 'easy': 2.0, 'if': 2.0, 'feeding': 1.0, 'seems': 1.0, 'yes': 1.0, 'off': 2.0, 'cover': 1.0, 'are': 2.0, 'plus': 1.0}
Word element => {'too': 1.0, 'she': 1.0, 'us': 1.0, 'the': 1.0, 'loves': 1.0, 'this': 1.0, 'chair': 1.0, 'at': 1.0, 'was': 1.0, 'her': 1.0, 'easy': 1.0, 'to': 1.0, 'and': 1.0, 'table': 1.0, 'up': 1.0, 'set': 1.0, 'we': 1.0, 'it': 1.0, 'love': 1.0, 'with': 1.0, 'having': 1.0}
Word element => {'on': 1.0, 'line': 1.0, 'articles': 1.0, 'reports': 1.0, 'free': 1.0, 'site': 1.0, 'web': 1.0, 'recommend': 1.0, 'cost': 1.0, 'would': 1.0, 'has': 1.0, 'features': 1.0, 'economical': 1.0, 'are': 2.0, 'added': 1.0, 'an': 2.0, 'bigger': 1.0, 'gets': 1.0, 'anyone': 1.0, 'him': 1.0, 'view': 1.0, 'of': 1.0, 'lots': 1.0, 'when': 1.0, 'lbs': 1.0, 'room': 1.0, '5': 1.0, '16': 1.0, 'weighs': 1.0, 'annual': 1.0, 'size': 1.0, 'right': 1.0, 'most': 1.0, 'can': 1.0, 'the': 7.0, 'adjustable': 1.0, 'see': 1.0, 'currently': 1.0, 'just': 1.0, 'easy': 2.0, 'read': 1.0, 'it': 3.0, 'buying': 1.0, 'with': 1.0, 'subscription': 1.0, 'there': 3.0, 'chair': 1.0, 'favorable': 1.0, 'true': 1.0, 'high': 1.0, 'did': 1.0, 'which': 1.0, 'reading': 1.0, 'bonus': 1.0, 'hand': 1.0, 'products': 1.0, 'some': 1.0, 'ratings': 2.0, 'i': 3.0, 'old': 1.0, 'price': 1.0, 'numerous': 1.0, 'also': 3.0, 'description': 1.0, 'and': 5.0, 'reviews': 2.0, 'assemble': 1.0, 'product': 1.0, 'for': 4.0, 'love': 1.0, 'cr': 1.0, 'is': 6.0, 'this': 1.0, 'release': 1.0, 's': 1.0, 'all': 1.0, 'as': 1.0, 'to': 5.0, 'word': 1.0, 'consumers': 1.0, 'including': 1.0, 'that': 2.0, 'different': 1.0, 'clean': 1.0, 'safety': 1.0, 'straps': 1.0, 'research': 1.0, 'attach': 1.0, 'baby': 2.0, 'he': 1.0, '6': 1.0, 'one': 1.0, 'tray': 1.0, 'months': 1.0}
Word element => {'corner': 1.0, 'stool': 1.0, 'at': 1.0, 'sitting': 1.0, 'taller': 1.0, 'or': 1.0, 'heights': 1.0, 'lowers': 1.0, 'raises': 1.0, 'spills': 1.0, 'helps': 1.0, 'and': 2.0, 'easy': 1.0, 'accommodate': 1.0, 'easily': 2.0, 'put': 1.0, 'room': 1.0, 'cleans': 1.0, 'to': 3.0, 'was': 1.0, 'together': 1.0, 'chair': 5.0, 'nice': 1.0, 'stores': 1.0, 'high': 1.0, 'this': 1.0, 'type': 1.0, 'regular': 1.0, 'repel': 1.0, 'is': 2.0, 'comfortable': 1.0, 'that': 1.0, 'adjustable': 1.0, 'the': 4.0, 'made': 1.0, 'seat': 1.0, 'up': 1.0, 'of': 1.0, 'bar': 1.0, 'a': 4.0, 'fabric': 1.0, 'in': 3.0, 'also': 1.0}
Word element => {'wide': 1.0, 'that': 1.0, 'tight': 1.0, 'and': 1.0, 'in': 1.0, 'highchair': 1.0, 'fitted': 1.0, 'it': 1.0, 'kid': 1.0, 'can': 1.0, 'without': 1.0, 'overall': 1.0, 'doesnt': 1.0, 'take': 1.0, 's': 1.0, 'you': 2.0, 'removing': 1.0, 'its': 1.0, 'to': 1.0, 'a': 3.0, 'out': 2.0, 't': 1.0, 'great': 1.0, 'the': 2.0, 'let': 1.0, 'tray': 3.0, 'open': 2.0, 'but': 1.0, 'toddler': 1.0, 'an': 1.0, 'doesn': 1.0, 'put': 1.0}
Word element => {'seems': 1.0, 'from': 1.0, 'on': 1.0, 'way': 1.0, 're': 1.0, 'you': 1.0, 'not': 1.0, 'gets': 1.0, 'still': 1.0, 'led': 1.0, 'stain': 1.0, 'doesn': 1.0, 'others': 1.0, 'with': 3.0, 'getting': 1.0, 'agree': 1.0, 'down': 1.0, 'baby': 1.0, 'wipe': 1.0, 'few': 1.0, 'just': 1.0, 'so': 2.0, 'wood': 1.0, 'plastic': 1.0, 'out': 1.0, 'fabric': 1.0, 'wipes': 1.0, 'clean': 2.0, 'ikea': 1.0, 'is': 2.0, 'really': 2.0, 'there': 1.0, 'of': 3.0, 'what': 1.0, 'long': 1.0, 'or': 1.0, 'mealtime': 1.0, 'attempting': 1.0, 'don': 2.0, 'worst': 1.0, 'too': 1.0, 'and': 2.0, 'chairs': 1.0, 'know': 1.0, 'wouldn': 1.0, 'perhaps': 1.0, 'got': 1.0, 'haven': 1.0, 'thinking': 1.0, 'i': 8.0, 'tried': 1.0, 'one': 3.0, 'for': 1.0, 'first': 1.0, 'this': 3.0, 'it': 6.0, 'other': 1.0, 'deal': 1.0, 'the': 5.0, 'but': 2.0, 'if': 3.0, 'best': 1.0, 'm': 2.0, 'in': 2.0, 'go': 1.0, 'weaning': 1.0, 's': 1.0, 'could': 1.0, 't': 5.0, 'a': 2.0, 'lot': 1.0, 'easy': 2.0, 'side': 1.0, 'cleanups': 1.0, 'because': 1.0, 'find': 1.0, 'into': 1.0, 'that': 5.0, 'easier': 2.0, 'high': 1.0, 'were': 1.0, 'smooshed': 1.0, 'entirely': 1.0, 'to': 3.0, 'would': 1.0, 'be': 1.0, 'much': 3.0}
Word element => {'its': 1.0, 'bought': 1.0, 'at': 1.0, 'mom': 1.0, 'one': 1.0, 'i': 1.0, 'him': 1.0, 'love': 1.0, 'seat': 1.0, 'this': 1.0, 'my': 1.0, 'the': 1.0, 'cheap': 1.0, 'soooo': 1.0, 'much': 1.0, 'perfect': 1.0, 'walmart': 1.0, 'than': 1.0, 'crappy': 1.0, 'better': 1.0}
Word element => {'waited': 1.0, 'we': 1.0, 'glad': 1.0, 'highchair': 1.0, 'overall': 1.0, 'folding': 1.0, 'stopped': 1.0, 'every': 1.0, 'out': 1.0, 'taken': 1.0, 'get': 2.0, 'rubbery': 1.0, 'lay': 1.0, 'very': 1.0, 'little': 1.0, 'and': 7.0, 'awesome': 1.0, 'almost': 1.0, 'easy': 3.0, 'soft': 1.0, 'this': 2.0, 'material': 1.0, 'awkward': 1.0, 'as': 1.0, 'time': 2.0, 'some': 1.0, 'quite': 1.0, 'room': 1.0, 'super': 1.0, 'month': 1.0, 'it': 10.0, 'inch': 1.0, 'like': 2.0, '21': 1.0, 'hand': 1.0, 'straps': 2.0, 'lb': 1.0, 've': 1.0, 'down': 2.0, 'to': 9.0, 'high': 1.0, '15': 1.0, 'a': 2.0, 's': 4.0, 'fit': 1.0, 't': 2.0, 'have': 2.0, 'old': 1.0, 'i': 9.0, 'clean': 2.0, 'looks': 1.0, 'my': 1.0, 'm': 1.0, 'seat': 2.0, 'in': 4.0, 'great': 2.0, 'for': 2.0, '32': 1.0, 'of': 2.0, 'the': 14.0, 'chair': 1.0, 'will': 1.0, 'seems': 1.0, 'but': 2.0, 'so': 1.0, 'can': 1.0, 'need': 1.0, 'food': 1.0, 'not': 2.0, 'sticky': 1.0, 'nearly': 1.0, 'move': 1.0, 'shoulder': 1.0, 'don': 2.0, 'over': 1.0, 'up': 3.0, 'use': 1.0, 'front': 3.0, 'since': 1.0, 'keep': 1.0, 'floor': 1.0, 'put': 1.0, 'on': 2.0, 'allow': 1.0, 'from': 2.0, 'tray': 2.0, 'enough': 2.0, 'guy': 1.0, 'messy': 1.0, 'is': 2.0, 'has': 1.0, 'fits': 1.0, 'an': 1.0, 'that': 1.0, 'curve': 1.0, 'sometimes': 1.0, 'side': 1.0, 'folds': 1.0, 'baby': 1.0, 'are': 1.0, 'bad': 1.0, 'plenty': 1.0, 'with': 1.0, 'only': 1.0, 'too': 2.0, 'one': 2.0, 'try': 2.0, 'thing': 2.0, 'when': 1.0, 'love': 1.0, 'he': 3.0, 'leaning': 1.0, 'far': 1.0, 'fold': 1.0, 'back': 1.0}
Word element => {'out': 1.0, 'in': 1.0, 'put': 1.0, 'move': 1.0, 'he': 1.0, 'old': 1.0, '8': 1.0, 'son': 1.0, 'new': 1.0, 'design': 1.0, 'touch': 1.0, 'cloth': 1.0, 'like': 1.0, 'u': 1.0, 'of': 1.0, 'daddy': 1.0, 'what': 1.0, 'even': 1.0, 'loves': 1.0, 'that': 1.0, 'gear': 1.0, 'other': 1.0, 'boy': 1.0, 'time': 2.0, 'with': 1.0, 'month': 1.0, 'it': 5.0, 'this': 2.0, 'getting': 1.0, 'and': 4.0, 'i': 2.0, 'ones': 1.0, 'the': 1.0, 'comfortable': 1.0, 'big': 1.0, 'great': 2.0, 'was': 1.0, 'to': 3.0, 'at': 1.0, 'looking': 1.0, 'because': 1.0, 'not': 2.0, 'wet': 1.0, 'just': 1.0, 'you': 1.0, 'most': 1.0, 'but': 1.0, 'around': 1.0, 'more': 1.0, 'is': 6.0, 's': 1.0, 'a': 4.0, 'product': 1.0, 'expensive': 1.0, 'love': 3.0, 'for': 1.0, 'highchair': 1.0, 'very': 2.0, 'learned': 1.0, 'easy': 3.0, 'paid': 1.0, 'clean': 1.0, 'my': 2.0, 'baby': 2.0, 'messy': 1.0, 'feeding': 1.0, 'r': 1.0, 'problem': 1.0, 'cute': 1.0, 'after': 1.0}
Word element => {'this': 1.0, 'recommend': 1.0, 'definitely': 1.0, 'own': 1.0, 'his': 1.0, 'or': 1.0, 'us': 1.0, 'with': 1.0, 'at': 1.0, 'sits': 1.0, 'the': 7.0, 'adjustable': 1.0, 'son': 2.0, 'very': 2.0, 'up': 1.0, 'of': 1.0, 'chair': 5.0, 'excellent': 1.0, 'it': 2.0, 'he': 2.0, 'clean': 2.0, 'wipes': 1.0, 'fabric': 1.0, '8': 1.0, 'assemble': 1.0, 'easy': 3.0, 'to': 5.0, 'comfortably': 1.0, 'high': 3.0, 'just': 1.0, 'light': 1.0, 'wheels': 1.0, 'move': 1.0, 'in': 1.0, 'side': 1.0, 'mths': 1.0, 'use': 1.0, 'pad': 1.0, 'slip': 1.0, 'make': 1.0, 'on': 3.0, 'old': 1.0, 'i': 3.0, 'pattern': 1.0, 'and': 3.0, 'around': 1.0, 'is': 2.0, 'fall': 1.0, 'tray': 1.0, 'one': 1.0, 'table': 1.0, 'like': 2.0, 'my': 2.0, 'fact': 1.0, 'that': 1.0, 'height': 1.0, 'can': 1.0, 'eat': 2.0}
Word element => {'come': 1.0, 'years': 1.0, 'glad': 1.0, 'wide': 1.0, 'comfy': 1.0, 'padding': 1.0, 'chair': 3.0, 'as': 1.0, 'off': 1.0, 'wipe': 1.0, 'bad': 1.0, 'are': 1.0, 'am': 1.0, 'last': 1.0, 'clean': 1.0, 'deployed': 1.0, 'figure': 1.0, 'very': 2.0, '18': 1.0, 'set': 1.0, 'somewhat': 2.0, 'straps': 1.0, 'pounds': 1.0, 'i': 7.0, 'over': 1.0, 'up': 2.0, 'long': 1.0, 'on': 1.0, 'got': 1.0, 'daughter': 1.0, 'together': 1.0, 'fits': 1.0, 'all': 1.0, 'to': 9.0, 'grow': 1.0, 'difficult': 1.0, 'ww2': 1.0, 'footprint': 1.0, 'myself': 1.0, 't': 1.0, 'a': 3.0, 'inches': 1.0, 'wasn': 1.0, 'out': 2.0, '29': 1.0, 'appointment': 1.0, 'simple': 1.0, 'highchair': 2.0, 'love': 1.0, 'fabric': 2.0, 'for': 3.0, 'use': 1.0, 'her': 3.0, 'smaller': 2.0, 'clips': 1.0, 'so': 3.0, 'week': 1.0, 'but': 4.0, 'most': 1.0, 've': 1.0, 'built': 1.0, 'granted': 1.0, 'snap': 1.0, 'enough': 1.0, 'this': 3.0, 'minute': 1.0, 'only': 1.0, 'harness': 1.0, 'already': 1.0, 'it': 7.0, 'soft': 1.0, 'remove': 1.0, 'and': 10.0, 'actual': 1.0, 'too': 2.0, '1': 1.0, 'great': 1.0, 'big': 1.0, 'plan': 1.0, 'which': 1.0, 'side': 1.0, 'at': 2.0, 'is': 11.0, 'more': 1.0, 'husband': 1.0, 'had': 2.0, 'with': 1.0, 'plenty': 1.0, 'portion': 2.0, 'the': 14.0, 'of': 4.0, 'clicks': 1.0, 'once': 1.0, 'room': 1.0, 'bit': 1.0, 'easy': 4.0, 'adjust': 2.0, 'took': 1.0, 'my': 3.0, 'me': 1.0, 'did': 1.0, 'was': 1.0, 'many': 1.0, 'folds': 1.0, 'unfortunately': 1.0, 'quite': 1.0, 'top': 1.0, 'tray': 2.0, 'around': 1.0, 'dishwasher': 2.0, 'in': 2.0, 'also': 1.0, 'live': 1.0, 'not': 1.0, 'army': 1.0, 'housing': 1.0, 'than': 1.0, 'easily': 2.0, 'though': 1.0, 'ez': 1.0, 'true': 1.0}
Word element => {'baby': 1.0, 'some': 1.0, 'about': 1.0, 'thing': 1.0, 'same': 1.0, 'say': 1.0, 'guy': 1.0, 'foods': 1.0, 'little': 1.0, 'far': 1.0, 'room': 1.0, 'small': 1.0, 'ton': 1.0, 'good': 1.0, 'also': 1.0, 'wish': 1.0, 'this': 1.0, 'messy': 1.0, 'really': 1.0, 'tried': 1.0, 'things': 1.0, 'it': 2.0, 'month': 1.0, 'take': 2.0, 'or': 1.0, 'of': 3.0, 'my': 1.0, 'high': 2.0, 'unless': 1.0, 'easily': 1.0, 'something': 1.0, 'loves': 1.0, 'into': 1.0, 'that': 1.0, 'use': 1.0, 'either': 1.0, 'get': 1.0, 'easy': 1.0, 's': 1.0, 't': 1.0, 'could': 2.0, 'a': 4.0, 'old': 1.0, 'i': 4.0, 'wanted': 1.0, 'doesn': 1.0, 'was': 3.0, 'first': 1.0, 'parent': 1.0, 'detaches': 1.0, 'with': 1.0, 'chair': 2.0, 'and': 1.0, 'our': 1.0, 'grow': 1.0, 'to': 1.0, 'as': 1.0, 'typically': 1.0, 'the': 7.0, 'tray': 2.0, 'for': 1.0, 'he': 1.0, 'dining': 1.0, '6': 1.0, 'washing': 1.0, 'by': 1.0, 'hand': 1.0, 'dishwasher': 2.0, 'in': 3.0, 'up': 2.0, 'wash': 1.0, 'because': 1.0, 'does': 1.0, 'lot': 1.0, 'space': 2.0, 'time': 1.0, 'so': 2.0, 'soapy': 1.0, 'water': 1.0}
Word element => {'loves': 1.0, 'adjust': 1.0, 'are': 1.0, 'seating': 1.0, 'and': 2.0, 'made': 1.0, 'the': 2.0, 'together': 1.0, 'this': 1.0, 'it': 3.0, 'my': 2.0, 'went': 1.0, 'high': 1.0, 'thought': 1.0, 'easy': 2.0, 'straps': 1.0, 'grandson': 1.0, 'chair': 1.0, 'a': 1.0, 'well': 1.0, 'put': 1.0, 'place': 1.0, 'because': 1.0, 'was': 2.0, 'husband': 1.0, 'to': 2.0, 'its': 1.0, 'everything': 1.0, 'respective': 1.0}
Word element => {'to': 1.0, 'easy': 1.0, 'manure': 1.0, 'chair': 1.0, 'and': 1.0, 'nice': 1.0, 'clean': 1.0, 'very': 1.0}
Word element => {'off': 1.0, 'clean': 1.0, 'rwa': 1.0, 'make': 1.0, 'the': 1.0, 'i': 1.0, 'this': 1.0, 'is': 1.0, 'a': 1.0, 'it': 1.0, 'great': 1.0, 'food': 1.0, 'chair': 1.0, 'assemble': 1.0, 'like': 1.0, 'and': 1.0, 'very': 1.0, 'to': 2.0, 'straps': 1.0, 'plastic': 1.0, 'easy': 2.0, 'use': 1.0}
Word element => {'that': 1.0, 'than': 1.0, 'place': 1.0, 'to': 1.0, 'like': 1.0, 'doesn': 1.0, 'but': 1.0, 'gets': 1.0, 'mins': 1.0, 'cleaning': 1.0, 'good': 1.0, 'for': 3.0, 'in': 2.0, 'are': 1.0, 'trays': 1.0, 'my': 1.0, 'longer': 1.0, 'is': 1.0, '10': 1.0, 'any': 1.0, 'height': 1.0, 'fidgety': 1.0, 'works': 1.0, 'month': 1.0, 't': 1.0, 'sits': 1.0, 'great': 2.0, 'adjustable': 1.0, 'stable': 1.0, 'sit': 1.0, '8': 1.0, 'and': 2.0, 'two': 1.0, 'solid': 1.0, 'old': 1.0, '15': 1.0, 'he': 1.0, 'this': 1.0}
Word element => {'different': 1.0, 'should': 1.0, 'design': 1.0, 'wheels': 2.0, 'there': 1.0, 'chair': 4.0, 'larger': 1.0, 'instead': 1.0, 'legs': 1.0, 'easy': 3.0, 'so': 5.0, 'no': 1.0, 'assembly': 1.0, 'don': 1.0, 'up': 1.0, 'babies': 2.0, 'on': 2.0, 'your': 1.0, 'think': 1.0, 'back': 1.0, 'but': 1.0, 'close': 1.0, 'ever': 1.0, 'looking': 1.0, 'as': 4.0, 'pretty': 3.0, 'to': 2.0, 'waist': 1.0, 'and': 5.0, 'too': 1.0, 'picture': 1.0, 'been': 1.0, 'highchair': 1.0, 'goes': 1.0, 'rubber': 1.0, 'stars': 1.0, 'colors': 1.0, 'also': 1.0, 'will': 1.0, 'in': 4.0, 'bold': 1.0, 'just': 2.0, 'not': 2.0, 'it': 7.0, 'of': 2.0, 'person': 1.0, 'the': 11.0, 'great': 1.0, 'tray': 3.0, 'this': 2.0, 'cant': 1.0, 'really': 3.0, 'is': 3.0, 'around': 1.0, 'straps': 1.0, 'cons': 1.0, 'are': 4.0, 'cute': 1.0, 'was': 1.0, 'wipe': 1.0, 'baby': 1.0, 'rated': 1.0, 'support': 1.0, 'clean': 1.0, 'good': 2.0, 'moving': 1.0, 'would': 1.0, 'be': 1.0, 'with': 2.0, '4': 2.0, 'well': 1.0, 'i': 3.0, 'you': 3.0, 'safely': 1.0, 'young': 1.0, 'because': 1.0, 'its': 1.0, 'only': 2.0, 'a': 4.0, 't': 1.0, 'nice': 1.0, 'little': 1.0, 'move': 1.0, 'inconvenient': 1.0, 'off': 1.0, 'seems': 2.0, 'see': 1.0, 'being': 1.0, 'still': 1.0, 'if': 1.0, 'need': 1.0, 'have': 2.0, 'overall': 1.0, 'they': 2.0, 'sturdy': 1.0, 'child': 1.0, 'price': 1.0, 'like': 1.0, 'comes': 1.0, 'cleans': 1.0, '5': 1.0}
Word element => {'while': 1.0, 'is': 1.0, 'and': 1.0, 'that': 1.0, 'just': 1.0, 'easy': 1.0, 'but': 1.0, 'fits': 1.0, 'set': 1.0, 'up': 1.0, 'very': 2.0, 'feel': 1.0, 'i': 1.0, 'eating': 1.0, 'it': 2.0, 'well': 1.0, 'a': 1.0, 'bit': 1.0, 'small': 1.0, 'my': 1.0, 'comfortable': 1.0, 'for': 1.0, 'kid': 1.0, 'in': 2.0, 'to': 1.0, 'was': 1.0, 'its': 1.0, 'now': 1.0, 'pretty': 1.0}
Word element => {'front': 1.0, 'and': 1.0, 'very': 2.0, 'easy': 1.0, 'clean': 1.0, 'to': 2.0, 'be': 1.0, 'cute': 1.0, 'really': 1.0, 'satisfied': 1.0, 'design': 1.0, 'in': 2.0, 'the': 3.0, 'my': 1.0, 'love': 1.0, 'only': 2.0, 'it': 1.0, 'with': 1.0, 'no': 1.0, 'suggestion': 1.0, 'would': 1.0, 'piratical': 1.0, 'wheels': 1.0, 'put': 1.0, 'back': 1.0}
Word element => {'month': 1.0, '7': 1.0, 'this': 1.0, '4': 1.0, 'tight': 1.0, 'little': 1.0, 'seems': 1.0, 'fine': 1.0, 'tray': 1.0, 'and': 1.0, 'because': 1.0, 'seat': 1.0, 'be': 1.0, 'old': 2.0, 'easy': 1.0, 'grandson': 1.0, 'chair': 1.0, 'nice': 1.0, 'put': 1.0, 'but': 1.0, 'back': 1.0, 'high': 1.0, 'year': 1.0, 'very': 2.0, 'of': 2.0, 'appears': 1.0, 'up': 1.0, 'fits': 1.0, 'made': 1.0, 'now': 1.0, 'to': 3.0, 'its': 1.0, 'well': 1.0, 'a': 2.0, 'rated': 1.0, 'between': 1.0, 'stars': 1.0, '3': 1.0, 'together': 1.0, 'area': 1.0}
Word element => {'safe': 1.0, 'and': 1.0, 'nice': 1.0, 'younger': 1.0, 'chair': 2.0, '13': 1.0, 'my': 1.0, 'but': 1.0, 'put': 1.0, 'wanna': 1.0, 'than': 1.0, 'for': 2.0, 'older': 1.0, 'this': 2.0, 'the': 3.0, 't': 1.0, 'highchair': 1.0, 'babies': 2.0, 'have': 1.0, 'seat': 1.0, 'baby': 1.0, 'whenever': 1.0, 'don': 1.0, 'old': 1.0, 'i': 3.0, 'recommend': 1.0, 'narrow': 1.0, 'completely': 1.0, 'too': 1.0, 'to': 1.0, 'on': 1.0, '12': 1.0, 'months': 2.0, 'remove': 1.0, 'is': 2.0, 'tray': 1.0}
Word element => {'different': 1.0, 'used': 1.0, 'never': 1.0, 've': 1.0, 'who': 1.0, 'people': 1.0, 'they': 1.0, 'figure': 1.0, 'can': 1.0, 'reviews': 1.0, 'otherwise': 1.0, 'debris': 2.0, 'food': 2.0, 'particularly': 1.0, 'when': 3.0, 'idea': 1.0, 'remove': 3.0, 'cons': 1.0, 'cover': 2.0, 'off': 3.0, 'improvement': 1.0, 'of': 4.0, 'the': 12.0, 'place': 1.0, 'padded': 2.0, 'you': 2.0, 'things': 1.0, 'fussy': 1.0, 'white': 2.0, 'difficult': 1.0, 'reinstall': 1.0, 'gets': 2.0, 'one': 1.0, 'tray': 5.0, 'similar': 1.0, 'and': 4.0, 'green': 1.0, 'get': 2.0, 'easy': 1.0, 'i': 3.0, 'well': 1.0, 'a': 4.0, 's': 2.0, 'chair': 3.0, 'hang': 1.0, 'there': 1.0, 'entire': 1.0, 'my': 2.0, 'to': 8.0, 'high': 2.0, 'all': 2.0, 'an': 1.0, 'finally': 1.0, 'wipe': 1.0, 'had': 1.0, 'was': 1.0, 'not': 2.0, 'bosch': 1.0, 'have': 2.0, 'born': 1.0, 'first': 2.0, 'pros': 1.0, 'this': 2.0, 'is': 5.0, 'baby': 1.0, 'many': 1.0, 'pops': 1.0, 'design': 1.0, 'doesn': 1.0, 'lots': 1.0, 'will': 1.0, 'everywhere': 1.0, 'years': 1.0, 'no': 2.0, 're': 1.0, 'where': 1.0, 'ago': 1.0, 't': 1.0, 'fit': 1.0, 'do': 1.0, 'put': 2.0, 'it': 6.0, 'hooks': 1.0, 'on': 1.0, 'better': 1.0, 'washes': 1.0, 'scatter': 1.0, 'would': 1.0, 'be': 1.0, 'most': 1.0, 'back': 1.0, 'hassle': 1.0, 'elastic': 1.0, 'bands': 1.0, 'seat': 1.0, 'in': 4.0, 'dishwasher': 1.0, 'part': 1.0, 'from': 2.0, 'covered': 1.0, 'clean': 1.0, 'good': 1.0, 'hands': 1.0, 'importantly': 1.0, 'short': 1.0, 'why': 1.0, '10': 1.0, 'such': 1.0}
Word element => {'messy': 1.0, 'a': 1.0, 'for': 1.0, 'nice': 1.0, 'which': 1.0, 'able': 1.0, 'are': 1.0, 'they': 1.0, 'and': 1.0, 'up': 1.0, 'space': 1.0, 'stiff': 1.0, 'much': 1.0, 'wipe': 1.0, 'to': 1.0, 'is': 2.0, 'cover': 1.0, 'take': 1.0, 's': 1.0, 'it': 1.0, 'were': 1.0, 'wish': 1.0, 'toddler': 1.0, 'but': 1.0, 'doesn': 1.0, 'easy': 1.0, 'straps': 1.0, 'washable': 1.0, 'clean': 1.0, 'i': 1.0, 't': 1.0, 'the': 1.0, 'just': 1.0, 'not': 1.0, 'so': 1.0}
Word element => {'cute': 1.0, 'plus': 1.0, 'seen': 1.0, 'have': 1.0, 'i': 1.0, 'that': 1.0, 'convenient': 1.0, 'most': 1.0, 'the': 1.0, 'easy': 2.0, 'so': 1.0, 'chair': 2.0, 's': 1.0, 'love': 1.0, 'adjustments': 1.0, 'it': 3.0, 'this': 2.0, 'we': 1.0, 'high': 2.0, 'my': 1.0, 'sooo': 1.0, 'very': 1.0, 'son': 1.0, 'is': 1.0, 'in': 1.0, 'get': 1.0, 'and': 2.0, 'ever': 1.0, 'has': 1.0, 'height': 1.0, 'to': 2.0, 'its': 1.0, 'out': 1.0, 'clean': 1.0}
Word element => {'am': 1.0, 'while': 1.0, 'into': 1.0, 'bring': 1.0, 'as': 1.0, 'really': 2.0, 'table': 1.0, 'room': 1.0, 'level': 1.0, 'perfect': 1.0, 'height': 1.0, 'adjustable': 1.0, 'move': 1.0, 'action': 1.0, 'just': 1.0, 'have': 1.0, 'like': 1.0, 'if': 1.0, 'babies': 1.0, 'smaller': 1.0, 'all': 1.0, 'adjusted': 1.0, 'also': 2.0, 'spit': 1.0, 'very': 1.0, 'little': 1.0, 're': 3.0, 'cover': 1.0, 'you': 2.0, 'with': 1.0, 'allows': 1.0, 'soft': 1.0, 'this': 3.0, 'material': 2.0, 't': 2.0, 'straps': 1.0, 'counters': 1.0, 'sit': 2.0, 'features': 1.0, 'importantly': 1.0, 'offmy': 1.0, 'guy': 1.0, 'put': 1.0, 'on': 2.0, 'chair': 4.0, 'or': 1.0, 'food': 1.0, 'dining': 1.0, 'most': 1.0, 'but': 1.0, 'wheels': 1.0, 'sitting': 1.0, 'work': 1.0, 'can': 2.0, 'so': 6.0, 'favorite': 1.0, 'up': 3.0, 'holds': 1.0, 'washable': 1.0, 'a': 2.0, 'imagine': 1.0, 'though': 1.0, 'good': 1.0, 'made': 1.0, 'be': 1.0, 'truth': 1.0, 'make': 1.0, 'goes': 1.0, 'couch': 1.0, 'clean': 1.0, 'of': 1.0, 'the': 11.0, 'and': 7.0, 'too': 1.0, 'kitchen': 2.0, 'does': 1.0, 's': 1.0, 'maybe': 1.0, 'well': 2.0, 'i': 5.0, 'reclines': 1.0, 'for': 2.0, 'telling': 1.0, 'it': 5.0, 'they': 2.0, 'me': 1.0, 'my': 1.0, 'hoping': 1.0, 'to': 6.0, 'high': 4.0, 'often': 1.0, 'totally': 1.0, 'month': 1.0, 'super': 1.0, 'would': 1.0, 'easy': 4.0, 'wipe': 1.0, 'screws': 1.0, 'baby': 2.0, 'is': 3.0, 'are': 1.0, 'plus': 1.0, 'cute': 1.0, 'padded': 1.0, 'great': 2.0, 'extra': 1.0, 'rubbery': 1.0, 'together': 1.0, 'cooking': 1.0, 'pull': 1.0, 'comfy': 1.0, 'six': 2.0, 'm': 1.0, 'seat': 2.0, 'in': 4.0, 'his': 1.0, 'dishwasher': 1.0, 'tray': 1.0, 'topper': 1.0, 'isn': 1.0, 'old': 1.0, 'easily': 2.0, 'that': 3.0, 'problems': 1.0, 'quite': 1.0, 'off': 1.0, 'own': 1.0, 'etc': 1.0, 'control': 1.0, 'far': 1.0, 'love': 2.0, 'he': 2.0, 'has': 3.0, 'head': 1.0, 'no': 1.0}
Word element => {'too': 1.0, 'up': 1.0, 'of': 1.0, 'easy': 3.0, 'to': 3.0, 'was': 1.0, 'folds': 1.0, 'visiting': 1.0, 'that': 1.0, 'grandchildren': 1.0, 'old': 1.0, 'i': 2.0, 'love': 1.0, 'for': 2.0, 'most': 1.0, 'year': 1.0, 'my': 1.0, 'bought': 1.0, 'assemble': 1.0, 'this': 1.0, 'it': 2.0, 'wash': 1.0, 'and': 2.0, 'important': 1.0, 'a': 1.0, 'two': 1.0, 'into': 1.0, 'climb': 1.0, 'out': 1.0}
Word element => {'use': 1.0, 'may': 1.0, 'fast': 2.0, 'or': 1.0, 'big': 1.0, 'friendly': 1.0, 'say': 1.0, 'outgrow': 1.0, 'grows': 1.0, 'it': 2.0, 'baby': 2.0, 'about': 1.0, 'its': 1.0, 'to': 1.0, 'the': 1.0, 'bad': 1.0, 'is': 3.0, 'collapsable': 1.0, 'nothing': 1.0, 'cleaning': 1.0, '1': 1.0, 'cover': 1.0, 'light': 1.0, 'if': 1.0, 'because': 1.0, 'a': 1.0, 'for': 1.0, 'missing': 1.0, 'tight': 1.0, 'fit': 1.0, 'star': 1.0, 'so': 1.0}
Word element => {'compact': 1.0, 'horrible': 1.0, 'travel': 1.0, 'fisher': 1.0, 'ever': 1.0, 'house': 1.0, 'for': 1.0, 'things': 1.0, 'its': 1.0, 'tiny': 1.0, 'those': 1.0, 'relaxing': 1.0, 'leaning': 1.0, 'her': 1.0, 'upright': 1.0, 'second': 1.0, 'trying': 1.0, 'price': 1.0, 'best': 1.0, 'm': 1.0, 'you': 1.0, 'when': 1.0, 'with': 1.0, 'frustrating': 1.0, 'because': 1.0, 'find': 1.0, 'up': 1.0, 'pick': 1.0, 'my': 2.0, 'fact': 1.0, 'tilt': 1.0, 'back': 2.0, 'chokes': 1.0, 'in': 2.0, 'attach': 1.0, 'honestly': 1.0, 'doesn': 1.0, 'was': 1.0, 'seat': 2.0, 'to': 4.0, 'that': 4.0, 'i': 7.0, 'recommended': 1.0, 'high': 3.0, 'one': 1.0, 'bought': 2.0, 'baby': 2.0, 'about': 1.0, 'she': 1.0, 'annoying': 1.0, 'it': 12.0, 'based': 1.0, 'dont': 1.0, 'this': 2.0, 'first': 1.0, 'from': 1.0, 'hard': 1.0, 'nice': 1.0, 'great': 2.0, 'the': 10.0, 'too': 1.0, 'and': 7.0, 'chair': 4.0, 'of': 3.0, 'whats': 1.0, 'bargains': 1.0, 'reviews': 1.0, 'lack': 1.0, 'see': 1.0, 'so': 1.0, 'booster': 1.0, 'wheels': 1.0, 'on': 3.0, 'make': 1.0, 'roll': 2.0, 'is': 3.0, 'completely': 1.0, 'around': 2.0, 'book': 1.0, 'kitchen': 1.0, 'vaccuum': 1.0, 't': 2.0, 's': 2.0, 'parents': 1.0, 'sit': 1.0, 'way': 1.0, 'really': 1.0, 'food': 1.0, 'but': 1.0, 'can': 2.0, 'just': 2.0, 'out': 1.0, 'have': 1.0}
Word element => {'day': 1.0, 'will': 1.0, 'aka': 1.0, 'needs': 1.0, 'baby': 1.0, 'use': 1.0, 'used': 1.0, 'high': 1.0, 'highchairs': 1.0, 'some': 1.0, 'while': 1.0, 'for': 2.0, 'especially': 2.0, 'got': 1.0, 'i': 1.0, 'happy': 1.0, 'have': 1.0, 'straps': 1.0, 'bay': 1.0, 'messy': 1.0, 'explorer': 1.0, 'very': 1.0, 'little': 1.0, 'since': 1.0, 'at': 1.0, 'keep': 2.0, 'or': 1.0, 'off': 2.0, 'that': 2.0, 'into': 1.0, 'materials': 1.0, 'over': 1.0, 'times': 1.0, 'am': 1.0, 'easily': 2.0, 'out': 1.0, 'more': 1.0, 'is': 3.0, 'perfect': 1.0, 'this': 3.0, 'it': 8.0, 'only': 1.0, 'adjustment': 1.0, 'popped': 1.0, 'they': 1.0, 'not': 1.0, 'thrilled': 1.0, 'just': 1.0, 'great': 2.0, 'the': 9.0, 'to': 1.0, 'any': 1.0, 'clean': 2.0, 'wipes': 1.0, 'ez': 1.0, 'in': 3.0, 'and': 5.0, 'left': 1.0, 'gunk': 1.0, 'simplicity': 1.0, 'are': 1.0, 'kidding': 1.0, 'washer': 1.0, 'calling': 1.0, 'spills': 1.0, 'multiple': 1.0, 'be': 2.0, 'make': 2.0, 'on': 1.0, 'put': 1.0, 'food': 1.0, 'can': 3.0, 'but': 1.0, 'piece': 1.0, 'drawback': 1.0, 'of': 2.0, 'my': 2.0, 'seem': 1.0, 'son': 2.0, 'take': 1.0, 'tech': 1.0, 'tray': 1.0, 'one': 1.0, 'price': 1.0, 'arms': 1.0, 'if': 2.0, 'we': 3.0, 'a': 3.0, 's': 1.0, 'other': 1.0, 'kitchen': 1.0}
Word element => {'grandparents': 1.0, 'frustrating': 1.0, 'problem': 1.0, 'not': 2.0, 'probably': 1.0, 'space': 1.0, 'leave': 1.0, 'always': 1.0, 'almost': 1.0, 'which': 1.0, 'on': 1.0, 'stand': 1.0, 'kind': 1.0, 'does': 1.0, 'ready': 1.0, 'least': 1.0, 'get': 2.0, 'hope': 1.0, 'fits': 1.0, 'month': 1.0, 'portability': 1.0, 'snacks': 1.0, 'eat': 1.0, '4': 1.0, 'booster': 2.0, 'over': 1.0, 'even': 1.0, 'sometimes': 1.0, 'back': 1.0, 'regards': 1.0, 'can': 2.0, 'but': 3.0, '2': 3.0, 'i': 7.0, 'live': 1.0, 'perfect': 1.0, 'this': 3.0, 'each': 1.0, 'into': 1.0, 'own': 1.0, 'yes': 1.0, 'until': 1.0, 'climb': 1.0, 'off': 1.0, 'cover': 1.0, 'squished': 1.0, 'fantastic': 1.0, 'great': 1.0, 'since': 1.0, '1': 2.0, 'pro': 2.0, 'out': 4.0, 'again': 1.0, 'clean': 2.0, 'found': 1.0, 'easy': 1.0, 'con': 2.0, 'folded': 1.0, 'lean': 1.0, 'else': 1.0, 'the': 11.0, 'of': 4.0, 'wash': 1.0, 'up': 3.0, 'vocal': 1.0, 'folds': 1.0, 'baby': 1.0, 'height': 2.0, 'comes': 2.0, 'at': 1.0, 'is': 4.0, 'more': 1.0, 'doesn': 2.0, 'lots': 1.0, 'everyone': 1.0, 'time': 1.0, 'alllllmost': 1.0, 'for': 7.0, 'where': 2.0, 't': 2.0, 'fit': 2.0, 'chair': 2.0, 'to': 7.0, 'high': 2.0, 'were': 1.0, 's': 7.0, 'there': 1.0, 'perfectly': 1.0, 'go': 1.0, 'lb': 1.0, 'and': 10.0, 'that': 1.0, 'easily': 1.0, 'like': 2.0, 'll': 1.0, 'table': 1.0, 'very': 1.0, 'little': 2.0, 'a': 8.0, 'small': 3.0, 'said': 1.0, 'in': 4.0, 'options': 1.0, 'only': 1.0, 'need': 1.0, 'or': 1.0, 'when': 2.0, 'sit': 1.0, 'lower': 1.0, 'just': 3.0, 'recline': 1.0, 'it': 14.0, 'him': 2.0, 'comfortable': 1.0, 'crotch': 1.0, 'bar': 1.0, 'definitely': 1.0, 'willing': 1.0, 'looked': 1.0, 'from': 1.0, 'either': 1.0, 'boy': 1.0, 'tight': 1.0, 'looks': 1.0, 'me': 3.0, 'my': 2.0, 'pain': 1.0, 'set': 1.0, 'put': 1.0, 'oldest': 1.0, '37': 1.0, 'toddler': 1.0, 'year': 1.0, 'his': 3.0, '31': 1.0, 'huge': 1.0, 'way': 2.0, 'than': 1.0, 'old': 2.0, 'fold': 2.0, 'he': 4.0, 'we': 1.0, 'then': 1.0, 'fine': 2.0, 'years': 1.0, 'no': 1.0, 'you': 3.0, 'push': 1.0, 'complaints': 1.0, 'quite': 2.0, 'chunky': 1.0, 'bits': 1.0, 'lot': 1.0, 'one': 1.0, 'soft': 1.0, 'tell': 1.0, 'if': 2.0}
Word element => {'too': 1.0, 'baby': 1.0, 'am': 1.0, 'bother': 1.0, 'place': 1.0, 't': 1.0, 'the': 1.0, 'in': 1.0, 'doesn': 1.0, 'but': 1.0, 'uncomfortable': 1.0, 'cleaning': 1.0, 'sturdy': 1.0, 'has': 2.0, 'easy': 1.0, 'me': 1.0, 'which': 1.0, 'for': 1.0, 'design': 1.0, 'though': 1.0, 'straps': 1.0, 'cute': 1.0, 'is': 1.0, 'so': 1.0, 'everything': 1.0, 'ok': 1.0, 'very': 1.0, 'my': 1.0, 'leather': 1.0, 'with': 1.0, 'first': 1.0, 'it': 3.0, 'been': 1.0, 'look': 1.0, 'to': 1.0, 'mind': 1.0, 'built': 1.0, 'you': 1.0, 'thought': 1.0, 'that': 2.0, 'i': 2.0}
Word element => {'arm': 1.0, 'more': 1.0, 'being': 1.0, 'constricting': 1.0, 'reach': 1.0, 'point': 2.0, 'bottom': 1.0, 'usually': 1.0, 'plenty': 1.0, 'lbs': 1.0, 'move': 1.0, '25': 1.0, 'another': 1.0, 'an': 1.0, 'sure': 1.0, 'getting': 1.0, 'setting': 1.0, 'upright': 1.0, 'was': 1.0, 'wish': 1.0, 'backwards': 1.0, '2': 1.0, '1': 1.0, '6': 1.0, 'tipped': 3.0, 'usual': 1.0, 'appears': 1.0, 'back': 3.0, 'complaint': 1.0, 'small': 2.0, 'close': 1.0, 'find': 1.0, '16': 1.0, 'very': 1.0, 'us': 1.0, 'slides': 1.0, 'straps': 3.0, 'entire': 1.0, 'soon': 1.0, 'bring': 1.0, 'table': 3.0, 'anymore': 1.0, 'now': 2.0, 'slide': 1.0, 'heights': 1.0, 'comment': 1.0, 'feature': 1.0, 'fold': 1.0, 'used': 1.0, 'folding': 1.0, 'tends': 1.0, 'regular': 1.0, 'than': 2.0, 'bigger': 1.0, 'eating': 4.0, 'clean': 2.0, 'look': 1.0, 'at': 3.0, '3': 1.0, 'too': 2.0, 'neutral': 1.0, 'they': 1.0, 'issue': 1.0, 'gender': 1.0, 'messy': 1.0, 'received': 1.0, 'fussy': 1.0, 'have': 5.0, 'playful': 1.0, 'first': 1.0, 'feel': 1.0, 'lean': 1.0, 'well': 2.0, 'settings': 1.0, 'putting': 2.0, 'want': 3.0, 'in': 7.0, 'would': 2.0, 'tight': 1.0, 'something': 1.0, 'mess': 1.0, 'hand': 1.0, 'own': 1.0, 'fully': 1.0, 'it': 26.0, 'be': 7.0, 'know': 2.0, 're': 2.0, 'you': 4.0, 'when': 6.0, 'for': 5.0, 'love': 4.0, 'out': 3.0, 'the': 38.0, 'finger': 1.0, 'that': 7.0, 'easily': 1.0, 'because': 3.0, 'were': 1.0, 'high': 2.0, 'right': 3.0, 'to': 26.0, 'any': 1.0, 'aesthetics': 1.0, 'pretty': 1.0, '5': 1.0, 'one': 5.0, 'absolutely': 1.0, 'got': 1.0, 'had': 1.0, 'grown': 1.0, 'whole': 1.0, 'as': 5.0, 'way': 1.0, 'all': 2.0, 'pastels': 1.0, 'fits': 2.0, 'our': 2.0, 'unsturdy': 1.0, 'slid': 1.0, 'originally': 2.0, 'cushion': 1.0, 'we': 7.0, 'isn': 1.0, 'trapped': 1.0, 't': 10.0, 'easy': 2.0, 'fit': 1.0, 'a': 17.0, 'encourage': 1.0, 'space': 1.0, 'no': 1.0, 'traditional': 1.0, 'on': 8.0, 'with': 6.0, 'drink': 1.0, 'me': 1.0, 'room': 1.0, 'are': 2.0, 'my': 4.0, 'this': 2.0, 'around': 1.0, 'hesitate': 1.0, 'saving': 1.0, 'soft': 1.0, 'top': 4.0, 'time': 1.0, 'so': 9.0, 'join': 1.0, 'bouncer': 1.0, 'only': 1.0, 'then': 1.0, 'legs': 1.0, 'won': 1.0, 'two': 2.0, 'but': 9.0, 'similarly': 1.0, 'print': 1.0, 'pleasant': 1.0, 'threw': 1.0, 'there': 3.0, 'better': 1.0, 'seemed': 1.0, 'avoid': 1.0, 'like': 3.0, 'which': 1.0, 'll': 1.0, 'side': 3.0, 'not': 5.0, 'matter': 1.0, 'day': 1.0, 'since': 3.0, 'large': 3.0, 'colors': 1.0, 'feeling': 2.0, 'scrub': 1.0, 'how': 2.0, 'remove': 1.0, 'washed': 2.0, 'just': 4.0, 'and': 11.0, 'months': 1.0, 'felt': 1.0, 'able': 1.0, 'get': 2.0, 'often': 1.0, 'kitchen': 2.0, 'secured': 1.0, 'both': 1.0, 'son': 1.0, 'didn': 1.0, 'matches': 1.0, 'him': 1.0, 'necessary': 1.0, 'don': 1.0, 'still': 3.0, 'is': 5.0, 'can': 7.0, 'turn': 1.0, 'if': 1.0, 'machine': 1.0, 'cleaning': 2.0, 'i': 27.0, 'simple': 1.0, 'wipe': 1.0, 'down': 2.0, 'some': 1.0, 'part': 2.0, 'baby': 1.0, 'she': 11.0, 'daughter': 4.0, 'safe': 1.0, 'solution': 1.0, 'has': 2.0, 'or': 8.0, 'food': 3.0, 'harness': 1.0, 'sitting': 1.0, 'also': 3.0, 'need': 2.0, 'of': 9.0, 'even': 2.0, 'truly': 1.0, 'wet': 1.0, 'paper': 1.0, 'once': 1.0, 'towel': 1.0, 'use': 6.0, 'residual': 1.0, 'off': 3.0, 'seems': 1.0, 'plastic': 1.0, 'loves': 1.0, 'rough': 1.0, 'her': 6.0, 'little': 4.0, 'white': 1.0, 'head': 1.0, 'spoon': 1.0, 'adjustable': 1.0, 'done': 1.0, 'under': 1.0, 'gets': 3.0, 'away': 1.0, 'went': 1.0, 'been': 2.0, 'sponge': 1.0, 'by': 1.0, 'while': 2.0, 'cleaned': 1.0, 'washing': 1.0, 'up': 4.0, 'later': 1.0, 'tray': 5.0, 'much': 2.0, 'put': 3.0, 'either': 1.0, 'do': 4.0, 'handed': 1.0, 'seem': 1.0, 'prefer': 1.0, 'removable': 1.0, 'your': 1.0, 'sink': 4.0, 'chair': 11.0, 'comfortable': 1.0, 'into': 1.0, 'towards': 1.0, 'fabric': 1.0, 'directly': 1.0, 'washer': 1.0, 'eat': 2.0, 'lot': 2.0, 'buttons': 1.0, 'haven': 2.0, 'dish': 1.0, 'take': 1.0, 'simply': 2.0, 'hasn': 1.0, 'm': 1.0, 's': 11.0, 'subtle': 1.0, 'doesn': 2.0, 'foot': 1.0}
Word element => {'right': 1.0, 'was': 1.0, 'price': 1.0, 'this': 1.0, 'chair': 1.0, 'son': 1.0, 'easily': 1.0, 'up': 1.0, 'and': 2.0, 'the': 1.0, 'my': 2.0, 'me': 1.0, 'just': 1.0, 'fits': 1.0, 'wife': 1.0, 'for': 1.0, 'in': 1.0, 'point': 1.0, 'perfectly': 1.0, 'cleans': 1.0, 'it': 1.0}
Word element => {'feeding': 1.0, 'after': 1.0, 'off': 1.0, 'easy': 2.0, 'straps': 1.0, 'restraint': 1.0, 'rubber': 1.0, 'secure': 1.0, 'seems': 1.0, 'wipe': 1.0, 'baby': 1.0, 'about': 1.0, 'what': 1.0, 'goes': 1.0, 'saving': 1.0, 'of': 1.0, 'ground': 1.0, 'on': 1.0, 'be': 1.0, 'removal': 1.0, 'has': 1.0, 'something': 1.0, 'one': 1.0, 'tray': 2.0, 'is': 6.0, 'want': 1.0, 'when': 1.0, 'folded': 1.0, 'do': 2.0, 'too': 1.0, 'and': 2.0, 'couple': 1.0, 'out': 1.0, 'our': 3.0, 'as': 4.0, 'to': 4.0, 'basically': 1.0, 'the': 6.0, 'nice': 1.0, 'comfortable': 1.0, 'big': 1.0, 'great': 1.0, 'a': 4.0, 'space': 1.0, 'pointless': 1.0, 'since': 1.0, 'laid': 1.0, 'chair': 4.0, 'far': 2.0, 'price': 1.0, 'for': 1.0, 'fit': 1.0, 'recline': 1.0, 'this': 1.0, 'problems': 1.0, 'point': 1.0, 'but': 1.0, 'in': 2.0, 'dishwasher': 2.0, 'hand': 1.0, 'like': 1.0, 'which': 1.0, 'cannot': 1.0, 'know': 1.0, 'stand': 1.0, 'are': 1.0, 'fairly': 1.0, 'fold': 1.0, 'messy': 1.0, 'lean': 1.0, 'i': 3.0, 'feature': 1.0, 'size': 1.0, 'compact': 1.0, 'sort': 1.0, 'quite': 1.0, 'or': 1.0, 'it': 1.0, 'useless': 1.0, 'standard': 1.0, 'safely': 1.0, 'against': 1.0}
Word element => {'amazon': 1.0, 'here': 1.0, 'winner': 1.0, 'real': 1.0, 'had': 1.0, 'have': 1.0, 'could': 1.0, 'close': 1.0, 'least': 1.0, 'or': 1.0, 'perfect': 1.0, 'gladly': 1.0, 'would': 1.0, 'who': 1.0, 'are': 1.0, 'sure': 1.0, 'order': 1.0, 'right': 1.0, 'doesn': 1.0, 'so': 1.0, 'blew': 1.0, 'decisions': 1.0, 'low': 1.0, 'buying': 1.0, 'make': 1.0, 'parents': 2.0, 'impossible': 1.0, 'saving': 1.0, 'space': 1.0, 'their': 1.0, 'frustration': 1.0, 'poor': 1.0, 'great': 1.0, 'foresight': 1.0, 's': 1.0, 'extremely': 1.0, 'but': 2.0, 'designed': 1.0, 'product': 2.0, 'price': 4.0, 'returning': 1.0, 'know': 1.0, 'keep': 1.0, 'loop': 1.0, '6': 1.0, 'additional': 1.0, 'something': 1.0, 'straps': 1.0, 'cleaning': 1.0, 'there': 3.0, 'little': 1.0, 'on': 3.0, '3': 1.0, 'put': 1.0, 'extend': 1.0, 'your': 1.0, 'believe': 1.0, 'spend': 1.0, 'percentile': 1.0, 'how': 1.0, '50th': 1.0, 'same': 1.0, 'total': 1.0, 'month': 1.0, 'felt': 2.0, 'it': 7.0, 'going': 1.0, 'a': 4.0, 'crevices': 1.0, 'got': 2.0, 'even': 1.0, 'through': 3.0, 'couldn': 1.0, 'and': 3.0, 'styling': 1.0, 'because': 1.0, 'that': 3.0, 'old': 1.0, 'i': 10.0, 'thinking': 2.0, 'replace': 1.0, '4': 3.0, 'kind': 1.0, 'divider': 3.0, 'pay': 1.0, 'perhaps': 1.0, 'replete': 1.0, 'making': 1.0, 'back': 2.0, 'me': 1.0, 'my': 2.0, 'reviewer': 1.0, 'extra': 1.0, 'trying': 1.0, 'another': 3.0, 'solely': 1.0, 'saw': 1.0, '10': 1.0, 'fp': 1.0, 'for': 5.0, 'height': 1.0, 'like': 2.0, 'based': 1.0, 'which': 1.0, 'don': 1.0, 'opening': 3.0, 'what': 1.0, 'when': 2.0, 'meant': 1.0, 'bucks': 1.0, 'execution': 1.0, 'you': 6.0, 'surpass': 1.0, 'chair': 9.0, 'weight': 1.0, '8': 1.0, 'yet': 1.0, 'bottom': 1.0, 'an': 1.0, 'all': 2.0, 'high': 5.0, 'to': 10.0, 'm': 2.0, 'in': 2.0, 'seat': 3.0, 'as': 1.0, 'many': 1.0, 'others': 1.0, 'few': 1.0, 'this': 3.0, 'with': 5.0, 'was': 3.0, 'crotch': 3.0, 'its': 1.0, 'company': 1.0, 'only': 2.0, 'again': 2.0, 'contempo': 1.0, 'clean': 2.0, 'the': 29.0, 'of': 11.0, 'lack': 1.0, 'once': 2.0, 'room': 1.0, 'these': 1.0, 'comes': 1.0, 'annoyed': 1.0, 'up': 1.0, 'relatively': 1.0, 'difficulty': 1.0, 'huge': 1.0, 'concept': 1.0, 'provides': 1.0, 'mere': 1.0, 'out': 3.0, '1': 4.0, 'am': 2.0, 'depth': 3.0, 'from': 1.0, 'provided': 1.0, 'strap': 4.0, 'elated': 1.0, 'looping': 1.0, 'if': 3.0, 't': 3.0, 'farther': 1.0, 'is': 2.0, 'at': 3.0, 'where': 1.0, 'depending': 1.0, 'fisher': 2.0, 'front': 1.0, 'perspective': 1.0, 'graco': 1.0, 'opposed': 1.0, 'purposely': 1.0, 'cut': 2.0, 'get': 3.0, 'happens': 1.0, '2': 4.0, 'compare': 1.0, 'we': 1.0, 'then': 1.0, 'measurements': 1.0, 'believes': 1.0, 'ez': 1.0, 'just': 1.0, 'be': 1.0}
Word element => {'to': 1.0, 'pretty': 1.0, 'reclines': 1.0, 'clean': 1.0, 'baby': 1.0, 'my': 1.0, 'for': 1.0, 'it': 2.0, 'comfy': 1.0, 'highchair': 1.0, 'nice': 1.0, 'very': 1.0, 'and': 2.0, 'padded': 1.0, 'so': 1.0, 'east': 1.0, 'is': 2.0, 'good': 1.0, 'really': 1.0}
Word element => {'chair': 1.0, 'high': 1.0, 'looking': 1.0, 'thats': 1.0, 'to': 1.0, 'i': 2.0, 'it': 3.0, 'love': 1.0, 'my': 2.0, 'and': 1.0, 'for': 1.0, 'anybody': 1.0, 'wife': 1.0, 'kid': 1.0, 'would': 1.0, 'recomment': 1.0, 'loves': 2.0, 'this': 1.0}
Word element => {'in': 1.0, 'working': 1.0, 'entertained': 1.0, 'keep': 1.0, 'objects': 1.0, 'magic': 1.0, 'them': 1.0, 'tired': 1.0, 'while': 1.0, 'from': 1.0, 'they': 1.0, 'cranky': 1.0, 'kids': 1.0, 'and': 2.0, 'buy': 1.0, 'temperamental': 1.0, 'cool': 1.0, 'why': 1.0, 'not': 1.0, 'mirror': 1.0, 'm': 1.0, 'i': 1.0, 'good': 1.0, 'output': 1.0, 'for': 1.0, 'have': 1.0, 'put': 1.0, '3': 1.0, 'on': 2.0, 'do': 1.0, 'sure': 1.0, 'get': 2.0, '1': 1.0, 'does': 1.0, 'died': 1.0, 'yet': 1.0, 'job': 1.0, 'the': 7.0, 'hasn': 1.0, 'need': 2.0, 'some': 1.0, 'motor': 3.0, 'of': 2.0, 'that': 2.0, 'founded': 1.0, 'up': 1.0, 'tomorrow': 1.0, 'us': 1.0, 'moving': 1.0, 'levels': 1.0, 'even': 1.0, 'complaints': 1.0, 'when': 1.0, 'you': 1.0, 'notice': 1.0, 't': 1.0, 'we': 3.0, 's': 2.0, 'a': 5.0, 'sometimes': 1.0, 'crank': 2.0, 'all': 2.0, 'sleep': 1.0, 'our': 2.0, 'to': 7.0, 'being': 1.0, 'same': 2.0, 'swing': 2.0, 'speed': 2.0, 'it': 4.0, 'well': 1.0, 'has': 2.0, 'so': 1.0, 'bit': 1.0, 'seem': 1.0, 'temper': 1.0, 'about': 1.0, 'today': 1.0, 'reviewer': 1.0, 'may': 1.0, 'is': 3.0, 'level': 2.0, 'although': 1.0, 'suffice': 1.0, 'can': 1.0, 'but': 2.0}
Word element => {'recommend': 1.0, 'be': 1.0, 'harness': 1.0, 'point': 1.0, '5': 1.0, 'nicer': 1.0, 'has': 1.0, 'extra': 1.0, 'plush': 2.0, 'little': 3.0, 'would': 1.0, 'new': 2.0, 'will': 1.0, 'sounds': 1.0, 'batteries': 1.0, 'uses': 1.0, 'nice': 1.0, 'great': 1.0, 'more': 1.0, 'is': 3.0, 'side': 2.0, 'had': 2.0, 'back': 1.0, 'an': 2.0, 'and': 2.0, 'of': 2.0, 'a': 5.0, 'we': 7.0, 't': 1.0, 'the': 7.0, 'have': 1.0, 'get': 1.0, 'model': 1.0, 'for': 1.0, 'love': 1.0, 'insert': 1.0, 'swing': 2.0, 'didn': 1.0, 'that': 1.0, 'as': 2.0, 'seat': 1.0, 'to': 1.0, 'our': 2.0, 'so': 6.0, 'everything': 1.0, 'which': 1.0, 'like': 2.0, 'improvements': 1.0, '5th': 1.0, 'tried': 1.0, 'now': 2.0, 'older': 2.0, 'he': 1.0, 'it': 4.0, 'this': 2.0, 'just': 2.0, 'child': 1.0, 'made': 1.0, 'twins': 1.0, 'when': 2.0, 'one': 4.0, 'bought': 2.0, 'newer': 1.0, 'bigger': 1.0, 'lot': 1.0, 'since': 1.0, 'forth': 1.0, 'need': 1.0, 'i': 3.0, 'two': 1.0, 'loved': 1.0, 'far': 1.0, 'good': 1.0, 'they': 1.0, 'because': 1.0, 'having': 1.0, 'plug': 1.0}
Word element => {'sure': 1.0, 'again': 1.0, 'for': 1.0, 'one': 1.0, 'between': 1.0, 'just': 1.0, 'theme': 1.0, 'cute': 1.0, 'plus': 1.0, 'together': 1.0, 'put': 1.0, 'girl': 1.0, 'to': 2.0, 'easy': 1.0, 'safe': 1.0, 'and': 3.0, 'would': 1.0, 'letting': 1.0, 'soft': 1.0, 'substantial': 1.0, 'decide': 1.0, 'extremely': 1.0, 'fabric': 1.0, 'feel': 1.0, 'feels': 1.0, 'the': 3.0, 'monkey': 1.0, 'my': 1.0, 'this': 1.0, 'hard': 1.0, 'it': 4.0, 'is': 3.0, 'really': 2.0, 'buy': 1.0, 'i': 2.0, 'swing': 2.0, 'little': 1.0, 'in': 1.0}
Word element => {'month': 1.0, 'in': 1.0, 'months': 1.0, 'almost': 1.0, 'child': 1.0, '1st': 1.0, 'used': 1.0, 'after': 1.0, 'all': 1.0, 'bad': 1.0, 'not': 1.0, 'but': 1.0, 'being': 1.0, 'and': 2.0, 'very': 1.0, 'easy': 1.0, 'use': 1.0, 'purchase': 1.0, '2': 1.0, 'the': 1.0, 'no': 1.0, 'motor': 1.0, 'it': 3.0, 'this': 1.0, 'with': 1.0, 'hoping': 1.0, 'to': 2.0, 'was': 2.0, 'happy': 1.0, 'one': 1.0, 'for': 5.0, 'sure': 1.0, 'our': 1.0, 'that': 1.0, 'were': 1.0, 'a': 2.0, 'saver': 1.0, 'noisy': 1.0, 'complaints': 1.0, 'assemble': 1.0, 'life': 1.0, 'coming': 1.0, 'us': 1.0, '6': 1.0, 'there': 1.0, 'many': 1.0, 'about': 1.0}
Word element => {'enough': 1.0, 'crying': 1.0, 'means': 1.0, 'not': 1.0, 'things': 1.0, 'tried': 1.0, 'i': 2.0, 'and': 3.0, 'get': 1.0, 'done': 1.0, 'about': 1.0, 'thing': 1.0, 'able': 1.0, 'after': 1.0, 'stop': 1.0, 'non': 1.0, 'first': 1.0, 'with': 1.0, 'only': 2.0, 'time': 1.0, 'day': 1.0, 'ever': 1.0, 'product': 1.0, 'for': 1.0, 'cannot': 1.0, 'sleeping': 1.0, 'which': 1.0, 'anything': 1.0, 'are': 1.0, 'great': 1.0, '1': 1.0, 'reflux': 1.0, 'have': 1.0, 'must': 1.0, 'colicky': 1.0, 'in': 1.0, 'night': 1.0, 'baby': 1.0, 'weeks': 1.0, 'the': 3.0, 'swing': 1.0, 'it': 5.0, 'she': 2.0, 'loved': 1.0, 'say': 1.0, 'sleeps': 1.0, 'is': 2.0, 'we': 2.0, 'a': 1.0, 's': 1.0, 'parents': 1.0, 'way': 1.0, 'm': 1.0, 'all': 2.0, 'to': 1.0, 'my': 1.0}
Word element => {'with': 1.0, 'must': 1.0, 'highly': 1.0, 'keep': 1.0, 'top': 1.0, 'think': 1.0, 'on': 1.0, 'toys': 1.0, 'soothing': 1.0, 'music': 1.0, 'loves': 1.0, 'still': 1.0, 'and': 5.0, 'old': 1.0, 'now': 1.0, '6': 1.0, 'he': 2.0, 'swings': 1.0, 'graco': 1.0, 'of': 1.0, 'or': 1.0, 'versions': 1.0, 'mirror': 1.0, 'years': 2.0, 'tired': 1.0, 'baby': 2.0, 'recommend': 1.0, 'was': 1.0, 'sleep': 1.0, 'to': 3.0, 'my': 2.0, 'previous': 1.0, 'little': 1.0, 'fro': 1.0, 'thought': 1.0, 'had': 1.0, 'excellent': 1.0, 'not': 1.0, 'many': 1.0, 'is': 6.0, 'swing': 1.0, 'him': 1.0, 'be': 1.0, 'soft': 1.0, 'this': 3.0, 'it': 4.0, 'only': 1.0, 'i': 4.0, 'nearly': 1.0, 'child': 1.0, 'the': 5.0, '14': 1.0, 'having': 1.0, 'third': 1.0, 'newborn': 2.0, 'ago': 1.0, 'might': 1.0, 'a': 4.0, 'good': 1.0, 'when': 1.0, 'idea': 1.0, 'product': 2.0, 'for': 2.0, 'months': 1.0, 'bought': 1.0, 'one': 1.0, 'crying': 1.0, 'mistaken': 1.0, 'real': 1.0, 'life': 1.0, 'stop': 1.0, 'sometimes': 1.0, 'saver': 1.0, 'from': 1.0, 'day': 1.0, 'entertained': 1.0, 'way': 1.0, 'anybody': 1.0, 'get': 1.0}
Word element => {'wishing': 1.0, 'been': 1.0, 'magic': 1.0, 'essentially': 1.0, 'right': 1.0, 'just': 1.0, 'hazard': 1.0, 'cushioned': 1.0, 'like': 1.0, 'never': 1.0, 'furthermore': 1.0, 'padding': 1.0, 'issue': 1.0, 'doorways': 1.0, 'a': 5.0, 'could': 1.0, 't': 2.0, 'worth': 1.0, 's': 2.0, 'plug': 1.0, 'without': 1.0, 'place': 1.0, 'set': 1.0, 'used': 1.0, 'free': 1.0, 'neutral': 1.0, 'felt': 2.0, 'him': 3.0, 'it': 10.0, 'months': 1.0, 'color': 1.0, 'son': 2.0, 'reasons': 1.0, 'my': 3.0, 'washing': 1.0, 'snuggly': 2.0, 'occasions': 1.0, 'babies': 1.0, 'scheme': 1.0, 'so': 4.0, 'eat': 1.0, 'little': 1.0, 'option': 1.0, 'crying': 1.0, 'lot': 1.0, 'space': 1.0, 'swing': 2.0, 'was': 5.0, 'doesn': 1.0, 'to': 5.0, 'for': 4.0, 'narrow': 1.0, 'only': 1.0, 'love': 1.0, 'he': 1.0, 'rocking': 1.0, 'this': 2.0, 'shower': 1.0, 'necessary': 1.0, 'the': 7.0, 'of': 1.0, 'oh': 1.0, 'with': 2.0, 'occasionally': 1.0, 'i': 7.0, 'feel': 1.0, 'mom': 1.0, 'what': 1.0, 'when': 3.0, 'night': 1.0, 'you': 2.0, 'that': 1.0, 'easily': 2.0, 'lull': 1.0, 'but': 1.0, 'bought': 1.0, 'money': 1.0, 'and': 4.0, 'extra': 1.0, 've': 1.0, 'down': 1.0, 'several': 1.0, 'don': 1.0, 'up': 1.0, 'need': 1.0, 'batteries': 1.0, 'also': 1.0, 'although': 1.0, 'wide': 1.0, 'is': 5.0, 'all': 1.0, 'an': 2.0, 'there': 1.0, 'really': 1.0, 'loved': 1.0, 'which': 1.0, 'side': 2.0, 'managed': 1.0, 'first': 1.0, 'are': 1.0, 'nothing': 1.0, 'else': 1.0, 'would': 1.0, 'long': 1.0, 'on': 1.0, 'many': 1.0, 'take': 1.0, 'colors': 1.0, 'though': 1.0, 'removed': 1.0, 'while': 1.0, 'does': 2.0, 'inoffensive': 1.0, 'snuggle': 1.0, 'base': 1.0, 'non': 1.0, 'three': 1.0, 'collapses': 1.0, 'exclusively': 1.0, 'sleep': 1.0, 'making': 1.0}
Word element => {'want': 1.0, 'didn': 1.0, 'time': 1.0, 'december': 1.0, 'however': 1.0, 'choices': 2.0, 'ordered': 1.0, 'song': 1.0, 'be': 1.0, 'our': 2.0, 'to': 1.0, 'anymore': 1.0, 'was': 1.0, 'old': 1.0, 'could': 1.0, 'we': 5.0, 't': 1.0, 'the': 2.0, 'down': 1.0, 'direction': 1.0, 'when': 1.0, 'by': 1.0, 'next': 1.0, 'that': 1.0, 'rocking': 1.0, 'it': 1.0, 'she': 1.0, 'baby': 1.0, 'price': 1.0, 'will': 1.0, '80': 1.0, 'but': 1.0, 'love': 2.0, 'for': 2.0, 'lying': 1.0, 'months': 1.0, 'one': 1.0, 'sound': 1.0, 'and': 1.0, 'saved': 1.0, '4': 1.0, 'two': 1.0, 'of': 1.0, 'paid': 1.0, 'this': 1.0, 'full': 1.0, 'should': 1.0, 'have': 2.0, 'waited': 1.0, 'sales': 1.0}
Word element => {'recommend': 1.0, 'highly': 1.0, 'definitely': 1.0, 'room': 1.0, 'living': 1.0, 'nature': 1.0, 'favorite': 1.0, 'sons': 1.0, 'options': 1.0, 'sound': 1.0, 'nice': 2.0, 'like': 1.0, 'which': 1.0, 'has': 2.0, 'further': 1.0, 'even': 1.0, 'different': 1.0, 'would': 1.0, 'something': 1.0, 'than': 2.0, 'because': 2.0, 'not': 1.0, 'first': 2.0, 'with': 1.0, 'soft': 1.0, 'this': 4.0, 'he': 2.0, 'looks': 1.0, 'it': 5.0, 'old': 1.0, 'i': 6.0, 'had': 1.0, 'wanted': 1.0, 'in': 2.0, 'bold': 1.0, 'purchase': 1.0, 'my': 4.0, 'is': 4.0, 'want': 1.0, 'loves': 2.0, 'rainforest': 3.0, 'smiles': 1.0, 'but': 1.0, 'swing': 5.0, 'put': 1.0, '3': 1.0, 'again': 1.0, 'when': 1.0, 'fischer': 1.0, 'him': 1.0, 'we': 2.0, 'a': 3.0, 'absolutely': 1.0, 'mirror': 1.0, 'price': 1.0, 'reclines': 1.0, 'colors': 1.0, 'the': 7.0, 'mobile': 1.0, 'bought': 2.0, 'months': 1.0, 'one': 4.0, 'product': 1.0, 'for': 1.0, 'they': 1.0, 'son': 4.0, 'still': 1.0, 'better': 2.0, 'sell': 1.0, 'to': 1.0, 'our': 1.0, 'did': 1.0, 'get': 1.0, 'and': 4.0, 'are': 1.0, 'simply': 1.0, 'so': 1.0}
Word element => {'this': 1.0, 't': 1.0, 'won': 1.0, 'returning': 1.0, 'ended': 1.0, 'it': 1.0, 'pounds': 1.0, 'just': 1.0, 'recommend': 1.0, 'good': 1.0, 'up': 1.0, 'infants': 1.0, 'for': 1.0, 'pass': 1.0, 'they': 1.0, '20': 1.0, 'stable': 1.0, 'enough': 1.0, 'not': 1.0, '18': 1.0, 'i': 2.0, 'when': 1.0}
Word element => {'appreciated': 1.0, 'really': 1.0, 'they': 2.0, 'child': 1.0, 'first': 1.0, 'having': 1.0, 'loved': 1.0, 'this': 2.0, 'both': 1.0, 'sisters': 1.0, 'it': 2.0, 'were': 1.0, 'was': 1.0, 'a': 1.0, 'their': 1.0, 'gift': 1.0, 'my': 1.0, 'for': 1.0, 'year': 1.0, 'who': 1.0}
Word element => {'for': 1.0, 'best': 1.0, 'had': 1.0, 'over': 1.0, 'settle': 1.0, 'her': 2.0, 'use': 1.0, 'still': 1.0, 'inches': 1.0, 'workout': 1.0, 'exhaustive': 1.0, 'road': 1.0, 'great': 1.0, 'worked': 1.0, 'ours': 1.0, 'parents': 1.0, 'read': 1.0, 'did': 1.0, 'space': 1.0, 'up': 1.0, 'again': 1.0, 'was': 1.0, 'since': 1.0, 'sanity': 1.0, 'saved': 1.0, 'taken': 2.0, 'now': 2.0, 'times': 1.0, '5': 1.0, '4': 1.0, 'least': 1.0, 'pretty': 1.0, 'to': 5.0, 'item': 1.0, 'our': 5.0, 'sleep': 1.0, 'down': 1.0, 've': 1.0, 'several': 1.0, 'by': 1.0, 'home': 1.0, 'issues': 1.0, 'arrived': 1.0, 'loves': 2.0, 'amazon': 1.0, 'been': 1.0, 'vacations': 1.0, 'nature': 1.0, 'able': 1.0, 'wide': 1.0, 'a': 6.0, 'has': 6.0, 'anything': 1.0, 'day': 1.0, 'from': 2.0, 'being': 4.0, 'very': 1.0, 'little': 3.0, 'big': 1.0, 'span': 1.0, 'daughter': 2.0, 'of': 2.0, 'the': 10.0, 'usually': 1.0, 'does': 2.0, 'offs': 1.0, 'i': 2.0, 'reason': 1.0, 'said': 1.0, 'seat': 1.0, 'in': 3.0, 'at': 1.0, 'is': 5.0, 'comes': 1.0, 'long': 1.0, 'on': 4.0, 'today': 1.0, '3': 2.0, 'one': 3.0, 'mobile': 1.0, 'lulled': 1.0, 'huge': 1.0, 'far': 1.0, 'motor': 1.0, 'love': 1.0, 'plenty': 1.0, 'with': 4.0, 'this': 8.0, 'positions': 1.0, 'research': 1.0, 'it': 10.0, 'many': 2.0, 'she': 3.0, 'after': 1.0, 'so': 1.0, 'speed': 1.0, 'swing': 6.0, 'especially': 1.0, 'conducting': 1.0, '16lbs': 1.0, 'and': 10.0, 'plugged': 1.0, 'there': 1.0, 'fastest': 1.0, 'given': 1.0, 'benefit': 1.0, 'settled': 1.0, 'prices': 1.0, 'my': 1.0, 'me': 1.0, '6': 1.0, 'first': 1.0, 'are': 1.0, 'rotating': 1.0, 'loved': 2.0, 'months': 2.0, 'speeds': 1.0, 'music': 1.0, 'but': 1.0, 'sounds': 1.0, 'who': 1.0, 'colicky': 1.0, 'batteries': 2.0, 'mirror': 2.0, 'birds': 1.0, 'nestled': 1.0, 'quite': 1.0, 'reading': 1.0, 'nicely': 1.0, 'trade': 1.0, 'parent': 1.0, '25': 1.0, 'quality': 2.0, 'leg': 1.0, 'we': 5.0, 'take': 2.0, 'reviews': 2.0, 'attracted': 1.0, 'replaced': 1.0, 'other': 2.0, 'an': 1.0, 'old': 1.0, 'adapter': 1.0, 'experienced': 1.0, 'as': 2.0, 'leave': 1.0, 'have': 3.0, 'problems': 1.0, 'that': 3.0, 'because': 1.0, 'easily': 1.0, 'would': 1.0}
Word element => {'myself': 1.0, 'do': 1.0, 'mommy': 1.0, 'allowing': 1.0, 'place': 1.0, 'didn': 1.0, 'recommend': 1.0, 'not': 1.0, 'space': 1.0, 'keep': 1.0, 'relatively': 1.0, 'huge': 1.0, 'con': 1.0, 'switched': 1.0, 'felt': 1.0, 'turned': 1.0, 'several': 1.0, 'you': 1.0, 'choice': 1.0, 'back': 1.0, 'front': 1.0, 'even': 1.0, 'instead': 1.0, 'cool': 1.0, 'think': 1.0, 'they': 1.0, 'if': 2.0, 'turn': 1.0, 'gifted': 1.0, 'like': 3.0, 'seemed': 1.0, 'kiddos': 1.0, 'touch': 1.0, 'mobile': 1.0, 'by': 1.0, 'be': 1.0, 'enough': 1.0, 'isn': 1.0, 'man': 1.0, 'available': 1.0, 'get': 1.0, 'speeds': 1.0, 'different': 2.0, 'white': 1.0, 'music': 1.0, 'little': 1.0, 'nice': 3.0, 'also': 1.0, 'hours': 1.0, 'for': 1.0, 'years': 1.0, 'really': 2.0, 'needless': 1.0, 'pregnant': 1.0, 'nap': 2.0, '5': 1.0, 'has': 3.0, 'all': 4.0, 'to': 9.0, 'slower': 1.0, 'as': 2.0, 'including': 1.0, 'swings': 1.0, 'batteries': 2.0, 'will': 1.0, 'travel': 1.0, 'room': 2.0, 'stalked': 1.0, 'fantastic': 1.0, 'when': 3.0, 'few': 1.0, 'this': 7.0, 'and': 6.0, 'rock': 1.0, 'been': 2.0, 'that': 5.0, 'swing': 10.0, 'c': 1.0, 'infant': 1.0, 'where': 1.0, 'girl': 1.0, 'features': 1.0, 'noise': 1.0, 'lucky': 2.0, 'off': 1.0, 'is': 13.0, 'at': 2.0, 'a': 10.0, 'we': 2.0, 'likes': 1.0, 't': 3.0, 'had': 3.0, 'was': 6.0, 'living': 1.0, 'old': 3.0, 'fast': 1.0, 'well': 1.0, 'i': 18.0, 'pricy': 1.0, 'fun': 1.0, 'from': 2.0, 'me': 1.0, 'my': 10.0, 'directions': 1.0, 'coworkers': 1.0, 'thought': 2.0, 'it': 14.0, 'typically': 1.0, 'truly': 1.0, 'trusty': 1.0, 'out': 1.0, 'last': 2.0, 'just': 1.0, 'stuff': 2.0, 'long': 1.0, 'on': 6.0, 'older': 1.0, '3': 1.0, 'happily': 1.0, 'gift': 1.0, 'which': 2.0, 'side': 3.0, 'easy': 1.0, 'found': 1.0, 'bit': 1.0, 'time': 2.0, 'away': 1.0, 'large': 1.0, 'neutral': 1.0, 'tight': 1.0, 'weeks': 1.0, 'would': 3.0, 'or': 1.0, 'need': 1.0, 'there': 2.0, 'baby': 6.0, 'many': 1.0, 'dishes': 1.0, '2': 1.0, 'surprise': 1.0, 'laundry': 1.0, 'up': 1.0, 'takes': 1.0, 'knowing': 1.0, 'favorite': 1.0, 'gender': 1.0, 'operate': 1.0, 'needed': 1.0, 'are': 2.0, 'first': 2.0, 'but': 5.0, 'ac': 1.0, 'plug': 1.0, 'yet': 2.0, 'in': 4.0, 'options': 1.0, 'amazing': 1.0, 'haven': 1.0, 'choices': 2.0, 'used': 1.0, 'lot': 1.0, 'too': 1.0, 'one': 4.0, 'bought': 2.0, 'the': 10.0, 'of': 3.0, 'big': 2.0, 'since': 5.0, '1': 1.0, 'upgrade': 1.0, 'say': 1.0, 'experience': 1.0, 'engaged': 1.0, 'should': 1.0, 'have': 3.0, 'stock': 1.0, 'given': 2.0, 'set': 1.0, 'naps': 1.0}
Word element => {'the': 1.0, 'colors': 1.0, 'toy': 1.0, 'little': 1.0, 'a': 1.0, 'as': 1.0, 'works': 1.0, 'together': 1.0, 'put': 1.0, 'love': 1.0, 'for': 1.0, 'daughter': 1.0, 'waiting': 1.0, 'still': 1.0, 'though': 1.0, 'arrive': 1.0, 'because': 1.0, 'my': 1.0, 'am': 1.0, 'everything': 1.0, 'so': 1.0, 'stars': 1.0, 'pretty': 1.0, '4': 1.0, 'i': 3.0, 'with': 1.0, 'it': 4.0, 'and': 2.0, 'giving': 1.0, 'far': 1.0, 'easy': 1.0, 'like': 1.0, 'of': 1.0, 'set': 1.0, 'up': 1.0, 'comes': 1.0, 'now': 1.0, 'to': 2.0, 'was': 1.0}
Word element => {'here': 1.0, 'seen': 1.0, 've': 1.0, 'others': 1.0, 'looked': 1.0, 'compared': 1.0, 'average': 1.0, 'enjoy': 1.0, 'time': 1.0, 'in': 1.0, 'also': 1.0, 'd': 1.0, 'ton': 1.0, '6': 1.0, 'wash': 1.0, 'up': 1.0, 'of': 1.0, 'no': 2.0, 'at': 3.0, 'space': 1.0, 'preggers': 1.0, 'really': 1.0, 'the': 3.0, 'myself': 1.0, 'months': 1.0, 'mobile': 1.0, 'this': 1.0, 'felt': 1.0, 'it': 2.0, 'did': 1.0, 'move': 1.0, 'quite': 1.0, 'happy': 1.0, 'was': 2.0, 'to': 5.0, 'all': 3.0, 'easy': 1.0, 'assemble': 1.0, 'i': 7.0, 'few': 1.0, 'by': 1.0, 'complaints': 1.0, 'didn': 1.0, 'and': 2.0, 'options': 1.0, 'swing': 2.0, 'glad': 1.0, 'see': 1.0, 't': 1.0, 'a': 2.0, 'that': 1.0, 'music': 1.0, 'can': 1.0, 'lol': 1.0, 'everything': 1.0, 'find': 1.0, 'fast': 1.0, 'or': 1.0, 'pretty': 1.0, 'take': 1.0}
Word element => {'how': 1.0, 'swing': 1.0, 'is': 1.0, 'change': 1.0, 'can': 1.0, 'that': 1.0, 'together': 1.0, 'expected': 1.0, 'at': 1.0, 'put': 1.0, 'hubs': 1.0, 'stares': 1.0, 'mirror': 1.0, 'the': 2.0, 'my': 1.0, 'and': 2.0, 'up': 1.0, 'constantly': 1.0, 'than': 1.0, 'got': 1.0, 'faster': 1.0, 'it': 4.0, 'month': 1.0, 'love': 1.0, 'soft': 1.0, '3': 1.0, 'positions': 1.0, 'i': 3.0, 'old': 1.0, 'daughter': 1.0, 'loves': 1.0}
Word element => {'reliable': 1.0, 'more': 1.0, 'sad': 1.0, 'something': 1.0, 'buy': 1.0, 'would': 1.0, 'fire': 1.0, 'electrical': 1.0, 'even': 1.0, 'snuggabunny': 1.0, 'with': 2.0, 'issues': 1.0, 'saw': 1.0, 'these': 1.0, 'swung': 1.0, 'low': 1.0, 'many': 1.0, 'she': 4.0, 'thought': 1.0, 'it': 8.0, 'annoying': 1.0, 'stopped': 1.0, 'company': 1.0, 'only': 1.0, 'there': 1.0, 't': 3.0, 'a': 3.0, 'of': 4.0, 'the': 3.0, 'padded': 1.0, 'seemed': 1.0, 'decent': 1.0, 'spot': 1.0, 'odd': 1.0, 'motor': 1.0, 'nap': 1.0, 'thereafter': 1.0, 'for': 2.0, 'price': 1.0, 'product': 1.0, 'months': 2.0, 'except': 1.0, 'much': 2.0, 'put': 1.0, 'on': 1.0, 'hate': 1.0, 'setting': 1.0, 'and': 5.0, 'one': 3.0, 'too': 1.0, 'my': 1.0, 'high': 1.0, 'to': 5.0, 'sleep': 1.0, 'all': 1.0, 'be': 1.0, 'music': 1.0, 'isn': 1.0, 'right': 1.0, 'ate': 1.0, 'bad': 1.0, 'first': 1.0, 'this': 1.0, 'plays': 1.0, 'when': 1.0, 'desperation': 1.0, '3': 1.0, 'squeek': 1.0, 'in': 1.0, 'm': 1.0, 'little': 1.0, 'nice': 1.0, 'two': 1.0, 'but': 1.0, '9lbs': 1.0, 'quality': 1.0, 'night': 1.0, 'started': 1.0, 'annoyed': 1.0, 'at': 1.0, 'is': 1.0, 'i': 8.0, 'well': 1.0, 'hard': 1.0, 'from': 1.0, 'while': 1.0, 'looked': 1.0, 'seems': 1.0, 'tried': 1.0, 'mommy': 1.0, 'out': 1.0, 'wasn': 1.0, 'fisher': 1.0, 'eat': 1.0, 'was': 3.0, 'slightly': 1.0, 'colicky': 1.0, 'went': 1.0, 'so': 2.0, 'reviews': 1.0, 'we': 1.0, 'swinging': 2.0, 'then': 2.0, 'through': 1.0, 'dinner': 1.0, 'after': 2.0, 'about': 2.0, 'her': 1.0, 'use': 2.0, 'shortly': 1.0, 'just': 1.0, 'needed': 1.0, '13lbs': 1.0, 'weight': 1.0, 'didn': 1.0, 'deep': 1.0, 'easily': 1.0, 'because': 2.0, 'that': 1.0}
Word element => {'item': 1.0, 'grateful': 1.0, 'so': 1.0, 'am': 1.0, 'version': 1.0, 'refused': 1.0, 'monkey': 1.0, '2': 1.0, 'bought': 1.0, 'sleep': 1.0, 'enough': 1.0, 'crazy': 1.0, 'doesn': 1.0, 'minutes': 1.0, 'was': 2.0, 'recommend': 1.0, 'months': 1.0, 'get': 1.0, 'own': 1.0, 'dislike': 1.0, 'he': 5.0, 'a': 4.0, 't': 4.0, 's': 1.0, 'than': 1.0, 'nap': 3.0, 'place': 1.0, 'more': 2.0, 'that': 2.0, 'fall': 2.0, 'time': 1.0, 'needs': 1.0, 'is': 2.0, 'at': 2.0, 'his': 2.0, 'daytime': 1.0, 'or': 1.0, 'the': 2.0, 'of': 3.0, 'baby': 2.0, 'age': 1.0, 'in': 2.0, 'i': 6.0, 'putting': 1.0, 'it': 4.0, 'him': 3.0, 'driving': 1.0, 'swing': 1.0, 'crib': 2.0, 'out': 1.0, 'desperation': 1.0, 'we': 1.0, 'take': 1.0, 'right': 1.0, 'away': 1.0, 'worth': 1.0, 'now': 1.0, 'with': 2.0, 'persistence': 1.0, 'some': 1.0, 'me': 1.0, 'learning': 1.0, 'white': 1.0, '25': 1.0, 'noise': 1.0, 'to': 4.0, 'became': 1.0, 'put': 1.0, 'your': 1.0, 'on': 2.0, 'where': 1.0, 'for': 4.0, 'either': 1.0, 'swaddling': 1.0, 'boy': 1.0, 'would': 1.0, 'which': 1.0, 'asleep': 2.0, 'happily': 1.0, 'immediately': 1.0, 'weight': 1.0, 'hours': 1.0, 'gold': 1.0, 'this': 2.0, 'highly': 1.0, 'if': 1.0, 'two': 1.0, 'little': 1.0, 'help': 1.0, 'transition': 1.0, 'but': 3.0, 'napping': 1.0, 'obviously': 1.0, 'could': 1.0, 'will': 1.0, 'and': 5.0, 'schedule': 1.0, 'didn': 3.0, 'eventually': 1.0, 'naps': 1.0, 'are': 1.0, 'getting': 1.0}
Word element => {'manual': 1.0, 'are': 1.0, 'hold': 1.0, 'because': 1.0, 'hated': 1.0, 'ones': 1.0, 'weight': 1.0, 'gliding': 1.0, 'the': 1.0, 'overseas': 1.0, 'way': 1.0, 'degrees': 1.0, 'it': 5.0, 'this': 1.0, 'he': 2.0, 'and': 5.0, 'moved': 1.0, 'start': 1.0, 'my': 1.0, 'forgot': 1.0, 'son': 1.0, 'from': 1.0, 'loved': 1.0, 'got': 2.0, 'getting': 1.0, 'did': 1.0, 'in': 1.0, 'swing': 1.0, 'guess': 1.0, 'i': 5.0, 'one': 2.0, 'irritable': 1.0, 'swinging': 1.0, 'or': 1.0, '90': 1.0, 'more': 1.0, 'completely': 1.0, 'of': 2.0, 'up': 1.0, 'change': 1.0, 'twist': 1.0, 'almost': 1.0, 'his': 1.0, 'attitude': 1.0, 'could': 3.0, 'we': 2.0, 'to': 2.0, 'oh': 1.0, 'm': 1.0, 'rocking': 1.0, 'that': 1.0, 'gave': 1.0, 'you': 1.0, 'when': 1.0, 'sleepy': 1.0, 'be': 1.0, 'here': 1.0, 'back': 2.0}
Word element => {'received': 1.0, 'must': 1.0, 'useful': 1.0, 'most': 1.0, 'been': 1.0, 'lengthy': 1.0, 'is': 1.0, 'adapter': 1.0, 'near': 1.0, 'somewhere': 1.0, 'parts': 1.0, 'swung': 1.0, 'place': 2.0, 'then': 1.0, 'times': 1.0, 'you': 1.0, 'all': 1.0, 'other': 1.0, 'in': 4.0, 'swing': 1.0, 'have': 1.0, 'sometimes': 1.0, 'want': 1.0, 'gifts': 1.0, 'or': 1.0, 'need': 1.0, 'chord': 1.0, 'really': 1.0, 'saved': 1.0, '10': 1.0, 'for': 1.0, 'to': 4.0, 'falls': 1.0, 'as': 1.0, 'lovely': 1.0, 'has': 3.0, 'i': 7.0, 'well': 1.0, 'so': 1.0, 'not': 3.0, 'those': 1.0, 'he': 2.0, 'highly': 1.0, 'this': 2.0, 'last': 1.0, 'time': 2.0, 'invention': 1.0, 'me': 2.0, 'my': 2.0, 'what': 2.0, 'his': 1.0, 'stayed': 1.0, 'son': 2.0, 'every': 1.0, 'still': 1.0, 'gets': 1.0, 'from': 1.0, 'bounce': 1.0, 'broken': 1.0, 'it': 6.0, 'him': 2.0, 'moment': 1.0, 'born': 1.0, 'was': 1.0, 'recommend': 1.0, 'anymore': 1.0, 'and': 2.0, 'works': 1.0, 'do': 2.0, 'much': 1.0, 'one': 3.0, 'like': 1.0, 'asleep': 2.0, 'which': 1.0, 'first': 2.0, 'any': 1.0, 'mom': 1.0, 'portable': 1.0, 'swings': 1.0, 'won': 1.0, 'batteries': 1.0, 'don': 1.0, 't': 2.0, 'could': 1.0, 'a': 2.0, 'plug': 1.0, 'giving': 1.0, 's': 1.0, 'over': 1.0, 'work': 1.0, 'sitting': 1.0, 'change': 1.0, 'but': 1.0, 'that': 2.0, 'because': 2.0, 'the': 9.0, 'of': 2.0, 'position': 1.0, 'move': 1.0, 'used': 2.0, 'directions': 1.0, 'never': 1.0, 'months': 1.0, 'get': 2.0, 'cover': 1.0, 'off': 1.0, 'second': 1.0, 'naps': 1.0, 'waste': 1.0, 'big': 1.0, 'bulky': 1.0, 'just': 1.0}
Word element => {'choice': 1.0, 'before': 1.0, 'never': 1.0, 'newborn': 1.0, 'extra': 1.0, 'require': 1.0, 'would': 1.0, 'test': 1.0, 'notwithstanding': 1.0, 'through': 1.0, 'wanted': 1.0, 'caring': 1.0, 'with': 1.0, 'written': 1.0, 'that': 3.0, 'acknowledging': 1.0, 'instead': 1.0, 'unhelpful': 1.0, 'completely': 1.0, 'was': 1.0, 'service': 1.0, 'customer': 1.0, 'issues': 1.0, 'call': 1.0, 'have': 3.0, 'but': 1.0, 'money': 2.0, 'bunch': 1.0, 'price': 2.0, 'everyone': 1.0, 'to': 5.0, 'because': 1.0, 'me': 2.0, 'not': 2.0, 'like': 1.0, 'know': 1.0, 'just': 1.0, 'they': 2.0, 'reviews': 1.0, 'waisted': 1.0, 'on': 3.0, 'horrible': 1.0, 'do': 2.0, 'and': 2.0, 'ignoring': 1.0, 'mistake': 1.0, 'left': 1.0, 'fisher': 2.0, 'of': 3.0, 'set': 1.0, 'up': 1.0, 'else': 1.0, 'after': 1.0, 'i': 5.0, 'attempted': 1.0, 'time': 1.0, 'so': 1.0, 'purchase': 1.0, 'please': 1.0, 'this': 3.0, 'it': 2.0, 'unit': 1.0, 'for': 1.0, 'product': 5.0, 'defective': 1.0, 'the': 4.0, 'made': 1.0, 'brand': 1.0, 'review': 1.0, 'well': 1.0, 'had': 1.0, 'what': 1.0, 'even': 1.0, 'am': 1.0, 'you': 1.0, 'no': 1.0, 'several': 1.0, 'wall': 1.0, 'swing': 1.0, 'did': 1.0, 'in': 2.0, 'believed': 1.0, 'turn': 1.0, 'go': 1.0, 'a': 8.0, 'we': 1.0, 'plug': 1.0}
Word element => {'store': 1.0, 'unsure': 1.0, 'way': 1.0, 'than': 1.0, 'space': 1.0, 'more': 1.0, 'no': 1.0, 'out': 1.0, 'find': 1.0, 'would': 1.0, 'bummed': 1.0, 'little': 2.0, 'sitting': 2.0, 'between': 1.0, 'older': 1.0, 'bit': 1.0, 'get': 1.0, 'they': 2.0, 'takes': 1.0, 'up': 3.0, 'product': 2.0, 'actually': 1.0, 'our': 1.0, 'noises': 1.0, 'as': 1.0, 'right': 1.0, 'it': 8.0, 'there': 3.0, 'in': 4.0, 'will': 1.0, 'swings': 1.0, 'put': 2.0, 'go': 2.0, 'a': 9.0, 'straight': 2.0, 'to': 6.0, 'pretty': 1.0, 'music': 2.0, 'but': 3.0, 'still': 1.0, 'if': 2.0, 'say': 1.0, 'at': 1.0, 'look': 1.0, 'sits': 1.0, 'is': 9.0, 'sit': 1.0, 'when': 3.0, 'am': 3.0, 'kidding': 1.0, 'which': 1.0, 'good': 2.0, 'her': 1.0, 'loves': 1.0, 'that': 2.0, 'even': 1.0, 'infants': 1.0, 'over': 2.0, 'extremely': 1.0, 'and': 8.0, 'plays': 1.0, 'very': 3.0, 'you': 2.0, 'loud': 1.0, 'this': 3.0, 'tell': 1.0, 'soft': 1.0, 'laying': 2.0, 'perfect': 1.0, 'snack': 1.0, 'with': 2.0, 'great': 1.0, 'heavier': 1.0, 'variety': 1.0, 'really': 1.0, 'not': 1.0, 'warm': 1.0, 'songs': 1.0, 'others': 1.0, 'she': 1.0, 'many': 1.0, 'baby': 3.0, 'person': 1.0, 'the': 12.0, 'of': 4.0, 'for': 5.0, 'such': 1.0, 'setting': 2.0, 'or': 2.0, 'nature': 1.0, 'on': 1.0, 'long': 1.0, 'time': 1.0, 'after': 1.0, 'goes': 1.0, 'sounds': 1.0, 'downfall': 1.0, 'material': 1.0, 'through': 1.0, 'reclining': 1.0, 'stops': 1.0, 'swing': 2.0, 'them': 2.0, 'has': 2.0, 'power': 2.0, 'terms': 2.0, 'ability': 1.0, 'swinging': 1.0, 'we': 2.0, 'moving': 1.0, 'sleep': 1.0, 'back': 1.0, 'forth': 1.0, 'are': 2.0, 'first': 1.0, 'i': 6.0, 'fast': 1.0, 'did': 1.0, 'was': 2.0, 'stable': 1.0, 'blanket': 1.0, 'slowed': 1.0, 'cozy': 1.0, 'down': 3.0, 'constantly': 1.0, 'can': 1.0, 'so': 1.0, 'speed': 2.0, 'happy': 2.0, 'one': 3.0, 'play': 1.0, 'about': 1.0, 'options': 1.0, 'only': 2.0, 'all': 3.0, 'other': 1.0, 'have': 2.0}
Word element => {'dollar': 1.0, 'every': 2.0, 'room': 1.0, 'of': 2.0, 'space': 1.0, 'lot': 1.0, 'pricey': 1.0, 'on': 1.0, 'when': 1.0, 'easy': 1.0, 'cover': 1.0, 'soothing': 1.0, 'old': 1.0, 'i': 3.0, 'would': 1.0, 'never': 1.0, 'was': 5.0, 'by': 1.0, 'daughter': 2.0, 'to': 2.0, 'sleep': 3.0, 'well': 2.0, 'shape': 1.0, 'without': 1.0, 'the': 5.0, 'my': 2.0, 'took': 1.0, 'loved': 1.0, 'got': 2.0, 'this': 2.0, 'inch': 1.0, 'did': 2.0, 'spit': 1.0, 'sounds': 1.0, 'cared': 1.0, 'slept': 1.0, 'swing': 2.0, 'time': 1.0, 'so': 1.0, 'up': 2.0, 'wash': 1.0, 'don': 1.0, 'still': 1.0, 'worth': 1.0, 'held': 1.0, 'while': 1.0, 'being': 1.0, 'in': 1.0, 'bad': 1.0, 'music': 1.0, 'but': 3.0, 's': 1.0, 'a': 2.0, 't': 1.0, 'we': 3.0, 'remove': 1.0, 'month': 1.0, 'it': 4.0, 'she': 3.0, 'and': 9.0, 'responded': 1.0, 'wonderfully': 1.0, 'comfortable': 1.0, 'for': 2.0, 'take': 1.0, 'pretty': 1.0, 'safe': 1.0, 'paid': 1.0, 'her': 1.0, 'do': 1.0, 'only': 1.0, 'much': 1.0, 'mobile': 1.0}
Word element => {'cozy': 1.0, 'and': 3.0, 'very': 1.0, 'best': 1.0, 'is': 1.0, 'them': 1.0, 'out': 1.0, 'wear': 1.0, 'cannot': 1.0, 'worth': 1.0, 'well': 1.0, 'kids': 1.0, 'swings': 1.0, 'safe': 1.0, 'at': 1.0, 'has': 1.0, 'the': 1.0, 'these': 1.0, 'awesome': 1.0, 'our': 2.0, '4': 2.0, 'one': 1.0, 'you': 1.0, 's': 2.0, 'expensive': 1.0, 'buying': 1.0, 'about': 1.0, 'ended': 1.0, 'of': 3.0, 'up': 1.0, 'family': 1.0, 'we': 1.0, 'all': 1.0, 'have': 2.0, 'loved': 1.0, 'every': 1.0, 'it': 6.0, 'swing': 1.0, 'quality': 1.0, 'house': 1.0, 'an': 1.0, 'but': 1.0}
Word element => {'on': 1.0, 'gear': 1.0, 'spent': 1.0, 'money': 1.0, 'best': 1.0, 'instantly': 1.0, 'down': 1.0, 'calmed': 1.0, 'her': 1.0, 'who': 1.0, 'mom': 1.0, 'my': 2.0, 'she': 1.0, 'baby': 2.0, 'colicky': 1.0, 'much': 1.0, 'one': 1.0, 'for': 1.0, 'watches': 1.0, 'got': 2.0, 'needed': 1.0, 'rest': 1.0, 'too': 1.0}
Word element => {'definitely': 1.0, 'and': 1.0, 'too': 1.0, 'm': 1.0, 'not': 1.0, 'because': 2.0, 'going': 1.0, 's': 1.0, 'in': 2.0, 'sleep': 1.0, 'to': 1.0, 'goes': 1.0, 'he': 1.0, 'it': 5.0, 'loud': 1.0, 'this': 1.0, 'do': 1.0, 'only': 1.0, 'my': 1.0, 'happy': 1.0, 'son': 1.0, 'is': 2.0, 'love': 1.0, 'for': 1.0, 'swing': 1.0, 'batteries': 1.0, 'now': 1.0, 'weeks': 1.0, 'option': 1.0, 'diapers': 1.0, '4': 1.0, 'i': 4.0, 'battery': 1.0, 'so': 2.0, 'cute': 1.0, 'that': 1.0, 'ac': 1.0, 'has': 1.0, 'the': 1.0, 'worth': 1.0, 'plug': 1.0, 'instead': 1.0, 'of': 1.0, 'would': 1.0, 'be': 1.0, 'through': 1.0, 'like': 1.0, 'almost': 1.0, 'his': 1.0}
Word element => {'fisher': 1.0, 'products': 1.0, 'i': 2.0, 'relaxing': 1.0, 'just': 1.0, 'cradle': 2.0, 'and': 2.0, 'goes': 1.0, 'automatic': 1.0, 'electric': 1.0, 'forward': 1.0, 'our': 1.0, 'from': 1.0, 'love': 1.0, 'comfortable': 1.0, 'swing': 3.0, 'soothing': 1.0, 'this': 1.0, 'it': 3.0, 'asleep': 1.0, 'to': 1.0, 'a': 1.0, 'recommend': 1.0, 'facing': 1.0, 'price': 1.0, 'highly': 1.0, 'baby': 1.0, 'both': 1.0, 'sideway': 1.0, 'is': 1.0, 'really': 1.0, 'enjoyed': 1.0, 'falling': 1.0, 'in': 1.0}
Word element => {'recommend': 1.0, 'highly': 1.0, 'loves': 1.0, 'my': 2.0, 'like': 1.0, 'given': 1.0, 'daughter': 2.0, 'graco': 1.0, 'and': 1.0, '1': 1.0, 'of': 1.0, 'i': 2.0, 'just': 1.0, 'swing': 1.0, 'didn': 1.0, 'the': 1.0, '2': 1.0, 't': 1.0, 'seem': 1.0, 'was': 1.0, 'to': 1.0, 'this': 1.0, 'it': 2.0, 'out': 1.0, 'in': 1.0, 'desperation': 1.0, 'bought': 1.0}
Word element => {'definitely': 1.0, 'and': 3.0, 'do': 1.0, 'me': 1.0, 'not': 1.0, 'just': 1.0, 'enough': 1.0, 'long': 1.0, 'her': 1.0, 'both': 1.0, 'is': 1.0, 'drive': 1.0, 'perfect': 1.0, 'this': 1.0, 'the': 2.0, 'my': 2.0, 'for': 1.0, 'daughter': 2.0, 'swings': 1.0, 'sleep': 1.0, 'to': 2.0, 'now': 1.0, 'money': 1.0, 'music': 1.0, 'problem': 1.0, 'mobile': 1.0, 'goes': 1.0, 'other': 1.0, 'crazy': 1.0, 'it': 3.0, 'she': 1.0, 'lot': 1.0, 'has': 2.0, 'capability': 1.0, '15': 1.0, 'go': 1.0, 's': 1.0, 'a': 1.0, 'battery': 1.0, 'wall': 1.0, 'no': 1.0, 'worth': 1.0, 'plug': 1.0, 'swinging': 1.0, 'loves': 1.0, 'that': 1.0, 'over': 1.0, 'lbs': 1.0, 'like': 1.0, 'of': 1.0}
Word element => {'able': 1.0, 'being': 1.0, 'total': 1.0, 'especially': 1.0, 'are': 1.0, 'know': 1.0, 'breezed': 1.0, 'they': 1.0, 'many': 1.0, 'used': 1.0, 'liked': 1.0, 'how': 1.0, 'he': 1.0, 'with': 1.0, 'similarly': 1.0, 'swing': 2.0, 'child': 1.0, 'third': 1.0, 'think': 1.0, 'on': 3.0, 'pack': 1.0, 'much': 2.0, 'so': 3.0, 'worked': 1.0, 'saves': 1.0, 'about': 1.0, 'wall': 2.0, 'when': 1.0, 'plugging': 1.0, 'size': 1.0, 'cord': 1.0, 'after': 1.0, 'all': 1.0, 'to': 6.0, 'giant': 1.0, 'side': 8.0, 'plug': 1.0, 'motion': 4.0, 'expensive': 1.0, 'love': 2.0, 'd': 3.0, 'best': 2.0, 'through': 2.0, 'far': 1.0, 'corner': 1.0, 'tried': 1.0, 'i': 6.0, '4': 1.0, 'is': 2.0, 'fall': 1.0, 'different': 1.0, 'than': 1.0, 'that': 1.0, 'into': 2.0, 'babies': 2.0, 've': 1.0, 'in': 2.0, 'and': 5.0, 'save': 1.0, 'my': 2.0, 'mean': 1.0, 'helps': 1.0, 'colors': 1.0, 'asleep': 1.0, 'the': 12.0, 'month': 1.0, 'it': 3.0, 'be': 1.0, 'just': 1.0, 'by': 1.0, 'soothed': 1.0, 'way': 1.0, 'better': 1.0, 'batteries': 5.0, 'swings': 1.0, 'eyesore': 1.0, 'front': 1.0, 'go': 1.0, 'we': 4.0, 's': 1.0, 'a': 5.0, 'back': 1.0, 'this': 2.0, 'soft': 1.0, 'not': 1.0, 'had': 3.0, 'gaudy': 1.0, 'money': 1.0, 'but': 2.0, 'sitting': 1.0, 'of': 2.0, '20': 1.0, '5': 1.0, 'room': 1.0, 'part': 1.0}
Word element => {'customer': 1.0, 'there': 1.0, 'love': 1.0, 'normal': 1.0, 'returned': 1.0, 'working': 1.0, 'second': 1.0, 'every': 1.0, 'knows': 1.0, 'anyone': 1.0, 'service': 2.0, 'week': 1.0, 'product': 1.0, 'order': 1.0, 'minutes': 1.0, 'original': 1.0, 'made': 1.0, 'amazon': 2.0, 'when': 1.0, 'credited': 1.0, 'till': 1.0, 'cover': 1.0, 'set': 1.0, 'money': 1.0, 'would': 1.0, 'hassle': 1.0, 'more': 1.0, 'seemed': 1.0, 'return': 2.0, 'new': 4.0, 'buy': 1.0, 'options': 1.0, 'other': 1.0, 'gave': 1.0, 'their': 1.0, 'cost': 3.0, 'label': 1.0, 'responsible': 1.0, 'd': 1.0, 'weeks': 1.0, 'two': 1.0, 'already': 1.0, 'replacement': 1.0, 'no': 3.0, 'account': 1.0, 'companion': 1.0, 'form': 1.0, 'course': 1.0, 'still': 2.0, 'done': 1.0, 'or': 3.0, 'entire': 1.0, 'me': 4.0, 'care': 1.0, 'like': 3.0, 'anything': 1.0, 'chest': 1.0, 'any': 1.0, 'viewing': 1.0, 'on': 2.0, 'wants': 1.0, '2012': 1.0, 'arms': 1.0, 'swings': 1.0, 'it': 7.0, 'be': 3.0, 'wrapped': 1.0, 'him': 6.0, 'he': 6.0, 'nephew': 2.0, 'far': 1.0, 'motor': 1.0, 'crib': 1.0, 'prefers': 1.0, 'music': 1.0, 'around': 3.0, 'purchase': 1.0, 'for': 8.0, 'much': 2.0, 'defective': 1.0, 'do': 1.0, 'take': 1.0, 'trapped': 1.0, 'your': 1.0, 'many': 2.0, 'has': 4.0, 'swing': 8.0, 'little': 1.0, 'manufacture': 1.0, 'the': 23.0, 'even': 1.0, 'of': 6.0, 'first': 1.0, 'we': 5.0, 'bad': 1.0, 'outstanding': 2.0, 'this': 6.0, 'urps': 1.0, 'takes': 1.0, 'up': 2.0, 'in': 10.0, 'seat': 1.0, 'rely': 1.0, 'needed': 2.0, 'so': 5.0, 'but': 1.0, '8230': 1.0, 'august': 1.0, 'a': 13.0, 'sides': 1.0, 'credit': 1.0, 'month': 1.0, 'heavily': 1.0, 'hates': 1.0, 'us': 3.0, 'shortly': 1.0, 'snuggly': 1.0, 'thing': 1.0, 'found': 1.0, 'have': 5.0, 'frustrating': 1.0, 'after': 1.0, 'day': 1.0, 'since': 1.0, 'space': 1.0, 'you': 7.0, 'with': 1.0, 'direction': 1.0, 'because': 1.0, 'placed': 1.0, 'that': 9.0, 'let': 1.0, 'they': 7.0, 'stay': 2.0, 'which': 6.0, 'side': 2.0, 'back': 2.0, 'asleep': 1.0, 'making': 1.0, 'easily': 2.0, 'brought': 1.0, 'usually': 1.0, 'sister': 1.0, 'counts': 1.0, 'an': 1.0, 'twenty': 1.0, 'home': 1.0, 'extra': 3.0, 'gas': 1.0, 'travels': 1.0, 'while': 1.0, 'hard': 1.0, 'broken': 1.0, 'work': 1.0, 'who': 1.0, 'from': 2.0, 'my': 5.0, 'room': 2.0, 'granted': 1.0, 'once': 1.0, 'than': 1.0, 'bit': 1.0, 'easy': 2.0, 'sleep': 5.0, 'throat': 1.0, 'then': 1.0, 'legs': 1.0, 'shipping': 3.0, 'device': 1.0, 'get': 4.0, 'months': 1.0, 'turn': 2.0, 'can': 5.0, 'is': 6.0, 'sits': 1.0, 'at': 2.0, 'house': 1.0, 'habits': 1.0, 'if': 2.0, 'great': 3.0, 'owning': 1.0, 'time': 1.0, 'kind': 1.0, 'shaped': 1.0, 'sling': 1.0, 'opinion': 1.0, 'kinda': 1.0, 'immediately': 1.0, 'all': 2.0, 'cranky': 3.0, 'acts': 1.0, 'another': 1.0, 'think': 1.0, 'being': 1.0, 'held': 1.0, 'his': 4.0, 'lot': 1.0, 'got': 1.0, 'one': 4.0, 'emailed': 1.0, 'happy': 1.0, 'need': 2.0, 'also': 2.0, 'incline': 1.0, 'could': 2.0, 'grouchy': 1.0, 'i': 4.0, 'broke': 1.0, 'and': 15.0, 'just': 2.0, 'case': 1.0, 'off': 1.0, 'bubbles': 1.0, 's': 5.0, 'doesn': 1.0, 't': 2.0, 'mouth': 1.0, 'hours': 1.0, 'baby': 5.0, 'part': 4.0, 'not': 1.0, 'different': 1.0, 'three': 2.0, 'directions': 1.0, 'swinging': 1.0, 'forward': 1.0, 'help': 1.0, 'connecting': 1.0, 'rooms': 1.0, 'cradle': 1.0, 'pass': 1.0, 'apart': 1.0, 'leave': 1.0, 'unit': 1.0, 'position': 1.0, 'rocked': 1.0, 'face': 1.0, 'now': 1.0, 'about': 2.0, 'sleeping': 2.0, 'six': 1.0, 'wonderful': 1.0, 'keep': 1.0, 'makes': 1.0, 'equals': 2.0, 'emails': 1.0, 'down': 1.0, 'move': 1.0, 'been': 2.0, 'went': 1.0, 'told': 1.0, 'out': 2.0, 'to': 18.0, 'disaster': 1.0, 'as': 1.0, 'less': 1.0, 'sit': 1.0, 'experiment': 1.0, 'whole': 1.0, 'family': 2.0, 'was': 2.0, 'contacted': 1.0, 'between': 1.0, 'troubleshooting': 1.0, 'had': 5.0, 'go': 1.0, '8217': 5.0, 'into': 1.0, 'through': 2.0}
Word element => {'with': 1.0, 'ok': 1.0, 'plays': 1.0, 'least': 1.0, 'works': 1.0, 'you': 1.0, 'stars': 2.0, 'review': 1.0, 'changing': 1.0, 'refund': 1.0, 'returning': 1.0, 'wonderfully': 1.0, 'worked': 1.0, 'disappointed': 1.0, 'no': 2.0, 'dark': 1.0, 'went': 1.0, 'second': 1.0, 'flashed': 1.0, 'switch': 1.0, 'all': 1.0, 'going': 1.0, 'power': 1.0, 'there': 1.0, 'work': 1.0, 'does': 1.0, 'only': 1.0, 'dud': 1.0, 'plugged': 1.0, 'received': 1.0, 'time': 1.0, 'broken': 2.0, 'said': 1.0, '4': 1.0, 'replace': 1.0, 'again': 1.0, 'from': 2.0, 'exact': 1.0, 'purchased': 1.0, 'version': 1.0, 'newer': 1.0, 'll': 1.0, 'guess': 1.0, 'who': 1.0, 've': 1.0, 'first': 2.0, 'working': 2.0, 'warranty': 1.0, 'not': 5.0, 'started': 1.0, 'she': 1.0, 'baby': 2.0, 'at': 2.0, 'is': 6.0, 'valid': 1.0, 'for': 2.0, '10': 2.0, 'but': 3.0, '2': 2.0, 'around': 1.0, 'his': 1.0, 'music': 3.0, 'law': 1.0, 'naps': 2.0, '25': 1.0, 'of': 1.0, 'the': 14.0, 'a': 8.0, 'swinging': 3.0, 'then': 2.0, 'we': 6.0, 's': 6.0, 'green': 1.0, 'month': 2.0, 'it': 6.0, 'my': 4.0, 'since': 1.0, 'really': 1.0, 'quiet': 1.0, 'and': 6.0, 'one': 1.0, 'too': 1.0, 'couldn': 1.0, 'this': 6.0, 'sister': 1.0, 'resort': 1.0, 'motor': 1.0, 'he': 5.0, 'wiring': 1.0, 'light': 1.0, 'taking': 1.0, '3': 2.0, 'update': 1.0, 'on': 4.0, 'nap': 1.0, 'decided': 1.0, 'move': 1.0, '29': 1.0, 'once': 1.0, 'room': 1.0, 'stops': 1.0, 'day': 1.0, 'something': 1.0, 'says': 1.0, 'buy': 2.0, 'now': 2.0, 'can': 3.0, 'so': 2.0, 'was': 2.0, 'anymore': 1.0, 'hoping': 2.0, 'to': 11.0, 'pass': 1.0, 'great': 2.0, 'into': 1.0, 'amazon': 1.0, 'saver': 1.0, 'been': 1.0, 'because': 1.0, 'that': 2.0, 'creak': 1.0, 'properly': 1.0, 'while': 1.0, 'sleep': 1.0, 'flickers': 1.0, 'hours': 1.0, 'when': 2.0, 'manually': 2.0, 'until': 2.0, 'off': 1.0, 'turns': 1.0, 'after': 2.0, 'life': 1.0, '19': 1.0, 'seconds': 1.0, 'weight': 1.0, '4th': 1.0, 'swing': 14.0, 'pounds': 2.0, 'fast': 1.0, 'i': 9.0, 'inches': 1.0, 'max': 1.0, 'owner': 1.0, 'april': 1.0, 'manual': 1.0, 'had': 1.0, 'pushing': 1.0, 'asleep': 1.0, 'which': 1.0, 'be': 1.0, '7': 1.0, 'up': 1.0, 't': 1.0, 'replacement': 2.0, 'in': 4.0, 'm': 4.0, 'if': 1.0, 'expecting': 1.0, 'turn': 1.0, 'still': 2.0, 'months': 2.0, 'get': 3.0}
Word element => {'may': 1.0, 'babysitters': 1.0, 'complicated': 1.0, 'needed': 1.0, 'version': 1.0, 'that': 2.0, 'few': 1.0, 'this': 3.0, 'there': 3.0, 'panel': 1.0, 'minor': 2.0, 'in': 8.0, 's': 1.0, 'm': 1.0, 'five': 1.0, 'stabalizing': 1.0, 'herself': 1.0, 'cradle': 1.0, 'as': 4.0, 'only': 1.0, 'then': 1.0, 'legs': 3.0, 'design': 2.0, 'vs': 3.0, 'stable': 1.0, '5': 1.0, 'charge': 1.0, 'changes': 2.0, 'more': 3.0, 'pleased': 1.0, 'up': 2.0, 'bar': 1.0, 'waiting': 1.0, 'has': 1.0, 'able': 1.0, 'inconvenience': 1.0, 'get': 1.0, 'batteries': 3.0, 'clip': 2.0, 'button': 1.0, 'their': 1.0, 'guide': 1.0, 'plush': 1.0, 'with': 2.0, 'weren': 1.0, 'were': 2.0, 'since': 1.0, 'done': 1.0, 'automatically': 1.0, 'switch': 1.0, 'd': 2.0, 'price': 1.0, 'specific': 1.0, 'product': 1.0, 'year': 1.0, 'little': 1.0, 'plugs': 1.0, 'swing': 6.0, 'dials': 1.0, 'a': 9.0, 'small': 1.0, 'we': 4.0, 'leg': 1.0, 'swinging': 1.0, 'lamb': 1.0, 'used': 1.0, 'purchased': 1.0, 'but': 4.0, 'always': 1.0, 'most': 1.0, 'added': 1.0, 'back': 2.0, 'features': 1.0, 'sturdy': 1.0, 'beneficial': 1.0, 'after': 1.0, 'model': 3.0, 'time': 1.0, 'annoying': 2.0, 'fisher': 1.0, 'front': 2.0, 'the': 40.0, 'burned': 1.0, 'modifications': 1.0, '3': 2.0, 'shift': 1.0, 'on': 7.0, 'control': 1.0, 'operate': 1.0, 'an': 1.0, 'point': 3.0, 'makes': 2.0, 'of': 6.0, 'old': 2.0, 'power': 2.0, 'feature': 1.0, 'smiles': 1.0, 'intuitively': 1.0, 'i': 4.0, 'key': 1.0, 'well': 1.0, 'putting': 1.0, 'buttons': 3.0, 'clear': 1.0, 'fabric': 1.0, 'through': 3.0, 'remodel': 1.0, 'to': 13.0, 'for': 4.0, 'purchase': 1.0, 'sees': 1.0, 'options': 2.0, 'motor': 1.0, 'designs': 1.0, 'dial': 1.0, 'from': 1.0, 'option': 1.0, 'last': 2.0, 'packages': 1.0, 'plug': 2.0, 'my': 2.0, 'are': 5.0, 'cute': 2.0, 'overall': 2.0, 'say': 1.0, 'really': 1.0, 'also': 1.0, 'harness': 5.0, 'upgrades': 1.0, 'works': 1.0, 'soft': 1.0, 'll': 1.0, 'side': 2.0, 'or': 2.0, 'angle': 1.0, 'assembly': 2.0, 'huge': 1.0, 'way': 1.0, 'was': 2.0, 'different': 1.0, 'not': 6.0, 'easy': 1.0, 'remember': 1.0, 'visitors': 1.0, 'have': 1.0, 'three': 1.0, 'directions': 1.0, '11': 1.0, 't': 2.0, 'installation': 1.0, 'hard': 1.0, 'multiple': 2.0, 'see': 1.0, 'until': 1.0, 'our': 2.0, 'drawing': 1.0, 'manual': 1.0, 'upgrade': 1.0, 'so': 1.0, 'turn': 3.0, 'is': 3.0, 'can': 1.0, 'every': 2.0, 'speed': 2.0, 'improperly': 1.0, 'deal': 2.0, 'ended': 1.0, 'she': 1.0, 'and': 10.0, 'just': 3.0, 'especially': 2.0, 'use': 1.0, 'rabbit': 1.0, 'placement': 1.0, 'pros': 1.0, 'no': 1.0, 'week': 2.0, 'very': 1.0, 'cannot': 1.0, 'mobile': 2.0, 'mirror': 2.0, 'several': 1.0, 'music': 2.0, 'ability': 1.0, 'motion': 1.0, 'you': 3.0, 'seat': 1.0, 'push': 1.0, 'straps': 1.0, 'it': 9.0, 'be': 3.0, 'allowing': 1.0, 'extra': 1.0, 'trying': 1.0, 'securitycons': 1.0, 'covering': 1.0, 'like': 1.0, 'wasn': 1.0, 'breaker': 1.0, 'stuffed': 1.0, 'going': 3.0, 'attached': 1.0, 'bit': 1.0, 'removed': 1.0, 'ends': 1.0, 'getting': 1.0, 'previous': 3.0, 'when': 1.0, 'which': 1.0, 'again': 1.0, 'con': 1.0, 'now': 1.0, 'steps': 1.0, 'adjust': 2.0, 'will': 2.0, 'start': 2.0}
Word element => {'definitely': 1.0, 'overall': 1.0, 'wherever': 1.0, 'issue': 1.0, 'space': 1.0, 'sure': 1.0, 'large': 1.0, 'install': 1.0, 'screws': 1.0, 'ton': 1.0, 'recommend': 1.0, 'planning': 1.0, 'were': 1.0, 'liked': 1.0, 'would': 1.0, 'work': 1.0, 'than': 1.0, 'assembly': 1.0, 'only': 1.0, 'handy': 1.0, 'location': 1.0, 'anywhere': 1.0, 'move': 1.0, 'front': 1.0, 'as': 1.0, 'pretty': 2.0, 'to': 9.0, 'more': 1.0, 'babies': 1.0, 've': 1.0, 'key': 1.0, 'built': 1.0, 'opposed': 1.0, 'bit': 1.0, 'found': 1.0, 'this': 5.0, 'molded': 1.0, 'absolutely': 1.0, 'd': 3.0, 'ability': 2.0, 'off': 2.0, 'especially': 1.0, 're': 2.0, 'or': 1.0, 'possibly': 1.0, 'travel': 1.0, 'could': 1.0, 't': 3.0, 'swinging': 2.0, 'we': 1.0, 'plug': 1.0, 's': 2.0, 'a': 6.0, 'going': 1.0, 'lets': 1.0, 'have': 3.0, 'plush': 1.0, '3': 1.0, 'on': 1.0, 'like': 2.0, 'blown': 1.0, 'no': 1.0, 'is': 7.0, 'that': 2.0, 'fall': 1.0, 'asleep': 1.0, 'side': 2.0, 'downside': 1.0, 'run': 1.0, 'really': 4.0, 'spectacular': 1.0, 'girls': 1.0, 'was': 2.0, 'swings': 1.0, 'batteries': 1.0, 'by': 1.0, 'baby': 2.0, 'well': 1.0, 'i': 5.0, 'etc': 1.0, 'does': 1.0, 'into': 1.0, 'tend': 1.0, 'everything': 1.0, 'swing': 7.0, 'sleeping': 1.0, 'aren': 1.0, 'music': 1.0, 'back': 1.0, 'an': 2.0, 'unfamiliar': 1.0, 'for': 4.0, 'away': 1.0, 'controls': 1.0, 'me': 1.0, 'and': 4.0, 'faster': 1.0, 'set': 1.0, 'cradle': 1.0, 'nice': 2.0, 'it': 3.0, 'flimsy': 1.0, 'injected': 1.0, 'the': 12.0, 'device': 1.0, 'of': 3.0, 'plastic': 1.0, 'unit': 3.0, 'there': 2.0, 'first': 1.0, 'are': 1.0, 'lighted': 1.0, 'ask': 1.0, 'so': 3.0, 'speed': 2.0, 'make': 1.0, 'sound': 1.0, 'isn': 1.0, 'don': 1.0, 'up': 3.0, 'when': 1.0, 'motion': 1.0, 'girly': 1.0, 'you': 6.0, 'also': 2.0, 'sneak': 1.0, 'room': 1.0, 'worry': 1.0, 'with': 1.0, 'accidentally': 1.0, 'turn': 1.0, 'regardless': 1.0, 'add': 1.0}
Word element => {'gaudy': 1.0, 'or': 1.0, 'not': 1.0, 'bright': 1.0, 'sweet': 1.0, 'my': 1.0, 'nice': 1.0, 'and': 2.0, 'too': 1.0, 'grand': 1.0, 'daughter': 1.0, 'loves': 1.0, 'it': 2.0, 'neat': 1.0, 'is': 1.0, 'really': 1.0, 'so': 1.0, 'looks': 1.0}
Word element => {'use': 1.0, 'are': 1.0, 'long': 1.0, 'quite': 1.0, 'plays': 1.0, 'until': 1.0, 'nice': 1.0, 'music': 1.0, 'is': 1.0, 'around': 1.0, 'else': 1.0, 'everything': 1.0, 'mirror': 1.0, 'has': 1.0, 'watch': 1.0, 'comfy': 1.0, 'time': 1.0, 'so': 1.0, 'using': 1.0, 'fit': 1.0, 'for': 1.0, 'love': 1.0, 'swing': 2.0, 'happiest': 1.0, 'middle': 1.0, 'son': 1.0, 'from': 1.0, 'planning': 1.0, 'mobile': 1.0, 'one': 1.0, 'bought': 1.0, 'along': 1.0, 'naps': 1.0, 'other': 1.0, 'reason': 1.0, 'in': 4.0, 'this': 3.0, 'he': 6.0, 'first': 1.0, 'with': 1.0, 'the': 5.0, 'been': 1.0, 'that': 2.0, 'loves': 2.0, 'plugs': 1.0, 'anymore': 1.0, 'doesn': 1.0, 'soothe': 1.0, 'was': 2.0, 'our': 1.0, 'to': 3.0, 'of': 1.0, 'born': 1.0, 't': 1.0, 'going': 1.0, 'a': 2.0, 'we': 3.0, 's': 1.0, 'looks': 1.0, 'it': 5.0, 'techniques': 1.0, 'now': 2.0, 'weeks': 1.0, 'old': 1.0, '13': 1.0, 'since': 1.0, 'main': 1.0, 'at': 1.0, 've': 1.0, 'would': 2.0, 'him': 2.0, 'help': 1.0, 'baby': 1.0, 'on': 2.0, 'and': 4.0, 'block': 1.0, 'take': 1.0}
Word element => {'better': 1.0, 'learned': 1.0, 'top': 1.0, 'older': 1.0, 'sleep': 1.0, 'back': 1.0, 'after': 1.0, 'washed': 1.0, 'needed': 1.0, 'because': 1.0, 'that': 1.0, 'portion': 1.0, 'end': 1.0, 'did': 1.0, 'washing': 1.0, 'loved': 1.0, 'removable': 1.0, 'support': 1.0, 'left': 1.0, 'life': 1.0, 'law': 1.0, 'in': 3.0, 'sister': 1.0, 'brother': 1.0, 'passed': 1.0, 'trying': 1.0, 'be': 2.0, '7': 1.0, 'up': 3.0, 'like': 1.0, 'on': 3.0, 'update': 1.0, 'more': 1.0, 'is': 2.0, 'holds': 1.0, 'hope': 1.0, 'issues': 1.0, 'feature': 1.0, 'we': 6.0, 'go': 1.0, 's': 1.0, 'nap': 1.0, 'no': 1.0, 'about': 2.0, 'gentle': 1.0, 'had': 4.0, 'baby': 3.0, 'wish': 1.0, 'this': 3.0, 'soft': 1.0, 'nonstop': 1.0, 'a': 5.0, 'small': 1.0, 'have': 1.0, 'son': 2.0, 'stayed': 1.0, 'flat': 1.0, 'so': 2.0, 'them': 1.0, 'has': 2.0, 'along': 1.0, 't': 1.0, 'likes': 1.0, 'been': 1.0, 'swing': 2.0, 'only': 2.0, 'put': 2.0, 'do': 1.0, 'much': 3.0, 'with': 2.0, 'saved': 1.0, 'crawl': 1.0, 'cushioning': 1.0, 'it': 15.0, 'pretty': 2.0, 'became': 2.0, 'to': 8.0, 'swings': 1.0, 'toys': 1.0, 'started': 1.0, 'sounds': 2.0, 'machine': 1.0, '2': 1.0, 'but': 2.0, 'great': 2.0, 'little': 2.0, 'nice': 1.0, 'reflux': 1.0, 'until': 3.0, 'of': 3.0, 'the': 11.0, 'place': 1.0, 'would': 1.0, 'boy': 1.0, 'weeks': 1.0, 'as': 4.0, 'lowest': 1.0, 'setting': 2.0, 'still': 2.0, 'very': 2.0, 'being': 2.0, 'i': 6.0, 'fast': 1.0, 'during': 1.0, 'for': 4.0, 'able': 1.0, 'switch': 1.0, 'comfy': 1.0, 'from': 1.0, 'which': 1.0, 'side': 2.0, 'head': 2.0, 'cutting': 1.0, 'out': 2.0, 'toe': 1.0, 'movement': 1.0, 'and': 6.0, 'used': 2.0, 'both': 1.0, 'are': 1.0, 'thrown': 1.0, 'don': 1.0, 'quiet': 1.0, 'really': 1.0, 'use': 1.0, 'me': 1.0, 'my': 6.0, '6': 2.0, 'motor': 1.0, 'far': 2.0, 'he': 2.0, 'months': 2.0, 'uncomfortable': 1.0, 'spinning': 1.0, 'old': 1.0, 'was': 3.0, 'when': 2.0, 'laying': 1.0, 'day': 1.0, 've': 2.0, 'evening': 1.0, 'lot': 1.0, 'held': 2.0}
Word element => {'15': 1.0, 'now': 2.0, 'minutes': 1.0, 'was': 1.0, 'with': 1.0, 'this': 1.0, 'only': 1.0, 'options': 1.0, 'so': 1.0, 'many': 1.0, 'is': 1.0, 'there': 1.0, 'swing': 3.0, 'three': 1.0, 'and': 2.0, 'setting': 2.0, 'very': 1.0, 'nice': 1.0, 'nature': 1.0, 'newborn': 1.0, 'flat': 1.0, 'sounds': 1.0, 'loved': 1.0, 'daughter': 1.0, 'for': 1.0, 'where': 1.0, 'a': 1.0, 'months': 1.0, 'lying': 1.0, 'are': 3.0, 'the': 6.0, 'she': 6.0, 'that': 1.0, 'old': 1.0, 'still': 1.0, 'like': 2.0, 'does': 1.0, 'not': 1.0, 'seat': 1.0, 'when': 1.0, 'you': 1.0, 'has': 1.0, 'position': 1.0, 'music': 1.0, 'but': 1.0, 'prefers': 1.0, 'can': 1.0, 'my': 1.0, 'another': 1.0, 'tolerate': 1.0}
Word element => {'would': 1.0, 'mobile': 1.0, 'at': 1.0, 'her': 2.0, 'used': 1.0, 'part': 1.0, 'definitely': 2.0, 'we': 2.0, 'penny': 1.0, 'finally': 1.0, 'of': 1.0, 'up': 1.0, 'enjoyed': 1.0, 'have': 1.0, 'able': 1.0, 'item': 1.0, 'this': 2.0, 'with': 1.0, 'were': 1.0, 'and': 3.0, 'preemie': 1.0, 'nursery': 1.0, 'end': 1.0, 'swallowed': 1.0, 'for': 1.0, 'daughter': 1.0, 'when': 2.0, 'soothing': 1.0, 'worth': 1.0, 'recommend': 1.0, 'was': 3.0, 'purchased': 1.0, 'had': 1.0, 'our': 2.0, 'to': 2.0, 'look': 1.0, 'whole': 1.0, 'it': 4.0, 'she': 2.0, 'started': 1.0, 'out': 1.0, 'in': 1.0, 'the': 4.0, 'hanging': 1.0, 'legs': 1.0, 'off': 1.0, 'most': 1.0, 'music': 1.0, 'every': 2.0, 'really': 1.0, 'being': 1.0}
Word element => {'penny': 1.0, 'every': 1.0, 'aesthetics': 1.0, 'practicality': 1.0, 'very': 1.0, 'buckle': 1.0, 'designed': 1.0, 'upper': 1.0, 'through': 1.0, 'both': 1.0, 'arms': 1.0, 'thread': 1.0, 'have': 1.0, 'out': 1.0, 'thought': 1.0, 'well': 2.0, 'machine': 1.0, 'straps': 3.0, 'good': 1.0, 'washable': 1.0, 'don': 1.0, 'sound': 1.0, 'water': 1.0, 'running': 1.0, 'y': 1.0, 'computer': 1.0, 'too': 1.0, 'and': 2.0, 'pitched': 1.0, 'high': 1.0, 'fussy': 1.0, 'safety': 1.0, 'even': 1.0, 'seat': 1.0, 'waist': 1.0, 'to': 3.0, 'my': 1.0, 'batteries': 1.0, 'swing': 1.0, 'instead': 1.0, 'in': 2.0, 'so': 1.0, 'this': 1.0, 'first': 1.0, 'it': 3.0, 'only': 1.0, 'cover': 1.0, 'snap': 1.0, 'parent': 1.0, 'worth': 1.0, 'plug': 1.0, 'fantastic': 1.0, 'you': 3.0, 't': 1.0, 'a': 2.0, 's': 1.0, 'comes': 1.0, 'is': 5.0, 'buying': 1.0, 'with': 2.0, 'ac': 1.0, 'birds': 1.0, 'an': 1.0, 'but': 1.0, 'music': 1.0, 'can': 1.0, 'them': 1.0, 'flailing': 1.0, 'baby': 2.0, 'easy': 1.0, 'adores': 1.0, 'at': 1.0, 'adapter': 1.0, 'his': 1.0, 'whose': 1.0, 'distracting': 1.0, 'of': 4.0, 'crates': 1.0, 'view': 1.0, 'reflection': 1.0, 'the': 10.0, 'mirrored': 1.0, 'staring': 1.0, 'underside': 1.0, 'person': 1.0, 'cute': 1.0, 'are': 2.0, 'interesting': 1.0, 'from': 1.0, 'assemble': 1.0, 'for': 2.0, 'mobile': 1.0, 'one': 1.0}
Word element => {'fussy': 1.0, 'those': 1.0, 'during': 1.0, 'down': 1.0, 'swing': 1.0, 'times': 1.0, 'far': 1.0, 'have': 1.0, 'loves': 1.0, 'my': 1.0, 'is': 2.0, 'best': 1.0, 'son': 1.0, 'recommend': 1.0, 'definitely': 1.0, 'would': 1.0, 'by': 1.0, 'baby': 2.0, 'this': 1.0, 'it': 3.0, 'the': 1.0, 'great': 1.0, 'i': 2.0, 'product': 1.0, 'purchased': 1.0, 'and': 1.0, 'calming': 1.0, 'for': 1.0}
Word element => {'slow': 1.0, 'it': 1.0, 'mean': 1.0, 'i': 1.0, 'was': 1.0, 'have': 1.0, 'working': 1.0, 'then': 1.0, 'you': 2.0, 'the': 1.0, 'cant': 2.0, 'and': 2.0, 'change': 1.0, 'move': 1.0, 'all': 1.0, 'same': 1.0}
Word element => {'washed': 1.0, 'despite': 1.0, 'new': 1.0, 'way': 1.0, 's': 2.0, 'a': 3.0, 'on': 2.0, 'out': 1.0, 'couple': 2.0, 'found': 1.0, 'hot': 1.0, 'in': 3.0, 'exploded': 1.0, 'from': 1.0, 'right': 2.0, 'to': 3.0, 'sleep': 1.0, 'when': 2.0, 'times': 1.0, 'was': 4.0, 'lbs': 1.0, 'batteries': 1.0, 'getting': 1.0, 't': 1.0, 'replacement': 1.0, 'along': 1.0, 'and': 7.0, 'away': 2.0, '3': 1.0, 'older': 1.0, 'different': 1.0, 'her': 1.0, 'the': 7.0, 'looks': 1.0, 'my': 3.0, 'another': 1.0, 'used': 2.0, 'fisher': 2.0, 'have': 2.0, 'second': 1.0, 'price': 2.0, 'numerous': 1.0, 'but': 1.0, 'swing': 3.0, 'first': 1.0, 'nicely': 1.0, 'being': 1.0, 'wobbly': 1.0, 'over': 2.0, 'don': 1.0, 'up': 1.0, 'month': 1.0, 'baby': 1.0, 'she': 4.0, 'with': 1.0, 'recommend': 1.0, 'piece': 1.0, 'junk': 1.0, '4': 1.0, 'broke': 1.0, 'i': 2.0, 'nice': 1.0, 'little': 1.0, 'two': 1.0, 'we': 6.0, 'take': 1.0, 'bought': 1.0, 'love': 2.0, 'does': 1.0, 'go': 2.0, 'stain': 1.0, '14': 1.0, 'number': 1.0, 'old': 1.0, 'everyday': 1.0, 'day': 1.0, 'swings': 2.0, 'looking': 1.0, 'rainforest': 1.0, 'ever': 1.0, 'watching': 1.0, 'puts': 1.0, 'wakes': 1.0, 'loves': 1.0, 'at': 1.0, 'herself': 1.0, 'it': 10.0, 'reflective': 1.0, 'flowers': 1.0, 'around': 1.0, 'every': 1.0, 'turn': 1.0, 'still': 2.0, 'weeks': 1.0, 'washes': 1.0, 'food': 1.0, 'need': 1.0, '2nd': 1.0, 'so': 2.0, 'speed': 1.0, 'this': 2.0, 'highly': 1.0, 'thing': 1.0, 'no': 1.0}
Word element => {'dissapointed': 1.0, 'happy': 1.0, 'and': 1.0, 'know': 1.0, 'very': 2.0, 'swing': 2.0, 'have': 1.0, 't': 1.0, 'who': 1.0, 'people': 1.0, 'that': 1.0, 'were': 1.0, 'this': 1.0, 'it': 2.0, 'except': 1.0, 'works': 1.0, 'i': 2.0, 'bought': 1.0, 'but': 1.0, 'doesn': 1.0, 'so': 1.0, 'everything': 1.0, 'else': 1.0, 'well': 1.0, 'im': 1.0, 'for': 1.0}
Word element => {'easy': 1.0, 'different': 1.0, 'swings': 1.0, 'way': 1.0, 'both': 1.0, 'it': 2.0, 'they': 1.0, 'babies': 1.0, 'nice': 1.0, 'directions': 1.0, 'love': 2.0, 'for': 1.0, 'also': 1.0, 'in': 1.0, 'grand': 1.0, 'two': 2.0, 'of': 1.0, 'my': 1.0, 'great': 1.0, 'these': 1.0, 'the': 1.0, 'to': 2.0, 'bought': 1.0, 'be': 1.0, 'music': 1.0, 'is': 2.0, 'padding': 1.0, 'and': 2.0, 'assemble': 1.0, 'soft': 1.0}
Word element => {'house': 2.0, 'from': 1.0, 'move': 1.0, 'also': 1.0, 'it': 1.0, 'love': 1.0, 'babies': 1.0, 'yes': 1.0, 'recommend': 1.0, 'i': 1.0, 'not': 1.0, 'would': 1.0, 'this': 1.0, 'swing': 1.0, 'to': 3.0, 'but': 1.0, 'easy': 2.0, 'use': 1.0, 'up': 1.0, 'very': 1.0, 'and': 1.0}
Word element => {'chill': 1.0, 'since': 1.0, 'again': 1.0, 'was': 1.0, 'than': 1.0, 'larger': 1.0, 'hear': 1.0, 'otherwise': 1.0, 'chosen': 1.0, 'should': 1.0, 'soothing': 1.0, 'option': 1.0, 'mention': 1.0, 'said': 1.0, 'sure': 1.0, 'old': 1.0, '3': 1.0, 'weeks': 1.0, '6': 1.0, 'daughter': 1.0, 'got': 1.0, 'thing': 1.0, 'whole': 1.0, 'very': 2.0, 'perfect': 1.0, 'toy': 1.0, 'add': 1.0, 'hand': 1.0, 'nice': 1.0, 'little': 1.0, 'came': 1.0, 'getting': 1.0, 'bunny': 2.0, 'help': 1.0, 'now': 2.0, 'stop': 2.0, 'children': 1.0, 'as': 2.0, 'annoying': 1.0, 'our': 1.0, 'stroller': 1.0, 'how': 2.0, 'like': 2.0, 'care': 2.0, 'don': 3.0, 'much': 1.0, 'with': 1.0, 'volume': 1.0, 'music': 4.0, 'but': 5.0, 'speed': 1.0, 'so': 2.0, 'can': 1.0, 'worked': 1.0, 'been': 1.0, 'found': 1.0, 'well': 1.0, 'i': 8.0, 'long': 1.0, 'on': 3.0, 'annoy': 1.0, 'hours': 1.0, 'seat': 1.0, 'in': 3.0, 'itself': 1.0, 'not': 2.0, 'turned': 1.0, 've': 1.0, 'down': 2.0, 'her': 8.0, 'made': 1.0, 'good': 1.0, 'does': 2.0, 'soft': 1.0, 'choose': 1.0, 'colic': 1.0, 'smiling': 1.0, 'about': 1.0, 'unless': 1.0, 'occasionally': 1.0, 'helping': 1.0, 'send': 1.0, 'baby': 3.0, 'she': 11.0, 'it': 16.0, 'couldn': 1.0, 'thankfully': 1.0, 'warmed': 1.0, 'have': 2.0, 'methods': 2.0, 'place': 1.0, 'go': 1.0, 'soothe': 1.0, 's': 9.0, 'small': 1.0, 'rattle': 1.0, 'a': 9.0, 'end': 1.0, 'me': 1.0, 'calm': 3.0, 'my': 4.0, 'god': 1.0, 'bouts': 1.0, 'takes': 1.0, 'favorite': 1.0, 'less': 1.0, 'up': 2.0, 'the': 16.0, 'of': 3.0, 'doesn': 2.0, 'minutes': 1.0, 'crying': 1.0, 'too': 1.0, 'one': 1.0, 'mobile': 2.0, 'for': 5.0, 'swing': 5.0, 'to': 11.0, 'quiet': 1.0, 'really': 3.0, 'fussiness': 1.0, 'want': 1.0, 'had': 1.0, 'type': 1.0, 'at': 2.0, 'is': 8.0, 'and': 9.0, 'pacifier': 1.0, 'helps': 2.0, 'there': 1.0, 'll': 2.0, 'right': 1.0, 'swinging': 1.0, 'we': 3.0, 'take': 1.0, 'herself': 1.0, 'set': 1.0, 'naps': 1.0, 'tried': 1.0, 'you': 1.0, 'things': 1.0, 'need': 1.0, 'traveling': 1.0, 'impressed': 1.0, 'done': 1.0, 'low': 1.0, 'honestly': 1.0, '15': 1.0, 'out': 1.0, 'absolutely': 1.0, 'best': 1.0, 'first': 1.0, 'are': 1.0, 'hated': 1.0, 'clicking': 1.0, 'options': 1.0, 'wouldn': 1.0, 'when': 4.0, 'sit': 1.0, 'expecting': 1.0, 'stay': 1.0, 'if': 2.0, 'still': 1.0, 'has': 1.0, 't': 7.0, 'likes': 2.0, 'song': 1.0, 'also': 2.0, 'just': 1.0, 'this': 4.0, 'few': 2.0, 'months': 1.0, 'bouncer': 1.0, 'get': 1.0, 'combination': 1.0, 'that': 3.0, 'lasts': 1.0, 'center': 1.0, 'from': 1.0, 'melodies': 1.0, 'gets': 1.0, 'adjust': 1.0}
Word element => {'babies': 1.0, 'recommend': 1.0, 'off': 1.0, 'hang': 1.0, 'be': 1.0, 'awake': 1.0, 's': 1.0, 'before': 1.0, 'up': 4.0, 'set': 2.0, 'wants': 1.0, 'saved': 1.0, 'become': 1.0, '4': 2.0, 'thing': 1.0, 'busy': 1.0, 'about': 1.0, 'but': 2.0, 'money': 1.0, 'bucket': 1.0, 'in': 3.0, 'etc': 1.0, 'day': 1.0, 'gotten': 1.0, 'outgrew': 1.0, 'from': 2.0, 'not': 1.0, 'easy': 1.0, 'baby': 1.0, 'she': 9.0, 'also': 2.0, 'us': 1.0, 'when': 1.0, 'am': 1.0, 'my': 1.0, 'end': 1.0, 'lo': 1.0, 'we': 4.0, 'a': 5.0, 'labor': 1.0, 'go': 3.0, 'swing': 2.0, 'if': 1.0, 'stay': 1.0, 'every': 1.0, 'starting': 1.0, 'it': 8.0, 'already': 1.0, 'wouldn': 1.0, 'loved': 1.0, 'little': 1.0, 'cent': 1.0, 'our': 1.0, 'to': 7.0, 'as': 1.0, 'all': 1.0, 'this': 6.0, 'wish': 1.0, 'trying': 1.0, 'old': 3.0, 'away': 1.0, 'worth': 2.0, 'now': 2.0, 'and': 5.0, 'was': 7.0, 'doesn': 1.0, 'had': 1.0, 'sooner': 1.0, 'stick': 1.0, 'down': 2.0, 'definitely': 1.0, 'agreed': 1.0, 'pack': 1.0, 'think': 1.0, '3': 1.0, 'put': 1.0, 'got': 1.0, 'daughter': 1.0, 'would': 4.0, 'quality': 1.0, 'inconsolable': 1.0, 'for': 3.0, 'motor': 1.0, 'love': 1.0, 'clam': 1.0, 'nap': 2.0, 'wake': 1.0, 'the': 7.0, 'of': 2.0, 'want': 1.0, 'most': 1.0, 'back': 1.0, 'her': 4.0, 'happy': 1.0, 'tall': 1.0, 'time': 3.0, 'right': 1.0, 'times': 1.0, 'hours': 1.0, 't': 2.0, 'happiness': 1.0, 'month': 2.0, 'gave': 1.0, 'asleep': 1.0, 'made': 1.0, 'feet': 1.0, 'i': 5.0, 'putting': 1.0, 'well': 1.0, 'weight': 1.0, 'sadly': 1.0, 'easily': 1.0, 'because': 1.0, 'around': 1.0, 'at': 2.0, 'is': 2.0, 'months': 1.0, 'like': 1.0}
Word element => {'setting': 1.0, 'off': 1.0, 'taken': 1.0, 'never': 1.0, 'little': 1.0, 'swings': 1.0, 'actually': 1.0, 'motor': 1.0, 'side': 1.0, 'warning': 1.0, 'being': 2.0, 'head': 1.0, 'issues': 1.0, 'birds': 2.0, 'comfort': 1.0, 'sleeping': 2.0, 'don': 2.0, 'fast': 1.0, 'slept': 1.0, 'also': 1.0, 'sounds': 1.0, 'loves': 2.0, 'been': 2.0, 'babies': 1.0, 'fact': 1.0, 'my': 2.0, 'often': 1.0, 'flat': 1.0, 'have': 2.0, 'having': 2.0, 'in': 6.0, 'said': 1.0, 'parents': 1.0, 'for': 5.0, 'much': 1.0, 'with': 3.0, 'this': 4.0, 'perfect': 1.0, 'it': 6.0, 'she': 7.0, 'are': 2.0, 'first': 2.0, 'now': 3.0, 'thin': 1.0, 'pretty': 1.0, 'to': 4.0, 'sleep': 1.0, 'any': 1.0, 'so': 3.0, 'time': 1.0, 'we': 5.0, 't': 3.0, 'small': 1.0, 'a': 3.0, 'other': 1.0, 'and': 6.0, 'months': 2.0, 'get': 1.0, '1': 1.0, 'big': 1.0, '3': 1.0, 'on': 3.0, 'level': 1.0, 'life': 1.0, 'of': 4.0, 'the': 10.0, 'hanging': 1.0, '2': 1.0, 'music': 1.0, 'use': 2.0, 'her': 5.0, 'from': 1.0, 'hard': 1.0, 'attached': 1.0, 'padding': 1.0, 'swing': 5.0, 'course': 1.0, 'fault': 2.0, 'problem': 1.0, 'however': 1.0, 'not': 2.0, 'getting': 1.0, 'crib': 1.0, 'correct': 1.0, 'had': 1.0, 'is': 5.0, 'at': 1.0, 'let': 1.0, '13': 1.0, '4': 1.0, 'lbs': 1.0, 'honestly': 1.0, 'them': 1.0, 'always': 1.0, 'has': 2.0, 'awhile': 1.0, 'seem': 1.0, 'settling': 1.0, 'one': 1.0, 'too': 2.0, 'happy': 1.0, 'down': 1.0, 'water': 1.0, 'didn': 1.0, 'interested': 1.0, 'that': 4.0, 'because': 1.0, 'problems': 1.0}
Word element => {'service': 1.0, 'paid': 1.0, 'they': 1.0, 'from': 1.0, 'postage': 1.0, 'parts': 1.0, 'do': 2.0, 'old': 1.0, 'brand': 1.0, 'not': 1.0, 'me': 1.0, 'ordered': 1.0, 'get': 1.0, 'fisher': 1.0, 'out': 1.0, 'went': 1.0, 'motor': 1.0, 'daily': 1.0, 'use': 1.0, 'free': 1.0, 'now': 1.0, 'had': 1.0, 'have': 2.0, 'called': 1.0, 'saver': 1.0, 'few': 1.0, 'life': 1.0, 'was': 1.0, 'rsv': 1.0, 'if': 2.0, 'but': 1.0, 'music': 2.0, 'costumer': 1.0, 'keep': 1.0, 'too': 1.0, 'and': 6.0, 'or': 1.0, 'seven': 1.0, 'will': 1.0, 'back': 1.0, 'sick': 1.0, 'enough': 1.0, 'long': 1.0, 'almost': 1.0, 'his': 1.0, 'day': 1.0, 'plays': 1.0, 'new': 1.0, 'nose': 1.0, 'all': 1.0, 'sleep': 2.0, 'to': 5.0, 'has': 2.0, 'stuffy': 1.0, 'months': 1.0, 'one': 3.0, 'product': 1.0, 'for': 4.0, 'there': 1.0, 'price': 1.0, 'best': 1.0, 'swing': 1.0, 'that': 1.0, 'next': 1.0, 'loves': 1.0, 'been': 1.0, 'little': 1.0, 'the': 3.0, 'great': 2.0, 'my': 4.0, 'crib': 1.0, 'restless': 1.0, 'hesitate': 1.0, 'this': 4.0, 'she': 1.0, 'it': 3.0, 'he': 4.0, 'him': 2.0, 'gets': 2.0, 'when': 1.0, 'i': 4.0, 'put': 1.0, 'on': 2.0, 'is': 2.0, 'turn': 1.0, 'in': 1.0, 'we': 1.0, 'go': 1.0, 'a': 4.0, 'send': 1.0, 'baby': 1.0, 'even': 1.0, 'got': 1.0}
Word element => {'blessing': 1.0, 'guess': 1.0, 'her': 2.0, 'painstakingly': 1.0, 'until': 1.0, 'baby': 1.0, 'my': 1.0, 'june': 1.0, 'in': 3.0, 'had': 1.0, 'but': 1.0, 'most': 1.0, 'found': 1.0, 'this': 3.0, 'week': 1.0, 'lowest': 1.0, 'within': 1.0, 'portion': 1.0, 'back': 1.0, 'top': 1.0, 'new': 1.0, 'number': 1.0, 'still': 1.0, 'moved': 1.0, 'and': 5.0, 'perfectly': 1.0, 'me': 1.0, 'wouldn': 1.0, 'so': 2.0, 'after': 1.0, 'representative': 1.0, 'swing': 4.0, 'received': 1.0, '6': 2.0, 'of': 1.0, 'bought': 1.0, 'entire': 1.0, 'mobile': 2.0, 'months': 2.0, 'slept': 1.0, 'swings': 1.0, 'sounds': 1.0, 'on': 1.0, 'was': 2.0, 'talk': 1.0, 'anymore': 1.0, 'constant': 1.0, 'meaning': 1.0, 'motor': 3.0, 'is': 1.0, 'serial': 1.0, 'amazon': 1.0, 'use': 1.0, 'died': 2.0, 'area': 1.0, 'fisher': 1.0, 'model': 1.0, 'disguise': 1.0, 'their': 2.0, 'quickly': 1.0, 'worked': 1.0, 'pricy': 1.0, 'i': 5.0, 'contacted': 1.0, 'price': 2.0, 'when': 2.0, 'easily': 1.0, 'through': 1.0, 'crib': 1.0, 'system': 1.0, 'basically': 2.0, 'the': 6.0, 'website': 1.0, 'used': 1.0, 'messaging': 1.0, 'all': 1.0, 'as': 1.0, 'our': 1.0, 'to': 3.0, 'we': 1.0, 't': 1.0, 'a': 4.0, 'it': 2.0, 'she': 2.0, 'are': 1.0, 'helped': 1.0, 'locate': 1.0}
Word element => {'done': 1.0, '30': 1.0, 'awesome': 2.0, 'kids': 1.0, 'from': 1.0, 'protrude': 1.0, 'decorative': 1.0, 'as': 1.0, 'ear': 1.0, 'bunny': 2.0, 'month': 1.0, 'opportunity': 1.0, 'adjusted': 1.0, 'angle': 1.0, 'seating': 1.0, 'ideal': 1.0, 'would': 1.0, 'sitting': 1.0, 'than': 1.0, 'position': 2.0, 'lying': 2.0, 'your': 2.0, 'keeps': 1.0, 'padded': 1.0, 'i': 1.0, 'well': 1.0, 'be': 2.0, 'head': 1.0, 'appears': 1.0, 'option': 1.0, 'seat': 2.0, 'in': 3.0, 'baby': 3.0, 'wants': 1.0, 'who': 1.0, 'parent': 1.0, 'harnesses': 1.0, 'point': 1.0, 'five': 1.0, 'swings': 1.0, 'harness': 1.0, 'when': 3.0, 'push': 1.0, 'you': 8.0, 'not': 1.0, 'old': 1.0, 'power': 4.0, 'is': 4.0, 'holds': 1.0, 'seem': 1.0, 'cable': 1.0, 'highly': 1.0, 'this': 5.0, 'average': 1.0, 'link': 1.0, 'recommend': 1.0, 'together': 1.0, 'ears': 1.0, 'has': 5.0, 'beast': 1.0, 'legs': 3.0, 'two': 1.0, '4': 1.0, 'one': 1.0, 'lot': 2.0, 'yes': 1.0, 'off': 4.0, 'seems': 1.0, 'could': 1.0, 'will': 2.0, 'selections': 1.0, 'been': 3.0, 'easily': 2.0, 'because': 1.0, 'that': 5.0, 'into': 1.0, 'pounds': 1.0, 'swing': 10.0, 'wonders': 1.0, 'design': 1.0, 'moving': 1.0, 'have': 5.0, 'doorway': 1.0, 'are': 3.0, 'lock': 2.0, 'first': 1.0, 'perfectly': 1.0, 'there': 2.0, 'it': 8.0, 'thought': 1.0, 'bar': 1.0, 'pictures': 1.0, 'put': 1.0, 'on': 4.0, 'overprotective': 1.0, '3': 1.0, 'of': 7.0, 'the': 22.0, 'works': 2.0, 'without': 2.0, 'collapse': 1.0, 'support': 1.0, 'connects': 1.0, 'job': 1.0, 'pretty': 1.0, 'to': 8.0, 'frame': 1.0, 'a': 8.0, '10': 1.0, 'for': 2.0, 'cord': 2.0, 'clip': 1.0, 'button': 1.0, 'thru': 1.0, 'secondly': 1.0, 'plug': 1.0, 'advantage': 1.0, 'still': 1.0, 'course': 1.0, 'if': 3.0, 'functions': 1.0, 'move': 1.0, 'forget': 1.0, 'and': 4.0, 'good': 1.0, 'unplug': 1.0, 'my': 1.0, 'controls': 1.0, 'an': 2.0, 'other': 1.0, 'don': 1.0, 'sound': 3.0, 'comfortable': 1.0, 'drag': 1.0, 'fit': 1.0, 't': 2.0, 'separate': 2.0, 'along': 2.0, 'he': 1.0, 'motor': 1.0, 'each': 3.0, 'more': 1.0, 'settings': 1.0, 'function': 1.0, 'find': 1.0, '1': 1.0, '2': 1.0, 'music': 2.0, 'four': 1.0, 'open': 2.0, 'work': 1.0, 'plenty': 1.0, 'allows': 1.0, 'volume': 1.0, 'with': 5.0, 'song': 1.0, 'mobile': 1.0, 'independently': 1.0, 'approaching': 1.0, 'can': 2.0, 'speed': 1.0, 'so': 1.0, 'use': 1.0}
Word element => {'baby': 1.0, 'i': 1.0, 'convenient': 1.0, 'operates': 1.0, 'comfortable': 1.0, 'materials': 1.0, '5': 2.0, 'about': 1.0, 'very': 1.0, 'have': 1.0, 'out': 1.0, 'regularly': 1.0, 'grew': 1.0, 'they': 1.0, 'until': 1.0, 'twins': 1.0, 'set': 1.0, 'survived': 1.0, 'as': 1.0, 'purchased': 1.0, 's': 1.0, 'proven': 1.0, 'product': 2.0, 'overall': 1.0, 'source': 1.0, 'another': 1.0, 'from': 1.0, 'up': 1.0, 'change': 1.0, 'too': 1.0, 'little': 1.0, 'a': 6.0, 'longevity': 1.0, 'still': 1.0, 'sounds': 1.0, 'started': 1.0, 'also': 1.0, 'us': 1.0, 'eating': 1.0, 'independently': 1.0, 'recommend': 1.0, 'were': 1.0, 'to': 12.0, 'item': 1.0, 'our': 5.0, 'how': 1.0, '6': 1.0, 'anyone': 1.0, 'and': 7.0, 'since': 1.0, '1': 1.0, 'option': 2.0, 'great': 2.0, 'music': 2.0, 'his': 2.0, 'adapter': 1.0, 'wonderful': 1.0, 'front': 1.0, 'bored': 1.0, 'there': 2.0, 'rather': 1.0, 'than': 1.0, 'through': 1.0, 'of': 3.0, 'the': 11.0, 'we': 7.0, 'learn': 1.0, 'go': 1.0, 'likes': 1.0, 't': 1.0, 'reasons': 1.0, 'mobile': 1.0, 'son': 3.0, 'wonders': 1.0, 'vital': 1.0, 'highly': 1.0, 'this': 4.0, 'sleeper': 1.0, 'smooth': 1.0, 'with': 3.0, 'but': 2.0, 'ac': 1.0, 'week': 1.0, 'it': 6.0, 'him': 3.0, 'be': 1.0, 'fabric': 1.0, 'for': 5.0, 'motor': 1.0, 'he': 3.0, 'love': 1.0, 'helping': 1.0, 'close': 1.0, 'using': 1.0, 'looking': 1.0, 'soft': 1.0, 'days': 1.0, 'rock': 1.0, 'been': 4.0, 'because': 1.0, 'that': 5.0, 'batteries': 1.0, 'swing': 7.0, 'nights': 1.0, 'before': 1.0, 'couldn': 1.0, 'get': 1.0, 'unless': 1.0, 'functions': 1.0, 'selection': 1.0, 'was': 1.0, 'in': 1.0, 'bed': 1.0, 'migrating': 1.0, 'having': 1.0, 'religiously': 1.0, 'worked': 1.0, 'do': 1.0, 'not': 1.0, 'want': 1.0, 'co': 1.0, 'so': 1.0, 'safety': 1.0, 'options': 1.0, 'stimulating': 1.0, 'snugabunny': 2.0, 'admittedly': 1.0, 'has': 7.0, 'encourage': 1.0, 'an': 1.0, 'used': 2.0, 'decided': 1.0, 'independent': 1.0, 'now': 2.0, 'trooper': 1.0, 'weeks': 2.0, 'at': 3.0, 'is': 5.0, 'prefers': 2.0, 'crib': 1.0, 'are': 3.0, 'side': 2.0, 'night': 1.0, 'direction': 1.0, 'motion': 1.0, 'over': 1.0, 'limited': 1.0, 'sleep': 4.0, 'back': 1.0, 'getting': 1.0, 'mirror': 1.0}
Word element => {'lol': 1.0, 'were': 1.0, 'changed': 1.0, 'has': 1.0, 'loves': 1.0, 'easy': 1.0, 'much': 1.0, 'music': 1.0, 'to': 1.0, 'kids': 1.0, 'set': 1.0, 'since': 1.0, 'very': 1.0, 'up': 1.0, 'and': 2.0, 'granddaughter': 1.0, 'small': 1.0, 'my': 2.0, 'the': 2.0, 'mobile': 1.0}
Word element => {'legs': 1.0, 'shoulders': 1.0, 'slip': 1.0, 'straps': 2.0, 'longer': 1.0, 'no': 1.0, 'bigger': 1.0, 'carnival': 1.0, 'more': 1.0, 'possible': 1.0, 'thought': 1.0, 'high': 1.0, 'forth': 1.0, 'back': 1.0, 'rocking': 1.0, 'prevent': 1.0, 'enough': 1.0, 'down': 1.0, 'cradle': 1.0, 'setting': 1.0, 'weigh': 1.0, 'caution': 1.0, 'pieces': 1.0, '1': 1.0, 'spent': 1.0, 'early': 1.0, 'whether': 3.0, 'born': 1.0, 'due': 1.0, 'tiny': 2.0, 'a': 5.0, 'stuffing': 1.0, 'happens': 1.0, '2': 2.0, 'thing': 2.0, 'do': 1.0, 'put': 1.0, 'once': 2.0, 'even': 1.0, 'of': 7.0, 'you': 3.0, 'loud': 1.0, 'worked': 2.0, 'versions': 1.0, 'months': 1.0, 'return': 2.0, 'want': 2.0, 'that': 13.0, 'because': 1.0, 'young': 1.0, 'not': 6.0, 'or': 4.0, 'possibly': 1.0, 'fluke': 1.0, 'preeclampsia': 1.0, 'say': 1.0, 'fitting': 1.0, 'sure': 1.0, 'loved': 1.0, 'like': 2.0, 're': 1.0, 'know': 1.0, 'another': 1.0, 'preemie': 1.0, 'to': 17.0, 'at': 3.0, 'plenty': 1.0, 'using': 1.0, 'with': 1.0, 'ride': 1.0, 'really': 2.0, 'this': 6.0, 'first': 2.0, 'wanted': 1.0, 'husband': 1.0, 'was': 6.0, 'lbs': 3.0, 'had': 4.0, 'all': 1.0, 'other': 2.0, 'our': 2.0, 'my': 4.0, 'pastel': 1.0, 'he': 1.0, 'motor': 2.0, 'love': 1.0, 'waist': 1.0, 'apathetic': 1.0, 'missing': 1.0, 'having': 1.0, 'buy': 2.0, 'float': 1.0, 'something': 2.0, 'generous': 1.0, 'wife': 1.0, 'normal': 1.0, 'lowest': 1.0, 'places': 1.0, 'several': 1.0, 'about': 3.0, 'socket': 1.0, 'in': 7.0, 'nicu': 1.0, 'came': 1.0, 'might': 2.0, 'comfortably': 1.0, 'swing': 5.0, 'home': 2.0, 'off': 1.0, 'bright': 1.0, 'remember': 1.0, 'intense': 1.0, 'have': 2.0, 'buying': 1.0, 'mind': 2.0, 'both': 1.0, '4': 3.0, 'i': 12.0, 'but': 4.0, 'calming': 1.0, 'is': 10.0, 'can': 4.0, 'so': 5.0, 'just': 4.0, 'and': 10.0, 'constantly': 1.0, 'go': 2.0, 't': 5.0, 'we': 8.0, 'never': 1.0, 'take': 1.0, 'got': 1.0, 'one': 7.0, 'worried': 1.0, 'from': 2.0, 'who': 1.0, 'able': 4.0, 'get': 3.0, 'batteries': 2.0, 'sorted': 1.0, 'keep': 1.0, 'quickly': 1.0, 'suppose': 2.0, 'by': 3.0, 'though': 6.0, 'out': 3.0, 'during': 1.0, 'small': 1.0, 'complaint': 1.0, 'gentle': 1.0, 'seems': 2.0, 'see': 2.0, 'without': 1.0, 'babies': 1.0, 'soft': 1.0, 'used': 1.0, 'any': 1.0, 'swings': 1.0, 'am': 1.0, 'powered': 1.0, 'louder': 1.0, 'than': 3.0, 'others': 1.0, 'part': 1.0, 'baby': 5.0, 'colors': 2.0, 'noise': 1.0, 'great': 3.0, 'returns': 1.0, 'when': 4.0, 'easily': 3.0, 'brought': 1.0, 'case': 1.0, 'birds': 1.0, 'little': 1.0, 'her': 4.0, '6': 1.0, 'interested': 1.0, 'the': 16.0, 'experience': 1.0, 'oz': 1.0, 'two': 1.0, 'thunderstorms': 1.0, 'size': 2.0, '11': 1.0, 'problem': 2.0, 'now': 1.0, 'don': 2.0, 'still': 2.0, 'manufacturer': 1.0, 'shoulder': 1.0, 'despite': 1.0, 'limit': 1.0, 'sheis': 1.0, 'big': 1.0, 'talk': 1.0, 'comfort': 1.0, 'crazzeto': 1.0, 'they': 2.0, 'through': 1.0, 'fabric': 1.0, 'on': 2.0, 'make': 1.0, 'she': 5.0, 'unbelievably': 1.0, 'wish': 1.0, 'adult': 1.0, 'made': 1.0, 'seemed': 1.0, 'bought': 1.0, 'better': 1.0, 'sitting': 1.0, 'also': 2.0, 'loves': 1.0, 'stare': 1.0, 'around': 3.0, 'did': 1.0, 'time': 2.0, 'kind': 2.0, 'top': 1.0, 'would': 2.0, 'it': 18.0, 'pale': 1.0, 'be': 4.0, 'unplug': 1.0, 'very': 3.0, 'them': 1.0, 'prefer': 1.0, 'primary': 1.0, 'toss': 1.0, 'seem': 1.0, 'd': 1.0, 'wall': 1.0, 's': 8.0, 'doesn': 1.0, 'expensive': 1.0, 'nc': 1.0, 'frequent': 1.0}
Word element => {'fussy': 1.0, 'who': 1.0, 'anyone': 1.0, 'us': 1.0, 'babysitter': 1.0, 'these': 1.0, 'wants': 1.0, 'swing': 1.0, 'in': 1.0, 'congested': 1.0, 'her': 6.0, 'will': 1.0, 'when': 1.0, 'has': 2.0, 'crib': 1.0, 'slightly': 1.0, 'recommend': 1.0, 'was': 1.0, 'had': 1.0, 'product': 1.0, 'for': 2.0, 'love': 1.0, 'only': 3.0, 'with': 1.0, 'to': 2.0, 'sleep': 2.0, 'too': 1.0, 'and': 2.0, 'vibrating': 1.0, 'comfortable': 1.0, 'reflux': 1.0, 'more': 1.0, 'my': 2.0, 'it': 3.0, 'she': 1.0, 'baby': 3.0, 'the': 2.0, 'place': 1.0, 'put': 1.0, 'on': 1.0, 'tummy': 1.0, 'lay': 1.0, 'head': 1.0, 'elevated': 1.0, 'one': 2.0, 'bought': 1.0, 'making': 1.0, 'strongly': 1.0, 'this': 2.0, 'wish': 1.0, 'we': 3.0, 's': 1.0, 'a': 2.0, 'lets': 1.0, 'chair': 1.0, 'i': 2.0, 'two': 1.0, 'of': 1.0}
Word element => {'like': 1.0, 'i': 1.0, 'going': 1.0, 'but': 1.0, 'for': 2.0, 'hours': 1.0, 'swing': 2.0, 'really': 1.0, 'is': 1.0, 'aprox': 1.0, 'time': 1.0, 'on': 1.0, 'very': 1.0, 'and': 1.0, 'it': 1.0, 'this': 1.0, 'with': 1.0, 'only': 1.0, 'keeps': 1.0, 'sleeps': 1.0, 'born': 1.0, 'new': 1.0, 'happy': 1.0, 'mis': 1.0, 'my': 1.0, 'the': 3.0, 'music': 1.0, '15': 1.0, 'toys': 1.0, 'movement': 1.0, 'works': 1.0}
Word element => {'while': 1.0, 'after': 1.0, 'annoying': 1.0, 'can': 1.0, 'like': 2.0, 'getting': 1.0, 'and': 1.0, 'just': 1.0, 'easy': 1.0, 'assemble': 1.0, 'seems': 1.0, 'sound': 1.0, 'but': 1.0, 'will': 1.0, 'work': 1.0, 'to': 1.0, 'was': 1.0, 'the': 1.0, 'motor': 1.0, 'little': 1.0, 'swing': 1.0, 'grinding': 1.0, 'fine': 1.0, 'is': 1.0, 'this': 1.0, 'it': 3.0, 'loud': 1.0, 'i': 1.0, 'almost': 1.0, 'see': 1.0, 'a': 3.0}
Word element => {'birds': 1.0, 'day': 1.0, 'single': 1.0, 'love': 2.0, 'newborns': 1.0, 'little': 2.0, 'warm': 1.0, 'who': 1.0, 'parents': 1.0, 'first': 1.0, 'saver': 1.0, 'life': 1.0, 'absolute': 1.0, 'as': 1.0, 'our': 2.0, 'skeptical': 1.0, 'we': 2.0, 'a': 6.0, 'say': 1.0, 'more': 1.0, 'around': 1.0, 'aren': 1.0, 'but': 1.0, 'for': 2.0, 'is': 4.0, 'at': 2.0, 'she': 6.0, 'it': 5.0, 'make': 1.0, 'sleep': 1.0, 'snugly': 1.0, 'nursery': 1.0, 'much': 1.0, 'only': 1.0, 'of': 1.0, 'the': 10.0, 'my': 2.0, 'almost': 1.0, 'now': 1.0, 'wanted': 1.0, '15': 1.0, 'cries': 1.0, 'things': 1.0, 'daughter': 1.0, 'feeling': 1.0, 'us': 1.0, 'mom': 2.0, 'places': 1.0, 'when': 1.0, 'what': 1.0, 'highly': 1.0, 'few': 1.0, 'this': 1.0, 'works': 1.0, 'soft': 2.0, 'months': 2.0, 'get': 1.0, 'magic': 1.0, 'sure': 1.0, 'one': 1.0, 'lot': 1.0, 'too': 1.0, 'swing': 2.0, 'recommend': 1.0, 'were': 1.0, 'to': 4.0, 'pretty': 1.0, 'ladies': 1.0, 'old': 1.0, 'i': 2.0, 'looking': 1.0, 'swings': 1.0, 'believed': 1.0, 'in': 2.0, 'call': 1.0, 'newborn': 1.0, 'can': 1.0, 'so': 3.0, 'just': 1.0, 'fussy': 1.0, 'by': 1.0, 't': 2.0, 'likes': 1.0, 'be': 1.0, 'enclosure': 1.0, 'very': 1.0, 'snuggly': 1.0, 'snugabunny': 2.0, 'falling': 1.0, 'will': 1.0, 'sounds': 1.0, 'soundly': 1.0, 'every': 1.0, 'if': 1.0, 'wake': 1.0, 'than': 1.0, 'minutes': 1.0, 'tip': 1.0, 'mirror': 1.0, 'swaddle': 1.0, 'tight': 1.0, 'would': 2.0, 'herself': 1.0, 'that': 2.0, 'loves': 2.0, 'didn': 1.0, 'have': 1.0, 'blanket': 2.0, 'use': 1.0, 'her': 2.0, '3': 1.0, 'torso': 1.0, 'over': 1.0, 'and': 6.0, 'arms': 1.0, 'not': 1.0, 'with': 1.0, 'turned': 1.0, 'down': 1.0}
Word element => {'help': 1.0, 'a': 1.0, 'around': 1.0, 'kids': 1.0, 'other': 1.0, 'two': 1.0, 'but': 1.0, 'thing': 1.0, 'not': 1.0, 'd': 1.0, 'most': 1.0, 'which': 1.0, 'money': 1.0, 'i': 1.0, 'worth': 1.0, 'big': 1.0, 'best': 2.0, 'swing': 1.0, 'recommend': 1.0, 'there': 1.0, 'of': 1.0, 'the': 3.0, 'my': 1.0, 'is': 3.0, 'time': 1.0, 'with': 1.0, 'it': 1.0, 'this': 2.0, 'spends': 1.0, 'to': 1.0, 'newborn': 1.0, 'anyone': 1.0, 'his': 1.0, 'probably': 1.0}
Word element => {'clean': 1.0, 'wipe': 1.0, 'have': 1.0, 'registering': 1.0, 'though': 1.0, 'mobile': 1.0, 'one': 1.0, 'never': 1.0, 'amused': 1.0, 'interested': 1.0, 'than': 2.0, 'she': 3.0, 'it': 4.0, 'has': 1.0, 'them': 1.0, 'rarely': 1.0, 'adjust': 1.0, 'how': 1.0, 'but': 1.0, 'music': 2.0, 'aren': 1.0, 'so': 1.0, 'can': 2.0, 'bad': 1.0, 'rest': 1.0, 't': 3.0, 'wash': 1.0, 'her': 4.0, 'different': 1.0, 'after': 1.0, 'tons': 1.0, 'worth': 1.0, 'upright': 1.0, 'used': 1.0, 'reading': 1.0, 'super': 2.0, 've': 1.0, 'sounds': 1.0, 'swings': 1.0, 'seems': 1.0, 'on': 2.0, 'put': 1.0, 'your': 1.0, 'for': 1.0, 'daughter': 2.0, 'practically': 1.0, 'honestly': 1.0, 'in': 4.0, 'i': 4.0, 'or': 1.0, 'we': 1.0, 'reviews': 1.0, 'swinging': 2.0, 'great': 1.0, 'this': 3.0, 'and': 6.0, 'my': 3.0, 'registered': 1.0, 'birds': 1.0, 'detachable': 1.0, 'the': 7.0, 'of': 3.0, 'longer': 1.0, 'bassinet': 1.0, 'to': 4.0, 'stays': 1.0, 'be': 1.0, 'regret': 1.0, 'before': 1.0, 'other': 1.0, 'just': 3.0, 'level': 2.0, 'sleeps': 1.0, 'not': 1.0, 'doesn': 1.0, 'keep': 1.0, '1st': 1.0, 'swing': 2.0, 'entertained': 1.0, 'still': 1.0, 'turn': 1.0, 'every': 1.0, 'complaint': 1.0, 'kid': 1.0, 'don': 1.0, 'child': 1.0, 'receiving': 1.0, 'its': 1.0, 'purchase': 1.0, 'only': 2.0, 'soft': 2.0, 'works': 1.0, 'tiny': 1.0, 'motion': 1.0, 'you': 2.0, 'is': 4.0, 'at': 1.0, 'sits': 1.0, 's': 1.0, 'peacefully': 1.0, 'asleep': 2.0, 'side': 2.0, 'because': 2.0, 'that': 1.0, 'piece': 1.0}
Word element => {'is': 1.0, 'calming': 1.0, 'very': 1.0, 'and': 2.0, 'actually': 1.0, 'super': 1.0, 's': 1.0, 'so': 1.0, 'down': 1.0, 'for': 1.0, 'beautiful': 1.0, 'one': 1.0, 'music': 1.0, 'useful': 1.0, 'to': 1.0, 'the': 1.0, 'my': 1.0, 'little': 1.0, 'soft': 1.0, 'settle': 1.0, 'getting': 1.0, 'it': 1.0}
Word element => {'canopy': 1.0, 'tried': 1.0, 'from': 1.0, 'decoration': 1.0, 'higher': 1.0, 'it': 4.0, 'already': 1.0, 'spot': 2.0, '1': 1.0, 'swing': 1.0, 'speed': 1.0, 'con': 1.0, 'move': 1.0, 'beddings': 1.0, 'to': 3.0, 'able': 1.0, 'much': 1.0, 'only': 2.0, 'its': 1.0, 'in': 1.0, 'batteries': 1.0, 'selection': 1.0, 'right': 1.0, 'grown': 1.0, 'using': 1.0, 'cannot': 2.0, 'like': 1.0, 'version': 1.0, 'want': 1.0, 'level': 2.0, 'is': 2.0, 'good': 1.0, 'another': 1.0, 'my': 2.0, 'the': 4.0, 'pro': 1.0, 'i': 3.0, 'flexibility': 1.0, 'feature': 1.0, 'mirror': 1.0, 'baby': 2.0, 'think': 1.0, '3': 2.0, 'now': 1.0, '13': 1.0, 'have': 1.0, 'flat': 1.0, 'wash': 1.0, 'up': 2.0, 'imagine': 1.0, 'of': 3.0, 'bit': 1.0, 'friends': 2.0, 'too': 1.0, 'and': 3.0, 'rotating': 1.0, 'easily': 1.0, 'entertain': 1.0, 'lbs': 1.0, 'one': 1.0, 'months': 1.0, 'nothing': 1.0, 'adult': 1.0, 'directions': 1.0, 'for': 2.0, 'motion': 1.0, 'plug': 1.0, 'or': 2.0, 'swinging': 1.0, 'me': 1.0, 'not': 2.0, 'wow': 1.0, 'does': 1.0, 'because': 1.0, 'laying': 1.0, '2': 1.0, 'music': 1.0, 'but': 1.0, 'keeps': 1.0, 'ok': 1.0, 'bulky': 1.0, 'positions': 1.0, 'little': 1.0, 'tilted': 1.0, 'use': 2.0, 'birdie': 1.0, 'fold': 1.0, 'gets': 1.0, 'a': 4.0, 's': 2.0, 'attention': 1.0}
Word element => {'even': 1.0, 'you': 1.0, 'blow': 1.0, 'had': 1.0, 'apart': 1.0, 'again': 1.0, 'window': 1.0, 'through': 1.0, 'gets': 1.0, 'sun': 1.0, 'scenery': 1.0, 'bored': 1.0, 'ways': 1.0, 'diff': 1.0, '3': 1.0, 'turns': 1.0, 'hold': 1.0, 'couldnt': 1.0, 'doesnt': 1.0, 'where': 1.0, 'do': 1.0, 'there': 1.0, 'when': 1.0, 'sit': 1.0, 'seatbelts': 1.0, 'an': 1.0, 'been': 1.0, 'anymore': 1.0, 't': 1.0, 'buy': 1.0, 'something': 1.0, 'sad': 1.0, 'be': 1.0, 'wash': 1.0, 'use': 2.0, 'new': 1.0, 'time': 2.0, 'lots': 1.0, 'brand': 1.0, '15': 1.0, 'amazing': 1.0, 'only': 1.0, 'limit': 1.0, 'lb': 1.0, 'easy': 1.0, 'know': 2.0, 'will': 1.0, 'could': 2.0, 'lay': 1.0, 'would': 2.0, 'tell': 1.0, 'soft': 1.0, 'can': 2.0, 'so': 4.0, 'cover': 1.0, 'weight': 1.0, 'chair': 1.0, 'looking': 1.0, 'obnoxious': 1.0, 'bright': 1.0, 'room': 1.0, 'never': 1.0, 'set': 1.0, 'naps': 1.0, 'up': 1.0, 'takes': 1.0, 'get': 1.0, 'months': 1.0, 'bought': 1.0, 'disappointed': 1.0, 'not': 3.0, 'day': 3.0, 'am': 1.0, 'or': 1.0, 'falling': 1.0, 'feature': 1.0, 'same': 2.0, 'month': 1.0, 'for': 1.0, 'son': 4.0, 'out': 1.0, 'absolutely': 1.0, 'c': 1.0, 'in': 5.0, 'm': 2.0, '2': 1.0, 'but': 2.0, 'great': 2.0, 'until': 1.0, 'me': 1.0, 'my': 6.0, 'living': 1.0, 'old': 2.0, 'fact': 1.0, 'blends': 1.0, 'have': 3.0, 'soothing': 2.0, 'down': 1.0, 'safe': 1.0, 'mobile': 1.0, 'born': 1.0, 'due': 1.0, 'about': 1.0, 'colors': 1.0, 'needed': 1.0, 'lifesaver': 1.0, 'call': 1.0, 'music': 2.0, 'his': 2.0, 'before': 2.0, '25': 1.0, 'plush': 1.0, 'noise': 2.0, 'washed': 1.0, '1': 1.0, 'since': 2.0, 'makes': 1.0, 'keep': 2.0, 'look': 1.0, 'is': 7.0, 'at': 2.0, 'swing': 2.0, 'cant': 1.0, 'this': 3.0, 'first': 1.0, 'now': 1.0, 'neutral': 1.0, 'pretty': 1.0, 'to': 9.0, 'falls': 1.0, 'as': 3.0, 'lbs': 1.0, 'was': 3.0, 'eyes': 1.0, 'decor': 1.0, 'its': 3.0, 'a': 8.0, 'tiny': 1.0, 'used': 2.0, 'definitely': 1.0, 'think': 1.0, 'batteries': 1.0, 'has': 3.0, 'always': 1.0, 'of': 2.0, 'the': 12.0, 'asleep': 2.0, 's': 1.0, 'plug': 1.0, 'take': 1.0, 'we': 4.0, 'reviews': 1.0, 'swinging': 1.0, '5': 1.0, 'nap': 1.0, 'while': 2.0, 'from': 1.0, 'sane': 1.0, 'and': 6.0, 'pleasing': 1.0, 'like': 2.0, 'white': 1.0, 'baby': 1.0, '8': 1.0, 'mommy': 1.0, 'turn': 1.0, 'if': 3.0, 'still': 2.0, 'distracts': 1.0, 'because': 1.0, 'that': 3.0, 'well': 3.0, 'i': 16.0, 'putting': 1.0, 'it': 17.0, 'him': 4.0, 'on': 1.0, 'long': 1.0, 'enough': 2.0, 'too': 1.0, 'happy': 2.0, 'love': 5.0, 'motor': 1.0, 'he': 6.0, 'with': 2.0}
Word element => {'be': 1.0, 'garbage': 1.0, 'too': 1.0, 'way': 1.0, 'baby': 1.0, 'your': 1.0, 'buy': 1.0, 'hazard': 1.0, 'tipping': 1.0, 'a': 1.0, 'promptly': 1.0, 'is': 2.0, 'to': 1.0, 'very': 1.0, 'today': 1.0, 'received': 1.0, 'returning': 1.0, 'were': 1.0, 'item': 1.0, 'it': 3.0, 'this': 2.0, 'excited': 1.0, 'sit': 2.0, 'we': 1.0, 'together': 1.0, 'important': 1.0, 'legs': 1.0, 'absolute': 1.0, 'not': 2.0, 'will': 1.0, 'put': 1.0, 'doesn': 1.0, 'flat': 1.0, 't': 1.0, 'the': 1.0, 'stationary': 1.0, 'further': 1.0, 'and': 1.0, 'do': 2.0}
Word element => {'like': 1.0, 'enjoy': 1.0, 'baby': 8.0, 'them': 1.0, 'grandma': 1.0, 'mobile': 3.0, 'room': 1.0, 'neon': 1.0, 'a': 3.0, 't': 1.0, 's': 5.0, 'be': 2.0, 'won': 1.0, 'around': 1.0, 'is': 2.0, 'move': 1.0, 'to': 5.0, 'all': 1.0, 'easy': 1.0, 'quieter': 1.0, 'get': 2.0, 'for': 2.0, 'taking': 1.0, 'your': 1.0, 'surprised': 1.0, 'contrasting': 1.0, 'no': 2.0, 'bland': 1.0, 'brown': 1.0, 'in': 1.0, 'the': 14.0, 'am': 1.0, 'you': 3.0, 'and': 6.0, 'bright': 1.0, 'by': 2.0, 'birdies': 1.0, 'i': 2.0, 'there': 3.0, 'helps': 1.0, 'or': 1.0, 'excite': 1.0, 'good': 1.0, 'cradle': 2.0, 'see': 1.0, 'off': 1.0, 'on': 1.0, 'huge': 1.0, 'way': 1.0, 'swing': 2.0, 'entertained': 1.0, 'sit': 1.0, 'thing': 1.0, 'terrible': 1.0, 'reviews': 1.0, 'moving': 1.0, 'reason': 1.0, 'this': 1.0, 'it': 8.0, 'above': 1.0, 'second': 1.0, 'just': 1.0, 'why': 1.0, 'most': 1.0, 'but': 1.0, 'so': 2.0, 'can': 1.0, 'toys': 1.0, 'first': 1.0, 'are': 1.0, 'plastic': 1.0, 'that': 1.0, 'because': 1.0, 'portable': 1.0, 'colors': 2.0, 'do': 2.0, 'not': 1.0, 'will': 3.0, 'into': 2.0, 'three': 1.0, 'keep': 1.0, 'neutral': 1.0, 'mirror': 1.0, 'really': 1.0, 'too': 1.0, 'happy': 1.0, 'third': 1.0, 'hard': 1.0, 'think': 1.0, 'giant': 1.0, 'controls': 1.0, 'have': 1.0, 'right': 1.0, 'maneuver': 1.0, 'sleeping': 1.0, 'wakes': 1.0, 'up': 1.0, 'compact': 1.0, 'often': 1.0, 'same': 2.0}
Word element => {'different': 1.0, 'for': 1.0, 'returning': 1.0, 'definitely': 1.0, 'ride': 1.0, 'an': 1.0, 'probably': 1.0, 'because': 1.0, 'at': 1.0, 'only': 1.0, 'has': 1.0, 'little': 1.0, 'poor': 1.0, 'enough': 1.0, 'slowed': 1.0, 'see': 1.0, 'amusement': 1.0, 'baby': 1.0, 'tried': 1.0, 'of': 1.0, 'regardless': 1.0, 'll': 1.0, 'down': 1.0, 'speed': 1.0, 'if': 1.0, 'same': 1.0, 'exactly': 1.0, 'objects': 1.0, 'more': 1.0, 'the': 6.0, 'we': 1.0, 's': 1.0, 't': 2.0, 'a': 3.0, 'few': 2.0, 'hard': 1.0, 'it': 10.0, 'this': 1.0, 'he': 2.0, 'with': 2.0, 'swinging': 2.0, 'park': 1.0, 'gone': 1.0, 'no': 1.0, 'was': 2.0, 'some': 1.0, 'add': 1.0, 'setting': 3.0, 'difference': 1.0, 'and': 4.0, 'too': 3.0, 'work': 1.0, 'but': 2.0, 'blankets': 1.0, 'distance': 1.0, 'two': 1.0, 'i': 5.0, 'all': 1.0, 'sleep': 1.0, 'to': 5.0, 'our': 3.0, 'been': 1.0, 'that': 2.0, 'week': 1.0, 'fast': 2.0, 'brand': 1.0, 'hasn': 1.0, 'old': 1.0, 'noticed': 1.0, 'seemed': 2.0, 'in': 4.0, 'swings': 1.0, 'also': 1.0, 'swing': 1.0, 'when': 1.0, 'times': 2.0, 'him': 1.0, 'lowest': 2.0, 'be': 2.0, 'like': 2.0, 'fastest': 1.0, 'didn': 1.0, 'even': 2.0, 'guy': 1.0, 'put': 1.0, 'on': 2.0, 'highest': 1.0, 'observed': 1.0, 'measured': 1.0, 'they': 1.0, 'between': 1.0, 'heavy': 1.0, 'first': 1.0, 'various': 1.0, 'settings': 1.0, 'weighted': 1.0}
Word element => {'would': 1.0, 'sounds': 1.0, 'recommend': 1.0, 'she': 1.0, 'nap': 1.0, 'will': 1.0, 'loves': 2.0, 'highly': 1.0, 'baby': 1.0, 'my': 1.0, 'and': 2.0, 'absolutely': 1.0, 'gift': 1.0, 'a': 1.0, 'as': 1.0, 'best': 1.0, 'that': 1.0, 'it': 4.0, 'this': 2.0, 'shower': 1.0, 'the': 2.0, 'plugs': 1.0, 'mobile': 1.0, 'received': 1.0, 'i': 3.0, 'for': 1.0, 'love': 1.0, 'one': 1.0, 'of': 1.0, 'hours': 1.0, 'no': 1.0, 'features': 1.0, 'is': 1.0, 'also': 1.0, 'in': 2.0, 'swing': 2.0, 'batteries': 1.0}
Word element => {'reasonable': 1.0, 'swing': 1.0, 'like': 1.0, 'to': 1.0, 'amelia': 1.0, 'you': 1.0, 'that': 1.0, 'seems': 1.0, 'sound': 2.0, 'a': 2.0, 'has': 1.0, 'fortunately': 1.0, 'without': 1.0, 'however': 1.0, 'too': 1.0, 'soothing': 1.0, 'at': 1.0, 'gentle': 1.0, 'girl': 1.0, 'creaky': 1.0, 'product': 1.0, 'music': 2.0, 'or': 1.0, 'loves': 1.0, 'sounds': 2.0, 'overall': 1.0, 'are': 2.0, 'great': 1.0, 'the': 3.0, 'my': 1.0, 'might': 1.0, 'recommend': 1.0, 'and': 2.0, 'very': 2.0, 'will': 1.0, 'price': 1.0, 'baby': 1.0, 'i': 1.0, 'fabric': 1.0, 'bother': 1.0, 'ultra': 1.0, 'motions': 1.0, 'soft': 1.0, 'this': 2.0, 'it': 2.0, 'noise': 1.0, 'white': 1.0}
Word element => {'side': 1.0, 'down': 1.0, 'that': 1.0, 'though': 1.0, 'min': 1.0, '15': 1.0, 'after': 1.0, 'only': 1.0, 'do': 1.0, 'crib': 1.0, 'day': 1.0, 'finally': 1.0, 'in': 4.0, 'swing': 1.0, 'little': 1.0, 'batteries': 1.0, 'wish': 1.0, 'this': 1.0, 'he': 2.0, 'time': 1.0, 'so': 1.0, 'wouldn': 1.0, 'got': 1.0, 'then': 1.0, 'use': 1.0, 'the': 5.0, 'my': 2.0, 'happy': 1.0, 'never': 1.0, 'i': 2.0, 'here': 1.0, 'arms': 1.0, 'was': 1.0, 'guy': 1.0, 'until': 1.0, 'naps': 1.0, 'out': 2.0, 'shower': 1.0, 'of': 1.0, 'can': 1.0, 'must': 1.0, 'have': 1.0, 'during': 1.0, 'rain': 3.0, 's': 1.0, 't': 1.0, 'we': 2.0, 'a': 2.0, 'plug': 1.0, 'sound': 1.0, 'nighttime': 1.0, 'are': 1.0, 'more': 1.0, 'is': 2.0, 'sleeps': 1.0, 'expensive': 1.0, 'his': 3.0, 'present': 1.0, 'maker': 1.0, 'room': 1.0, 'at': 1.0, 'when': 1.0}
Word element => {'new': 1.0, 'recamend': 1.0, 'likes': 1.0, 'that': 1.0, 'on': 1.0, 'they': 1.0, 'has': 1.0, 'up': 1.0, 'and': 1.0, 'her': 3.0, 'because': 1.0, 'any': 1.0, 'calm': 1.0, 'helps': 1.0, 'baby': 2.0, 'machine': 1.0, 'to': 1.0, 'had': 1.0, 'sound': 1.0, 'in': 1.0, 'would': 1.0, 'grand': 1.0, 'date': 1.0, 'my': 1.0, 'more': 1.0, 'the': 2.0, 'swing': 3.0, 'too': 1.0, 'daughter': 1.0, 'mom': 3.0, 'i': 2.0, 'for': 2.0, 'one': 1.0, 'got': 1.0, 'loved': 1.0, 'it': 4.0, 'this': 1.0, 'being': 1.0, 'as': 2.0, 'alot': 1.0, 'a': 2.0, 'really': 1.0, 'is': 1.0, 'better': 1.0}
Word element => {'best': 1.0, 'overall': 1.0, 'they': 1.0, 'occasionally': 1.0, 'used': 1.0, 'built': 1.0, 'use': 1.0, 'rarely': 1.0, 'off': 1.0, 'so': 1.0, 'negative': 1.0, 'give': 1.0, 'minor': 1.0, 'only': 1.0, 'part': 1.0, 'is': 2.0, 'top': 1.0, 'through': 1.0, 'mobile': 1.0, 'one': 1.0, 'comfortable': 1.0, 'love': 1.0, 'i': 7.0, 've': 2.0, 'in': 2.0, 'rates': 1.0, 'it': 2.0, 'leave': 1.0, 'none': 1.0, 'have': 1.0, 'very': 2.0, 'too': 1.0, 'and': 2.0, 'right': 1.0, 'but': 1.0, 'four': 1.0, 'can': 2.0, 'gone': 1.0, 's': 1.0, 'a': 1.0, 'plug': 1.0, 'easy': 1.0, 'our': 1.0, 'seat': 1.0, 'swing': 2.0, 'rotating': 1.0, 'handy': 2.0, 'stimulating': 1.0, 'the': 9.0, 'axis': 1.0, 'liked': 1.0, 'options': 1.0, 'are': 2.0, 'babies': 1.0, 'changing': 1.0, 'that': 3.0, 'you': 2.0, 'of': 3.0, 'rather': 1.0, 'than': 1.0, 'at': 1.0, 'lot': 1.0, 'keep': 1.0, 'sounds': 1.0, 'also': 1.0, 'swings': 1.0, 'batteries': 2.0, 'will': 1.0, 'save': 1.0, 'kids': 1.0, 'this': 2.0, '30': 1.0, 'on': 1.0, 'over': 1.0, 'just': 1.0, 'life': 1.0}
Word element => {'product': 1.0, 'quality': 1.0, 'from': 1.0, 'returns': 1.0, 'thing': 1.0, 'had': 1.0, 'was': 2.0, 'there': 1.0, 'swing': 1.0, 'times': 1.0, 'the': 3.0, 'start': 1.0, 'both': 1.0, 'good': 1.0, 'off': 1.0, 'and': 2.0, 'poor': 1.0, 'free': 1.0, 'time': 1.0, 'automatically': 1.0, 'ordered': 1.0, 'some': 1.0, 'we': 2.0, 'problem': 1.0, 'shutting': 1.0, 'only': 1.0, 'with': 1.0, 'it': 2.0, 'first': 1.0, 'too': 1.0, 'twice': 1.0, 'noisy': 1.0, 'amazon': 1.0, 'is': 1.0, 'second': 1.0, 'one': 1.0}
Word element => {'before': 1.0, 'give': 1.0, 'gets': 1.0, 'buy': 1.0, 'replacement': 1.0, 'me': 2.0, 'told': 1.0, 'original': 1.0, 'date': 1.0, 'id': 1.0, 'correct': 1.0, 'these': 1.0, 'connect': 1.0, 'their': 1.0, 'menu': 1.0, 'do': 1.0, 'support': 2.0, 'customer': 1.0, '19lbs': 1.0, 'took': 1.0, 'limit': 1.0, 'mark': 1.0, 'product': 1.0, 'year': 1.0, 'swinging': 1.0, '9': 1.0, '8': 1.0, 'comments': 1.0, 'included': 1.0, 'anything': 1.0, 'want': 1.0, 'questions': 2.0, 'have': 2.0, 'recommend': 1.0, 'no': 2.0, 'customers': 1.0, 'department': 1.0, 'review': 1.0, 'con': 1.0, 'might': 1.0, 'sensitive': 1.0, 'types': 1.0, 'or': 2.0, 'actually': 1.0, 'us': 1.0, 'deal': 1.0, '5th': 1.0, 'ribbit': 1.0, 'frog': 1.0, 'by': 1.0, 'after': 1.0, 'would': 1.0, 'dying': 1.0, 'motor': 3.0, '12': 1.0, 'first': 1.0, 'down': 2.0, 'rotate': 1.0, '7': 1.0, 'bit': 1.0, 'comfortable2': 1.0, 'happy': 3.0, 'lot': 2.0, 'specially': 1.0, 'slow': 1.0, 'at': 1.0, 'pillow': 1.0, 'fabric': 1.0, 'for': 8.0, 'still': 1.0, 'cry': 1.0, 'big': 2.0, 'nice': 1.0, 'doubt': 1.0, 'two': 1.0, 'asked': 1.0, '1': 2.0, 'since': 2.0, 'snugabunny': 1.0, 'plush': 1.0, 'noise': 1.0, 'pros': 1.0, 'but': 4.0, 'the': 25.0, 'ds': 1.0, 'they': 6.0, 'sleeping': 1.0, 'reviews': 1.0, 'purely': 1.0, 'while': 1.0, 'products': 1.0, 'facing': 1.0, 'power': 1.0, 'fact': 1.0, 'fp': 1.0, 'on': 3.0, 'zoo': 1.0, 'you': 10.0, 'with': 1.0, 'direction': 2.0, 'inclined': 1.0, 'mirror': 1.0, 'price': 2.0, 'stopped': 1.0, 'fisher': 2.0, 'listed': 1.0, 'and': 16.0, 'see': 2.0, 'true': 1.0, 'seems': 1.0, 'store': 1.0, 'return': 2.0, 'sure': 1.0, 'home': 1.0, 'plug': 2.0, 'talking': 1.0, 'snug': 1.0, 's': 2.0, 'has': 2.0, 'star': 1.0, 'them': 1.0, 'from': 2.0, 'scared': 1.0, 'toys': 1.0, 'started': 1.0, 'should': 2.0, 'leaves': 1.0, 'short': 1.0, 'control': 1.0, 'wanted': 1.0, 'stars': 1.0, 'satisfied': 1.0, 'liked': 2.0, 'rocked': 1.0, 'love': 2.0, 'he': 3.0, 'much': 1.0, 'gift': 1.0, 'which': 1.0, 'this': 4.0, 'rocking': 2.0, 'bunny': 1.0, 'a': 7.0, 'extensively': 1.0, 'asleep': 1.0, 'added': 1.0, 'said': 1.0, 'came': 1.0, 'transfer': 1.0, 'month': 1.0, 'same': 1.0, 'engaged': 1.0, 'baby': 15.0, 'swing': 16.0, 'any': 1.0, 'pretty': 1.0, 'straight': 1.0, 'something': 1.0, 'please': 1.0, 'hrs': 1.0, 'birthday': 1.0, 'know': 1.0, 'save': 1.0, 'mobile': 2.0, 'seemed': 1.0, 'bought': 1.0, 'it': 15.0, 'be': 9.0, 'based': 2.0, 'in': 9.0, 'seat': 2.0, 'that': 8.0, 'times': 1.0, 'fall': 2.0, 'because': 1.0, 'hospital': 1.0, 'change': 2.0, 'chair': 2.0, 'as': 3.0, 'body': 1.0, 'winter': 1.0, 'lowest': 1.0, 'our': 1.0, 'how': 2.0, 'criteria': 1.0, 'sleep': 2.0, 'so': 6.0, 'is': 14.0, 'can': 3.0, 'speed': 2.0, 'get': 1.0, 'batteries': 2.0, 'will': 10.0, 'went': 1.0, 'definitely': 2.0, 'used': 4.0, 'within': 1.0, 'move': 1.0, 'of': 9.0, 'even': 3.0, 'ship': 1.0, 'looking': 1.0, 'weight': 1.0, 'too': 3.0, '3': 3.0, 'there': 4.0, 'positions': 2.0, 'kind': 1.0, 'time': 4.0, 'did': 2.0, 'option': 3.0, 'wise': 1.0, 'are': 4.0, 'my': 5.0, 'left': 1.0, 'elated': 1.0, 'up': 1.0, 'steep': 1.0, 'position': 4.0, 'little': 2.0, 'white': 1.0, 'perfect': 1.0, 'more': 2.0, 'was': 7.0, 'lbs': 1.0, 'sounds': 1.0, 'like': 3.0, 'pro': 1.0, 'amazing': 1.0, 'sometimes': 1.0, 'way': 1.0, 'ac': 1.0, 'all': 3.0, 'cs': 1.0, 'also': 3.0, 'need': 2.0, '4': 1.0, 'music': 1.0, 'usually': 1.0, 'use': 2.0, 'make': 1.0, 'soft': 1.0, 'songs': 1.0, 'sound': 2.0, 'volume': 1.0, 'keep': 1.0, 'advantage': 1.0, 'course': 1.0, 'if': 7.0, 'not': 8.0, 'one': 1.0, '5': 2.0, 'got': 2.0, '6': 3.0, 'update': 1.0, 'months': 2.0, 'now': 4.0, '1st': 1.0, 'almost': 4.0, 'many': 1.0, 'your': 2.0, 'feel': 2.0, 'to': 13.0, 'suddenly': 1.0, 'cold': 1.0, 'congested': 1.0, 'i': 8.0, 'nature': 2.0, 'fast': 2.0, 'inclination': 1.0, 'alsmost': 1.0, 'secured': 1.0, 'very': 5.0, 'knew': 3.0, 'why': 2.0, 'when': 3.0, 'week': 2.0, 'leave': 1.0, 'going': 1.0, '2': 2.0, '15lbs': 1.0, 'highest': 1.0, 'called': 1.0, 'we': 11.0, 'middle': 1.0}
Word element => {'perfect': 1.0, 'just': 1.0, 'is': 1.0, 'this': 1.0, 'so': 1.0, 'her': 1.0, 'cute': 1.0, 'our': 1.0, 'exactly': 1.0, 'we': 2.0, 'what': 2.0, 'and': 1.0, 'wanted': 2.0, 'for': 3.0, 'new': 1.0, 'granddaughter': 1.0}
Word element => {'new': 1.0, 'reason': 1.0, 'course': 1.0, 'also': 1.0, 'headed': 1.0, 'want': 1.0, 'from': 1.0, 'break': 1.0, 'take': 1.0, 'head': 1.0, 'nice': 1.0, 'spot': 1.0, 'flat': 2.0, 'get': 1.0, 'different': 1.0, 'well': 1.0, 'so': 2.0, 'because': 1.0, 'is': 5.0, 'whole': 1.0, 'thing': 1.0, 'only': 1.0, 'starting': 1.0, 'too': 1.0, 'and': 6.0, 't': 1.0, 'going': 1.0, 'we': 1.0, 'a': 5.0, 'ago': 1.0, 'my': 1.0, '7': 1.0, 'baby': 3.0, 'with': 2.0, 'this': 2.0, 'weeks': 1.0, 'older': 1.0, 'he': 4.0, 'then': 1.0, 'loved': 1.0, 'got': 1.0, 'of': 2.0, 'feature': 1.0, 'i': 5.0, 'love': 2.0, 'for': 2.0, 'don': 1.0, 'newest': 1.0, 'an': 1.0, 'ways': 1.0, 'first': 1.0, 'above': 1.0, 'swinging': 1.0, 'plug': 2.0, 'swing': 1.0, 'little': 1.0, 'using': 1.0, 'version': 1.0, 'old': 1.0, 'non': 1.0, 'had': 1.0, 'turned': 1.0, 'in': 5.0, 'ears': 1.0, 'to': 2.0, 'all': 1.0, 'sleep': 1.0, 'our': 1.0, 'that': 1.0, 'loves': 2.0, 'few': 1.0, 'just': 1.0, 'music': 1.0, '2': 1.0, 'the': 5.0, 'one': 1.0, 'bought': 1.0, 'months': 1.0, 'on': 2.0, 'recently': 1.0, 'it': 5.0, 'fell': 1.0, 'himself': 1.0, 'years': 1.0, 'mirror': 1.0, 'awesome': 1.0, 'his': 2.0, 'face': 1.0, 'are': 2.0, 'cute': 1.0}
Word element => {'into': 1.0, 'factor': 1.0, 'long': 1.0, 'get': 1.0, 'mobile': 1.0, 'won': 1.0, 'who': 1.0, 'infants': 1.0, 'keep': 1.0, 'setting': 1.0, 'out': 1.0, 'see': 1.0, 'don': 1.0, 'bed': 1.0, 'under': 1.0, 'suppose': 1.0, 'large': 1.0, 'something': 1.0, 'would': 1.0, 'where': 1.0, 'storage': 2.0, 'up': 2.0, 'fold': 1.0, 'does': 1.0, 'while': 1.0, 'also': 1.0, 'room': 1.0, 'enough': 1.0, 'have': 1.0, 'really': 1.0, 'tip': 1.0, 'will': 1.0, 'no': 1.0, 'move': 1.0, 'huge': 1.0, 'assembly': 1.0, 'but': 3.0, 'middle': 1.0, 'this': 4.0, 'spin': 1.0, 'soft': 1.0, 'wish': 1.0, 'sure': 1.0, 'everything': 1.0, 'still': 1.0, 'if': 1.0, 'make': 1.0, 'put': 2.0, 'dragging': 1.0, 'then': 1.0, 'transit': 1.0, 'in': 4.0, 'not': 3.0, 'itself': 2.0, 'opened': 1.0, 'and': 9.0, 'too': 1.0, 'play': 1.0, 'packed': 1.0, 'bag': 1.0, 'toys': 1.0, 'however': 1.0, 'found': 1.0, 'easy': 1.0, 'bit': 2.0, 'can': 2.0, 'so': 4.0, 'as': 2.0, 'annoying': 1.0, 'it': 6.0, 'each': 1.0, 'end': 1.0, 'harness': 1.0, 'my': 1.0, 'start': 1.0, 'screwdriver': 1.0, 'wasn': 1.0, 'for': 5.0, 'such': 1.0, 'some': 1.0, 'a': 9.0, 'device': 1.0, 'of': 7.0, 'the': 11.0, 'count': 1.0, 'give': 1.0, 'there': 2.0, 'hang': 1.0, 'nitpicking': 1.0, 'with': 2.0, 'price': 1.0, 'product': 1.0, 'i': 5.0, 'well': 1.0, 'review': 1.0, 'mind': 1.0, 'half': 1.0, 'baby': 2.0, 'll': 2.0, 'containing': 1.0, 'parts': 1.0, 'pick': 1.0, 'sit': 1.0, 'little': 2.0, 'very': 4.0, 't': 3.0, 'fairly': 1.0, 'strap': 1.0, 'are': 2.0, 'maybe': 1.0, 'all': 2.0, 'an': 1.0, 'hour': 1.0, 'sturdy': 1.0, 'they': 1.0, 'girly': 1.0, 'you': 9.0, 'wrench': 1.0, 'front': 1.0, 'swing': 2.0, 'is': 4.0, 'to': 4.0, 'pretty': 1.0, 'big': 1.0, 'cradle': 1.0, 'use': 4.0, 'her': 1.0, 'through': 1.0, 'material': 1.0, 'securely': 1.0, 'need': 2.0, 'world': 1.0, 'or': 1.0, 'worries': 1.0, 'was': 1.0, 'selection': 1.0, 'had': 3.0, 'screws': 1.0, 'songs': 1.0, 'base': 1.0, 'took': 1.0, 'even': 1.0, 'easily': 1.0, 'that': 4.0}
Word element => {'would': 1.0, 'recommend': 1.0, 'easy': 2.0, 'how': 1.0, 'purchase': 1.0, 'to': 2.0, 'fabric': 1.0, 'have': 1.0, 'highly': 1.0, 'don': 1.0, 'cord': 1.0, 'power': 1.0, 'remove': 1.0, 'on': 1.0, 'enjoying': 1.0, 'washing': 1.0, 'excellent': 1.0, 'operates': 1.0, 'month': 1.0, 'for': 1.0, 'love': 3.0, 'absolutely': 1.0, 'batteries': 1.0, 'swing': 3.0, 'our': 1.0, 'that': 1.0, 'is': 3.0, 'it': 1.0, 'this': 2.0, 'old': 1.0, 'i': 4.0, 't': 1.0, '2': 1.0, 'the': 3.0, 'as': 1.0, 'and': 1.0, 'a': 1.0, 'well': 1.0, 'continuously': 1.0, 'we': 1.0, 'design': 1.0, 'so': 1.0, 'function': 1.0, 'plush': 1.0, 'covering': 1.0}
Word element => {'have': 1.0, 'not': 1.0, 'areas': 1.0, 'around': 1.0, 'traveling': 1.0, 'might': 2.0, 'battery': 1.0, 'while': 1.0, 'option': 2.0, 'electrical': 1.0, 'or': 1.0, 'greatly': 1.0, 'operation': 1.0, 'are': 1.0, 'described': 1.0, 'show': 1.0, 'them': 1.0, 'home': 1.0, 'by': 1.0, 'illustrations': 1.0, 'also': 1.0, 'rewrite': 1.0, 'enlarging': 1.0, 'needed': 1.0, 'interior': 1.0, 'badly': 1.0, 'technical': 1.0, 'figure': 1.0, 'important': 1.0, 'perspectives': 1.0, 'their': 1.0, 'overall': 1.0, 'adults': 1.0, 'half': 1.0, 'about': 1.0, 'completed': 1.0, 'writer': 1.0, 'competent': 1.0, 'side': 1.0, 'tend': 1.0, 'harness': 1.0, 'general': 1.0, 'much': 1.0, 'do': 1.0, 'only': 1.0, 'spaces': 1.0, 'so': 2.0, 'instructed': 1.0, 'safety': 1.0, 'didn': 1.0, 'appreciate': 1.0, 'point': 1.0, 'adapter': 1.0, 'old': 1.0, 'startle': 1.0, 'and': 6.0, 'swaddled': 1.0, '5': 2.0, 'be': 3.0, 'were': 3.0, 'there': 1.0, 'found': 1.0, 'outlets': 1.0, 'setting': 1.0, 'lower': 1.0, 'i': 2.0, 'gentler': 1.0, 'broader': 1.0, 'wish': 1.0, 'myself': 1.0, 'seem': 1.0, 'to': 11.0, 'since': 1.0, 'out': 2.0, 'whether': 1.0, 'new': 1.0, 'look': 1.0, 'is': 5.0, '3': 2.0, 'my': 1.0, 'booklet': 2.0, 'on': 2.0, 'weeks': 1.0, 'could': 1.0, 'adding': 1.0, 'will': 1.0, 'she': 2.0, 'being': 1.0, 'cannot': 1.0, 'it': 6.0, 'jury': 1.0, 'in': 3.0, 'happy': 1.0, 'try': 1.0, 'one': 2.0, 'love': 1.0, 'product': 1.0, 'for': 2.0, 'with': 5.0, 'use': 1.0, 'aspect': 1.0, 'her': 1.0, 'swing': 1.0, 'as': 3.0, 'slower': 1.0, 'issue': 1.0, 'moving': 1.0, 'we': 4.0, 'small': 1.0, 'a': 5.0, 'fit': 1.0, 't': 1.0, 'had': 1.0, 'decidedly': 1.0, 'fall': 1.0, 'that': 3.0, 'box': 1.0, 'stars': 1.0, 'kept': 1.0, 'actually': 1.0, 'movements': 1.0, 'unhelpful': 1.0, 'from': 1.0, 'part': 1.0, 'granddaughter': 1.0, 'earning': 1.0, 'assembly': 3.0, 'photograph': 1.0, 'device': 1.0, 'the': 19.0, 'of': 4.0, 'frequently': 1.0, 'get': 1.0, 'sense': 1.0, 'improved': 1.0, 'hour': 1.0, 'orientation': 1.0, 'various': 1.0, 'instructions': 1.0, 'lack': 1.0, 'seriously': 1.0, 'detail': 1.0, 'relying': 1.0, 'still': 1.0, 'if': 2.0, 'example': 1.0, 'attach': 1.0, 'all': 1.0, 'other': 1.0, 'an': 2.0, 'arm': 2.0, 'cradle': 1.0, 'given': 1.0, '34': 2.0, 'this': 2.0, 'hint': 1.0, 'upper': 1.0, 'right': 1.0}
Word element => {'faster': 1.0, 'make': 1.0, 'will': 1.0, 'people': 1.0, '2': 1.0, 'but': 1.0, 'easier': 1.0, 'assemble': 1.0, '1': 1.0, 'good': 1.0, 'it': 1.0, 'can': 1.0, 'build': 1.0, 'as': 1.0, 'described': 1.0, 'and': 2.0, 'quality': 1.0, 'person': 1.0, 'assembly': 1.0, 'mins': 1.0, '15': 1.0, 'about': 1.0, 'took': 1.0}
Word element => {'everyone': 1.0, 'recommend': 1.0, 'definitely': 1.0, 'would': 1.0, 'options': 1.0, 'sound': 1.0, 'different': 1.0, 'weight': 1.0, 'gains': 1.0, 'plenty': 1.0, 'be': 1.0, 'there': 1.0, 'so': 1.0, 'speed': 3.0, 'on': 1.0, 'strong': 1.0, 'because': 1.0, 'adaptor': 1.0, 'my': 1.0, 'ac': 1.0, 'were': 1.0, 'it': 3.0, 'full': 1.0, 'this': 2.0, 'of': 1.0, 'shower': 1.0, 'only': 2.0, 'has': 2.0, 'love': 2.0, 'son': 1.0, 'an': 2.0, 'week': 1.0, 'old': 1.0, '4': 1.0, 'i': 4.0, 'about': 1.0, 'battery': 1.0, '5': 1.0, 'that': 1.0, 'loves': 1.0, 'swing': 4.0, 'he': 2.0, 'received': 1.0, 'gift': 1.0, 'sometimes': 1.0, 'also': 1.0, 'will': 1.0, 'seems': 1.0, 'batteries': 1.0, 'swings': 1.0, 'us': 1.0, 'away': 1.0, 'and': 2.0, 'mobile': 1.0, 'entire': 1.0, '1': 1.0, 'nice': 1.0, 'nap': 1.0, 'a': 2.0, 'we': 2.0, 'if': 1.0, 'keep': 1.0, 'mirror': 1.0, 'action': 1.0, 'd': 1.0, 'have': 1.0, 'take': 1.0, 'out': 1.0, 'loan': 1.0, 'as': 2.0, 'to': 3.0, 'turn': 1.0, 'in': 1.0, 'powered': 1.0, 'the': 5.0}
Word element => {'now': 1.0, 'stars': 1.0, 'given': 1.0, 'would': 1.0, 'unit': 1.0, 'upper': 1.0, 'have': 1.0, 'coming': 1.0, 'amount': 1.0, 'there': 1.0, '5': 1.0, 'room': 1.0, 'back': 1.0, 'walked': 1.0, 'left': 1.0, 'and': 4.0, 'getting': 1.0, 'woke': 1.0, 'swinging': 1.0, 'saver': 1.0, 'n': 1.0, 'may': 1.0, 'today': 2.0, 'it': 4.0, 'she': 2.0, 'large': 1.0, 'life': 1.0, 'of': 3.0, 'smoke': 1.0, 'up': 1.0, 'set': 1.0, 'swing': 4.0, 'into': 1.0, 'been': 1.0, 'got': 1.0, 'daughter': 1.0, 'when': 2.0, 'purchased': 1.0, 'had': 1.0, 'was': 4.0, 'end': 1.0, 'high': 1.0, 'playing': 1.0, 'the': 8.0, 'a': 3.0, 'abosultely': 1.0, 't': 2.0, 'housing': 1.0, 'calming': 1.0, 'from': 2.0, 'amazon': 1.0, 'cradle': 1.0, 'her': 3.0, 'our': 1.0, 'to': 3.0, 'sleep': 1.0, 'loved': 1.0, 'snugabunny': 1.0, 'took': 1.0, 'prior': 1.0, 'i': 2.0, 'nap': 1.0, 'in': 1.0, 'on': 2.0, 'can': 1.0, 'change': 1.0, 'music': 1.0, 'but': 2.0, 'out': 1.0, 'wasn': 1.0}
Word element => {'months': 1.0, '6': 1.0, 'to': 1.0, 'birth': 1.0, 'from': 1.0, '7': 1.0, 'lifesaver': 1.0, 'a': 1.0, 'been': 1.0, 'we': 1.0, 'buy': 1.0, 'swing': 1.0, 'our': 1.0, 'and': 1.0, 'love': 1.0, 'it': 1.0, 'comfy': 1.0, 'looks': 1.0, 'snugabunny': 1.0, 'soo': 1.0, 'good': 1.0, 'has': 1.0}
Word element => {'with': 1.0, 'this': 1.0, 'baby': 1.0, 'new': 1.0, 'for': 1.0, 'and': 2.0, 'wouldnt': 1.0, 'why': 1.0, 'son': 2.0, 'from': 1.0, 'problem': 1.0, 'did': 1.0, 'going': 1.0, 'a': 3.0, 'never': 1.0, 'quit': 1.0, 'my': 3.0, 'slept': 1.0, 'sadly': 1.0, 'it': 5.0, 'he': 2.0, 'diff': 1.0, 'sure': 1.0, 'his': 1.0, 'had': 1.0, 'was': 3.0, 'in': 1.0, '13': 1.0, 'swing': 3.0, 'didnt': 1.0, 'im': 2.0, 'one': 2.0, 'till': 2.0, 'not': 1.0, 'know': 1.0, 'brake': 1.0, 'to': 3.0, '7mo': 2.0, 'old': 2.0, '30lb': 1.0, 'i': 2.0, 'day': 1.0, 'buy': 1.0, 'working': 1.0, 'but': 1.0, 'lb': 1.0, 'when': 1.0, 'time': 1.0, 'so': 1.0, 'being': 1.0, 'weights': 1.0, 'heavy': 1.0, 'cuz': 1.0, 'says': 1.0, 'cheaper': 1.0, 'up': 1.0, 'have': 1.0}
Word element => {'swing': 1.0, 'she': 1.0, 'how': 1.0, 'my': 1.0, 'time': 1.0, 'put': 1.0, 'hard': 1.0, 'a': 1.0, 'have': 1.0, 'trying': 1.0, 'can': 1.0, 'selection': 1.0, 'to': 2.0, 'i': 2.0, 'old': 1.0, 'product': 1.0, 'baby': 1.0, 'whenever': 1.0, 'month': 1.0, 'the': 1.0, '2': 1.0, 'great': 1.0, 'love': 1.0, 'sleep': 1.0, 'and': 1.0, '3': 1.0, 'of': 1.0}
Word element => {'after': 1.0, 'space': 1.0, 'bit': 1.0, 'quite': 1.0, 'adjustable': 1.0, 'rotated': 1.0, 'directions': 1.0, 'different': 2.0, 'mobile': 1.0, 'loved': 1.0, 'bunny': 1.0, 'comes': 1.0, 'design': 1.0, 'rotating': 1.0, 'cute': 1.0, 'until': 1.0, 'use': 1.0, 'just': 1.0, 'convenient': 1.0, 'more': 1.0, 'been': 1.0, 'worked': 1.0, 'when': 1.0, 'lullabies': 1.0, 'seatcons': 1.0, 'some': 1.0, 'wake': 1.0, 'times': 1.0, 'many': 1.0, 'can': 1.0, 'so': 1.0, 'rattle': 1.0, 'a': 5.0, 's': 2.0, 'then': 1.0, 'we': 8.0, 't': 1.0, 'gas': 1.0, 'sing': 1.0, 'could': 1.0, 'no': 2.0, 'thing': 1.0, 'about': 2.0, 'little': 1.0, 'plugs': 2.0, 'same': 1.0, 'only': 1.0, 'people': 1.0, 'really': 2.0, '20': 1.0, 'that': 5.0, 'fall': 1.0, 'i': 3.0, 'cushioning': 1.0, 'saved': 2.0, 'of': 1.0, 'the': 11.0, 'without': 1.0, 'our': 3.0, 'as': 1.0, 'an': 1.0, 'all': 1.0, 'any': 1.0, 'pretty': 1.0, 'to': 6.0, 'back': 1.0, 'sleep': 2.0, 'least': 1.0, 'old': 1.0, 'suppose': 1.0, 'have': 2.0, 'time': 2.0, '10': 1.0, 'for': 4.0, 'where': 1.0, 'try': 1.0, 'one': 3.0, 'fisher': 1.0, 'cried': 1.0, 'pros': 1.0, 'son': 4.0, 'from': 1.0, 'while': 2.0, 'he': 6.0, 'with': 2.0, 'this': 7.0, 'wish': 1.0, 'needed': 1.0, 'sleeper': 1.0, 'batteries': 2.0, 'sounds': 3.0, 'swing': 10.0, 'week': 1.0, 'car': 1.0, 'but': 2.0, 'money': 1.0, 'takes': 1.0, 'up': 2.0, 'change': 1.0, 'music': 5.0, 'would': 7.0, 'incline': 1.0, 'permanently': 1.0, 'price': 1.0, 'us': 1.0, 'song': 1.0, 'speeds': 1.0, 'months': 1.0, 'get': 1.0, 'except': 1.0, 'long': 1.0, 'on': 5.0, 'much': 2.0, 'put': 3.0, 'used': 2.0, 'set': 1.0, 'cozy': 1.0, 'turned': 1.0, 'down': 1.0, 'couldn': 1.0, 'and': 8.0, 'in': 7.0, 'nap': 1.0, 'anywhere': 1.0, 'mommy': 1.0, 'lap': 1.0, 'or': 2.0, 'my': 1.0, 'calm': 1.0, 'me': 1.0, 'if': 1.0, 'stay': 1.0, 'it': 1.0, 'him': 3.0, 'is': 3.0, 'at': 1.0, 'stops': 1.0, 'minutes': 2.0, 'was': 2.0, 'hooray': 1.0, 'side': 2.0, 'ipod': 1.0, 'asleep': 1.0, 'which': 1.0, 'memorized': 1.0, 'last': 1.0, 'lining': 1.0, 'creep': 1.0, 'over': 1.0, 'right': 1.0, '30': 1.0, 'restart': 1.0, 'forward': 1.0, 'waking': 1.0, 'light': 1.0}
Word element => {'bought': 1.0, 'about': 1.0, 'good': 1.0, 'enough': 1.0, 'say': 1.0, 'love': 1.0, 'awake': 1.0, 'during': 1.0, 'naps': 1.0, 'real': 1.0, 'takes': 1.0, 'crib': 1.0, 'primarily': 1.0, 'if': 1.0, 'still': 1.0, 'but': 2.0, 'sleeper': 1.0, 'crazy': 1.0, 'going': 1.0, 'never': 1.0, 'when': 2.0, 'does': 1.0, 'd': 2.0, 'fun': 1.0, 'wish': 2.0, 'wow': 1.0, 'not': 1.0, 'day': 1.0, 'miracle': 1.0, 'week': 1.0, 'of': 2.0, 'the': 4.0, 'a': 5.0, 'we': 7.0, 'will': 1.0, 'could': 1.0, 'advice': 1.0, 's': 3.0, 'swing': 4.0, 'even': 1.0, 'our': 2.0, 'for': 2.0, 't': 2.0, 'ago': 1.0, 'fit': 1.0, 'daughter': 2.0, 'together': 1.0, 'cannot': 1.0, 'being': 1.0, 'plays': 1.0, 'two': 1.0, '4': 1.0, 'much': 1.0, 'do': 2.0, 'put': 1.0, 'just': 1.0, 'stuff': 1.0, 'on': 1.0, 'this': 7.0, 'few': 1.0, 'month': 1.0, 'register': 1.0, 'baby': 1.0, 'she': 7.0, 'hard': 1.0, 'had': 2.0, 'old': 1.0, 'seems': 1.0, 'tried': 1.0, 'overbuy': 1.0, 'night': 1.0, 'you': 1.0, 'things': 2.0, 'at': 4.0, 'is': 1.0, 'to': 2.0, 'preemie': 1.0, 'sooner': 2.0, 'really': 2.0, 'and': 6.0, 'loves': 1.0, 'that': 1.0, 'everything': 1.0, 'cradled': 1.0, 'in': 5.0, 'faces': 1.0, 'different': 2.0, 'her': 6.0, 'wouldn': 1.0, 'directions': 1.0, 'light': 1.0, 'swings': 1.0, 'sounds': 1.0, 'music': 1.0, 'sleep': 3.0, 'most': 1.0, 'deeply': 1.0, 'so': 1.0, 'can': 1.0, 'importantly': 1.0, 'all': 1.0, 'fits': 1.0, 'i': 4.0, 'well': 2.0, 'lbs': 2.0, 'was': 3.0, '5': 2.0, 'speeds': 1.0, 'trouble': 1.0, 'it': 6.0, 'thought': 1.0, '9': 1.0, 'finding': 1.0, 'happy': 1.0, 'held': 1.0, 'almost': 1.0, 'now': 1.0, 'days': 1.0, 'tell': 1.0, 'would': 1.0, 'have': 1.0, 'friends': 1.0, 'brought': 1.0, 'home': 1.0, 'didn': 1.0, 'ordered': 1.0, 'amazon': 1.0, 'middle': 1.0}
Word element => {'later': 1.0, 'days': 1.0, 'replacement': 2.0, 'that': 1.0, 'with': 1.0, 'up': 1.0, 'together': 1.0, 'line': 1.0, 'did': 1.0, 'on': 2.0, 'usual': 1.0, 'holes': 2.0, 'was': 2.0, 'because': 1.0, 'stars': 1.0, 'product': 1.0, 'not': 1.0, 'give': 1.0, 'two': 1.0, '4': 1.0, 'i': 3.0, 'his': 1.0, 'even': 1.0, 'temporarily': 1.0, 'and': 3.0, 'just': 1.0, 'by': 1.0, 'will': 1.0, 'bar': 2.0, 'fussiness': 1.0, 'above': 1.0, 'after': 1.0, 'can': 1.0, 'fine': 1.0, 'screw': 2.0, 'right': 1.0, 'received': 2.0, 'he': 3.0, 'it': 4.0, 'month': 1.0, 'amazon': 1.0, 'relieved': 1.0, 'a': 2.0, 's': 2.0, 'in': 3.0, 'great': 1.0, 'staring': 1.0, 'likes': 1.0, 'swing': 5.0, 'defective': 1.0, 'the': 11.0, 'at': 1.0, 'one': 2.0, 'sometime': 1.0, 'mobile': 1.0, 'be': 1.0, 'him': 1.0, 'moment': 1.0, 'if': 1.0, 'attached': 1.0, 'hates': 1.0, 'about': 1.0, 'today': 1.0, 'returns': 1.0, 'diversion': 1.0, 'went': 1.0, 'ride': 1.0, 'entirely': 1.0, 'this': 4.0, 'provided': 1.0, 'as': 1.0, 'sleep': 1.0, 'to': 2.0, 'point': 1.0, 'old': 1.0, 'makes': 1.0, 'my': 1.0, 'purchase': 1.0, 'worth': 1.0, 'sleeping': 1.0, 'very': 1.0}
Word element => {'go': 1.0, 'watching': 1.0, 'and': 2.0, 'week': 1.0, 'birds': 1.0, 'our': 1.0, 'for': 1.0, '8': 1.0, 'we': 1.0, 'made': 1.0, 'the': 2.0, '34': 2.0, 'far': 1.0, 'just': 1.0, 'round': 2.0, 'by': 1.0, 'napping': 1.0, 'buy': 1.0, 'old': 1.0, 'whether': 1.0, 'best': 1.0, 'son': 1.0, 'he': 2.0, 'it': 1.0, 's': 1.0, 'loves': 1.0, 'or': 1.0, 'chilling': 1.0}
Word element => {'lol': 1.0, 'in': 1.0, 'fit': 1.0, 'still': 1.0, 'could': 1.0, 'month': 1.0, '16': 1.0, 'wish': 1.0, 'just': 1.0, 'old': 1.0, 'i': 1.0, 'nights': 1.0, 'of': 1.0, 'us': 1.0, 'soothing': 1.0, 'are': 1.0, 'sounds': 1.0, 'warm': 1.0, 'a': 1.0, 'front': 1.0, 'very': 1.0, 'son': 1.0, 'life': 1.0, 'cozy': 1.0, 'so': 2.0, 'and': 4.0, 'swing': 2.0, 'that': 1.0, 'for': 1.0, 'love': 1.0, 'this': 2.0, 'it': 2.0, 'the': 2.0, 'great': 1.0, 'back': 1.0, 'fact': 1.0, 'my': 2.0, 'rocks': 1.0, 'saver': 1.0, 'did': 1.0, 'music': 1.0, 'nature': 1.0, 'many': 1.0, 'side': 2.0, 'to': 2.0, 'was': 2.0}
Word element => {'far': 1.0, 'needs': 1.0, 'basically': 1.0, 'most': 1.0, 'mentioned': 1.0, 'wont': 1.0, 'comment': 1.0, 'features': 1.0, 'minutes': 1.0, 'by': 1.0, 'put': 1.0, 'easy': 1.0, 'practical': 1.0, 'seem': 1.0, 'swings': 1.0, 'mobile': 1.0, 'there': 1.0, 'down': 1.0, 'enough': 2.0, 'slows': 1.0, 'born': 1.0, 'do': 3.0, 'drag': 1.0, 'worry': 1.0, 'blanket': 1.0, 'harm': 1.0, 'had': 1.0, 'an': 2.0, 'fits': 1.0, 'ton': 1.0, 'other': 5.0, 'well': 3.0, 'outlet': 1.0, 'grime': 1.0, 'on': 5.0, 'long': 1.0, 'floor': 1.0, 'setting': 1.0, 'instead': 1.0, 'lowest': 1.0, 'as': 2.0, 'airways': 1.0, 'me': 2.0, 'forward': 1.0, 'not': 4.0, 'head': 2.0, 'their': 3.0, 'i': 21.0, 'cause': 1.0, 'whether': 1.0, 'close': 1.0, 'or': 2.0, 'lush': 1.0, 'loves': 1.0, 'position': 1.0, 'that': 4.0, 'young': 1.0, 'everywhere': 1.0, 'problems': 1.0, 'because': 2.0, 'perfect': 1.0, 'more': 2.0, 'absolutely': 1.0, '5': 3.0, 'one': 2.0, 'lot': 1.0, 'just': 2.0, 'and': 13.0, 'lbs': 1.0, 'was': 6.0, 'speed': 1.0, 'so': 6.0, '8': 1.0, 'wrong': 1.0, 'daughter': 1.0, 'the': 22.0, 'even': 1.0, 'of': 5.0, 'she': 5.0, 'baby': 6.0, 'it': 26.0, 'recline': 1.0, 'with': 2.0, 'but': 5.0, 'find': 1.0, 'at': 2.0, 'babies': 3.0, 'soft': 1.0, 'this': 3.0, 'fall': 1.0, 'few': 1.0, 'would': 2.0, 'inclined': 1.0, 'you': 3.0, 'night': 1.0, 'myself': 1.0, 'fast': 1.0, 'things': 4.0, 'than': 4.0, '20': 1.0, 'all': 4.0, 'way': 1.0, 'we': 1.0, 'starlight': 1.0, 'reviews': 1.0, 'could': 2.0, 'will': 3.0, 't': 8.0, 'a': 12.0, 'small': 2.0, 'specify': 1.0, 'length': 1.0, 'newborns': 1.0, 'have': 6.0, 'flat': 3.0, 'wonderfully': 1.0, 'love': 1.0, 'for': 9.0, 'how': 1.0, 'especially': 1.0, 'use': 1.0, 'over': 3.0, 'work': 1.0, 'thing': 2.0, 'about': 2.0, 'rather': 2.0, 'wasn': 1.0, 'fine': 1.0, 'like': 1.0, 'did': 1.0, 'time': 1.0, 'together': 1.0, 'in': 8.0, 'main': 1.0, 'important': 1.0, 'swing': 5.0, 'content': 1.0, 'since': 1.0, 'day': 2.0, 'great': 1.0, 'if': 3.0, 'super': 1.0, 'don': 4.0, 'still': 1.0, 'can': 4.0, 'is': 14.0, 'turn': 1.0, 'let': 4.0, 'issue': 2.0, 'they': 4.0, 'sleep': 2.0, 'dome': 1.0, 'back': 1.0, 'probably': 1.0, 'lay': 3.0, 'pretty': 1.0, 'any': 1.0, 'your': 1.0, 'liability': 1.0, 'figure': 1.0, 'now': 1.0, 'worth': 1.0, 'its': 2.0, 'wiggle': 1.0, 'see': 1.0, 'out': 1.0, 'during': 2.0, 'reason': 1.0, 'options': 1.0, 'fisher': 3.0, 'price': 3.0, 'has': 2.0, 'to': 12.0, 'right': 1.0, 'two': 2.0, 'her': 5.0, 'little': 2.0, 'better': 2.0, 'think': 3.0, 'papasan': 1.0, 'cradle': 2.0, 'pain': 1.0, 'point': 3.0, 'need': 1.0, 'harness': 1.0, 'too': 2.0, '3': 1.0, 'read': 1.0, 'something': 1.0, 'people': 1.0, 'bring': 1.0, 'up': 1.0, 'want': 1.0, 'safest': 1.0, 'lamb': 1.0, 'able': 1.0, 'however': 1.0, 'get': 2.0, 'best': 1.0, 'n': 1.0, 'plug': 1.0, 'fabric': 1.0, 'into': 1.0, 'wall': 1.0, 'which': 1.0, 'doesn': 1.0, 'expensive': 1.0, 'those': 3.0, 'tray': 1.0, 'off': 1.0, 'picked': 1.0, 'anyways': 1.0, 'never': 1.0, 'really': 1.0, 'sake': 1.0, 'collect': 1.0, 'laying': 1.0, 'available': 1.0, 'clean': 1.0, 'my': 5.0, 'are': 2.0, 'around': 1.0, 'mirror': 1.0}
Word element => {'life': 1.0, 'remember': 1.0, 'pink': 1.0, 'won': 2.0, 'they': 1.0, 'there': 1.0, 'even': 1.0, 'then': 1.0, 'issue': 1.0, 'an': 1.0, 'children': 1.0, 'future': 1.0, 'intending': 1.0, 'are': 1.0, 'if': 2.0, 'boy': 1.0, 'so': 1.0, 'gender': 1.0, 'cozy': 1.0, 'put': 1.0, 'your': 1.0, 'keeps': 1.0, 'plush': 1.0, 'back': 1.0, 'use': 1.0, 'front': 1.0, 'side': 2.0, 'later': 1.0, 'from': 1.0, 'or': 1.0, 'motion': 1.0, 'swinging': 1.0, 'switch': 1.0, 'comfortable': 2.0, 'nice': 1.0, 'particular': 1.0, 'can': 1.0, 'but': 2.0, 'is': 3.0, 'had': 1.0, 'fisher': 2.0, 'up': 2.0, 'for': 1.0, 'lamb': 1.0, 'swing': 2.0, 'price': 2.0, 'ended': 1.0, 'baby': 3.0, 'the': 5.0, 'happy': 1.0, 't': 2.0, 'could': 1.0, 's': 3.0, 'we': 2.0, 'a': 3.0, 'cradle': 1.0, 'charm': 1.0, 'little': 2.0, 'very': 1.0, 'to': 3.0, 'any': 1.0, 'as': 1.0, 'similar': 1.0, 'and': 5.0, 'neutral': 1.0, 'away': 1.0, 'know': 1.0, 'downside': 1.0, 'which': 2.0, 'like': 1.0, 'it': 6.0, 'this': 1.0, 'another': 1.0, 'my': 2.0, 'often': 1.0, 'color': 1.0, 'one': 1.0, 'only': 1.0, 'works': 1.0, 'do': 1.0, 'happens': 1.0, 'previously': 1.0, 'girl': 2.0, 'again': 1.0, 'when': 1.0, 'you': 4.0, 'gave': 1.0, 'that': 4.0, 'not': 1.0, 'needing': 1.0, 'sweetie': 1.0, 'should': 1.0, 'be': 2.0, 'pretty': 1.0, 'itself': 1.0, 'in': 4.0, 'thing': 1.0}
Word element => {'penny': 1.0, 'every': 1.0, 'worth': 1.0, 'pricey': 1.0, 'bit': 1.0, 'horizontal': 1.0, 'completely': 1.0, 'back': 1.0, 'daughter': 1.0, 'when': 1.0, 'gentle': 1.0, 'quickly': 1.0, 'with': 1.0, 'one': 1.0, 'swing': 1.0, 'cuddly': 1.0, 'without': 1.0, 'the': 4.0, 'flat': 1.0, 'newborn': 1.0, 'in': 2.0, 'my': 2.0, 'and': 3.0, 'away': 1.0, 'shape': 1.0, 'rocking': 1.0, 'loves': 1.0, 'that': 1.0, 'granddaughter': 1.0, 'sleep': 2.0, 'chatter': 1.0, 'to': 4.0, 'not': 1.0, 'just': 1.0, 'laid': 1.0, 'but': 1.0, 'music': 1.0, 'like': 1.0, 'lay': 2.0, 'being': 2.0, 'combined': 1.0, 'lulls': 1.0, 'her': 2.0, 'little': 1.0, 'gently': 1.0, 'it': 2.0, 'effectively': 1.0, 'she': 2.0, 'a': 1.0, 'discovered': 1.0, 's': 2.0, 'did': 1.0, 'awake': 1.0, 'likes': 1.0, '34': 2.0, 'this': 1.0, 'soft': 1.0, 'allows': 1.0}
Word element => {'gift': 1.0, 'a': 1.0, 'for': 1.0, 'problems': 1.0, 'any': 1.0, 'i': 1.0, 'works': 1.0, 'without': 1.0, 'it': 1.0, 'shipped': 1.0, 'would': 1.0, 'was': 2.0, 'this': 2.0, 'product': 2.0, 'buy': 1.0, 'again': 1.0, 'on': 1.0, 'time': 1.0}
Word element => {'and': 1.0, 'love': 1.0, 'we': 2.0, 'be': 1.0, 'weight': 1.0, 'soon': 1.0, 'as': 2.0, 'beginning': 1.0, 'gain': 1.0, 'the': 1.0, 'will': 2.0, 'but': 1.0, 'helped': 1.0, 'your': 1.0, 'slightly': 1.0, 'just': 2.0, 'a': 2.0, 'is': 1.0, 'swing': 2.0, 'perfect': 1.0, 'newborn': 1.0, 'soothe': 1.0, 'our': 1.0, 'fussing': 1.0, 'lo': 2.0, 'to': 1.0, 'was': 1.0, 'at': 1.0, 'recommend': 1.0, 'fantastic': 1.0, 'lot': 1.0, 'may': 1.0, 'us': 1.0, 'when': 1.0, 'too': 1.0, 'with': 1.0, 'it': 5.0, 'this': 1.0, 'he': 1.0, 'hard': 1.0}
Word element => {'moms': 1.0, 'that': 2.0, 'been': 2.0, 'loves': 1.0, 'apart': 1.0, 'work': 1.0, 'different': 1.0, 'mirror': 1.0, 'nap': 1.0, 'would': 2.0, 'new': 1.0, 'place': 1.0, 'the': 4.0, 'music': 1.0, 'his': 2.0, '6lbs': 1.0, 'months': 1.0, 'mobile': 1.0, 'and': 7.0, 'baby': 2.0, 'a': 4.0, 's': 1.0, 't': 1.0, 'loved': 1.0, 'has': 5.0, 'lull': 1.0, 'but': 1.0, 'napping': 1.0, 'i': 2.0, 'well': 1.0, 'received': 1.0, '6': 1.0, 'only': 1.0, 'him': 3.0, 'it': 8.0, 'this': 2.0, 'shower': 1.0, 'transitioned': 1.0, 'great': 1.0, 'until': 1.0, 'my': 1.0, 'takes': 1.0, 'up': 1.0, 'don': 1.0, 'means': 1.0, 'sleep': 1.0, 'to': 7.0, 'as': 4.0, 'now': 1.0, 'away': 1.0, 'limit': 1.0, 'worked': 1.0, 'day': 1.0, 'definitely': 1.0, 'son': 1.0, 'still': 1.0, 'he': 3.0, 'love': 1.0, 'for': 2.0, 'batteries': 1.0, 'in': 2.0, 'very': 2.0, 'plugs': 1.0, 'little': 1.0, 'easy': 1.0, 'we': 2.0, 'moving': 1.0, 'take': 1.0, 'much': 1.0, 'put': 1.0, 'on': 1.0, 'harder': 1.0, 'is': 1.0, 'about': 1.0, 'max': 2.0, 'quite': 1.0, 'one': 1.0, 'greatest': 1.0, 'happy': 2.0, 'weight': 1.0, 'noticing': 1.0, 'swing': 1.0, 'personally': 1.0, 'even': 1.0, 'power': 1.0, 'so': 1.0, 'have': 1.0, 'finally': 1.0, 'crib': 1.0, 'use': 1.0, 'used': 1.0, 'gift': 1.0, 'made': 1.0, 'which': 1.0, 'from': 2.0, 'mama': 1.0, 'together': 1.0, 'recommend': 1.0}
Word element => {'be': 1.0, 'will': 1.0, 'grown': 1.0, 'out': 1.0, 'has': 1.0, 'storing': 1.0, 'but': 1.0, 'space': 1.0, 'up': 2.0, 'not': 2.0, 'want': 1.0, 'you': 1.0, 'compact': 2.0, 'also': 1.0, 'arrived': 1.0, 'my': 2.0, 'stores': 1.0, 'several': 1.0, 'about': 1.0, 'day': 1.0, 'cheaper': 1.0, 'sound': 1.0, 'don': 1.0, 'home': 1.0, 'looking': 1.0, 'using': 1.0, 'which': 1.0, 'a': 4.0, 's': 1.0, 'might': 1.0, 'after': 2.0, 'so': 2.0, 'price': 1.0, 'mirror': 1.0, 'does': 3.0, 'currently': 1.0, 'bought': 1.0, 'mobile': 1.0, 'house': 2.0, 'swing': 3.0, 'it': 7.0, 'colorful': 1.0, 'this': 4.0, 'local': 1.0, 'am': 2.0, 'when': 1.0, 'our': 2.0, 'to': 5.0, 'had': 1.0, 'decided': 2.0, 'grinding': 1.0, 'used': 2.0, 'broke': 1.0, 'i': 5.0, 'like': 1.0, 'care': 1.0, 'grandma': 1.0, 'apparently': 1.0, 'for': 2.0, 'was': 2.0, 'at': 4.0, 'is': 4.0, 'more': 1.0, 'get': 1.0, 'grandson': 2.0, 'know': 1.0, 'easy': 1.0, 'and': 3.0, 'one': 3.0, 'too': 2.0, 'expected': 1.0, 't': 1.0, 'replacement': 1.0, 'likes': 1.0, 'take': 1.0, 'we': 2.0, 'surprising': 1.0, 'put': 1.0, 'purchase': 1.0, 'only': 1.0, 'complaint': 1.0, 'have': 2.0, 'because': 2.0, 'that': 1.0, 'challenge': 1.0, 'loves': 2.0, 'amazon': 1.0, 'been': 1.0, 'fold': 1.0, 'he': 3.0, 'motor': 1.0, 'makes': 1.0, 'son': 1.0, 'softness': 1.0, 'through': 1.0, 'watch': 1.0, 'together': 1.0, 'were': 1.0, 'the': 10.0, 'of': 1.0, 'cradle': 1.0, 'very': 1.0, 'himself': 1.0, 'in': 1.0, 'considerably': 1.0, 'around': 1.0, 'his': 1.0, 'music': 1.0, 'if': 3.0, 'really': 1.0, 'cares': 1.0, 'birdies': 1.0, 'flying': 1.0, 'better': 1.0, 'they': 1.0}
Word element => {'seats': 1.0, 'bouncy': 1.0, 'the': 1.0, 'on': 1.0, 'relying': 1.0, 'instead': 1.0, 'in': 1.0, 'plugs': 1.0, 'like': 1.0, 'we': 1.0, 'are': 2.0, 'twins': 1.0, 'her': 1.0, 'go': 1.0, 'available': 1.0, 'there': 1.0, 'of': 2.0, 'fisher': 1.0, 'ready': 1.0, 'has': 1.0, 'cradle': 1.0, 'that': 2.0, 'their': 1.0, 'swingboth': 1.0, 'price': 1.0, 'love': 1.0, 'one': 1.0, 'snugabunny': 1.0, 'for': 2.0, 'too': 1.0, 'coming': 1.0, 'daughter': 1.0, 'my': 3.0, 'babies': 2.0, 'have': 1.0, 'batteries': 1.0, 'little': 1.0, 'swing': 1.0, 'matching': 1.0, 'sons': 1.0, 'and': 1.0, 'n': 1.0, 'this': 2.0, 'it': 2.0, 'now': 1.0, 'to': 1.0}
Word element => {'the': 1.0, 'enjoys': 1.0, 'grandson': 1.0, 'reclines': 1.0, 'to': 1.0, 'very': 1.0, 'from': 1.0, 'forth': 1.0, 'happy': 1.0, 'grandchild': 1.0, 'bought': 1.0, 'swing': 3.0, 'batteries': 1.0, 'that': 1.0, 'our': 1.0, 'side': 2.0, 'second': 1.0, 'through': 1.0, 'crazy': 1.0, 'purchase': 1.0, 'required': 1.0, 'and': 1.0, 'like': 1.0, 'mirror': 1.0, 'we': 2.0, 'ran': 1.0, 'them': 1.0, 'for': 2.0, 'love': 1.0, 'with': 1.0, 'first': 1.0, 'this': 2.0, 'moves': 1.0, 'naps': 1.0, 'back': 1.0, 'or': 1.0}
Word element => {'recommend': 1.0, 'great': 1.0, 'helps': 1.0, 'hope': 1.0, 'out': 1.0, 'baby': 1.0, 'off': 1.0, 'turn': 1.0, 'also': 1.0, 'motor': 1.0, 'experienced': 1.0, 'haven': 1.0, 'to': 5.0, 'our': 2.0, 'product': 1.0, 'child': 1.0, 'on': 2.0, 'your': 1.0, 'make': 1.0, 's': 1.0, 'a': 3.0, 'depending': 1.0, 'trouble': 1.0, 'reclined': 1.0, 'that': 1.0, 'problems': 1.0, 'varied': 1.0, 'upright': 1.0, 'adjustable': 1.0, 'soft': 1.0, 'highly': 1.0, 'this': 1.0, 'back': 1.0, 'an': 1.0, 'control': 1.0, 'colored': 1.0, 'and': 8.0, 'very': 2.0, 'brightly': 1.0, 'read': 1.0, 'asleep': 1.0, 'side': 2.0, 'stare': 1.0, 'forth': 1.0, 'has': 2.0, 't': 1.0, 'likes': 1.0, 'position': 1.0, 'down': 1.0, 've': 1.0, 'padded': 1.0, 'comfortable': 1.0, 'big': 1.0, 'little': 2.0, 'nice': 1.0, 'no': 1.0, 'thing': 1.0, 'motors': 1.0, 'before': 2.0, 'is': 5.0, 'at': 1.0, 'keep': 1.0, 'did': 1.0, 'well': 1.0, 'i': 6.0, 'mobile': 2.0, 'powered': 1.0, 'am': 1.0, 'lot': 1.0, 'one': 2.0, 'happy': 1.0, 'swing': 3.0, 'taking': 1.0, 'accommodate': 1.0, 'catch': 1.0, 'or': 2.0, 'falling': 1.0, 'in': 1.0, 'choosing': 1.0, 'it': 5.0, 'these': 1.0, 'adjustments': 1.0, 'my': 1.0, 'may': 1.0, 'seem': 1.0, 'minor': 1.0, 'music': 1.0, 'up': 1.0, 'change': 1.0, 'they': 1.0, 'take': 1.0, 'we': 1.0, 'difference': 1.0, 'research': 1.0, 'its': 1.0, 'quickly': 1.0, 'preference': 1.0, 'only': 1.0, 'features': 1.0, 'power': 1.0, 'run': 1.0, 'wonderful': 1.0, 'adapter': 1.0, 'care': 1.0, 'rather': 1.0, 'like': 1.0, 'swings': 1.0, 'using': 1.0, 'but': 2.0, 'ac': 1.0, 'volume': 1.0, 'with': 2.0, 'range': 1.0, 'so': 1.0, 'can': 1.0, 'speed': 1.0, 'd': 1.0, 'mirror': 1.0, 'animals': 1.0, 'more': 1.0, 'babies': 1.0, 'the': 8.0, 'of': 2.0, 'attention': 1.0}
Word element => {'policy': 1.0, 'service': 1.0, '1': 1.0, 'within': 1.0, 'was': 1.0, 'year': 1.0, 'as': 1.0, 'swing': 1.0, 'replaced': 1.0, 'just': 1.0, 'called': 1.0, '8': 1.0, 'for': 1.0, 'daughter': 1.0, 'with': 1.0, 'it': 3.0, 'amazon': 1.0, 'used': 1.0, 'their': 1.0, 'our': 1.0, 'they': 1.0, 'grandson': 1.0, 'working': 1.0, 'preemie': 1.0, 'my': 1.0, 'motor': 1.0, 'quit': 1.0, 'months': 1.0, 'won': 1.0, 'the': 1.0, 't': 1.0, 'replace': 1.0, 'fisher': 1.0, 'price': 1.0}
Word element => {'return': 1.0, 'snuggly': 1.0, 'soft': 1.0, 'this': 2.0, 'with': 1.0, 'fabric': 1.0, 'sound': 1.0, 'swing': 2.0, 'for': 1.0, 'very': 1.0, 'pros': 1.0, 'mobile': 1.0, 'movement': 1.0, 'cons': 1.0, 'the': 1.0, 'broke': 1.0, 'almost': 1.0, 'immediately': 1.0, 'motor': 1.0, 'causing': 1.0, 'and': 1.0, 'me': 1.0, 'lights': 1.0, 'to': 1.0}
Word element => {'it': 1.0, 'could': 1.0, 'use': 2.0, 'all': 1.0, 'months': 1.0, 'the': 1.0, 'no': 1.0, 'motor': 1.0, 'my': 1.0, 'of': 1.0, '6': 1.0, 'swing': 1.0, 'grandchildren': 1.0, 'that': 1.0, 'baby': 1.0, 'but': 1.0, 'disappointing': 1.0, 'nice': 1.0, 'very': 1.0, 'longer': 1.0, 'works': 1.0, 'after': 1.0, 'so': 1.0, 'i': 1.0, 'was': 1.0, 'hoping': 1.0}
Word element => {'overall': 1.0, 'death': 1.0, 'star': 1.0, 'little': 1.0, 'but': 2.0, 'issue': 1.0, 'these': 1.0, 'good': 1.0, 'about': 1.0, 'burn': 1.0, 'did': 1.0, 'assemblycons': 1.0, 'rattleeasy': 1.0, 'bunny': 1.0, 'things': 1.0, 'dozy': 1.0, 'out': 1.0, 'soquick': 1.0, 'think': 1.0, 'seems': 1.0, 'operationcomfy': 1.0, 'd': 3.0, 'ate': 1.0, 'hand': 1.0, 'only': 1.0, 'battery': 1.0, 'first': 1.0, 'motorcute': 1.0, 'up': 1.0, 'back': 1.0, 'with': 2.0, 'power': 1.0, 'volt': 1.0, 'batteries': 2.0, '12': 1.0, 'info': 1.0, 'an': 2.0, 'all': 2.0, 'our': 1.0, 'to': 5.0, 'secure': 1.0, 'failed': 1.0, 'easy': 1.0, 'bit': 1.0, 'outreally': 1.0, 'so': 3.0, 'folks': 1.0, 'for': 3.0, 'onto': 1.0, 'fisher': 1.0, 'a': 13.0, 'help': 1.0, 'covered': 1.0, 'swing': 8.0, 'replace': 1.0, 'one': 1.0, 'happy': 1.0, 'that': 2.0, 'gave': 1.0, 'been': 2.0, 'it': 5.0, 'went': 1.0, 'as': 2.0, 'silent': 1.0, 'instead': 1.0, 'replaced': 1.0, 'dark': 1.0, 'early': 1.0, 'head': 1.0, 'ratequiet': 1.0, 'from': 2.0, 'later': 1.0, 'though': 1.0, 'date': 1.0, 'part': 2.0, 'hard': 1.0, 't': 2.0, 'replacement': 4.0, 'price': 1.0, 'year': 1.0, 'day': 1.0, 'sent': 1.0, 'pros': 1.0, 'son': 1.0, 'sure': 1.0, 'warranty': 1.0, 'at': 1.0, 'is': 1.0, 'more': 1.0, 'recommend': 1.0, 'were': 1.0, 'of': 3.0, 'the': 11.0, 'customer': 1.0, 'he': 1.0, 'motor': 6.0, 'was': 5.0, 'its': 1.0, 'much': 1.0, 'do': 1.0, 'by': 1.0, 'this': 1.0, 'few': 1.0, 'just': 1.0, 'needed': 1.0, 'quite': 1.0, 'carrier': 1.0, 'last': 1.0, 'me': 3.0, 'wires': 1.0, '1': 1.0, 'lose': 1.0, 'and': 8.0, 'down': 1.0, 'code': 1.0, 'they': 3.0, 'unit': 3.0, 'hassle': 1.0, 'arrived': 1.0, 'hadn': 1.0, 'in': 1.0, 'if': 1.0, 'service': 2.0, 'bigger': 1.0, 'burnt': 1.0, 'than': 1.0, 'i': 5.0, 'box': 1.0, 'expected': 2.0, 'some': 1.0, 'when': 1.0, 'what': 1.0, 'had': 3.0, 'whole': 1.0, 'time': 1.0, 'new': 2.0, 'would': 1.0, 'days': 1.0, 'swap': 1.0, 'get': 1.0, 'legs': 1.0, 'baby': 1.0, 'mobile': 1.0, 'didn': 1.0, 'alarming': 1.0, 'expect': 1.0, 'loves': 1.0, 'replacing': 1.0, 'be': 2.0, 'have': 1.0, 'consuming': 1.0, 'kudos': 1.0, 'on': 1.0}
Word element => {'room': 1.0, 'corner': 1.0, 'perfect': 1.0, 'feel': 1.0, 'bases': 1.0, 'smaller': 1.0, 'outweigh': 1.0, 'area': 1.0, 'quite': 1.0, 'does': 1.0, 'would': 1.0, 'base': 1.0, 'worried': 1.0, 'was': 1.0, 'up': 2.0, 'breaks': 1.0, 'motion': 1.0, 'toe': 1.0, 'loves': 1.0, 's': 3.0, 't': 1.0, 'a': 5.0, 'head': 1.0, 'like': 2.0, 'downside': 1.0, 'annoying': 1.0, 'it': 10.0, 'isn': 1.0, 'his': 1.0, 'music': 2.0, '2': 1.0, 'but': 2.0, 'to': 4.0, 'had': 2.0, 'purchased': 1.0, 'problems': 1.0, 'monotony': 1.0, 'that': 3.0, 'because': 1.0, 'than': 1.0, 'mouth': 1.0, 'both': 1.0, 'best': 1.0, 'large': 1.0, 'mirror': 1.0, 'baby': 4.0, 'for': 2.0, 'i': 8.0, 'spa': 1.0, 'swing': 3.0, 'adjustable': 1.0, 'all': 1.0, 'other': 2.0, 'more': 2.0, 'great': 1.0, 'swings': 1.0, 'occupied': 1.0, 'of': 3.0, 'the': 14.0, 'sounds': 1.0, 'also': 2.0, 'seems': 1.0, 'will': 2.0, 'on': 1.0, 'think': 2.0, 'sites': 1.0, 'touch': 1.0, 'how': 1.0, 'rocking': 1.0, 'this': 2.0, 'bit': 1.0, 'found': 1.0, 'be': 1.0, 'nature': 1.0, 'take': 1.0, 'swinging': 3.0, 'we': 1.0, 'reviews': 1.0, 'side': 2.0, 'amazon': 1.0, 'activated': 1.0, 'front': 1.0, 'perks': 1.0, 'content': 1.0, 'and': 4.0, 'm': 1.0, 'in': 3.0, 'while': 1.0, 'facing': 1.0, 'is': 3.0, 'at': 1.0, 'from': 1.0, 'daycare': 1.0, 'recently': 1.0, 'so': 3.0, 'first': 1.0, 'months': 1.0, 'too': 1.0, 'one': 1.0, 'quiet': 1.0, 'no': 1.0, 'with': 3.0, 'slightest': 1.0, 'not': 1.0, 'just': 1.0, 'stops': 1.0, 'trying': 1.0, 'pacifier': 1.0, 'surface': 1.0, 'day': 1.0, 'stop': 1.0, 'sure': 1.0, 'put': 1.0, 'much': 1.0, 'stopping': 1.0, 'affect': 1.0, 'love': 1.0, 'he': 2.0, 'motor': 2.0, 'far': 1.0, 've': 1.0}
Word element => {'recommendations': 1.0, 'highest': 1.0, 'entertained': 1.0, 'happy': 1.0, 'so': 1.0, 'being': 1.0, 'watching': 1.0, 'some': 1.0, 'still': 1.0, 'power': 1.0, 'higher': 1.0, 'you': 1.0, 'life': 1.0, 'past': 1.0, 'born': 1.0, 'wonderful': 2.0, 'at': 2.0, 'loves': 3.0, 'provided': 1.0, 'difficult': 1.0, 'that': 4.0, 'use': 1.0, 'benefits': 1.0, 'happiest': 1.0, 'surface': 1.0, 'day': 1.0, 'short': 1.0, '10': 1.0, 'mirrored': 1.0, 'would': 3.0, 'weeks': 2.0, 'thank': 1.0, 'assemble': 1.0, 'takes': 1.0, 'in': 1.0, 'her': 7.0, 'rescue': 1.0, 'little': 1.0, 'enjoy': 1.0, 'very': 4.0, 'arms': 1.0, 'and': 19.0, 'left': 1.0, 'sounds': 2.0, 'appreciate': 1.0, 'rocked': 1.0, 'myself': 1.0, 'wanted': 1.0, 'not': 4.0, 'up': 2.0, 'reflection': 1.0, 'by': 3.0, 'through': 1.0, 'but': 5.0, 'tired': 1.0, 'night': 1.0, 'with': 4.0, 'direction': 1.0, 'motion': 2.0, 'starts': 1.0, 'baby': 7.0, 'she': 9.0, 'amount': 2.0, 'on': 2.0, 'when': 1.0, 'outweigh': 1.0, 'sore': 1.0, 'swing': 8.0, '8': 2.0, 'relatively': 1.0, 'this': 5.0, 'highly': 2.0, 'first': 2.0, 'before': 1.0, 'happiness': 1.0, 'changes': 1.0, 'settings': 1.0, 'more': 3.0, 'minutes': 1.0, 'block': 1.0, 'peace': 2.0, 'multitude': 1.0, 'us': 2.0, 'i': 4.0, 'well': 3.0, 'later': 1.0, 'its': 2.0, 'much': 2.0, 'newborn': 1.0, 'state': 1.0, 'than': 1.0, 'bit': 1.0, 'easy': 2.0, 'fussy': 1.0, 'have': 2.0, 'how': 2.0, 'enjoys': 1.0, 'our': 9.0, 'enough': 1.0, 'loved': 1.0, 'follows': 1.0, 'recommended': 1.0, 'household': 1.0, 'even': 1.0, 'of': 10.0, 'the': 24.0, 'longer': 1.0, 'faces': 1.0, 'quiet': 2.0, 'during': 1.0, 'produced': 1.0, 'no': 2.0, 'value': 1.0, 'all': 2.0, 'sleep': 4.0, 'back': 2.0, 'daugher': 2.0, 'to': 18.0, 'has': 3.0, 'puts': 1.0, 'recommendation': 1.0, 'them': 1.0, 'offered': 1.0, 'thoroughly': 1.0, 'which': 2.0, 'side': 4.0, 'good': 2.0, 'willing': 1.0, 'mobile': 2.0, 'adorable': 1.0, 'brought': 1.0, 'could': 1.0, 'we': 4.0, 'calm': 1.0, 'swinging': 3.0, 'nap': 2.0, 'a': 6.0, 'be': 5.0, 'it': 7.0, 'love': 1.0, 'is': 7.0, 'can': 2.0, 'speed': 1.0, 'from': 1.0, 'what': 1.0, 'front': 2.0, 'fisher': 1.0, 'or': 1.0, 'safe': 1.0, 'daughter': 1.0, 'time': 1.0, 'did': 1.0, 'girl': 2.0, 'book': 1.0, 'care': 1.0, 'setting': 2.0, 'also': 3.0, 'harness': 1.0, 'comfortable': 2.0, 'my': 1.0, 'room': 1.0, 'snuggabunny': 1.0, 'design': 1.0, 'was': 2.0, 'beyond': 1.0, 'money': 2.0, 'set': 1.0, 'development': 1.0, 'only': 2.0, 'usually': 1.0, 'for': 5.0, 'purchase': 1.0, 'negative': 1.0, 'store': 1.0, 'one': 1.0, 'feel': 1.0, 'gets': 2.0, 'adjust': 1.0, 'howver': 1.0, 'late': 1.0, 'karp': 1.0, 'relax': 1.0, 'am': 1.0, 'appreciates': 1.0, 'better': 1.0, 'less': 1.0, 'as': 5.0, 'coming': 1.0, 'lowest': 1.0, 'learns': 1.0, 'about': 1.0, 'around': 1.0, 'coos': 1.0, 'stimulated': 1.0, 'variety': 1.0, 'convenient': 1.0, 'full': 1.0, 'sleeping': 1.0, 'entertains': 1.0, 'decided': 1.0, 'cannot': 1.0, 'dr': 1.0, 'additionally': 1.0, 'harvey': 1.0, 'author': 1.0, 'been': 2.0, 'worth': 1.0, 'finding': 1.0, 'colicky': 2.0, 'impressed': 1.0, 'force': 1.0, 'price': 1.0, 'products': 1.0, 'husband': 1.0, 'purchased': 1.0, 'great': 1.0}
Word element => {'that': 1.0, 'mirror': 1.0, 'he': 2.0, 'when': 1.0, '30': 1.0, 'within': 1.0, 'together': 1.0, 'and': 5.0, 'awake': 1.0, 'did': 1.0, 'i': 1.0, '30min': 1.0, 'have': 1.0, 'easy': 2.0, 'all': 2.0, 'least': 1.0, 'to': 2.0, 'was': 1.0, 'features': 1.0, 'so': 2.0, 'love': 1.0, 'for': 1.0, 'fascinated': 1.0, 'it': 9.0, 'with': 2.0, '45min': 1.0, 'batteries': 1.0, 'myself': 1.0, 'the': 3.0, 'round': 1.0, 'offers': 1.0, 'birds': 1.0, 'plus': 1.0, 'last': 1.0, 'clean': 1.0, 'by': 1.0, 'use': 2.0, 'which': 1.0, 'everyday': 1.0, 'about': 2.0, 'baby': 1.0, '2months': 1.0, 'far': 1.0, 'soundly': 1.0, 'at': 1.0, 'once': 1.0, 'go': 1.0, 's': 2.0, 'we': 2.0, 'a': 1.0, '15': 1.0, 'day': 1.0, 'my': 1.0, 'around': 1.0, 'finished': 1.0, 'sleeps': 1.0, 'put': 1.0, 'on': 1.0}
Word element => {'far': 1.0, 'problems': 1.0, 'doing': 1.0, 'while': 1.0, 'the': 2.0, 'around': 1.0, 'can': 1.0, 'we': 3.0, 'so': 2.0, 'allows': 1.0, 'could': 1.0, 'wife': 1.0, 'entertains': 1.0, 'parents': 1.0, 'time': 1.0, 've': 1.0, 'newborn': 1.0, 'had': 1.0, 'to': 2.0, 'not': 2.0, 'are': 1.0, 're': 1.0, 'my': 1.0, 'no': 1.0, 'things': 1.0, 'at': 1.0, 'let': 1.0, 'i': 1.0, 'us': 2.0, 'done': 1.0, 'get': 2.0, 'and': 2.0, 'our': 1.0, 'but': 1.0, 'house': 1.0, 'put': 2.0, 'him': 3.0, 'down': 2.0, 'all': 1.0, 'with': 1.0, 'it': 1.0, 'only': 1.0, 'first': 1.0, 'this': 1.0, 'swing': 2.0}
Word element => {'reviews': 1.0, 'good': 1.0, 'the': 1.0, 'do': 1.0, 'always': 1.0, 'remember': 1.0, 'it': 5.0, 'this': 1.0, 'in': 2.0, 'november': 1.0, 'really': 1.0, 'until': 1.0, 'not': 2.0, 'so': 1.0, 'however': 1.0, 'am': 1.0, 'fast': 1.0, 'baby': 2.0, 'due': 1.0, 'have': 1.0, 'my': 1.0, 'your': 1.0, 'put': 2.0, 'husband': 1.0, 'was': 1.0, 'how': 1.0, 'received': 1.0, 'i': 3.0, 'battery': 1.0, 'and': 5.0, 'our': 1.0, 'to': 2.0, 'as': 4.0, 'from': 1.0, 'read': 1.0, 'very': 1.0, 'a': 4.0, 'research': 1.0, 'gift': 1.0, 'easy': 1.0, 'yet': 1.0, 'plug': 1.0, 'option': 1.0, 'lot': 1.0, 'together': 1.0, 'well': 1.0, 'has': 2.0, 'bad': 1.0, 'cord': 1.0, 'far': 1.0, 'sturdy': 1.0, 'shower': 1.0, 'of': 1.0, 'options': 1.0, 'music': 1.0, 'seems': 1.0, 'swings': 1.0}
Word element => {'so': 1.0, 'time': 1.0, 'months': 1.0, '5': 1.0, 'my': 1.0, 'for': 1.0, 'wonderful': 1.0, 'minutes': 1.0, 'have': 1.0, 'thing': 1.0, 'fall': 1.0, 'extra': 1.0, 'it': 1.0, 'with': 1.0, 'this': 1.0, '2': 1.0, 't': 1.0, 'to': 2.0, 'asleep': 1.0, 'took': 1.0, 'old': 1.0, 'i': 2.0, 'don': 1.0, 'know': 1.0, 'works': 1.0, 'what': 1.0, 'do': 1.0}
Word element => {'every': 1.0, 'worth': 1.0, 'but': 1.0, 'item': 1.0, 'pricey': 1.0, 'directions': 1.0, 'different': 1.0, 'go': 1.0, 'be': 1.0, 'was': 1.0, 'to': 4.0, 'music': 1.0, 'being': 1.0, 'in': 1.0, 'seems': 1.0, 'and': 2.0, 'like': 2.0, 'lot': 1.0, 'a': 2.0, 'the': 3.0, 'soothing': 1.0, 'my': 1.0, 'it': 2.0, 'i': 2.0, 'penny': 1.0, 'feature': 1.0, 'both': 1.0, 'has': 1.0, 'entertaining': 1.0, 'son': 1.0, 'really': 1.0, 'of': 1.0, 'able': 1.0, 'turn': 1.0, 'been': 1.0, 'swing': 1.0}
Word element => {'featurs': 1.0, 'use': 1.0, 'just': 1.0, 'sleep': 1.0, 'we': 1.0, 'and': 2.0, 'like': 1.0, 'son': 1.0, 'this': 1.0, 'with': 1.0, 'ago': 1.0, 'a': 1.0, 'calm': 1.0, 'months': 1.0, 'thing': 1.0, 'crazy': 1.0, 'had': 1.0, 'to': 1.0, 'music': 1.0, '2': 1.0, 'the': 1.0, 'puts': 1.0, 'him': 2.0, 'keeps': 1.0}
Word element => {'apart': 1.0, 'fell': 1.0, 'toss': 1.0, 'before': 1.0, 'month': 1.0, 'for': 1.0, 'old': 1.0, 'year': 1.0, '4': 1.0, 'as': 1.0, 'options': 1.0, 'sound': 1.0, 'up': 1.0, 'fade': 1.0, 'reviewers': 1.0, 'there': 1.0, 'day': 1.0, 'go': 1.0, 'we': 4.0, 'a': 4.0, 's': 1.0, 'with': 1.0, 'volume': 1.0, 'loves': 2.0, 'into': 1.0, 'plugs': 1.0, 'like': 2.0, 'good': 1.0, 'side': 2.0, 'which': 1.0, 'that': 3.0, 'easily': 2.0, 'when': 1.0, 'times': 1.0, 'together': 1.0, 'daughter': 3.0, 'here': 1.0, 'bonus': 1.0, 'be': 1.0, 'once': 1.0, 'ordered': 2.0, 'swing': 4.0, 'or': 1.0, '29': 1.0, 'born': 1.0, 'four': 1.0, 'but': 2.0, 'came': 1.0, 'dec': 1.0, 'wider': 1.0, 'i': 5.0, 'push': 2.0, 'night': 1.0, 'to': 7.0, 'our': 4.0, 'was': 3.0, 'away': 1.0, 'and': 6.0, 'right': 1.0, 'are': 1.0, 'background': 1.0, 'too': 1.0, 'one': 1.0, 'forward': 1.0, 'put': 1.0, 'box': 1.0, 'shipping': 1.0, 'of': 1.0, 'the': 14.0, 'doing': 1.0, 'it': 11.0, 'had': 3.0, 'type': 1.0, 'thing': 2.0, 'no': 1.0, 'adjusted': 1.0, 'also': 2.0, 'batteries': 1.0, 'is': 3.0, 'music': 1.0, 'around': 1.0, 'disappointing': 1.0, 'easy': 2.0, 'late': 1.0, 'adjust': 1.0, 'played': 1.0, 'some': 1.0, 'other': 1.0, 've': 1.0, 'move': 1.0, 'squeak': 1.0, 'this': 1.0, 'few': 1.0, 'stuff': 1.0, 'just': 2.0, 'legs': 3.0, 'house': 1.0, 'backward': 1.0, 'enough': 1.0, 'out': 2.0, 'stops': 1.0, 'remember': 1.0, 'have': 1.0, 'really': 1.0, 'fold': 1.0, 'far': 1.0, 'love': 1.0, 'm': 1.0, 'in': 1.0, 'can': 3.0, 'speed': 1.0, 'so': 1.0}
Word element => {'no': 1.0, 'so': 1.0, 'have': 1.0, 'bouncy': 1.0, 'the': 2.0, 'love': 1.0, 'line': 1.0, 'this': 1.0, 'it': 2.0, 'going': 1.0, 'batteries': 1.0, 'swing': 1.0, 'in': 1.0, 'also': 1.0, 's': 1.0, 'i': 1.0, 'was': 1.0, 'a': 1.0, 'expensive': 1.0, 'down': 1.0, 'hand': 1.0, 'matching': 1.0, 'me': 1.0, 'and': 1.0, 'still': 1.0, 'plugs': 1.0, 'seat': 1.0, 'strong': 1.0, 'plus': 1.0}
Word element => {'problem': 1.0, 'be': 1.0, 'should': 1.0, 'dying': 1.0, 'quite': 1.0, 'since': 1.0, 'great': 1.0, 'read': 1.0, 'end': 1.0, 'able': 1.0, 'you': 1.0, 'therefore': 1.0, 'your': 1.0, 's': 1.0, 'ordered': 1.0, 'send': 1.0, 'about': 1.0, 'decided': 1.0, 'troubleshooting': 1.0, 'through': 1.0, 'did': 1.0, 'getting': 1.0, 'best': 1.0, 'stare': 1.0, 'in': 5.0, 'after': 1.0, 'at': 1.0, 'no': 1.0, 'deprived': 1.0, 'for': 4.0, 'time': 2.0, 'to': 8.0, 'item': 2.0, 'our': 1.0, 'all': 1.0, 'over': 1.0, 'hard': 1.0, 'while': 1.0, 'and': 6.0, 'get': 1.0, 'except': 1.0, 'moved': 1.0, 'faster': 1.0, 'placed': 1.0, 'off': 2.0, 'naps': 1.0, 'i': 6.0, 'old': 1.0, 'loved': 1.0, 'got': 1.0, 'purchased': 1.0, 'had': 1.0, 'when': 1.0, 'what': 1.0, 'was': 5.0, 'month': 2.0, 'either': 1.0, 'would': 3.0, 'position': 1.0, 'it': 9.0, 'him': 3.0, 'fussed': 1.0, 'baby': 2.0, 'that': 1.0, 'because': 1.0, 'way': 1.0, 'matter': 1.0, 'than': 1.0, 'the': 9.0, 'place': 1.0, 'terrible': 1.0, '2': 1.0, 'but': 3.0, 'motor': 2.0, 'he': 6.0, 'few': 1.0, 'this': 3.0, 'walked': 1.0, 'swing': 4.0, 'gas': 1.0, 'go': 2.0, 'a': 6.0, 'replacement': 1.0, 't': 3.0, 'going': 1.0, 'attached': 1.0, 'which': 1.0, 'made': 1.0, 'himself': 1.0, 'later': 1.0, 'very': 2.0, 'little': 2.0, 'mirror': 1.0, 'price': 1.0, 'me': 2.0, 'may': 1.0, 'have': 1.0, 'really': 1.0, 'highest': 1.0, 'contacted': 1.0, 'much': 1.0, 'do': 1.0, 'out': 1.0, 'wasn': 1.0, 'service': 1.0, 'if': 1.0, 'can': 2.0, 'so': 2.0, 'drift': 1.0, 'scream': 1.0, 'held': 1.0, 'reviews': 1.0, 'then': 2.0, 'we': 3.0, 'swinging': 1.0, 'comfortable': 1.0, 'less': 1.0, 'pleased': 1.0, 'with': 2.0, '5': 1.0, 'days': 1.0, 'went': 2.0, 've': 1.0, 'down': 1.0, 'turned': 2.0, 'long': 1.0, 'on': 3.0, 'there': 1.0, 'sleep': 4.0, 'back': 2.0, 'barely': 1.0, 'setting': 1.0, 'again': 1.0, 'support': 1.0, 'fisher': 1.0, 'customer': 1.0, 'they': 3.0}
Word element => {'parents': 1.0, 'tine': 1.0, 'for': 1.0, 'have': 1.0, 'must': 1.0, 'wants': 1.0, 'the': 2.0, 'of': 1.0, '6': 1.0, 'hospital': 1.0, 'items': 1.0, 'was': 2.0, 'this': 2.0, 'first': 2.0, 'rocked': 1.0, 'one': 1.0, 'bought': 1.0, 'be': 1.0, 'is': 1.0, 'lifesaver': 1.0, 'cries': 1.0, 'best': 1.0, 'from': 1.0, 'in': 2.0, 'unless': 1.0, 'swing': 3.0, 'didn': 1.0, 'ever': 1.0, 'has': 1.0, 'napping': 1.0, 'old': 1.0, 'getting': 1.0, 'home': 1.0, 'it': 2.0, 'month': 1.0, 'she': 4.0, 'speak': 1.0, 'realizing': 1.0, 'daughter': 1.0, 'all': 1.0, 'to': 2.0, 'as': 1.0, 'our': 2.0, 'sleep': 1.0, 'been': 1.0, 'loves': 1.0, 't': 1.0, 'we': 2.0, 'a': 1.0, 'total': 1.0, 'just': 1.0, 'because': 1.0, 'after': 1.0, 'sometimes': 1.0}
Word element => {'saver': 1.0, 'found': 1.0, 'wish': 1.0, 'calm': 1.0, 'gets': 1.0, 'babies': 1.0, 'that': 1.0, 'after': 1.0, 'when': 1.0, 'never': 1.0, 'or': 2.0, 'took': 1.0, 'my': 1.0, 'back': 1.0, 'reeking': 1.0, 'which': 1.0, 'car': 1.0, 'his': 1.0, 'seat': 1.0, 'to': 3.0, 'screamed': 1.0, 'had': 2.0, 'was': 2.0, 'crying': 1.0, 'from': 1.0, 'very': 1.0, 'shoulder': 1.0, 'but': 2.0, 'swing': 2.0, 'on': 1.0, 'put': 2.0, 'portable': 1.0, 'tummy': 1.0, 'have': 1.0, 'wide': 1.0, 'sooner': 1.0, 'acid': 1.0, 'and': 3.0, 'baby': 1.0, 'life': 1.0, 'screaming': 1.0, 'fussy': 2.0, 'terrible': 1.0, 'havoc': 1.0, 'would': 1.0, 'something': 1.0, 'troubles': 1.0, 'it': 7.0, 'mos': 1.0, 'with': 1.0, 'much': 2.0, 'only': 1.0, 'reflux': 1.0, 's': 2.0, 'a': 5.0, 'we': 4.0, 'going': 1.0, 'has': 1.0, 'so': 2.0, 'time': 2.0, 'every': 2.0, 'in': 4.0, 'since': 1.0, 'at': 1.0, 'between': 1.0, 'he': 6.0, '6': 1.0, '4': 1.0, 'i': 3.0, 'day': 2.0, 'looking': 1.0, 'love': 1.0, 'for': 2.0, 'liked': 1.0, 'him': 3.0, 'be': 1.0, 'swung': 1.0}
Word element => {'new': 1.0, 'a': 1.0, 'anyone': 1.0, 'my': 1.0, 'soothing': 1.0, 'made': 1.0, 'so': 1.0, 'would': 1.0, 'amazing': 1.0, 'easier': 1.0, 'is': 1.0, 'on': 1.0, 'little': 2.0, 'swing': 1.0, 'with': 1.0, 'it': 1.0, 'this': 1.0, 'things': 1.0, 'much': 1.0, 'and': 1.0, 'me': 1.0, 'for': 1.0, 'one': 2.0, 'suggest': 1.0, 'was': 1.0, 'to': 1.0, 'buying': 1.0}
Word element => {'day': 1.0, 'each': 1.0, 'hours': 2.0, 'did': 1.0, 'comes': 1.0, '2': 1.0, 'much': 1.0, 'put': 1.0, 'ordered': 1.0, 'back': 1.0, 'no': 1.0, 'sending': 1.0, 're': 1.0, 'customer': 1.0, 'price': 1.0, 'fisher': 1.0, 'six': 2.0, 'll': 1.0, '30': 1.0, 'january': 1.0, 'recommend': 1.0, 'buys': 1.0, 'few': 1.0, 'highly': 1.0, 'this': 2.0, 'batteries': 1.0, 'months': 3.0, 'tons': 2.0, 'using': 1.0, 'instead': 1.0, 's': 2.0, 'plug': 1.0, 'gear': 2.0, 'have': 1.0, 'at': 1.0, 'is': 2.0, 'motion': 1.0, 'pack': 1.0, 'definitely': 1.0, 'standard': 1.0, 'as': 3.0, 'best': 1.0, 'snugabunny': 1.0, 'fussy': 1.0, 'super': 1.0, 'has': 1.0, 'isn': 1.0, 'along': 1.0, 'cost': 2.0, 'replacement': 2.0, 'likes': 1.0, 't': 2.0, 'a': 10.0, 'then': 1.0, 'died': 1.0, 'we': 5.0, 'glad': 1.0, 'swing': 9.0, 'sanity': 1.0, 'but': 3.0, 'music': 2.0, 'they': 1.0, 'aren': 1.0, 'baby': 6.0, 'the': 12.0, 'of': 8.0, 'after': 2.0, 'that': 6.0, 'very': 1.0, 'until': 1.0, '2013': 1.0, 'off': 2.0, 'well': 1.0, 'broke': 1.0, 'i': 5.0, 'for': 4.0, 'significant': 1.0, 'side': 2.0, 'made': 1.0, 'can': 2.0, 'so': 2.0, 'worried': 1.0, 'time': 1.0, 'guy': 1.0, 'update': 1.0, 'amount': 1.0, 'on': 2.0, 'd': 2.0, 'continuously': 1.0, 'husband': 1.0, 'my': 1.0, 'although': 3.0, 'vs': 1.0, 'disappointed': 1.0, 'our': 3.0, 'and': 8.0, 'lasted': 1.0, 'one': 1.0, 'held': 1.0, 'too': 1.0, 'play': 1.0, 'son': 1.0, 'hate': 1.0, 'motor': 3.0, 'he': 2.0, 'it': 7.0, 'away': 1.0, 'nights': 1.0, 'finally': 2.0, 'an': 1.0, 'money': 1.0, 'purchasing': 1.0, 'bought': 1.0, 'be': 2.0, 'out': 1.0, 'couple': 1.0, 'been': 1.0, 'saver': 1.0, 'us': 1.0, 'real': 1.0, 'naps': 1.0, 'm': 2.0, 'terribly': 1.0, 'in': 6.0, 'albeit': 1.0, 'still': 1.0, 'service': 1.0, 'turn': 1.0, 'to': 4.0, 'length': 1.0, 'nice': 1.0, 'little': 1.0, 'grating': 1.0, 'mere': 1.0, 'early': 1.0, 'appears': 1.0, 'with': 1.0, 'days': 1.0, 'soft': 1.0, 'wish': 1.0, 'use': 2.0, 'wash': 1.0, 'nicely': 1.0, 'there': 2.0, 've': 1.0, 'down': 1.0, 'several': 2.0, 'different': 2.0, 'only': 1.0, 'options': 1.0, 'was': 2.0, 'having': 1.0, 'great': 1.0, 'option': 1.0, 'automatically': 1.0, 'certain': 1.0, 'fabrics': 1.0, 'operate': 1.0, 'directions': 1.0, 'spent': 1.0, 'never': 1.0, 'are': 1.0, 'bothered': 1.0}
Word element => {'months': 1.0, 'when': 1.0, 'times': 1.0, 'several': 1.0, 'use': 1.0, 'every': 1.0, 't': 1.0, 'cute': 1.0, 'fine': 1.0, 'weeks': 1.0, 'put': 1.0, 'was': 1.0, 'to': 3.0, 'works': 1.0, 'him': 1.0, 'he': 1.0, 'hard': 1.0, 'this': 1.0, 'it': 4.0, 'terribly': 1.0, 'swing': 2.0, 'wasn': 1.0, 'my': 1.0, 'old': 2.0, 'tried': 1.0, 's': 2.0, 'assemble': 1.0, 'from': 1.0, 'son': 1.0, 'time': 1.0, 'cried': 1.0, 'we': 2.0, 'in': 1.0}
Word element => {'than': 1.0, 'other': 1.0, 'not': 1.0, 'should': 2.0, 'frustrating': 1.0, 'back': 1.0, 'running': 1.0, 'when': 2.0, 'am': 1.0, 'love': 1.0, 'for': 1.0, 'secondary': 1.0, 'though': 1.0, 'even': 1.0, 'i': 3.0, 'complaint': 1.0, 'if': 1.0, 'music': 4.0, 'it': 6.0, 'he': 2.0, 'only': 1.0, 'certain': 1.0, 'let': 1.0, 'my': 2.0, 'is': 1.0, 'very': 1.0, 'single': 2.0, 'son': 1.0, 'day': 1.0, 'off': 5.0, 'wakes': 1.0, 'him': 2.0, 'would': 1.0, 'the': 5.0, 'turns': 1.0, 'his': 1.0, 'loves': 1.0, 'that': 2.0, 'swing': 2.0, 'have': 1.0, 'mobile': 1.0, 'in': 1.0, 'turn': 4.0, 'manufacturers': 1.0, 'amount': 1.0, 'after': 1.0, 'go': 1.0, 's': 1.0, 'we': 2.0, 't': 1.0, 'a': 2.0, 'of': 1.0, 'there': 1.0, 'up': 2.0, 'time': 3.0, 'isn': 1.0, 'way': 1.0, 'sleep': 1.0, 'all': 2.0, 'to': 3.0, 'night': 1.0, 'them': 1.0, 'and': 4.0, 'play': 2.0, 'think': 1.0, 'on': 1.0, 'constantly': 1.0, 'continuously': 1.0, 'every': 2.0}
Word element => {'version': 1.0, 'toddler': 1.0, 'need': 1.0, 'they': 1.0, 'overnight': 1.0, 'with': 1.0, 'travel': 1.0, 'so': 1.0, 'thing': 1.0, 'let': 1.0, 'just': 1.0, 'weight': 1.0, 'really': 1.0, 'move': 1.0, 'trips': 1.0, 'at': 3.0, 'way': 1.0, 'the': 4.0, 'up': 1.0, 'options': 1.0, 'different': 1.0, 'and': 6.0, 'times': 1.0, 'when': 1.0, 'noise': 1.0, 'fault': 1.0, 'speeds': 1.0, 'it': 8.0, 'he': 4.0, 'soft': 1.0, 'this': 2.0, 'absolutely': 1.0, 'pretty': 1.0, 'many': 2.0, 'son': 1.0, 'important': 1.0, 'isn': 1.0, 'takes': 1.0, 'of': 3.0, 'his': 1.0, 'has': 2.0, 'have': 1.0, 'naps': 1.0, 'make': 1.0, 'put': 1.0, 'can': 1.0, 'but': 1.0, 'in': 1.0, 'couple': 1.0, 'newborn': 1.0, 'that': 1.0, 'loves': 1.0, 'swing': 3.0, 'doesn': 1.0, 'was': 1.0, 'our': 1.0, 'all': 4.0, 'sleep': 1.0, 'to': 5.0, 'limit': 1.0, 'now': 1.0, 'us': 1.0, 'turned': 1.0, 'took': 1.0, 'much': 1.0, 'only': 1.0, 'notches': 1.0, 'is': 3.0, 'more': 1.0, 'for': 2.0, 'enough': 1.0, 'him': 1.0, 'sweet': 1.0, '9': 1.0, 'months': 1.0, 'become': 1.0, 'pounds': 1.0, 'go': 1.0, 't': 3.0, 'a': 3.0, 'we': 3.0}
Word element => {'need': 1.0, 'what': 1.0, 'that': 1.0, 'it': 1.0, 'am': 1.0, 'student': 1.0, 'bought': 1.0, 'my': 1.0, 'she': 1.0, 'baby': 1.0, 'a': 1.0, 'i': 3.0, 'busy': 1.0, 'for': 1.0, 'loves': 1.0, 'this': 1.0, 's': 1.0, 'months': 1.0}
Word element => {'recommend': 1.0, 'highly': 2.0, 'family': 1.0, 'our': 1.0, 'works': 1.0, 'cool': 1.0, '250': 1.0, 'have': 1.0, 'i': 1.0, 'modern': 1.0, 'right': 1.0, 'sometimes': 1.0, 'mamaroo': 1.0, 'no': 1.0, 'boy': 1.0, 'swing': 3.0, 'asleep': 1.0, 'to': 1.0, 'birth': 1.0, 'because': 1.0, 'searched': 1.0, 'just': 1.0, 'a': 1.0, 'gave': 1.0, 'him': 1.0, 'for': 1.0, 'perfectly': 1.0, 'away': 1.0, 'and': 3.0, 'my': 1.0, 'reason': 1.0, 'cries': 1.0, 'we': 1.0, 'but': 1.0, 'put': 1.0, 'on': 1.0, 'fine': 1.0, 'looks': 1.0, 'is': 1.0, 'with': 1.0, 'it': 2.0, 'he': 2.0, 'sister': 1.0, 'this': 2.0}
Word element => {'footprint': 1.0, 'a': 1.0, 'up': 1.0, 'large': 1.0, 'take': 1.0, 'does': 1.0, 'really': 1.0, 'say': 1.0, 'though': 1.0, 'kid': 1.0, 'loves': 1.0, 'gets': 1.0, 'it': 1.0, 'him': 1.0, 'is': 1.0, 'unconscious': 1.0, 'there': 1.0, 'what': 1.0, 'to': 1.0, 'else': 1.0}
Word element => {'d': 1.0, 't': 1.0, 'pregnant': 1.0, 'myself': 1.0, 'how': 1.0, 'control': 1.0, 'us': 1.0, 'perfectly': 1.0, 'drag': 1.0, 'newborn': 1.0, 'over': 1.0, '5': 1.0, 'blanket': 3.0, 'drape': 1.0, 'assemble': 1.0, 'explain': 1.0, 'instructions': 1.0, 'right': 1.0, 'pointing': 1.0, 'especially': 1.0, 'seemed': 1.0, 'house': 1.0, 'face': 1.0, 'sometimes': 1.0, 'hear': 1.0, 'could': 1.0, 'will': 1.0, 'easy': 1.0, 'however': 1.0, 'tv': 1.0, 'loud': 1.0, 'you': 1.0, 'if': 4.0, 'are': 1.0, 'bad': 1.0, 'based': 1.0, 'good': 1.0, 'which': 1.0, 'points': 1.0, 'have': 2.0, 'speaker': 1.0, 'music': 3.0, 'primary': 1.0, 'weight': 1.0, 'not': 1.0, 'wrong': 1.0, 'had': 2.0, 'was': 7.0, 'my': 2.0, 'on': 4.0, 'much': 1.0, 'floor': 1.0, 'put': 1.0, 'months': 3.0, 'selling': 1.0, 'too': 1.0, 'one': 1.0, 'mobile': 1.0, 'after': 2.0, 'yet': 1.0, 'or': 2.0, 'worked': 1.0, 'having': 1.0, '6': 2.0, 'mine': 1.0, 'reason': 1.0, 'limit': 1.0, 'no': 1.0, 'about': 1.0, 'quickly': 1.0, 'cover': 1.0, 'dragging': 1.0, 'we': 1.0, 'died': 3.0, 'reviews': 1.0, 'they': 1.0, 'but': 2.0, 'other': 2.0, 'read': 1.0, 'specifically': 1.0, 'did': 2.0, 'getting': 1.0, 'something': 2.0, 'either': 1.0, 'would': 1.0, 'down': 1.0, 'cozy': 1.0, 'hadn': 1.0, 'in': 4.0, 'dying': 1.0, 'donating': 1.0, 'expensive': 1.0, 'planned': 1.0, 'this': 4.0, 'soft': 1.0, '9': 1.0, 'thought': 1.0, 'it': 13.0, 'like': 2.0, 'watching': 1.0, 'has': 1.0, 'a': 4.0, 'go': 1.0, 'plug': 1.0, 'maybe': 1.0, 's': 2.0, 'of': 2.0, 'the': 20.0, 'lowest': 1.0, 'heavy': 1.0, 'price': 1.0, 'baby': 6.0, 'gifting': 1.0, 'because': 1.0, 'that': 1.0, 'when': 1.0, 'done': 1.0, 'volume': 1.0, 'with': 1.0, 'even': 1.0, 'instead': 2.0, 'to': 9.0, 'trash': 1.0, 'for': 4.0, 'such': 1.0, 'waste': 1.0, 'until': 1.0, 'nice': 1.0, 'quiet': 1.0, 'really': 1.0, 'loved': 1.0, 'through': 1.0, 'ate': 1.0, 'at': 3.0, 'is': 4.0, 'look': 1.0, 'rated': 1.0, 'batteries': 1.0, 'speed': 1.0, 'so': 2.0, 'i': 8.0, 'well': 1.0, 'fast': 2.0, 'be': 1.0, 'and': 4.0, 'machine': 1.0, 'fascinating': 1.0, 'washable': 1.0, 'stars': 1.0, 'wanted': 1.0, 'colors': 2.0, 'living': 1.0, 'room': 1.0, 'swing': 9.0, 'compared': 1.0, 'bright': 1.0}
Word element => {'it': 1.0, 'baby': 1.0, 'seeing': 1.0, 'foward': 1.0, 'the': 2.0, 'is': 1.0, 'advertised': 1.0, 'look': 1.0, 'snugabunny': 1.0, 'and': 1.0, 'as': 1.0, 'use': 1.0, 'just': 2.0, 'easy': 1.0, 'to': 2.0, 'put': 1.0, 'together': 1.0}
Word element => {'for': 1.0, 'tones': 2.0, 'are': 1.0, 'soothing': 1.0, 'much': 1.0, 'musical': 1.0, 'water': 1.0, 'so': 2.0, 'swing': 1.0, 'grandson': 1.0, 'enjoys': 1.0, 'infants': 1.0, 'the': 2.0, 'great': 1.0, 'this': 1.0, 'it': 1.0, 'were': 1.0, 'our': 1.0, 'newborn': 1.0, 'perfect': 1.0, 'as': 1.0, 'and': 1.0, 'highly': 1.0, 'a': 1.0, 'recommend': 1.0}
Word element => {'sturdy': 1.0, 'speeds': 1.0, 'several': 1.0, 'a': 1.0, 'does': 1.0, 'all': 1.0, 'sleeps': 1.0, 'napping': 1.0, 'music': 1.0, 'late': 1.0, 'if': 1.0, 'night': 2.0, 'through': 1.0, 'sure': 1.0, 'money': 1.0, 'him': 1.0, 'very': 1.0, 'son': 1.0, 'is': 2.0, 'for': 1.0, 'in': 2.0, 'great': 2.0, 'the': 3.0, 'motor': 1.0, 'let': 1.0, 'worth': 1.0, 'swing': 2.0, 'our': 1.0, 'so': 2.0, 'and': 3.0, 'do': 1.0, 'we': 2.0, 'this': 1.0, 'it': 2.0, 'he': 3.0, 'job': 1.0, 'loves': 1.0, 'good': 2.0, 'sleep': 1.0}
Word element => {'should': 1.0, 'own': 1.0, 'upon': 1.0, 'again': 2.0, 'make': 1.0, 'choice': 1.0, 'if': 1.0, 'features': 1.0, 'useful': 1.0, 'set': 1.0, 'me': 1.0, 'seem': 1.0, 'select': 1.0, 'my': 2.0, 'well': 1.0, 'this': 4.0, 'looked': 1.0, 'gift': 1.0, 'best': 1.0, 'm': 1.0, 'bought': 1.0, 'one': 2.0, 'i': 5.0, 'contemplating': 1.0, 'for': 1.0, 'afraid': 1.0, 'be': 2.0, 'anyone': 1.0, 'in': 1.0, 'will': 1.0, 'item': 1.0, 'of': 2.0, 'no': 1.0, 'as': 1.0, 'fancied': 1.0, 'to': 5.0, 'use': 1.0, 'most': 1.0, 'at': 1.0, '1st': 1.0, 'over': 1.0, 'child': 1.0, 'purchasing': 1.0, 'made': 1.0, 's': 1.0, 'a': 1.0, 'we': 2.0, 'shopped': 1.0, 'and': 3.0, 'daughter': 1.0, 'together': 1.0, 'seemed': 2.0, 'believe': 1.0, 'the': 4.0, 'it': 3.0, 'she': 1.0, 'did': 1.0, 'many': 1.0, 'others': 1.0, 'had': 2.0, 'comparison': 1.0, 'what': 1.0}
Word element => {'time': 1.0, 'wish': 1.0, 'swing': 1.0, 'little': 1.0, 'my': 1.0, 'nightime': 1.0, 'control': 1.0, 'the': 4.0, 'charm': 1.0, 'when': 1.0, 'one': 1.0, 'we': 1.0, 'during': 1.0, 'like': 1.0, 'it': 2.0, 'used': 1.0, 'works': 1.0, 'life': 1.0, 'remote': 1.0, 'of': 1.0, 'to': 1.0, 'asleep': 1.0, 'had': 2.0, 'a': 2.0, 'middle': 1.0, 'saver': 1.0, 'problem': 1.0, 'in': 1.0, 'falling': 1.0, 'i': 1.0, 'night': 1.0}
Word element => {'a': 1.0, 'things': 1.0, 'variety': 1.0, 'for': 1.0, 'of': 1.0, 'some': 1.0, 'super': 1.0, 'nice': 1.0, 'and': 1.0, 'me': 1.0, 'music': 1.0, 'to': 1.0, 'product': 1.0, 'time': 1.0, 'son': 1.0, 'have': 1.0, 'loves': 1.0, 'love': 1.0, 'it': 2.0, 'my': 2.0, 'helps': 1.0}
Word element => {'months': 1.0, 'after': 1.0, 'be': 1.0, 'expensive': 1.0, 'new': 1.0, 'a': 2.0, 'son': 2.0, 'is': 3.0, '10': 1.0, 'my': 2.0, '2': 1.0, 't': 1.0, 'great': 1.0, 'the': 1.0, 'swinging': 1.0, 'motor': 2.0, 'broken': 2.0, 'shouldn': 1.0, 'it': 2.0, 'stopped': 1.0, 'this': 2.0, 'only': 2.0, 'was': 1.0, 'swing': 2.0, 'fp': 1.0, 'but': 1.0, 'weeks': 1.0, 'loved': 1.0, 'already': 1.0, 'until': 1.0, 'sending': 1.0, 'and': 2.0, 'me': 1.0}
Word element => {'ever': 1.0, 'swing': 1.0, 'lives': 1.0, 'weeks': 1.0, '2': 1.0, 'when': 1.0, 'again': 1.0, 'up': 1.0, 'girl': 1.0, 'my': 2.0, 'best': 1.0, 'as': 1.0, 'year': 1.0, 'in': 2.0, 'one': 2.0, '4': 1.0, 'on': 1.0, 'tried': 1.0, 'i': 2.0, 'old': 2.0, 'was': 1.0, 'buying': 1.0, 'had': 1.0, 'now': 2.0, 'to': 1.0, 'ended': 1.0, 'baby': 1.0, 'lived': 1.0, 'with': 2.0, 'this': 2.0, 'it': 2.0, 'and': 2.0, 'get': 1.0, 'away': 1.0, 'well': 1.0, 'a': 1.0, 'cheaper': 1.0, 'she': 3.0, 'last': 1.0}
Word element => {'times': 1.0, 'is': 1.0, 'the': 2.0, 'loves': 1.0, 'this': 2.0, 'that': 1.0, 'swing': 1.0, 'at': 1.0, 'thing': 1.0, 'it': 1.0, 'love': 1.0, 'can': 1.0, 'and': 1.0, 'only': 1.0, 'she': 1.0, 'baby': 1.0, 'down': 1.0, 'calm': 1.0}
Word element => {'sooner': 1.0, 'expected': 1.0, 'much': 1.0, 'her': 2.0, 'cousin': 1.0, 'baby': 1.0, 'cheaper': 1.0, 'she': 1.0, 'little': 1.0, 'cause': 1.0, 'my': 1.0, 'make': 1.0, 'for': 2.0, 't': 1.0, 'loves': 1.0, 'ordered': 1.0, 'i': 3.0, 'shower': 1.0, 'this': 1.0, 'it': 4.0, 'sent': 1.0, 'had': 1.0, 'to': 1.0, 'and': 3.0, 'couldn': 1.0, 'then': 1.0, 'got': 1.0, 'a': 1.0}
Word element => {'work': 1.0, 'thing': 1.0, 'hand': 1.0, 'had': 1.0, 'we': 1.0, 'days': 1.0, 'the': 4.0, 'grandchild': 1.0, 'old': 1.0, 'to': 3.0, 'crank': 1.0, 'recommend': 1.0, 'really': 1.0, 'seems': 1.0, 'enjoy': 1.0, 'from': 1.0, 'when': 1.0, 'i': 1.0, 'ride': 1.0, 'it': 1.0}
Word element => {'beat': 1.0, 'you': 1.0, 'how': 1.0, 'find': 1.0, 'able': 1.0, 'seem': 1.0, 'from': 1.0, 'baby': 1.0, 'purchased': 1.0, 'amazon': 2.0, 'amazing': 1.0, 'an': 1.0, '160': 1.0, 'retails': 1.0, 'stores': 2.0, 'in': 2.0, 'be': 2.0, 'him': 1.0, 'of': 2.0, 'there': 1.0, 'always': 2.0, 'hours': 1.0, 'count': 1.0, 'stuff': 1.0, 'put': 1.0, 'guy': 1.0, 'on': 2.0, 'fraction': 1.0, 'got': 1.0, 'only': 1.0, 'nights': 1.0, 'it': 6.0, 'a': 1.0, 's': 2.0, 'we': 5.0, 'lives': 1.0, 'reason': 1.0, 'design': 1.0, '4': 1.0, 'saved': 1.0, 'just': 1.0, 'for': 3.0, 'where': 1.0, 'deal': 1.0, 'the': 5.0, 'without': 1.0, 'many': 2.0, 'around': 1.0, 'is': 2.0, 'swing': 2.0, 'that': 2.0, 'loves': 1.0, 'been': 1.0, 'cuddly': 1.0, 'little': 1.0, 'cost': 1.0, 've': 2.0, 'would': 3.0, 'so': 3.0, 'else': 1.0, 'need': 1.0, 'fails': 1.0, 'this': 1.0, 'soft': 1.0, 'and': 2.0, '2': 1.0, 'can': 2.0, 'music': 1.0, 'want': 1.0, 'everything': 1.0, 'if': 1.0, 'beautiful': 1.0, 'alone': 1.0, 'sleep': 2.0, 'our': 3.0, 'gorgeous': 1.0, 'all': 2.0, 'to': 4.0}
Word element => {'an': 1.0, 'gets': 1.0, 'their': 1.0, 'friendly': 1.0, 'immediately': 1.0, 'new': 1.0, 'sent': 1.0, 'service': 2.0, 'customer': 2.0, 'fisher': 1.0, 'called': 1.0, 'motor': 2.0, 'died': 1.0, 'because': 1.0, 'instead': 1.0, 'fours': 1.0, 'reason': 1.0, 'batteries': 1.0, 'of': 3.0, 'five': 1.0, 'worry': 1.0, 'not': 1.0, 'about': 2.0, 'wall': 1.0, 'plug': 1.0, 'since': 1.0, 'baby': 2.0, 'use': 1.0, 'hassle': 1.0, 'amazon': 1.0, 'received': 1.0, 'much': 1.0, 'they': 2.0, 'reviews': 1.0, 'price': 1.0, 'absolutely': 1.0, 'with': 1.0, 'this': 4.0, 'great': 1.0, 'months': 1.0, 'mobile': 1.0, 'decided': 1.0, 'very': 2.0, 'read': 1.0, 'it': 3.0, 'she': 1.0, 'had': 1.0, 'was': 2.0, 'swing': 5.0, 'loved': 2.0, 'after': 2.0, 'out': 1.0, 'newborn': 1.0, 'and': 4.0, 'energy': 1.0, 'were': 3.0, 'gave': 1.0, 'into': 1.0, 'that': 1.0, 'the': 8.0, 'stimulating': 1.0, 'stars': 1.0, 'for': 1.0, 'two': 1.0, 'i': 5.0, 'saved': 1.0, 'able': 1.0, 'us': 1.0, 'so': 1.0, 'time': 1.0, 'here': 1.0, 'trying': 1.0, 'on': 1.0, 'put': 1.0, 'my': 1.0, 'fact': 1.0, 'her': 1.0, 'to': 4.0, 'our': 1.0, 'sleep': 1.0, 'a': 3.0, 'go': 1.0, 'we': 1.0}
Word element => {'glad': 1.0, 'swing': 1.0, 'dying': 1.0, 'worry': 1.0, 'never': 1.0, 'have': 2.0, 'its': 1.0, 'turn': 1.0, 'in': 2.0, 'plug': 2.0, 'just': 1.0, 'needed': 1.0, 'about': 1.0, 'no': 1.0, 'is': 1.0, 'part': 1.0, 'position': 1.0, 'changes': 1.0, 'and': 4.0, 'out': 1.0, 'the': 7.0, 'love': 1.0, 'for': 3.0, 'a': 1.0, 'well': 1.0, 'needing': 1.0, 'birds': 1.0, 'up': 1.0, 'always': 1.0, 'ended': 1.0, 'screws': 1.0, 'baby': 2.0, 'option': 2.0, 'i': 6.0, 'quietly': 1.0, 'putting': 1.0, 'it': 6.0, 'with': 1.0, 'this': 2.0, 'drill': 1.0, 'extremely': 1.0, 'because': 1.0, 'power': 1.0, 'together': 1.0, 'pleased': 1.0, 'beautiful': 1.0, 'was': 1.0, 'easy': 1.0, 'detachable': 1.0, 'although': 1.0, 'came': 1.0, 'nature': 1.0, 'best': 1.0, 'fun': 1.0, 'mirror': 1.0, 'batteries': 2.0, 'sounds': 1.0, 'are': 1.0, 'purchase': 1.0, 'my': 1.0, 'favorite': 1.0, 'you': 1.0, 'easily': 1.0, 'am': 2.0, 'when': 1.0, 'nice': 1.0, 'great': 1.0, 'big': 1.0, 'to': 4.0, 'sleep': 1.0, 'as': 2.0, 'bought': 1.0, 'operates': 1.0, 'entertainment': 1.0, 'mobile': 1.0, 'plush': 1.0, 'put': 1.0, 'on': 2.0, 'make': 1.0}
Word element => {'wakes': 1.0, 'always': 1.0, 'after': 1.0, 'stop': 1.0, 'are': 1.0, 'packs': 1.0, 'choices': 1.0, 'direction': 1.0, 'it': 3.0, 'only': 1.0, 'which': 1.0, 'like': 1.0, 'gets': 1.0, 'by': 1.0, 'of': 2.0, 'when': 1.0, 'you': 1.0, 'has': 1.0, 'switch': 1.0, 'now': 1.0, 'different': 1.0, '3': 1.0, 'so': 1.0, 'tired': 1.0, 'baby': 2.0, 'up': 2.0, 'don': 1.0, 'swinging': 1.0, 'love': 2.0, 'one': 1.0, 'directions': 1.0, 'music': 2.0, 'can': 1.0, 'great': 1.0, 'the': 4.0, 'we': 2.0, 't': 1.0, 'and': 1.0, 'that': 2.0, 'plugs': 1.0, 'into': 1.0, 'would': 1.0, 'have': 1.0, 'gone': 1.0, 'wall': 1.0, 'thing': 1.0, 'through': 1.0, '10': 2.0, 'i': 1.0, 'is': 1.0, 'mins': 1.0, 'batteries': 1.0, 'will': 1.0}
Word element => {'but': 1.0, 'minutes': 1.0, '5': 1.0, 'after': 1.0, 'or': 1.0, 'off': 1.0, 'cuts': 1.0, 'music': 1.0, 'on': 1.0, 'otherwise': 1.0, 'turn': 1.0, 'when': 1.0, 'like': 1.0, 'dont': 1.0, 'itself': 1.0, 'thing': 1.0, 'very': 1.0, 'adorable': 1.0, 'swing': 2.0, 'and': 1.0, 'comfy': 1.0, 'only': 1.0, 'first': 1.0, 'this': 2.0, 'it': 4.0, 'you': 1.0, 's': 2.0, 'i': 2.0, '10': 1.0, 'neutral': 1.0, 'about': 2.0, 'colors': 1.0, 'love': 1.0, 'for': 1.0, 'most': 1.0, 'great': 2.0, 'the': 3.0, 'part': 1.0, 'looks': 1.0, 'is': 2.0, 'seems': 1.0, 'perfect': 1.0}
Word element => {'comments': 1.0, 'be': 1.0, 'there': 1.0, 'attach': 1.0, 'else': 1.0, 'improve': 1.0, 'a': 3.0, 'online': 1.0, 'also': 1.0, 'will': 1.0, 'swings': 1.0, 'add': 1.0, 'products': 1.0, 'baby': 2.0, 'one': 1.0, 'procedure': 1.0, 'same': 1.0, 'have': 1.0, 'word': 1.0, 'to': 4.0, 'due': 1.0, 'returns': 1.0, 'purchasing': 1.0, 'smooth': 1.0, 'leaning': 1.0, 'overall': 1.0, 'reviews': 2.0, 'and': 4.0, 'tower': 1.0, 'an': 1.0, 'poorly': 1.0, 'n': 1.0, 'it': 2.0, 'compared': 1.0, 'looked': 1.0, 'had': 3.0, 'was': 3.0, 'product': 2.0, 'for': 2.0, 'on': 2.0, 'ordered': 1.0, 'appreciate': 1.0, '335': 1.0, 'price': 1.0, 'fisher': 1.0, 'pictures': 1.0, 'discourage': 1.0, 'strongly': 1.0, 'this': 2.0, 'based': 1.0, 'packaging': 1.0, 'of': 3.0, 'successfully': 1.0, 'swing': 1.0, 'shipped': 1.0, 'cradle': 1.0, 'time': 1.0, 'feature': 1.0, 'costly': 1.0, '4': 1.0, 'i': 4.0, 'the': 10.0, 'my': 1.0, 'user': 2.0, 'delivered': 1.0, 'other': 1.0, 'rating': 1.0, '5': 1.0, 'half': 1.0, 'amazon': 3.0, 'package': 1.0, 'that': 1.0, 'box': 3.0, 'flurry': 1.0, 'like': 1.0, 'in': 1.0, 'return': 1.0, 'returned': 1.0, 'original': 1.0, 'packaged': 1.0, 'little': 1.0, 'very': 1.0, 'please': 2.0, 'sweetie': 1.0, 'open': 1.0, 'by': 1.0, 'lot': 1.0, 'damages': 2.0}
Word element => {'needs': 1.0, 'calling': 1.0, 'vain': 2.0, 'who': 1.0, 'like': 1.0, 'someone': 1.0, 'helps': 1.0, 'review': 1.0, 'hope': 1.0, 'hopes': 1.0, 'similar': 1.0, 'very': 1.0, 'customer': 1.0, 'previous': 1.0, 'luck': 1.0, 'great': 1.0, 'had': 1.0, 'but': 1.0, 'sleep': 1.0, 'on': 1.0, 'know': 1.0, 'bit': 1.0, 'no': 1.0, 'less': 1.0, 'box': 1.0, 'they': 2.0, 'we': 1.0, 'reviews': 1.0, 'seem': 1.0, 'help': 1.0, 'burned': 1.0, 'just': 2.0, 'that': 4.0, 'thrilled': 1.0, 'worker': 1.0, 'fp': 1.0, 'for': 3.0, 'love': 1.0, 'as': 3.0, 'high': 1.0, 'to': 5.0, 'service': 1.0, 'still': 1.0, 'if': 3.0, 'was': 3.0, 'were': 1.0, 'recommend': 1.0, 'so': 3.0, 'ask': 1.0, 'price': 1.0, 'and': 6.0, 'googling': 1.0, 'quite': 1.0, 'telling': 1.0, 'swing': 2.0, 'in': 7.0, 'dual': 3.0, 'one': 1.0, 'too': 2.0, 'try': 1.0, 'an': 3.0, 'than': 1.0, 'daughter': 1.0, 'american': 2.0, 'it': 12.0, 'am': 1.0, 'you': 1.0, 'a': 5.0, 't': 2.0, 'is': 5.0, 'the': 1.0, 'europe': 3.0, 'especially': 1.0, 'perfectly': 1.0, 'few': 1.0, 'this': 4.0, 'duty': 1.0, 'with': 3.0, 'co': 1.0, 'indicate': 1.0, 'voltage': 3.0, 'po': 1.0, 'miracle': 1.0, 'flat': 1.0, 'prime': 1.0, 'have': 2.0, 'called': 1.0, 'exchange': 1.0, 'iron': 1.0, 'rate': 1.0, 'fisher': 1.0, 'once': 1.0, 'baby': 1.0, 'military': 1.0, 'tried': 1.0, 'use': 1.0, 'her': 3.0, 'hair': 1.0, 'i': 8.0, 'well': 2.0, 'didn': 1.0, 'decided': 1.0, 'since': 1.0, 'here': 1.0, 'me': 3.0, 'my': 3.0, 'more': 1.0, 'sells': 1.0, 'husband': 1.0, 'active': 1.0, 'would': 1.0, 'super': 1.0, 'buy': 1.0, 'return': 1.0, 'wasn': 1.0, 'fact': 1.0, 'living': 1.0, 'adapter': 1.0, 'first': 1.0, 'cute': 1.0, 'quiet': 1.0, 'really': 1.0, 'plugs': 1.0, 'little': 1.0, 'works': 1.0, 'tell': 1.0, 'worked': 1.0}
Word element => {'amazon': 1.0, 'lt': 1.0, 'i': 1.0, 'free': 1.0, 'getting': 1.0, 'sale': 1.0, '3': 1.0, 'on': 1.0, 'him': 1.0, 'soothing': 1.0, 'mirror': 1.0, 'plus': 2.0, 'mention': 1.0, 'great': 1.0, 'relaxes': 1.0, 'comfortable': 1.0, 'lifesaver': 1.0, 'completely': 1.0, 'is': 1.0, 'house': 1.0, 'friend': 1.0, 'after': 1.0, 'baby': 2.0, 'so': 1.0, 'boy': 1.0, 'time': 1.0, 'swing': 2.0, 'sat': 1.0, 'just': 1.0, 'mobile': 1.0, 'bought': 1.0, 'driving': 1.0, 'in': 4.0, 'their': 1.0, 'this': 3.0, 'first': 3.0, 'he': 1.0, 'music': 1.0, '2': 1.0, 'for': 1.0, 'a': 3.0, 'we': 1.0, 's': 1.0, '5': 1.0, 'shipping': 1.0, 'under': 1.0, 'test': 1.0, 'very': 1.0, 'fell': 1.0, 'it': 4.0, 'month': 1.0, 'old': 1.0, 'buy': 2.0, 'at': 1.0, 'who': 1.0, 'are': 1.0, 'buying': 1.0, 'mind': 1.0, 'and': 3.0, 'had': 1.0, 'our': 2.0, 'to': 2.0, 'the': 4.0, 'asleep': 1.0, 'presence': 1.0, 'of': 1.0, 'not': 1.0, 'advance': 1.0, '10': 1.0, 'was': 1.0, 'beautiful': 1.0, 'expecting': 1.0, 'minutes': 1.0, 'thing': 1.0}
Word element => {'doesn': 1.0, 're': 1.0, 'for': 1.0, 'buying': 1.0, 'about': 1.0, 'talking': 1.0, 'are': 1.0, 'parents': 1.0, 'our': 1.0, 'elegant': 1.0, 'watching': 1.0, 'has': 1.0, 'nap': 1.0, 'discomfort': 1.0, 'daddy': 1.0, 'most': 1.0, 'sleep': 2.0, 'to': 7.0, 'as': 2.0, 'often': 1.0, 'my': 5.0, 'health': 1.0, 'some': 1.0, 'glad': 1.0, 'group': 1.0, 'swing': 6.0, 'this': 3.0, 'us': 1.0, 'bought': 1.0, 'mobile': 1.0, 'blends': 1.0, 'have': 2.0, 't': 4.0, 'a': 7.0, 's': 3.0, 'take': 1.0, 'exhausted': 1.0, 'move': 1.0, 'bright': 1.0, 'near': 1.0, 'on': 1.0, 'got': 1.0, 'couldn': 1.0, 'and': 10.0, 'getting': 1.0, 'did': 1.0, 'much': 1.0, 'general': 1.0, 'aversion': 1.0, 'planning': 1.0, 'together': 1.0, 'wasn': 1.0, 'many': 1.0, 'baby': 2.0, 'well': 1.0, 'i': 5.0, 'but': 3.0, 'can': 1.0, 'was': 2.0, 'had': 1.0, 'husband': 1.0, 'one': 3.0, 'sooth': 1.0, 'when': 2.0, 'mama': 1.0, 'simple': 1.0, 'circle': 1.0, 'already': 1.0, 'him': 2.0, 'it': 4.0, 'really': 2.0, 'they': 3.0, 'sturdy': 1.0, 'decor': 1.0, 'comfy': 1.0, 'teenage': 1.0, 'brother': 1.0, 'wants': 1.0, 'says': 1.0, 'stuff': 2.0, 'just': 1.0, 'he': 2.0, 'naps': 1.0, 'm': 1.0, 'in': 3.0, 'of': 3.0, 'the': 4.0, 'look': 1.0, 'is': 3.0, 'around': 1.0, 'with': 1.0, 'weren': 1.0, 'smooth': 1.0, 'like': 2.0, 'because': 1.0, 'problems': 1.0, 'that': 2.0, 'coworkers': 1.0, 'directions': 1.0, 'mix': 1.0, 'nice': 1.0, 'little': 1.0, 'able': 2.0, 'night': 1.0, 'you': 1.0, 'motion': 1.0, 'things': 2.0, 'adorable': 1.0, 'leaves': 1.0, 'appearance': 1.0, 'birds': 1.0, 'colors': 1.0, 'down': 1.0, 'change': 1.0, 'up': 2.0, 'favorite': 1.0, 'not': 1.0, 'son': 1.0, 'hate': 1.0}
Word element => {'wakes': 1.0, 'when': 1.0, 'unless': 1.0, 'newborn': 1.0, 'in': 1.0, 'was': 2.0, 'refused': 1.0, 'of': 1.0, 'takes': 1.0, 'best': 1.0, 'day': 1.0, 'sleep': 1.0, 'to': 2.0, 'our': 1.0, 'few': 1.0, 'held': 1.0, 'still': 1.0, 'she': 4.0, 'baby': 1.0, 'little': 1.0, 'swing': 2.0, 'products': 1.0, 'first': 1.0, 'this': 1.0, 'only': 1.0, 'being': 1.0, 'asleep': 1.0, 'the': 6.0, 'place': 1.0, 'purchased': 1.0, 'now': 1.0, 'weeks': 1.0, 'put': 1.0, 'naps': 1.0, 'during': 1.0, 'and': 2.0, 'we': 2.0, 'could': 1.0, 'her': 1.0, 'for': 1.0, 'where': 1.0, 'would': 1.0, 'stay': 1.0, 'really': 1.0, 'likes': 1.0, 'grab': 1.0, 'trying': 1.0, 'one': 2.0, 'mobile': 1.0}
Word element => {'or': 1.0, 'product': 1.0, 'd': 1.0, 'they': 1.0, 'wish': 1.0, 'sad': 1.0, 'makes': 1.0, 'didn': 1.0, 'doesn': 1.0, 'great': 1.0, 'worked': 1.0, 'had': 2.0, 'used': 1.0, 'time': 1.0, '15': 1.0, 'get': 1.0, 'months': 2.0, 'since': 1.0, 'rock': 1.0, 'been': 2.0, 'haven': 1.0, 'getting': 1.0, 'know': 1.0, '18': 1.0, 'boy': 1.0, 'me': 1.0, 'my': 1.0, 'weight': 2.0, 'were': 2.0, 'about': 3.0, '13': 1.0, 'best': 1.0, 'think': 1.0, 'last': 3.0, 'stronger': 1.0, 'want': 1.0, 'hope': 1.0, 'out': 1.0, 'going': 3.0, 'read': 1.0, 'times': 1.0, '40': 1.0, 'use': 3.0, '4': 1.0, 'closed': 1.0, 'inside': 1.0, 'max': 1.0, 'big': 2.0, 'be': 1.0, 'might': 1.0, 'apparently': 1.0, 'online': 1.0, 'up': 3.0, 'reading': 1.0, '3': 3.0, 'today': 1.0, 'creaking': 1.0, 'started': 1.0, 'was': 4.0, 'lbs': 3.0, 't': 6.0, 'requirements': 1.0, 's': 11.0, 'a': 6.0, 'after': 2.0, 'sometimes': 1.0, 'second': 1.0, 'much': 2.0, 'put': 1.0, 'issue': 1.0, 'guy': 2.0, 'long': 1.0, 'update': 1.0, 'on': 3.0, 'but': 5.0, 'like': 4.0, 'down': 1.0, 'actually': 2.0, 'for': 4.0, 'to': 10.0, 'our': 1.0, 'sleep': 1.0, 'other': 1.0, 'all': 4.0, 'don': 1.0, 'isn': 1.0, 'so': 5.0, 'can': 2.0, 'drift': 1.0, 'shut': 1.0, 'enough': 1.0, 'forever': 2.0, 'just': 6.0, 'swing': 1.0, 'because': 2.0, 'that': 6.0, 'loves': 1.0, 'in': 1.0, 'daddy': 1.0, 'part': 1.0, 'within': 1.0, 'and': 11.0, 'mommy': 1.0, 'by': 1.0, 'fussy': 1.0, 'lot': 1.0, 'happy': 1.0, 'one': 2.0, 'mobile': 3.0, 'rocking': 2.0, 'this': 3.0, 'him': 5.0, 'it': 14.0, 'love': 1.0, 'motor': 4.0, 'he': 12.0, 'month': 1.0, 'super': 1.0, 'able': 1.0, 'you': 1.0, 'night': 1.0, 'gets': 2.0, 'weak': 1.0, '2014': 1.0, 'when': 3.0, 'of': 5.0, 'the': 18.0, 'made': 2.0, 'happily': 1.0, 'which': 1.0, 'asleep': 1.0, 'realistic': 1.0, 'more': 2.0, 'at': 2.0, 'is': 3.0, 'music': 1.0, 'around': 2.0, 'anything': 1.0, 'regret': 1.0, 'leads': 1.0, 'both': 1.0, 'right': 1.0, 'alright': 1.0, 'ways': 1.0, 'then': 1.0, 'reviews': 1.0, 'we': 4.0, 'take': 1.0, 'fighting': 1.0, 'swinging': 1.0, 'minutes': 1.0, 'even': 3.0, 'not': 3.0, 'has': 1.0, 'watching': 1.0, 'well': 1.0, 'i': 12.0, 'us': 1.0, 'also': 2.0, 'sound': 1.0, 'happen': 1.0, 'work': 1.0, 'over': 2.0, 'quiet': 1.0, 'really': 4.0, 'little': 3.0, 'nice': 1.0, 'than': 1.0, 'way': 1.0, 'wd': 1.0, 'while': 1.0, '25': 1.0, 'their': 1.0, 'off': 2.0, 'own': 1.0, '2': 2.0, 'thing': 3.0, 'adjustment': 1.0, 'there': 1.0, 'turn': 1.0, 'still': 1.0, 'if': 1.0, 'buttons': 1.0, 'working': 1.0, 'are': 1.0, 'kind': 2.0, 'sucks': 1.0, 'straining': 1.0, 'quickly': 1.0, 'purchase': 2.0, 'usually': 2.0, 'only': 1.0, 'power': 1.0, 'old': 2.0, '12': 1.0}
Word element => {'customer': 1.0, 'helpful': 1.0, 'very': 1.0, 'have': 1.0, 'does': 1.0, 'out': 1.0, 'hopefully': 1.0, 'edition': 1.0, 'platinum': 1.0, 'now': 1.0, 'or': 1.0, 'expected': 1.0, 'again': 1.0, 'left': 1.0, 'were': 1.0, 'before': 2.0, 'started': 1.0, 'groaning': 1.0, 'familier': 1.0, 'on': 1.0, 'noticed': 1.0, 'works': 1.0, 'without': 1.0, 'days': 1.0, 'couple': 1.0, 'so': 1.0, 'speed': 1.0, 'wasn': 1.0, 'even': 1.0, 'wanted': 1.0, 'than': 1.0, 'way': 1.0, '1st': 1.0, 'sluggish': 1.0, 'getting': 1.0, 'reflux': 1.0, 'warranty': 1.0, 'return': 1.0, 'seemed': 1.0, 'as': 1.0, 'silent': 1.0, 'noisier': 1.0, '3rd': 1.0, 'there': 1.0, 'has': 1.0, 'son': 1.0, 'middle': 1.0, 'service': 1.0, 'certainly': 1.0, 'if': 1.0, 'still': 3.0, 'all': 3.0, 'back': 1.0, 'sleep': 1.0, 'our': 3.0, 'to': 8.0, 'much': 3.0, 'more': 1.0, 'considering': 1.0, 'decided': 1.0, 'lamb': 2.0, 'which': 1.0, 'cradle': 1.0, 'in': 3.0, 'what': 1.0, 'had': 5.0, 'bar': 1.0, 'loud': 1.0, 'motion': 1.0, 'you': 2.0, 'meant': 1.0, 'night': 1.0, 'buy': 1.0, 'just': 2.0, 'motor': 3.0, 'ago': 1.0, 't': 3.0, 'could': 1.0, 'a': 5.0, 'my': 2.0, 'another': 2.0, 'use': 2.0, 'with': 2.0, 'ways': 1.0, 'didn': 2.0, 'swing': 6.0, 'two': 1.0, 'little': 4.0, 'read': 1.0, 'afterwards': 1.0, 'issue': 1.0, 'midnight': 1.0, 'last': 3.0, '3mos': 1.0, 'bit': 1.0, 'after': 3.0, 'front': 1.0, 'fisher': 2.0, 'immediately': 1.0, 'the': 11.0, 'of': 4.0, 'want': 1.0, 'really': 1.0, 'price': 2.0, 'despite': 1.0, 'and': 9.0, 'these': 1.0, 'for': 1.0, 'fp': 2.0, 'swings': 1.0, 'first': 1.0, 'are': 2.0, 'one': 4.0, 'ones': 1.0, 'that': 5.0, 'was': 2.0, 'upgraded': 1.0, 'crank': 1.0, 'knobs': 1.0, 'i': 2.0, 'only': 2.0, 'sleeker': 1.0, 'then': 1.0, 'we': 7.0, 'died': 2.0, 'reviews': 1.0, 'between': 1.0, 'this': 2.0, 'better': 1.0, '1year': 1.0, 'lots': 1.0, 'colic': 1.0, 'taller': 1.0, 'design': 1.0, 'him': 1.0, 'it': 8.0, 'same': 1.0, 'month': 2.0, 'happened': 1.0, 'stabilizer': 1.0, 'get': 2.0, 'legs': 1.0, 'but': 1.0, 'wobbley': 1.0, 'while': 1.0, 'soothe': 1.0, 'plug': 1.0, 'up': 1.0, 'tad': 1.0, 'less': 1.0, 'though': 2.0, 'at': 2.0, 'is': 1.0, 'began': 1.0}
Word element => {'product': 1.0, 'overall': 1.0, 'seconds': 1.0, 'about': 1.0, 'recommend': 1.0, 'minutes': 1.0, 'only': 1.0, 'loop': 2.0, 'in': 1.0, 'would': 1.0, 've': 1.0, 'or': 1.0, 'and': 2.0, 'months': 2.0, 'using': 1.0, 'this': 2.0, 'it': 3.0, 'best': 1.0, 'still': 1.0, 'son': 2.0, 'removed': 1.0, '4': 1.0, 'i': 2.0, 'spent': 1.0, 'at': 2.0, 'space': 1.0, 'loves': 1.0, 'plugs': 1.0, 'started': 1.0, 'not': 1.0, 'the': 5.0, 'my': 2.0, 'is': 2.0, 'side': 2.0, 'cover': 1.0, 'take': 1.0, 'be': 1.0, 'easily': 1.0, 'to': 3.0, 'good': 3.0, 'different': 1.0, 'swing': 1.0, 'before': 1.0, '5': 1.0, '20': 1.0, 'motions': 1.0, 'of': 2.0, 'wash': 1.0, 'up': 2.0, 'wakes': 1.0, 'front': 1.0, 'a': 1.0, 'back': 1.0, 'so': 1.0, 'usually': 1.0, 'does': 1.0, 'ends': 1.0, 'amount': 1.0, 'money': 1.0, '2': 1.0, 'can': 1.0, 'music': 1.0}
Word element => {'just': 1.0, 'swings': 1.0, 'nice': 1.0, 'have': 2.0, 'worth': 1.0, '139': 1.0, 'pay': 1.0, 'willing': 1.0, 'am': 1.0, 'for': 7.0, 'big': 1.0, 't': 2.0, 'burns': 1.0, 'near': 1.0, 'may': 1.0, 'my': 2.0, 'seen': 1.0, 'sqf': 1.0, 'regards': 1.0, 'in': 1.0, 'and': 2.0, 'too': 2.0, 'apartment': 1.0, 'large': 2.0, 'to': 3.0, 'as': 2.0, 'completely': 1.0, 'more': 1.0, 'be': 1.0, 'its': 1.0, 'was': 3.0, 'a': 5.0, 'small': 1.0, 'after': 2.0, 'is': 5.0, 'at': 2.0, 'about': 4.0, 'i': 4.0, 'reading': 1.0, 'like': 1.0, '17': 3.0, 'of': 1.0, 'the': 12.0, 'are': 1.0, 'we': 3.0, 'fine': 1.0, 'reviews': 1.0, 'quality': 2.0, 'but': 2.0, '2': 2.0, 'size': 2.0, 'out': 2.0, 'nothing': 1.0, 'our': 1.0, 'item': 1.0, 'complaints': 1.0, 'got': 1.0, 'this': 2.0, '1400': 1.0, 'there': 1.0, 'house': 1.0, 'that': 2.0, 'concerned': 2.0, 'because': 1.0, 'very': 2.0, 'aren': 2.0, 'sturdy': 1.0, 'purchased': 1.0, '99': 1.0, 'swing': 2.0, 'walmart': 1.0, 'smaller': 1.0, 'so': 1.0, 'nowhere': 1.0, 'motor': 5.0, 'solid': 1.0, 'concerns': 1.0, 'or': 1.0, 'negative': 1.0, 'those': 2.0, 'money': 1.0, 'bought': 1.0, 'years': 1.0, 'extended': 1.0, 'no': 1.0, 'ours': 1.0, 'target': 1.0, 'receiving': 1.0, 'apparently': 1.0, 'other': 2.0, 'same': 1.0, 'product': 1.0, 'year': 1.0, 'price': 1.0, 'amazon': 1.0, 'with': 2.0, 'free': 1.0, 'shipping': 1.0, 'warranty': 2.0, 'main': 1.0, 'new': 2.0, 'options': 1.0, 'biggest': 1.0, 'it': 4.0, 'burning': 1.0, '75': 1.0, 'issue': 1.0, 'complaining': 1.0, 'many': 1.0}
Word element => {'expensive': 1.0, 'tech': 1.0, 'prefer': 1.0, 'different': 1.0, 'more': 2.0, 'babies': 1.0, 'all': 1.0, 'note': 1.0, 'poor': 1.0, 'feature': 1.0, 'music': 1.0, 'is': 1.0, 'smile': 1.0, 'high': 1.0, 'to': 4.0, 'our': 1.0, 'would': 1.0, 'day': 1.0, 'second': 1.0, 'every': 1.0, 'sound': 1.0, 'nurses': 1.0, 'appreciate': 1.0, 'but': 2.0, 'can': 1.0, 'fortunately': 1.0, 'able': 1.0, 'loves': 1.0, 'been': 1.0, 'because': 1.0, 'fall': 1.0, 'that': 3.0, 'was': 1.0, 'where': 1.0, 'pop': 1.0, 'daughter': 2.0, 'in': 4.0, 'they': 2.0, 'has': 1.0, 'angle': 1.0, 'by': 1.0, 'entertain': 1.0, 'sit': 1.0, 'when': 1.0, 'mamaroo': 1.0, 'wonderful': 1.0, 'fact': 1.0, 't': 3.0, 'a': 3.0, 'we': 3.0, 'of': 4.0, 'the': 8.0, 'were': 2.0, 'this': 3.0, 'it': 3.0, 'recline': 1.0, 'slightly': 1.0, 'soft': 1.0, 'with': 2.0, 'quality': 1.0, 'plush': 1.0, 'swing': 3.0, 'hospital': 1.0, 'three': 1.0, 'months': 1.0, 'use': 2.0, 'her': 6.0, 'for': 2.0, 'fabric': 1.0, 'couldn': 1.0, 'and': 5.0, 'side': 1.0, 'happily': 1.0, 'asleep': 1.0, 'good': 1.0, 'made': 1.0, 'my': 3.0, 'me': 1.0, 'feel': 1.0, 'experience': 1.0, 'comfortable': 1.0, 'nice': 1.0, 'better': 1.0, 'i': 2.0, 'had': 1.0, 'as': 3.0, 'leave': 1.0, 'knowing': 1.0, 'crying': 1.0, 'wouldn': 1.0, 'be': 3.0, 'herself': 1.0, 'long': 1.0, 'life': 1.0, 'periods': 1.0, 'first': 1.0, 'are': 2.0, 'seems': 2.0, 'plugged': 1.0, 'also': 1.0, 'batteries': 1.0, 'very': 1.0, 'much': 2.0, 'usually': 1.0, 'amazing': 1.0, 'only': 1.0, 'd': 1.0, 'fortune': 1.0, 'complaint': 1.0, 'she': 3.0, 'spending': 1.0, 'speakers': 1.0, 'thing': 1.0, 'terrible': 1.0, 'don': 1.0}
Word element => {'glad': 1.0, 'swing': 8.0, 'fisher': 1.0, 'get': 1.0, 'before': 1.0, 'oringinally': 1.0, 'read': 1.0, 'is': 4.0, 'around': 1.0, 'does': 1.0, 'to': 3.0, 'all': 1.0, 'pay': 1.0, 'sleep': 1.0, 'unsafe': 1.0, 'and': 4.0, 'time': 2.0, 'whole': 1.0, 'quickly': 1.0, 'as': 2.0, 'lowest': 1.0, 'scatterbug': 1.0, 'a': 3.0, 'upgraded': 1.0, 'our': 1.0, 'how': 1.0, 'worth': 1.0, 'plug': 1.0, 'swung': 1.0, 'the': 10.0, 'of': 4.0, 'cried': 1.0, 'however': 2.0, 'every': 2.0, 'material': 1.0, 'so': 1.0, 'speed': 1.0, 'totally': 2.0, 'that': 1.0, 'case': 1.0, 'penny': 1.0, 'returned': 1.0, 'this': 5.0, 'looked': 1.0, 'him': 1.0, 'recline': 1.0, 'it': 5.0, 'deciding': 1.0, 'am': 1.0, 'motion': 1.0, 'you': 2.0, 'i': 3.0, 'fast': 1.0, '3': 1.0, 'put': 1.0, 'price': 1.0, 'best': 2.0, 'mirror': 1.0, 'baby': 3.0, 'chose': 1.0, 'definately': 1.0, 'lot': 1.0, 'one': 1.0, 'mobile': 1.0, 'features': 1.0, 'are': 1.0, 'reviews': 1.0, 'we': 5.0, 'moving': 1.0, 'with': 2.0, 'seat': 1.0, 'in': 3.0, 'cradle': 1.0, 'sure': 1.0, 'snugs': 1.0, 'nice': 1.0, 'not': 1.0, 'like': 1.0, 'gift': 1.0, 'which': 1.0, 'out': 1.0, 'for': 3.0, 'on': 2.0, 'long': 1.0, 'nap': 1.0, 'adapter': 1.0, 'wonderful': 1.0, 'mom': 1.0, 'received': 1.0, 'also': 1.0, 'he': 1.0, 'far': 1.0, 'superior': 1.0, 'quality': 1.0, 'plush': 1.0, 'previous': 1.0, 'had': 1.0, 'what': 1.0}
Word element => {'get': 1.0, 'pad': 2.0, 'on': 1.0, 'mess': 1.0, 'cleanup': 1.0, 'much': 1.0, 'so': 1.0, 'wasn': 2.0, 'meant': 1.0, 'liner': 1.0, 'getting': 1.0, 'throwup': 1.0, 'waterproof': 2.0, 'using': 2.0, 'by': 1.0, 'washing': 1.0, 'around': 1.0, 'after': 1.0, 'couldn': 1.0, 'issue': 1.0, 'tore': 1.0, 'comes': 1.0, 'section': 1.0, 'plastic': 1.0, 'being': 1.0, 'very': 1.0, 'all': 1.0, 'lining': 1.0, 'is': 2.0, 'puke': 1.0, 'actually': 1.0, 'allowing': 1.0, 'breathing': 1.0, 'help': 1.0, 'bit': 1.0, 'rod': 1.0, 'up': 2.0, 'way': 1.0, 'super': 1.0, 'gave': 1.0, 'one': 1.0, 'reflux': 1.0, 'from': 2.0, 'acid': 1.0, 'baby': 2.0, 'wash': 1.0, 'use': 2.0, 'find': 1.0, 'enough': 2.0, 'off': 1.0, 'hard': 1.0, 'over': 1.0, 'slump': 1.0, 'would': 3.0, 'new': 2.0, 'head': 4.0, 'keep': 5.0, 'part': 1.0, 'problem': 2.0, 'given': 1.0, 'got': 2.0, 'hole': 1.0, 'didn': 1.0, 'even': 1.0, 'they': 2.0, 'plugin': 1.0, 't': 4.0, 'a': 11.0, 'could': 1.0, 'more': 1.0, 'pads': 1.0, 'place': 2.0, 'their': 2.0, 'our': 3.0, 'against': 1.0, 'to': 17.0, 'because': 1.0, 'that': 8.0, 'swing': 8.0, 'came': 1.0, 'only': 2.0, 'it': 12.0, 'older': 2.0, 'away': 2.0, 'free': 1.0, 'be': 3.0, 'fabric': 1.0, 'for': 5.0, 'was': 6.0, 'were': 2.0, 'recommend': 1.0, 'had': 3.0, 'excellent': 1.0, 'seat': 1.0, 'in': 6.0, 'have': 2.0, 'as': 3.0, 'leave': 1.0, 'upright': 2.0, 'and': 11.0, 'when': 4.0, 'dealing': 1.0, 'chair': 1.0, 'batteries': 2.0, 'downside': 1.0, 'old': 1.0, 'power': 2.0, 'fact': 1.0, 'number': 1.0, 'easier': 1.0, 'ways': 1.0, 'right': 2.0, 'little': 3.0, 'two': 1.0, 'wanted': 1.0, 'cradled': 1.0, 'steady': 1.0, 'some': 1.0, 'knew': 1.0, 'we': 3.0, 'moving': 1.0, 'swinging': 1.0, 'or': 1.0, 'while': 2.0, 'charge': 1.0, 'with': 7.0, 'colds': 1.0, 'great': 2.0, 'them': 5.0, 'has': 1.0, 'i': 6.0, 'well': 1.0, 'holding': 1.0, 'both': 2.0, 'child': 3.0, 'price': 1.0, 'ability': 1.0, 'motor': 2.0, 'different': 1.0, 'side': 2.0, 'back': 4.0, 'creates': 1.0, 'not': 2.0, 'cute': 2.0, 'first': 1.0, 'working': 2.0, 'but': 3.0, 'front': 1.0, 'fisher': 1.0, 'drown': 1.0, 'sending': 1.0, 'us': 2.0, 'the': 23.0, 'of': 3.0, 'blowouts': 1.0, 'rocking': 1.0, 'this': 2.0, 'highly': 1.0, 'parents': 1.0}
Word element => {'him': 1.0, 'little': 1.0, 'that': 1.0, 'see': 1.0, 'can': 1.0, 'now': 1.0, 'months': 1.0, 'overall': 1.0, 'off': 1.0, 'part': 1.0, 'purposes': 1.0, 'getting': 1.0, 'cleaning': 1.0, 'also': 1.0, 'small': 1.0, 'have': 1.0, 'colicky': 1.0, 'in': 1.0, 'almost': 1.0, 'his': 1.0, 'was': 1.0, 'wanted': 1.0, 'it': 3.0, 'perfect': 1.0, 'this': 1.0, 'during': 1.0, 'baby': 1.0, 'has': 1.0, 'out': 1.0, 'helped': 1.0, 'only': 1.0, 'do': 1.0, 'my': 1.0, 'so': 1.0, 'too': 1.0, 'and': 1.0, 'plugged': 1.0, 'i': 4.0, 'swing': 3.0, 'take': 1.0, 'many': 1.0, 'is': 3.0, 'you': 1.0, 'when': 2.0, 'times': 2.0, 'loved': 1.0, 'use': 1.0, '6': 1.0, 'he': 1.0, 'washing': 1.0, 'how': 1.0, 'the': 5.0, 'at': 1.0, 'once': 1.0, 'to': 3.0, 'sleep': 1.0, 'least': 1.0, 'we': 1.0, 'a': 2.0, 'day': 1.0, 'whole': 1.0, 'thing': 1.0, 'would': 1.0, 'make': 1.0, 'love': 1.0, 'for': 2.0, 'product': 1.0, 'pillow': 1.0, 'better': 1.0, 'me': 1.0, 'not': 1.0, 'does': 1.0, 'detach': 1.0}
Word element => {'head': 1.0, 'of': 1.0, 'back': 1.0, 'as': 1.0, '9pm': 1.0, '3': 2.0, 'life': 1.0, 'from': 1.0, 'must': 1.0, 'swaddle': 2.0, 'for': 1.0, 'inner': 1.0, 'soft': 1.0, 'this': 1.0, 'first': 1.0, '4': 1.0, 'weeks': 1.0, 'developed': 1.0, 'during': 1.0, '6': 1.0, 'baby': 1.0, 'night': 1.0, 'lo': 2.0, 'will': 1.0, 'slept': 1.0, 'saver': 1.0, '2': 1.0, 'in': 1.0, 'not': 1.0, 'trimester': 1.0, 'or': 3.0, '5': 2.0, 'the': 3.0, 'without': 1.0, 'after': 1.0, 'hrs': 1.0, 'go': 1.0, 'a': 2.0, 'loud': 1.0, 'straight': 1.0, 'through': 1.0, 'then': 2.0, 'my': 1.0, 'another': 1.0, 'when': 1.0, 'am': 1.0, 'again': 1.0, 'cushioning': 1.0, 'with': 1.0, '2or': 1.0, 'ac': 1.0, 'ear': 1.0, 'usually': 1.0, 'power': 1.0, 'motor': 1.0, 'bit': 1.0}
Word element => {'any': 1.0, 'bouncer': 1.0, 'rather': 1.0, 'would': 1.0, 'he': 1.0, 'prefer': 1.0, 'good': 1.0, 'swing': 2.0, 'day': 1.0, 'just': 1.0, 'easy': 1.0, 'product': 1.0, 'to': 1.0, 'assemble': 1.0, 'my': 1.0, 'baby': 1.0, 'a': 2.0, 'doesn': 1.0, 'have': 1.0, 't': 1.0}
Word element => {'baby': 1.0, 'slept': 1.0, 'like': 2.0, 'i': 1.0, 'beautiful': 1.0, 'and': 2.0, 'material': 1.0, 'sounds': 1.0, '4': 1.0, 'or': 1.0, 'when': 1.0, 'times': 1.0, 'a': 1.0, 'visited': 1.0, 'grandchild': 1.0, 'my': 1.0, 'it': 2.0, 'only': 1.0, 'first': 1.0, 'purchased': 1.0, 'for': 1.0, 'effective': 1.0, 'used': 1.0, 'she': 2.0, 'very': 1.0, 'from': 1.0, 'out': 1.0, 'of': 1.0, 'state': 1.0, '3': 1.0, 'soft': 2.0, 'inside': 1.0, 'but': 1.0, 'was': 1.0}
Word element => {'it': 1.0, 'would': 1.0, 'another': 1.0, 'if': 1.0, 'well': 1.0, 'one': 1.0, 'i': 4.0, 'order': 1.0, 'needed': 1.0, 'am': 1.0, 'very': 1.0, 'and': 1.0, 'cost': 1.0, 'happy': 1.0, 'is': 1.0, 'service': 1.0, 'with': 1.0, 'the': 3.0, 'product': 2.0, 'this': 1.0, 'received': 1.0}
Word element => {'different': 1.0, 'with': 1.0, 'swing': 1.0, 'wanted': 1.0, 'my': 1.0, 'motions': 1.0, 'daughter': 1.0, 'for': 1.0, 'it': 2.0, 'putting': 1.0, 'easy': 1.0, 'together': 1.0, 'was': 1.0, 'grandaughter': 1.0, 'bought': 1.0, 'likes': 1.0, 'lots': 1.0, 'has': 1.0, 'of': 1.0, 'she': 1.0, 'fairly': 1.0, 'hope': 1.0, 'options': 1.0}
Word element => {'everytime': 1.0, 'sleep': 1.0, 'our': 1.0, 'puts': 1.0, 'baby': 1.0, 'smoothly': 1.0, 'to': 3.0, 'be': 1.0, 'operates': 1.0, 'and': 1.0, 'as': 1.0, 'together': 1.0, 'easy': 1.0, 'put': 1.0, 'but': 1.0, 'the': 1.0, 'just': 1.0, 'stand': 1.0, 'is': 1.0, 'a': 1.0, 'little': 1.0, 'wide': 1.0, 'i': 1.0, 'suppose': 1.0, 'needs': 1.0, 'stability': 1.0, 'advertised': 1.0, 'it': 1.0, 'for': 1.0}
Word element => {'room': 1.0, 'works': 1.0, 'are': 1.0, 'colors': 1.0, 'also': 1.0, 'didn': 1.0, 'my': 1.0, 'would': 1.0, 'an': 1.0, 'if': 2.0, 'larger': 1.0, 'up': 1.0, 'take': 1.0, 'parents': 1.0, 'easy': 1.0, 'very': 1.0, 'you': 1.0, 'easily': 1.0, 'foot': 1.0, 'issue': 1.0, 'head': 1.0, 'side': 2.0, 'from': 1.0, 'that': 2.0, 'crib': 1.0, 'his': 1.0, 'and': 3.0, 'nice': 1.0, '1': 1.0, 'me': 1.0, 'space': 1.0, 'at': 1.0, 'be': 1.0, 'him': 1.0, 'it': 7.0, 'lost': 1.0, 'this': 2.0, 'mind': 1.0, 'with': 1.0, 'he': 3.0, 'swing': 1.0, 'so': 2.0, 'rotated': 1.0, 'time': 1.0, 'neutral': 1.0, 'now': 1.0, 'weeks': 1.0, 'naps': 1.0, 'doesn': 1.0, 'think': 1.0, '3': 1.0, 'have': 3.0, 'must': 1.0, 'deprived': 1.0, 'love': 1.0, 'for': 3.0, 'does': 1.0, 'because': 1.0, 'newborns': 1.0, 'any': 1.0, 'to': 4.0, 'our': 1.0, 'sleep': 2.0, 'every': 1.0, 'use': 2.0, 'i': 2.0, '4': 1.0, 'months': 1.0, 'but': 1.0, 'can': 1.0, '2': 1.0, 'we': 3.0, 'go': 1.0, 'a': 2.0, 't': 2.0, 'the': 2.0, 'makes': 1.0, 'old': 1.0, 'started': 1.0, 'night': 1.0, 'son': 1.0, 'still': 1.0, 'in': 3.0, 'using': 1.0, 'which': 1.0, 'bother': 1.0, 'is': 3.0, 'sleeps': 1.0, 'through': 1.0}
Word element => {'bouncer': 1.0, 'able': 1.0, 'well': 2.0, 'ans': 1.0, 'worked': 1.0, 'very': 2.0, 'by': 1.0, 'swing': 3.0, 'or': 1.0, 'one': 2.0, 'for': 1.0, 'childcare': 1.0, 'i': 1.0, 'this': 2.0, 'soothing': 1.0, 'direction': 1.0, 'it': 1.0, 'been': 1.0, 'that': 2.0, 'we': 1.0, 'goes': 1.0, 'find': 1.0, 'build': 1.0, 'my': 1.0, 'was': 1.0, 'matches': 1.0, 'had': 1.0, 'purchased': 1.0, 'either': 1.0, 'sturdy': 1.0, 'would': 1.0, 'not': 1.0, 'nic': 1.0, 'priced': 1.0, 'right': 1.0, 'looking': 1.0, 'works': 1.0, 'great': 1.0, 'the': 1.0, 'itself': 1.0, 'in': 1.0, 'seat': 1.0, 'our': 1.0, 'to': 1.0, 'center': 1.0, 'any': 1.0, 'baby': 1.0, 'fussy': 1.0, 'too': 1.0, 'and': 1.0}
Word element => {'sometimes': 1.0, 'adjusted': 1.0, 'to': 1.0, 'open': 1.0, 'right': 1.0, 'perf': 1.0, 'legs': 1.0, 'even': 1.0, 'not': 1.0, 'just': 3.0, 'the': 1.0, 'get': 1.0, 'unstable': 1.0, 'a': 2.0, 'little': 1.0, 'totes': 1.0, 'in': 1.0, 'but': 1.0, 'an': 1.0, 'unsafe': 1.0, 'it': 1.0, 'with': 1.0, 'wobbly': 1.0, 'way': 1.0, 'like': 1.0, 'fully': 1.0, 'table': 1.0, 'need': 1.0, 'coffee': 1.0}
Word element => {'one': 1.0, 'or': 1.0, 'too': 1.0, 'has': 1.0, '4moms': 1.0, 'get': 1.0, 'and': 1.0, 'spend': 1.0, 'bounce': 1.0, 'buy': 1.0, 'swing': 2.0, 'extra': 1.0, 'entertained': 1.0, 'neutral': 1.0, 'she': 1.0, 'anyways': 1.0, 'my': 1.0, 'the': 4.0, 'colored': 1.0, 'quiet': 1.0, 'not': 1.0, 'is': 2.0, 'option': 1.0, 'but': 1.0, 'with': 1.0, 'this': 1.0, 'lack': 1.0, 'that': 1.0, 'luster': 1.0, 'swung': 1.0, 'mobile': 1.0, 'likes': 1.0, 'lights': 1.0, 'to': 2.0, 'be': 1.0, 'money': 1.0, 'baby': 1.0, 'bounced': 1.0, 'over': 1.0}
Word element => {'service': 1.0, 'customer': 1.0, 'be': 1.0, 'corner': 1.0, 'star': 1.0, 'merits': 1.0, 'still': 1.0, 'with': 1.0, 'experience': 1.0, 'good': 1.0, 'previous': 1.0, 'review': 1.0, 'expected': 1.0, 'perfect': 1.0, 'not': 1.0, 'cutting': 1.0, 'amazon': 2.0, 'more': 1.0, 'is': 2.0, 'fine': 1.0, 'cheaply': 1.0, 'flimsy': 1.0, 'was': 2.0, 'to': 2.0, 'packaging': 1.0, 'light': 1.0, 'arrival': 1.0, 'clips': 1.0, 'on': 1.0, 'but': 2.0, 'will': 2.0, 'time': 1.0, 'dome': 1.0, 'very': 1.0, 'update': 1.0, 'replacement': 2.0, 'and': 1.0, 'the': 9.0, 'are': 1.0, 'condition': 1.0, 'reviews': 1.0, 'broken': 1.0, 'which': 2.0, 'new': 1.0, 'arrive': 1.0, 'in': 2.0, 'plastic': 1.0, 'grandchild': 1.0, 'hopefully': 1.0, 'my': 1.0, 'if': 1.0, 'choice': 1.0, '4': 1.0, 'expediting': 1.0, 'i': 1.0, 'otherwise': 1.0, 's': 1.0, 'a': 1.0, 'we': 1.0, 'expect': 1.0, 'thoughtful': 1.0, 'for': 1.0, 'product': 2.0, 'made': 1.0, 'live': 1.0, 'materials': 1.0, 'up': 1.0, 'excellent': 2.0, 'should': 1.0, 'prompted': 1.0}
Word element => {'love': 1.0, 'also': 1.0, 'bouncer': 1.0, 'vibrating': 1.0, 'matching': 1.0, 'got': 1.0, 'much': 1.0, 'so': 1.0, 'snugabunny': 1.0, 'loved': 1.0, 'in': 1.0, 'usually': 1.0, 'not': 1.0, 'old': 1.0, 'sound': 1.0, 'several': 1.0, 'settings': 1.0, 'really': 2.0, 'sleeps': 1.0, 'is': 2.0, 'i': 5.0, 'fan': 1.0, 'fabulous': 1.0, 'are': 2.0, 'the': 4.0, 'these': 1.0, 'options': 1.0, 'ones': 1.0, 'this': 2.0, 'soft': 1.0, 'and': 3.0, 'there': 1.0, 'of': 1.0, 'takes': 1.0, 'swing': 2.0, 'great': 1.0, 'comfortable': 1.0, 'one': 1.0, 'well': 2.0, '3': 1.0, 'on': 1.0, 'things': 1.0, 'music': 2.0, 'but': 1.0, 'naps': 1.0, 'which': 1.0, 'like': 1.0, 'a': 1.0, 's': 1.0, 'choices': 1.0, 'nature': 1.0, 'as': 2.0, 'my': 1.0, 'it': 3.0, 'month': 1.0, 'm': 1.0, 'both': 1.0, 'good': 1.0, 'different': 1.0, 'her': 1.0}
Word element => {'might': 1.0, 'time': 1.0, 'amounts': 1.0, 'hard': 1.0, 'work': 1.0, 'but': 3.0, 'mobile': 1.0, 'bells': 1.0, 'lot': 1.0, 'since': 1.0, 'at': 1.0, 'swing': 3.0, 'designed': 1.0, 'times': 1.0, 'you': 2.0, 'the': 9.0, 'of': 4.0, 'there': 1.0, 'with': 1.0, 'singing': 1.0, 'whistles': 1.0, 'bouncing': 1.0, 'rocking': 1.0, 'that': 4.0, 'different': 1.0, 'are': 1.0, 'my': 2.0, 'i': 5.0, 'etc': 1.0, '4': 1.0, 'tried': 1.0, 'else': 1.0, 'would': 3.0, 'have': 3.0, 'relieved': 1.0, 'tool': 1.0, 'and': 4.0, 'imagine': 1.0, 'a': 5.0, 'were': 1.0, 'does': 1.0, 'choose': 1.0, 'matter': 1.0, 'than': 1.0, 'what': 4.0, 'had': 1.0, 'prolonged': 1.0, 'put': 1.0, 'on': 3.0, 'your': 1.0, 'baby': 4.0, 'was': 2.0, 'no': 1.0, 'about': 1.0, 'once': 1.0, 'comes': 1.0, 'babies': 1.0, 'more': 1.0, 'cater': 1.0, 'it': 4.0, 'mechanisms': 1.0, 'higher': 1.0, 't': 2.0, 'likes': 1.0, 'also': 2.0, 'can': 1.0, 'so': 1.0, 'speed': 1.0, '8': 1.0, 'goes': 1.0, 'up': 1.0, 'set': 1.0, 'used': 1.0, 'transition': 1.0, 'music': 1.0, 'his': 1.0, 'to': 8.0, 'bassinet': 1.0, 'motor': 1.0, 'he': 1.0, 'thoroughly': 1.0, 'knocked': 1.0, 'nothing': 1.0, 'out': 1.0, 'really': 1.0, 'isn': 1.0, 'be': 2.0, 'sleeper': 1.0, 'asleep': 1.0, 'based': 1.0, 'never': 1.0, 'some': 1.0, 'doesn': 1.0, 'setting': 1.0, 'all': 1.0, 'other': 1.0, 'swinging': 1.0, 'reviews': 1.0, 'if': 1.0, 'kept': 1.0, 'in': 1.0, 'for': 1.0}
Word element => {'time': 1.0, 'it': 1.0, 'him': 2.0, 'and': 2.0, 'sleep': 2.0, 'to': 4.0, 'worked': 1.0, 'life': 1.0, 'able': 1.0, 'was': 2.0, 'couldn': 1.0, 'down': 1.0, 'calm': 1.0, 'go': 1.0, 'a': 1.0, 'saver': 1.0, 'we': 1.0, 'get': 2.0, 'this': 2.0, 't': 1.0, 'our': 1.0, 'every': 1.0, 'baby': 1.0}
Word element => {'without': 1.0, 'ever': 1.0, 'how': 1.0, 'different': 1.0, 'adjusts': 1.0, 'on': 1.0, 'and': 1.0, 'know': 1.0, 'to': 2.0, 'easy': 1.0, 'for': 1.0, 'love': 1.0, 'child': 1.0, 'clean': 1.0, 'quiet': 1.0, 'depending': 1.0, 'prefers': 1.0, 'lived': 1.0, 'baby': 1.0, 'don': 1.0, 'soft': 1.0, 'what': 1.0, 'swing': 1.0, 'my': 2.0, 'positions': 1.0, 'i': 3.0, 'first': 1.0, 'it': 2.0, 'this': 1.0, 't': 1.0}
Word element => {'sound': 1.0, 'off': 1.0, 'top': 1.0, 'to': 1.0, 'electricity': 1.0, 'between': 1.0, 'batteries': 1.0, 'choice': 1.0, 'this': 1.0, 'swing': 1.0, 'is': 1.0, 'it': 1.0, 'love': 1.0, 'are': 1.0, 'the': 3.0, 'different': 1.0, 'incredible': 2.0, 'and': 3.0, 'i': 1.0, 'mobile': 1.0, 'options': 1.0, 'position': 1.0}
Word element => {'if': 1.0, 'a': 1.0, 'product': 1.0, 'be': 1.0, 'would': 1.0, 'others': 1.0, 'durable': 1.0, 'it': 1.0, 'this': 1.0, 'stopped': 1.0, 'more': 1.0, 'great': 1.0, 'the': 1.0, 'swing': 1.0, 'many': 1.0, 'working': 1.0, 'like': 1.0, 'just': 1.0, 'four': 1.0, 'use': 1.0, 'after': 1.0, 'about': 2.0, 'on': 1.0, 'months': 1.0, 'i': 1.0, 'estimate': 1.0, 'were': 1.0, 'our': 1.0, '450': 1.0, '400': 1.0, 'motor': 1.0, 'at': 1.0, 'hours': 1.0, 'of': 1.0}
Word element => {'excellent': 1.0, 'amazing': 1.0, 'because': 2.0, 'both': 1.0, 'purchased': 1.0, 'pleased': 1.0, 'more': 1.0, 've': 1.0, 'think': 1.0, 'don': 1.0, 'shaking': 1.0, 'vigorous': 1.0, 'after': 2.0, 'some': 1.0, 's': 3.0, 'a': 5.0, 'could': 2.0, 'using': 2.0, 'hold': 1.0, 'd': 1.0, 'found': 1.0, 'non': 1.0, 'old': 1.0, 'method': 1.0, 'in': 1.0, 'longs': 1.0, 'his': 1.0, 'been': 1.0, 'forth': 1.0, 'and': 5.0, 'price': 2.0, 'child': 2.0, 'cradle': 2.0, 'preparing': 1.0, 'colicky': 1.0, 'first': 1.0, 'was': 2.0, 'rough': 1.0, 'help': 1.0, 'though': 1.0, 'all': 1.0, 'our': 3.0, 'much': 1.0, 'put': 2.0, 'disappointment': 1.0, 'basically': 1.0, 'of': 2.0, 'the': 7.0, 'would': 2.0, 'it': 3.0, 'him': 2.0, 'from': 1.0, 'stop': 1.0, 'day': 1.0, 'days': 1.0, 'just': 2.0, 'this': 1.0, 'few': 1.0, 'with': 2.0, 'or': 1.0, 'out': 2.0, 't': 1.0, 'replacement': 2.0, 'such': 1.0, 'cry': 1.0, 'for': 3.0, 'nice': 1.0, 'to': 4.0, 'pulled': 1.0, '2': 2.0, 'hour': 1.0, 'sadly': 1.0, '5': 1.0, 'nap': 1.0, 'he': 4.0, 'motor': 2.0, 'away': 1.0, 'months': 1.0, 'next': 1.0, 'top': 1.0, 'recently': 1.0, '2nd': 2.0, 'swing': 2.0, 'us': 1.0, 'mailed': 1.0, 'is': 2.0, 'easier': 1.0, 'we': 7.0, 'then': 1.0, 'died': 1.0, 'knock': 1.0, 'i': 3.0, 'fisher': 2.0, 'about': 1.0, 'very': 1.0, 'being': 1.0, 'service': 1.0, 'e': 1.0, 'if': 1.0, 'low': 1.0, 'quality': 1.0, 'send': 2.0, 'see': 1.0, 'they': 2.0, 'had': 3.0, 'offered': 1.0, 'my': 2.0, 'me': 1.0, 'back': 1.0, 'complete': 1.0}
Word element => {'munchkin': 1.0, 'use': 1.0, 'll': 1.0, 'get': 1.0, 'sure': 1.0, 'infants': 1.0, 'older': 1.0, 'really': 1.0, 'so': 1.0, 'made': 2.0, 'not': 2.0, 'tray': 1.0, 'months': 1.0, 'of': 1.0, 'couple': 1.0, 'had': 1.0, 'have': 1.0, 'lambie': 1.0, 'better': 1.0, 'way': 1.0, 'sounds': 1.0, 'the': 8.0, 'is': 1.0, 'more': 1.0, 'with': 3.0, 'stars': 1.0, 'love': 2.0, 'for': 3.0, 'fact': 1.0, 's': 1.0, 'a': 2.0, 'we': 4.0, 'saves': 1.0, 'to': 1.0, 'our': 1.0, 'it': 7.0, 'she': 1.0, 'baby': 1.0, 'music': 1.0, 'can': 1.0, 'but': 1.0, 'money': 1.0, 'colors': 1.0, 'next': 1.0, 'babies': 1.0, 'gave': 1.0, 'that': 1.0, 'loves': 1.0, 'into': 1.0, 'see': 1.0, 'experienced': 1.0, 'girl': 1.0, 'swing': 2.0, 'her': 1.0, 'even': 1.0, '4': 1.0, 'i': 2.0, 're': 1.0, 'photo': 1.0, 'no': 1.0, 'wall': 1.0, 'because': 1.0, 'than': 2.0, 'does': 1.0, 'power': 1.0, 'which': 1.0, 'clearer': 1.0, 'us': 1.0, 'think': 1.0, 'on': 1.0, 'are': 2.0, 'little': 2.0, 'very': 1.0, 'this': 1.0, 'soft': 1.0, 'plugged': 1.0, 'loads': 1.0, 'and': 6.0, 'problems': 1.0, 'warm': 1.0, 'matches': 1.0, 'be': 1.0, 'decor': 1.0, 'in': 1.0, 'much': 1.0, 'nursery': 1.0}
Word element => {'enough': 1.0, 'at': 1.0, 'time': 1.0, 'of': 2.0, 'long': 1.0, 'amount': 1.0, 'reasonable': 1.0, 'if': 1.0, 'babies': 1.0, 'have': 1.0, 'daughter': 1.0, 'given': 1.0, 'for': 4.0, 'couple': 1.0, 'five': 1.0, 'and': 1.0, 'least': 1.0, 'she': 1.0, 'gift': 1.0, 'to': 1.0, 'had': 1.0, 'granddaughter': 1.0, 'was': 1.0, 'would': 1.0, 'a': 3.0, 'operated': 1.0, 'working': 1.0, 'stopped': 1.0, 'shower': 1.0, 'this': 1.0, 'it': 5.0, 'stars': 1.0, '3': 1.0, 'months': 1.0, 'our': 2.0, 'that': 1.0, 'is': 1.0, 'use': 1.0, 'loved': 1.0, 'then': 1.0, 'just': 1.0, 'i': 1.0}
Word element => {'very': 2.0, 'positions': 1.0, 'incline': 1.0, 'enough': 1.0, 'seat': 1.0, 'because': 1.0, 'for': 1.0, 'is': 1.0, 'reflux': 1.0, 'has': 2.0, 'soundly': 1.0, 'perfect': 1.0, 'also': 1.0, 'in': 2.0, 'mommy': 1.0, 'acid': 1.0, 'sleep': 1.0, 'loves': 1.0, 'and': 3.0, 'bouncer': 1.0, 'mamaroo': 1.0, 'have': 1.0, 'all': 2.0, 'an': 1.0, 'will': 1.0, 'naps': 1.0, 'but': 1.0, 'this': 2.0, 'it': 2.0, 'nanny': 1.0, 'rock': 1.0, 'others': 1.0, 'nap': 1.0, 'play': 1.0, 'we': 1.0, 'happy': 2.0, 'my': 2.0, 'the': 2.0, 'baby': 3.0, 'she': 1.0, 'swing': 2.0, 'over': 1.0, 'of': 1.0, 'takes': 1.0, 'both': 1.0, 'her': 2.0}
Word element => {'calms': 1.0, 'rocking': 1.0, 'down': 1.0, 'him': 2.0, 'puts': 1.0, 'falls': 1.0, 'asleep': 1.0, 'had': 1.0, 'for': 1.0, 'soon': 1.0, 'who': 1.0, 'friend': 1.0, 'as': 2.0, 'best': 1.0, 'recently': 1.0, 'boy': 1.0, 'my': 1.0, 'the': 2.0, 'bought': 1.0, 'i': 1.0, 'she': 2.0, 'gentle': 1.0, 'raves': 1.0, 'baby': 2.0, 'about': 1.0, 'how': 1.0, 'a': 1.0, 'convenient': 1.0, 'helpful': 1.0, 'this': 1.0, 'it': 1.0, 'and': 1.0, 'is': 1.0}
Word element => {'again': 1.0, 'it': 1.0, 'overall': 1.0, 'room': 2.0, 'move': 1.0, 'easy': 1.0, 'although': 1.0, 'nice': 1.0, 'ability': 1.0, 'i': 2.0, 'has': 2.0, 'expected': 1.0, 'well': 2.0, 'a': 2.0, 'is': 1.0, 'side': 2.0, 'aside': 1.0, 'buy': 1.0, 'looking': 2.0, 'from': 2.0, 'performed': 1.0, 'too': 1.0, 'reposition': 1.0, 'cradle': 1.0, 'good': 1.0, 'loves': 1.0, 'our': 1.0, 'as': 3.0, 'to': 7.0, 'sleep': 1.0, 'swing': 1.0, 'little': 1.0, 'ii': 1.0, 'seems': 1.0, 'like': 1.0, 'at': 1.0, 'swinging': 2.0, 'motion': 1.0, 'he': 2.0, 'up': 1.0, 'd': 1.0, 'best': 1.0, 'mirror': 1.0, 'fairly': 1.0, 'slowed': 1.0, 'him': 1.0, 'got': 1.0, 'the': 6.0, 'heavier': 1.0, 'but': 1.0, 'put': 1.0, 'son': 1.0, 'still': 1.0, 'being': 1.0, 'functions': 1.0, 'enough': 1.0}
Word element => {'buy': 1.0, 'her': 1.0, 'as': 2.0, 'great': 1.0, 'it': 2.0, 'loving': 1.0, 'bought': 1.0, 'this': 1.0, 'much': 1.0, 'still': 1.0, '7': 1.0, 'ago': 1.0, 'new': 1.0, 'granddaughter': 1.0, 'is': 1.0, 'months': 1.0, 'crib': 1.0, 'in': 2.0, 'for': 1.0, 'sleeps': 2.0, 'she': 2.0}
Word element => {'only': 1.0, 'chose': 1.0, 'take': 1.0, 'will': 2.0, 'happy': 1.0, 'guess': 1.0, 'nothing': 1.0, 'best': 1.0, 'absolutely': 1.0, 'noise': 1.0, 'hear': 1.0, 'they': 1.0, 'very': 1.0, 'read': 1.0, 'getter': 1.0, 'motor': 1.0, 'attention': 1.0, 'down': 1.0, 'seller': 1.0, 'motion': 1.0, 'tell': 1.0, 'circular': 1.0, 'in': 1.0, 'ther': 1.0, 'an': 1.0, 'moves': 1.0, 'mobile': 1.0, 'faith': 1.0, 'flower': 1.0, 'want': 1.0, 'if': 1.0, 'detail': 1.0, 'the': 14.0, 'time': 1.0, 'so': 1.0, 'comforting': 1.0, 'is': 5.0, 'heard': 1.0, 'not': 1.0, 'and': 5.0, 'noisy': 1.0, 'colors': 1.0, 'about': 1.0, 'pleasantly': 1.0, 'stated': 2.0, 'i': 10.0, 'products': 1.0, 'had': 1.0, 'purchased': 1.0, 'worried': 1.0, 'soft': 1.0, 'this': 2.0, 'cover': 1.0, 'swing': 4.0, 'care': 1.0, 'other': 1.0, 'are': 1.0, 'another': 1.0, 'my': 2.0, 'heart': 1.0, 'it': 3.0, 'annoying': 1.0, 'that': 5.0, 'chiming': 1.0, 'we': 1.0, 'a': 4.0, 'review': 1.0, 'well': 2.0, 'lot': 1.0, 'of': 5.0, 'must': 2.0, 'peaceful': 1.0, 'have': 4.0, 'faulty': 1.0, 'up': 1.0, 'missed': 1.0, 'sound': 1.0, 'to': 1.0, 'seat': 1.0, 'grandaughter': 2.0, 'as': 5.0, 'beautiful': 1.0, 'was': 3.0, 'problem': 1.0, 'tried': 1.0, 'frame': 1.0, 'nature': 1.0, 'sturdyness': 1.0, 'music': 2.0, 'but': 1.0, 'surprised': 1.0, 'quality': 1.0, 'for': 3.0, 'love': 1.0, 'product': 1.0}
Word element => {'1': 1.0, 'make': 1.0, 'free': 1.0, 'housing': 1.0, 'us': 1.0, 'outstanding': 1.0, 'customer': 1.0, 'price': 1.0, 'fisher': 1.0, '2': 3.0, 're': 1.0, 'know': 1.0, 'replacement': 1.0, 't': 1.0, 'don': 1.0, 'is': 1.0, 'snug': 1.0, 'dead': 1.0, 'now': 2.0, 'morning': 1.0, 'started': 1.0, 'because': 2.0, 'they': 1.0, 'joking': 1.0, 'let': 1.0, 'trying': 1.0, 've': 1.0, 'which': 1.0, 'like': 1.0, 'assemble': 2.0, 'stars': 2.0, 'for': 1.0, 'enough': 1.0, 'off': 1.0, 'update': 1.0, 'long': 1.0, 'via': 1.0, 'came': 1.0, 'after': 1.0, 'are': 1.0, 'cute': 1.0, 'problem': 1.0, 'colicky': 1.0, 'rip': 1.0, 'act': 1.0, 'sending': 1.0, 'edited': 1.0, 'd': 1.0, 'myself': 1.0, 'stop': 1.0, 'day': 2.0, 'without': 1.0, 'days': 1.0, 'went': 1.0, 'born': 1.0, 'lbs': 1.0, 'was': 2.0, 'husband': 1.0, 'how': 1.0, 'our': 2.0, 'all': 1.0, 'old': 1.0, 'laundry': 1.0, 'yay': 1.0, 'little': 1.0, 'very': 1.0, 'swing': 3.0, 'changed': 1.0, 'baby': 2.0, 'you': 1.0, 'night': 2.0, 'a': 4.0, 'bunny': 2.0, 'only': 2.0, '16': 1.0, 'do': 1.0, 'this': 2.0, 'work': 1.0, 'can': 2.0, 'sleep': 1.0, 'back': 1.0, 'star': 1.0, 'would': 1.0, 'weeks': 1.0, 'calm': 1.0, 'my': 3.0, 'me': 1.0, 'and': 7.0, 'him': 4.0, 'it': 7.0, 'starting': 1.0, 'guy': 1.0, 'ups': 1.0, '4': 4.0, 'i': 6.0, 'aside': 1.0, 'had': 1.0, 'couple': 1.0, 'out': 1.0, 'the': 5.0, 'of': 1.0, 'once': 1.0, 'going': 1.0, 'finally': 1.0, 'feed': 1.0, 'some': 1.0, 'swaddle': 1.0, 'died': 1.0, 'we': 3.0, 'moving': 1.0, 'm': 1.0, 'in': 1.0, 'light': 1.0, 'ears': 1.0, 'love': 2.0, 'he': 3.0, 'motor': 3.0, 'about': 1.0, 'today': 1.0, 'taking': 1.0, 'crying': 1.0, 'too': 1.0, 'one': 1.0, 'get': 3.0, 'months': 1.0, 'grinding': 1.0, 'used': 1.0, 's': 4.0, 'heavily': 1.0, 'service': 1.0, 'if': 1.0, 'every': 1.0, 'to': 8.0, 'straight': 1.0, 'weighs': 1.0}
Word element => {'registry': 1.0, 'of': 1.0, 'preggo': 1.0, 'same': 1.0, 'must': 1.0, 'have': 1.0, 'i': 1.0, 'set': 1.0, 'you': 2.0, 'different': 1.0, 'and': 1.0, 'speed': 1.0, 'soothing': 1.0, 'very': 1.0, 'additionally': 1.0, 'during': 1.0, 'there': 2.0, 'settings': 1.0, 'dinner': 1.0, 'would': 1.0, 'with': 1.0, 'room': 1.0, 'in': 2.0, 'had': 1.0, 'arms': 1.0, 'need': 1.0, 'wanted': 1.0, 'whenever': 1.0, 'do': 1.0, 'failed': 1.0, 'positioned': 1.0, 'never': 1.0, 'reviews': 1.0, 'baby': 3.0, 'pricey': 1.0, 'friends': 1.0, 'time': 1.0, 'so': 1.0, 'bit': 1.0, 'though': 1.0, 'seemed': 1.0, 'for': 3.0, 'amazon': 1.0, 'side': 1.0, 'is': 2.0, 'swing': 6.0, 'one': 1.0, 'months': 1.0, 'haves': 1.0, 'this': 3.0, 'it': 2.0, 'from': 1.0, 'day': 1.0, 's': 1.0, 'we': 4.0, 'a': 4.0, 'the': 10.0, 'gift': 1.0, 'rest': 1.0, 'after': 1.0, 'overall': 1.0, 'positive': 1.0, 'now': 1.0, 'was': 1.0, 'dining': 1.0, 'received': 1.0, 'he': 1.0, '6': 1.0, 'old': 1.0, 'can': 1.0, 'music': 1.0, 'but': 2.0, 'recommended': 1.0, 'registering': 1.0, 'has': 1.0, 'just': 1.0, 'life': 1.0, 'are': 1.0, 'saver': 1.0, 'us': 3.0, 'born': 1.0, 'my': 2.0, 'been': 1.0, 'loves': 1.0, 'all': 1.0, 'our': 2.0, 'as': 1.0, 'to': 7.0, 'sleep': 1.0, 'him': 1.0, 'be': 1.0, 'your': 1.0, 'put': 2.0, 'on': 3.0, 'carried': 1.0}
Word element => {'no': 1.0, 's': 1.0, 'though': 1.0, 'during': 1.0, 'drive': 1.0, 'will': 1.0, 'thing': 1.0, 'sound': 1.0, 'deal': 1.0, 'baby': 1.0, 're': 2.0, 'again': 1.0, 'purchased': 1.0, 'if': 1.0, 'still': 1.0, 'have': 1.0, 'would': 1.0, 'than': 1.0, 'find': 1.0, 'does': 1.0, 'ordering': 1.0, 'cute': 1.0, 'sounds': 1.0, 'also': 2.0, 'looking': 1.0, 'swings': 1.0, 'cheaper': 1.0, 'all': 1.0, 'sleep': 4.0, 'our': 1.0, 'and': 5.0, 'a': 3.0, 't': 2.0, 'adorable': 1.0, 'something': 3.0, 'super': 1.0, 'in': 6.0, 'obnoxiously': 1.0, 'was': 1.0, 'store': 2.0, 'my': 4.0, 'for': 4.0, 'or': 1.0, 'crib': 1.0, 'probably': 1.0, 'didn': 1.0, 'sorts': 1.0, 'even': 1.0, 'local': 1.0, 'newborn': 2.0, 'needed': 1.0, 'works': 1.0, 'ish': 1.0, 'day': 1.0, 'etc': 1.0, 'of': 1.0, 'cow': 1.0, 'the': 11.0, 'saw': 1.0, 'this': 2.0, 'amazon': 1.0, 'at': 1.0, 'is': 4.0, 'want': 1.0, 'everything': 1.0, 'much': 1.0, 'hum': 1.0, 'put': 2.0, 'guy': 1.0, 'it': 7.0, 'him': 1.0, 'crazy': 1.0, 'as': 2.0, 'lowest': 1.0, 'from': 1.0, 'son': 1.0, 'on': 3.0, 'near': 1.0, 'but': 3.0, 'sensitive': 1.0, 'can': 1.0, 'his': 1.0, 'music': 1.0, 'going': 1.0, 'holy': 1.0, 'yet': 1.0, 'motor': 1.0, 'that': 1.0, 'big': 2.0, 'runs': 1.0, 'to': 5.0, 'pretty': 1.0, 'cradle': 1.0, 'swing': 3.0, 'you': 3.0, 'loud': 1.0, 'not': 2.0, 'low': 1.0, 'white': 1.0, 'plush': 1.0, 'noise': 1.0, 'up': 1.0, 'noisy': 1.0, 'snugabunny': 1.0, 'bedroom': 1.0, 'ended': 1.0, 'perfect': 1.0, 'bed': 1.0, 'with': 2.0, 'nice': 1.0, 'little': 2.0, 'setting': 1.0, 'positive': 1.0, 'side': 1.0, 'mobile': 1.0, 'i': 7.0, 'fast': 1.0, 'well': 1.0, 'just': 1.0}
Word element => {'themselves': 1.0, 'can': 1.0, 'where': 1.0, 'pair': 1.0, 'third': 1.0, 'wonderful': 1.0, 'family': 1.0, 'recommend': 1.0, 'get': 1.0, 'will': 1.0, 'dislikes': 1.0, 'helps': 1.0, 'newborn': 1.0, 'fabrics': 1.0, 'gird': 1.0, 'harness': 1.0, 'tipping': 1.0, 'soft': 1.0, 'without': 1.0, 'interact': 1.0, 'visit': 1.0, 'hands': 1.0, 'children': 1.0, 'other': 1.0, 'definite': 1.0, 'aunts': 1.0, 'parents': 1.0, 'irritating': 1.0, 'base': 1.0, 'searched': 1.0, 'been': 1.0, 'position': 1.0, 'loves': 1.0, 'and': 8.0, 'remembered': 1.0, 'growing': 1.0, 'comforting': 1.0, 'swing': 5.0, '8217': 5.0, 'up': 2.0, 'product': 1.0, 'child': 2.0, 'over': 2.0, 'mind': 1.0, 'with': 5.0, 'wind': 1.0, 'did': 1.0, 'very': 1.0, 'himself': 1.0, 'but': 1.0, 'his': 1.0, 'music': 1.0, 'my': 2.0, 'purchase': 1.0, 'nicknamed': 1.0, 'wasn': 1.0, 'for': 5.0, 'allowing': 1.0, 'actually': 1.0, 'a': 11.0, 's': 1.0, 'reviews': 1.0, 'we': 1.0, 'fear': 1.0, 'much': 1.0, 'niece': 2.0, 'snugabunny': 1.0, 'decided': 1.0, 'as': 3.0, 'to': 9.0, 'in': 4.0, 'seat': 2.0, 'it': 5.0, 'are': 1.0, 'plus': 1.0, 'first': 1.0, 'loved': 1.0, 'above': 1.0, 'had': 1.0, 'purchased': 1.0, 'looking': 2.0, 'buy': 1.0, 'well': 1.0, 'i': 6.0, 'inclined': 1.0, 'able': 3.0, 'use': 2.0, 'how': 1.0, 'he': 1.0, 'mirror': 2.0, 'was': 4.0, 'decision': 1.0, 'great': 1.0, 'has': 1.0, '8216': 2.0, 'although': 1.0, 'gives': 1.0, 'sturdy': 1.0, 'they': 2.0, 'mechanical': 2.0, 'any': 1.0, 'keeps': 1.0, 'mom': 3.0, 'head': 1.0, 'by': 1.0, 'this': 2.0, 'few': 1.0, 'think': 2.0, 't': 2.0, 'likes': 1.0, 'rarity': 1.0, 'little': 1.0, 'device': 1.0, 'the': 19.0, 'of': 4.0, 'that': 1.0, 'because': 2.0, 'she': 2.0, 'register': 1.0, 'jealous': 2.0, 'baby': 6.0, 'newborns': 1.0, 'calms': 1.0, 'cozy': 1.0, 'down': 1.0, 'soothing': 1.0, 'isn': 1.0, 'their': 1.0, 'after': 1.0, 'would': 1.0, 'weeks': 1.0, 'extra': 1.0, 'trying': 1.0, 'when': 2.0, 'roll': 1.0, 'support': 2.0, 'look': 1.0, 'is': 5.0, 'at': 3.0, 'birth': 1.0, '8211': 4.0, 'good': 1.0, 'gift': 3.0, 'which': 1.0, 'not': 1.0}
Word element => {'5': 1.0, 'utilize': 1.0, 'swings': 1.0, 'those': 1.0, 'wall': 1.0, 'the': 1.0, 'into': 1.0, 'in': 1.0, 'love': 1.0, 'for': 1.0, 'overall': 1.0, 'sleeps': 1.0, 'plus': 1.0, 'son': 1.0, 'is': 1.0, 'amazing': 1.0, 'feel': 1.0, 'my': 1.0, 'versus': 1.0, 'and': 2.0, 'give': 1.0, 'batteries': 1.0, 'swing': 2.0, 'that': 2.0, 'it': 3.0, 'this': 2.0, 'hours': 1.0, 'at': 1.0, 'gorgeous': 1.0, 'a': 2.0, 'time': 1.0, 'has': 1.0, 'stars': 1.0, 'soft': 1.0, 'i': 2.0}
Word element => {'hour': 1.0, 'on': 1.0, '3am': 1.0, 'seat': 1.0, 'working': 1.0, 'try': 1.0, 'seatbelt': 1.0, 'manage': 1.0, 'night': 1.0, 'at': 2.0, 'baby': 1.0, 'illuminate': 1.0, 'light': 1.0, 'belt': 1.0, 'faint': 1.0, 'it': 1.0, 'half': 1.0, 'wish': 1.0, 'wide': 1.0, 'from': 1.0, 'of': 1.0, 'bottom': 1.0, 'fairly': 1.0, 'that': 1.0, 'easier': 1.0, 'awesome': 1.0, 'little': 1.0, 'swing': 1.0, 'a': 2.0, 'quiet': 1.0, 'works': 1.0, 'bulky': 1.0, 'the': 3.0, 'great': 1.0, 'and': 3.0, 'too': 1.0, 'swings': 1.0, 'is': 1.0, 'side': 2.0, 'had': 1.0, 'to': 3.0, 'sleep': 1.0, 'or': 1.0, 'an': 2.0, 'but': 1.0, 'forward': 1.0, 'back': 1.0}
Word element => {'there': 1.0, 'set': 1.0, 'from': 1.0, 'move': 1.0, 'looking': 1.0, 'was': 1.0, 'room': 3.0, 'of': 1.0, 'quite': 1.0, 'takes': 1.0, 'leave': 1.0, 'small': 1.0, 'have': 1.0, 'and': 5.0, 'nice': 1.0, 'to': 5.0, 'see': 1.0, 'is': 2.0, 'this': 3.0, 'do': 1.0, 'only': 1.0, 'are': 1.0, 'the': 3.0, 'if': 2.0, 'want': 3.0, 'everything': 1.0, 'bit': 1.0, 'so': 1.0, 'you': 5.0, 'd': 1.0, 'best': 1.0, 'swing': 3.0, 'not': 2.0, 've': 1.0, 'in': 1.0, 'does': 1.0, 'had': 1.0, 'what': 1.0, 'i': 5.0, 'it': 7.0, 'annoying': 1.0, 'also': 1.0, 'sounds': 1.0, 'batteries': 1.0, 'swings': 1.0, 'space': 1.0, 'at': 1.0, 'downer': 1.0, 'different': 2.0, 'speeds': 1.0, 'directions': 1.0, 'love': 2.0, 'music': 1.0, 'can': 2.0, 'wouldn': 1.0, 'customize': 1.0, 'your': 1.0, 'up': 2.0, 'child': 1.0, 'likes': 1.0, 'that': 3.0, 'plug': 1.0, 'use': 1.0, 'we': 1.0, 's': 1.0, 't': 1.0, 'a': 4.0, 'could': 1.0}
Word element => {'won': 1.0, 'day': 1.0, 'have': 1.0, 'where': 1.0, 'any': 1.0, 'burned': 1.0, 'reflective': 1.0, 'entirely': 1.0, 'were': 1.0, 'straps': 1.0, 'add': 1.0, 'home': 1.0, 'came': 1.0, 'glad': 1.0, 'nicely': 1.0, 'dinner': 1.0, 'wee': 1.0, 'care': 1.0, 'rather': 1.0, 'that': 3.0, 'easily': 1.0, 'because': 2.0, 'through': 1.0, 'into': 2.0, 'totally': 2.0, 'quarters': 1.0, 'small': 1.0, 'nap': 1.0, 'a': 9.0, 'super': 2.0, 'don': 2.0, 'up': 2.0, 'takes': 1.0, 'nowhere': 1.0, 'we': 6.0, 'reviews': 1.0, 'then': 1.0, 'possible': 1.0, 'order': 1.0, 'scope': 1.0, 'broad': 1.0, 'at': 3.0, 'every': 1.0, 'print': 1.0, 'but': 3.0, 'balance': 1.0, 'cute': 2.0, 'foot': 1.0, 'little': 3.0, 'nice': 1.0, 'hanging': 1.0, 't': 4.0, 'you': 3.0, 'sooooooo': 1.0, 'table': 1.0, 'get': 1.0, 'batteries': 1.0, 'hisfisher': 1.0, 'tucked': 1.0, 'rambling': 1.0, 'tons': 1.0, 'read': 1.0, 'months': 1.0, 'i': 11.0, 'together': 1.0, 'in': 9.0, 'seat': 2.0, 'guy': 1.0, 'on': 6.0, 'long': 1.0, 'put': 1.0, 'much': 1.0, 'underside': 1.0, 'and': 17.0, 'just': 4.0, 'so': 5.0, 'ez': 1.0, 'me': 1.0, 'give': 1.0, 'there': 2.0, 'not': 1.0, 'swinging': 1.0, 'forward': 1.0, 'express': 1.0, 'soft': 1.0, 'without': 1.0, 'functional': 1.0, 'half': 1.0, 'this': 5.0, 'of': 7.0, '5lbs': 1.0, 'love': 3.0, 'him': 3.0, 'he': 11.0, 'for': 3.0, 'cord': 1.0, 'shot': 1.0, 'diving': 1.0, 'sure': 1.0, 'positioned': 1.0, 'swing': 7.0, 'how': 1.0, 'our': 3.0, 'when': 4.0, 'am': 1.0, 'the': 18.0, 'living': 3.0, 'course': 1.0, 'great': 2.0, 'if': 2.0, 'can': 2.0, 'is': 5.0, 'turn': 4.0, 'bigger': 1.0, 'before': 1.0, '11oz': 1.0, 'become': 1.0, 'high': 1.0, 'was': 3.0, 'amidst': 1.0, 'clicking': 1.0, 'cart': 1.0, 'direction': 1.0, 'with': 3.0, 'volume': 1.0, 'space': 1.0, 'counter': 1.0, 'being': 1.0, 'now': 2.0, 'adjustable': 1.0, 'almost': 1.0, 'coma': 1.0, 'sorry': 1.0, 'ac': 1.0, 'cranky': 1.0, 'or': 1.0, 'bit': 1.0, 'quick': 1.0, 'pop': 1.0, 'tiredness': 1.0, 'bird': 2.0, 'adorable': 1.0, 'mobile': 2.0, 'nod': 1.0, '3': 1.0, 'adjusted': 1.0, 'off': 1.0, 'screeeeeeeam': 1.0, 'see': 1.0, 'noise': 1.0, 'are': 1.0, 'room': 2.0, 'comes': 1.0, 'want': 1.0, 'go': 2.0, 'baby': 1.0, 'out': 3.0, 'has': 3.0, 'invaluable': 1.0, 'sit': 1.0, 'as': 1.0, 'begun': 1.0, 'daily': 1.0, 'periodically': 1.0, 'teeth': 1.0, 'price': 1.0, 'feature': 1.0, 'started': 1.0, 'sounds': 1.0, 'm': 1.0, 's': 4.0, 'tired': 1.0, 'adapter': 1.0, 'would': 1.0, 'swear': 1.0, 'really': 3.0, 'haven': 1.0, 'lately': 1.0, 'his': 1.0, 'oh': 1.0, 'music': 1.0, 'to': 9.0, 'suddenly': 1.0, 'nature': 1.0, 'it': 10.0, 'be': 2.0, 'gets': 2.0, 'mad': 1.0, 'about': 1.0, 'lovely': 1.0, 'did': 1.0, 'top': 1.0, 'they': 1.0, 'easy': 1.0, 'discover': 1.0, 'could': 2.0, 'dial': 1.0, 'from': 1.0, 'll': 2.0, 'side': 2.0, 'which': 1.0, 'dome': 1.0, 'back': 2.0, 'dining': 1.0, 'need': 1.0, 'also': 1.0, 'clean': 1.0, 'comfortable': 1.0, 'chair': 1.0, 'us': 2.0, 'coco': 1.0, 'sorbetwhich': 1.0, 'adore': 1.0}
Word element => {'materials': 1.0, 'quality': 1.0, 'impressed': 1.0, 'am': 1.0, 'break': 1.0, 'fabrics': 1.0, 'needed': 1.0, 'give': 1.0, 'crying': 1.0, 'hard': 1.0, 'fussy': 1.0, 'matter': 1.0, 'no': 1.0, 'sanity': 1.0, 'saved': 1.0, 'how': 3.0, 'enough': 1.0, 'type': 1.0, 'as': 1.0, '8': 2.0, 'not': 1.0, 'you': 3.0, 'new': 1.0, 'time': 1.0, 'her': 1.0, 'use': 1.0, 'old': 1.0, 'wonderful': 1.0, 'similar': 1.0, 'and': 10.0, 'like': 3.0, 'using': 2.0, 'doesn': 1.0, 'minutes': 1.0, '20': 1.0, 'that': 2.0, 'babies': 2.0, 'thing': 1.0, 'about': 1.0, 'positions': 1.0, 'quiet': 1.0, 'are': 1.0, 'a': 2.0, 'after': 1.0, 'turns': 1.0, '5': 1.0, 'mobile': 2.0, 'me': 1.0, 'calm': 1.0, 'my': 3.0, 'used': 1.0, 'want': 1.0, 'adjusted': 1.0, 'could': 1.0, 'will': 2.0, 'with': 1.0, 'timer': 1.0, 'this': 8.0, 'works': 1.0, 'without': 1.0, 'soft': 1.0, 'perfect': 1.0, 'it': 7.0, 'i': 7.0, 'she': 1.0, 'baby': 4.0, 'has': 1.0, 'them': 1.0, 'emphasize': 1.0, 't': 3.0, 'require': 1.0, 'little': 1.0, 'much': 2.0, 'do': 1.0, 'mechanics': 1.0, 'go': 1.0, 'lb': 1.0, 'of': 2.0, 'the': 13.0, 'longer': 1.0, 'still': 2.0, 'very': 2.0, 'later': 1.0, 'pounds': 1.0, 'swing': 13.0, 'compared': 1.0, 'comfortable': 1.0, 'great': 1.0, 'for': 5.0, 'high': 1.0, 'preemie': 1.0, 'to': 4.0, 'be': 2.0, 'set': 1.0, 'paying': 1.0, 'brand': 1.0, '15': 1.0, 'pros': 1.0, 'plug': 1.0, 'motor': 1.0, 'models': 2.0, 'love': 1.0, 'yet': 1.0, 'm': 1.0, 'in': 2.0, 'can': 3.0, 'around': 1.0, 'music': 1.0, 'is': 8.0, 'at': 3.0, 'batteries': 2.0, 'who': 1.0, 'different': 1.0, 'months': 3.0, 'speeds': 1.0, 'they': 1.0, 'just': 2.0, 'best': 1.0, 'stare': 1.0, 'even': 1.0, 'having': 1.0, 'down': 1.0, 'turned': 1.0, 'think': 1.0, 'don': 1.0, 'cons': 1.0, 'other': 2.0, 'an': 1.0, 'automatic': 1.0, 'off': 1.0, 'amount': 1.0, 'on': 3.0, 'update': 1.0, 'now': 1.0}
Word element => {'probably': 1.0, 'maybe': 1.0, 'will': 2.0, 'are': 1.0, 'chances': 1.0, 'waste': 1.0, 'even': 1.0, 'wouldn': 1.0, 'sure': 1.0, 'purchasing': 1.0, 'when': 1.0, 'seriously': 1.0, 'taken': 1.0, 'have': 1.0, 'lacking': 1.0, 'motor': 1.0, 'people': 1.0, 'saw': 1.0, 'before': 1.0, 'reviews': 1.0, 'read': 1.0, 'quit': 1.0, 'together': 1.0, 'working': 2.0, 'please': 1.0, 'their': 1.0, 'hours': 1.0, 'for': 3.0, 'use': 1.0, 'week': 1.0, 'but': 1.0, 'money': 1.0, 'work': 3.0, 'weeks': 2.0, 't': 1.0, 'a': 6.0, 'several': 1.0, 'about': 1.0, 'quality': 1.0, 'baby': 1.0, 'after': 2.0, 'not': 3.0, 'happen': 1.0, 'lower': 1.0, 'few': 2.0, 'just': 1.0, 'wish': 1.0, 'this': 3.0, 'prices': 1.0, 'days': 1.0, 'day': 1.0, 'looking': 1.0, 'of': 5.0, 'up': 1.0, 'although': 1.0, 'the': 7.0, 'swing': 9.0, 'stopped': 1.0, 'it': 7.0, 'higher': 1.0, 'great': 1.0, 'nice': 1.0, 'too': 1.0, 'and': 3.0, 'concerns': 1.0, 'couple': 2.0, 'swinging': 2.0, 'since': 1.0, 'at': 1.0, 'do': 1.0, 'only': 1.0, 'end': 1.0, 'high': 4.0, 'my': 1.0, 'happy': 1.0, 'more': 1.0, 'say': 1.0, 'is': 2.0, 'your': 1.0, 'on': 6.0, 'bought': 1.0, 'mechanism': 1.0, 'began': 1.0, 'was': 4.0, 'settings': 1.0, 'would': 3.0, 'our': 1.0, 'to': 3.0, 'all': 2.0, 'that': 3.0, 'loves': 1.0, 'mess': 1.0, 'i': 7.0, 'worked': 1.0}
Word element => {'in': 1.0, 'be': 1.0, 'will': 1.0, 'like': 1.0, 'kept': 1.0, 'works': 1.0, 'awhile': 1.0, 'son': 1.0, 'still': 1.0, 'luckily': 2.0, 'issues': 1.0, 'never': 1.0, 'pink': 2.0, 'disappointed': 1.0, 'm': 1.0, 'brand': 1.0, 'butterfly': 1.0, 'by': 1.0, 'me': 1.0, 'and': 3.0, 'they': 2.0, 'free': 1.0, 'the': 3.0, 'i': 6.0, 'had': 3.0, 'any': 1.0, 'to': 1.0, 'for': 2.0, 'working': 2.0, 'fp': 3.0, 'this': 1.0, 'looks': 1.0, 'it': 4.0, 'stopped': 1.0, 'unfortunately': 1.0, '6': 1.0, 'of': 1.0, 'buy': 1.0, 'sent': 1.0, 'have': 2.0, 'contacted': 1.0, 'daughter': 1.0, 'quit': 1.0, 'about': 1.0, 'months': 2.0, 'replacement': 1.0, 'motor': 4.0, 'swing': 3.0, 'contact': 1.0, 'charge': 1.0, 'new': 1.0, 'enough': 1.0, 'again': 1.0, 'different': 2.0, 'last': 1.0, 'my': 2.0, 'another': 1.0, 'hopefully': 1.0, 'a': 3.0, 'ago': 1.0, 'go': 1.0, 'night': 1.0, 'send': 1.0, 'swinging': 1.0, 'yet': 2.0, 'or': 1.0, 'better': 1.0, 'so': 3.0, '2': 1.0, 'money': 1.0, 'but': 1.0, 'can': 1.0}
Word element => {'you': 1.0, 'your': 1.0, 'nest': 1.0, 'item': 1.0, 'day': 1.0, 'saves': 1.0, 'mirror': 1.0, 'his': 1.0, 'loves': 1.0, 'an': 1.0, 'all': 1.0, 'after': 1.0, 'brand': 1.0, 'once': 1.0, 'miraculously': 1.0, 'right': 1.0, 'stains': 1.0, 'machine': 1.0, 'washed': 1.0, 'falls': 1.0, 'reflection': 1.0, 'not': 2.0, 'complaint': 1.0, 'only': 1.0, 'however': 1.0, 'with': 1.0, 'loudly': 1.0, 'dinner': 1.0, 've': 1.0, 'afternoons': 1.0, 'need': 1.0, 'or': 2.0, 'arm': 1.0, 'restless': 1.0, 'from': 1.0, 'removed': 1.0, 'while': 2.0, 'just': 1.0, 'time': 2.0, 'new': 1.0, 'worried': 1.0, 'saved': 1.0, 'i': 6.0, 's': 6.0, 't': 1.0, 'cook': 1.0, 'when': 3.0, 'cover': 1.0, 'daddy': 2.0, 'clean': 1.0, 'out': 3.0, 'd': 1.0, 'price': 1.0, 'wanted': 2.0, 'in': 8.0, 'seat': 1.0, 'put': 1.0, 'much': 1.0, 'little': 2.0, 'nice': 2.0, 'us': 1.0, 'keep': 1.0, 'space': 1.0, 'still': 2.0, 'every': 1.0, 'bigger': 1.0, 'to': 5.0, 'pretty': 1.0, 'baby': 3.0, 'many': 1.0, 'safe': 1.0, 'we': 2.0, 'take': 1.0, 'but': 1.0, 'work': 1.0, 'house': 2.0, 'mommy': 2.0, 'think': 1.0, 'comepletely': 1.0, 'at': 2.0, 'is': 6.0, 'have': 1.0, 'a': 7.0, 'small': 2.0, 'of': 5.0, 'the': 13.0, 'and': 9.0, 'area': 1.0, 'be': 2.0, 'essential': 1.0, 'bought': 1.0, 'get': 1.0, 'months': 1.0, 'lot': 2.0, 'one': 1.0, 'rocked': 2.0, 'first': 1.0, 'this': 6.0, 'asleep': 1.0, 'caveat': 1.0, 'swing': 7.0, 'didn': 1.0, 'tired': 1.0, 'safety': 1.0, 'use': 2.0, 'come': 1.0, 'where': 1.0, 'seems': 1.0, 'see': 1.0, 'can': 2.0, 'so': 2.0, 'comfy': 2.0, 'looks': 1.0, 'my': 2.0, 'that': 6.0, 'really': 3.0, 'never': 1.0, 'smiling': 1.0, 'about': 1.0, 'for': 1.0, 'structure': 1.0, 'very': 1.0, 'love': 1.0, 'he': 3.0, 'far': 1.0, 'solid': 1.0, 'problem': 1.0, 'part': 1.0, 'though': 2.0, 'kitchen': 1.0, 'does': 1.0, 'dining': 1.0, 'pay': 1.0, 'major': 1.0, 'up': 3.0, 'favorite': 1.0, '7': 1.0, 'has': 1.0, 'him': 1.0, 'it': 10.0, 'already': 1.0, 'gotten': 1.0, 'now': 1.0, 'creaks': 1.0}
Word element => {'consistency': 1.0, 'where': 1.0, 'what': 1.0, 'plenty': 1.0, 'features': 1.0, 'appeal': 1.0, 'around': 2.0, 'its': 3.0, 'of': 6.0, 'the': 30.0, 'moves': 1.0, 'but': 2.0, 'pregnant': 1.0, 'wanted': 3.0, 'knew': 1.0, 'never': 1.0, 'out': 1.0, 'have': 3.0, 'found': 1.0, 'modern': 1.0, 'leaves': 1.0, 'them': 1.0, 'flawlessly': 1.0, 'when': 3.0, 'you': 1.0, 'complaints': 1.0, 'starts': 1.0, 'loud': 2.0, 'batteries': 1.0, 'rated': 1.0, 'into': 1.0, 'that': 2.0, 's': 1.0, 'ever': 1.0, 'other': 4.0, 'rainforest': 4.0, 'neutral': 1.0, 'up': 1.0, 'been': 1.0, 'went': 1.0, 'if': 2.0, 'great': 1.0, 'mobile': 1.0, 'down': 1.0, 'stick': 1.0, 'squeaks': 1.0, 'using': 1.0, 'with': 4.0, 'moved': 1.0, 'had': 3.0, 'type': 1.0, 'for': 3.0, '10': 1.0, 'although': 1.0, 'sleeker': 1.0, 'simple': 2.0, 'plugged': 1.0, 'i': 19.0, 'in': 2.0, 'animals': 1.0, 'seat': 1.0, 'daughter': 1.0, 'my': 5.0, 'be': 3.0, 'it': 17.0, '9': 1.0, 'as': 1.0, 'place': 1.0, 'incase': 1.0, 'more': 2.0, 'ofcourse': 1.0, 'needed': 1.0, 'chose': 1.0, 'everytime': 1.0, 'anything': 1.0, 'similar': 1.0, 'she': 2.0, 'make': 2.0, 'swing': 12.0, 'offer': 1.0, 'too': 1.0, 'one': 1.0, 'volume': 1.0, 'didn': 1.0, 'best': 1.0, 'snugabunny': 1.0, 'price': 5.0, 'products': 1.0, 'cradle': 3.0, 'so': 2.0, 'top': 1.0, 'time': 1.0, 'liked': 1.0, 'new': 1.0, 'than': 2.0, 'all': 4.0, 'way': 1.0, 'was': 6.0, 'lbs': 1.0, 'puts': 1.0, 'flawless': 1.0, 'minutes': 1.0, 'at': 3.0, 'because': 2.0, 'quiet': 1.0, 'no': 2.0, 'annoying': 2.0, 'fisher': 5.0, 'noticable': 1.0, 'motor': 2.0, 'yet': 1.0, 'or': 3.0, 'swinging': 2.0, 'we': 1.0, 'reviews': 1.0, 't': 2.0, 'a': 4.0, 'enough': 1.0, 'noise': 4.0, 'their': 1.0, 'to': 5.0, 'swung': 1.0, 'baby': 1.0, 'part': 2.0, '2': 1.0, 'now': 1.0, 'loves': 1.0, 'complete': 1.0, 'making': 2.0, 'louder': 1.0, 'instead': 1.0, 'wall': 1.0, 'd': 1.0, 'first': 1.0, 'rain': 1.0, 'fine': 1.0, 'like': 2.0, 'whenever': 1.0, 'gives': 2.0, 'they': 2.0, 'her': 2.0, 'u': 1.0, 'pacifier': 1.0, 'precious': 1.0, 'pressure': 2.0, 'slightest': 1.0, '2nd': 2.0, 'this': 4.0, 'luv': 1.0, 'kick': 1.0, 'off': 1.0, 'someone': 1.0, 'track': 1.0, 'infant': 1.0, 'something': 1.0, 'buy': 1.0, 'open': 1.0, 'another': 1.0, 'weighs': 1.0, 'and': 11.0, 'tried': 1.0, 'just': 3.0, 'loved': 1.0, 'sure': 1.0, 'store': 1.0, 'not': 2.0, 'put': 1.0, 'much': 1.0, 'looking': 1.0, 'does': 1.0, 'still': 2.0, 'super': 1.0, 'same': 2.0, 'makes': 1.0, 'ocean': 1.0, 'wish': 1.0, 'mainly': 1.0, 'would': 4.0, 'known': 1.0, 'comes': 1.0, 'seemed': 1.0, 'bought': 1.0, 'again': 1.0, 'on': 3.0, 'zoo': 1.0, 'deciding': 1.0, 'opposite': 1.0, 'performance': 1.0, 'made': 1.0, 've': 1.0, 'while': 1.0, 'especially': 2.0, 're': 1.0, 'months': 1.0, 'read': 1.0, 'about': 1.0, 'play': 1.0, 'pianos': 1.0, 'version': 1.0, 'isn': 1.0, 'is': 3.0, 'forest': 1.0, 'popping': 1.0, 'being': 1.0}
Word element => {'adults': 1.0, 'big': 1.0, 'wish': 1.0, 'sleeps': 1.0, 'transitioning': 1.0, 'day': 1.0, 'they': 1.0, 'sleeping': 1.0, 'actually': 1.0, 'does': 1.0, 'line': 1.0, 'issue': 1.0, 'now': 2.0, 'right': 1.0, 'our': 1.0, 'reflux': 1.0, 'space': 2.0, 'seem': 1.0, 'makes': 1.0, 'stability': 1.0, 'be': 1.0, 'have': 2.0, 'good': 2.0, 'side': 1.0, 'larger': 1.0, 'safety': 1.0, 'size': 1.0, 'anyways': 1.0, 'than': 1.0, 'more': 1.0, 'don': 1.0, 'honestly': 1.0, 'there': 1.0, 'takes': 1.0, 'up': 2.0, 'lube': 1.0, 'need': 1.0, 'wondering': 1.0, 'ours': 1.0, 'from': 1.0, 'his': 2.0, 'probably': 1.0, 'coo': 1.0, 'm': 1.0, 'in': 7.0, 'i': 8.0, '4': 1.0, 'that': 3.0, 'been': 2.0, 'fried': 1.0, 'awesome': 1.0, 'at': 1.0, 'is': 8.0, 'completely': 1.0, 'room': 1.0, 'comes': 1.0, 'through': 2.0, 'wide': 1.0, 'new': 1.0, 'us': 2.0, 'sent': 1.0, 'though': 2.0, 'has': 1.0, 'still': 1.0, 'turn': 1.0, 'if': 1.0, 'service': 1.0, 'my': 4.0, 'customer': 1.0, 'small': 1.0, 'a': 8.0, 'we': 7.0, 's': 2.0, 'this': 3.0, 'anything': 1.0, 'soft': 1.0, 'likes': 1.0, 't': 1.0, 'separate': 1.0, 'replacement': 1.0, 'as': 3.0, 'bassinet': 1.0, 'to': 7.0, 'an': 1.0, 'all': 1.0, 'was': 1.0, 'and': 13.0, 'one': 2.0, 'lot': 1.0, 'too': 4.0, 'just': 3.0, 'him': 1.0, 'it': 8.0, 'already': 1.0, 'got': 1.0, 'lamb': 4.0, 'such': 1.0, 'for': 6.0, 'swing': 12.0, 'plugs': 1.0, 'little': 3.0, 'price': 1.0, 'mirror': 2.0, 'baby': 1.0, 'had': 4.0, 'squeaky': 1.0, '2': 2.0, 'money': 1.0, 'get': 1.0, 'legs': 1.0, 'months': 1.0, 'due': 1.0, 'smile': 1.0, 'dome': 2.0, 'mobile': 3.0, 'gone': 1.0, 'quiet': 1.0, 'bulky': 1.0, 'packages': 1.0, 'refund': 1.0, 'fisher': 1.0, 'bit': 1.0, 'easy': 1.0, 'the': 25.0, 'of': 4.0, 'batteries': 1.0, 'could': 2.0, 'will': 1.0, 'with': 1.0, 'bet': 1.0, 'living': 1.0, 'wonderful': 1.0, 'old': 2.0, 'set': 1.0, 'rooms': 1.0, 'waste': 1.0, 'fabrics': 1.0, 'sleep': 1.0, 'back': 1.0, 'can': 1.0, 'so': 3.0, 'are': 2.0, 'cute': 1.0, 'everything': 1.0, 'off': 1.0, 'house': 1.0, 'throw': 1.0, 'wash': 1.0, 'much': 1.0, 'put': 1.0, 'on': 5.0, 'support': 1.0, 'again': 1.0, 'whisper': 1.0, 'barely': 1.0, 'often': 1.0, 'super': 1.0, 'month': 1.0, 'hear': 2.0, 'better': 1.0, 'think': 1.0, 'incredibly': 1.0, 'night': 2.0, 'things': 1.0, 'you': 2.0, 'loud': 2.0, 'like': 2.0, 'head': 1.0, 'reflection': 1.0, 'not': 3.0, 'son': 2.0, 'but': 2.0, 'enjoys': 1.0, 'bottom': 1.0, 'motor': 4.0, 'love': 2.0, 'he': 4.0}
Word element => {'would': 1.0, 'directions': 1.0, 'my': 3.0, 'hopefully': 1.0, 'after': 2.0, 'myself': 1.0, 'of': 1.0, 'the': 7.0, 'by': 1.0, 'just': 1.0, 'to': 3.0, 'as': 1.0, 'did': 1.0, 'take': 1.0, 'toys': 1.0, 'confusing': 1.0, '40': 1.0, 'box': 1.0, 'that': 1.0, 'gave': 1.0, 'head': 1.0, 'issue': 1.0, 'husband': 1.0, 'overall': 1.0, 'didn': 1.0, 'swing': 1.0, 'than': 1.0, 'screws': 1.0, 'easy': 1.0, 'baby': 1.0, 'she': 1.0, 'it': 12.0, 'and': 6.0, 'plugged': 1.0, 'only': 2.0, 'few': 1.0, 'this': 1.0, 'functional': 1.0, 'a': 4.0, 't': 1.0, 'looking': 2.0, 'use': 1.0, 'her': 1.0, 'some': 1.0, 'c': 1.0, 'mirror': 1.0, 'into': 1.0, 'three': 1.0, 'at': 2.0, 'is': 3.0, 'herself': 1.0, 'in': 2.0, 'great': 1.0, 'week': 1.0, 'long': 1.0, 'pound': 1.0, 'do': 1.0, 'put': 1.0, 'above': 1.0, 'are': 1.0, 'little': 1.0, 'so': 1.0, 'together': 2.0, 'recommend': 2.0, 'was': 2.0, 'while': 1.0, 'later': 1.0, 'all': 1.0, 'other': 1.0, 'thing': 1.0, 'loves': 2.0, 'difficult': 1.0, 'section': 1.0, 'still': 1.0, 'wall': 1.0, 'removing': 1.0, 'spinning': 1.0, 'old': 1.0, 'for': 1.0, 'love': 1.0, 'batteries': 1.0, 'mins': 1.0, 'will': 2.0, 'seems': 1.0, 'less': 1.0, 'up': 2.0, 'have': 1.0, 'let': 1.0, 'strudy': 1.0, 'year': 1.0, 'decided': 1.0, 'sit': 1.0, 'perfectly': 1.0, 'hold': 1.0, 'really': 1.0, 'i': 5.0, 'putting': 1.0, 'well': 1.0}
Word element => {'theme': 1.0, 'with': 1.0, 'in': 1.0, 'im': 1.0, 'mirror': 1.0, 'style': 1.0, 'star': 1.0, 'so': 1.0, 'features': 1.0, 'easy': 1.0, 'be': 1.0, 'swing': 2.0, 'neutral': 1.0, 'ok': 1.0, 'to': 2.0, 'as': 3.0, 'is': 1.0, 'lighting': 1.0, 'offers': 1.0, 'the': 5.0, 'add': 1.0, 'such': 1.0, 'great': 1.0, 'i': 1.0, 'store': 1.0, 'beautiful': 1.0, 'about': 1.0, 'thing': 1.0, 'would': 2.0, 'only': 1.0, 'this': 2.0, 'amazing': 1.0, 'different': 1.0, 'folding': 1.0, 'item': 1.0, 'sounds': 1.0, 'change': 1.0, 'music': 1.0, 'speeds': 1.0, 'few': 1.0, 'breaks': 1.0, 'down': 1.0, 'babies': 1.0, 'into': 1.0, 'a': 1.0, 'comfort': 2.0, 'well': 1.0, 'pieces': 1.0, 'where': 1.0, 'love': 2.0, 'and': 1.0}
Word element => {'birds': 1.0, 'little': 1.0, 'mirror': 1.0, 'loves': 1.0, 'few': 1.0, 'down': 1.0, 'need': 1.0, 'or': 1.0, 'music': 1.0, 'but': 1.0, 'week': 1.0, 'back': 1.0, 'swing': 1.0, 'first': 1.0, 'this': 1.0, 'old': 1.0, 'i': 2.0, 'it': 6.0, 'she': 4.0, 'didn': 1.0, 'wouldn': 1.0, 'got': 2.0, 'then': 1.0, 'overnight': 1.0, 'a': 3.0, 't': 3.0, 'when': 3.0, 'daughter': 1.0, 'and': 2.0, 'too': 1.0, 'at': 1.0, 'laws': 1.0, 'was': 2.0, 'to': 3.0, 'my': 1.0, 'in': 2.0, 'about': 1.0, 'quality': 1.0, 'baby': 1.0, 'don': 1.0, 'born': 1.0, 'love': 1.0, 'for': 2.0, 'really': 1.0, 'leave': 1.0, 'want': 1.0, 'put': 2.0, 'your': 1.0, 'because': 1.0, 'great': 1.0, 'ban': 1.0, 'would': 1.0, 'crawling': 1.0, 'be': 1.0, 'their': 1.0, 'the': 3.0, 'place': 1.0, 'good': 1.0, 'her': 3.0, 'is': 3.0, 'around': 1.0}
Word element => {'straight': 1.0, 'goes': 1.0, 'kid': 1.0, 'my': 1.0, 'see': 1.0, 'like': 1.0, 'second': 1.0, 'is': 2.0, 'leave': 1.0, 'do': 1.0, 'and': 4.0, 'want': 1.0, 'everything': 1.0, 'during': 1.0, 'lifesaver': 1.0, 'design': 1.0, 'got': 1.0, 'this': 3.0, 'retractable': 1.0, 'nights': 1.0, 'it': 2.0, 'on': 2.0, 'you': 4.0, 'lightning': 1.0, 'stuffy': 1.0, 'child': 1.0, 'd': 2.0, 'price': 1.0, 'wanting': 1.0, 'to': 3.0, 'our': 1.0, 're': 1.0, 'cord': 1.0, 'restless': 1.0, 'what': 1.0, 'great': 2.0, 'we': 1.0, 'a': 3.0, 't': 1.0, 'deal': 1.0, 'the': 1.0, 'swing': 1.0, 'for': 2.0, 'one': 1.0, 'll': 2.0, 'noses': 1.0, 'be': 1.0, 'need': 1.0, 'does': 1.0, 'find': 1.0, 'functionality': 1.0, 'was': 1.0, 'doesn': 1.0, 'thing': 1.0, 'i': 1.0}
Word element => {'built': 1.0, 'some': 1.0, 'arrangements': 1.0, 'around': 1.0, 'is': 3.0, 'turns': 1.0, 'without': 1.0, 'animals': 1.0, 'speeds': 1.0, 'mobile': 1.0, 'definitely': 1.0, 'to': 2.0, 'any': 2.0, 'constructed': 1.0, 'four': 1.0, 'above': 1.0, 'movements': 1.0, 'different': 3.0, 'three': 1.0, 'features': 2.0, 'almost': 1.0, 'variety': 1.0, 'by': 2.0, 'the': 7.0, 'of': 3.0, 'stable': 1.0, 'offers': 2.0, 'easy': 1.0, 'fisher': 1.0, 'for': 2.0, 'assemble': 1.0, 'love': 1.0, 'which': 2.0, 'gift': 2.0, 'a': 4.0, 'swinging': 1.0, 'we': 1.0, 'musical': 1.0, 'my': 2.0, 'me': 3.0, 'not': 2.0, 'and': 6.0, 'cannot': 1.0, 'plays': 1.0, 'very': 2.0, 'purchased': 1.0, 'what': 2.0, 'was': 4.0, 'wonderful': 1.0, 'instructions': 1.0, 'with': 1.0, 'duet': 1.0, 'sister': 1.0, 'rocking': 1.0, 'this': 3.0, 'it': 8.0, 'she': 1.0, 'recommend': 2.0, 'were': 1.0, 'six': 1.0, 'clear': 1.0, 'worked': 1.0, 'that': 3.0, 'problems': 1.0, 'swing': 2.0, 'also': 2.0, 'own': 1.0, 'seems': 1.0, 'quality': 1.0, 'material': 1.0, 'soothe': 1.0, 'giving': 1.0, 'let': 1.0, 'no': 1.0, 'about': 1.0, 'reservations': 1.0, 'newborn': 1.0, 'in': 1.0, 'so': 1.0, 'do': 1.0, 'end': 1.0, 'well': 1.0, 'putting': 1.0, 'i': 3.0, 'stating': 1.0, 'would': 2.0, 'over': 1.0, 'all': 1.0, 'other': 2.0, 'there': 1.0, 'you': 1.0, 'cost': 1.0, 'beat': 1.0, 'price': 2.0, 'review': 1.0, 'graco': 1.0, 'winslet': 1.0, 'double': 1.0, 'as': 2.0, 'lacks': 1.0}
Word element => {'baby': 1.0, 'plush': 1.0, 'loves': 1.0, 'item': 1.0, 'wonderful': 1.0, 'in': 1.0, 'the': 2.0, 'are': 1.0, 'plug': 1.0, 'purchase': 1.0, 'feature': 1.0, 'we': 1.0, 'fabric': 1.0, 'excellent': 1.0, 'is': 2.0, 'it': 1.0, 'this': 1.0, 'with': 1.0, 'soft': 1.0, 'and': 1.0, 'calming': 1.0, 'very': 1.0, 'music': 1.0, 'happy': 1.0}
Word element => {'lifesaver': 1.0, 'been': 1.0, 'hundreds': 1.0, 'would': 1.0, 'motion': 1.0, 'swinging': 1.0, 'soothing': 1.0, 'my': 1.0, 'couldn': 1.0, 'put': 1.0, 'but': 1.0, 'husband': 1.0, 'the': 1.0, 'asleep': 1.0, 'happier': 1.0, 'tried': 1.0, 'newborn': 1.0, 'love': 3.0, 'for': 1.0, 'product': 1.0, 'him': 1.0, 'be': 1.0, 'fights': 1.0, 'son': 1.0, 'sleep': 1.0, 'our': 3.0, 'to': 3.0, 'as': 1.0, 'with': 1.0, 'this': 2.0, 'it': 5.0, 'shower': 1.0, 'and': 2.0, 'finds': 1.0, 'fall': 1.0, 'everything': 1.0, 'help': 1.0, 'horribly': 1.0, 'he': 1.0, 'received': 1.0, 'sanity': 1.0, 'swing': 1.0, 'i': 2.0, 'saved': 1.0, 's': 1.0, 't': 1.0, 'we': 2.0, 'a': 2.0, 'honestly': 1.0, 'else': 1.0, 'gift': 1.0, 'have': 1.0, 'paid': 1.0}
Word element => {'not': 1.0, 'would': 1.0, 'enough': 1.0, 'even': 1.0, 'part': 1.0, 'what': 1.0, 'put': 1.0, 'back': 1.0, 'together': 1.0, 'swing': 3.0, 'have': 1.0, 'the': 3.0, 'it': 3.0, 'come': 1.0, 'out': 1.0, '45': 1.0, 'took': 1.0, 'recommend': 1.0, 'doesn': 1.0, 'minutes': 1.0, 'can': 1.0, 'trying': 1.0, 'our': 1.0, 'all': 1.0, 'to': 4.0, 'now': 1.0, 'after': 1.0, 'so': 1.0, 'motor': 1.0, 'fun': 1.0, 'power': 1.0, 'find': 1.0, 'lb': 1.0, '13': 1.0, 'apart': 1.0, 'in': 1.0, 'baby': 1.0, 'of': 1.0, 'cram': 1.0, 'taking': 1.0, 'and': 1.0, 'box': 1.0, 'original': 1.0, 'return': 1.0, 't': 1.0, 's': 1.0, 'we': 1.0, 'a': 1.0, 'this': 2.0, 'pain': 1.0}
Word element => {'when': 1.0, 'myself': 1.0, 'consider': 1.0, 'hung': 1.0, 'though': 1.0, 'all': 1.0, 'times': 1.0, 'cover': 1.0, 'great': 1.0, 'before': 1.0, 'straps': 1.0, 'buy': 1.0, 'wasn': 1.0, 'asleep': 2.0, 'parents': 1.0, 'tip': 1.0, 'really': 1.0, 'came': 2.0, 'older': 1.0, 'got': 1.0, 've': 1.0, 'turned': 1.0, 'down': 1.0, 'weight': 1.0, 'across': 1.0, 'blanket': 1.0, 'saw': 1.0, 'therefore': 1.0, 'will': 1.0, 'on': 2.0, 'with': 2.0, 'said': 1.0, 'as': 3.0, 'minimalist': 1.0, 'earlier': 1.0, 'perfect': 1.0, 'than': 1.0, 'agreed': 1.0, 'process': 1.0, 'were': 1.0, 'swinging': 1.0, 'reviews': 1.0, 'moving': 1.0, 'we': 1.0, 'only': 1.0, 'three': 1.0, 'over': 2.0, 'stuff': 1.0, 'faster': 1.0, 'just': 3.0, 'off': 1.0, 'until': 1.0, 'feature': 1.0, 'or': 1.0, 'day': 1.0, 'hang': 1.0, 'blazing': 1.0, 'and': 8.0, 'washed': 2.0, 'subtle': 1.0, 'about': 1.0, 'play': 1.0, 'added': 1.0, 'a': 7.0, 'sides': 1.0, 's': 2.0, 't': 5.0, 'lighter': 1.0, 'go': 1.0, 'fuzzy': 1.0, 'pink': 1.0, 'big': 1.0, 'nice': 1.0, 'online': 1.0, 'feel': 1.0, 'even': 1.0, 'personally': 1.0, 'comes': 1.0, 'once': 1.0, 'room': 1.0, 'also': 1.0, 'm': 2.0, 'in': 6.0, 'if': 1.0, 'stay': 1.0, 'course': 1.0, 'turn': 1.0, 'initially': 2.0, 'loves': 1.0, 'blue': 1.0, 'been': 2.0, 'item': 2.0, 'our': 1.0, 'to': 6.0, 'babies': 1.0, 'more': 1.0, 'scheme': 1.0, 'swing': 5.0, 'needs': 1.0, 'screaming': 1.0, 'hope': 1.0, 'dry': 1.0, 'not': 1.0, 'fall': 1.0, 'that': 4.0, 'because': 3.0, 'look': 2.0, 'important': 1.0, 'start': 1.0, 'its': 1.0, 'wonderful': 1.0, 'living': 1.0, 'bought': 1.0, 'color': 1.0, 'too': 1.0, 'one': 1.0, 'out': 3.0, 'child': 1.0, 'his': 1.0, 'multifunctional': 1.0, 'change': 1.0, 'up': 3.0, 'are': 2.0, 'first': 2.0, 'unisex': 2.0, 'this': 3.0, 'reliant': 1.0, 'items': 1.0, 'picked': 1.0, 'him': 2.0, 'thought': 1.0, 'it': 19.0, 'fabric': 1.0, 'for': 4.0, 'person': 1.0, 'the': 11.0, 'of': 6.0, 'looks': 1.0, 'my': 2.0, 'have': 3.0, 'girl': 1.0, 'almost': 1.0, 'was': 2.0, 'must': 1.0, 'setting': 1.0, 'fan': 1.0, 'doesn': 1.0, 'fast': 1.0, 'i': 17.0, 'well': 3.0, 'has': 1.0, 'debating': 1.0, 'thing': 1.0, 'sleep': 1.0, 'snugly': 1.0, 'son': 1.0, 'love': 1.0, 'he': 8.0, 'grown': 1.0, 'weeks': 1.0, 'would': 7.0, 'boy': 1.0, 'bummed': 1.0, 'but': 2.0, 'so': 9.0, 'can': 1.0, 'quality': 1.0, 'sitting': 1.0, 'slow': 1.0, 'very': 1.0, 'being': 2.0, 'whilst': 1.0, 'you': 1.0, 'motion': 1.0, 'able': 1.0, 'baby': 4.0, 'many': 2.0, 'wouldn': 1.0, 'drape': 1.0, 'directions': 1.0, 'use': 2.0, 'tilt': 2.0, 'like': 1.0, 'using': 1.0, 'while': 1.0, 'kind': 1.0, 'handy': 1.0, 'strapped': 1.0, 'ordered': 1.0, 'didn': 2.0}
Word element => {'up': 1.0, 'on': 1.0, 'dont': 1.0, 'stops': 1.0, '20': 1.0, 'turn': 1.0, 'sometimes': 1.0, 'soft': 1.0, 'min': 1.0, 'should': 1.0, 'and': 2.0, 'after': 1.0, 'so': 1.0, 'swing': 1.0, 'wakes': 1.0, 'loves': 1.0, 'settings': 1.0, 'change': 1.0, 'is': 1.0, 'for': 1.0, 'love': 1.0, 'this': 2.0, 'it': 1.0, 'i': 2.0, 'my': 2.0, 'cofortable': 1.0, 'the': 2.0, 'baby': 2.0, 'she': 1.0, 'because': 1.0, 'chair': 1.0, 'back': 1.0, 'but': 1.0, 'if': 1.0, 'music': 2.0}
Word element => {'compact': 1.0, 'find': 1.0, 'difficult': 1.0, 'legs': 1.0, 'due': 1.0, 'able': 1.0, 'cumbersome': 1.0, 'top': 1.0, 'easy': 1.0, 'little': 2.0, 'swing': 4.0, 'fairly': 1.0, 'of': 3.0, 'assembly': 1.0, 'space': 1.0, 'at': 1.0, 'super': 1.0, 'in': 2.0, 'different': 1.0, 'rotate': 1.0, 'to': 5.0, 'was': 2.0, 'it': 4.0, 'is': 4.0, 'a': 3.0, 'like': 1.0, 'and': 2.0, 'that': 1.0, 'i': 2.0, 'directions': 1.0, 'size': 1.0, 'nice': 2.0, 'great': 1.0, 'can': 1.0, 'but': 1.0, 'make': 1.0, 'put': 2.0, 'together': 1.0, 'the': 8.0, 'myself': 1.0, 'though': 1.0, 'by': 1.0, 'variety': 1.0, 'material': 1.0, 'sounds': 1.0, 'mirror': 1.0, 'quality': 1.0, 'baby': 1.0, 'keeps': 1.0, 'amused': 1.0, 'this': 2.0, 'soft': 1.0, 'huge': 1.0}
Word element => {'toys': 1.0, 'thing': 1.0, 'probably': 1.0, 'something': 1.0, 'would': 1.0, 'entertain': 1.0, 'again': 1.0, 'slower': 1.0, 'if': 1.0, 'even': 1.0, 'imagination': 1.0, 'using': 1.0, 'after': 1.0, 'with': 1.0, 'down': 1.0, 'speed': 1.0, 'complaint': 1.0, 'out': 1.0, 'she': 1.0, 'it': 4.0, 'figured': 1.0, 'removable': 1.0, 'but': 2.0, 'legs': 1.0, 'getting': 1.0, 'trouble': 1.0, 'only': 2.0, 'works': 2.0, 'her': 3.0, 'his': 1.0, 'buy': 1.0, 'day': 1.0, 'part': 1.0, 'from': 1.0, 'we': 2.0, 'go': 1.0, 'a': 2.0, 'that': 3.0, 'been': 2.0, 'swing': 6.0, 'have': 1.0, 'completing': 1.0, 'and': 3.0, 'seemed': 2.0, 'great': 1.0, '1': 1.0, 'asked': 1.0, 'is': 5.0, 'older': 1.0, 'shortly': 1.0, 'now': 2.0, 'the': 5.0, 'asleep': 1.0, 'overall': 1.0, 'degree': 1.0, 'husband': 2.0, 'had': 2.0, 'life': 1.0, 'of': 3.0, 'masters': 1.0, 'has': 2.0, 'so': 1.0, 'time': 1.0, 'tray': 1.0, 'months': 1.0, 'uses': 1.0, 'metal': 1.0, 'old': 1.0, 'i': 3.0, 'slow': 1.0, 'he': 1.0, 'as': 1.0, 'our': 1.0, 'to': 7.0, 'sleep': 1.0, 'stay': 1.0, 'may': 1.0, 'my': 4.0, 'religiously': 1.0, 'wish': 1.0, 'this': 5.0, 'full': 1.0, 'also': 1.0, 'baby': 1.0, 'started': 1.0, 'relatively': 1.0, 'get': 1.0, 'easy': 1.0, '3': 1.0, 'put': 1.0, 'daughter': 1.0, 'together': 2.0, 'some': 1.0}
Word element => {'we': 1.0, 'happy': 1.0, 'perfectly': 1.0, 'fastest': 1.0, 'enough': 1.0, 'other': 1.0, 'slower': 1.0, 'younger': 1.0, 'use': 1.0, 'especially': 1.0, 'too': 1.0, 'setting': 4.0, 'really': 1.0, 'run': 1.0, 'number': 1.0, 'contoured': 1.0, 'power': 1.0, 'have': 4.0, 'higher': 1.0, 'comfortably': 1.0, 'might': 1.0, 'you': 5.0, 'motion': 1.0, 'loud': 2.0, 'uncomfortable': 1.0, 'foot': 1.0, 'option': 2.0, 'either': 4.0, 'bar': 1.0, 'safety': 1.0, 'or': 5.0, 'nearly': 1.0, 'not': 4.0, 'your': 2.0, 'on': 11.0, 'plush': 2.0, 'down': 5.0, 'some': 5.0, 'never': 1.0, 'for': 5.0, 'at': 3.0, 'holds': 2.0, 'helps': 1.0, 'shaped': 1.0, 'favorites': 1.0, 'plugs': 1.0, 'two': 2.0, 'babies': 6.0, 'slowest': 1.0, 'that': 7.0, 'because': 1.0, 'cons': 1.0, 'padding': 2.0, 'issue': 1.0, 'if': 1.0, 'particularly': 1.0, 'open': 4.0, 'cradle': 1.0, 'customization': 1.0, 'separately': 1.0, 'makes': 3.0, 'rainforest': 16.0, 'plugging': 2.0, 'an': 2.0, 'such': 2.0, 'price': 1.0, 'cuter': 1.0, 'baby': 12.0, 'comfy': 2.0, 'swing': 30.0, 'this': 6.0, 'closer': 2.0, 'see': 1.0, 'out': 5.0, 'brighter': 1.0, 'all': 2.0, 'way': 3.0, 'matter': 1.0, 'sitting': 2.0, 'also': 5.0, 'swings': 6.0, 'batteries': 2.0, 'get': 2.0, 'securely': 1.0, 'front': 2.0, 'even': 2.0, 'of': 16.0, 'the': 61.0, 'position': 2.0, 'in': 14.0, 'comfortable': 1.0, 'nice': 2.0, 'follows': 1.0, 'may': 4.0, 'are': 4.0, 'my': 5.0, 'me': 2.0, 'fan': 1.0, 'i': 4.0, 'prefer': 1.0, 'hold': 1.0, 'so': 3.0, 'turn': 2.0, 'is': 6.0, 'can': 5.0, 'very': 5.0, 'find': 2.0, 'laying': 2.0, 'much': 4.0, 'put': 1.0, 'has': 5.0, 'as': 4.0, 'fisher': 1.0, 'annoying': 1.0, 'to': 22.0, 'through': 1.0, 'snugabunny': 5.0, 'pro': 1.0, 'a': 15.0, 'doesn': 1.0, 's': 8.0, 'pros': 1.0, 'lifts': 1.0, 'lower': 1.0, 'thick': 1.0, 'difficult': 1.0, 'possible': 1.0, 'quickly': 1.0, 'options': 1.0, 'then': 4.0, 'only': 1.0, 'same': 2.0, 'three': 1.0, 'directions': 2.0, 'choose': 2.0, 'without': 1.0, 'back': 2.0, 'most': 2.0, 'making': 1.0, 'll': 1.0, 'side': 6.0, 'which': 1.0, 'similar': 1.0, 'chose': 1.0, 'but': 5.0, 'want': 1.0, 'easy': 1.0, 'leaves': 2.0, 'than': 2.0, 'bit': 1.0, 'switch': 1.0, 'goes': 1.0, 'one': 2.0, 'been': 1.0, 'people': 1.0, 'mind': 1.0, 'addition': 1.0, 'from': 1.0, 'personally': 1.0, 'mobile': 8.0, 'birds': 2.0, 'go': 3.0, 'around': 1.0, 'music': 2.0, 'lot': 1.0, 'his': 1.0, 'circle': 2.0, 've': 1.0, 'while': 1.0, 'up': 4.0, 'noisy': 1.0, 'themselves': 1.0, 'mirror': 2.0, 'seat': 4.0, 'animals': 2.0, 'interesting': 1.0, 'does': 1.0, 'variety': 1.0, 'noise': 1.0, 'colors': 1.0, 'face': 2.0, 'decent': 1.0, 'there': 1.0, 'bumping': 1.0, 'fast': 2.0, 'nature': 1.0, 'it': 9.0, 'be': 3.0, 'controlled': 1.0, 'wish': 1.0, 'and': 15.0, 'tried': 1.0, 'just': 2.0, 'faster': 1.0, 'thing': 1.0, 'using': 1.0, 'with': 2.0, 'con': 1.0, 'no': 1.0, 'had': 1.0, 'sounds': 3.0, 'like': 1.0, 'head': 1.0, 'motor': 3.0, 'quite': 1.0, 'fun': 1.0, 't': 1.0, 'top': 4.0, 'time': 1.0, 'kind': 1.0, 'listen': 1.0, 'easier': 2.0, 'son': 2.0, 'somewhat': 1.0}
Word element => {'and': 1.0, 'mirror': 1.0, 'her': 1.0, 'smiles': 1.0, 'at': 1.0, 'swing': 1.0, 'princess': 1.0, 'is': 1.0, 'in': 1.0, 'awesome': 1.0, 'the': 1.0, 'my': 1.0, 'self': 1.0, 'this': 1.0, 'loves': 1.0, 'it': 1.0, 'little': 2.0, 'she': 1.0, 'looks': 1.0}
Word element => {'forward': 1.0, 'anyone': 1.0, 'recommend': 1.0, 'uneven': 1.0, 'surface': 1.0, 'away': 1.0, 'goes': 1.0, 'creeking': 1.0, 'close': 1.0, 'again': 2.0, 'here': 1.0, 'complained': 1.0, 'or': 1.0, 'speed': 1.0, 'playing': 1.0, 'corrected': 1.0, 'turning': 1.0, 'off': 2.0, 'automatically': 1.0, 'wish': 1.0, 'future': 1.0, 'prefers': 1.0, 'lo': 1.0, 'music': 1.0, 'them': 1.0, 'without': 1.0, 'over': 1.0, 'sleeping': 1.0, 'sneakily': 1.0, 'easy': 1.0, 'secure': 1.0, 'creek': 1.0, 'things': 1.0, 'much': 1.0, 'ok': 1.0, 'mind': 1.0, 'must': 2.0, 'plastic': 1.0, 'against': 1.0, 'cushy': 1.0, 'padding': 1.0, 'support': 1.0, 'replace': 1.0, 'pad': 1.0, 'replacement': 1.0, 'hopefully': 1.0, 'child': 1.0, 'next': 1.0, 'hoping': 1.0, 'now': 1.0, 'daily': 2.0, 'used': 2.0, 'been': 2.0, 'has': 2.0, 'starting': 1.0, 'pillow': 2.0, 'head': 1.0, 'bunny': 1.0, 'months': 3.0, '10': 1.0, 'others': 1.0, 'humanly': 1.0, 'for': 9.0, 'fabric': 1.0, 'will': 7.0, 'cried': 1.0, 'after': 1.0, 'by': 2.0, 'getting': 2.0, 'long': 1.0, 'take': 2.0, 'moving': 1.0, 'expected': 1.0, 'arrived': 1.0, 'evening': 1.0, 'down': 2.0, 'set': 2.0, 'husband': 1.0, 'price': 1.0, 'try': 2.0, 'held': 1.0, 'overwhelmed': 1.0, 'impossible': 1.0, 'those': 2.0, 'already': 1.0, 'fisher': 1.0, 'fell': 1.0, 'during': 2.0, 'fussing': 1.0, 'true': 1.0, 'seems': 1.0, 'weeks': 1.0, 'washes': 1.0, 'we': 2.0, 'constant': 2.0, '9': 2.0, 'everyday': 1.0, 'napping': 2.0, 'but': 7.0, 'white': 1.0, 'bug': 1.0, 'mom': 2.0, 'little': 6.0, 'nice': 2.0, 'swing': 11.0, 'an': 1.0, 'helped': 2.0, 'naps': 2.0, 'friend': 1.0, '1': 2.0, 'on': 4.0, 'shift': 1.0, 'arms': 1.0, 'just': 2.0, 'and': 19.0, 'thing': 1.0, 'shock': 1.0, 'least': 1.0, 'still': 1.0, 'shell': 1.0, 'son': 2.0, 'since': 2.0, 'day': 7.0, 'together': 1.0, 'in': 13.0, 'newborn': 2.0, 'means': 1.0, 'month': 1.0, 'of': 6.0, 'old': 2.0, 'would': 2.0, 'adapter': 1.0, 'didn': 3.0, 'this': 13.0, 'him': 3.0, 'he': 14.0, 'love': 1.0, 'fold': 1.0, 'sleeps': 1.0, 'what': 1.0, 'havent': 1.0, 'not': 6.0, 'itself': 2.0, 'minutes': 3.0, 'was': 5.0, 'water': 1.0, 'sleep': 2.0, 'cold': 1.0, 'to': 20.0, 'anything': 1.0, 'slightly': 1.0, 'itunes': 1.0, 'strap': 1.0, 'hungry': 1.0, 'put': 1.0, 'do': 3.0, 'guy': 4.0, 'suck': 1.0, 'pretty': 1.0, 'any': 2.0, 'recommendation': 1.0, 'most': 1.0, 'always': 2.0, '1st': 1.0, 'almost': 1.0, 'lot': 2.0, 'his': 3.0, 'i': 15.0, 'pounds': 1.0, 'lifesaver': 1.0, 'momma': 1.0, 'baby': 2.0, 'hours': 3.0, 'asleep': 1.0, 'good': 2.0, 'm': 3.0, 's': 3.0, 't': 6.0, 'at': 6.0, 'that': 6.0, 'ac': 1.0, 'all': 4.0, '20': 3.0, 'because': 2.0, 'time': 4.0, 'babies': 2.0, 'soft': 1.0, 'dad': 1.0, 'sounds': 2.0, 'wasn': 1.0, 'like': 1.0, 'it': 7.0, 'be': 7.0, 'laughing': 1.0, 'from': 2.0, 'nearing': 1.0, 'while': 2.0, 'infections': 1.0, 'wearing': 1.0, 'sometimes': 1.0, 'bundle': 1.0, 'using': 1.0, 'with': 1.0, 'holding': 1.0, 'twice': 3.0, 'crib': 2.0, 'a': 13.0, 'nap': 6.0, 'one': 2.0, 'got': 1.0, '5': 1.0, '45': 1.0, 'go': 2.0, 'removed': 1.0, 'than': 2.0, 'work': 1.0, 'laying': 1.0, '2am': 1.0, 'flat': 2.0, 'wakes': 2.0, 'so': 4.0, 'turn': 1.0, 'is': 9.0, 'can': 3.0, 'morning': 1.0, 'up': 8.0, 'says': 1.0, 'its': 3.0, 'occasionally': 1.0, 'if': 2.0, 'great': 2.0, 'swings': 3.0, 'gets': 1.0, 'the': 35.0, 'smiling': 1.0, '6am': 1.0, 'about': 2.0, 'man': 1.0, 'max': 1.0, 'awesome': 1.0, 'too': 2.0, 'worn': 1.0, 'weight': 1.0, 'limit': 1.0, 'no': 1.0, 'soon': 1.0, 'when': 3.0, 'bed': 1.0, 'honestly': 1.0, 'then': 1.0, 'separate': 1.0, 'legs': 2.0, 'dont': 1.0, 'pediatrician': 1.0, 'know': 1.0, '2': 3.0, 'going': 1.0, 'fussy': 1.0, 'have': 2.0, 'harness': 1.0, 'need': 2.0, 'also': 1.0, 'had': 2.0, 'ear': 1.0, 'more': 2.0, 'wouldn': 1.0, 'night': 1.0, 'inclined': 1.0, 'second': 1.0, 'tough': 1.0, 'motor': 1.0, 'nights': 1.0, 'get': 3.0, 'batteries': 1.0, 'looking': 1.0, 'longer': 2.0, 'does': 1.0, 'full': 1.0, 'size': 1.0, 'us': 1.0, 'actually': 1.0, 'use': 2.0, 'neutral': 1.0, 'noise': 2.0, 'colors': 1.0, 'birds': 2.0, 'waking': 2.0, 'leaf': 1.0, 'once': 1.0, 'mobile': 1.0, 'issues': 1.0, 'my': 13.0, 'room': 1.0, 'are': 2.0, 'cute': 1.0, 'very': 2.0}
Word element => {'always': 1.0, 'loves': 1.0, 'guy': 1.0, 'have': 1.0, 't': 1.0, 'so': 1.0, 'don': 1.0, 'in': 3.0, 'plug': 1.0, 'that': 1.0, 'is': 2.0, 'purchasing': 1.0, 'for': 1.0, 'love': 1.0, 'he': 2.0, 'this': 1.0, 'it': 4.0, 'asleep': 1.0, 'to': 1.0, 'keep': 1.0, 'comfy': 1.0, 'and': 3.0, 'very': 1.0, 'i': 2.0, 'replacing': 1.0, 'falls': 1.0, 'little': 1.0, 'batteries': 1.0, 'cushiony': 1.0, 'my': 1.0}
Word element => {'this': 1.0, 'get': 1.0, 'extra': 1.0, 'little': 1.0, 'so': 1.0, 'nonetheless': 1.0, 'to': 3.0, 'was': 1.0, 'side': 2.0, 'is': 2.0, 'likes': 1.0, 'have': 1.0, 'mostly': 1.0, 'three': 1.0, 'glad': 1.0, 'swing': 4.0, 'weeks': 1.0, 'and': 3.0, 'me': 1.0, 'the': 4.0, 'fact': 1.0, 'my': 2.0, 'push': 1.0, 'daughter': 2.0, '2': 1.0, 'can': 1.0, 'love': 2.0, 'directions': 1.0, 'it': 5.0, 'feature': 1.0, 'i': 4.0, 'battery': 1.0, 'spend': 1.0, 'great': 1.0, 'nice': 1.0, 'when': 1.0, 'am': 2.0, 'in': 2.0, 'also': 1.0, 'kitchen': 1.0, 'we': 2.0, 'a': 4.0, 'button': 1.0, 'within': 1.0, 'different': 1.0, 'her': 1.0, 'facing': 1.0, 'loves': 1.0, 'that': 2.0, 'plugs': 1.0, 'initially': 1.0, 'decided': 1.0, 'bought': 1.0, 'dead': 1.0, 'operated': 1.0}
Word element => {'needs': 1.0, 'when': 1.0, 'out': 1.0, 'find': 1.0, 'now': 1.0, 'best': 1.0, 'it': 2.0, 'review': 1.0, 'persons': 1.0, 'another': 1.0, 'while': 1.0, 'received': 1.0, 'tip': 1.0, 'helpful': 1.0, 'a': 1.0, 'comes': 1.0, 'is': 2.0, 'features': 1.0, 'they': 1.0, 'baby': 3.0, 'about': 1.0, 'before': 1.0, '20': 1.0, 'then': 1.0, 'took': 1.0, 'i': 3.0, 'minutes': 1.0, 'seems': 1.0, 'item': 2.0, 'got': 1.0, 'this': 2.0, 'build': 1.0, 'follow': 1.0, 'were': 1.0, 'very': 1.0, 'test': 3.0, 'worked': 1.0, 'myself': 1.0, 'the': 7.0, 'reading': 1.0, 'like': 1.0, 'thoroughly': 2.0, 'great': 1.0, 'instructions': 1.0, 'by': 1.0, 'just': 2.0, 'early': 1.0, 'sure': 1.0, 'get': 1.0, 'easy': 1.0, 'and': 3.0, 'moms': 1.0, 'make': 1.0, 'yet': 1.0, 'for': 1.0, 'but': 1.0, 'did': 1.0, 'in': 1.0, 'case': 1.0, 'here': 1.0, 'be': 1.0, 'to': 5.0, 'all': 2.0, 'of': 1.0, 'not': 1.0, 'those': 1.0, 'dads': 1.0, 'who': 1.0, 'items': 2.0}
Word element => {'stars': 1.0, 'solid': 1.0, 'give': 1.0, '5': 1.0, 'helps': 1.0, 'also': 1.0, 'part': 1.0, 'top': 1.0, 'sounds': 1.0, 'w': 1.0, 'along': 1.0, 'very': 1.0, 'fantastic': 1.0, 'great': 2.0, 'are': 1.0, 'selections': 1.0, 'weight': 1.0, 'does': 1.0, 'fall': 1.0, 'that': 2.0, 'while': 1.0, 'a': 3.0, 'took': 1.0, 'setting': 1.0, 'as': 2.0, 'slower': 1.0, 'lowest': 1.0, 'on': 2.0, 'rating': 1.0, 'too': 1.0, 'way': 1.0, 'did': 1.0, '8lbs': 1.0, 'mobile': 1.0, 'notch': 1.0, 'born': 1.0, 'was': 1.0, 'when': 1.0, 'music': 1.0, 'around': 2.0, 'sleeps': 1.0, 'is': 6.0, 'till': 1.0, 'adults': 1.0, 'swing': 4.0, 'will': 1.0, 'batteries': 1.0, 'comfortably': 1.0, 'in': 6.0, 'order': 1.0, 'so': 2.0, 'reflux': 1.0, '1': 1.0, 'until': 1.0, '3': 1.0, 'put': 2.0, 'your': 1.0, 'readers': 1.0, 'straight': 1.0, 'to': 8.0, 'our': 2.0, 'now': 2.0, 'away': 2.0, 'the': 12.0, '2': 1.0, 'acid': 1.0, 'or': 1.0, 's': 1.0, 'plug': 2.0, 'use': 1.0, 'her': 1.0, 'last': 1.0, 'naps': 1.0, 'set': 1.0, 'it': 9.0, 'shower': 1.0, 'this': 7.0, 'soft': 2.0, 'wish': 1.0, 'for': 6.0, 'sad': 1.0, 'used': 1.0, 'lamb': 1.0, 'day': 2.0, 'had': 1.0, 'cradles': 1.0, 'best': 1.0, 'product': 1.0, 'year': 1.0, 'old': 1.0, 'adapter': 1.0, 'soothing': 1.0, 'ready': 1.0, 'daughter': 1.0, 'she': 5.0, 'baby': 3.0, '7': 1.0, 'and': 7.0, 'get': 2.0, 'months': 2.0, 'seem': 1.0, 'hands': 1.0, '20lbs': 1.0, '28': 1.0, 'gain': 1.0, 'investment': 1.0, 'registered': 1.0, 'worry': 1.0, 'every': 1.0, 'still': 1.0, 'all': 1.0, 'other': 1.0, 'fits': 1.0, 'looks': 1.0, 'my': 1.0, 'we': 1.0, 'fine': 1.0, 'well': 1.0, 'fast': 1.0, 'slept': 1.0, 'i': 3.0, 'nature': 1.0, 'be': 3.0, 'them': 1.0, 'next': 1.0, 'with': 1.0, 'sleep': 1.0, 'complete': 1.0, 'softness': 1.0, 'down': 1.0, 'cozy': 1.0, 'they': 2.0, 'asleep': 1.0, 'gift': 1.0, 'made': 1.0, 'once': 1.0, 'these': 1.0, 'reason': 1.0, 'never': 1.0, 'but': 1.0, 'chose': 1.0, 'over': 1.0, 'little': 1.0, 'time': 1.0, 'model': 1.0, 'you': 1.0, 'have': 1.0, 'about': 2.0, 'just': 3.0, 'like': 1.0}
Word element => {'without': 1.0, 'he': 1.0, 'this': 1.0, 'loved': 1.0, 'our': 1.0, 'and': 1.0, 'only': 1.0, 'boo': 1.0, 'my': 1.0, 'swing': 2.0, 'is': 1.0, 'now': 1.0, 'totally': 1.0, 'baby': 1.0, 'lasted': 1.0, 'months': 1.0, 'm': 1.0, 'so': 1.0, 'eight': 1.0, 'i': 1.0, 'much': 1.0, 'bummed': 1.0}
Word element => {'highly': 1.0, 'me': 1.0, 'face': 1.0, 'him': 1.0, 'room': 1.0, 'turn': 1.0, 'in': 1.0, 'can': 1.0, 'but': 1.0, 'back': 1.0, 'once': 1.0, 'option': 1.0, 'at': 1.0, 'he': 3.0, '6': 1.0, 'where': 1.0, 'little': 1.0, 'swing': 3.0, 'recommend': 1.0, 'was': 2.0, 'to': 4.0, 'this': 2.0, 'soft': 1.0, 'am': 1.0, 'lbs': 1.0, 'i': 2.0, '4': 1.0, 'on': 1.0, 'too': 1.0, 'and': 6.0, 'small': 1.0, 'so': 1.0, 'my': 1.0, 'got': 1.0, 'snuggly': 1.0, 'side': 2.0, 'under': 1.0, 'son': 1.0, 'first': 1.0, '8lbs': 1.0, 'much': 1.0, 'is': 2.0, 'around': 1.0, 'more': 1.0, 'the': 2.0, 'great': 1.0, 'comfortable': 1.0, 'a': 1.0, 'we': 1.0, 'are': 1.0, 'into': 1.0, 'loves': 1.0, 'it': 1.0, 'month': 1.0, 'front': 1.0, 'wonderful': 1.0, 'also': 1.0, 'depending': 1.0}
Word element => {'buy': 1.0, 'sleeping': 1.0, 'isn': 1.0, 'sooner': 1.0, 'have': 1.0, 'should': 1.0, 'hurricane': 1.0, 'during': 1.0, 'flashlights': 1.0, 'awake': 1.0, 'scrambling': 2.0, 'everyone': 1.0, 'bad': 1.0, 'sheer': 1.0, 'in': 1.0, 'your': 1.0, 'think': 1.0, 'sleep': 2.0, 'out': 1.0, 'swing': 4.0, 'this': 3.0, 'only': 1.0, 'it': 4.0, 'hope': 1.0, 'life': 1.0, 'of': 2.0, 'bought': 2.0, 'months': 2.0, 'symbolized': 1.0, 'would': 1.0, 'i': 7.0, 'two': 1.0, 'if': 2.0, 'batteries': 2.0, 'slept': 1.0, 'held': 1.0, 'sandy': 1.0, 'still': 1.0, 'daughter': 1.0, 'noooowwwww': 1.0, 'you': 1.0, 'unless': 1.0, 'desperation': 1.0, 'when': 2.0, 'my': 2.0, 'the': 3.0, 'was': 4.0, 're': 1.0, 'crying': 1.0, 'worked': 1.0, 'first': 1.0, 'occassional': 1.0, 'her': 1.0, 'paid': 1.0, 'because': 1.0, 'that': 1.0, 'how': 1.0, 'for': 7.0, 'actually': 1.0, 'deprived': 1.0, 'miserable': 1.0, 'well': 1.0, 'night': 1.0, 'baby': 2.0, 't': 1.0, 's': 1.0, 'we': 1.0, 'use': 1.0, 'naps': 1.0, 'and': 2.0}
Word element => {'economical': 1.0, 'very': 1.0, 'makes': 1.0, 'months': 1.0, 'several': 1.0, 'be': 1.0, 'will': 1.0, 'able': 1.0, 'gear': 1.0, 'baby': 1.0, 'addition': 1.0, 'side': 2.0, 'use': 1.0, 'front': 1.0, 'both': 1.0, 'motion': 1.0, 'that': 1.0, 'rocking': 1.0, 'well': 1.0, 'likes': 1.0, 'still': 1.0, 'but': 1.0, 'crib': 1.0, 'more': 1.0, 'is': 2.0, 'hospital': 1.0, 'from': 1.0, 'home': 1.0, 'back': 2.0, 'lie': 1.0, 'didn': 1.0, 'down': 1.0, 'right': 1.0, 'first': 2.0, 'of': 1.0, 'always': 1.0, 'for': 3.0, 'great': 1.0, 'comfortable': 1.0, 'and': 2.0, 'substituted': 1.0, 'two': 1.0, 'i': 1.0, 'don': 1.0, 'which': 1.0, 'brought': 1.0, 'know': 1.0, 'swing': 1.0, 'this': 1.0, 'sleeper': 1.0, 'what': 1.0, 'cradle': 1.0, 'her': 5.0, 'now': 1.0, 'weeks': 1.0, 'on': 1.0, 'put': 1.0, 'flat': 1.0, 'have': 2.0, 'would': 1.0, 'bassinet': 1.0, 'done': 1.0, 'daughter': 1.0, 'when': 2.0, 'peacefully': 1.0, 'life': 1.0, 'it': 5.0, 'she': 5.0, 'fell': 1.0, 'the': 3.0, 'without': 1.0, 'asleep': 1.0, 'as': 1.0, 'our': 3.0, 'to': 6.0, 'worked': 1.0, 'better': 1.0, 'keep': 1.0, 'because': 1.0, 'than': 1.0, 'co': 1.0, 't': 2.0, 'a': 2.0, 'we': 4.0, 's': 2.0, 'could': 1.0, 'in': 3.0, 'snuggle': 1.0}
Word element => {'give': 1.0, 'someone': 1.0, 'you': 1.0, 'baby': 1.0, 'batteries': 1.0, 'best': 1.0, 'ton': 1.0, 'through': 1.0, 'went': 1.0, 'option': 1.0, 'gift': 2.0, 'of': 1.0, 'shower': 2.0, 'previously': 1.0, 'had': 1.0, 'plug': 2.0, '7': 1.0, 'months': 1.0, 'swing': 1.0, 'now': 1.0, 'was': 1.0, 'is': 3.0, 'investment': 1.0, 'big': 1.0, 'very': 1.0, 'as': 1.0, 'seat': 3.0, 'washing': 1.0, 'i': 2.0, 'this': 2.0, 'only': 1.0, 'she': 1.0, 'it': 2.0, 'that': 3.0, 'version': 1.0, 'like': 1.0, 'without': 1.0, 'the': 7.0, 'good': 1.0, 'fabric': 1.0, 'her': 1.0, 'part': 1.0, 'calm': 1.0, 'removed': 1.0, 'thing': 1.0, 'about': 1.0, 'daughter': 1.0, 'and': 5.0, 'tall': 1.0, 'got': 1.0, 'cushioned': 1.0, 'down': 1.0, 'favorite': 1.0, 'for': 2.0, 'can': 2.0, 'but': 1.0, 'still': 1.0, 'owned': 1.0, 'my': 2.0, 'fits': 1.0, 'we': 1.0, 's': 1.0, 'could': 1.0, 'a': 4.0, 'age': 1.0, 'in': 2.0, 'cover': 1.0, 'be': 1.0, 'roomy': 1.0, 'well': 2.0, 'has': 1.0}
Word element => {'walk': 1.0, 'store': 1.0, 'or': 1.0, 'made': 1.0, 'better': 1.0, 'something': 1.0, 'buy': 2.0, 'thank': 1.0, 'winter': 1.0, 'you': 2.0, '11': 1.0, 'an': 1.0, 'find': 1.0, 'out': 1.0, 'want': 1.0, 'really': 1.0, 'don': 1.0, 'large': 1.0, 'rather': 1.0, 'of': 3.0, 'middle': 2.0, 'long': 1.0, 'legs': 1.0, 'section': 1.0, 'foot': 1.0, 'tell': 1.0, 'developed': 1.0, 'tale': 1.0, 'last': 1.0, 'which': 2.0, 'like': 1.0, 'return': 2.0, 'week': 2.0, 'in': 4.0, 'baby': 2.0, 'm': 1.0, 'price': 1.0, 'however': 1.0, 'called': 1.0, 'order': 1.0, 'swing': 1.0, 'requires': 1.0, 'my': 1.0, 'squeak': 1.0, 'the': 9.0, 'can': 1.0, 'but': 1.0, '2': 1.0, 'horrible': 1.0, 'and': 3.0, 'around': 1.0, 'is': 2.0, 'longer': 1.0, '5': 1.0, 'months': 1.0, 'two': 1.0, 'i': 4.0, 'box': 1.0, 'that': 2.0, 'loves': 1.0, 'mail': 1.0, 'only': 1.0, 'it': 7.0, 'heart': 1.0, 'type': 1.0, 'old': 2.0, 'makes': 1.0, 'nervous': 1.0, 'from': 1.0, 'while': 1.0, 'part': 1.0, 'go': 1.0, 't': 1.0, 'a': 3.0, 's': 1.0, 'no': 2.0, 'safe': 1.0, 'where': 1.0, 'for': 1.0, 'fisher': 1.0, 'to': 4.0, 'have': 1.0, 'me': 1.0, 'not': 1.0, 'back': 1.0, 'lugging': 1.0, 'top': 1.0}
Word element => {'around': 1.0, 'birds': 1.0, 'fly': 1.0, 'watching': 1.0, 'in': 1.0, 'love': 1.0, 'they': 1.0, 'sleep': 1.0, 'them': 1.0, 'above': 1.0, 'put': 1.0, 'even': 1.0, 'help': 1.0, 'looking': 1.0, 'can': 1.0, 'myself': 1.0, 'godsend': 1.0, 'boys': 2.0, 'to': 1.0, 'was': 1.0, 'mirror': 1.0, 'extra': 1.0, 'at': 2.0, 'have': 1.0, 'and': 3.0, 'need': 1.0, 'twin': 1.0, 'swing': 1.0, 'this': 1.0, 'it': 2.0, 'i': 3.0, 'by': 1.0, 'when': 1.0, 'is': 1.0, 'the': 4.0, 'a': 1.0, 'pair': 1.0, 'of': 1.0, 'settle': 1.0, 'hands': 1.0, 'home': 1.0, 'themselves': 1.0, 'am': 1.0}
Word element => {'pastel': 1.0, 'light': 1.0, 'birds': 1.0, 'colors': 1.0, 'in': 1.0, 'objects': 1.0, 'were': 1.0, 'there': 1.0, 'cushion': 1.0, 'blanket': 1.0, 'cotton': 1.0, 'had': 1.0, 'have': 1.0, 'so': 1.0, 'very': 1.0, 'not': 1.0, 'place': 1.0, 'the': 8.0, 'control': 1.0, 'day': 1.0, 'ok': 1.0, 'top': 2.0, 'loves': 1.0, 'different': 1.0, 'her': 1.0, 'works': 1.0, 's': 1.0, 'a': 3.0, '15': 1.0, 'get': 1.0, 'and': 1.0, 'on': 1.0, '3': 1.0, 'removable': 1.0, 'music': 2.0, 'if': 1.0, 'sleep': 1.0, 'our': 1.0, 'to': 5.0, 'rotating': 1.0, 'old': 1.0, 'i': 2.0, 'daughter': 2.0, 'with': 2.0, 'during': 1.0, 'like': 1.0, 'additional': 1.0, 'swing': 2.0, 'it': 2.0, 'month': 1.0, 'came': 1.0, 'after': 1.0, 'sensitive': 1.0, 'stops': 1.0, '20': 1.0, 'part': 1.0, 'while': 1.0, 'comes': 1.0, 'is': 4.0, 'this': 2.0, 'wish': 2.0, 'receiving': 1.0, 'charm': 1.0, 'remote': 1.0, 'up': 1.0, 'restart': 1.0, 'baby': 1.0, 'my': 1.0, 'starts': 1.0, 'of': 1.0, 'wake': 1.0, 'skin': 1.0, 'plush': 1.0, 'min': 1.0, 'material': 1.0, 'especially': 1.0, 'polyester': 1.0}
Word element => {'gift': 1.0, 'was': 1.0, 'shower': 1.0, 'my': 1.0, 'loved': 1.0, 'highly': 1.0, 'very': 2.0, 'and': 2.0, 'friend': 1.0, 'recommended': 1.0, 'her': 2.0, 'pleased': 1.0, 'swing': 1.0, 'for': 1.0, 'great': 2.0, 'absolutely': 1.0, 'baby': 2.0, 'she': 1.0}
Word element => {'osilation': 1.0, 'high': 1.0, 'to': 3.0, 'product': 1.0, 'got': 1.0, 'compared': 1.0, 'good': 1.0, 'not': 1.0, 'is': 1.0, 'on': 1.0, 'item': 1.0, 'this': 2.0, 'have': 1.0, 'target': 1.0, 'makes': 1.0, 'more': 1.0, 'less': 1.0, 'run': 1.0, 'same': 1.0, 'noise': 1.0, 'get': 1.0, 'and': 1.0, 'from': 1.0, 'gives': 1.0, 'swing': 2.0, 'i': 1.0}
Word element => {'out': 1.0, 'us': 1.0, 'helping': 1.0, 'for': 1.0, 'thanks': 1.0, 'we': 2.0, 'earlier': 1.0, 'it': 3.0, 'than': 1.0, 'thought': 1.0, 'perfect': 1.0, 'and': 2.0, 'received': 1.0, 'put': 1.0, 'together': 1.0, 'is': 1.0}
Word element => {'awhile': 1.0, 'after': 1.0, 'tired': 1.0, 'get': 1.0, 'anticipate': 1.0, 'initially': 1.0, 'like': 1.0, 'may': 1.0, 'as': 1.0, 'important': 1.0, 'only': 1.0, 'op': 1.0, 'just': 1.0, 'sleeping': 1.0, 'know': 1.0, 'wants': 1.0, 'use': 1.0, 'different': 1.0, 'allows': 1.0, 'rocking': 1.0, 'this': 4.0, 'in': 3.0, 'worth': 1.0, 's': 3.0, 'a': 3.0, 't': 1.0, '2': 1.0, 'soft': 1.0, 'without': 1.0, 'awake': 1.0, 'registry': 1.0, 'battery': 1.0, 'really': 2.0, 'our': 2.0, 'to': 2.0, 'be': 1.0, 'on': 2.0, 'perspective': 1.0, 'rocks': 1.0, 'together': 1.0, 'directions': 1.0, 'your': 2.0, 'probably': 1.0, 'for': 1.0, 'cord': 1.0, 'you': 1.0, 'motion': 1.0, 'direction': 1.0, 'down': 1.0, 'he': 2.0, 'him': 1.0, 'it': 6.0, '100': 1.0, 'extra': 1.0, 'pulling': 1.0, 'other': 2.0, 'little': 3.0, 'swing': 5.0, 'doing': 1.0, 'the': 5.0, 'of': 3.0, 'daddy': 1.0, 'we': 5.0, 'reviews': 1.0, 'sooo': 1.0, 'mommy': 1.0, 're': 1.0, 'ones': 1.0, 'lot': 1.0, 'one': 3.0, 'happy': 1.0, 'spent': 1.0, 'also': 1.0, 'research': 1.0, 'its': 2.0, 'easier': 1.0, 'has': 2.0, 'hair': 1.0, 'did': 1.0, 'transition': 1.0, 'baby': 1.0, 'from': 1.0, 'and': 7.0, 'arms': 2.0, 'd': 1.0, 'best': 1.0, 'into': 1.0, 'that': 1.0, 'because': 1.0, 'than': 2.0, 'power': 1.0, 'which': 1.0, 'based': 1.0, 'rounded': 1.0, 'shape': 1.0, '7': 1.0, 'weeks': 1.0, 'very': 1.0, 'being': 1.0, 'calms': 1.0, 'more': 2.0, 'selected': 1.0, 'at': 1.0, 'is': 2.0, 'holding': 1.0, 'so': 1.0, 'putting': 1.0, 'i': 1.0, 'feature': 1.0, 'don': 1.0, 'inevitably': 1.0, 'when': 3.0, 'sit': 1.0, 'what': 1.0, 'out': 1.0, 'not': 1.0}
Word element => {'give': 2.0, 'soothes': 1.0, 'immediately': 1.0, 'finding': 1.0, 'recently': 1.0, 'until': 1.0, 'used': 1.0, 'never': 1.0, 'also': 1.0, 'down': 1.0, 'calms': 1.0, 'positions': 1.0, 'switch': 1.0, 'took': 1.0, 'originally': 1.0, 'nap': 1.0, 'him': 2.0, 'getting': 1.0, 'only': 1.0, 'its': 1.0, 'was': 1.0, '25': 1.0, 'enjoyed': 1.0, 'use': 1.0, 'and': 5.0, 'son': 2.0, 'day': 1.0, 'best': 1.0, 'take': 1.0, 'sleep': 1.0, 'to': 7.0, 'as': 1.0, 'our': 2.0, 'pricey': 1.0, 'music': 1.0, 'but': 3.0, 'naps': 1.0, 'an': 1.0, 'got': 1.0, 'didn': 1.0, 'swing': 5.0, 'the': 8.0, 'really': 1.0, 'older': 1.0, 'month': 2.0, 'it': 5.0, 'this': 1.0, 'born': 1.0, 'when': 2.0, 'we': 3.0, 't': 1.0, 's': 4.0, 'go': 1.0, 'for': 1.0, 'given': 1.0, 'continues': 2.0, 'in': 2.0, 'entire': 1.0, 'mechanism': 1.0, 'worth': 1.0, 'that': 1.0, 'fusses': 1.0, 'been': 2.0, 'loves': 1.0, 'over': 1.0, 'sideways': 2.0, 'update': 1.0, 'invaluable': 1.0, 'he': 6.0, '6': 1.0, '14': 1.0}
Word element => {'six': 1.0, 'just': 1.0, 'use': 1.0, 'never': 1.0, 'for': 2.0, 'after': 1.0, 'months': 3.0, '2': 1.0, 'somewhere': 1.0, 'enjoyed': 1.0, 'continued': 1.0, 'newborn': 1.0, 'while': 1.0, 'much': 1.0, 'its': 1.0, 'susceptible': 1.0, 'doesn': 1.0, 'was': 2.0, 'her': 1.0, 'tired': 2.0, 'baby': 1.0, 'put': 1.0, '3': 2.0, 'on': 2.0, 'seems': 1.0, 'sounds': 1.0, 'depending': 1.0, 'relax': 1.0, 'help': 1.0, 'as': 1.0, 'sleep': 1.0, 'to': 5.0, 'this': 1.0, 'like': 1.0, 'being': 1.0, 'choice': 1.0, 'my': 1.0, 'grandchild': 1.0, 'the': 9.0, 'when': 1.0, 'idea': 1.0, 'swing': 4.0, 'child': 1.0, 'turning': 1.0, 'in': 2.0, 'two': 2.0, 'i': 1.0, 'of': 1.0, 'always': 1.0, 'next': 1.0, 'that': 3.0, 'reached': 1.0, 'be': 2.0, 'lulling': 1.0, 'used': 1.0, 'excellent': 1.0, 'what': 1.0, 'near': 1.0, '1': 1.0, 'until': 2.0, 'goes': 1.0, 'weight': 1.0, 'now': 1.0, 'limit': 1.0, 'who': 1.0, 'very': 2.0, 'directions': 1.0, 'active': 1.0, 'and': 3.0, 'still': 1.0, 'abilities': 1.0, 'wants': 1.0, 'awake': 1.0, 'time': 1.0, 'so': 1.0, 'she': 5.0, 'short': 1.0, 'knows': 1.0, 't': 1.0, 'a': 3.0, 's': 1.0, 'could': 1.0, 'going': 1.0, 'is': 5.0, 'around': 2.0}
Word element => {'loves': 1.0, 'grandson': 1.0, 'fine': 1.0, 'out': 1.0, 'worked': 1.0, 'toys': 1.0, 'went': 1.0, 'it': 2.0, 'great': 1.0, 'broke': 1.0, 'even': 1.0, 'my': 1.0, 'are': 1.0, 'the': 1.0, 'product': 1.0, 'to': 2.0, 'first': 1.0, 'us': 1.0, 'one': 1.0, 'though': 1.0, 'had': 1.0, 'replace': 1.0}
Word element => {'recommend': 1.0, 'would': 1.0, 'advantage': 1.0, 'an': 1.0, 'batteries': 1.0, 'having': 1.0, 'not': 1.0, 'for': 1.0, 'interesting': 1.0, 'makes': 1.0, 'mirror': 1.0, 'are': 1.0, 'options': 1.0, 'good': 1.0, 'fabric': 1.0, 'comfortable': 1.0, 'so': 2.0, 'decided': 1.0, 'very': 1.0, 'during': 1.0, 'in': 1.0, 'his': 1.0, 'put': 1.0, 'another': 1.0, 'my': 2.0, 'always': 1.0, 'cried': 1.0, 'up': 1.0, 'wanted': 1.0, 'to': 3.0, 'now': 1.0, 'pack': 1.0, 'him': 1.0, 'be': 1.0, 'i': 3.0, 'definitely': 1.0, 'day': 1.0, 'buy': 2.0, 'play': 1.0, 'and': 7.0, 'too': 1.0, 'baby': 1.0, 'held': 1.0, 'we': 1.0, 'a': 1.0, 'soft': 1.0, 'this': 2.0, 'he': 3.0, 'it': 2.0, 'babies': 1.0, 'loves': 2.0, 'times': 1.0, 'when': 1.0, 'finish': 1.0, 'while': 1.0, 'enjoys': 1.0, 'the': 7.0, 'swing': 3.0, 'coos': 1.0, 'more': 1.0, 'is': 3.0, 'lot': 1.0, 'at': 1.0, 'birds': 1.0, 'work': 1.0, 'can': 1.0, 'smiles': 1.0, 'music': 2.0}
Word element => {'swaying': 1.0, 'while': 1.0, 'safe': 1.0, 'that': 1.0, 'at': 1.0, 'be': 1.0, 'time': 1.0, 'they': 2.0, 'your': 1.0, 'with': 1.0, 'this': 1.0, 'swing': 2.0, 'little': 1.0, 'straps': 1.0, 'sound': 1.0, 'assembly': 1.0, 'not': 1.0, 'slumber': 1.0, 'because': 1.0, 'was': 1.0, 'ease': 1.0, 'daddies': 1.0, 'class': 1.0, 'and': 2.0, 'quite': 1.0, 'if': 1.0, 'easy': 1.0, 'puts': 1.0, 'weight': 1.0, 'helps': 1.0, 'in': 2.0, 'age': 1.0, 'the': 4.0, 'great': 1.0, 'are': 4.0, 'mommies': 1.0, 'to': 1.0, 'sleep': 1.0, 'as': 1.0, 'well': 1.0, 'a': 1.0, 'selections': 1.0, 'secure': 1.0, 'can': 1.0, 'music': 2.0, 'but': 1.0, 'one': 1.0, 'even': 2.0, 'safety': 1.0, 'you': 1.0, 'when': 1.0, 'plus': 1.0, 'is': 2.0, 'small': 1.0, 'for': 2.0, 'product': 1.0}
Word element => {'price': 1.0, 'chair': 1.0, 'different': 1.0, 'for': 1.0, 'positions': 1.0, 'options': 1.0, 'i': 1.0, 'great': 1.0, 'love': 1.0, 'sounds': 1.0, 'this': 1.0, 'too': 1.0, 'put': 1.0, 'together': 1.0, 'super': 1.0, 'easy': 1.0, 'to': 1.0, 'and': 2.0, 'lots': 1.0, 'speeds': 1.0, 'of': 1.0}
Word element => {'apart': 1.0, 'can': 1.0, 'quick': 1.0, 'super': 1.0, 'folds': 1.0, 'space': 1.0, 'bit': 1.0, 'does': 1.0, 'second': 1.0, 'again': 1.0, 'want': 1.0, 'nice': 1.0, 'mobile': 1.0, 'houses': 1.0, 'part': 2.0, 'top': 1.0, 'replacing': 1.0, 'child': 1.0, 'price': 1.0, 'fisher': 1.0, 'falls': 1.0, 'have': 2.0, 'all': 1.0, 'our': 2.0, 'to': 5.0, 'just': 2.0, 'even': 1.0, 'around': 1.0, 'his': 1.0, '18': 1.0, 'in': 2.0, 'down': 1.0, 've': 1.0, 'and': 4.0, '5lbs': 1.0, '2': 1.0, 'but': 4.0, 'point': 1.0, 'is': 4.0, 'more': 1.0, 'completely': 1.0, 'son': 1.0, 'unit': 1.0, 'wasn': 1.0, 'out': 1.0, 'a': 5.0, 't': 1.0, 'ago': 1.0, 'my': 1.0, 'items': 1.0, '6': 1.0, 'which': 1.0, 'asleep': 1.0, 'gift': 2.0, 'since': 2.0, 'who': 1.0, 'keep': 1.0, 'weeks': 2.0, 'beyond': 1.0, 'was': 2.0, 'too': 2.0, 'one': 2.0, 'on': 2.0, 'easily': 1.0, 'that': 3.0, 'called': 1.0, 'registry': 1.0, 'naps': 1.0, 'few': 2.0, 'this': 3.0, 'only': 2.0, 'stopped': 1.0, 'definitely': 2.0, 'days': 1.0, 'the': 11.0, 'of': 5.0, 'up': 1.0, 'takes': 1.0, 'favorite': 1.0, 'll': 2.0, 'for': 1.0, 'there': 1.0, 'crawling': 1.0, 'before': 1.0, 'used': 1.0, 'move': 2.0, 'it': 12.0, 'him': 1.0, 'bed': 1.0, 'probably': 1.0, 'still': 1.0, 'if': 3.0, 'where': 1.0, 're': 3.0, 'lucky': 1.0, 'use': 2.0, 'now': 1.0, 'worth': 1.0, 'need': 1.0, 'or': 1.0, 'take': 2.0, 'we': 7.0, 'swinging': 1.0, 'knows': 1.0, 's': 2.0, 'maybe': 1.0, 'received': 1.0, 'us': 1.0, 'you': 2.0, 'starts': 1.0, 'night': 1.0, 'able': 1.0, 'using': 1.0, 'old': 1.0, 'downside': 1.0, 'weight': 1.0, 'max': 1.0, 'will': 1.0, '25lbs': 1.0, 'until': 1.0, 'they': 2.0, 'months': 2.0, 'get': 1.0, 'he': 4.0, 'motor': 2.0, 'let': 1.0, 'ours': 1.0, 'broke': 1.0, 'i': 1.0}
Word element => {'lose': 1.0, 'you': 1.0, 'case': 1.0, 'in': 1.0, 'or': 1.0, 'power': 2.0, 'on': 1.0, 'run': 1.0, 'can': 1.0, 'very': 2.0, 'and': 1.0, 'for': 1.0, 'daughter': 1.0, 'use': 1.0, 'it': 1.0, 'this': 1.0, 'did': 1.0, 'long': 1.0, 'my': 1.0, 'great': 1.0, 'the': 1.0, 'not': 1.0, 'although': 1.0, 'beautiful': 1.0, 'batteries': 1.0, 'swing': 1.0, 'money': 1.0, 'lots': 1.0, 'of': 1.0, 'is': 1.0, 'features': 1.0, 'a': 1.0, 'well': 1.0, 'outlet': 1.0, 'worth': 1.0}
Word element => {'great': 1.0, 'worked': 1.0, 'naps': 1.0, 'took': 1.0, 'holding': 1.0, 'some': 1.0, 'needed': 1.0, 'breaks': 1.0, 'over': 1.0, 'during': 1.0, 'important': 1.0, 'so': 1.0, 'heartbeat': 1.0, 'buy': 1.0, 'would': 1.0, 'used': 1.0, 'rocking': 2.0, 'from': 2.0, 'off': 1.0, 'arms': 1.0, 'and': 5.0, 'when': 1.0, 'again': 1.0, 'you': 1.0, 'unless': 1.0, 'in': 3.0, 'want': 1.0, 'really': 1.0, 'place': 1.0, 'the': 4.0, 's': 1.0, 'a': 2.0, 't': 1.0, 'this': 1.0, 'first': 2.0, 'it': 6.0, 'he': 1.0, 'only': 1.0, 'also': 1.0, 'schedule': 1.0, 'item': 1.0, 'must': 1.0, 'have': 1.0, 'for': 2.0, 'all': 2.0, 'to': 1.0, 'constant': 2.0, 'now': 2.0, 'your': 1.0, '3': 3.0, 'bouncing': 1.0, 'months': 4.0, 'i': 2.0, '4': 1.0, 'my': 1.0, 'cause': 2.0, 'baby': 3.0, 'anymore': 1.0, 'was': 2.0, 'doesn': 1.0, 'but': 1.0, 'use': 1.0, 'is': 3.0, 'fall': 1.0, 'sleeps': 1.0, 'his': 2.0, 'even': 1.0, 'crib': 1.0, 'doesnt': 1.0, 'need': 1.0, 'though': 1.0}
Word element => {'highly': 1.0, 'everyday': 1.0, 'especially': 1.0, 'last': 1.0, 'good': 1.0, 'are': 2.0, 'options': 1.0, 'like': 1.0, 'if': 1.0, 'use': 1.0, 'would': 1.0, 'position': 1.0, 'fully': 1.0, 'used': 2.0, 'have': 2.0, 'will': 1.0, 'so': 1.0, 'few': 2.0, 'over': 1.0, 'sound': 1.0, 'up': 1.0, 'setting': 1.0, 'third': 1.0, 'in': 2.0, 'naps': 2.0, 'music': 1.0, 'change': 1.0, 'can': 1.0, 'work': 1.0, 'but': 2.0, 'his': 1.0, 'swinging': 1.0, 'motion': 1.0, 'to': 1.0, 'as': 1.0, 'all': 1.0, 'reclined': 1.0, 'takes': 1.0, 'and': 4.0, 'comfy': 1.0, 'old': 1.0, 'huge': 1.0, 'months': 2.0, 'i': 2.0, 'pounds': 1.0, '5': 1.0, 'swing': 4.0, 'little': 1.0, 'it': 5.0, 'perfect': 1.0, 'this': 5.0, 'he': 4.0, 'product': 1.0, 'love': 1.0, 'for': 4.0, 'currently': 1.0, 'heavier': 1.0, 'the': 7.0, 'my': 2.0, 'is': 4.0, 'gets': 1.0, 'still': 1.0, 'son': 1.0, 'lifesaver': 1.0, 'on': 1.0, '3': 1.0, 'likes': 1.0, 'has': 1.0, 'go': 1.0, 'could': 1.0, 'we': 5.0, 'a': 3.0, 'us': 2.0, 'you': 2.0, 'when': 1.0, 'recommend': 1.0, 'was': 1.0, 'fans': 1.0, 'now': 1.0, 'only': 1.0, 'continue': 1.0, 'notches': 1.0, 'tiny': 1.0, 'baby': 2.0, 'lullaby': 1.0, 'about': 1.0, 'seemed': 1.0, 'safe': 1.0, 'pretty': 2.0, 'fast': 1.0, 'because': 1.0, '14': 1.0, 'incline': 1.0, 'him': 1.0, 'been': 1.0, 'loves': 1.0, 'that': 1.0}
Word element => {'new': 1.0, 'brand': 1.0, 'happier': 1.0, 'but': 1.0, 'swing': 1.0, 'their': 2.0, 'daughter': 1.0, 'in': 1.0, 'law': 1.0, 'and': 1.0, 'very': 1.0, 'my': 1.0, 'are': 1.0, 'happy': 1.0, 'son': 2.0, 'with': 2.0}
Word element => {'so': 1.0, 'and': 1.0, 'it': 1.0, 'love': 1.0, 'to': 1.0, 'seems': 1.0, 'he': 1.0, 'does': 1.0, 'i': 1.0, 'bought': 1.0, 'my': 2.0, 'december': 1.0, 'grandson': 1.0, 'this': 1.0, 'who': 1.0, 'born': 1.0, 'was': 1.0, 'daughter': 1.0, 'for': 1.0, 'in': 1.0}
Word element => {'bought': 1.0, 'so': 1.0, 'he': 1.0, 'day': 1.0, 'every': 1.0, 'sleeps': 1.0, 'baby': 1.0, 'lifesaver': 1.0, 'a': 1.0, 'i': 2.0, 'it': 3.0, 'would': 1.0, 'swing': 2.0, 'loves': 1.0, 'have': 1.0, 'this': 2.0, 'glad': 1.0, '6': 1.0, 'paid': 1.0, 'is': 1.0, '000': 1.0, 'in': 1.0, 'for': 1.0}
Word element => {'helpful': 1.0, 'were': 1.0, 'week': 1.0, 'house': 1.0, 'motor': 1.0, 'new': 1.0, 'sent': 1.0, 'they': 2.0, 'relations': 1.0, 'customer': 1.0, 'called': 1.0, 'months': 1.0, 'piece': 1.0, '5': 1.0, 'than': 2.0, 'beginning': 1.0, 'very': 3.0, 'son': 1.0, 'worked': 1.0, 'napped': 1.0, 'great': 3.0, 'the': 3.0, 'sits': 1.0, 'swing': 2.0, 'sleeper': 1.0, 'of': 2.0, 'fisher': 3.0, 'basement': 1.0, 'price': 3.0, 'use': 1.0, 'from': 1.0, 'while': 1.0, 'in': 4.0, 'it': 4.0, 'daily': 1.0, 'he': 1.0, 'n': 1.0, 'my': 3.0, 'department': 1.0, 'after': 1.0, 'friendly': 1.0, 'now': 2.0, 'at': 1.0, 'to': 1.0, 'all': 1.0, 'was': 1.0, 'doesn': 1.0, 'anymore': 1.0, 't': 1.0, 'a': 3.0, 'for': 1.0, 'expensive': 1.0, 'sleeps': 1.0, 'snugabunny': 1.0, 'rock': 1.0, 'and': 2.0, 'play': 1.0, 'less': 2.0, '50': 1.0, 'updated': 1.0, 'junk': 1.0, 'i': 1.0}
Word element => {'crap': 1.0, 'because': 1.0, 'one': 1.0, 'for': 1.0, 'collection': 1.0, 'zen': 1.0, 'have': 1.0, 'also': 1.0, 'sleep': 1.0, 'is': 1.0, 'a': 2.0, 'child': 1.0, 'her': 1.0, 'petite': 1.0, 'swing': 2.0, 'my': 1.0, 'ever': 1.0, 'baby': 1.0, 'best': 1.0, 'year': 1.0, 'i': 1.0, 'old': 1.0, 'still': 1.0, 'was': 1.0, 'now': 1.0, 'to': 3.0, 'compared': 1.0, 'need': 1.0, 'we': 1.0, '1': 1.0, 'and': 1.0, 'get': 1.0, 'sometimes': 1.0, 'it': 1.0, 'sale': 1.0, 'this': 2.0}
Word element => {'while': 1.0, 'once': 1.0, 'a': 2.0, 'likes': 1.0, 'as': 1.0, 'help': 1.0, 'swing': 1.0, 'different': 1.0, 'and': 1.0, 'music': 1.0, 'baby': 2.0, 'soothing': 1.0, 'by': 1.0, 'she': 2.0, 'in': 2.0, 'useful': 1.0, 'every': 2.0, 'most': 1.0, 'purchased': 1.0, 'to': 1.0, 'of': 1.0, 'one': 1.0, 'the': 3.0, 'my': 1.0, 'change': 1.0, 'is': 1.0, 'far': 1.0, 'sleep': 1.0, 'loves': 1.0, 'goes': 1.0, 'this': 1.0, 'it': 1.0, 'positions': 1.0, 'products': 1.0, 'i': 1.0, 'night': 1.0}
Word element => {'looking': 1.0, 're': 1.0, 'you': 1.0, 'have': 1.0, 'wouldn': 1.0, '130': 1.0, 'think': 1.0, 'sale': 1.0, 'been': 1.0, 'away': 1.0, 'chatting': 1.0, 'll': 1.0, 'old': 1.0, '8': 1.0, 'switch': 1.0, 'who': 1.0, 'dressed': 1.0, 'get': 2.0, 'got': 1.0, 'typically': 1.0, 'can': 1.0, 'into': 1.0, 'going': 1.0, 'keeps': 1.0, 'like': 1.0, 'all': 1.0, 'are': 1.0, 'sturdy': 1.0, 'they': 1.0, 'unit': 1.0, 'just': 2.0, 'sure': 1.0, 'or': 3.0, 'accommodate': 1.0, 'move': 1.0, 'we': 3.0, 'joke': 1.0, 'should': 1.0, 'some': 1.0, 'no': 1.0, 'thing': 1.0, 'large': 2.0, 'love': 1.0, '10': 1.0, 'cry': 1.0, 'for': 6.0, 'hadn': 1.0, 'in': 8.0, 'place': 1.0, 'furniture': 1.0, 'on': 3.0, 'purchased': 2.0, 'had': 1.0, 'babe': 3.0, 'find': 1.0, 'great': 1.0, 'built': 1.0, 'be': 2.0, 'the': 9.0, 'of': 2.0, 'particular': 1.0, 'assemble': 1.0, 'wake': 2.0, 'crib': 1.0, 'content': 2.0, 'melody': 1.0, 'easy': 1.0, 'bit': 1.0, 'co': 1.0, 'a': 6.0, 'small': 1.0, 'after': 3.0, 'to': 8.0, 'our': 1.0, 'was': 1.0, 'doesn': 1.0, 'trying': 1.0, 'minutes': 4.0, 'daycare': 1.0, 'plugs': 1.0, 'itself': 1.0, 'not': 3.0, 'may': 1.0, 'me': 1.0, 'quite': 1.0, 'and': 5.0, 'entertained': 1.0, 'swing': 6.0, 'well': 2.0, 'i': 4.0, 'already': 1.0, 'it': 8.0, 'baby': 1.0, 'unfortunately': 1.0, 'she': 6.0, 'its': 1.0, 'research': 1.0, 'few': 1.0, 'this': 4.0, 'sleeper': 1.0, 't': 3.0, 'cape': 1.0, 'will': 2.0, 'over': 1.0, 'work': 1.0, 'but': 1.0, 'does': 1.0, 'pauses': 1.0, 'around': 1.0, 'music': 1.0, 'us': 1.0, 'with': 1.0, 'helping': 1.0, 'laundry': 1.0, 'up': 2.0, 'that': 4.0, '20': 2.0, 'put': 1.0, 'butt': 1.0, 'couple': 1.0, 'thankfully': 1.0, 'is': 5.0, 'notice': 1.0, 'at': 2.0, 'anyway': 1.0, 'her': 2.0, 'now': 2.0, 'weeks': 2.0, 'if': 4.0, 'still': 1.0, 'herself': 1.0, 'naps': 2.0, 'wakes': 1.0, 'lay': 1.0, 'very': 1.0, 'being': 1.0, 'down': 1.0, 'anywhere': 1.0, 'interesting': 1.0, 'sleep': 2.0, 'back': 1.0, 'did': 1.0, 'there': 1.0, 'knows': 1.0, 'times': 1.0, 'try': 1.0, 'one': 1.0}
Word element => {'forever': 1.0, 'they': 1.0, 'someone': 1.0, 'gift': 1.0, 'great': 1.0, 'overall': 1.0, 'holds': 1.0, 'gets': 1.0, 'thank': 1.0, 'child': 1.0, 'your': 1.0, '4': 1.0, 'ss': 1.0, 'higher': 1.0, 'up': 1.0, 'quicker': 1.0, 'low': 1.0, 'slowly': 1.0, 'go': 1.0, 'make': 1.0, 'swing': 1.0, '5': 1.0, 'with': 1.0, 'harness': 2.0, 'attached': 1.0, 'bunny': 1.0, 'feeling': 1.0, 'forward': 1.0, 'left': 1.0, 'right': 1.0, 'rock': 1.0, 'have': 1.0, 'pivots': 1.0, 'around': 1.0, 'than': 1.0, 'see': 1.0, 'point': 2.0, 'in': 1.0, 'give': 1.0, 'there': 1.0, 'soon': 1.0, 'and': 4.0, 'much': 1.0, 'put': 2.0, 'on': 3.0, 'or': 4.0, 'every': 1.0, 'cutest': 1.0, 'it': 12.0, 'crazy': 1.0, 'as': 4.0, 'how': 1.0, 'our': 2.0, 'very': 4.0, 'single': 1.0, 'little': 2.0, 'day': 1.0, 'her': 1.0, 'couch': 1.0, 'happy': 1.0, 'at': 1.0, 'is': 4.0, 'more': 1.0, 'finally': 1.0, 'playing': 1.0, 'ever': 1.0, 'an': 1.0, 't': 1.0, 'will': 1.0, 'could': 1.0, 'a': 3.0, 'phenomenal': 1.0, 's': 1.0, 'after': 1.0, 'even': 1.0, 'base': 1.0, 'was': 4.0, 'talk': 1.0, 'seriously': 2.0, '6': 1.0, 'bed': 1.0, 'for': 2.0, 're': 1.0, 'depending': 1.0, 'where': 2.0, 'sit': 1.0, 'when': 2.0, 'you': 6.0, 'got': 1.0, 'daughter': 2.0, 'of': 1.0, 'the': 12.0, 'inches': 1.0, 'wasn': 1.0, 'this': 3.0, 'are': 1.0, 'cute': 1.0, 'first': 1.0, 'months': 1.0, 'thing': 3.0, 'about': 1.0, 'born': 1.0, 'used': 1.0, 'move': 2.0, 'absolutely': 1.0, 'mirror': 1.0, 'best': 1.0, 'above': 1.0, 'loved': 2.0, 'thrilled': 1.0, 'that': 3.0, 'back': 1.0, 'most': 1.0, 'directly': 1.0, 'tight': 1.0, 'would': 1.0, 'watch': 1.0, 'cradle': 1.0, 'herself': 2.0, 'tipping': 1.0, 'hours': 1.0, 'end': 1.0, 'notable': 1.0, 'features': 1.0, 'adapter': 1.0, 'has': 3.0, 'time': 1.0, 'worried': 1.0, 'wide': 1.0, 'strength': 1.0, 'levels': 1.0, 'can': 3.0, 'so': 6.0, 'well': 2.0, 'i': 1.0, 'never': 1.0, 'over': 1.0, 'but': 2.0, 'ac': 1.0, '12': 1.0, 'batteries': 1.0, 'we': 2.0, 'take': 1.0, 'to': 6.0, 'pretty': 1.0, 'anywhere': 1.0, 'she': 6.0, 'baby': 2.0, 'folds': 1.0, 'bit': 1.0, 'easy': 1.0, 'down': 1.0}
Word element => {'daughter': 1.0, 'my': 1.0, 'time': 1.0, 'one': 1.0, 'for': 1.0, 'comfortable': 1.0, 'was': 1.0, 'live': 1.0, 'slept': 1.0, 'if': 1.0, 'crib': 1.0, 'in': 2.0, 'of': 1.0, 'you': 1.0, 'the': 3.0, 'item': 1.0, 'size': 1.0, 'small': 1.0, 'ie': 1.0, 'soft': 1.0, 'large': 1.0, 'apartment': 1.0, 'very': 3.0, 'a': 1.0, 'compact': 1.0, 'space': 1.0, 'house': 1.0, 'almost': 1.0, 'or': 1.0, 'not': 1.0, 'do': 1.0, 'get': 1.0, 'it': 2.0, 'this': 1.0}
Word element => {'purchase': 1.0, 'few': 1.0, 'arrived': 1.0, 'price': 1.0, 'fisher': 1.0, 'piece': 2.0, 'package': 1.0, 'pleased': 1.0, 'later': 1.0, 'days': 1.0, 'call': 1.0, 'cozy': 1.0, 'soft': 1.0, 's': 1.0, 'kitchen': 1.0, 'and': 4.0, 'our': 2.0, 'my': 1.0, 'the': 3.0, 'missing': 1.0, 'for': 1.0, 'in': 2.0, 'she': 2.0, 'gift': 1.0, 'to': 1.0, 'granddaughter': 1.0, 'was': 2.0, 'but': 1.0, 'work': 1.0, 'new': 1.0, 'a': 4.0, 'nap': 1.0, 'just': 2.0, 'customer': 1.0, 'motion': 1.0, 'can': 1.0, 'with': 1.0, 'quick': 1.0, 'this': 1.0, 'it': 2.0, 'service': 1.0, 'mommy': 1.0, 'loves': 1.0, 'or': 1.0, 'watch': 1.0}
Word element => {'open': 1.0, 'the': 1.0, 'when': 1.0, 'review': 1.0, 'update': 1.0, 'opened': 1.0, 'not': 1.0, 'gift': 1.0, 'parents': 1.0, 'yet': 1.0, 'for': 1.0, 'be': 2.0, 'purchased': 1.0, 'to': 2.0, 'that': 1.0, 'will': 3.0, 'happy': 1.0, 'my': 2.0, 'make': 1.0, 'have': 1.0, 'born': 1.0, 'niece': 1.0, 'i': 3.0, 'july': 1.0, 'soon': 1.0, 'nursery': 1.0, 'in': 1.0, 'perfect': 1.0, 'addition': 1.0, 'her': 1.0, 'a': 2.0, 'since': 1.0, 'shower': 1.0, 'this': 2.0, 'it': 3.0, 'is': 1.0}
Word element => {'isn': 1.0, 'house': 1.0, 'for': 2.0, 'looking': 1.0, 'if': 1.0, 'room': 2.0, 'from': 1.0, 'us': 1.0, 'kind': 1.0, 'there': 1.0, 'put': 1.0, '34': 2.0, 'very': 1.0, 'down': 1.0, 'when': 1.0, 'sleeps': 1.0, 'is': 4.0, 'say': 1.0, 'by': 1.0, 'life': 2.0, 'just': 1.0, 'tough': 1.0, 'and': 6.0, 'on': 2.0, 'but': 3.0, 'around': 2.0, 'music': 2.0, 'his': 1.0, 'move': 3.0, 'used': 1.0, 'seems': 1.0, 'sounds': 2.0, 'batteries': 1.0, 'in': 3.0, 'sleep': 1.0, 'leave': 1.0, 'as': 3.0, 'where': 1.0, 'depending': 1.0, 're': 2.0, 'has': 3.0, 'crib': 1.0, 'are': 1.0, 'bad': 1.0, 'saver': 2.0, 'been': 1.0, 'easily': 1.0, 'that': 3.0, 'month': 1.0, 'him': 3.0, 'it': 14.0, 'nights': 1.0, 'this': 4.0, 'old': 1.0, 'getting': 1.0, 'small': 1.0, 'a': 7.0, 'we': 4.0, 's': 5.0, 'could': 1.0, 't': 3.0, 'since': 1.0, 'son': 1.0, 'calmed': 1.0, 'he': 3.0, 'fold': 1.0, 'day': 1.0, 'something': 1.0, 'buy': 1.0, 'think': 1.0, 'definitely': 1.0, 'be': 1.0, 'nature': 1.0, 'not': 3.0, 'my': 2.0, 'me': 1.0, 'enough': 1.0, 'loved': 1.0, 'gains': 1.0, 'one': 2.0, 'try': 1.0, 'only': 1.0, 'different': 1.0, 'bouncer': 1.0, 'speeds': 1.0, 'which': 1.0, 'swing': 5.0, 'comforting': 1.0, 'great': 1.0, 'big': 1.0, 'weight': 1.0, 'can': 1.0, 'so': 2.0, 'easy': 1.0, 'bit': 1.0, 'let': 1.0, 'no': 2.0, 'thing': 1.0, 'about': 1.0, 'or': 1.0, 'need': 1.0, 'those': 1.0, 'bunch': 1.0, 'the': 5.0, 'of': 3.0, 'use': 1.0, 'creak': 1.0, 'with': 1.0, 'does': 1.0, 'have': 2.0, 'plugs': 1.0, 'little': 1.0, 'i': 3.0, 'you': 5.0, 'loud': 1.0, 'bother': 2.0, 'more': 1.0, 'husband': 1.0, 'would': 1.0, 'recommend': 1.0, 'doesn': 2.0, 'to': 8.0, 'pretty': 1.0}
Word element => {'up': 1.0, 'set': 1.0, 'part': 1.0, 'of': 1.0, 'necessary': 1.0, 'include': 1.0, 'wipes': 1.0, 'diapers': 1.0, 'with': 1.0, 'along': 1.0, 'reaches': 1.0, 'before': 1.0, 'months': 1.0, 'newborn': 1.0, 'couple': 1.0, 'just': 1.0, 'have': 2.0, 'i': 3.0, 'calm': 1.0, 'baby': 1.0, 'songs': 1.0, 'help': 1.0, 'am': 1.0, 'when': 1.0, 'away': 1.0, 'limit': 1.0, 'weeks': 1.0, 'now': 1.0, 'right': 1.0, 'this': 3.0, 'he': 3.0, 'it': 4.0, 'put': 2.0, 'soothe': 1.0, 'was': 3.0, 'doesn': 1.0, 'some': 1.0, 'off': 1.0, 'swing': 2.0, 'little': 1.0, 'that': 2.0, 'to': 3.0, 'sleep': 2.0, 'all': 1.0, 'as': 3.0, 'son': 1.0, 'sleepy': 1.0, 'too': 1.0, 'and': 5.0, 'the': 4.0, 'adjustable': 1.0, 'heavy': 1.0, 'him': 1.0, 'about': 1.0, 'positions': 1.0, 'd': 1.0, 'mirror': 1.0, 'sounds': 1.0, 'weight': 1.0, 'made': 1.0, 'going': 1.0, 't': 1.0, 'a': 5.0, 'food': 1.0, 'most': 1.0, 'my': 2.0, 'purchase': 1.0, 'excellent': 1.0, 'more': 2.0, 'is': 1.0, 'sad': 1.0, 'for': 2.0, 'so': 3.0, 'fast': 1.0}
Word element => {'purchasing': 1.0, 'who': 1.0, 'be': 1.0, 'here': 1.0, 'reviews': 1.0, 'trust': 1.0, 'amazon': 2.0, 'may': 1.0, 'my': 1.0, 'another': 1.0, 'purchase': 1.0, 'did': 1.0, 'time': 1.0, 'of': 1.0, 'from': 2.0, 'period': 1.0, 'wanted': 1.0, 'short': 1.0, 'motor': 3.0, 'the': 8.0, 'such': 1.0, 'over': 1.0, 'put': 1.0, 'on': 2.0, 'it': 4.0, 'this': 3.0, 'owning': 1.0, 'daughter': 1.0, 'when': 1.0, 'that': 1.0, 'nothing': 1.0, 'until': 1.0, 'ridiculous': 1.0, 'now': 1.0, 'however': 1.0, 'after': 1.0, 'else': 1.0, 'swing': 4.0, 'sooth': 1.0, 'loved': 1.0, 'would': 2.0, 'just': 1.0, 'not': 2.0, 'review': 1.0, 'has': 1.0, 'more': 1.0, 'completely': 1.0, 'for': 5.0, 'and': 2.0, 'one': 1.0, 'bought': 1.0, 'months': 1.0, 'mobile': 1.0, 'considering': 1.0, 'works': 1.0, 'even': 1.0, '2': 1.0, 'music': 1.0, 'but': 2.0, 'will': 1.0, 'turn': 1.0, 'to': 1.0, 'our': 1.0, 'any': 2.0, 'price': 1.0, 'i': 5.0, 'retailer': 1.0, 'died': 1.0, 'find': 1.0, 'worked': 1.0, 'we': 1.0, 'a': 1.0}
Word element => {'single': 1.0, 'every': 1.0, 'wakes': 1.0, 'does': 1.0, '20': 1.0, 'about': 1.0, 'off': 1.0, 'complaint': 1.0, 'one': 1.0, 'automatically': 1.0, 'leave': 1.0, 'have': 1.0, 'pretty': 1.0, 'up': 2.0, 'when': 1.0, 'you': 2.0, 'once': 1.0, 'move': 1.0, 'easier': 1.0, 'turns': 1.0, 'place': 1.0, 'the': 4.0, 't': 1.0, 'i': 3.0, 'old': 1.0, 'minutes': 1.0, 'was': 3.0, 'to': 3.0, 'and': 4.0, 'after': 1.0, 'cute': 1.0, 'sounds': 1.0, 'wish': 1.0, 'soft': 1.0, 'this': 1.0, 'frustrating': 1.0, 'with': 1.0, 'put': 2.0, 'now': 1.0, 'weeks': 1.0, 'swing': 3.0, 'didn': 1.0, 'together': 1.0, 'easy': 1.0, 'but': 1.0, 'music': 2.0, 'if': 1.0, 'time': 1.0, 'so': 2.0, 'it': 6.0, 'she': 2.0, 'looks': 1.0, 'comes': 1.0, 'is': 2.0, 'love': 1.0, 'for': 2.0, 'whatever': 1.0, 'much': 1.0, 'works': 1.0, 'her': 1.0, 'reason': 1.0, 'in': 2.0, 'my': 3.0, 'baby': 2.0, 'like': 1.0, 'great': 2.0, 'until': 1.0, 'that': 2.0, 'loves': 1.0, '7': 1.0, 'biggest': 1.0, 'would': 1.0, 'sit': 1.0, 'hours': 1.0, 'let': 1.0}
Word element => {'mind': 1.0, 'daughter': 1.0, 'calming': 1.0, 'how': 1.0, 'white': 1.0, 'is': 2.0, 'motor': 2.0, 'hours': 1.0, 'but': 1.0, '2': 1.0, 'for': 2.0, 'noise': 1.0, '20': 1.0, 'within': 1.0, 'at': 2.0, 'mirror': 1.0, 'birdies': 1.0, 'watch': 1.0, 'immediately': 1.0, 'put': 1.0, 'don': 1.0, 'sound': 2.0, 'up': 1.0, 'set': 1.0, '30': 1.0, 'then': 1.0, 'took': 1.0, 'out': 1.0, 'snug': 1.0, 'after': 1.0, 'decided': 1.0, 'little': 2.0, 'swing': 3.0, 'about': 3.0, 'started': 1.0, 'baby': 1.0, 'well': 2.0, 't': 1.0, 'bunny': 1.0, 'a': 6.0, 'we': 2.0, 'minutes': 2.0, 'was': 2.0, 'husband': 1.0, 'girl': 1.0, 'loud': 1.0, 'originally': 1.0, 'hated': 1.0, 'desperation': 1.0, 'you': 1.0, 'had': 1.0, 'purchased': 1.0, 'front': 1.0, 'use': 1.0, 'bit': 1.0, 'smaller': 1.0, 'my': 2.0, 'she': 3.0, 'month': 1.0, 'it': 4.0, 'works': 1.0, 'only': 1.0, 'slept': 1.0, 'rocked': 1.0, 'top': 1.0, 'back': 1.0, 'of': 4.0, 'me': 1.0, 'not': 1.0, 'getting': 1.0, 'and': 4.0, 'would': 1.0, 'in': 1.0, 'cry': 1.0, 'asleep': 1.0, 'the': 8.0, 'until': 1.0, 'our': 1.0, 'any': 1.0, 'to': 5.0, 'sleep': 1.0, 'that': 2.0, 'into': 1.0, 'her': 2.0, 'i': 3.0, 'went': 1.0, 'exhausted': 1.0, 'kind': 1.0, 'talked': 1.0, 'purchasing': 1.0}
Word element => {'of': 1.0, 'on': 1.0, 'save': 1.0, 'but': 1.0, 'option': 1.0, 'batteries': 1.0, 'sooth': 1.0, 'little': 1.0, 'i': 3.0, 'style': 1.0, 'love': 2.0, 'loud': 1.0, 'this': 1.0, 'it': 2.0, 'think': 1.0, 'that': 1.0, 'plug': 1.0, 'baby': 1.0, 'helps': 2.0, 'the': 4.0, 'as': 2.0, 'a': 1.0, 'well': 1.0, 'cost': 1.0, 'music': 1.0, 'in': 1.0, 'is': 1.0, 'really': 1.0}
Word element => {'more': 1.0, 'say': 1.0, 'content': 1.0, 'stayed': 1.0, 'first': 1.0, 'enough': 1.0, 'until': 1.0, 'out': 1.0, 'hang': 1.0, 'and': 1.0, 'awake': 1.0, 'hes': 1.0, 'while': 1.0, 'put': 2.0, 'even': 1.0, 'll': 1.0, 'down': 2.0, 'his': 1.0, 'carseat': 1.0, 'etc': 1.0, 'setting': 1.0, 'vibrating': 1.0, 'time': 2.0, 'pick': 1.0, 'tried': 1.0, 'the': 3.0, 'my': 1.0, 'held': 1.0, 'tired': 1.0, 'baby': 1.0, 'no': 1.0, 'about': 1.0, 'screaming': 1.0, 'will': 1.0, 'review': 1.0, 'would': 1.0, 'new': 1.0, 'him': 4.0, 'be': 3.0, 'very': 1.0, 'this': 4.0, 'he': 4.0, 'with': 1.0, 'swing': 4.0, 'in': 2.0, 'wanted': 1.0, 'short': 1.0, 'bassinet': 1.0, 's': 1.0, 'we': 4.0, 'a': 1.0, 'bouncy': 1.0, '10': 1.0, 'sleep': 1.0, 'all': 1.0, 'our': 1.0, 'to': 3.0, 'seat': 1.0, 'bed': 1.0, 'love': 1.0, 'for': 2.0, 'before': 1.0, 'invariably': 1.0, 'someone': 1.0, 'hrs': 1.0, 'after': 1.0, 'minutes': 1.0, '2': 1.0, 'can': 1.0, 'up': 1.0}
Word element => {'regret': 1.0, 'you': 1.0, 'because': 1.0, 'side': 2.0, 'naps': 1.0, 'back': 1.0, 'in': 2.0, 've': 1.0, 'investments': 1.0, 'one': 1.0, 'for': 1.0, 'love': 1.0, 'directions': 1.0, 'every': 1.0, 'it': 6.0, 'she': 1.0, 'baby': 1.0, 'don': 1.0, 'swing': 1.0, 'by': 1.0, 'also': 1.0, 'swings': 1.0, 'won': 1.0, 'has': 2.0, 'single': 1.0, 'dome': 1.0, 'of': 2.0, 'daddy': 1.0, 'forth': 1.0, 'far': 1.0, 'made': 1.0, 'the': 2.0, 'price': 1.0, 'mirror': 1.0, 'best': 1.0, 'day': 1.0, 'too': 2.0, 'and': 4.0, 'been': 1.0, 'loves': 1.0, 'different': 1.0, 'mommy': 1.0, 'speeds': 1.0, 'music': 1.0, 'we': 1.0, 't': 2.0, 'a': 1.0, 'two': 1.0, 'this': 1.0, 'hesitate': 1.0, 'our': 1.0, 'to': 1.0}
Word element => {'mom': 1.0, 'i': 1.0, 'is': 3.0, 'side': 2.0, 'it': 3.0, 'this': 1.0, 'he': 1.0, 'one': 1.0, 'good': 1.0, 'or': 1.0, 'but': 2.0, 'back': 1.0, 'forth': 1.0, 'because': 1.0, 'not': 1.0, 'just': 1.0, 'swing': 1.0, 'falls': 1.0, 'my': 4.0, 'happy': 2.0, 'and': 2.0, 'comfy': 1.0, 'like': 1.0, 'asleep': 1.0, 'the': 3.0, 'loves': 1.0, 'that': 1.0, 'little': 3.0, 'very': 1.0, 'for': 1.0, 'opinion': 1.0, 'cute': 1.0, 'a': 2.0, 'fast': 1.0, 'in': 3.0, 'slower': 1.0, 'speed': 1.0, 'to': 1.0, 'all': 1.0, 'baby': 1.0, 'enjoy': 1.0, 'looking': 1.0, 'rocks': 2.0, 'at': 1.0, 'did': 1.0, 'himself': 1.0, 'm': 1.0, 'mirror': 1.0, 'boy': 2.0, 'so': 1.0}
Word element => {'quiet': 1.0, 'relatively': 1.0, 'sleeping': 1.0, 'our': 1.0, 'and': 1.0, 'loves': 1.0, 'this': 1.0, 'swing': 1.0, 'seconds': 1.0, 'happy': 1.0, 'baby': 1.0, 'she': 1.0, 'until': 1.0, 'is': 1.0}
Word element => {'service': 1.0, 'customer': 1.0, 'great': 1.0, 'so': 1.0, 'hassle': 1.0, 'replacement': 1.0, 'us': 1.0, 'sent': 1.0, 'they': 1.0, 'about': 1.0, 'price': 1.0, 'fisher': 1.0, 'being': 1.0, 'or': 1.0, 'when': 2.0, 'girl': 1.0, 'is': 1.0, 'savior': 1.0, 'were': 1.0, 'little': 1.0, 'case': 1.0, 'loves': 1.0, 'been': 1.0, 'mobile': 1.0, 'this': 1.0, 'with': 1.0, 'n': 1.0, 'loud': 1.0, 'she': 2.0, 'it': 5.0, 'stopped': 1.0, 'we': 4.0, 'a': 3.0, 'gift': 1.0, 'any': 1.0, 'our': 2.0, 'as': 1.0, 'crying': 1.0, 'and': 3.0, 'has': 1.0, 'just': 2.0, 'know': 1.0, 'put': 1.0, 'item': 1.0, 'will': 1.0, 'can': 1.0, 'but': 1.0, 'her': 1.0, 'before': 1.0, 'in': 2.0, 'be': 1.0, 'getting': 1.0, 'did': 1.0, 'fussy': 1.0, 'given': 1.0, 'problem': 1.0, 'contacted': 1.0, 'have': 1.0, 'without': 1.0, 'asleep': 1.0, 'the': 2.0, 'motor': 2.0, 'i': 1.0}
Word element => {'awesome': 1.0, 'get': 1.0, 'an': 1.0, 'consider': 1.0, 'suggest': 1.0, 'then': 1.0, 'wrong': 1.0, 'me': 1.0, 'not': 1.0, 'generally': 1.0, 'wall': 1.0, 'didn': 1.0, 'out': 1.0, 'mind': 1.0, 'older': 1.0, 'now': 1.0, 'if': 3.0, 'which': 1.0, 'don': 1.0, 'up': 1.0, 'it': 1.0, 'she': 4.0, 'on': 1.0, 'back': 1.0, 'turning': 1.0, 'turn': 2.0, 'from': 1.0, 'big': 1.0, 'choose': 1.0, 'volume': 1.0, 'do': 1.0, 'only': 1.0, 'this': 2.0, 'first': 2.0, 'hog': 1.0, 'plugged': 1.0, 'and': 3.0, 'getting': 1.0, 'there': 3.0, 'wake': 1.0, 'of': 1.0, 'swing': 4.0, 'into': 2.0, 'that': 4.0, 'been': 1.0, 'adjusted': 1.0, 'could': 1.0, 't': 3.0, 'a': 5.0, 'are': 1.0, 'saver': 1.0, 'but': 2.0, 'music': 7.0, 'can': 1.0, 'has': 1.0, 'just': 1.0, 'whose': 1.0, 'life': 1.0, 'as': 1.0, 'to': 4.0, 'doesn': 1.0, 'minutes': 2.0, 'was': 7.0, 'be': 2.0, 'down': 1.0, 'used': 1.0, 'rush': 1.0, 'fall': 1.0, 'is': 3.0, 'huge': 1.0, 'months': 1.0, 'mobile': 1.0, 'deal': 1.0, 'the': 11.0, 'turns': 2.0, 'cozy': 1.0, 'songs': 1.0, 'would': 4.0, 'off': 5.0, 'after': 2.0, 'inconvience': 1.0, 'before': 1.0, 'room': 1.0, '5': 1.0, '20': 2.0, 'space': 1.0, 'at': 2.0, 'you': 1.0, 'when': 1.0, 'daughter': 1.0, 'another': 1.0, 'my': 1.0, 'two': 1.0, 'i': 2.0, 'have': 1.0}
Word element => {'great': 1.0, 'think': 1.0, 'than': 1.0, 'wanted': 1.0, 'big': 1.0, 'regret': 1.0, 'only': 1.0, 'necessity': 1.0, 'cozy': 1.0, 'difficult': 1.0, 'position': 2.0, 'time': 1.0, 'new': 1.0, 'snooze': 1.0, 'something': 1.0, 'says': 1.0, 'just': 1.0, '100': 1.0, 'like': 2.0, 'snuggled': 1.0, 'is': 2.0, 'name': 1.0, 'every': 1.0, 'enjoy': 1.0, 'upright': 1.0, 'have': 1.0, 'using': 1.0, 'swings': 2.0, 'unlike': 1.0, 'a': 3.0, 'beginning': 1.0, 'and': 6.0, 'loved': 1.0, 'as': 2.0, 'our': 3.0, 'to': 6.0, 'little': 1.0, 'from': 1.0, 'positioned': 1.0, 'swing': 3.0, 'for': 5.0, 'effective': 1.0, 'did': 2.0, 'comfortable': 1.0, 'it': 6.0, 'this': 5.0, 'mother': 1.0, 'soft': 1.0, 'sleep': 1.0, 'most': 1.0, 'other': 1.0, 'an': 1.0, 'simulate': 1.0, 'when': 2.0, 'because': 1.0, 'that': 3.0, 'cradle': 1.0, 'use': 1.0, 'her': 3.0, 'in': 2.0, 'dreamy': 1.0, 'was': 5.0, 'very': 3.0, 'being': 1.0, 'allowed': 1.0, 'not': 1.0, 'get': 2.0, 'things': 1.0, 'going': 1.0, 'done': 1.0, 'even': 1.0, 'nap': 3.0, 'me': 1.0, 'my': 2.0, 'more': 2.0, 'babies': 1.0, 'husband': 1.0, 'putting': 1.0, 'i': 2.0, 'which': 1.0, 'made': 1.0, 'so': 5.0, 'friends': 1.0, 's': 2.0, 'peacefully': 1.0, 'wished': 1.0, 'sleeping': 1.0, 'they': 2.0, 'adults': 1.0, 'she': 3.0, 'baby': 5.0, 'many': 1.0, 'the': 4.0, 'of': 1.0, 'opted': 1.0, 'has': 1.0, 'watching': 1.0, 'always': 1.0, 'budget': 1.0, 'up': 1.0, 'friendly': 1.0, 'away': 1.0, 'their': 1.0, 'hours': 1.0, 'ended': 1.0, 'after': 1.0, 'watched': 1.0, 'out': 1.0, 'buying': 1.0, 'too': 1.0, 'held': 1.0, 'one': 2.0}
Word element => {'on': 1.0, 'put': 1.0, 'to': 1.0, 'd': 1.0, 'strong': 1.0, '6': 2.0, 'swing': 2.0, 'comfortable': 1.0, 'or': 1.0, 'loves': 1.0, 'quiet': 1.0, 'swinging': 1.0, 'solid': 1.0, 'very': 1.0, 'it': 1.0, 'this': 1.0, 'only': 1.0, 'smooth': 1.0, 'too': 1.0, 'daughter': 1.0, 'that': 1.0, 'our': 1.0, 'the': 1.0, 'weird': 1.0, 'thing': 1.0, 'i': 2.0, 'noticed': 1.0, 'is': 1.0, 'seems': 1.0, 'newborn': 1.0, 'level': 2.0, 'hate': 1.0, 'and': 1.0, '1': 1.0}
Word element => {'ready': 1.0, 'shape': 1.0, 'in': 1.0, 'litlte': 1.0, 'round': 1.0, 'when': 1.0, 'new': 1.0, 'born': 1.0, 'all': 1.0, 'family': 1.0, 'my': 1.0, '2': 1.0, 'great': 1.0, 'the': 1.0, 'boy': 1.0, 'time': 1.0, 'they': 1.0, 'his': 1.0, 'used': 1.0, 'still': 1.0, 'gift': 1.0, 'our': 1.0, 'their': 2.0, 'a': 1.0, 'brother': 1.0, 'from': 1.0, 'to': 1.0, 'was': 2.0, 'loved': 1.0, 's': 1.0, 'wife': 1.0, 'for': 2.0, 'baby': 1.0, 'swing': 1.0, 'this': 2.0, 'it': 2.0}
Word element => {'different': 1.0, 'see': 1.0, 'where': 1.0, 'purchased': 1.0, 'had': 1.0, 'all': 2.0, 'believer': 1.0, 'before': 1.0, 'to': 5.0, 'became': 1.0, 'gave': 1.0, 'loves': 1.0, 'breaker': 1.0, 'rooms': 1.0, 'cradle': 1.0, 'her': 1.0, 'rotate': 1.0, 'seat': 1.0, 'in': 2.0, 's': 3.0, 'a': 5.0, 't': 1.0, 'friend': 1.0, 'i': 8.0, 'saved': 1.0, 'boppy': 1.0, 'next': 1.0, 'always': 1.0, 'their': 1.0, 'becoming': 1.0, 'went': 1.0, 'kids': 1.0, 'few': 1.0, 'rocking': 1.0, 'this': 2.0, 'n': 1.0, 'not': 2.0, 'sister': 1.0, 'does': 1.0, 'having': 1.0, 'that': 2.0, 'because': 1.0, 'it': 10.0, 'him': 1.0, 'be': 1.0, 'house': 3.0, 'but': 2.0, 'can': 2.0, 'didn': 1.0, 'even': 3.0, 'got': 1.0, 'and': 9.0, 'moved': 1.0, 'day': 2.0, 'son': 4.0, 'one': 1.0, 'mobile': 1.0, 'wish': 1.0, 'liked': 1.0, 'deal': 1.0, 'price': 1.0, 'mirror': 1.0, 'my': 6.0, 'me': 2.0, 'calm': 1.0, 'used': 1.0, 'down': 1.0, 'like': 1.0, 'back': 1.0, 'forth': 1.0, 'or': 1.0, 'lunch': 1.0, 'side': 2.0, 'stare': 1.0, 'immediately': 1.0, 'quite': 1.0, 'from': 2.0, 'while': 1.0, 'carry': 1.0, 'around': 2.0, 'time': 1.0, 'fisher': 1.0, 'eat': 1.0, 'if': 1.0, 'every': 1.0, 'the': 6.0, 'of': 1.0, 'could': 1.0, 'will': 1.0, 'at': 1.0, 'above': 1.0, 'as': 1.0, 'heavy': 1.0, 'for': 1.0, 'bored': 1.0, 'put': 1.0, 'do': 1.0, 'very': 1.0, 'bulky': 1.0, 'have': 1.0, 'swing': 5.0, 'positioned': 1.0}
Word element => {'try': 1.0, 'issue': 1.0, 'paid': 1.0, 'reviewers': 1.0, 'even': 1.0, 'or': 1.0, 'product': 2.0, 'child': 1.0, 'issues': 1.0, 'give': 1.0, 'there': 1.0, 'inadequate': 1.0, 'their': 1.0, 'pocket': 1.0, 'money': 2.0, 'into': 1.0, 'students': 1.0, 'full': 2.0, 'freshener': 1.0, 'husband': 1.0, 'go': 1.0, 'irritated': 1.0, 'snugabunny': 1.0, 'sell': 1.0, 'version': 1.0, 'stated': 1.0, 'snugamonkey': 1.0, 'same': 1.0, 'top': 1.0, 'interim': 1.0, 'but': 2.0, 'than': 1.0, 'way': 1.0, 'found': 1.0, 'office': 1.0, 'easy': 1.0, 'would': 2.0, 'wrong': 1.0, 'ship': 1.0, 'something': 1.0, 'says': 1.0, 'someone': 2.0, 'free': 1.0, 'want': 1.0, 'out': 3.0, 'understand': 2.0, 'so': 3.0, 'can': 1.0, 'if': 2.0, 'still': 1.0, 'every': 1.0, 'turn': 1.0, 'upper': 1.0, 'ears': 1.0, 'them': 2.0, 'mail': 1.0, 'model': 1.0, 'time': 4.0, 'works': 1.0, 'without': 2.0, 'do': 1.0, 'much': 1.0, 'use': 2.0, 'fell': 1.0, 'fix': 2.0, 'should': 1.0, 'stopped': 1.0, 'of': 2.0, 'longer': 3.0, 'the': 22.0, 'up': 1.0, 'change': 1.0, 'takes': 1.0, 'favorite': 1.0, 'home': 1.0, 'brought': 1.0, 'swings': 1.0, 'using': 3.0, 'when': 1.0, 'six': 1.0, 'comfy': 1.0, 'before': 1.0, 'why': 1.0, 'december': 1.0, 'just': 1.0, 'inches': 2.0, 'being': 1.0, 'very': 1.0, 'chatted': 1.0, 'how': 1.0, 'our': 2.0, 'adores': 1.0, 'as': 4.0, 'soothed': 1.0, 'october': 1.0, 'pounds': 1.0, 'swing': 8.0, 'in': 3.0, 'to': 23.0, 'became': 1.0, 'first': 1.0, 'are': 2.0, 'working': 1.0, 'asleep': 1.0, 'gift': 1.0, 'inconvenience': 1.0, 'i': 11.0, 'well': 1.0, 'a': 15.0, 's': 1.0, 'could': 2.0, 'going': 2.0, 'for': 12.0, 'where': 1.0, 'schedule': 1.0, 'and': 14.0, 'son': 3.0, 'box': 1.0, 'shipping': 1.0, 'automatic': 1.0, 'received': 1.0, 'infant': 1.0, '6': 2.0, 'lbs': 1.0, 'was': 7.0, 'able': 3.0, 'turned': 1.0, 'consumer': 2.0, 'born': 1.0, '26': 1.0, 'went': 1.0, 'second': 1.0, 'immediately': 2.0, 'place': 1.0, 'began': 1.0, 'this': 5.0, 'shower': 1.0, 'already': 1.0, 'it': 7.0, 'him': 5.0, 'be': 6.0, 'cradled': 1.0, 'feel': 1.0, 'online': 2.0, 'other': 1.0, 'an': 4.0, 'he': 6.0, 'motor': 4.0, 'solid': 1.0, '5': 1.0, 'nap': 1.0, 'eye': 1.0, 'on': 3.0, 'busy': 1.0, 'about': 2.0, 'real': 1.0, 'chores': 1.0, 'keep': 1.0, 'did': 1.0, 'getting': 1.0, 'around': 2.0, 'is': 6.0, 'both': 1.0, 'people': 1.0, 'house': 1.0, '21': 1.0, 'week': 1.0, 'air': 1.0, 'figure': 1.0, 'now': 1.0, '19': 1.0, 'baby': 1.0, 'send': 3.0, 'with': 2.0, 'swinging': 1.0, 'we': 6.0, 'representative': 1.0, 'informed': 1.0, 'because': 1.0, 'that': 7.0, 'they': 3.0, 'not': 4.0, 'have': 6.0, 'fit': 1.0, 'replacement': 4.0, 'pay': 2.0, 'back': 1.0, 'having': 1.0, 'legs': 1.0, 'months': 2.0, 'get': 2.0, 'post': 1.0, 'me': 2.0, 'my': 5.0, 'sounds': 1.0, 'point': 1.0}
Word element => {'issue': 1.0, 'space': 1.0, 'if': 1.0, 'recliner': 1.0, 'for': 2.0, 'large': 1.0, 'one': 1.0, 'reclining': 1.0, 'on': 1.0, 'your': 1.0, 'definitely': 1.0, 'retains': 1.0, 'analog': 1.0, 'mirror': 1.0, 'animals': 1.0, 'plush': 1.0, 'rotation': 1.0, 'footprint': 1.0, 'song': 1.0, 'position': 1.0, 'settings': 2.0, 'off': 2.0, 'when': 1.0, 'you': 4.0, 'every': 1.0, 'another': 1.0, 'fact': 1.0, 'star': 1.0, 'size': 1.0, 'crib': 1.0, 'swing': 4.0, 'her': 1.0, 'set': 1.0, 'used': 1.0, 'does': 2.0, 'cheaper': 1.0, 'over': 1.0, 'time': 1.0, 'so': 1.0, 'baby': 1.0, 'with': 1.0, 'ac': 2.0, 'is': 5.0, 'powered': 1.0, 'the': 8.0, 'much': 1.0, 'only': 2.0, 'this': 3.0, 'that': 4.0, 'gave': 1.0, 'speed': 1.0, 'soothing': 1.0, 'we': 1.0, 'a': 4.0, 's': 1.0, 'reason': 1.0, 'turn': 2.0, 'in': 1.0, '4': 1.0, 'i': 1.0, 'stability': 1.0, 'instead': 1.0, 'of': 6.0, 'market': 1.0, '5': 2.0, 'it': 7.0, 'she': 1.0, 'batteries': 1.0, 'will': 1.0, 'most': 1.0, 'prefers': 1.0, 'but': 3.0, 'an': 3.0, 'give': 1.0, 'not': 5.0, 'seat': 1.0, 'all': 2.0, 'to': 1.0, 'our': 1.0, 'sleep': 1.0, 'very': 2.0, 'and': 3.0, 'has': 2.0, 'sturdy': 1.0, 'awesome': 1.0, 'adapter': 1.0, 'have': 4.0, 'about': 1.0, 'thing': 1.0, 'starlight': 1.0, 'volume': 1.0, 'yet': 1.0, 'adjustable': 1.0, 'controls': 1.0, 'rating': 2.0, 'anything': 1.0, 'other': 1.0}
Word element => {'day': 1.0, 'during': 1.0, 'awake': 1.0, 's': 1.0, 'being': 1.0, 'likes': 1.0, 'of': 1.0, 'and': 1.0, 'couple': 1.0, 'a': 1.0, 'whether': 1.0, 'baby': 2.0, 'on': 1.0, 'more': 1.0, 'the': 3.0, 'swing': 1.0, 'heard': 1.0, 'night': 1.0, 'i': 1.0, 'sleep': 1.0, 'or': 1.0, 'in': 1.0, 've': 1.0, 'not': 1.0, 'hours': 1.0, 'at': 2.0, 'depends': 1.0, 'one': 1.0, 'for': 1.0, 'works': 2.0, 'least': 1.0, 'he': 2.0, 'it': 3.0, 'this': 1.0, 'definitely': 1.0, 'that': 1.0, 'our': 1.0, 'too': 1.0, 'when': 1.0, 'us': 1.0, 'gets': 1.0}
Word element => {'nice': 1.0, 'difficult': 1.0, 's': 1.0, 'he': 1.0, 'since': 1.0, 'i': 1.0, 'should': 1.0, 'buy': 1.0, 'this': 2.0, 'for': 1.0, 'product': 1.0, 'to': 1.0, 'first': 1.0, 'son': 2.0, '2nd': 1.0, 'needs': 1.0, 'more': 1.0, 'my': 2.0, 'sleep': 1.0, 'but': 1.0}
Word element => {'love': 1.0, 'trying': 1.0, 'extra': 2.0, 'attention': 1.0, 'the': 12.0, 'his': 1.0, 'music': 2.0, 'honestly': 1.0, 'round': 1.0, 'bland': 1.0, 'penny': 1.0, 'you': 4.0, 'entertaining': 1.0, 'came': 1.0, 'every': 2.0, 'money': 2.0, 'bought': 1.0, 'gonna': 1.0, 'but': 3.0, 'seems': 1.0, 'will': 2.0, 'could': 1.0, 'swings': 1.0, 'job': 1.0, 'lie': 1.0, 'to': 10.0, 'definitely': 1.0, 'jealous': 1.0, 'there': 2.0, 'give': 1.0, 'sure': 1.0, 'no': 2.0, 'across': 1.0, 'realize': 1.0, 'on': 2.0, 'necessity': 1.0, 'i': 12.0, 'outlet': 1.0, 'hype': 1.0, 'what': 1.0, 'has': 1.0, 'ears': 1.0, 'little': 2.0, 'week': 1.0, 'bit': 1.0, 'quick': 1.0, 'don': 1.0, 'lullabys': 2.0, 'cheaper': 1.0, 'and': 6.0, 'crap': 1.0, 'that': 1.0, 'fall': 1.0, 'deep': 1.0, 'easily': 1.0, 'base': 1.0, 'have': 3.0, 'stayed': 1.0, 'flat': 1.0, 'as': 1.0, 'all': 5.0, 'was': 4.0, 'out': 1.0, 'newborn': 1.0, 'son': 2.0, 'needed': 1.0, 'buy': 1.0, 'having': 1.0, 'worth': 1.0, 'investments': 1.0, 'swing': 3.0, 'four': 1.0, 'me': 2.0, 'mirror': 1.0, 'large': 2.0, 'hammock': 1.0, 'best': 1.0, 'with': 1.0, 'this': 4.0, 'itself': 2.0, 'awake': 1.0, 'did': 1.0, 'yet': 1.0, 'how': 1.0, 'do': 1.0, 'much': 2.0, 'mobile': 1.0, 'seated': 1.0, 'adjusted': 1.0, 'too': 1.0, 'contraption': 1.0, 't': 1.0, 'waste': 1.0, 'spare': 1.0, 'twists': 1.0, 'm': 3.0, 's': 4.0, 'maybe': 1.0, 'a': 6.0, 'going': 1.0, 'home': 1.0, 'made': 2.0, 'asleep': 1.0, 'which': 2.0, 'good': 1.0, 'however': 2.0, 'batteries': 1.0, 'favorites': 1.0, 'close': 1.0, 'original': 1.0, 'think': 1.0, 'preemie': 1.0, 'tons': 1.0, 'not': 3.0, 'different': 1.0, 'more': 1.0, 'enough': 3.0, 'sounding': 1.0, 'cleaned': 1.0, 'slighty': 1.0, 'pretty': 1.0, 'lay': 1.0, 'softer': 1.0, 'upbeat': 1.0, 'nature': 1.0, 'it': 7.0, 'sold': 1.0, 'be': 1.0, 'then': 1.0, 'long': 1.0, 'rainfall': 1.0, 'several': 1.0, 'songs': 1.0, 'for': 3.0, 'into': 2.0, 'fabric': 1.0, 'each': 1.0, 'setting': 1.0, 'everyone': 1.0, 'pay': 1.0, 'quality': 2.0, 'knows': 1.0, 'middle': 1.0, 'listening': 1.0, 'kids': 1.0, 'over': 2.0, 'gets': 1.0, 'sized': 1.0, 'of': 6.0, 'even': 1.0, 'old': 1.0, 'him': 1.0, 'he': 1.0, 'selections': 1.0, 'many': 1.0, 'where': 1.0, 'save': 1.0, 're': 1.0, 'unique': 1.0, 'baby': 2.0, 'part': 1.0, 'though': 2.0, 'really': 1.0, 'bunny': 1.0, 'lol': 1.0, 'wish': 1.0, 'an': 1.0, 'adult': 1.0, 'classical': 1.0, 'big': 1.0, 'in': 3.0, 'chunkier': 1.0, 'engulfing': 1.0, 'is': 2.0, 'can': 2.0, 'half': 1.0, 'sort': 1.0, 'if': 3.0, 'ambiance': 1.0, 'great': 1.0, 'like': 1.0, 'surprised': 1.0, 'they': 1.0, 'settings': 1.0, 'quite': 2.0, 'needing': 1.0, 'lmao': 1.0, 'babies': 1.0, 'soft': 1.0, 'also': 1.0, 'need': 1.0, 'are': 4.0, 'my': 2.0, 'room': 1.0, 'wall': 1.0, 'd': 1.0, 'absolutely': 1.0, 'one': 4.0, '5': 1.0, 'stars': 1.0}
Word element => {'months': 1.0, '1': 1.0, 'have': 1.0, 'reviews': 1.0, 'we': 1.0, 'other': 1.0, 'him': 1.0, 'when': 1.0, 'problems': 1.0, 'son': 1.0, 'is': 1.0, 'one': 1.0, 'contrary': 1.0, 'that': 1.0, 'my': 2.0, '2': 2.0, 'the': 1.0, 'sanity': 1.0, 'colic': 1.0, 'few': 1.0, 'saved': 1.0, 'with': 1.0, 'it': 2.0, 'this': 1.0, 'calmed': 1.0, 'of': 1.0, 'no': 1.0, 'motor': 1.0, 'things': 1.0, 'quiet': 1.0, 'had': 2.0, 'was': 1.0, 'to': 1.0}
Word element => {'worth': 1.0, 'like': 1.0, 'i': 1.0, 'work': 1.0, 'house': 1.0, 'much': 1.0, 'bit': 1.0, 'a': 1.0, 'it': 3.0, 'of': 2.0, 'very': 1.0, 'sleeping': 1.0, 'mami': 1.0, 'my': 2.0, 'great': 1.0, 'the': 2.0, 'more': 1.0, 'not': 1.0, 'you': 1.0, 'mind': 1.0, 'if': 1.0, 'product': 1.0, 'to': 1.0, 'size': 1.0, 'money': 1.0, 'baby': 2.0, 'thanks': 1.0, 'is': 1.0, 'showers': 1.0, 'time': 1.0, 'do': 1.0, 'and': 3.0, 'have': 1.0, 'for': 1.0}
Word element => {'buy': 1.0, 'hours': 1.0, 'can': 1.0, 'sleep': 1.0, 'loves': 1.0, 'my': 1.0, 'is': 1.0, 'little': 1.0, 'swing': 1.0, 'one': 1.0, 'for': 2.0, 'comfortable': 1.0, 'have': 1.0, 'must': 1.0, 'and': 3.0, 'absolute': 1.0, 'with': 1.0, 'parent': 1.0, 'this': 1.0, 'it': 3.0, 'a': 1.0, 'an': 1.0, 'new': 1.0, 'any': 1.0, 'baby': 1.0, 's': 1.0, 'great': 1.0, 'the': 1.0, 'in': 1.0, 'perfect': 1.0, 'cozy': 1.0, 'soft': 1.0, 'cute': 1.0}
Word element => {'waste': 1.0, 'seemed': 1.0, 'purchased': 1.0, 'products': 1.0, 'swing': 3.0, 'daughter': 1.0, 'sounds': 1.0, 'soothing': 1.0, '8': 1.0, 'but': 1.0, 'pregnant': 1.0, 'have': 2.0, 'this': 2.0, 'with': 1.0, 'did': 1.0, 'playtime': 1.0, 'months': 1.0, 'mobile': 1.0, 'out': 1.0, 'that': 2.0, 'been': 2.0, 'box': 1.0, 'was': 1.0, 'to': 1.0, 'it': 2.0, 'colorful': 1.0, 'being': 1.0, 'easy': 1.0, 'home': 1.0, 'has': 1.0, 'of': 2.0, 'hospital': 1.0, 'there': 1.0, 'my': 1.0, 'myself': 1.0, 'the': 4.0, 'i': 2.0, 'love': 1.0, 'assemble': 1.0, 'for': 1.0, 'since': 1.0, 'a': 1.0, 'we': 3.0, 'absolutely': 1.0, 'mirror': 1.0, 'entertained': 1.0, 'like': 1.0, 'using': 1.0, 'brought': 1.0, 'her': 2.0, 'while': 1.0, 'from': 1.0, 'use': 1.0, 'naps': 1.0, 'and': 2.0, 'alot': 1.0, 'keeps': 1.0}
Word element => {'use': 1.0, 'long': 1.0, 'me': 1.0, 'can': 1.0, 'but': 1.0, 'will': 1.0, 'to': 1.0, 'now': 1.0, 'take': 1.0, 'you': 1.0, 'when': 1.0, 'daughter': 1.0, 'i': 2.0, 'this': 4.0, 'with': 1.0, 'the': 3.0, 'my': 2.0, 'effort': 1.0, 'some': 1.0, 'no': 1.0, 'really': 1.0, 'is': 4.0, 'fit': 1.0, 'for': 2.0, 'using': 1.0, 'still': 1.0, 'it': 3.0, 'she': 2.0, 'last': 1.0, 'time': 1.0, 'your': 1.0, 'see': 2.0, 'baby': 2.0, 'how': 1.0, 'comfirtably': 1.0, 'njoying': 1.0, 'swing': 1.0, 'been': 1.0, 'three': 1.0, 'have': 1.0, 'bought': 1.0, 'months': 1.0, '11lbs': 1.0, 'power': 1.0, 'enjoying': 1.0, 'and': 1.0, 'there': 1.0, 'problem': 1.0, 'let': 1.0, 'worth': 1.0, 'or': 1.0, 'anything': 1.0}
Word element => {'savior': 1.0, 'for': 1.0, 'so': 1.0, 'get': 1.0, 'us': 1.0, 'able': 1.0, 'have': 1.0, 'plus': 1.0, 'options': 1.0, 'tone': 1.0, 'musical': 1.0, 'make': 1.0, 'top': 1.0, 'motor': 1.0, 'at': 3.0, 'setting': 1.0, 'some': 2.0, 'got': 1.0, 'relatives': 1.0, 'perfectly': 1.0, 'and': 3.0, 'noise': 1.0, 'it': 2.0, 'provided': 1.0, 'this': 3.0, 'with': 1.0, 'been': 1.0, 'that': 1.0, 'silent': 1.0, 'noticeable': 1.0, 'i': 3.0, 'after': 2.0, 'various': 1.0, 'a': 2.0, 's': 1.0, 't': 1.0, 'we': 3.0, 'levels': 1.0, 'saw': 1.0, 'when': 1.0, 'bought': 1.0, 'one': 1.0, 'directions': 1.0, 'of': 1.0, 'in': 1.0, 'definite': 1.0, 'sound': 1.0, 'music': 1.0, 'can': 2.0, 'but': 1.0, 'live': 1.0, 'sleep': 1.0, 'to': 2.0, 'our': 1.0, 'least': 1.0, 'revolving': 1.0, 'my': 1.0, 'baby': 1.0, 'isn': 1.0, 'house': 1.0, 'crying': 1.0, 'is': 3.0, 'the': 6.0, 'asleep': 1.0, 'like': 1.0, 'different': 2.0, 'swing': 3.0, 'thing': 1.0}
Word element => {'a': 1.0, 'again': 1.0, 'that': 1.0, 'have': 2.0, 'wont': 1.0, 'my': 1.0, 'first': 1.0, 'with': 1.0, 'through': 1.0, 'i': 2.0, 'must': 1.0, 'son': 1.0, 'as': 1.0, 'do': 1.0, 'and': 4.0, 'to': 2.0, 'right': 1.0, 'bonus': 1.0, 'directions': 1.0, 'or': 1.0, 'added': 1.0, 'great': 1.0, 'numerous': 1.0, 'in': 1.0, 'pictured': 1.0, '3': 1.0, 'forth': 2.0, 'batteries': 1.0, 'swing': 1.0, 'remember': 1.0, 'facing': 2.0, 'plug': 1.0, 'going': 1.0, 'swings': 1.0, 'rocking': 2.0, 'an': 1.0, 'back': 2.0, 'side': 2.0, 'left': 1.0, 'is': 1.0}
Word element => {'schemes': 1.0, 'color': 1.0, 'with': 1.0, 'colors': 1.0, 'has': 1.0, 'battery': 1.0, 'instantly': 1.0, 'or': 1.0, 'almost': 1.0, 'while': 1.0, 'it': 8.0, 'he': 1.0, 'me': 1.0, 'fact': 1.0, 'my': 2.0, 'son': 1.0, 'only': 2.0, 'much': 1.0, 'you': 1.0, 'swing': 1.0, 'go': 1.0, 'a': 2.0, 'could': 1.0, 'in': 3.0, 'wash': 1.0, 'will': 1.0, 'seems': 1.0, 'and': 3.0, 'too': 1.0, 'is': 2.0, 'this': 1.0, 'soft': 1.0, 'lot': 1.0, 'sleep': 2.0, 'to': 3.0, 'plays': 1.0, 'nice': 2.0, 'like': 1.0, 'which': 2.0, 'most': 1.0, 'music': 1.0, 'use': 1.0, 'bothers': 1.0, 'the': 2.0, 'easy': 1.0, 'con': 1.0, 'makes': 2.0, 'loves': 2.0, 'plugs': 1.0, 'that': 1.0, 'of': 1.0, 'noise': 2.0, 'however': 1.0, 'baby': 1.0, 'goes': 1.0}
Word element => {'great': 1.0, 'from': 1.0, 'sooner': 1.0, 'active': 1.0, 'very': 2.0, 'like': 1.0, 'been': 1.0, 'worked': 1.0, 'have': 1.0, 'extremely': 1.0, 'wouldn': 1.0, 'quietly': 1.0, 'observe': 1.0, 'stare': 1.0, '34': 2.0, 'less': 1.0, 'condition': 1.0, 'probably': 1.0, 'products': 1.0, 'price': 1.0, 'fisher': 1.0, 'with': 1.0, 'issue': 1.0, 'who': 2.0, '4': 1.0, '3': 1.0, 'by': 1.0, 'buy': 1.0, 'straps': 2.0, 'safety': 1.0, 'using': 1.0, 'day': 1.0, 'stop': 1.0, 'had': 1.0, 'we': 1.0, 'should': 1.0, 'hours': 2.0, 'sell': 1.0, 'a': 5.0, 't': 2.0, 'for': 2.0, 'didn': 1.0, 'perhaps': 1.0, 'daughter': 1.0, 'got': 1.0, 'on': 1.0, 'out': 2.0, 'everything': 1.0, 'teething': 1.0, 'though': 1.0, 'grew': 1.0, 'during': 1.0, 'peaceful': 1.0, 'down': 1.0, 'safe': 1.0, 'mobile': 3.0, 'asleep': 1.0, 'other': 1.0, 'an': 1.0, 'fits': 1.0, 'safely': 1.0, 'minutes': 1.0, 'baby': 4.0, 'unfortunately': 1.0, 'anymore': 1.0, 'use': 1.0, 'enough': 1.0, 'removable': 1.0, 'loved': 1.0, 'time': 2.0, 'boy': 1.0, 'can': 1.0, 'so': 2.0, 'my': 8.0, 'me': 1.0, 'not': 1.0, 'and': 10.0, 'one': 1.0, 'too': 3.0, 'matter': 2.0, 'while': 1.0, 'how': 2.0, 'ran': 1.0, 'the': 7.0, 'of': 3.0, 'more': 1.0, 'babies': 2.0, 'worst': 1.0, 'loves': 1.0, 'thing': 3.0, 'no': 2.0, 'about': 3.0, 'you': 1.0, 'things': 1.0, 'fast': 1.0, 'i': 3.0, 'he': 2.0, 'motor': 1.0, 'calmed': 1.0, 'be': 2.0, 'old': 2.0, 'because': 4.0, 'that': 3.0, 'young': 1.0, '30': 1.0, 'month': 1.0, 'heart': 1.0, 'some': 1.0, 'never': 1.0, 'only': 3.0, 'in': 5.0, 'stuff': 1.0, 'just': 1.0, '45': 1.0, 'was': 5.0, 'lbs': 1.0, 'they': 2.0, 'first': 1.0, 'hated': 1.0, 'bad': 1.0, 'are': 3.0, 'awake': 1.0, 'this': 6.0, 'few': 1.0, 'passed': 1.0, 'to': 4.0, 'likely': 1.0, 'grow': 2.0, 'as': 1.0, 'move': 1.0, 'or': 1.0, 'need': 2.0, '29': 1.0, 'months': 1.0, 'get': 1.0, 'head': 1.0, 'flat': 1.0, 'son': 3.0, 'if': 1.0, 'still': 3.0, 'at': 2.0, 'is': 4.0, 'him': 2.0, 'it': 8.0, '9': 1.0, '22': 1.0, 'now': 1.0, 'inches': 1.0, 'but': 4.0, 'big': 2.0, 'when': 1.0, 'breaks': 1.0, 'will': 2.0, 'always': 1.0, 'has': 1.0}
Word element => {'recommended': 1.0, 'right': 1.0, 'sleep': 1.0, 'crazy': 1.0, 'to': 1.0, 'newborn': 1.0, 'having': 1.0, 'away': 1.0, 'specially': 1.0, 'itself': 1.0, 'lovely': 1.0, 'is': 1.0, 'pays': 1.0, 'time': 1.0, 'your': 1.0, 'swing': 2.0, 'for': 1.0, 'love': 1.0, 'a': 2.0, 'them': 1.0, 'the': 1.0, 'puts': 1.0, 'when': 1.0, 'mom': 1.0, 'first': 1.0, 'it': 1.0, 'this': 1.0}
Word element => {'just': 1.0, 'about': 1.0, 'worry': 1.0, 'don': 1.0, 'durable': 1.0, 'swinging': 1.0, 'back': 1.0, 'or': 1.0, 'thing': 1.0, '2': 1.0, 'side': 2.0, 'ways': 1.0, '3': 1.0, 'adjust': 1.0, 'forth': 1.0, 'relaxed': 1.0, 'looks': 1.0, 'bliss': 1.0, 'and': 5.0, 'batteries': 1.0, 'stares': 1.0, 'quiet': 1.0, 'no': 1.0, 'going': 1.0, 'could': 1.0, 'bunny': 1.0, 'sounds': 1.0, 'item': 1.0, 'seems': 1.0, 'not': 2.0, 'printer': 1.0, 'very': 1.0, 'babbling': 1.0, 'so': 1.0, 'can': 2.0, 'but': 2.0, 'sound': 4.0, 'mind': 1.0, 'with': 3.0, 'was': 3.0, 'beast': 1.0, 'doesn': 1.0, 'once': 1.0, 'grouchy': 1.0, 'i': 5.0, 'nervous': 1.0, 'happy': 1.0, 'your': 1.0, 'put': 1.0, 'on': 3.0, 'extra': 1.0, 'time': 1.0, 'baby': 5.0, 'best': 1.0, 'babe': 2.0, 'when': 2.0, 'a': 4.0, 'hilarious': 1.0, 'of': 1.0, 'the': 11.0, 'notice': 1.0, 'at': 3.0, 'is': 3.0, 'holds': 1.0, 'plug': 1.0, 's': 3.0, 'peacefully': 1.0, 'this': 3.0, 'wish': 1.0, 'hear': 1.0, 'plush': 1.0, 'above': 1.0, 'swings': 1.0, 'using': 1.0, 'like': 1.0, 'bit': 3.0, 'tv': 1.0, 'that': 3.0, 'mechanical': 1.0, 'there': 1.0, 'starts': 1.0, 'you': 3.0, 'loud': 1.0, 'brook': 1.0, 'punched': 1.0, 'froggies': 1.0, 'motor': 1.0, 'he': 5.0, 'love': 2.0, 'dude': 1.0, 'for': 1.0, 'out': 1.0, 'ever': 1.0, 'all': 1.0, 'to': 3.0, 'm': 1.0, 'in': 3.0, 'turn': 1.0, 'swing': 1.0, 'fussy': 1.0, 'strap': 2.0, 'cute': 1.0, 'first': 2.0, 'working': 1.0, 'are': 1.0, 'it': 9.0, 'him': 2.0, 'reflective': 1.0, 'angles': 1.0, 'after': 1.0, 'securely': 1.0, 'straps': 1.0, 'irritating': 1.0, 'mobile': 1.0, 'nice': 1.0, 't': 2.0, 'likes': 1.0, 'etc': 1.0, 'day': 1.0, 'surface': 1.0}
Word element => {'together': 1.0, 'put': 1.0, 'hard': 1.0, 'get': 1.0, 'and': 2.0, 'jumper': 2.0, 'way': 1.0, 'a': 1.0, 'to': 3.0, 'had': 1.0, 'much': 1.0, 'good': 1.0, 'he': 3.0, 'this': 2.0, 'it': 4.0, 'with': 2.0, 'my': 1.0, 'son': 1.0, 'michael': 1.0, 'not': 2.0, '5': 1.0, 'when': 2.0, 'i': 2.0, 'got': 1.0, 'out': 1.0, 'almost': 1.0, 'his': 1.0, 'jump': 1.0, 'especially': 1.0, 'people': 1.0, 'is': 2.0, 'highly': 1.0, 'was': 1.0, 'recommend': 1.0, 'him': 1.0, 'anyone': 1.0, 'so': 1.0, 'needs': 1.0, 'an': 2.0, 'energetic': 1.0, 'simple': 1.0, 'little': 1.0, 'months': 1.0, 'one': 1.0, 'for': 1.0, 'loves': 2.0, 'that': 1.0, 'entertaining': 1.0, 'energy': 2.0, 'outlet': 1.0, 'excess': 1.0}
Word element => {'him': 1.0, 'walker': 1.0, 'out': 1.0, 'of': 2.0, 'a': 1.0, 'alot': 1.0, 'didn': 1.0, 'we': 2.0, 'now': 1.0, 'really': 1.0, 'is': 4.0, 'that': 1.0, 'my': 1.0, 't': 1.0, 'the': 3.0, 'complant': 1.0, 'idea': 1.0, 'at': 1.0, 'months': 1.0, 'old': 1.0, 'too': 1.0, 'who': 1.0, 'grandson': 1.0, 'tall': 1.0, 'for': 2.0, 'get': 1.0, 'setting': 1.0, 'five': 1.0, 'jumper': 1.0, 'only': 1.0, 'it': 2.0, 'purchased': 1.0, 'use': 1.0, 'loved': 1.0, 'already': 1.0, 'recently': 1.0, 'highest': 1.0}
Word element => {'saver': 1.0, 'parent': 1.0, 'while': 1.0, 'do': 1.0, 'also': 1.0, 'out': 1.0, 'safe': 1.0, 'take': 1.0, 'gives': 1.0, 'when': 1.0, 'cries': 1.0, 'time': 2.0, 'long': 1.0, 'this': 3.0, 'exercise': 1.0, 'great': 1.0, 'jumping': 1.0, 'my': 1.0, 'things': 1.0, 'given': 1.0, 'has': 1.0, '8': 1.0, 'now': 1.0, 'he': 5.0, 'week': 1.0, 'months': 1.0, 'one': 1.0, 'bought': 1.0, 'life': 1.0, 'just': 1.0, 'and': 3.0, 'other': 1.0, 'care': 1.0, 'day': 1.0, 'price': 1.0, 'fisher': 1.0, 'use': 1.0, 'since': 1.0, 'at': 1.0, 'keep': 1.0, '5': 1.0, 'than': 1.0, 'is': 4.0, 'more': 1.0, 'in': 3.0, 'even': 1.0, 'didn': 1.0, 'swing': 1.0, 'a': 2.0, 't': 1.0, 'we': 6.0, '4': 1.0, 'two': 1.0, 'jumperoo': 2.0, 'the': 3.0, 'hanging': 1.0, 'loves': 1.0, 'that': 2.0, 'frustrating': 1.0, 'truly': 1.0, 'it': 2.0, 'month': 1.0, 'switch': 1.0, 'purchased': 1.0, 'then': 2.0, 'every': 2.0, 'min': 1.0, 'same': 1.0, 'want': 1.0, '10': 2.0, 'saw': 1.0, 'old': 1.0, 'jump': 2.0, 'son': 2.0, 'very': 2.0, 'him': 5.0, 'would': 1.0, 'happy': 1.0, 'between': 1.0, 'floor': 1.0, 'know': 1.0, 'jumpers': 1.0, 'which': 1.0, 'hold': 1.0, 'about': 1.0, '15': 1.0, 'was': 1.0, 'minutes': 1.0, 'getting': 1.0, 'product': 1.0, 'love': 1.0, 'for': 2.0, 'our': 1.0, 'to': 4.0, 'all': 1.0, 'of': 1.0, 'us': 2.0}
Word element => {'fits': 1.0, 'that': 1.0, 'other': 1.0, 'be': 1.0, 'expect': 1.0, 'i': 1.0, 'it': 3.0, 'this': 1.0, 'didn': 1.0, 'just': 1.0, 'past': 1.0, 'described': 1.0, 'as': 1.0, 'so': 1.0, 'purpose': 1.0, 'its': 1.0, 'had': 1.0, 'to': 1.0, 'was': 1.0, 'in': 1.0, 've': 1.0, 'long': 1.0, 'bit': 1.0, 'though': 1.0, 's': 1.0, 'a': 1.0, 'longer': 1.0, 'then': 2.0, 't': 1.0, 'the': 2.0, 'others': 1.0}
Word element => {'brushing': 1.0, 'washing': 1.0, 'do': 1.0, 'gets': 1.0, 'before': 1.0, 'on': 3.0, 'make': 1.0, 'turn': 1.0, 'button': 2.0, 'great': 1.0, 'his': 1.0, 'music': 2.0, 'but': 1.0, 'work': 1.0, 'sure': 1.0, 'naturally': 1.0, 'arrived': 1.0, 'bring': 1.0, 'worked': 1.0, 'once': 1.0, 'daddy': 1.0, 'enough': 2.0, 'own': 1.0, 'until': 1.0, 'off': 1.0, 'house': 1.0, 'pushes': 1.0, 'idea': 1.0, 'again': 1.0, 'when': 1.0, 'now': 2.0, 'away': 1.0, 'had': 1.0, 'stool': 2.0, 'all': 1.0, 'our': 1.0, 'was': 2.0, 'doesn': 1.0, 'be': 1.0, 'would': 1.0, 'a': 2.0, 't': 3.0, 'find': 1.0, 'as': 1.0, 'annoying': 1.0, 'this': 2.0, 'perfect': 1.0, 'actually': 1.0, 'and': 5.0, 'got': 2.0, 'because': 1.0, 'that': 1.0, 'myself': 1.0, 'of': 1.0, 'the': 10.0, 'discontinued': 1.0, 'old': 2.0, 'my': 1.0, 'hopefully': 1.0, 'worried': 1.0, 'time': 2.0, 'can': 2.0, 'so': 2.0, 'from': 2.0, 'dances': 1.0, 'take': 1.0, 'then': 1.0, 'stops': 1.0, 'which': 1.0, 'rushes': 1.0, 'push': 1.0, 'don': 1.0, 'there': 1.0, 'look': 1.0, 'at': 2.0, 'is': 2.0, 'switch': 1.0, 'windows': 1.0, 'he': 6.0, 'far': 1.0, 'bottom': 1.0, 'stand': 1.0, 'set': 1.0, 'volume': 1.0, 'need': 1.0, 'or': 1.0, 'to': 10.0, 'high': 1.0, 'low': 1.0, 'also': 1.0, 'son': 1.0, 'height': 1.0, 'out': 2.0, 'wave': 1.0, 'sees': 1.0, 'i': 5.0, 'coming': 1.0, 'by': 1.0, 'home': 1.0, 'thought': 1.0, 'him': 2.0, 'it': 8.0, 'enable': 1.0, 'wear': 1.0}
Word element => {'buttons': 1.0, 'hitting': 1.0, 'myself': 1.0, 'my': 1.0, 'the': 1.0, 'find': 1.0, 'you': 1.0, 'how': 2.0, 'hands': 1.0, 'teeth': 2.0, 'love': 1.0, 'it': 1.0, 'times': 1.0, 'ha': 1.0, 'long': 1.0, 'wash': 1.0, 'brush': 2.0, 'when': 1.0, 'i': 2.0, 'your': 2.0, 'and': 1.0}
Word element => {'brush': 1.0, 'their': 2.0, 'encourage': 1.0, 'teeth': 1.0, 'bonus': 1.0, 'turn': 1.0, 'you': 1.0, 'it': 3.0, 'with': 1.0, 'same': 1.0, 'at': 1.0, 'climb': 1.0, 'or': 3.0, 'lift': 1.0, '000': 1.0, 'grandma': 1.0, 'even': 1.0, '83ec': 1.0, 'has': 1.0, 'for': 1.0, 'i': 1.0, 'wash': 1.0, 'child': 1.0, 'out': 1.0, 'one': 1.0, 'bought': 1.0, 'a': 3.0, 'mayfair': 1.0, 'nextstep': 1.0, 'seat': 1.0, 'to': 6.0, 'look': 1.0, 'hands': 1.0, 'the': 8.0, 'toilet': 1.0, 'can': 2.0, 'and': 2.0, 'get': 1.0, 'choose': 1.0, 'sized': 1.0, 'time': 1.0, 'potty': 1.0, 'been': 1.0, 'little': 1.0, 'are': 1.0, 'saver': 1.0, 'this': 2.0, 'kids': 2.0, 'just': 1.0, 'life': 1.0, 'by': 1.0, 'on': 2.0, 'off': 2.0, 'themselves': 1.0, 'sink': 1.0, 'use': 1.0, 'screen': 1.0, 'songs': 1.0, 'door': 1.0}
Word element => {'will': 1.0, 'she': 1.0, 'time': 1.0, 'with': 1.0, 'm': 1.0, 'but': 1.0, 'i': 1.0, 'reach': 1.0, 'sure': 1.0, 'it': 1.0, 's': 1.0, 'able': 1.0, 'not': 1.0, 'tall': 1.0, 'enough': 1.0, 'my': 1.0, 'grand': 1.0, 'for': 1.0, 'daughter': 1.0, 'be': 1.0, 'still': 1.0, 'to': 2.0}
Word element => {'songs': 1.0, 'listen': 1.0, 'and': 1.0, 'is': 1.0, 'although': 1.0, 'old': 1.0, 'loves': 2.0, 'months': 1.0, '14': 1.0, 's': 1.0, 'button': 1.0, 'stool': 1.0, 'toddler': 1.0, 'press': 1.0, 'my': 1.0, 'the': 2.0, 'too': 1.0, 'to': 3.0, 'purpose': 1.0, 'intended': 1.0, 'use': 1.0, 'he': 2.0, 'this': 1.0, 'it': 2.0, 'young': 1.0, 'for': 1.0}
Word element => {'oriented': 1.0, 'kid': 1.0, 'are': 1.0, 'presses': 1.0, 'smile': 1.0, 'rushes': 1.0, 'bathroom': 1.0, 'the': 2.0, 'soon': 1.0, 'grooves': 1.0, 'moves': 1.0, 'into': 1.0, 'loves': 1.0, 'goes': 1.0, 'we': 1.0, 'toddler': 1.0, 'brushes': 1.0, 'my': 1.0, 'gift': 1.0, 'have': 1.0, 'very': 1.0, 'as': 4.0, 'a': 2.0, 'since': 1.0, 'and': 4.0, 'purchased': 1.0, 'vday': 1.0, 'to': 1.0, 'i': 1.0, 'her': 1.0, 'his': 1.0, 'used': 1.0, 'our': 2.0, 'with': 1.0, 'it': 3.0, 'for': 1.0, 'brush': 1.0, 'songs': 1.0, 'in': 1.0, 'teeth': 2.0, 'wash': 1.0, 'hands': 1.0, 'she': 5.0}
Word element => {'teeth': 1.0, 'hands': 1.0, 'her': 2.0, 'brushing': 1.0, 'while': 1.0, 'daughter': 1.0, 'washing': 1.0, 'stool': 1.0, 'and': 2.0, 'wonderful': 1.0, 'loves': 1.0, 'songs': 1.0, 'my': 1.0, 'the': 1.0, 'step': 1.0, 'she': 1.0, 'danced': 1.0}
Word element => {'nice': 1.0, '2yr': 1.0, 'a': 2.0, 'music': 1.0, 'old': 1.0, 'right': 1.0, 'our': 1.0, 'grandson': 1.0, 'loves': 1.0, 'his': 1.0, 'for': 1.0, 'sing': 1.0, 'the': 2.0, 'is': 1.0, 'with': 1.0, 'step': 1.0, 'touch': 1.0, 'size': 1.0, 'stool': 1.0, 'me': 1.0, 'just': 1.0}
Word element => {'foot': 1.0, 'a': 1.0, 'than': 1.0, 'sink': 1.0, 'him': 1.0, 'height': 1.0, 'right': 1.0, 'is': 1.0, 'teeth': 1.0, 'cleaning': 1.0, 'old': 1.0, 'fun': 1.0, 'encourage': 1.0, 'stool': 1.0, 'bought': 1.0, 'year': 1.0, 'for': 3.0, 'it': 1.0, 'he': 1.0, 'this': 1.0, 'plain': 1.0, 'grandson': 1.0, 'good': 1.0, 'loves': 1.0, 'my': 1.0, 'more': 1.0, 'the': 3.0, 'music': 1.0, 'habits': 1.0, '3': 1.0, 'turn': 1.0, 'hands': 1.0, 'on': 1.0, 'just': 2.0, 'washing': 1.0, 'reach': 1.0, 'and': 1.0, 'to': 3.0, 'brushing': 1.0}
Word element => {'teeth': 1.0, 'music': 1.0, 'to': 1.0, 'and': 1.0, 'pottty': 1.0, 'using': 1.0, 'loves': 1.0, 'grandson': 1.0, 'is': 1.0, 'his': 1.0, 'sink': 1.0, 'new': 1.0, 'my': 1.0, 'the': 5.0, 'potty': 1.0, 'uses': 1.0, 'at': 1.0, 'for': 1.0, 'game': 1.0, 'brush': 1.0, 'stool': 1.0, 'he': 2.0}
Word element => {'buttons': 1.0, 'stepping': 1.0, 'themselves': 1.0, 'activate': 1.0, 'that': 1.0, 'tiring': 1.0, 'i': 1.0, 'old': 1.0, 'season': 1.0, 'to': 1.0, 'flu': 1.0, 'love': 2.0, 'for': 1.0, 'just': 1.0, 'get': 2.0, 'and': 3.0, 'bedtime': 1.0, 't': 1.0, 'great': 1.0, 'the': 3.0, 'more': 1.0, 'my': 2.0, 'time': 1.0, 'makes': 1.0, 'it': 3.0, 'this': 1.0, 'wonderful': 1.0, 'morning': 1.0, 'a': 1.0, 'is': 3.0, 'product': 1.0, 'much': 1.0, 'on': 2.0, 'routine': 1.0, 'fun': 1.0, 'doesn': 1.0, 'training': 1.0, 'by': 1.0, 'kids': 2.0, 'in': 1.0, 'also': 1.0, 'or': 1.0, 'good': 1.0, 'hygiene': 1.0, 'music': 1.0, 'habits': 1.0}
Word element => {'functional': 1.0, 's': 1.0, 'even': 1.0, 'adorable': 1.0, 'music': 1.0, 'to': 2.0, 'bought': 1.0, 'dance': 1.0, 'll': 1.0, 'make': 1.0, 'my': 1.0, 'and': 2.0, 'play': 1.0, 'loves': 1.0, 'this': 1.0, 'for': 2.0, 'son': 1.0, 'hand': 1.0, 'washing': 1.0, 'it': 3.0, 'teeth': 1.0, 'brushing': 1.0, 'he': 2.0}
Word element => {'too': 1.0, 'hands': 1.0, 'uses': 1.0, 'sings': 1.0, 'ha': 1.0, 'wash': 1.0, 'also': 1.0, 'teeth': 1.0, 'his': 2.0, 'to': 2.0, 'minutes': 1.0, 'song': 1.0, 'absolutely': 1.0, 'brush': 1.0, 'love': 1.0, 'fisher': 1.0, 'a': 1.0, 'year': 1.0, '3': 1.0, 'sing': 1.0, 'have': 1.0, 'loves': 1.0, 'boy': 1.0, 'that': 1.0, 'price': 1.0, 'it': 1.0, 'he': 3.0, 'with': 1.0, 'more': 1.0, 'the': 3.0, '2': 1.0, 'and': 3.0, 'me': 1.0, 'wants': 1.0, 'use': 1.0, 'old': 1.0, 'i': 2.0, 'step': 1.0, 'stool': 1.0}
Word element => {'works': 1.0, 'music': 1.0, 'nice': 1.0, 'plays': 1.0, 'could': 1.0, 'grandmother': 1.0, 'any': 1.0, 'mosssst': 1.0, 'carry': 1.0, 'to': 3.0, 'old': 1.0, 'easy': 2.0, 'from': 2.0, 'use': 1.0, 'either': 1.0, 'month': 1.0, 'great': 3.0, 'the': 1.0, 'is': 3.0, 'useful': 1.0, 'room': 2.0, 'on': 1.0, 'swing': 1.0, 'item': 1.0, 'greatest': 1.0, 'location': 2.0, 'parent': 1.0, 'it': 2.0, 'this': 2.0, 'loves': 1.0, 'or': 2.0, 'a': 2.0, 'trip': 1.0, 'our': 1.0, 'so': 1.0, 'folds': 1.0, '3': 1.0}
Word element => {'house': 1.0, 'basement': 1.0, 'would': 1.0, 'something': 1.0, 'your': 1.0, 'demoted': 1.0, 'n': 1.0, 'fold': 1.0, 'loved': 1.0, 'buy': 1.0, 'obnoxious': 1.0, 'larger': 1.0, 'friend': 1.0, 'honest': 1.0, 'tried': 1.0, 'great': 1.0, 'big': 1.0, 'until': 1.0, 'like': 1.0, 'he': 2.0, 'wouldn': 1.0, 'got': 1.0, 'didn': 2.0, 'it': 5.0, 'much': 1.0, 'only': 1.0, 'this': 3.0, 'use': 2.0, 'out': 1.0, 'keeping': 1.0, 'up': 1.0, 'easy': 1.0, 'folds': 1.0, 'else': 1.0, 'stow': 1.0, 'swings': 1.0, 'will': 1.0, 'option': 1.0, 'main': 1.0, 'at': 2.0, 'space': 1.0, 'swing': 5.0, 'more': 1.0, 'is': 1.0, 'fine': 1.0, 'let': 1.0, 'or': 2.0, 'love': 1.0, 'for': 3.0, 'thought': 1.0, 'grandma': 2.0, 'relative': 1.0, 'about': 1.0, 'baby': 3.0, 'occasionally': 1.0, 'somewhere': 1.0, 'the': 5.0, 'want': 1.0, 'if': 1.0, 'same': 1.0, 'we': 2.0, 't': 3.0, 's': 6.0, 'a': 4.0, 'that': 1.0, 'into': 1.0, 'tv': 1.0, 'and': 4.0, 'away': 1.0, 'but': 2.0, 'can': 1.0, 'you': 2.0, 'easily': 1.0, 'be': 4.0, 'tray': 1.0, 'bought': 2.0, 'i': 3.0, 'hoping': 1.0, 'as': 1.0, 'to': 3.0, 'all': 1.0, 'time': 1.0, 'home': 2.0, 'stashed': 1.0, 'my': 1.0, 'just': 2.0}
Word element => {'same': 1.0, 'bouncer': 1.0, 'highly': 1.0, 'is': 1.0, 'print': 2.0, 'loud': 1.0, 'or': 1.0, 'it': 2.0, 'these': 1.0, 'the': 3.0, 'of': 2.0, 'up': 1.0, 'swing': 2.0, 'have': 1.0, 'that': 1.0, 'babies': 2.0, 'soft': 1.0, 'this': 3.0, 'only': 1.0, 'are': 1.0, 'run': 1.0, 'them': 1.0, 'an': 2.0, 'adorable': 2.0, 'at': 1.0, 'lot': 1.0, 'love': 1.0, 'for': 1.0, 'infant': 1.0, 'drop': 1.0, 'take': 1.0, 'you': 1.0, 'when': 1.0, 'sweet': 1.0, 'i': 3.0, '4': 1.0, 'make': 1.0, 'put': 1.0, 'on': 1.0, 'recommend': 1.0, 'doesn': 1.0, 'daycare': 1.0, 'and': 5.0, 'fussy': 1.0, 'room': 1.0, 'in': 4.0, 'their': 2.0, 'off': 1.0, 'bassinets': 1.0, 'they': 1.0, 'well': 1.0, 'has': 1.0, 'as': 2.0, 'least': 1.0, 'sleep': 2.0, 'to': 1.0, 'instant': 1.0, 't': 2.0, 'we': 2.0, 'a': 1.0, '2': 1.0, 'can': 2.0, 'music': 1.0}
Word element => {'top': 1.0, 'pay': 1.0, 'where': 1.0, 'went': 1.0, 'loved': 1.0, 'got': 1.0, 'what': 1.0, 'compact': 1.0, 'mobile': 1.0, 'sounds': 1.0, 'once': 1.0, 'moon': 1.0, 'variety': 1.0, 'just': 2.0, 'months': 1.0, 'speeds': 1.0, 'things': 1.0, 'numerous': 1.0, 'straps': 1.0, 'babe': 1.0, 'parents': 1.0, 'more': 3.0, '4': 1.0, 'adjustable': 1.0, 'angles': 1.0, 'intention': 1.0, 'this': 2.0, 'multiple': 1.0, 'be': 3.0, 'easy': 2.0, 'around': 1.0, 'music': 1.0, 'but': 1.0, 'main': 1.0, 'is': 1.0, 'at': 1.0, 'rocks': 2.0, 'very': 1.0, 'seat': 1.0, 'as': 3.0, 'which': 2.0, 'for': 2.0, 'perk': 1.0, 'purchasing': 1.0, 'has': 3.0, 'folds': 1.0, 'she': 2.0, 'thought': 1.0, 'recline': 1.0, 'it': 5.0, 'swing': 4.0, 'arms': 1.0, 'and': 3.0, 'tough': 1.0, 'comfy': 1.0, 'volume': 1.0, 'with': 2.0, 'think': 1.0, 'on': 1.0, 'shape': 1.0, 'storage': 1.0, 'was': 5.0, 'my': 3.0, 'could': 1.0, 'going': 1.0, 'than': 1.0, 'that': 4.0, 'because': 1.0, 'attention': 1.0, 'of': 2.0, 'the': 9.0, 'classic': 1.0, 'infant': 1.0, 'half': 1.0, 'house': 1.0, 'upright': 1.0, 'i': 3.0, 'putting': 2.0, 'well': 1.0, 'involved': 1.0, 'her': 1.0, 'options': 1.0, 'only': 2.0, 'do': 1.0, 'end': 2.0, 'thing': 1.0, 'would': 2.0, 'all': 1.0, 'an': 1.0, 'a': 2.0, 'added': 1.0, 'rotated': 1.0, 'pendulum': 1.0, 'style': 1.0, 'together': 2.0, 'if': 1.0, 'enjoy': 1.0, 'to': 3.0, 'pretty': 1.0, 'intuitive': 1.0, 'although': 1.0, 'tricky': 1.0, 'tell': 1.0, 'part': 1.0, 'from': 1.0, 'directions': 1.0}
Word element => {'i': 1.0, 'put': 1.0, 'to': 1.0, 'would': 1.0, 'together': 1.0, 'was': 1.0, 'well': 1.0, 'so': 1.0, 'bright': 1.0, 'very': 1.0, 'washes': 1.0, 'and': 2.0, 'east': 1.0, 'son': 1.0, 'loved': 1.0, 'colorful': 1.0, 'this': 1.0, 'my': 1.0, 'bouncy': 1.0, 'recommend': 1.0, 'really': 1.0, 'seat': 1.0, 'it': 2.0}
Word element => {'way': 1.0, 'all': 1.0, 'brand': 1.0, 'described': 1.0, 'as': 1.0, 'items': 1.0, 'exactly': 1.0, 'to': 1.0, 'our': 1.0, 'were': 1.0, 'they': 1.0, 'time': 1.0, 'on': 1.0, 'is': 1.0, 'the': 2.0, 'be': 1.0, 'grandsons': 1.0, 'arrived': 1.0, 'them': 1.0, 'a': 1.0, 'will': 1.0, 'ove': 1.0, 'fisher': 1.0, 'price': 1.0, 'trusted': 1.0}
Word element => {'and': 1.0, 'baby': 1.0, 'easy': 1.0, 'is': 1.0, 'metal': 1.0, 'less': 1.0, 'expensive': 2.0, 'we': 1.0, 'well': 1.0, 'a': 3.0, 'seat': 1.0, 'bouncy': 1.0, 'mommy': 1.0, 'loves': 1.0, 'more': 1.0, 't': 1.0, 'my': 1.0, 'lo': 1.0, 'so': 1.0, 'for': 1.0, 'one': 3.0, 'very': 1.0, 'decided': 1.0, 'but': 1.0, 'didn': 1.0, 'with': 1.0, 'this': 2.0, 'it': 1.0, 'frame': 1.0, 'had': 1.0, 'to': 2.0, 'bounce': 2.0, 'i': 1.0, 'buy': 1.0}
Word element => {'very': 1.0, 'and': 1.0, 'sleeping': 1.0, 'he': 1.0, 'wonderfully': 1.0, 'quiet': 1.0, 'a': 1.0, 's': 1.0, 'it': 1.0, 'i': 1.0, 'purchase': 1.0, 'son': 1.0, 'told': 1.0, 'play': 1.0, 'this': 1.0, 'bouncer': 1.0, 'friend': 1.0, '34': 1.0, 'for': 2.0, 'gift': 2.0, 'my': 2.0, 'me': 1.0}
Word element => {'was': 1.0, 'part': 1.0, 'a': 2.0, 'had': 1.0, 'quickly': 1.0, 'cheapest': 1.0, 'on': 1.0, 'to': 1.0, 'first': 1.0, 'the': 2.0, 'i': 1.0, 'one': 3.0, 'does': 1.0, 'new': 1.0, 'received': 1.0, 'fine': 1.0, 'defective': 1.0, 'market': 1.0, 'baby': 1.0, 'me': 1.0, 'mailed': 1.0, 'but': 2.0, 'just': 1.0}
Word element => {'anything': 1.0, 'cannot': 1.0, 'in': 1.0, 'browse': 1.0, 'tell': 1.0, 'type': 1.0, 'do': 1.0, 'continue': 1.0, 'considering': 1.0, 'are': 2.0, 'if': 2.0, 'have': 1.0, 'would': 3.0, 'something': 1.0, 'but': 2.0, 'unscrewed': 1.0, 'tendency': 1.0, 'time': 1.0, 'period': 1.0, 'foot': 1.0, 'on': 1.0, 'your': 1.0, 'bounce': 1.0, 'difficult': 1.0, 'stiff': 1.0, 'monitor': 1.0, 'little': 1.0, 'had': 1.0, 'thought': 1.0, 'i': 3.0, 'bouncing': 1.0, 'come': 1.0, 'however': 1.0, 'annoying': 1.0, 'it': 4.0, 'first': 1.0, 'this': 2.0, 'with': 4.0, 'durable': 1.0, 'that': 2.0, 'model': 1.0, 'product': 1.0, 'for': 4.0, 'previous': 1.0, 'any': 1.0, 'to': 5.0, 'seat': 2.0, 'our': 2.0, 'all': 1.0, 'else': 1.0, 'children': 1.0, 'success': 1.0, 'one': 1.0, 'bought': 1.0, 'extended': 1.0, 'my': 1.0, 'interested': 1.0, 'dangerous': 1.0, 'infant': 1.0, 'child': 1.0, 'wear': 1.0, 'generally': 1.0, 'find': 1.0, 'having': 1.0, 'features': 1.0, 'lot': 1.0, 'earlier': 1.0, 'of': 6.0, 'the': 5.0, 'always': 1.0, 'showed': 1.0, 'worse': 1.0, 'right': 1.0, 'feet': 1.0, 'sign': 1.0, 'design': 1.0, 'fair': 1.0, 'nothing': 1.0, 'secondly': 1.0, 'purposes': 1.0, 'you': 7.0, 'plastic': 1.0, 'wire': 1.0, 'frame': 3.0, 'was': 4.0, 'after': 1.0, 'amount': 1.0, 'spring': 1.0, 'too': 1.0, 'and': 3.0, 'a': 7.0, 'could': 2.0, 'is': 1.0, 'say': 2.0, 'no': 1.0, 'thing': 1.0, 'about': 1.0}
Word element => {'babies': 1.0, 'young': 1.0, 'good': 1.0, 'away': 1.0, 'sleep': 1.0, 'right': 1.0, 'to': 1.0, 'him': 1.0, 'it': 3.0, 'price': 1.0, 's': 1.0, 'bounces': 1.0, 'such': 1.0, 'a': 1.0, 'puts': 1.0, 'cheap': 1.0, 'and': 1.0, 'vibrates': 1.0, 'worth': 1.0, 'for': 2.0}
Word element => {'few': 1.0, 'we': 1.0, 'all': 1.0, 'once': 1.0, 'at': 1.0, 'use': 1.0, 'of': 1.0, 'be': 1.0, 'm': 1.0, 'won': 1.0, 'pounds': 2.0, 'nine': 1.0, 'afraid': 1.0, 'baby': 1.0, 'a': 1.0, 'well': 1.0, 's': 1.0, 'works': 1.0, 'were': 1.0, 'now': 1.0, 'to': 1.0, 'adorable': 1.0, 'seems': 1.0, 'stars': 1.0, 'is': 2.0, 'only': 1.0, 'it': 4.0, 'this': 1.0, 'an': 1.0, 'but': 1.0, 'gains': 1.0, 'little': 1.0, 'give': 1.0, 'i': 2.0, 'so': 1.0, 'bouncer': 1.0, 'd': 1.0, 't': 1.0, 'more': 2.0, 'the': 1.0, 'if': 1.0, 'vibration': 1.0, 'pronounced': 1.0}
Word element => {'changed': 1.0, 'be': 1.0, 'still': 1.0, 'use': 1.0, 'hours': 1.0, 'forgetting': 1.0, 'day': 1.0, 'many': 1.0, 'everyday': 1.0, 'using': 1.0, 'months': 1.0, 'sometimes': 1.0, 'after': 2.0, 'turn': 1.0, 'in': 1.0, 'battery': 2.0, 'brand': 1.0, 'an': 1.0, 'have': 1.0, 'vibe': 1.0, 'and': 6.0, 'get': 1.0, 'kicking': 1.0, 'need': 1.0, 'done': 1.0, 'toys': 1.0, 'bouncer': 1.0, 'loves': 1.0, 'with': 1.0, 'thrilled': 1.0, 'first': 1.0, 'times': 1.0, 'am': 1.0, 'rattles': 1.0, 'but': 1.0, 'off': 2.0, 'house': 1.0, 'little': 1.0, 'completely': 1.0, 'i': 3.0, 'lightweight': 1.0, 'pricetag': 1.0, 'of': 1.0, 'skeptical': 1.0, 'it': 2.0, 'zebra': 1.0, 'she': 1.0, 'because': 1.0, 'doesn': 1.0, 'was': 1.0, 'to': 3.0, 'at': 1.0, 'low': 1.0, 'grandma': 1.0, 'move': 1.0, 'recommended': 1.0, '3': 1.0, 'make': 1.0, 'noise': 1.0, 'this': 2.0, 'perfect': 1.0, 'for': 2.0, 'taking': 1.0, 't': 1.0, 'we': 1.0, 'a': 2.0, 's': 1.0, 'would': 1.0, 'never': 1.0, 'making': 1.0, 'anything': 1.0, 'the': 5.0, 'without': 1.0, 'highly': 1.0, 'oh': 1.0}
Word element => {'chair': 1.0, 'design': 1.0, 'expect': 1.0, 'quickly': 1.0, 'do': 1.0, 'or': 1.0, 'cooking': 1.0, 'you': 1.0, 'when': 1.0, 'enough': 1.0, 'off': 1.0, 'leave': 1.0, 'just': 1.0, 'up': 1.0, 'squirm': 1.0, 'her': 2.0, 'vibration': 1.0, 'was': 1.0, 'swatted': 1.0, 'adorable': 1.0, 'at': 2.0, 'took': 1.0, 'use': 2.0, 'look': 2.0, 'makes': 1.0, 'old': 1.0, 'feature': 1.0, 'i': 4.0, 'week': 1.0, 'seems': 1.0, 'spit': 1.0, 'will': 1.0, '8': 1.0, 'sit': 1.0, 'daughter': 2.0, 'for': 5.0, 'that': 2.0, 'm': 1.0, 'price': 2.0, 'them': 1.0, 'baby': 1.0, 'can': 1.0, 'most': 1.0, 'but': 1.0, 'removable': 1.0, 'whistles': 1.0, 'boring': 1.0, 'needed': 1.0, 'one': 1.0, 'bought': 1.0, 'put': 1.0, 'portable': 1.0, 'my': 2.0, 'comfortable': 1.0, 'great': 2.0, 'very': 1.0, 'and': 7.0, 'this': 3.0, 'she': 1.0, 'it': 5.0, 'with': 1.0, 'need': 1.0, 'toys': 2.0, 'short': 2.0, 'bouncer': 3.0, 'because': 1.0, 'all': 1.0, 'to': 3.0, 'as': 1.0, 'seat': 1.0, 'of': 5.0, 't': 1.0, 'a': 3.0, 'bar': 1.0, 'in': 2.0, 'is': 4.0, 'comes': 1.0, 'around': 1.0, 'the': 9.0, 'without': 1.0, 'bells': 1.0, 'fussing': 1.0, 'periods': 2.0, 'so': 1.0, 'time': 3.0, 'something': 2.0, 'basic': 1.0}
Word element => {'at': 1.0, 'bit': 1.0, 'be': 1.0, 'hard': 1.0, 'chair': 1.0, 'feet': 1.0, 'hit': 1.0, 'that': 1.0, 'amused': 1.0, 'months': 1.0, '3': 1.0, 'a': 2.0, 'quiet': 1.0, 'bounced': 1.0, 'keeps': 1.0, 'sleeping': 1.0, 'is': 2.0, 'recommend': 1.0, 'she': 4.0, 'kicks': 1.0, 'little': 1.0, 'by': 1.0, 'when': 3.0, 'could': 1.0, 'straight': 1.0, 'i': 1.0, 'her': 2.0, 'anything': 1.0, 'nice': 1.0, 'there': 1.0, 'bottom': 1.0, 'up': 2.0, 'not': 2.0, 'would': 1.0, 'the': 2.0, 'red': 1.0, 'adjustable': 1.0, 'softer': 1.0, 'seems': 1.0, 'but': 2.0, 'uncomfortable': 1.0, 'star': 1.0, 'so': 1.0, 'for': 1.0}
Word element => {'choice': 1.0, 'good': 1.0, 'was': 1.0, 'likes': 1.0, 'baby': 1.0, 'looks': 1.0, 'got': 1.0, 'parents': 1.0, 'this': 1.0, 'it': 1.0, 'were': 1.0, 'a': 2.0, 'present': 1.0, 'too': 1.0, 'new': 1.0, 'that': 1.0, 'pleased': 1.0, 'like': 1.0, 'as': 1.0, 'and': 1.0, 'very': 1.0}
Word element => {'a': 1.0, 'price': 1.0, 'baby': 1.0, 'entertaining': 1.0, 'simple': 1.0, 's': 1.0, 'sitting': 1.0, 'for': 2.0, 'comfortable': 1.0, 'very': 1.0, 'to': 2.0, 'be': 1.0, 'usually': 1.0, 'use': 1.0, 'while': 1.0, 'bouncer': 1.0, 'loves': 2.0, 'and': 1.0, 'getting': 1.0, 'buy': 1.0, 'i': 2.0, 'seems': 1.0, 'in': 2.0, 'park': 1.0, 'playing': 1.0, 'our': 1.0, 'her': 1.0, 'daughter': 1.0, 'm': 1.0, 'but': 1.0, 'ready': 1.0, 'toys': 1.0, 'great': 2.0, 'lightweight': 1.0, 'the': 3.0, 'morning': 1.0, 'she': 1.0, 'this': 1.0, 'it': 3.0, 'with': 1.0}
Word element => {}
Word element => {'purchase': 1.0, 'grandparent': 1.0, 'gift': 1.0, 'for': 2.0, 'grows': 1.0, 'best': 1.0, 'as': 1.0, 'animals': 1.0, 'on': 1.0, 'little': 1.0, 'baby': 2.0, 'that': 1.0, 'you': 1.0, 'the': 4.0, 'are': 1.0, 'attached': 1.0, 'they': 1.0, 'overhead': 1.0, 'safe': 1.0, 'wonderful': 1.0, 'can': 2.0, 'turn': 1.0, 'soft': 1.0, 'a': 2.0, 'and': 1.0, 'reach': 1.0, 'vibration': 1.0}
Word element => {'price': 1.0, 'affordable': 1.0, 'wonderful': 1.0, 'such': 1.0, 'you': 1.0, 'thank': 1.0, 'time': 1.0, 'night': 1.0, 'fisher': 1.0, 'accident': 1.0, 'left': 1.0, 'forever': 1.0, 'lasts': 1.0, 'hours': 1.0, 'last': 1.0, 'has': 1.0, 'being': 1.0, 'within': 1.0, 'this': 3.0, 'he': 4.0, 'first': 1.0, 'zebra': 1.0, 'it': 3.0, '2': 1.0, 'but': 2.0, 'toward': 1.0, 'little': 1.0, 'at': 1.0, 'minutes': 1.0, 'was': 5.0, 'now': 1.0, 'chair': 2.0, 'freaked': 1.0, 'my': 1.0, 'the': 3.0, 'out': 2.0, 'his': 2.0, 'down': 1.0, 'been': 1.0, 'loves': 1.0, 'rocking': 1.0, 'is': 1.0, 'face': 1.0, 'exhausted': 1.0, 'still': 1.0, 'son': 1.0, 'sleeping': 1.0, 'all': 1.0, 'seat': 1.0, 'as': 1.0, 'strong': 1.0, 'on': 2.0, 'put': 1.0, '3': 2.0, 'days': 1.0, 'type': 1.0, 'old': 1.0, 'i': 1.0, 'too': 1.0, 'and': 4.0, 'regular': 1.0, 'in': 3.0, 'thing': 1.0, 'battery': 1.0, 'about': 1.0, 'today': 1.0, 'months': 1.0, 'one': 2.0, 'where': 1.0, 'for': 3.0, 'of': 2.0, 'not': 1.0, 'those': 1.0, 'nap': 1.0, 'would': 1.0, 'going': 1.0, 'we': 1.0, 'a': 2.0, 'go': 1.0}
Word element => {'other': 1.0, 'not': 1.0, 'complaint': 1.0, 'only': 1.0, 'silent': 1.0, 'virtually': 1.0, 'some': 1.0, 'and': 1.0, 'just': 1.0, 'i': 1.0, 'bounce': 1.0, 'three': 1.0, '20lbs': 1.0, 'the': 4.0, 'sits': 1.0, 'figured': 1.0, 'are': 1.0, 'normal': 1.0, 'vibrater': 1.0, 'had': 1.0, 'limit': 1.0, 'removable': 1.0, 'sitting': 1.0, 'perfect': 1.0, 'this': 4.0, 'bought': 1.0, 'that': 2.0, 'loves': 1.0, 'my': 2.0, 'old': 1.0, 'bouncy': 2.0, 'vs': 1.0, 'when': 1.0, 'than': 1.0, 'because': 1.0, 'our': 1.0, 'to': 2.0, 'seat': 5.0, 'a': 4.0, 'middle': 1.0, 'weight': 1.0, 'kick': 1.0, 'in': 3.0, 'also': 1.0, 'month': 1.0, 'it': 2.0, 'she': 4.0, 'feels': 1.0, 'on': 1.0, 'make': 1.0, 'like': 1.0, '25lb': 1.0, 'is': 5.0, 'herself': 1.0, 'of': 1.0, 'everything': 1.0, 'toys': 2.0, 'bouncer': 1.0, 'has': 1.0, 'out': 1.0, 'how': 1.0, 'her': 1.0, 'legs': 1.0, 'very': 1.0, 'basic': 1.0}
Word element => {'etc': 1.0, 'play': 1.0, 'nap': 1.0, 'your': 2.0, 'for': 3.0, 'safety': 1.0, 'educational': 1.0, 'beautiful': 1.0, 'being': 1.0, 'to': 2.0, 'functional': 1.0, 'a': 3.0, 'belt': 1.0, 'and': 3.0, 'very': 1.0, 'besides': 1.0, 'practical': 1.0, 'baby': 2.0, 'helps': 1.0, 'it': 1.0, 'maintain': 1.0, 'good': 1.0, 'posture': 1.0, 'provides': 1.0, 'also': 1.0, 'perfect': 1.0}
Word element => {'night': 1.0, 'very': 1.0, 'as': 1.0, 'need': 1.0, 'use': 1.0, 'sleep': 2.0, 'constant': 1.0, 'of': 1.0, 'disappointing': 1.0, 'weeks': 1.0, 'we': 2.0, '2': 1.0, 'not': 1.0, 'last': 1.0, 'ours': 1.0, 'it': 1.0, 'died': 1.0, 'for': 1.0, 'her': 1.0, 'did': 1.0, 'to': 1.0, 'much': 1.0, 'after': 1.0, 'so': 1.0}
Word element => {'buy': 1.0, 'great': 1.0, 'price': 1.0, 'for': 1.0, 'anyway': 1.0, 'use': 1.0, 'they': 1.0, 'saver': 1.0, 'recommended': 1.0, 'well': 1.0, 'is': 2.0, 'wish': 1.0, 'this': 1.0, '6': 1.0, 'steel': 1.0, 'of': 1.0, 'downwards': 1.0, 'i': 1.0, 'old': 1.0, 'stronger': 1.0, 'really': 1.0, 'bounce': 1.0, 'it': 5.0, 'month': 3.0, 'life': 1.0, 'now': 1.0, 'although': 1.0, 'that': 2.0, 'three': 1.0, 'my': 1.0, 'baby': 5.0, 'from': 1.0, 'out': 1.0, 'in': 2.0, 'when': 2.0, 'too': 2.0, 'grow': 1.0, 'to': 3.0, 'sleep': 2.0, 'balance': 1.0, 'moves': 1.0, 'will': 2.0, 'which': 2.0, 'help': 1.0, 'the': 3.0, 'heavy': 1.0, 'a': 1.0, 'go': 1.0, 'slightly': 2.0, 'bad': 1.0, 'bouncer': 1.0, 'back': 1.0, 'tilt': 1.0, 'head': 1.0, '3': 1.0, 'make': 1.0, 'me': 1.0}
Word element => {'buy': 1.0, 'wouldn': 1.0, 'attended': 1.0, 'to': 5.0, 'when': 3.0, 'gets': 1.0, 'us': 1.0, 'down': 1.0, 't': 1.0, 'a': 2.0, 'and': 1.0, 'me': 1.0, 'it': 2.0, 'this': 1.0, 'quick': 1.0, 'great': 1.0, 'more': 1.0, 'comes': 1.0, 'is': 2.0, 'really': 1.0, 'saver': 1.0, 'are': 1.0, 'helpful': 1.0, 'he': 1.0, 'extremely': 1.0, 'sit': 1.0, 'vibrations': 1.0, 'life': 1.0, 'the': 5.0, 'job': 1.0, 'or': 1.0, 'expensive': 1.0, 'for': 2.0, 'dinner': 2.0, 'baby': 1.0, 'but': 1.0, 'can': 2.0, 'be': 2.0, 'tool': 1.0, 'next': 2.0, 'in': 2.0, 'wash': 1.0, 'chore': 1.0, 'needs': 1.0, 'at': 1.0, 'table': 1.0, 'anything': 1.0, 'kitchen': 1.0, 'i': 1.0, 'done': 1.0, 'bouncer': 2.0, 'simple': 1.0, 'need': 1.0, 'dishes': 1.0}
Word element => {'ever': 1.0, 'get': 1.0, 'hasn': 1.0, 'far': 1.0, 'hit': 1.0, 'down': 1.0, 'piece': 1.0, 'done': 1.0, 'toys': 1.0, 'stuff': 1.0, 'make': 1.0, 'but': 1.0, 'can': 1.0, 'spins': 1.0, 'guess': 1.0, 'vibrations': 1.0, 'me': 1.0, 'not': 1.0, 'started': 1.0, 'did': 1.0, 'if': 1.0, 'back': 1.0, 'at': 3.0, 'allows': 1.0, 'this': 1.0, 'months': 1.0, 'he': 7.0, 'received': 1.0, 'for': 1.0, 'so': 1.0, 'time': 1.0, 'son': 1.0, 'using': 1.0, 'like': 1.0, 't': 1.0, 'a': 1.0, 'gift': 2.0, 'best': 1.0, 'absolutely': 1.0, 'place': 1.0, 'the': 6.0, 'heavy': 1.0, 'my': 1.0, 'was': 1.0, 'weeks': 1.0, 'now': 1.0, 'center': 1.0, 'as': 2.0, 'to': 2.0, 'when': 2.0, 'us': 1.0, 'hangs': 1.0, 'however': 1.0, 'him': 3.0, 'kicks': 1.0, 'in': 2.0, 'will': 1.0, 'seems': 1.0, 'that': 3.0, 'loves': 2.0, 'house': 1.0, 'placed': 1.0, 'off': 1.0, 'giggles': 1.0, 'i': 5.0, '4': 2.0, 'rattle': 1.0, 'too': 1.0, 'and': 2.0, 'even': 1.0, 'around': 1.0, 'fear': 1.0, 'is': 1.0, 'it': 7.0, 'zebra': 1.0, 'showing': 1.0}
Word element => {'these': 1.0, 'with': 1.0, 'of': 1.0, 'lot': 1.0, 'he': 1.0, 'musical': 1.0, 'or': 1.0, 'off': 1.0, 'you': 1.0, 'are': 1.0, 'fun': 1.0, 'price': 1.0, 'calm': 1.0, 'chair': 2.0, 'appropriate': 1.0, '10': 1.0, 'i': 3.0, 'took': 1.0, 'amazon': 1.0, 'is': 2.0, 'balanced': 1.0, 'one': 1.0, 'bought': 1.0, 'product': 1.0, 'floor': 1.0, 'be': 1.0, 'and': 4.0, 'me': 1.0, 'just': 1.0, 'have': 1.0, 'has': 1.0, 'toy': 1.0, 'likes': 1.0, 'this': 2.0, 'it': 3.0, 'only': 1.0, 'hard': 1.0, 'nos': 1.0, 'days': 1.0, 'delivered': 1.0, 'in': 3.0, 'to': 4.0, 'that': 1.0, 'a': 2.0, 'think': 1.0, 'put': 2.0, 'goods': 1.0, 'above': 1.0, 'which': 1.0, 'like': 1.0, 'brazil': 1.0, 'table': 1.0, 'bed': 1.0, 'my': 1.0, 'son': 1.0, 'place': 1.0, 'the': 1.0, 'animals': 1.0}
Word element => {'would': 1.0, 'second': 1.0, 'worth': 2.0, 'recommend': 1.0, 'bigger': 1.0, 'been': 1.0, 'monies': 1.0, 'for': 1.0, 'in': 1.0, 'our': 1.0, 'better': 1.0, 'has': 1.0, 'they': 1.0, 'every': 1.0, 'got': 1.0, 'sure': 2.0, 'item': 1.0, 'can': 1.0, 'penny': 1.0, 'we': 1.0, 'price': 1.0, 'you': 1.0, 'buy': 1.0, 'here': 1.0, 'the': 1.0, 'more': 1.0, 'expensive': 1.0, 'but': 1.0, 'this': 1.0, 'outgrow': 1.0, 'them': 1.0, 'a': 1.0}
Word element => {'price': 1.0, 'good': 2.0, 'baby': 1.0, 'in': 1.0, 'his': 2.0, 'vibrating': 1.0, 'talks': 1.0, '5': 1.0, 'only': 1.0, 'us': 1.0, 'took': 2.0, 'friends': 1.0, 'so': 1.0, 'together': 2.0, 'back': 1.0, 'on': 1.0, 'put': 2.0, 'apart': 1.0, 'take': 1.0, 'easy': 1.0, 'very': 1.0, 'also': 2.0, 'carry': 1.0, 'large': 1.0, 'but': 1.0, 'this': 2.0, 'with': 1.0, 'buying': 1.0, 'minutes': 1.0, 'was': 1.0, 'had': 1.0, 'liked': 1.0, 'product': 1.0, 'for': 1.0, 'one': 1.0, 'registered': 1.0, 'son': 3.0, 'day': 1.0, 'up': 2.0, 'quite': 1.0, 'tough': 1.0, 'and': 7.0, 'chatter': 1.0, 'to': 5.0, 'as': 1.0, 'our': 4.0, 'vacation': 1.0, 'received': 1.0, 'chair': 2.0, 'down': 1.0, 's': 1.0, 'we': 3.0, 'stairs': 1.0, 'a': 1.0, 'loves': 2.0, 'fancy': 1.0, 'bouncy': 2.0, 'is': 1.0, 'more': 1.0, 'every': 1.0, 'ended': 1.0, 'downstairs': 1.0, 'bouncer': 1.0, 'keep': 1.0, 'it': 6.0, 'higher': 1.0, 'shower': 1.0, 'reasonably': 1.0, 'priced': 2.0, 'high': 1.0, 'reviews': 1.0, 'the': 3.0, 'turns': 1.0, 'out': 1.0, 'than': 1.0}
Word element => {'longer': 1.0, 'is': 4.0, 'really': 1.0, 'even': 1.0, 'trips': 1.0, 'visits': 1.0, 'in': 1.0, 'also': 1.0, 'move': 1.0, 'i': 3.0, 'so': 1.0, 'my': 3.0, 'baby': 2.0, 'and': 2.0, 'for': 1.0, 'product': 1.0, 'everywhere': 1.0, 'or': 1.0, 'can': 1.0, 'arms': 1.0, 'absolutely': 1.0, 'it': 4.0, 'this': 1.0, 'only': 1.0, 'light': 1.0, 'take': 1.0, 'house': 1.0, 'cover': 1.0, 'besides': 1.0, 'super': 1.0, 'like': 1.0, 'washable': 1.0, 'a': 2.0, 'great': 1.0, 'big': 1.0, 'day': 1.0, 'plus': 1.0, 'bouncy': 1.0, 'seat': 1.0, 'because': 1.0, 'loves': 1.0, 'that': 2.0, 'been': 1.0, 'savior': 1.0, 'the': 4.0, 'place': 1.0, 'has': 1.0, 'likes': 1.0, 'during': 1.0}
Word element => {'the': 2.0, 'more': 1.0, 'is': 2.0, 'it': 4.0, 'and': 3.0, 'forever': 2.0, 'lasts': 1.0, 'battery': 1.0, 'i': 3.0, 'six': 1.0, 'using': 1.0, 'love': 1.0, 'expensive': 1.0, 'almost': 1.0, 'don': 1.0, 'baby': 1.0, 'since': 1.0, 'have': 2.0, 'seat': 1.0, 'to': 1.0, 'you': 1.0, 'bouncy': 1.0, 'lightweight': 1.0, 'my': 1.0, 'starts': 1.0, 'portable': 1.0, 'think': 1.0, 'your': 1.0, 'will': 1.0, 'daughter': 1.0, 'one': 1.0, 'months': 1.0, 'could': 1.0, 't': 1.0, 'a': 1.0, 'we': 2.0, 'been': 1.0, 'give': 1.0, 'buy': 1.0, 'day': 1.0, 'from': 1.0, 'came': 1.0, 'home': 1.0, 'mean': 1.0, 'hospital': 1.0, 'would': 1.0, '10': 1.0, 'if': 1.0}
Word element => {'move': 1.0, 'light': 1.0, 'wash': 1.0, 'apart': 1.0, 'also': 1.0, 'take': 1.0, 'room': 2.0, 'is': 2.0, 'my': 1.0, 'baby': 1.0, 'and': 2.0, 'it': 2.0, 'loves': 1.0, 'this': 1.0, 'bouncer': 1.0, 'was': 1.0, 'easy': 3.0, 'to': 5.0, 'assemble': 1.0}
Word element => {'sit': 1.0, 'won': 1.0, '200': 1.0, 'like': 2.0, 't': 2.0, 'event': 1.0, 'so': 1.0, 'price': 1.0, 'i': 3.0, 'night': 1.0, 'its': 2.0, 'can': 2.0, 'morning': 1.0, 'great': 2.0, 'around': 1.0, 'more': 2.0, 'the': 6.0, 'clean': 1.0, 'watched': 1.0, 'weight': 1.0, 'him': 1.0, 'swing': 2.0, 'my': 1.0, 'son': 1.0, 'light': 1.0, '12': 1.0, 'move': 2.0, 'if': 1.0, 'weeks': 1.0, 'loves': 1.0, 'or': 1.0, 'this': 1.0, 'he': 3.0, 'it': 2.0, 'easy': 2.0, 'today': 1.0, 'than': 1.0, 'didn': 1.0, 'sits': 1.0, 'even': 1.0, 'ready': 1.0, 'his': 1.0, 'any': 1.0, 'to': 2.0, 'seat': 1.0, 'quickly': 1.0, 'at': 1.0, 'and': 2.0, 'not': 1.0, 'me': 1.0, 'getting': 1.0, 'pumping': 1.0, 'in': 6.0, 'kitchen': 1.0, 'feed': 1.0, 'chair': 1.0, 'easily': 1.0, 'am': 1.0}
Word element => {'bill': 1.0, 'it': 1.0, 'this': 1.0, 'simple': 1.0, 'love': 1.0, 'one': 1.0, 'for': 1.0, 'search': 1.0, 'i': 3.0, 'fits': 1.0, 'child': 1.0, 'her': 1.0, 'how': 1.0, 'have': 1.0, 'fixing': 1.0, 'is': 2.0, 'on': 1.0, 'someone': 1.0, 'who': 1.0, 'as': 1.0, 'know': 1.0, 'important': 1.0, 'a': 2.0, 'at': 1.0, '4th': 1.0, 'to': 2.0, 'was': 1.0, 'least': 1.0, 'me': 1.0, 'bouncer': 1.0, 'so': 1.0, 'the': 2.0}
Word element => {'perfectly': 1.0, 'works': 1.0, 'design': 1.0, 'simple': 1.0, 'batteries': 1.0, 'still': 1.0, 'by': 1.0, 'on': 1.0, 'vibration': 1.0, 'accident': 1.0, 'left': 1.0, 'lot': 1.0, 'overnight': 1.0, 'used': 1.0, 'have': 2.0, 'value': 1.0, 'great': 2.0, 'consider': 1.0, 'i': 1.0, 'times': 1.0, 'when': 1.0, 'haven': 1.0, 'less': 1.0, 'now': 1.0, 'weeks': 1.0, 'couple': 3.0, 'stimulate': 1.0, 'months': 1.0, '5': 1.0, 'sliding': 1.0, 'in': 2.0, 'product': 1.0, 'for': 3.0, 'old': 1.0, 'insane': 1.0, 'and': 3.0, 'enjoying': 1.0, 'gone': 1.0, 'of': 4.0, 'this': 1.0, 'month': 1.0, 'she': 3.0, 'it': 3.0, 'had': 1.0, 'bar': 2.0, 'has': 2.0, 'toy': 2.0, 't': 1.0, 'a': 5.0, 'we': 3.0, 'want': 1.0, 'door': 1.0, 'her': 2.0, 'front': 1.0, 'use': 1.0, 'the': 9.0, 'without': 1.0, 'change': 1.0, 'money': 1.0, 'past': 1.0, 'but': 1.0, 'can': 1.0, 'position': 1.0, 'glass': 1.0, 'so': 1.0, 'watch': 1.0, 'world': 1.0, 'to': 2.0, 'our': 1.0, 'seat': 2.0, 'outside': 1.0, 'that': 1.0, 'been': 1.0, 'loves': 1.0}
Word element => {'him': 1.0, 'coupled': 1.0, 'bouncer': 1.0, 'loves': 1.0, 'still': 1.0, 'old': 1.0, 'best': 1.0, 'son': 1.0, 'month': 1.0, 'great': 1.0, '4': 1.0, 'and': 1.0, 'my': 1.0, 'a': 1.0, 'price': 1.0, 'has': 1.0, 'of': 1.0, 'been': 1.0, 'our': 1.0, 'this': 2.0, 'with': 1.0, 'purchases': 1.0, 'one': 1.0, 'for': 1.0}
Word element => {'else': 1.0, 'something': 1.0, 'on': 1.0, 'down': 1.0, 'her': 1.0, 'does': 1.0, 'in': 1.0, 'for': 1.0, 'up': 1.0, 'and': 5.0, 'me': 1.0, 'vibrating': 1.0, 'overhead': 1.0, 'the': 6.0, 'my': 1.0, 'playful': 1.0, 'have': 1.0, 'sit': 1.0, 'able': 1.0, 'was': 1.0, 'makes': 1.0, 'old': 1.0, 'otherwise': 1.0, 'i': 1.0, 'you': 1.0, 'loves': 2.0, 'this': 2.0, 'with': 2.0, 'toys': 1.0, 'to': 3.0, 'seat': 3.0, 'colorful': 1.0, 'month': 1.0, 'it': 3.0, 'she': 1.0, 'plays': 1.0, 'niece': 1.0, 'rock': 3.0, 'is': 1.0, 'problem': 1.0, 'if': 1.0, 'do': 1.0, 'only': 1.0, 'yourself': 1.0, 'thingy': 1.0, 'nothing': 1.0, 'four': 1.0, 'but': 1.0, 'noise': 1.0, 'little': 1.0, 'gently': 1.0, 'baby': 1.0, 's': 1.0, 'could': 1.0, 'go': 1.0}
Word element => {'gift': 1.0, 'a': 1.0, 'says': 1.0, 'bouncer': 1.0, 'practicle': 1.0, 'for': 1.0, 'daughter': 1.0, 'in': 1.0, 'granddaughter': 1.0, 'would': 1.0, 'new': 1.0, 'loves': 1.0, 'item': 1.0, 'our': 1.0, 'my': 1.0, 'the': 1.0, 'baby': 2.0, 'practically': 1.0, 'this': 2.0, 'it': 1.0, 'lives': 1.0, 'we': 1.0, 'she': 1.0, 'certainly': 1.0, 'recommend': 1.0, 'as': 1.0}
Word element => {'either': 1.0, 'for': 1.0, 'might': 1.0, 'if': 1.0, 'cool': 1.0, 'at': 1.0, 'is': 1.0, 'shorter': 1.0, 'happens': 1.0, 'daughter': 1.0, 'arms': 2.0, 'same': 1.0, 'are': 1.0, 'not': 3.0, 'reached': 1.0, 'the': 3.0, 'have': 2.0, 'babies': 1.0, 'all': 2.0, 'due': 1.0, 'my': 2.0, 'to': 3.0, 'reasonable': 1.0, 'that': 1.0, 'mostly': 1.0, 'item': 1.0, 'with': 1.0, 'this': 3.0, 'short': 1.0, 'be': 2.0, 'bought': 1.0, 'baby': 1.0, 'highly': 1.0, 'toy': 1.0, 'price': 1.0, 'happen': 1.0, 'child': 1.0, 'i': 1.0, 'but': 1.0, 'you': 2.0, 's': 1.0, 'hang': 1.0, 'cannot': 1.0, 'in': 1.0, 'a': 1.0, 'front': 1.0, 'of': 1.0}
Word element => {'spent': 1.0, 'ever': 1.0, 'hit': 1.0, 'instant': 1.0, 'an': 1.0, 'little': 1.0, 'bouncer': 1.0, 'simple': 1.0, 'other': 1.0, 'babies': 1.0, 'that': 1.0, 'swing': 1.0, 'did': 1.0, 'roo': 1.0, 'hated': 1.0, 'mama': 1.0, 'fortune': 1.0, 'spend': 1.0, 'until': 1.0, 'vibrate': 1.0, 'will': 1.0, 'stuck': 1.0, 'if': 1.0, 'her': 1.0, 'him': 1.0, 'with': 2.0, 'contact': 1.0, 'eye': 1.0, 'can': 2.0, 'inside': 1.0, 'down': 1.0, 'best': 1.0, 'both': 2.0, 'child': 1.0, 'out': 2.0, 'stuff': 1.0, 'on': 1.0, 'make': 1.0, 'put': 2.0, 'cooking': 1.0, 'during': 1.0, 'mood': 1.0, 'fart': 1.0, 'while': 1.0, 'talk': 1.0, 'was': 2.0, 'massage': 1.0, 'either': 1.0, 'wonders': 1.0, 'it': 4.0, 'poop': 1.0, 'only': 1.0, 'children': 1.0, '25': 1.0, 'eating': 1.0, 'phase': 1.0, 'comes': 1.0, 'is': 2.0, 'worked': 1.0, 'why': 1.0, 'all': 1.0, 'any': 1.0, 'to': 2.0, 'our': 2.0, 'for': 1.0, 'them': 1.0, 'baby': 4.0, 'chair': 3.0, 'helps': 1.0, 'place': 2.0, 'the': 5.0, 'said': 1.0, 'in': 1.0, 'gas': 1.0, 'we': 4.0, 'could': 1.0, 'a': 7.0, 'kids': 1.0, 'this': 3.0, 'cranky': 2.0, 'bounce': 1.0, 'of': 2.0, 'thus': 1.0, 'though': 1.0, 'call': 1.0, 'and': 4.0, 'wonderful': 1.0, 'when': 1.0, 'you': 3.0, 're': 1.0, 'or': 3.0, 'so': 1.0}
Word element => {'fine': 1.0, 'just': 1.0, 'be': 1.0, 'will': 1.0, 'in': 1.0, 'sit': 1.0, 'small': 2.0, 'bouncer': 2.0, 'little': 1.0, 'catch': 1.0, 'need': 1.0, 'she': 2.0, 'baby': 2.0, 'few': 1.0, 'my': 1.0, 'timeframes': 1.0, 'and': 1.0, 'very': 1.0, 'still': 1.0, 'cute': 1.0, 'while': 1.0, 'place': 1.0, 'being': 1.0, 'to': 2.0, 'was': 1.0, 'chair': 1.0, 'only': 1.0, 'it': 2.0, 'this': 2.0, 'before': 1.0, 'used': 1.0, 'one': 1.0, 'liked': 1.0, 'for': 3.0, 'a': 2.0, 'chores': 1.0, 'on': 1.0, 'months': 1.0, 'got': 1.0, 'you': 2.0, 'bored': 1.0, 'if': 1.0, 'strapped': 1.0, 'up': 1.0, 'of': 1.0}
Word element => {'safe': 1.0, 'somewhere': 1.0, 'and': 1.0, 'but': 1.0, 'to': 2.0, 'i': 1.0, 'new': 1.0, 'moms': 1.0, 'recommend': 1.0, 'life': 1.0, 'the': 2.0, 'small': 1.0, 'is': 2.0, 'couch': 1.0, 'first': 1.0, 'it': 1.0, 'this': 1.0, 'inexpensive': 1.0, 'a': 1.0, 'keep': 1.0, 'saver': 1.0, 'floor': 1.0, 'thing': 1.0, 'babies': 1.0, 'or': 1.0, 'off': 1.0}
Word element => {'is': 1.0, 'cute': 1.0, 'price': 1.0, 'cool': 1.0, 'much': 1.0, 'toy': 1.0, 'look': 1.0, 'thank': 1.0, 'great': 1.0, 'love': 1.0, 'kids': 1.0, 'you': 1.0, 'my': 1.0, 'the': 2.0, 'so': 1.0, 'very': 1.0, 'and': 1.0, 'quality': 1.0}
Word element => {'product': 1.0, 'purchase': 1.0, 'very': 1.0, 'of': 1.0, 'out': 1.0, 'infant': 1.0, 'taking': 1.0, 'when': 1.0, 'makes': 1.0, 'removable': 1.0, 'is': 1.0, 'am': 1.0, 'animals': 1.0, 'was': 1.0, 'after': 1.0, 'it': 1.0, 'with': 2.0, 'this': 3.0, 'chairs': 1.0, 'few': 1.0, 'different': 1.0, 'trying': 1.0, 'more': 1.0, 'the': 7.0, 'recommend': 1.0, 'least': 1.0, 'expensive': 1.0, 'in': 1.0, 'newborn': 1.0, 'also': 1.0, 'and': 3.0, 'like': 1.0, 'convenient': 1.0, 'a': 2.0, 'bar': 1.0, 'chair': 2.0, 'favorite': 1.0, 'for': 1.0, 'one': 1.0, 'i': 2.0, 'satisfied': 1.0, 'feature': 1.0, 'that': 1.0}
Word element => {'drawback': 1.0, 'after': 1.0, '10': 1.0, 'shut': 1.0, 'that': 2.0, 'when': 1.0, 'cries': 1.0, 'much': 1.0, 'in': 2.0, 'enjoys': 1.0, '8230': 1.0, 'later': 1.0, 'at': 1.0, 'her': 3.0, 'put': 2.0, 'will': 1.0, 'but': 1.0, 'sitting': 1.0, '2': 1.0, 'minutes': 1.0, 'doesn': 2.0, 'was': 1.0, 'an': 1.0, 'lug': 1.0, 'the': 3.0, 'reach': 1.0, 'interesting': 1.0, 'one': 2.0, 'for': 1.0, 'everywhere': 1.0, 'yet': 1.0, 'feature': 1.0, 'i': 4.0, 'old': 2.0, 'very': 2.0, 'more': 1.0, 'around': 1.0, 'off': 1.0, 'enough': 1.0, 'to': 7.0, 'as': 1.0, 'seat': 4.0, 'not': 1.0, 'easy': 1.0, 'didn': 1.0, 'additional': 1.0, 'purchased': 1.0, 'other': 3.0, 'this': 3.0, 'have': 2.0, 'time': 1.0, 'upstairs': 1.0, 'so': 2.0, 'however': 1.0, 'together': 1.0, 'my': 2.0, '5': 1.0, 'she': 2.0, 'it': 2.0, 'month': 1.0, 'seem': 1.0, 'a': 2.0, 't': 3.0, 's': 2.0, 'vibration': 1.0, 'like': 2.0, '15': 1.0, 'toys': 1.0, 'because': 1.0, 'maybe': 1.0, 'be': 1.0}
Word element => {'reasonable': 1.0, 'too': 1.0, 'enjoying': 1.0, 'this': 1.0, 'bouncer': 1.0, 'is': 3.0, 'he': 1.0, 'good': 1.0, 'deal': 1.0, 'i': 2.0, 'sure': 1.0, 'it': 3.0, 'am': 1.0, 'got': 1.0, 'kid': 1.0, 'for': 1.0, 'my': 1.0, 'friends': 1.0}
Word element => {'twenty': 1.0, 'he': 3.0, 'cherished': 1.0, 'barn': 1.0, 'for': 2.0, 'actually': 1.0, 'ten': 1.0, 'one': 2.0, 'got': 1.0, 'tops': 1.0, 'basic': 1.0, 'would': 1.0, 'more': 1.0, 'around': 1.0, 'his': 3.0, 'kick': 1.0, 'current': 1.0, 'son': 1.0, 'have': 1.0, 'pay': 1.0, 'sleep': 1.0, 'as': 1.0, 'to': 2.0, 'is': 4.0, 'at': 2.0, 'hours': 1.0, 'toys': 2.0, 'mornings': 1.0, 'so': 2.0, 'bit': 1.0, 'also': 1.0, 'our': 1.0, 'item': 1.0, 'in': 3.0, 'could': 1.0, 'we': 4.0, 'a': 4.0, 's': 2.0, 'extra': 1.0, 'looking': 1.0, 'and': 3.0, 'busy': 1.0, 'play': 2.0, 'asking': 1.0, 'couple': 1.0, 'i': 5.0, 'feet': 1.0, 'get': 1.0, 'local': 1.0, 'entertain': 1.0, 'piano': 2.0, 'you': 1.0, 'auction': 1.0, 'that': 2.0, 'been': 1.0, 'were': 1.0, 'plays': 1.0, 'himself': 1.0, 'crib': 3.0, 'two': 2.0, 'little': 1.0, 'while': 1.0, 'dollars': 1.0, 'with': 4.0, 'few': 1.0, 'this': 2.0, 'think': 2.0, 'the': 10.0, 'of': 1.0, 'has': 2.0, 'expected': 1.0, 'helpful': 1.0, 'favorite': 2.0, 'pleased': 1.0, 'older': 1.0, 'ironically': 1.0, 'use': 1.0, 'variety': 1.0, 'does': 1.0, 'beginning': 1.0, 'board': 1.0, 'but': 2.0, 'spin': 1.0, 'like': 1.0, 'which': 1.0, 'him': 1.0, 'it': 2.0, 'cute': 1.0, 'was': 1.0, 'purchase': 1.0, 'there': 1.0, 'gotten': 2.0, 'no': 1.0, 'than': 1.0, 'ball': 1.0, 'way': 1.0, 'd': 1.0, 'price': 1.0, 'worth': 1.0}
Word element => {'good': 1.0, 'mode': 1.0, 'if': 1.0, 'song': 2.0, 'little': 1.0, 'plays': 1.0, 'stop': 1.0, 'keys': 2.0, 'when': 1.0, 'you': 3.0, 'like': 1.0, 'making': 1.0, 'just': 1.0, 'screaming': 1.0, 'crib': 2.0, 'choose': 1.0, 'w': 1.0, 'his': 1.0, 'down': 1.0, 'some': 1.0, 'he': 2.0, 'this': 1.0, 'it': 3.0, 'o': 1.0, 'with': 1.0, 'moving': 1.0, 'long': 2.0, 'croc': 1.0, 'likes': 1.0, 'hang': 1.0, 'bought': 1.0, 'that': 5.0, 'mane': 1.0, 'purchase': 1.0, 'my': 1.0, 'spinning': 2.0, 'awake': 1.0, 'time': 1.0, 'flower': 1.0, 'to': 1.0, 'now': 1.0, 'on': 1.0, 'son': 1.0, 'a': 2.0, 'we': 1.0, 's': 2.0, 'in': 1.0, 'pieces': 1.0, 'i': 2.0, 'but': 1.0, 'music': 1.0, 'monkey': 1.0, 'can': 2.0, 'no': 1.0, 'frequently': 1.0, 'hear': 1.0, 'lion': 1.0, 'him': 1.0, 'playing': 1.0, 'the': 3.0, 'moves': 1.0, 'back': 1.0, 'play': 3.0, 'and': 2.0, 'notes': 1.0, 'forth': 1.0, 'pushes': 1.0, 'spends': 1.0, 'or': 2.0}
Word element => {'there': 1.0, 'above': 1.0, 'out': 2.0, 'figure': 1.0, 'trying': 1.0, 'nice': 1.0, 'still': 1.0, 'limited': 1.0, 'though': 1.0, 'even': 1.0, 'went': 1.0, 'caught': 1.0, 's': 1.0, 'get': 1.0, 'off': 1.0, 'seemed': 1.0, 'like': 2.0, 'cheap': 1.0, 'felt': 1.0, 'one': 1.0, 'saw': 1.0, 'sturdy': 1.0, 'skills': 1.0, 'on': 2.0, 'to': 5.0, 'item': 1.0, 'our': 2.0, 'when': 2.0, 'entertain': 1.0, 'say': 1.0, 'activites': 1.0, 'option': 3.0, 'keep': 1.0, 'so': 2.0, 'useful': 1.0, 'a': 4.0, 'could': 3.0, 'then': 1.0, 'attracted': 1.0, 'fine': 1.0, 'we': 8.0, 'ago': 1.0, 'smiles': 1.0, 'or': 2.0, '8': 1.0, 'keys': 1.0, 'least': 1.0, '7month': 1.0, 'quick': 1.0, 'with': 2.0, 'fishtank': 1.0, 'safe': 1.0, 'suprised': 1.0, 'i': 4.0, 'minute': 1.0, 'this': 6.0, 'bit': 2.0, 'found': 1.0, 'old': 1.0, 'tune': 1.0, 'his': 4.0, 'music': 3.0, 'but': 3.0, 'unsafe': 1.0, '2': 1.0, 'for': 7.0, 'crib': 4.0, 'door': 1.0, 'settings': 1.0, 'new': 1.0, 'something': 1.0, 'babysitting': 1.0, 'motor': 1.0, 'love': 1.0, 'he': 3.0, 'and': 5.0, 'plays': 1.0, 'being': 1.0, 'very': 1.0, 'himself': 1.0, 'in': 2.0, 'mornings': 1.0, '15': 1.0, 'started': 1.0, 'them': 1.0, 'baby': 1.0, 'early': 1.0, 'finger': 1.0, 'longer': 1.0, 'of': 1.0, 'the': 15.0, 'at': 1.0, 'is': 2.0, 'look': 1.0, 'other': 1.0, 'all': 2.0, 'einstein': 1.0, 'an': 2.0, 'note': 1.0, 'activity': 4.0, 'was': 5.0, 'because': 1.0, 'that': 6.0, 'style': 1.0, 'limiting': 1.0, 'not': 2.0, 'piano': 1.0, 'fisher': 2.0, 'products': 1.0, 'product': 1.0, 'price': 2.0, 'fun': 1.0, 'feels': 1.0, 'center': 3.0, 'from': 1.0, 'stuff': 2.0, 'years': 1.0, 'no': 1.0, 'usually': 1.0, 'only': 3.0, 'available': 1.0, 'pull': 1.0, 'bright': 1.0, 'by': 2.0, 'were': 1.0, 'looking': 1.0, 'remember': 1.0, 'have': 2.0, 'made': 2.0, 'which': 2.0, 'had': 1.0, 'bought': 1.0, 'gadgets': 1.0, 'starts': 1.0, 'things': 2.0, 'it': 5.0, 'him': 2.0, 'play': 2.0, 'busy': 1.0, 'again': 1.0, 'cool': 1.0, 'player': 1.0, 'exploring': 1.0, 'are': 4.0, 'cute': 1.0, 'first': 1.0, 'working': 1.0}
Word element => {'winks': 1.0, 'extra': 1.0, 'few': 1.0, 'their': 1.0, 'someone': 1.0, 'parents': 1.0, 'toy': 1.0, 'wanting': 1.0, 'busy': 1.0, 'his': 1.0, 'in': 1.0, 'morning': 1.0, 'my': 1.0, 'find': 1.0, 'the': 1.0, 'cry': 1.0, 'grandson': 1.0, 'get': 1.0, 'to': 1.0, 'now': 1.0, 'come': 1.0, 'this': 1.0, 'with': 1.0, 'they': 1.0, 'would': 1.0, 'him': 2.0, 'enjoy': 1.0}
Word element => {'good': 1.0, 'in': 2.0, 'key': 1.0, 'daughter': 1.0, 'the': 2.0, 'my': 1.0, 'this': 1.0, 'when': 1.0, 'piano': 1.0, 'floor': 1.0, 'is': 1.0, 'become': 1.0, 'quickly': 1.0, 'use': 1.0, 'but': 1.0, 'doesn': 1.0, 'were': 1.0, 'simple': 1.0, 'toys': 1.0, 'favorite': 1.0, 'of': 1.0, 'up': 1.0, 'color': 1.0, 'one': 1.0, 'unable': 1.0, 'crib': 1.0, 'because': 1.0, 'just': 1.0, 'lights': 1.0, 'where': 1.0, 'fit': 1.0, 'properly': 1.0, 'so': 1.0, 'it': 4.0, 'she': 2.0, 'we': 1.0, 's': 1.0, 't': 1.0, 'a': 4.0, 'has': 2.0, 'toy': 1.0, 'and': 1.0, 'setting': 1.0, 'loves': 1.0, 'buy': 1.0, 'plays': 1.0, 'to': 1.0, 'as': 1.0, 'all': 2.0}
Word element => {'got': 1.0, 'glad': 1.0, 'so': 1.0, 'worth': 1.0, 'definitely': 1.0, 'overall': 1.0, 'everything': 1.0, 'with': 1.0, 'buttons': 1.0, 'push': 1.0, 'because': 1.0, 'old': 1.0, 'oldest': 1.0, 'watch': 1.0, 'll': 1.0, 'cleaning': 1.0, 'room': 1.0, 'he': 4.0, 'she': 1.0, 'it': 8.0, 'kids': 1.0, 'this': 3.0, 'finally': 1.0, 'like': 1.0, 'play': 1.0, 'moved': 1.0, 'and': 7.0, 'cute': 1.0, 'bought': 1.0, 'my': 2.0, 'we': 2.0, 'a': 1.0, 'might': 1.0, 'show': 1.0, 'love': 1.0, 'for': 1.0, 'son': 1.0, 'while': 1.0, 'from': 1.0, 'talk': 1.0, 'was': 2.0, 'as': 1.0, 'to': 3.0, 'likes': 1.0, 'well': 1.0, 'toy': 4.0, 'money': 1.0, 'monkey': 1.0, '2': 1.0, 'can': 1.0, 'pregnant': 1.0, 'figured': 1.0, 'asleep': 1.0, 'the': 5.0, 'lion': 1.0, 'be': 1.0, 'him': 2.0, 'into': 1.0, 'until': 1.0, 'his': 3.0, 'crib': 2.0, 'have': 1.0, 'falls': 1.0, 'bassinet': 1.0, 'is': 1.0, 'amazing': 1.0, 'light': 1.0, 'just': 1.0, 'in': 1.0, 'turn': 1.0, 'think': 1.0, 'put': 1.0, 'on': 1.0, 'i': 9.0, 'watches': 1.0, 'also': 1.0, 'use': 1.0, 'when': 1.0, 'years': 1.0, 'd': 1.0, 'm': 2.0}
Word element => {'having': 1.0, 'play': 1.0, 'just': 1.0, 'fists': 1.0, 'out': 2.0, 'little': 2.0, 'beat': 1.0, 'hammer': 1.0, 'or': 1.0, 'off': 1.0, 'tummy': 1.0, 'back': 1.0, 'with': 1.0, 'only': 1.0, 'he': 1.0, 'dislike': 1.0, 'on': 3.0, 'pre': 1.0, 'kid': 1.0, 'can': 2.0, 'during': 1.0, 'my': 2.0, 'goodness': 1.0, 'function': 1.0, 'his': 2.0, 'kick': 1.0, 'would': 1.0, 'of': 1.0, 'recorded': 1.0, 'without': 1.0, 'the': 4.0, 'time': 1.0, 'toy': 1.0, 'has': 1.0, 'cool': 2.0, 'this': 1.0, 'tunes': 1.0, 'clock': 1.0, 'piano': 1.0, 'you': 1.0, 'for': 1.0, 'to': 4.0, 'rock': 1.0, 'him': 1.0, 'be': 1.0, 'is': 1.0, 'loves': 1.0, 'that': 1.0, 'turn': 1.0, 'it': 3.0, 'tap': 1.0, 't': 1.0, 'a': 4.0, 'key': 1.0, 'get': 1.0, 'song': 2.0}
Word element => {'product': 1.0, 'i': 1.0, 'would': 1.0, 'wall': 1.0, 'the': 1.0, 'hangs': 1.0, 'it': 1.0, 'kids': 1.0, 'this': 2.0, 'a': 1.0, 'home': 1.0, 'cute': 1.0, 'staple': 1.0, 'in': 1.0, 'nicely': 1.0, 'very': 1.0, 'any': 1.0, 'recommend': 1.0, 'growing': 1.0, 'on': 1.0, 'is': 1.0, 'with': 1.0}
Word element => {'room': 1.0, 'keeps': 1.0, 'carry': 1.0, 'just': 1.0, 'diapers': 1.0, 'easy': 1.0, 'i': 1.0, 'love': 1.0, 'for': 1.0, 'in': 1.0, 'it': 1.0, 'this': 1.0, 'and': 1.0, 'very': 1.0, 'my': 1.0, 'the': 1.0, 'grandson': 1.0, 'dirty': 1.0, 'a': 1.0, 'bought': 1.0, 'laundry': 1.0, 'closed': 1.0, 'environment': 1.0, 'to': 2.0}
Word element => {'outside': 1.0, 'for': 1.0, 'one': 1.0, 'decided': 1.0, 'bag': 2.0, 'due': 1.0, 'that': 1.0, 'after': 1.0, 'really': 1.0, 'size': 2.0, 'and': 6.0, 'get': 1.0, 'they': 1.0, 'send': 1.0, 'worth': 1.0, 'let': 1.0, 'would': 2.0, 'medium': 1.0, 'days': 2.0, 'buy': 1.0, 'hold': 3.0, 'know': 2.0, 'which': 1.0, 'needed': 2.0, 'stinky': 1.0, 'torso': 1.0, 'two': 1.0, '4': 1.0, 'necessarily': 1.0, 'a': 5.0, 't': 2.0, 'bigger': 1.0, 'give': 1.0, 'just': 1.0, 'large': 1.0, 'week': 1.0, 'not': 1.0, 'dry': 1.0, 'but': 1.0, 'got': 1.0, 'as': 3.0, 'to': 9.0, 'big': 1.0, 'indicated': 1.0, 'brand': 1.0, 'pre': 1.0, 'only': 1.0, 'this': 6.0, 'was': 2.0, 'daycare': 1.0, 'you': 2.0, 'probably': 1.0, 'idea': 1.0, 'times': 1.0, 'don': 1.0, 'wash': 1.0, 'her': 1.0, 'home': 1.0, 'another': 1.0, 'my': 1.0, 'both': 1.0, 'never': 1.0, 'interior': 1.0, 'shirt': 1.0, 'is': 2.0, 'the': 5.0, 'of': 3.0, 'huge': 1.0, 'than': 1.0, 'other': 1.0, 'dream': 1.0, 'an': 1.0, 'have': 1.0, 'since': 1.0, '1': 1.0, 'washed': 1.0, 'several': 1.0, 'in': 2.0, 'washing': 1.0, 'machine': 1.0, 'wear': 1.0, 'it': 2.0, 'seems': 1.0, 'drier': 1.0, 'i': 7.0, 'well': 2.0, 'putting': 1.0, 'coated': 1.0, 'so': 1.0, 'up': 1.0, 'takes': 1.0, 'couple': 1.0, 'out': 1.0, 'bad': 1.0, 'diapers': 1.0, 'first': 1.0, 'inside': 1.0, 'then': 1.0}
Word element => {'prefolds': 1.0, 'day': 1.0, 'very': 1.0, 'premium': 1.0, 'with': 1.0, 'terribly': 1.0, 'this': 1.0, 'drawstring': 1.0, 'generously': 1.0, 'flats': 1.0, 'nighttime': 1.0, 'aios': 1.0, 'is': 1.0, 'for': 1.0, 'love': 1.0, 'vacation': 1.0, 'that': 1.0, 'cloth': 1.0, 'needed': 1.0, 'use': 1.0, 'while': 1.0, 'it': 2.0, 'covers': 1.0, 'we': 1.0, 'a': 3.0, '5': 1.0, 'large': 1.0, 'bag': 2.0, 'amazing': 1.0, 'our': 1.0, 'to': 1.0, 'was': 1.0, 'on': 1.0, 'too': 1.0, 'and': 3.0, 'so': 1.0, 'nothing': 1.0, 'hold': 1.0, 'like': 1.0, 'bulky': 1.0, 'i': 2.0, 'etc': 1.0, 'at': 1.0, 'holding': 1.0, 'smells': 1.0, 'in': 1.0, 'sized': 1.0, 'has': 1.0, 'zipper': 1.0}
Word element => {'better': 1.0, 'put': 1.0, 'offering': 1.0, 'repeatedly': 1.0, 'than': 1.0, 'explain': 1.0, 'email': 1.0, 'via': 1.0, 'issue': 2.0, 'around': 1.0, 'get': 2.0, 'contact': 1.0, 'phone': 1.0, 're': 1.0, 'me': 2.0, 'response': 1.0, 'their': 1.0, 'slow': 1.0, 'been': 1.0, 'we': 5.0, 'use': 3.0, 'stench': 2.0, 'plastic': 1.0, 'rather': 1.0, 'danced': 1.0, 'beautifully': 1.0, 'and': 5.0, 'environmentally': 1.0, 'room': 1.0, 'culprit': 1.0, 'into': 1.0, 'initially': 1.0, 'would': 1.0, 'new': 1.0, 'brand': 1.0, 'face': 1.0, 'however': 1.0, 'wipes': 1.0, '2': 1.0, 'of': 2.0, 'the': 12.0, 'in': 3.0, 'was': 3.0, 'which': 1.0, 'leaking': 2.0, 'day': 1.0, 'adorable': 1.0, 'since': 1.0, 'using': 2.0, 'bag': 8.0, 'with': 3.0, 'it': 6.0, 'useless': 1.0, 'this': 2.0, 'size': 1.0, 'your': 1.0, 'probably': 1.0, 'odor': 1.0, 'our': 1.0, 'turned': 1.0, 'be': 3.0, 'money': 1.0, 'purchasing': 1.0, 'bought': 2.0, 'prior': 1.0, 'but': 1.0, 'print': 1.0, 'is': 1.0, 'on': 1.0, 'make': 1.0, 'after': 1.0, 'a': 7.0, 'small': 1.0, 'zipper': 1.0, 'have': 2.0, 'solution': 1.0, 'them': 1.0, 'has': 1.0, 'i': 4.0, 'well': 1.0, 'asking': 1.0, 'out': 1.0, 'to': 11.0, 'pretty': 1.0, 'wet': 4.0, 'diapers': 1.0, 'works': 1.0, 'double': 1.0, 'they': 2.0, 'checked': 1.0, 'store': 1.0, 'sure': 1.0, 'itself': 1.0, 'not': 1.0, 'bummis': 3.0, 'arm': 1.0, 'for': 2.0, 'hammer': 1.0, 'had': 1.0, 'no': 1.0, 'answers': 1.0, 'walk': 1.0, 'about': 1.0, 'switched': 1.0, 'used': 2.0, 'friendly': 1.0, 'hit': 1.0, 'contacted': 1.0, 'drawstring': 1.0, 'possibility': 1.0, 'planetwise': 2.0, 'quickly': 1.0, 'difficult': 1.0, 'more': 1.0, 'changes': 1.0, 'during': 1.0, 'bags': 1.0, 'diaper': 1.0, 'so': 2.0, 'worked': 1.0, 'having': 2.0, 'faulty': 1.0, 'started': 1.0, 'smells': 1.0}
Word element => {'wanted': 1.0, 'but': 1.0, 'instead': 1.0, 'finger': 1.0, 'his': 2.0, 'get': 1.0, 'him': 2.0, 'uncomfortable': 1.0, 'does': 1.0, 'because': 1.0, 'want': 1.0, 'always': 1.0, 'result': 1.0, 'hands': 1.0, 'thick': 1.0, 'little': 3.0, 'it': 7.0, 'this': 2.0, 'he': 5.0, 'so': 1.0, 'kept': 1.0, 'i': 6.0, 'old': 1.0, 'remembered': 1.0, 'and': 4.0, 'll': 1.0, 'complaint': 1.0, 'nursing': 1.0, 'often': 1.0, 'my': 5.0, 'as': 1.0, 'to': 8.0, 'doesn': 1.0, 'was': 1.0, 'content': 1.0, 'me': 1.0, 'not': 1.0, 'give': 2.0, 'what': 1.0, 'thought': 1.0, 'something': 2.0, 'that': 2.0, '4m': 1.0, 'when': 1.0, 'grasping': 1.0, 'hand': 2.0, 'hold': 6.0, 'think': 1.0, 'on': 2.0, 'grabbing': 1.0, 'works': 1.0, 'do': 1.0, 'only': 1.0, 'try': 1.0, 'overall': 2.0, 't': 1.0, 'a': 4.0, 's': 5.0, 'pretty': 1.0, 'better': 1.0, 'good': 1.0, 'shirt': 1.0, 'or': 1.0, 'seems': 1.0, 'around': 1.0, 'is': 1.0, 'more': 1.0, 'd': 1.0, 'onto': 2.0, 'for': 3.0, 'seeing': 1.0, 'while': 1.0, 'tugging': 1.0, 'at': 1.0, 'well': 1.0, 'has': 1.0, 'hair': 1.0}
Word element => {'another': 1.0, 'already': 1.0, 've': 1.0, 'loves': 1.0, 'while': 1.0, 'month': 1.0, 'for': 1.0, 'tugging': 1.0, 'love': 1.0, '5': 1.0, 'and': 2.0, 'nursing': 1.0, 'started': 1.0, 'the': 1.0, 'mooma': 2.0, 'old': 1.0, 'i': 3.0, 'my': 1.0, 'pulling': 1.0, 'ago': 1.0, 'at': 1.0, 'was': 1.0, 'everything': 1.0, 'weeks': 1.0, 'a': 3.0, 'friend': 1.0, 'few': 1.0, 'it': 1.0, 'he': 2.0, 'bought': 2.0}
Word element => {'over': 1.0, 'much': 1.0, 'use': 1.0, 'not': 1.0, 'just': 1.0, 'price': 1.0, 'definitely': 1.0, '10': 1.0, '1': 1.0, 'scale': 1.0, 'll': 1.0, '8': 1.0, 'an': 1.0, 'about': 1.0, 'went': 1.0, 'fussiness': 1.0, 'less': 1.0, 'counter': 1.0, 'drooling': 1.0, 'immediately': 1.0, 'chewing': 1.0, 'tell': 1.0, 'can': 1.0, 'noticed': 1.0, 'old': 1.0, '4': 1.0, 'i': 4.0, 'recommend': 1.0, 'was': 2.0, 'now': 2.0, 'to': 4.0, 'there': 1.0, 'noticing': 1.0, 'of': 4.0, 'although': 1.0, '9': 1.0, 'medication': 1.0, 'this': 3.0, 'the': 2.0, 'without': 1.0, 'save': 1.0, 'my': 1.0, 'couple': 2.0, 'probably': 1.0, 'really': 2.0, 'has': 1.0, 'daughter': 1.0, 'for': 1.0, 'it': 6.0, 'she': 4.0, 'that': 3.0, 'been': 2.0, 'months': 2.0, 'and': 3.0, 'starting': 1.0, 'from': 2.0, 'wearing': 2.0, 'so': 2.0, 'wear': 1.0, 't': 1.0, 'going': 1.0, 's': 3.0, 'a': 4.0, 'having': 1.0, 'chew': 1.0, 'will': 1.0, 'stop': 1.0, 'her': 6.0, 'neck': 1.0, 'have': 1.0, 'start': 1.0, 'on': 3.0, 'ankle': 1.0, 'letting': 1.0, 've': 1.0, 'around': 2.0, 'caught': 1.0, 'you': 2.0, 'times': 2.0, 'three': 1.0, 'at': 1.0}
Word element => {'the': 1.0, 'lot': 1.0, 'and': 1.0, 't': 1.0, 'this': 1.0, 'doesn': 1.0, 'a': 2.0, 'of': 1.0, 'attach': 1.0, 'addition': 1.0, 'for': 1.0, 'winter': 1.0, 'add': 1.0, 'is': 2.0, 'time': 1.0, 'bulk': 1.0, 'great': 1.0, 'it': 1.0, 'easy': 1.0, 'pack': 1.0, 'to': 2.0}
Word element => {'paid': 1.0, 'already': 1.0, 'has': 1.0, 'returning': 1.0, 'honestly': 1.0, 'for': 1.0, 'love': 2.0, 'say': 1.0, 'be': 2.0, 'covered': 1.0, 'warm': 1.0, 'baby': 2.0, 'never': 1.0, 'keeps': 1.0, 'now': 1.0, 'free': 1.0, 'dries': 1.0, 'washes': 1.0, 'it': 5.0, 'this': 2.0, 'first': 1.0, 'needed': 1.0, 'and': 4.0, 'experience': 1.0, 'thought': 2.0, 'had': 1.0, 'stroller': 1.0, 'blanket': 2.0, 'of': 2.0, 'decided': 1.0, 'kind': 1.0, 'to': 1.0, 'as': 2.0, 'you': 1.0, 'easily': 1.0, 'traveling': 1.0, 'i': 11.0, 'me': 1.0, 'not': 1.0, 'like': 1.0, 'trip': 1.0, 'just': 1.0, 'hands': 1.0, 'the': 6.0, 'bulky': 1.0, 'd': 2.0, 'm': 1.0, 'buys': 1.0, 'person': 1.0, 've': 1.0, 'also': 1.0, 'in': 1.0, 'used': 1.0, 'off': 1.0, 'cover': 2.0, 'while': 1.0, 'stuff': 1.0, 'on': 1.0, 'so': 1.0, 'don': 1.0, 'have': 2.0, 'walking': 1.0, 'carry': 1.0, 'can': 1.0, 'but': 3.0, 'blankets': 1.0, 'a': 4.0, 't': 1.0, 's': 1.0, 'that': 1.0, 'been': 1.0, 'horrible': 1.0, 'wonderful': 1.0}
Word element => {'in': 1.0, 'be': 1.0, 'product': 1.0, 'price': 1.0, 'money': 1.0, 'the': 6.0, 'ergo': 1.0, 'half': 1.0, 'costs': 1.0, 'almost': 1.0, 'service': 1.0, 'good': 1.0, 'warm': 1.0, 'not': 1.0, 'it': 3.0, 'this': 2.0, 'first': 1.0, 'considering': 1.0, 'what': 1.0, 'ripped': 1.0, 'will': 1.0, 'baby': 1.0, 'quality': 1.0, 'waste': 1.0, 'of': 3.0, 'keep': 1.0, 'should': 1.0, 'better': 1.0, 'put': 1.0, 'on': 2.0, 'your': 1.0, 'time': 1.0, 'china': 1.0, 'made': 2.0, 'from': 1.0, 'cover': 2.0, 'snap': 1.0, 'although': 1.0, 'a': 1.0, 'we': 1.0, 'terrible': 1.0, 'tried': 1.0, 'our': 1.0, 'to': 1.0, 'was': 1.0, 'material': 1.0, 'customer': 1.0, 'really': 1.0, 'is': 1.0}
Word element => {'amber': 1.0, 'now': 1.0, 'well': 1.0, 'seen': 1.0, 'work': 1.0, 'but': 1.0, 'first': 1.0, 'at': 1.0, 'skeptical': 1.0, 'very': 1.0, 'i': 2.0, 'hours': 1.0, 'self': 1.0, 'in': 2.0, 'a': 1.0, 'we': 3.0, 'clothes': 1.0, 'got': 1.0, 'will': 2.0, 'back': 3.0, 'soaking': 1.0, 'be': 3.0, 'home': 1.0, 'never': 2.0, 've': 1.0, 'would': 1.0, 'much': 1.0, 'she': 5.0, 'it': 2.0, 'this': 1.0, 'after': 1.0, 'minutes': 1.0, 'was': 4.0, 'our': 1.0, 'to': 2.0, 'drooling': 1.0, 'lo': 1.0, 'went': 1.0, 'my': 1.0, '20': 1.0, 'forgot': 1.0, 'happy': 1.0, 'necklace': 4.0, 'put': 2.0, 'on': 2.0, 'over': 1.0, 'her': 4.0, 'and': 5.0, 'is': 1.0, 'dry': 1.0, 'so': 2.0, 'time': 1.0, 'visit': 1.0, 'always': 1.0, 'parents': 1.0, 'crying': 1.0, 'few': 1.0, 'wet': 1.0, 'screaming': 1.0, 'without': 2.0, 'weekend': 1.0, 'the': 1.0, 'entire': 1.0}
Word element => {'but': 1.0, 'exactly': 1.0, 'what': 1.0, 'i': 1.0, 'expected': 1.0, 'not': 1.0, 'works': 1.0, 'it': 1.0, 'sure': 1.0, 'cute': 1.0, 'how': 1.0, 'for': 1.0, 'super': 1.0, 'teething': 1.0}
Word element => {'notice': 1.0, 'mouth': 1.0, 'seems': 1.0, 'in': 1.0, 'able': 1.0, 'is': 1.0, 'that': 1.0, 'she': 3.0, 'even': 1.0, 'her': 3.0, 'on': 1.0, 'experienced': 1.0, 'teething': 1.0, 'daughter': 1.0, 'my': 1.0, 'not': 2.0, 'started': 1.0, 'doesn': 1.0, 'put': 1.0, 'helped': 1.0, 'has': 2.0, 'any': 1.0, 'since': 1.0, 't': 1.0, 'nicely': 1.0, 'fevers': 1.0, 'we': 1.0, 'to': 3.0, 'so': 1.0, 'wear': 1.0, 'everyday': 1.0, 'with': 1.0, 'this': 2.0, 'it': 3.0, 'fits': 1.0}
Word element => {'possible': 1.0, 'sturdy': 1.0, 'seems': 1.0, 'gender': 1.0, 'fascinated': 1.0, 'benefit': 1.0, 'some': 1.0, 'of': 1.0, 'might': 1.0, 'she': 1.0, 'nuetral': 1.0, 'month': 1.0, 'old': 1.0, '17': 1.0, 's': 1.0, 'as': 1.0, 'yo': 1.0, 'side': 1.0, 'is': 2.0, 'well': 1.0, 'a': 2.0, 'for': 1.0, 'with': 1.0, 'it': 1.0, 'this': 1.0, 'gof': 1.0, 'attractive': 1.0, 'we': 2.0, 'and': 1.0, 'get': 2.0, 'by': 1.0, 'mom': 1.0, 'jewelry': 2.0, 'her': 3.0, 'figured': 1.0, 'andvwe': 1.0, 'own': 1.0, 'wanted': 1.0}
Word element => {'teething': 1.0, 'from': 1.0, 'lot': 1.0, 'a': 1.0, 'down': 1.0, 'her': 1.0, 'clam': 1.0, 'much': 1.0, 'too': 1.0, 'is': 1.0, 'pretty': 1.0, 'and': 2.0, 'the': 1.0, 'my': 1.0, 'pain': 1.0, 'baby': 1.0, 'isn': 1.0, 'necklace': 1.0, 'it': 1.0, 'works': 1.0, 'drooling': 1.0, 't': 1.0}
Word element => {'try': 1.0, 'it': 1.0, 'known': 1.0, 'never': 1.0, 've': 1.0, 'very': 1.0, 'inexpensive': 1.0, 'in': 1.0, 'difference': 1.0, 'i': 4.0, '4': 1.0, 'seeing': 1.0, '18': 1.0, 'of': 1.0, 'once': 1.0, 'now': 1.0, 'had': 2.0, 'is': 1.0, 'son': 2.0, 'night': 1.0, 'started': 1.0, 'wore': 1.0, 'well': 1.0, 'has': 1.0, 'he': 2.0, 'amber': 1.0, 'with': 1.0, 'teething': 1.0, 'beads': 1.0, 'ora': 1.0, 'an': 1.0, 'nieces': 1.0, 'adorable': 1.0, 'at': 1.0, 'since': 1.0, 'a': 2.0, '5months': 1.0, 'necklaces': 1.0, 'their': 1.0, 'my': 3.0, 'have': 2.0, 'tylenol': 1.0, 'as': 1.0, 'to': 3.0, 'all': 1.0, 'break': 1.0, 'durable': 1.0, 'bracelet': 1.0, 'not': 1.0, 'give': 2.0, 'him': 1.0, 'or': 1.0, 'through': 1.0, 'gel': 1.0, 'the': 3.0, 'sleeping': 1.0, 'like': 1.0, 'oldest': 1.0, 'one': 1.0, 'months': 1.0, 'bought': 1.0, 'for': 1.0, 'and': 3.0, 'moms': 1.0, 'habits': 1.0, 'are': 2.0}
Word element => {'helps': 1.0, 'day': 1.0, 'beautiful': 1.0, 'i': 4.0, 'the': 1.0, 'my': 1.0, 'time': 1.0, 'know': 1.0, 'huge': 1.0, 'wonders': 1.0, 'daughter': 1.0, 'for': 1.0, 'all': 1.0, 'her': 1.0, 'works': 1.0, 'it': 4.0, 'notice': 1.0, 'get': 1.0, 'and': 1.0, 'difference': 1.0, 'a': 2.0, 'if': 1.0, 'is': 1.0, 'left': 1.0, 'compliments': 1.0, 'off': 1.0, 'of': 1.0}
Word element => {'first': 1.0, 'anklet': 1.0, 'an': 1.0, 'bought': 1.0, 'which': 1.0, 'naps': 1.0, 'at': 1.0, 'needs': 1.0, 'so': 1.0, 'time': 1.0, 'with': 1.0, 'when': 1.0, 'someone': 1.0, 'his': 1.0, 'he': 2.0, 'place': 1.0, 'the': 4.0, 'in': 2.0, 'reason': 1.0, 'safety': 2.0, 'gets': 2.0, '34': 2.0, 'hazard': 1.0, 'would': 1.0, 'not': 4.0, 'and': 1.0, 'description': 1.0, 'caught': 1.0, 'is': 4.0, 'have': 3.0, 'release': 1.0, 'this': 1.0, 'it': 9.0, 'works': 1.0, 'only': 2.0, 'if': 3.0, 'i': 1.0, 'neck': 1.0, 'or': 2.0, 'sure': 1.0, 'thought': 1.0, 'that': 1.0, 'will': 1.0, 'can': 1.0, '2': 1.0, 'but': 2.0, 'work': 1.0, 'read': 1.0, 'may': 1.0, 'does': 1.0, 'choking': 1.0, 'him': 1.0, 'trying': 1.0, 'clasp': 2.0, 'all': 1.0, 'any': 1.0, 'night': 1.0, 'baby': 2.0, 'necklace': 1.0, 'wear': 1.0, 'should': 2.0, 'for': 1.0, 'stars': 1.0, 'a': 4.0, 's': 1.0, 'we': 1.0, 're': 1.0, 'on': 2.0, 'ankle': 1.0}
Word element => {'wearing': 1.0, 'too': 1.0, 'true': 1.0, 'time': 1.0, 'watch': 1.0, 'say': 1.0, 'love': 1.0, 'all': 1.0, 'we': 3.0, 'as': 2.0, 'with': 1.0, 'please': 1.0, 'you': 1.0, 'month': 1.0, 'felt': 2.0, 'get': 1.0, 'sure': 1.0, '100': 1.0, 'minutes': 3.0, 'was': 2.0, 'just': 2.0, '4': 1.0, 'i': 8.0, 'much': 1.0, 'put': 1.0, 'our': 1.0, 'how': 1.0, 'got': 1.0, 'safety': 1.0, 'ordering': 1.0, 'necklace': 3.0, 'to': 4.0, 'had': 1.0, 'it': 10.0, 'wear': 1.0, 'thought': 1.0, 'twisted': 1.0, 'its': 2.0, 'for': 3.0, 'supposed': 1.0, 'decide': 1.0, 'early': 1.0, 'a': 6.0, 't': 2.0, 'my': 3.0, 'and': 2.0, 'lose': 1.0, 'didn': 1.0, 'realized': 1.0, 'old': 1.0, 'great': 2.0, 'your': 1.0, 'idea': 1.0, 'feel': 2.0, 'on': 2.0, 'realize': 1.0, 'amber': 1.0, 'be': 1.0, 'let': 1.0, 'neck': 1.0, 'once': 1.0, 'first': 1.0, 'few': 2.0, 'this': 5.0, 'dangerous': 1.0, 'but': 4.0, 'teether': 1.0, 'manage': 1.0, 'would': 3.0, 've': 1.0, 'many': 1.0, 'she': 4.0, 'baby': 4.0, 'seems': 1.0, 'off': 1.0, 'use': 2.0, 'her': 2.0, 'hand': 1.0, 'cheap': 1.0, 'like': 3.0, 'caught': 2.0, 'is': 3.0, 'babies': 1.0, 'more': 1.0, 'strangled': 1.0, 'pulling': 1.0, 'very': 2.0, 'little': 1.0, 'handsy': 1.0, 'gets': 1.0, 'still': 1.0, 'if': 3.0, 'up': 1.0, 'know': 1.0, 'bit': 1.0, 'so': 1.0, 'have': 1.0, 'been': 1.0, 'that': 2.0, 'while': 2.0, 'of': 1.0, 'the': 4.0, 'plastic': 1.0, '34': 2.0, 'in': 2.0, 'm': 1.0, 'knot': 1.0, 'choking': 1.0, 'avoiding': 1.0, 'could': 1.0, 'will': 1.0, 'not': 3.0, 'caution': 1.0, 'come': 1.0, 'knew': 1.0, 'never': 2.0, 'entirely': 1.0, 'secondly': 1.0, 'beads': 1.0, 'now': 1.0, 'herself': 1.0, 'real': 1.0, 'wasn': 1.0}
Word element => {'her': 1.0, 'cute': 1.0, 'real': 1.0, 'well': 1.0, 'be': 1.0, 'to': 1.0, 'i': 2.0, 'it': 2.0, 'got': 1.0, 'working': 1.0, 'this': 1.0, 'for': 2.0, 'my': 1.0, 'plus': 1.0, 'little': 1.0, 'and': 1.0, 'girl': 1.0, 'on': 1.0, 'babysit': 1.0, 'seems': 1.0}
Word element => {'here': 1.0, 'molars': 1.0, 'take': 1.0, 'plan': 1.0, 't': 1.0, 'don': 1.0, 'since': 1.0, 'wearing': 1.0, 'been': 1.0, 'started': 1.0, 'baby': 1.0, 'time': 2.0, 'so': 1.0, 'bit': 1.0, 'anyway': 1.0, 'through': 2.0, 'poking': 1.0, 'tooth': 3.0, 'something': 1.0, 'each': 2.0, 'his': 2.0, 'part': 1.0, 'little': 2.0, 'finally': 1.0, 'get': 1.0, 'and': 5.0, 'month': 1.0, 'felt': 1.0, 'about': 2.0, 'badly': 1.0, 'weeping': 1.0, 'in': 1.0, 'the': 2.0, 'of': 3.0, 'is': 2.0, 'differently': 1.0, 'for': 1.0, 'that': 1.0, 'next': 1.0, 'to': 4.0, 'ever': 1.0, 'all': 1.0, 'he': 4.0, 'with': 1.0, 'by': 1.0, 'this': 2.0, 'few': 1.0, 'us': 1.0, 'work': 2.0, 'but': 2.0, 'will': 1.0, 'ssssllloooooooow': 1.0, 'after': 1.0, 'my': 1.0, 'i': 7.0, 'well': 1.0, 'a': 8.0, 'wailing': 1.0, 'eye': 1.0, 'came': 1.0, 'child': 2.0, 'teeth': 1.0, 'brought': 1.0, 'was': 3.0, 'desperate': 1.0, 'as': 3.0, 'swelling': 2.0, 'diaper': 1.0, 'chewing': 1.0, 'rash': 2.0, 'are': 1.0, 'bad': 1.0, 'bled': 1.0, 'chew': 1.0, 'fever': 2.0, 'whining': 1.0, 'or': 1.0, 'teather': 1.0, 'everything': 1.0, 'guilty': 1.0, 'there': 1.0, 'tylenol': 1.0, 'until': 1.0, 'off': 1.0, 'seems': 1.0, 'tried': 1.0, 'things': 1.0, 's': 1.0, 'giving': 1.0, 'it': 4.0, 'him': 1.0, 'days': 1.0, 'realized': 1.0, 'sure': 1.0, 'seemed': 1.0, 'on': 3.0, 'near': 1.0, 'think': 1.0, 'better': 1.0, 'constant': 1.0, 'enough': 1.0, 'not': 1.0, 'course': 1.0, 'still': 1.0, 'got': 1.0, 'grumpy': 1.0, 'wanted': 1.0, 'takes': 1.0, 'nowhere': 1.0, 'before': 1.0}
Word element => {'better': 1.0, 'really': 2.0, 'works': 2.0, 'it': 3.0, 'after': 1.0, 'would': 3.0, 'there': 1.0, 'up': 1.0, 'for': 1.0, 'one': 1.0, 'like': 1.0, 'he': 1.0, 'older': 1.0, 'first': 1.0, 'worked': 1.0, 'from': 2.0, 'why': 1.0, 'completely': 1.0, 'is': 1.0, 'second': 1.0, 'husband': 1.0, 'to': 1.0, 'the': 3.0, 'my': 3.0, 'forgot': 1.0, 'necklace': 2.0, 'be': 2.0, 'than': 1.0, 'because': 1.0, 'of': 1.0, 'wake': 1.0, 'in': 1.0, 'son': 1.0, 'middle': 1.0, 'magic': 1.0, 'them': 2.0, 'night': 1.0, 'or': 2.0, 'times': 1.0, 'when': 1.0, 'someone': 1.0, 'this': 1.0, 'cranky': 1.0, 'right': 1.0, 'teething': 1.0, 'and': 2.0, 'me': 1.0, 'then': 1.0, 'either': 1.0, 'medicating': 1.0, 's': 1.0, 'a': 1.0, 'we': 1.0, 'realize': 1.0, 'bath': 1.0, 'on': 1.0, 'put': 1.0, 'back': 1.0, 'his': 1.0}
Word element => {'6': 1.0, 's': 1.0, 'shown': 1.0, 'it': 2.0, 'and': 1.0, 'fussy': 1.0, 'hours': 1.0, 'in': 1.0, 'daughter': 1.0, 'energy': 1.0, 'really': 1.0, 'of': 1.0, 'has': 2.0, 'worth': 1.0, 'been': 1.0, 'short': 1.0, 'so': 1.0, 'full': 1.0, 'my': 1.0, 'less': 1.0}
Word element => {'money': 1.0, 'skeptical': 1.0, 'we': 2.0, 'first': 1.0, 'it': 2.0, 'at': 1.0, 'was': 1.0, 'recommended': 1.0, 'friends': 1.0, 'several': 1.0, 'were': 1.0, 'our': 1.0, 'thought': 1.0, 'when': 1.0, 'you': 2.0, 'are': 1.0, 'the': 1.0, 'of': 1.0, 'desperate': 1.0, 'but': 1.0, 'will': 1.0, 'worth': 1.0, 'try': 1.0, 'anything': 1.0}
Word element => {'huge': 1.0, 'made': 1.0, 'swears': 1.0, 'nanny': 1.0, 'that': 2.0, 'our': 1.0, 'arguing': 1.0, 'trouble': 1.0, 'but': 1.0, 'also': 1.0, 'in': 1.0, 'necklace': 1.0, 'month': 1.0, 'magic': 1.0, 'to': 1.0, 'be': 1.0, 'still': 1.0, 'believing': 1.0, 'have': 3.0, 'old': 1.0, 'i': 2.0, 'my': 1.0, 'less': 1.0, 'difference': 1.0, 'couple': 1.0, 'fussy': 1.0, '15': 1.0, 'a': 3.0, 'days': 1.0, 'wearing': 1.0, 'after': 1.0, 'son': 1.0, 'they': 1.0, 'time': 1.0, 'beads': 1.0, '34': 2.0, 'of': 2.0, 'appears': 1.0, 'with': 1.0, 'this': 1.0, 'hard': 1.0}
Word element => {'so': 1.0, 'look': 1.0, 'to': 1.0, 'is': 1.0, 'want': 1.0, 'all': 1.0, 'month': 1.0, 'necklace': 1.0, 'love': 1.0, '4': 1.0, 'on': 1.0, 'awesome': 1.0, 'our': 1.0, 'i': 2.0, 'old': 1.0, 'it': 2.0, 'amber': 1.0, 'this': 1.0, 'great': 1.0, 'more': 1.0, 't': 1.0, 'because': 1.0, 'just': 1.0, 'seeing': 1.0, 'bother': 1.0, 'daughter': 1.0, 'she': 1.0, 'service': 1.0, 'off': 1.0, 'never': 1.0, 'they': 1.0, 'has': 1.0, 'get': 1.0, 'and': 2.0, 'doesn': 1.0, 'her': 1.0, 'customer': 1.0, 'at': 1.0}
Word element => {'either': 1.0, 'other': 1.0, 'each': 1.0, 'strangle': 1.0, 'tried': 1.0, 't': 1.0, 'haven': 1.0, 'ignore': 1.0, 'pretty': 1.0, 'they': 1.0, 'them': 3.0, 'trouble': 1.0, 'was': 1.0, 'teething': 1.0, 'with': 2.0, 'miserable': 1.0, 'their': 2.0, 'were': 1.0, 'amber': 1.0, 'grand': 1.0, 'twin': 1.0, 'little': 1.0, 'seems': 1.0, 'teeth': 1.0, 'in': 1.0, 'having': 1.0, 'daughters': 1.0, 'or': 1.0, 'coincidence': 1.0, 'my': 1.0, 'the': 3.0, 'mother': 1.0, 'ones': 1.0, 'wanted': 1.0, 'knows': 1.0, 'but': 1.0, 'annoying': 1.0, 'it': 2.0, 'she': 1.0, 'just': 1.0, 'necklaces': 3.0, 'says': 1.0, 'discomfort': 1.0, 'of': 1.0, 'even': 1.0, 'though': 2.0, 'to': 5.0, 'as': 1.0, 'all': 1.0, 'are': 1.0, 'coming': 1.0, 'who': 1.0, 'at': 1.0, 'if': 1.0, 'same': 1.0, 'time': 1.0, 'much': 1.0, 'try': 1.0, 'do': 2.0, 'not': 2.0, 'seem': 2.0, 'be': 2.0}
Word element => {'and': 1.0, 'likes': 1.0, 'longer': 1.0, 'my': 1.0, 'small': 1.0, 'good': 1.0, 'going': 1.0, 'though': 1.0, 'daughter': 1.0, 'in': 1.0, 'seems': 1.0, 'length': 1.0, 'but': 1.0, 'thought': 1.0, 'it': 3.0, 'work': 1.0, 'was': 1.0, 'be': 1.0, 'product': 1.0, 'to': 2.0}
Word element => {'know': 1.0, 'everyone': 1.0, 'hard': 1.0, 'this': 2.0, 'with': 1.0, 'try': 1.0, 'then': 1.0, 'to': 3.0, 'had': 1.0, 'recommend': 1.0, 'was': 3.0, 'ready': 1.0, 'but': 1.0, 'trouble': 1.0, 'surprise': 1.0, 'teething': 1.0, 'cut': 1.0, 'a': 2.0, 'middle': 1.0, 'such': 1.0, 'the': 2.0, 'tooth': 2.0, 'more': 2.0, 'my': 3.0, 'bought': 1.0, 'daughter': 1.0, 'doubts': 1.0, 'gave': 1.0, 'i': 7.0, 'anything': 1.0, 'time': 1.0, 'cutting': 1.0, 'having': 1.0, 'in': 1.0, 'worked': 1.0, 'very': 1.0, 'it': 3.0, 'she': 2.0, 'ordered': 1.0, 'after': 1.0, 'put': 1.0, 'on': 1.0, 'her': 2.0, 'no': 1.0, 'of': 1.0, 'once': 1.0, 'at': 1.0, 'three': 1.0, 'easily': 1.0, 'when': 2.0, 'again': 1.0}
Word element => {'rher4d': 1.0, 'wonderful': 1.0, 'you': 1.0, 'at': 1.0, 'been': 1.0, 'had': 1.0, 'has': 2.0, 'back': 1.0, 'went': 1.0, 'sock': 1.0, 'in': 1.0, 'daughter': 1.0, 'stay': 1.0, 'not': 2.0, 'big': 1.0, 'it': 4.0, 'so': 1.0, 'instructed': 1.0, 'is': 2.0, 'he': 5.0, 'only': 2.0, 'days': 1.0, 'grandson': 1.0, 'product': 1.0, 'for': 4.0, 'customers': 1.0, 'thank': 1.0, 'right': 1.0, 'teething': 1.0, 'start': 1.0, 'necklace': 2.0, 'would': 1.0, 'new': 1.0, 'were': 1.0, 'just': 1.0, 'law': 1.0, 'early': 1.0, 'crewing': 1.0, 'my': 2.0, 'the': 3.0, 'a': 3.0, 'we': 2.0, 'during': 1.0, 'very': 1.0, 'little': 2.0, 'drooling': 1.0, 'i': 1.0, 'old': 1.0, 'night': 1.0, 'bought': 1.0, 'months': 1.0, 'ankle': 1.0, 'put': 2.0, '3': 2.0, 'on': 3.0, 'and': 6.0, 'his': 4.0, 'fussing': 2.0, 'bottles': 1.0, 'was': 3.0, 'sleep': 1.0, 'as': 1.0, 'all': 2.0, 'to': 3.0, 'character': 1.0, 'fist': 1.0, 'beginning': 1.0, 'like': 1.0, 'which': 1.0, 'over': 1.0, 'up': 1.0, 'skeptical': 1.0, 'wake': 1.0, 'of': 1.0, 'him': 1.0, 'out': 1.0}
Word element => {'nuffsaid': 1.0, 'great': 1.0, 'are': 1.0, 'these': 1.0}
Word element => {'a': 1.0, 'to': 2.0, 'our': 1.0, 'bracelet': 1.0, 'loves': 1.0, 'teething': 2.0, 'really': 1.0, 'is': 1.0, 'one': 1.0, 'wearing': 1.0, 'i': 1.0, 'and': 1.0, 'baby': 1.0, 'highly': 1.0, 'little': 1.0, 'pain': 1.0, 'recommend': 1.0, 'she': 1.0, 'help': 1.0, 'alleviate': 1.0, 'with': 1.0, 'this': 1.0, 'it': 2.0, 'the': 1.0, 'seems': 1.0, 'anyone': 1.0}
Word element => {'fussy': 1.0, 'and': 1.0, 'crying': 1.0, 'gums': 1.0, 'for': 1.0, 'fussiness': 1.0, 'drooling': 1.0, 'been': 1.0, 'has': 1.0, 'she': 1.0, 'cranky': 1.0, 'her': 1.0, 'our': 1.0, 'shot': 1.0, 'we': 1.0, 'dark': 1.0, 'if': 1.0, 'having': 1.0, 'in': 1.0, 'anything': 1.0, 'seemed': 1.0, '2': 1.0, 'more': 1.0, 'the': 1.0, 'make': 1.0, 'a': 1.0, 'months': 1.0, 'on': 1.0, '4': 1.0, 'teething': 1.0, 'month': 1.0, 'improvement': 1.0, 'rubbing': 1.0, 'this': 2.0, 'it': 1.0, 'tried': 1.0, 'old': 1.0, 'now': 1.0, 'was': 1.0, 'granddaughter': 1.0, 'to': 1.0, 'no': 1.0}
Word element => {'he': 3.0, 'this': 1.0, 'amber': 1.0, 'looks': 1.0, 'it': 4.0, 'eating': 1.0, 'tablet': 1.0, 'teething': 1.0, 'very': 1.0, 'single': 1.0, 'given': 1.0, 'one': 1.0, 'since': 1.0, 'haven': 1.0, 'i': 2.0, 'putting': 1.0, 'him': 4.0, 'now': 1.0, 'baltic': 1.0, 'necklace': 2.0, 'before': 1.0, 'long': 1.0, 'his': 1.0, 'even': 1.0, 'the': 1.0, 'calm': 1.0, 'happy': 1.0, 'magic': 1.0, 'night': 1.0, 'baby': 1.0, 'them': 1.0, 'my': 1.0, 'fits': 1.0, 'day': 1.0, 'perfectly': 1.0, 'also': 1.0, 'seems': 1.0, 'not': 1.0, 'know': 1.0, 'and': 3.0, 'too': 1.0, 'sneak': 1.0, 'was': 1.0, 'doesn': 1.0, 'cute': 1.0, 'after': 1.0, 'on': 3.0, 'bath': 1.0, 't': 2.0, 's': 1.0, 'there': 1.0}
Word element => {'months': 1.0, 'later': 1.0, 'during': 1.0, 'definitely': 1.0, 'will': 1.0, 'but': 1.0, 'soon': 1.0, 'bit': 1.0, 'too': 1.0, 'when': 1.0, 'i': 1.0, 'for': 2.0, 'to': 1.0, 'product': 1.0, 'purchase': 1.0, 'off': 1.0, 'pay': 1.0, 'good': 2.0, 'a': 3.0, 'really': 1.0, 'is': 1.0, 'maybe': 1.0, 'toddlers': 1.0, 'teething': 1.0, 'born': 1.0, 'begin': 1.0, 'the': 1.0, 'figured': 1.0, 'baby': 1.0, 'would': 1.0, 'new': 1.0, 'make': 1.0, 'this': 1.0, 'it': 3.0, 'shower': 1.0, 'gift': 1.0}
Word element => {'cute': 1.0, 'really': 1.0, 'looks': 1.0, 'off': 1.0, 's': 1.0, 'bath': 1.0, 'then': 1.0, 'nights': 1.0, 'were': 1.0, 'horrible': 1.0, 'and': 2.0, 'wearing': 1.0, 'time': 2.0, 'those': 1.0, 'arm': 1.0, 'since': 1.0, 'a': 1.0, 'her': 1.0, 'used': 1.0, 'even': 1.0, 'works': 1.0, 'only': 1.0, 'it': 6.0, 'too': 1.0, 'when': 1.0, 'i': 5.0, 'for': 1.0, 'one': 1.0, 'swear': 1.0, 'without': 1.0, 'minutes': 1.0, '20': 1.0, 'days': 1.0, 'later': 1.0, 'had': 1.0, 'was': 1.0, '2': 2.0, 'the': 2.0, 'went': 1.0, 'my': 1.0, 'little': 1.0, 'sore': 1.0, 'gone': 1.0, 'all': 1.0, 'have': 1.0, 'pain': 1.0, 'on': 1.0}
Word element => {'fast': 1.0, 'on': 1.0, 'cute': 1.0, 'mention': 1.0, 'not': 1.0, 'screamed': 1.0, 'demeanor': 1.0, 'he': 4.0, 'this': 2.0, 'looks': 1.0, 'it': 3.0, 'i': 1.0, 'his': 1.0, 'teething': 1.0, 'ps': 1.0, 'the': 2.0, 'started': 1.0, 'drooled': 1.0, 'my': 1.0, 'him': 1.0, 'anyone': 1.0, 'time': 1.0, 'has': 1.0, 'angry': 1.0, 'shipping': 1.0, 'son': 1.0, 'when': 1.0, 'less': 1.0, 'that': 1.0, 'clingy': 1.0, 'a': 2.0, 'whole': 1.0, 'quiet': 1.0, 'necklace': 1.0, 'new': 1.0, 'changed': 2.0, 'is': 2.0, 'to': 2.0, 'all': 1.0, 'worn': 1.0, 'easy': 1.0, 'last': 1.0, 'was': 2.0, 'recommend': 1.0, 'but': 1.0, 'everywhere': 1.0, 'months': 1.0, 'love': 1.0, 'for': 1.0, 'newborn': 1.0, 'couple': 1.0, 'and': 1.0, 'of': 1.0, 'like': 1.0, 'brand': 1.0, 'child': 1.0, 'calm': 1.0}
Word element => {'carrying': 1.0, 'from': 1.0, 'having': 1.0, 'over': 1.0, 'll': 1.0, 'wasn': 1.0, 'that': 2.0, 'notice': 1.0, 'a': 4.0, 's': 1.0, 'going': 1.0, 'discovered': 1.0, 'could': 2.0, 'did': 2.0, 'screaming': 3.0, 'just': 1.0, 'within': 2.0, 'grab': 1.0, 'it': 1.0, 'him': 1.0, 'be': 1.0, 'lemon': 1.0, 'ankles': 2.0, 'so': 1.0, 'neck': 1.0, 'or': 1.0, 'little': 1.0, 'quite': 1.0, 'each': 1.0, 'cure': 1.0, 'with': 1.0, 'art': 1.0, 'afraid': 1.0, 'for': 1.0, 'i': 8.0, 'my': 4.0, 'to': 2.0, 'son': 2.0, 'his': 2.0, 'around': 1.0, 'coincidence': 1.0, 'necklace': 2.0, 'purchased': 1.0, 'he': 5.0, 'few': 2.0, 'this': 1.0, 'pain': 3.0, 'was': 4.0, 'baltic': 1.0, 'constant': 1.0, 'one': 1.0, 'too': 1.0, 'and': 6.0, 'baby': 3.0, 'night': 1.0, 'wore': 1.0, 'as': 1.0, 'leave': 1.0, 'days': 1.0, 'without': 1.0, 'comes': 1.0, 'these': 3.0, 'put': 1.0, 'much': 1.0, 'of': 3.0, 'the': 4.0, 'longer': 1.0, 'down': 1.0, 'periods': 1.0, 'times': 1.0, 'went': 1.0, 'up': 1.0, 'everything': 1.0, 'if': 1.0, 'chew': 1.0, 'beads': 1.0, 'took': 1.0, '34': 2.0, 'both': 1.0, 'anklets': 1.0, 'until': 1.0, 'off': 2.0, 'all': 2.0, 'an': 1.0, 't': 1.0, 'along': 1.0, 'instances': 1.0, 'hour': 1.0, 'on': 3.0, 'amber': 1.0, 'noticed': 1.0, 'shoulder': 2.0, 'chubby': 1.0, 'but': 1.0, 'gone': 1.0, 'fine': 1.0, 'take': 2.0, 'them': 1.0, 'always': 1.0, 'sleep': 2.0, 'back': 1.0, 'in': 1.0, 'head': 1.0}
Word element => {'little': 1.0, 'her': 1.0, 'helped': 1.0, 'really': 1.0, 'hers': 1.0, 'give': 1.0, 'was': 2.0, 'santa': 1.0, 'for': 3.0, 'prompt': 1.0, 'saving': 1.0, 'so': 1.0, 'amber': 1.0, 'my': 1.0, 'the': 2.0, 'm': 1.0, 'necklaces': 1.0, 'by': 1.0, 'beauty': 1.0, 'necklace': 1.0, 'shipping': 1.0, 'it': 3.0, 'month': 1.0, 'teething': 2.0, 'and': 1.0, 'i': 5.0, 'old': 1.0, 'pleasantly': 1.0, 'don': 1.0, 'as': 1.0, 'to': 2.0, 'any': 1.0, 'christmas': 1.0, 'surprised': 1.0, 'of': 1.0, 'have': 1.0, 'feedback': 1.0, 'because': 1.0, 'guy': 1.0, '3': 1.0, 'on': 1.0, 'this': 1.0, 'pain': 1.0, 'how': 1.0, 't': 1.0, 'a': 1.0, 'works': 1.0, 'though': 1.0, 'can': 1.0, 'say': 1.0, 'that': 1.0, 'purchased': 1.0, 'friend': 1.0, 'well': 1.0, 'recommended': 1.0}
Word element => {'windows': 1.0, 'nursery': 1.0, 'to': 1.0, 'these': 1.0, 'touch': 1.0, 'looks': 1.0, 'just': 1.0, 'in': 1.0, 'adds': 1.0, 'the': 2.0, 'a': 1.0, 'photo': 1.0, 'highly': 1.0, 'like': 1.0, 'and': 1.0, 'recommended': 1.0, 'cute': 1.0}
Word element => {'cute': 1.0, 'very': 1.0, 'do': 1.0, 'think': 1.0, 'look': 1.0, 'curtain': 1.0, 'love': 1.0, 'critters': 1.0, 'i': 3.0, 'one': 1.0, 'than': 1.0, 'loved': 1.0, 'they': 1.0, 'elephant': 1.0, 'the': 2.0, 'more': 1.0, 'giraffe': 1.0}
Word element => {'cute': 1.0, 'look': 1.0, 'backs': 1.0, 'have': 1.0, 't': 1.0, 'don': 1.0, 'used': 1.0, 'they': 2.0, 'these': 1.0, 'anywhere': 1.0, 'tie': 2.0, 'back': 1.0, 'as': 1.0, 'and': 1.0, 'are': 1.0, 'the': 1.0, 'room': 1.0, 'add': 1.0, 'so': 1.0, 'be': 1.0, 'adorable': 1.0, 'much': 1.0, 'to': 2.0}
Word element => {'wall': 1.0, 'them': 1.0, 'mount': 1.0, 'way': 1.0, 'or': 1.0, 'more': 1.0, 'of': 1.0, 'instead': 1.0, 'button': 1.0, 'come': 1.0, 'with': 1.0, 'cute': 1.0, 'very': 1.0, 'from': 1.0, 'curtain': 1.0, 'and': 1.0, 'do': 1.0, 'securely': 1.0, 'couldn': 1.0, 'i': 3.0, 'twins': 1.0, 'so': 1.0, 'sense': 1.0, 'curtains': 1.0, 'got': 1.0, 'are': 1.0, 'some': 1.0, 'these': 1.0, 'thats': 1.0, 'they': 2.0, 'designed': 1.0, 'common': 1.0, 'back': 1.0, 'my': 1.0, 'rooms': 1.0, 'to': 3.0, 'any': 1.0, 'higher': 1.0, 'better': 2.0, 'rating': 1.0, 'though': 1.0, 'hands': 1.0, 'the': 7.0, 'myself': 1.0, 'velco': 1.0, 'just': 2.0, 'a': 2.0, 't': 1.0, 'go': 1.0, 'could': 1.0, 'hold': 2.0, 'like': 1.0, 'small': 1.0, 'have': 1.0, 'stars': 1.0, 'for': 1.0, 'where': 1.0, 'product': 1.0, 'on': 1.0, '3': 1.0, 'stuff': 1.0, 'because': 1.0, 'maybe': 2.0}
Word element => {'themed': 1.0, '4': 1.0, 's': 1.0, 'well': 1.0, 'old': 1.0, 'for': 1.0, 'dinosaur': 1.0, 'and': 2.0, 'year': 1.0, 'very': 1.0, 'my': 1.0, 'are': 1.0, 'product': 1.0, 'bought': 1.0, 'they': 1.0, 'we': 1.0, 'room': 1.0, 'seller': 1.0, 'so': 1.0, 'cute': 1.0, 'work': 1.0, 'these': 1.0, 'great': 3.0, 'rice': 1.0}
Word element => {'them': 1.0, 'looking': 1.0, 'no': 1.0, 'really': 2.0, 'design': 1.0, 'cuter': 1.0, 'awsome': 1.0, 'i': 1.0, 'cheap': 1.0, 'tiebacks': 1.0, 'are': 2.0, 'then': 1.0, 'most': 1.0, 'the': 2.0, 'these': 1.0, 'an': 1.0, 'look': 2.0, 'to': 1.0, 'idea': 1.0, 'thing': 1.0, 'picture': 1.0, 'recommend': 1.0, 'easy': 1.0, 'install': 1.0, 'they': 3.0, 'ever': 1.0, 'and': 2.0, 'cute': 1.0, 'soft': 1.0, 'well': 1.0}
Word element => {'him': 1.0, 'for': 1.0, 'them': 1.0, 'gladwe': 1.0, 'my': 1.0, 'won': 1.0, 'grandson': 1.0, 't': 1.0, 'his': 1.0, 'leave': 1.0, 'these': 1.0, 'cutecritters': 1.0, 'very': 1.0, 'on': 1.0, 'got': 1.0, 'curtains': 1.0}
Word element => {'idea': 1.0, 'fun': 1.0, 'atmosphere': 1.0, 'a': 2.0, 'my': 1.0, 'wonderful': 1.0, 'this': 1.0, 'provides': 1.0, 'loved': 1.0, 'and': 1.0, 'nephew': 1.0, 'makes': 1.0, 'it': 1.0, 'is': 1.0, 'room': 1.0, 'his': 1.0, 'come': 1.0, 'these': 1.0, 'alive': 1.0}
Word element => {'product': 1.0, 'need': 1.0, 'we': 1.0, 'when': 1.0, 'place': 1.0, 'in': 1.0, 'absolutely': 1.0, 'holding': 1.0, 'job': 1.0, 'a': 1.0, 'velcro': 1.0, 'nursery': 1.0, 'curtains': 1.0, 'super': 1.0, 'son': 1.0, 's': 1.0, 'wife': 1.0, 'up': 1.0, 'and': 3.0, 'put': 1.0, 'my': 2.0, 'are': 1.0, 'for': 1.0, 'love': 1.0, 'were': 1.0, 'the': 2.0, 'great': 2.0, 'these': 2.0, 'they': 1.0, 'i': 1.0, 'does': 1.0, 'both': 1.0, 'them': 2.0, 'fantastic': 1.0, 'easy': 1.0, 'to': 2.0, 'install': 1.0}
Word element => {'this': 1.0, 'love': 1.0, 'fit': 1.0, 'these': 1.0, 'they': 3.0, 'a': 1.0, 'is': 1.0, 'son': 1.0, 'nursery': 1.0, 's': 1.0, 'like': 1.0, 'monkey': 1.0, 'my': 1.0, 'actually': 1.0, 'are': 2.0, 'in': 1.0, 'and': 2.0, 'perfectly': 1.0, 'product': 1.0, 'supposed': 1.0, 'so': 1.0, 'theme': 1.0, 'cute': 1.0, 'work': 1.0, 'exactly': 1.0, 'to': 1.0}
Word element => {'youmichelle': 1.0, 'also': 1.0, 've': 1.0, 'in': 1.0, 'had': 1.0, 'thing': 1.0, 'perfectly': 1.0, 'i': 3.0, 'while': 1.0, 'addition': 1.0, 'cute': 1.0, 'most': 1.0, 'fun': 1.0, 'points': 1.0, 'for': 2.0, 'this': 2.0, 'it': 1.0, 'godmother': 1.0, 'be': 1.0, 'send': 1.0, 'baby': 1.0, 'to': 3.0, 'any': 1.0, 'seen': 1.0, 'they': 1.0, 'thank': 1.0, 'the': 1.0, 'great': 1.0, 'ones': 1.0, 'a': 3.0, 't': 1.0, 'my': 1.0, 'are': 1.0, 'working': 1.0, 'on': 1.0, 'fairy': 1.0, 'is': 1.0, 'have': 1.0, 'small': 1.0, 'friends': 1.0, 'boy': 1.0, 'so': 1.0, 'brownie': 1.0, 'room': 1.0, 'was': 1.0, 'doesn': 1.0, 'even': 1.0, 'little': 1.0}
Word element => {'or': 1.0, 'towel': 1.0, 'even': 1.0, 'for': 1.0, 'additionally': 1.0, 'they': 1.0, 'oh': 1.0, 'have': 1.0, 'must': 3.0, 'blanket': 1.0, 'are': 1.0, '34': 2.0, 'if': 1.0, 'off': 1.0, 'factor': 1.0, 'this': 1.0, 'with': 1.0, 'cool': 1.0, 'that': 1.0, 'tell': 1.0, 'cannot': 1.0, 'in': 2.0, 'my': 2.0, 'happy': 1.0, 'dino': 2.0, 'do': 1.0, 'nursery': 3.0, 'tieback': 1.0, 'cute': 2.0, 'did': 1.0, 'her': 1.0, 'is': 1.0, 'son': 1.0, 'day': 1.0, 'i': 2.0, 'holder': 2.0, 'touch': 1.0, 'curtain': 1.0, 'and': 2.0, 'up': 2.0, 'daughter': 1.0, 'you': 2.0, 'when': 1.0, 'was': 3.0, 'just': 2.0, 'the': 4.0, 'these': 2.0, 'finishing': 1.0, 'made': 1.0, 's': 1.0, 'a': 4.0, 'charts': 1.0, 'wonderful': 1.0, 'very': 1.0, 'little': 1.0, 'it': 1.0, 'she': 1.0, 'how': 1.0, 'received': 1.0, 'on': 1.0, 'put': 1.0, 'them': 1.0, 'quality': 1.0, 'work': 1.0, 'but': 1.0, 'mostly': 1.0}
Word element => {'think': 1.0, 'i': 1.0, 'nursery': 1.0, 'new': 1.0, 'son': 1.0, 'with': 1.0, 'in': 1.0, 'look': 1.0, 'our': 1.0, 'these': 1.0, 'they': 1.0, 'my': 1.0, 'the': 1.0, 'love': 1.0, 'great': 1.0, 'will': 2.0, 'them': 1.0, 'go': 1.0, 'nicely': 1.0, 'very': 1.0, 'decorations': 1.0}
Word element => {'giraffe': 2.0, 'like': 1.0, 'i': 1.0, 'a': 1.0, 'down': 1.0, 'child': 1.0, 'falling': 1.0, 'they': 1.0, 'more': 1.0, 'the': 5.0, 'is': 2.0, 'changed': 1.0, 'of': 1.0, 'for': 1.0, 'safer': 1.0, 'look': 1.0, 'curtain': 1.0, 's': 1.0, 'than': 1.0, 'but': 2.0, 'lion': 2.0, 'hair': 1.0}
Word element => {'star': 1.0, 'year': 1.0, 'about': 1.0, 'been': 1.0, 'fraying': 1.0, 'any': 1.0, 'whole': 1.0, 'bank': 1.0, 'break': 1.0, 'doesn': 1.0, 'so': 2.0, 'nice': 1.0, 'tumble': 1.0, 'hot': 1.0, 'go': 2.0, 'and': 8.0, 'possible': 1.0, 'fresh': 1.0, 'changed': 1.0, 'have': 6.0, 'a': 10.0, 'small': 1.0, 'but': 1.0, 'organic': 1.0, 'since': 1.0, 'too': 1.0, 'lot': 1.0, 'didn': 1.0, 'them': 5.0, 'because': 1.0, '20': 1.0, 'fab': 1.0, '5': 2.0, 'cheap': 1.0, 'like': 2.0, 'hold': 1.0, 'squeeze': 1.0, '100': 1.0, 'far': 1.0, 'he': 1.0, 'washing': 1.0, 'if': 1.0, 'cotton': 1.0, 'be': 1.0, 'it': 1.0, 'him': 3.0, 'in': 2.0, 'then': 1.0, 'we': 1.0, 'excess': 1.0, 'son': 1.0, 'cloths': 2.0, 'these': 1.0, 'some': 1.0, 'am': 1.0, 'mind': 1.0, 'realising': 1.0, 'with': 3.0, 'cloth': 1.0, 'i': 6.0, 'polyester': 1.0, 'usually': 1.0, 'maybe': 1.0, 'sized': 1.0, 'bought': 1.0, 'for': 6.0, 'to': 9.0, 'husband': 1.0, 'had': 2.0, 'wash': 4.0, 'use': 2.0, 'bath': 2.0, 'on': 2.0, 'ever': 1.0, 'etc': 1.0, 'day': 1.0, 'they': 5.0, 'means': 1.0, 'time': 2.0, 'dry': 1.0, 'skin': 1.0, 'not': 1.0, 'my': 3.0, 'me': 1.0, 'out': 3.0, 'hands': 1.0, 'deal': 1.0, 'this': 1.0, 'soft': 1.0, 'need': 1.0, 'the': 1.0, 'of': 5.0, 'turned': 1.0, 'throw': 1.0, 'great': 2.0, 'sticky': 1.0, 'faces': 1.0, 'big': 1.0, 'size': 1.0, 'mum': 1.0, 'enough': 2.0, 'now': 1.0, 't': 3.0, 'likes': 1.0, 'very': 1.0, 'himself': 1.0, 'first': 1.0, 'are': 3.0, 'normal': 1.0, 'however': 1.0, 'easy': 1.0, 'onto': 1.0, 'pleased': 1.0, 'water': 1.0, 'flannel': 1.0, 'just': 1.0, 'much': 1.0, 'through': 1.0, 'material': 1.0, 'heap': 1.0, 'at': 2.0, 'is': 1.0, 'handle': 1.0, 'his': 1.0}
Word element => {'baby': 1.0, 'new': 1.0, 'soft': 1.0, 'how': 1.0, 'they': 1.0, 'our': 1.0, 'are': 2.0, 'these': 1.0, 'the': 1.0, 'belive': 1.0, 'for': 1.0, 'to': 2.0, 'and': 1.0, 'big': 1.0, 'very': 1.0, 'as': 1.0, 'cannot': 2.0, 'also': 1.0, 'swaddle': 1.0, 'i': 2.0, 'touch': 1.0, 'girtl': 1.0, 'wait': 1.0, 'use': 1.0, 'them': 1.0, 'a': 1.0}
Word element => {'wash': 1.0, 'their': 1.0, 'after': 1.0, 'hold': 1.0, 'the': 1.0, 'are': 1.0, 'they': 1.0, 'really': 1.0, 'big': 1.0, 'too': 1.0, 'stretch': 1.0, 'shape': 1.0, 'super': 1.0, 'id': 1.0, 'again': 1.0, 'buy': 1.0, 'soft': 1.0, 'if': 1.0, 'them': 1.0, 'i': 1.0, 'and': 3.0, 'need': 1.0}
Word element => {'of': 1.0, 'soft': 1.0, 'made': 1.0, 'are': 1.0, 'so': 1.0, 'am': 1.0, 'and': 1.0, 'sized': 1.0, 'receiving': 1.0, 'to': 1.0, 'they': 1.0, 'generously': 1.0, 'love': 1.0, 'buy': 1.0, 'i': 3.0, 'blankets': 1.0, 'prefer': 1.0, 'going': 1.0, 'over': 1.0, 'flannel': 1.0, 'more': 1.0, 'the': 1.0, 'nicely': 1.0, 'these': 3.0, 'ones': 1.0, 'a': 1.0}
Word element => {'decorated': 1.0, 'is': 1.0, 'and': 1.0, 'cakes': 1.0, 'reads': 1.0, 'blanket': 1.0, 'cute': 2.0, 'not': 1.0, 'very': 1.0, 'big': 1.0, 'as': 2.0, 'some': 1.0, 'blankets': 2.0, 'two': 1.0, 'one': 1.0, 'for': 3.0, 'baby': 1.0, 'price': 1.0, 'size': 1.0, 'design': 1.0, 'other': 2.0, 'i': 1.0, 'decent': 1.0, 'use': 1.0, 'but': 1.0, 'swaddle': 1.0, 'warmer': 1.0, 'months': 1.0, 'are': 1.0, 'the': 1.0, 'great': 2.0, 'lightweight': 1.0, 'this': 1.0, 'with': 2.0, 'desserts': 1.0, 'a': 1.0}
Word element => {'baby': 1.0, 'month': 1.0, '2': 1.0, 'loved': 1.0, 'and': 1.0, 'these': 1.0, 'they': 1.0, 'my': 1.0, 'are': 1.0, 'size': 1.0, 'so': 1.0, 'was': 1.0, 'soft': 1.0, 'perfect': 1.0, 'for': 1.0}
Word element => {'gifts': 1.0, 'of': 1.0, 'for': 2.0, 'baby': 2.0, 'little': 1.0, 'my': 1.0, 'are': 1.0, 'blankets': 1.0, 'weather': 1.0, 'more': 1.0, 'these': 2.0, 'purchased': 1.0, 'to': 2.0, 'addition': 1.0, 'being': 1.0, 'as': 1.0, 'adorable': 1.0, 'they': 1.0, 'boy': 1.0, 'buy': 1.0, 'i': 2.0, 'in': 1.0, 'perfect': 1.0, 'warm': 1.0, 'shower': 1.0, 'intend': 1.0}
Word element => {'nice': 1.0, 'for': 1.0, 'price': 1.0, 'after': 1.0, 'ignored': 1.0, 'other': 1.0, 'recommend': 1.0, 'good': 1.0, 'really': 1.0, 'the': 1.0, 'were': 1.0, 'love': 1.0, 'set': 1.0, 'best': 1.0, 'baby': 1.0, 'ever': 1.0, 'i': 1.0, 'highly': 1.0, 'blankets': 2.0, 'very': 1.0, 'them': 2.0, 'much': 1.0}
Word element => {'size': 1.0, 'warm': 1.0, 'weather': 1.0, 'very': 2.0, 'though': 1.0, 'for': 1.0, 'be': 1.0, 'it': 2.0, 'i': 1.0, 'thought': 1.0, 't': 1.0, 'what': 1.0, 'wasn': 1.0, 'the': 2.0, 'is': 2.0, 'light': 1.0, 'must': 1.0, 'fabric': 1.0, 'good': 1.0, 'really': 1.0}
Word element => {'u': 1.0, 'is': 1.0, 'price': 1.0, 'for': 1.0, 'softness': 1.0, 'this': 1.0, 'they': 1.0, 'expect': 1.0, 'im': 1.0, 'ones': 1.0, 'ok': 1.0, 'can': 1.0, 'sure': 1.0, 'are': 2.0, 'the': 3.0, 'more': 3.0, 'expencive': 1.0, 'softer': 1.0, 'but': 1.0, 'than': 2.0}
Word element => {'for': 1.0, 'like': 1.0, 'not': 1.0, 'real': 1.0, 'how': 1.0, 'just': 1.0, 'because': 1.0, 'see': 1.0, 'online': 1.0, 'long': 1.0, 'except': 1.0, 'its': 1.0, 'stitched': 1.0, 'these': 1.0, 'deal': 1.0, 'wrap': 1.0, 'the': 4.0, 'are': 4.0, 'thou': 1.0, 'i': 5.0, 'thinking': 1.0, 'got': 2.0, 'after': 1.0, 'and': 4.0, 'to': 1.0, 'any': 1.0, 'reason': 1.0, 'never': 1.0, 'clothings': 1.0, 'want': 1.0, 'is': 1.0, 'baby': 1.0, 'them': 1.0, 'good': 2.0, 'clean': 1.0, 'they': 3.0, 'big': 3.0, 'a': 2.0, 'we': 1.0, 'but': 1.0, 'blankets': 1.0, 'can': 1.0, 'this': 2.0, 'soft': 2.0, 'stitch': 1.0, 'bought': 1.0, 'one': 1.0, 'gone': 1.0, 'of': 1.0, 'in': 1.0, 'little': 1.0, 'area': 1.0, 'that': 1.0}
Word element => {'baby': 1.0, 'swaddling': 1.0, 'wonderful': 1.0, 'material': 1.0, 'all': 1.0, 'of': 1.0, 'these': 1.0, 'great': 2.0, 'size': 1.0, 'packaging': 1.0, 'blankets': 1.0, 'and': 2.0, 'the': 1.0, 'are': 1.0, 'for': 1.0, 'most': 1.0, 'in': 2.0, 'soft': 1.0, 'price': 1.0, 'quantity': 1.0, 'is': 1.0, '2': 1.0}
Word element => {'little': 1.0, 'are': 1.0, 'they': 1.0, 'her': 1.0, 'keeping': 1.0, 'better': 1.0, 'bigger': 1.0, 'she': 1.0, 'a': 1.0, 'since': 1.0, 'fleece': 1.0, 'that': 1.0, 'daughter': 1.0, 'comfortable': 1.0, 'for': 3.0, 'my': 1.0, 'more': 1.0, 'figured': 1.0, 'the': 3.0, 'blankets': 3.0, 'and': 1.0, 'also': 1.0, 'in': 2.0, 'softer': 1.0, 'cotton': 3.0, 'than': 2.0, 'looking': 1.0, 'was': 1.0, 'i': 2.0, 'receiving': 2.0, 'here': 1.0, 'will': 3.0, 'be': 3.0, 'much': 1.0, 'born': 1.0, 'all': 1.0, 'june': 2.0, 'regular': 1.0, 'is': 1.0, 'grand': 1.0, 'cooler': 1.0}
Word element => {'perfect': 1.0}
Word element => {'price': 1.0, 'up': 1.0, 'doctoring': 1.0, 'considering': 1.0, 'additional': 1.0, 'am': 1.0, 'preschool': 1.0, 'back': 1.0, 'apron': 1.0, 'i': 3.0, 'weak': 1.0, 'for': 2.0, 'design': 1.0, 't': 1.0, 'the': 3.0, 'functional': 1.0, 'as': 1.0, 'and': 3.0, 'purchased': 1.0, 'is': 2.0, 'on': 1.0, 'cute': 1.0, 'to': 1.0, 'wipe': 1.0, 'have': 1.0, 'able': 1.0, 'small': 1.0, 'ie': 1.0, 'however': 1.0, 'shouldn': 1.0, 'with': 1.0, 'it': 1.0, 'this': 2.0, 'velcro': 2.0, 'craft': 1.0, 'a': 1.0, 'closure': 1.0}
Word element => {'probably': 1.0, 'recommend': 1.0, '3': 1.0, 'would': 1.0, 'comes': 1.0, '8': 1.0, 'snapped': 2.0, 'half': 1.0, '4': 1.0, 'day': 1.0, 'smaller': 3.0, 'use': 1.0, 'insert': 3.0, 'over': 1.0, 'are': 1.0, 'diapers': 1.0, 'first': 1.0, 'come': 1.0, 'pocket': 1.0, 'design': 1.0, 'c': 1.0, 'inside': 1.0, 'thighs': 1.0, 'size': 1.0, 'muscular': 1.0, 'cannot': 1.0, 'very': 2.0, 'waist': 1.0, 'no': 1.0, 'practically': 1.0, 'two': 1.0, 'skinny': 1.0, 'enough': 1.0, 'snapping': 1.0, 'error': 1.0, 'user': 1.0, 'couple': 1.0, 'could': 1.0, 'there': 1.0, 'out': 1.0, 'or': 1.0, 'flaw': 1.0, 'sags': 1.0, 'and': 3.0, 'redoing': 1.0, 'last': 1.0, 'tab': 1.0, 'am': 1.0, 'kid': 2.0, 'stringbean': 1.0, 'what': 1.0, 'when': 2.0, 'long': 2.0, 'on': 4.0, 'noticed': 1.0, 'also': 2.0, 'prefold': 1.0, 'basic': 1.0, 'with': 4.0, 'go': 1.0, 'touches': 1.0, 'constantly': 1.0, 'so': 3.0, 'blueberry': 4.0, 'product': 1.0, 'folded': 1.0, 'dipes': 1.0, 'mentioned': 1.0, 'snaps': 2.0, 'from': 1.0, 'purpose': 1.0, 'relish': 1.0, 'because': 1.0, 'that': 8.0, 'into': 1.0, 'rise': 1.0, 'velor': 2.0, 'soft': 3.0, 'this': 7.0, 'has': 2.0, 'for': 5.0, 'fabric': 3.0, 'thing': 1.0, 'same': 1.0, 'want': 1.0, 'course': 1.0, 'if': 1.0, 'maybe': 1.0, 's': 8.0, 't': 1.0, 'm': 1.0, 'in': 4.0, 'you': 2.0, 'pees': 1.0, 'good': 1.0, 'side': 1.0, 'which': 1.0, 'up': 1.0, 'change': 1.0, 'typically': 1.0, 'bamboo': 4.0, 'but': 2.0, 'print': 1.0, 'sopping': 1.0, 'does': 3.0, 'wick': 2.0, 'one': 2.0, 'i': 10.0, 'folds': 1.0, 'extraordinarily': 1.0, 'baby': 6.0, 'becomes': 2.0, 'mess': 1.0, 'uses': 1.0, 'against': 3.0, 'to': 2.0, 'apparent': 1.0, 'thinking': 1.0, 'title': 1.0, 'deluxe': 2.0, 'purchased': 1.0, 'have': 1.0, 'misunderstand': 1.0, 'just': 3.0, 'description': 1.0, 'modern': 1.0, 'snug': 1.0, 'is': 9.0, 'really': 2.0, 'amazon': 1.0, 'wonderful': 1.0, 'not': 5.0, 'skin': 3.0, 'do': 1.0, 'bum': 1.0, 'it': 15.0, 'wears': 1.0, 'keep': 1.0, 'slips': 1.0, 'ultra': 1.0, 'touching': 1.0, 'then': 1.0, 'sounds': 1.0, 'right': 1.0, 'b': 1.0, 'until': 2.0, 'be': 3.0, 'stays': 1.0, 'during': 1.0, 'part': 2.0, 'cold': 2.0, 'please': 1.0, 'cotton': 3.0, 'don': 1.0, 'draw': 1.0, 'a': 10.0, 'moisture': 4.0, 'cloth': 1.0, 'microterry': 2.0, 'away': 2.0, 'inserts': 2.0, 'quickly': 1.0, 'reasons': 1.0, 'me': 1.0, 'my': 6.0, 'smallest': 1.0, 'newbie': 1.0, 'reach': 1.0, 'particular': 1.0, 'inner': 1.0, 'way': 1.0, 'cow': 1.0, 'the': 26.0, 'of': 5.0, 've': 1.0, 'down': 2.0, 'defeats': 1.0, 'as': 1.0, 'diaper': 5.0, 'wanted': 1.0, 'he': 2.0, 'stash': 1.0, 'layers': 3.0, 'sized': 1.0, 'gets': 1.0, 'doubled': 1.0, 'wet': 3.0, 'd': 1.0}
Word element => {'this': 1.0, 'grow': 1.0, 'to': 1.0, 'of': 1.0, 'my': 1.0, 'in': 1.0, 'diaper': 2.0, 'so': 1.0, 'leaks': 1.0, 'soft': 1.0, 'room': 1.0, 'with': 1.0, 'heavy': 1.0, 'it': 1.0, 'love': 1.0, 'great': 1.0, 'zero': 1.0, 'wetter': 1.0, 'lots': 1.0}
Word element => {'versatile': 1.0, 'says': 1.0, 'higher': 1.0, 'it': 2.0, 'is': 2.0, 't': 1.0, 'the': 2.0, 'for': 1.0, 'product': 1.0, 'to': 1.0, 'i': 2.0, 'conviniently': 1.0, 'price': 1.0, 'soft': 1.0, 'comparable': 1.0, 'can': 1.0, 'priced': 1.0, 'swaddle': 1.0, 'like': 1.0, 'huge': 1.0, 'and': 1.0, 'ok': 1.0, 'very': 1.0, 'that': 1.0}
Word element => {'highly': 1.0, 'which': 1.0, 'angle': 1.0, 'has': 1.0, 'problem': 1.0, 'recommend': 1.0, 'expecting': 1.0, 'bed': 1.0, 'with': 1.0, 'cuddle': 1.0, 'bag': 1.0, 'diaper': 1.0, 'easy': 2.0, 'prepared': 1.0, 'always': 1.0, 'blanket': 1.0, 'are': 2.0, 'house': 1.0, 'her': 2.0, 'one': 1.0, 'sweet': 1.0, 'bedtime': 1.0, 'lovey': 1.0, 'when': 1.0, 'gets': 1.0, 'soft': 1.0, 'perfect': 1.0, 'choose': 1.0, 'having': 1.0, 'so': 1.0, 'needs': 1.0, 'these': 1.0, 'knew': 1.0, 'only': 1.0, 'nursery': 1.0, 'nap': 1.0, 'keeps': 1.0, 'saw': 1.0, 'woodland': 1.0, 'have': 1.0, 'been': 1.0, 'owls': 1.0, 'be': 2.0, 'old': 1.0, 'i': 1.0, 'in': 2.0, 'brown': 1.0, 'of': 1.0, 'washed': 1.0, 'themed': 1.0, 'for': 3.0, 'love': 1.0, 'mr': 1.0, 'blankets': 1.0, '2': 2.0, 'suitcase': 1.0, 'the': 2.0, 'now': 2.0, 'dear': 1.0, 'grandma': 1.0, 'forest': 1.0, 'they': 1.0, 'as': 2.0, 'to': 4.0, 'our': 3.0, 'nearly': 1.0, 'super': 1.0, 'would': 1.0, 'new': 1.0, 'them': 1.0, 'baby': 2.0, 'tuck': 1.0, 'too': 1.0, 'soon': 1.0, 'and': 2.0, 'girl': 1.0, 'year': 1.0, 'his': 2.0, 'we': 6.0, 'a': 3.0, 'spare': 1.0, 'owl': 1.0, 'or': 2.0, 'misplaced': 1.0, 'at': 2.0}
Word element => {'product': 1.0, 'done': 1.0, 'go': 1.0, 'will': 1.0, 'smells': 1.0, 'mommy': 1.0, 'again': 1.0, 'clean': 1.0, 'washed': 1.0, 'blankies': 1.0, 'their': 1.0, 'kids': 1.0, 'smell': 1.0, 'upset': 1.0, 'picked': 1.0, 'getting': 1.0, 'stopping': 1.0, 'up': 1.0, 'laundry': 1.0, 'throw': 1.0, 'just': 1.0, 'dirty': 1.0, 'gets': 1.0, 'best': 1.0, 'from': 2.0, 'now': 1.0, 'nine': 1.0, 'part': 1.0, 'cuddling': 1.0, 'while': 1.0, 'head': 1.0, 'on': 1.0, 'chew': 1.0, 'able': 1.0, 'people': 1.0, 'holding': 1.0, 'house': 1.0, 'never': 1.0, 'with': 1.0, 'by': 2.0, 'home': 2.0, 'cottage': 1.0, 'one': 7.0, 'more': 1.0, 'be': 2.0, 'blanket': 2.0, 'gifts': 1.0, 'inseparable': 1.0, 'or': 1.0, 'animal': 1.0, 'stuffed': 1.0, 'nervous': 2.0, 'immediately': 2.0, 'upsets': 1.0, 'perfect': 1.0, 'bed': 1.0, 'in': 2.0, 'something': 1.0, 'would': 2.0, 'time': 1.0, 'new': 2.0, 'left': 1.0, 'wanting': 1.0, 'months': 2.0, 'light': 2.0, 'designed': 1.0, 'three': 2.0, 'was': 2.0, 'adores': 1.0, 'leave': 2.0, 'as': 2.0, 'back': 1.0, 'sleep': 1.0, 'all': 4.0, 'monkeys': 2.0, 'look': 1.0, 'at': 5.0, 'is': 4.0, 'but': 2.0, 'shower': 2.0, 'imagine': 1.0, 'a': 10.0, 'odd': 1.0, 'he': 4.0, 'also': 1.0, 'us': 1.0, 'cuddle': 1.0, 'received': 2.0, 'washing': 1.0, 'how': 1.0, 'only': 1.0, 'few': 1.0, 'this': 3.0, 'minute': 1.0, 'without': 2.0, 'soft': 1.0, 'have': 3.0, 't': 2.0, 'spare': 1.0, 'actually': 1.0, 'for': 4.0, 'old': 1.0, 'brand': 1.0, 'instead': 1.0, 'took': 1.0, 'through': 1.0, 'well': 2.0, 'i': 8.0, 'proper': 1.0, 'son': 2.0, 'still': 4.0, 'thought': 1.0, 'it': 7.0, 'him': 4.0, '3': 1.0, 'monkey': 1.0, 'there': 1.0, 'pair': 1.0, 'give': 3.0, 'been': 1.0, 'everywhere': 1.0, 'posed': 1.0, 'that': 2.0, 'and': 8.0, 'godsend': 1.0, 'reasons': 1.0, 'me': 1.0, 'my': 3.0, 'of': 3.0, 'sufficed': 1.0, 'the': 11.0, 'safety': 1.0, 'can': 1.0, 'so': 2.0, 'to': 9.0, 'pulled': 1.0, 'out': 1.0, 'these': 1.0, 'we': 3.0, 'draped': 1.0, 'over': 1.0, 'his': 2.0, 'danger': 1.0, 'about': 1.0, 'no': 1.0, 'they': 2.0, 'come': 1.0, 're': 1.0, 'after': 1.0, 'baby': 1.0, 'extraordinarily': 1.0, 'many': 3.0, '2': 2.0, 'thing': 1.0, 'machine': 1.0, 'what': 2.0, 'when': 3.0, 'are': 1.0, 'first': 2.0, 'trips': 1.0, 'has': 3.0, 'them': 2.0, 'made': 2.0, 'which': 1.0, 'gift': 1.0, 'same': 1.0, 'sometimes': 1.0, 'face': 1.0, 'couldn': 1.0}
Word element => {'recommend': 1.0, 'highly': 1.0, 'if': 1.0, 'spare': 1.0, 'even': 1.0, 'or': 1.0, 'gift': 1.0, 'lost': 1.0, 'perfect': 1.0, 'were': 1.0, 'they': 1.0, 'good': 1.0, 'different': 1.0, 'many': 1.0, 'among': 1.0, 'choose': 1.0, 'can': 1.0, 'cute': 1.0, 'in': 1.0, 'child': 1.0, 'packaged': 1.0, 'one': 3.0, 'fuzzy': 1.0, 'styles': 1.0, 'along': 1.0, 'warm': 1.0, 'enjoy': 1.0, 'box': 1.0, 'babies': 1.0, 'that': 2.0, 'each': 1.0, 'would': 1.0, 'something': 2.0, 'them': 1.0, 'the': 2.0, 'hit': 1.0, 'these': 1.0, 'family': 1.0, 'my': 1.0, 'just': 1.0, 'for': 5.0, 'recently': 1.0, 'wanted': 1.0, 'as': 1.0, 'to': 2.0, 'christmas': 1.0, 'colors': 1.0, 'blankie': 2.0, 'with': 2.0, 'idea': 1.0, 'you': 2.0, 'twins': 2.0, 'comforting': 1.0, 'niece': 1.0, 'i': 2.0, 'be': 1.0, 'price': 1.0, 'both': 1.0, 'head': 1.0, 'came': 1.0, 'and': 3.0, 'across': 1.0, 'top': 1.0, 'is': 1.0, 'cuddle': 1.0, 'single': 1.0, 'angel': 1.0, 'little': 1.0, 'set': 1.0, 'could': 1.0, 'a': 4.0, 'an': 1.0, 'had': 1.0, 'dear': 1.0, 'animal': 2.0, 'adorable': 1.0, 'at': 1.0, 'get': 1.0, 'easy': 1.0, 'great': 1.0, 'twin': 1.0, 'bring': 1.0}
Word element => {'parents': 1.0, 'for': 1.0, 'without': 1.0, 'the': 2.0, 'own': 1.0, 'slept': 1.0, 'not': 1.0, 'settled': 1.0, 'fell': 1.0, 'hold': 1.0, 'like': 1.0, 'years': 1.0, 'down': 1.0, '34': 4.0, '8': 1.0, 'lamby': 1.0, 'her': 1.0, 'clean': 1.0, 'months': 1.0, 'few': 1.0, 'more': 1.0, 'noted': 1.0, '2': 1.0, 'identical': 1.0, 'but': 1.0, 'born': 1.0, 'come': 1.0, 'now': 1.0, 'to': 3.0, 'as': 1.0, 'least': 1.0, 'was': 4.0, 'gave': 1.0, 'when': 2.0, 'lamb': 1.0, 'is': 1.0, 'at': 1.0, 'ago': 1.0, 'we': 4.0, 'hole': 1.0, 'go': 1.0, 'all': 1.0, 'inconsolably': 1.0, 'received': 1.0, 'easily': 1.0, 'because': 1.0, 'clueless': 1.0, 'and': 6.0, 'old': 1.0, 'cloth': 2.0, 'indistinguishable': 1.0, 'were': 1.0, 'it': 2.0, 'thought': 1.0, 'had': 1.0, 'day': 1.0, 'extra': 1.0, 'started': 1.0, 'you': 1.0, 'night': 1.0, 'than': 1.0, 'relatively': 1.0, 'she': 4.0, 'baby': 1.0, 'every': 1.0, 'are': 2.0, 'have': 3.0, 'a': 5.0, 'small': 1.0, 'numerous': 1.0, 'burp': 2.0, 'should': 1.0, 'has': 2.0, 'demanding': 1.0, 'always': 1.0, 'original': 1.0, 'pink': 1.0, 'they': 1.0, 'since': 1.0, 'washed': 1.0, 'daughter': 1.0, 'dried': 1.0, 'lambies': 1.0, 'out': 1.0, 'each': 1.0, 'new': 2.0, 'time': 1.0, 'our': 3.0, 'sewn': 1.0, 'up': 1.0, 'otherwise': 1.0, 'from': 1.0, 'reviewers': 1.0, 'newer': 1.0, 'one': 3.0, 'crying': 1.0, 'ones': 1.0, 'these': 1.0, 'asleep': 1.0, 'gift': 1.0}
Word element => {'had': 1.0, 'wish': 1.0, 'just': 1.0, 'found': 1.0, 'years': 1.0, 'toy': 1.0, 'be': 1.0, 'case': 1.0, 'in': 1.0, 'multiples': 1.0, 'needed': 1.0, 'brother': 1.0, 'ago': 1.0, 'my': 1.0, 'house': 1.0, 'so': 1.0, 'they': 1.0, 'has': 1.0, 'two': 1.0, 'spare': 1.0, 'same': 1.0, 'that': 1.0, 'always': 1.0, 'of': 1.0, 'set': 1.0, '34': 4.0, 'this': 1.0, 'have': 1.0, 'these': 1.0, 't': 1.0, 'the': 3.0, '7': 1.0, 'autistic': 1.0, 'can': 1.0, 'i': 2.0, 'primary': 1.0, 'lovey': 1.0, 'you': 1.0, 's': 1.0, 'couldn': 1.0, 'and': 1.0, 'one': 1.0, 'whatever': 1.0, 'love': 1.0, 'for': 1.0, 'emergencies': 1.0, 'grandma': 1.0}
Word element => {'unstitched': 1.0, 'became': 1.0, 'homemade': 1.0, 'its': 1.0, 'hardware': 1.0, 'restoration': 1.0, 'great': 1.0, 'one': 2.0, 'bought': 1.0, 'us': 1.0, 'lovie': 1.0, 'were': 1.0, 'her': 2.0, 'used': 1.0, 'are': 1.0, 'gifts': 1.0, 'unlike': 1.0, 'day': 2.0, 'easter': 1.0, 'year': 1.0, 'and': 3.0, 'had': 1.0, 'ears': 1.0, 'care': 1.0, 'a': 1.0, 'bunny': 1.0, 'for': 5.0, 'given': 1.0, 'or': 1.0, 'lambie': 1.0, 'naptime': 1.0, 'bedtime': 1.0, 'my': 2.0, 'the': 5.0, 'these': 2.0, 'at': 2.0, 'still': 1.0, 'ducks': 1.0, 'every': 1.0, 'that': 2.0, 'basket': 1.0, 'lost': 1.0, 'this': 1.0, 'now': 1.0, 'older': 1.0, 'looks': 1.0, 'she': 1.0, 'it': 1.0, 'needs': 1.0, 'daughter': 2.0, 'hers': 1.0, 'home': 1.0, 'duck': 1.0, 'regular': 1.0, 'as': 1.0, 'to': 1.0, 'sleep': 1.0, 'has': 2.0, 'i': 1.0, '4': 1.0, '5': 1.0, 'best': 1.0, 'both': 2.0, 'years': 1.0}
Word element => {'happy': 1.0, 'would': 1.0, 'holding': 1.0, 'up': 1.0, 'wash': 1.0, 'items': 1.0, 'enough': 1.0, 'give': 1.0, 'pillow': 1.0, 'toddler': 1.0, 'have': 1.0, 'also': 1.0, 'size': 1.0, 'goes': 1.0, 'is': 2.0, 'sleeps': 1.0, 'always': 1.0, 'set': 1.0, 'additional': 1.0, 'far': 1.0, 'order': 1.0, 'didn': 1.0, 'now': 1.0, 'attached': 1.0, 'from': 1.0, 'very': 2.0, 'nap': 1.0, 'with': 5.0, 'giving': 1.0, 'and': 5.0, 'daughter': 1.0, 'when': 3.0, 'number': 1.0, 'them': 1.0, 'baby': 1.0, 'started': 1.0, 'just': 1.0, 'my': 2.0, 'of': 1.0, 'second': 1.0, 'products': 1.0, 'these': 3.0, 'the': 4.0, 'so': 2.0, 'time': 1.0, 'well': 1.0, 'napping': 1.0, 'has': 2.0, 'bought': 1.0, 'one': 3.0, 'old': 1.0, 'realized': 1.0, 'young': 1.0, 'at': 1.0, 'recommend': 1.0, 'daycare': 1.0, 'was': 2.0, 'as': 1.0, 'to': 6.0, 'pregnant': 1.0, 'her': 5.0, 'fabric': 1.0, 't': 1.0, 'a': 1.0, 'we': 1.0, 'rubs': 1.0, 'age': 1.0, 'snuggles': 1.0, 'it': 6.0, 'she': 6.0, 'security': 1.0, 'that': 1.0, 'loves': 2.0, 'twin': 1.0, '1': 1.0, 'feel': 1.0, 'full': 1.0, 'hesitate': 1.0, 'this': 1.0, 'soft': 1.0, 'saved': 1.0, 'i': 6.0, 'become': 1.0, 'face': 1.0, 'hugs': 1.0, 'on': 1.0, 'are': 1.0, 'blanket': 2.0}
Word element => {'goes': 1.0, 'blanky': 1.0, '34': 4.0, 'i': 1.0, 's': 1.0, 'super': 1.0, 'baby': 1.0, 'my': 1.0, 'and': 1.0, 'must': 1.0, 'as': 1.0, 'soft': 1.0, 'favorite': 1.0, 'would': 1.0, 'missing': 1.0, 'one': 1.0, 'for': 1.0, 'love': 1.0, 'to': 1.0, 'pack': 1.0, 'give': 1.0, 'this': 1.0, 'a': 2.0, 'cute': 1.0, 'gift': 1.0, 'when': 1.0, 'too': 1.0, '2': 1.0, 'is': 1.0}
Word element => {'them': 1.0, 'no': 1.0, 'soft': 1.0, 'all': 1.0, 'exactly': 1.0, 'on': 1.0, 'with': 1.0, 'these': 1.0, 'stuff': 1.0, 'kids': 1.0, 'what': 1.0, 'or': 1.0, 'ribbons': 1.0, 'i': 1.0, 'up': 1.0, 'wanted': 1.0, 'scratchy': 1.0, 'love': 1.0, 'my': 1.0, 'snuggling': 1.0}
Word element => {'regarda': 1.0, 'low': 1.0, 'a': 1.0, 'good': 1.0, 'thanks': 1.0, 'its': 1.0, 'my': 2.0, '34': 2.0, 'adora': 1.0, 'helthy': 1.0, 'this': 1.0, 'product': 1.0, 'and': 1.0, 'very': 1.0, 'looking': 1.0, 'soft': 1.0, 'wife': 1.0, 'for': 2.0, 'twin': 1.0, 'cost': 1.0, 'nice': 1.0, 'babies': 1.0}
Word element => {'spare': 1.0, 'need': 1.0, 'know': 1.0, 'never': 1.0, 'than': 1.0, 'to': 1.0, 'please': 1.0, 'buyers': 1.0, 'll': 1.0, 'product': 1.0, 'when': 1.0, 'sweet': 1.0, 'soft': 1.0, 'loves': 1.0, 'in': 1.0, 'clean': 1.0, 'washable': 1.0, 'urdu': 1.0, 'could': 1.0, 'one': 1.0, 'for': 2.0, 'have': 1.0, 'ooloo': 2.0, 'thank': 1.0, 'they': 1.0, 'ask': 1.0, 'baby': 1.0, 'such': 1.0, 'more': 2.0, 'and': 1.0, 'my': 1.0, 're': 1.0, 'a': 2.0, 'always': 1.0, '34': 2.0, 'her': 1.0, 'what': 1.0, 'you': 4.0, 'remember': 1.0, 'providing': 1.0}
Word element => {'shared': 1.0, 'anyone': 1.0, 'be': 1.0, 'they': 1.0, 'duo': 1.0, 'cute': 2.0, 'gift': 2.0, 'for': 1.0, 'meant': 1.0, 'love': 1.0, 'come': 1.0, 'with': 1.0, 'girls': 1.0, 'expecting': 2.0, 'last': 1.0, 'itwin': 1.0, 'along': 1.0, 'are': 1.0, 'hippos': 1.0, 'the': 3.0, 't': 1.0, 'we': 1.0, 'a': 3.0, 'week': 1.0, 'an': 1.0, 'and': 2.0, 'to': 1.0, 'as': 1.0, 'adorable': 1.0, 'must': 1.0, 'lines': 1.0, 'received': 1.0, 'm': 1.0, 'somethings': 1.0, 'softer': 1.0, 'saying': 1.0, 'than': 1.0, 'perfect': 1.0, 'this': 1.0, 'soft': 1.0, 'cozy': 1.0, 'simply': 1.0, 'so': 1.0, 'box': 1.0, 'of': 1.0, 'twins': 1.0, 'when': 1.0, 'you': 1.0, 're': 1.0, 'twin': 1.0, 'purple': 1.0, 'i': 1.0, 'sharing': 1.0, 'but': 1.0, 'aren': 1.0, 'is': 1.0}
Word element => {'future': 1.0, 'be': 1.0, 'washes': 1.0, 'so': 1.0, 'size': 1.0, 'security': 1.0, 'comforted': 1.0, 'her': 2.0, 'girl': 1.0, 'old': 1.0, 'touch': 1.0, 'becomes': 1.0, 'i': 1.0, 'bought': 1.0, 'buying': 1.0, 'pink': 1.0, 'stays': 1.0, 'big': 1.0, 'our': 1.0, 'products': 1.0, 'hit': 1.0, 'are': 1.0, 'hands': 1.0, 'the': 3.0, 'dear': 2.0, 'she': 2.0, 'month': 1.0, 'it': 5.0, 'lamb': 1.0, 'for': 1.0, 'love': 1.0, 'far': 1.0, 'more': 1.0, 'is': 3.0, 'we': 4.0, 'a': 2.0, 'little': 1.0, 'angel': 2.0, 'upset': 1.0, '3': 1.0, 'put': 1.0, 'hoping': 1.0, 'in': 2.0, 'will': 1.0, 'item': 1.0, 'seems': 1.0, 'soft': 1.0, 'perfect': 1.0, 'when': 1.0, 'by': 1.0, 'lovey': 1.0, 'and': 3.0, 'too': 1.0, 'sleepy': 1.0, 'or': 1.0, 'how': 1.0}
Word element => {'shower': 1.0, 'them': 1.0, 'two': 1.0, 'for': 1.0, 'variety': 1.0, 'of': 1.0, 'love': 1.0, 'great': 2.0, 'snuggly': 1.0, 'soft': 1.0, 'characters': 1.0, 'priced': 1.0, 'gift': 1.0, 'colors': 1.0, 'very': 1.0, 'and': 3.0, 'nicely': 1.0}
Word element => {'her': 1.0, 'soft': 1.0, 'are': 1.0, 'very': 1.0, 'and': 2.0, 'size': 1.0, 'cuddle': 1.0, 'this': 1.0, 'is': 1.0, 'a': 4.0, '1': 1.0, 'buddy': 1.0, 'perfect': 2.0, 'old': 1.0, 'gift': 1.0, 'they': 1.0, 'our': 1.0, 'daughter': 1.0, 'for': 2.0, 'year': 1.0, 'spare': 1.0, 'grand': 1.0}
Word element => {'dear': 1.0, 'angel': 1.0, 'clothes': 1.0, 'options': 1.0, 'soft': 1.0, 'so': 2.0, 'are': 2.0, 'and': 1.0, 'well': 1.0, 'one': 1.0, 'i': 1.0, 'my': 1.0, 'to': 1.0, 'ups': 1.0, 'sleep': 1.0, 'back': 1.0, 'as': 1.0, 'have': 2.0, 'come': 1.0, 'this': 1.0, 'daughters': 1.0, 'we': 2.0, 'the': 1.0, 'these': 1.0, 'they': 2.0, 'cute': 1.0, 'ordered': 1.0, 'many': 1.0, 'is': 1.0, 'too': 1.0, 'by': 1.0, 'lovey': 1.0, 'awesome': 1.0, 'that': 2.0, 'she': 1.0, 'without': 1.0, 'in': 1.0, 'cannot': 1.0, 'wash': 1.0}
Word element => {'recommend': 1.0, 'highly': 1.0, 'd': 1.0, 'gift': 1.0, 'shape': 1.0, 'great': 2.0, 'in': 1.0, 'year': 1.0, 'second': 1.0, 'first': 1.0, 'pink': 1.0, 'with': 2.0, 'one': 1.0, 'love': 1.0, 'for': 2.0, 'i': 3.0, 'makes': 1.0, 'old': 1.0, 'this': 1.0, 'soft': 1.0, '3': 1.0, 'my': 1.0, 'ones': 2.0, 'these': 2.0, 'a': 1.0, 's': 1.0, 't': 1.0, 'loves': 1.0, 'security': 1.0, 'easy': 1.0, 'it': 2.0, 'she': 1.0, 'of': 1.0, 'poodles': 1.0, 'still': 1.0, 'and': 3.0, 'blankets': 1.0, 'line': 1.0, 'daughter': 1.0, 'giraffe': 1.0, 'had': 1.0, 'as': 1.0, 'to': 1.0, 'the': 4.0, 'asleep': 1.0, 'baby': 1.0, 'hold': 1.0, 'stay': 1.0, 'cuddle': 1.0, 'fall': 1.0, 'out': 1.0, 'they': 1.0, 'wash': 1.0, 'won': 1.0, 'well': 2.0, 'even': 1.0, 'are': 1.0}
Word element => {'a': 1.0, 'do': 1.0, 'bought': 1.0, '2': 1.0, 'so': 1.0, 'gifts': 1.0, 'got': 1.0, 'what': 1.0, 'cute': 1.0, 'as': 1.0, 'and': 2.0, 'lovies': 1.0, 'rotation': 1.0, 'more': 1.0, 'my': 1.0, 'little': 1.0, 'baby': 1.0, 'perfect': 1.0, 'i': 2.0, 'could': 1.0, 'for': 1.0, 'two': 1.0, 'girl': 1.0}
Word element => {'time': 1.0, 'on': 1.0, 'adorable': 1.0, 'have': 1.0, 'these': 1.0, 'a': 1.0, 'blanket': 1.0, 'i': 1.0, 'n': 2.0, 'love': 1.0, 'one': 1.0, 'cute': 1.0, 'arrived': 1.0, 'soother': 1.0, 'good': 1.0, 'to': 1.0, 'stuffed': 1.0, 'perfect': 1.0, 'in': 1.0, 'size': 1.0, 'animal': 1.0, 'too': 2.0, 'giraffe': 1.0, 'is': 1.0, 'quality': 1.0}
Word element => {'hold': 1.0, 'though': 1.0, 'up': 1.0, 'wash': 1.0, 'him': 1.0, 'one': 1.0, 'since': 1.0, 'get': 1.0, 'do': 1.0, 'fast': 1.0, 'white': 1.0, 'to': 1.0, 'now': 1.0, 'everywhere': 1.0, 'constantly': 1.0, 'on': 1.0, 'guy': 1.0, 'is': 1.0, 'sleeps': 1.0, 'are': 1.0, 'and': 4.0, 'five': 1.0, 'carrying': 1.0, 'these': 2.0, 'the': 1.0, 'them': 4.0, 'loves': 2.0, 'into': 1.0, 'wonderful': 2.0, 'of': 1.0, 'gift': 1.0, 'my': 3.0, 'with': 2.0, 'he': 2.0, 'son': 2.0, 'dirty': 1.0, 'they': 3.0, 'cradle': 1.0, 'from': 1.0, 'while': 1.0, 'being': 1.0, 'takes': 1.0, 'teething': 1.0, 'were': 1.0, 'well': 1.0, 'has': 1.0, 'comfort': 1.0, 'wherever': 1.0, 'little': 1.0, 'transitioning': 1.0, 'crib': 1.0, 'easily': 1.0, 'when': 1.0, 'his': 1.0, 'offer': 1.0, 'goes': 1.0, 'a': 2.0, 'we': 1.0, 'have': 1.0, 'about': 1.0, 'security': 1.0, 'several': 1.0, 'chew': 1.0, 'because': 1.0}
Word element => {'would': 1.0, 'case': 1.0, 'in': 1.0, 'spare': 1.0, 'a': 1.0, 'one': 1.0, 'i': 1.0, 'very': 1.0, 'recommend': 1.0, 'is': 3.0, 'this': 1.0, 'product': 1.0, 'looks': 1.0, 'cute': 1.0, 'nice': 1.0, 'again': 1.0, 'buy': 1.0, 'dirty': 1.0, 'that': 1.0, 'there': 1.0}
Word element => {'looking': 1.0, 'loves': 1.0, 'already': 1.0, 'she': 1.0, 'but': 1.0, 'on': 1.0, 'months': 1.0, 'girl': 1.0, 'some': 1.0, 'at': 1.0, 'two': 1.0, 'of': 1.0, 'package': 1.0, 'ears': 1.0, 'in': 1.0, 'they': 1.0, 'chewing': 1.0, 'are': 1.0, '2': 1.0, 'these': 1.0, 'the': 3.0, 'my': 1.0, 'a': 1.0, 'that': 1.0, 'love': 1.0, 'and': 2.0, 'soft': 1.0, 'bunny': 2.0, 'it': 1.0, 'only': 1.0, 'come': 1.0, 'with': 1.0, 'floppy': 1.0, 'is': 2.0, 'very': 1.0, 'adorable': 1.0, 'little': 1.0}
Word element => {'added': 1.0, 'on': 1.0, 'suck': 1.0, 'loves': 1.0, 'that': 1.0, 'tags': 1.0, 'three': 1.0, 'well': 1.0, 'has': 1.0, 'thumb': 1.0, 'sucking': 1.0, 'shut': 1.0, 'instantly': 1.0, 'was': 1.0, 'as': 1.0, 'to': 2.0, 'when': 1.0, 'baby': 2.0, 'dear': 1.0, 'the': 1.0, 'my': 1.0, 'start': 1.0, 'associates': 1.0, 'nap': 1.0, 'about': 1.0, 'thing': 1.0, 'wide': 1.0, 'in': 1.0, 'introduced': 1.0, 'awake': 1.0, 'old': 1.0, 'i': 1.0, 'with': 5.0, 'blankie': 1.0, 'raffe': 1.0, 'only': 1.0, 'cuddle': 1.0, 'is': 2.0, 'little': 1.0, 'angel': 1.0, '6': 1.0, 'of': 1.0, 'she': 3.0, 'it': 5.0, 'month': 1.0, 'love': 1.0, '34': 2.0, 'absolutely': 1.0, 'her': 4.0, 'months': 1.0, 'eyes': 1.0, 'this': 1.0, 'soft': 1.0, 'play': 1.0, 'and': 6.0, 'breathable': 1.0, 'after': 1.0, 'we': 1.0, 'a': 1.0, 'week': 1.0, 'bonus': 1.0, 'sleeping': 1.0, 'bedtime': 1.0, 'can': 1.0, 'give': 1.0, '8': 1.0, 'll': 1.0}
Word element => {'two': 1.0, 'how': 1.0, 'like': 1.0, 'backups': 1.0, 'nice': 1.0, 'you': 1.0, 's': 1.0, 'few': 1.0, 'quite': 1.0, 'through': 1.0, 'gone': 1.0, 'pack': 1.0, 'have': 2.0, 'we': 1.0, 'she': 3.0, 'baby': 1.0, 'sleeps': 1.0, 'every': 1.0, 'them': 1.0, 'a': 2.0, 'since': 1.0, 'and': 2.0, 'i': 1.0, 'night': 1.0, 'loveys': 1.0, 'her': 1.0, 'gets': 1.0, 'daughter': 1.0, 'has': 1.0, 'my': 1.0, 'is': 1.0, 'to': 2.0, 'was': 1.0, 'had': 1.0, 'now': 1.0, 'this': 1.0, 'it': 1.0, 'with': 1.0, '4': 1.0, 'needless': 1.0, 'say': 1.0}
Word element => {'it': 1.0, 'recommend': 1.0, 'wouldnt': 1.0, 'i': 1.0, 'interested': 1.0, 'child': 1.0, 'soft': 1.0, 'although': 1.0, 'this': 1.0, 'item': 1.0, 'is': 1.0, 'my': 1.0, 'cheap': 1.0, 'wasnt': 1.0, 'quite': 1.0, 'get': 1.0, 'expensive': 1.0, 'for': 1.0, 'you': 1.0, 'what': 1.0, 'looks': 1.0}
Word element => {'still': 1.0, 'why': 1.0, 'guess': 1.0, 'fault': 1.0, 'my': 1.0, 'well': 1.0, 'oh': 1.0, 'in': 1.0, 'helpful': 1.0, 'wasn': 1.0, 'finish': 1.0, 'care': 1.0, 'than': 1.0, 'way': 1.0, 'have': 1.0, 'buying': 1.0, 'to': 3.0, 'what': 4.0, 'thought': 2.0, 'gave': 1.0, 'that': 3.0, 'picture': 1.0, 'didn': 1.0, 'crib': 2.0, 'slats': 1.0, 'really': 2.0, 'of': 3.0, 'job': 1.0, 'the': 5.0, 'these': 1.0, 'more': 1.0, 'is': 2.0, 'explain': 1.0, 'slat': 1.0, 'bought': 1.0, 's': 1.0, 't': 3.0, 'a': 3.0, 'are': 2.0, 'this': 2.0, 'full': 1.0, 'sure': 1.0, 'know': 1.0, 'too': 1.0, 'description': 1.0, 'and': 2.0, 'getting': 1.0, 'understanding': 1.0, 'spend': 1.0, 'great': 3.0, 'feel': 1.0, 'bumper': 1.0, 'colors': 1.0, 'd': 1.0, 'm': 1.0, 'price': 1.0, 'i': 10.0, 'two': 2.0, 'them': 1.0, 'it': 1.0, 'covers': 1.0, 'stars': 1.0, 'product': 2.0, 'actually': 1.0, 'for': 2.0, 'four': 1.0, 'but': 1.0, 'was': 3.0, 'doesn': 1.0, 'would': 1.0, 'individual': 1.0, 'each': 1.0, 'enough': 1.0, 'cover': 1.0}
Word element => {'crib': 1.0, 'put': 1.0, 'wash': 1.0, 'to': 2.0, 'can': 1.0, 'say': 1.0, 'they': 3.0, 'things': 1.0, 'not': 2.0, 'enough': 1.0, 'bumper': 1.0, 'bumpers': 1.0, 'easy': 2.0, 'about': 1.0, 'i': 1.0, 'are': 2.0, 'great': 1.0, 'these': 1.0, 'the': 3.0, 'market': 1.0, 'and': 2.0, 'safest': 1.0, 'on': 2.0, 'soft': 1.0, 'adorable': 1.0, 'only': 1.0, 'durable': 1.0}
Word element => {'is': 1.0, 'little': 1.0, 'night': 1.0, 'at': 1.0, 'well': 1.0, 'so': 1.0, 'guy': 1.0, 'knowing': 1.0, 'nursery': 1.0, 'they': 1.0, 'in': 1.0, 'look': 1.0, 'my': 1.0, 'the': 1.0, 'adorable': 1.0, 'and': 1.0, 'i': 1.0, 'safe': 2.0, 'sleep': 1.0}
Word element => {'purchases': 1.0, 'assembled': 1.0, 'reach': 1.0, 'lowered': 1.0, 'buy': 1.0, 'close': 1.0, 'a': 4.0, 't': 1.0, 'down': 1.0, 'we': 5.0, 'take': 1.0, 'as': 2.0, 'our': 3.0, 'not': 3.0, 'n': 1.0, 'comforting': 1.0, 'intent': 1.0, 'you': 2.0, 'things': 1.0, 'mommy': 1.0, 'happier': 1.0, 'decor': 1.0, 'be': 2.0, 'the': 7.0, 'of': 4.0, 'there': 1.0, 'are': 3.0, 'wonderfully': 1.0, 'that': 3.0, 'box': 1.0, 'next': 1.0, 'with': 1.0, 'this': 1.0, 'erect': 1.0, 'off': 1.0, 'if': 1.0, 'section': 1.0, 'it': 5.0, 'lifts': 2.0, 'said': 1.0, 'regular': 1.0, 'is': 5.0, 'play': 1.0, 'know': 1.0, 'easy': 1.0, 'sold': 1.0, 'so': 4.0, 'to': 9.0, 'against': 1.0, 'for': 2.0, 'daughter': 2.0, 'pack': 1.0, 'think': 1.0, 'your': 1.0, 'bath': 1.0, '3': 1.0, 'my': 2.0, 'being': 1.0, 'leaving': 1.0, 'love': 2.0, 'solid': 1.0, 'attached': 1.0, 'matches': 1.0, 'bed': 3.0, 'will': 1.0, 'by': 1.0, 'and': 3.0, 'arms': 1.0, 'price': 1.0, 'best': 1.0, 'rip': 1.0, 'sturdy': 1.0, 'bought': 1.0, 'one': 1.0, 'from': 2.0, 'while': 1.0, 'big': 1.0, 'store': 1.0, 'some': 1.0, 'fraction': 1.0, '4': 1.0, 'i': 1.0, 'wall': 1.0, 'helpful': 1.0, 'scoot': 1.0, 'pressed': 1.0, 'mesh': 1.0, 'portion': 1.0, 'had': 1.0, 'keep': 1.0, 'wanting': 1.0, 'cosleeper': 2.0, 'over': 1.0, 'made': 1.0, 'side': 1.0, 'her': 1.0, 'face': 1.0, 'wasn': 1.0, 'overall': 1.0}
Word element => {'princess': 1.0, 'little': 1.0, 'any': 1.0, 'set': 1.0, 'screw': 1.0, 'my': 1.0, 'make': 1.0, 'a': 1.0, 'for': 1.0, 'missing': 1.0, 'was': 1.0, 'the': 2.0, 'these': 1.0, 'i': 3.0, 'daughter': 1.0, 'and': 2.0, 'feet': 1.0, 'furniture': 1.0, 'it': 2.0, 'this': 1.0, 'wobbly': 1.0, 'toddler': 1.0, 'but': 1.0, 'loves': 1.0, 'think': 1.0, 's': 1.0, 'still': 1.0, 'worth': 1.0, 'recommend': 1.0}
Word element => {'chair': 1.0, 'sitting': 1.0, 'up': 1.0, 'feet': 1.0, 'his': 2.0, 'and': 5.0, 'was': 1.0, 'to': 3.0, 'rough': 1.0, 'he': 3.0, 'this': 3.0, 'christmas': 1.0, 'with': 3.0, 'quality': 1.0, 'watching': 1.0, 'i': 3.0, 'tv': 1.0, 'propt': 1.0, 'gave': 1.0, 'loves': 1.0, 'off': 1.0, 'sturdiness': 1.0, 'likes': 1.0, 'the': 2.0, 'is': 3.0, 'highly': 1.0, 'really': 1.0, 'it': 2.0, 'looks': 1.0, 'son': 1.0, 'very': 1.0, 'for': 1.0, 'pleased': 1.0, 'of': 2.0, 'going': 1.0, 'a': 1.0, 'yr': 1.0, 'last': 1.0, 'adorable': 1.0, 'who': 2.0, 'climb': 1.0, 'old': 1.0, 'jump': 1.0, 'everything': 1.0, 'boy': 1.0, 'so': 1.0, 'on': 1.0, 'impressed': 1.0, '3': 2.0, 'furniture': 1.0, 'my': 1.0, 'purchase': 1.0, 'take': 1.0, 'gift': 1.0, 'beating': 1.0, 'am': 1.0, 'just': 1.0}
Word element => {'about': 1.0, 'house': 1.0, 'month': 1.0, 'issues': 1.0, 'for': 2.0, 'no': 1.0, 'padded': 1.0, 'far': 1.0, 'sure': 1.0, 'chair': 1.0, 'having': 1.0, 'in': 2.0, '18mo': 1.0, 'up': 2.0, 'ottomanon': 1.0, 'very': 1.0, 'nicely': 1.0, 'sits': 1.0, 'with': 1.0, 'my': 1.0, 'own': 1.0, 'mostly': 1.0, 'loves': 1.0, 'and': 4.0, 'comfy': 2.0, 'promptly': 1.0, 'them': 1.0, 'made': 1.0, 'arrived': 1.0, 'his': 2.0, 'after': 1.0, 'so': 1.0, 'pulls': 1.0, 'feet': 1.0, 'a': 1.0, 'well': 1.0}
Word element => {'again': 1.0, 'buy': 1.0, 'spent': 1.0, 'definitely': 1.0, 'happens': 1.0, 'until': 1.0, 'couch': 1.0, 'butt': 1.0, 'phasing': 1.0, 'still': 1.0, 'about': 1.0, 'purchased': 1.0, 'clean': 1.0, 'impossible': 1.0, 'made': 1.0, 'were': 1.0, 'soon': 2.0, 'noticed': 1.0, 'any': 1.0, 'cleaning': 1.0, 'though': 1.0, 'after': 1.0, 'because': 1.0, 'nice': 1.0, 'keep': 1.0, 'some': 2.0, 'put': 1.0, 'cleanliness': 1.0, 'terms': 1.0, 'hasn': 1.0, 'fray': 1.0, 'starting': 1.0, 'arms': 1.0, 'spot': 1.0, 'well': 3.0, 'should': 1.0, 'itself': 1.0, 'broken': 1.0, 'climbed': 1.0, 'jumped': 1.0, 'been': 1.0, 'return': 1.0, 'connects': 1.0, 'back': 1.0, 'arm': 1.0, 'loveseat': 1.0, 'ripped': 1.0, 'i': 18.0, 'thing': 1.0, 'first': 4.0, 'we': 1.0, 'bad': 1.0, 'plus': 1.0, 'that': 1.0, 'flimsy': 1.0, 'furniture': 3.0, 'on': 4.0, 'shouldn': 1.0, 'cutting': 1.0, 'out': 3.0, 'material': 1.0, 'nothing': 2.0, 'inch': 1.0, 'every': 1.0, 'bigger': 1.0, 'expecting': 1.0, 'want': 2.0, '4pack': 1.0, 'squeeze': 1.0, 'covering': 1.0, 'fine': 1.0, 'like': 2.0, 'thin': 1.0, 'they': 5.0, 'overall': 3.0, 'sure': 1.0, 'box': 2.0, 'case': 1.0, 'next': 1.0, 'has': 2.0, 'edges': 1.0, 'not': 3.0, 'thought': 1.0, 'deal': 1.0, 'fabric': 4.0, 'for': 8.0, 'rather': 1.0, 'smaller': 1.0, 'mending': 1.0, 'stretched': 1.0, 'size': 1.0, 'screw': 1.0, '1': 1.0, 'insert': 1.0, 'year': 2.0, 'at': 4.0, 'where': 1.0, 're': 2.0, 'small': 2.0, 'durable': 1.0, 'it': 13.0, 'be': 3.0, 'even': 1.0, 'old': 1.0, 'of': 9.0, 'the': 24.0, 'moving': 1.0, 'piece': 1.0, 'spills': 1.0, 'recommend': 1.0, 'patch': 1.0, 'skills': 1.0, 'with': 3.0, 'cans': 1.0, 'type': 2.0, 'fits': 1.0, 'think': 1.0, 'spend': 2.0, 'jumping': 1.0, 'an': 1.0, 'when': 4.0, 'what': 1.0, 'you': 8.0, 'destroy': 1.0, 'opened': 1.0, 'developed': 1.0, 'matter': 1.0, 'all': 4.0, '20': 1.0, 'saw': 1.0, 'way': 1.0, 'wood': 1.0, 'time': 2.0, 'rip': 1.0, 'probably': 1.0, 'before': 1.0, 'was': 2.0, 'and': 13.0, 'just': 1.0, 'seats': 1.0, 'jan': 1.0, 'may': 2.0, 'are': 3.0, 'room': 1.0, 'my': 4.0, 'age': 2.0, 'mommy': 1.0, 'would': 3.0, 'mend': 1.0, 'together': 1.0, 'in': 4.0, 'seems': 1.0, 'see': 1.0, 'a': 14.0, 'gnawing': 1.0, 'than': 5.0, 'bit': 2.0, '2013': 1.0, 'chair': 4.0, 'couple': 1.0, 'find': 1.0, 'very': 3.0, 'her': 3.0, 'little': 3.0, 'two': 1.0, 'wiggle': 1.0, 'set': 4.0, 'money': 2.0, 'is': 10.0, 'can': 4.0, 'but': 2.0, 'ottoman': 2.0, 'or': 2.0, 'this': 9.0, 'soft': 1.0, 'if': 3.0, 'great': 1.0, 'buildwork': 1.0, 'used': 1.0, 've': 2.0, 'magically': 1.0, 'last': 1.0, 'half': 1.0, 'kicking': 1.0, 'never': 1.0, 'simply': 1.0, 'over': 5.0, 'stitched': 1.0, 'pop': 1.0, 'barely': 2.0, 'noticeable': 1.0, 'now': 2.0, 'fitting': 1.0, 'base': 1.0, '120': 1.0, 't': 3.0, 'have': 5.0, 'daughter': 2.0, 'to': 12.0, 'right': 1.0, 'worried': 1.0, 'lasting': 1.0, 'side': 1.0, 'll': 1.0, 'she': 2.0, 'make': 1.0, 'suggest': 1.0, 'result': 1.0, 'goes': 1.0, 'remember': 1.0, 'drill': 1.0, 'also': 1.0, 'legs': 1.0, 'shipping': 1.0, 'however': 2.0, 'get': 2.0, 'something': 1.0, 'nowadays': 1.0, 'backup': 1.0, 'yourself': 1.0, 'd': 1.0, 'years': 2.0, 'seeing': 1.0, 'as': 9.0, 'whole': 1.0, 'more': 2.0, 'got': 1.0, 'one': 2.0, 'held': 3.0, 'cloth': 1.0, 'end': 1.0, 'going': 1.0, 'messes': 1.0, 'up': 5.0, 'spilling': 1.0, 'cover': 1.0, 'will': 1.0, 'tantrum': 1.0, 'least': 1.0, 'children': 1.0, 'say': 2.0, 'power': 1.0, 'individual': 1.0, 'wrong': 1.0, 'those': 1.0, 'from': 1.0, 'who': 1.0, 'looking': 2.0, 'value': 1.0, 's': 4.0, 'doesn': 1.0, '200': 1.0, 'eventually': 1.0, 'throwing': 1.0, 'edit': 1.0, 'had': 2.0, 'touch': 1.0, 'how': 1.0, 'quality': 3.0, 'far': 1.0, 'there': 1.0, 'under': 1.0, 'chairs': 1.0}
Word element => {'gift': 1.0, 'perfect': 1.0, 'recommend': 1.0, 'would': 1.0, 'it': 2.0, 'this': 2.0, 'well': 1.0, 'money': 1.0, 'like': 1.0, 'quality': 1.0, 'good': 1.0, 'love': 1.0, 'for': 1.0, 'year': 1.0, 'spent': 1.0, 'nephew': 1.0, '1': 1.0, 'of': 1.0, 'mouse': 1.0, 'ever': 1.0, 'has': 1.0, 'item': 3.0, 'that': 1.0, 'everyone': 1.0, 'to': 1.0, 'turned': 1.0, 'just': 1.0, 'feel': 1.0, 'purchase': 1.0, 'i': 4.0, 'old': 1.0, 'product': 1.0, 'who': 1.0, 'my': 2.0, 'biggest': 1.0, 'is': 2.0, 'fan': 1.0, 's': 1.0, 'toward': 1.0, 'mickey': 1.0, 'the': 4.0, 'such': 1.0}
Word element => {'couch': 1.0, 'on': 1.0, 'together': 1.0, 'or': 1.0, 'their': 1.0, 'have': 1.0, 'seats': 1.0, 'each': 1.0, '1': 1.0, 'can': 2.0, 'love': 1.0, 'these': 2.0, 'they': 2.0, 'so': 1.0, '3': 1.0, 'sit': 1.0, 'cute': 1.0, 'the': 1.0, 'are': 1.0, 'my': 1.0, 'boys': 1.0, 'separate': 1.0, 'chairs': 1.0}
Word element => {'apart': 1.0, 'purchase': 1.0, 'is': 1.0, 'grow': 1.0, 'constructed': 1.0, 'will': 1.0, 'for': 1.0, 'a': 1.0, 'well': 1.0, 'fall': 1.0, 'durable': 1.0, 'it': 3.0, 'and': 2.0, 'very': 1.0, 'great': 1.0, 'the': 1.0, 'my': 1.0, 'price': 1.0, 'starts': 1.0, 'grandson': 1.0, 'long': 1.0, 'before': 1.0, 'out': 1.0, 'to': 1.0}
Word element => {'for': 1.0, 'people': 1.0, 'thing': 1.0, 'centered': 1.0, 'see': 1.0, 'am': 1.0, 'i': 4.0, 'reason': 1.0, 'only': 1.0, 'yourself': 1.0, 'them': 3.0, 'loves': 1.0, 'that': 6.0, 'into': 1.0, 'yet': 1.0, 'read': 1.0, 'little': 1.0, 'can': 2.0, 'son': 2.0, 'my': 2.0, 'god': 1.0, 'fact': 1.0, 'isn': 1.0, 'thank': 1.0, 'fine': 1.0, 'panels': 1.0, 'upholstering': 1.0, 'arm': 1.0, 'on': 5.0, 'put': 3.0, 'theses': 1.0, 'think': 1.0, 'furniture': 1.0, 'description': 3.0, 'look': 3.0, 'is': 4.0, 'more': 1.0, 'even': 1.0, 'couch': 1.0, 'atman': 1.0, 'designer': 1.0, 'no': 1.0, 'about': 1.0, 'chair': 1.0, 'playing': 1.0, 'of': 5.0, 'the': 19.0, 'without': 1.0, 'wrong': 4.0, 'there': 1.0, 'give': 1.0, 'not': 3.0, 'to': 4.0, 't': 3.0, 'a': 2.0, 'whoever': 1.0, 's': 1.0, 'good': 1.0, 'which': 1.0, 'batman': 2.0, 'how': 1.0, 'front': 2.0, 'are': 1.0, 'actually': 1.0, 'keeping': 1.0, 'towards': 1.0, 'but': 1.0, 'creating': 1.0, 'was': 3.0, 'in': 1.0, 'charge': 1.0, 'looked': 1.0, 'makes': 1.0, 'did': 1.0, 'one': 1.0, 'bit': 2.0, 'lack': 1.0, 'these': 2.0, 'you': 1.0, 'things': 1.0, 'just': 3.0, 'expected': 1.0, 'be': 2.0, 'care': 3.0, 'cheap': 1.0, 'decoration': 1.0, 'they': 1.0, 'prepare': 1.0, 'buttons': 2.0, 'if': 1.0, 'what': 1.0, 'it': 2.0, 'thought': 1.0, 'else': 1.0, 'also': 1.0, 'does': 1.0, 'word': 2.0, 'state': 1.0, 'would': 1.0, 'have': 1.0, 'legs': 1.0, 'complaining': 1.0}
Word element => {'but': 1.0, 'cut': 1.0, 'thin': 1.0, 'of': 1.0, 'my': 1.0, 's': 2.0, 'daughter': 1.0, 'in': 1.0, 'nursery': 1.0, 'so': 1.0, 'bit': 1.0, 'worked': 1.0, 'the': 3.0, 'these': 1.0, 'loved': 1.0, 'pictures': 1.0, 'leaves': 1.0, 'and': 1.0, 'grass': 1.0, 'b': 1.0, 'were': 1.0, 'outs': 1.0, 'well': 1.0, 'a': 1.0, 'it': 1.0, 'with': 1.0, 'hard': 1.0, 'manageable': 1.0, 'to': 1.0, 'c': 1.0, 'apply': 1.0}
Word element => {'walk': 1.0, 'comments': 1.0, 'everyone': 1.0, 'into': 1.0, 'that': 1.0, 'they': 2.0, 'missing': 1.0, 'so': 1.0, 'though': 1.0, 'eggs': 1.0, 'their': 1.0, 'middle': 1.0, 'easy': 1.0, 'girl': 1.0, 'stars': 1.0, 'for': 1.0, 'cocalo': 1.0, 'up': 1.0, 'of': 1.0, 'along': 1.0, 'pictures': 1.0, 'this': 1.0, 'bought': 1.0, 'baby': 2.0, 'x': 1.0, 'about': 1.0, 'wall': 1.0, 'at': 1.0, 'things': 1.0, 'our': 1.0, 'to': 3.0, 'much': 1.0, 'nursery': 2.0, 'are': 3.0, 'appliques': 1.0, 'with': 3.0, 'mind': 1.0, 'the': 11.0, 'when': 1.0, 'you': 2.0, 'dinos': 1.0, 'too': 1.0, 'play': 1.0, 'and': 3.0, 'precious': 1.0, 'colorful': 1.0, 'it': 1.0, 'remove': 1.0, 'dots': 1.0, 'if': 1.0, 'aren': 1.0, 'change': 1.0, 'on': 1.0, 'put': 1.0, 'your': 1.0, 'location': 1.0, 'very': 2.0, 'little': 1.0, 'set': 2.0, 'square': 1.0, 'shown': 1.0, 'in': 2.0, 'picture': 1.0, 'comes': 1.0, 'around': 1.0, 'dinosaurs': 2.0, 't': 1.0, 's': 1.0, 'we': 1.0, 'go': 1.0, 'a': 1.0, 'not': 1.0, 'part': 1.0}
Word element => {'left': 1.0, 'xs': 1.0, 'off': 1.0, 'been': 1.0, 'no': 1.0, 'peeling': 1.0, 'not': 1.0, 'are': 1.0, 'for': 1.0, 'with': 1.0, 'outlines': 1.0, 'included': 1.0, 'the': 3.0, 'these': 1.0, 'on': 1.0, 'over': 1.0, 'a': 1.0, 'month': 1.0, 'box': 1.0, 'wall': 1.0, 'you': 1.0, 'however': 1.0, 'so': 1.0, 'have': 2.0, 'strange': 1.0}
Word element => {'life': 1.0, 'their': 1.0, 'blessing': 1.0, 'daughter': 1.0, 'a': 2.0, 'of': 3.0, 'parents': 1.0, 'new': 1.0, 'every': 1.0, 'extravagant': 1.0, 'delicious': 1.0, 'haired': 1.0, 'than': 1.0, 'different': 1.0, 'indulgence': 1.0, 'grow': 1.0, 'are': 1.0, 'the': 4.0, 'dream': 1.0, 'nursery': 1.0, 'pretty': 1.0, 'very': 3.0, 'and': 2.0, 'baby': 1.0, 'colors': 1.0, 'any': 1.0, 'can': 1.0, 'with': 1.0, 'is': 1.0, 'child': 1.0, 'european': 1.0, 'design': 1.0, 'in': 1.0, 'usual': 1.0, 'flair': 1.0, 'sets': 1.0, 'au': 1.0}
Word element => {'delight': 1.0, 'be': 2.0, 'would': 1.0, 'that': 1.0, '3d': 1.0, 'and': 1.0, 'very': 1.0, 'cute': 1.0, 'just': 2.0, 'awesome': 1.0, 'wish': 1.0, 'such': 1.0, 'they': 1.0, 'a': 2.0, 'maybe': 1.0, 'were': 1.0, 'little': 1.0, 'bigger': 1.0, 'or': 1.0}
Word element => {'show': 1.0, 'will': 1.0, 'misalignment': 1.0, 'crooked': 1.0, 'if': 1.0, 'socket': 1.0, 'along': 1.0, 'align': 1.0, 'more': 1.0, 'is': 1.0, 'come': 1.0, 'other': 1.0, 'only': 1.0, 'nothing': 1.0, 'better': 1.0, 'still': 1.0, 'practical': 1.0, 'pretty': 1.0, 'of': 1.0, 'easily': 1.0, 'gives': 1.0, 'measure': 1.0, 'these': 5.0, 'the': 4.0, 'thing': 1.0, 'lift': 1.0, 'down': 1.0, 'cover': 1.0, 'that': 4.0, 'were': 1.0, 'sink': 1.0, 'look': 1.0, 'as': 3.0, 'to': 3.0, 'used': 1.0, 'beige': 1.0, 'contemporary': 1.0, 'i': 4.0, 'device': 1.0, 'on': 1.0, 'your': 3.0, 'so': 1.0, 'needs': 1.0, 'walls': 1.0, 'or': 1.0, 'near': 2.0, 'nice': 1.0, 'white': 1.0, 'devices': 2.0, 'guess': 1.0, 'sockets': 1.0, 'toddler': 1.0, 'colors': 1.0, 'my': 2.0, 'bed': 1.0, 'a': 2.0, 'might': 2.0, 'depends': 1.0, 'easy': 1.0, 'wind': 1.0, 'are': 2.0, 'most': 1.0, 'suppose': 1.0, 'anti': 1.0, 'up': 4.0, 'replacing': 1.0, 'outlets': 3.0, 'and': 1.0, 'with': 2.0, 'than': 1.0, 'maybe': 1.0, 'then': 1.0, 'far': 1.0}
Word element => {'if': 1.0, 'again': 1.0, 'needed': 1.0, 'order': 1.0, 'imagined': 1.0, 'i': 3.0, 'love': 1.0, 'absolutely': 1.0, 'it': 1.0, 'received': 1.0, 'than': 1.0, 'have': 1.0, 'this': 3.0, 'product': 2.0, 'could': 1.0, 'timely': 1.0, 'and': 2.0, 'better': 1.0, 'would': 1.0, 'was': 1.0}
Word element => {'adult': 1.0, 'an': 1.0, 'are': 1.0, 'at': 1.0, 'hasn': 1.0, 'far': 1.0, 'off': 2.0, 'easy': 1.0, 'get': 2.0, 'very': 1.0, 'figure': 1.0, 'times': 1.0, 'has': 1.0, 'in': 1.0, 'on': 1.0, 'stuff': 1.0, 'plug': 1.0, 'trying': 1.0, 'these': 4.0, 'figured': 2.0, 'the': 6.0, 'ones': 1.0, 'more': 1.0, 'nice': 1.0, 'great': 1.0, 'it': 1.0, 'covers': 2.0, 'out': 3.0, 'of': 1.0, 'my': 3.0, 'toddler': 2.0, 'but': 1.0, 'work': 1.0, 'combination': 1.0, 'standard': 1.0, 'other': 2.0, 'same': 1.0, 'outlet': 3.0, 'he': 1.0, 'plastic': 1.0, 'how': 2.0, 'looooong': 1.0, 'replaced': 1.0, 'look': 1.0, 'i': 1.0, 'defeat': 1.0, 'loves': 1.0, 'helper': 1.0, 'plugs': 1.0, 'with': 1.0, 'and': 3.0, 'time': 1.0, 'so': 3.0, 'plate': 1.0, 'outlets': 1.0, 'do': 1.0, 'safe': 1.0, 'electrical': 1.0, 'by': 1.0, 'tried': 1.0, 'mommy': 1.0, 'almost': 1.0, 't': 1.0, 'a': 1.0, 'ago': 1.0, 'we': 2.0, 's': 1.0, 'for': 3.0, 'never': 1.0, 'use': 2.0, 'several': 1.0, 'frequently': 1.0, 'they': 1.0, 'to': 5.0, 'as': 1.0}
Word element => {'polished': 1.0, 'a': 2.0, 'they': 2.0, 'my': 2.0, 'look': 2.0, 'to': 2.0, 'easy': 1.0, 'but': 1.0, 'all': 1.0, 'were': 1.0, 'leave': 1.0, 'figure': 1.0, 'really': 1.0, 'nice': 1.0, 'i': 1.0, 'wouldn': 1.0, 'these': 2.0, 't': 1.0, 'mind': 1.0, 'plates': 1.0, 'for': 2.0, 'using': 1.0, 'out': 1.0, 'covers': 1.0, 'very': 1.0, 'son': 1.0, 'as': 1.0, 'room': 1.0, 'electrical': 1.0}
Word element => {'tool': 1.0, 'on': 1.0, 'grip': 1.0, 'kind': 1.0, 'get': 1.0, 'impossible': 1.0, 'practically': 1.0, 'them': 1.0, 'baby': 1.0, 'removed': 1.0, 'not': 1.0, 're': 1.0, 'problem': 1.0, 'using': 1.0, 'like': 1.0, 'solve': 1.0, 'it': 1.0, 'covers': 1.0, 'charge': 1.0, 'easily': 1.0, 'when': 1.0, 'either': 1.0, 'increased': 1.0, '12': 1.0, 'coming': 1.0, 'have': 1.0, 'required': 1.0, 'i': 2.0, 'buy': 1.0, 'point': 1.0, 'caters': 1.0, 'folks': 1.0, 'without': 1.0, 'the': 4.0, 'some': 2.0, 'these': 1.0, 'own': 1.0, 's': 1.0, 't': 1.0, 'a': 3.0, 'proof': 1.0, 'feet': 1.0, 'past': 1.0, 'laptops': 1.0, 'that': 1.0, 'their': 1.0, 'business': 1.0, 'and': 1.0, 'to': 5.0, 'in': 2.0, 'walk': 1.0, 'wall': 1.0, 'several': 1.0, 'm': 1.0, 'years': 1.0, 'over': 1.0, 'outlets': 1.0, 'don': 1.0, 'phones': 1.0, 'amount': 1.0, 'of': 3.0, 'by': 1.0, 'just': 1.0, 'has': 1.0, 'code': 1.0, 'they': 2.0, 'every': 1.0, 'annoyance': 1.0, 'trade': 1.0, 'especially': 1.0, 'gizmos': 1.0, 'anything': 1.0}
Word element => {'will': 1.0, 'similar': 1.0, 'and': 1.0, 'options': 1.0, 'looks': 1.0, 'be': 1.0, 'to': 1.0, 'better': 2.0, 'outlet': 1.0, 'easy': 1.0, 'than': 2.0, 'more': 1.0, 'the': 1.0, 'buying': 1.0, 'original': 1.0, 'it': 1.0, 'priced': 1.0, 'was': 1.0, 'install': 1.0}
Word element => {'children': 1.0, 'for': 1.0, 'but': 1.0, 'of': 1.0, 'out': 1.0, 'fits': 1.0, 'not': 1.0, 'just': 1.0, 'easy': 2.0, 'need': 1.0, 'very': 1.0, 'outlets': 1.0, 'and': 3.0, 'install': 1.0, 'screwdriver': 1.0, 'price': 1.0, 'great': 1.0, 'on': 1.0, 'room': 1.0, 'outlet': 1.0, 'box': 1.0, 'kids': 1.0, 'lift': 1.0, 'used': 1.0, 'in': 1.0, 'fingers': 1.0, 'to': 3.0, 'rooms': 1.0, 'standard': 1.0, 'play': 1.0, 'keep': 1.0, 'little': 1.0}
Word element => {'for': 1.0, 'do': 1.0, 'probably': 1.0, 's': 1.0, 'someone': 1.0, 'can': 1.0, 'it': 3.0, 'i': 1.0, 'me': 2.0, 'than': 1.0, 'but': 2.0, 'easy': 1.0, 'to': 2.0, '34': 2.0, 'handier': 1.0, 'looked': 1.0, 'slide': 1.0, 'not': 1.0, 'was': 1.0, 'on': 1.0, 'unable': 1.0}
Word element => {'access': 1.0, 'has': 1.0, 'when': 1.0, 'daughter': 1.0, 'for': 2.0, 'cover': 1.0, 'outlet': 1.0, 'that': 1.0, 'my': 1.0, 'the': 1.0, 'up': 1.0, 'not': 1.0, 'able': 1.0, 'is': 1.0, 'been': 1.0, 'to': 2.0, 'remove': 1.0, 'only': 1.0, 'this': 1.0, 'it': 1.0, 's': 1.0, 'needed': 1.0, 'easy': 1.0, 'and': 1.0, 'me': 1.0, 'slide': 1.0}
Word element => {'10': 1.0, 'still': 1.0, 'can': 1.0, 'love': 1.0, 'outlets': 1.0, 'and': 1.0, 'of': 1.0, 'up': 1.0, 'like': 1.0, 'ugly': 1.0, 'you': 2.0, 'invention': 1.0, 'plug': 1.0, 'cover': 1.0, 'them': 1.0, 'covers': 1.0, 'a': 1.0, 'use': 1.0, 'great': 1.0, 'these': 1.0, 'the': 2.0, 'what': 1.0, 'part': 1.0, 'when': 1.0, 'slide': 1.0, 'bought': 1.0}
Word element => {'before': 1.0, 'issue': 1.0, 'check': 1.0, 'covers': 1.0, 'outlet': 1.0, 'those': 1.0, 'realized': 1.0, 'also': 1.0, 'kitchen': 1.0, 'my': 1.0, 'install': 1.0, 'went': 1.0, 'your': 1.0, 'bummed': 1.0, 'going': 1.0, 'gets': 1.0, 'require': 1.0, 'almost': 1.0, 'slide': 1.0, 'was': 1.0, 'easier': 1.0, 'ones': 1.0, 'more': 1.0, 'the': 2.0, 'these': 4.0, 'easy': 1.0, 'closely': 1.0, 'central': 1.0, 'this': 1.0, 'recent': 1.0, 'are': 2.0, 'pic': 1.0, 'm': 1.0, 'absolutely': 1.0, 'love': 1.0, 'for': 2.0, 'one': 1.0, 'that': 1.0, 'unobtrusive': 1.0, 'clean': 1.0, 'two': 1.0, 'i': 4.0, 'then': 1.0, 'order': 1.0, 'too': 1.0, 'and': 3.0, 'monitor': 1.0, 'outlets': 2.0, 'ordering': 1.0, 'open': 1.0, 'to': 4.0, 'as': 2.0, 'did': 1.0, 'stronger': 1.0, 'twice': 1.0, 'can': 1.0, 'have': 1.0, 'things': 1.0, 'screws': 1.0, 'baby': 1.0, 'look': 1.0, 'screw': 1.0, 'important': 1.0, 'only': 2.0, 'with': 1.0, 'when': 1.0, 'you': 1.0, 'see': 1.0, 'in': 2.0}
Word element => {'a': 1.0, 'had': 1.0, 'my': 1.0, 'of': 1.0, 'snoopy': 1.0, 'have': 1.0, 'this': 1.0, 'rattle': 2.0, 'is': 2.0, 'that': 1.0, 'and': 1.0, 'grandchildren': 1.0, 'i': 1.0, 'love': 1.0, 'great': 1.0, 'it': 1.0, 'peanuts': 1.0, 'all': 1.0}
Word element => {'brand': 1.0, 'highly': 1.0, 'they': 1.0, 'places': 1.0, 'one': 1.0, 'wash': 1.0, 'in': 1.0, 'so': 2.0, 'are': 1.0, 'lightweight': 1.0, 'my': 1.0, 'well': 1.0, 'at': 1.0, 'since': 1.0, 'attached': 1.0, 'us': 1.0, 'worry': 1.0, 'had': 1.0, 'as': 1.0, 'to': 3.0, 'son': 1.0, 'very': 2.0, 'sleeps': 1.0, 'is': 3.0, 'and': 4.0, '1': 1.0, 'recommend': 1.0, 'daycare': 1.0, 'his': 1.0, 'have': 2.0, 'it': 4.0, 'with': 2.0, 'he': 2.0, 'a': 1.0, 'could': 1.0, 'we': 1.0, 'buy': 1.0, 'two': 1.0, 'i': 2.0, 'this': 2.0, 'soft': 1.0, 'lovey': 1.0, 'snuggly': 1.0, 'fit': 1.0, 'easily': 1.0, 'handbag': 1.0, 'take': 1.0, 'on': 1.0, 'chest': 1.0, 'about': 1.0, '2': 2.0, 'never': 1.0}
Word element => {'or': 1.0, 'no': 1.0, 'little': 1.0, 'months': 1.0, 'over': 1.0, 'per': 1.0, 'a': 1.0, 'well': 1.0, 'washing': 1.0, 'times': 1.0, 'withstand': 1.0, 'tears': 1.0, 'has': 1.0, 'they': 1.0, 'frays': 1.0, 'it': 2.0, 'security': 1.0, '8': 1.0, 'have': 2.0, 'live': 1.0, 'without': 1.0, 'can': 1.0, 'kid': 1.0, 'yet': 1.0, 'mine': 1.0, 'for': 2.0, 'i': 2.0, 'blanket': 1.0, 'but': 1.0, 'week': 1.0, 'back': 1.0, 'car': 1.0, 'my': 1.0, 'great': 1.0, 't': 1.0, '2': 2.0, 'more': 1.0, 'the': 1.0, 'faded': 1.0, 'bought': 1.0, 'to': 1.0, 'as': 1.0, 'washed': 1.0, 'up': 1.0, '1': 1.0, 'and': 1.0}
Word element => {'better': 1.0, 'more': 1.0, 'little': 1.0, 'spend': 1.0, 'purchasing': 1.0, 'be': 1.0, 'not': 1.0, 'definitely': 1.0, 'with': 1.0, 'january': 1.0, 'nothing': 1.0, 'much': 1.0, 'do': 1.0, 'and': 5.0, 'couldn': 1.0, 'his': 1.0, 'there': 1.0, 'always': 1.0, 'up': 1.0, 'in': 1.0, 'cry': 1.0, 'another': 1.0, 'my': 1.0, 'during': 1.0, 'i': 4.0, 'time': 1.0, 'bath': 1.0, 'fold': 1.0, 'son': 1.0, 'sliding': 1.0, 'this': 2.0, 'he': 4.0, 'it': 1.0, 'hated': 1.0, 'really': 1.0, 'something': 1.0, 'would': 2.0, 'was': 3.0, 'help': 1.0, 'slide': 1.0, 'or': 2.0, 'right': 1.0, 'down': 2.0, 'especially': 1.0, 'when': 1.0, 'm': 1.0, 'could': 1.0, 't': 2.0, 'a': 2.0, 'wasn': 1.0, 'newborn': 1.0, 'will': 1.0, 'also': 1.0, 'support': 1.0, 'himself': 1.0, 'get': 1.0, 'tub': 1.0, 'left': 1.0, 'easy': 1.0, 'at': 1.0, 'to': 2.0, 'all': 1.0, 'due': 1.0}
Word element => {'head': 1.0, 'side': 1.0, 'one': 1.0, 'little': 1.0, 'was': 1.0, 'there': 1.0, 'slippery': 1.0, 'and': 1.0, 'for': 2.0, 'snaps': 1.0, 'that': 1.0, 'base': 1.0, 'infant': 1.0, 'month': 1.0, 'it': 2.0, 'wish': 1.0, 'this': 1.0, 'only': 1.0, 'he': 1.0, 'with': 1.0, 'inflatable': 1.0, 'not': 1.0, 'give': 1.0, 'is': 1.0, 'my': 1.0, 'the': 3.0, 'up': 3.0, 'hand': 1.0, 'like': 1.0, 'thats': 1.0, 'ever': 1.0, 'something': 1.0, 've': 1.0, 'but': 2.0, 'old': 1.0, 'i': 4.0, 'tub': 1.0, 'towel': 1.0, 'used': 1.0, 'down': 1.0, 'even': 1.0, 'both': 1.0, 'his': 2.0, 'are': 1.0, 'in': 1.0, 'slides': 1.0, '1': 1.0, 'nice': 1.0, 'though': 1.0, 'sides': 1.0, 'so': 1.0, 'roll': 1.0, 'a': 2.0, 'middle': 1.0, 'to': 2.0, 'cushion': 1.0, 'sit': 1.0, 'put': 1.0, 'on': 2.0}
Word element => {'simple': 1.0, 'something': 2.0, 'store': 1.0, 'price': 1.0, 'same': 1.0, 'for': 1.0, 'plastic': 1.0, 'durable': 1.0, 'not': 1.0, 'will': 1.0, 'of': 3.0, 'bottom': 2.0, 'feet': 1.0, 'nice': 1.0, 'is': 4.0, 'vinyl': 3.0, 'gotten': 2.0, 'getting': 1.0, 'and': 1.0, 'i': 2.0, 'go': 1.0, 'going': 1.0, 'a': 6.0, 'are': 3.0, 'or': 1.0, 'inflatable': 1.0, 'have': 2.0, 'just': 2.0, 'under': 1.0, 'difficult': 1.0, 'sides': 1.0, 'put': 1.0, 'as': 2.0, 'all': 1.0, 'to': 3.0, 'kind': 1.0, 'tub': 5.0, 'clean': 1.0, 'baby': 2.0, 'regular': 2.0, 'in': 2.0, 'without': 1.0, 'the': 8.0, 'place': 1.0, 'be': 1.0, 'force': 1.0, 'it': 2.0, 'truly': 1.0, 'since': 1.0, 'lot': 1.0, 'space': 1.0, 'at': 1.0, 'sink': 1.0, 'premium': 1.0, 'molded': 1.0, 'this': 2.0, 'with': 2.0, 'traditional': 1.0, 'unless': 2.0, 'you': 2.0, 'crevices': 1.0, 'should': 2.0, 'better': 1.0, 're': 1.0, 'off': 1.0, 'one': 1.0, 'harder': 1.0}
Word element => {'mesh': 1.0, 'buy': 1.0, 'now': 1.0, 'about': 2.0, 'm': 2.0, 'then': 1.0, 'even': 1.0, 'himself': 1.0, 'sit': 1.0, 'nature': 1.0, 'able': 1.0, 'plastic': 1.0, 'he': 1.0, 'bathtub': 2.0, 'for': 1.0, 'use': 1.0, 'keep': 1.0, 'll': 1.0, 'cloth': 1.0, 'wash': 1.0, 'while': 1.0, 'mount': 1.0, 'so': 3.0, 'other': 1.0, 'kitchen': 1.0, 'have': 5.0, 'try': 1.0, 'only': 1.0, 'concerned': 1.0, 'first': 1.0, 'it': 8.0, 'double': 1.0, 'counter': 1.0, 'with': 3.0, 'inflatable': 1.0, 'cushions': 1.0, 'held': 1.0, 'hand': 1.0, 'cannot': 1.0, 'hammock': 1.0, 'newborn': 1.0, 'kind': 1.0, 'tub': 1.0, 'another': 1.0, 'maneuver': 1.0, 'fits': 1.0, 'in': 3.0, 'air': 1.0, 'sink': 2.0, 'feature': 1.0, 'thinking': 1.0, 'i': 3.0, 'two': 1.0, 'used': 1.0, 'slippery': 2.0, 's': 3.0, 'a': 3.0, 'we': 4.0, 'the': 10.0, 'place': 1.0, 'but': 2.0, 'of': 1.0, 'rather': 1.0, 'our': 3.0, 'to': 5.0, 'bath': 1.0, 'on': 1.0, 'products': 1.0, 'support': 1.0, 'and': 5.0, 'by': 1.0, 'just': 1.0, 'son': 1.0, 'facing': 1.0, 'under': 1.0, 'difficult': 1.0, 'when': 1.0, 'you': 3.0, 'times': 1.0, 'barely': 1.0, 'if': 1.0, 'baby': 2.0, 'is': 1.0, 'really': 1.0, 'one': 1.0}
Word element => {'clean': 1.0, 'fabric': 1.0, 'durable': 1.0, 'inside': 1.0, 'space': 1.0, 'really': 2.0, 'plenty': 1.0, 'has': 1.0, 'also': 1.0, 'so': 1.0, 'people': 1.0, 'other': 2.0, 'noticed': 1.0, 'before': 1.0, 'reviews': 1.0, 'did': 1.0, 'bought': 1.0, 'uncomfortable': 1.0, 'straps': 1.0, 'cart': 1.0, 'shopping': 1.0, 'of': 3.0, 'there': 2.0, 'to': 3.0, 'all': 1.0, 'have': 1.0, 'and': 5.0, 'easy': 1.0, 'get': 3.0, 'just': 1.0, 'few': 2.0, 'improve': 1.0, 'are': 1.0, 'that': 3.0, 'trying': 1.0, 'putting': 1.0, 'thing': 1.0, 'about': 2.0, 'it': 8.0, 'this': 1.0, 'had': 1.0, 'purchased': 1.0, 'though': 1.0, 'diaper': 2.0, 'the': 8.0, 'first': 1.0, 'heavy': 1.0, 'problem': 1.0, 'things': 2.0, 'week': 1.0, 'diapers': 1.0, 'could': 1.0, 'a': 5.0, 'ago': 1.0, 'fit': 1.0, 'love': 1.0, 'tight': 2.0, 'another': 1.0, 'carying': 1.0, 'cute': 1.0, 'after': 2.0, 'everything': 1.0, 'you': 1.0, 'clothes': 1.0, 'bag': 4.0, 'need': 1.0, 'in': 4.0, 'read': 1.0, 'very': 3.0, 'than': 1.0, 'usually': 1.0, 'put': 3.0, '3': 1.0, 'i': 7.0, '4': 1.0, 'or': 1.0, 'bottles': 1.0, 'expecting': 1.0, 'was': 1.0, 'store': 1.0, 'but': 1.0, 'can': 3.0, 'change': 1.0, 'is': 5.0, 'around': 1.0}
Word element => {'feature': 1.0, 'away': 1.0, 'throw': 1.0, 'thus': 1.0, 'sun': 1.0, 'from': 1.0, 'yellow': 1.0, 'days': 1.0, '2': 1.0, 'nanny': 1.0, 'outside': 1.0, 'do': 1.0, 'put': 1.0, 'sounds': 1.0, 'tells': 1.0, 'purchase': 1.0, 'company': 1.0, 'after': 1.0, 'weight': 1.0, 'can': 1.0, '180': 1.0, 'but': 4.0, 'removable': 1.0, 'turned': 1.0, 'down': 1.0, 'etc': 1.0, 'wipes': 1.0, 'last': 1.0, 'here': 1.0, 'pair': 1.0, 'a': 6.0, 't': 1.0, 'we': 7.0, 'will': 1.0, 'could': 1.0, 'was': 3.0, 'clothes': 1.0, 'left': 1.0, 'wipe': 2.0, 'when': 1.0, 'causing': 1.0, 'hurt': 1.0, 'like': 2.0, 'of': 6.0, 'the': 13.0, 'diaper': 1.0, 'did': 1.0, 'standards': 1.0, 'would': 1.0, 'didn': 1.0, 'versatile': 1.0, 'course': 1.0, 'had': 3.0, 'wanted': 1.0, 'bag': 6.0, 'be': 2.0, 'cream': 1.0, 'my': 1.0, 'family': 1.0, 'and': 4.0, 'that': 1.0, 'because': 2.0, 'bought': 1.0, 'lot': 2.0, 'one': 1.0, 'durable': 1.0, 'this': 2.0, 'ruined': 1.0, 'it': 6.0, 'met': 1.0, 'have': 1.0, 'all': 1.0, 'pretty': 1.0, 'to': 10.0, 'our': 4.0, 'spilled': 1.0, 'extra': 1.0, 'inside': 2.0, 'those': 1.0, 'style': 1.0, 'not': 4.0, 'about': 3.0, 'm': 1.0, 'in': 2.0, 'also': 2.0, 'shoulders': 1.0, 'some': 2.0, 'able': 1.0, 'you': 2.0, 'things': 1.0, 'tried': 1.0, 'something': 2.0, 'straps': 2.0, 'clean': 4.0, 'suggestion': 1.0, 'next': 1.0, 'guessing': 1.0, 'always': 1.0, 'really': 1.0, 'material': 2.0, 'probably': 1.0, 'your': 1.0, 'make': 1.0, 'for': 4.0, 'upset': 1.0, 'ppb': 1.0, 'with': 1.0, 'cushions': 1.0, 'by': 1.0, 'home': 1.0, 'bottles': 1.0, 'is': 3.0, 'completely': 1.0, 'easy': 2.0, 'get': 1.0, 'very': 1.0, 'difficult': 1.0, 'pieces': 1.0, 'diapers': 1.0, 'cute': 1.0, 'are': 1.0, 'sacrifice': 1.0, 'visit': 1.0, 'everything': 2.0, 'on': 1.0, 'flight': 1.0, 'washer': 1.0, 'back': 1.0, 'year': 1.0, 'well': 1.0, 'i': 3.0, 'daughters': 1.0, 'out': 1.0, 'were': 1.0, 'stench': 1.0}
Word element => {'too': 1.0, 'case': 1.0, 'in': 1.0, 'built': 1.0, 'easy': 1.0, 'to': 1.0, 'be': 1.0, 'the': 1.0, 'outside': 1.0, 'isn': 1.0, 'changing': 1.0, 'love': 1.0, 'it': 1.0, 'pad': 1.0, 'this': 1.0, 'bag': 1.0, 't': 1.0, 'and': 1.0, 'cloth': 1.0, 'wipe': 1.0, 'so': 1.0, 'clean': 1.0, 'will': 1.0}
Word element => {'store': 1.0, 'lots': 1.0, 'there': 1.0, 'are': 1.0, 'cute': 1.0, 'design': 1.0, 'not': 1.0, 'forward': 1.0, 'sum': 1.0, 'snap': 1.0, 'exterior': 2.0, 'chore': 1.0, 'bit': 1.0, 'would': 1.0, 'from': 2.0, 'stains': 2.0, 'cleaning': 2.0, 'be': 2.0, 'carry': 1.0, 'washable': 1.0, 'save': 1.0, 'clean': 1.0, 'spot': 1.0, 'since': 2.0, 'appears': 2.0, 'color': 1.0, 'drawback': 1.0, 'print': 1.0, 'floral': 1.0, 'hip': 1.0, 'esque': 1.0, 'kiely': 1.0, 'orla': 1.0, 'it': 2.0, 'too': 1.0, 'diapering': 1.0, 'speaking': 1.0, 'i': 8.0, 'also': 2.0, 'magnetic': 1.0, 'place': 1.0, 'seem': 1.0, 'hands': 2.0, 'animals': 1.0, 'things': 2.0, 'wrangle': 1.0, 'moving': 1.0, 'interior': 2.0, 'never': 1.0, 'strip': 1.0, 'diaper': 3.0, 'sturdy': 1.0, 'wide': 1.0, 'look': 1.0, 'is': 9.0, 'more': 1.0, 'on': 3.0, 'removable': 1.0, 'dual': 1.0, 'work': 1.0, 'so': 1.0, 'can': 2.0, 'shoulder': 2.0, 'don': 2.0, 'no': 2.0, 'zipping': 1.0, 'keep': 1.0, 'great': 1.0, 'option': 1.0, 'down': 1.0, 'see': 1.0, 'off': 1.0, 'outer': 1.0, 'places': 1.0, 'crucial': 1.0, 'even': 2.0, 'keeps': 1.0, 'flap': 1.0, 'strap': 2.0, 'longer': 1.0, 'the': 16.0, 'of': 5.0, 'love': 3.0, 'yellow': 1.0, 'closure': 1.0, 'fabric': 3.0, 'for': 1.0, 'stuffed': 1.0, 'those': 2.0, 'looks': 1.0, 'my': 4.0, 'aesthetically': 1.0, 'our': 1.0, 'struggling': 1.0, 'to': 9.0, 'closures': 2.0, 'and': 10.0, 'tough': 1.0, 'closed': 1.0, 'this': 3.0, 'a': 8.0, 'fairly': 2.0, 't': 2.0, 's': 2.0, 'might': 1.0, 'items': 1.0, 'using': 1.0, 'light': 1.0, 'bag': 9.0, 'why': 1.0, 'just': 1.0, 'like': 1.0, 'zipper': 1.0, 'have': 3.0, 'primary': 1.0, 'velcro': 2.0, 'storage': 1.0, 'machine': 1.0, 'compartment': 1.0, 'toddler': 1.0, 'worry': 2.0, 'wallet': 1.0, 'need': 1.0, 'or': 2.0, 'about': 1.0, 'behind': 1.0, 'other': 1.0, 'slide': 2.0, 'while': 1.0, 'out': 1.0, 'in': 4.0, 'm': 1.0, 'cushion': 1.0, 'dirt': 1.0, 'best': 1.0, 'both': 1.0, 'transit': 1.0, 'finally': 1.0, 'very': 1.0, 'leaving': 1.0, 'backpack': 1.0, 'straps': 1.0, 'now': 1.0, 'free': 1.0, 'only': 2.0, 'waxed': 2.0, 'quickly': 3.0, 'that': 6.0, 'easily': 1.0, 'chase': 1.0, 'securely': 1.0, 'after': 2.0, 'her': 1.0, 'pockets': 1.0, 'with': 1.0, 'having': 1.0, 'inner': 2.0, 'perpetually': 1.0}
Word element => {'black': 2.0, 'pick': 1.0, 'times': 1.0, 'stocked': 1.0, 'trouble': 1.0, 'man': 1.0, 'have': 2.0, 'wipe': 1.0, 'tired': 1.0, 'was': 1.0, 'wishing': 1.0, 'wish': 2.0, 'this': 3.0, 'and': 3.0, 'only': 1.0, 's': 3.0, 'separate': 1.0, 't': 1.0, 'a': 9.0, 'might': 1.0, 'clean': 1.0, 'out': 2.0, 'because': 1.0, 'that': 4.0, 'incredibly': 1.0, 'any': 1.0, 'bags': 1.0, 'as': 2.0, 'other': 1.0, 'all': 2.0, 'to': 3.0, 'or': 1.0, 'need': 1.0, 'it': 9.0, 'much': 1.0, 'do': 2.0, 'changing': 1.0, 'put': 1.0, 'on': 2.0, 'but': 1.0, 'shoulder': 1.0, 'option': 1.0, 'if': 1.0, 'bigger': 1.0, 'material': 1.0, 'backpack': 1.0, 'folds': 1.0, 'kind': 1.0, 'style': 3.0, 'not': 2.0, 'over': 2.0, 'wash': 1.0, 'of': 4.0, 'the': 11.0, 'year': 2.0, 'after': 2.0, 'for': 4.0, 'opinion': 1.0, 'bag': 4.0, 'using': 1.0, 'hold': 1.0, 'like': 1.0, 'convenient': 1.0, 'i': 14.0, 'well': 1.0, 'see': 1.0, 'us': 1.0, 'also': 1.0, 'having': 1.0, 'subtle': 1.0, 'find': 1.0, 'does': 1.0, 'fine': 1.0, 'at': 1.0, 'is': 3.0, 'more': 2.0, 'largest': 1.0, 'travel': 1.0, 'woman': 1.0, 'inside': 1.0, 'down': 1.0, 'with': 2.0, 'pockets': 1.0, 'are': 1.0, 'useful': 1.0, 'however': 1.0, 'come': 1.0, 'what': 1.0, 'type': 1.0, 'had': 2.0, 'pad': 2.0, 'day': 2.0, 'gotten': 1.0, 'basis': 1.0, 'can': 2.0, 'so': 1.0, 'in': 3.0, 'm': 2.0, 'too': 1.0, 'pattern': 2.0, 'happy': 1.0, 'something': 2.0, 'would': 2.0, 'little': 2.0, 'real': 1.0, 'side': 1.0, 'my': 1.0, 'neutral': 1.0, 'they': 1.0, 'love': 2.0, 'solid': 1.0, 'be': 1.0, 'used': 1.0, 'by': 1.0}
Word element => {'every': 1.0, '25': 1.0, 'more': 1.0, 'end': 1.0, 'to': 8.0, 'all': 2.0, 'as': 1.0, 'our': 1.0, 'about': 1.0, 'no': 1.0, 'don': 1.0, 'over': 1.0, 'crap': 1.0, 'station': 1.0, 'we': 3.0, 's': 1.0, 'a': 2.0, '2': 2.0, 'have': 3.0, 'day': 1.0, 'pad': 1.0, 'smaller': 1.0, 'use': 3.0, 'travel': 2.0, 'nordstrom': 1.0, 'eddie': 1.0, 'always': 1.0, 'cons': 1.0, 'feature': 1.0, 'distances': 1.0, 'perfect': 1.0, 'last': 1.0, 'worry': 1.0, 'stuff': 1.0, 'compliments': 1.0, '100': 1.0, 'compact': 1.0, 'received': 1.0, 'given': 1.0, 'for': 7.0, 'best': 1.0, 'child': 1.0, 'year': 1.0, 'space': 1.0, 'your': 1.0, 'bag': 4.0, 'bought': 1.0, 'huge': 1.0, 'insulated': 1.0, 'buy': 1.0, 'sure': 1.0, 'get': 1.0, 'traveling': 1.0, 'you': 3.0, 'pros': 1.0, 'dig': 1.0, 'print': 1.0, 'on': 1.0, 'long': 1.0, 'cooler': 1.0, 'less': 3.0, '1': 3.0, 'icky': 1.0, 'very': 1.0, 'tables': 1.0, 'beautiful': 1.0, 've': 1.0, 'many': 2.0, 'it': 1.0, 'at': 1.0, 'is': 1.0, 'not': 1.0, 'even': 1.0, 'practical': 1.0, 'gets': 1.0, 'difficult': 1.0, '3': 2.0, 'older': 1.0, 'and': 2.0, 'start': 1.0, 'pack': 3.0, 'much': 1.0, 'changing': 2.0, 'do': 1.0, 'i': 3.0, 'well': 1.0, 'learn': 1.0, 'this': 3.0, 'bottle': 1.0, 'can': 1.0, 'so': 1.0, 't': 1.0, 'separate': 1.0, 'bauer': 1.0, 'bottles': 1.0, 'designed': 1.0, 'pockets': 3.0, 'with': 2.0, 'deep': 1.0, 'sale': 1.0, 'really': 1.0, 'underneath': 1.0, 'the': 5.0, 'prints': 1.0, 'of': 1.0, 'objects': 1.0, 'm': 1.0, 'in': 2.0}
Word element => {'way': 1.0, 'come': 1.0, 'now': 1.0, 'any': 1.0, 'to': 3.0, 'grab': 1.0, 'fingers': 1.0, 'try': 1.0, 'out': 2.0, 'getting': 1.0, 'at': 1.0, 'i': 3.0, 'and': 5.0, 'play': 1.0, 'hang': 2.0, 'ran': 1.0, 'first': 1.0, 'with': 1.0, 'them': 5.0, 'baby': 1.0, 'for': 2.0, 'in': 2.0, 'would': 1.0, 've': 1.0, 'damaged': 1.0, 'used': 1.0, 'her': 1.0, 'dryer': 1.0, 'already': 1.0, 'these': 1.0, 'great': 1.0, 'toys': 1.0, 'my': 1.0, 'pen': 1.0, 'they': 1.0, 'reach': 1.0, 'the': 4.0, 'playing': 1.0, 'she': 2.0, 't': 1.0, 's': 1.0, 'of': 1.0, 'things': 1.0, 'grabbing': 1.0, 'put': 1.0, 'next': 1.0, 'that': 1.0, 'loves': 1.0, 'little': 1.0, 'washer': 1.0, 'didn': 1.0, 'through': 1.0}
Word element => {'cherish': 1.0, 'arrive': 1.0, 'to': 2.0, 'bundle': 1.0, 'lil': 1.0, 'for': 1.0, 'the': 1.0, 'our': 1.0, 'hop': 1.0, 'new': 1.0, 'owl': 1.0, 'cute': 1.0, 't': 1.0, 'stuff': 1.0, 'skip': 1.0, 'very': 1.0, 'it': 1.0, 'love': 1.0, 'can': 1.0, 'wait': 1.0}
Word element => {'toys': 1.0, 'are': 1.0, 'what': 1.0, 'obsessed': 1.0, 'just': 1.0, 'she': 1.0, 'if': 1.0, 'bells': 1.0, 'with': 2.0, 're': 2.0, 'my': 1.0, 'not': 2.0, 'give': 1.0, 'but': 2.0, 'mo': 1.0, 'noises': 1.0, 'to': 3.0, 'birds': 1.0, 'rattles': 1.0, 'or': 3.0, 'loves': 1.0, 'niece': 1.0, 'around': 1.0, 'under': 1.0, 'really': 1.0, '1': 1.0, 'they': 3.0, 'these': 2.0, 'basically': 1.0, 'the': 1.0, 'in': 1.0, 'them': 2.0, 'like': 1.0, 'for': 1.0, 'wave': 1.0, 'loud': 1.0, 'cat': 1.0, 'distract': 1.0, 'different': 2.0, 'her': 4.0, 's': 1.0, 'a': 1.0, 'we': 1.0, 'favorite': 1.0, 'll': 1.0, 'clip': 1.0, 'move': 1.0, 'carrier': 1.0, 'incessant': 1.0, 'when': 1.0, 'onto': 1.0, 'm': 1.0, 'make': 1.0, '3': 1.0, 'on': 1.0, 'i': 1.0, 'sure': 1.0}
Word element => {'date': 1.0, 'well': 1.0, 'arrived': 1.0, 'promtly': 1.0, 'promised': 1.0, 'shipped': 1.0, 'it': 2.0, 'before': 1.0, 'loved': 1.0, 'this': 1.0, 'was': 2.0, 'given': 1.0, 'and': 1.0, 'as': 1.0, 'a': 1.0, 'the': 2.0, 'shower': 1.0, 'gift': 1.0, 'mother': 1.0, 'to': 1.0, 'be': 1.0}
Word element => {'crackle': 1.0, 'squeak': 1.0, 'they': 1.0, 'one': 1.0, 'from': 1.0, 'enjoyed': 1.0, 'old': 1.0, 'shaking': 1.0, 'product': 1.0, 'to': 1.0, 'throwing': 1.0, 'toy': 1.0, 'month': 1.0, 'rattle': 1.0, 'passing': 1.0, 'our': 1.0, 'hand': 1.0, 'development': 1.0, 'great': 2.0, 'these': 1.0, 'the': 1.0, 'other': 1.0, 'and': 2.0, 'little': 1.0, '7': 1.0, 'balls': 1.0, 'around': 1.0}
Word element => {'gift': 1.0, 'cute': 1.0, 'so': 1.0, 'own': 1.0, 'friend': 1.0, 'treetop': 1.0, 'hop': 1.0, 'skip': 1.0, 'of': 1.0, 'is': 1.0, 'daughter': 1.0, 'my': 1.0, 'fabrics': 2.0, 'then': 1.0, 'their': 4.0, 'that': 2.0, 'have': 4.0, 'thier': 1.0, 'stuffed': 1.0, 'as': 1.0, 'all': 1.0, 'to': 1.0, 'they': 3.0, 'products': 1.0, 'these': 1.0, 'feel': 1.0, 'great': 2.0, 'the': 2.0, 'your': 1.0, 'on': 2.0, 'with': 2.0, 'various': 1.0, 'bell': 1.0, 'plush': 1.0, 'little': 1.0, 'absolutely': 2.0, 'for': 1.0, 'love': 3.0, 'are': 4.0, 'guys': 1.0, 'made': 1.0, 'quality': 1.0, 'them': 2.0, 'wings': 1.0, 'texture': 1.0, 'rattle': 1.0, 'i': 2.0, 'two': 1.0, 'fabric': 1.0, 'different': 3.0, 'awesome': 1.0, 'features': 1.0, 'heads': 1.0, 'and': 4.0, 'crinkle': 1.0, 'feet': 1.0, 'third': 1.0, 'bodies': 1.0, 'just': 2.0, 'bellies': 1.0, 'item': 1.0, 'also': 1.0, 'in': 2.0, 'adorable': 2.0, 'a': 3.0, 'or': 2.0}
Word element => {'animal': 1.0, 'stuffed': 1.0, 'for': 2.0, 'ball': 1.0, 'a': 1.0, 'let': 1.0, 'or': 2.0, 'them': 2.0, 'was': 1.0, 'it': 1.0, 'with': 1.0, 'contrast': 1.0, 'his': 2.0, 'distract': 1.0, 'of': 2.0, 'think': 1.0, 'i': 1.0, 'there': 1.0, 'lo': 1.0, 'my': 1.0, 'one': 2.0, 'color': 1.0, 'the': 4.0, 'because': 1.0, 'hook': 1.0, 'early': 1.0, 'to': 1.0, 'seat': 1.0, 'jungly': 1.0, 'in': 2.0, 'brown': 1.0, 'more': 1.0, 'is': 1.0, 'owl': 1.0, 'big': 1.0, 'eyes': 1.0, 'like': 1.0, 'favorites': 1.0, 'so': 1.0, 'and': 2.0, 'cuddling': 1.0, 'car': 1.0, 'few': 1.0, 'mainly': 1.0, 'things': 2.0, 'will': 1.0, 'links': 1.0, 'throwing': 1.0, 'be': 1.0, 'him': 1.0, 'loves': 1.0, 'that': 1.0, 'owls': 1.0, 'remains': 1.0, 'have': 1.0, 'are': 1.0, 'well': 1.0, 'made': 1.0, 'you': 1.0, 'removable': 1.0, 'can': 1.0}
Word element => {'bit': 1.0, 'picture': 1.0, 'in': 1.0, 'but': 2.0, 'just': 1.0, 'friends': 1.0, 'ok': 1.0, 'as': 2.0, 'and': 1.0, 'are': 2.0, 'they': 4.0, 'a': 2.0, 'don': 1.0, 'of': 1.0, 's': 1.0, 'misleading': 1.0, 'advertised': 1.0, 'it': 1.0, 'soft': 1.0, 'treetop': 1.0, 'rattles': 2.0, 'one': 1.0, 'the': 2.0, 't': 1.0, 'other': 1.0, 'show': 1.0, 'pile': 1.0, 'on': 1.0, 'top': 1.0}
Word element => {'received': 1.0, 'owl': 1.0, 'super': 1.0, 's': 1.0, 'and': 1.0, 'very': 1.0, 'friends': 1.0, 'went': 1.0, 'well': 2.0, 'a': 1.0, 'forest': 1.0, 'was': 2.0, 'cute': 1.0, 'gift': 2.0, 'it': 1.0, 'with': 1.0, 'the': 2.0, 'of': 1.0, 'our': 1.0, 'nursery': 1.0, 'themed': 2.0, 'for': 1.0, 'rest': 1.0, 'baby': 1.0}
Word element => {'enough': 1.0, 'can': 1.0, 'simply': 1.0, 'of': 1.0, 'beating': 1.0, 'over': 1.0, 'all': 1.0, 'born': 1.0, 'when': 1.0, 'rattles': 1.0, 't': 1.0, 'the': 1.0, 'these': 1.0, 'used': 1.0, 'absolutely': 1.0, 'him': 1.0, 'he': 2.0, 'first': 1.0, 'was': 1.0, 'to': 2.0, 'my': 1.0, 'get': 1.0, 'and': 3.0, 'from': 1.0, 'son': 1.0, 'as': 1.0, 'finally': 1.0, 'adores': 1.0, 'we': 1.0, 'crap': 1.0, 'above': 1.0, 'out': 1.0, 'them': 4.0, 'dangling': 1.0, 'shaking': 1.0}
Word element => {'with': 1.0, 'enchanted': 1.0, 'cousin': 1.0, '16': 1.0, 'toddler': 1.0, 'old': 2.0, 'friend': 1.0, 'enjoy': 1.0, 'overall': 1.0, 'so': 1.0, 'interest': 1.0, 'keep': 1.0, 'around': 1.0, 'switch': 1.0, 'of': 1.0, 'white': 1.0, 'black': 1.0, 'these': 1.0, 'some': 1.0, 'had': 1.0, 'month': 1.0, 'she': 1.0, 'backs': 1.0, 'it': 1.0, 'd': 1.0, 'anything': 1.0, 'like': 1.0, 'cartoon': 1.0, 'obnoxiously': 1.0, 'not': 1.0, 'll': 1.0, 'soothing': 1.0, 'various': 1.0, 'patterns': 1.0, 'to': 4.0, 'was': 2.0, 'developing': 1.0, 'be': 2.0, 'that': 1.0, 'gender': 1.0, 'detached': 1.0, 'auditory': 1.0, 'tactile': 1.0, 'for': 3.0, 'wanted': 1.0, 'toys': 2.0, 'attached': 1.0, 'neutral': 1.0, 'them': 1.0, 'baby': 5.0, 'colors': 1.0, 'looking': 1.0, 'right': 1.0, 'things': 2.0, 'year': 1.0, 'girl': 1.0, '2': 1.0, 'but': 1.0, 'i': 5.0, 'wish': 1.0, 'this': 1.0, 'perfect': 1.0, 'my': 4.0, 'fits': 1.0, 'will': 1.0, 'sounds': 1.0, 'the': 5.0, 'if': 1.0, 'hop': 1.0, 'too': 2.0, 'soon': 1.0, 'and': 6.0, 'play': 1.0, 'skip': 1.0, 'mat': 1.0, 'textures': 1.0, 'improve': 1.0, 'are': 3.0, 'just': 1.0, 'arriving': 1.0, 'on': 3.0, 'think': 3.0, 'bright': 1.0, 'could': 1.0, 'a': 1.0, 's': 3.0, 'there': 1.0, 'systems': 1.0}
Word element => {'year': 1.0, 'them': 2.0, 'too': 1.0, 'when': 1.0, 'smiles': 1.0, 'colorful': 1.0, 'so': 1.0, 'loves': 1.0, 'which': 1.0, 'noise': 1.0, 'make': 1.0, 'that': 1.0, 'perfect': 1.0, 'are': 2.0, 'likes': 1.0, 'owls': 1.0, 'rings': 1.0, '2': 1.0, 'these': 1.0, 'the': 2.0, 'they': 2.0, 'has': 1.0, 'month': 1.0, 'plus': 1.0, '6': 1.0, 'his': 1.0, 'really': 1.0, 'fine': 1.0, 'grandson': 1.0, 'he': 4.0, 'this': 1.0, 'my': 1.0, 'started': 1.0, 'things': 1.0, 'motor': 1.0, 'holding': 1.0, 'ordered': 1.0, 'old': 2.0, 'i': 1.0, 'for': 3.0, 'using': 1.0, 'skills': 1.0, 'grabbing': 1.0, 'and': 2.0, 'sees': 1.0, 'on': 2.0}
Word element => {'entertained': 1.0, 'baby': 1.0, 'keeping': 1.0, 'large': 2.0, 'them': 1.0, 'a': 1.0, 'fairly': 1.0, 'completely': 1.0, 'i': 1.0, 'unique': 1.0, 'cute': 1.0, 'soooo': 1.0, 'are': 2.0, 'these': 1.0, 'rattle': 1.0, 'for': 1.0, 'one': 1.0, 'love': 1.0, 'and': 1.0, 'each': 1.0, 'they': 2.0, 'makes': 1.0, 'engaging': 1.0, 'have': 1.0, 'features': 1.0, 'sound': 1.0, 'perfect': 1.0}
Word element => {'words': 1.0, 'there': 1.0, 'plus': 1.0, 'they': 2.0, 're': 1.0, 'a': 1.0, 'girls': 1.0, 'good': 1.0, 'just': 1.0, 'but': 1.0, 'twin': 1.0, 'bought': 1.0, 'for': 1.0, 'requires': 1.0, 'them': 1.0, 'review': 1.0, 'loved': 1.0, 'adorable': 1.0, 'to': 1.0, 'and': 1.0, 'price': 1.0, 'nothing': 1.0, 'so': 1.0, 'else': 1.0, 'say': 1.0, 'more': 1.0, 'these': 1.0, 'the': 1.0}
Word element => {'dropping': 1.0, 'banging': 1.0, 'some': 1.0, 'able': 1.0, 'be': 1.0, 'around': 1.0, 'enough': 1.0, 'can': 1.0, 'because': 1.0, 'a': 1.0, 'take': 1.0, 'light': 2.0, 'hands': 1.0, 'manages': 1.0, 'really': 1.0, 'night': 1.0, 'i': 1.0, 'when': 1.0, 'toy': 1.0, 'to': 3.0, 'my': 1.0, 'as': 1.0, 'son': 1.0, 'on': 1.0, 'and': 1.0, 'get': 1.0, 'his': 1.0, 'double': 1.0, 's': 1.0, 'it': 3.0, 'this': 1.0, 'durable': 1.0}
Word element => {'every': 1.0, 'other': 1.0, 'used': 1.0, 'if': 1.0, 'inconvenient': 1.0, 'so': 1.0, 'need': 1.0, 'be': 1.0, 'likely': 1.0, 'illuminate': 1.0, 'out': 1.0, 'see': 1.0, 'does': 1.0, 'i': 2.0, 'night': 2.0, 'problem': 1.0, 'a': 1.0, 't': 1.0, 'kids': 1.0, 'this': 2.0, 'with': 1.0, 'it': 10.0, 'is': 7.0, 'love': 1.0, 'light': 2.0, 'cute': 1.0, 'not': 1.0, 'monitor': 1.0, 'little': 1.0, 'like': 1.0, 'using': 1.0, 'which': 1.0, 'nightlight': 1.0, 'beginning': 1.0, 'that': 1.0, 'however': 1.0, 'charger': 3.0, 'rather': 1.0, 'of': 2.0, 'thus': 1.0, 'won': 1.0, 'expected': 1.0, 'runs': 1.0, 'juice': 1.0, 'since': 1.0, 'main': 1.0, 'at': 2.0, 'less': 1.0, 'prefer': 1.0, 'and': 1.0, 'times': 1.0, 'when': 3.0, 'you': 3.0, 'the': 5.0, 'place': 1.0, 'cycle': 1.0, 'on': 3.0, 'your': 1.0, 'any': 1.0, 'to': 3.0, 'all': 1.0, 'sleep': 1.0, 'until': 1.0, 'have': 2.0, 'charged': 1.0, 'dead': 1.0, 'would': 1.0}
Word element => {'improvement': 1.0, 'nice': 1.0, 'around': 1.0, 'seems': 1.0, 'and': 1.0, 'better': 1.0, 'light': 1.0, 'base': 2.0, 'fits': 1.0, 'is': 1.0, 'looks': 1.0, 'one': 1.0, 'previous': 1.0, '5': 1.0, 'months': 1.0, 'a': 3.0, 'specifically': 1.0, 'more': 1.0, 'the': 5.0, 'too': 2.0, 'gave': 1.0, 'however': 1.0, 'star': 1.0, 'i': 1.0, 'edition': 1.0, 'wound': 1.0, 'problems': 1.0, 'up': 1.0, 'few': 1.0, 'later': 1.0, 'colors': 1.0, 'like': 1.0, 'working': 1.0, 'durable': 1.0, 'it': 3.0, 'with': 1.0, 'stopped': 1.0, 'this': 1.0}
Word element => {'animal': 1.0, 'replaced': 1.0, 't': 1.0, 'flexible': 1.0, 'not': 1.0, 'hug': 1.0, 'hold': 1.0, 'perfectly': 1.0, 'as': 1.0, 'some': 1.0, 'very': 1.0, 'additions': 1.0, 'little': 1.0, 'nice': 1.0, 'helps': 1.0, 'large': 1.0, 'by': 1.0, 'just': 1.0, 'companion': 1.0, 'clever': 1.0, 'scary': 1.0, 'time': 1.0, 'potty': 1.0, 'be': 1.0, 'get': 1.0, 'left': 1.0, 'recommended': 1.0, 'and': 7.0, 'so': 1.0, 'can': 1.0, 'mode': 1.0, 'but': 2.0, 'victorian': 1.0, 'unit': 1.0, 'it': 7.0, 'she': 1.0, 'variety': 1.0, 'mobi': 1.0, 'highly': 1.0, 'this': 3.0, 'minute': 1.0, 'full': 1.0, 'older': 1.0, 'since': 2.0, 'is': 6.0, 'at': 3.0, 'intuitive': 1.0, 'old': 1.0, 'plastic': 1.0, '8': 1.0, 'change': 1.0, 'favorite': 1.0, 'year': 1.0, 'off': 1.0, 'an': 1.0, 'glomate': 3.0, 'night': 3.0, 'things': 1.0, 'having': 1.0, 'granddaughter': 1.0, 'has': 2.0, 'are': 1.0, 'plus': 1.0, 'onto': 1.0, 'colors': 1.0, 'the': 10.0, 'of': 2.0, 'become': 1.0, 'perfect': 1.0, 'bed': 1.0, 'for': 4.0, 'visits': 2.0, 'ones': 1.0, 'one': 1.0, 'when': 1.0, 'that': 1.0, 'easily': 1.0, 'our': 3.0, 'to': 8.0, 'sleep': 1.0, 'hasn': 1.0, 'quickly': 1.0, 'slowly': 1.0, 'stuffed': 1.0, 'shutting': 1.0, 'comes': 2.0, 'room': 1.0, 'before': 1.0, 'over': 1.0, 'a': 1.0, 'period': 1.0, 'allow': 1.0, 'from': 1.0, 'charge': 1.0, 'house': 1.0, 'instantly': 1.0, 'or': 1.0, 's': 1.0, 'plug': 1.0, 'on': 2.0, 'if': 2.0, 'taken': 1.0, 'set': 1.0, 'base': 3.0, 'lovie': 1.0, 'like': 1.0, 'cfh': 1.0, 'light': 1.0, 'using': 1.0, 'sized': 1.0, 'late': 1.0, 'made': 2.0, 'her': 4.0, 'use': 1.0, 'in': 2.0, 'requires': 1.0, 'several': 1.0, 'tykelight': 1.0, 'hours': 1.0, 'capacity': 1.0, 'during': 1.0, 'somewhat': 1.0, 'day': 1.0, '15': 1.0, 'ability': 1.0, 'well': 2.0, 'rainbow': 1.0}
Word element => {'security': 1.0, 'loved': 1.0, 'item': 1.0, 'this': 3.0, 'it': 1.0, 'old': 1.0, 'parents': 1.0, 'love': 1.0, 'for': 1.0, 'gift': 1.0, 'cool': 1.0, 'as': 3.0, 'up': 1.0, '1yr': 1.0, 'gave': 1.0, 'kids': 1.0, 'a': 4.0, 'is': 1.0, 'really': 1.0, 'the': 1.0, 'light': 1.0, 'grow': 1.0, 'they': 1.0, 'will': 1.0, 'little': 1.0}
Word element => {'recommend': 1.0, 'definitely': 1.0, 'safe': 1.0, 'very': 2.0, 'through': 1.0, 'cool': 1.0, 'color': 1.0, 'way': 1.0, 'this': 1.0, 'kids': 1.0, 'light': 2.0, 'came': 1.0, 'had': 2.0, 'now': 1.0, 'for': 1.0, 'love': 2.0, 'absolutely': 1.0, 'and': 4.0, 'rechargeable': 2.0, 'rainbow': 1.0, 'issue': 1.0, 'vessel': 1.0, 'my': 2.0, '4': 1.0, 'to': 1.0, 'all': 2.0, 'have': 2.0, 'previously': 1.0, 'pick': 1.0, 'never': 1.0, 'three': 1.0, 'also': 1.0, 'batteries': 1.0, 'been': 1.0, 'of': 2.0, 'there': 1.0, '7': 1.0, 'ages': 2.0, 'the': 4.0, 'these': 1.0, 'them': 1.0, 'idea': 1.0, 'boys': 1.0, '10': 1.0, 'change': 1.0, 'can': 1.0, 'but': 2.0, 'an': 1.0, 'loose': 1.0, 'or': 2.0, 'be': 1.0, 'replaced': 1.0, 'even': 1.0, 'colors': 1.0, 'though': 1.0, 'they': 2.0, 'were': 1.0, 'it': 1.0, 'mobi': 1.0, 'better': 1.0, 'is': 1.0, 'built': 1.0, 'a': 2.0, 'we': 1.0, 's': 1.0, 'with': 1.0, 'battery': 1.0}
Word element => {'new': 1.0, 'disappointed': 1.0, 'but': 1.0, 'world': 1.0, 'end': 1.0, 'nap': 1.0, 'crib': 1.0, 'his': 2.0, 'around': 1.0, 'that': 3.0, 'to': 5.0, 'as': 2.0, 'up': 2.0, 'go': 2.0, 't': 2.0, 'we': 1.0, 'a': 1.0, 'woken': 1.0, 'never': 1.0, 'would': 1.0, 'be': 1.0, 'son': 1.0, 'gets': 1.0, 'middle': 1.0, 'days': 1.0, 'without': 1.0, 'almost': 1.0, 'now': 1.0, 'was': 3.0, 'recommend': 1.0, 'doesn': 1.0, 'is': 5.0, 'at': 2.0, 'keep': 1.0, 'night': 4.0, 'nightlight': 2.0, 'enough': 2.0, 'house': 1.0, 'infant': 1.0, 'sleep': 2.0, 'back': 2.0, 'an': 1.0, 'smooth': 1.0, 'weren': 1.0, 'with': 2.0, 'few': 1.0, 'this': 1.0, 'scared': 1.0, 'him': 1.0, 'it': 8.0, 'right': 2.0, 'sleeps': 1.0, 'button': 1.0, 'until': 1.0, 'and': 7.0, 'one': 1.0, 'too': 1.0, 'getting': 1.0, 'in': 2.0, 'cannot': 1.0, 'sleeping': 1.0, 'lit': 1.0, 'when': 4.0, 'hot': 1.0, 'just': 1.0, 'light': 1.0, 'months': 1.0, 'get': 2.0, 'every': 2.0, 'if': 1.0, 'for': 1.0, '10': 1.0, 'wakes': 1.0, 'the': 10.0, 'of': 2.0, 'so': 1.0, 'can': 1.0, 'binkie': 1.0, '1': 1.0, 'find': 1.0, 'not': 2.0, 'my': 2.0, 'me': 1.0, 'always': 2.0, 'took': 1.0, 'base': 1.0, 'after': 1.0, 'on': 2.0, 'long': 1.0, 'fully': 1.0, 'charged': 1.0, 'had': 1.0, 'goes': 1.0, 'walking': 1.0, 'perfect': 1.0, 'bed': 1.0, 'will': 1.0, 'bring': 1.0, 'morning': 1.0, 'are': 1.0, 'only': 1.0, 'traveling': 1.0, 'complaint': 1.0, 'he': 8.0, 'bottom': 1.0, 'i': 5.0, 'broke': 1.0, 'second': 1.0, 'buy': 1.0, 'about': 1.0}
Word element => {'5': 1.0, 'would': 1.0, 'had': 1.0, 'bright': 1.0, 'put': 1.0, 'want': 1.0, 'wherever': 1.0, 'their': 1.0, 'light': 2.0, 'them': 1.0, 'bed': 1.0, 'can': 1.0, 'times': 1.0, 'am': 1.0, 'bottom': 1.0, 'feature': 1.0, 'or': 3.0, 'whichever': 1.0, 'eerily': 1.0, 'glows': 1.0, 'as': 2.0, 'to': 7.0, 'charger': 1.0, 'take': 1.0, 'then': 2.0, 'luck': 1.0, 'flashlight': 3.0, 'must': 1.0, 'have': 2.0, 'ad': 1.0, 'blue': 1.0, 'more': 1.0, 'under': 1.0, 'green': 1.0, 'believe': 1.0, 'day': 1.0, 'control': 1.0, 'red': 1.0, 'with': 2.0, 'is': 4.0, 'sits': 1.0, 'very': 1.0, 'use': 2.0, 'smaller': 1.0, 'effect': 2.0, 'all': 1.0, 'ghostly': 1.0, 'afraid': 1.0, 'stars': 2.0, 'give': 1.0, 'black': 1.0, 'a': 8.0, 'might': 1.0, 'on': 3.0, 'your': 1.0, '3': 1.0, 'development': 1.0, 'bigger': 1.0, 'if': 2.0, 'clear': 1.0, 'little': 1.0, 'two': 1.0, 'its': 1.0, 'research': 1.0, 'this': 2.0, 'kids': 1.0, 'it': 10.0, 'than': 1.0, 'because': 1.0, 'but': 1.0, 'wants': 1.0, 'difficult': 1.0, 'nightlight': 1.0, 'you': 2.0, 'night': 1.0, 'push': 1.0, 'color': 1.0, 'dozens': 1.0, 'not': 2.0, 'enough': 2.0, 'off': 1.0, 're': 1.0, 'button': 1.0, 'turned': 1.0, 'round': 1.0, 'the': 10.0, 'of': 6.0, 'get': 1.0, 'i': 4.0, 'rainbow': 2.0, 'shape': 1.0, 'head': 1.0, 'speaks': 1.0, 'needs': 1.0, 'ends': 1.0, 'while': 1.0, 'glomate': 1.0, 'reminiscent': 1.0, 'after': 1.0, 'ghost': 1.0, 'and': 8.0, 'arms': 1.0, 'product': 3.0, 'child': 1.0, 'ghosts': 1.0, 'really': 1.0, 'out': 1.0, 'here': 1.0, 's': 1.0, 'giving': 1.0, 'some': 1.0, 'covers': 1.0, 'like': 1.0, 'they': 2.0}
Word element => {'technology': 1.0, 'cheaper': 1.0, 'recommend': 1.0, 'availability': 1.0, 'due': 1.0, 'inferior': 1.0, 'market': 1.0, 'removed': 1.0, 'will': 1.0, 'they': 1.0, 'sleeping': 1.0, 'my': 2.0, 'eventually': 1.0, 'alternating': 1.0, 'do': 1.0, 'much': 1.0, 'works': 1.0, 'when': 1.0, 'one': 2.0, 'too': 1.0, 'and': 7.0, 'often': 1.0, 'green': 1.0, 'plugged': 1.0, 'around': 1.0, 'sleeps': 1.0, 'not': 4.0, 'itself': 1.0, 'every': 1.0, 'stay': 1.0, 'turn': 1.0, 'in': 5.0, 'brightly': 2.0, 'so': 3.0, 'just': 1.0, 'a': 3.0, 'now': 1.0, 'was': 1.0, 'simple': 1.0, 'less': 1.0, 'up': 2.0, 'product': 1.0, 'toddler': 1.0, 'unplug': 1.0, 'last': 2.0, 's': 7.0, 'plug': 2.0, 'need': 1.0, 'or': 3.0, 'new': 2.0, 'time': 2.0, 'model': 1.0, 'wrap': 1.0, 'this': 3.0, 'perfect': 1.0, 'it': 14.0, 'is': 4.0, 'sits': 1.0, 'at': 2.0, 'either': 1.0, 'i': 3.0, 'light': 3.0, 'charges': 1.0, 'seems': 1.0, 'off': 1.0, 'on': 4.0, 'rechargeable': 4.0, 'battery': 4.0, 'no': 1.0, 'between': 1.0, 'red': 1.0, 'with': 2.0, 'that': 8.0, 'because': 1.0, 'way': 1.0, 'than': 1.0, 'fantastic': 1.0, 'contacts': 1.0, 'to': 6.0, 'all': 1.0, 'be': 1.0, 'you': 1.0, 'meant': 2.0, 'night': 1.0, 'but': 2.0, 'most': 1.0, 'needed': 1.0, 'have': 1.0, 'version': 1.0, 'ability': 1.0, 'took': 1.0, 'base': 2.0, 'lights': 1.0, 'cloth': 1.0, 'keeps': 1.0, 'replaced': 1.0, 'dark': 1.0, 'poor': 2.0, 'diffuse': 1.0, 'besides': 2.0, 'from': 2.0, 'mostly': 1.0, 'design': 1.0, 'charge': 1.0, 'charging': 1.0, 'are': 1.0, 'working': 1.0, 'for': 3.0, '10': 1.0, 'hours': 1.0, 'complicated': 1.0, 'son': 1.0, 'device': 1.0, 'of': 4.0, 'the': 14.0, 'longer': 1.0, 'maximum': 1.0, 'overly': 1.0, 'lifetime': 1.0}
Word element => {'after': 1.0, 'doesn': 1.0, 'again': 1.0, 'old': 1.0, '2yr': 1.0, 'not': 1.0, 'no': 1.0, 'green': 1.0, 'red': 1.0, 'get': 2.0, 'with': 1.0, 'bit': 1.0, 'requires': 1.0, 'sometimes': 1.0, 'evilcharging': 1.0, 'was': 1.0, 'packaging': 1.0, 'colorscons': 1.0, 'level': 1.0, '15min': 1.0, 'on': 5.0, 'put': 3.0, 'if': 1.0, 'stay': 1.0, 'to': 6.0, 'least': 1.0, 'select': 1.0, 'another': 1.0, 'playing': 1.0, 'other': 1.0, 've': 1.0, 'several': 2.0, 'thing': 1.0, 'and': 7.0, 'seated': 1.0, 'pattern': 1.0, 'for': 3.0, 'got': 2.0, 'base': 2.0, 'even': 1.0, 'around': 2.0, 'color': 1.0, 'my': 3.0, 'reasons': 1.0, 'or': 2.0, '2am': 2.0, 'dark': 1.0, 'issue': 1.0, 'into': 2.0, 'that': 3.0, 'loves': 1.0, 'light': 4.0, 'looking': 1.0, 'blue': 1.0, 'day': 1.0, 'change': 1.0, 'already': 1.0, 'it': 14.0, 'sweeps': 1.0, 'take': 1.0, 'then': 2.0, 'through': 1.0, 'he': 2.0, 'far': 1.0, 'nice': 1.0, 'nightlight': 1.0, 'trainded': 1.0, 'pros': 1.0, 'portable': 1.0, 'bathroom': 1.0, 'colors': 3.0, 'don': 1.0, 'way': 1.0, 'you': 5.0, 's': 6.0, 'a': 6.0, 't': 3.0, 'off': 1.0, 'see': 2.0, 'by': 1.0, 'bright': 1.0, 'can': 3.0, 'so': 7.0, 'enough': 2.0, 'is': 1.0, 'at': 3.0, 'without': 1.0, 'like': 3.0, 'bad': 1.0, 'are': 1.0, 'use': 1.0, 'i': 5.0, 'has': 2.0, 'watching': 1.0, 'battery': 1.0, 'really': 2.0, 'your': 1.0, 'feel': 1.0, 'words': 1.0, 'kids': 1.0, 'grip': 1.0, 'this': 1.0, 'glad': 1.0, 'default': 1.0, 'baby': 1.0, 'also': 1.0, 'will': 1.0, 'm': 1.0, 'in': 1.0, 'the': 7.0, 'of': 2.0, 'but': 1.0, 'mode': 1.0, 'multi': 1.0, 'toddler': 1.0, 'proof': 1.0, 'internal': 1.0, 'middle': 1.0, 'hours': 1.0, 'endeasy': 1.0, 'sun': 1.0, 'gently': 1.0, 'charge': 2.0, 'carry': 2.0, 'toddle': 1.0, 'rechargeable': 1.0, 'grab': 1.0, 'good': 1.0}
Word element => {'house': 1.0, 'rooms': 1.0, 'most': 1.0, 'work': 1.0, 'obscure': 1.0, 'some': 1.0, 'could': 1.0, 'sculpture': 1.0, 'modern': 1.0, 'like': 1.0, 'more': 1.0, 'childish': 1.0, 'but': 1.0, 'this': 3.0, 'kids': 1.0, 'perfect': 1.0, 'playtime': 1.0, 'don': 1.0, 'child': 1.0, 'items': 1.0, 'indicator': 1.0, 'since': 2.0, 'who': 1.0, 'little': 1.0, 'found': 1.0, 'grandson': 1.0, 'in': 2.0, 'out': 2.0, 'power': 1.0, 'than': 1.0, 'and': 3.0, 'act': 1.0, 'he': 2.0, 'loves': 1.0, 'that': 2.0, 'breaker': 1.0, 'for': 2.0, 'where': 1.0, 'stories': 1.0, 'got': 1.0, 'we': 1.0, 'a': 7.0, 'soft': 1.0, 'stairs': 1.0, 'might': 1.0, 'with': 1.0, 'it': 4.0, 'behind': 1.0, 'lighted': 1.0, 'i': 3.0, 'or': 3.0, 'feature': 1.0, 'goes': 1.0, 'discreetly': 1.0, 'good': 1.0, 'enthralled': 1.0, 'be': 3.0, 'my': 1.0, 'color': 1.0, 'held': 1.0, 'too': 1.0, 'one': 2.0, 'lights': 1.0, 'even': 3.0, 'base': 2.0, 'charge': 1.0, 'when': 1.0, 'you': 2.0, 'by': 1.0, 'light': 1.0, 'placed': 1.0, 'just': 1.0, 't': 1.0, 'likes': 1.0, 'person': 1.0, 'of': 2.0, 'the': 12.0, 'longer': 1.0, 'at': 1.0, 'is': 2.0, 'to': 1.0, 'changing': 1.0, 'much': 1.0, 'better': 1.0, 'deal': 1.0, 'others': 1.0, 'these': 1.0, 'on': 1.0, 'navigating': 1.0, 'market': 1.0, 'can': 2.0, 'so': 2.0, 'needs': 1.0, 'not': 2.0, 'are': 2.0, 'shape': 2.0, 'handy': 1.0, 'makes': 1.0, 'if': 2.0, 'have': 2.0, 's': 3.0, 'glow': 1.0, 'great': 1.0, 'emergency': 1.0, 'finding': 1.0, 'flashlights': 1.0, 'portable': 2.0, 'kept': 1.0, 'other': 1.0, 'an': 1.0, 'wish': 1.0, 'adult': 1.0, 'wants': 1.0, 'nightlight': 1.0}
Word element => {'awsome': 1.0, 's': 1.0, 'while': 1.0, 'charger': 1.0, 'issues': 1.0, 'were': 1.0, 'than': 1.0, 'over': 1.0, 'on': 1.0, 'when': 1.0, 'terrible': 1.0, 'problem': 2.0, 'station': 1.0, 'sometimes': 1.0, 'lemons': 1.0, 'stop': 1.0, 'time': 1.0, 'new': 2.0, 'would': 2.0, 'position': 1.0, 'munchkin': 2.0, 'enough': 1.0, 'safe': 1.0, 'is': 6.0, 'have': 1.0, 'pretty': 1.0, 'to': 4.0, 'our': 1.0, 'naplight': 1.0, 'several': 1.0, 'for': 1.0, '10': 1.0, 'eventually': 1.0, 'get': 2.0, 'and': 5.0, 'very': 1.0, 'read': 1.0, 'little': 1.0, 'charging': 2.0, 'son': 1.0, 'if': 1.0, 'still': 1.0, 'the': 9.0, 't': 1.0, 'a': 6.0, 'does': 1.0, 'you': 1.0, 'night': 1.0, 'i': 6.0, 'becomes': 1.0, 'just': 5.0, 'love': 2.0, 'where': 1.0, 'even': 1.0, 'lights': 1.0, 'actually': 1.0, 'few': 1.0, 'this': 2.0, 'perfect': 1.0, 'it': 13.0, 'so': 2.0, 'can': 1.0, 'but': 1.0, 'give': 1.0, 'my': 2.0, 'me': 1.0, 'itself': 1.0, 'not': 2.0, 'nap': 1.0, '5': 1.0, 'before': 1.0, 'however': 1.0, 'review': 1.0, 'has': 1.0, 'harder': 2.0, 'daughter': 1.0, 'star': 1.0, 'right': 1.0, 'takes': 1.0, 'ours': 1.0, 'minutes': 1.0, 'wiggle': 1.0, 'into': 1.0, 'lasts': 1.0, 'tyke': 2.0, 'that': 1.0, 'one': 1.0, 'spot': 1.0, 'fantastic': 1.0, 'great': 1.0, 'will': 3.0, 'purchased': 1.0, 'all': 2.0, 'other': 1.0, 'take': 1.0, 'reviews': 1.0, 'puppy': 1.0, 'mentioned': 1.0, 'light': 5.0, 'charges': 1.0, 'with': 2.0, 'charge': 2.0, 'design': 1.0, 'flaw': 1.0, 'like': 1.0, 'touchy': 1.0, 'better': 1.0}
Word element => {'had': 1.0, 'haven': 1.0, 'after': 1.0, 'love': 1.0, 'touch': 1.0, 'anything': 1.0, 'hot': 1.0, 'safe': 2.0, 'there': 1.0, 'off': 1.0, 'taken': 1.0, 'problems': 2.0, 't': 2.0, 'a': 1.0, 'going': 1.0, 'still': 2.0, 'years': 2.0, 'time': 1.0, 'is': 5.0, 'more': 1.0, 'of': 1.0, 'once': 1.0, 'settings': 1.0, 'would': 1.0, 'figured': 1.0, 'came': 1.0, 'no': 2.0, 'newer': 1.0, 'two': 1.0, 'i': 7.0, 'get': 1.0, 'model': 1.0, 'easy': 1.0, 'needed': 1.0, 'doesn': 1.0, 'was': 2.0, 'any': 1.0, 'sleep': 1.0, 'to': 4.0, 'turned': 1.0, 'loves': 1.0, 'that': 5.0, 'evenings': 1.0, 'glomate': 1.0, 'liked': 1.0, 'and': 5.0, 'originally': 1.0, 'got': 1.0, 'later': 1.0, 'charge': 1.0, 'daughter': 2.0, 'try': 1.0, 'only': 1.0, 'timer': 2.0, 'with': 4.0, 'minute': 1.0, 'this': 1.0, 'fact': 2.0, 'themobi': 1.0, 'my': 3.0, 'strong': 1.0, 'portable': 1.0, 'on': 2.0, 'turns': 1.0, 'the': 9.0, 'replace': 1.0, 'leaves': 1.0, 'be': 1.0, 'loved': 1.0, 'charger': 4.0, 'or': 3.0, 'it': 16.0, 'loses': 2.0, 'which': 1.0, 'tykelight': 1.0, 'nice': 1.0, '2': 1.0, 'can': 1.0, 'in': 1.0, 'if': 2.0, 'when': 1.0, 'you': 1.0, 'lose': 1.0, 'perfectly': 1.0, 'complaint': 1.0, 'kept': 1.0, 'power': 3.0, 'burning': 1.0, 'out': 2.0}
Word element => {'all': 1.0, 'they': 1.0, 'then': 1.0, 'just': 2.0, 'on': 1.0, 'base': 1.0, 'sitting': 1.0, 'about': 1.0, 'flaky': 1.0, 'little': 1.0, 'bought': 1.0, 'disappointed': 1.0, 'charge': 1.0, 'kids': 1.0, 'at': 1.0, 'two': 2.0, 'last': 1.0, 'my': 1.0, 't': 1.0, 'these': 1.0, 'the': 2.0, 'of': 3.0, 'charging': 1.0, 'worked': 1.0, 'so': 2.0, 'for': 3.0, 'one': 1.0, 'a': 3.0, 'days': 1.0, 'them': 1.0, 'getting': 1.0, 'couple': 2.0, 'weeks': 1.0, 'other': 1.0, 'began': 1.0, 'wouldn': 1.0, 'christmas': 1.0, 'troubles': 1.0, 'with': 1.0}
Word element => {'has': 1.0, 'mine': 1.0, 'zoning': 1.0, 'parents': 1.0, 'for': 4.0, 'afraid': 1.0, 'note': 1.0, 'cycle': 1.0, 'while': 1.0, 'timer': 2.0, 'with': 2.0, 'colors': 2.0, 'but': 2.0, 'work': 1.0, 'on': 3.0, 'gives': 1.0, 'when': 2.0, 'idea': 1.0, 'multiple': 1.0, 'be': 2.0, 'old': 1.0, 'feedings': 1.0, 'to': 6.0, 'as': 1.0, 'sleep': 1.0, 'other': 1.0, 'all': 2.0, 'pressing': 1.0, 'switch': 2.0, 'nose': 1.0, 'my': 2.0, 'get': 1.0, 'and': 4.0, 'across': 1.0, 'tall': 1.0, 'turns': 1.0, 'great': 2.0, 'consistently': 1.0, 'staring': 1.0, 'a': 8.0, 'go': 2.0, 'then': 1.0, 'we': 1.0, 'him': 1.0, 'it': 9.0, 'covers': 1.0, 'kids': 1.0, 'likes': 1.0, 'product': 1.0, 'year': 1.0, 'around': 2.0, 'his': 1.0, 'son': 2.0, 'difficult': 1.0, 'under': 1.0, 'setting': 2.0, 'must': 1.0, 'have': 1.0, 'does': 1.0, 'because': 1.0, 'just': 2.0, 'light': 2.0, 'this': 1.0, 'few': 1.0, 'not': 2.0, 'those': 1.0, 'press': 1.0, 'putting': 1.0, 'i': 1.0, 'check': 1.0, 'in': 2.0, 'times': 1.0, 'middle': 1.0, 'hours': 1.0, 'he': 1.0, 'glomate': 1.0, 'change': 1.0, 'up': 1.0, 'out': 1.0, 'is': 2.0, 'at': 1.0, 'since': 1.0, 'faulty': 1.0, 'taken': 1.0, 'room': 1.0, 'dresser': 1.0, '3': 1.0, 'telling': 1.0, 'would': 4.0, 'boy': 1.0, 'off': 1.0, 'house': 1.0, 'asleep': 1.0, 'happily': 1.0, 'good': 2.0, 'the': 10.0, 'of': 2.0, 'dark': 2.0, 'night': 2.0, 'bed': 1.0, 'walking': 1.0}
Word element => {'hopefully': 1.0, 'inside': 1.0, 'parts': 1.0, 'none': 1.0, 'do': 1.0, 'all': 1.0, 'asleep': 1.0, 'crib': 1.0, 'market': 1.0, 'teethers': 1.0, 'enough': 1.0, 'teething': 1.0, 'want': 1.0, 'd': 1.0, 'falls': 1.0, 'as': 1.0, 'sealed': 1.0, 'replaceable': 1.0, 'smoothy': 1.0, 'vinyl': 1.0, 's': 1.0, 'overall': 1.0, 'touch': 1.0, 'night': 1.0, 'we': 1.0, 'like': 2.0, 'inexpensive': 1.0, 'old': 2.0, 'child': 2.0, 'year': 1.0, '2': 1.0, 'my': 2.0, 'times': 1.0, 'sit': 1.0, 'when': 1.0, 'his': 1.0, 'around': 1.0, 'so': 2.0, 'friends': 1.0, 'know': 1.0, 'bit': 1.0, 'surprisingly': 1.0, 'pluses': 1.0, 'is': 5.0, 'lighting': 1.0, 'light': 3.0, 'and': 5.0, 'similar': 1.0, 'there': 2.0, 'also': 1.0, 'would': 1.0, 'something': 1.0, 'impressive': 1.0, 'useful': 2.0, 'doesn': 2.0, 'but': 4.0, 'pregnant': 1.0, 'be': 3.0, 'by': 1.0, 'bright': 1.0, 'will': 1.0, 'could': 1.0, 't': 3.0, 'before': 1.0, 'tightly': 1.0, 'comes': 1.0, 'room': 1.0, 'it': 15.0, 'are': 3.0, 'first': 1.0, 'few': 4.0, 'this': 2.0, 'soft': 4.0, 'such': 1.0, 'for': 4.0, 'were': 1.0, 'wanted': 1.0, 'buying': 1.0, 'with': 4.0, 'to': 8.0, 'out': 1.0, 'battery': 2.0, 'years': 2.0, 'in': 5.0, 'm': 1.0, 'charging': 1.0, 'baby': 1.0, 'function': 1.0, 'too': 1.0, 'try': 1.0, 'a': 10.0, 'tiny': 1.0, 'eyes': 1.0, 'its': 1.0, 'got': 1.0, 'don': 1.0, 'partner': 1.0, 'use': 1.0, 'lasts': 1.0, 'that': 5.0, 'breast': 1.0, 'safety': 1.0, 'tired': 1.0, 'hurt': 1.0, 'does': 1.0, 'find': 1.0, 'surface': 1.0, 'illuminate': 1.0, 'if': 1.0, 'certainly': 1.0, 'every': 1.0, 'the': 14.0, 'of': 3.0, 'lightbulb': 1.0, 'wake': 1.0, 'giant': 1.0, 'think': 1.0, 'impressed': 1.0, 'on': 3.0, 'area': 1.0, 'make': 1.0, 'feeding': 1.0, 'minuses': 1.0, 'not': 3.0, 'they': 2.0, 'sleeping': 1.0, 'always': 1.0, 'has': 1.0, 'putting': 1.0, 'i': 8.0, 'rainbow': 1.0, 'replaced': 1.0, 'dark': 1.0, 'up': 1.0, 'takes': 1.0, 'button': 2.0, 'finagling': 1.0, 'even': 1.0, 'feed': 1.0, 'base': 1.0, 'work': 2.0, 'hard': 3.0, 'bed': 1.0, 'range': 1.0, 'several': 1.0, 'stand': 2.0, 'own': 1.0, 'move': 1.0, 'lithium': 2.0, 'did': 2.0, 'have': 1.0}
Word element => {'you': 1.0, 'room': 1.0, 'but': 1.0, 'now': 2.0, 'lights': 2.0, 'so': 3.0, 'while': 1.0, 'at': 1.0, 'since': 1.0, 'well': 1.0, 'bright': 1.0, 'tend': 1.0, 'everyday': 1.0, 'used': 1.0, 'have': 2.0, 'dim': 1.0, 'it': 7.0, 'after': 1.0, 'holding': 1.0, '34': 2.0, 'always': 1.0, 'setting': 1.0, 'wont': 1.0, 'a': 1.0, 't': 2.0, 'we': 5.0, 's': 2.0, 'anymore': 1.0, 'up': 1.0, 'don': 2.0, 'use': 2.0, 'blue': 1.0, 'bought': 1.0, 'color': 1.0, 'my': 1.0, 'switched': 1.0, 'trip': 1.0, 'using': 1.0, 'night': 2.0, 'on': 3.0, 'stays': 1.0, 'to': 2.0, 'all': 1.0, 'sleep': 1.0, 'this': 1.0, 'kids': 1.0, 'and': 1.0, 'green': 1.0, 'too': 1.0, 'the': 4.0, 'without': 1.0, 'not': 1.0}
Word element => {'kids': 1.0, 'before': 1.0, 'floor': 1.0, 'on': 1.0, 'drops': 1.0, 'lights': 1.0, 'mates': 1.0, 'was': 1.0, 'have': 1.0, 'each': 1.0, 'kid': 1.0, 'love': 1.0, 'for': 2.0, 'one': 3.0, 'of': 1.0, 'glow': 1.0, 'good': 1.0, 'two': 1.0, 'we': 1.0, 'a': 1.0, 'replacement': 1.0, 'these': 1.0, 'the': 3.0, 'because': 1.0, 'but': 1.0, 'this': 1.0, 'first': 1.0, 'it': 2.0, 'took': 1.0, 'broke': 2.0, 'about': 1.0, '50': 1.0}
Word element => {'months': 1.0, '5': 1.0, 'at': 1.0, 'a': 1.0, 'ripped': 1.0, 'has': 1.0, 'but': 1.0, 'is': 2.0, 'if': 1.0, 'yet': 1.0, 'so': 1.0, 'to': 1.0, 'overstimulated': 1.0, 'thing': 1.0, 'off': 1.0, 'loves': 1.0, 's': 1.0, 'him': 1.0, 'toy': 1.0, 'baby': 1.0, 'not': 1.0, 'because': 1.0, 'that': 1.0, 'our': 1.0, 'which': 1.0, 'intriguing': 1.0, 'keeps': 1.0, 'only': 1.0, 'this': 1.0, 'it': 1.0, 'he': 2.0, 'us': 1.0, 'downside': 1.0, 'happy': 1.0, 'entertained': 1.0, 'simple': 1.0, 'we': 1.0, 'already': 1.0, 'feel': 1.0, 'as': 1.0}
Word element => {'friends': 1.0, 'still': 1.0, 'to': 2.0, 'in': 1.0, 'love': 2.0, 'it': 1.0, 'the': 1.0, 'my': 1.0, 'baby': 1.0, 'design': 1.0, 'hang': 1.0, 'little': 1.0, 'and': 2.0, 'loved': 1.0, 'talking': 1.0, 'boy': 1.0, 'there': 1.0, 'old': 1.0, 'i': 1.0, 'is': 1.0, '3': 1.0, 'months': 1.0, 'out': 1.0, 'his': 1.0}
Word element => {'though': 1.0, 'hopeful': 1.0, 'still': 1.0, 'm': 1.0, 'mom': 1.0, 'other': 1.0, 'chores': 1.0, 'do': 1.0, 'as': 1.0, 'to': 1.0, '15': 1.0, 'gotten': 1.0, 'in': 1.0, 'enjoyed': 1.0, 'gym': 1.0, 'had': 1.0, 'content': 1.0, 'lo': 1.0, 'minutes': 1.0, 'unfortunately': 1.0, 'many': 1.0, 'owl': 1.0, 'not': 1.0, 'style': 1.0, 'reviewers': 2.0, 'or': 1.0, 'stated': 1.0, 'etc': 1.0, 'i': 3.0, 'old': 1.0, 'where': 1.0, 'love': 1.0, 'for': 1.0, 'like': 1.0, 'green': 1.0, 'and': 2.0, 'he': 2.0, 'this': 2.0, 'some': 1.0, 'at': 2.0, 'has': 2.0, 'shower': 1.0, 'of': 1.0, 'kicking': 1.0, 'batting': 1.0, 'bird': 1.0, 'color': 1.0, 'bought': 1.0, 'months': 1.0, 'moments': 1.0, '3': 1.0, 'on': 1.0, 'have': 3.0, 'my': 1.0, 'owned': 1.0, 'is': 1.0, 'around': 1.0, 'we': 1.0, 'a': 1.0, 'month': 1.0, 'seldom': 1.0, 'the': 5.0, 'playing': 1.0, 'his': 1.0, 'own': 1.0}
Word element => {'great': 1.0, 'looks': 1.0, 'plush': 1.0, 'beautiful': 2.0, 'observe': 1.0, 'play': 1.0, 'this': 1.0, 'gym': 1.0, 'is': 1.0, 'a': 1.0, 'toys': 1.0, 'good': 1.0, 'and': 1.0, 'very': 2.0, 'quality': 1.0, 'activity': 1.0, 'for': 1.0, 'babies': 1.0, 'product': 1.0, 'to': 1.0}
Word element => {'too': 1.0, 'store': 1.0, 'to': 1.0, 'came': 1.0, 'with': 1.0, 'timely': 1.0, 'a': 2.0, 'bag': 1.0, 'loves': 1.0, 'it': 2.0, 'money': 1.0, 'also': 1.0, 'well': 1.0, 'my': 1.0, 'the': 1.0, 'manor': 1.0, 'baby': 1.0, 'worth': 1.0, 'shipped': 1.0, 'in': 2.0}
Word element => {'siblings': 1.0, 'future': 1.0, 'recommend': 1.0, 'pink': 1.0, 'plan': 1.0, 'bright': 1.0, 'obnoxiously': 1.0, 'not': 1.0, 'and': 2.0, 'highly': 1.0, 'lovely': 1.0, 'daughter': 1.0, 'keeping': 1.0, 'gym': 1.0, 'also': 1.0, 'playing': 1.0, 'our': 1.0, 'activity': 2.0, 'loves': 1.0, 'quite': 1.0, 'friends': 1.0, 'pleased': 1.0, 'for': 1.0, 'tree': 1.0, 'are': 1.0, 'the': 1.0, 'time': 1.0, 'on': 2.0, 'is': 1.0, 'we': 2.0, 'spending': 1.0, 'mat': 2.0, 'her': 2.0, 'this': 2.0, 'with': 2.0, 'it': 2.0}
Word element => {'i': 1.0, 'recommend': 1.0, 'toys': 1.0, 'attach': 1.0, 'engage': 1.0, 'item': 1.0, 'this': 2.0, 'product': 1.0, 'with': 1.0, 'is': 1.0, 'well': 1.0, 'the': 2.0, 'made': 1.0, 'bright': 1.0, 'colors': 1.0, 'highly': 1.0, 'very': 1.0, 'and': 1.0, 'baby': 1.0, 'seems': 1.0}
Word element => {'in': 1.0, 'but': 1.0, 'firm': 1.0, 'fun': 1.0, 'velcro': 1.0, 'decor': 1.0, 'be': 1.0, 'month': 1.0, 'it': 1.0, 'home': 1.0, 'loves': 1.0, 'that': 1.0, 'or': 1.0, 'without': 1.0, 'reach': 1.0, 'animals': 1.0, 'everything': 1.0, 'old': 1.0, 'owl': 1.0, 'constructed': 1.0, 'to': 4.0, 'as': 1.0, 'over': 1.0, 'well': 1.0, 'i': 1.0, 'beginning': 1.0, 'are': 4.0, 'no': 1.0, 'january': 1.0, 'keep': 1.0, 'the': 9.0, 'of': 1.0, 'washed': 2.0, 'on': 1.0, 'use': 2.0, 'purchased': 1.0, 'offensive': 1.0, 'attractive': 1.0, 'could': 1.0, 'going': 1.0, 'a': 1.0, 'pieces': 1.0, 'with': 3.0, 'little': 2.0, 'being': 1.0, 'very': 1.0, 'and': 5.0, 'rings': 1.0, 'crinkle': 1.0, 'tough': 1.0, '4': 1.0, 'closed': 1.0, 'issue': 1.0, 'colors': 1.0, 'help': 1.0, 'best': 1.0, 'stimulating': 1.0, 'tummy': 1.0, 'time': 1.0, 'so': 1.0, 'pillow': 1.0, 'at': 1.0, 'is': 2.0, 'around': 1.0, 'enough': 2.0, 're': 1.0, 'mat': 2.0, 'just': 1.0, 'this': 1.0, 'few': 1.0, 'leaves': 1.0, 'prior': 1.0, 'squeaker': 1.0, 'flowers': 1.0, 'perfectly': 1.0, 'hang': 1.0, 'tabs': 1.0, 'our': 2.0, 'item': 1.0, 'sewn': 1.0, 'we': 4.0, 'moving': 1.0, 'has': 1.0, 'always': 1.0, 'pleased': 1.0, 'she': 1.0, 'baby': 1.0, 'would': 1.0, 'add': 1.0, 'only': 1.0, 'all': 2.0, 'fits': 1.0, 'optional': 1.0, 'for': 1.0, 'maybe': 1.0, 'when': 1.0, 'itself': 1.0, 'not': 1.0}
Word element => {'my': 1.0, 'one': 1.0, 'at': 2.0, 'is': 1.0, 'a': 1.0, 'mommies': 1.0, 'house': 2.0, 'it': 1.0, 'great': 1.0, 'grandmas': 1.0, 'and': 2.0, 'must': 1.0, 'loves': 1.0, 'grandson': 1.0, 'this': 1.0, 'item': 1.0, 'have': 1.0}
Word element => {'older': 1.0, 'little': 1.0, 'gets': 1.0, 'as': 1.0, 'more': 1.0, 'like': 1.0, 'grows': 1.0, 'hope': 1.0, 'but': 1.0, 'i': 5.0, '4': 1.0, 'complaint': 1.0, 'real': 1.0, 'just': 2.0, 'without': 1.0, 'deal': 1.0, 'goes': 1.0, 'seconds': 1.0, 'we': 2.0, 'a': 10.0, 's': 2.0, 'stretch': 1.0, 'wish': 1.0, 'few': 1.0, 'this': 3.0, 'minute': 1.0, 'now': 2.0, 'have': 3.0, 'tummy': 1.0, 'blanket': 2.0, 'breaker': 1.0, 'time': 1.0, 'son': 3.0, 'over': 2.0, 'up': 1.0, 'on': 2.0, 'for': 2.0, 'and': 3.0, 'to': 8.0, 'is': 3.0, 'at': 1.0, 'much': 1.0, 'purchase': 1.0, 'only': 1.0, 'our': 3.0, 'how': 1.0, 'he': 3.0, 'will': 1.0, 'tendency': 1.0, 'stay': 1.0, 'not': 1.0, 'plain': 1.0, 'allows': 1.0, 'with': 2.0, 'so': 2.0, 'included': 1.0, 'occasionally': 1.0, 'wider': 1.0, 'll': 1.0, '30': 1.0, 'pillow': 5.0, 'an': 1.0, 'was': 1.0, 'some': 1.0, 'support': 1.0, 'being': 1.0, 'himself': 1.0, 'seems': 2.0, 'see': 1.0, 'off': 2.0, 'enough': 1.0, 'though': 1.0, 'within': 1.0, 'it': 6.0, 'him': 2.0, 'prefer': 1.0, 'end': 1.0, 'each': 1.0, 'weeks': 2.0, 'would': 1.0, 'longer': 1.0, 'the': 8.0, 'of': 1.0, 'give': 1.0, 'tapered': 1.0, 'which': 1.0, 'roll': 2.0, 'what': 1.0, 'purchased': 1.0, 'come': 1.0, 'that': 1.0, 'easily': 1.0, 'be': 1.0, 'stays': 1.0, 'his': 1.0, 'dresser': 1.0, 'bit': 3.0, 'easy': 1.0, 'next': 1.0, 'has': 1.0, 'solution': 1.0, 'even': 1.0, 'overall': 1.0, 'in': 1.0, 'm': 1.0, 'one': 1.0, 'happy': 1.0}
Word element => {'down': 1.0, 'to': 3.0, 'old': 1.0, 'take': 2.0, 'month': 1.0, 'assemble': 1.0, '3': 1.0, 'for': 1.0, 'our': 1.0, 'distraction': 1.0, 'loves': 1.0, 'grabbing': 1.0, 'a': 1.0, 'them': 1.0, 'is': 1.0, 'animals': 1.0, 'with': 1.0, 'he': 1.0, 'it': 1.0, 'this': 1.0, 'swatting': 1.0, 'at': 1.0, 'great': 1.0, 'the': 1.0, 'and': 3.0, 'very': 1.0, 'you': 1.0, 's': 1.0, 'easy': 1.0}
Word element => {'best': 1.0, 'ring': 1.0, 'bird': 1.0, 'made': 1.0, 'the': 5.0, 'my': 2.0, 'well': 1.0, 'seems': 1.0, 'activity': 1.0, 'like': 1.0, 'of': 1.0, 'i': 2.0, 'when': 1.0, 'enjoys': 1.0, 'bought': 1.0, 'to': 1.0, 'gym': 1.0, 'use': 1.0, 'he': 2.0, 'it': 2.0, 'with': 2.0, 'looks': 1.0, 'is': 1.0, 'grandson': 1.0, 'at': 1.0, 'house': 1.0}
Word element => {'we': 1.0, 'than': 1.0, 'prefers': 1.0, 'one': 1.0, 'not': 1.0, 'gym': 1.0, 'loved': 1.0, 'baby': 1.0, 'jarring': 1.0, 'our': 1.0, 'to': 1.0, 'others': 2.0, 'looked': 1.0, 'he': 1.0, 'noises': 1.0, 'this': 2.0, 'it': 1.0, 'boy': 1.0, 'makes': 1.0, 'at': 2.0, 'gentle': 1.0, 'months': 1.0, '4': 1.0, 'natural': 1.0, 'more': 1.0, 'appeal': 1.0}
Word element => {'still': 1.0, '5': 1.0, 'now': 1.0, '2': 2.0, '3': 1.0, 'was': 1.0, 'herself': 1.0, 'smile': 1.0, 'bc': 1.0, 'which': 1.0, 'up': 1.0, 'wall': 1.0, 'lean': 1.0, 'actually': 1.0, 'fun': 1.0, 'like': 2.0, 'mirrors': 2.0, 'think': 1.0, 'but': 1.0, 'opinion': 1.0, 'mirror': 2.0, 'leaves': 1.0, 'crinkly': 1.0, 'come': 1.0, 'especially': 1.0, 'fabrics': 1.0, 'tummy': 1.0, 'also': 1.0, 'versatility': 1.0, 'chain': 1.0, 'created': 1.0, 'colors': 1.0, 'purchased': 1.0, 'jarring': 1.0, 'see': 1.0, 'seems': 1.0, 'own': 1.0, 'off': 1.0, 'in': 4.0, 'kicks': 1.0, 'around': 2.0, 'at': 1.0, 'is': 3.0, 'be': 1.0, 'so': 3.0, 'can': 3.0, 'they': 1.0, 'aren': 1.0, 'green': 1.0, 'months': 1.0, 'get': 1.0, 'moved': 1.0, 'have': 4.0, 'must': 1.0, 'jingly': 1.0, 'with': 2.0, 'taken': 1.0, 'soft': 1.0, 'it': 5.0, 'baby': 6.0, 'she': 5.0, 'arch': 3.0, 'lowest': 1.0, 'annoying': 1.0, 'a': 4.0, 's': 3.0, 'could': 1.0, 'spare': 1.0, 'strange': 1.0, 't': 1.0, 'toy': 4.0, 'against': 1.0, 'to': 5.0, 'other': 3.0, 'all': 2.0, 'different': 2.0, 'use': 1.0, 'her': 3.0, 'loves': 3.0, 'loops': 2.0, 'love': 2.0, 'for': 2.0, 'them': 1.0, 'next': 1.0, 'mats': 1.0, 'hanging': 1.0, 'theme': 1.0, 'or': 1.0, 'my': 6.0, 'me': 2.0, 'reflection': 1.0, 'not': 2.0, 'house': 1.0, 'activity': 1.0, 'together': 1.0, 'time': 1.0, 'locations': 1.0, 'mouth': 1.0, 'that': 9.0, 'because': 2.0, 'several': 1.0, 've': 2.0, 'textured': 1.0, 'personally': 1.0, 'even': 1.0, 'and': 8.0, 'grouped': 1.0, 'rattles': 1.0, 'this': 4.0, 'few': 1.0, 'by': 1.0, 'long': 1.0, 'connected': 1.0, 'on': 4.0, 'put': 1.0, 'make': 2.0, 'one': 1.0, 'jingle': 1.0, 'compared': 1.0, 'positioned': 2.0, 'mat': 1.0, 'kick': 1.0, 'shakes': 1.0, 'doing': 2.0, 'the': 20.0, 'of': 2.0, 'owl': 2.0, 'when': 2.0, 'i': 12.0, 'feet': 1.0, 'loop': 2.0, 'makes': 1.0, 'great': 2.0, 'batteries': 1.0, 'toys': 6.0, 'sounds': 1.0, '1': 2.0, 'feeling': 1.0, 'required': 1.0, 'are': 3.0, 'pleasant': 1.0}
Word element => {'little': 1.0, 'love': 1.0, 'for': 1.0, 'is': 1.0, 'the': 1.0, 'day': 1.0, '3': 1.0, 'on': 1.0, '20': 1.0, 'heads': 1.0, 'min': 1.0, 'around': 1.0, 'spends': 1.0, 'has': 2.0, 'j': 1.0, 'times': 1.0, 'toys': 1.0, 'points': 1.0, 'my': 2.0, 'tried': 1.0, 'chosen': 1.0, 'few': 1.0, 'about': 1.0, 'baby': 1.0, 'a': 3.0, 'but': 1.0, 'perfect': 1.0, 'seems': 1.0, 've': 1.0, 'we': 1.0, 'favourite': 1.0, 'sized': 1.0, 'and': 1.0, 'pillow': 1.0, 'product': 1.0, 'it': 2.0, 'generously': 1.0, 'this': 1.0, 'with': 1.0, 'daughter': 1.0, 'interest': 1.0, 'multiple': 1.0}
Word element => {'for': 1.0, 'helpful': 1.0, 'his': 1.0, 'and': 1.0, 'time': 1.0, 'is': 1.0, 'pillow': 1.0, 'son': 1.0, 'loves': 1.0, 'this': 1.0, 'my': 1.0, 'the': 2.0, 'different': 1.0, 'keeps': 1.0, 'noises': 1.0, 'toys': 1.0, 'tummy': 1.0, 'textures': 1.0, 'attention': 1.0, 'subtle': 1.0, 'mirrors': 1.0}
Word element => {'overstimulating': 1.0, 'being': 1.0, 'without': 1.0, 'playmat': 1.0, 'do': 1.0, 'things': 1.0, 'lots': 1.0, 'line': 1.0, 'bottom': 1.0, 'sitting': 1.0, 'apple': 1.0, 'hanging': 1.0, 'find': 1.0, 'require': 1.0, 'like': 1.0, 'flower': 1.0, 'right': 2.0, 'tummy': 1.0, 'which': 2.0, 'crinkle': 1.0, 'and': 6.0, 'that': 2.0, 'been': 1.0, 'other': 1.0, 'mat': 3.0, 'rated': 1.0, 'holding': 1.0, 'enjoyed': 1.0, 'five': 1.0, 'her': 4.0, 'different': 1.0, 'working': 1.0, 'are': 4.0, 'baby': 1.0, 'she': 6.0, 'colorful': 1.0, 'it': 2.0, 'present': 1.0, 'level': 1.0, 'depends': 1.0, 'just': 1.0, 'a': 5.0, 'at': 2.0, 'is': 3.0, 'ring': 1.0, 'to': 6.0, 'bird': 1.0, 'grow': 1.0, 'for': 7.0, 'have': 2.0, 'went': 1.0, 'my': 2.0, 'reach': 1.0, 'distraction': 1.0, 'i': 9.0, 'driven': 1.0, 'leaves': 1.0, 'away': 1.0, 'batting': 1.0, 'bought': 2.0, 'get': 1.0, 'months': 1.0, 'be': 1.0, 'shy': 1.0, 'there': 2.0, 'lights': 1.0, 'instead': 1.0, 'the': 18.0, 'of': 4.0, 'couple': 1.0, 'on': 4.0, 'think': 1.0, 'impression': 1.0, 'in': 4.0, 'kept': 1.0, 'though': 1.0, 'during': 1.0, 'gym': 1.0, 'seems': 2.0, 'also': 2.0, 'generally': 1.0, 'sounds': 1.0, 'will': 2.0, 'overwhelming': 1.0, 'blast': 1.0, 'toy': 2.0, 'textures': 1.0, 'nice': 2.0, 'feel': 2.0, 'daughter': 2.0, 'staring': 1.0, 'has': 1.0, 'stimulation': 1.0, 'animals': 2.0, 'mirror': 3.0, 'fun': 1.0, '34': 2.0, 'was': 1.0, 'concentration': 1.0, 'time': 1.0, 'almost': 1.0, 'opted': 1.0, 'with': 2.0, 'around': 1.0, 'music': 1.0, 'but': 1.0, 'am': 1.0, 'glad': 1.0, 'would': 3.0, 'kid': 1.0, 'parents': 1.0, 'when': 1.0, 'what': 1.0, 'few': 1.0, 'this': 3.0, 'personalities': 1.0, 'highly': 1.0, 'as': 4.0, 'squeaking': 1.0}
Word element => {'bright': 1.0, 'obnoxiously': 1.0, 'not': 1.0, 'are': 1.0, 'designs': 1.0, 'plus': 1.0, 'still': 1.0, 'old': 1.0, '6': 1.0, 'almost': 1.0, 'price': 1.0, 'worth': 1.0, 'time': 1.0, 'for': 1.0, 'on': 1.0, '3': 1.0, 'skip': 2.0, 'is': 1.0, 'puppet': 1.0, 'alone': 1.0, 'likes': 1.0, 'toy': 1.0, 'amusement': 1.0, 'to': 3.0, '15': 1.0, 'wanted': 1.0, 'minutes': 1.0, 'was': 3.0, 'hoping': 1.0, 'her': 2.0, 'down': 1.0, 'the': 4.0, 'but': 1.0, '2': 1.0, 'showed': 1.0, 'my': 1.0, 'this': 1.0, 'fist': 1.0, 'first': 1.0, 'with': 1.0, 'now': 1.0, 'splurged': 1.0, 'constant': 1.0, 'holding': 1.0, 'very': 1.0, 'i': 3.0, 'few': 1.0, 'times': 1.0, 'relief': 1.0, 'daughter': 1.0, 's': 1.0, 'a': 1.0, 'could': 1.0, 'set': 2.0, 'months': 3.0, 'one': 1.0, 'adorable': 1.0, 'at': 2.0, 'some': 1.0, '5': 1.0, 'find': 1.0, 'because': 1.0, 'happy': 1.0, 'owl': 1.0, 'it': 1.0, 'she': 2.0, 'too': 1.0, 'play': 1.0, 'and': 3.0, '10': 1.0, 'hop': 2.0, 'being': 1.0, 'able': 1.0}
Word element => {'use': 1.0, 'and': 1.0, 'wait': 1.0, 'can': 1.0, 'it': 2.0, 'they': 1.0, 'called': 1.0, 'say': 1.0, 'who': 1.0, 'child': 1.0, 't': 1.0, 'loved': 1.0, 'this': 1.0, 'was': 1.0, 'a': 1.0, 'expecting': 1.0, 'couple': 1.0, 'gift': 1.0, 'their': 1.0, 'of': 1.0, 'an': 1.0, 'to': 3.0, 'first': 1.0}
Word element => {'s': 2.0, 'she': 1.0, 'baby': 1.0, '2': 1.0, 'now': 1.0, 'around': 1.0, 'sights': 1.0, 'loves': 1.0, 'using': 1.0, 'our': 1.0, 'sounds': 1.0, 'months': 2.0, 'starting': 1.0, '4': 1.0, 'and': 3.0, 'still': 1.0, 'this': 1.0, 'it': 2.0, 'designed': 1.0, 'beautifully': 1.0, 'offers': 1.0, 'many': 1.0, '5': 1.0, 'different': 1.0}
Word element => {'whistles': 1.0, 'bells': 1.0, 'have': 1.0, 'doesn': 1.0, 'really': 1.0, 'like': 1.0, 'which': 1.0, 'does': 1.0, 'something': 1.0, 'each': 1.0, 'tummy': 1.0, 'came': 1.0, 'for': 1.0, 'love': 1.0, 'are': 1.0, 'oven': 1.0, 'of': 1.0, 'out': 1.0, 'pillow': 1.0, 'finally': 1.0, 'off': 1.0, 'different': 1.0, 'good': 1.0, 'quality': 1.0, 'be': 1.0, 'machine': 1.0, 'boppy': 1.0, 'washable': 1.0, 'cute': 2.0, 'taken': 1.0, 'with': 2.0, 'excited': 1.0, 'this': 1.0, 'exchanged': 1.0, 'very': 2.0, 'and': 6.0, 'toys': 1.0, 'but': 1.0, 'can': 2.0, 'others': 1.0, 'is': 2.0, 'to': 3.0, 'all': 1.0, 'born': 1.0, 'easy': 1.0, 'annoying': 1.0, 'it': 4.0, 'she': 2.0, 'my': 1.0, 'together': 1.0, 'daughter': 1.0, 'not': 1.0, 'that': 1.0, 'owls': 1.0, 'been': 1.0, 'yet': 1.0, 'time': 1.0, 'so': 2.0, 'i': 4.0, 'write': 1.0, 'million': 1.0, 't': 2.0, 'a': 3.0, 'toy': 1.0, 'review': 1.0, 'has': 1.0, 'well': 1.0, 'put': 1.0, 'on': 1.0, 'how': 1.0, 'when': 1.0, 'am': 1.0, 'the': 3.0, 'adapts': 1.0, 'use': 1.0}
Word element => {'recommend': 1.0, 'highly': 1.0, 'set': 1.0, 'up': 1.0, 'met': 1.0, 'offers': 1.0, 'of': 1.0, 'after': 1.0, 'arrived': 2.0, 'nursery': 1.0, 'it': 5.0, 'with': 1.0, 'senses': 1.0, 'boost': 1.0, 'happy': 1.0, 'and': 4.0, 'activity': 1.0, 'newborn': 2.0, 'husband': 1.0, 'bought': 1.0, 'matched': 1.0, 'before': 1.0, 'i': 1.0, 'gym': 1.0, 'my': 1.0, 'purchase': 1.0, 'ect': 1.0, 'loves': 1.0, 'this': 2.0, 'found': 1.0, 'our': 4.0, 'to': 1.0, 'all': 2.0, 'tummy': 1.0, 'because': 1.0, 'maybe': 1.0, 'expectations': 1.0, 'time': 1.0, 'we': 3.0, 'bedding': 1.0, 'a': 1.0, 'ton': 1.0, 'great': 1.0, 'his': 1.0, 'features': 1.0, 'help': 1.0, 'are': 1.0, 'very': 1.0, 'would': 1.0}
Word element => {'we': 1.0, 'to': 2.0, 'easy': 2.0, 's': 1.0, 'love': 1.0, 'it': 2.0, 'bird': 1.0, 'and': 2.0, 'together': 1.0, 'at': 1.0, 'loves': 1.0, 'this': 1.0, 'play': 1.0, 'mat': 1.0, 'he': 1.0, 'put': 1.0, 'owl': 1.0, 'clean': 1.0, 'baby': 1.0, 'squeals': 1.0, 'my': 1.0, 'the': 2.0}
Word element => {'because': 1.0, 'babies': 1.0, 'future': 1.0, 'plan': 1.0, 'i': 1.0, 'on': 2.0, 'using': 1.0, 'love': 1.0, 'loops': 1.0, 'different': 1.0, 'poles': 1.0, 'to': 1.0, 'with': 1.0, 'it': 2.0, 'this': 1.0, 'moved': 1.0, 'be': 1.0, 'can': 1.0, 'colors': 1.0, 'little': 1.0, 'my': 1.0, 'gn': 1.0, 'the': 5.0, 'vibrant': 1.0, 'beautiful': 1.0, 'toys': 1.0, 'quality': 1.0, 'and': 2.0, 'really': 1.0, 'is': 2.0, 'or': 2.0, 'loves': 1.0, 'amazing': 1.0, 'sitting': 1.0, 'in': 1.0, 'boppy': 1.0, 'of': 1.0, 'bumbo': 1.0, 'mat': 2.0, 'batting': 1.0, 'at': 1.0, 'boy': 1.0, 'they': 1.0}
Word element => {'house': 1.0, 'or': 1.0, 'eyesore': 1.0, 'an': 1.0, 'but': 1.0, 'nursery': 1.0, 'here': 1.0, 'colors': 1.0, 'leaves': 1.0, 'now': 1.0, 'weeks': 1.0, 'older': 1.0, 'little': 3.0, 'we': 1.0, 'things': 1.0, 'animals': 1.0, 'adorable': 1.0, 'grasp': 1.0, 'play': 1.0, 'and': 8.0, 'just': 1.0, 'be': 1.0, 'our': 2.0, 'as': 1.0, 'time': 2.0, 'for': 3.0, 'to': 7.0, 'high': 1.0, 'starting': 1.0, 'it': 2.0, 'mat': 1.0, 'loves': 1.0, 'that': 3.0, 'been': 1.0, 'daughter': 1.0, 'few': 1.0, 'this': 4.0, 'grab': 1.0, 'only': 1.0, 'its': 1.0, 'five': 1.0, 'market': 1.0, 'i': 2.0, 'quality': 1.0, 'various': 1.0, 'a': 3.0, 'rattle': 1.0, 'small': 2.0, 'old': 1.0, 'crinkly': 1.0, 'of': 4.0, 'the': 9.0, 'hands': 1.0, 'cute': 1.0, 'are': 3.0, 'sensory': 1.0, 'hold': 2.0, 'bell': 1.0, 'playmats': 1.0, 'particularly': 1.0, 'so': 1.0, 'can': 1.0, 'tummy': 2.0, 'isn': 2.0, 't': 2.0, 'likes': 2.0, 'has': 1.0, 'at': 1.0, 'patterns': 1.0, 'is': 3.0, 'elements': 1.0, 'size': 1.0, 'owl': 1.0, 'pillow': 1.0, 'also': 2.0, 'help': 1.0, 'use': 1.0, 'her': 3.0, 'learn': 1.0, 'head': 1.0, 'gets': 1.0, 'see': 1.0, 'with': 1.0, 'continuing': 1.0, 'prop': 1.0, 'design': 1.0, 'useful': 1.0, 'lots': 1.0, 'one': 2.0, 'up': 1.0, 'favorite': 1.0, 'give': 1.0, 'there': 1.0, 'garish': 1.0, 'she': 5.0, 'many': 1.0, 'stuffed': 1.0, 'great': 1.0, 'toys': 2.0, 'appreciate': 1.0, 'on': 1.0, 'in': 3.0, 'hideously': 1.0, 'coloring': 1.0, 'bright': 1.0}
Word element => {'a': 1.0, 'again': 1.0, 'purchase': 1.0, 'would': 1.0, 'nursery': 1.0, 'our': 1.0, 'in': 1.0, 'for': 1.0, 'perfect': 1.0, 'themed': 1.0, 'i': 2.0, 'woodland': 1.0, 'it': 1.0, 'love': 1.0, 'this': 2.0, 'item': 1.0, 'so': 1.0, 'heartbeat': 1.0, 'made': 1.0, 'cute': 1.0, 'and': 1.0, 's': 1.0, 'well': 1.0}
Word element => {'other': 1.0, 'getting': 1.0, 'can': 3.0, 'hang': 1.0, 'his': 1.0, 'used': 1.0, 'hours': 1.0, 'stimulated': 1.0, 'tree': 1.0, 'are': 1.0, 'there': 2.0, 'of': 2.0, 'many': 1.0, 'that': 3.0, 'loves': 1.0, 'alternatives': 1.0, 'or': 1.0, 'for': 3.0, 'lights': 1.0, 'activity': 1.0, 'under': 1.0, 'play': 2.0, 'and': 2.0, 'gym': 1.0, 'i': 1.0, 'out': 1.0, 'baby': 3.0, 'them': 1.0, 'with': 2.0, 'this': 1.0, 'we': 2.0, 'a': 1.0, 'just': 1.0, 'few': 1.0, 'without': 2.0, 'hanging': 1.0, 'the': 4.0, 'toys': 2.0, 'some': 1.0, 'products': 1.0, 'add': 1.0, 'our': 2.0, 'all': 1.0, 'tummy': 1.0, 'over': 1.0, 'playtime': 1.0, 'sounds': 1.0, 'also': 1.0, 'mat': 1.0, 'here': 1.0, 'be': 1.0, 'time': 1.0, 'like': 3.0, 'branches': 1.0}
Word element => {'when': 1.0, 'you': 1.0, 'take': 1.0, 'needed': 1.0, 'easy': 1.0, 'different': 1.0, 'pick': 1.0, 'textures': 1.0, 'have': 1.0, 'unique': 1.0, 'make': 1.0, 'included': 1.0, 'a': 1.0, 'is': 3.0, 'mat': 2.0, 'can': 1.0, 'size': 1.0, 'my': 1.0, 'with': 1.0, 'it': 2.0, 'this': 1.0, 'placement': 1.0, 'great': 1.0, 'the': 2.0, 'for': 1.0, 'washable': 1.0, 'to': 2.0, 'purchased': 1.0, 'sturdy': 1.0, 'has': 1.0, 'up': 1.0, 'of': 2.0, 'grandson': 1.0, 'customize': 1.0, 'toys': 2.0, 'and': 4.0, 'lots': 1.0, 'sounds': 1.0, 'ways': 1.0}
Word element => {'highly': 1.0, 'develops': 1.0, 'as': 1.0, 'enjoy': 1.0, 'recommend': 1.0, 'she': 2.0, 'will': 1.0, 'stimulated': 1.0, 'even': 1.0, 'her': 1.0, 'one': 1.0, 'tell': 1.0, 'entertained': 1.0, 'play': 1.0, 'loves': 1.0, 's': 1.0, 'grows': 1.0, 'this': 1.0, 'it': 3.0, 'month': 1.0, 'three': 1.0, 'ever': 1.0, 'my': 1.0, 'more': 1.0, 'the': 1.0, 'of': 1.0, 'keeps': 1.0, 'gym': 1.0, 'most': 1.0, 'i': 2.0, 'old': 1.0, 'aesthetically': 1.0, 'pleasing': 1.0, 'that': 1.0, 've': 1.0, 'can': 1.0, 'seen': 1.0, 'and': 3.0}
Word element => {'theme': 1.0, 'tree': 1.0, 'rattles': 1.0, 'there': 1.0, 'no': 1.0, 'brands': 1.0, 'than': 1.0, 'attractive': 1.0, 'are': 2.0, 'products': 1.0, 'hop': 1.0, 'long': 1.0, 'else': 1.0, 'other': 1.0, 'anything': 1.0, 'charming': 1.0, 'haven': 1.0, 'i': 1.0, 'herself': 1.0, 'animals': 1.0, 'be': 1.0, 'noises': 1.0, 'to': 1.0, 'as': 2.0, 'nothing': 1.0, 'skip': 1.0, 'mat': 1.0, 'place': 1.0, 'the': 4.0, 'became': 1.0, 'mother': 1.0, 'my': 1.0, 'in': 2.0, 'daughter': 1.0, 'by': 1.0, 'favorite': 1.0, 'toys': 1.0, 'different': 1.0, 'her': 2.0, 'gaudy': 1.0, 'what': 1.0, 'interested': 1.0, 'that': 2.0, 'loves': 1.0, 'she': 1.0, 'it': 2.0, 't': 1.0, 's': 1.0, 'entertain': 1.0, 'you': 1.0, 'pretty': 1.0, 'expensive': 1.0, 'for': 3.0, 'more': 1.0, 'is': 2.0, 'thank': 1.0, 'law': 1.0, 'will': 2.0, 'batting': 1.0, 'kicking': 1.0, 'baby': 1.0, 'girl': 1.0, 'exception': 1.0, 'but': 2.0, 'can': 1.0, 'was': 2.0, 'minutes': 1.0, 'generally': 1.0, 'lie': 1.0, 'on': 1.0, '20': 1.0, 'kids': 1.0, 'found': 1.0, 'this': 2.0, '30': 1.0, 'too': 1.0, 'crinkle': 1.0, 'and': 6.0, 'soon': 1.0, 'play': 1.0}
Word element => {'recommend': 1.0, 'would': 1.0, 'fold': 1.0, 'up': 1.0, 'wash': 1.0, 'turned': 1.0, 'away': 1.0, 'now': 1.0, 'interactive': 1.0, 'easy': 2.0, 'months': 1.0, '4': 1.0, 'put': 1.0, 'on': 1.0, 'from': 1.0, 'year': 1.0, 'lots': 1.0, 'enjoyed': 1.0, 'daughter': 1.0, 'also': 1.0, 'coloring': 1.0, 'love': 1.0, 'that': 1.0, 'this': 2.0, 'she': 1.0, 'it': 2.0, 'vibrant': 1.0, 'the': 2.0, 'my': 1.0, 'definitely': 1.0, 'squeaker': 1.0, 'just': 1.0, 'to': 3.0, 'as': 2.0, 'all': 1.0, 'textures': 1.0, 'unisex': 1.0, 'until': 1.0, 'is': 2.0, 'a': 3.0, 'toy': 1.0, 'has': 1.0, 'well': 1.0, 'old': 1.0, 'there': 1.0, 'of': 1.0, 'are': 1.0, 'toys': 1.0, 'including': 1.0, 'mirror': 1.0, 'mat': 1.0, 'some': 1.0, 'and': 4.0, 'crinkle': 1.0, 'material': 1.0, 'different': 1.0}
Word element => {'attach': 1.0, 'bars': 1.0, 'how': 1.0, 'was': 1.0, 'did': 1.0, 'only': 1.0, 'inside': 1.0, 'thing': 2.0, 'squeaky': 1.0, 'while': 1.0, 'sound': 1.0, 'paper': 1.0, 'enjoys': 1.0, 'really': 1.0, 'is': 3.0, 'far': 1.0, 'face': 1.0, 'great': 1.0, 'the': 9.0, 'crinkly': 1.0, 'it': 1.0, 'this': 1.0, 'love': 1.0, 'for': 1.0, 'another': 1.0, 'my': 2.0, 'and': 2.0, 'tummy': 1.0, 'have': 2.0, '7': 1.0, 'can': 1.0, 'has': 1.0, 'toy': 1.0, 'little': 1.0, 'old': 1.0, 'i': 3.0, 'so': 2.0, 'time': 1.0, 'to': 2.0, 'now': 1.0, 'weeks': 1.0, 'we': 1.0, 'mirror': 1.0, 'put': 1.0, 'on': 2.0, 'mat': 3.0, 'cute': 1.0, 'using': 1.0, 'like': 1.0, 'been': 1.0, 'that': 2.0, 'him': 1.0, 'pillow': 1.0, 'his': 1.0, 'not': 2.0, 'smashed': 1.0, 'attachments': 1.0, 'are': 1.0, 'some': 1.0, 'of': 1.0, 'baby': 2.0, 'them': 1.0}
Word element => {'through': 1.0, 'deign': 1.0, 'attractive': 1.0, 'let': 1.0, 'base': 2.0, 'a': 1.0, 'cheapness': 1.0, 'by': 1.0, 'when': 1.0, 'shine': 1.0, 'gym': 1.0, 'feel': 1.0, 'please': 1.0, 'old': 1.0, 'i': 2.0, 'hop': 1.0, 'design': 1.0, 'to': 1.0, 'constructed': 1.0, 'our': 2.0, 'disappointed': 1.0, 'in': 1.0, 'activity': 1.0, 'like': 1.0, 'thin': 1.0, 'the': 5.0, 'but': 1.0, 'not': 1.0, 'was': 1.0, 'had': 1.0, 'of': 1.0, 'materials': 1.0, 'and': 2.0, 'improve': 1.0, 'sturdily': 1.0, 'animals': 1.0, 'extremely': 1.0, 'strong': 1.0, 'on': 3.0, 'this': 1.0, 'it': 1.0, 'more': 1.0, 'is': 1.0, 'skip': 1.0, 'bad': 1.0, 'for': 1.0, 'my': 1.0, 'softer': 1.0, 'quality': 1.0, 'baby': 1.0, 'wooden': 1.0, 'putting': 1.0, 'him': 1.0, 'floor': 1.0}
Word element => {'month': 1.0, '4': 1.0, 'use': 1.0, 'old': 1.0, 'using': 1.0, 'kicks': 1.0, 'or': 1.0, 'that': 1.0, 'but': 1.0, 'leaves': 1.0, 'crinkly': 1.0, 'some': 1.0, 'squeaker': 1.0, 'does': 1.0, 'about': 1.0, 'play': 1.0, 'd': 1.0, '2': 1.0, 'thing': 1.0, 'head': 1.0, 'music': 1.0, 'his': 1.0, 't': 1.0, 'don': 1.0, 'they': 1.0, 'skills': 1.0, 'bells': 1.0, 'make': 1.0, 'help': 1.0, 'size': 1.0, 'dangling': 2.0, 'mat': 2.0, 'etc': 1.0, 'adding': 1.0, 'through': 1.0, 'helped': 1.0, 'blanket': 1.0, 'see': 1.0, 'own': 1.0, 'also': 2.0, 'rings': 1.0, 'squeaks': 1.0, 'sooner': 1.0, 'started': 1.0, 'toys': 5.0, 'for': 2.0, 'high': 1.0, 'to': 4.0, 'our': 2.0, 'had': 1.0, 'loves': 1.0, 'love': 1.0, 'interactive': 1.0, 'motor': 1.0, 'he': 4.0, 'research': 1.0, 'are': 1.0, 'first': 1.0, 'rattles': 1.0, 'this': 5.0, 'when': 4.0, 'you': 1.0, 'longer': 1.0, 'doing': 1.0, 'the': 7.0, 'weeks': 1.0, 'would': 2.0, 'orange': 1.0, 'son': 1.0, 'mirror': 2.0, 'fun': 1.0, 'best': 1.0, 'tummy': 2.0, 'features': 1.0, 'many': 1.0, 'have': 2.0, 'credit': 1.0, 'noise': 1.0, 'quality': 1.0, 'their': 1.0, 'on': 4.0, 'put': 3.0, '3': 1.0, 'interesting': 2.0, 'and': 4.0, 'extra': 1.0, 'therefore': 1.0, 'wooden': 1.0, 'only': 1.0, 'grab': 1.0, 'it': 3.0, 'hooks': 1.0, 'him': 3.0, 'i': 4.0, 'feet': 1.0, 'hit': 1.0, 'base': 1.0, 'more': 2.0, 'with': 1.0, 'extensively': 1.0, 'small': 1.0, 'a': 4.0, 'gym': 3.0, 'fine': 1.0, 'we': 2.0, 'built': 1.0, 'in': 1.0, 'time': 2.0, 'so': 1.0, 'made': 1.0, 'which': 1.0, 'still': 1.0, 'stay': 1.0, 'just': 1.0, 'appropriate': 1.0, 'cried': 1.0, 'something': 1.0, 'add': 1.0, 'shortening': 1.0, 'overall': 1.0, 'was': 1.0, 'front': 1.0, 'back': 1.0, 'is': 2.0, 'at': 3.0, 'purchased': 1.0, 'pinch': 1.0, 'repeatedly': 1.0, 'rolling': 1.0, 'lot': 1.0, 'months': 1.0, 'belly': 1.0, 'up': 1.0, 'over': 1.0, 'support': 1.0}
Word element => {'it': 4.0, 'with': 2.0, 'this': 1.0, 'my': 1.0, 'enjoying': 1.0, 'and': 3.0, 'activity': 1.0, 'center': 1.0, 'terms': 1.0, 'grabs': 1.0, 'now': 1.0, 'was': 1.0, 'son': 1.0, 'at': 1.0, 'adorable': 1.0, 'crawls': 1.0, 'i': 1.0, 'an': 1.0, 'thought': 1.0, 'into': 1.0, 'loves': 1.0, 'keeps': 1.0, 'would': 2.0, 'through': 1.0, 'be': 1.0, 'the': 2.0, 'hanging': 1.0, 'tree': 1.0, 'when': 1.0, 'infant': 1.0, 'try': 1.0, 'but': 1.0, 'most': 1.0, 'pals': 1.0, 'kick': 1.0, 'his': 2.0, 'used': 1.0, 'feet': 1.0, 'finished': 1.0, 'is': 2.0, 'toy': 1.0, 'length': 1.0, 'in': 1.0, 'of': 2.0, 'friends': 1.0, 'time': 1.0, 'he': 6.0, 'how': 1.0}
Word element => {'owl': 1.0, 'as': 1.0, 'receive': 1.0, 'lucky': 1.0, 'pricey': 1.0, 'entertained': 1.0, 'keeps': 1.0, 'looking': 1.0, 't': 1.0, 'don': 1.0, '24': 1.0, 'our': 1.0, '7': 1.0, 'up': 1.0, 'have': 2.0, 'anymore': 1.0, 'needed': 1.0, 's': 2.0, 'but': 2.0, 'tummy': 1.0, 'gift': 1.0, 'good': 1.0, 'right': 1.0, 'pillow': 1.0, 'little': 1.0, 'variety': 1.0, 'babies': 1.0, 'loops': 1.0, 'loves': 1.0, 'decided': 1.0, 'one': 3.0, 'months': 2.0, 'finally': 1.0, 'other': 2.0, 'an': 1.0, 'animals': 1.0, 'great': 1.0, 'found': 1.0, 'this': 3.0, 'onto': 1.0, 'kept': 1.0, 'we': 2.0, 'gym': 1.0, 'baby': 2.0, 'them': 1.0, 'toys': 1.0, 'started': 2.0, 'most': 1.0, 'so': 1.0, 'can': 2.0, 'dead': 1.0, 'in': 3.0, 'a': 5.0, 'people': 2.0, 'want': 1.0, 'these': 1.0, 'room': 2.0, 'market': 1.0, 'time': 3.0, 'they': 1.0, 'developing': 1.0, 'over': 1.0, 'was': 4.0, 'minutes': 1.0, 'that': 4.0, '20': 1.0, 'because': 3.0, 'having': 1.0, 'not': 2.0, 'on': 3.0, 'put': 1.0, 'telling': 1.0, '3': 3.0, '4': 1.0, '10': 1.0, 'for': 5.0, 'set': 2.0, 'periods': 1.0, 'where': 1.0, 'coordination': 1.0, '5': 2.0, 'eye': 1.0, 'me': 1.0, 'my': 3.0, 'and': 7.0, 'hand': 1.0, 'did': 1.0, 'are': 3.0, 'cute': 1.0, 'money': 1.0, 'registry': 1.0, 'received': 1.0, 'love': 4.0, 'ugly': 1.0, 'he': 4.0, 'when': 1.0, 'things': 1.0, 'you': 1.0, 'hate': 1.0, 'son': 1.0, 'play': 2.0, 'about': 2.0, 'would': 1.0, 'weeks': 1.0, 'worth': 1.0, 'now': 1.0, 'fact': 1.0, 'living': 2.0, 'old': 1.0, 'of': 2.0, 'the': 7.0, 'longer': 1.0, 'be': 1.0, 'well': 1.0, 'i': 11.0, 'putting': 1.0, 'it': 9.0, 'him': 2.0, 'only': 1.0, 'grab': 1.0, 'alert': 1.0, 'out': 1.0, 'his': 1.0, 'mat': 2.0, 'sometimes': 1.0, 'mistake': 1.0, 'dangling': 1.0, 'motif': 1.0, 'is': 3.0, 'at': 5.0, 'seriously': 1.0, 'think': 2.0, 'hook': 1.0, 'hour': 1.0, 'against': 1.0, 'to': 2.0}
Word element => {'what': 1.0, 'for': 1.0, 'long': 1.0, 'ft': 1.0, 'in': 1.0, 'amazon': 1.0, 'musical': 1.0, 'sings': 1.0, 'out': 1.0, 'inside': 1.0, 'bird': 1.0, 'by': 2.0, 'was': 2.0, 'beautiful': 1.0, 'couldnt': 1.0, 'additional': 1.0, 'colors': 1.0, 'toy': 1.0, 'amused': 1.0, 'lots': 1.0, 'baby': 1.0, 'this': 2.0, 'only': 1.0, 'far': 1.0, 'toys': 2.0, 'pad': 1.0, 'is': 2.0, 'are': 1.0, 'believe': 1.0, 'the': 7.0, 'big': 1.0, 'great': 1.0, 'looking': 1.0, 'and': 2.0, 'daughter': 1.0, 'activity': 1.0, 'box': 2.0, 'loves': 1.0, 'that': 1.0, 'rattle': 1.0, 'best': 1.0, 'from': 1.0, 'there': 1.0, 'of': 1.0, 'up': 1.0, 'but': 1.0, 'not': 1.0, 'other': 1.0, 'huge': 1.0, 'hang': 1.0, 'gym': 1.0, 'during': 1.0, 'bright': 1.0, 'loops': 1.0, 'to': 2.0, 'little': 1.0, 'boost': 1.0, 'tummy': 1.0, 'time': 1.0, 'how': 1.0, '6': 1.0, 'received': 1.0}
Word element => {'find': 1.0, 'little': 1.0, 'i': 1.0, 'thicker': 1.0, 'mentioned': 1.0, 'reviewer': 1.0, 'another': 1.0, 'bearable': 1.0, 'tummy': 1.0, 'made': 1.0, 'an': 1.0, 'finally': 1.0, 'something': 1.0, 'overall': 1.0, 'tree': 1.0, 'on': 2.0, 'trunk': 1.0, 'has': 2.0, 'itself': 1.0, 'engaging': 2.0, 'quality': 1.0, 'pieces': 1.0, 'high': 1.0, 'toys': 1.0, 'came': 1.0, 'grandparents': 1.0, 'mirror': 1.0, 'fun': 1.0, 'absolutely': 1.0, 'cute': 1.0, 'farmyard': 1.0, 'are': 1.0, 'funky': 1.0, 'hanging': 1.0, 'the': 11.0, 'was': 3.0, 'now': 1.0, 'development': 1.0, 'hop': 1.0, 'along': 1.0, 'a': 2.0, 'we': 4.0, 'other': 1.0, 'had': 1.0, 'thought': 1.0, 'mat': 5.0, 'skip': 1.0, 'which': 1.0, 'activity': 4.0, 'daughter': 4.0, 'she': 1.0, 'it': 3.0, 'wish': 1.0, 'this': 4.0, 'first': 1.0, 'loved': 1.0, 'gym': 3.0, 'that': 3.0, 'loves': 4.0, 'until': 1.0, 'second': 1.0, 'is': 2.0, 'our': 6.0, 'as': 2.0, 'alternate': 1.0, 'just': 1.0, 'cause': 1.0, 'time': 1.0, 'so': 2.0, 'do': 1.0, 'much': 1.0, 'her': 1.0, 'and': 3.0, 'adorable': 1.0, 'lot': 1.0, 'main': 1.0, 'keep': 1.0, 'at': 1.0, 'bought': 1.0, 'one': 1.0, 'of': 4.0, 'house': 1.0}
Word element => {'you': 1.0, 'girls': 1.0, 'baby': 1.0, 'thank': 1.0, 'for': 1.0, 'granddaughters': 1.0, 'we': 2.0, 'our': 2.0, 'hop': 1.0, 'it': 1.0, 'love': 2.0, 'the': 1.0, 'one': 1.0, 'skip': 1.0, 'treetop': 1.0, 'friends': 1.0, 'activity': 1.0, 'twin': 1.0, 'bought': 1.0, 'gym': 1.0}
Word element => {'very': 1.0, 'time': 1.0, 'happy': 1.0, 'my': 2.0, 'at': 1.0, 'bbatting': 1.0, 's': 1.0, 'purchase': 1.0, 'keeping': 1.0, 'gym': 1.0, 'this': 1.0, 'with': 1.0, 'it': 2.0, 'month': 1.0, 'all': 1.0, 'owls': 1.0, 'room': 1.0, 'loves': 1.0, '3': 1.0, 'the': 2.0, 'such': 1.0, 'a': 1.0, 'cute': 1.0, 'old': 1.0, 'i': 1.0, 'dont': 1.0, 'mind': 1.0, 'living': 1.0, 'out': 1.0, 'in': 1.0}
IOPub data rate exceeded. The notebook server will temporarily stop sending output to the client in order to avoid crashing it. To change this limit, set the config variable `--NotebookApp.iopub_data_rate_limit`. Current values: NotebookApp.iopub_data_rate_limit=1000000.0 (bytes/sec) NotebookApp.rate_limit_window=3.0 (secs)
Word element => {'pretty': 1.0, 'wood': 1.0, 'cherry': 1.0, 'the': 1.0, 'sturdy': 1.0, 'this': 1.0, 'put': 1.0, 'together': 1.0, 'was': 1.0, 'love': 1.0, 'it': 2.0, 'easy': 1.0, 'to': 1.0, 'very': 2.0, 'and': 2.0, 'is': 2.0, 'strong': 1.0}
Word element => {'third': 1.0, 'sturdy': 1.0, 'use': 1.0, 'condition': 1.0, 'and': 3.0, 'table': 1.0, 'in': 1.0, 'bins': 1.0, 'great': 1.0, 'the': 2.0, 'are': 1.0, 'for': 1.0, 'love': 1.0, 'with': 2.0, 'come': 1.0, 'this': 2.0, 'it': 2.0, 'i': 1.0, 'when': 1.0, 'well': 2.0, 'second': 1.0, 's': 1.0, 'we': 2.0, 'bought': 1.0, 'had': 1.0, 'that': 1.0, 'our': 1.0, 'made': 2.0, 'child': 1.0, 'still': 1.0}
Word element => {'bottom': 1.0, 'the': 1.0, 'in': 1.0, 'blankets': 1.0, 'out': 1.0, 'month': 1.0, 'works': 1.0, 'couple': 1.0, 'and': 2.0, 'perfectly': 1.0, 'a': 2.0, 'about': 1.0, 'now': 1.0, 'on': 3.0, 'using': 1.0, 'for': 1.0, 'with': 1.0, 'it': 1.0, 'this': 1.0, 'have': 2.0, 'second': 1.0, 'left': 1.0, 'pull': 1.0, 'been': 1.0, 'wipes': 1.0, 'dirty': 1.0, 'clothes': 1.0, 'bin': 1.0, 'we': 2.0, 'extra': 2.0, 'diapers': 1.0, 'top': 1.0}
Word element => {'room': 1.0, 'the': 1.0, 'brightens': 1.0, 'to': 1.0, 'item': 1.0, 'this': 1.0, 'it': 2.0, 'i': 1.0, 'goes': 1.0, 'would': 1.0, 'so': 1.0, 'nursery': 1.0, 'in': 1.0, 'our': 1.0, 'anyone': 1.0, 'definitely': 1.0, 'really': 1.0, 'good': 1.0, 'recommend': 1.0}
Word element => {'side': 1.0, 'over': 1.0, 'with': 1.0, 'funny': 1.0, 'looks': 1.0, 'it': 1.0, 'and': 1.0, 'balance': 1.0, 'i': 1.0, 'was': 1.0, 'the': 4.0, 'pooh': 2.0, 'winnie': 1.0, 'but': 1.0, 'to': 1.0, 'liked': 1.0, 'vvalance': 1.0, 'rest': 1.0, 'of': 1.0, 'off': 1.0}
Word element => {'non': 1.0, 'another': 1.0, 'want': 1.0, 'did': 1.0, 'single': 1.0, 'vtech': 1.0, 'return': 1.0, 'had': 1.0, 'great': 1.0, 'not': 2.0, 'unit': 3.0, 'with': 2.0, 'this': 3.0, 'loud': 1.0, 'and': 3.0, 'away': 1.0, 'link': 1.0, 'from': 2.0, 'would': 1.0, 'called': 1.0, 'listen': 1.0, 'a': 1.0, 'steps': 1.0, 'we': 4.0, '2nd': 1.0, 'got': 1.0, 'even': 1.0, 'back': 1.0, 'as': 1.0, 'all': 1.0, 'to': 5.0, 'liked': 1.0, 'for': 1.0, 'tried': 1.0, 'features': 1.0, 'is': 2.0, 'of': 1.0, 'lullaby': 1.0, 'you': 1.0, 'directly': 1.0, 'that': 1.0, 'their': 1.0, 'volume': 1.0, 'camera': 5.0, 'came': 1.0, 'controlled': 1.0, 'customer': 1.0, 'take': 1.0, 'service': 1.0, 'the': 8.0, 'website': 1.0, 'bonus': 1.0, 'which': 2.0, 'points': 1.0, 'on': 1.0, 'parent': 1.0, 'enough': 1.0, 'working': 1.0, 'far': 1.0, 'but': 1.0, 'can': 1.0, 'chance': 1.0, 'be': 1.0}
Word element => {'space': 1.0, 'you': 1.0, 'if': 1.0, 'stairs': 1.0, 'down': 1.0, 'go': 1.0, 'to': 1.0, 'don': 1.0, 'when': 1.0, 'i': 2.0, 'for': 2.0, 'in': 2.0, 'area': 1.0, 'great': 1.0, 't': 1.0, 'the': 3.0, 'up': 1.0, 'basement': 1.0, 'bathroom': 1.0, 'we': 1.0, 'spare': 1.0, 'put': 1.0, 'this': 1.0, 'have': 3.0, 'myself': 1.0, 'friends': 1.0, 'need': 1.0, 'and': 2.0, 'over': 1.0, 'our': 1.0, 'that': 1.0, 'a': 1.0, 'changing': 1.0, 'so': 1.0}
Word element => {'now': 1.0, 'fine': 1.0, 'works': 1.0, 'inexpensive': 1.0, 'however': 1.0, 'in': 1.0, '7': 1.0, 'is': 5.0, 'really': 2.0, 'who': 1.0, 'extremely': 1.0, 'being': 1.0, 'not': 4.0, 'a': 3.0, 'percentile': 1.0, 'dd': 1.0, 'bad': 1.0, 'months': 1.0, 'piece': 1.0, 'my': 1.0, 'fairly': 1.0, 'useful': 1.0, 'suitable': 1.0, 'are': 1.0, 'the': 2.0, 'great': 1.0, 'of': 1.0, 'drawers': 1.0, 'solid': 1.0, 'furniture': 1.0, 'either': 1.0, 'already': 1.0, 'use': 1.0, 'but': 2.0, 'storage': 1.0, 'height': 1.0, 'dresser': 1.0, '95th': 1.0, 'for': 4.0, 'close': 1.0, 'and': 2.0, 'too': 1.0, 'eg': 1.0, 'long': 1.0, 'it': 4.0, 'to': 1.0, 'as': 2.0, 'changing': 1.0, 'other': 1.0, 'anything': 1.0, 'than': 1.0, 'table': 1.0, 'enough': 1.0}
Word element => {'on': 1.0, 'compared': 1.0, 'once': 1.0, 'really': 1.0, 'being': 1.0, 'material': 1.0, 'fact': 1.0, 'due': 1.0, 'grey': 1.0, 'they': 2.0, 'baskets': 1.0, 'thing': 1.0, 'weird': 1.0, 'flaw': 1.0, 'mostly': 1.0, 'design': 1.0, 'matched': 1.0, 'color': 1.0, 'white': 3.0, 'scratches': 1.0, 'letdown': 1.0, 'pole': 2.0, 'shelf': 1.0, 'no': 1.0, 'shelves': 2.0, 'drawback': 1.0, 'manual': 1.0, 'with': 1.0, 'dings': 1.0, 'there': 1.0, 'amazon': 1.0, 'instruction': 1.0, 'have': 1.0, 'laundry': 1.0, 'that': 5.0, 'were': 3.0, 'basket': 1.0, 'parts': 1.0, 'i': 6.0, 'slightly': 1.0, 'days': 1.0, 'built': 1.0, 'be': 3.0, 'product': 1.0, 'meant': 1.0, 'for': 2.0, 'just': 1.0, 'them': 2.0, 'easy': 1.0, 'left': 1.0, 'other': 1.0, 'an': 1.0, 'all': 2.0, 'one': 2.0, 'vertical': 3.0, 'hard': 1.0, 'labeled': 1.0, 'pre': 1.0, 'or': 1.0, 'good': 1.0, 'are': 4.0, 'thin': 2.0, 'overall': 1.0, 'few': 1.0, 'this': 1.0, 'it': 8.0, 'ago': 1.0, 'slight': 1.0, 'a': 9.0, 'drilled': 2.0, 'and': 5.0, 'do': 1.0, 'since': 2.0, 'was': 3.0, 'holes': 1.0, 'between': 1.0, 'separating': 1.0, 'cracking': 1.0, 'solid': 1.0, 'far': 1.0, 'when': 2.0, 'screwed': 2.0, 'in': 2.0, 'torque': 1.0, 'the': 22.0, 'of': 4.0, 'gap': 1.0, 'securing': 1.0, 'to': 11.0, 'pulled': 1.0, 'leave': 1.0, 'horrible': 2.0, 'cracked': 1.0, 'seems': 1.0, 'until': 1.0, 'right': 1.0, 'screwdriver': 1.0, 'is': 6.0, 'floors': 1.0, 'notice': 1.0, 'look': 2.0, 'images': 1.0, 'stickers': 1.0, 'did': 1.0, 'not': 5.0, 'heard': 1.0, 'sound': 1.0, 'using': 1.0, 'electric': 1.0, 'so': 1.0, 'now': 1.0, 'relatively': 1.0, 'way': 1.0, 'from': 1.0, 'allow': 1.0, 'shown': 1.0, 'something': 2.0, 'little': 1.0, 'again': 1.0, 'clean': 1.0, 'drawers': 1.0, 'support': 1.0, 'does': 2.0, 'but': 2.0}
Word element => {'that': 1.0, 'than': 1.0, 'drawer': 1.0, 'be': 1.0, 'in': 1.0, 'having': 1.0, 'instead': 1.0, 'wipes': 1.0, 'and': 2.0, 'powder': 1.0, 'put': 1.0, 'top': 2.0, 'compartments': 1.0, 'would': 1.0, 'on': 1.0, 'table': 2.0, 'like': 1.0, 'changing': 2.0, 'love': 3.0, 'with': 1.0, 'this': 2.0, 'all': 1.0, 'have': 1.0, 'simple': 1.0, 'other': 2.0, 'out': 1.0, 'clean': 1.0, 'i': 3.0, 'the': 2.0, 'lines': 1.0, 'to': 3.0, 'some': 1.0, 'of': 3.0, 'sort': 1.0, 'surface': 1.0, 'area': 1.0}
Word element => {'that': 2.0, 'room': 1.0, 'much': 1.0, 'too': 1.0, 'up': 1.0, 'take': 1.0, 'clean': 1.0, 'good': 1.0, 'complain': 1.0, 'for': 2.0, 'table': 1.0, 'like': 1.0, 'and': 4.0, 'sturdy': 1.0, 'decent': 1.0, 'pretty': 1.0, 'lines': 1.0, 't': 2.0, 'the': 5.0, 'a': 1.0, 'functional': 2.0, 'wood': 1.0, 'looks': 1.0, 'really': 3.0, 'i': 1.0, 'price': 2.0, 'with': 1.0, 'it': 2.0, 'all': 1.0, 'baskets': 1.0, 'can': 1.0, 'matters': 1.0, 'not': 1.0, 'hamper': 1.0, 'best': 1.0, 's': 3.0, 'you': 1.0, 'doesn': 1.0, 'quality': 1.0, 'but': 1.0}
Word element => {'assemble': 1.0, 'handy': 1.0, 'little': 1.0, 'fits': 1.0, 'top': 1.0, 'on': 1.0, 'to': 2.0, 're': 1.0, 'happy': 2.0, 'are': 2.0, 'the': 2.0, 'for': 1.0, 'love': 1.0, 'price': 1.0, 'very': 1.0, 'changing': 1.0, 'hamper': 1.0, 'but': 1.0, 'quality': 1.0, 'perfectly': 1.0, 'and': 3.0, 'hard': 1.0, 'it': 3.0, 'with': 2.0, 'we': 4.0, 'not': 1.0, 'excellent': 1.0, 'too': 1.0, 'drawers': 1.0, 'bought': 1.0, 'really': 2.0, 'summer': 1.0, 'a': 2.0, 'go': 1.0, 'contoured': 1.0, 'infant': 1.0, 'pad': 1.0}
Word element => {'gets': 1.0, 'older': 1.0, 'now': 1.0, 'using': 1.0, 'one': 2.0, 'larger': 1.0, 'nursery': 1.0, 'from': 1.0, 'very': 1.0, 'not': 1.0, 'changer': 1.0, 'decor': 1.0, 'compact': 1.0, 'well': 1.0, 'wanted': 1.0, 'as': 1.0, 'to': 1.0, 'flat': 2.0, 'did': 1.0, 'price': 2.0, 'softer': 1.0, 'baby': 2.0, 'size': 1.0, 'it': 1.0, 'perfect': 1.0, 'this': 1.0, 'until': 1.0, 'great': 1.0, 'the': 5.0, 'for': 2.0, 'take': 1.0, 'changing': 1.0, 'that': 1.0, '100': 1.0, 'worth': 1.0, 'a': 3.0, 'we': 1.0, 'o': 1.0, 'i': 2.0, 'fan': 1.0, 'stuff': 1.0, 'is': 1.0, 'want': 1.0, 'of': 1.0, 'bill': 1.0, 'pad': 1.0, 'fits': 1.0, 'may': 1.0, 'purchase': 1.0, 'so': 1.0, 'traditional': 1.0, 'am': 2.0, 'you': 1.0, 'and': 1.0}
Word element => {'pens': 1.0, 'those': 1.0, 'with': 1.0, 'up': 1.0, 'touched': 1.0, 'gone': 1.0, 'was': 1.0, 'love': 1.0, 'where': 1.0, 'side': 1.0, 'furniture': 1.0, 'think': 1.0, 'on': 1.0, 'hanger': 1.0, 'space': 1.0, 'at': 1.0, 'things': 1.0, 'between': 1.0, 'left': 1.0, 'get': 1.0, '1': 1.0, 'and': 4.0, 'changing': 1.0, 'very': 1.0, 'wood': 1.0, 'are': 2.0, 'hanging': 1.0, 'the': 9.0, 'can': 2.0, '2': 1.0, 'of': 3.0, 'bottom': 1.0, 'just': 1.0, 'attention': 1.0, 'like': 1.0, 'finish': 1.0, 'you': 1.0, 'easily': 2.0, 'doing': 1.0, 'dont': 1.0, 'baby': 2.0, 'be': 1.0, 'here': 1.0, 'top': 1.0, 'otherwise': 1.0, 'i': 3.0, 'arms': 1.0, 's': 1.0, 'a': 2.0, 'pay': 1.0, 'pad': 1.0, 'legs': 1.0, 'off': 1.0, 'to': 1.0, 'its': 1.0, 'bar': 1.0, 'had': 1.0, 'what': 1.0, 'mark': 1.0, 'fine': 1.0, 'caught': 1.0, 'scrape': 1.0, 'is': 1.0, 'one': 1.0, 'color': 1.0, 'sensitive': 1.0, 'it': 4.0, 'will': 1.0}
Word element => {'slightly': 1.0, 'build': 1.0, 'nuances': 1.0, 'an': 1.0, '5': 1.0, 'minor': 1.0, 'give': 1.0, 'items': 1.0, 'hygiene': 1.0, 'diapers': 1.0, 'storing': 1.0, 'three': 1.0, 'quality': 1.0, 'clothes': 1.0, 'bin': 1.0, 'there': 1.0, 'larger': 1.0, 'item': 1.0, 'will': 1.0, 'unless': 1.0, 'you': 2.0, 'if': 1.0, 'use': 1.0, 'of': 1.0, 'could': 1.0, 'a': 1.0, 'we': 3.0, 'other': 1.0, 'satisfied': 2.0, 'right': 1.0, 'cheaply': 1.0, 'changing': 3.0, 'box': 1.0, 'the': 6.0, 'underneath': 1.0, 'my': 1.0, 'stars': 1.0, 'for': 3.0, 'be': 2.0, 'chance': 1.0, 'color': 1.0, 'decided': 1.0, 'one': 2.0, 'wife': 1.0, 'cannot': 1.0, 'like': 1.0, 'table': 3.0, 'very': 1.0, 'read': 1.0, 'and': 7.0, 'took': 1.0, 'i': 2.0, 'perfect': 2.0, 'this': 5.0, 'picked': 1.0, 'stores': 2.0, 'with': 2.0, 'month': 1.0, 'it': 1.0, 'wobbly': 1.0, 'shopping': 1.0, 'out': 1.0, 'made': 1.0, 'after': 2.0, 'numerous': 1.0, 'in': 1.0, 'around': 1.0, 'is': 3.0, 'many': 1.0, 'better': 2.0, 'than': 1.0, 'most': 1.0, 'tables': 1.0, 'were': 1.0, 'great': 1.0, 'big': 1.0, 'seemed': 1.0, 'extremely': 2.0, 'drawers': 1.0, 'dirty': 1.0, 'reviews': 1.0, 'are': 3.0, 'on': 1.0}
Word element => {'money': 1.0, 'deal': 1.0, 'able': 1.0, 'together': 1.0, 'and': 1.0, 'good': 1.0, 'quite': 1.0, 'table': 1.0, 'attractive': 1.0, 'sturdy': 1.0, 'of': 1.0, 'is': 1.0, 'this': 1.0, 'with': 1.0, 'very': 2.0, 'changing': 1.0, 'follow': 1.0, 'put': 1.0, 'a': 2.0, 'was': 1.0, 'to': 1.0, 'minimum': 1.0, 'fuss': 1.0, 'the': 2.0, 'just': 1.0, 'for': 1.0, 'directions': 1.0}
Word element => {'apartment': 1.0, 'our': 1.0, 'option': 1.0, 'forgot': 1.0, 'before': 1.0, 'time': 1.0, 'about': 1.0, 'whole': 1.0, 's': 2.0, 'going': 1.0, 'hour': 1.0, 'scratched': 1.0, 'seems': 1.0, 'including': 1.0, 'swings': 1.0, 'built': 1.0, 'table': 2.0, 'reading': 1.0, 'facing': 1.0, 'sure': 2.0, 'once': 1.0, 'earlier': 1.0, 'gotta': 1.0, 'unscrew': 1.0, 'with': 2.0, 'of': 7.0, 'the': 16.0, 'a': 1.0, 'small': 2.0, 'cribs': 1.0, 'put': 1.0, 'on': 1.0, 'furniture': 2.0, 'quality': 1.0, 'it': 7.0, 'only': 1.0, 'me': 2.0, 'and': 7.0, 'scared': 1.0, 'from': 1.0, 'slide': 1.0, 'was': 5.0, 'together': 3.0, 'piece': 1.0, 'recommend': 1.0, 'say': 1.0, 'is': 1.0, 'legs': 1.0, 'construction': 1.0, 'took': 2.0, 'through': 1.0, 'we': 1.0, 'reviews': 1.0, 'been': 1.0, 'laying': 1.0, 'just': 1.0, 'that': 2.0, 'because': 1.0, 'layer': 1.0, 'materials': 2.0, 'cheaper': 1.0, 'are': 1.0, 'but': 2.0, 'for': 3.0, 'structure': 1.0, 'to': 4.0, 'pretty': 1.0, 'out': 1.0, 'i': 6.0, 'putting': 2.0, 'allen': 1.0, 'in': 1.0, 'm': 1.0, 'actually': 1.0, 'wrench': 1.0, 'smaller': 2.0, 'use': 1.0, 'solid': 1.0, 'bottom': 1.0, 'odd': 1.0, 'since': 1.0, 'shape': 1.0, 've': 1.0, 'an': 2.0, 'all': 1.0, 'other': 2.0, 'able': 1.0, 'included': 1.0, 'some': 1.0, 'wrenches': 1.0, 'steps': 1.0, 'pieces': 1.0, 'crevices': 1.0, 'rear': 1.0, 'one': 3.0, 'happy': 1.0, 'side': 2.0, 'made': 1.0, 'good': 1.0, 'affordable': 1.0}
Word element => {'last': 1.0, 'kid': 1.0, 'enough': 1.0, 'though': 1.0, 'nice': 1.0, 'hamper': 1.0, 'baskets': 1.0, 'height': 1.0, 'hip': 1.0, '6': 1.0, '5': 1.0, '33': 1.0, 're': 1.0, 'sturdy': 1.0, 'they': 1.0, 'our': 2.0, 'be': 1.0, 'would': 1.0, 'something': 1.0, 'or': 1.0, 'block': 1.0, 'some': 1.0, 'up': 1.0, 'propping': 1.0, 'folks': 1.0, 'talk': 1.0, 'particularly': 1.0, 'but': 1.0, 'tables': 1.0, 'baby': 1.0, 'many': 1.0, 'by': 1.0, 'stood': 1.0, 't': 1.0, 'haven': 1.0, 'not': 1.0, 'only': 1.0, 'purchase': 1.0, 'same': 1.0, 'whole': 1.0, 'about': 2.0, 'have': 2.0, 'perhaps': 1.0, 'back': 1.0, 'top': 1.0, 'swapped': 1.0, 'turns': 1.0, 'if': 3.0, 'so': 1.0, 'bit': 1.0, 'tall': 1.0, 'time': 1.0, 'seems': 1.0, 'off': 3.0, 'pad': 4.0, 'translates': 1.0, '4': 1.0, 'thinking': 1.0, 'is': 4.0, 'comes': 1.0, 'here': 1.0, 'then': 1.0, 'we': 7.0, 'discovered': 1.0, 's': 2.0, 'what': 1.0, 'bar': 1.0, 'had': 1.0, 'purchased': 2.0, 'finished': 1.0, 'out': 1.0, 'assembling': 1.0, 'changer': 1.0, 've': 1.0, 'my': 1.0, 'could': 1.0, 'disassemble': 1.0, 'accidentally': 1.0, 'thing': 1.0, '2': 4.0, 'and': 8.0, 'anchor': 1.0, '1': 5.0, 'just': 1.0, 'through': 1.0, 'tricky': 1.0, 'this': 5.0, 'you': 5.0, 'more': 1.0, 'husband': 1.0, 'hoping': 1.0, 'pretty': 1.0, 'to': 9.0, 'apart': 1.0, 'assemble': 1.0, 'for': 1.0, 'use': 1.0, 'middle': 1.0, 'get': 1.0, 'll': 1.0, '30': 1.0, 'right': 1.0, 'the': 13.0, 'of': 5.0, 'nuisance': 1.0, 'wooden': 1.0, 'used': 1.0, 'make': 1.0, 'help': 1.0, 'i': 7.0, 'broke': 1.0, 'second': 1.0, 'wood': 1.0, 'while': 1.0, '3': 1.0, 'taking': 1.0, 'side': 1.0, 'which': 1.0, 'using': 3.0, 'a': 5.0, 'added': 1.0, 'first': 1.0, 'are': 3.0, 'd': 1.0, 'frustration': 1.0, 'floor': 2.0, 'do': 1.0, 'much': 1.0, 'changing': 3.0, 'that': 3.0, 'with': 3.0, 'really': 3.0, 'kind': 1.0, 'thin': 2.0, 'front': 1.0, 'mean': 1.0, 'instead': 1.0, 'it': 13.0, 'already': 1.0, 'on': 2.0, 'dresser': 1.0, 'one': 4.0, 'too': 1.0, 'inherited': 1.0, 'm': 3.0, 'came': 2.0, 'glad': 1.0, 'kept': 1.0, 'definitely': 1.0, 'dowels': 1.0, 'were': 1.0, 'recommend': 2.0}
Word element => {'table': 1.0, 'hassle': 1.0, 'wroth': 1.0, 'tool5': 1.0, 'by': 1.0, 'touched': 1.0, 'paints': 1.0, 'chip': 1.0, 'put': 1.0, 'when': 2.0, 'bent': 1.0, 'peg': 1.0, '100': 1.0, 'plastic': 1.0, 'in': 2.0, 'china': 1.0, 'made': 1.0, 'than': 1.0, 'e': 1.0, 'instruction': 1.0, 'easiest': 1.0, 'material': 1.0, 'lock': 1.0, 'scratched2': 1.0, 'one': 1.0, '1': 1.0, 'and': 3.0, 'align': 2.0, 'quality': 2.0, 'screws': 2.0, 'bolts': 1.0, 'the': 9.0, 'a': 1.0, 'we': 1.0, 't': 1.0, 'other': 2.0, 'this': 1.0, 'it': 1.0, 'compared': 1.0, 'hard': 1.0, 'mainly': 1.0, 'lower': 1.0, 'products': 2.0, 'took': 1.0, 'piece': 1.0, '4': 1.0, 'about': 1.0, 'materials': 1.0, 'assembly': 3.0, 'don': 1.0, 'not': 3.0, 'to': 3.0, 'us': 1.0, 'is': 2.0, 'ikea': 1.0, 's3': 1.0, 'time': 1.0, 'they': 1.0, 'functionality': 1.0, 'very': 1.0, 'came': 1.0, 'g': 1.0, 'long': 1.0, 'used': 2.0, 'pieces': 1.0, 'for': 1.0, 'fit': 1.0, 'review': 1.0, 'well': 1.0, 'pegs': 1.0, 'are': 2.0}
Word element => {'changer': 1.0, 'up': 1.0, 'putting': 1.0, 'height': 1.0, 'were': 1.0, 'drawers': 1.0, 'plastic': 1.0, 'some': 1.0, 'from': 1.0, 'away': 1.0, 'sanitizer': 1.0, 'wipes': 1.0, 'creams': 1.0, 'change': 1.0, 'in': 1.0, 'use': 1.0, 'you': 1.0, 'items': 1.0, 'foot': 1.0, 'pad': 1.0, 'sturdy': 1.0, 'by': 1.0, 'few': 1.0, 'just': 1.0, 'did': 1.0, 'next': 1.0, 'that': 1.0, 'changing': 2.0, 'pulling': 1.0, 'extra': 1.0, 'had': 2.0, 'as': 1.0, 'to': 5.0, 'was': 1.0, 'dresser': 1.0, 'storage': 1.0, 'etc': 1.0, 'i': 3.0, 'not': 1.0, 'me': 1.0, 'and': 3.0, 'safe': 1.0, 'diapers': 1.0, 'didn': 1.0, 'the': 6.0, 'feel': 1.0, 'great': 1.0, 'an': 1.0, 'put': 1.0, 'same': 1.0, 'want': 1.0, 'is': 1.0, 'down': 1.0, 'solved': 1.0, 'looks': 1.0, 'it': 4.0, 'only': 1.0, 'buying': 1.0, 'with': 1.0, 'every': 1.0, 'existing': 1.0, 'hand': 1.0, 'table': 2.0, 'has': 1.0, 'ample': 1.0, 'small': 1.0, 'aligned': 1.0, 'wall': 1.0, 'tie': 1.0, 'thing': 1.0, 'this': 2.0, 'wish': 1.0, 'shelf': 1.0, 'we': 1.0, 't': 1.0, 'a': 3.0, 'right': 1.0, 'top': 1.0, 'of': 1.0}
Word element => {'well': 1.0, 'thicker': 1.0, 'changed': 1.0, 'crib': 1.0, 'can': 1.0, 'flimsy': 1.0, 'great': 1.0, 'the': 2.0, 'looks': 1.0, 'is': 1.0, 'difficult': 1.0, 'not': 2.0, 'just': 1.0, 'and': 5.0, 'very': 2.0, 'changing': 2.0, 'price': 1.0, 'dresser': 1.0, 'good': 1.0, 'or': 2.0, 'all': 1.0, 'our': 1.0, 'as': 1.0, 'any': 1.0, 'to': 3.0, 'was': 3.0, 'be': 2.0, 'some': 1.0, 'in': 1.0, 'also': 1.0, 'product': 1.0, 'for': 1.0, 'matched': 1.0, 'confusing': 1.0, 'espresso': 1.0, 'combo': 1.0, 'my': 1.0, 'sturdy': 1.0, 'pad': 2.0, 'assembly': 1.0, 'wobbly': 1.0, 'nursery': 1.0, 'only': 1.0, 'tables': 1.0, 'standard': 1.0, 'safely': 1.0, 'tend': 1.0, 'complaint': 1.0, 'thin': 1.0, 'table': 1.0, 'however': 1.0, 'a': 1.0, 'we': 1.0}
Word element => {'enjoy': 1.0, 'continues': 1.0, 'hope': 1.0, 'old': 1.0, 'months': 1.0, '3': 1.0, 'love': 1.0, 'study': 1.0, 'loves': 1.0, 'surprised': 1.0, 'little': 1.0, 'i': 6.0, 'at': 2.0, 'was': 1.0, 'look': 1.0, 'anticipated': 1.0, 'these': 1.0, 'the': 2.0, 'my': 1.0, 'll': 1.0, 'and': 4.0, 'now': 1.0, 'away': 1.0, 'admit': 1.0, 'around': 1.0, 'only': 1.0, 'much': 1.0, 'looking': 1.0, 'cards': 1.0, 'it': 1.0, 'how': 1.0, 'he': 3.0, 'son': 1.0, 'still': 1.0, 'them': 2.0, '15': 1.0, 'show': 1.0, 'sudden': 1.0, 'him': 2.0, 'card': 2.0, 'watch': 1.0, 'again': 1.0, 'when': 1.0, 'his': 1.0, 'eyes': 1.0, 'finally': 1.0, 'after': 1.0, '20': 1.0, 'seconds': 1.0, 'interested': 1.0, 'highly': 1.0, 'flip': 1.0, 'to': 2.0, 'all': 1.0, 'a': 2.0, 's': 2.0}
Word element => {'baby': 1.0, 'new': 1.0, 'next': 1.0, '100': 1.0, 'disappoint': 1.0, 'for': 2.0, 'm': 1.0, 'nice': 1.0, 'prepared': 1.0, 'did': 1.0, 'i': 1.0, 'quality': 1.0, 'and': 1.0, 'not': 1.0, 'the': 4.0, 'are': 1.0, 'fabric': 1.0, 'big': 1.0, 'glad': 1.0, 'fluffy': 1.0, 'cotton': 1.0, 'it': 1.0, 's': 1.0, 'towels': 1.0, 'to': 1.0, 'be': 1.0}
Word element => {'nice': 1.0, 'load': 1.0, 'items': 1.0, 'no': 1.0, 'they': 1.0, 'product': 1.0, 'bought': 1.0, 'in': 1.0, 'fuzz': 1.0, 'wash': 2.0, 'also': 1.0, 'this': 1.0, 'and': 2.0, 'the': 3.0, 'amazon': 1.0, 'transfers': 1.0, 'than': 1.0, 'bigger': 1.0, 'love': 1.0, 'for': 2.0, 'my': 1.0, 'stores': 1.0, 'towel': 1.0, 'well': 1.0, 'a': 1.0, 'searched': 1.0, '8': 1.0, 'month': 1.0, 'item': 1.0, 'average': 1.0, 'without': 1.0, 'green': 1.0, 'i': 3.0, 'old': 1.0, 'to': 2.0, 'decided': 1.0, 'son': 1.0, 'any': 1.0, 'luck': 1.0, 'try': 1.0, 'other': 1.0, 'finally': 1.0}
Word element => {'is': 1.0, 'material': 1.0, 'like': 1.0, 'for': 1.0, 'baby': 1.0, 'regularly': 1.0, 'works': 1.0, 'both': 1.0, 'images': 1.0, 'bigger': 1.0, 'she': 1.0, 'our': 1.0, 'pretty': 1.0, 'great': 1.0, 'the': 2.0, 'infants': 1.0, 'as': 1.0, 'it': 1.0, 'this': 1.0, 'use': 1.0, 'bathes': 1.0, 'thick': 1.0, 'during': 1.0, 'we': 2.0, 's': 2.0, 'well': 1.0, 'nice': 1.0, 'on': 1.0, 'and': 4.0, 'gotten': 1.0}
Word element => {'last': 1.0, 'on': 1.0, 'pillow': 1.0, 'is': 3.0, 'it': 2.0, 'sure': 1.0, 'to': 1.0, 'toy': 1.0, 'too': 1.0, 'large': 1.0, 'a': 1.0, 'the': 2.0, 'sleep': 1.0, 'good': 1.0, 'thin': 1.0, 'blanket': 1.0, 'so': 1.0, 'i': 1.0, 'not': 1.0, 'am': 1.0, 'how': 1.0, 'long': 1.0, 'but': 1.0, 'will': 1.0}
Word element => {'of': 1.0, 'at': 1.0, 'blanket': 1.0, 'himself': 1.0, 'by': 1.0, 'a': 2.0, 'part': 1.0, 'what': 1.0, 'that': 1.0, 'pillow': 1.0, 'be': 1.0, 'much': 1.0, 'him': 1.0, 'exactly': 1.0, 'would': 2.0, 'thanks': 1.0, 'idea': 1.0, 'goes': 1.0, 'we': 1.0, 'have': 1.0, 'this': 1.0, 'rear': 1.0, 'is': 1.0, 'really': 1.0, 'bob': 1.0, 'then': 1.0, 'didn': 1.0, 'zipper': 1.0, 'an': 1.0, 'but': 1.0, 'was': 1.0, 'wanted': 1.0, 'and': 3.0, 'the': 2.0, 't': 1.0, 'more': 1.0, 'bigger': 1.0, 'one': 1.0, 'into': 1.0, 'think': 1.0}
Word element => {'an': 1.0, 'made': 1.0, 'full': 1.0, 'pillow': 1.0, 'plush': 1.0, 'very': 1.0, 'size': 1.0, 'the': 2.0, '2': 1.0, 'excellent': 1.0, 'huge': 1.0, 'and': 4.0, 'was': 4.0, 'granddaughter': 1.0, 'blanket': 2.0, 'my': 1.0, 'hit': 1.0, 'a': 1.0, 'htis': 1.0, 'perfect': 1.0, 'toy': 2.0, 'old': 1.0, 'with': 1.0, 'christmas': 1.0, 'this': 1.0, 'loves': 1.0, 'yr': 1.0, 'she': 1.0, 'veggie': 1.0, 'tales': 1.0, 'for': 1.0, 'her': 1.0}
Word element => {'of': 1.0, 'false': 1.0, 'dissapointed': 1.0, 'very': 1.0, 'different': 1.0, 'also': 1.0, 'just': 1.0, 'mainly': 1.0, 'day': 1.0, 'big': 1.0, 'and': 1.0, 'difference': 1.0, 'overall': 1.0, 'shape': 1.0, 'the': 7.0, 'was': 1.0, 'provider': 1.0, 'nipple': 1.0, 'product': 1.0, 'for': 1.0, 'i': 3.0, 'bought': 1.0, 'better': 1.0, 'nipples': 1.0, 'to': 3.0, 'as': 1.0, 'our': 1.0, 'm': 1.0, 'price': 1.0, 'home': 1.0, 'bottles': 1.0, 'set': 1.0, 'immediately': 1.0, 'route': 1.0, 'caps': 1.0, 'not': 1.0, 'give': 1.0, 'bottle': 1.0, 'this': 3.0, 'when': 1.0, 'got': 1.0, 'them': 1.0, 'noticed': 1.0, 'go': 1.0, 'we': 1.0, 'a': 1.0, 'in': 2.0, 'cap': 1.0, 'advertising': 1.0, 'does': 1.0, 'down': 1.0, 'push': 1.0, 'like': 1.0, 'newer': 1.0, 'current': 1.0, 'is': 1.0, 'styles': 1.0}
Word element => {'use': 1.0, '8': 1.0, 'up': 1.0, 'move': 1.0, 'after': 1.0, 'purchased': 1.0, '4': 1.0, 'two': 1.0, 'i': 1.0, 'cleaning': 1.0, 'makes': 1.0, 'disposable': 1.0, 'bags': 1.0, 'since': 1.0, 'have': 1.0, 'should': 1.0, 'baby': 1.0, 'bottles': 1.0, 'it': 1.0, 'burping': 1.0, 'to': 1.0, 'as': 2.0, 'not': 2.0, 'was': 1.0, 'the': 13.0, 'many': 1.0, 'current': 1.0, 'then': 1.0, 'has': 1.0, 'liner': 1.0, 'plus': 1.0, 'bottle': 2.0, 'water': 1.0, 'name': 1.0, 'been': 1.0, 'babies': 1.0, 'having': 1.0, 'sets': 1.0, 'used': 1.0, '30': 1.0, 'we': 2.0, 'gas': 1.0, 'ago': 1.0, 'a': 2.0, 'top': 1.0, 'your': 1.0, 'playtex': 1.0, 'for': 4.0, '4oz': 1.0, 'purchasing': 1.0, 'years': 2.0, 'oz': 2.0, 'breeze': 1.0, 'drop': 2.0, 'bag': 1.0, 'and': 2.0, 'size': 1.0, 'probably': 1.0, 'easy': 1.0, 'get': 1.0, 'still': 1.0, 'grand': 1.0, 'speaks': 1.0, 'ins': 1.0, 'are': 2.0, 'sterilized': 1.0, 'of': 3.0, 'once': 1.0, 'you': 1.0, 'hang': 1.0, 'pushing': 1.0, 'itself': 1.0, 'in': 1.0, 'air': 1.0, 'out': 1.0}
Word element => {'ease': 1.0, 'function': 1.0, 'their': 1.0, 'with': 1.0, 'pleased': 1.0, 'been': 1.0, 'i': 2.0, 'to': 1.0, 'try': 1.0, 'have': 1.0, 'very': 1.0, 'wanted': 1.0, 'and': 2.0, 'these': 1.0, 'they': 1.0, 'are': 1.0, 'cleaning': 1.0, 'of': 1.0, 'good': 1.0}
Word element => {'before': 1.0, 'need': 1.0, 'using': 1.0, 'thoroughly': 1.0, 'like': 1.0, 'feel': 1.0, 'alright': 1.0, 'do': 2.0, 'things': 1.0, 'considered': 1.0, 'have': 1.0, 'already': 1.0, 'what': 1.0, 'than': 1.0, 'negative': 1.0, 'different': 1.0, 'feels': 1.0, 'nipple': 1.0, '2010': 1.0, 'expired': 1.0, 'on': 1.0, 'print': 1.0, 'discolored': 1.0, 'bottle': 2.0, 'picture': 1.0, 'old': 1.0, 'fyi': 1.0, 'i': 6.0, 'first': 1.0, 'it': 2.0, 'come': 1.0, 'of': 1.0, 'by': 1.0, 'says': 1.0, 'though': 1.0, 'plus': 1.0, 's': 1.0, 't': 1.0, 'job': 1.0, 'believe': 1.0, 'the': 7.0, '2002': 1.0, 'doesn': 1.0, 'year': 2.0, 'to': 1.0, 'all': 2.0, 'as': 1.0, 'in': 3.0, 'will': 1.0, 'also': 1.0, 'them': 2.0, 'nurser': 1.0, 'box': 1.0, 'that': 1.0, 'sterilize': 1.0, 'bought': 1.0, 'huh': 1.0, 'from': 1.0, 'brus': 1.0, 'shown': 1.0, 'definitely': 1.0, 'coupons': 1.0, 'drop': 1.0, 'ins': 1.0, 'newer': 1.0, 'samples': 1.0, 'should': 1.0, 'are': 2.0, '2011': 1.0, 'visibly': 1.0, 'use': 1.0, 'latex': 1.0, 'not': 1.0, 'sure': 1.0, '10': 1.0, 'if': 1.0}
Word element => {'powder': 1.0, 'formula': 1.0, 'water': 1.0, 'wish': 1.0, 'adding': 1.0, 'in': 2.0, 'added': 1.0, 'use': 1.0, 'after': 1.0, 'so': 1.0, 'easy': 1.0, 'bottles': 1.0, 'to': 2.0, 'they': 1.0, 'are': 1.0, 'my': 1.0, 'these': 1.0, 'more': 1.0, 'the': 2.0, 'for': 2.0, 'love': 1.0, 'were': 1.0, 'i': 2.0, 'be': 1.0, 'travel': 1.0, 'only': 1.0, 'top': 1.0, 'complaint': 1.0, 'is': 1.0, 'room': 1.0, 'there': 1.0}
Word element => {'variety': 1.0, 'love': 1.0, 'would': 1.0, 'but': 1.0, 'goodbquality': 1.0, 'price': 1.0, 'more': 1.0, 'my': 1.0, 'couple': 1.0, 'received': 1.0, 'and': 2.0, 'items': 1.0, 'colors': 1.0, 'within': 1.0, 'good': 1.0, 'of': 2.0, 'a': 1.0, 'days': 1.0}
Word element => {'is': 1.0, 'line': 1.0, 'ounce': 1.0, 'in': 1.0, 'like': 1.0, 'much': 1.0, 'for': 1.0, 'playtex': 1.0, 'nurser': 1.0, 'newborns': 1.0, 'or': 2.0, 'easy': 1.0, 'bottles': 1.0, 'bottle': 1.0, 'little': 1.0, 'three': 1.0, 'size': 1.0, 'can': 1.0, 'ins': 1.0, 'drop': 1.0, 'see': 1.0, 'a': 1.0, 'are': 1.0, 'great': 1.0, 'the': 3.0, 'up': 1.0, 'very': 1.0, 'as': 2.0, 'to': 2.0, 'about': 1.0, 'months': 1.0, 'formula': 1.0, 'four': 1.0, 'you': 2.0, 'put': 1.0}
Word element => {'before': 1.0, 'span': 2.0, 'time': 2.0, 'week': 1.0, 'three': 1.0, 'date': 1.0, 'happy': 1.0, 'delivery': 1.0, 'and': 3.0, 'a': 4.0, 'the': 5.0, 'diaper': 1.0, 'was': 4.0, 'not': 2.0, 'last': 1.0, 'arrive': 1.0, 'she': 1.0, 'it': 4.0, 'delivered': 1.0, 'mail': 3.0, 'this': 1.0, 'pictured': 1.0, 'on': 2.0, '3': 1.0, 'day': 1.0, 'days': 1.0, 'i': 2.0, 'bag': 1.0, 'have': 1.0, 'shower': 2.0, 'of': 1.0, 'box': 1.0, 'said': 2.0, 'asked': 1.0, 'is': 1.0, 'priority': 2.0, 'as': 2.0, 'to': 1.0, 'our': 1.0, 'carrier': 1.0, 'what': 1.0, 'usually': 1.0, 'or': 1.0, 'less': 1.0, 'present': 1.0, 'meant': 1.0, 'for': 1.0, 'baby': 1.0, 'did': 1.0}
Word element => {'up': 1.0, 'worth': 1.0, 'save': 1.0, 'priceless': 1.0, 'real': 1.0, 'bag': 1.0, 'your': 1.0, 'knowing': 1.0, 'treat': 2.0, 'myself': 1.0, 'a': 1.0, 'yourself': 1.0, 'as': 1.0, 'and': 3.0, 'now': 1.0, 'is': 3.0, 'that': 1.0, 'awesome': 1.0, 'bought': 1.0, 'i': 2.0, 'here': 1.0, 'shoulder': 1.0, 'strap': 1.0, 'she': 1.0, 's': 2.0, 'for': 1.0, 'love': 1.0, 'this': 1.0, 'it': 3.0, 'easily': 1.0, 'the': 1.0, 'adjustable': 1.0}
Word element => {'no': 1.0, 'pad': 1.0, 'portable': 1.0, 'put': 1.0, 'could': 1.0, 'that': 1.0, 'so': 1.0, 'bought': 1.0, 'i': 3.0, 'job': 1.0, 'fine': 1.0, 'do': 1.0, 'just': 1.0, 'in': 1.0, 'seems': 1.0, 'bag': 2.0, 'problems': 1.0, 'changing': 1.0, 'as': 1.0, 'with': 1.0, 'this': 1.0, 'it': 2.0, 'only': 1.0, 'a': 2.0, 'the': 3.0, 'more': 1.0, 'diaper': 1.0, 'wish': 1.0, 'thing': 1.0, 'to': 1.0, 'had': 1.0, 'was': 1.0, 'little': 1.0, 'room': 1.0}
Word element => {'very': 1.0, 'tag': 1.0, 'take': 1.0, 'please': 1.0, 'that': 1.0, 'i': 1.0, 'large': 1.0, 'thighs': 1.0, 'item': 1.0, 'size': 2.0, 'shaper': 2.0, 'not': 1.0, 'could': 1.0, 'disappointed': 1.0, 'in': 1.0, 'of': 1.0, '34': 2.0, 'plus': 2.0, 'this': 2.0, 'the': 2.0, 't': 1.0, 'is': 1.0, 'now': 1.0, 'universe': 1.0, 'my': 1.0, 'you': 1.0, 'what': 1.0, 'even': 1.0, 'get': 1.0, 'a': 2.0, 'thigh': 2.0, 'aren': 1.0, 'off': 1.0, 'into': 1.0, 'mind': 1.0}
Word element => {'loved': 1.0, 'with': 1.0, 'they': 1.0, 'a': 1.0, 'the': 2.0, 'pleased': 1.0, 'came': 1.0, 'gift': 1.0, 'quickly': 1.0, 'and': 2.0, 'good': 1.0, 'well': 1.0, 'shape': 1.0, 'pattern': 1.0, 'diaper': 1.0, 'in': 2.0, 'for': 1.0, 'were': 1.0, 'it': 2.0, 'was': 1.0}
Word element => {'for': 1.0, 'and': 1.0, 'stick': 1.0, 'they': 3.0, 'great': 1.0, 'these': 1.0, 'the': 2.0, 'my': 1.0, 'are': 1.0, 'small': 1.0, 'daughter': 1.0, 'it': 1.0, 'with': 1.0, 'purchased': 1.0, 'bath': 1.0, 'before': 1.0, 'to': 1.0, 'bathtub': 1.0, 'i': 2.0, 'well': 1.0, 'needs': 1.0, 'in': 1.0, 'also': 1.0, 'loves': 1.0, 'quite': 1.0, 'work': 1.0, 'but': 1.0, 'knew': 1.0, 'our': 1.0, 'playing': 1.0, 'that': 1.0}
Word element => {'were': 1.0, 'thought': 1.0, 'non': 1.0, 'some': 1.0, 'in': 1.0, 'up': 1.0, 'ended': 1.0, 'smooth': 1.0, 'a': 1.0, 'have': 1.0, 'you': 1.0, 'if': 1.0, 'to': 1.0, 'say': 1.0, 'whales': 1.0, 'putting': 1.0, 'i': 5.0, 'am': 1.0, 'they': 2.0, 'them': 2.0, 'tub': 2.0, 'sad': 1.0, 'love': 1.0, 'adorable': 1.0, 'very': 1.0, 'because': 1.0, 'spots': 1.0, 'just': 2.0, 'these': 1.0, 't': 1.0, 'work': 1.0, 'only': 1.0, 'with': 1.0, 'my': 1.0, 'little': 1.0, 'didn': 1.0, 'textured': 2.0, 'so': 1.0, 'd': 1.0, 'recommend': 1.0}
Word element => {'day': 1.0, 'within': 1.0, 'away': 1.0, 'goes': 1.0, 'open': 1.0, 'first': 1.0, 'you': 1.0, 'when': 1.0, 'smell': 1.0, 'solution': 1.0, 'sort': 1.0, 'have': 1.0, 'for': 1.0, 'actually': 1.0, 'sets': 1.0, 'need': 1.0, 'would': 1.0, 'but': 2.0, 'tub': 3.0, 'them': 3.0, 'they': 2.0, 'and': 2.0, '3': 1.0, 'bath': 1.0, 'her': 2.0, 'some': 1.0, 'these': 1.0, 'the': 4.0, 'are': 2.0, 'eventually': 1.0, 'my': 1.0, 'awesome': 1.0, 'daughter': 1.0, 'gets': 1.0, 'down': 1.0, 'bottom': 2.0, 'of': 4.0, 'there': 1.0, 'guessing': 1.0, 're': 1.0, 'off': 1.0, 'loves': 1.0, 'ripping': 1.0, 'it': 1.0, 'she': 1.0, 'spends': 1.0, '5': 1.0, 'portion': 1.0, 'attempting': 1.0, 'hey': 1.0, 'is': 1.0, 'fine': 1.0, 'm': 1.0, 'whatever': 1.0, 'to': 2.0, 'sit': 1.0, 'regular': 1.0, 'in': 1.0, 'drawback': 1.0, 'with': 1.0, 'do': 1.0, 'only': 1.0, 'me': 1.0, 'not': 1.0, 'very': 1.0, 'big': 1.0, 'i': 1.0, 'a': 3.0, 'we': 1.0}
Word element => {'too': 1.0, 'as': 1.0, 'baby': 1.0, 'cleaning': 1.0, 'for': 1.0, 'a': 1.0, 'them': 1.0, 'removed': 1.0, 'they': 2.0, 'the': 1.0, 'are': 1.0, 'is': 1.0, 'expected': 1.0, 'can': 1.0, 'that': 1.0, 'what': 1.0, 'uses': 1.0, 'i': 1.0, 'nice': 1.0, 'toy': 1.0, 'exactly': 1.0, 'be': 1.0}
Word element => {'lose': 1.0, 'hopefully': 1.0, '5': 1.0, 'about': 1.0, 'they': 1.0, 'way': 1.0, 'by': 2.0, 'pvc': 1.0, 'non': 1.0, 'rubber': 1.0, 'glad': 1.0, 'from': 1.0, 'little': 1.0, 'still': 2.0, 'but': 1.0, 'likes': 1.0, 'purpose': 1.0, 'mats': 1.0, 'intended': 1.0, 'interest': 1.0, 'boon': 1.0, 'pulling': 1.0, 'buy': 1.0, 'tried': 1.0, 'i': 3.0, 'off': 1.0, 'pull': 1.0, 'that': 1.0, 'loves': 1.0, 'side': 1.0, 'appliques': 2.0, 'uses': 1.0, 'now': 1.0, 'soon': 1.0, 'and': 5.0, 'the': 10.0, 'these': 4.0, 'tub': 3.0, 'grab': 1.0, 't': 2.0, 'go': 1.0, 'we': 2.0, 'those': 2.0, 'mat': 1.0, 'didn': 1.0, 'got': 2.0, '3': 1.0, 'whales': 1.0, 'on': 1.0, 'bath': 5.0, 'tiny': 1.0, 'try': 1.0, 'every': 1.0, 'for': 3.0, 'all': 1.0, 'as': 1.0, 'to': 6.0, 'our': 2.0, 'them': 3.0, 'baby': 1.0, 'of': 4.0, 'there': 1.0, 'up': 3.0, 'fall': 1.0, 'around': 1.0, 'this': 1.0, 'weren': 1.0, 'beginning': 1.0, 'months': 1.0, 'quite': 1.0, 'edges': 1.0, 'almost': 1.0, 'at': 2.0, 'since': 1.0, 'she': 6.0, 'each': 1.0, 've': 1.0, 'would': 1.0, 'll': 1.0, 'bottom': 1.0, 'stand': 1.0, 'in': 2.0, 'areas': 1.0, '10': 1.0, 'if': 1.0, 'her': 2.0, 'are': 3.0, 'm': 1.0, '34': 4.0, 'best': 1.0, 'thinks': 1.0, 'toys': 1.0, 'pulls': 2.0, 'start': 1.0, 'right': 1.0}
Word element => {'wonderful': 1.0, 'really': 1.0, 'so': 1.0, 'bathtub': 1.0, 'are': 2.0, 'ready': 1.0, 'option': 1.0, 'not': 1.0, 'popped': 1.0, 'this': 2.0, 'perfect': 2.0, 'kitchen': 1.0, 'product': 1.0, 'cheap': 1.0, 'for': 3.0, 'something': 1.0, 'reviews': 1.0, 'they': 4.0, 'slipping': 1.0, 'a': 2.0, 'we': 2.0, 'unstuck': 1.0, 'quite': 1.0, 're': 1.0, 'off': 1.0, 'simple': 1.0, 'wanted': 1.0, 'our': 3.0, 'as': 1.0, 'to': 1.0, 'easily': 1.0, 'like': 1.0, 'take': 1.0, 'month': 1.0, 'removable': 1.0, 'sitting': 1.0, 'on': 1.0, 'and': 3.0, 'have': 2.0, 'sink': 2.0, 'never': 1.0, 'become': 1.0, 'up': 2.0, 'some': 1.0, 'is': 2.0, 'say': 1.0, 'kept': 1.0, 'little': 1.0, '7': 1.0, 'the': 1.0, 'without': 1.0, 'old': 1.0}
Word element => {'and': 1.0, 'great': 1.0, 're': 1.0, 'slipping': 1.0, 'around': 1.0, 'of': 1.0, 'fear': 1.0, 'i': 1.0, 's': 1.0, 'crying': 1.0, 'put': 1.0, 'they': 1.0, 'these': 1.0, 'my': 1.0, 'for': 1.0, 'in': 1.0, 'daughter': 1.0, 'adorable': 1.0, 'once': 1.0, 'tub': 1.0, 'stopped': 1.0, 'she': 1.0, 'immediately': 1.0}
Word element => {'big': 1.0, 'bathtub': 1.0, 'sized': 1.0, 'for': 1.0, 'use': 1.0, 'in': 2.0, 'perfect': 1.0, 'but': 2.0, 'little': 1.0, 'give': 1.0, 'to': 1.0, 'be': 1.0, 'size': 1.0, 'cute': 1.0, 'mat': 1.0, 'small': 2.0, 'great': 1.0, 'the': 1.0, 'a': 4.0, 'regular': 1.0, 'is': 1.0, 'too': 1.0, 'where': 1.0, 'sink': 2.0, 'our': 1.0, 'design': 1.0, 'we': 1.0, 'baby': 1.0, 'whale': 1.0, 'works': 1.0, 'her': 1.0, 'baths': 1.0, 'this': 1.0, 'it': 1.0, 'would': 1.0}
Word element => {'products': 1.0, 'their': 1.0, 'like': 1.0, 'generally': 1.0, 'try': 1.0, 'most': 1.0, 'baby': 1.0, 'ended': 1.0, 'are': 1.0, 'the': 3.0, 'small': 1.0, 'flat': 1.0, 'i': 4.0, 'it': 3.0, 'this': 1.0, 'would': 2.0, 'bottomed': 1.0, 'my': 2.0, 'returning': 1.0, 'for': 2.0, 'one': 2.0, 'too': 1.0, 'and': 2.0, 'up': 1.0, 'likely': 1.0, 'be': 1.0, 'best': 1.0, 'suctions': 2.0, 'stick': 1.0, 'in': 2.0, 'regular': 1.0, 'is': 1.0, 'get': 1.0, 'tub': 1.0, 'made': 1.0, 'mat': 1.0, 'effective': 1.0, 'self': 1.0, 'not': 1.0, 'enough': 1.0, 'room': 1.0, 'even': 1.0, 'little': 1.0, 'as': 1.0, 'to': 2.0, 'sit': 1.0, 'bath': 1.0, 'on': 1.0, 'if': 2.0, 'a': 2.0, 'could': 1.0, 'they': 1.0, 'bigger': 1.0}
Word element => {'all': 1.0, 'naked': 1.0, 'our': 1.0, 'product': 1.0, 'to': 1.0, 'at': 1.0, 'boon': 1.0, 'not': 1.0, 'would': 1.0, 'don': 1.0, 'buy': 1.0, 't': 1.0, 'this': 1.0, 'stick': 1.0, 'it': 2.0, 'useless': 1.0, 'is': 1.0, 'annoying': 1.0, 'bathtub': 1.0, 'completely': 1.0, 'and': 1.0, 'awful': 1.0, 'frustratingly': 1.0}
Word element => {'stained': 1.0, 'that': 1.0, 'tub': 2.0, 'up': 2.0, 'of': 1.0, 'doesn': 1.0, 'put': 1.0, 'but': 1.0, 'her': 2.0, 'bottom': 1.0, 'inside': 1.0, 'down': 1.0, 'my': 1.0, 'this': 2.0, 'only': 1.0, 'slip': 1.0, 'at': 1.0, 'no': 1.0, 'in': 1.0, 'for': 1.0, 'color': 1.0, 'bought': 2.0, 'one': 1.0, 'i': 2.0, 'bathtub': 2.0, 'small': 1.0, 'little': 1.0, 'it': 5.0, 'she': 1.0, 'won': 1.0, 'blow': 2.0, 'a': 3.0, 'could': 1.0, 't': 2.0, 'the': 3.0, 'stick': 1.0, 'to': 1.0, 'all': 1.0, 'weight': 1.0, 'stay': 1.0, 'is': 3.0, 'so': 1.0, 'bit': 1.0, 'green': 1.0, 'and': 1.0, 'issue': 1.0, 'way': 1.0, 'cover': 1.0, 'there': 1.0, 'helps': 1.0, 'larger': 1.0}
Word element => {'though': 1.0, 'tubs': 1.0, 'places': 1.0, 'other': 1.0, 'visit': 1.0, 'bottom': 1.0, 'different': 1.0, 'good': 2.0, 'think': 1.0, 'really': 1.0, 'is': 1.0, 'thought': 1.0, 'that': 1.0, 'has': 1.0, 'well': 1.0, 'don': 1.0, 'bathtub': 1.0, 'slip': 1.0, 'it': 5.0, 'this': 2.0, 'with': 2.0, 'bought': 1.0, 'be': 2.0, 'and': 2.0, 'of': 1.0, 'necessary': 1.0, 'resistant': 1.0, 'not': 2.0, 'pleased': 1.0, 'use': 1.0, 'but': 1.0, 'grandparents': 1.0, 'product': 1.0, 'actually': 1.0, 'i': 4.0, 'texture': 1.0, 'so': 1.0, 'mat': 1.0, 'stick': 1.0, 'we': 1.0, 'a': 1.0, 't': 1.0, 'might': 1.0, 'will': 1.0, 'also': 1.0, 'because': 1.0, 'does': 1.0, 'tub': 1.0, 'our': 2.0, 'as': 2.0, 'to': 2.0, 'texturing': 1.0, 'have': 1.0, 'am': 1.0, 'when': 1.0}
Word element => {'were': 1.0, 'affect': 1.0, 'bigger': 1.0, 'who': 1.0, 'people': 1.0, 'there': 1.0, 'keeping': 1.0, 'out': 1.0, 'here': 1.0, 'issue': 1.0, 'an': 1.0, 'individuals': 1.0, 'sensitive': 1.0, 'rubber': 1.0, 'contains': 1.0, 'package': 1.0, 'says': 2.0, 'detail': 1.0, 'if': 1.0, 'm': 1.0, 'natural': 1.0, 'price': 1.0, 'wish': 1.0, 'this': 2.0, 'cover': 1.0, 'but': 3.0, 'work': 1.0, 'four': 1.0, 'latex': 2.0, 'not': 3.0, 'me': 1.0, 'and': 5.0, 'appealed': 1.0, 'or': 1.0, 'cause': 1.0, 'they': 3.0, 'free': 1.0, 'these': 1.0, 'the': 4.0, 'needed': 1.0, 'it': 4.0, 'she': 1.0, 'product': 1.0, 'for': 3.0, 'pvc': 1.0, 'because': 1.0, 'read': 1.0, 'little': 2.0, 'that': 1.0, 'been': 1.0, 'allergic': 1.0, 'sliding': 1.0, 'completely': 1.0, 'around': 1.0, 'reaction': 1.0, 'fast': 1.0, 'something': 1.0, 'are': 2.0, 'may': 2.0, 'my': 1.0, 'to': 4.0, 'had': 1.0, 'sure': 1.0, 'tub': 3.0, 'made': 1.0, 'tubs': 1.0, 'has': 1.0, 'review': 1.0, 'definitly': 1.0, 'them': 2.0, 'baby': 1.0, 'sinks': 1.0, 'going': 1.0, 's': 1.0, 'a': 2.0, 'in': 4.0, 'said': 1.0, 'fine': 1.0, 'really': 1.0, 'one': 1.0, 'bought': 1.0, 'i': 3.0, 'two': 1.0, 'on': 1.0, 'put': 2.0, 'her': 1.0, 'someone': 1.0, 'you': 1.0, 'wanted': 1.0, 'need': 1.0}
Word element => {'dont': 1.0, 'absolutely': 1.0, 'bucks': 1.0, 'rubber': 1.0, 'buy': 1.0, 'i': 1.0, 'one': 1.0, 'slippery': 1.0, 'placemat': 1.0, 'at': 1.0, 'table': 1.0, '5': 1.0, 'than': 2.0, 'smaller': 1.0, 'the': 1.0, 'a': 2.0, 'below': 1.0, 'is': 2.0, 'only': 1.0, 'this': 2.0, 'its': 3.0, 'and': 1.0, 'five': 1.0, 'way': 1.0, 'when': 1.0, 'too': 1.0, 'pricey': 1.0, 'wet': 1.0, 'got': 1.0, 'better': 2.0}
Word element => {'sooo': 1.0, 'before': 1.0, 'ended': 1.0, 'baby': 1.0, 'sink': 1.0, 'that': 2.0, 'a': 1.0, 'middle': 1.0, 'if': 1.0, 'or': 1.0, 'i': 5.0, 'putting': 1.0, 'for': 1.0, 'had': 1.0, 'to': 1.0, 'of': 2.0, 'up': 1.0, 'really': 2.0, 'course': 1.0, 'realized': 1.0, 'read': 1.0, 'the': 3.0, 'is': 1.0, 'more': 1.0, 'looks': 1.0, 'it': 3.0, 'buying': 1.0, 'with': 1.0, 'small': 1.0, 'have': 1.0, 'would': 1.0, 'in': 1.0, 'my': 1.0, 'description': 1.0, 'and': 1.0, 'bathtub': 2.0, 'surrounded': 1.0, 'applique': 1.0, 'no': 1.0, 'slip': 1.0, 'thingies': 1.0, 'nice': 1.0, 'but': 1.0, 'this': 1.0, 'wish': 1.0, 'd': 1.0, 'paid': 1.0, 'attention': 1.0, 'mat': 1.0, 'adult': 1.0, 'size': 1.0}
Word element => {'those': 1.0, 'of': 1.0, 'solved': 1.0, 'iron': 1.0, 'cold': 1.0, 'help': 1.0, 'cast': 1.0, 'a': 1.0, 'worked': 1.0, 'problems': 1.0, 'son': 1.0, 'bath': 2.0, 'is': 2.0, 'to': 2.0, 'outgrew': 1.0, 'continue': 1.0, 'bought': 1.0, 'could': 1.0, 'in': 1.0, 'kitchen': 1.0, 'my': 1.0, 'the': 2.0, 'give': 1.0, 'i': 2.0, 'sink': 2.0, 'both': 1.0, 'slippery': 1.0, 'his': 1.0, 'it': 1.0, 'with': 1.0, 'this': 2.0, 'he': 1.0, 'so': 1.0, 'lounger': 1.0, 'perfectly': 1.0, 'and': 3.0, 'sit': 1.0, 'able': 1.0}
Word element => {'on': 1.0, 'to': 1.0, 'baby': 1.0, 'my': 1.0, 'for': 1.0, 'but': 1.0, 'sit': 1.0, 'have': 1.0, 'foldable': 1.0, 'tub': 1.0, 'fits': 1.0, 'prince': 1.0, 'i': 2.0, 't': 1.0, 'the': 1.0, 'perfect': 1.0, 'in': 1.0, 'lionheart': 1.0, 'covered': 1.0, 'used': 1.0, 'this': 1.0, 'it': 1.0, 'and': 1.0, 'perfectly': 1.0, 'there': 1.0, 'that': 1.0, 's': 1.0, 'a': 1.0, 'little': 1.0, 'room': 1.0, 'isn': 1.0}
Word element => {'adult': 1.0, 'not': 1.0, 'an': 1.0, 'tub': 2.0, 'baby': 1.0, 'a': 1.0, 'use': 1.0, 'this': 1.0, 'it': 1.0, 'mat': 1.0, 'bath': 2.0, 'is': 2.0, 'cute': 1.0, 'very': 1.0, 'quality': 1.0, 'and': 2.0, 'nice': 1.0, 'in': 1.0, 'for': 1.0}
Word element => {'tub': 1.0, 'small': 1.0, 'using': 1.0, 'point': 1.0, 'no': 1.0, 'there': 1.0, 'waste': 1.0, 'your': 1.0, 'bath': 2.0, 'purchase': 1.0, 'of': 2.0, 'notion': 1.0, 't': 1.0, 'a': 4.0, 'ish': 1.0, 'general': 1.0, 'low': 1.0, 'what': 1.0, 'before': 1.0, 'average': 1.0, 'used': 1.0, 'so': 1.0, 'items': 1.0, 'usually': 1.0, 'be': 1.0, 'reviews': 2.0, 'don': 1.0, 'anyway': 1.0, 'yes': 1.0, 'i': 4.0, 'read': 3.0, 'the': 4.0, 'whatever': 1.0, 'for': 3.0, 'purchasing': 1.0, 'that': 2.0, 'cost': 1.0, 'something': 2.0, 'sink': 2.0, 'reason': 1.0, 'in': 2.0, 'open': 1.0, 'is': 3.0, 'typically': 1.0, 'to': 3.0, 'was': 1.0, 'this': 2.0, 'shocked': 1.0, 'it': 2.0, 'failed': 1.0, 'item': 1.0, 'money': 1.0, 'but': 1.0, 'can': 1.0, 'mat': 1.0, 'size': 1.0, 'measurements': 1.0, 'suggests': 1.0}
Word element => {'for': 1.0, 'bigger': 1.0, 'might': 1.0, 'like': 1.0, 'make': 1.0, 'feels': 1.0, 'two': 1.0, 'space': 2.0, 'covered': 1.0, 'larger': 1.0, 'i': 2.0, 's': 1.0, 'a': 1.0, 'well': 1.0, 'her': 1.0, 'works': 1.0, 'slipping': 1.0, 'is': 2.0, 'from': 1.0, 'plus': 1.0, 'downside': 1.0, 'my': 1.0, 'toxic': 1.0, 'more': 1.0, 'the': 1.0, 'protect': 1.0, 'baby': 1.0, 'another': 1.0, 'was': 1.0, 'to': 4.0, 'tub': 1.0, 'need': 1.0, 'which': 1.0, 'wish': 1.0, 'important': 1.0, 'and': 1.0, 'me': 1.0, 'non': 1.0, 'sticks': 1.0, 'it': 3.0, 'only': 1.0}
Word element => {'into': 1.0, 'completely': 1.0, 'product': 1.0, 'what': 1.0, 'purchased': 1.0, 'screw': 1.0, 'have': 1.0, 'and': 2.0, 'rods': 2.0, 'them': 1.0, 'price': 1.0, 'any': 2.0, 'don': 2.0, 'mail': 1.0, 'love': 1.0, 'are': 1.0, 'in': 1.0, 'useless': 1.0, 'unfortunately': 1.0, 'curtain': 1.0, 'a': 1.0, 'finials': 1.0, 'that': 1.0, 'they': 3.0, 'if': 1.0, 'pretty': 1.0, 'received': 1.0, 'just': 1.0, 'but': 2.0, 'i': 2.0, 'so': 1.0, 'great': 1.0, 'the': 1.0, 'these': 1.0, 't': 2.0, 'fit': 1.0}
Word element => {'was': 1.0, 'what': 1.0, 'were': 1.0, 'bright': 1.0, 'just': 1.0, 'perfect': 1.0, 'i': 2.0, 'feminine': 1.0, 's': 1.0, 'got': 1.0, 'and': 2.0, 'for': 2.0, 'daughter': 1.0, 'hoping': 1.0, 'room': 1.0, 'these': 1.0, 'they': 2.0, 'my': 1.0, 'are': 1.0}
Word element => {'hoping': 1.0, 'is': 1.0, 'out': 1.0, 'perfect': 1.0, 'not': 1.0, 'was': 2.0, 'washed': 1.0, 'color': 1.0, 'love': 1.0, 'this': 1.0, 'bedding': 1.0, 'what': 1.0, 'set': 1.0, 'i': 1.0, 'daughters': 1.0, 'which': 1.0, 'for': 1.0, 'the': 1.0, 'my': 1.0, 'cradle': 1.0, 'good': 1.0, 'and': 1.0, 'quality': 1.0}
Word element => {'needed': 1.0, 'just': 1.0, 'timely': 1.0, 'quality': 1.0, 'and': 2.0, 'color': 1.0, 'my': 1.0, 'delivery': 1.0, 'our': 1.0, 'niece': 1.0, 'what': 1.0, 'set': 1.0, 'loved': 1.0, 'this': 1.0, 'fit': 1.0, 'we': 1.0, 'family': 1.0, 'cradle': 1.0, 'were': 1.0, 'it': 1.0, 'perfectly': 1.0}
Word element => {'36': 1.0, 'x': 1.0, '18': 1.0, 'love': 1.0, 'sure': 1.0, 'it': 1.0, 'would': 1.0, 'we': 1.0, 'beautiful': 1.0, 'the': 2.0, 'buy': 1.0, 'so': 1.0, 'want': 1.0, 'looks': 1.0, 'size': 1.0, 'to': 2.0, 'of': 1.0, 'sheet': 1.0, 'and': 1.0, 'bumper': 1.0, 'cradle': 2.0, 'an': 1.0, 'but': 1.0, 'will': 2.0, 'make': 1.0, 'fit': 2.0, 'our': 1.0}
Word element => {'cradle': 1.0, 'fits': 1.0, 'perfectly': 1.0, 'affordable': 1.0, 'it': 1.0, 'standard': 1.0, 'is': 1.0, 'this': 1.0, 'beautiful': 1.0, 'feminine': 1.0, 'a': 1.0, 're': 1.0, 'and': 2.0, 'very': 2.0, 'you': 1.0, 'if': 1.0, 'looking': 1.0, 'for': 1.0, 'something': 1.0, 'girlie': 1.0}
Word element => {'it': 1.0, 'on': 1.0, 'so': 1.0, 'looks': 1.0, 'baby': 1.0, 'new': 1.0, 'my': 1.0, 'the': 2.0, 'cradle': 1.0, 'bedding': 1.0, 'beautiful': 2.0, 'granddaughter': 1.0, 'was': 1.0, 'photo': 1.0, 'just': 1.0, 'set': 1.0, 'shown': 1.0, 'as': 2.0, 'and': 1.0}
Word element => {'that': 1.0, 'place': 1.0, 'easily': 1.0, 'you': 2.0, 'them': 1.0, 'my': 1.0, 'in': 1.0, 'had': 1.0, 'bag': 1.0, 'have': 2.0, 'bought': 1.0, 'would': 1.0, 'disney': 1.0, 'of': 1.0, 'use': 1.0, 'loved': 1.0, 'aid': 1.0, 'take': 1.0, 'people': 1.0, 'if': 2.0, 'some': 1.0, 'others': 1.0, 'these': 1.0, 'big': 1.0, 'great': 1.0, 'to': 6.0, 'our': 1.0, 'like': 1.0, 'trip': 1.0, 'i': 2.0, 'they': 2.0, 'are': 3.0, 'mind': 1.0, 'get': 1.0, 'easy': 2.0, 'read': 1.0, 'on': 2.0, 'put': 1.0, 'sold': 1.0, 'and': 2.0, 'almost': 1.0, 'separated': 1.0, 'going': 1.0, 'could': 1.0, 'we': 1.0, 't': 1.0, 'a': 2.0, 'it': 1.0, 'band': 1.0, 'give': 1.0, 'peace': 1.0, 'can': 2.0, 'say': 1.0, 'off': 1.0, 'enough': 1.0}
Word element => {'fantastic': 1.0, 'swimming': 1.0, 'sweating': 1.0, 'this': 1.0, 'days': 1.0, '3': 1.0, 'these': 1.0, 'for': 1.0, 'safety': 1.0, 'tattoos': 1.0, 'are': 1.0, 'showering': 1.0, 'easy': 1.0, 'through': 1.0, 'to': 1.0, 'put': 1.0, 'stayed': 1.0, 'is': 1.0, 'on': 2.0, 'very': 1.0, 'and': 2.0}
Word element => {'too': 1.0, 'can': 1.0, 'never': 1.0, 'idea': 1.0, 'much': 1.0, 'city': 1.0, 'in': 1.0, 'being': 1.0, 'activity': 2.0, 'busy': 1.0, 'all': 1.0, 'careful': 1.0, 'after': 1.0, 'comes': 1.0, 'its': 1.0, 'to': 2.0, 'be': 1.0, 'product': 1.0, 'swimming': 1.0, 'up': 1.0, 'made': 1.0, 'not': 1.0, 'chicago': 1.0, 'stands': 1.0, 'use': 1.0, 'that': 2.0, 'well': 1.0, 'a': 2.0, 'is': 1.0, 'with': 2.0, 'this': 1.0, 'even': 1.0, 'fade': 1.0, 'trips': 1.0, 'claims': 1.0, 'i': 1.0, 'great': 1.0, 'the': 1.0, 'these': 1.0, 'they': 1.0, 'for': 1.0, 'stay': 1.0, 'put': 1.0, 'and': 2.0, 'do': 1.0}
Word element => {'few': 1.0, 'normal': 1.0, 'her': 1.0, 'taking': 1.0, 'after': 1.0, 'week': 1.0, 'one': 1.0, 'if': 1.0, 'don': 1.0, 'up': 1.0, 'also': 1.0, 'than': 1.0, 'within': 1.0, 'be': 1.0, 'rather': 1.0, 'never': 1.0, 'minutes': 1.0, 'recommend': 1.0, 'thankfully': 1.0, 'back': 1.0, 'needed': 1.0, 'stay': 1.0, 'sure': 1.0, 'no': 1.0, 'apply': 1.0, 'reading': 1.0, 'swimming': 1.0, '34': 2.0, 'go': 1.0, 't': 1.0, 'we': 1.0, 's': 1.0, 'a': 3.0, 'problem': 1.0, 'safe': 1.0, 'take': 1.0, 'old': 1.0, 'for': 1.0, 'love': 1.0, 'sunscreen': 1.0, 'directions': 1.0, 'wrinkle': 1.0, 'cause': 1.0, 'they': 2.0, 'these': 2.0, 'without': 1.0, 'the': 2.0, 'my': 2.0, 'i': 4.0, 'otherwise': 1.0, 'vacation': 2.0, 'year': 1.0, 'daughter': 2.0, 'every': 1.0, 'wears': 2.0, 'pain': 1.0, 'carefully': 1.0, 'to': 4.0, '3': 1.0, 'on': 3.0, 'make': 1.0, 'you': 1.0, 'sorry': 1.0, 'correct': 1.0, 'but': 2.0, 'off': 2.0, 'skin': 2.0, 'baths': 1.0, 'first': 1.0, 'she': 1.0, 'it': 2.0, 'is': 2.0, 'would': 2.0, 've': 1.0, 'backing': 1.0, 'them': 2.0}
Word element => {'recommend': 1.0, 'highly': 1.0, 'son': 1.0, 'my': 1.0, 'tattoo': 1.0, 'a': 1.0, 'like': 1.0, 'doesn': 1.0, 'kid': 1.0, 'loved': 1.0, 'purchase': 1.0, 'worth': 1.0, 'of': 1.0, 'his': 1.0, 'what': 1.0, 'peace': 1.0, 'stop': 1.0, 'at': 1.0, 'they': 1.0, 'time': 1.0, 'first': 1.0, 'for': 1.0, 'had': 1.0, 'in': 1.0, 't': 1.0, 'the': 1.0, 'these': 1.0, 'our': 1.0, 'where': 1.0, 'am': 1.0, 'so': 1.0, 'bought': 2.0, 'i': 4.0, 'glad': 1.0, 'are': 1.0, 'mind': 1.0, 'actually': 1.0, 'people': 1.0, 'and': 2.0, 'me': 1.0, 'just': 1.0, 'disneyland': 1.0, 'asking': 1.0, 'them': 1.0}
Word element => {'getaway': 1.0, 'family': 1.0, 'staple': 1.0, 'picked': 1.0, 'glad': 1.0, 'so': 1.0, 'am': 1.0, 'get': 1.0, 'will': 1.0, 'could': 1.0, 'every': 1.0, 'asked': 1.0, 'who': 1.0, 'line': 1.0, 'met': 1.0, 'parents': 1.0, 'employees': 1.0, 'several': 1.0, 'when': 1.0, 'aid': 1.0, 'band': 1.0, 'right': 1.0, 'peeled': 1.0, 'sign': 1.0, 'rides': 1.0, 'bath': 1.0, 'through': 1.0, 'she': 1.0, 'intact': 1.0, 'completely': 1.0, 'few': 2.0, 'over': 1.0, 'bit': 1.0, 'other': 1.0, 'playing': 1.0, 'fact': 1.0, 'do': 1.0, 'definitely': 1.0, 'think': 1.0, 'off': 2.0, 'picking': 1.0, 'peel': 1.0, 'big': 1.0, 'arm': 1.0, 's': 2.0, 'son': 2.0, 'these': 4.0, 'for': 1.0, 'such': 1.0, 'place': 1.0, 'helpful': 1.0, 'tattoo': 1.0, 'visible': 1.0, 'side': 1.0, 'good': 1.0, 'would': 1.0, 'something': 2.0, 'complimented': 1.0, 'i': 5.0, 'we': 5.0, 'daughter': 1.0, 'got': 2.0, 'they': 4.0, 'talking': 1.0, 'case': 1.0, 'easily': 1.0, 'that': 5.0, 'in': 3.0, 'long': 1.0, 'on': 4.0, '3': 2.0, 'us': 2.0, 'where': 1.0, 'phone': 1.0, 'any': 1.0, 'idea': 1.0, 'two': 1.0, 'little': 5.0, 'our': 3.0, 'to': 5.0, 'than': 1.0, 'vacation': 1.0, 'lines': 1.0, 'them': 3.0, 'decided': 1.0, 'first': 1.0, 'wear': 1.0, 'it': 2.0, 'disney': 2.0, 'felt': 1.0, 'from': 1.0, 'gems': 1.0, 'while': 1.0, 'neat': 1.0, 'my': 4.0, 'and': 9.0, 'start': 1.0, 'wanted': 1.0, 'had': 2.0, 'was': 3.0, '5': 1.0, 'make': 1.0, 'information': 1.0, 'be': 2.0, 'forbid': 1.0, 'ensure': 1.0, 'water': 1.0, 'up': 2.0, 'shirt': 1.0, 'or': 1.0, 't': 1.0, 'along': 1.0, 'marking': 1.0, 'did': 1.0, 'went': 1.0, 'those': 2.0, 'there': 1.0, 'give': 1.0, 'after': 1.0, 'quite': 1.0, 'googling': 1.0, 'loved': 1.0, 'about': 1.0, 'lot': 1.0, 'one': 1.0, 'ones': 2.0, 'try': 1.0, 'only': 1.0, 'read': 2.0, 'end': 1.0, 'really': 1.0, 'cell': 1.0, 'kids': 1.0, 'park': 1.0, 'planning': 1.0, 'were': 2.0, 'full': 1.0, 'having': 1.0, '34': 2.0, 'ages': 1.0, 'tattoos': 1.0, 'more': 2.0, 'sure': 1.0, 'crowded': 1.0, 'a': 13.0, 'confident': 1.0, 'very': 1.0, 'being': 1.0, 'god': 1.0, 'large': 1.0, 'home': 1.0, 'by': 1.0, 'with': 3.0, 'some': 2.0, 'colorful': 1.0, 'spent': 1.0, 'without': 2.0, 'mother': 1.0, 'days': 2.0, 'day': 1.0, 'separated': 1.0, 'at': 2.0, 'three': 1.0, 'the': 4.0, 'of': 3.0}
Word element => {'its': 1.0, 'a': 1.0, 'and': 1.0, 'spindle': 1.0, 'got': 1.0, 'function': 1.0, 'after': 1.0, 'low': 1.0, 'just': 1.0, 'quality': 1.0, 'but': 1.0, 'gate': 1.0, 'over': 1.0, 'it': 2.0, 'knocked': 1.0, 'we': 1.0, 'spindles': 1.0, 'the': 2.0, 'cat': 1.0, 'are': 1.0, 'broke': 1.0, 'of': 1.0, 'is': 1.0, 'still': 1.0, 'serving': 1.0}
Word element => {'boundaries': 1.0, 'that': 1.0, 'can': 2.0, 'versatile': 1.0, 'so': 1.0, 'his': 1.0, 'proved': 1.0, 'have': 1.0, 'granted': 1.0, 'house': 1.0, 'for': 1.0, 'jumps': 1.0, 'certain': 1.0, 'couple': 1.0, 'away': 1.0, 'and': 1.0, 'i': 2.0, 'areas': 1.0, 'bought': 1.0, 'the': 1.0, 'these': 2.0, 'my': 1.0, 'be': 1.0, 'shitzu': 1.0, 'him': 1.0, 'never': 1.0, 'they': 1.0, 'confined': 1.0, 'to': 5.0, 'of': 2.0, 'keep': 1.0, 'move': 1.0, 'if': 1.0, 'them': 4.0, 'about': 1.0, 'different': 1.0, 'take': 2.0, 'with': 2.0, 'he': 2.0, 'zones': 1.0, 'it': 1.0, 'us': 2.0, 'a': 1.0, 'we': 2.0, 'going': 1.0, 'gates': 1.0, 'are': 2.0, 'bringing': 1.0, 'on': 1.0, 'or': 1.0, 'moves': 1.0, 'seems': 1.0}
Word element => {'firewood': 1.0, 'good': 1.0, 'make': 1.0, 'opened': 1.0, 'was': 1.0, 'when': 1.0, 'piece': 1.0, 'very': 1.0, 'and': 1.0, 'buy': 1.0, 'cheap': 1.0, 'the': 1.0, 'never': 2.0, 'would': 2.0, 'at': 1.0, 'apart': 2.0, 'junk': 1.0, 'of': 1.0, 'another': 1.0, 'one': 2.0, 'went': 1.0, 'made': 1.0, 'out': 1.0, 'fell': 2.0, 'bought': 1.0, 'store': 1.0, 'did': 1.0, 'use': 1.0, 'it': 2.0, 'this': 1.0}
Word element => {'her': 1.0, 'cut': 1.0, 'would': 1.0, 'my': 1.0, 'afraid': 1.0, 'crown': 1.0, 'especially': 1.0, 'edges': 1.0, 'sharp': 1.0, 'plastic': 1.0, 'very': 1.0, 'received': 1.0, 'gums': 1.0, 'daughter': 1.0, 'when': 1.0, 'i': 3.0, 'on': 1.0, 'silicone': 1.0, 'material': 1.0, 'but': 2.0, 'loved': 1.0, 'disappointed': 1.0, 'some': 1.0, 'was': 2.0, 'look': 1.0, 'the': 4.0, 'chewing': 1.0, 'are': 1.0, 'with': 1.0, 'hard': 1.0, 'this': 1.0, 'it': 2.0, 'were': 1.0, 'of': 3.0, 'beads': 2.0, 'a': 2.0, 'nice': 1.0, 'chewy': 1.0, 'many': 1.0, 'type': 1.0}
Word element => {'box': 1.0, 'into': 1.0, 'packed': 1.0, 'packaged': 1.0, 'wonderfully': 1.0, 'item': 1.0, 'not': 1.0, 'which': 1.0, 'were': 1.0, 'bite': 1.0, 'this': 3.0, 'about': 1.0, 'have': 1.0, 'teether': 1.0, 'girl': 1.0, 'came': 3.0, 'i': 5.0, 'two': 1.0, 'some': 1.0, 'and': 5.0, 'my': 1.0, 'girlie': 2.0, 'newborn': 1.0, 'in': 3.0, 's': 1.0, 'a': 1.0, 'alot': 1.0, 'boys': 1.0, 'am': 1.0, 'so': 1.0, 'items': 2.0, 'it': 3.0, 'she': 1.0, 'but': 1.0, 'can': 1.0, 'stuff': 1.0, 'on': 1.0, 'does': 1.0, 'safely': 1.0, 'even': 1.0, 'got': 1.0, 'of': 2.0, 'anything': 1.0, 'other': 1.0, 'sad': 1.0, 'for': 1.0, 'all': 1.0, 'to': 1.0, 'is': 3.0, 'say': 1.0, 'christmas': 1.0, 'ordered': 1.0, 'damaged': 2.0, 'job': 1.0, 'the': 3.0, 'package': 1.0}
Word element => {'family': 1.0, 'what': 1.0, 'usable': 1.0, 'i': 3.0, 'products': 1.0, 'soft': 1.0, 'could': 1.0, 'for': 1.0, 'to': 1.0, 're': 1.0, 'them': 1.0, 'and': 3.0, 'product': 1.0, 'friends': 1.0, 'stylish': 1.0, 'more': 1.0, 'great': 1.0, 'ask': 1.0, 'have': 1.0, 'several': 1.0, 'always': 1.0, 'of': 1.0, 'recommend': 1.0, 'their': 1.0}
Word element => {'pouch': 1.0, 'attached': 1.0, 'away': 1.0, 'throw': 1.0, 'very': 1.0, 'didn': 2.0, 'for': 2.0, 'in': 1.0, 'regular': 1.0, 'hoping': 1.0, 'accustomed': 1.0, 'wasteful': 1.0, 'spoon': 1.0, 'addition': 1.0, 'he': 3.0, 'this': 1.0, 'it': 2.0, 'i': 1.0, 'the': 3.0, 'more': 1.0, 'already': 1.0, 'these': 1.0, 'spoons': 1.0, 'to': 3.0, 'as': 1.0, 'still': 1.0, 'son': 1.0, 'easy': 1.0, 'get': 1.0, 'kind': 1.0, 'helpful': 1.0, 'wasn': 1.0, 'using': 2.0, 'like': 1.0, 'end': 1.0, 'bought': 1.0, 'waiting': 1.0, 'directly': 1.0, 'you': 1.0, 'but': 1.0, 'food': 1.0, 'so': 1.0, 'really': 1.0, 'up': 1.0, 'of': 1.0, 'preferred': 1.0, 'squeezing': 1.0, 'would': 1.0, 'puree': 1.0, 'into': 1.0, 'his': 1.0, 'mouth': 1.0, 's': 1.0, 't': 3.0, 'we': 1.0, 'a': 1.0, 'my': 1.0, 'purchase': 1.0, 'if': 2.0, 'have': 1.0}
Word element => {'known': 1.0, 'would': 1.0, 'wish': 1.0, 'much': 1.0, 'works': 1.0, 'water': 1.0, 'puree': 1.0, 'to': 5.0, 'out': 1.0, 'soak': 1.0, 'flailing': 1.0, 'if': 2.0, 'super': 1.0, 'same': 1.0, 'like': 2.0, 'running': 1.0, 'have': 4.0, 'too': 1.0, 'and': 3.0, 'attached': 1.0, 's': 1.0, 'convenient': 1.0, 'with': 1.0, 'even': 1.0, 'does': 1.0, 'deep': 1.0, 'that': 3.0, 'because': 1.0, 'when': 1.0, 'what': 3.0, 'your': 1.0, 'keeps': 1.0, 'are': 2.0, 'how': 1.0, 'runny': 1.0, 'these': 3.0, 'but': 2.0, 'work': 1.0, 'p': 1.0, '2': 1.0, 'more': 1.0, 'is': 8.0, '00': 1.0, 'control': 1.0, 'vinegar': 1.0, 'the': 4.0, 'spoon': 1.0, 'then': 1.0, 'it': 6.0, 'about': 2.0, 'purees': 1.0, 'said': 1.0, 'in': 1.0, 'baby': 1.0, 'others': 1.0, 'many': 1.0, 'really': 1.0, 'just': 1.0, 'not': 1.0, 'difficult': 3.0, 'great': 2.0, 'for': 2.0, 'thicker': 1.0, 'they': 2.0, 'cut': 1.0, '3rd': 1.0, 'foods': 1.0, 'us': 1.0, 'also': 1.0, 'clean': 1.0, 'coming': 1.0, 'i': 5.0, 'done': 1.0, 'let': 1.0, 'hot': 1.0, 'half': 1.0, 'them': 3.0, 'has': 1.0, 'a': 2.0, 'q': 1.0, 'harder': 1.0, 'bother': 1.0, 'tip': 1.0, 'use': 1.0, 'stick': 1.0, 'dawn': 1.0, 'part': 2.0, 'cotton': 1.0, '34': 2.0, 'scrub': 1.0, 'get': 1.0, 'll': 1.0, 'see': 1.0, 'mean': 1.0, 'walmart': 1.0, 'brand': 1.0, 'parents': 1.0, 'you': 3.0, 'choice': 1.0, 'things': 1.0}
Word element => {'equipment': 1.0, 'her': 1.0, 'of': 1.0, 'part': 1.0, 'consider': 1.0, 'help': 1.0, 'after': 1.0, 'so': 1.0, 'for': 1.0, 'i': 1.0, 'but': 1.0, 'sore': 1.0, 'nipples': 1.0, 'these': 2.0, 'the': 1.0, 'mother': 1.0, 'have': 1.0, 'microwaveable': 1.0, 'able': 1.0, 'nursing': 1.0, 'other': 1.0, 'wraps': 1.0, 'breasts': 1.0, 'more': 1.0, 'is': 1.0, 'well': 1.0, 'my': 2.0, 'are': 1.0, 'cold': 1.0, 'much': 1.0, 'palatable': 1.0, 'prep': 1.0, 'relief': 1.0, 'pumping': 4.0, 'definitely': 2.0, 'before': 1.0, 'being': 1.0, 'use': 1.0, 'them': 1.0, 'rice': 1.0, 'or': 1.0, 'just': 1.0, 'fantastic': 1.0, 'and': 1.0, 'warm': 1.0, 'makes': 1.0, 'routine': 1.0, 'to': 2.0, 'as': 3.0, 'any': 1.0, 'better': 1.0, 'should': 1.0}
Word element => {'pads': 1.0, 'shaped': 1.0, 'bamboobies': 1.0, 'pair': 1.0, 'free': 1.0, 'seconds': 1.0, 'after': 1.0, '40': 1.0, 'cover': 1.0, 'pregnancy': 1.0, 'get': 1.0, 'white': 1.0, 'can': 1.0, 'but': 1.0, 'sharp': 1.0, 'happens': 1.0, 'this': 2.0, 'circulation': 1.0, 'pain': 3.0, 'with': 3.0, 'start': 1.0, 'blood': 1.0, 'nipples': 2.0, 'loose': 1.0, 'happen': 1.0, 'therapy': 1.0, 'these': 2.0, 'microwave': 1.0, 'when': 1.0, 'use': 1.0, 'breast': 3.0, 'to': 4.0, 'least': 1.0, 'as': 2.0, 'ease': 1.0, 'my': 3.0, 'money': 1.0, 'bought': 1.0, 'color': 1.0, 'boob': 1.0, 'feeding': 1.0, 'burning': 1.0, 'its': 1.0, 'pillows': 3.0, 'for': 3.0, 'product': 1.0, 'expensive': 1.0, 'which': 1.0, 'on': 1.0, 'your': 1.0, 'from': 2.0, 'raynaud': 3.0, 's': 3.0, 'came': 1.0, 'might': 1.0, 'disease': 1.0, 'the': 5.0, 'of': 2.0, 'in': 2.0, 'stay': 1.0, 'warm': 1.0, 'bra': 1.0, 'heart': 1.0, 'recommend': 1.0, 'at': 1.0, 'i': 2.0, 'well': 1.0, 'hour': 1.0, 'will': 1.0, 'completely': 1.0, 'more': 1.0, 'relieve': 1.0, 'normal': 1.0, 'are': 2.0, 'would': 1.0, 'and': 5.0, 'anyone': 1.0, 'be': 1.0, 'issues': 1.0, 'especially': 1.0, 'fully': 1.0, 'during': 2.0, 'cold': 1.0, 'though': 1.0, 'large': 2.0, 'endowed': 1.0, 'nipple': 2.0, 'round': 1.0, 'half': 1.0, 'grapefruit': 1.0, 'relief': 1.0, 'up': 1.0, 'someone': 1.0, 'd': 1.0, 'cup': 1.0, 'worth': 1.0, 'size': 1.0, 'they': 2.0, 'returning': 1.0, 'bit': 1.0, 'a': 5.0, 'small': 1.0, 'mine': 1.0}
Word element => {'highly': 1.0, 'much': 1.0, 'with': 1.0, 'they': 1.0, '30': 1.0, 'recommended': 1.0, 'microwave': 1.0, 'pop': 1.0, 'for': 1.0, 'freezer': 1.0, 'seconds': 1.0, 'not': 1.0, 'in': 2.0, 'perfect': 1.0, 'but': 2.0, 'breastfeeding': 1.0, 'them': 3.0, 'a': 1.0, 'between': 1.0, 'pads': 1.0, 'previously': 1.0, 'needed': 2.0, 'loved': 1.0, 'me': 1.0, 'and': 4.0, 'have': 1.0, 'nursing': 1.0, 'therapy': 2.0, 'relief': 2.0, 'these': 1.0, 'the': 4.0, 'are': 2.0, 'ordered': 1.0, 'tried': 1.0, 'i': 3.0, 'pillows': 2.0, 'provide': 1.0, 'true': 1.0, 'pumping': 1.0, 'lifesaver': 1.0, 'some': 1.0}
Word element => {'far': 1.0, 'so': 1.0, 'option': 1.0, 'diaper': 1.0, 'depending': 1.0, 'or': 1.0, 'fabric': 1.0, 'the': 4.0, 'yes': 1.0, 'helpful': 1.0, 'disposable': 1.0, 'priced': 1.0, 'right': 1.0, 'over': 1.0, 'is': 2.0, 'that': 2.0, 'totally': 1.0, 'i': 4.0, 'tried': 1.0, 'products': 1.0, 'ice': 1.0, 'find': 2.0, 'only': 1.0, 'treating': 1.0, 'it': 1.0, 'soft': 1.0, 'found': 1.0, 'this': 1.0, 'with': 1.0, 'and': 3.0, 'wanted': 1.0, 'now': 1.0, 'using': 1.0, 'on': 1.0, 'minimally': 1.0, 'be': 2.0, 'share': 1.0, 'love': 1.0, 'product': 1.0, 'can': 1.0, 'but': 2.0, 'diapers': 1.0, 'positive': 1.0, 'other': 1.0, 'did': 1.0, 'better': 1.0, 'not': 1.0, 'comparable': 1.0, 'to': 3.0, 'any': 1.0, 'them': 1.0, 'baby': 1.0, 'best': 1.0, 'm': 2.0, 'what': 1.0, 'either': 1.0, 'hot': 1.0, 'water': 1.0}
Word element => {'warm': 1.0, 'them': 1.0, 'will': 1.0, 'me': 1.0, 'enough': 1.0, 'get': 1.0, 'agree': 1.0, 'size': 1.0, 'with': 1.0, 'clavicle': 1.0, 'don': 1.0, 'up': 1.0, 'way': 1.0, 'relief': 1.0, 'big': 1.0, 'say': 1.0, 'more': 1.0, 'disagree': 1.0, 'that': 1.0, 'reaction': 1.0, 'my': 2.0, 'use': 1.0, 'then': 2.0, 'happy': 1.0, 'compresses': 1.0, 'feed': 1.0, 'i': 7.0, 'these': 1.0, 'some': 1.0, 'needed': 2.0, 'was': 3.0, 'stick': 1.0, 'from': 1.0, 'by': 1.0, 'heat': 1.0, 'soft': 1.0, 'pain': 1.0, 'too': 1.0, 'suffering': 1.0, 'and': 2.0, 'they': 3.0, 'in': 1.0, 'cold': 2.0, 'are': 2.0, 'luxurious': 1.0, 'the': 5.0, 'extreme': 1.0, 'be': 1.0, 'first': 1.0, 'so': 3.0, 'well': 1.0, 'since': 1.0, 't': 1.0, 'a': 1.0, 'worth': 1.0, 'price': 1.0, 'can': 1.0, 'used': 1.0, 'brands': 1.0, 'for': 3.0, 'week': 1.0, 'using': 1.0, 'mastitis': 1.0, 'like': 1.0, 'pads': 1.0, 'to': 2.0, 'all': 2.0, 'other': 1.0, 'out': 1.0, 'there': 1.0}
Word element => {'wait': 1.0, 'they': 1.0, 'impressed': 1.0, 'about': 1.0, 'nothing': 1.0, 'm': 1.0, 'use': 1.0, 'already': 1.0, 'heard': 1.0, 'i': 4.0, 'the': 1.0, 'great': 1.0, 'these': 2.0, 'bamboobies': 1.0, 'but': 1.0, 'have': 1.0, 'size': 1.0, 'item': 1.0, 'so': 1.0, 'this': 1.0, 'excited': 1.0, 'feeding': 1.0, 'was': 1.0, 'to': 2.0, 'receive': 1.0, 'of': 1.0, 'cannot': 1.0, 'perfect': 1.0, 'in': 1.0, 'are': 1.0, 'reviews': 1.0, 'anticipation': 1.0, 'breast': 1.0}
Word element => {'use': 1.0, 'time': 1.0, 'help': 2.0, 'socks': 2.0, 'sore': 1.0, 'so': 1.0, 'cloud': 1.0, 'breast': 1.0, 'result': 1.0, 'soreness': 2.0, 'made': 1.0, 'which': 1.0, 'like': 1.0, 'those': 1.0, 'we': 1.0, 't': 1.0, 's': 2.0, 'a': 3.0, 'breasts': 1.0, 'had': 2.0, 'nips': 1.0, 'contour': 1.0, 'what': 1.0, 'infections': 1.0, 'ended': 1.0, 'nursing': 3.0, 'down': 2.0, 'and': 3.0, 'my': 5.0, 'resulted': 1.0, 'uncomfortable': 1.0, 'regulate': 1.0, 'with': 2.0, 'son': 1.0, 'still': 1.0, 'is': 2.0, 'first': 1.0, 'pads': 1.0, 'bacterial': 1.0, 'also': 2.0, 'in': 6.0, 'these': 2.0, 'for': 2.0, 'such': 1.0, 'both': 1.0, 'tough': 1.0, 'd': 1.0, 'used': 1.0, 'supply': 1.0, 'weeks': 2.0, 'tried': 1.0, 'i': 9.0, 'early': 1.0, 'rice': 2.0, 'labor': 1.0, '6': 1.0, 'reusable': 1.0, 'trying': 1.0, 'boobs': 1.0, 'the': 5.0, 'of': 3.0, 'ahhhhhhhhhh': 1.0, 'but': 1.0, 'they': 2.0, 'didn': 1.0, 'got': 1.0, 'quite': 1.0, 'shoved': 1.0, 'way': 1.0, 'tank': 1.0, 'sooner': 1.0, 'cashmere': 1.0, 'them': 4.0, 'it': 1.0, 'to': 6.0, 'pretty': 1.0, 'get': 1.0, 'big': 1.0, 'athletic': 1.0, 'recommend': 1.0, 'overnight': 1.0, 'full': 1.0, 'wish': 1.0, 'feel': 1.0, 'your': 2.0, 'shirt': 1.0, 'up': 1.0, 'relief': 2.0, 'popped': 1.0, 'needed': 1.0, 'microwave': 1.0, 'two': 1.0, 'little': 1.0, 'an': 1.0, 'only': 1.0, 'this': 1.0, 'highly': 1.0, 'brand': 1.0}
Word element => {'on': 1.0, 'delivered': 1.0, 'with': 1.0, 'were': 1.0, 'experience': 1.0, 'later': 1.0, 'and': 1.0, 'she': 1.0, 'company': 1.0, 'in': 1.0, 'used': 1.0, 'her': 1.0, 'not': 1.0, 'time': 1.0, 'has': 1.0, 'they': 3.0, 'loves': 1.0, 'fiance': 1.0, 'cooling': 1.0, 'my': 1.0, 'tried': 1.0, 'freezer': 1.0, 'for': 3.0, 'yet': 1.0, 'these': 1.0, 'great': 3.0, 'the': 2.0, 'to': 1.0, 'being': 1.0, 'microwave': 1.0, 'them': 1.0, 'placed': 1.0, 'work': 2.0, 'but': 1.0}
Word element => {'bag': 1.0, 'my': 1.0, 'ordering': 1.0, 'wish': 1.0, 'home': 1.0, 'moms': 1.0, 'though': 1.0, 'much': 1.0, 'must': 1.0, 'as': 1.0, 'them': 1.0, 'instead': 1.0, 'use': 1.0, 'don': 1.0, 'find': 1.0, 'better': 1.0, 'i': 5.0, 'new': 1.0, 'adjusted': 1.0, 'breastfeeding': 1.0, 'hospital': 1.0, 'definite': 1.0, 'of': 2.0, 'weeks': 1.0, 'few': 1.0, 'first': 1.0, 'for': 3.0, 'in': 2.0, 'nursing': 1.0, 'have': 2.0, 'you': 1.0, 'that': 1.0, 'need': 1.0, 'and': 1.0, 'extra': 1.0, 'tlc': 1.0, 'had': 1.0, 'to': 1.0, 'now': 1.0, 'these': 1.0, 't': 1.0, 'the': 1.0, 'great': 1.0, '2': 1.0, 'when': 2.0, 'm': 1.0, 'months': 1.0}
Word element => {'used': 1.0, 'haven': 1.0, 'others': 1.0, 'to': 1.0, 'but': 1.0, 'longer': 1.0, 'held': 1.0, 'cold': 1.0, 'are': 2.0, 'wish': 1.0, 'than': 1.0, 'much': 1.0, 'pretty': 1.0, 'happy': 1.0, 'hurting': 1.0, 'am': 1.0, 'with': 1.0, 'nicer': 1.0, 'already': 1.0, 'feel': 1.0, 'when': 1.0, 'these': 1.0, 'the': 3.0, 'ones': 1.0, 'at': 1.0, 'do': 1.0, 'difference': 1.0, 'you': 2.0, 'i': 3.0, 'buy': 1.0, 'comporable': 1.0, 'that': 1.0, 'drugstore': 1.0, 'they': 3.0, 'makes': 1.0, 'a': 1.0, 'big': 1.0}
Word element => {'definitely': 1.0, 'with': 2.0, 'thrilled': 1.0, 'comfortable': 1.0, 'successful': 1.0, 'i': 4.0, 'after': 2.0, 'so': 1.0, 'boys': 1.0, 'little': 1.0, 'three': 2.0, 'unsuccessfully': 1.0, 'her': 1.0, 'to': 3.0, 'recommend': 1.0, 'was': 1.0, 'nursing': 2.0, 'due': 1.0, 'and': 4.0, 'delivery': 1.0, 'options': 1.0, 'help': 1.0, 'researched': 1.0, 'my': 2.0, 're': 1.0, 'never': 1.0, 'it': 1.0, 'engorgement': 1.0, 'girl': 1.0, 'infection': 1.0, 'ordered': 1.0, 'others': 1.0, 'these': 1.0, 'the': 1.0, 'right': 1.0, 'for': 1.0, 'product': 1.0, 'a': 1.0, 'we': 1.0, 'now': 1.0, 'weeks': 1.0, 'grateful': 1.0, 'been': 1.0, 'into': 1.0, 'would': 1.0, 'new': 1.0, 've': 1.0, 'attempt': 1.0, 'doing': 1.0, 'm': 1.0}
Word element => {'must': 1.0, 'time': 1.0, 'in': 1.0, 'wonderful': 1.0, 'have': 2.0, 'help': 1.0, 'making': 1.0, 'a': 2.0, 'better': 1.0, 'breast': 1.0, 'hot': 1.0, 'and': 1.0, 'been': 1.0, 'feeding': 1.0, 'feel': 1.0, 'mother': 1.0, 'these': 1.0, 'the': 1.0, 'make': 1.0, 'cold': 1.0, 'options': 1.0, 'first': 1.0, 'this': 1.0, 'it': 1.0}
Word element => {'small': 1.0, 'running': 1.0, 'a': 2.0, 'mom': 1.0, 'by': 1.0, 'to': 1.0, 'breathable': 1.0, 'woes': 1.0, 'product': 1.0, 'washable': 1.0, 'thank': 1.0, 'freezable': 1.0, 'microwavable': 1.0, 'creating': 1.0, 'you': 1.0, 'something': 1.0, 'that': 1.0, 'and': 2.0, 'ease': 1.0, 'breastfeeding': 1.0, 'new': 1.0, 'natural': 1.0, 'i': 1.0, 'for': 1.0, 'love': 1.0, 'business': 1.0, 'this': 1.0, 'is': 1.0, 'created': 1.0}
Word element => {'value': 1.0, 'hot': 1.0, 'too': 1.0, 'get': 1.0, 'moms': 1.0, 'in': 1.0, 'come': 1.0, 'things': 1.0, 'great': 1.0, 't': 1.0, 'these': 1.0, 'all': 1.0, 'have': 1.0, 'nursing': 1.0, 'just': 1.0, 'not': 1.0, 'hold': 1.0, 'kinds': 1.0, 'of': 1.0, 'their': 1.0, 'handy': 1.0, 'heat': 1.0, 'a': 1.0, 'don': 1.0, 'long': 1.0, 'they': 1.0, 'time': 1.0, 'for': 3.0, 'yet': 1.0}
Word element => {'with': 1.0, 'discomfort': 1.0, 'kind': 1.0, 'who': 1.0, 'any': 1.0, 'mom': 1.0, 'every': 1.0, 'recommend': 1.0, 'relieved': 1.0, 'as': 2.0, 'to': 7.0, 'will': 1.0, 'also': 1.0, 'in': 1.0, 'steroid': 1.0, 'ducts': 1.0, 'thrush': 1.0, 'suggested': 1.0, 'session': 1.0, 'heat': 2.0, 'therapies': 1.0, 'time': 1.0, 'through': 1.0, '70': 1.0, 'gone': 1.0, 'no': 1.0, 'is': 2.0, 'around': 1.0, 'feeding': 1.0, 'short': 1.0, 'etc': 1.0, 'diagnose': 1.0, 'i': 9.0, 'ointments': 1.0, 'breastfeeding': 1.0, 'terms': 1.0, 'pumping': 1.0, 'what': 1.0, 'had': 3.0, 'been': 3.0, 'that': 2.0, 'vasospasms': 1.0, 'are': 1.0, 'these': 3.0, 'of': 1.0, 'the': 3.0, 'this': 1.0, 'exactly': 1.0, 'pain': 3.0, 'wish': 1.0, 'come': 1.0, 'terrible': 1.0, 'lifesavers': 1.0, 'before': 1.0, 'multiple': 1.0, '15': 1.0, 'continue': 1.0, 'rounds': 1.0, 'much': 2.0, 'blocked': 1.0, 'sooner': 1.0, 'try': 1.0, 'one': 1.0, 'months': 1.0, 'for': 1.0, 'last': 1.0, 'four': 1.0, 'so': 1.0, 'can': 1.0, 'have': 4.0, 'long': 1.0, 'breastfeed': 1.0, 'pump': 1.0, 'found': 1.0, 'easy': 1.0, 'everyone': 1.0, 'applying': 2.0, 'usually': 1.0, 'would': 2.0, 'each': 1.0, 'take': 1.0, 'an': 1.0, 'extra': 1.0, 'minutes': 1.0, 'after': 1.0, 'and': 2.0, 'did': 1.0, 'not': 1.0, 'dedicate': 1.0, 'experiencing': 1.0, 'really': 1.0, 'antibiotic': 1.0, 'they': 1.0, 'worked': 1.0, 'like': 1.0, 'magic': 1.0, 'has': 2.0, 'them': 1.0, 'use': 1.0, 'able': 1.0, 'you': 1.0, '75': 1.0, 'it': 1.0, 'wear': 1.0, 'better': 1.0, 'house': 1.0, 'feeling': 1.0, 'my': 1.0}
Word element => {'to': 1.0, 'were': 1.0, 'hot': 1.0, 'how': 1.0, 'matter': 1.0, 'a': 1.0, 'they': 2.0, 'okay': 1.0, 'up': 1.0, 'warmed': 1.0, 'dissipates': 1.0, 'start': 1.0, 'like': 2.0, 'provide': 1.0, 'great': 1.0, 'these': 1.0, 'the': 1.0, 'soothing': 1.0, 'less': 1.0, 'i': 2.0, 'minutes': 1.0, 'sensation': 1.0, 'but': 1.0, 'than': 1.0, 'feel': 1.0, 'heat': 1.0, 'in': 1.0, '10': 1.0, 'no': 1.0}
Word element => {'wonderful': 1.0, 'think': 1.0, 'here': 1.0, 'going': 1.0, 'gets': 1.0, 'little': 1.0, 'before': 1.0, 'go': 1.0, 'but': 1.0, 'weeks': 1.0, 'them': 2.0, 'a': 1.0, 'are': 2.0, 'one': 1.0, 'yet': 1.0, 'they': 2.0, 'haven': 1.0, 'soft': 1.0, 'how': 1.0, 'at': 1.0, 'suprised': 1.0, 'expecting': 1.0, 'very': 1.0, 'i': 4.0, 'was': 2.0, 'to': 4.0, 'be': 2.0, 'still': 1.0, 'coarse': 1.0, 'the': 1.0, 'more': 1.0, 't': 1.0, 'have': 1.0, 'use': 1.0, 'gotten': 1.0, 'couple': 1.0}
Word element => {'china': 1.0, 'friends': 1.0, 'shower': 1.0, 'baby': 1.0, 'buy': 1.0, 'want': 1.0, 'more': 1.0, 'is': 1.0, 'bigger': 1.0, 'bottles': 5.0, 'easy': 1.0, 'too': 1.0, 'and': 3.0, 'has': 1.0, 'free': 1.0, 'they': 4.0, 'born': 1.0, 'cute': 1.0, 'wash': 2.0, 'in': 2.0, 'system': 2.0, 'complain': 1.0, 'as': 1.0, 'to': 3.0, 'had': 1.0, 'i': 3.0, 'avent': 1.0, 'my': 1.0, 'their': 1.0, 'better': 1.0, 'the': 3.0, 'a': 3.0, 't': 1.0, 'these': 2.0, 'are': 4.0, 'gift': 1.0, 'trouble': 1.0, 'little': 1.0, 'change': 1.0, 'but': 2.0, 'can': 1.0, 'babiesrus': 1.0, 'need': 1.0, 'venting': 2.0, 'which': 1.0, 'me': 1.0, 'not': 1.0, 'cheap': 1.0, 'for': 4.0, 'love': 1.0, 'sale': 1.0, 'bought': 1.0, 'bro': 1.0, 'niece': 1.0, 'wife': 1.0, 'his': 1.0, 'even': 1.0, 'good': 1.0}
Word element => {'top': 1.0, 'zip': 1.0, 'big': 1.0, 'keep': 1.0, 'just': 1.0, 'an': 1.0, 'traveling': 1.0, 'again': 1.0, 'buy': 1.0, 'product': 1.0, 'for': 1.0, 'side': 1.0, 'its': 1.0, 'tipped': 1.0, 'if': 2.0, 'effective': 1.0, 'did': 1.0, 'bag': 2.0, 'plastic': 1.0, 'bottle': 1.0, 'one': 1.0, 'ends': 1.0, 'uses': 1.0, 'started': 1.0, 'little': 1.0, 'got': 1.0, 'to': 1.0, 'matting': 1.0, 'her': 3.0, 'because': 2.0, 'does': 3.0, 'the': 4.0, 'job': 1.0, 'i': 3.0, 'have': 1.0, 's': 2.0, 't': 1.0, 'a': 5.0, 'put': 1.0, 'on': 1.0, 'corkscrew': 1.0, 'hair': 2.0, 'well': 1.0, 'sitter': 1.0, 'fast': 1.0, 'mind': 1.0, 'with': 2.0, 'this': 2.0, 'm': 1.0, 'd': 1.0, 'knots': 1.0, 'curls': 1.0, 'in': 3.0, 'length': 1.0, 'mo': 1.0, 'look': 1.0, 'leak': 1.0, 'combing': 1.0, 'gripe': 1.0, 'once': 1.0, 'long': 1.0, 'came': 1.0, 'cheapie': 1.0, 'out': 1.0, 'version': 1.0, 'that': 2.0, 'doesn': 1.0, 'past': 1.0, 'shoulder': 1.0, 'but': 2.0, 'work': 1.0, 'it': 6.0, 'looks': 1.0, 'really': 1.0, 'teasing': 1.0, '20': 1.0, 'greasy': 2.0, 'too': 1.0, 'and': 4.0, 'old': 1.0, 'makes': 1.0, 'easy': 1.0}
Word element => {'unnoticeable': 1.0, 'used': 1.0, 'using': 1.0, 'that': 1.0, 'if': 1.0, 'sprays': 1.0, 'forever': 1.0, 'last': 1.0, 'quickly': 1.0, 'amount': 1.0, 'after': 1.0, 'sometimes': 1.0, 'will': 2.0, 'through': 2.0, 'fades': 1.0, 'the': 2.0, 'but': 2.0, '2': 2.0, 'bottle': 1.0, 'boy': 1.0, 'he': 1.0, 'month': 1.0, 'it': 1.0, 'with': 1.0, 'this': 2.0, 'first': 1.0, 'no': 1.0, 'i': 4.0, 'his': 1.0, 'better': 1.0, 'than': 1.0, 'me': 1.0, 'not': 1.0, '3': 2.0, 'strong': 1.0, 'has': 1.0, 'hair': 1.0, 'expected': 1.0, 'have': 1.0, 'curls': 1.0, 'times': 1.0, 'only': 1.0, 'works': 1.0, 'do': 2.0, 'and': 1.0, 'go': 1.0, 'a': 3.0, 'since': 1.0, 'at': 1.0, 'lot': 1.0, 'of': 2.0, 'day': 1.0, 'spritz': 1.0, 'over': 1.0, 'head': 1.0, 'probably': 1.0, 'nothing': 1.0, 'goes': 1.0, 'lavender': 1.0, 'smell': 1.0, 'or': 1.0, 'effortlessly': 1.0, 'is': 2.0, 'comb': 2.0, 'to': 1.0}
Word element => {'cover': 1.0, 'liked': 1.0, 'info': 1.0, 'has': 1.0, 'looking': 1.0, 'cute': 1.0, 's': 1.0, 'it': 2.0, 'i': 3.0, 'neutral': 1.0, 'modern': 1.0, 'a': 1.0, 'the': 3.0, 'gender': 1.0, 'wanted': 2.0, 'and': 2.0, 'in': 1.0, 'book': 1.0, 'this': 1.0, 'fit': 1.0, 'bill': 1.0}
Word element => {'keep': 1.0, 'or': 1.0, 'mom': 1.0, 'for': 1.0, 'be': 1.0, 'should': 1.0, 'cute': 1.0, 'very': 1.0, 'are': 1.0, 'on': 1.0, 'dad': 1.0, 'drawings': 1.0, 'zoo': 1.0, 'pictures': 1.0, 'up': 1.0, 'met': 1.0, 'animal': 1.0, 'specific': 1.0, 'easy': 1.0, 'record': 1.0, 'needed': 1.0, 'and': 3.0, 'book': 2.0, 'quality': 1.0, 'gender': 1.0, 'non': 1.0, 'a': 2.0, 'i': 1.0, 'my': 1.0, 'the': 4.0, 'paste': 1.0, 'pages': 2.0, 'needs': 1.0, 'busy': 1.0, 'usual': 1.0, 'all': 1.0, 'this': 1.0, 'it': 1.0, 'with': 1.0, 'has': 1.0, 'places': 1.0, 'to': 2.0}
Word element => {'glad': 1.0, 'stores': 1.0, 'of': 1.0, '34': 2.0, 'u': 1.0, 'r': 1.0, 'is': 1.0, 'nighttime': 1.0, 'room': 1.0, 'his': 1.0, 'bear': 1.0, 'daughter': 1.0, 'i': 2.0, 'motif': 1.0, 'the': 3.0, 'b': 1.0, 'my': 3.0, 'feedings': 1.0, 'purchased': 1.0, 'newborn': 1.0, 'in': 4.0, 'this': 4.0, 'nursery': 1.0, 'babies': 1.0, 'across': 1.0, 'and': 3.0, 'perfectly': 1.0, 'for': 3.0, 'fit': 2.0, 'so': 3.0, 'small': 1.0, 'area': 1.0, 'closely': 1.0, 'it': 1.0, 'she': 1.0, 'wanted': 1.0, 'bill': 1.0, 'cute': 1.0, 'lamp': 3.0, 'find': 1.0, 'extremely': 1.0, 'came': 1.0, 'affordable': 1.0, 'decorated': 1.0, 'not': 1.0, 's': 1.0, 'a': 1.0, 'could': 1.0, 'anything': 1.0, 'grandson': 1.0, 'close': 1.0, 'to': 1.0, 'any': 1.0}
Word element => {'lights': 1.0, 'lighting': 1.0, 'product': 1.0, 'still': 1.0, 'but': 1.0, 'the': 2.0, 'lamp': 1.0, 'bright': 1.0, 'cute': 1.0, 'looks': 1.0, 'good': 1.0, 'stitching': 1.0, 'up': 1.0, 'and': 1.0, 'like': 1.0, 'slight': 1.0, 'picture': 1.0, 'imperfections': 1.0, 'room': 1.0, 'is': 1.0, 'on': 1.0}
Word element => {'set': 1.0, 'this': 1.0, 'still': 1.0, 'rack': 1.0, 'bay': 1.0, 'top': 1.0, 'be': 1.0, 'putting': 1.0, 'thought': 1.0, 'safe': 1.0, 'they': 1.0, 'sure': 1.0, 'm': 1.0, 'dishwasher': 2.0, 'in': 2.0, 'just': 1.0, 'few': 1.0, 'after': 1.0, 'come': 1.0, 'them': 1.0, 'rated': 1.0, 'started': 1.0, 'also': 1.0, 'her': 3.0, 'my': 2.0, 'blunt': 1.0, 'are': 1.0, 'fork': 2.0, 'up': 1.0, 'of': 2.0, 'these': 1.0, 'the': 12.0, 'to': 3.0, 'end': 1.0, 'granddaughter': 1.0, 'wanted': 1.0, 'was': 2.0, 'crazy': 1.0, 'times': 1.0, 'packer': 2.0, 'about': 1.0, 'a': 1.0, 't': 2.0, 's': 2.0, 'i': 4.0, 'wasn': 2.0, 'theme': 1.0, 'but': 1.0, 'most': 1.0, 'food': 3.0, 'so': 2.0, 'allow': 1.0, 'would': 2.0, 'with': 2.0, 'one': 1.0, 'love': 1.0, 'for': 1.0, 'hold': 1.0, 'hand': 1.0, 'green': 1.0, 'too': 2.0, 'and': 1.0, 'ok': 1.0, 'pick': 1.0, 'although': 1.0, 'wide': 1.0, 'other': 1.0, 'on': 1.0, 'bowl': 1.0, 'it': 1.0, 'she': 2.0, 'fell': 1.0, 'loved': 1.0, 'spoon': 2.0, 'not': 2.0, 'logo': 1.0, 'mouth': 1.0, 'stab': 1.0, 'off': 2.0}
Word element => {'picture': 1.0, 'purchased': 1.0, 'not': 1.0, 'would': 1.0, 'before': 1.0, 'i': 3.0, 'if': 1.0, 'seen': 1.0, 'flimsy': 1.0, 'and': 1.0, 'lays': 1.0, 'baby': 1.0, 'where': 1.0, 'have': 1.0, 'itself': 1.0, 'of': 1.0, 'quite': 1.0, 'quality': 1.0, 'very': 3.0, 'on': 1.0, 'the': 7.0, 'it': 2.0, 'this': 1.0, 'shower': 1.0, 'wood': 1.0, 'impressive': 1.0, 'a': 1.0, 'thin': 2.0, 'while': 1.0, 'deceiving': 1.0, 'pictured': 1.0, 'shoddy': 1.0, 'is': 5.0, 'side': 1.0, 'bassinet': 2.0, 'actually': 1.0, 'bought': 1.0, 'product': 1.0, 'material': 1.0, 'akin': 1.0, 'had': 1.0, 'curtin': 1.0, 'frame': 1.0, 'to': 1.0}
Word element => {'you': 1.0, 'well': 1.0, 'a': 2.0, 'this': 1.0, 'bassinet': 2.0, 'as': 1.0, 'table': 1.0, 'and': 1.0, 'very': 1.0, 'love': 1.0, 'changing': 1.0, 'it': 2.0, 'useful': 1.0, 'for': 1.0, 'my': 1.0, 'will': 1.0, 'baby': 1.0, 'come': 1.0, 'new': 1.0, 'is': 1.0}
Word element => {'moses': 1.0, 'to': 1.0, 'allows': 1.0, 'basket': 1.0, 'changing': 1.0, 'it': 1.0, 'profile': 1.0, 'storage': 1.0, 'wheels': 1.0, 'table': 1.0, 'and': 2.0, 'move': 1.0, 'ideal': 1.0, 'nice': 1.0, 'design': 1.0, 'for': 2.0, 'bedside': 1.0, 'ability': 1.0, 'flexible': 1.0, 'slim': 1.0, 'make': 1.0, 'the': 1.0}
Word element => {'perfect': 1.0, 'for': 1.0, 'height': 1.0, 'assembled': 1.0, 'gift': 1.0, 'bought': 1.0, 'new': 1.0, 'a': 1.0, 'as': 1.0, 'and': 2.0, 'grandson': 1.0, 'loves': 1.0, 'my': 2.0, 'this': 1.0, 'it': 2.0, 'the': 1.0, 'great': 1.0, 'daughter': 1.0, 'by': 1.0, 'she': 1.0, 'its': 1.0, 'says': 1.0, 'sturdy': 1.0, 'herself': 1.0, 'looks': 1.0, 'is': 1.0}
Word element => {'great': 1.0, 'positioning': 1.0, 'daughter': 1.0, 'was': 1.0, 'my': 1.0, 'choice': 1.0, 'it': 1.0, 'this': 1.0, 'thanks': 1.0, 'she': 1.0, 'conviently': 1.0, 'is': 1.0, 'grandbaby': 1.0, 'reach': 1.0, 'and': 2.0, 'love': 1.0, 'for': 2.0, 'comfortable': 1.0, 'that': 1.0, 'all': 1.0, 'in': 1.0, 'needs': 1.0, 'law': 1.0, 'a': 1.0}
Word element => {'definitely': 1.0, 'together': 1.0, 'easily': 1.0, 'received': 1.0, 'when': 1.0, 'condition': 1.0, 'perfect': 1.0, 'in': 1.0, 'put': 1.0, 'but': 1.0, 'the': 1.0, 'some': 1.0, 'after': 1.0, 'issues': 1.0, 'my': 1.0, 'bedside': 1.0, 'other': 1.0, 'we': 3.0, 'manufacturing': 1.0, 'pleased': 1.0, 'that': 2.0, 'of': 1.0, 'reading': 1.0, 'there': 1.0, 'very': 2.0, 'a': 1.0, 'sleeper': 1.0, 'it': 3.0, 'this': 3.0, 'with': 1.0, 'bassinet': 1.0, 'reviews': 1.0, 'are': 1.0, 'overall': 1.0, 'recommend': 1.0, 'needed': 1.0, 'narrow': 1.0, 'i': 2.0, 'fits': 1.0, 'and': 1.0, 'perfectly': 1.0, 'husband': 1.0, 'was': 2.0, 'would': 2.0, 'purchase': 1.0, 'worried': 1.0}
Word element => {'partial': 1.0, 'a': 1.0, 'refund': 1.0, 'and': 1.0, 'offered': 1.0, 'being': 1.0, 'was': 1.0, 'comes': 1.0, 'to': 1.0, 'be': 1.0, 'accepted': 1.0, 'with': 1.0, 'issues': 1.0, 'i': 2.0, 'when': 1.0, 'some': 1.0, 'item': 1.0, 'practicalthere': 1.0, 'were': 1.0, 'very': 1.0, 'as': 1.0, 'design': 1.0, 'for': 1.0, 'slightly': 1.0, 'the': 1.0, 'great': 1.0, 'damaged': 1.0, 'ready': 1.0, 'but': 1.0, 'needed': 1.0, 'bub': 1.0}
Word element => {'for': 1.0, 'room': 1.0, 'has': 1.0, 'eacute': 1.0, 'essentials': 1.0, 'd': 1.0, 'baby': 1.0, 'any': 1.0, 'lot': 1.0, 'easy': 1.0, 'day': 1.0, 'very': 1.0, 'and': 1.0, 'with': 1.0, 'christmas': 1.0, 'assemble': 1.0, 'on': 1.0, 'cor': 1.0, 'born': 1.0, 'sturdy': 1.0, 'to': 1.0, 'granddaughter': 1.0, 'new': 1.0, 'color': 1.0, 'my': 1.0, 'looks': 1.0, 'the': 1.0, 'great': 1.0, 'neutral': 1.0, 'of': 1.0, 'plus': 1.0, 'well': 1.0, 'a': 2.0, 'real': 1.0, 'goes': 1.0}
Word element => {'safe': 1.0, 'pretty': 1.0, 'affect': 1.0, 'cheaply': 1.0, 'push': 1.0, 'are': 1.0, 'wheels': 1.0, 'reviews': 1.0, 'other': 1.0, 'did': 2.0, 'agree': 1.0, '7': 1.0, 'around': 1.0, 'is': 3.0, 'that': 1.0, 'changing': 2.0, 'use': 2.0, 'ability': 1.0, 'provides': 1.0, 'practical': 1.0, 'decision': 1.0, 'with': 3.0, 'happy': 2.0, 'very': 3.0, 'as': 2.0, 'to': 2.0, 'of': 1.0, 'recommendation': 1.0, 'sheet': 1.0, 'against': 1.0, 'from': 2.0, 'still': 1.0, 'storage': 1.0, 'matches': 1.0, 'son': 2.0, 'mesh': 1.0, 'table': 2.0, 'manufacturer': 1.0, 'like': 1.0, 'was': 3.0, 'the': 15.0, 'often': 1.0, 'purchase': 2.0, 'my': 4.0, 'decided': 1.0, 'months': 2.0, 'color': 1.0, 'be': 1.0, 'old': 1.0, 'feature': 1.0, '4': 1.0, 'i': 8.0, 'in': 2.0, 'but': 1.0, 'can': 1.0, 'slept': 1.0, 'mattress': 3.0, 'this': 3.0, 'it': 3.0, 'only': 1.0, 'and': 7.0, 'not': 2.0, 'me': 2.0, 'quality': 1.0, 'house': 1.0, 'perfectly': 1.0, 'stand': 2.0, 'bassinet': 5.0, 'nice': 1.0, 'until': 1.0, 'used': 1.0, 'even': 1.0, 'newborn': 1.0, 'siding': 1.0, 'he': 1.0, 'throughout': 1.0, 'would': 1.0, 'good': 1.0, 'negative': 1.0, 'removed': 1.0, 'car': 1.0, 'am': 1.0, 'naturepedic': 2.0, 'easily': 1.0, 'when': 1.0, 'a': 4.0, 'we': 1.0, 'high': 1.0, 'throw': 1.0, 'were': 1.0, 'made': 1.0, 'home': 1.0, 'now': 1.0, 'thin': 1.0, 'away': 1.0, 'neutral': 1.0, 'for': 1.0}
Word element => {'all': 1.0, 'held': 1.0, 'she': 1.0, 'her': 1.0, 'handed': 1.0, 'we': 2.0, 'that': 1.0, 'immediatley': 1.0, 'is': 1.0, 'stuff': 2.0, 'when': 1.0, 'daughter': 1.0, 'love': 1.0, 'for': 1.0, 'to': 2.0, 'look': 1.0, 'my': 1.0, 'the': 3.0, 'god': 1.0, 'toy': 2.0, 'purchased': 1.0, 'exactly': 1.0, 'old': 1.0, 'i': 1.0, 'picture': 1.0, '3': 1.0, 'website': 1.0, '5': 1.0, 'on': 2.0, 'months': 1.0, 'this': 1.0, 'it': 3.0, 'like': 1.0}
Word element => {'to': 1.0, 'she': 1.0, 'so': 1.0, 'car': 1.0, 'my': 1.0, 'it': 1.0, 'gumming': 1.0, 'with': 1.0, 'on': 1.0, 'play': 1.0, 'loves': 1.0, 'this': 1.0, 'we': 1.0, 'has': 1.0, 'seat': 1.0, 'keep': 1.0, 'something': 1.0, 'daughter': 1.0, 'in': 1.0, 'her': 1.0}
Word element => {'us': 1.0, 'bring': 1.0, 'somewhere': 1.0, 'go': 1.0, 'we': 2.0, 'eye': 1.0, 'him': 1.0, 'is': 1.0, 'son': 1.0, 'on': 1.0, 'easy': 1.0, 'to': 3.0, 'teething': 1.0, 'he': 1.0, 'with': 1.0, 'it': 2.0, 'this': 2.0, 'loves': 2.0, 'for': 1.0, 'our': 1.0, 'grasp': 1.0, 'and': 2.0, 'sure': 1.0, 'hold': 1.0, 'the': 2.0, 'are': 2.0, 'whenever': 1.0, 'toy': 2.0, 'colors': 1.0, 'bright': 1.0, 'always': 1.0, 'catches': 1.0, 'his': 1.0}
Word element => {'flexible': 1.0, 'slightly': 1.0, 'also': 1.0, 'sturdy': 1.0, 'a': 1.0, 'smiley': 1.0, 'bright': 1.0, 'daughter': 1.0, 'for': 1.0, 'old': 1.0, 'toy': 2.0, 'month': 1.0, 'our': 1.0, 'is': 2.0, '4': 1.0, 'on': 1.0, 'it': 2.0, 'this': 1.0, 'loves': 1.0, 'to': 1.0, 'grab': 1.0, 'and': 2.0, 'chewing': 1.0, 'face': 1.0, 'hold': 1.0, 'smiles': 1.0, 'at': 1.0, 'easy': 1.0, 'she': 1.0, 'but': 1.0, 'back': 1.0, 'great': 1.0, 'the': 1.0}
Word element => {'boppy': 1.0, 'than': 1.0, 'to': 3.0, 'in': 1.0, 'haven': 1.0, 'far': 1.0, 'weeks': 1.0, 'seems': 1.0, 'will': 1.0, 'couple': 1.0, 'and': 2.0, 'so': 2.0, 'use': 1.0, 'the': 3.0, 'perfect': 1.0, 'this': 1.0, 'with': 1.0, 'i': 4.0, 'is': 1.0, 'side': 1.0, 'it': 4.0, 'looks': 1.0, 'pillow': 1.0, 'chance': 1.0, 'be': 2.0, 'bought': 1.0, 'wanted': 1.0, 'due': 1.0, 'my': 1.0, 'baby': 1.0, 'but': 1.0, 'firm': 1.0, 'exactly': 1.0, 'had': 1.0, 'what': 1.0, 'breastfeeding': 1.0, 'slip': 1.0, 'cover': 1.0, 'a': 2.0, 't': 1.0, 'go': 1.0, 'absolutely': 1.0, 'adorable': 1.0, 'vine': 1.0, 'love': 1.0, 'for': 1.0, 'whimsey': 1.0, 'better': 1.0, 'like': 1.0}
Word element => {'educational': 1.0, 'this': 1.0, 'it': 1.0, 'loves': 1.0, 'old': 1.0, '1yr': 1.0, 'and': 1.0, 'grandson': 1.0, 'my': 1.0}
Word element => {'loves': 1.0, 'toy': 1.0, 'a': 1.0, 'plays': 1.0, 'use': 1.0, 'but': 1.0, 'is': 1.0, 'help': 1.0, 'could': 1.0, 'play': 1.0, 'my': 1.0, 'the': 1.0, 'with': 1.0, 'he': 1.0, 'this': 1.0, 'it': 4.0, 'him': 1.0, 'thinking': 1.0, 'i': 1.0, 'unstable': 1.0, 'and': 2.0, 'as': 1.0, 'son': 1.0, 'very': 1.0, 'that': 1.0, 'to': 1.0, 'was': 1.0, 'stand': 1.0, 'not': 1.0, 'floor': 1.0, 'bought': 1.0, 'case': 1.0}
Word element => {'tall': 1.0, 'her': 1.0, 'towards': 1.0, 'not': 1.0, 'gravitated': 1.0, 'you': 1.0, 's': 1.0, 'daughter': 1.0, 'my': 1.0, 'like': 1.0, 'while': 1.0, 'first': 1.0, 'it': 3.0, 'i': 1.0, 'think': 1.0, 'or': 1.0, 'birthday': 1.0, 'she': 1.0, 'out': 1.0, 'pretty': 1.0, 'at': 1.0, 'quickly': 1.0, 'grew': 1.0, 'really': 1.0, 'as': 2.0, 'big': 1.0}
Word element => {'to': 1.0, 'and': 1.0, 'toys': 1.0, 'ignore': 1.0, 'often': 1.0, 'will': 1.0, 'playmat': 1.0, 'his': 2.0, 'loves': 1.0, 'old': 1.0, 'play': 1.0, 'other': 2.0, 'entertained': 1.0, 'all': 1.0, '8': 1.0, 'than': 1.0, 'different': 1.0, 'toy': 1.0, 'any': 1.0, 'month': 1.0, 'my': 1.0, 'the': 1.0, 'keeps': 1.0, 'with': 1.0, 'only': 1.0, 'this': 2.0, 'he': 2.0, 'exploring': 1.0, 'if': 1.0, 'want': 1.0, 'longer': 1.0, 'features': 1.0, 'is': 1.0, 'on': 1.0, 'out': 1.0}
Word element => {'spanish': 1.0, 'english': 1.0, 'languages': 1.0, 'different': 1.0, 'three': 1.0, 'has': 1.0, 'i': 1.0, 'french': 1.0, 'bought': 1.0, 'friends': 1.0, 'and': 3.0, 'a': 1.0, 'they': 1.0, 'it': 3.0, 'love': 1.0, 'sings': 1.0, 'for': 1.0, 'kid': 1.0}
Word element => {'for': 1.0, 'tool': 1.0, 'a': 1.0, 'would': 1.0, 'colors': 1.0, 'amazing': 1.0, 'skills': 1.0, 'music': 1.0, 'be': 2.0, 'child': 1.0, 'learned': 1.0, 'from': 1.0, 'this': 1.0, 'any': 1.0, 'table': 1.0, 'languages': 1.0, 'offers': 1.0, 'learning': 1.0, 'great': 1.0, 'can': 1.0, 'it': 2.0, 'etc': 1.0, 'different': 1.0}
Word element => {'with': 1.0, 'buy': 1.0, 'will': 1.0, 'redesigned': 1.0, 'but': 1.0, 'table': 1.0, 'activity': 1.0, 'recommend': 2.0, 'would': 1.0, 'if': 1.0, 'bummer': 1.0, 'from': 1.0, 'away': 1.0, 'when': 1.0, 'our': 1.0, 'chosen': 1.0, 'to': 3.0, 'feature': 1.0, 'i': 6.0, 'french': 1.0, 'educational': 1.0, 'music': 2.0, 'four': 3.0, 'loves': 1.0, 'my': 3.0, 'bilingual': 1.0, 'up': 1.0, 'over': 1.0, 'a': 4.0, 's': 5.0, 'only': 1.0, 'and': 6.0, 'out': 3.0, 'son': 1.0, 'sturdier': 2.0, 'three': 1.0, 'that': 2.0, 'because': 3.0, 'entertaining': 1.0, 'numbers': 1.0, 'not': 2.0, 'compensate': 1.0, 'many': 1.0, 'she': 3.0, 'it': 11.0, 'list': 1.0, 'got': 1.0, 'daughter': 3.0, 'wish': 1.0, 'highly': 1.0, 'this': 3.0, 'of': 2.0, 'the': 6.0, 'become': 1.0, 'toy': 2.0, 'time': 1.0, 'so': 1.0, 'legs': 4.0, 'months': 1.0, 'one': 4.0, 'on': 4.0, 'much': 1.0, 'put': 1.0, 'think': 1.0, 'picked': 1.0, 'using': 1.0, 'christmas': 1.0, 'for': 3.0, 'nine': 1.0, 'inner': 1.0, 'old': 1.0, 'at': 1.0, 'is': 2.0, 'caught': 1.0, 'great': 1.0, 'shapes': 1.0, 'walking': 1.0, 'family': 1.0, 'instruments': 1.0, 'colors': 1.0, 'large': 1.0, 'pull': 1.0, 'by': 1.0, 'was': 4.0, 'selection': 1.0, 'very': 1.0, 'plays': 1.0, 'know': 1.0, 'however': 1.0, 'anyway': 1.0, 'her': 4.0, 'use': 1.0, 'herself': 1.0, 'had': 3.0, 'flipped': 1.0, 'times': 2.0, 'toes': 2.0, 'landing': 1.0, 'upside': 1.0, 'stick': 1.0, 'several': 1.0, 'down': 1.0, 'also': 1.0, 'timid': 1.0, 'designer': 1.0, 'until': 1.0, 'tried': 1.0, 'making': 1.0, 'has': 5.0, 'tries': 1.0, 'them': 1.0, 'teaching': 1.0, 'watch': 1.0, 'piggy': 1.0, 'friend': 1.0, 'lap': 1.0, 'edge': 1.0}
Word element => {'loves': 1.0, 'room': 1.0, 'chasing': 1.0, 'shes': 1.0, 'tips': 1.0, 'stability': 1.0, 'with': 2.0, 'help': 1.0, 'still': 1.0, 'under': 1.0, 'put': 1.0, 'just': 1.0, 'is': 2.0, 'pretty': 1.0, 'many': 2.0, 'dangerous': 1.0, 'this': 2.0, 'other': 1.0, 'the': 5.0, 'great': 1.0, 'ones': 1.0, 'i': 4.0, 'old': 1.0, 'love': 1.0, 'for': 1.0, 'reviews': 1.0, 'things': 1.0, 'm': 1.0, 'fun': 1.0, 'but': 1.0, 'most': 1.0, 'sturdy': 1.0, 'baby': 1.0, 'mat': 1.0, 'slightly': 1.0, 'has': 1.0, 'hard': 1.0, 'from': 1.0, 'too': 1.0, 'across': 1.0, 'play': 1.0, 'and': 1.0, 'table': 2.0, 'like': 1.0, 'however': 1.0, 'so': 2.0, 'of': 1.0, 'a': 2.0, 'happy': 1.0, 'activities': 1.0, 'little': 1.0, 'slides': 1.0, 'itself': 1.0, 'have': 1.0, '8': 1.0, 'to': 1.0, 'einstein': 1.0, 'all': 1.0, 'not': 2.0, 'wood': 1.0, 'floors': 1.0, 'my': 1.0, 'she': 1.0, 'looks': 1.0, 'it': 6.0, 'month': 1.0, 'daughter': 1.0, 'over': 2.0, 'floor': 1.0}
Word element => {'explore': 1.0, 'watch': 1.0, 'electronic': 1.0, 'buying': 1.0, 'once': 1.0, 'quiet': 1.0, 'store': 1.0, 'lol': 1.0, 'stranger': 1.0, 'adjust': 1.0, 'two': 1.0, 'forth': 1.0, 'flips': 1.0, 'stick': 1.0, 'large': 1.0, 'so': 1.0, 'levels': 1.0, 'constantly': 1.0, 'spaces': 1.0, 'not': 1.0, 'learn': 1.0, 'thoroughly': 1.0, 'issue': 1.0, 'corrected': 1.0, 'be': 2.0, 'hesitation': 1.0, 'flipper': 2.0, 'letting': 1.0, 'fingers': 2.0, 'getting': 1.0, 'recommend': 1.0, 'were': 1.0, 'babies': 1.0, 'their': 1.0, 'previous': 1.0, 'saw': 2.0, 'spanish': 1.0, 'languages': 1.0, 'with': 2.0, 'still': 1.0, 'are': 2.0, 'detach': 1.0, 'maybe': 1.0, 'though': 2.0, 'even': 1.0, 'assemble': 1.0, 'for': 4.0, 'english': 1.0, 'opinion': 1.0, 'hold': 1.0, 'which': 1.0, 'like': 1.0, 'family': 1.0, 'manufacturer': 2.0, 'toys': 2.0, 'reviews': 1.0, 'we': 2.0, 'loudness': 1.0, 'a': 2.0, 't': 1.0, 'other': 1.0, 'stuck': 1.0, 'compared': 1.0, 'super': 1.0, 'would': 2.0, 'when': 2.0, 'you': 2.0, 'snap': 1.0, 'see': 1.0, 'seems': 1.0, 'off': 2.0, 'up': 2.0, 'never': 1.0, 'some': 1.0, 'this': 5.0, 'enough': 1.0, 'loved': 1.0, 'but': 2.0, 'they': 4.0, 'sturdy': 1.0, 'aren': 1.0, 'house': 1.0, 'instantly': 1.0, 'or': 3.0, 'on': 4.0, 'tons': 1.0, 'legs': 2.0, 'months': 1.0, 'have': 2.0, '8': 1.0, 'songs': 1.0, 'had': 1.0, 'looking': 1.0, 'glue': 1.0, 'worth': 1.0, 'now': 1.0, 'and': 8.0, 'kiddies': 1.0, 'play': 2.0, 'toy': 2.0, 'before': 1.0, 'stoppers': 1.0, 'has': 1.0, 'them': 2.0, 'baby': 4.0, 'she': 2.0, 'pull': 1.0, 'learning': 1.0, 'my': 2.0, 'eventually': 1.0, 'old': 1.0, 'it': 7.0, '9': 1.0, 'friends': 1.0, 'lean': 1.0, 'keep': 2.0, 'future': 1.0, 'just': 2.0, 'start': 1.0, 'crawling': 1.0, 'there': 2.0, 'to': 11.0, 'against': 1.0, 'weight': 1.0, 'the': 13.0, 'of': 3.0, 'grippers': 1.0, 'help': 1.0, 'rubber': 2.0, 'spacing': 1.0, 'i': 7.0, 'feet': 1.0, 'inspected': 1.0, 'however': 1.0, 'forewarned': 1.0, 'in': 5.0, 'needed': 1.0, 'wood': 1.0, 'do': 3.0, 'again': 1.0, 'consider': 1.0, 'love': 1.0, 'bottom': 1.0, 'models': 1.0, 'skidding': 1.0, 'adding': 1.0, 'will': 2.0, 'your': 1.0, 'any': 1.0, 'probably': 1.0, 'french': 1.0, 'mat': 1.0, 'without': 1.0, 'slightly': 1.0, 'back': 1.0, 'bottoms': 1.0, 'her': 2.0, 'because': 2.0, 'easily': 2.0, 'that': 2.0, 'at': 1.0, 'is': 5.0, 'floors': 1.0, 'rubberized': 1.0, 'prevent': 1.0, 'plays': 1.0}
Word element => {'flimsy': 1.0, 'very': 1.0, 'are': 1.0, 'legs': 1.0, 'standing': 1.0, 'but': 1.0, 'toy': 1.0, 'to': 2.0, 'not': 1.0, 'do': 1.0, 'the': 3.0, 'i': 1.0, 'loves': 1.0, 'my': 1.0, 'pull': 1.0, 'when': 1.0, 'daughter': 1.0, 'sturdy': 1.0, 'feel': 1.0, 'that': 1.0, 'it': 1.0, 'features': 1.0, 'herself': 1.0, 'is': 1.0, 'she': 1.0, 'goes': 1.0, 'of': 1.0, 'up': 1.0}
Word element => {'plays': 1.0, 'as': 1.0, 'curiosity': 1.0, 'old': 1.0, 'music': 2.0, 'month': 1.0, 'she': 1.0, 'table': 1.0, '5': 1.0, 'activity': 1.0, 'and': 4.0, 'my': 2.0, 'the': 2.0, 'are': 1.0, 'gift': 1.0, 'with': 1.0, 'christmas': 1.0, 'for': 1.0, 'to': 1.0, 'was': 1.0, 'granddaughter': 1.0, 'lights': 1.0, 'learns': 1.0, 'eyes': 1.0, 'objects': 1.0, 'delight': 1.0, 'over': 2.0, 'her': 2.0, 'filled': 1.0}
Word element => {'loves': 1.0, 'table': 1.0, 'activity': 1.0, 'einstein': 1.0, 'with': 1.0, 'playing': 1.0, 'the': 1.0, 'started': 1.0, 'my': 1.0, 'interactive': 1.0, 'it': 1.0, 'great': 1.0, 'learning': 1.0, 'was': 1.0, 'when': 1.0, 'nine': 1.0, 'months': 1.0, 'old': 1.0, 'baby': 1.0, 'she': 2.0}
Word element => {'options': 1.0, 'the': 1.0, 'i': 1.0, 'tunes': 1.0, 'different': 1.0, 'lots': 1.0, 'baby': 1.0, 'loves': 1.0, 'it': 2.0, 'can': 1.0, 'of': 1.0, 'he': 1.0, 'stand': 1.0, 'language': 1.0, 'like': 1.0, 'and': 2.0, 'as': 1.0, 'up': 1.0, 'lean': 1.0, 'on': 1.0}
Word element => {'to': 1.0, 'others': 1.0, 'would': 1.0, 'i': 1.0, 's': 1.0, 'for': 1.0, 'and': 1.0, 'settings': 1.0, 'features': 1.0, 'there': 1.0, 'of': 2.0, 'has': 1.0, 'neat': 1.0, 'different': 2.0, 'the': 1.0, 'classical': 1.0, 'songs': 2.0, 'a': 2.0, 'this': 2.0, 'keyboard': 1.0, 'four': 1.0, 'numbers': 1.0, 'can': 1.0, 'recommend': 1.0, 'table': 1.0, 'lot': 2.0, 'played': 1.0, 'ways': 1.0, 'be': 1.0, 'piano': 1.0, 'colors': 1.0}
Word element => {'playtime': 1.0, 'back': 2.0, 'toppled': 1.0, 'times': 1.0, 'happened': 1.0, 'very': 1.0, 'not': 2.0, 's': 1.0, 'out': 1.0, 'loves': 1.0, 'our': 1.0, 'to': 8.0, 'heavy': 1.0, 'as': 2.0, 'different': 1.0, 'her': 2.0, 'make': 1.0, 'on': 4.0, 'musical': 1.0, 'from': 1.0, 'without': 1.0, '3': 2.0, 'spanish': 1.0, 'entertained': 1.0, 'parents': 1.0, 'just': 2.0, 'fall': 1.0, 'because': 1.0, 'and': 7.0, 'awesome': 1.0, 'play': 2.0, 'there': 1.0, 'moves': 1.0, 'the': 4.0, 'of': 2.0, 'has': 3.0, 'toy': 4.0, 'lots': 1.0, 'cool': 1.0, 'engaged': 1.0, 'lights': 1.0, 'far': 1.0, 'love': 1.0, 'for': 1.0, 'it': 18.0, 'baby': 2.0, 'she': 4.0, 'few': 1.0, 'page': 1.0, 'this': 2.0, 'also': 1.0, 'too': 1.0, 'lot': 2.0, 'did': 1.0, 'keep': 1.0, 'we': 4.0, 'a': 6.0, 't': 1.0, 'is': 3.0, 'around': 1.0, 'settings': 1.0, 'changes': 1.0, 'carpet': 2.0, 'its': 1.0, 'which': 2.0, 'english': 1.0, 'keeps': 2.0, 'words': 1.0, 'speaks': 1.0, 'scoot': 1.0, 'stands': 1.0, 'interesting': 1.0, 'had': 1.0, 'would': 1.0, 'weeks': 1.0, 'now': 1.0, 'first': 1.0, 'rug': 1.0, 'when': 2.0, 'you': 1.0, 'down': 1.0, 'with': 1.0, 'sounds': 1.0, 'toys': 1.0, 'sure': 1.0, 'put': 3.0, 'do': 1.0, 'floor': 2.0, 'up': 2.0, 'don': 1.0, 'hard': 1.0, 'over': 2.0, 'buttons': 1.0, 'turn': 1.0, 'still': 1.0, 'if': 2.0, 'was': 2.0, 'definitely': 1.0, 'have': 1.0, 'or': 1.0, 'french': 1.0, 'runs': 1.0, 'mat': 1.0, 'so': 3.0, 'can': 1.0, 'mode': 1.0, 'but': 1.0, 'be': 1.0, 'way': 1.0, 'tipped': 1.0}
Word element => {'in': 1.0, 'creativity': 1.0, 'spark': 1.0, 'want': 1.0, 'they': 1.0, 'anyone': 1.0, 'music': 1.0, 'baby': 1.0, 'recommend': 1.0, 'i': 1.0, 'me': 1.0, 'and': 2.0, 'there': 1.0, 'able': 1.0, 'grand': 2.0, 'alone': 1.0, 'has': 1.0, 'toy': 1.0, 'stand': 1.0, 'just': 2.0, 'because': 2.0, 'on': 2.0, 'is': 5.0, 'a': 2.0, 'discovering': 1.0, 'my': 1.0, 'this': 2.0, 'children': 1.0, 'wonderful': 1.0, 'right': 1.0, 'einstein': 1.0, 'all': 1.0, 'to': 5.0, 'for': 2.0, 'who': 2.0, 'learning': 1.0, 'construction': 1.0, 'very': 1.0, 'of': 4.0, 'stable': 1.0, 'without': 1.0, 'the': 6.0, 'placing': 1.0, 'legs': 1.0, 'her': 1.0, 'different': 1.0, 'pull': 1.0, 'daughter': 1.0, 'activity': 2.0, 'annoying': 1.0, 'it': 2.0, 'she': 1.0, 'table': 2.0, 'kept': 1.0, 'entertained': 1.0, 'long': 1.0, 'are': 2.0, 'periods': 1.0, 'time': 1.0, 'activities': 1.0, 'child': 2.0, 'up': 1.0, 'sound': 1.0, 'or': 1.0, 'volume': 1.0, 'entertain': 1.0}
Word element => {'click': 1.0, 'to': 1.0, 'piece': 1.0, 'on': 1.0, 'giraffe': 1.0, 'when': 1.0, 'bendy': 1.0, 'pain': 1.0, 'this': 3.0, 'it': 2.0, 'first': 1.0, 'won': 2.0, 'toy': 1.0, 'baby': 2.0, 'place': 2.0, 'the': 6.0, 'now': 1.0, 'about': 1.0, 'whole': 1.0, 'my': 2.0, 'and': 4.0, 'saucer': 3.0, 'makes': 1.0, 'bars': 1.0, 'overheard': 1.0, 'i': 2.0, 'two': 1.0, 'stay': 2.0, 'toys': 2.0, 'in': 2.0, 'falling': 1.0, 'apart': 1.0, 'also': 1.0, 'keeps': 1.0, '2': 1.0, 'but': 1.0, 'a': 1.0, 't': 2.0, 'ago': 1.0, 's': 1.0, 'was': 1.0, 'anymore': 1.0, 'bored': 1.0, 'for': 1.0, 'sad': 1.0, 'loves': 1.0, 'that': 2.0, 'months': 1.0, 'bought': 2.0, 'tray': 1.0, 'him': 1.0}
Word element => {'build': 1.0, 'does': 1.0, 'value': 1.0, 'a': 2.0, 'colors': 1.0, 'son': 1.0, 'pretty': 1.0, 'is': 1.0, 'toys': 2.0, 'of': 1.0, 'have': 1.0, 'all': 1.0, 'but': 2.0, 'it': 2.0, 'he': 1.0, 'with': 1.0, 'playing': 1.0, 'in': 1.0, 'decent': 1.0, 'most': 1.0, 'cheap': 1.0, 'old': 1.0, 's': 1.0, 'enjoys': 1.0, 'around': 1.0, 'here': 1.0, 'month': 1.0, 'the': 5.0, 'my': 2.0, 'flimsy': 1.0, 'plastic': 1.0, '7': 1.0, 'like': 1.0, 'easily': 1.0, 'mirror': 1.0, 'pulls': 1.0, 'think': 1.0, 'off': 1.0, 'and': 3.0}
Word element => {'being': 1.0, 'them': 1.0, 'seat': 1.0, 'important': 1.0, 'of': 1.0, 'one': 1.0, 'there': 1.0, 'were': 1.0, 'the': 2.0, 'not': 1.0, 'in': 2.0, 'brand': 1.0, 'arrived': 1.0, 'new': 1.0, 'with': 1.0, 'wrapped': 1.0, 'parts': 2.0, 'package': 1.0, 'but': 1.0, 'all': 3.0, 'plastic': 1.0}
Word element => {'function': 1.0, 'price': 1.0, 'place': 1.0, 'leak': 1.0, 'aren': 1.0, 'mechanisms': 1.0, 'not': 4.0, 'them': 2.0, 'makes': 1.0, 'this': 1.0, 'guess': 1.0, 'probably': 1.0, 'as': 1.0, 'loosely': 1.0, 'more': 2.0, 'almost': 1.0, 'spent': 2.0, 'enough': 2.0, '6': 1.0, 'instead': 1.0, 'store': 1.0, 'spill': 5.0, 'was': 4.0, 'except': 1.0, 'get': 6.0, 'lost': 1.0, 'wish': 1.0, 'easy': 1.0, 'found': 1.0, 'playtex': 1.0, 'make': 1.0, 'long': 1.0, 'on': 5.0, 'put': 1.0, 'is': 4.0, 'at': 3.0, 'no': 2.0, 'water': 1.0, 'sippy': 1.0, 'stopped': 1.0, 'month': 1.0, 'with': 1.0, 'putting': 1.0, 'i': 7.0, 'cup': 3.0, '4': 2.0, 'cups': 2.0, 'our': 1.0, 'us': 2.0, 'stash': 1.0, 'fine': 1.0, 'we': 5.0, 'a': 8.0, 't': 2.0, 'awfully': 1.0, 'of': 7.0, 'the': 11.0, 'spending': 1.0, 'deal': 1.0, 'and': 7.0, 'trip': 1.0, 'little': 4.0, 'frustrated': 1.0, 'it': 6.0, 'thought': 1.0, 'had': 2.0, 'right': 1.0, 'easier': 1.0, 'mechanism': 2.0, 'for': 3.0, '15': 1.0, 'wanted': 1.0, 'old': 1.0, 'problems': 1.0, 'leaks': 1.0, 'car': 1.0, 'ones': 1.0, 'one': 4.0, 'poses': 1.0, 'fantastic': 1.0, 'great': 3.0, 'sale': 1.0, 'give': 1.0, 'good': 1.0, 'd': 1.0, 'drug': 1.0, 'just': 2.0, 'lid': 2.0, 'would': 2.0, 'tight': 1.0, 'these': 1.0, 'tightly': 1.0, 'my': 1.0, 'difficult': 3.0, 'to': 11.0, 'straight': 1.0, 'stop': 1.0, 'inside': 1.0, 'all': 3.0, 'other': 1.0, 'without': 1.0, 'anything': 2.0, 'if': 2.0, 'you': 3.0, 'in': 2.0, 'looking': 1.0, 'using': 1.0, 'surely': 1.0, 'proof': 3.0, 'out': 5.0, 'but': 2.0, 'be': 1.0, 'drink': 1.0, 'think': 1.0, 'incredibly': 1.0, 'couldn': 1.0, 'can': 1.0, '00': 1.0, 'so': 2.0, 'tried': 2.0, 'drinking': 1.0, 'suck': 1.0, 'way': 1.0, 'over': 1.0, 'drive': 1.0, 'hard': 1.0}
Word element => {'money': 1.0, 'lot': 1.0, 'spent': 1.0, 'these': 1.0, '3': 1.0, 'the': 4.0, 'reapplied': 1.0, 'aggressive': 1.0, 'fixed': 1.0, 'to': 2.0, 'i': 3.0, 'regarding': 1.0, 'coaster': 1.0, 'netting': 1.0, 'entitled': 1.0, 'loss': 1.0, 'poor': 1.0, 'bought': 1.0, 'color': 1.0, 'resulted': 1.0, 'a': 2.0, 'and': 4.0, 'me': 1.0, 'shipment': 1.0, 'review': 2.0, 'like': 1.0, 'which': 1.0, 'comparison': 1.0, 'emails': 1.0, 'opinion': 1.0, 'for': 1.0, 'tones': 1.0, 'in': 2.0, 'also': 1.0, 'my': 4.0, 'company': 1.0, 'pink': 1.0, 'from': 1.0, 'packaging': 1.0, 'once': 1.0, 'of': 4.0, 'torn': 1.0, 'this': 1.0, 'is': 2.0, 'leave': 1.0, 'repeated': 1.0, 'off': 1.0, 'picture': 1.0, 'real': 1.0, 'though': 1.0, 'bottom': 2.0, 'complaint': 1.0, 'am': 1.0, 'again': 1.0, 'passive': 1.0, 'alone': 1.0}
Word element => {'because': 1.0, 'times': 1.0, 'used': 1.0, 'each': 1.0, 've': 1.0, 'comfortable': 1.0, 'extremely': 1.0, 'is': 1.0, 'tears': 2.0, 'or': 1.0, 'boxing': 1.0, 'the': 5.0, 'figured': 1.0, 'such': 1.0, 'fabric': 2.0, 'only': 1.0, 'do': 2.0, 'corner': 1.0, 'too': 1.0, 'first': 2.0, 'she': 1.0, 'it': 7.0, 'jump': 1.0, 'on': 2.0, 'very': 1.0, 'child': 1.0, 're': 1.0, 'even': 1.0, 'didn': 1.0, 'sat': 2.0, 'time': 2.0, 'so': 1.0, 'seam': 2.0, 'just': 1.0, 'huge': 1.0, 'flimsy': 1.0, 'at': 1.0, 'sewed': 1.0, 'rigorous': 1.0, '4': 1.0, 'two': 1.0, 'i': 1.0, 'small': 1.0, 'considered': 1.0, 'anything': 1.0, 'other': 1.0, 'returning': 1.0, 'but': 2.0, 'daunting': 1.0, 'my': 1.0, 'aspect': 1.0, 'for': 1.0, 'we': 2.0, 's': 1.0, 't': 1.0, 'a': 1.0, 'tore': 1.0, 'item': 1.0, 'was': 1.0, 'then': 1.0, 'found': 1.0}
Word element => {'big': 1.0, 'she': 1.0, 'but': 1.0, 'already': 1.0, 'loved': 1.0, 'it': 2.0, 'this': 1.0, 'zebra': 1.0, 'is': 1.0, 's': 2.0, 'wide': 1.0, 'who': 1.0, '6yo': 1.0, 'into': 1.0, 'probably': 1.0, 'print': 1.0, 'absolutely': 1.0, 'our': 2.0, 'max': 1.0, 'enough': 1.0, 'liked': 1.0, 'for': 2.0, 'little': 1.0, 'too': 1.0, 'kids': 1.0, 'also': 1.0, 'perfect': 1.0, 'proportion': 1.0, 'age': 1.0, '8yo': 1.0, '9yo': 1.0}
Word element => {'or': 1.0, 'exchange': 1.0, 'how': 1.0, 'out': 1.0, 'even': 1.0, 'girl': 1.0, 'for': 2.0, 'return': 1.0, 'a': 2.0, 'blue': 1.0, 'that': 1.0, 'boy': 1.0, 'know': 1.0, 'like': 1.0, 'and': 2.0, 'cant': 1.0, 'pink': 1.0, 'didnt': 1.0, 'i': 2.0, 'this': 1.0, 'it': 3.0, 'looked': 1.0, 'gray': 1.0, 'figure': 1.0, 'is': 1.0, 'was': 1.0, 'now': 1.0, 'to': 2.0, 'supposed': 1.0, 'be': 1.0}
Word element => {'easily': 1.0, 'manuveurs': 1.0, 'great': 1.0, 'set': 1.0, 'the': 3.0, 'is': 1.0, 'sharp': 1.0, 'price': 1.0, 'looking': 1.0, 'stroller': 1.0, 'easy': 1.0, 'system': 1.0, 'to': 1.0, 'up': 1.0, 'travel': 1.0, 'very': 2.0, 'and': 1.0, 'was': 2.0}
Word element => {'picture': 1.0, 'on': 1.0, 'shown': 1.0, 'described': 1.0, 'as': 1.0, 'but': 1.0, 'packaging': 1.0, 'two': 1.0, 'husband': 1.0, 'days': 1.0, 'a': 1.0, 'in': 2.0, 'post': 1.0, 'came': 1.0, 'it': 3.0, 'looks': 1.0, 'is': 1.0, 'my': 1.0, 'love': 1.0, 'yet': 1.0, 'lot': 1.0, 'we': 1.0, 'good': 1.0, 'even': 1.0, 'didn': 1.0, 'use': 1.0, 'me': 1.0, 'and': 2.0, 'like': 1.0, 'great': 1.0, 'the': 2.0, 't': 1.0}
Word element => {'friends': 1.0, 'to': 1.0, 'i': 1.0, 'sure': 1.0, 'money': 1.0, 'the': 3.0, 'for': 1.0, 'diaper': 1.0, 'would': 1.0, 'not': 1.0, 'this': 1.0, 'bag': 1.0, 'so': 1.0, 'cute': 1.0, 'worth': 1.0, 'but': 1.0, 'is': 2.0, 'totally': 1.0, 'recommend': 1.0, 'rest': 1.0}
Word element => {'condition': 1.0, 'arrived': 1.0, 'pond': 1.0, 'and': 1.0, 'across': 1.0, 'm': 1.0, 'was': 1.0, 'delivery': 1.0, 'considering': 1.0, 'yourself': 1.0, 'lovely': 1.0, 'baby': 1.0, 'be': 1.0, 'qaulity': 1.0, 'good': 1.0, 'different': 2.0, 'overwhelming': 1.0, 'being': 1.0, 'i': 2.0, 'it': 4.0, 'quick': 1.0, 'with': 1.0, 'hard': 1.0, 'girly': 1.0, 'are': 2.0, 'without': 1.0, 'the': 6.0, 'these': 1.0, 'my': 1.0, 'suede': 1.0, 'of': 1.0, 'material': 1.0, 'really': 1.0, 'set': 1.0, 'pleased': 1.0, 'perfect': 1.0, 'this': 1.0, 'soft': 1.0, 'days': 1.0, 'million': 1.0, 'a': 1.0, 's': 1.0, 'bedding': 1.0, 'gorgeour': 1.0, 'in': 2.0, 'colours': 1.0, 'brown': 1.0, 'like': 1.0, 'feel': 1.0, 'love': 1.0, 'that': 2.0, 'time': 1.0, 'so': 1.0, 'areas': 1.0, 'else': 1.0, 'to': 3.0, 'is': 2.0, 'comes': 1.0, 'anything': 1.0, 'make': 1.0, 'stuff': 1.0, 'on': 1.0, 'market': 1.0, 'thanks': 1.0, 'you': 1.0, 'unless': 1.0, 'am': 1.0, 'when': 1.0}
Word element => {'ok': 1.0, 's': 1.0, 'it': 1.0, 'higher': 1.0, 'a': 1.0, 'little': 1.0, 'will': 1.0, 'i': 2.0, 'the': 1.0, 'sturdy': 1.0, 'but': 1.0, 'additional': 1.0, 'expected': 1.0, 'material': 1.0, 'ulti': 1.0, 'used': 1.0, 'seems': 1.0, 'liked': 1.0, 'to': 1.0, 'be': 1.0, 'items': 1.0}
Word element => {'extra': 1.0, 'have': 1.0, 'breastfeeding': 1.0, 'you': 1.0, 'mom': 1.0, 'when': 1.0, 'helpful': 1.0, 'is': 1.0, 'many': 1.0, 'bag': 2.0, 'and': 2.0, 'very': 2.0, 'having': 1.0, 're': 1.0, 'happy': 1.0, 'to': 1.0, 'was': 1.0, 'i': 1.0, 'attachments': 1.0, 'a': 2.0, 'baby': 1.0, 'price': 1.0, 'low': 1.0, 'works': 1.0, 'the': 2.0, 'such': 1.0, 'great': 1.0, 'for': 1.0, 'this': 1.0, 'with': 1.0, 'children': 1.0, 'at': 1.0, 'two': 1.0}
Word element => {'her': 1.0, 'all': 1.0, 'it': 5.0, 's': 2.0, 'i': 1.0, 'for': 2.0, 'lovely': 1.0, 'diaper': 1.0, 'really': 1.0, 'recommend': 1.0, 'bag': 1.0, 'mother': 1.0, 'to': 2.0, 'baby': 1.0, 'worth': 1.0, 'get': 1.0, 'purchase': 1.0}
Word element => {'item': 1.0, 'this': 1.0, 'regret': 1.0, 'purchases': 1.0, 'others': 1.0, 'it': 1.0, 'great': 1.0, 'size': 1.0, 'nice': 1.0, 'color': 1.0, 'to': 1.0, 'everything': 1.0, 'recommend': 1.0, 'fits': 1.0, 'perfect': 1.0, 'would': 1.0, 'wont': 1.0, 'who': 1.0, 'anyone': 1.0, 'definitely': 1.0}
Word element => {'hoped': 1.0, 'had': 1.0, 'is': 1.0, 'i': 2.0, 'expecting': 1.0, 'and': 1.0, 'quality': 1.0, 'it': 2.0, 's': 1.0, 'material': 1.0, 'was': 1.0, 'flimsy': 1.0, 'better': 1.0, 'than': 1.0, 'just': 1.0, 'thinner': 1.0, 'but': 1.0, 'serves': 1.0, 'purpose': 1.0, 'more': 1.0, 'the': 1.0}
Word element => {'mothers': 1.0, 'all': 1.0, 'easily': 1.0, 'recommend': 1.0, 'easy': 1.0, 'finish': 1.0, 'handle': 1.0, 'one': 1.0, 'for': 2.0, 'basically': 1.0, 'and': 2.0, 'two': 1.0, 'thebaby': 1.0, 'materials': 1.0, 'of': 2.0, 's': 3.0, 'expecting': 1.0, 'piece': 1.0, 'it': 2.0, 'excellent': 2.0, 'will': 1.0, 'quality': 1.0, 'an': 1.0, 'made': 1.0, 'the': 3.0, 'to': 2.0, 'was': 1.0, 'hold': 1.0, 'bags': 1.0, 'worth': 1.0, 'price': 2.0, 'smaller': 1.0, 'is': 2.0, 'stuff': 1.0, 'bag': 1.0, 'even': 1.0, 'enough': 1.0}
Word element => {'parents': 1.0, 'new': 1.0, 'to': 1.0, 'not': 1.0, 'would': 1.0, 'recommend': 1.0, 'torn': 1.0, 'busy': 1.0, 'i': 1.0, 'the': 1.0, 'my': 1.0, 'zipper': 1.0, 'and': 2.0, 'this': 1.0, 'bag': 1.0, 'had': 1.0, 'for': 1.0, 'daughter': 1.0, 'bought': 1.0, 'within': 1.0, 'a': 1.0, 'month': 1.0}
Word element => {'baby': 1.0, 'its': 1.0, 'has': 1.0, 'everything': 1.0, 'this': 1.0, 'a': 3.0, 'new': 1.0, 'it': 1.0, 'great': 2.0, 'gift': 1.0, 'for': 2.0, 'mother': 1.0, 'to': 1.0, 'be': 1.0, 'is': 1.0, 'with': 1.0}
Word element => {'lynn': 1.0, 'diaper': 1.0, 'with': 1.0, 'time': 1.0, 'ever': 1.0, 'nt': 1.0, 'along': 1.0, 'long': 1.0, 'what': 1.0, 'at': 1.0, 'able': 1.0, 'have': 2.0, 'thing': 1.0, 'i': 5.0, 'and': 1.0, 'all': 1.0, 'to': 4.0, 'was': 2.0, 'knew': 1.0, 'take': 1.0, 'use': 1.0, 'every': 1.0, 'give': 1.0, 'that': 3.0, 'would': 6.0, 'new': 1.0, 'enough': 1.0, 'this': 1.0, 'she': 2.0, 'it': 1.0, 'giving': 1.0, 'be': 2.0, 'mother': 1.0, 'the': 2.0, 'one': 1.0, 'parents': 1.0, 'nice': 1.0, 'embaressed': 1.0, 'wanted': 2.0, 'bag': 2.0, 'need': 2.0, 'where': 1.0, 'gift': 2.0, 'else': 1.0, 'a': 4.0, 'go': 1.0, 'could': 1.0, 'you': 1.0, 'very': 1.0, 'happy': 1.0}
Word element => {'price': 1.0, 'for': 1.0, 'item': 1.0, 'nice': 1.0}
Word element => {'then': 1.0, 'better': 1.0, 'to': 1.0, 'received': 1.0, 'it': 4.0, 'expected': 1.0, 'was': 1.0, 'loves': 1.0, 'relative': 1.0, 'found': 1.0, 'your': 1.0, 'when': 1.0, 'a': 2.0, 'gift': 1.0, 'registry': 1.0, 'she': 4.0, 'for': 1.0, 'on': 1.0}
Word element => {'perfect': 1.0, 'things': 1.0, 'of': 1.0, 'bunch': 1.0, 'and': 1.0, 'bought': 1.0, 'friend': 1.0, 'nice': 1.0, 'gift': 1.0, 'still': 1.0, 'stuffed': 1.0, 'was': 3.0, 'expected': 1.0, 'good': 1.0, 'for': 2.0, 'color': 1.0, 'bag': 2.0, 'with': 1.0, 'it': 5.0, 'great': 1.0, 'the': 3.0, 'more': 1.0, 'a': 6.0, 'baby': 1.0, 'price': 1.0, 's': 2.0, 'tad': 1.0, 'just': 1.0, 'but': 1.0, 'slightly': 1.0, 'than': 1.0, 'different': 1.0, 'on': 1.0, 'i': 2.0, 'green': 1.0, 'side': 1.0}
Word element => {'choice': 1.0, 'a': 1.0, 'was': 1.0, 'deseen': 1.0, 'recomiendo': 1.0, 'lo': 1.0, 'cofortable': 1.0, 'quienes': 1.0, 'i': 1.0, 'm': 1.0, 'happy': 1.0, 'good': 1.0, 'wtith': 1.0, 'diaper': 1.0, 'is': 1.0, 'this': 1.0, 'bag': 1.0, 'para': 1.0, 'and': 1.0, 'very': 1.0, 'quite': 1.0, 'comprarlo': 1.0, 'spacious': 1.0}
Word element => {'holding': 1.0, 'far': 2.0, 'buy': 1.0, 'good': 1.0, 'top': 1.0, 'on': 1.0, 'and': 1.0, 'day': 1.0, 'during': 1.0, 'mind': 1.0, 'more': 1.0, 'the': 1.0, 't': 1.0, 'bag': 1.0, 'have': 1.0, 'doesn': 1.0, 'well': 1.0, 'a': 2.0, 'that': 2.0, 'carrying': 1.0, 'may': 1.0, 'even': 2.0, 'you': 1.0, 'plenty': 1.0, 'up': 1.0, 'set': 1.0, 'daddy': 1.0, 'of': 2.0, 'carry': 1.0, 'room': 1.0, 'to': 1.0, 'so': 2.0, 'everything': 1.0, 'your': 1.0, 'baby': 1.0, 'nice': 1.0, 'need': 1.0}
Word element => {'charged': 1.0, 'got': 1.0, 'in': 1.0, 'it': 2.0, 'because': 1.0, 'upsetting': 1.0, 'was': 1.0, 'pad': 2.0, 'get': 1.0, 'every': 1.0, 'didnt': 1.0, 'i': 2.0, 'problem': 1.0, 'is': 3.0, 'one': 2.0, 'diaper': 3.0, 'the': 4.0, 'have': 3.0, 'this': 1.0, 'traveling': 2.0, 'you': 3.0, 'a': 5.0, 's': 1.0, 'changing': 1.0, 'that': 3.0, 'my': 1.0, 'fact': 1.0, 'while': 1.0, 'bags': 1.0, 'too': 1.0, 'and': 7.0, 'purse': 1.0, 'very': 3.0, 'only': 1.0, 'yourself': 1.0, 'pouch': 1.0, 'useful': 2.0, 'warm': 1.0, 'baby': 1.0, '2': 1.0, 'money': 1.0, 'essentials': 1.0, 'ither': 1.0, 'light': 1.0, 'need': 1.0, 'simple': 1.0, 'bag': 2.0, 'hand': 1.0, 'like': 1.0, 'grocery': 1.0, 'also': 1.0, 'shopping': 1.0, 'coin': 1.0, 'where': 1.0, 'for': 5.0, 'product': 1.0, 'snacks': 1.0, 'bottle': 2.0, 'all': 1.0, 'to': 3.0, 'his': 2.0, 'clean': 1.0, 'adorable': 1.0, 'keep': 2.0, 'at': 1.0}
Word element => {'good': 1.0, 'its': 1.0, 'pull': 1.0, 'specially': 1.0, 'on': 1.0, 'the': 4.0, 'are': 2.0, 'fine': 1.0, 'besides': 1.0, 'they': 1.0, 'a': 2.0, 'bit': 1.0, 'but': 1.0, 'buy': 1.0, 'that': 1.0, 'weak': 1.0, 'watch': 1.0, 'side': 1.0, 'zippers': 1.0, 'zipper': 1.0, 'cloth': 1.0, 'bags': 1.0, 'as': 1.0}
Word element => {'dad': 1.0, 'for': 1.0, 'feminine': 1.0, 'not': 1.0, 'neutral': 1.0, 'very': 1.0, 'makes': 1.0, 'and': 4.0, 'zippered': 1.0, 'are': 1.0, 'there': 1.0, 'pockets': 1.0, 'areas': 1.0, 'my': 1.0, 'smaller': 1.0, 'it': 1.0, 'this': 1.0, 'bag': 1.0, 'too': 1.0, 'daughter': 1.0, 'the': 2.0, 'diaper': 1.0, 'several': 1.0, 'carry': 1.0, 'pouches': 1.0, 'things': 1.0, 'beige': 1.0, 'to': 3.0, 'brown': 1.0, 'even': 1.0, 'loved': 1.0, 'stash': 1.0, 'use': 1.0, 'a': 1.0}
Word element => {'ok': 1.0, 'than': 1.0, 'other': 1.0, 'small': 1.0, 'product': 1.0, 'really': 1.0, 'bags': 1.0, 'is': 1.0, 'that': 1.0, 'are': 1.0, 'the': 1.0}
Word element => {'later': 1.0, 'another': 1.0, 'need': 1.0, 'will': 1.0, 'am': 1.0, 'current': 1.0, 'cannot': 1.0, 'to': 1.0, 'sure': 1.0, 'wait': 1.0, 'but': 1.0, 'use': 1.0, 'have': 1.0, 'this': 1.0, 'next': 2.0, 'with': 3.0, 'the': 1.0, 'my': 2.0, 'child': 2.0, 'one': 4.0, 'i': 3.0}
Word element => {'your': 1.0, 'put': 1.0, 'place': 1.0, 'is': 1.0, 'there': 1.0, 'bag': 1.0, 'larger': 1.0, 'on': 1.0, 'this': 1.0, 'wallet': 1.0, 'to': 3.0, 'size': 1.0, 'two': 1.0, 'phone': 2.0, 'have': 2.0, 'we': 1.0, 'different': 1.0, 'that': 1.0, 'bags': 1.0, 'chose': 1.0, 'and': 1.0, 'i': 1.0, 'from': 1.0, 'both': 1.0, 'like': 1.0, 'pocket': 2.0, 'in': 2.0, 'the': 2.0, 'my': 1.0, 'a': 2.0, 'front': 1.0, 'hold': 1.0}
Word element => {'order': 1.0, 'to': 1.0, 'they': 1.0, 'animals': 1.0, 'smaller': 1.0, 'held': 1.0, 'i': 2.0, 'but': 1.0, 'than': 1.0, 'thought': 1.0, 'only': 1.0, 'a': 1.0, 'more': 1.0, 'small': 1.0, 'amount': 1.0, 'worked': 1.0, 'of': 1.0, 'had': 1.0, 'stuffed': 1.0}
Word element => {'a': 1.0, 'great': 2.0, 'animals': 1.0, 'for': 1.0, 'spot': 1.0, 'in': 1.0, 'stuffed': 1.0, 'one': 1.0, 'daughters': 1.0, 'i': 1.0, 'loved': 1.0, 'my': 1.0, 'price': 1.0, 'how': 1.0, 'these': 1.0, 'product': 1.0, 'toy': 1.0, 'hammocks': 1.0, 'all': 1.0, 'help': 1.0, 'keep': 1.0, 'of': 1.0}
Word element => {'showers': 1.0, 'these': 1.0, 'buy': 1.0, 'however': 1.0, '4': 1.0, 'average': 1.0, 'an': 1.0, 'thus': 1.0, 'product': 1.0, 'within': 1.0, 'be': 1.0, 'breeze': 1.0, 'infant': 1.0, 'dry': 1.0, 'but': 2.0, 'stars': 5.0, 'for': 6.0, 'given': 1.0, 'contacted': 1.0, 'fan': 5.0, 'have': 1.0, 'lets': 1.0, 'a': 4.0, 'we': 3.0, 'might': 1.0, 'going': 1.0, 'us': 1.0, 'polite': 1.0, 'gets': 1.0, 'big': 1.0, 'smile': 1.0, 'as': 1.0, 'off': 1.0, 'loves': 1.0, 'that': 1.0, 'been': 1.0, 'i': 5.0, 'broke': 1.0, 'baby': 2.0, 'kicking': 1.0, 'send': 1.0, 'quickly': 2.0, 'company': 1.0, 'on': 1.0, 'think': 1.0, 'strong': 1.0, '3': 1.0, 'would': 3.0, 'boy': 1.0, 'new': 1.0, 'time': 1.0, 'so': 1.0, 'his': 2.0, 'stops': 1.0, '5': 3.0, 'got': 1.0, 'use': 1.0, 'first': 2.0, 'he': 6.0, 'few': 1.0, 'this': 1.0, 'him': 1.0, 'it': 4.0, 'face': 1.0, 'and': 3.0, 'directly': 1.0, 'they': 1.0, 'one': 1.0, 'legs': 1.0, 'months': 1.0, 'man': 1.0, 'my': 1.0, 'me': 1.0, 'show': 1.0, 'quality': 1.0, 'customer': 1.0, 'talked': 1.0, 'days': 1.0, 'works': 1.0, 'chris': 1.0, 'was': 1.0, 'very': 2.0, 'said': 1.0, 'promptly': 1.0, 'in': 1.0, 'which': 1.0, 'did': 1.0, 'batteries': 2.0, 'out': 1.0, 'couple': 1.0, 'were': 1.0, 'reproducible': 1.0, 'probably': 1.0, 'to': 1.0, 'pretty': 1.0, 'every': 1.0, 'service': 1.0, 'old': 1.0, 'replaced': 1.0, 'has': 1.0, 'ran': 1.0, 'the': 8.0, 'of': 3.0, 'now': 1.0, 'pleased': 1.0, 'concept': 1.0}
Word element => {'adult': 1.0, 'an': 1.0, 'they': 1.0, 'break': 1.0, 't': 1.0, 'off': 1.0, 'kicked': 1.0, 'usa': 1.0, 'am': 1.0, 'table': 1.0, '30': 1.0, 'creams': 1.0, 'compared': 1.0, 'esp': 1.0, 'have': 2.0, 'enough': 1.0, 'recommend': 1.0, 'usai': 1.0, 'breeze': 1.0, 'prevention': 1.0, 'so': 1.0, 'treatment': 1.0, 'husband': 1.0, 'more': 1.0, 'changes': 1.0, 'fanning': 1.0, 'feel': 1.0, 'tell': 1.0, 'on': 2.0, 'glad': 2.0, 'diaper': 5.0, 'changed': 1.0, 'saw': 1.0, 'you': 1.0, 'when': 1.0, 'floor': 1.0, 'much': 1.0, 'put': 1.0, 'changing': 3.0, 'lasted': 1.0, 'area': 1.0, 'the': 10.0, 'cart': 1.0, 'did': 1.0, 'makes': 1.0, 'inexpensive': 1.0, 'old': 1.0, 'forward': 1.0, 'dry': 1.0, 'not': 1.0, 'didn': 1.0, 'minor': 1.0, 'and': 11.0, 'looks': 1.0, 'me': 1.0, 'my': 6.0, 'another': 1.0, 'how': 2.0, 'item': 1.0, 'batteries': 1.0, 'because': 1.0, 'that': 2.0, 'laughs': 1.0, 'list': 1.0, 'then': 1.0, 'suggested': 1.0, 'cannot': 2.0, 'in': 5.0, 'for': 1.0, 'cry': 1.0, 's': 2.0, 'sense': 1.0, 'getting': 1.0, 'items': 1.0, 'kept': 1.0, 'squirm': 1.0, 'forth': 1.0, 'amazon': 1.0, 'use': 1.0, 'actually': 1.0, 'rash': 2.0, 'well': 1.0, 'i': 7.0, 'must': 1.0, 'fan': 3.0, '4': 1.0, 'had': 1.0, 'size': 1.0, 'seeing': 1.0, 'part': 1.0, 'while': 1.0, 'diapering': 1.0, 'started': 1.0, 'baby': 3.0, 'worlds': 1.0, 'has': 2.0, 'them': 1.0, 'just': 1.0, 'this': 4.0, 'thought': 1.0, 'it': 9.0, 'a': 3.0, 'unnecessary': 1.0, 'price': 1.0, 'effective': 1.0, 'best': 1.0, 'about': 1.0, 'was': 1.0, 'to': 5.0, 'he': 2.0, 'love': 1.0, 'made': 2.0, 'good': 1.0, 'mo': 1.0, 'output': 1.0, 'first': 1.0, 'bad': 1.0, 'if': 1.0, 'asked': 1.0, 'every': 1.0, 'paid': 1.0, 'only': 1.0, 'sell': 1.0, 'think': 1.0, 'twice': 1.0, 'less': 1.0, 'than': 1.0, 'day': 1.0, 'son': 2.0, 'his': 2.0, 'would': 1.0, 'calmly': 1.0, 'hardwood': 1.0, 'enjoys': 1.0, 'but': 2.0, 'air': 1.0, 'now': 1.0, 'is': 4.0, 'at': 1.0, 'sits': 1.0, 'hit': 1.0, 'even': 1.0, 'lifting': 1.0, 'legs': 1.0, 'waving': 1.0, 'back': 1.0}
Word element => {'they': 1.0, 'if': 1.0, 'hurt': 1.0, 'not': 1.0, 'portability': 1.0, 'may': 1.0, 'easy': 1.0, 'for': 1.0, 'buy': 1.0, 'weighs': 1.0, 'which': 1.0, 'light': 1.0, 'in': 1.0, 'made': 1.0, 'diaper': 1.0, 'through': 1.0, 'material': 1.0, 'product': 2.0, 'reviews': 1.0, 'enjoying': 1.0, 'after': 1.0, 'plastic': 1.0, 'rotates': 1.0, 'less': 1.0, 'going': 1.0, 'good': 2.0, 'with': 1.0, 'this': 2.0, 'it': 3.0, 'faster': 1.0, 'and': 2.0, 'play': 1.0, 'we': 1.0, 'during': 1.0, 'ordered': 1.0, 'generates': 1.0, 'a': 2.0, 'breeze': 1.0, 'our': 1.0, 'baby': 2.0, 'change': 1.0, 'really': 1.0, 'fan': 1.0, 'is': 2.0}
Word element => {'creams': 1.0, 'rash': 1.0, 'prevent': 1.0, 'to': 1.0, 'way': 1.0, 'members': 1.0, 'newborns': 1.0, 'diaper': 1.0, 'great': 1.0, 'the': 2.0, 'powders': 1.0, 'a': 2.0, 'third': 1.0, 'is': 3.0, 'fan': 1.0, 'without': 1.0, 'wonderful': 1.0, 'it': 1.0, 'with': 1.0, 'this': 2.0, 'all': 1.0, 'have': 1.0, 'baby': 1.0, 'that': 1.0, 'we': 1.0, 'various': 1.0, 'family': 1.0, 'one': 1.0, 'for': 1.0, 'butt': 1.0, 'and': 2.0, 'product': 1.0, 'bought': 1.0, 'friends': 1.0}
Word element => {'clean': 1.0, 'on': 1.0, 'stays': 1.0, 'bought': 1.0, 'dry': 1.0, 'table': 1.0, 'and': 2.0, 'mug': 1.0, 'keep': 1.0, 'dishwasher': 1.0, 'secure': 1.0, 'replace': 1.0, 'to': 2.0, 'an': 1.0, 'lid': 1.0, 'other': 1.0, 'sipper': 1.0, 'princess': 1.0, 'safe': 1.0}
Word element => {'product': 1.0, 'volume': 1.0, 'has': 1.0, 'dishwasher': 1.0, 'of': 1.0, 'clean': 1.0, 'out': 1.0, 'and': 2.0, 'my': 1.0, 'novel': 1.0, 'in': 1.0, 'built': 1.0, 'straw': 1.0, 'for': 1.0, 'is': 2.0, 'daughter': 1.0, 'cups': 1.0, 'good': 1.0, 'loves': 1.0, 'to': 3.0, 'her': 1.0, 'works': 1.0, 'the': 2.0, 'these': 1.0, 't': 1.0, 'great': 2.0, 'can': 1.0, 'wait': 1.0, 'easy': 1.0, 'she': 1.0, 'it': 2.0, 'come': 1.0}
Word element => {'for': 1.0, 'materials': 1.0, 'and': 1.0, 'lettering': 1.0, 'like': 1.0, 'wasn': 1.0, 'but': 1.0, 'just': 2.0, 'didn': 1.0, 'picture': 1.0, 'bad': 1.0, 'cheap': 1.0, 'i': 1.0, 'felt': 1.0, 'looks': 1.0, 'insubstantial': 1.0, 'looked': 1.0, 'it': 2.0, 'the': 3.0, 't': 2.0, 'look': 1.0, 'worth': 1.0, 'what': 1.0, 'paid': 1.0}
Word element => {'needed': 1.0, 'but': 1.0, 'full': 1.0, 'missing': 1.0, 'in': 1.0, 'here': 1.0, 'c': 1.0, 'very': 1.0, 'refund': 1.0, 'me': 1.0, 'florida': 1.0, 'and': 1.0, '90': 1.0, 'i': 2.0, 'arrived': 1.0, 'we': 1.0, 'b': 1.0, 'theme': 1.0, 'really': 1.0, 'amazon': 1.0, 'promptly': 1.0, 'fan': 2.0, 'degrees': 1.0, 's': 1.0, 'the': 3.0, 'excited': 1.0, 'it': 1.0, 'gave': 1.0, 'going': 1.0, 'was': 3.0, 'to': 2.0, 'pinwheel': 1.0, 'see': 1.0, 'upset': 1.0, 'well': 1.0, 'weekend': 1.0, 'a': 2.0, 'park': 1.0, 'were': 1.0, 'that': 1.0}
Word element => {'cool': 1.0, 'nice': 1.0, 'also': 1.0, 'she': 2.0, 'great': 1.0, 'can': 1.0, 'daughters': 1.0, 'i': 1.0, 'stays': 1.0, 'and': 3.0, 'hot': 1.0, 'not': 1.0, 'my': 1.0, 'for': 1.0, 'it': 1.0, 'this': 1.0, 'got': 1.0, 's': 1.0, 'anymore': 1.0, 'clip': 1.0, 'works': 1.0, 'carseat': 1.0, 'her': 1.0, 'on': 1.0, 'stroller': 1.0}
Word element => {'isn': 1.0, 'there': 1.0, 'ordered': 1.0, 'broken': 1.0, 'time': 1.0, 'wouldn': 1.0, 'sturdier': 1.0, 'fault': 1.0, 've': 1.0, 'but': 2.0, 'stars': 1.0, 'fit': 1.0, 'for': 1.0, 'good': 1.0, 'her': 4.0, 'kept': 2.0, 'it': 5.0, 'wish': 1.0, 'this': 2.0, 'snapped': 1.0, 'eating': 1.0, 'happened': 1.0, 'when': 2.0, 'daughter': 1.0, 'one': 2.0, 'cool': 3.0, 'twice': 1.0, 'clips': 1.0, '3': 1.0, 'on': 1.0, 'while': 1.0, 'stroller': 3.0, 'inside': 1.0, 'september': 1.0, 'as': 2.0, 'our': 1.0, 'to': 3.0, 'was': 2.0, 'fingers': 2.0, 'half': 1.0, 'has': 2.0, 'hot': 1.0, 'every': 1.0, 'weather': 1.0, 'too': 1.0, 'and': 2.0, 'getting': 1.0, 'the': 4.0, 'another': 1.0, 'my': 1.0, 'keeps': 1.0, 'in': 4.0, 'were': 2.0, 'been': 1.0, 'gave': 1.0, 'that': 5.0, 'fl': 1.0, 'out': 1.0, 'jogging': 1.0, 'at': 1.0, 'space': 1.0, 's': 1.0, 'could': 1.0, 't': 3.0, 'we': 2.0, 'a': 2.0, 'rather': 1.0, 'warm': 1.0, 'fan': 3.0, 'i': 4.0, 'don': 1.0, 'about': 1.0, 'small': 1.0, 'have': 3.0, 'restaurant': 1.0, 'worry': 1.0, 'is': 2.0, 'caught': 1.0, 'because': 3.0}
Word element => {'friendly': 1.0, 'poked': 1.0, 'out': 1.0, 'cheap': 1.0, 'i': 2.0, 'when': 1.0, 'and': 1.0, 'fan': 1.0, 'stroller': 1.0, 'just': 1.0, 'not': 1.0, 'clip': 1.0, 'arm': 1.0, 'the': 5.0, 'metal': 1.0, 'head': 1.0, 'was': 3.0, 'to': 1.0, 'right': 1.0, 'adjust': 1.0, 'broke': 1.0, 'angle': 1.0, 'moved': 1.0, 'it': 1.0, 'gentle': 1.0}
Word element => {'recommend': 1.0, 'not': 1.0, 'would': 1.0, 'i': 1.0, 'almost': 1.0, 'breaks': 1.0, 'looks': 1.0, 'it': 1.0, 'works': 1.0, 'durable': 1.0, 'very': 1.0, 'and': 2.0, 'wire': 1.0, 'well': 1.0, 'aluminum': 1.0, 'immediately': 1.0, 'but': 1.0, 'bendable': 1.0, 'is': 1.0}
Word element => {'on': 1.0, 'blowing': 1.0, 'him': 1.0, 'cooler': 1.0, 'baby': 1.0, 'as': 1.0, 'nonexistent': 1.0, 'bought': 1.0, 'almost': 1.0, 'i': 2.0, 'it': 3.0, 'generates': 1.0, 'car': 1.0, 'breeze': 1.0, 'a': 1.0, 'that': 1.0, 'the': 1.0, 'my': 1.0, 'seat': 1.0, 'by': 1.0, 'going': 1.0, 'keep': 1.0, 'back': 1.0, 'stroller': 1.0, 'but': 1.0, 'is': 1.0, 'fan': 1.0, 's': 1.0, 'd': 1.0}
Word element => {'difference': 1.0, 'out': 1.0, 'them': 2.0, 'more': 1.0, 'the': 1.0, 'don': 2.0, 'fans': 1.0, 'direction': 1.0, 'in': 2.0, 'point': 1.0, 'can': 1.0, 'love': 1.0, 'however': 1.0, 'that': 2.0, 'they': 1.0, 'stroller': 1.0, 'and': 3.0, 'these': 1.0, 'setting': 1.0, 'clip': 1.0, 't': 2.0, 'a': 4.0, 'are': 1.0, 'would': 1.0, 'breeze': 1.0, 'maybe': 1.0, 'flexible': 1.0, 'power': 1.0, 'well': 1.0, 'hot': 1.0, 'much': 2.0, 'of': 2.0, 'there': 1.0, 'this': 1.0, 'wish': 1.0, 'was': 1.0, 'any': 1.0, 'to': 2.0, 'very': 1.0, 'little': 1.0, 'high': 1.0, 'low': 1.0, 'make': 1.0, 'put': 1.0, 'on': 1.0, 'days': 1.0, 'hold': 1.0, 'know': 1.0, 'i': 3.0, 'fan': 1.0}
Word element => {'dying': 1.0, 'is': 1.0, 'feels': 1.0, 'time': 1.0, 'hours': 1.0, 'stronger': 1.0, 'front': 1.0, 'seat': 1.0, 'her': 1.0, 'sweats': 1.0, 'and': 1.0, 'away': 1.0, 'car': 1.0, 'like': 2.0, 'nothing': 1.0, 'still': 1.0, 'in': 1.0, 'for': 2.0, 'cover': 1.0, 'month': 1.0, 'it': 2.0, 'but': 1.0, 'stroller': 1.0, '4': 1.0, 'my': 1.0, '2': 1.0, 'the': 1.0, 'use': 1.0, 'feel': 2.0, 'of': 1.0, 'cant': 1.0, '6': 1.0, '34': 1.0, 'from': 1.0, 'battery': 1.0, 'old': 1.0, 'i': 1.0, 'took': 1.0}
Word element => {'air': 1.0, 'produce': 1.0, 'and': 1.0, 'harder': 1.0, 'blow': 1.0, 'when': 1.0, 'i': 1.0, 'wind': 1.0, 'much': 1.0, 'more': 1.0, 't': 1.0, 'this': 1.0, 'it': 4.0, 'a': 2.0, 'fan': 1.0, 'really': 1.0, 'is': 3.0, 'on': 1.0, 'had': 1.0, 'turned': 1.0, 'there': 1.0, 'that': 1.0, 'if': 1.0, 'cage': 2.0, 'doesn': 1.0, 'put': 1.0, 'but': 1.0, 'would': 2.0, 'off': 1.0, 'good': 1.0, 'think': 1.0}
Word element => {'don': 1.0, 'do': 1.0, 'not': 1.0, 'cool': 1.0, 'buy': 1.0, 'you': 1.0, 'as': 2.0, 't': 1.0, 'this': 1.0, 'might': 1.0, 'blow': 1.0, 'keep': 1.0, 'well': 1.0, 'anything': 1.0, 'with': 1.0, 'mouth': 1.0, 'does': 1.0, 'your': 2.0, 'to': 1.0, 'because': 1.0, 'baby': 1.0}
Word element => {'mine': 1.0, 'returning': 1.0, 'am': 1.0, 'recommend': 1.0, 'not': 1.0, 'i': 2.0, 'to': 1.0, 'stick': 1.0, 'right': 1.0, 'can': 1.0, 'of': 1.0, 'up': 1.0, 'do': 1.0, 'and': 1.0, 'money': 1.0, 'any': 1.0, 'you': 1.0, 'flow': 1.0, 'awful': 1.0, 'face': 1.0, 'is': 1.0, 'fan': 1.0, 'it': 1.0, 'this': 2.0, 'your': 1.0, 'hardly': 1.0, 'all': 1.0, 'feel': 1.0, 'air': 1.0, 'complete': 1.0, 'at': 1.0, 'waste': 1.0}
Word element => {'go': 1.0, 'on': 1.0, 'or': 1.0, 'stroller': 1.0, 'use': 1.0, 'her': 2.0, 'this': 1.0, 'car': 2.0, 'to': 1.0, 'the': 2.0, 'my': 1.0, 'cool': 1.0, 'daughter': 1.0, 'in': 3.0, 'keep': 1.0, 'seat': 1.0}
Word element => {'mine': 1.0, 'returning': 1.0, 'i': 1.0, 'face': 1.0, 's': 1.0, 'my': 1.0, 'on': 1.0, 'blowing': 1.0, 'backseat': 1.0, 'someone': 1.0, 'efficient': 1.0, 'the': 1.0, 'more': 1.0, 'would': 1.0, 'it': 1.0, 'to': 5.0, 'm': 1.0, 'us': 1.0, 'does': 1.0, 'air': 1.0, 'help': 1.0, 'back': 1.0, 'be': 1.0, 'r': 1.0, 'bought': 1.0, 'cool': 1.0, 'enough': 1.0, 'at': 2.0, 'az': 1.0, 'in': 3.0, 'live': 1.0, 'not': 1.0, 'seat': 2.0, 'move': 1.0, 'clip': 1.0, 'keep': 1.0, 'baby': 2.0, 'fan': 1.0, 'all': 1.0, 'babies': 1.0, 'have': 2.0, 'car': 1.0, 'power': 1.0}
Word element => {'guess': 1.0, 'i': 1.0, 'loss': 1.0, 'back': 1.0, 'send': 1.0, 'seats': 1.0, 'certain': 1.0, 'and': 1.0, 'fits': 1.0, 'that': 1.0, 'state': 1.0, 'to': 2.0, 'needs': 1.0, 'company': 1.0, 'my': 2.0, 'more': 1.0, 'it': 1.0, 'only': 1.0, 'this': 2.0, 'have': 1.0, 'car': 1.0, 'clip': 1.0, 'cost': 1.0, 'total': 1.0, 'waste': 1.0, 'of': 1.0, 'chest': 1.0, 'money': 1.0, 'would': 1.0}
Word element => {'better': 1.0, 'than': 1.0, 'even': 1.0, 'original': 1.0, 'happy': 1.0, 'very': 1.0, 'and': 1.0, 'the': 4.0, 'am': 1.0, 'bit': 1.0, 'clip': 2.0, 'that': 1.0, 'came': 1.0, 'on': 1.0, 'with': 1.0, 'works': 1.0, 'it': 1.0, 'dust': 1.0, 'carseat': 1.0, 'one': 1.0, 'i': 1.0, 'put': 1.0, 'this': 1.0}
Word element => {'arrived': 1.0, 'car': 1.0, 'our': 1.0, 'install': 1.0, 'than': 1.0, 'easy': 1.0, 'the': 1.0, 'on': 1.0, 'is': 1.0, 'sooner': 1.0, 'seat': 1.0, 'sturdy': 1.0, 'clip': 1.0, 'and': 1.0, 'to': 1.0, 'exactly': 1.0, 'what': 1.0, 'britax': 1.0, 'i': 2.0, 'it': 2.0, 'expected': 2.0, 'was': 1.0}
Word element => {'stars': 1.0, 'four': 1.0, 'should': 1.0, 'as': 1.0, 'does': 1.0, 'seat': 1.0, 'car': 1.0, 'of': 1.0, 'rest': 1.0, 'outlast': 1.0, 't': 1.0, 'the': 6.0, 'and': 1.0, 'break': 1.0, 'somehow': 1.0, 'one': 2.0, 'lost': 1.0, 'exactly': 1.0, 'managed': 1.0, 'hence': 2.0, 'replaced': 1.0, 'kid': 1.0, 'this': 1.0, 'it': 4.0, 'to': 1.0, 'look': 1.0, 'oem': 1.0, 'like': 1.0, 'original': 1.0, 'so': 1.0, 'star': 1.0, 'work': 1.0, 'doesn': 1.0, 'but': 1.0, 'will': 1.0}
Word element => {'did': 1.0, 'getting': 1.0, 'stands': 1.0, 'opening': 1.0, 'didn': 1.0, 'how': 1.0, 'really': 1.0, 'opened': 1.0, 'they': 1.0, 'would': 3.0, 'if': 1.0, 'made': 1.0, 'ordered': 1.0, 'indication': 1.0, 'there': 1.0, 'have': 2.0, 'well': 1.0, 'specific': 1.0, 'bauer': 1.0, 'universal': 1.0, 'items': 1.0, 'other': 1.0, 'them': 1.0, 'penalized': 1.0, 'for': 2.0, 'wider': 1.0, 'slots': 1.0, 'so': 3.0, 'know': 1.0, 'which': 1.0, 'am': 1.0, 'easily': 1.0, 'by': 2.0, 'it': 9.0, 'kids': 1.0, 'this': 4.0, 'were': 1.0, 'requested': 1.0, 't': 2.0, 'a': 3.0, 'return': 2.0, 'i': 6.0, 'brand': 1.0, 'makes': 1.0, 'important': 1.0, 'distributor': 1.0, 'unsafe': 1.0, 'isn': 1.0, 'collaborate': 1.0, 'designed': 1.0, 'in': 1.0, 'diono': 2.0, 'brands': 2.0, 'than': 1.0, 'does': 1.0, 'because': 3.0, 'give': 1.0, 'not': 7.0, 'most': 1.0, 'but': 1.0, 'work': 3.0, 'description': 1.0, 'too': 1.0, 'and': 6.0, 'are': 3.0, 'opens': 1.0, 'without': 1.0, 'the': 6.0, 'sunshine': 2.0, 'fact': 1.0, 'tight': 1.0, 'enough': 1.0, 'refund': 1.0, 'eddie': 1.0, 'belt': 1.0, 'was': 3.0, 'as': 1.0, 'to': 1.0, 'only': 1.0, 'its': 1.0, 'no': 1.0, 'told': 1.0, 'that': 3.0, 'also': 1.0, 'item': 1.0, 'is': 2.0, 'on': 1.0, 'latch': 1.0, 'seller': 2.0, 'or': 1.0, 'car': 2.0, 'seats': 2.0, 'replacement': 1.0}
Word element => {'it': 2.0, 'when': 1.0, 'appreciate': 1.0, 'getting': 1.0, 'himself': 1.0, 'operate': 1.0, 'for': 1.0, 'easy': 1.0, 'is': 1.0, 'option': 1.0, 'at': 1.0, 'arm': 1.0, 'clip': 3.0, 'don': 1.0, 'perhaps': 1.0, 'bed': 1.0, 'the': 4.0, 'my': 2.0, 're': 1.0, 'son': 1.0, 'in': 3.0, 'old': 1.0, 'i': 2.0, 'switch': 1.0, 'dimmer': 1.0, 'as': 1.0, 'to': 5.0, 'all': 1.0, 'use': 2.0, 'loves': 1.0, 'books': 1.0, 'swinging': 1.0, 'or': 1.0, 'eyes': 1.0, 'this': 2.0, 'heavy': 1.0, 'nightlight': 1.0, 'read': 1.0, 'and': 4.0, 'too': 1.0, 'they': 1.0, 'directly': 1.0, 'unwieldy': 1.0, 'headboard': 1.0, 'onto': 2.0, 'him': 1.0, 'be': 1.0, 'year': 1.0, 'his': 1.0, 'four': 1.0, 'but': 1.0, 'can': 1.0, 'see': 1.0, 's': 1.0, 'we': 1.0, 't': 1.0, 'a': 1.0, 'he': 1.0, 'how': 1.0, 'would': 1.0, 'wildly': 1.0, 'useful': 1.0, 'though': 1.0, 'car': 1.0}
Word element => {'somewhat': 1.0, 'no': 1.0, 'about': 1.0, 'as': 2.0, 'was': 1.0, 'had': 3.0, 'out': 2.0, 'weeks': 1.0, 'almost': 1.0, 'daughter': 1.0, 'room': 1.0, 'though': 1.0, 'not': 1.0, 'and': 7.0, 'there': 1.0, 'soon': 1.0, 'rather': 1.0, 'like': 1.0, 'version': 1.0, 'me': 1.0, 'my': 2.0, 'save': 1.0, '2': 1.0, 'of': 1.0, 'the': 6.0, 'great': 1.0, 'seemed': 2.0, 'it': 11.0, 'nights': 1.0, 'she': 2.0, 'came': 1.0, 'light': 1.0, 'just': 1.0, 'a': 1.0, 'stimulates': 1.0, 'go': 1.0, 'arm': 2.0, 'chill': 1.0, 'did': 2.0, 'to': 4.0, 'pretty': 1.0, 'we': 1.0, 'then': 1.0, 'her': 2.0, 'use': 2.0, 'i': 3.0, 'opened': 1.0, 'broken': 1.0, 'crying': 1.0, 'question': 1.0, 'way': 1.0, 'than': 1.0, 'clipped': 1.0, 'bed': 2.0, 'really': 1.0, 'bright': 3.0, 'or': 2.0, 'messed': 1.0, 'with': 2.0, 'fix': 1.0, 'should': 1.0, 'much': 1.0, 'prob': 1.0, 'have': 1.0, 'for': 3.0, 'such': 1.0, 'played': 1.0, 'never': 1.0, 'some': 1.0, 'little': 1.0, 'very': 1.0, 'fallen': 1.0, 'sent': 1.0, 'sleep': 1.0, 'most': 1.0, 'back': 1.0, 'your': 1.0, 'on': 1.0, 'this': 1.0, 'get': 1.0, 'mighty': 2.0, 'that': 2.0, 'other': 1.0, 'adult': 1.0, 'sturdy': 1.0, 'they': 1.0, 'cost': 1.0, 'same': 1.0, 'loved': 1.0, 'terrific': 1.0, 'quality': 1.0, 'them': 2.0, 'helping': 1.0, 'so': 1.0, 'time': 1.0, 'issue': 1.0, 'is': 4.0, 'at': 1.0}
Word element => {'belt': 1.0, 'securing': 1.0, 'child': 1.0, 'also': 1.0, 'in': 1.0, 's': 1.0, 'stretching': 1.0, 'that': 1.0, 'a': 2.0, 'threaten': 1.0, 'childrens': 1.0, 'is': 1.0, 'product': 1.0, 'it': 1.0, 'this': 1.0, 'car': 1.0, 'works': 1.0, 'does': 1.0, 'seat': 2.0, 'not': 1.0, 'safety': 1.0, 'by': 1.0, 'great': 2.0, 'the': 1.0}
Word element => {'place': 1.0, 'in': 1.0, 'fit': 1.0, 'get': 1.0, 'to': 2.0, 'child': 1.0, 'way': 1.0, 's': 1.0, 'teens': 1.0, 'have': 1.0, 'item': 1.0, 'must': 1.0, 'the': 4.0, 'are': 1.0, 'a': 2.0, 'is': 4.0, 'car': 2.0, 'third': 2.0, 'who': 1.0, 'tight': 1.0, 'neighbor': 1.0, 'for': 3.0, 'one': 1.0, 'we': 1.0, 'every': 1.0, 'purchase': 1.0, 'only': 1.0, 'this': 3.0, 'first': 1.0, 'two': 1.0, 'were': 1.0, 'our': 2.0, 'kids': 1.0, 'seat': 2.0, 'not': 1.0}
Word element => {'permanent': 1.0, 'leaving': 1.0, 'of': 1.0, 'say': 1.0, 'did': 1.0, 'safe': 1.0, 'bc': 1.0, 'center': 1.0, 'baby': 1.0, 'do': 1.0, 'and': 1.0, '1': 1.0, 'not': 1.0, 'seat': 5.0, 'around': 1.0, 'my': 3.0, 'put': 1.0, 'used': 1.0, 'in': 1.0, 'driving': 1.0, 'so': 1.0, 'correctly': 1.0, '3': 1.0, 'belt': 5.0, 'a': 1.0, 'where': 1.0, 'when': 1.0, 'buy': 1.0, 'i': 3.0, 'product': 2.0, 'fabric': 1.0, 'have': 1.0, 'been': 1.0, 'it': 2.0, 'this': 2.0, 'with': 1.0, 'more': 1.0, 'the': 4.0, 'damaged': 3.0, 't': 1.0, '2': 1.0, 'is': 3.0, 'comprised': 1.0, 'damage': 1.0, 'comprises': 1.0, 'can': 1.0}
Word element => {'grandbabies': 1.0, 'two': 1.0, 'secure': 2.0, 'car': 1.0, 'babies': 1.0, 'really': 1.0, 'around': 1.0, 'to': 1.0, 'my': 2.0, 'the': 1.0, 'more': 1.0, 'way': 1.0, 'a': 1.0, 'cars': 1.0, 'daughters': 1.0, 'finally': 2.0, 'found': 1.0, 'i': 1.0, 'seats': 1.0, 'feeling': 1.0, 'about': 1.0, 'driving': 1.0, 'with': 1.0, 'got': 1.0, 'for': 1.0}
Word element => {'latch': 1.0, 'have': 1.0, 't': 1.0, 'doesn': 1.0, 'that': 1.0, 'van': 1.0, 'locking': 1.0, 'm': 1.0, 'or': 1.0, 'i': 1.0, 'works': 1.0, 'easy': 1.0, 'pretty': 1.0, 'got': 1.0, 'childs': 1.0, 'tight': 1.0, 'older': 1.0, 'my': 2.0, 'seatbelts': 1.0, 'good': 1.0, 'seat': 1.0, 'in': 1.0, 'relatively': 1.0}
Word element => {'understand': 1.0, 'helps': 1.0, 'hope': 1.0, 'org': 1.0, 'kids': 1.0, 'through': 1.0, 'or': 1.0, 'need': 1.0, 'way': 1.0, 'belts': 1.0, 'projectile': 1.0, 'little': 1.0, 'nice': 1.0, 'become': 1.0, 'flying': 1.0, 'come': 1.0, 'on': 1.0, 'put': 1.0, 'fail': 1.0, 'seatbelt': 1.0, 'attached': 1.0, 'as': 1.0, 'check': 1.0, 'should': 1.0, 'but': 1.0, 'their': 2.0, 'ok': 1.0, 'by': 1.0, 'made': 1.0, 'now': 1.0, 'for': 2.0, 's': 2.0, 'testing': 2.0, 'have': 1.0, 'ad': 1.0, 'usa': 2.0, 'them': 3.0, 'official': 1.0, 'google': 1.0, 'tested': 1.0, 'type': 1.0, 'concerned': 1.0, 'that': 4.0, 'because': 1.0, 'itself': 1.0, 'not': 3.0, 'fact': 1.0, 'people': 1.0, 'crash': 2.0, 'lock': 1.0, 'are': 2.0, 'be': 2.0, 'to': 5.0, 'all': 1.0, 'aftermarket': 3.0, 'your': 5.0, 'any': 1.0, 'strain': 1.0, 'tight': 2.0, 'would': 2.0, 'seat': 5.0, 'in': 4.0, 'mighty': 2.0, 'also': 2.0, 'some': 3.0, 'product': 1.0, 'child': 1.0, 'products': 4.0, 'safe': 2.0, 'use': 4.0, 'i': 4.0, 'etc': 2.0, 'ask': 2.0, 'included': 1.0, 'so': 2.0, 'problem': 1.0, 'you': 7.0, 'things': 1.0, 'there': 1.0, 'what': 1.0, 'technician': 1.0, 'may': 1.0, 'me': 1.0, 'post': 1.0, 'actually': 1.0, 'provision': 1.0, 'canada': 2.0, 'car': 3.0, 'is': 4.0, 'say': 2.0, 'thought': 1.0, 'it': 6.0, 'find': 3.0, 'transport': 1.0, 'and': 8.0, 'listed': 1.0, 'nhtsa': 1.0, 'call': 1.0, 'they': 4.0, 'could': 1.0, 'will': 3.0, 'means': 1.0, 'don': 5.0, 'isn': 2.0, 'head': 1.0, 'added': 1.0, 'imagine': 1.0, 'a': 5.0, 'confusion': 1.0, 'government': 1.0, 'tell': 1.0, 'off': 1.0, 'seems': 1.0, 'organizations': 2.0, 'above': 1.0, 'vehicle': 4.0, 'who': 2.0, 'the': 9.0, 'of': 3.0, 'help': 1.0, 'restraints': 1.0, 'making': 1.0, 't': 7.0, 'legal': 1.0, 'responsible': 1.0, 'test': 2.0, 'why': 2.0, 'just': 1.0, 'seats': 2.0, 'vehicles': 1.0, 'if': 3.0, 'governing': 1.0, 'snuggle': 1.0, 'even': 1.0, 'manual': 1.0, 'dangers': 1.0, 'bundle': 1.0, 'with': 5.0, 'necessary': 1.0, 'manufacturer': 3.0, 'about': 1.0, 'this': 4.0}
Word element => {'belts': 1.0, 'airplane': 1.0, 'from': 1.0, 'dirt': 1.0, 'show': 1.0, 'doesn': 1.0, 'time': 1.0, 'like': 1.0, 'angle': 1.0, 'has': 1.0, 'easier': 2.0, 'an': 1.0, 'one': 1.0, 'on': 3.0, 'your': 5.0, 'weight': 2.0, 'strap': 1.0, 'you': 4.0, 'rxt': 1.0, 'folded': 1.0, 'traveling': 1.0, 'bear': 1.0, 'shoulder': 3.0, 'since': 2.0, 'a': 6.0, 'black': 1.0, 'there': 1.0, 'course': 1.0, 'are': 1.0, 'plus': 1.0, 'help': 2.0, 'sling': 1.0, 'up': 3.0, 'over': 2.0, 'child': 1.0, 'and': 5.0, 'very': 1.0, 'single': 1.0, 'have': 3.0, 't': 1.0, 'fit': 1.0, 'for': 2.0, 'car': 5.0, 'infant': 1.0, 'not': 2.0, 'to': 4.0, 'how': 1.0, 'our': 1.0, 'no': 1.0, 'some': 1.0, 'as': 1.0, 'heavy': 2.0, 'of': 2.0, 'the': 16.0, 'hands': 1.0, 'well': 2.0, 'i': 4.0, 'two': 1.0, 'does': 1.0, 'seat': 7.0, 'in': 3.0, 'fitted': 1.0, 'keep': 1.0, 'snugride': 1.0, 'it': 4.0, 'only': 2.0, 'end': 1.0, 'much': 1.0, 'do': 1.0, 'radian': 1.0, 'killing': 1.0, 'with': 2.0, 'good': 1.0, 'uness': 1.0, 'once': 1.0, 'room': 1.0, 'so': 7.0, 'know': 1.0, 'however': 1.0, 'at': 1.0, 'sits': 1.0, 'is': 4.0, 'handle': 1.0, 'back': 1.0, 'hold': 1.0, 'bag': 9.0, 'using': 1.0, 'straps': 2.0, 'hand': 1.0, 'onto': 1.0, 'both': 1.0, 'head': 1.0, 'we': 1.0, 'opposite': 1.0, 'then': 1.0, 'yet': 1.0, 'far': 2.0, 'neck': 1.0, 'this': 2.0, 'few': 1.0, 'minutes': 1.0, 'was': 3.0, 'had': 2.0, 'that': 2.0, 'graco': 1.0, 'holds': 1.0, 'carry': 1.0, 'although': 1.0, 'full': 1.0, 'were': 1.0, 'free': 1.0, 'used': 1.0}
Word element => {'one': 1.0, 'not': 1.0, 'flyers': 1.0, 'frequent': 1.0, 'out': 1.0, 'priced': 1.0, 'quality': 1.0, 'am': 2.0, 'pay': 1.0, 'mean': 1.0, 'recommend': 1.0, 'need': 1.0, 'checking': 1.0, 'be': 1.0, 'a': 6.0, 's': 1.0, 'made': 1.0, 'does': 1.0, 'destination': 1.0, 'what': 2.0, 'but': 3.0, 'of': 2.0, 'the': 3.0, 'gate': 3.0, 'higher': 2.0, 'checked': 2.0, 'would': 1.0, 'tight': 1.0, 'my': 1.0, 'into': 1.0, 'than': 1.0, 'particular': 1.0, 'our': 1.0, 'bags': 1.0, 'as': 2.0, 'get': 2.0, 't': 3.0, 'fit': 2.0, 'for': 5.0, 'instead': 1.0, 'there': 2.0, 'convertible': 1.0, 'round': 1.0, 'normal': 1.0, 'son': 1.0, 'baggage': 2.0, 'is': 2.0, 'around': 1.0, 'car': 1.0, 'more': 1.0, 'protect': 1.0, 'years': 1.0, 'bought': 1.0, 'decided': 1.0, 'we': 3.0, 'fine': 1.0, 'take': 1.0, 'i': 7.0, 'two': 1.0, 'are': 2.0, 'first': 1.0, 'recline': 1.0, 'it': 14.0, 'trufit': 1.0, 'check': 2.0, 'just': 3.0, 'this': 4.0, 'few': 2.0, 'bag': 4.0, 'using': 1.0, 'flight': 3.0, 'on': 3.0, 'make': 1.0, 'sure': 2.0, 'return': 1.0, 'can': 1.0, 'so': 2.0, 'to': 7.0, 'against': 1.0, 'however': 1.0, 'bit': 1.0, 'wouldn': 1.0, 'didn': 1.0, 'have': 1.0, 'airlines': 1.0, 'carry': 1.0, 'seat': 2.0, 'in': 2.0, 'airport': 1.0, 'flights': 1.0, 'trip': 1.0, 'and': 2.0, 'now': 1.0, 'them': 1.0, 'trips': 1.0, 'always': 1.0, 'has': 1.0, 'easier': 1.0, 'ripped': 1.0, 'rubbing': 1.0, 'holes': 1.0, 'they': 1.0, 'from': 1.0, 'appears': 1.0, 'something': 1.0, 'really': 1.0, 'mind': 1.0, 'spending': 1.0, 'that': 1.0, '20': 1.0, 'see': 1.0, 'items': 1.0, 'you': 4.0, 'quite': 1.0, 'if': 1.0}
Word element => {'waste': 1.0, 'is': 1.0, 'proves': 1.0, 'of': 1.0, 'buy': 1.0, 'pulling': 1.0, 'ease': 1.0, 'plastic': 1.0, 'apart': 2.0, 'pulled': 1.0, 'so': 1.0, 'few': 1.0, 'replacement': 1.0, 'own': 1.0, 'did': 1.0, 'my': 1.0, 'with': 1.0, 'it': 8.0, 'release': 2.0, 'this': 1.0, 'combination': 1.0, 'set': 1.0, 'there': 1.0, 'tested': 1.0, 'and': 3.0, 'i': 6.0, 'tried': 1.0, 'at': 1.0, 'bought': 1.0, 'open': 1.0, 'hours': 1.0, 'diano': 1.0, 'for': 1.0, 'no': 1.0, 'security': 1.0, 'park': 1.0, 'a': 4.0, 'theme': 1.0, 'send': 1.0, 'worked': 1.0, 'quickly': 1.0, 'arrived': 1.0, 'to': 4.0, 'do': 1.0, 'its': 1.0, 'was': 1.0, 'later': 1.0, 'unlock': 1.0, 'stuck': 1.0, 'the': 3.0, 'customer': 1.0, 'lock': 1.0, 'would': 1.0, 'offered': 1.0, 'not': 2.0, 'called': 1.0, 'service': 1.0, 'they': 1.0, 'but': 1.0, 'way': 1.0}
Word element => {'on': 1.0, 'and': 1.0, 'it': 3.0, 'perfect': 1.0, 'every': 1.0, 'worth': 1.0, 'kind': 1.0, 'to': 1.0, 'fit': 1.0, 'this': 1.0, 'item': 1.0, 'own': 1.0, 'make': 1.0, 'your': 1.0, 'of': 1.0, 'cup': 2.0, 'holder': 1.0}
Word element => {'in': 1.0, 'sized': 1.0, 'booster': 1.0, 'my': 1.0, 'squishy': 1.0, 'his': 1.0, 'loves': 2.0, 'here': 1.0, 'fit': 1.0, 'said': 1.0, 'uses': 1.0, 'on': 1.0, 'son': 1.0, 'and': 3.0, 'that': 2.0, 'can': 1.0, 'its': 1.0, 'he': 3.0, 'this': 1.0, 'it': 1.0, 'hard': 1.0, 'seat': 1.0, 'not': 1.0, 'so': 1.0, 'all': 1.0, 'different': 1.0}
Word element => {'in': 1.0, 'maybe': 1.0, 'idea': 1.0, 'good': 1.0, 'material': 1.0, 'be': 1.0, 'the': 1.0, 'cupscould': 1.0, 'go': 1.0, 'hot': 1.0, 'like': 1.0, 'and': 1.0, 'do': 1.0, 'going': 1.0, 'tag': 1.0, 'not': 2.0, 'sure': 1.0, 'hold': 1.0, 'a': 2.0, 'is': 2.0, 'you': 1.0, 'weak': 1.0, 'hard': 1.0, 'with': 2.0, 'it': 2.0, 'let': 1.0, 'once': 1.0, 'to': 4.0, 'came': 1.0, 'install': 1.0, 'liquids': 1.0, 'i': 2.0, 'use': 1.0, 'feel': 1.0, 'have': 1.0, 'shell': 1.0, 'make': 1.0}
Word element => {'section': 1.0, 'way': 1.0, 'there': 1.0, 'price': 1.0, 'spaces': 1.0, '3': 1.0, 'gain': 1.0, 'problem': 1.0, '2009': 1.0, 'adjust': 1.0, 'rav4': 1.0, 'not': 1.0, 'toyota': 1.0, 'in': 2.0, 'it': 2.0, 'unit': 3.0, 'wish': 1.0, 'this': 1.0, 'holders': 1.0, 'but': 1.0, 'will': 3.0, 'one': 3.0, 'liked': 1.0, 'two': 1.0, 'i': 6.0, 'goal': 1.0, 'much': 1.0, 'then': 1.0, 'concept': 1.0, 'cup': 5.0, 'fact': 1.0, 'my': 2.0, 'of': 3.0, 'confident': 1.0, 'use': 1.0, 'front': 1.0, 'a': 1.0, 'was': 2.0, 'to': 3.0, 'the': 10.0, 'snug': 1.0, 'have': 2.0, 'cram': 1.0, 'able': 1.0, 'encountered': 1.0, 'holder': 4.0, 'is': 2.0, 'too': 1.0, 'just': 1.0, 'by': 1.0, 'large': 1.0, 'very': 1.0, 'easily': 1.0, 'am': 1.0, 'be': 1.0, 'that': 1.0, 'into': 2.0, 'so': 2.0, 'for': 2.0, 'fit': 2.0}
Word element => {'usage': 1.0, 'every': 1.0, 'possible': 1.0, 'back': 1.0, 'seat': 1.0, 'keeping': 1.0, 'am': 1.0, 'tried': 1.0, 'using': 1.0, 'for': 2.0, 'in': 2.0, '2004': 1.0, 'day': 1.0, 'but': 1.0, 'just': 1.0, 'jeep': 1.0, 'grand': 1.0, 'emergency': 1.0, 'not': 2.0, 'was': 1.0, 'practical': 2.0, 'i': 1.0}
Word element => {'solved': 1.0, 'problem': 1.0, 'now': 1.0, 'all': 1.0, 'holders': 1.0, 'for': 1.0, 'had': 1.0, 'my': 1.0, 'their': 1.0, 'were': 1.0, 'fighting': 1.0, 'us': 1.0, 'one': 1.0, 'cup': 1.0, 'girls': 1.0, 'of': 1.0, 'only': 1.0, 'constantly': 1.0, 'as': 1.0, 'seats': 1.0}
Word element => {'to': 1.0, 'easy': 1.0, 'clean': 1.0, 'it': 1.0, 'great': 1.0}
Word element => {'don': 1.0, 'therefor': 1.0, 'and': 1.0, 'item': 1.0, 'it': 1.0, 'this': 1.0, 't': 2.0, 'the': 1.0, 'read': 1.0, 'i': 2.0, 'foam': 1.0, 'does': 1.0, 'is': 1.0, 'but': 1.0, 'didn': 1.0, 'idea': 1.0, 'nice': 1.0, 'made': 1.0, 'out': 1.0, 'of': 1.0, 'appear': 1.0, 'to': 1.0, 'be': 1.0, 'trust': 1.0, 'very': 1.0, 'description': 1.0, 'not': 1.0, 'strong': 1.0}
Word element => {'b': 1.0, 'heavy': 1.0, 'everything': 1.0, 'top': 1.0, 'enough': 1.0, 'tight': 1.0, 'buy': 1.0, 'i': 1.0, 'again': 1.0, 'drinks': 1.0, 'too': 1.0, 'c': 1.0, 'things': 1.0, 'hold': 1.0, 'shallow': 2.0, 'not': 2.0, 'its': 1.0, 'to': 2.0, 'bummed': 1.0, 'way': 1.0, 'is': 1.0, 'it': 2.0, 'this': 1.0, 'other': 1.0, 'use': 1.0, 'but': 1.0, 'fits': 1.0, 'sort': 1.0, 'as': 1.0, 'a': 1.0, 'drink': 1.0, 'nothing': 1.0, 'would': 1.0, 'holder': 1.0}
Word element => {'it': 1.0, 'firm': 1.0, 'thought': 1.0, 'well': 1.0, 'cups': 1.0, 'taller': 1.0, 'is': 1.0, 'a': 2.0, 'was': 1.0, 'hold': 1.0, 'not': 1.0, 'holder': 1.0, 'cup': 1.0, 'of': 2.0, 'soft': 1.0, 'the': 1.0, 'made': 2.0, 'rubber': 1.0, 'i': 1.0, 'does': 1.0, 'foam': 1.0}
Word element => {'and': 1.0, 'phone': 1.0, 'coffee': 1.0, 'water': 1.0, 'one': 3.0, 'i': 1.0, 'needed': 1.0, 'more': 1.0, 'my': 4.0, 'cup': 1.0, 'holders': 1.0, 'for': 3.0, 'in': 1.0, 'car': 1.0, 'this': 1.0, 'cell': 1.0, 'great': 1.0, 'works': 1.0}
Word element => {'to': 1.0, 'supposed': 1.0, 's': 1.0, 'of': 1.0, 'instead': 1.0, 'but': 1.0, 'than': 1.0, 'buckle': 1.0, 'on': 1.0, 'thingy': 1.0, 'a': 2.0, 'closes': 1.0, 'what': 1.0, 'does': 1.0, 'with': 1.0, 'velcro': 1.0, 'it': 3.0, 'that': 2.0, 'besides': 1.0, 'do': 1.0, 'and': 1.0, 'snap': 1.0, 'like': 1.0, 'skip': 1.0, 'my': 1.0, 'hop': 1.0, 'other': 2.0, 'changer': 1.0}
Word element => {'worth': 1.0, 'sure': 1.0, 'not': 1.0, 'good': 1.0, 'my': 1.0, 'take': 1.0, 'strolle': 1.0, 'is': 3.0, 'leave': 1.0, 'an': 1.0, 'finally': 1.0, 'extra': 1.0, 'i': 4.0, 'isn': 1.0, 'hang': 1.0, 'entire': 1.0, 'bought': 1.0, 'thin': 1.0, 'well': 1.0, 'stroller': 1.0, 'diaper': 1.0, 'great': 3.0, 'a': 3.0, 't': 1.0, 'the': 6.0, 'overall': 1.0, 'bodysuit': 1.0, 'it': 4.0, 'with': 1.0, 'quick': 1.0, 'whipes': 1.0, 'that': 2.0, 'changing': 3.0, 'bag': 3.0, 'station': 2.0, 'on': 1.0, 'put': 2.0, 'make': 1.0, 'as': 1.0, 'to': 1.0, 'any': 1.0, 'money': 1.0, 'but': 3.0, '2': 1.0, 'removable': 1.0, 'and': 4.0, 'mat': 1.0, 'just': 1.0, 'which': 1.0, 'table': 1.0, 'in': 1.0, 'design': 1.0, 'sites': 1.0, 'diapers': 1.0, 'differents': 1.0, 'once': 1.0, 'of': 1.0, 'works': 1.0, 'idea': 1.0, 'you': 1.0, 'when': 1.0, 'product': 1.0, 'for': 1.0}
Word element => {'station': 1.0, 'great': 1.0, 'serves': 1.0, 'is': 1.0, 'suv': 1.0, 'would': 1.0, 'way': 1.0, 'it': 3.0, 'this': 2.0, 'with': 1.0, 'the': 2.0, 'large': 1.0, 'enough': 1.0, 'close': 1.0, 'didn': 1.0, 'i': 4.0, 'really': 1.0, 'like': 1.0, 'now': 1.0, 'much': 1.0, 'pay': 1.0, 'changing': 1.0, 'into': 1.0, 'thought': 1.0, 'than': 1.0, 'but': 1.0, 'dimensions': 1.0, 'back': 1.0, 'wanted': 1.0, 'bag': 1.0, 'be': 1.0, 'no': 1.0, 'roo': 1.0, 'attention': 1.0, 'carry': 2.0, 'purses': 1.0, 'larger': 1.0, 'there': 2.0, 'of': 2.0, 'and': 1.0, 'them': 1.0, 'as': 1.0, 'to': 2.0, 'our': 1.0, 'any': 1.0, 'where': 1.0, 'for': 1.0, 'fits': 1.0, 'my': 1.0, 'other': 1.0, 'a': 1.0, 's': 2.0, 't': 1.0, 'we': 1.0, 'items': 1.0, 'in': 1.0}
Word element => {'color': 1.0, 'design': 1.0, 'i': 1.0, 'it': 1.0, 'just': 1.0, 'very': 1.0, 'and': 2.0, 'that': 1.0, 'is': 2.0, 'functional': 1.0, 'the': 2.0, 'useful': 1.0, 'compact': 1.0, 'bag': 1.0, 'loved': 2.0, 'attractive': 1.0}
Word element => {'all': 1.0, 'keeps': 1.0, 'container': 1.0, 'at': 1.0, 'things': 1.0, 'store': 1.0, 'has': 1.0, 'my': 1.0, 'happy': 2.0, 'wipe': 1.0, 'comes': 1.0, 'to': 2.0, 'was': 1.0, 'diaper': 1.0, 'the': 3.0, 'times': 1.0, 'present': 1.0, 'just': 1.0, 'as': 2.0, 'and': 3.0, 'baby': 1.0, 'product': 1.0, 'bought': 1.0, 'law': 1.0, 'a': 2.0, 'see': 1.0, 'that': 2.0, 'bag': 1.0, 'came': 1.0, 'sister': 1.0, 'with': 2.0, 'shower': 1.0, 'this': 1.0, 'it': 4.0, 'love': 1.0, 'is': 1.0, 'looks': 1.0, 'in': 4.0, 'picture': 1.0, 'pockets': 1.0, 'i': 1.0}
Word element => {'worked': 1.0, 'needed': 1.0, 'what': 1.0, 'bags': 1.0, 'or': 1.0, 'car': 1.0, 'keep': 1.0, 'thing': 1.0, 'handy': 1.0, 'be': 1.0, 'would': 1.0, 'off': 1.0, 'so': 2.0, 'strap': 2.0, 'wrist': 1.0, 'won': 1.0, 'has': 1.0, 'also': 1.0, 'rag': 1.0, 'burp': 1.0, 'and': 2.0, 'backup': 1.0, 'tube': 1.0, 'small': 2.0, 'with': 1.0, 'wipes': 1.0, 'whatever': 1.0, 'onto': 1.0, 'ton': 1.0, 'definitely': 1.0, 'person': 1.0, 'in': 5.0, 'design': 1.0, 'black': 1.0, 'the': 3.0, 'go': 1.0, 's': 2.0, 'a': 6.0, 't': 3.0, 'stroller': 1.0, 'diaper': 3.0, 'this': 1.0, 'first': 1.0, 'it': 9.0, 'comes': 1.0, 'is': 2.0, 'really': 2.0, 'fine': 1.0, 'want': 1.0, 'buckle': 1.0, 'pretty': 1.0, 'great': 1.0, 'bring': 1.0, 'cream': 1.0, 'my': 1.0, 'little': 1.0, 'diapers': 1.0, 'didn': 1.0, 'changer': 2.0, 'out': 2.0, 'of': 2.0, 'most': 1.0, 'can': 2.0, 'but': 2.0, 'your': 1.0, '3': 1.0, 'portable': 2.0, 'put': 1.0, 'love': 1.0, 'fit': 2.0, 'for': 3.0, 'not': 1.0, 'me': 1.0, 'case': 1.0, 'that': 4.0, 'i': 5.0, 'just': 2.0, 'all': 1.0, 'as': 2.0, 'to': 2.0, 'you': 4.0, 'times': 1.0, 'when': 1.0, 'cool': 2.0, 'entire': 1.0, 'nixon': 1.0, 'wanted': 1.0, 'bag': 1.0, 'maybe': 1.0, 'usually': 1.0}
Word element => {'girl': 1.0, 'now': 1.0, 'on': 1.0, 'love': 1.0, 'changing': 1.0, 'it': 1.0, 'this': 1.0, 'nephew': 1.0, 'little': 1.0, 'that': 1.0, 'their': 1.0, 'and': 1.0, 'neice': 1.0, 'my': 1.0, 'the': 1.0, 'shopping': 1.0, 'has': 1.0, 'makes': 1.0, 'nice': 1.0, 'when': 1.0, 'or': 1.0, 'road': 1.0, 'arrived': 1.0, 'out': 1.0}
Word element => {'own': 1.0, 'style': 1.0, 'skip': 2.0, 'big': 1.0, 'alder': 1.0, 'they': 1.0, 'hop': 2.0, 'tell': 1.0, 'sure': 1.0, 'store': 1.0, 'haven': 1.0, 'bought': 1.0, 'numerous': 1.0, 'amazon': 1.0, 'been': 1.0, 'space': 1.0, 'extra': 1.0, 'never': 1.0, 'some': 1.0, 'with': 2.0, 'hold': 1.0, 'nearly': 1.0, 'do': 2.0, 'mean': 1.0, 'ect': 1.0, 'suncreen': 1.0, 'snacks': 1.0, 'lots': 1.0, 'sanitizer': 1.0, 'hand': 1.0, 'where': 1.0, 're': 1.0, 'phone': 1.0, 'box': 1.0, 'cell': 1.0, 'keys': 1.0, 'wallet': 1.0, 'be': 3.0, 'times': 1.0, 'critical': 1.0, 'number': 1.0, 'old': 1.0, 'type': 1.0, 'am': 1.0, 'twins': 3.0, 'perfect': 1.0, 'necessary': 1.0, 'any': 1.0, 'mom': 3.0, 'design': 1.0, 'important': 1.0, 'but': 4.0, 'favorite': 1.0, 'change': 1.0, 'huge': 1.0, 'not': 6.0, 'those': 1.0, 'needs': 3.0, 'ask': 1.0, 'can': 1.0, 'glasses': 1.0, 'so': 4.0, 'spaces': 1.0, 'ointments': 1.0, 'our': 1.0, 'pretty': 1.0, 'to': 8.0, 'very': 1.0, 'day': 1.0, 'use': 1.0, 'really': 2.0, 'other': 1.0, 'ever': 1.0, 'all': 3.0, 'fits': 1.0, 'my': 3.0, 'may': 1.0, 'have': 6.0, 'bottles': 1.0, 'keep': 1.0, 'small': 1.0, 'a': 11.0, 's': 4.0, 'might': 2.0, 'for': 1.0, 'love': 2.0, 'significant': 1.0, 't': 2.0, 'fit': 1.0, 'cant': 1.0, 'this': 7.0, 'month': 1.0, 'bag': 7.0, 'of': 7.0, 'the': 7.0, 'carries': 1.0, 'need': 2.0, 'possibly': 1.0, 'bags': 3.0, 'as': 1.0, 'diaper': 3.0, 'retail': 1.0, 'complimented': 1.0, 'i': 20.0, 'jonathan': 1.0, 'two': 3.0, 'and': 4.0, 'pattern': 1.0, 'one': 3.0, 'lot': 2.0, 'too': 1.0, 'patterns': 1.0, 'at': 1.0, 'is': 4.0, 'you': 4.0, 'able': 1.0, 'things': 4.0, 'carry': 5.0, 'on': 3.0, 'amount': 1.0, 'items': 1.0, 'also': 1.0, 'don': 1.0, 'want': 1.0, 'everything': 2.0, 'every': 1.0, 'if': 3.0, 'giant': 1.0, 'reasonable': 1.0, 'size': 2.0, 'bill': 1.0, 'points': 1.0, 'in': 7.0, 'm': 2.0, 'stuff': 1.0, 'just': 3.0, 'either': 1.0, 'thing': 1.0, 'people': 1.0, 'mind': 1.0, 'because': 1.0, 'that': 4.0, 'stores': 2.0, 'seen': 3.0, 'case': 1.0, 'them': 2.0, 'always': 1.0, 'has': 1.0, 'bring': 1.0, 'diapers': 1.0, 'are': 1.0, 'consider': 1.0, 'larger': 1.0, 'it': 11.0, '9': 1.0, 'outfit': 1.0, 'baby': 1.0, 'crapload': 1.0, 'large': 1.0, 'wipes': 1.0}
Word element => {'clean': 1.0, 'wipes': 1.0, 'to': 5.0, 'least': 1.0, 'bag': 4.0, 'simple': 1.0, 'reviewers': 1.0, 'some': 1.0, 'roll': 1.0, 'much': 1.0, 'only': 1.0, 'however': 1.0, 'easily': 1.0, 'that': 2.0, 'because': 1.0, 'having': 1.0, 'not': 1.0, 'dash': 1.0, 'i': 4.0, 'cups': 1.0, '4': 1.0, 'decided': 1.0, 'it': 2.0, 'this': 4.0, 'may': 1.0, 'my': 3.0, 'one': 3.0, 'lot': 1.0, 'skip': 3.0, 'redesign': 1.0, 'and': 4.0, 'rather': 1.0, 'like': 2.0, 'more': 2.0, 'at': 1.0, 'is': 4.0, 'of': 5.0, 'the': 9.0, 'a': 7.0, 'whom': 1.0, 's': 2.0, 'regular': 1.0, 'in': 2.0, 'durable': 1.0, 'second': 1.0, 'difference': 1.0, 'on': 2.0, 'stuff': 3.0, 'your': 1.0, 'make': 2.0, 'fabric': 1.0, 'for': 6.0, 'needed': 1.0, 'newborn': 3.0, 'you': 2.0, 'mentioned': 1.0, 'folded': 1.0, 'than': 3.0, 'way': 1.0, 'other': 2.0, 'design': 1.0, 'hop': 3.0, 'bigger': 3.0, 'if': 1.0, 'are': 2.0, 'cute': 1.0, 'ended': 1.0, 'toddler': 1.0, 'but': 1.0, 'most': 1.0, 'carry': 1.0, 'cloth': 1.0, 'last': 1.0, 'depth': 2.0, 'little': 2.0, 'over': 1.0, 'so': 1.0, 'have': 1.0, 'baby': 1.0, 'clothes': 1.0, 'up': 1.0, 'sippy': 1.0, 'down': 1.0, 'outer': 1.0, 'love': 1.0, 'fold': 1.0, 'squeeze': 1.0, 'items': 1.0, 'these': 1.0, 'room': 1.0, 'bags': 1.0, '6': 1.0, 'will': 1.0, 'there': 1.0, 'pockets': 2.0, 'which': 1.0, 'side': 1.0, 'wide': 1.0, 'enough': 1.0, 'bottles': 1.0, 'need': 1.0, 'world': 1.0, 'or': 1.0}
Word element => {'aren': 1.0, 'filled': 1.0, 'huge': 1.0, 'something': 1.0, 'isn': 1.0, 'trip': 1.0, 'overnight': 1.0, 'or': 1.0, 'bulk': 1.0, 'looking': 1.0, 'you': 5.0, 'stuff': 1.0, 'your': 1.0, 'fits': 1.0, 'anymore': 1.0, 'don': 1.0, 'mom': 1.0, 'so': 1.0, 'time': 1.0, 'second': 1.0, 'love': 1.0, 'for': 4.0, 'diaper': 1.0, 'practical': 1.0, 'stroller': 1.0, 'back': 1.0, 'use': 4.0, 'easy': 2.0, 'of': 3.0, 'than': 1.0, 'find': 1.0, 'because': 1.0, 'if': 2.0, 'hop': 1.0, 'viewed': 1.0, 'overpack': 2.0, 'other': 1.0, 'clips': 1.0, 'short': 1.0, 'bag': 7.0, 'more': 1.0, 'is': 2.0, 'comfortably': 1.0, 'well': 1.0, 'see': 1.0, 'without': 1.0, 'the': 4.0, 'very': 1.0, 'all': 1.0, 'to': 4.0, 'as': 3.0, 'i': 4.0, 'with': 1.0, 'hip': 1.0, 'always': 1.0, 'durability': 1.0, 'small': 1.0, 'reported': 1.0, 'come': 1.0, 'however': 1.0, 'their': 1.0, 'ant': 1.0, 'bags': 1.0, 'going': 1.0, 'necessities': 1.0, 't': 3.0, 'a': 4.0, 'could': 1.0, 'be': 1.0, 'by': 1.0, 'and': 5.0, 'too': 1.0, 'm': 1.0, 'some': 1.0, 'are': 1.0, 'reviewers': 1.0, 'made': 1.0, 'hacpve': 1.0, 'this': 6.0, 'perfect': 1.0, 'skip': 1.0, 'size': 1.0, 'carry': 1.0, 'practicality': 1.0, 'everyday': 1.0}
Word element => {'important': 1.0, 'there': 1.0, 'that': 1.0, 's': 1.0, 'closing': 1.0, 'magnet': 1.0, 'little': 1.0, 'times': 1.0, 'and': 2.0, 'nice': 1.0, 'need': 1.0, 'keep': 1.0, 'main': 1.0, 'it': 1.0, 'only': 1.0, 'with': 1.0, 'hard': 1.0, 'this': 1.0, 'fit': 1.0, 'zipping': 1.0, 'a': 2.0, 'is': 3.0, 'the': 3.0, 'diaper': 1.0, 'also': 1.0, 'in': 2.0, 'things': 1.0, 'at': 1.0, 'to': 3.0, 'small': 1.0, 'everything': 1.0, 'pockets': 1.0, 'i': 2.0, 'easy': 1.0, 'pocket': 1.0, 'like': 1.0, 'access': 1.0, 'bag': 1.0, 'outer': 1.0}
Word element => {'playground': 1.0, 'at': 1.0, 'out': 1.0, 'stand': 1.0, 'definitely': 1.0, 'find': 1.0, 'thing': 1.0, 'dump': 1.0, 'just': 1.0, 'can': 1.0, 'in': 2.0, 'old': 2.0, 'colorful': 1.0, 'month': 1.0, 'has': 1.0, 'hop': 1.0, '6': 1.0, 'collaboration': 1.0, 'easy': 1.0, 'lifesaver': 1.0, 'design': 1.0, 'go': 1.0, 'a': 3.0, 'marriage': 1.0, 'see': 1.0, 'what': 2.0, 'i': 4.0, 'closure': 1.0, 'love': 1.0, 'skip': 1.0, 'whistles': 1.0, 'highly': 1.0, 'and': 5.0, 'johnathan': 1.0, 'clips': 1.0, '3': 1.0, 'on': 1.0, 'so': 1.0, 'secret': 1.0, 'was': 1.0, 'tow': 1.0, 'all': 1.0, 'to': 1.0, 'bag': 2.0, 'bells': 1.0, 'perfect': 2.0, 'functional': 1.0, 'adler': 1.0, 'this': 4.0, 'excited': 1.0, 'the': 5.0, 'adjustable': 1.0, 'an': 1.0, 'stroller': 1.0, 'year': 1.0, 'awesome': 1.0, 'pad': 1.0, 'with': 4.0, 'endlessly': 1.0, 'will': 1.0, 'magnetic': 1.0, 'you': 2.0, 'when': 1.0, 'is': 2.0, 'packed': 1.0, 'bucket': 1.0, 'strap': 1.0, 'useful': 1.0, 'are': 1.0}
Word element => {'is': 1.0, 'changing': 1.0, 'as': 2.0, 'other': 1.0, 'for': 2.0, 'need': 1.0, 'items': 1.0, 'everything': 1.0, 'i': 2.0, 'to': 2.0, 'able': 1.0, 'm': 1.0, 'compartments': 1.0, 'bag': 1.0, 'included': 1.0, 'fit': 1.0, 'baby': 1.0, 'few': 1.0, 'the': 1.0, 'great': 2.0, 'are': 1.0, 'my': 1.0, 'also': 1.0, 'plenty': 1.0, 'there': 1.0, 'of': 1.0, 'and': 1.0, 'me': 1.0, 'pad': 1.0, 'wallet': 1.0, 'well': 2.0, 'a': 1.0}
Word element => {'later': 1.0, 'still': 1.0, 'since': 1.0, 'assuming': 1.0, 'of': 2.0, 'clean': 1.0, 'good': 1.0, 'holds': 1.0, 'styles': 1.0, 'has': 1.0, 'everyday': 1.0, 'i': 4.0, 'pockets': 1.0, 'durable': 1.0, 'this': 1.0, 'new': 1.0, 've': 1.0, 'bold': 1.0, 'year': 2.0, 'very': 1.0, 'big': 1.0, 'had': 1.0, 'now': 1.0, 'amount': 1.0, 'phones': 1.0, 'snacks': 1.0, 'for': 2.0, 'a': 4.0, 'dirt': 1.0, 'like': 1.0, 'pocket': 1.0, 'perfectly': 1.0, 'it': 4.0, 'looks': 2.0, 'stuff': 1.0, 'the': 4.0, 'cell': 1.0, 'use': 2.0, 'phone': 1.0, 'm': 1.0, 'that': 1.0, 'larger': 1.0, 'and': 3.0, 'pattern': 1.0, 'diaper': 1.0, 'stroller': 1.0, 'work': 1.0, 'straps': 1.0, 'hides': 1.0, 'all': 1.0, 'any': 1.0}
Word element => {'better': 1.0, 'been': 1.0, 'would': 1.0, 'i': 1.0, 'velcro': 1.0, 'try': 1.0, 'jammed': 1.0, 'uncomfortable': 1.0, 'had': 2.0, 'enough': 1.0, 'painful': 1.0, 'long': 1.0, 'his': 1.0, 'not': 1.0, 'is': 1.0, 'did': 1.0, 'if': 1.0, 'child': 1.0, 'have': 2.0, 'able': 1.0, 'neck': 1.0, 'in': 1.0, 'seemed': 2.0, 'fit': 1.0, 'for': 2.0, 'they': 4.0, 'were': 1.0, 'and': 2.0, 'area': 1.0, 'get': 1.0, 'very': 2.0, 'adjustable': 1.0, 'to': 6.0, 'our': 1.0, 'as': 1.0, 'sleep': 1.0, 'fun': 1.0, 'finally': 1.0, 'be': 1.0, 'him': 3.0, 'took': 1.0, 'nfc': 1.0, 'lot': 1.0, 'believe': 1.0, 'the': 2.0, 'job': 1.0, 'championship': 1.0, 'we': 1.0, 'a': 2.0, 'once': 1.0, 'of': 1.0, 'it': 1.0, 'just': 1.0, 'large': 1.0}
Word element => {'away': 1.0, '20ft': 1.0, 'even': 1.0, 'off': 1.0, 'she': 1.0, 'slept': 1.0, 'through': 1.0, 'my': 1.0, 'the': 1.0, 'a': 1.0, 'them': 1.0, 'fireworks': 1.0, 'husband': 1.0, 'when': 1.0, 'not': 1.0, 'was': 1.0, 'lighting': 1.0}
Word element => {'designed': 1.0, 'were': 1.0, 'cups': 1.0, 'ear': 1.0, 'vision': 1.0, 's': 1.0, 'baby': 1.0, 't': 1.0, 'have': 1.0, 'interferes': 1.0, 'didn': 1.0, 'material': 1.0, 'because': 1.0, 'not': 2.0, 'idea': 1.0, '18': 1.0, 'six': 1.0, 'old': 2.0, 'week': 1.0, 'elastic': 1.0, 'an': 1.0, 'fit': 2.0, 'enough': 1.0, 'a': 1.0, 'correctly': 1.0, 'so': 1.0, 'no': 1.0, 'how': 1.0, 'with': 1.0, 'it': 1.0, 'month': 1.0, 'could': 1.0, 'strap': 1.0}
Word element => {'her': 1.0, 'protect': 1.0, 'child': 1.0, 'thanks': 1.0, 'knowing': 1.0, 'and': 2.0, 'when': 1.0, 'went': 1.0, 'handy': 1.0, 'ears': 1.0, 'priceless': 1.0, 'in': 1.0, 'very': 1.0, 'day': 1.0, 'impromptu': 1.0, 'had': 1.0, 'was': 1.0, 'to': 2.0, 'music': 1.0, 'came': 1.0, 'we': 1.0, 'something': 1.0, 'that': 1.0, 'our': 2.0, 'live': 1.0, 'event': 1.0, 'saved': 1.0, 'really': 1.0, 'of': 1.0, 'these': 1.0, 'the': 1.0, 'outdoor': 1.0, 'piece': 1.0, 'mind': 1.0}
Word element => {'love': 1.0, 'kept': 1.0, 'fact': 1.0, 'due': 1.0, 'is': 1.0, 'otherwise': 1.0, 'stars': 1.0, '5': 1.0, 'them': 2.0, 'game': 1.0, 'to': 2.0, 'exactly': 1.0, 'month': 1.0, 'that': 1.0, 'were': 1.0, 'our': 1.0, 'slipping': 1.0, 'they': 1.0, 'football': 1.0, 'her': 1.0, 'down': 1.0, 'what': 1.0, 'a': 1.0, 'over': 1.0, '4': 1.0, 'old': 1.0, 'took': 1.0, 'i': 1.0, 'eyes': 1.0, 'we': 3.0, 'college': 1.0, 'reason': 1.0, 'giving': 1.0, 'and': 1.0, 'only': 1.0, 'needed': 1.0, 'these': 1.0, 'the': 2.0, 'm': 1.0, 'not': 1.0}
Word element => {'again': 1.0, 'look': 1.0, 'child': 1.0, 'a': 1.0, 'they': 2.0, 'ears': 1.0, 'plus': 1.0, 'up': 1.0, 'and': 1.0, 'around': 1.0, 'would': 3.0, 'did': 1.0, 'better': 1.0, 'move': 1.0, 'if': 1.0, 'but': 1.0, 'work': 2.0, 'not': 2.0, 'only': 1.0, 'nursing': 1.0, 's': 1.0, 'muffs': 2.0, 'or': 1.0, 'head': 1.0, 'buy': 1.0, 'six': 1.0, 'old': 1.0, 'his': 1.0, 'scrunch': 1.0, 'does': 1.0, 'ear': 2.0, 'the': 3.0, 'my': 1.0, 'perhaps': 1.0, 'baby': 1.0, 'rest': 1.0, 'cute': 1.0, 'holding': 1.0, 'on': 2.0, 'anything': 1.0, 'very': 1.0, 'son': 1.0, 'while': 1.0, 'three': 1.0, 'month': 2.0}
Word element => {'can': 1.0, 'they': 1.0, 'frustrating': 1.0, 'very': 1.0, 'be': 1.0, 'on': 1.0, 'to': 1.0, 'reduce': 1.0, 'down': 1.0, 'fidgety': 1.0, 'i': 1.0, 'or': 1.0, 'baby': 1.0, 'slide': 1.0, 'noise': 1.0, 'will': 1.0, 'put': 1.0, 'and': 1.0, 'me': 1.0, 'do': 2.0, 'buds': 2.0, 'levels': 1.0, 'verify': 1.0, 'a': 1.0, 'this': 1.0, 'have': 1.0, 'if': 1.0, 'you': 1.0, 'fussy': 1.0, 'the': 3.0, 'these': 1.0}
Word element => {'parents': 1.0, 'important': 1.0, 'wish': 1.0, 'this': 1.0, 'making': 1.0, 'gets': 1.0, 'wears': 1.0, 'but': 1.0, 'removed': 1.0, 'they': 1.0, 'thanks': 1.0, 'when': 1.0, 'back': 1.0, 'come': 1.0, 'will': 1.0, 'goers': 1.0, 'have': 1.0, 'were': 1.0, 'babies': 1.0, 'that': 1.0, 'damaging': 1.0, 'so': 1.0, 'concert': 2.0, 'of': 2.0, 'hearing': 3.0, 'understand': 1.0, 'possibility': 1.0, 'about': 1.0, 'concerned': 1.0, 'them': 4.0, 'wanted': 1.0, 'husband': 1.0, 'had': 1.0, 'and': 2.0, 'the': 5.0, 'these': 1.0, 'would': 1.0, 'new': 1.0, 'biggest': 1.0, 'are': 3.0, 'to': 1.0, 'our': 1.0, 'shooters': 1.0, 'i': 2.0, 'used': 1.0, 'avid': 1.0, 'going': 1.0, 't': 2.0, 'we': 3.0, 'protection': 1.0, 'product': 1.0, 'for': 2.0, 'him': 1.0, 'problem': 1.0, 'more': 3.0, 'is': 1.0, 'course': 1.0, 'he': 4.0, 'loud': 1.0, 'doesn': 2.0, 'like': 1.0, 'great': 1.0, 'until': 1.0, 'noise': 1.0, 'my': 1.0, 'starts': 1.0, 'because': 1.0, 'his': 1.0}
Word element => {'photos': 1.0, 'crowds': 1.0, 'charm': 1.0, 'like': 1.0, 'hair': 1.0, 'in': 1.0, 'they': 1.0, 'forehead': 1.0, 'neck': 1.0, 'very': 2.0, 'strap': 1.0, 'back': 1.0, 'issues': 1.0, 'no': 1.0, 'with': 1.0, 'hours': 1.0, 'he': 1.0, 'spot': 1.0, 'got': 1.0, 'try': 1.0, 'only': 1.0, 'and': 3.0, 'the': 3.0, 'high': 1.0, 'low': 1.0, 'isolated': 1.0, 'made': 1.0, 'junni': 1.0, 'vendor': 2.0, 'wearing': 1.0, 'seeing': 1.0, 'from': 1.0, 'orders': 1.0, 'day': 1.0, 'buy': 1.0, 'old': 1.0, 'tries': 1.0, 'we': 1.0, 'a': 5.0, 'love': 2.0, 'for': 2.0, 'sweet': 1.0, '9': 1.0, 'them': 4.0, 'wore': 2.0, 'month': 1.0, 'band': 1.0, 'i': 1.0, 'prior': 1.0, 'hundreds': 1.0, '5': 1.0, 'festival': 1.0, 'was': 2.0, 'to': 2.0, 'last': 1.0, 'used': 1.0, 'his': 1.0, 'your': 1.0, 'on': 3.0, 'front': 1.0, 'amazon': 1.0, 'took': 1.0, 'order': 1.0, 'kids': 1.0, 'found': 1.0, 'this': 1.0, 'perfect': 1.0, 'by': 1.0, 'junnii': 1.0, 'few': 1.0, 'find': 1.0, 'location': 1.0, 'head': 1.0, 'work': 1.0, '2': 1.0, 'but': 1.0, 'of': 2.0, 'stable': 1.0, 'once': 1.0}
Word element => {'s': 1.0, 'took': 1.0, 'blocked': 1.0, 'off': 1.0, 'kept': 1.0, 'my': 2.0, 'the': 1.0, 'great': 1.0, 'him': 1.0, 'all': 1.0, 'son': 2.0, 'worked': 1.0, 'head': 1.0, 'asleep': 1.0, 'to': 3.0, 'but': 1.0, 'an': 1.0, 'slipping': 1.0, 'they': 2.0, 'during': 1.0, 'fall': 1.0, 'we': 1.0, 'nfl': 1.0, 'enough': 1.0, 'sound': 1.0, 'game': 2.0, 'and': 1.0}
Word element => {'them': 1.0, 'with': 1.0, 'lots': 1.0, 'have': 1.0, 'already': 1.0, 'we': 1.0, 'these': 1.0, 'baby': 1.0, 'taken': 1.0, 'and': 1.0, 'of': 1.0, 'earmuffs': 1.0, 'pictures': 1.0, 'cute': 1.0, 'are': 1.0, 'so': 1.0, 'work': 1.0, 'to': 1.0, 'seem': 1.0, 'well': 1.0}
Word element => {'press': 1.0, 'or': 1.0, 'head': 1.0, 'won': 1.0, 'took': 1.0, 'old': 1.0, 'sound': 1.0, 'adjustable': 1.0, 'ears': 2.0, 'work': 1.0, 'also': 1.0, 'will': 1.0, 'track': 1.0, 'his': 2.0, 'on': 3.0, 'i': 1.0, '4': 1.0, 'keep': 3.0, 'spot': 1.0, 'great': 2.0, 'these': 1.0, 'they': 4.0, 'soft': 1.0, 'this': 1.0, 'only': 2.0, 'he': 1.0, 'velcro': 1.0, 'to': 2.0, 'the': 5.0, 'asleep': 1.0, 'are': 2.0, 'love': 1.0, 'product': 1.0, 'actually': 1.0, 'my': 3.0, 'squish': 1.0, 'baby': 2.0, 'muffs': 2.0, 's': 1.0, 't': 1.0, 'a': 1.0, 'dirt': 1.0, 'sprint': 1.0, 'and': 2.0, 'week': 1.0, 'car': 1.0, 'out': 1.0, 'race': 1.0, 'were': 1.0, 'would': 1.0, 'ear': 2.0, 'because': 1.0, 'have': 1.0, 'so': 1.0, 'size': 1.0, 'fall': 1.0, 'is': 1.0}
Word element => {'ears': 1.0, 'loosening': 1.0, 'which': 1.0, 'his': 2.0, 'make': 1.0, 'squiggled': 1.0, 'is': 1.0, 'him': 1.0, 'bother': 1.0, 'goal': 1.0, 'even': 1.0, 'he': 2.0, 'games': 1.0, 'time': 1.0, 'hockey': 1.0, 'son': 1.0, 'old': 1.0, 'can': 1.0, '2': 1.0, 'purchased': 1.0, 'use': 1.0, 'band': 1.0, 'it': 1.0, 'month': 1.0, 'eardrums': 1.0, 'end': 1.0, 'only': 1.0, 'horn': 1.0, 'do': 2.0, 'from': 1.0, 'out': 1.0, 'the': 8.0, 'loud': 1.0, 'with': 1.0, 'at': 1.0, 'keep': 1.0, 'pretty': 1.0, 'if': 1.0, 'really': 1.0, 'clunky': 1.0, 'little': 1.0, 'baby': 1.0, 'setup': 1.0, 'great': 1.0, 'nice': 1.0, 'tend': 1.0, 'for': 2.0, 'one': 2.0, 'away': 1.0, 'headphones': 2.0, 'we': 2.0, 's': 2.0, 'a': 2.0, 'notices': 1.0, 'not': 1.0, 'and': 4.0, 'too': 1.0, 'any': 1.0, 'our': 1.0, 'noises': 1.0, 'to': 3.0, 'however': 1.0, 'forehead': 1.0, 'they': 1.0, 'wiggly': 1.0, 'slip': 2.0, 'enough': 1.0, 'off': 1.0, 'pair': 1.0, 'of': 2.0, 'their': 2.0, 'up': 1.0, 'developing': 1.0, 'over': 3.0, 'grip': 1.0, 'soft': 1.0, 'eyes': 2.0, 'when': 1.0, 'barely': 1.0, 'you': 1.0, 'headband': 1.0, 'easily': 1.0, 'longer': 1.0, 'down': 3.0, 'especially': 1.0, 'have': 1.0}
Word element => {'which': 1.0, 'their': 1.0, 'strap': 1.0, 'earpieces': 1.0, 'it': 1.0, 'sense': 2.0, 'so': 1.0, 'what': 1.0, 'except': 1.0, 'work': 1.0, 'great': 1.0, 'the': 3.0, 'all': 2.0, 'off': 1.0, 'makes': 2.0, 'ever': 1.0, 'they': 1.0, 'time': 1.0, 'velcroing': 1.0, 'forehead': 1.0, 'and': 1.0, 'like': 1.0, 's': 1.0, 'no': 2.0, 'things': 1.0, 'across': 1.0}
Word element => {'younger': 1.0, 'suited': 1.0, 'well': 1.0, 'comfortable': 1.0, 'very': 1.0, 'in': 1.0, 'stay': 1.0, 'they': 1.0, 'old': 1.0, 'earmuffs': 1.0, 'initial': 1.0, 'for': 2.0, 'month': 1.0, 'returned': 1.0, 'way': 2.0, 'babies': 1.0, 'that': 1.0, 'these': 2.0, 'were': 1.0, 'returning': 1.0, 'protector': 1.0, 'hearing': 1.0, 'headband': 1.0, 'after': 1.0, 'of': 1.0, 'banz': 2.0, 'bought': 2.0, 'uncomfortable': 1.0, '3': 1.0, 'soft': 1.0, 'adjustable': 1.0, 'secured': 1.0, 'instead': 1.0, 'too': 1.0, 'and': 3.0, 'with': 2.0, 'no': 1.0, 'our': 2.0, 'to': 1.0, 'extremely': 1.0, 'adjust': 1.0, 'tension': 1.0, 'em': 1.0, 'baby': 2.0, 'them': 1.0, '4': 1.0, 'tight': 1.0, 'purchase': 1.0, 'bubs': 1.0, 'which': 1.0, 'are': 2.0, 's': 1.0, 'we': 2.0, 'a': 1.0, 'place': 1.0, 'the': 2.0, 'stretchy': 1.0, 'is': 1.0}
Word element => {'them': 1.0, 'liked': 1.0, 'also': 1.0, 'type': 1.0, 'fan': 1.0, 'was': 1.0, 'all': 1.0, 'bought': 1.0, 'be': 1.0, 'proved': 1.0, 'much': 1.0, 'i': 2.0, 'thought': 1.0, 'that': 1.0, 'traditional': 1.0, 'more': 1.0, 'great': 1.0, 'the': 3.0, 'my': 1.0, 'headbands': 1.0, 'not': 2.0, 'so': 1.0, 'headband': 1.0, 'baby': 1.0, 'wears': 1.0, 'solution': 1.0, 'might': 1.0, 'she': 2.0, 'and': 3.0, 'a': 2.0, 'hats': 1.0, 'time': 1.0}
Word element => {'see': 1.0, 'll': 1.0, 'newborn': 1.0, 'really': 1.0, 'of': 1.0, 'carrier': 1.0, 'have': 1.0, 'wide': 1.0, 'will': 2.0, 'also': 1.0, 'these': 1.0, 'rides': 1.0, 'ears': 1.0, 'perpendicular': 1.0, 'not': 1.0, 'is': 2.0, 'an': 1.0, 'clip': 1.0, 'design': 1.0, 'forehead': 1.0, 'they': 2.0, 'make': 1.0, 'on': 2.0, 'think': 1.0, 'know': 1.0, 'which': 2.0, 'her': 3.0, 'elastic': 1.0, 'understandably': 1.0, 'electronic': 1.0, 'local': 1.0, 'angle': 1.0, 'well': 1.0, 'hard': 1.0, 'part': 1.0, 'slide': 1.0, 'while': 2.0, '5': 1.0, 'baby': 1.0, 'them': 3.0, 'should': 1.0, 'wear': 1.0, 'so': 2.0, 'parts': 1.0, 'made': 1.0, 'home': 1.0, 'she': 2.0, 'effectively': 1.0, 'hope': 1.0, 't': 1.0, 'a': 2.0, 'go': 1.0, 'we': 4.0, 'bought': 1.0, 'eyes': 1.0, 'this': 1.0, 'week': 1.0, 'work': 1.0, 'but': 1.0, 'old': 1.0, 'i': 3.0, 'for': 2.0, 'daughter': 1.0, 'm': 1.0, 'in': 2.0, 'would': 1.0, 've': 1.0, 'don': 1.0, 'over': 1.0, 'sound': 1.0, 'any': 1.0, 'to': 3.0, 'dance': 1.0, 'trying': 1.0, 'my': 1.0, 'the': 9.0, 'discouraged': 1.0, 'that': 3.0, 'been': 1.0, 'very': 1.0, 'little': 1.0, 'annoys': 1.0, 'at': 2.0, 'events': 1.0, 'far': 1.0, 'does': 1.0, 'ear': 1.0, 'covering': 1.0, 'strap': 1.0, 'are': 2.0, 'and': 3.0, 'block': 1.0}
Word element => {'from': 1.0, 'heat': 1.0, 'got': 1.0, 'a': 1.0, 'not': 1.0, 'forehead': 1.0, 'and': 2.0, 'hot': 1.0, 'keep': 1.0, 'can': 1.0, 'it': 1.0, 'headband': 1.0, 'them': 2.0, 'out': 1.0, 'when': 2.0, 'work': 1.0, 'great': 1.0, 'the': 1.0, 'they': 1.0, 'fan': 1.0, 'is': 2.0, 'sliding': 1.0, 'rash': 1.0, 'up': 1.0, 'always': 1.0, 'her': 2.0, 'on': 1.0, 'over': 1.0, 'eyes': 1.0, 'you': 1.0, 's': 1.0, 'she': 1.0}
Word element => {'on': 1.0, 'my': 1.0, 'big': 1.0, 'baby': 1.0, 'she': 1.0, 'every': 1.0, 'and': 1.0, 'great': 1.0, 'idea': 1.0, 'for': 1.0, 'well': 1.0, 'fit': 1.0, 'cool': 1.0, 'hates': 1.0, 'to': 1.0, 'however': 1.0, 'small': 1.0, 'wear': 1.0, 'cries': 1.0, 'child': 1.0, 'them': 2.0, 'time': 1.0, 'i': 1.0, 'put': 1.0}
Word element => {'recommend': 1.0, 'would': 1.0, 'liked': 1.0, 'highly': 1.0, 'really': 1.0, 'also': 1.0, 'son': 1.0, 'brand': 1.0, 'this': 1.0, 'used': 1.0, 'husband': 1.0, 'look': 1.0, 'perfectly': 1.0, 'these': 1.0, 'basketball': 1.0, 'and': 4.0, 'block': 1.0, 'infant': 1.0, 'worked': 1.0, 'earmuffs': 2.0, 'of': 2.0, 'to': 3.0, 'noises': 1.0, 'loud': 1.0, 'my': 2.0, 'like': 2.0, 'didn': 1.0, 'is': 1.0, 's': 1.0, 't': 1.0, 'a': 2.0, 'upset': 1.0, 'game': 1.0, 'coach': 1.0, 'pull': 1.0, 'daughter': 1.0, 'out': 1.0, 'them': 2.0, 'noise': 1.0, 'has': 1.0, 'comfortably': 1.0, 'friend': 1.0, 'allowed': 1.0, 'her': 2.0, 'be': 1.0, 'games': 1.0, 'the': 3.0, 'without': 1.0, 'same': 1.0, 'being': 1.0, 'they': 2.0, 'for': 1.0, 'fit': 1.0, 'she': 2.0, 'never': 1.0, 'i': 1.0, 'attempted': 1.0, 'off': 1.0, 'have': 1.0, 'at': 1.0, 'who': 1.0}
Word element => {'is': 1.0, 'his': 1.0, 'on': 1.0, 'since': 1.0, 'especially': 1.0, 'apart': 2.0, 'fall': 1.0, 'not': 1.0, 'constantly': 1.0, 'properly': 1.0, 'off': 1.0, 'slides': 1.0, 'becomes': 1.0, 'baby': 1.0, 'band': 1.0, 'and': 2.0, 'head': 1.0, 'easily': 1.0, 'but': 1.0, 'work': 2.0, 'massive': 1.0, 'muffs': 1.0, 'amounts': 1.0, 'great': 1.0, 'the': 3.0, 'pulling': 1.0, 'my': 1.0, 'useless': 1.0, 'he': 1.0, 'it': 2.0, 'with': 1.0, 'i': 1.0, 'to': 3.0, 'had': 1.0, 'for': 1.0, 'reinforce': 1.0, 'hates': 1.0, 'area': 1.0, 'of': 1.0, 'things': 1.0, 'tape': 1.0}
Word element => {'but': 1.0, 'hands': 1.0, 'need': 1.0, 'good': 1.0, 'almost': 1.0, 'feel': 1.0, 're': 3.0, 'a': 2.0, 'his': 3.0, 'ears': 1.0, 'in': 1.0, 'cover': 1.0, 'you': 3.0, 'like': 1.0, 'head': 1.0, 'to': 1.0, 'challenge': 1.0, 'stay': 1.0, 'of': 1.0, 'they': 4.0, 'though': 1.0, 'bit': 1.0, 'and': 2.0, 'get': 1.0, 'once': 1.0, 'slip': 1.0, '4': 1.0, 'on': 3.0, 'process': 1.0, 'over': 1.0, 'eyes': 1.0, 'the': 1.0}
Word element => {'worth': 1.0, 'definitely': 1.0, '6': 1.0, 'for': 1.0, 'good': 1.0, 'pretty': 1.0, 'are': 1.0, 'they': 1.0, 'and': 1.0, 'around': 1.0, 'fits': 1.0, 'band': 2.0, 'have': 1.0, 'over': 1.0, 'on': 1.0, '10': 1.0, 'my': 3.0, 'the': 4.0, 'week': 1.0, 'will': 1.0, 'barely': 1.0, 'head': 1.0, 'to': 1.0, 'muffs': 2.0, 'not': 2.0, 'stay': 1.0, 'hold': 2.0, 'month': 1.0, 'daughter': 1.0, 'ears': 1.0, 'lap': 1.0, 'in': 1.0, 'niece': 1.0, 's': 1.0, 'old': 2.0, 'i': 1.0, 'her': 2.0}
Word element => {'them': 2.0, 'inconvenienced': 1.0, 'do': 1.0, 'and': 1.0, 'day': 1.0, 'at': 1.0, 'were': 2.0, '5': 1.0, 'a': 1.0, 'well': 1.0, '4': 1.0, 'on': 1.0, 'constantly': 1.0, 'music': 1.0, 'did': 1.0, 'the': 1.0, 'these': 1.0, 'they': 1.0, 'stay': 1.0, 'not': 2.0, 'was': 1.0, 'buying': 1.0, 'my': 1.0, 'regret': 1.0, 'by': 1.0, 'when': 1.0, 'month': 1.0, 'i': 2.0, 'old': 1.0, 'festival': 1.0, 'especially': 1.0, 'recommend': 1.0, 'she': 1.0, 'baby': 1.0, 'in': 1.0, 'carrier': 1.0, 'we': 1.0}
Word element => {'front': 1.0, 'in': 1.0, 'right': 1.0, 'sirens': 1.0, 'their': 1.0, 'soundes': 1.0, 'amd': 1.0, 'truck': 1.0, 'fire': 1.0, 'us': 1.0, 'when': 1.0, 'comfortable': 1.0, 'head': 1.0, 'to': 2.0, 'old': 1.0, 'first': 1.0, 'ambulances': 1.0, 'wear': 1.0, 'makea': 1.0, 'soft': 1.0, 'the': 1.0, 'great': 1.0, 'month': 1.0, 'them': 2.0, 'super': 1.0, 'my': 1.0, 'of': 1.0, '6': 1.0, 'band': 1.0, 'wore': 1.0, 'parade': 1.0, 'and': 1.0, 'didnt': 1.0, 'her': 1.0, 'works': 1.0, 'even': 1.0, 'startle': 1.0}
Word element => {'regular': 1.0, 'pushing': 1.0, 'immediate': 1.0, 'going': 1.0, 'without': 1.0, 'getting': 1.0, 'struggle': 1.0, 'all': 1.0, 'find': 1.0, 'as': 1.0, 'few': 1.0, 'taking': 1.0, 'not': 1.0, 'type': 1.0, 'any': 1.0, 'put': 1.0, 'much': 1.0, 'disaster': 1.0, 'fireworks': 1.0, 'for': 1.0, 'then': 1.0, 'we': 1.0, 'from': 1.0, 'go': 1.0, 'unhappiness': 1.0, 'least': 1.0, 'minutes': 1.0, 'pulls': 2.0, 'tight': 2.0, 'often': 1.0, 'bit': 1.0, 'easy': 1.0, 's': 1.0, 'is': 2.0, 'around': 1.0, 'it': 8.0, 'velcro': 2.0, 'guess': 1.0, 'headband': 7.0, 'results': 1.0, 'when': 1.0, 'someone': 1.0, 'think': 1.0, 'hard': 2.0, 'over': 5.0, 'proper': 1.0, 'muffs': 4.0, 'get': 5.0, 'months': 1.0, 'ear': 4.0, 'really': 2.0, 'are': 3.0, 'll': 2.0, 'down': 1.0, 'which': 3.0, 'saying': 1.0, 'back': 3.0, 'of': 4.0, 'the': 17.0, 'these': 3.0, 'they': 4.0, 'painful': 1.0, 'shoving': 1.0, 'slips': 1.0, 'minute': 1.0, 'eyes': 2.0, 'i': 9.0, 'little': 1.0, 'two': 1.0, 'slip': 1.0, 'pull': 1.0, 'by': 1.0, 'why': 1.0, 'just': 1.0, 'try': 2.0, 'one': 1.0, 'too': 1.0, 'and': 8.0, 'pieces': 1.0, 'daughter': 2.0, 'got': 1.0, 'instead': 1.0, 'even': 2.0, 'but': 4.0, 'tried': 1.0, 'off': 4.0, 'house': 1.0, 'can': 1.0, 'so': 1.0, 'far': 1.0, 'yet': 1.0, 'earmuffs': 1.0, 'to': 13.0, 'pretty': 2.0, 'a': 4.0, 'small': 1.0, 'have': 1.0, 'big': 2.0, 'seemed': 1.0, 'somehow': 1.0, 'head': 3.0, 'together': 1.0, 'were': 2.0, 'was': 2.0, 'flying': 1.0, '6': 1.0, 'old': 1.0, 'on': 5.0, 'realize': 2.0, 'adorable': 1.0, 'worn': 1.0, 'should': 1.0, 'be': 1.0, 'start': 1.0, 'stars': 1.0, 'protection': 2.0, 'in': 3.0, 'm': 3.0, 'used': 1.0, 'fall': 2.0, 'that': 3.0, 'mentioning': 1.0, 'case': 1.0, 'headed': 1.0, 'she': 5.0, 'baby': 1.0, 'next': 1.0, 'has': 4.0, 'them': 5.0, 'hearing': 1.0, 'use': 2.0, 'her': 4.0, 'my': 2.0, 'nose': 1.0, 'ok': 3.0, 'with': 4.0}
Word element => {'most': 1.0, 'soccer': 1.0, 'match': 1.0, 'loud': 1.0, 'during': 1.0, 'well': 1.0, 'little': 1.0, 'very': 2.0, 'noise': 1.0, 'fine': 1.0, 'just': 1.0, 'head': 1.0, 'enough': 1.0, 'adjust': 1.0, 'you': 1.0, 'if': 1.0, 'game': 1.0, 'problem': 1.0, 'have': 1.0, 'stay': 1.0, 'not': 2.0, 'did': 1.0, 'eyes': 1.0, 'that': 1.0, 'babies': 2.0, 'i': 2.0, 'old': 1.0, 'cried': 1.0, 'of': 2.0, 'tight': 1.0, 'fell': 1.0, 'band': 2.0, 'she': 1.0, 'them': 3.0, 'baby': 2.0, 'up': 1.0, 'over': 1.0, 'don': 1.0, 'asleep': 1.0, 'the': 9.0, 'great': 1.0, 'a': 1.0, 'we': 2.0, 't': 1.0, 'high': 1.0, 'were': 1.0, 'slept': 1.0, 'also': 1.0, 'slipping': 1.0, 'bandz': 1.0, 'seem': 2.0, 'on': 2.0, 'put': 3.0, 'ems': 1.0, 'week': 1.0, 'trouble': 1.0, 'block': 1.0, 'across': 1.0, 'soon': 1.0, 'and': 5.0, 'too': 1.0, 'way': 1.0, 'returned': 1.0, 'one': 1.0, 'bought': 2.0, 'her': 3.0, 'down': 1.0, 'so': 1.0, 'for': 1.0, 'fit': 1.0, '12': 1.0, 'had': 1.0, 'bother': 1.0, 'at': 1.0, 'some': 1.0, 'as': 3.0, 'our': 2.0, 'to': 2.0, 'all': 1.0, 'forehead': 1.0, 'they': 5.0, 'reviews': 1.0, 'said': 1.0, 'elastic': 1.0, 'with': 1.0}
Word element => {'eyes': 1.0, 'his': 1.0, 'over': 1.0, 'falling': 1.0, 'baby': 1.0, 'for': 1.0, 'and': 1.0, 'very': 1.0, 'helps': 1.0, 'the': 3.0, 'is': 1.0, 'with': 1.0, 'but': 1.0, 'it': 2.0, 'noise': 1.0, 'definitely': 1.0, 'headband': 1.0, 'keeps': 1.0, 'unconfortable': 1.0}
Word element => {'it': 1.0, 'cut': 1.0, 'shape': 1.0, 'and': 2.0, 'for': 1.0, 'inside': 1.0, 'in': 1.0, 'perfect': 1.0, 'also': 1.0, 'properly': 1.0, 'stuffed': 1.0, 'to': 1.0, 's': 1.0, 'around': 1.0, 'fit': 1.0, 'through': 1.0, 'should': 1.0, 'high': 1.0, 'goes': 1.0, 'wraps': 1.0, 'any': 1.0, 'headband': 1.0, 'at': 1.0, 'just': 1.0, 'not': 1.0, 'low': 1.0, 'which': 1.0, 'angle': 1.0, 'looks': 1.0, 'is': 1.0, 'like': 1.0, 'foam': 1.0, 'head': 2.0, 't': 1.0, 'the': 6.0, 'child': 1.0, 'made': 1.0, 'isn': 1.0, 'they': 2.0, 'where': 1.0, 'have': 1.0, 'created': 1.0, 'well': 1.0, 'a': 2.0, 'strap': 1.0}
Word element => {'problems': 1.0, 'putting': 1.0, 'i': 2.0, 'and': 2.0, 'time': 1.0, 'falling': 1.0, 'out': 1.0, 'had': 2.0, 'recommend': 1.0, 'was': 2.0, 'wanted': 1.0, 'the': 4.0, 'these': 2.0, 'fits': 1.0, 'my': 1.0, 'went': 1.0, 'them': 2.0, 'wore': 1.0, 'daughter': 1.0, 'again': 1.0, 'when': 1.0, 'whole': 2.0, 'no': 3.0, 'game': 1.0, 'cancelled': 1.0, 'issues': 2.0, 'came': 1.0, 'on': 1.0, 'with': 2.0, 'she': 3.0, 'it': 1.0, 'football': 1.0, 'a': 1.0, 'we': 1.0, 'noise': 1.0, 'completely': 1.0, 'of': 1.0, 'able': 1.0, 'off': 1.0, 'would': 1.0, 'heartedly': 1.0, 'if': 2.0, 'material': 1.0, 'college': 1.0, 'to': 2.0, 'sleep': 1.0, 'earpiece': 1.0, 'right': 1.0, 'back': 1.0}
Word element => {'granddaughter': 1.0, 'favorite': 1.0, 'see': 1.0, 'in': 1.0, 'can': 2.0, 'is': 1.0, 'than': 1.0, 'brings': 1.0, 'better': 1.0, 'washer': 1.0, 'invigerating': 1.0, 'many': 1.0, 'even': 1.0, 'pockets': 1.0, 'generous': 1.0, 'soiled': 1.0, 'meticulously': 1.0, 'had': 1.0, 'being': 1.0, 'if': 1.0, 'same': 1.0, 'amazon': 1.0, 'from': 1.0, 'vera': 2.0, 'this': 3.0, 'husband': 1.0, 'was': 3.0, 'for': 2.0, 'a': 3.0, 'sturdy': 1.0, 'puts': 1.0, 'fact': 1.0, 'party': 1.0, 'my': 2.0, 're': 1.0, 'hang': 1.0, 'one': 1.0, 'color': 2.0, 'me': 2.0, 'quality': 1.0, 'baby': 3.0, 'her': 2.0, 'responsible': 1.0, 'conscious': 1.0, 'or': 1.0, 'into': 1.0, 'babies': 1.0, 'that': 3.0, 'been': 1.0, 'handmade': 1.0, 'oh': 1.0, 'fashion': 2.0, 'becomes': 1.0, 'i': 5.0, 'has': 1.0, 'myself': 1.0, 'the': 11.0, 'believe': 1.0, 'when': 2.0, 'am': 1.0, 'you': 1.0, 'precious': 1.0, 'it': 6.0, 'she': 3.0, 'were': 1.0, 'requested': 1.0, 'world': 1.0, 'surprise': 1.0, 'dry': 1.0, 'bradley': 2.0, 'bag': 3.0, 'left': 1.0, 'all': 2.0, 'to': 3.0, 'grandaughter': 1.0, 'as': 2.0, 'toss': 1.0, 'and': 6.0, 'pattern': 1.0, 'guru': 1.0, 'will': 1.0, 'item': 1.0, 'always': 1.0, 'complete': 1.0, 'how': 1.0, 'received': 1.0}
Word element => {'a': 1.0, 'back': 1.0, 'will': 1.0, 'weeks': 1.0, 'scrub': 1.0, 'already': 1.0, 'it': 4.0, 'elephant': 1.0, 'dispenser': 1.0, 'soap': 2.0, 'off': 1.0, 'couple': 1.0, 'and': 1.0, 'daughter': 1.0, 'i': 4.0, 'received': 1.0, 'on': 1.0, 'time': 1.0, 'which': 1.0, 'lights': 1.0, 'was': 1.0, 'broken': 1.0, 'to': 2.0, 'glue': 1.0, 'longer': 1.0, 'when': 1.0, 'again': 1.0, 'head': 1.0, 'overall': 1.0, 'ugh': 1.0, 'my': 1.0, 'lasted': 1.0, 'has': 1.0, 'likes': 1.0, 'helped': 1.0, 'flashing': 1.0, 'music': 2.0, 'paid': 1.0, 'her': 2.0, 'had': 1.0, 'what': 1.0, 'glued': 1.0, 'remember': 1.0, 'than': 1.0, 'the': 5.0, 'hands': 1.0, 'without': 1.0, 'worth': 1.0}
Word element => {'bottle': 1.0, 'those': 1.0, 'to': 1.0, 'and': 1.0, 'accessories': 1.0, 'rack': 1.0, 'so': 2.0, 'happy': 1.0, 'hold': 1.0, 'boon': 1.0, 'this': 1.0, 'grass': 1.0, 'purchase': 1.0, 'it': 1.0, 'with': 2.0, 'is': 1.0, 'small': 1.0, 'helps': 1.0, 'the': 1.0, 'cute': 1.0}
Word element => {'just': 1.0, 'you': 1.0, 'bottles': 1.0, 'get': 1.0, 'lot': 1.0, 'its': 1.0, 'u': 1.0, 'very': 1.0, 'i': 1.0, 'love': 1.0, 'it': 3.0, 'helpful': 1.0, 'of': 1.0, 'recommend': 1.0, 'a': 1.0, 'would': 2.0, 'if': 1.0, 'have': 1.0}
Word element => {'shower': 1.0, 'friends': 1.0, 'gardens': 1.0, 'those': 1.0, 'having': 1.0, 'almost': 1.0, 'motivated': 1.0, 'more': 1.0, 'baby': 2.0, 'ton': 1.0, 'makes': 1.0, 'since': 2.0, 'am': 2.0, 'pieces': 1.0, 'then': 1.0, 'basically': 1.0, 'either': 1.0, 'between': 1.0, 'petal': 1.0, 'empty': 1.0, 'rings': 1.0, 'good': 1.0, 'dry': 1.0, 'not': 1.0, 'system': 1.0, 'sorry': 1.0, 'middle': 2.0, '3': 1.0, 'together': 1.0, 'when': 1.0, 'petals': 2.0, 'an': 1.0, 'all': 1.0, 'doesn': 1.0, 'useful': 1.0, 'as': 2.0, 'functional': 1.0, 'half': 1.0, 'about': 1.0, 'look': 1.0, 'at': 1.0, 'is': 1.0, 'area': 1.0, 'although': 1.0, 'there': 1.0, 'hang': 1.0, 'making': 1.0, 'really': 1.0, 'don': 3.0, 'wide': 1.0, 'very': 2.0, 'decoration': 1.0, 'like': 3.0, 'bought': 2.0, 'this': 4.0, 'few': 2.0, 'a': 5.0, 'go': 1.0, 's': 5.0, 'unless': 1.0, 'after': 1.0, 'close': 1.0, 'flower': 4.0, 'allow': 1.0, 'work': 1.0, 'can': 4.0, 'neighboring': 1.0, 'bump': 1.0, '2': 1.0, 'also': 5.0, 'space': 1.0, 'gifts': 1.0, 'or': 1.0, 'whether': 1.0, 'of': 8.0, 'the': 23.0, 'for': 5.0, 'anatomy': 1.0, 'love': 4.0, 'opinion': 1.0, 'rest': 1.0, 't': 4.0, 'fit': 7.0, 'per': 1.0, 'in': 5.0, 'm': 3.0, 'setup': 1.0, 'say': 2.0, 'to': 10.0, 'with': 2.0, 'have': 8.0, 'whole': 2.0, 'well': 2.0, 'i': 21.0, 'purchased': 1.0, 'boon': 2.0, 'use': 4.0, 'smaller': 1.0, 'set': 1.0, '8220': 1.0, 'everything': 1.0, 'lawn': 5.0, 'me': 2.0, 'unsure': 1.0, 'my': 13.0, 'avent': 1.0, 're': 1.0, 'stem': 2.0, 'off': 1.0, 'overall': 1.0, 'grass': 1.0, 'lids': 1.0, 'months': 1.0, 'get': 2.0, '8221': 1.0, 'and': 14.0, 'things': 5.0, 'you': 2.0, 'bigger': 1.0, 'if': 2.0, 'still': 2.0, 'difficult': 1.0, 'one': 1.0, 'too': 1.0, 'happy': 2.0, 'here': 2.0, 'how': 1.0, 'they': 3.0, 'often': 1.0, 'offshoots': 1.0, 'stack': 1.0, '8217': 13.0, 'up': 5.0, 'will': 1.0, 'humble': 1.0, 'rake': 1.0, 'it': 8.0, '9': 1.0, 'rearrange': 2.0, 'nipple': 1.0, 'two': 2.0, 'little': 2.0, 'zen': 1.0, 'on': 8.0, 'has': 1.0, 'them': 7.0, 'cute': 2.0, 'twig': 3.0, 'are': 5.0, 'away': 1.0, 'valves': 1.0, 'bumped': 1.0, 'parallel': 1.0, 'twice': 1.0, 'better': 2.0, 'ground': 1.0, 'though': 2.0, 'hold': 1.0, 'sticks': 4.0, 'because': 2.0, 'easily': 1.0, 'that': 4.0, 'inner': 1.0, 'than': 1.0, 'angled': 1.0, 'tommee': 1.0, 'perfect': 1.0, 'only': 1.0, 'usually': 1.0, 'nipples': 3.0, 'collars': 6.0, 'stuff': 1.0, 'just': 3.0, 'pacifiers': 3.0, 'medela': 4.0, 'put': 7.0, 'much': 3.0, 'but': 3.0, 'tippee': 1.0, 'even': 1.0, 'stick': 3.0}
Word element => {'definitely': 1.0, 'recommend': 1.0, 'items': 1.0, 'other': 1.0, 'boon': 1.0, 'on': 1.0, 'her': 1.0, 'for': 2.0, 'usefull': 1.0, 'grass': 1.0, 'and': 1.0, 'bottle': 1.0, 'i': 1.0, 'not': 1.0, 'bags': 1.0, 'nipples': 1.0, 'find': 1.0, 'helps': 1.0, 'the': 1.0, 'these': 1.0, 'more': 1.0, 'pacifiers': 1.0, 'only': 1.0, 'it': 1.0, 'but': 1.0, 'also': 2.0, 'to': 1.0, 'ziploc': 1.0, 'dry': 1.0, 'create': 1.0, 'space': 1.0}
Word element => {'the': 1.0, 'countertop': 1.0, 'time': 1.0, 'on': 1.0, 'cute': 1.0, 'all': 1.0, 'use': 1.0, 'to': 1.0, 'so': 1.0, 'washing': 1.0, 'looks': 1.0, 'hang': 1.0, 'after': 1.0, 'bottle': 1.0, 'nipples': 1.0, 'and': 2.0, 'compliments': 1.0, 'get': 1.0, 'we': 1.0, 'rings': 1.0}
Word element => {'dry': 1.0, 'both': 1.0, 'dryer': 1.0, 'to': 2.0, 'accessory': 1.0, 'overpriced': 1.0, 'nice': 1.0, 'bit': 1.0, 'are': 1.0, 'the': 2.0, 'my': 1.0, 'counter': 1.0, 'a': 2.0, 'in': 1.0, 'but': 1.0, 'opinion': 1.0, 'very': 1.0, 'and': 1.0, 'cute': 1.0, 'on': 1.0, 'certainly': 1.0, 'bottle': 1.0, 'allow': 1.0, 'quickly': 1.0, 'things': 1.0}
Word element => {'attach': 1.0, 'easy': 1.0, 'bottle': 1.0, 'little': 1.0, 'for': 1.0, 'great': 1.0, 'works': 1.0, 'this': 1.0, 'is': 1.0, 'boon': 1.0, 'those': 1.0, 'an': 1.0, 'adorable': 1.0, 'to': 2.0, 'rack': 1.0, 'parts': 1.0, 'accent': 1.0, 'and': 1.0, 'my': 1.0, 'drying': 1.0}
Word element => {'grass': 1.0, 'fall': 1.0, 't': 1.0, 'don': 1.0, 'they': 1.0, 'so': 1.0, 'to': 1.0, 'perfect': 1.0, 'all': 1.0, 'hold': 1.0, 'medela': 1.0, 'the': 3.0, 'small': 2.0, 'pieces': 1.0, 'parts': 1.0, 'like': 1.0, 'into': 1.0, 'pump': 1.0}
Word element => {'lawn': 1.0, 'it': 1.0, 'bought': 1.0, 'complete': 1.0, 'look': 1.0, 'd': 1.0, 'my': 1.0, 'make': 1.0, 'more': 2.0, 'twig': 1.0, 'is': 2.0, 'to': 1.0, 'practicle': 1.0, 'just': 1.0, 'but': 1.0, 'this': 1.0, 'flower': 1.0, 'too': 1.0, 'cute': 1.0}
Word element => {'or': 1.0, 'wish': 1.0, 'just': 1.0, 'i': 1.0, 'way': 1.0, 'space': 1.0, 'bottles': 1.0, 'lot': 1.0, 'of': 1.0, 'up': 1.0, 'options': 1.0, 'rack': 1.0, 'something': 1.0, 'were': 1.0, 'their': 1.0, 'parts': 1.0, 'that': 1.0, 'smaller': 1.0, 'boon': 1.0, 'for': 3.0, 'drying': 1.0, 'have': 1.0, 'it': 1.0, 'this': 3.0, 'more': 2.0, 'the': 3.0, 't': 1.0, 'must': 1.0, 'a': 2.0, 'is': 2.0, 'trees': 1.0, 'larger': 1.0, 'large': 1.0, 'grass': 2.0, 'and': 3.0, 'frees': 1.0, 'items': 1.0, 'like': 2.0, 'perfect': 1.0, 'caps': 1.0, 'membranes': 1.0, 'isn': 1.0, 'pump': 1.0}
Word element => {'but': 1.0, 'things': 1.0, 'to': 1.0, 'few': 1.0, 'bigger': 1.0, 'this': 1.0, 'piece': 1.0, 'more': 1.0, 'the': 1.0, 'works': 1.0, 'it': 2.0, 'great': 2.0, 'is': 1.0, 'with': 1.0, 'a': 1.0, 'lawn': 1.0, 'hold': 1.0, 'was': 1.0, 'extra': 1.0, 'boon': 1.0, 'i': 1.0, 'wish': 1.0}
Word element => {'rack': 1.0, 'boon': 1.0, 'drying': 1.0, 'the': 1.0, 'to': 2.0, 'add': 1.0, 'is': 1.0, 'this': 1.0, 'little': 2.0, 'actually': 1.0, 'handy': 1.0, 'holds': 1.0, 'a': 1.0, 'twig': 1.0, 'bit': 1.0, 'of': 1.0, 'very': 1.0, 'and': 1.0, 'quite': 1.0, 'items': 1.0}
Word element => {'money': 1.0, 'certainly': 1.0, 'without': 1.0, 'make': 1.0, 'into': 1.0, 'after': 1.0, 'securely': 1.0, 'teething': 1.0, 'couldn': 1.0, 'and': 2.0, 'very': 1.0, 'parts': 1.0, 'etc': 1.0, 't': 1.0, 'the': 2.0, 'worth': 1.0, 'drying': 2.0, 'boon': 1.0, 'sturdy': 1.0, 'toys': 1.0, 'it': 2.0, 'this': 1.0, 'is': 1.0, 'lawn': 1.0, 'fits': 1.0, 'rack': 1.0, 'for': 1.0, 'bottle': 1.0, 'excellent': 1.0, 'strong': 1.0, 'washing': 1.0}
Word element => {'one': 1.0, 'parts': 1.0, 'those': 1.0, 'to': 3.0, 'hold': 1.0, 'i': 1.0, 'helpful': 1.0, 'bottle': 1.0, 'little': 1.0, 'fun': 1.0, 'rack': 1.0, 'this': 1.0, 'have': 1.0, 'really': 1.0, 'is': 1.0, 'a': 1.0, 'another': 1.0, 'accessory': 1.0, 'great': 1.0, 'the': 1.0, 'drying': 1.0, 'may': 1.0, 'and': 1.0, 'get': 1.0}
Word element => {'to': 1.0, 'addition': 1.0, 'but': 1.0, 'boon': 1.0, 'every': 1.0, 'fit': 1.0, 'pieces': 1.0, 'pump': 1.0, 'all': 1.0, 'not': 1.0, 'means': 1.0, 'others': 1.0, 'thickness': 1.0, 'than': 1.0, 'different': 1.0, 'overall': 1.0, 'are': 1.0, 'which': 1.0, 'branches': 1.0, 'set': 1.0, '34': 2.0, 'of': 2.0, 'pictured': 1.0, 'pacifiers': 1.0, 'twig': 1.0, 'a': 4.0, 'great': 2.0, 'the': 3.0, 'tree': 1.0, 'collection': 1.0, 'this': 1.0, 'pumping': 1.0, 'like': 1.0, 'parts': 1.0, 'is': 1.0, 'really': 1.0, 'i': 1.0, 'bottle': 1.0, 'on': 1.0, 'natural': 1.0, 'branch': 1.0, 'my': 2.0, 'color': 1.0, 'holds': 1.0, 'nipples': 1.0, 'and': 3.0, 'couple': 1.0}
Word element => {'and': 2.0, 'parts': 1.0, 'them': 1.0, 'out': 1.0, 'help': 1.0, 'bottles': 1.0, 'so': 1.0, 'to': 1.0, 'be': 1.0, 'handy': 1.0, 'are': 1.0, 'drying': 1.0, 'with': 1.0, 'you': 1.0, 'won': 1.0, 'these': 2.0, 't': 1.0, 'have': 1.0, 'disappointed': 1.0, 'we': 1.0, 'garden': 1.0, 'a': 1.0, 'of': 1.0, 'love': 1.0}
Word element => {'be': 1.0, 'lawn': 1.0, 'should': 1.0, 'product': 1.0, 'another': 1.0, 'included': 1.0, 'twig': 1.0, 'or': 2.0, 'stem': 1.0, 'than': 1.0, 'higher': 1.0, 'was': 1.0, 'price': 1.0, 'grass': 2.0, 'think': 1.0, 'on': 1.0, 'take': 1.0, 'nipple': 1.0, 'the': 8.0, 'a': 3.0, 't': 1.0, 'these': 1.0, 'holding': 1.0, 'after': 1.0, 'have': 1.0, 'small': 2.0, 'evenflo': 1.0, '4': 1.0, 'i': 7.0, 'are': 2.0, 'with': 1.0, 'mind': 1.0, 'would': 1.0, 'each': 1.0, 'use': 2.0, 'pump': 1.0, 'currently': 1.0, 'flower': 4.0, 'they': 1.0, 'dry': 1.0, 'overlap': 1.0, 'so': 2.0, 'valves': 2.0, 'bottle': 1.0, 'little': 2.0, 'nipples': 3.0, 'to': 2.0, 'like': 1.0, 'hold': 2.0, 'similar': 1.0, 'and': 2.0, 'do': 1.0, 'helps': 1.0, 'this': 1.0, 'overlapping': 1.0, 'can': 1.0, 'but': 1.0, 'an': 1.0, 'three': 1.0, 'space': 1.0, 'option': 1.0, 'accessories': 1.0, 'if': 2.0, 'want': 1.0, 'is': 1.0, 'really': 1.0, 'them': 1.0, 'washing': 1.0, 'petals': 1.0, 'not': 2.0, 'that': 2.0, 'pieces': 1.0, 'don': 1.0, 'up': 1.0}
Word element => {'grass': 1.0, 'off': 1.0, 'nipples': 1.0, 'the': 2.0, 'for': 1.0, 'room': 1.0, 'you': 1.0, 'give': 1.0, 'i': 1.0, 'this': 1.0, 'boon': 1.0, 'extra': 1.0, 'at': 1.0, 'and': 1.0, 'like': 1.0, 'wasnt': 1.0, 'although': 1.0, 'first': 1.0, 'well': 1.0, 'it': 1.0, 'sure': 1.0, 'works': 1.0}
Word element => {'since': 1.0, 'regretted': 1.0, 'and': 1.0, 'stems': 1.0, 'the': 1.0, '2': 1.0, 'but': 1.0, 'fits': 1.0, 'time': 1.0, 'lawn': 1.0, 'spare': 1.0, 'is': 2.0, 'got': 1.0, 'every': 1.0, 'my': 1.0, 'room': 1.0, 'brightens': 1.0, 'functional': 1.0, 'product': 1.0, 'to': 2.0, 'havent': 1.0, 'fit': 1.0, 'love': 1.0, 'i': 3.0, 'not': 1.0, 'with': 2.0, 'this': 1.0, 'it': 6.0, 'only': 1.0, 'day': 1.0, 'very': 1.0, 'need': 1.0, 'cute': 1.0, 'everything': 1.0}
Word element => {'these': 1.0, 'of': 1.0, 'parts': 2.0, 'better': 2.0, 'twig': 1.0, 'which': 1.0, 'far': 1.0, 'accommodates': 1.0, 'rack': 1.0, 'pacifiers': 1.0, 'with': 2.0, 'it': 1.0, 'item': 1.0, 'from': 1.0, 'and': 1.0, 'grass': 1.0, 'this': 1.0, 'wish': 1.0, 'the': 4.0, 'more': 1.0, 'sure': 1.0, 'pump': 1.0, 'our': 1.0, 'as': 1.0, 'to': 3.0, 'was': 1.0, 'drying': 1.0, 'purchased': 2.0, 'had': 1.0, 'work': 1.0, 'would': 1.0, 'not': 1.0, 'than': 1.0, 'because': 1.0, 'various': 1.0, 'flower': 2.0, 'items': 2.0, 'baby': 1.0, 'design': 1.0, 'by': 1.0, 'go': 1.0, 'we': 2.0, 's': 1.0, 'ranging': 1.0, 'boon': 1.0, 'bottle': 1.0, 'use': 1.0, 'breast': 1.0, 'two': 1.0, 'i': 1.0}
Word element => {'saying': 1.0, 'which': 1.0, 'actually': 1.0, 's': 1.0, 'my': 1.0, 'parts': 1.0, 'accessory': 1.0, 'of': 1.0, 'lots': 1.0, 'more': 1.0, 'the': 3.0, 'has': 1.0, 'pump': 1.0, 'makes': 1.0, 'boon': 1.0, 'and': 2.0, 'grass': 1.0, 'difference': 1.0, 'for': 2.0, 'breast': 1.0, 'on': 1.0, 'lot': 1.0, 'add': 1.0, 'is': 2.0, 'because': 1.0, 'a': 4.0, 'made': 1.0, 'rack': 3.0, 'this': 1.0, 'it': 4.0, 'from': 1.0, 'big': 1.0, 'holds': 1.0, 'all': 1.0, 'things': 1.0, 'like': 1.0, 'functional': 1.0, 'little': 2.0, 'bottle': 1.0, 'cute': 1.0, 'drying': 3.0, 'nipples': 1.0}
Word element => {'grass': 1.0, 'or': 1.0, 'of': 1.0, 'the': 2.0, 's': 1.0, 'lawn': 1.0, 'saver': 1.0, 'a': 2.0, 'nipples': 1.0, 'space': 1.0, 'must': 1.0, 'it': 2.0, 'pacifiers': 1.0, 'look': 1.0, 'for': 1.0, 'and': 2.0, 'boon': 2.0, 'completes': 1.0}
Word element => {'package': 1.0, 'there': 1.0, 'warning': 1.0, 'wish': 1.0, 'i': 1.0, 'it': 2.0, 'by': 1.0, 'ruined': 1.0, 'the': 3.0, 'steam': 1.0, 'and': 1.0, 'was': 1.0, 'after': 1.0, 'first': 1.0, 'on': 1.0, 'useless': 1.0, 'is': 2.0, 'now': 1.0, 'wash': 1.0}
Word element => {'dishes': 1.0, 'of': 1.0, 'some': 1.0, 'use': 1.0, 'even': 1.0, 'that': 1.0, 'cute': 1.0, 'how': 1.0, 'comments': 1.0, 'is': 1.0, 'comes': 1.0, 'who': 1.0, 'they': 1.0, 'counter': 1.0, 'eyesore': 1.0, 'an': 1.0, 'there': 1.0, 'stays': 1.0, 'or': 1.0, 'bottles': 1.0, 'recommend': 1.0, 'racks': 1.0, 'well': 1.0, 'kitchen': 1.0, 'other': 1.0, 'it': 7.0, 'this': 1.0, 'anyone': 2.0, 'pieces': 1.0, 'falling': 1.0, 'regular': 1.0, 'in': 1.0, 'i': 3.0, 'buy': 2.0, 'cool': 1.0, 'one': 2.0, 'our': 1.0, 'to': 1.0, 'as': 1.0, 'too': 1.0, 'and': 6.0, 'ripple': 1.0, 'my': 1.0, 'drying': 2.0, 'are': 1.0, 'rack': 1.0, 'them': 2.0, 'else': 1.0, 'never': 1.0, 'always': 2.0, 'off': 1.0, 'with': 2.0, 'knock': 1.0, 'the': 1.0, 'place': 1.0, 'accessories': 1.0, 'if': 1.0, 'again': 1.0, 'you': 2.0, 'a': 1.0, 's': 2.0, 'smaller': 1.0, 'boon': 1.0, 'bottle': 1.0, 'over': 2.0, 'for': 1.0, 'love': 2.0, 'effect': 1.0, 'stay': 1.0, 'not': 2.0, 'your': 1.0, 'on': 3.0, 'put': 1.0, 'would': 1.0, 'something': 1.0}
Word element => {'target': 1.0, 'at': 1.0, 'same': 1.0, 'costs': 1.0, 'as': 1.0, 'deal': 1.0, 'was': 1.0, 'cool': 1.0, 'have': 1.0, 'rack': 1.0, 'accessory': 1.0, '34': 2.0, 'drying': 1.0, 'and': 1.0, 'grass': 1.0, 'given': 1.0, 'love': 1.0, 'the': 2.0, 'great': 2.0, 'this': 1.0, 'it': 4.0, 'i': 2.0, 'a': 2.0, 'addition': 1.0, 'is': 2.0, 'looks': 1.0, 'would': 1.0, '5': 1.0, 'stars': 1.0, 'if': 1.0}
Word element => {'coffee': 1.0, 'near': 1.0, 'of': 1.0, 'patch': 1.0, 'funny': 1.0, 'to': 1.0, 'cohesion': 1.0, 'some': 1.0, 'brings': 1.0, 'rubber': 1.0, 'also': 1.0, 'perfect': 1.0, 'are': 1.0, 'pot': 1.0, 'feed': 1.0, 'milk': 1.0, 'grass': 2.0, 'and': 3.0, 'my': 2.0, 'love': 1.0, 'often': 1.0, 'for': 2.0, 'it': 2.0, 'this': 2.0, 'such': 1.0, 'the': 3.0, 't': 1.0, 'don': 1.0, 'boon': 1.0, 'got': 1.0, 'i': 3.0, 'valves': 1.0, 'much': 1.0, 'but': 1.0, 'flower': 1.0, 'pump': 1.0, 'bottle': 1.0, 'little': 2.0, 'stamen': 1.0, 'on': 1.0}
Word element => {'penny': 1.0, 'every': 1.0, 'worth': 1.0, 'rack': 1.0, 'drying': 1.0, 'nipples': 1.0, 'must': 1.0, 'this': 1.0, 'have': 1.0, 'a': 1.0, 'lawn': 1.0, 'for': 2.0, 'bottle': 1.0, 'your': 1.0, 'was': 1.0, 'boon': 1.0, 'perfect': 1.0, 'rings': 1.0, 'and': 1.0}
Word element => {'use': 1.0, 'could': 1.0, 'probably': 1.0, 'pump': 1.0, 'bottle': 1.0, 'filled': 1.0, 'parts': 1.0, 'and': 2.0, 'constantly': 1.0, 'if': 1.0, 'boon': 1.0, '2': 1.0, 'with': 2.0, 'using': 1.0, 'lawn': 1.0, '3': 1.0, 'we': 1.0, 'get': 1.0, 'stems': 1.0, 'the': 1.0, 'are': 1.0, 'our': 1.0}
Word element => {'bottles': 1.0, 'glass': 1.0, 'our': 1.0, 'holds': 1.0, 'fit': 1.0, 'you': 1.0, 'boon': 1.0, 'ton': 1.0, 'on': 2.0, 'about': 1.0, 'can': 1.0, 'as': 1.0, 'perfect': 1.0, 'in': 1.0, 'for': 2.0, 'snickers': 1.0, 'too': 1.0, 'm': 1.0, 'rack': 2.0, 'of': 1.0, 'there': 3.0, 'grass': 1.0, 'accessories': 1.0, 'and': 2.0, 'get': 2.0, 'nipples': 1.0, 'drying': 3.0, 'it': 1.0, 'this': 2.0, 'sure': 1.0, 'fancy': 1.0, 'i': 2.0, 'being': 1.0, 'isle': 1.0, 'but': 2.0, 'stuff': 1.0, 'really': 1.0, 'is': 3.0, 'great': 1.0, 'the': 2.0, 'such': 1.0, 'a': 3.0, '8': 1.0, 'bad': 1.0, 'thing': 1.0}
Word element => {'cleaning': 1.0, 'practical': 1.0, 'cute': 1.0, 'for': 1.0, 'look': 1.0, 'with': 1.0, 'etc': 1.0, 'everything': 1.0, 'we': 1.0, 'these': 1.0, 'are': 1.0, 'the': 1.0, 'boon': 1.0, 'and': 2.0, 'lawn': 1.0, 'go': 1.0, 'bottles': 1.0, 'twig': 1.0, 'have': 1.0, 'stems': 1.0, 'along': 1.0}
Word element => {'cute': 1.0, 'its': 1.0, 'pacifiers': 1.0, 'and': 2.0, 'parts': 1.0, 'small': 1.0, 'is': 1.0, 'this': 1.0, 'have': 1.0, 'functional': 1.0, 'a': 1.0, 'lawn': 1.0, 'must': 1.0, 'accessory': 1.0, 'for': 2.0, 'bottle': 1.0, 'your': 1.0, 'boon': 1.0, 'perfect': 1.0}
Word element => {'space': 1.0, 'us': 1.0, 'helps': 1.0, 'drying': 2.0, 'more': 2.0, 'so': 1.0, 'bottles': 1.0, 'boon': 1.0, 'give': 1.0, 'rack': 1.0, 'our': 1.0, 'to': 1.0, 'much': 1.0, 'taking': 1.0, 'addition': 1.0, 'counter': 1.0, 'this': 1.0, 'area': 1.0, 'for': 1.0, 'and': 1.0, 'up': 1.0, 'pump': 1.0, 'pieces': 1.0, 'without': 1.0}
Word element => {'items': 1.0, 'everything': 1.0, 'which': 1.0, 'use': 2.0, 'maximize': 1.0, 'all': 1.0, 'at': 1.0, 'space': 1.0, 'no': 1.0, 'of': 1.0, 'up': 1.0, 'take': 1.0, 'they': 1.0, 'baby': 1.0, 'another': 1.0, 'too': 1.0, 'when': 1.0, 'i': 1.0, 'parts': 1.0, 'are': 1.0, 'cute': 1.0, 'drying': 2.0, 'just': 1.0, 'not': 1.0, 'started': 1.0, 'and': 2.0, 'accessories': 1.0, 'rack': 3.0, 'bottle': 1.0, 'little': 1.0, 'fabulous': 1.0, 'for': 2.0, 'using': 1.0, 'more': 2.0, 'the': 3.0, 'these': 1.0, 'we': 2.0, 'bottles': 1.0, 'needed': 1.0, 'room': 1.0, 'on': 1.0, 'bought': 1.0}
Word element => {'money': 1.0, 'dry': 1.0, 'placing': 1.0, 'and': 1.0, 'to': 1.0, 'onto': 1.0, 'a': 1.0, 'the': 3.0, 'saved': 1.0, 'just': 1.0, 'think': 1.0, 'i': 3.0, 'would': 1.0, 'work': 1.0, 've': 1.0, 'same': 1.0, 'way': 1.0, 'items': 1.0, 'so': 1.0, 'feel': 1.0, 'should': 1.0, 'towel': 1.0, 'skipped': 1.0, 'this': 1.0, 'item': 1.0}
Word element => {'again': 1.0, 'would': 1.0, 'to': 1.0, 'an': 1.0, 'accessory': 1.0, 'bought': 1.0, 'as': 1.0, 'and': 1.0, 'grass': 1.0, 'boon': 1.0, 'the': 3.0, 'yet': 1.0, 'stem': 1.0, 'buy': 1.0, 'i': 2.0, 'rack': 1.0, 'fun': 1.0, 'it': 1.0, 'kitchen': 1.0, 's': 1.0, 'in': 1.0, 'also': 1.0, 'practical': 1.0, 'lawn': 1.0, 'looks': 1.0, 'really': 1.0, 'drying': 1.0, 'cute': 1.0}
Word element => {'counter': 1.0, 'on': 1.0, 'less': 1.0, 'parts': 2.0, 'and': 1.0, 'takes': 1.0, 'up': 1.0, 'put': 1.0, 'those': 1.0, 'place': 1.0, 'to': 1.0, 'bottles': 1.0, 'washing': 1.0, 'all': 1.0, 'space': 1.0, 'fun': 1.0, 'pacifiers': 1.0, 'rack': 1.0, 'pump': 1.0, 'makes': 1.0, 'almost': 1.0, 'having': 1.0, 'a': 1.0, 'the': 2.0, 'drying': 1.0, 'my': 1.0, 'smaller': 1.0, 'high': 1.0, 'means': 1.0}
Word element => {'parts': 1.0, 'small': 1.0, 'other': 1.0, 'nipples': 1.0, 'for': 1.0, 'flower': 1.0, 'twig': 1.0, 'especially': 1.0, 'quickly': 1.0, 'things': 1.0, 'dry': 1.0, 'circulation': 1.0, 'enough': 1.0, 'little': 1.0, 'i': 2.0, 'such': 1.0, 'is': 1.0, 'recommend': 1.0, 'was': 1.0, 'would': 1.0, 'boon': 1.0, 'so': 1.0, 'we': 2.0, 'a': 1.0, 'bought': 1.0, 'be': 1.0, 'highly': 1.0, 'really': 1.0, 'amazing': 1.0, 'it': 5.0, 'first': 1.0, 'with': 2.0, 'the': 2.0, 'turns': 1.0, 'place': 1.0, 'its': 1.0, 'works': 2.0, 'much': 1.0, 'thought': 2.0, 'because': 1.0, 'than': 1.0, 'lawn': 1.0, 'better': 1.0, 'put': 1.0, 'bottles': 1.0, 'and': 5.0, 'out': 2.0, 'fantastically': 1.0, 'but': 1.0, 'can': 1.0, 'loaded': 1.0, 'up': 1.0, 'of': 1.0, 'odds': 1.0, 'to': 3.0, 'as': 1.0, 'all': 1.0, 'cute': 1.0, 'ends': 1.0, 'seems': 1.0, 'sorts': 1.0, 'provide': 1.0}
Word element => {'great': 1.0, 'goes': 1.0, 'time': 1.0, 'your': 1.0, 'you': 1.0, 'fast': 1.0, 'too': 1.0, 'if': 1.0, 'pretty': 1.0, 'crib': 1.0, 'little': 1.0, 'because': 1.0, 'my': 1.0, 'on': 1.0, 'over': 1.0, 'almost': 1.0, 'do': 1.0, 'perfect': 1.0, 'easy': 1.0, 'girls': 1.0, 'some': 1.0, 'looks': 1.0, 'it': 3.0, 'this': 1.0, 'was': 1.0, 'to': 2.0, 'but': 1.0, 'put': 1.0, 'up': 1.0, 'letters': 1.0, 'take': 1.0, 'ripped': 1.0, 'tried': 1.0, 'i': 1.0}
Word element => {'not': 1.0, 'just': 1.0, 'i': 1.0, 'adorable': 1.0, 'since': 1.0, 'and': 1.0, 'are': 1.0, 'the': 3.0, 'that': 2.0, 'directly': 1.0, 'wall': 1.0, 'placed': 1.0, 'above': 1.0, 'this': 1.0, 'it': 3.0, 'currently': 1.0, 'permanent': 1.0, 'very': 1.0, 'day': 1.0, 's': 3.0, 'decal': 1.0, 'we': 3.0, 'other': 1.0, 'crib': 1.0, 'daughter': 1.0, 'completed': 1.0, 'love': 1.0, 'renting': 1.0, 'used': 1.0, 'down': 1.0, 'room': 1.0, 'before': 1.0, 'recommend': 1.0, 'our': 1.0, 'to': 4.0, 'wipe': 1.0, 'apply': 1.0, 'compared': 1.0, 'decals': 1.0, 've': 1.0, 'be': 1.0, 'easy': 1.0, 'sure': 1.0, 'insure': 1.0, 'completely': 1.0, 'dry': 1.0, 'really': 1.0, 'highly': 1.0}
Word element => {'is': 1.0, 'this': 1.0, 'it': 2.0, 'if': 2.0, 'see': 1.0, 'butter': 1.0, 'thicker': 1.0, 'spritz': 1.0, 'cj': 1.0, 'was': 1.0, 'would': 1.0, 'i': 5.0, 'about': 1.0, 'don': 1.0, 'baby': 1.0, 'have': 2.0, 'been': 1.0, 'messy': 1.0, 'using': 1.0, 'for': 2.0, 'thought': 1.0, 'easier': 1.0, 'the': 7.0, 'finger': 1.0, 'great': 2.0, 'a': 2.0, 's': 1.0, 't': 1.0, 'diaper': 1.0, 'year': 1.0, 'to': 2.0, 'as': 2.0, 'dip': 1.0, 'in': 3.0, 'and': 2.0, 'tub': 3.0, 'get': 1.0, 'less': 1.0, 'try': 1.0, 'works': 1.0, 'does': 1.0, 'just': 1.0, 'stuff': 1.0, 'rash': 1.0, 'my': 1.0, 'may': 1.0, 'need': 1.0, 'everyday': 1.0, 'but': 1.0}
Word element => {'spritz': 1.0, 'find': 1.0, 'but': 1.0, 'tub': 1.0, 'have': 1.0, 'wonders': 1.0, 'worked': 1.0, 'infinitely': 1.0, 'treat': 1.0, 'head': 1.0, 'his': 1.0, 'to': 4.0, 'had': 1.0, 'safe': 1.0, 'mostly': 1.0, 'stick': 1.0, 'nomad': 1.0, 'on': 1.0, 'think': 1.0, 'this': 1.0, 'it': 2.0, 'with': 1.0, 'is': 2.0, 'completely': 1.0, 'use': 2.0, 'rash': 1.0, 'oil': 1.0, 'diaper': 2.0, 'i': 6.0, 'cloth': 1.0, 'repelling': 1.0, 'cradle': 1.0, 'scent': 1.0, 'boy': 1.0, 'easier': 1.0, 'has': 2.0, 'version': 2.0, 'using': 1.0, 'coconut': 1.0, 'little': 1.0, 'and': 4.0, 'probably': 1.0, 'do': 1.0, 'the': 3.0, 'without': 1.0, 'cap': 1.0, 'often': 1.0, 'my': 3.0, 'risking': 1.0, 'diapers': 1.0, 'baby': 1.0, 'never': 1.0, 'love': 1.0, 'for': 1.0, 'actually': 1.0, 'a': 1.0, 's': 2.0, 'cj': 2.0, 'since': 1.0, 'lot': 1.0, 'that': 1.0, 'oh': 1.0, 'also': 2.0, 'used': 1.0}
Word element => {'a': 1.0, 's': 1.0, 'there': 1.0, 'cloth': 1.0, 'his': 1.0, 'in': 1.0, 'blueberry': 2.0, 'cobbler': 1.0, 'of': 3.0, 'he': 1.0, 'my': 1.0, 'reminds': 1.0, 'burst': 1.0, 'diapers': 1.0, 'me': 1.0, 'faves': 1.0, 'one': 1.0, 'pees': 1.0, 'when': 1.0}
Word element => {'buy': 1.0, 'll': 1.0, 'ones': 1.0, 'only': 1.0, 'from': 1.0, 'second': 1.0, 'time': 1.0, 'first': 1.0, 'with': 1.0, 'trying': 1.0, 'wasted': 1.0, 'have': 1.0, 'of': 1.0, 'out': 1.0, 'drinking': 2.0, 'issue': 1.0, 'an': 1.0, 'had': 1.0, 'never': 1.0, 'has': 1.0, 'son': 3.0, 've': 1.0, 'apart': 1.0, 'insert': 1.0, 'leaked': 1.0, 'are': 2.0, 'defective': 1.0, 'the': 6.0, 'these': 2.0, 'i': 1.0, 'way': 1.0, 'white': 1.0, 'them': 2.0, 'different': 1.0, 'clean': 1.0, 'm': 1.0, 'by': 2.0, 'a': 1.0, 's': 1.0, 'we': 3.0, 'other': 1.0, 'simple': 1.0, 'starts': 1.0, 'reviewer': 1.0, 'using': 1.0, 'for': 1.0, 'love': 1.0, 'was': 1.0, 'our': 3.0, 'all': 1.0, 'cups': 2.0, 'to': 1.0, 'not': 2.0, 'pushed': 1.0, 'sure': 1.0, 'far': 1.0, 'why': 1.0, 'year': 1.0, 'maybe': 1.0, 'or': 1.0, 'cup': 2.0, 'been': 1.0, 'insulated': 2.0, 'money': 1.0, 'but': 1.0, 'past': 1.0, 'most': 1.0, 'and': 5.0, 'in': 1.0, 'regular': 1.0, 'non': 1.0, 'take': 1.0, 'they': 1.0}
Word element => {'apparent': 1.0, 'giraffes': 1.0, 'that': 1.0, 'not': 1.0, 'aren': 1.0, 'but': 1.0, 'so': 2.0, 'time': 1.0, 'bit': 1.0, 'size': 1.0, 'seriously': 1.0, 'these': 1.0, 'the': 4.0, 'down': 1.0, 'and': 1.0, 'much': 1.0, 'do': 1.0, 'shrivel': 1.0, 'makes': 1.0, 'which': 1.0, 'to': 2.0, 'diapers': 3.0, 'i': 3.0, 'best': 1.0, 'over': 1.0, 'don': 1.0, 'flats': 1.0, 'love': 1.0, 'actually': 1.0, 'fade': 1.0, 'are': 3.0, 'own': 1.0, 'of': 1.0, 'washed': 1.0, 't': 2.0, 'a': 3.0, 'paper': 1.0, 'cute': 1.0, 'after': 1.0, 'easy': 1.0, 'towel': 1.0, 'them': 1.0, 'being': 1.0, 'general': 1.0, 'squares': 1.0, 'times': 1.0, 'far': 1.0, 'folding': 1.0, 'also': 1.0, 'flat': 1.0, 'in': 1.0, 'awesome': 1.0, 'prefer': 1.0, 'my': 1.0, 'they': 3.0, 'pocket': 1.0, 'few': 1.0, 'by': 1.0, 'prints': 1.0}
Word element => {'dish': 1.0, 'a': 1.0, 'quality': 2.0, 'filthy': 1.0, 'served': 1.0, 'or': 1.0, 'trays': 1.0, 'on': 2.0, 'are': 1.0, 'kids': 1.0, 'let': 1.0, 'no': 1.0, 'way': 1.0, 'along': 1.0, 'tables': 1.0, 'breaks': 1.0, 'the': 2.0, 'great': 1.0, 'it': 2.0, 'right': 1.0, 'fed': 1.0, 'biggie': 1.0, 'plastic': 2.0, 'even': 1.0, 'and': 2.0, 'which': 1.0, 'for': 1.0, 'present': 1.0, 'fashioned': 1.0, 'is': 2.0, 'adorable': 1.0, 'its': 1.0, 'any': 1.0, 'baby': 2.0, 'know': 1.0, 'affordable': 1.0, 'not': 1.0, 'would': 1.0, 'old': 1.0, 'i': 1.0, 'recommend': 1.0, 'food': 1.0, 'so': 1.0, 'that': 2.0, 'if': 1.0}
Word element => {'go': 2.0, 'you': 2.0, 'about': 1.0, 'need': 1.0, 'have': 1.0, 'random': 1.0, 'im': 1.0, 'bunting': 5.0, 'm': 1.0, 'in': 3.0, 'were': 1.0, 'am': 2.0, 'when': 2.0, 'to': 5.0, 'but': 1.0, 'old': 1.0, 'up': 2.0, 'one': 1.0, 'happy': 2.0, 'we': 1.0, 'a': 9.0, 'all': 1.0, 'other': 1.0, 'back': 1.0, 'most': 1.0, 'making': 1.0, 'presents': 1.0, 'nice': 1.0, 'worry': 1.0, 'comfortable': 1.0, 'any': 1.0, 'surprised': 1.0, 'second': 2.0, 'is': 4.0, 'once': 1.0, 'comes': 1.0, 'elements': 1.0, 'really': 2.0, 'weather': 1.0, 'market': 1.0, 'and': 7.0, 'my': 4.0, 'reasons': 1.0, 'me': 4.0, 'this': 5.0, 'he': 5.0, 'how': 1.0, 'dont': 1.0, 'hubbie': 1.0, 'used': 1.0, 'of': 1.0, 'the': 8.0, 'mother': 1.0, 'youre': 1.0, 'loved': 1.0, 'coming': 1.0, 'i': 7.0, 'buy': 2.0, 'day': 1.0, 'extra': 1.0, 'child': 1.0, 'year': 1.0, 'baby': 4.0, 'hat': 1.0, 'made': 2.0, 'gift': 2.0, 'quilted': 1.0, 'from': 1.0, 'by': 1.0, 'comfy': 1.0, '1': 1.0, 'since': 1.0, 'husband': 1.0, 'never': 1.0, 'knew': 1.0, 'much': 1.0, 'dollars': 1.0, 'was': 1.0, 'gonna': 1.0, 'it': 4.0, 'him': 1.0, 'same': 1.0, 'for': 2.0, '10': 1.0, 'saw': 1.0, 'sherpa': 2.0, 'they': 1.0, 'warm': 2.0, 'had': 1.0, 'time': 1.0, 'new': 1.0, 'also': 2.0, 'coat': 1.0, 'cozy': 1.0, 'line': 1.0, 'splurged': 1.0, 'makes': 1.0, 'did': 1.0, 'inner': 1.0, 'neurotic': 1.0, 'breathable': 1.0, 'using': 1.0, 'like': 1.0, 'with': 3.0, 'bundle': 1.0, 'mommy': 1.0, 'perfectly': 1.0}
Word element => {'top': 1.0, 'of': 1.0, 'comfortable': 1.0, 'warm': 1.0, 'is': 1.0, 'too': 1.0, 'got': 1.0, 'i': 1.0, 'loves': 1.0, 'for': 1.0, 'a': 1.0, 'it': 4.0, 'love': 1.0, 'baby': 2.0, 'quality': 1.0, 'and': 4.0, 'made': 1.0, 'my': 1.0, 'gift': 1.0}
Word element => {'you': 2.0, 'but': 1.0, 'large': 1.0, 'another': 1.0, 'on': 1.0, 'so': 1.0, 'spend': 1.0, 'didn': 1.0, 'than': 1.0, 'pay': 1.0, 'thinner': 1.0, 'also': 1.0, 'to': 1.0, 'was': 1.0, 'scratchy': 1.0, 'want': 1.0, 'is': 1.0, 'bundle': 3.0, 'cole': 1.0, 'jj': 1.0, 'guess': 1.0, 'cheap': 1.0, 'i': 3.0, 'what': 1.0, 'does': 1.0, 'a': 2.0, 'not': 1.0, 'seat': 1.0, 'car': 1.0, 'infant': 1.0, 'our': 1.0, 'much': 2.0, 'received': 1.0, 'for': 2.0, 'as': 1.0, 'get': 1.0, 'me': 3.0, 'and': 2.0, 'gift': 1.0, 'fabric': 1.0, 'loved': 1.0, 'this': 1.0, 'it': 2.0, 'compare': 1.0, 't': 1.0, 'the': 2.0}
Word element => {'todays': 1.0, 'in': 1.0, 'out': 1.0, 'when': 1.0, 'baby': 1.0, 'perfectly': 1.0, 'weather': 1.0, 'and': 1.0, 'on': 1.0, 'is': 1.0, 'the': 2.0, 'cold': 1.0, 'roomy': 1.0, 'used': 1.0, 'fits': 1.0, 'stroller': 1.0, 'transport': 1.0, 'product': 1.0, 'to': 1.0}
Word element => {'thicker': 1.0, 'definitely': 1.0, 'plus': 1.0, 'does': 1.0, 'one': 2.0, 'while': 1.0, 'but': 1.0, 'design': 1.0, 'also': 1.0, 'ones': 1.0, 'stroller': 2.0, 'back': 4.0, 'doesn': 2.0, 'has': 2.0, 'hook': 1.0, 'in': 1.0, 'that': 3.0, 'strap': 2.0, 'did': 1.0, 'same': 1.0, 'if': 1.0, 'an': 1.0, 'own': 1.0, 'presumably': 1.0, 'you': 1.0, 'citymini': 1.0, 'this': 1.0, 'with': 1.0, 'only': 1.0, 'it': 3.0, 'fit': 1.0, 'enough': 1.0, 'the': 7.0, 's': 2.0, 'a': 2.0, 't': 2.0, 'my': 2.0, 'jjcole': 3.0, 'of': 1.0, 'onto': 1.0, '34': 2.0, 'up': 1.0, 'have': 1.0, 'open': 1.0, 'accommodates': 1.0, 'not': 1.0, 'stay': 1.0, 'fine': 1.0, 'is': 2.0, 'and': 1.0, 'dandy': 1.0, 'which': 1.0, 'like': 1.0, 'sturdy': 1.0, 'all': 1.0, 'to': 1.0, 'your': 1.0, 'except': 1.0, 'on': 1.0}
Word element => {'well': 1.0, 'scrub': 1.0, 'better': 1.0, 'does': 1.0, 'news': 1.0, 'use': 1.0, 'then': 2.0, 'loved': 1.0, 'her': 1.0, 'good': 1.0, 'worth': 1.0, 'or': 1.0, 'so': 3.0, 'needs': 1.0, 'liquid': 2.0, 'needed': 1.0, 'special': 1.0, 'adorable': 1.0, 'who': 1.0, 'is': 2.0, 'ivory': 1.0, 'owl': 1.0, 'really': 1.0, 'buying': 1.0, 'with': 4.0, 'she': 3.0, 'it': 4.0, 'to': 2.0, 'much': 1.0, 'its': 2.0, 'soap': 3.0, 'the': 4.0, 't': 1.0, 'my': 1.0, 'for': 1.0, 'bed': 1.0, 'daughter': 1.0, 'purchased': 1.0, 'bar': 1.0, 'but': 2.0, 'work': 1.0, 'decided': 1.0, 'play': 1.0, 'and': 1.0, 'matter': 1.0, 'live': 1.0, 'near': 1.0, 'cute': 1.0, 'didn': 1.0, 'not': 2.0, 'fault': 1.0, 'would': 1.0, 'rather': 1.0}
Word element => {'just': 1.0, 'is': 1.0, 'great': 1.0, 'it': 1.0, 'love': 1.0, 'super': 1.0, 'price': 1.0, 'soft': 1.0, 'bright': 1.0, 'colorful': 1.0, 'baby': 1.0, 'little': 1.0, 'sponge': 1.0, 'looks': 1.0, 'adorable': 1.0, 'toy': 1.0, 'more': 1.0, 'a': 2.0, 'and': 3.0, 'like': 1.0, 'very': 1.0, 'entertaining': 1.0, 'for': 1.0}
Word element => {'highly': 1.0, 'would': 1.0, 'i': 1.0, 'beautifully': 1.0, 'the': 2.0, 'my': 1.0, 'recomend': 1.0, 'grandchildren': 1.0, 'beach': 1.0, 'for': 1.0, 'could': 1.0, 'air': 1.0, 'well': 1.0, 'so': 2.0, 'worked': 1.0, 'summer': 1.0, 'really': 1.0, 'space': 1.0, 'at': 1.0, 'nap': 1.0, 'this': 2.0, 'it': 3.0, 'darkens': 1.0, 'stroller': 1.0, 'they': 1.0, 'and': 1.0, 'flows': 1.0, 'through': 1.0}
Word element => {'than': 1.0, 'better': 1.0, 'definitely': 1.0, 'girl': 1.0, 'bother': 1.0, 'light': 1.0, 'of': 1.0, 'bit': 1.0, 'thankfully': 1.0, 'tray': 1.0, 'on': 1.0, 'over': 1.0, 'doesn': 2.0, 'stroller': 3.0, 'snooze': 1.0, 'shade': 1.0, 'seem': 1.0, 'wants': 1.0, 'much': 1.0, 'works': 1.0, 'try': 1.0, 'it': 2.0, 'she': 1.0, 'pinning': 1.0, 'snack': 1.0, 'graco': 1.0, 'm': 1.0, 'the': 7.0, 'nap': 1.0, 'a': 2.0, 't': 2.0, 'we': 1.0, 'daughter': 1.0, 'pull': 1.0, 'my': 3.0, 'take': 1.0, 'cover': 2.0, 'actually': 1.0, 'when': 1.0, 'asks': 1.0, 'her': 1.0, 'part': 1.0, 'really': 1.0, 'to': 6.0, 'all': 1.0, 'have': 1.0, 'that': 2.0, 'swaddles': 1.0, 'metrolite': 1.0, 'fully': 1.0, 'sides': 1.0, 'and': 2.0, 'feels': 1.0, 'downside': 1.0, 'like': 1.0, 'i': 2.0, 'well': 1.0, 'stretching': 1.0, 'point': 1.0, 'breaking': 1.0, 'snoozeshade': 1.0, 'if': 1.0, 'below': 1.0}
Word element => {'myself': 1.0, 'but': 1.0, 'trouble': 1.0, 'quality': 1.0, 'them': 1.0, 'made': 1.0, 'with': 1.0, 'it': 1.0, 'parting': 1.0, 'larger': 1.0, 'had': 1.0, 'bawwww': 1.0, 'have': 1.0, 'given': 1.0, 'for': 2.0, 've': 1.0, 'these': 1.0, 'i': 3.0, 'two': 1.0, 'times': 1.0, 'of': 1.0, 'as': 1.0, 'very': 1.0, 'and': 1.0, 'get': 1.0, 'both': 1.0, 'ably': 1.0, 'even': 1.0, 'me': 1.0, 'not': 1.0, 'one': 1.0, 'huge': 1.0, 'overly': 1.0, 'incredibly': 1.0, 'cute': 1.0, 'they': 1.0, 'gifts': 1.0, 'are': 1.0, 'expected': 1.0, 'well': 1.0, 's': 1.0, 'a': 1.0, 'critic': 1.0, 'like': 1.0, 'than': 1.0, 'maybe': 1.0, 'll': 1.0, 'finally': 1.0}
Word element => {'too': 1.0, 'but': 1.0, 'never': 1.0, 'it': 1.0, 'over': 3.0, 'loud': 1.0, 'bell': 1.0, 'the': 1.0, 'ring': 1.0, 'kettler': 1.0, 'not': 1.0, 'fingers': 1.0, 'anything': 1.0, 'is': 2.0, 'quality': 1.0, 'and': 3.0, 'wears': 1.0, 'little': 1.0, 'durable': 1.0, 'for': 1.0, 'out': 1.0, 'top': 1.0, 'who': 1.0}
Word element => {'product': 1.0, 'this': 1.0, 'recommend': 1.0, 'good': 1.0, 'has': 1.0, 'sound': 1.0, 'bell': 2.0, 'classic': 1.0, 'tring': 2.0, 'color': 1.0, 'of': 1.0, 'metal': 1.0, 'plasticsolid': 1.0, 'maroon': 1.0, 'not': 1.0, 'would': 1.0, 'is': 1.0, 'which': 1.0, 'quality': 1.0, 'doesn': 1.0, 'match': 1.0, 'the': 3.0, 'more': 1.0, 'red': 2.0, 't': 1.0, 'cycle': 1.0}
Word element => {'dangling': 1.0, 'with': 1.0, 'don': 1.0, 'adjusted': 1.0, 'straps': 2.0, 'ends': 1.0, 'position': 1.0, 'elastic': 1.0, 'front': 1.0, 'in': 1.0, 'perfectly': 1.0, 'deal': 1.0, 'baby': 1.0, 'myself': 1.0, 'of': 1.0, 'the': 6.0, 'by': 1.0, 'just': 2.0, 'off': 1.0, 'long': 1.0, 'on': 4.0, '3': 2.0, 'husbands': 1.0, 'am': 1.0, 'when': 2.0, 'to': 5.0, 'our': 2.0, 'fits': 2.0, 'my': 2.0, 'me': 3.0, 'not': 1.0, 'great': 1.0, 'and': 3.0, 'adjustable': 2.0, 's': 2.0, 'take': 1.0, 'we': 1.0, 'might': 1.0, 'using': 2.0, 'which': 1.0, 'hold': 1.0, 'for': 2.0, 'afraid': 1.0, 't': 1.0, 'fit': 1.0, 'carrier': 2.0, 'back': 1.0, 'able': 1.0, 'have': 2.0, 'a': 2.0, 'small': 1.0, 'expectations': 1.0, 'than': 1.0, 'been': 1.0, 'that': 4.0, 'too': 1.0, 'lives': 1.0, 'up': 2.0, '34': 2.0, 'love': 1.0, 'he': 2.0, 'down': 1.0, 've': 1.0, 'well': 1.0, 'i': 7.0, 'is': 3.0, 'comfortable': 1.0, 'say': 1.0, 'around': 1.0, 'carry': 1.0, 'holds': 1.0, 'fully': 1.0, 'help': 1.0, 'though': 1.0, 'weeks': 1.0, 'now': 1.0, 'but': 2.0, 'so': 1.0, 'lightweight': 1.0, 'can': 1.0, 'more': 1.0, 'husband': 1.0, 'its': 1.0, 'usually': 1.0, 'only': 1.0, 'end': 1.0, 'put': 1.0, 'much': 1.0, '5': 1.0, 'few': 1.0, 'this': 1.0, '30': 1.0, 'duty': 1.0, 'it': 13.0, 'month': 1.0, 'very': 1.0, 'important': 1.0, '1': 1.0, 'since': 1.0, 'out': 2.0, 'tested': 1.0, 'type': 1.0, 'old': 1.0, 'lb': 1.0, 'toddler': 1.0, 'said': 1.0, 'was': 2.0, 'as': 2.0, 'heavy': 1.0, 'backpack': 1.0, '6': 1.0, 'carriers': 1.0, 'even': 1.0, 'weight': 1.0, 'still': 2.0, 'seem': 1.0, 'also': 2.0}
Word element => {'be': 1.0, 'ask': 1.0, 'language': 1.0, 'sign': 1.0, 'uses': 1.0, 'on': 1.0, 'our': 1.0, 'how': 1.0, 'goes': 1.0, 'surprise': 1.0, 'bonus': 1.0, 'sits': 1.0, 'the': 2.0, 'put': 1.0, 'but': 1.0, 'weight': 1.0, 'light': 1.0, 'comfortable': 1.0, 'for': 1.0, 'in': 2.0, 'is': 2.0, 'and': 4.0, 'son': 1.0, 'very': 1.0, 'are': 1.0, 'granddaughter': 1.0, 'to': 4.0, 'daughter': 1.0, 'gave': 1.0, 'with': 1.0, 'first': 1.0, 'this': 1.0, 'it': 3.0, 'i': 1.0, 'birthday': 1.0, 'they': 1.0, 'ergo': 1.0, 'biggest': 1.0, 'my': 2.0, 'happy': 1.0, 'fits': 1.0, 'law': 1.0, 'granddaughters': 1.0, 'well': 1.0}
Word element => {'functional': 1.0, 'product': 1.0, 'recommend': 1.0, 'or': 2.0, 'around': 1.0, 'his': 1.0, 'this': 2.0, 'legs': 1.0, 'get': 2.0, 'going': 1.0, 're': 1.0, 'you': 1.0, 'storage': 1.0, 'bit': 2.0, 'can': 1.0, 'so': 3.0, 'insert': 3.0, 'terribly': 1.0, 'ideal': 1.0, 'intent': 1.0, 'control': 1.0, 'been': 1.0, 'tricky': 1.0, 'not': 3.0, 'infant': 4.0, 'using': 3.0, 'that': 1.0, 'young': 1.0, 'old': 1.0, 'for': 5.0, 'once': 3.0, 'incredibly': 1.0, 'better': 1.0, 'pockets': 1.0, 'with': 3.0, 'older': 2.0, 'it': 13.0, 'stopped': 1.0, 'i': 4.0, 'me': 1.0, 'may': 1.0, 'my': 1.0, 'but': 3.0, 'have': 1.0, '8': 1.0, 'a': 6.0, 't': 1.0, 'she': 1.0, 'becomes': 1.0, 'baby': 6.0, 'felt': 1.0, 'ergo': 2.0, 'hot': 1.0, 'trunk': 1.0, 'out': 1.0, 'newborn': 1.0, 'if': 1.0, 'still': 1.0, 'body': 1.0, 'as': 2.0, 'on': 2.0, 'your': 2.0, 'more': 1.0, 'and': 6.0, 've': 1.0, 'her': 1.0, 'use': 1.0, 'handful': 1.0, 'managed': 1.0, 'feeling': 1.0, 'times': 1.0, 'would': 1.0, 'weeks': 1.0, 'bulky': 1.0, 'seemed': 1.0, 'great': 1.0, 'comfortable': 2.0, 'spread': 1.0, 'never': 1.0, 'was': 1.0, 'very': 1.0, 'little': 1.0, 'uncomfortable': 1.0, 'of': 2.0, 'the': 13.0, 'person': 1.0, 'wearing': 1.0, 'had': 1.0, 'head': 1.0, 'even': 1.0, 'didn': 1.0, 'we': 2.0, 'then': 1.0, 'distributing': 1.0, 'really': 2.0, 'hood': 1.0, 'like': 2.0, 'care': 1.0, 'ok': 1.0, 'secure': 1.0, 'us': 1.0, 'also': 1.0, 'works': 1.0, 's': 3.0, 'maybe': 1.0, 'verdict': 1.0, 'does': 1.0, 'just': 2.0, 'said': 1.0, 'carrier': 1.0, 'is': 6.0, 'at': 1.0, 'weight': 1.0, 'hips': 1.0, 'to': 2.0, 'job': 1.0, 'pretty': 1.0, 'user': 1.0}
Word element => {'friends': 1.0, 'definitely': 1.0, 'would': 1.0, 'parents': 1.0, 'other': 1.0, 'let': 1.0, 'important': 1.0, 'but': 1.0, 'reviews': 1.0, 'write': 1.0, 'one': 1.0, 'don': 1.0, 'what': 1.0, 'off': 1.0, 'keep': 1.0, 'hood': 1.0, 'this': 1.0, 'soft': 1.0, 'not': 1.0, 'me': 1.0, 'sun': 1.0, 'husband': 1.0, 'to': 6.0, 'easy': 2.0, 'know': 1.0, 'like': 2.0, 'things': 1.0, 'fussy': 1.0, 'even': 1.0, 'asap': 1.0, 'falls': 1.0, 'drizzle': 1.0, 'wear': 1.0, 'product': 1.0, 'for': 2.0, 'comfortable': 2.0, 'risk': 1.0, 'infant': 1.0, 'week': 1.0, 'weeks': 1.0, 'first': 1.0, 'daily': 1.0, 'felt': 1.0, 'it': 14.0, 'how': 2.0, 'adjust': 1.0, 'he': 2.0, 'wearing': 1.0, 'after': 1.0, 'i': 9.0, 'took': 1.0, 'old': 1.0, 'happy': 1.0, 'nervous': 1.0, 'both': 1.0, 'about': 3.0, 'baby': 1.0, 'trying': 1.0, 'recommend': 1.0, 'was': 2.0, 'with': 3.0, 'buying': 1.0, 'carrier': 1.0, 'myself': 1.0, 'asleep': 1.0, 'the': 5.0, 'without': 1.0, '7': 1.0, 'put': 1.0, 'on': 2.0, 'when': 2.0, 'am': 3.0, 'lbs': 1.0, 'because': 1.0, 'find': 1.0, 'light': 1.0, 'by': 1.0, 'life': 1.0, 'savor': 1.0, 'family': 1.0, 'my': 5.0, 'hot': 1.0, 'ergo': 1.0, 'gets': 1.0, 'son': 4.0, 'very': 3.0, 'is': 7.0, 'and': 8.0, '9': 1.0, '5': 1.0, 't': 1.0, 'a': 3.0, 'we': 1.0, 'use': 1.0, 'glad': 1.0, 'insert': 2.0, 'in': 2.0}
Word element => {'way': 1.0, 'thumbs': 1.0, 'out': 1.0, 'when': 1.0, 'loves': 1.0, 'comfortable': 1.0, 'very': 1.0, 'is': 1.0, 'need': 1.0, 'get': 1.0, 'cart': 1.0, 'space': 1.0, 'free': 1.0, 'got': 1.0, 'grocery': 1.0, 'in': 4.0, 'baby': 4.0, 'we': 2.0, 'a': 3.0, 'day': 1.0, 'and': 4.0, 'wearing': 1.0, 'd': 1.0, 'two': 1.0, 'i': 4.0, 'about': 1.0, 'whole': 1.0, 'her': 1.0, 'if': 1.0, 'did': 1.0, 'mom': 1.0, 'not': 1.0, 'because': 1.0, 'it': 3.0, 'this': 1.0, 'with': 1.0, 'love': 2.0, 'hands': 1.0, 'the': 6.0, 're': 1.0, 'enough': 2.0, 've': 1.0, 'new': 1.0, 'cumbersome': 1.0, 'saw': 1.0, 'carrier': 1.0, 'opened': 1.0, 'other': 1.0, 'errands': 1.0, 'up': 2.0, 'of': 1.0, 'world': 1.0, 'run': 1.0, 'sleep': 1.0, 'as': 1.0, 'seat': 1.0, 'to': 4.0, 'store': 1.0, 'was': 1.0, 'trouble': 1.0, 'stroller': 1.0, 'bringing': 1.0, 'have': 1.0, 'what': 1.0, 'had': 1.0, 'either': 1.0, 'bucket': 1.0, 'or': 1.0, 'waistband': 1.0, 'ergo': 1.0}
Word element => {'an': 1.0, 'didn': 1.0, 'bucks': 1.0, '40': 1.0, 'was': 1.0, 'thing': 1.0, 'children': 1.0, 'had': 1.0, 'adds': 1.0, 'other': 1.0, 'are': 1.0, 'there': 1.0, 'wow': 1.0, 'outrageous': 1.0, 'yet': 1.0, 'comfortable': 1.0, 'feel': 1.0, 'and': 3.0, 'away': 1.0, 'they': 1.0, 'how': 1.0, '35': 1.0, 'price': 1.0, 'baby': 1.0, 'i': 3.0, 'so': 2.0, 'it': 6.0, 'this': 1.0, 'with': 2.0, 'made': 1.0, 'well': 1.0, 't': 2.0, 'little': 1.0, 'back': 1.0, 'pack': 1.0, 'to': 1.0, 'need': 1.0, 'wanted': 1.0, 'don': 1.0, 'up': 1.0, 'the': 4.0, 'believe': 1.0, '00': 1.0, 'more': 1.0, 'comes': 1.0, 'holds': 1.0, 'is': 3.0, 'loves': 1.0, 'that': 2.0, 'my': 1.0, 'niece': 1.0, 'when': 1.0, 'lbs': 1.0, 'you': 2.0, 'get': 1.0, 'hence': 1.0, 'expensive': 1.0, 'love': 1.0, 'know': 1.0, 'cannot': 1.0, 'though': 1.0, 'nothing': 1.0, 'meaning': 1.0, 'same': 1.0, 'want': 1.0, 'if': 1.0, 'insert': 2.0, 'money': 1.0, 'but': 2.0, 'can': 1.0}
Word element => {'carry': 1.0, 'front': 1.0, 'into': 1.0, 'super': 1.0, 'enough': 1.0, 'aren': 1.0, 'yourself': 2.0, 'by': 2.0, 'back': 1.0, 'your': 1.0, 'get': 2.0, 'difficult': 1.0, 'adjust': 1.0, 'comfortable': 1.0, 'husband': 2.0, 'women': 1.0, 'sizing': 1.0, 'off': 1.0, 'none': 1.0, 'son': 1.0, 'still': 1.0, 'my': 4.0, 'both': 3.0, 'people': 1.0, 'discretely': 1.0, 'don': 1.0, 'of': 2.0, 'the': 7.0, 'pretty': 1.0, 'to': 9.0, 'falls': 1.0, 'as': 2.0, 'all': 1.0, 'easy': 3.0, 'performance': 1.0, 's': 5.0, 'a': 8.0, 'go': 1.0, 't': 2.0, 'mamas': 1.0, 'breastfeeding': 1.0, 'nurse': 1.0, 'expect': 2.0, 'baby': 6.0, 'are': 1.0, 'taking': 1.0, 'usually': 1.0, 'do': 1.0, 'much': 2.0, 'that': 2.0, 'everywhere': 2.0, 'quite': 1.0, 'men': 1.0, 'carrier': 3.0, 'needed': 1.0, 'wear': 1.0, 'it': 11.0, 'this': 6.0, 'but': 2.0, 'while': 1.0, 'wearing': 1.0, 'extremely': 1.0, '6': 1.0, 'live': 1.0, 'fantastic': 1.0, 'carrying': 1.0, 'hassle': 2.0, 'makes': 1.0, 'warm': 1.0, 'wiser': 1.0, 'sweaty': 1.0, 'done': 1.0, 'anywhere': 1.0, 'arms': 1.0, 'and': 7.0, 'can': 1.0, 'so': 1.0, 'easier': 1.0, 'i': 6.0, 'well': 2.0, 'hot': 1.0, 've': 3.0, 'in': 1.0, 'hiking': 1.0, 'said': 1.0, 'asleep': 1.0, 'which': 1.0, 'be': 5.0, 'bonus': 1.0, 'us': 1.0, 'also': 1.0, 'will': 1.0, 'is': 4.0, 'major': 1.0, 'worn': 2.0, 'miles': 1.0, 're': 1.0, 'stroller': 2.0, 'shopping': 1.0, 'sporting': 1.0, 'able': 1.0, 'things': 1.0, 'you': 2.0, 'when': 1.0, 'events': 1.0, '34': 2.0, 'such': 1.0, 'for': 4.0, 'fabric': 1.0, 'nice': 1.0, 'little': 1.0, 'cool': 1.0, 'after': 1.0, 'cannot': 1.0, 'very': 2.0, 'being': 1.0, 'long': 1.0, 'on': 2.0, 'would': 1.0, 'summer': 1.0, 'without': 1.0, 'days': 1.0, 'was': 1.0, 'take': 1.0, 'fine': 1.0, 'just': 2.0}
Word element => {'world': 1.0, 'the': 1.0, 'over': 1.0, 'an': 1.0, 'old': 1.0, 'also': 1.0, 'we': 2.0, 'time': 1.0, 'is': 1.0, 'of': 1.0, 'favorite': 1.0, 'original': 1.0, 'it': 1.0, 'this': 1.0, '19': 1.0, 'have': 1.0, 'all': 2.0, 'use': 1.0, 'my': 1.0, 'carrier': 2.0, 'which': 1.0, 'our': 2.0, 'and': 1.0, 'using': 1.0, 'for': 2.0, 'one': 1.0, 'infant': 1.0, 'month': 1.0}
Word element => {'do': 1.0, 'that': 1.0, 'have': 1.0, 'must': 1.0, 'ad': 1.0, 'lighter': 2.0, 'is': 2.0, 'material': 2.0, 'first': 1.0, 'pros': 1.0, 'are': 1.0, 'no': 1.0, 'baby': 1.0, 'with': 1.0, 'especially': 1.0, 'bit': 1.0, 'little': 1.0, 'me': 1.0, 'then': 1.0, 'took': 1.0, 'few': 1.0, 'lil': 1.0, 'while': 1.0, 'both': 1.0, 'used': 1.0, 'now': 1.0, 'free': 1.0, 'at': 1.0, 'home': 1.0, 'chores': 1.0, 'donning': 1.0, 'one': 1.0, 'i': 3.0, 'mall': 1.0, 'returned': 1.0, 'original': 1.0, 'way': 1.0, 'times': 1.0, 'you': 1.0, 'hands': 1.0, 'the': 5.0, 'it': 6.0, 'great': 1.0, 'bring': 1.0, 'my': 2.0, 'this': 2.0, 'doing': 1.0, 'use': 1.0, 'up': 1.0, 'but': 1.0, 'can': 1.0, 'than': 1.0, 'usually': 1.0, 'help': 1.0, 'e': 1.0, 'to': 5.0, 'sleep': 1.0, 'likes': 1.0, 'well': 1.0, 'check': 1.0, 'we': 2.0, 't': 1.0, 'a': 3.0, 'in': 1.0, 'putting': 1.0, 'him': 1.0, 'think': 1.0, 'on': 2.0, 'make': 1.0, 'love': 1.0, 'fit': 1.0, 'get': 2.0, 'sure': 1.0, 'doesn': 1.0, 'and': 5.0, 'too': 2.0, 'warm': 1.0, 'definitely': 2.0, 'need': 1.0, 'got': 2.0, 'pockets': 1.0, 'partner': 1.0}
Word element => {'again': 1.0, 'them': 1.0, 'use': 1.0, 'product': 1.0, 'service': 1.0, 'with': 1.0, 'shipped': 1.0, 'quickly': 1.0, 'item': 1.0, 'ad': 1.0, 'as': 1.0, 'described': 1.0, 'and': 2.0, 'would': 1.0, 'was': 1.0, 'happy': 1.0, 'in': 1.0, 'the': 2.0}
Word element => {'one': 1.0, 'well': 1.0, 'knows': 1.0, 'already': 1.0, 'to': 1.0, 'everyone': 1.0, 'an': 1.0, 'but': 1.0, 'awesome': 1.0, 'that': 1.0, 'multiple': 1.0, 'is': 1.0, 'savwe': 1.0, 'carrier': 1.0, 'this': 2.0, 'have': 1.0, 'i': 1.0, 'tried': 1.0, 'carriers': 1.0, 'trying': 1.0, 'some': 1.0, 'as': 2.0, 'worked': 1.0, 'money': 1.0, 'and': 1.0, 'nothing': 1.0}
Word element => {}
Word element => {'though': 1.0, 'comfortable': 1.0, 'wear': 1.0, 'of': 3.0, 'in': 1.0, 'wish': 1.0, 'could': 1.0, 'adjust': 1.0, 'out': 2.0, 'option': 1.0, 'an': 1.0, 'put': 1.0, 'ways': 1.0, 'too': 1.0, 'to': 3.0, 'as': 1.0, 'very': 1.0, 'kind': 1.0, 'facing': 1.0, 'easy': 1.0, 'baby': 2.0, 'lots': 1.0, 'this': 1.0, 'have': 1.0, 'i': 2.0, 'and': 2.0, 'do': 1.0, 'the': 1.0}
Word element => {'purchases': 1.0, 'supply': 1.0, 'said': 1.0, 'like': 1.0, 'overly': 1.0, 'us': 1.0, 'quality': 1.0, 'say': 2.0, 'outings': 1.0, 'will': 1.0, 'soon': 1.0, 'sooner': 1.0, 'nicer': 1.0, 'soooo': 1.0, 'free': 1.0, 'stress': 1.0, 'takes': 1.0, 'looks': 1.0, 'now': 1.0, 'trying': 1.0, 'carrying': 1.0, 'things': 1.0, 'forget': 1.0, 'done': 2.0, 'store': 1.0, 'cart': 2.0, 'sit': 1.0, 'enough': 2.0, 'stable': 1.0, 'not': 2.0, 'push': 1.0, 'seat': 2.0, 'car': 1.0, 'likes': 1.0, 'bought': 2.0, 'better': 1.0, 'errands': 1.0, 'absolute': 1.0, 'running': 1.0, 'colors': 1.0, 'passed': 1.0, 'test': 1.0, 'definitely': 1.0, 'sights': 1.0, 'that': 1.0, 'wish': 1.0, 'figure': 1.0, 'etc': 1.0, 'feel': 1.0, 'any': 2.0, '000': 1.0, 'had': 2.0, 'am': 1.0, 'sitter': 1.0, 'up': 5.0, 'ended': 3.0, 'run': 1.0, 'at': 6.0, 'outing': 1.0, 'next': 3.0, 'has': 1.0, 'teething': 1.0, 'straps': 2.0, 'stroller': 1.0, 'our': 2.0, 'glad': 2.0, 'chewing': 1.0, 'five': 1.0, 'relaxed': 1.0, 'me': 3.0, 'on': 3.0, 'long': 1.0, 'amount': 1.0, 'so': 10.0, 'is': 18.0, 'can': 2.0, 'do': 1.0, 'much': 3.0, 'mission': 1.0, 'was': 15.0, '5k': 2.0, 'also': 2.0, 'this': 11.0, 'flying': 1.0, 'bottle': 1.0, 'fell': 1.0, 'anywhere': 1.0, '24': 1.0, 'covers': 1.0, 'already': 1.0, 'with': 6.0, 'first': 2.0, 'love': 2.0, 'fussed': 1.0, 'carrier': 14.0, 'use': 1.0, 'an': 1.0, 'just': 3.0, 'and': 24.0, 'trip': 1.0, 'easy': 2.0, 'months': 1.0, 'big': 1.0, 'spend': 2.0, 'hold': 2.0, '1': 1.0, 'put': 3.0, 'hungry': 1.0, 'immediately': 1.0, 'happy': 1.0, 'got': 3.0, 'one': 5.0, 'seated': 1.0, 'went': 1.0, 'figured': 2.0, 'my': 5.0, 'hour': 1.0, 'the': 22.0, 'old': 1.0, 'of': 8.0, 'longer': 1.0, 'both': 3.0, 'people': 1.0, 'house': 1.0, 'started': 1.0, 'but': 5.0, 'money': 1.0, 'no': 3.0, 'feed': 1.0, 'about': 7.0, 'for': 11.0, 'races': 1.0, 'i': 28.0, 'slept': 2.0, 'hard': 2.0, 'while': 3.0, 'facing': 1.0, 'short': 1.0, 'should': 1.0, 'hesitant': 1.0, 'would': 7.0, 'favorite': 1.0, 'strain': 1.0, 'it': 26.0, 'be': 3.0, 'length': 1.0, 'race': 6.0, 'out': 7.0, 'end': 1.0, '2': 1.0, 'going': 2.0, 'bad': 1.0, 'we': 6.0, 'more': 2.0, 'fair': 1.0, 'in': 22.0, 'secure': 1.0, 'than': 3.0, 'matter': 1.0, 'mile': 1.0, 'bed': 1.0, 'when': 2.0, 'shopping': 1.0, 'his': 4.0, 'least': 1.0, 'around': 2.0, 'nothing': 1.0, 'head': 1.0, 'him': 10.0, 'he': 24.0, 'looked': 1.0, 'half': 1.0, 'snuggled': 1.0, 'asleep': 2.0, 'back': 2.0, 'always': 1.0, 'most': 1.0, 'through': 2.0, 'into': 1.0, 'woke': 1.0, 'three': 2.0, 'rest': 1.0, 't': 1.0, 'baby': 4.0, 'hours': 5.0, 'times': 2.0, 'morning': 1.0, 'a': 19.0, 'nap': 1.0, 'decided': 1.0, 'were': 1.0, 'fact': 1.0, 'what': 1.0, 'sister': 1.0, 'normally': 2.0, 's': 1.0, 'still': 1.0, 'super': 1.0, 'all': 1.0, 'way': 3.0, 'bowl': 1.0, 'party': 1.0, 'pad': 1.0, 'past': 1.0, 'falling': 1.0, 'or': 2.0, 'stay': 2.0, 'again': 1.0, 'used': 1.0, 'squirmy': 2.0, 'adjusting': 1.0, 'positions': 1.0, 'because': 2.0, 'time': 9.0, 'kind': 1.0, 'walk': 1.0, '3': 1.0, 'worn': 1.0, 'weight': 1.0, 'position': 2.0, 'take': 1.0, 'never': 4.0, 'spent': 1.0, 'have': 6.0, 'fussy': 1.0, 'there': 2.0, 'calms': 1.0, 'to': 19.0, 'right': 1.0, 'last': 1.0, 'down': 1.0, 'bulky': 1.0, 'comfortable': 4.0, 'wanted': 1.0, 'many': 2.0, 'where': 1.0, 'could': 1.0, 'face': 2.0, 'comfort': 1.0, 'poked': 1.0, 'four': 1.0, 'positioned': 1.0, 'important': 1.0, 'being': 1.0, 'however': 1.0, 'get': 5.0, 'able': 1.0, 'mean': 1.0, 'if': 4.0, 'great': 3.0, 'calm': 1.0, 'forward': 1.0, 'minute': 1.0, 'then': 1.0, 'only': 1.0, 'isn': 1.0, 'obviously': 1.0, 'before': 1.0, 'probably': 1.0, 'uncomfortable': 2.0, 'squirms': 1.0, 'digging': 1.0}
Word element => {'never': 1.0, 'than': 1.0, 'better': 1.0, 'position': 1.0, 'carrying': 1.0, 'even': 1.0, 'his': 1.0, 'while': 1.0, 'being': 1.0, 'often': 1.0, 'comfortable': 2.0, 'and': 3.0, 'little': 2.0, 'very': 2.0, 'he': 3.0, 'it': 2.0, 'with': 1.0, 'baby': 2.0, 'dad': 2.0, 'carried': 1.0, 'guy': 2.0, '6m': 1.0, 'ergo': 1.0, 'expected': 1.0, 'likes': 1.0, 'falls': 1.0, 'have': 1.0, 'carries': 2.0, 'old': 1.0, 'in': 1.0, 'also': 1.0, 'carrier': 2.0, 'when': 2.0, 'minutes': 1.0, 'without': 1.0, 'asleep': 2.0, 'the': 3.0, 'to': 1.0, 'our': 2.0, 'sleep': 1.0, 'sitting': 1.0, 'can': 1.0, 'shoulder': 1.0, 'go': 1.0, 's': 1.0, 't': 1.0, 'we': 3.0, 'is': 1.0, 'fall': 1.0, 're': 1.0, 'out': 2.0, 'him': 2.0, 'takes': 1.0, 'few': 1.0, 'who': 1.0, 'feels': 1.0, 'straps': 1.0}
Word element => {'kitchen': 1.0, 'move': 1.0, 'chair': 1.0, 'and': 1.0, 'material': 1.0, 'whole': 1.0, 'i': 2.0, 'before': 1.0, 'highchairs': 1.0, 'several': 1.0, 'easy': 3.0, 'researched': 1.0, 'lightweight': 1.0, 'the': 5.0, 'this': 1.0, 'it': 2.0, 'one': 1.0, 'purchasing': 1.0, 'for': 1.0, 'love': 1.0, 'was': 1.0, 'to': 3.0, 'assemble': 1.0, 'around': 1.0, 'enough': 1.0, 'top': 1.0, 'up': 1.0, 'of': 1.0, 'easily': 1.0, 'box': 1.0, 'removable': 1.0, 'is': 2.0, 'tray': 1.0, 'out': 1.0, 'clean': 2.0}
Word element => {'absolutely': 1.0, 'that': 1.0, 'so': 1.0, 'are': 1.0, 'there': 1.0, 'clean': 1.0, 'to': 1.0, 'easy': 1.0, 's': 2.0, 'i': 3.0, 'in': 2.0, 'highchair': 1.0, 'it': 5.0, 'this': 1.0, 'a': 2.0, '10': 1.0, 'on': 1.0, 'together': 1.0, 'minutes': 1.0, 'little': 1.0, 'resist': 1.0, 'about': 1.0, 'baby': 1.0, 't': 1.0, 'great': 1.0, 'the': 2.0, 'heavy': 1.0, 'features': 1.0, 'many': 1.0, 'is': 2.0, 'side': 1.0, 'put': 1.0, '40lbs': 1.0, 'love': 1.0, 'comfortable': 1.0, 'couldn': 1.0, 'and': 2.0}
Word element => {'in': 1.0, 'to': 2.0, 'easy': 2.0, 'super': 1.0, 'great': 2.0, 'love': 1.0, 'highchair': 1.0, 'it': 3.0, 'this': 1.0, 'a': 2.0, 'is': 2.0, 'move': 1.0, 'and': 2.0, 'roll': 1.0, 'around': 1.0, 'job': 1.0, 'keeping': 1.0, 'i': 1.0, 'that': 1.0, 'does': 1.0, 'reclines': 1.0, 'clean': 1.0, 'child': 1.0, 'locked': 1.0, 'my': 1.0}
Word element => {'was': 1.0, 'best': 1.0, 'as': 1.0, 'and': 1.0, 'it': 2.0, 'got': 1.0, 'pregnant': 1.0, 'this': 3.0, 'online': 1.0, 'for': 2.0, '8230': 1.0, 'the': 1.0, 'my': 1.0, 'december': 1.0, 'one': 1.0, 'found': 1.0, 'niece': 1.0, 'is': 1.0, 'who': 1.0, 'looked': 1.0}
Word element => {'anyone': 1.0, 'very': 1.0, 'tearable': 1.0, 'and': 1.0, 'blurry': 1.0, 'didn': 1.0, 'so': 1.0, 'to': 1.0, 'image': 1.0, 'was': 1.0, 'well': 1.0, 'would': 1.0, 'never': 1.0, 'coat': 1.0, 'the': 3.0, 't': 1.0, 'this': 1.0, 'itself': 1.0, 'is': 1.0, 'flimsy': 1.0, 'package': 1.0, 'stamp': 1.0, 'easily': 1.0, 'i': 1.0, 'recommend': 1.0}
Word element => {'period': 1.0, 'day': 1.0, 'didn': 1.0, 'last': 1.0, 'actually': 1.0, 'how': 1.0, 'die': 1.0, 'with': 1.0, 'played': 1.0, 't': 3.0, 'enough': 1.0, 'durable': 1.0, 'decreasing': 1.0, 'throw': 1.0, 'great': 1.0, 'returned': 1.0, 'being': 1.0, 'stress': 1.0, 'watch': 1.0, 'again': 1.0, 'after': 2.0, 'opinion': 1.0, 'honest': 1.0, 'pay': 1.0, 'mine': 1.0, '6': 1.0, 'hard': 1.0, 'over': 2.0, 'slobbers': 1.0, 'dead': 1.0, 'charging': 1.0, 'gets': 1.0, 'still': 1.0, 'if': 1.0, 'ahold': 1.0, 'dangerous': 1.0, 'prove': 1.0, 'packaging': 1.0, 'button': 1.0, 'off': 1.0, 'there': 1.0, 'does': 1.0, 'least': 1.0, 'make': 3.0, 'sound': 1.0, 'respective': 1.0, 'which': 1.0, 'side': 1.0, 'made': 2.0, 'across': 1.0, 'about': 1.0, 'more': 2.0, 'place': 1.0, 'should': 1.0, 'long': 1.0, 'update': 1.0, 'on': 5.0, 'young': 1.0, 'that': 9.0, 'be': 3.0, 'goofy': 1.0, 'turned': 1.0, '15': 1.0, 'round': 1.0, 'had': 2.0, 'would': 2.0, 'boy': 1.0, 'either': 1.0, 'other': 1.0, 'all': 2.0, 'as': 1.0, 'got': 1.0, 'took': 1.0, 'sounded': 1.0, 'even': 1.0, 'thought': 1.0, 'it': 13.0, 'review': 1.0, 'elephant': 3.0, 'things': 1.0, 'you': 2.0, 'from': 2.0, 'bought': 1.0, 'been': 1.0, 'amazon': 7.0, 'shipping': 1.0, 'kids': 1.0, 'disc': 1.0, 'price': 1.0, 'warehouse': 1.0, 'imagine': 1.0, 'a': 8.0, 'maybe': 1.0, 's': 5.0, 'going': 1.0, 'though': 2.0, 'like': 3.0, 'cheap': 1.0, 'and': 10.0, 'rating': 1.0, 'one': 2.0, 'too': 1.0, 'what': 2.0, 'when': 3.0, 'cat': 1.0, 'anyway': 1.0, 'this': 4.0, 'first': 1.0, 'are': 3.0, 'cute': 2.0, 'sounds': 1.0, 'toys': 2.0, 'have': 4.0, 'aren': 1.0, 'skills': 1.0, 'they': 4.0, 'looking': 1.0, 'tennis': 1.0, 'charges': 1.0, 'is': 5.0, 'at': 2.0, 'specific': 1.0, 'of': 5.0, 'the': 23.0, 'replaceable': 2.0, '99': 1.0, 'sure': 2.0, 'store': 3.0, 'was': 2.0, 'i': 16.0, 'retail': 4.0, 'bullet': 1.0, '5': 1.0, 'before': 1.0, 'these': 2.0, 'room': 1.0, 'drooly': 1.0, 'house': 2.0, 'half': 1.0, 'toy': 7.0, 'shipped': 1.0, 'poor': 2.0, 'durability': 1.0, 'definitely': 1.0, 'think': 3.0, 'giggled': 1.0, 'makes': 1.0, 'did': 1.0, 'than': 2.0, 'ball': 1.0, 'way': 1.0, 'me': 1.0, 'my': 5.0, 'so': 2.0, 'can': 1.0, 'rolled': 2.0, 'com': 3.0, 'doorstep': 1.0, 'but': 5.0, 'to': 8.0, 'pretty': 1.0, 'size': 1.0, 'dying': 1.0, 'tired': 1.0, 'giggling': 1.0, 'won': 1.0, 'animal': 1.0, 'batteries': 8.0, 'could': 1.0, 'will': 3.0, 'completely': 1.0, 'died': 1.0, 'm': 3.0, 'in': 5.0, 'suppose': 1.0, 'living': 1.0, 'only': 1.0, 'do': 1.0, 'floor': 1.0, 'much': 1.0, 'itself': 1.0, 'not': 8.0, 'those': 2.0, 'spend': 1.0, 'for': 8.0, '10': 1.0, 'buy': 2.0, 'worth': 2.0, 'now': 2.0, 'new': 1.0, 'two': 1.0, 'little': 2.0, 'bit': 1.0, 'found': 2.0, 'returning': 1.0}
Word element => {'not': 1.0, 'would': 1.0, 'vacuum': 2.0, 'really': 1.0, 'her': 1.0, 'down': 1.0, 'cleaner': 1.0, 'in': 1.0, 'have': 1.0, 'bad': 1.0, 'to': 2.0, 'all': 1.0, 'the': 5.0, 'is': 1.0, 'more': 1.0, 'only': 1.0, 'this': 1.0, 'running': 1.0, 'unfortunately': 1.0, 'static': 1.0, 'thing': 1.0, 'colic': 1.0, 'quiet': 1.0, 't': 1.0, 'a': 3.0, 'however': 1.0, 'so': 1.0, 'i': 3.0, 'night': 1.0, 'daughter': 1.0, 'of': 1.0, 'has': 1.0, 'that': 2.0, 'case': 1.0, 'decided': 1.0, 'vacumm': 1.0, 'and': 1.0, 'car': 1.0, 'wasn': 1.0, 'an': 1.0, 'option': 1.0, 'reccommend': 1.0, 'purchase': 1.0, 'like': 1.0, 'cd': 2.0, 'very': 1.0, 'awful': 1.0, 'seems': 1.0, 'sounds': 1.0, 'than': 1.0}
Word element => {'filling': 1.0, 'than': 1.0, 'tantrum': 1.0, 'without': 1.0, 'shower': 1.0, 'gently': 1.0, 'fun': 1.0, 'let': 2.0, 'bottom': 2.0, 'holes': 2.0, 'having': 1.0, 'toy': 1.0, 'water': 1.0, 'favorite': 1.0, 'head': 3.0, 'getting': 1.0, 'doom': 1.0, 'impending': 1.0, 'baths': 1.0, 'fight': 1.0, 'was': 2.0, 'chore': 1.0, 'old': 1.0, 'makes': 1.0, 'now': 1.0, 'cup': 1.0, 'cups': 3.0, 'available': 1.0, 'time': 4.0, 'so': 4.0, 'year': 1.0, 'small': 2.0, 'a': 4.0, 'sense': 1.0, 's': 2.0, 'could': 3.0, 'going': 1.0, 'over': 1.0, 'don': 1.0, 'she': 5.0, 'starting': 1.0, 'it': 4.0, 'but': 3.0, 'is': 2.0, 'cleaned': 1.0, 'more': 2.0, 'regular': 1.0, 'two': 1.0, 'i': 7.0, 'for': 2.0, 'expensive': 1.0, 'lights': 1.0, 'cheap': 1.0, 'one': 2.0, 'bought': 2.0, 'along': 1.0, 't': 1.0, 'trivial': 1.0, 'after': 1.0, 'stacking': 3.0, 'with': 2.0, 'and': 9.0, 'me': 1.0, 'my': 1.0, 'much': 3.0, 'lets': 1.0, 'have': 4.0, 'understandable': 1.0, 'aware': 1.0, 'bath': 3.0, 'on': 2.0, 'make': 1.0, 'face': 4.0, 'toys': 3.0, 'simple': 1.0, 'dried': 1.0, 'being': 1.0, 'very': 2.0, 'in': 4.0, 'm': 2.0, 'of': 3.0, 'the': 15.0, 'all': 1.0, 'other': 2.0, 'playing': 1.0, 'to': 4.0, 'job': 1.0, 'out': 4.0, 'solution': 1.0, 'budget': 1.0, 'them': 2.0, 'most': 2.0, 'limited': 1.0, 'use': 2.0, 'her': 9.0, 'because': 1.0, 'that': 4.0, 'dumping': 1.0, 'were': 1.0, 'every': 2.0, 'buttons': 1.0, 'taste': 1.0, 'longs': 1.0, 'loves': 1.0, 'difficult': 1.0, 'household': 1.0, 'these': 1.0, 'know': 1.0, 'just': 2.0, 'why': 1.0, 'not': 1.0, 'easier': 1.0, 'complain': 1.0, 'hair': 1.0, 'incredibly': 1.0, 'pack': 1.0, 'better': 2.0, 'second': 1.0, 'active': 1.0, 'soap': 1.0, 'reason': 1.0, 'would': 1.0, 'freak': 1.0, 'yes': 1.0, 'off': 2.0, 'tried': 1.0, 'rinse': 1.0, 'shampoo': 1.0, 'or': 1.0}
Word element => {'food': 1.0, 'baby': 1.0, 'eating': 1.0, 'started': 1.0, 'just': 1.0, 'from': 1.0, 'who': 1.0, 'made': 1.0, 'my': 1.0, 'they': 2.0, 'are': 4.0, 'biodegradable': 1.0, 'that': 1.0, 'the': 1.0, 'these': 1.0, 'great': 1.0, 'month': 1.0, 'spoons': 1.0, '6': 1.0, 'little': 1.0, 'and': 1.0, 'plants': 1.0, 'perfect': 1.0, 'size': 1.0, 'love': 1.0, 'for': 1.0, 'i': 1.0, 'old': 1.0}
Word element => {'out': 1.0, 'was': 1.0, 'there': 1.0, 'foods': 1.0, 'messy': 1.0, 'super': 1.0, 'waterproof': 1.0, 'thick': 1.0, 'of': 1.0, 'type': 1.0, 'use': 1.0, 'i': 4.0, 'thrown': 1.0, 'girl': 1.0, 'baby': 1.0, 'so': 1.0, 'eats': 1.0, 'cover': 1.0, 'enough': 1.0, 'especially': 1.0, 'the': 6.0, 'stains': 1.0, 'that': 2.0, 'on': 1.0, 'wish': 1.0, 'this': 2.0, 'it': 4.0, 'only': 2.0, 'with': 1.0, 'velcro': 1.0, 'to': 3.0, 'as': 1.0, 'since': 1.0, 'bib': 2.0, 'and': 3.0, 'get': 2.0, 'print': 1.0, 'wiping': 1.0, 'my': 1.0, 'fact': 1.0, 'for': 1.0, 'love': 1.0, 'catch': 1.0, 'a': 1.0, 't': 2.0, 's': 1.0, 'straps': 1.0, 'way': 2.0, 'like': 1.0, 'clean': 2.0, 'is': 1.0, 'food': 1.0, 'can': 2.0, 'large': 1.0, 'by': 1.0, 'just': 2.0, 'be': 1.0, 'in': 1.0, 'don': 1.0, 'wash': 1.0, 'even': 1.0, 'well': 1.0, 'designed': 1.0}
Word element => {'organizing': 1.0, 'car': 1.0, 'cute': 1.0, 'my': 1.0, 'high': 1.0, 'well': 1.0, 'and': 2.0, 'quality': 1.0, 'so': 1.0, 'are': 1.0, 'things': 1.0, 'super': 1.0, 'pouches': 1.0, 'the': 1.0, 'these': 1.0, 'many': 1.0, 'uses': 1.0, 'i': 1.0, 'art': 1.0, 'one': 2.0, 'for': 2.0, 'in': 2.0, 'made': 1.0, 'them': 1.0, 'keep': 2.0, 'supplies': 1.0, 'other': 1.0}
Word element => {'linkcode': 1.0, 'as2': 1.0, 'creativeasin': 1.0, 'tag': 1.0, 'camp': 1.0, 'ie': 1.0, 'ss': 1.0, 'http': 1.0, 'help': 1.0, 'if': 1.0, 'hope': 1.0, 'organic': 1.0, 's': 2.0, 'plus': 1.0, 'after': 1.0, 'bonus': 1.0, 'stays': 1.0, 'cheers': 1.0, 'standard': 1.0, 'rough': 1.0, 'or': 1.0, 'com': 1.0, 'but': 1.0, 'washes': 1.0, 'soft': 2.0, 'washings': 1.0, 'others': 2.0, 'on': 2.0, 'settling': 1.0, 'not': 2.0, 'expensive': 1.0, 'for': 2.0, 'b0014hqita': 2.0, 'product': 2.0, 'crib': 1.0, 'line': 1.0, 'got': 1.0, 'daughter': 1.0, 'top': 3.0, 'review': 1.0, 'present': 1.0, 'creative': 1.0, 'easy': 1.0, 'some': 2.0, 'only': 1.0, 'received': 1.0, '6': 1.0, 'fits': 1.0, 'hamper': 3.0, 'other': 1.0, 'a': 4.0, 'to': 3.0, '390957': 1.0, 'very': 1.0, 'little': 1.0, 'li': 1.0, 'furniture': 3.0, 'sturdy': 1.0, 'pilly': 1.0, 'overall': 1.0, 'ref': 1.0, 'at': 2.0, 'is': 7.0, 'it': 7.0, 'peels': 1.0, 'shower': 1.0, 'comes': 1.0, 'once': 1.0, 'with': 1.0, 'mattress': 2.0, 'gp': 1.0, 'have': 1.0, 'as': 3.0, 'falls': 1.0, '1789': 1.0, 'using': 1.0, 'hold': 2.0, 'get': 1.0, 'months': 1.0, 'too': 1.0, 'one': 2.0, 'amazon': 1.0, 'been': 1.0, '20': 1.0, 'that': 2.0, 'there': 1.0, 'set': 1.0, 'snugly': 1.0, 'most': 1.0, 'then': 1.0, 'we': 2.0, 'difference': 1.0, 'and': 7.0, 'tl': 1.0, 'were': 1.0, 'together': 2.0, 'recommend': 1.0, 'almost': 1.0, 'now': 1.0, 'great': 1.0, 'until': 1.0, 'of': 3.0, 'the': 17.0, 'helpful': 2.0, 'heavier': 1.0, 'in': 1.0, 'fill': 1.0, 'quality': 1.0, 'was': 3.0, 'clothes': 1.0, 'between': 1.0, 'finally': 1.0, 'complaint': 1.0, 'bottom': 1.0, 'velcro': 1.0, 'does': 1.0, 'brands': 1.0, 'i': 2.0, 'well': 1.0, 'can': 1.0, 'so': 4.0, 'www': 1.0, 'sheet': 2.0, 'when': 1.0, 'you': 1.0, 'apart': 1.0, 'whole': 1.0, 'vote': 1.0, 'thing': 1.0, 'much': 1.0, 'do': 1.0, 'put': 1.0, 'floor': 1.0, 'nothing': 1.0, 'my': 3.0, 'undone': 1.0, 'following': 1.0, 'utf8': 1.0, 'up': 1.0, 'less': 2.0, 'useful': 1.0, 'd': 1.0, 'few': 1.0, 'this': 6.0, 'highly': 1.0, '1st': 1.0, 'went': 1.0, 'ties': 1.0, 'through': 1.0, '5': 1.0, 'stupisms': 1.0, 'different': 1.0, 'sheets': 1.0}
Word element => {'purchase': 1.0, 'my': 3.0, 'happy': 1.0, 'this': 1.0, 'only': 1.0, 'eating': 1.0, 'rather': 1.0, 'getting': 1.0, 'was': 1.0, 'now': 1.0, 'stores': 1.0, 'with': 1.0, 'buying': 1.0, 'to': 1.0, 'and': 2.0, 'milk': 2.0, 'bags': 1.0, 'is': 1.0, 'really': 1.0, 'little': 1.0, 'breastmilk': 1.0, 'bag': 1.0, 'into': 1.0, 'that': 1.0, 'pricey': 1.0, 'right': 1.0, 'wonderful': 1.0, 'son': 1.0, 'storage': 1.0, 'cubes': 2.0, 'be': 1.0, 'for': 1.0, 'product': 1.0, 'can': 1.0, 'stored': 1.0, 'in': 1.0, 'a': 1.0, 'bigger': 1.0, 'cheaper': 1.0, 'get': 1.0, 'easy': 1.0, 'the': 3.0, 'ziplock': 1.0, 'out': 1.0, 'silicone': 1.0, 'makes': 1.0, 'i': 1.0, 'm': 1.0}
Word element => {'like': 1.0, 're': 1.0, 'doesn': 1.0, 'fact': 1.0, 'we': 1.0, 'do': 1.0, 'and': 2.0, 'size': 1.0, 'kid': 1.0, 'our': 1.0, 'that': 2.0, 't': 1.0, 'these': 1.0, 'the': 2.0, 'them': 1.0, 'made': 1.0, 'of': 4.0, 'for': 1.0, 'love': 1.0, 'one': 1.0, 'they': 1.0, 'your': 1.0, 'piece': 1.0, 'material': 1.0, 'course': 1.0, 'none': 1.0, 'matters': 1.0, 'if': 1.0}
Word element => {'like': 1.0, 'to': 1.0, 'newborn': 1.0, 'piece': 1.0, 'single': 1.0, 'rubber': 1.0, 'i': 1.0, 'guess': 1.0, 'seems': 1.0, 'these': 1.0, 'they': 1.0, 'safer': 1.0, 'gum': 1.0, 'of': 2.0, 'because': 1.0, 'plastic': 1.0, 'just': 1.0, 'them': 1.0, 'a': 1.0, 're': 1.0, 'my': 1.0, 'are': 1.0, 'made': 1.0}
Word element => {'hand': 1.0, 'on': 1.0, 'favor': 1.0, 'pacifiers': 1.0, 'happen': 1.0, 'get': 1.0, 'left': 1.0, 'or': 2.0, 'dog': 1.0, 'find': 1.0, 'ever': 1.0, 'grandmas': 1.0, 'll': 1.0, 'come': 1.0, 'first': 1.0, 'with': 2.0, 'this': 1.0, 'thing': 1.0, 'yourself': 1.0, 'do': 1.0, 'only': 1.0, 'pack': 1.0, 'have': 2.0, 'good': 1.0, 'sun': 1.0, 'take': 1.0, 'but': 1.0, 'seems': 1.0, 'will': 1.0, 'gundrops': 1.0, 'she': 1.0, 'bunch': 2.0, 'every': 1.0, 'cute': 1.0, 'straps': 1.0, 'gets': 1.0, 'under': 1.0, 'they': 1.0, 'steal': 1.0, 'babies': 1.0, 'case': 1.0, 'that': 1.0, 'eats': 1.0, 'pacifier': 1.0, 'without': 1.0, 'the': 3.0, 'one': 3.0, 'bought': 1.0, 'whatever': 1.0, 'years': 1.0, 'colors': 1.0, 'don': 1.0, 'daughter': 1.0, 'for': 1.0, 'in': 2.0, 'we': 4.0, 't': 1.0, 'a': 4.0, 'outselves': 1.0, 'of': 1.0, 'and': 4.0, 'just': 2.0, 'at': 1.0, 'total': 1.0, 'accessorize': 1.0, 'six': 1.0, 'is': 1.0, 'now': 1.0, 'our': 1.0, 'paci': 1.0, 'to': 3.0, 'worry': 1.0}
Word element => {'over': 1.0, 'cover': 1.0, 'original': 1.0, 'round': 1.0, 'of': 1.0, 'design': 1.0, 'changed': 1.0, 'have': 1.0, 'colours': 1.0, 'well': 1.0, 'herself': 1.0, 'hurting': 1.0, 'nipple': 1.0, 'down': 1.0, 'inside': 1.0, 'nice': 1.0, 'finger': 1.0, 'her': 3.0, 'brand': 1.0, 'this': 2.0, 'nose': 1.0, 've': 1.0, 'can': 2.0, 'but': 1.0, 'like': 2.0, 'which': 1.0, 'pacifiers': 1.0, 'and': 5.0, 'under': 1.0, 'wants': 1.0, 'content': 1.0, 'gnaw': 1.0, 'use': 1.0, 'ever': 1.0, 'safety': 1.0, 'actually': 1.0, 'love': 2.0, 'for': 2.0, 'one': 1.0, 'i': 3.0, 'noses': 1.0, 'be': 1.0, 'choke': 1.0, 'that': 2.0, 'babies': 2.0, 'do': 2.0, 'only': 1.0, 'to': 6.0, 'all': 2.0, 'as': 2.0, 'our': 3.0, 'heart': 1.0, 'it': 1.0, 'she': 3.0, 'them': 2.0, 'baby': 2.0, 'curved': 1.0, 'without': 2.0, 'the': 6.0, 'break': 1.0, 'ones': 2.0, 'gumdrop': 2.0, 'teething': 1.0, 'mainly': 1.0, 'they': 1.0, 'accidentally': 1.0, 'is': 2.0, 'current': 1.0, 'on': 2.0, 'with': 4.0, 'piece': 1.0, 'part': 1.0, 'stick': 1.0, 'while': 1.0, 'are': 3.0, 'bit': 1.0, 'so': 1.0, 'instead': 1.0, 'there': 2.0, 'nothing': 1.0, 'getting': 1.0, 'nuk': 1.0, 'since': 1.0, 'no': 1.0, 'bite': 2.0, 'pieces': 1.0, 'apart': 1.0, 'other': 1.0, 's': 1.0, 'discovered': 1.0, 'we': 3.0, 'used': 2.0, 'also': 1.0, 'mam': 1.0}
Word element => {'pacifiers': 1.0, 'shape': 1.0, 'to': 1.0, 'much': 1.0, 'nuks': 1.0, 'i': 1.0, 'mouth': 1.0, 'the': 2.0, 'my': 1.0, 'time': 1.0, 'a': 1.0, 'difficult': 1.0, 'her': 1.0, 'of': 1.0, 'prefer': 1.0, 'has': 1.0, 'keeping': 1.0, 'this': 1.0, 'these': 1.0, 'pacifier': 1.0, 'daughter': 1.0, 'in': 1.0}
Word element => {'win': 1.0, 'at': 1.0, 'issue': 1.0, 'run': 1.0, 'binky': 1.0, 'don': 1.0, 'but': 1.0, 'hygienic': 1.0, 'very': 1.0, 'doesn': 1.0, 'occasionally': 1.0, 'inside': 1.0, 'trapped': 1.0, 'water': 1.0, 'because': 1.0, 'others': 1.0, 'these': 2.0, 'the': 5.0, 'basically': 1.0, 'face': 1.0, 'outline': 1.0, 'on': 1.0, 'with': 1.0, 'red': 1.0, 'piece': 1.0, 'get': 1.0, 'left': 1.0, 'is': 1.0, 'hospital': 1.0, 'of': 1.0, 'seemed': 1.0, 'big': 1.0, 'outgrows': 1.0, 'baby': 1.0, 'after': 2.0, 'so': 1.0, 'away': 1.0, 'pacifiers': 1.0, 'into': 1.0, 'that': 5.0, 'presto': 1.0, 'see': 1.0, 'well': 1.0, 'plastic': 1.0, 'mark': 1.0, 'right': 1.0, 'noticed': 1.0, 'common': 1.0, 'are': 1.0, 'pacifier': 1.0, 'i': 2.0, 'like': 1.0, 'you': 1.0, 'happened': 1.0, 'causing': 1.0, 'problem': 2.0, 'seem': 1.0, 'awhile': 1.0, 'before': 1.0, 't': 2.0, 'a': 4.0, 'could': 1.0, 'we': 1.0, 'ones': 1.0, 'switched': 1.0, 'one': 1.0, 'all': 1.0, 'as': 1.0, 'to': 2.0, 'it': 2.0, 'solved': 1.0}
Word element => {'pacifiers': 1.0, 'to': 1.0, 'bite': 1.0, 'loves': 1.0, 'tubes': 1.0, 'could': 1.0, 'daughter': 1.0, 'on': 1.0, 'bundle': 1.0, 'chewy': 1.0, 'find': 1.0, 'these': 1.0, '2': 1.0, 'the': 1.0, 'price': 1.0, 'a': 1.0, 'that': 1.0, 'for': 1.0, 'love': 1.0, 'have': 1.0, 'an': 1.0, 'i': 2.0, 'old': 1.0, 'hates': 1.0, 'autistic': 1.0, '3': 1.0, 'and': 1.0, '1': 1.0, 'yr': 1.0, 'who': 1.0}
Word element => {'words': 1.0, 'them': 1.0, 'baby': 1.0, 'my': 1.0, 'tried': 1.0, 'are': 1.0, 'cute': 1.0, 'so': 1.0, 'we': 1.0, 'making': 1.0, 'more': 1.0, 'these': 2.0, 'loves': 1.0, 'thats': 1.0, 'others': 1.0, 'came': 1.0, 'its': 1.0, 'to': 1.0, 'write': 1.0, 'have': 1.0, 'all': 1.0, 'back': 1.0, 'but': 1.0, 'and': 1.0, 'me': 1.0}
Word element => {'overall': 1.0, 'attracts': 1.0, 'of': 1.0, 'fuzzies': 1.0, 'other': 1.0, 'hair': 1.0, 'dog': 1.0, 'constantly': 1.0, 'hated': 1.0, 'picking': 1.0, 'he': 2.0, 'it': 1.0, 'and': 5.0, 'pacifiers': 1.0, 'don': 1.0, 'them': 6.0, 'baby': 1.0, 'nose': 2.0, 'value': 1.0, 'his': 2.0, 'covered': 2.0, 'old': 1.0, 'still': 1.0, 'they': 2.0, 'these': 2.0, 'great': 1.0, 'my': 1.0, 'preemie': 1.0, 'off': 1.0, 're': 1.0, 'because': 2.0, 'loved': 1.0, '2': 1.0, 'but': 3.0, 'i': 7.0, '4': 2.0, 'months': 1.0, 'ordered': 1.0, 'uses': 1.0, 'that': 4.0, 'loves': 1.0, 'gave': 1.0, 'just': 1.0, 'by': 1.0, 'random': 1.0, 'm': 1.0, 'love': 1.0, 'stars': 1.0, 's': 2.0, 't': 2.0, 'a': 2.0, 'like': 1.0, 'wasn': 1.0, 'rubbery': 1.0, 'material': 2.0, 'everything': 2.0, 'sticks': 1.0, 'to': 1.0, 'dogs': 1.0, 'have': 1.0}
Word element => {'product': 1.0, 'are': 1.0, 'we': 2.0, 'thumb': 1.0, 'pacis': 1.0, 'not': 1.0, 'really': 1.0, 'is': 2.0, 'old': 1.0, 'to': 2.0, 'her': 3.0, 'sleep': 1.0, 'almost': 1.0, 'into': 1.0, 'or': 1.0, 'one': 1.0, 'recommend': 1.0, '3mo': 1.0, 'happy': 1.0, 'my': 1.0, 'the': 3.0, 'with': 1.0, 'this': 1.0, 'only': 1.0, 'and': 2.0, 'that': 1.0, 'seems': 1.0, 'soothe': 1.0, 'quality': 1.0, 'put': 1.0, 'but': 1.0, 'instantly': 1.0}
Word element => {'fake': 1.0, 'very': 1.0, 'medical': 1.0, 'produced': 1.0, 'by': 2.0, 'same': 1.0, 'it': 4.0, 'this': 1.0, 'hard': 1.0, 'on': 1.0, 'daughter': 1.0, 'hawaii': 1.0, 'thinking': 1.0, 'i': 3.0, 'high': 1.0, 'my': 2.0, 'latch': 1.0, 'that': 1.0, 'had': 1.0, 'was': 1.0, 'now': 1.0, 'hopes': 1.0, 'breastfed': 1.0, 'the': 1.0, 'turns': 1.0, 'out': 1.0, 'not': 1.0, 'to': 1.0, 'as': 1.0, 'must': 1.0, 'abit': 1.0, 'see': 1.0, 'going': 1.0, 'a': 1.0, 'clearly': 1.0, 'tomy': 1.0, 'did': 1.0, 'work': 1.0, 'but': 1.0, 'product': 2.0, 'for': 2.0, 'baby': 2.0, 'colors': 1.0, 'cute': 1.0, 'is': 3.0, 'say': 1.0, 'glossy': 1.0, 'too': 1.0, 'and': 1.0}
Word element => {'purple': 1.0, 'we': 1.0, 'pink': 1.0, 'safer': 1.0, 'in': 1.0, 'seems': 1.0, 'plastic': 1.0, 'piece': 1.0, 'is': 1.0, 'that': 2.0, 'nose': 1.0, 'around': 1.0, 'set': 1.0, 'of': 2.0, 'there': 1.0, '34': 2.0, 'my': 1.0, 'because': 1.0, 'colors': 1.0, 'lots': 1.0, 'appeared': 1.0, 'same': 1.0, 'which': 1.0, 'soothie': 1.0, 'the': 4.0, 'these': 2.0, 'purchased': 1.0, 'loved': 1.0, 'one': 1.0, 'love': 1.0, 'for': 1.0, 'i': 2.0, 'and': 2.0, 'comes': 1.0, 'to': 1.0, 'bought': 1.0, 'be': 1.0, 'thing': 1.0, 'cut': 1.0, 'it': 1.0, 'only': 1.0, 'older': 1.0, 'children': 1.0, 'with': 1.0, 'a': 1.0, 'pacifiers': 1.0, 'out': 1.0}
Word element => {'right': 1.0, '2': 1.0, '3': 1.0, 'will': 1.0, 'weeks': 1.0, 'other': 1.0, 'we': 1.0, 'you': 1.0, 'prefers': 1.0, 'a': 1.0, 'lose': 1.0, 'pacifier': 1.0, 'old': 1.0, 'pack': 1.0, 'over': 1.0, 'is': 1.0, 'away': 1.0, 'and': 2.0, 'comes': 1.0, 'baby': 1.0, 'brands': 1.0, 'bought': 1.0, 'this': 1.0, 'it': 1.0, 've': 1.0, 'in': 1.0, '10': 1.0, 'which': 1.0, '6': 1.0}
Word element => {'bigger': 1.0, 'soothies': 1.0, 'much': 1.0, 'as': 2.0, 'like': 1.0, 'these': 2.0, 'probably': 1.0, 'for': 1.0, 't': 1.0, 'other': 1.0, 'great': 1.0, 'the': 1.0, 'are': 1.0, 'my': 1.0, 'but': 1.0, 'didn': 1.0, 'babies': 1.0, 'twins': 1.0}
Word element => {'here': 1.0, 'to': 1.0, 'australia': 1.0, 'for': 1.0, 'price': 1.0, 'me': 1.0, 'and': 1.0, 'my': 1.0, 'are': 2.0, 'authorised': 1.0, 'prefer': 1.0, 'does': 1.0, '4': 1.0, 'i': 1.0, 'hawaii': 1.0, 'daughter': 1.0, 'as': 1.0, 'sellers': 1.0, 'only': 1.0, 'in': 1.0, 'softer': 1.0, 'compared': 1.0, 'starts': 1.0, 'bargain': 1.0, 'rated': 1.0, 'brand': 1.0, 'they': 1.0, 'gumdrop': 1.0, 'but': 1.0, 'still': 1.0, 'product': 1.0, 'a': 2.0, 'the': 2.0, 'these': 1.0, 'great': 1.0}
Word element => {'avents': 1.0, 'let': 1.0, 'so': 1.0, 'somewhere': 1.0, 'under': 1.0, 'up': 1.0, 'falls': 1.0, 'pacifiers': 1.0, 'old': 1.0, 'plastic': 1.0, 'rigid': 1.0, 'soft': 1.0, 'molded': 1.0, 'achieve': 1.0, 'll': 1.0, 'inside': 1.0, 'complaint': 1.0, 'only': 2.0, 'likes': 1.0, 'easier': 1.0, 'not': 1.0, 'just': 1.0, 'was': 1.0, 'unfortunately': 1.0, 'my': 4.0, 'avent': 2.0, 'her': 6.0, 'i': 2.0, 'got': 1.0, 'thats': 1.0, 'that': 1.0, 'loves': 1.0, 'drop': 1.0, 'curve': 1.0, 'would': 1.0, 'already': 1.0, 'these': 2.0, 'asleep': 1.0, 'the': 7.0, 'nipple': 1.0, 'nicely': 1.0, 'they': 1.0, 'pacifier': 1.0, 'curves': 1.0, 'look': 1.0, 'a': 2.0, 'baby': 2.0, 'improved': 1.0, 'at': 1.0, 'keep': 1.0, 'sleep': 1.0, 'as': 1.0, 'all': 1.0, 'to': 3.0, 'preference': 1.0, 'ends': 1.0, 'base': 2.0, 'is': 2.0, '2': 1.0, 'but': 1.0, 'identical': 1.0, 'and': 2.0, 'piece': 1.0, 'with': 3.0, 'she': 1.0, 'month': 1.0, 'it': 3.0, 'contour': 1.0, 'body': 1.0, 'like': 2.0, 'which': 1.0, 'of': 2.0, 'face': 1.0, 'presumably': 1.0, 'help': 1.0, 'in': 1.0, 'usually': 1.0, 'because': 1.0, 'does': 1.0, 'mouth': 1.0}
Word element => {'get': 1.0, 'bag': 1.0, 'diaper': 1.0, 'n': 1.0, 'pack': 1.0, 'pen': 1.0, 'play': 2.0, 'car': 1.0, 'crib': 1.0, 'in': 5.0, 'one': 4.0, 'have': 1.0, 'can': 1.0, 'idea': 1.0, 'you': 1.0, 'easily': 1.0, 'couple': 1.0, 'replacement': 1.0, 'out': 1.0, 'pacifiers': 1.0, 'unlike': 1.0, 'seat': 1.0, 'as': 1.0, 'to': 1.0, 'seem': 1.0, 'ones': 1.0, 'these': 1.0, 'the': 10.0, 'they': 1.0, 'are': 1.0, 'my': 1.0, 'them': 1.0, 'baby': 1.0, 'don': 1.0, 'mouth': 1.0, 'because': 1.0, 'chews': 1.0, 'of': 1.0, 'plus': 1.0, 'set': 1.0, 'favorite': 1.0, 'advent': 1.0, 'that': 3.0, '6': 1.0, 'he': 2.0, 'fall': 1.0, 'is': 1.0, 'teething': 1.0, 'on': 1.0, 'i': 2.0, 'order': 1.0, 'time': 1.0, 'so': 1.0, 'new': 1.0, 'every': 1.0, 'now': 1.0, 'weeks': 1.0, 'well': 1.0, 'recommended': 1.0, 'for': 1.0, 's': 2.0, 't': 1.0, 'a': 2.0, 'doctor': 1.0, 'by': 1.0}
Word element => {'shop': 1.0, 'continue': 1.0, 'scent': 1.0, 'nice': 1.0, 'to': 1.0, 'soap': 1.0, 'was': 1.0, 'just': 1.0, 'and': 1.0, 'very': 1.0, 'as': 1.0, 'described': 1.0, 'the': 1.0, 'my': 1.0, 'will': 1.0, 'baby': 1.0, 'item': 2.0, 'this': 2.0, 'loves': 1.0}
Word element => {}
Word element => {'alone': 1.0, 'in': 1.0, 'also': 1.0, 'stay': 1.0, 'bed': 2.0, 'make': 1.0, 'the': 5.0, 'on': 1.0, 'is': 3.0, 'giraffe': 1.0, 'it': 2.0, 'qute': 1.0, 'can': 1.0, 'sofe': 1.0, 'sound': 1.0, 'and': 1.0, 'baby': 1.0, 'special': 1.0, 'to': 1.0, 'useful': 1.0, 'be': 1.0, 'put': 1.0}
Word element => {'cute': 1.0, 'plays': 1.0, 'very': 1.0, 'and': 2.0, 'my': 1.0, 'baby': 1.0, 'well': 1.0, '5': 1.0, 'product': 1.0, 'old': 1.0, 'loves': 1.0, 'month': 1.0, 'it': 2.0, 'good': 1.0, 'he': 1.0, 'teether': 1.0, 'his': 1.0, 'one': 1.0, '4': 1.0, 'uses': 1.0}
Word element => {'gift': 1.0, 'shower': 1.0, 'friend': 1.0, 'night': 1.0, 's': 3.0, 'anything': 1.0, 'does': 1.0, 'long': 1.0, 'his': 6.0, '2': 1.0, 'toys': 1.0, 'be': 1.0, 'to': 4.0, 'in': 3.0, 'seat': 1.0, 'smile': 1.0, 'interested': 1.0, 'just': 1.0, 'little': 1.0, 'gently': 1.0, 'very': 1.0, 'ordered': 1.0, 'i': 3.0, 'old': 1.0, 'makes': 1.0, 'and': 6.0, 'bouncer': 1.0, 'months': 1.0, '5': 1.0, 'noise': 1.0, 'holds': 1.0, 'loves': 1.0, 'that': 1.0, 'really': 1.0, 'from': 1.0, 'son': 1.0, 'gets': 1.0, 'my': 1.0, 'playing': 1.0, 'him': 1.0, 'starting': 1.0, 'it': 7.0, 'as': 5.0, 'annoying': 1.0, 'only': 1.0, 'this': 2.0, 'he': 8.0, 'version': 1.0, 'baby': 2.0, 'dad': 1.0, 'for': 2.0, 'bouncy': 1.0, 'given': 1.0, 'noises': 1.0, 'were': 1.0, 'a': 4.0, 'small': 1.0, 'so': 1.0, 'interest': 1.0, 'stroller': 1.0, 'or': 1.0, 'we': 1.0, 'gym': 1.0, 'seems': 1.0, 'also': 1.0, 'enjoy': 1.0, 'last': 1.0, 'was': 1.0, 'with': 1.0, 'chair': 3.0, 'movement': 1.0, 'attention': 1.0, 'the': 8.0, 'of': 1.0, 'chimes': 1.0, 'not': 1.0, 'monkey': 1.0, 'hang': 1.0, 'pleasant': 1.0, 'give': 1.0, 'but': 1.0, 'enjoys': 1.0, 'looking': 1.0, 'is': 2.0, 'at': 2.0, 'toy': 2.0, 'mom': 1.0, 'coo': 1.0, 'll': 1.0, 'excited': 1.0, 'sit': 1.0, 'when': 1.0, 'movements': 1.0, 'chime': 1.0, 'sound': 1.0, 'make': 1.0, 'cause': 1.0, 'cute': 1.0, 'useful': 1.0, 'd': 1.0}
Word element => {'it': 1.0, 'guess': 1.0, 'so': 1.0, 'i': 1.0, 'one': 1.0, 'at': 1.0, 'my': 1.0, 'son': 1.0, 'on': 1.0, 'likes': 1.0, 'isn': 1.0, 'this': 1.0, 't': 1.0, 'too': 1.0, 'laughs': 1.0, 'toys': 1.0, 'he': 2.0, 'big': 1.0, 'but': 1.0}
Word element => {'happy': 1.0, 'm': 1.0, 'a': 1.0, 'price': 1.0, 'cute': 1.0, 'great': 1.0, 'it': 3.0, 'i': 2.0, 's': 2.0, 'purchased': 1.0, 'with': 1.0, 'stalking': 1.0, 'my': 1.0, 'very': 1.0, 'and': 2.0, 'this': 1.0, 'loved': 1.0, 'for': 1.0, 'daughter': 1.0, 'she': 1.0}
Word element => {'figure': 1.0, 'out': 1.0, 'trying': 1.0, 'their': 1.0, 'this': 1.0, 'what': 1.0, 'watch': 1.0, 'them': 1.0, 'a': 1.0, 'with': 1.0, 'is': 2.0, 'good': 1.0, 'small': 1.0, 'to': 2.0, 'first': 1.0, 'in': 1.0, 'for': 1.0, 'rattle': 1.0, 'babies': 1.0, 'it': 2.0, 'hands': 2.0, 'cute': 1.0}
Word element => {'definitely': 1.0, 'chewing': 1.0, 'of': 1.0, 'no': 1.0, 'up': 1.0, 'holding': 1.0, 'break': 1.0, 'or': 2.0, 'scratch': 1.0, 'doesn': 1.0, 'is': 1.0, 'around': 1.0, 'chew': 1.0, 'because': 1.0, 'made': 1.0, 'its': 1.0, 'wear': 1.0, 'hours': 1.0, 'high': 1.0, 'would': 1.0, 'signs': 1.0, 'something': 1.0, 'family': 1.0, 'purchase': 1.0, 'my': 1.0, 'fact': 1.0, 'quality': 2.0, 'this': 2.0, 'first': 1.0, 'with': 2.0, 'she': 2.0, 'it': 4.0, 'by': 1.0, 'mom': 1.0, 'daughter': 1.0, 'for': 2.0, 'love': 1.0, 'rides': 1.0, 'mirrors': 1.0, 'rattle': 1.0, 'i': 2.0, 'wanted': 1.0, 'amused': 1.0, 'as': 1.0, 'makes': 1.0, 'friends': 1.0, 'time': 1.0, 'so': 1.0, 'entertain': 1.0, 'am': 1.0, 'can': 3.0, 'toss': 1.0, 'and': 6.0, 'play': 1.0, 't': 1.0, 'a': 1.0, 'we': 1.0, 'one': 1.0, 'hang': 1.0, '34': 2.0, 'mirror': 1.0, 'on': 3.0, 'fabric': 2.0, 'her': 1.0, 'trips': 1.0, 'herself': 1.0, 'carrier': 1.0, 'plane': 1.0, 'safe': 1.0, 'take': 1.0, 'car': 1.0, 'little': 1.0, 'mane': 2.0, 'that': 1.0, 'babies': 1.0, 'loves': 1.0, 'the': 3.0, 'like': 1.0, 'noise': 1.0}
Word element => {'made': 1.0, 'shaking': 1.0, 'friendly': 1.0, 'or': 1.0, 'a': 1.0, 'since': 1.0, 'well': 1.0, 'not': 1.0, 'her': 1.0, 's': 1.0, 'hurts': 1.0, 'face': 1.0, 'in': 1.0, 'around': 1.0, 'baby': 2.0, 'she': 1.0, 'designed': 1.0, 'your': 1.0, 'when': 1.0, 'swings': 1.0, 'for': 2.0, 'extremely': 1.0, 'cute': 1.0, 'herself': 1.0, 'is': 2.0, 'looks': 1.0, 'so': 1.0, 'very': 3.0, 'and': 2.0, 'hard': 1.0, 'it': 5.0, 'due': 1.0, 'to': 1.0, 'hits': 1.0, 'dangerous': 1.0, 'but': 1.0, 'fact': 1.0, 'rattle': 1.0, 'that': 1.0, 'the': 2.0, 'heavy': 1.0}
Word element => {'time': 2.0, 'water': 1.0, 'and': 1.0, 'off': 2.0, 'rinsed': 1.0, 'but': 1.0, 'inside': 1.0, 'went': 1.0, 'i': 2.0, 'expect': 1.0, 'from': 1.0, 'ok': 1.0, 'is': 2.0, 'it': 3.0, 'this': 1.0, 'the': 1.0, 'rattle': 1.0, 'since': 1.0, 'a': 1.0, 'baby': 1.0, 'toy': 1.0, 'to': 3.0, 'be': 1.0, 'able': 1.0, 'rinse': 1.0}
Word element => {'at': 1.0, 'rattle': 1.0, 'attractive': 1.0, 'a': 1.0, 'sounds': 1.0, 'or': 1.0, 'rather': 1.0, 'would': 1.0, 'weight': 1.0, 's': 2.0, 'feel': 1.0, 'hear': 1.0, 'shake': 1.0, 'small': 1.0, 'are': 1.0, 'too': 1.0, 'daughter': 1.0, 'month': 1.0, 'have': 1.0, '8': 1.0, 'store': 1.0, 'she': 1.0, 'little': 1.0, 'to': 1.0, 'much': 1.0, 'it': 4.0, 'this': 1.0, 'dollar': 1.0, 'and': 2.0, 'like': 1.0, 'very': 1.0, 'my': 1.0, 'more': 1.0, 't': 2.0, 'the': 2.0, 'bought': 2.0, 'old': 1.0, 'i': 1.0, 'really': 1.0, 'looks': 1.0, 'cute': 1.0, 'inside': 1.0, 'doesn': 1.0, 'but': 1.0, 'can': 1.0, 'balls': 1.0}
Word element => {'a': 1.0, 'cute': 1.0, 'its': 2.0, 'an': 1.0, 'and': 3.0, 'like': 1.0, 'toy': 3.0, 'any': 1.0, 'my': 1.0, 'the': 1.0, 'on': 1.0, 'add': 1.0, 'very': 2.0, 'as': 1.0, 'son': 1.0, 'for': 1.0, 'item': 1.0, 'other': 1.0, 'got': 2.0, 'i': 2.0, 'strawberry': 1.0, 'likes': 1.0, 'durable': 1.0, 'this': 1.0, 'he': 1.0, 'it': 1.0, 'him': 1.0, 'just': 1.0}
Word element => {'lullaby': 1.0, 'lovely': 1.0, 'colors': 1.0, 'stimulanting': 1.0, 'characters': 1.0, 'price': 1.0, 'brand': 1.0, 'batteries': 1.0, 'fisher': 1.0, 'no': 1.0, 'keeps': 1.0, 'of': 1.0, 'and': 1.0, 'quality': 1.0, 'needed': 1.0, 'mobile': 1.0, 'a': 1.0, 'that': 1.0, 'musical': 1.0, 'product': 1.0}
Word element => {'s': 1.0, 'smile': 1.0, 'all': 1.0, 'daughter': 1.0, 'grand': 1.0, 'it': 1.0, 'great': 1.0, 'out': 1.0, 'i': 1.0, 'wanted': 1.0, 'thing': 1.0, 'some': 1.0, 'worked': 1.0, 'my': 1.0, 'wow': 1.0, 'loves': 1.0, 'play': 1.0, 'this': 1.0, 'to': 2.0, 'music': 1.0, 'product': 1.0}
Word element => {'a': 1.0, 'adjusting': 1.0, 'us': 1.0, 'crib': 1.0, 'has': 1.0, 'of': 1.0, 'month': 1.0, 'method': 1.0, 'it': 3.0, 'looks': 1.0, 'once': 1.0, 'to': 1.0, 'music': 1.0, 'cute': 1.0, 'strapping': 1.0, 'but': 1.0, 'the': 3.0, 'is': 1.0, 'not': 1.0, 'that': 1.0, 'cheerful': 1.0, 'and': 1.0}
Word element => {'important': 1.0, 'also': 1.0, 'is': 1.0, 'price': 1.0, 'fisher': 1.0, 'store': 1.0, 'department': 1.0, 'at': 1.0, 'name': 1.0, 'able': 1.0, 'little': 1.0, 'item': 1.0, 'working': 1.0, 'the': 1.0, 'pricey': 1.0, 'happy': 1.0, 'to': 2.0, 'was': 1.0, 'because': 1.0, 'not': 1.0, 'this': 1.0, 'it': 1.0, 'i': 2.0, 'matched': 1.0, 'yes': 1.0, 'am': 1.0, 'find': 2.0, 'theme': 1.0, 'for': 1.0, 'a': 2.0, 'project': 1.0, 'on': 1.0, 'but': 1.0}
Word element => {}
Word element => {'sleigh': 1.0, 'dark': 1.0, 'a': 1.0, 'with': 1.0, 'this': 1.0, 'used': 1.0, 'we': 1.0, 'bed': 2.0, 'the': 1.0, 'exactly': 1.0, 'looks': 1.0, 'very': 1.0, 'as': 1.0, 'described': 1.0, 'up': 1.0, 'great': 1.0, 'beautiful': 2.0, 'when': 1.0, 'put': 1.0, 'in': 1.0}
Word element => {'but': 1.0, 'a': 2.0, 'even': 1.0, 'not': 1.0, 'pillow': 2.0, 'very': 1.0, 'it': 1.0, 'only': 1.0, 'for': 2.0, 'cute': 1.0, 'and': 1.0, 'get': 1.0, 'bedding': 1.0, 'set': 2.0, 'is': 3.0, 'great': 1.0, 'the': 4.0, 'more': 1.0, 'you': 1.0, 'way': 1.0, 'price': 1.0, 'money': 1.0, 'your': 1.0, 'i': 2.0, 'would': 1.0, 'all': 2.0, 'thing': 1.0, 'was': 2.0, 'say': 1.0, 'in': 2.0, 'disappointed': 1.0}
Word element => {'wand': 1.0, 'on': 1.0, 'is': 1.0, 'caught': 1.0, 'around': 1.0, 'prefers': 1.0, 's': 1.0, 'catch': 1.0, 'loves': 1.0, 'think': 1.0, 'i': 1.0, 'don': 1.0, 'toy': 1.0, 'magic': 1.0, 'to': 2.0, 'she': 3.0, 't': 1.0, 'the': 2.0, 'a': 1.0, 'wave': 1.0, 'net': 1.0, 'suppose': 1.0, 'fish': 1.0, 'this': 1.0, 'it': 1.0, 'like': 1.0}
Word element => {'parents': 1.0, 'this': 2.0, 'like': 1.0, 'really': 1.0, 'their': 2.0, 'children': 2.0, 'product': 1.0, 'for': 1.0, 'but': 1.0, 'or': 1.0, 'reviews': 1.0, 'leave': 1.0, 'otherwise': 1.0, 'i': 3.0, 'about': 1.0, 'no': 1.0, 'negative': 1.0, 'her': 3.0, 'with': 1.0, 'toys': 1.0, 'fishies': 1.0, 'of': 2.0, 'one': 2.0, 'while': 1.0, 'against': 1.0, 'handling': 1.0, 'these': 2.0, 'paint': 3.0, 'idea': 1.0, 'easily': 1.0, 'is': 1.0, 'say': 1.0, 'comes': 1.0, 'was': 2.0, 'families': 1.0, 'in': 2.0, 'something': 2.0, 've': 1.0, 'the': 4.0, 'playing': 1.0, 'that': 2.0, 'daughter': 1.0, 'fish': 1.0, 'mention': 1.0, 'ingested': 1.0, 'off': 2.0, 'leaning': 1.0, 'poor': 2.0, 'tub': 1.0, 'and': 4.0, 'will': 1.0, 'rubbed': 1.0, 't': 1.0, 's': 2.0, 'we': 1.0, 'a': 3.0, 'typically': 1.0, 'any': 1.0, 'to': 3.0, 'our': 1.0, 'all': 1.0, 'don': 1.0, 'over': 1.0, 'needed': 1.0, 'back': 1.0, 'sake': 1.0, 'bath': 1.0, 'therefore': 1.0, 'put': 1.0, 'not': 2.0, 'want': 1.0, 'if': 1.0, '10': 1.0, 'felt': 1.0, 'she': 3.0, 'month': 1.0, 'old': 1.0, 'quality': 1.0, 'baby': 1.0, 'has': 1.0, 'tendency': 1.0, 'things': 1.0, 'mouth': 1.0}
Word element => {'again': 1.0, 'would': 1.0, 'i': 1.0, 'teething': 1.0, 'a': 1.0, 'due': 1.0, 'so': 1.0, 'wear': 1.0, 'to': 2.0, 'started': 1.0, 'paint': 1.0, 'problem': 1.0, 'by': 1.0, 'tub': 1.0, 'baby': 1.0, 'toy': 2.0, 'the': 7.0, 'my': 1.0, 'in': 2.0, 'purchase': 1.0, 'use': 1.0, 'sections': 1.0, 'bath': 1.0, 'son': 1.0, 'is': 2.0, 'plays': 1.0, 'some': 1.0, 'fun': 2.0, 'and': 3.0, 'up': 1.0, 'pool': 1.0, 'only': 1.0, 'with': 3.0, 'it': 1.0, 'he': 1.0, 'has': 2.0, 'favorite': 1.0, 'far': 1.0, 'toys': 1.0, 'scooping': 1.0, 'even': 1.0, 'his': 2.0, 'net': 2.0, 'fish': 1.0, 'other': 1.0}
Word element => {'recalled': 1.0, 'be': 1.0, 'her': 1.0, 'in': 1.0, 'had': 1.0, 'babies': 2.0, 'company': 1.0, 'my': 2.0, 'the': 3.0, 'old': 1.0, 'buy': 1.0, 'off': 1.0, 'green': 2.0, 'and': 3.0, 'do': 1.0, 'mouth': 2.0, 'yellow': 1.0, 'came': 1.0, 'colors': 1.0, 'baby': 1.0, 'after': 1.0, 'fish': 1.0, 'from': 2.0, 'all': 1.0, 'as': 1.0, 'she': 1.0, 'month': 1.0, 'it': 1.0, 'this': 4.0, '9': 1.0, 'were': 1.0, 'will': 1.0, 'should': 1.0, 'disturbing': 1.0, 'a': 1.0, 'few': 1.0, 'seconds': 1.0, 'not': 1.0, 'probably': 1.0, 'paint': 1.0, 'around': 1.0, 'is': 3.0, 'fine': 1.0, 'toxic': 1.0, 'others': 1.0, 'but': 1.0, 'most': 1.0, 'for': 1.0, 'product': 1.0}
Word element => {'else': 1.0, 'to': 1.0, 'again': 1.0, 'are': 1.0, 'my': 1.0, 'these': 1.0, 'during': 1.0, 'and': 1.0, 'up': 1.0, 'with': 1.0, 'bath': 1.0, 'they': 1.0, 'time': 1.0, 'very': 1.0, 'as': 1.0, 'son': 1.0, 'playing': 1.0, 'someone': 1.0, 'loves': 1.0, 'have': 1.0, 'would': 1.0, 'buy': 1.0, 'well': 1.0, 'a': 1.0, 'cute': 1.0, 'held': 1.0, 'gift': 1.0}
Word element => {'emissions': 1.0, 'energy': 1.0, 'save': 1.0, 'that': 1.0, 'recycled': 1.0, '100': 1.0, 'from': 1.0, 'in': 1.0, 'was': 1.0, 'box': 1.0, 'cardboard': 1.0, 'simple': 1.0, 'partial': 1.0, 'made': 2.0, 'which': 1.0, 'yellow': 1.0, 'like': 1.0, 'usa': 1.0, 'uses': 1.0, 'toy': 2.0, 'stable': 1.0, 'packaging': 2.0, 'as': 1.0, 'our': 1.0, 'to': 4.0, 'lot': 1.0, 'who': 1.0, 'since': 1.0, 'hasn': 1.0, 'old': 1.0, 'plastic': 3.0, 'especially': 1.0, 'inside': 1.0, 'here': 1.0, 'of': 3.0, 'the': 8.0, 'hanging': 1.0, 'likes': 1.0, 't': 2.0, 'we': 1.0, 'a': 4.0, 'came': 1.0, 'might': 1.0, '16': 1.0, 'green': 1.0, 'month': 1.0, 'greenhouse': 1.0, 'loses': 1.0, 'or': 2.0, 'for': 3.0, 'taken': 1.0, 'this': 3.0, 'and': 6.0, 'once': 1.0, 'comes': 1.0, 'impossibly': 1.0, 'paint': 1.0, 'bought': 1.0, 'fish': 1.0, 'night': 1.0, 'doesn': 1.0, 'rack': 1.0, 'week': 1.0, 'all': 2.0, 'an': 1.0, 'he': 2.0, 'yet': 1.0, 'far': 1.0, 'more': 1.0, 'tabs': 1.0, 'will': 2.0, 'bathe': 1.0, 'grandson': 1.0, 'buy': 2.0, 'every': 1.0, 'stay': 1.0, 'it': 4.0, 'wear': 1.0, 'jugs': 1.0, 'around': 1.0, 'his': 1.0, 'bath': 1.0, 'on': 1.0, 'net': 2.0, 'toys': 3.0, 'but': 2.0, 'major': 1.0, 'free': 1.0, 'points': 1.0, 'its': 1.0, 'obdurate': 1.0, 'look': 1.0, 'showing': 1.0, 'little': 1.0, 'nice': 1.0, 'reduce': 1.0, 'hard': 1.0, 'seems': 1.0, 'shiny': 1.0, 'there': 1.0, 'overnight': 1.0, 'were': 1.0, 'no': 2.0, 'so': 3.0, 'perforations': 1.0, 'gas': 1.0, 'pull': 1.0, 'i': 3.0, 'had': 1.0, 'get': 1.0, 'kind': 1.0, 'instead': 1.0, 'scissors': 1.0, 'hack': 1.0, 'into': 1.0, 'milk': 1.0, 'just': 1.0, 'with': 2.0, 'wasteful': 1.0, 'scoop': 1.0, 'difficult': 1.0, 'submarine': 1.0, 'product': 1.0, 'products': 1.0}
Word element => {'toys': 1.0, 'for': 1.0, 'pool': 1.0, 'loves': 1.0, 'of': 1.0, 'to': 1.0, 'our': 1.0, 'and': 2.0, 'the': 5.0, 'great': 1.0, 'counting': 1.0, 'telling': 1.0, 'daughter': 1.0, 'us': 1.0, 'toy': 1.0, 'colors': 1.0, 'other': 1.0, 'fish': 1.0, 'we': 1.0, 'also': 1.0, 'catch': 1.0, 'bath': 2.0, 'use': 1.0, 'all': 1.0, 'net': 1.0}
Word element => {'older': 1.0, 'when': 1.0, 'saving': 1.0, 'with': 1.0, 'fish': 1.0, 'him': 1.0, 'given': 1.0, 've': 1.0, 'drain': 1.0, 'let': 1.0, 'holes': 1.0, 'handle': 1.0, 'net': 2.0, 'bath': 1.0, 'got': 1.0, 'of': 1.0, 'he': 1.0, '6': 1.0, 'up': 2.0, 'play': 1.0, 'and': 3.0, 'i': 3.0, 'old': 2.0, 'tub': 1.0, 'has': 1.0, 'toy': 3.0, 'great': 2.0, 'the': 4.0, 'these': 1.0, 'float': 1.0, 'this': 1.0, 'it': 2.0, 'month': 1.0, 'absolutly': 1.0, 'foul': 1.0, 'in': 1.0, 'for': 3.0, 'my': 1.0, 'only': 1.0, 'end': 1.0, 'who': 1.0, 'toys': 1.0, 's': 2.0, 'a': 3.0, 'was': 1.0, 'to': 3.0, 'looking': 1.0, 'squirters': 1.0, 'loves': 1.0, 'that': 1.0, 'does': 1.0, 'not': 1.0, 'water': 3.0, 'mildewy': 1.0, 'many': 1.0, 'like': 1.0, 'sponges': 1.0, 'are': 1.0, 'out': 2.0, 'soak': 1.0, 'smelling': 1.0, 'smell': 1.0, 'solid': 1.0, 'no': 1.0, 'so': 1.0}
Word element => {'in': 1.0, 'old': 1.0, 'to': 1.0, 'bath': 1.0, 'toddlers': 1.0, 'toy': 1.0, 'baby': 2.0, 'keeps': 1.0, 'tub': 1.0, 'arrived': 1.0, 'described': 1.0, 'year': 1.0, 'as': 1.0, 'and': 1.0, 'quicklycute': 1.0, 'happy': 1.0, 'exactly': 1.0, 'would': 1.0, 'for': 2.0, 'one': 1.0, 'safe': 1.0, 'store': 1.0, 'recommend': 1.0, 'easy': 1.0}
Word element => {'for': 1.0, 'recommend': 1.0, 'fish': 1.0, 'pick': 1.0, 'net': 1.0, 'and': 2.0, 'on': 1.0, 'months': 1.0, 'attention': 1.0, 'highly': 1.0, 'don': 1.0, 'since': 1.0, 'a': 3.0, 'to': 2.0, 'pay': 1.0, 'the': 2.0, 'more': 1.0, 't': 1.0, 'i': 1.0, 'packaging': 1.0, 'suits': 1.0, 'up': 2.0, '6': 1.0, 'of': 1.0, 'has': 2.0, 'toddler': 2.0, 'this': 1.0, 'it': 1.0, 'numbers': 1.0, 'fishing': 1.0}
Word element => {'counting': 1.0, 'discovery': 1.0, 'later': 1.0, 'effect': 1.0, 'and': 3.0, 'age': 1.0, 'for': 3.0, 'was': 1.0, 'fish': 1.0, 'daughter': 1.0, 'year': 1.0, 'grand': 1.0, 'several': 1.0, 'months': 1.0, 'of': 1.0, 'set': 1.0, 'older': 1.0, 'this': 3.0, 'cause': 1.0, 'ago': 1.0, 'my': 1.0, 'great': 1.0, 'the': 2.0, 'element': 1.0, 'are': 1.0, 'bought': 1.0, 'around': 1.0, 'favorite': 1.0, 'toys': 1.0, 'a': 1.0, 'i': 1.0, 'old': 1.0, 'even': 1.0, 'her': 1.0, 'bath': 1.0, 'is': 1.0}
Word element => {'in': 1.0, 'room': 1.0, 'tons': 1.0, 'bathroom': 1.0, 'of': 1.0, 'up': 1.0, 'take': 1.0, 'so': 1.0, 'easily': 1.0, 'can': 1.0, 'fun': 1.0, 'that': 2.0, 'toy': 2.0, 'great': 1.0, 'for': 1.0, 'love': 1.0, 'bath': 3.0, 'is': 3.0, 'my': 2.0, 'a': 1.0, 'it': 2.0, 'with': 1.0, 'this': 2.0, 'but': 1.0, 'not': 2.0, 'big': 1.0, 'i': 2.0, 'daughter': 1.0, 'too': 1.0, 'when': 1.0, 'store': 1.0, 'she': 1.0, 'done': 1.0, 'does': 1.0, 'her': 1.0}
Word element => {'with': 1.0, 'her': 1.0, 't': 1.0, 'can': 1.0, 'too': 1.0, 'one': 1.0, 'chewing': 1.0, 'just': 1.0, 'content': 1.0, 'old': 1.0, 'month': 1.0, '8': 1.0, 'my': 1.0, 'now': 1.0, 'wait': 1.0, 'each': 1.0, 'letting': 1.0, 'anything': 2.0, 'fish': 4.0, 'no': 1.0, 'play': 1.0, 'about': 1.0, 'squirter': 1.0, 'these': 1.0, 'others': 1.0, 'products': 1.0, 'water': 3.0, 'growing': 1.0, 'prone': 1.0, 'or': 1.0, 'stagnant': 1.0, 'definitely': 1.0, 'mold': 1.0, 'down': 2.0, 'trick': 1.0, 'compartment': 1.0, 'internal': 1.0, 'the': 10.0, 'of': 5.0, 'i': 2.0, 'reviewed': 1.0, 'bpa': 2.0, 'do': 2.0, 'remedied': 1.0, 'for': 3.0, 'searching': 1.0, 'holes': 1.0, 'three': 1.0, 'who': 1.0, 'avoid': 1.0, 'hold': 1.0, 'like': 1.0, 'net': 1.0, 'toys': 1.0, 'have': 3.0, 'this': 1.0, 'bath': 2.0, 'road': 1.0, 'bowl': 1.0, 'on': 2.0, 'toy': 3.0, 'remain': 1.0, 'time': 1.0, 'to': 4.0, 'any': 1.0, 'was': 1.0, 'standing': 1.0, 'could': 2.0, 'a': 5.0, 'go': 1.0, 'been': 1.0, 'amazon': 1.0, 'did': 1.0, 's': 1.0, 'phthalate': 1.0, 'those': 1.0, 'two': 1.0, 'little': 2.0, 'in': 2.0, 'middle': 1.0, 'has': 1.0, 'them': 1.0, 'but': 3.0, 'there': 2.0, 'are': 2.0, 'had': 1.0, 'type': 1.0, 'sassy': 2.0, 'drain': 1.0, 'bowls': 1.0, 'and': 2.0, 'it': 2.0, 'say': 1.0, 'that': 4.0, 'easily': 1.0, 'webpage': 1.0, 'by': 1.0, 'says': 1.0, 'not': 2.0, 'dry': 1.0, 'you': 1.0, 'upside': 1.0, 'does': 1.0, 'being': 1.0, 'still': 1.0, 'course': 1.0, 'if': 1.0, 'free': 2.0, 'at': 1.0, 'is': 3.0, 'look': 1.0, 'gallery': 1.0, 'packaging': 1.0, 'heading': 1.0, 'compliant': 1.0}
Word element => {'sand': 1.0, 'water': 1.0, 'he': 2.0, 'with': 2.0, 'outdoor': 1.0, 'child': 1.0, 'made': 1.0, 'them': 2.0, 'see': 1.0, 'perfect': 1.0, 'would': 1.0, 'bit': 1.0, 'designed': 1.0, 'they': 2.0, 'i': 2.0, 'old': 1.0, 'younger': 1.0, 'be': 1.0, 'bought': 1.0, 'grandson': 1.0, 'too': 1.0, 'play': 1.0, 'and': 1.0, 'soon': 1.0, 'year': 1.0, 'for': 3.0, '2': 1.0, 'the': 2.0, 'some': 1.0, 'products': 1.0, 'these': 2.0, 'such': 1.0, 'my': 1.0, 'real': 1.0, 'grew': 1.0, 'is': 1.0, 'bored': 1.0, 'are': 1.0, 'fairly': 1.0, 'after': 1.0, 'bargain': 1.0, 'got': 1.0, 'bath': 1.0, 'not': 1.0, 'fault': 1.0, 'at': 1.0, 'all': 1.0, 'price': 1.0, 'well': 1.0, 'toy': 1.0, 'nice': 1.0, 'a': 3.0, 'could': 1.0}
Word element => {'time': 1.0, 'during': 1.0, 'him': 1.0, 'provides': 1.0, 'them': 1.0, 'loves': 1.0, 'that': 1.0, 'bath': 1.0, 'got': 2.0, 'so': 2.0, 'love': 2.0, 'i': 2.0, 'endless': 1.0, 'promote': 1.0, 'fine': 1.0, 'really': 1.0, 'product': 1.0, 'it': 3.0, 'this': 1.0, 't': 1.0, 'motor': 1.0, 'hand': 1.0, 'and': 2.0, 'son': 1.0, 'as': 2.0, 'my': 1.0, 'happy': 2.0, 'eye': 1.0, 'coordination': 1.0, 'well': 1.0, 'entertainment': 1.0, 'helps': 1.0, 'skills': 1.0, 'doesn': 1.0, 'hurt': 1.0}
Word element => {'fun': 1.0, 'good': 1.0, 'her': 1.0, 'from': 1.0, 'away': 1.0, 'it': 1.0, 'had': 1.0, 'time': 1.0, 'so': 1.0, 'of': 1.0, 'out': 1.0, 'net': 1.0, 'bath': 1.0, '3': 1.0, 'note': 1.0, 'months': 1.0, 'still': 1.0, 'suspect': 1.0, 'and': 3.0, 'get': 1.0, 'after': 1.0, 'striped': 1.0, 'small': 1.0, 'sucking': 1.0, 'fish': 1.0, 'along': 1.0, 'with': 2.0, 'this': 1.0, 'take': 1.0, 'many': 1.0, 'them': 1.0, 'white': 1.0, 'black': 1.0, 'great': 1.0, 'hollow': 1.0, 'the': 7.0, 'holes': 2.0, 'little': 1.0, 'lightweight': 1.0, 'my': 2.0, 'lo': 1.0, 'set': 1.0, 'plays': 1.0, 'ring': 1.0, 'otherwise': 1.0, 'i': 1.0, 'purpose': 1.0, 'drain': 1.0, 'to': 3.0, 'any': 1.0, 'loves': 1.0, 'that': 1.0, 'we': 1.0, 'a': 1.0, 'might': 1.0, 'is': 3.0, 'caught': 1.0, 'itself': 1.0, 'in': 1.0, 'seems': 1.0, 'handle': 1.0, 'enjoy': 1.0, 'water': 2.0, 'daughter': 1.0}
Word element => {'out': 1.0, 'still': 1.0, 'be': 1.0, 'supposed': 1.0, 'of': 1.0, 'that': 1.0, 'thought': 1.0, 'although': 1.0, 'fun': 1.0, 'i': 1.0, 'old': 1.0, 'months': 1.0, 'good': 1.0, 'big': 1.0, 'and': 2.0, 'one': 1.0, 'for': 3.0, 'tough': 1.0, 'enough': 1.0, 'fish': 3.0, 'haven': 1.0, 'hold': 1.0, 'little': 1.0, 'price': 1.0, 'toy': 1.0, 'baby': 1.0, 'a': 2.0, 'is': 3.0, 'nice': 1.0, 'which': 2.0, '10': 1.0, 'chewing': 1.0, 'are': 1.0, 'figured': 1.0, 't': 1.0, 'float': 1.0, 'the': 5.0, 'net': 1.0, 'part': 1.0, 'her': 1.0, 'she': 1.0, 'hands': 1.0, 'squirter': 1.0, 'was': 1.0, 'to': 2.0, 's': 1.0}
Word element => {'hand': 1.0, 'eye': 1.0, 'good': 1.0, 'develop': 1.0, 'patterns': 1.0, 'bath': 1.0, 'love': 1.0, 'i': 1.0, 'does': 1.0, 'helps': 1.0, 'are': 1.0, 'the': 1.0, 'this': 1.0, 'toy': 1.0, 'and': 3.0, 'coordination': 1.0, 'baby': 1.0, 'stimulating': 1.0, 'so': 1.0, 'colors': 1.0}
Word element => {'purchase': 1.0, 'the': 1.0, 'one': 1.0, 'with': 1.0, 'this': 1.0, 'of': 1.0, 'toys': 1.0, 'loves': 1.0, 'good': 1.0, 'tub': 1.0, 'price': 1.0, 'is': 1.0, 'granddaughter': 1.0, 'and': 2.0, 'favorites': 1.0, 'fast': 1.0, 'shipping': 1.0, 'too': 1.0, 'i': 1.0, 'guess': 1.0, 'we': 1.0, 'her': 2.0, 'both': 1.0, 'my': 1.0, 're': 1.0, 'happy': 1.0}
Word element => {'also': 1.0, 'they': 1.0, 'of': 1.0, 'are': 1.0, 'the': 5.0, 'love': 1.0, 'bugs': 1.0, 'kids': 1.0, 'is': 1.0, 'pretend': 1.0, 'bath': 1.0, 'with': 1.0, 'durable': 1.0, 'playing': 1.0, 'this': 1.0, 'to': 1.0, 'toy': 2.0, 'even': 1.0, 'use': 1.0, 'net': 1.0, 'catching': 1.0, 'outside': 1.0}
Word element => {'want': 1.0, 'just': 1.0, 'or': 1.0, 'to': 2.0, 'supposed': 1.0, 'you': 1.0, 'really': 1.0, 'take': 1.0, 'notice': 1.0, 't': 2.0, 'doesn': 2.0, 'them': 1.0, 'inside': 1.0, 'an': 1.0, 'sucking': 1.0, 'fish': 4.0, 'does': 1.0, 'having': 1.0, 'i': 1.0, 'no': 2.0, 'about': 1.0, 'and': 2.0, 'like': 1.0, 'this': 1.0, 'sits': 1.0, 'holes': 1.0, 'the': 8.0, 'in': 2.0, 'age': 1.0, 'said': 1.0, 'are': 2.0, 'catch': 1.0, 'chewing': 1.0, 'collects': 1.0, 'net': 3.0, 'her': 1.0, 'set': 1.0, 'there': 1.0, 'of': 3.0, 'into': 1.0, 'that': 4.0, 'my': 1.0, 'much': 1.0, 'only': 1.0, 'end': 1.0, 'water': 1.0, 'daughter': 1.0, 'so': 1.0, 'interest': 1.0, 'from': 1.0, 'months': 2.0, 'on': 3.0, 'is': 1.0, 'till': 1.0, 'get': 1.0, 'present': 1.0, '15': 1.0, 'has': 1.0, 'either': 1.0, 'what': 1.0, 'had': 1.0, '9': 1.0, 'netting': 1.0, 'swoop': 1.0, 'nor': 1.0, 'she': 3.0}
Word element => {'buy': 1.0, 'differently': 1.0, 'use': 1.0, 'gets': 1.0, 'water': 2.0, 'but': 1.0, 'doesn': 1.0, 'floating': 1.0, 'up': 2.0, 'there': 1.0, 'really': 1.0, 'is': 2.0, 'the': 5.0, 'my': 1.0, 'older': 1.0, 'now': 1.0, 'granddaughter': 1.0, 'as': 1.0, 'to': 4.0, 'loves': 2.0, 'this': 3.0, 'with': 1.0, 'good': 1.0, 'last': 1.0, 'fish': 1.0, '18': 1.0, 'months': 1.0, 'old': 1.0, 'right': 1.0, 'net': 1.0, 'it': 1.0, 'scoop': 1.0, 'she': 6.0, 'moldy': 1.0, 'and': 3.0, 'get': 1.0, 'will': 1.0, 'seems': 1.0, 'love': 1.0, 'trying': 1.0, 'make': 1.0, 'sink': 1.0, 'best': 1.0, 'very': 2.0, 'part': 1.0, 'scoops': 1.0, 'long': 1.0, 'nothing': 1.0, 'hold': 1.0, 'toy': 2.0, 'has': 1.0, 'so': 1.0, 'time': 1.0, 'potential': 1.0, 't': 1.0, 'a': 1.0}
Word element => {'really': 1.0, 'up': 1.0, 'held': 1.0, 'for': 1.0, 'played': 1.0, 'table': 1.0, 'and': 2.0, 'as': 1.0, 'water': 1.0, 'tykes': 1.0, 'our': 2.0, 'little': 1.0, 'play': 1.0, 'we': 1.0, 'in': 1.0, '2': 1.0, 'the': 1.0, 'winter': 1.0, 'got': 1.0, 'bath': 1.0, 'use': 1.0, 'this': 1.0, 'with': 2.0, 'it': 3.0, 'well': 1.0, 'a': 1.0, 'years': 1.0, 'toy': 1.0, '3yo': 1.0, 'has': 2.0, 'happily': 1.0}
Word element => {'bite': 1.0, 'net': 1.0, 'handle': 1.0, 'his': 2.0, 'in': 1.0, 'with': 1.0, 'son': 1.0, 'to': 1.0, 'tub': 1.0, 'cannot': 1.0, 'and': 1.0, 'count': 1.0, 'the': 2.0, 'my': 1.0, 'yet': 1.0, 'hands': 1.0, 'bright': 1.0, 'but': 1.0, 'catching': 1.0, 'of': 1.0, 'he': 2.0, 'loves': 2.0, 'fish': 1.0}
Word element => {'chewing': 1.0, 'he': 1.0, 'from': 1.0, 'in': 1.0, 'pieces': 1.0, 'were': 1.0, 'there': 1.0, 'i': 2.0, 'it': 1.0, 'month': 1.0, 'my': 1.0, 'off': 1.0, 'these': 1.0, 'the': 2.0, 'mouth': 1.0, 'because': 1.0, 'wouldn': 1.0, 'research': 1.0, 'only': 1.0, 'did': 1.0, 'problem': 1.0, 'them': 2.0, 'clean': 1.0, 'mold': 1.0, '8': 1.0, 'since': 1.0, 'lot': 1.0, 'chipping': 1.0, 'son': 1.0, 'on': 1.0, 'bath': 2.0, 'of': 2.0, 'toys': 1.0, 'and': 3.0, 'couple': 1.0, 'they': 2.0, 'introduced': 1.0, 'ago': 1.0, 't': 1.0, 'a': 2.0, 'we': 1.0, 'to': 1.0, 'now': 1.0, 'was': 2.0, 'his': 2.0, 'bought': 1.0, 'months': 1.0, 'rinsed': 1.0, 'kept': 1.0, 'when': 1.0, 'easily': 1.0, 'is': 1.0, 'loves': 1.0, 'that': 2.0, 'old': 1.0, 'noticed': 1.0, 'paint': 2.0, 'saw': 1.0}
Word element => {'everytime': 1.0, 'attention': 1.0, 'his': 1.0, 'old': 1.0, '10mos': 1.0, 'grabs': 1.0, 'now': 1.0, 'toys': 1.0, 'slso': 1.0, 'grown': 1.0, 'made': 1.0, 'about': 1.0, 'scoop': 1.0, 'it': 3.0, 'him': 3.0, 'son': 3.0, 'like': 1.0, 'many': 1.0, 'is': 2.0, 'bathing': 1.0, 'could': 1.0, 'a': 2.0, 'looking': 1.0, '7mos': 1.0, 'to': 3.0, 'was': 4.0, 'with': 2.0, 'occupy': 1.0, 'walmart': 1.0, 'while': 2.0, 'grasp': 1.0, 'local': 1.0, 'when': 1.0, 'this': 2.0, 'found': 1.0, 'i': 5.0, 'in': 2.0, 'also': 2.0, 'fit': 1.0, 'for': 1.0, 'combine': 1.0, 'sons': 1.0, 'great': 1.0, 'pick': 1.0, 'has': 1.0, 'toy': 3.0, 'likes': 1.0, 'small': 1.0, 'have': 1.0, 'moms': 1.0, 'and': 2.0, 'enjoying': 1.0, 'he': 2.0, 'picking': 1.0, 'the': 6.0, 'playing': 2.0, 'that': 3.0, 'other': 1.0, 'fish': 2.0, 'bathe': 1.0, 'net': 3.0, 'however': 1.0, 'not': 2.0, 'my': 5.0, 'fact': 1.0}
Word element => {'like': 1.0, 'are': 1.0, 'of': 1.0, 'body': 1.0, 'wash': 1.0, 'let': 1.0, 'attention': 1.0, 'both': 1.0, 'his': 2.0, 'take': 1.0, 'can': 1.0, 'so': 1.0, 'small': 1.0, 'cute': 1.0, 'passed': 1.0, 'my': 1.0, '2': 1.0, 'the': 3.0, 'us': 1.0, 'when': 1.0, 'i': 1.0, 'old': 1.0, 'to': 2.0, 'knows': 1.0, 'toy': 1.0, 'about': 1.0, 'catch': 1.0, 'is': 1.0, 'very': 1.0, 'son': 1.0, 'me': 1.0, 'and': 5.0, 'him': 1.0, 'it': 1.0, 'this': 2.0, 'he': 1.0, '1year': 1.0, 'use': 1.0, 'hand': 1.0, 'fish': 1.0, 'put': 1.0, 'into': 1.0, 'net': 1.0}
Word element => {'play': 1.0, 'to': 1.0, 'nice': 1.0, 'bath': 1.0, 'playing': 1.0, 'for': 1.0, 'little': 1.0, 'color': 1.0, 'my': 1.0, 'bought': 1.0, 'but': 1.0, 'time': 1.0, 'boy': 1.0, 's': 1.0, '5': 1.0, 'tube': 1.0, 'in': 1.0, 'also': 1.0, 'sister': 1.0, 'this': 2.0, 'older': 1.0, 'it': 1.0, 'and': 2.0, 'cute': 1.0, 'found': 1.0, 'out': 1.0, 'who': 1.0, 'her': 1.0, 'his': 1.0, 'easy': 2.0, 'yr': 1.0, 'is': 1.0, 'enjoy': 1.0}
Word element => {'bad': 1.0, 'so': 1.0, 's': 1.0, 'overall': 1.0, 'scoop': 1.0, 'exactly': 1.0, 'both': 1.0, 'plays': 1.0, 'although': 1.0, 'net': 2.0, 'than': 1.0, 'fishes': 2.0, 'doesn': 1.0, 'but': 2.0, 'of': 1.0, 'up': 1.0, '34': 2.0, 'bit': 1.0, 'a': 2.0, 'son': 1.0, 'my': 1.0, 't': 1.0, 'more': 2.0, 'the': 5.0, 'give': 1.0, 'tub': 1.0, 'purchase': 1.0, 'purchased': 1.0, 'liked': 1.0, 'not': 1.0, 'interested': 1.0, 'brought': 1.0, 'i': 2.0, 'engaging': 1.0, 'mths': 1.0, 'when': 1.0, 'and': 1.0, 'do': 1.0, 'in': 2.0, 'colorful': 1.0, 'to': 3.0, 'was': 2.0, '16': 1.0, 'with': 2.0, 'this': 2.0, 'he': 4.0, 'it': 2.0}
Word element => {'too': 1.0, 'actually': 1.0, 'unlike': 1.0, 'toys': 2.0, 'no': 1.0, 'these': 2.0, 'bath': 1.0, 'syle': 1.0, 'fully': 1.0, 'loves': 1.0, 'baby': 1.0, 'drain': 1.0, 'that': 1.0, 'inside': 1.0, 'mold': 1.0, 'and': 2.0, 'me': 1.0, 'problems': 1.0, 'so': 1.0, 'dry': 1.0, 'makes': 1.0, 'squirt': 1.0, 'my': 1.0, 'happy': 1.0}
Word element => {'out': 1.0, 'in': 1.0, 'link': 1.0, 'drains': 1.0, 'were': 1.0, 'large': 1.0, 'hit': 2.0, 'these': 2.0, 'great': 1.0, 'dry': 1.0, 'holes': 1.0, 'they': 2.0, 'too': 1.0, 'and': 4.0, 'getting': 1.0, 'are': 2.0, 'full': 1.0, 'enough': 1.0, 'like': 1.0, 'instant': 1.0, 'bought': 1.0, 'for': 1.0, 'the': 4.0, 'without': 1.0, 'can': 1.0, '9': 1.0, 'girl': 1.0, 'old': 1.0, 'of': 2.0, 'mold': 1.0, 'enjoy': 1.0, 'water': 1.0, 'together': 2.0, 'tub': 1.0, 'gunk': 1.0, 'them': 5.0, 'baby': 1.0, 'that': 1.0, 'loves': 1.0, 'an': 1.0, 'month': 1.0, 'she': 1.0, 'likes': 1.0, 'our': 2.0, 'to': 1.0, 'chew': 1.0, 'on': 1.0, 'over': 1.0, 'you': 1.0, 'whistle': 1.0, 'open': 1.0, 'we': 2.0, 'hole': 1.0}
Word element => {'unique': 1.0, 'what': 1.0, 'is': 1.0, 'shape': 1.0, 'inside': 1.0, 'sitting': 1.0, 'really': 1.0, 'flash': 1.0, 'use': 1.0, 'cute': 1.0, 'so': 2.0, 'niece': 1.0, 'you': 1.0, 'makes': 1.0, 'old': 1.0, 'baby': 1.0, 'night': 1.0, 'pockets': 2.0, 'understanding': 1.0, '1': 1.0, 'stock': 1.0, 'clever': 1.0, 'and': 3.0, 'with': 3.0, 'it': 2.0, 'cards': 2.0, 'arrived': 1.0, 'last': 1.0, 'home': 2.0, 're': 1.0, 'family': 1.0, 'other': 1.0, 'fish': 1.0, 'already': 1.0, 'games': 1.0, 'year': 1.0, 'photos': 1.0, 'in': 1.0, 'playing': 1.0, 'the': 6.0, 'used': 1.0, 'versatile': 1.0, 'side': 2.0, 'love': 3.0, 'product': 1.0, 'for': 1.0, 'which': 1.0, 'u': 1.0, 'language': 1.0, 'using': 1.0, 'development': 1.0, 'about': 1.0, 'this': 2.0, 'allows': 1.0, 'our': 1.0, 'to': 1.0, 'put': 1.0, 'make': 1.0, 'at': 1.0, 's': 1.0, 'we': 2.0, 'a': 1.0, 'printer': 1.0, 'or': 1.0}
Word element => {'compact': 1.0, 'folds': 1.0, 'however': 1.0, 'your': 1.0, 'leaving': 1.0, 'being': 1.0, 'her': 1.0, 'about': 1.0, '5': 1.0, 'worry': 1.0, 'not': 2.0, 'did': 1.0, 'be': 1.0, 'crawl': 1.0, 'wants': 1.0, 'one': 1.0, 'very': 1.0, 'little': 1.0, 'restrained': 1.0, 'pretty': 1.0, 'rate': 1.0, 'lunch': 1.0, 'houses': 1.0, 'who': 1.0, 'at': 1.0, 'tip': 1.0, 'chairs': 2.0, 'secure': 2.0, 'safely': 1.0, 'hours': 1.0, 'booster': 1.0, 'said': 1.0, 'in': 4.0, 'families': 1.0, 'that': 2.0, 'visit': 2.0, 'i': 5.0, 'm': 1.0, 'mom': 1.0, 'when': 1.0, 'baby': 4.0, 'alot': 1.0, 'recommend': 1.0, 'was': 3.0, 'nicely': 1.0, 'first': 1.0, 'this': 2.0, 'felt': 1.0, 'it': 8.0, 'comfortable': 2.0, 'great': 2.0, 'the': 2.0, 'time': 1.0, 'of': 1.0, 'travel': 2.0, 'wonderful': 1.0, 'girl': 2.0, 'can': 2.0, '2': 1.0, 'sitting': 2.0, 'unattended': 1.0, 'now': 1.0, 'away': 1.0, 'and': 5.0, 'city': 1.0, 'a': 5.0, 'we': 3.0, 'around': 1.0, 'is': 3.0, 'able': 1.0, 'taking': 1.0, 'my': 1.0, 'another': 1.0, 'family': 1.0, 'solids': 1.0, 'needed': 1.0, 'product': 1.0, 'stars': 1.0, 'grandparents': 1.0, 'for': 3.0, 'as': 3.0, 'our': 1.0, 'to': 4.0, 'seat': 1.0, 'life': 1.0, 'feedings': 1.0, 'saver': 1.0, 'would': 1.0, 'dinner': 1.0, 'something': 1.0, 'holidays': 1.0, 'up': 2.0, 'over': 2.0}
Word element => {'tummy': 1.0, 'as': 1.0, 'hug': 1.0, 'of': 1.0, 'really': 1.0, 'these': 1.0, '2': 1.0, 'the': 1.0, 'kids': 1.0, 'gave': 1.0, 'christmas': 1.0, 'it': 1.0, 'thought': 1.0, 'i': 1.0, 'or': 1.0, 'gifts': 1.0, 'sick': 1.0, 'idea': 1.0, 'a': 2.0, 'neat': 1.0, 'was': 1.0, 'to': 1.0, 'heat': 1.0, 'for': 1.0}
Word element => {'warm': 1.0, 'keep': 1.0, 'recommend': 1.0, 'thoroughly': 1.0, 'meanwhile': 1.0, 'll': 1.0, 'just': 1.0, 'therapy': 1.0, 'heat': 1.0, 'great': 1.0, 'would': 1.0, 'aching': 1.0, 'suffer': 1.0, 'ages': 1.0, 'with': 1.0, 'irritable': 1.0, 'get': 1.0, 'warmer': 1.0, 'so': 1.0, 'can': 2.0, 'relax': 1.0, 'you': 1.0, 'able': 1.0, 'aide': 2.0, 'relaxation': 2.0, 'smells': 1.0, 'benefit': 1.0, 'could': 1.0, 'senior': 1.0, 'older': 2.0, 'our': 1.0, 'even': 1.0, 'security': 1.0, 'when': 2.0, 'although': 1.0, 'probably': 1.0, 'feel': 1.0, 'on': 1.0, 'itchy': 1.0, 'nice': 2.0, 'uplifting': 1.0, 'look': 1.0, 'is': 6.0, 'around': 1.0, 'expected': 1.0, 'it': 5.0, 'this': 5.0, 'hotties': 1.0, 'soft': 2.0, 'comforting': 1.0, 'as': 2.0, 'body': 2.0, 'material': 1.0, 'a': 3.0, 's': 1.0, 'quite': 1.0, 'knitted': 2.0, 'quick': 1.0, 'to': 9.0, 'home': 1.0, 'joints': 1.0, 'the': 7.0, 'aroma': 1.0, 'young': 1.0, 'microwavable': 1.0, 'about': 1.0, 'including': 1.0, 'lovely': 1.0, 'not': 3.0, 'give': 1.0, 'and': 11.0, 'old': 2.0, 'cold': 1.0, 'dog': 1.0, 'touch': 1.0, 'for': 7.0, 'fabric': 1.0, 'which': 2.0, 'made': 1.0, 'good': 2.0, 'an': 1.0, 'make': 1.0, 'homely': 1.0, 'fleecy': 1.0, 'smell': 1.0, 'snugly': 1.0, 'back': 1.0, 'animal': 1.0, 'scratchy': 1.0, 'day': 1.0, 'extra': 1.0, 'very': 2.0, 'more': 4.0, 'ruin': 1.0, 'feeling': 1.0, 'some': 1.0, 'fashioned': 1.0, 'from': 3.0, 'warmth': 3.0, 'be': 2.0, 'also': 3.0, 'than': 1.0, 'does': 1.0, 'microwave': 1.0, 'wheat': 1.0, 'filled': 1.0, 'loves': 1.0, 'insert': 1.0, 'well': 1.0, 'i': 7.0, 'nuke': 1.0, 'house': 1.0, 'm': 1.0, 'in': 2.0, 'bigger': 1.0, 'certainly': 1.0, 'pups': 1.0, 'd': 2.0, 'heated': 1.0, 'everyone': 1.0, 'looks': 1.0, 'me': 1.0, 'my': 1.0, 'dogs': 3.0, 'have': 1.0, 'needing': 1.0, 'has': 1.0, 'them': 4.0, 'shall': 1.0, 'hunt': 1.0, 'warmers': 1.0, 'too': 2.0, 'one': 2.0, 'or': 1.0, 'need': 2.0, 'suitable': 2.0, 'found': 1.0, 'easy': 1.0, 'suspect': 1.0, 'they': 2.0}
Word element => {'folks': 1.0, 'for': 1.0, 'this': 1.0, 'recommend': 1.0, 'the': 1.0, 'headaches': 1.0, 'with': 1.0, 'time': 1.0, 'is': 1.0, 'a': 1.0, 'owl': 1.0, 'long': 1.0, 'to': 1.0, 'colds': 1.0, 'easy': 1.0, 'use': 1.0, 'and': 1.0, 'or': 1.0, 'i': 1.0, 'stays': 1.0, 'warm': 1.0}
Word element => {'comfortable': 1.0, 'pretty': 1.0, 'and': 1.0, 'kids': 1.0, 'don': 1.0, 'short': 1.0, 'back': 1.0, 'that': 1.0, 'about': 1.0, 'disappointed': 1.0, 'way': 1.0, 'pic': 1.0, 'because': 1.0, 'not': 1.0, 'little': 2.0, 'baby': 1.0, 'its': 1.0, 'to': 1.0, 'lighter': 1.0, 'so': 2.0, 'i': 4.0, 'was': 2.0, 'expecting': 1.0, 'on': 1.0, 'seeing': 1.0, 'from': 2.0, 'my': 3.0, 'get': 1.0, 'sons': 1.0, 'pastel': 1.0, 'getting': 2.0, 'probably': 1.0, 'can': 1.0, 'but': 3.0, 'blue': 3.0, 'will': 1.0, 'mind': 1.0, 'complain': 1.0, 'pink': 3.0, 'gilder': 1.0, 'the': 9.0, 't': 2.0, 'a': 4.0, 'afterall': 1.0, 'like': 1.0, 'room': 2.0, 'more': 1.0, 'is': 4.0, 'picture': 1.0, 'color': 2.0, 'planning': 1.0, 'one': 1.0, 'love': 1.0, 'actually': 1.0, 'for': 1.0, 'im': 1.0, 'daughters': 1.0, 'glider': 1.0, 'be': 1.0, 'it': 2.0, 'decent': 1.0}
Word element => {'detergent': 1.0, 'recommend': 1.0, 'would': 1.0, 'cleaner': 1.0, 'wash': 2.0, 'mold': 1.0, 'so': 1.0, 'bit': 1.0, 'got': 1.0, 'that': 1.0, 'realized': 1.0, 'squirt': 1.0, 'bathroom': 1.0, 'my': 1.0, 'not': 1.0, 'just': 1.0, 'says': 1.0, 'of': 2.0, 'loved': 1.0, 'colors': 1.0, 'blocks': 1.0, 'like': 1.0, 'they': 4.0, 'other': 2.0, 'a': 4.0, 'bright': 1.0, 'made': 1.0, 'baby': 1.0, 'them': 4.0, 'in': 1.0, 'for': 2.0, 'letters': 1.0, 'distraction': 1.0, 'the': 5.0, 'are': 4.0, 'block': 1.0, 'play': 2.0, 'and': 4.0, 'need': 1.0, 'toys': 2.0, '1': 1.0, 'big': 1.0, 'from': 1.0, 'example': 1.0, 'year': 1.0, 'really': 1.0, 'good': 2.0, 'to': 2.0, 'now': 1.0, 'with': 4.0, 'beginning': 1.0, 'i': 2.0, '4': 1.0, 'one': 1.0, 'months': 1.0, 'periodically': 1.0, 'bath': 1.0, 'on': 1.0, 'drum': 1.0, '5': 1.0, 'well': 1.0, 'review': 1.0, 'half': 1.0, 'son': 1.0, 'still': 1.0, 'have': 1.0, 'pictures': 1.0}
Word element => {'well': 1.0, 'as': 1.0, 'clean': 1.0, 'are': 1.0, 'my': 1.0, 'they': 1.0, 'the': 2.0, 'these': 1.0, 'daughter': 1.0, 'for': 1.0, 'old': 1.0, 'purchased': 1.0, 'to': 1.0, 'month': 1.0, '4': 1.0, 'all': 2.0, 'inside': 1.0, 'soft': 1.0, 'pictures': 1.0, 'and': 2.0, 'easy': 1.0, 'she': 1.0, 'books': 2.0, 'loves': 1.0, 'different': 1.0, 'colors': 1.0}
Word element => {'well': 1.0, 'as': 1.0, 'wipe': 1.0, 'just': 1.0, 'can': 1.0, 'that': 1.0, 'fact': 1.0, 'classroom': 1.0, 'am': 1.0, 'special': 1.0, 'down': 1.0, 'loving': 1.0, 'perfect': 1.0, 'needs': 1.0, 'in': 1.0, 'and': 2.0, 'my': 1.0, 'are': 1.0, 'these': 1.0, 'the': 3.0, 'squishy': 1.0, 'engages': 1.0, 'bought': 1.0, 'i': 4.0, 'them': 3.0, 'there': 1.0, 'kids': 1.0, 'sqeakers': 1.0, 'texture': 1.0, 'really': 1.0, 'for': 1.0, 'love': 1.0}
Word element => {'choice': 1.0, 'good': 1.0, 'held': 1.0, 'interested': 1.0, 'lugging': 1.0, 'kept': 1.0, 'were': 1.0, 'bought': 1.0, 'him': 1.0, 'be': 1.0, 'my': 2.0, 're': 1.0, 'up': 1.0, 'quite': 1.0, 'pretty': 1.0, 'bring': 1.0, 'they': 2.0, 'these': 3.0, 'a': 1.0, 't': 1.0, 'the': 1.0, 'for': 1.0, 'young': 1.0, 'i': 2.0, 'that': 3.0, 'case': 1.0, 'nephew': 1.0, 'his': 1.0, 'in': 2.0, 'parents': 1.0, 'entertained': 1.0, 'with': 1.0, 'use': 1.0, 'loved': 1.0, 'light': 1.0, 'compact': 1.0, 'to': 2.0, 'reported': 1.0, 'everyone': 1.0, 'also': 2.0, 'luggage': 1.0, 'well': 1.0, 'won': 1.0, 'important': 1.0, 'but': 1.0, 'are': 1.0, 'gifts': 1.0, 'you': 1.0, 'and': 3.0, 'across': 1.0, 'world': 1.0}
Word element => {'did': 1.0, 'toys': 1.0, 'run': 1.0, 'and': 1.0, 'too': 1.0, 'thrush': 1.0, 'of': 2.0, 'bout': 1.0, 'well': 1.0, 'a': 1.0, 'my': 1.0, 'are': 1.0, 'not': 2.0, 'the': 4.0, 'ones': 1.0, 'these': 1.0, 'they': 1.0, 'dishwasher': 2.0, 'liked': 1.0, 'books': 2.0, 'loves': 1.0, 'all': 1.0, 'have': 1.0, 'son': 1.0, 'really': 1.0, 'is': 1.0, 'he': 1.0, 'only': 1.0, 'through': 1.0, 'complaint': 1.0, 'that': 2.0, 'i': 1.0, 'friendly': 1.0, 'fair': 1.0, 'we': 1.0, 'to': 1.0, 'had': 2.0}
Word element => {'see': 1.0, 'read': 1.0, 'to': 1.0, 'she': 1.0, 'with': 1.0, 'them': 3.0, 'loves': 1.0, 'play': 1.0, 'colorful': 1.0, 'very': 1.0, 'and': 2.0, 'my': 1.0, 'cool': 1.0, 'hold': 1.0, 'books': 1.0, 'so': 1.0, 'light': 1.0, 'daughter': 1.0, 'can': 1.0}
Word element => {'bookm': 1.0, 'toy': 1.0, 'more': 1.0, 'words': 1.0, 'just': 1.0, 'stories': 1.0, 'of': 2.0, 'story': 1.0, 'always': 1.0, 'them': 1.0, 'baby': 1.0, 'colors': 1.0, 'read': 1.0, 'she': 1.0, 'for': 2.0, 'handle': 1.0, 'i': 3.0, 'trying': 1.0, 'best': 1.0, 'm': 2.0, 'mom': 1.0, 'bright': 1.0, 'girl': 1.0, 'new': 1.0, 'wanted': 1.0, 'to': 4.0, 'items': 1.0, 'and': 3.0, 'get': 1.0, 'my': 1.0, 'images': 1.0, 're': 1.0, 'the': 1.0, 'great': 1.0, 'than': 1.0, 'find': 1.0, 'these': 1.0, 'some': 2.0, 'no': 1.0, 'there': 1.0, 'books': 1.0, 'into': 1.0, 'we': 1.0, 's': 1.0, 'a': 3.0, 'could': 1.0, 'really': 1.0, 'lots': 1.0, 'sink': 1.0, 'her': 2.0, 'teeth': 1.0, 'are': 1.0, 'they': 1.0, 'soft': 1.0, 'squishy': 1.0, 'with': 2.0}
Word element => {'condition': 1.0, 'perfect': 1.0, 'in': 1.0, 'within': 1.0, 'free': 1.0, 'for': 1.0, 'recommend': 1.0, 'store': 1.0, 'popular': 1.0, 'a': 2.0, 'fees': 1.0, 'expensive': 1.0, 'glider': 1.0, 'ottoman': 1.0, 'delivered': 1.0, 'purchased': 1.0, 'delivery': 1.0, 'matching': 1.0, 'and': 3.0, 'week': 1.0, 'quality': 1.0, 'irritated': 1.0, 'am': 1.0, 's': 1.0, 'amazon': 2.0, 'this': 3.0, 'with': 3.0, 'thrilled': 1.0, 'it': 2.0, 'i': 4.0, 'highly': 1.0, 'baby': 1.0, 'incredibly': 1.0, 'high': 1.0, 'soft': 1.0, 'product': 1.0, 'plush': 1.0, 'because': 1.0, 'from': 2.0, 'was': 2.0, 'the': 1.0}
Word element => {'arrived': 1.0, 'amazing': 1.0, 'not': 1.0, 'on': 1.0, 'although': 1.0, 'the': 3.0, 'amazon': 1.0, 'price': 1.0, 'it': 3.0, 'loved': 2.0, 'my': 1.0, 'color': 2.0, 'she': 2.0, 'was': 2.0, 'to': 1.0, 'wanted': 1.0, 'chose': 1.0, 'and': 1.0, 'available': 1.0, 'a': 1.0, 'close': 1.0, 'match': 1.0, 'daughter': 1.0, 'when': 1.0}
Word element => {'sore': 1.0, 'eye': 1.0, 'as': 1.0, 'have': 1.0, 'too': 1.0, 'still': 1.0, 'good': 1.0, 'much': 1.0, 'though': 1.0, 'even': 1.0, 'felt': 1.0, 'that': 1.0, 'nursery': 1.0, 'chair': 2.0, 'an': 1.0, 'back': 1.0, 'addition': 1.0, 'rest': 1.0, 'great': 1.0, 'the': 2.0, 'i': 1.0, 'tried': 1.0, 'return': 1.0, 'a': 3.0, 'spend': 1.0, 'like': 2.0, 'it': 4.0, 'this': 1.0, 'had': 1.0, 'to': 5.0, 'was': 3.0, 'crooked': 1.0, 'deal': 1.0, 'on': 1.0, 'we': 2.0, 'however': 1.0, 'everything': 1.0, 'straighten': 1.0, 'out': 1.0, 'seems': 1.0, 'disappointed': 1.0}
Word element => {'up': 1.0, 'show': 1.0, 'them': 1.0, 'than': 1.0, 'is': 1.0, 'amazon': 1.0, 'everywhere': 1.0, 'itself': 1.0, 'experience': 1.0, 'that': 1.0, 'were': 1.0, 'glider': 1.0, 'good': 1.0, 'pain': 1.0, 'this': 1.0, 'first': 1.0, 'it': 1.0, 'only': 1.0, 'come': 1.0, 'was': 4.0, 'to': 2.0, 'very': 1.0, 'less': 1.0, 'the': 3.0, 'and': 2.0, 'delivery': 1.0, 'comfortable': 1.0, 'on': 1.0, 'furniture': 1.0, 'my': 1.0, 'purchase': 1.0, 'gliders': 1.0, 'looked': 1.0, 'from': 1.0, 'part': 1.0, 't': 1.0, 'a': 2.0, 'else': 1.0, 'so': 1.0, 'they': 2.0, 'didn': 1.0, 'for': 2.0, 'expensive': 1.0, 'supposed': 1.0, 'spent': 1.0, 'i': 2.0, 'two': 1.0, 'day': 1.0, 'days': 1.0, 'waiting': 1.0}
Word element => {'little': 1.0, 'extra': 1.0, 'person': 1.0, 'taller': 1.0, 'however': 1.0, 'see': 1.0, 'amazon': 1.0, 'is': 1.0, 'on': 2.0, 'for': 3.0, 'love': 1.0, 'one': 1.0, 'color': 1.0, 'need': 1.0, 'waited': 1.0, 'might': 1.0, 'a': 1.0, 'could': 1.0, 'go': 1.0, 'we': 3.0, 'i': 2.0, 'it': 3.0, 'sale': 1.0, 'true': 1.0, 'like': 1.0, 'comfy': 1.0, 'and': 4.0, 'so': 1.0, 'squeakiness': 1.0, 'babies': 1.0, 'to': 3.0, 'tried': 1.0, 'r': 1.0, 'pillow': 2.0, 'able': 1.0, 'us': 1.0, 'at': 1.0, 'despite': 1.0, 'no': 1.0, 'picture': 1.0, '5': 1.0, 'noise': 1.0, 'chanced': 1.0, '34': 3.0, 'the': 3.0, 'reviews': 1.0, 'full': 1.0, '2': 1.0, 'but': 1.0, 'back': 2.0, 'ours': 1.0, 'makes': 1.0, 'how': 1.0, 'adjust': 1.0, 'am': 1.0, 'support': 1.0, 'some': 1.0, 'lower': 2.0, 'neck': 1.0}
Word element => {'the': 2.0, 'sales': 1.0, 'buy': 2.0, 'a': 2.0, 'normal': 1.0, 'at': 2.0, 'not': 2.0, 'does': 1.0, 'sits': 1.0, 'and': 1.0, 'price': 2.0, 'high': 1.0, 'great': 2.0, 'it': 1.0, 'thought': 1.0, 'easy': 1.0, 'to': 1.0, 'get': 1.0, 'in': 1.0, 'swiveled': 1.0, 'out': 1.0, 'of': 1.0}
Word element => {'price': 1.0, 'goes': 1.0, 'how': 1.0, 'see': 1.0, 'll': 1.0, 'spot': 1.0, 'directions': 1.0, 'clean': 1.0, 'fabric': 1.0, 'color': 1.0, 'happy': 1.0, 'beige': 1.0, 'micro': 1.0, 'lift': 1.0, 'of': 1.0, 'convenience': 1.0, 'out': 1.0, 'get': 1.0, 'am': 1.0, 'someone': 1.0, 'you': 2.0, 'large': 1.0, 'fine': 1.0, 'happier': 1.0, 'swivel': 1.0, 'does': 1.0, 'smoothly': 1.0, 'glides': 1.0, 'or': 1.0, 'soap': 1.0, 'squeaking': 1.0, 'do': 1.0, 'nursery': 1.0, 'chair': 2.0, 'assembled': 1.0, 'the': 9.0, 'from': 1.0, 'very': 2.0, 'baby': 1.0, 'wanted': 1.0, 'all': 1.0, 'any': 1.0, 'to': 5.0, 'i': 7.0, 'mortar': 1.0, 'it': 3.0, 'this': 3.0, 'with': 5.0, 'love': 1.0, 'for': 2.0, 'say': 1.0, 'comes': 1.0, 'is': 4.0, 'water': 1.0, 'glider': 3.0, 'exactly': 1.0, 'box': 2.0, 'that': 2.0, 'had': 1.0, 'what': 1.0, 'looking': 1.0, 'in': 2.0, 'a': 4.0, 'could': 2.0, 'purchase': 1.0, 'another': 1.0, 'my': 1.0, 'house': 1.0, 'identical': 1.0, 'but': 2.0, 'noise': 1.0, 'room': 1.0, 'popular': 1.0, 'chose': 1.0, 'brick': 1.0, 'sold': 1.0, 'and': 6.0, 'was': 1.0, 'store': 1.0, 'at': 1.0, 'lot': 1.0, 'rosie': 1.0, 'cheaper': 1.0, 'be': 1.0, 'here': 1.0, 'have': 3.0, 'me': 1.0, 'not': 3.0, 'help': 1.0, 'fully': 1.0, 'transition': 1.0, 'issues': 1.0}
Word element => {'better': 1.0, 'doesn': 1.0, 'than': 1.0, 'meditative': 1.0, 'offering': 1.0, 'any': 1.0, 'smoothly': 1.0, 'glider': 1.0, 'effortlessly': 1.0, 'experience': 1.0, 'glides': 1.0, 'a': 2.0, 'nary': 1.0, 't': 1.0, 'peaceful': 1.0, 'the': 1.0, 'fabric': 1.0, 'is': 1.0, 'it': 1.0, 'this': 2.0, 'with': 1.0, 'smooth': 1.0, 'get': 1.0, 'and': 3.0, 'delivery': 1.0, 'cozy': 1.0, 'swift': 1.0, 'restful': 1.0, 'was': 1.0, 'complaint': 1.0}
Word element => {'recliner': 1.0, 'gotten': 1.0, 'have': 1.0, 'would': 1.0, 'many': 1.0, 'after': 1.0, 'however': 1.0, 'times': 1.0, 'at': 1.0, 'and': 2.0, 'comfortable': 1.0, '1': 1.0, 'is': 2.0, 'but': 1.0, 'first': 1.0, 'nights': 1.0, 'it': 5.0, 'i': 2.0, '6': 1.0, 'newborn': 1.0, 'out': 1.0, 'trying': 1.0, 'was': 1.0, 'with': 2.0, 'buying': 1.0, 'overall': 1.0, 'husband': 1.0, 'we': 1.0, 'a': 5.0, 'well': 3.0, 'skeptical': 1.0, 'our': 3.0, 'as': 2.0, 'instead': 1.0, 'chair': 2.0, 'sleepless': 1.0, 'works': 1.0, 'nursery': 1.0, 'the': 3.0, 'without': 1.0, 'depth': 1.0, 'online': 1.0, 'absolutely': 1.0, 'both': 1.0, 'expectations': 1.0, 'does': 1.0, 'color': 1.0, 'fits': 1.0, 'my': 2.0, 'wish': 1.0, 'soft': 1.0, '0': 1.0, '5': 1.0, 'self': 1.0, 'light': 1.0, 'goes': 1.0, 'weight': 1.0, 'met': 1.0, 'wood': 1.0, 'floors': 1.0, 'bit': 2.0, 'so': 1.0, 'slide': 1.0, 'on': 1.0}
Word element => {'true': 1.0, 'aware': 1.0, 'like': 1.0, 'be': 1.0, 'trying': 1.0, 'lesson': 1.0, 'get': 2.0, 'learned': 1.0, 'placed': 1.0, 'just': 1.0, 'saying': 1.0, 'back': 1.0, 'online': 1.0, 'rocker': 1.0, 'pay': 1.0, 'shipping': 1.0, 'of': 1.0, 'something': 1.0, 'cost': 1.0, 'buying': 1.0, 'with': 1.0, 'room': 2.0, 'baby': 1.0, 'however': 2.0, 'comfortable': 1.0, 'for': 3.0, 'and': 1.0, 'matter': 1.0, 'reviews': 1.0, 'satisfied': 1.0, 'creating': 1.0, 'you': 2.0, 'when': 1.0, 'case': 1.0, 'that': 1.0, 'rocking': 1.0, 'is': 2.0, 'on': 1.0, 'bought': 1.0, 'to': 1.0, 'our': 1.0, 'metal': 1.0, 'bottom': 1.0, 'deal': 1.0, 'the': 6.0, 'sits': 1.0, 'another': 1.0, 'purchase': 1.0, 'my': 2.0, 'pain': 1.0, 'soft': 1.0, 'based': 1.0, 'this': 3.0, 'it': 2.0, 'daughter': 1.0, 'glider': 1.0, 'i': 2.0, 'chair': 1.0, 'nursery': 1.0, 'wood': 1.0, 'frame': 1.0, 'time': 1.0, 'against': 1.0, 'person': 1.0, 'we': 1.0, 's': 2.0, 'rubs': 1.0, 'a': 4.0, 'sound': 1.0, 'in': 4.0, 'no': 1.0, 'what': 2.0, 'size': 1.0, 'squeaking': 1.0, 'obviously': 1.0, 'will': 1.0, 'past': 1.0, 'work': 1.0, 'not': 1.0}
Word element => {'use': 1.0, 'but': 1.0, 'liked': 1.0, 'taking': 1.0, 'than': 1.0, 'just': 1.0, 'little': 1.0, 'to': 2.0, 'its': 1.0, 'bigger': 1.0, 'excited': 1.0, 'it': 3.0, 'from': 1.0, 'a': 2.0, 'i': 1.0, 'fyi': 1.0, 'aside': 1.0, 'longer': 1.0, 'side': 1.0, 'is': 1.0, 'on': 1.0, 'receive': 1.0, 'glider': 1.0, 'great': 1.0, 'the': 1.0, 'however': 1.0}
Word element => {'if': 1.0, 'stroller': 1.0, 'umbrella': 1.0, 'under': 1.0, 'nicely': 1.0, 'price': 1.0, 'messenger': 1.0, 'can': 1.0, 'strap': 1.0, 'great': 2.0, 'not': 1.0, 'top': 1.0, 'bit': 1.0, 'get': 1.0, 'does': 1.0, 'room': 1.0, 'size': 2.0, 'skip': 1.0, 'in': 4.0, 'perfect': 1.0, 'anymore': 1.0, 'enough': 2.0, 'around': 1.0, 'is': 5.0, 'carry': 2.0, 'don': 3.0, 'baby': 2.0, 'third': 1.0, 'out': 1.0, 'long': 1.0, 'on': 2.0, 'put': 3.0, 'just': 2.0, 'stuff': 2.0, 'am': 1.0, 'cell': 1.0, 'goods': 1.0, 'my': 2.0, 'and': 4.0, 'one': 1.0, 'too': 3.0, 'like': 2.0, 'when': 1.0, 'taste': 1.0, 'then': 1.0, '20lbs': 1.0, 'of': 1.0, 'the': 8.0, 't': 3.0, 'heavy': 1.0, 'diaper': 1.0, 'for': 2.0, 'love': 1.0, 'switched': 1.0, 'to': 6.0, 'outside': 1.0, 'bag': 5.0, 'columbia': 1.0, 'really': 2.0, 'your': 1.0, 'feel': 1.0, 'big': 2.0, 'little': 1.0, 'nice': 1.0, 'purchased': 1.0, 'i': 5.0, 'hop': 1.0, 'being': 1.0, 'duo': 1.0, 'they': 1.0, 'pocket': 1.0, 'but': 2.0, 'full': 1.0, 'were': 1.0, '6': 1.0, 'a': 9.0, 'small': 1.0, 'wipes': 1.0, 'extra': 1.0, 'money': 1.0, 'cards': 1.0, 're': 1.0, 'phone': 1.0, '8': 1.0, 'sunglasses': 1.0, 'wallet': 1.0, 's': 1.0, 'sides': 1.0, 'fits': 1.0, 'an': 2.0, 'other': 2.0, 'first': 1.0, 'diapers': 1.0, 'plus': 1.0, 'are': 3.0, 'adjust': 1.0, 'sized': 1.0, 'w': 1.0, 'you': 4.0, 'things': 1.0, 'able': 1.0, 'this': 3.0, 'few': 1.0, 'bottle': 1.0, 'side': 1.0, 'wear': 1.0, 'outfit': 1.0, 'it': 5.0, 'bulky': 1.0, 'several': 1.0, 'thing': 2.0, 'there': 1.0, 'also': 1.0, 'storage': 1.0, 'pockets': 2.0, 'discreet': 1.0, 'that': 3.0, 'credit': 1.0, 'feature': 1.0, 'need': 1.0, 'or': 1.0, 'only': 1.0}
Word element => {'floating': 1.0, 'canvas': 1.0, 'out': 2.0, 'made': 2.0, 'between': 1.0, 'expect': 1.0, 'please': 1.0, 'washable': 1.0, 'heavy': 2.0, '60': 1.0, '40': 1.0, 'sure': 1.0, 'mommy': 1.0, 'those': 1.0, 'from': 2.0, 'ring': 1.0, 'rips': 1.0, 'random': 1.0, 'do': 1.0, 'become': 1.0, 'detach': 1.0, 'handle': 1.0, 'love': 1.0, 'impressed': 1.0, 'padded': 1.0, 'nylon': 1.0, 'changes': 1.0, 'clothes': 1.0, 'else': 1.0, 'strap': 1.0, 'put': 1.0, 'soon': 1.0, 'grip': 1.0, 'turns': 1.0, 'each': 1.0, 'least': 1.0, 'poor': 1.0, 'yourself': 1.0, 'black': 1.0, 'convenience': 1.0, 'space': 2.0, 'most': 2.0, 'how': 1.0, 'helps': 1.0, 'screened': 1.0, 'iphone': 1.0, 'standard': 1.0, 'large': 3.0, 'otherwise': 1.0, 'plenty': 2.0, 'tube': 1.0, 'diapering': 1.0, 'piece': 1.0, 'personal': 1.0, 'too': 1.0, 'hang': 1.0, 'undersid': 1.0, 'actually': 1.0, 'diagonal': 1.0, 'kindof': 1.0, 'opened': 1.0, 'second': 1.0, 'packs': 1.0, 'things': 2.0, 'stuffed': 1.0, 'floor': 2.0, 'interior': 4.0, 'lose': 1.0, 'mentions': 1.0, 'probably': 1.0, 'talks': 1.0, 'ad': 2.0, 'stroller': 1.0, 'product': 1.0, 'layers': 1.0, 'lower': 2.0, 'lift': 1.0, 'itself': 1.0, 'phone': 3.0, 'other': 1.0, 'near': 1.0, 'wallet': 1.0, 'ipad': 1.0, 'changing': 1.0, 'slip': 2.0, 'checked': 1.0, 'back': 1.0, 'neat': 2.0, 'hand': 1.0, 'had': 1.0, 'essential': 2.0, 'takes': 1.0, 'coffee': 1.0, 'pad': 1.0, 'wide': 1.0, 'pretty': 2.0, 'dasani': 1.0, 'cup': 1.0, 'fit': 6.0, 'sippie': 1.0, 'tommee': 1.0, 'mug': 1.0, 'larger': 5.0, 'accommodate': 1.0, 'machine': 1.0, 'might': 1.0, 'work': 1.0, 'opening': 1.0, 'first': 1.0, 'concerned': 1.0, 'use': 4.0, 'not': 4.0, 'when': 3.0, 'top': 1.0, 'elastic': 1.0, 'brand': 1.0, 'still': 2.0, 'don': 4.0, 'reviews': 1.0, 'only': 1.0, 'then': 3.0, 'here': 2.0, 'gets': 1.0, 'duty': 1.0, 'knowing': 1.0, 'brings': 1.0, 'holy': 1.0, 'so': 8.0, 'gaping': 1.0, 'jsut': 1.0, 'cooler': 1.0, 'return': 1.0, 'ordered': 1.0, 'hole': 2.0, 'fat': 2.0, 'take': 1.0, 'inside': 6.0, 'preferences': 2.0, 'shoulders': 1.0, 'yippeeeeee': 1.0, 'no': 3.0, 'were': 2.0, 'there': 4.0, 'start': 1.0, 'wipes': 2.0, 'worried': 1.0, 'neato': 1.0, 'size': 3.0, 'desitin': 1.0, 'tippee': 1.0, 'same': 1.0, 'was': 3.0, 'be': 3.0, 'it': 29.0, 'outside': 1.0, 'as': 7.0, 'bags': 4.0, 'up': 4.0, 'diaper': 7.0, 'pouch': 1.0, 'lot': 1.0, '5': 1.0, 'got': 1.0, 'one': 7.0, 'at': 5.0, 'built': 1.0, 'look': 1.0, 'awhile': 1.0, 'can': 5.0, 'is': 10.0, 'items': 1.0, 'on': 10.0, 'doubts': 2.0, 'if': 3.0, 'great': 4.0, 'that': 16.0, 'easily': 6.0, 'guys': 1.0, 'mini': 2.0, 'fine': 1.0, 'mesh': 3.0, 'like': 5.0, 'wasn': 1.0, 'fisher': 1.0, 'once': 1.0, 'local': 1.0, 'travel': 2.0, 'both': 2.0, 'needed': 1.0, 'age': 1.0, 'tags': 1.0, 'front': 5.0, 'what': 4.0, 'grandparents': 1.0, 'big': 3.0, 'me': 2.0, 'entire': 1.0, 'asking': 1.0, 'spent': 1.0, 'some': 5.0, 'container': 1.0, 'forums': 1.0, 'set': 1.0, 'their': 1.0, 'hours': 1.0, 'tried': 1.0, 'runs': 2.0, 'and': 26.0, 'just': 4.0, 'by': 1.0, 'having': 2.0, 'new': 1.0, 'scouring': 1.0, 'with': 6.0, 'saying': 1.0, 'main': 4.0, 'in': 11.0, 'this': 8.0, 'roomy': 4.0, 'bottle': 4.0, 'the': 48.0, 'even': 2.0, 'of': 15.0, 'kept': 1.0, 'week': 1.0, 'must': 1.0, 'gape': 1.0, 'lacking': 1.0, 'tell': 1.0, 'surprisingly': 1.0, '1': 1.0, 'find': 1.0, 'day': 1.0, 'since': 1.0, 'have': 6.0, 'small': 2.0, 'tiny': 2.0, 'rest': 1.0, 'amazon': 2.0, 'doesn': 1.0, 'm': 1.0, 'expensive': 1.0, 'ever': 1.0, 's': 11.0, 't': 8.0, 'something': 2.0, 'stores': 1.0, 'danged': 1.0, 'suspicions': 1.0, 'quicky': 1.0, 'nb': 1.0, 'a': 33.0, 'bag': 16.0, 'about': 1.0, 'via': 1.0, 'against': 1.0, 'bought': 1.0, 'd': 2.0, 'etc': 4.0, 'thinking': 1.0, '34': 24.0, 'paci': 1.0, 'price': 1.0, 'digging': 1.0, 'although': 1.0, 'double': 1.0, 'waited': 1.0, 'hate': 1.0, 'correct': 1.0, 'way': 1.0, 'wouljd': 1.0, 'all': 4.0, 'say': 2.0, 'seconds': 1.0, 'moms': 1.0, 'for': 6.0, 'wow': 1.0, 'hooks': 1.0, 'smaller': 2.0, 'would': 3.0, 'send': 1.0, 'pockets': 9.0, 'helpful': 1.0, 'babysitter': 1.0, 'soft': 1.0, 'hands': 1.0, 'handed': 1.0, 'organize': 1.0, 'down': 2.0, 'perfect': 2.0, 'more': 4.0, 'bit': 1.0, 'than': 2.0, 'little': 5.0, 'suddenly': 1.0, 'to': 16.0, 'order': 1.0, 'maybe': 1.0, 'without': 2.0, 'organization': 1.0, 'shows': 1.0, 'marshall': 1.0, 'accessible': 1.0, 'somewhere': 1.0, 'access': 1.0, 'water': 1.0, 'internet': 1.0, 'whatever': 3.0, 'also': 2.0, 'need': 1.0, 'or': 7.0, 'into': 1.0, 'through': 1.0, 'material': 3.0, '6': 2.0, 'smart': 1.0, 'burp': 2.0, 'believe': 1.0, 'cloths': 2.0, 'but': 5.0, 'organizational': 1.0, 'diapers': 2.0, 'zippered': 2.0, 'plus': 1.0, 'room': 1.0, 'my': 2.0, 'are': 3.0, 'width': 1.0, 'snacks': 2.0, 'pacis': 1.0, 'leave': 1.0, 'end': 2.0, 'flap': 3.0, 'where': 2.0, 'your': 5.0, 'has': 3.0, 'pocket': 14.0, 'quite': 1.0, 'doubt': 1.0, 'two': 5.0, 'depth': 2.0, 'could': 5.0, 'hold': 2.0, 'compartment': 4.0, 'keys': 1.0, 'cell': 2.0, 'you': 13.0, 'zipper': 3.0, 'open': 3.0, 'another': 1.0, 'finally': 1.0, 'i': 23.0, 'zip': 1.0, 'cool': 1.0, 'fruit': 1.0, 'bottom': 2.0, 'lip': 1.0, 'gloss': 1.0, 'aren': 1.0, 'let': 1.0, 'they': 3.0, 'll': 2.0, 'reading': 1.0, 'side': 3.0, 'get': 1.0, 'insulated': 2.0, 'sanitizer': 1.0, 'enough': 2.0, 'definitely': 1.0, 'keep': 1.0}
Word element => {'money': 1.0, 'back': 1.0, '99': 1.0, 'spending': 1.0, 'all': 1.0, 'worth': 1.0, 'but': 1.0, 'simple': 1.0, 'attractive': 1.0, 'aren': 1.0, 'carry': 1.0, 're': 1.0, 'something': 1.0, 'pad': 1.0, 'belive': 1.0, 'let': 1.0, 'up': 1.0, 'change': 1.0, 'diapers': 1.0, 'waste': 1.0, 'container': 1.0, 'wipe': 1.0, 'portable': 1.0, 'booty': 1.0, 'just': 1.0, 'me': 1.0, 'my': 1.0, 'in': 4.0, 'have': 1.0, 'can': 1.0, 'so': 2.0, 'super': 2.0, 'would': 1.0, 've': 1.0, 'pack': 1.0, 'think': 1.0, 'thing': 1.0, 'about': 1.0, 'there': 4.0, 'don': 2.0, 'shoulder': 1.0, 'keep': 1.0, 'makes': 1.0, 'not': 4.0, 'that': 5.0, 'donated': 1.0, 'problem': 1.0, 'main': 2.0, 'one': 1.0, 'too': 1.0, 'and': 10.0, 'description': 1.0, 'closed': 1.0, 'way': 1.0, 'strap': 1.0, 'store': 2.0, 'clothes': 1.0, 'was': 3.0, 'doesn': 1.0, 'thrift': 2.0, 'or': 4.0, 'find': 1.0, 'will': 1.0, 'also': 3.0, 'magnetic': 1.0, 'week': 1.0, 'cream': 1.0, 'be': 2.0, 'to': 8.0, 'hard': 2.0, 'more': 1.0, 'at': 2.0, 'is': 4.0, 'as': 1.0, 'diaper': 2.0, 'comfortable': 1.0, 'expensive': 1.0, 'i': 9.0, 'ended': 1.0, 'perfect': 1.0, 'few': 1.0, 'this': 2.0, 'kids': 1.0, 'looking': 3.0, 'believed': 1.0, 'bag': 6.0, 'what': 2.0, 'had': 1.0, 'on': 4.0, 'long': 1.0, 'getting': 1.0, 'picked': 1.0, 'before': 1.0, 'used': 1.0, 'wear': 1.0, 'it': 18.0, 's': 6.0, 'slippery': 1.0, 'instead': 1.0, 'even': 1.0, 'fit': 1.0, 't': 5.0, 'strange': 1.0, 'shut': 1.0, 'you': 6.0, 'unless': 1.0, 'am': 1.0, 'then': 1.0, 'take': 1.0, 'yes': 1.0, 'off': 1.0, 'stay': 2.0, 'if': 3.0, 'still': 1.0, 'suck': 1.0, 'made': 1.0, 'make': 1.0, 'goes': 1.0, 'out': 1.0, 'the': 7.0, 'of': 2.0, 'some': 2.0, 'for': 4.0, 'fabric': 1.0, 'how': 1.0, 'mom': 1.0, 'your': 2.0, 'flap': 1.0, 'large': 2.0, 'quite': 1.0, 'a': 12.0, 'small': 1.0, 'hunted': 1.0, 'hold': 1.0, 'know': 1.0, 'changing': 1.0, 'much': 3.0, 'empty': 1.0, 'has': 1.0, 'functional': 1.0, 'half': 1.0, 'won': 1.0, 'close': 1.0, 'needs': 1.0, 'spacious': 2.0, 'secured': 1.0, 'denim': 1.0, 'nursing': 1.0}
Word element => {'space': 1.0, 'else': 1.0, 'look': 1.0, 'just': 1.0, 'velcro': 1.0, 'rating': 1.0, '5': 1.0, 'down': 1.0, 'weighted': 1.0, 'save': 1.0, 'my': 1.0, 'your': 1.0, 'think': 1.0, 'on': 1.0, 'not': 1.0, 'open': 1.0, 'makes': 1.0, 'to': 3.0, 'magnet': 2.0, 'see': 1.0, 't': 1.0, 'a': 4.0, 'closes': 1.0, 'an': 1.0, 'that': 1.0, 'when': 1.0, 'you': 2.0, 'time': 1.0, 'smaller': 1.0, 'color': 1.0, 'its': 1.0, 'much': 1.0, 'need': 1.0, 'bag': 5.0, 'certainly': 1.0, 'get': 1.0, 'easy': 2.0, 'strap': 1.0, 'the': 5.0, 'bulky': 1.0, 'heavy': 1.0, 'is': 6.0, 'shipping': 1.0, 'very': 2.0, 'fast': 1.0, 'incredibly': 1.0, 'it': 5.0, 'this': 4.0, 'convenient': 1.0, 'with': 2.0, 'something': 1.0, 'would': 2.0, 'was': 3.0, 'wipe': 1.0, 'don': 1.0, 'packaged': 1.0, 'want': 1.0, 'if': 2.0, 'surface': 1.0, 'small': 3.0, 'too': 1.0, 'closed': 1.0, 'and': 5.0, 'what': 1.0, 'flap': 2.0, 'i': 2.0, 'close': 1.0, 'looking': 1.0, 'for': 2.0, 'in': 1.0, 'well': 1.0, 'has': 1.0, 'good': 1.0, 'but': 2.0, 'shoulder': 2.0, 'wide': 1.0, 'star': 1.0, 'top': 1.0, 'than': 1.0, 'usually': 1.0, 'because': 1.0}
Word element => {'products': 1.0, 'by': 1.0, 'will': 1.0, 'know': 1.0, 'companies': 1.0, 'from': 1.0, 'buying': 1.0, 'prefer': 1.0, 'their': 1.0, 'customer': 1.0, 'have': 2.0, 'ah': 2.0, 'item': 1.0, 'stand': 1.0, 'down': 1.0, 'slides': 1.0, 'in': 2.0, 'about': 1.0, 'baby': 2.0, 'there': 1.0, 'always': 2.0, 'way': 1.0, 'non': 1.0, 'silver': 1.0, 'acknowledged': 1.0, 'little': 1.0, 'functionality': 2.0, 'you': 3.0, 'design': 1.0, 'metal': 2.0, 'they': 3.0, 'adjust': 1.0, 'an': 1.0, 'common': 1.0, 'bag': 4.0, 'with': 3.0, 'this': 4.0, 'love': 2.0, 'for': 2.0, 'goo': 2.0, 'twists': 1.0, 't': 2.0, 'a': 3.0, 'issue': 2.0, 'thigh': 1.0, 'and': 4.0, 'green': 1.0, 'too': 1.0, 'bought': 1.0, 'shoulder': 1.0, 'espresso': 1.0, 'but': 2.0, 'was': 1.0, 'doesn': 1.0, 'crosswise': 1.0, 'its': 4.0, 'problem': 2.0, 'is': 1.0, 'completely': 1.0, 'that': 5.0, 'are': 1.0, 'stay': 1.0, 'my': 1.0, 'mid': 1.0, 'me': 3.0, 'run': 1.0, 'hitting': 1.0, 'the': 12.0, 'of': 3.0, 'bags': 1.0, 'fix': 1.0, 'being': 1.0, 'made': 1.0, 'big': 1.0, 'suggested': 1.0, 'am': 1.0, 'lost': 1.0, 'admitted': 1.0, 'it': 5.0, 'hits': 1.0, 'wear': 2.0, 'due': 1.0, 'compensate': 1.0, 'adjustability': 1.0, 'i': 8.0, 'well': 1.0, 'long': 1.0, 'straps': 1.0, 'cross': 1.0, 'wise': 1.0, 'thing': 2.0, 'begin': 1.0, 'strap': 1.0, 'difficult': 1.0, 'constantly': 1.0, 'twisting': 1.0, 'didn': 1.0, 'contacted': 1.0, 'even': 1.0, 'carry': 1.0, 'getting': 1.0, 'length': 1.0, 'to': 7.0, 'removes': 1.0, 'use': 1.0, 'offer': 1.0, 'replace': 1.0, 'sorry': 1.0}
Word element => {'though': 1.0, 'rocking': 1.0, 'and': 1.0, 'feedings': 1.0, 'night': 1.0, 'for': 1.0, 'perfect': 1.0, 'in': 2.0, 'very': 1.0, 'that': 1.0, 'our': 1.0, 'only': 1.0, 'it': 2.0, 'complaint': 1.0, 'is': 1.0, 'looks': 1.0, 'time': 1.0, 'isn': 1.0, 'easy': 1.0, 'sleep': 1.0, 'its': 1.0, 'normal': 1.0, 'to': 1.0, 'because': 1.0, 'great': 1.0, 't': 2.0, 'the': 1.0, 'back': 1.0, 'doesn': 1.0, 'down': 1.0, 'nursery': 1.0, 'stay': 1.0, 'well': 1.0}
Word element => {'works': 1.0, 'easy': 1.0, 'worth': 1.0, 'together': 1.0, 'definitely': 1.0, 'to': 1.0, 'was': 1.0, 'few': 1.0, 'paying': 1.0, 'month': 1.0, 'a': 1.0, 'after': 1.0, 'that': 1.0, 'fit': 1.0, 'didn': 1.0, 'big': 1.0, 'of': 1.0, 'and': 2.0, 'perfectly': 1.0, 'this': 1.0, 'with': 1.0, 'it': 4.0, 'chair': 2.0, 'nursery': 1.0, 'most': 1.0, 'in': 1.0, 'great': 1.0, 'dollars': 1.0, 't': 1.0, 'the': 2.0, 'my': 1.0, 'creak': 1.0, 's': 2.0, 'upholstered': 1.0, 'i': 1.0, 'comfortable': 1.0, 'one': 2.0, 'is': 1.0, 'want': 1.0, 'wood': 1.0, 'extra': 1.0, 'those': 1.0, 'put': 1.0, 'but': 1.0, 'an': 1.0}
Word element => {'tall': 1.0, 'are': 1.0, 'together': 1.0, 'not': 1.0, 'enough': 1.0, 'uncomfortable': 1.0, 'put': 1.0, 'but': 1.0, 'easy': 1.0, 'sit': 1.0, 'light': 1.0, 'move': 1.0, 'if': 1.0, 'to': 4.0, 'in': 1.0, 'pieces': 1.0, 'room': 2.0, 'rock': 1.0, 'from': 1.0, 'hard': 1.0, 'a': 1.0, 'and': 1.0, 'the': 1.0, 'great': 1.0, 'you': 1.0}
Word element => {'spending': 1.0, 'older': 1.0, 'got': 1.0, 'i': 3.0, 'it': 1.0, 'buy': 1.0, 'never': 1.0, 'would': 1.0, 'feel': 1.0, 'comfortable': 1.0, 'how': 1.0, 'uncomfortable': 2.0, 'doesn': 2.0, 'back': 1.0, 'armchair': 1.0, 'footrest': 1.0, 'well': 2.0, 'did': 1.0, 'smoothly': 1.0, 'glider': 3.0, 'much': 1.0, 'nursery': 2.0, 'chair': 1.0, 'traditional': 1.0, 'again': 1.0, 'tied': 1.0, 'times': 1.0, 'very': 1.0, 'from': 1.0, 'glide': 1.0, 'as': 3.0, 'least': 1.0, 'such': 1.0, 'headache': 1.0, 'gets': 1.0, 'at': 1.0, 'deep': 1.0, 's': 1.0, 'a': 3.0, 't': 3.0, 'made': 1.0, 'with': 3.0, 'wish': 1.0, 'this': 1.0, 'an': 1.0, 'pillow': 1.0, 'for': 4.0, 'my': 2.0, 'money': 1.0, 'work': 1.0, 'sitting': 1.0, 'in': 1.0, 'is': 2.0, 'fall': 1.0, 'the': 3.0, 'asleep': 1.0, 'wasn': 1.0, 'couple': 1.0, 'too': 1.0, 'and': 2.0, 'woke': 1.0, 'horrible': 2.0, 'of': 1.0, 'child': 1.0, 'boppy': 1.0, 'up': 1.0, 'backpain': 1.0, 'breastfeeding': 1.0, 'that': 2.0}
Word element => {'crib': 1.0, 'to': 1.0, 'was': 2.0, 'while': 1.0, 'nights': 1.0, 'few': 1.0, 'a': 1.0, 'newborn': 1.0, 'in': 1.0, 'slept': 1.0, 'i': 1.0, 'and': 3.0, 'very': 1.0, 'my': 1.0, 'rocks': 1.0, 'is': 1.0, 'ask': 1.0, 'nice': 1.0, 'anything': 1.0, 'her': 1.0, 'reclines': 1.0, 'glides': 1.0, 'transitioning': 1.0, 'it': 3.0, 'this': 1.0, 'comfortable': 2.0, 'for': 1.0, 'more': 1.0, 'chair': 1.0, 'comfort': 1.0, 'than': 1.0, 'sleep': 1.0, 'deprived': 1.0, 'when': 1.0, 'your': 1.0, 'cant': 1.0, 'completely': 1.0}
Word element => {'satisfied': 1.0, 'overall': 1.0, 'wouldn': 1.0, 'right': 1.0, 'done': 1.0, 'they': 1.0, 'everything': 1.0, 'if': 1.0, 'fixed': 1.0, 'material': 1.0, 'back': 1.0, 'velco': 1.0, 'fully': 1.0, 'also': 1.0, 'prevent': 1.0, 'design': 1.0, 'elastic': 2.0, 'some': 2.0, 'used': 1.0, 'have': 5.0, 'again': 2.0, 'you': 1.0, 'when': 2.0, 'partially': 1.0, 'would': 2.0, 'position': 1.0, 'closed': 1.0, 'and': 4.0, 'out': 1.0, 'couple': 1.0, 'sleep': 1.0, 'to': 2.0, 'pulled': 1.0, 'comfortable': 1.0, 'chair': 2.0, 'is': 2.0, 'locally': 1.0, 'caught': 1.0, 'sit': 1.0, 'm': 1.0, 'price': 2.0, 'rest': 2.0, 'i': 5.0, 'in': 3.0, 't': 1.0, 'makers': 1.0, 'a': 2.0, 'could': 3.0, 'probably': 1.0, 'nothing': 1.0, 'hanging': 1.0, 'the': 14.0, 'nicer': 1.0, 'it': 4.0, 'find': 1.0, 'glider': 1.0, 'bought': 1.0, 'raised': 1.0, 'mechanism': 1.0, 'then': 1.0, 'rock': 1.0, 'reclining': 1.0, 'well': 1.0, 'has': 1.0, 'type': 2.0, 'makes': 1.0, 'me': 1.0, 'poorly': 1.0, 'not': 1.0, 'minor': 1.0, 'of': 1.0, 'leg': 2.0, 'this': 1.0, 'recline': 2.0, 'flaws': 1.0, 'but': 1.0, 'think': 1.0, 'on': 1.0, 'guards': 1.0, 'that': 2.0, 'regret': 1.0, 'often': 1.0, 'purchase': 1.0, 'off': 1.0, 'cover': 2.0, 'for': 1.0, 'fit': 1.0, 'under': 1.0, 'gets': 2.0}
Word element => {'looking': 1.0, 'nice': 1.0, 'a': 1.0, 'swivel': 1.0, 'motion': 1.0, 'two': 1.0, 'earlier': 1.0, 'chair': 2.0, 'original': 1.0, 'weeks': 1.0, 'surprised': 1.0, 'delivered': 1.0, 'sturdy': 1.0, 'recliner': 1.0, 'pleasantly': 1.0, 'when': 1.0, 'i': 2.0, 'was': 2.0, 'than': 1.0, 'the': 2.0, 'estimate': 1.0, 'this': 1.0, 'it': 2.0, 's': 2.0, 'very': 2.0, 'and': 2.0, 'love': 1.0, 'comfortable': 1.0}
Word element => {'i': 1.0, 'yet': 1.0, '10': 1.0, 'good': 2.0, 'quality': 1.0, 'but': 2.0, 'boring': 1.0, 'tend': 1.0, 'little': 1.0, 'we': 1.0, 't': 1.0, 'a': 1.0, 'be': 1.0, 'our': 1.0, 'to': 1.0, 'was': 2.0, 'will': 1.0, 'slept': 1.0, 'seems': 1.0, 'great': 1.0, 'the': 3.0, 'for': 2.0, 'chair': 3.0, 'far': 1.0, 'sure': 2.0, 'so': 1.0, 'rockers': 1.0, 'm': 1.0, '34': 2.0, 'is': 3.0, 'fine': 1.0, 'bought': 1.0, 'color': 1.0, 'my': 1.0, 'rocking': 1.0, 'box': 1.0, 'it': 3.0, 'came': 1.0, 'husband': 1.0, 'destroyed': 1.0, 'in': 2.0, 'itself': 1.0, 'nursing': 1.0, 'condition': 1.0, 'make': 1.0, 'are': 1.0, 'haven': 1.0, 'home': 1.0, 'you': 1.0, 'when': 1.0, 'neutral': 1.0, 'delivered': 1.0, 'nursery': 2.0, 'works': 1.0, 'me': 1.0, 'and': 1.0, 'while': 2.0, '5': 3.0}
Word element => {'purchase': 1.0, 'regret': 1.0, 'do': 1.0, 'last': 1.0, 'doubt': 1.0, 'use': 1.0, 'some': 1.0, 'had': 1.0, 'arm': 1.0, 'right': 1.0, 'i': 3.0, 'sold': 1.0, 'chair': 1.0, 'rotated': 1.0, 'so': 1.0, '150': 1.0, 'time': 1.0, 'and': 3.0, 'tough': 1.0, 'reclined': 1.0, 'my': 2.0, 'of': 1.0, 'the': 6.0, 'nursing': 1.0, '8': 1.0, 'stopped': 1.0, 'it': 7.0, 'intent': 1.0, 'list': 1.0, 'since': 1.0, 'a': 4.0, 'go': 1.0, 'we': 7.0, 's': 1.0, 'one': 3.0, 'months': 1.0, 'bought': 1.0, 'sell': 2.0, 'than': 1.0, 'when': 2.0, 'barely': 1.0, 'less': 1.0, 'made': 1.0, 'was': 1.0, 'end': 1.0, 'unsexy': 1.0, 'fact': 1.0, 'living': 1.0, 'this': 3.0, 'purchased': 1.0, 'to': 5.0, 'wife': 2.0, 'month': 1.0, 'period': 1.0, 'from': 1.0, 'in': 1.0, 'item': 1.0, 'our': 3.0, 'retiree': 1.0, 'master': 1.0, 'bedroom': 1.0, 'nurse': 1.0, 'she': 1.0, 'unfortunately': 1.0, 'baby': 1.0, 'started': 2.0, 'comfortably': 1.0, 'has': 1.0, 'at': 2.0, 'is': 1.0, 'anything': 1.0, 'but': 1.0, 'comfortable': 1.0, 'until': 1.0, 'rocker': 1.0, 'ago': 1.0, 'fairly': 1.0, 'with': 2.0, 'rigid': 1.0, 'cushions': 1.0, 'decided': 2.0, 'used': 1.0, 'later': 1.0, 'very': 2.0, 'boxy': 1.0, 'drop': 1.0, 'appeal': 1.0, 'seams': 1.0, 'that': 4.0, 'bites': 1.0, 'resale': 1.0, 'for': 1.0, 'finally': 1.0, 'long': 1.0, 'noticed': 1.0, 'on': 3.0, 'will': 1.0, 'could': 1.0, 'craig': 1.0, 'also': 1.0, 'us': 1.0, '25': 1.0, 'got': 1.0, 'no': 1.0, 'liked': 1.0, 'rocked': 1.0, 'security': 1.0, 'continued': 1.0, 'year': 1.0, 'price': 1.0, 'open': 1.0, 'over': 1.0, 'two': 1.0, 'low': 1.0, 'social': 1.0}
Word element => {'size': 1.0, 'rest': 1.0, 'leg': 1.0, 'foot': 1.0, 'stuffed': 1.0, 'over': 1.0, 'soft': 1.0, 'as': 4.0, 'not': 1.0, 'small': 1.0, 'full': 1.0, 'are': 1.0, 'well': 1.0, 'a': 3.0, 'needs': 1.0, 'in': 1.0, 't': 1.0, 'the': 2.0, 'nicely': 1.0, 'like': 2.0, 'and': 2.0, 'fit': 1.0, 'extend': 1.0, 'it': 1.0, 'this': 4.0, 'suits': 1.0, 'that': 2.0, 'swivels': 1.0, 'far': 1.0, 'chair': 3.0, 'almost': 1.0, 'doesn': 1.0, 'an': 1.0, 'back': 1.0, 'space': 1.0, 'i': 2.0, 'reclines': 1.0, 'all': 1.0, 's': 1.0, 'way': 1.0, 'my': 1.0, 'recliner': 3.0, 'rocks': 1.0, 'few': 1.0, 'cons': 1.0}
Word element => {'wrong': 1.0, 'want': 1.0, 'traditional': 1.0, 'outweigh': 1.0, 'pros': 1.0, 'line': 1.0, 'goes': 1.0, 'before': 1.0, 'buy': 2.0, 'down': 1.0, 'go': 2.0, 'eventually': 1.0, 'eye': 1.0, 'an': 1.0, 'regularly': 1.0, 'price': 3.0, 'place': 1.0, 'leave': 1.0, 'pinched': 1.0, 'fingers': 1.0, 'think': 2.0, 'seen': 1.0, 'netting': 1.0, 'visible': 1.0, 'black': 1.0, 'there': 1.0, 'over': 1.0, 'open': 1.0, 'position': 1.0, 'does': 2.0, 'on': 1.0, 'realize': 1.0, 'keep': 2.0, 'did': 2.0, 'precaution': 2.0, 'safety': 2.0, 'foot': 2.0, 'getting': 1.0, 'reclined': 2.0, 'fluctuates': 1.0, 'when': 5.0, 'useful': 1.0, 'also': 1.0, 'us': 1.0, 'breaker': 1.0, 'comparing': 1.0, 'rock': 2.0, 'smoothly': 1.0, 'people': 1.0, 'gliding': 1.0, 'mechanism': 1.0, 'move': 1.0, 'rest': 2.0, 't': 2.0, 'don': 2.0, 'like': 3.0, 'table': 1.0, 'sized': 1.0, 'glide': 1.0, 'would': 3.0, 'medium': 1.0, 'supplies': 1.0, 'we': 4.0, 'one': 1.0, 'too': 1.0, 'and': 8.0, 'time': 1.0, 'tall': 1.0, 'just': 1.0, 'large': 3.0, 'not': 6.0, 'but': 4.0, 'plush': 1.0, 'however': 1.0, 'suspect': 1.0, 'know': 1.0, 'easy': 2.0, 'get': 1.0, 'although': 1.0, 'waiting': 1.0, 'durable': 1.0, 'born': 1.0, 'are': 3.0, 'match': 1.0, 'arrived': 1.0, 'quickly': 2.0, 'a': 12.0, 'small': 1.0, 'have': 1.0, 'can': 1.0, 'so': 3.0, 'at': 1.0, 'is': 15.0, 'cons': 1.0, 'holds': 1.0, 'good': 1.0, 'which': 2.0, 'plan': 2.0, 'about': 2.0, 'deal': 1.0, 'baby': 1.0, 'than': 1.0, 'assemble': 1.0, 'relatively': 1.0, 'thought': 1.0, 'it': 19.0, 'rocking': 1.0, 'this': 7.0, 'perfect': 1.0, 'with': 1.0, 'bottom': 1.0, 'love': 1.0, 'far': 2.0, 'he': 1.0, 'etc': 1.0, 'moves': 1.0, 'the': 19.0, 'of': 4.0, 'seems': 4.0, 'gliders': 1.0, 'will': 2.0, 'pieces': 1.0, 'in': 5.0, 'once': 1.0, 'room': 2.0, 'clean': 1.0, 'be': 4.0, 'quietly': 1.0, 'nursery': 1.0, 'here': 1.0, 'spot': 1.0, 'little': 2.0, 'two': 1.0, 'nice': 2.0, 'metal': 1.0, 'sturdy': 1.0, 'still': 2.0, 'turn': 1.0, 'if': 3.0, 'mesh': 1.0, 'up': 3.0, 'use': 1.0, 'another': 1.0, 'my': 1.0, 'may': 2.0, 'cannot': 1.0, 'later': 1.0, 'from': 2.0, 'for': 5.0, 'fabric': 1.0, 'reclines': 1.0, 'accommodate': 1.0, 'to': 14.0, 'pretty': 1.0, 'back': 2.0, 'enough': 1.0, 'more': 1.0, 'husband': 1.0, 'probably': 1.0, 'any': 1.0, 'mom': 1.0, 'who': 2.0, 'comfy': 1.0, 'six': 1.0, 'i': 8.0, 'feet': 1.0, 'test': 1.0, 'chair': 9.0, 'couple': 1.0, 'color': 1.0, 'liking': 1.0, 'swivel': 2.0, 'you': 2.0, 'motion': 1.0, 'things': 1.0, 'especially': 2.0, 'nursing': 1.0, 'or': 1.0, 'feature': 2.0, 'need': 1.0, 'styled': 1.0, 'that': 3.0}
Word element => {'time': 1.0, 'over': 1.0, 'away': 1.0, 'hopefully': 1.0, 'squeak': 1.0, 'indeed': 1.0, 'does': 1.0, 'cons': 1.0, 'motion': 1.0, 'this': 1.0, 'extend': 1.0, 'it': 1.0, 'nursery': 1.0, 'when': 1.0, 'micro': 1.0, 'rocking': 2.0, 'corner': 1.0, 'small': 1.0, 'chocolate': 1.0, 'a': 2.0, 'well': 1.0, 'the': 2.0, 'positioned': 1.0, 'such': 1.0, 'in': 2.0, 'nice': 1.0, 'center': 1.0, 'goes': 1.0, 'we': 1.0, 'fit': 1.0, 'have': 1.0, 'our': 1.0, 'that': 1.0, 'toward': 1.0, 'you': 1.0, 'to': 2.0, 'swivel': 1.0, '34': 4.0, 'of': 1.0, 'bit': 1.0, 'brown': 1.0, 'room': 1.0, 'fully': 1.0}
Word element => {'nursery': 1.0, 'addition': 1.0, 'reattached': 1.0, 'just': 1.0, 'myself': 1.0, 'minute': 1.0, 'worried': 1.0, 'by': 2.0, 'up': 2.0, 'boppy': 1.0, 'lady': 1.0, 'few': 2.0, 'this': 3.0, 'perfect': 1.0, 'little': 1.0, 'material': 1.0, 'on': 2.0, 'and': 8.0, 'perfectly': 1.0, 'fits': 2.0, 'purchase': 1.0, 'the': 10.0, 'top': 1.0, 'breastfeeding': 1.0, 'initially': 1.0, 've': 1.0, 'would': 1.0, 'chair': 5.0, '8': 1.0, '34': 1.0, 'velvet': 1.0, 'too': 1.0, 'happy': 1.0, 'wipe': 1.0, 'had': 2.0, 'to': 7.0, 'any': 2.0, 'ourselves': 1.0, 'was': 3.0, 'prior': 1.0, 'did': 1.0, 'smoothly': 1.0, 'but': 3.0, 'pregnant': 1.0, '2': 1.0, 'like': 1.0, 'for': 2.0, 'bottom': 2.0, 'love': 3.0, 'durable': 1.0, 'with': 1.0, 'it': 6.0, 'a': 3.0, 't': 1.0, 'swivels': 1.0, 'seems': 1.0, 'stains': 1.0, 'spit': 1.0, 'm': 2.0, 'in': 3.0, 'people': 1.0, 'is': 3.0, 'comes': 1.0, 'no': 1.0, 'about': 1.0, 'issues': 1.0, 'rocks': 1.0, 'back': 2.0, 'most': 1.0, 'making': 1.0, 'sitting': 1.0, 'noise': 1.0, '5': 1.0, 'overall': 1.0, 'husband': 1.0, 'my': 3.0, 'me': 1.0, 'i': 10.0, 'well': 1.0, 'haven': 1.0, 'used': 1.0, 'very': 1.0, 'recliner': 1.0, 'put': 1.0, 'much': 1.0, 'soft': 1.0, 'without': 1.0, 'works': 1.0, 'times': 1.0, 'hesitant': 1.0, 'have': 1.0, 'great': 2.0, 'lap': 1.0, '1': 1.0, 'be': 2.0, 'heavy': 1.0, 'manageable': 1.0, 'while': 1.0, 'carry': 1.0, 'upstairs': 1.0, 'so': 1.0, 'needs': 1.0, 'parts': 1.0, 'together': 1.0}
Word element => {'in': 1.0, 'sit': 1.0, 'go': 1.0, 'just': 1.0, 'i': 1.0, 'husband': 1.0, 'that': 1.0, 'so': 1.0, 'read': 1.0, 'crazy': 1.0, 'nothing': 1.0, 'really': 1.0, 'is': 1.0, 'we': 2.0, 'a': 1.0, 'and': 3.0, 'my': 1.0, 're': 1.0, 'happy': 1.0, 'chair': 1.0, 'super': 1.0, 'the': 2.0, 'got': 1.0, 'bit': 1.0, 'especially': 1.0, 'will': 1.0, 'but': 1.0, 'comfortable': 2.0, 'for': 1.0, 'money': 1.0, 'with': 1.0, 'it': 3.0, 'what': 1.0, 'does': 1.0, 's': 1.0, 'creak': 1.0, 'tiny': 1.0}
Word element => {'nursery': 1.0, 'chair': 1.0, '7': 1.0, 'height': 1.0, 'swivel': 1.0, 'frame': 1.0, '5': 1.0, 'room': 1.0, 'has': 1.0, 'm': 1.0, 'z': 1.0, 'firm': 1.0, 'but': 1.0, 'la': 1.0, 'large': 2.0, 'is': 3.0, 'motion': 2.0, 'back': 1.0, 'handle': 1.0, 'move': 1.0, 'and': 4.0, 'set': 1.0, 'easy': 1.0, 'great': 1.0, 'the': 9.0, 'a': 1.0, 's': 1.0, 't': 1.0, 'first': 1.0, 'with': 2.0, 'any': 1.0, 'as': 2.0, 'to': 3.0, 'was': 1.0, 'one': 1.0, 'for': 3.0, 'love': 2.0, 'i': 5.0, 'it': 2.0, 'looks': 1.0, 'second': 1.0, 'got': 1.0, 'use': 1.0, 'regret': 1.0, 'not': 2.0, 'because': 1.0, 'having': 1.0, 'perfect': 2.0, 'this': 2.0, 'recline': 1.0, 'my': 3.0, 'fact': 1.0, 'that': 1.0, 'baby': 1.0, 'up': 1.0, 'child': 1.0, 'don': 1.0, 'smooth': 1.0, 'gliding': 1.0, 'pressure': 1.0, 'goes': 1.0, 'down': 1.0, 'from': 1.0, 'your': 2.0, 'foot': 1.0, 'legs': 1.0, 'boy': 1.0, 'so': 1.0, 'when': 1.0, 'you': 2.0, 'are': 1.0, 'rest': 1.0, 'holding': 1.0, 'have': 1.0, 'hand': 1.0}
Word element => {'with': 1.0, 'it': 1.0, 'returned': 1.0, 'but': 1.0, 'problems': 1.0, 'for': 1.0, 'company': 1.0, 'the': 3.0, 'that': 1.0, 'ottoman': 1.0, 'not': 1.0, 'was': 2.0, 'right': 1.0, 'color': 1.0, 'looking': 1.0, 'no': 1.0, 'texture': 1.0, 'or': 1.0, 'i': 1.0}
Word element => {'getting': 1.0, 'not': 1.0, 'definitely': 1.0, 'rocker': 1.0, 'get': 1.0, 'way': 1.0, 'glider': 1.0, 'want': 2.0, 'if': 2.0, 'recommend': 2.0, 'only': 2.0, 'outlast': 1.0, 'you': 2.0, 'easily': 1.0, 'low': 1.0, 'and': 2.0, 'matching': 1.0, 'couple': 1.0, 'perfectly': 1.0, 'just': 1.0, 'light': 1.0, 'disappointing': 1.0, 'quality': 1.0, 'will': 1.0, 'very': 1.0, 'little': 1.0, 'with': 1.0, 'this': 3.0, 'love': 1.0, 'for': 1.0, 'feels': 1.0, 'ottoman': 5.0, 'it': 2.0, 'looks': 1.0, 'as': 2.0, 'to': 5.0, 'the': 13.0, 'is': 4.0, 'more': 1.0, 'extremely': 1.0, 'while': 2.0, 'chair': 7.0, 'there': 1.0, 'of': 1.0, 'we': 2.0, 'a': 5.0, 'go': 1.0, 'hole': 1.0, 'in': 1.0, 'fabric': 1.0, 'glide': 1.0, 'have': 1.0, 'after': 1.0, 'matched': 1.0, 'bought': 1.0, 'months': 1.0, 'medium': 1.0, 'use': 3.0, 'great': 1.0, 'feel': 1.0, 'price': 1.0, 'i': 4.0, 'would': 3.0, 'expected': 1.0}
Word element => {'otherwise': 1.0, 'unacceptable': 1.0, 'prime': 1.0, '27': 1.0, 'until': 1.0, 'didn': 1.0, '8': 1.0, 'on': 1.0, 'would': 1.0, 'speed': 1.0, 'chair': 1.0, 'complement': 1.0, 'to': 2.0, 'be': 1.0, 'product': 2.0, '5': 1.0, 'also': 1.0, 'perfect': 1.0, 'but': 1.0, 'great': 1.0, 't': 1.0, 'the': 5.0, 'november': 2.0, 'is': 3.0, 'we': 1.0, 'ottoman': 1.0, 'a': 2.0, 'it': 1.0, 'this': 3.0, 'glider': 1.0, 'ordered': 2.0, 'i': 4.0, 'am': 1.0, 'me': 1.0, 'get': 1.0, 'and': 2.0, '1': 1.0, 'giving': 1.0, 'selected': 1.0, 'for': 1.0, '2012': 2.0, 'could': 1.0, 'if': 1.0, 'shipping': 2.0}
Word element => {'purchase': 1.0, 'soft': 1.0, 'wanted': 1.0, 'very': 2.0, 'and': 2.0, 'i': 2.0, 'when': 1.0, 'super': 1.0, 'reclines': 1.0, 'what': 1.0, 'exactly': 1.0, 'chair': 2.0, 'back': 2.0, 'is': 4.0, 'the': 4.0, 'happy': 2.0, 'my': 1.0, 'firm': 1.0, 'sit': 1.0, 'fabric': 1.0, 'all': 1.0, 'in': 1.0, 'this': 1.0, 'with': 1.0, 'it': 2.0, 'way': 1.0}
Word element => {'was': 2.0, 'room': 1.0, 'the': 3.0, 'great': 2.0, 'comfortable': 1.0, 'assemble': 1.0, 'for': 1.0, 'using': 1.0, 'got': 1.0, 'soft': 1.0, 'this': 2.0, 'looks': 1.0, 'it': 3.0, 'with': 1.0, 'in': 1.0, 'my': 1.0, 'company': 3.0, 'ceva': 1.0, 'chair': 2.0, 'try': 1.0, 'only': 1.0, 'nursery': 1.0, 'who': 1.0, 'easy': 1.0, 'sure': 1.0, 'we': 1.0, 's': 2.0, 'you': 1.0, 'and': 3.0, 'delivery': 1.0, 'very': 1.0, 'to': 1.0, 'our': 1.0, 'as': 1.0, 'problem': 1.0, 'shipped': 1.0, 'otherwise': 1.0, 'i': 2.0, 'not': 1.0, 'if': 2.0, 'same': 1.0, 'used': 1.0, 'everywhere': 1.0, 'avoid': 1.0, 'but': 1.0, 'can': 1.0, 'your': 1.0, 'm': 1.0, 'd': 1.0}
Word element => {'in': 1.0, 'broken': 1.0, 'be': 1.0, 'can': 1.0, 'hopefully': 1.0, 'of': 2.0, 'good': 1.0, 'most': 1.0, 'for': 1.0, 'bit': 1.0, 'stiff': 1.0, 'though': 1.0, 'buy': 1.0, 'gliders': 1.0, 'the': 2.0, 'dollars': 1.0, 'more': 1.0, 'a': 3.0, 'is': 1.0, 'price': 1.0, 'were': 1.0, 'other': 1.0, 'we': 1.0, 'it': 3.0, 'looked': 1.0, 'at': 1.0, 'hundreds': 1.0, 's': 1.0, 'little': 2.0}
Word element => {'anyone': 1.0, 'to': 1.0, 'it': 1.0, 'recommend': 1.0, 'i': 1.0, 'excellent': 1.0, 'perfect': 1.0, 'but': 1.0, 'chair': 2.0, 'would': 1.0, 'was': 1.0, 'worried': 1.0, 'and': 2.0, 'size': 1.0, 'about': 1.0, 'comfort': 1.0, 'the': 1.0, 'is': 1.0}
Word element => {'seem': 1.0, 'does': 1.0, 'actual': 1.0, 'our': 1.0, 'to': 5.0, 'silent': 1.0, 'as': 1.0, 'any': 1.0, 'when': 1.0, 'in': 1.0, 'undamaged': 1.0, 'bought': 1.0, 'decided': 1.0, 'mechanism': 1.0, 'must': 1.0, 'very': 2.0, 'nice': 2.0, 'little': 1.0, 'from': 1.0, 'companion': 1.0, 'clean': 1.0, 'different': 1.0, 'out': 2.0, 'chair': 2.0, 'nursery': 2.0, 'works': 1.0, 'living': 1.0, 'ottoman': 2.0, 'chenille': 2.0, 'warranty': 1.0, 'especially': 1.0, 'top': 1.0, 'back': 1.0, 'model': 1.0, 'new': 1.0, 'would': 1.0, 'itself': 1.0, 'not': 1.0, 'excellent': 1.0, 'bottom': 1.0, 'love': 1.0, 'for': 3.0, 'glider': 1.0, 'it': 4.0, 'this': 2.0, 'harmony': 1.0, 'kids': 1.0, 'matching': 1.0, 'neutral': 1.0, 'and': 4.0, 'delivery': 1.0, 'unit': 1.0, 'we': 4.0, 'a': 5.0, 'paired': 2.0, 'go': 1.0, 'is': 5.0, 'amazon': 1.0, 'use': 1.0, 'well': 1.0, 'was': 2.0, 'everything': 1.0, 'packaged': 1.0, 'came': 1.0, 'striping': 1.0, 'anywhere': 1.0, 'wanted': 1.0, 'so': 1.0, 'round': 1.0, 'be': 1.0, 'bonus': 1.0, 'the': 12.0, 'of': 1.0, 'available': 1.0, 'reasonably': 1.0, 'on': 1.0, 'but': 2.0, 'work': 1.0, 'priced': 1.0, 'purchase': 1.0, 'fancy': 1.0, 'that': 2.0, 'room': 2.0, '5': 1.0, 'also': 1.0, 'point': 1.0, 'tan': 1.0, 'almost': 1.0, 'year': 1.0, 'save': 1.0, 'hope': 1.0, 'never': 1.0, 'gliding': 1.0, 'with': 3.0, 'width': 1.0, 'smooth': 1.0, 'color': 1.0, 'swivel': 1.0}
Word element => {'slip': 1.0, 'least': 1.0, 'out': 1.0, 'chairs': 1.0, 'higher': 1.0, 'competitive': 1.0, 'them': 1.0, 'make': 1.0, 'additional': 1.0, 'some': 2.0, 'quality': 1.0, 'construction': 1.0, 'like': 1.0, 'fabrics': 1.0, 'would': 3.0, 'wish': 1.0, 'myself': 1.0, 'price': 1.0, 'product': 1.0, 'comment': 1.0, 'options': 2.0, 'company': 1.0, 'only': 1.0, 'my': 1.0, 'washable': 1.0, 'slipcovers': 1.0, 'know': 1.0, 'cover': 1.0, 'heavier': 1.0, 're': 1.0, 'y': 1.0, 'twills': 2.0, 'chenille': 1.0, 's': 1.0, 'run': 1.0, 'will': 1.0, 'last': 1.0, 'am': 1.0, 'barn': 1.0, 'feel': 1.0, 'hand': 1.0, 'anything': 1.0, 'soft': 2.0, 'yellow': 1.0, 'white': 1.0, 'little': 1.0, 'nice': 2.0, 'delivered': 1.0, 'good': 1.0, 'which': 1.0, 'based': 1.0, 'ups': 1.0, 'mentioned': 1.0, 'ballard': 1.0, 'removed': 1.0, 'basic': 1.0, 'issues': 2.0, 'similar': 1.0, 'there': 1.0, 'soon': 1.0, 'and': 5.0, 'it': 5.0, 'with': 6.0, 'mind': 1.0, 'finally': 1.0, 'c': 1.0, 'd': 1.0, 'a': 10.0, 'off': 1.0, 'b': 1.0, 'expecting': 1.0, 'was': 3.0, 'offered': 1.0, 'had': 2.0, 'to': 6.0, 'all': 1.0, 'how': 1.0, 'our': 2.0, 'pottery': 1.0, 'wanted': 1.0, 'chair': 4.0, 'nursery': 1.0, 'do': 1.0, 'are': 1.0, 'plus': 1.0, 'boys': 1.0, 'twins': 1.0, 'resolved': 1.0, 'i': 4.0, 'so': 2.0, 'delivery': 1.0, '1': 1.0, 'big': 1.0, 'great': 3.0, 'get': 1.0, 'durable': 1.0, 'porch': 1.0, 'contemplated': 1.0, 'too': 1.0, 'one': 1.0, 'used': 1.0, 'action': 1.0, 'decided': 1.0, 'supplemental': 1.0, 'chance': 1.0, 'such': 1.0, 'fabric': 1.0, 'for': 1.0, 'color': 1.0, 'actually': 2.0, 'cost': 1.0, 'fit': 1.0, '2': 1.0, 'but': 2.0, 'of': 2.0, 'the': 16.0, 'whatsoever': 1.0, 'reviews': 1.0, 'we': 2.0, 'take': 1.0, 'pb': 1.0, 'long': 1.0, 'on': 2.0, 'comfortable': 1.0, 'experience': 1.0, 'say': 1.0, 'at': 2.0, 'look': 1.0, 'is': 4.0, 'bunch': 1.0, 'those': 1.0, 'have': 1.0, 'been': 1.0, 'fabircs': 1.0, 'shipping': 1.0, 'box': 4.0, 'canvases': 2.0, 'this': 2.0, 'rocking': 1.0, 'by': 1.0, 'large': 1.0, 'be': 4.0, 'wrapped': 1.0, 'in': 4.0, 'not': 1.0, 'itself': 2.0, 'being': 1.0, 'very': 4.0, 'plastic': 1.0, 'more': 1.0, 'door': 1.0, 'free': 1.0, 'bare': 1.0, 'new': 1.0, 'wide': 2.0, 'from': 1.0, 'concerned': 1.0, 'that': 2.0, 'because': 2.0, 'material': 1.0, 'through': 2.0, 'front': 1.0, 'yet': 1.0, 'traditional': 1.0, 'designer': 1.0, 'no': 1.0, 'supportive': 1.0, 'truly': 1.0, 'got': 1.0, 'end': 1.0, 'ivory': 1.0}
Word element => {'correct': 1.0, 'please': 1.0, 'amazon': 2.0, 'experience': 1.0, 'out': 1.0, 'good': 1.0, 'to': 2.0, 'days': 1.0, 'came': 1.0, '16': 1.0, 'thing': 1.0, 'about': 1.0, 'quick': 1.0, 'with': 1.0, 'excited': 1.0, 'only': 2.0, 'arrive': 1.0, 'it': 1.0, 'sellers': 1.0, 'did': 1.0, 'so': 1.0, 'photos': 1.0, 'not': 2.0, 'refund': 1.0, 'was': 3.0, 'money': 1.0, 'but': 1.0, 'quality': 1.0, 'wal': 1.0, 'shows': 1.0, 'ordered': 1.0, 'worth': 1.0, 'also': 1.0, 'item': 3.0, 'that': 2.0, 'seen': 1.0, 'you': 2.0, 'way': 1.0, 'the': 8.0, 'get': 2.0, 'description': 1.0, 'and': 2.0, 'took': 1.0, 'ottoman': 2.0, 'targets': 1.0, 'chair': 1.0, 'thinking': 1.0, 'i': 3.0, 'picture': 1.0, 'very': 1.0, 'read': 1.0, 'this': 2.0, 'full': 1.0, '154': 1.0, 'my': 3.0, 'for': 2.0, 'opinion': 1.0, 'really': 1.0, '00': 1.0, 'is': 1.0, 'type': 1.0, 'fair': 1.0, 'of': 2.0, 'at': 1.0, '34': 2.0, 'price': 1.0, 'both': 1.0, 'mart': 1.0, 'less': 1.0}
Word element => {'good': 1.0, 'nightmare': 1.0, 'from': 1.0, 'aside': 1.0, 'able': 1.0, 'was': 2.0, 'even': 1.0, 'of': 1.0, 'out': 1.0, 'had': 1.0, 'pushing': 1.0, 'have': 1.0, 'must': 1.0, 'one': 1.0, 'send': 1.0, 'they': 1.0, 'did': 1.0, 'take': 1.0, 'many': 1.0, 'he': 2.0, 'how': 1.0, 'like': 1.0, 'my': 2.0, 'the': 6.0, 'porch': 1.0, 'get': 3.0, 'couldn': 2.0, 'delivery': 2.0, 'a': 1.0, 's': 1.0, 't': 2.0, 'stairs': 1.0, 'or': 1.0, 'comfortable': 1.0, 'am': 1.0, 'so': 2.0, 'and': 2.0, 'tall': 1.0, '70': 1.0, 'far': 2.0, 'chair': 3.0, 'nursery': 1.0, 'amazing': 1.0, 'really': 2.0, 'inside': 1.0, 'but': 1.0, 'back': 1.0, 'house': 1.0, 'guy': 1.0, 'put': 1.0, 'up': 1.0, 'clearly': 1.0, 'it': 8.0, 'higher': 1.0, 'onto': 1.0, 'arms': 1.0, 'said': 1.0, 'in': 2.0, 'to': 3.0, 'as': 2.0, 'outside': 1.0, 'planned': 1.0, 'other': 1.0, 'reviewers': 1.0, 'an': 1.0, 'note': 1.0, 'by': 1.0, 'who': 1.0, 'vendor': 1.0, 'been': 1.0, 'that': 3.0, 'box': 2.0, 'is': 1.0, 'comes': 1.0, 'i': 1.0, 'two': 1.0, 'liking': 1.0, 'carry': 1.0, 'person': 1.0, 'something': 1.0}
Word element => {'overall': 1.0, 'holdhappy': 1.0, 'good': 1.0, 'a': 1.0, 'has': 1.0, 'suction': 1.0, 'of': 1.0, '5': 1.0, 'look': 1.0, 'to': 2.0, 'doesnt': 1.0, 'at': 1.0, 'once': 1.0, 'fun': 1.0, 'age': 1.0, 'years': 1.0, 'baby': 1.0, 'she': 2.0, 'but': 1.0, 'will': 1.0, 'yet': 1.0, 'cup': 1.0, 'my': 1.0, 'closer': 1.0, '1': 1.0, 'and': 1.0, 'very': 1.0, 'cute': 1.0, 'play': 1.0, 'really': 1.0, 'is': 1.0, 'with': 1.0, 'it': 1.0, 'sure': 1.0, 'i': 1.0, 'm': 1.0}
Word element => {'their': 1.0, 'of': 1.0, 'because': 1.0, 'future': 1.0, 'use': 1.0, 'paid': 1.0, 'they': 1.0, 'amazing': 1.0, 'in': 1.0, 'company': 2.0, 'cream': 1.0, 'color': 1.0, 'the': 4.0, 'more': 1.0, 'need': 1.0, 'shipping': 1.0, 'very': 1.0, 'as': 2.0, 'if': 1.0, 'return': 1.0, 'a': 2.0, 'you': 1.0, 'for': 1.0, 'comfortable': 1.0, 'service': 1.0, 'good': 2.0, 'glider': 3.0, 'is': 6.0, 'really': 1.0, 'however': 1.0, 'saving': 1.0, 'small': 1.0, 'it': 5.0, 'this': 2.0, 'customer': 1.0, 'space': 1.0, 'inexpensive': 1.0, 'than': 1.0, 'say': 1.0, 'does': 1.0, 'i': 2.0, 'to': 1.0, 'beige': 1.0, 'look': 1.0, 'would': 2.0}
Word element => {'playroom': 1.0, 'without': 1.0, 'sitting': 1.0, 'or': 1.0, 'ever': 1.0, 'aqua': 2.0, 'chair': 1.0, 'it': 2.0, 'this': 1.0, 'seeing': 1.0, 'the': 1.0, 'purchased': 1.0, 's': 1.0, 'in': 3.0, 'perfect': 1.0, 'perfectly': 1.0, 'and': 2.0, 'very': 1.0, 'color': 1.0, 'is': 1.0, 'gorgeous': 1.0, 'comfortable': 1.0, 'goes': 1.0, 'our': 1.0}
Word element => {'shipping': 1.0, 'free': 1.0, 'you': 1.0, 'if': 1.0, 'comfortable': 1.0, 'here': 1.0, 'rock': 1.0, 'does': 1.0, 'because': 1.0, 'glider': 1.0, 'call': 1.0, 'fence': 1.0, 'me': 1.0, 'not': 1.0, 'bobby': 1.0, 'even': 1.0, 'nursing': 1.0, 'are': 1.0, '7': 1.0, '5': 1.0, 'back': 1.0, 'my': 1.0, 'color': 1.0, 'for': 2.0, 'love': 2.0, 'yet': 1.0, 'in': 1.0, 'yes': 1.0, 'so': 3.0, 'i': 6.0, 'there': 1.0, 'chair': 2.0, 'amazing': 1.0, 'soft': 1.0, 'perfect': 1.0, 'this': 3.0, 'support': 1.0, 'regrets': 1.0, 'more': 1.0, 'is': 3.0, 'that': 1.0, 'next': 1.0, 'to': 2.0, 'husband': 1.0, 'baby': 1.0, 'money': 1.0, 'but': 3.0, 'no': 2.0, 'about': 1.0, 'thing': 1.0, 'have': 2.0, 'without': 1.0, 'the': 5.0, 'arms': 1.0, 'm': 2.0, 'best': 1.0, 'arrived': 2.0, 'with': 1.0, 'buying': 1.0, 'piece': 1.0, 'of': 1.0, 'on': 2.0, 'furniture': 1.0, 'nervous': 1.0, 're': 1.0, 'spending': 1.0, 'much': 1.0, 'would': 1.0, 'something': 1.0, 'yesterday': 1.0, 'too': 1.0, 'and': 4.0, 'go': 1.0, 'a': 3.0, 'might': 1.0, 'sadly': 1.0, 'unique': 1.0, 'was': 1.0, 'beautiful': 1.0, 'nor': 1.0, 'it': 5.0, 'higher': 1.0}
Word element => {'guys': 1.0, 'quick': 1.0, 'was': 1.0, 'also': 1.0, 'beautifully': 1.0, 'unwrapped': 1.0, 'glides': 1.0, 'it': 3.0, 'research': 1.0, 'lot': 1.0, 'did': 1.0, 'price': 1.0, 'a': 1.0, 't': 1.0, 'still': 1.0, 'that': 1.0, 'than': 1.0, 'other': 1.0, 'put': 1.0, 'on': 1.0, 'here': 1.0, 'mine': 1.0, 'can': 2.0, 'in': 2.0, 'color': 1.0, 'my': 2.0, 'blog': 1.0, 'girl': 1.0, 'nursery': 1.0, 'its': 2.0, 'beige': 2.0, 'comfortable': 1.0, 'love': 2.0, 'for': 3.0, 'super': 1.0, 'i': 3.0, 'beware': 1.0, 'the': 10.0, 'more': 1.0, 'is': 2.0, 'really': 2.0, 'of': 3.0, 'photo': 1.0, 'glider': 2.0, 'fabric': 1.0, 'very': 2.0, 'gorgeous': 1.0, 'sleep': 1.0, 'to': 4.0, 'as': 2.0, 'and': 5.0, 'baby': 1.0, 'beat': 1.0, 'though': 1.0, 'definitely': 2.0, 'ivory': 2.0, 'even': 2.0, 'picture': 1.0, 'they': 1.0, 'update': 1.0, 'me': 1.0, 'not': 2.0, 'photos': 1.0, 'chair': 3.0, 'swivels': 1.0, 'like': 1.0, 'need': 1.0, 'shows': 1.0, 'want': 1.0, 'if': 1.0, 'you': 3.0, 'delivery': 2.0, 'see': 2.0, 'rock': 1.0, 'real': 1.0, 'this': 4.0, 'soft': 1.0, 'pictures': 1.0}
Word element => {'difficult': 1.0, 'might': 1.0, 'good': 1.0, 'ridiculous': 1.0, 'happens': 1.0, 'sometimes': 1.0, 'completely': 1.0, 'frustrating': 1.0, 'finally': 1.0, '5': 1.0, 'tell': 1.0, '3': 1.0, 'patient': 1.0, 'keep': 1.0, 'mind': 1.0, 'people': 1.0, 'point': 1.0, 'been': 1.0, 'if': 1.0, 'understand': 1.0, 'asking': 1.0, '11': 1.0, '4': 1.0, '12': 1.0, 'between': 1.0, 'chair': 3.0, 'delivery': 4.0, 'review': 1.0, 'actually': 1.0, 'for': 3.0, 'just': 3.0, 'sit': 1.0, 's': 1.0, 'a': 8.0, 'these': 1.0, 'once': 2.0, 'direct': 1.0, 'scheduled': 1.0, 'will': 1.0, 'importance': 1.0, 'but': 3.0, 'up': 2.0, 'change': 1.0, 've': 2.0, 'would': 3.0, 'm': 2.0, 'plans': 1.0, 'in': 5.0, 'friday': 2.0, 'item': 1.0, 'our': 1.0, 'to': 6.0, 'on': 4.0, 'left': 1.0, 'sure': 1.0, 'at': 4.0, 'is': 2.0, 'deliver': 2.0, 'purchased': 1.0, 'had': 3.0, 'it': 9.0, 'glider': 2.0, 'stiff': 1.0, 'almost': 1.0, 'now': 1.0, 'delivered': 2.0, 'beige': 1.0, 'overall': 1.0, 'loosen': 1.0, 'received': 2.0, 'few': 1.0, 'this': 2.0, 'right': 1.0, '30': 4.0, 'night': 4.0, 'i': 11.0, 'lost': 1.0, 'am': 2.0, 'showed': 1.0, 'times': 2.0, 'beware': 1.0, 'again': 3.0, 'items': 2.0, 'beautiful': 1.0, 'was': 4.0, 'minutes': 1.0, 'great': 1.0, 'person': 1.0, 'of': 2.0, 'the': 18.0, 'soon': 1.0, 'and': 2.0, 'nursery': 2.0, 'confirm': 1.0, 'only': 1.0, 'since': 1.0, 'total': 1.0, 'little': 1.0, 'be': 3.0, '8': 1.0, 'mommy': 1.0, 'realized': 1.0, 'old': 1.0, 'they': 7.0, 'others': 1.0, 'someone': 1.0, 'frustration': 1.0, 'that': 5.0, 'with': 2.0, 'by': 1.0, 'home': 1.0, 'called': 2.0, 'never': 1.0, 'approximately': 1.0, 'very': 2.0, 'leaving': 1.0, 'later': 1.0, '15': 1.0, 'call': 3.0, 'day': 1.0, 'time': 3.0, 'unexpected': 1.0, '00': 1.0, 'so': 2.0, 'we': 1.0, 'reviews': 1.0, 'then': 2.0, 'back': 1.0, 'craziest': 1.0, 'experience': 1.0, 'before': 2.0, 'week': 1.0, 'changed': 2.0, 'looks': 1.0, 'me': 4.0, 'my': 2.0, 'were': 1.0}
Word element => {'walls': 1.0, 'blue': 1.0, 'white': 1.0, 'chose': 1.0, 'easy': 1.0, 'items': 1.0, 'have': 1.0, 'of': 1.0, 'that': 2.0, 'were': 1.0, 'i': 3.0, 'wall': 3.0, 'all': 1.0, 'to': 1.0, 'was': 2.0, 'purchased': 1.0, 'this': 2.0, 'looks': 1.0, 'it': 1.0, 'bedroom': 1.0, 'bought': 1.0, 'unique': 1.0, 'for': 3.0, 'which': 2.0, 'the': 4.0, 'my': 2.0, 'be': 1.0, 'decor': 1.0, 'say': 1.0, 'is': 1.0, 'really': 1.0, 'favorite': 1.0, 'creative': 1.0, 'awesome': 1.0, 'his': 2.0, 'and': 1.0, 'redecorating': 1.0, 'worried': 1.0, 'just': 1.0, 'son': 1.0, 'difficult': 1.0, 'right': 1.0, 'size': 1.0, 'above': 1.0, 'lettering': 1.0, 'but': 1.0, 'headboard': 1.0, 'on': 2.0, 'we': 3.0, 's': 1.0, 'decal': 1.0, 'a': 1.0, 'little': 1.0, 'install': 1.0, 'super': 1.0, 'would': 1.0}
Word element => {'well': 1.0, 'iphone': 1.0, 'connected': 1.0, 'wish': 1.0, 'i': 1.0, 'that': 1.0, 'walked': 1.0, 'my': 2.0, 'we': 1.0, 'audio': 1.0, 'complaint': 1.0, 'the': 3.0, 'great': 1.0, 'to': 3.0, 'still': 1.0, 'be': 1.0, 'and': 2.0, 'picture': 1.0, 'good': 1.0, 'as': 1.0, 'range': 1.0, 'test': 1.0, 'worked': 1.0, 'this': 1.0, 'it': 1.0, 'only': 1.0, 'parent': 1.0, 'part': 1.0, 'would': 1.0, 'over': 1.0, 'neighbors': 1.0}
Word element => {'total': 1.0, 'down': 1.0, 'electrical': 1.0, 'figured': 1.0, '2': 1.0, 'use': 1.0, 'the': 3.0, 'powered': 2.0, 'then': 1.0, 'ahead': 1.0, 'pulled': 1.0, 'it': 5.0, 'piece': 1.0, 'with': 1.0, 'first': 2.0, 'getting': 1.0, 'and': 5.0, 'monitor': 1.0, 'break': 1.0, 'issue': 1.0, 'ever': 1.0, 'maybe': 1.0, 'chance': 1.0, 'exact': 1.0, 'for': 1.0, 'before': 1.0, 'junk': 1.0, 'i': 4.0, 'obviously': 1.0, 'smelt': 1.0, 'had': 3.0, 'bought': 2.0, 'to': 2.0, 'our': 1.0, 'something': 1.0, 'fire': 1.0, 'camera': 3.0, 'a': 1.0, 'we': 1.0, 'problems': 1.0, 'happened': 1.0, 'causing': 1.0, 'so': 1.0, 'went': 1.0, 'another': 1.0, 'about': 1.0, 'out': 1.0, 'of': 2.0, 'up': 1.0, 'box': 1.0, 'same': 1.0, 'seconds': 1.0, 'an': 1.0}
Word element => {'husband': 1.0, 'would': 1.0, 'monitors': 1.0, 'cam': 1.0, 'cams': 1.0, 'up': 1.0, 'paired': 2.0, 'either': 1.0, 'channels': 1.0, 'through': 1.0, 'cycle': 1.0, 'if': 1.0, 'same': 2.0, 'just': 1.0, 'alot': 1.0, 'too': 1.0, 'and': 2.0, 'single': 1.0, 'monitor': 4.0, 'be': 4.0, 'giving': 1.0, 'nice': 1.0, 'spot': 1.0, '1': 1.0, 'helped': 1.0, 'views': 1.0, 'home': 1.0, 'add': 3.0, 'keep': 1.0, 'at': 2.0, '4': 1.0, 'two': 2.0, 'i': 3.0, 'night': 1.0, 'makes': 1.0, 'day': 1.0, 'cameras': 5.0, 'see': 2.0, 'focus': 1.0, 'during': 1.0, 'one': 2.0, 'bought': 1.0, 'unforunately': 1.0, 'have': 1.0, 'this': 2.0, 'with': 1.0, 'it': 3.0, 'in': 1.0, 'camera': 2.0, 'but': 1.0, 'can': 2.0, 'work': 2.0, '2': 2.0, 'the': 12.0, 'on': 6.0, 'now': 2.0, 'to': 5.0, 'so': 2.0, 'room': 1.0, 'reassurance': 1.0, 'my': 3.0, 'instead': 1.0, 'of': 1.0, 'has': 1.0, 'easier': 1.0, 'having': 1.0, 'because': 1.0, 'me': 2.0, 'not': 2.0, 'done': 1.0, 'need': 1.0, 'move': 1.0, 'around': 1.0, 'son': 1.0, 'could': 2.0, 'we': 2.0, 's': 1.0, 'do': 1.0, 'living': 1.0}
Word element => {'working': 1.0, 'when': 1.0, 'product': 1.0, 'really': 1.0, 'still': 1.0, 'but': 1.0, 'longer': 1.0, 'last': 1.0, 'expected': 1.0, 'disappointed': 1.0, 'fine': 1.0, 'light': 1.0, 'i': 1.0, 'great': 1.0, 'the': 6.0, 'was': 2.0, 'now': 1.0, 'purchased': 1.0, 'worked': 1.0, 'to': 2.0, 'as': 3.0, 'year': 1.0, 'day': 1.0, 'cameras': 2.0, 'vision': 2.0, 'about': 2.0, 'beginning': 1.0, 'described': 1.0, 'multiple': 1.0, 'and': 3.0, 'impressed': 1.0, 'little': 1.0, 'very': 2.0, 'monitor': 1.0, 'distorted': 1.0, 'six': 1.0, 'see': 1.0, 'fail': 1.0, 'like': 1.0, 'cannot': 1.0, 'in': 2.0, 'camera': 1.0, 'set': 1.0, 'monitors': 1.0, 'clearly': 1.0, 'after': 1.0, 'so': 1.0, 'months': 1.0, 'it': 3.0, 'night': 1.0, 'started': 1.0, 'not': 1.0, 'picture': 1.0, 'is': 3.0, 'easy': 1.0, 'sure': 1.0, 'if': 1.0, 'or': 1.0, 'suspect': 1.0, 'a': 2.0, 'ago': 1.0, 's': 1.0}
Word element => {'pair': 1.0, 'easy': 1.0, 'main': 1.0, 'pretty': 1.0, 'works': 1.0, 'off': 1.0, 'crib': 1.0, 'on': 1.0, 'take': 1.0, 'to': 2.0, 'need': 1.0, 'can': 1.0, 'have': 1.0, 'babies': 1.0, 'so': 2.0, 'often': 1.0, 'one': 3.0, 'we': 4.0, 'extra': 1.0, 'great': 1.0, 't': 1.0, 'the': 6.0, 'travel': 1.0, 'bought': 1.0, 'room': 1.0, 'monitor': 1.0, 'and': 2.0, 'setup': 1.0, 'don': 1.0, 'another': 1.0, 'area': 1.0, 'house': 1.0, 'naps': 1.0, '34': 2.0, 'of': 1.0, 'with': 1.0, 'this': 1.0, 'he': 1.0, 'when': 1.0, 'where': 1.0, 'in': 2.0, 'camera': 1.0, 'also': 1.0, 'use': 1.0}
Word element => {'smart': 1.0, '3': 1.0, 'min': 1.0, 'add': 1.0, 'you': 1.0, 'and': 2.0, 'simple': 1.0, 'price': 1.0, 'within': 1.0, 'battery': 1.0, 'used': 1.0, 'cameras': 1.0, 'good': 1.0, 'life': 1.0, 'well': 1.0, 'when': 1.0, '15': 1.0, 'right': 1.0, 'can': 1.0, 'great': 1.0, 'works': 1.0}
Word element => {'out': 1.0, 'them': 1.0, 'call': 1.0, 'needed': 1.0, 'at': 1.0, 'something': 1.0, 'how': 1.0, 'helpful': 1.0, 'confused': 1.0, 'positive': 1.0, 'figure': 1.0, 'very': 2.0, 'experiences': 1.0, 'service': 1.0, 'customer': 1.0, 'shipping': 1.0, 'pay': 1.0, 'do': 1.0, 'free': 1.0, 'one': 2.0, 'sent': 1.0, 'they': 2.0, 'company': 2.0, 'so': 2.0, 'original': 1.0, 'like': 1.0, 'stand': 1.0, 'come': 1.0, 'more': 1.0, 'camera': 3.0, 'disappointed': 1.0, 'the': 5.0, 'job': 1.0, 'served': 1.0, 'quite': 1.0, 'of': 3.0, 'isn': 1.0, 'does': 2.0, 'has': 2.0, 'well': 1.0, 'but': 1.0, 'was': 1.0, 'doesn': 1.0, 'and': 5.0, 'almost': 1.0, 'year': 1.0, 'point': 1.0, 'problems': 1.0, 'kind': 1.0, 'thus': 1.0, 'us': 2.0, 'worked': 1.0, 'incredibly': 1.0, 'this': 2.0, 'it': 5.0, 'ones': 1.0, 'durable': 1.0, 'far': 2.0, 't': 2.0, 'a': 2.0, 'we': 6.0, 'contacted': 1.0, 'have': 3.0, 'had': 3.0, 'our': 1.0, 'all': 2.0, 'as': 2.0, 'any': 1.0, 'to': 4.0, 'expensive': 1.0, 'for': 3.0, 'with': 3.0, 'date': 1.0, 'not': 1.0, 'were': 3.0, 'fancy': 1.0, 'been': 2.0, 'that': 1.0, 'some': 1.0, 'add': 1.0, 'on': 2.0}
Word element => {'cheaper': 1.0, 'lot': 1.0, 'whole': 1.0, 'the': 3.0, 'in': 1.0, 'for': 1.0, 'cameras': 1.0, 'going': 1.0, 'and': 3.0, 'is': 1.0, '3': 1.0, 'we': 1.0, '4': 1.0, 'monitors': 1.0, 'have': 1.0, 'this': 1.0, 'extremely': 1.0, 'money': 1.0, 'not': 1.0, 'very': 1.0, 'best': 1.0, 'house': 1.0, 'but': 1.0, 'good': 1.0, 'almost': 1.0, 'a': 1.0}
Word element => {'off': 1.0, 'stand': 1.0, 'use': 1.0, 'felt': 2.0, 'held': 1.0, 'hand': 1.0, 'made': 1.0, 'cheaply': 1.0, 'how': 1.0, 'like': 2.0, 'didn': 1.0, 'break': 1.0, 'horrible': 1.0, 'picture': 1.0, 'going': 1.0, 'when': 2.0, 'tried': 1.0, 'device': 1.0, 'i': 5.0, 'up': 1.0, 'different': 1.0, 'once': 1.0, 'also': 1.0, 'screen': 1.0, 'hooked': 1.0, 'image': 1.0, 'turned': 1.0, 'to': 3.0, 'was': 3.0, 't': 1.0, 'the': 5.0, 'great': 1.0, 'this': 1.0, 'it': 5.0, 'looked': 1.0, 'decided': 1.0, 'outside': 1.0, 'dark': 1.0, 'return': 1.0, 'a': 1.0, 'on': 1.0, 'story': 1.0}
Word element => {'monitor': 1.0, 'video': 1.0, 'digital': 1.0, 'addon': 1.0, 'cheapest': 1.0, 'still': 1.0, 'starter': 1.0, 'setup': 1.0, 'price': 1.0, 'see': 1.0, 'the': 6.0, 'now': 1.0, 'was': 2.0, 'one': 1.0, 'have': 1.0, 'this': 1.0, 'it': 3.0, 's': 1.0, 'a': 3.0, 't': 1.0, 'we': 3.0, 'rooms': 1.0, 'purchase': 1.0, 'for': 1.0, 'love': 1.0, 'kit': 2.0, 'camera': 3.0, 'that': 1.0, 'cameras': 1.0, 'pair': 1.0, 'of': 2.0, 'up': 1.0, 'has': 1.0, 'isn': 1.0, 'addition': 1.0, 'cycle': 1.0, 'dxr5': 1.0, 'total': 1.0, 'at': 1.0, 'new': 2.0, 'through': 1.0, 'home': 1.0, 'easy': 1.0, 'and': 2.0, 'existing': 1.0, 'really': 1.0, 'but': 1.0, '2': 2.0, 'can': 1.0, 'an': 1.0, 'channels': 1.0, 'to': 4.0, 'our': 2.0, 'as': 1.0, 'good': 1.0, 'value': 1.0, 'compared': 1.0}
Word element => {'while': 1.0, 'other': 1.0, 'have': 2.0, 'network': 1.0, 'provided': 1.0, 'this': 4.0, 'downside': 1.0, 'only': 2.0, 'sit': 1.0, 'than': 1.0, 'having': 1.0, 'need': 1.0, 'done': 1.0, 'problem': 1.0, 'things': 1.0, 'useful': 1.0, 'also': 1.0, 'still': 1.0, 'gets': 1.0, 'or': 1.0, 'by': 1.0, 'stirs': 1.0, 'free': 1.0, 'now': 1.0, 'monitor': 3.0, 'these': 1.0, 'without': 1.0, 'the': 4.0, 'mother': 2.0, 'sitting': 1.0, 'can': 2.0, 'watch': 1.0, 'move': 1.0, 'that': 2.0, 'house': 1.0, 'an': 2.0, 'get': 1.0, 'area': 1.0, 'and': 5.0, 'floor': 1.0, 'couldn': 1.0, 'see': 2.0, 'my': 2.0, 'wireless': 1.0, 'although': 1.0, 'eye': 1.0, 'more': 1.0, 'around': 1.0, 'is': 3.0, 'with': 4.0, 'of': 7.0, 'lives': 1.0, 'freedom': 1.0, 'up': 3.0, 'cameras': 1.0, '93': 1.0, 'safety': 1.0, 'got': 2.0, 'old': 1.0, 'night': 2.0, 'i': 3.0, 'interferes': 1.0, 't': 2.0, 'a': 4.0, 'ago': 1.0, 'we': 4.0, 'year': 2.0, 'turning': 1.0, 'camera': 2.0, 'in': 3.0, 'us': 3.0, 'her': 6.0, 'keep': 1.0, 'at': 1.0, 'stay': 1.0, 'when': 3.0, 'times': 1.0, 'our': 2.0, 'all': 1.0, 'to': 5.0, 'on': 4.0, 'it': 3.0, 'she': 2.0, 'couple': 2.0, 'out': 1.0, 'worked': 1.0, 'bed': 1.0, 'monitoring': 1.0, 'after': 1.0, 'finding': 1.0, 'checking': 1.0}
Word element => {'main': 1.0, 'there': 1.0, 'on': 1.0, 'are': 1.0, 'you': 1.0, 'angle': 1.0, 'channel': 1.0, 'i': 3.0, 'one': 1.0, 'either': 1.0, 'added': 1.0, 'down': 1.0, 'does': 1.0, 'system': 2.0, 'my': 1.0, 'currently': 1.0, 'the': 5.0, 'that': 3.0, 'also': 1.0, 'camera': 4.0, 'bought': 1.0, 'onto': 1.0, 'to': 2.0, 'was': 3.0, 'no': 1.0, 'at': 1.0, 'stand': 1.0, 'just': 1.0, 'not': 2.0, 'bummed': 1.0, 'voice': 1.0, 'with': 1.0, 'this': 1.0, 'same': 1.0, 'time': 1.0, 'like': 2.0, 'do': 1.0, 'monitor': 1.0, 'activate': 1.0}
Word element => {'good': 1.0, 'without': 1.0, 'over': 1.0, 'far': 1.0, 'boys': 1.0, 'picks': 1.0, 'monitor': 1.0, 'so': 2.0, 'twins': 1.0, 'that': 1.0, 'our': 1.0, 'in': 1.0, 'noise': 1.0, 'through': 2.0, 'being': 1.0, 'cycle': 1.0, 'machine': 1.0, 'to': 1.0, 'automatically': 1.0, 'overly': 1.0, 'upworks': 1.0, 'manually': 1.0, 'very': 1.0, 'have': 2.0, 't': 1.0, 'greatcons': 1.0, 'the': 2.0, 'up': 1.0, 'set': 1.0, 'you': 1.0, 'easy': 1.0, 'doesn': 1.0, 'go': 1.0, 'white': 1.0, 'them': 1.0, 'a': 1.0, 'pros': 1.0, 'room': 1.0, 'cameras': 1.0, 'we': 1.0, 'this': 1.0, 'it': 1.0, 'loud': 2.0}
Word element => {'updated': 1.0, 'up': 1.0, 'll': 1.0, 'they': 1.0, 'hopefully': 1.0, 'sent': 1.0, 'in': 1.0, 'disable': 1.0, 'version': 1.0, 'take': 1.0, 'home': 1.0, 'ugh': 1.0, 'wifi': 3.0, 'my': 1.0, 'an': 1.0, 'back': 1.0, 'house': 1.0, 'have': 1.0, 'interferes': 1.0, 'the': 1.0, 't': 1.0, 'come': 1.0, 'it': 1.0, 'with': 2.0, 'to': 2.0, 'can': 1.0, 'either': 1.0, 'so': 1.0, 'via': 1.0, 'over': 1.0, 'won': 1.0, 'cameras': 1.0, 'talk': 1.0, 'phone': 1.0}
Word element => {'difference': 1.0, 'see': 1.0, 'couldnt': 1.0, 'monitors': 1.0, 'other': 1.0, 'tried': 1.0, 'never': 1.0, 'who': 1.0, 'people': 1.0, 'think': 1.0, 'baby': 1.0, 'quality': 1.0, 'so': 1.0, 'bit': 1.0, 'of': 1.0, 'rather': 1.0, 'pay': 2.0, 'into': 1.0, 'good': 1.0, 'frayed': 1.0, 'finally': 1.0, 'more': 3.0, 'the': 4.0, 'worked': 1.0, 'you': 1.0, 'when': 1.0, 'i': 7.0, 'features': 1.0, 'current': 1.0, 'to': 2.0, 'look': 1.0, 'thought': 1.0, 'what': 1.0, 'had': 2.0, 'was': 2.0, '5': 1.0, 'than': 1.0, 'a': 4.0, 'summer': 2.0, 'video': 1.0, 'most': 1.0, 'but': 1.0, 'system': 3.0, 'cord': 1.0, 'little': 1.0, 'monitor': 2.0, 'and': 4.0, 'get': 2.0, 'like': 1.0, 'something': 1.0, 'returning': 1.0, 'product': 1.0, 'for': 4.0, 'decided': 1.0, 'lorex': 1.0, 'one': 3.0, 'd': 1.0, 'years': 1.0, 'this': 4.0, 'it': 2.0, 'great': 1.0, 'seemed': 1.0, 'they': 1.0, 'reviews': 1.0, 'ended': 1.0, 'after': 1.0, 'received': 1.0, 'much': 2.0, 'home': 1.0, 'disappointed': 1.0, 'my': 1.0, 'better': 2.0, 'getting': 1.0, 'did': 1.0, 'up': 1.0}
Word element => {'then': 1.0, 'darn': 1.0, 'pretty': 1.0, 'good': 3.0, 'isn': 1.0, 'breathe': 1.0, 'see': 1.0, 'new': 1.0, 'another': 1.0, 'now': 1.0, 'almost': 1.0, 'lasted': 1.0, 'camera': 3.0, 'keep': 1.0, 'at': 1.0, 'no': 1.0, 'baby': 3.0, 'years': 1.0, 'price': 2.0, 'can': 2.0, 'want': 2.0, 'if': 2.0, 'same': 1.0, 'picture': 3.0, 'our': 1.0, 'any': 2.0, 'to': 4.0, 'injuries': 1.0, 'that': 1.0, 'cameras': 3.0, 'your': 1.0, 'on': 2.0, 'support': 1.0, 'is': 2.0, 'monitors': 1.0, 'connect': 1.0, 'the': 7.0, 't': 2.0, 'a': 6.0, 'check': 1.0, 'broke': 1.0, 'fabulous': 1.0, 'sharp': 1.0, 'only': 1.0, 'buying': 1.0, 'with': 3.0, 'it': 1.0, 'have': 4.0, 'monitor': 5.0, 'and': 2.0, 'where': 1.0, 'for': 6.0, 'bought': 1.0, 'one': 3.0, 'two': 2.0, '4': 2.0, 'i': 4.0, 'this': 3.0, 'kids': 1.0, 'clear': 1.0, 'antenna': 1.0, 'minor': 1.0, 'of': 1.0, 'don': 1.0, 'up': 1.0, 'still': 1.0, 'so': 3.0, 'time': 1.0, 'broadcasts': 1.0, 'problem': 1.0, 'will': 1.0, 'you': 6.0}
Word element => {'same': 1.0, 'cameras': 1.0, 'more': 1.0, 'or': 1.0, 'wants': 1.0, 'at': 1.0, 'who': 1.0, 'for': 1.0, 'would': 1.0, 'time': 2.0, 'that': 1.0, 'recommend': 1.0, 'was': 1.0, 'not': 1.0, 'me': 1.0, 'helpful': 1.0, 'very': 1.0, 'were': 1.0, 'software': 1.0, 'they': 1.0, 'optics': 1.0, 'infant': 1.0, 'contacted': 1.0, 'are': 1.0, 'able': 1.0, 'wanted': 1.0, 'soon': 1.0, 'and': 5.0, 'yr': 1.0, 't': 1.0, 'a': 3.0, 'currently': 1.0, 'see': 1.0, 'throughout': 1.0, 'bug': 1.0, 'add': 1.0, 'already': 1.0, 'connected': 1.0, 'second': 1.0, 'current': 2.0, 'fine': 1.0, 'bought': 1.0, 'anyone': 1.0, 'be': 2.0, 'my': 2.0, 'it': 3.0, 'with': 2.0, 'in': 1.0, 'camera': 2.0, 'the': 5.0, 'on': 2.0, 'had': 2.0, 'commented': 1.0, 'insofar': 1.0, 'old': 1.0, 'two': 1.0, 'i': 4.0, 'baby': 1.0, 'night': 1.0, 'hear': 1.0, 'both': 1.0, 'only': 1.0, 'works': 1.0, 'tell': 1.0, 'worked': 1.0, 'any': 1.0, 'to': 5.0, 'our': 1.0, 'as': 2.0, 'system': 1.0, 'just': 1.0, '2': 1.0, 'but': 1.0, 'wouldn': 1.0, 'previous': 1.0, 'use': 1.0, 'poster': 1.0, 'this': 2.0, 'kids': 1.0, 'activated': 1.0, 'voice': 1.0, 'resolved': 1.0, 'when': 1.0, 'you': 1.0}
Word element => {'dark': 1.0, 'see': 1.0, 'allowing': 1.0, 'well': 1.0, 'light': 1.0, 'and': 1.0, 'good': 1.0, 'middle': 1.0, 'it': 1.0, 'annoying': 1.0, 'can': 1.0, 'unused': 1.0, 'one': 1.0, 'quality': 1.0, 'night': 2.0, 'channels': 2.0, 'for': 1.0, 'video': 2.0, 'the': 10.0, 'warning': 1.0, 'monitor': 1.0, 'is': 3.0, 'pretty': 1.0, 'many': 1.0, 'there': 1.0, 'mode': 1.0, 'whats': 1.0, 'of': 4.0, 'infrared': 1.0, 'no': 1.0, 'regardless': 1.0, 'burns': 1.0, 'audio': 1.0, 'out': 1.0, 'beep': 1.0, 'during': 1.0, 'works': 1.0, 'only': 1.0, 'this': 2.0, 'with': 1.0, 'on': 3.0, 'handset': 1.0, '4': 1.0, 'monitoring': 1.0, 'time': 1.0, 'so': 1.0, 'leave': 1.0, 'have': 4.0, 'to': 5.0, 'all': 1.0, 'in': 2.0, 'less': 1.0, 'you': 6.0, 'when': 2.0, 'be': 1.0, 'multiple': 1.0, 'than': 1.0, 'going': 1.0, 'a': 2.0, 'cameras': 2.0, 'day': 1.0, 'sounds': 1.0, 'batteries': 1.0, 'also': 1.0, 'cycle': 2.0, 'how': 1.0, 'through': 1.0, 'every': 1.0}
Word element => {'issue': 1.0, 'older': 1.0, 'got': 1.0, 'were': 1.0, 'our': 1.0, 'us': 1.0, 'same': 1.0, 'which': 1.0, '2': 1.0, 'repair': 1.0, 'well': 1.0, 'i': 1.0, 'cable': 1.0, 'wire': 1.0, 'simply': 1.0, 'they': 2.0, 'summary': 1.0, 'poor': 1.0, 'very': 1.0, '1': 1.0, 'mostly': 1.0, 'charge': 1.0, 'stopped': 1.0, 'battery': 1.0, 'anything': 1.0, 'once': 1.0, 'room': 1.0, 'will': 1.0, 'bad': 1.0, 'are': 1.0, 'your': 1.0, 'stop': 1.0, 'short': 1.0, 'plugs': 1.0, 'two': 1.0, 'distance': 1.0, 'viewable': 1.0, 'different': 1.0, 'features': 1.0, 'system': 1.0, 'receiver': 2.0, 'cables': 1.0, 'from': 1.0, 'while': 1.0, 'providing': 1.0, 'compared': 1.0, 'monitoring': 1.0, 'need': 1.0, 'feature': 2.0, 'about': 1.0, 'years': 1.0, 'no': 1.0, 'so': 2.0, 's': 2.0, 'we': 1.0, 'small': 2.0, 'a': 2.0, 't': 1.0, 'had': 2.0, 'unique': 1.0, 'great': 2.0, 'babies': 1.0, 'more': 1.0, 'vision': 1.0, 'is': 4.0, 'scroll': 1.0, 'occasional': 1.0, 'in': 7.0, 'longevity': 1.0, 'turn': 1.0, 'worked': 1.0, 'having': 1.0, 'than': 1.0, 'provides': 1.0, 'unified': 1.0, 'there': 2.0, 'due': 2.0, 'additional': 1.0, 'existing': 1.0, 'multiple': 1.0, 'spot': 1.0, 'kids': 3.0, 'this': 4.0, 'product': 1.0, 'year': 1.0, 'video': 2.0, 'channels': 1.0, 'but': 3.0, 'needed': 1.0, 'monitor': 2.0, 'and': 1.0, 'it': 2.0, 'with': 2.0, 'for': 3.0, 'where': 1.0, 'remain': 1.0, 'time': 1.0, 'model': 1.0, 'rooms': 2.0, 'became': 1.0, 'pretty': 2.0, 'to': 9.0, 'back': 1.0, 'sleep': 1.0, 'its': 1.0, 'one': 1.0, 'try': 1.0, 'do': 1.0, 'empty': 1.0, 'some': 1.0, 'them': 1.0, 'has': 1.0, 'holding': 1.0, 'activity': 1.0, 'of': 3.0, 'the': 10.0, 'after': 1.0, 'unless': 1.0, 'turns': 2.0, 'prevents': 1.0, 'replace': 1.0, '4': 2.0, 'silence': 2.0, 'audio': 1.0, 'like': 1.0, 'light': 1.0, 'using': 1.0, 'see': 1.0, 'cameras': 3.0, 'tried': 1.0, 'off': 1.0, 'breaks': 1.0, 'what': 2.0, 'when': 4.0, 'on': 4.0, 'quality': 1.0, 'noise': 2.0, 'enough': 1.0, 'supports': 1.0, 'constant': 1.0, 'white': 1.0, 'an': 2.0, 'other': 1.0, 'relocation': 1.0, 'power': 2.0, 'inexpensive': 1.0, 'many': 1.0, 'alternatives': 1.0, 'not': 1.0, 'rotate': 1.0, 'up': 1.0, 'less': 1.0, 'have': 2.0, 'reliably': 1.0, 'through': 2.0, '34': 2.0, 'each': 1.0, 'want': 1.0, 'doesn': 1.0, 'monitors': 2.0, 'you': 4.0, 'night': 2.0}
Word element => {'them': 1.0, 'sync': 1.0, 'to': 1.0, 'have': 1.0, 'outages': 1.0, 'the': 2.0, 'is': 2.0, 'any': 1.0, 'and': 1.0, 'only': 1.0, 'excellent': 1.0, 'work': 1.0, 'range': 1.0, 'if': 1.0, 'again': 1.0, 'you': 1.0, 'power': 1.0, 'camera': 1.0, 'there': 1.0, 'downside': 1.0}
Word element => {'overall': 1.0, 'good': 1.0, 'of': 1.0, 'life': 1.0, 'monitor': 2.0, 'and': 1.0, 'the': 5.0, 'product': 2.0, 'ordered': 1.0, 'battery': 1.0, 'i': 2.0, 'camera': 2.0, 'does': 1.0, 'what': 1.0, 'to': 2.0, 'its': 1.0, 'suppose': 1.0, 'complaint': 1.0, 'enjoy': 1.0, 'rather': 1.0, 'is': 1.0, 'only': 1.0, 'extend': 1.0, 'this': 1.0, 'it': 1.0, 'with': 1.0, 'not': 1.0, 'but': 1.0}
Word element => {'you': 1.0, 'whatever': 1.0, 'recommend': 1.0, 'reasonable': 1.0, 'price': 1.0, 'think': 1.0, 'even': 1.0, 'end': 1.0, '50': 1.0, 'point': 1.0, 'baby': 1.0, 'while': 1.0, 'anyways': 1.0, 'lol': 1.0, 'weather': 1.0, 'inside': 1.0, 'also': 1.0, 'received': 1.0, 'adjust': 1.0, 'promptly': 1.0, 'in': 5.0, 'use': 2.0, 'with': 1.0, 'wouldnt': 1.0, 'exchange': 1.0, 'start': 1.0, 'didnt': 1.0, 'one': 3.0, 'case': 1.0, 'replacement': 1.0, 'out': 2.0, 'as': 1.0, 'to': 4.0, 'center': 1.0, 'from': 3.0, 'gives': 1.0, 'very': 3.0, 'picture': 1.0, 'monitor': 4.0, 'there': 2.0, 'work': 1.0, 'wind': 1.0, '2': 2.0, 'strength': 1.0, 'so': 3.0, 'can': 2.0, 'pregnant': 1.0, 'all': 2.0, 'combo': 1.0, 'an': 3.0, 'was': 1.0, 'image': 1.0, 'them': 1.0, 'trips': 1.0, 'lense': 1.0, 'cams': 3.0, 'stuff': 1.0, 'easy': 1.0, 'get': 3.0, 'add': 1.0, 'blurry': 1.0, 'eye': 1.0, 'old': 1.0, 'ordered': 1.0, 'up': 1.0, 'set': 1.0, 'the': 14.0, 'of': 6.0, 'extra': 1.0, 'days': 1.0, 'keep': 2.0, 'cam': 1.0, 'connect': 1.0, 'within': 1.0, 'a': 3.0, 'highly': 1.0, 'this': 2.0, 'few': 1.0, 'signal': 2.0, 'now': 1.0, 'bad': 1.0, 'are': 4.0, 'working': 1.0, 'feet': 1.0, 'i': 12.0, 'well': 1.0, 'great': 2.0, 'on': 2.0, 'near': 2.0, 'filed': 1.0, 'den': 1.0, 'safety': 1.0, 'plan': 1.0, 'which': 1.0, 'is': 5.0, 'house': 2.0, 'off': 1.0, 'clear': 1.0, 'still': 1.0, 'every': 1.0, 'if': 1.0, 'area': 1.0, 'goes': 1.0, 'hear': 1.0, 'it': 3.0, 'these': 3.0, 'room': 1.0, 'actually': 1.0, 'barn': 2.0, 'for': 3.0, 'that': 2.0, 'because': 1.0, 'does': 1.0, 'breed': 1.0, 'goats': 1.0, 'coyotes': 1.0, 'kidding': 1.0, 'saves': 1.0, 'my': 5.0, 'me': 1.0, 'back': 1.0, 'amazon': 1.0, 'forth': 1.0, 'done': 1.0}
Word element => {'and': 1.0, 'monitor': 1.0, 'great': 1.0, 'works': 1.0, 'it': 1.0, 'to': 1.0, 'my': 1.0, 'the': 1.0, 'bought': 1.0, 'battery': 1.0, 'in': 1.0, 'infant': 1.0, 'replace': 1.0, 'optics': 1.0}
Word element => {'room': 2.0, 'easily': 1.0, 'from': 1.0, 'see': 1.0, 'moves': 1.0, 'use': 1.0, 'easy': 2.0, 'but': 1.0, 'to': 3.0, 'compact': 1.0, 'i': 1.0, 'it': 1.0, 'baby': 1.0, 'loved': 1.0, 'this': 1.0, 'as': 1.0, 'a': 1.0, 'shower': 1.0, 'bought': 1.0, 'gift': 1.0, 'mommy': 1.0}
Word element => {'replacement': 1.0, 'generic': 1.0, '8': 1.0, 'higher': 1.0, 'much': 1.0, 'same': 1.0, 'doing': 1.0, 'gets': 1.0, 'phone': 1.0, 'cell': 1.0, 'signal': 1.0, 'a': 2.0, 'quality': 1.0, 'but': 1.0, 'video': 1.0, 'know': 1.0, 'available': 1.0, '6': 1.0, 'up': 1.0, 'radio': 1.0, 'audio': 1.0, 'has': 1.0, 'apparently': 1.0, 'is': 1.0, 'really': 1.0, 'and': 2.0, 'monitor': 1.0, 'eats': 1.0, 'i': 1.0, 'battery': 2.0, 'power': 1.0, 'with': 1.0, 'it': 1.0, 'this': 1.0, 'maybe': 1.0, 'lasts': 1.0, 'the': 2.0, '2': 1.0, 'no': 1.0, 'hours': 2.0}
Word element => {'thin': 1.0, 'diaper': 1.0, 'the': 1.0, 'bum': 1.0, 'baby': 1.0, 'customer': 1.0, 'between': 1.0, 'called': 1.0, 'cloth': 1.0, 'i': 2.0, 'said': 1.0, 'support': 1.0, 'better': 1.0, 'liner': 1.0, 'they': 1.0, 'okay': 1.0, 'barrier': 1.0, 'times': 1.0, 'bumgenius': 1.0, 'it': 1.0, 'fleece': 1.0, 'million': 1.0, 'a': 3.0, 'desitin': 2.0, 'and': 2.0, 'as': 2.0, 'you': 1.0, 's': 2.0, 'to': 1.0, 'use': 2.0, 'works': 1.0, 'long': 1.0, 'have': 1.0}
Word element => {'quickly': 1.0, 'it': 1.0, 'religiously': 1.0, 'if': 1.0, 'cloth': 1.0, 'and': 1.0, 'out': 1.0, 'rash': 1.0, 'of': 1.0, 'completely': 1.0, 'diapers': 1.0, 'use': 1.0, 'awesome': 1.0, 'which': 1.0, 'she': 1.0, 'because': 1.0, 'love': 1.0, 'washes': 1.0, 'gets': 1.0, 'a': 1.0, 'works': 1.0, 'rare': 1.0, 'is': 1.0, 'we': 1.0, 'the': 1.0, 'disappears': 1.0, 'booty': 1.0}
Word element => {'far': 1.0, 'works': 1.0, 'it': 2.0, 'this': 2.0, 'at': 1.0, 'no': 1.0, 'measure': 1.0, 'sensitive': 1.0, 'irritated': 1.0, 'diaper': 2.0, 'red': 1.0, 'the': 1.0, 'such': 1.0, 'my': 2.0, 'cream': 1.0, 'preventative': 1.0, 'is': 1.0, 'change': 1.0, 'son': 2.0, 'very': 1.0, 'has': 1.0, 'longer': 1.0, 'bottom': 2.0, 'each': 1.0, 'thus': 1.0, 'i': 1.0, 'cloth': 1.0, 'use': 2.0, 't': 1.0, 's': 2.0, 'a': 2.0, 'we': 2.0, 'diapers': 2.0, 'doesn': 1.0, 'so': 1.0, 'also': 1.0, 'important': 1.0, 'that': 1.0, 'effect': 1.0, 'absorbency': 1.0, 'on': 1.0, 'have': 1.0, 'not': 1.0, 'had': 1.0, 'as': 1.0, 'our': 1.0, 'any': 1.0, 'problem': 1.0}
Word element => {'don': 1.0, 'super': 1.0, 'is': 1.0, 'would': 1.0, 'buy': 1.0, 'cheap': 1.0, 'i': 1.0, 'elemental': 1.0, 'bumgenius': 1.0, 'works': 1.0, 'recommend': 1.0, 'good': 1.0, 'new': 1.0, 'not': 1.0, 'just': 1.0, 'my': 1.0, 'stained': 1.0, 'this': 1.0, 'oil': 1.0, 't': 2.0, 'to': 1.0, 'anyone': 1.0, 'coconut': 1.0, 'as': 2.0, 'stain': 1.0, 'and': 1.0, 'diapers': 1.0, 'doesn': 1.0}
Word element => {'coconut': 1.0, 'am': 1.0, 'baby': 1.0, 'my': 1.0, 'and': 2.0, 'between': 1.0, 'barrier': 1.0, 'a': 1.0, 'use': 1.0, 'to': 1.0, 'experienced': 1.0, 'have': 1.0, 'won': 1.0, 'again': 1.0, 'cloth': 1.0, 'buy': 1.0, 'i': 3.0, 's': 2.0, 'works': 1.0, 'expensive': 1.0, 'using': 1.0, 'for': 1.0, 'too': 1.0, 'entirely': 1.0, 'is': 2.0, 'as': 2.0, 'skin': 1.0, 'it': 4.0, 'with': 1.0, 'this': 1.0, 'only': 1.0, 'doesn': 1.0, 'help': 1.0, 'rash': 1.0, 'great': 1.0, 'oil': 1.0, 'currently': 1.0, 'effectiveness': 1.0, 'diaper': 2.0, 't': 2.0, 'the': 2.0, 'benefit': 1.0}
Word element => {'bum': 1.0, 'cover': 1.0, 'take': 1.0, 'since': 1.0, 'care': 1.0, 'not': 1.0, 'get': 1.0, 'an': 2.0, 'doesn': 2.0, 'paste': 1.0, 'of': 1.0, 'takes': 1.0, 'much': 1.0, 'its': 1.0, 'to': 3.0, 'diapering': 1.0, 'used': 1.0, 'cloth': 1.0, 'i': 2.0, 'what': 1.0, 'unscented': 1.0, 'for': 1.0, 'switched': 1.0, 'olive': 1.0, 'but': 2.0, 'can': 1.0, 'and': 2.0, 'getting': 1.0, 'son': 1.0, 'bought': 1.0, 'less': 1.0, 'you': 1.0, 'when': 1.0, 'container': 1.0, 'may': 1.0, 'often': 1.0, 'cream': 1.0, 'my': 1.0, 'this': 1.0, 'rashest': 1.0, 'ot': 1.0, 'it': 3.0, 'definitely': 1.0, 'has': 1.0, 'your': 1.0, 'oil': 1.0, 'the': 2.0, 'a': 1.0, 'we': 1.0, 't': 2.0, 'base': 1.0, 'say': 1.0, 'is': 2.0, 'ointment': 2.0, 'so': 1.0, 'small': 1.0, 'some': 1.0, 'if': 1.0, 'child': 1.0}
Word element => {'excema': 1.0, 'for': 1.0, 'recommended': 1.0, 'nice': 1.0, 'soothing': 1.0, 'this': 1.0, 'works': 1.0, 'well': 2.0, 'on': 1.0, 'tough': 1.0, 'skin': 1.0, 'ointment': 1.0, 'adult': 1.0, 'highly': 1.0, 'and': 1.0, 'very': 1.0, 'dry': 1.0, 'as': 1.0}
Word element => {'and': 1.0, 'product': 1.0, 'a': 1.0, 'not': 1.0, 'is': 2.0, 'adorable': 1.0, 'son': 1.0, 'on': 1.0, 'loves': 1.0, 'play': 1.0, 'when': 1.0, 'rocking': 1.0, 'monkey': 1.0, 'my': 1.0, 'great': 1.0, 'the': 2.0, 'songs': 1.0, 'this': 1.0, 'he': 2.0, 'it': 1.0, 'quality': 1.0, 'will': 1.0, 'press': 1.0, 'even': 1.0, 'his': 1.0, 'buttons': 1.0, 'to': 1.0, 'mocha': 1.0, 'different': 1.0}
Word element => {'kids': 1.0, 'looking': 1.0, 'recommend': 1.0, 'great': 1.0, 'company': 1.0, 'rockers': 1.0, 'challenge': 1.0, 'up': 1.0, 'like': 1.0, 'years': 1.0, 'think': 1.0, 'definitely': 2.0, 'will': 2.0, 'happens': 1.0, 'thier': 1.0, 'sore': 1.0, 'about': 1.0, 'worry': 1.0, 'won': 1.0, 'your': 1.0, 'little': 2.0, 'very': 2.0, 'a': 8.0, 'we': 1.0, 'sails': 1.0, 'have': 2.0, 'hear': 1.0, 'fun': 1.0, 'from': 1.0, 'center': 1.0, 'usable': 1.0, 'against': 1.0, 'to': 6.0, 'other': 1.0, 'all': 1.0, 'lot': 1.0, 'one': 4.0, 'than': 1.0, 'active': 1.0, 'size': 1.0, 'doesn': 1.0, 'point': 1.0, 'old': 1.0, 'just': 1.0, 'by': 2.0, 'squeezing': 1.0, 'helm': 2.0, 'so': 3.0, 'can': 5.0, 'four': 1.0, 'but': 2.0, 'shapes': 1.0, 'adores': 1.0, 'has': 1.0, 'in': 1.0, 'songs': 1.0, 'each': 1.0, 'i': 1.0, 'well': 2.0, 'rainbow': 1.0, 'looks': 1.0, 'my': 1.0, '1yro': 1.0, 'protect': 1.0, 'more': 1.0, 'at': 2.0, 'is': 3.0, 'of': 3.0, 'the': 15.0, 'son': 1.0, 'least': 1.0, 'seem': 1.0, 'bottom': 1.0, 'he': 2.0, 'speak': 1.0, 'it': 9.0, 'few': 1.0, 'rocking': 1.0, 'this': 4.0, 'activated': 1.0, 'be': 3.0, 'stand': 1.0, 'pirates': 1.0, 'song': 1.0, 'toe': 1.0, 'absolutely': 1.0, 's': 1.0, 'scramble': 1.0, 'onto': 1.0, 'on': 3.0, 'realize': 1.0, 'that': 4.0, 'into': 1.0, 'pushing': 1.0, 'falling': 1.0, 'or': 2.0, 'don': 1.0, 'over': 2.0, 'course': 1.0, 'stay': 1.0, 'not': 1.0, 'upright': 1.0, 'average': 1.0, 'anyone': 1.0, 'and': 6.0, 'tall': 1.0, 'really': 1.0, 'tiptoes': 1.0, 'tendancy': 1.0, 'lean': 1.0, 'show': 1.0, 'stopper': 1.0, 'for': 4.0, 'fabric': 1.0, 'puppy': 1.0, 't': 5.0, 'rocker': 5.0, 'fit': 1.0, 'treasure': 1.0, 'chest': 1.0, 'back': 1.0, 'are': 1.0, 'attached': 1.0, 'with': 3.0, 'would': 1.0, 'ribbon': 1.0, 'sturdy': 1.0, 'year': 1.0, 'side': 1.0, 'good': 2.0, 'made': 2.0, 'padded': 1.0, 'parts': 1.0, 'kid': 1.0, 'done': 1.0, 'quality': 1.0, 'stitching': 1.0, 'its': 1.0, 'enough': 1.0, 'touching': 1.0}
Word element => {'walk': 1.0, 'started': 1.0, 'losing': 1.0, 'functionality': 2.0, 'to': 4.0, 'but': 3.0, 'out': 1.0, 'could': 1.0, 'we': 2.0, 'rocker': 1.0, 't': 3.0, 's': 3.0, 'a': 2.0, 'wish': 1.0, 'tunes': 1.0, 'abcs': 1.0, '4': 1.0, 'other': 1.0, 'chest': 1.0, 'and': 7.0, 'seat': 1.0, 'in': 2.0, 'type': 1.0, 'songs': 1.0, 'annoying': 1.0, 'month': 1.0, 'it': 9.0, 'might': 1.0, 'numbers': 1.0, 'care': 1.0, 'like': 1.0, 'my': 2.0, 'set': 1.0, 'there': 1.0, 'loves': 3.0, 'backwards': 1.0, 'this': 1.0, 'rocking': 1.0, 'of': 2.0, 'the': 10.0, 'hands': 1.0, 'old': 1.0, 'tune': 1.0, 'actually': 1.0, 'for': 1.0, 'effect': 1.0, 'balance': 1.0, 'are': 1.0, '16': 1.0, 'slipped': 2.0, 'terms': 1.0, 'beginning': 1.0, 'afraid': 1.0, 'three': 1.0, 'rocks': 1.0, 'very': 1.0, 'harmonica': 1.0, 'is': 1.0, 'more': 1.0, 'loud': 1.0, 'with': 3.0, 'only': 2.0, 'doesn': 3.0, 'was': 2.0, 'one': 1.0, 'comfy': 1.0, 'handles': 1.0, 'nice': 1.0, 'big': 1.0, 'backing': 1.0, 'treasure': 1.0, 'mast': 1.0, 'really': 3.0, 'up': 1.0, 'so': 1.0, 'time': 1.0, 'ok': 1.0, 'never': 1.0, 'sturdy': 1.0, 'music': 2.0, 'his': 1.0, 'though': 2.0, 'son': 1.0, 'stay': 1.0, 'still': 1.0, 'hard': 2.0, 'back': 1.0, 'rock': 1.0, 'forth': 1.0, 'fall': 2.0, 'tilts': 1.0, 'he': 6.0, 'far': 1.0, 'took': 1.0, 'flips': 1.0, 'not': 1.0, 'forward': 1.0, 'or': 1.0, 'were': 1.0, 'own': 1.0, 'off': 3.0, 'when': 2.0, 'clap': 1.0}
Word element => {'we': 1.0, 'u': 1.0, 'thank': 1.0, 'just': 1.0, 'and': 1.0, 'son': 1.0, 'is': 1.0, 'great': 1.0, 'love': 2.0, 'it': 2.0, 'right': 1.0, 'product': 1.0, 'music': 1.0, 'loud': 1.0, 'are': 1.0, 'my': 1.0, 'songs': 1.0}
Word element => {'especially': 1.0, 'purchase': 1.0, 'my': 1.0, 'happy': 1.0, 'very': 1.0, 'in': 1.0, 'package': 1.0, 'time': 1.0, 'on': 1.0, 'arrived': 1.0, 'turn': 1.0, 'was': 1.0, 'to': 1.0, 'way': 1.0, 'expected': 1.0, 'than': 1.0, 'down': 1.0, 'even': 1.0, 'rocker': 1.0, 'volume': 1.0, 'can': 1.0, 'better': 1.0, 'pretty': 1.0, 'little': 2.0, 'a': 2.0, 'is': 1.0, 'ones': 1.0, 'great': 1.0, 'such': 1.0, 't': 1.0, 'the': 2.0, 'neat': 1.0, 'exception': 1.0, 'of': 1.0, 'find': 1.0, 'song': 1.0, 'it': 1.0, 'with': 2.0, 'this': 2.0, 'loud': 1.0, 'shape': 1.0, 'and': 2.0}
Word element => {'with': 1.0, 'other': 1.0, 'has': 1.0, 'if': 1.0, 'only': 1.0, 'happening': 1.0, 'readjusted': 1.0, 'needs': 1.0, 'however': 1.0, 'rocker': 2.0, 'keep': 1.0, 'adorable': 1.0, 'an': 1.0, 'something': 1.0, 'would': 1.0, 'these': 1.0, 'happen': 1.0, 'fearing': 1.0, 'any': 1.0, 'to': 5.0, 'thought': 1.0, 'had': 1.0, 'son': 1.0, 'almost': 1.0, 'until': 1.0, 'away': 1.0, 'now': 1.0, 'was': 4.0, 'it': 9.0, 'using': 1.0, 'for': 1.0, 'didn': 1.0, 'old': 1.0, 'put': 1.0, 'on': 2.0, 'over': 2.0, 'rockers': 1.0, 'about': 3.0, 'frontwards': 1.0, 'one': 1.0, 'months': 1.0, 'bought': 2.0, 'wasn': 1.0, 'my': 2.0, 't': 2.0, 'the': 3.0, 'grandson': 1.0, '80': 1.0, 'past': 1.0, 'rocking': 1.0, 'children': 1.0, 'nine': 1.0, 'i': 4.0, 'two': 1.0, 'start': 1.0, 'right': 1.0, 'in': 1.0, 'week': 1.0, 'from': 1.0, 'while': 1.0, 'holds': 1.0, 'is': 2.0, 'completely': 1.0, 'of': 1.0, 'wonder': 1.0, '100': 1.0, 'he': 7.0, 'flipped': 1.0, 'top': 1.0, 'be': 1.0, 'him': 1.0, 'twice': 1.0, 'luckily': 1.0, 'happened': 1.0, 'lbs': 1.0, 'again': 1.0, 'when': 2.0, 'hurt': 1.0, 'says': 1.0, 'just': 1.0, 'upset': 1.0, 'very': 1.0, '30': 1.0, 'this': 3.0, 'scared': 1.0, 'and': 2.0}
Word element => {'by': 1.0, 'produced': 1.0, 'better': 1.0, 'should': 1.0, 'in': 1.0, 'floppy': 1.0, 'wouldn': 1.0, 'nose': 1.0, 'attached': 1.0, 'are': 1.0, 'due': 1.0, 'off': 2.0, 'already': 1.0, 'have': 2.0, 'been': 1.0, 'glasses': 3.0, 'that': 2.0, '5': 1.0, 'be': 1.0, 'giving': 1.0, 'from': 1.0, 'those': 1.0, 'poorly': 1.0, 'me': 1.0, 'preventing': 1.0, 'assembly': 1.0, 'of': 3.0, '34': 6.0, 'thing': 1.0, 'no': 2.0, 'rockers': 1.0, 'quickly': 1.0, 'arrived': 1.0, 'made': 1.0, 'they': 1.0, 'reviews': 1.0, 'many': 1.0, 'is': 3.0, 'safely': 1.0, 'having': 1.0, 'i': 1.0, 'old': 2.0, 'maker': 1.0, 'birthday': 1.0, 'sheldon': 2.0, 'rocker': 2.0, 'stars': 1.0, 'for': 2.0, 'what': 1.0, 'purchased': 1.0, 'required': 1.0, 'first': 1.0, 'eyes': 1.0, 'this': 3.0, 'bridge': 1.0, 'with': 1.0, 'only': 2.0, 'fact': 1.0, 'my': 1.0, 'happy': 1.0, 'other': 1.0, 'grandson': 1.0, 'far': 1.0, 'after': 1.0, 'time': 1.0, 'so': 1.0, 'and': 1.0, 'pulled': 2.0, '1': 2.0, 'which': 1.0, 'to': 1.0, 'all': 1.0, 'us': 1.0, 'could': 1.0, 't': 1.0, 's': 1.0, 'a': 2.0, 'on': 1.0, 'strong': 1.0, 'steady': 1.0, 'his': 1.0, 'year': 2.0, 'read': 1.0, 'very': 1.0, 'the': 6.0, 'music': 1.0, 'cheerful': 1.0}
Word element => {'in': 1.0, 'known': 1.0, 'purchased': 1.0, 'all': 1.0, 'have': 1.0, 'would': 1.0, 'i': 2.0, 'was': 1.0, 'had': 1.0, 'to': 1.0, 'be': 1.0, 'worth': 1.0, 'you': 1.0, 'oball': 1.0, 'so': 1.0, 'very': 1.0, 'it': 1.0, 'this': 1.0, 'misleading': 1.0, 'only': 2.0, 'package': 1.0, 'like': 1.0, 'the': 3.0, 'more': 1.0, 'aware': 1.0, 'at': 1.0, 'spent': 1.0, 'money': 2.0, 'me': 1.0, 'get': 1.0, '4': 1.0, 'not': 3.0, 'advertising': 1.0, 'that': 2.0, 'rattle': 1.0, 'one': 2.0, 'for': 1.0, 'false': 1.0}
Word element => {'2': 1.0, 'at': 1.0, 'still': 1.0, 'plays': 1.0, 'month': 1.0, 'grandson': 1.0, 'my': 1.0, 'got': 1.0, 'loved': 1.0, 'clearer': 1.0, 'been': 1.0, '4': 2.0, 'would': 1.0, 'because': 1.0, 'getting': 1.0, 'and': 2.0, 'bought': 1.0, 'thought': 1.0, 'have': 2.0, 'babies': 1.0, 'years': 1.0, 'toy': 2.0, 'old': 1.0, 'i': 5.0, 'buy': 1.0, 'one': 2.0, 'for': 2.0, 'was': 2.0, 'to': 1.0, 'had': 1.0, 'with': 1.0, 'he': 2.0, 'it': 3.0, 'this': 2.0, 'picked': 1.0, 'a': 1.0, 'different': 1.0, 'when': 1.0, 'less': 1.0, 'expensive': 1.0}
Word element => {'attention': 1.0, 'but': 2.0, 'getting': 1.0, 'and': 4.0, 'deceiving': 1.0, 'is': 2.0, 'photo': 1.0, 'of': 1.0, 'beads': 1.0, 'only': 2.0, 'soft': 2.0, 'this': 1.0, 'it': 1.0, 'size': 2.0, 'balls': 1.0, 'plastic': 1.0, 'attract': 1.0, '4': 1.0, 'one': 3.0, 'for': 3.0, 'you': 5.0, 'when': 1.0, 'are': 1.0, 'hands': 1.0, 'the': 2.0, 'ones': 1.0, 'purchase': 1.0, 'get': 2.0, 'easy': 1.0, 'colors': 1.0, 'nice': 3.0, 'as': 1.0, 'to': 3.0, 'grasp': 1.0, 'little': 3.0, 'toy': 1.0, 'has': 2.0, 'think': 1.0, 'on': 1.0, 'your': 1.0, 'small': 1.0, 'oball': 1.0, 'enclosed': 1.0, 'in': 1.0, 'ball': 1.0, 'focus': 1.0, 'might': 1.0, 'a': 2.0, 'bright': 1.0, 'noise': 1.0}
Word element => {'one': 1.0, 'just': 1.0, 'not': 1.0, 'kind': 1.0, 'but': 1.0, 'four': 1.0, 'likes': 1.0, 'of': 2.0, 'is': 1.0, 'really': 1.0, 'it': 2.0, 'this': 1.0, 'baby': 1.0, 'my': 1.0, 'order': 1.0, 'small': 1.0, 'the': 1.0, 'like': 1.0, 'picture': 1.0, 'your': 1.0, 'makes': 1.0, 'ball': 1.0, 'and': 1.0, 'get': 1.0, 'look': 1.0, 'in': 1.0, 'you': 1.0, 'them': 1.0}
Word element => {'after': 1.0, 'then': 1.0, 'around': 1.0, 'highly': 1.0, 'throwing': 1.0, 'swinging': 1.0, 'in': 1.0, 'loves': 1.0, 'old': 1.0, 'recommended': 1.0, '9': 1.0, 'holes': 1.0, 'the': 1.0, 'great': 1.0, 'is': 1.0, 'son': 1.0, 'has': 1.0, 'favorite': 1.0, 'this': 1.0, 'it': 4.0, 'with': 1.0, 'he': 1.0, 'months': 2.0, 'design': 1.0, 'for': 1.0, 'and': 4.0, 'my': 1.0, 'been': 1.0, 'few': 1.0, 'crawling': 1.0, 'grasping': 1.0, 'a': 2.0, 'his': 1.0, 'fingers': 1.0}
Word element => {'buy': 1.0, 'definitely': 1.0, 'would': 1.0, 'print': 1.0, 'camo': 1.0, 'heals': 1.0, 'head': 1.0, 'it': 2.0, 'he': 1.0, 'this': 1.0, 'too': 1.0, 'and': 6.0, 'matching': 1.0, 'a': 1.0, 'well': 5.0, 'lasted': 1.0, 'again': 1.0, 'traveling': 1.0, 'handled': 1.0, 'really': 1.0, 'i': 2.0, 'bought': 1.0, 'the': 6.0, 'son': 2.0, 'from': 1.0, 'both': 1.0, 'years': 1.0, 'price': 1.0, 'roller': 1.0, 'in': 1.0, 'my': 2.0, '1': 2.0, 'school': 1.0, 'used': 1.0, 'set': 3.0, 'over': 2.0, 'up': 1.0, 'for': 3.0, 'grandparents': 1.0, 'bag': 1.0, 'backpack': 1.0, 'beating': 1.0, '2': 1.0, 'but': 1.0, '2012': 1.0, 'were': 1.0, 'houses': 1.0, 'made': 1.0, 'was': 2.0, 'worth': 1.0, 'held': 1.0, 'because': 1.0, 'so': 1.0, 'took': 1.0, 'loved': 1.0}
Word element => {'s': 1.0, 'that': 1.0, 'other': 1.0, 'on': 1.0, 'layer': 1.0, 'waterproof': 1.0, 'a': 1.0, 'had': 1.0, 'than': 1.0, 'wish': 1.0, 'helpful': 1.0, 'plus': 1.0, 'pocket': 1.0, 'like': 1.0, 'best': 1.0, 'strap': 1.0, 'boppy': 2.0, 'is': 3.0, 'pillow': 1.0, 'my': 1.0, 'far': 1.0, 'do': 1.0, 'and': 3.0, 'me': 1.0, 'it': 2.0, 'this': 2.0, 'fabric': 1.0, 'have': 1.0, 'great': 1.0, 'the': 8.0, 't': 1.0, 'daughter': 1.0, 'by': 1.0, 'because': 1.0, 'i': 2.0, 'key': 1.0, 'but': 1.0, 'doesn': 1.0, 'does': 1.0, 'both': 1.0, 'down': 1.0, 'between': 1.0, 'slip': 1.0}
Word element => {'stiff': 1.0, 'though': 1.0, 'before': 1.0, 'it': 6.0, 'this': 3.0, 'clean': 1.0, 'trying': 1.0, 'you': 2.0, 'rather': 1.0, 'of': 2.0, 'no': 1.0, 'things': 1.0, 'i': 4.0, 'and': 4.0, 'nursing': 1.0, 'washing': 1.0, 'son': 1.0, 'as': 1.0, 'all': 1.0, 'to': 4.0, 'switch': 1.0, 'fits': 2.0, 'my': 1.0, 'the': 3.0, 'great': 1.0, 'nicely': 1.0, 'pillow': 1.0, 'an': 1.0, 'back': 1.0, 'intentions': 1.0, 'other': 1.0, 'wash': 1.0, 'up': 1.0, 'over': 1.0, 'put': 2.0, 'on': 2.0, 'original': 1.0, 'package': 1.0, 'after': 1.0, 'slipcover': 1.0, 'ordered': 1.0, 'had': 3.0, 'drying': 1.0, 'one': 2.0, 'comes': 1.0, 'is': 2.0, 'do': 1.0, 'poop': 1.0, 'much': 1.0, 'out': 1.0, 'prettier': 1.0, 'than': 1.0, 'even': 1.0, 'explosive': 1.0, 'easy': 1.0, 'recommend': 1.0, 'want': 1.0, 'if': 1.0}
Word element => {'washes': 1.0, 'after': 1.0, 'last': 1.0, 'thing': 1.0, 'how': 1.0, 'wonder': 1.0, 'makes': 1.0, 'stores': 1.0, 'retail': 1.0, 'at': 1.0, 'few': 1.0, 'friend': 1.0, 'brest': 1.0, 'on': 1.0, 'knit': 1.0, 'seem': 1.0, 'slipcovers': 1.0, 'pillow': 1.0, 'material': 2.0, 'was': 1.0, 'not': 1.0, 'in': 1.0, 'disappointed': 1.0, 'is': 1.0, 'the': 4.0, 'bit': 1.0, 'a': 2.0, 'thin': 1.0, 'i': 1.0, 'long': 1.0, 'does': 1.0, 'will': 1.0, 'but': 1.0, 'me': 1.0, 'and': 1.0, 'very': 1.0, 'as': 2.0, 'light': 1.0, 'this': 1.0, 'come': 1.0, 'durable': 1.0, 'it': 1.0, 'that': 1.0}
Word element => {'the': 1.0, 'heavy': 1.0, 'now': 1.0, 'daughter': 1.0, 'my': 1.0, '12': 1.0, 'size': 1.0, 'months': 2.0, 'one': 1.0, 'in': 1.0, 'is': 2.0, 'comes': 1.0, 'dry': 1.0, 'forever': 1.0, 'takes': 1.0, '2': 1.0, 'but': 1.0, 'wash': 1.0, 'easy': 1.0, 'onto': 1.0, 'spills': 1.0, 'i': 2.0, 'she': 1.0, 'it': 3.0, 'with': 1.0, '0': 1.0, 'this': 1.0, 'only': 3.0, 'has': 1.0, 'recommended': 1.0, 'a': 4.0, 'gets': 1.0, 'was': 2.0, 'to': 4.0, 'rough': 1.0, 'something': 1.0, 'stars': 1.0, 'for': 1.0, 'problems': 1.0, 'day': 1.0, 'having': 1.0, 'pillow': 2.0, 'hard': 1.0, 'from': 1.0, 'consultant': 1.0, 'been': 1.0, 'that': 1.0, 'latching': 1.0, 'keep': 1.0, 'lactation': 1.0, 'me': 2.0, 'giving': 1.0, 'big': 1.0, 'until': 1.0, '1': 1.0, 'use': 2.0, '7': 2.0, 'complaints': 1.0, '8': 1.0, 'have': 1.0, 'times': 1.0, 'there': 1.0, 'saver': 1.0, 'are': 1.0, 'life': 1.0, 'by': 1.0, 'few': 1.0, '5': 1.0, 'too': 1.0, 'and': 3.0, 'milk': 1.0, 'whenever': 1.0}
Word element => {'you': 1.0, 'goes': 1.0, 'ever': 1.0, 'when': 1.0, 'carries': 1.0, 'she': 2.0, 's': 1.0, 'good': 1.0, 'product': 2.0, 'is': 1.0, 'it': 2.0, 'love': 1.0, 'this': 2.0, 'working': 1.0, 'properly': 1.0, 'my': 1.0, 'thank': 1.0, 'wife': 1.0}
Word element => {'product': 1.0, 'overall': 1.0, 'horizontal': 1.0, 'position': 1.0, 'in': 1.0, 'so': 1.0, 'provide': 1.0, 'could': 2.0, 'but': 1.0, 'house': 1.0, 'around': 1.0, 'fabric': 2.0, 'it': 1.0, 'terry': 1.0, 'higher': 2.0, 'did': 1.0, 'feed': 1.0, 'soft': 1.0, 'angle': 1.0, 'am': 1.0, 'nice': 1.0, 'love': 1.0, 'for': 3.0, 'that': 3.0, 'glad': 1.0, 'went': 1.0, 'more': 1.0, 'the': 5.0, 'great': 1.0, 'i': 4.0, 'is': 2.0, 'than': 1.0, 'wish': 1.0, 'throw': 1.0, 'a': 3.0, 'highly': 1.0, 'baby': 2.0, 'do': 1.0, 'and': 3.0, 'me': 1.0, 'recommend': 1.0, 'easy': 1.0, 'deluxe': 1.0, 'use': 1.0, 'to': 1.0}
Word element => {'definitely': 1.0, 'i': 1.0, 'with': 1.0, 'very': 2.0, 'quality': 1.0, 'easy': 1.0, 'product': 1.0, 'to': 1.0, 'will': 1.0, 'adjust': 1.0, 'recommend': 1.0, 'good': 2.0, 'the': 2.0, 'fit': 1.0, 'fabric': 1.0, 'overall': 1.0, 'happy': 1.0}
Word element => {'picture': 1.0, 'true': 1.0, 'color': 1.0, 'and': 1.0, 'don': 1.0, 'back': 1.0, 'but': 1.0, 'cover': 1.0, 'that': 1.0, 'a': 1.0, 't': 1.0, 'the': 5.0, 'backup': 1.0, 'i': 3.0, 'matched': 1.0, 'switch': 1.0, 'to': 2.0, 'had': 1.0, 'wanted': 1.0, 'was': 1.0, 'in': 2.0, 'wash': 1.0, 'so': 2.0, 'nursery': 1.0, 'case': 1.0, 'bought': 1.0, 'cotton': 1.0, 'first': 1.0, 'this': 1.0, 'it': 3.0, 'want': 1.0, 'is': 2.0, 'soft': 1.0}
Word element => {'is': 1.0, 'design': 1.0, 'great': 1.0, 'the': 1.0, 'gift': 1.0, 'kids': 1.0, 'when': 1.0, 'i': 2.0, 'issues': 1.0, 'her': 1.0, 'used': 1.0, 'my': 2.0, 'baby': 1.0, 'helps': 1.0, 'fabric': 1.0, 'nursing': 1.0, 'very': 1.0, 'as': 1.0, 'neck': 1.0, 'and': 5.0, 'comfy': 1.0, 'for': 1.0, 'one': 1.0, 'love': 1.0, 'first': 1.0, 'with': 1.0, 'this': 2.0, 'it': 2.0, 'back': 1.0, 'was': 1.0, 'pillow': 1.0, 'bought': 1.0, 'bestie': 1.0, 'a': 1.0}
Word element => {'is': 1.0, 'stuff': 1.0, 'trick': 1.0, 'did': 1.0, 'all': 1.0, 'at': 1.0, 'however': 1.0, 'that': 2.0, 'product': 1.0, 'magic': 1.0, 'was': 2.0, 'to': 1.0, 'loved': 1.0, 'a': 1.0, 't': 1.0, 'the': 2.0, 'my': 1.0, 'fact': 1.0, 'i': 2.0, 'when': 1.0, 'in': 1.0, 'lansinoh': 1.0, 'worst': 1.0, 'help': 1.0, 'natural': 1.0, 'pain': 1.0, 'this': 1.0, 'it': 1.0, 'didn': 1.0, 'heal': 1.0}
Word element => {'my': 1.0, 'others': 1.0, 'tried': 1.0, 'have': 1.0, 'on': 1.0, 'melts': 1.0, 'couple': 1.0, 'me': 1.0, 'for': 1.0, 'problem': 1.0, 'sugar': 1.0, 'but': 2.0, 'not': 1.0, 'its': 1.0, 'like': 1.0, 'contact': 1.0, 'o': 1.0, 'the': 1.0, 'smells': 1.0, 'yum': 1.0, 'says': 1.0, 'w': 1.0, 'works': 1.0, 'this': 1.0, 'it': 1.0, 'non': 1.0, 'coconut': 1.0, 'greasy': 1.0, 'oily': 1.0, 'fave': 1.0, 'thats': 1.0, 'frosting': 1.0, 'is': 2.0, 'really': 1.0, 'well': 1.0, 'a': 2.0}
Word element => {'greasy': 1.0, 'sore': 1.0, 'very': 2.0, 'friend': 1.0, 'my': 2.0, 'natural': 1.0, 'to': 1.0, 'was': 3.0, 'at': 2.0, 'not': 2.0, 'after': 1.0, 'sooth': 1.0, 'messy': 1.0, 'switched': 1.0, 'for': 1.0, 'but': 1.0, 'and': 2.0, 'cream': 2.0, 'lansinoh': 1.0, 'nipple': 1.0, 'the': 2.0, 'quick': 1.0, 'first': 1.0, 'it': 3.0, 'tried': 1.0, 'i': 3.0, 'out': 1.0, 'that': 1.0, 'all': 2.0, 'hearing': 1.0, 'brest': 1.0, 'lanolin': 1.0, 'repair': 1.0, 'about': 1.0, 'is': 1.0, 'good': 1.0, 'found': 1.0, 'nipples': 2.0}
Word element => {'are': 1.0, 'that': 1.0, 'find': 1.0, 'was': 1.0, 'to': 2.0, 'store': 1.0, 'product': 1.0, 'equivalent': 1.0, 'of': 1.0, 'good': 1.0, 'is': 1.0, 'difficult': 1.0, 'and': 2.0, 'arrived': 1.0, 'sheet': 1.0, 'perfect': 1.0, 'spendy': 1.0, 'within': 1.0, 'stated': 1.0, 'only': 1.0, 'this': 2.0, 'timeframe': 1.0, 'purchase': 1.0, 'sheets': 2.0, 'baseball': 1.0, 'a': 2.0, 'crib': 2.0, 'little': 1.0, 'quality': 1.0, 'but': 1.0}
Word element => {'better': 1.0, 'washings': 1.0, 'after': 1.0, 'getting': 1.0, 'and': 1.0, 'softer': 1.0, 'trucks': 2.0, 'wish': 1.0, 'the': 2.0, 'are': 2.0, 'monster': 1.0, 'a': 3.0, 'bit': 1.0, 'of': 1.0, 'few': 1.0, 'sets': 1.0, 'little': 1.0, 'to': 1.0, 'adorable': 1.0, 'construction': 1.0, 'ordered': 1.0, 'i': 2.0, 'but': 2.0, 'they': 3.0, 'were': 1.0, 'scratchy': 1.0, 'sheets': 2.0, 'seem': 1.0}
Word element => {'much': 1.0, 'softer': 1.0, 'in': 2.0, 'which': 1.0, 'colors': 1.0, 'fabric': 1.0, 'and': 2.0, 'cute': 1.0, 'sheet': 1.0, 'bright': 1.0, 'super': 1.0, 'knit': 1.0, 'are': 1.0, 'regret': 1.0, 'my': 1.0, 'jersey': 1.0, 'is': 3.0, 'the': 2.0, 'great': 1.0, 'only': 1.0, 'it': 2.0, 'this': 1.0, 'not': 1.0, 'buying': 1.0, 'so': 1.0}
Word element => {'7': 1.0, 'old': 1.0, 'be': 1.0, 'to': 1.0, 'out': 1.0, 'i': 1.0, 'also': 1.0, 'quilt': 2.0, 'great': 1.0, 'it': 1.0, 'used': 1.0, 'a': 2.0, 'grandsons': 1.0, 'turned': 1.0, 'this': 1.0, 'fabric': 1.0, 'year': 1.0, 'for': 1.0, 'in': 1.0, 'my': 1.0}
Word element => {'sort': 1.0, 'some': 1.0, 'come': 1.0, 'sturdy': 1.0, 'and': 2.0, 'a': 5.0, 'if': 1.0, 'hanger': 1.0, 'hangers': 1.0, 'shows': 1.0, 'it': 4.0, 'with': 2.0, 'as': 3.0, 'all': 1.0, 'screw': 1.0, 'at': 1.0, 'is': 4.0, 'there': 2.0, 'of': 2.0, 'that': 1.0, 'had': 1.0, 'what': 2.0, 'on': 1.0, 'except': 1.0, 'looking': 1.0, 'toilet': 1.0, 'somewhat': 1.0, 'i': 2.0, 'no': 1.0, 'wall': 1.0, 'you': 1.0, 'was': 2.0, 'yet': 1.0, 'fact': 1.0, 'back': 1.0, 'can': 1.0, 'but': 1.0, 'mount': 3.0, 'in': 1.0, 'pieces': 1.0, 'pics': 1.0, 'neither': 1.0, 'not': 1.0, 'those': 1.0, 'came': 1.0, 'urinal': 1.0, 'the': 5.0, 'place': 1.0, 'product': 1.0, 'for': 2.0, 'where': 1.0, 'use': 1.0, 'pictured': 1.0, 'large': 1.0, 'which': 1.0, 'did': 1.0}
Word element => {'minutes': 1.0, 'longer': 1.0, 'for': 1.0, 'suction': 1.0, 'that': 1.0, 'won': 1.0, 'to': 1.0, 'have': 1.0, 'good': 1.0, 'loves': 1.0, 'did': 1.0, 'buy': 1.0, 'i': 1.0, 'son': 1.0, '5': 1.0, 'than': 1.0, 'go': 1.0, 'my': 1.0, 'cups': 1.0, 'because': 1.0, 't': 1.0, 'the': 2.0, 'ones': 1.0, 'hold': 1.0, 'this': 2.0, 'with': 1.0, 'come': 1.0, 'urinal': 1.0}
Word element => {'easily': 1.0, 'toilet': 1.0, 'use': 1.0, 'clips': 1.0, 'this': 1.0, 'of': 1.0, 'really': 1.0, 'is': 1.0, 'it': 2.0, 'great': 1.0, 'and': 1.0, 'the': 2.0, 'my': 1.0, 'fairly': 1.0, 'little': 1.0, 'boy': 1.0, 'side': 1.0, 'likes': 1.0, 'product': 1.0, 'to': 2.0}
Word element => {'us': 1.0, 'well': 1.0, 'didn': 1.0, 'maybe': 1.0, 'then': 1.0, 'spray': 1.0, 'less': 1.0, 'aiming': 1.0, 'better': 2.0, 'for': 2.0, 'little': 1.0, 'somewhere': 1.0, 'if': 1.0, 'have': 1.0, 'small': 1.0, 'ground': 1.0, 'would': 2.0, 'this': 1.0, 'use': 1.0, 'try': 1.0, 'thought': 1.0, 'and': 5.0, 'out': 1.0, 'couple': 1.0, 'i': 1.0, 'old': 1.0, 'tried': 1.0, 'was': 2.0, 'be': 1.0, 'work': 2.0, 'can': 1.0, '2': 1.0, 'is': 1.0, 'bathroom': 1.0, 'my': 1.0, 'year': 1.0, 'our': 1.0, 'to': 3.0, 'as': 1.0, 'in': 2.0, 'fun': 1.0, 'training': 1.0, 'midst': 1.0, 'sit': 1.0, 'addition': 1.0, 'of': 2.0, 'up': 1.0, 'just': 2.0, 'difficult': 2.0, 'down': 1.0, 'low': 1.0, 'instead': 1.0, 'chair': 1.0, 'you': 2.0, 'times': 1.0, 't': 1.0, 'a': 3.0, 'we': 1.0, 's': 1.0, 'potty': 2.0, 'so': 1.0, 'the': 4.0, 'hanging': 1.0, 'off': 1.0, 'toilet': 1.0, 'mount': 2.0, 'it': 7.0, 'higher': 2.0}
Word element => {'does': 1.0, 'hanger': 1.0, 'water': 1.0, 'some': 1.0, 'super': 1.0, 'lifts': 1.0, 'it': 4.0, 'use': 1.0, 'back': 2.0, 'or': 1.0, 'dump': 2.0, 'way': 1.0, 'of': 1.0, 'out': 1.0, 'swish': 1.0, 'pushed': 1.0, 'be': 1.0, 'easily': 1.0, 'toilet': 3.0, 'on': 2.0, 'thing': 2.0, 'pulled': 1.0, 'big': 1.0, 'like': 1.0, 'now': 1.0, 'is': 1.0, 'up': 1.0, 'there': 1.0, 'can': 2.0, 'rim': 1.0, 'but': 2.0, 'helped': 1.0, 'little': 1.0, 'this': 5.0, 'he': 5.0, 'faster': 1.0, 'that': 1.0, 'loves': 2.0, 'love': 1.0, 'fit': 1.0, 'bought': 1.0, 'my': 1.0, 'goes': 1.0, 'pants': 1.0, 'just': 1.0, 'whip': 1.0, 'off': 1.0, 'mounts': 1.0, 'cover': 2.0, 'urinal': 2.0, 'side': 1.0, 'run': 1.0, 'the': 8.0, 'pee': 1.0, 'deal': 2.0, 'believe': 1.0, 'uses': 1.0, 'much': 1.0, 'boy': 1.0, 'so': 4.0, 'potty': 1.0, 'sons': 1.0, 'and': 5.0, 'easy': 1.0, 'get': 1.0, 'fully': 1.0, 'take': 1.0, 'trained': 1.0, 'also': 1.0, 'item': 1.0, 'us': 1.0, 'son': 1.0, 'still': 1.0, 'we': 3.0, 'a': 2.0, 'our': 1.0, 'to': 5.0, 'seat': 2.0, 'poo': 1.0, 'his': 1.0, 'bottom': 1.0, 'stand': 1.0, 'down': 1.0, 'in': 5.0}
Word element => {'upstairs': 1.0, 'just': 1.0, 'touch': 1.0, 'doesn': 1.0, 'the': 5.0, 'agree': 1.0, 'clean': 1.0, 'and': 5.0, 'have': 1.0, 'aim': 1.0, 'use': 1.0, '2': 1.0, 'most': 1.0, 'easy': 2.0, 'yr': 1.0, 'it': 3.0, 'with': 1.0, 'he': 3.0, 'height': 1.0, 'ordered': 2.0, 'hook': 1.0, 'comments': 1.0, 'husband': 1.0, 'old': 1.0, 'i': 3.0, 'product': 1.0, 'love': 1.0, 'for': 3.0, 'loves': 1.0, 'grandson': 1.0, 'one': 2.0, 'hang': 2.0, 'on': 2.0, 'side': 1.0, 'of': 2.0, 'toilet': 2.0, 'about': 1.0, 'wall': 2.0, 't': 1.0, 's': 1.0, 'my': 1.0, 'used': 1.0, 'bracket': 1.0, 'screwed': 1.0, 'at': 1.0, 'grandsons': 1.0, 'this': 1.0, 'perfect': 2.0, 'suction': 1.0, 'him': 1.0, 'best': 1.0, 'to': 6.0, 'our': 2.0, 'cups': 1.0, 'all': 1.0, 'has': 1.0}
Word element => {'sized': 1.0, 'toilet': 1.0, 'can': 1.0, 'but': 1.0, 'knows': 1.0, 'it': 3.0, 'he': 3.0, 'use': 2.0, 'sturdy': 1.0, 'that': 1.0, 'how': 1.0, 'to': 3.0, 'now': 1.0, 'loves': 1.0, 'until': 1.0, 'set': 1.0, 'up': 1.0, 'and': 1.0, 'clean': 1.0, 'seems': 1.0, 'enough': 1.0, 'easy': 1.0, 'last': 1.0, 'a': 1.0, 'regular': 1.0}
Word element => {'instead': 1.0, 'toilet': 1.0, 'right': 1.0, 'going': 1.0, 'like': 1.0, 'in': 1.0, 'dump': 1.0, 'and': 1.0, 'up': 1.0, 'to': 1.0, 'con': 1.0, 'say': 1.0, 'a': 2.0, 'boys': 1.0, 'tall': 1.0, 'for': 1.0, 'not': 1.0, 'pick': 1.0, 'have': 1.0, 'thing': 1.0, 'him': 1.0, 'exactly': 1.0, 'would': 1.0, 'are': 1.0, 'my': 1.0, 'great': 1.0, 'the': 2.0, 'that': 2.0, 's': 1.0, 'tool': 1.0, 'case': 1.0, 'is': 4.0, 'son': 1.0, 'as': 1.0, 'it': 2.0, 'this': 1.0, 'only': 1.0, 'but': 1.0, 'i': 3.0}
Word element => {'restroom': 1.0, 'go': 1.0, 'boy': 2.0, 'for': 1.0, 'enough': 1.0, 'v': 1.0, 'very': 1.0, 'i': 1.0, 'nice': 1.0, 'to': 1.0, 'cabinet': 1.0, 'product': 1.0, 'loves': 1.0, 'colorful': 1.0, 'hang': 1.0, 'now': 1.0, 'on': 1.0, 'my': 1.0, 'more': 1.0, 'the': 1.0, 'easily': 1.0, 'big': 1.0}
Word element => {'fast': 1.0, 'delivery': 1.0, 'it': 1.0, 'loves': 1.0, 'touch': 1.0, 'need': 1.0, 'stools': 1.0, 'too': 1.0, 'and': 4.0, 'now': 1.0, 'used': 1.0, 'before': 1.0, 'his': 1.0, 'stand': 1.0, 'he': 2.0, 'stool': 2.0, 'was': 1.0, 'crazy': 1.0, 'if': 1.0, 'himself': 1.0, 'my': 1.0, 'on': 2.0, 'over': 2.0, 'is': 2.0, 'potty': 2.0, 'one': 1.0, 'great': 1.0, 'hands': 1.0, 'the': 7.0, 'a': 1.0, 'go': 1.0, 't': 1.0, 'can': 1.0, 'toilet': 3.0, 'little': 2.0, 'by': 1.0, 'lean': 1.0, 'of': 1.0, 'hold': 1.0, 'needed': 2.0, 'back': 1.0, 'sometimes': 1.0, 'would': 1.0, 'i': 1.0, 'him': 1.0, 'putting': 1.0, 'wasn': 1.0, 'height': 1.0, 'to': 3.0, 'seat': 2.0, 'all': 1.0, 'urinal': 1.0, 'this': 3.0, 'perfect': 1.0, 'about': 1.0, 'no': 2.0}
Word element => {'enough': 1.0, 'young': 1.0, 'small': 1.0, 'son': 1.0, 'reach': 1.0, 'and': 2.0, 'onto': 1.0, 'stuck': 1.0, 'but': 1.0, '8217': 1.0, 'aren': 1.0, 'chances': 1.0, 'all': 1.0, 'tub': 1.0, 'made': 2.0, 'urinal': 1.0, 'on': 2.0, 'is': 1.0, 'low': 1.0, 'tile': 2.0, 'does': 1.0, 'when': 1.0, 'i': 1.0, 'your': 2.0, 't': 1.0, 'the': 5.0, 'are': 2.0, 'to': 1.0, 'was': 2.0, 'with': 2.0, 'moderately': 1.0, 'it': 5.0, 'walls': 4.0, 'neither': 1.0, 'satisfied': 1.0, 'of': 2.0, 'says': 1.0, 'ours': 1.0, 'sticks': 2.0, 'lie': 1.0, 'suction': 1.0, 'our': 1.0, 'were': 1.0, 'that': 3.0, 'pads': 1.0, 'yeah': 1.0, 'if': 1.0}
Word element => {'get': 1.0, 'if': 1.0, 'really': 1.0, 'would': 1.0, 'son': 1.0, 'hang': 1.0, 'we': 6.0, 'frustrated': 1.0, 'like': 1.0, 'cannot': 2.0, 'parts': 1.0, 'pieces': 1.0, 'company': 1.0, 'since': 1.0, 'return': 2.0, 'unusable': 1.0, 'and': 1.0, 'think': 1.0, 'on': 1.0, 'very': 1.0, 'figure': 1.0, 'amazon': 1.0, 'mounting': 1.0, 'is': 1.0, 'completely': 1.0, 'of': 2.0, 'when': 1.0, 'wall': 1.0, 'mount': 1.0, 'was': 1.0, 'this': 1.0, 'it': 9.0, 'toilet': 1.0, 'our': 1.0, 'to': 3.0, 'all': 2.0, 'have': 2.0, 'us': 1.0, 'able': 1.0, 'the': 5.0, 'from': 1.0, 'not': 2.0, 'out': 1.0, 'received': 1.0, 'how': 1.0, 'been': 1.0, 'that': 1.0, 'contact': 1.0, 'although': 1.0, 'makes': 1.0, 'missing': 1.0, 'item': 1.0, 'will': 2.0, 'but': 1.0, 'or': 1.0, 'let': 1.0, 'exchange': 1.0, 'so': 1.0}
Word element => {'they': 1.0, 'time': 1.0, 'also': 1.0, 'state': 1.0, 'featured': 1.0, 'look': 1.0, 'picture': 1.0, 'are': 1.0, 'purchase': 1.0, 'details': 1.0, 'broncos': 1.0, 'orange': 1.0, 'the': 4.0, 'have': 1.0, 'this': 3.0, 'it': 1.0, 'therefore': 1.0, 'with': 1.0, 'really': 1.0, 'i': 3.0, 'fan': 1.0, 'did': 3.0, 'shipped': 1.0, 'not': 4.0, 'fast': 1.0, 'am': 2.0, 'although': 1.0, 'pacifiers': 1.0, 'them': 1.0, 'product': 1.0, 'for': 1.0, 'in': 1.0, 'age': 1.0, 'received': 1.0, '6': 1.0, 'up': 1.0, 'huge': 1.0, 'months': 1.0, 'and': 2.0, 'like': 1.0, 'which': 1.0, 'can': 1.0, 'use': 1.0, 'at': 1.0, 'a': 1.0, 'stripe': 1.0, 'still': 1.0, 'happy': 1.0}
Word element => {'price': 1.0, 'cheap': 1.0, 'for': 1.0, 'gift': 1.0, 'loves': 1.0, 'great': 1.0, 'it': 2.0, 'a': 2.0, 'to': 1.0, 'but': 1.0, 'baby': 1.0, 'little': 1.0, 'clean': 1.0, 'hard': 1.0, 'worth': 1.0}
Word element => {'styles': 1.0, 'got': 1.0, 'i': 1.0, 'cuteness': 1.0, 'with': 1.0, 'not': 1.0, 'many': 1.0, 'leaks': 1.0, 'is': 1.0, 'on': 2.0, 'son': 1.0, 'but': 1.0, 'still': 1.0, 'cute': 1.0, 'being': 1.0, 'thick': 1.0, '100': 1.0, 'nor': 1.0, 'and': 2.0, 'up': 1.0, 'monkey': 1.0, 'my': 1.0, 'pulling': 1.0, 'them': 1.0, 'down': 1.0, 'potty': 1.0, 'trained': 1.0, 'so': 1.0, 'these': 1.0, 'are': 1.0, 'helpful': 1.0}
Word element => {'babies': 1.0, 'something': 1.0, 'be': 1.0, 'must': 1.0, 'there': 1.0, 'does': 1.0, 'he': 1.0, 'and': 3.0, 'seconds': 1.0, 'glows': 1.0, 'loves': 1.0, 'that': 1.0, 'face': 3.0, 'but': 2.0, 'rotates': 1.0, 'music': 1.0, 'selection': 1.0, 'bye': 1.0, 'sleep': 1.0, 'to': 4.0, 'been': 1.0, 'rock': 1.0, 'through': 1.0, 'loved': 1.0, 'little': 3.0, 'play': 1.0, 'about': 2.0, 'four': 1.0, 'pressed': 1.0, 'baby': 4.0, 'musical': 2.0, 'my': 4.0, 'songs': 2.0, 'would': 1.0, 'the': 9.0, 'of': 2.0, 'once': 1.0, 'bee': 1.0, 'since': 1.0, 'fun': 1.0, 'best': 1.0, 'plays': 1.0, 'pal': 1.0, 'a': 6.0, 'go': 1.0, 't': 2.0, 'we': 1.0, '5': 1.0, 'totally': 1.0, 'glo': 1.0, 'at': 1.0, 'is': 3.0, 'plan': 1.0, 'bpa': 1.0, 'son': 3.0, 'for': 4.0, 'lot': 1.0, 'one': 1.0, 'old': 1.0, 'its': 3.0, 'first': 1.0, 'wedding': 1.0, 'can': 1.0, 'so': 3.0, 'it': 6.0, 'nuby': 1.0, 'when': 1.0, 'in': 3.0, 'off': 1.0, 'has': 1.0, 'toy': 1.0, 'stop': 1.0, 'you': 2.0, 'loud': 1.0, 'year': 1.0, 'toddler': 1.0, 'think': 1.0, 'on': 1.0, 'your': 1.0, 'much': 1.0, 'put': 1.0, 'carefully': 1.0, 'this': 1.0, 'turn': 1.0, 'if': 2.0, 'putting': 1.0, 'hush': 1.0, 'bed': 1.0, 'with': 1.0, 'plastic': 1.0, 'free': 1.0, 'safe': 1.0, 'mediocre': 1.0, 'infant': 1.0, 'their': 1.0, 'mouth': 1.0, 'wouldn': 1.0, 'have': 2.0, 'stomache': 1.0, 'passing': 1.0, 'store': 1.0, 'song': 1.0, 'also': 1.0, 'passed': 1.0}
Word element => {'dangers': 1.0, 'did': 1.0, 'would': 1.0, 'but': 1.0, 'other': 1.0, 'four': 1.0, 'bought': 1.0, 'purchasing': 1.0, 'considering': 1.0, 'caution': 1.0, 'writing': 1.0, 'am': 2.0, 'for': 1.0, 'expensive': 1.0, 'neck': 1.0, 'wrapped': 1.0, 'tie': 1.0, 'had': 2.0, 'suffocate': 1.0, 'find': 1.0, 'not': 2.0, 'warned': 1.0, 'around': 2.0, 'crib': 2.0, 'anymore': 1.0, 'nurses': 1.0, 'really': 2.0, 'to': 6.0, 'was': 3.0, 'when': 3.0, 'that': 1.0, 'because': 2.0, 'easily': 1.0, 'times': 1.0, 'reasons': 1.0, 'my': 1.0, 'color': 1.0, 'lot': 1.0, 'one': 1.0, 'loved': 1.0, 'include': 3.0, 'a': 5.0, 't': 5.0, 'bedding': 1.0, 'could': 3.0, 'internet': 1.0, 'except': 1.0, 'think': 1.0, 'put': 3.0, 'before': 1.0, 'have': 3.0, 'move': 1.0, 'hospital': 1.0, 'there': 1.0, 'set': 3.0, 'like': 3.0, 'good': 1.0, 'use': 1.0, 'her': 4.0, 'design': 1.0, 'wrote': 1.0, 'i': 15.0, 'should': 1.0, 'their': 1.0, 'in': 8.0, 'hadn': 1.0, 'bumpers': 5.0, 'seemed': 1.0, 'done': 1.0, 'waited': 1.0, 'sets': 1.0, 'it': 2.0, 'research': 1.0, 'don': 2.0, 'less': 1.0, 'up': 1.0, 'about': 2.0, 'several': 1.0, 'they': 2.0, 'between': 1.0, 'can': 1.0, 'so': 1.0, 'ordered': 1.0, 'didn': 1.0, 'pieces': 2.0, 'daughter': 2.0, 'got': 1.0, 'them': 4.0, 'she': 2.0, 'baby': 1.0, 'go': 1.0, 'figured': 1.0, 'these': 1.0, 'once': 1.0, 'then': 1.0, 'leg': 1.0, 'tangled': 1.0, 'the': 11.0, 'of': 2.0, 'little': 1.0, 'older': 2.0, 'stuck': 1.0, 'is': 1.0, 'bars': 1.0, 'this': 3.0, 'few': 1.0, 'searched': 1.0, 'anyone': 1.0, 'and': 4.0, 'recommended': 1.0, 'age': 1.0, '34': 2.0, 'born': 1.0, 'safe': 1.0, 'known': 1.0, 'were': 1.0, 'until': 1.0, 'see': 1.0, 'stories': 1.0, 'parents': 1.0, 'who': 1.0, 'only': 2.0, 'ties': 1.0, 'any': 1.0, 'idea': 1.0, 'mom': 1.0, 'disappointed': 1.0, 'how': 1.0}
Word element => {'boot': 1.0, 'super': 1.0, 'chips': 1.0, 'daily': 1.0, 'are': 1.0, 'trash': 1.0, 'my': 1.0, 'perfect': 1.0, 'in': 1.0, 'having': 1.0, 'throw': 1.0, '5': 1.0, 'fruit': 1.0, 's': 1.0, 'son': 1.0, 'year': 1.0, 'reusing': 1.0, 'the': 2.0, 'these': 2.0, 'hurting': 1.0, 'lunchbox': 1.0, 'environment': 1.0, 'use': 1.0, 'dried': 1.0, 'plastic': 1.0, 'to': 2.0, 'old': 1.0, 'i': 2.0, 'cute': 1.0, 'bags': 2.0, 'snack': 2.0, 'sandwiches': 1.0, 'bag': 1.0, 'and': 3.0, 'hate': 1.0, 'whatever': 1.0, 'for': 3.0, 'using': 1.0, 'them': 1.0, 'regular': 1.0}
Word element => {'purchase': 1.0, 'win': 2.0, 'a': 1.0, 'money': 1.0, 'us': 1.0, 'going': 1.0, 'adorable': 1.0, 'day': 1.0, 'each': 1.0, 's': 1.0, 'wife': 1.0, 'for': 1.0, 'in': 1.0, 'snacks': 1.0, 'different': 1.0, 'fit': 1.0, 'are': 2.0, 'they': 1.0, 'happened': 1.0, 'kinds': 1.0, 'snack': 1.0, 'of': 3.0, 'save': 1.0, 'bags': 3.0, 'quality': 1.0, 'these': 3.0, '2': 1.0, 'lunch': 1.0, 'is': 2.0, 'and': 1.0, 'reusable': 2.0, 'reduce': 1.0, 'to': 3.0, 'waist': 1.0, 'i': 2.0, 'my': 1.0, 'high': 1.0, 'bought': 1.0, 'material': 1.0, 'all': 1.0, 'able': 1.0, 'that': 2.0, 'easy': 1.0, 'made': 1.0, 'out': 1.0, 'clean': 1.0, 'am': 1.0}
Word element => {'more': 1.0, 'will': 1.0, 'wet': 1.0, 'i': 1.0, 'their': 1.0, 'gifts': 1.0, 'am': 1.0, 'so': 1.0, 'for': 1.0, 'purchasing': 1.0, 'in': 1.0, 'great': 2.0, 'love': 1.0, 'with': 1.0, 'product': 1.0, 'be': 1.0, 'itzyritzy': 1.0, 'purchased': 1.0, 'bag': 1.0, 'snack': 1.0, 'and': 2.0, 'bags': 1.0}
Word element => {'everything': 1.0, 'for': 1.0, 'washable': 1.0, 'machine': 1.0, 'lined': 1.0, 'fully': 1.0, 'bags': 4.0, 'anything': 1.0, 'ritzy': 1.0, 'about': 1.0, 'itzy': 1.0, 'hip': 1.0, 'wonderful': 1.0, 'enough': 1.0, 'say': 1.0, 'and': 3.0, 'reusable': 1.0, 'an': 1.0, 'designs': 1.0, 'i': 1.0, 'array': 1.0, 'all': 2.0, 'are': 3.0, 'great': 1.0, 'these': 1.0, 'the': 1.0, 'cannot': 1.0, 'in': 1.0, 'available': 1.0, 'of': 1.0, 'things': 1.0, 'fun': 1.0}
Word element => {'practice': 1.0, 'base': 1.0, 'back': 1.0, 'seem': 1.0, 'complaint': 1.0, 'be': 1.0, 'minimum': 1.0, 'above': 1.0, 'are': 1.0, 'get': 1.0, 'sure': 1.0, 'hard': 1.0, 'really': 1.0, 'use': 1.0, 'feeding': 1.0, 'is': 1.0, 'more': 1.0, 'the': 4.0, 'seconds': 1.0, 'on': 1.0, 'make': 2.0, 'but': 1.0, 'can': 4.0, 'only': 1.0, 'do': 1.0, 'much': 1.0, 'makes': 1.0, 'bottle': 1.0, 'so': 1.0, 'time': 1.0, 'well': 1.0, 'easier': 1.0, 'that': 4.0, 'bought': 1.0, 'filtered': 1.0, 'it': 2.0, 'in': 1.0, '30': 1.0, 'this': 2.0, 'wish': 1.0, 'line': 1.0, 'water': 3.0, 'for': 2.0, 'love': 1.0, '1st': 1.0, 'formula': 2.0, 'have': 2.0, 'waiting': 1.0, 't': 1.0, 'a': 3.0, 'we': 5.0, 's': 1.0, 'our': 1.0, 'to': 4.0, 'child': 1.0, 'up': 1.0, 'safe': 1.0, 'take': 2.0, 'no': 1.0, 'about': 1.0, 'just': 2.0, 'heat': 2.0, 'screaming': 1.0, 'baby': 1.0, 'will': 1.0, 'mins': 1.0, 'and': 1.0, 'long': 1.0, 'easily': 1.0, 'you': 1.0, 'when': 1.0, 'hungry': 1.0, '4': 1.0, 'i': 3.0}
Word element => {'who': 1.0, 'share': 1.0, 'wanted': 1.0, 'just': 1.0, 'feeding': 1.0, 'night': 1.0, 'have': 2.0, 'stop': 1.0, 'base': 2.0, 'caused': 1.0, 'what': 1.0, 'to': 6.0, 'as': 1.0, 'outside': 1.0, 'minimum': 2.0, 'below': 2.0, 'helpful': 1.0, 'was': 1.0, 'connecting': 1.0, 'really': 2.0, 'were': 1.0, 'told': 1.0, 'not': 3.0, 'those': 1.0, 'anyone': 1.0, 'and': 4.0, 'line': 1.0, 'reviews': 2.0, 'they': 3.0, 'keeping': 1.0, 'replacement': 1.0, 'got': 1.0, 'kettle': 6.0, 'recently': 1.0, 'gift': 1.0, 'which': 2.0, 'using': 1.0, 'usually': 1.0, 'company': 2.0, 'me': 3.0, 'my': 1.0, 'in': 1.0, 'turning': 2.0, 'said': 1.0, 'stopped': 1.0, 'it': 8.0, 'i': 10.0, 'on': 3.0, 'information': 1.0, 'make': 1.0, '3': 1.0, 'called': 1.0, 'a': 4.0, 's': 1.0, 'see': 1.0, 'is': 3.0, 'at': 1.0, 'write': 1.0, 'but': 3.0, 'past': 1.0, 'these': 1.0, 'never': 1.0, 'advised': 1.0, 'knew': 1.0, 'of': 4.0, 'the': 19.0, 'has': 1.0, 'always': 2.0, 'sure': 1.0, 'customer': 1.0, 'babybrezza': 1.0, 'fill': 1.0, 'now': 1.0, 'water': 7.0, 'up': 1.0, 'with': 3.0, 'before': 1.0, 'mark': 1.0, 'also': 2.0, 'or': 1.0, 'bottom': 2.0, 'wet': 2.0, 'life': 1.0, 'service': 1.0, 'if': 1.0, 'wish': 1.0, 'this': 2.0, 'working': 2.0, 'first': 1.0, 'time': 1.0, 'so': 1.0, 'am': 1.0, 'lot': 1.0, 'happy': 1.0, 'great': 2.0, 'been': 1.0, 'sent': 1.0, 'for': 2.0, 'get': 1.0, 'months': 1.0, 'works': 1.0, 'do': 1.0, 'put': 1.0, 'much': 1.0, 'makes': 1.0, 'right': 1.0, 'easier': 1.0, 'temperature': 1.0, 'times': 1.0, 'middle': 1.0}
Word element => {'coupon': 1.0, 'same': 1.0, 'will': 1.0, 'soon': 1.0, 'texas': 1.0, 'like': 1.0, 'amazon': 1.0, 'tax': 1.0, 'state': 1.0, '99': 1.0, '39': 1.0, 'heat': 1.0, 'prefer': 1.0, 'must': 1.0, 'five': 1.0, 'would': 1.0, 'were': 1.0, 'benefit': 1.0, 'live': 1.0, 'product': 1.0, 'better': 1.0, 'happening': 1.0, 'us': 2.0, 'helped': 1.0, 'star': 1.0, 'them': 1.0, 'following': 1.0, 'overfilling': 1.0, 'mess': 1.0, 'tipping': 1.0, 'over': 1.0, 'out': 1.0, 'trickles': 1.0, 'pour': 1.0, 'harder': 1.0, 'volume': 1.0, 'an': 1.0, 'shouldn': 1.0, 'than': 3.0, 'had': 1.0, 'still': 1.0, 'pressed': 1.0, 'latch': 1.0, '00am': 1.0, 'flaws': 1.0, 'with': 4.0, 'more': 1.0, 'folks': 1.0, 'awake': 1.0, 'remind': 1.0, 'should': 1.0, 'lack': 1.0, 'you': 4.0, '2': 1.0, 'leave': 1.0, 'busy': 1.0, 'filling': 1.0, 'causing': 1.0, 'off': 2.0, '8': 1.0, 'day': 3.0, 'up': 3.0, '6oz': 1.0, '56': 1.0, 'enough': 1.0, 'inconvenient': 1.0, 'approved': 1.0, 'used': 1.0, 'max': 1.0, 'the': 34.0, 'doing': 1.0, 'pick': 1.0, 'min': 2.0, 'bottles': 3.0, 'home': 1.0, 'indicate': 2.0, '30': 1.0, 'pitcher': 7.0, 'items': 1.0, 'on': 8.0, '6': 1.0, '24oz': 2.0, 'lines': 2.0, 'top': 1.0, 'yourself': 1.0, 'few': 1.0, 'this': 8.0, 'holding': 1.0, 'bottle': 4.0, 'first': 1.0, 'here': 1.0, 'price': 1.0, 'try': 1.0, 'its': 2.0, 'base': 2.0, 'terribly': 1.0, 'lights': 1.0, 'ready': 3.0, 'month': 1.0, 'means': 5.0, 'kids': 1.0, 'adapted': 1.0, 'nearby': 1.0, 'not': 6.0, 'water': 8.0, 'feeding': 1.0, 'mix': 1.0, 'wide': 1.0, 'low': 1.0, 'popping': 1.0, 'counter': 1.0, 'degrees': 1.0, 'your': 2.0, 'many': 1.0, 'sits': 1.0, 'at': 3.0, 'handle': 1.0, 'handed': 1.0, 'stop': 1.0, 'keep': 2.0, 'makes': 2.0, 'cooler': 2.0, 'three': 1.0, 'blue': 3.0, 'son': 1.0, 'worked': 1.0, 'fill': 2.0, 'aren': 1.0, 'thing': 1.0, 'might': 1.0, 'machine': 1.0, 'item': 1.0, 'our': 3.0, 'disappointed': 1.0, 'which': 1.0, 'in': 5.0, 'based': 1.0, 'easily': 2.0, 'brought': 1.0, 'willing': 1.0, 'rubber': 1.0, 'was': 2.0, 'once': 1.0, 'formula': 1.0, 'opens': 1.0, 'due': 1.0, 'wanted': 1.0, '74': 1.0, 'stars': 1.0, 'located': 1.0, 'when': 7.0, 'well': 2.0, 'either': 1.0, 'do': 1.0, 'only': 5.0, 'never': 1.0, 'those': 2.0, 'already': 1.0, 'fully': 1.0, 'be': 3.0, 'it': 15.0, 'warm': 2.0, 'and': 16.0, 'warming': 1.0, 'go': 2.0, 'won': 1.0, 'ago': 1.0, 'friends': 1.0, 't': 4.0, 'we': 7.0, 'a': 18.0, 'small': 2.0, 'has': 3.0, 'always': 4.0, '95': 1.0, 'pain': 1.0, 'so': 6.0, 'open': 1.0, 'spend': 1.0, 'money': 1.0, 'if': 6.0, 'is': 13.0, 'can': 4.0, 'turn': 1.0, 'far': 1.0, 'bottom': 1.0, 'lid': 2.0, 'opened': 1.0, 'four': 1.0, '98': 2.0, 'allow': 1.0, 'from': 5.0, 'seconds': 1.0, 'for': 5.0, 'easy': 5.0, 'plug': 1.0, 'average': 1.0, 's': 2.0, 'glow': 3.0, 'though': 2.0, 'right': 1.0, 'to': 22.0, 'cold': 2.0, 'within': 1.0, 'touch': 1.0, 'now': 1.0, 'problem': 1.0, 'there': 4.0, 'filter': 1.0, 'of': 5.0, 'even': 1.0, 'annoyance': 1.0, 'prevent': 2.0, 'knew': 1.0, 'why': 1.0, 'very': 2.0, 'design': 2.0, 'loose': 1.0, 'r': 1.0, 'particles': 1.0, 'getting': 1.0, 'issue': 1.0, 'refill': 1.0, 'they': 1.0, 'happen': 1.0, 'often': 1.0, 'get': 2.0, 'feature': 1.0, 'appreciated': 1.0, 'or': 5.0, 'that': 7.0, 'heats': 2.0, 'are': 3.0, 'my': 1.0, 'one': 1.0, '5': 1.0, 'minutes': 1.0, 'been': 2.0, 'went': 1.0, 'finding': 1.0, 'inviting': 1.0, 'have': 5.0, 'hot': 1.0, 'way': 2.0, 'burn': 1.0, 'see': 1.0, 'yes': 1.0, 'round': 1.0, 'no': 1.0, 'activates': 1.0, 'place': 2.0, 'flood': 1.0, 'straight': 1.0, 'setting': 1.0, 'babies': 2.0, 'soft': 1.0, 'quickly': 2.0, 'visible': 1.0, 'night': 1.0, 'less': 3.0, 'as': 3.0, 'weeks': 1.0, 'seems': 1.0, 'distraction': 1.0, 'red': 3.0, 'intuitive': 1.0, 'but': 3.0, 'need': 1.0, 'spout': 3.0, 'also': 2.0, 'poorly': 1.0, 'details': 1.0, 'washable': 1.0, 'i': 6.0, 'radiant': 1.0, 'submerge': 1.0, 'something': 1.0, 'wife': 1.0, 'needs': 1.0, 'cleaned': 1.0, 'power': 1.0, 'button': 2.0}
Word element => {'air': 1.0, 'much': 1.0, 'getting': 1.0, 'quickly': 1.0, 'your': 1.0, 'formula': 1.0, 'consider': 1.0, 'buy': 1.0, 'hesitate': 1.0, 'don': 1.0, 'with': 1.0, 'parent': 1.0, 're': 1.0, 'testing': 1.0, 'during': 1.0, 'problem': 1.0, 'nobody': 1.0, 'hard': 1.0, 'frustration': 1.0, 'excercise': 1.0, 'mix': 1.0, 'mixer': 1.0, 'new': 1.0, 'time': 1.0, 'onto': 1.0, 'shaking': 1.0, 'sit': 1.0, 'for': 2.0, 'but': 2.0, 'close': 1.0, 's': 3.0, 'small': 1.0, 'imagine': 1.0, 'a': 5.0, 't': 3.0, 'degrees': 1.0, '98': 1.0, 'people': 1.0, 'that': 2.0, 'allowed': 1.0, 'temperature': 2.0, 'bother': 1.0, 'pretty': 1.0, 'to': 8.0, 'back': 1.0, 'most': 1.0, 'sleep': 1.0, 'as': 1.0, 'kettle': 3.0, 'whenever': 1.0, 'baby': 3.0, 'give': 1.0, 'guage': 1.0, 'lifesaver': 1.0, 'impatient': 1.0, 'this': 4.0, 'well': 1.0, 'i': 3.0, 'also': 1.0, 'us': 1.0, 'electric': 1.0, 'enough': 1.0, 'off': 1.0, 'noticed': 1.0, 'on': 2.0, 'just': 1.0, 'light': 1.0, 'accurate': 1.0, 've': 1.0, 'seconds': 1.0, 'the': 10.0, 'of': 1.0, 'always': 1.0, 'bottles': 2.0, 'or': 1.0, 'right': 2.0, 'trying': 1.0, 'minutes': 1.0, 'doesn': 1.0, 'm': 1.0, 'in': 6.0, 'up': 1.0, 'water': 1.0, 'than': 1.0, 'having': 1.0, 'it': 7.0, 'warming': 1.0, 'without': 1.0, 'works': 1.0, 'shouldn': 1.0, 'really': 1.0, 'who': 1.0, 'is': 3.0, 'at': 1.0, 'rather': 1.0, 'like': 1.0, 'polloution': 1.0, 'finicky': 1.0, 'subtle': 1.0, 'and': 2.0, 'snaps': 1.0, 'from': 2.0, 'be': 1.0, 'built': 1.0, 'too': 1.0, 'one': 1.0, 'ones': 1.0, 'mount': 1.0, 'those': 1.0, 'brezza': 3.0, 'first': 1.0, 'are': 1.0, 'area': 1.0, 'make': 1.0, 'help': 2.0, 'ever': 1.0, 'an': 4.0, 'glance': 1.0, 'either': 1.0, 'had': 1.0, 'ready': 1.0, 'unless': 1.0, 'you': 3.0, 'indication': 1.0, 'same': 1.0, 'if': 1.0, 'certainly': 1.0, 'found': 1.0, 'however': 1.0, 'gets': 1.0, 'generally': 1.0, 'point': 1.0, 'lights': 1.0, 'base': 2.0}
Word element => {'time': 1.0, 'saver': 1.0, 'a': 1.0, 'what': 1.0, 'their': 1.0, 'bought': 1.0, 't': 1.0, 'this': 2.0, 'item': 1.0, 'baby': 1.0, 'both': 2.0, 'for': 2.0, 'of': 1.0, 'expecting': 1.0, 'bottle': 1.0, 'when': 1.0, 'daughters': 1.0, 'my': 1.0, 'the': 1.0, 'wait': 1.0, 'can': 1.0, 'love': 1.0}
Word element => {'feed': 1.0, 'was': 1.0, 'its': 1.0, 'had': 1.0, 'jajaj': 1.0, 'water': 4.0, 'my': 2.0, 'always': 1.0, 'desperate': 1.0, 'to': 5.0, 'as': 2.0, 'born': 1.0, 'i': 5.0, 'auto': 1.0, 'have': 1.0, 'known': 1.0, 'night': 1.0, 'baby': 2.0, 'didnt': 1.0, 'highly': 1.0, 'it': 3.0, 'wish': 1.0, 'perfect': 2.0, 'this': 2.0, 'absolutely': 1.0, 'soon': 1.0, 'and': 1.0, 'when': 1.0, 'isnt': 1.0, 'out': 1.0, 'self': 1.0, 'shuts': 1.0, 'enough': 1.0, 'off': 1.0, 'burning': 1.0, 'recomend': 1.0, 'love': 1.0, 'product': 1.0, 'use': 1.0, 'a': 1.0, 'at': 1.0, 'keep': 1.0, 'temperature': 1.0, 'hot': 1.0, 'even': 1.0, 'thing': 1.0, 'about': 1.0, 'no': 1.0, 'thermos': 1.0, 'more': 1.0}
Word element => {'fine': 1.0, 'should': 1.0, 'you': 1.0, 'fill': 1.0, 'minimum': 1.0, 'filled': 1.0, 'sure': 1.0, 'be': 2.0, 'kettle': 1.0, 'getting': 1.0, 'line': 1.0, 'water': 1.0, 'don': 1.0, 'for': 1.0, 'mine': 1.0, 'months': 1.0, 'one': 1.0, 'had': 2.0, 'being': 1.0, 'have': 3.0, 'bad': 1.0, 'to': 3.0, 'all': 1.0, 'this': 1.0, 'it': 4.0, 'with': 1.0, 'made': 1.0, 'is': 1.0, 'i': 5.0, 'rep': 1.0, 'great': 1.0, 'a': 1.0, 't': 1.0, 'the': 2.0, 'my': 1.0, 'just': 1.0, 'life': 1.0, 'so': 1.0, 'works': 1.0, 'much': 1.0, 'but': 1.0, 'can': 1.0, 'make': 1.0, 'bottles': 1.0, '5': 1.0, 'worry': 1.0, 'and': 3.0, 'too': 1.0, 'has': 1.0, 'easier': 1.0, 'hot': 1.0, 'about': 2.0, 'no': 1.0, 'keep': 1.0, 'handed': 1.0, 'at': 1.0, 'noticed': 1.0, 'problems': 1.0}
Word element => {'gadget': 1.0, 'issues': 1.0, 'any': 1.0, 'wise': 1.0, 'enjoyment': 1.0, 'digestion': 1.0, 'think': 2.0, 'too': 1.0, 'amount': 1.0, 'we': 1.0, 'havent': 1.0, 'adjusted': 1.0, 'around': 1.0, 'and': 2.0, 'over': 1.0, 'warmer': 1.0, 'spit': 2.0, 'up': 2.0, 'of': 1.0, 'investment': 1.0, 'bit': 1.0, 'problem': 1.0, 'got': 1.0, 'a': 3.0, 'was': 1.0, 'turned': 1.0, 'had': 2.0, 'one': 1.0, 'all': 1.0, 'usual': 1.0, 'i': 3.0, 'lil': 1.0, 'little': 1.0, 'my': 1.0, 'the': 4.0, 'more': 1.0, 'gerd': 1.0, 'that': 2.0, 'helped': 1.0, 'but': 2.0, 'not': 1.0, 'just': 1.0, 'milk': 1.0, 'than': 1.0, 'with': 2.0, 'this': 2.0}
Word element => {'below': 1.0, 'at': 1.0, 'when': 2.0, 'blue': 1.0, 'is': 3.0, 'nice': 1.0, 'as': 1.0, 'serves': 1.0, 'light': 3.0, 'their': 1.0, 'feed': 1.0, 'warms': 1.0, 'those': 1.0, 'to': 1.0, 'for': 1.0, 'in': 2.0, 'kettle': 3.0, 'degreeslight': 1.0, 'recommend': 1.0, 'keep': 1.0, 'highly': 1.0, 'a': 1.0, 'since': 1.0, 'night': 1.0, 'i': 2.0, 'formula': 1.0, 'babies': 1.0, 'who': 1.0, 'nursery': 1.0, 'this': 1.0, 'it': 1.0, 'water': 2.0, 'degrees': 2.0, '98': 3.0, 'red': 1.0, 'the': 4.0}
Word element => {'using': 1.0, 'ok': 1.0, 're': 1.0, 'you': 1.0, 'unless': 1.0, 'especially': 1.0, 'disappointed': 1.0, 'really': 2.0, 'm': 1.0, 'year': 1.0, '1': 1.0, 'till': 1.0, 'more': 1.0, 'happy': 1.0, 'just': 1.0, 'wouldn': 1.0, 'even': 1.0, 'didn': 1.0, 'bottle': 1.0, 'feeding': 1.0, 'can': 1.0, 'but': 1.0, 'work': 1.0, 'it': 6.0, 'this': 3.0, 'with': 2.0, 'recommend': 1.0, 'unfortunately': 1.0, 'doesn': 1.0, 'was': 2.0, 'to': 1.0, 'least': 2.0, 'well': 1.0, 'worked': 1.0, 'last': 2.0, 'good': 1.0, 'me': 1.0, 'i': 4.0, 'how': 1.0, 'on': 1.0, 'than': 1.0, 'died': 1.0, 'product': 3.0, 'supposed': 1.0, 'for': 2.0, 'months': 3.0, 'one': 1.0, '5': 3.0, 'costs': 1.0, 'return': 1.0, 'way': 1.0, 't': 5.0, 'a': 2.0, 's': 1.0, 'and': 1.0, 'too': 1.0, 'only': 1.0, 'much': 1.0, 'that': 1.0, 'after': 1.0, 'isn': 1.0, 'through': 1.0, 'since': 1.0, 'at': 2.0, 'child': 1.0, 'age': 1.0}
Word element => {'s': 1.0, 'issues': 1.0, 'haven': 1.0, 'has': 1.0, 'say': 1.0, 'needless': 1.0, 'pot': 1.0, 'bottles': 1.0, 'had': 1.0, 'to': 1.0, 'heating': 1.0, 'is': 1.0, 'before': 1.0, 'great': 1.0, 'the': 2.0, 't': 2.0, 'for': 1.0, 'using': 1.0, 'a': 3.0, 'past': 1.0, 'any': 1.0, 'baby': 1.0, 'thing': 1.0, 'have': 1.0, '8': 1.0, 'lifesaver': 1.0, 'we': 4.0, 'honestly': 1.0, 'in': 1.0, 've': 1.0, 'stove': 1.0, 'were': 1.0, 'our': 1.0, 'it': 2.0, 'with': 1.0, 'this': 4.0, 'first': 1.0, 'and': 2.0, 'got': 1.0, 'been': 3.0, 'didn': 1.0, 'bottle': 1.0, 'on': 1.0, 'months': 1.0, 'warmer': 1.0}
Word element => {'not': 1.0, 'last': 1.0, 'thing': 1.0, 'i': 3.0, 'think': 1.0, 'hope': 1.0, 'good': 1.0, 'far': 1.0, 'out': 1.0, 'saying': 1.0, 'ways': 1.0, 'quickly': 1.0, 'goes': 1.0, 'that': 1.0, 'of': 1.0, 'there': 1.0, 'reviews': 1.0, 'are': 1.0, 'it': 2.0, 'this': 2.0, 'a': 1.0, 'if': 1.0, 'concern': 1.0, 'decided': 1.0, 'one': 1.0, 'love': 1.0, 'for': 1.0, 'and': 1.0, 'me': 1.0, 'will': 1.0, 'but': 1.0, 'was': 1.0, 'to': 1.0, 'so': 2.0, 'order': 2.0, 'another': 1.0, 'lots': 1.0, 'any': 1.0}
Word element => {'to': 1.0, 'quickly': 1.0, 'temp': 1.0, 'kettle': 1.0, 'the': 2.0, 'this': 1.0, 'it': 3.0, 'perfect': 1.0, 'all': 1.0, 'day': 1.0, 'warms': 1.0, 'would': 1.0, 'love': 1.0, 'one': 1.0, 'worth': 1.0, 'maintains': 1.0, 'certainly': 1.0, 'recommend': 1.0, 'that': 1.0, 'you': 1.0, 'i': 2.0, 'buy': 1.0, 'bc': 1.0, 'is': 1.0}
Word element => {'provided': 1.0, 'consistent': 1.0, 'liked': 1.0, 'base': 1.0, 'warmer': 1.0, 'warms': 1.0, 'just': 1.0, 'by': 1.0, 'off': 1.0, 'luck': 1.0, 'shower': 1.0, 'rather': 1.0, 'time': 1.0, 'hot': 1.0, 'temperature': 7.0, 'choosy': 1.0, 'out': 1.0, 'finicky': 1.0, 'breastmilk': 1.0, 'little': 1.0, 'better': 1.0, 'if': 2.0, 'a': 8.0, 'will': 1.0, 'could': 1.0, 'likes': 1.0, 't': 1.0, 'setting': 1.0, 'have': 4.0, 'suppose': 1.0, 'formula': 1.0, 'body': 1.0, 'that': 5.0, 'dropped': 1.0, 'to': 1.0, 'well': 1.0, 'i': 5.0, 'already': 1.0, 'it': 3.0, 'warming': 1.0, 'of': 2.0, 'the': 9.0, 'turns': 1.0, 'internal': 1.0, 'choice': 1.0, 'you': 3.0, 'someone': 1.0, 'when': 2.0, 'degrees': 3.0, 'however': 1.0, 'getting': 1.0, 'and': 6.0, 'one': 1.0, 'too': 2.0, 'they': 1.0, 'would': 7.0, 'illuminates': 1.0, 'say': 3.0, 'for': 1.0, 'chilly': 1.0, 'top': 1.0, '105': 1.0, 'degree': 1.0, 'about': 1.0, 'shake': 1.0, 'right': 1.0, 'pot': 2.0, 'isn': 1.0, 'led': 1.0, 'are': 2.0, 'bad': 1.0, '98': 2.0, 'perfect': 1.0, 'few': 1.0, 'bottle': 1.0, 'this': 2.0, 'has': 3.0, 'solution': 1.0, 'your': 1.0, 'taking': 1.0, '3': 1.0, 'option': 1.0, 'great': 1.0, 'be': 3.0, 'built': 1.0, 'an': 1.0, 'cordless': 1.0, 'water': 1.0, 'red': 1.0, 'been': 1.0, 'blue': 1.0, 'add': 1.0, 'buy': 1.0, 'is': 4.0, 'at': 2.0, 'baby': 2.0, 'displays': 1.0, 'in': 2.0, 'trying': 1.0, 'minutes': 1.0, 'emulate': 1.0, 'only': 1.0}
Word element => {'would': 1.0, 'issue': 1.0, 'fix': 1.0, 'once': 2.0, 'design': 1.0, 'flaw': 1.0, 're': 1.0, 'especially': 1.0, 'biggest': 1.0, 'super': 1.0, 've': 1.0, 'about': 1.0, 'deal': 1.0, 'big': 1.0, 'be': 1.0, 'stays': 1.0, 'not': 1.0, 'my': 2.0, 'me': 2.0, 'those': 1.0, 'that': 3.0, 'week': 1.0, 'but': 1.0, 'a': 10.0, 's': 2.0, 'we': 2.0, 't': 1.0, 'clean': 2.0, 'and': 4.0, 'mess': 2.0, 'two': 1.0, 'think': 1.0, 'make': 2.0, 'on': 1.0, 'so': 3.0, 'have': 2.0, 'handy': 1.0, 'of': 2.0, 'the': 6.0, 'brush': 1.0, 'perfect': 2.0, 'bottle': 2.0, 'this': 3.0, 'love': 1.0, 'stars': 1.0, 'funnel': 1.0, 'with': 1.0, 'it': 8.0, 'temp': 1.0, 'fatal': 1.0, 'otherwise': 1.0, 'dr': 1.0, 'd': 2.0, 'to': 7.0, 'mop': 1.0, 'all': 1.0, 'i': 4.0, 'fast': 1.0, 'water': 2.0, 'up': 2.0, 'pot': 1.0, 'don': 1.0, 'browns': 1.0, 'there': 1.0, 'is': 3.0, 'yeah': 1.0, 'happy': 1.0, 'catch': 1.0, 'out': 1.0, 'tip': 1.0, 'heats': 1.0, 'certain': 1.0, 'flood': 1.0, 'slim': 1.0, 'when': 1.0, 'what': 1.0, 'complaint': 1.0, 'done': 1.0, 'causes': 1.0, 'keep': 2.0, 'use': 1.0, 'some': 1.0, 'spill': 1.0, 'also': 1.0, 'towel': 1.0, 'by': 1.0, 'you': 3.0, 'things': 1.0, 'given': 1.0, 'counter': 1.0, 'they': 1.0, '5': 1.0, 'spout': 1.0, 'needed': 1.0, 'filling': 1.0, 'neck': 1.0, 'or': 1.0, 'angle': 1.0, 'like': 1.0, 'lifefactory': 1.0, 'if': 1.0}
Word element => {'great': 1.0, 'that': 1.0, 'realize': 1.0, 'off': 1.0, 'easy': 1.0, 'extremely': 1.0, 'of': 1.0, 'handle': 1.0, 'top': 1.0, 'is': 3.0, 'say': 1.0, 'reviewers': 1.0, 'with': 1.0, 'agree': 1.0, 'button': 1.0, 'takes': 1.0, 'other': 2.0, 'making': 1.0, 'thanks': 1.0, 'times': 1.0, 'who': 1.0, 'at': 3.0, 'literally': 1.0, 'have': 1.0, 'able': 1.0, 'be': 1.0, 'beyond': 1.0, 'than': 1.0, 'power': 1.0, 'because': 2.0, 'decided': 1.0, 'glad': 1.0, 'splurge': 1.0, 'm': 1.0, 'not': 2.0, 'drop': 1.0, 'for': 1.0, 'love': 1.0, 'the': 9.0, 'already': 1.0, 'then': 1.0, 'but': 1.0, 'think': 1.0, 'on': 1.0, 'playtex': 1.0, 'put': 1.0, 'ins': 1.0, 'less': 1.0, 'haven': 1.0, 'owned': 1.0, 'perfect': 1.0, 'this': 3.0, 'accidently': 1.0, 'baby': 1.0, 'kettle': 2.0, 'slightly': 2.0, 'ideal': 1.0, 'design': 1.0, 'measuring': 1.0, 'bottles': 1.0, 'worth': 1.0, 'liners': 1.0, 'or': 2.0, 'temperature': 1.0, 'recommended': 1.0, 'long': 1.0, 'microwave': 1.0, 'all': 1.0, 'our': 1.0, 'to': 6.0, 'minutes': 1.0, 'was': 1.0, 'turn': 1.0, 'in': 2.0, 's': 3.0, 't': 1.0, 'we': 2.0, 'a': 2.0, 'flawed': 1.0, 'it': 9.0, 'warming': 1.0, 'use': 1.0, 'warmer': 1.0, 'bottle': 1.0, 'so': 2.0, 'out': 1.0, 'water': 2.0, 'becoming': 1.0, 'container': 1.0, 'and': 4.0, 'seperate': 1.0, 'too': 1.0, 'do': 1.0, 'much': 1.0, 'i': 4.0}
Word element => {'happy': 1.0, 'not': 1.0, 'away': 1.0, 'thrown': 1.0, 'been': 1.0, 'box': 1.0, 'item': 1.0, 'return': 1.0, 'unable': 1.0, 'disappointed': 1.0, 'made': 1.0, 'badly': 1.0, 'horrible': 1.0, 'worked': 1.0, 'convenient': 1.0, 'concept': 1.0, 'good': 1.0, 's': 1.0, 'a': 2.0, 'lifting': 1.0, 'off': 2.0, 'turned': 2.0, 'cleaning': 1.0, 'only': 3.0, 'first': 1.0, 'month': 1.0, 'it': 5.0, 'this': 2.0, 'lasted': 2.0, '2': 1.0, 'water': 1.0, 'bought': 2.0, 'months': 1.0, 'one': 2.0, 'i': 8.0, 'on': 3.0, '3': 1.0, 'needed': 1.0, 'star': 2.0, 'these': 1.0, 'connects': 1.0, 'the': 11.0, 'kettles': 1.0, 'careful': 1.0, 'should': 1.0, '5': 1.0, 'before': 2.0, 'long': 1.0, 'have': 1.0, 'reviews': 2.0, 'mistake': 1.0, '1': 1.0, 'of': 2.0, 'bottom': 1.0, 'instead': 1.0, 'got': 1.0, 'by': 1.0, 'just': 2.0, 'had': 1.0, 'thought': 1.0, 'because': 1.0, 'maybe': 1.0, 'left': 1.0, 'and': 5.0, 'too': 1.0, 'product': 1.0, 'where': 1.0, 'when': 3.0, 'or': 1.0, 'kettle': 3.0, 'so': 2.0, 'time': 1.0, 'refilling': 1.0, 'to': 2.0, 'unfortunately': 1.0, 'was': 2.0, 'base': 2.0, 'another': 1.0, 'read': 1.0, 'very': 4.0}
Word element => {'feedings': 1.0, 'night': 1.0, 'late': 1.0, 'and': 1.0, 'in': 2.0, 'for': 1.0, 'one': 2.0, 'those': 1.0, 'we': 1.0, 'needed': 1.0, 'microwaving': 1.0, 'have': 2.0, 'constant': 1.0, 'brezza': 1.0, 'the': 4.0, 'keeps': 1.0, 'must': 1.0, 'it': 2.0, 'parent': 1.0, 'baby': 1.0, 'every': 1.0, 'water': 2.0, 'milk': 1.0, 'temps': 1.0, 'a': 1.0, 'kitchen': 1.0, '98': 1.0, 'degrees': 1.0, 'so': 1.0, 'simulates': 1.0, 'breast': 1.0, 'no': 1.0, 'at': 1.0, 'temp': 1.0, 'bedroom': 1.0, 'warm': 1.0, 'available': 1.0, 'always': 1.0}
Word element => {'feedings': 1.0, 'for': 1.0, 'this': 1.0, 'product': 1.0, 'early': 1.0, 'a': 1.0, 'the': 1.0, 'morning': 1.0, 'every': 1.0, 'very': 1.0, 'temp': 1.0, 'perfect': 1.0, 'helpful': 1.0, 'great': 1.0, 'it': 1.0, 'is': 3.0, 'time': 1.0}
Word element => {'recommmend': 1.0, 'manufactureing': 1.0, 'problem': 1.0, 'or': 1.0, 'this': 2.0, 'know': 1.0, 'not': 1.0, 'be': 1.0, 'here': 1.0, 'idea': 1.0, 'million': 1.0, 'a': 6.0, 'have': 1.0, 'up': 1.0, 'gave': 1.0, 'unanswered': 1.0, 'calls': 2.0, 'used': 1.0, 'in': 3.0, 'switch': 1.0, 'was': 3.0, 'off': 1.0, 'service': 1.0, 'if': 2.0, 'rinsed': 1.0, 'shut': 1.0, 'handle': 1.0, 'one': 2.0, 'water': 2.0, 'my': 1.0, 'can': 1.0, 'but': 1.0, '2': 1.0, 'the': 10.0, 'failure': 1.0, 'i': 9.0, '3': 1.0, 'think': 2.0, 'impressed': 1.0, 'until': 1.0, 'great': 1.0, '1': 1.0, 'and': 3.0, 'symptom': 1.0, 'then': 2.0, 'of': 3.0, 'after': 1.0, 'package': 1.0, 'would': 1.0, 'following': 1.0, 'finding': 1.0, 'brezza': 1.0, 'as': 1.0, 'opened': 1.0, 'doa': 1.0, 'heated': 1.0, 'first': 1.0, 'liter': 1.0, 'with': 1.0, 'do': 1.0, 'only': 1.0, 'stopped': 1.0, 'out': 1.0, 'kettle': 1.0, 'they': 2.0, 'morning': 1.0, 'product': 3.0, 'played': 1.0, 'acertained': 1.0, 'larger': 1.0, 'there': 1.0, 'telephone': 1.0, 'quality': 1.0, 'baby': 1.0, 'different': 1.0, 'tag': 1.0, 'customer': 1.0, 'is': 2.0, 'person': 1.0, 'returning': 1.0}
Word element => {'best': 1.0, 'air': 1.0, 'sensitive': 1.0, 'very': 1.0, 'my': 1.0, 'help': 1.0, 'not': 1.0, 'warm': 1.0, 'water': 1.0, 'looking': 1.0, 'are': 1.0, 'you': 2.0, 'purpose': 1.0, 'machine': 1.0, 'justify': 1.0, 'after': 1.0, 'however': 1.0, 'defeats': 1.0, 'bubbles': 1.0, 'this': 4.0, 'it': 2.0, 'with': 2.0, 'product': 2.0, 'be': 1.0, 'need': 1.0, 'kettle': 1.0, 'so': 1.0, 'time': 1.0, 'do': 1.0, 'works': 1.0, 'great': 1.0, 'mixing': 1.0, 'promised': 1.0, 'the': 5.0, 'go': 1.0, 't': 1.0, 'made': 1.0, 'is': 3.0, 'to': 5.0, 'as': 1.0, 'and': 3.0, 'baby': 3.0, 'quality': 1.0, 'will': 2.0, 'of': 2.0, 'warms': 1.0, 'find': 1.0, 'deciding': 1.0, 'having': 1.0, 'because': 1.0, 'keep': 1.0, 'at': 1.0, 'chef': 2.0, 'unfortunately': 1.0, 'i': 3.0, 'tried': 1.0, 'returning': 1.0, 'think': 1.0, 'reasons': 1.0, 'keeping': 1.0, 'but': 1.0, 'mixes': 1.0, 'can': 1.0, 'same': 1.0, 'if': 1.0}
Word element => {'definitely': 1.0, 'convenient': 1.0, 'time': 1.0, 'it': 1.0, 'went': 1.0, 'a': 1.0, 'loved': 1.0, 'whole': 1.0, 'temperature': 1.0, 'to': 1.0, 'the': 1.0, 'cabin': 1.0, 'for': 1.0, 'reccomend': 1.0, 'super': 1.0, 'weekend': 1.0, 'water': 1.0, 'would': 1.0, 'was': 1.0, 'perfect': 1.0}
Word element => {}
Word element => {'happy': 1.0, 'very': 1.0, 'makes': 1.0, 'warm': 1.0, 'get': 1.0, 'water': 1.0, 'for': 1.0, 'crying': 1.0, 'arms': 1.0, 'you': 1.0, 'when': 1.0, 'saver': 1.0, 'is': 1.0, 'this': 1.0, 'life': 1.0, 'complant': 1.0, 'or': 1.0, 'mommy': 1.0, 'problem': 1.0, 'had': 1.0, 'it': 1.0, 'use': 1.0, 'every': 1.0, 'amazing': 1.0, 'kitchen': 1.0, 'used': 1.0, 'been': 2.0, 'was': 1.0, 'and': 3.0, 'home': 1.0, 'story': 1.0, 'since': 1.0, 'having': 1.0, 'because': 1.0, 'not': 2.0, 'hungry': 1.0, 'my': 1.0, '9': 1.0, 'did': 1.0, 'slept': 1.0, 'i': 4.0, 'baby': 2.0, 'night': 2.0, 'be': 1.0, 'of': 2.0, 'these': 1.0, 'the': 7.0, 'right': 1.0, 'have': 3.0, 'born': 1.0, 'able': 1.0, 'before': 1.0, 'middle': 1.0, 'son': 2.0, 'day': 2.0, 'your': 1.0, 'make': 1.0, 'through': 1.0, 'in': 4.0, 'nursery': 1.0, 'we': 2.0, 'a': 6.0, 'ago': 1.0, 'go': 1.0, 'wait': 1.0, 'kettle': 1.0, 'wanted': 1.0, 'downstairs': 1.0, 'months': 1.0, 'bought': 2.0, 'one': 3.0, '2': 3.0, 'but': 2.0, 'to': 5.0, 'our': 2.0, 'has': 4.0, 'bottle': 1.0, 'so': 2.0, 'upstairs': 1.0, 'never': 2.0}
Word element => {'order': 1.0, 'twice': 1.0, 'please': 1.0, 'warm': 1.0, 'but': 2.0, 'blue': 1.0, 'for': 1.0, 'does': 2.0, 'thinking': 1.0, 'i': 2.0, 'twin': 1.0, 'that': 1.0, 'returning': 1.0, 'be': 1.0, 'think': 1.0, 'make': 1.0, 'my': 2.0, 'bought': 1.0, 'color': 1.0, 'this': 4.0, 'first': 1.0, 'it': 1.0, 'maintain': 1.0, 'item': 2.0, 'life': 1.0, 'not': 2.0, 'before': 1.0, 'formula': 1.0, 'would': 1.0, 'display': 1.0, 'all': 1.0, 'to': 2.0, 'a': 1.0, 'correct': 1.0, 'water': 1.0, 'easier': 1.0, 'temperature': 3.0, 'and': 2.0, 'worst': 1.0, 'lot': 1.0, 'at': 1.0, 'the': 3.0, 'kettle': 3.0, 'shows': 1.0, 'ready': 1.0, '91': 1.0, 'is': 2.0, 'still': 1.0, 'in': 1.0, 'indicating': 1.0, 'you': 1.0, 'boys': 1.0, 'am': 1.0}
Word element => {'comment': 1.0, 'head': 1.0, 'seem': 1.0, 'etc': 1.0, 'shaped': 1.0, 'irrigations': 1.0, 'unplanned': 1.0, 'heats': 1.0, 'morning': 1.0, 'evening': 1.0, 'fill': 1.0, 'disuse': 1.0, 'want': 1.0, 'soap': 1.0, 'dish': 1.0, 'occasional': 1.0, 'would': 1.0, 'cleaning': 2.0, 'residue': 1.0, 'reach': 2.0, 'minutes': 1.0, 'half': 1.0, 'about': 1.0, 'cool': 1.0, 'had': 1.0, 'first': 1.0, 'virtually': 1.0, 'know': 1.0, 'red': 1.0, 'appears': 2.0, 'transparent': 1.0, 'color': 1.0, 'inside': 3.0, 'led': 1.0, 'colored': 1.0, 'note': 3.0, 'plus': 1.0, 'will': 2.0, 'turned': 1.0, 'handle': 1.0, 'heat': 2.0, 'reached': 1.0, 'trying': 2.0, 'higher': 1.0, 'works': 2.0, 'product': 2.0, 'fahrenheit': 2.0, 'shows': 1.0, 'readout': 1.0, 'instructions': 1.0, 'pour': 1.0, 'button': 1.0, 'designed': 1.0, 'pressing': 1.0, 'after': 1.0, 'by': 1.0, 'opened': 1.0, 'lid': 2.0, 'holds': 1.0, 'showing': 1.0, 'frosted': 1.0, 'clear': 2.0, 'down': 1.0, 'no': 2.0, 'easily': 1.0, 'making': 1.0, 'little': 1.0, 'three': 1.0, 'undocks': 1.0, 'mates': 1.0, 'side': 3.0, 'bottom': 3.0, 'built': 1.0, 'available': 1.0, 'clean': 1.0, 'element': 1.0, 'touched': 1.0, 'clearly': 1.0, 'cannot': 1.0, 't': 2.0, 'resting': 2.0, 'sealed': 1.0, 'poured': 3.0, 'its': 3.0, 'or': 8.0, 'shelf': 1.0, 'socket': 1.0, 'switch': 2.0, 'wall': 1.0, 'left': 2.0, 'being': 3.0, 'degrees': 5.0, 'cord': 1.0, 'plastic': 2.0, 'base': 5.0, 'power': 4.0, 'anything': 2.0, 'parts': 1.0, 'locked': 1.0, 'two': 1.0, 'quickly': 1.0, 'visible': 1.0, 'feel': 2.0, 'quality': 1.0, 'has': 4.0, 'any': 2.0, 'pretty': 1.0, 'nicely': 1.0, 'minus': 1.0, 'made': 2.0, 'read': 2.0, 'according': 1.0, 'going': 1.0, 'leave': 1.0, 'end': 1.0, 'center': 1.0, 'infect': 1.0, 'around': 1.0, 'least': 1.0, 'but': 7.0, 'consists': 1.0, 'chlorination': 1.0, 'blue': 2.0, 'sensation': 1.0, 'ready': 1.0, 'naegleria': 1.0, 'places': 1.0, 'some': 1.0, 'safe': 2.0, 'connection': 1.0, 'table': 1.0, 'water': 34.0, 'up': 3.0, 'electrical': 1.0, 'fowleri': 1.0, 'whether': 2.0, 'of': 16.0, 'the': 85.0, 'hold': 2.0, 'doing': 1.0, '51': 1.0, 'heating': 1.0, 'connections': 1.0, 'there': 7.0, 'thick': 1.0, 'problem': 3.0, 'full': 1.0, 'help': 1.0, 'action': 1.0, 'used': 3.0, 'display': 1.0, 'fresh': 1.0, 'enough': 1.0, 'sinupulse': 1.0, 'infections': 1.0, 'at': 10.0, 'turn': 3.0, 'can': 4.0, 'is': 37.0, 'disk': 1.0, 'not': 12.0, 'me': 2.0, 'nose': 1.0, 'too': 3.0, 'docks': 1.0, 'trip': 1.0, 'through': 2.0, 'into': 8.0, 'device': 1.0, 'however': 1.0, 'get': 3.0, 'much': 1.0, 'either': 1.0, 'do': 1.0, 'neti': 3.0, 'one': 2.0, 'got': 2.0, 'flat': 1.0, 'neilmed': 2.0, 'pouring': 1.0, 'use': 9.0, 'squeeze': 1.0, 'getting': 2.0, 'raised': 2.0, 'like': 1.0, 'uses': 1.0, 'irrigation': 5.0, 'possibility': 1.0, 'volume': 1.0, 'lake': 1.0, 'spout': 1.0, 'handy': 1.0, 'need': 4.0, 'also': 5.0, 'so': 8.0, 'luggage': 1.0, 'an': 2.0, 'have': 8.0, 'saline': 1.0, 'open': 1.0, 'think': 1.0, 'long': 3.0, 'using': 3.0, 'with': 10.0, 'older': 1.0, 'off': 3.0, 'filtered': 2.0, 'on': 11.0, 'burning': 1.0, 'states': 1.0, 'this': 12.0, 'bottle': 3.0, 'feature': 1.0, 'couple': 1.0, 'started': 1.0, 'problems': 2.0, 'that': 13.0, 'because': 5.0, 'deep': 2.0, 'feet': 2.0, 'home': 2.0, 'periods': 1.0, 'sinus': 1.0, 'am': 1.0, 'bed': 1.0, 'when': 12.0, 'overshooting': 1.0, 'come': 1.0, 'amoeba': 1.0, 'results': 1.0, 'graduations': 1.0, 'for': 20.0, 'force': 1.0, 'such': 2.0, 'actually': 1.0, 'mostly': 2.0, 'purpose': 1.0, 'doctor': 1.0, 'from': 5.0, 'more': 1.0, 'seems': 4.0, 'true': 1.0, 'cold': 3.0, 'to': 25.0, 'right': 1.0, 'out': 2.0, 'question': 1.0, 'than': 2.0, 'way': 1.0, 'ideal': 1.0, 'packing': 1.0, 'swished': 1.0, 'bottles': 2.0, 'passages': 4.0, 'rinse': 1.0, 'machine': 1.0, 'might': 1.0, 'a': 25.0, 'small': 1.0, 'between': 1.0, 'packages': 1.0, 'unplug': 2.0, 'very': 3.0, 'unlikely': 1.0, 'does': 1.0, 'lamp': 1.0, 'pulsing': 1.0, 'concern': 1.0, 'infection': 1.0, 'which': 2.0, 'good': 1.0, 'destroy': 1.0, 'you': 6.0, 'brain': 1.0, 'needed': 1.0, 'easier': 1.0, 'limited': 1.0, 'always': 2.0, 'most': 1.0, 'if': 2.0, 'pot': 4.0, 'rivers': 1.0, 'don': 2.0, 'still': 2.0, 'durability': 1.0, 'introduced': 1.0, 'warm': 3.0, 'constantly': 3.0, 'and': 32.0, 'tried': 2.0, 'just': 4.0, 'milk': 2.0, 'swimming': 1.0, 'intended': 4.0, 'digital': 2.0, 'certain': 1.0, 'really': 1.0, 'lakes': 1.0, 'only': 3.0, 'then': 2.0, 'coil': 1.0, 'reviews': 1.0, 'studies': 2.0, 'distilled': 4.0, 'likely': 1.0, 'sold': 1.0, 'it': 32.0, 'be': 8.0, 'wells': 2.0, 'ounces': 2.0, 'northern': 1.0, 'connector': 4.0, 'part': 1.0, 'baby': 4.0, 'your': 1.0, 'where': 1.0, 'live': 1.0, 'short': 1.0, 'itself': 1.0, 'should': 3.0, 'nifty': 1.0, 'my': 3.0, 'are': 2.0, 'difficult': 1.0, 'test': 1.0, '40': 1.0, 'body': 3.0, 'approximately': 1.0, 'as': 2.0, 'liquid': 1.0, 'large': 1.0, 'awkward': 1.0, 'break': 1.0, 'microwave': 1.0, '130': 1.0, 'until': 2.0, 'controlled': 1.0, 'years': 1.0, 'lifting': 1.0, 'without': 2.0, 'lingers': 1.0, 'could': 1.0, 'needs': 1.0, 'well': 4.0, 'slow': 1.0, 'heated': 1.0, 'before': 2.0, 'was': 5.0, 'gunk': 1.0, 'hard': 2.0, 'in': 14.0, 'main': 1.0, 'temperature': 8.0, 'took': 2.0, 'juices': 1.0, 'discouraged': 1.0, 'comes': 1.0, 'better': 1.0, 'bought': 1.0, 'immersion': 1.0, 'store': 2.0, 'heater': 1.0, 'time': 2.0, 'top': 3.0, 'worked': 1.0, 'plugged': 2.0, 'cause': 1.0, 'i': 21.0, 'finally': 1.0, 'googled': 1.0, 'other': 1.0, 'near': 1.0, 'state': 2.0, 'preheating': 2.0, 'chlorinated': 1.0, 'brezza': 1.0, 'nasal': 8.0, 'kettle': 19.0, 's': 2.0, 'they': 1.0, '98': 3.0, 'drinking': 1.0, 'amazon': 1.0}
Word element => {'formula': 1.0, 'in': 1.0, 'touch': 1.0, 'temp': 2.0, 'highly': 1.0, 'optimal': 1.0, 'blue': 1.0, 'red': 1.0, 'from': 2.0, 'had': 1.0, 'it': 1.0, 'first': 1.0, 'to': 3.0, 'our': 1.0, 'used': 1.0, 'even': 1.0, 'water': 2.0, 'daughter': 1.0, 'child': 1.0, 'middle': 1.0, 'go': 1.0, 'we': 2.0, 'a': 6.0, 'perfect': 1.0, 'this': 3.0, 'wish': 1.0, 'for': 4.0, 'of': 3.0, 'night': 1.0, 'eternity': 1.0, 'kettle': 2.0, 'the': 8.0, 'when': 4.0, 'traditional': 1.0, 'nice': 1.0, 'great': 1.0, 'my': 1.0, 'feedings': 1.0, 'color': 1.0, 'waiting': 1.0, 'have': 1.0, 'indispensable': 1.0, 'handful': 1.0, 'thermos': 1.0, 'comes': 1.0, 'is': 2.0, 'change': 1.0, 'recommend': 1.0, 'minutes': 1.0, 'bottle': 2.0, 'warm': 1.0, 'on': 2.0, 'use': 1.0, 'travel': 1.0, 'warmer': 1.0, 'seems': 1.0, 'like': 1.0, 'an': 1.0, 'reaches': 1.0, 'digital': 1.0, 'has': 1.0, 'temperature': 1.0, 'and': 2.0, 'display': 1.0, 'i': 2.0, 'become': 1.0, 'feature': 1.0}
Word element => {'lot': 1.0, 'really': 1.0, 'money': 1.0, 'but': 1.0, 'or': 1.0, 'got': 1.0, 'bad': 1.0, 'is': 2.0, 'this': 1.0, 'doing': 1.0, 'luck': 1.0, 'then': 1.0, 'feeding': 1.0, 'was': 1.0, 'to': 1.0, 'night': 2.0, 'two': 1.0, 'i': 4.0, 'frustrating': 1.0, 'with': 1.0, 'it': 4.0, 'off': 1.0, 'of': 3.0, 'both': 1.0, 'what': 2.0, 'turned': 1.0, 'us': 1.0, 'exact': 1.0, 'wasting': 1.0, 'middle': 1.0, 'wife': 1.0, 'products': 1.0, 'these': 1.0, 'kettles': 1.0, 'job': 1.0, 'the': 4.0, 'a': 1.0, 't': 1.0, 'went': 1.0, 'one': 3.0, 'bought': 2.0, 'for': 2.0, 'product': 1.0, 'easier': 1.0, 'and': 5.0, 'its': 1.0, 'do': 1.0, 'never': 1.0, 'came': 1.0, 'back': 1.0, 'make': 1.0, 'on': 2.0, 'you': 1.0, 'happened': 1.0, 'so': 1.0, 'out': 1.0, 'my': 2.0, 'another': 1.0, 'faulty': 2.0, 'don': 1.0, 'know': 2.0, 'thing': 1.0, 'same': 2.0, 'if': 1.0}
Word element => {'this': 1.0, 'gift': 1.0, 'than': 1.0, 'experiences': 1.0, 'is': 1.0, 'netter': 1.0, 'ideas': 1.0, 'results': 1.0, 'nevertheless': 1.0, 'okay': 1.0, 'items': 2.0, 'but': 2.0, 'something': 1.0, 'returning': 1.0, 'replaced': 1.0, 'product': 1.0, 'wasn': 1.0, 'on': 1.0, 'think': 1.0, 'or': 1.0, 'i': 2.0, 'and': 5.0, 'well': 1.0, 'temperature': 1.0, 'needed': 1.0, 'holding': 1.0, 'questions': 1.0, 'was': 2.0, 'anymore': 1.0, 'recommend': 1.0, 'its': 1.0, 'works': 1.0, 'great': 4.0, 't': 1.0, 'replace': 1.0, 'defective': 1.0, 'it': 5.0, 'have': 5.0, 'as': 1.0, 'to': 2.0, 'all': 1.0, 'forgot': 1.0, 'though': 1.0, 'twice': 1.0, 'wonderful': 1.0, 'interesting': 1.0, 'why': 1.0, 'very': 1.0, 'customer': 1.0, 'no': 2.0, 'at': 1.0, 'others': 1.0, 'some': 4.0, 'problem': 1.0, 'not': 1.0, 'service': 1.0, 'many': 1.0, 'inconvenience': 1.0, 'they': 1.0, 'of': 1.0, 'with': 1.0, 'convenient': 2.0, 'company': 1.0, 'other': 1.0}
Word element => {'your': 1.0, 'for': 1.0, 'product': 1.0, 'is': 1.0, 'warmer': 1.0, 'worry': 2.0, 'so': 1.0, 'to': 3.0, 'heating': 2.0, 'purchased': 1.0, 'formula': 1.0, 'have': 2.0, 'with': 1.0, 'this': 2.0, 'never': 1.0, 'i': 1.0, 'happy': 1.0, 'up': 1.0, 'hot': 1.0, 'and': 1.0, 't': 1.0, 'the': 4.0, 'water': 1.0, 'perfect': 1.0, 'in': 2.0, 'microwave': 1.0, 'baby': 1.0, 'about': 2.0, 'don': 1.0, 'a': 1.0, 'feeding': 1.0, 'bottle': 2.0, 'actual': 1.0}
Word element => {'what': 1.0, 'with': 1.0, 'come': 1.0, 'that': 1.0, 'find': 1.0, 'mostly': 1.0, 'fastened': 1.0, 'slips': 1.0, 'us': 1.0, 'inside': 1.0, 'down': 2.0, 'do': 1.0, 'and': 3.0, 'friendly': 1.0, 'newborn': 1.0, 'seems': 1.0, 'also': 1.0, 'in': 2.0, 'making': 1.0, 'stay': 1.0, 'not': 2.0, 'automatically': 1.0, 'must': 1.0, 'very': 1.0, 't': 2.0, 'a': 3.0, 's': 2.0, 'i': 3.0, 'cacoon': 2.0, 'but': 2.0, 'back': 1.0, 'put': 1.0, 'expensive': 1.0, 'for': 2.0, 'structure': 1.0, 'you': 1.0, 'again': 1.0, 'doesn': 2.0, 'closures': 1.0, 'close': 1.0, 'would': 1.0, 'if': 1.0, 'bee': 2.0, 'button': 1.0, 'they': 1.0, 'buckle': 1.0, 'take': 1.0, 'long': 1.0, 'as': 1.0, 'actual': 1.0, 'to': 3.0, 'blanket': 1.0, 'useful': 1.0, 'which': 1.0, 'like': 2.0, 'hold': 1.0, 'the': 8.0, 'place': 2.0, 'is': 2.0, 'annoying': 2.0, 'it': 5.0, 'felt': 1.0, 'under': 1.0, 'baby': 1.0, 'time': 1.0, 'so': 1.0, 'need': 1.0}
Word element => {'reversible': 1.0, 'awesome': 1.0, 'that': 2.0, 'm': 1.0, 'looking': 1.0, 'always': 1.0, 'of': 1.0, 'add': 1.0, 'products': 1.0, 'sun': 1.0, 'teds': 1.0, 'impressed': 1.0, 'and': 1.0, 'do': 1.0, 'it': 2.0, 'for': 2.0, 'father': 1.0, 'was': 1.0, 'phil': 1.0, 'stroller': 2.0, 'quality': 1.0, 'an': 2.0, 'shade': 1.0, 'can': 1.0, 'but': 1.0, 'fact': 1.0, 'my': 1.0, 'the': 5.0, 'a': 1.0, 'with': 1.0, 'convenient': 1.0, 'very': 2.0, 'at': 1.0, 'option': 1.0, 'main': 1.0, 'is': 3.0, 'collapses': 1.0, 'two': 1.0, 'i': 3.0, 'feature': 1.0, 'flat': 1.0, 'kids': 1.0, 'wish': 1.0, 'included': 1.0, 'as': 1.0, 'seat': 1.0, 'least': 1.0, 'you': 1.0}
Word element => {'had': 1.0, 'sorry': 1.0, 'now': 1.0, 'overall': 1.0, 'but': 1.0, 'cool': 1.0, 'color': 1.0, 'different': 1.0, 'dad': 1.0, 'like': 1.0, 'maybe': 1.0, 'ok': 1.0, 'holder': 1.0, 'lack': 1.0, 'be': 1.0, 'would': 2.0, 'slight': 1.0, 'my': 2.0, 'bad': 2.0, 'suspension': 1.0, 'grip': 1.0, 'this': 3.0, 'come': 2.0, 'with': 2.0, 'needing': 1.0, 'reversible': 1.0, 'then': 1.0, 'every': 1.0, 'of': 2.0, 'fold': 1.0, 'across': 1.0, 'and': 4.0, 'about': 1.0, 'options': 1.0, 'dual': 1.0, 'you': 2.0, 'the': 5.0, 'great': 1.0, 'just': 1.0, 'to': 3.0, 'seat': 1.0, 'stroller': 3.0, 'cup': 1.0, 'void': 1.0, 'take': 1.0, 'front': 1.0, 'only': 1.0, 'wheel': 1.0, 'city': 1.0, 'walks': 1.0, 'a': 5.0, 'go': 1.0, 'way': 1.0, 'complete': 1.0, 'in': 2.0, 'flat': 1.0, 'boy': 1.0, 'makes': 1.0, 'rocks': 1.0, 'main': 1.0, 'out': 3.0, 'trigger': 1.0, 'talk': 1.0, 'bumps': 1.0, 'market': 1.0, 'pleasure': 1.0, 'day': 1.0, 'is': 1.0, 'for': 1.0, 'along': 1.0}
Word element => {'her': 1.0, 'like': 1.0, 'be': 1.0, 'she': 1.0, 'that': 1.0, 'tall': 1.0, 'sure': 1.0, 'm': 1.0, 'angel': 1.0, 'little': 1.0, 'for': 1.0, 'rest': 1.0, 'foot': 1.0, 'and': 2.0, 'important': 1.0, 'different': 1.0, 'researching': 1.0, 'after': 1.0, 'father': 1.0, 'my': 2.0, 'mother': 1.0, 'adjustable': 2.0, 'the': 2.0, 'receive': 1.0, 'telescoping': 1.0, 'buggy': 1.0, 'excited': 1.0, 'handlebar': 1.0, 'very': 2.0, 'as': 2.0, 'i': 5.0, 'will': 1.0, 'stroller': 1.0, 's': 1.0, 'was': 2.0, 'to': 1.0, 'teds': 1.0, 'a': 1.0, 'on': 1.0, 'phil': 1.0, 'am': 1.0, 'settled': 1.0, '6': 2.0}
Word element => {'parent': 1.0, 'new': 1.0, 'will': 1.0, 'been': 1.0, 'but': 1.0, 'important': 1.0, 'most': 1.0, 'with': 1.0, 'has': 2.0, 'peice': 1.0, 'convenience': 1.0, 'more': 1.0, 'thats': 1.0, 'know': 2.0, 'do': 1.0, 'put': 1.0, 'spot': 1.0, 'subdivision': 1.0, 'walks': 1.0, 'great': 1.0, 'option': 1.0, 'when': 1.0, 'you': 4.0, 'believe': 1.0, 'in': 3.0, 'around': 2.0, 'is': 4.0, 'say': 2.0, 'compare': 1.0, 'overall': 1.0, 'like': 3.0, 'really': 5.0, 'we': 2.0, 'a': 5.0, 'to': 8.0, 'as': 1.0, 'would': 1.0, 'either': 1.0, 'else': 1.0, 'everything': 1.0, 'wife': 4.0, 'from': 1.0, 'just': 1.0, 'fact': 1.0, 'extended': 1.0, 'child': 2.0, 'for': 2.0, 'shorter': 1.0, 'used': 1.0, 'her': 1.0, 'i': 17.0, 'that': 6.0, 'basket': 1.0, 'my': 5.0, 'me': 2.0, 'not': 1.0, 'and': 8.0, 'though': 1.0, 'handlebar': 1.0, 'our': 4.0, 'stroller': 3.0, 'how': 1.0, 'had': 2.0, 'nicer': 1.0, 'company': 1.0, 'only': 2.0, 'it': 5.0, 'higher': 1.0, 'she': 1.0, 'first': 1.0, 'this': 3.0, 'wish': 1.0, 'saftey': 1.0, 'thing': 4.0, 'about': 2.0, 'have': 4.0, 'gift': 1.0, 'research': 1.0, 'lot': 1.0, 'one': 3.0, 'parents': 2.0, 'height': 1.0, 'the': 13.0, 'of': 5.0, 'whats': 1.0, 'water': 1.0, 'change': 2.0, '7': 1.0, 'than': 2.0, 'does': 1.0, 'can': 3.0, 'so': 2.0, 'nothing': 1.0, 'out': 2.0, 'received': 1.0, 'also': 2.0, 'your': 1.0, 'on': 1.0, 'recommending': 1.0, 'going': 1.0, 'kid': 1.0, 'face': 1.0, 'need': 1.0, 'or': 1.0, 'cup': 1.0, 'front': 1.0, 'sure': 1.0, 'every': 1.0, 'turn': 1.0, 'if': 1.0, 'other': 1.0, 'am': 2.0, 'strollers': 1.0, 'never': 1.0, 'haul': 1.0, 'some': 1.0, 'these': 1.0, 'did': 1.0, 'makes': 1.0, 'they': 1.0, 'seem': 1.0, 'be': 2.0, 'recently': 1.0, 'top': 1.0, 'line': 1.0, 'was': 1.0, 'holder': 1.0, 'likes': 1.0}
Word element => {'thanks': 1.0, 'just': 1.0, 'very': 1.0, 'options': 1.0, 'thing': 1.0, 'but': 1.0, '2': 1.0, 'handle': 1.0, 'able': 1.0, 'if': 1.0, 'also': 1.0, 'something': 1.0, 'would': 3.0, 'important': 1.0, 'with': 1.0, 'should': 1.0, 'sun': 1.0, 'rain': 1.0, 'that': 2.0, 'usable': 2.0, 'handlebar': 2.0, 'color': 2.0, 'entire': 1.0, 'see': 1.0, 'could': 1.0, 'a': 1.0, 'front': 1.0, 'only': 1.0, 'wheel': 1.0, 'child': 1.0, 'easy': 2.0, 'this': 3.0, 'it': 1.0, 'offered': 1.0, 'children': 1.0, 'time': 1.0, 'is': 4.0, 'an': 2.0, 'the': 14.0, 'other': 1.0, 'adjustable': 1.0, 'exceptional': 1.0, 'numerous': 1.0, 'reversible': 1.0, 'and': 2.0, 'walk': 1.0, 'seats': 1.0, 'come': 1.0, 'ride': 1.0, 'main': 1.0, 'be': 4.0, 'him': 1.0, 'product': 6.0, 'for': 3.0, 'person': 1.0, 'of': 2.0, 'as': 1.0, 'to': 3.0, 'seat': 1.0, 'any': 1.0, 'beneficial': 1.0, 'rest': 1.0, 'ages': 1.0, 'size': 1.0, 'due': 1.0, 'suspension': 1.0, 'makes': 3.0, 'telescopic': 1.0, 'cover': 1.0, 'foot': 1.0, 'dual': 1.0, 'make': 1.0, 'good': 1.0, 'her': 1.0, 'different': 2.0, 'i': 2.0, 'comfortable': 1.0, 'feel': 1.0}
Word element => {'it': 1.0, 'recommend': 1.0, 'one': 2.0, 'adjust': 1.0, 'your': 1.0, 'make': 1.0, 'the': 5.0, 'great': 2.0, 't': 1.0, 'that': 3.0, 'reversible': 1.0, 'handlebar': 1.0, 'able': 1.0, 'suspension': 1.0, 've': 1.0, 'stroller': 1.0, 'for': 1.0, 'love': 1.0, 'product': 1.0, 'purchased': 1.0, 'husband': 1.0, 'perfect': 2.0, 'this': 3.0, 'you': 3.0, 'when': 1.0, 'i': 3.0, 'never': 1.0, 'are': 1.0, 'push': 1.0, 'front': 1.0, 'wheel': 1.0, 'well': 1.0, 'is': 3.0, 'many': 1.0, 'main': 1.0, 'simular': 1.0, 'strollers': 1.0, 'thingilike': 1.0, 'about': 1.0, 'highly': 1.0, 'particular': 1.0, 'as': 3.0, 'to': 2.0, 'seat': 1.0, 'but': 1.0, 'can': 1.0, 'find': 1.0, 'like': 1.0, 'and': 1.0}
Word element => {'bonus': 1.0, 'it': 1.0, 'this': 2.0, 'with': 1.0, 'telescoping': 1.0, 'second': 1.0, 'child': 2.0, 'wow': 1.0, 'than': 1.0, 'my': 1.0, 'first': 1.0, 'reversible': 1.0, 'one': 1.0, 'for': 4.0, 'handle': 1.0, 'feature': 1.0, 'i': 2.0, 'so': 1.0, 'got': 1.0, 'use': 1.0, 'stroller': 2.0, 'option': 1.0, 'wife': 1.0, 'recently': 1.0, 'has': 1.0, 'very': 1.0, 'easy': 1.0, 'much': 1.0, 'town': 1.0, 'its': 1.0, 'the': 2.0, 'maneuvering': 1.0, 'is': 3.0, 'around': 1.0, 'we': 1.0, 'a': 3.0, 'our': 2.0, 'to': 1.0, 'seat': 1.0, 'plus': 1.0, 'nicer': 1.0, 'fairly': 1.0, 'm': 1.0, 'and': 2.0, 'tall': 1.0, 'guy': 1.0, 'great': 2.0, 'nice': 1.0}
Word element => {'stores': 1.0, 'at': 1.0, 'navigates': 1.0, 'i': 1.0, 'though': 1.0, 'large': 1.0, 'clothing': 1.0, 'despite': 1.0, 'even': 2.0, 'gigantic': 1.0, 'gripe': 1.0, 'tight': 1.0, 'my': 1.0, 'big': 1.0, 'investment': 1.0, 'good': 1.0, 'after': 1.0, 'footprint': 1.0, 'second': 1.0, 'spaces': 1.0, 'having': 1.0, 'being': 1.0, 'if': 1.0, 'double': 1.0, 'this': 3.0, 'durable': 1.0, 'older': 1.0, 'cosi': 1.0, 'amazing': 1.0, 'drop': 1.0, 'from': 1.0, 'very': 2.0, 'racks': 1.0, 'toddler': 1.0, 'stroller': 4.0, 'transitional': 1.0, 'configurations': 1.0, 'through': 2.0, 'on': 1.0, 'make': 1.0, 'soon': 1.0, 'and': 4.0, 'it': 4.0, 'truly': 1.0, 'push': 1.0, 'are': 2.0, 'into': 1.0, 'that': 1.0, 'there': 1.0, 'up': 1.0, 'multiple': 1.0, 'also': 1.0, 'in': 2.0, 'easy': 1.0, 'folds': 1.0, 'say': 1.0, 'plan': 1.0, 'is': 3.0, 'a': 4.0, 'we': 1.0, 'so': 1.0, 'reconfigure': 1.0, 'must': 1.0, 'syncs': 1.0, 'have': 1.0, 'folded': 1.0, 'when': 1.0, 'easily': 2.0, 'you': 2.0, 'simple': 1.0, 'need': 1.0, 'attachments': 1.0, 'infant': 2.0, 'car': 1.0, 'as': 1.0, 'to': 3.0, 'all': 2.0, 'seat': 1.0, 'only': 1.0, 'its': 2.0, 'maxi': 1.0, 'well': 3.0, 'the': 5.0, 'turns': 1.0}
Word element => {'play': 1.0, 'little': 1.0, 'let': 1.0, 'pictures': 1.0, 'light': 1.0, 'nursery': 1.0, 'white': 1.0, 'ones': 1.0, 't': 1.0, 'the': 5.0, 'wood': 1.0, 'rest': 1.0, 'don': 1.0, 'in': 2.0, 'of': 1.0, 'appears': 1.0, 'got': 1.0, 'to': 1.0, 'frame': 1.0, 'so': 1.0, 'person': 1.0, 'with': 1.0, 'this': 1.0, 'it': 3.0, 'stuff': 1.0, 'is': 2.0, 'match': 1.0, 'very': 1.0, 'flimsy': 1.0}
Word element => {'recommend': 1.0, 'definitely': 1.0, 'go': 1.0, 'just': 1.0, 'can': 1.0, 'so': 1.0, 'inside': 1.0, 'liner': 1.0, 'love': 1.0, 'i': 3.0, 'owls': 1.0, 'the': 3.0, 'holds': 1.0, 'product': 1.0, 'laundry': 1.0, 'supposed': 1.0, 'would': 1.0, 'exactly': 1.0, 'dirty': 1.0, 'and': 1.0, 'do': 1.0, 'is': 1.0, 'room': 2.0, 'what': 1.0, 'does': 1.0, 'grab': 1.0, 'to': 2.0, 'matches': 1.0, 'with': 1.0, 'it': 3.0, 'this': 2.0, 'in': 1.0, 'a': 1.0, 'adorable': 1.0, 'hamper': 1.0, 'very': 1.0, 'our': 1.0, 'mesh': 1.0, 'removable': 1.0, 'baby': 1.0, 'way': 1.0, 'clothes': 1.0, 'stylish': 1.0, 's': 1.0}
Word element => {'ready': 1.0, 's': 1.0, 'set': 1.0, 'it': 1.0, 'great': 1.0, 'up': 1.0, 'and': 3.0, 'to': 1.0, 'product': 1.0, 'open': 1.0, 'cute': 1.0, 'seems': 1.0, 'pretty': 1.0, 'design': 1.0, 'durable': 1.0, 'was': 1.0, 'so': 1.0, 'just': 1.0, 'easy': 1.0}
Word element => {'too': 1.0, 'she': 1.0, 's': 1.0, 'neice': 1.0, 'my': 1.0, 'in': 1.0, 'good': 1.0, 'loves': 1.0, 'item': 1.0, 'great': 1.0, 'it': 2.0, 'as': 1.0, 'described': 1.0, 'and': 1.0, 'very': 1.0, 'room': 1.0, 'service': 1.0, 'is': 1.0, 'pretty': 1.0, 'looks': 1.0}
Word element => {'room': 1.0, 'laundry': 1.0, 'clothes': 1.0, 'of': 1.0, 'i': 1.0, 'love': 1.0, 'the': 4.0, 'for': 1.0, 'in': 1.0, 'mesh': 1.0, 'colors': 1.0, 'fabric': 1.0, 'and': 1.0, 'bag': 1.0, 'pull': 1.0, 'easy': 2.0, 'transport': 1.0, 'to': 2.0, 'out': 1.0}
Word element => {'clothes': 1.0, 'infant': 1.0, 'nice': 1.0, 'and': 1.0, 'be': 1.0, 'seems': 1.0, 'to': 1.0, 'turned': 1.0, 'very': 1.0, 'hamper': 1.0, 'it': 1.0, 'this': 1.0, 'out': 1.0, 'made': 1.0, 'more': 1.0, 'sturdy': 1.0, 'of': 1.0, 'holds': 1.0, 'than': 1.0, 'well': 1.0, 'a': 2.0, 'lot': 1.0, 'enough': 1.0, 'for': 1.0, 'week': 1.0}
Word element => {'product': 1.0, 'would': 1.0, 'white': 1.0, 'painted': 1.0, 'which': 1.0, 'on': 1.0, 'the': 3.0, 'more': 1.0, 'article': 1.0, 'buy': 1.0, 'i': 1.0, 'bad': 1.0, 'have': 1.0, 'of': 3.0, 'finish': 2.0, 'this': 2.0, 'it': 1.0, 'expected': 1.0, 'not': 2.0, 'any': 1.0, 'in': 2.0, 'fact': 1.0, 'photos': 1.0, 'wood': 1.0, 'different': 1.0, 'very': 2.0, 'from': 1.0, 'how': 1.0, 'is': 3.0, 'type': 1.0, 'looks': 1.0}
Word element => {'thing': 1.0, 'dropping': 1.0, 'carry': 1.0, 'just': 1.0, 'whole': 1.0, 'i': 1.0, 'easily': 1.0, 'also': 1.0, 'won': 1.0, 'it': 1.0, 'damp': 1.0, 'washer': 1.0, 'mildew': 1.0, 'little': 1.0, 'clothes': 1.0, 'if': 1.0, 'keep': 1.0, 'load': 1.0, 'hold': 1.0, 'and': 1.0, 'perfectly': 1.0, 'without': 1.0, 'can': 2.0, 'of': 1.0, 'set': 1.0, 'bedding': 1.0, 'removes': 1.0, 't': 1.0, 'the': 5.0, 'lots': 1.0, 'mesh': 1.0, 'helps': 1.0, 'to': 1.0, 'matches': 1.0, 'bag': 2.0, 'insert': 1.0, 'air': 1.0, 'something': 1.0, 'flowing': 1.0, 'so': 2.0, 'is': 1.0, 'a': 2.0}
Word element => {'definitely': 1.0, 'laundry': 1.0, 'out': 1.0, 'take': 1.0, 'just': 1.0, 'easy': 1.0, 'matches': 1.0, 'to': 5.0, 'that': 2.0, 'childs': 1.0, 'also': 1.0, 'size': 1.0, 'amazing': 1.0, 'perfect': 1.0, 'this': 1.0, 'remove': 1.0, 'it': 3.0, 'only': 1.0, 'hamper': 3.0, 'opening': 1.0, 'room': 2.0, 'super': 1.0, 'each': 1.0, 'is': 4.0, 'go': 1.0, 'a': 4.0, 'mesh': 3.0, 'wooden': 1.0, 'bag': 3.0, 'anywhere': 1.0, 'for': 1.0, 'loops': 1.0, 'brilliant': 1.0, 'built': 1.0, 'clothes': 2.0, 'and': 2.0, 'well': 1.0, 'has': 2.0, 'good': 1.0, 'the': 7.0, 'have': 1.0, 'surround': 1.0, 'not': 1.0, 'satisfied': 1.0, 'peg': 1.0, 'very': 1.0, 'access': 1.0, 'on': 1.0, 'of': 1.0, 'which': 1.0, 'idea': 1.0, 'let': 1.0, 'in': 1.0, 'air': 1.0, 'flow': 1.0, 'four': 1.0, 'but': 1.0}
Word element => {'condition': 1.0, 'and': 1.0, 'box': 1.0, 'an': 1.0, 'perfect': 1.0, 'in': 2.0, 's': 1.0, 'my': 1.0, 'came': 1.0, 'brings': 1.0, 'open': 1.0, 'must': 1.0, 'hamper': 1.0, 'together': 1.0, 'at': 1.0, 'really': 1.0, 'addition': 1.0, 'it': 2.0, 'this': 2.0, 'have': 1.0, 'item': 1.0, 'was': 1.0, 'to': 1.0, 'because': 1.0, 'happi': 1.0, 'price': 1.0, 'baby': 1.0, 'any': 1.0, 'tree': 1.0, 'a': 2.0, 'discounted': 1.0, 'nursery': 2.0, 'themed': 1.0, 'i': 1.0, 'got': 1.0}
Word element => {'tomorrow': 1.0, 'back': 1.0, 'sending': 1.0, 'very': 1.0, 'doesn': 1.0, 'reviews': 1.0, 'understand': 1.0, 'don': 1.0, 'i': 1.0, 'in': 3.0, 'also': 1.0, 'shown': 2.0, 'white': 1.0, 'pic': 1.0, 'are': 1.0, 'hamper': 1.0, 'not': 2.0, 'because': 1.0, 'just': 3.0, 'really': 2.0, 'wood': 3.0, 'painted': 1.0, 'first': 1.0, 'this': 2.0, 'looks': 1.0, 'it': 4.0, 'of': 2.0, 'returning': 1.0, 'something': 1.0, 'their': 1.0, 'is': 3.0, 'more': 1.0, 'for': 1.0, 'cheap': 1.0, 'as': 4.0, 'all': 2.0, 'good': 2.0, 'visible': 1.0, 'fabric': 1.0, 'wide': 1.0, 'but': 2.0, 't': 2.0, 'we': 1.0, 'a': 1.0, 'natural': 1.0, 'the': 6.0, 'ugly': 1.0, 'color': 1.0, 'makes': 1.0, 'look': 2.0, 'frame': 1.0, 'which': 1.0, 'like': 1.0, 'someone': 1.0, 'built': 1.0, 'garage': 1.0, 'leaves': 1.0, 'picture': 1.0, 'narrow': 1.0, 'and': 1.0}
Word element => {'holding': 1.0, 'i': 1.0, 'all': 1.0, 'but': 1.0, 'and': 1.0, 'only': 1.0, 'thats': 1.0, 'seems': 1.0, 'rest': 1.0, 'nursery': 1.0, 'rug': 1.0, 'the': 3.0, 'been': 1.0, 'few': 1.0, 'up': 1.0, 'of': 1.0, 'there': 1.0, 'for': 1.0, 'well': 1.0, 'a': 1.0, 'asked': 1.0, 'months': 1.0, 'matches': 1.0, 'its': 1.0, 'to': 1.0, 'be': 1.0}
Word element => {'much': 1.0, 'too': 1.0, 'small': 1.0, 'came': 1.0, 'it': 2.0, 'poorly': 1.0, 'package': 1.0, 'but': 2.0, 'made': 1.0, 'out': 1.0, 'really': 1.0, 'of': 2.0, 'expect': 1.0, 'no': 1.0, 'cute': 1.0, 'kind': 1.0, 'the': 1.0, 't': 1.0, 'damaged': 1.0, 'i': 1.0, 'to': 1.0, 'had': 1.0, 'energy': 1.0, 'return': 1.0, 'pretty': 1.0, 'don': 1.0}
Word element => {'priced': 1.0, 'slides': 1.0, 'i': 1.0, 'all': 1.0, 'what': 1.0, 'even': 1.0, 'expected': 1.0, 'not': 1.0, 'rug': 1.0, 'is': 2.0, 'over': 1.0, 'on': 1.0, 'cute': 1.0, 'carpet': 1.0, 'the': 1.0, 'with': 1.0, 'it': 3.0, 'to': 1.0, 'be': 1.0, 's': 1.0, 'very': 1.0, 'thin': 1.0, 'at': 1.0, 'no': 1.0, 'but': 1.0, 'backing': 1.0}
Word element => {'pretty': 1.0, 'the': 1.0, 'to': 1.0, 'tend': 1.0, 'kids': 1.0, 'running': 1.0, 'slip': 1.0, 'it': 2.0, 'very': 2.0, 'doesn': 1.0, 'on': 1.0, 'is': 2.0, 'light': 1.0, 'stay': 1.0, 'so': 1.0, 'this': 1.0, 't': 1.0, 'one': 1.0, 'design': 1.0, 'in': 1.0, 'spot': 1.0}
Word element => {'hardwood': 1.0, 'on': 1.0, 'using': 1.0, 'are': 1.0, 'slippery': 1.0, 'looking': 1.0, 'was': 1.0, 'if': 1.0, 'rug': 2.0, 'pretty': 1.0, 'very': 2.0, 'as': 1.0, 'need': 1.0, 'a': 1.0, 'type': 1.0, 'is': 2.0, 'it': 3.0, 'this': 1.0, 'advertised': 1.0, 'some': 1.0, 'of': 1.0, 'nonslip': 1.0, 'be': 1.0, 'you': 2.0, 'but': 1.0, 'advised': 1.0, 'backing': 1.0, 'will': 1.0}
Word element => {'set': 1.0, 'the': 1.0, 'with': 1.0, 'over': 1.0, 'so': 1.0, 'looks': 1.0, 'rug': 1.0, 'all': 1.0, 'but': 2.0, 'have': 1.0, 'it': 1.0, 'stated': 1.0, 'does': 1.0, 'not': 1.0, 'backing': 1.0, 'slides': 1.0, 'cute': 2.0, 'non': 1.0, 'as': 1.0, 'skid': 1.0}
Word element => {'on': 1.0, 'even': 1.0, 'pretty': 1.0, 'as': 1.0, 'for': 1.0, 'guards': 1.0, 'put': 1.0, 'underside': 1.0, 'month': 1.0, 'slides': 1.0, 'finish': 1.0, 'my': 1.0, 'to': 1.0, 'the': 2.0, '2': 1.0, 'out': 1.0, 'carpet': 1.0, 'ordered': 1.0, 'definitely': 1.0, 'it': 2.0, 'this': 1.0, 's': 1.0, 'well': 1.0, 'old': 1.0, 'i': 1.0, 'stay': 1.0, 'nursery': 1.0, 'washes': 1.0, 'getting': 1.0, 'and': 1.0, 'vacuums': 1.0, 'easy': 1.0, 'recommend': 1.0, 'some': 1.0, 'of': 1.0}
Word element => {'decoration': 1.0, 'for': 1.0, 'it': 1.0, 'love': 1.0, 'great': 1.0, 'recommend': 1.0, 'of': 1.0, 'perfect': 1.0, 'liked': 1.0, 'owl': 1.0, 'cute': 1.0, 'soft': 1.0, 'plush': 1.0, 'little': 1.0, 'and': 2.0, 'size': 1.0, 'i': 2.0, 'beautiful': 1.0, 'the': 1.0}
Word element => {'a': 1.0, 'was': 1.0, 'but': 1.0, 'cute': 1.0, 'already': 1.0, 'cheaply': 1.0, 'we': 1.0, 'daughters': 1.0, 'has': 1.0, 'big': 1.0, 'girl': 1.0, 'bought': 1.0, 'hole': 1.0, 'made': 1.0, 'my': 1.0, 'this': 1.0, 'bedroom': 1.0, 'in': 1.0, 'for': 1.0, 'it': 3.0, 'looks': 1.0}
Word element => {'chairs': 1.0, 'at': 1.0, 'loves': 1.0, 'constructed': 1.0, 'well': 1.0, 's': 1.0, 'sitting': 1.0, 'a': 1.0, 'my': 1.0, 'the': 1.0, 'it': 2.0, 'great': 1.0, 'table': 1.0, 'and': 3.0, 'daughter': 1.0, 'design': 1.0, 'seems': 1.0, 'so': 1.0, 'her': 1.0, 'cute': 1.0, 'with': 1.0, 'pillow': 1.0}
Word element => {'she': 1.0, 'put': 1.0, 'will': 1.0, 'but': 1.0, 'shelf': 1.0, 'her': 2.0, 'my': 1.0, 'now': 1.0, 'on': 2.0, 'well': 1.0, 's': 2.0, 'older': 1.0, 'with': 1.0, 'it': 3.0, 'goes': 1.0, 'when': 1.0, 'described': 1.0, 'as': 1.0, 'just': 1.0, 'have': 1.0, 'baby': 1.0, 'is': 1.0, 'really': 1.0, 'owl': 1.0, 'bed': 1.0, 'tree': 1.0, 'i': 1.0, 'themed': 1.0, 'nursery': 1.0, 'item': 1.0, 'animal': 1.0, 'right': 1.0}
Word element => {'daughter': 1.0, 'cribs': 1.0, 'wish': 1.0, 'in': 1.0, 'cute': 1.0, 'i': 1.0, 'it': 1.0, 'sizes': 1.0, 'very': 1.0, 'and': 1.0, 'pillow': 1.0, 'my': 1.0, 'the': 1.0, 'size': 1.0, 'loves': 1.0, 'good': 1.0, 'for': 1.0, 'bed': 1.0, 'not': 1.0, 'just': 2.0, 'happi': 1.0, 'bedding': 1.0, 'came': 1.0, 'larger': 1.0, 'normal': 1.0}
Word element => {'purchase': 1.0, 'would': 1.0, 'thought': 1.0, 'i': 2.0, 'cuddly': 1.0, 'but': 1.0, 'toddler': 1.0, 'or': 1.0, 'baby': 1.0, 'am': 1.0, 'plaything': 1.0, 'statement': 1.0, 'of': 1.0, 'makes': 1.0, 'soft': 1.0, 'large': 1.0, 'so': 1.0, 'for': 2.0, 'tree': 1.0, 'more': 1.0, 'the': 1.0, 'happy': 1.0, 'my': 2.0, 'decor': 2.0, 'made': 1.0, 'room': 1.0, 'is': 3.0, 'be': 1.0, 'pillow': 1.0, 'than': 1.0, 'go': 1.0, 'not': 1.0, 'because': 1.0, 'happi': 1.0, 'to': 1.0, 'granddaughter': 1.0, 's': 1.0, 'a': 4.0, 'well': 1.0, 'with': 2.0, 'this': 1.0, 'it': 5.0, 'as': 2.0, 'very': 2.0, 'and': 2.0, 'ordered': 1.0, 'cute': 1.0}
Word element => {'cuddly': 1.0, 'soft': 1.0, 'toddler': 1.0, 'enough': 1.0, 'plenty': 1.0, 'size': 1.0, 'sleeps': 1.0, 'and': 3.0, 'very': 1.0, 'big': 1.0, 'year': 1.0, 'these': 1.0, 'of': 1.0, 'has': 1.0, 'another': 1.0, 'is': 1.0, 'want': 1.0, 'a': 3.0, 'night': 1.0, 'i': 2.0, 'buy': 1.0, 'much': 1.0, 'because': 1.0, 'she': 1.0, 'like': 1.0, 'every': 1.0, 'feel': 1.0, 'my': 1.0, 'daughter': 1.0, 'to': 1.0, 'had': 1.0, 'one': 1.0, 'for': 2.0, 'good': 1.0, 'loves': 1.0, 'so': 1.0, 'with': 1.0, 'this': 1.0, 'it': 3.0}
Word element => {'happy': 1.0, 'she': 1.0, 'and': 1.0, 'we': 2.0, 'loves': 1.0, 'this': 1.0, 'matches': 1.0, 'room': 1.0, 'pillow': 1.0, 'my': 1.0, 'dena': 1.0, 'daughter': 1.0, 'also': 1.0, 's': 1.0, 'tree': 1.0, 'decor': 1.0, 'line': 1.0, 'it': 1.0, 'love': 2.0, 'perfectly': 1.0}
Word element => {'daughter': 1.0, 'my': 1.0, 'good': 1.0, 'a': 1.0, 'this': 1.0, 'pink': 1.0, 'and': 1.0, 'owl': 1.0, 'cute': 1.0, 'soft': 1.0, 'size': 1.0, 'so': 2.0, 'love': 1.0, 'it': 2.0, 'pillow': 1.0, 'is': 2.0, 'with': 1.0}
Word element => {'in': 1.0, 'for': 1.0, 'the': 1.0, 'support': 1.0, 'nursery': 1.0, 'back': 1.0, 'a': 1.0, 'we': 1.0, 'makes': 1.0, 'love': 1.0, 'things': 1.0, 'pillow': 1.0, 'is': 1.0, 'all': 1.0, 'glider': 1.0, 'owlie': 1.0, 'this': 1.0, 'cute': 1.0, 'soft': 1.0, 'and': 1.0, 'our': 1.0, 'pretty': 1.0}
Word element => {'get': 1.0, 'had': 1.0, 'loved': 1.0, 'he': 2.0, 'picked': 1.0, 'husband': 1.0, 'gift': 1.0, 'was': 1.0, 'baby': 1.0, 'wings': 1.0, 'crinkly': 1.0, 'material': 1.0, 'of': 1.0, 'enjoyment': 1.0, 'having': 1.0, 'see': 1.0, 'so': 1.0, 'time': 1.0, 'with': 2.0, 'soft': 1.0, 'this': 2.0, 'it': 4.0, 'pillows': 1.0, 'mean': 1.0, 'there': 1.0, 'fun': 1.0, 'much': 2.0, 'two': 1.0, 'i': 3.0, 'have': 2.0, 'girl': 1.0, 'due': 1.0, 'toys': 1.0, 'road': 1.0, 'girls': 2.0, 'know': 1.0, 'very': 2.0, 'and': 3.0, 'newborn': 1.0, 'out': 2.0, 'couple': 1.0, 'weeks': 1.0, 'can': 1.0, 'blankets': 1.0, 'but': 1.0, 'the': 4.0, 'in': 4.0, 'will': 1.0, 'also': 1.0, 'my': 1.0, 'another': 1.0, 'a': 7.0, 'pillow': 2.0, 'be': 2.0, 'hit': 1.0, 'is': 1.0, 'size': 2.0, 'large': 1.0, 'enough': 1.0, 'our': 1.0, 'as': 4.0, 'to': 3.0, 'special': 1.0, 'used': 1.0, 'trips': 1.0, 'bed': 1.0, 'actually': 1.0, 'for': 3.0, 'her': 2.0, 'good': 1.0, 'nice': 1.0, 'great': 2.0, 'bring': 1.0, 'car': 1.0}
Word element => {'person': 1.0, 'in': 1.0, 'cuter': 1.0, 'on': 1.0, 'like': 1.0, 'would': 1.0, 'i': 1.0, 'soft': 1.0, 'sooooooo': 1.0, 's': 1.0, 'not': 1.0, 'granddaughter': 1.0, 'to': 2.0, 'for': 2.0, 'her': 1.0, 'momma': 1.0, 'birthday': 1.0, 'she': 1.0, 'it': 1.0, 'first': 1.0, 'this': 1.0, 'sleep': 1.0, 'fat': 1.0, 'my': 1.0, 'the': 1.0, 'fabric': 1.0, 'is': 2.0, 'bought': 1.0, 'pillow': 1.0, 'a': 1.0, 'ready': 1.0, 'but': 1.0, 'says': 1.0, '34': 2.0}
Word element => {'is': 1.0, 'pillow': 2.0, 'owl': 1.0, 'great': 1.0, 'love': 1.0, 'nursery': 1.0, 'the': 3.0, 'to': 1.0, 'i': 1.0, 'beautiful': 1.0, 'soft': 1.0, 'wonderful': 1.0, 'perfect': 1.0, 'a': 2.0, 'design': 1.0, 'for': 1.0, 'look': 1.0, 'and': 1.0, 'baby': 1.0, 'will': 1.0}
Word element => {'as': 1.0, 'bags': 1.0, 'pencil': 1.0, 'them': 1.0, 'bigger': 1.0, 'were': 1.0, 'their': 1.0, 'would': 1.0, 'something': 1.0, 'well': 2.0, 'a': 3.0, 'marker': 1.0, 'made': 1.0, 'my': 2.0, 'bought': 1.0, 'travel': 1.0, 'case': 1.0, '2': 1.0, 'these': 1.0, 'more': 1.0, 'great': 1.0, '1': 1.0, 'and': 3.0, 'of': 1.0, 'there': 1.0, 'cute': 1.0, 'they': 2.0, 'body': 1.0, 'wash': 1.0, 'though': 1.0, 'bit': 1.0, 'room': 1.0, 'design': 1.0, 'boys': 1.0, 'i': 2.0, 'toiletries': 1.0, 'very': 1.0, 'for': 3.0, 'fit': 1.0, 'size': 1.0, 'shampoo': 1.0, 'in': 2.0, 'lotion': 1.0, 'loose': 1.0, 'band': 1.0, 'make': 1.0, 'aids': 1.0, 'wish': 1.0, 'kids': 1.0, 'few': 1.0, 'just': 1.0, 'tad': 1.0, 'was': 1.0, 'small': 1.0, 'loved': 1.0}
Word element => {'am': 1.0, 'want': 1.0, 'hang': 2.0, 'to': 2.0, 'grand': 1.0, 'on': 1.0, 'son': 1.0, 'for': 2.0, 'disappointed': 1.0, 'in': 1.0, 'this': 1.0, 'working': 1.0, 'my': 1.0, 'the': 1.0, 'are': 1.0, 'bought': 1.0, 'i': 2.0, 'car': 1.0, 'face': 1.0, 'toys': 1.0, 'what': 1.0, 'his': 2.0, 'long': 1.0, 'and': 2.0, 'they': 1.0, 'seat': 1.0, 'not': 1.0}
Word element => {'size': 1.0, 'month': 1.0, 'no': 1.0, '10': 1.0, 'nearly': 1.0, 'only': 1.0, '6': 2.0, '0': 1.0, 'old': 1.0, 'brand': 1.0, 'few': 1.0, 'just': 1.0, 'by': 1.0, 'tolerated': 1.0, 'it': 1.0, 'have': 1.0, 'something': 1.0, 'mouth': 2.0, 'because': 1.0, 'her': 4.0, 'in': 5.0, 'not': 1.0, 'shape': 1.0, 'dark': 1.0, 'as': 2.0, 'to': 2.0, 'still': 1.0, 'stay': 2.0, 'every': 2.0, 'about': 1.0, 'started': 1.0, 'has': 1.0, 'them': 2.0, 'night': 3.0, 'known': 1.0, 'from': 1.0, 'give': 1.0, 'there': 1.0, 'she': 5.0, 'baby': 3.0, 'others': 1.0, 'once': 1.0, 'these': 4.0, 'some': 1.0, 'never': 1.0, 'glowing': 1.0, '2': 2.0, 'but': 3.0, 'can': 1.0, 'of': 7.0, 'the': 7.0, 'then': 1.0, 'we': 1.0, 'a': 2.0, 'was': 3.0, 'find': 1.0, 'eastern': 1.0, 'would': 1.0, 'weeks': 1.0, 'put': 1.0, '3': 1.0, 'other': 1.0, 'helped': 1.0, 'single': 1.0, 'where': 2.0, '4': 1.0, 'did': 1.0, 'went': 1.0, 'interest': 1.0, 'bed': 1.0, 'puppies': 1.0, 'morning': 1.0, 'turned': 1.0, 'uses': 1.0, 'usa': 1.0, 'time': 1.0, 'magical': 1.0, 'months': 3.0, 's': 1.0, 'glow': 1.0, 'more': 1.0, 'marked': 1.0, '7': 1.0, 'paci': 2.0, 'ordered': 1.0, 'one': 2.0, 'ones': 1.0, 'part': 1.0, 'during': 1.0, 'well': 1.0, 'i': 2.0, 'putting': 1.0, 'be': 1.0, 'crib': 1.0, 'when': 2.0, 'what': 1.0, '12': 1.0, 'gets': 1.0, 'hours': 1.0, 'they': 2.0, 'sleeping': 1.0, 'with': 1.0, 'oh': 1.0, 'is': 2.0, 'at': 2.0, 'yeah': 1.0, 'note': 1.0, 'me': 1.0, 'may': 1.0}
Word element => {}
Word element => {'life': 1.0, 'great': 3.0, 'battery': 1.0, 'about': 1.0, 'is': 3.0, 'say': 1.0, 'bad': 1.0, 'nothing': 1.0, 'have': 1.0, 'ft': 1.0, 'sound': 1.0, 'up': 1.0, 'from': 1.0, 'will': 1.0, 'each': 1.0, 'position': 1.0, 'set': 1.0, 'room': 1.0, 'dark': 1.0, 'case': 1.0, 'my': 2.0, 'daytime': 1.0, 'or': 2.0, 'night': 1.0, 'them': 2.0, 'baby': 1.0, 'am': 1.0, 'the': 6.0, 'reviews': 1.0, 'paid': 1.0, 'and': 3.0, 'so': 1.0, '150': 1.0, 'it': 3.0, 'see': 1.0, 'unit': 1.0, 'not': 2.0, 'camera': 1.0, 'in': 2.0, 'itself': 1.0, 'off': 1.0, 'knowing': 1.0, 'what': 1.0, 'works': 1.0, 'monitor': 5.0, 'functionality': 1.0, 'less': 1.0, 'any': 1.0, 'all': 1.0, 'to': 5.0, 'was': 1.0, 'i': 9.0, 'expect': 2.0, 'of': 4.0, 'monitors': 1.0, 'glad': 1.0, 'receiver': 1.0, 'did': 1.0, '600': 1.0, 'better': 2.0, 'bought': 1.0, 'one': 1.0, 'love': 1.0, 'for': 1.0, 'picture': 1.0, 'even': 1.0, 'didn': 1.0, 't': 1.0, 'a': 5.0, 'at': 2.0, 'lot': 2.0, 'find': 1.0, 'having': 1.0, 'because': 2.0, 'than': 2.0, 'other': 2.0, 'this': 4.0, 'eyes': 1.0, 'distance': 1.0, 'can': 1.0, 'puppies': 1.0, 'but': 1.0, 'never': 1.0, 'take': 1.0, 'on': 1.0, 'your': 2.0}
Word element => {'sensitivity': 1.0, 'adjust': 1.0, 'button': 1.0, 't': 1.0, 'doesn': 1.0, 'just': 1.0, 'money': 1.0, 'decent': 1.0, 'no': 1.0, 'me': 2.0, 'hour': 1.0, 'will': 3.0, 'lasts': 1.0, 'outage': 1.0, 'hours': 1.0, 'ordering': 1.0, 'run': 1.0, 'power': 1.0, 'does': 5.0, 'camera': 3.0, 'in': 3.0, 'turn': 1.0, 'has': 3.0, '1': 1.0, 'be': 2.0, 'returning': 1.0, 'leaves': 1.0, 'answer': 1.0, '6': 1.0, 'amazon': 1.0, 'tons': 1.0, 'prior': 1.0, 'case': 1.0, '4': 1.0, 'well': 1.0, 'i': 3.0, 'auto': 1.0, 'answered': 1.0, 'ad': 1.0, 'have': 4.0, '2': 1.0, 'of': 1.0, 'the': 8.0, 'questions': 1.0, 'upon': 1.0, 'handset': 1.0, 'on': 2.0, 'an': 3.0, 'all': 1.0, 'to': 6.0, 'had': 1.0, 'arrival': 1.0, 'first': 2.0, 'this': 2.0, 'rechargeable': 2.0, 'only': 2.0, 'its': 2.0, 'automatic': 1.0, 'right': 1.0, 'baby': 1.0, 'vision4': 1.0, '10': 1.0, 'for': 6.0, 'not': 7.0, 'as': 1.0, 'zoom': 1.0, 'or': 6.0, 'out': 1.0, 'pan': 1.0, 'left': 1.0, 'up': 1.0, 'sound': 3.0, 'down': 1.0, '8': 1.0, '5': 1.0, 'so': 1.0, 'sensitive': 3.0, 'wonder': 1.0, 'recording': 1.0, 'slot': 1.0, 'personally': 1.0, 'mute': 1.0, 'sd': 1.0, 'a': 7.0, 'card': 1.0, 'monitor': 1.0, 'mounting': 1.0, 'very': 1.0, 'tempature7': 1.0, 'light': 1.0, 'about': 2.0, 'play': 1.0, 'and': 2.0, '3': 1.0, 'lullabies': 1.0, 'option': 1.0, 'off': 1.0, 'crying': 1.0, 'enough': 2.0, 'hardware': 1.0, 'it': 9.0, '9': 1.0, 'coughing': 1.0, 'is': 4.0, 'room': 1.0, 'comes': 1.0, 'when': 1.0, 'battery': 3.0, 'really': 1.0, 'night': 2.0, 'loud': 1.0, 'quite': 1.0}
Word element => {'head': 1.0, 'baby': 1.0, 'with': 1.0, 'though': 1.0, 'still': 1.0, 'so': 1.0, 'tape': 1.0, 'good': 1.0, 'wipes': 2.0, 'keep': 1.0, 'returns': 1.0, 'received': 1.0, 'can': 1.0, 'but': 2.0, 'repeated': 1.0, 'off': 1.0, 'toe': 1.0, 'almost': 1.0, 'whenever': 1.0, 'i': 7.0, 'labels': 1.0, 'doing': 2.0, 'this': 1.0, 'it': 5.0, 'wouldn': 1.0, 'to': 3.0, 'wanted': 1.0, 'tub': 3.0, 'and': 4.0, 'from': 1.0, 'peeled': 1.0, 'broken': 2.0, 'the': 6.0, 'are': 2.0, 'my': 2.0, 'form': 1.0, 'here': 1.0, 'then': 1.0, 'through': 1.0, 'online': 1.0, 'both': 1.0, 'ugh': 1.0, 'there': 1.0, 'return': 1.0, 'always': 2.0, 'were': 1.0, 'tried': 1.0, 'laptop': 1.0, 'problem': 1.0, 'a': 1.0, 's': 1.0, 't': 1.0, 'go': 1.0, 'several': 1.0, 'times': 1.0, 'on': 1.0, 'use': 2.0, 'phone': 1.0, 'item': 1.0, 'failed': 1.0, 'decided': 1.0, 'just': 1.0}
Word element => {'spit': 1.0, 'works': 1.0, 'up': 2.0, 'clean': 1.0, 'quick': 1.0, 'like': 1.0, 'in': 2.0, 'my': 1.0, 'lid': 1.0, 'keeps': 1.0, 'other': 1.0, 'bottom': 1.0, 'recommend': 1.0, 'rolls': 1.0, 'have': 1.0, 'face': 1.0, 'gentle': 2.0, 'well': 1.0, 'closed': 1.0, 'and': 2.0, 'to': 2.0, 'all': 1.0, 'as': 1.0, 'although': 1.0, 'are': 3.0, 'hands': 1.0, 'the': 6.0, 'some': 1.0, 'these': 2.0, 'great': 2.0, 's': 1.0, 'we': 1.0, 'a': 2.0, 't': 1.0, 'bath': 1.0, 'on': 4.0, 'for': 2.0, 'expensive': 1.0, 'enough': 1.0, 'side': 1.0, 'is': 2.0, 'tact': 1.0, 'i': 3.0, 'packaging': 1.0, 'would': 1.0, 'they': 4.0, 'purpose': 1.0, 'dry': 1.0, 'isn': 1.0, 'sealed': 1.0, 'smell': 1.0, 'son': 1.0, 'gets': 1.0, 'still': 1.0, 'seem': 1.0, 'out': 1.0, 'tab': 1.0, 'tub': 1.0, 'if': 2.0, 'better': 1.0, 'that': 2.0, 'box': 1.0, 'neck': 1.0, 'or': 2.0, 'use': 1.0, 'travel': 1.0, 'wipe': 1.0, 'baby': 1.0, 'quality': 1.0, 'brands': 1.0, 'than': 1.0, 'road': 1.0, 'seen': 1.0}
Word element => {'wouldn': 1.0, 'love': 1.0, 'safety': 1.0, 'justified': 2.0, 'price': 3.0, 'debated': 1.0, 'd': 1.0, 'realized': 1.0, 'had': 1.0, 'have': 2.0, 'not': 1.0, 'would': 1.0, 'a': 4.0, 's': 2.0, 'breath': 1.0, 't': 5.0, 'there': 1.0, 'in': 2.0, 'breathing': 2.0, 'through': 1.0, 'whether': 1.0, 'sids': 1.0, 'live': 1.0, 'bed': 2.0, 'supposed': 1.0, 'that': 6.0, 'advocated': 1.0, 'saying': 1.0, 'primarily': 1.0, 'put': 1.0, 'do': 2.0, 'be': 2.0, 'just': 1.0, 'why': 1.0, 'as': 2.0, 'to': 5.0, 'but': 1.0, 'can': 2.0, 'firm': 2.0, 'removable': 1.0, 'advantage': 1.0, 'amazingly': 1.0, 'quality': 1.0, 'and': 4.0, 'wonderful': 1.0, 'use': 3.0, 'it': 4.0, 'this': 6.0, 'mattress': 4.0, 'nicely': 1.0, 'are': 3.0, 'cover': 2.0, 'pad': 2.0, 'is': 3.0, 'at': 1.0, 'could': 1.0, 'encasements': 1.0, 'purchased': 1.0, 'inch': 1.0, 'probably': 1.0, 'any': 1.0, 'feel': 1.0, 'spend': 1.0, 'great': 1.0, 'dollar': 1.0, 'tried': 1.0, 'able': 1.0, 'you': 7.0, 'things': 1.0, 'i': 11.0, 'pebbles': 1.0, 'bug': 3.0, 'scare': 1.0, 'crib': 1.0, 'over': 1.0, 'don': 2.0, 'my': 1.0, 'for': 3.0, 'building': 1.0, 'mattresses': 2.0, 'insect': 1.0, 'still': 1.0, 'covering': 1.0, 'every': 1.0, 'if': 3.0, 'nyc': 1.0, 'want': 2.0, 'sure': 1.0, 'the': 9.0, 'of': 2.0, 'including': 1.0, 'about': 2.0, 'basic': 1.0, 'breathability': 2.0, 'bought': 1.0, 'money': 1.0, 'waterproof': 2.0, 'extra': 1.0, 'many': 2.0, 'people': 1.0, 'realize': 1.0, 'on': 2.0, 'think': 1.0, 'gets': 1.0, 'way': 1.0, 'before': 1.0, 'won': 1.0, 'all': 2.0, 'an': 1.0, 'by': 1.0, 'encasement': 1.0, 'protective': 1.0, 'or': 2.0, 'need': 1.0, 'those': 1.0, 'care': 1.0, 'kind': 1.0, 'overall': 1.0}
Word element => {'crib': 1.0, 'aden': 1.0, 'also': 1.0, '34': 2.0, 'keep': 1.0, 'sleep': 1.0, 'be': 1.0, 'to': 2.0, 'for': 1.0, 'theme': 1.0, 'worth': 1.0, 'well': 2.0, 'but': 1.0, 'covers': 1.0, 'all': 1.0, 'mattresses': 1.0, 'vs': 1.0, 'mattress': 1.0, 'my': 1.0, 'happy': 1.0, 'purchased': 2.0, 'breathable': 2.0, 'pricey': 1.0, 'son': 1.0, 'very': 1.0, 'the': 6.0, 'are': 1.0, 'on': 1.0, 'along': 1.0, 'other': 1.0, 'we': 3.0, 'pure': 1.0, 'is': 1.0, 'comfy': 1.0, 'market': 1.0, 'with': 2.0, 'this': 1.0, 'it': 1.0, 'sheets': 1.0, 's': 1.0, 'super': 1.0, 'soft': 1.0, 'anais': 1.0, 'money': 1.0, 'pebble': 1.0}
Word element => {'looks': 1.0, 'already': 1.0, 'new': 1.0, 'washed': 1.0, 'the': 1.0, 'is': 2.0, 'cover': 1.0, 'of': 1.0, 'have': 1.0, 'this': 1.0, 'pad': 1.0, 'perfect': 1.0, 'just': 1.0, 'i': 1.0, 'hydrophobic': 1.0, 'like': 1.0, 'and': 2.0, 'changing': 1.0, 'it': 3.0}
Word element => {'longer': 1.0, 'best': 1.0, 'somewhat': 1.0, 'used': 1.0, 'supply': 1.0, 'helped': 1.0, 'for': 1.0, 'my': 1.0, 'the': 1.0, 'tasting': 1.0, 'good': 1.0, 'believe': 1.0, 'price': 1.0, 'when': 1.0, 'i': 2.0, 'prompt': 1.0, 'it': 2.0, 'nice': 1.0, 'steeped': 1.0, 'service': 1.0}
Word element => {'day': 1.0, 'take': 1.0, 'only': 1.0, 'i': 1.0, 'a': 2.0, 'the': 1.0, 'it': 3.0, 'great': 2.0, 'once': 1.0, 'product': 1.0, 'worked': 1.0, 'hours': 1.0, 'within': 1.0, 'results': 1.0, 'with': 1.0, 'is': 1.0, 'next': 1.0, 'few': 1.0}
Word element => {'complement': 1.0, 'i': 2.0, 'a': 1.0, 'the': 3.0, 'my': 2.0, 'love': 1.0, 'for': 1.0, 'ride': 1.0, 'way': 1.0, 'enjoy': 1.0, 'will': 1.0, 'm': 1.0, 'daughter': 1.0, 'too': 1.0, 'by': 1.0, 'and': 1.0, 'older': 1.0, 'this': 1.0, 'fan': 1.0, 'is': 1.0, 'perfect': 1.0, 'donkey': 1.0, 'bugaboo': 1.0, 'wich': 1.0}
Word element => {'shameful': 1.0, 'in': 1.0, 'donkey': 1.0, 'buy': 1.0, 'pricing': 1.0, 'waste': 1.0, 'used': 1.0, 'never': 1.0, 'bassinetr': 1.0, 'then': 1.0, 'size': 1.0, 'right': 1.0, 'make': 1.0, 'choose': 1.0, 'they': 2.0, 'frame': 2.0, 'now': 1.0, 'metal': 1.0, 'bundles': 1.0, 'of': 2.0, 'without': 1.0, 'basically': 1.0, 'the': 12.0, 'bb': 1.0, 'cost': 1.0, 'for': 5.0, 'reasons': 1.0, 'one': 1.0, 'simplicity': 1.0, 'uses': 1.0, 'let': 1.0, 'or': 1.0, 'ridiculous': 1.0, 'know': 2.0, 'espouse': 1.0, 'transform': 1.0, 'dont': 1.0, 'this': 1.0, 'same': 1.0, 'kind': 1.0, 'bassinet': 4.0, 'either': 1.0, 'is': 3.0, 'course': 1.0, 'but': 1.0, 'change': 1.0, 'it': 2.0, 'useless': 1.0, 'do': 1.0, 'stroller': 1.0, 'not': 2.0, 'bit': 1.0, 'logical': 1.0, 'so': 1.0, 'way': 1.0, 'you': 3.0, 'configuration': 1.0, 'that': 1.0, 'into': 1.0, 'totally': 1.0, 'and': 4.0, 'too': 1.0, 'long': 1.0, 'wide': 1.0, 'any': 1.0, 'to': 3.0, 'seat': 3.0, 'all': 1.0, 'fabric': 1.0, 'bassinets': 1.0, 'enough': 1.0, 'innaproporiate': 1.0, 's': 1.0, 'a': 2.0, 'since': 2.0, 'proper': 1.0}
Word element => {'perfect': 1.0, 'still': 2.0, 'often': 1.0, 'for': 1.0, 'on': 1.0, 'looks': 1.0, 'is': 1.0, 'little': 1.0, 'she': 2.0, 'every': 1.0, 'our': 1.0, 'rattle': 1.0, 'bought': 1.0, 'it': 1.0, 'sale': 1.0, 'first': 1.0, 'with': 1.0, 'this': 1.0, 'christmas': 1.0, 'set': 1.0, 'we': 1.0, 'plays': 1.0, 'and': 2.0, 'ones': 1.0, '2': 1.0, 'the': 1.0, 'so': 1.0}
Word element => {'satisfied': 1.0, '100': 1.0, 'no': 1.0, 'arrived': 1.0, 'days': 1.0, 'few': 1.0, 'just': 1.0, 'grand': 1.0, 'new': 1.0, 'for': 2.0, 'baby': 2.0, 'shipped': 1.0, 'our': 1.0, 'rattle': 1.0, 'stocking': 1.0, 'nice': 1.0, 'very': 1.0, 'comes': 1.0, 'and': 2.0, 'a': 4.0, 'is': 2.0, 'with': 2.0, 'this': 1.0, 'it': 1.0, 'defects': 1.0, 'detached': 1.0, 'reindeer': 1.0, 'size': 1.0, 'the': 1.0, 'tact': 1.0, 'in': 2.0, 'perfect': 1.0, 'newborn': 1.0}
Word element => {'fast': 1.0, 'shipped': 1.0, '7': 1.0, 'can': 1.0, 'yes': 1.0, '45': 1.0, 'ones': 1.0, 'carriers': 1.0, 'other': 1.0, 'unlike': 1.0, 'comfortable': 1.0, 'this': 3.0, 'distribution': 1.0, 'zoo': 1.0, 'at': 2.0, 'out': 1.0, 'newborn': 1.0, 'couple': 1.0, 'love': 1.0, 'expensive': 1.0, 'for': 1.0, 'carrier': 1.0, 'back': 1.0, 'hubbys': 1.0, 'oh': 1.0, 'rode': 1.0, 'weight': 1.0, 'yr': 1.0, 'on': 1.0, '3': 1.0, 'to': 1.0, 'waist': 1.0, 'all': 1.0, 'roles': 1.0, 'makes': 1.0, 'old': 2.0, 'not': 1.0, 'just': 1.0, 're': 1.0, 'straps': 1.0, 'is': 3.0, 'beautiful': 1.0, 'snaps': 1.0, 'nicely': 1.0, 'are': 1.0, 'they': 1.0, 'pocket': 1.0, 'accomodate': 1.0, 'up': 2.0, 'of': 2.0, 'quality': 1.0, 'sleeping': 1.0, 'the': 8.0, 'hanging': 1.0, '3g': 1.0, 'colors': 1.0, 'hood': 1.0, 'amazing': 1.0, 'role': 1.0, 'time': 1.0, 'so': 4.0, 'detatchable': 1.0, 'and': 5.0, 'zippered': 1.0, 'month': 1.0, 'it': 5.0, 'hrs': 1.0, 'tucks': 1.0, 'lb': 1.0, '8': 1.0, 'excess': 1.0, 'in': 2.0, 'boba': 1.0, 'also': 2.0, 'one': 1.0, 'whatever': 1.0, 'pockets': 1.0, 'theres': 1.0, 'a': 4.0, 'that': 1.0, 'my': 3.0, 'fits': 1.0, 'lbs': 2.0, 'cell': 1.0, 'phone': 1.0, 'keys': 1.0, 'seller': 1.0, 'or': 1.0, '18': 1.0}
Word element => {'was': 1.0, 'easy': 1.0, 'returning': 1.0, 'neutral': 1.0, 'cute': 1.0, 'also': 2.0, 'for': 4.0, '34': 1.0, 'ton': 1.0, 'like': 4.0, 'reading': 1.0, 'comfortably': 1.0, 'super': 1.0, 'ergo': 1.0, 'be': 1.0, 'get': 1.0, 'couldn': 1.0, 'beco': 1.0, 'm': 1.0, 'in': 1.0, 'stars': 2.0, 'wanted': 1.0, 'to': 5.0, 'all': 1.0, 'really': 1.0, 'backpack': 1.0, 'material': 1.0, 'others': 1.0, 'many': 1.0, 'fan': 1.0, 'print': 2.0, 'but': 1.0, 'mei': 1.0, '2': 1.0, 'which': 1.0, 'good': 1.0, 'a': 6.0, 'fit': 1.0, 't': 3.0, 'giving': 1.0, 's': 1.0, 'could': 1.0, 'this': 1.0, 'it': 7.0, 'just': 1.0, 'why': 1.0, 'carriers': 1.0, 'infant': 1.0, 'from': 1.0, 'reviews': 1.0, 'after': 1.0, 'everything': 1.0, 'of': 4.0, 'the': 6.0, 'had': 1.0, 'am': 1.0, 'tei': 1.0, 'product': 2.0, 'toddler': 1.0, 'black': 1.0, 'kangaroo': 2.0, 'me': 1.0, 'my': 1.0, 'hold': 1.0, 'attracts': 1.0, 'as': 2.0, 'crazy': 1.0, 'lint': 1.0, 'didn': 1.0, 'that': 4.0, 'is': 3.0, 'at': 1.0, 'future': 1.0, 'lot': 1.0, 'isn': 1.0, 'bought': 1.0, 'help': 1.0, 'purchased': 1.0, 'red': 1.0, 'quality': 1.0, 'adjusting': 1.0, '5': 2.0, 'eye': 1.0, 'gender': 1.0, 'padding': 1.0, 'on': 2.0, 'amount': 1.0, 'flight': 1.0, 'and': 3.0, 'her': 1.0, 'use': 1.0, 'front': 1.0, 'liked': 2.0, 'biggest': 1.0, 'options': 1.0, 'straps': 2.0, '3': 1.0, 'older': 1.0, 'children': 1.0, 'well': 1.0, 'i': 9.0, 'feet': 1.0, 'used': 1.0, 'or': 1.0}
Word element => {'back': 1.0, 'carrier': 1.0, 'times': 1.0, 'her': 1.0, 'squishing': 1.0, 'like': 1.0, 'feeling': 1.0, 'the': 2.0, 'more': 1.0, 'able': 1.0, 'did': 1.0, 'stronger': 1.0, 'and': 2.0, 'use': 3.0, 'easy': 1.0, 'be': 1.0, 'll': 1.0, 'product': 1.0, 'without': 1.0, 'wonderful': 1.0, 'shoulders': 1.0, 'older': 1.0, 'it': 4.0, 'this': 1.0, 'a': 1.0, 'very': 3.0, 'as': 1.0, 'busted': 1.0, 'is': 3.0, 'was': 1.0, 'to': 2.0, 'hoping': 1.0, 'however': 1.0, 'not': 1.0, 'made': 1.0, 'my': 2.0, 'comfortable': 1.0, 'for': 1.0, 'm': 1.0, 'gets': 1.0, 'daughter': 1.0, 'large': 1.0, 'on': 1.0, 'women': 1.0, 'i': 4.0, 'am': 1.0}
Word element => {'made': 1.0, 'well': 1.0, 'pounds': 1.0, '40': 1.0, 'to': 1.0, 'daughter': 1.0, 'my': 1.0, 'infants': 1.0, 'the': 1.0, 'researched': 1.0, 'baby': 1.0, 'carriers': 1.0, 'all': 1.0, 'i': 3.0, 'and': 1.0, 'new': 1.0, 'for': 1.0, 'love': 1.0, 'this': 1.0, 'it': 1.0, 'can': 1.0, 'that': 1.0, 'bought': 1.0, 'be': 1.0, 'before': 1.0, 'his': 1.0, 'used': 1.0, 'very': 1.0, 'son': 1.0, 'from': 1.0}
Word element => {'great': 1.0, 's': 1.0, 'durable': 1.0, 'from': 1.0, 'constructed': 1.0, 'liked': 1.0, 'unlike': 1.0, 'overall': 1.0, 'insert': 1.0, 'lastly': 1.0, 'as': 1.0, 'use': 1.0, 'her': 1.0, 'supported': 1.0, 'next': 1.0, 'has': 2.0, 'secure': 1.0, 'down': 1.0, 'adjusts': 1.0, 'any': 1.0, 'evenly': 1.0, 'wearing': 1.0, 'experience': 1.0, 'comfortable': 1.0, 'both': 1.0, 'were': 1.0, 'weight': 2.0, 'have': 1.0, 'still': 1.0, 'up': 1.0, '7': 1.0, '5': 1.0, 'am': 1.0, 'adjustable': 1.0, '4': 1.0, '6': 1.0, 'perfectly': 1.0, 'husband': 2.0, 'put': 1.0, 'slides': 1.0, 'be': 1.0, 'easy': 1.0, 'found': 1.0, 'hip': 2.0, 'with': 1.0, 'back': 2.0, 'carrier': 3.0, 'carry': 2.0, 'distributes': 1.0, 'slender': 1.0, 'on': 3.0, 'grows': 1.0, 'detachable': 2.0, 'we': 1.0, 'difference': 1.0, 'would': 1.0, 'deep': 1.0, 'easily': 1.0, 'because': 1.0, 'that': 7.0, 'certain': 1.0, 'trial': 2.0, 'lose': 1.0, 'and': 11.0, 'will': 1.0, 'discover': 1.0, 'did': 1.0, 'pain': 1.0, 'rent': 1.0, 'felt': 2.0, 'super': 1.0, 'ergo': 6.0, 'where': 1.0, 'love': 3.0, 'model': 1.0, 'quality': 1.0, 'lucky': 1.0, 'saying': 1.0, 'hood': 3.0, 'top': 1.0, 'cutest': 1.0, 'place': 1.0, '3g': 1.0, 'of': 1.0, 'vent': 2.0, 'the': 26.0, 'enough': 1.0, 'boba': 7.0, 'without': 1.0, 'soft': 1.0, 'rubbed': 1.0, 'also': 4.0, 'specific': 1.0, 'for': 2.0, 'fabric': 3.0, 'higher': 1.0, 'classic': 2.0, 'so': 2.0, 'can': 2.0, 'shoulder': 1.0, 'but': 3.0, 'you': 1.0, 'when': 1.0, 'minus': 1.0, 'front': 1.0, 'a': 9.0, 'fit': 1.0, 't': 3.0, 'had': 2.0, 'was': 5.0, 'minutes': 1.0, 'positions': 1.0, 'well': 1.0, 'i': 17.0, 'she': 1.0, 'baby': 6.0, 'before': 2.0, 'only': 1.0, 'purchase': 1.0, 'me': 1.0, 'my': 7.0, 'completely': 1.0, 'voluptuous': 1.0, 'is': 5.0, 'accommodate': 1.0, '3': 1.0, 'useless': 1.0, 'it': 8.0, 'high': 1.0, 'against': 1.0, 'pretty': 1.0, 'to': 5.0, 'became': 1.0, 'very': 4.0, 'little': 2.0, 'cool': 1.0, 'after': 1.0, 'few': 1.0, 'panel': 1.0, 'didn': 3.0, 'like': 4.0, 'way': 3.0, 'position': 1.0, 'strap': 2.0, 'sat': 1.0, 'uncomfortable': 1.0, 'neck': 1.0, 'seat': 2.0, 'in': 2.0, 'which': 1.0, 'made': 1.0, 'came': 1.0, 'keeping': 1.0, 'think': 1.0, 'better': 3.0, 'definitely': 1.0, 'an': 2.0, 'ever': 1.0, 'sport': 2.0, 'plus': 1.0, 'not': 1.0, 'shallow': 1.0, 'who': 1.0, 'shaped': 1.0, 'string': 1.0, 'bean': 1.0, 'now': 1.0}
Word element => {'forget': 1.0, 'position': 1.0, 'prefer': 1.0, 'could': 1.0, 'will': 1.0, 'this': 1.0, 'month': 1.0, 'safari': 1.0, 'or': 2.0, 'like': 2.0, 'which': 1.0, 'using': 1.0, 'lighter': 1.0, 'would': 1.0, 've': 1.0, 'face': 1.0, 'snot': 1.0, 'comfortable': 2.0, 'again': 1.0, 'hurt': 1.0, 'lbs': 1.0, 'when': 1.0, 'are': 1.0, 'carrier': 1.0, 'back': 5.0, 'over': 2.0, 'don': 1.0, 'cheaper': 1.0, 'clearly': 1.0, 'show': 1.0, 'hurts': 1.0, 'himself': 1.0, 'very': 2.0, 'as': 2.0, 'all': 2.0, 'if': 2.0, 'choice': 1.0, 'dusk': 1.0, 'is': 4.0, 'to': 2.0, 'pretty': 1.0, 'crumbs': 1.0, 'baby': 1.0, 'had': 1.0, 'now': 2.0, 'its': 1.0, 'do': 1.0, 's': 1.0, 'lila': 1.0, 'his': 3.0, 'choose': 1.0, 'without': 1.0, 'a': 1.0, 't': 2.0, 'there': 1.0, 'black': 1.0, 'transfer': 1.0, 'straps': 2.0, 'ordered': 1.0, 'i': 8.0, 'drool': 1.0, 'color': 1.0, 'get': 1.0, 'months': 1.0, 'regret': 1.0, 'it': 5.0, 'him': 1.0, 'faces': 1.0, 'infantino': 1.0, 'and': 2.0, 'heard': 1.0, 'shoulders': 1.0, 'carriers': 1.0, 'especially': 1.0, 'in': 1.0, 'carry': 3.0, 'me': 1.0, 'my': 4.0, 'easier': 1.0, 'maneuver': 1.0, 'with': 2.0, 'eddie': 1.0, 'bauer': 1.0, 'been': 1.0, 'because': 3.0, 'that': 1.0, 'old': 1.0, 'fabric': 2.0, 'for': 2.0, 'older': 1.0, '3': 1.0, '12': 1.0, 'who': 1.0, '21': 1.0, 'front': 1.0, 'near': 1.0, 'long': 1.0, 'usually': 1.0, 'simply': 1.0, 'the': 8.0, 'of': 1.0, 'weight': 1.0, 'so': 1.0, 'can': 2.0, 'but': 1.0, 'help': 2.0, 'have': 1.0, 'he': 2.0}
Word element => {'super': 1.0, 'loving': 1.0, 'still': 3.0, 'increased': 1.0, 'more': 1.0, 'carry': 1.0, 'quality': 1.0, '25': 1.0, 'overall': 2.0, 'phone': 1.0, 'due': 1.0, 'screen': 2.0, 'so': 2.0, 'comfy': 1.0, 'its': 1.0, 'zipper': 1.0, 'her': 1.0, 'use': 2.0, 'dont': 1.0, 'out': 1.0, 'blocks': 1.0, 'hood': 1.0, 'good': 1.0, 'made': 1.0, 'asleep': 1.0, 'as': 2.0, 'falls': 1.0, 'position': 1.0, 'haven': 1.0, 'postion': 1.0, 'tried': 1.0, 'off': 1.0, 'easy': 1.0, 'or': 1.0, 'any': 1.0, 'feel': 1.0, 'shoulder': 1.0, 'don': 1.0, 'comfortable': 2.0, 'find': 2.0, 'both': 1.0, 'originally': 1.0, 'attractive': 1.0, 'comfortably': 1.0, '2': 1.0, '6': 1.0, 'carriers': 1.0, 'strain': 1.0, 'summer': 1.0, 'space': 1.0, 'had': 1.0, 'wanted': 1.0, 'touch': 1.0, 'part': 1.0, 'agonizing': 1.0, 'in': 4.0, 'design': 1.0, 'moby': 2.0, 'outward': 1.0, 'plus': 1.0, 'inward': 2.0, 'was': 4.0, 'lbs': 3.0, 'when': 1.0, 'except': 1.0, 'months': 3.0, 'money': 1.0, 'bought': 2.0, 'decided': 1.0, 'hot': 1.0, 'started': 2.0, 'about': 3.0, 'several': 1.0, 'product': 2.0, 't': 2.0, 'fit': 1.0, 'because': 2.0, 'that': 1.0, 'something': 1.0, 'merits': 1.0, 'parent': 1.0, 'and': 12.0, '13baby': 1.0, 'lot': 1.0, 'too': 2.0, 'like': 1.0, 'light': 1.0, 'using': 2.0, 'narrow': 1.0, 'only': 2.0, 'this': 4.0, 'dysplasia': 1.0, 'seemed': 2.0, 'have': 1.0, 'hip': 3.0, 'with': 1.0, 'birth': 1.0, 'cloth': 1.0, 'well': 2.0, 'i': 11.0, '4': 1.0, 'the': 16.0, 'of': 3.0, 'necessary': 1.0, 'hysteria': 1.0, 'wouldnt': 1.0, 'front': 6.0, 'after': 2.0, 'but': 3.0, 'chose': 1.0, 'facing': 3.0, 'take': 1.0, 'we': 3.0, 's': 1.0, 'small': 1.0, 'a': 4.0, 'back': 6.0, 'pocket': 1.0, 'carrier': 2.0, 'through': 1.0, 'some': 1.0, 'cool': 1.0, 'support': 1.0, 'information': 1.0, 'were': 1.0, 'really': 1.0, 'boba': 2.0, 'it': 6.0, 'dad': 1.0, 'many': 1.0, 'baby': 5.0, 'she': 1.0, 'to': 7.0, 'cracking': 1.0, '5': 2.0, 'vs': 1.0, 'distribute': 1.0, 'weight': 2.0, 'evenly': 1.0, 'update': 1.0, 'on': 2.0, 'fear': 1.0, 'much': 1.0, 'put': 2.0, 'butt': 1.0, 'there': 1.0, 'be': 3.0, 'open': 1.0, 'circulate': 1.0, 'at': 2.0, 'is': 6.0, 'air': 1.0, 'now': 3.0, 'almost': 1.0, 'for': 6.0, '10': 1.0, 'very': 2.0, 'alone': 1.0, 'reading': 1.0, 'nicely': 1.0}
Word element => {'that': 1.0, 'help': 1.0, 'here': 1.0, 'padding': 1.0, 'some': 2.0, 'of': 1.0, 'sun': 1.0, 'or': 1.0, 'option': 1.0, 'week': 1.0, 'especially': 1.0, 'i': 2.0, 'great': 1.0, '2': 1.0, 'the': 8.0, 'month': 1.0, 'used': 1.0, 'back': 1.0, 'carrier': 1.0, 'this': 3.0, 'with': 1.0, 'only': 1.0, 'old': 1.0, 'wind': 1.0, 'are': 1.0, 'armpits': 1.0, 'everyday': 1.0, 'walking': 1.0, 'for': 2.0, 'a': 2.0, 'front': 1.0, 'really': 1.0, 'hood': 1.0, 'my': 3.0, 'color': 1.0, 'when': 2.0, 'you': 1.0, 'is': 3.0, 'caught': 1.0, 'in': 2.0, 'rain': 1.0, 'on': 2.0, 'criticism': 1.0, 'wearing': 1.0, 'like': 1.0, 'dig': 1.0, 'and': 1.0, 'would': 1.0, 'super': 1.0, 'easy': 1.0, 'to': 2.0, 'walk': 1.0, 'adjust': 1.0, 'baby': 1.0, 'straps': 1.0}
Word element => {'take': 1.0, 'wraps': 1.0, 'over': 1.0, 'chose': 1.0, 'newborn': 1.0, 'excellent': 1.0, 'buckles': 1.0, 'of': 1.0, 'until': 1.0, 'comfortable': 2.0, 'much': 1.0, 'one': 1.0, 'fabric': 1.0, 'carriers': 1.0, 'other': 1.0, 'but': 2.0, 'with': 2.0, 'older': 1.0, 'this': 4.0, 'put': 1.0, 'on': 2.0, 'impressed': 1.0, 'and': 4.0, 'me': 1.0, 'was': 2.0, 'as': 1.0, 'to': 4.0, '15': 1.0, 'bag': 1.0, 'infant': 1.0, 'are': 2.0, 'i': 7.0, 'tried': 1.0, 'updates': 1.0, 'purse': 1.0, 'about': 1.0, 'wrap': 1.0, 'the': 9.0, '3g': 1.0, 'quality': 1.0, 'baby': 2.0, 'also': 1.0, 'in': 1.0, 'have': 2.0, 'carrier': 3.0, 'for': 1.0, 'love': 1.0, 'really': 1.0, 'more': 2.0, 'say': 1.0, 'is': 3.0, 'handy': 1.0, 'front': 1.0, 'use': 2.0, 'both': 1.0, 'cover': 1.0, 'enough': 1.0, 'snap': 1.0, 'regularly': 1.0, 'time': 1.0, 'so': 2.0, 'my': 2.0, 'stitching': 1.0, 'happy': 1.0, 'it': 2.0, 'she': 1.0, 'straps': 1.0, 'always': 1.0, 'lbs': 1.0, 'when': 1.0, 'hold': 1.0, 'comment': 1.0, 'version': 1.0, 'cannot': 2.0, 'sleeping': 1.0, 'snuggled': 1.0, 'next': 1.0}
Word element => {'had': 1.0, 'as': 1.0, 'follow': 1.0, 'are': 1.0, 'price': 1.0, 'child': 1.0, 'sex': 1.0, 'appropriate': 1.0, 'definitely': 1.0, 'they': 1.0, 'like': 1.0, 'materials': 1.0, 'commit': 1.0, 'before': 1.0, 'drive': 1.0, 'test': 1.0, 'decision': 1.0, 'option': 1.0, 'hands': 1.0, 'got': 1.0, 'truly': 1.0, 'colors': 1.0, 'wanted': 1.0, 'don': 1.0, 'from': 1.0, 'keep': 1.0, 'canvas': 1.0, 'above': 2.0, 'mostly': 1.0, 'head': 1.0, 'material': 2.0, 'supported': 1.0, 'neck': 1.0, 'around': 1.0, 'his': 2.0, 'up': 1.0, 'set': 1.0, 'how': 1.0, 'i': 8.0, 'because': 1.0, 'easily': 1.0, 'pacifier': 1.0, 'under': 2.0, 'flexibility': 1.0, 's': 1.0, 'soothe': 1.0, 'requirements': 1.0, 're': 2.0, 'namely': 1.0, 'them': 1.0, 'baby': 5.0, 'out': 1.0, 'needs': 1.0, 'dog': 1.0, 've': 1.0, 'little': 2.0, 'walks': 1.0, 'a': 4.0, 'rest': 1.0, 'along': 1.0, 't': 2.0, 'old': 1.0, 'used': 1.0, 'now': 1.0, 'either': 1.0, 'boy': 1.0, 'would': 1.0, 'weeks': 1.0, 'look': 2.0, 'sits': 1.0, 'at': 1.0, 'is': 3.0, 'was': 3.0, 'lbs': 3.0, 'when': 3.0, 'things': 1.0, 'you': 6.0, 'on': 3.0, '3': 1.0, 'much': 1.0, 'put': 2.0, 'online': 1.0, 'surprised': 1.0, 'your': 1.0, '5': 2.0, 'born': 1.0, 'didn': 1.0, 'even': 1.0, 'large': 1.0, 'by': 2.0, 'and': 8.0, 'my': 6.0, 'chosen': 1.0, 'ozs': 1.0, 'but': 5.0, 'registry': 1.0, 'instructions': 1.0, 'money': 1.0, 'so': 3.0, 'can': 1.0, 'love': 1.0, 'he': 2.0, 'infant': 2.0, '6': 2.0, 'bobbling': 1.0, 'this': 6.0, 'for': 7.0, '10': 1.0, 'free': 1.0, 'want': 2.0, 'still': 2.0, 'if': 3.0, 'or': 1.0, 'size': 1.0, 'wise': 1.0, 'with': 3.0, '15': 2.0, 'ability': 1.0, 'be': 1.0, 'taller': 2.0, 'the': 17.0, 'of': 5.0, 'person': 1.0, 'extra': 2.0, 'all': 1.0, 'fusses': 1.0, 'heading': 1.0, 'word': 1.0, 'her': 1.0, 'use': 1.0, 'thought': 1.0, 'him': 2.0, 'already': 1.0, '9': 1.0, 'it': 6.0, 'more': 1.0, 'babies': 2.0, 'husband': 1.0, '34': 1.0, 'gift': 1.0, 'made': 1.0, 'model': 1.0, 'easy': 2.0, 'really': 3.0, 'might': 1.0, 'attractive': 1.0, 'us': 1.0, 'hold': 1.0, 'spend': 1.0, 'kind': 1.0, 'insert': 1.0, 'outings': 1.0, 'straps': 1.0, 'mind': 1.0, 'people': 1.0, 'we': 2.0, 'take': 1.0, 'high': 1.0, 'to': 9.0, 'pretty': 2.0, 'yourself': 1.0, 'off': 1.0, 'seems': 2.0, 'm': 1.0, 'in': 3.0, 'using': 1.0, 'just': 1.0, 'pacifiers': 1.0, 'outlined': 1.0, 'too': 1.0, 'happy': 2.0, 'one': 1.0, 'carrier': 3.0, 'pocket': 1.0}
Word element => {'usa': 1.0, 'made': 1.0, 'was': 1.0, 'wish': 1.0, 'on': 1.0, 'pockets': 1.0, 'and': 2.0, 'too': 1.0, 'baby': 2.0, 'my': 1.0, 'are': 1.0, 'myself': 1.0, 'a': 1.0, 'does': 1.0, 'only': 1.0, 'this': 1.0, 'it': 3.0, 'carrier': 1.0, 'nice': 1.0, 'extra': 1.0, 's': 1.0, 'yo': 1.0, 'love': 1.0, 'comfortable': 1.0, 'for': 1.0, 'in': 2.0, 'put': 1.0, 'naps': 1.0, 'comfortably': 1.0, 'easy': 1.0}
Word element => {'position': 1.0, 'easily': 1.0, 'both': 1.0, 'been': 1.0, 'fits': 1.0, 'it': 3.0, 'infant': 1.0, 'boba': 1.0, 'old': 1.0, 'my': 1.0, 'perfectly': 1.0, 'me': 1.0, 'and': 2.0, 'since': 1.0, 'our': 2.0, 'we': 2.0, 'husband': 1.0, 'was': 1.0, 'love': 1.0, 'using': 1.0, 'worked': 1.0, 'son': 1.0, 'the': 1.0, '2': 1.0, 'months': 1.0, 've': 1.0, 'in': 1.0}
Word element => {'transition': 1.0, 'will': 1.0, 'guy': 1.0, 'little': 1.0, 'but': 1.0, 'newborns': 1.0, 'used': 1.0, 'now': 1.0, 'right': 1.0, 'in': 1.0, 'always': 1.0, 'loves': 1.0, 'baby': 1.0, 'so': 2.0, 'black': 1.0, 'it': 5.0, 'with': 1.0, 'full': 1.0, 'this': 1.0, 'wanted': 1.0, 'husband': 1.0, 'as': 1.0, 'to': 7.0, 'use': 2.0, 'loved': 1.0, 'part': 1.0, 'while': 1.0, 'am': 2.0, 'able': 2.0, 'falls': 1.0, 'have': 3.0, 'separate': 1.0, 'would': 1.0, 'my': 3.0, 'went': 1.0, 'happy': 1.0, 'colored': 1.0, 'newborn': 1.0, 'be': 2.0, 'get': 1.0, 'soon': 1.0, 'and': 3.0, 'print': 1.0, 'one': 1.0, 'for': 2.0, 'i': 5.0, 'buy': 1.0, 'or': 1.0, 'excited': 1.0, 'comfortable': 1.0, 'great': 1.0, 'a': 3.0, 'we': 2.0, 't': 1.0, 'asleep': 1.0, 'the': 2.0, 'is': 2.0, 'more': 1.0, 'carrier': 1.0, 'don': 1.0, 'insert': 1.0, 'like': 1.0, 'did': 1.0, 'only': 1.0, 'much': 1.0, 'well': 1.0, 'ergo': 1.0, 'easier': 1.0}
Word element => {'product': 1.0, 'an': 1.0, 'knew': 1.0, 'unused': 1.0, 'manufacturer': 1.0, 'from': 1.0, 'ordering': 1.0, 'when': 1.0, 'i': 5.0, 'package': 1.0, 'so': 1.0, 'however': 1.0, 'up': 1.0, 'there': 1.0, 'loved': 1.0, 'all': 1.0, 'have': 1.0, 'the': 3.0, 'would': 1.0, 'it': 2.0, 'carrier': 1.0, 'opened': 1.0, 'white': 1.0, 'over': 1.0, 'hair': 1.0, 'used': 1.0, 'ended': 1.0, 'dog': 1.0, 'getting': 1.0, 'and': 1.0, 'was': 3.0, 'supstance': 1.0, 'a': 1.0}
Word element => {'if': 1.0, 'truly': 1.0, 'overall': 1.0, 'convenient': 1.0, 'over': 1.0, 'bonus': 1.0, 'moving': 1.0, 'without': 1.0, 'out': 1.0, 'stretchy': 1.0, 'boobs': 1.0, 'your': 2.0, 'possible': 1.0, 'am': 1.0, 'breastfeed': 1.0, 'transfer': 1.0, 'says': 1.0, 'way': 1.0, 'effectively': 1.0, '45': 1.0, 'rated': 1.0, 'hood': 1.0, 'sleeping': 2.0, 't': 1.0, 'don': 1.0, 'which': 2.0, 'asleep': 1.0, 'covered': 1.0, 'head': 1.0, 'toddlerhood': 1.0, 'old': 1.0, '4': 1.0, 'walk': 1.0, 'phone': 1.0, 'need': 1.0, 'or': 1.0, 'like': 1.0, 'different': 1.0, 'sure': 1.0, 'store': 1.0, 'are': 2.0, 'another': 2.0, 'did': 1.0, 'makes': 1.0, 'groin': 1.0, 'smaller': 1.0, 'use': 2.0, 'aspect': 1.0, 'her': 1.0, 'by': 1.0, 'this': 2.0, 'suspended': 1.0, 'since': 1.0, 'comfortably': 1.0, 'difficult': 1.0, 'strap': 1.0, 'wearing': 1.0, 'allow': 1.0, 'from': 1.0, 'carrier': 3.0, 'master': 1.0, 'new': 1.0, 'but': 3.0, 'strain': 1.0, 'newborn': 1.0, 'means': 1.0, 'could': 1.0, 'added': 1.0, 'a': 7.0, 'keys': 1.0, 'began': 2.0, 'back': 3.0, 'making': 1.0, 'babywearing': 1.0, 'range': 1.0, 'lb': 1.0, 'bjorn': 5.0, 'method': 1.0, 'in': 3.0, 'one': 1.0, 'lot': 1.0, 'notice': 1.0, 'is': 10.0, 'at': 2.0, 'baby': 9.0, 'she': 2.0, 'it': 4.0, 'and': 13.0, 'the': 24.0, 'of': 3.0, 'pick': 1.0, 'wrapping': 1.0, 'shower': 1.0, 'once': 1.0, 'up': 2.0, 'long': 1.0, 'on': 7.0, 'sit': 2.0, 'when': 4.0, 'things': 1.0, 'you': 6.0, 'neck': 2.0, 'extremely': 2.0, 'never': 1.0, 'shoulders': 2.0, 'i': 9.0, 'very': 2.0, 'art': 1.0, 'love': 3.0, 'searching': 2.0, 'for': 6.0, 'my': 7.0, 'sufficiently': 1.0, 'pacifier': 1.0, 'lo': 2.0, 'lbs': 2.0, 'was': 4.0, 'to': 11.0, 'waist': 1.0, 'falls': 1.0, 'as': 1.0, '15': 2.0, 'practical': 1.0, 'even': 1.0, 'hit': 1.0, 'great': 1.0, 'carrying': 1.0, 'definitely': 1.0, '3g': 2.0, 'looking': 1.0, 'day': 1.0, 'all': 1.0, 'an': 1.0, 'however': 1.0, 'easy': 4.0, 'months': 1.0, 'get': 3.0, 'off': 1.0, 'that': 6.0, 'been': 1.0, 'more': 3.0, 'babies': 1.0, 'easier': 1.0, 'whereas': 1.0, 'review': 1.0, 'unless': 1.0, 'after': 1.0, 'put': 1.0, 'much': 3.0, 'do': 1.0, 'can': 2.0, 'so': 2.0, 'comparison': 1.0, 'decided': 1.0, 'enough': 1.0, 'loved': 1.0, 'boba': 7.0, 'missing': 1.0, 'received': 1.0, 'also': 2.0, 'have': 2.0, 'not': 2.0, 'shopping': 1.0, 'disappointed': 1.0, 'weight': 1.0, 'both': 1.0, 'front': 1.0, 'hold': 1.0, 'hips': 1.0, 'down': 1.0, 'several': 1.0, 'displaces': 1.0, 'hours': 1.0, 'usually': 1.0, 'through': 1.0, 'tolerable': 1.0, 'pockets': 1.0, 'with': 2.0, 'allows': 1.0}
Word element => {'m': 1.0, 'versatile': 1.0, 'is': 1.0, 'year': 1.0, '5': 1.0, 'secure': 1.0, 'back': 1.0, 'carry': 2.0, 'and': 3.0, 'much': 1.0, 'infant': 1.0, 'boba': 1.0, 'carrier': 1.0, '3g': 1.0, 'this': 1.0, 'research': 1.0, 'with': 4.0, 'it': 2.0, 'the': 1.0, 'my': 3.0, 'ordered': 1.0, 'old': 1.0, 'i': 3.0, 'am': 1.0, 'after': 1.0, 'so': 4.0, '3': 1.0, 'pleased': 2.0, 'doing': 1.0, 'purchase': 2.0, 'used': 1.0, 've': 1.0, 'in': 1.0, 'a': 2.0, 'front': 1.0}
Word element => {'me': 1.0, 'drives': 1.0, 'big': 1.0, 'shows': 1.0, 'to': 1.0, 'hair': 1.0, 'from': 1.0, 'mother': 1.0, 'love': 1.0, 'problem': 1.0, 'year': 1.0, 'this': 1.0, 'with': 2.0, 'only': 1.0, 'it': 2.0, 'buy': 1.0, 'i': 7.0, 'old': 2.0, 'time': 1.0, 'boy': 1.0, 'm': 2.0, 'daughter': 1.0, 'am': 1.0, 'when': 1.0, 'glad': 1.0, 'week': 1.0, 'house': 1.0, 'toddler': 1.0, 'a': 4.0, 'black': 1.0, 'was': 1.0, 'crazy': 1.0, 'really': 1.0, 'of': 1.0, 'everything': 1.0, '10': 1.0, 'and': 3.0, 'nuts': 1.0, '3': 1.0, 'collects': 1.0, 'that': 1.0, 'can': 1.0, 'wear': 1.0, 'fact': 1.0, 'my': 2.0, 'is': 1.0, 'around': 2.0, 'lint': 1.0, 'mall': 1.0, 'or': 2.0, 'even': 1.0, 'did': 1.0, 'cleaning': 1.0, 'out': 1.0, 'the': 5.0, 'hanging': 1.0, 'must': 1.0, 'have': 1.0}
Word element => {'http': 1.0, 'comparison': 1.0, 'mama': 1.0, 'maui': 1.0, 'my': 1.0, 'lightweight': 1.0, 'comfortable': 1.0, 'boba': 1.0, 'so': 1.0, 'beach': 1.0, 'carry': 1.0, 'walking': 1.0, 'like': 1.0, 'trips': 1.0, 'front': 1.0, 'use': 1.0, 'no': 1.0, 'youtu': 1.0, 'there': 2.0, 'unfortunately': 1.0, 'doesn': 1.0, 'supportive': 1.0, 'things': 1.0, 'many': 1.0, 'tries': 1.0, 'when': 1.0, 'realized': 1.0, 'can': 1.0, 'but': 2.0, 'graduated': 1.0, 'that': 2.0, 'of': 3.0, 'up': 1.0, 'weight': 1.0, 'con': 1.0, 'dvqmgwbc': 1.0, 'hip': 1.0, 'with': 1.0, 'perfect': 1.0, 'this': 2.0, 'research': 1.0, 'short': 1.0, 'comparing': 1.0, 'she': 1.0, 'it': 3.0, 'lillie': 1.0, 'do': 2.0, 'only': 1.0, '20': 1.0, 't': 1.0, 'a': 2.0, 'we': 5.0, 'just': 1.0, 'because': 3.0, 'from': 2.0, 'support': 1.0, 'the': 9.0, 'them': 1.0, 'baby': 3.0, 'in': 1.0, 'bjorn': 2.0, 'car': 1.0, 'pound': 1.0, '8x': 1.0, 'one': 2.0, 'any': 1.0, 'our': 2.0, 'to': 7.0, 'extensive': 1.0, 'and': 5.0, 'sometimes': 1.0, 'after': 1.0, 'chose': 1.0, 'runner': 1.0, 'complete': 1.0, 'be': 1.0, 'airflow': 1.0, 'for': 2.0, 'fit': 1.0, '360': 1.0, 'better': 1.0, 'high': 1.0, 'check': 1.0, 'carrier': 3.0, 'needed': 1.0, 'back': 2.0, 'is': 3.0, 'facing': 1.0, 'still': 2.0, 'review': 1.0, 'well': 1.0, 'likes': 1.0, 'distribute': 1.0, 'face': 2.0, 'out': 4.0}
Word element => {'everyone': 1.0, 'recommending': 1.0, 'am': 1.0, 'dusk': 1.0, 'how': 1.0, 'really': 1.0, 'myself': 1.0, 'something': 1.0, 'position': 1.0, 'read': 1.0, 'little': 1.0, 'now': 1.0, 'almost': 1.0, 'year': 1.0, 'anymore': 1.0, 'was': 1.0, 'stress': 1.0, 'fine': 1.0, 'take': 1.0, 'about': 1.0, 'but': 2.0, 'your': 1.0, '3': 1.0, 'recently': 1.0, 'their': 1.0, 'they': 1.0, 'time': 2.0, 'can': 2.0, 'so': 2.0, 'bit': 1.0, 'by': 2.0, 'spine': 1.0, 'back': 3.0, 'carrier': 2.0, 'bjorn': 1.0, 'baby': 4.0, 'tired': 1.0, 'puts': 2.0, 'them': 1.0, 'have': 2.0, 'days': 1.0, 'no': 1.0, 'gotten': 1.0, 'a': 4.0, 's': 2.0, 'figured': 1.0, 'go': 1.0, 'and': 7.0, 'also': 2.0, 'received': 1.0, 'much': 2.0, 'old': 3.0, 'type': 1.0, 'putting': 1.0, 'i': 10.0, '30lb': 1.0, 'use': 1.0, 'front': 1.0, 'out': 2.0, 'shoulders': 1.0, 'few': 2.0, 'this': 3.0, 'month': 1.0, 'for': 3.0, 'looks': 1.0, 'my': 7.0, 'of': 4.0, 'the': 5.0, 'longer': 1.0, 'second': 1.0, 'used': 2.0, 'because': 1.0, 'that': 2.0, 'very': 1.0, 'being': 1.0, 'are': 1.0, 'first': 1.0, 'bad': 1.0, 'hips': 2.0, 'pressure': 1.0, 'weight': 1.0, 'on': 4.0, 'long': 1.0, 'not': 1.0, 'even': 2.0, 'months': 1.0, 'get': 1.0, 'wearing': 1.0, 'like': 2.0, 'hold': 1.0, 'cuddling': 1.0, 'with': 1.0, 'as': 1.0, 'all': 1.0, 'to': 4.0, 'you': 1.0, 'wear': 2.0, 'already': 1.0, 'it': 10.0, '9': 1.0, 'ago': 1.0, 'likes': 1.0, 'or': 1.0, 'off': 1.0, 'seems': 1.0, 'tried': 1.0, 'son': 1.0, 'comfortable': 1.0, 'did': 1.0, 'getting': 1.0}
Word element => {'about': 1.0, 'things': 1.0, 'just': 1.0, 'enough': 1.0, 'off': 1.0, 'comfortable': 1.0, 'nicely': 1.0, 'on': 1.0, 'put': 1.0, 'washed': 2.0, 've': 1.0, 'lint': 1.0, 'ended': 1.0, 'very': 1.0, 'little': 1.0, 'up': 3.0, 'once': 1.0, 'of': 1.0, 'and': 5.0, 'too': 2.0, 'gets': 1.0, 'was': 1.0, 'had': 1.0, 'to': 2.0, 'one': 2.0, 'love': 4.0, 'for': 1.0, 'i': 4.0, 'old': 1.0, 'this': 4.0, 'with': 1.0, 'only': 1.0, 'my': 2.0, 'the': 3.0, 'carrier': 2.0, 'insert': 1.0, 'can': 1.0, 'but': 1.0, 'daugher': 1.0, 'trying': 1.0, 'infant': 1.0, 't': 1.0, 's': 2.0, 'a': 2.0, 'year': 1.0, '22lbs': 1.0, 'so': 1.0, 'easy': 3.0, 'it': 8.0, 'she': 1.0, 'lot': 1.0, 'carry': 1.0, 'good': 1.0, 'her': 1.0, 'say': 1.0, 'is': 2.0, 'around': 1.0, 'complaint': 1.0, 'in': 1.0, 'hot': 1.0, 'ergo': 1.0, 'likes': 1.0, 'that': 1.0, 'dirty': 1.0, 'take': 1.0, 'picks': 1.0}
Word element => {'felt': 1.0, 'lbs': 1.0, 'time': 1.0, 'at': 1.0, '34': 1.0, '8': 1.0, '5': 1.0, 'very': 1.0, 'body': 1.0, 'fit': 1.0, 'like': 1.0, 'so': 2.0, 'got': 2.0, 'another': 1.0, 'broke': 1.0, 'few': 1.0, 'carrier': 1.0, 'just': 2.0, 'didn': 2.0, 'went': 1.0, 'my': 2.0, 'ergo': 3.0, 'more': 1.0, 't': 2.0, 'the': 5.0, 'boba': 3.0, 'but': 2.0, 'an': 1.0, 'zipper': 1.0, 'and': 4.0, '220': 1.0, 'was': 1.0, 'had': 1.0, 'comfortable': 1.0, 'for': 1.0, 'originally': 1.0, 'tried': 1.0, 'i': 5.0, 'm': 1.0, 'returned': 2.0, 'it': 3.0, 'well': 1.0, 'a': 1.0, 'days': 1.0}
Word element => {'new': 1.0, 'with': 1.0, 'out': 1.0, 'little': 1.0, 'very': 1.0, 'keep': 1.0, 'dads': 1.0, 'clip': 1.0, 'used': 1.0, 'is': 3.0, 'around': 1.0, 'grade': 1.0, 'wait': 1.0, 'man': 1.0, 'back': 1.0, 'will': 4.0, 'boba': 2.0, 'also': 1.0, 'my': 4.0, 'going': 1.0, 'a': 6.0, 'go': 1.0, 'rear': 1.0, 'try': 1.0, 'which': 2.0, 'like': 1.0, 'bonus': 2.0, '6': 1.0, 'adjusting': 1.0, 'and': 7.0, 'total': 1.0, 'month': 1.0, '3g': 2.0, 'the': 6.0, 'without': 1.0, 't': 2.0, 'fit': 2.0, 'comfortable': 1.0, 'padded': 1.0, '1': 1.0, 'mention': 1.0, 'were': 1.0, 'that': 2.0, 'forth': 1.0, 'been': 1.0, 'switch': 1.0, 'considering': 1.0, 'husband': 1.0, 'was': 4.0, 'to': 4.0, 'baby': 1.0, 'military': 1.0, 'it': 7.0, 'wear': 1.0, 'should': 1.0, 'september': 1.0, 'huge': 1.0, 'safe': 1.0, 'shoulder': 1.0, 'but': 2.0, 'so': 1.0, 'can': 1.0, 'i': 8.0, 'know': 1.0, 'easy': 1.0, 'found': 1.0, 'this': 1.0, '0': 1.0, 'straps': 2.0, 'from': 1.0, '5': 2.0, 'on': 1.0, 'about': 1.0, 'accommodating': 1.0, 'toddler': 1.0, 'loving': 1.0, '3': 1.0, 'accommodate': 1.0, 'newborn': 1.0, 'fits': 1.0, 'dream': 1.0, 'all': 1.0, 'an': 1.0, 'insert': 1.0, 'there': 1.0, 'detachable': 1.0, 'haven': 1.0, 'yet': 1.0, 'moms': 1.0, 'come': 2.0, 'm': 2.0, 'in': 2.0, 'handy': 1.0, 'old': 1.0, 'when': 1.0, 'extremely': 1.0, '11': 1.0, 'hood': 1.0, 'nursing': 1.0, 'have': 1.0, 'great': 1.0, 'carrying': 1.0}
Word element => {'older': 1.0, 'get': 1.0, 'they': 1.0, 'when': 1.0, 'even': 1.0, 'asleep': 1.0, 'fall': 1.0, 'right': 1.0, 'is': 1.0, 'a': 1.0, 'and': 1.0, 'up': 1.0, 'very': 1.0, 'this': 1.0, 'carrier': 1.0, 'comfy': 1.0, 'mom': 1.0, 'baby': 2.0, 'can': 1.0, 'for': 1.0, 'snuggle': 1.0}
Word element => {'scary': 1.0, 'got': 1.0, 'end': 1.0, 'postures': 1.0, 'heights': 1.0, 'different': 1.0, 'slid': 1.0, 'piping': 2.0, 'slide': 1.0, 'designed': 1.0, 'defect': 1.0, 'single': 1.0, 'flaw': 1.0, 'really': 1.0, 'is': 2.0, 'at': 1.0, 'hours': 1.0, 'straight': 1.0, 'to': 6.0, 'waist': 1.0, 'wind': 1.0, 'cover': 1.0, 'off': 2.0, 'adjustability': 1.0, 'carrier': 5.0, 'easy': 1.0, 'straps': 1.0, 'or': 1.0, 'design': 1.0, 'sun': 1.0, 'shoulder': 1.0, 'carried': 1.0, 'on': 1.0, 'your': 1.0, 'think': 1.0, 'months': 1.0, 'had': 1.0, 'now': 1.0, 'comfortable': 2.0, 'nice': 1.0, 'for': 3.0, 'love': 1.0, 'hood': 1.0, 'every': 1.0, 'owned': 1.0, 'my': 3.0, 'construction': 1.0, 'very': 1.0, 'in': 3.0, 'brand': 1.0, 'honestly': 1.0, 've': 1.0, 'about': 1.0, 'no': 2.0, 'whole': 1.0, 'exchange': 1.0, 'from': 1.0, 'day': 1.0, 'just': 6.0, 'and': 5.0, 'with': 1.0, 'this': 4.0, 'it': 5.0, 'baby': 3.0, 'she': 2.0, 'loved': 1.0, 'sturdy': 1.0, 'through': 1.0, 'nightmare': 1.0, 'canvas': 1.0, 'a': 4.0, 's': 1.0, 'time': 1.0, 'i': 9.0, 'slept': 1.0, 'strapping': 1.0, 'babywearer': 1.0, 'right': 1.0, 'happened': 1.0, 'when': 2.0, 'am': 1.0, 'chest': 3.0, 'worst': 1.0, 'strap': 3.0, 'came': 1.0, 'was': 2.0, 'needed': 1.0, 'luckily': 1.0, 'used': 1.0, 'trust': 1.0, 'did': 1.0, 'not': 2.0, 'holds': 1.0, 'able': 1.0, 'can': 1.0, 'so': 1.0, 'ask': 1.0, 'accommodate': 1.0, '3': 1.0, 'today': 1.0, 'catch': 1.0, 'shoulders': 1.0, 'of': 1.0, 'the': 8.0, 'longer': 2.0, 'her': 1.0, 'use': 1.0, 'easily': 1.0, 'that': 2.0, 'fall': 1.0, 'because': 1.0, 'together': 1.0, 'much': 1.0, 'but': 2.0, 'tempted': 1.0, 'all': 1.0, 'an': 1.0}
Word element => {'periods': 1.0, 'carrier': 1.0, 'loves': 1.0, 'we': 1.0, 'walks': 1.0, 'toddler': 1.0, 'baby': 2.0, 'none': 1.0, 'carriers': 1.0, 'wife': 1.0, 'comfortable': 1.0, 'for': 1.0, 'my': 1.0, 'and': 3.0, 'bar': 1.0, 'many': 1.0, 'is': 2.0, 'long': 1.0, 'her': 1.0, 'favorite': 1.0, 'i': 1.0, 'too': 1.0, 'have': 2.0, 'worn': 1.0, 'this': 2.0, 'it': 2.0}
Word element => {'carrier': 1.0, 'son': 1.0, 'shy': 1.0, 'still': 1.0, 'facing': 1.0, 'or': 2.0, 'comfortable': 1.0, 'they': 1.0, 'can': 1.0, 'so': 2.0, '3': 1.0, 'old': 2.0, 'a': 2.0, 'could': 1.0, 's': 2.0, 'like': 1.0, 'side': 1.0, 'which': 1.0, 'and': 5.0, 'on': 1.0, 'long': 1.0, 'nicu': 1.0, 'came': 1.0, 'of': 2.0, 'the': 4.0, 'our': 1.0, 'against': 1.0, 'to': 3.0, 'as': 2.0, 'relatively': 1.0, 'safe': 1.0, 'hikes': 1.0, 'at': 1.0, 'bonder': 1.0, 'but': 1.0, 'feel': 2.0, 'mom': 1.0, 'encourage': 1.0, 'attached': 1.0, 'now': 1.0, 'kids': 2.0, 'this': 2.0, '32lb': 1.0, '5000': 1.0, 'call': 1.0, 'dad': 1.0, 'baby': 2.0, 'she': 2.0, 'i': 6.0, 'two': 1.0, 'secure': 2.0, 'feelboth': 1.0, 'slings': 1.0, 'yr': 1.0, 'home': 1.0, 'in': 3.0, 'for': 1.0, 'his': 1.0, 'are': 1.0, 'first': 1.0, 'months': 1.0, 'lot': 1.0, 'one': 1.0, 'life': 1.0, 'just': 1.0, 'when': 2.0, 'hurt': 1.0, 'love': 1.0, 'he': 5.0, 'melted': 1.0, 'wanted': 1.0, 'put': 2.0, 'do': 1.0, 'much': 1.0, 'whatever': 1.0, 'house': 1.0, 'both': 1.0, '34': 2.0, 'bonding': 1.0, 'tried': 1.0, 'other': 1.0, 'chest': 1.0, 'have': 1.0, 'were': 1.0, 'stylish': 1.0, 'we': 2.0, 'fine': 1.0, 'it': 4.0, 'him': 1.0, '10mos': 1.0, 'loves': 1.0, 'my': 6.0, 'looks': 1.0, 'me': 1.0, 'back': 1.0, 'spent': 1.0, 'never': 1.0, 'shoulders': 1.0, 'ache': 1.0}
Word element => {'were': 1.0, 'stuck': 1.0, 'we': 1.0, 'larger': 1.0, 'facing': 1.0, 'design': 1.0, 'gets': 1.0, 'little': 1.0, 'babyhawk': 1.0, 'getting': 1.0, 'up': 1.0, 'child': 2.0, 'older': 1.0, 'suited': 1.0, 'covered': 1.0, 'home': 1.0, 'both': 1.0, 'when': 1.0, 'hot': 1.0, 'finally': 1.0, 'movement': 1.0, 'free': 1.0, 'carrier': 4.0, 'down': 1.0, 'has': 1.0, 'or': 3.0, 'pushing': 1.0, 'like': 1.0, 'between': 1.0, 'tucked': 2.0, 'place': 1.0, 'comfortable': 1.0, 'wish': 2.0, 'fitted': 1.0, 'forward': 1.0, 'not': 2.0, 'go': 1.0, 'whatever': 1.0, 'narrow': 1.0, 'waist': 1.0, 'chest': 1.0, 'front': 4.0, 'room': 1.0, 'is': 13.0, 'there': 3.0, 'impossible': 1.0, 'even': 1.0, 'knees': 1.0, 'someone': 1.0, 'hips': 1.0, 'either': 1.0, 'would': 2.0, 'ergo': 1.0, 'under': 1.0, 'super': 2.0, 'think': 2.0, 'better': 2.0, 'a': 8.0, 'maybe': 1.0, 'sides': 1.0, 'armpits': 1.0, 's': 6.0, 'could': 1.0, 'it': 9.0, 'with': 2.0, 'bigger': 1.0, 'still': 1.0, 'if': 4.0, 'unless': 1.0, 'push': 1.0, 'you': 1.0, 'am': 2.0, 'hold': 1.0, 'they': 3.0, 'sleeping': 1.0, 'but': 3.0, '2': 2.0, 'buckles': 1.0, 'shoulder': 1.0, 'uncomfortable': 3.0, '10': 1.0, 'for': 8.0, 'enough': 1.0, 'boba': 3.0, 'us': 1.0, 'also': 4.0, 'bought': 1.0, 'adjusted': 1.0, 'bjorn': 3.0, 'm': 1.0, 'in': 6.0, 'she': 7.0, 'baby': 7.0, 'participate': 1.0, '3g': 1.0, 'doing': 1.0, 'of': 4.0, 'the': 17.0, 'good': 1.0, 'which': 3.0, 'asleep': 1.0, 'replace': 1.0, 'mos': 1.0, 'improvement': 1.0, 'be': 3.0, 'are': 1.0, 'first': 1.0, 'bad': 1.0, 'found': 1.0, 'read': 1.0, 'cannot': 1.0, 'very': 2.0, 'because': 1.0, 'that': 3.0, 'one': 1.0, 'too': 1.0, '25': 1.0, 'had': 1.0, 'against': 1.0, 'to': 13.0, 'lbs': 1.0, 'was': 1.0, 'considering': 1.0, 'husband': 2.0, 'head': 1.0, 'extremely': 1.0, 'almost': 1.0, 'put': 2.0, 're': 1.0, 'where': 1.0, 'come': 1.0, 'girl': 2.0, 'especially': 2.0, 'back': 3.0, 'help': 2.0, 'can': 1.0, 'so': 1.0, 'low': 1.0, 'until': 1.0, 'off': 1.0, 'seems': 1.0, 'see': 2.0, 'happier': 1.0, 'wets': 1.0, 'over': 2.0, 'diaper': 1.0, 'as': 2.0, 'body': 4.0, 'falls': 1.0, 'have': 3.0, 'no': 1.0, 'again': 1.0, 'support': 2.0, 'hood': 1.0, 'slightly': 1.0, 'sweat': 1.0, 'without': 2.0, 'anything': 1.0, 'works': 1.0, 'i': 11.0, 'well': 1.0, 'on': 3.0, 'long': 1.0, 'uses': 1.0, 'wide': 1.0, 'and': 6.0, 'arms': 5.0, 'loves': 1.0, 'position': 1.0, 'difficult': 2.0, 'her': 5.0, 'use': 2.0, 'overall': 1.0, 'thin': 1.0, '1': 1.0, 'find': 2.0, 'my': 13.0, 'me': 4.0, 'straps': 2.0}
Word element => {'recommend': 1.0, 'nurse': 1.0, 'overall': 1.0, 'straps': 2.0, 'sit': 1.0, 'kids': 2.0, 'have': 3.0, 'remember': 1.0, 'since': 1.0, 'or': 3.0, 'hubby': 2.0, 'lunch': 1.0, 'side': 1.0, 'because': 2.0, 'that': 3.0, 'problems': 1.0, 'finish': 1.0, 'around': 1.0, 'his': 1.0, 'bones': 1.0, 'you': 1.0, 'still': 2.0, 'if': 1.0, '20lbs': 1.0, 'daughter': 4.0, 'wore': 1.0, 'wear': 2.0, 'about': 1.0, '6': 1.0, 'chest': 2.0, 'carry': 4.0, 'our': 1.0, 'how': 1.0, 'its': 1.0, 'in': 10.0, 'a': 11.0, 'small': 1.0, 'nursed': 2.0, 'at': 1.0, 'fitting': 1.0, 'clip': 1.0, 'could': 1.0, 'will': 1.0, 'was': 8.0, 'not': 5.0, 'me': 3.0, 'my': 15.0, 'may': 1.0, 'short': 2.0, 'this': 3.0, '11mos': 1.0, 'she': 4.0, 'baby': 1.0, 'mall': 1.0, 'higher': 1.0, 'back': 3.0, 'easily': 2.0, 'making': 1.0, 'carrier': 5.0, 'need': 1.0, 'also': 5.0, 'well': 1.0, 'boba': 1.0, 'fits': 1.0, 'other': 1.0, 'all': 1.0, 'properly': 1.0, 'would': 1.0, 'confortable': 1.0, 'glacier': 1.0, '3g': 1.0, 'nice': 1.0, 'walks': 1.0, 'untucked': 1.0, 'worried': 1.0, 'loosened': 1.0, 'adjusts': 1.0, 'used': 1.0, 'for': 6.0, 'love': 1.0, 'him': 3.0, 'he': 3.0, 'solid': 1.0, 'zoo': 1.0, 'on': 4.0, '4': 1.0, 'adjustable': 2.0, 'the': 10.0, 'doing': 1.0, 'to': 15.0, 'right': 1.0, 'we': 1.0, 'bought': 2.0, 'comes': 1.0, 'got': 1.0, '5': 1.0, 'no': 2.0, 'digging': 1.0, 'into': 1.0, 'arm': 2.0, 'bit': 2.0, 'so': 3.0, 'park': 2.0, 'but': 5.0, 'drop': 1.0, 'little': 1.0, 'her': 1.0, 'use': 1.0, 'down': 1.0, 'any': 1.0, 'your': 1.0, 'feel': 1.0, 'before': 1.0, 'happy': 1.0, '2': 1.0, 'leave': 1.0, 'heavy': 1.0, 'is': 3.0, 'can': 5.0, 'basement': 1.0, 'find': 1.0, 'very': 2.0, 'cause': 1.0, 'i': 23.0, 'simple': 1.0, 'top': 1.0, 'shirt': 2.0, 'by': 1.0, 'says': 1.0, 'up': 2.0, 'laundry': 1.0, 'has': 1.0, 'spot': 1.0, 'them': 1.0, 'accessible': 1.0, 'pull': 1.0, 'til': 1.0, 'and': 13.0, 'just': 5.0, 'tried': 2.0, 'see': 1.0, 'kick': 1.0, 'had': 2.0, 'out': 1.0, 'didn': 2.0, 'across': 1.0, 'openings': 1.0, 'along': 1.0, 'fit': 1.0, 'basket': 1.0, 'do': 1.0, 'really': 2.0, 'ride': 1.0, 'crushing': 1.0, 'weather': 1.0, 'wait': 1.0, 'gets': 1.0, 'able': 2.0, 'get': 1.0, 'outside': 1.0, 'house': 1.0, 'foot': 1.0, 'detachable': 1.0, 't': 4.0, 'fun': 1.0, 'long': 1.0, '39lb': 1.0, 'walk': 1.0, 'too': 3.0, '3': 1.0, 'nursing': 1.0, '5yr': 1.0, 'of': 3.0, 'even': 1.0, 'old': 1.0, 'needed': 1.0, 'son': 1.0, 'it': 12.0, 'be': 3.0, 'boobs': 1.0, 'strap': 1.0, 'put': 1.0, '45lbs': 1.0, 'awkward': 1.0, 'large': 1.0, 'fine': 1.0, 'like': 1.0, 'think': 2.0, 'm': 2.0, 'ever': 1.0, 'doesn': 1.0, 's': 3.0, 'with': 2.0, 'only': 1.0, 'what': 2.0, 'front': 1.0, 'sister': 1.0, 'born': 1.0, 'pits': 1.0, 'definately': 1.0}
Word element => {'can': 1.0, 'of': 1.0, 'uncomfortable': 1.0, 'back': 1.0, 'front': 1.0, 'a': 1.0, 'while': 1.0, 'that': 1.0, 'criticize': 1.0, 'thing': 1.0, 'too': 1.0, 'need': 1.0, 'use': 2.0, 's': 1.0, 'i': 3.0, 'to': 2.0, 'fastens': 1.0, 'exactly': 1.0, 'used': 1.0, 'long': 1.0, 'what': 1.0, 'one': 1.0, 'comfortable': 1.0, 'extended': 1.0, 'neck': 1.0, 'buckles': 1.0, 'expected': 1.0, 'll': 1.0, 'material': 1.0, 'is': 2.0, 'get': 1.0, 'and': 2.0, 'as': 3.0, 'pretty': 1.0, 'seems': 1.0, 'wear': 1.0, 'so': 1.0, 'with': 1.0, 'only': 1.0, 'it': 3.0, 'this': 1.0, 'durable': 1.0, 'behind': 1.0, 'the': 4.0, 'should': 1.0, 'easy': 1.0, 'last': 1.0}
Word element => {'great': 1.0, 'been': 1.0, 'was': 1.0, 'not': 1.0, '3g': 1.0, 'using': 1.0, 'love': 1.0, 'boba': 1.0, 've': 1.0, 'newborn': 1.0, 'still': 1.0, 'my': 2.0, 'a': 1.0, '15': 1.0, 'since': 1.0, 'and': 2.0, 'child': 1.0, 'old': 1.0, 'i': 2.0, 'it': 2.0, 'he': 1.0, 's': 1.0, 'months': 1.0, 'feels': 1.0}
Word element => {'5': 1.0, 'few': 1.0, 'the': 1.0, 'be': 1.0, 'would': 1.0, 'much': 1.0, 'fabric': 1.0, 'good': 1.0, 'her': 1.0, 'short': 1.0, 'cm': 1.0, 'becoming': 1.0, 'when': 1.0, 'again': 1.0, 'them': 1.0, 'with': 1.0, 'mind': 1.0, 'didn': 1.0, 'wouldn': 1.0, 'longer': 2.0, 'my': 1.0, 'after': 1.0, 'similar': 1.0, 'and': 3.0, 'use': 2.0, 'shorter': 1.0, 'over': 1.0, 'this': 1.0, 'carrier': 1.0, 'note': 1.0, 'of': 1.0, 'between': 1.0, 'they': 1.0, 'years': 1.0, 'for': 1.0, 'one': 1.0, 'us': 1.0, 'middle': 1.0, 'still': 1.0, 'washes': 1.0, 'daughter': 1.0, 'great': 1.0, '2': 1.0, 'a': 1.0, 't': 3.0, 'adjusts': 1.0, 'is': 4.0, 'head': 1.0, 'husband': 1.0, 'older': 1.0, 'now': 1.0, 'been': 1.0, 'that': 2.0, 'were': 1.0, 'well': 3.0, 'has': 1.0, 'likes': 1.0, 'sleep': 1.0, 'to': 1.0, 'our': 1.0, 'as': 2.0, 'not': 1.0, 'me': 1.0, 'minor': 1.0, 'it': 3.0, 'she': 5.0, 'like': 1.0, 'cover': 1.0, 'foot': 1.0, 'supports': 1.0, 'was': 2.0, 'doesn': 1.0, 'anymore': 2.0, 'i': 1.0, 'think': 1.0, '10': 1.0, 'covering': 1.0, 'if': 2.0}
Word element => {'have': 1.0, 'what': 1.0, 'that': 1.0, 'the': 4.0, 'would': 1.0, 've': 2.0, 'patterns': 1.0, 'as': 1.0, 'margin': 1.0, 't': 1.0, 'we': 1.0, 'a': 5.0, 'you': 1.0, 'seen': 1.0, 'used': 2.0, 'or': 1.0, 'keen': 1.0, 'plus': 1.0, 'm': 1.0, 'best': 1.0, '34': 2.0, 'good': 1.0, 'carriers': 1.0, 'only': 1.0, 'this': 2.0, 'too': 1.0, 'and': 2.0, 'of': 1.0, 'manny': 1.0, 'for': 2.0, 'me': 1.0, 'not': 2.0, 'mind': 1.0, 'wearing': 1.0, 'i': 3.0, '4': 1.0, 'mile': 1.0, 'by': 1.0, 'hire': 1.0, 'diff': 1.0, 'hike': 1.0, 'is': 2.0, 'dusk': 1.0, 'one': 2.0, 'color': 1.0, 'cow': 1.0, 'doesn': 1.0, 'on': 1.0, 'guy': 1.0, 'make': 1.0, 'number': 1.0, 'look': 1.0, 'like': 1.0}
Word element => {'foot': 1.0, 'up': 1.0, 'given': 1.0, '20': 1.0, 'straps': 1.0, 'approached': 1.0, 'their': 1.0, 'using': 1.0, 'they': 2.0, 'spent': 1.0, 'can': 1.0, 'but': 1.0, 'prefer': 1.0, 'have': 3.0, 'user': 1.0, 'bjorn': 2.0, 'people': 1.0, 'other': 1.0, 'by': 1.0, 'being': 1.0, 'already': 1.0, 'carrying': 1.0, 'from': 1.0, 'of': 2.0, 'carriers': 1.0, 'shoulders': 1.0, 'adjust': 1.0, 'how': 1.0, 'lbs': 1.0, 'am': 1.0, 'you': 1.0, 'for': 2.0, 'love': 1.0, 'the': 5.0, 'my': 2.0, 'has': 1.0, 'ergo': 1.0, 'and': 3.0, 'get': 1.0, 'husband': 1.0, 'as': 1.0, 'to': 5.0, 'image': 1.0, 'i': 2.0, 'try': 1.0, 'much': 4.0, 'relieved': 1.0, 'use': 3.0, 'this': 1.0, 'pain': 1.0, 'constantly': 1.0, 'on': 3.0, 'ends': 1.0, 'both': 2.0, 'complimented': 1.0, 'weird': 1.0, 'grateful': 1.0, 'back': 1.0, 'doesn': 1.0, 'toddler': 1.0, 't': 2.0, 'a': 3.0, 'baby': 1.0, 'lovely': 1.0, 'asked': 1.0, 'is': 2.0, 'longer': 1.0, 'stopped': 1.0, 'it': 5.0, 'higher': 1.0, 'than': 1.0, 'wait': 1.0, 'need': 1.0, 'pillow': 1.0, 'that': 2.0, 'babies': 2.0, 'friends': 1.0, 'so': 2.0, 'newborn': 1.0}
Word element => {'overall': 1.0, 'carrier': 1.0, 'a': 1.0, 'just': 1.0, 's': 1.0, 'amazing': 1.0, 'on': 1.0, 'in': 2.0, 'son': 1.0, 'him': 1.0, 'i': 3.0, 'crack': 1.0, 'my': 1.0, 'falls': 1.0, 'great': 1.0, 'the': 2.0, 'baby': 1.0, 'straps': 1.0, 'princeless': 1.0, 'out': 1.0, 'could': 1.0, 'like': 2.0, 'and': 1.0, 'it': 2.0, 'this': 2.0, 'he': 1.0, 'asleep': 1.0, 'carry': 1.0, 'feel': 1.0, 'forever': 1.0, 'is': 2.0, 'padding': 1.0}
Word element => {'buy': 1.0, 'alternative': 1.0, 'few': 1.0, 'size': 1.0, 'you': 1.0, 'if': 1.0, 'comfortable': 1.0, 'me': 3.0, 'are': 1.0, 'my': 7.0, 'with': 2.0, 'long': 1.0, 'on': 2.0, 'carry': 3.0, 'small': 1.0, 'extensively': 1.0, 'beco': 1.0, 'rarely': 1.0, 'best': 1.0, 'straps': 2.0, 'free': 1.0, 'nyc': 1.0, 'admittedly': 1.0, 'town': 1.0, 'still': 2.0, 'stoller': 1.0, 'asked': 1.0, 'bigger': 1.0, 'e': 1.0, 'every': 1.0, 'front': 2.0, 'complained': 1.0, 'daughter': 3.0, 'prevented': 1.0, 'typically': 1.0, 'height': 1.0, 'create': 1.0, 'additional': 1.0, 'gemini': 3.0, 'carried': 1.0, 'was': 4.0, 'very': 1.0, 'being': 1.0, 'facto': 1.0, 'an': 2.0, 'carrier': 8.0, 'expectations': 1.0, 'no': 3.0, 'gotten': 1.0, 'sure': 1.0, 'average': 1.0, 'tired': 1.0, 'surpassed': 1.0, '28lbs': 1.0, 'and': 17.0, 'arms': 1.0, 'trip': 1.0, 'tripping': 1.0, 'in': 5.0, 'push': 1.0, 'seat': 1.0, 'when': 4.0, 'outgrown': 1.0, 'her': 3.0, 'use': 1.0, 'before': 1.0, 'to': 9.0, 'usable': 1.0, 'while': 2.0, 'may': 1.0, 'facing': 1.0, 'from': 3.0, 'regret': 1.0, '80': 1.0, 'realized': 1.0, 'discomfort': 1.0, '2': 2.0, 'the': 21.0, 'child': 4.0, 'toddler': 1.0, 'beloved': 1.0, 'go': 3.0, 'that': 4.0, 'problems': 1.0, 'i': 12.0, 'carries': 2.0, 'or': 2.0, 'food': 1.0, 'had': 3.0, 'desire': 1.0, 'children': 1.0, 'would': 2.0, 'tall': 1.0, 'is': 3.0, 'at': 2.0, 'least': 1.0, 'around': 1.0, 'reviews': 1.0, 'dragging': 1.0, 'we': 3.0, 'boba': 1.0, 'enough': 1.0, 'which': 2.0, 'like': 1.0, 'option': 1.0, 'over': 1.0, 'stretches': 1.0, 'she': 3.0, 'be': 2.0, 'it': 8.0, 'effective': 1.0, 'wear': 1.0, 'were': 1.0, 'short': 1.0, 'so': 3.0, 'hung': 1.0, 'am': 1.0, 'nicely': 1.0, 'looking': 1.0, 'does': 1.0, 'used': 2.0, 'though': 1.0, 'by': 1.0, 'babies': 1.0, 'more': 1.0, 'husband': 1.0, 'insisted': 1.0, 'back': 4.0, 'active': 1.0, 'also': 1.0, 'us': 1.0, 'wanted': 1.0, 'substantial': 1.0, 'structured': 1.0, 'arm': 1.0, 'movement': 1.0, 'arching': 1.0, 'cheapie': 1.0, 'do': 2.0, 'put': 1.0, 'this': 4.0, 'worked': 1.0, 'newborn': 1.0, 'wish': 1.0, 'earlier': 1.0, 'think': 1.0, 'another': 1.0, 'maybe': 1.0, 'never': 1.0, '15': 1.0, 'update': 1.0, 'months': 1.0, 'able': 1.0, 'device': 1.0, 'get': 1.0, 'but': 1.0, 'way': 1.0, 'than': 1.0, 'for': 8.0, 'purchase': 1.0, 'will': 1.0, 'both': 4.0, 'travel': 1.0, 'lot': 1.0, 'empty': 2.0, 'pushing': 1.0, 'year': 3.0, 'stroller': 2.0, 'years': 1.0, 'our': 1.0, '11': 1.0, 'problem': 1.0, 'now': 1.0, 'almost': 1.0, 'worth': 1.0, '3': 1.0, '5': 1.0, '40': 1.0, 'pounds': 1.0, '3ft': 1.0, 'keep': 1.0, 'car': 1.0, 'have': 5.0, 'load': 1.0, 'a': 10.0, 'enabling': 1.0, 'nap': 2.0, 'bag': 2.0, 'detail': 1.0, 'as': 6.0, 'whole': 1.0, 'save': 1.0, 're': 1.0, 'not': 4.0, 'knapsack': 1.0, 'seemed': 1.0, 'recent': 1.0, 'bought': 2.0, 'comes': 1.0, '2014': 1.0, 'along': 1.0, 'bjorn': 1.0, 'goes': 1.0, 'time': 2.0, 'cent': 1.0, 'out': 1.0, 'of': 3.0, 'old': 2.0, 'de': 1.0, 'even': 1.0}
Word element => {'product': 1.0, 'by': 1.0, 'stand': 1.0, 'store': 1.0, 'ordered': 2.0, 'want': 1.0, 'deal': 1.0, 'such': 1.0, 'structure': 1.0, 'love': 1.0, 'gray': 1.0, 'opted': 1.0, 'batch': 1.0, 'dye': 1.0, 'case': 1.0, 'getting': 1.0, 'declined': 1.0, 'any': 1.0, 'arriving': 1.0, 'another': 3.0, 'preferred': 1.0, 'whatever': 1.0, 'receiving': 1.0, 'label': 1.0, 'me': 2.0, 'emailed': 2.0, 'paid': 1.0, 'then': 1.0, 'only': 1.0, 'new': 2.0, 'being': 1.0, 'truer': 1.0, 'stayed': 1.0, 'offered': 2.0, 'fantastic': 1.0, 'turned': 1.0, 'shades': 1.0, 'several': 1.0, 'should': 3.0, 'top': 1.0, 'care': 1.0, 'been': 1.0, 'thought': 1.0, 'loved': 1.0, 'print': 3.0, 'ugly': 1.0, 'splotchy': 1.0, 'from': 3.0, 'gummed': 1.0, 'fading': 2.0, 'some': 2.0, 'excellent': 1.0, 'service': 3.0, 'customer': 1.0, 'slides': 1.0, 'knocked': 1.0, 'younger': 1.0, 'smaller': 1.0, 'children': 2.0, 'used': 2.0, 'when': 5.0, 'tension': 1.0, 'contact': 1.0, 'unable': 1.0, 'falls': 1.0, 'as': 1.0, 'body': 2.0, 'so': 5.0, 'at': 1.0, 'can': 1.0, 'is': 13.0, 'ring': 2.0, 'ends': 1.0, 'enough': 1.0, 'well': 1.0, 'boba': 9.0, 'shipped': 1.0, 'taken': 1.0, 'color': 3.0, 'allows': 1.0, 'almost': 1.0, 'little': 1.0, 'crazy': 1.0, 'her': 1.0, 'exchange': 1.0, 'use': 2.0, 'spots': 1.0, 'reason': 1.0, 'with': 3.0, 'using': 2.0, 'wearing': 1.0, 'unwashed': 1.0, 'while': 1.0, 'minimal': 2.0, 'stays': 1.0, 'arching': 2.0, 'coloring': 2.0, 'means': 1.0, 'rusty': 1.0, 'could': 1.0, 'this': 5.0, 'highly': 2.0, 'mailed': 1.0, 'young': 2.0, 'that': 3.0, 'calm': 1.0, 'seasoned': 1.0, 'on': 14.0, 'long': 1.0, 'child': 2.0, 'diaper': 1.0, 'up': 4.0, 'looking': 1.0, 'longer': 1.0, 'the': 60.0, 'old': 1.0, 'even': 4.0, 'of': 6.0, 'hold': 1.0, 'doing': 1.0, 'much': 2.0, 'older': 1.0, 'useless': 1.0, 'loosened': 1.0, 'had': 10.0, 'type': 1.0, 'bought': 1.0, 'months': 2.0, 'shipping': 2.0, 'get': 2.0, 'further': 3.0, 'belt': 1.0, 'anyone': 1.0, 'in': 6.0, 'for': 12.0, 'high': 3.0, 'right': 2.0, 'to': 19.0, 'goes': 1.0, 'help': 2.0, 'bag': 2.0, 'a': 20.0, 'was': 9.0, 'recommend': 2.0, 'tighten': 1.0, 'arms': 1.0, 'knocking': 1.0, 'style': 1.0, 'found': 2.0, 'have': 7.0, 'asleep': 2.0, 'back': 9.0, 'carrier': 13.0, 'years': 1.0, 'no': 1.0, 's': 3.0, 'tired': 2.0, 'wearer': 1.0, 'multiple': 1.0, 'part': 1.0, 'baby': 3.0, 'she': 5.0, 'hand': 2.0, 'supplied': 1.0, 'buckle': 4.0, 'an': 2.0, 'other': 1.0, 'combo': 1.0, 'arch': 1.0, 'padding': 1.0, 'but': 4.0, 'tweet': 2.0, 'diaperbag': 1.0, 'two': 1.0, 'big': 1.0, 'nice': 2.0, 'spacing': 1.0, 'out': 1.0, 'flip': 1.0, 'really': 2.0, 'like': 2.0, 'already': 1.0, 'first': 1.0, 'my': 8.0, 'are': 7.0, 'mostly': 1.0, 'one': 8.0, '5': 1.0, 'similar': 1.0, 'ergo': 6.0, 'they': 3.0, 'than': 1.0, 'day': 1.0, 'since': 1.0, 'you': 6.0, 'contacted': 1.0, 'fast': 1.0, 'things': 1.0, 'myself': 1.0, 'surpass': 1.0, 'always': 1.0, 'them': 2.0, 'has': 4.0, 'needing': 1.0, 'brown': 3.0, 'down': 8.0, 'all': 2.0, 'way': 1.0, 'cranky': 1.0, 'second': 1.0, 'their': 2.0, 'supporting': 1.0, 'about': 2.0, 'feed': 1.0, 'earlobes': 1.0, 'tool': 1.0, 'head': 2.0, 'once': 1.0, 'fell': 1.0, 'great': 1.0, 'particularly': 1.0, 'if': 3.0, 'easily': 2.0, 'hood': 8.0, 'wonderful': 1.0, 'snaps': 1.0, 'straps': 7.0, 'buckles': 1.0, 'babywear': 1.0, 'there': 3.0, 'snap': 2.0, 'each': 2.0, 'strap': 4.0, 'shoulder': 7.0, 'adjust': 2.0, 'cover': 1.0, 'couple': 1.0, 'feature': 4.0, 'also': 3.0, 'need': 1.0, 'or': 3.0, 'spaced': 1.0, 'where': 1.0, 'your': 6.0, 'keeping': 1.0, 'carry': 2.0, 'arm': 2.0, 'positions': 1.0, 'needed': 1.0, 'reaching': 2.0, 'quality': 3.0, 'unlike': 1.0, 'finally': 1.0, 'i': 21.0, 'rendered': 1.0, 'due': 1.0, 'it': 15.0, 'be': 3.0, 'would': 1.0, 'through': 1.0, 'd': 2.0, 'am': 2.0, 'not': 5.0, 'and': 27.0, 'just': 3.0, 'more': 3.0, 'convenient': 2.0, 'find': 1.0, 'very': 1.0, 'comfortable': 1.0, 'waist': 1.0, 'bad': 1.0, 'middle': 1.0, 'bottom': 1.0, 'yet': 1.0, '4': 2.0, 'runner': 1.0, 'defective': 1.0, 'do': 1.0, 'snapped': 2.0, 'system': 1.0, 'comfort': 1.0, 'liking': 1.0, 'problem': 1.0, 'now': 3.0, 'slide': 1.0, 'which': 6.0, 'again': 1.0, 'purpose': 1.0, 'foot': 1.0, 'bogged': 1.0, 'rests': 1.0, 'darker': 1.0, 'secured': 1.0}
Word element => {'features': 1.0, 'back': 1.0, 'bring': 1.0, 'arm': 1.0, 'on': 2.0, 'make': 1.0, 'put': 2.0, 'straps': 4.0, 'especially': 1.0, 'updates': 2.0, 'trade': 1.0, 'are': 1.0, 'strap': 1.0, 'carrier': 3.0, 'nice': 2.0, 'your': 4.0, 'feel': 1.0, 'to': 8.0, 'all': 1.0, 'lot': 2.0, 'one': 1.0, 'actual': 1.0, 'had': 1.0, 'etc': 1.0, 'fan': 1.0, 'also': 1.0, 'is': 4.0, 'caught': 1.0, 'like': 1.0, 'a': 5.0, 'could': 1.0, 'my': 2.0, 'extra': 1.0, 'another': 1.0, 'as': 1.0, 'diaper': 1.0, 'of': 7.0, 'the': 18.0, 'bag': 1.0, '3g': 5.0, 'am': 1.0, 'when': 1.0, 'you': 1.0, 'comparison': 1.0, 'so': 1.0, 'simply': 1.0, 'safety': 1.0, 'released': 1.0, 'please': 1.0, '2g': 5.0, 'although': 1.0, 'padding': 1.0, 'child': 1.0, 'babywearing': 1.0, 'it': 2.0, 'pockets': 1.0, 'with': 2.0, 'i': 5.0, 'coming': 1.0, 'get': 2.0, 'purse': 3.0, 'boba': 4.0, 'supports': 1.0, 'and': 5.0, 'padded': 1.0, 'lower': 1.0, 'in': 3.0, 'their': 1.0, 'quality': 2.0, 'them': 1.0, 'design': 2.0, 'for': 2.0, 'have': 2.0, 'starters': 1.0, 'clip': 1.0, 'material': 1.0, 'lighter': 1.0, 'waistbelt': 1.0, 'under': 1.0, 'itself': 1.0, 'not': 1.0, 'soft': 1.0, 'up': 1.0, 'less': 2.0, 'weight': 1.0, 'smaller': 1.0, 'use': 1.0, 'shoulder': 2.0, 'feels': 1.0, 'from': 1.0, 'huge': 2.0, 'apart': 1.0, 'zippered': 1.0, 'if': 1.0, 'harder': 1.0, 'that': 2.0, 'because': 1.0, 'new': 1.0, 'would': 1.0, 'keep': 2.0, 'makes': 1.0}
Word element => {'overall': 1.0, 'feature': 1.0, 'improved': 1.0, 'have': 1.0, 'newer': 1.0, 'read': 1.0, 'like': 1.0, 'didn': 1.0, 'support': 1.0, 'with': 1.0, 'comes': 1.0, 'often': 1.0, 'very': 1.0, 'not': 1.0, 'did': 1.0, 'newborn': 2.0, 'baby': 1.0, 'hard': 1.0, 'daughter': 1.0, 'tired': 1.0, 'started': 1.0, 'could': 1.0, 'we': 3.0, 'a': 4.0, 'any': 1.0, 'to': 1.0, 'attention': 1.0, 'the': 6.0, 'in': 3.0, 'feed': 1.0, 'was': 2.0, 'doesn': 1.0, 'short': 1.0, 'hours': 1.0, 'recently': 1.0, 'trips': 1.0, 'petite': 1.0, 'straps': 1.0, 'while': 1.0, 'wearing': 1.0, 'distributed': 1.0, 'old': 1.0, 'calling': 1.0, 'weight': 1.0, 'nine': 1.0, 'at': 1.0, 'hikes': 1.0, 'is': 6.0, 'months': 1.0, 'on': 1.0, 'make': 1.0, 'using': 2.0, 'universal': 1.0, 'body': 1.0, 'which': 1.0, 'models': 1.0, 'love': 3.0, 'for': 4.0, 't': 4.0, 'fit': 1.0, 'great': 1.0, 'feeling': 1.0, '1': 1.0, 'this': 4.0, '0': 1.0, 'wear': 1.0, 'it': 8.0, 'useless': 1.0, 'quick': 1.0, 'adjusts': 1.0, 'used': 1.0, 'use': 1.0, 'her': 4.0, 'well': 1.0, 'i': 11.0, 'back': 1.0, 'am': 1.0, 'and': 6.0, 'handbag': 1.0, 'able': 1.0, 'you': 1.0, 'when': 2.0, 'also': 2.0, '5': 1.0, 'husband': 1.0, 'carriers': 1.0, '6': 1.0, 'our': 1.0, 'how': 1.0, 'bulk': 1.0, 'both': 1.0, 'heights': 1.0, 'types': 1.0, 'cover': 1.0, 've': 2.0, 'time': 1.0, 'heard': 1.0, 'my': 4.0, 'me': 1.0, 'other': 1.0, 'without': 2.0, 'anything': 1.0, 'don': 2.0, 'up': 1.0, 'easily': 1.0, 'that': 1.0, 'sure': 1.0, 'slip': 1.0, 'pocket': 1.0, 'front': 1.0, 'little': 1.0, 'really': 2.0, 'off': 1.0, 'see': 1.0, 'can': 1.0, 'but': 2.0, 'rolled': 1.0, 'inside': 1.0, 'had': 1.0}
Word element => {'fell': 1.0, 'too': 1.0, 'loves': 1.0, 'baby': 1.0, 'box': 1.0, 'i': 1.0, 'very': 1.0, 'it': 2.0, 'love': 1.0, 'my': 1.0, 'the': 1.0, 'sleep': 1.0, 'easy': 1.0, 'use': 1.0, 'to': 2.0, 'right': 2.0, 'out': 1.0, 'of': 1.0}
Word element => {'carrying': 1.0, 'periods': 1.0, 'during': 1.0, 'shoulders': 1.0, '12': 1.0, 'once': 1.0, 'for': 1.0, 'bjorn': 1.0, 'baby': 2.0, 'original': 1.0, 'tough': 1.0, 'hips': 1.0, 'your': 2.0, 'weight': 1.0, 'puts': 1.0, 'one': 1.0, 'you': 1.0, 'sure': 1.0, 'make': 1.0, 'place': 1.0, 'end': 1.0, 'nice': 1.0, 'tired': 1.0, 'using': 2.0, 'sleeping': 1.0, 'if': 2.0, 'still': 3.0, 'organize': 1.0, 're': 1.0, 'later': 1.0, 'years': 1.0, 'both': 1.0, 'lbs': 2.0, 'over': 3.0, 'up': 2.0, 'i': 5.0, 'long': 1.0, 'on': 6.0, 'think': 1.0, '30': 1.0, 'few': 1.0, 'this': 4.0, 'again': 1.0, 'car': 3.0, 'in': 4.0, 'bands': 1.0, 'truly': 1.0, 'train': 3.0, 'it': 2.0, 'by': 1.0, '5': 2.0, 'before': 1.0, 'boat': 3.0, 'europe': 1.0, 'a': 5.0, 'fine': 1.0, 'we': 4.0, 'stairs': 1.0, 'belt': 1.0, 't': 2.0, 's': 2.0, 'look': 1.0, 'is': 4.0, 'assignment': 1.0, 'child': 1.0, 'year': 1.0, 'but': 2.0, 'board': 1.0, 'features': 1.0, 'which': 1.0, 'asleep': 1.0, '2': 2.0, 'past': 1.0, 'even': 2.0, 'didn': 1.0, 'children': 1.0, 'with': 3.0, 'elastic': 1.0, 'bought': 1.0, 'tip': 1.0, 'dozens': 1.0, 'yr': 3.0, 'old': 3.0, 'to': 2.0, 'tow': 1.0, '1': 1.0, 'and': 4.0, 'would': 1.0, 'been': 1.0, 'that': 3.0, 'cities': 1.0, 'months': 1.0, 'get': 2.0, 'the': 10.0, 'of': 2.0, 'or': 1.0, 'quickly': 1.0, 'planes': 1.0, 've': 3.0, 'down': 1.0, 'metro': 1.0, 'trains': 1.0, 'not': 1.0, '4': 2.0, 'handicap': 1.0, 'pricey': 1.0, 'friendly': 1.0, 'gets': 1.0, 'metros': 1.0, 'had': 1.0, 'can': 2.0, 'so': 1.0, 'comparison': 1.0, 'back': 2.0, 'newborn': 1.0, 'needed': 1.0, 'etc': 1.0, 'surgery': 2.0, 'plane': 1.0, 'have': 2.0, 'stirrups': 1.0, 'hood': 1.0, 'downsides': 1.0, 'are': 1.0, 'useful': 1.0, 'unboard': 1.0, 'actually': 1.0, 'offer': 1.0, 'an': 1.0, 'all': 1.0, 'other': 1.0, 'flying': 1.0, 'carriers': 1.0, 'straps': 2.0}
Word element => {'this': 1.0, 'hurt': 1.0, 't': 1.0, 'didn': 1.0, 'hours': 1.0, 'jogged': 1.0, '25': 1.0, 'fort': 1.0, 'downtown': 1.0, 'hunt': 1.0, 'outdoor': 1.0, 'on': 1.0, 'pound': 1.0, 'long': 1.0, 'something': 1.0, 'each': 1.0, 'be': 1.0, 'son': 1.0, 'but': 3.0, '2': 2.0, 'even': 2.0, 'way': 1.0, 'than': 1.0, 'because': 1.0, 'though': 1.0, 'much': 1.0, 'only': 1.0, 'gorgeous': 1.0, 'our': 1.0, 'to': 3.0, 'and': 3.0, 'pattern': 1.0, 'too': 1.0, 'an': 2.0, 'silly': 1.0, 'for': 4.0, 'comfortable': 2.0, 'liked': 1.0, 'boba': 3.0, 'hour': 1.0, 'carrier': 3.0, 'back': 3.0, 'which': 2.0, 'like': 1.0, 'wanted': 1.0, 'thinks': 1.0, 'had': 1.0, 'either': 1.0, 'tx': 1.0, 'in': 4.0, 'i': 11.0, 'toddler': 1.0, 'cuter': 1.0, 'selling': 1.0, 'my': 5.0, 'super': 1.0, 'ergo': 2.0, 'went': 1.0, 'baby': 1.0, 'them': 1.0, '3g': 3.0, 'without': 1.0, 'so': 2.0, 'adjustments': 1.0, 'love': 4.0, 'he': 1.0, 'adjust': 1.0, 'him': 1.0, 'thought': 1.0, 'wear': 1.0, 'it': 5.0, 'with': 2.0, 'husband': 2.0, 'more': 2.0, 'not': 1.0, 'adjustable': 1.0, 'there': 1.0, 'strap': 2.0, 'is': 5.0, 'at': 2.0, 'new': 1.0, 'time': 1.0, 'main': 1.0, 'both': 1.0, 'ends': 1.0, 'the': 11.0, 'of': 3.0, 'point': 1.0, 'bit': 1.0, 'easy': 1.0, 'a': 5.0, 'carry': 2.0, 'or': 1.0, 'scavenger': 1.0, 'front': 1.0, 'use': 2.0, 'prefers': 1.0, 'soho': 1.0, 'features': 1.0, 'being': 1.0, 'girly': 1.0, 'able': 1.0, 'used': 1.0, 'newborn': 1.0, 'extra': 1.0, 'kind': 1.0, 'insert': 1.0, 'are': 1.0, 'first': 1.0, 'holders': 1.0, 'full': 1.0, 'were': 1.0, 'almost': 1.0, 'worth': 1.0, 'now': 1.0, 'every': 1.0, 'makes': 1.0, 'did': 1.0}
Word element => {'get': 1.0, 'need': 1.0, 'will': 1.0, 'you': 1.0, 'one': 1.0, 'shoulders': 1.0, 'your': 1.0, 'otherwise': 1.0, 'might': 1.0, 'stretches': 1.0, 'er': 1.0, 'carry': 1.0, 'load': 1.0, 'wrong': 1.0, 'long': 1.0, 'on': 2.0, 'concentrated': 1.0, 'weight': 2.0, 'where': 1.0, 'unlike': 1.0, 'parts': 1.0, 'vital': 1.0, 'his': 1.0, 'protects': 1.0, 'development': 1.0, 'sitting': 1.0, 'had': 1.0, 'setup': 1.0, 'fitted': 1.0, 'almost': 1.0, 'her': 1.0, 'use': 1.0, 'classy': 1.0, 'as': 6.0, 'our': 1.0, 's': 2.0, 'leg': 1.0, 'we': 4.0, 'a': 1.0, 'assembling': 1.0, 'aids': 1.0, 'minimal': 1.0, 'days': 1.0, 'day': 1.0, 'blue': 1.0, 'areas': 1.0, 'coast': 1.0, 'my': 1.0, 'went': 1.0, 'used': 1.0, 'before': 2.0, 'thought': 1.0, 'it': 4.0, 'this': 1.0, 'fit': 1.0, 'easy': 1.0, 'love': 1.0, 'aoriginal': 1.0, 'eases': 1.0, 'home': 1.0, 'west': 1.0, 'box': 1.0, 'that': 4.0, 'to': 4.0, 'straight': 2.0, 'ordered': 1.0, 'loving': 1.0, 'singapore': 1.0, 'strain': 1.0, 'weeks': 1.0, '3': 2.0, 'older': 1.0, 'week': 1.0, 'out': 1.0, 'relative': 1.0, 'timing': 1.0, 'arrived': 2.0, 'us': 1.0, 'for': 4.0, 'posture': 1.0, 'trip': 1.0, 'and': 12.0, 'of': 1.0, 'the': 12.0, 'very': 1.0, 'from': 1.0, 'is': 1.0, 'at': 1.0, 'behind': 1.0, 'important': 1.0, 'design': 1.0, 'clearly': 1.0, 'into': 1.0, 'wrap': 1.0, 'designed': 1.0, 'with': 1.0, 'mind': 1.0, 'process': 1.0, 'parent': 2.0, 'baby': 4.0, 'in': 2.0, 'contact': 1.0, 'there': 1.0, '5': 1.0, 'helps': 1.0, 'are': 1.0, 'only': 1.0, 'emulate': 1.0, 'options': 1.0, 'physical': 3.0, 'adjust': 1.0, 'carrier': 3.0, 'ever': 1.0, 'other': 1.0, 'an': 1.0, 'well': 4.0, 'straps': 1.0, 'children': 1.0, 'back': 1.0, 'snugly': 1.0, 'royal': 1.0, 'right': 1.0, 'supports': 1.0, 'loved': 1.0, 'having': 1.0, 'sleepy': 1.0, 'child': 2.0, 'bond': 1.0, 'infant': 2.0, 'carriers': 2.0, 'which': 1.0, 'good': 1.0, 'great': 1.0, 'carrying': 1.0}
Word element => {'rag': 1.0, 'burp': 1.0, 'shopping': 1.0, 'are': 1.0, 'walks': 1.0, 'sun': 1.0, 'to': 2.0, 'tired': 1.0, 'sitting': 1.0, 'ing': 1.0, 'bf': 1.0, 'cover': 1.0, 'would': 1.0, 'nor': 1.0, 'block': 2.0, 'really': 1.0, 'get': 1.0, 't': 2.0, 'if': 2.0, 'still': 1.0, 'hood': 1.0, 'note': 1.0, 'years': 1.0, 'miles': 1.0, 'be': 1.0, 'will': 2.0, 'pocket': 1.0, 'carrier': 1.0, 'few': 1.0, 'this': 1.0, 'goes': 1.0, 'synthetic': 1.0, 'again': 1.0, 'come': 1.0, 'those': 1.0, 'show': 1.0, 'dribbles': 1.0, 'bony': 1.0, '27': 1.0, 'tape': 1.0, 'so': 3.0, 'we': 1.0, 'fine': 1.0, 'reviews': 1.0, 'beanie': 1.0, 'ssc': 1.0, 'vs': 1.0, '5': 2.0, 'hubby': 1.0, 'boba': 1.0, 'also': 2.0, 's': 5.0, 'a': 7.0, 'long': 1.0, 'on': 2.0, '3': 1.0, 'thru': 1.0, 'bjorn': 1.0, 'bucket': 1.0, 'closet': 1.0, 'in': 2.0, 'it': 6.0, 'comfortable': 1.0, 'big': 2.0, 'great': 1.0, 'love': 1.0, 'fact': 1.0, 'old': 1.0, 'i': 8.0, 'hat': 1.0, 'side': 1.0, 'asleep': 1.0, 'at': 1.0, 'is': 2.0, 'comes': 1.0, 'at16': 1.0, 'hold': 2.0, 'know': 1.0, 'like': 2.0, 'natural': 1.0, 'the': 13.0, 'of': 3.0, 'c': 1.0, '6': 2.0, 'when': 1.0, 'parade': 1.0, 'fallen': 1.0, 'lot': 2.0, 'too': 2.0, 'pattern': 1.0, 'milk': 1.0, 'my': 4.0, 'me': 2.0, 'butt': 1.0, 'was': 2.0, 'crazy': 1.0, 'killing': 1.0, 'getting': 1.0, 'picked': 1.0, 'time': 1.0, 'wide': 1.0, 'research': 1.0, 'use': 1.0, 'her': 3.0, 'for': 5.0, 'fabric': 2.0, '5mo': 1.0, 'don': 1.0, 'cotton': 1.0, 'simplicity': 1.0, 'she': 3.0, 'roller': 1.0, 'w': 5.0, 'did': 1.0, 'not': 1.0, 'forward': 1.0, 'daughter': 2.0, 'warm': 1.0, '7mo': 1.0, '18': 1.0, 'next': 1.0, 'has': 1.0, 'front': 1.0, 'sleep': 1.0, 'back': 1.0, 'have': 2.0, 'worn': 1.0, 'something': 1.0, 'hrs': 1.0, 'drool': 1.0, 'amazing': 1.0, 'only': 1.0, 'complaint': 1.0, 'but': 1.0, 'felt': 1.0, 'super': 1.0, 'lint': 1.0, 'works': 1.0, 'soft': 2.0, 'brushed': 1.0, 'everything': 1.0, 'obnoxious': 1.0, 'breast': 1.0, 'that': 2.0, 'shoulders': 3.0, 'some': 1.0, 'bright': 1.0, 'black': 2.0, 'doesn': 1.0, 'picks': 1.0, 'water': 1.0, 'up': 2.0, 'white': 1.0, 'light': 2.0, 'colored': 1.0, 'b': 1.0, 'off': 2.0}
Word element => {'hours': 1.0, 'there': 1.0, 'in': 1.0, 'him': 1.0, 'having': 1.0, 'after': 1.0, 'son': 1.0, 'drench': 1.0, 'pinch': 1.0, 'room': 1.0, 'would': 1.0, 'something': 2.0, 'and': 2.0, 'poke': 1.0, 'overweight': 1.0, 'i': 5.0, 'this': 1.0, 'wouldn': 1.0, 'with': 3.0, 'just': 1.0, 'thrilled': 1.0, 'belly': 1.0, 'the': 2.0, 'have': 1.0, 'was': 4.0, '18': 1.0, 'that': 1.0, 'been': 1.0, 'contact': 1.0, 'am': 1.0, 'carriers': 1.0, 'comfortable': 1.0, 't': 2.0, 'a': 2.0, 'my': 3.0, 'it': 1.0, 'month': 1.0, 'take': 1.0, 'product': 2.0, 'for': 7.0, 'fit': 1.0, 'looking': 3.0, 'extra': 1.0, 'spare': 1.0, 'old': 1.0, 'type': 1.0, 'but': 1.0, 'back': 1.0, 'me': 1.0, 'not': 2.0, 'body': 1.0, 'sweat': 1.0, 'also': 1.0, '3': 1.0, 'on': 1.0, 'hike': 1.0, 'wasn': 1.0, 'quality': 1.0, 'baby': 1.0, 'to': 3.0, 'as': 1.0}
Word element => {'day': 1.0, 'multiple': 1.0, 'used': 1.0, 'have': 1.0, 'in': 1.0, 'rough': 1.0, 'dust': 1.0, 'fuzz': 1.0, 'sorts': 1.0, 'was': 1.0, 'doesn': 1.0, 'most': 1.0, 'use': 1.0, 'purchased': 2.0, 'for': 2.0, 'back': 2.0, 'carrier': 1.0, 'black': 1.0, 'is': 5.0, 'really': 1.0, 'the': 13.0, 'a': 4.0, 't': 1.0, 'it': 8.0, 'of': 3.0, 'drawback': 1.0, 'carry': 1.0, 'comfortable': 2.0, 'great': 2.0, 'padded': 1.0, 'since': 1.0, 'keep': 1.0, 'did': 1.0, 'better': 1.0, 'both': 1.0, 'i': 5.0, 'decided': 1.0, 'little': 1.0, 'very': 1.0, 'well': 1.0, 'ergo': 3.0, 'purchase': 1.0, 'my': 2.0, 'lo': 1.0, 'and': 8.0, 'boba': 3.0, 'time': 1.0, 'times': 1.0, 'hurt': 1.0, 'like': 2.0, 'shows': 1.0, 'straps': 1.0, 'are': 1.0, 'fabric': 3.0, 'to': 1.0, 'all': 3.0, 'performance': 1.0, 'only': 1.0, 'works': 1.0, 'much': 1.0, 'than': 1.0}
Word element => {'plus': 1.0, 's': 1.0, 'that': 1.0, 'having': 1.0, 'into': 1.0, 'the': 1.0, 't': 1.0, 'properly': 1.0, 'a': 1.0, 'to': 2.0, 'how': 1.0, 'learned': 1.0, 'haven': 1.0, 'just': 1.0, 'but': 1.0, 'tie': 1.0, 'i': 2.0, 'with': 1.0, 'this': 1.0, 'it': 2.0, 'is': 1.0, 'deal': 1.0, 'on': 1.0, 'big': 1.0, 'love': 1.0, 'for': 1.0, 'me': 2.0, 'get': 2.0, 'and': 1.0, 'perhaps': 1.0, 'baby': 2.0}
Word element => {'recommend': 1.0, 'highly': 1.0, 'special': 1.0, 'nothing': 1.0, 'dry': 1.0, 'then': 1.0, 'wash': 1.0, 'just': 1.0, 'toss': 1.0, 'and': 2.0, 'shape': 2.0, 'issue': 1.0, 'its': 2.0, 'had': 2.0, 'stretchier': 1.0, 'that': 1.0, 'uses': 1.0, 'on': 1.0, 'i': 6.0, 'is': 2.0, 'holds': 1.0, 'styles': 1.0, 'but': 2.0, 'for': 1.0, 'love': 1.0, 'of': 1.0, 'fabric': 2.0, 'have': 1.0, 'begin': 1.0, 'wraps': 3.0, 'other': 2.0, 'before': 1.0, 'it': 2.0, 'this': 2.0, 'found': 1.0, 'with': 2.0, 'adjusting': 1.0, 'to': 1.0, 'as': 1.0, 'their': 1.0, 'better': 1.0, 'hours': 1.0, 'wore': 1.0, 'because': 1.0, 'washing': 1.0, 'breeze': 1.0, 'would': 1.0, 'lose': 1.0, 'never': 1.0, 'in': 1.0, 'sag': 1.0, 'my': 1.0, 'the': 4.0, 'myself': 1.0, 'wrap': 2.0, 'a': 1.0, 'boba': 2.0, 'also': 1.0}
Word element => {'carrier': 1.0, 'right': 1.0, 'for': 2.0, 'quest': 1.0, 'continue': 1.0, 'm': 1.0, 'tried': 1.0, 'how': 1.0, 'matter': 1.0, 'at': 1.0, 'lot': 1.0, 'cried': 1.0, 'there': 1.0, 'two': 1.0, 'i': 5.0, 'old': 1.0, 'tie': 1.0, 'no': 1.0, 'whole': 1.0, 'texas': 2.0, 'seem': 1.0, 'of': 1.0, 'sagged': 1.0, 'this': 1.0, 'all': 1.0, 'to': 4.0, 'wanted': 1.0, 'was': 1.0, 'like': 3.0, 'wrap': 2.0, 'the': 3.0, 'tightly': 1.0, 'my': 4.0, 'though': 1.0, 'daughter': 2.0, 'summers': 1.0, 'times': 1.0, '3': 1.0, 'put': 1.0, 'her': 1.0, 'in': 4.0, 'didn': 1.0, 'perhaps': 1.0, 'baby': 2.0, 'is': 1.0, 'she': 1.0, 'it': 4.0, 'month': 1.0, 'felt': 1.0, 'because': 1.0, 'just': 2.0, 's': 1.0, 'going': 1.0, 'a': 1.0, 't': 1.0, 'we': 1.0, 'live': 1.0, 'and': 2.0, 'are': 1.0, 'hot': 1.0, 'material': 1.0}
Word element => {'loves': 1.0, 'carrier': 1.0, 'does': 1.0, 'one': 1.0, 'he': 1.0, 'it': 2.0, 'boba': 1.0, 'month': 1.0, 'can': 1.0, 'of': 2.0, 'out': 1.0, 'get': 2.0, 'use': 1.0, 'already': 1.0, 'to': 1.0, 'old': 1.0, 'baby': 1.0, 'will': 1.0, 'not': 1.0, 'the': 2.0, 'ashton': 1.0, 'we': 2.0, 'tell': 1.0, 'that': 1.0, 'want': 1.0, 'is': 1.0, 'many': 1.0, 'months': 1.0}
Word element => {'while': 1.0, 'paranoid': 1.0, 'very': 1.0, 'they': 1.0, 'are': 2.0, 'signs': 1.0, 'what': 1.0, 'how': 1.0, 'doesn': 1.0, 'prevent': 1.0, 'chest': 1.0, 'their': 1.0, 'result': 1.0, 'leaning': 2.0, 'a': 1.0, 't': 1.0, 's': 1.0, 'so': 1.0, 'have': 1.0, 'as': 1.0, 'all': 1.0, 'to': 2.0, 'husband': 1.0, 'it': 3.0, 'this': 1.0, 'only': 1.0, 'easy': 1.0, 'that': 3.0, 'be': 1.0, 'really': 2.0, 'explain': 1.0, 'is': 3.0, 'many': 1.0, 'too': 2.0, 'heads': 1.0, 'and': 5.0, 'me': 1.0, 'using': 1.0, 'like': 2.0, 'the': 5.0, 'stretchy': 1.0, 'carrier': 1.0, 'baby': 1.0, 'despite': 1.0, 'about': 1.0, 'seeming': 1.0, 'also': 1.0, 'i': 4.0, 'complicated': 1.0, 'put': 1.0, 'on': 2.0, 'instructions': 1.0, 'breathable': 1.0, 'but': 1.0, 'can': 1.0, 'forward': 2.0, 'size': 1.0, 'used': 1.0, 'm': 1.0, 'both': 1.0, 'by': 1.0, 'one': 1.0, 'fact': 1.0, 'my': 1.0, 'fits': 1.0, 'unlike': 1.0, 'fabric': 1.0, 'carriers': 1.0, 'quick': 1.0, 'knock': 1.0, 'warn': 1.0, 'infant': 1.0}
Word element => {'for': 1.0, 'a': 1.0, 'adjusting': 1.0, 're': 1.0, 'good': 1.0, 'keep': 1.0, 'to': 1.0, 'won': 1.0, 'like': 1.0, 'fit': 1.0, 'have': 1.0, 't': 2.0, 'haven': 1.0, 'used': 1.0, 'seems': 1.0, 'but': 1.0, 'it': 2.0, 'love': 1.0, 'yet': 1.0, 'the': 1.0, 'i': 1.0, 'stretchy': 1.0, 'material': 1.0}
Word element => {'early': 1.0, 'makes': 1.0, 'said': 1.0, 'who': 1.0, 'people': 1.0, 'would': 1.0, 'helps': 1.0, 'if': 1.0, 'out': 1.0, 'skinny': 1.0, 'him': 1.0, 'how': 2.0, 'pleased': 1.0, 'very': 1.0, 'practice': 1.0, 'fine': 1.0, 'just': 1.0, 'that': 1.0, 'nephew': 1.0, 'had': 2.0, 'came': 1.0, 'front': 1.0, 'instructions': 1.0, 'don': 1.0, 'up': 2.0, 'over': 1.0, 'recommend': 1.0, 'was': 2.0, 'minutes': 1.0, 'size': 1.0, '4': 1.0, 'i': 4.0, 'took': 1.0, 'm': 1.0, 'im': 2.0, 'product': 1.0, 'fit': 1.0, 'for': 2.0, 'months': 1.0, 'one': 1.0, 't': 1.0, 'a': 3.0, 'the': 2.0, 'wrap': 1.0, 'nicely': 1.0, 'first': 1.0, 'with': 3.0, 'it': 6.0, 'perfect': 1.0, 'this': 3.0, 'time': 1.0, 'mom': 1.0, 'and': 6.0, 'give': 1.0, 'those': 1.0, 'me': 1.0, 'follow': 1.0, 'several': 1.0, 'belly': 1.0, 'about': 2.0, 'baby': 1.0, 'put': 1.0, 'on': 4.0, '3': 1.0, 'later': 1.0, 'well': 1.0, 'comfortably': 1.0, 'perfectly': 1.0, '8': 1.0, 'most': 1.0, 'pregnant': 1.0, 'fabric': 1.0, 'to': 5.0, 'grow': 1.0, 'all': 1.0, '5': 2.0, 'than': 1.0, 'difficult': 1.0, 'still': 1.0, 'held': 2.0, 'enough': 1.0, 'left': 1.0, 'more': 1.0, 'is': 1.0, 'definitely': 2.0, 'my': 1.0, 'fits': 1.0}
Word element => {'s': 1.0, 'baby': 1.0, 'for': 2.0, 'comfortable': 2.0, 'friends': 1.0, 'me': 1.0, 'and': 2.0, 'all': 1.0, 'but': 1.0, 'easy': 1.0, 'the': 2.0, 't': 1.0, 'use': 1.0, 'loved': 1.0, 'wraps': 1.0, 'haven': 1.0, 'tried': 1.0, 'i': 3.0, 'recommended': 1.0, 'boba': 1.0, 'to': 1.0, 'over': 1.0, 'my': 2.0, 'went': 1.0, 'so': 1.0, 'it': 4.0, 'with': 1.0, 'seems': 1.0, 'moby': 1.0, 've': 1.0}
Word element => {'stripe': 1.0, 'tight': 1.0, 'like': 1.0, 'and': 1.0, 'it': 2.0, 'great': 1.0, 'you': 1.0, 'make': 1.0, 'the': 2.0, 'get': 1.0, 'hang': 1.0, 'of': 1.0, 'how': 2.0, 'product': 1.0, 'once': 1.0, 'to': 2.0, 'also': 1.0, 'wrap': 1.0}
Word element => {'soft': 1.0, 'nice': 1.0, 'material': 1.0, 'here': 1.0, 'got': 1.0, 'recommended': 1.0, 'problem': 1.0, 'arrived': 1.0, 'it': 2.0, 'is': 1.0, 'really': 1.0, 'video': 1.0, 'walks': 1.0, 'been': 1.0, 'highly': 1.0, 'baby': 1.0, 'for': 1.0, 'has': 1.0, 'shopping': 1.0, 'or': 3.0, 'boba': 1.0, 'had': 1.0, 'watched': 1.0, 'to': 1.0, 'housework': 1.0, 'great': 1.0, 'the': 1.0, 'just': 1.0, 'easy': 1.0, 'once': 1.0, 'no': 1.0, 'calming': 1.0, 'before': 1.0, 'down': 1.0, 'wrap': 1.0, 'a': 1.0, 'fussy': 1.0, 'and': 2.0, 'get': 1.0, 'on': 1.0}
Word element => {'the': 1.0, 'better': 1.0, 'keep': 1.0, 'baby': 2.0, 'work': 1.0, 'will': 2.0, 'is': 3.0, 'smaller': 2.0, 'woman': 1.0, 'as': 2.0, 'up': 1.0, 'like': 1.0, 'larger': 1.0, 'large': 1.0, 'when': 1.0, 'too': 1.0, 'wrap': 2.0, 'a': 2.0, 'with': 1.0, 'this': 1.0, 'it': 3.0, 'not': 1.0, 'nearly': 1.0, 'might': 1.0, 'easy': 1.0, 'hoping': 1.0, 'to': 1.0, 'for': 1.0, 'one': 1.0, 'we': 1.0}
Word element => {'small': 1.0, 'so': 1.0, 'when': 1.0, 'fabric': 1.0, 'lot': 1.0, 'is': 2.0, 'worked': 1.0, 'of': 2.0, 'held': 1.0, 'if': 1.0, 'most': 1.0, 'accomplish': 1.0, 'knew': 1.0, 'way': 1.0, 'dislocated': 1.0, 'a': 2.0, 'we': 3.0, 'knee': 1.0, 'for': 1.0, 'little': 1.0, 'time': 1.0, 'odd': 1.0, 'pakage': 1.0, 'that': 1.0, 'our': 1.0, 'could': 1.0, '9lbs': 1.0, 'but': 1.0, 'weeks': 1.0, 'deal': 1.0, 'sounds': 1.0, 'and': 1.0, 'him': 2.0, 'with': 1.0, 'this': 1.0, 'only': 1.0, 'it': 2.0, 'was': 1.0, 'had': 1.0, 'vet': 1.0, 'wanted': 1.0, 'to': 2.0, 'dog': 1.0, 'rest': 1.0, 'the': 4.0, '2': 1.0}
Word element => {}
Word element => {'snugg': 1.0, 'it': 2.0, 'him': 1.0, 'after': 1.0, 'not': 1.0, 'in': 1.0, 'like': 1.0, 'as': 1.0, 'a': 1.0, 'hold': 1.0, 'stay': 1.0, 'of': 1.0, 'really': 1.0, 'does': 1.0, 'uses': 1.0, 'bad': 1.0, 'to': 1.0, 'preemie': 1.0, 'my': 1.0, 'and': 1.0, 'couple': 1.0, 'stretched': 1.0, 'out': 1.0, 'didnt': 1.0}
Word element => {'so': 1.0, 'her': 1.0, 'put': 1.0, 'worth': 1.0, 'every': 1.0, 'to': 1.0, 'right': 1.0, 'sleep': 1.0, 'just': 1.0, 'fall': 1.0, 's': 2.0, 'i': 2.0, 'sooo': 1.0, 'my': 1.0, 'it': 4.0, 'great': 1.0, 'can': 1.0, 'do': 1.0, 'time': 1.0, 'anything': 1.0, 'daughter': 1.0, 'in': 2.0}
Word element => {'heat': 1.0, 'to': 1.0, 'in': 1.0, 'free': 1.0, 'number': 1.0, 'two': 2.0, 'pregnancy': 1.0, 'summer': 1.0, 'is': 2.0, 'during': 1.0, 'and': 1.0, 'it': 1.0, 'only': 1.0, 'this': 1.0, 'baby': 1.0, 'bought': 1.0, 'must': 1.0, 'should': 1.0, 'how': 1.0, 'thick': 1.0, 'relation': 1.0, 'for': 1.0, 'have': 2.0, 'all': 1.0, 'hands': 1.0, 'moms': 1.0, 'a': 1.0, 'dads': 1.0, 'downside': 1.0}
Word element => {'shorter': 1.0, 'little': 1.0, 'be': 1.0, 'long': 1.0, 'pretty': 1.0, 'cloth': 1.0, 'on': 1.0, 'put': 1.0, 'weeks': 1.0, 'but': 2.0, 'instantly': 1.0, 'back': 1.0, 'day': 1.0, 'from': 1.0, 'the': 3.0, 'it': 7.0, 'only': 1.0, 'i': 4.0, 'got': 2.0, '6': 1.0, 'of': 1.0, 'takes': 1.0, 'reviews': 1.0, 'because': 1.0, 'love': 1.0, 'product': 1.0, 'boba': 1.0, 'cover': 1.0, 'great': 1.0, '1': 1.0, 'issue': 1.0, 'this': 1.0, 'wish': 1.0, 'comparison': 1.0, 'purchased': 1.0, 'had': 1.0, 'in': 2.0, 'bjorn': 1.0, 'baby': 1.0, 'my': 2.0, 'goes': 1.0, 'as': 2.0, 'to': 3.0, 'sleep': 1.0, 'almost': 1.0, 'and': 3.0, 'soon': 1.0, 'her': 1.0, 'kill': 1.0, 'around': 1.0, 'is': 2.0, 'could': 1.0, 't': 1.0, 'a': 2.0, 'few': 1.0, 'doesn': 1.0, 'minutes': 1.0}
Word element => {'recommend': 1.0, 'back': 1.0, 'driving': 1.0, 'just': 1.0, 'its': 1.0, 'once': 1.0, 'get': 1.0, 'take': 2.0, 'so': 1.0, 'complaints': 1.0, 'still': 1.0, 'while': 2.0, 'can': 2.0, 'but': 1.0, '2': 1.0, 'chase': 1.0, 'use': 1.0, 'great': 1.0, 'worked': 1.0, 'old': 2.0, 'weighs': 1.0, 'no': 1.0, 'tie': 1.0, 'out': 1.0, 'keeping': 1.0, 'newborn': 1.0, 'also': 1.0, 'does': 1.0, 'having': 1.0, 'in': 3.0, 't': 1.0, 'a': 2.0, 'the': 1.0, 'wrap': 2.0, 'since': 1.0, 'well': 1.0, 'minute': 1.0, 'perfect': 1.0, 'this': 1.0, 'daily': 1.0, 'after': 1.0, '19': 1.0, 'then': 1.0, 'far': 1.0, 'niece': 1.0, '11': 1.0, 'you': 5.0, 'set': 1.0, 'used': 1.0, 'long': 1.0, 'leave': 2.0, 'have': 2.0, 'year': 1.0, 'almost': 1.0, 'for': 1.0, 'my': 4.0, 'tight': 1.0, 'daughter': 2.0, 'month': 1.0, 'it': 10.0, 'she': 1.0, 'i': 5.0, 'pounds': 1.0, 'support': 1.0, 'and': 2.0, 'wonderfully': 1.0, 'enough': 2.0, 'is': 2.0, 'around': 2.0, 'should': 1.0, 'on': 3.0, 'put': 2.0, 'your': 1.0, 'up': 1.0, 'child': 1.0, 'baby': 2.0, 'them': 1.0, 'hold': 1.0, 'close': 2.0, 'as': 3.0, 'to': 4.0}
Word element => {'information': 1.0, 'official': 1.0, 'visiting': 1.0, 'july': 1.0, 'middle': 1.0, 'after': 1.0, 'start': 1.0, 'would': 2.0, 'sometimes': 1.0, 'month': 1.0, 'it': 6.0, 'is': 4.0, 'around': 1.0, 'raved': 1.0, 's': 2.0, 'internet': 1.0, 'a': 4.0, 'got': 1.0, 'we': 1.0, 'reviews': 2.0, 'and': 7.0, 'off': 1.0, 'neither': 1.0, 'just': 1.0, 'they': 2.0, 'comfort': 1.0, 'who': 1.0, 'since': 1.0, 'friend': 2.0, 'best': 1.0, 'house': 1.0, 'both': 3.0, 'now': 1.0, 'buying': 1.0, 'with': 2.0, 'warm': 1.0, 'had': 2.0, 'recommend': 1.0, 'were': 1.0, 'website': 2.0, 'my': 2.0, 'her': 2.0, 'benefits': 1.0, 'for': 3.0, 'bought': 1.0, 'one': 1.0, 'health': 1.0, 'color': 1.0, 'taking': 1.0, 'about': 1.0, 'she': 7.0, 'baby': 7.0, 'started': 1.0, 'any': 1.0, 'to': 3.0, 'good': 1.0, 'based': 1.0, 'highly': 1.0, 'this': 3.0, 'the': 14.0, 'of': 3.0, 'research': 1.0, 'first': 1.0, 'old': 1.0, 'i': 2.0, 'product': 2.0, 'products': 2.0, 'using': 1.0, 'rather': 1.0, 'like': 1.0, 'said': 4.0, 'in': 4.0, 'love': 1.0, 'he': 1.0, 'prefers': 1.0, 'can': 1.0, 'be': 1.0, 'enough': 1.0, 'boba': 1.0, 'us': 1.0, 'also': 2.0, 'item': 1.0, 'carrier': 3.0, 'way': 1.0, 'than': 1.0, 'that': 3.0, 'because': 1.0, 'swing': 1.0, 'or': 1.0, 'car': 1.0, 'but': 2.0, 'enjoys': 1.0, 'do': 1.0, 'only': 1.0, 'other': 1.0, 'things': 1.0, 'while': 1.0, 'public': 1.0, 'experience': 1.0, 'comfortable': 1.0, 'great': 1.0, 'out': 1.0, 'more': 1.0, 'husband': 1.0, 'used': 1.0, 'was': 2.0, 'little': 1.0, 'long': 1.0, 'not': 1.0, 'get': 2.0, 'complaint': 1.0}
Word element => {'fits': 1.0, 'large': 1.0, 'size': 1.0, 'plus': 1.0, 'am': 1.0, 'also': 1.0, 'nice': 1.0, 'was': 1.0, 'to': 1.0, 'a': 3.0, 'is': 2.0, 'others': 1.0, 'it': 1.0, 'this': 1.0, 'wearing': 1.0, 'cheaper': 1.0, 'bust': 1.0, 'found': 1.0, 'and': 3.0, 'way': 1.0, 'the': 3.0, 'great': 2.0, 'baby': 1.0, 'person': 1.0, 'bit': 1.0, 'different': 1.0, 'go': 1.0, 'than': 1.0, 'definitely': 1.0, 'positions': 1.0, 'i': 2.0, 'buy': 1.0, 'instructions': 1.0, 'sling': 1.0, 'for': 1.0}
Word element => {'holding': 1.0, 'unless': 1.0, 'girl': 1.0, 'momma': 1.0, 'netflix': 1.0, 'watch': 1.0, 'rather': 1.0, 'bought': 1.0, 'dishes': 1.0, 'thing': 1.0, 'no': 1.0, 'have': 3.0, 'd': 2.0, 'had': 2.0, 'eventually': 1.0, 'she': 1.0, 'baby': 4.0, 'got': 3.0, 'minutes': 1.0, 'was': 3.0, 'and': 9.0, 'tucked': 1.0, 'happy': 2.0, 'too': 4.0, 'owned': 1.0, 'soon': 1.0, 'fading': 1.0, 'wayward': 1.0, 'wrap': 2.0, 'stretchy': 1.0, 'hanging': 1.0, 'a': 2.0, '3': 2.0, 'love': 1.0, 'for': 1.0, 'mess': 1.0, 'i': 14.0, 'complicated': 1.0, 'less': 2.0, 'watched': 1.0, 'old': 1.0, 'because': 2.0, 'that': 3.0, 'problems': 1.0, 'inside': 2.0, 'year': 1.0, 'video': 1.0, 'but': 4.0, 'of': 1.0, 'the': 6.0, 'person': 1.0, 'moby': 1.0, 'shopping': 1.0, 'how': 1.0, 'm': 1.0, 'in': 2.0, 'now': 2.0, 'youtube': 1.0, 'little': 1.0, 'never': 2.0, 'liked': 1.0, 'boba': 1.0, 'go': 1.0, 'hour': 1.0, 'will': 1.0, 'snug': 1.0, 'is': 2.0, 'super': 1.0, 'down': 1.0, 've': 1.0, 'bulky': 1.0, 'tight': 1.0, 'would': 1.0, 'can': 1.0, 'so': 3.0, 'hung': 1.0, 'am': 1.0, 'thought': 1.0, 'it': 10.0, 'wear': 1.0, 'comfortable': 1.0, 'not': 3.0, 'xl': 1.0, 'my': 4.0, 'me': 1.0, 'stretching': 2.0, 'as': 3.0, 'to': 3.0, 'an': 2.0, 'on': 2.0, 'update': 1.0, 'her': 2.0, 'wash': 1.0, 'since': 1.0, 'space': 1.0, 'worried': 1.0, 'wrapped': 1.0, 's': 2.0, 'funny': 1.0, 'do': 1.0, 'much': 2.0, 'behind': 1.0, 'you': 1.0, 'able': 1.0, 'trouble': 2.0, 'legs': 1.0, 'get': 1.0, 'front': 1.0, 'with': 4.0, 'plenty': 1.0, 'than': 3.0, 'matter': 1.0, 'way': 1.0}
Word element => {'protected': 1.0, 'baby': 1.0, 'her': 1.0, 'use': 1.0, 'keep': 1.0, 'bring': 1.0, 'easily': 1.0, 'on': 1.0, 'experience': 1.0, 'siblings': 1.0, 'little': 1.0, 'after': 1.0, 'and': 3.0, 'from': 1.0, 'very': 1.0, 'my': 1.0, 'the': 2.0, 'has': 1.0, 'loves': 1.0, 'mostly': 1.0, 'good': 1.0, 'for': 1.0, 'hands': 1.0, 'she': 3.0, 'print': 1.0, 'gift': 1.0, 'able': 2.0, 'likes': 1.0, 'fabric': 1.0, 'a': 2.0, 'it': 1.0, 'only': 1.0, 'sister': 1.0, 'durable': 1.0, 'this': 1.0, 'things': 1.0, 'was': 2.0, 'to': 3.0, 'breathable': 1.0, 'say': 1.0, 'said': 1.0, 'seems': 1.0, 'adoring': 1.0, 'put': 1.0, 'but': 1.0}
Word element => {'after': 1.0, 'did': 1.0, 'breeze': 1.0, 'with': 1.0, 'pleased': 1.0, 'k': 1.0, 'purchased': 1.0, 'out': 1.0, 'loose': 1.0, 'slide': 1.0, 'properly': 1.0, 'if': 3.0, 'keep': 1.0, 'wrapping': 1.0, 'very': 1.0, 'little': 2.0, 'i': 5.0, 'not': 2.0, 'trip': 1.0, 'just': 1.0, 'cracks': 1.0, 'to': 2.0, 'trying': 1.0, 'yourself': 1.0, 'a': 3.0, 't': 1.0, 'that': 2.0, 'the': 2.0, 'wrap': 4.0, 'sure': 1.0, 'cross': 1.0, 'it': 6.0, 'washing': 1.0, 'he': 1.0, 'shrink': 1.0, 'you': 1.0, 'am': 2.0, 'so': 1.0, 'long': 1.0, 'his': 1.0, 'put': 1.0, 'on': 4.0, 'but': 2.0, 'back': 1.0, 'will': 2.0, 'pulled': 1.0, 'feel': 1.0, 'around': 1.0, 'is': 2.0, 'holds': 1.0, 'my': 6.0, 'high': 1.0, 'tan': 1.0, 'baby': 2.0, 'chest': 2.0, 'afraid': 1.0, 'over': 1.0, 'don': 1.0, 'up': 1.0, 'lower': 1.0, 'chin': 1.0, 'and': 2.0, 'too': 2.0, 'head': 2.0}
Word element => {'drag': 1.0, 'about': 1.0, 'con': 1.0, 'don': 1.0, 'house': 1.0, 'leaving': 1.0, 'long': 1.0, 'on': 3.0, 'using': 1.0, 'be': 1.0, 'will': 3.0, 's': 1.0, 'advance': 1.0, 'know': 1.0, 'console': 1.0, 'center': 1.0, 'keep': 1.0, 'bought': 1.0, 'sleep': 1.0, 'actually': 1.0, 'allowed': 1.0, 'morning': 1.0, 'happened': 1.0, 'moments': 1.0, 'his': 1.0, 'down': 1.0, 'help': 1.0, 'have': 2.0, 'if': 1.0, 'still': 1.0, 'get': 1.0, 'months': 2.0, '5': 1.0, 'son': 1.0, 'perfect': 1.0, 'stretches': 1.0, 'do': 1.0, '16': 1.0, 'put': 3.0, 'we': 1.0, 'then': 1.0, 'your': 1.0, 'growing': 1.0, 'out': 2.0, 'how': 1.0, 'moby': 4.0, 'love': 1.0, 'he': 3.0, 'now': 1.0, 'figure': 1.0, 'fit': 2.0, 't': 3.0, 'a': 7.0, 'figured': 1.0, 'wrap': 8.0, 'lot': 1.0, 'try': 1.0, 'after': 3.0, 'this': 2.0, 'few': 4.0, 'fussy': 1.0, 'by': 1.0, 'friend': 1.0, 'finally': 1.0, 'given': 2.0, 'i': 18.0, 'two': 3.0, 'the': 17.0, 'of': 5.0, 'in': 9.0, 'frogmamma': 1.0, 'born': 3.0, '2012': 1.0, 'attempts': 1.0, 'decided': 1.0, 'body': 1.0, 'town': 1.0, 'as': 2.0, 'all': 1.0, 'couldn': 1.0, 'see': 1.0, 'and': 7.0, 'was': 6.0, 'him': 1.0, 'it': 11.0, 'first': 2.0, 'rapidly': 1.0, 'december': 1.0, 'she': 1.0, 'baby': 6.0, 'always': 1.0, 'them': 1.0, 'softer': 1.0, 'another': 2.0, 'old': 1.0, 'fact': 1.0, 'only': 1.0, 'quickly': 1.0, 'wraps': 2.0, 'but': 3.0, 'would': 2.0, 'weeks': 2.0, 'gifts': 1.0, 'didn': 1.0, 'before': 3.0, 'that': 5.0, 'up': 1.0, 'really': 1.0, 'material': 2.0, 'car': 1.0, 'irritated': 1.0, 'had': 3.0, 'type': 2.0, 'perfectly': 1.0, 'which': 1.0, 'gift': 1.0, 'good': 1.0, 'carriers': 1.0, 'want': 1.0, 'parking': 1.0, 'loose': 1.0, 'gave': 1.0, 'same': 1.0, 'her': 1.0, 'use': 2.0, 'even': 1.0, 'contacted': 1.0, 'sells': 1.0, 'those': 1.0, 'went': 1.0, 'woman': 1.0, 'who': 1.0, 'ground': 1.0, 'types': 1.0, 'showed': 1.0, 'calm': 1.0, 'my': 5.0, 'me': 2.0, 'boba': 3.0, 'carrier': 2.0, 'wanted': 1.0, 'pounds': 1.0, 'compared': 1.0, 'stretchier': 1.0, 'breakfast': 1.0, 'during': 1.0, 'fell': 1.0, 'part': 1.0, 'touch': 1.0, 'everytime': 1.0, 'you': 2.0, 'while': 2.0, 'tie': 1.0, 'constantly': 1.0, 'so': 2.0, 'pretty': 1.0, 'to': 12.0, 'became': 1.0, 'against': 1.0, 'snug': 1.0, 'is': 3.0}
Word element => {'though': 1.0, 'soft': 1.0, 'tight': 1.0, 'place': 1.0, 'my': 2.0, 'the': 1.0, 'keeping': 1.0, 'wrap': 1.0, 'a': 1.0, 'kept': 1.0, 'time': 1.0, 'on': 1.0, 'had': 1.0, 'worked': 1.0, 'ok': 1.0, 'he': 1.0, 'hard': 1.0, 'it': 1.0, 'newborn': 1.0, 'having': 1.0, 'in': 1.0, 'falling': 1.0, 'lower': 1.0, 'enough': 1.0, 'stomach': 1.0, 'material': 1.0, 'despite': 1.0, 'but': 1.0, 'tied': 1.0}
Word element => {'slings': 1.0, '8lbs': 1.0, 'crossed': 1.0, 'once': 1.0, 'but': 1.0, 'best': 1.0, 'convenient': 1.0, 'seven': 1.0, 'our': 1.0, 'maya': 1.0, '5lbs': 1.0, 'bjorn': 2.0, 'baby': 2.0, 'sling': 2.0, 'nanny': 1.0, 'also': 1.0, 'typical': 1.0, 'husband': 1.0, 'babies': 2.0, 'more': 2.0, 'wants': 1.0, 'who': 1.0, 'which': 2.0, 'positions': 1.0, '2': 1.0, 'thing': 2.0, 'little': 1.0, 'curled': 1.0, 'were': 3.0, 'twins': 2.0, 'in': 4.0, 'said': 1.0, 'frog': 1.0, 'newborn': 2.0, '6lbs': 1.0, 'out': 2.0, 'often': 1.0, 'for': 1.0, 'actually': 1.0, 'put': 1.0, '3': 1.0, 'other': 1.0, 'all': 2.0, 'as': 1.0, 'able': 1.0, 'around': 1.0, 'is': 2.0, 'at': 2.0, 'and': 12.0, 'worked': 2.0, 'don': 1.0, 'isn': 1.0, '7': 1.0, 'up': 1.0, 'takes': 2.0, 'right': 1.0, 'wrap': 3.0, 'the': 5.0, 'point': 1.0, 'old': 1.0, 'works': 1.0, 'crying': 1.0, 'too': 2.0, 'try': 1.0, 'preferred': 1.0, 's': 2.0, 'fit': 1.0, 't': 4.0, 'we': 1.0, 'tiny': 1.0, 'a': 3.0, 'hard': 1.0, 'while': 2.0, 'it': 7.0, '15lbs': 1.0, 'even': 1.0, 'to': 8.0, 'straight': 1.0, 'forward': 1.0, 'should': 1.0, 'figure': 1.0, 'now': 1.0, 'are': 1.0, 'about': 1.0, 'darn': 1.0, 'each': 1.0, 'position': 1.0, 'approaching': 1.0, 'so': 4.0, 'can': 3.0, 'they': 7.0, 'aren': 1.0, 'when': 1.0, 'what': 1.0, 'sit': 1.0, 'with': 2.0, 'off': 2.0, 'wrapped': 1.0, 'faster': 1.0, 'just': 4.0, 'my': 2.0, 'me': 1.0, 'very': 3.0, 'being': 1.0, 'boob': 1.0, 'want': 1.0, 'eat': 2.0, 'never': 1.0, 'twin': 1.0, 'positioned': 1.0, 'anyway': 1.0, 'use': 3.0, 'this': 3.0, 'anymore': 1.0, 'on': 3.0, 'long': 2.0, 'months': 1.0, 'legs': 1.0, 'get': 4.0, 'well': 1.0, 'i': 5.0, 'breastfeed': 1.0, 'sometimes': 1.0, 'kid': 1.0, 'that': 3.0, 'because': 1.0, 'or': 4.0, 'have': 1.0}
Word element => {'10lbs': 1.0, 'over': 1.0, 'with': 1.0, 'someone': 1.0, 'just': 1.0, 'was': 1.0, 'simple': 1.0, 'alot': 1.0, 'moving': 1.0, 'twisting': 1.0, 'but': 3.0, 'myself': 1.0, 'wish': 1.0, 'this': 5.0, 'down': 2.0, 'sweep': 1.0, 'or': 4.0, 'no': 2.0, 'let': 1.0, 'at': 1.0, 'is': 1.0, 'around': 1.0, 'on': 2.0, 'make': 2.0, 'have': 3.0, 'not': 2.0, 'what': 1.0, 'had': 2.0, 'would': 2.0, 'medium': 1.0, 'either': 1.0, 'slide': 1.0, 'wearing': 2.0, 'while': 2.0, 'bending': 1.0, 'stretch': 2.0, 'less': 1.0, '3g': 1.0, 'for': 1.0, 'actually': 1.0, 'and': 3.0, 'much': 1.0, 'floor': 1.0, 'do': 2.0, 'considering': 1.0, 'i': 12.0, 'wrap': 5.0, 'into': 2.0, 'fall': 1.0, 'that': 1.0, 'after': 2.0, 'small': 1.0, 'a': 3.0, 't': 3.0, 'going': 2.0, 'first': 1.0, 'love': 3.0, 'he': 2.0, 'moby': 1.0, 'how': 1.0, 'baby': 2.0, 'you': 1.0, 'starts': 2.0, 'me': 1.0, 'my': 1.0, 'it': 7.0, 'him': 3.0, 'supported': 1.0, 'to': 7.0, 'against': 1.0, 'can': 1.0, 'so': 3.0, 'doesn': 2.0, 'be': 1.0, 'slides': 1.0, 'air': 1.0, 'sag': 1.0, 'pocket': 1.0, 'between': 1.0, 'say': 1.0, 'comfortable': 1.0, 'probably': 1.0, 'keeps': 1.0, 'feel': 1.0, 'doing': 1.0, 'longer': 1.0, 'the': 7.0, 'of': 2.0, 'seem': 1.0, 'made': 1.0, 'good': 1.0, 'however': 1.0, 'youre': 1.0, 'anything': 1.0, 'other': 1.0, 'than': 1.0, 'find': 1.0, 'perfect': 1.0, 'walking': 1.0, 'm': 3.0, 'loose': 1.0, 'ergo': 1.0, 'definitely': 1.0, 'see': 1.0, 'until': 1.0, 'own': 1.0, 'if': 1.0, 'happy': 1.0, 'also': 1.0, 'recommend': 1.0, 'known': 1.0}
Word element => {'use': 1.0, 'easy': 1.0, 'very': 1.0, 'i': 2.0, 'wrap': 1.0, 'so': 2.0, 'you': 1.0, 'buy': 1.0, 'in': 1.0, 'with': 1.0, 'this': 1.0, 'it': 1.0, 'love': 2.0, 'great': 1.0, 'recommended': 1.0, 'to': 2.0}
Word element => {'baby': 1.0, 'besides': 1.0, 'don': 1.0, 'sore': 1.0, 'straps': 1.0, 'always': 1.0, 'was': 1.0, 'oldest': 1.0, 'with': 2.0, 'carrier': 1.0, 'comfortably': 1.0, 'bring': 1.0, 'daughter': 1.0, 'expect': 1.0, 'frame': 1.0, 'an': 1.0, 're': 1.0, 'house': 1.0, 'of': 2.0, 'out': 1.0, 'had': 2.0, 'now': 1.0, 'wearing': 1.0, 'from': 1.0, 'matter': 1.0, 'style': 1.0, 'me': 1.0, 'eat': 2.0, 'same': 1.0, 'is': 1.0, 'buckle': 1.0, 'people': 1.0, 'feeds': 1.0, 'to': 3.0, 'any': 1.0, 'no': 1.0, 'carry': 2.0, 'or': 1.0, 'almost': 1.0, 'i': 7.0, 'she': 1.0, 'it': 2.0, 'strap': 1.0, 'are': 3.0, 'extended': 1.0, 'my': 5.0, 'boba': 3.0, 'at': 1.0, 'since': 1.0, 'the': 8.0, 'wrap': 1.0, 't': 1.0, 'we': 2.0, 'a': 2.0, 'your': 1.0, 'constantly': 1.0, 'size': 1.0, 'even': 1.0, 'got': 1.0, 'and': 2.0, 'asking': 1.0, 'for': 1.0, 'love': 1.0, 'where': 2.0, 'you': 4.0, 'when': 1.0, 'adjust': 1.0, 'so': 1.0, 'time': 2.0, 'front': 1.0, 'breast': 1.0, 'one': 1.0, 'months': 1.0, 'learn': 1.0, 'feeding': 1.0, 'wherever': 1.0, 'little': 1.0, 'age': 1.0, 'in': 3.0, 'can': 1.0, 'but': 1.0, 'champ': 1.0, '8': 1.0, 'discreetly': 1.0, 'know': 2.0, 'like': 1.0, 'having': 1.0, 'standard': 1.0}
Word element => {'home': 1.0, 'at': 1.0, 'this': 1.0, 'continue': 1.0, 'walking': 1.0, 'great': 1.0, 'comfortable': 1.0, 'very': 1.0, 'him': 1.0, 'were': 2.0, 'that': 1.0, 'things': 1.0, 'me': 1.0, 'being': 1.0, 'enjoyed': 1.0, 'issue': 1.0, 'eliminating': 1.0, 'left': 1.0, 'fabric': 1.0, 'of': 1.0, 'quite': 1.0, 'there': 1.0, 'close': 1.0, 'extra': 1.0, 'person': 1.0, 'go': 1.0, 'we': 3.0, 'going': 1.0, 'a': 5.0, 'wrapped': 1.0, 'few': 2.0, 'bit': 1.0, 'so': 2.0, 'small': 1.0, 'around': 2.0, 'is': 2.0, 'really': 1.0, 'back': 1.0, 'inside': 1.0, 'learn': 1.0, 'both': 1.0, 'best': 1.0, 'flying': 1.0, 'watching': 1.0, 'i': 5.0, 'way': 1.0, 'it': 6.0, 'to': 7.0, 'was': 4.0, 'also': 1.0, 'boba': 1.0, 'see': 1.0, 'securely': 1.0, 'purchased': 1.0, 'but': 1.0, 'most': 2.0, 'out': 1.0, 'keeping': 1.0, 'use': 1.0, 'front': 1.0, 'travel': 1.0, 'difficult': 1.0, 'like': 1.0, 'brought': 1.0, 'part': 1.0, 'on': 2.0, 'put': 1.0, 'positioning': 1.0, 'and': 4.0, 'across': 1.0, 'enough': 1.0, 'for': 1.0, 'fit': 1.0, 'purchase': 1.0, 'tight': 1.0, 'my': 2.0, 'wrap': 4.0, 'the': 7.0, 'without': 1.0, 'twisting': 1.0, 'able': 2.0, 'videos': 1.0, 'baby': 2.0, 'times': 1.0, 'when': 2.0, 'am': 1.0}
Word element => {'and': 1.0, 'in': 1.0, 'being': 1.0, 'while': 1.0, 'explosion': 1.0, 'did': 1.0, 'correctly': 1.0, 'memorize': 1.0, '5': 1.0, 'took': 1.0, 'poop': 1.0, 'only': 1.0, 'wrapping': 1.0, 'get': 1.0, 'easy': 1.0, 'really': 1.0, 'at': 1.0, 'carrier': 1.0, 'ready': 1.0, 'washed': 1.0, 'carried': 1.0, 'think': 1.0, 'but': 1.0, 'the': 1.0, 'wrap': 1.0, 'him': 1.0, 'be': 1.0, 'one': 1.0, 'hang': 1.0, 'bought': 1.0, 'to': 5.0, 'had': 1.0, 'look': 1.0, 'like': 2.0, 'was': 2.0, 'doesn': 1.0, 'now': 1.0, 'weeks': 1.0, 'once': 1.0, 'of': 2.0, 'up': 2.0, 'over': 1.0, 'nicely': 1.0, 'ways': 1.0, 'larger': 1.0, 'he': 4.0, 'it': 6.0, 'used': 1.0, 'around': 1.0, 'is': 1.0, 'more': 2.0, 'so': 1.0, 'smaller': 1.0, 'baby': 2.0, '10lbs': 1.0, 'i': 5.0, 'point': 1.0, 'old': 1.0, 'times': 1.0, 'you': 2.0, 'when': 2.0, 'that': 1.0, 'my': 1.0, 'tightly': 1.0, 'soft': 1.0, 'this': 2.0, 'wish': 1.0, 'clean': 1.0, 'different': 2.0, 'for': 2.0, 'maybe': 1.0, 'because': 1.0, 's': 2.0, 't': 1.0, 'a': 2.0, 'wrapped': 1.0, 'just': 2.0, 'few': 1.0, 'would': 1.0, 'have': 2.0, 'day': 1.0, 'gotten': 1.0, 'instructions': 1.0, 'use': 2.0, 'out': 1.0, 'need': 1.0}
Word element => {'than': 1.0, 'an': 1.0, 'up': 1.0, 'ended': 1.0, 'saw': 1.0, 'even': 1.0, 'he': 2.0, 'use': 1.0, 'get': 1.0, 'as': 1.0, 'to': 2.0, 'wanted': 1.0, 'boba': 1.0, 'also': 1.0, 'taste': 1.0, 'suits': 1.0, 'if': 1.0, 'hsuband': 1.0, 'first': 1.0, 'try': 2.0, 'so': 1.0, 'refused': 1.0, 'like': 1.0, 'newborn': 1.0, 'length': 1.0, 'in': 1.0, 'advice': 1.0, 'bought': 1.0, 'wraps': 1.0, 'other': 1.0, 'of': 3.0, 'mothers': 1.0, 'your': 1.0, 'on': 1.0, 'booklet': 1.0, 'comfortable': 1.0, 'feel': 2.0, 'lot': 2.0, 'i': 7.0, 'when': 1.0, 'am': 2.0, 'ssc': 1.0, 'experimented': 1.0, 'and': 6.0, 'baby': 2.0, 'material': 1.0, 'personal': 1.0, 'a': 5.0, 'mom': 1.0, 'was': 4.0, 'would': 1.0, 'new': 1.0, 'veryyyyyy': 1.0, 'recommended': 1.0, 'did': 1.0, 'looking': 1.0, 'see': 1.0, 'online': 1.0, 'soemthing': 1.0, 'long': 1.0, 'buying': 1.0, 'with': 2.0, 'it': 5.0, 'carrier': 1.0, 'different': 1.0, 'wrapping': 1.0, '3g': 1.0, 'the': 7.0, 'wrap': 2.0, 'methods': 1.0, 'this': 2.0, 'provided': 1.0, 'more': 1.0, 'is': 2.0, 'very': 1.0, 'forums': 1.0, 'for': 3.0, 'opinion': 1.0, 'not': 1.0, 'that': 3.0, 'people': 1.0, 'cumbersome': 1.0, 'safe': 1.0, 'my': 4.0}
Word element => {'carrier': 1.0, 'ergonomic': 1.0, 'union': 1.0, 'cheaper': 1.0, 'something': 1.0, 'choice': 1.0, 'second': 1.0, 'all': 1.0, 'as': 1.0, 'carriers': 1.0, 'infantino': 2.0, 'different': 1.0, 'videos': 1.0, 'great': 1.0, 'them': 1.0, 'has': 1.0, 'or': 1.0, 'stretchy': 1.0, 'three': 1.0, 'wrap': 3.0, 'afford': 1.0, 'heavier': 1.0, 'the': 8.0, 'of': 3.0, 'accidents': 1.0, 'stirrups': 1.0, 'extra': 1.0, 'mile': 1.0, 'pound': 1.0, 'no': 2.0, 'tie': 2.0, 'wraps': 1.0, 'thing': 1.0, '20lbs': 1.0, 'two': 2.0, 'have': 1.0, 'in': 3.0, 'said': 1.0, 'best': 1.0, 'sag': 1.0, 'after': 1.0, 'walking': 1.0, 'ability': 1.0, 'moms': 1.0, 'over': 3.0, 'up': 1.0, 'don': 1.0, 'a': 6.0, 't': 3.0, 'ago': 1.0, 's': 1.0, 'at': 1.0, 'is': 4.0, 'around': 2.0, 'year': 1.0, 'very': 2.0, 'son': 2.0, 'would': 2.0, 'tight': 1.0, 'comfortable': 1.0, 'own': 1.0, 'until': 1.0, 'liked': 1.0, 'was': 1.0, 'length': 2.0, 'to': 6.0, 'instruction': 1.0, 'been': 1.0, 'gave': 1.0, 'didn': 1.0, 'this': 6.0, 'solid': 1.0, 'he': 1.0, 'it': 3.0, 'enough': 2.0, 'asleep': 1.0, 'good': 1.0, 'baby': 1.0, 'can': 3.0, 'just': 1.0, 'be': 2.0, 'wrapped': 1.0, 'had': 2.0, 'fall': 1.0, 'that': 1.0, 'problems': 1.0, 'also': 2.0, 'left': 1.0, 'back': 1.0, 'car': 1.0, 'again': 1.0, 'website': 1.0, 'my': 6.0, 'me': 1.0, 'not': 1.0, 'well': 1.0, 'i': 10.0, 'feet': 1.0, 'make': 1.0, 'stretch': 1.0, 'use': 2.0, 'still': 1.0, 'if': 1.0, 'for': 2.0, 'fabric': 1.0, '10': 1.0, 'hold': 1.0, 'like': 1.0, 'min': 1.0, 'pin': 1.0, 'neck': 1.0, 'lot': 1.0, 'one': 1.0, 'com': 1.0, 'but': 1.0, 'print': 1.0, 'babyandbump': 1.0, 'double': 1.0, 'and': 6.0, 'sided': 1.0, 'wait': 1.0, 'color': 1.0, 'order': 1.0}
Word element => {'case': 1.0, 't': 1.0, 'wasn': 1.0, 'sadly': 1.0, 'doubt': 1.0, 'no': 1.0, 'works': 1.0, 'craigslist': 1.0, 'selling': 1.0, 'ended': 1.0, 'set': 1.0, 'for': 2.0, 'fabric': 1.0, 'have': 2.0, 'ideal': 1.0, 'but': 2.0, 'home': 1.0, 're': 2.0, 'after': 2.0, 'screaming': 1.0, 'times': 1.0, 'idea': 1.0, 'dragging': 1.0, 'we': 1.0, 'a': 4.0, 's': 3.0, 'october': 1.0, 'you': 4.0, 'meant': 1.0, 'alas': 1.0, 'errands': 1.0, 'up': 4.0, 'run': 1.0, 'hands': 1.0, 'wrap': 1.0, 'public': 1.0, 'while': 1.0, 'and': 2.0, 'too': 1.0, 'not': 4.0, 'born': 3.0, 'went': 1.0, 'entirely': 1.0, 'cried': 1.0, 'before': 2.0, '5': 1.0, 'loved': 1.0, 'he': 6.0, 'hated': 1.0, 'first': 1.0, 'few': 1.0, 'this': 2.0, '30': 1.0, 'found': 1.0, 'with': 2.0, 'freeing': 1.0, 'sling': 2.0, 'many': 1.0, 'baby': 2.0, 'close': 1.0, 'hopes': 1.0, 'be': 2.0, 'it': 14.0, 'him': 3.0, 'problem': 1.0, 'within': 1.0, 'bought': 1.0, 'hysterical': 1.0, 'me': 3.0, 'my': 5.0, 'tried': 1.0, 'sooo': 1.0, 'putting': 2.0, 'i': 6.0, 'the': 7.0, 'of': 2.0, 'around': 1.0, 'at': 1.0, 'is': 3.0, 'keep': 1.0, 'carrying': 1.0, 'was': 4.0, 'minutes': 2.0, 'high': 2.0, 'to': 7.0, 'as': 2.0, 'weeks': 1.0, 'would': 1.0, 'last': 1.0, 'about': 1.0, 'get': 1.0, 'sure': 1.0, 'out': 3.0, 'time': 2.0, 'so': 1.0, 'long': 1.0, 'on': 4.0, 'got': 1.0, 'even': 1.0, 'worse': 1.0, 'getting': 1.0, 'gave': 1.0, 'that': 3.0, 'in': 6.0, 'm': 1.0, 'just': 1.0, 'why': 1.0, 'floor': 1.0, 'much': 1.0, 'amazing': 1.0, 'only': 1.0, 'guess': 1.0, 'way': 1.0, 'started': 1.0, 'hot': 1.0, 'onesie': 1.0, 'if': 3.0, 'still': 1.0, 'short': 1.0, 'all': 1.0, 'ultimately': 1.0, 'other': 1.0, 'taken': 1.0, 'complaint': 1.0}
Word element => {'blanket': 1.0, 'sleeper': 1.0, 'play': 1.0, 'gold': 1.0, 'weight': 1.0, 'their': 1.0, 'favorite': 1.0, 'time': 1.0, 's': 1.0, 'stars': 1.0, 'give': 1.0, 'd': 1.0, 'breathable': 1.0, 'surprisingly': 1.0, 'around': 1.0, 'carrying': 1.0, 'degree': 1.0, 'even': 1.0, 've': 1.0, 'washes': 1.0, 'snuggled': 1.0, 'free': 1.0, 'hands': 1.0, 'easier': 1.0, 'one': 1.0, 'happy': 1.0, 'too': 1.0, 'this': 3.0, 'and': 3.0, 'shop': 1.0, 'errands': 1.0, 'run': 1.0, 'registry': 1.0, 'weather': 1.0, 'went': 1.0, 'pregnant': 2.0, '100': 2.0, 'minutes': 1.0, '2': 2.0, 'just': 1.0, 'car': 1.0, 'popped': 1.0, 'tired': 1.0, 'hot': 1.0, 'started': 1.0, 'picture': 1.0, 'home': 1.0, 'fussy': 1.0, 'by': 1.0, 'intimidated': 1.0, 'worn': 1.0, 'looked': 1.0, 'from': 2.0, 'don': 1.0, 'rock': 1.0, 'been': 1.0, 'more': 1.0, 'babies': 1.0, 'that': 2.0, 'on': 2.0, 'bjorne': 1.0, '6': 1.0, 'boba': 6.0, 'thinking': 1.0, 'complicated': 1.0, 'buy': 1.0, 'something': 1.0, 'saved': 1.0, 'much': 2.0, 'its': 2.0, 'days': 1.0, 'soft': 1.0, 'works': 1.0, 'overstate': 1.0, 'done': 1.0, 'three': 1.0, 'fails': 1.0, 'seat': 1.0, 'in': 7.0, 'sleeping': 1.0, 'made': 1.0, 'lunch': 1.0, 't': 1.0, 'we': 4.0, 'added': 1.0, 'a': 5.0, 'will': 2.0, 'could': 3.0, 'of': 3.0, 'the': 8.0, '8': 2.0, 'lb': 2.0, 'to': 3.0, 'how': 1.0, 'our': 2.0, 'sleep': 1.0, 'other': 1.0, 'all': 3.0, 'had': 1.0, 'friends': 1.0, 'so': 2.0, 'ergo': 1.0, 'comfortably': 1.0, 'no': 1.0, 'disappeared': 1.0, 'while': 1.0, 'tie': 1.0, 'tried': 1.0, 'given': 1.0, 'night': 2.0, 'things': 2.0, 'fabric': 2.0, 'for': 3.0, 'love': 1.0, 'online': 1.0, 'used': 1.0, 'be': 2.0, 'i': 7.0, 'well': 3.0, 'putting': 1.0, 'but': 2.0, 'toting': 1.0, 'directions': 1.0, 'are': 2.0, 'bad': 1.0, 'come': 1.0, 'with': 2.0, 'make': 1.0, 'it': 5.0, 'stopped': 1.0, 'baby': 5.0, 'she': 3.0, 'cannot': 1.0, 'very': 2.0, 'nice': 1.0, 'little': 1.0, 'easy': 1.0, 'get': 2.0, 'once': 1.0, 'matter': 1.0, 'than': 2.0, 'lady': 1.0, 'developed': 1.0, 'reflux': 1.0, 'miracle': 1.0, 'day': 1.0, 'out': 1.0, 'absolutely': 1.0, 'passed': 1.0, 'us': 1.0, 'every': 1.0, 'if': 1.0, 'still': 2.0, 'worth': 1.0, 'upright': 1.0, 'now': 2.0, 'sleeps': 1.0, 'is': 4.0, 'at': 2.0, 'napper': 1.0, 'what': 1.0, 'when': 2.0, 'else': 1.0, 'smaller': 1.0, 'her': 3.0, 'them': 1.0, 'always': 2.0, 'friend': 3.0, 'was': 1.0, 'kinds': 1.0, 'oz': 1.0, 'amazed': 1.0, 'my': 4.0}
Word element => {'skin': 1.0, 'mothers': 1.0, 'soft': 1.0, 'baby': 2.0, 'and': 3.0, 'wrap': 2.0, 'awesome': 1.0, 'for': 1.0, 'mother': 1.0, 'to': 2.0, 'easy': 1.0, 'use': 1.0, 'the': 2.0, 'is': 1.0}
Word element => {'etc': 1.0, 'house': 1.0, 'kitchen': 1.0, 'work': 1.0, 'having': 1.0, 'do': 1.0, 'more': 1.0, 'position': 1.0, 'forward': 1.0, 'face': 1.0, 'wish': 1.0, 'so': 1.0, 'warmer': 1.0, 'outside': 1.0, 'mainly': 1.0, '4': 1.0, 'using': 1.0, 'reason': 1.0, 'light': 1.0, 'as': 1.0, 'diaper': 1.0, 'shirt': 1.0, 'taken': 1.0, 'pressed': 1.0, 'cover': 1.0, '3': 1.0, '2': 1.0, 'about': 1.0, 'layers': 1.0, 'gets': 1.0, 'because': 1.0, 'that': 4.0, 'bit': 1.0, 'however': 1.0, 'be': 2.0, 'don': 1.0, 'up': 1.0, '6': 1.0, 'desk': 1.0, 'make': 1.0, 'your': 1.0, 'intimidated': 1.0, 'and': 5.0, 'limits': 1.0, 'too': 1.0, 'watch': 1.0, 'low': 1.0, 'enjoy': 1.0, 'if': 1.0, 'just': 3.0, 'by': 1.0, 'only': 1.0, 'yourself': 2.0, 'but': 2.0, 'sitting': 1.0, 'around': 4.0, 'at': 1.0, 'look': 1.0, 'is': 5.0, 'he': 3.0, 'typing': 1.0, 're': 1.0, 'you': 3.0, 'sit': 1.0, 'when': 1.0, 'lbs': 1.0, 'youtube': 1.0, 'works': 1.0, 'days': 1.0, 'boba': 2.0, 'also': 2.0, 'could': 2.0, 'will': 1.0, 'wrangling': 1.0, 'a': 6.0, 's': 2.0, 'wrap': 10.0, 'used': 1.0, 'kiddo': 1.0, 'hands': 1.0, 'fine': 1.0, 'firstly': 1.0, 'start': 1.0, 'star': 1.0, 'right': 2.0, 'sling': 1.0, 'how': 1.0, 'our': 1.0, 'now': 2.0, 'warm': 2.0, 'had': 1.0, '12': 1.0, 'couple': 1.0, 'this': 6.0, 'first': 1.0, 'or': 3.0, 'tried': 1.0, 've': 2.0, 'vid': 1.0, 'the': 10.0, 'of': 2.0, 'there': 1.0, 'alot': 1.0, 'for': 3.0, 'fabric': 2.0, 'have': 2.0, 'sure': 1.0, 'against': 1.0, 'to': 6.0, 'pretty': 1.0, 'fits': 1.0, 'buzz': 1.0, 'me': 1.0, 'my': 3.0, 'with': 2.0, 'baby': 4.0, 'weather': 1.0, 'ride': 1.0, '5': 1.0, '24': 1.0, '34': 1.0, 'runs': 1.0, 'halfsie': 1.0, 'big': 1.0, 'comfortable': 1.0, 'great': 1.0, 'weeks': 1.0, 'tight': 1.0, 'boy': 1.0, 'very': 2.0, 'putting': 1.0, 'i': 8.0, 'well': 1.0, 'has': 1.0, 'm': 1.0, 'in': 7.0, 'find': 1.0, 't': 2.0, 'fairly': 1.0, 'him': 3.0, 'it': 7.0, 'wear': 1.0, 'really': 2.0, 'freed': 1.0, 'while': 1.0, 'which': 1.0, 'on': 2.0, 'long': 1.0, 'noticed': 1.0}
Word element => {'made': 1.0, 'difficult': 1.0, 'huge': 1.0, 'my': 1.0, 'all': 1.0, 'newborn': 1.0, 'fairness': 1.0, 'in': 1.0, 'is': 2.0, 'when': 1.0, 'be': 1.0, 'maybe': 2.0, 'free': 1.0, 'hands': 1.0, 'being': 1.0, 'of': 1.0, 'baby': 1.0, 'head': 1.0, 'still': 1.0, 'will': 1.0, 'an': 1.0, 'that': 2.0, 's': 1.0, 'wrap': 1.0, 'older': 1.0, 'he': 1.0, 'hard': 1.0, 'it': 4.0, 'get': 1.0, 'so': 3.0, 'i': 1.0, 'use': 1.0, 'arm': 1.0, 'supported': 1.0, 'support': 1.0, 'more': 1.0, 'the': 1.0, 'his': 1.0, 'to': 4.0, 'had': 1.0, 'purpose': 1.0, 'though': 1.0, 'useful': 1.0, 'neck': 1.0, 'negating': 1.0}
Word element => {'but': 1.0, 'cloth': 1.0, 'pressed': 1.0, 'since': 1.0, 'warm': 1.0, 'falls': 1.0, 'it': 6.0, 'in': 3.0, 'her': 2.0, 'negative': 1.0, 'i': 4.0, 'almost': 1.0, 'loves': 1.0, 'that': 3.0, 'tight': 1.0, 'she': 2.0, 'baby': 4.0, 'quality': 1.0, 'not': 2.0, 'around': 2.0, 'really': 2.0, 'munchkin': 1.0, 'easier': 1.0, 'time': 1.0, 'only': 1.0, 'asleep': 1.0, 'to': 5.0, 'life': 1.0, 'serious': 1.0, 'just': 1.0, 'thing': 2.0, 'some': 1.0, 'my': 1.0, 'learning': 1.0, 'snug': 1.0, 'is': 4.0, 'at': 1.0, 'with': 2.0, 'hard': 1.0, 'while': 1.0, 'are': 1.0, 'ur': 2.0, 'first': 1.0, 'few': 1.0, 'this': 3.0, 'love': 1.0, 'absolutely': 1.0, 'way': 1.0, 's': 4.0, 'walks': 1.0, 'a': 1.0, 't': 1.0, 'need': 1.0, 'done': 1.0, 'and': 8.0, 'spend': 1.0, 'say': 2.0, 'comfortable': 1.0, 'great': 1.0, 'feel': 1.0, 'your': 1.0, 'on': 4.0, 'much': 1.0, 'put': 2.0, 'make': 1.0, 'makes': 2.0, 'how': 1.0, 'practice': 3.0, 'up': 1.0, 'takes': 1.0, 'too': 1.0, 'happy': 1.0, 'wrapped': 1.0, 'be': 1.0, 'close': 1.0, 'get': 2.0, 'certain': 1.0, 'sure': 1.0, 'kind': 1.0, 'you': 3.0, 'things': 1.0, 'bc': 1.0, 'instantly': 1.0, 'house': 1.0, 'enough': 1.0, 'take': 1.0, 'mama': 1.0, 'bundled': 1.0, 'secure': 1.0, 'read': 1.0, 'ppl': 1.0, 'saying': 1.0, 'kept': 1.0, 'urself': 1.0, 'down': 1.0, 'wasn': 1.0, 'instructions': 1.0, 'wrapping': 1.0, 'parts': 1.0, 'slipping': 1.0, 'washable': 1.0, 'so': 3.0, 'can': 2.0, 'the': 3.0, 'of': 1.0}
Word element => {'9829': 2.0, 'so': 1.0, 'm': 1.0, 'on': 1.0, 'exelent': 2.0, 'deliver': 1.0, 'wait': 1.0, 'it': 2.0, 'love': 1.0, '9825': 1.0, 'bet': 1.0, 'little': 1.0, 'the': 1.0, 't': 2.0, 's': 1.0, 'feel': 1.0, 'time': 1.0, 'itthe': 1.0, 'a': 1.0, 'stars': 1.0, 'allmy': 1.0, 'hurt': 1.0, '9733': 4.0, 'back': 1.0, 'doesn': 2.0, 'quality': 1.0, 'i': 2.0, 'just': 1.0, 'baby': 1.0, 'price': 1.0, 'happy': 1.0, 'high': 1.0}
Word element => {'up': 1.0, 'right': 1.0, 'that': 1.0, 'loves': 1.0, 'have': 1.0, 'baby': 2.0, 'my': 2.0, 'comfortable': 1.0, 'as': 1.0, 'must': 1.0, 'a': 2.0, 'close': 1.0, 'is': 2.0, 'extremely': 1.0, 'being': 1.0, 'to': 1.0, 'snuggled': 1.0, 'but': 1.0, 'this': 1.0, 'it': 1.0, 'does': 1.0, 'i': 1.0, 'and': 1.0, 'me': 2.0, 'get': 1.0, 'against': 1.0, 'expected': 1.0, 'warm': 1.0, 'bit': 1.0}
Word element => {'for': 1.0, 'our': 1.0, 'take': 1.0, 'grey': 1.0, 'either': 1.0, 'quality': 1.0, 'the': 1.0, 'color': 1.0, 'high': 1.0, 'my': 1.0, 'is': 1.0, 'son': 1.0, 'nice': 1.0, 'or': 1.0, 'it': 1.0, 'this': 1.0, 'n': 1.0, 'when': 1.0, 'daughter': 1.0, 'wrap': 1.0, 'a': 2.0, 'law': 1.0, 'granddaughter': 1.0, 'to': 1.0, 'walk': 1.0, 'wear': 1.0, 'makes': 1.0, 'they': 1.0}
Word element => {'using': 1.0, 'have': 1.0, 'peoples': 1.0, 'her': 3.0, 'carrying': 1.0, 'just': 1.0, 'of': 1.0, 'absolutely': 1.0, 'gift': 1.0, 'first': 2.0, 'little': 1.0, 'it': 2.0, 'she': 1.0, 'the': 3.0, 'wrap': 1.0, 'girl': 1.0, 'boba': 1.0, 'amazing': 1.0, 'received': 1.0, 'was': 2.0, 'had': 1.0, 'notion': 2.0, 'is': 2.0, 'around': 1.0, 'for': 2.0, 'decades': 1.0, 'pregnant': 1.0, 'and': 1.0, 'raising': 1.0, 'child': 1.0, 'out': 1.0, 'world': 1.0, 'on': 1.0, 'i': 2.0, 'when': 1.0, 'this': 1.0, 'wish': 1.0, 'kids': 1.0, 'my': 1.0, 'a': 2.0, 'ago': 1.0, 'friend': 1.0, 'an': 2.0, 'centuries': 1.0, 'who': 1.0, 'option': 1.0, 'been': 2.0, 'into': 1.0, 'that': 1.0, 'adventures': 1.0, 'other': 1.0}
Word element => {'so': 1.0, 'i': 1.0, 'old': 1.0, 'seven': 1.0, 'my': 1.0, 'your': 1.0, 'provides': 1.0, 'the': 1.0, 'through': 1.0, 'instruction': 1.0, 'pretty': 1.0, 'much': 1.0, 'amazing': 2.0, 'that': 1.0, 'easier': 1.0, 'for': 1.0, 'often': 1.0, 'very': 1.0, 'to': 1.0, 'comes': 1.0, 'is': 2.0, 'on': 1.0, 'first': 1.0, 'it': 5.0, 'with': 1.0, 'steps': 1.0, 'not': 1.0, 'pictures': 1.0, 'manual': 1.0, 'would': 1.0, 'and': 3.0, 'do': 2.0, 'we': 1.0, 'week': 1.0, 'walks': 1.0, 'but': 1.0, 'put': 1.0, 'use': 2.0, 'then': 1.0, 'you': 2.0, 'loves': 1.0, 'think': 1.0, 'a': 1.0}
Word element => {'lower': 1.0, 'kills': 1.0, 'though': 1.0, 'bjorn': 1.0, 'face': 1.0, 'or': 2.0, 'worth': 1.0, 'from': 1.0, 'in': 4.0, 'this': 1.0, 'place': 1.0, 'hot': 1.0, 'likes': 1.0, 'ergo': 1.0, 'when': 2.0, 'miss': 1.0, 'too': 1.0, 'and': 4.0, 'trying': 1.0, 'be': 2.0, 'way': 1.0, 'hate': 1.0, 's': 2.0, 'a': 2.0, 'quickly': 1.0, 'if': 2.0, 'bigger': 1.0, 'never': 2.0, 'it': 10.0, 'eventually': 1.0, '3': 1.0, 'months': 1.0, 'get': 2.0, 'time': 1.0, 'struggled': 1.0, 'supremely': 1.0, 'liked': 1.0, 'was': 4.0, 'seemed': 1.0, 'store': 1.0, 'length': 1.0, 'to': 6.0, 'annoying': 1.0, 'as': 1.0, 'unraveled': 1.0, 'also': 3.0, 'how': 1.0, 'with': 3.0, 'would': 2.0, 'boy': 1.0, 'summer': 1.0, 'comfortable': 1.0, 'say': 2.0, 'more': 1.0, 'off': 1.0, 'tried': 1.0, 'i': 8.0, 'at': 1.0, 'is': 2.0, 'snug': 1.0, 'have': 1.0, 'baby': 2.0, 'my': 3.0, 'me': 1.0, 'he': 3.0, 'fold': 1.0, 'up': 1.0, 'nicely': 1.0, 'peace': 1.0, '1': 1.0, 'find': 1.0, 'support': 1.0, 'even': 1.0, 'hit': 1.0, 'all': 1.0, 'an': 1.0, 'found': 1.0, 'enormous': 1.0, 'on': 1.0, 'amount': 1.0, 'the': 6.0, 'tangled': 1.0, 'of': 1.0, 'for': 2.0, 'such': 1.0, 'fabric': 1.0, 'd': 1.0, 'out': 1.0, 'absolutely': 1.0, 'getting': 1.0, 'very': 1.0, 'weather': 1.0, 'mom': 1.0, 'back': 2.0, 'infant': 1.0, 'good': 1.0, 'which': 1.0, 'but': 2.0, 'right': 1.0, 'll': 1.0, 'use': 1.0, 'that': 2.0, 'difficult': 1.0, 'loves': 1.0}
Word element => {'tho': 1.0, 'hurting': 1.0, 'back': 1.0, 'yourself': 1.0, 'day': 1.0, 'wraps': 1.0, 'babies': 1.0, 'their': 1.0, 'african': 1.0, 'no': 1.0, 'material': 1.0, 'fast': 1.0, 'secs': 1.0, 'eat': 1.0, '10': 1.0, 'position': 1.0, 'm': 1.0, 'feet': 1.0, 'wonder': 1.0, 'fixed': 1.0, 'carseat': 1.0, 'women': 1.0, 'carry': 2.0, 'hoping': 1.0, 'in': 6.0, 'doesnt': 1.0, 'feels': 1.0, 'tube': 1.0, 'so': 1.0, 'those': 1.0, 'me': 1.0, 'asleep': 1.0, 'the': 1.0, 'wrap': 4.0, 'bought': 1.0, 'bc': 1.0, 'save': 1.0, 'my': 3.0, 'get': 1.0, 'easy': 2.0, 'pains': 2.0, 'love': 1.0, 'for': 2.0, 'her': 3.0, 'good': 1.0, 'soft': 1.0, 'this': 3.0, 'fell': 1.0, 'truly': 1.0, 'she': 4.0, 'it': 4.0, 'with': 1.0, 'around': 1.0, 'is': 4.0, 'i': 4.0, 'and': 8.0, 'green': 1.0, '11lbs': 1.0, 'a': 3.0, 'walks': 1.0, 'video': 2.0, 'body': 1.0, 'hand': 1.0, 'watched': 1.0, 'all': 1.0, 'to': 2.0, 'put': 1.0, 'your': 1.0, 'on': 1.0, 'cook': 1.0, 'causing': 1.0, 'you': 1.0, 'literally': 1.0, 'start': 1.0, 'look': 1.0, 'takes': 1.0, 'there': 1.0, 'can': 1.0, 'shoulder': 2.0, '2': 1.0, 'started': 1.0, 'baby': 2.0, 'reaaly': 1.0, 'secure': 1.0, 'squirmed': 1.0, 'adjusted': 1.0, 'mins': 1.0, 'cries': 1.0, 'almost': 1.0, 'girl': 1.0, 'makes': 1.0}
Word element => {'store': 1.0, 'grocery': 1.0, 'or': 1.0, 'zoo': 1.0, 'to': 1.0, 'for': 1.0, '85': 1.0, 'exceed': 1.0, 'not': 1.0, 'loved': 1.0, 'my': 2.0, 'made': 1.0, '90': 1.0, 'temperature': 1.0, 'and': 1.0, 'trips': 1.0, 'does': 1.0, 'long': 1.0, 'so': 1.0, 'product': 1.0, 'degrees': 1.0, 'the': 2.0, 'great': 1.0, 'this': 1.0, 'it': 1.0, 'otherwise': 1.0, 'kids': 1.0, 'as': 1.0, 'day': 1.0, 'easier': 1.0}
Word element => {'mother': 1.0, 'difference': 1.0, 'makes': 1.0, 'spandex': 1.0, 'minimal': 1.0, 'sociable': 1.0, 'secure': 1.0, 'emotionally': 1.0, 'diapers': 1.0, 'flat': 1.0, 'in': 2.0, 've': 1.0, 'missy': 1.0, 'make': 1.0, 'a': 2.0, 'around': 1.0, 'is': 2.0, 'big': 1.0, 'great': 1.0, 'wrap': 1.0, 'without': 1.0, 'the': 4.0, 'baby': 1.0, 'they': 1.0, 'time': 1.0, 'babies': 1.0, 'that': 1.0, 'important': 1.0, 'heads': 1.0, 'and': 2.0, 'do': 1.0, 'all': 1.0, 'our': 1.0, 'as': 2.0, 'from': 1.0, 'stretchability': 1.0, 'best': 1.0, 'of': 2.0, 'stable': 1.0, 'car': 1.0, 'offer': 1.0, 'loving': 1.0, 'being': 1.0, 'family': 1.0, 'owned': 1.0, 'carted': 1.0, 'seats': 1.0, 'kids': 1.0, 'this': 1.0, 'with': 1.0, 'cotton': 1.0, 'one': 1.0, 'alternatives': 1.0, '4': 1.0, 'i': 1.0, '100': 1.0, 'not': 1.0}
Word element => {'out': 1.0, 'figure': 1.0, 'us': 1.0, 'help': 1.0, 'tricky': 1.0, 'cam': 1.0, 'item': 1.0, 'born': 1.0, 'my': 2.0, 'some': 1.0, 'at': 1.0, 'calming': 1.0, 'very': 1.0, 'and': 1.0, 'be': 1.0, 'it': 1.0, 'first': 1.0, 'in': 1.0, 'online': 1.0, 'new': 1.0, 'put': 1.0, 'helpful': 1.0, 'to': 2.0, 'husband': 1.0, 'watched': 1.0, 'on': 1.0, 'i': 1.0, 'videos': 1.0}
Word element => {'stability': 1.0, 'with': 1.0, 'looking': 1.0, 'be': 1.0, 'so': 1.0, 'though': 1.0, 'big': 1.0, 'little': 2.0, 'for': 5.0, 'parents': 1.0, 'really': 1.0, 'carrier': 1.0, 'needed': 1.0, 'my': 3.0, 'out': 1.0, 'helped': 1.0, 'when': 1.0, 'i': 6.0, 'she': 2.0, 'it': 4.0, 'this': 2.0, 'has': 1.0, 'would': 1.0, 'new': 1.0, 'hands': 1.0, 'asleep': 1.0, 'recommend': 1.0, 'was': 1.0, 'free': 1.0, 'now': 1.0, 'me': 1.0, 'do': 1.0, 'get': 1.0, 'to': 2.0, 'all': 1.0, 'born': 1.0, 'wiggly': 1.0, 'will': 1.0, 'also': 1.0, 'calming': 1.0, 'down': 1.0, 'her': 2.0, 'used': 1.0, 'baby': 3.0, 'helping': 1.0, 'more': 1.0, 'is': 3.0, 'fall': 1.0, 'since': 1.0, 'a': 4.0, 'awesome': 1.0, 'almost': 1.0, 'think': 1.0, '7': 1.0, 'months': 1.0, 'and': 2.0, 'starting': 1.0, 'still': 1.0, 'use': 1.0}
Word element => {'great': 1.0, 'is': 1.0, 'this': 1.0, 'be': 1.0, 'wants': 1.0, 'both': 1.0, 'use': 1.0, 'need': 1.0, 'you': 1.0, 'that': 2.0, 'in': 1.0, 'bit': 1.0, 'point': 1.0, 'warm': 1.0, 'at': 2.0, 'baby': 1.0, 'rated': 1.0, 'her': 1.0, 'your': 1.0, 'on': 1.0, 'carried': 2.0, 'now': 1.0, 'stars': 1.0, 'for': 1.0, 'snuggled': 1.0, 'using': 1.0, 'close': 1.0, 'newborn': 1.0, '4': 1.0, 'i': 1.0, 'complicated': 1.0, 'also': 1.0, 'any': 1.0, 'to': 3.0, 'as': 1.0, 'and': 5.0, 'get': 1.0, 'have': 2.0, 'really': 1.0, 'keeps': 1.0, 'insert': 1.0, 'she': 2.0, 'it': 1.0, 'with': 1.0, 'alone': 1.0, 'ensure': 1.0, 'hands': 1.0, 'wrap': 1.0, 'the': 2.0, 'a': 3.0, 't': 2.0, 'right': 1.0, 'isn': 1.0, 'twisted': 1.0, 'inaccurately': 1.0, 'won': 1.0, 'likes': 1.0, 'ergo': 1.0, 'structured': 1.0, 'if': 1.0, 'being': 1.0, 'carrier': 1.0, 'infant': 1.0, 'tolerate': 1.0}
Word element => {'so': 1.0, 'loves': 1.0, 'baby': 1.0, 'out': 1.0, 'figure': 1.0, 'you': 1.0, 'watch': 1.0, 'once': 1.0, 'how': 1.0, 'tube': 1.0, 'of': 2.0, 'to': 3.0, 'had': 1.0, 'i': 4.0, 'video': 1.0, 'but': 1.0, 'it': 2.0, 'this': 1.0, 'a': 2.0, 'wrap': 1.0, 'practiced': 1.0, 'do': 1.0, 'and': 1.0, 'couple': 1.0, 'times': 1.0, 'use': 1.0, 'got': 1.0, 'the': 1.0, 'hang': 1.0}
Word element => {'when': 1.0, 'he': 2.0, 'with': 1.0, 'first': 1.0, 'and': 6.0, 'ergobaby': 1.0, 'infant': 1.0, 'boba': 1.0, 'carrier': 1.0, 'cried': 1.0, 'i': 2.0, 'old': 1.0, 'tried': 1.0, 'hated': 1.0, 'to': 2.0, 'on': 1.0, 'put': 1.0, 'my': 1.0, 'minutes': 1.0, 'insert': 1.0, 'in': 2.0, 'time': 1.0, 'son': 1.0, 'from': 1.0, 'very': 1.0, 'loved': 1.0, 'only': 1.0, 'try': 1.0, 'asleep': 1.0, 'the': 5.0, 'without': 1.0, 'wrap': 1.0, 'go': 1.0, 's': 1.0, 'a': 1.0, 'it': 3.0, 'month': 1.0, 'fell': 1.0, 'after': 1.0, 'wear': 1.0, 'few': 1.0, 'love': 1.0, 'for': 1.0, 'that': 1.0, 'soft': 1.0, 'each': 1.0, 'cozy': 1.0, 'baby': 1.0, 'easy': 1.0, 'carry': 1.0}
Word element => {'tight': 1.0, 'wrapped': 1.0, 'product': 1.0, 'be': 1.0, 'want': 1.0, 'didn': 1.0, 'so': 2.0, 'my': 1.0, 'he': 1.0, 'this': 3.0, 't': 2.0, 'live': 1.0, 'slept': 1.0, 'without': 1.0, 'to': 1.0, 'was': 1.0, 'but': 1.0, 'work': 1.0, 'i': 3.0, 'couldn': 1.0, 'matter': 1.0, 'no': 1.0, 'what': 1.0, 'loved': 1.0, 'then': 1.0, 'doing': 1.0, 'well': 1.0, 'a': 1.0, 'son': 1.0, 'best': 1.0, 'as': 1.0, 'in': 1.0, 'newborn': 1.0}
Word element => {'with': 1.0, 'for': 1.0, 'shopping': 1.0, 'also': 1.0, 'house': 1.0, 'the': 1.0, 'good': 1.0, 'around': 1.0, 'done': 1.0, 'get': 1.0, 'can': 1.0, 'excellent': 1.0, 'allows': 1.0, 'me': 1.0, 'baby': 2.0, 'product': 1.0, 'to': 1.0, 'hands': 1.0, 'work': 1.0, 'hold': 1.0, 'free': 1.0, 'so': 1.0, 'i': 1.0}
Word element => {'ground': 1.0, 'floor': 1.0, 'touch': 1.0, 'are': 2.0, 'will': 1.0, 'also': 1.0, 'hazard': 1.0, 'tripping': 1.0, 'dangle': 1.0, 'let': 1.0, 'if': 2.0, 'clean': 1.0, 'fabric': 2.0, 'definitely': 1.0, 'extra': 1.0, 'take': 1.0, 'one': 1.0, 'from': 1.0, 'disconnected': 1.0, 'feeling': 1.0, 'short': 1.0, 'done': 1.0, 'public': 1.0, 'things': 1.0, 'some': 1.0, 'area': 1.0, 'get': 2.0, 're': 1.0, 'house': 1.0, 'caution': 1.0, 'actually': 1.0, 'instruction': 1.0, 'can': 1.0, 'inevitably': 1.0, 'on': 4.0, 'what': 1.0, 'animal': 1.0, 'stuffed': 1.0, 'was': 2.0, 'in': 4.0, 'you': 3.0, 'when': 2.0, 'walk': 1.0, 'received': 1.0, 'this': 2.0, 'of': 1.0, 'shower': 1.0, 'it': 6.0, 'at': 1.0, 'tuck': 1.0, 'and': 7.0, 'could': 1.0, 'practiced': 1.0, 'a': 5.0, 'gift': 1.0, 'careful': 1.0, 'wrap': 2.0, 'without': 1.0, 'the': 8.0, 'i': 8.0, 'mess': 1.0, 'm': 1.0, 'hahah': 1.0, 'great': 1.0, 'manual': 1.0, 'ready': 1.0, 'back': 1.0, 'got': 1.0, 'be': 1.0, 'putting': 3.0, 'here': 1.0, 'my': 3.0, 'checked': 1.0, 'out': 1.0, 'send': 1.0, 'baby': 4.0, 'videos': 1.0, 'using': 1.0, 'like': 1.0, 'youtube': 1.0, 'wrapped': 1.0, 'just': 1.0, 'usually': 1.0, 'because': 2.0, 'nasty': 1.0, 'that': 3.0, 'waist': 1.0, 'word': 1.0, 'to': 1.0, 'as': 2.0, 'all': 1.0, 'up': 1.0, 'around': 2.0, 'is': 2.0}
Word element => {'would': 1.0, 'was': 1.0, 'felt': 1.0, 'it': 2.0, 'this': 2.0, 'with': 1.0, 'that': 1.0, 'way': 1.0, 'somewhere': 1.0, 'in': 1.0, 'so': 1.0, 'time': 1.0, 'needs': 1.0, 'loosen': 1.0, 'down': 2.0, 'baby': 3.0, 'adjustment': 1.0, 'i': 3.0, 'spend': 1.0, 'the': 3.0, 'wrap': 2.0, 'well': 1.0, 'wants': 1.0, 'wanted': 1.0, 'happier': 1.0, 'put': 2.0, 'but': 1.0, 'work': 1.0, 'perfecting': 1.0, 'while': 1.0, 'have': 1.0, 'is': 2.0, 'just': 2.0, 'right': 1.0, 'you': 2.0, 'am': 1.0, 'when': 1.0, 'much': 2.0, 'my': 3.0, 'who': 1.0, 'hotsling': 1.0, 'like': 2.0, 'which': 1.0, 'carrier': 1.0, 'no': 1.0, 'to': 3.0, 'as': 3.0, 'boba': 1.0, 'too': 1.0, 'and': 1.0, 'sliding': 1.0, 'oftentimes': 1.0}
Word element => {'wrapped': 1.0, 'safely': 1.0, 'hands': 1.0, 'both': 1.0, 'to': 1.0, 'worth': 1.0, 's': 1.0, 'have': 1.0, 'fabric': 1.0, 'price': 1.0, 'if': 1.0, 'child': 2.0, 'know': 1.0, 'absolute': 1.0, 'can': 1.0, 'but': 1.0, 'an': 1.0, 'be': 1.0, 'is': 3.0, 'lifesaver': 1.0, 'warm': 2.0, 'aware': 1.0, 'it': 4.0, 'this': 1.0, 'perfect': 1.0, 'get': 1.0, 'and': 2.0, 'me': 1.0, 'love': 1.0, 'for': 1.0, 'free': 1.0, 'your': 2.0, 'blooded': 1.0, 'were': 1.0, 'that': 1.0}
Word element => {'again': 2.0, 'home': 1.0, 'baby': 1.0, 'possible': 1.0, 'will': 1.0, 'purchase': 1.0, 'make': 1.0, 'entails': 1.0, 'watch': 1.0, 'issue': 2.0, 'might': 1.0, 'better': 1.0, 'ground': 1.0, 'definitely': 1.0, 'think': 1.0, 'ergo': 1.0, 'like': 1.0, 'carrier': 2.0, 'just': 1.0, 'ease': 1.0, 'prefer': 1.0, 'pain': 1.0, 'be': 3.0, 'moms': 1.0, 'floor': 1.0, 'much': 1.0, 'put': 3.0, 'completely': 1.0, 'takes': 1.0, 'find': 1.0, '1': 1.0, 'bothered': 1.0, 'are': 2.0, 'if': 4.0, 'said': 1.0, 'mention': 1.0, 'more': 1.0, 'babies': 1.0, 'friends': 1.0, 'structured': 2.0, 'buy': 1.0, 'us': 1.0, 'served': 1.0, 'now': 2.0, 'didymos': 1.0, 'should': 1.0, 'pricey': 1.0, 've': 1.0, 'videos': 1.0, 'got': 1.0, 'reasonable': 1.0, 'sooner': 1.0, '8': 1.0, 'back': 2.0, 'couple': 1.0, 'wore': 1.0, 'trips': 1.0, 'bought': 1.0, 'get': 2.0, 'moved': 1.0, 'months': 2.0, 'etc': 1.0, 'short': 1.0, 'wish': 1.0, 'an': 2.0, 'all': 2.0, 'other': 1.0, 'three': 1.0, 'wrap': 3.0, 'woven': 1.0, 'of': 6.0, 'the': 11.0, 'stretchy': 1.0, 'actually': 2.0, 'heavy': 2.0, 'hit': 1.0, 'took': 1.0, 'new': 2.0, 'time': 1.0, 'can': 1.0, 'so': 4.0, 'very': 2.0, 'two': 1.0, 'little': 1.0, 'son': 2.0, 'use': 3.0, 'purchased': 1.0, 'had': 1.0, 'loved': 1.0, 'boba': 4.0, 'hurt': 1.0, 'what': 1.0, 'when': 1.0, 'that': 3.0, 'because': 1.0, 'easily': 1.0, 'times': 1.0, 'things': 1.0, 'you': 10.0, 'taking': 1.0, '3': 1.0, 'long': 1.0, 'on': 8.0, 'your': 2.0, 'pretty': 1.0, 'became': 1.0, 'to': 13.0, 'snapping': 1.0, 'was': 4.0, 'recommend': 1.0, 'one': 1.0, 'too': 4.0, 'and': 10.0, 'old': 1.0, 'off': 3.0, 'see': 1.0, 'until': 2.0, 'comfortable': 1.0, 'or': 2.0, 'stupid': 1.0, 'may': 1.0, 'my': 4.0, 'me': 4.0, 'wrong': 1.0, 'not': 2.0, 'plan': 1.0, 'which': 1.0, 'thought': 2.0, 'it': 15.0, 'he': 2.0, 'how': 1.0, 'at': 2.0, 'is': 6.0, 'but': 4.0, 'never': 1.0, 'some': 2.0, 'reason': 1.0, 'a': 14.0, 'minute': 1.0, 'bjorn': 2.0, 'in': 3.0, 'than': 1.0, 'way': 1.0, 'about': 1.0, 'public': 1.0, 'tie': 1.0, '2': 1.0, 'wraps': 2.0, 'thing': 4.0, 'practice': 1.0, 'runs': 1.0, 'dragging': 1.0, 'take': 3.0, 'go': 1.0, 'learn': 1.0, 'anything': 1.0, 'without': 2.0, 'spin': 1.0, 'finding': 1.0, 'youtube': 2.0, 'fit': 1.0, 'fairly': 1.0, 'along': 1.0, 'around': 1.0, 'practicing': 1.0, 'with': 3.0, 'this': 10.0, 'few': 2.0, 'well': 1.0, 'i': 10.0, 'putting': 2.0, 'before': 2.0, 'out': 3.0, 'for': 10.0, 'fabric': 1.0, 'started': 1.0, 'hot': 1.0, 'video': 1.0, 'price': 1.0}
Word element => {'husband': 1.0, 'my': 1.0, 'have': 1.0, 'done': 1.0, 'things': 1.0, 'some': 1.0, 'how': 1.0, 'laundry': 1.0, 'meals': 1.0, 'don': 1.0, 'preparing': 1.0, 'dishes': 1.0, 'still': 1.0, 'while': 1.0, 'keep': 1.0, 'used': 1.0, 'on': 1.0, 'one': 2.0, 'months': 1.0, 'putting': 1.0, 'two': 1.0, 'etc': 1.0, 'i': 2.0, 'know': 1.0, 'using': 1.0, 'got': 1.0, 'use': 1.0, 'me': 2.0, 'gradually': 1.0, 'now': 1.0, 'increased': 1.0, 'for': 3.0, 'where': 1.0, 'comfortable': 1.0, '1': 2.0, 'getting': 1.0, 'and': 5.0, 't': 1.0, 'we': 6.0, 'during': 1.0, 'boba': 1.0, 'everyday': 1.0, 'more': 1.0, 'started': 1.0, 'just': 1.0, 'get': 1.0, 'closeness': 1.0, 'without': 1.0, 'the': 3.0, 'wrap': 1.0, 'doing': 1.0, 'allows': 1.0, 'this': 1.0, 'to': 1.0, 'as': 1.0, 'close': 1.0, 'day': 1.0, 'week': 2.0, 'in': 1.0, 'would': 1.0, 've': 1.0, 'needs': 1.0, 'are': 2.0, '9': 1.0, 'pretty': 1.0, 'her': 2.0, 'last': 1.0, 'it': 5.0, 'she': 1.0, '5': 1.0, 'much': 1.0, 'there': 1.0, 'times': 1.0, 'every': 1.0, 'really': 1.0}
Word element => {'is': 1.0, 'free': 1.0, 'prefer': 1.0, 'used': 1.0, 'good': 1.0, 'get': 1.0, 'be': 2.0, 'loves': 1.0, 'that': 1.0, 'hands': 1.0, 'the': 2.0, 'while': 1.0, 'brand': 1.0, 'but': 2.0, 'probably': 1.0, 'compare': 1.0, 'super': 1.0, 'would': 4.0, 'baby': 1.0, 'i': 8.0, 'it': 8.0, 'soft': 1.0, 'perfect': 1.0, 'this': 2.0, 'opinion': 1.0, 'love': 1.0, 'feel': 1.0, 'comfortable': 1.0, 'do': 5.0, 'and': 5.0, 'ease': 1.0, '100': 1.0, 'extremely': 1.0, 'stage': 1.0, 'not': 2.0, 'because': 1.0, 'provides': 1.0, 'none': 1.0, 'have': 4.0, 'still': 2.0, 'begin': 1.0, 'true': 1.0, 'all': 1.0, 'to': 8.0, 'stretch': 2.0, 'in': 1.0, 'sag': 1.0, 'color': 1.0, 're': 1.0, 'tight': 1.0, 'another': 1.0, 'often': 1.0, 'my': 2.0, 'very': 1.0, 'comfort': 1.0, 'you': 3.0, 'fairly': 1.0, 'always': 1.0, 'using': 1.0, 'like': 1.0, 'hand': 1.0, 'if': 1.0, 's': 1.0, 'a': 2.0, 'think': 1.0, 'tying': 1.0, 'on': 1.0, 'enjoy': 1.0, 'daughter': 1.0, 'even': 1.0, 'keep': 1.0, 'at': 3.0, 'newborn': 1.0, 'really': 3.0}
Word element => {'hot': 1.0, 'out': 1.0, 'too': 1.0, 'when': 1.0, 'off': 1.0, 'take': 1.0, 'wrap': 1.0, 'would': 1.0, 'i': 1.0, 'that': 1.0, 'straps': 1.0, 'star': 1.0, 'it': 1.0, 'this': 1.0, 'not': 1.0, 'because': 2.0, 'saved': 1.0, 'put': 1.0, 'material': 1.0, 'drag': 1.0, 'be': 1.0, 'to': 1.0, 'newborn': 1.0, 'at': 1.0, 'once': 1.0, 'summer': 1.0, 'is': 1.0, 'want': 1.0, 'long': 1.0, 'down': 1.0, 'wrapping': 1.0, 'difn': 1.0, 'ever': 1.0, 'my': 1.0, 't': 1.0, 'the': 2.0, 'home': 1.0, 'easy': 1.0, 'you': 1.0, 'and': 2.0, 'me': 1.0, 'get': 1.0, 'hang': 1.0, 'of': 2.0, 'deducting': 1.0, 'for': 1.0, 'one': 1.0}
Word element => {'fabulous': 1.0, 'otherwise': 1.0, 'degrees': 1.0, 'think': 1.0, '75': 1.0, 'warmer': 1.0, 'if': 1.0, 'about': 1.0, 'baby': 1.0, 'hot': 1.0, 'too': 1.0, 'gets': 1.0, 'warm': 1.0, 'than': 1.0, 'weather': 1.0, 'wish': 1.0, 'in': 1.0, 'little': 1.0, 'my': 1.0, 'the': 1.0, 'great': 1.0, 'works': 1.0, 'for': 3.0, 'love': 1.0, 'carrying': 1.0, 'i': 3.0, 'lighter': 1.0, 'around': 1.0, 'it': 5.0, 'this': 1.0, 'only': 1.0, 'fabric': 1.0, 'thing': 1.0, 'is': 3.0, 'that': 1.0, 'girl': 1.0, 'came': 1.0, 'wrap': 1.0, 'a': 1.0}
Word element => {'me': 1.0, 'these': 1.0, 'expect': 1.0, 'know': 1.0, 'mom': 1.0, 'expectant': 1.0, 'every': 1.0, 'showers': 1.0, 'on': 1.0, 'now': 1.0, 'from': 2.0, 'boba': 1.0, 'straight': 1.0, 'goes': 1.0, 'can': 2.0, 'most': 1.0, 'in': 1.0, 'being': 1.0, 'wind': 1.0, 'wear': 2.0, 'needs': 1.0, 'so': 1.0, 'and': 4.0, 'use': 1.0, 'purchased': 1.0, 'get': 1.0, 'easy': 1.0, 'church': 1.0, 'baby': 3.0, 'about': 2.0, 'comfortable': 1.0, 'one': 2.0, 'any': 1.0, 'sleep': 1.0, 'to': 6.0, 'often': 1.0, 'my': 2.0, 'hands': 1.0, 'wrap': 2.0, 'the': 3.0, 't': 2.0, 'future': 1.0, 'at': 1.0, 'space': 2.0, 'of': 2.0, 'don': 1.0, 'up': 1.0, 'best': 1.0, 'i': 6.0, 'extremely': 1.0, 'this': 3.0, 'she': 1.0, 'it': 2.0, 'have': 2.0, 'loves': 1.0, 'into': 1.0, 'or': 1.0, 'for': 1.0, 'where': 1.0, 'when': 1.0, 'worry': 1.0, 'carrier': 1.0, 'taking': 1.0, 'much': 1.0, 'things': 2.0, 'fussy': 1.0, 'say': 1.0, 'is': 4.0, 'around': 1.0, 'down': 2.0, 'especially': 1.0, 'enough': 1.0, 'limited': 1.0, 'house': 1.0, 'good': 1.0, 'her': 1.0, 'clean': 1.0}
Word element => {'petites': 1.0, 'maybe': 1.0, 'length': 1.0, 'is': 1.0, '2': 1.0, 'suited': 1.0, 'super': 1.0, 'also': 1.0, '5': 1.0, 'i': 1.0, 'fabric': 1.0, 'feel': 1.0, 'it': 1.0, 'like': 1.0, 'product': 1.0, 'not': 1.0, 'at': 1.0, 'the': 1.0, 'just': 1.0, 'too': 1.0, 'short': 1.0, 'intimidating': 1.0, 'for': 2.0}
Word element => {'explains': 1.0, 'love': 3.0, 'com': 1.0, 'youtube': 1.0, 'out': 1.0, 'just': 1.0, 'confused': 1.0, 'everything': 1.0, 'if': 1.0, 'videos': 1.0, 'baby': 1.0, 'on': 2.0, 'put': 2.0, 'to': 1.0, 'stays': 1.0, 'and': 5.0, 'temperature': 1.0, 'now': 1.0, 'was': 1.0, 'check': 1.0, 'back': 2.0, 'boba': 2.0, 'secure': 1.0, 'an': 1.0, 'this': 3.0, 'have': 1.0, 'house': 1.0, 'enough': 1.0, 'support': 1.0, 'my': 2.0, 'tried': 1.0, 'i': 1.0, 'old': 1.0, 'best': 1.0, 'in': 2.0, 'moby': 1.0, 'maya': 1.0, 'which': 2.0, 'you': 1.0, 'gives': 1.0, 'hurt': 1.0, 'me': 1.0, 'not': 1.0, 'even': 2.0, '16': 1.0, 'sagging': 1.0, 'plus': 1.0, 'it': 1.0, 'month': 1.0, 'she': 1.0, 'get': 1.0, 'easy': 1.0, 'holds': 1.0, 'is': 2.0, 'so': 2.0, 'calm': 1.0, '20lbs': 1.0, 'at': 1.0, 'super': 1.0, 'wearing': 2.0, 'while': 1.0, 'the': 4.0, 'stretchy': 1.0, 'without': 1.0, 'wrap': 2.0}
Word element => {'stretchy': 1.0, 'in': 1.0, 'material': 1.0, 'about': 1.0, 'cleaning': 1.0, 'out': 1.0, 'whether': 1.0, 'times': 1.0, 'several': 1.0, 'use': 1.0, 'or': 1.0, 'good': 2.0, 'instructions': 1.0, 'on': 1.0, 'to': 1.0, 'at': 1.0, 'once': 1.0, 'm': 1.0, 'by': 1.0, 'confusing': 1.0, 'a': 4.0, 'little': 1.0, 'hang': 1.0, 'love': 1.0, 'cotton': 1.0, 'with': 1.0, 'come': 1.0, 'first': 1.0, 'this': 2.0, 'it': 3.0, 'step': 2.0, 'i': 3.0, 'does': 1.0, 'week': 1.0, 'put': 1.0, 'but': 1.0, 'home': 1.0, 'easy': 1.0, 's': 1.0, 'you': 1.0, 'and': 1.0, 'get': 1.0, 'the': 2.0, 'of': 1.0, 'is': 1.0, 'really': 1.0}
Word element => {'loves': 1.0, 'bit': 1.0, 'a': 1.0, 'law': 2.0, 'struggles': 1.0, 'in': 2.0, 'by': 1.0, 'daughter': 2.0, 'granddaughter': 1.0, 'to': 2.0, 'tells': 1.0, 'son': 1.0, 'their': 1.0, 'bought': 1.0, 'my': 3.0, 'child': 1.0, 'really': 1.0, 'herself': 1.0, 'people': 1.0, 'they': 1.0, 'for': 3.0, 'love': 1.0, 'first': 1.0, 'this': 1.0, 'it': 4.0, 's': 1.0, 'she': 1.0, 'easy': 1.0, 'but': 2.0, 'super': 1.0, 'two': 1.0, 'me': 1.0, 'and': 2.0, 'do': 2.0}
Word element => {'chest': 1.0, 'your': 1.0, 'legs': 1.0, 'be': 1.0, 'need': 1.0, 'their': 1.0, 'that': 1.0, 'wrapped': 1.0, 'on': 2.0, 'works': 1.0, 'hot': 1.0, 'videos': 1.0, 'youtube': 1.0, 'some': 1.0, 'helped': 1.0, 'but': 1.0, 'recommend': 1.0, 'easy': 1.0, 'use': 1.0, 'to': 4.0, 'infants': 1.0, 't': 1.0, 'great': 2.0, 'not': 1.0, 'wrap': 2.0, 'a': 1.0, 'i': 1.0, 'with': 1.0, 'this': 1.0, 'it': 1.0, 'wouldn': 1.0, 'for': 1.0, 'much': 1.0, 'though': 1.0, 'summer': 1.0, 'is': 1.0}
Word element => {'purchased': 1.0, 'quickly': 1.0, 'goes': 1.0, 'process': 1.0, 'minutes': 1.0, 'get': 1.0, 'getting': 1.0, 'glad': 1.0, 'settles': 1.0, 'he': 1.0, 'and': 5.0, 'tuck': 1.0, 'fussy': 1.0, 'comfortable': 1.0, 'love': 1.0, 'for': 1.0, 'to': 1.0, 'old': 1.0, 'within': 1.0, 'him': 1.0, 'putting': 1.0, 'us': 1.0, 'nearly': 1.0, 'my': 1.0, 'i': 2.0, '4': 1.0, 'on': 1.0, 'week': 1.0, 'gets': 1.0, 'son': 1.0, 'very': 1.0, 'down': 1.0, 'both': 1.0, 'usually': 1.0, 'really': 1.0, 'material': 1.0, 'falls': 1.0, 'in': 2.0, 'itself': 1.0, 'is': 2.0, 'this': 2.0, 'soft': 1.0, 'wrap': 3.0, 'asleep': 1.0, 'the': 6.0, 'stretchy': 1.0, 'once': 1.0, 'of': 2.0, 'when': 1.0, 'you': 1.0, 'hang': 1.0, 'baby': 1.0, 'nestled': 1.0}
Word element => {'secure': 1.0, 'well': 1.0, 'work': 1.0, 'very': 1.0, 'and': 2.0, 'seems': 1.0, 'videos': 1.0, 'i': 1.0, 'it': 2.0, 'use': 1.0, 'be': 1.0, 'to': 3.0, 'attach': 1.0, 'durable': 1.0, 'for': 1.0, 'my': 1.0, 'tripod': 1.0, 'iphone': 1.0, 'a': 1.0, 'making': 1.0}
Word element => {'worth': 1.0, 'in': 1.0, 'having': 1.0, 'iphone': 1.0, 'my': 2.0, 'don': 1.0, 'sturdy': 1.0, 'and': 4.0, 'putting': 1.0, 'i': 2.0, 'texts': 1.0, 'adjustable': 1.0, 'emails': 1.0, 'great': 1.0, 'so': 2.0, 'is': 1.0, 'attachements': 1.0, 'able': 1.0, 'super': 1.0, 'stroller': 3.0, 'but': 1.0, 'disappoint': 1.0, 'of': 1.0, 'this': 1.0, 'it': 1.0, 'mind': 1.0, 'with': 1.0, 'one': 2.0, 'try': 1.0, 'works': 1.0, 'm': 1.0, 'phone': 1.0, 'protective': 1.0, '10': 1.0, 'being': 1.0, 'while': 1.0, 'to': 2.0, 'many': 1.0, 'take': 1.0, '5': 1.0, 'calls': 1.0, 'without': 1.0, 'very': 1.0, 'read': 1.0, 'pushing': 1.0, 't': 1.0, 'a': 2.0, 'finagle': 1.0, 'hand': 1.0}
Word element => {'favorite': 1.0, 'is': 1.0, 'bag': 1.0, 'buried': 1.0, 'of': 2.0, 'hear': 1.0, 'at': 1.0, 'must': 1.0, 'can': 1.0, 'right': 1.0, 'brica': 1.0, 'instead': 1.0, 'pod': 2.0, 'where': 1.0, 'attached': 1.0, 'phone': 4.0, 'easily': 1.0, 'diaper': 1.0, 'the': 3.0, 'my': 5.0, 'to': 2.0, 'was': 1.0, 'i': 5.0, 'say': 1.0, 'one': 1.0, 'fingertips': 1.0, 'given': 1.0, 'love': 5.0, 'it': 5.0, 'accessories': 1.0, 'and': 2.0, 'perfectly': 1.0, 'stroller': 1.0, 'review': 1.0, 'fits': 1.0, 'in': 2.0, 'having': 1.0}
Word element => {'in': 1.0, 'seems': 1.0, 'for': 1.0, 'fussy': 1.0, 'performance': 1.0, 'when': 3.0, 'still': 1.0, 'gets': 1.0, 'son': 2.0, 'on': 1.0, 'nonetheless': 1.0, 'bar': 2.0, 'running': 2.0, 'doesn': 1.0, 'place': 1.0, 'the': 5.0, 'to': 4.0, 'now': 1.0, 'it': 6.0, 'this': 1.0, 'belly': 1.0, 'phone': 3.0, 'use': 2.0, 'pod': 1.0, 'i': 6.0, 'handle': 1.0, 'a': 1.0, 't': 1.0, 'go': 1.0, '5': 1.0, 'endomondo': 1.0, 'watch': 1.0, 'holder': 1.0, 'him': 1.0, 'attach': 2.0, 'and': 3.0, 'rotating': 1.0, 'let': 1.0, 'position': 1.0, 'something': 1.0, 'cannot': 1.0, 'stay': 1.0, 'track': 1.0, 'give': 1.0, 'my': 3.0, 'starts': 1.0, 'because': 1.0, 'started': 1.0, 'mechanism': 1.0, 'broke': 1.0, 'lock': 1.0, 'into': 1.0, 'can': 1.0}
Word element => {'purchasing': 1.0, 'something': 1.0, 'was': 1.0, '81': 1.0, '2': 1.0, '34': 2.0, '59': 1.0, '5': 1.0, 'height': 1.0, 'did': 1.0, 'not': 1.0, 'phones': 1.0, 'some': 1.0, 'fit': 1.0, 'for': 1.0, 'if': 1.0, 'be': 1.0, 'just': 2.0, 'loaded': 1.0, 'are': 2.0, 'side': 1.0, 'spring': 1.0, 'player': 2.0, 'quad': 1.0, 'it': 6.0, 'zte': 1.0, 'this': 3.0, 'mind': 1.0, 'supreme': 1.0, 'buying': 1.0, 'with': 1.0, 'foundations': 1.0, 'too': 1.0, 'and': 4.0, 'matter': 1.0, 'two': 1.0, 'i': 2.0, 'bought': 1.0, 'pull': 1.0, 'have': 1.0, 'a': 1.0, 'we': 1.0, 's': 1.0, 'when': 1.0, 'cell': 2.0, 'you': 2.0, 'mp4': 2.0, 'to': 2.0, 'stroller': 3.0, 'phone': 2.0, 'use': 1.0, 'son': 2.0, 'brackets': 1.0, 'almost': 1.0, 'off': 1.0, 'big': 1.0, 'great': 1.0, 'stays': 1.0, 'is': 1.0, 'holds': 1.0, 'keep': 1.0, 'bigger': 1.0, 'since': 1.0, 'three': 1.0, 'no': 1.0, 'of': 1.0, 'once': 1.0, 'he': 2.0, 'how': 1.0, 'careful': 1.0, 'the': 5.0, 'tugs': 1.0, 'place': 1.0, 'try': 1.0, 'much': 1.0, 'pulls': 1.0, 'your': 1.0, 'on': 2.0, 'width': 1.0, 'cannot': 1.0, 'in': 2.0, 'will': 1.0, 'also': 1.0, 'tighten': 1.0, 'pretty': 1.0, 'my': 4.0, 'fits': 1.0, 'tight': 1.0}
Word element => {'buy': 1.0, 'will': 1.0, 'overall': 1.0, 'bad': 1.0, 'good': 1.0, 'that': 2.0, 'consider': 2.0, 'others': 1.0, 'some': 1.0, 'very': 1.0, 'adjust': 1.0, 'pleased': 1.0, 'built': 1.0, 'i': 2.0, 'impressive': 1.0, 'pretty': 1.0, 'everything': 1.0, 'so': 2.0, 'and': 4.0, 'prefer': 1.0, 's': 3.0, 'a': 1.0, 't': 2.0, 'great': 1.0, 'won': 2.0, 'on': 2.0, 'holders': 1.0, 'this': 1.0, 'it': 7.0, 'not': 1.0, 'to': 4.0, 'seat': 1.0, 'hold': 1.0, 'anything': 1.0, 'fully': 1.0, 'get': 1.0, 'easy': 1.0, 'car': 1.0, 'cup': 1.0, 'cause': 1.0, 'push': 1.0, 'but': 2.0, 'can': 1.0, 'again': 1.0, 'easily': 1.0, 'you': 1.0, 'when': 1.0, 'still': 1.0, 'gets': 1.0, 'universal': 1.0, 'gross': 1.0, 'enough': 1.0, 'off': 1.0, 'small': 1.0, 'have': 1.0, 'able': 1.0, 'in': 1.0, 'turn': 1.0, 'wash': 1.0, 'child': 1.0, 'be': 1.0}
Word element => {'certainly': 1.0, 'him': 1.0, 'graduated': 1.0, 'littlest': 1.0, 'separately': 1.0, 'buy': 1.0, 'came': 1.0, 'either': 1.0, 'just': 3.0, 'fine': 1.0, 'bought': 1.0, 'one': 2.0, 'use': 1.0, 'won': 1.0, 'handles': 1.0, 'with': 3.0, 'trap': 1.0, 'get': 1.0, 'them': 1.0, 'screws': 1.0, 'it': 6.0, 'wish': 1.0, 'this': 1.0, 'he': 1.0, 'its': 1.0, 'only': 1.0, 'big': 1.0, 'great': 1.0, 'i': 2.0, 'sport': 1.0, 'job': 1.0, 'the': 1.0, 'pro': 1.0, 'have': 3.0, 'holder': 1.0, 'or': 1.0, 'cup': 2.0, 'another': 2.0, 'fits': 1.0, 'tightly': 1.0, 'my': 3.0, 'to': 2.0, 'cups': 1.0, 'seat': 2.0, 'not': 2.0, 'does': 2.0, 'old': 1.0, 'car': 2.0, 'built': 1.0, 'could': 1.0, 't': 1.0, 'we': 1.0, 'a': 2.0, 's': 1.0, 'snack': 2.0, 'his': 2.0, 'year': 1.0, 'off': 1.0, 'cannot': 1.0, 'which': 2.0, 'using': 1.0, 'fit': 1.0, 'for': 2.0, 'toys': 1.0, 'and': 1.0, 'too': 1.0, 'you': 2.0, 'when': 1.0, 'so': 1.0, 'boy': 1.0, 'time': 1.0, 'on': 1.0, '3': 1.0, 'your': 1.0, 'complaint': 1.0, 'comes': 1.0, 'is': 2.0, 'recaro': 1.0, 'in': 1.0, 'regular': 1.0, 'loves': 1.0, 'that': 1.0}
Word element => {'use': 1.0, 'just': 1.0, 'broke': 1.0, 'and': 1.0, 'week': 1.0, 'handle': 1.0, 'item': 1.0, 'mechanism': 1.0, 'does': 1.0, 'after': 1.0, 'not': 1.0, 'locking': 1.0, 'car': 1.0, 'secure': 1.0, 'of': 1.0, '1': 1.0, 'seat': 1.0, 'tightly': 1.0, 'on': 1.0, 'son': 1.0, 'the': 1.0, 'my': 1.0, 's': 1.0}
Word element => {'otherwise': 1.0, 'handy': 1.0, 'very': 1.0, 'is': 1.0, 'snatch': 1.0, 'starts': 1.0, 'no': 1.0, 'stay': 2.0, 'not': 1.0, 'how': 1.0, 'tilt': 1.0, 'on': 2.0, 'tight': 1.0, 'for': 1.0, 'the': 2.0, 'enough': 1.0, 'make': 1.0, 'i': 2.0, 'when': 1.0, 'catcher': 1.0, 'it': 4.0, 'can': 1.0, 'ride': 1.0, 'matter': 1.0, 'get': 1.0, 'carseat': 1.0, 'does': 1.0, 'long': 1.0, 'to': 2.0, 'a': 1.0, 'car': 1.0}
Word element => {'again': 1.0, 'one': 1.0, 'd': 1.0, 'don': 2.0, 'year': 1.0, 'my': 1.0, 'cup': 2.0, 'given': 1.0, 'using': 1.0, '5': 1.0, 'well': 1.0, 'it': 2.0, '2': 1.0, 'the': 3.0, 'is': 1.0, 'old': 1.0, 'normal': 1.0, 'i': 1.0, 'strength': 1.0, 'mention': 1.0, 'install': 1.0, 'stays': 1.0, 'quite': 1.0, 'easy': 2.0, 'store': 1.0, 'use': 2.0, 'and': 1.0, 'clean': 2.0, 's': 2.0, 't': 2.0, 'we': 2.0, 'attached': 1.0, 'this': 2.0, 'kids': 1.0, 'buy': 1.0, 'blue': 1.0, 'snack': 2.0, 'at': 1.0, 'have': 1.0, 'snacks': 1.0, 'fit': 1.0, 'here': 1.0, 'itself': 1.0, 'in': 1.0, 'however': 1.0, 'to': 3.0, 'cups': 1.0, 'all': 1.0, 'our': 1.0, 'started': 1.0, 'holder': 1.0, 'did': 1.0}
Word element => {'disappointed': 1.0, 'very': 1.0, 'will': 1.0, 'off': 1.0, 'clamp': 1.0, 'britax': 1.0, 'not': 1.0, 'a': 1.0, 'marathon': 1.0, 'falls': 1.0, '70': 1.0, 'close': 1.0, 'slightest': 1.0, 'have': 1.0, 'tight': 1.0, 'enough': 1.0, 'and': 1.0, 'is': 1.0, 'with': 1.0, 'the': 1.0, 'bulky': 1.0, 'cup': 1.0, 'holder': 1.0, 'i': 1.0, 'touch': 1.0}
Word element => {'drinks': 1.0, 'ones': 1.0, 'little': 1.0, 'have': 1.0, 'you': 1.0, 'attachment': 1.0, 'versatile': 1.0, 'on': 1.0, 'our': 2.0, 'if': 1.0, 'convenient': 1.0, 'push': 1.0, 'handy': 1.0, 'snacks': 1.0, 'fits': 1.0, 'stroller': 1.0, 'car': 1.0, 'keeps': 1.0, 'seat': 1.0, 'a': 1.0, 'tricycle': 1.0, 'and': 2.0, 'very': 2.0}
Word element => {'yet': 1.0, 'a': 1.0, 'had': 1.0, 'it': 1.0, 'mishap': 1.0, 'not': 1.0, 'was': 1.0, 'cup': 1.0, 'job': 1.0, 'sceptical': 1.0, 'i': 1.0, 'does': 1.0, 'snacks': 1.0, 'but': 1.0, 'holds': 2.0, 'well': 1.0, 'and': 2.0, 'its': 1.0}
Word element => {'choose': 1.0, 'triple': 1.0, 'uppababy': 1.0, 'for': 2.0, 'opt': 1.0, 'my': 1.0, 'may': 1.0, 'i': 2.0, 'have': 1.0, 'well': 1.0, 'had': 2.0, 'leveling': 1.0, 'of': 1.0, 'nice': 1.0, 'snack': 2.0, 'tilt': 1.0, 'on': 1.0, 'be': 1.0, 'price': 1.0, 'onto': 1.0, 'clamp': 1.0, 'the': 6.0, 'tray': 1.0, 'mechanism': 1.0, 'function': 1.0, 'if': 2.0, 'surface': 1.0, 'again': 1.0, 'times': 1.0, 'diagonal': 1.0, 'it': 5.0, 'works': 1.0, 'but': 2.0, 'can': 1.0, 'slip': 1.0, 'since': 1.0, 'at': 1.0, 'would': 1.0, 'off': 1.0, 'or': 1.0, 'quite': 1.0, 'good': 1.0, 'not': 1.0, 'making': 1.0, 'actual': 1.0, 'to': 2.0, 'attaching': 1.0, 'seat': 1.0, 'straight': 1.0, 'and': 2.0, 'then': 1.0, 'stroller': 2.0, 'pod': 1.0, 'use': 1.0, 'level': 1.0, 'in': 1.0, 'out': 1.0, 'a': 1.0, 'we': 2.0, 'are': 1.0, 'car': 1.0}
Word element => {'holder': 1.0, 'easily': 1.0, 'things': 1.0, 'attaches': 1.0, 'and': 1.0, 'of': 1.0, 'seat': 1.0, 'is': 1.0, 'a': 3.0, 'lot': 1.0, 'solution': 1.0, 'doesn': 1.0, 'stroller': 1.0, 'it': 2.0, 'pretty': 1.0, 'if': 1.0, 'your': 1.0, 'good': 1.0, 'holds': 1.0, 'or': 1.0, 'car': 1.0, 'drink': 1.0, 't': 1.0, 'have': 1.0}
Word element => {'iphone': 1.0, 'drink': 1.0, 'in': 1.0, 'rigidity': 1.0, 'too': 1.0, 'and': 2.0, 'ease': 1.0, 'correctly': 1.0, 'stroller': 1.0, 'my': 2.0, 'still': 1.0, 'fold': 1.0, 'off': 1.0, 'twist': 1.0, 'tension': 1.0, 'new': 1.0, 'not': 2.0, 'because': 1.0, 'do': 1.0, 'couldn': 1.0, 'thing': 1.0, 'whole': 1.0, 'newer': 1.0, 'on': 1.0, '3': 1.0, '5': 1.0, 'that': 1.0, 'gave': 1.0, 'it': 6.0, 'quick': 2.0, 'is': 2.0, 'kids': 1.0, 'this': 1.0, 'release': 1.0, 'tabs': 1.0, 'without': 1.0, 'the': 6.0, 'hold': 1.0, 'like': 1.0, 'know': 1.0, 'version': 1.0, 'take': 1.0, 'of': 2.0, 'i': 7.0, 'love': 1.0, 'stars': 1.0, 'for': 1.0, 'years': 1.0, 'up': 1.0, 'don': 1.0, 'had': 1.0, 'unscrew': 1.0, 'walks': 1.0, 't': 3.0, 'we': 1.0, 'one': 3.0, 'mechanism': 1.0, 'did': 1.0, 'so': 1.0, 'but': 1.0, 'secure': 1.0, 'also': 1.0, 'they': 1.0, 'means': 1.0, 'cups': 1.0, 'to': 3.0, 'as': 1.0, 'use': 2.0, 'have': 1.0}
Word element => {'enough': 1.0, 'decent': 1.0, 'a': 2.0, 'find': 1.0, 'can': 2.0, 'i': 3.0, 'is': 1.0, 'which': 1.0, 'of': 1.0, 'out': 1.0, 'in': 1.0, 'better': 1.0, 'if': 1.0, 'constantly': 1.0, 'holder': 2.0, 'annoying': 1.0, 'cup': 1.0, 'seat': 2.0, 'get': 1.0, 'and': 1.0, 'getting': 2.0, 'pushed': 1.0, 'as': 2.0, 'ok': 1.0, 'assuming': 1.0, 'etc': 1.0, 'her': 1.0, 'does': 2.0, 'long': 1.0, 'on': 1.0, 'it': 3.0, 'this': 2.0, 'with': 1.0, 't': 1.0, 'the': 1.0, 'will': 1.0, 'an': 1.0, 'but': 2.0, 's': 1.0, 'stays': 1.0, 'job': 2.0, 'off': 1.0, 'our': 1.0, 'daughter': 1.0}
Word element => {'sippy': 1.0, 'cups': 1.0, 'graco': 1.0, 'our': 1.0, 'cost': 1.0, 'jogging': 1.0, 'signature': 1.0, 'ignite': 1.0, 'fits': 1.0, 'great': 1.0, 'adjustable': 1.0, 'the': 3.0, 'tommy': 1.0, 'for': 2.0, 'straw': 1.0, 'product': 1.0, 'bought': 1.0, 'enough': 1.0, 'reasonable': 1.0, 'both': 1.0, 'without': 1.0, 'and': 3.0, 'issue': 1.0, 'stroller': 2.0, 'an': 1.0, 'cup': 1.0, 'holder': 1.0, 'big': 1.0, 'is': 1.0}
Word element => {'not': 1.0, 'understands': 1.0, 'use': 1.0, 'can': 1.0, 'when': 1.0, 'am': 1.0, 'remove': 1.0, 'on': 2.0, 'is': 2.0, 'throw': 1.0, 'very': 1.0, 'and': 2.0, 'doesn': 1.0, 'floor': 1.0, 'older': 1.0, 'he': 2.0, 'it': 5.0, 'stay': 1.0, 'holder': 1.0, 'pretty': 1.0, 't': 1.0, 'the': 2.0, 'pull': 1.0, 'my': 1.0, 'tight': 1.0, 'likes': 1.0, 'once': 1.0, '22mo': 1.0, 'hoping': 1.0, 'to': 2.0, 'good': 1.0, 'off': 1.0, 'old': 1.0, 'i': 2.0}
Word element => {'seat': 1.0, 'car': 1.0, 'pull': 1.0, 'pod': 1.0, 'snack': 1.0, 'versatile': 1.0, 'lock': 1.0, 'and': 3.0, 'wont': 1.0, 'out': 1.0, 'ignite': 1.0, 'the': 2.0, 'stroller': 3.0, 'than': 1.0, 'year': 1.0, 'have': 2.0, 'attach': 1.0, 'other': 1.0, 'we': 1.0, 'a': 1.0, 'convenient': 1.0, 'is': 1.0, 'on': 1.0, 'first': 1.0, 'this': 2.0, 'it': 1.0, 'that': 1.0, 'to': 3.0, 'its': 1.0, 'if': 1.0, 'pretty': 1.0}
Word element => {'find': 1.0, 'little': 1.0, 'but': 1.0, 'between': 1.0, 'room': 1.0, 'right': 1.0, 'put': 1.0, 'going': 1.0, 'just': 1.0, 'stars': 1.0, 'all': 1.0, 'five': 1.0, 'given': 1.0, 'have': 3.0, 'would': 1.0, 'using': 1.0, 'itself': 1.0, 'not': 1.0, 'say': 1.0, 'shallow': 1.0, 'there': 1.0, 'used': 1.0, 'works': 1.0, 'problem': 1.0, 'brake': 1.0, 'attached': 1.0, 'beyond': 1.0, 'stroller': 1.0, 'ago': 1.0, 't': 4.0, 'dish': 1.0, 'go': 1.0, 'like': 1.0, 'bath': 1.0, 'on': 3.0, 'emergency': 1.0, 'seat': 2.0, 'm': 1.0, 'hadn': 1.0, 'in': 3.0, 'bought': 1.0, 'for': 7.0, 'bed': 1.0, 'drink': 1.0, 'about': 1.0, 'one': 2.0, 'lot': 1.0, 'packaged': 1.0, 'don': 2.0, 'and': 4.0, 'another': 1.0, 'no': 1.0, 'years': 1.0, 'both': 2.0, 'product': 1.0, 'price': 1.0, 'd': 1.0, 'i': 9.0, 'replace': 1.0, 'cup': 1.0, 'now': 1.0, 'worth': 1.0, 'sits': 1.0, 'is': 2.0, 'handle': 1.0, 'at': 3.0, 'look': 1.0, 'was': 5.0, 'store': 1.0, 'make': 1.0, 'anymore': 1.0, 'to': 8.0, 'beverage': 1.0, 'use': 2.0, 'amazon': 1.0, 'didn': 1.0, 'instead': 1.0, 'even': 1.0, 'great': 2.0, 'cracked': 2.0, '2': 1.0, 'again': 1.0, 'car': 1.0, 'way': 1.0, 'tightening': 1.0, 'this': 1.0, 'it': 20.0, 'snack': 2.0, 'with': 3.0, 'a': 8.0, 'small': 1.0, 'something': 1.0, 'dogs': 1.0, 'inside': 1.0, 'the': 10.0, 'of': 3.0, 'up': 2.0, 'water': 1.0, 'when': 1.0, 'you': 1.0, 'they': 2.0, 'my': 2.0, 'me': 1.0, 'after': 1.0, 'included': 1.0, 'so': 4.0, 'sell': 1.0, 'came': 1.0, 'surprised': 1.0, 'see': 1.0, 'easily': 1.0, 'that': 1.0, 'baby': 2.0, 'does': 1.0, 're': 1.0, 'where': 1.0, 'come': 2.0, 'under': 1.0, 'same': 2.0, 'loose': 1.0, 's': 4.0, 'sides': 2.0, 'from': 1.0, 'time': 3.0, 'new': 1.0, 'if': 2.0}
Word element => {'need': 1.0, 'overall': 1.0, 'like': 1.0, 'since': 1.0, 'with': 1.0, 'models': 1.0, 'some': 1.0, 'horizontally': 1.0, 'better': 1.0, 'but': 1.0, 'work': 1.0, 'accidents': 1.0, 'knocked': 1.0, 'out': 3.0, 'i': 4.0, 'much': 1.0, 'material': 1.0, 'for': 1.0, 'supposed': 1.0, 'grab': 1.0, 'be': 2.0, 'snack': 1.0, 'loves': 1.0, 'good': 1.0, 'spill': 1.0, 'chicco': 1.0, 'my': 1.0, 'watch': 1.0, 'high': 1.0, 'the': 7.0, 'still': 1.0, 'son': 1.0, 'is': 2.0, 'it': 6.0, 'looks': 1.0, 'side': 1.0, 'positioned': 1.0, 'tries': 1.0, 'design': 1.0, 'used': 1.0, 'however': 1.0, 'imagine': 1.0, 'of': 4.0, '6': 1.0, 'and': 3.0, 'quality': 2.0, 'stroller': 2.0, 'pod': 1.0, 'will': 1.0, 'clamp': 1.0, 'not': 1.0, 'on': 2.0, 'bowl': 1.0, 'strong': 1.0, 'a': 1.0, 's': 1.0, 'tried': 1.0, 'tighten': 1.0, 'over': 1.0, 'bar': 2.0, 'to': 4.0, 'as': 3.0, 'all': 1.0, 'our': 1.0, 'so': 1.0, 'time': 1.0, 'ct0': 1.0, 'position': 1.0, 'would': 2.0, 'bear': 1.0, 'seen': 1.0, 'easily': 1.0}
Word element => {'satisfied': 1.0, 're': 1.0, 'was': 1.0, 'this': 1.0, 'better': 1.0, 'us': 1.0, 'lol': 1.0, 'with': 2.0, 'bringing': 1.0, 'can': 1.0, 'in': 2.0, 'her': 3.0, 'puts': 1.0, 'purchase': 1.0, 'lid': 1.0, 'my': 1.0, 'when': 1.0, 'great': 3.0, 'nicely': 1.0, 'little': 1.0, 'biggie': 1.0, 'get': 2.0, 'easy': 1.0, 'to': 7.0, 'any': 1.0, 'pull': 1.0, 'cup': 5.0, 'fast': 2.0, 'snack': 4.0, 'he': 1.0, 'she': 2.0, 'it': 5.0, 'end': 1.0, 'works': 1.0, 'only': 1.0, 'tray': 2.0, 'holder': 1.0, 'just': 1.0, 'is': 2.0, 'holds': 1.0, 'needs': 1.0, 'so': 3.0, 'learns': 1.0, 'attach': 1.0, 'out': 2.0, 'attaches': 1.0, 'without': 2.0, 'hands': 1.0, 'the': 11.0, 'basically': 1.0, 'stroller': 1.0, 'baby': 2.0, 'quality': 1.0, 'we': 1.0, 'a': 3.0, 's': 1.0, 'would': 1.0, 'super': 2.0, 'stronger': 1.0, 'really': 2.0, 'material': 1.0, 'grab': 1.0, 'be': 1.0, 'and': 2.0, 'too': 1.0, 'attached': 1.0, 'no': 1.0, 'thing': 1.0, 'i': 1.0, 'hand': 1.0, 'like': 1.0, 'for': 2.0, 'somewhat': 1.0}
Word element => {'waste': 1.0, 'don': 1.0, 'dog': 1.0, 'stayed': 1.0, 'attached': 1.0, 'chew': 1.0, 'than': 2.0, 'car': 1.0, 'floor': 1.0, 'more': 2.0, 'off': 2.0, 'knocked': 2.0, 'and': 1.0, 'handle': 1.0, 'used': 2.0, 'try': 1.0, 'use': 1.0, 'your': 1.0, 'on': 5.0, 'you': 1.0, 'costco': 1.0, 'scenera': 1.0, 'what': 1.0, 'carseat': 3.0, 'down': 1.0, 'spent': 1.0, 'his': 1.0, 'guess': 1.0, 'i': 3.0, 'old': 1.0, 'pretty': 1.0, 'also': 1.0, 'failed': 1.0, 'it': 11.0, 'this': 1.0, 'first': 1.0, 'the': 7.0, 'a': 2.0, 't': 2.0, 'of': 2.0, 'practical': 1.0, 'stroller': 2.0, 'money': 1.0, 'but': 2.0, 'just': 1.0, 'ides': 1.0, 'toy': 1.0, 'usage': 1.0, 'depends': 1.0, 'in': 1.0, 'got': 2.0, 'didn': 1.0, 'three': 1.0, 'love': 1.0, 'product': 1.0, 'fit': 1.0, 'as': 2.0, 'seat': 1.0, 'to': 2.0, 'our': 1.0, 'finally': 1.0, 'locked': 1.0, 'often': 1.0, 'tight': 1.0, 'my': 1.0, 'great': 1.0, 'until': 2.0, 'miserably': 1.0, 'into': 1.0, 'time': 2.0, 'yr': 1.0, 'climbed': 1.0}
Word element => {'smooth': 1.0, 'onto': 1.0, 'cup': 1.0, 'is': 3.0, 'on': 1.0, 'bar': 1.0, 'a': 1.0, 'it': 4.0, 'as': 1.0, 'easy': 1.0, 'and': 1.0, 'get': 1.0, 'to': 2.0, 'right': 1.0, 'but': 2.0, 'put': 1.0, 'in': 1.0, 'for': 1.0, 'the': 1.0, 'slips': 1.0, 'tried': 1.0, 'off': 1.0, 'too': 1.0, 'multiple': 1.0, 'there': 1.0, 'diagonal': 1.0, 'soon': 1.0, 'times': 1.0, 'nothing': 1.0, 'grip': 1.0}
Word element => {'spill': 1.0, 'a': 1.0, 'cocktail': 1.0, 'without': 1.0, 'perfectly': 1.0, 'and': 1.0, 'bar': 1.0, 'evening': 1.0, 'drive': 1.0, 'i': 1.0, 'my': 1.0, 'the': 1.0, 'electric': 1.0, 'an': 1.0, 'to': 1.0, 'get': 1.0, 'around': 1.0, 'this': 1.0, 'holds': 1.0, 'use': 1.0, 'scooter': 1.0, 'fits': 1.0}
Word element => {'still': 1.0, 'left': 1.0, 'cushioned': 1.0, 'off': 1.0, 'or': 1.0, 'on': 2.0, 'over': 2.0, 'tipped': 1.0, 'in': 1.0, 'a': 1.0, 'time': 1.0, 'have': 1.0, 'cup': 2.0, 'would': 1.0, 'holder': 2.0, 'fell': 1.0, 'portion': 1.0, 'and': 4.0, 'handlebar': 2.0, 'as': 1.0, 'to': 2.0, 'teds': 1.0, 'dot': 1.0, 'the': 8.0, 'indentation': 1.0, 'completely': 1.0, 'of': 1.0, 'metal': 1.0, 'an': 1.0, 'but': 1.0, 'put': 1.0, 'stroller': 2.0, 'beverage': 1.0, 'every': 1.0, 'purchased': 1.0, 'use': 1.0, 'phil': 1.0, 'putting': 1.0, 'tried': 1.0, 'i': 5.0, 'tip': 1.0, 'stated': 1.0, 'this': 1.0, 'with': 1.0, 'it': 5.0, 'attached': 1.0, 'instruction': 1.0}
Word element => {'though': 1.0, 'gatorade': 1.0, 'enough': 1.0, 'not': 1.0, 'water': 1.0, 'regular': 1.0, 'the': 1.0, 'your': 1.0, 'has': 1.0, '16': 1.0, 'long': 1.0, 'works': 2.0, 'very': 1.0, 't': 1.0, 'a': 3.0, 'them': 1.0, 'needed': 1.0, 'big': 1.0, '1': 1.0, 'and': 1.0, 'to': 1.0, 'as': 2.0, 'our': 1.0, 'that': 2.0, 'beach': 1.0, 'onto': 1.0, 'will': 1.0, 'also': 1.0, 'secure': 1.0, 'didn': 1.0, 'bottle': 2.0, 'chair': 1.0, 'hold': 3.0, 'bottles': 1.0, 'cup': 1.0, 'or': 3.0, 'perfect': 2.0, 'holders': 1.0, 'this': 2.0, 'it': 1.0, 'have': 1.0, '8': 1.0, 'inch': 1.0, 'sturdy': 1.0, 'area': 1.0, '20': 1.0, 'for': 3.0, 'where': 1.0, 'wider': 1.0, 'us': 1.0, 'you': 1.0, 'powerade': 1.0, '2': 1.0, 'can': 3.0, 'chairs': 1.0, 'clip': 1.0, 'arm': 1.0, 'soda': 2.0, '12': 1.0, 'oz': 1.0}
Word element => {'them': 1.0, 'hear': 1.0, 'lets': 1.0, 'other': 1.0, 'anyone': 1.0, 'if': 1.0, 'everyone': 1.0, 'crazy': 1.0, 'thing': 1.0, 'every': 1.0, 'yet': 1.0, 'price': 1.0, 'best': 1.0, 'only': 1.0, 'that': 2.0, 'gray': 1.0, 'over': 1.0, 'black': 1.0, 'spyder': 3.0, 'a': 4.0, 'has': 1.0, 'well': 2.0, 'expensive': 1.0, 'for': 8.0, 'i': 7.0, 'cupholder': 1.0, 'rt': 2.0, 'great': 4.0, 'place': 1.0, 'the': 5.0, 'add': 1.0, 'these': 1.0, 'it': 4.0, 'this': 2.0, 'color': 1.0, 'one': 2.0, 'bought': 3.0, 'else': 3.0, 'time': 1.0, 'so': 1.0, 'limited': 2.0, 'overhang': 1.0, 'reccomend': 1.0, 'is': 4.0, 'find': 1.0, 'utilize': 1.0, 'recommendation': 1.0, 'on': 1.0, 'solution': 1.0, 'from': 1.0, 'very': 1.0, 'am': 2.0, 'someone': 1.0, 'passenger': 1.0, 'which': 3.0, 'ons': 1.0, 'my': 5.0, 'fits': 1.0, 'white': 1.0, 'and': 3.0, 'me': 1.0, 'have': 3.0, 'now': 1.0, 'attached': 1.0, 'all': 1.0, 'to': 2.0, 'prefered': 1.0, 'dash': 1.0, 'item': 2.0, 'cupholders': 1.0, 'also': 1.0, 'are': 1.0, 'inexpensive': 1.0, 'but': 1.0, 'can': 2.0, '2': 1.0, 'work': 2.0, 'would': 1.0}
Word element => {'larger': 1.0, 'not': 1.0, 'but': 1.0, 'well': 2.0, 'a': 3.0, 'and': 3.0, 'it': 3.0, 'this': 1.0, 'bottle': 3.0, 'etc': 1.0, 'i': 2.0, 'easy': 1.0, 'use': 1.0, 'sturdy': 1.0, 'un': 1.0, 'water': 2.0, 'different': 1.0, 'negative': 1.0, 'holds': 1.0, 'is': 4.0, 'limited': 1.0, 'on': 1.0, 'pretty': 1.0, 'electric': 1.0, 'my': 1.0, 'or': 2.0, 'cup': 4.0, 'to': 3.0, 'fixed': 1.0, 'wheelchair': 1.0, 'attach': 2.0, 'adjustable': 1.0, 'other': 1.0, 'carry': 1.0, 'position': 1.0, 'that': 1.0, 'like': 1.0, 'swivels': 1.0, 'vs': 1.0, 'being': 1.0, 'in': 2.0, 'one': 1.0, 'very': 1.0, 'made': 1.0, 'the': 4.0, 'sizes': 1.0, 'size': 1.0, 'of': 1.0, 'holder': 2.0, 'words': 1.0, 'will': 1.0, 'fit': 2.0, 'only': 1.0, 'slim': 1.0}
Word element => {'tools': 1.0, 'holder': 1.0, 'cup': 1.0, 'would': 1.0, 'free': 1.0, 'had': 1.0, 'glad': 1.0, 'recommend': 1.0, 'were': 1.0, 'neeeded': 1.0, 'great': 1.0, 'up': 1.0, 'past': 1.0, 'weekend': 1.0, 'this': 1.0, 'hour': 1.0, 'about': 1.0, 'around': 1.0, 'riding': 1.0, 'out': 1.0, 'chance': 1.0, 'got': 1.0, 'time': 1.0, 'lasting': 1.0, 'see': 1.0, 'our': 1.0, 'item': 1.0, 'grip': 1.0, 'while': 1.0, 'removed': 2.0, 'intrusive': 1.0, 'golf': 2.0, 'have': 2.0, 'center': 1.0, 'to': 11.0, 'as': 3.0, 'back': 1.0, 'needed': 2.0, 'seat': 1.0, 'in': 2.0, 'be': 4.0, 'force': 1.0, 'friends': 1.0, 'bit': 1.0, 'anyone': 1.0, 'and': 7.0, 'test': 1.0, 'couple': 1.0, 'a': 9.0, 'we': 4.0, 'with': 1.0, 'ride': 1.0, 'held': 1.0, 'rear': 2.0, 'w': 1.0, 'mount': 3.0, 'entire': 1.0, 'my': 2.0, 'often': 1.0, 'support': 1.0, 'these': 4.0, 'long': 1.0, 'on': 4.0, 'strong': 2.0, 'was': 3.0, 'intended': 1.0, 'purchased': 1.0, 'place': 2.0, 'firm': 1.0, 'hands': 2.0, 'o': 1.0, 'thier': 2.0, 'there': 1.0, 'the': 9.0, 'of': 3.0, 'no': 1.0, 'two': 1.0, 'feet': 1.0, 'i': 5.0, 'drinks': 1.0, 'like': 1.0, 'step': 1.0, 'wanting': 1.0, 'cart': 2.0, 'strollers': 1.0, 'attaches': 1.0, 'comfortable': 1.0, 'for': 3.0, 'rest': 1.0, 'fit': 1.0, 'tubing': 1.0, 'so': 1.0, 'can': 4.0, 'but': 1.0, 'that': 3.0, 'easily': 1.0, 'you': 2.0, 'when': 2.0, 'need': 1.0, 'or': 2.0, 'if': 2.0, 'them': 6.0, 'has': 1.0, 'an': 2.0, 'arch': 1.0, 'it': 2.0, 'passengers': 1.0, 'shape': 1.0, 'rubber': 1.0, 'help': 1.0, 'backseat': 1.0, 'better': 1.0, 'tubular': 1.0, 'bind': 1.0, 'arm': 1.0, 'mounted': 2.0, 'wanted': 1.0, 'onto': 1.0, 'square': 1.0, 'muscle': 1.0, 'do': 1.0, 'much': 1.0, 'keep': 2.0, 'not': 1.0, 'problem': 1.0, 'portion': 1.0, 'didnt': 1.0, 'bars': 1.0, 'is': 2.0, 'mounting': 2.0, 'very': 3.0, 'they': 3.0, 'sturdy': 2.0, 'buckle': 1.0, 'applying': 1.0, 'moved': 1.0, 'get': 1.0}
Word element => {'them': 1.0, 'of': 1.0, 'one': 1.0, 'phone': 1.0, 'like': 1.0, 'products': 1.0, 'some': 1.0, 'has': 1.0, 'utterly': 1.0, 'is': 2.0, 'this': 2.0, 'operating': 1.0, 'was': 1.0, 'whatever': 1.0, 'feet': 1.0, 'pouring': 1.0, 'down': 1.0, 'upside': 1.0, 'even': 1.0, 'promise': 1.0, 'etc': 1.0, 'i': 3.0, 'not': 2.0, 'wrong': 1.0, 'than': 1.0, 'useless': 1.0, 'it': 7.0, 'read': 1.0, 'the': 2.0, 'figured': 1.0, 'brica': 1.0, 'your': 2.0, 'on': 1.0, 'put': 1.0, 'will': 1.0, 'reviews': 1.0, 'and': 2.0, 'bags': 1.0, 'matter': 1.0, 'get': 1.0, 'in': 3.0, 'cell': 1.0, 'you': 6.0, 'unless': 1.0, 'what': 1.0, 'had': 1.0, 'to': 2.0, 'putting': 1.0, 'be': 2.0, 'up': 1.0, 'sideways': 1.0, 'cleaning': 1.0, 'good': 2.0, 'cup': 1.0, 'or': 1.0, 'holder': 2.0, 'incorrectly': 1.0, 'taller': 1.0, 'have': 1.0, 's': 1.0, 'a': 4.0, 'but': 1.0, 'can': 3.0, 'kid': 1.0, 'so': 1.0, 'simple': 1.0, 'knocked': 1.0, 'by': 1.0, 'passerby': 1.0, 'yourself': 1.0, 'forget': 1.0, 'spills': 1.0, 'no': 1.0, 'about': 1.0, 'anything': 1.0, 'if': 1.0, 'want': 1.0}
Word element => {'either': 1.0, 'anything': 1.0, 'to': 1.0, 'clamp': 1.0, 'really': 1.0, 'realized': 1.0, 'work': 1.0, 'doesn': 1.0, 'but': 1.0, 'strollers': 1.0, 'be': 1.0, 'on': 3.0, 'after': 1.0, 'original': 1.0, 'safety': 1.0, 'my': 1.0, 'chicco': 1.0, 'or': 1.0, 'off': 1.0, 'years': 1.0, 'broke': 1.0, 'one': 1.0, 'cupholder': 1.0, 'i': 1.0, 'daughters': 1.0, 'we': 1.0, 'carseat': 1.0, 'would': 1.0, 'couldn': 1.0, 'getting': 1.0, 'and': 1.0, 'needed': 1.0, 'a': 1.0, 'new': 1.0, 'our': 1.0, 'that': 1.0, 'thought': 1.0, 'it': 2.0, 'first': 2.0, 'this': 1.0, 't': 2.0, 'great': 1.0, 'the': 1.0, 'oen': 1.0}
Word element => {'recommended': 1.0, 'well': 1.0, 'i': 1.0, 'perfectly': 1.0, 'great': 1.0, 'works': 2.0, 'it': 2.0, 'bought': 1.0, 'made': 1.0, 'my': 1.0, 'highly': 1.0, 'and': 2.0, 'this': 1.0, 'to': 1.0, 'use': 1.0, 'on': 1.0, 'chair': 1.0, 'lawn': 1.0}
Word element => {'easily': 1.0, 'really': 1.0, 'off': 1.0, 'broken': 1.0, 'so': 1.0, 'first': 1.0, 'probably': 1.0, 'on': 2.0, 'with': 1.0, 'will': 1.0, 'folding': 1.0, 'not': 1.0, 'holders': 1.0, 'cup': 1.0, 'my': 1.0, 'of': 2.0, 'there': 2.0, 'the': 4.0, 'remove': 1.0, 'it': 2.0, 'up': 2.0, 'don': 3.0, 'is': 1.0, 'jogger': 1.0, 'go': 1.0, 't': 4.0, 'city': 1.0, 'like': 1.0, 'and': 3.0, 'own': 1.0, 'lack': 1.0, 'did': 1.0, 'get': 1.0, 'mini': 1.0, 'bar': 1.0, 'about': 2.0, 'thing': 1.0, 'babies': 1.0, 'bought': 1.0, 'one': 1.0, 'handle': 1.0, 'double': 1.0, 'they': 4.0, 'places': 1.0, 'are': 1.0, 'awesome': 1.0, 'but': 1.0, '2': 1.0, 'can': 1.0, 'attach': 1.0, 'to': 1.0, 'i': 6.0, '4': 1.0, 'different': 1.0, 'by': 1.0, 'didn': 1.0, 'try': 2.0, 'baby': 1.0, 'them': 4.0, 'these': 1.0, 'lower': 1.0, 'because': 1.0, 'need': 1.0}
Word element => {'possible': 1.0, 'made': 1.0, 'that': 1.0, 'anchoring': 1.0, 's': 1.0, 'flexible': 1.0, 'car': 1.0, 'next': 1.0, 'seat': 2.0, 'hook': 1.0, 'however': 1.0, 'headrest': 1.0, 'seems': 1.0, 'no': 1.0, 'cup': 1.0, 'and': 2.0, 'positioning': 1.0, '50': 1.0, 'roundabout': 1.0, 'of': 1.0, 'britax': 1.0, 'i': 2.0, 'one': 1.0, 'a': 1.0, 'able': 1.0, 'have': 1.0, 'system': 1.0, 'fit': 1.0, 'the': 3.0, 't': 1.0, 'we': 1.0, 'was': 1.0, 'hoping': 1.0, 'to': 4.0, 'this': 1.0, 'it': 5.0, 'bought': 1.0, 'holder': 1.0, 'would': 1.0, 'doesn': 1.0, 'but': 1.0}
Word element => {'out': 1.0, 'get': 1.0, 'each': 1.0, 'back': 1.0, 'even': 1.0, 'etc': 1.0, 'drink': 2.0, 'enough': 1.0, 'especially': 1.0, 'wide': 1.0, 'wider': 1.0, 'have': 1.0, 'not': 1.0, 'are': 2.0, 'finally': 1.0, 'car': 1.0, 'put': 1.0, 'on': 1.0, 'the': 3.0, 'jaws': 1.0, 'seat': 1.0, 'to': 4.0, 'as': 1.0, 'add': 1.0, 'were': 1.0, 'it': 4.0, 'hard': 1.0, 'child': 1.0, 'we': 1.0, 's': 1.0, 'a': 5.0, 'swings': 1.0, 'yank': 1.0, 'you': 3.0, 'when': 1.0, 'too': 1.0, 'and': 1.0, 'forth': 1.0, 'move': 1.0, 'stroller': 1.0, 'swing': 1.0, 'rubber': 1.0, 'flaps': 1.0, 'holding': 1.0, 'stiff': 1.0, 'time': 1.0, 'so': 1.0, 'hoping': 1.0, 'in': 1.0, 'or': 1.0, 'cup': 1.0}
Word element => {'cable': 1.0, 'in': 1.0, 'plug': 1.0, 'because': 1.0, 'but': 1.0, 'on': 1.0, 'the': 7.0, 'many': 1.0, 'realized': 1.0, 'there': 1.0, 'lazy': 1.0, 'cases': 1.0, 'available': 1.0, 'of': 1.0, 'dropped': 1.0, 'to': 7.0, 'seem': 1.0, 'gets': 1.0, 'when': 1.0, 's': 2.0, 't': 1.0, 'sony': 1.0, 'first': 1.0, 'regrets': 1.0, 'durable': 1.0, 'don': 1.0, 'm': 1.0, 'protect': 1.0, 'i': 6.0, 'needed': 1.0, 'accidently': 1.0, 'bought': 1.0, 'be': 3.0, 'that': 1.0, 'case': 1.0, 'leather': 1.0, 'too': 1.0, 'and': 2.0, 'perfectly': 1.0, 'do': 1.0, 'recently': 1.0, 'something': 1.0, 'tablet': 4.0, 'for': 1.0, 'so': 1.0, 'navitech': 1.0, 'have': 2.0, 'no': 1.0, 'my': 1.0, 'fits': 1.0, 'seems': 1.0, 'ordered': 1.0, 'thick': 1.0, 'enough': 1.0, 'dock': 1.0, 'it': 4.0, 'remove': 1.0, 'charge': 1.0, 'from': 1.0}
Word element => {'happy': 1.0, 'pro': 1.0, 'all': 1.0, 'keyboard': 1.0, 'at': 1.0, 'not': 3.0, 'the': 2.0, 'stuck': 1.0, 'fit': 1.0, 'now': 1.0, 'with': 3.0, 'surface': 1.0, 'does': 1.0, 'or': 1.0, 'it': 3.0, 'without': 1.0}
Word element => {'that': 1.0, 'use': 1.0, 'often': 1.0, 'are': 1.0, 'as': 1.0, 'get': 1.0, 'power': 1.0, 'but': 1.0, 'mode': 1.0, 'you': 1.0, 'portrait': 1.0, 'held': 1.0, 'construction': 1.0, 'do': 1.0, 'listened': 1.0, 'sd': 1.0, 'must': 1.0, 'have': 4.0, 'larger': 1.0, 'at': 1.0, 'is': 4.0, 'save': 1.0, 'holds': 1.0, 'lining': 1.0, 'not': 1.0, 'connector': 1.0, 'wedge': 1.0, 'in': 2.0, 'they': 1.0, 'holes': 2.0, 'has': 1.0, 'i': 1.0, 'well': 1.0, 'transmitter': 1.0, 'offers': 1.0, 'ir': 1.0, 'for': 2.0, 'camera': 1.0, 'product': 1.0, 'were': 1.0, 'port': 1.0, 'final': 1.0, 's': 2.0, 'a': 6.0, 't': 1.0, '4': 1.0, 'case': 3.0, 'on': 2.0, '3': 1.0, 'myself': 1.0, 'whoot': 1.0, 'shape': 1.0, 'time': 1.0, 'sony': 1.0, 'to': 4.0, 'angles': 1.0, 'three': 1.0, 'mentioned': 1.0, 'up': 3.0, 'the': 15.0, 'of': 1.0, 'faults': 2.0, 'only': 1.0, 'this': 1.0, 'easy': 1.0, 'bit': 2.0, 'found': 1.0, 'reset': 1.0, 'research': 1.0, 'shiny': 1.0, 'picked': 1.0, 'eh': 1.0, 'already': 1.0, 'it': 4.0, 'odd': 1.0, 'solid': 1.0, 'other': 1.0, 'all': 1.0, 'an': 1.0, 'work': 1.0, '2': 1.0, 'sitting': 1.0, 'does': 1.0, 'and': 4.0, 'stitch': 1.0, 'tablet': 2.0, 'will': 1.0, 'slightly': 1.0, 'tell': 1.0, 'how': 2.0, 'slots': 1.0, 'holding': 1.0, 'any': 1.0, 'viewing': 1.0, 'cards': 1.0, 'bulk': 1.0, 'needed': 1.0, 'stylus': 1.0, 'holder': 1.0, 'adds': 1.0, 'can': 1.0, 'measurement': 1.0, 'ports': 1.0, 'find': 1.0, '1': 2.0, 'little': 1.0, 'two': 1.0, 'nice': 1.0, 'way': 1.0, 'others': 1.0, 'deal': 1.0, 'folds': 1.0, 'when': 2.0, 'table': 1.0, 'like': 1.0, 'feels': 1.0, 'hardback': 1.0, 'did': 1.0, 'keep': 1.0, 'book': 1.0}
Word element => {'always': 1.0, 'don': 1.0, 'my': 1.0, 'and': 2.0, 'quality': 1.0, 'need': 1.0, 'sony': 1.0, 't': 1.0, 'the': 1.0, 'red': 1.0, 'good': 1.0, 'tablet': 1.0, 'align': 1.0, 'fits': 1.0, 'openings': 1.0, 's': 2.0, 'a': 2.0, 'well': 2.0, 'unit': 2.0, 'it': 1.0, 'for': 1.0, 'camera': 1.0, 'infra': 1.0, 'to': 1.0, 'be': 1.0, 'bit': 1.0, 'larger': 1.0}
Word element => {'use': 1.0, 'case': 1.0, 'take': 1.0, 'tend': 1.0, 'i': 2.0, 'covered': 1.0, 'not': 1.0, 'want': 1.0, 'is': 1.0, 'button': 1.0, 'bit': 1.0, 'so': 1.0, 'very': 1.0, 'when': 2.0, 'but': 1.0, 'out': 1.0, 'fits': 1.0, 'a': 2.0, 'well': 1.0, 's': 1.0, 'at': 1.0, 'position': 1.0, 'bottom': 1.0, 'up': 1.0, 'of': 2.0, 'pain': 1.0, 'to': 3.0, 'right': 1.0, 'setting': 1.0, 'get': 1.0, 'the': 5.0, 'it': 5.0, 'velcro': 1.0, 'that': 1.0, 'in': 1.0, 'home': 1.0}
Word element => {'an': 1.0, 'charge': 1.0, 'tablet': 2.0, 'that': 1.0, 'what': 1.0, 'con': 1.0, 'made': 1.0, 'out': 1.0, 'isnt': 1.0, 'it': 2.0, 'only': 1.0, 'is': 1.0, 'the': 3.0, 'slot': 1.0, 'my': 1.0, 'i': 3.0, 'exactly': 1.0, 'was': 1.0, 'wanted': 1.0, 'to': 3.0, 'through': 1.0, 'taking': 1.0, 'a': 1.0, 'go': 1.0, 'for': 2.0, 'there': 1.0, 'charger': 1.0, 'cord': 1.0, 'have': 2.0, 'keep': 1.0}
Word element => {'sale': 1.0, 'after': 1.0, 'assistance': 1.0, 'pleased': 1.0, 'extremely': 1.0, 'knowledge': 1.0, 'by': 1.0, 'daughter': 1.0, 'patience': 1.0, 'and': 2.0, 'so': 1.0, 'we': 1.0, 'a': 1.0, 'cover': 2.0, 'not': 1.0, 'i': 2.0, 'but': 1.0, 'keyboard': 2.0, 'hidden': 2.0, 'part': 1.0, 'had': 1.0, 'to': 1.0, 'problems': 1.0, 'because': 1.0, 'having': 1.0, 'in': 1.0, 'with': 2.0, 'velcro': 1.0, 'this': 1.0, 'being': 1.0, 'am': 1.0, 'of': 1.0, 'place': 1.0, 'the': 11.0, 'were': 1.0, 'able': 1.0, 'was': 1.0, 'resolve': 1.0, 'did': 1.0, 'at': 1.0, 'snafu': 1.0, 'my': 1.0, 'representative': 1.0, 'problem': 1.0, 'tighten': 1.0, 'straps': 1.0, 'held': 1.0, 'manufacturer': 1.0, 'which': 1.0, 'top': 1.0, 'allowed': 1.0, 'keys': 1.0}
Word element => {'puchase': 1.0, 'with': 1.0, 'collapsibility': 1.0, 'about': 1.0, 'no': 1.0, 'so': 1.0, 'collapse': 1.0, 'its': 1.0, 'do': 1.0, 'not': 1.0, 'me': 1.0, 'heavy': 1.0, 'arrangement': 1.0, 'car': 2.0, 'into': 2.0, 'that': 2.0, 'use': 2.0, 'by': 1.0, 'together': 1.0, 'put': 2.0, 'extremely': 1.0, 'grandchild': 2.0, '1': 1.0, 'too': 1.0, 'and': 3.0, 'plan': 1.0, 'is': 2.0, 'love': 1.0, 'for': 4.0, 'one': 2.0, 'comment': 1.0, 'which': 1.0, 'lie': 1.0, 'looking': 1.0, 'but': 1.0, 'can': 1.0, 'i': 9.0, 'old': 2.0, 'am': 2.0, 't': 1.0, 'a': 2.0, 'since': 1.0, 'reclines': 1.0, 'pleased': 1.0, 'upright': 1.0, 'used': 1.0, 'have': 1.0, 'flat': 2.0, 'stroller': 3.0, 'back': 1.0, '73yr': 1.0, 'was': 2.0, 'grandmother': 1.0, 'even': 1.0, 'didn': 1.0, 'previous': 1.0, 'had': 2.0, 'purchased': 1.0, 'myself': 1.0, 'the': 5.0, 'because': 2.0, 'recline': 1.0, 'perfect': 1.0, 'this': 3.0, 'month': 1.0, 'it': 6.0, 'as': 1.0, 'seat': 1.0, 'to': 5.0, 'all': 1.0, 'able': 2.0, 'parents': 1.0, 'sit': 1.0, 'way': 2.0, 'baby': 2.0, 'fits': 1.0, 'my': 3.0, 'lightweight': 1.0, 'another': 1.0, 'almost': 2.0, 'ordered': 1.0, 'be': 1.0, 'seldom': 1.0, 'up': 1.0}
Word element => {'did': 1.0, 'if': 1.0, 'overwise': 1.0, 'right': 1.0, 'handle': 1.0, 'liked': 1.0, 'to': 1.0, 'stroller': 1.0, 'bars': 1.0, 'not': 2.0, 'would': 1.0, 'together': 1.0, 'come': 1.0, 'it': 1.0, 'well': 1.0, 'wheel': 1.0, 'front': 1.0, 'ground': 1.0, 'won': 1.0, 'damaged': 1.0, 'the': 3.0, 't': 1.0, 'stick': 2.0, 'as': 1.0}
Word element => {'but': 1.0, 'price': 1.0, 'days': 1.0, 'one': 1.0, 'was': 1.0, 'to': 1.0, 'problem': 1.0, 'better': 1.0, 'my': 1.0, 'we': 3.0, 'goes': 1.0, 'ordered': 1.0, 'i': 1.0, 'even': 1.0, 'part': 1.0, 'it': 6.0, 'for': 2.0, 'product': 1.0, 'and': 2.0, 'not': 3.0, 'just': 1.0, 'you': 1.0, 'twins': 1.0, 'fantastic': 1.0, 'is': 3.0, 'side': 1.0, 'having': 1.0, 'in': 1.0, 'broke': 2.0, 'pay': 1.0, 'storage': 1.0, 'the': 4.0, 'plastic': 1.0, 'had': 3.0, 'thought': 1.0, 'bar': 1.0, 'thru': 1.0, 'alot': 1.0, 'on': 1.0, 'especially': 1.0, 'bottom': 1.0, 'of': 3.0, 'up': 1.0, 'half': 1.0, '30': 1.0, 'this': 1.0, 'wish': 1.0, 'use': 1.0, 'biggest': 1.0, 'would': 1.0, 'that': 3.0, 'been': 1.0}
Word element => {'to': 1.0, 'think': 1.0, 'though': 1.0, 'in': 1.0, 'things': 1.0, 'be': 1.0, 'putting': 1.0, 'from': 1.0, 'underneath': 1.0, 'are': 1.0, 'shades': 1.0, 'overall': 1.0, 'sun': 1.0, 'cup': 1.0, 'than': 1.0, 'snack': 1.0, 'rather': 1.0, 'of': 1.0, 'cons': 1.0, 'big': 2.0, 'grass': 1.0, 'bad': 1.0, 'not': 2.0, 'and': 1.0, 'effort': 1.0, 'minimal': 1.0, 'blocking': 1.0, 'happy': 2.0, 'so': 2.0, 'after': 1.0, 'folds': 1.0, 'you': 1.0, 'easily': 1.0, 'am': 2.0, 'times': 1.0, 'far': 1.0, 'large': 1.0, 'just': 1.0, 'few': 1.0, 'friend': 1.0, 'used': 1.0, 'flap': 1.0, 'very': 5.0, 'it': 5.0, 'with': 2.0, '2mon': 2.0, 'versatile': 1.0, 'i': 8.0, 'old': 3.0, 'bar': 2.0, 'had': 1.0, 'either': 1.0, 'purchased': 1.0, '2yr': 1.0, 'stroller': 5.0, 'going': 1.0, 't': 1.0, 'a': 8.0, 'has': 1.0, 'recommended': 1.0, 'cover': 1.0, 'lightest': 1.0, 'rolls': 1.0, 'small': 1.0, 'have': 3.0, 'flat': 1.0, 've': 1.0, 'seems': 1.0, 'also': 2.0, 'pros': 1.0, 'more': 1.0, 'is': 2.0, 'the': 6.0, 'seats': 1.0, 'but': 2.0, 'can': 1.0, 'lay': 1.0, 'which': 1.0, 'much': 1.0, 'its': 1.0, 'only': 1.0, 'creates': 1.0, 'safe': 1.0, 'three': 1.0, 'space': 1.0, 'for': 1.0, 'double': 1.0, 'basket': 1.0, 'that': 1.0, 'holders': 1.0, 'wish': 1.0, 'this': 4.0, 'found': 1.0, 'don': 1.0, 'over': 1.0, 'up': 1.0}
Word element => {'100': 1.0, 'peg': 1.0, 'maclaren': 1.0, 'to': 3.0, 'perego': 1.0, 'product': 1.0, 'cheaper': 1.0, 'easy': 1.0, 'than': 2.0, 'use': 1.0, 'open': 1.0, 'very': 2.0, 'delivery': 1.0, 'and': 4.0, 'i': 2.0, 'handle': 1.0, 'excellent': 1.0, 'better': 2.0, 'brand': 1.0, 'combi': 1.0, 'expected': 1.0, 'close': 1.0, 'nice': 1.0, 'satisfied': 1.0, 'design': 1.0, 'time': 2.0, 'is': 1.0, 'first': 1.0, 'this': 1.0, 'on': 1.0, 'sincerely': 1.0}
Word element => {'errands': 1.0, 'definitely': 1.0, 'but': 1.0, 'still': 1.0, 'etc': 1.0, 'day': 1.0, 'expected': 1.0, 'little': 1.0, 'baskets': 1.0, 'about': 1.0, 'complaining': 1.0, 'as': 1.0, 'up': 1.0, 'even': 1.0, 'back': 1.0, 'perfectly': 1.0, 'folds': 1.0, 'safety': 1.0, 'removable': 1.0, 'covers': 1.0, 'washable': 1.0, 'windows': 1.0, 'feeling': 1.0, 'boot': 1.0, 'trips': 2.0, 'has': 1.0, 'modern': 1.0, 'my': 1.0, 'looks': 1.0, 'pattern': 1.0, 'ordered': 1.0, 'to': 4.0, 'arrives': 1.0, 'seat': 2.0, 'in': 3.0, 'all': 1.0, 'an': 1.0, 'fits': 1.0, 'ultimately': 1.0, 'third': 3.0, 'once': 1.0, 'this': 1.0, 'highly': 1.0, 'due': 1.0, 'which': 1.0, 'gmc': 1.0, 'twin': 2.0, 'own': 1.0, 'use': 3.0, 'some': 1.0, 'great': 2.0, 'flagstone': 1.0, 'carrying': 1.0, 'indie': 1.0, '2': 1.0, 'so': 2.0, 'can': 1.0, 'months': 1.0, 'll': 1.0, 'reviewers': 1.0, 'umbrella': 2.0, 's': 2.0, 'preferred': 1.0, 'double': 1.0, 'between': 1.0, 'small': 1.0, 'a': 10.0, 'bumbleride': 3.0, 'seating': 2.0, 'for': 5.0, 'fit': 1.0, 'combi': 2.0, 'our': 4.0, 'stroller': 4.0, 'accommodate': 2.0, '3': 1.0, 'easily': 1.0, 'that': 5.0, 'row': 2.0, 'canopy': 1.0, 'flat': 1.0, 'were': 2.0, 'recommend': 2.0, 'was': 1.0, 'yr': 2.0, 'couple': 1.0, 'weight': 2.0, 'i': 5.0, 'type': 1.0, 'handy': 1.0, 'pleasantly': 1.0, 'of': 3.0, 'the': 11.0, 'and': 11.0, 'bar': 1.0, 'acadia': 2.0, 'looking': 1.0, 'light': 2.0, 'could': 1.0, 'will': 2.0, 'be': 2.0, 'would': 2.0, 'tight': 1.0, 'old': 2.0, 'fact': 1.0, 'newborn': 4.0, 'needed': 1.0, 'handle': 1.0, 'compact': 1.0, 'canopies': 1.0, 'however': 1.0, 'easy': 1.0, 'love': 3.0, 'fold': 1.0, 'down': 1.0, 'unfold': 1.0, 'factor': 1.0, 'strap': 1.0, 'torn': 1.0, 'flimsy': 1.0, 'viewing': 1.0, 'surprised': 1.0, 'maclaren': 1.0, 'almost': 1.0, 'triumph': 1.0, 'need': 1.0, 'or': 1.0, 'came': 1.0, 'child': 1.0, 'price': 2.0, 'we': 5.0, 'take': 1.0, 'clean': 1.0, 'car': 1.0, 'quick': 1.0, 'week': 1.0, 'very': 3.0, 'snack': 1.0, 'with': 2.0, 'already': 1.0, 'recline': 1.0, 'it': 5.0, 'arrived': 1.0, 'deciding': 1.0, 'techno': 1.0, 'last': 1.0, 'am': 1.0}
Word element => {'price': 1.0, 'would': 1.0, 'the': 1.0, 'myself': 1.0, 'i': 2.0, 'pieces': 1.0, 'had': 1.0, 'piece': 1.0, 's': 1.0, 'a': 2.0, 'came': 1.0, 'it': 3.0, 'easy': 1.0, 'very': 1.0, 'trunk': 1.0, 'my': 1.0, 'fits': 2.0, 'suv': 1.0, 'few': 1.0, 'large': 1.0, 'light': 1.0, 'parent': 1.0, 'holders': 1.0, 'this': 1.0, 'kids': 4.0, 'you': 1.0, 'when': 1.0, 'that': 1.0, 'too': 1.0, 'and': 4.0, 'pay': 1.0, 'storage': 1.0, 'rest': 1.0, 'baby': 1.0, 'through': 1.0, 'compact': 1.0, 'worth': 1.0, 'cup': 1.0, 'important': 1.0, 'because': 1.0, 'standard': 1.0, 'laying': 1.0, '5': 1.0, 'combi': 1.0, 'assemble': 2.0, 'fit': 1.0, 'for': 3.0, 'excited': 1.0, 'comfortable': 1.0, 'in': 1.0, 'also': 1.0, 'completely': 1.0, 'down': 1.0, 'view': 1.0, 'anyone': 1.0, 'be': 1.0, 'most': 1.0, 'can': 2.0, 'change': 1.0, 'from': 1.0, 'do': 1.0, 'only': 1.0, 'harness': 2.0, '3': 1.0, 'car': 1.0, 'as': 1.0, 'our': 1.0, 'doors': 1.0, 'to': 7.0, 'seat': 1.0, 'recommend': 1.0, 'was': 1.0, 'chicco': 1.0, 'able': 2.0, 'shades': 1.0, 'are': 2.0, 'baskets': 1.0, 'workable': 1.0}
Word element => {'not': 1.0, 'rain': 1.0, 'sun': 1.0, 'completely': 1.0, 'cover': 1.0, 'visor': 1.0, 'back': 1.0, 'items': 1.0, 'drinks': 1.0, 'easily': 1.0, 'you': 1.0, 'expected': 1.0, 'but': 2.0, 'storage': 1.0, 'help': 1.0, 'strap': 1.0, 'are': 1.0, 'virtually': 1.0, 'big': 2.0, 'comfortable': 1.0, 'system': 1.0, 'weight': 1.0, 'thing': 1.0, 'sitting': 1.0, 't': 2.0, 'small': 3.0, 'a': 6.0, 'stairs': 1.0, 'we': 1.0, 'was': 1.0, 'nyc': 2.0, 'worth': 1.0, 'or': 1.0, 'to': 4.0, 'as': 1.0, 'doesn': 1.0, 'waist': 1.0, 'from': 1.0, 'center': 1.0, 'carrying': 2.0, 'made': 1.0, 'which': 1.0, 'took': 1.0, 'when': 1.0, 'road': 1.0, 'specifically': 1.0, 'construction': 1.0, 'very': 1.0, 'closing': 1.0, 'bit': 2.0, 'easy': 3.0, 'shoulder': 2.0, 'opening': 1.0, 'week': 1.0, 'packs': 1.0, 'car': 1.0, 'stroller': 1.0, 'subway': 1.0, 'travel': 1.0, 'use': 1.0, 'bought': 1.0, 'one': 2.0, 'lying': 1.0, 'trip': 1.0, 'and': 9.0, 'sights': 1.0, 'clicks': 1.0, 'ease': 1.0, 'extra': 1.0, 'the': 6.0, 'of': 2.0, 'crucial': 1.0, 'down': 2.0, 'for': 5.0, 'accessories': 1.0, 'solid': 1.0, 'bottom': 1.0, 'love': 2.0, 'this': 1.0, 'walked': 1.0, 'release': 1.0, 'it': 4.0, 'every': 1.0, 'in': 1.0, 'on': 4.0, 'long': 1.0, 'trips': 1.0, 'handed': 1.0, 'over': 1.0, 'change': 1.0, 'penny': 1.0, 'up': 1.0, 'curbs': 1.0, 'handle': 1.0, 'is': 4.0, 'steering': 1.0, 'other': 1.0, 'all': 1.0, 'an': 1.0, 'fits': 1.0, 'narrow': 1.0, 'add': 1.0, 'straps': 1.0, 'so': 1.0, 'can': 1.0, 'spaces': 1.0, 'deal': 1.0, 'baby': 2.0, 'compact': 1.0, 'also': 1.0, 'wouldn': 1.0, 'secure': 1.0, 'adjust': 1.0, 'touch': 1.0, 'thru': 1.0, 'button': 1.0, 'keep': 1.0, 'makes': 1.0, 'two': 1.0, 'painless': 1.0, 'simple': 1.0, 'fasten': 1.0}
Word element => {'recommend': 1.0, 'not': 1.0, 'would': 1.0, 'crosswalk': 1.0, 'in': 1.0, 'kept': 1.0, 'wheels': 1.0, 'the': 2.0, 'right': 1.0, 'ended': 1.0, 'york': 1.0, 'were': 1.0, 'product': 1.0, 'it': 3.0, 'this': 2.0, 'left': 1.0, 'new': 2.0, 'pinched': 1.0, 'we': 2.0, 'middle': 1.0, 'locking': 1.0, 'a': 2.0, 'stroller': 2.0, 'while': 1.0, 'and': 2.0, 'getting': 1.0, 'me': 1.0, 'of': 1.0, 'up': 2.0, 'there': 1.0, 'when': 1.0, 'took': 1.0, 'i': 2.0, 'to': 1.0, 'turned': 1.0}
Word element => {'ouch': 1.0, 'push': 1.0, 'handle': 1.0, 'rediculous': 1.0, 'its': 1.0, 'certain': 1.0, 'wheels': 1.0, 'hard': 1.0, 'fine': 1.0, 'defenitely': 1.0, 'will': 2.0, 'stroller': 5.0, 'secondary': 1.0, 'weeks': 1.0, 'an': 1.0, 'bit': 1.0, 'expected': 1.0, 'go': 1.0, 'a': 3.0, 'be': 4.0, 'as': 3.0, 'to': 4.0, 'hands': 1.0, 'the': 3.0, 'substituion': 1.0, 'ok': 1.0, 'big': 1.0, 'i': 5.0, 'work': 1.0, 'but': 2.0, 'money': 1.0, 'storage': 1.0, 'it': 3.0, 'this': 3.0, 'dislike': 1.0, 'with': 1.0, 'for': 2.0, 'actually': 1.0, 'hate': 1.0, 'does': 1.0, 'userfriendly': 1.0, 'maybe': 2.0, 'complaints': 1.0, 'ugh': 1.0, 'instead': 1.0, 'of': 1.0, 'in': 2.0, 'few': 1.0, 'another': 1.0, 'my': 2.0, 'too': 1.0, 'have': 1.0, 'small': 1.0, 'no': 2.0, 'pinch': 1.0, 'getting': 1.0, 'did': 1.0, 'not': 2.0, 'want': 1.0, 'more': 1.0, 'is': 1.0, 'close': 1.0, 'obnoxious': 1.0, 'position': 1.0, 'would': 1.0, 'something': 1.0, 'that': 1.0, 'like': 1.0}
Word element => {'too': 1.0, 'ineffective': 1.0, 'underneath': 1.0, 'i': 1.0, 'way': 1.0, 'basket': 1.0, 'it': 1.0, 'love': 1.0, 'small': 1.0, 'the': 2.0, 'is': 2.0, 'how': 2.0, 'becomes': 1.0, 'agile': 1.0, 'but': 1.0, 'stroller': 1.0, 'compact': 1.0, 'very': 1.0, 'and': 2.0}
Word element => {'recommend': 1.0, 'second': 1.0, 'now': 1.0, 'year': 1.0, 'open': 1.0, 'seconds': 1.0, 'having': 1.0, 'than': 1.0, 'longer': 1.0, 'close': 1.0, 'definitely': 2.0, 'bag': 1.0, 'easy': 2.0, 'so': 1.0, 'minus': 1.0, 'big': 1.0, 'took': 1.0, 'through': 1.0, 'bar': 1.0, 'fine': 1.0, 'just': 1.0, 'its': 1.0, 'works': 1.0, 'to': 4.0, 'all': 1.0, 'at': 1.0, 'issue': 1.0, 'holder': 1.0, 'agree': 1.0, 'angled': 1.0, '34': 2.0, 'first': 1.0, 'pros': 1.0, 'with': 2.0, 'this': 2.0, 'parent': 1.0, 'month': 1.0, 'it': 5.0, 'happy': 1.0, 'extremely': 2.0, 'care': 2.0, 'handle': 1.0, 'extensively': 1.0, 'really': 1.0, 'every': 2.0, 'wants': 1.0, 'others': 1.0, 'final': 1.0, 'but': 3.0, 'are': 2.0, 'helped': 1.0, 'is': 2.0, 'around': 2.0, '3': 1.0, 'make': 1.0, 'shopping': 1.0, 'hang': 1.0, 'one': 1.0, 'for': 3.0, 'there': 1.0, 'basket': 1.0, 'that': 4.0, 'below': 1.0, 'after': 2.0, 'has': 1.0, 'review': 1.0, 'cons': 1.0, 'terrific': 1.0, 'reach': 1.0, 'the': 7.0, 'diaper': 1.0, 'stroller': 1.0, 'decision': 1.0, 'feature': 1.0, 'i': 4.0, 'nature': 1.0, 'us': 3.0, 'and': 3.0, 'video': 1.0, 'listed': 1.0, 'in': 3.0, 'would': 1.0, 'accurate': 1.0, 'over': 1.0, 'don': 2.0, 'no': 1.0, 'about': 1.0, 's': 1.0, 'a': 5.0, 'we': 1.0, 't': 2.0, 'notice': 1.0, 'latch': 1.0, 'cup': 1.0, 'or': 1.0}
Word element => {'maybe': 1.0, 'easier': 1.0, 'as': 2.0, 'higher': 1.0, 'better': 1.0, 'into': 2.0, 'this': 1.0, 'buying': 1.0, 'recommend': 1.0, 'overall': 1.0, 'phone': 1.0, 'keys': 1.0, 'want': 1.0, 'if': 1.0, 'access': 1.0, 'off': 1.0, 'someone': 1.0, 'safety': 1.0, 'permanently': 1.0, 'more': 1.0, 'attached': 1.0, 'wish': 2.0, 'before': 1.0, 'way': 2.0, 'just': 1.0, 'placed': 1.0, 'front': 1.0, 'make': 1.0, 'hands': 1.0, 'again': 1.0, 'car': 1.0, 'or': 1.0, 'need': 1.0, 'would': 3.0, 'hand': 1.0, 'too': 1.0, 'one': 1.0, 'about': 1.0, 'they': 1.0, 'call': 1.0, 'cell': 1.0, 'ready': 1.0, 'time': 1.0, 'by': 1.0, 'easiest': 1.0, 'combi': 2.0, 'trying': 2.0, 'getting': 1.0, 'made': 1.0, 'are': 3.0, 'quality': 1.0, 'their': 1.0, 'wheels': 3.0, 'hold': 2.0, 'hard': 1.0, 'month': 1.0, 'under': 2.0, 'basket': 2.0, 'trunk': 1.0, 'has': 2.0, 'when': 3.0, 'traveling': 1.0, 'strollers': 1.0, 'am': 3.0, 'that': 8.0, 'aisles': 1.0, 'like': 3.0, 'storage': 2.0, 'velcro': 2.0, 'larger': 2.0, 'umbrella': 1.0, 'compact': 2.0, 'certain': 1.0, 'sure': 2.0, 'store': 1.0, 'doesn': 3.0, 'bag': 2.0, 'wanted': 1.0, 'on': 1.0, 'folding': 2.0, 'folded': 1.0, 'reasonably': 1.0, 'to': 11.0, 'stroller': 12.0, 'there': 2.0, 'sore': 1.0, 'seat': 1.0, 'in': 7.0, 'priced': 1.0, 'wheel': 1.0, 'some': 1.0, 'carrying': 3.0, 'forget': 1.0, 'space': 2.0, 'you': 1.0, 'things': 3.0, 'for': 5.0, 'top': 3.0, 'making': 2.0, 'back': 3.0, 'of': 8.0, 'the': 31.0, 'well': 2.0, 'i': 12.0, 'after': 1.0, 'tray': 1.0, 'had': 1.0, 'type': 1.0, 'makes': 2.0, 'old': 1.0, 'look': 2.0, 'at': 3.0, 'handle': 1.0, 'is': 12.0, 'comes': 1.0, 'son': 3.0, 'canopy': 3.0, 'height': 2.0, 'pros': 1.0, 'bar': 1.0, 'small': 3.0, 'a': 7.0, 'reasons': 1.0, 'my': 6.0, 'me': 1.0, 'not': 4.0, 'since': 2.0, '1': 2.0, 'holder': 2.0, 'drink': 1.0, '2': 1.0, 'suv': 1.0, 'then': 1.0, 'moving': 1.0, 'take': 2.0, 't': 3.0, 'further': 2.0, 'go': 1.0, 'protects': 1.0, '7': 1.0, 'up': 1.0, 'put': 2.0, 'do': 1.0, 'much': 2.0, 'baby': 1.0, 'folds': 1.0, 'easy': 3.0, 'months': 1.0, 'get': 3.0, 'all': 1.0, 'an': 1.0, 'strap': 1.0, 'use': 3.0, 'snack': 1.0, 'with': 2.0, 'closed': 3.0, 'replace': 1.0, 'cup': 1.0, 'stores': 1.0, 'it': 17.0, 'him': 2.0, 'and': 7.0, 'narrow': 2.0, 'cons': 1.0, 'lightweight': 2.0, 'can': 1.0, 'so': 7.0, 'through': 1.0, 'perfect': 2.0, '5': 2.0, 'pushing': 1.0, 'down': 2.0, 'love': 1.0, 'he': 1.0, 'having': 1.0, 'from': 1.0, 'sun': 1.0}
Word element => {'starts': 1.0, '4': 1.0, 'mistakes': 1.0, 'design': 1.0, 'who': 1.0, 'hand': 1.0, 'trying': 1.0, 'think': 1.0, 'your': 1.0, 'be': 1.0, 'downside': 1.0, 'plan': 1.0, 'don': 2.0, 'them': 1.0, 'put': 2.0, 'allow': 1.0, 'one': 1.0, 'months': 1.0, 'on': 2.0, 'prefect': 1.0, 'eyes': 1.0, 'few': 1.0, 'this': 3.0, 'a': 8.0, 's': 1.0, 'she': 2.0, 'her': 1.0, 'really': 2.0, 'quite': 1.0, 'perfect': 1.0, 'staying': 1.0, 'not': 5.0, 'weight': 1.0, 'seconds': 1.0, 'of': 5.0, 'the': 11.0, 'after': 1.0, 'tray': 1.0, 'slouching': 1.0, 'purchased': 1.0, 'bar': 1.0, 'thecontours': 1.0, 'designed': 1.0, 'and': 6.0, 'lite': 1.0, 'tangerinethat': 1.0, '6': 1.0, 'will': 1.0, 'could': 1.0, 'travel': 3.0, 'front': 1.0, 'fit': 1.0, 't': 2.0, 'replacement': 2.0, 'diaper': 1.0, 'as': 2.0, 'see': 1.0, 'perks': 1.0, 'usage': 2.0, 'well': 2.0, 'i': 5.0, 'came': 1.0, 'advantage': 1.0, 'loathe': 1.0, 'shopping': 1.0, 'stroller': 5.0, 'folding': 1.0, 'sunshade': 1.0, 'only': 2.0, 'gets': 1.0, 'kolcraft': 1.0, 'with': 4.0, 'quick': 1.0, 'was': 5.0, 'fold': 1.0, 'middle': 1.0, 'like': 1.0, 'very': 1.0, 'so': 1.0, 'lightweight': 1.0, 'other': 1.0, 'all': 1.0, 'luggage': 1.0, 'fits': 1.0, 'boo': 1.0, 'compact': 1.0, 'found': 1.0, 'easy': 1.0, 'takes': 1.0, 'supposed': 1.0, '3': 1.0, 'bag': 2.0, 'mega': 1.0, 'must': 1.0, 'in': 6.0, 'tx': 1.0, 'big': 2.0, 'comfortable': 1.0, 'me': 1.0, 'my': 1.0, 'peek': 1.0, '2': 1.0, 'windows': 1.0, 'handles': 1.0, 'to': 5.0, 'high': 1.0, 'husband': 1.0, 'is': 2.0, 'such': 1.0, 'for': 2.0, 'hooks': 1.0, 'it': 6.0, 'thought': 1.0, 'him': 1.0, 'still': 2.0, 'if': 1.0, 'there': 2.0, 'that': 1.0, 'basket': 2.0, 'super': 2.0, 'totally': 1.0, 'bulky': 1.0, 'stupid': 2.0, 'makes': 2.0, 'unusable': 1.0, 'way': 1.0, 'are': 1.0, 'does': 1.0}
Word element => {'this': 2.0, 'than': 1.0, 'other': 1.0, 'accessible': 1.0, 'bigger': 1.0, 'if': 1.0, 'better': 1.0, 'think': 1.0, 'store': 1.0, 'things': 2.0, 'oversized': 1.0, 'thing': 1.0, 'compartments': 1.0, 'baby': 1.0, 'for': 2.0, 'love': 2.0, 'unfolds': 1.0, 'be': 1.0, 'two': 1.0, 'i': 3.0, 'canopy': 1.0, 'month': 1.0, 'it': 4.0, 'only': 1.0, 'tray': 1.0, 'rear': 1.0, 'the': 10.0, 'holds': 1.0, 'is': 4.0, 'more': 2.0, 'light': 1.0, 'how': 2.0, 'weight': 1.0, 'would': 1.0, 'easy': 1.0, 'folds': 1.0, 'items': 1.0, 'and': 4.0, 'improve': 1.0, 'they': 1.0, 'old': 1.0, 'makes': 1.0, '15': 1.0, 'need': 1.0, 'which': 1.0, 'our': 1.0, 'to': 3.0, 'that': 1.0, 'basket': 3.0, 'difficult': 1.0, 'my': 1.0, 'underneath': 1.0, 'bar': 1.0, 'wheels': 1.0, 'in': 2.0, 'way': 1.0, 'stroller': 1.0, 'insert': 1.0, 'even': 1.0}
Word element => {'purchase': 1.0, 'am': 1.0, 'love': 1.0, 'overall': 1.0, 'folding': 1.0, 'when': 1.0, 'are': 1.0, 'front': 1.0, 'sure': 1.0, 'make': 1.0, 'to': 4.0, 'perfectly': 1.0, 'there': 1.0, 'larger': 1.0, 'back': 1.0, 'most': 1.0, 'but': 1.0, 'aren': 1.0, 'wheels': 2.0, 'sitting': 1.0, 'facing': 1.0, 'wider': 1.0, 'travel': 1.0, 'instructions': 1.0, 'into': 4.0, 'basket': 4.0, 'been': 1.0, 'that': 1.0, 'quite': 1.0, 'using': 1.0, 'hold': 1.0, 'which': 1.0, 'and': 5.0, 's': 2.0, 'a': 3.0, 'go': 1.0, 'isn': 1.0, 'slightly': 2.0, 'skip': 1.0, 'stroller': 6.0, 'up': 2.0, 'space': 1.0, 'trips': 1.0, 'earlier': 1.0, 'super': 1.0, 'my': 1.0, 'all': 1.0, 'fits': 1.0, 'the': 22.0, 'easy': 1.0, 'bit': 1.0, 'can': 1.0, 'newest': 1.0, 'so': 1.0, 'mch': 1.0, 'combi': 2.0, 't': 2.0, 'fit': 1.0, 'second': 1.0, 'lined': 1.0, 'it': 2.0, 'with': 2.0, 'this': 5.0, 'kids': 2.0, 'before': 1.0, 'accessible': 1.0, 'airplane': 1.0, 'not': 1.0, 'n': 1.0, 'seat': 4.0, 'in': 2.0, 'still': 1.0, 'if': 1.0, 'turn': 1.0, 'we': 2.0, 'then': 1.0, 'versions': 1.0, 'able': 1.0, 'you': 3.0, 'lift': 1.0, 'no': 1.0, 'thing': 1.0, 'problem': 1.0, 'mommy': 1.0, 'makes': 1.0, 'snugride': 2.0, 'definitely': 1.0, 'hook': 1.0, 'bags': 1.0, 'noticed': 1.0, 'on': 1.0, 'put': 1.0, 'is': 6.0, 'handle': 2.0, 'have': 2.0, 'graco': 2.0, 'very': 2.0, 'i': 4.0, 'well': 1.0, 'was': 1.0, 'items': 2.0, 'squeeze': 1.0, 'getting': 1.0, 'snap': 1.0, 'than': 2.0, 'way': 1.0, 've': 1.0, 'down': 1.0, 'happy': 1.0, 'one': 1.0, 'really': 1.0, 'need': 1.0}
Word element => {'purchase': 1.0, 'a': 1.0, 'item': 1.0, 'this': 1.0, 'definitely': 1.0, 'would': 1.0, 'i': 1.0, 'been': 1.0, 'lightweight': 1.0, 'durable': 1.0, 'our': 1.0, 'it': 1.0, 'great': 2.0, 'car': 1.0, 'has': 1.0, 'recommend': 1.0, 'seat': 1.0, 'use': 1.0, 'fits': 1.0, 'easy': 1.0, 'to': 1.0, 'price': 1.0}
Word element => {'go': 1.0, 'and': 2.0, 'anywhere': 1.0, 'about': 1.0, 'fold': 1.0, 'i': 1.0, 'can': 1.0, 'it': 1.0, 'absolutely': 1.0, 'love': 1.0, 'is': 1.0, 'open': 1.0, 'light': 1.0, 'this': 1.0, 'weight': 1.0, 'just': 1.0, 'stroller': 1.0, 'easy': 1.0, 'to': 1.0}
Word element => {'recommend': 1.0, 'definitely': 1.0, 'one': 1.0, 'fit': 1.0, 'loved': 1.0, 'simple': 1.0, 'child': 1.0, 'is': 1.0, 'son': 1.0, 'my': 2.0, 't': 1.0, 'the': 1.0, 'this': 1.0, 'it': 4.0, 'get': 1.0, 'and': 1.0, 'perfectly': 1.0, 'i': 2.0, 'isn': 1.0, 'seat': 1.0, 'because': 1.0, 'interested': 1.0, 'in': 1.0, 'to': 1.0, 'had': 1.0, 'toilet': 1.0, 'size': 1.0, 'so': 1.0, 'potties': 1.0}
Word element => {'another': 1.0, 'order': 1.0, 'to': 1.0, 'now': 1.0, 'i': 2.0, 'just': 1.0, 'than': 1.0, 'better': 1.0, 'need': 1.0, 'and': 1.0, 'the': 2.0, 'awesome': 1.0, 'for': 2.0, 'definitely': 1.0, 'price': 2.0, 'seat': 1.0, 'worked': 1.0, 'expected': 1.0, 'was': 1.0, 'sturdier': 1.0}
Word element => {'money': 1.0, 'toddler': 1.0, 'of': 1.0, 'waste': 1.0, 'seat': 1.0, 'purchase': 1.0, 'to': 1.0, 'for': 1.0, 'had': 1.0, 'at': 1.0, 'another': 1.0, 'doesn': 1.0, 'i': 1.0, 'this': 1.0, 'item': 1.0, 't': 1.0, 'fit': 1.0, 'my': 2.0, 'the': 1.0, 'toliet': 1.0, 'well': 1.0, 'all': 1.0}
Word element => {'rating': 1.0, 'two': 1.0, 'ended': 1.0, 'while': 1.0, 'star': 1.0, 'back': 1.0, 'people': 1.0, 'sized': 1.0, 'child': 1.0, 'up': 3.0, 'grown': 1.0, 'of': 1.0, 'underside': 1.0, 'on': 1.0, 'it': 1.0, 'this': 2.0, 'buying': 1.0, 'with': 1.0, 'confident': 1.0, 'there': 1.0, 'makes': 1.0, 'blue': 1.0, 'clear': 1.0, 'clean': 1.0, 'be': 2.0, 'toddlers': 1.0, 'flipped': 1.0, 'pokes': 1.0, 'plastic': 1.0, 'toilet': 3.0, 'you': 1.0, 'hinges': 1.0, 'the': 8.0, 'see': 1.0, 'we': 1.0, 'a': 2.0, 'in': 2.0, 'also': 1.0, 'potty': 1.0, 'measurements': 1.0, 'picture': 1.0, 'appear': 1.0, 'just': 1.0, 'not': 1.0, 'to': 4.0, 'as': 1.0, 'seat': 6.0, 'hence': 1.0, 'easy': 1.0, 'however': 1.0, 'compatible': 1.0, 'using': 1.0, 'which': 2.0, 'most': 1.0, 'lids': 1.0, 'too': 1.0, 'wide': 1.0, 'flip': 1.0, 'lip': 1.0, 'trainer': 2.0, 'for': 1.0, 'product': 1.0, 'fit': 2.0, 'is': 4.0, 'around': 1.0, 'new': 1.0, 'would': 1.0, 'helpful': 1.0}
Word element => {'every': 1.0, 'unlike': 1.0, 'did': 1.0, 'comletes': 1.0, 'glad': 1.0, 'so': 2.0, 'set': 2.0, 'pad': 1.0, 'photo': 1.0, 'of': 1.0, 'm': 1.0, 'by': 1.0, 'i': 3.0, 'was': 1.0, 'to': 1.0, 'this': 2.0, 'it': 1.0, 'much': 1.0, 'one': 1.0, 'is': 2.0, 'on': 1.0, 'piece': 1.0, 'add': 1.0, 'the': 4.0, 'other': 1.0, 'luxe': 1.0, 'tell': 1.0, 'changing': 1.0, 'kind': 1.0, 'very': 1.0, 'thick': 2.0, 'too': 1.0, 'and': 3.0, 'when': 1.0, 'you': 1.0, 't': 1.0, 's': 1.0, 'but': 2.0, 'money': 1.0, 'can': 1.0, 'expensive': 1.0, 'for': 1.0, 'quilty': 1.0, 'hesitant': 1.0, 'super': 1.0, 'cute': 1.0, 'spend': 1.0, 'nice': 1.0}
Word element => {'wanted': 1.0, 'woodland': 1.0, 'which': 1.0, 'trim': 1.0, 'gender': 1.0, '5': 1.0, 'doesn': 1.0, 'but': 1.0, 'doing': 1.0, 'were': 2.0, 'their': 1.0, 'the': 2.0, 'with': 1.0, 'nursery': 1.0, 'only': 1.0, 'it': 1.0, 'are': 2.0, 'adorable': 1.0, 'and': 1.0, 'get': 1.0, 'neutral': 1.0, 'away': 1.0, 'me': 1.0, 'in': 2.0, 'reason': 1.0, 'creatures': 1.0, 'theme': 1.0, 't': 1.0, 'we': 1.0, 'fit': 1.0, 'stars': 1.0, 'is': 1.0, 'there': 1.0, 'these': 1.0, 'some': 1.0, 'loose': 1.0, 'otherwise': 1.0, 'threads': 1.0, 'i': 2.0, 'our': 1.0, 'to': 1.0, 'made': 1.0, 'nervous': 1.0, 'had': 1.0, 'what': 1.0, 'about': 1.0, 'longevity': 1.0, 'they': 1.0, 'exactly': 1.0}
Word element => {'sturdy': 1.0, 'lot': 1.0, 'holds': 1.0, 'the': 1.0, 'for': 1.0, 'gifts': 1.0, 'my': 1.0, 'woodland': 1.0, 's': 1.0, 'daughter': 1.0, 'baby': 2.0, 'hit': 1.0, 'a': 2.0, 'at': 1.0, 'with': 1.0, 'shower': 1.0, 'it': 2.0, 'this': 2.0, 'was': 1.0, 'forest': 1.0, 'friends': 1.0, 'and': 2.0, 'her': 1.0, 'nursery': 1.0, 'theme': 1.0, 'just': 1.0, 'darling': 1.0, 'i': 1.0, 'is': 3.0, 'filled': 1.0}
Word element => {'this': 1.0, 'wind': 1.0, 'are': 1.0, 'to': 2.0, 'have': 1.0, 'crank': 1.0, 'taste': 1.0, 'also': 1.0, 'for': 3.0, 'motor': 1.0, 'my': 1.0, 'asleep': 1.0, 'the': 2.0, 'great': 2.0, 'however': 1.0, 'one': 1.0, 'mobile': 1.0, 'them': 1.0, 'helping': 1.0, 'you': 2.0, 't': 1.0, 'a': 2.0, 's': 1.0, 'its': 1.0, 'works': 2.0, 'long': 1.0, 'distract': 1.0, 'it': 4.0, 'loud': 1.0, 'so': 2.0, 'bit': 1.0, 'time': 1.0, 'your': 1.0, 'too': 1.0, 'and': 1.0, 'doesn': 1.0, 'last': 1.0, 'but': 1.0, 'particularly': 1.0, 'not': 1.0, 'just': 1.0, 'best': 1.0, 'little': 1.0, 'is': 1.0, 'fall': 1.0, 'if': 1.0, 'looking': 1.0, 'each': 1.0, 'something': 1.0}
Word element => {'to': 1.0, 'and': 1.0, 'up': 1.0, 'smile': 1.0, 'happy': 1.0, 'wake': 1.0, 'morning': 1.0, 'every': 1.0, 'will': 1.0, 'all': 1.0, 'of': 1.0, 'he': 1.0, 'these': 2.0, 'my': 1.0, 'grandson': 1.0, 'in': 1.0, 'awesome': 1.0, 's': 1.0, 'animals': 1.0, 'room': 1.0, 'is': 1.0}
Word element => {'look': 1.0, 'our': 1.0, 'nursery': 1.0, 'blanket': 1.0, 'on': 1.0, 'i': 1.0, 'quilt': 1.0, 'would': 1.0, 'just': 1.0, 'of': 1.0, 'types': 1.0, 'recommend': 1.0, 'great': 1.0, 'love': 1.0, 'the': 2.0, 'makes': 1.0, 'different': 1.0, 'this': 1.0, 'product': 1.0, 'fabric': 1.0, 'colors': 1.0, 'and': 1.0}
Word element => {}
Word element => {'started': 1.0, 'months': 1.0, 'd': 1.0, 'problems': 1.0, 'no': 1.0, 'matter': 1.0, 'seem': 1.0, 'per': 1.0, 'exposed': 1.0, 'are': 1.0, 'areas': 1.0, 'yes': 1.0, 'this': 2.0, 'off': 1.0, 'cover': 1.0, 'perfectly': 1.0, 'decision': 1.0, 'apparently': 1.0, 'much': 1.0, 'has': 1.0, 'fast': 1.0, 've': 1.0, 'something': 1.0, 'had': 2.0, 'recommend': 1.0, 'doesn': 2.0, 'was': 1.0, 'as': 1.0, 'our': 1.0, 'to': 5.0, 'machine': 1.0, 'corner': 1.0, 'daughter': 2.0, 'we': 1.0, 'notice': 1.0, 't': 2.0, 'going': 1.0, 'crib': 3.0, 'but': 1.0, 'chewed': 2.0, 'in': 2.0, 'thank': 1.0, 'right': 1.0, 'made': 1.0, 'the': 8.0, 'these': 3.0, 'my': 2.0, 'goodness': 1.0, 'prior': 1.0, 'i': 5.0, 'attempted': 1.0, 'very': 1.0, 'and': 5.0, 'toss': 1.0, 'enjoying': 1.0, 'with': 1.0, 'product': 2.0, 'love': 1.0, 'fit': 1.0, 'get': 1.0, 'easy': 1.0, 'it': 1.0, 'she': 2.0, '6': 1.0, 'washing': 1.0, 'since': 1.0, 'on': 3.0, 'put': 1.0, 'never': 1.0, 'once': 1.0, 'when': 1.0, 'again': 1.0, 'or': 1.0, 'picture': 1.0, 'varnish': 1.0, 'even': 1.0, 'take': 1.0}
Word element => {'pull': 1.0, 'try': 1.0, '18': 1.0, 'btw': 1.0, 'recommend': 1.0, 'highly': 1.0, 'fabulous': 1.0, 'is': 2.0, 'velcro': 1.0, 'first': 1.0, 'with': 1.0, 'children': 2.0, 'he': 2.0, 'this': 2.0, 'it': 1.0, 'ties': 1.0, 'off': 1.0, 'cover': 2.0, 'came': 1.0, 'a': 1.0, 'baby': 2.0, 'homemade': 1.0, 'everywhere': 1.0, 'have': 1.0, '7': 2.0, 'tried': 1.0, 'i': 4.0, 'rails': 1.0, 'the': 6.0, 'my': 1.0, 'ever': 1.0, 'has': 1.0, 'one': 1.0, 'for': 1.0, 'love': 1.0, 'of': 1.0, 'does': 1.0, 'shredding': 1.0, 'ugh': 1.0, 'searched': 1.0, 'chewed': 1.0, 'but': 1.0, 'on': 2.0, 'put': 1.0, 'kept': 1.0, 'so': 1.0, 'not': 2.0, 'untying': 1.0, 'and': 5.0, 'mo': 1.0, 'ribbon': 1.0, 'best': 1.0, 'solution': 1.0, 'easy': 1.0, 'coverage': 1.0, 'upon': 1.0, 'to': 1.0, 'crib': 1.0, 'until': 1.0, 'nice': 1.0}
Word element => {'works': 1.0, 'and': 1.0, 'marks': 1.0, 'teeth': 1.0, 'protect': 1.0, 'holder': 1.0, 'buy': 1.0, 'however': 1.0, 'velcro': 1.0, 'open': 1.0, 'how': 1.0, 'out': 1.0, 'figures': 1.0, 'that': 1.0, 'baby': 1.0, 'didn': 2.0, 'colors': 1.0, 'options': 1.0, 'more': 1.0, 'glad': 1.0, 'am': 1.0, 'as': 1.0, 'to': 4.0, 'had': 1.0, 'purchased': 1.0, 'son': 1.0, 'later': 1.0, 'from': 3.0, 'holders': 1.0, 'wish': 1.0, 'this': 3.0, 'major': 1.0, 'with': 1.0, 'it': 3.0, 'i': 5.0, 'saved': 1.0, 'sooner': 1.0, 'well': 1.0, 'toy': 2.0, 'has': 1.0, 'quickly': 1.0, 'worked': 1.0, 'bed': 2.0, 'bought': 1.0, 'color': 1.0, 'would': 1.0, 'my': 1.0, 'repair': 1.0, 'damage': 1.0, 'teething': 1.0, 'than': 1.0, 'find': 1.0, 'theme': 1.0, 't': 2.0, 's': 1.0, 'a': 2.0, 'for': 5.0, 'product': 1.0, 'be': 1.0, 'specifically': 1.0, 'cribs': 1.0, 'made': 1.0, 'the': 7.0, 'convertible': 1.0, 'us': 1.0, 'rather': 1.0, 'of': 1.0, 'his': 1.0, 'room': 1.0, 'work': 1.0, 'but': 1.0, 'great': 2.0, 'nice': 1.0, 'have': 1.0}
Word element => {'bigger': 1.0, 'much': 1.0, 'a': 2.0, 'not': 1.0, 'material': 1.0, 'nice': 1.0, 'blueberry': 1.0, 'as': 2.0, 'very': 2.0, 'by': 1.0, 'in': 1.0, 'heiny': 1.0, 'than': 1.0, 'wish': 1.0, 'd': 1.0, 'print': 2.0, 'came': 2.0, 'happy': 1.0, 'absorbant': 1.0, 'my': 1.0, 'but': 1.0, 'quality': 1.0, 'diapers': 1.0, 'they': 2.0, 'love': 1.0, 'i': 3.0, 'diaper': 1.0, 'bulky': 1.0, 'more': 3.0, 'these': 1.0, 'complant': 1.0, 'have': 1.0, 'every': 1.0, 'if': 1.0, 'options': 1.0, 'out': 1.0, 'only': 1.0, 'with': 1.0, 'girly': 1.0, 'prints': 1.0, 'soft': 1.0, 'gladly': 1.0}
Word element => {'too': 1.0, 'coming': 1.0, 'easy': 1.0, 'use': 1.0, 'keep': 1.0, 'and': 1.0, 'few': 1.0, 'clean': 1.0, 'different': 1.0, 'a': 1.0, 'prints': 1.0, 'are': 1.0, 'the': 1.0, 've': 1.0, 'cloth': 1.0, 'tried': 1.0, 'i': 2.0, 'diapers': 1.0, 'but': 1.0, 'back': 1.0, 'cb': 1.0, 'to': 2.0, 'they': 1.0, 'love': 1.0}
Word element => {'penny': 1.0, 'every': 1.0, 'recommend': 1.0, 'highly': 1.0, 'saver': 1.0, 'life': 1.0, 'a': 1.0, 'far': 1.0, 'so': 1.0, 'which': 1.0, 'been': 1.0, 'edge': 1.0, 'month': 1.0, 'worth': 1.0, 'absolutely': 1.0, 'can': 1.0, 'son': 1.0, 'has': 1.0, 'time': 1.0, 'on': 1.0, '5': 1.0, 'for': 1.0, 'he': 3.0, 'it': 2.0, 'this': 2.0, 'loves': 2.0, 'and': 2.0, 'my': 1.0, 'the': 1.0, 'bought': 1.0, 'old': 1.0, 'i': 2.0, 'lay': 1.0, 'down': 1.0, 'even': 1.0, 'sit': 1.0, 'tummy': 1.0}
Word element => {'meltdown': 1.0, 'in': 1.0, 'be': 1.0, 'she': 1.0, 'soon': 1.0, 'one': 1.0, 'another': 1.0, 'find': 1.0, 'without': 1.0, 't': 1.0, 'or': 1.0, 'loves': 1.0, 'won': 1.0, 'bwankie': 1.0, 'is': 1.0, 'to': 1.0, 'granddaughter': 1.0, 'go': 1.0, 'and': 1.0, 'it': 2.0, 'this': 1.0, 'only': 1.0, 'need': 1.0, 'anywhere': 1.0, 'my': 1.0, 'thing': 1.0, 'bad': 1.0, 'lost': 1.0, 'if': 1.0, 'ever': 1.0, 'gets': 1.0, 'we': 1.0, 'will': 2.0}
Word element => {'out': 1.0, 'they': 1.0, 'but': 1.0, 'sites': 1.0, 'compared': 1.0, 'little': 1.0, 'my': 1.0, '3': 1.0, 'was': 1.0, 'year': 1.0, 'to': 1.0, 'pricey': 1.0, 'old': 1.0, 'were': 1.0, 'it': 1.0, 'sold': 1.0, 'other': 1.0, 'grandson': 1.0, 'loved': 1.0, 'this': 1.0, 'bear': 1.0, 'a': 1.0}
Word element => {'price': 1.0, 'focused': 1.0, 'can': 1.0, 'help': 1.0, 'extra': 1.0, 'all': 1.0, 'need': 1.0, 'days': 1.0, 'children': 1.0, 'for': 1.0, 'bears': 1.0, 'the': 2.0, 'these': 2.0, 'they': 2.0, 'of': 2.0, 'served': 1.0, 'good': 3.0, 'get': 1.0, 'and': 3.0, 'stay': 1.0, 'grandson': 1.0, 'my': 1.0, 'bought': 1.0, 'things': 1.0, 'two': 1.0, 'encourage': 1.0, 'buy': 1.0, 'i': 1.0, 'was': 1.0, 'granddaughter': 1.0, 'purpose': 1.0, 'to': 2.0, 'reasonable': 1.0, 'spiritual': 1.0, 'on': 1.0, 'development': 1.0, 'cute': 1.0, 'their': 1.0, 'were': 1.0, 'a': 2.0}
Word element => {'be': 1.0, 'will': 1.0, 'well': 1.0, 'buying': 1.0, 'everywhere': 1.0, 'pretty': 1.0, 'pacifier': 1.0, 'and': 1.0, 'very': 2.0, 'another': 1.0, 'go': 1.0, 'complaints': 1.0, 'made': 1.0, 'my': 1.0, 'get': 1.0, 'i': 1.0, 'daughters': 1.0, 'on': 1.0, 'soon': 1.0, 'clip': 1.0}
Word element => {'very': 2.0, 'it': 3.0, 'pretty': 1.0, 'pacifier': 1.0, 'while': 1.0, 'useless': 1.0, 'is': 3.0, 'impossible': 1.0, 'a': 1.0, 'to': 2.0, 'attach': 1.0, 'clip': 1.0, 'this': 1.0, 'so': 1.0}
Word element => {'a': 1.0, 'away': 1.0, 'right': 1.0, 'the': 1.0, 'break': 1.0, 'very': 1.0, 'excited': 1.0, 'for': 1.0, 'our': 1.0, 'will': 1.0, 'baby': 1.0, 'paci': 1.0, 'new': 1.0, 'holder': 1.0, 'not': 1.0, 'till': 1.0, 'chain': 1.0, 'recieved': 1.0, 'holds': 1.0, 'proof': 1.0}
Word element => {'possibilities': 1.0, 'think': 1.0, 'toy': 1.0, 'however': 1.0, 'that': 1.0, 'grandson': 1.0, 'was': 2.0, 'convinced': 1.0, 'perfect': 1.0, 'in': 1.0, 'though': 1.0, 'for': 1.0, 'me': 1.0, 'impressed': 1.0, 't': 1.0, 'the': 2.0, 'grandchild': 1.0, 'my': 1.0, 'wasn': 1.0, 'll': 1.0, 'i': 2.0, 'still': 1.0, 'save': 1.0, 'this': 1.0, 'educator': 1.0, 'it': 2.0, 'has': 1.0, 'next': 1.0}
Word element => {'product': 1.0, 'eric': 1.0, 'this': 1.0, 'recommend': 1.0, 'i': 1.0, 'the': 3.0, 'lamp': 1.0, 'cata': 1.0, 'carle': 1.0, 'and': 1.0, 'go': 1.0, 'pillar': 1.0, 'definitely': 1.0, 'shade': 1.0, 'perfectly': 1.0, 'with': 1.0, 'hungry': 1.0, 'theme': 1.0}
Word element => {'spring': 1.0, 'bibby': 1.0, 'effective': 1.0, 'uniquely': 1.0, 'soft': 1.0, 'super': 1.0, 'still': 1.0, 's': 1.0, 'prone': 1.0, 'covers': 1.0, 'great': 1.0, 'the': 1.0, 't': 1.0, 'stain': 1.0, 'fling': 1.0, 'bib': 1.0, 'and': 2.0, 'completely': 1.0, 'adore': 1.0, 'hasn': 1.0, 'buy': 1.0, 'i': 1.0, 'areas': 1.0, 'this': 2.0, 'velcro': 1.0, 'it': 2.0, 'on': 1.0, 'infant': 1.0, 'washings': 1.0, 'clothing': 1.0, 'makes': 1.0, 'has': 1.0, 'design': 1.0, 'attractive': 1.0, 'simple': 1.0, 'wrap': 1.0, 'repeated': 1.0, 'a': 3.0, 'closure': 1.0, 'pilled': 1.0, 'through': 1.0}
Word element => {'stuffer': 1.0, 'stocking': 1.0, 'for': 1.0, 'in': 1.0, 'great': 1.0, 'the': 1.0, 'a': 1.0, 'is': 1.0, 'toy': 2.0, 'but': 1.0, 'plastic': 1.0, 'easy': 1.0, 'cute': 1.0, 'very': 2.0, 'this': 1.0, 'hard': 1.0, 'tub': 2.0, 'clean': 1.0, 'to': 1.0, 'its': 1.0, 'been': 1.0, 'keep': 1.0, 'good': 1.0, 'small': 1.0, 'after': 1.0}
Word element => {'together': 1.0, 'room': 1.0, 'put': 1.0, 'easy': 1.0, 'are': 1.0, 'colors': 1.0, 'so': 3.0, 'perfect': 1.0, 'in': 1.0, 'around': 1.0, 'cool': 1.0, 'to': 1.0, 'was': 1.0, 'character': 1.0, 'super': 1.0, 'fan': 1.0, 'boy': 1.0, 'this': 3.0, 'a': 3.0, 'for': 1.0, 'love': 1.0, 'sheet': 1.0, 'i': 2.0, 'great': 1.0, 'the': 2.0, 'not': 2.0, 'quite': 1.0, 'tween': 1.0, 'stage': 1.0, 'set': 2.0, '34': 2.0, 'of': 1.0, 'am': 1.0, 'teen': 1.0, 'sheets': 1.0}
Word element => {'bag': 1.0, 'or': 1.0, 'car': 1.0, 'use': 1.0, 'it': 2.0, 'good': 1.0, 'by': 1.0, 'arrived': 1.0, 'diaper': 1.0, 'in': 2.0, 'daughter': 1.0, 'quality': 1.0, 'and': 1.0, 'the': 2.0, 'my': 1.0, 'on': 1.0, 'time': 1.0, 'is': 1.0, 'we': 1.0, 'entertained': 1.0}
Word element => {'gift': 1.0, 'would': 1.0, 'ones': 1.0, 'little': 2.0, 'highly': 1.0, 'daily': 1.0, 'with': 1.0, 'fun': 1.0, 'from': 1.0, 'months': 1.0, 'reflect': 1.0, 'they': 1.0, 'guess': 1.0, 'through': 1.0, 'see': 1.0, 'look': 1.0, 'time': 2.0, 'girls': 1.0, 'recommended': 1.0, 'has': 1.0, 'likes': 1.0, 'toy': 2.0, 'i': 3.0, 'hits': 1.0, '5': 2.0, 'jingling': 1.0, 'the': 3.0, 'my': 1.0, 'hangs': 1.0, 'went': 1.0, 'or': 1.0, 'picked': 1.0, 'perfect': 1.0, 'this': 5.0, 'was': 2.0, 'at': 6.0, 'weeks': 1.0, 'major': 1.0, 'now': 2.0, 'grabs': 1.0, 'and': 6.0, '6': 2.0, 'clearly': 1.0, 'for': 3.0, 's': 1.0, 'a': 3.0, 'makes': 1.0, 'old': 1.0, 'noticed': 1.0, 'retailer': 1.0, 'her': 2.0, 'gym': 1.0, 'stared': 1.0, 'jewels': 1.0, 'most': 1.0, 'to': 2.0, 'as': 1.0, 'shower': 1.0, 'chews': 1.0, 'light': 1.0, 'by': 1.0, 'local': 1.0, 'when': 1.0, 'it': 5.0, 'she': 6.0, 'baby': 3.0, 'started': 1.0, 'make': 1.0, 'on': 1.0, 'is': 1.0, 'bat': 1.0, 'favorite': 1.0, 'cute': 1.0, 'up': 1.0, 'sound': 1.0}
Word element => {'they': 1.0, 'them': 1.0, 'i': 1.0, 'very': 1.0, 'works': 1.0, 'furniture': 1.0, 'into': 1.0, 'we': 1.0, 'price': 1.0, 'for': 1.0, 'well': 1.0, 'a': 2.0, 'really': 1.0, 'want': 1.0, 'is': 1.0, 'bought': 1.0, 'product': 1.0, 'place': 1.0, 'look': 1.0, 'to': 1.0, 'moved': 1.0, 'this': 2.0, 'smaller': 1.0, 'and': 2.0, 'didn': 1.0, 'all': 1.0, 'take': 1.0, '2': 1.0, 'great': 2.0, 'the': 1.0, 't': 1.0, 'bulky': 1.0, 'of': 2.0, 'our': 1.0}
Word element => {'way': 1.0, 'closet': 1.0, 'nicely': 1.0, 'want': 1.0, 'wouldn': 1.0, 'intended': 1.0, 'was': 1.0, 'which': 1.0, 'purpose': 1.0, 'serves': 1.0, 'it': 5.0, 'personally': 1.0, 'her': 1.0, 'his': 1.0, 'drawer': 1.0, 'need': 1.0, 'baseball': 1.0, 'when': 1.0, 'this': 2.0, 'hats': 3.0, 'kids': 1.0, 'mittens': 2.0, 'or': 1.0, 'july': 1.0, 'sun': 1.0, 'i': 5.0, 'kid': 1.0, 'caps': 1.0, 'little': 1.0, 'bigger': 1.0, 'three': 1.0, 'winter': 2.0, 'll': 1.0, 'for': 3.0, 'product': 1.0, 'have': 2.0, 'and': 4.0, 'get': 1.0, 'coat': 1.0, 'each': 1.0, 'so': 2.0, 'came': 1.0, 'in': 3.0, 'any': 1.0, 'to': 2.0, 'now': 1.0, 'put': 1.0, 'aren': 1.0, 'but': 1.0, 'their': 1.0, 'summer': 1.0, 'fits': 1.0, 'another': 1.0, 'the': 4.0, 'a': 1.0, 'could': 1.0, 't': 2.0, 'drawers': 1.0, 'one': 1.0, 'bought': 1.0, 'decided': 1.0, 'huge': 1.0}
Word element => {'room': 1.0, 'girls': 1.0, 'my': 1.0, 'goes': 1.0, 'and': 1.0, 'for': 1.0, 'little': 1.0, 'together': 1.0, 'was': 1.0, 'feels': 1.0, 'fine': 1.0, 'is': 1.0, 'wood': 1.0, 'a': 1.0, 'you': 1.0, 'what': 1.0, 'before': 1.0, 'it': 1.0, 'this': 1.0, 'great': 1.0, 'the': 1.0, 'put': 1.0, 'but': 1.0, 'in': 1.0, 'seems': 1.0, 'once': 1.0, 'exactly': 1.0, 'baby': 1.0, 'assembled': 1.0, 'cheap': 1.0, 'i': 1.0, 'looking': 1.0}
Word element => {'least': 1.0, 'at': 1.0, 'be': 1.0, 'bought': 1.0, 'what': 1.0, 'perfect': 1.0, 'undershirts': 1.0, 'socks': 1.0, 'apartment': 1.0, 'will': 1.0, 'an': 1.0, 'buying': 1.0, 'to': 2.0, 'into': 1.0, 'didn': 1.0, 'decided': 1.0, 'set': 1.0, 'bring': 1.0, 'i': 4.0, 'buy': 1.0, 'underwear': 1.0, 'drawer': 1.0, 'and': 2.0, 'just': 1.0, 'huge': 1.0, 'more': 1.0, 'great': 1.0, 't': 1.0, 'it': 1.0, 'moved': 1.0, 'this': 2.0, 'is': 1.0, 'want': 1.0, 'my': 2.0, 'dresser': 1.0, 'one': 1.0, 'for': 3.0}
Word element => {'ridiculous': 1.0, 'absolutely': 1.0, 'charging': 1.0, 'with': 1.0, 'recommend': 1.0, 'about': 1.0, 'anything': 1.0, 'so': 2.0, 'return': 1.0, 'original': 1.0, 'it': 1.0, '15': 1.0, 'toys': 1.0, 'wanted': 1.0, 'to': 1.0, 'like': 1.0, 'fee': 2.0, 't': 1.0, 'a': 2.0, 'could': 1.0, 'that': 1.0, 'box': 1.0, 'ordered': 1.0, 'still': 1.0, 'us': 1.0, 'restocking': 2.0, 'cheaper': 1.0, 'last': 1.0, 'i': 6.0, 'r': 1.0, 'would': 1.0, 'something': 1.0, 'product': 2.0, 'for': 2.0, 'one': 1.0, 'at': 1.0, 'sons': 1.0, 'charges': 1.0, 'week': 1.0, 'room': 1.0, 'business': 1.0, 'my': 1.0, 'company': 2.0, 'itself': 1.0, 'in': 1.0, 'doing': 1.0, 'this': 4.0, 'found': 1.0, '30': 2.0, 'understand': 1.0, '10': 1.0, 'or': 1.0, 'maybe': 1.0, 'but': 2.0, 'can': 1.0, 'even': 1.0, 'not': 2.0, 'the': 3.0, 'much': 1.0, 'hamper': 1.0, 'say': 1.0, 'is': 2.0}
Word element => {'thank': 1.0, 'shipping': 1.0, 'fast': 1.0, 'product': 1.0, 'to': 1.0, 'for': 1.0, 'amount': 1.0, 'nursery': 1.0, 'of': 1.0, 'odds': 1.0, 'ends': 1.0, 'you': 1.0, 's': 1.0, 'in': 1.0, 'perfect': 1.0, 'our': 1.0, 'n': 1.0, 'little': 1.0, 'storage': 1.0, 'baby': 1.0, 'great': 1.0, 'those': 1.0, 'goes': 1.0, 'true': 1.0, 'color': 1.0, 'perfectly': 1.0, 'and': 1.0}
Word element => {'are': 1.0, 'that': 1.0, 'need': 1.0, 'everything': 1.0, 'my': 1.0, 'weight': 1.0, 'of': 1.0, 'amount': 1.0, 'put': 1.0, 'but': 1.0, 'was': 1.0, 'to': 3.0, 'all': 1.0, 'easy': 2.0, 'together': 1.0, 'remove': 1.0, 'it': 2.0, 'this': 2.0, 'wouldn': 1.0, 'pieces': 1.0, 'in': 1.0, 'room': 1.0, 'i': 3.0, 'complain': 1.0, 'storage': 1.0, 'quality': 1.0, 'baby': 1.0, 'about': 1.0, 'some': 1.0, 'expect': 1.0, 'fit': 1.0, 'for': 4.0, 'diaper': 1.0, 'the': 5.0, 'drawers': 1.0, 'dirty': 1.0, 'like': 1.0, 'hold': 1.0, 'laundry': 1.0, 'we': 1.0, 's': 1.0, 't': 2.0, 'a': 2.0, 'large': 1.0, 'just': 1.0, 'not': 1.0, 'holds': 1.0, 'is': 2.0, 'fine': 1.0, 'isn': 1.0, 'price': 1.0, 'best': 1.0, 'wood': 1.0, 'world': 1.0, 'there': 1.0, 'purposes': 1.0, 'nothing': 1.0, 'ordered': 1.0, 'canvas': 1.0, 'thick': 1.0, 'and': 3.0, 'too': 1.0}
Word element => {'love': 1.0, 'assemble': 1.0, 'to': 1.0, 'easy': 1.0, 'it': 1.0, 'very': 1.0, 'perfect': 1.0, 'absolutely': 1.0}
Word element => {'much': 1.0, 'that': 1.0, 'hold': 1.0, 'putting': 1.0, 'pretty': 1.0, 'they': 1.0, 'made': 1.0, 't': 1.0, 'the': 4.0, 'are': 1.0, 'and': 1.0, 'very': 2.0, 'it': 1.0, 'baskets': 1.0, 'while': 1.0, 'product': 1.0, 'through': 1.0, 'light': 1.0, 'is': 1.0, 'together': 1.0, 'nails': 1.0, 'wood': 1.0, 'can': 1.0, 'cheaply': 1.0, 'sliced': 1.0, 'also': 1.0, 'small': 1.0, 'so': 1.0}
Word element => {'drawer': 1.0, 'there': 1.0, 'out': 1.0, 'i': 3.0, 'loosens': 1.0, 'when': 1.0, 'they': 1.0, 'so': 1.0, 'small': 1.0, 'get': 1.0, 'too': 1.0, 'and': 3.0, 'are': 1.0, 'bathroom': 1.0, 'my': 1.0, 'that': 2.0, 'would': 2.0, 'this': 1.0, 'of': 1.0, 'shower': 1.0, 'unit': 1.0, 'it': 3.0, 'velcro': 1.0, 'provides': 1.0, 'attractive': 2.0, 'socks': 2.0, 'store': 1.0, 'an': 1.0, 'underwear': 1.0, 'to': 1.0, 'had': 1.0, 'in': 2.0, 'place': 1.0, 'the': 4.0, 'is': 1.0, 'many': 1.0, 'very': 2.0, 'works': 1.0, 'even': 1.0, 'well': 1.0, 'if': 2.0, 'complaint': 1.0, 'be': 2.0, 'one': 1.0, 'canvas': 1.0, 'a': 2.0, 's': 1.0, 'put': 1.0, 'on': 1.0}
Word element => {'purchased': 1.0, 'they': 1.0, 'look': 1.0, 'two': 1.0, 'clothing': 1.0, 'toys': 1.0, 'color': 1.0, 'combo': 1.0, 'exact': 1.0, 'unit': 1.0, 'costco': 1.0, 'room': 2.0, 'it': 1.0, 'protect': 1.0, 'kitchen': 1.0, 'daughter': 1.0, 'were': 2.0, 'parts': 1.0, 'as': 1.0, 'to': 2.0, 'all': 1.0, 'early': 1.0, 'arrived': 1.0, 'spaces': 1.0, 'lamp': 1.0, 'very': 1.0, 'laundry': 1.0, 'problems': 1.0, 'changing': 1.0, 'hamper': 2.0, 'and': 5.0, 'like': 1.0, 'table': 4.0, 'trash': 1.0, 'is': 2.0, 'bins': 1.0, 'offers': 1.0, 'included': 1.0, 'divider': 1.0, 'back': 1.0, 'top': 1.0, 'others': 1.0, 'onin': 1.0, 'ideal': 1.0, 'experienced': 1.0, 'purposed': 1.0, 'of': 2.0, 'stable': 1.0, 'reported': 1.0, 'the': 11.0, 'assembled': 1.0, 'storage': 3.0, 'issues': 1.0, 'cut': 1.0, 'or': 1.0, 'none': 1.0, 'by': 1.0, 'with': 2.0, 'this': 1.0, 'addition': 1.0, 'set': 1.0, 'suggested': 1.0, 'tiles': 1.0, 'my': 1.0, 'ceramic': 1.0, 'in': 3.0, 'trips': 1.0, 'three': 1.0, 'make': 1.0, 'on': 1.0, 'can': 2.0, 'easily': 1.0, 'putting': 1.0, 'be': 1.0, 'eight': 1.0, 'snap': 1.0, 're': 1.0, 'for': 2.0, 'we': 1.0, 'a': 4.0, 'later': 1.0}
Word element => {'goes': 1.0, 'nursery': 1.0, 'well': 1.0, 's': 1.0, 'baby': 1.0, 'crib': 1.0, 'in': 1.0, 'my': 1.0, 'the': 3.0, 'is': 2.0, 'such': 1.0, 'beautiful': 1.0, 'table': 1.0, 'and': 2.0, 'great': 1.0, 'space': 1.0, 'a': 1.0, 'saver': 1.0, 'looks': 1.0}
Word element => {'gets': 1.0, 'before': 1.0, 'months': 1.0, '3': 1.0, 'their': 1.0, 'holds': 1.0, 'purchases': 1.0, 'become': 1.0, '13': 1.0, 'disagree': 1.0, 'd': 2.0, 'pounds': 1.0, '15': 1.0, 'over': 1.0, 'hold': 1.0, 'review': 1.0, 'that': 1.0, 'easily': 1.0, 'crafty': 1.0, 're': 1.0, 'challenging': 1.0, 'purchasing': 1.0, 'which': 1.0, 'wait': 1.0, 'end': 1.0, 'shaped': 1.0, 'also': 1.0, 'dogs': 1.0, 'buy': 1.0, 'make': 2.0, 'fix': 1.0, 'start': 1.0, 'see': 1.0, 'great': 1.0, 'snugger': 1.0, 'here': 1.0, 'pill': 1.0, 'spacious': 1.0, 'cover': 3.0, 'new': 2.0, 'uses': 1.0, 'time': 1.0, 'weight': 1.0, 'couple': 1.0, 'on': 2.0, 'be': 2.0, 'baby': 3.0, 'wish': 1.0, 'expect': 1.0, 'don': 1.0, 'although': 1.0, 'padded': 1.0, 'under': 1.0, 'super': 1.0, 'another': 2.0, 'minutes': 2.0, 'lbs': 2.0, 'was': 5.0, 'still': 1.0, 'if': 1.0, 'expecting': 1.0, 'about': 3.0, 'thing': 1.0, 'never': 1.0, 'spent': 1.0, 'sturdy': 1.0, 'got': 1.0, 'picture': 1.0, 'cloth': 1.0, 'even': 1.0, '27': 1.0, 'and': 5.0, 'week': 1.0, 'ordered': 1.0, 'rich': 1.0, 'have': 3.0, 'a': 10.0, 'fit': 1.0, 't': 3.0, 'fine': 1.0, 'we': 3.0, 'table': 2.0, 'by': 1.0, 'looks': 1.0, 'my': 1.0, 'color': 1.0, 'last': 2.0, 'all': 1.0, 'other': 1.0, 'hamper': 1.0, 'only': 1.0, 'few': 1.0, 'this': 5.0, 'just': 2.0, '45': 1.0, 'break': 1.0, 'you': 2.0, 'night': 1.0, 'can': 3.0, 'so': 2.0, 'easy': 1.0, 'bit': 3.0, 'use': 1.0, 'smaller': 1.0, 'more': 2.0, 'husband': 1.0, 'places': 1.0, 'had': 1.0, 'terry': 1.0, 'saw': 1.0, 'surprised': 1.0, 'online': 1.0, 'idea': 1.0, 'when': 1.0, 'at': 1.0, 'is': 6.0, 'amazon': 1.0, 'testers': 1.0, 'front': 1.0, 'corner': 2.0, 'together': 2.0, 'these': 1.0, 'than': 3.0, 'having': 1.0, 's': 1.0, 'maybe': 1.0, 'for': 4.0, 'much': 2.0, 'changing': 5.0, 'the': 11.0, 'of': 1.0, 'in': 4.0, 'said': 1.0, 'with': 1.0, 'dinner': 1.0, 'washes': 1.0, 'would': 2.0, 'there': 1.0, 'pointed': 1.0, 'i': 7.0, 'putting': 1.0, 'love': 1.0, 'he': 3.0, 'our': 2.0, 'how': 2.0, 'sew': 1.0, 'really': 2.0, 'wasn': 1.0, 'espresso': 1.0, 'but': 6.0, 'impressed': 1.0, 'think': 1.0, 'one': 3.0, 'actual': 2.0, 'hoping': 1.0, 'to': 6.0, 'space': 1.0, 'thought': 1.0, 'states': 1.0, 'it': 12.0, 'sets': 1.0, 'set': 1.0, 'feels': 1.0, 'from': 1.0, 'horribly': 1.0, 'back': 1.0, 'nothing': 1.0, 'important': 1.0, 'pad': 2.0, 'less': 1.0, 'up': 4.0, 'packaged': 1.0, 'will': 3.0, 'like': 2.0, 'fluff': 1.0, 'excited': 2.0, 'after': 2.0, 'very': 1.0, 'being': 1.0, 'not': 2.0}
Word element => {'days': 1.0, '3': 1.0, 'us': 1.0, 'shipped': 1.0, 'request': 1.0, 'in': 1.0, 'sent': 1.0, 'we': 1.0, 'within': 1.0, 'value': 1.0, 'of': 1.0, 'shelf': 1.0, 'screw': 1.0, 'a': 4.0, 'really': 1.0, 'is': 1.0, 'table': 1.0, 'box': 1.0, 'like': 1.0, 'and': 3.0, 'but': 1.0, 'quality': 1.0, 'it': 3.0, 'this': 1.0, 'i': 1.0, 'great': 1.0, 'the': 4.0, 'price': 1.0, 'product': 1.0, 'to': 1.0, 'was': 2.0, 'for': 1.0, 'missing': 1.0, 'changing': 1.0, 'from': 1.0}
Word element => {'plus': 1.0, 'always': 1.0, 'no': 1.0, 'baby': 1.0, 'after': 1.0, 'purpose': 1.0, 'able': 1.0, 'be': 1.0, 'one': 2.0, 'for': 2.0, 'love': 1.0, 'took': 1.0, 'i': 1.0, 'star': 1.0, 'other': 1.0, 're': 1.0, 'off': 1.0, 'pad': 1.0, 'solid': 1.0, 'has': 1.0, 'this': 2.0, 'nicer': 1.0, 'think': 1.0, 'put': 1.0, 'was': 1.0, 'to': 5.0, 'easy': 2.0, 'which': 2.0, 'table': 1.0, 'it': 4.0, 'looks': 1.0, 'comes': 1.0, 'is': 2.0, 'feel': 1.0, 'nice': 1.0, 'great': 1.0, 'the': 3.0, 'and': 2.0, 'needs': 1.0, 'so': 1.0, 'bit': 1.0, 'at': 1.0, 'flimsy': 1.0, 'point': 1.0, 'we': 3.0, 'a': 5.0, 's': 1.0, 'together': 1.0, 'corner': 1.0, 'not': 1.0, 'swap': 1.0, 'also': 1.0, 'out': 1.0, 'than': 1.0, 'changing': 2.0, 'that': 1.0, 'longer': 1.0, 'll': 1.0}
Word element => {'you': 1.0, 'thank': 1.0, 'biggie': 1.0, 'so': 1.0, 'works': 1.0, 'but': 1.0, 'sleeve': 1.0, 'cd': 1.0, 'appears': 1.0, 'is': 1.0, 'complaint': 1.0, 'for': 1.0, 'condition': 1.0, 'and': 2.0, 'very': 1.0, 'as': 1.0, 'cute': 1.0, 'gift': 1.0, 'stickers': 1.0, 'came': 1.0, 'be': 1.0, 'product': 1.0, 'purchased': 1.0, 'a': 3.0, 'were': 2.0, 'hit': 1.0, 'no': 1.0, 'quickly': 1.0, 'at': 1.0, 'only': 1.0, 'it': 3.0, 'shower': 1.0, 'baby': 1.0, 'packaging': 1.0, 'i': 1.0, 'to': 1.0, 'had': 1.0, 'great': 1.0, 'the': 2.0, 'these': 1.0}
Word element => {'first': 1.0, 'uses': 1.0, 'everywhere': 1.0, 'child': 1.0, 'over': 1.0, 'he': 1.0, 'it': 1.0, 'daily': 1.0, 'and': 2.0, 'onto': 1.0, 'have': 2.0, 'thing': 1.0, 'love': 1.0, 'for': 3.0, 'rides': 1.0, 'item': 1.0, '7': 1.0, 'the': 3.0, 'great': 1.0, 'my': 1.0, 'take': 1.0, 'never': 1.0, 'pacifier': 1.0, 'son': 1.0, 'months': 1.0, 'entire': 1.0, 'used': 2.0, 'does': 1.0, 'but': 1.0, 'teether': 2.0, 'stroller': 1.0, 'loop': 1.0, 'a': 3.0, 'we': 1.0, 'well': 1.0, 'toy': 1.0, 'baby': 2.0, 'is': 1.0, 'almost': 1.0, 'so': 1.0, 'not': 1.0, 'throw': 1.0, 'this': 3.0, 'wish': 1.0, 'toys': 1.0, 'edge': 1.0, 'i': 1.0, 'hooked': 1.0, 'had': 1.0, 'as': 1.0, 'our': 1.0}
Word element => {'very': 1.0, 'all': 1.0, 'yes': 1.0, 'bibs': 1.0, 'pacifier': 1.0, 'spoon': 1.0, 'snack': 1.0, 'so': 1.0, 'food': 1.0, 'jar': 1.0, 'little': 1.0, 'bottle': 1.0, 'wipes': 1.0, 'of': 2.0, 'or': 5.0, 'for': 1.0, 'definitely': 1.0, 'fits': 1.0, 'but': 1.0, 'diapers': 1.0, 'case': 1.0, 'short': 1.0, 'useful': 2.0, 'towels': 1.0, 'to': 1.0, 'cute': 1.0, 'is': 3.0, 'quick': 1.0, 'it': 3.0, 'trips': 1.0, 'the': 1.0, 'nearby': 1.0, 'flat': 1.0, 'couple': 1.0, 'and': 2.0, 'market': 1.0, 'cup': 2.0, 'stores': 1.0, 'once': 1.0, 'at': 1.0, 'sippy': 1.0, 'super': 2.0, 'two': 1.0, 'a': 3.0}
Word element => {}
Word element => {'shoulder': 1.0, 'my': 1.0, 'over': 1.0, 'fit': 1.0, 'i': 1.0, 'even': 1.0, 'does': 1.0, 'when': 1.0, 'pattern': 1.0, 'in': 1.0, 'disappointed': 1.0, 'cute': 1.0, 'how': 1.0, 'have': 1.0, 'bag': 3.0, 'this': 1.0, 'doesn': 1.0, 'super': 1.0, 't': 1.0, 'the': 3.0, 'small': 1.0, 'arrived': 1.0, 'was': 2.0, 'to': 1.0, 'a': 1.0, 'see': 1.0, 'person': 1.0, 'strap': 1.0}
Word element => {'too': 1.0, 'quick': 1.0, 'for': 1.0, 'wipes': 1.0, 'and': 3.0, 'great': 2.0, 'it': 1.0, 'gym': 1.0, 's': 1.0, 'diapers': 1.0, 'perfect': 1.0, 'run': 1.0, 'the': 2.0, 'go': 1.0, 'a': 2.0, 'bottle': 1.0, 'looks': 1.0, 'size': 1.0, 'couple': 1.0, 'to': 3.0, 'hold': 1.0, 'of': 1.0}
Word element => {'loves': 1.0, 'old': 1.0, 'product': 1.0, 'to': 1.0, 'two': 1.0, 'brilliant': 1.0, 'excellent': 1.0, 'my': 1.0, 'soft': 1.0, 'a': 1.0, 'is': 1.0, 'it': 1.0, 'this': 1.0, 'with': 1.0, 'year': 1.0, 'very': 1.0, 'quality': 1.0, 'bedding': 1.0, 'colors': 1.0, 'others': 1.0, 'would': 1.0, 'definitely': 1.0, 'fantastic': 1.0, 'recommend': 1.0}
Word element => {'cute': 1.0, 'love': 1.0, 'the': 2.0, 'great': 1.0, 'too': 1.0, 'and': 1.0, 'very': 1.0, 'sheet': 1.0, 'bedding': 1.0, 'buy': 1.0, 'i': 1.0, 'stays': 1.0, 'is': 1.0, 'in': 1.0, 'also': 1.0, 'it': 1.0, 'durable': 1.0, 'fitted': 1.0, 'bottom': 1.0, 'end': 1.0, 'at': 1.0, 'so': 1.0, 'how': 1.0, 'place': 1.0}
Word element => {'cotton': 1.0, 'lightweight': 1.0, 'is': 1.0, 'comforter': 1.0, 'i': 1.0, 'old': 1.0, 'of': 1.0, 'bottom': 1.0, 'mentioned': 1.0, 'ran': 1.0, '2': 1.0, 'hit': 1.0, 'silky': 1.0, 'colors': 1.0, 'tinkerbell': 1.0, 'bought': 1.0, 'huge': 1.0, 'not': 1.0, 'and': 6.0, 'loves': 1.0, 'she': 1.0, 'it': 4.0, 'course': 1.0, 'for': 1.0, 'year': 1.0, 'a': 2.0, 's': 2.0, 'sheets': 1.0, 'wash': 1.0, 'in': 2.0, 'flat': 1.0, 'nice': 1.0, 'this': 1.0, 'soft': 2.0, 'through': 1.0, 'scratchy': 1.0, 'previous': 1.0, 'reviews': 1.0, 'are': 1.0, 'bit': 1.0, 'sheet': 1.0, 'had': 1.0, 'our': 1.0, 'as': 1.0, 'all': 1.0, 'to': 1.0, 'elastic': 1.0, 'at': 2.0, 'keep': 1.0, 'the': 5.0, 'place': 1.0}
Word element => {'than': 1.0, 'are': 1.0, 'beds': 1.0, 'short': 1.0, 'little': 2.0, 'purchased': 1.0, 'roomdaughter': 1.0, 'the': 5.0, 'remained': 1.0, 'mattress': 1.0, 'matched': 1.0, 'a': 2.0, 'itcolor': 1.0, 'it': 1.0, 'first': 1.0, 'daughter': 1.0, 'theme': 1.0, 'standard': 1.0, 'we': 1.0, 'loves': 1.0, 'fit': 1.0, 'longer': 1.0, 'pros': 1.0, 'after': 1.0, 'not': 1.0, 'ikea': 2.0, 'my': 1.0, 'color': 1.0, 'washcons': 1.0, 's': 2.0, 'sheets': 1.0, 'did': 1.0, 'toddler': 1.0, 'bed': 1.0}
Word element => {'expected': 1.0, 'than': 1.0, 'got': 1.0, 'bed': 1.0, 'so': 1.0, 'bottom': 1.0, 'slip': 1.0, 'at': 1.0, 'sooner': 1.0, 'looks': 1.0, 'sheets': 1.0, 'bedset': 1.0, 'tinkerbell': 1.0, 'here': 1.0, 'new': 1.0, 'it': 3.0, 'off': 1.0, 'loves': 1.0, 'extremely': 1.0, 'doesn': 1.0, 'elastic': 1.0, 'old': 1.0, 'year': 1.0, 'her': 1.0, 'sheet': 1.0, 'soft': 1.0, '3': 1.0, 'my': 1.0, 't': 1.0, 'the': 5.0, 'are': 1.0, 'just': 1.0, 'like': 1.0, 'picture': 1.0, 'also': 1.0, 'has': 1.0}
Word element => {'set': 1.0, 'ordering': 1.0, 'softness': 1.0, 'spare': 1.0, 'weight': 1.0, 'size': 1.0, 'due': 1.0, 'of': 1.0, 'well': 1.0, 'get': 1.0, 'rolls': 1.0, 'if': 2.0, 'super': 1.0, 'not': 1.0, 'shoulders': 1.0, 'her': 2.0, 'she': 2.0, 'it': 3.0, 'wider': 1.0, 'on': 1.0, 'actually': 1.0, 'more': 1.0, 'is': 3.0, 'one': 1.0, 'while': 1.0, 'chest': 1.0, 'daughter': 1.0, 'about': 1.0, 'move': 1.0, 'come': 2.0, 'continue': 1.0, 'considering': 1.0, 'its': 1.0, 'only': 1.0, 'uncovered': 1.0, 'to': 7.0, 'doesn': 1.0, 'was': 1.0, 'pillowcase': 1.0, 'also': 1.0, 'seems': 1.0, 'twin': 1.0, 'stretched': 1.0, 'nice': 1.0, 'feel': 1.0, 'use': 3.0, 'that': 3.0, 'comforter': 4.0, 'jealous': 1.0, 'little': 2.0, 's': 1.0, 'we': 2.0, 'a': 5.0, 't': 3.0, 'the': 7.0, 'most': 1.0, 'can': 3.0, 'tight': 1.0, 'my': 3.0, 'are': 1.0, 'at': 1.0, 'how': 1.0, 'this': 1.0, 'soft': 1.0, 'larger': 1.0, 'surprised': 1.0, 'toddler': 3.0, 'sheets': 2.0, 'i': 5.0, 'be': 1.0, 'over': 1.0, 'up': 1.0, 'don': 2.0, 'sideways': 1.0, 'bed': 2.0, 'still': 1.0, 'standard': 1.0, 'maybe': 1.0, 'than': 1.0, 'find': 1.0, 'rail': 1.0, 'soon': 1.0, 'tuck': 2.0, 'and': 4.0, 'horizontally': 1.0, 'comforters': 2.0, 'time': 1.0, 'so': 4.0, 'them': 1.0, 'favorite': 1.0, 'longer': 1.0, 'bottom': 1.0, 'both': 1.0, 'sides': 2.0, 'in': 2.0, 'turn': 1.0, 'regular': 1.0}
Word element => {'one': 1.0, 'ways': 1.0, 'win': 1.0, 'lucky': 1.0, 'very': 1.0, 'feel': 1.0, 'listed': 1.0, 'than': 2.0, 'less': 1.0, '20': 1.0, 'today': 1.0, 'about': 2.0, 'purchased': 1.0, 'item': 1.0, 'happier': 1.0, 'be': 1.0, 'couldn': 1.0, 'fabric': 1.0, 'impressed': 1.0, 'with': 3.0, 'certain': 1.0, 'so': 3.0, 'more': 1.0, 'cuddle': 1.0, 'is': 3.0, 'how': 1.0, 'he': 1.0, 'soft': 1.0, 'this': 3.0, 'picked': 1.0, 'month': 1.0, 'it': 3.0, 'bed': 2.0, 'love': 1.0, 'for': 1.0, 'at': 1.0, 'since': 1.0, 'his': 2.0, 'anyway': 1.0, 'preparing': 1.0, 'were': 1.0, 'comforter': 1.0, 'out': 1.0, 'set': 2.0, 'of': 1.0, 'price': 1.0, 'm': 1.0, '34': 4.0, 'toddler': 2.0, 'blankets': 1.0, 'but': 1.0, 'was': 1.0, 'doesn': 1.0, 'crib': 1.0, 'i': 4.0, 'when': 1.0, 'new': 1.0, 'have': 1.0, 'and': 3.0, 'me': 1.0, 'that': 1.0, 'loves': 1.0, 'to': 5.0, 'sleep': 2.0, 'in': 2.0, 'tory': 1.0, 'the': 3.0, 'convert': 1.0, 'my': 2.0, 'lightweight': 1.0, 's': 1.0, 'ago': 1.0, 'a': 3.0, 'we': 1.0, 'bedding': 1.0, 'proud': 1.0, 't': 2.0, 'bother': 1.0, 'son': 1.0, 'toy': 1.0, 'has': 1.0}
Word element => {'vibrant': 1.0, 'such': 1.0, 'and': 1.0, 'christmas': 1.0, 'this': 1.0, 'meets': 1.0, 'granddaughter': 1.0, 'old': 1.0, '3': 1.0, 'went': 1.0, 'my': 1.0, 'crazy': 1.0, 'she': 2.0, 'year': 1.0, 'tells': 1.0, 'morning': 1.0, 'everybody': 1.0, 'colors': 1.0, 'toy': 1.0, 'about': 1.0, 'her': 1.0, 'on': 1.0, 'story': 1.0, 'for': 1.0, 'bed': 1.0, 'excellent': 1.0, 'quality': 1.0}
Word element => {'adorable': 1.0, 'it': 1.0, 'i': 2.0, 'old': 1.0, 'bottom': 1.0, 'of': 1.0, 'movie': 2.0, 'sheet': 1.0, 'them': 1.0, 'ha': 2.0, 'characters': 1.0, 'same': 1.0, 'few': 1.0, 'slightly': 1.0, 'they': 1.0, 'was': 2.0, 'alive': 1.0, 'the': 5.0, 'my': 1.0, 'year': 1.0, 'big': 1.0, '2': 1.0, 'but': 3.0, 'loved': 1.0, 'this': 2.0, 'he': 3.0, 'come': 1.0, 'with': 1.0, 'loves': 2.0, 'on': 2.0, 'think': 1.0, 'still': 1.0, 'held': 1.0, 'although': 1.0, 'thought': 1.0, 'would': 1.0, 'like': 1.0, 'true': 1.0, 'buzz': 1.0, 'lightyear': 1.0, 'in': 1.0, 'afraid': 1.0, 'for': 1.0, 'pillow': 1.0, 'within': 1.0, 'bedding': 1.0, 'a': 1.0, 'days': 1.0, 'fine': 1.0}
Word element => {'gift': 1.0, 'too': 1.0, 'but': 1.0, 'sleep': 1.0, 'weight': 1.0, 'and': 1.0, 'that': 1.0, 'comforter': 1.0, 'a': 1.0, 'sheets': 1.0, 'light': 1.0, 'is': 1.0, 'very': 1.0, 'son': 1.0, 'christmas': 1.0, 'with': 1.0, 'are': 1.0, 'great': 1.0, 'the': 2.0, 'my': 1.0, 'works': 1.0, 'because': 1.0, 'fuzzy': 1.0, 'likes': 1.0, 'to': 1.0, 'thin': 1.0, 'blanket': 1.0}
Word element => {'fantastic': 1.0, 'and': 1.0, 'double': 1.0, 'bed': 1.0, 'to': 2.0, 'was': 1.0, 'than': 1.0, 'before': 1.0, 'used': 1.0, 'even': 1.0, 'i': 1.0, 'sided': 1.0, 'toddler': 1.0, 'quality': 1.0, 'better': 1.0, 'the': 2.0, 'my': 1.0, 'change': 1.0, 'is': 3.0, 'set': 2.0, 'bedding': 2.0, 'moving': 1.0, 'this': 1.0, 'wonderful': 1.0, 'so': 1.0, 'soft': 1.0, 'entire': 1.0, 'which': 1.0, 'crib': 1.0, 'bright': 1.0, 'a': 2.0, 'son': 1.0, 'from': 1.0, 'expected': 1.0, 'stiff': 1.0}
Word element => {'out': 1.0, 'get': 1.0, 'refused': 1.0, 'in': 1.0, 'loves': 1.0, 'into': 2.0, 'was': 1.0, 'now': 1.0, 'wanted': 1.0, 'colorful': 1.0, 'it': 1.0, 'he': 1.0, 'decided': 1.0, 'his': 4.0, 'year': 1.0, 'very': 2.0, 'son': 1.0, 'when': 2.0, 'convert': 1.0, 'my': 3.0, 'crib': 1.0, 'about': 1.0, 'toy': 3.0, 'story': 3.0, 'to': 3.0, 'all': 1.0, 'old': 1.0, 'i': 1.0, 'right': 2.0, 'time': 1.0, '2': 1.0, 'the': 2.0, 'is': 2.0, 'bed': 2.0, 'find': 1.0, 'cute': 1.0, 'themed': 1.0, 'a': 2.0, 'we': 1.0, 'bedding': 3.0, 'set': 1.0, 'and': 4.0, 'toddler': 2.0, 'sheets': 1.0, 'this': 1.0, 'soft': 1.0, 'walked': 1.0, 'room': 1.0, 'saw': 1.0, 'super': 1.0, 'new': 2.0, 'jumped': 1.0}
Word element => {'some': 1.0, '50': 1.0, 'thing': 1.0, 'same': 1.0, 'exact': 1.0, 'a': 3.0, 'local': 1.0, 'fitted': 1.0, 'for': 1.0, 'fit': 1.0, 'good': 1.0, 'bed': 4.0, 'comfortable': 1.0, 'set': 2.0, 'of': 1.0, 'toddlers': 1.0, 'is': 2.0, 'it': 1.0, 'looks': 1.0, 'the': 6.0, 'fleece': 1.0, 'cute': 1.0, 'this': 2.0, 'soft': 2.0, 'i': 1.0, 'pillow': 2.0, 'comforter': 1.0, 'and': 5.0, 'my': 2.0, 'so': 2.0, 'sheet': 2.0, 'smaller': 1.0, 'dollars': 1.0, 'end': 1.0, 'son': 1.0, 'match': 1.0, 'all': 2.0, 'as': 1.0, 'to': 2.0, 'had': 1.0, 'blanket': 1.0, 'bought': 1.0, 'hang': 1.0, 'over': 1.0, 'story': 1.0, 'has': 1.0, 'toy': 1.0, 'price': 1.0, 'his': 1.0, 'room': 1.0, 'amazing': 1.0, 'walmart': 1.0, 'in': 1.0, 'unbeatable': 1.0}
Word element => {'very': 1.0, 'thin': 1.0, 'a': 1.0, 'it': 1.0, 'was': 1.0, 'thicker': 1.0, 'blanket': 1.0, 'the': 1.0, 'my': 1.0, 'is': 1.0, '2': 1.0, 'bed': 1.0, 'set': 1.0, 'old': 1.0, 'this': 1.0, 'loves': 1.0, 'comforter': 1.0, 'i': 1.0, 'just': 1.0, 'year': 1.0, 'wish': 1.0}
Word element => {'nicely': 1.0, 'complain': 1.0, 'of': 1.0, 'its': 2.0, 'now': 1.0, 'to': 1.0, 'm': 1.0, 'not': 2.0, 'by': 1.0, 'just': 1.0, 'impressed': 1.0, 'too': 1.0, 'and': 2.0, 'comforter': 1.0, 'forever': 1.0, 'that': 1.0, 'i': 4.0, 'guess': 1.0, 'so': 1.0, 'sheet': 1.0, 'made': 1.0, 'cute': 1.0, 'however': 1.0, 'bright': 1.0, 'quality': 1.0, 'can': 1.0, 'but': 1.0, 'the': 2.0, 'a': 1.0, 't': 2.0, 'my': 2.0, 'washes': 1.0, 'son': 2.0, 'very': 1.0, 'ok': 1.0, 'colorful': 1.0, 'it': 3.0, 'since': 1.0, 'lot': 1.0, 'cheaply': 1.0, 'likes': 1.0, 'won': 1.0, 'be': 1.0, 'cheap': 1.0, 'for': 1.0, 'super': 1.0, 'would': 1.0, 'using': 1.0, 'like': 1.0, 'feel': 1.0, 'then': 1.0, 'other': 1.0}
Word element => {'3': 1.0, 'size': 2.0, 'better': 1.0, 'be': 1.0, 'about': 1.0, 'price': 1.0, 'could': 1.0, 'foam': 1.0, 'memory': 1.0, 'to': 1.0, 'came': 1.0, 'what': 1.0, 'the': 3.0, 'more': 1.0, 'small': 1.0, 'little': 1.0, 'much': 1.0, 'expected': 1.0, 'it': 5.0, 'i': 2.0, 'a': 3.0, '30': 1.0, 'than': 1.0, 'not': 1.0, 'just': 1.0, 'for': 3.0, 'is': 3.0, 'ring': 1.0, 'very': 1.0, 'and': 1.0, 'binder': 1.0, 'of': 1.0, 'there': 1.0, 'understand': 1.0, 's': 2.0, 'designed': 1.0, 'but': 2.0, 'toddler': 1.0}
Word element => {'head': 1.0, 'in': 1.0, 'hits': 1.0, 'put': 1.0, 'sigh': 1.0, 'of': 1.0, 'loves': 1.0, 'because': 1.0, 'know': 1.0, 'and': 2.0, 'so': 1.0, 'her': 2.0, 'whose': 1.0, 'recommended': 1.0, 'great': 1.0, 'the': 3.0, 'is': 1.0, 'glad': 1.0, 'well': 1.0, 'a': 1.0, 'friend': 1.0, 'same': 1.0, 'she': 3.0, 'sleeps': 1.0, 'when': 1.0, 'by': 1.0, 'daughter': 1.0, 'was': 1.0, 'age': 1.0, 'big': 1.0, 'as': 1.0, 'bed': 1.0, 'mine': 1.0, 'i': 4.0, 'makes': 1.0, 'boy': 1.0, 'am': 1.0, 'product': 1.0, 'pillow': 2.0, 'bought': 1.0, 'with': 1.0, 'this': 1.0, 'it': 3.0}
Word element => {'finish': 1.0, 'fast': 1.0, 'as': 2.0, 'baby': 2.0, 'they': 1.0, 'your': 1.0, 'bottle': 2.0, 'if': 1.0, 'still': 1.0, 'option': 1.0, 'having': 1.0, 'is': 1.0, 'sleep': 1.0, 'good': 1.0, 'to': 1.0, 'asleep': 1.0, 'a': 2.0, 's': 2.0, 'sometimes': 1.0, 'hard': 1.0, 'it': 3.0, 'before': 1.0, 'the': 3.0, 'night': 1.0, 'apply': 1.0, 'when': 1.0, 'gets': 1.0}
Word element => {'area': 1.0, 'on': 2.0, 'pacifier': 1.0, 'a': 2.0, 'using': 1.0, 're': 1.0, 'go': 1.0, 'great': 1.0, 'the': 2.0, 'own': 1.0, 'baby': 1.0, 'his': 1.0, 'it': 1.0, 'stopped': 1.0, 'he': 1.0, 'idea': 1.0, 'when': 1.0, 'public': 1.0, 'your': 1.0, 's': 1.0, 'you': 1.0, 'drops': 1.0, 'and': 1.0, 'something': 1.0, 'in': 1.0}
Word element => {'pretty': 1.0, 'so': 1.0, 'is': 1.0, 'and': 1.0, 'easily': 1.0, 'curtain': 1.0, 'topper': 1.0, 'in': 1.0, 'colors': 1.0, 'the': 3.0, 'are': 1.0, 'this': 1.0, 'with': 1.0, 'hangs': 1.0, 'we': 1.0, 'pleased': 1.0, 'i': 1.0, 'am': 1.0, 'being': 1.0, 'much': 1.0, 'to': 1.0, 'very': 1.0, 'way': 1.0, 'll': 1.0, 'be': 1.0, 'supposed': 1.0, 'they': 1.0, 'not': 1.0, 'washed': 1.0, 'out': 1.0}
Word element => {'decor': 1.0, 'our': 1.0, 'perfect': 1.0, 'a': 1.0, 'great': 1.0, 'this': 1.0, 'window': 1.0, 'print': 1.0, 'dressing': 1.0, 'to': 1.0, 'adorable': 1.0, 'zebra': 1.0, 'is': 2.0, 'the': 2.0, 'are': 1.0, 'addition': 1.0, 'bold': 1.0, 'colors': 1.0, 'vibrant': 1.0, 'quality': 1.0, 'and': 2.0}
Word element => {'cor': 1.0, 'eacute': 1.0, 'd': 1.0, 'room': 1.0, 'nice': 1.0, 'and': 1.0, 'money': 1.0, 'for': 1.0, 'buy': 1.0, 'good': 1.0, 'accent': 1.0, 'fun': 1.0, 'queen': 1.0, 's': 1.0, 'jungle': 1.0, 'on': 1.0, 'a': 1.0, 'well': 1.0, 'rod': 1.0, 'cute': 1.0, 'the': 5.0, 'comforter': 1.0, 'that': 1.0, 'accessory': 1.0, 'set': 1.0, 'is': 1.0, 'valance': 1.0, 'very': 1.0, 'easy': 1.0, 'to': 2.0, 'ties': 1.0, 'goes': 1.0, 'hang': 1.0, 'little': 1.0, 'with': 1.0, 'it': 1.0, 'trim': 1.0, 'fur': 1.0}
Word element => {'that': 1.0, 'seen': 1.0, 'be': 1.0, 'thing': 1.0, 'together': 1.0, 'went': 1.0, 'my': 1.0, 'it': 4.0, 'only': 1.0, 'this': 1.0, 'nicely': 1.0, 'the': 7.0, 'behind': 1.0, 'room': 1.0, 'i': 3.0, 'her': 1.0, 'bought': 1.0, 'item': 2.0, 'match': 1.0, 'to': 3.0, 'was': 3.0, 'fine': 1.0, 'look': 1.0, 'set': 1.0, 'of': 1.0, 'child': 1.0, 'up': 1.0, 'black': 2.0, 't': 2.0, 'bedding': 1.0, 's': 1.0, 'a': 1.0, 'curtain': 1.0, 'and': 2.0, 'tucked': 1.0, 'ties': 1.0, 'at': 1.0, 'difficult': 1.0, 'top': 1.0, 'create': 1.0, 'they': 1.0, 'on': 1.0, 'wouldn': 1.0, 'didn': 1.0, 'picture': 1.0, 'so': 2.0, 'ended': 1.0, 'like': 1.0, 'using': 1.0, 'other': 1.0, 'strings': 1.0, 'than': 1.0, 'standard': 1.0, 'rod': 1.0}
Word element => {'a': 1.0, 'her': 1.0, 'look': 1.0, 'complete': 1.0, 'gives': 1.0, 'exactly': 1.0, 'what': 1.0, 'looks': 1.0, 'daughters': 1.0, 'i': 2.0, 'wanted': 1.0, 'this': 1.0, 'think': 1.0, 'windows': 1.0, 'it': 1.0, 'great': 1.0, 'my': 1.0, 'room': 1.0, 'on': 1.0}
Word element => {'heal': 1.0, 'high': 1.0, 'my': 1.0, 'the': 2.0, 'more': 1.0, 'small': 1.0, 'chair': 1.0, 'shoe': 1.0, 'has': 1.0, 'lamp': 1.0, 'finishing': 1.0, 'touch': 1.0, 'old': 1.0, 'lava': 1.0, '14year': 1.0, 'comforter': 1.0, 'and': 1.0, 'but': 1.0, 'it': 1.0, 'this': 1.0, 'accessory': 1.0, 'adds': 1.0, 'love': 1.0, 'we': 1.0}
Word element => {'she': 1.0, 'and': 1.0, 'room': 1.0, 's': 1.0, 'daughter': 1.0, 'in': 1.0, 'hanging': 1.0, 'overall': 1.0, 'washer': 1.0, 'them': 1.0, 'cordination': 1.0, 'what': 1.0, 'pleased': 2.0, 'my': 1.0, 'color': 1.0, 'is': 1.0, 'looks': 1.0, 'valance': 1.0, 'seams': 1.0, 'the': 4.0, 'it': 1.0, 'with': 1.0, 'was': 3.0, 'very': 3.0, 'just': 1.0, 'know': 1.0, 'i': 4.0, 'looking': 1.0, 'how': 1.0, 'for': 1.0, 'pretty': 1.0, 'into': 1.0, 'good': 3.0, 'will': 1.0, 'placed': 1.0, 'once': 1.0, 'fabric': 1.0, 'have': 1.0}
Word element => {'item': 1.0, 'this': 1.0, 'recommend': 1.0, 'highly': 1.0, 'very': 1.0, 'child': 1.0, 'our': 1.0, 'taken': 1.0, 've': 1.0, 'came': 1.0, 'paper': 1.0, 'his': 1.0, 'well': 1.0, 'monthly': 1.0, 'use': 2.0, 'i': 5.0, 'next': 1.0, 'that': 4.0, 'now': 1.0, 'pattern': 1.0, 'and': 2.0, 'they': 3.0, 'months': 2.0, 'for': 3.0, 'once': 1.0, 'of': 1.0, 'photos': 1.0, 'stay': 1.0, 'are': 3.0, 'the': 4.0, 'short': 1.0, 'period': 1.0, 'bight': 1.0, 'first': 1.0, 'colorful': 1.0, 'it': 1.0, 'unisex': 1.0, 'big': 1.0, 'tat': 1.0, 'son': 1.0, 'at': 1.0, 'on': 3.0, 'put': 1.0, 'back': 1.0, 'a': 3.0, 's': 2.0, 'so': 1.0, 'time': 1.0, 'bit': 2.0, 'simply': 1.0, 'them': 3.0, 'baby': 1.0, 'sticky': 1.0, 'because': 1.0, 'is': 2.0, 'hopefully': 1.0, 'my': 1.0, 'can': 1.0, 'but': 1.0, 'four': 1.0, 'stickers': 2.0, 'small': 1.0, 'have': 1.0, 'looking': 1.0, 'better': 1.0, 'photo': 1.0, 'enough': 1.0}
Word element => {'mothers': 1.0, 'cute': 1.0, 'month': 1.0, 'stickers': 1.0, 'future': 1.0, 'and': 1.0, 'pic': 1.0, 'each': 2.0, 'a': 1.0, 'made': 1.0, 'there': 1.0, 'this': 1.0, 'they': 1.0, 'great': 1.0, 'these': 1.0, 'served': 1.0, 'was': 1.0, 'purpose': 1.0, 'buy': 1.0, 'i': 1.0, 'will': 1.0, 'definitely': 1.0, 'recommend': 1.0, 'for': 1.0}
Word element => {'recommend': 1.0, 'would': 1.0, 'sticker': 1.0, 'is': 1.0, 'and': 1.0, 'very': 1.0, 'allowing': 1.0, 'adhesive': 1.0, 'cute': 1.0, 'stickers': 1.0, 'they': 1.0, 'these': 1.0, 'the': 2.0, 'are': 1.0, 'i': 2.0, 'strong': 1.0, 'enough': 1.0, 'love': 1.0, 'one': 1.0, 'for': 1.0, 'needs': 1.0, 'in': 1.0, 'reuse': 1.0, 'case': 1.0, 'to': 1.0, 'reposition': 1.0}
Word element => {'worked': 1.0, 'super': 1.0, 'are': 1.0, 'i': 2.0, 'old': 1.0, 'a': 1.0, 'these': 1.0, 'they': 1.0, 'great': 1.0, '9': 1.0, 'month': 1.0, 'and': 2.0, 'have': 3.0, 'loved': 1.0, 'cute': 1.0, 'stickers': 1.0}
Word element => {'recommend': 1.0, 'white': 1.0, 'bright': 1.0, 'pop': 1.0, 'against': 1.0, 'boy': 1.0, 'time': 1.0, 'they': 2.0, 'baby': 1.0, 'new': 1.0, 'my': 1.0, 'use': 1.0, 'order': 1.0, 'to': 2.0, 'had': 1.0, 'look': 1.0, 'now': 1.0, 'decision': 1.0, 'i': 2.0, 'making': 1.0, 'just': 1.0, 'absolutely': 1.0, 'love': 1.0, 'for': 1.0, 'a': 3.0, 'these': 2.0, 'the': 2.0, 'highly': 1.0, 'amazing': 1.0, 'truly': 1.0, 'month': 1.0, 'simple': 1.0, 'which': 1.0, 'very': 1.0, 'design': 1.0, 'sleeved': 1.0, 'tough': 1.0, 'and': 5.0, '1': 1.0, 'looked': 1.0, '2': 1.0, 'but': 1.0, 'on': 1.0, 'put': 1.0, 'stylish': 1.0, 'in': 2.0, 'photos': 1.0, 'onesie': 1.0, 'stickers': 2.0, 'have': 1.0, 'used': 1.0, 'long': 1.0, 'him': 1.0}
Word element => {'it': 1.0, 'recommend': 1.0, 'highly': 1.0, 'baby': 1.0, 'my': 1.0, 's': 1.0, 'chronicle': 1.0, 'this': 1.0, 'item': 1.0, 'help': 1.0, 'would': 1.0, 'was': 2.0, 'what': 1.0, 'looking': 1.0, 'first': 1.0, 'exactly': 1.0, 'to': 1.0, 'i': 1.0, 'year': 1.0, 'for': 1.0, 'me': 1.0}
Word element => {'gift': 1.0, 'and': 1.0, 'anyone': 1.0, 'i': 2.0, 'your': 1.0, 'when': 1.0, 'to': 3.0, 'any': 1.0, 'age': 1.0, 'baby': 1.0, 'great': 1.0, 'take': 1.0, 'month': 1.0, 'can': 1.0, 'as': 1.0, 'stick': 1.0, 'a': 2.0, 'outfit': 1.0, 'is': 1.0, 'on': 1.0, 'shower': 1.0, 'it': 3.0, 'this': 2.0, 's': 2.0, 'way': 1.0, 'you': 2.0, 'would': 2.0, 'pictures': 1.0, 'recommend': 1.0, 'record': 1.0, 'easy': 1.0, 'purchase': 1.0, 'every': 1.0, 'use': 1.0}
Word element => {'he': 1.0, 'of': 1.0, 'day': 1.0, 'white': 1.0, 'them': 1.0, 'we': 1.0, 'each': 1.0, 'picture': 1.0, 'his': 2.0, 'put': 1.0, 'track': 1.0, 'was': 1.0, 'to': 2.0, 'way': 2.0, 'onsies': 1.0, 'a': 3.0, 'awful': 1.0, 'fun': 1.0, 'two': 1.0, 'i': 1.0, 'im': 1.0, 'feel': 1.0, 'born': 1.0, 'have': 1.0, 'number': 1.0, 'and': 3.0, 'don': 1.0, 'baby': 1.0, 'been': 1.0, 'on': 3.0, 'time': 1.0, 'month': 2.0, 'take': 3.0, 'second': 1.0, 'nearly': 1.0, 'great': 1.0, 't': 1.0, 'these': 1.0, 'the': 3.0, 'pictures': 1.0, 'growth': 1.0, 'enough': 1.0, 'around': 1.0}
Word element => {'having': 1.0, 'out': 1.0, 't': 1.0, 'we': 2.0, 'gender': 1.0, 'neutral': 1.0, 'since': 1.0, 'and': 1.0, 'haven': 1.0, 'shipping': 1.0, 'for': 1.0, 'creatures': 1.0, 'was': 2.0, 'just': 1.0, 'what': 2.0, 'cute': 1.0, 'quick': 1.0, 'looking': 1.0, 'found': 1.0, 'i': 1.0, 'are': 2.0, 'the': 1.0, 'sea': 1.0}
Word element => {'buy': 1.0, 'plenty': 1.0, 'every': 1.0, 'not': 1.0, 'me': 1.0, 'like': 1.0, 'are': 2.0, 'that': 2.0, 'were': 2.0, 'a': 1.0, 'was': 1.0, 'do': 1.0, 'its': 1.0, 'choose': 1.0, 'find': 1.0, 'there': 1.0, 'mean': 1.0, 'the': 7.0, 'others': 1.0, 'these': 2.0, '2': 1.0, 'is': 5.0, 'up': 1.0, 'sticker': 1.0, 'of': 2.0, '34': 2.0, '6': 1.0, 'quality': 1.0, '12': 2.0, 'months': 1.0, 'mess': 1.0, '4': 2.0, 'i': 2.0, 'out': 1.0, 'stickers': 1.0, 'month': 8.0, 'different': 1.0, 'good': 1.0, 'monster': 1.0, 'from': 1.0, 'hard': 1.0, 'designs': 2.0, 'used': 1.0, 'even': 1.0, 'upset': 1.0, 'fro': 1.0, '8': 1.0, '1': 1.0, 'and': 5.0, 'to': 3.0, 'all': 1.0, 'as': 4.0, 'you': 1.0, '11': 1.0, '5': 1.0, '9': 1.0, 'want': 1.0, 'if': 1.0, 'same': 6.0, '10': 1.0, '3': 1.0, '7': 1.0, 'colors': 1.0}
Word element => {'computer': 1.0, 'on': 1.0, 'observed': 1.0, 'than': 1.0, 'color': 1.0, 'slightly': 1.0, 'purpose': 1.0, 'serves': 1.0, 'that': 1.0, 'product': 1.0, 'great': 1.0, 'this': 1.0, 'is': 1.0, 'more': 1.0, 'these': 1.0, 'the': 3.0, 'in': 2.0, 'stood': 1.0, 'photograph': 1.0, 'of': 1.0, 'blue': 2.0, 'monitor': 1.0, 'very': 1.0, 'not': 1.0, 'are': 3.0, 'again': 1.0, 'red': 1.0, 'pink': 1.0, 'with': 1.0, 'it': 2.0, 'well': 2.0, 'they': 3.0, 'much': 1.0, 'do': 1.0, 'dark': 1.0, 'cute': 1.0, 'print': 1.0, 'their': 1.0, 'design': 2.0, 'and': 5.0, 'green': 1.0, 'purple': 1.0, 'i': 3.0, 'if': 1.0, 'what': 1.0, 'animal': 1.0, 'had': 1.0, 'over': 2.0, 'my': 1.0, 'may': 1.0, 'stickers': 2.0, 'have': 1.0, 'to': 2.0, 'all': 1.0, 'chosen': 1.0, 'different': 2.0, 'light': 1.0, 'large': 1.0, 'made': 1.0, 'out': 1.0, 'stuck': 1.0, 'baby': 1.0, 'a': 5.0, 's': 1.0, 'shirt': 1.0}
Word element => {'any': 1.0, 'for': 1.0, 'real': 1.0, 'unfastened': 1.0, 'have': 4.0, 'must': 1.0, 'they': 3.0, 'tugs': 2.0, 'pulls': 1.0, 'love': 1.0, 'he': 5.0, 'velcro': 1.0, 'not': 1.0, 'attracts': 1.0, 'strong': 1.0, 'swing': 1.0, 'stroller': 1.0, 'catch': 1.0, 'come': 1.0, 'coordination': 1.0, 'my': 3.0, 'definite': 1.0, 'hey': 1.0, 'y': 1.0, 'more': 1.0, 'is': 2.0, 'these': 2.0, 'bug': 1.0, 'when': 2.0, 'amuse': 1.0, '11': 1.0, 'gets': 1.0, 'seem': 1.0, 'still': 1.0, 'toys': 1.0, 'play': 1.0, 'attach': 1.0, 'because': 2.0, 'that': 1.0, 'been': 1.0, 'a': 4.0, 'then': 1.0, 'gym': 1.0, 'we': 1.0, 'going': 1.0, 'the': 7.0, 'of': 2.0, 'attention': 1.0, 'them': 3.0, 'baby': 3.0, 'flailing': 1.0, 'carseat': 1.0, 'on': 1.0, 'long': 1.0, 'around': 2.0, 'his': 6.0, 'can': 1.0, 'but': 1.0, 'to': 4.0, 'i': 3.0, 'feet': 2.0, 'attached': 1.0, 'now': 2.0, 'body': 1.0, 'birds': 1.0, 'make': 1.0, 'sound': 1.0, 'chime': 1.0, 'help': 1.0, 'by': 1.0, 'weeks': 2.0, 'ribbon': 2.0, 'and': 7.0, 'arms': 1.0, 'mouth': 2.0, 'fingers': 1.0, 'naturally': 1.0, 'closes': 1.0, 'since': 1.0, 'straps': 1.0, 'hand': 3.0, 'something': 1.0, 'in': 1.0, 'toy': 1.0, 'eye': 1.0, 'thes': 1.0, 'really': 1.0, 'with': 1.0, 'him': 1.0, 'reason': 1.0, 'puffy': 1.0, 'using': 1.0, 'realizes': 1.0, 'forever': 1.0, 'was': 1.0, 'favorite': 1.0, '7': 1.0, 'old': 2.0, 'are': 1.0}
Word element => {'depending': 1.0, 'size': 1.0, 'adjust': 1.0, 'you': 2.0, 'sound': 1.0, 'was': 1.0, 'wrapping': 1.0, 'are': 1.0, 'strap': 1.0, 'bell': 1.0, 'items': 2.0, 'so': 1.0, 'have': 1.0, 'birds': 1.0, 'that': 1.0, 'got': 1.0, 'it': 2.0, 'velcro': 1.0, 'these': 1.0, 'love': 2.0, 'for': 2.0, 'pictured': 1.0, 'exact': 1.0, 'larger': 1.0, 'on': 2.0, '3': 1.0, 'a': 3.0, 'great': 2.0, 'pulled': 1.0, 'to': 1.0, 'all': 1.0, 'as': 1.0, 'what': 3.0, 'down': 1.0, 'they': 1.0, 'the': 4.0, 'deal': 1.0, 'ringing': 2.0, 'caterpillar': 1.0, 'my': 1.0, 'price': 1.0, 'which': 1.0, 'is': 3.0, 'chime': 2.0, 'i': 1.0, 'looking': 1.0, 'can': 2.0, 'and': 2.0, 'be': 1.0, 'baby': 1.0, 'vibrates': 1.0, 'rather': 1.0, 'having': 1.0, 'than': 1.0}
Word element => {'amount': 1.0, 'the': 1.0, 'bought': 1.0, 'wouldnt': 1.0, '3': 1.0, 'not': 1.0, 'paid': 1.0, 'others': 1.0, 'have': 2.0, 'just': 1.0, 'package': 1.0, 'i': 2.0, 'stated': 1.0, 'one': 2.0, 'toy': 2.0, 'described': 1.0, 'as': 2.0, 'only': 1.0, 'comes': 1.0, 'for': 1.0, 'in': 1.0, 'a': 1.0}
Word element => {'will': 1.0, 'got': 1.0, 'hit': 1.0, 'all': 1.0, 'they': 1.0, 'these': 1.0, 'where': 1.0, 'get': 1.0, 'we': 1.0, 'at': 1.0, 'more': 1.0, 'are': 1.0, 'the': 1.0, 'my': 1.0, 'a': 1.0, 'boys': 1.0, 'big': 1.0, 'keep': 1.0, 'kids': 1.0, 'school': 1.0, 'asking': 1.0}
Word element => {'de': 2.0, 'con': 1.0, 'puede': 1.0, 'nadien': 1.0, 'pulgada': 1.0, 'pequeno': 1.0, 'muy': 1.0, 'toy': 1.0, 'small': 1.0, 'nobody': 1.0, 'can': 1.0, 'un': 1.0, 'w': 1.0, '5': 2.0, 'play': 1.0, 'this': 1.0, '1': 2.0, '34': 1.0, 'jugete': 1.0, 'jugar': 1.0, 'very': 1.0, 'inch': 1.0}
Word element => {'them': 1.0, 'will': 1.0, 'know': 1.0, 'cute': 1.0, 'they': 1.0, '3': 1.0, 'so': 1.0, 'everything': 1.0, 'each': 1.0, 'do': 1.0, 'and': 1.0, 'kids': 2.0, 'these': 2.0, 'of': 2.0, 'pack': 1.0, 'a': 1.0, 'my': 4.0, 'are': 2.0, 'bought': 1.0, 'older': 1.0, 'christmas': 1.0, 'copies': 1.0, 'i': 2.0, 'love': 1.0, 'for': 2.0, 'one': 1.0, 'things': 1.0, 'two': 1.0, 'w': 1.0, 'obsessed': 1.0, 'kendamas': 1.0, 'little': 1.0}
Word element => {'price': 1.0, 'will': 1.0, 'durable': 1.0, 'sure': 1.0, 'me': 1.0, 'those': 1.0, 'not': 1.0, 'with': 1.0, 'so': 1.0, 'bottle': 1.0, 'nice': 1.0, 's': 1.0, 'could': 1.0, 'a': 1.0, 'came': 1.0, 'work': 1.0, 'bt': 1.0, 'but': 1.0, 'set': 2.0, 'of': 2.0, 'later': 1.0, 'from': 1.0, 'enjoy': 1.0, 'weight': 1.0, 'exactly': 1.0, 'toys': 2.0, 'some': 1.0, 'bought': 1.0, 'll': 1.0, 'was': 2.0, 'old': 1.0, 'box': 1.0, 'fancy': 1.0, 'for': 4.0, 'all': 1.0, 'to': 2.0, 'grow': 1.0, '3': 1.0, 'obviously': 1.0, 'month': 1.0, 'it': 4.0, 'she': 2.0, 'the': 2.0, 'lightweight': 1.0, 'my': 1.0, 'have': 1.0, 'i': 1.0, '4': 1.0, 'them': 1.0, 'are': 2.0, 'basic': 1.0, 'perfect': 1.0, 'in': 2.0, 'shape': 2.0, 'play': 1.0, 'and': 1.0, 'hot': 1.0, 'half': 1.0, 'oldshool': 1.0, 'qualities': 1.0, 'good': 1.0, 'rattling': 2.0, 'her': 1.0, 'what': 1.0, 'more': 1.0, 'is': 1.0, 'buy': 1.0, 'definitely': 1.0, 'looking': 1.0, 'off': 1.0, 'enough': 1.0, 'rattles': 1.0, 'probably': 1.0, 'nothing': 1.0}
Word element => {'them': 1.0, 'loves': 1.0, 'baby': 1.0, 'small': 1.0, 'with': 1.0, 'picked': 1.0, 'and': 1.0, 'quality': 1.0, 'up': 1.0, 'very': 1.0, 'good': 2.0, 'toys': 1.0, 'for': 1.0, 'that': 1.0, 'hands': 1.0, '12': 1.0, 'be': 1.0, 'month': 1.0, 'can': 1.0, '6': 1.0, 'easily': 1.0}
Word element => {'but': 1.0, 're': 1.0, 'warm': 1.0, 'keeping': 1.0, 'baby': 1.0, 'saver': 1.0, 'life': 1.0, 'just': 1.0, 'by': 1.0, 'a': 2.0, 'then': 1.0, 'we': 4.0, 'bearable': 1.0, 't': 1.0, 's': 3.0, 'was': 1.0, 'area': 1.0, 'designed': 1.0, 'different': 1.0, 'four': 1.0, 'subway': 1.0, 'via': 1.0, 'perfectly': 1.0, 'countries': 1.0, 'are': 2.0, 'bus': 1.0, 'being': 3.0, 'it': 5.0, 'in': 3.0, 'for': 3.0, 'when': 1.0, 'every': 1.0, 'hood': 1.0, 'really': 1.0, 'each': 2.0, 'end': 1.0, 'traveled': 1.0, 'backpack': 1.0, 'through': 1.0, 'loved': 2.0, 'instead': 1.0, 'took': 1.0, 'also': 1.0, 'while': 1.0, 'traveling': 1.0, 'tram': 1.0, 'frontpack': 1.0, 'this': 1.0, 'perfect': 1.0, 'mesh': 2.0, 'about': 1.0, 'used': 3.0, 'kiddo': 1.0, 'of': 2.0, 'the': 12.0, 'made': 1.0, 'asleep': 2.0, 'overheating': 1.0, 'and': 4.0, 'trip': 1.0, '27': 1.0, 'months': 1.0, 'pounds': 1.0, 'day': 1.0, 'etc': 1.0, 'summer': 2.0, 'he': 6.0, 'constantly': 1.0, 'so': 1.0, 'time': 1.0, 'bit': 1.0, 'fall': 1.0, 'because': 1.0, 'that': 1.0, 'around': 2.0, 'europe': 1.0, 'his': 1.0, 'head': 1.0, 'keys': 1.0, 'wouldn': 1.0, 'with': 2.0, 'pockets': 1.0, 'train': 1.0, 'got': 1.0, 'loll': 1.0, 'two': 1.0, 'little': 1.0, 'cellphone': 1.0, 'now': 1.0, '2': 1.0, 'machine': 1.0, 'washable': 1.0, 'you': 2.0, 'able': 2.0, 'winter': 1.0, 'unzippable': 1.0, 'to': 3.0, 'other': 2.0, 'all': 1.0, 'is': 1.0, 'look': 1.0, 'fell': 1.0, 'during': 2.0, 'wanted': 1.0, 'whenever': 1.0, 'tours': 1.0, 'lots': 1.0, 'spoiled': 1.0, 'great': 1.0, 'better': 1.0}
Word element => {'great': 1.0, 'with': 1.0, 'other': 1.0, 'each': 1.0, 'impress': 1.0, 'trying': 1.0, 'both': 1.0, 'were': 1.0, 'same': 2.0, 'at': 1.0, 'husband': 1.0, 'attractive': 1.0, 'such': 1.0, 'summer': 1.0, 'on': 1.0, 'literally': 1.0, 'went': 1.0, 'when': 1.0, 'wasn': 1.0, 'baby': 1.0, 'mesh': 1.0, 'my': 2.0, 'but': 2.0, 'an': 2.0, 'was': 1.0, 'doesn': 1.0, 'too': 1.0, 'and': 2.0, 'day': 1.0, 'gotten': 1.0, 'like': 3.0, 'period': 1.0, 'is': 1.0, 'deal': 2.0, 'the': 3.0, 'desperately': 1.0, 'we': 2.0, 't': 2.0, 'a': 2.0, 'affordable': 1.0, 'bought': 1.0, 'one': 1.0, 'for': 2.0, 'love': 1.0, 'i': 4.0, 'back': 1.0, 'carrier': 1.0, 'needed': 1.0, 'arrive': 1.0, 'it': 6.0, 'she': 1.0, 'hike': 1.0, 'backpack': 1.0, 'do': 1.0, 'much': 1.0, 'hot': 1.0, 'has': 1.0, 'spread': 1.0, 'so': 2.0, 'time': 2.0, 'used': 1.0, 'good': 1.0, 'her': 1.0, 'any': 1.0, 'to': 3.0, 'still': 1.0, 'gets': 1.0, 'this': 3.0, 'cranky': 1.0, 'having': 1.0, 'also': 1.0, 'legs': 1.0, 'that': 2.0, 'of': 1.0, 'opening': 1.0}
Word element => {'to': 1.0, 'complicated': 1.0, 'it': 2.0, 't': 1.0, 'this': 1.0, 'that': 1.0, 'came': 1.0, 'many': 1.0, 'is': 1.0, 'with': 1.0, 'i': 1.0, 'directions': 1.0, 'and': 2.0, 'don': 1.0, 'snaps': 1.0, 'recommend': 1.0, 'really': 1.0, 'no': 1.0, 'has': 1.0, 'use': 1.0, 'straps': 1.0, 'so': 1.0}
Word element => {'find': 1.0, 'can': 1.0, 'that': 1.0, 'anything': 1.0, 'than': 1.0, 'better': 1.0, 'much': 1.0, 'is': 1.0, 'really': 1.0, 'boys': 1.0, 'signs': 1.0, 'you': 1.0, 'lasted': 1.0, 'shows': 1.0, 'has': 1.0, 'recommend': 1.0, 'at': 1.0, 'two': 1.0, 'no': 1.0, 'of': 1.0, 'on': 1.0, 'believe': 1.0, 'this': 1.0, 'it': 2.0, 'but': 1.0, 'quality': 1.0, 'highly': 1.0, 'through': 1.0, 'wear': 1.0, 'good': 1.0, 'or': 1.0, 'i': 1.0, 'walmart': 1.0, 'tear': 1.0, 'and': 2.0, 'couldn': 1.0, 'pricepoint': 1.0, 'great': 1.0, 't': 1.0, 'the': 1.0}
Word element => {'on': 1.0, 'out': 1.0, 'to': 2.0, 'put': 1.0, 'figure': 1.0, 'difficult': 1.0, 'how': 1.0, 'light': 1.0, 'and': 2.0, 'sturdy': 1.0, 'used': 1.0, 'we': 1.0, 'weeks': 1.0, 't': 1.0, 'this': 1.0, 'for': 2.0, 'four': 1.0, 'wasn': 1.0, 'the': 1.0, 'grandchild': 1.0, 'about': 1.0, 'it': 1.0, 'was': 1.0}
Word element => {'overall': 1.0, 'floor': 1.0, 'on': 1.0, 'thrown': 1.0, 'less': 1.0, 'i': 3.0, 'also': 2.0, 'in': 3.0, 'recommend': 1.0, 'resulting': 1.0, 'was': 2.0, 'good': 1.0, 'clean': 1.0, 'quite': 1.0, 'into': 1.0, 'very': 1.0, 'son': 1.0, 'and': 3.0, 'sons': 1.0, 'do': 1.0, 'done': 1.0, 'purchase': 1.0, 'my': 1.0, 'this': 3.0, 'it': 5.0, 'he': 1.0, 'eating': 1.0, 'the': 5.0, 'great': 1.0, 'is': 2.0, 'color': 1.0, 'tray': 2.0, 'easy': 1.0, 'instead': 1.0, 'sturdy': 1.0, 'purchased': 1.0, 'worried': 1.0, 'enjoyed': 1.0, 'started': 1.0, 'of': 1.0, 'never': 1.0, 'would': 2.0, 'about': 1.0, 'food': 1.0, 'bumbo': 1.0, 'removable': 1.0, 'safety': 1.0, 'when': 2.0, 'feed': 1.0, 'to': 1.0, 'seat': 2.0, 'our': 1.0, 'we': 4.0, 'a': 2.0, 'could': 1.0, 'take': 1.0, 'kitchen': 1.0}
Word element => {'helped': 1.0, 'back': 1.0, 'bought': 1.0, 'love': 1.0, 'product': 2.0, 'it': 5.0, 'this': 1.0, 'he': 2.0, 'grows': 1.0, 'with': 1.0, 'great': 1.0, 'the': 4.0, 'i': 5.0, 'about': 1.0, 'chose': 1.0, 'and': 3.0, 'because': 1.0, 'really': 1.0, 'my': 1.0, 'develop': 1.0, 'horror': 1.0, 'so': 1.0, 'stories': 1.0, 'structure': 1.0, 'loved': 1.0, 'bumbo': 2.0, 'sitting': 1.0, 'being': 1.0, 'in': 2.0, 'never': 1.0, 'him': 1.0, 'of': 2.0, 'once': 1.0, 'booster': 1.0, 'at': 1.0, 'did': 1.0, 'pleased': 1.0, 'tip': 1.0, 'proper': 1.0, 'over': 1.0, 'm': 1.0, 'best': 1.0, 'seat': 1.0, 'all': 1.0, 'into': 1.0, 'a': 1.0, 'like': 1.0, 'table': 1.0}
Word element => {'like': 1.0, 'handsy': 1.0, 'rambunctious': 1.0, 'back': 1.0, 'you': 2.0, 'when': 1.0, 'her': 1.0, 'should': 1.0, 'maybe': 1.0, 'off': 1.0, 'pulling': 1.0, 'old': 1.0, '6': 1.0, 'may': 1.0, 'my': 1.0, 'secured': 1.0, 'store': 1.0, 'was': 2.0, 'minutes': 1.0, 'doesn': 1.0, 'ended': 1.0, 'ton': 1.0, 'younger': 1.0, 'have': 2.0, 'snug': 1.0, 'i': 3.0, 'the': 8.0, 'got': 1.0, 'sits': 1.0, 'with': 1.0, 'this': 3.0, 'she': 2.0, 'month': 1.0, 'it': 3.0, 'reviews': 1.0, 'wanted': 1.0, 'sitting': 1.0, 'but': 3.0, 'bumbo': 1.0, 'of': 3.0, 'over': 1.0, 'up': 1.0, 'for': 1.0, 'love': 1.0, 'read': 1.0, '5': 1.0, 'going': 1.0, 'we': 1.0, 't': 1.0, 'go': 1.0, 'a': 2.0, 'really': 3.0, 'decided': 1.0, 'tray': 2.0, 'is': 2.0, 'me': 1.0, 'not': 1.0, 'just': 1.0, 'want': 1.0, 'if': 1.0, 'being': 1.0, 'disappointed': 1.0, 'in': 3.0, 'at': 2.0, 'rethink': 1.0, 'and': 1.0, 'clicks': 1.0, 'kid': 1.0, 'sort': 1.0, 'sides': 1.0, 'to': 4.0, 'seat': 3.0, 'all': 1.0, 'center': 1.0, 'part': 1.0, 'together': 1.0, 'within': 1.0, 'click': 1.0}
Word element => {'appearance': 1.0, 'like': 1.0, 'give': 1.0, 'black': 1.0, 'white': 1.0, 'is': 1.0, 'sleeker': 1.0, 'only': 1.0, 'very': 1.0, 'hours': 1.0, 'll': 1.0, 'that': 2.0, 'piping': 1.0, 'anywhere': 1.0, 'on': 1.0, 'guy': 1.0, 'wasn': 1.0, 'needed': 1.0, 'back': 1.0, 'carrier': 1.0, 'just': 2.0, 'by': 1.0, 'bag': 2.0, 'inexplicably': 1.0, 'able': 1.0, 'ventured': 1.0, 'of': 2.0, 'the': 8.0, 'wish': 1.0, 'myself': 1.0, 'diaper': 1.0, 'heavy': 1.0, 'about': 1.0, 'gone': 1.0, 'saved': 1.0, 'carry': 2.0, 'to': 9.0, 'all': 2.0, 'have': 1.0, 'it': 5.0, 'few': 2.0, 'this': 2.0, 'found': 1.0, 'get': 1.0, 'be': 2.0, 'trying': 1.0, 'multiple': 1.0, 'birth': 1.0, 'way': 1.0, 'friends': 1.0, 'm': 1.0, 'house': 2.0, 'would': 1.0, 'bulky': 1.0, 'weeks': 1.0, 'after': 1.0, 'telling': 1.0, 'been': 1.0, 'too': 1.0, 'one': 1.0, 'happy': 1.0, 'time': 1.0, 'new': 1.0, 'mommy': 1.0, 'baby': 1.0, 'they': 1.0, 'want': 1.0, 'i': 7.0, 'tweaked': 1.0, 'wipes': 1.0, 'own': 1.0, 'but': 1.0, 'so': 1.0, 'can': 1.0, 'pleased': 1.0, 'change': 1.0, 'was': 2.0, 'store': 1.0, 'changing': 1.0, 'much': 1.0, 'going': 1.0, 'a': 5.0, 'giving': 1.0, 's': 1.0, 'we': 2.0, 'take': 1.0, 'trips': 1.0, 'ferry': 1.0, 'and': 3.0, 'trip': 1.0, 'doctor': 1.0, 'from': 1.0, 'car': 1.0, 'every': 1.0, 'two': 1.0, 'little': 2.0, 'nitpick': 1.0, 'fella': 1.0, 'day': 1.0, 'rest': 1.0, 't': 1.0, 'fit': 1.0, 'for': 4.0, 'disposal': 1.0, 'out': 2.0, 'wardrobe': 1.0, 'essentials': 1.0, 'diapers': 1.0, 'baggies': 1.0, 'items': 1.0, 'my': 6.0, 'me': 1.0, 'keys': 1.0, 'phone': 1.0, 'wallet': 1.0, 'great': 1.0, 'or': 1.0}
Word element => {'separately': 1.0, 'something': 1.0, 'on': 1.0, 'errands': 1.0, 'big': 3.0, 'while': 1.0, 'doing': 1.0, 'wallet': 1.0, 'the': 4.0, 'and': 3.0, 'hate': 1.0, 'like': 1.0, 'leave': 1.0, 'reviewers': 1.0, 'carrying': 1.0, 'not': 1.0, 'other': 1.0, 'attach': 1.0, 'bag': 2.0, 'car': 2.0, 'infant': 1.0, 'in': 1.0, 'having': 1.0, 'use': 1.0, 'phone': 1.0, 'can': 1.0, 'diaper': 2.0, 'stroller': 1.0, 'toddler': 1.0, 'i': 3.0, 'etc': 1.0, 'it': 3.0, 'paci': 1.0, 'seat': 1.0, 'to': 2.0, 'or': 1.0, 'a': 1.0, 'going': 1.0, 'walks': 1.0, 's': 2.0, 'keys': 1.0, 'seatpak': 1.0, 'enough': 1.0, 'snacks': 1.0, 'for': 3.0, 'my': 3.0, 'baby': 1.0, 'awesome': 1.0, 'carry': 1.0}
Word element => {'them': 1.0, 'about': 1.0, 'maybe': 1.0, 'and': 1.0, 'over': 2.0, 'was': 1.0, 'to': 2.0, 'all': 1.0, 'have': 1.0, 'still': 1.0, 'impression': 1.0, 'you': 1.0, 'her': 1.0, 'down': 1.0, 'luck': 1.0, 'wrong': 1.0, 'under': 1.0, 'legs': 1.0, 'than': 1.0, 'they': 2.0, 'thinking': 1.0, 'the': 2.0, 'pee': 1.0, 'these': 2.0, 'such': 1.0, 'were': 1.0, 'since': 1.0, 'thicker': 1.0, 'avoid': 1.0, 'put': 1.0, 'training': 1.0, 'floor': 1.0, 'bought': 1.0, 'i': 2.0, 'nylon': 1.0, 'regular': 1.0, 'panties': 1.0, 'everything': 1.0, 'would': 1.0, 'hold': 1.0, 'in': 1.0, 'when': 1.0, 'daughter': 1.0, 'pants': 2.0, 'pees': 1.0, 'my': 1.0, 'no': 1.0}
Word element => {'up': 1.0, 'washed': 1.0, 'of': 1.0, 'nicely': 1.0, 'the': 2.0, 'good': 1.0, 'off': 1.0, 'expected': 1.0, 'i': 1.0, 'does': 1.0, 'to': 1.0, 'came': 1.0, 'cover': 1.0, 'changing': 2.0, 'as': 1.0, 'edges': 1.0, 'and': 1.0, 'not': 1.0, 'just': 1.0, 'fits': 1.0, 'purchase': 1.0, 'pad': 3.0, 'come': 1.0, 'it': 4.0, 'this': 1.0, 'is': 1.0, 'standard': 1.0, 'soft': 1.0, 'well': 1.0, 'over': 1.0, 'our': 1.0, 'but': 1.0, 'stretches': 1.0, 'easily': 1.0}
Word element => {'s': 1.0, 'baby': 1.0, 'our': 1.0, 'perfectly': 1.0, 'blend': 1.0, 'and': 1.0, 'soft': 1.0, 'was': 1.0, 'extremely': 1.0, 'this': 1.0, 'product': 1.0, 'the': 3.0, 'look': 1.0, 'room': 1.0, 'is': 1.0, 'with': 2.0, 'colors': 2.0, 'pleasantly': 1.0, 'fabric': 1.0, 'feel': 1.0, 'surprised': 1.0, 'of': 1.0}
Word element => {'required': 1.0, 'are': 1.0, 'time': 1.0, 'they': 1.0, 'that': 1.0, 'the': 2.0, 'my': 1.0, 'wonderful': 1.0, 'boys': 1.0, 'for': 2.0, 'which': 1.0, 'bought': 1.0, 's': 1.0, 'i': 2.0, 'timer': 1.0, 'this': 1.0, 'it': 2.0, 'loud': 1.0, 'is': 1.0, 'brushing': 1.0, 'to': 1.0, 'so': 1.0, 'hear': 1.0, 'off': 1.0, 'go': 1.0, 'ensures': 1.0, 'and': 1.0, 'get': 1.0, 'me': 1.0}
Word element => {'highly': 1.0, 'tossing': 1.0, 'sturdy': 1.0, 'quite': 1.0, 'be': 1.0, 'whimsical': 1.0, 'but': 1.0, 'simple': 1.0, 'design': 1.0, 'stop': 1.0, 'size': 1.0, 'wonderful': 1.0, 'minutes': 1.0, 'playing': 1.0, 'the': 3.0, 'small': 1.0, 'bell': 1.0, 'counter': 1.0, 'allows': 1.0, 'this': 1.0, 'enthusiastically': 1.0, 'it': 2.0, 'timer': 1.0, 'on': 1.0, 'recommended': 1.0, 'has': 1.0, 'won': 1.0, 'around': 1.0, 'is': 2.0, 'for': 2.0, 'brush': 1.0, 'whole': 1.0, 'works': 1.0, 'understated': 1.0, 'a': 1.0, 't': 1.0, 's': 1.0, 'family': 1.0, 'allotted': 1.0, 'perfectly': 1.0, 'and': 2.0, 'up': 1.0, 'child': 1.0, 'now': 1.0, 'our': 2.0, 'to': 3.0, 'us': 2.0, 'mom': 1.0, 'teeth': 1.0, 'time': 1.0, 'held': 1.0, 'let': 1.0, 'two': 1.0, 'great': 1.0, 'until': 1.0, 'seems': 1.0, 'rings': 1.0, 'charming': 1.0, '34': 2.0}
Word element => {'function': 1.0, 't': 1.0, 'was': 1.0, 'the': 1.0, 'it': 2.0, 'design': 1.0, 'had': 1.0, 'for': 1.0, 'to': 1.0, 'return': 1.0, 'didn': 1.0, 'just': 1.0, 'but': 1.0, 'immediately': 1.0, 'sad': 1.0, 'a': 1.0, 'i': 1.0, 'timer': 1.0, 'cute': 1.0, 'simple': 1.0}
Word element => {'returning': 1.0, 'problem': 1.0, 'service': 1.0, 'customer': 1.0, 'first': 1.0, 'broke': 1.0, 'timer': 1.0, 'lot': 1.0, 'a': 1.0, 'doesn': 1.0, 'show': 1.0, 'setting': 1.0, 'it': 1.0, 't': 1.0, 'no': 1.0, 'good': 1.0, 'he': 1.0, 'of': 1.0, 'day': 1.0, 'numbers': 1.0, 'for': 1.0}
Word element => {'money': 1.0, 'waste': 1.0, 'basically': 1.0, 'silent': 1.0, 'start': 1.0, 'actually': 1.0, 'want': 1.0, 'time': 1.0, 'of': 1.0, 'there': 1.0, 'set': 1.0, 'sometimes': 1.0, 'all': 1.0, 'use': 1.0, 'while': 1.0, 'doesn': 1.0, 'but': 1.0, 'so': 1.0, 'sits': 1.0, 't': 1.0, 'the': 1.0, 'great': 1.0, 'teeth': 1.0, 'when': 1.0, 'kids': 1.0, 'what': 1.0, 'my': 1.0, 'a': 2.0, 'excited': 1.0, 'it': 4.0, 'this': 1.0, 'to': 2.0, 'brushing': 1.0, 'were': 1.0, 'their': 1.0, 'you': 2.0, 'concept': 1.0, 's': 1.0, 'just': 2.0, 'not': 1.0, 'reliable': 1.0, 'at': 1.0}
Word element => {'condition': 1.0, 'receive': 1.0, 'fun': 1.0, 'so': 1.0, 'not': 2.0, 'know': 1.0, 'fine': 1.0, 'why': 1.0, 'worked': 1.0, 'when': 1.0, 'cheap': 1.0, 'i': 5.0, 'and': 1.0, 'such': 1.0, 'tooth': 1.0, 'the': 2.0, 'tiny': 1.0, 'am': 1.0, 'place': 1.0, 'was': 2.0, 'now': 1.0, 'to': 2.0, 'had': 1.0, 'in': 2.0, 'fix': 1.0, 'screw': 2.0, 'opened': 1.0, 'item': 1.0, 'fortunately': 1.0, 'an': 1.0, 'but': 1.0, 'back': 2.0, 'came': 1.0, 'it': 6.0, 'with': 1.0, 'since': 1.0, 'a': 1.0, 'timer': 2.0, 'little': 1.0, 'sending': 1.0, 'off': 1.0}
Word element => {'are': 1.0, 'your': 1.0, 'when': 1.0, 'makes': 1.0, 'noise': 1.0, 'hands': 1.0, 'easy': 1.0, 'them': 1.0, 'great': 1.0, 'use': 2.0, 'instructions': 1.0, 'phone': 2.0, 'far': 1.0, 'obvious': 1.0, 'his': 1.0, 'am': 1.0, 'expectoration': 1.0, 'you': 1.0, 'timer': 4.0, 'each': 1.0, 'just': 1.0, 'following': 1.0, 'well': 1.0, 'i': 11.0, 'no': 1.0, 'for': 4.0, 'afraid': 1.0, 't': 2.0, 'minutes': 2.0, 'was': 1.0, 'twice': 1.0, 'informed': 1.0, 'to': 6.0, 'as': 2.0, 'won': 1.0, 'session': 1.0, 'fearful': 1.0, 'more': 1.0, 'is': 2.0, 'older': 1.0, 'the': 6.0, 'of': 3.0, 'small': 1.0, 'a': 4.0, 'imagine': 1.0, 'teeth': 2.0, 'cheap': 1.0, 'like': 1.0, 'get': 4.0, 'my': 6.0, 'me': 1.0, 'not': 1.0, 'decided': 1.0, 'day': 2.0, 'could': 1.0, 'will': 1.0, 'out': 1.0, 'head': 1.0, 'issue': 1.0, 'ensure': 1.0, 'be': 2.0, 'so': 1.0, 'after': 1.0, 'dentist': 1.0, 'would': 1.0, 'nudge': 1.0, 'fall': 1.0, 'that': 1.0, 'brushing': 1.0, 'should': 1.0, 'but': 2.0, 'past': 1.0, '2': 1.0, 'don': 1.0, 'set': 1.0, 'on': 2.0, 'near': 2.0, 'sink': 2.0, 'while': 1.0, 'this': 2.0, 'precisely': 1.0, 'kids': 1.0, 'its': 2.0, 'purpose': 1.0, 'and': 2.0, 'too': 1.0, 'sometimes': 1.0, 'dropping': 1.0, 'it': 7.0, 'm': 1.0, 'in': 1.0, 'than': 1.0, 'way': 1.0, 'relatively': 1.0, 'toothpaste': 1.0, 'or': 1.0, 'getting': 1.0, 'turn': 1.0, 'if': 3.0, 'running': 1.0, 'have': 2.0, 'errant': 1.0, 'all': 1.0, 'an': 1.0, 'start': 2.0, 'up': 1.0, 'less': 1.0, 'water': 1.0, 'takes': 1.0, 'two': 2.0, 'little': 1.0}
Word element => {'suggestions': 1.0, 'another': 1.0, 'am': 1.0, 'used': 1.0, 'are': 1.0, 'to': 1.0, 'now': 2.0, 'brushing': 1.0, 'teeth': 1.0, 'minutes': 1.0, 'i': 1.0, 'minute': 1.0, 'that': 1.0, 'were': 1.0, '2': 1.0, 'great': 1.0, 'the': 1.0, 'weeks': 1.0, 'one': 1.0, 'died': 1.0, 'using': 2.0, 'for': 4.0, 'several': 1.0, 'kids': 1.0, 'quit': 1.0, 'set': 1.0, 'worked': 1.0, 'and': 2.0, '1': 1.0, 'enthusiastically': 1.0, 'washing': 1.0, 'just': 1.0, 'it': 7.0, 'turning': 1.0, 'shopping': 1.0, 'they': 3.0, 'then': 1.0, 'loved': 1.0, 'at': 1.0, 'hand': 1.0}
Word element => {'money': 1.0, 'or': 1.0, 'time': 1.0, 'about': 1.0, 'don': 1.0, 'worked': 2.0, 'brush': 1.0, 'the': 1.0, 'my': 1.0, 'high': 1.0, 'longer': 1.0, 'really': 1.0, 'encourage': 1.0, 'fun': 1.0, 'g': 1.0, 'way': 1.0, 'to': 3.0, 'hopes': 1.0, 'timer': 2.0, 'i': 1.0, 't': 2.0, 's': 1.0, 'a': 2.0, 'stopped': 1.0, 'it': 2.0, 'turning': 1.0, 'would': 1.0, 'be': 1.0, 'ring': 1.0, 'e': 1.0, 'minute': 1.0, 'this': 1.0, 'kids': 1.0, 'that': 1.0, 'then': 1.0, 'and': 3.0, 'do': 1.0, 'again': 1.0, 'never': 1.0, 'keeps': 1.0, 'for': 1.0, 'supposed': 1.0, 'actually': 1.0, 'unfortunately': 1.0, 'doesn': 1.0, 'had': 1.0, 'what': 1.0, 'stop': 1.0, 'waste': 1.0, 'your': 1.0}
Word element => {'should': 1.0, 'break': 1.0, 'think': 1.0, 'careful': 1.0, 'without': 1.0, 'often': 1.0, 'durable': 1.0, 'it': 2.0, 'if': 1.0, 'does': 1.0, 'her': 1.0, 'timer': 1.0, 'turn': 1.0, 'able': 1.0, 'being': 2.0, 'made': 1.0, 'child': 1.0, 'worth': 1.0, 'dont': 1.0, 'are': 1.0, 'more': 1.0, 'the': 4.0, 'a': 1.0, 'too': 2.0, 'to': 2.0, 'be': 2.0, 'product': 1.0, 'i': 2.0, 'might': 1.0, 'she': 1.0, 'lot': 1.0, 'but': 2.0, 'want': 1.0, 'is': 2.0, 'self': 1.0, 'healthy': 1.0, 'not': 1.0, 'sturdy': 1.0, 'set': 1.0, 'feeling': 1.0, 'harsh': 1.0, 'half': 1.0, 'fun': 1.0, 'teeth': 1.0, 'in': 1.0}
Word element => {'junk': 1.0, 'time': 1.0, 'for': 1.0, 'because': 1.0, 'the': 2.0, 'unfortunately': 1.0, 'my': 1.0, 'about': 1.0, 'working': 1.0, 'cute': 1.0, 'first': 1.0, 'stopped': 1.0, 'this': 1.0, 'excited': 1.0, 'it': 1.0, 'second': 1.0, 'is': 1.0, 'bummer': 1.0, 'product': 1.0, 'very': 1.0, 'son': 1.0, 'day': 1.0, 'use': 1.0, 'of': 1.0, 'which': 1.0, 'brushing': 1.0, 'was': 2.0, 'a': 1.0}
Word element => {'back': 1.0, 'often': 1.0, 'ran': 2.0, 'the': 2.0, 'times': 1.0, 'passed': 1.0, 'run': 1.0, 'worked': 1.0, 'really': 1.0, 'it': 3.0, 'only': 1.0, 'sometimes': 1.0, 'product': 2.0, '0': 1.0, 'mark': 1.0, 'when': 1.0, 'did': 1.0, 'looking': 1.0, 'never': 1.0, 'would': 1.0, 'i': 1.0, 'invest': 1.0, 'in': 1.0, 'another': 1.0}
Word element => {'three': 1.0, 'day': 1.0, 'gotten': 1.0, 'will': 1.0, 'know': 1.0, 'up': 1.0, 'don': 1.0, 'shape': 1.0, 'timer': 1.0, 'mechanical': 1.0, 'minute': 1.0, 'bit': 1.0, 'while': 1.0, 'turn': 1.0, 'correct': 1.0, 'way': 1.0, 'showed': 1.0, 'top': 1.0, 'herself': 1.0, 'by': 1.0, 'use': 2.0, 'good': 1.0, 'last': 1.0, 'her': 2.0, 'easy': 1.0, 'turned': 1.0, 'was': 2.0, 'once': 1.0, 'of': 3.0, 'tick': 2.0, 'times': 2.0, 'when': 3.0, 'and': 3.0, 'done': 1.0, 'cute': 1.0, 'package': 1.0, 'out': 1.0, 'couple': 2.0, 'replacement': 1.0, 'year': 1.0, 'ring': 1.0, 'little': 1.0, 'very': 1.0, 'the': 7.0, 'defective': 1.0, 'great': 1.0, 'how': 1.0, '6': 1.0, 'received': 1.0, 'tooth': 1.0, 'would': 1.0, 'months': 1.0, 'one': 1.0, 'expensive': 1.0, 'for': 4.0, 'granddaughter': 1.0, 'only': 1.0, 'works': 1.0, 'long': 2.0, 'ones': 1.0, 'opened': 1.0, 's': 1.0, 't': 1.0, 'a': 5.0, 'we': 2.0, 'brushing': 1.0, 'has': 1.0, 'made': 1.0, 'to': 3.0, 'ensuring': 1.0, 'our': 1.0, 'old': 1.0, 'two': 1.0, 'i': 3.0, 'is': 5.0, 'enough': 1.0, 'but': 1.0, 'rattled': 1.0, 'can': 1.0, 'first': 1.0, 'hear': 1.0, 'bell': 1.0, 'it': 10.0, 'she': 2.0, 'that': 1.0, 'loves': 1.0}
Word element => {'broke': 1.0, 'then': 1.0, 'and': 2.0, 'using': 1.0, 'a': 1.0, 'the': 1.0, 'cute': 1.0, 'idea': 1.0, 'kids': 1.0, 'board': 1.0, 'became': 1.0, 'it': 3.0, 'were': 1.0, 'useless': 1.0, 'is': 1.0, 'with': 1.0, 'on': 1.0}
Word element => {'bought': 1.0, 'or': 1.0, 'i': 2.0, 'no': 1.0, 'package': 1.0, 'the': 2.0, 'it': 2.0, 'amazon': 2.0, 's': 1.0, 'notice': 1.0, 'chinese': 2.0, 'english': 1.0, 'that': 1.0, 'is': 1.0, 'on': 1.0, 'this': 1.0, 'strange': 1.0, 'product': 1.0, 'everywhere': 1.0, 'american': 1.0, 'from': 1.0, 'doubt': 1.0, 'including': 1.0}
Word element => {'in': 1.0, 'put': 1.0, 'able': 1.0, 'liquids': 1.0, 'warm': 1.0, 'm': 1.0, 'so': 1.0, 'it': 2.0, 's': 2.0, 'i': 2.0, 'stainless': 1.0, 'pretty': 1.0, 'use': 1.0, 'steal': 1.0, 'simple': 1.0, 'to': 2.0, 'and': 1.0, 'like': 1.0, 'there': 1.0, 'that': 1.0}
Word element => {'hands': 1.0, 'babies': 1.0, 'my': 1.0, 'they': 1.0, 'these': 1.0, 'have': 1.0, 'mittens': 1.0, 'newborn': 1.0, 'loose': 1.0, 'for': 1.0, 'easily': 1.0, 'too': 2.0, 'very': 1.0, 'and': 1.0, 'fall': 1.0, 'large': 1.0, 'off': 1.0, 'been': 1.0, 'both': 1.0, 'of': 2.0}
Word element => {'range': 1.0, 'price': 1.0, 'same': 1.0, 'items': 1.0, 'sturdier': 1.0, 'way': 1.0, 'black': 1.0, 'the': 2.0, 'diaper': 2.0, 'more': 1.0, 'would': 1.0, 'rather': 1.0, 'one': 2.0, 'i': 3.0, 'sturdy': 1.0, 'use': 1.0, 'attach': 1.0, 'baby': 2.0, 'bulky': 1.0, 'about': 1.0, 'have': 1.0, 'bag': 4.0, 'carrier': 1.0, 'too': 1.0, 'and': 1.0, 'do': 1.0, 'still': 1.0, 'but': 1.0, 'it': 4.0, 'for': 1.0, 'actually': 1.0, 'anyway': 1.0, 'kangaroo': 1.0, 'gotten': 1.0, 'definitely': 1.0, 'in': 2.0, 'seems': 1.0, 'messenger': 2.0, 'future': 1.0, 'though': 1.0, 'than': 1.0, 'because': 1.0, 'a': 4.0, 's': 1.0, 'could': 1.0, 'like': 2.0, 'to': 2.0, 'as': 1.0, 'after': 1.0, 'other': 1.0, 'outgrows': 1.0, 'needing': 1.0, 'that': 1.0, 'plain': 1.0, 'really': 1.0}
Word element => {'free': 1.0, 'hands': 1.0, 'size': 1.0, 'carrier': 1.0, 'a': 1.0, 'the': 2.0, 'my': 1.0, 'for': 1.0, 'love': 2.0, 'this': 1.0, 'it': 2.0, 'connect': 1.0, 'perfect': 1.0, 'day': 1.0, 's': 1.0, 'i': 2.0, 'beautiful': 1.0, 'out': 1.0, 'and': 2.0, 'print': 1.0, 'is': 1.0, 'to': 2.0, 'bag': 1.0, 'boba': 1.0, 'be': 1.0}
Word element => {}
Word element => {'regardless': 1.0, 'price': 1.0, 'but': 1.0, 'dish': 1.0, 'little': 1.0, 'fork': 1.0, 'spoon': 1.0, 'part': 1.0, 'used': 1.0, 'haven': 1.0, 'trying': 1.0, 'is': 2.0, 'yet': 1.0, 'for': 1.0, 'i': 3.0, 'worth': 1.0, 'found': 1.0, 'the': 3.0, 't': 1.0, 'great': 2.0, 'looking': 1.0, 'without': 1.0, 'well': 1.0, 'a': 2.0, 'was': 1.0, 'to': 1.0, 'product': 1.0, 'bowl': 3.0, 'with': 1.0, 'counter': 1.0, 'it': 1.0, 'this': 2.0, 'have': 1.0, 'stuck': 1.0, 'suction': 1.0, 'and': 1.0, 'actually': 1.0, 'gets': 1.0, 'my': 1.0}
Word element => {'used': 1.0, 'month': 1.0, 'yet': 1.0, 'for': 1.0, 'little': 1.0, 'there': 1.0, 'too': 1.0, 'two': 1.0, 'my': 1.0, 'ago': 1.0, 'bowl': 1.0, '15': 1.0, 'enormous': 1.0, 'a': 1.0, 'put': 1.0, 'but': 2.0, 'weeks': 1.0, 'doesn': 1.0, 'big': 1.0, 'haven': 1.0, 'stay': 1.0, 'cute': 1.0, 'is': 2.0, 'tray': 1.0, 'insert': 1.0, 'it': 3.0, 'the': 1.0, 't': 2.0, 'old': 1.0, 'i': 1.0, 'got': 1.0}
Word element => {'use': 1.0, 'easy': 1.0, 'and': 1.0, 'very': 3.0, 'of': 1.0, 'good': 1.0, 'for': 1.0, 'son': 1.0, 'to': 1.0, 'adorable': 1.0, 'product': 2.0, 'much': 1.0, 'my': 1.0, 'the': 2.0, 'child': 1.0, 'bright': 1.0, 'color': 1.0}
Word element => {'condition': 1.0, 'in': 1.0, 'she': 1.0, 'like': 1.0, 'too': 1.0, 'daughter': 1.0, 'for': 1.0, 'my': 1.0, 'huge': 1.0, 'kitty': 1.0, 'great': 1.0, 'the': 2.0, 'and': 1.0, 'god': 1.0, 'it': 1.0, 'this': 1.0, 'toothbrush': 2.0, 'got': 1.0, 'is': 1.0, 'looks': 1.0, 'i': 2.0, 'picture': 1.0, 'since': 1.0, 'a': 1.0, 'hello': 1.0, 'lover': 1.0, 'exactly': 1.0, 'received': 1.0}
Word element => {'be': 1.0, 'overall': 1.0, 'just': 1.0, 'but': 1.0, 'weird': 1.0, 'only': 1.0, 'perfectly': 1.0, 'to': 2.0, 'was': 3.0, 'top': 1.0, 'enough': 1.0, 'from': 1.0, 'toe': 1.0, 'gift': 1.0, '9': 1.0, 'one': 1.0, 'for': 2.0, 'i': 2.0, 'could': 1.0, 'a': 5.0, 'looking': 1.0, 'easily': 1.0, 'towel': 5.0, 'that': 1.0, 'baby': 2.0, 'price': 1.0, 'big': 1.0, 'great': 3.0, 'my': 3.0, 'label': 1.0, 'is': 4.0, 'it': 3.0, 'month': 1.0, 'looks': 1.0, 'this': 2.0, 'soft': 1.0, 'surprised': 1.0, 'thick': 1.0, 'hood': 1.0, 'though': 1.0, 'bit': 2.0, 'and': 3.0, 'too': 2.0, 'drawback': 1.0, 'will': 1.0, 'also': 1.0, 'maybe': 1.0, 'does': 1.0, 'find': 1.0, 'no': 1.0, 'on': 1.0, 'wrap': 1.0, 'the': 5.0, 'job': 1.0, 'whatsoever': 1.0}
Word element => {'at': 1.0, 'pool': 1.0, 'sea': 1.0, 'in': 1.0, 'won': 1.0, 'so': 1.0, 'wanted': 1.0, 'me': 1.0, 'give': 1.0, 'standard': 1.0, 'does': 1.0, 'kiddie': 1.0, 'site': 1.0, 'amazon': 1.0, 'see': 1.0, 'i': 3.0, 'like': 1.0, 'computer': 1.0, 'of': 4.0, 'get': 1.0, 'towel': 2.0, 'white': 1.0, 'salmon': 1.0, 'instead': 1.0, 't': 1.0, 'a': 4.0, 'chocolate': 1.0, 'bright': 1.0, 'black': 1.0, 'unique': 1.0, 'will': 1.0, 'wrap': 1.0, 'the': 10.0, 'nicely': 1.0, 'is': 3.0, 'cuddle': 1.0, 'more': 1.0, 'my': 2.0, 'cream': 1.0, 'dry': 1.0, 'slightly': 2.0, 'as': 1.0, 'from': 1.0, 'granddaughter': 1.0, 'color': 3.0, 'bought': 1.0, 'towels': 1.0, 'gift': 1.0, 'lost': 1.0, 'this': 1.0, 'it': 3.0, 'look': 1.0, 'background': 2.0, 'pink': 1.0, 'with': 2.0, 'terry': 1.0, 'flowers': 2.0, '3yr': 1.0, 'for': 1.0, 'old': 1.0, 'terrycloth': 1.0, 'on': 2.0, 'screen': 1.0, 'still': 1.0, 'printed': 2.0, 'and': 4.0, 'pattern': 1.0, 'her': 1.0, 'different': 1.0, 'fabric': 1.0, 'that': 2.0}
Word element => {'buy': 1.0, 'own': 1.0, 'who': 1.0, 'no': 1.0, 'have': 1.0, 'from': 1.0, 'where': 1.0, 'wanted': 1.0, 'lot': 1.0, 'really': 1.0, 'lasting': 1.0, 'out': 1.0, 'grows': 1.0, 'by': 1.0, 'about': 1.0, 'will': 1.0, 'be': 2.0, 'stay': 1.0, 'pop': 1.0, 'then': 1.0, 'way': 1.0, 'falls': 1.0, 'incase': 1.0, '2': 1.0, 'worth': 1.0, 'now': 2.0, 'amused': 1.0, 'big': 2.0, 'jog': 1.0, 'd': 1.0, 'got': 2.0, 'whole': 1.0, 'managed': 1.0, 'has': 1.0, 'them': 1.0, 'gave': 1.0, 'hood': 1.0, 'little': 2.0, 'very': 1.0, 's': 7.0, 'comments': 1.0, 'up': 4.0, 'carry': 1.0, 'washable': 1.0, 'child': 1.0, 'there': 2.0, 'adjust': 1.0, 'holding': 1.0, 'ended': 1.0, 'on': 5.0, 'carried': 1.0, 'idea': 1.0, 'probably': 1.0, 'your': 2.0, 'around': 1.0, 'enough': 1.0, 'boba': 1.0, 'also': 3.0, 'kid': 1.0, 'instead': 2.0, 'base': 1.0, 'even': 1.0, 'is': 5.0, 'sits': 1.0, 'bjorn': 3.0, 'in': 3.0, 'baby': 9.0, 'quite': 1.0, 'carrier': 4.0, 'back': 3.0, 'him': 4.0, 'it': 12.0, 'with': 1.0, 'this': 4.0, 'ache': 1.0, 'wrap': 2.0, 'good': 1.0, 'asleep': 3.0, 'well': 1.0, 'i': 12.0, 'or': 1.0, 'shoulder': 1.0, 'investment': 1.0, 'comfortable': 1.0, 'to': 12.0, 'all': 2.0, 'longest': 1.0, 'had': 2.0, 'was': 5.0, 'bounce': 1.0, 'whilst': 1.0, 'not': 2.0, 'looks': 1.0, 'my': 4.0, 'me': 1.0, 'for': 1.0, 'he': 5.0, 'fold': 1.0, 'love': 1.0, 'and': 6.0, 'go': 1.0, 'sunny': 1.0, 'are': 1.0, 'doesn': 1.0, 'everyone': 2.0, 'waist': 1.0, 'useful': 1.0, 'car': 1.0, 'support': 2.0, 'store': 1.0, 'distrubutes': 1.0, 'antsy': 1.0, 'weight': 2.0, 'can': 3.0, 'lightweight': 2.0, 'so': 4.0, 'boy': 2.0, 'know': 1.0, 'easy': 2.0, 'bit': 2.0, 'shoulders': 1.0, 'unlike': 1.0, 'stirrups': 1.0, 'the': 21.0, 'of': 5.0, 'time': 3.0, 'wide': 1.0, 'like': 1.0, 'newborn': 1.0, 'frog': 1.0, 't': 1.0, 'fit': 1.0, 'further': 1.0, 'legs': 1.0, 'great': 3.0, 'foot': 1.0, 'whenever': 1.0, 'dangling': 1.0, 'down': 2.0, 'case': 1.0, 'adjustable': 1.0, 'that': 1.0, 'easily': 1.0, 'when': 2.0, 'you': 1.0, 'used': 3.0, 'mall': 1.0, 'a': 12.0, 'small': 1.0, 'getting': 1.0, 'rid': 1.0, 'item': 1.0, 'stroller': 1.0, 'why': 1.0, 'just': 3.0, 'put': 1.0, 'much': 1.0, 'think': 1.0, 'better': 1.0, 'keep': 4.0, '3': 1.0, 'older': 1.0}
Word element => {'seats': 1.0, 'like': 1.0, 'items': 1.0, 'safety': 1.0, 'after': 1.0, 'say': 1.0, 'probably': 1.0, 'extremely': 1.0, 'read': 1.0, 'flexibility': 1.0, 'between': 1.0, 'isn': 1.0, 'ready': 1.0, 'from': 1.0, 'becco': 1.0, 'ergo': 2.0, 'are': 1.0, 'that': 2.0, 'major': 1.0, 'however': 1.0, 'easy': 1.0, 'know': 1.0, 'you': 1.0, 'able': 2.0, 'carry': 3.0, 'walking': 1.0, 'added': 1.0, 'a': 5.0, 'reviews': 1.0, 'we': 2.0, 's': 9.0, 'go': 2.0, 't': 2.0, 'baby': 6.0, 'recently': 1.0, 'their': 1.0, 'normal': 1.0, 'around': 1.0, 'it': 9.0, 'him': 4.0, 'be': 3.0, 'but': 1.0, 'most': 1.0, 'back': 1.0, 'carrier': 5.0, 'put': 2.0, 'on': 3.0, 'sweep': 1.0, 'guy': 1.0, 've': 1.0, 'down': 1.0, 'nursing': 3.0, 'and': 12.0, 'pelvic': 1.0, 'pain': 1.0, 'set': 1.0, 'essential': 1.0, 'hates': 1.0, 'worth': 1.0, 'now': 1.0, 'free': 1.0, 'nice': 1.0, 'two': 1.0, 'little': 2.0, 'being': 1.0, 'very': 1.0, 'item': 1.0, 'our': 3.0, 'to': 7.0, 'other': 1.0, 'mop': 1.0, 'all': 1.0, 'us': 1.0, 'also': 3.0, 'had': 1.0, 'was': 1.0, 'recommend': 1.0, 'pelvis': 1.0, 'is': 2.0, 'look': 1.0, 'strap': 1.0, 'loves': 2.0, 'big': 1.0, 'great': 1.0, 'chomping': 1.0, 'with': 2.0, 'hip': 4.0, 'he': 4.0, 'carriers': 1.0, '6': 1.0, 'loved': 1.0, 'enough': 1.0, 'my': 1.0, 'overall': 1.0, 'nurse': 2.0, 'time': 1.0, 'can': 3.0, 'so': 1.0, 'anywhere': 1.0, 'this': 4.0, '0': 1.0, 'while': 1.0, 'as': 4.0, 'slower': 1.0, 'than': 2.0, 'course': 1.0, 'still': 1.0, 'even': 1.0, 'beco': 1.0, 'have': 2.0, 'happy': 3.0, 'one': 1.0, 'hand': 1.0, 'fabric': 1.0, 'for': 6.0, 'backs': 1.0, 'posture': 1.0, 'purchase': 1.0, 'amazing': 1.0, 'would': 3.0, 'absolutely': 1.0, 'in': 2.0, 'm': 2.0, '8': 1.0, '34': 2.0, 'both': 1.0, '5': 1.0, 'more': 1.0, 'husband': 1.0, 'without': 1.0, 'works': 1.0, 'i': 10.0, 'well': 1.0, 'always': 1.0, 'has': 3.0, 'convert': 1.0, 'the': 11.0, 'of': 5.0, 'adjustable': 1.0, 'which': 1.0, 'good': 3.0, 'car': 1.0, 'support': 1.0}
Word element => {'comfortably': 1.0, 'fit': 1.0, 'in': 1.0, 'newborn': 1.0, '7': 1.0, 'our': 1.0, 'us': 1.0, 'i': 1.0, 'two': 1.0, 'and': 3.0, 'like': 1.0, 'my': 1.0, 'the': 2.0, 'carrier': 1.0, 'it': 3.0, 'this': 1.0, 'comfortable': 1.0, 'using': 1.0, 'between': 1.0, 'really': 1.0, 'both': 1.0, 'adjust': 1.0, 's': 2.0, 'easy': 1.0, 'lb': 1.0, 'straps': 1.0, 'husband': 1.0, 'to': 2.0, 'switch': 1.0, 'of': 1.0, 'forth': 1.0, 'back': 1.0}
Word element => {'happy': 1.0, 'up': 1.0, 'packs': 1.0, 'carrier': 1.0, 'for': 1.0, 's': 1.0, 'sooner': 1.0, 'wish': 1.0, 'take': 1.0, 'boba': 1.0, 'baby': 1.0, 'bjorn': 1.0, 'this': 1.0, 'with': 1.0, 'it': 2.0, 'he': 1.0, 'comfy': 1.0, 'done': 1.0, 'and': 3.0, 'small': 1.0, 'd': 1.0, 'after': 1.0, 'very': 1.0, 'from': 1.0, 'that': 2.0, 'moby': 1.0, 'a': 2.0, 'down': 1.0, 'used': 1.0, 'along': 1.0, 'we': 3.0, 'birth': 1.0, 'handed': 1.0, 'was': 1.0, 'to': 3.0, 'until': 1.0, 'purchase': 1.0, 'then': 1.0, 'got': 1.0, 'us': 1.0, 'too': 1.0, 'heavy': 1.0, 'upgraded': 1.0, 'the': 1.0}
Word element => {'based': 1.0, 'church': 1.0, 'or': 1.0, 'any': 1.0, 'highly': 1.0, 'away': 1.0, 'does': 1.0, 'home': 1.0, 'bright': 1.0, 'so': 1.0, 'makes': 1.0, 'color': 1.0, 'white': 1.0, 'drills': 1.0, 'monthly': 1.0, 'our': 1.0, 'during': 1.0, 'purposes': 1.0, 'take': 1.0, 'moving': 1.0, 'hassle': 1.0, 'smaller': 1.0, 'use': 1.0, 'wonderful': 1.0, 'they': 1.0, 'although': 1.0, 'large': 1.0, 'sids': 1.0, 'put': 1.0, 'upcoming': 1.0, 'several': 1.0, 'about': 1.0, 'to': 6.0, 'ages': 1.0, 'am': 1.0, 'and': 5.0, 'similar': 1.0, 'for': 5.0, 'expensive': 1.0, 'purchase': 1.0, 'my': 2.0, '12': 1.0, 'other': 2.0, 'cribs': 3.0, 'purchasing': 1.0, '15': 1.0, 'a': 6.0, 'separate': 1.0, 'fairly': 1.0, 'are': 3.0, '6': 1.0, 'extremely': 1.0, 'stable': 1.0, 'care': 2.0, 'rather': 1.0, 'total': 1.0, 'at': 1.0, 'two': 1.0, 'of': 4.0, 'the': 11.0, 'casters': 1.0, 'room': 1.0, 'these': 4.0, 'in': 5.0, 'than': 1.0, 'apart': 1.0, 'surface': 1.0, 'been': 1.0, 'have': 2.0, 'purchases': 1.0, 'months': 3.0, 'classroom': 1.0, 'plexiglass': 1.0, 'daycare': 1.0, 'center': 3.0, 'from': 2.0, 'while': 1.0, 'bit': 1.0, 'each': 1.0, 'weeks': 1.0, 'would': 2.0, 'product': 1.0, 'child': 2.0, 'recommend': 1.0, 'were': 1.0, 'together': 1.0, 'up': 1.0, 'water': 1.0, 'not': 2.0, 'bleach': 1.0, 'even': 1.0, 'provide': 1.0, 'love': 1.0, 'solid': 1.0, 'ends': 1.0, 'more': 2.0, 'babies': 1.0, 'cleaned': 1.0, 'with': 1.0, 'consider': 1.0, 'window': 1.0, 'cleaning': 1.0, 'remainder': 1.0, 'crib': 1.0, 'solution': 1.0, 'has': 1.0, 'i': 5.0, 'well': 1.0, 'held': 1.0, 'using': 1.0, 'mattresses': 1.0, 'soft': 1.0, 'but': 1.0, 'children': 1.0, 'firm': 1.0, 'enough': 1.0, 'easily': 1.0, 'young': 1.0, 'concept': 1.0, 'open': 1.0, 'daily': 3.0, 'infants': 1.0, 'risk': 1.0, 'having': 1.0, 'purchased': 1.0, 'larger': 1.0}
Word element => {'than': 1.0, 'head': 1.0, 'higher': 1.0, 'comes': 1.0, 'baby': 1.0, 'important': 1.0, 'thing': 1.0, 'another': 1.0, 'with': 2.0, 'done': 1.0, 'go': 1.0, 'when': 2.0, 'selling': 1.0, 'be': 1.0, 'would': 1.0, 'back': 2.0, 'or': 1.0, 'front': 1.0, 'use': 3.0, 'bjorn': 1.0, 'hiking': 1.0, 'been': 1.0, 'that': 4.0, 'like': 1.0, 'seemed': 1.0, 'comfortable': 2.0, 'has': 1.0, 'always': 1.0, 'easy': 1.0, 'glad': 1.0, 'additional': 1.0, 'insert': 1.0, 'i': 11.0, 'point': 1.0, 'started': 1.0, 'strollers': 1.0, 'the': 8.0, 'soft': 1.0, 'without': 1.0, 'riding': 1.0, 'my': 3.0, 'researching': 1.0, 'outgrowing': 1.0, 'super': 1.0, 'quickly': 1.0, 'to': 4.0, 'as': 3.0, 'our': 1.0, 'resell': 1.0, 'was': 2.0, 'so': 1.0, 'after': 1.0, 'carried': 1.0, '3': 1.0, 'younger': 2.0, 'a': 2.0, 'small': 2.0, 'boba': 2.0, 'seems': 1.0, 'decided': 1.0, 'son': 3.0, 'and': 5.0, 'good': 1.0, 'plan': 1.0, 'around': 1.0, 'really': 1.0, 's': 1.0, 'we': 1.0, 'he': 1.0, 'thought': 2.0, 'it': 9.0, 'up': 1.0, 'major': 1.0, 'now': 1.0, 'awhile': 1.0, 'brands': 1.0, 'support': 1.0, 'zoo': 1.0, 'considering': 1.0, 'do': 1.0, 'much': 2.0, 'in': 3.0, 'm': 2.0, 'but': 3.0, 'durable': 1.0, '45': 1.0, 'liked': 1.0, 'parts': 1.0, 'construction': 1.0, 'even': 1.0, 'didn': 1.0, 'on': 1.0, 'pound': 1.0, 'carriers': 2.0, 'infant': 1.0, 'year': 1.0, 't': 2.0, 'require': 1.0, 'old': 1.0, 'is': 4.0, 'at': 1.0, 'did': 1.0, 'keep': 1.0, 'option': 1.0, 'fabric': 1.0, 'for': 4.0, 'especially': 1.0, 'where': 1.0, 'trouble': 1.0, 'don': 1.0, 'walking': 1.0, 'outings': 1.0, 'are': 1.0, 'not': 1.0, 'other': 2.0, 'all': 1.0, 'an': 2.0, 'never': 1.0, 'configure': 1.0, 'had': 1.0}
Word element => {'husband': 1.0, 'too': 2.0, 'enjoys': 1.0, 'but': 1.0, 'color': 1.0, 's': 1.0, 'lila': 1.0, 'that': 3.0, 'little': 1.0, 'very': 1.0, 'several': 1.0, 'purse': 1.0, 'are': 1.0, 'girly': 1.0, 'you': 2.0, 'while': 1.0, 'from': 2.0, 'slipping': 1.0, 'boba': 2.0, 'make': 1.0, 'keep': 2.0, 'loop': 1.0, 'an': 1.0, 'like': 1.0, 'sleeping': 1.0, 'cushiony': 1.0, 'strap': 1.0, 'loops': 1.0, 'snap': 1.0, 'off': 1.0, 'carrier': 2.0, 'and': 9.0, 'tuck': 1.0, 'tucked': 1.0, 'there': 1.0, 'burp': 1.0, 'as': 1.0, 'diaper': 1.0, 'insert': 1.0, 'of': 2.0, 'the': 10.0, 'without': 1.0, 'addict': 1.0, '31': 1.0, 'my': 3.0, 'it': 4.0, 'wear': 1.0, 'a': 4.0, 'well': 1.0, 'i': 4.0, 'etc': 1.0, 'shoulder': 1.0, 'so': 5.0, 'can': 2.0, '3g': 2.0, 'bag': 1.0, 'baby': 2.0, 'padding': 1.0, 'at': 1.0, 'is': 3.0, 'm': 1.0, 'in': 5.0, 'excess': 1.0, 'pretty': 1.0, 'to': 2.0, 'length': 1.0, 'love': 2.0, 'for': 2.0, 'comfortable': 2.0, 'elastic': 1.0, 'ends': 1.0, 'adjustable': 1.0, 'when': 1.0, 'roll': 1.0, 'favorite': 1.0, 'up': 1.0, 'pockets': 1.0, 'keys': 1.0, 'phone': 1.0, 'use': 2.0, 'practical': 1.0, 'cloth': 1.0, 'zipper': 1.0, 'wearing': 1.0, '2': 1.0, 'compartment': 1.0, 'hood': 1.0, 'weather': 1.0, 'away': 1.0, 'not': 2.0, 'mine': 1.0, 'infant': 1.0, 'pound': 1.0, 'touches': 1.0, 'bit': 1.0, 'easy': 1.0, 'your': 1.0, 'mom': 1.0, 'keeps': 1.0, 'straps': 2.0, 'sweating': 1.0, 'buckets': 1.0, 'waistband': 1.0, 'warm': 1.0, 'old': 1.0, 'still': 1.0, 'collector': 1.0, 'comfy': 1.0, 'almost': 1.0, 'year': 1.0}
Word element => {'getting': 1.0, 'about': 1.0, 'worry': 1.0, 'but': 1.0, 'on': 1.0, 'funny': 1.0, 'little': 2.0, 'cold': 2.0, 'don': 1.0, 'over': 1.0, 'so': 1.0, 'and': 2.0, 'much': 2.0, 'pretty': 1.0, 'out': 1.0, 'shopping': 1.0, 'than': 1.0, 'this': 2.0, 'looks': 1.0, 'it': 5.0, 'anything': 1.0, 'hiking': 1.0, 'around': 2.0, 'is': 1.0, 'the': 4.0, 'great': 2.0, 'house': 1.0, 'for': 2.0, 'awesome': 1.0, 'easier': 1.0, 'that': 1.0, 'you': 2.0, 'when': 2.0, 'i': 3.0, 'old': 1.0, 'use': 1.0, 'purchased': 1.0, 'carrier': 2.0, 'lugging': 1.0, 'to': 1.0, 'seat': 1.0, 't': 1.0, 's': 3.0, 'go': 1.0, 'a': 2.0, 'since': 1.0, 'car': 1.0, 'have': 2.0, 'used': 1.0, 'my': 1.0, 'son': 1.0, 'vest': 1.0, 'weeks': 1.0, 'now': 1.0, 'was': 1.0, '7': 1.0, 'one': 1.0, 'months': 1.0, '6': 1.0, 'also': 1.0, 'boba': 1.0, 'goes': 1.0}
Word element => {'them': 1.0, 'into': 1.0, 'unless': 1.0, 'utilize': 1.0, 'unable': 1.0, 'wearing': 1.0, 'down': 2.0, 'content': 1.0, 'they': 2.0, 'needing': 1.0, 'absolute': 1.0, 'walking': 1.0, 'gadget': 1.0, 'glad': 1.0, 'us': 1.0, 'price': 1.0, 'someone': 1.0, 'blades': 1.0, 'shoulder': 1.0, 'nicer': 1.0, 'much': 1.0, 'hips': 1.0, 'your': 3.0, 'careful': 1.0, 'make': 1.0, 'enough': 3.0, 'balance': 1.0, 'related': 1.0, 'husband': 3.0, 'sells': 1.0, 'moving': 2.0, 'we': 7.0, 'getting': 2.0, 'some': 1.0, 'shoulders': 2.0, 'never': 1.0, 'used': 2.0, 'move': 1.0, 'or': 3.0, 'at': 4.0, 'still': 3.0, 'if': 4.0, 'every': 1.0, 'will': 3.0, 'like': 2.0, 'opened': 1.0, 'heavier': 1.0, 'really': 1.0, 'ut': 1.0, 'first': 2.0, 'put': 1.0, 'strap': 2.0, 'about': 1.0, 'the': 16.0, 'because': 3.0, 'that': 3.0, 'frame': 1.0, 'now': 1.0, 'almost': 1.0, 'definitely': 1.0, 'very': 3.0, '16': 1.0, 'purse': 2.0, 'exchanges': 1.0, 'recommend': 1.0, 'was': 6.0, 'lbs': 2.0, '60': 1.0, 'all': 2.0, 'as': 1.0, 'to': 21.0, 'pockets': 1.0, 'manliness': 1.0, 'which': 2.0, 'i': 16.0, 'putting': 1.0, 'bring': 1.0, 'soon': 1.0, 'perfectly': 1.0, 'there': 1.0, 'arms': 1.0, 'time': 2.0, 'thankfully': 1.0, 'curve': 1.0, 'surprisingly': 1.0, '1': 1.0, 'had': 2.0, 'reasons': 2.0, 'nifty': 1.0, 'are': 2.0, 'my': 14.0, 'trouble': 1.0, 'learning': 1.0, 'me': 6.0, 'got': 1.0, '5': 2.0, 'one': 3.0, 'having': 2.0, 'lives': 1.0, 'guy': 2.0, 'on': 5.0, 'long': 1.0, 'months': 2.0, 'update': 1.0, 'knock': 1.0, '110lb': 1.0, 'for': 10.0, 'ks': 1.0, 'both': 1.0, 'son': 2.0, 'semi': 1.0, 'am': 4.0, 'outgrown': 1.0, 'second': 1.0, 'little': 2.0, 'nice': 2.0, 'big': 1.0, 'moby': 2.0, 'be': 10.0, 'it': 8.0, 'necessarily': 1.0, 'he': 8.0, 'him': 2.0, 'only': 2.0, 'its': 5.0, 'freaked': 1.0, 'this': 12.0, 'fall': 1.0, 'few': 1.0, 'baby': 3.0, 'been': 2.0, 'safety': 1.0, 'amazon': 1.0, 'a': 13.0, '26': 1.0, 'short': 1.0, 'gear': 1.0, 'since': 1.0, 'day': 2.0, 'from': 2.0, 've': 2.0, 'while': 1.0, 'but': 5.0, 'easy': 2.0, 'especially': 2.0, 'seeing': 1.0, 'exchange': 1.0, 'use': 2.0, 'redistributes': 2.0, 'wants': 1.0, 'something': 1.0, 'lot': 1.0, 'his': 1.0, 'least': 1.0, 'around': 1.0, 'so': 7.0, 'is': 10.0, 'can': 3.0, 'not': 7.0, 'closeit': 1.0, 'else': 1.0, 'means': 1.0, 'transfer': 1.0, 'kids': 2.0, 'broke': 1.0, 'until': 1.0, 'fluff': 1.0, 'and': 14.0, 'tried': 2.0, 'our': 1.0, 'home': 1.0, 'off': 1.0, 'lots': 1.0, 'demand': 1.0, 'fan': 1.0, 'packing': 1.0, 'hard': 1.0, 'keeping': 1.0, 'house': 1.0, 'perk': 1.0, 'buyers': 1.0, 'productive': 2.0, 'won': 1.0, 't': 2.0, 'underfoot': 1.0, 'screaming': 1.0, 'carry': 2.0, 'together': 1.0, 'main': 2.0, 'in': 1.0, 'better': 1.0, 'bought': 1.0, 'goes': 1.0, 'steep': 1.0, 'up': 3.0, 'change': 1.0, 'side': 1.0, 'alone': 1.0, '45': 1.0, 'beco': 3.0, 'have': 5.0, 'soleil': 1.0, 'after': 1.0, 'infant': 1.0, 'need': 3.0, 'also': 2.0, 'does': 1.0, '2': 1.0, 'no': 2.0, 'gotten': 1.0, 'another': 2.0, 'would': 1.0, 'between': 1.0, 'startle': 1.0, 'idea': 1.0, 'worse': 1.0, 'needs': 1.0, 'than': 2.0, 'weight': 1.0, '3': 1.0, 'front': 3.0, 'stroller': 1.0, 'leaving': 1.0, 'insert': 1.0, 'dismount': 1.0, 'back': 3.0, 'however': 1.0, 'able': 1.0, 'of': 8.0, 'old': 1.0, 'even': 1.0, 'these': 1.0, 'with': 2.0, 'using': 2.0, 'frank': 1.0, 'soft': 1.0, 'carrier': 1.0, 'mount': 1.0, 'an': 1.0, 'adult': 1.0, 'couple': 1.0, 'm': 1.0, 's': 4.0, 'inches': 1.0, 'pounds': 1.0, 'returns': 1.0, 'when': 2.0, 'signifiant': 1.0, 'more': 4.0, 'fair': 1.0, 'warning': 1.0, 'gets': 1.0, 'wanting': 1.0, 'wound': 1.0}
Word element => {'training': 1.0, 'infant': 1.0, 'are': 1.0, 'trying': 1.0, 'you': 1.0, 'if': 1.0, 'perfect': 1.0, 'do': 1.0, 'and': 1.0, 'to': 2.0, 'even': 1.0, 'confortable': 1.0, 'didn': 1.0, 'use': 2.0, 'baby': 1.0, 'by': 1.0, 'she': 1.0, 'my': 1.0, 'potty': 2.0, 'very': 1.0, 'that': 1.0, 'seat': 2.0, 'a': 1.0, 'it': 1.0, 'this': 1.0, 't': 1.0, 'some': 1.0, 'at': 1.0, 'loves': 1.0, 'almost': 1.0, '6': 1.0, 'months': 1.0, 'who': 1.0, 'is': 2.0, 'herself': 1.0, 'could': 1.0}
Word element => {'can': 1.0, 'i': 1.0, 'if': 1.0, 'bumbo': 1.0, 'amazon': 1.0, 'is': 1.0, 'until': 1.0, 'seat': 1.0, 'replacement': 1.0, 'big': 1.0, '2': 1.0, 'the': 2.0, 'my': 1.0, 'going': 1.0, 'daughter': 1.0, 'center': 1.0, '2x': 1.0, 'get': 1.0, 'and': 1.0, 'loved': 1.0, 'daily': 1.0, 'it': 1.0, 'see': 1.0, '31lbs': 1.0, 'a': 2.0, 'used': 1.0, 'down': 1.0, 'crack': 1.0, 'came': 1.0, 'to': 2.0, 'call': 1.0}
Word element => {'there': 1.0, 'feeling': 1.0, 'at': 1.0, 'safe': 1.0, 'no': 1.0, '12': 1.0, 'sat': 1.0, 'little': 1.0, 'with': 1.0, 'so': 2.0, 'cozy': 1.0, 'and': 2.0, 'chunky': 1.0, 'couple': 1.0, 'by': 1.0, 'it': 3.0, 'she': 1.0, 'fun': 1.0, 'years': 1.0, 'herself': 1.0, 'in': 2.0, 'perfect': 1.0, 'for': 4.0, 'using': 1.0, 'my': 1.0, 'baby': 1.0, 'started': 1.0, 'toddler': 2.0, 'early': 1.0, 'problems': 1.0, 'bottoms': 2.0, 'or': 1.0, 'all': 1.0, 'our': 1.0, 'into': 1.0, 'case': 1.0, 'toilets': 1.0, 'months': 1.0, 'bought': 1.0, 'still': 1.0, 'use': 1.0, 'the': 1.0, 'hood': 1.0, 'far': 1.0, 's': 1.0, 'we': 2.0, 'a': 1.0, 'different': 1.0}
Word element => {'for': 1.0, 'get': 1.0, 'will': 1.0, 'us': 1.0, 'appreciate': 1.0, 'situation': 1.0, 'if': 1.0, 'sending': 1.0, 'getting': 1.0, 'suggest': 1.0, 'i': 2.0, 'so': 1.0, 'back': 2.0, 'many': 2.0, 'destroyed': 1.0, 'pictures': 1.0, 'after': 1.0, 'you': 1.0, 'times': 1.0, 'twins': 2.0, 'them': 2.0, 'middle': 1.0, 'splitting': 1.0, 'throughout': 1.0, 'issued': 1.0, 'next': 1.0, 'that': 1.0, 'into': 1.0, 'they': 1.0, 'a': 5.0, 'we': 8.0, 'contacted': 1.0, 'have': 2.0, 'it': 2.0, 'only': 1.0, 'split': 1.0, 'replacement': 3.0, 'year': 1.0, 'another': 2.0, 'company': 2.0, 'in': 1.0, 'the': 8.0, 'defective': 1.0, 'but': 1.0, '2': 1.0, 'day': 1.0, 'sent': 1.0, 'proving': 1.0, 'one': 2.0, 'manufacturer': 1.0, 'using': 1.0, 'are': 2.0, 'few': 1.0, 'just': 2.0, 'our': 1.0, 'to': 2.0, 'seat': 1.0, 'now': 1.0, 'weeks': 1.0, 'training': 1.0, 'similar': 1.0, 'and': 4.0, 'too': 1.0, 'is': 1.0, 'brand': 1.0, 'old': 1.0, 'girls': 1.0, 'need': 1.0, 'think': 1.0, 'put': 1.0, 'on': 1.0}
Word element => {'smart': 1.0, 'happy': 1.0, 'very': 1.0, 'faulty': 1.0, 'if': 1.0, 'not': 1.0, 'off': 1.0, 'rip': 1.0, 'with': 3.0, 'plays': 1.0, 'outer': 1.0, 'has': 2.0, 'upon': 1.0, 'tries': 1.0, 'foam': 2.0, 'only': 1.0, 'there': 1.0, '6': 1.0, 'crack': 1.0, 'at': 1.0, 'improved': 1.0, 'started': 2.0, 'relatively': 1.0, 'training': 1.0, 'couldn': 1.0, 'and': 7.0, 'comfy': 1.0, 'on': 2.0, 'this': 1.0, 'it': 5.0, 'fully': 1.0, 'recommend': 1.0, 'get': 1.0, 'sure': 1.0, 'easy': 1.0, 'am': 1.0, 'happened': 1.0, 'boys': 2.0, 'just': 1.0, 'by': 1.0, 'minus': 1.0, 'have': 1.0, 'that': 1.0, 'been': 1.0, 'both': 1.0, 'i': 5.0, 'be': 1.0, 'the': 9.0, 'still': 2.0, 'yay': 1.0, '2009': 1.0, 'product': 1.0, 'love': 1.0, '22': 1.0, 'happier': 1.0, 'seat': 1.0, 'all': 1.0, 'to': 4.0, 'no': 1.0, 'even': 1.0, 'diapers': 1.0, 'early': 1.0, 'toddler': 2.0, 'said': 1.0, 'in': 1.0, 'pluses': 1.0, 'purchase': 1.0, 'my': 1.0, 'fits': 1.0, 'clean': 1.0, 'one': 2.0, 'months': 2.0, 'bought': 1.0, 'toilets': 1.0, 'trained': 1.0, 'take': 1.0, 's': 1.0, 't': 1.0, 'we': 1.0, 'go': 1.0, 'more': 1.0, 'is': 1.0, 'stable': 1.0, 'bumbo': 1.0, 'rim': 1.0, 'can': 1.0, 'start': 1.0, 'so': 1.0, 'potty': 1.0}
Word element => {'worth': 1.0, 'ready': 1.0, 'should': 1.0, 'future': 1.0, 'tell': 1.0, 'over': 2.0, 'would': 1.0, 'than': 1.0, 'base': 1.0, 'its': 1.0, 'sizewise': 1.0, 'toilet': 1.0, 'with': 1.0, 'out': 1.0, 'taken': 1.0, 'wipe': 1.0, 'regular': 1.0, 'come': 1.0, 'doesn': 1.0, 'again': 1.0, 'support': 1.0, 'whole': 1.0, 'supporting': 1.0, 'hold': 1.0, 'had': 1.0, 'tried': 1.0, 'needed': 1.0, 'house': 2.0, 'is': 5.0, 'at': 1.0, 'were': 1.0, 'comfort': 1.0, 'word': 1.0, 'unattended': 1.0, 'brought': 1.0, 'available': 1.0, 'not': 3.0, 'tall': 1.0, 'time': 6.0, 'potty': 4.0, 'can': 1.0, 'so': 4.0, 'failure': 1.0, 'i': 16.0, 'unsupported': 1.0, 'could': 2.0, 'a': 8.0, 't': 8.0, 's': 4.0, 'friend': 2.0, 'since': 1.0, 'her': 4.0, 'use': 1.0, 'actual': 3.0, 'one': 2.0, 'try': 1.0, 'purchase': 1.0, 'only': 1.0, 'hurt': 1.0, 'barely': 1.0, 'been': 1.0, 'an': 1.0, 'fits': 1.0, 'other': 1.0, 'we': 3.0, 'reviews': 1.0, 'using': 2.0, 'reading': 1.0, 'easy': 1.0, 'know': 1.0, 'for': 2.0, 'daughter': 5.0, 'infant': 1.0, 'go': 3.0, 'figured': 1.0, 'some': 1.0, 'seats': 1.0, 'why': 1.0, 'just': 2.0, 'high': 1.0, 'to': 4.0, 'any': 1.0, 'leave': 1.0, 'as': 5.0, 'read': 1.0, 'later': 1.0, 'very': 1.0, 'about': 3.0, '5': 2.0, 'on': 3.0, 'make': 3.0, 'bumbo': 4.0, 'tons': 1.0, 'months': 1.0, 'bought': 1.0, 'but': 8.0, 'training': 2.0, 'wouldn': 2.0, 'didn': 1.0, 'material': 1.0, 'understands': 1.0, 'this': 5.0, 'it': 16.0, 'others': 1.0, 'she': 6.0, 'totally': 1.0, 'super': 1.0, 'same': 1.0, 'month': 2.0, 'signals': 1.0, 'of': 5.0, 'the': 16.0, 'much': 1.0, 'put': 1.0, 'tmi': 1.0, 'me': 1.0, 'my': 6.0, 'hopefully': 1.0, 'skeptical': 1.0, 'day': 1.0, 'was': 4.0, 'old': 2.0, 'guess': 1.0, 'first': 1.0, 'diapers': 1.0, 'bad': 1.0, 'timing': 1.0, 'that': 4.0, 'because': 2.0, 'went': 1.0, 'wider': 1.0, 'after': 2.0, 'week': 1.0, 'amazed': 1.0, 'several': 1.0, 'down': 1.0, 'turned': 1.0, 've': 2.0, 'poopy': 1.0, 'types': 1.0, 'parent': 1.0, 'up': 1.0, 'change': 1.0, 'knowing': 1.0, 'more': 1.0, 'quality': 1.0, 'their': 2.0, 'and': 8.0, 'schedule': 1.0, 'getting': 1.0, 'did': 1.0, 'has': 1.0, 'next': 1.0, 'them': 1.0, 'there': 1.0, 'hadn': 1.0, 'seat': 8.0, 'in': 4.0, 'made': 1.0, 'connection': 1.0, 'though': 2.0, 'or': 1.0, 'don': 1.0, 'isn': 1.0, 'breeze': 1.0, 'pushes': 1.0, 'if': 1.0, 'every': 1.0, 'when': 1.0, 'sit': 2.0}
Word element => {'though': 1.0, 'try': 1.0, 'loved': 1.0, 'instead': 1.0, 'really': 1.0, 'his': 1.0, 'used': 1.0, 'regular': 1.0, 'in': 1.0, 'i': 4.0, 'bumbo': 3.0, 'of': 1.0, 'siting': 1.0, 'liked': 1.0, 'while': 1.0, 'this': 1.0, 'he': 3.0, 'it': 2.0, 'would': 2.0, 'was': 1.0, 'thought': 1.0, 'had': 1.0, 'pottyy': 1.0, 'kept': 1.0, 'training': 1.0, 'the': 5.0, 'is': 1.0, 'more': 1.0, 'great': 1.0, 'my': 1.0, 'so': 1.0, 'potty': 3.0, 'think': 1.0, 'have': 1.0, 'if': 1.0, 'been': 1.0, 'like': 1.0, 'to': 3.0, 'seat': 2.0, 'because': 1.0, 'wanting': 1.0, 'toilet': 1.0, 'son': 1.0, 'still': 1.0, 'we': 1.0, 'go': 1.0, 'a': 1.0, 'product': 1.0}
Word element => {'stable': 1.0, 'feels': 1.0, 'plenty': 1.0, 'because': 1.0, '37lbs': 1.0, 'both': 1.0, 'her': 3.0, 'elongated': 2.0, 'around': 1.0, 'is': 4.0, 'on': 2.0, 'condition': 1.0, 'sit': 1.0, 'have': 2.0, 'trained': 1.0, 'autistic': 1.0, 'love': 1.0, 'for': 2.0, 'just': 1.0, 'useful': 1.0, 'potty': 2.0, 'all': 1.0, 'seat': 2.0, 'to': 3.0, 'due': 1.0, 'wanted': 1.0, 'toilet': 1.0, 'an': 1.0, 'doesn': 2.0, 'able': 1.0, 'round': 1.0, 'daughter': 2.0, '4': 1.0, 'i': 2.0, 'soft': 1.0, 'this': 2.0, 'she': 2.0, 'it': 5.0, 'something': 1.0, 'and': 7.0, 'likes': 1.0, 'unstable': 1.0, 'we': 1.0, 't': 2.0, 'seats': 1.0, 'move': 2.0, 'or': 1.0, 'big': 1.0, 'great': 1.0, 'feel': 1.0, 'at': 2.0, 'fits': 1.0, 'my': 1.0, 'being': 1.0, 'hold': 1.0, 'weight': 1.0}
Word element => {'easy': 1.0, 'may': 1.0, 'in': 1.0, 'himself': 1.0, 'kid': 2.0, 'it': 1.0, 'he': 1.0, 'this': 1.0, 'likes': 1.0, 'have': 1.0, 'as': 1.0, 'potty': 2.0, 'for': 1.0, 'one': 2.0, 'a': 2.0, 'small': 1.0, 'seat': 2.0, 'we': 1.0, 'and': 2.0, 'get': 1.0, 'large': 2.0, 'our': 2.0, '2': 1.0, 'the': 4.0, 'drags': 1.0, 'putting': 1.0, 'to': 4.0, 'use': 2.0, 'be': 1.0, 'll': 1.0, 'floor': 2.0, 'stool': 1.0, 'on': 1.0}
Word element => {'that': 1.0, 'sure': 1.0, 'not': 1.0, 'quickly': 1.0, 'doesn': 1.0, 'i': 2.0, 'or': 1.0, 'for': 1.0, 'outgrow': 1.0, 'adaptive': 1.0, 'regular': 1.0, 'houses': 1.0, 'home': 1.0, 'weight': 1.0, 'of': 1.0, 'supporting': 1.0, 'armpits': 1.0, 'under': 1.0, 'the': 1.0, 'hands': 1.0, 'm': 1.0, 'both': 1.0, 'vs': 1.0, 'torso': 1.0, 'on': 4.0, 'support': 2.0, 'up': 1.0, 'good': 1.0, 'her': 4.0, 'sit': 1.0, 'have': 3.0, 'what': 1.0, 'palsy': 1.0, 'when': 1.0, 'severe': 1.0, 'full': 1.0, 'this': 2.0, 'do': 1.0, 'only': 1.0, 't': 1.0, 'go': 1.0, 'a': 2.0, 'we': 6.0, 'other': 1.0, 'toilet': 1.0, 'own': 1.0, 'hope': 1.0, 'just': 1.0, 'cerebral': 1.0, 'are': 2.0, 'time': 1.0, 'friends': 1.0, 'so': 1.0, 'potty': 4.0, 'training': 1.0, 'but': 2.0, '5': 1.0, 'than': 1.0, 'has': 1.0, 've': 1.0, 'old': 1.0, 'supportive': 1.0, 'tried': 1.0, 'year': 1.0, 'daughter': 1.0, 'at': 2.0, 'who': 1.0, 'provide': 1.0, 'while': 1.0, 'hand': 1.0, 'cannot': 1.0, 'using': 2.0, 'one': 1.0, 'comes': 1.0, 'is': 2.0, 'more': 1.0, 'all': 1.0, 'our': 2.0, 'to': 2.0, 'seat': 5.0, 'any': 1.0, 'she': 2.0, 'it': 2.0, 'backs': 1.0, 'too': 1.0, 'and': 1.0, 'll': 1.0, 'thankful': 1.0, 'need': 1.0}
Word element => {'get': 1.0, 'want': 1.0, 'if': 1.0, 'recommend': 1.0, 'highly': 1.0, 'year': 1.0, 'use': 1.0, 'mind': 1.0, 'back': 1.0, 'crack': 1.0, 'will': 1.0, 'bottom': 1.0, 'of': 1.0, 'baby': 2.0, 'high': 1.0, 'soft': 1.0, 'i': 5.0, 'it': 8.0, 'absolutely': 1.0, 'for': 1.0, 'love': 1.0, 'one': 4.0, 'the': 8.0, 'job': 1.0, 'supporting': 1.0, 'toilet': 2.0, 'recently': 1.0, 'has': 1.0, 'in': 1.0, 'first': 1.0, 'beginning': 1.0, 'and': 3.0, 'starting': 1.0, 'don': 1.0, 'threw': 1.0, 'seat': 2.0, 'to': 2.0, 'away': 1.0, 'now': 1.0, 'does': 1.0, 'than': 1.0, 'but': 2.0, 'four': 1.0, 'you': 2.0, 'am': 1.0, 'just': 1.0, 'worried': 1.0, 'another': 1.0, 'my': 1.0, 'purchase': 1.0, 'into': 1.0, 'that': 1.0, 'say': 1.0, 'is': 1.0, 'more': 2.0, 'fall': 1.0, 'so': 1.0, 't': 1.0, 's': 2.0, 'a': 1.0, 'would': 1.0, 'something': 1.0, 'super': 1.0, 'new': 1.0}
Word element => {'clean': 1.0, 'is': 1.0, 'been': 1.0, 'all': 1.0, 'have': 1.0, 'would': 1.0, 'potty': 1.0, 'no': 1.0, 'own': 1.0, 'easy': 1.0, 'she': 1.0, 'to': 1.0, 'was': 1.0, 'when': 1.0, 'daughter': 1.0, 'that': 1.0, 'supportive': 1.0, 'our': 1.0, 'toilet': 1.0, 'other': 1.0, 'we': 2.0, 'capable': 1.0, 'love': 1.0, 'one': 2.0, 'using': 1.0, 'sitting': 1.0, 'the': 1.0, 'seat': 1.0, 'not': 1.0, 'started': 1.0, 'it': 1.0, 'this': 1.0, 'with': 1.0, '5': 1.0, 'piece': 1.0, 'on': 1.0, 'months': 1.0, 'old': 1.0, 'and': 3.0, 'as': 2.0, 'very': 1.0, 'up': 1.0, 'of': 1.0, 'her': 1.0}
Word element => {'year': 1.0, 'a': 1.0, 'milk': 1.0, 'leave': 1.0, 'they': 1.0, 'for': 1.0, 'note': 1.0, 'was': 1.0, 'had': 1.0, 'to': 2.0, 'super': 1.0, 'were': 1.0, 'that': 1.0, 'santa': 1.0, 'kids': 1.0, 'too': 1.0, 'bad': 1.0, 'find': 1.0, 'out': 1.0, 'and': 1.0, 'me': 1.0, 'excited': 1.0, 'it': 1.0, 'this': 1.0}
Word element => {'happy': 1.0, 'very': 1.0, 'what': 1.0, 'exactly': 1.0, 'purchased': 1.0, 'i': 1.0, 'wanted': 1.0, 'was': 1.0, 'not': 1.0, 'nursery': 1.0, 'classy': 1.0, 'a': 1.0, 'for': 1.0, 'lampshade': 1.0, 'it': 1.0, 'this': 1.0, 'and': 1.0, 'matching': 1.0, 'bought': 1.0, 'elegant': 1.0, 'ish': 1.0, 'baby': 1.0, 'also': 1.0, 'the': 1.0}
Word element => {'ruffle': 1.0, 'dust': 1.0, 'there': 1.0, 'disappointed': 1.0, 'then': 1.0, 'absolutely': 1.0, 'also': 1.0, 'other': 1.0, 'll': 1.0, 'curtains': 2.0, 'not': 1.0, 'decals': 1.0, 'no': 1.0, 'wall': 1.0, 'diaper': 1.0, 'find': 1.0, 'able': 1.0, 'was': 1.0, 'difficult': 1.0, 'stacker': 1.0, 'be': 2.0, 'pieces': 1.0, 'matching': 1.0, 'looking': 1.0, 're': 1.0, 'want': 1.0, 'if': 2.0, 'set': 1.0, 'for': 1.0, 'love': 1.0, 'excited': 1.0, 'first': 1.0, 'this': 1.0, 'in': 3.0, 'stripes': 1.0, 'crib': 1.0, 'tad': 1.0, 'the': 5.0, 'but': 1.0, '2': 1.0, 'may': 1.0, 'my': 2.0, 'pink': 1.0, 'mind': 1.0, 'with': 2.0, 'date': 1.0, 'downside': 1.0, 'baby': 2.0, 'it': 4.0, 'fell': 1.0, 'you': 3.0, 'when': 2.0, 'am': 1.0, 'bit': 1.0, 'so': 4.0, 'i': 7.0, '4': 1.0, 'mobile': 1.0, 'months': 1.0, 'as': 1.0, 'to': 3.0, 'tiny': 1.0, 'only': 2.0, 'its': 1.0, 'girls': 1.0, 'arrived': 1.0, 'on': 2.0, 'put': 1.0, 'saw': 1.0, 'and': 2.0, 'had': 1.0, 'purchased': 1.0, 'before': 1.0, 'collection': 1.0, 'due': 1.0, 'have': 2.0, 'just': 1.0, 'would': 1.0, 'keep': 1.0, 'since': 1.0, 'might': 1.0, 'go': 1.0, 's': 1.0, 'a': 3.0, 'they': 1.0, 'left': 1.0, 'is': 2.0, 'that': 2.0, 'discontinued': 1.0}
Word element => {'color': 1.0, 'the': 1.0, 'them': 1.0, 't': 1.0, 'lavender': 1.0, 'beautiful': 1.0, 'picture': 1.0, 'love': 1.0, 'wait': 1.0, 'can': 1.0, 'pictured': 1.0, 'frames': 1.0, 'for': 1.0, 'to': 1.0, 'much': 1.0, 'background': 1.0, 'than': 1.0, 'hang': 1.0, 'bigger': 1.0, 'baby': 1.0, 's': 1.0, 'room': 1.0}
Word element => {'tape': 1.0, 'double': 1.0, 'sided': 1.0, 'but': 1.0, 'doesn': 1.0, 'best': 1.0, 'stick': 1.0, 'decal': 1.0, 'room': 2.0, 'all': 1.0, 'babies': 1.0, 'didn': 1.0, 'my': 2.0, 't': 2.0, 'the': 4.0, 'for': 1.0, 'decor': 1.0, 'works': 1.0, 'what': 1.0, 'know': 1.0, 'and': 1.0, 'wonders': 1.0, 'got': 1.0, 'i': 2.0, 'sex': 1.0, 'of': 2.0, 'beautiful': 1.0, 'addition': 1.0, 'baby': 1.0, 'this': 1.0, 'it': 1.0, 'a': 1.0, 'was': 2.0, 'to': 1.0}
Word element => {'room': 1.0, 'the': 3.0, 'my': 1.0, 'now': 1.0, 'to': 1.0, 'has': 1.0, 'addition': 1.0, 'adds': 1.0, 'cute': 2.0, 'nursery': 1.0, 'so': 2.0, 'is': 1.0, 'really': 1.0, 'looks': 1.0, 'and': 2.0, 'whole': 2.0, 'with': 1.0, 'this': 1.0, 'set': 2.0, 'she': 1.0, 'granddaughters': 1.0, 'a': 1.0, 'in': 1.0, 'perfect': 1.0}
Word element => {'princess': 1.0, 'fit': 1.0, 'or': 1.0, 'good': 1.0, 'seen': 1.0, 'never': 1.0, 've': 1.0, '9829': 1.0, 'used': 1.0, 'prince': 1.0, 'material': 1.0, 'for': 1.0, 'one': 1.0, 'love': 1.0, 'gorgeously': 1.0, 'border': 1.0, 'i': 2.0, 'beautiful': 2.0, 'the': 2.0, 'such': 1.0, 'is': 2.0, 'know': 1.0, 'and': 2.0, 'very': 1.0, 'it': 3.0, 'this': 3.0, 'omg': 1.0, 'soft': 1.0, 's': 2.0, 'a': 3.0, 'well': 1.0, 'totally': 1.0, 'crib': 1.0, 'little': 2.0, 'worth': 1.0, 'recomend': 1.0, 'pricey': 1.0, 'but': 1.0, 'so': 1.0, 'definitely': 1.0, 'bedding': 2.0, 'made': 2.0}
Word element => {'expected': 1.0, 'better': 1.0, 'bill': 1.0, 'this': 1.0, 'standard': 2.0, 'animals': 1.0, 'not': 1.0, 'was': 1.0, 'fluffy': 1.0, 'and': 3.0, 'very': 1.0, 'butterflies': 1.0, 'than': 1.0, 'sophisticated': 1.0, 'set': 2.0, 'your': 1.0, 'i': 1.0, 'fits': 1.0, 'bedding': 1.0, 'made': 1.0, 'the': 2.0, 'well': 1.0, 'for': 1.0, 'something': 1.0, 'item': 1.0, 'looking': 1.0, 'without': 1.0, 'baby': 2.0, 'colors': 1.0}
Word element => {'decoration': 1.0, 'sleep': 1.0, 'help': 1.0, 'having': 1.0, 'than': 1.0, 'rather': 1.0, 'piece': 1.0, 'on': 1.0, 'is': 2.0, 'lull': 1.0, 'bedding': 1.0, 'daughters': 1.0, 'to': 2.0, 'matches': 1.0, 'trying': 1.0, 'enjoys': 1.0, 'pull': 1.0, 'my': 2.0, 'cheap': 1.0, 'daughter': 1.0, 'down': 1.0, 'her': 3.0, 'otherwise': 1.0, 'looking': 1.0, 'pretty': 1.0, 'it': 4.0, 'and': 2.0, 'impressed': 1.0, 'a': 2.0, 'crib': 1.0, 'functional': 1.0, 'little': 1.0, 'not': 2.0, 'just': 1.0, 'that': 1.0}
Word element => {'are': 2.0, 'fabrics': 1.0, 'and': 1.0, 'do': 1.0, 'unusable': 1.0, 'not': 1.0, 'just': 1.0, 'because': 1.0, 'daughter': 1.0, 'itchy': 1.0, 'my': 1.0, 'made': 1.0, 'replace': 1.0, 'the': 3.0, 'very': 1.0, 's': 1.0, 'collection': 2.0, 'entire': 2.0, 'it': 1.0, 'this': 1.0, 'for': 1.0, 'felt': 1.0, 'is': 2.0, 'on': 1.0, 'of': 1.0, 'bedroom': 1.0, 'mobile': 1.0, 'angels': 1.0, 'appear': 1.0, 'glued': 1.0, 'breathe': 1.0, 'that': 1.0, 'was': 1.0, 'had': 1.0, 'to': 2.0, 'material': 1.0, 'be': 1.0, 'or': 1.0, 'cheap': 2.0, 'i': 1.0, 'stapled': 1.0}
Word element => {'is': 1.0, 'baby': 1.0, 'a': 1.0, 'not': 1.0, 'fit': 1.0, 'did': 1.0, 'fits': 1.0, 'but': 2.0, 'easy': 2.0, 'to': 2.0, 'assemble': 1.0, 'i': 1.0, 'way': 1.0, 'it': 2.0, 'love': 1.0, 'seat': 2.0, 'the': 1.0, 'navigate': 1.0, 'my': 1.0, 'graco': 1.0, 'secure': 1.0, 'trend': 1.0, 'car': 2.0}
Word element => {'strolling': 1.0, 'jogging': 1.0, 'be': 2.0, 'lay': 1.0, 'buy': 1.0, 'has': 1.0, 'trunk': 3.0, 'good': 1.0, 'don': 1.0, 'child': 1.0, 'i': 8.0, '4': 1.0, 'radius': 1.0, 'space': 1.0, 'and': 7.0, 'seat': 1.0, 'in': 5.0, 'turning': 1.0, 'easy': 1.0, 'take': 2.0, 'crowded': 1.0, 'for': 1.0, 'my': 4.0, 'maneuver': 1.0, 'fit': 1.0, 't': 3.0, 's': 2.0, 'maneuverability': 1.0, 'a': 4.0, 'forward': 1.0, 'size': 1.0, 'back': 2.0, 'top': 1.0, 'at': 3.0, 'is': 4.0, 'handle': 1.0, 'doesn': 2.0, 'this': 3.0, 'that': 1.0, 'into': 1.0, 'awkward': 1.0, 'can': 5.0, 'so': 3.0, 'people': 1.0, 'co': 1.0, 'have': 4.0, 'bump': 1.0, 'thing': 1.0, 'sedan': 1.0, 'daughter': 1.0, 'wheels': 1.0, 'when': 2.0, 'you': 1.0, 'perfect': 3.0, 'barely': 2.0, 'it': 9.0, 'to': 6.0, 'pulled': 1.0, 'wheel': 1.0, 'only': 1.0, 'too': 2.0, 'try': 1.0, 'front': 1.0, 'screen': 1.0, 'bulky': 2.0, 'would': 1.0, 'your': 1.0, 'much': 1.0, 'put': 2.0, 'storage': 2.0, 'love': 1.0, 'bottom': 1.0, 'cupholders': 1.0, 'stroller': 1.0, 'problem': 1.0, 'huge': 1.0, 'way': 1.0, 'door': 1.0, 'swivels': 1.0, 'see': 1.0, 'off': 1.0, 'had': 1.0, 'places': 1.0, 'everything': 1.0, 'turn': 2.0, 'if': 1.0, 'out': 1.0, 'the': 11.0, 'popping': 1.0, 'of': 1.0, 'spin': 1.0, 'anything': 1.0, 'there': 1.0, 'groceries': 1.0, 'were': 1.0, 'up': 1.0, 'tad': 1.0, 'takes': 1.0, 'less': 1.0}
Word element => {'nephew': 1.0, 'appropriate': 1.0, 'more': 1.0, 'colored': 1.0, 'find': 1.0, 'days': 1.0, 'business': 1.0, '2': 1.0, 'trim': 1.0, 'grey': 1.0, 'has': 1.0, 'up': 1.0, 'picture': 1.0, 'didn': 1.0, 'safety': 1.0, 'on': 2.0, 'a': 4.0, 's': 1.0, 'we': 1.0, 'check': 1.0, 'back': 1.0, 'understanding': 1.0, 'great': 1.0, 'quartz': 1.0, 'pink': 1.0, 'with': 2.0, 'all': 1.0, 'to': 7.0, 't': 2.0, 'beat': 1.0, 'listed': 1.0, 'and': 4.0, 'like': 1.0, 'terms': 1.0, 'in': 5.0, 'refunded': 1.0, 'once': 1.0, 'have': 1.0, 'you': 4.0, 'am': 1.0, 'fault': 1.0, 'as': 1.0, 'zoom': 1.0, 'within': 1.0, 'problem': 1.0, 'that': 6.0, 'rose': 1.0, 'only': 1.0, 'is': 5.0, 'say': 1.0, 'it': 4.0, 'this': 5.0, 'stability': 1.0, 'wonderful': 1.0, 'amazon': 1.0, 'of': 1.0, 'the': 10.0, 'price': 1.0, 'i': 8.0, 'my': 3.0, 'color': 3.0, 'can': 2.0, 'so': 3.0, 'boy': 2.0, 'are': 3.0, 'looking': 2.0, 'buy': 2.0, 'for': 3.0, 'baby': 2.0, 'girl': 1.0, 'took': 1.0, 'flip': 1.0, 'which': 1.0, 'side': 1.0, 'was': 2.0, 'not': 1.0, 'two': 1.0, 'upset': 1.0, 'very': 1.0, 'had': 1.0, 'return': 2.0, 'returned': 1.0, 'due': 1.0, 'over': 1.0, 'misleading': 1.0, 'discover': 1.0, 'will': 2.0, 'stroller': 7.0, 'luck': 1.0, 'item': 2.0, 'hospitable': 1.0, 'lucky': 1.0, 'description': 1.0, 'customer': 1.0, 'their': 1.0, 'if': 2.0, 'service': 1.0, 'returning': 1.0, 'com': 1.0, 'print': 1.0, 'minutes': 1.0, 'label': 1.0, 'll': 1.0, 'be': 2.0, 'shipping': 1.0, 'tomorrow': 1.0}
Word element => {'system': 1.0, 'braking': 1.0, 'also': 1.0, 'out': 1.0, 'position': 1.0, 'smallest': 1.0, 'cars': 1.0, 'such': 1.0, 'adjustable': 1.0, 'in': 2.0, 'it': 6.0, 'this': 1.0, 'when': 3.0, 'easily': 1.0, 'protective': 1.0, 'fall': 1.0, 'is': 1.0, 'ease': 1.0, 'an': 1.0, 'to': 2.0, 'the': 1.0, 'asleep': 1.0, 'even': 1.0, 'reclines': 1.0, 'fits': 1.0, 'use': 2.0, 'up': 2.0, 'grandmas': 1.0, 'sunny': 1.0, 'opens': 1.0, 'folds': 1.0, 'packing': 1.0, 'so': 1.0, 'great': 2.0, 'comfortable': 2.0, 'for': 1.0, 'love': 1.0, 'too': 2.0, 'and': 3.0, 'moms': 1.0, 'into': 1.0, 'babies': 2.0, 'space': 1.0, 'toddlers': 1.0, 'they': 1.0, 'has': 2.0, 're': 1.0, 'sleeping': 1.0, 'visor': 1.0, 'a': 3.0, 's': 1.0}
Word element => {'okay': 1.0, 'rolling': 1.0, 'quality': 1.0, 'but': 1.0, 'work': 1.0, 'paid': 1.0, 'converted': 1.0, 'his': 2.0, 'does': 1.0, 'from': 1.0, 'very': 1.0, 'one': 1.0, 'bed': 1.0, 'i': 4.0, 'for': 1.0, 'cheap': 1.0, 'needed': 1.0, 'have': 1.0, 'denser': 1.0, 'comfy': 1.0, 'and': 2.0, 'crib': 1.0, 'would': 2.0, 'something': 1.0, 'my': 1.0, 'safe': 1.0, 'really': 1.0, 'more': 1.0, 'is': 1.0, 'keep': 1.0, 'off': 1.0, 'lil': 1.0, 'to': 3.0, 'any': 1.0, 'price': 2.0, 'toddler': 1.0, 'height': 1.0, 'however': 1.0, 'the': 2.0, 'taller': 1.0, 'foam': 2.0, 'expected': 2.0, 'much': 2.0, 'though': 1.0, 'bit': 1.0, 'a': 2.0, 'higher': 1.0, 'it': 2.0, 'be': 1.0, 'in': 1.0, 'seem': 1.0}
Word element => {'security': 1.0, 'reviewer': 1.0, 'whole': 1.0, 'astronomical': 1.0, '5': 1.0, 'instead': 1.0, '4': 1.0, 'honestly': 1.0, 'getting': 1.0, 'completely': 1.0, 'on': 1.0, 'manufacture': 1.0, 'foot': 1.0, 'up': 1.0, 'difficult': 1.0, 'quite': 2.0, 'down': 1.0, 'hold': 1.0, 'weight': 1.0, 'own': 1.0, 'price': 1.0, 'child': 1.0, 'by': 1.0, 'stops': 1.0, 'from': 1.0, 'stop': 1.0, 'collapses': 1.0, 'designed': 1.0, 'knee': 1.0, 'was': 2.0, 'anyway': 1.0, 's': 1.0, 'maybe': 1.0, 'not': 1.0, 'am': 1.0, 'thus': 1.0, 'cost': 1.0, 'rest': 1.0, 'be': 1.0, 'genius': 1.0, 'will': 1.0, 'half': 1.0, 'using': 1.0, 'reason': 2.0, 'some': 1.0, 'for': 3.0, 'might': 1.0, 'over': 2.0, 'weeks': 1.0, '3': 2.0, 'guy': 1.0, 'about': 3.0, 'no': 4.0, 'thing': 2.0, 'however': 2.0, 'now': 3.0, 'emergencies': 1.0, 'asleep': 2.0, 'keep': 1.0, 'anything': 1.0, 'without': 1.0, 'works': 2.0, 'put': 1.0, 'fear': 1.0, 'do': 3.0, 'much': 1.0, 'and': 9.0, 'them': 1.0, 'has': 1.0, 'they': 1.0, 'arrived': 1.0, 'simply': 1.0, 'only': 2.0, 'quickly': 1.0, 'but': 1.0, 'll': 1.0, 'pillow': 2.0, 'right': 1.0, 'job': 1.0, 'to': 10.0, 'our': 1.0, 'look': 1.0, 'is': 7.0, 'more': 1.0, 'the': 14.0, 'of': 10.0, 'bed': 8.0, 'necessary': 1.0, 'we': 1.0, 'then': 1.0, 'leg': 1.0, '34': 7.0, 'soon': 1.0, 'there': 3.0, 'falls': 1.0, 'body': 3.0, 'as': 4.0, 'systems': 1.0, 'previous': 1.0, 'their': 1.0, 'better': 1.0, 'i': 6.0, 'a': 7.0, 'sit': 1.0, 'roll': 3.0, 'when': 1.0, 'way': 4.0, 'first': 1.0, 'have': 2.0, 'going': 1.0, 'incidents': 1.0, 'my': 2.0, 'gave': 1.0, 'often': 1.0, 'these': 1.0, 'been': 2.0, 'because': 1.0, 'fall': 1.0, 'that': 5.0, 'stated': 1.0, 'little': 3.0, 'uphill': 1.0, 'very': 1.0, 'probably': 1.0, 'flimsy': 1.0, 'any': 1.0, 'feel': 1.0, 'flail': 1.0, 'er': 1.0, 'or': 1.0, 'need': 1.0, 'falling': 2.0, 'wedge': 1.0, 'in': 3.0, 'absolutely': 1.0, 'asking': 1.0, 'out': 6.0, 'concern': 2.0, 'pay': 1.0, 'making': 1.0, 'sleep': 1.0, 'perhaps': 1.0, 'importantly': 1.0, 'rolling': 1.0, 'too': 2.0, 'one': 3.0, 'get': 2.0, 'still': 1.0, 'if': 2.0, 'thrown': 1.0, 'late': 2.0, 'you': 2.0, 'night': 2.0, 'potty': 1.0, 'constantly': 1.0, 'can': 1.0, 'so': 1.0, 'just': 1.0, 'sprint': 1.0, 'other': 1.0, 'this': 4.0, 'rail': 1.0, 'type': 1.0, 'stars': 1.0, 'kept': 2.0, 'though': 1.0, 'problem': 1.0, 'possible': 1.0, 'during': 1.0, 'already': 1.0, 'thought': 1.0, 'it': 13.0, 'him': 5.0, 'simplicity': 1.0, 'roller': 1.0, 'unfortunately': 1.0, 'also': 1.0, 'squishy': 1.0, 'those': 1.0, 'actually': 2.0, 'system': 1.0, 'he': 2.0, 'hand': 1.0, 'wants': 1.0, 'oh': 1.0, 'with': 2.0, 'arm': 1.0}
Word element => {'however': 1.0, 'our': 2.0, 'with': 1.0, 'wouldn': 1.0, 'only': 2.0, 'this': 1.0, 'it': 4.0, 'he': 1.0, 'r': 1.0, 'bought': 1.0, 'usual': 1.0, 'target': 1.0, 'buy': 1.0, 'overpriced': 1.0, 'you': 1.0, 'wall': 1.0, 'way': 1.0, 'reason': 1.0, 't': 2.0, 'we': 1.0, 'us': 1.0, 'bed': 3.0, 'product': 1.0, 'for': 1.0, 'old': 1.0, 'rail': 1.0, 'work': 1.0, 'at': 1.0, 'doesn': 1.0, 'was': 2.0, 'does': 1.0, 'because': 1.0, 'just': 1.0, 'babies': 1.0, 'bumpi': 1.0, 'choice': 1.0, 'my': 1.0, 'is': 1.0, 'stay': 2.0, 'the': 4.0, 'place': 1.0, 'and': 1.0, '3': 1.0, 'his': 1.0, 'year': 1.0, 'in': 2.0, 'kicks': 1.0, 'or': 1.0, 'pushes': 1.0, 'over': 1.0}
Word element => {'his': 1.0, 'mom': 1.0, 's': 2.0, 'malachai': 1.0, 'snuggly': 1.0, 'this': 1.0, 'blanket': 1.0, 'skin': 1.0, 'feel': 1.0, 'with': 1.0, 'is': 1.0, 'agree': 1.0, 'the': 2.0, 'it': 1.0, 'love': 1.0, 'great': 1.0, 'and': 1.0, 'baby': 1.0, 'its': 1.0, 'how': 1.0, 'textureand': 1.0, 'soft': 1.0, 'makes': 1.0}
Word element => {'bag': 1.0, 'enough': 1.0, 'around': 1.0, 'new': 1.0, 'carry': 1.0, 'some': 1.0, 'loves': 1.0, 'this': 1.0, 'hard': 1.0, 'it': 3.0, 'she': 1.0, 'got': 1.0, 'granddaughter': 1.0, 'mom': 1.0, 'small': 1.0, 'my': 2.0, 'too': 2.0, 'and': 1.0, 'easy': 1.0, 'get': 1.0, 'quality': 1.0, 'book': 1.0, 'brag': 1.0, 'doesn': 1.0, 'copy': 1.0, 'to': 2.0, 'as': 1.0, 'outside': 1.0, 'means': 1.0, 'for': 2.0, 'photos': 1.0, 'throw': 1.0, 'of': 1.0, 'grubby': 1.0, 'little': 1.0, 'girl': 1.0, 'good': 1.0, 'her': 1.0, 'clean': 1.0, 'material': 1.0, 'your': 1.0, 'on': 1.0, 'the': 1.0, 'a': 1.0, 't': 1.0, 'if': 1.0, 'you': 1.0, 'just': 1.0, 'in': 1.0}
Word element => {'so': 1.0, 'of': 1.0, 'because': 1.0, 'can': 1.0, 'it': 2.0, 'i': 1.0, 'lost': 1.0, 'the': 1.0, 'onto': 1.0, 'clip': 1.0, 'hold': 1.0, 'clothing': 1.0, 'now': 1.0, 'doesn': 1.0, 'securely': 1.0, 'return': 1.0, 'we': 1.0, 'this': 1.0, 't': 2.0, 'have': 1.0}
Word element => {'animals': 1.0, 'theme': 1.0, 'jungle': 1.0, 'in': 1.0, 'decked': 1.0, 'hot': 1.0, 'quality': 1.0, 'and': 1.0, 'pretty': 1.0, 'lol': 1.0, 'entire': 1.0, 'bright': 1.0, 'picture': 1.0, 'very': 1.0, 'pink': 1.0, 'awesome': 1.0, 'great': 1.0, 'love': 2.0, 'it': 1.0, 'frame': 1.0, 'buying': 1.0, 'babies': 1.0, 'carters': 2.0, 'i': 1.0, 'products': 1.0, 'color': 1.0, 'my': 1.0, 'room': 1.0, 'is': 1.0}
Word element => {'received': 1.0, 'well': 1.0, 'baby': 1.0, 'a': 1.0, 'cute': 1.0, 'of': 1.0, 'frame': 1.0, 'picture': 1.0, 'i': 1.0, 'it': 2.0, 'was': 1.0, 'at': 1.0, 'part': 1.0, 'used': 1.0, 'and': 1.0, 'as': 1.0, 'shower': 1.0, 'the': 1.0, 'decoration': 1.0}
Word element => {'often': 1.0, 'products': 1.0, 'bright': 2.0, 'isn': 1.0, 'own': 1.0, 'backup': 1.0, 'floppies': 1.0, 'thinner': 1.0, 'that': 1.0, 'also': 1.0, 'nuk': 1.0, 'cleaning': 1.0, 'messes': 1.0, 'small': 1.0, 'good': 1.0, 'clean': 1.0, 'wipe': 1.0, 'easy': 1.0, 'super': 2.0, 'cleanup': 1.0, 'runaway': 1.0, 'travel': 1.0, 'placemat': 3.0, 'sturdy': 1.0, 'were': 1.0, 'to': 1.0, 'our': 4.0, 'easier': 1.0, 'placemats': 3.0, 'us': 1.0, 'dishwasher': 1.0, 'in': 2.0, 'regular': 1.0, 'foods': 1.0, 'single': 1.0, 'is': 4.0, 'rim': 1.0, 'but': 3.0, 'loud': 1.0, 'toddler': 1.0, 'the': 4.0, 'got': 1.0, 'sits': 1.0, 'so': 4.0, 'cloth': 1.0, 'are': 1.0, 'eats': 1.0, 'am': 1.0, 'be': 2.0, 'kid': 1.0, 'happy': 1.0, 'thorough': 1.0, 'with': 3.0, 'it': 4.0, 'like': 1.0, 'table': 1.0, 'too': 1.0, 'green': 2.0, 'toss': 1.0, 'and': 3.0, 'since': 1.0, 'at': 1.0, 'i': 4.0, 'two': 1.0, 'things': 1.0, 'constantly': 1.0, 'washed': 1.0, 'up': 1.0, 'blends': 1.0, 'needing': 1.0, 'not': 1.0, 'worried': 1.0, 'just': 1.0, 'for': 5.0, 'color': 1.0, 'bought': 1.0, 'one': 2.0, 'this': 2.0, 'doing': 1.0, 'or': 3.0, 'laundry': 1.0, 'makes': 1.0, 'substantial': 1.0, 'buy': 1.0, 'ever': 1.0, 'day': 1.0, 'much': 2.0, 'might': 1.0, 't': 1.0, 's': 2.0, 'a': 3.0, 'great': 1.0, 'nice': 2.0}
Word element => {'leave': 1.0, 'flat': 1.0, 'surface': 1.0, 'want': 1.0, 'if': 2.0, 'is': 2.0, 'good': 1.0, 'clean': 2.0, 'table': 1.0, 'like': 1.0, 'product': 1.0, 'for': 3.0, 'dishwasher': 1.0, 'in': 2.0, 'easy': 1.0, 'very': 1.0, 'it': 6.0, 'with': 1.0, 'way': 1.0, 'i': 2.0, 'you': 2.0, 'contain': 1.0, 'young': 1.0, 'old': 2.0, 'tried': 1.0, 'child': 1.0, 'up': 1.0, 'immediately': 1.0, 'too': 1.0, 'toss': 1.0, 'and': 1.0, 'year': 2.0, 'edges': 1.0, '1': 1.0, 'do': 1.0, 'the': 5.0, 'they': 1.0, 'visiting': 1.0, 'your': 1.0, 'think': 1.0, 'on': 1.0, 'well': 1.0, 'a': 3.0, 'mat': 1.0, 'this': 1.0, 'found': 1.0, 'my': 1.0, 'to': 2.0, 'was': 1.0, 'throw': 1.0, 'onto': 1.0, 'floor': 1.0, 'so': 1.0, 'friends': 1.0, 'not': 2.0, 'useful': 2.0, 'us': 1.0, 'can': 1.0, '2': 1.0, 'food': 2.0, 'but': 2.0}
Word element => {'well': 1.0, 'work': 1.0, 'years': 1.0, 'under': 1.0, 'grandkids': 1.0, '3': 2.0, 'have': 1.0, 'old': 1.0, 'i': 1.0, 'kids': 1.0, 'small': 1.0, 'with': 1.0, 'people': 1.0, 'them': 1.0, 'very': 1.0, 'for': 3.0, 'set': 1.0, '4': 1.0, 'to': 1.0, 'my': 1.0, 'are': 1.0, 'grandsons': 1.0, 'product': 1.0, 'be': 1.0, 'bought': 1.0, 'ones': 1.0, 'great': 1.0, 'just': 1.0, 'seem': 1.0, 'what': 1.0, 'expensive': 1.0, 'they': 2.0, 'and': 1.0, 'matching': 1.0, 'do': 1.0, 'table': 1.0, 'recommend': 1.0}
Word element => {'clean': 1.0, 'on': 1.0, 'stays': 1.0, 'generally': 1.0, 'around': 1.0, 'has': 1.0, 'easily': 1.0, 'move': 1.0, 'easy': 1.0, 'table': 1.0, 'restaurants': 1.0, 'at': 1.0, 'food': 1.0, 'so': 2.0, 'edge': 1.0, 'little': 1.0, 'because': 1.0, 'downside': 1.0, 'well': 1.0, 'a': 2.0, 'sticks': 1.0, 'slight': 1.0, 'lip': 1.0, 'is': 2.0, 'travel': 1.0, 'that': 1.0, 'awesome': 1.0, 'placemat': 1.0, 't': 1.0, 'the': 3.0, 'bulky': 1.0, 'its': 2.0, 'to': 3.0, 'doesn': 1.0, 'but': 1.0, 'we': 1.0, 'anyway': 1.0, 'and': 2.0, 'do': 1.0, 'with': 1.0, 'only': 1.0, 'this': 1.0, 'it': 5.0, 'works': 1.0}
Word element => {'thing': 1.0, 'remember': 1.0, 'we': 2.0, 'plate': 1.0, 'a': 3.0, 'if': 2.0, 'when': 1.0, 'does': 1.0, 'buy': 2.0, 'you': 2.0, 'was': 1.0, 'not': 1.0, 'it': 3.0, 'this': 1.0, 'need': 1.0, 'use': 1.0, 'then': 1.0, 'pass': 1.0, 'or': 1.0, 'think': 1.0, 'napkin': 1.0, 'the': 1.0, 'silly': 1.0, 'same': 1.0}
Word element => {'spills': 1.0, 'against': 1.0, 'protects': 1.0, 'are': 1.0, 'like': 2.0, 'table': 1.0, 'i': 2.0, 'liquid': 1.0, 'does': 1.0, 'but': 1.0, 'proof': 1.0, 'momo': 1.0, 'job': 1.0, 'good': 1.0, 'protecting': 1.0, 'the': 4.0, 'a': 1.0, 'mats': 1.0, 'better': 2.0, 'thing': 1.0, 'about': 1.0, 'only': 1.0, 'this': 1.0, 'mat': 1.0, 'is': 1.0, 'raised': 1.0, 'that': 1.0, 'and': 1.0, 'skid': 1.0, 'edges': 1.0}
Word element => {'off': 1.0, 'or': 1.0, 'child': 1.0, 'throw': 1.0, 'watch': 1.0, 'pull': 1.0, 'harder': 1.0, 'drop': 1.0, 'girl': 1.0, 'take': 1.0, 'to': 3.0, 'she': 1.0, 'it': 6.0, 'with': 1.0, 'only': 1.0, 'love': 1.0, 'for': 2.0, 'i': 3.0, 'on': 1.0, 'is': 5.0, 'floor': 1.0, 'travel': 1.0, 'well': 1.0, 'this': 1.0, 'perfect': 1.0, 'in': 1.0, 'the': 3.0, 'my': 3.0, 'not': 2.0, 'baby': 1.0, 'messy': 1.0, 'who': 1.0, 'because': 1.0, 'does': 2.0, 'easy': 1.0, 'table': 2.0, 'her': 2.0, 'clean': 1.0, 'eater': 1.0, 'and': 1.0, 'issue': 1.0, 'us': 1.0, 'am': 1.0, 'when': 1.0, 'a': 1.0, 'going': 1.0, 'we': 1.0, 'that': 1.0, 'stick': 1.0, 'very': 1.0, 'wood': 1.0, 'food': 1.0, 'but': 1.0, 'if': 1.0}
Word element => {'fast': 1.0, 'quite': 1.0, 'down': 1.0, 'end': 1.0, 'hard': 1.0, 'this': 1.0, 'it': 4.0, 'rinsing': 1.0, 'folding': 1.0, 'usually': 1.0, 'purchased': 1.0, 'then': 1.0, 'in': 2.0, 'place': 1.0, 'the': 2.0, 'could': 1.0, 't': 1.0, 'enjoy': 1.0, 'picks': 1.0, 'feeding': 1.0, 'so': 1.0, 'packing': 1.0, 'fall': 1.0, 'is': 1.0, 'traveling': 1.0, 'my': 1.0, 'lip': 1.0, 'on': 1.0, 'son': 1.0, 'dusting': 1.0, 'self': 1.0, 'stays': 1.0, 'off': 1.0, 'or': 1.0, 'i': 1.0, 'up': 2.0, 'surfaces': 1.0, 'and': 2.0, 'dry': 1.0, 'wipe': 1.0, 'to': 1.0, 'for': 1.0, 'doesn': 1.0, 'roll': 1.0, 'half': 1.0, 'well': 1.0, 'due': 1.0, 'biggest': 1.0, 'lint': 1.0}
Word element => {'us': 1.0, 'well': 1.0, 'works': 1.0, 'so': 1.0, 'aqua': 1.0, 'bottle': 1.0, 'messy': 1.0, 'having': 1.0, 'watergreen': 1.0, 'helps': 1.0, '10': 1.0, 'which': 1.0, 'to': 1.0, 'how': 1.0, 'child': 1.0, 't': 1.0, 'the': 1.0, 'take': 1.0, 'that': 1.0, 'for': 1.0, 'straw': 1.0, 'yet': 2.0, 'love': 1.0, 'with': 1.0, 'it': 2.0, 'least': 1.0, 'doesn': 1.0, 'green': 2.0, 'i': 2.0, 'off': 1.0, 'at': 1.0, 'know': 1.0, 'not': 2.0, 'use': 1.0, 'ounce': 1.0, 'sprouts': 2.0, 'my': 1.0, 'cup': 1.0}
Word element => {'variety': 1.0, 'some': 1.0, 'turtles': 1.0, 'makes': 1.0, 'squirming': 1.0, 'her': 1.0, 'clean': 1.0, 'definitely': 1.0, 'interactive': 1.0, 'to': 1.0, 'float': 1.0, 'which': 1.0, 'daughter': 1.0, 'bath': 3.0, 'bought': 2.0, 'i': 3.0, 'has': 1.0, 'easier': 1.0, 'toy': 1.0, 'my': 1.0, 'another': 1.0, 've': 1.0, 'also': 1.0, 'the': 3.0, 'without': 1.0, 'most': 1.0, 'can': 1.0, 'squirters': 1.0, 'easily': 1.0, 'cute': 1.0, 'little': 1.0, 'with': 1.0, 'she': 1.0, 'it': 1.0, 'stays': 1.0, 'and': 1.0, 'squirting': 1.0, 'are': 1.0, 'lot': 1.0, 'adorable': 1.0, 'puzzle': 1.0, 'set': 1.0, 'of': 1.0, 'skip': 1.0, 'hop': 1.0, 'a': 2.0, 's': 1.0, 'go': 1.0, 'time': 1.0, 'so': 1.0}
Word element => {'health': 1.0, 'now': 1.0, 'for': 1.0, 'into': 1.0, 'quality': 2.0, 'paint': 2.0, 'third': 1.0, 'money': 1.0, 'but': 2.0, 'will': 1.0, 'your': 2.0, 'on': 2.0, 'bath': 1.0, 'loved': 1.0, 'time': 1.0, 'around': 2.0, 'is': 1.0, 'side': 2.0, 'saw': 1.0, 'went': 1.0, 'it': 3.0, 'this': 1.0, 'first': 1.0, 'great': 1.0, 'the': 8.0, 'behind': 1.0, 'and': 4.0, 'kid': 1.0, 'bits': 1.0, 'i': 2.0, 'step': 1.0, 'toy': 2.0, 'one': 2.0, 'turn': 1.0, 'in': 1.0, 'save': 1.0, 'my': 2.0, 'company': 1.0, 'year': 1.0, 'of': 2.0, 'up': 1.0, 'island': 1.0, 'peel': 1.0, 'rub': 1.0, 'to': 2.0, 'off': 2.0, 'picture': 1.0, 'began': 2.0, 'other': 1.0, 'old': 1.0, 'noticed': 1.0, 'idea': 2.0, 'when': 1.0, 'daughter': 1.0, 'a': 2.0, 's': 2.0, 'mouth': 1.0, 'maybe': 1.0}
Word element => {'fun': 1.0, 'bathtime': 1.0, 'own': 1.0, 'to': 1.0, 'brother': 1.0, 'it': 1.0, 'older': 1.0, 'won': 1.0, 'box': 1.0, 'apart': 1.0, 'adopt': 1.0, 'and': 1.0, 'island': 2.0, 'baby': 1.0, 'she': 1.0, 'turtles': 1.0, 'work': 1.0, 'into': 1.0, 'loves': 1.0, 't': 1.0, 'the': 4.0, 'for': 3.0, 'though': 1.0, 'a': 1.0, 're': 1.0, 'breaking': 1.0, 'tub': 1.0, 'we': 1.0, 'just': 1.0, 'waiting': 1.0, 'his': 1.0, 'her': 1.0}
Word element => {'rating': 1.0, 'hence': 1.0, 'quality': 1.0, 'just': 1.0, 'keeping': 1.0, 'considering': 1.0, 'm': 1.0, 'so': 1.0, 'in': 1.0, 'disappointed': 1.0, 'floats': 1.0, 'still': 1.0, 'cute': 1.0, 'is': 1.0, 'itself': 1.0, 'cup': 2.0, 'suction': 1.0, 'of': 3.0, 'within': 1.0, 'low': 1.0, 'stacker': 2.0, 'unusable': 1.0, 'and': 2.0, 'parts': 1.0, 'that': 1.0, 'post': 3.0, 'it': 2.0, 'this': 1.0, 'today': 1.0, 'package': 1.0, 'without': 1.0, 'opening': 1.0, 'item': 2.0, 'minutes': 1.0, 'plastic': 2.0, 'the': 12.0, '5': 1.0, 'i': 2.0, 'broke': 2.0, 'into': 1.0, 'off': 1.0, 'sunction': 1.0, 'received': 1.0, 'tip': 1.0, 'inserts': 1.0, 'makes': 1.0}
Word element => {'away': 1.0, 'throw': 1.0, 'but': 1.0, 'next': 1.0, 't': 1.0, 'don': 1.0, 'not': 2.0, 'said': 1.0, 'being': 1.0, 'mobile': 1.0, 'more': 1.0, 'child': 2.0, 'your': 1.0, 'rid': 1.0, 'get': 1.0, 'sharing': 1.0, 'buy': 1.0, 'gone': 1.0, 'have': 1.0, 'would': 2.0, 'inside': 1.0, 'how': 1.0, 'stand': 1.0, 'down': 1.0, 'far': 1.0, 'bottom': 1.0, 'especially': 1.0, 'will': 1.0, 'could': 1.0, 's': 6.0, 'a': 6.0, 'we': 1.0, 'too': 1.0, 'infant': 2.0, 'as': 5.0, 'to': 6.0, 'for': 2.0, '5': 1.0, '3': 1.0, 'bath': 2.0, 'on': 2.0, 'think': 1.0, 'last': 1.0, 'it': 8.0, 'heads': 1.0, 'that': 3.0, 'made': 1.0, 'purpose': 1.0, 'fun': 3.0, 'cute': 1.0, 'base': 4.0, 'here': 1.0, 'forget': 1.0, 'suction': 1.0, 'time': 1.0, 'toy': 6.0, 'really': 1.0, 'why': 1.0, 'hey': 1.0, 'up': 1.0, 'want': 1.0, 'if': 1.0, 'soon': 2.0, 'give': 1.0, 'use': 1.0, 'her': 2.0, 'steadily': 1.0, 'horrifying': 1.0, 'an': 2.0, 'you': 1.0, 'night': 1.0, 'old': 1.0, 'well': 1.0, 'i': 7.0, 'bought': 1.0, 'anchor': 1.0, 'saying': 1.0, 'warning': 1.0, 'everyone': 1.0, 'seen': 1.0, 'causing': 1.0, 'daughter': 1.0, 'my': 2.0, 'landed': 1.0, 'now': 1.0, 'was': 4.0, 'becomes': 1.0, 'she': 6.0, 'unfortunately': 1.0, 'this': 5.0, 'during': 1.0, 'having': 1.0, 'and': 3.0, 'trip': 1.0, 'kid': 1.0, 'm': 2.0, 'in': 1.0, 'of': 6.0, 'the': 11.0, 'tub': 2.0, 'plopped': 1.0, 'right': 2.0, 'top': 1.0, 'millimeter': 1.0, '2': 1.0, 'so': 2.0, 'can': 1.0, 'comes': 1.0, 'ifs': 1.0, 'out': 2.0, 'had': 1.0, 'when': 3.0, 'what': 2.0, 'er': 1.0, 'pic': 1.0, 'is': 1.0, 'at': 1.0, 'know': 1.0, 'however': 1.0, 'bit': 1.0, 'found': 1.0, 'anus': 1.0, 'fissure': 1.0, 'mainly': 1.0, 'typical': 1.0, 'differently': 1.0, 'reach': 1.0, 'angled': 1.0}
Word element => {'toddler': 1.0, 'year': 2.0, 'from': 1.0, 'stick': 1.0, 'my': 2.0, 'and': 4.0, 'daughter': 1.0, 'fun': 1.0, 'years': 1.0, 'had': 1.0, 'now': 1.0, 'to': 3.0, '2': 1.0, '1': 1.0, 'great': 1.0, 'the': 4.0, 'float': 1.0, 'is': 2.0, 'this': 3.0, 'provided': 1.0, 'have': 1.0, 'still': 1.0, 'over': 1.0, 'strong': 1.0, 'on': 2.0, 'discovered': 1.0, 'going': 1.0, 'we': 1.0, 'a': 1.0, 'it': 1.0, 'she': 2.0, 'for': 3.0, 'stars': 2.0, 'wall': 1.0, 'in': 1.0, 'duckies': 1.0, 'tub': 1.0, 'toy': 2.0, 'likes': 1.0, 'has': 2.0, 'that': 1.0, 'her': 1.0, 'rubber': 1.0, 'will': 1.0, 'top': 1.0, 'of': 2.0, 'overall': 1.0, 'recently': 1.0, 'hours': 2.0}
Word element => {'back': 1.0, 'had': 1.0, 'bang': 1.0, 'with': 1.0, 'off': 1.0, 'falling': 1.0, 'bathroom': 1.0, 'we': 1.0, 'wall': 1.0, 'idea': 1.0, 'the': 3.0, 'big': 1.0, 'of': 2.0, 'loved': 1.0, 'this': 1.0, 'to': 1.0, 'toy': 1.0, 'it': 2.0, 'send': 1.0, 'but': 1.0, 'just': 1.0, 'a': 1.0, 'kept': 1.0}
Word element => {'product': 1.0, 'into': 1.0, 'how': 1.0, 'as': 1.0, 'learns': 1.0, 'play': 1.0, 'bath': 1.0, 'provide': 1.0, 'and': 1.0, 'my': 1.0, 'cup': 1.0, 'proper': 1.0, 'suction': 1.0, 'grandson': 1.0, 'toys': 1.0, 'hold': 1.0, 'for': 1.0, 'in': 1.0, 'to': 3.0, 'toy': 1.0, 'bit': 1.0, 'a': 2.0, 'shapes': 1.0, 'is': 1.0, 'great': 1.0, 'holes': 1.0, 'heavy': 1.0, 'the': 6.0, 'are': 1.0, 'especially': 1.0, 'all': 1.0, 'container': 1.0, 'when': 1.0, 'he': 1.0, 'it': 1.0, 's': 1.0, 'time': 1.0, 'continue': 1.0, 'substantial': 1.0, 'put': 1.0, 'will': 1.0, 'but': 1.0, 'quality': 1.0}
Word element => {'side': 1.0, 'the': 2.0, 'suctioned': 1.0, 'of': 1.0, 'stay': 1.0, 'this': 1.0, 'is': 1.0, 'a': 2.0, 'bit': 1.0, 'cute': 1.0, 'tub': 1.0, 'to': 2.0, 'toy': 1.0, 'heavy': 1.0, 'but': 1.0, 'it': 1.0, 's': 1.0, 'too': 1.0}
Word element => {'wet': 1.0, 'free': 1.0, 'self': 1.0, 'most': 1.0, 'played': 1.0, 'again': 1.0, 'when': 1.0, 'to': 2.0, 'as': 1.0, 'contained': 1.0, 'way': 1.0, 'spin': 2.0, 'by': 1.0, 'or': 1.0, 'cup': 2.0, 'be': 2.0, 'suction': 2.0, 'bowl': 2.0, 'bath': 3.0, 'on': 1.0, 'strong': 1.0, 'grows': 1.0, 'right': 1.0, 'corners': 1.0, 'but': 1.0, 'stored': 1.0, 'fill': 1.0, 'toys': 6.0, 'simple': 2.0, 'itself': 2.0, 'in': 2.0, 'out': 2.0, 'dump': 1.0, 'tub': 2.0, 'once': 1.0, 'from': 1.0, 'fun': 2.0, 'best': 1.0, 'holds': 1.0, 'is': 5.0, 'completely': 2.0, 'more': 2.0, 'toy': 2.0, 'all': 2.0, 'ultimately': 1.0, 'an': 1.0, 'then': 2.0, 'because': 1.0, 'that': 3.0, 'loves': 1.0, 'bob': 1.0, 'year': 1.0, 'it': 7.0, 'totally': 1.0, 'month': 1.0, 'she': 1.0, 'this': 4.0, 'float': 1.0, 'of': 1.0, 'the': 16.0, 'fishbowl': 1.0, 'really': 1.0, 'promotes': 1.0, 'squirt': 1.0, 'side': 1.0, 'and': 10.0, 'awesome': 1.0, 'play': 2.0, 'sides': 1.0, 's': 5.0, 'wall': 1.0, 'no': 1.0, 'favorite': 1.0, 'up': 4.0, 'water': 2.0, 'drains': 1.0, 'ended': 1.0, 'my': 3.0, 'three': 1.0, 'tiled': 1.0, 'since': 1.0, 'old': 2.0, 'can': 2.0, 'so': 2.0, 'much': 1.0, 'with': 4.0, 'over': 1.0, 'open': 1.0, 'imaginative': 1.0, 'there': 1.0, 'six': 1.0, 'has': 1.0, 'watching': 1.0, 'well': 1.0, 'i': 2.0, 'leaves': 1.0, 'found': 1.0, 'know': 1.0, 'will': 1.0, 'love': 2.0, 'set': 1.0, 'down': 1.0, 've': 1.0, 'they': 1.0, 'stay': 1.0, 'are': 2.0, 'held': 1.0, 'cleanest': 1.0, 'too': 1.0, 'one': 2.0, 'ones': 1.0}
Word element => {'though': 1.0, 'sale': 1.0, 'before': 1.0, 'test': 1.0, 'their': 1.0, 'should': 1.0, 'they': 1.0, 'pretty': 1.0, 'problem': 1.0, 'wich': 1.0, 'bin': 1.0, 'fishbowl': 1.0, 'my': 1.0, 'cup': 1.0, 'the': 3.0, 'fabrication': 1.0, 'fix': 1.0, 'in': 1.0, 'otherwise': 1.0, 'i': 3.0, 'guess': 1.0, 'for': 1.0, 'love': 1.0, 'mine': 1.0, 'skip': 1.0, 'definitely': 1.0, 'being': 1.0, 'want': 1.0, 'explain': 1.0, 'is': 1.0, 'stuff': 2.0, 'throw': 1.0, 'to': 3.0, 'fixed': 1.0, 'garbage': 1.0, 'wall': 2.0, 'hops': 1.0, 'this': 1.0, 'annoying': 1.0, 'it': 3.0, 'with': 1.0, 's': 1.0, 't': 1.0, 'wont': 1.0, 'a': 2.0, 'that': 1.0, 'ment': 1.0, 'kind': 1.0, 'putting': 1.0, 'suction': 1.0, 'be': 1.0, 'at': 1.0, 'some': 1.0, 'toy': 1.0, 'has': 1.0, 'of': 1.0, 'but': 1.0, 'can': 1.0}
Word element => {'store': 1.0, 'at': 1.0, 'just': 1.0, 'local': 1.0, 'you': 1.0, 'gifts': 1.0, 'they': 1.0, 'together': 1.0, 'cute': 1.0, 'well': 1.0, 'and': 1.0, 'to': 2.0, 'safe': 1.0, 'it': 2.0, 'bathtoy': 1.0, 'this': 2.0, 'convenient': 1.0, 'with': 3.0, 'so': 1.0, 'liked': 1.0, 'exercises': 1.0, 'for': 1.0, 'granddaughter': 1.0, 'much': 1.0, 'find': 1.0, 'than': 1.0, 'etc': 1.0, 'i': 3.0, 'cant': 1.0, 'one': 1.0, 'bought': 1.0, 'is': 1.0, 'more': 1.0, 'the': 1.0, 'nephew': 1.0, 'that': 1.0, 'compliments': 1.0, 'coordination': 1.0, 'cup': 1.0, 'unique': 1.0, 'also': 1.0, 'purchased': 1.0, 'skip': 1.0, 'hop': 1.0, 'a': 4.0, 'we': 1.0, 'dunk': 1.0, 'made': 2.0, 'duck': 1.0, 'fill': 1.0, 'makes': 1.0, 'octopus': 1.0, 'set': 1.0, 'fun': 1.0, '34': 2.0, 'which': 1.0, 'gifted': 1.0, 'make': 1.0}
Word element => {'in': 1.0, 'plops': 1.0, 'down': 1.0, 'tile': 1.0, 'bummed': 1.0, 'to': 1.0, 'tub': 1.0, 'stay': 1.0, 'just': 2.0, 'have': 2.0, 'all': 1.0, 'doesn': 1.0, 'it': 3.0, 'super': 1.0, 'up': 1.0, 'and': 2.0, 'a': 1.0, 'return': 1.0, 'we': 1.0, 'water': 1.0, 'wish': 1.0, 'would': 1.0, 'read': 1.0, 't': 1.0, 'the': 3.0, 'i': 1.0, 'tried': 1.0, 'slides': 1.0, 'reviews': 1.0, 'on': 2.0}
Word element => {'return': 1.0, 'i': 1.0, 'wall': 1.0, 'on': 1.0, 'won': 1.0, 'stick': 1.0, 'it': 2.0, 'and': 2.0, 'bummer': 1.0, 'tried': 1.0, 'the': 3.0, 'my': 1.0, 'have': 1.0, 't': 1.0, 'this': 1.0, 'loved': 1.0, 'day': 1.0, 'while': 1.0, 'child': 1.0, 'to': 1.0, 'tub': 1.0, 'first': 1.0, 'toy': 1.0}
Word element => {'little': 1.0, 'a': 1.0, 'be': 1.0, 'could': 1.0, 'on': 1.0, 'larger': 1.0, 'kneel': 1.0, 'to': 1.0, 'comfy': 1.0}
Word element => {'store': 1.0, 'loop': 1.0, 'sturdy': 1.0, 'got': 1.0, 'wet': 1.0, 'every': 1.0, 'use': 1.0, 'knees': 1.0, 'made': 1.0, 'mold': 1.0, 'durable': 1.0, 'it': 7.0, 'daughter': 1.0, 'multiple': 1.0, 'my': 2.0, 'odor': 1.0, 'easily': 1.0, 'times': 1.0, 'bathe': 1.0, 'definitely': 1.0, 'clearance': 1.0, 'have': 1.0, 'gets': 1.0, 'son': 1.0, 'and': 5.0, 'towel': 1.0, 'kind': 1.0, 'get': 1.0, 'shape': 1.0, 'on': 2.0, 'is': 2.0, 'saves': 1.0, 'used': 1.0, 'does': 1.0, 'well': 1.0, 'me': 1.0, 'not': 1.0, 'or': 2.0, 'nice': 1.0, 'stays': 1.0, 'mildew': 1.0, 'rack': 1.0, 'very': 2.0, 'little': 1.0, 'as': 1.0, 'to': 2.0, 'any': 1.0, 'of': 1.0, 'foul': 1.0, 'hanging': 1.0, 'the': 3.0, 'allows': 1.0, 'this': 1.0, 'perfect': 1.0, 'after': 1.0, 'love': 1.0}
Word element => {'product': 1.0, 'hurting': 1.0, 'knees': 1.0, 'your': 1.0, 'padding': 1.0, 'enough': 1.0, 'great': 2.0, 'works': 1.0, 'keep': 1.0, 'did': 1.0, 'go': 1.0, 'a': 2.0, 'all': 1.0, 'knee': 1.0, 'on': 2.0, 'bath': 1.0, 'reviews': 1.0, 'glad': 1.0, 'kinds': 1.0, 'of': 1.0, 'lot': 1.0, 'read': 1.0, 'i': 2.0, 'from': 1.0, 'decided': 1.0, 'pads': 1.0, 'for': 1.0, 'my': 1.0, 'baby': 1.0, 's': 1.0, 'to': 2.0, 'it': 1.0, 'this': 1.0, 'get': 1.0, 'and': 1.0}
Word element => {'some': 1.0, 'hope': 1.0, 'will': 1.0, 'it': 1.0, 'but': 1.0, 'for': 2.0, 'the': 3.0, 'a': 1.0, 'work': 1.0, 'not': 1.0, 'price': 1.0, 'ok': 1.0, 'time': 1.0, 'is': 2.0, 'bath': 1.0, 'kneeler': 1.0, 'best': 1.0, 'i': 1.0, 'one': 1.0, 'foam': 1.0}
Word element => {'buy': 1.0, 'i': 2.0, 'kneel': 1.0, 'hurt': 1.0, 'this': 2.0, 'don': 1.0, 'knees': 1.0, 'my': 3.0, 't': 1.0, 'the': 1.0, 'tile': 1.0, 'works': 1.0, 'really': 1.0, 'on': 1.0, 'son': 1.0, 'to': 2.0, 'bathe': 1.0, 'tell': 1.0, 'all': 1.0, 'new': 1.0, 'when': 1.0, 'mom': 1.0, 'floor': 1.0, 'friends': 1.0}
Word element => {'us': 1.0, 'been': 1.0, 'has': 1.0, 'slip': 1.0, 'extremely': 1.0, 'this': 1.0, 't': 1.0, 'doesn': 1.0, 'knees': 1.0, 's': 1.0, 'makes': 1.0, 'to': 1.0, 'useful': 1.0, 'much': 1.0, 'bathtime': 1.0, 'for': 1.0, 'easier': 1.0, 'colors': 1.0, 'mom': 1.0, 'cute': 1.0, 'vibrant': 1.0, 'pretty': 1.0, 'comfortable': 1.0}
Word element => {'use': 1.0, 'in': 1.0, 'not': 1.0, 'hang': 1.0, 'when': 1.0, 'i': 2.0, 'bath': 1.0, 'this': 1.0, 'kneeler': 1.0, 'that': 1.0, 'you': 1.0, 'comfortable': 1.0, 'up': 1.0, 'very': 1.0, 'and': 1.0, 'it': 1.0, 'love': 2.0, 'can': 1.0}
Word element => {'using': 1.0, 'my': 1.0, 'hurtning': 1.0, 'was': 1.0, 'tube': 1.0, 'not': 1.0, 'notice': 3.0, 'after': 2.0, 'you': 3.0, 'that': 1.0, 'how': 1.0, 'cute': 1.0, 'on': 2.0, 'feels': 2.0, 'knees': 3.0, 'good': 2.0, 'difference': 1.0, 'do': 1.0, 'and': 1.0, 'your': 1.0, 'till': 1.0, 'use': 1.0, 'didn': 1.0, 'but': 2.0, 'this': 2.0, 'it': 1.0, 'kneeling': 1.0, 't': 1.0, 'the': 2.0}
Word element => {'well': 1.0, 'as': 1.0, 'floors': 1.0, 'way': 1.0, 's': 1.0, 'tile': 1.0, 'and': 2.0, 'the': 1.0, 'great': 1.0, 'for': 1.0, 'love': 2.0, 'it': 2.0, 'this': 1.0, 'can': 1.0, 'wonderful': 1.0, 'i': 3.0, 'my': 1.0, 'knees': 1.0, 'out': 1.0, 'just': 1.0, 'so': 1.0, 'cute': 1.0, 'too': 1.0, 'our': 1.0, 'that': 1.0, 'hang': 1.0, 'of': 1.0}
Word element => {'well': 1.0, 'also': 1.0, 'one': 1.0, 'your': 1.0, 'wash': 1.0, 'really': 2.0, 'to': 1.0, 'tub': 1.0, 'and': 2.0, 'cute': 1.0, 'soft': 1.0, 'thick': 1.0, 'works': 1.0, 'perfectly': 1.0, 'for': 1.0, 'kneeling': 1.0, 'made': 1.0, 'the': 1.0, 'little': 1.0, 'by': 1.0}
Word element => {'too': 1.0, 'design': 1.0, 'a': 1.0, 'fun': 1.0, 'comfortable': 1.0, 'baby': 1.0, 'so': 1.0, 'wash': 1.0, 'much': 1.0, 'to': 1.0, 'tub': 1.0, 'loved': 1.0, 'this': 1.0, 'at': 1.0, 'thick': 1.0, 'rest': 1.0, 'padded': 1.0, 'makes': 1.0, 'knee': 1.0, 'it': 1.0, 'kneeling': 1.0, 'more': 1.0, 'the': 1.0}
Word element => {'hang': 1.0, 'to': 1.0, 'loop': 1.0, 'velcro': 1.0, 'quality': 1.0, 'love': 1.0, 'great': 1.0, 'saves': 1.0, 'shot': 1.0, 'price': 1.0, 'child': 1.0, 'bath': 1.0, 'on': 1.0, 'knees': 1.0, 'when': 1.0, 'the': 4.0, 's': 1.0, 'second': 1.0, 'for': 1.0, 'mommy': 1.0, 'in': 1.0}
Word element => {'hop': 1.0, 'skip': 1.0, 'love': 1.0, 'super': 1.0, 's': 2.0, 'sooner': 1.0, 'really': 1.0, 'have': 1.0, 'bought': 1.0, 'would': 1.0, 'wish': 1.0, 'this': 1.0, 'it': 2.0, 'i': 4.0, 'bath': 1.0, 'my': 2.0, 'knees': 1.0, 'while': 1.0, 'give': 1.0, 'little': 1.0, 'on': 1.0, 'guy': 1.0, 'a': 1.0, 'comfy': 1.0, 'and': 1.0, 'cute': 1.0}
Word element => {'use': 1.0, 'gotten': 1.0, 'really': 1.0, 'no': 1.0, 'worn': 1.0, 'also': 1.0, 'velcro': 1.0, 've': 1.0, 'darkened': 1.0, 'is': 4.0, 'half': 1.0, 'rips': 1.0, 'year': 1.0, 'after': 1.0, 'machine': 1.0, 'do': 1.0, 'only': 1.0, 'clean': 1.0, 'but': 1.0, 'reads': 1.0, 'label': 1.0, 'trouble': 1.0, 'haven': 1.0, 'had': 1.0, 'bar': 1.0, 'dry': 2.0, 'seams': 1.0, 'i': 2.0, 'it': 8.0, 'with': 2.0, 'even': 1.0, 'bought': 1.0, 'hang': 1.0, 'one': 1.0, 'for': 2.0, 'or': 3.0, 'store': 1.0, 'kneeler': 1.0, 'little': 2.0, 'very': 1.0, 'lot': 1.0, 'space': 2.0, 'the': 7.0, 'great': 1.0, 'spot': 1.0, 'big': 1.0, 'nice': 2.0, 'and': 7.0, 'shape': 1.0, 'places': 1.0, 'skid': 1.0, 'towel': 1.0, 'get': 1.0, 'so': 2.0, '5x6': 1.0, 'cushy': 2.0, 'bathroom': 2.0, 'drips': 1.0, 'of': 3.0, 'wash': 1.0, 'mildew': 1.0, 'up': 1.0, 'teeny': 1.0, 'don': 1.0, 'wave': 1.0, 'small': 1.0, 'have': 2.0, 'does': 1.0, 'maybe': 2.0, 'tidal': 1.0, 'those': 1.0, 'not': 2.0, 'mat': 2.0, 'kiddos': 1.0, 'as': 2.0, 'any': 1.0, 'to': 2.0, 'our': 1.0, 'step': 1.0, 'on': 3.0, 'when': 2.0, 'splashing': 1.0, 't': 2.0, 'we': 3.0, 'a': 9.0, 'going': 1.0, 'gets': 1.0, 'they': 1.0, 'loose': 1.0, 'out': 2.0, 'itself': 1.0, 'dingy': 1.0, 'in': 3.0, 'just': 1.0, 'wet': 1.0}
Word element => {'bathtub': 1.0, 'conjunction': 1.0, 'item': 1.0, 'time': 1.0, 'bath': 1.0, 'for': 1.0, 'in': 1.0, 'perfect': 1.0, 'bought': 1.0, 'product': 1.0, 'and': 1.0, 'rest': 1.0, 'elbow': 1.0, 'highly': 1.0, 'as': 1.0, 'convenient': 1.0, 'a': 1.0, 'what': 1.0, 'would': 1.0, 'to': 1.0, 'was': 1.0, 'store': 1.0, 'recommend': 1.0, 'mother': 1.0, 'great': 1.0, 'the': 2.0, 'new': 1.0, 'with': 2.0, 'thrilled': 1.0, 'this': 1.0}
Word element => {'washing': 1.0, 'just': 1.0, 'can': 1.0, 'and': 1.0, 'you': 1.0, 's': 1.0, 'that': 1.0, 'in': 1.0, 'wash': 2.0, 'clean': 1.0, 'tub': 1.0, 'machine': 1.0, 'spot': 1.0, 'to': 3.0, 'much': 1.0, 'your': 1.0, 'next': 1.0, 'is': 2.0, 'feels': 1.0, 'on': 1.0, 'one': 1.0, 'for': 1.0, 't': 1.0, 'great': 1.0, 'the': 4.0, 'kneeling': 2.0, 'little': 1.0, 'definitely': 1.0, 'downside': 1.0, 'better': 1.0, 'throw': 1.0, 'than': 1.0, 'floor': 1.0, 'it': 4.0, 'this': 1.0, 'only': 1.0}
Word element => {'so': 1.0, 'of': 1.0, 'still': 1.0, 'durable': 1.0, 'on': 1.0, 'months': 1.0, 'hang': 1.0, 'very': 1.0, 'kneeler': 1.0, 'whale': 1.0, 'wouldn': 1.0, 'with': 1.0, 'this': 5.0, 'looks': 1.0, 'it': 6.0, 'years': 1.0, 'price': 1.0, 'baby': 1.0, 'the': 3.0, 'far': 1.0, 'mother': 1.0, 'bathroom': 1.0, 'lightweight': 1.0, 'my': 2.0, 'along': 1.0, 'to': 2.0, 'as': 1.0, 'day': 1.0, 'i': 2.0, 'us': 1.0, 'you': 1.0, 'when': 2.0, 'we': 1.0, 'could': 1.0, 't': 1.0, 'go': 1.0, 'a': 3.0, 'hook': 1.0, 'law': 1.0, 'well': 1.0, '9': 1.0, 'bathtub': 1.0, 'gift': 1.0, 'after': 1.0, 'bathing': 1.0, 'holding': 1.0, 'in': 2.0, 'love': 1.0, 'for': 3.0, 'have': 1.0, 'purchased': 1.0, 'thought': 1.0, 'fisher': 1.0, 'get': 1.0, 'and': 4.0, 'door': 1.0, 'stage': 1.0, 'but': 1.0, 'is': 5.0, 'really': 1.0, 'use': 4.0, 'wonderful': 1.0, 'twice': 1.0, 'from': 1.0, 'wife': 1.0, 'new': 1.0, 'each': 1.0, 'over': 1.0, 'up': 1.0, 'child': 1.0, 'not': 2.0, 'just': 1.0}
Word element => {'comfortable': 1.0, 'lot': 1.0, 'a': 1.0, 'more': 1.0, 'baby': 1.0, 'my': 1.0, 'bathing': 1.0, 'makes': 1.0, 'definitely': 1.0}
Word element => {'to': 1.0, 'is': 1.0, 'highly': 1.0, 'quality': 1.0, 'and': 1.0, 'knees': 1.0, 'my': 1.0, 'are': 1.0, 'i': 1.0, 'does': 1.0, 'great': 1.0, 'supposed': 1.0, 'it': 3.0, 's': 1.0, 'cute': 1.0, 'recommend': 1.0, 'thankful': 1.0, 'really': 1.0, 'what': 1.0}
Word element => {'for': 1.0, 'extra': 1.0, 'paid': 1.0, 'that': 1.0, 'say': 1.0, 'can': 1.0, 'it': 2.0, 'i': 3.0, 'so': 1.0, 'me': 1.0, 'cover': 2.0, 'actual': 1.0, 'a': 1.0, 'faucet': 1.0, 'means': 1.0, 'as': 1.0, 'need': 1.0, 'sent': 1.0, 'about': 1.0, 'much': 1.0, 'product': 1.0, '2': 1.0, 't': 1.0, 'the': 2.0, 'instead': 1.0, 'keeping': 1.0, 'an': 1.0, 'but': 1.0, 'will': 1.0, 'eventually': 1.0}
Word element => {'for': 1.0, 'bright': 1.0, 'nice': 1.0, 'also': 1.0, 'color': 1.0, 'and': 2.0, 'little': 1.0, 'really': 1.0, 'you': 1.0, 'the': 1.0, 'helps': 1.0, 'are': 1.0, 'kneeling': 1.0, 'while': 1.0, 'is': 1.0, 'bath': 2.0, 'to': 1.0, 'one': 1.0, 'your': 1.0}
Word element => {'while': 1.0, 'kneel': 1.0, 'knees': 1.0, 'out': 1.0, 'no': 1.0, 'recommend': 1.0, 'my': 1.0, 'more': 1.0, 'great': 1.0, 'bathing': 2.0, 'a': 1.0, 'buy': 1.0, 'sore': 1.0, 'there': 1.0, 'that': 1.0, 'this': 1.0, 'grand': 1.0, 'when': 1.0, 'daughter': 1.0, 'highly': 1.0, 'was': 1.0, 'to': 2.0, 'still': 1.0, 'have': 1.0, 'all': 1.0, 'parents': 1.0}
Word element => {'worth': 1.0, '10': 1.0, 'are': 1.0, 'measurements': 1.0, 'small': 1.0, 'not': 2.0, 'tail': 1.0, 'size': 1.0, 'also': 1.0, 'instead': 1.0, 'design': 1.0, 'liked': 1.0, '2': 1.0, 'but': 1.0, 'pad': 1.0, 'kneeler': 1.0, 'much': 2.0, 'cushioning': 1.0, 'head': 1.0, 'skid': 1.0, 'approx': 2.0, 'of': 3.0, 'plus': 1.0, 'fisher': 1.0, 'good': 1.0, 'almost': 1.0, 'has': 1.0, 'time': 1.0, 'soft': 1.0, 'this': 2.0, 'it': 6.0, 'cushion': 1.0, 'a': 2.0, 's': 3.0, '3': 1.0, 'bath': 1.0, 'that': 1.0, 'better': 1.0, 'amount': 1.0, '11': 1.0, 'thanks': 1.0, 'height': 2.0, 'thick': 1.0, 'how': 1.0, 'loop': 1.0, 'for': 1.0, 'place': 1.0, 'the': 6.0, 'hanging': 1.0, 'width': 1.0, '17': 1.0, 'like': 2.0, 'is': 2.0, '1': 2.0, 'stays': 1.0, 'nice': 1.0, 'big': 2.0, 'and': 4.0, 'too': 3.0, '4': 1.0, 'i': 4.0, 'in': 1.0, 'to': 1.0, 'makes': 1.0, 'non': 1.0, 'backing': 1.0, 'cuter': 1.0, 'one': 1.0, 'bought': 1.0, 'price': 2.0}
Word element => {'many': 1.0, 'never': 1.0, 'will': 1.0, 'to': 1.0, 'i': 1.0, 'old': 1.0, 'teething': 1.0, 'month': 1.0, 'purchasing': 1.0, 'love': 3.0, 'my': 2.0, 'more': 1.0, 'the': 2.0, 'too': 1.0, 'less': 1.0, 'design': 1.0, 'because': 3.0, 'pacifiers': 1.0, 'them': 1.0, 'does': 1.0, 'can': 1.0, '7': 1.0, 'irritation': 1.0, 'around': 2.0, 'of': 1.0, 'open': 1.0, 'son': 1.0, 'be': 1.0, 'allows': 1.0, 'excess': 1.0, 'you': 1.0, 's': 1.0, 'mouth': 1.0, 'have': 1.0, 'due': 1.0, 'all': 1.0, 'saliva': 1.0}
Word element => {'well': 1.0, 'height': 1.0, 'bjorn': 1.0, 'clean': 1.0, 'baby': 1.0, 'them': 1.0, 'light': 1.0, 'amazing': 1.0, 'secure': 1.0, 'an': 1.0, 'but': 1.0, 'put': 1.0, 'chair': 1.0, 'i': 1.0, 'old': 1.0, 'to': 2.0, 'mo': 1.0, 'bought': 1.0, 'engineered': 1.0, 'perfect': 1.0, 'easy': 2.0, 'lot': 1.0, 'super': 1.0, '5': 1.0, 'my': 1.0, 'it': 4.0, 'she': 1.0, 'truly': 1.0, 'worth': 1.0, 'assemble': 1.0, 'for': 2.0, 'daughter': 1.0, 'great': 1.0, 'traveling': 1.0, 'loves': 1.0, 'into': 1.0, 'items': 1.0, 'so': 1.0, 'are': 3.0, 'pricey': 1.0, 'thought': 1.0, 'definitely': 1.0, 'they': 2.0, 's': 1.0, 'a': 1.0, 'of': 1.0, 'too': 1.0, 'and': 1.0}
Word element => {'then': 1.0, 'weight': 1.0, 'because': 1.0, 'child': 1.0, 'safety': 1.0, 'best': 1.0, 'pediatrician': 1.0, 'much': 1.0, 'strapped': 1.0, 'tightly': 1.0, 'my': 2.0, 'little': 1.0, 'never': 1.0, 'holder': 1.0, 'cup': 1.0, 'install': 1.0, 'he': 1.0, 'washing': 1.0, 'after': 1.0, 'looked': 1.0, 'get': 1.0, 'easy': 2.0, 'doesn': 1.0, 'was': 2.0, 'of': 2.0, 'once': 1.0, 'your': 1.0, 'washed': 1.0, 'adjustable': 1.0, 'deal': 1.0, 'reach': 1.0, 'the': 8.0, 'so': 2.0, 'straps': 2.0, 'son': 1.0, 'still': 3.0, 'are': 1.0, 'recommended': 1.0, 'easier': 1.0, 'higher': 1.0, 'it': 3.0, 'this': 2.0, 'used': 1.0, 'taken': 1.0, 'love': 2.0, 'for': 3.0, 'sold': 1.0, 'and': 7.0, 'me': 2.0, 'getting': 1.0, 'off': 1.0, 'i': 4.0, 'breaker': 1.0, 'that': 3.0, 'been': 1.0, 'have': 2.0, 'almost': 1.0, 'year': 1.0, 'limit': 1.0, 'now': 1.0, 'seat': 1.0, 'as': 1.0, 'to': 4.0, 't': 2.0, 'a': 3.0, 'outgrow': 1.0, 'in': 3.0, 'will': 1.0, 'also': 1.0, 'winter': 1.0, 'am': 1.0, 'easily': 2.0, 'when': 2.0, 'you': 1.0, 'new': 1.0, 've': 1.0, 'coat': 1.0, 'but': 1.0, 'shoulder': 1.0, 'work': 1.0, 'especially': 1.0, 'loosen': 1.0, 'tighten': 1.0, 'using': 1.0, 'which': 2.0, 'around': 1.0, 'is': 3.0, 'carseat': 2.0, 'padding': 1.0, 'isn': 1.0, 'important': 1.0, 'makes': 1.0, 'out': 2.0}
Word element => {'attached': 1.0, 'son': 1.0, 'replace': 1.0, 'll': 1.0, 'i': 1.0, 'water': 1.0, 'fill': 2.0, 'are': 1.0, 'though': 1.0, 'functionality': 1.0, 'very': 2.0, 'set': 2.0, '18': 1.0, 'as': 2.0, 'to': 10.0, 'sleep': 1.0, 'from': 2.0, 'while': 1.0, 'get': 1.0, 'tub': 1.0, 'trains': 1.0, 'his': 3.0, 'want': 1.0, 'percy': 2.0, 'only': 1.0, 'certain': 1.0, 'with': 2.0, 'them': 3.0, 'child': 2.0, 'don': 1.0, 'crib': 1.0, 'genius': 1.0, 'in': 3.0, 'upright': 1.0, 'air': 1.0, 'a': 3.0, 's': 2.0, 'might': 1.0, 'including': 1.0, 'night': 1.0, 'you': 4.0, 'and': 3.0, 'lose': 1.0, 'the': 5.0, 'my': 2.0, 'thomas': 4.0, 'stand': 1.0, 'have': 4.0, 't': 1.0, 'likes': 1.0, 'like': 1.0, 'squeeze': 1.0, 'hold': 1.0, 'this': 2.0, 'few': 1.0, 'who': 1.0, 'old': 2.0, 'far': 1.0, 'we': 1.0, 'then': 2.0, 'out': 1.0, 'month': 1.0, 'under': 1.0, 'if': 2.0, 'still': 1.0, 'for': 1.0, 'time': 1.0, 'so': 1.0, 'they': 3.0, 'okay': 1.0, 'squirt': 2.0, 'tilt': 1.0, 'way': 1.0, 'these': 1.0, 'once': 1.0, 'your': 1.0, 'long': 1.0, 'on': 1.0, 'bath': 1.0, 'at': 1.0, 'is': 2.0, 'enough': 1.0, 'especially': 1.0, 're': 1.0, 'hard': 2.0, 'work': 1.0, 'that': 1.0, 'own': 1.0, 'not': 2.0, 'give': 1.0, 'it': 3.0, 'him': 1.0, 'something': 1.0, 'also': 1.0, 'bathroom': 1.0, 'float': 1.0, 'good': 1.0, 'alone': 1.0, 'toys': 1.0, 'captain': 1.0, 'either': 1.0, 'or': 1.0}
Word element => {'but': 1.0, 'combo': 1.0, 'seat': 1.0, 'covers': 1.0, 'pricey': 1.0, 'that': 1.0, 'set': 1.0, 'matches': 1.0, 'car': 1.0, 'splurge': 1.0, 'this': 1.0, 'before': 1.0, 'can': 1.0, 'ahead': 1.0, 'if': 1.0, 'line': 1.0, 'soft': 1.0, 'go': 1.0, 'you': 1.0, 'regarding': 1.0, 'i': 2.0, 'as': 1.0, 'the': 5.0, 'and': 2.0, 'do': 1.0, 'like': 1.0, 'spend': 1.0, 'blanket': 1.0, 'warm': 1.0, 'cute': 1.0, 'print': 1.0, 'really': 1.0, 'said': 1.0, 'is': 1.0}
Word element => {'obviously': 1.0, 'good': 1.0, 'pay': 1.0, 'buying': 1.0, 're': 1.0, 'not': 1.0, 'what': 2.0, 'have': 1.0, 'small': 1.0, 'just': 1.0, 'few': 1.0, 'technically': 1.0, 'okay': 1.0, 'shelf': 1.0, 'im': 1.0, '34': 2.0, 'sheets': 1.0, 'underneath': 1.0, 'another': 1.0, 'putting': 1.0, 'be': 1.0, 'll': 1.0, 'find': 1.0, 'you': 3.0, 'vinyl': 1.0, 'cheapest': 1.0, 'worth': 1.0, 'its': 2.0, 'the': 8.0, 'bc': 1.0, 'r': 1.0, 'bought': 1.0, 'matress': 1.0, 'us': 1.0, 'i': 5.0, 'looking': 1.0, 'buy': 1.0, 'from': 1.0, 'read': 1.0, 'very': 1.0, 'to': 2.0, 'all': 1.0, 'as': 5.0, 'changing': 1.0, 'babies': 1.0, 'that': 2.0, 'thin': 1.0, 'tons': 1.0, 'wheels': 1.0, 'stuff': 1.0, 'is': 5.0, 'fine': 1.0, 'of': 2.0, 'money': 1.0, 'blankets': 1.0, 'but': 1.0, 'can': 1.0, 'most': 1.0, 'for': 3.0, 'online': 1.0, 'quality': 3.0, 'an': 1.0, 'hold': 1.0, 'know': 2.0, 'this': 1.0, 'wood': 1.0, 'fake': 1.0, 'plywood': 1.0, 'baskets': 1.0, 'bit': 1.0, 'wobbly': 1.0, 'over': 1.0, 'are': 1.0, 'and': 3.0, 'mat': 2.0, 'covered': 2.0, 'lot': 1.0, 'flimsy': 1.0, 'thankfully': 1.0, 'white': 1.0, 's': 2.0, 'a': 3.0, 'bedding': 1.0, '100': 1.0, 'plastic': 2.0, 'eyesore': 1.0, 'poor': 1.0}
Word element => {'again': 1.0, 'buy': 1.0, 'i': 1.0, 'product': 1.0, 'great': 1.0, 'it': 3.0, 'about': 1.0, 's': 1.0, 'show': 1.0, 'would': 1.0, 'was': 1.0, 'just': 1.0, 'quality': 1.0, 'like': 1.0, 'this': 1.0, 'have': 1.0, 'good': 1.0, 'no': 1.0, 'complaints': 1.0}
Word element => {'star': 1.0, 'gold': 1.0, 'area': 1.0, 'play': 1.0, 'or': 1.0, 'functional': 1.0, 'grandma': 1.0, 'etc': 1.0, 'shoes': 1.0, 'on': 1.0, 'sit': 1.0, 'girl': 1.0, 'two': 1.0, 's': 2.0, 'clothes': 1.0, 'beneath': 1.0, 'store': 1.0, 'place': 1.0, 'to': 2.0, 'granddaughter': 1.0, 'american': 1.0, 'windows': 1.0, 'my': 1.0, 'for': 4.0, 'provides': 1.0, 'purchase': 1.0, 'sturdy': 1.0, 'got': 2.0, 'putting': 1.0, 'i': 1.0, 'and': 3.0, 'accessories': 1.0, 'this': 2.0, 'it': 2.0, 'child': 1.0, 'fits': 1.0, 'room': 1.0, 'bedroom': 1.0, 'well': 1.0, 'a': 3.0}
Word element => {'compliments': 1.0, 'of': 1.0, 'friend': 1.0, 'a': 1.0, 'to': 1.0, 'get': 1.0, 'and': 2.0, 'quality': 1.0, 'blocks': 1.0, 'the': 2.0, 'my': 1.0, 'for': 1.0, 'd': 1.0, 'recommend': 1.0, 'store': 1.0, 'lots': 1.0, 'hallway': 1.0, 'use': 1.0, 'than': 1.0, 'i': 2.0, 'beautiful': 1.0, 'kids': 1.0, 'in': 2.0, 'bins': 1.0, 'honestly': 1.0, 'this': 1.0, 'it': 1.0, 's': 1.0, 'better': 1.0, 'legos': 1.0, 'expected': 1.0}
Word element => {'house': 1.0, 'out': 1.0, 'of': 1.0, 'keep': 1.0, 'to': 1.0, 'needed': 1.0, 'its': 1.0, 'the': 3.0, 'garage': 1.0, 'items': 1.0, 'perfect': 1.0, 'but': 1.0, 'we': 1.0, 'in': 1.0, 'for': 1.0, 'stuff': 1.0, 'collects': 1.0, 'what': 1.0}
Word element => {'price': 1.0, 'especially': 1.0, 'looking': 1.0, 'great': 1.0, 'one': 1.0, 'punctured': 1.0, 'does': 1.0, 'am': 1.0, 'overall': 1.0, 'faux': 1.0, 'wood': 1.0, 'leather': 1.0, 'piece': 1.0, 'stapled': 1.0, 'is': 3.0, 'last': 1.0, 'of': 4.0, 'amount': 1.0, 'short': 1.0, 'it': 3.0, 'kids': 1.0, 'this': 2.0, 'put': 1.0, 'an': 1.0, 'will': 1.0, 'able': 1.0, 'was': 2.0, 'to': 3.0, 'screw': 1.0, 'look': 1.0, 'i': 2.0, 'by': 2.0, 'purchased': 1.0, 'top': 1.0, 'sections': 1.0, 'sturdy': 1.0, 'for': 1.0, 'product': 1.0, 'fit': 1.0, 'room': 1.0, 'bench': 2.0, 'hoping': 1.0, 'in': 3.0, 'well': 1.0, 'nook': 1.0, 'my': 2.0, 'a': 5.0, 's': 1.0, 'so': 1.0, 'time': 1.0, 'get': 1.0, 'easy': 1.0, 'up': 1.0, 'assembly': 1.0, 'some': 1.0, 'although': 1.0, 'myself': 1.0, 'the': 4.0, 'they': 1.0, 'holes': 1.0, 'and': 3.0, 'did': 1.0, 'not': 2.0, 'together': 1.0, 'daughter': 1.0, 'line': 1.0, 'seem': 1.0, 'storage': 1.0, 'boxes': 1.0, 'like': 1.0}
Word element => {'product': 1.0, 'would': 1.0, 'shape': 1.0, 'a': 1.0, 'in': 1.0, 'came': 1.0, 'i': 3.0, 'this': 2.0, 'item': 1.0, 'storage': 1.0, 'it': 1.0, 'baskets': 1.0, 'looks': 1.0, 'recommend': 1.0, 'good': 2.0, 'like': 2.0, 'and': 1.0, 'the': 1.0}
Word element => {'troubles': 1.0, 'good': 1.0, 'look': 1.0, 'it': 1.0, 'quality': 1.0, 'but': 2.0, 'inside': 1.0, 'poor': 1.0, 'so': 1.0, 'time': 2.0, 'of': 2.0, 'for': 2.0, 'asked': 1.0, 'your': 1.0, 'on': 1.0, 'i': 3.0, 'ordered': 1.0, 'with': 1.0, 'the': 9.0, 'heading': 1.0, '2nd': 1.0, 'cushioned': 1.0, '1st': 1.0, 'bench': 2.0, 'ripped': 1.0, 'twice': 1.0, 'after': 1.0, 'had': 1.0, 'as': 1.0, 'to': 1.0, 'recieving': 1.0, 'material': 2.0, 'be': 2.0, 'wood': 2.0, 'being': 1.0, 'broken': 1.0, 'nail': 1.0, 'warns': 1.0, 'this': 2.0, 'full': 1.0, 'might': 1.0, 'a': 1.0, 'going': 1.0, 'order': 1.0, 'falling': 1.0, 'through': 1.0, 'wise': 1.0, 'were': 1.0, 'replacement': 1.0, 'out': 1.0, 'just': 1.0, 'shall': 1.0, 'ask': 1.0, 'my': 2.0, 'was': 1.0, 'refund': 1.0, 'when': 1.0, 'staples': 1.0, 'you': 1.0}
Word element => {'storing': 1.0, 'in': 1.0, 'toys': 1.0, 'addition': 1.0, 'seating': 1.0, 'easy': 1.0, 'to': 2.0, 'together': 1.0, 'meets': 1.0, 'my': 1.0, 'away': 1.0, 'needs': 1.0, 'as': 2.0, 'it': 1.0, 'put': 1.0, 'serves': 1.0, 'bench': 1.0, 'a': 1.0}
Word element => {'that': 1.0, 'thing': 1.0, 'instead': 1.0, 'vibrant': 1.0, 'color': 1.0, 'more': 1.0, 'the': 4.0, 'a': 1.0, 'disappointed': 1.0, 'in': 1.0, 'for': 1.0, 'appearance': 1.0, 'but': 1.0, 'quality': 1.0, 'only': 1.0, 'green': 1.0, 'i': 1.0, 'as': 1.0, 'very': 1.0, 'hamper': 1.0, 'hoping': 1.0, 'was': 1.0, 'fine': 1.0, 'is': 2.0, 'dull': 1.0, 'overall': 1.0}
Word element => {'always': 1.0, 'since': 1.0, 'fold': 1.0, 'never': 1.0, 'room': 1.0, 'carrying': 1.0, 'for': 1.0, 'nice': 1.0, 'are': 1.0, 'handles': 1.0, 'with': 1.0, 'offs': 1.0, 'hamper': 2.0, 'hesitant': 1.0, 'new': 1.0, 'enough': 2.0, 'so': 1.0, 'needed': 1.0, 'it': 3.0, 'she': 2.0, 'stands': 1.0, 'paint': 1.0, 'out': 1.0, 'break': 1.0, 'and': 1.0, 'accruing': 1.0, 'my': 1.0, 'daughter': 1.0, 'by': 1.0, 'wanted': 1.0, 'was': 1.0, 'laundry': 3.0, 'blue': 2.0, 'we': 1.0, 'a': 2.0, 'bedroom': 1.0, 'preschool': 1.0, 'i': 1.0, 'does': 1.0, 'her': 2.0, 'the': 5.0, 'job': 1.0, 'or': 1.0, 'this': 1.0, 'soft': 1.0, 'into': 2.0, 'that': 2.0, 'but': 1.0, 'can': 1.0, 'is': 1.0, 'fall': 1.0, 'to': 2.0, 'dance': 1.0, 'no': 1.0, 'sturdy': 1.0, 'anyway': 1.0, 'damage': 1.0, 'up': 1.0, 'in': 1.0, 'itself': 1.0}
Word element => {'it': 1.0, 'love': 2.0, 'great': 1.0, 'works': 1.0, 'this': 1.0, 'so': 1.0, 'i': 1.0, 'the': 1.0, 'my': 2.0, 'baby': 1.0, 'cute': 1.0, 'clothes': 1.0, 'and': 1.0, 'need': 1.0, 'to': 1.0, 'be': 1.0, 'style': 1.0, 'separate': 1.0, 'from': 1.0, 'washed': 1.0, 'husband': 1.0}
Word element => {'expecting': 1.0, 'what': 1.0, 'keeping': 1.0, 'am': 1.0, 'i': 2.0, 'cute': 1.0, 'was': 2.0, 'look': 1.0, 'fabric': 1.0, 'burlap': 1.0, 's': 2.0, 'also': 1.0, 'or': 2.0, 'nursery': 1.0, 'nice': 1.0, 'for': 1.0, 'size': 1.0, 'a': 4.0, 'room': 1.0, 'brushed': 1.0, 'hamper': 1.0, 'the': 2.0, 'more': 2.0, 'color': 1.0, 'of': 1.0, 'is': 3.0, 'really': 1.0, 'mint': 1.0, 'not': 2.0, 'but': 1.0, 'sage': 1.0, 'children': 1.0, 'it': 4.0, 'canvas': 1.0, 'like': 1.0}
Word element => {'with': 1.0, 'very': 1.0, 'week': 1.0, 'a': 1.0, 'it': 1.0, 'ordering': 1.0, 'great': 2.0, 'pleased': 1.0, 'buy': 1.0, 'easy': 1.0, 'amazing': 1.0, 'assembly': 1.0, 'after': 1.0, 'at': 1.0, 'item': 1.0, 'product': 1.0, 'an': 1.0, 'price': 1.0, 'recieved': 1.0}
Word element => {'recommend': 1.0, 'would': 1.0, 'mobil': 1.0, 's': 1.0, 'mattress': 1.0, 'it': 2.0, 'cute': 1.0, 'even': 1.0, 'but': 1.0, 'runs': 1.0, 'with': 1.0, 'the': 1.0, 'small': 1.0, 'and': 1.0, 'very': 1.0, 'comes': 1.0, 'everything': 1.0, 'in': 1.0, 'picture': 1.0}
Word element => {'place': 1.0, 'in': 1.0, 'not': 1.0, 'access': 1.0, 'easy': 1.0, 'for': 1.0, 'on': 1.0, 'stay': 1.0, 'wipes': 1.0, 'will': 1.0, 'but': 1.0, 'diapers': 1.0, 'put': 1.0, 'nice': 1.0, 'very': 1.0, 'and': 2.0, 'to': 2.0, 'is': 2.0, 'looks': 1.0, 'up': 2.0, 'set': 1.0, 'there': 1.0, 'that': 1.0, 'it': 2.0, 'this': 1.0, 'hard': 1.0, 'when': 1.0, 'i': 1.0, 'shelf': 1.0, 'under': 1.0, 'planned': 1.0, 'keep': 1.0, 'the': 2.0, 'bumper': 1.0, 'a': 1.0, 'skirt': 1.0}
Word element => {'problem': 1.0, 'the': 1.0, 'in': 1.0, 'ppl': 1.0, 'lots': 1.0, 'suprisingly': 1.0, 'part': 1.0, 'dont': 1.0, 'i': 4.0, 'reached': 1.0, 'same': 1.0, 'lost': 1.0, 'spare': 1.0, 'hv': 1.0, 'said': 1.0, 'to': 1.0, 'brought': 1.0, 'zapp': 1.0, 'they': 2.0, 'when': 1.0, 'round': 1.0, 'indo': 3.0, 'our': 1.0, 'vacation': 1.0, 'quinny': 1.0, 'but': 1.0, 'stroller': 2.0, 'with': 1.0, 'this': 2.0, 'of': 2.0, 'got': 1.0, 'cs': 1.0, 'mine': 1.0, 'one': 1.0, 'for': 2.0, 'handle': 1.0, 'called': 1.0}
Word element => {'less': 1.0, 'better': 1.0, 'cosi': 1.0, 'maxi': 1.0, 'that': 2.0, 'also': 1.0, 'i': 2.0, 'marathon': 1.0, 'has': 1.0, 'recommended': 1.0, 'highly': 1.0, 'choice': 1.0, 'buckles': 1.0, 'wonderful': 1.0, 'use': 2.0, 'easy': 2.0, 'safe': 1.0, 'comfy': 1.0, 'very': 3.0, '11': 1.0, '5': 1.0, 'needs': 1.0, 'he': 2.0, '70': 1.0, 'far': 1.0, 'around': 1.0, 'comes': 1.0, 'is': 5.0, 'rear': 1.0, 'back': 1.0, 'husbands': 1.0, 'in': 3.0, 'because': 1.0, 'not': 1.0, 'however': 1.0, 'seats': 3.0, 'higher': 1.0, 'it': 3.0, 'month': 1.0, 'straps': 1.0, 'return': 1.0, '15': 1.0, 's': 1.0, 'a': 3.0, 'we': 3.0, 'adjustable': 1.0, 'other': 3.0, 'focus': 1.0, 'britax': 2.0, 'are': 3.0, 'rate': 1.0, 'using': 1.0, 'this': 3.0, 'with': 1.0, 'had': 1.0, 'toxins': 1.0, 'husband': 1.0, 'daughter': 1.0, 'ford': 1.0, 'and': 6.0, 'the': 7.0, 'love': 1.0, 'for': 1.0, 'fit': 1.0, 'his': 2.0, 'have': 2.0, 'small': 1.0, 'car': 1.0, 'facing': 1.0, 'would': 2.0, 'position': 1.0, 'no': 1.0, 'maneuver': 1.0, 'vehicle': 1.0, 'my': 2.0, 'fits': 1.0, 'old': 1.0, 'problems': 1.0, 'all': 3.0, 'seat': 6.0, 'our': 1.0, 'to': 3.0, 'as': 2.0, 'work': 1.0, 'can': 1.0, 'chair': 1.0}
Word element => {'what': 1.0, 'flat': 1.0, 'have': 1.0, 'comes': 1.0, 'more': 3.0, 'as': 2.0, 'horrible': 1.0, 'use': 2.0, 'karp': 1.0, 'and': 1.0, 'waaayy': 1.0, 'wants': 1.0, 'fold': 1.0, 'pad': 1.0, 'off': 1.0, 'one': 4.0, 'mattress': 1.0, 'this': 3.0, 'wish': 1.0, 'expensive': 1.0, 'than': 2.0, 'inner': 1.0, 'stars': 1.0, 'ed': 1.0, 'bssinet': 1.0, 'nana': 1.0, 'a': 2.0, 's': 4.0, 't': 1.0, 'we': 3.0, 'version': 1.0, 'rather': 1.0, 'like': 1.0, 'table': 1.0, 'don': 1.0, 'up': 1.0, 'sound': 1.0, '5': 1.0, 'noise': 2.0, 'wobbly': 1.0, 'lay': 1.0, 'very': 1.0, 'to': 2.0, 'bassinet': 1.0, 'feels': 2.0, 'sturdy': 1.0, 'metal': 1.0, 'old': 1.0, 'nice': 3.0, 'edge': 1.0, 'rods': 1.0, '1': 1.0, 'i': 3.0, 'oh': 1.0, 'with': 3.0, 'it': 8.0, 'ripped': 1.0, 'arch': 1.0, 'thing': 3.0, '2': 1.0, 'but': 1.0, 'of': 1.0, 'the': 11.0, 'that': 2.0, 'into': 1.0, 'changing': 1.0, 'month': 1.0, 'totally': 2.0, 'click': 1.0, 'not': 2.0, 'other': 1.0, 'got': 1.0, 'is': 5.0, 'at': 2.0, 'pop': 2.0, 'worth': 1.0, 'used': 1.0, 'def': 1.0, 'built': 1.0, 'newborn': 2.0, 'napper': 2.0, 'changer': 1.0, 'came': 1.0, 'home': 1.0, 'instead': 1.0, 'in': 1.0, 'are': 1.0, 'serious': 1.0, 'just': 1.0, 'barely': 1.0, 'velcro': 1.0, 'on': 1.0, 'dr': 1.0, 'my': 1.0, 'white': 2.0, 'harvey': 1.0, 'nothing': 1.0, 'compared': 1.0}
Word element => {'item': 1.0, 'recommend': 1.0, 'have': 1.0, 'feedback': 1.0, 'so': 1.0, 'them': 1.0, 'you': 1.0, 'as': 1.0, 'quality': 1.0, 'see': 1.0, 'a': 3.0, 'gave': 1.0, 'their': 1.0, 'were': 1.0, 'gift': 1.0, 'absolutely': 1.0, 'love': 1.0, 'to': 1.0, 'was': 1.0, 'product': 1.0, 'it': 1.0, 'thrilled': 1.0, 'this': 3.0, 'based': 1.0, 'of': 2.0, 'i': 4.0, 'great': 1.0, 'the': 1.0, 'recipients': 1.0, 'time': 1.0, 'thank': 1.0, 'they': 1.0, 'and': 2.0, 'get': 2.0, 'on': 1.0, 'ton': 1.0, 'every': 1.0, 'use': 1.0}
Word element => {'am': 1.0, 'ten': 1.0, 'plastic': 1.0, 'three': 1.0, 'set': 1.0, 'money': 1.0, 'sturdy': 1.0, 'not': 1.0, 'was': 1.0, 'poor': 1.0, 'got': 1.0, 'saying': 1.0, 'appealing': 1.0, 'looked': 1.0, 'area': 1.0, 'storage': 1.0, 'use': 1.0, 'drawers': 1.0, 'window': 1.0, 'short': 1.0, 'came': 1.0, 'infant': 1.0, 'need': 1.0, 'didn': 1.0, 'bucks': 1.0, 'choice': 1.0, 'with': 4.0, 'purchase': 1.0, 'options': 1.0, 'graco': 1.0, 'expensive': 1.0, 'keep': 2.0, 'since': 2.0, 'on': 2.0, 'side': 2.0, 'really': 1.0, 'well': 1.0, 'i': 11.0, 'now': 1.0, 'table': 1.0, 'like': 2.0, 'using': 2.0, 'primary': 1.0, 'put': 1.0, 'changing': 1.0, 'that': 3.0, 'our': 2.0, 'sleep': 1.0, 'engaging': 1.0, 'holders': 1.0, 'this': 4.0, 'an': 1.0, 'seat': 2.0, 'm': 1.0, 'in': 4.0, 'pack': 2.0, 'have': 3.0, 'happy': 2.0, 'lot': 1.0, 'one': 3.0, 'mobile': 1.0, 'such': 1.0, 'for': 4.0, 'stars': 2.0, 'ratings': 1.0, 'crib': 1.0, 'play': 2.0, 'we': 3.0, 'a': 7.0, 'fit': 1.0, 't': 2.0, 'pacifiers': 1.0, 'child': 1.0, 'don': 1.0, 'past': 1.0, 'but': 2.0, 'felt': 1.0, 'month': 1.0, 'it': 3.0, 'above': 1.0, 'n': 2.0, 'went': 1.0, 'third': 1.0, 'those': 1.0, 'as': 1.0, 'diaper': 1.0, 'great': 1.0, 'my': 3.0, 'live': 1.0, 'wipes': 1.0, 'can': 1.0, 'so': 3.0, 'bit': 1.0, 'time': 1.0, 'hang': 1.0, 'there': 1.0, 'to': 4.0, 'bassinet': 1.0, 'been': 2.0, 'comparing': 1.0, 'part': 1.0, 'toy': 1.0, 'apartment': 1.0, 'move': 2.0, 'target': 1.0, 'has': 1.0, 'them': 2.0, 'baby': 1.0, 'when': 2.0, 'little': 1.0, 'very': 4.0, 'are': 2.0, 'diapers': 1.0, 'working': 1.0, 'first': 1.0, 'cute': 1.0, 'im': 1.0, 'and': 10.0, 'arms': 1.0, 'sure': 1.0, 'bouncer': 1.0, 'get': 1.0, 'buy': 1.0, 'saved': 1.0, 'something': 1.0, 'would': 3.0, 'cream': 1.0, 'be': 1.0, 'more': 4.0, 'maybe': 1.0, 'his': 1.0, 'spent': 1.0, 'he': 2.0, 'swat': 1.0, 'will': 1.0, 'enjoy': 1.0, 'the': 11.0, 'longer': 1.0, 'of': 3.0}
Word element => {'at': 1.0, 'so': 1.0, 'needed': 1.0, 'it': 1.0, 'works': 1.0, 'once': 1.0, 'to': 1.0, 'gives': 1.0, 'for': 1.0, 'babies': 1.0, 'when': 1.0, 'and': 2.0, 'all': 1.0, 'diapers': 1.0, 'toddlers': 1.0, 'allows': 1.0, 'you': 2.0, 'chage': 1.0}
Word element => {'day': 1.0, 'the': 1.0, 'naps': 1.0, 'changing': 1.0, 'this': 1.0, 'worked': 1.0, 'with': 1.0, 'also': 1.0, 'well': 1.0, 'crib': 1.0, 'for': 2.0, 'us': 1.0, 'during': 1.0, 'and': 1.0, 'table': 1.0, 'very': 1.0, 'as': 1.0, 'our': 1.0, 'newborn': 1.0, 'a': 2.0}
Word element => {'separate': 1.0, 'buy': 1.0, 'or': 1.0, 'likely': 1.0, 'changed': 1.0, 'keeps': 1.0, 'who': 1.0, 'very': 1.0, 'slanted': 1.0, 'being': 2.0, 'in': 1.0, 'will': 1.0, 'item': 2.0, 'right': 1.0, 'feels': 1.0, 'wheels': 1.0, 'size': 2.0, 'crib': 3.0, 'move': 1.0, 'pretty': 1.0, 'uncomfortable': 1.0, 'bought': 1.0, 'despite': 1.0, 'the': 6.0, 'we': 2.0, 'a': 2.0, 'newborn': 2.0, 'plastic': 1.0, 'fixed': 1.0, 'its': 2.0, 'easy': 1.0, 'rolling': 1.0, 'table': 4.0, 'and': 3.0, 'around': 1.0, 'is': 1.0, 'side': 2.0, 'between': 1.0, 'bassinet': 1.0, 'this': 1.0, 'full': 1.0, 'fits': 1.0, 'when': 1.0, 'thanks': 1.0, 'easily': 1.0, 'changing': 4.0, 'next': 1.0, 'return': 1.0, 'bedcons': 1.0, 'results': 1.0, 'for': 2.0, 'cheap': 1.0, 'hard': 1.0, 'it': 1.0, 'install': 1.0, 'use': 1.0, 'instructions': 1.0, 'on': 1.0, 'pros': 1.0, 'above': 1.0, 'our': 2.0, 'to': 7.0, 'as': 1.0, 'all': 1.0}
Word element => {'up': 1.0, 'set': 1.0, 'in': 1.0, 'spaces': 1.0, 'packed': 1.0, 'jam': 1.0, 'many': 1.0, 'features': 1.0, 'small': 1.0, 'extra': 1.0, 'product': 2.0, 'was': 1.0, 'to': 2.0, 'excellent': 1.0, 'make': 1.0, 'new': 1.0, 'sure': 1.0, 'this': 1.0, 'it': 1.0, 'for': 2.0, 'parents': 1.0, 'my': 1.0, 'happy': 1.0, 'easy': 1.0, 'son': 1.0}
Word element => {'us': 1.0, 'features': 1.0, 'rest': 1.0, 'great': 1.0, 'the': 2.0, 'out': 1.0, 'options': 1.0, 'unsteady': 1.0, 'bit': 1.0, 'that': 1.0, 'attachments': 1.0, 'stable': 1.0, 'of': 1.0, 'there': 2.0, 'tilts': 1.0, 'other': 1.0, 'play': 2.0, 'i': 1.0, 'for': 2.0, 'have': 1.0, 'pack': 2.0, 'product': 1.0, 'looking': 1.0, 'better': 1.0, 'if': 1.0, 'a': 3.0, 'are': 2.0, 'you': 1.0, 'worked': 1.0, 'changing': 2.0, 'with': 2.0, 'this': 1.0, 'n': 2.0, 'it': 2.0, 'would': 1.0, 'not': 1.0, 'so': 1.0, 'downward': 1.0, 'table': 2.0, 'recommend': 1.0, 'makes': 1.0, 'slightly': 1.0, 'ever': 1.0}
Word element => {'accesseries': 1.0, 'plays': 1.0, 'for': 2.0, 'a': 1.0, 'minute': 1.0, 'the': 1.0, 'less': 1.0, 'diapers': 1.0, 'but': 1.0, 'play': 1.0, 'pack': 1.0, 'mobile': 1.0, 'much': 1.0, 'matter': 1.0, 'and': 1.0, 'wind': 1.0, 'nice': 1.0, 'or': 2.0, 'no': 2.0, 'how': 1.0, 'you': 1.0, 'only': 1.0, 'it': 1.0, 'also': 1.0, 'baby': 1.0, 'storage': 1.0}
Word element => {'all': 1.0, 'use': 1.0, 'they': 1.0, 'and': 1.0, 'friends': 1.0, 'for': 1.0, 'gift': 1.0, 'a': 1.0, 'my': 1.0, 'the': 2.0, 'time': 1.0, 'is': 1.0, 'n': 1.0, 'wonderful': 1.0, 'play': 1.0, 'turned': 1.0, 'great': 1.0, 'it': 2.0, 'out': 1.0, 'pack': 1.0, 'to': 1.0, 'be': 1.0}
Word element => {'useful': 1.0, 'else': 1.0, 'someone': 1.0, 'case': 1.0, 'parts': 1.0, 'kiddos': 1.0, 'done': 1.0, 'have': 2.0, 'don': 1.0, 'so': 1.0, 'part': 1.0, 'rid': 1.0, 'getting': 1.0, 'just': 1.0, 'wouldn': 1.0, 'were': 1.0, 'decision': 1.0, 'expected': 1.0, 'out': 1.0, 'having': 1.0, 'worked': 1.0, 'mobile': 1.0, 'without': 1.0, 'harder': 1.0, 'be': 1.0, 'will': 2.0, 'mean': 1.0, 'll': 1.0, 'lowering': 1.0, 'wishing': 1.0, 'gripe': 1.0, 'myself': 1.0, 'find': 2.0, 'position': 2.0, 'overall': 1.0, 'elevated': 1.0, '15': 1.0, 'limit': 1.0, 'dreading': 1.0, 'approaches': 1.0, 'pad': 1.0, 'lay': 1.0, 'room': 1.0, 'pounds': 2.0, '12': 1.0, 'now': 1.0, 'newborn': 1.0, 'was': 2.0, 'his': 1.0, 'around': 1.0, 'is': 2.0, 'idea': 1.0, 'flimsy': 1.0, 're': 3.0, 'all': 1.0, 'an': 1.0, 'and': 14.0, 'about': 2.0, 'play': 1.0, 'plan': 1.0, 'good': 1.0, 'bed': 1.0, 'family': 1.0, 'my': 1.0, 'onto': 1.0, 'wanted': 1.0, 'pointless': 2.0, 'but': 3.0, 'multi': 1.0, 'a': 10.0, 'fairly': 1.0, 't': 4.0, 's': 5.0, 'military': 1.0, 'baby': 1.0, 'money': 1.0, 'change': 2.0, '7': 1.0, 'up': 3.0, 'do': 1.0, 'changing': 4.0, 'buy': 2.0, 'something': 1.0, 'our': 5.0, 'as': 5.0, 'sleep': 1.0, 'bedroom': 2.0, 'happy': 1.0, 'lot': 1.0, 'too': 1.0, 'one': 3.0, 'months': 1.0, 'for': 5.0, 'm': 1.0, 'in': 5.0, 'with': 5.0, 'toyed': 1.0, 'purchase': 1.0, 'only': 1.0, 'process': 1.0, 'pack': 1.0, 'its': 1.0, 'planned': 1.0, 'gear': 1.0, 'us': 1.0, 'another': 1.0, 'extra': 2.0, 'purpose': 1.0, 'nighttime': 1.0, 'had': 1.0, 'or': 3.0, 'didn': 2.0, 'instead': 1.0, 'base': 2.0, 'even': 1.0, 'either': 1.0, 'weeks': 1.0, 'bulky': 1.0, 'insignificant': 1.0, 'on': 4.0, 'like': 2.0, 'hold': 1.0, 'arrival': 1.0, 'spend': 1.0, 'say': 1.0, 'comfortable': 1.0, 'of': 5.0, 'the': 13.0, 'want': 3.0, 'if': 1.0, 'every': 1.0, 'time': 1.0, 'this': 1.0, 'move': 2.0, 'decided': 1.0, 'functionality': 1.0, 'weight': 1.0, 'teensy': 1.0, 'awful': 1.0, 'little': 5.0, 'reasonable': 1.0, 'child': 1.0, 'price': 1.0, 'already': 1.0, 'lug': 1.0, 'him': 5.0, 'it': 12.0, 'felt': 1.0, 'first': 2.0, 'cute': 2.0, 'selling': 1.0, 'station': 3.0, 'waking': 1.0, 'not': 2.0, 'eyesore': 1.0, 'easy': 1.0, 'we': 13.0, 'reviews': 1.0, 'take': 2.0, 'bassinet': 2.0, 'to': 12.0, 'pretty': 2.0, 've': 2.0, 'several': 1.0, 'down': 3.0, 'naps': 1.0, 'cradle': 2.0, 'set': 1.0, 'when': 3.0, 'folded': 1.0, 'generally': 2.0, 'sturdy': 2.0, 'putting': 1.0, 'well': 2.0, 'i': 9.0, 'that': 3.0, 'because': 2.0, 'knew': 1.0, 'never': 1.0, 'sturdier': 1.0, 'son': 1.0, 'dedicated': 1.0, 'he': 3.0}
Word element => {'bit': 1.0, 'lasted': 1.0, 'box': 1.0, 'like': 1.0, 'it': 1.0, 'with': 2.0, 'come': 1.0, 'this': 1.0, 'other': 1.0, 'more': 1.0, 'the': 3.0, 'her': 1.0, 'grandma': 1.0, 'longer': 1.0, '8': 1.0, 'have': 1.0, 'for': 1.0, 'play': 2.0, 'and': 3.0, 'pack': 2.0, 'do': 1.0, 'at': 2.0, 'supplement': 1.0, 'grandkids': 1.0, 'stay': 1.0, 'house': 1.0, 'music': 1.0, 'but': 1.0, 'a': 2.0, 'we': 1.0, 's': 1.0, 'when': 1.0, 'you': 1.0, 'twins': 1.0, 'wind': 1.0, 'old': 1.0, 'i': 1.0, 'they': 2.0, 'wake': 1.0, 'in': 1.0, 'basic': 1.0, 'each': 1.0, 'one': 1.0, 'bought': 1.0, 'months': 1.0, 'mobile': 1.0, 'up': 2.0, 'all': 1.0, 'to': 3.0, 'our': 1.0, 'sleep': 1.0, 'if': 1.0, 'same': 1.0, 'very': 1.0, 'nice': 1.0}
Word element => {'something': 1.0, 'bag': 1.0, 'golf': 1.0, 'you': 1.0, 'airport': 1.0, 'an': 1.0, 'through': 1.0, 'lugging': 1.0, 'try': 1.0, 'would': 1.0, 'across': 1.0, 'long': 1.0, 'taking': 1.0, '3': 1.0, 'square': 1.0, 'inches': 1.0, 'fit': 1.0, 'fairly': 1.0, 'than': 1.0, 'but': 3.0, 'sanitizing': 1.0, 'similar': 1.0, 'wipeable': 1.0, 'easily': 1.0, 'table': 2.0, 'sleeping': 1.0, 'padded': 1.0, 'great': 1.0, 'brick': 1.0, 'soft': 2.0, 'this': 3.0, 'reputable': 1.0, 'several': 1.0, 'size': 1.0, 'to': 6.0, 'comparable': 2.0, 'our': 1.0, 'was': 2.0, 'every': 1.0, 'expecting': 1.0, 'is': 2.0, 'bought': 1.0, 'pad': 4.0, 'cover': 1.0, 'better': 1.0, 'flip': 1.0, 'pack': 2.0, 'and': 6.0, 'about': 1.0, 'play': 1.0, 'town': 1.0, 'heavy': 1.0, 'as': 2.0, 'diaper': 1.0, 'liked': 1.0, 'waiting': 1.0, 'for': 8.0, 'it': 8.0, 'months': 2.0, 'arrive': 1.0, 'also': 2.0, 'seems': 1.0, 'nearly': 1.0, 'used': 1.0, 'have': 2.0, '8': 2.0, 'or': 1.0, 'feature': 2.0, 'feet': 1.0, 'i': 2.0, 'we': 4.0, 'small': 2.0, 'a': 7.0, 'in': 1.0, 'member': 1.0, 'perfect': 1.0, 'family': 1.0, 'another': 1.0, 'unless': 1.0, 'tray': 1.0, 'after': 1.0, 'can': 1.0, 'unexpected': 1.0, 'so': 1.0, 'those': 1.0, 'me': 1.0, 'much': 1.0, 'do': 2.0, 'changing': 4.0, 'messes': 1.0, 'the': 7.0, 'of': 1.0, 'should': 1.0, 'be': 1.0, 'overlooked': 1.0, 'carrier': 1.0, 'quite': 1.0, 'while': 2.0, 'from': 1.0, 'find': 1.0, 'brands': 1.0, 'good': 1.0, 'side': 1.0, 'gift': 1.0, 'made': 1.0, 'am': 1.0, 'lazy': 1.0, 'over': 1.0, 'work': 1.0, 'took': 1.0, 'even': 1.0, 'nothing': 1.0, 'out': 1.0, 'though': 1.0, 'grew': 1.0, 'very': 1.0, 'does': 1.0, 'ease': 1.0, 'cleaning': 1.0, 'want': 2.0, 'up': 1.0, 'laundry': 1.0, 'gets': 1.0, 'were': 1.0, 'dirty': 1.0, 'not': 4.0, 'itself': 1.0, 'baby': 1.0, 'others': 1.0, 'real': 1.0, 'exactly': 1.0, 'time': 1.0, 'cushiony': 1.0}
Word element => {'ve': 1.0, 'after': 1.0, 'long': 1.0, 'take': 1.0, 'doesn': 1.0, 'reassembling': 1.0, 'apart': 1.0, 'taking': 1.0, 'portability': 1.0, 'bought': 1.0, 'waiting': 1.0, 'weren': 1.0, 'goodness': 1.0, 'thank': 1.0, 'once': 1.0, 'novices': 1.0, 'how': 1.0, 'use': 1.0, 'sturdy': 1.0, 'storage': 1.0, 'baby': 2.0, 'it': 10.0, 'not': 2.0, 'n': 1.0, 'with': 4.0, 'to': 3.0, 'own': 1.0, 'the': 2.0, 'screaming': 1.0, 'by': 1.0, 'done': 1.0, 'bag': 1.0, 'already': 1.0, 'storing': 1.0, 'knew': 1.0, 'comes': 1.0, 'is': 1.0, 'leave': 1.0, 'stages': 1.0, 'very': 1.0, 'works': 1.0, 'its': 2.0, 'pack': 1.0, 'useful': 1.0, 'in': 1.0, 'seems': 1.0, 'assemble': 2.0, 'for': 6.0, 'directions': 1.0, 'growing': 1.0, 'well': 2.0, 't': 2.0, 'we': 2.0, 'a': 2.0, 'made': 1.0, 'play': 1.0, 'and': 4.0, 'quite': 1.0, 'desired': 1.0, 'you': 1.0, 'when': 1.0, 'someone': 1.0, 'however': 1.0, 'assembly': 1.0, 'trying': 1.0, 'be': 1.0, 'they': 1.0, 'were': 1.0, 'obviously': 1.0, 'that': 1.0, 'written': 1.0, 'lot': 1.0, 'who': 1.0}
Word element => {'was': 1.0, 'had': 1.0, 'with': 1.0, 'came': 1.0, 'that': 2.0, 'case': 1.0, '5': 1.0, 'giving': 1.0, 'm': 1.0, 'bassinet': 1.0, 'the': 4.0, 'broken': 1.0, 'ones': 1.0, 'lower': 1.0, 'how': 1.0, 'can': 2.0, 'stars': 1.0, 'love': 1.0, 'for': 1.0, 've': 1.0, 'also': 1.0, 'reason': 1.0, 'because': 1.0, 'than': 3.0, 'is': 2.0, 'longer': 1.0, 'really': 1.0, 'a': 2.0, 'agreat': 1.0, 'likes': 1.0, 'all': 1.0, 'zipper': 1.0, 'have': 1.0, '4': 1.0, 'i': 4.0, 'not': 2.0, 'n': 3.0, 'perfect': 1.0, 'this': 2.0, 'it': 4.0, 'better': 1.0, 'other': 3.0, 'and': 1.0, 'play': 2.0, 'you': 2.0, 'when': 1.0, 'gets': 1.0, 'lot': 1.0, 'bigger': 1.0, 'utlize': 1.0, 'think': 1.0, 'your': 1.0, 'baby': 2.0, 'so': 1.0, 'pack': 3.0, 'only': 1.0, 'much': 1.0, 'mobile': 1.0, 'bassinets': 1.0, 'owned': 1.0, 'my': 1.0, 'musical': 1.0, 'plays': 1.0}
Word element => {'overall': 1.0, 'use': 1.0, 'well': 1.0, 'classy': 1.0, 'pack': 1.0, 'have': 1.0, 'of': 2.0, 'is': 1.0, 'completely': 1.0, 'design': 1.0, 'very': 1.0, 'play': 1.0, 'and': 3.0, 'n': 1.0, 'was': 1.0, 'to': 2.0, 'investment': 1.0, 'great': 2.0, 'the': 3.0, 'made': 1.0, 'i': 3.0, 'would': 1.0, 'changing': 2.0, 'gave': 1.0, 'fold': 2.0, 'gets': 1.0, 'when': 1.0, '5': 1.0, 'this': 1.0, 'wish': 1.0, 'product': 1.0, 'love': 1.0, 'stars': 1.0, 'but': 1.0, 'seems': 1.0, 'stuck': 1.0, 'having': 1.0, 'table': 2.0, 'like': 1.0, 'a': 1.0, 'we': 1.0, 'could': 1.0, 'trying': 1.0, 'just': 1.0, 'instead': 1.0, 'looks': 1.0, 'it': 7.0, 'remove': 1.0, 'sometimes': 1.0, 'after': 1.0}
Word element => {'uacute': 1.0, 'ning': 1.0, 'y': 1.0, 'el': 1.0, 'a': 1.0, 'producto': 1.0, 'con': 1.0, 'llego': 1.0, 'todos': 1.0, 'en': 1.0, 'sin': 1.0, 'estamos': 1.0, 'inconveniente': 1.0, 'familia': 1.0, 'disfrutando': 1.0, 'buena': 1.0, 'la': 1.0, 'que': 1.0, 'n': 1.0, 'hecho': 1.0, 'tiempo': 1.0, 'compra': 1.0, 'hemos': 1.0}
Word element => {'thing': 1.0, 'good': 1.0, 'don': 1.0, 'brand': 1.0, 'never': 1.0, 'would': 1.0, 'by': 1.0, 'collapse': 1.0, 'get': 1.0, 'easy': 1.0, 'evenflo': 2.0, 'mess': 1.0, 'i': 5.0, 'with': 1.0, 'buying': 1.0, 'was': 4.0, 'to': 3.0, 'of': 2.0, 'immediately': 1.0, 'cute': 1.0, 'born': 1.0, 'pack': 2.0, 'son': 1.0, 'mistake': 2.0, 'big': 1.0, 'very': 1.0, 'graco': 2.0, 'daughter': 1.0, 'when': 1.0, 'returned': 1.0, 'an': 1.0, 'but': 1.0, 'n': 2.0, 'this': 1.0, 'myself': 1.0, 'the': 4.0, 'made': 1.0, 'play': 2.0, 'and': 5.0, 'purely': 1.0, 'aesthetic': 1.0, 'same': 1.0, 'reasons': 1.0, 'so': 2.0, 'it': 5.0, 'felt': 1.0, 'flimsy': 1.0, 'another': 1.0, 'my': 2.0, 'shaky': 1.0, 't': 1.0, 'we': 1.0, 'a': 2.0, 's': 1.0, 'compared': 1.0, 'used': 1.0, 'had': 1.0, 'purchased': 1.0, 'assemble': 1.0, 'for': 2.0, 'love': 1.0, 'actually': 1.0, 'price': 1.0}
Word element => {'great': 1.0, 'space': 1.0, 'up': 1.0, 'does': 1.0, 'size': 1.0, 'just': 1.0, 'other': 1.0, 'all': 3.0, 'choice': 1.0, 'things': 1.0, 'dislike': 1.0, 'recommend': 1.0, 'together': 3.0, 'put': 2.0, 'quickly': 1.0, 'delivered': 1.0, 'colors': 1.0, 'simplicity': 1.0, 'liked': 1.0, 'or': 1.0, 'big': 2.0, 'not': 2.0, 'right': 2.0, 's': 1.0, 'with': 1.0, 'stores': 1.0, 'like': 2.0, 'reading': 1.0, 'to': 5.0, 'knew': 1.0, 'small': 1.0, 'a': 8.0, 'anyhow': 1.0, 'but': 2.0, 'money': 1.0, 'for': 5.0, 'year': 1.0, 'price': 1.0, 'products': 1.0, 'product': 1.0, 'graco': 1.0, 'overwhelmed': 1.0, 'definitely': 1.0, 'basicbaby': 1.0, 'pack': 2.0, 'dimensions': 1.0, 'so': 1.0, 'also': 1.0, 'in': 2.0, 'daughter': 3.0, 'had': 2.0, '8': 2.0, 'prices': 1.0, 'me': 2.0, 'my': 3.0, 'of': 3.0, 'the': 13.0, 'am': 1.0, 'design': 1.0, 'putting': 1.0, 'i': 8.0, 'old': 2.0, 'mom': 1.0, 'wewanted': 1.0, 'that': 2.0, 'offering': 1.0, 'and': 7.0, 'play': 2.0, 'moms': 2.0, 'site': 1.0, 'has': 1.0, 'left': 1.0, 'at': 1.0, 'is': 2.0, 'more': 1.0, 'registered': 1.0, 'changed': 1.0, 'insane': 1.0, 'items': 1.0, 'getting': 1.0, 'significantly': 1.0, 'really': 2.0, 'feeling': 1.0, 'since': 1.0, 'which': 1.0, 'good': 2.0, 'would': 2.0, 'time': 2.0, 'new': 1.0, 'fairly': 1.0, 't': 2.0, 'cost': 1.0, 'her': 1.0, 'use': 1.0, 'amazon': 1.0, 'very': 2.0, 'mean': 2.0, 'our': 1.0, 'gettinga': 1.0, 'lot': 1.0, 'too': 1.0, 'one': 2.0, 'plus': 1.0, 'bad': 1.0, 'are': 1.0, 'first': 1.0, 'years': 1.0, 'chicco': 1.0, 'multitude': 1.0, 'was': 5.0, 'second': 1.0, 'durable': 1.0, '200': 1.0, 'it': 6.0, 'spend': 1.0, 'seem': 1.0, 'be': 1.0, 'worth': 2.0, 'after': 1.0, 'take': 1.0, 'we': 4.0, 'then': 1.0, 'reviews': 2.0, 'saying': 1.0, 'most': 1.0, 'back': 1.0, 'wasn': 2.0, 'looked': 1.0, 'easy': 1.0, 'bit': 1.0, 'found': 1.0, 'highly': 1.0, 'few': 1.0, 'this': 2.0, 'long': 1.0, 'on': 1.0}
Word element => {'ease': 1.0, 'quality': 1.0, 'happy': 1.0, 'are': 1.0, 'overall': 1.0, 'wind': 1.0, 'after': 1.0, 'long': 1.0, 'set': 1.0, 'down': 1.0, 'break': 1.0, 'trouble': 1.0, 'minor': 1.0, 'stay': 1.0, 'not': 1.0, 'still': 1.0, 'would': 1.0, 'hoped': 1.0, 'disappointment': 1.0, 'had': 1.0, 'rooms': 1.0, 'with': 1.0, 'models': 1.0, 'it': 7.0, 'on': 1.0, 'grows': 1.0, 'use': 2.0, 'appears': 1.0, 'of': 2.0, 'out': 1.0, 'box': 1.0, 'that': 4.0, 'music': 1.0, 'but': 2.0, 'most': 1.0, 'can': 1.0, 'full': 1.0, 'this': 2.0, 'found': 1.0, 'really': 1.0, 'functionality': 1.0, 'very': 3.0, 'like': 1.0, 'again': 1.0, 'easily': 1.0, 'too': 1.0, 'play': 1.0, 'and': 5.0, 'have': 2.0, 'our': 1.0, 'as': 2.0, 'to': 2.0, 'be': 1.0, 'up': 2.0, 'child': 1.0, 'don': 1.0, 'the': 3.0, 'two': 1.0, 'space': 1.0, 'is': 2.0, 'level': 1.0, 'in': 1.0, 'bassinet': 1.0, 'mobile': 1.0, 'one': 1.0, 'for': 1.0, 's': 2.0, 'we': 5.0, 't': 3.0, 'a': 3.0, 'much': 1.0, 'pack': 1.0, 'wheel': 1.0, 'has': 1.0, 'expected': 1.0, 'larger': 1.0, 'flexible': 1.0, 'than': 1.0, 'bit': 1.0, 'so': 1.0, 'doesn': 2.0}
Word element => {'an': 1.0, 'really': 1.0, 'you': 1.0, 'padded': 1.0, 'base': 1.0, 'years': 1.0, '6': 1.0, 'some': 1.0, 'last': 1.0, 'since': 1.0, 'their': 1.0, 'improved': 1.0, 'say': 1.0, 'will': 1.0, 'amazon': 1.0, 'in': 2.0, 'quite': 1.0, 'sleeping': 1.0, 'what': 1.0, 'had': 1.0, 'is': 5.0, 'around': 1.0, 'caught': 1.0, 'princess': 1.0, 'not': 1.0, 'on': 1.0, 'my': 4.0, 'extra': 1.0, 'another': 1.0, 'frequently': 1.0, 'old': 1.0, 'just': 1.0, 'buy': 1.0, 'says': 1.0, 'that': 7.0, 'form': 1.0, 'again': 1.0, 'disappointment': 1.0, 'put': 1.0, 'much': 1.0, 'purchase': 1.0, 'only': 1.0, 'pack': 2.0, 'product': 1.0, 'for': 2.0, 'once': 1.0, 'the': 4.0, 'of': 3.0, 'does': 1.0, 'baby': 3.0, 'a': 3.0, 's': 2.0, 'done': 1.0, 'going': 1.0, 'ago': 1.0, 'fit': 1.0, 't': 3.0, 'trial': 1.0, 'graco': 3.0, 'was': 2.0, 'doesn': 1.0, 'bassinet': 1.0, 'pretty': 2.0, 'to': 6.0, 'as': 2.0, 'any': 1.0, 'hard': 1.0, 'it': 7.0, 'got': 2.0, 'american': 1.0, '3': 1.0, 'today': 1.0, 'useless': 1.0, 'this': 3.0, 'nicely': 1.0, 'mattress': 2.0, 'and': 7.0, 'play': 2.0, 'couple': 1.0, 'out': 1.0, 'weeks': 1.0, 'particularly': 1.0, 'but': 1.0, 'happily': 1.0, 'pertaining': 1.0, 'together': 3.0, 'were': 1.0, 'poles': 1.0, 'way': 1.0, 'very': 2.0, 'little': 1.0, 'clear': 1.0, 'so': 2.0, 'however': 1.0, 'bit': 1.0, 'there': 1.0, 'now': 1.0, 'error': 1.0, 'well': 1.0, 'putting': 1.0, 'i': 3.0, 'worked': 1.0, 'happy': 1.0, 'one': 2.0, 'instructions': 1.0, 'bought': 1.0, 'week': 1.0, 'quick': 1.0, 'with': 2.0, 'note': 2.0, 'please': 1.0, 'don': 2.0, 'state': 1.0, 'item': 2.0, 'mini': 1.0, 'crib': 1.0, 'pad': 3.0, 'shape': 1.0, 'need': 1.0, 'or': 1.0, 'have': 2.0}
Word element => {'cost': 1.0, 'penny': 1.0, 'worth': 1.0, 'well': 1.0, 'place': 1.0, 'girl': 1.0, 'to': 2.0, 'so': 1.0, 'and': 1.0, 'work': 1.0, 'an': 1.0, 'put': 1.0, 'quality': 1.0, 'easy': 1.0, 'table': 1.0, 'in': 1.0, 'exceptional': 2.0, 'boy': 1.0, 'love': 1.0, 'every': 1.0, 'either': 1.0, 'very': 1.0, 'changing': 1.0, 'is': 2.0, 'it': 2.0, 'with': 2.0, 'the': 3.0, 'are': 1.0, 'compatible': 1.0, 'together': 1.0, 'colors': 1.0, 'or': 1.0}
Word element => {'regret': 1.0, 'not': 1.0, 'good': 1.0, 'like': 1.0, 'comfortable': 1.0, 'that': 1.0, 'is': 1.0, 'and': 2.0, 'chose': 1.0, 'have': 1.0, 'pack': 1.0, 'to': 2.0, 'an': 1.0, 'equal': 1.0, 'graco': 1.0, 'price': 1.0, 'this': 1.0, 'it': 1.0, 'so': 1.0, 'buy': 1.0, 'i': 2.0, 'cheap': 1.0, 'recommend': 1.0, 'easy': 1.0, 'use': 1.0, 'anyone': 1.0}
Word element => {'wound': 1.0, 'minute': 1.0, 'bit': 1.0, 'little': 1.0, 'for': 1.0, 'music': 1.0, 'that': 1.0, 'under': 1.0, 'negative': 1.0, 'paddy': 1.0, 'you': 1.0, 'in': 1.0, 'the': 4.0, 'a': 2.0, 'well': 1.0, 'sleeps': 1.0, 'baby': 1.0, 'clean': 1.0, 'need': 1.0, 'is': 3.0, 'and': 2.0, 'comfy': 1.0, 'only': 2.0, 'it': 1.0, 'this': 1.0, 'fully': 1.0, 'easy': 1.0, 'all': 1.0, 'to': 2.0, 'plays': 1.0, 'station': 1.0, 'basically': 1.0, 'changing': 1.0, 'from': 1.0, 'infant': 1.0, 'toddler': 1.0}
Word element => {'simple': 1.0, 'more': 1.0, 'smaller': 1.0, 'buying': 1.0, 'hand': 1.0, 'second': 1.0, 'month': 1.0, 'it': 4.0, 'a': 3.0, 't': 1.0, 'wheeled': 1.0, 'like': 3.0, 'table': 2.0, 'using': 1.0, 'not': 3.0, 'style': 1.0, 'did': 1.0, 'changing': 3.0, 'that': 3.0, 'someone': 1.0, 'loaned': 1.0, 'easy': 1.0, 'wanted': 1.0, 'also': 1.0, 'us': 2.0, 'into': 1.0, 'bedroom': 1.0, 'room': 1.0, 'of': 1.0, 'the': 16.0, 'and': 7.0, 'play': 3.0, 'bassinet': 4.0, 'to': 3.0, 'shopping': 1.0, 'our': 2.0, 'all': 1.0, 'as': 2.0, 'for': 3.0, 'with': 1.0, 'mattress': 2.0, 'wheels': 1.0, 'regular': 1.0, 'in': 2.0, 'really': 1.0, 'night': 1.0, 'or': 1.0, 'feature': 1.0, 'have': 2.0, 'pack': 4.0, 'convenience': 1.0, 'make': 1.0, 'roll': 1.0, 'over': 2.0, 'vacation': 1.0, 'assembly': 1.0, 'but': 2.0, 'can': 1.0, 'pad': 1.0, 'son': 3.0, 'still': 2.0, 'storage': 1.0, 'now': 2.0, 'vibrating': 1.0, 'attached': 1.0, 'lotions': 1.0, 'removed': 1.0, 'my': 2.0, 'another': 1.0, 'lay': 1.0, 'even': 1.0, 'are': 2.0, 'diapers': 1.0, 'raised': 1.0, 'love': 2.0, 'he': 2.0, 'yet': 1.0, 'at': 1.0, 'is': 4.0, 'soothes': 1.0, 'slept': 1.0, 'i': 4.0, 'well': 1.0, 'this': 3.0, 'few': 1.0, 'negatives': 1.0, 'isn': 1.0, 'sturdy': 1.0, 'would': 3.0, 'nice': 1.0, 'there': 1.0, 'touch': 1.0, 'though': 1.0, 'house': 1.0, 'holding': 1.0, 'on': 2.0, 'borrowing': 1.0, 'wipes': 1.0, 'side': 1.0, 'good': 1.0, 'consideration': 1.0, 'be': 1.0, 'we': 3.0, 'take': 1.0, 'recommend': 1.0}
Word element => {'grandmas': 1.0, 'take': 1.0, 'hope': 1.0, 'so': 1.0, 'portable': 1.0, 's': 1.0, 'haven': 1.0, 'is': 1.0, 'to': 2.0, 'now': 1.0, 'vibrator': 1.0, 't': 1.0, 'the': 2.0, 'yet': 1.0, 'for': 2.0, 'crib': 1.0, 'newborn': 1.0, 'right': 1.0, 'be': 1.0, 'our': 2.0, 'changing': 1.0, 'as': 2.0, 'it': 4.0, 'helpful': 1.0, 'use': 1.0, 'we': 1.0, 'strong': 1.0, 'when': 1.0, 'gets': 1.0, 'too': 2.0, 'etc': 1.0, 'part': 1.0, 'used': 1.0, 'her': 1.0, 'needed': 1.0, 'table': 1.0, 'she': 1.0, 'bigger': 1.0, 'but': 1.0, 'will': 1.0}
Word element => {'functional': 1.0, 'been': 1.0, 'cheaper': 1.0, 'way': 1.0, 'purchased': 1.0, 'could': 1.0, 'useful': 1.0, 'more': 1.0, 'whole': 1.0, 'big': 1.0, '200': 1.0, 'useless': 1.0, 'sag': 1.0, 'items': 1.0, 'from': 1.0, 'nearly': 1.0, 'used': 1.0, 'if': 2.0, 's': 1.0, 'flimsy': 1.0, 'shape': 1.0, 'storage': 2.0, 'on': 1.0, 'as': 1.0, 'would': 5.0, 'properly': 1.0, 'sliding': 1.0, 'he': 1.0, 'played': 1.0, 'and': 8.0, 'soon': 1.0, 'play': 3.0, 'one': 2.0, 'held': 1.0, 'too': 2.0, 'with': 3.0, 'volume': 1.0, 'or': 1.0, 'a': 4.0, 'fit': 1.0, 't': 3.0, 'seem': 2.0, 'softly': 1.0, 'music': 1.0, 'corners': 1.0, 'but': 4.0, 'kept': 2.0, 'colors': 1.0, 'issues': 1.0, 'neutral': 1.0, 'gender': 1.0, 'didn': 2.0, 'even': 2.0, 'got': 1.0, 'has': 1.0, 'light': 1.0, 'stuff': 1.0, 'exposed': 1.0, 'just': 1.0, 'other': 2.0, 'well': 1.0, 'i': 6.0, 'actually': 2.0, 'system': 2.0, 'fabric': 1.0, 'for': 4.0, 'where': 1.0, 'else': 1.0, 'everything': 1.0, 'can': 2.0, 'so': 3.0, 'had': 3.0, 'was': 9.0, 'perfect': 1.0, 'this': 3.0, 'disappointed': 1.0, 'side': 1.0, 'mp3': 1.0, 'made': 2.0, 'control': 1.0, 'great': 1.0, 'excited': 1.0, 'nice': 1.0, 'reflux': 1.0, 'sucked': 1.0, 'reviews': 1.0, 'n': 3.0, 'very': 1.0, 'being': 1.0, 'additions': 2.0, 'thought': 2.0, 'it': 11.0, 'anything': 1.0, 'soft': 1.0, 'remove': 2.0, 'like': 3.0, 'vibration': 1.0, 'table': 2.0, 'have': 4.0, 'itself': 1.0, 'is': 3.0, 'fall': 1.0, 'that': 2.0, 'disappointment': 1.0, 'changing': 2.0, 'completely': 1.0, 'couldn': 1.0, 'removed': 1.0, 'full': 1.0, 'dirty': 1.0, 'piece': 1.0, 'out': 4.0, 'newborn': 1.0, 'the': 18.0, 'ran': 1.0, 'of': 1.0, 'once': 1.0, 'battery': 1.0, 'comparable': 1.0, 'only': 1.0, 'quickly': 1.0, 'hoping': 1.0, 'to': 5.0, 'be': 3.0, 'replace': 2.0, 'my': 1.0, 'napper': 2.0, 'hear': 1.0, 'often': 1.0, 'super': 3.0, 'its': 1.0, 'comfy': 1.0, 'baby': 3.0, 'extremely': 1.0, 'hard': 2.0, 'quality': 1.0, 'wheels': 1.0, 'their': 1.0, 'definitely': 1.0, 'pack': 3.0, 'better': 2.0, 'you': 2.0, 'what': 1.0, 'when': 1.0, 'shelves': 2.0, 'down': 1.0, 'stand': 1.0, 'alone': 1.0, 'get': 1.0, 'player': 1.0, 'clean': 1.0, 'products': 1.0, 'slanted': 1.0}
Word element => {'should': 1.0, 'a': 1.0, 'as': 1.0, 'and': 1.0, 'up': 1.0, 'fairly': 1.0, 'together': 1.0, 'play': 2.0, 'it': 3.0, 'this': 1.0, 'n': 2.0, 'i': 1.0, 'easy': 2.0, 'pack': 2.0, 'was': 1.0, 'to': 2.0, 'quite': 1.0, 't': 1.0, 'the': 1.0, 'yet': 1.0, 'is': 1.0, 'but': 1.0, 'put': 2.0, 'haven': 1.0, 'seems': 1.0, 'take': 1.0, 'used': 1.0, 'down': 1.0}
Word element => {'everyone': 1.0, 'would': 1.0, 'wait': 1.0, 'can': 1.0, 'pregnant': 1.0, '8': 1.0, 'almost': 1.0, 'about': 1.0, 'together': 1.0, 'even': 1.0, 'were': 1.0, 'use': 1.0, 'instructions': 2.0, 'did': 1.0, 'spacious': 1.0, 'space': 1.0, 'in': 3.0, 'am': 1.0, 'you': 1.0, 'storage': 1.0, 'wants': 1.0, 'made': 1.0, 'way': 1.0, 'used': 1.0, 'i': 8.0, 'without': 1.0, 'the': 11.0, 'second': 1.0, 'is': 8.0, 'able': 1.0, 'taking': 1.0, 'looks': 1.0, 'it': 9.0, 'first': 2.0, 'from': 1.0, 'little': 1.0, 'very': 1.0, 'pac': 2.0, 'as': 3.0, 'to': 6.0, 'recommend': 1.0, 'minutes': 1.0, 'was': 5.0, 'gift': 1.0, 'not': 2.0, 'me': 2.0, 'your': 1.0, 'put': 2.0, 'impressed': 1.0, 'away': 1.0, 'have': 2.0, 'and': 6.0, 'play': 2.0, 'problem': 1.0, 'given': 2.0, 'months': 1.0, 'one': 3.0, 'actually': 1.0, 'for': 1.0, 'love': 1.0, 't': 1.0, 'ago': 1.0, 'a': 1.0, 'seven': 1.0, 'years': 1.0, 'child': 1.0, 'out': 1.0, 'right': 1.0, 'napper': 1.0, 'after': 1.0, 'my': 2.0, 'family': 1.0, 'cushy': 1.0, 'exaggerated': 1.0, 'so': 1.0, 'of': 1.0, 'that': 2.0, 'box': 2.0, 'material': 1.0, '30': 1.0, 'mattress': 1.0, 'this': 1.0, 'soft': 1.0, 'snuggly': 1.0}
Word element => {'and': 1.0, 'be': 1.0, 'isn': 1.0, 'there': 1.0, 'easy': 1.0, 'assembling': 1.0, 'washing': 1.0, 'removed': 2.0, 'easily': 2.0, 'picture': 1.0, 'function': 1.0, 'washed': 1.0, 'strong': 1.0, 'option': 1.0, 'will': 2.0, 'for': 1.0, 'playsthe': 1.0, 'diaper': 1.0, 'is': 6.0, 'pros': 1.0, 'side': 1.0, 'of': 1.0, 'can': 1.0, 'but': 2.0, 'most': 1.0, 'that': 1.0, 'changing': 2.0, 'to': 1.0, 'as': 2.0, 'flip': 1.0, 'table': 2.0, 't': 1.0, 's': 1.0, 'a': 2.0, 'sturdy': 1.0, 'provides': 1.0, 'rest': 1.0, 'napper': 2.0, 'holding': 1.0, 'other': 1.0, 'newborn': 2.0, 'in': 2.0, 'does': 1.0, 'not': 5.0, 'n': 2.0, 'this': 1.0, 'washable': 1.0, 'over': 2.0, 'would': 1.0, 'shown': 1.0, 'unlike': 1.0, 'plays': 1.0, 'remains': 1.0, 'job': 1.0, 'the': 10.0, 'basically': 1.0, 'baby': 1.0, 'storage': 1.0, 'slight': 1.0, 'bassinet': 1.0, 'however': 1.0, 'makes': 1.0, 'many': 1.0, 'sturdier': 1.0, 'attachment': 1.0, 'inclinecons': 1.0, 'it': 7.0, 'useless': 1.0, 'cover': 1.0, 're': 1.0, 'enough': 1.0, 'section': 1.0, 'pack': 2.0, 'do': 1.0}
Word element => {'was': 1.0, 'since': 1.0, 'cheaper': 1.0, 'buy': 1.0, 'back': 1.0, 'go': 1.0, 'thus': 1.0, 'include': 1.0, 'but': 1.0, 'cost': 1.0, 'several': 1.0, 'graco': 1.0, 'never': 1.0, 'couple': 1.0, 'after': 1.0, 'mine': 1.0, 'removed': 1.0, 'first': 1.0, 'diapers': 1.0, 'have': 2.0, 'could': 1.0, 'will': 1.0, 'i': 6.0, 'term': 1.0, 'time': 2.0, 'would': 1.0, 'boy': 1.0, 'although': 1.0, 'reattached': 1.0, 'use': 3.0, 'once': 1.0, 'times': 1.0, 'makes': 1.0, 'did': 1.0, 'long': 1.0, 'on': 5.0, 'it': 10.0, 'month': 1.0, 'useless': 2.0, 'love': 3.0, 'for': 5.0, 'products': 1.0, 'product': 2.0, 'as': 1.0, 'only': 1.0, 'with': 1.0, 'and': 7.0, 'much': 1.0, 'do': 2.0, 'changing': 2.0, 'because': 1.0, 'that': 2.0, 'crib': 1.0, 'to': 3.0, 'bassinet': 1.0, 'simple': 1.0, 'more': 1.0, 'around': 1.0, 'completely': 2.0, 'small': 1.0, 'a': 4.0, 'table': 2.0, 'using': 1.0, 'solution': 1.0, 'attach': 1.0, 'impossible': 1.0, 'those': 1.0, 'not': 2.0, 'in': 3.0, 'newborn': 2.0, 'difficulty': 1.0, 'assemble': 1.0, 'than': 1.0, 's': 1.0, 'maybe': 1.0, 'great': 3.0, 'of': 2.0, 'the': 8.0, 'napper': 2.0, 'off': 1.0, 'eight': 1.0, 'one': 2.0, 'take': 1.0, 'then': 1.0, 'multiple': 1.0, 'attaching': 1.0, 'is': 5.0, 'look': 1.0, 'at': 1.0, 'flimsy': 1.0, 'different': 2.0, 'play': 1.0, 'awesome': 1.0, 'girl': 1.0, 'if': 3.0, 'detaching': 1.0, 'still': 1.0, 'my': 1.0, 'living': 1.0, 'old': 1.0, 'design': 1.0, 'gender': 1.0, 'neutral': 1.0, 'spaces': 1.0, 'can': 2.0, 'you': 5.0, 'blankets': 1.0, 'sheets': 1.0, 'compartment': 4.0, 'less': 1.0, 'up': 1.0, 'baby': 1.0, 'or': 1.0, 'decided': 1.0, 'move': 1.0, 'wheels': 1.0, 'plan': 3.0, 'side': 4.0, 'storing': 1.0, 'days': 1.0, 'remove': 1.0, 'anything': 1.0, 'combo': 1.0, 'other': 2.0, 'this': 3.0, 'few': 1.0}
Word element => {}
Word element => {'absolutely': 1.0, 'soundly': 1.0, 'sleep': 1.0, 'vibrator': 1.0, 'help': 1.0, 'my': 1.0, 'need': 1.0, 'together': 1.0, 'helped': 1.0, 'put': 1.0, 'recommend': 1.0, 'easy': 1.0, 'super': 1.0, 'husbands': 1.0, 'in': 1.0, 'baby': 2.0, 'didn': 1.0, 'little': 1.0, 'wink': 2.0, 'be': 1.0, 'product': 1.0, 'so': 1.0, 'really': 1.0, 'left': 1.0, 'have': 1.0, 'the': 1.0, 't': 2.0, 'even': 1.0, 'used': 1.0, 'our': 3.0, 'it': 2.0, 'traveled': 1.0, 'this': 3.0, 'with': 2.0, 'much': 1.0, 'room': 1.0, 'we': 1.0, 'living': 1.0, 'while': 1.0, 'to': 1.0, 'happier': 1.0, 'was': 1.0, 'and': 2.0, 'couldn': 1.0}
Word element => {'easy': 1.0, 'overall': 1.0, 'limit': 1.0, 'weight': 1.0, 'since': 1.0, 'are': 1.0, 'think': 1.0, 'but': 1.0, 'months': 1.0, 'nine': 1.0, 'he': 2.0, 'changer': 1.0, 'use': 1.0, 'where': 1.0, 'actually': 1.0, 'small': 1.0, 'still': 1.0, 'son': 1.0, 'my': 1.0, 'is': 5.0, 'really': 1.0, 'side': 1.0, 'things': 2.0, 'diapers': 1.0, 'back': 1.0, 'hold': 1.0, 'in': 1.0, 'pocket': 1.0, 'that': 2.0, 'this': 1.0, 'n': 1.0, 'it': 4.0, 'also': 1.0, 'item': 1.0, 'out': 1.0, 'of': 1.0, 'the': 4.0, 'living': 1.0, 'pack': 2.0, 'stop': 1.0, 'napper': 1.0, 'close': 1.0, 'plays': 1.0, 'i': 5.0, 'and': 3.0, 'forth': 1.0, 'downstairs': 1.0, 'wanted': 1.0, 'our': 1.0, 'to': 5.0, 'was': 2.0, 'room': 1.0, 'up': 1.0, 'don': 1.0, 'so': 2.0, 'simply': 1.0, 'un': 1.0, 'cart': 1.0, 'going': 1.0, 'we': 2.0, 'could': 1.0, 't': 1.0, 'a': 1.0, 's': 1.0, 'great': 1.0, 'nice': 2.0, 'want': 2.0, 'if': 2.0, 'clip': 1.0, 'take': 1.0, 'off': 1.0, 'when': 1.0}
Word element => {'up': 1.0, 'set': 1.0, 'hour': 1.0, 'an': 1.0, 'i': 1.0, 'get': 1.0, 'and': 1.0, 'assemble': 1.0, 'pleased': 1.0, 'our': 2.0, 'for': 2.0, 'in': 1.0, 'she': 2.0, 'gift': 1.0, 'is': 2.0, 'a': 1.0, 'worked': 1.0, 'very': 1.0, 'hard': 1.0, 'with': 1.0, 'only': 1.0, 'it': 4.0, 'so': 1.0, 'expecting': 1.0, 'problem': 1.0, 'grandson': 1.0, 'far': 1.0, 'june': 1.0, 'the': 1.0, 'how': 1.0, 'granddaughter': 1.0, 'was': 3.0, 'to': 2.0}
Word element => {'pleased': 1.0, 'overall': 1.0, 'on': 2.0, 'are': 1.0, 'blanket': 1.0, 'throw': 1.0, 'just': 1.0, 'i': 1.0, 'winter': 1.0, 'easy': 1.0, 'very': 2.0, 'ease': 1.0, 'couple': 1.0, 'months': 1.0, 'the': 11.0, 'there': 1.0, 'adjustment': 1.0, 'receiving': 1.0, 'womb': 1.0, 'bedroom': 2.0, 'in': 4.0, 'also': 1.0, 'for': 5.0, 'love': 1.0, 'napper': 1.0, 'option': 1.0, 'diapers': 1.0, 'and': 4.0, 'play': 1.0, 't': 1.0, 'we': 2.0, 'a': 3.0, 'skin': 1.0, 'first': 1.0, 'it': 4.0, 'this': 1.0, 'being': 2.0, 'pack': 1.0, 'have': 1.0, 'well': 1.0, 'easier': 1.0, 'has': 2.0, 'makes': 1.0, 'wonderful': 1.0, 'isn': 1.0, 'right': 1.0, 'of': 4.0, 'been': 1.0, 'breastfeeding': 1.0, 'nice': 2.0, 'incline': 1.0, 'son': 1.0, 'middle': 1.0, 'storage': 1.0, 'is': 2.0, 'so': 2.0, 'as': 1.0, 'outside': 1.0, 'our': 2.0, 'to': 3.0, 'cold': 1.0, 'changer': 2.0, 'wipe': 1.0, 'night': 1.0, 'baby': 1.0, 'clothes': 1.0, 'down': 1.0, 'ect': 1.0}
Word element => {'too': 1.0, 'install': 1.0, 'shelves': 1.0, 'side': 1.0, 'storage': 1.0, 'on': 1.0, 'overall': 1.0, 'i': 1.0, 'very': 1.0, 'nice': 1.0, 'need': 1.0, 'to': 2.0, 'product': 1.0, 'be': 1.0, 'sturdy': 1.0, 'will': 1.0, 'but': 1.0, 'say': 1.0, 'than': 1.0, 'simple': 1.0, 'other': 1.0, 'that': 1.0, 'it': 1.0, 'the': 2.0, 'more': 1.0, 'great': 1.0, 'a': 1.0}
Word element => {'spend': 1.0, 'cash': 1.0, 'why': 1.0, 'than': 1.0, 'higher': 1.0, 'price': 1.0, 'buying': 1.0, 'from': 1.0, 'prevent': 1.0, 'color': 1.0, 'pattern': 1.0, 'still': 1.0, 'close': 1.0, 'hoping': 1.0, 'cream': 1.0, 'other': 1.0, 'thought': 1.0, 'design': 1.0, 'type': 2.0, 'black': 1.0, 'appears': 1.0, 'at': 1.0, 'putting': 1.0, 'i': 27.0, 'well': 1.0, 'while': 2.0, 'set': 1.0, 'put': 2.0, 'changing': 3.0, 'folding': 1.0, 'pictures': 1.0, 'stuff': 1.0, 'newborn': 1.0, 'use': 1.0, 'didnt': 1.0, 'forced': 1.0, 'go': 1.0, 'white': 2.0, 'her': 1.0, 'little': 1.0, 'he': 1.0, 'yet': 1.0, 'fold': 1.0, 'away': 1.0, 'now': 1.0, 'pens': 1.0, 'crib': 2.0, 'bassinet': 2.0, 'to': 16.0, 'sure': 1.0, 'instructions': 1.0, 'pen': 1.0, 'description': 1.0, 'years': 1.0, 'heavy': 1.0, 'as': 3.0, 'falls': 1.0, 'clothes': 1.0, 'was': 9.0, 'grey': 2.0, 'baby': 4.0, 'she': 1.0, 'gets': 1.0, 'read': 2.0, 'storage': 3.0, 'the': 31.0, 'doing': 1.0, 'diapers': 1.0, 'but': 5.0, 'chose': 1.0, 'end': 1.0, '2': 1.0, 'dark': 1.0, 'want': 3.0, 'call': 1.0, '20': 2.0, 'that': 4.0, 'because': 2.0, 'deep': 1.0, 'these': 1.0, 'bigger': 1.0, 'do': 2.0, 'expecting': 1.0, 'if': 2.0, 'since': 4.0, '1': 2.0, 'we': 7.0, 'take': 2.0, 'im': 2.0, 'a': 11.0, '4': 1.0, 'up': 1.0, 'child': 1.0, 'supplies': 1.0, 'meet': 2.0, 'is': 8.0, 'again': 1.0, 'which': 1.0, 'side': 1.0, 'till': 1.0, 'around': 2.0, 'needs': 2.0, 'stability': 1.0, 'like': 1.0, 'cube': 1.0, 'more': 1.0, 'year': 1.0, 'specific': 1.0, 'this': 7.0, 'others': 2.0, 'lug': 1.0, 'nice': 4.0, 'big': 4.0, 'ugly': 1.0, 'play': 2.0, 'just': 1.0, 'and': 21.0, 'bought': 1.0, 'sided': 1.0, 'items': 1.0, 'on': 2.0, 'wheels': 1.0, 'bed': 1.0, 'when': 1.0, 'what': 4.0, 'someone': 1.0, 'you': 1.0, 'am': 3.0, 'me': 3.0, 'issues': 1.0, 'are': 4.0, 'hour': 1.0, 'room': 3.0, 'my': 4.0, 'learning': 1.0, 'napper': 1.0, 'not': 13.0, 'needed': 1.0, 'limited': 3.0, 'space': 3.0, 'most': 1.0, 'house': 1.0, 'people': 1.0, 'it': 16.0, 'be': 1.0, 'picture': 1.0, 'with': 6.0, 'using': 2.0, 'guessed': 1.0, 'stated': 1.0, 'table': 3.0, 'had': 7.0, 'first': 1.0, 'n': 1.0, '12': 1.0, 'cheap': 1.0, 'dont': 1.0, 'off': 1.0, 'get': 1.0, 'stick': 1.0, 'reviewed': 1.0, 'for': 5.0, 'purchase': 1.0, 'guess': 1.0, 'over': 1.0, '100': 2.0, 'match': 1.0, 'pack': 1.0, 'plays': 1.0, 'wobbly': 1.0, 's': 4.0, 'ever': 1.0, 'dissatisfied': 2.0, 'an': 1.0, 'overall': 1.0, 'they': 3.0, 'them': 1.0, 'has': 1.0, 'taupe': 1.0, 'next': 1.0, 'exactly': 1.0, 'days': 1.0, 'soft': 1.0, 'maybe': 1.0, 'without': 1.0, '5': 1.0, 'one': 2.0, '3': 1.0, 'too': 1.0, 'happy': 1.0, 'some': 3.0, 'checked': 1.0, 'out': 2.0, 'or': 1.0, 'said': 2.0, 'tilted': 1.0, 'down': 2.0, 'shelves': 1.0, 'into': 1.0, 'unit': 2.0, 'were': 1.0, 'in': 7.0, 'together': 2.0, 'would': 5.0, 'located': 1.0, 'snowflake': 1.0, 'awkward': 1.0, 'colors': 1.0, 'number': 1.0, 'of': 5.0, 'old': 1.0, 'bonus': 1.0, 'selling': 1.0, 'point': 1.0, 'looking': 2.0, 'does': 1.0, 'plan': 1.0, 'its': 2.0, 'really': 1.0, 'so': 1.0, 'did': 3.0, 'kind': 1.0, 'sags': 1.0, 'assembly': 1.0, '6': 1.0, 'stuck': 1.0, 'step': 2.0, 'by': 2.0, 'min': 1.0, 'used': 1.0, 'decided': 1.0, 'about': 1.0, 'tool': 1.0, 'words': 1.0, 'have': 2.0, 'been': 1.0}
Word element => {'baby': 1.0, 'for': 1.0, 'bed': 1.0, 'a': 1.0, 'want': 1.0, 'traveling': 1.0, 'assemble': 1.0, 'extremely': 1.0, 'plays': 1.0, 'everything': 1.0, 'comfy': 1.0, 'and': 3.0, 'very': 1.0, 'to': 1.0, 'easy': 1.0, 'thought': 1.0, 'of': 2.0, 'sturdy': 1.0, 'are': 1.0, 'your': 1.0, 'they': 1.0, 'mother': 1.0, 'the': 1.0, 'great': 1.0, 'pack': 1.0, 'all': 1.0, 'pick': 1.0, 'if': 1.0, 'you': 1.0, 'planning': 1.0, 'on': 1.0}
Word element => {'us': 1.0, 'big': 1.0, 'not': 1.0, 'part': 1.0, 'items': 1.0, 'those': 1.0, 'wont': 1.0, 'eventually': 1.0, 'side': 1.0, 'on': 1.0, 'make': 1.0, 'like': 1.0, 'reading': 1.0, 'put': 1.0, 'changing': 2.0, 'gave': 1.0, 'that': 1.0, 'if': 1.0, 'his': 1.0, 'future': 1.0, 'keep': 1.0, 'what': 1.0, 'works': 1.0, 'pack': 1.0, 'nursery': 1.0, 'only': 1.0, 'even': 1.0, 'boy': 1.0, 'so': 2.0, 'my': 1.0, 'be': 1.0, 'some': 1.0, 'was': 1.0, 'main': 1.0, 'worried': 1.0, 'just': 3.0, 'great': 1.0, 'little': 2.0, 'nice': 1.0, 'of': 1.0, 'the': 11.0, 'table': 1.0, 'easier': 1.0, 'a': 5.0, 'reviews': 1.0, 'we': 5.0, 't': 1.0, 's': 2.0, 'well': 1.0, 'i': 5.0, 'etc': 1.0, '4': 1.0, 'will': 3.0, 'but': 2.0, 'one': 1.0, 'classy': 1.0, 'months': 1.0, 'for': 6.0, 'bottom': 1.0, 'love': 1.0, 'girl': 1.0, 'where': 1.0, 'him': 1.0, 'it': 5.0, 'n': 1.0, 'style': 1.0, 'few': 2.0, 'this': 2.0, 'play': 1.0, 'and': 9.0, 'storage': 3.0, 'changes': 1.0, 'deal': 1.0, 'baby': 3.0, 'stars': 1.0, 'colors': 1.0, 'have': 1.0, 'after': 1.0, 'napper': 1.0, 'station': 1.0, 'need': 1.0, 'in': 2.0, 'our': 2.0, 'sleep': 1.0, 'bassinet': 1.0, 'to': 3.0, 'annoying': 1.0, 'as': 1.0, 'room': 1.0, 'diapers': 1.0, 'are': 1.0, 'first': 1.0, 'move': 1.0, 'crib': 1.0, 'is': 3.0, 'extra': 1.0, 'wipes': 1.0, 'don': 1.0, 'use': 3.0, 'night': 1.0, 'things': 1.0, 'tricky': 1.0, 'together': 1.0, 'taking': 1.0, 'until': 1.0, 'off': 1.0, 'reason': 1.0, 'cumbersome': 1.0}
Word element => {'installed': 1.0, 'used': 1.0, 'portable': 1.0, 'place': 1.0, 'to': 1.0, 'be': 1.0, 'product': 1.0, 'in': 2.0, 'can': 1.0, 'locks': 1.0, 'everything': 1.0, 'together': 1.0, 'is': 1.0, 'put': 1.0, 'but': 1.0, 'some': 1.0, 'bassinet': 1.0, 'takes': 1.0, 'pen': 1.0, 'time': 1.0, 'isn': 1.0, 'well': 2.0, 'and': 1.0, 'issue': 1.0, 'made': 1.0, 't': 1.0, 'great': 1.0, 'the': 2.0, 'only': 2.0, 'i': 1.0, 'have': 1.0}
Word element => {'home': 1.0, 'my': 1.0, 'delivery': 1.0, 'who': 1.0, 'would': 2.0, 'to': 1.0, 'was': 1.0, 'i': 1.0, 'said': 1.0, 'like': 1.0, 'gift': 1.0, 'assume': 1.0, 'a': 1.0, 'so': 1.0, 'have': 1.0, 'the': 1.0, 't': 1.0, 'person': 1.0, 'received': 1.0, 'that': 1.0, 'something': 1.0, 'if': 1.0, 'this': 1.0, 'it': 2.0, 'quick': 1.0, 'they': 1.0, 'didn': 1.0}
Word element => {'for': 1.0, 'position': 1.0, 'dissemble': 1.0, 'condense': 1.0, 'assemble': 1.0, 'partially': 1.0, 'to': 4.0, 'was': 1.0, 'carrying': 1.0, 'difficult': 1.0, 'put': 1.0, 'store': 1.0, 'needed': 1.0, 'then': 1.0, 'still': 1.0, 'found': 1.0, 'i': 3.0, 'and': 1.0, 'it': 5.0, 'folding': 1.0, 'that': 1.0, 'even': 1.0, 'harder': 1.0, 'somewhere': 1.0, 'cannot': 1.0, 'in': 1.0, 'the': 1.0}
Word element => {'else': 1.0, 'everything': 1.0, 'that': 1.0, 'then': 1.0, 'other': 1.0, 'out': 1.0, 'perfect': 1.0, 'falling': 1.0, 'in': 1.0, 'anything': 1.0, 'but': 1.0, 'put': 1.0, 'storage': 2.0, 'not': 1.0, 'sagging': 1.0, 'hold': 1.0, 'very': 1.0, 'up': 1.0, 'on': 1.0, 'love': 1.0, 'without': 1.0, 'can': 1.0, 'only': 1.0, 'it': 2.0, 'dislike': 1.0, 'is': 2.0, 'side': 1.0, 'or': 1.0, 'good': 2.0, 'i': 1.0, 'does': 1.0, 'at': 1.0, 'space': 2.0, 'thing': 1.0, 'all': 1.0, 'hardly': 1.0, 'the': 4.0, 't': 1.0}
Word element => {'years': 1.0, 'few': 1.0, 'little': 1.0, 'be': 1.0, 'together': 1.0, 'but': 1.0, 'will': 1.0, 'put': 1.0, 'to': 2.0, 'intimidating': 1.0, 'the': 1.0, 'made': 1.0, 'a': 1.0, 'well': 2.0, 'and': 1.0, 'for': 1.0, 'functions': 1.0, 'i': 1.0, 'm': 1.0, 'times': 1.0, 'sure': 1.0, 'come': 1.0, 'first': 1.0, 'it': 1.0, 'used': 1.0}
Word element => {'needs': 1.0, 'another': 1.0, 'that': 3.0, 'box': 1.0, 'holder': 1.0, 'ok': 1.0, 'everything': 1.0, 'accessories': 1.0, 'crib': 4.0, 'accessory': 1.0, 'table': 1.0, 'like': 3.0, 'hold': 1.0, 'up': 1.0, 'child': 1.0, 'set': 1.0, 'opened': 1.0, 'just': 1.0, 'music': 3.0, 'can': 1.0, 'but': 1.0, 'necessities': 1.0, 'a': 6.0, 't': 1.0, 'except': 1.0, 'on': 1.0, 'for': 4.0, 'my': 2.0, 'diaper': 2.0, 'device': 1.0, 'the': 16.0, 'place': 2.0, 'without': 1.0, 'i': 7.0, 'knew': 1.0, 'pack': 1.0, 'what': 1.0, 'had': 1.0, 'newborn': 1.0, 'it': 5.0, 'higher': 1.0, 'looked': 2.0, 'n': 1.0, 'few': 1.0, 'this': 2.0, 'mattress': 1.0, 'hangs': 1.0, 'and': 6.0, 'was': 5.0, '4th': 1.0, 'portable': 2.0, 'wanted': 2.0, 'to': 1.0, 'bassinet': 2.0, 'low': 1.0, 'flimsy': 1.0, 'didn': 1.0, 'look': 1.0, 'would': 2.0, 'position': 1.0, 'more': 1.0, 'baby': 2.0, 'them': 1.0, 'items': 1.0, 'changing': 2.0, 'put': 2.0, 'floor': 1.0, 'purchased': 1.0, 'ripping': 1.0, 'feature': 2.0, 'or': 2.0, 's': 1.0, 'plug': 1.0, 'spilling': 1.0, 'darling': 1.0, 'bonus': 1.0, 'be': 1.0, 'in': 4.0, 'than': 1.0, 'way': 1.0, 'returned': 1.0, 'with': 1.0, 'really': 2.0, 'play': 2.0, 'awesome': 1.0, 'you': 1.0, 'am': 1.0, 'fits': 1.0, 'all': 1.0, 'an': 1.0, 'off': 2.0, 'own': 1.0, 'side': 1.0, 'good': 1.0, 'ipod': 1.0, 'phone': 1.0, 'section': 1.0, 'if': 1.0, 'still': 1.0, 'looking': 1.0}
Word element => {'worth': 1.0, 'is': 2.0, 'time': 1.0, 'great': 1.0, 'changer': 1.0, 'our': 1.0, 'we': 1.0, 'it': 2.0, 'this': 1.0, 'for': 1.0, 'downstairs': 1.0, 'napper': 1.0, 'use': 1.0, 'but': 1.0, 'excellent': 1.0, 'light': 1.0, 'weight': 1.0, 'help': 1.0, 'and': 1.0, 'well': 1.0, 'a': 1.0, 'took': 1.0, 'solid': 1.0, 'assembly': 1.0, 'some': 1.0}
Word element => {'good': 1.0, 'a': 1.0, 'compartment': 1.0, 'storage': 1.0, 'love': 1.0, 'in': 2.0, 'perfect': 1.0, 'also': 1.0, 'move': 1.0, 'comparison': 1.0, 'need': 1.0, 'time': 1.0, 'every': 1.0, 'to': 3.0, 'was': 1.0, 'not': 2.0, 'ones': 1.0, 'disassemble': 1.0, 'the': 4.0, 'but': 2.0, 'room': 2.0, 'bedroom': 1.0, 'dose': 1.0, 'other': 1.0, 'we': 2.0, 'play': 1.0, 'market': 1.0, 'and': 2.0, 'like': 1.0, 'assembly': 1.0, 'i': 2.0, 'wide': 1.0, 'pack': 1.0, 'product': 2.0, 'from': 1.0, 'kind': 1.0, 'fit': 1.0, 'through': 1.0, 'overall': 1.0, 'kid': 1.0, 'of': 2.0, 'door': 1.0, 'is': 1.0, 'this': 2.0, 'hard': 1.0, 'it': 3.0}
Word element => {'of': 1.0, 'on': 1.0, 's': 1.0, 'etc': 1.0, 'towels': 1.0, 'for': 1.0, 'storage': 1.0, 'lady': 1.0, 'baby': 1.0, 'she': 1.0, 'loves': 1.0, 'it': 2.0, 'powder': 1.0, 'wipes': 2.0, 'very': 1.0, 'much': 1.0, 'extra': 1.0, 'that': 1.0, 'realy': 1.0, 'side': 1.0, 'likes': 1.0, 'my': 1.0, 'the': 2.0}
Word element => {'clean': 1.0, 'assemble': 1.0, 'and': 1.0, 'get': 1.0, 'to': 3.0, 'product': 1.0, 'is': 3.0, 'many': 1.0, 'very': 1.0, 'from': 1.0, 'best': 1.0, 'the': 3.0, 'portable': 1.0, 'my': 1.0, 'years': 2.0, 'baby': 1.0, 'quality': 1.0, 'will': 2.0, 'excellent': 1.0, 'because': 1.0, 'easy': 2.0, 'last': 1.0, 'i': 2.0, 'for': 2.0, 'one': 1.0, 'consider': 1.0, 'of': 4.0, 'value': 1.0, 'come': 1.0, 'this': 1.0, 'it': 4.0, 'purchases': 1.0, 'number': 1.0, 'use': 1.0}
Word element => {'downstairs': 1.0, 'upstairs': 1.0, 'these': 1.0, 'bought': 1.0, 'accessories': 1.0, 'should': 1.0, 'wipes': 1.0, 'bag': 1.0, 'holder': 1.0, '6': 1.0, '5': 1.0, 'holds': 1.0, 'perfectly': 1.0, 'diapers': 1.0, 'plus': 1.0, 'walking': 1.0, 'was': 1.0, 'into': 1.0, 'like': 1.0, 'were': 1.0, 'disagree': 1.0, 'useless': 1.0, 'shallow': 1.0, 'basket': 1.0, 'way': 1.0, 'all': 1.0, 'other': 3.0, 'could': 1.0, 'how': 1.0, 'times': 1.0, 'last': 1.0, 'am': 1.0, 'by': 1.0, 'pacifiers': 1.0, 'just': 2.0, 'it': 14.0, 'flip': 1.0, 'or': 2.0, 'would': 1.0, 'wire': 1.0, 'loose': 1.0, 'a': 5.0, 'might': 1.0, 'have': 6.0, 'something': 1.0, 'been': 1.0, 'changing': 1.0, 'is': 6.0, 'soothing': 1.0, 'too': 1.0, 'one': 6.0, 'bump': 1.0, 'dishes': 1.0, 't': 4.0, 'rocker': 1.0, 'control': 1.0, 'of': 2.0, 'the': 14.0, 'heavier': 1.0, 'haha': 1.0, 'didn': 1.0, 'i': 14.0, 'two': 2.0, 'can': 2.0, 'but': 3.0, 'skipped': 1.0, 'side': 1.0, 'made': 1.0, 'happily': 1.0, 'therefor': 1.0, 'off': 4.0, 'see': 1.0, 'yes': 1.0, 'in': 5.0, 'bigger': 1.0, 'if': 1.0, 'turn': 1.0, 'sag': 1.0, 'switch': 1.0, 'feel': 1.0, 'any': 2.0, 'say': 1.0, 'replaced': 1.0, 'be': 1.0, 'used': 1.0, 'make': 2.0, 'complaint': 1.0, 'done': 1.0, 'legs': 1.0, 'get': 1.0, 'sure': 1.0, 'anyone': 1.0, 'and': 7.0, 'aspirator': 1.0, 'vibration': 3.0, 'table': 1.0, 'know': 1.0, 'my': 4.0, 'me': 1.0, 'reviews': 1.0, 'shouldn': 1.0, 'take': 2.0, 'to': 7.0, 'pretty': 1.0, 'people': 1.0, 'exactly': 1.0, 'naps': 2.0, 'stars': 1.0, 'for': 3.0, 'where': 1.0, 'few': 1.0, 'this': 1.0, 'must': 1.0, 'discourage': 1.0, 'nasal': 1.0, 'that': 1.0, 'because': 3.0, 'having': 1.0, 'fluke': 1.0, 'next': 1.0, 'has': 1.0, 'thanks': 1.0, 'specific': 1.0, 'else': 1.0, 'from': 1.0, 'buying': 2.0, 'when': 2.0, 'what': 1.0, 'newborn': 1.0, 'complain': 1.0, 'needed': 1.0, 'some': 1.0, 'about': 1.0, 'only': 1.0, 'sags': 1.0, 'she': 1.0, 'baby': 3.0, 'graco': 1.0, 'haven': 1.0, 'on': 6.0, 'noticed': 1.0, 'sagging': 1.0, 'though': 1.0, 'don': 1.0}
Word element => {'washcloth': 1.0, 'up': 1.0, 'rolled': 1.0, 'toward': 1.0, 'rolls': 1.0, 'baby': 1.0, 'as': 1.0, 'side': 3.0, 'from': 1.0, 'changing': 1.0, 'home': 1.0, 'was': 1.0, 'turned': 1.0, 'comfy': 1.0, 'issue': 1.0, 'the': 4.0, 'around': 1.0, 'is': 4.0, 'more': 1.0, 'my': 1.0, 'since': 1.0, 'rocks': 1.0, 'hospital': 1.0, 'this': 1.0, 'he': 2.0, 'n': 1.0, 'it': 3.0, 'with': 1.0, 'grandson': 1.0, 'and': 1.0, 'play': 1.0, 'feature': 3.0, 'only': 1.0, 'pack': 1.0, 'likes': 1.0, 'has': 1.0, 'makes': 1.0, 'happily': 1.0, 'in': 1.0, 'him': 1.0, 'great': 1.0, 'feel': 1.0, 'use': 1.0, 'slept': 1.0, 'secure': 1.0, 'work': 1.0, 'particularly': 1.0, 'slight': 1.0, 'on': 3.0, 'support': 1.0, 'table': 1.0, 'brought': 1.0, 'vibration': 1.0, 'which': 1.0, 'a': 3.0, 'could': 1.0, 'one': 3.0}
Word element => {'stars': 1.0, '5': 1.0, 'would': 1.0, 'installed': 1.0, 'quieter': 1.0, 'unit': 1.0, 'out': 1.0, 'works': 1.0, 'part': 1.0, 'from': 1.0, 'want': 1.0, 'lol': 1.0, 'or': 1.0, 'yet': 1.0, 'wherever': 1.0, 'little': 1.0, 'do': 1.0, 'dining': 1.0, 'our': 1.0, 'people': 1.0, 'removable': 1.0, 'but': 2.0, 'take': 1.0, 'we': 6.0, 'a': 3.0, 's': 1.0, 't': 1.0, 'can': 2.0, 'so': 3.0, 'needs': 1.0, 'she': 1.0, '1st': 1.0, 'born': 1.0, 'daughter': 1.0, 'for': 2.0, 'expensive': 1.0, 'on': 3.0, 'will': 1.0, 'extremely': 1.0, 'secure': 1.0, 'it': 6.0, 'jan': 1.0, 'my': 1.0, 'living': 1.0, 'fact': 1.0, 'be': 1.0, 'bought': 2.0, 'try': 1.0, 'lot': 1.0, 'one': 1.0, 'well': 1.0, 'i': 9.0, 'with': 1.0, 'ratted': 1.0, 'this': 2.0, 'the': 7.0, 'of': 2.0, 'given': 1.0, 'cradle': 2.0, 'set': 1.0, 'used': 1.0, 'up': 1.0, 'budget': 2.0, 'like': 1.0, 'vibration': 2.0, 'that': 3.0, 'because': 1.0, 'easily': 1.0, '2014': 1.0, 'when': 2.0, 'frustration': 1.0, 'sleeps': 2.0, 'more': 2.0, 'and': 4.0, 'is': 1.0, 'sits': 1.0, 'who': 1.0, 'atop': 1.0, 'see': 1.0, 'bed': 1.0, 'makes': 1.0, 'great': 1.0, 'system': 1.0, 'loud': 1.0, 'priced': 1.0, 'best': 1.0, 'doubt': 1.0, 'll': 2.0, 've': 1.0, 'down': 1.0, 'her': 2.0, 'anyway': 1.0, 'use': 1.0, 'have': 1.0, 'if': 1.0, 'tighter': 1.0, 'ad': 1.0, 'while': 2.0, 'tie': 1.0, 'haven': 1.0, 'cribs': 1.0, 'room': 2.0, 'these': 1.0, 'types': 1.0, 'to': 2.0, 'bassinet': 1.0, 'are': 1.0, 'was': 2.0, 'hope': 1.0}
Word element => {'able': 1.0, 'part': 1.0, 'definitely': 1.0, 'better': 1.0, 'should': 1.0, 'they': 1.0, 'about': 1.0, 'else': 1.0, 'everything': 1.0, 'disappointing': 1.0, 'use': 2.0, 'even': 1.0, 'look': 1.0, 'right': 1.0, 'needed': 1.0, 'home': 1.0, 'had': 1.0, 'because': 1.0, 'which': 1.0, 'table': 3.0, 'brought': 1.0, 'just': 1.0, 'attached': 2.0, 'when': 1.0, 'can': 1.0, 'but': 2.0, 'save': 1.0, 'laid': 1.0, 'that': 1.0, 'into': 2.0, 'changing': 3.0, 'she': 2.0, 'it': 6.0, 'this': 2.0, 'n': 1.0, 'love': 2.0, 'the': 6.0, 'only': 1.0, 'pack': 1.0, 'of': 2.0, '6': 1.0, 'bought': 1.0, 'one': 3.0, 'reasons': 1.0, 'on': 3.0, 'over': 1.0, 'space': 1.0, 'attaching': 1.0, 'to': 1.0, 'as': 2.0, 'our': 1.0, 'newborn': 1.0, 's': 1.0, 't': 1.0, 'we': 6.0, 'weighed': 1.0, 'was': 1.0, 'unfortunately': 1.0, 'rolled': 1.0, 'is': 2.0, 'side': 2.0, 'so': 2.0, 'play': 1.0, 'and': 1.0, 'soon': 1.0, 'pounds': 1.0, 'i': 1.0, 'her': 1.0}
Word element => {'best': 1.0, 'probably': 1.0, 'made': 1.0, 'because': 1.0, 'new': 1.0, 'brand': 1.0, 'was': 2.0, 'cove': 1.0, 'baby': 2.0, 'rock': 1.0, 'loved': 1.0, 'falling': 1.0, 'with': 1.0, 'help': 1.0, 'sounds': 1.0, 'removes': 1.0, 'attachment': 1.0, 'easily': 1.0, 'when': 2.0, 'area': 1.0, 'snuggled': 1.0, 'vibration': 1.0, 'sleeping': 3.0, 'just': 1.0, 'soothing': 1.0, 'down': 1.0, 'etc': 1.0, 'running': 1.0, 'received': 1.0, 'dining': 1.0, 'diaper': 1.0, 'all': 1.0, 'sleep': 1.0, 'to': 3.0, 'pack': 1.0, 'have': 1.0, 'up': 2.0, 'set': 2.0, 'there': 2.0, 'of': 1.0, 'not': 1.0, 'n': 1.0, 'she': 2.0, 'it': 3.0, 'perfect': 1.0, 'this': 2.0, 'room': 1.0, 'cuddle': 1.0, 'is': 2.0, 'music': 1.0, 'but': 1.0, 'change': 1.0, 'every': 1.0, 'really': 1.0, 'save': 1.0, 'and': 3.0, 'play': 1.0, 'nap': 2.0, 'or': 1.0, 'time': 2.0, 'changing': 2.0, 'feel': 1.0, 'great': 1.0, 'big': 1.0, 'station': 1.0, 'could': 1.0, 'steps': 1.0, 'we': 4.0, 's': 3.0, 'a': 2.0, 'the': 9.0, 'place': 1.0, 'diapers': 1.0, 'on': 2.0, 'put': 1.0, 'in': 2.0, 'lotion': 1.0, 'thing': 2.0, 'no': 1.0, 'for': 4.0, 'where': 1.0, 'her': 2.0, 'wipes': 1.0}
Word element => {'recipient': 1.0, 'on': 1.0, 'pass': 1.0, 'doesn': 1.0, 'risk': 1.0, 'pack': 1.0, 'who': 1.0, 'keep': 1.0, 'them': 1.0, 'has': 1.0, 'extras': 1.0, 'while': 1.0, 'purchased': 1.0, 'had': 1.0, 'just': 1.0, 'constructed': 1.0, 'wish': 1.0, 'this': 2.0, 'well': 1.0, 'i': 3.0, 'cor': 1.0, 'very': 1.0, 'little': 1.0, 'eacute': 1.0, 'however': 1.0, 'play': 1.0, 'and': 3.0, 'young': 1.0, 'combination': 1.0, 'set': 1.0, '34': 2.0, 'a': 2.0, 's': 1.0, 'the': 10.0, 'soft': 1.0, 'without': 1.0, 'my': 2.0, 'colors': 1.0, 'fully': 1.0, 'want': 1.0, 'is': 3.0, 'level': 1.0, 'around': 1.0, 'modern': 1.0, 'd': 1.0, 'n': 1.0, 'not': 1.0, 'children': 3.0, 'with': 3.0, 't': 2.0, 'fit': 1.0, 'for': 2.0, 'perfectly': 1.0, 'daughter': 2.0, 'together': 1.0, 'home': 1.0, 'reaching': 1.0, 'three': 1.0, 'into': 1.0, 'to': 4.0, 'bassinet': 1.0, 'they': 1.0, 'sleeping': 1.0, 'baby': 1.0, 'she': 1.0, 'it': 2.0, 'prefers': 1.0, 'print': 1.0, 'but': 1.0, 'use': 2.0, 'lowest': 1.0, 'be': 2.0, 'will': 2.0, 'carrier': 1.0, 'loaded': 1.0, 'bother': 1.0, 'when': 1.0, 'would': 1.0, 'ideal': 1.0, 'all': 2.0, 'other': 2.0, 'combo': 1.0, 'an': 1.0, 'are': 2.0, 'first': 1.0, 'lucky': 1.0, 'plush': 1.0, 'time': 1.0, 'probably': 1.0, 'mom': 1.0, 'or': 1.0, 'older': 1.0, 'wouldn': 1.0, 'infant': 1.0, 'material': 1.0, 'ones': 1.0, 'sure': 1.0, 'able': 1.0, 'm': 1.0, 'in': 1.0, 'order': 1.0}
Word element => {'her': 1.0, 'functional': 1.0, 'little': 1.0, 'making': 1.0, 'tilts': 1.0, 'very': 1.0, 'changing': 1.0, 'old': 1.0, 'over': 1.0, 'months': 1.0, 'but': 1.0, 'play': 1.0, 'also': 1.0, 'in': 1.0, 'all': 2.0, 'pack': 1.0, 'outgrew': 1.0, 'hard': 1.0, 'n': 1.0, 'it': 4.0, 'a': 2.0, 's': 1.0, 'small': 1.0, 'my': 1.0, 'one': 1.0, 'napper': 1.0, 'baby': 1.0, 'table': 1.0, 'she': 1.0, 'change': 1.0, 'side': 1.0, 'is': 2.0, 'diaper': 1.0, 'great': 1.0, 'the': 3.0, '2': 1.0, 'when': 1.0, 'too': 1.0, 'to': 2.0, 'was': 1.0}
Word element => {'just': 1.0, 'color': 1.0, 'gift': 1.0, 'must': 1.0, 'great': 2.0, 'the': 2.0, 'a': 4.0, 'is': 4.0, 'like': 1.0, 'toddler': 1.0, 'quality': 1.0, 'and': 1.0, 'it': 1.0, 'with': 1.0, 'this': 2.0, 'have': 1.0, 'was': 1.0, 'shown': 1.0, 'even': 1.0, 'online': 1.0, 'for': 1.0, 'playard': 1.0, 'someone': 1.0, 'baby': 1.0}
Word element => {'put': 1.0, 'and': 1.0, 'beautiful': 1.0, 'together': 1.0, 'was': 2.0, 'to': 1.0, 'purchased': 1.0, 'this': 1.0, 'item': 1.0, 'needs': 1.0, 'a': 1.0, 'co': 1.0, 'worker': 1.0, 'her': 1.0, 'for': 2.0, 'pattern': 1.0, 'easy': 1.0, 'all': 1.0, 'perfect': 1.0}
Word element => {'set': 1.0, 'type': 1.0, 'yard': 1.0, 'uses': 1.0, 'well': 1.0, 'will': 1.0, 'it': 4.0, 'little': 1.0, 'work': 1.0, 'but': 1.0, 'had': 1.0, 'plays': 1.0, 'pack': 1.0, 'other': 1.0, 'side': 1.0, 'keep': 1.0, 'bigger': 2.0, 'was': 1.0, 'from': 1.0, 'baby': 2.0, 'up': 1.0, 'don': 1.0, '5': 1.0, 'room': 3.0, 'stars': 1.0, 'for': 2.0, 'in': 1.0, 'on': 1.0, 'stuff': 1.0, 'many': 1.0, 'caddy': 1.0, 'really': 1.0, 'rocker': 1.0, 'is': 2.0, 'cuddle': 1.0, 'as': 2.0, 'to': 5.0, 'wish': 1.0, 'perfect': 1.0, 'this': 1.0, 'first': 2.0, 'cove': 1.0, 'come': 1.0, 'weeks': 1.0, 'sure': 1.0, 'get': 2.0, 'wanted': 1.0, 'done': 1.0, 'play': 1.0, 'and': 2.0, 'gets': 1.0, 'still': 1.0, 'storage': 2.0, 'changes': 1.0, '8': 1.0, 'leave': 1.0, 'have': 1.0, 'us': 1.0, 'i': 5.0, 'through': 1.0, 'the': 8.0, 'great': 1.0, 'a': 2.0, 't': 1.0, 'when': 2.0, 'you': 2.0, 'giving': 1.0, 'trying': 1.0, 'nicer': 1.0, 'toting': 1.0, 'are': 1.0, 'table': 1.0, 'b': 1.0, 'm': 1.0, 'c': 1.0, 'n': 1.0, 'those': 1.0, 'next': 1.0, 'changing': 1.0, 'that': 2.0, 'just': 1.0, 'few': 1.0, 'bought': 1.0, 'one': 1.0, 'months': 1.0}
Word element => {'stars': 1.0, 'with': 1.0, 'out': 1.0, 'start': 1.0, 'to': 1.0, '5': 1.0, 'about': 1.0, 'it': 1.0, 'sure': 1.0, 'this': 1.0, 'tell': 1.0, 'need': 1.0, 'any': 1.0, 'i': 1.0, 'one': 2.0, 'every': 1.0, 'would': 2.0, 'thing': 1.0}
Word element => {'overall': 1.0, 'sides': 1.0, 'side': 1.0, 'his': 1.0, 'infant': 1.0, 'station': 2.0, 'use': 1.0, 'i': 2.0, 'on': 1.0, 'your': 1.0, 'months': 1.0, 'superb': 1.0, 'without': 1.0, 'asleep': 1.0, 'the': 8.0, 'hit': 1.0, 'roll': 1.0, 'such': 1.0, 'of': 3.0, 'bassinet': 2.0, 'need': 1.0, 'this': 3.0, 'with': 1.0, 'he': 1.0, 'you': 1.0, 'really': 1.0, 'amazing': 1.0, 'accompanied': 1.0, 'compact': 1.0, 'easy': 1.0, 'separate': 1.0, 'gear': 1.0, 'is': 2.0, 'option': 1.0, '1st': 1.0, 'baby': 1.0, 't': 3.0, 's': 1.0, 'a': 1.0, 'well': 1.0, 'don': 2.0, 'child': 1.0, 'live': 1.0, 'made': 1.0, 'product': 1.0, 'for': 1.0, 'assemble': 1.0, 'its': 1.0, 'was': 1.0, 'as': 1.0, 'to': 2.0, 'and': 3.0, 'an': 1.0, 'musical': 1.0, 'my': 2.0, 'newborn': 1.0, 'changing': 2.0, 'loves': 2.0, 'coziness': 1.0, 'few': 1.0, 'life': 1.0, 'by': 1.0, 'can': 1.0, 'but': 1.0, 'music': 1.0, 'falls': 1.0, 'right': 1.0}
Word element => {'virtually': 1.0, '50': 1.0, 'trying': 1.0, 'standing': 1.0, 'bottom': 1.0, 'thing': 3.0, 'complaints': 1.0, 'underrepresented': 1.0, 'pad': 2.0, 'there': 3.0, 'slides': 1.0, 'itself': 2.0, 'page': 1.0, 'not': 2.0, 'in': 3.0, 'entire': 5.0, 'up': 2.0, 'handle': 2.0, 'gonna': 1.0, 'area': 1.0, 'make': 1.0, 'help': 1.0, 'significant': 1.0, 'nets': 1.0, 'with': 2.0, 'oh': 2.0, 'rigid': 1.0, 'obsolete': 1.0, 'within': 1.0, 'since': 1.0, 'portability': 1.0, 'products': 1.0, 'toddler': 1.0, 'nits': 1.0, 'how': 3.0, 'picking': 1.0, 'away': 1.0, 'under': 1.0, 'functions': 1.0, 'options': 1.0, 'technology': 1.0, 'quickly': 1.0, 'stowed': 1.0, 'just': 2.0, 'and': 8.0, 'couldn': 1.0, 'mistake': 1.0, 'on': 3.0, 'items': 1.0, 'rectangle': 1.0, 'understanding': 1.0, 'the': 27.0, 'they': 3.0, 'sturdy': 2.0, 'reviews': 1.0, 'then': 1.0, 'take': 1.0, 'are': 3.0, 'encompasses': 1.0, 'book': 1.0, 'perfectly': 3.0, 'sequence': 1.0, 'bassinet': 3.0, 'to': 11.0, 'table': 1.0, 'mule': 1.0, 'really': 1.0, 'isn': 1.0, 'undo': 1.0, 'pack': 1.0, 'much': 1.0, 'put': 1.0, 'specs': 1.0, 'recesses': 1.0, 'zero': 1.0, 'relatively': 1.0, 'this': 5.0, 'rocking': 1.0, 'be': 3.0, 'it': 7.0, 'thought': 1.0, 'stubborn': 1.0, 'changing': 1.0, 'research': 1.0, 'all': 1.0, 'fits': 2.0, 'design': 2.0, 'small': 1.0, 'have': 2.0, 'but': 2.0, 'is': 5.0, 'can': 2.0, 'strength': 1.0, 'so': 1.0, 'wonderful': 1.0, 'vastly': 1.0, 'able': 1.0, 'seat': 1.0, 'push': 1.0, 'storage': 1.0, 'read': 2.0, 'rods': 1.0, 'end': 1.0, 'very': 1.0, 'clear': 1.0, 'great': 1.0, 'happier': 1.0, 'if': 2.0, 'play': 1.0, 'every': 1.0, 'go': 1.0, 't': 4.0, 'easy': 2.0, 'fit': 2.0, 'm': 1.0, 'snug': 2.0, 'doesn': 1.0, 's': 6.0, 'other': 1.0, 'ton': 1.0, 'proper': 1.0, 'closet': 1.0, 'went': 1.0, 'those': 1.0, 'for': 3.0, 'that': 5.0, 'remiss': 1.0, 'because': 1.0, 'well': 1.0, 'two': 1.0, 'become': 1.0, 'shape': 2.0, 'set': 1.0, 'carrying': 2.0, 'here': 1.0, 'sort': 1.0, 'a': 13.0, 'bag': 2.0, 'no': 2.0, 'designs': 1.0, 'from': 1.0, 'where': 2.0, 'perfect': 3.0, 'bed': 1.0, 'you': 2.0, 'synonymous': 1.0, 'requires': 2.0, 'pull': 1.0, 'safelatch': 2.0, 'into': 5.0, 'fabric': 1.0, 'through': 2.0, 'doorway': 1.0, 'do': 1.0, 'system': 1.0, 'product': 2.0, 'various': 1.0, 'insert': 1.0, 'happen': 1.0, 'pop': 1.0, 'same': 2.0, 'mention': 1.0, 'carry': 1.0, 'lookie': 1.0, 'folds': 3.0, 'what': 1.0, 'does': 2.0, 'features': 2.0, 'outside': 1.0, 'zipper': 2.0, 'pushing': 1.0, 'di': 1.0, 'int': 1.0, 'yes': 1.0, 'has': 1.0, 'hold': 1.0, 'like': 1.0, 'fine': 1.0, 'finishes': 1.0, 'or': 2.0, 'withstand': 1.0, 'perfection': 1.0, 'd': 1.0, 'didn': 1.0, 'safety': 1.0, 'ingenious': 1.0, 'playpen': 4.0, 'something': 1.0, 'rectangular': 2.0, 'which': 1.0, 'dark': 1.0, 'reminded': 1.0, 'did': 1.0, 'time': 1.0, 'down': 1.0, 'work': 1.0, 'hard': 1.0, 'one': 1.0, 'locking': 1.0, 'hercules': 1.0, 'enough': 2.0, 'necessary': 1.0, 'pressure': 1.0, 'as': 2.0, 'i': 5.0, 'simple': 1.0, 'button': 2.0, 'of': 7.0, 'even': 1.0, 'some': 1.0, 'frame': 1.0, 'were': 1.0, 'unlikely': 1.0}
Word element => {'week': 1.0, 'suprised': 1.0, 'like': 1.0, 'the': 1.0, 'a': 1.0, 't': 1.0, 'cute': 1.0, 'opened': 1.0, 'neutral': 1.0, 'but': 2.0, 'put': 1.0, 'easy': 1.0, 'be': 1.0, 'to': 3.0, 'was': 1.0, 'ship': 1.0, 'had': 1.0, 'super': 1.0, 'would': 1.0, 'together': 1.0, 'box': 1.0, 'waaay': 1.0, 'baby': 1.0, 'it': 5.0, 'only': 1.0, 'cuter': 1.0, 'also': 1.0, 'person': 1.0, 'when': 1.0, 'i': 7.0, 'apo': 1.0, 'knew': 1.0, 'already': 1.0, 'received': 1.0, 'how': 1.0, 'at': 1.0, 'adorable': 1.0, 'is': 1.0, 'in': 1.0, 'said': 1.0, 'gender': 1.0, 'haven': 1.0, 'took': 1.0, 'far': 1.0, 'my': 2.0, 'yet': 1.0, 'actually': 1.0, 'love': 1.0, 'and': 1.0, 'just': 1.0, 'so': 1.0}
Word element => {'overall': 1.0, 'then': 1.0, 'unpacking': 1.0, 'packing': 1.0, 'rigors': 1.0, 'withstand': 1.0, 'of': 2.0, 'be': 1.0, 'should': 1.0, 'stouter': 1.0, 'since': 1.0, 'everyday': 1.0, 'carrier': 1.0, 'used': 1.0, 'works': 1.0, 'handy': 1.0, 'great': 2.0, 'travelling': 1.0, 'the': 5.0, 'attachement': 1.0, 'made': 1.0, 'travels': 1.0, 'it': 2.0, 'full': 1.0, 'this': 1.0, 'with': 2.0, 'item': 1.0, 'enough': 2.0, 'well': 1.0, 'has': 2.0, 'module': 1.0, 'load': 1.0, 'good': 1.0, 'things': 1.0, 'and': 3.0, 'about': 1.0, 'can': 1.0, 'removable': 1.0, 'material': 1.0, 'recieving': 1.0, 'helping': 1.0, 'to': 2.0, 'say': 1.0, 'comes': 1.0, 'soothe': 1.0, 'an': 1.0, 'infant': 1.0, 'bassenet': 1.0, 'been': 1.0, 'changing': 1.0, 'station': 1.0, 'holder': 1.0, 'a': 4.0, 't': 1.0, 'we': 1.0, 'are': 1.0, 'when': 1.0, 'traveling': 1.0, 'for': 1.0, 'product': 2.0, 'folds': 1.0, 'however': 1.0}
Word element => {'seems': 1.0, 'great': 1.0, 'it': 1.0, 'meantime': 1.0, 'but': 1.0, 'born': 1.0, 'the': 2.0, 'my': 1.0, 'will': 1.0, 'baby': 2.0, 'and': 1.0, 'in': 2.0, 'daughter': 1.0, 'is': 1.0, 'having': 1.0, 'recommended': 1.0, 'her': 1.0, 'be': 1.0, 'first': 1.0, 'everybody': 1.0, 'oct': 1.0, 'item': 1.0, 'this': 1.0}
Word element => {'all': 1.0, 'this': 1.0, 'recommend': 1.0, 'during': 1.0, 'clear': 1.0, 'instruction': 1.0, 'how': 1.0, 'product': 1.0, 'to': 1.0, 'garbage': 1.0, 'money': 1.0, 'absolutely': 1.0, 'do': 1.0, 'and': 3.0, 'were': 1.0, 'parts': 1.0, 'time': 1.0, 'is': 1.0, 'useless': 1.0, 'not': 2.0, 'waste': 1.0, 'of': 1.0, 'assemble': 1.0, 'easily': 1.0, 'ridiculously': 1.0, 'at': 1.0, 'assembly': 2.0, 'the': 2.0, 'guide': 1.0, 'damaged': 1.0}
Word element => {'unit': 1.0, 'about': 1.0, 'can': 1.0, 'there': 1.0, 'at': 1.0, 'him': 1.0, 'nurse': 1.0, 'need': 1.0, 'vibrating': 1.0, 'fantastic': 1.0, 'when': 1.0, 'seen': 1.0, 'newborn': 1.0, 'in': 2.0, 'also': 2.0, 'pack': 1.0, 'almost': 1.0, 'this': 3.0, 'n': 1.0, 'he': 1.0, 'it': 3.0, 'with': 1.0, 'component': 1.0, 'have': 1.0, 'falls': 1.0, 'handy': 1.0, 'my': 2.0, 'far': 1.0, 'bad': 1.0, 'nothing': 1.0, 'nicest': 1.0, 'of': 1.0, 'immediately': 1.0, 'and': 1.0, 'play': 1.0, 'too': 1.0, 'i': 5.0, 'one': 1.0, 'the': 4.0, 'asleep': 1.0, 'say': 1.0, 'is': 3.0, 'comes': 2.0, 'to': 1.0, 'seat': 1.0, 'as': 1.0, 'table': 1.0, 'recommend': 1.0, 'would': 1.0, 'product': 1.0, 'musical': 1.0, 'a': 1.0, 'well': 1.0, 'loves': 2.0, 'changing': 1.0, 'that': 2.0, 'night': 2.0, 'baby': 1.0, 'use': 1.0, 'by': 1.0, 'light': 1.0}
Word element => {'product': 1.0, 'good': 1.0, 'enough': 1.0, 'out': 1.0, 'carried': 1.0, 'your': 1.0, 'part': 3.0, 'from': 1.0, 'even': 1.0, 'recommend': 1.0, 'cove': 5.0, 'however': 1.0, 'packed': 1.0, 'cuddle': 5.0, 'is': 3.0, 'around': 1.0, 'say': 2.0, 'have': 2.0, 'hang': 1.0, 'months': 1.0, 'newborn': 2.0, 'lifesaver': 1.0, 'we': 5.0, 'a': 4.0, 'go': 1.0, 'item': 1.0, 'will': 1.0, 'about': 2.0, 'brought': 1.0, 'table': 2.0, 'using': 1.0, 'not': 4.0, 'absolute': 1.0, 'lightweight': 1.0, 'another': 1.0, 'my': 1.0, 'may': 2.0, 'far': 1.0, 'as': 2.0, 'bassinet': 1.0, 'to': 2.0, 'best': 2.0, 'for': 5.0, 'where': 2.0, 'since': 1.0, 'pnp': 4.0, 'of': 2.0, 'the': 14.0, 'slept': 1.0, 'i': 5.0, 'did': 2.0, 'be': 3.0, 'home': 1.0, 'by': 1.0, 'this': 5.0, 'few': 2.0, 'life': 1.0, 'research': 1.0, 'it': 2.0, 'baby': 5.0, 'she': 1.0, 'and': 3.0, 'house': 1.0, 'with': 1.0, 'inside': 1.0, 'when': 1.0, 'was': 2.0, 'lbs': 1.0, 'had': 1.0, 'into': 1.0, 'that': 1.0, 'changing': 2.0, 'once': 1.0, 'room': 1.0, 'cannot': 1.0, 'very': 2.0, 'being': 1.0, 'expecting': 2.0, 'if': 2.0, 'lot': 1.0, 'held': 1.0, 'or': 1.0, 'seat': 1.0, 'in': 1.0, 'would': 3.0, 'either': 1.0, 'weeks': 1.0, 'now': 1.0, 'first': 2.0, 'are': 3.0, 'big': 2.0, 'max': 1.0, '15': 1.0, 'things': 1.0, 'detaches': 1.0, 'you': 3.0, 'able': 1.0, 'her': 2.0, 'use': 1.0, 'long': 1.0, 'think': 1.0, 'definitely': 1.0, 'up': 1.0}
Word element => {'winslet': 1.0, 'but': 1.0, 'every': 1.0, 'sheets': 1.0, 'find': 1.0, 'could': 1.0, 'and': 2.0, 'sheet': 1.0, 'a': 1.0, 'adorable': 1.0, 'easy': 1.0, 'didn': 1.0, 'not': 1.0, 'seat': 1.0, 'graco': 1.0, 'rocking': 1.0, 'together': 1.0, 'to': 2.0, 'was': 5.0, 'play': 1.0, 'other': 1.0, 'playpen': 1.0, 'pack': 1.0, 'thing': 1.0, 'colors': 1.0, 'assemble': 1.0, 'i': 2.0, 'disappointed': 1.0, 'in': 1.0, 'that': 1.0, 'the': 3.0, 'great': 1.0, 't': 1.0, 'come': 1.0, 'it': 1.0, 'only': 1.0, 'with': 1.0}
Word element => {'for': 1.0, 'extra': 1.0, 'just': 1.0, 'cushion': 1.0, 'car': 1.0, 'replaced': 1.0, 'support': 1.0, 'cloths': 1.0, 'can': 1.0, 'change': 1.0, 'blankets': 1.0, 'did': 1.0, 'swaddle': 1.0, 'pillow': 1.0, 'wait': 1.0, 'bassinet': 2.0, 'padding': 1.0, 'changer': 1.0, 'between': 1.0, 'room': 1.0, 'enough': 1.0, 'burp': 1.0, 'there': 1.0, 'compartments': 1.0, 'nursing': 2.0, 'seat': 1.0, 'to': 3.0, 'store': 1.0, 'was': 2.0, 'had': 1.0, 'pack': 1.0, 'able': 1.0, 'again': 1.0, 'when': 1.0, 'idea': 2.0, 'super': 1.0, 'really': 1.0, 'more': 1.0, 'is': 2.0, 'side': 2.0, 'and': 3.0, 'play': 1.0, 'no': 1.0, 'whole': 1.0, 'i': 9.0, 'putting': 1.0, 'chic': 1.0, 'wipes': 1.0, 's': 1.0, 'a': 5.0, 'baby': 1.0, 'them': 1.0, 'started': 1.0, 'believe': 1.0, 'the': 7.0, 'padded': 1.0, 'until': 1.0, 'print': 1.0, 'so': 1.0, 'not': 1.0, 'n': 1.0, 'she': 1.0, 'remove': 1.0, 'it': 3.0, 'this': 2.0, 'convenient': 1.0, 'piece': 1.0, 'with': 2.0, 'vibrate': 1.0, 'lovely': 1.0, 'gets': 1.0, 'storage': 1.0, 'essentials': 1.0, 'together': 1.0, 'like': 1.0, 'table': 1.0, 'bigger': 1.0, 'lot': 1.0, 'changing': 1.0, 'that': 2.0, 'will': 2.0, 'put': 1.0, 'diapers': 1.0, 'get': 1.0, 'carters': 1.0, 'of': 3.0, 'use': 2.0, 'newborn': 1.0, 'keeping': 1.0, 'out': 2.0, 'in': 3.0, 'bedside': 1.0}
Word element => {'the': 1.0, 'her': 1.0, 'daughter': 1.0, 'for': 2.0, 'purchased': 1.0, 'can': 1.0, 'i': 1.0, 'grows': 1.0, 'shower': 1.0, 'this': 1.0, 'it': 2.0, 'with': 1.0, 's': 1.0, 'plenty': 1.0, 'purposes': 1.0, 'of': 1.0, 'baby': 2.0, 'storage': 1.0, 'my': 1.0, 'serves': 1.0, 'that': 1.0, 'many': 1.0, 'change': 1.0, 'adorable': 1.0, 'as': 1.0}
Word element => {'the': 2.0, 'is': 1.0, 'with': 1.0, 'having': 1.0, 'grandchild': 1.0, 'storage': 1.0, 'our': 1.0, 'assembly': 1.0, 'directions': 1.0, 'does': 1.0, 'well': 1.0, 'for': 1.0, 'helpful': 1.0, 'changing': 1.0, 'were': 1.0, 'it': 1.0, 'not': 1.0, 'written': 1.0, 'work': 1.0, 'very': 1.0, 'tray': 1.0, 'table': 1.0, 'nicely': 1.0}
Word element => {'girls': 1.0, 'a': 1.0, 'in': 1.0, 'looks': 1.0, 'print': 1.0, 'nursery': 1.0, 'white': 1.0, 'and': 1.0, 'black': 1.0, 'the': 1.0, 'stars': 1.0, 't': 1.0, 'love': 1.0, 'it': 3.0, 'great': 2.0, 'can': 1.0, 'wait': 1.0, 'use': 1.0, 'to': 1.0, 's': 1.0, '5': 1.0}
Word element => {'part': 1.0, 'that': 1.0, 'should': 1.0, 'product': 1.0, 'asap': 1.0, 'so': 1.0, 'know': 1.0, 'let': 1.0, 'separately': 1.0, 'purchase': 1.0, 'extra': 1.0, 'other': 1.0, 'lot': 1.0, 'plays': 1.0, 'anyway': 1.0, 'if': 1.0, 'great': 1.0, 't': 1.0, 'the': 2.0, 'a': 2.0, 'fact': 1.0, 'but': 2.0, 'doesn': 1.0, 'like': 2.0, 'me': 1.0, 'hate': 1.0, 'and': 1.0, 'can': 2.0, 'buy': 1.0, 'i': 4.0, 'it': 5.0, 'come': 1.0, 'with': 1.0, 'mobile': 1.0, 'have': 1.0, 'pack': 1.0, 'there': 1.0, 's': 1.0}
Word element => {'else': 1.0, 'another': 1.0, 'move': 1.0, 'stuck': 1.0, 'window': 1.0, 'free': 1.0, 'waited': 1.0, 'know': 1.0, 'wouldn': 1.0, 'realized': 1.0, 'before': 1.0, 'box': 1.0, 'away': 1.0, 'threw': 1.0, 'work': 1.0, 'forego': 1.0, 'willing': 1.0, 'version': 1.0, 'return': 2.0, 'wish': 1.0, 'hassle': 3.0, 'product': 1.0, 'reattach': 1.0, 'parts': 1.0, 'removed': 1.0, 'other': 1.0, 'all': 3.0, 'way': 1.0, 'door': 2.0, 'carry': 2.0, 'can': 1.0, 'so': 2.0, 'thing': 1.0, 'whole': 1.0, 'then': 2.0, 'base': 1.0, 'down': 1.0, '4': 1.0, 'pull': 1.0, 'fussy': 1.0, 'problem': 2.0, 'a': 5.0, 'handy': 1.0, 'metal': 1.0, 'rods': 1.0, 'like': 1.0, 'll': 1.0, '30': 1.0, 'table': 3.0, 'could': 2.0, 'will': 1.0, 'but': 3.0, 'folds': 1.0, 'baby': 2.0, 'quality': 1.0, 'as': 2.0, 'about': 1.0, 'play': 6.0, 'and': 11.0, 'changing': 3.0, 'smaller': 1.0, 'use': 1.0, 'm': 1.0, 'seat': 2.0, 'in': 5.0, 'occasion': 1.0, 'some': 1.0, 'what': 1.0, 'roll': 1.0, 'them': 1.0, 'next': 1.0, 'has': 1.0, 'to': 14.0, 'bassinet': 2.0, 'job': 1.0, 'lever': 1.0, 'come': 1.0, 'bedroom': 2.0, 'it': 9.0, 'calm': 1.0, 'my': 2.0, 'looks': 1.0, 'order': 1.0, 'doorway': 1.0, 'days': 1.0, 'without': 1.0, 'remove': 3.0, 'rocking': 2.0, 'this': 3.0, 'mattress': 1.0, 'd': 1.0, 'n': 6.0, 'does': 1.0, 'i': 11.0, 'two': 2.0, 'think': 1.0, 'standard': 1.0, 'pack': 6.0, 'living': 2.0, 'haven': 1.0, 'on': 4.0, 'your': 1.0, 'features': 1.0, 'great': 2.0, 'missed': 1.0, 'comfortable': 1.0, 'big': 1.0, '32': 1.0, 'for': 3.0, 't': 3.0, 'fit': 2.0, 'fold': 1.0, 'yet': 1.0, 'excitement': 1.0, 'had': 1.0, 'keep': 2.0, 'aqua': 1.0, 'beige': 1.0, 'taken': 1.0, 'wanted': 1.0, 'colors': 1.0, 'lovely': 1.0, 's': 1.0, 'sides': 2.0, 'is': 4.0, 'look': 1.0, 'together': 1.0, 'the': 34.0, 'of': 3.0, 'very': 1.0, 'here': 1.0, 'with': 2.0, 'doesn': 1.0, 'handles': 1.0, 'through': 3.0, 'buy': 2.0, 'something': 2.0, 'young': 1.0, 'that': 4.0, 'easily': 1.0, 'able': 1.0, 'upside': 1.0, 'you': 4.0, 'between': 1.0, 'gray': 1.0, 'room': 5.0, 'throughout': 1.0, 'day': 2.0, 'needed': 1.0, 'from': 2.0, 'too': 1.0, 'one': 2.0, 'have': 2.0, 'unhook': 2.0, 'be': 3.0, 'attachments': 1.0, 'good': 1.0, 'side': 1.0}
Word element => {'it': 1.0, 'extra': 1.0, 'the': 1.0, 'more': 1.0, 'much': 1.0, 'how': 1.0, 'realize': 1.0, 'didn': 1.0, 'like': 1.0, 'parts': 1.0, 'very': 1.0, 'and': 1.0, 'comes': 1.0, 'so': 1.0, 'bassinet': 1.0, 'sturdy': 1.0, 'features': 1.0, 'with': 2.0, 'we': 1.0, 'came': 1.0, 'that': 1.0, 'many': 1.0, 't': 1.0}
Word element => {'bed': 1.0, 'for': 1.0, 'alot': 1.0, 'paid': 1.0, 'same': 2.0, 'have': 1.0, 'and': 1.0, 'friends': 1.0, 'one': 1.0, 'i': 1.0, 'price': 1.0, 'exactly': 1.0, 'what': 1.0, 'was': 1.0, 'expected': 1.0, 'at': 1.0, 'a': 1.0, 'it': 1.0, 'great': 1.0, 'more': 1.0, 'the': 2.0, 'my': 1.0}
Word element => {'gains': 1.0, 'be': 1.0, 'll': 1.0, 'how': 1.0, 'i': 1.0, 'support': 1.0, 'weight': 1.0, 'post': 1.0, 'four': 1.0, 'look': 1.0, 'right': 1.0, 'don': 1.0, 'up': 1.0, 'long': 1.0, 'changer': 2.0, 'left': 1.0, 'keeps': 1.0, 'oz': 1.0, '5': 1.0, 'lbs': 1.0, 'side': 1.0, '7': 1.0, 'my': 1.0, 'of': 1.0, 'know': 1.0, 'rolling': 1.0, 'table': 1.0, 'downside': 1.0, 'big': 1.0, 'one': 1.0, 'life': 1.0, 'changing': 1.0, 'rocking': 1.0, 'use': 2.0, 'second': 1.0, 'vibrating': 1.0, 'the': 15.0, 'floor': 1.0, 'cuddled': 1.0, 'first': 1.0, 'n': 3.0, 'with': 3.0, 'only': 2.0, 'nursery': 1.0, 'pack': 3.0, 'cove': 2.0, 'bedroom': 1.0, 'as': 2.0, 'to': 3.0, 'seat': 3.0, 'our': 2.0, 'and': 6.0, 'play': 3.0, 't': 1.0, 'a': 3.0, 'insists': 1.0, 'we': 2.0, 'during': 1.0, 'must': 1.0, 'day': 1.0, 'for': 4.0, 'on': 5.0, 'saver': 1.0, 'keeping': 1.0, 'newborn': 1.0, 'this': 2.0, 'perfect': 1.0, 'at': 1.0, 'baby': 1.0, 'night': 1.0, 'able': 1.0, 'us': 2.0, 'taking': 1.0, 'cuddle': 1.0, 'is': 6.0, 'around': 1.0, 'house': 1.0, 'it': 3.0, 'she': 3.0, 'being': 1.0, 'held': 2.0, 'her': 1.0, 'feeling': 1.0, 'stability': 1.0, 'helps': 1.0}
Word element => {'at': 1.0, 'use': 1.0, 'are': 1.0, 'plans': 1.0, 'give': 1.0, 'travel': 1.0, 'birth': 1.0, 'will': 1.0, 'home': 1.0, 'she': 1.0, 'my': 2.0, 'great': 1.0, 'the': 2.0, 'portability': 1.0, 'it': 1.0, 'first': 1.0, 'granddaughter': 1.0, 'to': 2.0, 'for': 1.0, 'also': 1.0, 'in': 1.0, 'gift': 1.0, 'who': 1.0, 'grandson': 1.0, 'loves': 1.0, 'june': 1.0, 'size': 1.0, 'multiple': 1.0, 'uses': 1.0, 'and': 2.0, 'her': 1.0}
Word element => {'out': 1.0, 'miss': 1.0, 'did': 1.0, 'i': 1.0, 'one': 1.0, 'never': 1.0, 'mattress': 1.0, 'got': 1.0, 'myself': 1.0, 'this': 1.0, 'had': 1.0, 'for': 2.0, 'daughter': 1.0, 'need': 1.0, 'my': 1.0, 'the': 1.0, 'love': 1.0, 'it': 1.0, 'to': 1.0, 'boy': 1.0, 'buy': 1.0}
Word element => {'nursery': 1.0, 'the': 1.0, 'what': 1.0, 'great': 1.0, 'travel': 1.0, 'wanted': 1.0, 'and': 2.0, 'for': 1.0, 'fast': 1.0, 's': 1.0, 'well': 1.0, 'new': 1.0, 'received': 1.0, 'baby': 1.0, 'she': 1.0, 'shipped': 1.0, 'by': 1.0, 'pack': 1.0, 'mother': 1.0, 'to': 1.0, 'be': 1.0, 'exactly': 1.0}
Word element => {'great': 1.0, 'up': 1.0, 'hold': 1.0, 'just': 1.0, 'so': 1.0, 'sink': 1.0, 'and': 2.0, 'gain': 2.0, 'not': 2.0, 'is': 1.0, 'things': 2.0, 'support': 1.0, 'these': 1.0, 'fitting': 1.0, 'changer': 2.0, 'here': 1.0, 'top': 1.0, 'got': 1.0, 'sturdy': 1.0, 'pad': 1.0, 'people': 2.0, 'if': 2.0, 'want': 1.0, 'this': 1.0, 'how': 1.0, 'he': 1.0, 'outgrow': 2.0, 'in': 2.0, 'meant': 1.0, 'for': 1.0, 'months': 1.0, 'one': 1.0, 'the': 3.0, 'my': 1.0, 'baby': 5.0, 'about': 1.0, 'dresser': 1.0, 'two': 1.0, 'well': 1.0, 'ago': 1.0, 'a': 4.0, 'places': 1.0, 'weight': 4.0, 'or': 2.0, 'it': 1.0, 'stopped': 1.0, 'she': 1.0, 'expect': 1.0, 'obviously': 2.0, 'complaining': 1.0, 'detachable': 1.0, 'item': 1.0, 'will': 4.0, 'your': 1.0, 'on': 2.0, 'put': 1.0, 'bassinet': 1.0, 'gains': 1.0, 'real': 1.0, 'you': 1.0, 'get': 1.0, 'that': 1.0, 'changing': 1.0, 'any': 1.0, 'to': 2.0, 'shower': 1.0, 'of': 1.0}
Word element => {'isn': 1.0, 'piece': 1.0, 'that': 1.0, 'cover': 1.0, 'got': 1.0, 'away': 1.0, 'platform': 1.0, 'sheet': 1.0, 'crib': 1.0, 'through': 1.0, 'out': 1.0, 'be': 1.0, '34': 4.0, 'our': 1.0, 'blankets': 1.0, 'baby': 1.0, 'others': 1.0, 'tip': 1.0, 'bother': 1.0, 'back': 1.0, 'does': 1.0, 'station': 1.0, 'after': 1.0, 'short': 1.0, 'a': 7.0, 'in': 3.0, 'said': 1.0, 'is': 3.0, 'more': 1.0, 'and': 5.0, 'wanted': 1.0, 'colors': 1.0, 'bassinet': 1.0, 'to': 5.0, 'clothes': 1.0, 'was': 2.0, 'doesn': 2.0, 'store': 1.0, 'stuff': 1.0, 'just': 1.0, 'by': 1.0, 'not': 1.0, 'time': 1.0, 'am': 1.0, 'place': 1.0, 'currently': 1.0, 't': 4.0, 'rocker': 1.0, 'individuals': 1.0, 'product': 1.0, 'such': 1.0, 'for': 4.0, 'all': 1.0, 'other': 1.0, 'up': 1.0, 'used': 1.0, 'house': 2.0, 'keeps': 1.0, 'surprised': 1.0, 'height': 1.0, 'we': 2.0, 'reviews': 1.0, 'as': 3.0, 'diaper': 2.0, 'right': 1.0, 'table': 3.0, 'read': 1.0, 'very': 2.0, 'little': 2.0, 'well': 1.0, 'i': 5.0, 'feature': 1.0, 'wipes': 1.0, 'between': 1.0, 'neutral': 1.0, 'of': 3.0, 'the': 15.0, 'prints': 1.0, 'frame': 1.0, 'spread': 1.0, 'purposes': 1.0, 'this': 2.0, 'it': 6.0, 'under': 1.0, 'month': 1.0, 'put': 1.0, 'changing': 5.0, 'serves': 1.0, 'me': 2.0, 'my': 2.0, 'one': 1.0, 'happy': 1.0, 'have': 2.0, 'napping': 1.0, 'but': 3.0, 'removable': 2.0, 'so': 3.0, 'can': 1.0, 'low': 2.0, 'continuous': 1.0, 'over': 1.0, 'hard': 1.0, 'vaseline': 1.0, 'while': 1.0, 'matter': 1.0, 'on': 2.0, 'space': 2.0, 'anything': 1.0, 'saving': 1.0, 'bedroom': 1.0, 'diapers': 1.0, 'first': 1.0, 'ground': 1.0, 'worked': 1.0, 'bed': 1.0, 'tilt': 1.0, 'obviously': 1.0, 'didn': 1.0, 'there': 1.0, 'downstairs': 1.0, 'with': 1.0, 'plenty': 1.0, 'left': 1.0, 'wipe': 1.0, 'set': 1.0, 'container': 1.0, 'stash': 1.0, 'extra': 1.0}
Word element => {'some': 1.0, 'future': 1.0, 'in': 1.0, 'are': 1.0, 'twins': 1.0, 'if': 1.0, 'whilleeeee': 1.0, 'lasting': 1.0, 'see': 2.0, 'doesn': 1.0, 'an': 1.0, 'but': 1.0, 'for': 4.0, 'love': 1.0, 'one': 2.0, 'seriously': 2.0, 'the': 3.0, 'house': 1.0, 'pad': 1.0, 'it': 1.0, 'with': 1.0, 'very': 1.0, 'they': 1.0, 'thing': 2.0, 'other': 1.0, 'separate': 1.0, 'i': 3.0, 'boy': 1.0, 'so': 2.0, 'problem': 1.0, 'bouncer': 1.0, 'need': 1.0, 'nice': 1.0, 'your': 1.0, 'make': 1.0, 'changing': 1.0, 'that': 2.0, 'to': 1.0, 'our': 1.0, 'comes': 1.0, 'is': 3.0, 'this': 5.0, 'perfect': 1.0, 'than': 1.0, 'having': 1.0, 'prefer': 1.0, 'irish': 1.0, 'could': 2.0, 't': 1.0, 'a': 3.0, 'use': 1.0, 'slump': 1.0, 'travel': 1.0, 'sweet': 1.0, 'good': 1.0, 'or': 1.0, 'sturdy': 1.0, 'adapter': 1.0, 'girl': 1.0, 'pattern': 1.0, 'and': 1.0}
Word element => {'perfect': 1.0, 'everyday': 1.0, 'play': 1.0, 'it': 1.0, 'this': 1.0, 'been': 1.0, 'she': 1.0, 'and': 2.0, 'since': 1.0, 'have': 1.0, 'pack': 1.0, 'old': 1.0, 'love': 1.0, 'using': 1.0, 'the': 1.0, 'my': 1.0, 'birth': 1.0, 'just': 1.0, 'of': 1.0, 'daughter': 1.0, 'now': 1.0, 's': 1.0, 'months': 1.0, '3': 1.0}
Word element => {'features': 1.0, 'wanted': 1.0, 'one': 1.0, 'playard': 1.0, 'is': 1.0, 'n': 1.0, 'try': 1.0, 'pack': 1.0, 'about': 1.0, 'else': 1.0, 'everything': 1.0, 'limits': 1.0, 'have': 2.0, 'to': 1.0, 'all': 1.0, 'some': 1.0, 'others': 1.0, 'never': 2.0, 'weight': 1.0, 'simpler': 1.0, 'easily': 1.0, 'am': 1.0, 'saved': 1.0, 'i': 1.0, 'putting': 1.0, 'in': 2.0, 'other': 1.0, 'play': 1.0, 'and': 4.0, 'grew': 1.0, 'the': 9.0, 'great': 2.0, 'was': 2.0, 'purchased': 1.0, 'had': 1.0, 'safe': 1.0, 'at': 1.0, 'space': 1.0, 'quickly': 1.0, 'her': 1.0, 'child': 2.0, 'opposite': 1.0, 'newborn': 1.0, 'out': 2.0, 'sure': 1.0, 'looks': 1.0, 'felt': 1.0, 'it': 5.0, 'with': 1.0, 'added': 1.0, 'useful': 1.0, 'liked': 1.0, 'hated': 1.0, 'napper': 1.0, 'experience': 1.0, 'this': 1.0, 'found': 1.0, 'waste': 1.0, 'on': 1.0, 'of': 2.0, 'but': 3.0, 'money': 2.0, 'changing': 1.0, 'table': 1.0, 'hand': 1.0, 'early': 1.0, 'could': 1.0, 'we': 3.0, 's': 1.0, 'a': 2.0, 'going': 1.0}
Word element => {'much': 1.0, 'rocker': 1.0, 'love': 1.0, 'part': 1.0, 'is': 2.0, 't': 1.0, 'the': 2.0, 'playpen': 1.0, 'we': 1.0, 'i': 1.0, 'it': 1.0, 'this': 1.0, 'loud': 1.0, 'everything': 1.0, 'so': 2.0, 'cool': 1.0, 'and': 1.0, 'vibration': 1.0, 'about': 1.0, 'don': 1.0, 'kind': 1.0, 'of': 1.0, 'use': 1.0, 'that': 1.0}
Word element => {'when': 1.0, 'immediately': 1.0, 'care': 1.0, 'customer': 1.0, 'days': 1.0, 'looks': 1.0, 'is': 1.0, 'product': 1.0, 'baby': 1.0, 'price': 2.0, 'next': 1.0, 'that': 1.0, 'easy': 1.0, 'just': 1.0, 'notified': 1.0, 'me': 1.0, 'not': 1.0, 'received': 1.0, 'and': 2.0, 'the': 9.0, 'installed': 1.0, 'rep': 1.0, 'install': 1.0, 'thing': 1.0, 'used': 1.0, 'two': 1.0, 'i': 3.0, 'etc': 1.0, 'as': 2.0, 'to': 2.0, 'its': 1.0, 'was': 1.0, 'had': 1.0, 'yet': 2.0, 'worth': 1.0, 'value': 1.0, 'here': 1.0, 'within': 1.0, 'compared': 1.0, 'refunded': 1.0, 'in': 1.0, 'stores': 1.0, 'like': 1.0, 'reduction': 1.0, 'money': 1.0, 'but': 1.0, 'babiesrus': 1.0, 'item': 1.0, 'moreover': 1.0, 'purchase': 1.0, 'there': 1.0, 't': 1.0, 'we': 1.0, 'a': 1.0, 'strong': 1.0, 'on': 1.0, 'after': 1.0, 'haven': 1.0, 'made': 1.0}
Word element => {'are': 1.0, 'sturdy': 1.0, 'used': 1.0, 'in': 1.0, 'still': 1.0, 'be': 1.0, 'it': 3.0, 'can': 1.0, 'the': 2.0, 'not': 1.0, 'box': 1.0, 'you': 1.0, 'awesome': 1.0, 'our': 1.0, 'that': 1.0, 'colors': 1.0, 'baby': 1.0, 'will': 1.0, 'have': 1.0, 'born': 1.0, 'january': 1.0, '2014': 1.0, 'i': 1.0, 'we': 1.0, 'tell': 1.0, 'is': 1.0, 'looks': 1.0}
Word element => {'store': 1.0, 'want': 1.0, 'if': 1.0, 'packs': 1.0, 'sturdy': 1.0, 'overall': 1.0, 'won': 1.0, 'have': 1.0, 'old': 1.0, 'too': 1.0, 'will': 1.0, 'soon': 1.0, 'use': 1.0, 'anyway': 1.0, 'her': 1.0, 'doesn': 1.0, 'be': 3.0, 'trying': 1.0, 'but': 1.0, 'that': 2.0, 'breaker': 1.0, 'like': 2.0, 'table': 2.0, 'seems': 1.0, 'perfect': 1.0, 'time': 1.0, 'nicely': 1.0, 'mattress': 4.0, 'alone': 1.0, 'don': 2.0, 'up': 4.0, 'child': 1.0, 'over': 2.0, 'sleeper': 1.0, 'grandmother': 1.0, 'also': 1.0, 'us': 1.0, 'can': 1.0, 'so': 1.0, 'included': 1.0, 'play': 1.0, 'and': 10.0, 'easy': 2.0, 'area': 4.0, 'get': 1.0, 'only': 1.0, 'high': 1.0, 'to': 8.0, 'as': 1.0, '4': 1.0, 'need': 1.0, 'nice': 1.0, 'feel': 1.0, 's': 3.0, 'added': 1.0, 'a': 6.0, 't': 4.0, 'n': 1.0, 'not': 1.0, 'it': 8.0, 'for': 3.0, 'bottom': 2.0, 'love': 2.0, 'stars': 1.0, 'especially': 1.0, 'where': 2.0, 'since': 2.0, 'look': 1.0, 'is': 6.0, 'placed': 1.0, 'pad': 1.0, 'extend': 1.0, 'changing': 5.0, 'put': 1.0, 'on': 2.0, 'station': 1.0, 'take': 1.0, 'gets': 1.0, 'under': 1.0, 'older': 1.0, 'infant': 2.0, 'breaking': 1.0, 'rubs': 1.0, 'instead': 1.0, 'my': 2.0, 'higher': 3.0, 'checked': 1.0, 'back': 1.0, 'an': 1.0, 'this': 7.0, 'few': 1.0, 'i': 9.0, 'feet': 1.0, 'problem': 1.0, 'correctly': 1.0, 'reason': 1.0, 'the': 16.0, 'of': 2.0, 'nap': 1.0, '5': 1.0, 'when': 2.0, 'you': 2.0, 'm': 2.0, 'in': 1.0, 'position': 1.0, 'stand': 1.0, 'down': 2.0, 've': 1.0, 'she': 1.0, 'deal': 1.0, 'raised': 1.0, 'matter': 1.0, 'way': 1.0, 'than': 1.0, 'installed': 1.0, 'nothing': 1.0, 'slightly': 1.0, 'double': 1.0, 'lay': 1.0, 'very': 1.0, 'twist': 1.0, 'pack': 1.0, 'definitely': 1.0}
Word element => {'not': 1.0, 'be': 1.0, 'pack': 1.0, 'feature': 1.0, 'n': 1.0, 'ever': 1.0, 'this': 1.0, 'play': 1.0, 'design': 1.0, 'is': 1.0, 'sorry': 1.0, 'the': 2.0, 'love': 1.0, 'you': 1.0, 'best': 1.0, 'will': 1.0, 'napper': 1.0}
Word element => {'proveedor': 1.0, 'iacute': 1.0, 'env': 1.0, 'oacute': 2.0, 'mis': 1.0, 'totalmente': 1.0, 'cumpli': 1.0, 'el': 4.0, 'fue': 1.0, 'excelente': 1.0, 'producto': 1.0, 'o': 1.0, 'con': 1.0, 'por': 1.0, 'r': 1.0, 'espectativas': 1.0, 'aacute': 1.0, 'tiempo': 1.0, 'pido': 1.0, 'lleg': 1.0, 'en': 1.0, 'y': 1.0, 'seguro': 1.0, 'indicado': 1.0}
Word element => {'overall': 1.0, 'like': 1.0, 'house': 1.0, 'story': 1.0, 'if': 1.0, 'great': 2.0, 'are': 1.0, '2': 1.0, 'change': 1.0, 'bought': 1.0, 'just': 1.0, 'use': 1.0, 'easy': 1.0, 'together': 1.0, 'mine': 1.0, 'alot': 1.0, 'their': 1.0, 'pads': 1.0, 'to': 4.0, 'expect': 1.0, 'kids': 1.0, 'because': 1.0, 'though': 1.0, 'bother': 1.0, 'doesnt': 1.0, 'changing': 1.0, 'that': 1.0, 'of': 1.0, 'hospital': 1.0, 'instead': 1.0, 'product': 1.0, 'for': 1.0, 'love': 2.0, 'napper': 2.0, 'used': 1.0, 'put': 1.0, 'stuff': 1.0, 'except': 1.0, 'clean': 1.0, 'her': 3.0, 'down': 2.0, 'myself': 1.0, 'the': 11.0, 'my': 3.0, 'about': 1.0, 'thing': 1.0, 'changer': 1.0, 'came': 1.0, 'and': 3.0, 'play': 3.0, 'everyday': 1.0, 'i': 6.0, 'quality': 1.0, 'them': 1.0, 'baby': 2.0, 'night': 1.0, 'not': 1.0, 'me': 2.0, 'n': 5.0, 'its': 1.0, 'do': 2.0, 'pack': 5.0, 'only': 1.0, 'you': 3.0, 'when': 2.0, 'from': 1.0, 'home': 1.0, 'it': 1.0, 'she': 1.0, 'at': 1.0, 'lot': 1.0, 'is': 1.0, 'angle': 1.0, 'very': 1.0, 'little': 2.0, 'downward': 1.0, 'have': 3.0, 'small': 1.0, 'so': 1.0, 'stain': 1.0, 'anymore': 1.0, 'was': 2.0, 'crib': 1.0, 'bad': 1.0, 'slid': 1.0, 'a': 3.0, 'also': 1.0, 'itself': 1.0, 'in': 2.0, 'every': 1.0, 'material': 1.0, 'lay': 1.0, 'plays': 2.0, 'shows': 1.0}
Word element => {'do': 1.0, 'cribs': 1.0, 'space': 1.0, 'much': 1.0, 'value': 1.0, 'for': 1.0, 'weight': 1.0, 'does': 1.0, 'one': 1.0, 'money': 1.0, 'like': 1.0, 'and': 2.0, 'fold': 1.0, 'light': 1.0, 'requires': 1.0, 'is': 1.0, 'other': 1.0, 'this': 1.0, 'not': 1.0, 'able': 1.0}
Word element => {'used': 1.0, 'space': 1.0, 'unused': 1.0, 'access': 1.0, 'so': 1.0, 'on': 1.0, 'zipper': 1.0, 'a': 1.0, 'colors': 1.0, 'neutral': 1.0, 'because': 1.0, 'the': 5.0, 'level': 1.0, 'trendy': 1.0, 'bottom': 1.0, 'of': 2.0, 'non': 1.0, 'this': 1.0, 'it': 2.0, 'without': 1.0, 'simpler': 1.0, 'i': 2.0, 'one': 2.0, 'you': 1.0, 's': 1.0, 'designs': 1.0, 'when': 1.0, 'too': 1.0, 'is': 2.0, 'many': 1.0, 'chose': 1.0, 'accessories': 1.0, 'bassinette': 1.0, 'have': 1.0, 'thing': 1.0, 'wish': 1.0, 'to': 1.0, 'had': 1.0}
Word element => {'overall': 1.0, 'than': 1.0, 'picture': 1.0, 'in': 1.0, 'softer': 1.0, 'product': 1.0, 'material': 1.0, 'like': 1.0, 'i': 1.0, 'thing': 1.0, 'worth': 1.0, 'switching': 1.0, 'back': 1.0, 'fantastic': 1.0, 'napper': 2.0, 'only': 1.0, 'n': 1.0, 'it': 2.0, 'money': 1.0, 'very': 1.0, 'didn': 1.0, 'crib': 1.0, 'really': 1.0, 'looks': 2.0, 'is': 3.0, 'forth': 1.0, 'get': 1.0, 'between': 1.0, 'changer': 1.0, 'playpen': 1.0, 'your': 1.0, 'isn': 1.0, 'great': 1.0, 'lightweight': 1.0, 'the': 4.0, 't': 2.0, 'difficult': 1.0, 's': 2.0, 'you': 1.0}
Word element => {'storing': 1.0, 'handy': 1.0, 'diapers': 1.0, 'are': 1.0, 'hand': 1.0, 'on': 2.0, 'completely': 1.0, 'uninstall': 1.0, 'supplies': 1.0, 'each': 1.0, 'times': 1.0, 'when': 1.0, 'reinstall': 1.0, 'under': 1.0, 'get': 1.0, 's': 3.0, 'a': 5.0, 'we': 3.0, 't': 1.0, 'picture': 1.0, 'obvious': 1.0, 'half': 2.0, 'won': 1.0, 'but': 2.0, 'up': 1.0, 'change': 1.0, 'over': 1.0, 'work': 1.0, 'from': 1.0, 'day': 1.0, 'later': 1.0, 'lay': 1.0, 'it': 6.0, 'rather': 1.0, 'covers': 1.0, 'remove': 1.0, 'this': 2.0, 'talking': 1.0, 'be': 2.0, 'here': 1.0, 'changer': 6.0, 'easy': 1.0, 'know': 1.0, 'side': 1.0, 'which': 3.0, 'not': 4.0, 'part': 3.0, 'during': 1.0, 'of': 2.0, 'doing': 1.0, 'the': 13.0, 'daytime': 1.0, 'use': 3.0, 'purchased': 1.0, 'really': 2.0, 'at': 1.0, 'is': 3.0, 'nice': 1.0, 'and': 6.0, 'soon': 2.0, 'changing': 1.0, 'do': 1.0, 'only': 1.0, 'about': 1.0, 'for': 4.0, 'napper': 2.0, 'pouches': 1.0, 'station': 1.0, 'therefore': 1.0, 'grows': 1.0, 'sized': 1.0, 'laying': 1.0, 'that': 1.0, 'layer': 1.0, 'because': 1.0, 'baby': 3.0, 'another': 1.0, 'my': 1.0, 'as': 3.0, 'bend': 1.0, 'inch': 1.0, 'travel': 1.0, 'means': 1.0, 'will': 4.0, 'have': 1.0, 'suppose': 1.0, 'm': 1.0, 'in': 1.0, 'turn': 1.0, 'all': 1.0, 'other': 2.0, 'you': 1.0, 'direction': 1.0, 'i': 5.0, 'feet': 1.0, 'constantly': 1.0, 'so': 1.0, 'just': 2.0, 'to': 4.0, 'bassinet': 4.0, 'pretty': 1.0, 'ideal': 1.0, '15': 1.0, 'low': 1.0, 'into': 1.0, 'playpen': 1.0, 'hurts': 1.0, 'back': 1.0}
Word element => {'3': 1.0, 'from': 1.0, 'birth': 1.0, 'use': 1.0, 'old': 1.0, 'to': 1.0, 'this': 2.0, '2': 1.0, 'is': 1.0, 'such': 1.0, 'a': 1.0, 'thru': 1.0, 'that': 1.0, 'yrs': 1.0, 'value': 1.0, 'continue': 1.0, 'i': 2.0, 'love': 1.0, 'great': 1.0, 'can': 1.0}
Word element => {'cute': 1.0, 'stars': 1.0, 'little': 1.0, 'colors': 1.0, 'nice': 1.0, 'together': 1.0, 'put': 1.0, 'are': 1.0, 'the': 2.0, 'is': 1.0, 'easy': 1.0, 'pack': 1.0, 'to': 1.0, 'play': 1.0, 'good': 1.0, 'of': 1.0, 'really': 1.0, 'very': 1.0, 'and': 1.0, 'quality': 1.0}
Word element => {'attached': 1.0, 'having': 1.0, 'is': 1.0, 'price': 1.0, 'negative': 1.0, '5': 1.0, 'may': 1.0, 'not': 1.0, 'know': 1.0, 'and': 1.0, 'through': 1.0, 'sea': 1.0, 'a': 4.0, 'way': 1.0, 'often': 1.0, 'diaper': 1.0, 'mother': 1.0, 'the': 1.0, 'great': 2.0, 'am': 1.0, 'products': 1.0, 'overpriced': 1.0, 'i': 2.0, 'of': 2.0, 'completely': 1.0, 'pouch': 1.0, 'product': 1.0, 'unnecessary': 1.0, 'only': 1.0, 'this': 1.0, 'was': 1.0, 'at': 1.0}
Word element => {'satisfied': 1.0, 'i': 1.0, 'excellent': 1.0, 'product': 1.0, 'thing': 1.0, 'this': 2.0, 'item': 1.0, 'm': 1.0, 'original': 1.0, 'is': 2.0, 'very': 1.0, 'and': 1.0, 'as': 1.0, 'described': 1.0, 'in': 2.0, 'perfectly': 1.0, 'single': 1.0, 'packaging': 1.0, 'every': 1.0}
Word element => {'or': 1.0, 'wal': 1.0, 'she': 1.0, 'target': 1.0, 'registry': 1.0, 'than': 1.0, 'in': 1.0, 'for': 1.0, 'it': 2.0, 'this': 1.0, 'gone': 1.0, 'requested': 1.0, 'mart': 1.0, 'loved': 1.0, 'got': 1.0, 'her': 1.0, 'and': 1.0, 'my': 1.0, 'i': 2.0, 'a': 1.0, 'much': 1.0, 'had': 1.0, 'to': 1.0, 'if': 1.0, 'better': 1.0, 'cousin': 1.0, 'deal': 1.0}
Word element => {'as': 1.0, 'right': 1.0, 'price': 1.0, 'carry': 1.0, 'well': 1.0, 'has': 1.0, 'down': 1.0, 'his': 1.0, 'breaks': 1.0, 'pleased': 2.0, 'got': 1.0, 'mother': 1.0, 'the': 6.0, 'adjustable': 1.0, 'crib': 2.0, 'my': 2.0, 'happy': 1.0, 'cause': 1.0, 'portable': 1.0, 'bag': 1.0, 'this': 2.0, 'with': 4.0, 'children': 1.0, 'grandson': 1.0, 'easily': 1.0, 'use': 1.0, 'travel': 1.0, 'for': 2.0, 'product': 1.0, 'floor': 1.0, 'and': 5.0, 'little': 1.0, 'very': 3.0, 'i': 1.0, 'brand': 1.0, 'a': 1.0, 'we': 1.0, 'purchased': 1.0, 'had': 1.0, 'was': 3.0, 'is': 1.0, 'comes': 1.0, 'graco': 1.0, 'quality': 1.0, 'she': 1.0, 'nice': 1.0, 'mention': 1.0, 'did': 1.0, 'changer': 1.0, 'that': 1.0, 'height': 1.0, 'of': 1.0}
Word element => {'necessarily': 1.0, 'not': 1.0, 'comfortable': 1.0, 'bouncy': 2.0, 'tend': 1.0, 'our': 1.0, 'slightly': 1.0, 'makes': 1.0, 'lean': 1.0, 'edit': 1.0, 'newborns': 1.0, 'would': 1.0, 'rather': 1.0, 'like': 1.0, 'big': 1.0, 'no': 1.0, 'need': 1.0, 'don': 1.0, 'admittedly': 1.0, 'good': 1.0, 'side': 2.0, 'which': 2.0, 'picking': 1.0, 'requires': 1.0, 'just': 2.0, 'removing': 1.0, 'particularly': 1.0, 'seem': 1.0, 't': 2.0, 'doesn': 1.0, 'bar': 1.0, 'toy': 1.0, 'little': 1.0, 'loose': 1.0, 're': 1.0, 'they': 1.0, 'have': 3.0, 'bad': 1.0, 'first': 2.0, 'when': 1.0, 'resistance': 1.0, 'sides': 1.0, 's': 1.0, 'deal': 1.0, 'baby': 3.0, 'may': 1.0, 'entire': 2.0, 'does': 3.0, 'higher': 1.0, 'it': 3.0, 'if': 1.0, 'buttons': 2.0, 'still': 3.0, 'fold': 2.0, 'difficult': 1.0, 'is': 8.0, 'changes': 1.0, 'more': 2.0, 'slide': 1.0, 'overall': 1.0, 'kind': 1.0, 'insert': 1.0, 'replace': 1.0, 'sleep': 1.0, 'back': 1.0, 'shall': 1.0, 'once': 1.0, 'comfortably': 2.0, 'height': 1.0, 'product': 2.0, 'toddler': 1.0, 'for': 4.0, 'napper': 5.0, 'travel': 3.0, 'play': 3.0, 'and': 5.0, 'graco': 1.0, 'your': 1.0, 'on': 5.0, 'highest': 2.0, 'newborn': 1.0, 'see': 1.0, 'seems': 4.0, 'of': 6.0, 'the': 31.0, 'was': 1.0, 'usable': 1.0, 'bassinet': 3.0, 'to': 15.0, 'n': 3.0, 'this': 3.0, 'much': 1.0, 'do': 2.0, 'pictures': 1.0, 'decent': 2.0, 'lower': 1.0, 'videos': 1.0, 'got': 1.0, 'even': 1.0, 'a': 8.0, 'lite': 1.0, 'helpful': 1.0, 'stage': 2.0, 'over': 1.0, 'up': 2.0, 'because': 3.0, 'that': 4.0, 'low': 1.0, 'recommend': 1.0, 'were': 1.0, 'annoying': 2.0, 'bend': 1.0, 'aspect': 1.0, 'get': 1.0, 'so': 2.0, 'clips': 2.0, 'thing': 1.0, '2': 1.0, 'but': 5.0, '8': 1.0, 'somewhat': 1.0, 'relatively': 1.0, 'than': 3.0, 'assemble': 1.0, 'reach': 1.0, 'way': 1.0, 'struggle': 1.0, 'snap': 1.0, 'enough': 2.0, 'reversible': 1.0, 'changer': 3.0, 'during': 1.0, 'regularly': 1.0, 'though': 1.0, 'part': 1.0, 'compared': 1.0, 'pack': 3.0, 'flip': 1.0, 'with': 1.0, 'hand': 1.0, 'spacious': 1.0, 'seat': 2.0, 'in': 2.0, 'we': 2.0, 'take': 1.0, 'quite': 1.0, 'try': 1.0, 'one': 5.0, 'too': 2.0, 'lot': 1.0, 'space': 1.0, 'size': 1.0, 'should': 2.0, 'be': 3.0, 'large': 1.0, 'growing': 1.0, 'you': 4.0, 'push': 2.0, 'button': 1.0, 'easy': 2.0, 'bit': 2.0, 'give': 1.0, 'hang': 1.0, 'there': 1.0}
Word element => {'excelente': 1.0}
Word element => {'in': 1.0, 'a': 1.0, 'like': 1.0, 'log': 1.0, 'mean': 1.0, 'adjusted': 1.0, 'hasn': 1.0, 'different': 1.0, 'babies': 1.0, 'all': 1.0, 'use': 1.0, 'easy': 1.0, 'napper': 1.0, 'changer': 1.0, 'doesn': 1.0, 'quality': 1.0, 'product': 1.0, 'mattress': 1.0, 'are': 1.0, 'overall': 1.0, 'bassinet': 1.0, 'of': 1.0, 't': 3.0, 'the': 3.0, 'just': 1.0, 'because': 2.0, 'i': 1.0, 'stars': 1.0, 'yours': 1.0, 'our': 1.0, 'and': 1.0, 'give': 1.0, 'baby': 1.0, 'firm': 1.0, 'good': 1.0, 'sleep': 2.0, 'only': 1.0, 'it': 4.0, 'is': 2.0, 'won': 1.0, '4': 1.0, 'on': 1.0, 'too': 1.0, 'ours': 1.0, 'refuses': 1.0, 'to': 3.0, 'however': 1.0}
Word element => {'again': 1.0, 'walmart': 1.0, 'but': 1.0, 'store': 1.0, 'exactly': 1.0, 'at': 1.0, 'had': 1.0, 'what': 2.0, 'we': 2.0, 'purchase': 1.0, 'seen': 1.0, 'better': 1.0, 'totally': 1.0, 'with': 2.0, 'it': 1.0, 'were': 1.0, 'a': 1.0, 'price': 1.0, 'is': 2.0, 'amazon': 1.0, 'happy': 1.0, 'thanks': 1.0, 'asthis': 1.0, 'on': 1.0, 'expecting': 1.0}
Word element => {'wish': 1.0, 'assemble': 1.0, 'easy': 1.0, 's': 1.0, 'sometime': 1.0, 'maybe': 1.0, 'mattress': 1.0, 'used': 1.0, 'haven': 1.0, 'are': 1.0, 'changers': 1.0, 'softer': 1.0, 'in': 1.0, 'like': 1.0, 'on': 1.0, 'ton': 1.0, 'connected': 1.0, 'use': 1.0, 'changer': 1.0, 'i': 2.0, 'pack': 1.0, 'to': 2.0, 'a': 1.0, 'will': 1.0, 'but': 1.0, 'doesn': 1.0, 'yet': 1.0, 'napper': 1.0, 'one': 2.0, 'love': 2.0, 'only': 2.0, 'this': 1.0, 'n': 1.0, 'it': 2.0, 't': 2.0, 'the': 4.0, 'great': 1.0, 'play': 1.0, 'we': 4.0, 'and': 1.0, 'side': 2.0, 'is': 1.0, 'were': 1.0, 'that': 2.0, 'baby': 1.0, 'included': 1.0, 'roll': 1.0}
Word element => {'photographs': 1.0, 'online': 1.0, 'does': 1.0, 'than': 1.0, 'present': 1.0, 'better': 1.0, 'quality': 1.0, 'very': 1.0, 'of': 1.0, 'quite': 2.0, 'good': 1.0, 'the': 3.0, 'at': 1.0, 'was': 2.0, 'in': 1.0, 'level': 1.0, 'i': 1.0, 'for': 1.0, 'price': 1.0, 'high': 1.0, 'end': 1.0, 'by': 1.0, 'materials': 1.0, 'amazed': 1.0, 'construction': 1.0, 'and': 2.0, 'impressed': 1.0, 'it': 1.0, 'this': 1.0, 'features': 1.0, 'looks': 1.0}
Word element => {'fancy': 1.0, 'nothing': 1.0, 'features': 1.0, 'basic': 1.0, 'looking': 1.0, 'anyone': 1.0, 'gotten': 1.0, 'has': 1.0, 'rarely': 1.0, 'next': 2.0, 'having': 1.0, 'over': 2.0, 'change': 1.0, 'or': 1.0, 'hurt': 1.0, 'sore': 1.0, 'really': 1.0, 'weeks': 1.0, 'your': 1.0, 'low': 1.0, 'the': 27.0, 'literally': 1.0, 'height': 2.0, 'son': 3.0, 'noticeable': 1.0, 'mom': 1.0, 'little': 6.0, 'so': 5.0, 'since': 3.0, '1': 1.0, 'down': 1.0, 'changer': 8.0, 'especially': 1.0, 're': 1.0, 'those': 2.0, 'me': 2.0, 'out': 2.0, 'painfully': 1.0, 'machine': 1.0, 'cannot': 1.0, 'thing': 1.0, 'our': 5.0, 'as': 2.0, 'annoying': 1.0, 'bend': 1.0, 'pretty': 2.0, 'was': 3.0, 'drives': 1.0, 'had': 5.0, 'play': 1.0, 'up': 1.0, 'washing': 1.0, 'for': 5.0, 'price': 1.0, 'try': 1.0, 'walk': 1.0, 'too': 3.0, 'happy': 1.0, 'much': 2.0, 'put': 1.0, 'biggest': 1.0, 'this': 3.0, 'few': 3.0, 'back': 2.0, 'asleep': 1.0, 'i': 9.0, 'putting': 1.0, 'well': 1.0, 'mess': 1.0, 'new': 1.0, 'uses': 1.0, 'that': 5.0, 'problems': 1.0, 'because': 1.0, 'making': 1.0, 'easily': 1.0, 'fabric': 1.0, 'into': 1.0, 'diapers': 3.0, 'but': 5.0, 'stain': 1.0, 'go': 1.0, 'fine': 1.0, 'only': 5.0, 'then': 1.0, 'we': 5.0, 'take': 3.0, 'of': 5.0, 'even': 2.0, 'complaints': 1.0, 'starts': 1.0, 'you': 2.0, 'light': 1.0, 'with': 5.0, 'using': 1.0, 'have': 4.0, 'it': 20.0, 'be': 2.0, 'product': 2.0, 'stairs': 1.0, 'minimal': 1.0, 'works': 1.0, 'without': 1.0, 't': 2.0, 'small': 1.0, '34': 2.0, 'surface': 1.0, 'if': 2.0, 'still': 3.0, 'which': 1.0, 'stay': 1.0, 'makes': 1.0, 'time': 1.0, 'did': 2.0, 'keep': 1.0, 'baby': 3.0, 'clean': 2.0, 'nuts': 1.0, 'eventually': 1.0, 'on': 4.0, 'easy': 2.0, 'get': 3.0, 'however': 1.0, 'bit': 1.0, 've': 3.0, 'while': 1.0, 'and': 13.0, 'pack': 1.0, 'bag': 1.0, 'a': 15.0, 'leaning': 1.0, 'him': 1.0, 'he': 2.0, 'love': 1.0, 'wipe': 1.0, 'reference': 1.0, 'other': 1.0, 'all': 1.0, 'leans': 1.0, 'to': 14.0, 'right': 2.0, 'side': 5.0, 'll': 1.0, 'napper': 7.0, 'not': 3.0, 'very': 2.0, 'why': 1.0, 's': 5.0, 'm': 2.0, 'doesn': 1.0, 'when': 1.0, 'changed': 1.0, 'now': 1.0, 'anymore': 2.0, 'problem': 1.0, 'slide': 1.0, 'overall': 1.0, 'until': 1.0, 'off': 5.0, 'absolutely': 1.0, 'one': 1.0, '5': 1.0, 'got': 2.0, 'his': 1.0, 'face': 1.0, 'can': 1.0, 'is': 9.0, 'fault': 1.0, 'in': 1.0, 'together': 1.0, 'recommend': 1.0, 'apart': 1.0, 'assemble': 2.0, 'same': 1.0, 'falling': 1.0, 'tough': 1.0, 'first': 1.0, 'n': 1.0, 'once': 4.0, 'against': 1.0, 'better': 1.0, 'comes': 1.0, 'will': 1.0, 'big': 1.0, 'toy': 1.0, 'would': 1.0, 'bar': 1.0, 'sure': 3.0, 'box': 1.0, 'wipes': 2.0, 'are': 1.0, 'my': 3.0, 'issues': 1.0, 'past': 1.0, 'been': 1.0, 'older': 1.0, 'fair': 1.0, 'more': 1.0, 'wrong': 1.0, 'blowout': 1.0, 'sturdy': 1.0, 'getting': 1.0, 'standing': 1.0, 'size': 1.0, 'holds': 1.0, 'newborn': 1.0, 'am': 1.0}
Word element => {'required': 1.0, 'its': 2.0, 'i': 1.0, 'beautiful': 1.0, 'and': 2.0, 'size': 1.0, 'much': 1.0, 'liked': 1.0, 'to': 1.0, 'too': 1.0, 'color': 1.0, 'the': 2.0, 'is': 1.0, 'just': 1.0, 'easy': 1.0, 'use': 1.0, 'perfect': 2.0}
Word element => {'great': 1.0, 'purchase': 1.0, 'my': 1.0, 'overall': 1.0, 'be': 1.0, 'him': 1.0, 'changed': 1.0, 'side': 1.0, 'really': 1.0, 'clean': 1.0, 'i': 3.0, 'crib': 1.0, 'his': 1.0, 'an': 1.0, 'moves': 1.0, 'he': 1.0, 'you': 2.0, 'when': 1.0, 'downstairs': 1.0, 'bassinet': 1.0, 'travel': 1.0, 'use': 4.0, 'pad': 2.0, 'bigger': 1.0, 'advice': 1.0, 'one': 5.0, 'easy': 2.0, 'model': 2.0, 'version': 1.0, 'take': 1.0, 'definitely': 1.0, 'biggest': 1.0, 'would': 2.0, 'basic': 3.0, 'second': 1.0, 'is': 5.0, 'more': 1.0, 'place': 1.0, 'the': 6.0, 'not': 1.0, 'n': 2.0, 'first': 1.0, 'this': 4.0, 'it': 6.0, 'move': 1.0, 'born': 1.0, 'and': 5.0, 'play': 2.0, 'used': 2.0, 'even': 2.0, 'love': 2.0, 'for': 3.0, 'assemble': 1.0, 'want': 1.0, 'if': 2.0, 'surface': 1.0, 'apart': 1.0, 'in': 2.0, 'because': 1.0, 'than': 1.0, 'but': 4.0, 'complex': 1.0, 'will': 2.0, 'smaller': 2.0, 'so': 2.0, 'have': 1.0, 'small': 1.0, 'we': 3.0, 's': 1.0, 'son': 1.0, 'still': 1.0, 'very': 1.0, 'into': 1.0, 'changing': 2.0, 'its': 1.0, 'pack': 2.0, 'primarily': 1.0, 'to': 5.0, 'our': 5.0, 'sleep': 1.0, 'room': 1.0, 'slide': 1.0, 'part': 2.0, 'while': 2.0, 'baby': 1.0}
Word element => {'quickly': 1.0, 'outgrowing': 1.0, 'weight': 1.0, 'height': 1.0, 'is': 3.0, 'out': 1.0, 'own': 1.0, 'furniture': 1.0, 'on': 1.0, 'up': 1.0, 'sit': 1.0, 'into': 1.0, 'that': 1.0, 'of': 2.0, 'sturdiness': 1.0, 'getting': 1.0, 'putting': 1.0, 'be': 1.0, 'him': 2.0, 'risk': 1.0, 'want': 1.0, 'it': 2.0, 'hurt': 2.0, 'quick': 1.0, 'he': 7.0, 'many': 1.0, 'pretty': 1.0, 'those': 1.0, 'a': 1.0, 'going': 1.0, 's': 1.0, 't': 1.0, 'we': 3.0, '95th': 1.0, 'outgrew': 2.0, 'however': 1.0, 'them': 1.0, 'really': 3.0, 'i': 1.0, 'enjoyed': 1.0, 'didn': 1.0, 'got': 1.0, 'son': 3.0, 'three': 1.0, 'this': 1.0, 'doing': 1.0, 'sleeper': 1.0, 'now': 2.0, 'weeks': 1.0, 'change': 1.0, 'but': 1.0, 'product': 1.0, 'for': 2.0, 'fit': 1.0, 'the': 11.0, 'my': 3.0, 're': 2.0, 'unfortunately': 1.0, 'table': 1.0, 'and': 6.0, 'down': 4.0, 'awesome': 1.0, 'his': 4.0, 'just': 4.0, 'playard': 2.0, 'toys': 1.0, 'bassinet': 3.0, 'plays': 1.0, 'to': 5.0, 'all': 1.0, 'taking': 1.0, 'able': 2.0, 'about': 1.0, 'thing': 2.0, 'simply': 1.0, 'so': 3.0, 'time': 1.0, 'in': 2.0, 'percentile': 1.0, 'toy': 1.0, 'bar': 1.0, 'took': 1.0, 'loved': 2.0, 'became': 1.0, 'tear': 1.0, 'though': 1.0, 'never': 1.0}
Word element => {'pleased': 1.0, 'am': 1.0, 'buy': 1.0, 'i': 1.0, 'crib': 1.0, 'port': 1.0, 'well': 1.0, 'a': 2.0, 'use': 2.0, 'perfect': 1.0, 'would': 1.0, 'unsure': 1.0, 'were': 1.0, 'on': 1.0, 'is': 1.0, 'time': 1.0, 'baby': 1.0, 'for': 1.0, 'napper': 1.0, 'downstairs': 1.0, 'we': 3.0, 'and': 2.0, 'very': 1.0, 'changing': 1.0, 'as': 2.0, 'with': 1.0, 'it': 1.0, 'this': 2.0, 'all': 1.0, 'have': 1.0, 'the': 2.0, 'what': 1.0, 'used': 1.0}
Word element => {'same': 1.0, 'than': 1.0, 'far': 1.0, 'over': 1.0, 'him': 1.0, 'place': 1.0, 'price': 1.0, 'don': 1.0, 'you': 1.0, 'so': 1.0, 'room': 1.0, 'changer': 1.0, 'living': 1.0, 'for': 1.0, 'as': 1.0, 'year': 1.0, 'son': 1.0, 'in': 3.0, '13': 1.0, 'with': 1.0, 'it': 3.0, 'my': 1.0, 'ones': 1.0, 't': 1.0, 'the': 5.0, '20': 1.0, 'together': 1.0, 'put': 1.0, 'was': 2.0, 'to': 3.0, 'bend': 1.0, 'old': 1.0, 'store': 1.0, 'cheaper': 1.0, 'easy': 1.0, 'and': 1.0, 'me': 1.0, 'did': 1.0, 'has': 1.0, 'is': 1.0, 'really': 1.0, 'crib': 1.0, 'been': 1.0, 'nice': 3.0, 'have': 2.0, 'too': 1.0, 'us': 1.0}
Word element => {'excelente': 1.0}
Word element => {'just': 1.0, 'in': 1.0, 'stay': 1.0, 'weight': 1.0, 'nervous': 1.0, 'makes': 1.0, 'which': 1.0, 'place': 1.0, 'loose': 1.0, 'kinda': 1.0, 'as': 1.0, 'perfectly': 1.0, 'me': 1.0, 'and': 1.0, 'like': 1.0, 'if': 1.0, 'keep': 1.0, 'bassinet': 1.0, 'its': 1.0, 'i': 2.0, 'pack': 1.0, 'attaches': 1.0, 'with': 1.0, 'this': 2.0, 'n': 1.0, 'it': 2.0, 'is': 1.0, 'our': 1.0, 'last': 1.0, 'will': 2.0, 'but': 2.0, 'play': 1.0, 'likehow': 1.0, 'baby': 2.0, 'don': 1.0, 't': 1.0, 'the': 3.0}
Word element => {'had': 1.0, 'packing': 1.0, 'instructions': 1.0, 'also': 1.0, 'include': 1.0, 'or': 1.0, 'carrier': 1.0, 'specific': 1.0, 'design': 2.0, 'pockets': 1.0, 'with': 2.0, 'wouldn': 1.0, 'no': 1.0, 'some': 1.0, 'enough': 1.0, 'true': 1.0, 'right': 1.0, 'depth': 1.0, 'perfect': 1.0, 'incase': 1.0, 'make': 1.0, 'playard': 3.0, 'side': 1.0, 'wheels': 1.0, 'on': 3.0, 'blanket': 1.0, '5': 1.0, 'done': 1.0, 'should': 1.0, 'taking': 1.0, 'move': 1.0, 'used': 1.0, 'issue': 2.0, 'padding': 2.0, 'all': 1.0, 'fits': 1.0, 'other': 1.0, 'hand': 1.0, 'try': 1.0, 'one': 3.0, 'carry': 2.0, 'just': 2.0, 'big': 1.0, 'isn': 1.0, 'my': 1.0, 'me': 1.0, 'only': 2.0, 's': 2.0, 'such': 2.0, '10': 1.0, 'for': 5.0, 'part': 1.0, 'togehter': 1.0, 'great': 1.0, 'get': 3.0, 'worry': 1.0, 'say': 2.0, 'most': 1.0, 'but': 3.0, 'can': 3.0, 'functional': 1.0, 'carring': 1.0, 'cuddled': 1.0, 'be': 4.0, 'else': 1.0, 'everything': 5.0, 'still': 1.0, 'if': 3.0, 'than': 1.0, 'way': 4.0, 'assemble': 1.0, 'apart': 1.0, 'recommended': 1.0, 'and': 12.0, 'awesome': 1.0, 'about': 1.0, 'play': 1.0, 'i': 11.0, 'small': 1.0, 'manuver': 1.0, 'a': 7.0, 'was': 3.0, 'to': 25.0, 'bags': 1.0, 'leave': 1.0, 'as': 3.0, 'mobile': 1.0, 'bassenet': 2.0, 'due': 1.0, 'setting': 1.0, 'must': 1.0, 'pack': 3.0, 'end': 1.0, 'put': 4.0, 'do': 1.0, 'lay': 1.0, 'very': 4.0, 'figure': 3.0, 'two': 2.0, 'little': 1.0, 'test': 1.0, 'n': 1.0, 'not': 3.0, 'him': 1.0, 'it': 13.0, 'required': 1.0, 'since': 1.0, 'have': 6.0, 'frustrating': 1.0, 'extra': 2.0, 'minutes': 1.0, 'another': 1.0, 'deal': 1.0, 'baby': 2.0, 'this': 5.0, 'few': 1.0, 'down': 1.0, 'changer': 8.0, 'came': 2.0, 'out': 5.0, 'including': 2.0, 'bag': 2.0, 'isnt': 1.0, 'is': 6.0, 'bars': 3.0, 'napper': 8.0, 'fit': 1.0, 't': 3.0, 'rest': 1.0, 'yet': 2.0, 'took': 1.0, 'easy': 3.0, 'bit': 2.0, 'our': 1.0, 'how': 1.0, 'plastic': 1.0, 'sleeping': 1.0, 'sturdy': 2.0, 'metal': 1.0, 'tools': 1.0, 'click': 1.0, 'the': 36.0, 'of': 3.0, 'figured': 1.0, 'them': 1.0, 'next': 1.0, 'case': 1.0, 'means': 1.0, 'disassemble': 2.0, 'does': 1.0, 'that': 4.0, 'because': 1.0, 'basenet': 1.0, 'able': 1.0, 'you': 7.0, 'when': 1.0, 'we': 1.0, 'take': 2.0, 'got': 1.0, 'pieces': 6.0, 'recommend': 2.0, 'together': 3.0, 'were': 1.0, 'own': 1.0, 'seems': 2.0, 'tried': 1.0, 'off': 3.0, 'conclusion': 1.0, 'up': 4.0, 'room': 1.0, 'once': 2.0, 'these': 1.0, 'ment': 1.0, 'either': 1.0, 'weeks': 1.0, 'would': 5.0, 'depending': 1.0, 'fully': 1.0, 'come': 1.0, 'graco': 2.0, 'in': 10.0}
Word element => {'nice': 1.0, 'very': 1.0, 'gift': 1.0, 'to': 2.0, 'son': 1.0, 'time': 1.0, 'before': 1.0, 'they': 1.0, 'used': 1.0, 'long': 1.0, 'going': 1.0, 'for': 1.0, 'crib': 1.0}
Word element => {'20': 1.0, 'b000a1en3y': 1.0, 'gp': 1.0, 'important': 1.0, 'changed': 1.0, 'b001gvimra': 1.0, 'pink': 1.0, 'sheet': 1.0, 'pack': 1.0, 'graco': 1.0, 'preferably': 1.0, 'coupon': 3.0, 'dp': 2.0, 'yard': 1.0, 'hi': 1.0, 'buy': 1.0, 'i': 1.0, 'two': 1.0, 'at': 2.0, 'http': 3.0, 'recommend': 1.0, 'tell': 1.0, 'play': 2.0, 'we': 1.0, 't': 1.0, 'the': 3.0, 'light': 1.0, 'amazing': 1.0, 'they': 1.0, 'must': 1.0, 'covers': 2.0, 'don': 1.0, 'robust': 1.0, 'playard': 1.0, 'good': 3.0, 'them': 1.0, 'quality': 1.0, '2': 3.0, 'but': 1.0, 'least': 2.0, 'all': 1.0, 'that': 1.0, 'you': 5.0, '20then': 2.0, 'however': 1.0, 'd': 1.0, '3': 1.0, 'each': 1.0, 'here': 1.0, 'www': 3.0, '00': 3.0, 'b001n45aoi': 1.0, 'is': 2.0, 'amazon': 3.0, 'of': 2.0, 'portababy': 1.0, 'what': 1.0, 'mattress': 2.0, 'first': 1.0, 'need': 3.0, 'cover': 1.0, 'enough': 1.0, 'pad': 2.0, 'bought': 1.0, 'one': 1.0, 'product': 1.0, 'discount': 3.0, 'com': 3.0}
Word element => {'there': 1.0, 'out': 1.0, 'than': 1.0, 'price': 1.0, 'his': 1.0, 'son': 1.0, 'many': 1.0, 'is': 1.0, 'and': 1.0, 'our': 1.0, 'seems': 1.0, 'better': 1.0, 'ratio': 1.0, 'quality': 1.0, 'but': 1.0, 'the': 1.0, 'grandbaby': 1.0, 'here': 1.0, 'not': 1.0, 'expectant': 1.0, 'wife': 1.0, 'this': 2.0, 'have': 1.0, 'particular': 1.0, 'yet': 1.0, 'love': 1.0, 'model': 1.0, 'to': 2.0, 'a': 1.0}
Word element => {'make': 1.0, 'seems': 1.0, 'mattress': 1.0, 'chocolatewith': 1.0, 'velour': 1.0, 'acarters': 1.0, 'experiences': 1.0, 'buy': 1.0, 'hesitate': 1.0, 'not': 1.0, 'sheet': 1.0, 'elsewhere': 1.0, 'change': 1.0, 'cumbersome': 1.0, 'on': 2.0, 'easy': 1.0, 'found': 2.0, 'out': 1.0, 'wasn': 1.0, 'couple': 1.0, 'also': 1.0, 'had': 2.0, 'bar': 1.0, 'was': 5.0, 'wishing': 1.0, 'turns': 1.0, 'without': 1.0, 'basic': 2.0, 'loved': 1.0, 'just': 2.0, 'use': 2.0, 'amazon': 1.0, 'much': 1.0, 'flip': 1.0, 'think': 1.0, 'pack': 3.0, 'upgrades': 1.0, 'he': 1.0, 'sure': 1.0, 'get': 1.0, 'worried': 1.0, 'model': 2.0, 'either': 1.0, 'would': 3.0, 'bulky': 1.0, 't': 1.0, 'ago': 1.0, 'playard': 2.0, 'play': 3.0, 'and': 3.0, 'similar': 1.0, 'with': 3.0, 'first': 1.0, 'kensly': 1.0, 'reversible': 1.0, 'n': 2.0, 'i': 9.0, 'graco': 2.0, 'when': 2.0, 'again': 1.0, 'be': 1.0, 'incline': 2.0, 'bought': 2.0, 'happy': 1.0, 'one': 2.0, 'how': 1.0, 'our': 1.0, 'to': 6.0, 'bassinet': 1.0, 'it': 7.0, 'notably': 1.0, 'a': 6.0, 'slight': 1.0, 'year': 1.0, 'because': 3.0, 'find': 1.0, 'levels': 1.0, 'the': 11.0, 'of': 5.0, 'both': 1.0, 'house': 1.0, 'another': 2.0, 'napper': 2.0, 'sometimes': 1.0, 'changer': 2.0, 'have': 2.0, 'used': 2.0, 'toy': 1.0, 'them': 1.0, 'has': 1.0, 'is': 1.0, 'reflux': 1.0, 'sleeping': 2.0, 'which': 1.0, 'good': 2.0, 'baby': 3.0, 'battling': 1.0, 'never': 1.0, 'some': 1.0, 'from': 1.0, 'acid': 1.0, 'fitted': 1.0, 'myself': 1.0, 'liked': 1.0, 'in': 1.0, 'swing': 1.0, 'as': 2.0, 'diaper': 1.0, 'difference': 1.0, 'we': 5.0, 'swinging': 1.0, 'motion': 1.0, 'course': 1.0, 'but': 1.0, 'honestly': 1.0, 'two': 1.0, 'nice': 1.0, 'little': 1.0}
Word element => {}
Word element => {'others': 1.0, 'would': 1.0, 'i': 1.0, 'place': 1.0, 'into': 1.0, 'put': 1.0, 'little': 1.0, 'a': 1.0, 'to': 2.0, 'was': 2.0, 'entire': 1.0, 'graco': 1.0, 'time': 1.0, 'on': 1.0, 'play': 1.0, 'overall': 1.0, 'packed': 1.0, 'this': 1.0, 'unit': 1.0, 'n': 1.0, 'pack': 1.0, 'arrived': 1.0, 'the': 4.0, 'product': 1.0, 'neatly': 1.0, 'and': 1.0, 'few': 1.0, 'napper': 1.0, 'up': 1.0, 'fairly': 1.0, 'set': 1.0, 'difficult': 1.0, 'steps': 1.0, 'recommend': 1.0, 'easy': 1.0, 'were': 1.0, 'reversible': 1.0}
Word element => {'our': 1.0, 'instead': 1.0, 'be': 1.0, 'will': 1.0, 'combo': 1.0, 'changer': 1.0, 'of': 2.0, 'theme': 1.0, 'idea': 1.0, 'neutral': 1.0, 'gender': 1.0, 'just': 1.0, 'newborn': 1.0, 'perfect': 1.0, 'super': 1.0, 'take': 1.0, 'and': 3.0, 'is': 1.0, 'it': 2.0, 'this': 2.0, 'received': 1.0, 'we': 2.0, 'to': 1.0, 'assemble': 1.0, 'colors': 1.0, 'down': 1.0, 'a': 2.0, 'when': 1.0, 'easy': 1.0, 'today': 1.0, 'needed': 1.0, 'the': 3.0, 'bassinet': 1.0, 'are': 1.0, 'using': 1.0, 'napper': 1.0, 'love': 2.0, 'for': 2.0}
Word element => {'toddler': 1.0, 'child': 1.0, 'on': 1.0, 'the': 4.0, 'portable': 1.0, 'my': 1.0, 'lot': 1.0, 'a': 1.0, 'did': 1.0, 'of': 3.0, 'cribs': 1.0, 'growing': 1.0, 'daughter': 1.0, 'and': 1.0, 'found': 1.0, 'love': 1.0, 'one': 1.0, 'i': 1.0, 'research': 1.0, 'with': 1.0, 'this': 1.0, 'to': 2.0, 'birth': 1.0, 'be': 1.0, 'from': 1.0, 'best': 1.0, 'versatility': 1.0}
Word element => {'beach': 1.0, 'at': 1.0, 'where': 1.0, 'we': 2.0, 'and': 1.0, 'the': 1.0, 'my': 1.0, 'stay': 2.0, 'has': 2.0, 'thoroughly': 1.0, 'for': 1.0, 'daughter': 1.0, 'enjoyed': 1.0, 'one': 3.0, 'i': 1.0, 'product': 1.0, 'she': 1.0, 'overs': 1.0, 'this': 1.0, 'have': 2.0}
Word element => {'buy': 1.0, 'either': 1.0, 'her': 1.0, 'turn': 1.0, 'model': 1.0, 'same': 1.0, 'has': 1.0, 'friend': 1.0, 'waiting': 1.0, 'napper': 2.0, 'for': 3.0, 'supposed': 1.0, 'product': 3.0, 'be': 1.0, 'does': 1.0, 'part': 2.0, 'even': 1.0, 'flip': 1.0, 'very': 1.0, 'replacement': 1.0, 've': 1.0, 'disappointed': 1.0, 'saying': 1.0, 'will': 1.0, 'not': 1.0, 'changer': 2.0, 'don': 1.0, 'over': 2.0, 'bought': 1.0, 'months': 1.0, 'junk': 1.0, 'i': 4.0, '4': 1.0, 'this': 3.0, 'with': 1.0, 'she': 1.0, 'it': 2.0, 'only': 1.0, 'to': 3.0, 'weeks': 1.0, 'now': 1.0, 'the': 6.0, 's': 1.0, 'a': 1.0, 't': 3.0, 'been': 1.0, 'that': 1.0, 'is': 1.0, 'm': 1.0, 'backordered': 1.0, 'are': 1.0, 'and': 2.0, 'they': 1.0, 'another': 1.0, '6': 1.0, 'which': 1.0, 'work': 1.0, '2': 1.0, 'can': 2.0, 'use': 1.0}
Word element => {'if': 1.0, 'see': 1.0, 'have': 1.0, 'then': 1.0, 'can': 1.0, '2': 1.0, '1': 1.0, 'until': 1.0, 'use': 1.0, 'months': 2.0, 'three': 1.0, 'quickly': 1.0, 'growing': 1.0, 'that': 2.0, 'in': 1.0, 'will': 2.0, 'also': 1.0, 'levels': 1.0, 'addition': 1.0, 'vinal': 1.0, 'has': 1.0, 'to': 4.0, 'very': 1.0, 'was': 1.0, 'minutes': 1.0, 'wash': 1.0, 'assembly': 1.0, 'i': 2.0, '4': 1.0, 'two': 1.0, '20': 1.0, 'daughter': 1.0, 'together': 1.0, 'difficult': 1.0, 'detach': 1.0, 'because': 1.0, 'climbs': 1.0, 'probably': 2.0, 'and': 3.0, 'she': 1.0, 'it': 6.0, 'durable': 1.0, 'only': 1.0, 'the': 7.0, 'out': 1.0, 'wasn': 1.0, 'changer': 2.0, 'side': 1.0, 'is': 4.0, 'year': 1.0, 'sturdy': 1.0, 'my': 2.0, 'napper': 2.0, 'sometimes': 1.0, 'old': 1.0, 'put': 1.0, '3': 1.0, 'on': 1.0, 'of': 2.0, 'portion': 1.0, 'really': 1.0, 'material': 1.0, 'time': 1.0, 'so': 1.0, 't': 1.0, 's': 1.0, 'easy': 1.0, 'about': 2.0, 'thing': 1.0}
Word element => {'play': 1.0, 'put': 1.0, 'more': 1.0, 'the': 1.0, 'my': 1.0, 'baby': 1.0, 'little': 1.0, 'its': 1.0, 'for': 2.0, 'in': 1.0, 'and': 1.0, 'very': 1.0, 'bay': 1.0, 'practical': 1.0, 'option': 1.0, 'a': 2.0, 'traveli': 1.0}
Word element => {'price': 1.0, 'thanks': 1.0, 'sweetheart': 1.0, 'my': 1.0, 'home': 1.0, 'at': 2.0, 'amazon': 1.0, 'is': 1.0, 'and': 1.0, 'go': 1.0, 'on': 1.0, 'car': 1.0, 'item': 2.0, 'the': 1.0, 'great': 3.0, 'gave': 1.0, 'in': 2.0, 'ohio': 1.0, 'one': 2.0, 'love': 1.0, 'for': 4.0, 'gift': 2.0, 'a': 4.0, 'them': 1.0, 'else': 1.0, 'so': 2.0, 'little': 1.0, 'shipped': 1.0, 'granddaughter': 1.0, 'was': 2.0, 'to': 1.0, 'used': 1.0, 'her': 1.0, 'it': 3.0, 'this': 1.0, 'shower': 1.0, 'they': 1.0, 'loves': 1.0, 'stays': 1.0, 'mommy': 1.0, 'someone': 1.0, 'similar': 1.0}
Word element => {'sleeping': 1.0, 'loves': 1.0, 'play': 1.0, 'we': 1.0, 'use': 1.0, 'but': 1.0, 'have': 1.0, 'pack': 1.0, 'in': 1.0, 'perfect': 1.0, 'newborn': 1.0, 'of': 1.0, 'is': 1.0, 'the': 2.0, 'ease': 1.0, 'and': 2.0, 'changer': 1.0, 'this': 1.0, 'n': 1.0, 'only': 1.0, 'it': 2.0, 'works': 1.0, 'a': 1.0, 'well': 1.0, 'baby': 1.0}
Word element => {'earlier': 1.0, 'during': 1.0, 'especially': 1.0, 's': 1.0, 'parent': 1.0, 'of': 1.0, 'needs': 1.0, 'meet': 1.0, 'or': 1.0, 'a': 1.0, 'they': 1.0, 'the': 2.0, 'are': 1.0, 'this': 1.0, 'wonderful': 1.0, 'years': 1.0, 'for': 1.0, 'children': 1.0, 'to': 1.0, 'product': 1.0, 'whether': 1.0, 'was': 1.0, 'visiting': 1.0}
Word element => {'basinet': 1.0, 'colors': 1.0, 'nice': 2.0, '34': 2.0, 'what': 1.0, 'playpen': 1.0, 'i': 2.0, 'love': 1.0, 'is': 2.0, 'a': 1.0, 'the': 1.0, 'this': 1.0, 'exactly': 1.0, 'product': 1.0, 'she': 1.0, 'color': 1.0, 'girl': 1.0, 'wanted': 1.0, 'and': 3.0}
Word element => {'it': 1.0, 'love': 1.0, 'we': 1.0, 'one': 1.0, 'in': 1.0, 'all': 1.0, 'thanks': 1.0, 'by': 1.0, 'else': 1.0, 'an': 1.0, 'product': 1.0, 'this': 1.0, 'item': 1.0, 'why': 1.0, 'anything': 1.0, 'is': 2.0, 'a': 1.0, 'three': 1.0, 'that': 1.0}
Word element => {'my': 1.0, 'hope': 1.0, 'baby': 2.0, 'i': 2.0, 'it': 3.0, 'very': 1.0, 'like': 2.0, 'to': 1.0, 'still': 1.0, 'looks': 1.0, 's': 1.0, 'waiting': 1.0, 'good': 1.0, 'use': 1.0, 'but': 1.0, 'for': 1.0}
Word element => {'either': 1.0, 'room': 2.0, 'easily': 1.0, 'rolling': 1.0, 'shifts': 1.0, 'and': 1.0, 'from': 1.0, 'very': 1.0, 'pretty': 1.0, 'too': 1.0, 'us': 1.0, 'changer': 1.0, 'are': 1.0, 'folded': 1.0, 'is': 2.0, 'unnecessary': 1.0, 'be': 1.0, 'to': 3.0, 'right': 1.0, 'a': 1.0, 'just': 1.0, 'seems': 1.0, 'newborn': 1.0, 'perfect': 1.0, 'or': 1.0, 'sleep': 1.0, 'easy': 1.0, 'while': 1.0, 'lightweight': 1.0, 'the': 4.0, 'it': 1.0, 'with': 1.0, 'this': 1.0, 'for': 1.0, 'bed': 1.0, 'napper': 1.0, 'space': 1.0, 'installation': 1.0, 'younger': 1.0, 'extra': 1.0, 'colors': 1.0, 'height': 1.0, 'storage': 1.0, 'next': 1.0, 'they': 1.0}
Word element => {'line': 1.0, 'helpful': 1.0, 'super': 1.0, 'are': 1.0, 'thing': 1.0, 'shelves': 1.0, 'needed': 1.0, 'storage': 2.0, 'people': 1.0, 'bottom': 2.0, 'favorite': 1.0, '1': 1.0, 'sure': 1.0, 'get': 2.0, 'wasn': 1.0, 'my': 1.0, 'made': 1.0, 'them': 1.0, 'at': 1.0, 'space': 2.0, 'lot': 1.0, 'it': 1.0, 'this': 2.0, 'pink': 4.0, 'with': 1.0, 'all': 1.0, 'least': 1.0, 'to': 2.0, 'pack': 1.0, 'have': 1.0, 'specifically': 1.0, 'think': 1.0, 'two': 1.0, 'i': 5.0, 'is': 2.0, 'more': 1.0, 'and': 2.0, 'play': 1.0, 'love': 1.0, 'for': 1.0, 'reasons': 1.0, 'color': 1.0, 'one': 1.0, 'the': 3.0, 'deal': 1.0, 'than': 1.0, 'refused': 1.0, 'know': 1.0, 'n': 1.0, 'not': 1.0, 'could': 1.0, 'we': 2.0, 't': 1.0, 'a': 2.0, 'necessary': 2.0, 'of': 3.0, 'if': 1.0, 'you': 1.0, 'girl': 1.0, 'removable': 1.0, '2': 1.0, 'but': 1.0, 'absolutely': 1.0, 'm': 1.0}
Word element => {'unit': 2.0, 'three': 1.0, 'stage': 1.0, 'may': 1.0, 'accident': 1.0, 'scrub': 1.0, 'other': 1.0, 'disposable': 1.0, 'yet': 1.0, 'or': 3.0, 'still': 1.0, 'gets': 1.0, 'first': 1.0, 'funny': 1.0, 'right': 1.0, 'washable': 1.0, 'up': 1.0, 'leveled': 1.0, 'ends': 1.0, 'station': 3.0, 'us': 1.0, 'changing': 3.0, 'that': 1.0, 'thing': 1.0, 'one': 1.0, 'then': 1.0, 'disassemble': 1.0, 'not': 4.0, 'registry': 1.0, 'reflect': 1.0, 'bothers': 1.0, 'amazon': 1.0, 'is': 4.0, 'from': 1.0, 'positive': 1.0, 'baby': 3.0, 'removed': 1.0, 'weeks': 1.0, 'two': 1.0, 'i': 3.0, 'got': 1.0, 'times': 1.0, 'you': 4.0, 'am': 1.0, 'old': 2.0, 'noticed': 1.0, 'negative': 1.0, 'sorry': 1.0, 'any': 1.0, 'pads': 1.0, 'all': 1.0, 'our': 3.0, 'to': 4.0, 'the': 11.0, 'tried': 2.0, 'things': 1.0, 'carry': 1.0, 'only': 2.0, 'looks': 1.0, 'it': 6.0, 'assume': 1.0, 'go': 1.0, 't': 1.0, 'we': 4.0, 'a': 3.0, 'also': 1.0, 'will': 1.0, 'item': 1.0, 'but': 5.0, 'can': 2.0, 'and': 1.0, 'soon': 1.0, 'description': 1.0, 'put': 1.0, 'portable': 1.0, '3': 1.0, 'out': 1.0, 'couple': 3.0, 'of': 6.0, 'issues': 1.0, 'this': 1.0, 'sleeper': 1.0, 'rolling': 1.0, 'listing': 1.0, 'like': 1.0, 'be': 1.0, 'sheet': 1.0, 'so': 1.0, 'love': 1.0, 'folks': 1.0, 'have': 5.0, 'pad': 1.0, 'off': 1.0, 'does': 1.0}
Word element => {'inch': 1.0, 'except': 1.0, 'nice': 1.0, 'been': 1.0, 'would': 1.0, 'i': 1.0, 'gift': 1.0, 'but': 1.0, 'ribbon': 1.0, 'condition': 1.0, 'arrived': 1.0, 'good': 1.0, 'torn': 1.0, 'hole': 1.0, 'in': 2.0, 'for': 2.0, '8': 1.0, 'have': 1.0, 'fabric': 1.0, 'itself': 1.0, 'product': 1.0, 'the': 4.0, 'actually': 1.0, 'paid': 1.0, 'it': 2.0, 'with': 1.0, 'extra': 1.0, 'was': 2.0, 'wrap': 2.0, 'a': 2.0, 'bag': 1.0, '9': 1.0, 'gold': 1.0}
Word element => {'few': 1.0, 'child': 1.0, 'grow': 1.0, 'will': 1.0, 'much': 1.0, 'sleeper': 1.0, 'a': 2.0, 'years': 1.0, 'storage': 1.0, 'playard': 1.0, 'i': 1.0, 'found': 1.0, 'table': 1.0, 'needed': 2.0, 'we': 1.0, 'in': 1.0, 'needs': 1.0, 'used': 1.0, 'what': 1.0, 'changing': 1.0, 'best': 1.0, 'just': 1.0, 'did': 1.0, 'product': 1.0, 'and': 3.0, 'my': 1.0, 'the': 2.0, 'come': 1.0, 'with': 1.0, 'it': 1.0, 'research': 1.0, 'this': 1.0, 'to': 2.0, 'was': 1.0, 'meet': 1.0, 'that': 1.0, 'awesome': 1.0, 'our': 1.0, 'your': 1.0, 'has': 1.0}
Word element => {'mentioning': 1.0, 'worth': 1.0, 'else': 1.0, 'review': 1.0, 'come': 1.0, 'invest': 1.0, 'parent': 1.0, 'suggest': 1.0, 'secured': 1.0, 'seem': 1.0, 'toy': 2.0, 'wish': 1.0, 'glad': 1.0, 'hard': 1.0, 'pleased': 1.0, 'learn': 1.0, 'lesson': 1.0, 'mess': 1.0, 'loose': 1.0, 'soon': 1.0, 'pee': 1.0, 'prefers': 1.0, 'kid': 1.0, 'corner': 1.0, 'unless': 1.0, 'am': 3.0, 'daughter': 3.0, 'compensate': 1.0, 'meant': 1.0, 'maybe': 1.0, 'rail': 1.0, 'matter': 1.0, 'mentioned': 1.0, 'been': 3.0, 'shelf': 1.0, 'throw': 1.0, 'around': 2.0, 'adjusting': 1.0, 'piece': 1.0, 'rails': 1.0, 'translates': 1.0, 'outside': 1.0, 'portability': 1.0, 'forget': 1.0, 'relaxing': 1.0, 'weighs': 1.0, 'another': 1.0, 'spending': 1.0, 'flight': 1.0, 'long': 1.0, 'getting': 1.0, 'imagine': 2.0, 'took': 1.0, 'straps': 1.0, 'disregard': 1.0, 'sanity': 1.0, 'properly': 1.0, 'see': 1.0, 'concern': 2.0, 'safety': 1.0, 'could': 2.0, 'no': 3.0, 'overall': 1.0, 'they': 2.0, 'again': 2.0, 'difficult': 1.0, 'hold': 1.0, 'incredibly': 1.0, 'do': 3.0, 'down': 2.0, 'face': 4.0, 'portable': 1.0, 'release': 4.0, 'directions': 2.0, 'earlier': 1.0, 'finished': 1.0, 'attach': 3.0, 'velcro': 4.0, 'digging': 1.0, 'firmly': 1.0, 'turning': 1.0, 'calls': 1.0, 'place': 1.0, 'easily': 2.0, 'assembles': 1.0, 'unit': 5.0, 'bottom': 2.0, 'basic': 3.0, 'ok': 1.0, 'assembly': 3.0, 'mention': 1.0, 'off': 3.0, 'rolling': 2.0, 'something': 1.0, 'second': 2.0, 'away': 1.0, 'step': 2.0, 'enclosed': 1.0, 'keep': 1.0, 'floor': 1.0, 'much': 3.0, 'pop': 1.0, 'alternative': 1.0, 'changes': 1.0, 'duffle': 1.0, 'late': 1.0, 'didn': 1.0, 'mattress': 1.0, 'nursery': 3.0, 'feature': 1.0, 'couple': 1.0, 'out': 4.0, 'help': 1.0, 'stayed': 1.0, 'came': 1.0, 'causes': 1.0, 'mother': 1.0, 'correct': 1.0, 'sides': 2.0, 'bar': 2.0, 'would': 5.0, 'ignore': 1.0, 'weeks': 3.0, 'any': 2.0, 'keeps': 1.0, 'pops': 1.0, 'thing': 2.0, 'useful': 1.0, 'how': 1.0, 'item': 2.0, 'our': 5.0, 'finally': 1.0, 'i': 21.0, 'lean': 1.0, 'access': 1.0, 'well': 1.0, 'tended': 1.0, 'known': 1.0, 'were': 1.0, 'accessories': 1.0, 'unnecessary': 1.0, 'attachment': 2.0, 'separately': 1.0, 'fairly': 1.0, 'set': 1.0, 'flowers': 1.0, 'five': 1.0, 'opted': 1.0, 'wife': 3.0, 'while': 1.0, 'install': 2.0, 'diaper': 3.0, 'steep': 2.0, 'up': 9.0, 'lullaby': 1.0, 'universal': 1.0, 'must': 1.0, 'change': 1.0, 'great': 1.0, 'if': 12.0, 'built': 1.0, 'toys': 1.0, 'choke': 2.0, 'worried': 1.0, 'new': 1.0, 'side': 2.0, 'later': 1.0, 'plan': 1.0, 'some': 1.0, 'roll': 2.0, 'bed': 3.0, 'when': 7.0, 'itself': 1.0, 'should': 1.0, 'make': 1.0, 'she': 7.0, 'baby': 15.0, 'staying': 1.0, 'have': 12.0, 'flat': 4.0, 'really': 4.0, 'given': 1.0, 'cradle': 1.0, 'battery': 2.0, 'instead': 2.0, 'base': 1.0, 'carry': 2.0, 'laid': 1.0, 'breathes': 1.0, 'tends': 1.0, 'regular': 1.0, 'them': 6.0, 'her': 9.0, 'use': 4.0, 'that': 23.0, 'because': 2.0, 'the': 71.0, 'good': 2.0, 'someone': 1.0, 'this': 11.0, 'few': 2.0, 'anything': 1.0, 'parts': 1.0, 'perhaps': 1.0, 'asleep': 1.0, 'back': 3.0, 'price': 1.0, 'has': 5.0, 'gotten': 1.0, 'very': 7.0, 'six': 2.0, 'poles': 1.0, 'noticed': 1.0, 'items': 1.0, 'on': 13.0, 'laying': 1.0, 'zen': 1.0, 'even': 2.0, 'of': 9.0, 'old': 1.0, 'night': 3.0, 'station': 1.0, 'byfisher': 1.0, 'you': 15.0, 'inclined': 1.0, 'than': 2.0, 'pay': 1.0, 'far': 1.0, 'car': 2.0, 'yet': 3.0, 'attention': 1.0, 'other': 3.0, 'way': 2.0, 'call': 1.0, 'all': 3.0, 'an': 4.0, 'every': 2.0, 'play': 6.0, 'suitable': 1.0, 'about': 3.0, 'putting': 2.0, 'spit': 2.0, 'put': 7.0, 'changing': 10.0, 'so': 13.0, 'included': 2.0, 'separate': 1.0, 'minute': 1.0, 'only': 4.0, 'pack': 8.0, 'comes': 1.0, 'seemed': 1.0, 'better': 4.0, 'one': 4.0, 'weight': 1.0, 'too': 1.0, 'matched': 1.0, 'together': 1.0, 'in': 18.0, 'follow': 1.0, 'collection': 1.0, 'more': 4.0, 'can': 4.0, 'is': 23.0, 'at': 2.0, 'pad': 3.0, 'taken': 1.0, 'take': 3.0, 'bag': 1.0, 'a': 31.0, 'was': 8.0, 'sit': 1.0, 'as': 6.0, 'right': 1.0, 'to': 38.0, 'who': 1.0, 'outer': 1.0, 'from': 2.0, 'converting': 1.0, 'newborn': 1.0, 'towards': 1.0, 'into': 2.0, 't': 12.0, 'wraps': 1.0, 'however': 2.0, 'get': 3.0, 'update': 1.0, 'storage': 1.0, 'assemble': 1.0, 'months': 1.0, 'used': 2.0, 'problem': 3.0, 'now': 2.0, 'trip': 4.0, 'advice': 2.0, 'doesn': 4.0, 's': 5.0, 'parents': 1.0, 'will': 7.0, 'furniture': 1.0, 'also': 4.0, 'need': 3.0, 'or': 6.0, 'guess': 1.0, 'for': 11.0, 'n': 6.0, 'first': 4.0, 'hour': 2.0, 'difficulty': 1.0, 'my': 9.0, 'room': 3.0, 'are': 3.0, 'we': 14.0, 'bad': 3.0, 'life': 3.0, 'still': 1.0, 'don': 3.0, 'had': 4.0, 'served': 2.0, 'fold': 1.0, 'worry': 2.0, 'air': 1.0, 'crib': 1.0, 'dresser': 1.0, 'swing': 1.0, 'bassinet': 4.0, 'four': 2.0, 'below': 1.0, 'grab': 1.0, 'sleep': 3.0, 'table': 7.0, 'there': 10.0, 'give': 1.0, 'before': 1.0, 'probably': 1.0, 'uncomfortable': 1.0, 'minor': 1.0, 'imperfections': 1.0, 'original': 1.0, 'reason': 1.0, 'be': 4.0, 'own': 1.0, 'it': 29.0, 'those': 3.0, 'already': 1.0, 'stars': 1.0, 'highlight': 1.0, 'what': 1.0, 'securely': 2.0, 'sleeps': 1.0, 'us': 2.0, 'actually': 2.0, 'office': 1.0, 'soft': 1.0, 'me': 2.0, 'slightly': 1.0, 'like': 2.0, 'helped': 1.0, 'position': 1.0, 'two': 1.0, 'won': 1.0, 'notice': 1.0, 'single': 1.0, 'electronics': 1.0, 'guest': 2.0, 'music': 2.0, 'napper': 10.0, 'not': 5.0, 'but': 8.0, 'loops': 2.0, 'vibrating': 1.0, 'gas': 1.0, 'stopped': 1.0, 'timer': 1.0, 'save': 1.0, 'tried': 1.0, 'and': 29.0, 'just': 4.0, 'time': 2.0, 'did': 1.0, 'infant': 1.0, 'after': 1.0, 'daily': 1.0, 'shelves': 1.0, 'buttons': 4.0, 'haven': 2.0, 'might': 1.0, 'convenient': 1.0, 'big': 1.0, 'nice': 4.0, 'stiff': 1.0, 'going': 2.0, 'attached': 1.0, 'prop': 1.0, 'using': 1.0, 'with': 10.0}
Word element => {'guys': 1.0, 'happy': 1.0, 'are': 1.0, 'we': 1.0, 'also': 1.0, 'go': 1.0, 'fast': 1.0, 'place': 1.0, 'thank': 1.0, 'they': 1.0, 'your': 1.0, 'room': 1.0, 'much': 1.0, 'too': 1.0, 'of': 1.0, 'up': 1.0, 'carry': 1.0, 'ship': 1.0, 'good': 1.0, 'to': 3.0, 'product': 1.0, 'easy': 1.0, 'very': 4.0, 'and': 3.0, 'item': 1.0, 'take': 1.0, 'light': 1.0, 'if': 1.0, 'great': 1.0, 't': 1.0, 'the': 2.0, 'itself': 1.0, 'it': 2.0, 'this': 2.0, 'durable': 1.0, 'way': 1.0, 's': 2.0, 'you': 2.0, 'baby': 1.0, 'don': 1.0, 'is': 2.0, 'want': 1.0}
Word element => {'pleased': 1.0, 'wanted': 1.0, 'and': 1.0, 'very': 1.0, 'daughter': 1.0, 'for': 1.0, 'features': 1.0, 'has': 3.0, 'all': 1.0, 'but': 1.0, 'my': 1.0, 'the': 1.0, 'well': 1.0, 'assembled': 1.0, 'baby': 2.0, 'she': 2.0, 'girl': 1.0, 'it': 2.0, 'come': 1.0, 'not': 2.0, 'so': 1.0, 'her': 1.0, 'used': 1.0, 'seems': 1.0}
Word element => {'through': 1.0, 'not': 1.0, 'does': 1.0, 'once': 1.0, 'comfortable': 1.0, 'bed': 1.0, 'and': 2.0, 'secure': 1.0, 'diapers': 1.0, 'bassinet': 1.0, 'storing': 1.0, 'assembled': 1.0, 'the': 7.0, 'in': 3.0, 'newborn': 1.0, 'extra': 1.0, 'doorways': 1.0, 'decided': 1.0, 'next': 1.0, 'with': 1.0, 'perfect': 2.0, 'this': 1.0, 'it': 4.0, 'use': 2.0, 'have': 1.0, 'nightlight': 1.0, 'however': 1.0, 'move': 1.0, 'bedroom': 1.0, 'room': 2.0, 'our': 2.0, 'to': 5.0, 'was': 1.0, 'late': 1.0, 'night': 1.0, 'added': 1.0, 'feedings': 1.0, 'compartment': 1.0, 'wipes': 1.0, 'assembly': 1.0, 'we': 1.0, 'a': 1.0, 'around': 1.0, 'is': 4.0, 'plan': 1.0, 'little': 1.0, 'wheels': 1.0, 'storage': 1.0, 'difficult': 1.0, 'be': 1.0, 'fit': 1.0, 'for': 2.0, 'assemble': 1.0, 'you': 1.0, 'make': 1.0, 'sure': 1.0, 'easy': 1.0}
Word element => {'be': 1.0, 'intended': 1.0, 'would': 2.0, 'trust': 1.0, 'if': 1.0, 'unstable': 1.0, 'making': 1.0, 'click': 1.0, 'are': 1.0, 'locks': 1.0, 'rails': 1.0, 'star': 1.0, 'top': 1.0, 'stayed': 1.0, 'so': 1.0, 'upstairs': 1.0, 'bring': 1.0, 'of': 2.0, 'up': 2.0, 'baby': 3.0, 'storage': 1.0, 'broke': 2.0, '5': 1.0, 'room': 2.0, '4': 1.0, 'i': 1.0, 'really': 1.0, 'useless': 1.0, 'it': 9.0, 'table': 1.0, 'into': 1.0, 'that': 3.0, 'changing': 1.0, 'fulfill': 1.0, 'problems': 1.0, 'wanted': 1.0, 'nursery': 1.0, 'living': 1.0, 'its': 2.0, 'in': 3.0, 'the': 4.0, 'place': 2.0, 'command': 1.0, 'product': 1.0, 'supposed': 1.0, 'love': 1.0, 'one': 2.0, 'set': 1.0, 'used': 2.0, 'longer': 1.0, 'down': 1.0, 'had': 1.0, 'grandma': 1.0, 'sleep': 1.0, 'as': 2.0, 'to': 6.0, 'center': 1.0, 'our': 3.0, 'but': 2.0, 'week': 1.0, 'folded': 2.0, 'when': 2.0, 'main': 2.0, 'could': 2.0, 'we': 5.0, 's': 1.0, 'a': 4.0, 'travel': 1.0, 'guest': 1.0, 'purposes': 2.0, 'crib': 1.0, 'this': 2.0, 'drive': 1.0, 'clicks': 1.0, 'and': 3.0, 'thing': 1.0, 'whole': 1.0, 'no': 2.0, 'while': 1.0, 'later': 1.0, 'just': 1.0}
Word element => {'issue': 1.0, 'options': 1.0, 'consider': 1.0, 'something': 1.0, 'want': 1.0, 'packed': 1.0, 'jam': 1.0, 'priced': 1.0, 'good': 1.0, 'wants': 1.0, 'disappointed': 1.0, 'recommend': 1.0, 'music': 1.0, 'vibrating': 1.0, 'amount': 1.0, 'cost': 1.0, 'number': 1.0, 'your': 1.0, 'safe': 1.0, 'pretty': 1.0, 'seem': 1.0, 'does': 1.0, 'itself': 2.0, 'unit': 2.0, 'flimsy': 1.0, 'solid': 2.0, 'alot': 1.0, 'notch': 1.0, 'looks': 1.0, 'easily': 1.0, 'disconnect': 1.0, 'probably': 2.0, 'see': 1.0, 'connects': 1.0, 'strap': 1.0, 'pack': 2.0, 'durability': 1.0, 'being': 1.0, 'very': 4.0, 'up': 2.0, 'an': 2.0, 'all': 2.0, 'other': 2.0, '45': 1.0, 'sleeper': 2.0, 'than': 2.0, 'cases': 1.0, 'harder': 1.0, 'made': 2.0, 'took': 2.0, 'instead': 1.0, 'fairly': 1.0, 'set': 1.0, 'used': 1.0, 'toy': 1.0, 'some': 2.0, 'me': 1.0, 'not': 4.0, 'setup': 2.0, 'thats': 1.0, 'top': 1.0, 'kind': 1.0, 'at': 2.0, 'nursery': 1.0, 'forth': 1.0, 'having': 1.0, 'understandable': 1.0, 'three': 1.0, 'so': 1.0, 'is': 9.0, 'can': 2.0, 'lightweight': 1.0, 'holiday': 1.0, 'had': 1.0, 'package': 1.0, 'come': 1.0, 'due': 1.0, 'vauge': 1.0, 'long': 1.0, 'comment': 1.0, 'table': 2.0, 'needed': 1.0, 'somewhat': 1.0, 'easier': 1.0, 'won': 1.0, 'two': 2.0, 'i': 7.0, 'how': 1.0, 'our': 1.0, 'us': 1.0, 'helpfull': 1.0, 'could': 1.0, 'will': 3.0, 'a': 13.0, 't': 4.0, 'the': 28.0, 'be': 4.0, 'it': 17.0, 'febuary': 1.0, 'first': 3.0, 'anyone': 1.0, 'manual': 1.0, 'yet': 1.0, 'product': 1.0, '10': 1.0, 'joke': 1.0, 'such': 1.0, 'my': 1.0, 'are': 2.0, 'hour': 1.0, 'missing': 1.0, 'to': 12.0, 'bassinet': 2.0, 'funning': 1.0, 'quality': 2.0, 'becomes': 1.0, 'seems': 1.0, 'usage': 1.0, 'likes': 1.0, 'features': 4.0, 'out': 1.0, 'were': 4.0, 'tpack': 1.0, 'for': 5.0, 'pieces': 2.0, 'diapers': 1.0, 'but': 6.0, 'changing': 2.0, 'times': 1.0, 'few': 1.0, 'there': 1.0, 'even': 1.0, 'of': 9.0, 'de': 1.0, 'day': 2.0, 'portability': 4.0, 'instruction': 1.0, 'about': 2.0, 'just': 2.0, 'and': 27.0, 'baby': 4.0, 'arived': 1.0, 'star': 1.0, 'spot': 1.0, 'play': 6.0, 'every': 2.0, 'isnt': 1.0, 'if': 4.0, 'minutes': 2.0, 'was': 4.0, 'fact': 1.0, 'what': 1.0, 'choise': 1.0, 'thing': 4.0, 'no': 1.0, 'problems': 1.0, 'that': 8.0, 'instructions': 1.0, 'box': 1.0, 'unfolding': 1.0, 'because': 1.0, 'has': 2.0, 'extra': 1.0, 'next': 1.0, 'lot': 1.0, 'too': 2.0, 'feel': 1.0, 'with': 3.0, 'using': 2.0, 'received': 1.0, 'light': 1.0, 'as': 2.0, 'pen': 1.0, 'pictures': 3.0, 'wipes': 1.0, 'easy': 2.0, 'includes': 2.0, 'however': 1.0, 'especially': 1.0, 'use': 2.0, 'this': 4.0, 'outstanding': 1.0, 'bar': 2.0, 'would': 3.0, 'fork': 1.0, 'ends': 1.0, 'also': 1.0, 'need': 1.0, 'feature': 2.0, 'or': 2.0, 'hassle': 1.0, 'isn': 2.0, 'difficult': 3.0, 'tell': 1.0, 'attach': 2.0, 'hand': 1.0, 'once': 3.0, 'nice': 3.0, 'squares': 1.0, 'plan': 1.0, 'its': 1.0, 'review': 1.0, 'installed': 2.0, 'forget': 1.0, 'portable': 2.0, 'stars': 1.0, 'port': 1.0, 'based': 1.0, 'in': 3.0, 'potty': 1.0, 'who': 1.0, 'from': 3.0, 'setting': 1.0, 'after': 1.0, 'taking': 1.0, 'support': 1.0, 'apart': 3.0, 'rods': 1.0, 'poles': 1.0, 'onsies': 1.0, 'you': 7.0, 'towels': 1.0, 'design': 1.0, 'connect': 1.0, 'done': 1.0, 'almost': 1.0, 'refuse': 1.0, 'another': 1.0, 'spend': 1.0, 'keeping': 1.0, 'soothing': 1.0, 'least': 1.0, 'one': 3.0, '5': 1.0, 'fighting': 1.0, 'take': 1.0, 'storage': 2.0, 'underneath': 1.0, 'make': 1.0, 'velcro': 1.0, 'store': 1.0, 'on': 7.0, 'items': 1.0, 'lifting': 1.0, 'maybe': 2.0, 'changes': 1.0, 'back': 1.0, 'etc': 1.0, '34': 4.0, 'small': 1.0, 'velcrow': 1.0}
Word element => {'carry': 1.0, 'things': 1.0, 'way': 2.0, 'you': 1.0, 'half': 1.0, 'deep': 1.0, 'on': 3.0, 'plus': 1.0, 'naper': 1.0, 'the': 7.0, 'side': 2.0, 'really': 1.0, 'change': 1.0, 'is': 1.0, 'n': 2.0, 'go': 2.0, 'could': 2.0, 'be': 1.0, 'shelve': 1.0, 'only': 1.0, 'pack': 2.0, 'itself': 1.0, 'thing': 1.0, 'i': 1.0, 'wish': 1.0, 'this': 1.0, 'dont': 1.0, 'other': 1.0, 'extra': 1.0, 'just': 1.0, 'what': 1.0, 'they': 1.0, 'all': 1.0, 'to': 2.0, 'also': 1.0, 'olny': 1.0, 'packs': 1.0, 'together': 1.0, 'if': 1.0, 'everything': 1.0, 'else': 1.0, 'so': 1.0, 'napper': 1.0, 'play': 2.0, 'and': 2.0, 'that': 1.0, 'changing': 1.0, 'like': 1.0, 'table': 1.0, 'are': 1.0}
Word element => {'problem': 1.0, 'follow': 1.0, 'easy': 1.0, 'instructions': 1.0, 'infant': 1.0, 'price': 1.0, 'toddler': 1.0, 'an': 1.0, 'work': 1.0, 'quality': 1.0, 'the': 1.0, 'adjustable': 1.0, 'great': 1.0, 'is': 2.0, 'when': 1.0, 'i': 2.0, 'use': 1.0, 'new': 1.0, 'for': 1.0, 'visits': 1.0, 'model': 2.0, 'been': 1.0, 'this': 2.0, 'grandson': 1.0, 'were': 1.0, 'our': 1.0, 'bought': 1.0, 'was': 1.0, 'to': 4.0, 'had': 1.0, 'in': 1.0, 'no': 1.0, 'assembly': 1.0, 'at': 1.0, 'looking': 1.0, 'can': 1.0, 'portable': 1.0, 'stores': 1.0, 'and': 3.0, 'cribs': 1.0, 'retail': 1.0, 'say': 1.0}
Word element => {'are': 1.0, 'colors': 1.0, 'plus': 1.0, 'adorable': 1.0, 'space': 1.0, 'have': 1.0, 'doesn': 1.0, 'was': 1.0, 'her': 2.0, 'excited': 1.0, 'n': 2.0, 'this': 3.0, 'of': 1.0, 'shower': 1.0, 'it': 2.0, 'were': 1.0, 'awesome': 1.0, 'that': 1.0, 'gave': 1.0, 't': 1.0, 'a': 3.0, 'mother': 1.0, 'the': 2.0, 'be': 1.0, 'pack': 2.0, 'gift': 1.0, 'i': 2.0, 'whole': 1.0, 'exact': 1.0, 'functions': 1.0, 'for': 1.0, 'baby': 1.0, 'patterns': 1.0, 'to': 2.0, 'as': 1.0, 'very': 1.0, 'ton': 1.0, '34': 2.0, 've': 1.0, 'in': 2.0, 'never': 1.0, 'someone': 1.0, 'seen': 1.0, 'like': 1.0, 'my': 1.0, 'is': 1.0, 'many': 1.0, 'shipped': 1.0, 'words': 1.0, 'quickly': 1.0, 'soon': 1.0, 'play': 2.0, 'and': 2.0, 'got': 1.0, 'life': 1.0, 'just': 1.0, 'so': 2.0, 'time': 1.0, 'has': 1.0, 'especially': 1.0}
Word element => {'regret': 1.0, 'set': 1.0, 'absolute': 1.0, 'made': 1.0, 'know': 1.0, 'everything': 1.0, 'assembly': 1.0, 'mind': 1.0, 'immediately': 1.0, 'con': 1.0, 'thinking': 1.0, 'choice': 2.0, 'care': 1.0, 'babies': 1.0, 'sure': 1.0, 'either': 1.0, 'special': 1.0, 'there': 1.0, 'best': 1.0, 'toy': 1.0, 'note': 1.0, 'quickly': 1.0, 'run': 1.0, 'may': 1.0, 'rather': 1.0, 'operated': 1.0, 'cell': 1.0, 'd': 2.0, 'plug': 1.0, 'between': 1.0, 'easiest': 1.0, 'features': 1.0, 'battery': 1.0, 'given': 1.0, 'disadvantage': 1.0, 'minimal': 1.0, 'heavier': 1.0, 'make': 1.0, 'functional': 1.0, 'multi': 1.0, 'amount': 1.0, 'trying': 1.0, 'floor': 1.0, 'house': 1.0, 'needs': 1.0, 'example': 1.0, 'husband': 1.0, 'seat': 1.0, 'bouncy': 1.0, 'basically': 1.0, 'seen': 1.0, 'some': 3.0, 'option': 2.0, 'two': 1.0, 'height': 1.0, 'thing': 2.0, 'darn': 1.0, 'hard': 2.0, 'broke': 1.0, 'nearly': 1.0, 'good': 1.0, 'rest': 1.0, 'story': 1.0, 'deal': 1.0, 'makes': 1.0, 'batteries': 1.0, 'get': 4.0, 'difficult': 2.0, 'kind': 1.0, 'time': 1.0, 'half': 1.0, 'put': 2.0, 'an': 1.0, 'took': 1.0, 'easy': 2.0, 'information': 1.0, 'cons': 1.0, 'experienced': 1.0, 'having': 1.0, 'add': 1.0, 'will': 1.0, 'feature': 2.0, 'came': 1.0, 'said': 1.0, 'dark': 1.0, 'helpful': 2.0, 'nightlight': 1.0, 'but': 6.0, 'yet': 1.0, 'locations': 1.0, 'unit': 2.0, 'electronic': 2.0, 'used': 2.0, '7': 1.0, 'others': 2.0, 'wheel': 1.0, 'had': 2.0, 'tested': 1.0, 'supported': 2.0, 'angled': 1.0, 'vibration': 1.0, 'matter': 1.0, 'removed': 1.0, 'than': 4.0, 'so': 5.0, 'was': 7.0, 'clothes': 1.0, 'nearby': 1.0, 'sturdy': 2.0, 'find': 1.0, 'very': 2.0, 'being': 4.0, 'which': 1.0, 'plan': 1.0, 'master': 1.0, 'ish': 1.0, 'me': 4.0, 'slightly': 1.0, 'without': 3.0, 'when': 2.0, 'circumstances': 1.0, 'about': 6.0, 'explaining': 1.0, 'no': 2.0, 'changing': 2.0, 'much': 1.0, 'has': 3.0, 'easily': 2.0, 'looks': 1.0, 'making': 1.0, 'table': 1.0, 'sleep': 2.0, 'let': 1.0, 'gender': 2.0, 'peyton': 1.0, 'little': 1.0, 'account': 1.0, '1': 2.0, 'gear': 1.0, 'since': 4.0, 'am': 1.0, 'provide': 1.0, 'if': 4.0, 'great': 1.0, 'together': 1.0, 'in': 13.0, 'your': 1.0, 'where': 1.0, 'many': 2.0, 'colors': 1.0, 'wanted': 3.0, 'available': 1.0, 'plus': 3.0, 'first': 2.0, 'cute': 1.0, 'lock': 1.0, 'wants': 1.0, 'well': 2.0, 'options': 1.0, 'hour': 1.0, 'my': 3.0, 'are': 5.0, 'room': 3.0, 'these': 1.0, 'once': 1.0, 'check': 1.0, 'added': 1.0, 'a': 15.0, 'necessities': 1.0, 'small': 1.0, 'happy': 1.0, 'useful': 3.0, 'have': 11.0, 'unzipping': 1.0, 'supports': 1.0, 'this': 4.0, 'few': 1.0, 'concerned': 1.0, 'because': 3.0, 'that': 11.0, 'pros': 2.0, 'he': 1.0, 'bottom': 1.0, 'durable': 1.0, 'big': 1.0, 'nice': 5.0, 'playard': 6.0, 'at': 5.0, 'can': 3.0, 'prefolds': 1.0, 'is': 18.0, 'anything': 1.0, 'chose': 2.0, 'corners': 1.0, 'though': 1.0, 'after': 1.0, 'bedroom': 1.0, 'more': 4.0, 'expensive': 1.0, 's': 4.0, 'ever': 1.0, 'way': 1.0, 'cranky': 1.0, 'all': 6.0, 'other': 3.0, 'looking': 1.0, 'something': 1.0, 'pretty': 1.0, 'to': 34.0, 'bassinet': 1.0, 'specific': 1.0, 'product': 3.0, 'nothing': 1.0, 'toddler': 1.0, 'neutral': 2.0, 'wipes': 1.0, 'obviously': 1.0, 'older': 1.0, 'too': 1.0, 'weight': 3.0, '3': 2.0, 'seems': 3.0, 'weeks': 1.0, 'bar': 1.0, 'would': 7.0, 'bulky': 2.0, 'our': 2.0, 'hope': 1.0, 'seem': 1.0, 'whole': 1.0, 'as': 5.0, 'up': 2.0, 'diaper': 1.0, 'playards': 2.0, 'overly': 1.0, 'gets': 1.0, 'enough': 1.0, 'only': 3.0, 'then': 2.0, 'wasn': 1.0, 'like': 3.0, 'fine': 1.0, 'useless': 1.0, 'moving': 2.0, 'through': 3.0, 'haven': 1.0, 'his': 1.0, 'least': 1.0, 'around': 1.0, 'with': 4.0, 'simply': 1.0, 'take': 2.0, '15': 1.0, 'fumbling': 1.0, 'pound': 1.0, 'on': 11.0, 'dog': 1.0, 'baby': 10.0, 'part': 1.0, 'and': 18.0, 'just': 4.0, 'not': 6.0, 'different': 1.0, 'napper': 4.0, 'move': 1.0, 'suite': 1.0, 'shelves': 4.0, 'last': 1.0, 'down': 2.0, 'it': 44.0, 'be': 9.0, 'color': 1.0, 'taken': 1.0, 'off': 3.0, 'instead': 1.0, 'attached': 1.0, 'rods': 1.0, '2': 2.0, 'leave': 1.0, 'cloth': 2.0, 'you': 6.0, 'night': 1.0, 'easier': 1.0, 'needed': 1.0, 'limited': 1.0, 'both': 1.0, 'place': 3.0, 'allowed': 1.0, 'of': 14.0, 'preventing': 1.0, 'form': 1.0, 'inserts': 1.0, 'support': 1.0, 'threshold': 1.0, 'i': 17.0, 'zip': 1.0, 'bad': 1.0, 'we': 3.0, 'middle': 1.0, 'while': 1.0, 'for': 10.0, 'pieces': 1.0, '4': 2.0, 'living': 1.0, 'the': 56.0, 'ample': 1.0, 'months': 1.0, 'assemble': 2.0, 'storage': 3.0, 'hold': 1.0, 'covers': 1.0, 'next': 1.0, 'extra': 1.0, 'extremely': 2.0, 'sagging': 1.0, 'think': 1.0, 'another': 2.0, 'else': 2.0, 'frequently': 1.0, 'convenient': 1.0, 'might': 2.0, 'need': 2.0, 'or': 2.0, 'complain': 1.0, 'mostly': 2.0, 'due': 1.0, 'size': 1.0, 'nighttime': 1.0, 'full': 1.0, 'don': 3.0, 'friends': 1.0, 'hanging': 1.0, 't': 6.0, 'appropriate': 1.0, 'worrying': 1.0, 'alone': 1.0, 'll': 1.0, 'side': 3.0, 'sag': 1.0, 'one': 6.0, '5': 1.0, 'what': 1.0, 'front': 1.0, 'clip': 1.0, 'come': 1.0, 'zipper': 1.0, 'especially': 1.0, 'use': 2.0, 'changer': 1.0, 'climbing': 1.0, 'out': 2.0, 'station': 1.0, '6': 1.0, 'wheels': 2.0, 'minimize': 1.0, 'really': 3.0, 'from': 1.0}
Word element => {'parents': 1.0, 'recommend': 1.0, 'neat': 1.0, 'level': 1.0, 'more': 1.0, 'e': 1.0, 'supposed': 1.0, 'way': 1.0, 'finally': 1.0, 'while': 1.0, 'for': 2.0, 'comfortable': 1.0, 'big': 1.0, 'very': 1.0, 'figure': 1.0, 'little': 6.0, 'storing': 1.0, 'flimsy': 1.0, 'inforced': 1.0, 'like': 2.0, 'table': 2.0, 'not': 3.0, 'fold': 1.0, 'shines': 1.0, 'only': 3.0, 'think': 1.0, 'pack': 1.0, 'and': 4.0, 'play': 1.0, 'so': 2.0, 'bit': 1.0, 'got': 1.0, 'daughter': 2.0, 'trying': 1.0, 'be': 3.0, 'rug': 1.0, 'design': 1.0, 'out': 2.0, 'wasn': 1.0, 'side': 1.0, 'made': 2.0, 'deal': 1.0, 'they': 2.0, 'makes': 1.0, 'thing': 5.0, 'bassinet': 1.0, 'pretty': 2.0, 'to': 6.0, 'how': 1.0, 'our': 2.0, 'fiddled': 1.0, 'had': 1.0, 'would': 1.0, 'either': 1.0, 'was': 3.0, 'at': 2.0, 'is': 3.0, 'sleeps': 1.0, 'really': 3.0, 'the': 15.0, 'of': 2.0, 'storage': 1.0, 'velcro': 1.0, 'product': 1.0, 'slanted': 1.0, 'with': 3.0, 'this': 1.0, 'functional': 1.0, 'compartments': 1.0, 'that': 2.0, 'do': 1.0, 'changing': 2.0, 'i': 7.0, 'well': 3.0, 'a': 7.0, 't': 1.0, 'sense': 1.0, 's': 2.0, 'trouble': 1.0, 'in': 3.0, 'it': 8.0, 'area': 1.0, 'sure': 1.0, 'kind': 1.0, 'designed': 1.0, 'on': 1.0, 'light': 3.0, 'just': 1.0, 'music': 1.0, 'rolled': 1.0, 'but': 3.0, 'bug': 1.0, 'when': 1.0, 'things': 2.0, 'you': 2.0, 'configured': 1.0, 'picture': 1.0, 'n': 1.0, 'd': 1.0, 'have': 1.0, 'seems': 2.0, 'off': 1.0, 'see': 1.0, 'above': 1.0, 'first': 1.0, 'or': 1.0, 'below': 1.0, 're': 2.0, 'fully': 1.0, 'where': 1.0, 'want': 1.0, 'other': 2.0, 'too': 1.0, 'one': 1.0}
Word element => {'and': 1.0, 'it': 1.0, 'this': 1.0, 'a': 2.0, 'just': 1.0, 'year': 1.0, 'showed': 1.0, 'these': 1.0, 'hesitation': 1.0, 'of': 3.0, 'good': 1.0, 'bought': 2.0, 'i': 3.0, 'daughter': 1.0, 'when': 1.0, 'one': 1.0, 'for': 1.0, 'bed': 1.0, 'mine': 1.0, 'my': 1.0, 'ago': 1.0, 'friend': 1.0, 'over': 1.0, 'asked': 1.0, 'without': 1.0, 'online': 1.0, 'her': 1.0, 'what': 1.0, 'she': 1.0, 'recommend': 1.0, 'might': 1.0}
Word element => {'very': 1.0, 'and': 1.0, 'shipping': 1.0, 'recommended': 1.0, 'instructions': 1.0, 'date': 1.0, 'no': 1.0, 'easy': 1.0, 'use': 1.0, 'excellent': 1.0, 'graphical': 1.0, 'with': 1.0, 'for': 1.0, 'so': 1.0, 'problem': 1.0, 'to': 1.0, 'newborn': 1.0, 'practical': 1.0, 'are': 1.0, 'the': 2.0}
Word element => {'bed': 1.0, 'just': 1.0, 'diapers': 1.0, 'wipes': 1.0, 'her': 3.0, 'part': 1.0, 'on': 2.0, 'put': 2.0, 'playard': 2.0, 'tilted': 1.0, 'storage': 1.0, 'cons': 2.0, 'review': 1.0, '4': 1.0, 'i': 7.0, 'pros': 1.0, 'changed': 1.0, 'this': 3.0, 'receiving': 1.0, 'roll': 1.0, 'stars': 1.0, 'love': 2.0, 'for': 4.0, 'product': 1.0, 'purchased': 1.0, 'use': 1.0, 'newborn': 1.0, 'also': 1.0, 'in': 1.0, 'and': 5.0, 'underneath': 1.0, 'my': 2.0, 'the': 6.0, 'there': 2.0, 'bassinet': 1.0, 'table': 1.0, 'change': 1.0, 'blankets': 2.0, 'can': 1.0, 'day': 1.0, 'to': 1.0, 'all': 3.0, 'as': 1.0, 'it': 1.0, 'she': 2.0, 'disliked': 1.0, 'changing': 1.0, 'how': 1.0, 'was': 1.0, 'now': 1.0, 'slightly': 1.0, 'so': 1.0, 'when': 1.0, 'snooze': 1.0, 'ill': 1.0, 'would': 1.0, 'over': 1.0}
Word element => {'beautiful': 1.0, 's': 1.0, 'say': 1.0, 'and': 1.0, 'told': 1.0, 'm': 1.0, 'but': 1.0, 'baby': 1.0, 'came': 1.0, 'box': 1.0, 'gift': 1.0, 'love': 1.0, 'parents': 1.0, 'given': 1.0, 'yet': 1.0, 'it': 4.0, 'shower': 2.0, 'this': 1.0, 'the': 4.0, 't': 1.0, 'a': 1.0, 'early': 1.0, 'so': 1.0, 'was': 2.0, 'to': 1.0, 'before': 1.0, 'her': 1.0, 'i': 2.0, 'haven': 1.0, 'seen': 1.0, 'out': 1.0, 'of': 1.0}
Word element => {'table': 1.0, 'well': 1.0, 'fine': 1.0, 'uses': 1.0, '11lbs': 1.0, 'months': 1.0, 'wonderful': 1.0, 'napper': 1.0, 'newborn': 1.0, 'instead': 1.0, 'why': 1.0, 'reason': 1.0, 'again': 1.0, 'care': 1.0, 'are': 1.0, 'items': 1.0, 'of': 2.0, 'quality': 2.0, 'low': 2.0, '5': 1.0, 'unnecessary': 2.0, 'so': 2.0, 'bit': 1.0, 'vibrations': 1.0, 'vibrator': 1.0, 'no': 1.0, 'thing': 1.0, 'damaged': 1.0, 'the': 12.0, 'great': 2.0, 'because': 1.0, 'discounted': 1.0, 't': 1.0, 's': 3.0, 'a': 2.0, 'doesn': 1.0, 'was': 3.0, 'had': 1.0, 'as': 3.0, 'to': 4.0, 'those': 1.0, 'not': 1.0, 'n': 2.0, 'this': 2.0, 'it': 7.0, 'pack': 2.0, 'only': 2.0, '4': 1.0, 'two': 1.0, 'i': 4.0, 'still': 1.0, 'storage': 1.0, 'extra': 1.0, 'damage': 1.0, 'paid': 1.0, 'is': 6.0, 'really': 1.0, 'price': 1.0, 'absolutely': 1.0, 'product': 1.0, 'stars': 1.0, 'for': 2.0, 'love': 2.0, 'easy': 1.0, 'think': 1.0, 'put': 1.0, 'daughter': 2.0, 'together': 1.0, 'play': 2.0, 'and': 2.0, 'item': 1.0, 'seems': 2.0, 'be': 1.0, 'pretty': 1.0, '2': 1.0, 'work': 1.0, 'music': 2.0, 'sturdy': 1.0, 'my': 2.0, 'underneath': 1.0, 'very': 1.0, 'handy': 1.0, 'changing': 1.0, 'box': 1.0, 'that': 2.0, 'just': 1.0, 'light': 2.0}
Word element => {'everything': 1.0, 'construction': 1.0, 'about': 1.0, 'evrything': 1.0, 'pleased': 1.0, 'accessories': 1.0, 'and': 1.0, 'very': 2.0, 'all': 1.0, 'we': 1.0, 'beautiful': 1.0, 'more': 1.0, 'the': 4.0, 'greco': 1.0, 'were': 1.0, 'that': 1.0, 'jacqueline': 1.0, 'color': 1.0, 'happy': 1.0, 'my': 1.0, 'whom': 1.0, 'photo': 1.0, 'set': 1.0, 'of': 1.0, 'she': 1.0, 'purchsed': 1.0, 'part': 1.0, 'was': 3.0, 'crib': 3.0, 'for': 1.0, 'a': 1.0, 'arrived': 1.0, 'just': 1.0, 'then': 1.0, 'loved': 1.0, 'with': 1.0, 'coworker': 1.0, 'it': 3.0, 'by': 2.0, 'when': 1.0, 'said': 1.0}
Word element => {'access': 1.0, 'area': 1.0, 'diapers': 1.0, 'naps': 1.0, 'livingroom': 1.0, 'great': 1.0, 'the': 2.0, 'keep': 1.0, 'easy': 1.0, 'she': 2.0, 'been': 1.0, 'in': 2.0, 'git': 1.0, 'has': 1.0, 'to': 1.0, 'granddaughter': 1.0, 'fo': 1.0, 'often': 1.0, 'it': 2.0, 'shower': 1.0, 'this': 1.0, 'every': 1.0, 'got': 1.0, 'fory': 1.0, 'i': 2.0, 'wonderful': 1.0, 'thie': 1.0, 'a': 2.0, 'since': 1.0, 'and': 5.0, 'born': 1.0, 'playard': 1.0, 'is': 2.0, 'conviencence': 1.0, 'used': 1.0, 'changing': 1.0, 'day': 1.0}
Word element => {'flip': 1.0, 'make': 1.0, 'would': 1.0, 'portable': 1.0, 'want': 1.0, 'able': 1.0, 'you': 2.0, 'bring': 1.0, 'car': 1.0, 'throw': 1.0, 'collapsed': 1.0, 'not': 3.0, 'babysitting': 1.0, 'legs': 1.0, 'is': 7.0, 'at': 1.0, 'since': 3.0, 'who': 2.0, 'so': 4.0, 's': 5.0, 't': 2.0, 'could': 1.0, 'a': 1.0, 'of': 1.0, 'the': 14.0, 'playing': 2.0, 'outgrown': 1.0, 'when': 2.0, 'napper': 2.0, 'for': 5.0, 'in': 6.0, 'm': 2.0, 'out': 1.0, 'absolutely': 1.0, 'truly': 1.0, 'daughter': 2.0, 'easier': 1.0, 'law': 2.0, 'and': 3.0, 'me': 1.0, 'my': 2.0, 'bend': 1.0, 'as': 3.0, 'to': 11.0, 'any': 1.0, 'very': 2.0, 'son': 1.0, 'april': 1.0, 'this': 3.0, 'her': 4.0, 'use': 4.0, 'loved': 2.0, 'purchased': 1.0, 'slept': 1.0, 'well': 2.0, 'i': 8.0, 'their': 2.0, 'don': 1.0, 'over': 1.0, 'mentioned': 1.0, 'house': 2.0, 'kicking': 1.0, 'was': 1.0, 'if': 1.0, 'expecting': 1.0, 'have': 5.0, 'born': 1.0, 'they': 5.0, 'change': 2.0, 'but': 1.0, 'graco': 1.0, 'pnp': 1.0, 'haven': 1.0, 'handy': 1.0, 'problem': 1.0, 'distracted': 1.0, 'with': 2.0, 'using': 1.0, 'she': 3.0, 'baby': 3.0, 'others': 1.0, 'it': 5.0, 'already': 1.0, 'recommendation': 1.0, 'them': 1.0, 'next': 1.0, 'be': 2.0, 'easily': 1.0, 'that': 5.0, 'because': 1.0, 'sister': 1.0, 'removed': 1.0, 'while': 1.0, 'parents': 1.0, 'way': 2.0, 'some': 1.0, 'degree': 1.0, 'month': 1.0, 'often': 1.0, 'graduated': 1.0, 'grandma': 1.0, 'mostly': 1.0, 'much': 2.0, 'floor': 2.0, 'noticed': 1.0, 'on': 1.0, 'gym': 1.0, 'quite': 1.0, 'changer': 3.0, 'shelves': 1.0, 'first': 1.0, 'are': 1.0, 'lol': 1.0, 'liked': 1.0, 'rolling': 1.0, 'one': 5.0, 'bought': 1.0, 'gift': 1.0}
Word element => {'just': 1.0, 'this': 1.0, 'breeze': 1.0, 'area': 1.0, 'remains': 1.0, 'go': 1.0, 'a': 2.0, 'wonderful': 1.0, 'but': 2.0, 'item': 1.0, 'will': 1.0, 'it': 3.0, 'precious': 1.0, 'from': 1.0, 'assembly': 1.0, 'once': 1.0, 'option': 1.0, 'at': 1.0, 'tricky': 1.0, 'recommended': 1.0, 'has': 1.0, 'for': 3.0, 'visits': 1.0, 'figured': 1.0, 'nicely': 1.0, 'diaper': 1.0, 'little': 1.0, 'highly': 1.0, 'every': 1.0, 'my': 2.0, 'be': 1.0, 'out': 1.0, 'newborn': 1.0, 'granddaughter': 1.0, 'was': 1.0, 'now': 1.0, 'on': 1.0, 'fold': 1.0, 'storage': 1.0, 'is': 1.0, 'and': 2.0, 'home': 1.0, 'needed': 1.0, 'me': 1.0, 'those': 1.0, 'as': 1.0, 'all': 1.0, 'the': 2.0, 'transfers': 1.0, 'into': 1.0, 'bag': 1.0, 'when': 1.0}
Word element => {'happier': 1.0, 'not': 1.0, 'straight': 1.0, '16': 1.0, 'them': 1.0, 'be': 1.0, 'chance': 1.0, 'has': 1.0, 'light': 1.0, 'with': 2.0, 'up': 1.0, 'child': 1.0, 'mild': 1.0, 'check': 1.0, 'way': 1.0, 'less': 1.0, 'panel': 1.0, 'control': 1.0, 'enjoyed': 1.0, 'vibrator': 1.0, 'programed': 1.0, 'the': 11.0, 'purchase': 1.0, 'my': 3.0, 'used': 2.0, 'i': 3.0, 'beautiful': 1.0, 'that': 2.0, 'into': 1.0, 'changing': 1.0, 'and': 6.0, 'do': 1.0, 'bassinet': 2.0, 'are': 2.0, 'really': 2.0, 'is': 3.0, 'can': 1.0, '2': 1.0, 'but': 1.0, 'waking': 1.0, 'daughter': 2.0, 'together': 1.0, 'could': 1.0, 'a': 4.0, 'also': 1.0, 'sounds': 1.0, 'item': 1.0, 'wonderful': 1.0, 'it': 2.0, 'easy': 2.0, 'device': 1.0, 'table': 1.0, 'lights': 1.0, 'where': 1.0, 'for': 3.0, 'love': 1.0, 'product': 2.0, 'to': 3.0, 'this': 3.0, 'perfect': 1.0, 'apart': 1.0, 'months': 2.0, 'your': 1.0, 'put': 1.0, '3': 1.0, 'on': 3.0, 'first': 1.0, 'snaps': 1.0, 'very': 1.0, 'little': 1.0, 'difficult': 1.0, 'take': 1.0, 'you': 2.0, 'rest': 1.0, 'once': 1.0, 'of': 2.0, 'transition': 1.0, 'great': 1.0, 'nice': 1.0, '1': 1.0, 'seemed': 1.0}
Word element => {'with': 1.0, 'expect': 1.0, 'did': 1.0, 'features': 1.0, 'are': 1.0, 'vibrates': 1.0, 'back': 1.0, 'on': 1.0, 'put': 1.0, 'want': 1.0, 'would': 1.0, 'something': 1.0, 'anyone': 1.0, 'be': 1.0, 'bassinet': 1.0, 'light': 1.0, 'by': 2.0, 'pop': 1.0, 'got': 1.0, 'i': 2.0, 'two': 1.0, 'playyard': 1.0, 'instructions': 1.0, 'has': 1.0, 'won': 1.0, 'went': 1.0, 'purchase': 1.0, 'my': 1.0, 'love': 1.0, 'napper': 2.0, 'the': 4.0, 'a': 1.0, 'we': 2.0, 't': 1.0, 'is': 2.0, 'husband': 1.0, 'pack': 1.0, 'said': 1.0, 'itself': 1.0, 'have': 1.0, 'easy': 1.0, 'which': 1.0, 'table': 1.0, 'this': 2.0, 'remove': 1.0, 'it': 4.0, 'up': 2.0, 'pleased': 1.0, 'set': 1.0, 'play': 1.0, 'and': 5.0, 'very': 2.0, 'changing': 1.0, 'all': 2.0, 'to': 5.0, 'as': 1.0, 'through': 1.0, 'took': 1.0, '45': 1.0, 'about': 1.0, 'removed': 1.0, 'recommend': 1.0, 'minutes': 1.0, 'others': 1.0, 'not': 2.0, 'but': 1.0, 'bit': 2.0, 'time': 1.0, 'am': 1.0, 'when': 1.0, 'easily': 1.0, 'you': 2.0}
Word element => {'friend': 1.0, 'to': 1.0, 'this': 1.0, 'definitely': 1.0, 'would': 1.0, 's': 1.0, 'perfect': 1.0, 'but': 1.0, 'otherwise': 1.0, 'ass': 1.0, 'a': 2.0, 'are': 1.0, 'the': 1.0, 'love': 1.0, 'it': 2.0, 'lots': 1.0, 'recommend': 1.0, 'of': 1.0, 'i': 1.0, 'directions': 1.0, 'storage': 1.0, 'pain': 1.0, 'in': 1.0}
Word element => {'supportive': 1.0, 'soft': 1.0, 'very': 1.0, 'is': 1.0, 'while': 1.0, 'may': 1.0, 'play': 1.0, 'it': 1.0, 'this': 1.0, 'too': 1.0, 'compartments': 1.0, 'under': 1.0, 'the': 2.0, 'great': 1.0, 'blankys': 1.0, 'i': 1.0, 'and': 3.0, 'wipes': 1.0, 'need': 1.0, 'yard': 1.0, 'your': 1.0, 'they': 1.0, 're': 1.0, 'in': 1.0, 'perfect': 1.0, 'quality': 1.0, 'diapers': 1.0, 'storing': 1.0, 'clothes': 1.0, 'napper': 1.0, 'one': 1.0, 'for': 2.0, 'love': 1.0, 'whatever': 1.0, 'little': 1.0}
Word element => {'t': 1.0, 'napper': 1.0, 'and': 3.0, 'vibration': 1.0, 'combination': 1.0, 'is': 3.0, 'about': 1.0, 'baby': 1.0, 'took': 1.0, '45': 1.0, 'touch': 1.0, 'so': 1.0, 'minutes': 1.0, 'the': 4.0, 'purchase': 1.0, 'my': 1.0, 'color': 1.0, 'end': 1.0, 'amazing': 2.0, 'for': 1.0, 'lights': 1.0, 'assemble': 1.0, 'neutral': 1.0, 'this': 2.0, 'perfect': 1.0, 'seems': 1.0, 'will': 1.0, 'an': 1.0, 'true': 1.0, 'regret': 1.0, 'be': 1.0, 'test': 1.0, 'gets': 1.0, 'it': 2.0, 'she': 1.0, 'our': 1.0, 'to': 2.0, 'sleep': 1.0, 'on': 1.0, 'husband': 1.0, 'overall': 1.0, 'girl': 1.0, 'sturdy': 1.0, 'won': 1.0, 'well': 1.0, 'result': 1.0, 'made': 1.0, 'but': 2.0, 'music': 1.0, 'when': 1.0, 'you': 1.0}
Word element => {'sheets': 1.0, 'extra': 1.0, 'store': 2.0, 'pops': 1.0, 'ease': 1.0, 'disassemble': 1.0, 'buttons': 1.0, 'silver': 1.0, 'screwdriver': 1.0, 'help': 1.0, 'while': 1.0, 'it': 3.0, 'already': 1.0, 'about': 1.0, 'off': 2.0, 'spot': 1.0, 'daytime': 1.0, 'now': 1.0, 'old': 2.0, 'fold': 1.0, 'love': 1.0, 'absolutely': 1.0, 'but': 2.0, 'forward': 1.0, 'not': 1.0, 'want': 1.0, 'pita': 1.0, 'real': 1.0, 'heard': 1.0, 'have': 2.0, 'since': 2.0, 'size': 1.0, 'currently': 1.0, 'place': 1.0, 'also': 2.0, 'clothing': 2.0, 'my': 5.0, 'underneath': 2.0, 'trick': 1.0, '2': 1.0, 'wearing': 1.0, 'normally': 1.0, 'felt': 1.0, 'though': 1.0, 'little': 1.0, 'when': 5.0, 'can': 1.0, 'so': 1.0, 'able': 1.0, 'push': 1.0, 'you': 2.0, 'night': 1.0, 'helping': 1.0, 'as': 5.0, 'nanny': 1.0, 'use': 3.0, 'her': 9.0, 'down': 2.0, 'changer': 1.0, 'several': 1.0, 'or': 1.0, 'struggle': 1.0, 'convenient': 1.0, 'with': 5.0, 'a': 8.0, 't': 1.0, 'them': 3.0, 'has': 1.0, 'next': 2.0, 'p': 10.0, 'in': 7.0, 'she': 3.0, 'many': 1.0, 'just': 2.0, 'know': 1.0, 'they': 1.0, 'aren': 1.0, 'sleeping': 1.0, 'looking': 1.0, 'using': 1.0, 'children': 1.0, 'this': 10.0, 'doing': 1.0, 'of': 4.0, 'the': 18.0, 'vacation': 1.0, 'apart': 1.0, 'wake': 1.0, 'reach': 1.0, 'for': 4.0, 'one': 2.0, 'parents': 2.0, 'napper': 7.0, 'items': 1.0, 'getting': 1.0, 'and': 11.0, 'months': 2.0, 'get': 2.0, 'used': 1.0, 'dresser': 1.0, 'helpful': 1.0, 'had': 3.0, 'are': 1.0, 'like': 2.0, 'care': 1.0, 'daughter': 3.0, 'update': 1.0, 'amount': 1.0, 'on': 2.0, 'changing': 4.0, 'put': 2.0, 'laying': 1.0, 'bed': 2.0, 'would': 1.0, 'middle': 1.0, 'storage': 2.0, 'took': 1.0, 'feed': 1.0, 'd': 1.0, 'best': 1.0, 'over': 1.0, 'change': 1.0, 'up': 2.0, 'endless': 1.0, 'bitties': 1.0, 'grab': 1.0, 'i': 16.0, 'well': 1.0, 'putting': 1.0, 'take': 1.0, 'we': 2.0, 'then': 2.0, 'back': 1.0, 'were': 2.0, 'done': 1.0, 'to': 10.0, 'bassinet': 3.0, 'regular': 1.0, 'who': 1.0, 'is': 8.0, 'at': 1.0, 'rid': 1.0, 'crib': 1.0, 'table': 4.0, 'right': 2.0, 'incline': 1.0, 'away': 1.0, 'comfortable': 1.0, 'transitioned': 1.0, 'great': 1.0, 'nap': 1.0, '5': 2.0, 'vs': 1.0, 'flat': 2.0, 'that': 1.0, 'because': 1.0, 'choking': 1.0, 'was': 3.0, 'all': 1.0, 'an': 2.0, 'spit': 1.0}
Word element => {'must': 1.0, 'basket': 1.0, 'that': 4.0, 'babies': 1.0, 'changing': 1.0, 'big': 2.0, 'reflux': 1.0, 'easy': 1.0, 'baby': 2.0, 'like': 1.0, 'table': 1.0, 'crib': 1.0, 'lockable': 1.0, 'get': 1.0, 'months': 1.0, 'bought': 1.0, 'just': 1.0, 'a': 5.0, 'bedding': 1.0, 'having': 1.0, 'mess': 1.0, 'nice': 1.0, 'two': 2.0, 'has': 1.0, 'have': 5.0, 'zipper': 1.0, 'room': 2.0, 'before': 1.0, 'the': 2.0, 'of': 1.0, 'those': 1.0, 'third': 1.0, 'out': 1.0, 'newborn': 1.0, 'one': 3.0, 'happy': 1.0, 'miserable': 1.0, 'my': 9.0, 'mostly': 1.0, 'underneath': 1.0, 'am': 3.0, 'about': 1.0, 'shelves': 1.0, 'colic': 1.0, 'thing': 1.0, 'organized': 1.0, 'so': 2.0, 'and': 8.0, 'our': 1.0, 'in': 4.0, 'seat': 2.0, 'clothes': 1.0, 'was': 2.0, 'we': 1.0, 'moving': 1.0, 'hated': 1.0, 'vibrates': 1.0, 'diapers': 1.0, 'bad': 1.0, 'first': 2.0, 'few': 1.0, 'this': 5.0, 'kids': 1.0, 'with': 1.0, 'to': 10.0, 'bassinet': 3.0, 'used': 1.0, 'for': 2.0, 'where': 1.0, 'love': 1.0, 'often': 1.0, 'under': 1.0, 'old': 1.0, 'bouncy': 2.0, 'changed': 1.0, 'swing': 2.0, 'on': 1.0, 'bed': 1.0, 'had': 3.0, 'accidents': 1.0, 'wash': 1.0, 'anyway': 1.0, 'definite': 1.0, 'is': 2.0, 'soooooo': 1.0, 'keep': 1.0, 'napper': 1.0, 'acid': 1.0, 'they': 1.0, 'i': 12.0, 'slept': 1.0, 'or': 1.0, 'way': 1.0, 'blankets': 1.0, 'able': 1.0, 'sell': 1.0, 'all': 1.0, 'an': 1.0}
Word element => {'house': 1.0, 'car': 1.0, 'from': 1.0, 'bulky': 1.0, 'heavy': 1.0, 'this': 2.0, 'it': 3.0, 'do': 1.0, 'and': 6.0, 'shopped': 1.0, 'online': 1.0, 'did': 1.0, 'walmart': 1.0, 'target': 1.0, 'etc': 1.0, 'i': 2.0, 'baby': 2.0, 'most': 1.0, 'my': 1.0, 'purchase': 1.0, 'got': 1.0, 'free': 1.0, 'delivered': 1.0, 'a': 2.0, 'bought': 1.0, 'gift': 1.0, 'carry': 2.0, 'at': 1.0, 'shower': 1.0, 'of': 1.0, 'stores': 3.0, 'loved': 1.0, 'through': 1.0, 'me': 1.0, 'not': 2.0, 'item': 2.0, 'in': 1.0, 'you': 1.0, 'directly': 1.0, 'have': 2.0, 'to': 6.0, 'store': 1.0, 'was': 1.0, 'pay': 1.0, 'shipping': 2.0, 'best': 1.0, 'cost': 1.0, 'the': 6.0, 'deal': 1.0, 'amazon': 1.0, 'around': 1.0, 'is': 1.0, 'for': 1.0, 'com': 1.0, 'that': 1.0}
Word element => {'clothes': 1.0, 'blankets': 1.0, 'diapers': 1.0, 'storing': 1.0, 'so': 1.0, 'in': 1.0, 'daughter': 1.0, 'months': 1.0, 'play': 1.0, 'come': 1.0, 'this': 2.0, 'my': 1.0, 'great': 1.0, 'the': 1.0, 'and': 3.0, 'since': 1.0, 'born': 1.0, 'have': 1.0, 'pack': 1.0, 'i': 1.0, 'is': 2.0, 'traveling': 1.0, 'handy': 1.0, 'seven': 1.0, 'been': 1.0, 'she': 1.0, 'for': 2.0, 'using': 1.0, 'now': 1.0, 'was': 1.0, 'shelves': 1.0}
Word element => {'it': 1.0, 'out': 1.0, 'use': 1.0, 'of': 2.0, 'cute': 1.0, 'and': 1.0, 'nice': 1.0, 'will': 1.0, 'she': 1.0, 'baby': 1.0, 'gift': 1.0, 'lot': 1.0, 'get': 1.0, 'different': 1.0, 'print': 1.0, 'for': 1.0, 'first': 1.0, 'a': 2.0, 'friend': 1.0, 'the': 1.0, 'is': 1.0, 's': 1.0}
Word element => {'without': 1.0, 'could': 1.0, 'or': 1.0, 'infant': 1.0, 'has': 1.0, 'who': 1.0, 'live': 1.0, 'how': 1.0, 'don': 1.0, 'as': 1.0, 'gets': 1.0, 'away': 1.0, 'and': 1.0, '30': 1.0, 'thigs': 1.0, 'i': 3.0, 'one': 2.0, 'a': 1.0, 'since': 1.0, 'toddler': 1.0, 'an': 1.0, 'put': 1.0, 'hat': 1.0, 'easy': 1.0, 'certainly': 1.0, 'thing': 1.0, 'have': 3.0, 'know': 1.0, 'just': 1.0, 'seconds': 1.0, 'gived': 1.0, 'wouldn': 1.0, 'parent': 1.0, 'this': 1.0, 'was': 1.0, 'to': 1.0, 'up': 1.0, 'of': 2.0, 't': 2.0, 'these': 2.0, 'around': 1.0, 'literally': 1.0, 'changed': 1.0, 'is': 1.0, 'anyone': 1.0, 'in': 1.0}
Word element => {'kind': 1.0, 'being': 1.0, 'much': 1.0, 'napper': 1.0, 'recommend': 1.0, 'really': 1.0, 'of': 1.0, 'like': 1.0, 'and': 1.0, 'item': 1.0, 'nicer': 1.0, 'this': 1.0, 'included': 1.0, 'especially': 1.0, 'others': 1.0, 'would': 1.0, 'to': 1.0, 'its': 1.0, 'was': 1.0, 'also': 1.0, 'price': 1.0, 'compared': 1.0, 'the': 1.0, 'great': 1.0}
Word element => {'is': 1.0, 'that': 1.0, 'love': 1.0, 'tugs': 1.0, 'few': 1.0, 'a': 1.0, 'if': 1.0, 'together': 1.0, 'washable': 1.0, 'changer': 2.0, 'momentarily': 1.0, 'the': 1.0, 'you': 1.0, 'bassinet': 1.0, 'with': 1.0, 'advertised': 1.0, 'only': 1.0, 'and': 1.0, 'to': 1.0, 'read': 1.0, 'easy': 1.0, 'put': 1.0, 'but': 1.0, 'works': 1.0, 'can': 1.0, 'as': 1.0, 'stick': 1.0, 'sometimes': 1.0, 'turns': 1.0, 'instructions': 1.0, 'over': 1.0}
Word element => {'be': 1.0, 'must': 2.0, 'whole': 1.0, 'this': 2.0, 'with': 1.0, 'but': 2.0, 'holiday': 1.0, 'did': 1.0, 'own': 1.0, 'slept': 1.0, 'parts': 1.0, 'napper': 1.0, 'love': 1.0, 'for': 1.0, 'the': 2.0, 'comfortable': 1.0, 'great': 2.0, 'yet': 1.0, 'or': 1.0, 'i': 2.0, 'changer': 1.0, 'later': 1.0, 'put': 1.0, 'on': 2.0, 'won': 1.0, 'use': 2.0, 'room': 1.0, 'time': 1.0, 'bit': 1.0, 'so': 2.0, 't': 2.0, 'a': 2.0, 'we': 2.0, 'got': 1.0, 'didn': 1.0, 'just': 2.0, 'sleep': 1.0, 'all': 1.0, 'to': 1.0, 'is': 1.0, 'look': 1.0, 'fine': 1.0, 'and': 3.0, 'my': 1.0, 'bassinet': 1.0, 'anywhere': 1.0, 'went': 1.0, 'together': 1.0, 'daughter': 1.0, 'her': 1.0, 'it': 4.0, 'looks': 1.0, 'she': 2.0}
Word element => {'adults': 1.0, 'not': 1.0, 'baby': 1.0, 'viewed': 1.0, 'be': 1.0, 'designed': 1.0, 'mobile': 1.0, 'very': 1.0, 'works': 1.0, 'do': 1.0, 'and': 2.0, 'in': 2.0, 'for': 2.0, 'she': 1.0, 'by': 2.0, 'when': 1.0, 'i': 3.0, 'is': 1.0, 'live': 1.0, 'to': 1.0, 'colorful': 1.0, 'granddaughter': 1.0, 'was': 2.0, 'my': 2.0, 'small': 2.0, 'more': 1.0, 'the': 3.0, 'this': 2.0, 'purchased': 1.0, 'care': 1.0, 'well': 1.0, 'since': 1.0, 'a': 1.0, 'apartment': 1.0, 'size': 1.0, 'of': 1.0, 'wish': 1.0, 'important': 1.0, 'new': 1.0, 'especially': 1.0}
Word element => {'lol': 1.0, 'sexy': 1.0, 'grown': 1.0, 'the': 1.0, 'as': 1.0, 'in': 1.0, 'love': 1.0, 'for': 1.0, 'that': 1.0, 'something': 1.0, 'and': 3.0, 'just': 1.0, 'chandelier': 1.0, 'consider': 1.0, 'looking': 1.0, 'light': 1.0, 'did': 1.0, 'with': 1.0, 'it': 1.0, 'this': 2.0, 'fell': 1.0, 'purchased': 1.0, 'i': 3.0, 'now': 1.0, 'to': 1.0, 'was': 1.0, 'immediately': 1.0, 'up': 1.0, 'spruce': 1.0, 'my': 2.0, 'guest': 2.0, 'room': 2.0, 'bedroom': 1.0}
Word element => {'mount': 1.0, 'to': 2.0, 'ability': 1.0, 'the': 2.0, 'a': 1.0, 'hardwire': 1.0, 'puts': 1.0, 'daughter': 1.0, 'with': 1.0, 'it': 3.0, 'we': 1.0, 'without': 1.0, 'looking': 1.0, 'were': 1.0, 'that': 1.0, 'light': 1.0, 'came': 1.0, 'what': 1.0, 'amount': 1.0, 'of': 1.0, 'really': 1.0, 'just': 1.0, 'ceiling': 1.0, 'being': 1.0, 'for': 1.0, 'liked': 1.0, 'overbearing': 1.0, 'off': 1.0, 'good': 1.0, 'loves': 1.0}
Word element => {'center': 1.0, 'of': 1.0, 'completely': 1.0, 's': 1.0, 'looking': 1.0, 'what': 1.0, 'hangs': 1.0, 'because': 1.0, 'be': 1.0, 'handy': 1.0, 'how': 1.0, 'home': 1.0, 'to': 1.0, 'husband': 1.0, 'was': 3.0, 'out': 1.0, 'lamp': 2.0, 'installed': 1.0, 'side': 1.0, 'is': 2.0, 'but': 2.0, 'defective': 1.0, 'the': 2.0, 'unfortunately': 1.0, 'my': 2.0, 'for': 1.0, 'one': 2.0, 'love': 1.0, 'absolutely': 1.0, 'this': 1.0, 'with': 1.0, 'it': 3.0, 'must': 1.0, 'very': 2.0, 'and': 1.0, 'whole': 1.0, 'i': 3.0, 'unbalanced': 1.0, 'disappointed': 1.0, 'in': 1.0, 'once': 1.0, 'have': 1.0, 'several': 1.0, 'chandeliers': 1.0}
Word element => {'this': 1.0, 'buy': 1.0, 'if': 1.0, 'ton': 1.0, 'produce': 1.0, 'loves': 1.0, 'have': 1.0, 'fixture': 1.0, 'a': 1.0, 'make': 1.0, 't': 1.0, 'the': 1.0, 'more': 1.0, 'little': 1.0, 'its': 1.0, 'our': 1.0, 'girl': 1.0, 'light': 2.0, 'doesn': 1.0, 'but': 1.0, 'very': 1.0, 'fun': 1.0, 'you': 2.0, 'sure': 1.0, 'of': 1.0, 'fixtures': 1.0}
Word element => {'manly': 1.0, 'both': 1.0, 'that': 1.0, 'a': 1.0, 'touch': 1.0, 'good': 1.0, 'medium': 1.0, 'have': 1.0, 'master': 1.0, 'hung': 1.0, 'just': 1.0, 'large': 1.0, 'light': 2.0, 'fem': 1.0, 'amount': 1.0, 'right': 1.0, 'the': 2.0, 'red': 1.0, 'not': 2.0, 'give': 1.0, 'glaring': 1.0, 'side': 2.0, 'more': 1.0, 'is': 3.0, 'i': 5.0, 'bed': 1.0, 'love': 2.0, 'and': 5.0, 'do': 1.0, 'each': 1.0, 'bedroom': 1.0, 'room': 2.0, 'of': 2.0, 'they': 3.0, 'bordello': 2.0, 'said': 1.0, 'in': 1.0, 'soft': 1.0, 'perfect': 2.0, 'ish': 1.0, 'like': 1.0, 'western': 1.0, 'as': 1.0, 'our': 4.0, 'to': 3.0, 'are': 3.0, 'others': 1.0, 'these': 1.0, 'bedspread': 1.0, 'girly': 1.0, 'oversized': 1.0, 'wood': 1.0, 'them': 2.0, 'easy': 1.0, 'one': 1.0, 'hang': 1.0, 'on': 1.0, 'furniture': 1.0, 'think': 2.0}
Word element => {'it': 1.0, 'love': 1.0}
Word element => {'little': 1.0, 'more': 1.0, 'the': 3.0, 'crystal': 1.0, 'are': 1.0, 'was': 1.0, 'lamp': 1.0, 'thought': 1.0, 'perfect': 1.0, 'i': 1.0, 'beautiful': 2.0, 'is': 3.0, 'roof': 1.0, 'this': 1.0, 'but': 1.0, 'quality': 1.0, 'and': 1.0, 'good': 1.0, 'of': 1.0, 'daughter': 1.0, 'acrilyc': 1.0, 'my': 1.0, 'color': 1.0, 'for': 1.0}
Word element => {'mounting': 1.0, 'existing': 1.0, 'table': 1.0, 'breakfast': 1.0, 'as': 1.0, 'hanging': 1.0, 'and': 1.0, 'sparkle': 1.0, 'our': 1.0, 'over': 1.0, 'enough': 1.0, 'beautiful': 1.0, 'plugged': 1.0, 'or': 1.0, 'looks': 1.0, 'to': 2.0, 'be': 1.0, 'an': 1.0, 'brighten': 1.0, 'just': 1.0, 'wired': 1.0, 'the': 1.0, 'black': 1.0, 'can': 1.0, 'in': 2.0}
Word element => {'hardwiring': 1.0, 'for': 2.0, 'sets': 1.0, 'although': 1.0, 'something': 1.0, 'plug': 2.0, 'needed': 1.0, 'i': 2.0, 'too': 1.0, 'not': 1.0, 'weight': 1.0, 'of': 1.0, 'beads': 1.0, 'wire': 1.0, 's': 2.0, 'wait': 1.0, 'can': 2.0, '1': 2.0, 'and': 4.0, 'perfectly': 1.0, 'install': 1.0, 'looks': 1.0, 'made': 1.0, 'my': 1.0, 'well': 1.0, 'black': 2.0, '2': 1.0, 'heavy': 1.0, 't': 1.0, 'ceiling': 1.0, 'beautiful': 1.0, 'hardware': 1.0, 'comes': 1.0, 'to': 1.0, 'matches': 1.0, 'd': 1.0, 'in': 3.0, 'medium': 1.0, 'eacute': 1.0, 'it': 5.0, 'with': 2.0, 'cor': 1.0, 'all': 1.0, 'but': 1.0, 'chains': 1.0}
Word element => {'too': 1.0, 'her': 1.0, 'light': 1.0, 'enough': 1.0, 'adds': 1.0, 'it': 1.0, 's': 1.0, 'this': 1.0, 'room': 2.0, 'paris': 1.0, 'is': 1.0, 'themed': 1.0, 'beautiful': 1.0, 'and': 1.0, 'my': 1.0, 'was': 1.0, 'easy': 1.0, 'to': 1.0, 'hang': 1.0, 'for': 1.0, 'in': 1.0, 'daughter': 1.0}
Word element => {'size': 1.0, 'easy': 1.0, 'perfect': 1.0, 'its': 1.0, 'everyone': 1.0, 'install': 1.0, 'from': 1.0, 'in': 1.0, 'to': 1.0, 'remodeled': 1.0, 'my': 2.0, 'compliments': 1.0, 'get': 1.0, 'bathroom': 2.0, 'i': 2.0, 'beautiful': 1.0, 'this': 1.0, 'chandelier': 1.0, 'is': 1.0, 'such': 1.0, 'a': 1.0, 'piece': 1.0}
Word element => {'bright': 1.0, 'perfect': 1.0, 'is': 2.0, 'sparkles': 1.0, 'and': 2.0, 'white': 1.0, 'nursery': 1.0, 's': 1.0, 'this': 1.0, 'exactly': 1.0, 'was': 1.0, 'expected': 1.0, 'what': 1.0, 'i': 1.0, 'it': 2.0, 'bought': 1.0, 'my': 1.0, 'for': 1.0, 'daughter': 1.0}
Word element => {'powder': 1.0, 'perfect': 1.0, 'in': 1.0, 'could': 1.0, 'for': 1.0, 'my': 1.0, '3': 1.0, 'or': 1.0, 'your': 1.0, 'yr': 1.0, 'teens': 1.0, 'special': 1.0, 'olds': 1.0, 'work': 1.0, 'not': 1.0, 'also': 1.0, 'typical': 1.0, 'room': 4.0, 'toddlers': 1.0}
Word element => {'older': 1.0, 'that': 1.0, 'house': 1.0, 'think': 1.0, 'but': 1.0, 'have': 1.0, 'this': 1.0, 'with': 1.0, 'is': 1.0, 'a': 1.0, 'fabulous': 1.0, 'i': 3.0, 'love': 1.0, 'it': 2.0, 'was': 2.0, 'wiring': 1.0, 'difficult': 1.0, 'because': 1.0, 'hardware': 1.0, 'little': 1.0, 'old': 1.0, 'an': 1.0, 'to': 1.0}
Word element => {'great': 1.0, 'piece': 1.0, 'not': 1.0, 'well': 1.0, 'overlook': 1.0, 'happy': 1.0, 'quite': 1.0, 'm': 1.0, 'price': 1.0, 'know': 1.0, 'beads': 1.0, 'keep': 1.0, 'rods': 1.0, 'winds': 1.0, 'wire': 1.0, 'see': 1.0, 'also': 1.0, 'can': 1.0, 'opposed': 1.0, 'bulb': 1.0, 'middle': 1.0, 'under': 2.0, 'polished': 1.0, 'side': 1.0, 'one': 1.0, 'hard': 1.0, 'it': 8.0, 'beveled': 1.0, 'otherwise': 1.0, 'i': 3.0, 'needed': 1.0, 'had': 2.0, 'creates': 1.0, 'much': 1.0, 'such': 1.0, 'given': 2.0, 'place': 1.0, 'the': 12.0, 'oomph': 1.0, 'e12': 1.0, 'right': 1.0, 'look': 1.0, 'replaced': 1.0, 'product': 1.0, 'effect': 1.0, 'actually': 1.0, 'chandelier': 1.0, 'wired': 1.0, 'of': 1.0, 'understated': 1.0, 'fact': 1.0, 'bathroom': 1.0, 'put': 1.0, 'and': 4.0, 'suit': 1.0, 'in': 4.0, 'unless': 1.0, 'you': 3.0, 'as': 2.0, 'to': 7.0, 'our': 1.0, 'that': 3.0, 'voltage': 2.0, 'finished': 1.0, 'around': 1.0, 'fall': 1.0, 'is': 1.0, 'pedantic': 1.0, 'drops': 2.0, '240': 1.0, 'enough': 1.0, 'very': 2.0, 'ceiling': 1.0, 'volts': 1.0, 'obviously': 1.0, 'have': 1.0, 'crystal': 1.0, 'bulbs': 1.0, 'get': 1.0, 'closely': 1.0, 'each': 1.0, 'would': 1.0, 'cute': 1.0, 'nt': 1.0, 'a': 3.0, 's': 2.0, 'notice': 1.0}
Word element => {'still': 1.0, 'her': 1.0, 'do': 1.0, 'mom': 1.0, 'simple': 1.0, 'which': 1.0, 'wall': 1.0, 'you': 1.0, 'if': 1.0, 'chain': 1.0, 'cord': 1.0, 'huge': 1.0, 'with': 1.0, 'choose': 1.0, 'does': 1.0, 'effort': 1.0, 'person': 1.0, 'definitely': 1.0, 'extra': 1.0, 'plug': 1.0, 'worth': 1.0, 'is': 1.0, 'completely': 1.0, 'it': 4.0, 'get': 1.0, 'did': 1.0, 'general': 1.0, 'would': 1.0, 'each': 1.0, '1': 1.0, 'nice': 1.0, 'wrapped': 1.0, 'large': 1.0, 'other': 1.0, 'bling': 1.0, 'ineptness': 1.0, 'enough': 2.0, 'focal': 1.0, 'on': 1.0, 'your': 1.0, '2': 1.0, 'but': 2.0, 'electricity': 1.0, 'trendy': 1.0, 'in': 2.0, 'be': 2.0, 'our': 1.0, 'to': 4.0, 'recommend': 1.0, 'was': 2.0, 'hardwired': 1.0, '10x12': 1.0, 'room': 2.0, 'own': 1.0, 'finally': 1.0, '15yrs': 1.0, 'not': 1.0, 'me': 1.0, 'come': 1.0, 'face': 1.0, 'and': 6.0, 'too': 1.0, 'for': 3.0, 'old': 1.0, 'point': 1.0, 'problems': 1.0, 'a': 7.0, 'we': 2.0, 'perfect': 1.0, 'this': 2.0, 'job': 1.0, 'the': 4.0, 'hr': 1.0, 'connection': 1.0, 'there': 1.0, 'of': 1.0, 'used': 1.0, 'highly': 1.0, 'existing': 1.0, 'hubby': 1.0, 'small': 1.0, 'have': 1.0, 'above': 1.0, 'cursing': 1.0, 'into': 1.0, 'that': 1.0, 'otherwise': 1.0, 'mess': 1.0, 'fan': 1.0, '4': 1.0, 'at': 1.0}
Word element => {'still': 1.0, 'transparent': 1.0, 'almost': 1.0, 'side': 2.0, 'will': 1.0, 'pink': 3.0, 'i': 1.0, 'picture': 1.0, 'at': 1.0, 'looking': 1.0, 'though': 1.0, 'one': 1.0, 'but': 2.0, 'room': 1.0, 'daughter': 1.0, 'difference': 1.0, 'trouble': 1.0, 'like': 2.0, 'know': 1.0, 'much': 1.0, 'do': 1.0, 'you': 2.0, 'fine': 1.0, 'light': 1.0, 'just': 1.0, 'cute': 1.0, 'after': 1.0, 'enclosed': 1.0, 'full': 1.0, 'packed': 1.0, 'hot': 1.0, 'well': 1.0, 'nice': 1.0, 'install': 1.0, 'to': 3.0, 'salmon': 1.0, 'thought': 1.0, 'had': 2.0, 'husband': 1.0, 'easy': 1.0, 'wrap': 1.0, 'the': 9.0, 'if': 2.0, 'never': 1.0, 'substitute': 1.0, 'rather': 1.0, 'of': 3.0, 'thing': 1.0, 'no': 1.0, 'tape': 1.0, 'arrived': 1.0, 'intense': 1.0, 'bolt': 2.0, 'white': 1.0, 's': 1.0, 'notice': 1.0, 'a': 7.0, 'we': 2.0, 'could': 1.0, 'in': 3.0, 'would': 2.0, 'have': 1.0, 'looks': 1.0, 'it': 3.0, 'size': 1.0, 'princess': 1.0, 'not': 2.0, 'electrical': 1.0, 'on': 3.0, 'was': 3.0, 'unfortunately': 1.0, 'my': 2.0, 'little': 1.0, 'ceiling': 1.0, 'very': 4.0, 'shallow': 1.0, 'and': 3.0, 'too': 2.0, 'long': 1.0, 'looked': 1.0, 'part': 1.0, 'time': 1.0, 'so': 1.0, 'is': 1.0, 'more': 1.0, 'around': 1.0, 'been': 1.0, 'box': 2.0, 'that': 3.0, 'chandelier': 2.0, 'supposed': 1.0, 'be': 2.0}
Word element => {'bigger': 1.0, 'bit': 1.0, 'tad': 1.0, 'a': 1.0, 'very': 1.0, 'wasnt': 1.0, 'up': 1.0, 'nice': 1.0, 'do': 1.0, 'daughters': 1.0, 'i': 1.0, 'in': 1.0, 'wish': 1.0, 'my': 1.0, 'size': 1.0, 'nursery': 1.0, 'chic': 1.0, 'looks': 1.0, 'really': 1.0, 'good': 1.0, 'put': 1.0, 'but': 1.0, 'this': 1.0, 'hard': 1.0, 'it': 1.0, 'to': 1.0, 'was': 1.0}
Word element => {'up': 1.0, 'got': 1.0, 'our': 1.0, 'looks': 1.0, 'but': 1.0, 'made': 1.0, 'consuming': 1.0, 'plug': 1.0, 'a': 1.0, 'in': 1.0, 'could': 1.0, 'be': 1.0, 'had': 1.0, 'to': 2.0, 'chandelier': 1.0, 'once': 1.0, 'expect': 1.0, 'i': 1.0, 'didn': 1.0, 'it': 5.0, 'so': 2.0, 'we': 3.0, 'and': 2.0, 'cut': 1.0, 'install': 1.0, 'into': 1.0, 'great': 1.0, 't': 1.0, 'the': 1.0, 'adjustments': 1.0, 'ceiling': 1.0, 'adjust': 1.0, 'time': 1.0}
Word element => {'nicely': 1.0, 'shine': 1.0, 'small': 1.0, 'much': 1.0, 'not': 1.0, 'in': 1.0, 'return': 1.0, 'is': 3.0, 'see': 1.0, 'ceiling': 1.0, 'missing': 1.0, 'broken': 2.0, 'check': 1.0, 'you': 2.0, 'sure': 1.0, 'make': 1.0, 'just': 2.0, 'because': 1.0, 'sized': 1.0, 'this': 2.0, 'it': 6.0, 'came': 2.0, 'pieces': 1.0, 'black': 1.0, 'ahead': 1.0, 'cant': 1.0, 'one': 1.0, 'love': 1.0, 'chandelier': 1.0, 'for': 3.0, 'i': 4.0, 'perfectly': 1.0, 'my': 1.0, 'bedroom': 2.0, 'went': 1.0, 'painted': 1.0, 'some': 1.0, 'a': 2.0, 'remodeled': 1.0, 'glad': 1.0, 'something': 1.0, 'would': 1.0, 'hesitant': 1.0, 'suck': 1.0, 'reviews': 1.0, 'nice': 1.0, 'everywhere': 1.0, 'beautiful': 1.0, 'was': 2.0, 'our': 1.0, 'as': 1.0, 'any': 1.0, 'to': 3.0, 'person': 1.0, 'hardwire': 1.0, 'looking': 1.0, 'of': 1.0, 'reading': 1.0, 'the': 3.0, 'across': 1.0, 'and': 8.0, 'too': 2.0, 'good': 1.0, 'be': 1.0, 'true': 1.0, 'im': 1.0, '34': 2.0, 'price': 1.0, 'jewels': 1.0, 'but': 1.0, 'after': 1.0, 'bit': 1.0, 'so': 2.0, 'packaged': 1.0, 'ordered': 1.0, 'did': 1.0}
Word element => {'it': 1.0, 'this': 1.0, 'gotten': 1.0, 'crystorama': 1.0, 'williams': 1.0, 'from': 2.0, 'french': 1.0, 'light': 1.0, 'so': 1.0, 'walls': 1.0, 'but': 1.0, 'trouble': 1.0, 'damaged': 1.0, 'the': 7.0, 'put': 3.0, 'on': 1.0, 'overstock': 1.0, 'with': 1.0, 'room': 1.0, 'some': 1.0, 'cottagey': 2.0, 'gray': 1.0, 'painted': 2.0, 'girls': 1.0, 'had': 1.0, 'mine': 2.0, 'young': 1.0, 'sconces': 1.0, 'a': 3.0, 'amazon': 1.0, 'crystals': 1.0, 'they': 1.0, 'wall': 1.0, 'about': 1.0, 'great': 1.0, 'feel': 1.0, 'i': 1.0, 'took': 1.0, '48': 1.0, 'was': 1.0, 'beautiful': 2.0, 'or': 1.0, 'fabulous': 1.0, 'and': 4.0, 'issue': 1.0, 'in': 1.0, 'promptly': 1.0, 'cabinets': 1.0, 'care': 1.0, 'love': 1.0, 'for': 2.0, 'chandelier': 2.0, 'actually': 1.0, 'of': 1.0, 'company': 1.0, 'bathroom': 1.0, 'up': 2.0, 'price': 1.0, '34': 1.0, 'white': 2.0, 'wainscotting': 1.0, 'sherwin': 1.0, 'high': 1.0, 'all': 1.0, 'trim': 1.0}
Word element => {'we': 1.0, 'beautiful': 1.0, 'is': 1.0, 'love': 1.0, 'it': 2.0, 'bedroom': 1.0, 'not': 2.0, 'big': 1.0, 'the': 1.0, 'small': 1.0, 'just': 1.0, 'to': 2.0, 'right': 1.0, 'size': 1.0, 'bought': 1.0, 'this': 1.0, 'for': 1.0}
Word element => {'install': 1.0, 'to': 1.0, 'came': 1.0, 'light': 1.0, 'plenty': 1.0, 'with': 1.0, 'room': 1.0, 'everything': 2.0, 'we': 2.0, 'expected': 1.0, 'daughters': 1.0, 'needed': 1.0, 'looks': 1.0, 'great': 1.0, 'our': 1.0, 'and': 1.0, 'in': 1.0, 'of': 2.0, 'produces': 1.0}
Word element => {'cool': 1.0, 'over': 1.0, 'garage': 1.0, 'the': 1.0, 'look': 1.0, 'well': 1.0, 'my': 2.0, 'went': 1.0, 'really': 1.0, 'this': 1.0, 'press': 1.0, 'light': 2.0, 'and': 1.0, 'like': 1.0, 'i': 3.0, 'm': 1.0, 'when': 1.0, 'feel': 1.0, 'perfect': 1.0, 'drill': 1.0, 'in': 1.0, 'somewhere': 1.0, 'else': 1.0, 'at': 1.0}
Word element => {'loves': 1.0, 'so': 1.0, 'elegant': 1.0, 'little': 2.0, 'my': 1.0, 'the': 1.0, 'a': 1.0, 'love': 1.0, 'absolutely': 1.0, 'issue': 1.0, 'it': 5.0, 'we': 1.0, 'makes': 1.0, 'installing': 1.0, 'but': 1.0, 'perfect': 1.0, 'chandelier': 1.0, 'just': 1.0, 'once': 1.0, 'everyone': 1.0, 'look': 1.0, 'had': 1.0, 'husband': 1.0, 'was': 2.0, 'up': 1.0, 'our': 1.0, 'girls': 1.0, 'room': 1.0}
Word element => {'anyone': 1.0, 'to': 2.0, 'of': 1.0, 'guest': 1.0, 'rooms': 1.0, 'my': 1.0, 'happy': 1.0, '16': 1.0, 'it': 1.0, 'with': 1.0, 'this': 2.0, 'am': 1.0, 'victorian': 1.0, 'westinghouse': 1.0, 'one': 1.0, 'i': 4.0, 'not': 1.0, 'just': 1.0, 'medallion': 1.0, '77028': 1.0, 's': 2.0, 'a': 2.0, 'in': 1.0, 'girl': 1.0, 'install': 1.0, 'put': 1.0, 'rosette': 1.0, 'room': 1.0, 'compliments': 1.0, 'from': 1.0, 'worked': 1.0, 'ceiling': 1.0, 'very': 1.0, 'the': 1.0, 'combination': 1.0, 'perfectly': 1.0, 'gotten': 1.0, 'and': 1.0, 'many': 1.0, '34': 1.0, 'both': 1.0, 'were': 1.0, 'easy': 1.0, 'recommend': 1.0, 've': 1.0, 'would': 1.0, 'for': 1.0, 'product': 1.0}
Word element => {'happen': 1.0, 'didn': 1.0, 'so': 1.0, 'bothers': 1.0, 'but': 2.0, 'just': 1.0, 'colors': 1.0, 'the': 3.0, 'purpose': 1.0, 'one': 1.0, 'love': 2.0, 'well': 1.0, 'more': 1.0, 'dinosaurs': 1.0, 't': 1.0, 'a': 2.0, 's': 3.0, 'way': 1.0, 'it': 5.0, 'with': 1.0, 'its': 1.0, 'do': 1.0, 'pattern': 1.0, 'and': 2.0, 'me': 1.0, 'really': 2.0, 'mat': 1.0, 'serves': 1.0, 'complaint': 1.0, 'touching': 1.0, 'this': 1.0, 'soft': 1.0, 'that': 2.0, 'set': 1.0, 'up': 1.0, 'thing': 1.0, 'no': 1.0, 'i': 5.0, 'two': 1.0, 'at': 1.0, 'of': 2.0, 'once': 1.0, 'out': 1.0, 'same': 1.0, 'have': 2.0, 'dinosaur': 1.0, 'to': 2.0, 'least': 1.0, 'little': 1.0, 'would': 1.0, 'there': 1.0, 'preferred': 1.0, 'be': 1.0}
Word element => {'up': 1.0, 'away': 1.0, 'put': 1.0, 'easy': 1.0, 'is': 1.0, 'on': 1.0, 'it': 2.0, 'great': 1.0, 'clean': 1.0, 'little': 1.0, 'to': 1.0, 'product': 1.0, 'around': 1.0, 'boy': 1.0, 'loves': 1.0, 'my': 1.0, 'the': 1.0, 'bright': 1.0, 'colors': 1.0, 'crawling': 1.0}
Word element => {'put': 1.0, 'any': 1.0, 't': 1.0, 'haven': 1.0, 'we': 1.0, 'his': 1.0, 'it': 1.0, 'with': 1.0, 'he': 1.0, 'are': 1.0, 'my': 1.0, 'one': 1.0, 'they': 1.0, 'your': 1.0, 'loves': 1.0, 'or': 1.0, 'colorful': 1.0, 'had': 1.0, 'to': 2.0, 'protect': 1.0, 'mat': 2.0, 'little': 2.0, 'while': 1.0, 'perfect': 1.0, 'not': 1.0, 'just': 1.0, 'move': 1.0, 'staying': 1.0, 'learning': 1.0, 'roll': 1.0, 'around': 1.0, 'very': 1.0, 'problems': 1.0, 'son': 1.0, 'is': 1.0, '6': 1.0, 'crawl': 1.0, 'months': 1.0, 'and': 1.0}
Word element => {'some': 1.0, 'tiles': 1.0, 'give': 1.0, 'those': 1.0, 'mix': 1.0, 'clean': 1.0, 'easy': 1.0, 'noise': 1.0, 'dampens': 1.0, 'idea': 1.0, 'wings': 1.0, 'kid': 1.0, 'crazy': 1.0, 'enough': 1.0, 'house': 1.0, 'making': 1.0, 'mat': 1.0, 'is': 1.0, 'put': 1.0, 'on': 2.0, 'mark': 1.0, 'up': 2.0, 'over': 1.0, 'even': 1.0, 'his': 2.0, 'in': 1.0, 'pterodactyl': 1.0, 'if': 1.0, 'apart': 1.0, 'though': 1.0, 'my': 2.0, 'color': 1.0, 'kiddo': 1.0, 'the': 1.0, 'could': 1.0, 'we': 1.0, 's': 2.0, 't': 2.0, 'certainly': 1.0, 'soft': 1.0, 'this': 2.0, 'with': 1.0, 'he': 2.0, 'it': 4.0, 'rex': 2.0, 'has': 2.0, 'profile': 1.0, 'only': 1.0, 'tiny': 1.0, 'its': 1.0, 'all': 1.0, 'to': 3.0, 'that': 1.0, 'loves': 1.0, 'or': 1.0, 'trample': 1.0, 'arms': 1.0, 'whatever': 1.0, 'cutout': 1.0, 'kindergarten': 1.0, 'shape': 1.0, 'and': 5.0, 'play': 1.0, 'toys': 1.0, 'oh': 1.0, 'together': 1.0, 'can': 1.0, 'tear': 1.0, 'methodically': 1.0, 'by': 1.0}
Word element => {'on': 1.0, 'chew': 1.0, 'things': 1.0, 'his': 1.0, 'edge': 1.0, 'little': 1.0, 'one': 1.0, 'mat': 1.0, 'to': 1.0, 'purpose': 1.0, 'kind': 1.0, 'thing': 1.0, 'main': 1.0, 'like': 1.0, 'and': 1.0, 'puzzle': 1.0, 'my': 1.0, 'defeats': 1.0, 'are': 2.0, 'everyday': 1.0, 'nice': 1.0, 'having': 1.0, 'pieces': 3.0, 'is': 1.0, 'a': 1.0, 'dinosaurs': 1.0, 'dismantles': 1.0, 'complaint': 1.0, 'don': 1.0, 'the': 6.0, 't': 1.0, 'favorite': 1.0, 'stay': 1.0, 'together': 1.0, 'that': 1.0, 'our': 1.0, 'crawling': 1.0, 'plus': 1.0, 'of': 2.0, '6': 1.0, 'month': 1.0, 'whole': 1.0, 'i': 1.0, 'old': 1.0}
Word element => {'apart': 1.0, 'pieces': 1.0, 'pull': 1.0, 'loves': 1.0, 'baby': 1.0, 'large': 1.0, 'plenty': 1.0, 'out': 1.0, 'his': 1.0, 'one': 2.0, 'mine': 1.0, 'practice': 1.0, 'enough': 1.0, 'make': 1.0, '5x3': 1.0, 'old': 1.0, 'i': 1.0, 'mat': 1.0, '8': 1.0, 'piece': 1.0, 'with': 1.0, 'son': 1.0, 'shapes': 1.0, 'each': 1.0, 'room': 1.0, 'since': 1.0, 'a': 1.0, 'rearrange': 1.0, 'walking': 1.0, 'square': 1.0, 'and': 4.0, 'this': 1.0, 'soft': 1.0, 'colorful': 1.0, 'it': 1.0, 'month': 1.0, 'fits': 1.0, 'my': 1.0, 'another': 1.0, 'you': 1.0, 'can': 1.0, 'different': 1.0, 'to': 3.0, 'patterns': 1.0, 'for': 1.0, 'fit': 1.0, 'actually': 1.0, 'use': 1.0, 'in': 1.0, 'rectangle': 1.0, 'the': 2.0, 'properly': 1.0, 'leaving': 1.0, 'is': 2.0, 'completely': 1.0}
Word element => {'room': 1.0, 'living': 1.0, 'in': 1.0, 'but': 1.0, 'little': 1.0, 'worried': 1.0, 'was': 1.0, 'walking': 1.0, 'out': 1.0, 'be': 1.0, 'trying': 1.0, 'when': 1.0, 'you': 1.0, 'he': 2.0, 'looks': 1.0, 'it': 7.0, 'pull': 1.0, 'my': 1.0, 'loves': 1.0, 'great': 1.0, 'stays': 1.0, 'new': 1.0, 'on': 1.0, 'make': 1.0, 'practice': 1.0, 'mat': 1.0, 'cute': 1.0, 'so': 1.0, 'small': 1.0, 'falls': 1.0, 'the': 2.0, 'nicely': 1.0, 'this': 1.0, 'perfect': 2.0, 'pieces': 1.0, 'too': 1.0, 'and': 4.0, 'pattern': 1.0, 'actually': 1.0, 'for': 1.0, 'is': 2.0, 'provides': 1.0, 'sitter': 1.0, 'clean': 1.0, 'good': 1.0, 'wipes': 1.0, 'messes': 1.0, 'of': 1.0, 'from': 1.0, 'our': 1.0, 'to': 1.0, 'as': 2.0, 'any': 1.0, 'over': 1.0, 'up': 1.0, 'don': 1.0, 'padding': 1.0, 'long': 1.0, 'might': 1.0, 't': 1.0, 'a': 2.0, 'i': 1.0}
Word element => {'monday': 1.0, 'arrived': 1.0, 'friday': 1.0, 'a': 1.0, 'item': 1.0, 'shipping': 1.0, 'fast': 1.0, 'starts': 1.0, 'lightening': 1.0, 'when': 1.0, 'another': 1.0, 'ordered': 1.0, 'definately': 1.0, 'will': 1.0, 'around': 1.0, 'is': 1.0, 'order': 1.0, 'cushy': 1.0, 'on': 3.0, 'starting': 1.0, 'one': 1.0, 'for': 2.0, 'something': 1.0, 'just': 1.0, '5mo': 1.0, 'i': 3.0, 'it': 2.0, 'with': 1.0, 'he': 2.0, 'this': 2.0, 'grandson': 1.0, 'my': 1.0, 'bought': 1.0, 'to': 4.0, 'and': 2.0, 'scoot': 1.0, 'wood': 1.0, 'we': 1.0, 'move': 1.0, 'add': 1.0, 'needed': 1.0, 'crawling': 1.0, 'floors': 1.0, 'him': 1.0}
Word element => {'that': 1.0, 'loved': 1.0, 'wants': 1.0, 'every': 1.0, 'even': 1.0, 'her': 2.0, 'sees': 1.0, 'who': 1.0, 'included': 1.0, 'especially': 1.0, 'enough': 1.0, 'i': 2.0, 's': 1.0, 'ceiling': 1.0, 'bulbs': 1.0, 'too': 1.0, 'daughter': 2.0, 'everyone': 1.0, 'had': 1.0, 'one': 1.0, 'for': 4.0, 'an': 1.0, 'preassembled': 1.0, 'came': 1.0, 'light': 4.0, 'wire': 1.0, 'my': 1.0, 'mother': 1.0, 'the': 3.0, 'little': 1.0, 'electrician': 1.0, 'this': 1.0, 'hard': 1.0, 'it': 1.0, 'compliments': 1.0, 'into': 1.0, 'and': 2.0, 'me': 1.0, 'perfect': 1.0, 'size': 1.0, 'bright': 1.0, 'gorgeous': 1.0, 'a': 1.0, 'room': 2.0, 'bedroom': 1.0}
Word element => {'mat': 1.0, 'her': 1.0, 'on': 1.0, 'toys': 1.0, 'than': 1.0, 'fairly': 1.0, 'clean': 1.0, 'little': 1.0, 'ripping': 1.0, 'is': 1.0, 'and': 3.0, 'together': 1.0, 'put': 1.0, 'move': 1.0, 'to': 2.0, 'easy': 2.0, 's': 2.0, 'it': 2.0, 'padded': 1.0, 'however': 1.0, 'a': 1.0, 'thin': 1.0, 'my': 1.0, 'more': 1.0, 'the': 2.0, 'daughter': 1.0, 'likes': 1.0, 'pieces': 1.0, 'apart': 1.0}
Word element => {'really': 1.0, 'more': 1.0, 'pieces': 1.0, 'son': 1.0, 'got': 1.0, 'durable': 1.0, 'ones': 1.0, 'the': 1.0, 'gone': 1.0, 'with': 2.0, 'crawl': 1.0, 'wanted': 1.0, 'that': 2.0, 'to': 1.0, 'our': 3.0, 'something': 1.0, 'old': 1.0, 'of': 1.0, 'have': 2.0, 'hard': 1.0, 'much': 1.0, 'only': 1.0, 'come': 1.0, 'mat': 1.0, 'beginning': 1.0, 'couple': 1.0, 'and': 3.0, 'bought': 1.0, 'attract': 1.0, 'we': 4.0, 'a': 1.0, '6': 1.0, 'throughout': 1.0, 'it': 1.0, 'month': 1.0, 'daughter': 1.0, 'for': 1.0, 'was': 1.0, 'mats': 1.0, 'wood': 2.0, 'floors': 1.0, 'apartment': 1.0, 'this': 1.0, 'soft': 1.0, 'these': 1.0, 'are': 1.0, 'very': 2.0, 'weeks': 1.0, 'thin': 1.0, 'easily': 1.0, 'apart': 1.0, 'dust': 1.0, 'lasted': 1.0, 'hair': 1.0, 'within': 1.0, 'disappointed': 1.0, 'less': 1.0, 'seconds': 1.0, 'cleaning': 1.0, 'should': 1.0}
Word element => {'so': 1.0, 'terribly': 1.0, 'but': 1.0, 'shifts': 1.0, 'floors': 1.0, 'tape': 1.0, 'sided': 1.0, 'akin': 1.0, 'be': 1.0, 'something': 1.0, 'would': 1.0, 'well': 1.0, 'timely': 1.0, 'very': 1.0, 'was': 1.0, 'shipping': 1.0, 'plus': 1.0, 'which': 1.0, 'no': 1.0, 'free': 1.0, 'tips': 1.0, 'sufficient': 1.0, 'also': 1.0, 'it': 2.0, 'small': 1.0, 'mat': 2.0, 'square': 1.0, '30': 1.0, 'backwards': 1.0, 'case': 1.0, 'floor': 1.0, 'plastic': 1.0, 'reusable': 1.0, 'perfectly': 1.0, 'not': 1.0, 'me': 1.0, 'in': 1.0, 'suggestion': 1.0, 'always': 1.0, 'complete': 1.0, 'pieces': 1.0, 'look': 1.0, 'as': 2.0, 'to': 3.0, 'the': 5.0, 'these': 1.0, 'they': 2.0, 'padding': 1.0, '16': 1.0, 'purchased': 1.0, 'times': 1.0, 'when': 1.0, 'squares': 2.0, 'on': 1.0, 'think': 1.0, 'put': 1.0, 'is': 4.0, 'leftover': 1.0, 'with': 1.0, 'come': 2.0, 'however': 1.0, 'together': 1.0, 'my': 3.0, 's': 1.0, 't': 1.0, 'a': 4.0, 'and': 4.0, 'play': 1.0, 'yard': 1.0, 'love': 1.0, 'fit': 1.0, 'for': 4.0, 'hardwood': 1.0, 'purchasing': 1.0, 'baby': 2.0, 'manufacturers': 1.0, 'ended': 1.0, 'tears': 1.0, 'created': 1.0, 'beneath': 1.0, 'up': 1.0, 'of': 1.0, 'i': 5.0, 'two': 3.0, 'at': 1.0, 'adorable': 1.0, 'space': 1.0, 'rounded': 1.0, 'packs': 1.0, 'only': 1.0, 'end': 1.0, 'pack': 1.0, 'provide': 1.0, 'didn': 1.0, 'enough': 2.0, 'cover': 1.0}
Word element => {'better': 1.0, 'everywhere': 1.0, 'this': 1.0, 'too': 1.0, 'kids': 1.0, 'many': 1.0, 'all': 1.0, 'she': 1.0, 'is': 1.0, 'pieces': 2.0, 'older': 1.0, 'my': 1.0, 'for': 2.0, 'year': 1.0, 'old': 1.0, 'disassemble': 1.0, 'one': 1.0, 'does': 1.0}
Word element => {'chill': 1.0, 'use': 1.0, 'buying': 1.0, 'don': 1.0, 'meantime': 1.0, 'purchase': 1.0, 'around': 2.0, 'love': 1.0, 'yet': 1.0, 'too': 1.0, 'had': 1.0, 'haven': 1.0, 'we': 1.0, 'quite': 1.0, 'winter': 1.0, 'standard': 1.0, 'tried': 1.0, 'layering': 1.0, 'thin': 1.0, 'work': 2.0, 'freeze': 1.0, 'my': 2.0, 'would': 1.0, 'tight': 1.0, 'didn': 1.0, 'handlebars': 1.0, 'maneuver': 1.0, 'll': 1.0, 'figure': 1.0, 'now': 1.0, 'say': 1.0, 'more': 1.0, 'certainly': 1.0, 'if': 3.0, 'found': 1.0, 'this': 7.0, 'perfect': 1.0, 'when': 1.0, 'what': 1.0, 'through': 1.0, 'here': 2.0, 'on': 2.0, 'of': 1.0, 'the': 7.0, 'many': 1.0, 'deal': 1.0, 'turns': 1.0, 'wearing': 1.0, '2': 1.0, 'but': 3.0, '35': 1.0, 'about': 1.0, 'no': 2.0, 'and': 9.0, 'enjoying': 2.0, 'bad': 1.0, 'below': 1.0, 'not': 2.0, 'though': 1.0, 'cold': 3.0, 's': 3.0, 'a': 2.0, 'could': 3.0, 'product': 1.0, '10': 1.0, 'for': 2.0, 't': 5.0, 'fit': 1.0, 'fast': 1.0, 'i': 10.0, 'be': 1.0, 'seeps': 1.0, 'stroller': 1.0, 'gets': 1.0, 'difficult': 1.0, 'excellent': 1.0, 'really': 4.0, 'those': 2.0, 'weather': 1.0, 'velcro': 1.0, 'm': 2.0, 'in': 5.0, 've': 2.0, 'been': 1.0, 'that': 2.0, 'fingers': 2.0, 'initially': 1.0, 'using': 1.0, 'like': 1.0, 'obviously': 1.0, 'regret': 1.0, 'half': 1.0, 'won': 1.0, 'as': 2.0, 'winters': 1.0, 'an': 1.0, 'all': 2.0, 'outside': 1.0, 'pretty': 1.0, 'to': 1.0, 'they': 1.0, 'gloves': 5.0, 'is': 2.0, 'at': 1.0, 'you': 2.0, 're': 1.0, 'enough': 1.0, 'minutes': 1.0, 'can': 1.0, 'so': 3.0, 'freezing': 1.0, 'figured': 1.0, 'big': 1.0, 'serious': 1.0, 'openings': 1.0, 'just': 2.0, 'sets': 1.0, 'it': 9.0, 'wear': 1.0, 'days': 2.0, 'out': 2.0, 'very': 1.0, 'with': 3.0, 'months': 1.0, 'get': 1.0, 'than': 1.0, 'way': 2.0, 'suppose': 1.0}
Word element => {'do': 2.0, 'yes': 1.0, 'recommend': 1.0, 'off': 1.0, 'certainly': 1.0, 'have': 1.0, 'most': 1.0, 'for': 1.0, 'must': 1.0, 'winter': 1.0, 'easy': 1.0, 'highly': 1.0, 'and': 1.0, 'great': 1.0, 'on': 1.0, 'warmth': 1.0, 'i': 3.0}
Word element => {'them': 1.0, 'us': 1.0, 'asks': 1.0, 'parent': 1.0, 'every': 1.0, 'get': 1.0, 'we': 2.0, 'can': 1.0, 'love': 1.0, 'are': 1.0, 'look': 1.0, 'convenient': 1.0, 'cool': 1.0, 'meet': 1.0, 'warm': 1.0, 'and': 1.0, 'where': 1.0, 'these': 1.0, 'they': 2.0, 'pretty': 1.0}
Word element => {'buy': 1.0, 'are': 1.0, 'face': 1.0, 'can': 1.0, '19': 1.0, 'its': 1.0, 'enfant': 1.0, '7': 1.0, 'this': 1.0, 'is': 1.0, 'know': 1.0, 'good': 1.0, 'degrees': 1.0, 'first': 1.0, 'it': 1.0, 'sure': 1.0, 'husband': 1.0, 'with': 1.0, 'buying': 1.0, 'look': 1.0, 'in': 3.0, 'bag': 1.0, 'mornings': 1.0, 'for': 1.0, 'love': 1.0, 'early': 1.0, 'baby': 1.0, 'them': 4.0, 'these': 2.0, 'my': 2.0, 'wasn': 1.0, 'i': 5.0, 'barely': 1.0, 'you': 1.0, 'am': 1.0, 'when': 2.0, 'outside': 1.0, 'to': 1.0, 'our': 1.0, 'thought': 1.0, 'that': 1.0, 'saw': 1.0, 'ok': 1.0, 'son': 1.0, 'they': 3.0, 'your': 3.0, 'the': 2.0, 'hands': 3.0, 'was': 1.0, 'recommend': 1.0, 'who': 1.0, 'keep': 2.0, 'his': 1.0, 'makes': 1.0, 'warm': 4.0, 'and': 3.0, 'would': 1.0, 'not': 1.0, 'me': 1.0, 'goofy': 1.0, 'walks': 1.0, 't': 1.0, 'might': 1.0, 'we': 1.0, 'highly': 1.0, 'so': 1.0, 'nice': 1.0, 'feel': 2.0}
Word element => {'it': 1.0, 'side': 1.0, 'expensive': 1.0, 'on': 1.0, 'they': 2.0, 'worth': 1.0, 'because': 1.0, 'are': 2.0, 'the': 2.0, 'but': 1.0, 'stroller': 1.0, 'going': 1.0, 'not': 1.0, 'was': 1.0, 'best': 1.0, 'buy': 1.0, 'i': 1.0, 'gloves': 1.0, 'to': 1.0, 'them': 1.0}
Word element => {'available': 1.0, 'though': 1.0, 'warm': 1.0, 'with': 1.0, 'it': 2.0, 'they': 1.0, 'a': 1.0, 's': 1.0, 'are': 1.0, 'allow': 1.0, 'kind': 1.0, 'to': 2.0, 'look': 1.0, 'gloves': 1.0, 'keep': 1.0, 'hand': 1.0, 'toddler': 1.0, 'on': 1.0, 'your': 1.0, 'put': 1.0, 'can': 1.0, 'but': 1.0, 'walk': 1.0, 'after': 1.0, 'the': 3.0, 'hands': 2.0, 'warmer': 1.0, 'use': 2.0, 'while': 1.0, 'tough': 1.0, 'where': 1.0, 'second': 1.0, 'in': 1.0, 'cool': 1.0, 'you': 3.0, 'idea': 1.0, 'photos': 1.0, 'poorly': 1.0, 'made': 1.0, 'good': 1.0, 'inseam': 1.0, 'glove': 1.0, 'of': 2.0, 'meets': 1.0, '5': 1.0, 'handle': 1.0, 'little': 1.0, 'ripped': 1.0, 'days': 1.0}
Word element => {'120': 1.0, 'costs': 1.0, 'arrived': 1.0, 'expected': 1.0, 'box': 1.0, 'put': 1.0, 'they': 1.0, 'though': 1.0, 'packing': 1.0, 'order': 1.0, 'with': 2.0, 'neat': 1.0, 'got': 1.0, 'does': 1.0, 'like': 1.0, 'weight': 1.0, 'distributed': 1.0, 'plastic': 1.0, 'wanna': 1.0, 'bag': 1.0, 'light': 1.0, 'including': 1.0, 'else': 1.0, 'nothing': 1.0, 'disability': 1.0, 'son': 1.0, 'best': 1.0, 'them': 1.0, 'for': 4.0, 'possessive': 1.0, 'mine': 1.0, 'carriers': 1.0, 'all': 2.0, 'other': 2.0, 'or': 1.0, 'true': 1.0, 'mailer': 1.0, 'sure': 1.0, 'bent': 1.0, 'having': 1.0, 'point': 1.0, 'who': 1.0, 'help': 1.0, 'would': 3.0, 'afford': 1.0, 'ergo': 1.0, 'hear': 1.0, 'super': 1.0, 'case': 1.0, 'decided': 1.0, 'what': 2.0, 'goodness': 1.0, 'finally': 1.0, 'expense': 1.0, 'kidding': 1.0, 'carried': 1.0, 'on': 3.0, 'dr': 1.0, 'anyone': 1.0, 'and': 11.0, 'unhappy': 1.0, 'about': 3.0, 'play': 1.0, 'baby': 1.0, 'it': 7.0, 'this': 4.0, 'tv': 1.0, 'found': 1.0, 'pain': 1.0, 'severe': 1.0, 'am': 1.0, 'the': 15.0, 'of': 5.0, 'a': 6.0, 'could': 2.0, 'we': 1.0, 's': 3.0, 't': 1.0, 'if': 2.0, 'every': 1.0, 'something': 1.0, 'buy': 1.0, 'wants': 1.0, 'seller': 1.0, 'worth': 1.0, 'upright': 1.0, 'have': 4.0, 'saw': 1.0, 'carrier': 1.0, 'back': 2.0, 'was': 5.0, 'crotch': 1.0, 'considering': 1.0, 'husband': 1.0, 'quick': 1.0, 'amazed': 1.0, 'guy': 1.0, 'issue': 1.0, 'our': 1.0, 'fibromyalgia': 1.0, 'be': 2.0, 'because': 1.0, 'that': 4.0, 'borrow': 1.0, 'products': 1.0, 'thank': 1.0, 'i': 17.0, 'pounds': 1.0, 'tried': 1.0, 'fibro': 1.0, 'beg': 1.0, 'come': 1.0, 'standing': 1.0, 'steal': 1.0, 'just': 2.0, 'support': 1.0, 'carrying': 1.0, 'some': 1.0, 'to': 1.0, 'length': 1.0, 'bjorn': 1.0, 'constantly': 1.0, 'so': 1.0, 'can': 1.0, 'crushed': 1.0, 'little': 2.0, 'at': 2.0, 'is': 1.0, 'considerably': 1.0, 'up': 1.0, 'less': 1.0, 'people': 1.0, 'in': 2.0, 'm': 4.0, 'work': 2.0, 'over': 1.0, 'don': 1.0, '15': 1.0, 'extra': 1.0, 'my': 3.0, 'me': 2.0, 'not': 4.0, 'too': 1.0, 'lot': 1.0, 'one': 3.0, 'happy': 1.0, 'reviewers': 1.0, 'mama': 2.0, 'negatives': 1.0, 'trouble': 1.0, 'get': 2.0, 'time': 1.0, 'wary': 1.0, 'hip': 1.0}
Word element => {'much': 1.0, 'very': 1.0, 'adjust': 1.0, 'after': 1.0, 'small': 1.0, 'or': 1.0, 'long': 1.0, 'a': 1.0, 'use': 2.0, 'worried': 1.0, '7': 1.0, '18kg': 1.0, 'baby': 5.0, 'old': 1.0, 'i': 3.0, 'before': 1.0, '5': 1.0, 'important': 1.0, 'skin': 1.0, 'with': 1.0, 'back': 1.0, 'carrier': 3.0, 'really': 2.0, 'is': 3.0, 'get': 1.0, 'matter': 1.0, 'now': 1.0, 'to': 2.0, 'the': 4.0, 'adjustment': 1.0, 'this': 6.0, 'soft': 1.0, 'about': 1.0, 'no': 1.0, 'months': 1.0, 'one': 2.0, 'time': 1.0, 'gentle': 1.0, 'buckle': 1.0, 'be': 1.0, 'anyone': 1.0, 'was': 1.0, 'father': 1.0, 'my': 2.0, 'may': 1.0, 'and': 2.0, 'too': 1.0, 'big': 2.0, 'most': 1.0, 'can': 2.0, 'but': 1.0, 'easily': 1.0, 'love': 1.0, 'for': 2.0, 'fit': 1.0}
Word element => {'paid': 1.0, 'i': 1.0, 'worth': 1.0, 'made': 1.0, 'was': 1.0, 'price': 1.0, 'baby': 1.0, 'the': 3.0, 'as': 3.0, 'up': 1.0, 'pretty': 1.0, 'soon': 1.0, 'tear': 1.0, 'and': 1.0, 'probably': 1.0, 'quick': 1.0, 'it': 3.0, 's': 1.0, 'here': 1.0, 'what': 1.0, 'weird': 1.0, 'plastic': 1.0, 'inside': 1.0, 'but': 1.0, 'that': 1.0, 'is': 1.0, 'stuff': 1.0, 'll': 2.0, 'be': 1.0, 'useful': 1.0, 'for': 1.0}
Word element => {'do': 1.0, 'me': 1.0, 'ask': 1.0, 'was': 2.0, 'look': 1.0, 'like': 2.0, 'even': 1.0, 'didn': 1.0, 'previous': 1.0, 'three': 1.0, 'for': 1.0, 'extremely': 1.0, 'bought': 1.0, 'plush': 1.0, 'this': 2.0, 'car': 2.0, 'replace': 1.0, 'asleep': 1.0, 'the': 4.0, 'existing': 1.0, 'used': 1.0, 'teddy': 1.0, 'to': 3.0, 'our': 1.0, 'seat': 2.0, 'cover': 4.0, 'install': 1.0, 'new': 1.0, 'feels': 1.0, 'baby': 1.0, 'that': 2.0, 'loves': 1.0, 'and': 2.0, 'it': 5.0, 'she': 1.0, 'easy': 1.0, 'has': 1.0, 'no': 1.0, 'brand': 1.0, 'problems': 1.0, 'falling': 1.0, 'in': 1.0, 'itself': 1.0, 'made': 1.0, 'smooth': 1.0, 't': 1.0, 'we': 2.0, 'a': 1.0, 'boys': 1.0, 'bear': 1.0, 'so': 1.0, 'my': 1.0, 'wife': 1.0}
Word element => {'else': 1.0, 'anything': 1.0, 'a': 1.0, 'one': 1.0, 'clothes': 1.0, 'burp': 2.0, 'as': 1.0, 'best': 1.0, 'are': 1.0, 'but': 1.0, 'diapers': 1.0, 'keep': 1.0, 'i': 2.0, 'cloth': 3.0, 'and': 1.0, 'comment': 1.0, 'we': 1.0, 't': 1.0, 'diaper': 1.0, 'the': 2.0, 'these': 1.0, 'where': 1.0, 'use': 2.0, 'every': 2.0, 'baby': 1.0, 'room': 1.0, 'is': 1.0, 'won': 1.0, 'on': 1.0, 'place': 1.0, 'in': 1.0, 'cannot': 1.0}
Word element => {'face': 1.0, 'her': 1.0, 'cuddles': 1.0, 'she': 2.0, 'winter': 1.0, 'by': 1.0, 'daughter': 1.0, 'year': 1.0, 'one': 1.0, 'for': 2.0, 'has': 1.0, 'my': 1.0, 'every': 1.0, 'purchased': 1.0, 'always': 1.0, 'cute': 1.0, 'a': 2.0, 'night': 1.0, 'old': 1.0, 'i': 1.0, 'lovie': 1.0, 'sleep': 2.0, 'thought': 1.0, 'it': 1.0, 'christmas': 1.0, 'this': 2.0, 'with': 2.0, '1': 1.0, 'and': 1.0, 'to': 2.0, 'was': 1.0}
Word element => {'curious': 1.0, 's': 1.0, 'about': 1.0, 'worry': 1.0, 'have': 1.0, 't': 1.0, 'this': 1.0, 'is': 1.0, 'such': 1.0, 'don': 1.0, 'a': 1.0, 'handy': 1.0, 'pouch': 1.0, 'safety': 1.0, 'for': 1.0, 'my': 2.0, 'to': 1.0, 'meds': 1.0, 'grandchildren': 1.0, 'i': 1.0, 'traveling': 1.0, 'when': 1.0}
Word element => {'hands': 1.0, 's': 1.0, 'out': 1.0, 'medicines': 1.0, 'of': 1.0, 'keeping': 1.0, 'children': 1.0, 'in': 1.0, 'helpful': 1.0, 'just': 1.0, 'unlock': 1.0, 'a': 2.0, 'locking': 1.0, 'bank': 1.0, 'bag': 1.0, 'must': 1.0, 'with': 1.0, 'carried': 1.0, 'key': 1.0, 'like': 1.0, 'very': 1.0}
Word element => {'pillow': 1.0, 'me': 1.0, 'for': 1.0, 'good': 1.0, 'my': 1.0, 'fit': 1.0, 'loved': 1.0, 'up': 1.0, 'and': 1.0, 'friend': 1.0, 'another': 1.0, 'a': 2.0, 'gave': 1.0, 'it': 3.0, 'i': 2.0, 'so': 2.0, 'not': 1.0, 'was': 1.0, 'buying': 1.0, 'ended': 1.0, 'try': 1.0}
Word element => {'sourced': 1.0, 'made': 1.0, 'completely': 1.0, 'quality': 1.0, 'appreciate': 1.0, 'really': 1.0, 'hip': 1.0, 'usa': 1.0, 'pesky': 1.0, 'those': 1.0, 'sagging': 1.0, 'snaps': 1.0, 'from': 1.0, 'flaps': 2.0, 'also': 1.0, 'individually': 1.0, 'faster': 1.0, 'dry': 1.0, 'definitely': 1.0, 'than': 1.0, 'way': 1.0, 'that': 3.0, 'cleaner': 1.0, 'snapped': 1.0, 'get': 1.0, 'would': 1.0, 'thirsties': 1.0, 'potty': 1.0, 'a': 2.0, 'small': 1.0, 'and': 12.0, 'signs': 1.0, 'each': 1.0, 'show': 1.0, 'happened': 1.0, 'am': 1.0, 'need': 1.0, '31lb': 1.0, 'opens': 1.0, 'newborn': 2.0, 'in': 5.0, 'size': 4.0, 'minimize': 1.0, 'allowing': 1.0, 'they': 6.0, 'though': 1.0, 'with': 3.0, 'eliminating': 1.0, 'son': 1.0, 'if': 1.0, 'still': 1.0, 'is': 1.0, 'to': 8.0, 'issues': 1.0, 'grow': 1.0, 'now': 1.0, 'toss': 1.0, 'before': 2.0, 'these': 2.0, 'comes': 1.0, 'room': 1.0, 'concept': 1.0, 'of': 3.0, 'the': 14.0, 'pocket': 2.0, 'training': 1.0, 'are': 4.0, 'leaky': 1.0, 'diapers': 5.0, 'while': 1.0, 'i': 5.0, 'two': 3.0, 'different': 1.0, 'who': 1.0, 'since': 1.0, 'wrap': 1.0, 'designed': 2.0, 'into': 1.0, 'sizing': 1.0, 'getting': 1.0, 'like': 3.0, 'microfiber': 1.0, 'my': 4.0, 'some': 1.0, 'running': 1.0, 'bunching': 1.0, 'adjustable': 1.0, 'around': 1.0, 'rise': 1.0, 'too': 1.0, 'one': 2.0, 'ones': 1.0, 'fit': 2.0, 'for': 2.0, 'inserts': 1.0, 'leaks': 1.0, 'stuffed': 1.0, 'toddler': 1.0, 'diaper': 1.0, 'insert': 2.0, 'hemp': 1.0, 'snap': 1.0, 'were': 2.0, 'together': 2.0, 'front': 2.0, 'washer': 1.0, 'back': 1.0, 'technically': 1.0, 'be': 1.0, 'you': 1.0, 'able': 1.0, 'sizes': 1.0, 'your': 1.0, 'perfect': 1.0, 'agitation': 1.0, 'should': 1.0, 'used': 1.0, 'unstuff': 1.0, 'has': 1.0, 'solution': 1.0, 'them': 1.0, 'days': 1.0, 'without': 2.0, 'remove': 1.0, 'starting': 1.0, 'it': 1.0, 'unsnap': 1.0, 'washing': 1.0, 'seems': 1.0}
Word element => {'do': 1.0, 'open': 2.0, 'come': 1.0, 'would': 1.0, 'role': 1.0, 'hold': 2.0, 'velcro': 4.0, 'snaps': 1.0, 'with': 1.0, 'legs': 1.0, 'wide': 1.0, 'tossed': 1.0, 'really': 1.0, 'still': 1.0, '15': 1.0, 'bit': 1.0, 'fit': 1.0, 'for': 1.0, 'aside': 1.0, 'are': 2.0, 'size': 1.0, '23': 1.0, 'was': 1.0, 'd': 1.0, 'm': 1.0, 'night': 1.0, 'them': 1.0, 'baby': 1.0, 'together': 1.0, 'snapped': 1.0, 'fleece': 2.0, 'out': 1.0, 'top': 1.0, 'over': 2.0, 'hemp': 2.0, 'around': 1.0, 'is': 1.0, 'inches': 2.0, 'grew': 1.0, 'these': 2.0, 'the': 17.0, 'pee': 1.0, 'loved': 1.0, 'then': 1.0, 'didn': 1.0, 'diapers': 3.0, 'put': 2.0, 'but': 2.0, 'starting': 1.0, 'and': 4.0, 'my': 1.0, 'of': 3.0, 'rash': 1.0, 'gave': 1.0, 'microfiber': 1.0, 'diaper': 2.0, 'insert': 1.0, 'before': 1.0, 'leeks': 1.0, 'in': 2.0, 'perfect': 1.0, 'thing': 1.0, 'no': 1.0, 'pocked': 1.0, 'did': 1.0, 'not': 2.0, 'between': 1.0, 'they': 2.0, 'held': 1.0, 't': 1.0, 'go': 1.0, '26': 1.0, 'we': 3.0, 'a': 5.0, 'at': 2.0, 'bigger': 1.0, 'lot': 2.0, '12': 1.0, 'had': 2.0, 'heat': 1.0, 'few': 1.0, 'he': 3.0, 'rise': 1.0, 'as': 1.0, 'to': 2.0, 'waist': 1.0, 'pounds': 2.0, 'thinking': 1.0, 'two': 2.0, 'i': 2.0}
Word element => {'size': 1.0, 'move': 1.0, 'gladly': 1.0, 'but': 1.0, 'does': 1.0, 'says': 1.0, 'll': 2.0, 'lasting': 1.0, 'chunk': 1.0, 'old': 1.0, 'either': 1.0, 'weeks': 1.0, 'now': 1.0, 'it': 2.0, '9': 1.0, 'over': 1.0, 'cover': 1.0, 'never': 1.0, 'everything': 1.0, 'way': 1.0, 'contained': 1.0, 'had': 1.0, 'using': 3.0, 'like': 1.0, 'we': 1.0, 'leg': 1.0, 'didn': 1.0, 'got': 1.0, 'pockets': 1.0, 'wraps': 1.0, 'thirsties': 2.0, 'started': 2.0, 'them': 2.0, 'ended': 1.0, 'newborn': 2.0, 'my': 3.0, 'long': 1.0, 'on': 2.0, 'stuff': 1.0, '3': 1.0, 'supposed': 1.0, 't': 2.0, 'fit': 1.0, 'for': 2.0, 'were': 1.0, 'and': 8.0, 'prefolds': 1.0, 'of': 2.0, 'the': 10.0, 'son': 1.0, 'best': 1.0, '34': 2.0, 'out': 1.0, 'absolutely': 1.0, 'up': 1.0, 'baby': 1.0, 'many': 1.0, 'handful': 1.0, 'have': 2.0, 'even': 2.0, 'cloth': 1.0, 'see': 2.0, 'tried': 1.0, 'i': 10.0, 'etc': 1.0, 'feature': 1.0, 'loved': 2.0, 'to': 4.0, 'became': 1.0, 'through': 1.0, 'discouraged': 1.0, 'they': 3.0, 'front': 2.0, 'back': 2.0, 'sides': 1.0, 'inserts': 1.0, 'instantly': 1.0, 'reached': 1.0, 'love': 1.0, 'he': 2.0, 'grew': 1.0, 'two': 1.0, 'little': 2.0, 'more': 2.0, 'duo': 1.0, 'as': 4.0, 'diaper': 3.0, 'diapers': 1.0, 'first': 1.0, 'are': 1.0, 'quickly': 1.0, 'simply': 1.0, 'easy': 1.0, 'that': 3.0, 'because': 1.0, 'there': 1.0, 'larger': 1.0, 'an': 1.0, 'don': 1.0, 'leaked': 1.0, 'gussets': 1.0, 'opening': 1.0, 'in': 1.0, 'you': 1.0, 'so': 2.0, 'can': 1.0, 'pull': 1.0, 'into': 1.0, 'fuzzibunz': 1.0, 'do': 1.0, 'not': 1.0, 'those': 1.0, 'this': 2.0, 'dread': 1.0, 'a': 3.0, 'stuffing': 1.0, 'lbs': 1.0, 'was': 1.0, 'is': 2.0, 'at': 1.0, 'birth': 1.0}
Word element => {'though': 1.0, '0': 1.0, 'my': 1.0, 'fit': 1.0, 'plus': 1.0, 'prints': 1.0, 'functional': 1.0, 'baby': 1.0, 'don': 1.0, 'colors': 1.0, 'cute': 1.0, 'chunky': 1.0, 'and': 1.0, 'as': 2.0, 'very': 2.0, '4': 1.0, 'breast': 1.0, 'diapers': 1.0, 'they': 3.0, 'are': 1.0, 'contained': 1.0, 'bumgenius': 1.0, 'love': 2.0, 'i': 1.0, 'gussets': 1.0, 'fed': 1.0, 'well': 2.0, 'keep': 1.0, 'poop': 1.0, 'these': 1.0, 'the': 1.0, 't': 1.0}
Word element => {'now': 1.0, 'use': 1.0, 'rarely': 1.0, 'fine': 1.0, 'worked': 1.0, 'as': 3.0, 'very': 2.0, 'but': 2.0, 'soft': 1.0, '50': 1.0, 'bit': 1.0, 'at': 1.0, 'it': 5.0, 'fell': 1.0, 'size': 1.0, 'maybe': 1.0, 'my': 2.0, 'baby': 2.0, 'first': 1.0, 'shorts': 1.0, 'expected': 1.0, 'well': 1.0, 'i': 3.0, 'bought': 1.0, 'one': 2.0, 'for': 3.0, 'liked': 1.0, 'purpose': 1.0, 'pound': 1.0, 'swim': 1.0, '10': 1.0, 'although': 1.0, 'and': 1.0, 'a': 2.0, 'we': 2.0, 'used': 2.0, 'before': 1.0, 'buttons': 1.0, 'its': 1.0, 'works': 1.0, 'girl': 1.0, 'quite': 1.0, 'off': 1.0, 'around': 1.0, 'uses': 1.0, 'of': 1.0, 'the': 1.0, 'not': 2.0, 'kinda': 1.0, 'still': 1.0}
Word element => {'brands': 1.0, 'swaddlebees': 1.0, 'fuzzibunz': 1.0, 'bumgenius': 1.0, 'second': 1.0, 'option': 1.0, 'better': 1.0, 'trade': 1.0, 'sadly': 1.0, 'cozy': 1.0, 'wold': 1.0, 'then': 1.0, 'who': 1.0, 'perfect': 1.0, 'range': 1.0, 'need': 1.0, 'more': 1.0, 'babies': 2.0, 'will': 2.0, 'any': 1.0, 'opinion': 2.0, 'sizing': 1.0, 'limits': 1.0, 'each': 1.0, 'con': 1.0, 'both': 1.0, 'with': 2.0, 'setting': 1.0, 'last': 1.0, 'over': 1.0, '6': 1.0, 'now': 1.0, 'side': 1.0, 'tho': 1.0, 'some': 1.0, 'outside': 1.0, 'wet': 1.0, 'explosions': 1.0, 'newborn': 1.0, 'only': 1.0, 'biggest': 1.0, 'even': 2.0, 'keep': 1.0, 'like': 2.0, 'best': 1.0, '11': 1.0, 'extremely': 1.0, 'get': 3.0, 'legs': 1.0, 'can': 2.0, 'so': 3.0, 'they': 6.0, 'roly': 2.0, 'real': 1.0, 'bumkins': 1.0, 'it': 1.0, 'him': 1.0, 'started': 1.0, 'problem': 1.0, 'weighed': 1.0, 'old': 2.0, 'would': 1.0, 'bulky': 1.0, 'weeks': 2.0, 'strong': 1.0, '3': 2.0, 'really': 3.0, 'snaps': 3.0, 'tried': 1.0, 'see': 1.0, 'own': 1.0, 'loose': 1.0, 'a': 11.0, 's': 2.0, 'be': 2.0, 'its': 1.0, 'to': 6.0, 'ever': 1.0, 'an': 1.0, 'other': 1.0, 'fits': 1.0, 'all': 4.0, 'pads': 1.0, 'wash': 2.0, 'in': 4.0, 'absorbent': 1.0, 'apart': 1.0, 'that': 7.0, 'broad': 1.0, 'parts': 1.0, 'lengthen': 1.0, 'different': 1.0, 'snugglers': 1.0, 'are': 12.0, 'first': 1.0, 'diapers': 7.0, 'is': 6.0, 'separated': 1.0, 'facts': 1.0, '10': 1.0, 'fabric': 1.0, 'for': 8.0, 'poly': 2.0, 'fit': 4.0, 'stuff': 1.0, 'just': 1.0, 'by': 1.0, 'remember': 1.0, 'have': 9.0, 'duo': 4.0, 'awesome': 1.0, 'thirsties': 4.0, 'leak': 3.0, 'belongs': 1.0, 'as': 2.0, 'diaper': 10.0, 'also': 1.0, 'soaker': 3.0, 'cotton': 1.0, 'gussets': 2.0, 'and': 11.0, 'not': 8.0, 'dry': 2.0, 'where': 1.0, 'come': 1.0, 'born': 2.0, 'wraps': 1.0, '2': 2.0, 'but': 4.0, 'baby': 5.0, 'you': 2.0, 'night': 1.0, 'ahead': 1.0, 'bitty': 1.0, 'has': 2.0, 'them': 2.0, 'site': 1.0, 'fatter': 1.0, 'making': 1.0, 'agitates': 1.0, 'very': 6.0, 'little': 3.0, 'fat': 4.0, 'fitting': 1.0, 'comfortable': 3.0, 'colors': 2.0, 'true': 1.0, 'do': 9.0, 'pictures': 1.0, 'few': 2.0, 'this': 6.0, 'well': 1.0, 'fast': 1.0, 'i': 8.0, 'longer': 1.0, 'of': 6.0, 'the': 25.0, 'prints': 1.0, 'itty': 1.0, 'these': 5.0, 'out': 1.0, 'absolutely': 1.0, 'bought': 1.0, 'time': 2.0, 'easy': 1.0, 'touches': 1.0, 'bit': 2.0, 'on': 5.0, 'long': 2.0, 'before': 1.0, 'me': 1.0, 'microfiber': 1.0, 'my': 7.0, 'son': 1.0, 'if': 2.0, 'stay': 1.0, 'still': 2.0, 'yet': 1.0, 'love': 1.0, 'bottom': 1.0, 'he': 5.0, 'favorite': 1.0, '7': 1.0, 'pul': 1.0, 'was': 5.0, 'lbs': 3.0, 'beside': 1.0, 'when': 2.0, 'oz': 2.0, 'had': 1.0, 'soft': 2.0, 'slightly': 2.0, 'his': 1.0, 'around': 2.0, 'squishy': 1.0, 'inside': 1.0, 'thighs': 1.0, 'caused': 1.0}
Word element => {'about': 1.0, 'until': 1.0, 'wasn': 1.0, 'would': 1.0, 'perhaps': 1.0, 'other': 1.0, '8': 1.0, '1': 2.0, 'wear': 1.0, 'she': 2.0, 'preemies': 1.0, 'babies': 1.0, 'petite': 1.0, 'xs': 1.0, 'stash': 2.0, 'emergency': 1.0, 'fitting': 1.0, 'd': 1.0, 'we': 1.0, 'none': 1.0, 'hospital': 1.0, 'home': 1.0, 'brought': 1.0, 'small': 2.0, 'young': 1.0, 'onesize': 1.0, 'toddlers': 1.0, 'long': 1.0, 'didn': 1.0, 'sizes': 1.0, 'more': 1.0, 'was': 2.0, 'first': 1.0, 'bought': 1.0, 'better': 1.0, 'expensive': 1.0, 'repeated': 1.0, 'falls': 1.0, 'buy': 3.0, '6lb': 1.0, 'note': 1.0, 'came': 1.0, 'period': 1.0, 'under': 1.0, 'car': 1.0, 'daytime': 2.0, 'additional': 1.0, 'size': 9.0, '14': 1.0, 'esp': 1.0, 'happy': 1.0, 'try': 1.0, 'too': 3.0, 'yay': 1.0, 'decided': 1.0, 'gusset': 2.0, 'satisfied': 1.0, 'insert': 4.0, 'now': 1.0, 'anymore': 1.0, 'slide': 1.0, 'baby': 5.0, 'snapthirsties': 1.0, 'night': 1.0, 'you': 7.0, 'them': 5.0, 'trips': 1.0, 'has': 2.0, 'for': 13.0, 'had': 1.0, 'meadow': 1.0, 'work': 2.0, 'daily': 1.0, 'cottage': 1.0, 'no': 2.0, '18': 3.0, 'extended': 1.0, 'discovered': 1.0, 'lol': 1.0, 'days': 1.0, 'remove': 2.0, 'around': 1.0, 'cheerleader': 1.0, 'thirsties': 10.0, 'lbs': 6.0, 'am': 1.0, 'highly': 2.0, 'brand': 1.0, 'customer': 2.0, 'go': 2.0, 't': 5.0, 'a': 8.0, 'but': 1.0, 'diapers': 8.0, 'poo': 1.0, 'will': 2.0, 'means': 1.0, 'from': 1.0, 'whenever': 1.0, '2': 2.0, 'apart': 1.0, 'cloth': 1.0, 'best': 1.0, 'experimentation': 1.0, 'i': 18.0, 'off': 1.0, 'aiothirsties': 1.0, 'these': 3.0, 'ladies': 1.0, 'lack': 1.0, 'close': 1.0, 'products': 2.0, 'may': 1.0, 'are': 7.0, 'my': 5.0, 'large': 1.0, 'snap': 2.0, 'or': 3.0, 'types': 1.0, 're': 1.0, 'much': 2.0, 'service': 1.0, 'don': 3.0, 'still': 1.0, 'look': 1.0, 'an': 4.0, 'all': 3.0, 'mango': 1.0, 'kind': 1.0, 'time': 1.0, 'bit': 1.0, 'fit': 2.0, 'easy': 2.0, 'so': 3.0, 'fleece': 2.0, 'is': 5.0, 'can': 2.0, 'their': 2.0, 'imho': 1.0, 'that': 10.0, 'layer': 1.0, 'because': 5.0, 'south': 1.0, 'only': 1.0, 'the': 21.0, 'found': 1.0, 'have': 6.0, 'dryer': 1.0, 'right': 1.0, 'to': 15.0, 'closures': 1.0, 'inserts': 1.0, 'fave': 1.0, 'big': 1.0, 'sewn': 1.0, 'recommended': 1.0, 'hand': 2.0, 'bonus': 2.0, 'they': 8.0, '6': 4.0, 'industry': 1.0, 'actually': 1.0, 'us': 1.0, 'also': 1.0, 'tried': 2.0, 'and': 14.0, 'just': 1.0, 'roughed': 1.0, 'sourced': 1.0, 'after': 3.0, 'by': 2.0, '100': 1.0, 'manufactured': 1.0, 'american': 1.0, 'absorbancy': 1.0, 'located': 1.0, 'believe': 1.0, 'between': 1.0, 'changes': 1.0, 'keep': 1.0, 'wonderful': 1.0, 'brands': 1.0, 'of': 12.0, 'old': 2.0, 'this': 1.0, 'downside': 1.0, 'double': 3.0, 'stay': 1.0, 'which': 2.0, 'side': 1.0, 'there': 2.0, 'perfectly': 1.0, 'bulk': 1.0, 'hang': 1.0, '5': 1.0, 'one': 6.0, 'absolutely': 1.0, 'infants': 1.0, 'ultraslim': 1.0, 'out': 1.0, 'leakage': 1.0, 'able': 3.0, 'get': 3.0, 'felt': 1.0, 'months': 2.0, 'far': 1.0, 'depending': 1.0, 'stick': 1.0, 'many': 2.0, 'your': 1.0, 'be': 1.0, 'it': 4.0, 'love': 2.0, 'two': 1.0, 'realize': 1.0, 'hemp': 1.0, 'dry': 3.0, 'not': 2.0, 'little': 1.0, 'her': 1.0, 'white': 1.0, 'duo': 5.0, 'short': 1.0, 'materials': 1.0, 'use': 3.0, 'do': 1.0, 'either': 2.0, 'bulky': 1.0, 'both': 2.0, 'on': 4.0, 'level': 1.0, 'very': 2.0, 'required': 1.0, 'find': 1.0, 'layers': 1.0, 'snaps': 2.0, 'could': 1.0, 'durable': 1.0, 'second': 1.0, 'if': 3.0, 'great': 3.0, 'mo': 1.0, 'silhouette': 1.0, 'prefer': 1.0, 'at': 4.0, 'aios': 2.0, 'sadly': 1.0, 'tunnel': 1.0, 'into': 1.0, 'specifically': 1.0, 'in': 6.0, 'together': 1.0, 'potty': 3.0, 'training': 3.0, 'herself': 1.0, 'age': 2.0, 'with': 3.0, 'using': 1.0, 'velcro': 3.0, '15': 1.0, 'never': 1.0, 'take': 2.0, 'while': 2.0, 'line': 2.0, 'covers': 2.0, 'diaper': 4.0, 'washing': 2.0, 'up': 1.0}
Word element => {'hook': 1.0, 'via': 1.0, 'bathroom': 1.0, 'of': 1.0, 'back': 1.0, 'on': 1.0, 'stores': 1.0, 'dry': 1.0, 'rinse': 1.0, 'out': 1.0, 'tub': 2.0, 'bath': 1.0, 'use': 1.0, 'space': 1.0, 'to': 1.0, 'comes': 1.0, 'and': 2.0, 'the': 5.0, 'all': 1.0, 'babies': 1.0, 'have': 1.0, 'door': 1.0, 'limited': 1.0, 'is': 1.0, 'people': 1.0, 'for': 2.0, 'perfect': 1.0, 'in': 2.0, 'kitchen': 1.0, 'hang': 1.0, 'gear': 1.0, 'we': 1.0, 'with': 1.0, 'this': 1.0, 'it': 3.0, 'that': 2.0, 'our': 1.0, 'sink': 1.0}
Word element => {'investment': 1.0, 'worth': 1.0, 'to': 1.0, 'puts': 1.0, 'keep': 1.0, 'head': 1.0, 'occupied': 1.0, 'her': 3.0, 'figures': 1.0, 'fighting': 1.0, 'above': 1.0, 'quality': 1.0, 'then': 1.0, 'overly': 1.0, 'any': 1.0, 'price': 2.0, 'best': 1.0, 'a': 2.0, 'is': 4.0, 'she': 1.0, 'store': 1.0, 'with': 1.0, 'it': 3.0, 'this': 2.0, 'wonderful': 1.0, 'sleep': 1.0, 'loves': 2.0, 'great': 2.0, 'the': 4.0, 'are': 1.0, 'my': 1.0, 'deals': 1.0, 'here': 1.0, 'niece': 1.0, 'swing': 2.0, 'little': 1.0, 'at': 2.0, 'swinging': 1.0}
Word element => {'reasonable': 1.0, 'an': 1.0, 'now': 1.0, 'use': 1.0, 'buy': 1.0, 'gotten': 1.0, 'have': 1.0, 'great': 1.0, 'should': 1.0, 'they': 1.0, 'nothing': 1.0, 'in': 2.0, 'not': 1.0, 'soldering': 1.0, 'sound': 1.0, 'up': 1.0, 'after': 1.0, 'connectors': 2.0, 'some': 1.0, 'supply': 2.0, 'bought': 1.0, 'sounds': 1.0, 'batteries': 2.0, 'swing': 4.0, 'timer': 1.0, 'with': 2.0, 'it': 4.0, 'this': 2.0, 'think': 1.0, 'on': 1.0, 'opening': 1.0, '5': 1.0, 'rating': 1.0, 'local': 1.0, 'nature': 1.0, 'turned': 1.0, 'to': 2.0, 'wife': 1.0, 'and': 5.0, '4': 2.0, 'i': 4.0, '45': 1.0, 'got': 2.0, 'power': 2.0, 'because': 1.0, 'went': 1.0, 'dc': 3.0, 'the': 11.0, 'overall': 1.0, 'worked': 1.0, 'very': 1.0, 'like': 1.0, 'using': 1.0, 'about': 2.0, 'was': 1.0, 'minutes': 1.0, 'average': 1.0, 'new': 1.0, 'cost': 2.0, '9': 1.0, 'works': 1.0, 'only': 1.0, 'pack': 2.0, 'music': 1.0, 'but': 2.0, 'four': 1.0, 'of': 1.0, 'is': 2.0, '00': 1.0, 'makes': 1.0, 'flawlessly': 1.0, 'my': 1.0, 'eventually': 1.0, 'portion': 1.0, 'for': 4.0, 'expensive': 1.0, 'down': 1.0, 'we': 1.0, 'a': 5.0, 'radio': 1.0, 'chance': 1.0, 'shack': 1.0}
Word element => {'swings': 1.0, 'likes': 1.0, 'functional': 1.0, 'simpler': 1.0, 'above': 1.0, 'enough': 1.0, 'once': 1.0, 'mobile': 1.0, 'consumer': 1.0, 'options': 1.0, 'suffers': 1.0, 'white': 1.0, 'difficult': 2.0, 'provided': 1.0, 'position': 1.0, 'strap': 2.0, 'well': 1.0, 'i': 1.0, 'responded': 1.0, 'inches': 1.0, 'assembling': 1.0, 'baby': 2.0, 'others': 1.0, 'good': 2.0, 'made': 1.0, 'again': 1.0, 'which': 1.0, 'asleep': 1.0, 'cradle': 1.0, 'given': 1.0, 'battery': 1.0, 'really': 1.0, 'waste': 1.0, 'see': 1.0, 'model': 2.0, 'so': 5.0, 'great': 1.0, 'if': 3.0, 'high': 1.0, 'right': 1.0, 'to': 14.0, 'were': 1.0, 'full': 1.0, 'directions': 1.0, 'secure': 1.0, 'music': 1.0, 'but': 3.0, 'natures': 1.0, 'most': 2.0, 'advertised': 1.0, 'worked': 1.0, 'having': 1.0, 'important': 1.0, 'swing': 4.0, 'otherwise': 1.0, 'not': 6.0, 'can': 2.0, 'is': 5.0, 'at': 1.0, 'are': 2.0, 'seems': 1.0, 'weeks': 1.0, 'would': 1.0, 'problems': 1.0, 'concerned': 1.0, 'touch': 1.0, 'some': 2.0, 'never': 1.0, 'child': 1.0, 'price': 1.0, 'such': 1.0, 'observant': 1.0, 'for': 2.0, 'return': 1.0, 'seemed': 2.0, 'straps': 2.0, 'like': 5.0, 'very': 2.0, 'being': 2.0, 'longer': 1.0, 'does': 1.0, 'or': 1.0, 'falling': 1.0, 'you': 1.0, 'when': 6.0, 'us': 2.0, 'also': 2.0, 'anyone': 1.0, 'and': 11.0, 'our': 2.0, 'reflux': 1.0, 'have': 3.0, 'they': 1.0, 'life': 2.0, 'light': 1.0, 'with': 4.0, 'using': 2.0, 'few': 1.0, 'this': 1.0, 'many': 1.0, 'where': 1.0, 'been': 1.0, 'waves': 1.0, 'be': 3.0, 'it': 12.0, 'products': 1.0, 'may': 1.0, 'gave': 1.0, 'however': 1.0, 'often': 1.0, 'might': 1.0, 'fasten': 2.0, 'a': 13.0, 'we': 5.0, 'ashore': 1.0, 'difference': 1.0, 'only': 1.0, 'then': 1.0, 'sleeps': 1.0, 'fischer': 1.0, 'assembly': 1.0, 'clear': 1.0, 'wake': 1.0, 'washing': 1.0, 'up': 2.0, 'as': 4.0, 'less': 1.0, 'the': 20.0, 'colic': 1.0, 'experience': 1.0, 'comfortable': 1.0, 'tray': 4.0, 'noise': 1.0, 'one': 1.0, '5': 1.0, 'was': 5.0, 'refund': 1.0, 'seat': 1.0, 'in': 7.0, 'uninteresting': 1.0, 'place': 1.0, 'kid': 3.0, 'of': 1.0, 'allowed': 1.0, 'even': 2.0, 'took': 1.0, 'noticed': 1.0, 'on': 1.0, 'long': 1.0, 'him': 3.0, 'he': 8.0, 'had': 2.0, 'used': 2.0, 'an': 1.0, 'older': 1.0, 'visiting': 1.0, 'make': 1.0, 'big': 1.0, 'liked': 2.0, 'hands': 1.0, 'play': 1.0, 'about': 1.0, 'going': 1.0, 'attached': 2.0, 'toys': 2.0, 'sense': 1.0, 'from': 1.0, 'his': 1.0, 'miracle': 1.0, 'sometimes': 1.0, 'comfy': 1.0, 'much': 2.0, 'cove': 1.0, 'no': 1.0, 'tip': 1.0, 'out': 1.0, 'upright': 1.0, 'attempt': 1.0, 'problem': 1.0, 'now': 1.0, 'xmas': 1.0, 'more': 1.0, 'kind': 1.0, 'time': 1.0, 'did': 1.0, 'that': 1.0, 'placed': 1.0, 'jostled': 2.0, 'could': 1.0, 'especially': 2.0, 'use': 2.0, 'graco': 1.0, 'poor': 1.0, 'either': 1.0, 'system': 1.0, 'resulted': 1.0, 'getting': 2.0, 'while': 1.0, 'trying': 1.0, 'awake': 1.0, 'similar': 1.0, 'scream': 1.0, 'though': 1.0, 'after': 1.0, 'by': 1.0, 'naps': 1.0, 'amazon': 1.0, 'friend': 1.0, 'has': 2.0}
Word element => {'recommend': 1.0, 'm': 1.0, 'purchase': 1.0, 'with': 1.0, 'came': 1.0, 'leaving': 1.0, 'taking': 1.0, 'match': 1.0, 'cover': 1.0, 'good': 1.0, 'fabric': 1.0, 'have': 1.0, 'if': 1.0, 'stats': 1.0, 'get': 1.0, 'toys': 1.0, 'other': 1.0, 'in': 1.0, 'at': 1.0, 'option': 2.0, '5': 1.0, 'i': 2.0, '4': 1.0, 'it': 4.0, 'take': 1.0, 'would': 2.0, 'baby': 4.0, '6': 1.0, 'pleasant': 1.0, 'the': 8.0, 'find': 1.0, 'hang': 2.0, 'swinging': 1.0, 'plug': 1.0, 'or': 3.0, 'depending': 1.0, 'this': 1.0, 'mama': 1.0, 'swing': 2.0, 'look': 1.0, 'takes': 1.0, 'speeds': 1.0, 'plaid': 1.0, 'on': 1.0, 'shower': 1.0, 'of': 5.0, 'meets': 1.0, 'that': 2.0, 'above': 1.0, 'various': 1.0, 'time': 1.0, 'needs': 1.0, 'could': 1.0, 'might': 1.0, 'we': 1.0, 'a': 2.0, 'green': 1.0, 'too': 1.0, 'and': 3.0, 'for': 1.0, 'stars': 1.0, 'exercises': 1.0, 'very': 1.0, 'day': 1.0, 'importantly': 1.0, 'use': 1.0, 'music': 1.0, 'most': 1.0, 'chosen': 1.0, 'as': 2.0, 'our': 4.0, 'to': 8.0, 'decor': 1.0, 'be': 2.0, 'instead': 1.0, 'there': 2.0, 'among': 1.0, 'more': 1.0, 'is': 1.0, 'multitude': 1.0, 'products': 1.0, 'out': 2.0, 'mood': 1.0, 'well': 2.0, 'likes': 1.0, 'thing': 1.0, 'happy': 2.0, 'from': 1.0, 'while': 3.0, 'papa': 1.0}
Word element => {'recommeded': 1.0, 'time': 1.0, 'no': 1.0, 'daughter': 1.0, 'in': 1.0, 'i': 2.0, 'loves': 1.0, 'this': 2.0, 'it': 1.0, 'absolutely': 1.0, 'love': 1.0, 'were': 1.0, 'swing': 1.0, 'my': 2.0, 'highly': 1.0, 'and': 2.0, 'put': 1.0, 'husband': 1.0, 'together': 1.0, 'able': 1.0, 'to': 1.0}
Word element => {'good': 1.0, 'new': 1.0, 'with': 1.0, 'arrival': 1.0, 'defective': 1.0, 'grandson': 1.0, 'as': 1.0, 'a': 2.0, 'even': 1.0, 'present': 1.0, 'battery': 1.0, 'bought': 1.0, 'christmas': 1.0, 'for': 1.0, 'upon': 1.0, 'my': 1.0, 'the': 1.0, 'motor': 1.0, 'not': 1.0, 'was': 1.0}
Word element => {'us': 1.0, 'on': 1.0, 'keep': 1.0, 'times': 1.0, 'replaced': 1.0, 'about': 1.0, 'people': 1.0, 'complaint': 1.0, 'few': 4.0, 'swing': 3.0, 'little': 1.0, 've': 2.0, 'would': 1.0, 'one': 2.0, 'model': 2.0, 'for': 1.0, 'i': 1.0, 'over': 1.0, 'dies': 1.0, 'this': 6.0, 'it': 3.0, 'all': 1.0, 'but': 1.0, 'dieing': 3.0, 'weeks': 1.0, 'is': 1.0, 'features': 1.0, 'great': 2.0, 'the': 4.0, 'and': 3.0, 'buy': 2.0, 'looking': 1.0, 'aside': 1.0, 'has': 1.0, 'makes': 1.0, 'good': 1.0, 'of': 1.0, 'motor': 3.0, 'keeps': 2.0, 'from': 2.0, 'same': 3.0, 'being': 1.0, 'been': 1.0, 'that': 1.0, 'we': 2.0, 'a': 6.0, 'go': 1.0, 'do': 1.0, 'works': 1.0, 'through': 1.0, 'then': 1.0, 'not': 2.0, 'heard': 1.0, 'loud': 1.0, 'ive': 1.0}
Word element => {'without': 1.0, 'assemble': 1.0, 'a': 1.0, 'quiet': 1.0, 'while': 1.0, 'to': 2.0, 'music': 1.0, 'seem': 1.0, 'easy': 1.0, 'last': 1.0, 'nice': 1.0, 'do': 1.0, 'and': 1.0, 'batteries': 1.0, 'nature': 1.0, 'we': 1.0, 'smooth': 1.0, 'speed': 1.0, 'settings': 1.0, 'could': 1.0, 'counds': 1.0, 'the': 1.0, '6': 1.0, '34': 2.0, 'sounds': 1.0}
Word element => {'first': 1.0, 'the': 1.0, 'especially': 1.0, 'one': 1.0, 'i': 2.0, 'bought': 1.0, 'and': 1.0, 'it': 3.0, 'great': 1.0, 'for': 3.0, 'a': 1.0, 'partents': 1.0, 'friend': 1.0, 'recommend': 1.0, 'turned': 1.0, 'out': 1.0}
Word element => {'this': 1.0, 'outwould': 1.0, 'in': 1.0, 'and': 1.0, 'very': 1.0, 'i': 1.0, 'recommend': 1.0, 'sturdy': 1.0, 'it': 1.0, 'love': 1.0, 'product': 1.0, 'to': 2.0, 'easy': 2.0, 'use': 1.0, 'put': 1.0, 'my': 1.0, 'baby': 1.0}
Word element => {'faster': 1.0, 'goes': 1.0, 'older': 1.0, 'baby': 1.0, 'loves': 1.0, 'get': 1.0, 'everything': 1.0, 'is': 1.0, 'they': 1.0, 'great': 1.0, 'it': 2.0, 'works': 1.0, 'multiple': 1.0, 'speeds': 1.0, 'as': 1.0}
Word element => {'you': 1.0, 'between': 1.0, 'a': 1.0, 'see': 1.0, 'can': 2.0, 'but': 1.0, 'different': 1.0, 'easy': 1.0, '1': 1.0, 'difference': 1.0, 'and': 2.0, 'described': 1.0, 'as': 1.0, 'like': 1.0, 'was': 2.0, 'thing': 1.0, 'exactly': 1.0, 'though': 1.0, 'much': 1.0, 'didn': 1.0, 'swing': 1.0, 'assembly': 1.0, '6': 2.0, 'says': 1.0, 'take': 1.0, 'has': 1.0, 'time': 1.0, 'settings': 3.0, 'is': 1.0, '2': 2.0, 't': 3.0, 'the': 1.0, 'i': 2.0, 'don': 1.0, 'with': 1.0, 'this': 1.0, 'only': 1.0, 'it': 2.0}
Word element => {'used': 1.0, 'way': 1.0, 'might': 1.0, 'that': 1.0, 'swing': 1.0, 'a': 1.0, 'over': 1.0, 'tip': 1.0, 'room': 1.0, 'made': 1.0, 'concerned': 1.0, 'living': 1.0, 'your': 1.0, 'means': 1.0, 'which': 1.0, 'm': 1.0, 'by': 1.0, 'swings': 1.0, 'taken': 1.0, 'it': 4.0, 'can': 1.0, 'without': 1.0, 'whole': 1.0, 'i': 2.0, 'here': 1.0, 'so': 1.0, 'yet': 2.0, 'these': 1.0, 't': 2.0, 'the': 2.0, 'baby': 1.0, 'because': 1.0, 'not': 2.0, 'haven': 1.0, 'hold': 1.0, 'is': 5.0, 'if': 1.0, 'tipping': 1.0, 'up': 1.0, 'of': 3.0, 'will': 1.0, 'but': 2.0, 'say': 1.0, 'than': 1.0, 'types': 1.0, 'smaller': 1.0, 'most': 1.0}
Word element => {'which': 1.0, 'ocean': 1.0, 'has': 1.0, 'also': 1.0, 'freaking': 1.0, 'space': 1.0, 'take': 1.0, 'not': 1.0, 'does': 1.0, 'room': 1.0, 'much': 1.0, 'living': 1.0, 'see': 1.0, 'baby': 1.0, 'and': 3.0, 'together': 1.0, 'perfect': 1.0, 'this': 2.0, 'with': 1.0, 'part': 1.0, 'weeks': 1.0, 'in': 2.0, 'is': 2.0, 'around': 2.0, 'i': 2.0, 'm': 1.0, 'here': 1.0, 'be': 1.0, 'perfectly': 1.0, 'll': 1.0, 'still': 1.0, 'can': 1.0, 'but': 1.0, 'pregnant': 1.0, 'have': 1.0, 'awesome': 1.0, 'girl': 1.0, 'hubby': 1.0, 'amazing': 1.0, 'fits': 1.0, 'my': 3.0, 'few': 1.0, 'little': 2.0, 'it': 5.0, 'she': 1.0, 'tested': 1.0, 'out': 1.0, 'of': 2.0, 'course': 1.0, 'way': 1.0, 'you': 2.0, 'love': 1.0, 'that': 1.0, 'spins': 1.0, 'the': 5.0, 'we': 1.0, 'a': 1.0, 's': 1.0, 't': 1.0, 'carrier': 1.0, 'so': 3.0, 'sound': 1.0, 'up': 1.0, 'don': 1.0, 'all': 1.0, 'to': 1.0, 'put': 1.0, 'constantly': 1.0, 'move': 1.0}
Word element => {'own': 1.0, 'sad': 1.0, 'bar': 2.0, 'toy': 2.0, 'stars': 1.0, 'escalated': 1.0, 'out': 1.0, 'know': 1.0, 'us': 1.0, 'let': 1.0, 'minutes': 1.0, '15': 1.0, 't': 1.0, 'sweaty': 1.0, 's': 1.0, 'makes': 1.0, 'instead': 1.0, 'pandora': 1.0, 'about': 1.0, 'play': 1.0, 'cons': 1.0, 'plush': 1.0, 'quality': 1.0, 'noise': 1.0, 'instantly': 1.0, 'get': 1.0, 'way': 1.0, 'all': 2.0, 'sound': 3.0, 'turned': 1.0, 'each': 1.0, 'for': 2.0, 'of': 1.0, 'the': 13.0, 'are': 1.0, 'bad': 1.0, 'first': 1.0, 'll': 1.0, 'ways': 1.0, 'though': 1.0, 'during': 1.0, 'grew': 1.0, 'eventually': 1.0, 'my': 6.0, 'avoid': 1.0, 'into': 1.0, 'but': 4.0, 'ozs': 1.0, '2': 1.0, 'summer': 1.0, 'would': 2.0, 'properly': 1.0, 'while': 1.0, 'pediatrician': 1.0, 'not': 2.0, 'because': 2.0, 'couldn': 1.0, 'dropping': 1.0, 'feeding': 1.0, 'your': 1.0, 'keeps': 1.0, 'supported': 1.0, 'can': 1.0, 'so': 3.0, 'time': 1.0, 'swing': 4.0, 'is': 1.0, 'at': 1.0, 'perfect': 1.0, 'bottle': 1.0, 'this': 3.0, 'to': 5.0, 'in': 8.0, 'seat': 3.0, 'back': 1.0, 'sleep': 1.0, 'could': 4.0, 'head': 1.0, 'baby': 4.0, 'after': 1.0, 'a': 2.0, 'small': 1.0, 'as': 1.0, 'falls': 2.0, 'too': 2.0, 'there': 2.0, 'chair': 1.0, 'nap': 1.0, 'helps': 1.0, '6': 1.0, 'he': 7.0, 'adjust': 1.0, 'music': 1.0, 'his': 3.0, 'him': 3.0, 'it': 9.0, 'born': 1.0, 'spit': 2.0, 'swings': 1.0, 'toys': 1.0, 'eczema': 1.0, 'hot': 2.0, 'sounds': 1.0, 'was': 6.0, 'lbs': 1.0, 'you': 3.0, 'sit': 1.0, 'when': 1.0, '12': 1.0, 'had': 1.0, 'pros': 1.0, 'son': 1.0, 'works': 1.0, 'bouncy': 1.0, 'just': 2.0, 'by': 2.0, 'ups': 2.0, '4': 1.0, 'i': 4.0, 'directions': 1.0, 'stay': 1.0, 'still': 1.0, 'if': 1.0, 'and': 6.0, 'recommended': 1.0, 'arms': 1.0, 'take': 1.0, 'fine': 1.0, 'swinging': 1.0, 'asleep': 2.0, 'side': 4.0, 'much': 1.0, 'put': 2.0, 'up': 1.0, 'rotate': 1.0, 'on': 3.0, 'long': 2.0, 'colic': 1.0, 'be': 1.0, 'nature': 1.0, 'noises': 1.0, 'were': 1.0, 'more': 1.0, 'like': 1.0, 'loves': 1.0, 'white': 2.0, 'quiet': 1.0, 'really': 1.0}
Word element => {'anyone': 1.0, 'they': 1.0, 'works': 1.0, 'her': 1.0, 'part': 1.0, 'used': 1.0, 'swing': 2.0, '2013': 1.0, '15': 1.0, 'born': 1.0, 'have': 1.0, 'very': 1.0, 'i': 3.0, 'weighs': 1.0, 'buy': 1.0, 'longer': 1.0, 'disappointed': 1.0, 'the': 2.0, 'heavy': 1.0, 'baby': 1.0, 'my': 2.0, 'another': 1.0, 'this': 2.0, 'nor': 1.0, 'it': 1.0, 'daughter': 2.0, 'product': 1.0, 'for': 3.0, 'bought': 1.0, 'one': 1.0, '6': 1.0, 'recommend': 1.0, 'was': 1.0, 'to': 2.0, 'weeks': 1.0, 'grand': 1.0, 'would': 2.0, 'never': 1.0, 'weighed': 1.0, 'enough': 1.0, '7lbs': 1.0, 'working': 1.0, 'and': 1.0, 'no': 1.0, 'january': 1.0, 'today': 1.0, '9': 1.0, '12': 1.0, 'lbs': 1.0, 'not': 1.0, 'stop': 1.0}
Word element => {'little': 1.0, 'comfortably': 1.0, 'hold': 1.0, 'which': 1.0, 'needs': 1.0, 'do': 2.0, 'will': 1.0, 'is': 1.0, 'more': 1.0, 'job': 1.0, 'the': 4.0, 'figured': 1.0, 'yet': 1.0, 'i': 4.0, 'whistles': 1.0, 'newer': 1.0, 'for': 2.0, 'stars': 1.0, 'and': 3.0, 'gotten': 1.0, 'people': 1.0, 'registered': 1.0, 'other': 1.0, 'bells': 1.0, 'have': 1.0, 'due': 2.0, 'this': 1.0, 'it': 4.0, 'would': 1.0, 'after': 1.0, 'reviews': 1.0, 'swing': 1.0, 'good': 1.0, 'while': 1.0, 'hearing': 1.0, 'from': 1.0, 'm': 2.0, '5': 1.0, 'as': 1.0, 'to': 4.0, 'model': 1.0, 'easy': 2.0, 'assembly': 1.0, 'baby': 2.0, 'anticipate': 1.0, 'hasn': 1.0, 'giving': 1.0, 'here': 1.0, 'in': 1.0, 'weeks': 1.0, '3': 1.0, 'put': 1.0, 'but': 1.0, 'a': 1.0, 't': 1.0, 'we': 1.0, 's': 1.0, 'still': 1.0, 'together': 1.0}
Word element => {'with': 1.0, 'mom': 1.0, 'any': 1.0, 'too': 1.0, 'product': 1.0, 'not': 1.0, 'or': 1.0, 'replace': 1.0, 'having': 1.0, 'are': 1.0, 'blown': 1.0, 'completely': 1.0, 'swings': 1.0, 'half': 1.0, 'this': 1.0, 'few': 1.0, 'but': 2.0, '2': 1.0, 'when': 1.0, 'while': 1.0, 'new': 1.0, 'time': 2.0, 'disappointed': 1.0, 'our': 1.0, 'in': 1.0, 'seat': 1.0, 'as': 2.0, 'her': 3.0, 'loved': 1.0, 'be': 2.0, 'absolutely': 1.0, 'no': 1.0, 'about': 1.0, 'once': 1.0, 'was': 5.0, 'other': 2.0, 'lifesaver': 1.0, 'a': 7.0, 't': 1.0, 'swing': 2.0, 'rocked': 1.0, 'deal': 1.0, 'baby': 1.0, 'she': 1.0, 'that': 4.0, 'recommend': 1.0, 'were': 1.0, 'is': 5.0, 'motor': 2.0, 'love': 1.0, 'assemble': 1.0, 'such': 1.0, 'for': 3.0, 'essential': 1.0, 'purchasing': 1.0, 'anyone': 1.0, 'and': 8.0, 'entire': 1.0, 'my': 1.0, 'daughter': 1.0, 'hassle': 1.0, 'arrived': 2.0, 'it': 11.0, '9': 1.0, 'stopping': 2.0, 'to': 12.0, 'pretty': 1.0, 'doing': 2.0, 'of': 3.0, 'the': 11.0, 'position': 1.0, 'either': 1.0, 'weeks': 1.0, 'would': 3.0, 'you': 1.0, 'things': 1.0, 'motion': 1.0, 'seconds': 1.0, 'didn': 1.0, 'even': 1.0, 'seem': 1.0, 'awhile': 1.0, 'after': 2.0, 'week': 1.0, 'sleep': 1.0, 'back': 3.0, 'been': 1.0, 'forth': 1.0, 'soothing': 1.0, 'down': 3.0, 'can': 1.0, 'so': 1.0, 'speed': 1.0, 'short': 1.0, 'day': 1.0, 'found': 1.0, 'easy': 1.0, 'however': 1.0, 'please': 1.0, 'though': 1.0, 'amount': 1.0, 'noticed': 1.0, 'on': 3.0, 'much': 1.0, 'put': 1.0, 'old': 1.0, 'number': 2.0, 'then': 3.0, 'we': 6.0, 'swinging': 1.0, 'fine': 1.0, 'setting': 3.0, 'side': 2.0, 'which': 1.0, 'had': 1.0, 'always': 1.0, 'i': 2.0, 'fast': 1.0, 'if': 1.0, '6': 2.0, 'very': 5.0, 'slow': 2.0, '1': 1.0, 'now': 1.0, 'almost': 1.0, 'change': 1.0, 'pleased': 1.0, 'up': 1.0}
Word element => {'back': 1.0, 'front': 1.0, 'side': 2.0, 'from': 1.0, 'swings': 1.0, 'so': 1.0, 'or': 1.0, 'into': 1.0, 'plugs': 1.0, 'my': 1.0, 'the': 1.0, 't': 1.0, 'how': 2.0, 'love': 1.0, 'this': 1.0, 'it': 2.0, 'you': 1.0, 'wall': 1.0, 'i': 2.0, 'to': 3.0, 'use': 1.0, 'swing': 1.0, 'batteries': 1.0, 'and': 1.0, 'like': 1.0, 'don': 1.0, 'baby': 1.0, 'have': 1.0, 'likes': 1.0}
Word element => {'day': 1.0, 'all': 1.0, 'can': 1.0, 'we': 1.0, 'use': 1.0, 'doesn': 1.0, 'because': 1.0, 'music': 2.0, 'leave': 1.0, 'is': 3.0, 'my': 1.0, 'plug': 1.0, 'loves': 1.0, 'on': 1.0, 'guy': 1.0, 'and': 3.0, 'comforting': 1.0, 'batteries': 1.0, 'swing': 2.0, 'little': 1.0, 'movement': 1.0, 'up': 1.0, 'of': 1.0, 'this': 1.0, 'it': 2.0, 't': 1.0, 'the': 4.0, 'great': 1.0, 's': 1.0, 'a': 1.0, 'perfect': 1.0, 'in': 1.0, 'which': 1.0, 'soothing': 1.0, 'too': 1.0}
Word element => {'great': 1.0, 'are': 1.0, 'lay': 1.0, 'up': 1.0, 'sit': 1.0, 'back': 1.0, 'front': 1.0, 'or': 2.0, 'side': 2.0, 'goes': 1.0, 'options': 2.0, 'down': 1.0, 'speed': 1.0, 'old': 1.0, 'reason': 1.0, 'only': 1.0, 'he': 1.0, 'loud': 1.0, 'this': 1.0, 'feeding': 1.0, 'three': 1.0, 'swing': 2.0, 'different': 1.0, 'last': 1.0, 'easy': 1.0, 'his': 1.0, 'the': 6.0, 'fact': 1.0, 'my': 1.0, 'quite': 1.0, 'bedtime': 1.0, 'trouble': 1.0, 'put': 1.0, 'it': 3.0, 'month': 1.0, 'just': 1.0, 'not': 1.0, 'having': 1.0, 'because': 1.0, 'son': 1.0, 'sleeping': 1.0, 'very': 1.0, 'after': 1.0, 'was': 2.0, 'to': 5.0, 'that': 1.0, 'loves': 1.0, 'gave': 1.0, 'i': 1.0, '4': 1.0, 'and': 2.0, 'before': 1.0, '5': 1.0, 'is': 2.0, 'music': 1.0, 'stars': 1.0, 'for': 2.0, 'love': 2.0, 'we': 1.0, 'a': 1.0, 'new': 1.0, 'born': 1.0, 'baby': 2.0, 'together': 1.0}
Word element => {'definitely': 1.0, 'a': 1.0, 'need': 1.0, 'pretty': 1.0, 'of': 1.0, 'you': 1.0, 'easily': 1.0, 'lbs': 2.0, 'far': 2.0, 'so': 2.0, 'soothes': 1.0, 'however': 1.0, 'now': 1.0, '12': 1.0, 'had': 1.0, 'recommend': 1.0, 'was': 2.0, 'is': 3.0, 'assembled': 1.0, 'the': 1.0, 'this': 2.0, 'only': 1.0, 'i': 3.0, 'would': 1.0, 'oz': 1.0, '5': 1.0, 'cool': 1.0, 'months': 1.0, 'bought': 1.0, 'newborn': 1.0, 'have': 1.0, 'for': 2.0, 'and': 4.0, '8': 1.0, 'perfectly': 1.0, 'powerful': 1.0, 'setting': 1.0, '1': 1.0, 'it': 6.0, 'she': 3.0, 'my': 1.0, 'fits': 1.0, 'her': 1.0, 'screwdriver': 1.0, 'look': 1.0, 'right': 1.0, 'all': 1.0, 'to': 2.0, 'least': 1.0, 'sleep': 1.0, 'has': 2.0, 'they': 1.0, '6': 1.0, 'speeds': 1.0, 'swing': 2.0, 'by': 1.0, 'are': 1.0, 'use': 1.0, 'at': 1.0, '2': 1.0, 'music': 1.0}
Word element => {'yet': 1.0, 'favorite': 1.0, 'great': 1.0, 'days': 1.0, 'within': 1.0, 'motor': 1.0, 'replacement': 1.0, 'service': 2.0, 'customer': 1.0, 'obnoxious': 1.0, 'me': 2.0, 'battery': 1.0, 'minutes': 1.0, 'friend': 1.0, '13': 1.0, 'her': 1.0, 'softer': 1.0, 'year': 2.0, '12': 1.0, 'memory': 1.0, 'visit': 1.0, 'over': 1.0, 'who': 1.0, 'notice': 1.0, 'frustrating': 1.0, 'far': 1.0, 'pronounced': 1.0, 'box': 1.0, 'sure': 1.0, 'usage': 1.0, 'movement': 1.0, 'has': 1.0, 'new': 1.0, 'use': 2.0, 'easy': 2.0, 'carpet': 1.0, 'had': 5.0, 'level': 1.0, 'hardwood': 1.0, 'when': 2.0, 'noticed': 1.0, 'steady': 1.0, 'keep': 1.0, 'uneven': 1.0, 'straight': 1.0, 'floor': 2.0, 'flap': 1.0, 'flat': 1.0, 'con': 1.0, 'considering': 1.0, 'more': 5.0, 'settings': 1.0, 'motion': 1.0, 'you': 3.0, 'side': 4.0, 'which': 1.0, 'moves': 1.0, 'old': 2.0, 'of': 9.0, 'directions': 2.0, 'up': 3.0, 'chair': 1.0, 'change': 1.0, 'but': 4.0, 'bopping': 2.0, 'so': 5.0, 'yes': 1.0, 'see': 1.0, 'been': 1.0, 'back': 7.0, 'making': 2.0, 'less': 1.0, 'sit': 1.0, 'about': 1.0, 'faces': 1.0, 'big': 1.0, 'statement': 1.0, 'said': 1.0, 'together': 1.0, 'in': 13.0, 'seat': 2.0, 'review': 1.0, 'their': 1.0, 'can': 3.0, 'is': 12.0, 'major': 1.0, 'sits': 1.0, 'for': 7.0, 'combined': 1.0, 'love': 3.0, 'he': 1.0, '6': 1.0, 'arms': 1.0, 'and': 19.0, 'incredibly': 1.0, 'put': 5.0, 'do': 2.0, 'forth': 2.0, 'much': 2.0, 'your': 4.0, 'out': 5.0, 'baby': 4.0, 'causing': 1.0, 'off': 2.0, 'neither': 1.0, 'have': 4.0, 'four': 1.0, 'swing': 15.0, 'that': 8.0, 'quiet': 1.0, 'because': 4.0, 'heads': 1.0, 'loves': 3.0, 'difficult': 2.0, 'traditional': 2.0, 'no': 2.0, 'velcroed': 1.0, 'dispel': 1.0, 'isn': 1.0, 'care': 2.0, 'any': 1.0, 'pretty': 1.0, 'problem': 2.0, 'pads': 2.0, 'now': 1.0, 'trying': 1.0, 'think': 1.0, 'another': 2.0, 'could': 3.0, 'will': 2.0, 'called': 1.0, 'we': 10.0, 'only': 1.0, 'cheap': 1.0, 'then': 3.0, 'a': 14.0, 'feature': 1.0, 'couple': 1.0, 'parts': 1.0, 'similar': 1.0, 'advised': 1.0, 'some': 3.0, 'take': 1.0, 'never': 2.0, 'what': 1.0, 'front': 2.0, 'fact': 1.0, 'the': 37.0, 'living': 1.0, 'son': 1.0, 'ton': 1.0, 'this': 12.0, 'took': 1.0, 'despite': 1.0, 'adjust': 1.0, '860': 1.0, 'not': 8.0, 'different': 3.0, 'assemble': 1.0, 'felt': 2.0, 'months': 1.0, 'get': 2.0, 'swings': 5.0, 'like': 7.0, 'sounds': 1.0, 'point': 1.0, 'locking': 1.0, 'one': 2.0, 'too': 3.0, 'thinking': 1.0, 'i': 11.0, 'cons': 2.0, 'bit': 3.0, 'us': 2.0, 'actually': 1.0, 'face': 1.0, 'completely': 2.0, '4': 1.0, 'cutting': 1.0, 'rotates': 1.0, 'each': 3.0, 'around': 2.0, 'his': 1.0, 'circle': 1.0, 'super': 1.0, 'don': 1.0, 'reviewer': 2.0, 'still': 3.0, 'stars': 2.0, 'pathetic': 1.0, 'bigger': 2.0, 'slow': 3.0, 'very': 1.0, 'everyone': 1.0, 've': 2.0, 'used': 1.0, 'lower': 1.0, 'above': 1.0, 't': 4.0, 'd': 1.0, 'to': 17.0, 'reasonable': 1.0, 'highest': 1.0, 'options': 1.0, 'option': 2.0, 'foot': 1.0, 'using': 1.0, 'with': 2.0, 'mobile': 3.0, 'would': 3.0, 'bar': 4.0, 'hogging': 1.0, 'moved': 2.0, 'two': 1.0, 'my': 7.0, 'are': 3.0, 'on': 2.0, 's': 1.0, 'm': 1.0, 'doesn': 2.0, 'be': 4.0, 'it': 20.0, 'fully': 1.0, 're': 1.0, 'mine': 2.0, 'child': 1.0, 'foam': 1.0, 'twins': 2.0, 'head': 1.0, 'does': 4.0, 'removable': 1.0, 'after': 1.0, 'by': 2.0, 'though': 2.0, 'rocks': 1.0, 'an': 2.0, '20': 1.0, 'way': 4.0, 'all': 1.0, 'fits': 1.0, 'time': 2.0, 'without': 3.0, 'maybe': 1.0, 'they': 2.0, 'go': 4.0, 'designed': 1.0, 'against': 1.0, 'bought': 1.0, 'comes': 2.0, 'or': 6.0, 'makes': 1.0, 'underneath': 1.0, 'here': 1.0, 'footprint': 1.0, 'children': 1.0, 'plug': 1.0, 'expect': 1.0, 'squeak': 1.0, 'luckily': 1.0, 'every': 1.0, 'speed': 2.0, 'radius': 2.0, 'collapse': 2.0, 'agree': 1.0, 'set': 1.0, 'totally': 3.0, 'spot': 1.0, 'most': 1.0, 'space': 2.0, 'base': 1.0, 'live': 1.0, 'square': 1.0, 'house': 3.0, 'there': 2.0, '8': 1.0, 'nicely': 1.0, 'angled': 1.0, 'quotations': 1.0, 'corner': 1.0, 'our': 1.0, 'area': 1.0}
Word element => {'suggest': 1.0, 'would': 1.0, 'boy': 1.0, 'great': 1.0, 'on': 2.0, 'put': 1.0, 'think': 1.0, 'nice': 3.0, 'big': 1.0, 'excited': 1.0, 'once': 1.0, 'a': 7.0, 'has': 2.0, 'review': 1.0, 'mood': 1.0, 'time': 1.0, '30': 1.0, 'this': 4.0, 'soft': 1.0, 'together': 1.0, 'recline': 1.0, 'it': 5.0, 'like': 1.0, 'was': 1.0, 'minutes': 1.0, 'to': 6.0, 'product': 4.0, 'for': 2.0, 'colors': 1.0, 'stars': 1.0, 'from': 1.0, 'swing': 1.0, 's': 1.0, 'maybe': 1.0, 'laying': 1.0, 'using': 1.0, 'looking': 1.0, 'of': 1.0, 'the': 9.0, 'snuggle': 1.0, 'complimentary': 1.0, 'material': 1.0, 'my': 1.0, 'may': 1.0, 'due': 1.0, 'infant': 1.0, '6': 1.0, 'i': 8.0, 'or': 1.0, 'feature': 2.0, 'otherwise': 1.0, 'deal': 1.0, 'baby': 5.0, 'features': 1.0, 'is': 6.0, 'total': 1.0, 'lot': 1.0, 'easy': 1.0, 'multiple': 1.0, 'be': 1.0, 'graco': 1.0, 'sweet': 1.0, 'girl': 1.0, 'depending': 1.0, 'seat': 1.0, 'm': 4.0, 'not': 2.0, 'forward': 1.0, 'but': 2.0, 'sitting': 1.0, 'sounds': 2.0, 'received': 1.0, 'also': 1.0, 'could': 1.0, 'will': 1.0, 'between': 1.0, 'songs': 1.0, 'and': 5.0, 'speeds': 1.0, 'problem': 1.0, 'able': 1.0, 'back': 1.0, 'upright': 1.0, 'pleased': 1.0, 'postition': 1.0, 'only': 1.0, 'thing': 1.0, 'above': 1.0, 'are': 1.0, 'attached': 1.0, '35': 1.0, 'by': 1.0, 'arrives': 1.0, 'velco': 1.0, 'until': 1.0, 'off': 1.0, 'fall': 1.0, 'that': 1.0, 'easily': 1.0, 'being': 1.0, 'very': 3.0, 'use': 1.0, 'anticipating': 1.0, 'overall': 1.0}
Word element => {'purpose': 1.0, 'double': 1.0, 'serves': 1.0, 'always': 1.0, 'being': 1.0, 'sharing': 1.0, 'bed': 1.0, 'since': 1.0, 'another': 1.0, 'crib': 1.0, 'say': 1.0, 'handy': 1.0, 'room': 2.0, 'comes': 1.0, 'turn': 1.0, 'every': 1.0, 'still': 1.0, 'old': 1.0, '5': 1.0, 'daughter': 1.0, 'on': 1.0, 'update': 1.0, 'great': 3.0, 'was': 2.0, 'when': 2.0, 'raise': 1.0, 'straps': 1.0, 'uncomfortable': 1.0, 'little': 1.0, 'item': 1.0, 'how': 1.0, 'commented': 1.0, 'have': 3.0, 'parts': 1.0, 'new': 1.0, 'main': 1.0, 'into': 1.0, 'easy': 1.0, 'clean': 1.0, 'car': 1.0, 'via': 1.0, 'with': 1.0, 'will': 1.0, 'disassemble': 1.0, 'travel': 1.0, 'also': 1.0, 'cover': 2.0, 'babies': 1.0, 'deep': 2.0, 'that': 4.0, 's': 5.0, 't': 3.0, 'a': 11.0, 'then': 1.0, 'we': 3.0, 'work': 2.0, 'machine': 3.0, '2': 1.0, 'doesn': 2.0, 'listen': 1.0, 'able': 1.0, 'night': 1.0, 'blankets': 1.0, 'motion': 1.0, 'about': 3.0, 'lifesaver': 1.0, 'newborn': 2.0, 'complain': 1.0, 'who': 1.0, 'arrived': 1.0, 'as': 6.0, 'to': 10.0, 'sleep': 1.0, 'all': 1.0, 'for': 2.0, 'lot': 1.0, 'one': 1.0, 'some': 1.0, 'knew': 1.0, 'getting': 1.0, 'so': 5.0, 'soon': 1.0, 'and': 14.0, 'swing': 4.0, 'white': 1.0, 'loves': 1.0, 'strap': 1.0, 'naps': 1.0, 'my': 5.0, 'lo': 4.0, 'the': 13.0, 'of': 2.0, 'swung': 1.0, 'took': 1.0, 'loved': 1.0, 'i': 11.0, 'prior': 1.0, 'did': 2.0, 'ocean': 1.0, 'just': 2.0, 'care': 1.0, 'like': 1.0, 'months': 2.0, 'get': 1.0, 'she': 7.0, 'same': 1.0, 'often': 1.0, 'month': 1.0, 'love': 1.0, 'bottom': 1.0, 'far': 1.0, 'he': 1.0, 'few': 1.0, 'this': 7.0, 'it': 9.0, 'recline': 1.0, 'which': 3.0, 'side': 4.0, 'swings': 1.0, 'seat': 2.0, 'in': 10.0, 'm': 1.0, 'people': 1.0, 'both': 1.0, 'noise': 4.0, 'their': 1.0, 'lucky': 1.0, 'isn': 1.0, 'is': 5.0, 'at': 3.0, 'look': 2.0, 'but': 3.0, 'enjoys': 2.0, 'let': 1.0, 'traditional': 1.0, 've': 3.0, 'would': 1.0, 'had': 4.0, 'songs': 1.0, 'only': 2.0, 'used': 2.0, 'were': 1.0, 'full': 1.0, 'overnight': 1.0, 'use': 1.0, 'wash': 1.0, 'her': 5.0, 'are': 1.0, 'first': 1.0, 'really': 3.0, 'help': 1.0, 'sound': 1.0, 'major': 1.0, 'takes': 1.0, 'up': 2.0, 'pg': 1.0, 'now': 4.0, 'll': 1.0, 'sometimes': 1.0, 'much': 1.0, 'general': 1.0, 'put': 2.0, 'particular': 2.0, 'way': 1.0, 'out': 1.0, 'toys': 1.0}
Word element => {'100': 1.0, 'spend': 1.0, 'especially': 1.0, 'standards': 1.0, 'low': 1.0, 'give': 1.0, 'understand': 1.0, 'this': 2.0, 'recommend': 1.0, 'super': 1.0, 'in': 1.0, 'plugs': 1.0, 'into': 1.0, 'been': 1.0, 'a': 4.0, 't': 2.0, 's': 2.0, '3': 1.0, 'think': 1.0, 'on': 2.0, 'time': 1.0, 'people': 1.0, 'house': 1.0, 'would': 2.0, 'weeks': 1.0, 'now': 1.0, 'is': 6.0, 'at': 2.0, 'be': 1.0, 'like': 1.0, 'other': 1.0, 'all': 1.0, 'am': 1.0, 'when': 2.0, 'while': 1.0, 'place': 1.0, 'have': 2.0, 'four': 1.0, 'so': 1.0, 'can': 2.0, 'but': 1.0, 'around': 1.0, 'music': 1.0, 'most': 1.0, 'day': 1.0, 'using': 1.0, 'looking': 1.0, 'baby': 1.0, 'for': 3.0, 'over': 2.0, 'change': 1.0, 'up': 1.0, 'mobile': 1.0, 'without': 1.0, 'soft': 1.0, 'use': 2.0, 'bored': 1.0, 'really': 2.0, 'swing': 4.0, 'buckle': 1.0, 'high': 1.0, 'to': 4.0, 'pretty': 1.0, 've': 1.0, 'something': 2.0, 'my': 1.0, 'me': 1.0, 'live': 1.0, 'necessary': 1.0, 'the': 10.0, 'doing': 1.0, 'of': 2.0, 'and': 6.0, 'couldn': 1.0, 'i': 11.0, 'him': 1.0, 'it': 8.0, 'annoying': 1.0, 'he': 3.0, 'cannot': 1.0, 'plays': 1.0, 'slow': 1.0, 'gets': 2.0, 'why': 1.0, 'stuff': 1.0, 'just': 2.0, 'things': 1.0, 'you': 1.0, 'direction': 1.0, 'rating': 1.0, 'rolling': 1.0, 'happy': 1.0, 'else': 1.0, 'children': 1.0, 'months': 1.0, 'speeds': 1.0, 'great': 2.0, 'cute': 1.0, 'are': 1.0, 'first': 1.0, 'everyone': 1.0, 'setting': 1.0, 'we': 2.0, 'moving': 1.0, 'if': 1.0, 'every': 1.0, 'turn': 1.0, 'bar': 1.0, 'hooked': 1.0, '5': 1.0, 'lame': 1.0, 'different': 1.0, 'clean': 1.0, 'toy': 1.0, 'with': 1.0, 'isn': 1.0, 'started': 1.0, 'toys': 1.0, 'easy': 1.0}
Word element => {'little': 1.0, 'their': 1.0, 'many': 2.0, 'a': 1.0, 'comfy': 1.0, 'and': 2.0, 'most': 1.0, 'the': 2.0, 'be': 1.0, 'to': 2.0, 'safe': 1.0, 'no': 1.0, 'recommend': 1.0, 'complaints': 1.0, 'looking': 2.0, 'graco': 1.0, 'when': 1.0, 'seems': 1.0, 'adventures': 1.0, 'we': 1.0, 'ride': 2.0, 'on': 1.0, 'would': 1.0, 'all': 1.0, 'one': 1.0, 'comfortable': 1.0, 'for': 2.0, 'parents': 1.0}
Word element => {'kid': 1.0, 'grow': 1.0, 'designed': 1.0, 'fit': 1.0, 'way': 1.0, 'passenger': 1.0, 'roomy': 1.0, '4': 1.0, 'i': 2.0, 'perfect': 1.0, 'stars': 1.0, 'and': 2.0, 'my': 1.0, 'the': 3.0, 'for': 2.0, 'sturdy': 1.0, 'is': 4.0, 'all': 1.0, 'have': 2.0, 'seat': 1.0, 'because': 2.0, 'with': 1.0, 'only': 1.0, 'this': 2.0, 'it': 3.0, 'assume': 1.0, 'a': 2.0, 'bit': 1.0, 'carseat': 1.0, 'long': 2.0, 'tsx': 1.0, 'to': 3.0, 'forward': 1.0, 'stroller': 1.0, 'put': 1.0}
Word element => {'herself': 1.0, 'adjusting': 1.0, 'no': 1.0, '70': 1.0, 'over': 1.0, 'changed': 1.0, 'possibility': 2.0, 'even': 1.0, 'this': 1.0, 'those': 1.0, 'outrageous': 1.0, 'can': 1.0, 'but': 1.0, 'until': 1.0, 'well': 1.0, 'cs': 1.0, 'front': 1.0, 'from': 1.0, 'very': 1.0, 'liked': 1.0, 'said': 1.0, 'carseat': 1.0, 'her': 2.0, 'some': 1.0, 'of': 2.0, 'once': 1.0, 'straps': 3.0, 'were': 1.0, 'that': 3.0, 'britax': 1.0, 'reviewers': 1.0, 'they': 2.0, 'adjust': 2.0, 'the': 5.0, 'figured': 1.0, 'liking': 1.0, 's': 1.0, 'a': 2.0, 'we': 3.0, 'could': 3.0, 'pleased': 1.0, 'it': 1.0, 'she': 3.0, 'baby': 2.0, 'them': 2.0, 'out': 1.0, 'be': 1.0, 'reached': 1.0, 'boulevard': 1.0, 'five': 1.0, 'too': 1.0, 'and': 1.0, 'months': 1.0, 'realized': 1.0, 'old': 1.0, 'pull': 1.0, 'loosen': 1.0, 'as': 1.0, 'our': 1.0, 'to': 2.0, 'maybe': 1.0, 'happily': 1.0, 'kid': 1.0, 'just': 1.0, 'on': 1.0, 'strong': 1.0, 'have': 1.0}
Word element => {'hopefully': 1.0, 'keeping': 1.0, 'solved': 1.0, 'around': 1.0, 'be': 1.0, 'wrapped': 1.0, 'would': 1.0, 'months': 1.0, 'didn': 1.0, 'safety': 1.0, 'front': 1.0, 'wonderful': 1.0, 't': 2.0, 'strap': 1.0, 'when': 2.0, 'finished': 1.0, 'at': 1.0, 'second': 2.0, 'through': 1.0, 'way': 1.0, 'straps': 1.0, '2nd': 1.0, 'lasted': 1.0, 'has': 2.0, 'makes': 1.0, 'really': 1.0, 'baby': 2.0, 'who': 1.0, 'rated': 1.0, 'my': 4.0, 'i': 4.0, 'rub': 1.0, 'now': 1.0, 'was': 3.0, 'doesn': 1.0, 'recommend': 1.0, 'just': 3.0, 'by': 1.0, 'breeze': 1.0, 'basic': 1.0, 'again': 1.0, 'car': 3.0, 'back': 1.0, 'using': 1.0, 'for': 4.0, 'also': 2.0, 'suit': 1.0, 'will': 2.0, 'having': 1.0, 'seat': 2.0, 'in': 4.0, 'are': 1.0, 'first': 1.0, 'this': 4.0, 'it': 3.0, 'seatbelt': 1.0, 'and': 7.0, '1': 1.0, 'perfectly': 2.0, '8': 1.0, 'suited': 1.0, 'love': 1.0, 'accessories': 1.0, 'every': 1.0, 'if': 1.0, 'use': 2.0, '2008': 1.0, 'her': 3.0, 'whistles': 1.0, 'with': 3.0, 'time': 2.0, 'so': 2.0, 'chubbier': 1.0, 'portable': 1.0, 'your': 1.0, 'on': 1.0, 'easy': 1.0, 'admittedly': 1.0, 'third': 1.0, 'those': 1.0, 'bunch': 1.0, 'have': 1.0, 'the': 13.0, 'of': 1.0, 'problem': 1.0, 'bells': 1.0, 'even': 1.0, 'base': 1.0, 'cloth': 1.0, 'against': 1.0, 'to': 1.0, 'pretty': 2.0, 'but': 1.0, 'couple': 1.0, 'newborn': 1.0, 'all': 1.0, 'other': 1.0, 'need': 1.0, 'snuzzler': 1.0, 'stage': 1.0, 'they': 3.0, 'a': 4.0, 'tiny': 1.0, 'some': 1.0, 'strapped': 1.0, 'velcro': 1.0, 'adjustment': 1.0, 'wraps': 1.0, 'good': 1.0, 'side': 1.0, 'neck': 2.0, 'r': 1.0}
Word element => {'served': 1.0, 'wanted': 1.0, 'just': 1.0, 'was': 1.0, 'snugride': 1.0, 'tightener': 1.0, 'graco': 1.0, 'age': 1.0, '2': 1.0, 'past': 1.0, 'rf': 1.0, 'using': 1.0, 'loved': 1.0, 'us': 1.0, 'convertible': 1.0, 'able': 1.0, 'being': 1.0, 'i': 2.0, 'becoming': 1.0, 'front': 1.0, 'use': 1.0, 'limits': 1.0, 'with': 2.0, 'this': 2.0, 'seats': 1.0, 'perfectly': 1.0, 'classic': 1.0, 'longer': 1.0, 'rear': 2.0, 'bulkier': 1.0, 'many': 1.0, 'infant': 2.0, 'car': 2.0, 'it': 1.0, 'she': 2.0, 'weight': 2.0, 'recommendations': 1.0, 'facing': 2.0, 'still': 1.0, 'moved': 1.0, 'and': 4.0, 'limit': 1.0, 'increasing': 1.0, 'when': 2.0, 'the': 5.0, 'strap': 1.0, 'are': 1.0, 'lower': 1.0, 'to': 3.0, 'seat': 4.0, 'because': 1.0, 'what': 1.0, 'babe': 1.0, 'easier': 1.0, 'carry': 1.0, 'from': 1.0, 'isn': 1.0, 'enormous': 1.0, 't': 1.0, 's': 2.0, 'a': 1.0, 'my': 1.0, 'outgrew': 1.0, 'that': 1.0, 'into': 1.0}
Word element => {'great': 1.0, 'very': 1.0, 'still': 1.0, 'dryer': 1.0, 'trips': 1.0, 'impressed': 1.0, '3': 1.0, 'numerous': 1.0, 'through': 2.0, 'add': 1.0, 'compelled': 1.0, 'felt': 1.0, 'like': 1.0, 'washer': 1.0, 'using': 1.0, 'after': 1.0, 'update': 1.0, 'seller': 1.0, 'him': 1.0, 'used': 1.0, 'almost': 1.0, 'his': 1.0, 'works': 1.0, 'even': 1.0, 'baths': 2.0, 'arrived': 1.0, 'quickly': 1.0, 'expect': 1.0, 'he': 2.0, 'this': 2.0, 'good': 1.0, 'new': 1.0, 'would': 1.0, 've': 1.0, 'expected': 1.0, 'stand': 1.0, 'll': 1.0, 'been': 1.0, 'that': 1.0, 'soaking': 1.0, 'the': 3.0, '2': 2.0, 'many': 1.0, 'frog': 2.0, 'sound': 1.0, 'up': 1.0, 'always': 1.0, 'and': 7.0, 'all': 1.0, 'to': 2.0, 'smile': 1.0, 'as': 1.0, 'quality': 2.0, 'now': 2.0, 'weeks': 1.0, 'i': 3.0, 'buy': 1.0, 'for': 2.0, 'about': 1.0, 'months': 1.0, 'croak': 2.0, 'am': 1.0, 'again': 1.0, 'when': 1.0, 'wet': 1.0, 'use': 1.0, 'is': 2.0, 'produces': 1.0, 's': 1.0, 'we': 2.0, 'a': 1.0, 'customers': 1.0, 're': 1.0, 'happy': 1.0, 'brand': 1.0}
Word element => {'amazon': 1.0, 'they': 1.0, 'and': 3.0, 'month': 1.0, 'were': 1.0, 'hits': 1.0, 'precious': 1.0, 'happy': 1.0, 'babies': 1.0, 'have': 1.0, 'these': 1.0, '2': 1.0, 'this': 1.0, 'with': 1.0, 'to': 2.0, 'love': 1.0, 'given': 1.0, 'both': 1.0, 'well': 1.0, 'them': 1.0, 'made': 1.0, 'frog': 1.0, 'easy': 1.0, 'grasp': 1.0, 'face': 1.0}
Word element => {'family': 1.0, 'are': 1.0, 'and': 1.0, 'quick': 1.0, 'homemade': 1.0, 'keep': 1.0, 'to': 1.0, 'like': 1.0, 'they': 1.0, 'for': 2.0, 'freezer': 2.0, 'side': 2.0, 'my': 2.0, 'by': 1.0, 'less': 1.0, 'perfect': 1.0, 'in': 2.0, 'bags': 1.0, 'up': 1.0, 'around': 1.0, 'fit': 2.0, 'soup': 1.0, 'take': 1.0, 'bag': 1.0, 'much': 1.0, 'lunches': 1.0, 'space': 2.0, 'than': 1.0, 'the': 1.0, 'these': 2.0, 'more': 1.0, 'nicely': 1.0, 'traditional': 1.0, 'a': 2.0, 'small': 1.0, 'so': 1.0, 'i': 2.0, 'size': 1.0, 'can': 1.0}
Word element => {'recommend': 1.0, 'still': 1.0, 'weighs': 1.0, 've': 1.0, 'highly': 1.0, 'really': 1.0, 'first': 1.0, 'or': 1.0, 'in': 1.0, 'get': 1.0, 'can': 1.0, 'times': 1.0, 'wrapping': 1.0, 'how': 1.0, 'who': 2.0, 'comfortable': 1.0, '1': 1.0, 'comfy': 1.0, 'too': 1.0, 'and': 5.0, 'not': 1.0, 'me': 1.0, 'do': 1.0, 'year': 1.0, 'very': 2.0, 'my': 2.0, 'with': 5.0, 'month': 1.0, 'it': 7.0, 'now': 1.0, 'free': 1.0, 'pounds': 1.0, '4': 1.0, 'complicated': 1.0, 'i': 10.0, 'old': 2.0, 'before': 1.0, '5': 1.0, 'ordering': 1.0, 'love': 1.0, 'for': 1.0, 'that': 2.0, 'tried': 1.0, 'supportive': 2.0, 'have': 1.0, 'practiced': 1.0, 'a': 6.0, 'could': 1.0, 'bought': 1.0, 'trying': 2.0, 'be': 2.0, 'found': 1.0, '30': 1.0, 'this': 3.0, 'allows': 1.0, 'time': 1.0, 'so': 2.0, 'after': 1.0, 'newborn': 1.0, 'the': 1.0, 'wrap': 3.0, 'hands': 1.0, 'demands': 1.0, 'attention': 1.0, 'is': 2.0, 'whatever': 1.0, 'both': 1.0, 'videos': 1.0, 'baby': 3.0, 'as': 1.0, 'to': 4.0, 'seconds': 1.0, 'watched': 1.0, '15': 1.0, 'simple': 1.0, 'need': 1.0, 'few': 2.0, 'put': 1.0, 'on': 3.0, 'youtube': 1.0, 'of': 1.0}
Word element => {'different': 1.0, 'try': 1.0, 'continue': 1.0, 'hope': 1.0, 'using': 1.0, 'i': 3.0, 'use': 1.0, 'pouch': 1.0, 'korner': 1.0, 'had': 2.0, 'tying': 1.0, 'was': 2.0, 'time': 1.0, 'has': 1.0, 'gets': 1.0, 'son': 1.0, 'first': 1.0, 'it': 3.0, 'take': 1.0, 'some': 1.0, 'be': 1.0, 'material': 1.0, 'held': 1.0, 'been': 2.0, 'as': 1.0, 'to': 3.0, 'all': 1.0, 'especially': 1.0, 'practice': 1.0, 'older': 1.0, 'weeks': 1.0, 'but': 2.0, 'back': 1.0, 'great': 1.0, 'wrap': 1.0, 'the': 2.0, 'a': 1.0, 't': 1.0, 'my': 4.0, '6': 1.0, 'there': 1.0, 'of': 1.0, 'fairly': 1.0, 'than': 1.0, 'does': 1.0, 'when': 1.0, 'and': 4.0, 'comfy': 1.0, 'me': 1.0, 'holds': 1.0, 'kangeroo': 1.0, 'completely': 1.0, 'is': 1.0, 'ton': 1.0, 'this': 2.0, 'pain': 1.0, 'for': 1.0, 'baby': 2.0, 'eliminate': 1.0, 'better': 1.0, 'didn': 1.0, 'cooler': 1.0}
Word element => {'a': 1.0, 'works': 1.0, 'what': 2.0, 'however': 1.0, 'for': 2.0, 'in': 1.0, 'baby': 1.0, 'my': 1.0, 'great': 1.0, 'him': 1.0, 'fan': 1.0, 'is': 3.0, 'think': 1.0, 'i': 3.0, 'thinks': 1.0, 'when': 1.0, 'm': 1.0, 'try': 1.0, 'crazy': 1.0, 'to': 1.0, 'but': 1.0, 'put': 1.0, 'it': 4.0, 'this': 1.0, 'he': 1.0, 's': 1.0, 'huge': 1.0, 'not': 1.0}
Word element => {'allowing': 1.0, 'while': 1.0, 'head': 1.0, 'little': 1.0, 'cooler': 1.0, 'up': 1.0, 'summer': 1.0, 'hesitant': 1.0, 'easier': 1.0, 'hot': 1.0, 'quite': 1.0, 'boba': 1.0, 'also': 1.0, 'smooshed': 1.0, 'either': 1.0, 'support': 1.0, 'supports': 1.0, 'no': 1.0, 'him': 2.0, 'the': 2.0, 'or': 1.0, 'neck': 1.0, 'use': 1.0, 'gaining': 1.0, 'to': 7.0, 'was': 2.0, 'look': 2.0, 'purchasing': 1.0, 'made': 1.0, 'consuming': 1.0, 'time': 1.0, 'which': 2.0, 'know': 1.0, 'flail': 1.0, 'just': 1.0, 'find': 1.0, 'found': 2.0, 'did': 1.0, 'strength': 1.0, 'i': 6.0, 'much': 1.0, 'considering': 1.0, 'only': 1.0, 'it': 3.0, 'moby': 3.0, 'he': 4.0, 'love': 2.0, 'many': 1.0, 'their': 1.0, 'although': 1.0, 'but': 2.0, 'couldn': 1.0, 'not': 1.0, 'me': 3.0, 'guy': 1.0, 'put': 2.0, 'on': 2.0, 'often': 1.0, 'my': 2.0, 'in': 1.0, 'snuggle': 1.0, 'almost': 1.0, 'that': 1.0, 'into': 2.0, 'loves': 1.0, 'and': 1.0, 'moms': 1.0, 'too': 1.0, 'left': 2.0, 'closely': 1.0, 'pushed': 1.0, 'ended': 1.0, 'sometimes': 1.0, 'difficult': 1.0, 'son': 1.0, 'wants': 1.0, 'is': 1.0, 'fall': 1.0, 'around': 2.0, 'who': 1.0, 'since': 1.0, 'a': 1.0, 't': 1.0, 's': 3.0}
Word element => {'spare': 1.0, 'to': 1.0, 'large': 1.0, 'my': 1.0, 'around': 1.0, 'fit': 1.0, 'does': 1.0, 'months': 1.0, 'baby': 1.0, 'll': 1.0, 'a': 2.0, 'handy': 1.0, 'but': 1.0, 'inside': 1.0, 'yet': 1.0, 'for': 1.0, 'are': 1.0, 'real': 2.0, 'few': 1.0, 'strength': 1.0, 'great': 1.0, 'upper': 2.0, 'in': 2.0, 'body': 2.0, 'cloth': 1.0, 'tried': 1.0, 'i': 1.0, 'babies': 1.0, 'have': 1.0, 'not': 1.0, 'come': 1.0, 'it': 3.0, 'with': 2.0}
Word element => {'both': 1.0, 'glad': 1.0, 'anywhere': 1.0, 'isn': 1.0, 'big': 1.0, 'wearing': 3.0, 'thing': 1.0, 'going': 1.0, '2': 1.0, 'mom2': 1.0, 'reviews': 1.0, 'we': 2.0, 'plus': 1.0, 'yourself': 1.0, 'd': 1.0, 'really': 1.0, 'carrier': 2.0, 'ground': 1.0, 'home': 1.0, 'example': 1.0, 'better': 1.0, 'will': 4.0, 'ergo': 8.0, 'same': 1.0, 'in': 9.0, 'a': 9.0, 'imagine': 1.0, 'before': 1.0, '1': 2.0, 'correctly': 1.0, 'put': 1.0, 'on': 7.0, 'long': 2.0, 'stays': 1.0, 'tie': 1.0, 'easy': 1.0, 'wraps': 1.0, 'get': 4.0, 'months': 1.0, 'arrive': 1.0, 'tries': 1.0, 'trips': 1.0, 'has': 2.0, 'stay': 1.0, 'great': 2.0, 'if': 4.0, 'not': 6.0, 'me': 2.0, 'are': 2.0, 'my': 7.0, 'store': 1.0, 'was': 2.0, 'around': 3.0, 'at': 2.0, 'once': 1.0, 'tightly': 2.0, 'the': 31.0, 'person': 1.0, 'out': 4.0, 'preferred': 2.0, 'breathable': 1.0, 'there': 1.0, 'hang': 1.0, 'helps': 1.0, 'scoured': 1.0, 'time': 3.0, 'she': 1.0, 'this': 2.0, 'few': 1.0, 'runs': 1.0, 'and': 11.0, 'warm': 2.0, 'but': 2.0, 'pregnant': 1.0, 'to': 10.0, 'pretty': 1.0, 'all': 1.0, 'other': 1.0, 'm': 1.0, 's': 5.0, 'ever': 1.0, 'an': 1.0, 'i': 9.0, '4': 3.0, 'you': 10.0, 'when': 2.0, 'fabric': 1.0, 'for': 8.0, 'carriers': 2.0, '6': 2.0, 'mine': 1.0, 'by': 1.0, 'parking': 1.0, 'infant': 1.0, 'so': 3.0, 'is': 8.0, 'can': 1.0, 'hopefully': 1.0, 'while': 2.0, 've': 1.0, 'down': 1.0, 'lightweight': 1.0, 'moby': 7.0, '5': 2.0, 'grocery': 2.0, 'been': 1.0, 'drag': 1.0, 'using': 2.0, 'love': 1.0, 'he': 1.0, 'attempting': 1.0, 'wrap': 3.0, 'be': 2.0, 'it': 12.0, 'wear': 2.0, 'distributes': 1.0, 'now': 1.0, 'weeks': 1.0, 'would': 1.0, 'especially': 1.0, 'use': 1.0, 'lot': 1.0, 'recommend': 1.0, 'find': 1.0, 'very': 2.0, 'days': 1.0, 'without': 1.0, 'or': 2.0, 'tip': 1.0, 'claim': 1.0, 'need': 2.0, 'where': 1.0, 'your': 4.0, 'keeps': 2.0, 'feel': 1.0, 'husband': 2.0, 'more': 1.0, 'like': 1.0, 'does': 2.0, 't': 1.0, 'friends': 1.0, 'lean': 1.0, 'hot': 1.0, 'have': 3.0, 'lighter': 1.0, 'that': 3.0, 'hood': 1.0, 'easily': 1.0, 'overall': 1.0, 'they': 1.0, 'cooler': 2.0, 'as': 4.0, 'body': 2.0, 'bend': 2.0, 'someone': 1.0, 'blades': 1.0, 'move': 2.0, 'lower': 1.0, 'lb': 1.0, 'weight': 2.0, '3': 2.0, 'walk': 1.0, 'securely': 1.0, 'place': 1.0, 'nicely': 1.0, 'back': 3.0, 'sleep': 1.0, 'hurt': 1.0, 'tricky': 2.0, 'groceries': 1.0, 'backpack': 2.0, 'over': 2.0, 'hard': 1.0, 'cart': 1.0, 'll': 1.0, 'extra': 1.0, 'another': 1.0, 'hand': 1.0, 'support': 1.0, 'babyergo': 1.0, 'getting': 1.0, 'help': 1.0, 'goes': 1.0, 'insert': 1.0, 'clip': 1.0, 'across': 1.0, 'took': 1.0, 'shoulder': 1.0, 'baby': 12.0, 'part': 1.0, 'than': 1.0, 'windy': 1.0, 'since': 1.0, 'day': 1.0, 'of': 6.0, 'old': 1.0, 'covered': 1.0, 'extremely': 1.0, 'secure': 1.0, 'hiking': 1.0, 'start': 1.0, 'take': 1.0, 'never': 1.0, '15': 1.0, 'how': 1.0, 'daughter': 2.0, 'feels': 1.0}
Word element => {'pretty': 1.0, 'likes': 1.0, 'position': 1.0, 'in': 1.0, 'easy': 1.0, 'get': 1.0, 'out': 1.0, 'took': 1.0, 'also': 1.0, 'ground': 1.0, 'touches': 1.0, 'long': 1.0, 'so': 1.0, 'are': 1.0, 'if': 1.0, 'on': 2.0, 'put': 1.0, 'awhile': 1.0, 'difficult': 1.0, 'me': 2.0, 'nice': 1.0, 'drawbacks': 1.0, 'quite': 1.0, 'and': 3.0, 'couldn': 1.0, 'is': 5.0, 'it': 7.0, 'she': 1.0, 'at': 1.0, 'for': 1.0, 'expensive': 1.0, 'the': 3.0, 'wrap': 1.0, 'mastered': 1.0, 'glad': 1.0, 'because': 1.0, 'does': 1.0, 'find': 1.0, 'how': 1.0, 'moby': 2.0, 'what': 1.0, 'purchased': 1.0, 'had': 1.0, 'i': 6.0, 'one': 2.0, 'have': 1.0, 'snug': 1.0, 'considered': 1.0, 'anything': 1.0, 'other': 1.0, 'making': 1.0, 'outside': 1.0, 'to': 3.0, 'as': 2.0, 'from': 1.0, 'home': 1.0, 'made': 1.0, 'figure': 1.0, 'little': 1.0, 'wherever': 1.0, 'like': 3.0, 'that': 1.0, 'but': 3.0, 'can': 1.0, 'this': 2.0, 'pack': 1.0, 'only': 1.0, 'am': 1.0, 'easily': 1.0, 'you': 3.0, 'good': 1.0, 'fabric': 1.0, 'carriers': 1.0, 'a': 2.0, 't': 2.0, 'go': 1.0, 'my': 2.0, 'types': 1.0, 'baby': 2.0, 'didn': 1.0, 'once': 1.0, 'of': 1.0}
Word element => {'supported': 1.0, 'she': 1.0, 'both': 1.0, 'felt': 1.0, 'success': 1.0, 'plus': 1.0, 'immediately': 1.0, 'a': 1.0, 'stayed': 1.0, 'it': 3.0, 'way': 1.0, 'my': 1.0, 'great': 1.0, 'the': 1.0, 'loved': 1.0, 'i': 3.0, 'whole': 1.0, 'and': 3.0, 'too': 1.0, 'daughter': 1.0, 'in': 1.0, 'fell': 1.0, 'was': 1.0, 'asleep': 1.0, 'think': 1.0, 'almost': 1.0, 'were': 1.0, 'that': 2.0, 'time': 1.0}
Word element => {'cents': 1.0, 'lol': 1.0, '2': 1.0, 'begin': 1.0, 'shape': 1.0, 'break': 1.0, 'gonna': 1.0, 'felt': 1.0, 'back': 2.0, 'carrier': 1.0, 'awesome': 1.0, 'told': 1.0, 'lunge': 1.0, 'tie': 1.0, 'her': 2.0, 'close': 1.0, 'ease': 1.0, 'person': 1.0, 'the': 2.0, 'to': 6.0, 'as': 1.0, 'was': 5.0, 'reviews': 1.0, '3': 1.0, 'on': 2.0, 'i': 9.0, 'move': 1.0, 'decided': 1.0, 'one': 2.0, 'could': 1.0, 'confident': 1.0, 'a': 4.0, 't': 1.0, 's': 3.0, 'like': 3.0, 'good': 3.0, 'which': 1.0, 'wrong': 1.0, 'perfectly': 2.0, 'bottom': 1.0, 'do': 1.0, 'and': 5.0, 'tough': 1.0, 'with': 3.0, 'stoked': 1.0, 'looked': 1.0, 'this': 1.0, 'lady': 1.0, 'walked': 1.0, 'read': 1.0, 'dozen': 1.0, 'she': 3.0, 'baby': 6.0, 'posture': 1.0, 'for': 1.0, 'saw': 1.0, 'carriers': 2.0, 'mine': 1.0, 'sink': 1.0, 'be': 1.0, 'wrapped': 1.0, 'so': 1.0, 'time': 1.0, 'it': 14.0, 'wear': 1.0, 'think': 1.0, 'better': 1.0, 'after': 1.0, 'got': 1.0, 'are': 2.0, 'first': 1.0, 'correctly': 1.0, 'would': 2.0, 'out': 1.0, 'front': 1.0, 'wonderful': 1.0, 'my': 2.0, 'me': 2.0, 'banana': 1.0, 'blanket': 1.0, 'again': 1.0, 'you': 2.0, 'when': 1.0, 'that': 1.0, 'easily': 1.0, 'buy': 1.0, 'wants': 1.0, 'gets': 1.0, 'squirm': 1.0, 'feel': 1.0, 'great': 1.0, 'tried': 2.0, 'until': 1.0, 'right': 1.0, 'doesn': 1.0, 'must': 1.0, 'practice': 2.0, 'have': 1.0, 'going': 1.0, 'done': 1.0, 'get': 1.0, 'store': 1.0, 'sure': 1.0, 'but': 1.0, 'if': 2.0, 'in': 4.0, 'm': 1.0, 'did': 1.0, 'babe': 1.0, 'around': 1.0, 'really': 1.0}
Word element => {'dinner': 1.0, 'making': 1.0, 'wonderful': 1.0, 'his': 1.0, 'while': 1.0, 'wrap': 1.0, 'baby': 2.0, 'holding': 1.0, 'fussy': 1.0, 'helping': 1.0, 'much': 1.0, 'so': 2.0, 'ready': 1.0, 'helped': 1.0, 'challenges': 1.0, 'to': 2.0, 's': 1.0, 'seem': 1.0, 'older': 1.0, 'this': 1.0, 'it': 1.0, 'child': 2.0, 'too': 1.0, 'when': 1.0, 'going': 1.0, 'for': 1.0, 'one': 1.0, 'from': 1.0, 'infant': 1.0, 'in': 2.0, 'wake': 1.0, 'up': 1.0, 'get': 2.0, 'and': 3.0, 'breakfast': 2.0, 'two': 1.0, 'at': 2.0, 'preschooler': 1.0, 'the': 5.0, 'same': 2.0, 'they': 1.0, 'has': 1.0, 'time': 2.0, 'is': 1.0, 'want': 1.0}
Word element => {'in': 1.0, 'around': 1.0, 'carry': 1.0, 'big': 1.0, 'bit': 1.0, 'little': 1.0, 'but': 1.0, 'on': 1.0, 'hold': 1.0, 'to': 4.0, 'my': 1.0, 'of': 1.0, 'toy': 2.0, 'old': 1.0, 'loves': 1.0, 'bag': 1.0, 'month': 1.0, 'he': 1.0, 'this': 1.0, 'it': 1.0, 'diaper': 1.0, 'the': 3.0, 'great': 1.0, 'him': 1.0, 'giraffe': 1.0, 'different': 1.0, 'likes': 1.0, '8': 1.0, 'textures': 1.0, 'and': 1.0, 'elements': 1.0, 'is': 1.0, 'a': 2.0, 'size': 1.0, 'for': 1.0}
Word element => {'me': 1.0, 'loves': 1.0, 'seems': 1.0, 'seriously': 1.0, 'just': 1.0, 'life': 1.0, 'like': 1.0, 'which': 1.0, 'likes': 1.0, 'use': 1.0, 'k': 1.0, 'in': 2.0, 'feeling': 1.0, 'tried': 1.0, 'wasnt': 2.0, 'returning': 2.0, 'got': 1.0, 'so': 1.0, 'however': 1.0, 'wear': 2.0, 'moby': 3.0, 'ground': 1.0, 'asleep': 1.0, 'wrap': 3.0, 'the': 9.0, 'but': 1.0, '2': 1.0, 'fall': 1.0, 'more': 1.0, 'is': 4.0, 'of': 1.0, 'after': 1.0, 'ended': 1.0, 'comfortable': 2.0, '1': 1.0, 'nice': 1.0, 'learned': 1.0, 'save': 1.0, 'my': 4.0, 'for': 1.0, 'product': 1.0, 'to': 7.0, 'i': 3.0, 'texture': 1.0, 'here': 1.0, 'tie': 2.0, 'febric': 2.0, 'many': 1.0, 'take': 1.0, 'are': 1.0, 'convenient': 1.0, 'indoor': 1.0, 'mind': 1.0, 'cant': 1.0, 'color': 1.0, 'reasons': 1.0, 'unles': 1.0, 'why': 1.0, 'similar': 1.0, 'and': 4.0, 'too': 3.0, 'long': 2.0, 'wait': 1.0, 'warm': 1.0, 'up': 1.0, 'outdoor': 1.0, '3': 1.0, 'on': 1.0, 'you': 1.0, 'tan': 1.0, 'baby': 5.0, 'dragging': 1.0, 'dont': 1.0, 'it': 7.0, 'dirty': 1.0}
Word element => {'me': 1.0, 'support': 1.0, 'the': 2.0, 'and': 2.0, 'i': 2.0, 'gives': 1.0, 'had': 1.0, 'previous': 1.0, 'color': 1.0, 'moby': 2.0, 'baby': 1.0, 'pink': 1.0, 'have': 1.0, 'loved': 1.0, 'this': 1.0, 'wraps': 1.0, 'coral': 1.0}
Word element => {'little': 1.0, 'that': 1.0, 'our': 2.0, 'use': 1.0, 'we': 1.0, 'younger': 1.0, 'holds': 1.0, 'or': 1.0, 'months': 2.0, '6': 2.0, 'baby': 1.0, 'one': 1.0, 'for': 1.0, 'recommend': 1.0, 'way': 1.0, 'can': 1.0, 'now': 1.0, 'to': 2.0, 'her': 1.0, 'what': 1.0, 'anyone': 1.0, 'newborn': 1.0, 'having': 1.0, 'not': 1.0, 'would': 1.0, 'it': 1.0, 'with': 2.0, 'this': 2.0, 'have': 1.0, 'imagine': 1.0, 'free': 1.0, 'your': 1.0, 'i': 1.0, 'as': 2.0, 'bond': 1.0, 'a': 2.0, 'well': 1.0, 'better': 1.0, 'hand': 1.0, 'ergobaby': 1.0, 'do': 1.0, 't': 1.0, 'housework': 1.0}
Word element => {'sometimes': 1.0, 'scares': 1.0, 'falling': 1.0, 'my': 1.0, 'noise': 1.0, 'clacking': 1.0, 'have': 1.0, 'wonderful': 1.0, 'him': 1.0, 'would': 1.0, 'baby': 1.0, 'about': 1.0, 'i': 1.0, 'mobile': 1.0, 'a': 2.0, 'little': 1.0, 'only': 1.0, 'it': 3.0, 'tends': 1.0, 'is': 2.0, 'the': 1.0, 'overall': 1.0, 'are': 1.0, 'animals': 1.0, 'while': 2.0, 'twirling': 1.0, 'complaint': 1.0, 'make': 1.0, 'around': 1.0, 'asleep': 1.0, 'its': 1.0, 'to': 1.0}
Word element => {'cute': 1.0, 'and': 1.0, 'are': 1.0, 'my': 1.0, 'made': 1.0, 'great': 1.0, 'the': 1.0, 'in': 1.0, 'purchase': 1.0, 'best': 1.0, 'i': 1.0, 'choices': 1.0, 'daughters': 1.0, 'by': 1.0, 'is': 2.0, 'far': 1.0, 'it': 1.0, 'this': 2.0, 'crib': 1.0, 'twin': 1.0, 'their': 1.0, 'they': 1.0, 'for': 1.0, 'love': 1.0, 'laying': 1.0, 'looking': 1.0, 'super': 1.0, 'at': 1.0, 'mobile': 1.0, 'music': 1.0}
Word element => {'colorful': 1.0, 'this': 1.0, 'chose': 1.0, 'one': 1.0, 'i': 1.0, 'happy': 1.0, 'very': 2.0, 'and': 1.0, 'my': 1.0, 'the': 1.0, 'cute': 1.0, 'her': 1.0, 'daughter': 1.0, 'in': 1.0, 'crib': 1.0, 'stares': 1.0, 'lays': 1.0, 'at': 1.0, 'it': 1.0}
Word element => {'highly': 1.0, 'or': 1.0, 'me': 1.0, 'certainly': 1.0, 'noticeable': 1.0, 'goes': 1.0, 'hasn': 1.0, 'makes': 1.0, 'laughing': 1.0, 'quietly': 1.0, 'at': 2.0, 'since': 1.0, 'he': 2.0, 'realise': 1.0, 'sound': 1.0, 'up': 1.0, 'don': 1.0, 'clicking': 1.0, 'sometimes': 1.0, 'get': 1.0, 'least': 1.0, 'as': 1.0, 'to': 1.0, 'weeks': 1.0, 'back': 1.0, 'music': 2.0, 'little': 3.0, 'crib': 2.0, 'will': 1.0, 'batteries': 1.0, 'uninterrupted': 1.0, 'this': 2.0, 'happily': 1.0, '10': 1.0, 'lie': 1.0, 'son': 2.0, 'from': 1.0, 'around': 1.0, 'is': 5.0, 'hardly': 1.0, 's': 1.0, 't': 2.0, 'a': 1.0, 'fact': 1.0, 'my': 2.0, 'the': 12.0, 'staring': 1.0, 'great': 1.0, 'observing': 1.0, 'cooing': 1.0, 'best': 1.0, 'absolutely': 1.0, 'it': 3.0, 'fascinated': 1.0, '40': 1.0, 'of': 2.0, 'buy': 1.0, 'i': 3.0, 'mornings': 1.0, 'toys': 1.0, 'and': 3.0, 'by': 1.0, 'just': 2.0, 'operational': 1.0, 'on': 2.0, 'features': 1.0, 'his': 2.0, 'before': 1.0, 'in': 4.0, 'animals': 2.0, 'that': 2.0, 'lying': 1.0, 'mobile': 3.0, 'one': 1.0, 'hang': 1.0, 'recommend': 1.0, 'minutes': 1.0, 'was': 1.0, 'true': 1.0, 'bothered': 1.0, 'even': 1.0, 'got': 1.0}
Word element => {'her': 1.0, 'on': 1.0, 'have': 1.0, 'entertainment': 1.0, 'money': 1.0, 'best': 1.0, 'spin': 1.0, 'and': 1.0, 'around': 1.0, 'toys': 1.0, 'plays': 1.0, 'because': 1.0, 'she': 1.0, 'will': 1.0, 'mobile': 1.0, 'minutes': 1.0, 'loves': 1.0, 'entertaining': 1.0, 'continuous': 1.0, 'go': 1.0, 'than': 1.0, 'this': 1.0, 'it': 3.0, 'i': 2.0, 'daughter': 1.0, 'yet': 1.0, 'for': 3.0, 'bought': 1.0, 'my': 1.0, 'the': 2.0, 'spent': 1.0, '40': 1.0, 'music': 2.0, 'watch': 1.0, 'that': 1.0, 'longer': 1.0, 'is': 1.0}
Word element => {'replacement': 1.0, 'receiving': 1.0, 'forward': 1.0, 'keep': 1.0, 'they': 1.0, 'like': 1.0, 'sound': 2.0, 'will': 1.0, 'also': 1.0, 'entertained': 1.0, 'complete': 1.0, 'loved': 1.0, 'salvage': 1.0, 'and': 3.0, 'were': 1.0, 'the': 12.0, 'see': 1.0, 'to': 3.0, 'was': 1.0, 'had': 1.0, 'look': 1.0, 'first': 1.0, 'it': 1.0, 'mobile': 2.0, 'music': 1.0, 'but': 1.0, 'in': 2.0, 'fire': 1.0, 'different': 1.0, 'a': 2.0, 'we': 2.0, 'ordered': 1.0, 'cute': 1.0, 'part': 1.0, 'works': 1.0, 'have': 1.0, 'box': 1.0, 'next': 1.0, 'looking': 1.0, 'day': 1.0, 'settings': 1.0, 'able': 1.0, 'included': 1.0, 'of': 1.0, 'quality': 1.0, 'baby': 2.0, 'white': 1.0, 'noise': 1.0, 'heartbeat': 1.0, 'selection': 1.0, 'not': 1.0, 'chance': 1.0, 'how': 1.0, 'animals': 1.0, 'little': 1.0, 'are': 1.0}
Word element => {'ll': 1.0, 'this': 1.0, 'hopes': 1.0, 'returning': 1.0, 'high': 1.0, 'such': 1.0, 'had': 1.0, 'sights': 1.0, 'and': 1.0, 'i': 5.0, 'obnoxious': 1.0, 'silent': 1.0, 'whirring': 1.0, 'pretty': 1.0, 'the': 7.0, 'made': 1.0, 'music': 2.0, 'but': 3.0, 'enjoyed': 1.0, 'noise': 1.0, 'imagine': 1.0, 'it': 3.0, 'loud': 1.0, 'bothered': 1.0, 'perhaps': 2.0, 'he': 1.0, 'received': 1.0, 'mine': 1.0, 'listened': 1.0, 'mobile': 1.0, 'one': 2.0, 'for': 2.0, 'or': 1.0, 'dud': 1.0, 't': 1.0, 'a': 2.0, 'is': 1.0, 'son': 1.0, 'no': 1.0, '40': 1.0, 'else': 1.0, 'that': 3.0, 'minutes': 1.0, 'was': 1.0, 'engine': 2.0, 'as': 2.0, 'to': 2.0, 'by': 1.0, 'spun': 1.0, 'just': 2.0, 'not': 1.0, 'while': 1.0, 'from': 1.0, 'understand': 1.0, 'little': 1.0, 'subjecting': 1.0, 'be': 2.0, 'couldn': 1.0, 'may': 1.0, 'my': 1.0}
Word element => {'get': 1.0, 'definitely': 1.0, 'would': 1.0, 'not': 1.0, 'so': 1.0, 'likes': 1.0, 'the': 4.0, 'this': 2.0, 'he': 3.0, 'it': 2.0, 'only': 1.0, 'that': 1.0, 'loves': 1.0, 'enjoy': 1.0, 'seems': 1.0, 'also': 1.0, 'rotate': 1.0, 'baby': 2.0, 'play': 1.0, 'and': 2.0, 'staring': 1.0, '1': 1.0, 'is': 4.0, 'now': 1.0, 'all': 1.0, 'our': 2.0, 'to': 2.0, '5': 1.0, 'important': 1.0, 'mobile': 2.0, 'months': 1.0, 'of': 1.0, 'there': 1.0, 'i': 2.0, 'like': 1.0, 'which': 1.0, 'because': 1.0, 'hear': 1.0, 'small': 1.0, 'at': 1.0, 'repeatedly': 1.0, 'problem': 1.0, 'animals': 2.0, 'click': 1.0, 'again': 1.0, 'you': 1.0, 'when': 2.0, '2': 1.0, 'music': 2.0, 'but': 1.0, 'a': 2.0, 'we': 1.0, 'use': 1.0, 'still': 2.0, 'wants': 1.0, 'for': 1.0}
Word element => {'don': 1.0, 'some': 2.0, 'plays': 1.0, 'songs': 1.0, 'knew': 1.0, 'wish': 1.0, 'know': 1.0, 'just': 1.0, 'loves': 1.0, 'happily': 1.0, 'i': 4.0, 'play': 1.0, 'we': 1.0, 't': 1.0, 'the': 4.0, 'time': 2.0, 'for': 2.0, 'daughter': 1.0, 'were': 1.0, 'our': 1.0, 'bought': 1.0, 'primarily': 1.0, 'all': 1.0, 'but': 1.0, 'option': 1.0, 'and': 1.0, 'toys': 1.0, 'keeps': 1.0, 'this': 1.0, 'it': 2.0, 'what': 1.0, 'long': 2.0, 'her': 1.0, 'happy': 1.0, 'a': 1.0}
Word element => {'cute': 1.0, 'super': 1.0, 'are': 1.0, 'animals': 1.0, 'the': 1.0, 'time': 1.0, 'long': 1.0, 'a': 1.0, 'to': 2.0, 'music': 1.0, 'i': 1.0, 'here': 1.0, 'can': 1.0, 'nursery': 1.0, 'my': 1.0, 'our': 1.0, 'enjoy': 1.0, 'one': 1.0, 'for': 2.0, 'wait': 1.0, 'mobile': 1.0, 'so': 1.0, 'cannot': 1.0, 'lasts': 1.0, 'like': 1.0, 'really': 1.0, 'it': 1.0, 'this': 1.0, 'he': 1.0, 'little': 1.0, 'and': 1.0, 'get': 1.0}
Word element => {'dreamland': 1.0, 'to': 1.0, 's': 1.0, 'and': 1.0, 'music': 1.0, '5': 1.0, 'needs': 1.0, 'too': 1.0, 'of': 2.0, 'has': 1.0, 'really': 1.0, 'minutes': 1.0, 'right': 1.0, 'care': 1.0, 'much': 1.0, 'amount': 1.0, 'just': 1.0, 'only': 1.0, 'he': 2.0, 'it': 2.0, 'off': 1.0, 'loves': 1.0, 'grandson': 1.0, 'liking': 1.0, 'the': 1.0, 't': 1.0, 'for': 2.0, 'our': 1.0, 'we': 1.0, 'about': 1.0, 'don': 1.0, 'color': 1.0, 'my': 1.0, 'stimulation': 1.0}
Word element => {'girl': 1.0, 'design': 1.0, 'over': 1.0, 'definitely': 1.0, 'recommend': 2.0, 'lived': 1.0, 'short': 1.0, 'circular': 1.0, 'realize': 1.0, 'items': 1.0, 'on': 3.0, 'babies': 2.0, 'see': 1.0, 'yes': 1.0, 'crib': 3.0, 'daughter': 3.0, 'in': 4.0, 'practical': 1.0, 'some': 1.0, 'spent': 1.0, 'movement': 2.0, 'quite': 1.0, 'like': 1.0, 'wasn': 2.0, 'parent': 2.0, 'noise': 3.0, 'lucky': 1.0, 'at': 1.0, 'attaching': 1.0, 'three': 1.0, 'into': 1.0, 'get': 1.0, 'months': 2.0, 'if': 2.0, 'every': 2.0, 'still': 1.0, 'mistake': 1.0, 'nice': 2.0, 'wanted': 1.0, 'music': 4.0, 'say': 2.0, 'unique': 1.0, 'what': 1.0, 'when': 2.0, 'had': 2.0, 'songs': 2.0, 'any': 1.0, 'elevate': 1.0, 'sleep': 2.0, 'most': 1.0, 'to': 13.0, 'as': 2.0, 'falls': 1.0, 'light': 1.0, 'was': 5.0, 'minutes': 2.0, 'trying': 1.0, 'girlish': 1.0, 'spend': 1.0, 'another': 1.0, 'before': 1.0, 'dimensional': 1.0, 't': 5.0, 'a': 16.0, 'born': 1.0, 'next': 1.0, 'has': 1.0, 'that': 12.0, 'because': 1.0, 'first': 2.0, 'sight': 2.0, 'i': 14.0, 'well': 1.0, 'matched': 1.0, 'comes': 1.0, 'bought': 1.0, 'within': 2.0, 'fell': 1.0, 'place': 1.0, 'myself': 1.0, 'the': 22.0, 'rooms': 1.0, 'exactly': 1.0, 'room': 1.0, 'are': 4.0, 'my': 5.0, 'exciting': 1.0, 'very': 2.0, 'baby': 6.0, 'spending': 1.0, 'so': 4.0, 'is': 6.0, 'turn': 1.0, 'can': 5.0, 'unexpected': 1.0, 'rewinded': 1.0, 'be': 1.0, 'it': 11.0, 'already': 1.0, 'time': 1.0, 'did': 1.0, 'know': 1.0, 'not': 4.0, 'necessarily': 1.0, 'once': 1.0, 'mobile': 9.0, 'local': 1.0, 'you': 5.0, 'then': 2.0, 'bad': 1.0, 'we': 1.0, 'use': 1.0, 'especially': 2.0, 'mode': 2.0, 'put': 1.0, 'doesn': 1.0, 's': 2.0, 'develops': 1.0, '3': 2.0, 'older': 3.0, '50': 1.0, 'store': 1.0, 'and': 13.0, 'just': 1.0, 'love': 1.0, 'yet': 1.0, '3rd': 1.0, 'animals': 2.0, 'sits': 1.0, 'major': 1.0, 'up': 1.0, 'looking': 3.0, 'concern': 1.0, 'even': 4.0, 'of': 4.0, 'old': 1.0, 'than': 1.0, 'saw': 1.0, 'ones': 1.0, 'way': 1.0, 'reach': 1.0, 'going': 1.0, 'apart': 1.0, 'tracking': 1.0, 'one': 4.0, '5': 1.0, '6': 1.0, 'found': 1.0, 'have': 3.0, 'worth': 1.0, 'now': 1.0, 'she': 9.0, 'make': 2.0, 'ended': 1.0, 'buying': 1.0, 'tell': 1.0, 'works': 1.0, 'though': 1.0, 'by': 1.0, 'sees': 1.0, 'highest': 1.0, 'excellent': 1.0, 'side': 1.0, 'asleep': 1.0, 'or': 1.0, 'new': 1.0, 'world': 1.0, 'supposed': 1.0, 'stands': 1.0, 'loves': 2.0, 'little': 1.0, 'her': 4.0, 'white': 3.0, 'everything': 1.0, 'blast': 1.0, 'about': 1.0, 'variety': 1.0, 'around': 1.0, 'least': 2.0, 'soothing': 3.0, 'loved': 1.0, 'box': 1.0, 'for': 5.0, 'seconds': 1.0, 'money': 1.0, 'agree': 1.0, 'option': 1.0, 'reviewers': 1.0, 'isn': 1.0, 'let': 1.0, 'they': 1.0, 'with': 6.0, 'skills': 1.0, 'few': 1.0, 'this': 3.0, 'who': 1.0, 'from': 1.0, 'would': 2.0, 'go': 1.0, 'thing': 2.0, 'actually': 1.0, 'us': 2.0, 'day': 1.0, 'since': 1.0, 'buy': 2.0, 'having': 1.0, 'double': 1.0, 'toy': 1.0, 'other': 1.0, 'but': 3.0, 'modes': 1.0, 'last': 1.0, 'bedding': 1.0, 'someone': 1.0}
Word element => {'owned': 1.0, 'seen': 1.0, 'music': 1.0, 'mobiles': 1.0, 'a': 1.0, 'plays': 1.0, 'loves': 1.0, 'variety': 1.0, 'daughter': 1.0, 'this': 1.0, 'it': 1.0, 'of': 2.0, 'ive': 1.0, 'my': 1.0, 'great': 1.0, 'the': 1.0, 'and': 2.0, 'cool': 1.0, 'lights': 1.0, 'its': 1.0, 'baby': 1.0, 'one': 1.0, 'best': 1.0, 'has': 1.0, 'ever': 1.0}
Word element => {'sounds': 1.0, 'nature': 1.0, 'or': 1.0, 'classic': 1.0, 'with': 1.0, 'happy': 1.0, 'pretty': 1.0, 'easy': 1.0, 'super': 1.0, 'was': 2.0, 'to': 2.0, 'beat': 1.0, 'switch': 1.0, 'up': 1.0, 'of': 1.0, 'always': 1.0, 'nice': 1.0, 'which': 1.0, 'ton': 1.0, 'my': 2.0, 'set': 1.0, 'static': 1.0, '3': 1.0, 'music': 3.0, 'old': 1.0, 'i': 1.0, 'he': 1.0, 'is': 1.0, 'son': 2.0, 'from': 1.0, 'month': 1.0, 'it': 3.0, 'heart': 1.0, 'options': 1.0, 'mobile': 1.0, 'has': 1.0, 'loves': 1.0, 'attached': 1.0, 'his': 1.0, 'crib': 1.0, 'easily': 1.0, 'do': 1.0, 'startles': 1.0, 'this': 1.0, 'wish': 1.0, 'the': 3.0, 'noise': 3.0, 'option': 2.0, 'just': 1.0, 'goes': 1.0, 'white': 3.0, 'rain': 1.0, 'a': 1.0, 's': 1.0}
Word element => {'happy': 1.0, 'is': 1.0, 'baby': 1.0, 'our': 1.0, 'and': 1.0, 'so': 1.0, 'minutes': 1.0, '40': 1.0, 'the': 1.0, 'a': 1.0, 'tiny': 1.0, 'soothe': 1.0, 'n': 1.0, 'for': 1.0, 'variety': 1.0, 'groove': 1.0, 'love': 2.0, 'great': 1.0, 'it': 1.0, 'we': 1.0, 'plays': 1.0}
Word element => {'too': 1.0, 'be': 1.0, 'will': 1.0, 'bugs': 1.0, 'for': 1.0, 'entertaining': 1.0, 'up': 1.0, 'take': 1.0, 'light': 1.0, 'mobile': 1.0, 'to': 3.0, 'along': 1.0, 'play': 1.0, 'feature': 2.0, 'nature': 1.0, 'great': 1.0, 'control': 1.0, 'the': 4.0, 'calmly': 1.0, 'heartbeat': 1.0, 'baby': 1.0, 'with': 1.0, 'this': 1.0, 'sounds': 1.0, 'whilst': 1.0, 'loves': 1.0, 'sleep': 1.0, 'falls': 1.0, 'handy': 1.0, 'and': 4.0, 'animals': 1.0, 'so': 1.0, 'watching': 1.0, 'listening': 1.0, 'is': 2.0, 'rotate': 1.0, 'volume': 1.0}
Word element => {'product': 1.0, 'either': 1.0, 'annoying': 1.0, 'music': 1.0, 'animals': 1.0, 'adorable': 1.0, 'old': 1.0, 'cooing': 1.0, 'easy': 1.0, 'today': 1.0, 'to': 1.0, 'was': 1.0, 'together': 1.0, 'at': 1.0, 'arrived': 1.0, 'put': 1.0, 'week': 1.0, 'mobile': 1.0, 'good': 1.0, 'loves': 1.0, 'and': 2.0, 'our': 1.0, '7': 1.0, 'terribly': 1.0, 'it': 2.0, 'this': 1.0, 'he': 1.0, 'not': 1.0, 'grinning': 1.0, 'is': 2.0, 'the': 2.0, 'currently': 1.0}
Word element => {'over': 1.0, 'comfortable': 1.0, 'feel': 1.0, 'instead': 1.0, 'dresser': 1.0, 'his': 2.0, 'unit': 1.0, 'crib': 1.0, 'upper': 1.0, 'detached': 1.0, 'so': 1.0, 'trouble': 1.0, 'himself': 1.0, 'get': 1.0, 'and': 3.0, 'listen': 1.0, 'was': 1.0, 'now': 1.0, 'to': 2.0, 'problem': 1.0, 'of': 2.0, 'covering': 1.0, 'issue': 1.0, 'leaving': 1.0, 'an': 1.0, 'duct': 3.0, 'even': 1.0, 'speakers': 2.0, 'when': 1.0, 'by': 1.0, 'loud': 1.0, 'this': 2.0, 'only': 1.0, 'he': 3.0, 'i': 5.0, 'volume': 1.0, 'into': 1.0, 'that': 3.0, 'loves': 1.0, 'off': 1.0, 'mobile': 3.0, 'it': 1.0, 'solved': 1.0, 'on': 2.0, 'with': 1.0, 'piece': 1.0, 'from': 1.0, 'peel': 1.0, 'is': 3.0, 'still': 1.0, 'son': 2.0, 'lower': 1.0, 'setting': 2.0, 'ridiculously': 1.0, 'the': 10.0, 'my': 3.0, 'removed': 1.0, 'infant': 1.0, 'can': 2.0, 'music': 2.0, 'sitting': 1.0, 'a': 1.0, 'tape': 3.0, 'would': 1.0, 'lowest': 1.0, 'be': 2.0, 'love': 1.0, 'afraid': 1.0, 'both': 1.0, 'd': 1.0, 'able': 1.0}
Word element => {'mobile': 1.0, 'very': 1.0, 'are': 1.0, 'volume': 1.0, 'lit': 1.0, 'is': 1.0, 'good': 1.0, 'loves': 1.0, 'has': 1.0, 'was': 1.0, 'not': 1.0, 'perfectly': 1.0, 'and': 2.0, 'since': 1.0, 'a': 2.0, 'lighted': 1.0, 'about': 1.0, 'nervous': 1.0, 'night': 1.0, 'i': 1.0, 'light': 1.0, 'on': 1.0, 'controls': 1.0, 'the': 2.0, 'happy': 1.0, 'my': 1.0, 'up': 1.0, 'bottom': 1.0, 'with': 1.0, 'only': 1.0, 'this': 2.0, 'it': 3.0, 'moving': 1.0, 'scene': 1.0, 'but': 1.0, 'daughter': 1.0}
Word element => {'definitely': 1.0, 'would': 1.0, 'cute': 1.0, 'super': 1.0, 'well': 1.0, 'listen': 1.0, 'different': 2.0, 'of': 1.0, 'lots': 1.0, 'beginning': 1.0, 'daughters': 1.0, 'songs': 1.0, 'in': 1.0, 'crib': 1.0, 'recommend': 1.0, 'she': 1.0, 'i': 1.0, 'old': 1.0, 'mobile': 1.0, 'use': 1.0, 'loved': 1.0, 'my': 1.0, 'bought': 1.0, 's': 1.0, 'sounds': 1.0, 'months': 1.0, 'almost': 1.0, 'the': 1.0, '2': 1.0, 'to': 3.0, 'now': 1.0, 'and': 2.0, 'has': 2.0, 'this': 1.0, 'it': 2.0, 'as': 1.0, 'from': 1.0}
Word element => {'lot': 1.0, 'used': 1.0, 'have': 1.0, 'me': 1.0, 'trust': 1.0, 'same': 1.0, 'running': 1.0, 'got': 1.0, 'first': 1.0, 'once': 1.0, 'her': 1.0, 'long': 1.0, 'was': 1.0, 'buttons': 1.0, 'loved': 1.0, 'this': 3.0, 'she': 7.0, 'it': 6.0, 'now': 2.0, 'older': 1.0, 'only': 1.0, 'is': 4.0, 'an': 2.0, 'fact': 1.0, 'crib': 1.0, 'little': 1.0, 'in': 2.0, 'year': 1.0, 'awesome': 1.0, 'that': 2.0, 'mobile': 1.0, 'lo': 1.0, 'keeps': 1.0, 'on': 1.0, 'put': 1.0, 'your': 1.0, 'standing': 1.0, 'has': 1.0, 'time': 1.0, 'infant': 1.0, 'lay': 1.0, 'definitely': 1.0, 'getting': 1.0, 'occupied': 1.0, '1': 1.0, 'and': 2.0, 'a': 3.0, 'as': 1.0, 'all': 1.0, 'the': 4.0, 'battery': 2.0, 'despite': 1.0, 'when': 2.0, 'seen': 1.0, 'for': 1.0, 'still': 2.0, 'pushing': 1.0, 'enjoys': 1.0, 'watching': 1.0, 'i': 3.0}
Word element => {'nursery': 1.0, 'to': 1.0, 'addition': 1.0, 'nice': 1.0, 'but': 1.0, 's': 2.0, 'baby': 1.0, 'makes': 1.0, 'has': 1.0, 'mobile': 2.0, 'everything': 1.0, 'here': 1.0, 'detachable': 1.0, 'feature': 1.0, 'not': 1.0, 'yet': 1.0, 'love': 2.0, 'the': 2.0, 'great': 1.0, 'this': 2.0, 'it': 1.0, 'sound': 1.0, 'box': 1.0, 'is': 1.0, 'a': 2.0, 'very': 1.0, 'and': 1.0, 'cute': 1.0}
Word element => {'loudly': 1.0, 'bit': 1.0, 'a': 1.0, 'turning': 1.0, 'conrol': 1.0, 'toys': 1.0, 'no': 1.0, 'remote': 1.0, 'much': 1.0, 'didn': 1.0, 'see': 1.0, 'better': 1.0, 'our': 1.0, 'i': 1.0, 'great': 1.0, 'it': 1.0, 't': 1.0, 'girl': 1.0, 'very': 1.0, 'like': 1.0}
Word element => {'last': 1.0, 'of': 2.0, 'will': 1.0, 'quality': 1.0, 'years': 1.0, 'about': 1.0, 'fast': 1.0, 'was': 1.0, 'time': 1.0, 'favorite': 1.0, 'gift': 1.0, 'bought': 1.0, 'product': 3.0, 'a': 1.0, 'that': 2.0, 'like': 1.0, '100': 1.0, 'my': 1.0, 'the': 4.0, 'songs': 1.0, 'knees': 1.0, 'very': 1.0, 'as': 1.0, 'couple': 1.0, 'delivery': 1.0, 'and': 1.0, 'just': 1.0, 'i': 1.0, 'for': 2.0, 'love': 1.0, 'he': 1.0, 'it': 2.0, 'recommended': 1.0, 'at': 1.0, 'looks': 1.0, 'stuff': 2.0, 'is': 1.0, 'his': 1.0}
Word element => {'bought': 1.0, 'great': 2.0, 'new': 1.0, 'me': 1.0, 'sent': 1.0, 'immediately': 1.0, 'portrays': 1.0, 'with': 3.0, 'as': 3.0, 'to': 4.0, 'any': 1.0, 'picture': 1.0, 'characters': 1.0, 'continue': 1.0, 'little': 2.0, 'loop': 1.0, 'and': 6.0, 'variety': 1.0, 'why': 1.0, 'just': 2.0, 'shockingly': 1.0, 'attachment': 1.0, 'top': 1.0, 'tiny': 1.0, 'a': 7.0, 's': 3.0, 't': 3.0, 'cute': 1.0, 'are': 2.0, 'rotating': 2.0, 'not': 2.0, 'they': 1.0, 'pink': 1.0, 'sleeping': 1.0, 'mobile': 4.0, 'discs': 2.0, 'better': 1.0, 'minutes': 1.0, 'was': 1.0, 'already': 1.0, 'starting': 1.0, 'it': 3.0, 'she': 1.0, 'hub': 1.0, 'this': 4.0, 'know': 1.0, 'found': 1.0, 'grinding': 1.0, 'provided': 1.0, 'asleep': 1.0, 'hanging': 1.0, 'in': 1.0, 'only': 1.0, 'company': 2.0, 'purchase': 1.0, 'everything': 1.0, 'service': 1.0, 'if': 2.0, 'very': 1.0, 'plays': 2.0, 'music': 3.0, 'can': 1.0, 'lovely': 1.0, 'about': 1.0, 'lullaby': 1.0, 'i': 5.0, 'haven': 1.0, 'flexibility': 1.0, 'is': 2.0, 'fall': 1.0, 'that': 7.0, 'box': 1.0, 'the': 14.0, 'of': 6.0, 'super': 1.0, 've': 1.0, '40': 2.0, 'yes': 1.0, 'off': 1.0, 'continuously': 1.0, 'on': 1.0, 'sound': 1.0, 'make': 1.0, 'love': 2.0, 'for': 1.0, 'product': 2.0, 'isn': 1.0, 'having': 2.0, 'than': 1.0, 'll': 2.0, 'pull': 1.0, 'there': 1.0, 'loud': 1.0, 'you': 2.0, 'travel': 1.0, 'too': 1.0, 'one': 1.0, 'lot': 1.0, 'couldn': 1.0, 'trouble': 1.0, 'get': 1.0, 'problem': 1.0, 'part': 2.0, 'attached': 1.0, 'customer': 1.0, 'noise': 1.0, 'instead': 1.0, 'contacted': 1.0, 'them': 1.0, 'proof': 1.0}
Word element => {'player': 1.0, 'a': 1.0, 'as': 1.0, 'with': 1.0, 'will': 1.0, 'music': 2.0, 'to': 2.0, 'choices': 1.0, 'great': 1.0, 'her': 2.0, 'grow': 1.0, 'plays': 1.0, 'long': 1.0, 'enough': 1.0, 'put': 1.0, 'sleep': 1.0, 'i': 1.0}
Word element => {'better': 1.0, 'will': 1.0, 'sing': 1.0, 'the': 1.0, 'if': 1.0, 'can': 1.0, 'it': 2.0, 's': 1.0, 'rhythm': 1.0, 'but': 1.0, 'not': 1.0, 'thing': 1.0, 'be': 1.0, 'music': 1.0, 'remote': 1.0, 'and': 1.0, 'only': 2.0, 'is': 2.0, 'really': 1.0, 'good': 1.0, 'no': 1.0, 'control': 1.0}
Word element => {'back': 1.0, 'velcro': 1.0, 'get': 1.0, 'to': 1.0, 'easy': 1.0, 'great': 1.0, 'and': 1.0, 'quality': 1.0, 'bib': 1.0, 'boys': 1.0, 'for': 1.0, 'material': 1.0, 'neutral': 1.0, 'both': 1.0, 'good': 1.0, 'of': 1.0, 'girls': 1.0, 'or': 1.0, 'the': 3.0, 'with': 1.0, 'on': 2.0, 'is': 1.0}
Word element => {'eyes': 1.0, 'fish': 1.0, 'my': 1.0, 'the': 3.0, 'old': 1.0, 'cloth': 1.0, 'and': 2.0, '8m': 1.0, 'but': 1.0, 'chew': 1.0, 'soft': 2.0, 'looking': 1.0, 'not': 1.0, 'hold': 1.0, 'product': 1.0, 'material': 1.0, 'a': 1.0, 'for': 1.0, 'could': 1.0, 'was': 1.0, 'look': 1.0, 'on': 1.0, 'she': 1.0, 'loves': 1.0, 'of': 1.0}
Word element => {'loves': 1.0, 'she': 1.0, 'teether': 1.0, 'a': 2.0, 'it': 1.0, 'great': 1.0, 'my': 1.0, 'toy': 1.0, 'product': 1.0, 'good': 1.0, 'and': 2.0, 'quality': 1.0, 'safe': 1.0, 'fun': 1.0, 'daughter': 1.0, 'uses': 1.0, 'bath': 1.0, 'is': 1.0}
Word element => {'set': 1.0, 'nice': 1.0, 'on': 2.0, 'rating': 1.0, 'see': 1.0, 'well': 1.0, 'm': 1.0, '4': 1.0, 'i': 6.0, 'liked': 1.0, 'stars': 1.0, 'for': 2.0, 'really': 1.0, 'you': 1.0, 'was': 1.0, 'its': 2.0, 'gift': 1.0, 'ordered': 2.0, 'the': 2.0, 'my': 2.0, 'because': 2.0, 'not': 1.0, 'it': 6.0, 'she': 1.0, 'baby': 1.0, 'and': 2.0, 'though': 1.0, 'girlfriend': 1.0, 'girl': 1.0, 'found': 1.0, 'pictures': 1.0, 'anyways': 1.0, 'can': 1.0, 'name': 2.0, 'pick': 1.0, 'towel': 2.0, 'out': 1.0, 'so': 1.0, 'after': 1.0, 'thought': 1.0, 'gonna': 2.0, 'be': 2.0, 'however': 1.0, 'personalized': 2.0, 'all': 2.0, 'as': 1.0, 'a': 4.0, 's': 2.0, 'could': 1.0, 'in': 1.0}
Word element => {'so': 1.0, 'are': 1.0, 'the': 1.0, 'it': 1.0, 'she': 1.0, 'baby': 1.0, 'loved': 1.0, 'this': 1.0, 'items': 1.0, 'as': 1.0, 'just': 1.0, 'a': 2.0, 'friend': 1.0, 'that': 1.0, 'bought': 1.0, 'gift': 1.0, 'for': 1.0, 'had': 1.0, 'cute': 1.0, 'her': 1.0}
Word element => {'bath': 1.0, 'a': 1.0, 'kit': 1.0, 'baby': 1.0, 'gift': 1.0, 'perfect': 1.0, 'of': 1.0, 'bathing': 1.0, 'for': 3.0, 'useful': 1.0, 'first': 1.0, 'babies': 1.0, 'any': 1.0, 'very': 1.0, 'during': 1.0, 'the': 1.0, 'new': 1.0, '6': 1.0, 'born': 1.0, 'months': 1.0}
Word element => {'baby': 1.0, 'feeling': 1.0, 'skin': 1.0, 'it': 2.0, 'perfect': 1.0, 'is': 2.0, 'good': 1.0, 'product': 1.0, 'soft': 2.0, 'very': 1.0, 'and': 2.0, 'cozy': 1.0, 'gentle': 1.0, 'happy': 1.0, 'babies': 1.0, 'in': 1.0, 'for': 1.0}
Word element => {'highly': 1.0, 'said': 1.0, 'reviews': 1.0, 'washing': 1.0, 'travel': 1.0, 'pillow': 1.0, 'the': 2.0, 'fear': 1.0, 'did': 1.0, 'but': 1.0, 'to': 2.0, 'use': 1.0, 'purchased': 1.0, 'of': 3.0, 'daughter': 1.0, 'for': 3.0, 'our': 1.0, 'remove': 1.0, 'on': 1.0, 'time': 2.0, 'or': 1.0, 'loves': 1.0, 'top': 1.0, 'other': 1.0, 'nap': 2.0, 'we': 2.0, 'mat': 1.0, 'wash': 1.0, 'some': 1.0, 'at': 1.0, 'what': 1.0, 'before': 1.0, 'her': 1.0, 'daycare': 2.0, 'recommend': 1.0, 'easy': 1.0, 'she': 1.0, 'this': 1.0, 'it': 2.0, 's': 1.0}
Word element => {'gift': 1.0, 'a': 1.0, 'prints': 1.0, 'these': 1.0, 'fun': 1.0, 'came': 1.0, 'feet': 1.0, 'animal': 1.0, 'who': 1.0, 'loves': 1.0, 'warmers': 1.0, 'adore': 1.0, 'will': 1.0, 'ready': 1.0, 'anyone': 1.0, 'in': 1.0, 'original': 1.0, 'packing': 1.0, 'and': 2.0, 'as': 1.0, 'all': 1.0, 'little': 1.0, 'give': 1.0, 'new': 1.0, 'to': 1.0}
Word element => {'sets': 1.0, 'i': 1.0, 's': 1.0, 'that': 1.0, '34': 2.0, 'of': 1.0, 'bunch': 1.0, 'have': 1.0, 'they': 3.0, 'is': 1.0, 'why': 1.0, 'son': 1.0, 'love': 1.0, 'a': 1.0, 'law': 1.0, 'in': 1.0, 'daughter': 1.0, 'though': 1.0, 'starting': 1.0, 'spoons': 3.0, 'and': 2.0, 'only': 1.0, 'my': 2.0, 'ordered': 1.0, 'find': 1.0, 'more': 1.0, '2': 1.0, 'these': 2.0, 'the': 1.0, 'just': 1.0, 'starter': 1.0, 'use': 1.0, 'even': 1.0, 'granddaughter': 1.0, 'to': 2.0, 'be': 1.0, 'eat': 1.0}
Word element => {'into': 1.0, 'that': 1.0, 'face': 1.0, 'her': 2.0, 'still': 1.0, 'great': 1.0, 'these': 2.0, 'the': 4.0, 'reach': 2.0, 'get': 1.0, 'quite': 1.0, 'bits': 1.0, 'months': 2.0, 'now': 1.0, 'was': 1.0, 'is': 2.0, 'with': 2.0, 'are': 1.0, 'started': 1.0, 'using': 1.0, '6': 1.0, 'of': 1.0, '9': 1.0, 'lean': 1.0, 'metal': 1.0, 'they': 1.0, 'make': 1.0, 'on': 1.0, 'your': 1.0, 'and': 3.0, 'too': 1.0, 'it': 1.0, 'she': 2.0, 'long': 1.0, 'when': 1.0, 'fantastic': 1.0, 'you': 1.0, 't': 2.0, 'we': 2.0, 's': 1.0, 'over': 1.0, 'child': 3.0, 'don': 2.0, 'have': 1.0, 'working': 1.0, 'far': 1.0, 'mouth': 2.0, 'spoons': 2.0, 'to': 3.0, 'our': 2.0, 'typically': 1.0, 'feed': 1.0, 'rubber': 1.0, 'end': 2.0, 'use': 1.0}
Word element => {'and': 1.0, 'loves': 1.0, 'angles': 1.0, 'for': 1.0, 'right': 1.0, 'to': 1.0, 'first': 1.0, 'time': 1.0, 'son': 1.0, 'feedings': 1.0, 'made': 1.0, 'my': 1.0, 'them': 1.0, 'just': 1.0, 'use': 1.0, 'perfect': 2.0, 'easy': 1.0, 'size': 1.0, 'so': 1.0}
Word element => {'baby': 1.0, 'for': 1.0, 'soft': 1.0, 's': 1.0, 'also': 1.0, 'this': 1.0, 'they': 2.0, 'are': 3.0, 'my': 2.0, 'and': 1.0, 'favorite': 1.0, 'mouth': 1.0, 'easy': 1.0, 'to': 1.0, 'long': 1.0, 'spoons': 1.0, 'handle': 1.0}
Word element => {'dishwasher': 1.0, 'by': 1.0, 'easy': 1.0, 'bag': 1.0, 'to': 3.0, 'old': 1.0, 'budding': 1.0, 'is': 1.0, 'starting': 1.0, 'months': 1.0, 'sometimes': 1.0, 'wash': 1.0, 'teeth': 2.0, 'hand': 1.0, '9': 1.0, 'have': 1.0, 'baby': 1.0, 'hard': 1.0, 'my': 1.0, 'diaper': 1.0, 'the': 1.0, 'bumps': 1.0, 'small': 1.0, 'so': 1.0, 'rubber': 1.0, 'her': 1.0, 'put': 1.0, 'or': 1.0, 'almost': 1.0, 'into': 1.0}
Word element => {'am': 1.0, 'glad': 1.0, 'm': 1.0, 'finger': 1.0, 'feeding': 2.0, 'about': 1.0, 'stressed': 1.0, 'first': 1.0, 'after': 1.0, 'immediately': 1.0, 'give': 1.0, 'got': 1.0, 'worth': 1.0, 'were': 1.0, 'agree': 1.0, 'face': 1.0, 'off': 1.0, 'so': 1.0, 'bit': 2.0, 'every': 2.0, 'try': 1.0, 'works': 1.0, 'also': 1.0, 'last': 1.0, 'her': 5.0, 'of': 3.0, 'able': 1.0, 'is': 1.0, 'read': 1.0, 'little': 2.0, 'using': 1.0, 'like': 1.0, 'which': 1.0, 'purchased': 1.0, 'had': 1.0, 'tried': 1.0, 'old': 1.0, 'with': 1.0, 'for': 1.0, 'expensive': 1.0, 'spatula': 1.0, 'love': 1.0, 'less': 1.0, 'made': 1.0, 'out': 2.0, 'the': 14.0, 'some': 1.0, 'these': 3.0, 'reviews': 1.0, 'they': 2.0, 'i': 11.0, '4': 1.0, 'bought': 1.0, 'was': 4.0, 'store': 1.0, 'to': 6.0, 'spoons': 5.0, 'all': 2.0, 'on': 1.0, 'put': 1.0, 'use': 2.0, 'from': 3.0, 'other': 2.0, 'spoonful': 1.0, 'get': 3.0, 'enjoying': 1.0, 'and': 7.0, 'can': 1.0, 'but': 3.0, 'food': 6.0, 'that': 2.0, 'into': 4.0, 'jar': 1.0, 'my': 4.0, 'feeling': 1.0, 'pull': 2.0, 'it': 6.0, 'month': 1.0, 'spoon': 2.0, 'them': 2.0, 'baby': 3.0, 'a': 4.0, 's': 1.0, 'having': 1.0, 'because': 1.0, 'mouth': 4.0, 'would': 1.0, 'dip': 2.0, 'in': 1.0, 'flat': 1.0, 'difficult': 1.0, 'still': 1.0, 'are': 1.0}
Word element => {'side': 1.0, 'or': 1.0, 'spoon': 2.0, 'silicone': 1.0, 'months': 2.0, 'them': 1.0, 'love': 1.0, 'handle': 1.0, 'using': 1.0, 'at': 2.0, 'can': 1.0, 'so': 1.0, '6': 1.0, 'started': 1.0, 'real': 1.0, 'are': 1.0, 'll': 1.0, 'design': 1.0, 'we': 1.0, 'great': 1.0, 'the': 3.0, 'these': 1.0, 'and': 2.0, 'a': 1.0, '15': 1.0, 'still': 1.0, 'oxo': 1.0, 'i': 2.0, 'when': 1.0, 'use': 1.0, 'his': 1.0, 'even': 1.0, 'he': 1.0, 'definitely': 1.0}
Word element => {'teething': 1.0, 'since': 1.0, 'food': 2.0, 'help': 1.0, 'handles': 1.0, 'for': 1.0, 'which': 1.0, 'and': 2.0, 'like': 1.0, 'size': 1.0, 'also': 1.0, 'perfect': 1.0, 'great': 1.0, 'heavy': 1.0, 'the': 2.0, 'scoop': 1.0, 'are': 2.0, 'they': 2.0, 'not': 1.0, 'he': 2.0, 'to': 1.0, 'off': 1.0, 'bite': 1.0, 'on': 1.0, 'is': 2.0, 'them': 1.0}
Word element => {'pair': 1.0, 'need': 1.0, 'only': 1.0, 'will': 1.0, 'but': 1.0, 'is': 1.0, 'so': 1.0, 'me': 1.0, 'never': 1.0, 'mouth': 1.0, 'hesitant': 1.0, 'useful': 1.0, 'are': 2.0, 'larger': 1.0, 'enough': 1.0, 'was': 2.0, 'gums': 1.0, 'you': 1.0, 'when': 2.0, 'into': 1.0, 'to': 4.0, 'spoons': 2.0, 'and': 1.0, 'starting': 1.0, 'one': 1.0, 'advice': 1.0, 'months': 1.0, 'great': 1.0, 'these': 3.0, 'the': 2.0, 'baby': 2.0, 'small': 1.0, 'they': 1.0, 'on': 2.0, 'your': 1.0, 'get': 1.0, 'learned': 1.0, 'fit': 1.0, 'for': 2.0, 's': 1.0, 'transitioned': 1.0, 'sometimes': 1.0, 'solids': 1.0, '4': 1.0, 'i': 2.0, 'used': 1.0, 'my': 2.0, 'exclusively': 1.0, 'son': 1.0, 'he': 2.0, 'hard': 1.0, '8': 1.0, 'gentle': 1.0, 'take': 1.0, 'spoon': 1.0, 'bigger': 1.0, 'bites': 1.0, 'him': 1.0, '34': 2.0, 'side': 1.0, 'if': 1.0}
Word element => {'messes': 1.0, 'clean': 1.0, 'easy': 1.0, 'my': 1.0, 'well': 1.0, 'really': 1.0, 'houses': 1.0, 'sets': 1.0, 'have': 1.0, 'happy': 1.0, 'so': 1.0, 'up': 2.0, 'these': 2.0, 'hands': 1.0, 'the': 2.0, 'scratch': 1.0, 'he': 3.0, 'buying': 1.0, 'with': 2.0, 'that': 2.0, 'were': 1.0, 'like': 1.0, 'and': 4.0, 'on': 2.0, 'months': 1.0, 'wouldn': 2.0, 'silicone': 1.0, 'son': 1.0, 'is': 2.0, 'started': 1.0, 'worried': 2.0, 'just': 1.0, 'solids': 1.0, 'fed': 1.0, 'wonderful': 1.0, 'being': 1.0, 'old': 1.0, 't': 3.0, 'we': 3.0, 'a': 1.0, 'swallow': 1.0, 'spoon': 1.0, 'also': 2.0, 'in': 2.0, 'multiple': 1.0, 'him': 1.0, 'be': 1.0, 'able': 1.0, 'all': 1.0, 'our': 1.0, 'spoons': 1.0, 'to': 3.0, 'are': 2.0, 'they': 2.0, 'tiny': 1.0, 'enough': 1.0, 'grandparents': 1.0, 'for': 1.0, 'fit': 2.0, '4': 1.0, 'texture': 1.0, 'his': 3.0, 'little': 1.0, 'mouth': 3.0, 'doesn': 1.0}
Word element => {'be': 1.0, 'won': 1.0, 'it': 1.0, 'short': 1.0, 'was': 1.0, 'sorry': 1.0, 'had': 1.0, 'spoon': 3.0, 'baby': 3.0, 'years': 1.0, 'every': 1.0, 'try': 1.0, '16': 1.0, 'spanning': 1.0, 'an': 1.0, 'most': 1.0, 'but': 1.0, 'okay': 1.0, 'handled': 1.0, 'is': 1.0, 'like': 1.0, 'exaggeration': 1.0, 'sounds': 1.0, 'to': 2.0, 'spoons': 1.0, 'have': 3.0, 'that': 2.0, 'were': 1.0, 'and': 2.0, 'too': 1.0, 'round': 1.0, '4': 1.0, 'i': 2.0, 'large': 1.0, 'for': 1.0, 'handle': 1.0, 't': 1.0, 'a': 1.0, 'learning': 1.0, 'eat': 1.0, 'solids': 1.0, 'kids': 1.0, 'found': 1.0, 'this': 1.0, 'perfect': 1.0, 'from': 1.0, 'the': 5.0, 'length': 1.0, 'of': 2.0, 'down': 1.0, 'size': 1.0, 'you': 2.0}
Word element => {'solids': 1.0, 'who': 1.0, 'and': 1.0, 'feed': 1.0, 'these': 1.0, 'are': 3.0, 'ones': 1.0, 'eat': 1.0, 'that': 1.0, 'spoons': 1.0, 'little': 1.0, 'for': 2.0, 'works': 1.0, 'great': 2.0, 'learning': 2.0, 'those': 1.0, 'to': 2.0, 'self': 1.0}
Word element => {'look': 1.0, 'getting': 1.0, 'will': 1.0, 'friend': 1.0, 'brilliant': 1.0, 'non': 1.0, 'from': 1.0, 'be': 1.0, 'him': 1.0, 'feed': 1.0, 'just': 1.0, 'mine': 1.0, 'reason': 1.0, 'feeding': 1.0, 'great': 2.0, 'your': 1.0, 'mouths': 1.0, 'little': 1.0, 'their': 1.0, 'perfect': 1.0, 'around': 1.0, 'is': 3.0, 'definitely': 1.0, 'ever': 1.0, 'they': 4.0, 'only': 2.0, 'with': 1.0, 'another': 1.0, 'my': 1.0, 'the': 8.0, 'gifts': 1.0, 'coated': 1.0, 'are': 2.0, 'i': 6.0, 'these': 3.0, 'products': 1.0, 'son': 1.0, 'can': 2.0, 'compare': 1.0, 'size': 1.0, 'used': 1.0, 'got': 2.0, 'even': 1.0, 'huge': 1.0, 'months': 1.0, 'our': 1.0, 'spoons': 3.0, 'to': 2.0, 'now': 1.0, 'have': 3.0, 'other': 2.0, 'because': 2.0, 'that': 1.0, 'been': 1.0, 'for': 6.0, 'love': 1.0, 'baby': 3.0, 'night': 1.0, 'them': 4.0, 'side': 1.0, 'run': 1.0, 't': 1.0, 'we': 2.0, 'a': 2.0, 'has': 1.0, 'well': 1.0, 'couple': 1.0, 'too': 1.0, 'and': 5.0, 'shower': 1.0, 'once': 1.0, 'of': 3.0, 'up': 1.0, 'teeth': 1.0, 'using': 1.0, 'hold': 1.0, 'though': 1.0, 'spoon': 2.0, 'through': 1.0, 'turn': 1.0, 'length': 1.0, 'said': 1.0, 'dishwasher': 1.0, 'almost': 1.0, 'really': 2.0, 'every': 1.0}
Word element => {'or': 1.0, '6': 1.0, 'did': 1.0, 'helped': 1.0, 'cheeks': 1.0, 'red': 1.0, 'if': 2.0, 'eczema': 1.0, 'could': 1.0, 'a': 1.0, 'eating': 1.0, 'enjoys': 1.0, 'her': 4.0, 'feed': 1.0, 'makes': 1.0, 'scoops': 1.0, 'face': 1.0, 'however': 1.0, 'easly': 1.0, '7': 1.0, 'drips': 1.0, 'food': 2.0, 'she': 3.0, 'it': 5.0, 'perfect': 1.0, 'this': 3.0, 'over': 1.0, 'up': 1.0, 'have': 2.0, 'give': 1.0, 'not': 2.0, 'says': 1.0, 'just': 1.0, 'why': 1.0, 'spoon': 5.0, 'and': 5.0, 'when': 2.0, 'changes': 1.0, 'gets': 3.0, 'i': 7.0, 'using': 2.0, 'stars': 1.0, 'for': 2.0, 'acutally': 1.0, 'saw': 1.0, 'other': 1.0, 'would': 1.0, 'something': 1.0, 'burky': 2.0, 'to': 1.0, 'all': 3.0, 'spoons': 1.0, 'rashes': 1.0, 'the': 1.0, 'fits': 1.0, 'my': 2.0, 'baby': 3.0, '6month': 1.0, 'in': 1.0, 'better': 1.0, 'their': 1.0, 'been': 2.0, 'that': 1.0, 'mouth': 1.0, 'so': 5.0, 'think': 1.0, 'twice': 1.0, 'one': 1.0, 'color': 1.0, 'bought': 1.0, 'end': 1.0, 'tiny': 1.0, 'its': 1.0, 'expected': 1.0, 'has': 1.0, 'easier': 1.0, 'angle': 1.0, 'review': 1.0, 'hot': 1.0, 'portion': 1.0, 'didnt': 2.0, 'really': 1.0, 'around': 1.0, 'more': 1.0, 'is': 1.0, 'needed': 1.0, 'lot': 1.0, 'at': 1.0}
Word element => {'everyday': 1.0, 'enjoy': 1.0, 'd': 1.0, 'well': 1.0, 'kids': 1.0, 'at': 1.0, 'with': 1.0, 'day': 1.0, 'times': 1.0, 'something': 1.0, 'would': 1.0, 'figured': 1.0, 'amazon': 1.0, 'others': 1.0, 'some': 1.0, 'than': 1.0, 'little': 1.0, 'pricer': 1.0, 'invest': 1.0, 'months': 1.0, 'decided': 1.0, 'available': 1.0, 'colors': 1.0, 'for': 1.0, 'love': 1.0, 'jar': 1.0, 'inside': 1.0, 'rest': 1.0, 'handle': 1.0, 'awkward': 1.0, 'his': 1.0, 'spoon': 3.0, 'while': 1.0, 'long': 1.0, 'manage': 1.0, 'so': 4.0, 'between': 1.0, 'food': 3.0, 'can': 1.0, 'baby': 2.0, 'glad': 1.0, 'rubber': 3.0, 'the': 12.0, 'might': 1.0, 's': 1.0, 'a': 4.0, 't': 2.0, 'big': 1.0, 'great': 1.0, 'is': 2.0, 'deep': 1.0, 'were': 1.0, 'bite': 1.0, 'on': 1.0, 'your': 1.0, 'bowl': 1.0, 'short': 1.0, 'cover': 1.0, 'enough': 1.0, 'of': 5.0, 'metal': 1.0, 'least': 1.0, 'spoons': 1.0, 'as': 3.0, 'to': 4.0, 'up': 1.0, 'gums': 1.0, 'too': 2.0, 'and': 4.0, 'get': 3.0, 'in': 1.0, 'length': 2.0, 'lips': 1.0, 'two': 1.0, 'i': 5.0, 'using': 2.0, 'hold': 1.0, 'like': 1.0, 'that': 5.0, 'protects': 1.0, 'runs': 1.0, 'along': 1.0, 'doesn': 2.0, 'multiple': 1.0, 'be': 1.0, 'chance': 1.0, 'stuck': 1.0, 'also': 1.0, 'not': 2.0, 'it': 3.0}
Word element => {'quality': 1.0, 'liquid': 1.0, 'almost': 1.0, 'spoon': 1.0, 'it': 1.0, 'balance': 1.0, 'have': 1.0, 'perfect': 1.0, 'don': 1.0, 'baby': 1.0, 'foods': 1.0, 'are': 3.0, 'out': 1.0, 'weigh': 1.0, 'they': 1.0, 're': 1.0, 'gentle': 1.0, 'fence': 1.0, 'trying': 1.0, 'you': 1.0, 't': 1.0, 'great': 2.0, 'these': 2.0, '2': 1.0, 'the': 3.0, 'keep': 1.0, 'cost': 1.0, 'if': 1.0, 'for': 1.0, '1': 1.0, 'stage': 1.0, 'shape': 1.0, 'and': 2.0, 'soo': 1.0, 'on': 3.0, 'spoons': 1.0, 'too': 1.0, 'glad': 1.0, 'i': 3.0, 'to': 3.0, 'was': 1.0, 'food': 1.0, 'so': 2.0, 'bought': 1.0}
Word element => {'bad': 1.0, 'not': 1.0, 'overall': 1.0, 'but': 1.0, 'be': 1.0, 'can': 1.0, 'food': 1.0, 'runny': 1.0, 'few': 1.0, 'in': 1.0, 'had': 1.0, 'my': 1.0, 'months': 1.0, 'spoons': 1.0, 'time': 1.0, 'tough': 2.0, 'other': 1.0, 'fitting': 1.0, 'i': 1.0, 'tiny': 1.0, 'with': 1.0, 'first': 1.0, 'mouth': 1.0, 'kiddos': 1.0, 'were': 1.0, 'the': 1.0, 'these': 1.0, 'great': 1.0, 'and': 1.0, 'worked': 1.0, 'really': 2.0, 'a': 1.0, 'well': 1.0}
Word element => {'ones': 1.0, 'chemical': 1.0, 'rather': 1.0, 'utensils': 1.0, 'real': 1.0, 'how': 1.0, 'teach': 1.0, 'must': 1.0, 'bag': 1.0, 'diaper': 1.0, 'one': 2.0, 'today': 1.0, 'getting': 1.0, 'still': 1.0, 'money': 1.0, 'can': 1.0, 'toddler': 1.0, 'when': 1.0, 'use': 2.0, 'finishes': 1.0, 'your': 1.0, 'dual': 1.0, 'like': 1.0, 'also': 1.0, 'old': 1.0, '5months': 1.0, 'set': 1.0, 'used': 1.0, 'her': 1.0, 'things': 1.0, 'keep': 1.0, 'since': 1.0, 'at': 3.0, 'safe': 1.0, 'another': 1.0, 'my': 2.0, 'floppy': 1.0, 'in': 2.0, 'perfect': 1.0, 'cheap': 1.0, 'actually': 1.0, 'for': 2.0, 'everything': 1.0, 'after': 1.0, 'than': 1.0, 'mouth': 1.0, 'size': 1.0, 'determining': 1.0, 'especially': 1.0, 'just': 1.0, 's': 3.0, 'go': 1.0, 'a': 4.0, 'first': 1.0, 're': 1.0, 'parent': 2.0, 'research': 1.0, 'she': 3.0, 'it': 1.0, 'extra': 1.0, 'definitely': 1.0, 'buy': 1.0, 'i': 5.0, 'that': 2.0, 'so': 1.0, 'time': 2.0, 'conscious': 1.0, 'almost': 1.0, 'laden': 1.0, 'm': 1.0, 'price': 1.0, 'best': 1.0, 'and': 4.0, 'these': 1.0, 'the': 8.0, 'now': 1.0, 'was': 1.0, 'to': 2.0, 'as': 1.0, 'all': 1.0, 'qualities': 1.0, 'penny': 1.0, 'grandma': 1.0, 'had': 1.0, 'purchased': 1.0, 'every': 1.0, 'baby': 3.0, 'them': 3.0, 'they': 2.0, 'double': 1.0, 'are': 1.0, 'everywhere': 1.0, 'worth': 2.0}
Word element => {'served': 1.0, 'spoon': 1.0, 'end': 1.0, 'other': 1.0, 'use': 1.0, 'never': 2.0, 'it': 2.0, 's': 1.0, 'cute': 1.0, 'just': 1.0, 'did': 1.0, 'practical': 1.0, 'much': 2.0, 'are': 2.0, 'of': 1.0, 'up': 1.0, 'and': 1.0, 'purpose': 1.0, 'wanted': 1.0, 'look': 1.0, 'that': 1.0, 'something': 1.0, 'gerber': 1.0, 'different': 1.0, 'mainly': 1.0, 'but': 1.0, 'the': 4.0, 'more': 3.0, 'traditional': 1.0, 'these': 3.0, 'they': 1.0, 'bought': 1.0, 'i': 4.0, 'ended': 1.0, 'food': 1.0, 'for': 1.0, 'using': 1.0, 'on': 1.0, 'spoons': 1.0, 'can': 1.0, 'hold': 1.0}
Word element => {'scraping': 1.0, 'easily': 1.0, 'shapped': 1.0, 'also': 1.0, 'off': 2.0, 'suck': 1.0, 'of': 1.0, 'nipple': 1.0, 'highly': 1.0, 'really': 1.0, 'any': 1.0, 'to': 1.0, 'as': 1.0, 'hard': 1.0, 'wider': 1.0, 'eating': 2.0, 'with': 4.0, 's': 2.0, 'a': 3.0, 'well': 1.0, 'and': 3.0, 'out': 1.0, 'food': 4.0, 'd': 1.0, 'remember': 1.0, 'it': 4.0, 'she': 1.0, 'i': 1.0, 'fits': 1.0, 'my': 3.0, 'daughter': 2.0, 'tongue': 1.0, 'pushing': 1.0, 'did': 1.0, 'her': 3.0, 'down': 1.0, 'generally': 1.0, 'in': 1.0, 'so': 2.0, 'time': 2.0, 'chin': 1.0, 'these': 2.0, 'the': 4.0, 'first': 3.0, 'nicely': 1.0, 'at': 1.0, 'on': 1.0, 'months': 1.0, 'normal': 1.0, 'recommend': 1.0, 'was': 1.0, 'them': 1.0, 'baby': 1.0, 'spoon': 1.0, 'sort': 1.0, 'youngest': 1.0, 'not': 2.0, 'slurping': 1.0, 'right': 1.0, 'like': 1.0, 'been': 1.0, 'lost': 1.0, 'soft': 1.0, 'allows': 1.0, 'attempt': 1.0, 'doing': 1.0, 'for': 2.0, 'than': 1.0, 'having': 1.0, 'mouth': 1.0}
Word element => {'but': 3.0, 'the': 4.0, 'these': 1.0, 'found': 1.0, 'their': 1.0, 'solids': 1.0, 'love': 1.0, 'for': 1.0, 'recommend': 1.0, 'is': 1.0, 'beginning': 1.0, 'and': 3.0, 'weight': 1.0, 'beaba': 1.0, 'i': 3.0, 'introduce': 1.0, 'also': 1.0, 'them': 3.0, 'anyone': 1.0, 'be': 1.0, 'purchased': 1.0, 'stained': 1.0, 'spoons': 3.0, 'to': 5.0, 'a': 2.0, 'boon': 1.0, 'bit': 1.0, 'nice': 1.0, 'big': 1.0, 'clean': 1.0, 'her': 2.0, 'right': 1.0, 'they': 1.0, 'head': 1.0, 'now': 1.0, 'thin': 1.0, 'easily': 2.0, 'when': 1.0, 'initially': 1.0, 'babies': 1.0, 'that': 1.0, 'gave': 1.0, 'carrots': 1.0, 'of': 1.0, 'are': 2.0, 'have': 1.0, 'small': 1.0, 'handles': 1.0}
Word element => {'certainly': 1.0, 'really': 1.0, 'broken': 1.0, 'back': 1.0, 'snapped': 1.0, 'off': 2.0, 'pop': 1.0, 'course': 1.0, 'hold': 1.0, 'old': 1.0, '9': 1.0, 'on': 2.0, 'put': 2.0, 'use': 1.0, 'to': 2.0, 'one': 1.0, 'decided': 1.0, 'additional': 1.0, 'baby': 1.0, 'quality': 1.0, 'very': 1.0, 'both': 1.0, 'prongs': 1.0, 'sturdy': 1.0, 'boon': 3.0, 'of': 3.0, 'is': 2.0, 'with': 1.0, 'this': 3.0, 'month': 1.0, 'it': 5.0, 'much': 1.0, 'product': 3.0, 'offer': 1.0, 'ordered': 1.0, 'and': 6.0, 'ball': 4.0, 'two': 1.0, 'i': 3.0, 'products': 2.0, 'better': 1.0, 'container': 3.0, 'purchased': 1.0, 'had': 3.0, 'was': 1.0, 'a': 6.0, 'that': 2.0, 'spins': 2.0, 'different': 1.0, 'info': 1.0, 'along': 1.0, 'other': 2.0, 'dropped': 1.0, 'cheerios': 1.0, 'snack': 6.0, 'in': 4.0, 'less': 1.0, 'made': 3.0, 'he': 1.0, 'plastic': 1.0, 'the': 9.0, 'my': 1.0, 'company': 1.0, 'lid': 3.0, 'brands': 1.0, 'than': 1.0, 'does': 1.0, 'few': 1.0, 'by': 1.0, 'just': 1.0, 'wow': 1.0, 'poorly': 1.0, 'not': 2.0, 'stay': 1.0, 'shut': 1.0, 'whenever': 1.0, 'held': 1.0, 'let': 1.0, 'motion': 1.0, 'have': 1.0, 'never': 1.0, 'tried': 1.0, 'problem': 1.0, 'identical': 1.0, 'past': 1.0, 'but': 2.0, 'are': 1.0}
Word element => {'course': 1.0, 'it': 1.0, 'well': 1.0, 'fancy': 1.0, 'seemed': 1.0, 'was': 1.0, 'work': 1.0, 'nothing': 1.0, 'agh': 1.0, 'to': 1.0, 'too': 1.0, 'fine': 1.0, 'lost': 1.0, 'till': 1.0, 'or': 1.0, 'bad': 1.0, 'of': 1.0, 'good': 1.0, 'quality': 1.0, 'item': 1.0}
Word element => {'fix': 1.0, 'needs': 1.0, 'but': 1.0, 'how': 1.0, 'stars': 1.0, '2': 1.0, 'give': 1.0, 'until': 1.0, 'manufacturer': 1.0, 'interest': 1.0, 'inconvenient': 1.0, 'flipping': 2.0, 'times': 1.0, 'read': 1.0, 'very': 1.0, 'i': 10.0, 'thinking': 1.0, 'next': 1.0, 'entertained': 1.0, 'be': 2.0, 'splash': 1.0, 'bought': 1.0, '10': 1.0, 'for': 2.0, 'bathtime': 3.0, 'hygenic': 2.0, 'where': 1.0, 'squeakeri': 1.0, 'defect': 1.0, 'head': 1.0, 'in': 5.0, 'only': 2.0, 'this': 3.0, 'found': 1.0, 'with': 1.0, 'holes': 2.0, 'ducks': 1.0, 'purchased': 1.0, 'time': 1.0, 'so': 1.0, 'free': 1.0, 'duck': 6.0, 'bpa': 2.0, 'his': 1.0, 'flipped': 1.0, 'had': 1.0, 'kick': 1.0, 'over': 6.0, 'month': 1.0, 'it': 5.0, '6': 1.0, 'the': 3.0, 'of': 3.0, 'he': 1.0, 'bottom': 2.0, 'down': 1.0, 'more': 2.0, 'son': 1.0, 'pros': 1.0, 'underwater': 1.0, 'important': 1.0, 'right': 1.0, 'to': 7.0, 'incons': 1.0, 'phthalate': 2.0, 'no': 3.0, 'let': 1.0, 'water': 1.0, 'alot': 2.0, 'plus': 1.0, 'first': 1.0, 'cute': 2.0, 'flips': 1.0, 'received': 1.0, 'also': 1.0, 'making': 1.0, 'which': 1.0, 'pvc': 2.0, 'was': 4.0, 'my': 1.0, 'me': 1.0, 'when': 1.0, 'immediately': 1.0, 'one': 1.0, 'try': 1.0, 'happy': 1.0, 'that': 2.0, 'because': 2.0, 'mouth': 1.0, 'looked': 1.0, 'adorable': 1.0, 'turn': 1.0, 'bigger': 1.0, 'is': 2.0, 'at': 1.0, 'spending': 1.0, 'baby': 4.0, 'upside': 1.0, 'night': 3.0, 'would': 4.0, 'put': 1.0, 'even': 2.0, 'before': 1.0, 'room': 1.0, 'noticed': 2.0, '90': 1.0, 'tipped': 1.0, 'rubber': 1.0, 'bathtub': 1.0, 'needed': 1.0, 'lose': 1.0, 'and': 1.0, 'd': 1.0, 'definitely': 1.0, 'flip': 1.0, 'a': 3.0, 'small': 1.0}
Word element => {'ll': 1.0, 'we': 1.0, 'adult': 1.0, 'friend': 1.0, 'comfortably': 1.0, 'how': 1.0, 'bit': 1.0, 'i': 1.0, 'on': 1.0, 'was': 1.0, 'to': 2.0, 's': 3.0, 'at': 1.0, 'no': 1.0, 'weighted': 1.0, 'get': 1.0, 'and': 1.0, 'him': 2.0, 'he': 5.0, 'this': 1.0, 'yay': 1.0, 'in': 3.0, 'small': 1.0, 'so': 1.0, 'duck': 1.0, 'gets': 1.0, 'water': 1.0, 'is': 1.0, 'fine': 1.0, 'leans': 1.0, 'a': 3.0, 'palm': 1.0, 'little': 2.0, 'sits': 1.0, 'great': 1.0, 'the': 2.0, 'chew': 1.0, 'bath': 1.0, 'an': 1.0, 'surprised': 1.0, 'forward': 1.0, 'but': 1.0, 'just': 2.0, 'have': 1.0, 'likes': 1.0}
Word element => {'youellen': 1.0, 'isjust': 1.0, 'pvc': 1.0, 'bpa': 1.0, 'toys': 1.0, 'bath': 1.0, 'this': 2.0, 'item': 1.0, 'were': 2.0, 'free': 1.0, 'was': 1.0, 'get': 1.0, 'we': 3.0, 'that': 1.0, 'what': 2.0, 'looking': 1.0, 'exactly': 1.0, 'to': 1.0, 'thank': 1.0, 'for': 1.0, 'phthalate': 1.0, 'and': 2.0, 'wanted': 2.0}
Word element => {'entertained': 1.0, 'be': 1.0, 'system': 1.0, 'her': 1.0, 'of': 1.0, 'out': 1.0, 'harmful': 1.0, 'many': 1.0, 'and': 1.0, 'me': 1.0, 'to': 1.0, 'good': 1.0, 's': 1.0, 'that': 1.0, 'better': 1.0, 'keep': 1.0, 'did': 1.0, 'on': 3.0, 'some': 1.0, 'toys': 1.0, 'but': 1.0, 'doesn': 1.0, 'softer': 1.0, 'in': 1.0, 'can': 1.0, 'duck': 1.0, 'research': 1.0, 'this': 2.0, 'the': 2.0, 't': 1.0, 'still': 2.0, 'ordered': 1.0, 'i': 2.0, 'one': 1.0, 'since': 1.0, 'like': 1.0, 'my': 1.0, 'baby': 1.0, 'she': 3.0, 'as': 1.0, 'chemicals': 2.0, 'chews': 1.0, 'after': 1.0, 'everything': 1.0, 'ducks': 1.0, 'doing': 1.0, 'chew': 1.0}
Word element => {'bath': 1.0, 'gift': 1.0, 'very': 1.0, 'idea': 1.0, 'which': 1.0, 'mouths': 1.0, 'in': 1.0, 'made': 1.0, 'them': 1.0, 'safe': 1.0, 'way': 1.0, 'for': 2.0, 'love': 1.0, 'good': 2.0, 'size': 1.0, 'duck': 1.0, 'time': 1.0, 'has': 1.0, 'odd': 1.0, 'near': 1.0, 'same': 1.0, 'called': 1.0, 'is': 2.0, 'course': 1.0, 'well': 1.0, 'a': 1.0, 'of': 1.0, '34': 2.0, 'their': 1.0, 'that': 2.0, 'kids': 1.0, 'put': 1.0, 'an': 1.0, 'be': 1.0, 'introduce': 1.0, 'not': 1.0, 'its': 1.0, 'to': 4.0, 'everyone': 1.0, 'great': 2.0, 'the': 1.0, 'and': 2.0}
Word element => {'that': 1.0, 'knows': 1.0, 'who': 1.0, 'my': 1.0, 'let': 1.0, 'wasn': 1.0, 'little': 1.0, 'disposed': 1.0, 'and': 1.0, 'refund': 1.0, 'use': 1.0, 'got': 1.0, 'white': 1.0, 'over': 1.0, 'duck': 1.0, 'because': 1.0, 'off': 1.0, 'one': 2.0, 't': 1.0, 'the': 2.0, 'upon': 1.0, 'a': 3.0, 'remained': 1.0, 'going': 1.0, 'gave': 1.0, 'with': 1.0, 'arrival': 1.0, 'this': 1.0, 'it': 4.0, 'star': 1.0, 'i': 4.0, 'tried': 1.0, 'reside': 1.0, 'but': 1.0, 'was': 1.0, 'had': 1.0, 'to': 2.0, 'wash': 1.0, 'what': 1.0, 'residue': 2.0}
Word element => {'item': 1.0, 'disapointed': 1.0, 'highly': 1.0, 'anymore': 1.0, 'to': 1.0, 'stick': 1.0, 'i': 3.0, 'reviews': 1.0, 'two': 1.0, 'but': 1.0, 'put': 1.0, 'my': 1.0, 'of': 1.0, 'dishwasher': 1.0, 'tsble': 1.0, 'not': 1.0, 'because': 1.0, 'this': 2.0, 'the': 3.0, 'great': 1.0, 'product': 1.0, 'bought': 2.0, 'used': 1.0, 'they': 2.0, 'them': 2.0, 'for': 1.0, 'in': 2.0, 'when': 2.0, 'kids': 1.0, 'got': 1.0, 'do': 1.0, 'and': 1.0, 'done': 1.0}
Word element => {'out': 1.0, 'go': 1.0, 'when': 1.0, 'us': 1.0, 'love': 1.0, 'one': 1.0, 'for': 2.0, 'item': 1.0, 'must': 1.0, 'is': 1.0, 'works': 1.0, 'yes': 1.0, 'plateoh': 1.0, 'use': 1.0, 'eat': 1.0, 'surface': 1.0, 'flat': 1.0, 'thought': 1.0, 'little': 1.0, 'didn': 1.0, 'but': 1.0, 'i': 1.0, 'wide': 1.0, 'have': 2.0, 'we': 3.0, 'like': 1.0, 'beginning': 1.0, 'need': 1.0, 'plate': 1.0, 'this': 4.0, 'it': 2.0, 'money': 1.0, 'great': 1.0, 't': 1.0, 'the': 1.0, 'my': 2.0, 'at': 1.0, 'a': 2.0, 'waste': 1.0, '34': 2.0, 'of': 1.0, 'you': 1.0, 'was': 1.0, 'to': 3.0}
Word element => {'since': 1.0, 'move': 1.0, 'and': 1.0, 'is': 2.0, 'feeding': 1.0, 'messy': 1.0, 'daughter': 2.0, 'favorite': 1.0, 'to': 2.0, 'table': 1.0, 'not': 1.0, 'started': 1.0, 'self': 1.0, 'thing': 2.0, 'have': 1.0, 'the': 2.0, 'a': 3.0, 'we': 1.0, 's': 1.0, 't': 1.0, 'may': 1.0, 'my': 2.0, 'hard': 1.0, 'less': 1.0, 'shiny': 1.0, 'she': 1.0, 'it': 1.0, 'surfaced': 1.0, 'plate': 3.0, 'so': 1.0, 'that': 1.0, 'giving': 1.0, 'throwing': 1.0, 'be': 2.0, 'used': 1.0, 'factor': 1.0, 'food': 1.0, 'but': 1.0, 'doesn': 1.0, 'budge': 1.0, 'this': 1.0, 'full': 1.0, 'of': 1.0, 'stressful': 1.0, 'do': 1.0, 'much': 1.0, 'does': 1.0, 'than': 1.0}
Word element => {'in': 1.0, 'waste': 1.0, 'what': 1.0, 'bowls': 1.0, 'and': 1.0, 'plates': 1.0, 'boon': 2.0, 'two': 2.0, 'don': 2.0, 're': 1.0, 'a': 2.0, 'dry': 1.0, 'work': 1.0, 'or': 1.0, 'i': 1.0, 'moist': 1.0, 'household': 1.0, 'we': 1.0, 'whether': 1.0, 'cups': 1.0, 'suction': 2.0, 't': 2.0, 'the': 1.0, 'big': 1.0, 'disappointment': 1.0, 'period': 1.0, 'with': 1.0, 'toddlers': 1.0, 'twin': 1.0, 'short': 1.0, 'bought': 1.0, 'so': 1.0}
Word element => {'easily': 1.0, 'off': 1.0, 'so': 1.0, 'pulls': 1.0, 'old': 1.0, 'our': 2.0, 'sadly': 1.0, 'concept': 1.0, 'in': 1.0, 'table': 1.0, 'purpose': 1.0, 'to': 1.0, 'month': 1.0, 'wooden': 1.0, 'stick': 1.0, 'worked': 1.0, 'great': 1.0, 'the': 4.0, 'not': 1.0, 'does': 1.0, 'it': 2.0, 'only': 1.0, 'this': 1.0, 'is': 1.0, 'house': 1.0, 'but': 1.0, 'suction': 1.0, 'if': 1.0, 'properly': 1.0, 'defeats': 1.0, 'eight': 1.0}
Word element => {'loose': 1.0, 'wiggles': 1.0, 'after': 1.0, 'hoped': 1.0, 'like': 1.0, 'tray': 1.0, 'i': 1.0, 'would': 1.0, 'at': 1.0, 'suction': 1.0, 't': 1.0, 'the': 2.0, 'on': 1.0, 'daughter': 1.0, 'of': 1.0, 'appears': 1.0, 's': 1.0, 'awhile': 1.0, 'my': 1.0, 'high': 1.0, 'stay': 1.0, 'chair': 1.0, 'but': 1.0, 'put': 1.0, 'doesn': 1.0, 'secure': 1.0, 'it': 3.0, 'first': 1.0}
Word element => {'worth': 1.0, 'reality': 1.0, 'than': 1.0, 'price': 1.0, 'pictures': 1.0, 'the': 2.0, 'certainly': 1.0, 'this': 1.0, 'is': 2.0, 'useless': 1.0, 'not': 1.0, 'shallow': 1.0, 'it': 2.0, 'almost': 1.0, 'better': 1.0, 'so': 1.0, 'looks': 1.0, 'much': 1.0, 'in': 2.0}
Word element => {'be': 1.0, 'will': 1.0, 'stunned': 1.0, 'using': 1.0, 'like': 1.0, 'whether': 1.0, 'injured': 1.0, 'knowing': 1.0, 'parents': 1.0, 'tub': 4.0, 'popped': 1.0, 'bathing': 1.0, 'slanted': 1.0, 'holds': 1.0, 'or': 2.0, 'that': 1.0, 'were': 2.0, 'inches': 1.0, 'the': 5.0, 'we': 3.0, 'mechanism': 1.0, 'i': 1.0, '4': 1.0, 'over': 1.0, 'said': 1.0, 'in': 2.0, 'out': 1.0, 'newborn': 1.0, 'daughter': 1.0, 'new': 1.0, 'position': 2.0, 'last': 1.0, 'she': 4.0, 'locking': 1.0, 'old': 1.0, 'too': 1.0, 'and': 3.0, 'dropped': 1.0, 'as': 1.0, 'our': 2.0, 'to': 1.0, 'its': 1.0, 'this': 1.0, 'scared': 2.0, 'full': 1.0, 'night': 1.0, 'baby': 1.0, 'just': 1.0, 'screaming': 1.0, 'three': 1.0, 'but': 2.0, 'four': 1.0, 'with': 1.0, 'week': 1.0, 'fortunately': 2.0, 'was': 4.0, 'minutes': 1.0, 'not': 5.0, 'about': 1.0, 'badly': 1.0, 'again': 1.0, 'hurt': 2.0, 'for': 1.0, 'thirty': 1.0}
Word element => {'swedish': 1.0, 'great': 1.0, 'the': 1.0, 'in': 1.0, 'easily': 1.0, 'slide': 1.0, 'does': 1.0, 'when': 1.0, 'within': 1.0, 'whatsoever': 1.0, 'needed': 1.0, 'easy': 1.0, 'not': 1.0, 'just': 1.0, 'newborns': 1.0, 'bathtub': 3.0, 'i': 1.0, 'room': 1.0, 'adequate': 1.0, 'very': 1.0, 'personally': 1.0, 'over': 1.0, 'which': 1.0, 'baby': 2.0, 'design': 1.0, 'hang': 1.0, 'my': 1.0, 'is': 2.0, 'for': 1.0, 'love': 1.0, 'it': 2.0, 'to': 1.0, 'reach': 1.0, 'and': 1.0, 'away': 1.0, 'our': 1.0, 'always': 1.0, 'fold': 1.0, 'takes': 1.0, 'no': 1.0}
Word element => {'what': 1.0, 'which': 1.0, 'if': 1.0, 'have': 1.0, 'amazon': 1.0, 'use': 1.0, 'never': 1.0, 'will': 2.0, 'plastic': 1.0, 'head': 1.0, 'jerking': 1.0, 'neck': 1.0, 'collapse': 2.0, 'hard': 1.0, 'part': 1.0, 'thereby': 1.0, 'out': 1.0, 'post': 1.0, 'weight': 2.0, 'her': 2.0, 'under': 1.0, 'water': 1.0, 'daughter': 2.0, 'collapsed': 1.0, 'lb': 1.0, 'my': 3.0, 'given': 1.0, 'tried': 1.0, 'i': 5.0, 'you': 1.0, 'again': 1.0, 'causing': 2.0, 'times': 1.0, 'metal': 1.0, 'of': 5.0, 'sit': 1.0, 'enough': 1.0, 'lean': 1.0, 'children': 1.0, 'this': 3.0, 'it': 3.0, 'allowing': 1.0, 'please': 1.0, 'base': 1.0, '19': 1.0, 'rest': 1.0, 'the': 14.0, 'buy': 2.0, 'an': 1.0, 'dangerous': 1.0, 'star': 1.0, 'back': 2.0, 'work': 1.0, 'big': 1.0, 'presents': 1.0, 'to': 10.0, 'stars': 1.0, 'fit': 1.0, 'product': 4.0, 'review': 1.0, 'angle': 1.0, 'give': 1.0, 'not': 5.0, 'claims': 1.0, 'bathe': 2.0, 'because': 1.0, 'does': 1.0, 'urge': 1.0, 'danger': 1.0, 'both': 1.0, 'however': 2.0, 's': 1.0, 'a': 3.0, 'on': 1.0, 'your': 1.0, 'up': 2.0, 'child': 1.0, 'tub': 4.0, 'hitting': 1.0, 'arm': 3.0, 'led': 1.0, 'purports': 1.0, 'deserves': 1.0, 'zero': 1.0, 'fall': 1.0, 'is': 2.0, 'holds': 1.0, 'and': 5.0, 'groove': 2.0, 'into': 1.0, 'that': 1.0, 'raised': 1.0, 'one': 2.0, 'only': 1.0, 'do': 1.0, 'end': 1.0}
Word element => {'tub': 1.0, 'than': 1.0, 'easier': 1.0, 'much': 1.0, 'and': 1.0, 'good': 1.0, 'product': 1.0, 'fell': 1.0, 'still': 1.0, 'infant': 1.0, 'for': 1.0, 'overall': 1.0, 'incline': 1.0, 'an': 2.0, 'basin': 1.0, 'hold': 1.0, 'per': 1.0, 'while': 1.0, 'place': 1.0, 'in': 1.0, 'as': 2.0, 'very': 1.0, 'bathing': 1.0, 'a': 2.0, 'bar': 1.0, 'to': 4.0, 'store': 1.0, 'easy': 2.0, 'down': 2.0, 'even': 1.0, 'is': 1.0, 'use': 1.0, 'bath': 1.0, 'instructions': 1.0, 'on': 2.0, 'with': 1.0, 'it': 2.0, 'this': 1.0, 'nice': 1.0, 'size': 1.0, 'folds': 1.0, 'however': 1.0, 'bulky': 1.0, 'the': 3.0, 'safety': 1.0, 'bottom': 1.0}
Word element => {'secure': 1.0, 'bit': 1.0, 'her': 1.0, 'lay': 1.0, 'had': 1.0, 'pretty': 1.0, 'more': 1.0, 'is': 2.0, 'bottom': 1.0, 'complaint': 1.0, 'only': 1.0, 'space': 1.0, 'hang': 1.0, 'sit': 2.0, 'enough': 1.0, 'big': 1.0, 'sink': 1.0, 'that': 2.0, 'thing': 1.0, 'whole': 1.0, 'i': 1.0, 'the': 8.0, 'it': 2.0, 'as': 1.0, 'our': 2.0, 'to': 3.0, 'was': 2.0, 'tub': 3.0, 'this': 1.0, 'perfect': 1.0, 'in': 2.0, 'daughter': 2.0, 'us': 1.0, 'for': 1.0, 'after': 1.0, 'wasn': 1.0, 'outgrew': 1.0, 'yet': 1.0, 'or': 1.0, 'washcloth': 1.0, 'used': 1.0, 'make': 1.0, 'slick': 1.0, 'put': 1.0, 'on': 4.0, 'floor': 1.0, 'short': 1.0, 'though': 1.0, 'obviously': 1.0, 'a': 2.0, 'we': 3.0, 't': 1.0, 'could': 1.0, 'messier': 1.0, 'up': 1.0, 'bathroom': 1.0, 'absolutely': 1.0, 'loved': 1.0, 'folded': 1.0, 'how': 1.0, 'door': 1.0, 'and': 1.0, 'are': 1.0}
Word element => {'recommended': 1.0, 'and': 1.0, 'was': 1.0, 'featured': 1.0, 'so': 1.0, 'highly': 1.0, 'baby': 2.0, 'for': 1.0, 'can': 1.0, 'it': 2.0, 'of': 1.0, 'really': 1.0, 'two': 1.0, 'purchased': 1.0, 'product': 1.0, 'products': 1.0, 'i': 2.0, 'not': 1.0, 'comment': 1.0, 'on': 2.0, 'these': 1.0, 'the': 1.0, 'gifts': 1.0, 'but': 1.0, 'saw': 1.0, 'tv': 1.0, 'a': 1.0, 'show': 1.0, 'that': 1.0}
Word element => {'riddance': 1.0, 'losing': 1.0, 'anymore': 1.0, 'buying': 1.0, 'll': 1.0, 'behind': 1.0, 'stand': 1.0, 're': 1.0, 'if': 2.0, 'serviced': 1.0, 'could': 1.0, 'had': 1.0, 'screws': 1.0, 'by': 1.0, 'place': 1.0, 'perfectly': 1.0, 'wasting': 1.0, 'completely': 1.0, 'were': 1.0, 'parts': 4.0, 'was': 2.0, 'okay': 1.0, 'am': 1.0, 'when': 1.0, 'told': 2.0, 'no': 1.0, 'response': 1.0, 'despite': 1.0, 'position': 1.0, 'company': 2.0, 'in': 3.0, 'said': 2.0, 'overwhelming': 1.0, 'offer': 1.0, 'safely': 1.0, 'think': 1.0, 'hook': 2.0, 'standard': 2.0, 'be': 2.0, 'boon': 2.0, 'than': 1.0, '90': 1.0, 'warrantied': 1.0, 'use': 1.0, 'so': 1.0, 'can': 2.0, 'are': 1.0, 'lock': 1.0, 'really': 1.0, 'access': 1.0, 'until': 1.0, 'legs': 2.0, 'and': 4.0, 'now': 1.0, 'landed': 1.0, 'environmentally': 1.0, 'out': 1.0, 'locks': 1.0, 'tub': 3.0, 'held': 1.0, 'repairable': 1.0, 'too': 1.0, 'one': 2.0, 'going': 1.0, 'nope': 1.0, 'called': 1.0, 'bought': 1.0, 'liked': 1.0, 'most': 1.0, 'locking': 1.0, 'customer': 1.0, 'their': 2.0, 'worked': 1.0, 'replacement': 3.0, 't': 3.0, 'a': 5.0, 'my': 1.0, 'website': 1.0, 'well': 2.0, 'i': 12.0, 'broke': 1.0, 'storage': 1.0, 'failed': 1.0, 'with': 3.0, 'this': 2.0, 'open': 1.0, 'hard': 1.0, 'it': 3.0, 'fell': 1.0, 'day': 1.0, 'dime': 1.0, 'buy': 2.0, 'warranty': 3.0, 'claims': 1.0, 'that': 1.0, 'is': 3.0, 'not': 3.0, 'good': 2.0, 'items': 1.0, 'pretty': 1.0, 'to': 6.0, 'disappointed': 1.0, 'our': 1.0, 'your': 2.0, 'according': 1.0, 'any': 1.0, 'you': 2.0, 'night': 1.0, 'things': 1.0, 'have': 3.0, 'for': 2.0, 'don': 2.0, 'thank': 1.0, 'products': 2.0, 'child': 1.0, 'year': 2.0, 'some': 1.0, 'very': 2.0, 'being': 2.0, 'of': 4.0, 'the': 13.0, 'longer': 1.0, 'leg': 1.0, 'we': 4.0, 'fine': 1.0, 'they': 1.0, 'or': 1.0, 'all': 1.0, 'an': 1.0, 'friendly': 1.0, 'on': 1.0}
Word element => {'filling': 1.0, 'stopper': 1.0, 'remove': 1.0, 'keeps': 1.0, 'all': 1.0, 'equal': 1.0, 'right': 1.0, 'am': 1.0, 'leave': 1.0, 'as': 1.0, 'around': 1.0, 'slip': 1.0, 'manage': 1.0, 'does': 1.0, 'user': 1.0, 'or': 2.0, 'stopped': 1.0, 'steady': 1.0, 'didn': 1.0, 'did': 1.0, 'baby': 1.0, 'on': 2.0, 'out': 1.0, 'dropping': 1.0, 'unfortunate': 1.0, 'had': 1.0, 'some': 1.0, 'drip': 1.0, 'water': 3.0, 'takes': 1.0, 'locked': 1.0, 'go': 1.0, 'when': 2.0, 'bathe': 1.0, 've': 2.0, 'price': 1.0, 'tearing': 1.0, 'began': 1.0, 'shelf': 1.0, 'good': 1.0, 'which': 1.0, 'using': 2.0, 'sponge': 1.0, 'every': 1.0, 'me': 1.0, 'my': 3.0, 'bath': 1.0, 'pretty': 1.0, 'to': 12.0, 'our': 1.0, 'was': 4.0, 'piece': 1.0, 'recommend': 1.0, 'store': 1.0, 'there': 3.0, 'hang': 1.0, 'error': 1.0, 'almost': 1.0, 'been': 4.0, 'easily': 1.0, 'that': 4.0, 'faucet': 1.0, 'five': 1.0, 'and': 12.0, 'draining': 1.0, 'apart': 1.0, 'fine': 1.0, 'we': 3.0, 's': 3.0, 'tub': 6.0, 'its': 1.0, 'occurrence': 1.0, 'few': 2.0, 'highly': 1.0, 'this': 4.0, 'bed': 1.0, 'perfect': 1.0, 'him': 2.0, 'it': 11.0, 'great': 2.0, 'old': 1.0, 'i': 14.0, 'he': 2.0, 'bottom': 1.0, 'love': 2.0, 'for': 1.0, 't': 1.0, 'fit': 1.0, 'about': 2.0, 'lot': 1.0, 'one': 1.0, 'too': 1.0, 'lasted': 1.0, 'bulky': 1.0, 'weeks': 2.0, 'attached': 1.0, 'week': 1.0, 'not': 2.0, 'dry': 3.0, 'enjoys': 1.0, 'but': 4.0, 'is': 4.0, 'once': 1.0, 'comes': 1.0, 'of': 3.0, 'the': 17.0, 'plastic': 2.0, 'work': 1.0, 'happen': 1.0, 'hard': 3.0, 'from': 1.0, 'again': 1.0, 'clean': 2.0, 'anyway': 1.0, 'smaller': 1.0, 'however': 1.0, 'bit': 1.0, 'can': 2.0, 'so': 4.0, 'new': 1.0, 'time': 2.0, 'months': 1.0, 'collapsible': 1.0, 'due': 1.0, 'with': 4.0, 'used': 1.0, 'inflatable': 1.0, 'inside': 1.0, 'a': 9.0, 'tiny': 1.0, 'small': 1.0, 'have': 3.0, 'son': 3.0, 'flat': 1.0, 'nervous': 1.0, 'able': 1.0, 'tried': 2.0, 'see': 1.0, 'first': 1.0, 'being': 1.0, 'very': 2.0, 'both': 1.0, 'people': 1.0, 'half': 1.0, 'house': 1.0, 'feeling': 1.0, 'since': 1.0, 'goes': 1.0, 'm': 1.0, 'in': 4.0, 'large': 1.0, 'between': 1.0, 'think': 1.0, 'hook': 1.0, 'options': 1.0, 'purchase': 2.0, 'only': 2.0, 'usually': 1.0}
Word element => {'small': 1.0, 'this': 1.0, 'recommend': 1.0, 'not': 1.0, 'excellent': 1.0, 'construction': 1.0, 'highly': 1.0, 'and': 1.0, 'great': 1.0, 'to': 1.0, 'easy': 1.0, 'use': 2.0, 'when': 1.0, 'space': 1.0, 'saving': 1.0, 'apartments': 1.0, 'for': 1.0, 'in': 1.0, 'design': 1.0}
Word element => {'hates': 1.0, 'twice': 1.0, 'used': 1.0, 'only': 1.0, 'have': 1.0, 'they': 1.0, 'drop': 1.0, 'would': 2.0, 'him': 1.0, 'baby': 3.0, 'afraid': 1.0, 'bathe': 2.0, 'hold': 1.0, 'slippery': 1.0, 'her': 1.0, 'is': 3.0, 'persons': 1.0, 't': 1.0, 'hadn': 1.0, 'but': 1.0, 'and': 5.0, 'an': 1.0, 'friend': 1.0, 'my': 2.0, 'uncomfortable': 1.0, 'one': 2.0, 'liked': 1.0, 'to': 4.0, 'purchased': 1.0, 'got': 1.0, 'wished': 1.0, 'parents': 1.0, 'way': 1.0, 'looks': 1.0, 'it': 6.0, 'take': 1.0, 'infant': 1.0, 'i': 4.0, 'two': 1.0, 'out': 1.0, 'in': 1.0, 'child': 1.0, 'wash': 1.0, 'the': 8.0, 'place': 1.0, 'while': 2.0, 'of': 1.0, 'water': 1.0, 'other': 1.0, 'son': 1.0, 'difficult': 1.0, 'gets': 1.0, 'cold': 1.0, 'are': 1.0, 'that': 1.0}
Word element => {'future': 1.0, 'be': 1.0, 'an': 1.0, 'probably': 1.0, 'that': 1.0, 'imagine': 1.0, 'of': 1.0, 'side': 1.0, 'on': 1.0, 'is': 2.0, 'drain': 1.0, 'flaw': 1.0, 'design': 1.0, 'plastic': 1.0, 'corrected': 1.0, 'if': 1.0, 'longer': 1.0, 'm': 1.0, 'and': 1.0, 'raised': 1.0, 'one': 1.0, 'months': 1.0, 'i': 3.0, 'times': 1.0, 'will': 1.0, 'seven': 1.0, 'it': 4.0, 'first': 1.0, 'nicer': 1.0, 'love': 1.0, 'for': 4.0, 'the': 6.0, 'accident': 1.0, 'get': 1.0, 'sure': 1.0, 'tub': 3.0, 'used': 2.0, 'giant': 1.0, 'even': 1.0, 'every': 2.0, 'use': 1.0, 'kid': 1.0, 'this': 1.0, 'weren': 1.0, 'in': 3.0, '99th': 1.0, 'percentile': 1.0, 't': 1.0, 'we': 3.0, 'could': 1.0, 'a': 2.0, 'height': 1.0, 'so': 1.0, 'have': 1.0, 'small': 1.0, 'something': 2.0, 'several': 1.0, 'my': 1.0, 'bathroom': 1.0, 'was': 1.0, 'to': 1.0, '25': 1.0, 'day': 3.0, 'definitely': 1.0, 'versions': 1.0, 'worth': 1.0, 'standard': 1.0, 'than': 1.0}
Word element => {'does': 1.0, 'lb': 1.0, '10': 1.0, 'have': 1.0, 'you': 1.0, 'just': 1.0, 'not': 1.0, 'others': 1.0, 'by': 1.0, 'if': 1.0, 'recommended': 1.0, 'sponge': 1.0, 'family': 1.0, 'i': 1.0, 'a': 2.0, 'one': 1.0, 'for': 1.0, 'awesome': 1.0, 'bath': 1.0, '4': 1.0, 'on': 1.0, 'newborn': 1.0, 'perfect': 1.0, 'easy': 1.0, 'person': 1.0, 'necessary': 1.0, 'and': 3.0, 'without': 1.0, 'can': 1.0, 'he': 1.0, 'it': 2.0, 'hangs': 1.0, 'back': 1.0, 'the': 3.0, 'up': 1.0, 'fold': 1.0, 'of': 1.0, 'fine': 1.0, 'is': 1.0, 'door': 1.0, 'oh': 1.0}
Word element => {'back': 1.0, 'hear': 1.0, 'parts': 1.0, 'very': 1.0, 'at': 1.0, 'or': 1.0, 'ask': 1.0, 'company': 1.0, 'emailed': 1.0, 'safe': 1.0, 'longer': 1.0, 'about': 1.0, 'no': 1.0, 'is': 1.0, 'obviously': 1.0, 'infant': 1.0, 'disaster': 1.0, 'almost': 1.0, 'update': 1.0, 'replacement': 2.0, 'out': 2.0, 'counter': 1.0, 'function': 1.0, 'not': 1.0, 'does': 1.0, 'will': 1.0, 'swings': 1.0, 'just': 1.0, 'with': 2.0, 'now': 1.0, 'tub': 3.0, 'close': 1.0, 'position': 2.0, 'i': 3.0, 'two': 1.0, 'in': 3.0, 'it': 2.0, 'found': 1.0, 'freely': 1.0, 'this': 3.0, 'only': 1.0, 'cracked': 1.0, 'on': 1.0, 'collapse': 1.0, 'months': 1.0, 'that': 1.0, 'review': 1.0, 'lasted': 1.0, 'when': 2.0, 'you': 1.0, 'them': 4.0, 'baby': 1.0, 'and': 5.0, 'lock': 1.0, 'registry': 1.0, 'had': 1.0, 'standing': 1.0, 'from': 1.0, 'while': 2.0, 'received': 1.0, 'how': 1.0, 'outward': 1.0, 'place': 1.0, 'the': 13.0, 'least': 1.0, 'our': 2.0, 'to': 5.0, 'have': 2.0, 'pull': 1.0, 'locked': 1.0, 'use': 3.0, 'a': 2.0, 'we': 2.0, 'correctly': 1.0, 'after': 1.0, 'leg': 1.0, 'of': 3.0, 'falling': 1.0, 'then': 1.0, 'tabs': 2.0, 'using': 1.0, 'know': 1.0, 'hold': 1.0, 'both': 1.0, 'liked': 1.0, 'broken': 2.0, 'legs': 3.0, 'off': 2.0}
Word element => {'on': 1.0, 'smiles': 1.0, 's': 1.0, 'depending': 1.0, 'or': 1.0, 'reasonable': 1.0, 'that': 2.0, 'and': 2.0, 'quality': 1.0, 'there': 1.0, 'of': 1.0, 'look': 1.0, 'incline': 1.0, 'are': 1.0, 'for': 1.0, 'love': 1.0, 'the': 5.0, 'great': 1.0, 'with': 2.0, 'it': 1.0, 'this': 1.0, 'age': 1.0, 'price': 1.0, 'child': 1.0, 'out': 1.0, 'tub': 1.0, 'appreciate': 1.0, 'i': 2.0, 'really': 1.0, 'settings': 1.0, 'collapsable': 1.0, 'is': 1.0, 'two': 1.0}
Word element => {'i': 1.0, 'positions': 1.0, 'two': 1.0, 'recommend': 1.0, 'of': 1.0, 'it': 1.0, 'either': 1.0, 'this': 1.0, 'is': 1.0, 'the': 1.0, 'small': 1.0, 'convenient': 1.0, 'in': 1.0, 'for': 1.0, 'spaces': 1.0, 'highly': 1.0, 'very': 1.0, 'use': 1.0, 'especially': 1.0, 'easy': 1.0, 'tub': 1.0, 'to': 1.0}
Word element => {'fixed': 1.0, 'needs': 1.0, 'think': 1.0, 'clean': 1.0, 'easy': 1.0, 'bathing': 1.0, 'parents': 1.0, 'there': 1.0, 'hang': 1.0, 'warning': 1.0, 'insert': 1.0, 'elevated': 2.0, 'pop': 1.0, 'recommend': 1.0, 'this': 3.0, 'strongly': 1.0, 'happy': 1.0, 'have': 2.0, 'combination': 1.0, 'young': 2.0, 'because': 1.0, 'easily': 1.0, 'set': 1.0, 'one': 1.0, '5': 1.0, 'that': 8.0, 'placed': 2.0, 'stuff': 1.0, 'end': 2.0, 'much': 1.0, 'around': 2.0, 'at': 4.0, 'metal': 2.0, '6': 1.0, 'week': 1.0, 'poor': 1.0, 'many': 1.0, 'especially': 1.0, 'use': 1.0, 'not': 1.0, 'babies': 1.0, 'door': 1.0, 'collapsible': 1.0, 'underside': 2.0, 'snapped': 2.0, 'months': 2.0, 'really': 2.0, 'appreciate': 1.0, 'material': 1.0, 'scrub': 1.0, 'cleaning': 1.0, 'slides': 1.0, 'when': 3.0, 'i': 8.0, 'design': 5.0, 'unsnapped': 1.0, 'also': 1.0, 'is': 4.0, 'can': 3.0, 'so': 3.0, 'using': 4.0, 'with': 8.0, 'for': 4.0, 'grooves': 1.0, 'flaw': 1.0, 'love': 2.0, 'the': 37.0, 'old': 2.0, 'of': 11.0, 'elevate': 1.0, 'concept': 1.0, 'stowed': 1.0, 'about': 4.0, 'groove': 2.0, 'just': 1.0, 'and': 11.0, 'baby': 6.0, 'ease': 1.0, 'collapsing': 1.0, 'been': 3.0, 'sponge': 3.0, 'takes': 1.0, 'we': 5.0, 'then': 1.0, 'a': 15.0, 'space': 1.0, 'wall': 1.0, 'no': 3.0, 'extended': 1.0, 'textured': 1.0, 'in': 8.0, 'hadn': 1.0, 'appreciated': 1.0, 'or': 2.0, 'surface': 2.0, 'being': 1.0, 'lay': 1.0, 'able': 1.0, 'to': 8.0, 'from': 1.0, 'snaps': 1.0, 'definitely': 2.0, 'bath': 1.0, 'started': 1.0, 'couple': 1.0, 'too': 1.0, 'weight': 1.0, 'issue': 1.0, 'on': 6.0, 'bar': 6.0, 'would': 1.0, 'streamlined': 1.0, 'experienced': 1.0, 'putting': 1.0, 'injured': 1.0, 'other': 1.0, 'all': 1.0, 'plastic': 2.0, 'incline': 2.0, 'reviewers': 1.0, 'commented': 1.0, 'child': 1.0, 'against': 1.0, 'unsafe': 2.0, 'used': 1.0, 'caused': 1.0, 'become': 1.0, 't': 5.0, 'into': 2.0, 'collapses': 1.0, 'place': 1.0, 'top': 1.0, 'was': 3.0, 'dropped': 1.0, 'like': 1.0, 'caregivers': 1.0, 'wasn': 1.0, 'startled': 1.0, 'section': 1.0, 'enjoy': 1.0, 'lot': 1.0, 'user': 1.0, 'our': 1.0, 'error': 1.0, 'slide': 1.0, 'now': 1.0, 'completely': 1.0, 'preventable': 1.0, 'but': 5.0, 'infant': 5.0, 'by': 1.0, 'rests': 1.0, 'holding': 1.0, 'bottom': 1.0, 'kicking': 1.0, 'locked': 1.0, 'won': 1.0, 'support': 2.0, 'unless': 1.0, 'securely': 1.0, 's': 4.0, 'doesn': 1.0, 'its': 1.0, 'fully': 1.0, 'be': 3.0, 'it': 13.0, 'molded': 1.0, 'own': 1.0, 'more': 1.0, 'tub': 13.0, 'wouldn': 1.0, 'newborn': 1.0, 'say': 1.0, 'fell': 1.0, 'stopped': 1.0, 'hook': 1.0, 'double': 1.0, 'back': 1.0, 'check': 1.0, 'she': 1.0, 'make': 1.0, 'slick': 1.0, 'sure': 1.0, 'probably': 1.0, 'before': 1.0, 'edited': 1.0, 'should': 1.0, 'add': 1.0, 'an': 1.0, 'info': 1.0, 've': 1.0, 'position': 2.0, 'several': 1.0, '4': 1.0, 'infants': 1.0, 'out': 1.0, 'entire': 1.0, 'flat': 2.0, 'fill': 1.0, 'white': 1.0, 'little': 1.0, 'splashing': 1.0, 'weeks': 1.0, 'seems': 1.0, 'movement': 1.0}
Word element => {'little': 1.0, 'waste': 1.0, 'support': 1.0, 'sponge': 1.0, 'a': 1.0, 'spend': 1.0, 'have': 1.0, 'you': 1.0, 'tub': 1.0, 'buy': 1.0, 'i': 2.0, 'money': 1.0, 'another': 1.0, 'baby': 2.0, 'bigger': 1.0, 'to': 4.0, 'its': 1.0, 'u': 1.0, 'for': 1.0, 'regret': 1.0, 'think': 1.0, 'good': 1.0, '10dollar': 1.0, 'the': 1.0, 'simple': 1.0, '10': 1.0, 'already': 1.0, 'purchased': 1.0, 'purchase': 1.0, 'bath': 1.0, 'is': 1.0, 'if': 1.0, 'better': 1.0, 'than': 1.0, 'it': 2.0, 'this': 1.0}
Word element => {'prior': 1.0, 'of': 1.0, 'using': 1.0, 'often': 1.0, 'have': 1.0, 'cups': 1.0, 'daughter': 1.0, 'and': 1.0, 'will': 1.0, 'cup': 2.0, 'my': 1.0, 'only': 2.0, 'this': 1.0, 'our': 1.0, 'that': 1.0, 'barely': 1.0, 'keeper': 1.0, 'is': 1.0, 'leaks': 1.0, 'a': 1.0, 'definitely': 1.0, 'i': 1.0, 'wash': 1.0, 'sippy': 2.0, 'two': 1.0, 'instead': 1.0, 'use': 1.0, 'boon': 1.0, 'more': 1.0, 'the': 3.0, 'ones': 1.0, 'we': 1.0}
Word element => {'one': 1.0, 'any': 1.0, 'but': 1.0, 'tippee': 1.0, 'tommee': 1.0, 'other': 1.0, 'design': 1.0, 'plastic': 1.0, 'subpar': 2.0, 'of': 1.0, 'cup': 1.0, 'better': 1.0, 'equivalent': 1.0, 'made': 1.0, 'out': 1.0, 'basically': 1.0, 'preferred': 1.0, 'it': 1.0, 'with': 1.0, 'this': 1.0, 'really': 1.0, 'is': 3.0, 'leaks': 1.0, 'a': 1.0, 'and': 1.0, 'to': 1.0, 'much': 1.0, 'bottle': 1.0, 'i': 1.0, 'the': 1.0, 'nipple': 1.0, 'anyway': 1.0}
Word element => {'also': 1.0, 'not': 1.0, 'disgusting': 1.0, 'leaks': 1.0, 'is': 1.0, 'nevertheless': 1.0, 'process': 1.0, 'manufacturing': 1.0, 'occurred': 1.0, 'have': 1.0, 'from': 1.0, 'must': 1.0, 'that': 1.0, 'using': 1.0, 'im': 1.0, 'received': 1.0, 'lid': 1.0, 'into': 1.0, 'this': 2.0, 'it': 1.0, 'assuming': 1.0, 'hair': 1.0, 'i': 3.0, 'when': 1.0, 'found': 1.0, 'will': 1.0, 'but': 2.0, 'inside': 1.0, 'plastic': 1.0, 'cup': 2.0, 'sippy': 1.0, 'product': 1.0, 'be': 1.0, 'bought': 1.0, 'the': 6.0, 'small': 1.0, 'and': 2.0, 'a': 1.0, 'strand': 1.0, 'inspected': 1.0, 'had': 1.0, 'of': 1.0, '34': 2.0, 'during': 1.0, 'melted': 1.0}
Word element => {'anyway': 1.0, 'him': 1.0, 'we': 1.0, 'us': 1.0, 'inconveniences': 1.0, 'water': 1.0, 'minor': 1.0, 'that': 1.0, 'on': 1.0, 'stay': 1.0, 'let': 1.0, 'sippy': 1.0, 'top': 1.0, 'drink': 2.0, 'old': 1.0, 'from': 2.0, 'year': 1.0, 'son': 1.0, 'for': 1.0, 'one': 1.0, 'does': 1.0, 'and': 1.0, 'doesn': 1.0, 'will': 1.0, 't': 1.0, 'the': 1.0, 'my': 1.0, 'cup': 1.0, 'leak': 1.0, 'loooves': 1.0, 'this': 1.0, 'only': 2.0, 'he': 1.0, 'it': 3.0, 'however': 1.0, 'since': 1.0, 'well': 1.0, 'a': 1.0, 'bit': 1.0}
Word element => {'expect': 1.0, 'again': 1.0, 'dropped': 1.0, 'was': 1.0, 'to': 2.0, 'on': 2.0, 'won': 1.0, 'is': 2.0, 'plastic': 1.0, 'can': 1.0, 'floor': 1.0, 'cheap': 1.0, 'i': 3.0, 'initial': 1.0, 'buy': 1.0, 'the': 6.0, 'figured': 1.0, 'them': 1.0, 'quality': 2.0, 'back': 1.0, 'and': 2.0, 'getting': 1.0, 'break': 1.0, 'cup': 2.0, 'cause': 1.0, 'from': 2.0, 'hard': 1.0, 'looks': 1.0, 'it': 4.0, 'this': 2.0, 'way': 1.0, 'if': 2.0, 'price': 1.0, 'will': 1.0, 'also': 1.0, 'wash': 1.0, 'after': 1.0, 'so': 1.0, 'my': 1.0, 'lid': 1.0, 'a': 2.0, 't': 2.0, 's': 1.0, 'could': 1.0, 'go': 1.0, 'daughter': 1.0, 'even': 1.0, 'use': 1.0, 'never': 1.0, 'brand': 1.0}
Word element => {'others': 1.0, 'from': 1.0, 'opinions': 1.0, 'thoughts': 1.0, 'regardless': 1.0, 'blog': 1.0, 'purposes': 1.0, 'for': 1.0, 'sample': 1.0, 'favorite': 1.0, 'close': 1.0, 'and': 4.0, 'it': 2.0, 'so': 1.0, 'attached': 1.0, 'pop': 1.0, 'when': 1.0, 'stays': 1.0, 'of': 1.0, 'spout': 1.0, 'cover': 1.0, 'mart': 1.0, 'random': 1.0, 'the': 7.0, 'i': 1.0, 'mess': 1.0, 'swig': 2.0, 'are': 2.0, 'or': 1.0, 'cup': 1.0, 'may': 1.0, 'lid': 1.0, 'my': 2.0, 'review': 1.0, 'has': 1.0, 'mom': 1.0, 'shape': 1.0, 'places': 1.0, 'hold': 1.0, 'completely': 1.0, 'is': 1.0, 'differ': 1.0, 'left': 1.0, 'easy': 2.0, 'own': 1.0, 'an': 1.0, 'was': 1.0, 'spill': 1.0, 'all': 1.0, 'to': 4.0, 'open': 1.0, 'test': 1.0, 'there': 1.0, 'no': 1.0, 'parts': 1.0, 'being': 1.0, 'provided': 1.0, 'lost': 1.0, 'during': 1.0, 'pivoting': 1.0, 'playtime': 1.0, 'getting': 1.0, 'did': 1.0, 'not': 1.0, 'making': 1.0, 'on': 1.0, 'put': 1.0, 'make': 1.0, 'a': 3.0}
Word element => {'else': 1.0, 'holding': 1.0, 'cup': 1.0, 's': 1.0, 'way': 1.0, 'baby': 1.0, 'attached': 1.0, 'in': 1.0, 'constantly': 1.0, 'get': 1.0, 'and': 1.0, 'would': 1.0, 'was': 2.0, 'not': 1.0, 'lid': 2.0, 'he': 1.0, 'this': 1.0, 'the': 3.0, 'more': 1.0, 'bother': 1.0, 'comfortable': 1.0, 'even': 1.0, 'than': 1.0, 'anything': 1.0}
Word element => {'spill': 1.0, 'sit': 1.0, 'not': 2.0, 'and': 1.0, 'same': 1.0, 'will': 1.0, 'off': 1.0, 'way': 1.0, 'it': 3.0, 'proof': 1.0, 'holds': 1.0, 'is': 1.0, 'son': 1.0, 'popped': 1.0, 'a': 1.0, 'lot': 1.0, 'cap': 1.0, 'of': 1.0, 'downside': 1.0, 'liquid': 1.0, 'the': 3.0, 'my': 1.0}
Word element => {'large': 1.0, 'broad': 1.0, 'and': 1.0, 'cushion': 1.0, 'extra': 1.0, 'its': 1.0, 'now': 1.0, 'very': 1.0, 'not': 1.0, 'it': 3.0, 'this': 1.0, 'folding': 1.0, 'space': 1.0, 'keep': 1.0, 'wheels': 1.0, 'been': 1.0, 'we': 1.0, 'beneath': 1.0, 'easy': 1.0, 'stroller': 1.0, 'video': 1.0, 'using': 1.0, 'for': 2.0, 'handle': 1.0, 'comfortable': 1.0, 'have': 1.0, 'squeaking': 1.0, 'displayed': 1.0, 'is': 3.0, 'but': 2.0, '2': 1.0, 'the': 4.0, 'storage': 1.0, 'fold': 2.0, 'of': 1.0, 'months': 1.0, 'about': 1.0, 'in': 2.0, 'my': 1.0, 'hard': 1.0, 'wife': 1.0, 'you': 1.0, 'two': 1.0, 'her': 1.0, 'friends': 1.0, 'tried': 1.0, 'got': 1.0, 'due': 1.0, 'press': 1.0, 'seat': 1.0, 'to': 4.0, 'as': 2.0, 'vain': 1.0, 'our': 1.0, 'quite': 2.0, 'kid': 1.0}
Word element => {'ones': 1.0, 'more': 1.0, 'its': 1.0, 'size': 2.0, 'i': 1.0, 'sun': 2.0, 'fabric': 2.0, 'of': 2.0, 'fold': 1.0, 'says': 1.0, 'solid': 2.0, 'top': 1.0, 'back': 2.0, 'stroller': 3.0, 'doesn': 1.0, 'option': 1.0, 'on': 3.0, 'piece': 1.0, 'netting': 1.0, 'instead': 1.0, 'through': 1.0, 'then': 1.0, 'mid': 1.0, 'it': 2.0, 'older': 1.0, 'the': 8.0, 'wind': 2.0, 'zip': 1.0, 'are': 1.0, 'wish': 1.0, 'allows': 1.0, 'this': 1.0, 'full': 1.0, 'very': 1.0, 'down': 1.0, 'even': 1.0, 'flat': 1.0, 'had': 1.0, 'comparable': 1.0, 'to': 3.0, 'close': 1.0, 't': 1.0, 'a': 1.0, 'and': 2.0, 'block': 1.0, 'like': 1.0, 'they': 1.0, 'did': 1.0, 'smaller': 1.0, 'my': 1.0, 'graco': 1.0, 'trays': 1.0, 'though': 1.0}
Word element => {'over': 1.0, 'issues': 1.0, 'not': 1.0, 'with': 1.0, 'one': 1.0, 'steers': 1.0, 'does': 1.0, 'used': 1.0, 'have': 2.0, 'in': 1.0, 'which': 1.0, 'fits': 1.0, 'easy': 2.0, 'than': 1.0, 'strollers': 1.0, 'a': 1.0, 'holding': 1.0, 'my': 1.0, 'bumps': 1.0, 'small': 1.0, 'getting': 1.0, 'and': 2.0, 'toddler': 1.0, 'fold': 1.0, 'to': 1.0, 'much': 1.0, 'hand': 1.0, 'better': 1.0, 'while': 1.0, 'trunk': 1.0, 'is': 1.0, 'rather': 1.0, 'cars': 1.0, 'other': 1.0, 'i': 1.0}
Word element => {'better': 1.0, 'get': 1.0, 'extra': 1.0, 'its': 1.0, 'wt': 1.0, 'light': 2.0, 'says': 1.0, 'holding': 1.0, 'spend': 1.0, 'feel': 2.0, 'have': 1.0, 'tip': 1.0, 'used': 1.0, 'action': 1.0, 'they': 1.0, 'has': 1.0, 'that': 2.0, 'plastic': 1.0, 'of': 1.0, 'ordered': 1.0, 'it': 2.0, 'with': 1.0, 'fast': 1.0, 'am': 1.0, 'product': 1.0, 'for': 2.0, 'using': 1.0, 'the': 7.0, 'a': 2.0, 't': 2.0, 'my': 1.0, 'tray': 2.0, 'second': 1.0, 'is': 3.0, 'many': 1.0, 'baby': 2.0, 'quality': 2.0, 'money': 1.0, 'but': 2.0, 'doesn': 2.0, 'and': 4.0, 'disappointed': 1.0, 'also': 1.0, 'fold': 1.0, 'still': 1.0, 'son': 1.0, 'very': 1.0, 'i': 1.0, 'feature': 1.0, 'good': 2.0, 'some': 1.0, 'already': 1.0, 'so': 1.0, 'scratches': 1.0, 'on': 1.0, 'car': 1.0, 'seat': 1.0, 'handle': 1.0, 'attachment': 1.0, 'really': 1.0, 'material': 1.0, 'rough': 1.0, 'give': 1.0}
Word element => {'can': 1.0, 'but': 1.0, 'sometimes': 1.0, 'challenge': 1.0, 'making': 1.0, 'life': 1.0, 'wide': 1.0, 'it': 2.0, 'narrow': 1.0, 'cons': 1.0, 'me': 1.0, 'point': 1.0, 'there': 1.0, 'under': 1.0, 'something': 1.0, 'coat': 1.0, 'throw': 1.0, 'to': 3.0, 'cart': 1.0, 'country': 1.0, 'ergo': 1.0, 'has': 1.0, 'lots': 1.0, 'trains': 1.0, 'pros': 1.0, 'really': 1.0, 'take': 1.0, 'shopping': 2.0, 'japan': 1.0, 'everywhere': 1.0, 'or': 1.0, 'cup': 1.0, 'ton': 1.0, 'keys': 1.0, 'have': 1.0, 'able': 1.0, 'stroller': 1.0, 'this': 2.0, 'holders': 1.0, 'live': 1.0, 'if': 1.0, 'being': 1.0, 'enjoyed': 1.0, 'in': 2.0, 's': 2.0, 'go': 1.0, 'city': 1.0, 'a': 5.0, 'and': 4.0, 'adjust': 1.0, 'walk': 1.0, 'selling': 1.0, 'huge': 2.0, 'bags': 2.0, 'is': 3.0, 'around': 1.0, 'basket': 2.0, 'been': 1.0, 'bit': 1.0, 'bottle': 1.0, 'phone': 1.0, 'wonderful': 1.0, 'the': 4.0, 'great': 1.0, 'are': 1.0, 'where': 1.0, 'for': 2.0, 'love': 1.0, 'gloves': 1.0, 'water': 1.0, 'i': 5.0, 'etc': 2.0, 'my': 4.0, 'underneath': 1.0}
Word element => {'looking': 1.0, 'very': 1.0, 'and': 1.0, 's': 2.0, 'it': 3.0, 'price': 1.0, 'light': 1.0, 'reasonable': 1.0, 'what': 2.0, 'easy': 1.0, 'stroller': 1.0, 'doesn': 1.0, 'was': 1.0, 'to': 1.0, 'exactly': 1.0, 'a': 2.0, 'maneuver': 1.0, 'for': 2.0, 'yet': 1.0, 'great': 2.0, 'such': 1.0, 't': 1.0, 'purchase': 1.0, 'feel': 1.0, 'cheap': 1.0, 'i': 1.0}
Word element => {'really': 1.0, 'it': 2.0, 'close': 1.0, 'sun': 1.0, 'like': 1.0, 'and': 2.0, 'baby': 1.0, 'its': 1.0, 'to': 2.0, 'girl': 1.0, 'color': 1.0, 'assamble': 1.0, 'the': 2.0, 'is': 1.0, 'easy': 2.0, 'perfect': 2.0, 'cover': 1.0, 'boy': 1.0, 'for': 1.0, 'i': 1.0, 'or': 1.0}
Word element => {'outings': 1.0, 'daughter': 1.0, 'law': 1.0, 'both': 1.0, 'and': 2.0, 'the': 1.0, 'son': 1.0, 'my': 2.0, 'grandchild': 1.0, 'advanced': 1.0, 'on': 1.0, 'months': 1.0, 'in': 2.0, 'cannot': 1.0, 'look': 1.0, 'to': 1.0, 'for': 1.0, 'love': 1.0, 'it': 2.0, 'wait': 1.0, 'of': 1.0, 'purchased': 1.0, 'use': 1.0, 'family': 1.0}
Word element => {'push': 1.0, 'easy': 1.0, 'to': 1.0, 'smoothly': 1.0, 'glides': 1.0, 'bottom': 1.0, 'and': 1.0, 'very': 1.0, 'i': 1.0, 'beautiful': 1.0, 'print': 1.0, 'great': 1.0, 'it': 1.0, 'love': 1.0, 'the': 2.0, 'large': 1.0, 'storage': 1.0, 'area': 1.0, 'is': 2.0, 'on': 1.0}
Word element => {'stroller': 1.0, 'best': 1.0, 'so': 1.0, 'noticed': 1.0, 'the': 4.0, 't': 1.0, 'cloth': 1.0, 'i': 2.0, 'and': 1.0, 'love': 1.0, 'one': 2.0, 'tight': 1.0, 'is': 2.0, 'broke': 1.0, 'second': 1.0, 'used': 1.0, 'even': 1.0, 'graco': 1.0, 'when': 2.0, 'this': 1.0, 'first': 1.0, 'nothing': 1.0, 'to': 2.0, 'wipe': 1.0, 'doesn': 1.0, 'brag': 1.0, 'it': 1.0, 'she': 1.0, 'get': 1.0, 'easy': 1.0, 'material': 2.0, 'really': 1.0, 'every': 1.0, 'about': 1.0, 'crumb': 1.0, 'manage': 1.0, 'came': 1.0, 'dirties': 1.0, 'clean': 1.0, 'out': 1.0, 'well': 1.0, 'food': 1.0, 'but': 1.0, 'can': 1.0, 'also': 1.0, 'of': 1.0, 'straps': 1.0, 'not': 1.0, 'their': 1.0}
Word element => {'worth': 1.0, 'fashion': 1.0, 'paying': 1.0, 'basically': 1.0, 'lacks': 1.0, 'until': 1.0, 'off': 2.0, 'close': 2.0, 'stand': 1.0, 'purchasing': 1.0, 'when': 2.0, 'seperately': 1.0, 'but': 2.0, 'with': 5.0, 'effort': 1.0, 'or': 2.0, 'done': 1.0, 'whistles': 1.0, 'nature': 1.0, 'models': 1.0, 'hand': 2.0, 'need': 1.0, 'also': 4.0, 'attracts': 1.0, 'on': 5.0, 'amount': 1.0, 'same': 2.0, 'gave': 1.0, 'is': 5.0, 'at': 3.0, 'look': 1.0, 'exert': 1.0, 'fabric': 1.0, 'for': 6.0, 'such': 1.0, 'thought': 1.0, 'lint': 1.0, 'bout': 1.0, 'upright': 2.0, 'now': 1.0, 'would': 2.0, 'loved': 1.0, 'enough': 1.0, 'rip': 1.0, 'should': 2.0, 'looked': 1.0, 'lot': 3.0, 'one': 5.0, 'too': 1.0, 'pattern': 1.0, 'safe': 1.0, 'was': 6.0, 'that': 4.0, 'because': 4.0, 'easily': 1.0, 'car': 4.0, 'doesn': 1.0, 's': 1.0, 't': 5.0, 'fold': 1.0, 'cost': 1.0, 'a': 8.0, 'object': 1.0, 'isn': 1.0, 'opening': 1.0, 'child': 3.0, 'not': 3.0, 'two': 3.0, 'prior': 1.0, 'stolelr': 1.0, '34': 2.0, 'years': 1.0, 'no': 1.0, 'mechanism': 1.0, 'dust': 1.0, 'move': 1.0, 'months': 2.0, 'get': 1.0, 'combo': 1.0, 'other': 1.0, 'rittenhouse': 3.0, 'allow': 1.0, 'its': 1.0, 'positions': 2.0, 'do': 1.0, 'supposed': 1.0, 'liked': 1.0, 'wish': 1.0, 'various': 1.0, 'stroller': 8.0, 'all': 1.0, 'way': 2.0, 'are': 1.0, 'my': 5.0, 'difficulty': 1.0, 'apart': 1.0, 'like': 3.0, 'birth': 1.0, 'hands': 1.0, 'least': 1.0, 'money': 1.0, 'pleasing': 1.0, 'fairly': 1.0, 'set': 1.0, 'very': 3.0, 'to': 17.0, 'chicco': 1.0, 'against': 1.0, 'seat': 4.0, 'teat': 1.0, 'sit': 1.0, 'as': 2.0, 'easy': 3.0, 'own': 1.0, 'be': 2.0, 'it': 15.0, 'sold': 1.0, 'use': 2.0, 'purchased': 1.0, 'larger': 1.0, 'material': 1.0, 'reclining': 1.0, 'really': 1.0, 'them': 1.0, 'baby': 1.0, 'searched': 2.0, 'girl': 1.0, 'so': 4.0, 'this': 5.0, 'they': 1.0, 'sell': 1.0, 'well': 1.0, 'lean': 1.0, 'your': 1.0, 'feel': 1.0, 'the': 25.0, 'online': 1.0, 'open': 4.0, 'think': 2.0, 'another': 2.0, '100': 1.0, 'pull': 1.0, 'by': 1.0, 'extra': 1.0, '35': 1.0, 'latch': 1.0, 'size': 1.0, 'which': 3.0, 'in': 4.0, 'based': 1.0, 'due': 1.0, 'stoller': 1.0, 'don': 2.0, 'still': 1.0, 'up': 3.0, 'takes': 1.0, 'go': 1.0, 'flat': 2.0, 'there': 2.0, 'more': 1.0, 'babies': 1.0, 'position': 1.0, 'between': 1.0, 'large': 1.0, 'those': 1.0, 'from': 1.0, 'who': 1.0, '12': 1.0, 'space': 1.0, 'trunk': 2.0, 'graco': 2.0, 'style': 2.0, 'strollers': 1.0, 'will': 1.0, 'wind': 1.0, 'of': 9.0, 'old': 1.0, 'you': 4.0, 'cumbersome': 1.0, 'closing': 1.0, 'contrast': 1.0, 'and': 18.0, 'just': 1.0, 'big': 1.0, 'costs': 1.0, 'i': 14.0, 'ripped': 1.0, 'about': 2.0, 'body': 1.0, '200': 1.0, 'fallen': 1.0, 'side': 1.0, 'alone': 1.0, 'then': 1.0, 'only': 2.0, 'hasn': 1.0, 'out': 2.0, 'completely': 3.0, 'beforehand': 1.0, 'three': 1.0, 'stars': 1.0, 'wheels': 1.0, 'works': 1.0, 'oddly': 1.0, 'have': 4.0, 'clicks': 1.0, 'bells': 1.0}
Word element => {'does': 1.0, 'too': 1.0, 'daughter': 1.0, 'my': 1.0, 'place': 1.0, 'into': 1.0, 'jimmy': 1.0, 'to': 1.0, 'without': 1.0, 'having': 1.0, 'in': 1.0, 'time': 1.0, 'of': 1.0, 'most': 1.0, 'though': 1.0, 'design': 1.0, 't': 1.0, 'the': 3.0, 'lot': 2.0, 'a': 2.0, 'but': 1.0, 'doesn': 1.0, 'stroller': 2.0, 'than': 1.0, 'thought': 1.0, 'chic': 1.0, 'snap': 1.0, 'like': 2.0, 'me': 1.0, 'and': 3.0, 'really': 1.0, 'is': 2.0, 'tray': 1.0, 'i': 3.0, 'lighter': 1.0, 'this': 2.0, 'it': 4.0, 's': 1.0, 'overall': 1.0, 'actually': 1.0, 'would': 1.0, 'not': 1.0, 'be': 1.0, 'very': 2.0, 'big': 1.0}
Word element => {'best': 1.0, 'poorly': 1.0, 'my': 1.0, 'so': 1.0, 'cortina': 1.0, 'tryed': 1.0, 'about': 1.0, 'chicco': 1.0, 'no': 1.0, 'after': 1.0, 'bank': 1.0, 'out': 1.0, 'that': 2.0, 'opinion': 1.0, 'trying': 1.0, 'extra': 2.0, 'dont': 1.0, 'this': 4.0, 'those': 2.0, 'not': 1.0, 'one': 1.0, 'pattern': 1.0, 'overpriced': 1.0, 'have': 2.0, 'easy': 2.0, 'to': 9.0, 'light': 1.0, 'store': 2.0, 'beautiful': 1.0, 'stairs': 1.0, 'a': 3.0, 's': 1.0, 'up': 1.0, 'love': 2.0, 'stroller': 4.0, 'just': 1.0, 'urbanlight': 1.0, 'when': 1.0, 'lbs': 1.0, 'graco': 2.0, 'bulky': 1.0, 'great': 4.0, 'nice': 1.0, 'big': 2.0, 'take': 1.0, 'people': 1.0, 'weight': 1.0, 'leans': 1.0, 'shade': 1.0, 'it': 1.0, '19': 1.0, 'some': 1.0, 'braking': 1.0, 'collapse': 1.0, 'or': 3.0, 'need': 2.0, 'short': 1.0, 'space': 1.0, 'super': 1.0, 'cozy': 1.0, 'carry': 1.0, 'i': 4.0, 'well': 1.0, 'trunk': 1.0, 'seat': 1.0, 'in': 2.0, 'the': 11.0, 'of': 2.0, 'car': 1.0, 'infant': 1.0, 'for': 5.0, 'fabric': 1.0, 'made': 2.0, 'good': 1.0, 'wants': 1.0, 'cushioning': 1.0, 'with': 2.0, 'folds': 1.0, 'baby': 3.0, 'strollers': 4.0, 'on': 1.0, 'storage': 1.0, 'bin': 1.0, 'back': 1.0, 'is': 2.0, 'at': 1.0, 'handle': 1.0, 'wheels': 1.0, 'bus': 1.0, 'are': 2.0, 'complaints': 1.0, 'you': 1.0, 'things': 1.0, 'push': 1.0, 'very': 1.0, 'recommend': 1.0, 'rubbery': 1.0, 'durable': 1.0, 'compared': 2.0, 'all': 1.0, 'fits': 1.0, 'other': 3.0, 'adjustable': 1.0, 'even': 1.0, 'though': 1.0, 'sleeping': 2.0, 'sturdy': 2.0, 'they': 1.0, 'plastic': 1.0, 'foam': 1.0, 'taller': 1.0, 'enough': 1.0, 'flat': 2.0, 'canopy': 1.0, 'height': 1.0, 'and': 8.0, 'anyone': 1.0}
Word element => {'again': 1.0, 'hang': 1.0, 'mind': 1.0, 'smart': 1.0, 'fold': 1.0, 'need': 1.0, 'larger': 1.0, 'could': 1.0, 'dirty': 1.0, 'man': 1.0, 'once': 1.0, 'perfectly': 1.0, 'changed': 1.0, 'buy': 1.0, 'having': 1.0, 'particular': 1.0, 'husband': 1.0, 'fabric': 1.0, 'look': 1.0, 'purse': 1.0, 'antique': 1.0, 'liked': 1.0, 'black': 1.0, 'bummer': 1.0, 'our': 2.0, 'tab': 1.0, 'by': 1.0, 'middle': 2.0, 'mine': 1.0, 'child': 1.0, 'or': 1.0, 'stayed': 1.0, 'since': 1.0, 'your': 2.0, 'many': 1.0, 'large': 4.0, 'wipes': 3.0, 'girly': 1.0, 'reclines': 1.0, 'for': 8.0, 'good': 1.0, 'take': 1.0, 'lunch': 2.0, 'side': 2.0, 'tangled': 1.0, 'the': 30.0, 'ran': 1.0, 'put': 2.0, 'strap': 1.0, 'no': 2.0, 'adjustment': 1.0, 'back': 6.0, 'pay': 1.0, 'months': 1.0, 'an': 1.0, 'basket': 1.0, 'that': 4.0, 'easily': 2.0, 'because': 5.0, 'chemicals': 1.0, 'things': 2.0, 'get': 2.0, 'able': 3.0, 'they': 2.0, 'double': 1.0, 'although': 1.0, 'there': 1.0, 'bummed': 1.0, 'those': 1.0, 'not': 3.0, 'wheals': 1.0, 'would': 1.0, 'lays': 1.0, 'bar': 3.0, 'had': 2.0, 'so': 5.0, 'but': 3.0, 'has': 2.0, 'comfortably': 1.0, 'pool': 1.0, 'when': 3.0, 'in': 9.0, 'push': 2.0, 'seat': 2.0, 'features': 1.0, '11': 1.0, 'my': 11.0, 'may': 1.0, 'at': 1.0, 'handle': 2.0, 'snack': 1.0, 'much': 2.0, 'then': 1.0, 'only': 1.0, 'price': 1.0, 'try': 1.0, 'with': 7.0, 'you': 2.0, 'towels': 1.0, 'research': 1.0, 'swim': 1.0, 'swimming': 1.0, 'little': 3.0, 'i': 31.0, 'me': 1.0, 'drink': 1.0, 'this': 5.0, 'know': 1.0, 'bit': 1.0, 'point': 1.0, 'heals': 1.0, '6': 1.0, 'got': 2.0, 'one': 4.0, '5': 1.0, 'hand': 2.0, 'straps': 2.0, 'wants': 1.0, 'just': 1.0, 'prints': 1.0, 'and': 16.0, 'rec': 1.0, 'couldn': 1.0, 'easy': 1.0, 'fit': 1.0, 'two': 2.0, 'ago': 1.0, 't': 6.0, 'love': 3.0, 'looked': 1.0, 'he': 1.0, 'will': 1.0, 'year': 1.0, 'product': 1.0, 'stroller': 4.0, 'center': 1.0, 'who': 1.0, 'from': 3.0, '20': 1.0, 'way': 1.0, 'all': 3.0, 'fits': 2.0, 'to': 12.0, 'job': 2.0, 'grow': 1.0, 'be': 4.0, 'it': 28.0, 'shade': 4.0, 'month': 1.0, 'under': 2.0, 'costco': 1.0, 'lower': 1.0, 'angles': 1.0, 'tray': 5.0, 'did': 4.0, 'was': 5.0, 'clothes': 1.0, 'store': 1.0, 'small': 3.0, 'best': 1.0, 'open': 1.0, 'think': 3.0, 'out': 4.0, 'shoes': 1.0, 'sons': 1.0, 'pointless': 1.0, 'trays': 1.0, 'holders': 1.0, 'tricky': 1.0, 'found': 2.0, 'have': 5.0, 'drinks': 1.0, 'about': 1.0, 'feed': 1.0, 'of': 3.0, 'old': 2.0, 'even': 1.0, 'baby': 6.0, 'front': 2.0, 'what': 1.0, 'folds': 1.0, 'lot': 1.0, 'his': 2.0, 'on': 6.0, 'sits': 1.0, 'plus': 2.0, 'ground': 1.0, 'didn': 1.0, 'extra': 1.0, 'wanted': 1.0, 'sling': 1.0, 'sit': 2.0, 'as': 2.0, 'a': 15.0, 'bag': 1.0, 'swings': 1.0, 'over': 3.0, 'tip': 1.0, 'sun': 3.0, 'remove': 1.0, 'shoulder': 1.0, 'still': 4.0, 'don': 3.0, 'too': 1.0, '3': 2.0, 'either': 1.0, 'do': 4.0, 'system': 1.0, 'suv': 1.0, 'color': 3.0, 'really': 3.0, 'talking': 1.0, 'm': 2.0, 'doesn': 1.0, 's': 3.0, 'area': 1.0, 'sides': 1.0, 'is': 4.0, 'can': 12.0, 'compact': 1.0, 'compactly': 1.0, 'size': 1.0, 'graco': 1.0, 'boys': 1.0, 'safe': 1.0, 'metal': 1.0, 'screen': 1.0, 'phone': 1.0, 'clean': 2.0, 'stupid': 1.0, 'wiped': 1.0, 'unfold': 1.0, 've': 1.0, 'velco': 1.0, 'lever': 1.0, 'release': 2.0, 'times': 1.0, 'brakes': 1.0, 'both': 1.0, 'barefoot': 1.0, 'adjustable': 1.0, 'toys': 1.0, 'oldest': 1.0, 'keeps': 1.0, 'fussing': 1.0, 'see': 1.0, 'adults': 1.0, 'change': 1.0, 'takes': 1.0, 'diaper': 2.0, 'up': 2.0, 'tad': 1.0, 'lame': 1.0, 'water': 1.0, 'umbrella': 1.0, 'folded': 2.0, 'lay': 1.0, 'very': 3.0, 'space': 1.0, 'released': 1.0, 'some': 1.0}
Word element => {'it': 1.0, 'loved': 1.0, 'standing': 1.0, 'enough': 2.0, 'was': 1.0, 'to': 3.0, 'really': 1.0, 'trains': 1.0, 'easy': 1.0, 'add': 1.0, 'stroller': 2.0, 'kids': 1.0, 'this': 1.0, 'with': 1.0, 'have': 1.0, '3': 1.0, 'up': 2.0, 'disney': 1.0, 'fold': 1.0, 'and': 7.0, 'couldn': 1.0, 'days': 1.0, 'ease': 1.0, 'held': 1.0, 'well': 1.0, 'five': 1.0, '5': 1.0, 'for': 1.0, 'went': 1.0, 'my': 1.0, 'push': 1.0, 'light': 1.0, 'sitting': 1.0, 'world': 1.0, 'transport': 1.0, 'buses': 1.0, 'we': 1.0, 't': 2.0, 'the': 2.0, 'weight': 1.0, 'that': 1.0, 'were': 1.0, 'wife': 1.0, 'i': 1.0, 'didn': 1.0, 'even': 1.0, 'onto': 1.0, 'both': 1.0, 'onboard': 1.0, 'boys': 2.0, 'when': 1.0}
Word element => {'hassle': 1.0, 'yourself': 1.0, 'save': 1.0, 'start': 1.0, 'future': 1.0, 'more': 1.0, 'you': 1.0, 'if': 1.0, 'wanting': 1.0, 'deal': 1.0, 'money': 1.0, 'wish': 1.0, 'expect': 1.0, 'kinda': 1.0, 'would': 2.0, 'either': 1.0, 'different': 1.0, 'having': 1.0, 'from': 2.0, 'but': 1.0, 'back': 2.0, 'doesn': 1.0, 'front': 1.0, 'easy': 1.0, 'get': 1.0, 'upgrading': 1.0, 'plan': 1.0, 'which': 2.0, 'hold': 1.0, 'like': 1.0, 'brainer': 1.0, 'up': 1.0, 'each': 1.0, 'no': 1.0, 'model': 1.0, 'time': 2.0, 'on': 1.0, '3': 1.0, 'your': 1.0, 'my': 2.0, 'underneath': 1.0, 'that': 3.0, 'basket': 2.0, 'stand': 2.0, '8': 1.0, 'to': 8.0, 'car': 1.0, 'knew': 1.0, 'some': 2.0, 'such': 1.0, 'for': 4.0, 'infants': 1.0, '2': 1.0, 'so': 2.0, 'can': 3.0, 'we': 1.0, 'a': 6.0, 'go': 3.0, 't': 3.0, 'big': 1.0, 'product': 1.0, 'year': 1.0, 'with': 2.0, 'convenient': 1.0, 'models': 1.0, 'choosing': 1.0, 'recline': 2.0, 'already': 1.0, 'it': 2.0, 'super': 1.0, 'month': 1.0, 'this': 3.0, 'holders': 1.0, 'children': 3.0, 'anyone': 1.0, 'trip': 1.0, 'and': 11.0, '50': 1.0, 'line': 1.0, 'recommend': 1.0, 'together': 1.0, 'what': 1.0, 'sit': 2.0, 'when': 2.0, 'was': 2.0, 'lbs': 1.0, 'value': 1.0, 'graco': 2.0, 'old': 2.0, 'i': 8.0, 'later': 1.0, 'very': 2.0, 'nice': 1.0, 'little': 1.0, 'seats': 1.0, 'ride': 1.0, 'way': 2.0, 'assemble': 1.0, 'belts': 1.0, 'quite': 1.0, 'seat': 4.0, 'in': 3.0, '1': 1.0, 'since': 1.0, 'is': 4.0, 'at': 2.0, 'sturdy': 1.0, 'they': 1.0, 'cup': 1.0, 'are': 1.0, 'have': 7.0, 'roomy': 1.0, 'the': 14.0, 'of': 2.0, 'fits': 1.0, 'all': 3.0, 'an': 2.0, 'other': 1.0, 'didn': 2.0, 'both': 1.0, 'out': 1.0, 'stroller': 3.0, 'shopping': 1.0, 'complaint': 1.0, 'done': 1.0, 'ones': 1.0, 'one': 3.0, 'only': 1.0, 'seems': 1.0, 'see': 1.0, 'awesome': 1.0, 'moment': 1.0}
Word element => {'short': 1.0, 'come': 1.0, 'be': 1.0, 'will': 1.0, 'user': 1.0, 'convienant': 1.0, 'sunny': 1.0, 'its': 1.0, 'back': 1.0, 'who': 1.0, 'hat': 1.0, 'really': 1.0, 'forces': 1.0, 'friendly': 2.0, 'hoarder': 1.0, '34': 2.0, 'not': 2.0, 'basket': 1.0, 'stores': 1.0, 'wish': 1.0, 'you': 1.0, 'complaints': 1.0, 'surprised': 1.0, 'any': 1.0, 'had': 1.0, 'if': 2.0, 'price': 1.0, 'low': 1.0, 'worth': 1.0, 'unhappy': 1.0, 'sits': 1.0, 'is': 3.0, 'd': 1.0, 'someone': 1.0, 'places': 1.0, 'great': 3.0, 'need': 1.0, 'singles': 1.0, 'little': 1.0, 'two': 1.0, 'space': 1.0, 'always': 1.0, 'them': 1.0, 'this': 3.0, 'kids': 3.0, 'weird': 1.0, 'peg': 1.0, 'were': 2.0, 'pricey': 1.0, 'goes': 1.0, 'believe': 1.0, 'without': 1.0, 'pleased': 1.0, 'up': 2.0, 'much': 1.0, 'handles': 1.0, 'job': 1.0, 'to': 5.0, 'own': 1.0, 'they': 2.0, 'sturdy': 1.0, 'perego': 1.0, 'strollers': 2.0, 'owned': 1.0, 'give': 1.0, 'even': 1.0, 'double': 2.0, 'weigh': 1.0, 'on': 1.0, 'older': 1.0, '3': 1.0, 'some': 1.0, 'big': 2.0, 'say': 1.0, 'comfortable': 1.0, '1': 1.0, 'pain': 1.0, 'separately': 1.0, 'five': 1.0, 'enough': 2.0, 'well': 1.0, 'i': 8.0, 'trunk': 1.0, 'are': 4.0, 'however': 1.0, 'stuff': 1.0, 'seats': 1.0, 'have': 6.0, 'traverse': 1.0, 'when': 4.0, 'available': 1.0, 'folded': 1.0, 'that': 1.0, 'easily': 2.0, 'don': 1.0, 'list': 1.0, 'fold': 1.0, 'far': 1.0, 'one': 1.0, 'too': 4.0, 'and': 6.0, 'babies': 1.0, 'into': 1.0, 'each': 1.0, 'honest': 1.0, 'baskets': 1.0, 'smaller': 1.0, 'our': 1.0, 'stroller': 2.0, 'room': 1.0, 'comes': 1.0, 'close': 1.0, 'being': 3.0, 'size': 1.0, 'take': 3.0, 'we': 1.0, 'tiny': 1.0, 'small': 1.0, 'a': 5.0, 'necessities': 1.0, 'giving': 1.0, 's': 1.0, 'review': 1.0, 'single': 2.0, 'open': 1.0, 'my': 2.0, 'me': 2.0, 'looks': 1.0, 'it': 5.0, 'like': 1.0, 'with': 2.0, 'plenty': 1.0, 'the': 9.0, 'of': 1.0, 'for': 2.0, 't': 1.0, 'fit': 1.0, 'fits': 1.0, 'an': 1.0, 'other': 3.0, 'in': 3.0, 'm': 1.0, 'both': 1.0, 'sure': 1.0, 'would': 1.0, 'same': 1.0, 'super': 1.0, 'also': 1.0, 'beware': 1.0, 'car': 1.0, 'as': 3.0, 'awkward': 1.0, 'heavy': 1.0, 'ages': 1.0, 'does': 1.0}
Word element => {'recommend': 1.0, 'would': 1.0, 'glad': 1.0, 'really': 1.0, 'overall': 1.0, 'way': 1.0, 'kids': 1.0, 'older': 1.0, 'choose': 1.0, 'can': 4.0, 'but': 3.0, 'bought': 2.0, 'climb': 1.0, 'straps': 1.0, 'or': 2.0, 'into': 1.0, 'gave': 1.0, 'basket': 3.0, 'because': 3.0, 'that': 1.0, 'stand': 1.0, 'to': 7.0, 'car': 2.0, 'infant': 1.0, 'around': 2.0, 'will': 1.0, 'also': 2.0, 'doesn': 1.0, 'all': 1.0, 'an': 2.0, 'stroller': 5.0, 'as': 1.0, 'diaper': 3.0, 'use': 1.0, 'front': 1.0, 'facing': 1.0, 'gets': 1.0, 'stands': 1.0, 'through': 2.0, 'easy': 1.0, 'get': 2.0, 'in': 1.0, 'seat': 4.0, 'm': 2.0, 'my': 6.0, 'underneath': 1.0, 'one': 1.0, 'happy': 1.0, 'fold': 1.0, 'he': 4.0, 'with': 1.0, 'this': 4.0, 'it': 9.0, 'she': 1.0, 'normally': 1.0, 'old': 3.0, 'two': 2.0, '4': 3.0, 'like': 2.0, 'snap': 1.0, 'and': 6.0, 'a': 3.0, 's': 2.0, 'year': 3.0, 'if': 1.0, 'turn': 1.0, 'sideways': 1.0, 'forward': 1.0, 'i': 11.0, 'well': 1.0, 'ride': 1.0, 'seats': 1.0, 'shove': 1.0, 'on': 2.0, 'sit': 2.0, 'when': 2.0, 'onto': 1.0, 'stars': 2.0, 't': 4.0, 'likes': 1.0, 'fit': 3.0, 'hard': 1.0, 'from': 1.0, 'hang': 1.0, 'there': 1.0, 'instead': 1.0, 'don': 1.0, 'opening': 3.0, '5': 1.0, 'backward': 1.0, 'above': 1.0, 'between': 1.0, 'chance': 1.0, 'bag': 3.0, 'is': 4.0, 'sits': 1.0, 'handle': 2.0, 'back': 2.0, 'have': 1.0, 'side': 1.0, 'the': 14.0, 'of': 3.0, 'reclined': 1.0, 'up': 2.0, 'takes': 1.0, 'some': 1.0}
Word element => {'saver': 1.0, 'great': 1.0, 'the': 4.0, 'hated': 1.0, 'double': 1.0, 'and': 4.0, 'when': 1.0, 'past': 1.0, 'but': 1.0, 'toddler': 2.0, 'stroller': 1.0, 'in': 1.0, 'had': 1.0, 'was': 2.0, 'expecting': 1.0, 'on': 1.0, 'got': 1.0, 'i': 4.0, 'took': 1.0, 'thru': 1.0, 'strollers': 1.0, 'them': 1.0, 'baby': 1.0, 'is': 2.0, 'with': 1.0, 'this': 2.0, 'it': 2.0, 'have': 1.0, 'able': 1.0, 'sit': 1.0, 'to': 1.0, 'all': 1.0, 'infant': 1.0, 'back': 1.0, 'carrier': 1.0, 'snaps': 1.0, 'into': 1.0, 'or': 1.0, 'my': 1.0, 'perfectly': 1.0, 'stand': 1.0, 'trip': 1.0, 'at': 1.0, 'airports': 1.0, 'a': 5.0, 'we': 1.0, 'life': 1.0, 'few': 1.0, 'different': 1.0}
Word element => {'to': 1.0, 'assemble': 1.0, 'enough': 1.0, 'was': 1.0, 'i': 1.0, 'it': 1.0, 'of': 1.0, 'really': 1.0, 'and': 1.0, 'like': 1.0, 'easy': 1.0, 'suv': 1.0, 'stroller': 1.0, 'this': 1.0, 'fit': 1.0, 'easily': 1.0, 'in': 1.0, 'my': 1.0, 'the': 1.0, 'back': 1.0}
Word element => {'models': 1.0, 'other': 1.0, 'some': 1.0, 'look': 1.0, 'd': 1.0, 'time': 1.0, 'same': 1.0, 'comfortable': 1.0, 'designed': 1.0, 'wish': 1.0, 'larger': 1.0, 'probably': 1.0, 'manuever': 1.0, 'liked': 1.0, 'blocking': 1.0, 'dry': 1.0, 'stay': 1.0, 'sun': 2.0, 'idea': 1.0, 'between': 2.0, 'child': 1.0, 'older': 2.0, 'capacity': 1.0, 'carried': 1.0, 'being': 1.0, 'she': 1.0, 'digging': 1.0, 'recline': 1.0, 'rained': 1.0, 'because': 2.0, 'ride': 1.0, 'addition': 1.0, 'into': 2.0, 'head': 2.0, 'his': 2.0, 'refused': 1.0, 'throwing': 1.0, 'purposefully': 1.0, 'empty': 1.0, 'past': 1.0, 'then': 1.0, 'leg': 1.0, 'we': 3.0, 'them': 1.0, 'has': 1.0, 'duffel': 3.0, 'along': 1.0, 't': 4.0, 'hold': 1.0, 'out': 2.0, 'worked': 3.0, 'reclined': 1.0, 'water': 2.0, 'autograph': 1.0, 'one': 2.0, 'got': 1.0, 'daughter': 1.0, 'bench': 4.0, 'handle': 3.0, 'that': 5.0, 'balance': 1.0, 'heads': 1.0, 'so': 2.0, 'can': 1.0, 'walking': 1.0, 'either': 1.0, 'bar': 1.0, 'would': 3.0, 'put': 1.0, '42': 1.0, 'long': 1.0, 'than': 1.0, '7': 1.0, 'straps': 1.0, 'opening': 1.0, 'back': 7.0, 'most': 1.0, 'constantly': 1.0, 'and': 18.0, 'trip': 5.0, 'until': 1.0, 'seems': 1.0, 'pleasure': 1.0, '1': 5.0, 'since': 1.0, 'the': 41.0, 'beforehand': 1.0, 'myself': 1.0, 'source': 1.0, 'at': 6.0, 'shoving': 1.0, 'used': 4.0, 'items': 4.0, 'on': 7.0, 'zoo': 1.0, 'single': 2.0, 'knocking': 1.0, 'books': 1.0, 'carry': 1.0, 'umbrella': 2.0, 'shade': 1.0, 'own': 1.0, 'it': 12.0, 'be': 3.0, 'with': 3.0, 'using': 2.0, 'light': 1.0, 'due': 1.0, 'up': 3.0, 'diaper': 3.0, 'bags': 1.0, 'onto': 1.0, 'our': 2.0, 'end': 1.0, '2': 7.0, 'diapers': 1.0, 'but': 5.0, 'week': 1.0, 'prior': 1.0, 'ponchos': 1.0, 'snacks': 1.0, 'for': 7.0, 'strained': 1.0, 'niece': 1.0, 'could': 7.0, 'summary': 1.0, 'bag': 3.0, 'a': 14.0, 'small': 3.0, 'easily': 1.0, 'making': 1.0, 'brought': 1.0, 'folding': 1.0, 'not': 1.0, 'basket': 1.0, 'recall': 1.0, 'stroller': 18.0, 'year': 5.0, '37': 1.0, '4': 3.0, 'i': 17.0, 'access': 2.0, 'well': 1.0, 'bought': 1.0, 'chicco': 2.0, 'they': 2.0, 'let': 1.0, 'double': 1.0, 'graco': 1.0, 'value': 1.0, 'security': 1.0, 'wet': 1.0, 'bottles': 2.0, 'to': 13.0, 'pushed': 1.0, 'under': 2.0, 'buckles': 1.0, 'side': 3.0, 'disney': 1.0, 'rode': 1.0, 'tandem': 1.0, 'storage': 4.0, 'stand': 2.0, 'room': 1.0, 'are': 1.0, 'my': 11.0, 'option': 1.0, 'in': 15.0, 'main': 1.0, 'even': 3.0, 'of': 9.0, 'old': 5.0, 've': 1.0, 'while': 2.0, 'parks': 1.0, 'you': 4.0, 'seat': 5.0, 'push': 1.0, 'able': 1.0, 'think': 1.0, 'positive': 1.0, 'if': 5.0, 'keep': 1.0, 'hidden': 1.0, 'from': 1.0, 'relatively': 1.0, 'this': 13.0, '32': 1.0, 'eyes': 1.0, 'want': 2.0, 'hands': 1.0, 'don': 1.0, 'airport': 1.0, 'portion': 1.0, 'skinnier': 1.0, 'especially': 1.0, 'use': 1.0, 'little': 1.0, 'her': 5.0, 'easy': 2.0, 'have': 3.0, 'found': 3.0, 'or': 3.0, 'retrospect': 1.0, 'both': 2.0, 'son': 3.0, 'easier': 1.0, 'maneuver': 1.0, 'cost': 1.0, 'clip': 2.0, 'fold': 1.0, '34': 4.0, 'inches': 2.0, 'ever': 1.0, 'doesn': 1.0, 's': 3.0, 'by': 2.0, 'after': 1.0, 'like': 4.0, 'wasn': 1.0, 'big': 1.0, 'deal': 1.0, 'point': 2.0, '51': 1.0, 'too': 1.0, 'walk': 1.0, '3': 1.0, 'lb': 2.0, 'less': 2.0, 'as': 2.0, 'sit': 2.0, 'when': 2.0, 'went': 1.0, 'didn': 1.0, 'feel': 1.0, 'any': 1.0, 'perfect': 1.0, 'more': 3.0, 'prying': 1.0, 'was': 4.0, 'also': 2.0, 'sitting': 1.0, 'were': 2.0, 'stack': 1.0, 'ease': 1.0, 'part': 1.0, 'sister': 1.0, 'front': 3.0, 'walked': 1.0, 'handles': 1.0, 'comfort': 2.0, 'strollers': 1.0, 'ones': 1.0, 'way': 2.0, 'all': 1.0, 'kids': 4.0, 'ornery': 1.0, 'keeping': 1.0, 'hard': 1.0, 'difficult': 3.0, 'headed': 1.0}
Word element => {'everyone': 1.0, 'to': 1.0, 'energy': 1.0, 'truly': 1.0, 'now': 1.0, 'better': 1.0, 'in': 1.0, 'both': 1.0, 'what': 1.0, 'yr': 1.0, 'needed': 2.0, 'barebones': 1.0, 'the': 2.0, 'of': 2.0, 'and': 4.0, '3': 1.0, 'this': 5.0, 'stroller': 2.0, 'just': 1.0, 'hold': 1.0, 'me': 1.0, '8month': 1.0, 'that': 1.0, 'would': 2.0, 'something': 1.0, 'saved': 1.0, 'i': 2.0, 'old': 2.0, 't': 1.0, 'we': 1.0, 'a': 3.0, 'quality': 1.0, 'them': 1.0, 'up': 1.0, 'child': 1.0, 'wasn': 1.0, 'folds': 1.0, 'great': 1.0, '1': 1.0, 'big': 1.0, 'is': 1.0, 'very': 1.0, 'single': 1.0, 'sturdy': 1.0, 'inch': 1.0, 'then': 1.0, 'product': 1.0, 'fit': 1.0, 'for': 1.0, 'actually': 1.0, 'has': 1.0, 'trunk': 1.0, 'half': 1.0, 'time': 1.0, 'so': 2.0, 'smaller': 1.0, 'recommend': 1.0, 'was': 1.0, 'chicco': 1.0, '2': 1.0, 'but': 2.0, 'can': 1.0}
Word element => {'34': 2.0, 'such': 1.0, 'of': 1.0, 'jealous': 1.0, 'nefews': 1.0, 'neices': 1.0, 'my': 2.0, 'all': 1.0, 'life': 1.0, 'is': 3.0, 'more': 1.0, 'you': 2.0, 'appreciate': 1.0, 'are': 1.0, 'saver': 1.0, 'it': 5.0, 'young': 1.0, 'cool': 1.0, 'one': 1.0, 'love': 1.0, 'for': 1.0, 'i': 2.0, 'about': 1.0, 'than': 1.0, 'stroller': 2.0, 'have': 3.0, 'wide': 1.0, 't': 1.0, 'a': 4.0, 'half': 1.0, 'well': 1.0, 'black': 1.0, 'see': 1.0, 'yr': 1.0, 'getting': 1.0, 'perfectly': 1.0, 'absolutley': 1.0, 'also': 1.0, 'that': 1.0, 'isn': 1.0, 'and': 4.0, 'too': 1.0, 'until': 1.0, 'now': 1.0, 'its': 1.0, 'holding': 1.0, 'child': 1.0, 'up': 1.0, 'very': 1.0, 'if': 1.0, 'everything': 1.0, 'working': 1.0, 'kids': 1.0, 'this': 1.0, 'dont': 1.0, 'they': 1.0, 'dirty': 1.0, 'since': 2.0, 'at': 1.0}
Word element => {'by': 1.0, 'click': 1.0, 'good': 1.0, 'made': 1.0, 'they': 1.0, 'wish': 1.0, 'safe': 2.0, 'new': 1.0, 'peg': 2.0, 'could': 1.0, 'humble': 1.0, 'convince': 1.0, 'going': 1.0, 'about': 1.0, 'am': 1.0, 'car': 4.0, 'graco': 3.0, 'this': 2.0, 'problem': 1.0, 'steer': 1.0, 'really': 2.0, 'needed': 1.0, 'wind': 1.0, 'atleast': 1.0, 'roof': 1.0, 'sun': 1.0, 'issue': 1.0, 'minor': 1.0, 'their': 1.0, 'twisted': 1.0, 'if': 2.0, 'still': 1.0, 'fits': 2.0, 'all': 2.0, 'but': 4.0, 'stands': 1.0, 'rather': 2.0, 'reclined': 1.0, 'her': 1.0, 'comfortable': 1.0, 'down': 1.0, 'was': 6.0, 'old': 1.0, 'get': 1.0, 'months': 1.0, '8': 1.0, 'started': 1.0, 'very': 2.0, 'forward': 2.0, 'not': 8.0, 'cons': 1.0, 'curb': 1.0, 'lift': 2.0, 'foot': 1.0, 'be': 2.0, 'opinion': 1.0, 'block': 1.0, 'trying': 2.0, 'sweaters': 1.0, 'to': 10.0, 'waist': 1.0, 'anyone': 1.0, 'and': 6.0, 'universal': 1.0, 'as': 3.0, 'bags': 1.0, 'from': 1.0, 'full': 1.0, 'some': 1.0, 'well': 1.0, 'i': 5.0, 'daughter': 1.0, 'entire': 1.0, 'me': 1.0, 'my': 6.0, 'today': 1.0, 'tie': 1.0, 'handed': 1.0, 'purse': 1.0, 'rear': 1.0, 'one': 3.0, 'lot': 2.0, 'front': 2.0, 'small': 1.0, 'a': 11.0, 'reclines': 1.0, 'for': 3.0, 'does': 2.0, 's': 2.0, 'sides': 1.0, 'give': 1.0, 'there': 1.0, 'even': 1.0, 'instead': 1.0, 'bike': 1.0, 'it': 12.0, 'basket': 1.0, 'helmet': 1.0, 'stuff': 3.0, 'do': 2.0, 'put': 2.0, 'so': 8.0, 'can': 8.0, 'constantly': 1.0, 'on': 2.0, 'your': 1.0, 'of': 3.0, 'the': 11.0, 'way': 4.0, 'than': 2.0, 'reach': 1.0, 'place': 1.0, 'groceries': 1.0, 'see': 1.0, 'tried': 1.0, 'own': 1.0, 'access': 1.0, 'you': 5.0, 'sit': 1.0, 'when': 5.0, 'seat': 10.0, 'in': 4.0, 'she': 2.0, 'steers': 1.0, 'proscheapbasket': 1.0, 'that': 6.0, 'easily': 2.0, 'deep': 2.0, 'strechy': 1.0, 'had': 1.0, 'standing': 1.0, 'first': 1.0, 'diapers': 1.0, 'how': 1.0, 'stroller': 6.0, 'clip': 1.0, 'with': 2.0, 'biggest': 1.0, 'only': 3.0, 't': 2.0, 'fit': 1.0, 'belt': 3.0, 'child': 5.0, 'freedom': 1.0, 'over': 1.0, 'up': 4.0, 'frustrating': 1.0, 'have': 3.0, 'more': 1.0, 'around': 1.0, 'handle': 1.0, 'is': 9.0, 'foldthe': 1.0, 'used': 1.0, 'move': 2.0, 'buy': 1.0, 'straps': 1.0, 'has': 2.0, 'them': 2.0, 'shoulder': 1.0, 'isn': 1.0, 'tight': 2.0, 'would': 3.0, 'sliding': 2.0, 'sucking': 1.0, 'easy': 1.0, 'most': 1.0, 'back': 2.0, 'locking': 1.0, 'handy': 1.0, 'love': 1.0, 'fold': 1.0, 'doubles': 2.0, 'sorry': 1.0, 'holder': 1.0, 'walking': 1.0, 'parent': 1.0, 'tray': 1.0, 'wipes': 1.0, 'large': 1.0, 'using': 1.0, 'platform': 1.0, 'bag': 1.0, 'light': 1.0, 'perego': 1.0, 'quite': 1.0, 'upset': 1.0, 'little': 1.0, 'two': 2.0, 'nice': 1.0}
Word element => {'more': 1.0, 'say': 1.0, 'it': 1.0, 'love': 1.0, 'can': 1.0, 'i': 3.0, 'just': 1.0, 'me': 1.0, 'perfect': 1.0, 'have': 1.0, 'a': 2.0, 'is': 1.0, '5': 1.0, 'year': 1.0, 'for': 1.0, 'and': 2.0, 'old': 1.0, 'newborn': 1.0}
Word element => {'price': 1.0, 'worth': 1.0, 'products': 1.0, 'tried': 1.0, 'old': 1.0, 'does': 1.0, 'works': 1.0, 'only': 1.0, 'with': 1.0, 'this': 1.0, 'and': 2.0, 'well': 1.0, 'trunk': 1.0, 'one': 1.0, 'mazda3': 1.0, 'did': 1.0, 'not': 1.0, 'the': 2.0, 'inexpensive': 1.0, 'however': 1.0, 'dislike': 1.0, 'he': 1.0, 'seating': 1.0, 'walk': 1.0, 'seaters': 1.0, 'other': 2.0, 'extra': 1.0, 'product': 1.0, 'for': 1.0, 'fit': 1.0, 'in': 1.0, 'graco': 1.0, 'they': 1.0, 'is': 2.0, 'limited': 1.0, 'standing': 1.0, 'bar': 1.0, 'relatively': 1.0, 'area': 1.0, '5': 1.0, 'year': 1.0, 'then': 1.0, 'anyway': 1.0, 'overall': 1.0, '2': 2.0, 'most': 1.0, 'prefers': 1.0, 'our': 2.0, 'to': 1.0, 'again': 1.0, 'times': 1.0, 'solid': 1.0}
Word element => {'time': 1.0, 'same': 1.0, 'at': 1.0, 'daughter': 1.0, 'see': 1.0, 'easily': 1.0, 'nice': 1.0, 'strollers': 1.0, 'old': 2.0, 'little': 1.0, 'i': 2.0, 'two': 3.0, 'things': 1.0, 'super': 1.0, 'would': 1.0, 'be': 1.0, 'him': 1.0, 'not': 1.0, 'kids': 1.0, 'this': 1.0, 'month': 1.0, 'it': 5.0, 'love': 1.0, 'for': 1.0, 'year': 1.0, 'son': 2.0, 'a': 2.0, 's': 5.0, 'faces': 1.0, 'bulky': 1.0, 'heavier': 1.0, 'the': 2.0, 'thought': 1.0, 'than': 1.0, 'different': 1.0, 'even': 1.0, 'stroller': 1.0, 'though': 1.0, 'smooth': 1.0, 'and': 3.0, 'getting': 1.0, 'easy': 1.0, 'seat': 1.0, 'as': 2.0, 'to': 1.0, 'push': 1.0, 'my': 2.0, 'around': 2.0, 'that': 1.0, 'loves': 1.0, 'can': 1.0, 'but': 1.0, 'most': 1.0, 'sitting': 1.0, 'in': 1.0, 'view': 1.0, 'of': 1.0, 'really': 1.0}
Word element => {'to': 1.0, 'go': 1.0, 'we': 1.0, 'if': 1.0, 'neighborhood': 1.0, 'our': 1.0, 'around': 1.0, 'taking': 1.0, 'm': 1.0, 'while': 1.0, 'sitting': 1.0, 'month': 1.0, 'can': 1.0, '3': 1.0, 'my': 2.0, 'standing': 1.0, 'have': 1.0, 'it': 2.0, 'this': 1.0, 'walks': 1.0, 'stroller': 1.0, 'like': 1.0, 'zoo': 1.0, 'really': 1.0, 'seat': 1.0, 'and': 1.0, '1': 1.0, 'old': 2.0, 'i': 3.0, 'or': 2.0, 'in': 1.0, 'year': 1.0, 'her': 1.0, 'car': 1.0, 'the': 1.0, '2': 2.0, 'on': 2.0}
Word element => {'rest': 1.0, 'may': 1.0, 'dangle': 1.0, 'his': 1.0, 'area': 1.0, 'kind': 1.0, 'to': 4.0, 'as': 1.0, 'any': 1.0, 'childwho': 1.0, 'stroll': 1.0, 'stamina': 1.0, 'ok': 1.0, 'or': 3.0, 'rests': 1.0, 'legs': 1.0, 'get': 1.0, 'months': 1.0, 'e': 1.0, 'old': 1.0, 'i': 3.0, 'babies': 1.0, 'that': 2.0, 'sit': 2.0, 'who': 2.0, 'is': 6.0, 'at': 1.0, 'baby': 2.0, 'for': 10.0, 'such': 1.0, 'closely': 1.0, 'basically': 1.0, 'work': 2.0, 'but': 1.0, 'opening': 1.0, 'bench': 1.0, 'difficult': 1.0, 'wants': 1.0, 'not': 3.0, 'and': 5.0, 'older': 3.0, 'attractive': 1.0, 'spaced': 1.0, 'least': 1.0, 'children': 1.0, 'it': 2.0, 'this': 5.0, '6': 1.0, 'up': 1.0, 'assemble': 1.0, 'assembly': 1.0, 'child': 3.0, 'the': 9.0, 'of': 2.0, 'once': 1.0, 'front': 1.0, 'use': 1.0, 'wheel': 1.0, 'only': 1.0, 'improvise': 1.0, 'also': 1.0, 'babywho': 1.0, 'be': 1.0, 'one': 4.0, 'rear': 2.0, 'a': 4.0, 'pins': 1.0, 'an': 1.0, 'another': 1.0, 'has': 1.0, 'standing': 1.0, 'you': 1.0, 'able': 1.0, 'stand': 1.0, 'during': 1.0, 'will': 4.0, 'means': 1.0, 'must': 1.0, 'have': 2.0, 'full': 1.0, 'sufficient': 1.0, 'option': 1.0, 'foot': 2.0, 'used': 1.0, 'occasionally': 1.0, 'can': 2.0, 'so': 1.0, 'far': 1.0, 'two': 2.0, 'little': 1.0, 'fine': 1.0, 'seat': 3.0, 'm': 1.0, 'in': 1.0, 'our': 2.0, 'stroller': 3.0, 'disappointed': 1.0, 'hang': 1.0, 'there': 1.0, 'balance': 1.0, 'are': 1.0, 'years': 1.0, 'no': 1.0}
Word element => {'s': 1.0, 'than': 1.0, 'other': 1.0, 'fit': 1.0, 'would': 1.0, 'seat': 1.0, 'chicco': 1.0, 'that': 2.0, 'thinking': 1.0, 'mistake': 1.0, 'made': 1.0, 'i': 1.0, 'in': 2.0, 'keep': 1.0, 'to': 2.0, 'easy': 1.0, 'and': 2.0, 'great': 2.0, 'the': 1.0, 'a': 1.0, 'is': 2.0, 'it': 2.0, 'this': 2.0, 'use': 1.0, 'every': 1.0, 'my': 1.0, 'running': 1.0, 'there': 1.0, 'of': 1.0, 'fairly': 1.0, 'day': 1.0, 'errands': 1.0, 'etc': 1.0, 'light': 1.0, 'but': 1.0, 'stroller': 1.0, 'put': 1.0, 'car': 2.0, 'together': 1.0}
Word element => {'were': 1.0, 'like': 2.0, 'overall': 1.0, 'so': 1.0, 'roll': 1.0, 'you': 1.0, 'folded': 1.0, 'do': 1.0, 'continue': 1.0, 'its': 1.0, 'while': 1.0, 'no': 1.0, 'there': 1.0, 'lock': 1.0, 'don': 1.0, 'wheels': 2.0, 'difficult': 1.0, 'storage': 1.0, 'under': 1.0, 'gets': 1.0, 'shade': 1.0, 'not': 1.0, 'steer': 1.0, 'more': 1.0, 'is': 5.0, 'easy': 2.0, 'area': 1.0, 'drink': 1.0, 'stand': 2.0, 'or': 1.0, 'love': 3.0, 'for': 1.0, 'basket': 1.0, 'that': 3.0, 'thought': 1.0, 'entirely': 1.0, 'stroller': 2.0, 'folding': 1.0, 'secure': 1.0, 'single': 2.0, 'pros': 1.0, 'lie': 1.0, 'graco': 1.0, 'carseat': 1.0, 'convenient': 1.0, 'with': 1.0, 'wish': 1.0, 'holders': 1.0, 'this': 4.0, 'it': 4.0, 'features': 1.0, 'year': 1.0, 'match': 1.0, 'travel': 2.0, 'and': 3.0, '5': 1.0, 'system': 2.0, 'in': 2.0, 'old': 1.0, 'etc': 1.0, 'i': 8.0, 'needed': 1.0, 'flat': 1.0, 'have': 4.0, 'way': 2.0, 'cons': 2.0, 'sit': 1.0, 'would': 1.0, 'the': 10.0, 'a': 3.0, 't': 2.0, 'same': 1.0, 'didn': 1.0, 'car': 1.0, '34': 4.0, 'reaching': 1.0, 'shopping': 1.0, 'newborn': 1.0, 'convenience': 1.0, 'locks': 1.0, 'but': 2.0, 'can': 1.0, 'seat': 1.0, 'to': 5.0, 'feel': 1.0, 'my': 1.0, 'oldest': 1.0}
Word element => {'well': 1.0, 'does': 1.0, 'after': 1.0, 'but': 1.0, 'this': 1.0, 'easy': 2.0, 'get': 1.0, 'so': 1.0, 'i': 2.0, 'folded': 1.0, 'when': 1.0, 'flat': 1.0, 'lay': 1.0, 'close': 1.0, 'said': 1.0, 'is': 2.0, 'directions': 1.0, 'up': 1.0, 'child': 1.0, 'foot': 1.0, 'back': 2.0, 'stroller': 2.0, 'shade': 1.0, 'of': 1.0, 'was': 1.0, 'bent': 1.0, 'turns': 1.0, 'the': 6.0, 'put': 1.0, 'on': 2.0, 'we': 2.0, 'open': 1.0, 'stool': 1.0, 'had': 1.0, 'where': 1.0, 'actually': 1.0, 'assemble': 1.0, 'hard': 4.0, 'it': 4.0, 'broke': 2.0, 'stands': 1.0, 'received': 1.0, 'plastic': 2.0, 'are': 1.0, 'push': 2.0, 'bottom': 1.0, 'down': 1.0, 'excited': 1.0, 'until': 1.0, 'checked': 1.0, 'snaps': 1.0, 'things': 1.0, 'problem': 1.0, 'never': 1.0, 'snapped': 1.0, 'and': 3.0, 'see': 1.0, 'three': 1.0, 'wheels': 1.0, 'upset': 1.0, 'very': 6.0, 'little': 1.0, 'as': 1.0, 'to': 7.0, 'all': 1.0, 'latches': 1.0, 'also': 2.0, 'visor': 1.0}
Word element => {'zoo': 1.0, 'great': 1.0, 'm': 1.0, 'handlebar': 1.0, 'on': 1.0, 'strap': 1.0, 'cooler': 1.0, 'small': 1.0, 'purchases': 1.0, 'sufficient': 1.0, 'storage': 1.0, 'll': 1.0, 'bottom': 1.0, 'well': 1.0, 'use': 1.0, 'front': 1.0, 'were': 2.0, 'park': 2.0, 'lot': 1.0, 'at': 1.0, 'look': 1.0, 'for': 3.0, 'rent': 1.0, 'doesn': 1.0, 'was': 4.0, 'bag': 1.0, 'wanted': 1.0, 'either': 1.0, 'purchased': 1.0, 'with': 2.0, 'recline': 1.0, 'this': 2.0, 'and': 5.0, 'sure': 1.0, 'get': 2.0, 'yr': 4.0, 'it': 1.0, 'she': 1.0, 'shoulder': 1.0, 'but': 1.0, '2': 2.0, 'the': 8.0, 'world': 1.0, 'out': 2.0, 'just': 1.0, 'hold': 1.0, 'trip': 1.0, 'diaper': 1.0, 'stroller': 4.0, 'back': 1.0, 'before': 1.0, 'as': 1.0, 'seat': 1.0, 'to': 8.0, 'our': 2.0, 'old': 4.0, 'buy': 1.0, 'mall': 1.0, 'something': 1.0, 'disney': 1.0, 'of': 3.0, 'etc': 1.0, 'i': 1.0, '4': 2.0, 'two': 1.0, 'or': 2.0, 'go': 1.0, 't': 1.0, 'a': 6.0, 'we': 6.0, 're': 1.0, 'happy': 1.0, 'my': 1.0, 'so': 1.0, 'hang': 1.0, 'one': 1.0, 'bought': 1.0, 'taking': 1.0, 'able': 3.0, 'tired': 1.0, 'take': 1.0, 'pop': 1.0, 'easily': 1.0, 'when': 2.0, 'nap': 1.0, 'walking': 1.0, 'in': 2.0}
Word element => {'value': 1.0, 'was': 1.0, 'lightweight': 1.0, 'handles': 1.0, 'convenient': 1.0, 'is': 2.0, '4': 1.0, 'are': 1.0, 'a': 1.0, 'using': 1.0, 'old': 2.0, 'year': 1.0, 'for': 1.0, 'our': 1.0, 'nicely': 1.0, 'and': 2.0, 'great': 1.0, 'it': 2.0, 'month': 1.0, 'we': 1.0, '3': 1.0}
Word element => {'date': 1.0, 'delivery': 1.0, 'estimated': 1.0, 'before': 1.0, 'two': 1.0, 'of': 1.0, 'for': 1.0, 'use': 1.0, 'easy': 1.0, 'perfect': 1.0, 'to': 1.0, 'taking': 1.0, 'quality': 1.0, 'makes': 1.0, 'a': 1.0, 'little': 1.0, 'this': 1.0, 'it': 1.0, 'hectic': 1.0, 'great': 1.0, 'the': 1.0, 'mom': 1.0, 'less': 1.0, 'kids': 1.0, 'arrived': 1.0, 'out': 1.0, 'about': 1.0}
Word element => {'recommend': 1.0, 'price': 1.0, 'also': 1.0, 'assembly': 1.0, 'affordable': 1.0, 'love': 1.0, 'it': 2.0, 'and': 1.0, 'very': 2.0, 'easy': 1.0, 'exc': 1.0, 'when': 1.0, 'have': 1.0, '100': 1.0, 'you': 1.0, 'kids': 1.0, 'is': 2.0, '2': 1.0, 'the': 1.0, 'small': 1.0}
Word element => {'kids': 1.0, 'great': 1.0, 'work': 1.0, 'will': 1.0, 'this': 1.0, 'sure': 1.0, 'but': 1.0, 'compare': 1.0, 'anything': 1.0, 'am': 1.0, 'strollers': 1.0, 'any': 1.0, 'used': 1.0, 'car': 1.0, 'steer': 1.0, 'easy': 1.0, 'trunk': 1.0, 'other': 1.0, 'fits': 1.0, 'then': 1.0, 'folded': 1.0, 'actually': 1.0, 'baby': 1.0, 'folds': 1.0, 'up': 2.0, 'lift': 1.0, 'push': 1.0, 'you': 2.0, 'right': 1.0, 'don': 1.0, 'isn': 1.0, 'snaps': 1.0, 'my': 7.0, 'smaller': 1.0, 'use': 1.0, 'front': 3.0, 'sturdy': 1.0, 'really': 1.0, 'material': 1.0, 'be': 1.0, 'together': 1.0, 'a': 7.0, 'out': 2.0, 'carseat': 2.0, 'padding': 1.0, 'good': 1.0, 'recline': 1.0, 'it': 7.0, 'plenty': 1.0, 'with': 6.0, 'haven': 1.0, 'graco': 5.0, 'liked': 1.0, 'came': 1.0, 'glad': 1.0, 'luck': 1.0, 'stroller': 4.0, 'so': 4.0, 'there': 4.0, 'todder': 1.0, 'when': 3.0, 'sit': 3.0, 'and': 9.0, 'seems': 1.0, 'see': 1.0, 'traction': 1.0, 'since': 1.0, 'stand': 3.0, 'much': 2.0, 'put': 1.0, 'on': 4.0, 'have': 2.0, 'easily': 2.0, 'that': 3.0, 'wheels': 1.0, 'their': 1.0, 'i': 5.0, 'some': 1.0, 'to': 10.0, 'in': 5.0, 'seat': 7.0, 'was': 1.0, 'bumps': 1.0, 'had': 1.0, 'wasn': 1.0, 'standing': 1.0, 'bar': 1.0, 'almost': 1.0, 'upright': 1.0, 'position': 1.0, 'lenght': 1.0, 'the': 18.0, 'of': 2.0, 'room': 1.0, 'bench': 2.0, 'sticks': 1.0, 'for': 3.0, 'or': 1.0, 'stoller': 1.0, 'comparing': 1.0, 'roomfor2': 2.0, 'won': 1.0, 'them': 1.0, 'always': 1.0, 'has': 2.0, 'too': 1.0, 'one': 2.0, 'tray': 1.0, 'differnce': 1.0, 'products': 1.0, 'toddler': 2.0, 'are': 1.0, 'exactly': 1.0, 'same': 1.0, 'just': 1.0, 't': 5.0, 'farther': 1.0, 'is': 7.0, 'handle': 1.0, 'back': 1.0, 'padded': 1.0, 'little': 2.0, 'nice': 2.0, 'tear': 1.0, 'like': 1.0, 'old': 1.0, 'did': 1.0, 'platform': 1.0, 'help': 1.0}
Word element => {'it': 1.0, 'front': 1.0, 'on': 1.0, 'carrier': 1.0, 'the': 2.0, 'light': 1.0, 'durable': 1.0, 'use': 1.0, 'just': 1.0, 'weight': 1.0, 'what': 1.0, 'everyday': 1.0, 'does': 1.0, 'snap': 1.0, 'i': 3.0, 'and': 1.0, 'need': 1.0, 'baby': 1.0, 'currently': 1.0}
Word element => {'breeze': 1.0, 's': 1.0, 'a': 1.0, 'closes': 1.0, 'and': 1.0, 'easily': 1.0, 'two': 1.0, 'one': 1.0, 'for': 2.0, 'stroller': 1.0, 'but': 1.0, 'opens': 1.0, 'little': 1.0, 'lightweight': 1.0, 'great': 1.0, 'size': 1.0, 'can': 1.0, 'with': 1.0, 'it': 1.0, 'hand': 1.0, 'be': 1.0, 'kind': 1.0, 'its': 1.0, 'to': 1.0, 'of': 1.0, 'tricky': 1.0, 'assemble': 1.0, 'after': 1.0, 'that': 1.0}
Word element => {'from': 1.0, 'accepted': 1.0, 'because': 1.0, 'choose': 1.0, 'complaints': 1.0, 'these': 1.0, 'remember': 1.0, 'space': 1.0, 'more': 1.0, 'once': 1.0, 'better': 1.0, 'like': 1.0, 'hope': 1.0, 'pay': 1.0, 'since': 1.0, 'returning': 1.0, 'plan': 1.0, 'do': 1.0, 'again': 1.0, 'would': 1.0, 'overall': 1.0, 'exception': 1.0, 'extremely': 1.0, 'balance': 1.0, 'first': 1.0, 'lock': 2.0, 'cup': 2.0, '4': 1.0, 'didn': 1.0, 'ordered': 1.0, 'see': 1.0, 'seems': 2.0, 'tray': 2.0, 'not': 3.0, 'forward': 1.0, 'does': 1.0, 'reason': 1.0, 'same': 1.0, 'month': 1.0, 'parent': 2.0, 'cupholder': 1.0, 'i': 18.0, 'fold': 1.0, 'thing': 1.0, '2': 2.0, 'clips': 1.0, 'no': 2.0, 'there': 2.0, 'hang': 1.0, 'give': 1.0, 'lbs': 1.0, 'was': 3.0, 'just': 2.0, 'and': 18.0, 'picked': 1.0, 'causing': 1.0, 'when': 2.0, 'sit': 6.0, 'facing': 1.0, 'close': 1.0, 'open': 1.0, 'over': 2.0, 'hard': 2.0, 'work': 1.0, 'experience': 1.0, 'the': 28.0, 'securely': 1.0, 'front': 6.0, 'lose': 1.0, 'joovy': 1.0, 'using': 1.0, 'with': 7.0, 'attach': 2.0, 'idea': 2.0, 'children': 1.0, 'two': 1.0, 'without': 3.0, 'child': 1.0, 'don': 2.0, 'seat': 7.0, 'to': 19.0, 'hoping': 1.0, 'pretty': 1.0, 'years': 1.0, 'our': 1.0, 'stroller': 4.0, '3rd': 1.0, 'how': 1.0, 'that': 1.0, 'are': 4.0, 'room': 1.0, 'my': 10.0, 'of': 7.0, 'old': 2.0, 'trend': 4.0, 'making': 1.0, 'awkward': 1.0, 'diaper': 1.0, 'heavy': 1.0, 'almost': 1.0, 'drives': 1.0, '4th': 1.0, 'on': 3.0, 'carseat': 5.0, 'long': 1.0, '3': 2.0, 'cons': 1.0, 'holds': 1.0, 'have': 2.0, 'belt': 1.0, 'likes': 1.0, 'then': 1.0, 'only': 1.0, 'separate': 1.0, 'bag': 1.0, 'leaning': 1.0, 'a': 7.0, 'small': 2.0, 'we': 1.0, 'many': 2.0, 'baby': 5.0, 'handle': 1.0, 'months': 3.0, 'strollers': 1.0, 'ride': 1.0, 'flimsy': 2.0, 'stand': 2.0, 'favorite': 1.0, 'metrolite': 2.0, 'can': 1.0, 'is': 12.0, 'compact': 1.0, 'graco': 4.0, 'grip': 1.0, 'holder': 1.0, 'release': 1.0, 'buy': 1.0, 'having': 2.0, 'this': 2.0, 'stands': 1.0, 'owned': 2.0, 'you': 2.0, 'shipping': 1.0, 'get': 2.0, 'able': 3.0, 'instructed': 1.0, 'use': 1.0, 'little': 1.0, 'her': 2.0, 'permanently': 1.0, 'lowest': 1.0, 'lap': 1.0, 'by': 1.0, 'infant': 1.0, 'sunshade': 1.0, 'move': 1.0, 'go': 1.0, 'secure': 2.0, 'ahead': 1.0, 'protect': 1.0, 'inside': 1.0, 'bub': 1.0, 'she': 2.0, 'make': 1.0, 'tent': 1.0, 't': 3.0, 'above': 1.0, 'lot': 1.0, 'his': 2.0, 'around': 1.0, 'stow': 1.0, 'had': 2.0, 'harder': 1.0, 'out': 1.0, 's': 1.0, 'straps': 2.0, 'add': 1.0, 'why': 1.0, 'find': 1.0, 'very': 4.0, 'tall': 2.0, 'put': 1.0, 'pictures': 1.0, 'way': 1.0, 'all': 1.0, 'other': 1.0, 'will': 5.0, 'it': 13.0, 'shade': 2.0, 'be': 4.0, 'before': 1.0, 'were': 1.0, 'in': 6.0, 'together': 1.0, 'level': 1.0, 'also': 1.0, 'harness': 1.0, 'did': 1.0, 'top': 1.0, 'toddler': 8.0, 'head': 1.0, 'd': 2.0, 'or': 1.0, '5': 1.0, 'access': 1.0, 'well': 1.0, '5pt': 1.0, 'pain': 1.0, 'purchase': 1.0, 'for': 4.0, 'pieces': 1.0, 'must': 1.0, 'fitted': 1.0, 'held': 1.0, 'basket': 1.0, 'an': 2.0, 'buckle': 1.0, 'reclined': 1.0, 'pros': 1.0, 'than': 1.0, 'bit': 1.0, 'easy': 1.0, 'but': 1.0, 'durable': 1.0, 'holders': 1.0, 'double': 1.0}
Word element => {'on': 1.0, 'rock': 1.0, 'strollers': 1.0, 'we': 1.0, 'other': 1.0, 'better': 1.0, 've': 1.0, 'also': 1.0, 'easy': 1.0, 'that': 1.0, 'unlock': 1.0, 'lock': 1.0, 'had': 1.0, 'to': 2.0, 'overall': 1.0, 'the': 1.0, 'far': 1.0, 'but': 1.0, 'toddler': 1.0, 'stroller': 1.0, 'holds': 1.0, 'loves': 1.0, 'happy': 1.0, 'my': 1.0, 'riding': 1.0, 'so': 1.0, 'open': 1.0, 'very': 1.0, 'grass': 1.0, 'and': 4.0, 'does': 1.0, 'part': 1.0, 'carseat': 1.0, 'fine': 1.0, 's': 1.0, 'a': 1.0, 'close': 1.0, 'little': 1.0, 'this': 1.0, 'with': 1.0, 'it': 1.0, 'clunkie': 1.0}
Word element => {'infant': 1.0, 'toddler': 1.0, 'with': 1.0, 'recommend': 1.0, 'definitely': 1.0, 'sturdy': 1.0, 'anyone': 1.0, 'be': 1.0, 'double': 1.0, 'for': 2.0, 'strap': 1.0, 'this': 1.0, 'hard': 2.0, 'it': 2.0, 'is': 4.0, 'a': 5.0, 'great': 1.0, 'the': 5.0, 'stroller': 2.0, 'diaper': 1.0, 'only': 1.0, 'its': 1.0, 'all': 2.0, 'to': 2.0, 'by': 1.0, 'graco': 1.0, 'and': 2.0, 'very': 3.0, 'negative': 1.0, 'avoided': 1.0, 'basket': 1.0, 'because': 1.0, 'way': 1.0, 'sit': 1.0, 'n': 1.0, 'not': 1.0, 'those': 1.0, 'use': 1.0, 'storage': 1.0, 'my': 1.0, 'lightweight': 1.0, 'underneath': 1.0, 'seats': 1.0, 'simple': 1.0, 'bag': 1.0, 'can': 1.0, 'sitting': 1.0, 'also': 1.0, 'in': 2.0, 'onto': 1.0, 'stand': 1.0, 'handlebars': 1.0, 'of': 1.0, 'easy': 1.0, 'folds': 1.0, 'area': 1.0, 'sure': 1.0, 'things': 1.0}
Word element => {'nice': 1.0, 'for': 1.0, 'safety': 1.0, 'not': 2.0, 'are': 2.0, 'the': 2.0, 'll': 1.0, 'belts': 1.0, 'turn': 1.0, 'secure': 1.0, 'but': 1.0, 'stroller': 1.0, 'do': 1.0, 'and': 1.0, 'wheels': 1.0, 'pushing': 1.0, 'that': 1.0, 'we': 1.0, 'i': 1.0, 'have': 1.0, 'a': 1.0, 'it': 1.0, 'children': 1.0, 'hard': 1.0, 'time': 1.0}
Word element => {'will': 1.0, 'be': 1.0, 'couldn': 1.0, 'because': 1.0, 'with': 1.0, 'use': 3.0, 'very': 1.0, 'not': 2.0, 'of': 2.0, 'sort': 1.0, 'is': 1.0, 'when': 1.0, 'nap': 1.0, 'back': 1.0, 'that': 1.0, 'like': 1.0, 'however': 1.0, 'regular': 1.0, 'in': 3.0, 'sat': 2.0, 'bench': 3.0, '5': 2.0, 'child': 3.0, 'up': 1.0, 'don': 1.0, 'over': 1.0, 'on': 3.0, 'suited': 1.0, 'almost': 2.0, 'way': 3.0, 'sit': 1.0, 'small': 1.0, 'have': 2.0, 'while': 2.0, 'stroller': 1.0, 'decided': 1.0, 'bought': 1.0, 'place': 1.0, 'the': 13.0, 'but': 1.0, 'sitting': 1.0, '2': 1.0, 'purpose': 1.0, 'figured': 1.0, 'another': 1.0, 'my': 3.0, 'this': 1.0, 'walk': 1.0, 'he': 1.0, 'it': 6.0, 'for': 6.0, 'yr': 2.0, 'old': 2.0, 'etc': 1.0, 'i': 3.0, 'seat': 2.0, 'all': 3.0, 'to': 4.0, 'wanted': 1.0, 'doesn': 1.0, 'was': 1.0, 'comfy': 2.0, 'world': 1.0, 's': 1.0, 'go': 1.0, 't': 3.0, 'we': 3.0, 'a': 1.0, 'safe': 1.0, 'trips': 1.0, 'at': 2.0, 'both': 1.0, 'even': 2.0, 'and': 3.0, 'get': 1.0, 'mall': 1.0, 'disney': 1.0, 'would': 1.0, 'son': 1.0, 'still': 2.0, 'baby': 1.0, 'them': 1.0, 'tired': 1.0, 'though': 1.0, 'time': 1.0}
Word element => {'that': 1.0, 'old': 1.0, 'i': 1.0, 'step': 1.0, 'when': 2.0, 'walking': 1.0, 'price': 1.0, 'draw': 1.0, 'few': 1.0, 'me': 2.0, 'and': 1.0, 'for': 2.0, '3yr': 1.0, 'this': 1.0, 'backs': 1.0, 'it': 2.0, 'was': 2.0, 'of': 2.0, 'however': 1.0, 'a': 4.0, 'my': 2.0, 'are': 2.0, 'the': 5.0, 'great': 1.0, 'sits': 1.0, 'works': 2.0, 'good': 1.0, 'her': 1.0, 'at': 1.0, 'back': 2.0, 'but': 1.0, 'ridiculous': 1.0, 'feet': 2.0, 'there': 1.0, 'somehow': 1.0, 'buy': 1.0, 'depressing': 1.0, 'outside': 1.0, 'to': 1.0, 'brakes': 1.0, 'bit': 1.0, 'humbug': 1.0, 'also': 1.0, 'in': 1.0, 'tend': 1.0, 'hit': 1.0, 'them': 1.0, 'canopy': 1.0, 'is': 1.0}
Word element => {'like': 1.0, 'really': 1.0, 'access': 1.0, 'poor': 1.0, 'other': 1.0, 'pops': 1.0, 'before': 1.0, 'are': 1.0, 'between': 1.0, 'squeeze': 1.0, 'next': 1.0, 'impossible': 1.0, 'ride': 1.0, 'basket': 2.0, 'needs': 1.0, 'where': 1.0, 'hang': 1.0, 'bag': 1.0, 'fit': 1.0, 't': 1.0, 'to': 11.0, 'let': 1.0, 'stays': 1.0, '1': 1.0, 'any': 1.0, 'feel': 1.0, 'get': 2.0, 'easy': 2.0, 'make': 1.0, 'on': 1.0, 'do': 1.0, 'put': 1.0, 'or': 1.0, 'need': 1.0, 'if': 2.0, 'vehicle': 1.0, 'for': 3.0, 'in': 5.0, 'sure': 1.0, 'store': 1.0, 'was': 1.0, 'she': 3.0, 'it': 14.0, 'yr': 2.0, 'needed': 1.0, 'back': 1.0, 'strap': 2.0, 'down': 1.0, 'stand': 1.0, 'complaint': 1.0, 'seats': 2.0, 'just': 2.0, 'but': 2.0, '2': 1.0, 'can': 2.0, 'stroller': 3.0, 'hops': 1.0, 'wishes': 1.0, 'myself': 1.0, 'below': 1.0, 'heavier': 1.0, 'place': 2.0, 'older': 2.0, 'this': 1.0, 'i': 13.0, 'younger': 1.0, 'a': 5.0, 'small': 1.0, 'and': 6.0, 'out': 2.0, 'child': 4.0, 'opening': 1.0, 'don': 1.0, 'walk': 1.0, 'my': 3.0, 'may': 1.0, 'me': 3.0, 'not': 2.0, 'cannot': 1.0, 'very': 1.0, 'little': 2.0, 'single': 1.0, 'longer': 1.0, 'the': 15.0, 'of': 1.0, 'enough': 1.0, 'because': 1.0, 'that': 3.0, 'into': 2.0, 'her': 2.0, 'use': 2.0, 'travel': 1.0, 'even': 1.0, 'usually': 1.0, 'only': 2.0, 'one': 1.0, 'than': 3.0, 'huge': 1.0, 'with': 1.0, 'handle': 1.0, 'is': 10.0, 'at': 1.0, 'time': 2.0, 'did': 1.0, 'then': 1.0, 'take': 1.0, 'have': 3.0, 'practice': 1.0, 'old': 2.0, 'run': 1.0, 'you': 2.0, 'push': 1.0, 'things': 1.0, 'though': 1.0, 'sit': 1.0, 'what': 1.0, 'beside': 1.0, 'when': 1.0, 'strollers': 1.0, 'am': 1.0, 'pushing': 1.0, 'diaper': 1.0, 'as': 5.0, 'systems': 1.0, 'open': 1.0, 'over': 1.0, 'hard': 1.0, 'finding': 1.0}
Word element => {'they': 1.0, 'the': 1.0, 'perfectly': 1.0, 'and': 5.0, 'year': 2.0, 'portion': 1.0, 'friends': 1.0, 'strollers': 1.0, 'standing': 1.0, 'excellent': 1.0, 'back': 1.0, 'stroller': 2.0, 'car': 1.0, 'old': 2.0, 'years': 1.0, 'out': 1.0, 'newborn': 1.0, 'in': 1.0, 'go': 1.0, 'a': 4.0, 'is': 2.0, 'i': 2.0, 'two': 3.0, 'have': 2.0, 'perfect': 1.0, 'this': 2.0, 'for': 2.0, 'exact': 1.0, 'seat': 1.0, 'our': 1.0, 'to': 4.0, 'climb': 1.0, 'few': 1.0, 'of': 1.0, 'she': 1.0, 'from': 1.0, 'solution': 1.0, 'wants': 1.0, 'walk': 1.0, 'recommended': 1.0, 'fits': 1.0, 'my': 1.0, 'family': 1.0, 'taking': 1.0, 'whenever': 1.0, 'members': 1.0, 'looking': 1.0, 'everywhere': 1.0}
Word element => {'kids': 1.0, 'love': 3.0, 'it': 5.0, 'neighbors': 1.0, 'loves': 2.0, 'to': 1.0, 'cool': 1.0, 'real': 1.0, 'nice': 1.0, 'more': 1.0, 'want': 1.0, 'wife': 1.0, 'daughter': 1.0, 'grand': 1.0}
Word element => {'parents': 1.0, 'do': 1.0, 'us': 1.0, 'exactly': 1.0, 'highly': 1.0, 'this': 3.0, 'love': 1.0, 'smart': 1.0, 'children': 1.0, 'pop': 1.0, 'both': 2.0, 'they': 1.0, 'easy': 3.0, 'stands': 1.0, 'up': 2.0, 'rides': 1.0, 'old': 2.0, 'child': 2.0, 'year': 2.0, 'my': 4.0, 'purchase': 1.0, 'easier': 1.0, 'roomfor2': 1.0, 'won': 1.0, 'back': 2.0, 'carrier': 1.0, 'stroller': 5.0, '2': 1.0, 'place': 1.0, 'around': 2.0, 'sits': 1.0, 'is': 5.0, 'what': 1.0, 'when': 1.0, 'unless': 1.0, 'am': 1.0, 'helps': 1.0, '5': 1.0, 'under': 1.0, 'sometimes': 2.0, 'on': 1.0, '4': 1.0, 'feature': 1.0, 's': 1.0, 'small': 1.0, 'a': 4.0, 't': 2.0, 'than': 1.0, 'way': 1.0, '1': 1.0, 'tough': 1.0, 'getting': 1.0, 'front': 1.0, 'instructions': 1.0, 'use': 1.0, 'little': 2.0, 'very': 1.0, 'it': 4.0, 'with': 4.0, 'hard': 1.0, 'pretty': 1.0, 'to': 5.0, 'in': 3.0, 'seat': 1.0, 'ride': 1.0, 'manage': 1.0, 'manuever': 2.0, 'graco': 2.0, 'are': 1.0, 'plus': 1.0, 'which': 2.0, 'was': 3.0, '3': 2.0, 'older': 1.0, 'just': 1.0, 'one': 3.0, 'nicely': 1.0, 'riding': 1.0, 'into': 1.0, 'kids': 2.0, 'box': 1.0, 'because': 1.0, 'that': 2.0, 'recommend': 1.0, 'together': 1.0, 'were': 1.0, 'enjoy': 1.0, 'clear': 1.0, 'i': 5.0, 'putting': 1.0, 'be': 1.0, 'metropolis': 1.0, 'out': 1.0, 'the': 10.0, 'of': 2.0, 'condensing': 1.0, 'car': 1.0, 'isn': 1.0, 'so': 1.0, 'able': 1.0, 'for': 2.0, 'new': 1.0, 'many': 1.0, 'folds': 1.0, 'unfortunately': 1.0, 'baby': 1.0, 'seriously': 1.0, 'more': 2.0, 'considering': 1.0, 'and': 6.0, 'paraphenelia': 1.0}
Word element => {'amazing': 1.0, 'longer': 1.0, 'no': 1.0, 'are': 1.0, 'into': 1.0, 'unfolds': 1.0, 'house': 1.0, '2': 1.0, 'moving': 1.0, 'maclaren': 1.0, 'swift': 1.0, 'folded': 2.0, 'needed': 1.0, 'top': 1.0, 'on': 1.0, 'of': 2.0, 'seconds': 1.0, 'buggy': 2.0, 'goes': 1.0, 'so': 1.0, 'up': 2.0, 'folds': 2.0, 'here': 1.0, 'my': 1.0, 'getable': 1.0, 'c4': 1.0, 'shame': 1.0, 'now': 1.0, 'mountain': 1.0, 'the': 1.0, 'without': 1.0, '1': 1.0, 'delivery': 1.0, 'couldn': 1.0, 'compact': 1.0, 'satisfied': 1.0, 'other': 2.0, 'if': 1.0, '9': 1.0, 'move': 1.0, 'available': 1.0, 'parents': 1.0, 'return': 1.0, 'me': 1.0, 'not': 3.0, 'i': 1.0, 'reluctant': 1.0, 'buy': 1.0, 'boot': 1.0, 'old': 2.0, 'expensive': 1.0, 't': 1.0, 'we': 1.0, 'a': 6.0, 's': 1.0, 'k': 1.0, 'was': 1.0, 'as': 1.0, 'our': 1.0, 'to': 5.0, 'from': 2.0, 'little': 1.0, 'citroen': 1.0, 'reading': 1.0, 'u': 2.0, 'item': 1.0, 'this': 2.0, 'it': 4.0, 'its': 2.0, 'do': 1.0, 'only': 1.0, 'they': 1.0, 'reviews': 1.0, 'convinced': 1.0, 'comments': 1.0, 'order': 1.0, 'arrived': 1.0, 'charges': 1.0, 'week': 2.0, 'storage': 1.0, 'difficult': 1.0, 'still': 1.0, 'these': 1.0, 'receiving': 1.0, 'around': 1.0, 'mums': 1.0, 'have': 1.0, 'in': 4.0, '27month': 1.0, 'baby': 1.0}
Word element => {'happy': 1.0, 'easy': 1.0, 'weight': 1.0, 'wonderful': 1.0, 'am': 1.0, 'manuever': 1.0, 'again': 1.0, 'free': 1.0, 'stand': 1.0, 'or': 1.0, 'sit': 1.0, 'able': 1.0, 'excited': 1.0, 'four': 1.0, 'comfy': 1.0, 'so': 3.0, 'was': 3.0, 'long': 1.0, 'mile': 1.0, 'an': 1.0, 'stroller': 4.0, 'house': 1.0, 'for': 1.0, 'grandparents': 1.0, 'today': 1.0, 'help': 1.0, 'a': 1.0, 'we': 1.0, 's': 1.0, 'push': 1.0, 'are': 1.0, 'my': 1.0, 'went': 1.0, '4': 2.0, 'i': 5.0, 'old': 4.0, 'this': 2.0, 'with': 3.0, 'have': 2.0, 'husband': 1.0, 'all': 1.0, 'to': 4.0, 'he': 1.0, 'walk': 1.0, 'received': 1.0, 'together': 1.0, 'light': 1.0, 'just': 1.0, 'because': 1.0, 'almost': 1.0, 'year': 3.0, 'day': 1.0, 'yesterday': 1.0, '5': 1.0, 'me': 1.0, 'be': 2.0, 'fell': 1.0, 'it': 1.0, 'month': 1.0, 'felt': 2.0, 'grandsons': 1.0, 'trapped': 1.0, 'in': 2.0, 'asleep': 1.0, 'the': 6.0, 'and': 6.0, 'too': 1.0, 'gets': 1.0, 'wants': 1.0, 'put': 2.0, 'carried': 1.0, 'both': 1.0, 'baby': 1.0, 'tired': 1.0, 'them': 1.0}
Word element => {'s': 1.0, 'carrier': 1.0, 'grandson': 1.0, 'stroller': 1.0, 'the': 1.0, 'for': 1.0, 'in': 1.0, 'works': 1.0, 'great': 1.0, 'and': 1.0, 'as': 1.0, 'want': 1.0, '2': 1.0, 'yr': 1.0, 'newborn': 1.0, 'place': 1.0, 'to': 1.0, 'old': 1.0, 'sit': 1.0, 'does': 1.0, 'not': 1.0}
Word element => {'definitely': 1.0, 'otherwise': 1.0, 'stayed': 1.0, 'wish': 1.0, 'closed': 2.0, 'keeps': 1.0, 'do': 1.0, 'latch': 1.0, 'size': 1.0, 'like': 3.0, 'difficult': 1.0, 'really': 1.0, 'but': 1.0, 'isn': 1.0, 'items': 2.0, 'down': 2.0, 'them': 1.0, 'pull': 1.0, 'feels': 1.0, 'allow': 1.0, 'somewhat': 1.0, 'basket': 1.0, 's': 1.0, 'sides': 1.0, 'storage': 1.0, 'under': 1.0, 'into': 2.0, 'space': 1.0, 'room': 3.0, 'lots': 1.0, 'than': 1.0, '2011': 1.0, 'my': 2.0, 'volkswagen': 1.0, 'fits': 2.0, 'and': 7.0, 'less': 1.0, 'up': 2.0, 'takes': 1.0, 'the': 16.0, 'of': 7.0, 'folded': 1.0, 'when': 1.0, 'for': 3.0, 'actually': 1.0, 't': 2.0, 'spare': 1.0, 'fit': 3.0, '12': 1.0, 'golf': 1.0, 'nothing': 1.0, 'back': 2.0, 'this': 4.0, 'accepted': 1.0, 'well': 1.0, 'i': 8.0, 'here': 1.0, 'folds': 1.0, 'alano': 2.0, 'get': 2.0, 'can': 2.0, 'dimensions': 1.0, 'so': 1.0, 'to': 6.0, 'stroller': 10.0, 'our': 3.0, 'in': 5.0, 'seat': 3.0, 'now': 1.0, 'standing': 1.0, 'inches': 1.0, 'single': 1.0, 'little': 2.0, 'read': 1.0, 'easily': 1.0, 'everywhere': 1.0, 'that': 8.0, 'are': 2.0, 'looked': 1.0, 'it': 5.0, 'they': 1.0, 'double': 1.0, '36': 1.0, 'x': 2.0, 'about': 1.0, '21': 1.0, 'graco': 2.0, 'we': 5.0, 'easiest': 1.0, 'could': 1.0, 'compact': 1.0, 'also': 1.0, 'would': 2.0, 'solid': 1.0, 'yet': 1.0, 'he': 2.0, 'fold': 1.0, 'a': 7.0, 'small': 1.0, 'enough': 1.0, 'complain': 1.0, 'needed': 1.0, 'squished': 1.0, 'own': 2.0, 'off': 1.0, 'again': 1.0, 'car': 3.0, 'handle': 1.0, 'attaching': 1.0, 'is': 5.0, 'purchase': 1.0, 'only': 1.0, 'lot': 2.0, 'one': 1.0, 'bill': 1.0, 'elastic': 1.0, 'front': 1.0, 'there': 4.0, 'toddler': 2.0, 'found': 2.0, 'however': 1.0, 'even': 1.0, 'still': 3.0, 'if': 1.0, 'works': 1.0, 'hop': 1.0, 'twist': 1.0, 'very': 2.0, 'being': 1.0, 'with': 3.0, 'plenty': 1.0, 'you': 1.0, 'complaints': 1.0, 'able': 2.0, 'on': 1.0, 'stuff': 3.0, 'ease': 1.0, 'not': 3.0}
Word element => {'squeeze': 1.0, 'side': 1.0, 'elastic': 1.0, 'pull': 1.0, 'of': 1.0, 'out': 1.0, 'items': 2.0, 'easy': 1.0, 'get': 1.0, 'shade': 1.0, 'stroller': 1.0, 'almost': 1.0, 'the': 11.0, 'in': 6.0, 'also': 1.0, 'long': 1.0, 'jump': 1.0, 'it': 4.0, 'this': 1.0, 'even': 1.0, 'wouldn': 1.0, 'older': 1.0, 'otherwise': 1.0, 'i': 1.0, 'on': 1.0, 'strolls': 1.0, 'doesn': 1.0, 'recommend': 1.0, 'you': 2.0, 's': 1.0, 't': 2.0, 'a': 1.0, 'use': 1.0, 'front': 1.0, 'lightweight': 1.0, 'my': 1.0, 'if': 1.0, 'looking': 1.0, 'protect': 1.0, 'entire': 1.0, 'child': 2.0, 'to': 5.0, 'seat': 2.0, 'take': 1.0, 'fair': 1.0, 'protects': 1.0, 'very': 2.0, 'either': 1.0, 're': 1.0, 'legs': 1.0, 'or': 2.0, 'let': 1.0, 'sun': 2.0, 'head': 1.0, 'alone': 1.0, 'storage': 1.0, 'bottom': 1.0, 'is': 1.0, 'have': 1.0, 'small': 1.0, 'and': 4.0, 'impossible': 1.0}
Word element => {'share': 1.0, 'six': 1.0, 'know': 1.0, 'low': 1.0, 'flat': 1.0, 'backyard': 1.0, 'ran': 1.0, 'allow': 1.0, 'cushioned': 1.0, 'prefers': 1.0, 'tolerates': 1.0, 'loves': 2.0, 'way': 1.0, 'all': 2.0, 'important': 1.0, 'platform': 1.0, '3': 1.0, 'only': 1.0, 'without': 1.0, 'small': 2.0, 'already': 1.0, 'played': 1.0, 'run': 1.0, 'milk': 1.0, 'recline': 1.0, 'emergency': 1.0, 'pulled': 1.0, 'sides': 2.0, 'has': 1.0, 'problems': 2.0, 'any': 3.0, 'stuffed': 1.0, 'overly': 1.0, 'isn': 1.0, 'roomy': 1.0, 'underneath': 1.0, 'an': 1.0, 'basket': 2.0, 'months': 1.0, 'update': 1.0, 'storage': 1.0, 'ok': 1.0, 'use': 2.0, 'she': 3.0, 'make': 1.0, 'wheels': 1.0, 'nice': 2.0, 'front': 2.0, 'what': 1.0, 'into': 1.0, 'considering': 1.0, 'more': 1.0, 'may': 2.0, 'me': 1.0, 'get': 1.0, 'able': 5.0, 'choice': 1.0, 'fold': 2.0, 'medium': 1.0, 'love': 2.0, 'did': 2.0, 'kind': 1.0, 'not': 4.0, 'diaper': 2.0, 'sized': 1.0, 'up': 5.0, '7': 2.0, 'help': 2.0, 'beat': 1.0, 't': 5.0, 'didn': 2.0, 'previous': 1.0, 'care': 1.0, 'good': 1.0, 'made': 1.0, 'how': 2.0, 'around': 3.0, 'say': 1.0, 'seam': 1.0, 'after': 2.0, 'tray': 1.0, 'near': 1.0, 'items': 1.0, 'on': 7.0, 'canopy': 1.0, 'he': 2.0, 'looked': 1.0, 'hard': 4.0, 'priced': 1.0, 'grassy': 1.0, 'work': 1.0, 'or': 3.0, 'would': 1.0, 'sliding': 1.0, 'because': 2.0, 'that': 10.0, 'the': 31.0, 'unfold': 2.0, 'while': 2.0, 've': 1.0, 'used': 1.0, 'local': 1.0, 'ruled': 1.0, 'month': 2.0, 'same': 1.0, 'were': 3.0, 'lot': 4.0, 'step': 1.0, 'held': 2.0, 'happy': 1.0, 'stroller': 4.0, 'year': 4.0, 'try': 1.0, 'price': 1.0, 'ripped': 1.0, 'i': 21.0, 'well': 2.0, 'coming': 1.0, 'right': 1.0, 'to': 25.0, 'store': 3.0, 'decided': 2.0, 'resale': 1.0, '10': 1.0, 'definitely': 1.0, 'sidewalk': 1.0, 'parent': 1.0, 'be': 5.0, 'it': 29.0, 'but': 4.0, 'myself': 2.0, 'longer': 1.0, 'looking': 2.0, 'abused': 1.0, 'away': 1.0, 'might': 1.0, 'out': 5.0, 'nap': 1.0, 'bag': 2.0, 'a': 18.0, 'go': 2.0, 'gave': 1.0, 'joovy': 4.0, 'grass': 1.0, 'with': 8.0, 'smooth': 1.0, 'graco': 5.0, 'put': 2.0, 'roomfor2': 2.0, 'wanted': 1.0, 'also': 4.0, 'based': 1.0, 'together': 1.0, 'in': 8.0, 'seat': 2.0, 'owners': 1.0, 'caboose': 1.0, 'reading': 1.0, 'll': 3.0, 'since': 2.0, 'at': 2.0, 'appletree': 1.0, 'baby': 2.0, 'have': 7.0, 'steers': 1.0, 'handle': 1.0, 'people': 1.0, 'house': 1.0, 'trend': 2.0, 'reviews': 2.0, 'bad': 1.0, 'we': 4.0, 'like': 1.0, 'fine': 2.0, 'delivery': 1.0, 'they': 1.0, 'prime': 1.0, 'seem': 1.0, 'very': 3.0, 'even': 1.0, 'of': 8.0, 'old': 6.0, 'ultimately': 1.0, 'been': 1.0, 'went': 1.0, 'stand': 1.0, 'negative': 1.0, 'really': 2.0, 'ride': 1.0, '1st': 1.0, 'mainly': 1.0, 'my': 8.0, 'issues': 2.0, 'for': 5.0, 'stylish': 1.0, 'there': 1.0, 'give': 1.0, 'who': 1.0, 'husband': 2.0, 'purchased': 2.0, 'points': 1.0, 'wheel': 1.0, 'similar': 1.0, 'parts': 1.0, 'off': 1.0, 'see': 1.0, 'bench': 1.0, 'took': 1.0, 'm': 1.0, 's': 5.0, 'doesn': 2.0, 'getting': 1.0, 'lock': 2.0, 'lack': 1.0, 'seemed': 2.0, 'comes': 1.0, 'steering': 2.0, 'tight': 1.0, 'enough': 2.0, 'stay': 1.0, '5': 1.0, 'grocery': 1.0, 'one': 1.0, 'got': 1.0, 'this': 1.0, 'few': 1.0, 'week': 1.0, 'than': 2.0, 'quick': 1.0, 'am': 1.0, 'strollers': 1.0, 'so': 4.0, 'is': 4.0, 'can': 3.0, 'steer': 1.0, 'busy': 1.0, 'about': 3.0, 'elastic': 1.0, 'control': 1.0, 'minutes': 1.0, 'joy': 1.0, 'live': 1.0, 'bungalow': 1.0, 'most': 2.0, 'space': 1.0, 'no': 1.0, 'problem': 1.0, 'stores': 1.0, '2': 4.0, 'surfaces': 2.0, 'easy': 1.0, 'folded': 1.0, 'holds': 1.0, 'size': 1.0, 'rest': 1.0, 'safety': 1.0, 'sit': 1.0, 'less': 1.0, 'as': 2.0, 'easier': 1.0, 'needed': 1.0, 'both': 1.0, 'travel': 1.0, 'walking': 1.0, 'either': 1.0, 'do': 1.0, 'system': 1.0, 'shipped': 1.0, 'taken': 1.0, 'walks': 1.0, 'her': 1.0, 'little': 3.0, 'tried': 1.0, 'and': 22.0, 'runs': 1.0, 'just': 2.0, 'was': 11.0, 'ergonomic': 1.0, 'rocky': 2.0}
Word element => {'forget': 1.0, 'ever': 1.0, 'have': 1.0, 'along': 1.0, 'we': 2.0, 'stroller': 2.0, 'especially': 1.0, 'and': 1.0, 'me': 1.0, 'best': 1.0, 'our': 1.0, 'that': 1.0, 't': 1.0, 'the': 2.0, 'my': 1.0, 'is': 1.0, 'take': 2.0, 'this': 1.0, 'it': 1.0, 'everywhere': 1.0, 'go': 1.0, 'don': 1.0, 'to': 1.0, 'husband': 1.0, 'family': 1.0, 'keeps': 1.0, 'reminding': 1.0}
Word element => {'purchased': 1.0, 'glad': 1.0, 'outings': 1.0, 'other': 1.0, 'on': 1.0, 'trips': 1.0, 'lot': 1.0, 'us': 1.0, 'for': 1.0, 'big': 1.0, 'but': 1.0, 'so': 1.0, 'bit': 1.0, 'difficult': 1.0, 'storage': 1.0, 'only': 1.0, 'old': 1.0, 'name': 1.0, 'store': 1.0, 'compact': 1.0, 'from': 1.0, 'year': 1.0, 'of': 2.0, '34': 4.0, 'times': 1.0, 'easily': 1.0, 'deal': 1.0, 'the': 6.0, 'sits': 1.0, 'this': 4.0, 'it': 1.0, 'shopping': 1.0, 'couple': 1.0, 'and': 4.0, 'is': 2.0, 'locally': 1.0, 'to': 1.0, 'seat': 1.0, 'not': 2.0, 'track': 1.0, 'complaint': 1.0, 'down': 2.0, 'i': 1.0, '4': 1.0, 'thing': 1.0, 'despite': 1.0, 'ordering': 1.0, 'baby': 2.0, 'special': 1.0, 'back': 1.0, 'carrier': 1.0, 'area': 1.0, 'folds': 1.0, 'small': 3.0, 'really': 1.0, 'that': 2.0, 'into': 1.0, 'won': 1.0, 'trunk': 1.0, 'fits': 1.0, 'my': 1.0, 'car': 1.0, 's': 1.0, 'could': 1.0, 't': 1.0, 'a': 5.0, 'we': 3.0, 'front': 1.0, 'use': 3.0, 'in': 2.0, 'rides': 1.0}
Word element => {'also': 1.0, 'here': 1.0, 'sent': 1.0, 'part': 1.0, 'after': 1.0, 'australia': 1.0, 'hood': 1.0, 'extremely': 1.0, 'the': 4.0, 'broke': 1.0, 'don': 1.0, 'downfall': 1.0, 'contacted': 1.0, 'manoeuvre': 1.0, 'using': 1.0, 'it': 2.0, 'with': 1.0, 'only': 1.0, 'a': 1.0, 't': 1.0, 's': 1.0, 'front': 1.0, 'canopy': 1.0, 'happy': 1.0, 'states': 1.0, 'for': 1.0, 'product': 1.0, 'this': 1.0, '1week': 1.0, 'very': 1.0, 'to': 1.0, 'outside': 1.0, 'replacement': 2.0, 'is': 1.0, 'pram': 1.0, 'and': 4.0, 'get': 1.0, 'easy': 1.0, 'of': 2.0, 'i': 4.0, 'supplier': 1.0, 'they': 1.0, 'ship': 1.0, 'parts': 1.0, 'in': 1.0, 'live': 1.0, 'disappointed': 1.0, 'im': 1.0, 'm': 1.0, 'purchase': 1.0, 'can': 1.0, 'but': 1.0, 'not': 1.0}
Word element => {'aveo': 1.0, 'chevy': 1.0, 'of': 1.0, 'trunk': 1.0, 'tiny': 1.0, 'small': 1.0, 'mall': 1.0, 'along': 1.0, '3': 2.0, 'front': 1.0, 'first': 1.0, 'this': 1.0, 'with': 1.0, 'old': 2.0, 'months': 1.0, '5': 1.0, 'we': 2.0, 'a': 1.0, 'go': 1.0, 'in': 1.0, 'fit': 1.0, 'for': 1.0, 'love': 1.0, 'using': 1.0, 'the': 3.0, 'anywhere': 1.0, 'two': 1.0, 'space': 1.0, 'is': 2.0, 'bringing': 1.0, 'supportive': 1.0, 'into': 1.0, 'that': 1.0, 'just': 1.0, 'started': 1.0, 'stroller': 1.0, 'enough': 3.0, 'it': 4.0, 'month': 1.0, 'and': 2.0, 'when': 1.0, 'boys': 1.0, 'gives': 1.0, 'year': 1.0, 'best': 1.0, 'never': 1.0, 'our': 1.0, 'to': 2.0, 'park': 1.0, 'or': 2.0, 'out': 1.0, 'my': 3.0, 'aspect': 1.0, 'folds': 1.0, 'freedom': 1.0, 'up': 1.0}
Word element => {'really': 3.0, 'easy': 2.0, 'girls': 1.0, 'is': 2.0, 'around': 1.0, 'good': 1.0, 'i': 3.0, 'old': 2.0, 'to': 3.0, 'bough': 1.0, '3': 1.0, 'girl': 1.0, 'year': 1.0, 'very': 1.0, 'for': 1.0, 'love': 1.0, 'perfect': 1.0, 'this': 2.0, 'month': 1.0, 'it': 3.0, 'my': 3.0, 'baby': 1.0, 'about': 1.0, 'too': 1.0, 'and': 4.0, 'getting': 1.0, '7': 1.0, 'its': 2.0, 'works': 1.0, 'both': 1.0, 'before': 1.0, 'move': 1.0, 'up': 1.0, 'fold': 1.0, 'seem': 1.0, 'double': 1.0, 'be': 1.0, 'also': 1.0, 'thougth': 1.0, 'that': 1.0, 'not': 1.0, 'huge': 1.0, 'because': 1.0, 'just': 2.0, 'a': 2.0, 'stroller': 3.0, 'but': 1.0, 'big': 1.0, 'comfortable': 1.0, 'seemed': 1.0}
Word element => {'fold': 1.0, 'be': 1.0, 'would': 1.0, 'though': 1.0, 'does': 1.0, 'than': 1.0, 'also': 1.0, 'baby': 1.0, 'her': 1.0, 'carseat': 1.0, 'watch': 1.0, 'if': 1.0, 'stand': 1.0, 'not': 1.0, 'i': 2.0, 'and': 1.0, 'issue': 1.0, 'little': 1.0, 'very': 1.0, 'year': 1.0, 'easily': 1.0, 'am': 1.0, 'while': 1.0, 'shop': 1.0, 'to': 2.0, 'our': 1.0, 'happy': 1.0, 'stroller': 1.0, 'back': 1.0, 'an': 1.0, 'this': 1.0, 'with': 1.0, 'it': 3.0, 'but': 2.0, '2': 1.0, 'heavier': 1.0, 'the': 4.0, 'a': 1.0, 'we': 1.0, 't': 1.0, 'there': 1.0, 'is': 3.0, 'much': 1.0, '5': 1.0, 'room': 1.0, 'brother': 1.0, 'for': 2.0, 'up': 1.0, 'child': 1.0, 'on': 2.0, 'sit': 1.0, 'attached': 1.0, 'us': 1.0, 'front': 1.0, 'old': 1.0, 'hasn': 1.0, 'that': 1.0, 'loves': 1.0, 'been': 1.0}
Word element => {'look': 1.0, 'on': 1.0, 'like': 1.0, 'much': 1.0, 'in': 1.0, 's': 1.0, 'he': 1.0, 'it': 3.0, 'without': 1.0, 'kids': 4.0, 'carseat': 2.0, 'baby': 1.0, 'my': 2.0, 'the': 2.0, 'standing': 2.0, 'or': 2.0, 'good': 2.0, 'really': 1.0, 'seat': 1.0, 'for': 5.0, 'love': 1.0, 'one': 2.0, 'seating': 1.0, 'and': 2.0, 'two': 2.0, 'around': 1.0, 'especially': 1.0, 'stroller': 1.0, 'back': 1.0, 'best': 1.0, 'very': 1.0, 'son': 1.0}
Word element => {'you': 1.0, 'practical': 1.0, 'it': 4.0, 'disassembled': 1.0, 'can': 1.0, 'on': 1.0, 'is': 1.0, 'babys': 1.0, 'storage': 1.0, 'when': 1.0, 'i': 1.0, 'like': 1.0, 'access': 1.0, 'are': 1.0, 'the': 1.0, 'my': 1.0, 'impossible': 1.0, 'look': 1.0, 'to': 2.0, 'its': 1.0, 'have': 1.0, 'make': 1.0, 'fit': 1.0, 'so': 1.0, 'in': 1.0, 'car': 1.0, 'not': 1.0, 'as': 2.0}
Word element => {'on': 1.0, 'than': 1.0, 'up': 1.0, 'of': 1.0, 'sturdy': 1.0, 'big': 1.0, 'more': 1.0, 'needed': 1.0, 'etc': 1.0, 'what': 1.0, 'stroller': 2.0, 'curbs': 1.0, 'single': 1.0, 'is': 4.0, 'we': 1.0, 'made': 1.0, 'out': 1.0, 'it': 2.0, 'this': 1.0, 'however': 1.0, 'materials': 1.0, 'a': 1.0, 'maneuver': 1.0, 'specially': 1.0, 'and': 1.0, 'obviously': 1.0, 'going': 1.0, 'when': 1.0, 'too': 1.0, 'just': 1.0, 'not': 1.0, 'difficult': 1.0, 'to': 1.0}
Word element => {'isn': 1.0, 'safety': 1.0, 'out': 1.0, 'but': 1.0, 'car': 1.0, 'if': 1.0, 'been': 1.0, 'back': 1.0, 'top': 1.0, 'by': 1.0, 'could': 1.0, 't': 2.0, 'a': 2.0, 'head': 2.0, 'on': 3.0, '3': 2.0, 'put': 1.0, 'felt': 1.0, 'month': 2.0, 'underneath': 1.0, 'my': 6.0, 'position': 1.0, 'completely': 1.0, 'handle': 1.0, 'is': 2.0, 'issue': 1.0, 'collapsed': 1.0, 'especially': 1.0, 'excited': 1.0, 'tray': 1.0, 'one': 1.0, 'rear': 1.0, 'myself': 1.0, 'locked': 1.0, 'almost': 1.0, 'year': 3.0, 'rover': 1.0, 'closed': 1.0, 'and': 7.0, 'were': 1.0, 'huge': 1.0, 'way': 1.0, '5': 2.0, 'scrapes': 1.0, 'them': 1.0, 'facing': 1.0, 'just': 2.0, 'serious': 1.0, 'storage': 1.0, 'strapped': 1.0, 'old': 5.0, 'i': 4.0, 'incident': 1.0, 'fan': 1.0, 'fits': 1.0, 'all': 3.0, 'to': 2.0, 'open': 1.0, 'taller': 1.0, 'suddenly': 1.0, 'scratched': 1.0, 'secure': 1.0, 'front': 1.0, 'pinning': 1.0, 'they': 1.0, 'have': 2.0, 'stroller': 5.0, 'had': 2.0, 'was': 4.0, 'done': 1.0, 'damage': 1.0, 'terrified': 1.0, 'into': 3.0, 'three': 1.0, 'space': 1.0, 'practical': 1.0, 'even': 1.0, 'hit': 1.0, 'it': 6.0, 'already': 1.0, 'she': 1.0, 'baby': 1.0, 'others': 1.0, 'use': 1.0, 'her': 1.0, 'several': 1.0, 'whole': 1.0, 'land': 1.0, 'scary': 1.0, 'very': 2.0, 'cannot': 2.0, 'get': 2.0, 'seat': 2.0, 'in': 4.0, 'said': 1.0, 'the': 15.0, 'of': 3.0, 'this': 2.0, 'kids': 1.0, 'wasn': 1.0, 'as': 1.0, 'heavy': 1.0, 'barely': 1.0, 'you': 1.0, 'trunk': 1.0, 'really': 1.0, 'with': 2.0, '2': 1.0}
Word element => {'popular': 1.0, 'must': 1.0, 'amazon': 1.0, 'anywhere': 1.0, 'stock': 1.0, 'finding': 1.0, 'arrived': 1.0, 'except': 1.0, 'trouble': 1.0, 'months': 1.0, 'bought': 2.0, 'and': 6.0, 'years': 1.0, 'previously': 1.0, 'double': 2.0, 'could': 1.0, 't': 1.0, 'we': 1.0, 'not': 1.0, 'stay': 1.0, 'product': 1.0, 'year': 1.0, 'child': 1.0, 'realized': 1.0, 'old': 1.0, 'is': 4.0, 'more': 1.0, 'second': 1.0, 'my': 4.0, 'using': 1.0, 'back': 1.0, 'carrier': 2.0, 'but': 1.0, 'replace': 1.0, 'use': 1.0, 'son': 2.0, '3': 3.0, 'put': 2.0, 'daughter': 1.0, 'together': 1.0, 'this': 3.0, 'kids': 2.0, 'with': 3.0, 'had': 3.0, 'wanted': 2.0, 'rcommend': 1.0, 'to': 6.0, 'stroller': 5.0, 'our': 1.0, 'in': 4.0, 'seat': 1.0, 'now': 1.0, 'away': 1.0, 'can': 1.0, 'so': 3.0, 'am': 1.0, 'when': 1.0, 'graco': 3.0, 'manuever': 1.0, 'i': 8.0, 'the': 10.0, 'heavier': 1.0, 'infant': 2.0, 'car': 1.0, 'that': 3.0, 'was': 4.0, 'into': 1.0, 'riding': 2.0, 'underfoot': 1.0, 'has': 1.0, 'baby': 3.0, 'many': 1.0, 'for': 1.0, 'he': 1.0, 'love': 1.0, 'overly': 1.0, 'since': 1.0, 'bulkly': 1.0, 'it': 7.0, 'be': 2.0, 'yesterday': 1.0, 'definately': 1.0, 'able': 1.0, 'a': 2.0, 'small': 1.0, 'have': 1.0, 'took': 1.0, 'out': 1.0, 'right': 1.0, 'up': 1.0, 'affordable': 1.0, 'takes': 1.0, 'easy': 1.0, 'steer': 1.0, 'or': 1.0, 'attach': 1.0, 'quickly': 2.0, 'options': 1.0, 'only': 1.0, '2': 1.0, 'thing': 1.0, 'lift': 1.0, 'never': 1.0, 'before': 1.0, 'once': 1.0, 'room': 1.0, 'would': 1.0}
Word element => {'room': 1.0, 'there': 1.0, 'older': 1.0, 'get': 1.0, 'kids': 1.0, 'neck': 1.0, 'head': 1.0, 'bumping': 1.0, 'bit': 1.0, 'a': 1.0, 'may': 1.0, 'some': 1.0, 'rear': 1.0, 'toddler': 1.0, 'on': 1.0, 'sit': 1.0, 'also': 1.0, 'will': 2.0, 'top': 2.0, 'up': 1.0, 'pushing': 1.0, 'close': 1.0, 'person': 1.0, 'graco': 1.0, 'not': 3.0, 'as': 2.0, 'to': 3.0, 'seat': 3.0, 'sunshades': 1.0, 'of': 2.0, 'nicely': 2.0, 'heavy': 1.0, 'quite': 1.0, 'forward': 1.0, 'configurations': 1.0, 'and': 4.0, 'very': 2.0, 'is': 6.0, 'has': 1.0, 'seating': 1.0, 'fit': 1.0, 'for': 1.0, 'two': 1.0, 'lean': 1.0, 'children': 2.0, 'nor': 1.0, 'it': 5.0, 'do': 1.0, 'only': 1.0, 'with': 1.0, 'multiple': 1.0, 'be': 1.0, 'plenty': 1.0, 'lock': 1.0, 'aware': 1.0, 'portion': 1.0, 'avoid': 1.0, 'that': 1.0, 'stroller': 2.0, 'in': 6.0, 'the': 13.0, 'place': 2.0, 'their': 1.0, 'please': 1.0, 'an': 1.0, 'note': 1.0, 'seats': 1.0, 'compatible': 1.0, 'if': 1.0, 'when': 2.0, 'you': 1.0, 'rolls': 1.0, 'have': 2.0, '35': 1.0, 'suffice': 1.0, 'long': 1.0, 'series': 1.0, 'infant': 1.0, 'car': 2.0, 'front': 2.0, 'part': 2.0, 'closest': 1.0}
Word element => {'so': 1.0, 'in': 1.0, 'smoothly': 1.0, 'is': 3.0, 'hard': 1.0, 'looks': 1.0, 'it': 7.0, 'children': 1.0, 'me': 1.0, 'get': 1.0, 'quite': 1.0, 'assembling': 1.0, 'either': 1.0, 'turns': 1.0, 'the': 1.0, 'stroller': 2.0, 'an': 1.0, '2': 1.0, 'but': 1.0, 'and': 1.0, 'too': 1.0, 'this': 1.0, 'kids': 1.0, 'wasn': 1.0, 'out': 1.0, 'how': 1.0, 'infant': 1.0, 'car': 1.0, 'to': 3.0, 'all': 1.0, 'seat': 1.0, 'though': 1.0, 'complicated': 1.0, 'i': 1.0, 'recommend': 1.0, 'remember': 1.0, 'item': 1.0, 'my': 1.0, 'find': 1.0, 'figure': 1.0, 'little': 2.0, 'very': 1.0, 'big': 1.0, 'nice': 2.0, 'comfortable': 1.0, 'for': 1.0, 'a': 3.0, 't': 1.0, 's': 1.0}
Word element => {'buy': 1.0, 'never': 1.0, 'know': 1.0, 'now': 1.0, 'just': 1.0, 'will': 2.0, 'on': 1.0, 'friend': 2.0, 'from': 1.0, 'borrowed': 1.0, 'at': 2.0, 'it': 5.0, 'fortunately': 1.0, 'car': 1.0, 'way': 1.0, 'my': 2.0, 'there': 1.0, '6': 1.0, 'was': 1.0, 'in': 2.0, 'old': 1.0, 'no': 1.0, 'spend': 1.0, '1': 2.0, 'use': 1.0, 'front': 1.0, 'horrible': 1.0, 'and': 5.0, 'is': 1.0, 'money': 1.0, '2': 1.0, 'the': 5.0, 'we': 2.0, 's': 1.0, 'a': 4.0, 't': 3.0, 'stroller': 1.0, 'this': 1.0, 'didn': 1.0, 'wouldn': 1.0, 'attach': 1.0, 'children': 1.0, 'have': 1.0, 'able': 1.0, 'daughter': 1.0, 'year': 1.0, 'least': 1.0, 'any': 1.0, 'all': 1.0, 'to': 6.0, 'as': 1.0, 'seat': 1.0, 'give': 1.0, 'not': 1.0, 'back': 1.0, 'top': 1.0, 'so': 2.0, 'i': 5.0, 'attempted': 1.0, 'her': 2.0, 'cover': 2.0, 'face': 1.0, 'under': 1.0, 'months': 1.0, 'strap': 1.0, 'are': 1.0, 'be': 1.0, 'sun': 1.0, 'newborn': 2.0, 'wasn': 1.0}
Word element => {'folds': 1.0, 'how': 1.0, 'and': 1.0, 're': 1.0, 'the': 2.0, 'of': 1.0, 'large': 1.0, 'variety': 1.0, 'in': 3.0, 'expect': 1.0, 'reengineer': 1.0, 'two': 3.0, 'excellent': 1.0, 'huge': 1.0, 'to': 3.0, 'seat': 1.0, 'it': 5.0, 'hard': 1.0, 'with': 2.0, 'is': 1.0, 'suv': 1.0, 'then': 1.0, 'stroller': 2.0, 'but': 2.0, 'think': 1.0, 'put': 1.0, 'back': 1.0, 'even': 1.0, 'down': 1.0, 'up': 1.0, 'don': 1.0, 'baby': 1.0, 'fit': 3.0, 'if': 1.0, 'unless': 1.0, 'folded': 1.0, 'you': 2.0, 't': 1.0, 'could': 1.0, 'a': 2.0, 's': 1.0, 'very': 1.0, 'kids': 1.0, 'considering': 1.0, 'car': 2.0, 'seats': 2.0, 'would': 1.0, 'mean': 1.0, 'automatically': 1.0, 'have': 1.0, 'babies': 1.0, 'they': 1.0, 'need': 1.0}
Word element => {'awesome': 1.0, 'selling': 1.0, 'was': 1.0, 'got': 1.0, 'still': 1.0, 'if': 1.0, 'asked': 1.0, 'go': 1.0, 'stopped': 1.0, 'brand': 1.0, 'class': 1.0, 'its': 1.0, 'leg': 1.0, 'them': 1.0, 'has': 1.0, 'having': 1.0, 'before': 1.0, 'double': 1.0, 'dime': 1.0, 'turns': 1.0, 'others': 1.0, 'many': 1.0, 'baby': 1.0, 'stop': 1.0, 'on': 3.0, 'had': 2.0, 'kick': 1.0, 'definitely': 1.0, 'ground': 1.0, 'enough': 1.0, 'his': 2.0, 'you': 3.0, 'things': 1.0, 'grab': 1.0, 'he': 3.0, 'kiddo': 1.0, 'much': 1.0, 'put': 2.0, 'facing': 2.0, 'comfortable': 1.0, 'give': 1.0, 'perfectly': 1.0, 'seven': 1.0, 'standing': 1.0, 'strollers': 1.0, 'score': 1.0, 'am': 1.0, 'twins': 2.0, 'feet': 1.0, 'well': 2.0, 'i': 7.0, 'two': 3.0, 'frequently': 1.0, 'carrier': 1.0, 'infant': 3.0, 'parking': 1.0, 'something': 1.0, 'snap': 1.0, 'see': 1.0, 'off': 3.0, 'giving': 1.0, 's': 6.0, 'high': 1.0, 'to': 11.0, 'in': 6.0, 'seat': 4.0, 'as': 2.0, 'most': 1.0, 'back': 2.0, 'navigate': 1.0, 'three': 1.0, 'who': 3.0, 'be': 1.0, 'extra': 1.0, 'trying': 1.0, 'a': 9.0, 'small': 1.0, 've': 1.0, 'shelves': 2.0, 'stand': 2.0, 'not': 1.0, 'n': 2.0, 'adaption': 1.0, 'but': 2.0, 'four': 1.0, 'also': 2.0, 'compact': 1.0, 'easy': 2.0, 'it': 10.0, 'this': 3.0, 'functional': 1.0, 'kids': 1.0, 'either': 1.0, 'properly': 1.0, 'from': 1.0, 'they': 1.0, 'sturdy': 1.0, 'price': 1.0, 'year': 3.0, 'are': 1.0, 'cute': 1.0, 'very': 2.0, 'assemble': 1.0, 't': 2.0, 'fit': 1.0, 'finger': 1.0, 'of': 2.0, 'the': 11.0, 'me': 2.0, 'my': 5.0, 'with': 2.0, 'five': 2.0, 'rear': 1.0, 'lot': 1.0, 'too': 1.0, 'one': 3.0, 'get': 2.0, 'legs': 1.0, 'months': 1.0, 'all': 2.0, 'an': 1.0, 'years': 1.0, 'old': 5.0, 'run': 1.0, 'what': 1.0, 'sit': 3.0, 'goal': 1.0, 'preschoolers': 1.0, 'make': 2.0, 're': 1.0, 'where': 3.0, 'moments': 1.0, 'wheels': 1.0, 'grief': 1.0, 'their': 1.0, 'life': 1.0, 'how': 2.0, 'stroller': 3.0, 'shopping': 1.0, 'difficult': 1.0, 'can': 5.0, 'lightweight': 1.0, 'so': 2.0, 'find': 1.0, 'everywhere': 1.0, 'easily': 1.0, 'that': 4.0, 'because': 1.0, 'switch': 1.0, 'favorite': 1.0, 'up': 5.0, 'means': 1.0, 'disassemble': 1.0, 'will': 1.0, 'acting': 1.0, 'at': 1.0, 'transform': 1.0, 'notice': 1.0, 'is': 6.0, 'and': 8.0, 'godsend': 1.0, 'accommodates': 1.0, 'supervision': 1.0, 'seats': 1.0, 'graco': 1.0, 'rocks': 1.0, 'front': 3.0, 'or': 3.0, 'comfortably': 1.0}
Word element => {'7th': 1.0, 'stroller': 2.0, 'fold': 1.0, 'beautifully': 1.0, 'easy': 1.0, 'have': 2.0, 'my': 1.0, 'wow': 1.0, 'the': 1.0, 'to': 1.0, 'had': 1.0, '7': 1.0, 'this': 1.0, 'children': 1.0, 'it': 2.0, 'i': 2.0, 'very': 1.0, 'best': 1.0, 'is': 2.0, 'many': 1.0, 'ever': 1.0, 'so': 1.0, 'options': 1.0, 'love': 1.0, 'steers': 1.0, 'seating': 1.0, 'sturdy': 1.0, 'smooth': 1.0}
Word element => {'than': 1.0, 'other': 1.0, 'move': 1.0, 'awkward': 1.0, 'bulky': 1.0, 'stroller': 1.0, 'side': 1.0, 'down': 1.0, 'kinda': 1.0, 'that': 2.0, 'enough': 1.0, 'manuver': 1.0, 'is': 5.0, 'big': 1.0, 'little': 1.0, 'very': 3.0, '3yr': 2.0, 'front': 1.0, 's': 1.0, 'a': 3.0, 'both': 1.0, 'the': 4.0, 'my': 1.0, 'daughter': 1.0, 'folded': 1.0, 'when': 2.0, 'wife': 1.0, 'and': 7.0, 'ease': 1.0, 'i': 1.0, 'they': 1.0, 'old': 3.0, 'makes': 1.0, 'have': 1.0, 'convenient': 1.0, 'with': 1.0, '6': 1.0, 'he': 1.0, 'only': 1.0, 'love': 1.0, 'can': 2.0, 'fed': 1.0, 'comfortably': 1.0, 'cranky': 1.0, 'it': 3.0, 'month': 1.0, 'she': 1.0, 'get': 1.0, 'easy': 2.0, 'in': 1.0, 'out': 1.0, 'upper': 1.0, 'sit': 1.0, 'entertained': 1.0, 'our': 1.0, 'seat': 2.0, 'to': 3.0, 'keep': 1.0, 'baby': 1.0, 'or': 1.0}
Word element => {'match': 1.0, 'price': 1.0, 'id': 1.0, 'definetly': 1.0, 'ease': 1.0, 'with': 1.0, 'i': 1.0, 'old': 2.0, 'cupholder': 1.0, 'the': 5.0, 'great': 1.0, 'find': 1.0, 'still': 1.0, '5month': 1.0, 'liberty': 1.0, 'had': 1.0, 'now': 1.0, 'for': 1.0, 'reccomend': 1.0, 'is': 1.0, 'flaw': 1.0, 'have': 2.0, 'stroller': 3.0, 'back': 1.0, 'considering': 1.0, 't': 1.0, 'a': 4.0, 'front': 1.0, '21month': 1.0, 'tray': 1.0, 'months': 1.0, 'it': 1.0, 'compact': 1.0, 'options': 1.0, 'you': 1.0, 'in': 2.0, 'of': 1.0, 'up': 2.0, 'fits': 2.0, 'my': 1.0, 'to': 1.0, 'all': 1.0, 'doors': 1.0, 'this': 2.0, 'jeep': 1.0, 'by': 1.0, 'few': 1.0, 'just': 1.0, 'takingoff': 1.0, 'can': 1.0, 'removable': 1.0, 'easy': 2.0, 'folds': 1.0, 'opens': 1.0, 'through': 1.0}
Word element => {'better': 1.0, 'would': 1.0, 'flap': 1.0, 'in': 1.0, 'are': 1.0, 'be': 3.0, 'to': 3.0, 'once': 1.0, 'a': 2.0, 'that': 2.0, 'acess': 1.0, 'is': 4.0, 'dual': 1.0, 'stroller': 2.0, 'expected': 1.0, 'guess': 1.0, 'i': 1.0, 'kids': 1.0, 'going': 1.0, 'my': 1.0, 'bulky': 1.0, 'the': 3.0, 'complaint': 1.0, 'compartment': 1.0, 'it': 2.0, 'only': 1.0, 'hard': 1.0, 'removable': 1.0, 'storage': 1.0}
Word element => {'getting': 1.0, 'as': 1.0, 'kids': 1.0, 'basket': 1.0, 'about': 1.0, 'an': 1.0, 'other': 2.0, 'down': 2.0, 'out': 2.0, 'convenience': 1.0, 'slide': 1.0, 'part': 1.0, 'when': 2.0, 'folded': 1.0, 'escape': 1.0, 'can': 1.0, 'but': 3.0, 'most': 1.0, 'thing': 1.0, '2': 1.0, 'it': 9.0, 'accessible': 1.0, 'up': 2.0, 'i': 6.0, 'old': 1.0, 'stroller': 3.0, 'buckled': 1.0, 'glad': 1.0, 's': 5.0, 'a': 4.0, 't': 4.0, 'both': 1.0, 'different': 2.0, 'very': 4.0, 'little': 1.0, 'and': 5.0, 'too': 1.0, 'my': 4.0, 'are': 2.0, 'for': 3.0, 'don': 1.0, 'isn': 3.0, 'with': 1.0, 'front': 2.0, 'her': 1.0, 'use': 1.0, 'in': 4.0, 'm': 1.0, 'seat': 2.0, 'to': 7.0, 'option': 1.0, 'great': 1.0, 'of': 3.0, 'the': 10.0, 'way': 1.0, 'than': 1.0, 'find': 1.0, 'having': 2.0, 'irks': 1.0, 'either': 1.0, 'standing': 1.0, 'that': 4.0, 'easily': 1.0, 'deep': 1.0, 'if': 1.0, 'easy': 2.0, 'set': 1.0, 'clip': 1.0, 'much': 1.0, 'put': 2.0, 'carseat': 1.0, 'on': 1.0, 'long': 1.0, 'top': 1.0, 'tray': 1.0, 'bought': 1.0, 'swivels': 1.0, 'which': 1.0, 'side': 1.0, 'year': 1.0, 'toddler': 1.0, 'at': 1.0, 'look': 1.0, 'is': 1.0, 'once': 1.0, 'comes': 1.0, 'double': 1.0, 'worry': 1.0, 'also': 1.0, 'ability': 1.0, 'instead': 1.0, 'adapt': 1.0, 'she': 1.0, 'baby': 1.0, 'many': 1.0, 'seating': 1.0, 'only': 1.0, 'options': 1.0, 'have': 1.0, 'bottom': 1.0, 'love': 1.0, 'yet': 1.0, 'time': 1.0, 'there': 1.0}
Word element => {'big': 1.0, 'good': 2.0, 'up': 1.0, 'keep': 1.0, 'decided': 1.0, 'box': 1.0, 'wouldnt': 1.0, 'take': 1.0, 'unable': 1.0, 'sum': 1.0, 'was': 1.0, 'return': 1.0, 'wanted': 1.0, 'or': 1.0, 'yet': 1.0, 'tried': 1.0, 'honda': 1.0, 'of': 1.0, 'trunk': 2.0, 'suv': 1.0, 'side': 1.0, 'heavy': 1.0, 'fold': 1.0, 'be': 1.0, 'close': 1.0, 'then': 1.0, 'opened': 1.0, 'again': 1.0, 'when': 3.0, 'so': 1.0, 'civic': 1.0, 'smaller': 1.0, 'its': 3.0, 'much': 1.0, 'will': 1.0, 'seems': 1.0, 'are': 1.0, 'strollers': 1.0, 'double': 1.0, 'canopy': 1.0, 'wheels': 1.0, 'havent': 1.0, 'uear': 1.0, 'stroller': 2.0, 'mostly': 1.0, 'got': 1.0, 'already': 1.0, 'trays': 1.0, 'my': 2.0, 'in': 4.0, 'have': 2.0, 'mail': 1.0, 'but': 5.0, '2': 2.0, 'lol': 1.0, 'if': 1.0, 'apart': 1.0, 'everything': 1.0, 'just': 1.0, 'thing': 1.0, 'bulky': 1.0, 'today': 1.0, 'easy': 1.0, 'the': 7.0, 'place': 1.0, 'all': 1.0, 'to': 9.0, 'is': 1.0, 'comes': 1.0, 'little': 1.0, 'very': 1.0, 'tall': 1.0, 'and': 4.0, 'not': 1.0, 'me': 1.0, 'standing': 1.0, 'this': 1.0, 'platform': 1.0, 'put': 1.0, 'on': 3.0, 'it': 10.0, 'month': 1.0, 'old': 2.0, 'thinking': 1.0, 'i': 4.0, 'fit': 3.0, 'afraid': 1.0, 'assemble': 1.0, 'love': 1.0, 'im': 3.0, 'other': 1.0, 'u': 3.0, 'hand': 1.0, 'find': 2.0, 'a': 5.0, 'guessing': 1.0}
Word element => {'purchases': 1.0, 'storage': 1.0, 'ample': 1.0, 'and': 1.0, 'lock': 1.0, 'to': 1.0, 'easy': 1.0, 'got': 1.0, 'this': 1.0, 'along': 1.0, 'my': 1.0, 'bottom': 1.0, 'baby': 1.0, 'in': 1.0, 'for': 2.0, 'daughter': 1.0, 'second': 1.0, 'when': 1.0, 'unlock': 1.0, 'came': 1.0, 'great': 1.0, 'works': 1.0}
Word element => {'recommend': 1.0, 'for': 1.0, 'looking': 1.0, 'exactly': 1.0, 'while': 1.0, 'jump': 1.0, 'even': 1.0, 'or': 1.0, 'back': 1.0, 'front': 2.0, 'july': 1.0, 'wonderful': 1.0, 'old': 2.0, 'year': 2.0, 'thing': 1.0, '2': 2.0, 'ways': 1.0, 'different': 1.0, 'some': 1.0, 'kinds': 1.0, 'he': 1.0, 'love': 2.0, 'stroller': 4.0, 'hold': 1.0, 'like': 2.0, 'tell': 1.0, 'big': 2.0, 'double': 3.0, 'fine': 1.0, 'reviews': 1.0, 'something': 2.0, 'carts': 1.0, 'you': 5.0, 'folded': 1.0, 's': 10.0, 'a': 13.0, 'going': 1.0, 'bill': 1.0, 'unless': 1.0, 'turns': 1.0, 'an': 1.0, 'dream': 1.0, 'fits': 2.0, 'said': 1.0, 'really': 1.0, 'doubles': 1.0, 'afraid': 1.0, 'just': 2.0, 'by': 1.0, 'that': 4.0, 'because': 1.0, 'having': 1.0, 'than': 1.0, 'on': 1.0, 'make': 1.0, 'would': 1.0, 'stupid': 1.0, 'two': 2.0, 'was': 3.0, 'the': 10.0, 'of': 3.0, 'around': 1.0, 'coming': 1.0, 'i': 10.0, 'well': 1.0, 'expecting': 1.0, 'bigger': 1.0, 'handed': 2.0, 'read': 1.0, 'single': 1.0, 'limo': 1.0, 'my': 1.0, 'me': 1.0, 'not': 2.0, 'those': 1.0, 'and': 4.0, 'drive': 1.0, 'kids': 2.0, 'highly': 1.0, 'this': 4.0, 'know': 1.0, 'however': 1.0, 'with': 3.0, 'it': 13.0, 'be': 1.0, 'but': 1.0, 'put': 1.0, 'much': 1.0, 'can': 2.0, 'so': 1.0, 'seat': 3.0, 'in': 8.0, 'm': 2.0, 'also': 2.0, 'sits': 1.0, 'at': 1.0, 'yeah': 1.0, 'pleased': 1.0, 'up': 1.0, 'to': 4.0, 'pretty': 1.0, 'store': 1.0, 'sure': 1.0, 'beast': 2.0, 'get': 1.0, 'baby': 1.0, 'many': 1.0, 'steers': 1.0, 'folds': 1.0, 'biggie': 1.0, 'sit': 1.0, 'what': 2.0, 'almost': 1.0, 'drives': 1.0, 'else': 1.0, 'expect': 1.0, 'from': 1.0, 'made': 1.0, 'side': 2.0, 'reviewers': 1.0, 'umbrella': 1.0, 'again': 1.0, 'car': 3.0, 'grocery': 1.0, 'one': 4.0, 'lot': 2.0, 'too': 1.0, 'ones': 1.0, 'have': 2.0, '5': 1.0, 'point': 1.0, 'let': 1.0, 'no': 1.0}
Word element => {'5': 1.0, 'would': 2.0, 'if': 1.0, 'they': 1.0, 'only': 1.0, 'spend': 1.0, 'parents': 1.0, 'so': 1.0, 'smaller': 1.0, 'warning': 1.0, 'of': 1.0, 'sort': 1.0, 'some': 1.0, 'should': 1.0, 'to': 1.0, 'seat': 1.0, 'dropped': 1.0, 'was': 1.0, 'frustrated': 1.0, 'that': 2.0, 'what': 1.0, 'functionality': 1.0, 'by': 1.0, 'vehicles': 1.0, 'built': 1.0, 'with': 2.0, 'this': 2.0, 'it': 7.0, 'problem': 1.0, 'the': 4.0, 'at': 1.0, 'start': 1.0, 'i': 6.0, 'come': 1.0, 'fortune': 1.0, 'in': 3.0, 'give': 1.0, 'not': 1.0, 'me': 2.0, 'and': 1.0, 'stroller': 4.0, 'saying': 1.0, 'back': 1.0, 's': 2.0, 't': 3.0, 'discovered': 1.0, 'a': 2.0, 'don': 2.0, 'have': 1.0, 'small': 1.0, 'think': 1.0, 'on': 1.0, 'then': 1.0, 'use': 2.0, 'money': 1.0, 'but': 1.0, 'can': 2.0, 'never': 2.0, 'anywhere': 1.0, 'vehicle': 1.0, 'may': 1.0, 'my': 2.0, 'home': 1.0, 'find': 1.0, 'because': 1.0, 'stars': 1.0, 'for': 1.0, 'product': 1.0, 'love': 1.0, 'fit': 3.0, 'car': 1.0, 'won': 1.0, 'trunk': 1.0, 'let': 1.0, 'or': 1.0}
Word element => {'spend': 1.0, 'afford': 1.0, 'use': 1.0, 'now': 1.0, 'have': 1.0, 'rich': 1.0, 'not': 1.0, 'moving': 1.0, 'before': 1.0, 'take': 1.0, 'had': 1.0, 'inch': 1.0, 'an': 1.0, 'no': 1.0, 'thing': 1.0, 'lift': 1.0, 'high': 1.0, 'or': 1.0, 'choice': 1.0, 'if': 1.0, 'really': 1.0, 'plan': 1.0, 'curbs': 2.0, 'car': 1.0, 'i': 6.0, 'graco': 1.0, 'could': 1.0, 'a': 1.0, 'going': 1.0, 'am': 1.0, 'again': 1.0, 'barely': 1.0, 'you': 1.0, 'when': 1.0, 'another': 1.0, 'my': 3.0, 'went': 1.0, 'on': 2.0, 'with': 3.0, 'it': 5.0, 'kids': 1.0, 'this': 3.0, 'strollers': 1.0, 'and': 4.0, 'get': 1.0, 'worst': 1.0, 'cheaper': 1.0, 'was': 2.0, 'seat': 1.0, 'to': 4.0, 'other': 1.0, 'because': 2.0, 'than': 1.0, 'the': 2.0, 'in': 2.0, 'putting': 1.0, 'here': 1.0, 'ready': 1.0, 'money': 1.0, 'but': 1.0, '2': 1.0, 'work': 1.0, 'toddler': 2.0, 'for': 1.0, 'newborn': 1.0, 'out': 3.0, 'experience': 1.0, 'one': 1.0, 'cant': 1.0, 'bought': 1.0, 'raised': 1.0, 'both': 1.0, 'came': 1.0, 'places': 1.0, 'like': 1.0}
Word element => {'closed': 1.0, 'wish': 1.0, 'it': 4.0, 'light': 1.0, 'price': 1.0, 's': 1.0, 'was': 2.0, 'stand': 1.0, 'job': 1.0, 'a': 2.0, 'i': 1.0, 'does': 1.0, 'reasonable': 1.0, 'just': 1.0, 'up': 1.0, 'as': 1.0, 'and': 2.0}
Word element => {'use': 1.0, 'to': 1.0, 't': 1.0, 'can': 1.0, 'me': 1.0, 'hopefully': 1.0, 'than': 1.0, 'but': 2.0, 'time': 1.0, 'a': 2.0, 'll': 1.0, 'yet': 1.0, 'it': 5.0, 'like': 1.0, 'understandable': 1.0, 'good': 1.0, 's': 1.0, 'little': 1.0, 'last': 1.0, 'bigger': 1.0, 'buy': 1.0, 'i': 2.0, 'wait': 1.0, 'expected': 1.0, 'not': 1.0, 'have': 1.0, 'long': 1.0, 'used': 1.0}
Word element => {'helpful': 1.0, 'enough': 1.0, 'review': 1.0, 'hope': 1.0, 'love': 1.0, '4': 1.0, '23': 1.0, 'little': 1.0, 'with': 2.0, 'double': 2.0, 'back': 2.0, '8': 1.0, 'carseat': 3.0, 'infant': 1.0, 'c': 1.0, 'facing': 2.0, 'parent': 2.0, 'standard': 1.0, 'sits': 2.0, 'at': 2.0, 'impossible': 1.0, 'needs': 1.0, 'shallow': 1.0, 'basket': 1.0, 'see': 1.0, 'off': 1.0, 'access': 1.0, 'according': 1.0, 'your': 2.0, 'stood': 1.0, 'you': 7.0, 'about': 1.0, 'detailed': 1.0, 'darn': 1.0, 'front': 2.0, 'fact': 1.0, 'stages': 1.0, 'makes': 1.0, 'now': 1.0, 'its': 1.0, 'was': 4.0, 'stair': 1.0, 'preferences': 1.0, 'them': 1.0, 'heavy': 1.0, 'as': 3.0, 'pros': 2.0, 'single': 1.0, 'this': 6.0, 'did': 1.0, 'unisex': 1.0, 'in': 8.0, 'to': 12.0, 'any': 2.0, 'recommendation': 1.0, 'pretty': 1.0, 'faces': 1.0, 'basically': 1.0, 'seat': 3.0, 'accommodate': 1.0, 'arrangements': 1.0, 'walk': 1.0, '3': 1.0, 'just': 1.0, 'and': 20.0, 'anyone': 1.0, 'i': 17.0, 'cons': 1.0, 'baby': 2.0, 'loved': 1.0, 'had': 1.0, 'purchased': 1.0, 'which': 1.0, 'good': 1.0, 'purchase': 1.0, 'for': 5.0, 'months': 3.0, 'bought': 2.0, 'design': 1.0, 'underneath': 1.0, 'ok': 1.0, 'product': 1.0, 'year': 3.0, 'stroller': 10.0, 'they': 1.0, 'replace': 1.0, 'contour': 1.0, 'seen': 1.0, 'stores': 1.0, 'is': 6.0, 'can': 3.0, 'so': 1.0, 'but': 3.0, 'pointless': 1.0, 'thing': 2.0, 'the': 23.0, 'have': 9.0, 'that': 6.0, 'babies': 2.0, 'my': 7.0, 'are': 3.0, 'doesn': 2.0, 's': 2.0, 'could': 1.0, 'a': 13.0, 'going': 1.0, '2': 3.0, 'apart': 1.0, 'd': 1.0, 'first': 1.0, 'rain': 1.0, 'best': 1.0, 'pricecons': 1.0, 'doubt': 1.0, 'both': 2.0, 'versatile': 1.0, 'one': 2.0, '5': 1.0, 'before': 2.0, 'born': 2.0, 'be': 2.0, 'it': 7.0, 'recline': 1.0, 'kids': 1.0, 'month': 1.0, 'expect': 1.0, 'pone': 1.0, 'children': 1.0, 'not': 1.0, 'different': 2.0, 'ages': 1.0, 'developmental': 1.0, 've': 1.0, 'stand': 1.0, 'down': 1.0, 'mentioned': 1.0, 'anywhere': 1.0, 'tandem': 1.0, 'cover': 2.0, 'fits': 1.0, 'on': 2.0, 'no': 1.0, 'anyway': 1.0, 'has': 1.0, 'gotten': 1.0, 'brand': 1.0, 'comfortably': 1.0, 'works': 1.0, 'who': 2.0, 'stairs': 2.0, 'without': 1.0, 'like': 4.0, 'fine': 1.0, 'sat': 1.0, 'cheap': 1.0, 'then': 1.0, 'walks': 1.0, 'color': 1.0, 'looking': 1.0, 'easy': 2.0, 'fold': 1.0, 'far': 1.0, 'open': 1.0, 'hard': 1.0, 'september': 1.0, 'great': 1.0, 'if': 3.0, 'assembly': 1.0, 'section': 1.0, 'old': 3.0, 'of': 7.0, 'even': 1.0, 'or': 2.0, 'feature': 1.0, 'name': 1.0, 'options': 2.0, 'ensures': 1.0, 'lift': 1.0, 'freaking': 1.0, 'go': 2.0, 'sized': 1.0, 'up': 2.0, 'live': 1.0, 'floor': 2.0, 'set': 2.0, 'seating': 2.0, 'pain': 1.0, 'help': 1.0, 'use': 2.0, 'especially': 1.0, 'terrible': 1.0, 'haven': 1.0, 'fun': 1.0, 't': 5.0, 'around': 1.0, 'ones': 1.0, 'all': 1.0, 'saw': 1.0, 'their': 1.0, 'middle': 1.0, 'arrange': 1.0, 'don': 2.0, 'move': 1.0, 'find': 1.0, 'very': 2.0, 'car': 1.0, 'really': 1.0, 'storing': 1.0, 'groceries': 1.0, 'newborn': 1.0, 'never': 1.0, 'strollermy': 1.0}
Word element => {'fits': 1.0, 'just': 1.0, 'accord': 1.0, 'my': 1.0, 'trunk': 1.0, 'space': 1.0, 'of': 2.0, 'up': 1.0, 'm': 1.0, 'by': 1.0, 'double': 1.0, 'for': 1.0, 'myself': 1.0, 'expected': 1.0, 'as': 1.0, 'manage': 1.0, 'after': 1.0, 'take': 1.0, 'foot': 1.0, 'off': 1.0, 'was': 1.0, 'its': 1.0, 'glad': 1.0, 'soon': 1.0, 'in': 2.0, 'it': 5.0, 'does': 1.0, 'part': 1.0, 'works': 1.0, 'honda': 1.0, 'can': 1.0, 'without': 1.0, 'a': 1.0, 'front': 1.0, 'the': 6.0, 'broke': 1.0, 'compactness': 1.0, 'still': 1.0, 'stroller': 1.0, 'but': 3.0, 'i': 3.0, 'most': 1.0, 'purchased': 1.0, 'loved': 1.0, 'and': 1.0, 'weight': 1.0, 'is': 1.0}
Word element => {'world': 1.0, 'kind': 1.0, 'of': 2.0, 'europe': 1.0, 'stroller': 1.0, 'states': 1.0, 'unlike': 1.0, 'because': 1.0, 'sell': 1.0, 'had': 1.0, 'year': 1.0, 'about': 1.0, 'for': 1.0, 'used': 1.0, 'quieter': 1.0, 'much': 1.0, 'wheels': 1.0, 'inflated': 1.0, 'up': 1.0, 'fold': 1.0, 'actual': 1.0, 'to': 2.0, 'was': 2.0, 'germany': 1.0, 'brick': 1.0, 'able': 1.0, 'just': 1.0, 'not': 1.0, 'wish': 1.0, 'kids': 1.0, 'perfect': 1.0, 'it': 6.0, 'with': 1.0, 'these': 1.0, 'the': 2.0, 'if': 1.0, 'road': 1.0, 'you': 1.0, 'great': 1.0, 'big': 1.0, 'worked': 1.0, 'more': 1.0, 'is': 2.0, 'second': 1.0, 'have': 1.0, 'small': 1.0, 'so': 1.0, 'bit': 1.0, 'smaller': 1.0, '2': 1.0, 'but': 2.0, 'couldn': 1.0, 'too': 1.0, 'and': 3.0, 'compact': 1.0, 'break': 1.0, 'in': 1.0, '8217': 2.0, 'a': 3.0, 't': 2.0, 'we': 1.0, 'other': 1.0, 'live': 1.0, 'tires': 2.0, 'smoother': 1.0, 'darn': 1.0, 'are': 2.0, 'friendly': 1.0, 'strollers': 1.0, 'didn': 1.0}
Word element => {'day': 1.0, 'every': 1.0, 'use': 1.0, 'snacks': 1.0, 'out': 1.0, 'tray': 3.0, 'snack': 1.0, 'holders': 1.0, 'holder': 2.0, 'cup': 3.0, 'does': 1.0, 'face': 1.0, 'reasonably': 1.0, 'double': 1.0, 'expectations': 1.0, 'subaru': 1.0, 'big': 1.0, 'who': 1.0, 'people': 1.0, 'opinion': 1.0, 'anything': 1.0, 'like': 1.0, 'by': 1.0, 'into': 1.0, 'times': 1.0, 'climbed': 1.0, 'everything': 1.0, 'son': 1.0, 'sturdy': 1.0, 'bench': 1.0, 'true': 1.0, 'upper': 1.0, 's': 1.0, 'parent': 1.0, 'think': 2.0, 'from': 1.0, 'be': 1.0, 'large': 1.0, 'recommend': 1.0, 'together': 1.0, 'easy': 6.0, 'folds': 1.0, 'glad': 1.0, 'stroller': 8.0, 'connect': 2.0, 'way': 2.0, 'we': 1.0, 'fine': 1.0, 'take': 1.0, 'reviews': 1.0, 'some': 1.0, 'highly': 1.0, 'few': 1.0, 'this': 4.0, 'cannot': 1.0, 'himself': 1.0, 'very': 2.0, 'off': 1.0, 'access': 1.0, 'decided': 1.0, 'get': 2.0, 'months': 1.0, 'too': 2.0, 'rear': 3.0, 'one': 1.0, 'climbs': 1.0, 'year': 1.0, 'phone': 1.0, 'girl': 1.0, 'features': 1.0, 'tip': 1.0, 'classic': 2.0, 'small': 1.0, 'a': 12.0, 't': 2.0, 'suv': 1.0, '2': 2.0, 'but': 2.0, 'so': 1.0, 'can': 2.0, 'to': 15.0, 'was': 2.0, 'apprehensive': 1.0, 'almost': 1.0, 'now': 1.0, 'owned': 1.0, 'my': 4.0, 'do': 1.0, 'put': 1.0, 'on': 2.0, '3': 1.0, 'feel': 1.0, 'any': 1.0, 'your': 2.0, 'have': 5.0, 'heavy': 1.0, 'falls': 1.0, 'already': 1.0, 'him': 1.0, 'recline': 1.0, 'it': 11.0, 'month': 1.0, 'about': 1.0, '5': 1.0, 'accessed': 1.0, 'ready2grow': 1.0, 'well': 1.0, 'i': 12.0, 'old': 2.0, 'and': 13.0, 'for': 3.0, 'he': 1.0, 'fold': 2.0, 'love': 2.0, 'favorite': 1.0, 'up': 2.0, 'don': 2.0, 'seating': 2.0, 'options': 1.0, 'because': 1.0, 'that': 2.0, 'you': 2.0, 'when': 1.0, 'rearrange': 1.0, 'unrealistic': 1.0, 'convert': 2.0, 'of': 2.0, 'the': 21.0, 'is': 9.0, 'at': 2.0, 'space': 2.0, 'pop': 2.0, 'm': 1.0, 'seat': 9.0, 'in': 4.0, 'cargo': 1.0, 'did': 2.0, 'snugride': 1.0, 'infant': 1.0, 'zoo': 1.0, 'car': 2.0, 'seats': 1.0, 'just': 2.0, 'boy': 1.0, 'either': 1.0, 'forester': 1.0, 'front': 4.0, 'carob': 1.0, 'feature': 1.0, 'need': 1.0, 'or': 3.0, 'back': 3.0, 'will': 1.0, 'lift': 1.0, 'also': 3.0, 'has': 4.0, 'good': 1.0, 'made': 1.0, 'based': 1.0, 'asleep': 1.0, 'which': 2.0, 'two': 1.0, 'little': 1.0, 'nice': 3.0, 'taken': 1.0, 'kid': 1.0, 'not': 2.0, 'forward': 2.0, 'provide': 1.0, 'fits': 1.0, 'all': 1.0, 'an': 1.0}
Word element => {'day': 1.0, 'car': 1.0, 'little': 1.0, '2': 1.0, '5': 1.0, 'up': 1.0, 'great': 1.0, 'buying': 1.0, 'before': 1.0, 'hours': 1.0, 'looked': 1.0, 'runner': 1.0, 'your': 1.0, 'unless': 1.0, 'enough': 1.0, 'recommend': 1.0, 'awesome': 1.0, 'does': 1.0, 'petite': 1.0, 'west': 1.0, 'key': 1.0, 'trying': 1.0, 'like': 1.0, 'are': 1.0, 'you': 2.0, 'only': 1.0, 'they': 1.0, 'wobble': 2.0, 'wheels': 1.0, 'people': 1.0, 'super': 1.0, 'under': 1.0, 'shirt': 1.0, 'won': 1.0, 'tuck': 1.0, 'would': 1.0, 'head': 1.0, 'asleep': 1.0, 'problem': 1.0, 'fell': 1.0, 'older': 1.0, '3': 1.0, 'more': 1.0, '6': 1.0, 'least': 1.0, 'cocked': 1.0, 'be': 2.0, 'will': 1.0, 'weight': 1.0, 'normal': 1.0, 'issue': 2.0, 'been': 1.0, 'never': 1.0, 'but': 2.0, 'no': 1.0, 'traditional': 1.0, 'ford': 1.0, 'running': 2.0, 'have': 2.0, 'long': 1.0, 'on': 2.0, '34': 2.0, 'lots': 1.0, 'front': 3.0, 'live': 1.0, 'walking': 1.0, 'perfect': 1.0, 'if': 2.0, 'still': 2.0, 'height': 1.0, 'son': 5.0, 'being': 1.0, 'later': 1.0, 'my': 9.0, 'underneath': 1.0, 'got': 1.0, 'daughter': 2.0, 'fast': 1.0, 'well': 1.0, 'i': 13.0, 'workout': 1.0, 'otherwise': 1.0, 'do': 1.0, 'put': 1.0, 'much': 2.0, 'jacket': 1.0, 'its': 2.0, 'her': 2.0, 'smaller': 1.0, 'easy': 1.0, 'bit': 2.0, 'room': 2.0, 'streets': 1.0, 'three': 1.0, 'loves': 1.0, 'year': 1.0, 'disappointed': 1.0, 'stroller': 5.0, 'back': 4.0, 'far': 2.0, 'love': 1.0, 'for': 5.0, 'it': 7.0, 'folds': 1.0, 'she': 2.0, 'baby': 1.0, 'many': 1.0, 'at': 4.0, 'jumpseat': 2.0, 'is': 7.0, 'terrain': 1.0, 'saying': 1.0, 'doubles': 1.0, 'had': 1.0, 'to': 6.0, 'heavy': 1.0, 'diaper': 1.0, 'as': 6.0, 'm': 1.0, 'in': 10.0, 'seat': 2.0, 'figure': 1.0, 'almost': 1.0, 'now': 1.0, 'stand': 1.0, 'months': 2.0, 'get': 3.0, 'and': 15.0, 'edge': 1.0, '1': 1.0, 'of': 1.0, 'the': 8.0, 'than': 2.0, 'reach': 1.0, 'oh': 1.0, 'with': 3.0, 'snack': 1.0, 'trays': 1.0, 'come': 1.0, 'shades': 1.0, 'always': 1.0, 'sit': 1.0, 'review': 1.0, 'single': 1.0, 'umbrella': 1.0, 'give': 1.0, 'perfectly': 1.0, 'there': 3.0, 'small': 1.0, 'a': 8.0, 'reviews': 1.0, 'fine': 1.0, 'we': 2.0, 'spare': 1.0, 'likes': 1.0, 'fit': 1.0, 't': 3.0, 'this': 2.0, 'sidewalks': 1.0, 'few': 1.0, 'stuff': 1.0, 'compliments': 1.0, 'just': 3.0, 'shallow': 1.0, 'ample': 1.0, 'out': 2.0, 'storing': 1.0, 'giant': 1.0, 'bag': 2.0, 'all': 2.0, 'an': 2.0, 'fits': 2.0, 'other': 1.0, 'lean': 1.0, 'not': 2.0, 'forward': 1.0, 'whole': 1.0, 'hand': 1.0, 'reclining': 1.0, 'groceries': 1.0, 'through': 1.0, 'so': 1.0, 'ask': 1.0, 'can': 2.0, 'grocery': 1.0, 'old': 2.0, 'bet': 1.0, 'run': 1.0, 'because': 1.0, 'easily': 1.0, 'haven': 1.0, 'used': 1.0, 'or': 2.0, 'too': 1.0, 'one': 1.0, 'rear': 1.0}
Word element => {'product': 1.0, 'recommened': 1.0, 'infant': 1.0, 'our': 2.0, 'a': 1.0, 'in': 1.0, 'wife': 1.0, 'stroller': 1.0, 'just': 1.0, 'yr': 1.0, 'easy': 1.0, 'received': 1.0, 'my': 2.0, 'ago': 1.0, 'few': 1.0, 'old': 1.0, 'i': 3.0, 'and': 4.0, 'for': 1.0, 'love': 1.0, 'this': 1.0, 'mail': 1.0, 'it': 2.0, 'works': 1.0, 'the': 1.0, 'great': 1.0, 'was': 1.0, 'to': 1.0, '3': 1.0, 'days': 1.0, 'assemble': 1.0}
Word element => {'time': 1.0, 'thanks': 1.0, 'folks': 1.0, 'provide': 1.0, 'fun': 1.0, 'again': 1.0, 'looked': 1.0, 'others': 1.0, 'your': 1.0, 'any': 1.0, 'sturdy': 1.0, 'will': 2.0, 'work': 1.0, 'but': 1.0, 'extra': 1.0, 'day': 1.0, 'worth': 1.0, 'to': 4.0, 'all': 1.0, 'seems': 1.0, 'access': 1.0, 'shipping': 1.0, 'storage': 1.0, 'and': 8.0, 'used': 1.0, 'front': 2.0, 'stroller': 2.0, 'of': 1.0, 'moves': 1.0, 'the': 12.0, 'good': 1.0, 'family': 1.0, 'nimble': 1.0, 'some': 1.0, 'super': 1.0, 'little': 2.0, 'two': 1.0, 'are': 1.0, 'boys': 1.0, 'well': 5.0, 'a': 2.0, 't': 1.0, 'we': 2.0, 'money': 1.0, 'instructions': 1.0, 'btw': 1.0, 'was': 1.0, 'functions': 1.0, 'enjoy': 1.0, 'if': 1.0, 'very': 1.0, 'being': 1.0, 'directions': 1.0, 'together': 1.0, 'were': 1.0, 'quick': 1.0, 'with': 4.0, 'it': 7.0, 'due': 1.0, 'can': 1.0, 'so': 3.0, 'easy': 1.0, 'however': 1.0, 'amazon': 1.0, 'prime': 1.0, 'have': 3.0, 'came': 1.0, 'you': 2.0, 'things': 1.0, 'that': 3.0, 'do': 1.0, 'forward': 1.0, 'not': 2.0, 'there': 2.0, 'give': 1.0, 'no': 1.0, 'also': 1.0, 'lift': 1.0, 'adjustment': 1.0, '2': 1.0, 'thing': 1.0, '34': 2.0, 'up': 2.0, 'don': 1.0, 'on': 1.0, 'back': 1.0, 'bother': 1.0, 'toddler': 2.0, 'built': 2.0, 'be': 1.0, 'removed': 1.0, 'diligence': 1.0, 'is': 4.0, 'look': 1.0, 'for': 2.0, 'by': 1.0, 'removing': 1.0, 'better': 2.0, 'far': 1.0, 'love': 1.0, 'bottom': 1.0, 'bin': 1.0, 'seat': 3.0, 'unclear': 1.0, 'in': 1.0, 'said': 1.0, 'really': 1.0, 'this': 1.0, 'explain': 1.0, 'than': 1.0}
Word element => {'to': 1.0, 'used': 1.0, 'take': 1.0, 'can': 1.0, 'mechanism': 1.0, 'though': 1.0, 'getting': 1.0, 'and': 2.0, 'very': 1.0, 'travel': 1.0, 'some': 1.0, 'two': 1.0, 'quickly': 1.0, 'trunk': 1.0, 'storage': 1.0, 'transporting': 1.0, 'in': 1.0, 'flexible': 1.0, 'collapsible': 1.0, 'suv': 1.0, 'sturdy': 1.0, 'for': 2.0, 'bed': 1.0, 'of': 2.0, 'a': 2.0, 'infants': 1.0, 'the': 2.0, 'pickup': 1.0, 'large': 1.0, 'or': 1.0, 'back': 1.0, 'an': 1.0}
Word element => {'options': 1.0, 'parents': 1.0, 'would': 1.0, 'mountains': 1.0, 'tops': 1.0, 'singing': 1.0, 'expectations': 1.0, 'however': 1.0, 'decent': 1.0, 'll': 1.0, 'side': 1.0, 'exceed': 1.0, 'remember': 1.0, 'such': 1.0, 'every': 1.0, 'father': 1.0, 'involved': 1.0, 'myself': 1.0, 'makes': 1.0, 'black': 2.0, 'making': 1.0, 'blue': 1.0, 'red': 1.0, 'similarly': 1.0, 'single': 1.0, 'rest': 2.0, 'color': 1.0, 'unfolding': 1.0, 'clip': 4.0, 'wish': 1.0, 'escape': 1.0, 're': 1.0, 'know': 1.0, 'kick': 1.0, 'while': 2.0, 'delays': 1.0, 'have': 2.0, 'children': 4.0, 'least': 1.0, 'pregnant': 1.0, 'easy': 1.0, 'fit': 1.0, 'attractive': 2.0, 'until': 2.0, 'yes': 1.0, 'so': 1.0, 'r2g': 3.0, 'perfect': 1.0, 'do': 1.0, 'walking': 1.0, 'other': 4.0, 'consider': 2.0, 'didn': 1.0, 'themselves': 1.0, 'reason': 1.0, 'strollers': 2.0, 'longevity': 1.0, 'use': 2.0, 'reality': 1.0, 'an': 1.0, 'opportunity': 1.0, 'same': 3.0, 'from': 3.0, 'another': 1.0, 'me': 1.0, 'at': 1.0, 'handle': 3.0, 'can': 1.0, 'is': 14.0, 'day': 1.0, 'since': 1.0, '1': 1.0, 'which': 1.0, 'again': 2.0, 'equipment': 1.0, '8': 4.0, 'some': 2.0, 'likely': 1.0, 'most': 1.0, 'diagram': 1.0, 'back': 4.0, 'seems': 2.0, 'configuration': 1.0, 'potential': 1.0, 'any': 1.0, 'flexibility': 1.0, 'restraining': 1.0, 'graco': 4.0, 'i': 14.0, 'model': 1.0, 'm': 2.0, 's': 2.0, 'doesn': 1.0, 'expensive': 1.0, 'thus': 1.0, 'for': 3.0, 'using': 1.0, 'with': 4.0, 'ii': 1.0, 'him': 2.0, 'double': 2.0, 'flexible': 1.0, 'overall': 1.0, 'they': 2.0, 'enough': 3.0, 'specifically': 1.0, 'grew': 1.0, 'difficult': 1.0, 'thought': 1.0, 'possible': 1.0, 'brake': 1.0, 'was': 6.0, 'because': 3.0, 'appeared': 1.0, 'that': 12.0, 'praises': 1.0, 'the': 40.0, 'even': 1.0, 'of': 9.0, 'depict': 1.0, 'attracted': 1.0, 'we': 8.0, 'this': 5.0, 'reuse': 1.0, 'were': 1.0, 'in': 13.0, 'awkward': 2.0, 'to': 15.0, 'length': 1.0, 'our': 6.0, 'shopping': 1.0, 'had': 2.0, 'distinct': 1.0, 'months': 1.0, 'car': 3.0, 'seeking': 1.0, 'constantly': 1.0, 'and': 14.0, 'seat': 7.0, 'disconnect': 1.0, 'grown': 1.0, 'as': 4.0, 'marketed': 1.0, 'part': 1.0, 'classic': 2.0, 'connect': 2.0, 'daughter': 2.0, 'keeps': 1.0, 'seating': 1.0, 'configurations': 1.0, '2008': 1.0, 'well': 1.0, 'line': 1.0, 'when': 2.0, 'instances': 1.0, 'a': 7.0, 'discovered': 1.0, 'went': 1.0, 'born': 1.0, 'though': 1.0, 'after': 1.0, 'offer': 1.0, 'tray': 3.0, 'continue': 1.0, 'unless': 1.0, 'own': 1.0, 'shorter': 1.0, 'it': 14.0, 'be': 1.0, 'on': 3.0, 'much': 1.0, 'put': 1.0, 'its': 2.0, 'later': 1.0, 'very': 2.0, 'developmental': 1.0, 'than': 4.0, 'height': 1.0, 'typical': 1.0, 'bought': 1.0, 'against': 1.0, 'seemed': 1.0, 'differently': 2.0, 'particularly': 1.0, 'but': 4.0, 'say': 1.0, 'diagrams': 2.0, 'positions': 5.0, 'clearly': 1.0, 'first': 1.0, '12': 4.0, 'show': 1.0, 'outgrew': 1.0, 'combinations': 1.0, 'caution': 1.0, 'child': 1.0, 'stroller': 8.0, 'product': 3.0, 'my': 5.0, 'are': 5.0, 'no': 2.0, 'there': 2.0, 'different': 5.0, 'not': 6.0, 'need': 1.0, 'sitting': 1.0, 'also': 2.0, 'constructed': 1.0, 'lift': 1.0, 'ford': 1.0, 'about': 2.0, 'instruction': 1.0, 'manual': 1.0, 'needs': 1.0, 'wife': 1.0, 'accurate': 1.0, 'kids': 2.0, 'scale': 1.0, 'their': 2.0, 'actual': 1.0, 'manufacturer': 1.0, 'age': 1.0, 'rear': 1.0, 'accidentally': 2.0, 'implies': 1.0, 'larger': 1.0, 'actually': 1.0, 'place': 1.0, 'position': 2.0, 'pressed': 1.0, 'sized': 2.0, 'up': 1.0, 'what': 1.0, 'front': 2.0, 'barely': 1.0, 'point': 1.0, 'meets': 1.0, 'where': 2.0, 'out': 1.0, 't': 4.0, 'essence': 1.0, 'remove': 1.0, 'or': 1.0, 'son': 3.0, 'seats': 1.0, 'both': 2.0, 'them': 1.0, 'new': 1.0, 'manuals': 1.0, 'facing': 2.0, 'like': 3.0, 'cart': 1.0, 'see': 3.0, 'multiple': 1.0, 'real': 1.0, 'won': 1.0, 'two': 2.0, 'longer': 1.0, 'does': 3.0, 'queen': 1.0, 'admittedly': 1.0, 'mary': 1.0, 'chance': 1.0, 'foot': 1.0, '5': 2.0}
Word element => {'been': 1.0, 'have': 1.0, 'all': 2.0, 'strollers': 1.0, 'trunk': 1.0, 'most': 2.0, 'pleased': 1.0, 'up': 1.0, 'your': 1.0, 'probably': 1.0, 'though': 1.0, 'with': 2.0, 'will': 1.0, 'travel': 1.0, 'trying': 1.0, 'using': 1.0, 'mainly': 1.0, 'recommend': 1.0, 'planning': 1.0, 'much': 1.0, 'snugride': 1.0, 'graco': 1.0, 'around': 1.0, 'his': 1.0, 'on': 3.0, 'loves': 1.0, 'into': 1.0, 'basket': 1.0, 'new': 1.0, 've': 1.0, 'totally': 1.0, 'super': 1.0, '34': 4.0, 'absolutely': 1.0, 'extremely': 2.0, 'small': 1.0, 'imagine': 1.0, 'a': 2.0, 's': 3.0, 't': 2.0, 'sitting': 1.0, 'but': 1.0, 'if': 2.0, 'for': 4.0, 'fold': 1.0, 'he': 1.0, 'love': 1.0, 'not': 1.0, 'and': 5.0, 'too': 1.0, 'walk': 1.0, 'about': 1.0, 'had': 1.0, 'big': 1.0, 'grass': 1.0, 'so': 1.0, 'can': 1.0, 'asks': 1.0, 'that': 2.0, 'because': 2.0, 'easily': 1.0, 'sit': 1.0, 'when': 2.0, 'folded': 1.0, 'would': 1.0, 'boy': 1.0, 'bulky': 1.0, 'weeks': 1.0, 'hates': 1.0, 'our': 1.0, 'stroller': 7.0, 'seat': 1.0, 'in': 4.0, 'highly': 1.0, 'this': 3.0, '30': 1.0, 'cell': 1.0, 'kids': 2.0, 'it': 8.0, 'me': 1.0, 'my': 2.0, 'underneath': 1.0, 'neighborhood': 1.0, 'walks': 1.0, 'two': 1.0, 'i': 6.0, 'etc': 1.0, 'six': 1.0, 'who': 1.0, 'we': 3.0, 'take': 2.0, 'to': 4.0, 'pretty': 1.0, 'car': 1.0, 'snaps': 1.0, 'nicely': 1.0, 'year': 1.0, 'manageable': 1.0, 'very': 3.0, 'access': 1.0, 'front': 1.0, 're': 2.0, 'phone': 1.0, 'is': 4.0, 'easy': 2.0, 'you': 1.0, 'push': 1.0, 'are': 1.0, 'useful': 1.0, 'bench': 1.0, 'even': 1.0, 'pushes': 1.0, 'huge': 1.0, 'tray': 2.0, 'double': 1.0, 'although': 2.0, 'parent': 1.0, 'mind': 1.0, 'holding': 1.0, 'keys': 1.0, 'like': 1.0, 'old': 1.0, 'downside': 1.0, 'there': 1.0, 'cup': 1.0, 'actually': 1.0, 'holder': 1.0, 'only': 1.0, 'the': 11.0, 'of': 2.0, 'don': 2.0}
Word element => {'out': 1.0, 'wait': 1.0, 'daughter': 1.0, 'was': 1.0, 'eldest': 1.0, 'from': 1.0, 'previously': 1.0, 'try': 1.0, 'do': 1.0, 'though': 1.0, 'even': 1.0, 'unable': 1.0, 'balance': 1.0, 'can': 1.0, 'but': 2.0, 'stroller': 2.0, 'will': 1.0, 'put': 1.0, 'able': 1.0, 'in': 1.0, 'two': 2.0, 'i': 6.0, 'old': 1.0, 'buy': 1.0, 'my': 2.0, 'because': 1.0, 'one': 1.0, 'huge': 1.0, 'both': 1.0, 'her': 2.0, 'that': 2.0, 'this': 2.0, 'kids': 1.0, 'love': 1.0, 'where': 1.0, 'be': 1.0, 'strollers': 1.0, 'to': 6.0, 'like': 1.0, 'little': 1.0, 'hesitant': 1.0, 'head': 1.0, 'overall': 1.0, 'it': 2.0, 'month': 1.0, 'she': 1.0, 'is': 2.0, 'when': 2.0, 'am': 1.0, 'folded': 1.0, 'have': 3.0, 'suppose': 1.0, 'born': 1.0, 'however': 1.0, 'sit': 2.0, 'way': 1.0, 'up': 1.0, 'don': 1.0, 'a': 2.0, 's': 1.0, 't': 2.0}
Word element => {'someone': 1.0, 'hope': 1.0, 'way': 1.0, 'no': 1.0, 'two': 1.0, 'think': 1.0, 'note': 1.0, 'good': 1.0, 'side': 1.0, 'say': 1.0, 'seriously': 1.0, 'left': 1.0, 'tugged': 1.0, 'after': 1.0, 'family': 1.0, 'decide': 1.0, 'taken': 1.0, 'best': 3.0, 'need': 1.0, 'box': 1.0, 'on': 2.0, 'looked': 1.0, 'really': 2.0, 'self': 1.0, 'being': 1.0, 'very': 1.0, 'also': 1.0, 'lift': 1.0, 'whole': 1.0, 'pregnant': 2.0, 'thing': 2.0, '2': 2.0, 'but': 2.0, 'that': 4.0, 'toddlers': 1.0, 'buy': 1.0, 'remembered': 1.0, 'soon': 1.0, 'and': 12.0, 'has': 1.0, 'target': 1.0, 'style': 1.0, 'not': 1.0, '7': 1.0, 'am': 5.0, 'able': 3.0, 'you': 1.0, 'got': 1.0, 'this': 2.0, 'explanatory': 1.0, 'with': 5.0, 'at': 3.0, 'months': 2.0, 'happy': 1.0, 'one': 1.0, 'shape': 1.0, 'gut': 1.0, 'i': 18.0, 'seen': 1.0, '4': 1.0, 'over': 1.0, 'be': 2.0, 'went': 1.0, 'type': 1.0, 'configure': 1.0, 'had': 1.0, '12': 1.0, 'what': 2.0, 'to': 9.0, 'was': 6.0, 'in': 6.0, 'love': 3.0, 'for': 2.0, 'old': 1.0, 'about': 2.0, '300': 1.0, 'an': 1.0, 'luck': 1.0, 'stroller': 2.0, 'entire': 1.0, 'me': 3.0, 'my': 8.0, 'opinion': 1.0, 'another': 1.0, 'baby': 1.0, '1': 1.0, 'person': 1.0, 'the': 9.0, 'of': 2.0, 'literally': 1.0, 'display': 1.0, 'helps': 2.0, '5': 1.0, '34': 3.0, 'countless': 1.0, '149lbs': 1.0, 'alone': 1.0, 'eagerness': 1.0, 'fitted': 1.0, 'lol': 1.0, 'if': 3.0, 'stuck': 1.0, 'reviews': 1.0, 'then': 1.0, 'riding': 1.0, 'quickly': 1.0, 'purchase': 2.0, 'options': 1.0, 's': 3.0, 'a': 2.0, 'can': 1.0, 'so': 1.0, 'hour': 1.0, 'figured': 1.0, 'personally': 1.0, 'took': 1.0, 'hit': 1.0, 'would': 1.0, 'dead': 1.0, 'felt': 1.0, 'super': 1.0, 'return': 1.0, 'it': 13.0, 'as': 1.0, 'horrible': 1.0, 'honest': 1.0, 'own': 1.0, 'dollar': 1.0, 'off': 1.0, 'tried': 1.0, 'year': 1.0, 'toddler': 1.0, 'out': 1.0, 'maneuver': 1.0, 'right': 2.0, 'away': 1.0, 'easy': 3.0, 'pictures': 1.0, 'put': 1.0, 'together': 1.0, 'just': 2.0, 'did': 1.0, 'mind': 1.0, 'half': 1.0}
Word element => {'rain': 1.0, 'repel': 1.0, 'seems': 1.0, 'holding': 1.0, 'hand': 1.0, 'unfold': 1.0, 'fold': 1.0, 'stopping': 1.0, 'constantly': 1.0, 'from': 1.0, 'assemble': 1.0, 'my': 2.0, 'easily': 1.0, 'that': 1.0, 'by': 1.0, 'carrier': 1.0, 'needed': 1.0, 'morning': 1.0, 'without': 1.0, 'her': 1.0, 'use': 1.0, 'front': 2.0, 's': 3.0, 'next': 1.0, 'needing': 1.0, 'this': 2.0, 'using': 1.0, 'platform': 1.0, 'pounds': 1.0, 'jeep': 1.0, 'orderd': 1.0, 'tray': 1.0, 'month': 1.0, 'only': 1.0, 'much': 1.0, 'y': 1.0, 'check': 1.0, 'liberty': 1.0, 'of': 1.0, 'the': 14.0, 'longer': 1.0, 'ear': 1.0, '50': 1.0, 'and': 4.0, 'one': 3.0, 'too': 2.0, '1': 2.0, 't': 2.0, 'fairly': 1.0, 'door': 1.0, 'saves': 1.0, 'want': 1.0, 'have': 2.0, '2': 1.0, 'but': 1.0, 'was': 3.0, 'crazy': 1.0, 'to': 10.0, 'fits': 1.0, 'all': 1.0, 'be': 2.0, 'old': 2.0, 'i': 8.0, 'sure': 1.0, 'while': 1.0, 'facing': 2.0, 'son': 1.0, 'still': 1.0, 'double': 1.0, 'squeak': 1.0, 'bearly': 1.0, 'akward': 1.0, 'not': 1.0, 'forward': 1.0, 'how': 1.0, 'our': 1.0, 'stroller': 3.0, 'didn': 1.0, 'even': 2.0, 'folds': 1.0, 'baby': 4.0, 'standing': 1.0, 'found': 1.0, 'easy': 2.0, 'bit': 1.0, 'material': 1.0, 'tricky': 1.0, 'when': 2.0, 'folded': 2.0, 'm': 1.0, 'seat': 1.0, 'in': 3.0, 'a': 4.0, 'manuver': 1.0, 'at': 1.0, 'is': 2.0, 'like': 4.0, 'hold': 1.0, 'on': 3.0, 'which': 1.0, 'side': 1.0, 'with': 4.0, 'steer': 1.0, 'very': 1.0, 'shallow': 1.0, 'im': 1.0, 'could': 1.0, 'will': 1.0, 'comfy': 1.0, 'tires': 1.0, 'infant': 1.0, '6': 1.0, 'mine': 1.0, 'it': 13.0, 'already': 1.0, 'able': 1.0, 'push': 1.0, 'you': 2.0, 'things': 1.0, 'don': 1.0, 'about': 1.0, 'really': 2.0}
Word element => {'versatile': 1.0, 'seen': 1.0, 'double': 1.0, 'of': 1.0, 'on': 1.0, 'it': 5.0, 'this': 1.0, 'weeks': 1.0, 'smallest': 1.0, 'back': 1.0, 'about': 1.0, 'strollers': 1.0, 'baby': 2.0, 'and': 4.0, 'just': 1.0, 'is': 3.0, 'little': 2.0, 'single': 1.0, 'most': 1.0, 'but': 2.0, '2': 1.0, 'in': 2.0, 'will': 1.0, 'also': 1.0, 'awesome': 1.0, 'that': 1.0, 'recently': 1.0, 'carseat': 1.0, 'buick': 1.0, 'due': 1.0, 'have': 3.0, 'old': 1.0, 'i': 5.0, 'took': 1.0, 'purchased': 1.0, 'to': 2.0, 'since': 1.0, 'one': 2.0, 'love': 1.0, 'fit': 1.0, 'for': 1.0, 'new': 2.0, 'yr': 1.0, 'the': 4.0, 'heavier': 1.0, 'having': 1.0, 'than': 1.0, 'canopy': 2.0, 'my': 3.0, 'be': 1.0, 'trunk': 1.0, 'expected': 1.0, 'a': 5.0, 's': 1.0, 'larger': 1.0, 'car': 1.0, 'off': 1.0, 'her': 2.0, 'own': 1.0}
Word element => {'person': 1.0, 'out': 1.0, 'check': 1.0, 'light': 1.0, 'compact': 1.0, 'something': 1.0, 'would': 2.0, 'wish': 1.0, 'on': 1.0, 'snap': 1.0, 'one': 1.0, 'car': 2.0, 'my': 1.0, 'not': 1.0, 'seat': 1.0, 'just': 1.0, 'work': 1.0, 'but': 2.0, 'stroller': 1.0, 'when': 1.0, 'buy': 1.0, 'i': 6.0, 'online': 1.0, 'works': 1.0, 'wouldn': 1.0, 'it': 3.0, 'gotten': 1.0, 'and': 3.0, 'need': 1.0, 'have': 2.0, 'very': 1.0, 'big': 1.0, 'is': 1.0, 'two': 1.0, 'little': 1.0, 'more': 1.0, 't': 1.0, 'heavy': 1.0, 'the': 3.0, 'ones': 1.0, 'else': 1.0, 'wanted': 1.0, 'to': 2.0, 'if': 1.0, 'bring': 1.0, 'in': 2.0, 'anyone': 1.0}
Word element => {'recommended': 1.0, 'maneuver': 1.0, 'highly': 1.0, 'and': 1.0, 'steer': 1.0, 'purchase': 1.0, 'assemble': 1.0, 'couldn': 1.0, 'great': 1.0, 'far': 1.0, 'easy': 2.0, 'use': 1.0, 'so': 1.0, 'happier': 1.0, 't': 1.0, 'to': 3.0, 'be': 1.0, 'with': 1.0, 'the': 1.0}
Word element => {'impressed': 1.0, 'products': 1.0, 'makes': 1.0, 'growth': 1.0, 'seems': 1.0, 'leaves': 1.0, 'comes': 1.0, 'easily': 1.0, 'turns': 1.0, 'store': 1.0, 'could': 1.0, 'which': 1.0, 'again': 1.0, 'wise': 1.0, 'wear': 1.0, 'showing': 1.0, 'at': 2.0, 'years': 1.0, 'sunshades': 1.0, 'when': 3.0, 'stand': 1.0, 'down': 2.0, 'sink': 1.0, 'your': 1.0, 'car': 3.0, 'instead': 2.0, 'needed': 2.0, 'in': 13.0, 'enjoyed': 3.0, 'brighter': 1.0, 'has': 2.0, 'daughter': 4.0, '21': 2.0, 'storage': 2.0, 'months': 3.0, 'want': 1.0, 'if': 6.0, 'them': 2.0, 'everything': 2.0, 'use': 4.0, 'or': 5.0, 'concerns': 1.0, 'not': 12.0, 'seat': 8.0, 'push': 1.0, 'get': 1.0, 'able': 2.0, 'easy': 5.0, 'know': 1.0, 'was': 3.0, 'times': 1.0, 'few': 1.0, 'this': 9.0, 'house': 2.0, 'stroller': 3.0, 'neighborhood': 1.0, 'place': 4.0, 'the': 35.0, 'even': 1.0, 'of': 13.0, 'one': 5.0, 'happy': 2.0, 'playground': 1.0, 'will': 3.0, 'extra': 1.0, 'kolcraft': 1.0, 'adjust': 1.0, 'trunk': 3.0, 'how': 1.0, 'remove': 2.0, 'anything': 1.0, 'month': 1.0, 'thought': 1.0, 'looked': 1.0, 'have': 9.0, 'underneath': 1.0, 'me': 3.0, 'you': 11.0, 'owned': 1.0, 'i': 23.0, 'upper': 2.0, 'daughters': 1.0, 'well': 4.0, 'two': 2.0, 'walks': 4.0, 'mom': 1.0, 'her': 3.0, 'little': 1.0, 'up': 3.0, 'child': 2.0, 'assembly': 1.0, 'than': 1.0, 'huge': 1.0, 'graco': 4.0, 'strollers': 2.0, 'am': 3.0, 'it': 22.0, 'be': 4.0, 'personally': 1.0, 'granted': 1.0, 'being': 4.0, 'cannot': 1.0, 'any': 1.0, 'lay': 1.0, 'to': 10.0, 'outside': 1.0, 'like': 3.0, 'rather': 1.0, 'care': 1.0, 'with': 7.0, 'using': 3.0, 'for': 14.0, 'carton': 1.0, 'go': 1.0, 'we': 2.0, 'take': 1.0, 'a': 15.0, 'around': 3.0, 'now': 2.0, 'neutral': 1.0, 'is': 9.0, 'can': 7.0, 'so': 5.0, 'used': 2.0, 'boy': 1.0, 'would': 3.0, 'girl': 1.0, 'pushing': 1.0, 'come': 1.0, 'future': 1.0, 'keep': 1.0, 'snugride': 1.0, 'large': 1.0, 'colors': 1.0, 'kitchen': 1.0, '80': 1.0, 'that': 4.0, 'because': 2.0, 'concerned': 1.0, 'into': 1.0, 'been': 1.0, 'box': 1.0, 'taking': 1.0, '3': 1.0, 'long': 1.0, 'park': 5.0, 'but': 5.0, 'friends': 1.0, 'pacifier': 1.0, 'do': 4.0, 'snapped': 1.0, 'walking': 3.0, 'think': 2.0, 'double': 1.0, 'expect': 1.0, 'big': 2.0, 'cart': 1.0, 'size': 4.0, 'she': 3.0, 'does': 4.0, 'mouth': 1.0, 'handy': 2.0, 'need': 2.0, 'also': 4.0, 'sitting': 1.0, 'wheels': 2.0, 'front': 1.0, 'mazda': 1.0, 'sit': 1.0, 'as': 5.0, 'see': 2.0, 'finish': 1.0, 'further': 1.0, 'away': 1.0, 'adjustable': 2.0, 'cup': 1.0, 'image': 1.0, 'reclining': 1.0, 'vibrant': 1.0, 'holders': 1.0, 'sunshade': 2.0, 'falls': 1.0, 'made': 2.0, 'and': 15.0, 'just': 1.0, 'asleep': 1.0, 'back': 1.0, 'stated': 1.0, 'sleep': 1.0, 'tools': 1.0, 'while': 1.0, 'love': 2.0, 'bottom': 1.0, 'fold': 3.0, 'had': 2.0, 'shopping': 1.0, 'lot': 5.0, 'terrible': 1.0, 'top': 1.0, 'very': 8.0, 'find': 1.0, 'good': 1.0, 'someone': 1.0, 'cheap': 1.0, 'only': 1.0, 'handles': 1.0, 'cons': 1.0, 'prepared': 1.0, 'space': 1.0, 'might': 1.0, 'basket': 1.0, 'adult': 1.0, 'an': 2.0, 'way': 1.0, 'all': 1.0, 'other': 1.0, 'they': 1.0, 'issue': 2.0, 'garage': 1.0, 'my': 11.0, 'are': 6.0, 'room': 1.0, 'say': 1.0, 'ride': 1.0, 'storing': 1.0, 'though': 1.0, 'after': 1.0}
Word element => {'of': 1.0, 'well': 1.0, 'value': 1.0, 'years': 1.0, 'both': 1.0, 'feels': 1.0, 'easy': 1.0, 'perfect': 1.0, 'him': 1.0, 'be': 1.0, 'serve': 1.0, 'secure': 1.0, 'will': 2.0, 'or': 2.0, 'ride': 2.0, 'not': 1.0, 'enough': 1.0, 'great': 1.0, 'big': 1.0, 'one': 1.0, 'little': 1.0, 'shallow': 1.0, 'couple': 1.0, 'newborn': 1.0, 'and': 3.0, 'old': 1.0, 'his': 1.0, 'year': 1.0, 'snug': 1.0, 'have': 1.0, 'expect': 1.0, 'anyway': 1.0, 'nearly': 1.0, 'assembly': 1.0, 'solid': 1.0, 'position': 2.0, 'double': 1.0, 'either': 1.0, 'standing': 1.0, 'what': 1.0, 'really': 1.0, 'is': 5.0, 'many': 1.0, 'front': 3.0, 'upper': 1.0, 'slightly': 1.0, 'fine': 1.0, 'isn': 1.0, 'was': 1.0, 'want': 1.0, 'if': 1.0, 'simple': 1.0, 'overall': 1.0, 'it': 3.0, 'fairly': 1.0, 'us': 1.0, 'offers': 1.0, 'do': 1.0, 'heavy': 1.0, 'the': 6.0, 'we': 1.0, 's': 1.0, 'a': 5.0, 't': 1.0, 'sits': 1.0, 'stroller': 1.0, 'sitting': 1.0, 'but': 3.0, 'put': 1.0, 'disappointed': 1.0, 'bench': 1.0, 'in': 4.0, 'next': 1.0, 'that': 1.0, 'usable': 1.0, 'facing': 1.0, 'son': 1.0, 'still': 1.0, 'you': 3.0, 'when': 2.0, 'car': 2.0, 'to': 2.0, 'as': 1.0, 'our': 2.0, 'seat': 5.0, 'rear': 4.0, 'yes': 1.0, 'options': 1.0, 'fit': 1.0, 'product': 1.0, 'where': 1.0, 'for': 4.0, 'option': 1.0, 'three': 1.0, 'who': 1.0}
Word element => {'bulky': 1.0, 'this': 1.0, 'flaw': 1.0, 'that': 1.0, 'kids': 1.0, 'space': 1.0, 'it': 4.0, 'i': 1.0, 'with': 2.0, 'is': 3.0, 'the': 3.0, 'heavy': 1.0, 'nice': 1.0, 'fact': 1.0, 'only': 1.0, 'grows': 1.0, 'and': 2.0, 'very': 2.0, 'like': 1.0, 'alot': 1.0, 'has': 1.0, 'of': 1.0}
Word element => {'over': 1.0, 'great': 1.0, 'big': 1.0, 'order': 1.0, 'in': 2.0, 'off': 1.0, 'tray': 1.0, 'take': 1.0, 'have': 1.0, 'crusier': 1.0, 'own': 1.0, 'is': 1.0, 'part': 1.0, 'bed': 1.0, 'used': 1.0, 'before': 1.0, 'what': 1.0, 'a': 3.0, 'we': 1.0, 'comfertable': 1.0, 'that': 2.0, 'the': 6.0, 'turns': 1.0, 'exactly': 1.0, 'would': 1.0, 'it': 3.0, 'this': 2.0, 'its': 2.0, 'only': 1.0, 'and': 3.0, 'me': 1.0, 'put': 1.0, 'stroller': 2.0, 'together': 1.0, 'was': 2.0, 'all': 1.0, 'to': 3.0, 'looking': 1.0, 'but': 1.0, 'can': 1.0, 'than': 1.0, 'use': 1.0, 'easy': 1.0, 'needed': 1.0, 'i': 3.0, 'fit': 1.0, 'pt': 1.0, 'for': 2.0, 'seating': 1.0, 'makes': 1.0, 'smaller': 1.0, 'so': 1.0, 'time': 1.0, 'trunk': 1.0, 'easier': 1.0, 'has': 1.0, 'little': 1.0, 'single': 1.0, 'very': 1.0, 'cars': 1.0, 'son': 1.0, 'happy': 1.0, 'cause': 1.0, 'my': 2.0, 'daught': 1.0, 'sit': 1.0, 'at': 1.0, 'space': 1.0, 'same': 1.0, 'also': 1.0, 'knew': 1.0, 'be': 1.0}
Word element => {'him': 1.0, 'reajusting': 1.0, 'to': 1.0, 'have': 1.0, 'i': 1.0, 'so': 1.0, 'keep': 1.0, 'seat': 1.0, 'on': 1.0, 'with': 1.0, 'is': 1.0, 'front': 1.0, 'child': 1.0, 'slides': 1.0, 'and': 1.0, 'the': 1.0, 'small': 1.0, 'my': 1.0, 'belt': 1.0, 'down': 1.0, 'even': 1.0}
Word element => {'trunk': 1.0, 'to': 1.0, 'difficult': 1.0, 'heavy': 1.0, 'bulky': 1.0, 'it': 1.0, 'that': 1.0, 'definitely': 1.0, 'needs': 1.0, 'fits': 1.0, 'the': 1.0, 'my': 1.0, 'and': 1.0, 'quite': 1.0, 'only': 1.0, 'in': 1.0, 'd': 1.0, 'complaint': 1.0, 'i': 1.0, 'fit': 1.0, 'have': 1.0, 'now': 1.0, 'is': 2.0}
Word element => {'m': 1.0, 'there': 1.0, 'with': 1.0, 'still': 1.0, 'happy': 1.0, 'home': 1.0, 'away': 2.0, 'few': 1.0, 'lucky': 1.0, 'apart': 1.0, 'an': 1.0, 'back': 1.0, 'way': 1.0, 'on': 1.0, 'walk': 1.0, 'baby': 1.0, 'take': 1.0, 'pleased': 1.0, 'used': 1.0, 'product': 1.0, 'for': 2.0, 'better': 1.0, 'feet': 1.0, 'concern': 1.0, 'been': 2.0, 'shipped': 1.0, 'have': 1.0, 'too': 1.0, 'and': 2.0, 'wheel': 1.0, 'do': 1.0, 'from': 1.0, 'while': 2.0, 'took': 1.0, 'whole': 1.0, 'me': 1.0, 'not': 4.0, 'was': 4.0, 'our': 1.0, 'all': 1.0, 'to': 3.0, 'fell': 1.0, 'it': 8.0, 'this': 1.0, 'first': 1.0, 'giving': 1.0, 'be': 2.0, 's': 1.0, 'we': 1.0, 'a': 5.0, 'were': 1.0, 'pieces': 1.0, 'entire': 1.0, 'huge': 1.0, 'months': 1.0, '9': 1.0, 'gift': 1.0, 'assembled': 2.0, 'the': 3.0, 'are': 1.0, 'plasic': 1.0, 'am': 1.0, 'you': 1.0, 'of': 2.0, 'which': 1.0, 'thinking': 1.0, 'i': 6.0, 'complicated': 1.0, 'fan': 1.0, 'what': 1.0, 'sitting': 1.0, 'pregnant': 1.0, 'but': 2.0, 'can': 1.0, 'however': 1.0, 'my': 1.0, 'would': 1.0, 'biggest': 1.0, 'day': 1.0}
Word element => {'3': 1.0, 'actually': 1.0, 'the': 1.0, 'reach': 1.0, 'and': 2.0, 'my': 3.0, 'push': 1.0, 'stroller': 1.0, 'easy': 1.0, 'steer': 1.0, 'this': 1.0, 'to': 1.0, 'how': 1.0, 'being': 1.0, 'is': 1.0, 'love': 1.0, 'month': 2.0, 'can': 1.0, '20': 1.0, 'enjoys': 1.0, 'old': 2.0, 'i': 1.0, 'in': 2.0, 'seat': 1.0, 'keep': 1.0}
Word element => {'or': 1.0, 'won': 1.0, 'hope': 1.0, 'appropriate': 1.0, 'more': 1.0, 'anyway': 1.0, 'oldest': 1.0, 'entertained': 1.0, 'surprised': 1.0, 'keeps': 1.0, 'both': 1.0, 'which': 1.0, 'footrest': 1.0, 'bar': 1.0, 'price': 1.0, 'year': 1.0, 'options': 1.0, 'harness': 1.0, 'doesn': 1.0, 'lots': 1.0, 'reclined': 1.0, 'since': 2.0, 'trunk': 1.0, 'lack': 1.0, 'his': 3.0, 'don': 1.0, 'close': 1.0, 'so': 1.0, 'strength': 1.0, 'can': 2.0, 'son': 1.0, 'love': 2.0, 'though': 1.0, 'carrier': 1.0, 'beyond': 1.0, 'space': 1.0, 'note': 1.0, 'with': 2.0, 't': 3.0, 'fit': 1.0, 'secure': 1.0, 'than': 1.0, 'way': 1.0, 'you': 1.0, 'but': 5.0, 'longer': 1.0, 'of': 3.0, 'the': 16.0, 'youngest': 3.0, 'yr': 2.0, 'on': 4.0, 'maneuverable': 1.0, '4': 3.0, 'extra': 1.0, 'another': 1.0, 'to': 7.0, 'as': 3.0, 'have': 3.0, '2': 2.0, 'begin': 1.0, 'back': 1.0, 'pay': 1.0, 'awesome': 1.0, 'about': 2.0, 'worry': 1.0, 'say': 1.0, 'handle': 1.0, 'is': 10.0, 'brother': 1.0, 'cortina': 1.0, 'got': 1.0, 'in': 4.0, 'seat': 3.0, 'm': 1.0, 'd': 1.0, 'and': 12.0, 'rear': 2.0, 'too': 1.0, 'not': 1.0, 'hang': 1.0, 'there': 1.0, 'give': 1.0, 'jumping': 1.0, 'all': 1.0, 'an': 1.0, 'this': 2.0, 'family': 1.0, 'perfect': 2.0, '30': 1.0, 'old': 3.0, 'intended': 1.0, 'if': 1.0, 'expecting': 1.0, 'was': 1.0, 'no': 1.0, 'chicco': 2.0, 'let': 1.0, 'safety': 1.0, 'improvement': 1.0, 'see': 1.0, 'off': 2.0, 'be': 2.0, 'leg': 1.0, 'we': 13.0, 'a': 3.0, 'tell': 1.0, 'turns': 2.0, 'after': 1.0, 'tray': 1.0, 'just': 2.0, 'cerebral': 1.0, 'disappointed': 1.0, 'our': 8.0, 'stroller': 5.0, 'how': 1.0, 'sit': 1.0, 'when': 1.0, 'what': 1.0, 'two': 1.0, 'palsy': 1.0, 'had': 1.0, 'shade': 1.0, 'it': 10.0, 'recline': 1.0, 'thought': 1.0, 'before': 1.0, 'used': 1.0, 'always': 1.0, 'has': 2.0, 'baby': 2.0, 'started': 1.0, 'dec': 1.0, 'compact': 1.0, 'us': 2.0, 'graco': 2.0, 'my': 1.0, 'me': 1.0, 'keyfit': 1.0, 'duoglider': 2.0, 'loved': 1.0, 'much': 3.0, 'previous': 1.0, 'sitting': 1.0, 'wheels': 1.0, 'out': 3.0, 'growing': 1.0, 'front': 2.0, 'feet': 1.0, 'i': 2.0, 'broke': 1.0, 'boys': 2.0, 'are': 1.0, 'blessing': 1.0, 'twice': 1.0, 'disguise': 1.0, 'lasts': 1.0, 'that': 3.0, 'because': 1.0, 'for': 6.0, 'carseat': 1.0, 'new': 1.0, 'single': 1.0, 'originally': 1.0, 'almost': 1.0, 'double': 1.0}
Word element => {'baby': 1.0, 'sitting': 1.0, 'to': 1.0, 'multiple': 1.0, 'toddler': 1.0, 'along': 1.0, 'riding': 1.0, 'this': 1.0, 'perfect': 1.0, 'it': 1.0, 'choices': 1.0, 'for': 1.0, 'gives': 1.0, 'with': 1.0, 'is': 1.0, 'on': 1.0, 'the': 2.0, 'my': 2.0, 'move': 1.0, 'family': 1.0, 'as': 1.0}
Word element => {'workout': 1.0, 'ab': 1.0, 'this': 1.0, 'steering': 2.0, 'wheels': 1.0, 'wanted': 1.0, 'and': 2.0, 'nice': 1.0, 'but': 1.0, 'stroller': 1.0, 'we': 1.0, 'everything': 1.0, 'is': 3.0, 'the': 2.0, 'start': 1.0, 'beast': 1.0, 'fast': 1.0, 'complete': 1.0, 'going': 1.0, 'then': 1.0, 'no': 1.0, 'fun': 1.0, 'bad': 1.0, 'front': 1.0, 'a': 1.0}
Word element => {'otherwise': 1.0, 'that': 1.0, 'car': 1.0, 'graco': 1.0, 'get': 1.0, 'and': 1.0, 'will': 1.0, 'toddler': 1.0, 'suggest': 1.0, 'for': 1.0, 'you': 3.0, 'if': 1.0, 'far': 1.0, 'up': 1.0, 'as': 1.0, 'two': 1.0, 'fit': 1.0, 'new': 1.0, 'may': 1.0, 'facing': 1.0, 'a': 3.0, 'smaller': 1.0, 'states': 1.0, 'i': 1.0, 'positions': 1.0, 'want': 1.0, 'rear': 1.0, 'be': 1.0, 'product': 1.0, 'to': 2.0, 'sits': 1.0, 'the': 3.0, 'has': 1.0, 'adjust': 1.0, 'this': 2.0, 'it': 3.0, 'can': 1.0, 'does': 1.0, 'seat': 3.0, 'description': 1.0, 'not': 2.0, 'born': 1.0, 'sit': 1.0, 'disappointed': 1.0, 'newborn': 1.0, 'in': 2.0}
Word element => {'doesnt': 1.0, 'just': 1.0, 'idea': 1.0, 'become': 1.0, 'after': 1.0, 'issue': 1.0, 'more': 1.0, 'place': 1.0, 'have': 1.0, 'shooving': 1.0, 'older': 1.0, 'places': 1.0, 'go': 1.0, 'a': 11.0, 'then': 1.0, 'we': 1.0, 'cool': 1.0, 'car': 1.0, 'purpose': 1.0, 'trunk': 1.0, 'has': 2.0, 'fit': 1.0, 'bummed': 1.0, 'would': 2.0, 'my': 3.0, 'downside': 2.0, 'using': 1.0, 'big': 1.0, 'spend': 1.0, 'totally': 1.0, 'not': 4.0, 'double': 1.0, 'friend': 1.0, 'since': 2.0, 'that': 4.0, 'because': 2.0, 'does': 1.0, 'but': 3.0, 'money': 1.0, 'stroller': 3.0, 'in': 4.0, 'seat': 5.0, 'is': 9.0, 'want': 1.0, 'if': 1.0, 'really': 3.0, 'didnt': 1.0, 'plus': 1.0, 'for': 1.0, 'reclines': 1.0, 'kids': 1.0, 'it': 8.0, 'recline': 2.0, 'whole': 1.0, 'no': 1.0, 'i': 5.0, 'was': 4.0, 'as': 1.0, 'crazy': 1.0, 'wanted': 1.0, 'liked': 1.0, 'options': 1.0, 'long': 1.0, 'amount': 1.0, 'wheel': 1.0, 'ownership': 1.0, 'inconvienence': 1.0, 'of': 4.0, 'the': 16.0, 'constantly': 1.0, 'so': 1.0, 'recommend': 1.0, 'were': 1.0, 'market': 1.0, 'mini': 2.0, 'van': 2.0, 'and': 5.0, 'got': 1.0, 'even': 1.0, 'try': 1.0, 'ones': 1.0, '2nd': 1.0, 'one': 3.0, 'get': 1.0, 'months': 1.0, 'this': 3.0, 'cant': 1.0, 'couple': 1.0, 'wobbly': 1.0, 'later': 1.0, 'tricky': 1.0, 'trying': 1.0, 'all': 1.0, 'other': 1.0, 'major': 1.0, 'lasting': 1.0, 'upper': 1.0, 'when': 2.0, 'sit': 2.0, 'stand': 1.0, 'front': 3.0, 'picked': 1.0, 'reclined': 1.0, 'year': 1.0, 'child': 1.0, 'work': 1.0, 'over': 1.0, 'back': 2.0, 'struggle': 1.0, 'with': 1.0, 'two': 1.0, 'little': 1.0, 'son': 1.0, 'wants': 1.0, 'to': 7.0, 'lie': 1.0, 'he': 1.0, 'tired': 1.0}
Word element => {'hassle': 1.0, 'much': 1.0, 'off': 1.0, 'now': 1.0, 'sooner': 1.0, 'like': 1.0, 'something': 1.0, 'cart': 1.0, 'happy': 1.0, 'extreamly': 1.0, 'smoothly': 1.0, 'very': 1.0, 'rides': 1.0, 'options': 1.0, 'thought': 1.0, 'standing': 1.0, 'seating': 1.0, 'many': 2.0, 'don': 1.0, 'they': 1.0, 'are': 1.0, 'together': 1.0, 'year': 1.0, 'and': 4.0, '1': 1.0, 'get': 2.0, 'taking': 1.0, 'without': 1.0, 'place': 1.0, 'the': 1.0, 'possibly': 1.0, 'old': 2.0, 'positions': 1.0, 'i': 6.0, '4': 1.0, 'got': 1.0, 'kids': 1.0, 'wish': 1.0, 'this': 3.0, 'hard': 1.0, 'love': 1.0, 'for': 1.0, 'normally': 1.0, 'it': 5.0, 'month': 1.0, 'doubles': 1.0, 'every': 1.0, 'amazing': 1.0, 'heavy': 1.0, 'stroller': 1.0, 'option': 1.0, 'have': 2.0, 'because': 1.0, 'them': 1.0, 'carry': 1.0, 'overall': 1.0, 'places': 1.0, 'has': 2.0, '20': 1.0, '5': 1.0, 'different': 2.0, '2': 1.0, 'but': 2.0, 'can': 3.0, 'or': 1.0, 'stoller': 1.0, 'is': 2.0, 'nephew': 1.0, 'that': 2.0, 'to': 2.0, 'as': 1.0, 'all': 1.0, 'any': 1.0, 'graco': 1.0, 'carseat': 1.0, 'am': 1.0, 'you': 1.0, 't': 1.0, 'a': 2.0, 'could': 1.0, 'think': 1.0, 'of': 1.0}
Word element => {'r': 1.0, 'that': 1.0, 'ols': 1.0, 'lbs': 1.0, '4': 1.0, '26': 1.0, 'for': 1.0, 'both': 1.0, 'works': 1.0, 'is': 1.0, 'old': 1.0, 'i': 3.0, 'far': 1.0, 'stroller': 3.0, 'but': 1.0, 'it': 1.0, 'n': 2.0, 'this': 2.0, 'have': 1.0, 'alot': 1.0, 'of': 1.0, '6': 1.0, 'had': 3.0, 'wish': 1.0, 'years': 1.0, 'when': 1.0, 'by': 1.0, '2': 1.0, 'great': 1.0, 'the': 1.0, 'ago': 1.0, 'my': 3.0, 'year': 2.0, 'best': 1.0, 'ever': 1.0, 'they': 1.0, 'twins': 1.0}
Word element => {'approved': 1.0, 'home': 1.0, 'really': 1.0, 'most': 1.0, 'think': 1.0, 'walking': 1.0, 'short': 1.0, '6': 1.0, 'give': 1.0, 'parks': 1.0, 'grass': 1.0, 'times': 1.0, 'issue': 1.0, 'platform': 1.0, 'chance': 1.0, 'stand': 1.0, 'didn': 1.0, 'wife': 1.0, 'other': 1.0, 'all': 1.0, 'no': 1.0, 'highlander': 1.0, 'be': 2.0, 'least': 1.0, 'bother': 1.0, 'hatch': 1.0, 'trunk': 2.0, 'large': 1.0, 'car': 2.0, 'or': 2.0, 'dad': 1.0, 'truck': 1.0, 'warning': 1.0, 'move': 1.0, 'regular': 1.0, 'relatively': 1.0, 'than': 1.0, 'plan': 1.0, 'good': 1.0, 'returning': 1.0, 'bit': 1.0, 'easy': 2.0, 'was': 1.0, 'tell': 1.0, 'as': 1.0, 'use': 1.0, 'her': 1.0, 'immediately': 1.0, 'second': 1.0, 'little': 1.0, 'enough': 1.0, 'manage': 1.0, 'stay': 1.0, 'if': 3.0, 'asked': 1.0, 'still': 2.0, 'problem': 1.0, 'brake': 1.0, 'though': 3.0, '7': 1.0, 'around': 1.0, 'his': 2.0, 'room': 1.0, 'one': 4.0, 'lot': 1.0, 'offer': 1.0, 'likely': 1.0, 'small': 1.0, 'a': 12.0, 'month': 1.0, 'wheels': 1.0, 'sitting': 1.0, 'but': 4.0, 'drive': 1.0, 'work': 1.0, 'old': 1.0, 'whole': 1.0, 'well': 1.0, 'i': 13.0, 'when': 3.0, 'strollers': 1.0, 'am': 2.0, 'on': 6.0, '3': 1.0, 'make': 1.0, 'and': 5.0, 'rides': 2.0, 'almost': 2.0, 'now': 1.0, 'high': 1.0, 'pretty': 1.0, 'to': 13.0, 'not': 5.0, 'can': 1.0, 'ask': 1.0, 'shade': 1.0, 'it': 14.0, 'him': 7.0, 'would': 3.0, 'recommendation': 1.0, 'always': 1.0, 'has': 4.0, 'prefer': 1.0, 'been': 2.0, 'difficult': 1.0, 'more': 2.0, 'he': 7.0, 'transporting': 1.0, 's': 4.0, 'sense': 2.0, 'seat': 3.0, 'in': 3.0, 'step': 1.0, 'doesn': 2.0, 'our': 1.0, 'arg': 1.0, 'stroller': 6.0, 'may': 2.0, 'my': 3.0, 'riding': 2.0, 'you': 4.0, 'able': 1.0, 'push': 1.0, 'oh': 1.0, 'with': 5.0, 'people': 1.0, 'ft': 1.0, 'half': 1.0, 'mind': 3.0, 'this': 5.0, 'very': 1.0, 'himself': 1.0, 'keep': 1.0, 'did': 1.0, 'sister': 1.0, 'that': 2.0, 'because': 1.0, 'graco': 2.0, 'about': 2.0, 'walk': 1.0, 'behind': 1.0, 'case': 1.0, 'seen': 1.0, 'cup': 1.0, 'also': 1.0, 'could': 1.0, 'will': 1.0, 'kick': 1.0, 'had': 3.0, 'longer': 1.0, 'doing': 1.0, 'of': 2.0, 'the': 11.0, 'liked': 1.0, 'myself': 1.0, 'camry': 1.0, 'install': 1.0, 'holder': 1.0, 'for': 8.0, 't': 6.0, 'fit': 2.0, 'figured': 1.0, 'get': 1.0, 'tall': 1.0, 'time': 1.0, 'model': 1.0, 'out': 1.0, 'thing': 1.0, 'suv': 2.0, 'bump': 1.0, 'head': 1.0, 'while': 1.0, 'certain': 1.0, 'don': 3.0, 'have': 3.0, 'look': 1.0, 'at': 4.0, 'is': 6.0, 'snug': 1.0, 'standing': 3.0, 'unit': 1.0, 'only': 1.0, 'whatever': 1.0, 'onto': 1.0, 'we': 2.0, 'take': 1.0, 'off': 1.0, 'larger': 2.0, 'son': 1.0, 'canopy': 2.0}
Word element => {'for': 1.0, 'still': 3.0, 'holding': 1.0, 'graco': 1.0, 'm': 1.0, 'it': 2.0, 'with': 1.0, 'this': 2.0, 'singler': 1.0, 'my': 1.0, 're': 1.0, 'i': 5.0, 'order': 1.0, 'so': 1.0, 'previously': 1.0, 'reliability': 1.0, 'needed': 1.0, 'having': 2.0, 'because': 1.0, 'and': 4.0, 'buy': 1.0, 'ease': 1.0, 'double': 1.0, 'you': 2.0, 'second': 2.0, 'is': 2.0, 's': 2.0, 'a': 6.0, 'what': 1.0, 'stroller': 2.0, 'champ': 1.0, 'toddler': 1.0, 'of': 2.0, 'know': 1.0, 'like': 2.0, 'went': 1.0, 'literally': 1.0, 'new': 1.0, 'one': 1.0, 'bought': 1.0, 'the': 3.0, 'great': 1.0, 'child': 2.0, 'up': 1.0, 'assembly': 1.0, 'brand': 1.0, 'if': 1.0, '1st': 1.0}
Word element => {'of': 1.0, 'so': 1.0, 'to': 1.0, 'patience': 1.0, 'lots': 1.0, 'assemble': 1.0, 'bought': 1.0, 'make': 1.0, 'my': 1.0, 'and': 1.0, 'have': 2.0, 'loved': 1.0, 'his': 1.0, 'for': 1.0, 'sister': 1.0, 'you': 2.0, 'do': 1.0, 'she': 1.0, 'sure': 1.0, 'it': 2.0}
Word element => {'invest': 1.0, 'take': 1.0, 'are': 1.0, 'kids': 1.0, 'want': 1.0, 'heavy': 1.0, 'after': 1.0, 'a': 1.0, 'from': 1.0, 'okay': 1.0, 'got': 1.0, 'just': 1.0, 'everytime': 1.0, 'bar': 1.0, 'standing': 1.0, 'hit': 1.0, 'flipped': 1.0, 'walk': 2.0, 'little': 1.0, 'tripping': 1.0, 'facing': 1.0, 'she': 1.0, 'it': 3.0, 'children': 1.0, 'pushing': 1.0, 'that': 2.0, 'daughter': 1.0, 'for': 1.0, 'the': 9.0, 'is': 3.0, 'one': 2.0, 'uncomfortable': 1.0, 'stroller': 2.0, 'worst': 1.0, 'forward': 1.0, 'top': 1.0, 'back': 3.0, 'because': 1.0, 'of': 4.0, 'car': 2.0, 'i': 2.0, 'junk': 1.0, 'money': 1.0, 'sitting': 1.0, 'advise': 1.0, 'and': 6.0, 'when': 3.0, 'you': 2.0, 'thank': 1.0, 'unsafe': 1.0, 'another': 1.0, 'god': 1.0, 'my': 5.0, 'baby': 1.0, 'both': 1.0, 'her': 2.0, 'off': 1.0, 'almost': 1.0, '1st': 1.0, 'so': 1.0, 'upright': 1.0, 'feet': 1.0, 'newborn': 1.0, 'in': 1.0, 'chokes': 1.0, 'your': 1.0, 'on': 2.0, 'positioning': 1.0, 'head': 2.0, 'neck': 1.0, 'all': 1.0, 'seat': 3.0, 'as': 1.0, 'improper': 1.0, 'falls': 1.0, 'complains': 1.0, 'other': 1.0, 'piece': 1.0, 'jabs': 1.0}
Word element => {'single': 1.0, 'prefer': 1.0, 'great': 1.0, 'still': 1.0, 'years': 1.0, '1': 1.0, 'had': 1.0, 'now': 1.0, 'june': 1.0, 'connect': 1.0, 'classic': 1.0, 'ready2grow': 1.0, 'amazon': 1.0, 'here': 1.0, 'impressed': 1.0, 'around': 1.0, 'time': 1.0, 'wanted': 1.0, 'above': 1.0, 'loved': 1.0, 'past': 1.0, 'regular': 1.0, 'used': 1.0, 've': 2.0, 'we': 1.0, 'cons': 2.0, 'using': 1.0, 'platform': 1.0, 'this': 3.0, 'graco': 4.0, 'super': 2.0, 'folds': 1.0, 'wasn': 1.0, 'standing': 1.0, 'mini': 1.0, 'click': 2.0, 'to': 7.0, 'infant': 1.0, 'options': 1.0, 'different': 2.0, 'last': 1.0, 'up': 1.0, '34': 2.0, 'get': 1.0, 'tons': 1.0, 'pros': 1.0, 'very': 4.0, 'see': 1.0, 'access': 1.0, 'sturdy': 1.0, 'for': 4.0, 'seat': 5.0, 'm': 1.0, 'in': 5.0, 'a': 5.0, 't': 2.0, 'use': 1.0, 'lx': 1.0, 'front': 2.0, 'our': 2.0, 'stroller': 8.0, 'but': 2.0, 'terrible': 1.0, '2': 2.0, 'because': 1.0, 'easily': 1.0, 'car': 1.0, 'again': 1.0, 'barely': 1.0, 'like': 1.0, 'tray': 2.0, 'listed': 1.0, 'and': 8.0, 'try': 1.0, 'pattern': 1.0, 'probably': 1.0, 'kiddos': 1.0, 'oasisupdate': 1.0, 'old': 1.0, 'point': 1.0, 'bought': 1.0, 'jump': 2.0, 'fast': 1.0, 'i': 5.0, '2014we': 1.0, 'something': 1.0, '2012': 1.0, 'buy': 1.0, 'it': 7.0, 'shade': 1.0, 'parent': 1.0, 'boys': 1.0, 'are': 1.0, 'seating': 1.0, 'useful': 1.0, '5': 2.0, 'child': 1.0, 'year': 1.0, 'harnesses': 1.0, 'nice': 1.0, 'girls': 1.0, 'or': 1.0, 'shape': 1.0, 'storage': 1.0, 'position': 1.0, 'difficult': 2.0, 'into': 1.0, 'large': 1.0, 'just': 1.0, 'of': 3.0, 'the': 4.0, 'heavier': 1.0, 'brake': 1.0, 'is': 8.0, 'at': 2.0, 'constantly': 1.0, 'both': 1.0, 'kicking': 1.0, 'basket': 2.0, 'shallow': 1.0, 'an': 1.0, 'fits': 1.0, 's': 4.0, 'van': 1.0, 'than': 1.0, 'double': 2.0, 'canopies': 1.0, 'easy': 1.0, 'bit': 1.0, 'out': 1.0, 'overall': 1.0, 'wouldn': 1.0, 'ok': 1.0}
Word element => {'car': 1.0, 'up': 1.0, 'guided': 1.0, 'that': 1.0, 'straight': 1.0, 'forward': 1.0, 'and': 1.0, 'delivery': 1.0, 'assembling': 1.0, 'time': 1.0, 'carry': 1.0, 'some': 1.0, 'quite': 1.0, 'took': 1.0, 'by': 1.0, 'user': 1.0, 'as': 1.0, 'menu': 1.0, 'love': 1.0, 'it': 1.0, 'design': 1.0, 'down': 1.0, 'except': 1.0, 'rather': 1.0, 'the': 3.0, 'heavy': 1.0, 'was': 2.0, 'to': 1.0}
Word element => {'storage': 1.0, 'there': 1.0, 'because': 1.0, 'water': 2.0, 'hold': 1.0, 'caribiner': 1.0, 'use': 1.0, 'on': 1.0, 'little': 1.0, 'phone': 1.0, 'attached': 1.0, 'have': 1.0, 'friend': 1.0, 'nice': 1.0, 'so': 1.0, 'etc': 1.0, 'works': 1.0, 'bag': 1.0, 'month': 1.0, 'keys': 1.0, 'double': 1.0, 'perfect': 1.0, 'stroller': 2.0, 'it': 2.0, 'this': 2.0, 'my': 2.0, 'limited': 1.0, 'is': 2.0, 'the': 3.0, '2': 2.0, 'parents': 1.0, 'handle': 1.0, 'love': 1.0, 'for': 2.0, 'year': 1.0, 'to': 2.0, 'and': 2.0, 'old': 2.0, 'i': 3.0, 'would': 1.0, 'recommend': 1.0, 'a': 3.0}
Word element => {'sindy': 1.0, 'yourselves': 1.0, 'thanx': 1.0, 'shops': 1.0, 'our': 1.0, 'test': 1.0, 'out': 1.0, 'outdone': 1.0, 'excited': 1.0, 'im': 1.0, 'graco': 2.0, 'current': 1.0, 'go': 1.0, 'lighter': 1.0, 'little': 1.0, 'drives': 1.0, 'have': 4.0, 'even': 1.0, 'but': 1.0, 'seems': 1.0, 'tried': 1.0, 'hatch': 1.0, 'october': 2.0, 'plan': 1.0, 'is': 5.0, 'smash': 1.0, 'car': 1.0, 'my': 1.0, 'not': 1.0, 'seater': 1.0, 'make': 1.0, 'think': 1.0, 'on': 1.0, 'fit': 1.0, 'pram': 3.0, 'dont': 1.0, 'and': 5.0, 'its': 1.0, 'a': 7.0, 'tiny': 1.0, 'nissa': 1.0, 'to': 7.0, 'easy': 1.0, 'only': 1.0, 'south': 2.0, 'awesome': 1.0, 'shove': 1.0, 'seat': 1.0, 'in': 7.0, 'train': 1.0, 'it': 5.0, 'will': 1.0, 'product': 1.0, 'pocketing': 1.0, 'pain': 1.0, 'set': 1.0, 'super': 2.0, 'no': 2.0, 'instructions': 1.0, 'front': 1.0, 'hi': 1.0, 'i': 7.0, 'with': 4.0, 'mind': 1.0, '10min': 1.0, 'if': 2.0, 'being': 2.0, 'did': 1.0, 'than': 1.0, 'reach': 1.0, 'push': 1.0, 'wickedly': 1.0, 'you': 2.0, 'am': 1.0, 'dream': 1.0, 'ever': 1.0, 'one': 1.0, 'so': 1.0, 'can': 1.0, 'comparison': 1.0, 'from': 1.0, 'drive': 1.0, 'hard': 1.0, 'woman': 1.0, 'africa': 2.0, 'pick': 1.0, 'holder': 1.0, 'crime': 1.0, 'here': 1.0, 'put': 1.0, 'butt': 1.0, 'quite': 1.0, 'like': 2.0, '29th': 1.0, 'hold': 1.0, 'storage': 1.0, '2': 1.0, 'compartment': 1.0, 'ordered': 1.0, 'delivery': 1.0, 'was': 2.0, 'blowing': 1.0, '24th': 1.0, 'the': 9.0, 'of': 1.0, 'problem': 1.0, 'delivered': 1.0, 'another': 1.0, 'tiida': 1.0, 'stoked': 1.0, 'find': 1.0, 'cup': 1.0, 'that': 4.0, 'deep': 1.0, 'enough': 1.0, 'up': 1.0, 'water': 1.0, 'this': 3.0, 'bottle': 1.0, 'finally': 1.0}
Word element => {'negative': 1.0, 'couldn': 1.0, 'time': 1.0, 'forecaster': 1.0, 'load': 1.0, 'love': 1.0, 'fold': 1.0, 'before': 2.0, 'excellent': 1.0, 'really': 2.0, 'should': 3.0, 'this': 2.0, 'wimp': 1.0, 'ok': 1.0, 'cuff': 1.0, 'release': 1.0, 'hold': 1.0, 'strong': 1.0, 'man': 1.0, 'operation': 1.0, 'handed': 1.0, 'doubts': 1.0, 'sort': 2.0, 'etc': 1.0, 'toys': 1.0, 'snacks': 1.0, 'are': 1.0, 'kids': 3.0, 'both': 1.0, 'when': 1.0, 'bag': 1.0, 'out': 2.0, 'dragging': 1.0, 'get': 1.0, 'trouble': 1.0, 'basket': 1.0, 'issue': 2.0, 'handy': 1.0, 'velcro': 1.0, 'hair': 1.0, 'pads': 1.0, 'toes': 1.0, 'with': 1.0, 'asleep': 1.0, 'gravel': 1.0, 'latch': 2.0, 'underneath': 1.0, 'design': 1.0, 'duel': 1.0, 'easy': 1.0, 'grass': 1.0, 'classy': 1.0, 'rough': 1.0, 'rust': 1.0, 'handles': 1.0, 'large': 2.0, 'between': 1.0, 'around': 1.0, 'stroller': 7.0, 'one': 4.0, 'tray': 1.0, 'hand': 2.0, 'mess': 1.0, 'rotate': 1.0, 'up': 3.0, 'assembly': 1.0, 'sound': 1.0, 'shoulder': 1.0, 'don': 4.0, 'it': 6.0, 'very': 5.0, 'two': 2.0, 'little': 2.0, 'inches': 2.0, 'taupe': 1.0, 'trays': 1.0, 'so': 3.0, 'hear': 1.0, 'amazon': 1.0, 'been': 2.0, 'their': 1.0, 'wheels': 2.0, 'threat': 1.0, 'any': 1.0, 'your': 1.0, 'words': 1.0, 'will': 1.0, 'could': 1.0, 'slight': 1.0, 'a': 15.0, 'maybe': 2.0, 's': 2.0, 'came': 1.0, 'might': 2.0, 'snap': 2.0, 'grabbing': 1.0, 're': 5.0, 'see': 1.0, 'until': 1.0, 'off': 1.0, 'like': 2.0, 'price': 1.0, 'year': 2.0, 'find': 1.0, 'subtle': 1.0, 'required': 2.0, 'button': 1.0, 'schlepping': 1.0, 'my': 2.0, 'me': 2.0, 'some': 1.0, 'no': 1.0, 'stowed': 1.0, 'about': 4.0, 'relax': 1.0, 'diaper': 1.0, 'heavy': 1.0, 'universal': 1.0, 'seats': 2.0, 'just': 2.0, 'i': 11.0, 'well': 1.0, 'want': 1.0, 'would': 1.0, 'have': 10.0, '43': 1.0, '16': 1.0, 'pictures': 1.0, 'and': 8.0, 'anyone': 1.0, 'axle': 1.0, 'be': 2.0, 'built': 1.0, 'trust': 1.0, 'used': 1.0, 'set': 2.0, 'death': 1.0, 'anything': 2.0, 'without': 2.0, 'coats': 1.0, 'use': 2.0, 'tools': 1.0, 'old': 2.0, 'easily': 1.0, 'admit': 1.0, 'terrain': 1.0, 'twins': 1.0, 'follow': 1.0, 'the': 23.0, 'of': 5.0, 'there': 4.0, 'print': 1.0, 'but': 2.0, 'to': 8.0, 'in': 1.0, 'm': 1.0, 'seat': 3.0, 'maneuver': 1.0, 'll': 2.0, 'push': 2.0, 'you': 15.0, 'able': 1.0, 'at': 2.0, 'look': 1.0, 'is': 5.0, 'handle': 1.0, 'for': 4.0, 't': 5.0, 'fit': 1.0, 'car': 2.0, 'consider': 1.0, 'on': 2.0, 'long': 1.0, 'front': 2.0, 'safely': 1.0, 'infant': 2.0, 'bonnets': 1.0, 'sturdy': 1.0, 'they': 1.0, 'or': 3.0, 'if': 5.0, 'course': 1.0, 'expecting': 1.0, 'all': 1.0, 'an': 3.0, 'matching': 1.0, 'grip': 1.0, 'graco': 1.0, 'snugride': 1.0, 'think': 3.0, 'has': 1.0, 'guarantee': 1.0}
Word element => {'enjoy': 1.0, 'shootmy': 1.0, 'open': 1.0, 'much': 1.0, 'to': 1.0, 'i': 1.0, 'recomend': 1.0, 'this': 1.0, 'car': 1.0, 'easy': 1.0, 'stroller': 1.0, 'girls': 1.0, 'big': 2.0, 'its': 2.0, 'so': 1.0, 'you': 1.0, 'a': 1.0, 'very': 1.0, 'and': 1.0, 'need': 1.0}
Word element => {'totally': 1.0, 'comment': 1.0, 'girls': 1.0, 'started': 1.0, 'automatic': 1.0, 'aren': 1.0, 'c': 1.0, 'after': 1.0, '4': 1.0, 'or': 1.0, '3': 1.0, 'around': 1.0, 'unloading': 1.0, 'loading': 1.0, 'not': 1.0, 'really': 2.0, 'play': 1.0, 'pack': 1.0, 'big': 2.0, 'tip': 1.0, 'no': 2.0, 'her': 1.0, '17lb': 1.0, 'first': 1.0, 'front': 1.0, 'steers': 1.0, 'folds': 1.0, 'baby': 2.0, 'hanging': 1.0, 'section': 1.0, 'if': 1.0, 'tipping': 1.0, 'yes': 1.0, 'tried': 1.0, 's': 5.0, 'time': 1.0, '9lb': 1.0, 'buying': 1.0, 'space': 1.0, 'otherwise': 1.0, 'd': 1.0, 'handles': 1.0, 'picture': 1.0, 'up': 1.0, 'pleased': 1.0, 'been': 1.0, 'price': 1.0, 'both': 1.0, 'from': 1.0, 'while': 1.0, 'very': 4.0, 'edge': 1.0, 'find': 1.0, 'along': 1.0, 't': 7.0, 'a': 7.0, 'doors': 1.0, 'could': 1.0, 'go': 3.0, 'take': 1.0, 'we': 1.0, 'expect': 1.0, 'myself': 1.0, 'ford': 1.0, 'without': 1.0, 'cleaning': 1.0, 'carseat': 1.0, 'pregnant': 1.0, 'but': 4.0, 'seat': 1.0, 'm': 2.0, 'in': 9.0, 'even': 1.0, 'searched': 1.0, 'my': 8.0, 'have': 9.0, 'doesn': 2.0, 'was': 3.0, 'stroller': 5.0, 'awkward': 1.0, 'heavy': 1.0, 'bags': 1.0, 'leave': 1.0, 'diaper': 5.0, 'twins': 2.0, 'when': 3.0, 'problems': 1.0, 'that': 5.0, 'easily': 6.0, 'things': 1.0, 'you': 2.0, 'putting': 1.0, 'well': 1.0, 'i': 21.0, 'for': 4.0, 'one': 3.0, 'mechanism': 1.0, 'had': 2.0, 'weeks': 1.0, 'would': 1.0, 'double': 3.0, 'haven': 1.0, 'graco': 1.0, 'kids': 1.0, 'this': 2.0, 'carseats': 3.0, 'it': 19.0, 'only': 2.0, 'put': 1.0, 'do': 1.0, 'with': 5.0, 'get': 1.0, 'bumbo': 1.0, 'cupholders': 1.0, 'reasonable': 1.0, '2': 3.0, 'happens': 1.0, 'compartment': 1.0, 'and': 15.0, 'rather': 1.0, 'like': 1.0, 'snap': 2.0, 're': 1.0, 'out': 5.0, 'the': 19.0, 'of': 7.0, 'bag': 4.0, 'storage': 2.0, 'area': 2.0, 'yet': 1.0, 'bottom': 1.0, 'stick': 1.0, 'down': 1.0, 'sort': 1.0, 'great': 1.0, 'size': 1.0, 'manage': 1.0, 'fits': 1.0, 'matching': 1.0, 'all': 1.0, 'kinds': 1.0, 'seats': 1.0, 'just': 1.0, 'stuff': 1.0, 'recommendation': 1.0, 'on': 2.0, 'accessable': 1.0, 'hang': 1.0, 'there': 1.0, 'issues': 1.0, 'anywhere': 1.0, 'though': 1.0, 'look': 1.0, 'at': 1.0, 'is': 4.0, 'handle': 1.0, 'directly': 1.0, 'back': 3.0, 'by': 1.0, 'pull': 1.0, 'line': 1.0, 'lower': 1.0, 'tends': 1.0, 'satisfied': 1.0, 'overall': 1.0, 'pop': 2.0, 'can': 3.0, 'so': 3.0, 'pretty': 1.0, 'to': 7.0, 'against': 1.0, 'over': 2.0, 'open': 1.0, 'considering': 1.0, 'husband': 1.0, 'good': 1.0}
Word element => {'being': 1.0, 'room': 1.0, 'theres': 1.0, 'ways': 1.0, 'enough': 1.0, 'through': 1.0, 'out': 1.0, 'fitting': 1.0, 'worry': 1.0, 'part': 1.0, 'about': 1.0, 'don': 1.0, 'price': 1.0, 'worth': 1.0, 'of': 1.0, 'has': 1.0, 'moms': 1.0, 'have': 1.0, 'all': 1.0, 'for': 1.0, 'everything': 1.0, 'product': 1.0, 'with': 1.0, 'it': 3.0, 'this': 1.0, 'way': 1.0, 'you': 2.0, 'need': 1.0, 'and': 1.0, 'pros': 1.0, 'door': 1.0, 'is': 2.0, 'gores': 1.0, 't': 1.0, 'great': 1.0, '2': 1.0, 'the': 2.0, 'big': 1.0, 'best': 1.0, 'from': 1.0, 'infant': 1.0, 'toddler': 1.0, 'to': 3.0, 'its': 1.0}
Word element => {'budget': 1.0, 'break': 1.0, 'carrier': 1.0, 'new': 1.0, 'buy': 1.0, 'forcing': 1.0, 'check': 1.0, 'managed': 1.0, 'overall': 1.0, 'not': 1.0, 'quick': 1.0, 'requirements': 1.0, 's': 2.0, 'there': 1.0, 'assembly': 1.0, 'than': 1.0, 'easier': 1.0, 'much': 1.0, 'bottom': 1.0, 'shelf': 1.0, 'out': 1.0, 'diaper': 1.0, 'getting': 1.0, 'issues': 1.0, 'no': 1.0, 'expensive': 1.0, 'for': 5.0, 'raised': 1.0, 'sturdy': 1.0, 'squish': 1.0, 'spent': 1.0, 'wasn': 1.0, 'like': 1.0, 'it': 5.0, 'felt': 1.0, 'month': 1.0, 'required': 2.0, 'outrageously': 1.0, 'find': 1.0, 'product': 1.0, 'year': 1.0, 'remarkably': 1.0, 'was': 1.0, 'fairly': 1.0, 't': 1.0, 'small': 1.0, 'a': 8.0, 'go': 1.0, 'of': 3.0, 'the': 7.0, 'heavier': 1.0, 'difficult': 2.0, 'to': 10.0, 'car': 2.0, 'from': 1.0, 'wife': 2.0, 'looked': 1.0, 'while': 1.0, 'double': 1.0, 'accept': 1.0, 'bag': 2.0, 'looking': 1.0, 'force': 1.0, '3': 2.0, 'amount': 1.0, 'on': 2.0, 'etc': 1.0, 'which': 1.0, 'good': 1.0, 'and': 9.0, 'would': 1.0, 'weeks': 1.0, 'almost': 1.0, 'now': 1.0, 'our': 5.0, 'stroller': 4.0, 'that': 4.0, 'have': 2.0, 'graco': 1.0, 'old': 3.0, 'snugride': 1.0, 'makes': 1.0, 'doorways': 1.0, 'single': 2.0, '4': 1.0, 'maneuverable': 1.0, 'this': 2.0, 'kids': 1.0, 'still': 2.0, 'certainly': 1.0, 'ride': 1.0, 'larger': 1.0, 'when': 1.0, 'folded': 1.0, 'but': 2.0, 'compares': 1.0, 'most': 1.0, 'back': 1.0, 'i': 1.0, 'coming': 1.0, 'well': 1.0, 'other': 1.0, 'strollers': 1.0, 'is': 2.0, 'handle': 1.0, 'at': 2.0, 'off': 1.0, 'seems': 1.0, 'us': 2.0, 'also': 1.0, 'offer': 1.0, 'law': 1.0, 'comfortable': 2.0, 'both': 1.0, 'enough': 1.0, 'get': 1.0, 'through': 1.0, 'without': 2.0, 'mother': 1.0, 'walking': 1.0, 'with': 1.0, 'my': 2.0, 'me': 1.0, 'infant': 2.0, '6': 1.0, 'use': 2.0, 'hunching': 1.0, 'over': 1.0, 'being': 1.0, 'we': 3.0, 'fine': 1.0, 'or': 2.0, 'terribly': 1.0, 'seat': 2.0, 'in': 3.0}
Word element => {'expectations': 1.0, 'met': 1.0, 'great': 1.0, 'car': 1.0, 'back': 1.0, 'easily': 1.0, 'well': 1.0, 'up': 1.0, 'me': 1.0, 'not': 1.0, 'kids': 1.0, 'holders': 1.0, 'cup': 1.0, 'have': 1.0, 'helpful': 1.0, 'also': 1.0, 'out': 1.0, 'additional': 1.0, 'stroller': 2.0, 'able': 1.0, 'together': 2.0, 'all': 1.0, 'to': 7.0, 'it': 6.0, 'older': 1.0, 'other': 1.0, 'little': 1.0, 'very': 2.0, 'too': 1.0, 'and': 4.0, 'only': 1.0, 'do': 1.0, 'put': 2.0, '3': 1.0, 's': 1.0, 'a': 2.0, 'with': 2.0, 'convenient': 1.0, 'folds': 1.0, 'easy': 3.0, 'carry': 1.0, 'the': 7.0, 'but': 1.0, '2': 1.0, 'fits': 1.0, 'maneuver': 1.0, 'my': 4.0, 'push': 1.0, 'at': 1.0, 'toddlers': 2.0, 'was': 3.0, 'minutes': 1.0, '4': 1.0, 'i': 3.0, 'putting': 1.0, 'bought': 1.0, 'one': 1.0, 'for': 1.0, 'love': 1.0, 'in': 3.0, 'of': 2.0, 'effort': 1.0, 'inside': 1.0, 'bottom': 1.0, 'after': 1.0, 'so': 1.0, 'even': 1.0, 'being': 1.0, 'absolutely': 1.0, 'matter': 1.0, 'bags': 1.0, 'drop': 1.0, 'take': 1.0, 'that': 1.0, 'basket': 1.0, 'is': 1.0}
Word element => {'years': 1.0, 'falling': 1.0, 'fold': 1.0, 'of': 1.0, 'months': 1.0, 'correctly': 1.0, 'twins': 1.0, 'this': 2.0, 'only': 1.0, 'children': 1.0, 'stroller': 1.0, 'will': 1.0, 'is': 1.0, 'not': 3.0, 'are': 2.0, 'the': 4.0, 'few': 1.0, 'worth': 2.0, '8217': 1.0, 'seats': 1.0, 'it': 3.0, 'month': 1.0, 'and': 3.0, 'had': 1.0, 'have': 1.0, 'but': 1.0, 'money': 2.0, 'four': 1.0, 'them': 2.0, '20': 1.0, 'two': 1.0, 'i': 1.0, 'for': 2.0, 'a': 2.0, 'we': 3.0, 's': 1.0, 've': 2.0, 'would': 1.0, 'was': 1.0, 'recommend': 1.0, 'last': 1.0, 'different': 1.0, 'old': 1.0, 'brand': 1.0, 'used': 1.0, 'graco': 1.0, 'apart': 1.0, '10': 1.0}
Word element => {'push': 1.0, 'hubby': 1.0, '7': 1.0, '5': 1.0, 'height': 1.0, 'easier': 1.0, 'manuvering': 1.0, 'important': 1.0, 'babies': 1.0, 'youtube': 1.0, 'here': 1.0, 'each': 1.0, 'online': 1.0, 'your': 1.0, 'smashing': 1.0, 'no': 2.0, 'there': 1.0, 'actually': 1.0, 'area': 1.0, 'us': 1.0, 'diaperbag': 1.0, 'to': 4.0, 'wallet': 1.0, 'keys': 1.0, 'space': 1.0, 'kids': 2.0, 'both': 3.0, 'latch': 1.0, 'click': 1.0, 'down': 2.0, 'wanted': 1.0, 'found': 1.0, 'double': 1.0, 'only': 1.0, 'was': 2.0, 'does': 1.0, 'way': 1.0, 'so': 1.0, 'can': 2.0, 'adjustment': 1.0, '2': 3.0, 'but': 2.0, 'lock': 1.0, 'are': 1.0, 'configurations': 1.0, 'sunvisors': 1.0, 'on': 2.0, 'months': 1.0, 'get': 2.0, 'except': 1.0, 'carrier': 2.0, 'lets': 1.0, 'have': 2.0, 'anyone': 1.0, 'and': 17.0, 'one': 5.0, 'too': 1.0, '2yr': 1.0, 'mins': 1.0, 'will': 1.0, 'added': 1.0, 'a': 5.0, 's': 2.0, 'ability': 1.0, '15': 1.0, 'bag': 2.0, 'reclines': 1.0, 'for': 7.0, 'love': 2.0, 'took': 1.0, 'old': 1.0, 'back': 1.0, 'trend': 1.0, '30lb': 1.0, 'just': 3.0, 'by': 1.0, 'estimated': 1.0, 'within': 1.0, 'be': 2.0, 'recommend': 1.0, 'sufficient': 1.0, 'together': 1.0, '6': 2.0, 'infant': 2.0, 'foot': 1.0, 'off': 1.0, 'stroller': 2.0, 'as': 1.0, 'diaper': 1.0, 'it': 14.0, 'this': 5.0, 'really': 1.0, 'folds': 1.0, 'baby': 2.0, 'had': 1.0, 'screws': 1.0, 'last': 1.0, 'strollers': 1.0, 'started': 1.0, 'rest': 1.0, 'has': 2.0, 'i': 14.0, 'well': 2.0, 'everything': 3.0, 'm': 1.0, 'seat': 2.0, 'in': 7.0, 'me': 1.0, 'my': 8.0, 'heavier': 1.0, 'out': 3.0, 'child': 3.0, 'without': 1.0, 'spin': 1.0, 'holders': 2.0, 'handles': 2.0, 'pushing': 2.0, 'snaps': 1.0, 'feels': 1.0, 'the': 10.0, 'moves': 1.0, 'like': 2.0, 'good': 1.0, 'made': 1.0, 'which': 1.0, 'single': 1.0, 'very': 2.0, 'little': 1.0, 'front': 1.0, 'jogger': 1.0, 'around': 1.0, 'should': 1.0, 'glides': 1.0, 'if': 1.0, 'bigger': 1.0, 'is': 5.0, 'at': 2.0, 'itself': 1.0, 'not': 1.0, 'r': 1.0, 'put': 3.0, 'much': 1.0, '40lbs': 1.0, 'looked': 2.0, 'all': 1.0, 'other': 1.0, 'cup': 2.0, 'stores': 1.0, 'smooth': 1.0, 'with': 4.0, 'everywhere': 1.0, 'easily': 1.0, 'because': 2.0, 'that': 7.0, 'almost': 1.0, 'either': 2.0, 'would': 1.0, 'about': 1.0, '100lbs': 1.0, 'carry': 1.0, 'we': 1.0, 'fine': 1.0}
Word element => {'works': 1.0, 'perfectly': 1.0, 'and': 1.0, 'use': 1.0, 'be': 1.0, 'newborn': 1.0, 'i': 2.0, 'great': 1.0, 'the': 2.0, 'my': 1.0, 'is': 1.0, 'to': 2.0, 'wanted': 1.0, 'adapter': 1.0, 'it': 1.0, 'with': 1.0, 'this': 1.0, 'carrier': 1.0, 'able': 1.0, 'have': 1.0, 'quinny': 1.0, 'for': 1.0, 'buzz': 1.0, 'walks': 1.0, 'graco': 1.0, 'snugride': 1.0, '35': 1.0}
Word element => {'fitting': 1.0, 'carseat': 1.0, '30': 1.0, 'this': 1.0, 'fit': 1.0, 'but': 1.0, 'fits': 1.0, 'perfect': 1.0, 'about': 1.0, 'is': 1.0, 'with': 1.0, 'nervous': 1.0, 'we': 1.0, 'the': 2.0, 'awesome': 1.0, 'quinny': 1.0, 'buzz': 1.0, 'were': 1.0, 'chicco': 1.0}
Word element => {'order': 1.0, 'with': 1.0, 'sent': 1.0, 'you': 1.0, 'that': 2.0, 'the': 2.0, 'my': 2.0, 'qunny': 1.0, 'color': 2.0, 'stroller': 1.0, 'from': 1.0, 'real': 1.0, 'diferent': 1.0, 'pink': 1.0, 'blusa': 1.0, 'its': 1.0}
Word element => {'zapp': 1.0, 'quinny': 1.0, 'a': 1.0, 'have': 1.0, 'u': 1.0, 'if': 1.0, 'should': 1.0, 'everyone': 1.0, 'practical': 1.0, 'one': 1.0, 'i': 1.0, 'that': 1.0, 'can': 1.0, 'perfect': 1.0, 'stroller': 1.0, 'use': 1.0, 'own': 1.0, 'the': 1.0, 'my': 1.0, 'carseat': 1.0, 'very': 1.0, 'and': 1.0}
Word element => {'though': 1.0, 't': 1.0, 'off': 1.0, 'cut': 1.0, 'to': 1.0, 'haven': 1.0, 'comfort': 1.0, 'on': 2.0, 'yet': 1.0, 'for': 1.0, 'trimester': 1.0, 'while': 1.0, 'perfect': 1.0, 'sleeping': 1.0, 'may': 1.0, 'recommend': 1.0, 'tags': 1.0, 'wedge': 1.0, 'your': 1.0, 'bothered': 1.0, 'i': 2.0, 'want': 1.0, 'second': 1.0, 'is': 1.0, 'side': 1.0, 'highly': 1.0, 'huge': 1.0, 'this': 1.0, 'it': 3.0, 'got': 1.0, 'that': 1.0, 's': 1.0, 'you': 1.0}
Word element => {'now': 1.0, 'have': 1.0, 'support': 1.0, 'body': 1.0, 'large': 1.0, 'i': 5.0, 'looking': 1.0, 'buy': 1.0, 'it': 2.0, 'first': 1.0, 'perfect': 2.0, 'this': 2.0, 'only': 2.0, 'since': 1.0, 'at': 1.0, 'not': 1.0, 'of': 2.0, 'suffocate': 1.0, 'hate': 1.0, 'and': 2.0, 'if': 1.0, 'move': 1.0, 'problem': 1.0, 'that': 4.0, 'belly': 2.0, 'pillows': 1.0, 'little': 2.0, 'didn': 1.0, 'you': 2.0, 'are': 1.0, 'see': 1.0, 'was': 1.0, 'expecting': 1.0, 'on': 1.0, 'guy': 1.0, 'is': 2.0, 'side': 2.0, 'pillow': 1.0, 'sleep': 1.0, 'all': 1.0, 'to': 2.0, 'the': 1.0, 'a': 1.0, 't': 1.0, '2': 1.0, 'night': 1.0, 'them': 1.0, 'huge': 1.0, 'one': 1.0, 'for': 3.0, 'each': 1.0, 'difficult': 1.0, 'under': 1.0, 'fits': 1.0, 'my': 2.0}
Word element => {'perfectly': 1.0, 'this': 1.0, 'pain': 1.0, 'i': 2.0, 'bought': 1.0, 'back': 1.0, 'product': 1.0, 'to': 1.0, 'me': 1.0, 'while': 1.0, 'use': 1.0, 'driving': 2.0, 'for': 1.0, 'had': 1.0, 'a': 1.0, 'lot': 1.0, 'worked': 1.0, 'of': 1.0}
Word element => {'back': 1.0, 'come': 1.0, 'change': 1.0, 'but': 1.0, 'point': 1.0, 'only': 1.0, 'belly': 2.0, 'it': 3.0, 'if': 1.0, 'pretty': 1.0, '34': 2.0, 'there': 1.0, 'something': 1.0, 'thought': 1.0, 'had': 1.0, 'grow': 1.0, 'to': 4.0, 'was': 1.0, 'in': 3.0, 'early': 1.0, 'because': 1.0, 'started': 1.0, 'i': 7.0, 'side': 1.0, 'is': 1.0, 'got': 1.0, 'on': 3.0, 'often': 1.0, 'my': 4.0, 'lying': 1.0, 'uncomfortable': 1.0, 'and': 3.0, 'not': 1.0, 'me': 1.0, 'this': 3.0, 'found': 1.0, 'great': 1.0, 'the': 1.0, 'used': 1.0, 'worked': 1.0, 'bed': 1.0, 'for': 1.0, 'where': 1.0, 'continues': 1.0, 'pregnancy': 2.0, 'get': 1.0, 'resting': 1.0, 'during': 1.0, 'support': 1.0, 'sofa': 1.0, 'that': 1.0, 'been': 1.0, 'have': 1.0, 'when': 1.0, 'times': 1.0, 'working': 1.0}
Word element => {'outer': 1.0, 'washable': 1.0, 'a': 1.0, 'also': 1.0, 'while': 1.0, 'zippered': 1.0, 'finding': 1.0, 'recommend': 1.0, 'highly': 1.0, 'than': 1.0, 'much': 1.0, 'provides': 1.0, 'back': 1.0, 'pregnant': 1.0, 'but': 1.0, 'uncomfortable': 2.0, 'suggested': 1.0, 'you': 2.0, 'when': 2.0, 'during': 1.0, 'has': 1.0, 'comfort': 1.0, 'well': 1.0, 'that': 1.0, 'into': 1.0, 'cover': 1.0, 'off': 1.0, 'i': 3.0, 'it': 5.0, 'this': 3.0, 'with': 1.0, 'absolutely': 1.0, 'product': 1.0, 'love': 1.0, 'for': 1.0, 'wedge': 2.0, 'your': 4.0, 'on': 3.0, 'support': 1.0, 'more': 1.0, 'is': 3.0, 'side': 3.0, 'second': 1.0, 'at': 1.0, 'able': 1.0, 'would': 1.0, 'anyone': 1.0, 'be': 1.0, 'stomach': 1.0, 'pregnancy': 3.0, 'get': 1.0, 'and': 2.0, 'not': 2.0, 'me': 1.0, 'third': 1.0, 'trimesters': 1.0, 'sleeping': 4.0, 'fairly': 1.0, 'takes': 1.0, 'of': 1.0, 'sleep': 2.0, 'to': 2.0, 'least': 1.0, 'without': 2.0, 'the': 1.0, 'pressure': 1.0, 'my': 1.0}
Word element => {'fine': 1.0, 'up': 1.0, 'week': 1.0, 'hawaii': 1.0, 'take': 1.0, 'good': 1.0, 'just': 1.0, 'light': 1.0, 'money': 1.0, 'especially': 1.0, 'purchases': 1.0, 'best': 1.0, 'of': 1.0, 'one': 1.0, 'has': 1.0, 'far': 2.0, 'flat': 1.0, 'plan': 1.0, 'completely': 1.0, 'pregnancy': 1.0, 'left': 1.0, 'the': 2.0, 'slightly': 1.0, 'travel': 1.0, 'use': 1.0, 'every': 1.0, 'overnight': 1.0, 'next': 1.0, 'been': 1.0, 'that': 1.0, '5': 1.0, 'oz': 1.0, 'holding': 1.0, 'sometimes': 1.0, 'and': 4.0, 'not': 1.0, 'me': 1.0, 'this': 3.0, 'with': 2.0, 'belly': 1.0, 'so': 5.0, 'was': 1.0, 'now': 1.0, 'pillow': 1.0, 'leaning': 1.0, 'disappointed': 1.0, 'also': 2.0, 'said': 1.0, 'it': 8.0, 'felt': 1.0, 'i': 5.0, 'for': 2.0, 'cheap': 1.0, 'night': 1.0, 'arrived': 1.0, 'originally': 1.0, 'because': 2.0, 'anywhere': 1.0, 'only': 1.0, 'works': 1.0, 'bring': 1.0, 'nice': 1.0, 's': 3.0, 'go': 1.0, 'a': 1.0, 'support': 2.0, '3': 1.0, 'on': 2.0, 'or': 1.0, 'to': 3.0, 'as': 1.0, 'sleep': 1.0, 'back': 3.0, 'lightweight': 1.0, 'my': 3.0, 'underneath': 1.0, 'when': 2.0, 'am': 1.0}
Word element => {'ever': 1.0, '10': 1.0, 'weeks': 1.0, 'later': 1.0, 'nest': 1.0, 'best': 1.0, 'sleeping': 1.0, 'my': 1.0, 'late': 1.0, 'of': 1.0, 'hospital': 1.0, 'in': 1.0, 'purchased': 1.0, 'have': 1.0, 'pregnant': 1.0, 'still': 1.0, 'found': 1.0, 'i': 2.0, 'invaluable': 1.0, 'finding': 1.0, 'part': 1.0, 'used': 1.0, 'a': 2.0, 'this': 1.0, 'with': 1.0, 'it': 3.0, 'belly': 1.0, 'spent': 1.0, 'pregnancy': 1.0, 'at': 1.0, '2': 1.0, 'the': 1.0, 'and': 2.0, 'necessary': 1.0, 'am': 1.0}
Word element => {'back': 1.0, 'can': 1.0, 'wash': 1.0, 'so': 1.0, 'removable': 1.0, 'you': 1.0, 'cover': 1.0, 'available': 1.0, 'wedges': 1.0, 'incline': 2.0, 'put': 1.0, 'gentle': 1.0, 'wedge': 2.0, 'other': 1.0, 'this': 1.0, 'on': 1.0, 'is': 2.0, 'not': 1.0, 'an': 1.0, 'as': 2.0, 'steep': 1.0, 'of': 1.0}
Word element => {'if': 1.0, 'on': 1.0, 'for': 1.0, 'added': 1.0, 'foam': 1.0, 'memory': 1.0, 'inch': 1.0, 'had': 1.0, 'it': 1.0, 'need': 1.0, '1': 1.0, 'big': 2.0, 'belly': 2.0, 'my': 1.0, 'weeks': 1.0, 'best': 1.0, 'very': 1.0, 'and': 2.0, 'smaller': 1.0, 'so': 1.0, 'have': 1.0, 'small': 2.0, 'as': 1.0, 'to': 4.0, 'was': 1.0, 'be': 2.0, 'pillow': 1.0, 'out': 1.0, 'other': 1.0, 'than': 1.0, 'standard': 1.0, 'feature': 1.0, 'i': 5.0, 'can': 1.0, 'but': 1.0, 'night': 1.0, 'quality': 1.0, 'that': 4.0, 'give': 1.0, 'me': 1.0, 'not': 2.0, 'at': 2.0, 'with': 1.0, 'light': 1.0, 'take': 1.0, 'how': 1.0, 'ive': 1.0, 'surprised': 1.0, 'thick': 1.0, 'more': 1.0, 'is': 4.0, 'side': 1.0, 'the': 3.0, 'turns': 1.0, 'its': 3.0, 'much': 1.0, 'help': 1.0, 'though': 1.0, 'earlier': 1.0, 'of': 1.0, 'might': 1.0, 'a': 3.0, 'this': 2.0, 'pain': 1.0, '38': 1.0, 'over': 1.0, 'you': 2.0, 'am': 1.0, 'when': 1.0, 'some': 1.0, 'support': 1.0, 'roll': 1.0, 'compared': 1.0, 'which': 1.0, 'downside': 1.0, 'or': 2.0, 'good': 2.0}
Word element => {'low': 1.0, 'during': 1.0, 'use': 1.0, 'also': 1.0, 'day': 1.0, 'looking': 1.0, 'provides': 1.0, 'really': 1.0, 'was': 1.0, 'pillowcase': 1.0, 'huge': 1.0, 'body': 1.0, 'and': 2.0, 'me': 1.0, 'way': 1.0, 'before': 1.0, 'even': 1.0, 'm': 1.0, 'd': 1.0, 's': 1.0, 'a': 6.0, 'pillow': 1.0, 'get': 1.0, 'pregnancy': 1.0, 'to': 1.0, 'all': 2.0, 'right': 1.0, 'tummy': 1.0, 'thing': 1.0, 'i': 5.0, 'or': 2.0, 'the': 5.0, 'telling': 1.0, 'that': 1.0, 'bolster': 1.0, 'into': 1.0, 'been': 1.0, 'back': 2.0, 'but': 1.0, 'up': 1.0, 'of': 2.0, 'blanket': 1.0, 'wedge': 1.0, 'stuff': 1.0, 'want': 1.0, 'it': 3.0, 'sleeper': 1.0, 'this': 1.0, 'only': 1.0, 'something': 1.0, 'just': 1.0, 'few': 1.0, 'large': 1.0, 'folks': 1.0, 'for': 3.0, 'others': 1.0, 'roll': 1.0, 'support': 3.0, 'recommended': 1.0, 'has': 1.0, 'out': 1.0}
Word element => {'helped': 1.0, 'once': 1.0, 'more': 1.0, 'made': 1.0, 'support': 1.0, 'my': 2.0, 'belly': 2.0, 'got': 1.0, 'pleasant': 1.0, 'big': 1.0, 'sleeping': 2.0, 'this': 1.0, 'wedge': 1.0, 'was': 1.0, 'and': 1.0, 'very': 1.0, 'uncomfortable': 1.0}
Word element => {'tummy': 1.0, 'rest': 1.0, 'used': 1.0, 'great': 1.0, 'i': 1.0, 'my': 3.0, 'between': 1.0, 'pillow': 1.0, 'to': 1.0, 'now': 1.0, 'at': 1.0, 'legs': 1.0, 'because': 1.0, 'it': 2.0, 'first': 1.0, 'this': 1.0, 'belly': 1.0, 'wasnt': 1.0, 'and': 1.0, 'that': 1.0, 'yet': 1.0, 'comfortable': 1.0, 'big': 2.0, 'is': 2.0, 'really': 1.0}
Word element => {'great': 1.0, 'a': 1.0, 'its': 1.0, 'pains': 1.0, 'sorts': 1.0, 'highly': 1.0, 'and': 2.0, 'not': 1.0, 'too': 1.0, 'price': 1.0, 'recommended': 1.0, 'soft': 1.0, 'high': 1.0, 'of': 1.0, 'has': 1.0, 'this': 1.0, 'saved': 1.0, 'me': 1.0, 'all': 1.0}
Word element => {'and': 1.0, 'back': 1.0, 'tummy': 1.0, 'for': 1.0, 'support': 1.0, 'smaller': 1.0, 'good': 2.0, 'a': 1.0, 'is': 1.0, 'little': 1.0, 'your': 2.0, 'i': 1.0, 'works': 2.0, 'it': 1.0, 'than': 1.0, 'thought': 1.0, 'but': 1.0}
Word element => {'quickly': 1.0, 'apart': 1.0, 'for': 1.0, 'dissapointing': 1.0, 'to': 1.0, 'was': 1.0, 'come': 1.0, 'it': 1.0, 'them': 2.0, 'clothes': 1.0, 'but': 1.0, 'while': 1.0, 'use': 1.0, 'of': 2.0, 'texture': 1.0, 'like': 1.0, 'unraveled': 1.0, 'size': 1.0, 'washing': 1.0, 'burp': 1.0, 'cloth': 1.0, 'i': 2.0, 'so': 1.0, 'after': 1.0, 'these': 1.0, 'the': 2.0, '2': 1.0, '3': 1.0, '1': 1.0, 'and': 1.0, 'edges': 1.0, 'came': 1.0, 'still': 1.0}
Word element => {'your': 1.0, 'on': 1.0, 'product': 1.0, 'other': 1.0, 'upper': 1.0, 'highly': 2.0, 'coverage': 1.0, 'they': 1.0, 'great': 1.0, 'hands': 1.0, 'the': 3.0, 'can': 1.0, 'with': 1.0, 'only': 1.0, 'our': 1.0, 'that': 1.0, 'spit': 2.0, 'and': 3.0, 'getting': 1.0, 'up': 2.0, 'of': 2.0, 'close': 1.0, 'these': 2.0, 'cloths': 1.0, 'baby': 1.0, 'them': 1.0, 'best': 1.0, 'are': 2.0, 'thick': 1.0, 'old': 1.0, 'cloth': 1.0, 'i': 1.0, 'comes': 1.0, 'fashioned': 1.0, 'provide': 1.0, 'diapers': 1.0, 'soft': 1.0, 'held': 1.0, 'absorption': 1.0, 'have': 2.0, 'cute': 1.0, 'after': 1.0, 'many': 2.0, 'washings': 1.0, 'ply': 1.0, 'recommend': 1.0, 'if': 1.0, 'you': 1.0, 'a': 1.0, 'champion': 1.0}
Word element => {'too': 1.0, 'found': 1.0, 'second': 1.0, 'bought': 1.0, 'these': 1.0, 'we': 3.0, 'small': 1.0, 'are': 1.0, 'cloths': 1.0, 'them': 1.0, 'a': 2.0, 'nice': 1.0, 'so': 1.0, 'size': 1.0, 'and': 1.0, 'other': 1.0, 'loved': 1.0, 'good': 1.0, 'looking': 1.0, 'pack': 1.0, 'much': 1.0, 'absorbent': 1.0}
Word element => {'to': 1.0, 'meant': 1.0, 're': 1.0, 'what': 1.0, 'exactly': 1.0, 'absorbent': 1.0, 'super': 1.0, 'in': 1.0, 'towel': 1.0, 'spits': 1.0, 'baby': 1.0, 'little': 1.0, 'they': 3.0, 'all': 2.0, 'have': 1.0, 'are': 3.0, 'lot': 1.0, 'that': 1.0, 'you': 1.0, 'a': 4.0, 'these': 1.0, 'the': 1.0, 'more': 1.0, 'great': 1.0, 'on': 1.0, 'large': 1.0, 'size': 2.0, 'when': 1.0, 'reminds': 1.0, 'do': 2.0, 'and': 1.0, 'me': 1.0, 'up': 1.0, 'of': 1.0, 'dish': 1.0}
Word element => {'nursing': 1.0, 'texture': 1.0, 'of': 1.0, 'size': 1.0, 'that': 1.0, 'these': 2.0, 'the': 3.0, 'are': 1.0, 'also': 1.0, 'cloths': 1.0, 'burp': 1.0, 'a': 1.0, 'i': 2.0, 'for': 1.0, 'love': 2.0, 'one': 1.0, 'on': 2.0, 'like': 1.0, 'and': 1.0, 'towel': 1.0, 'excellent': 1.0, 'is': 1.0, 'side': 2.0, 'smooth': 1.0, 'other': 1.0}
Word element => {'size': 1.0, 'better': 1.0, 'be': 1.0, 'useful': 1.0, 'poor': 1.0, 'product': 2.0, 'not': 2.0, 'your': 1.0, 'one': 1.0, 'way': 1.0, 'corner': 1.0, 'r': 1.0, 'that': 1.0, 'gave': 1.0, 'babies': 1.0, 'stores': 1.0, 'shrunk': 1.0, 'smaller': 1.0, 'in': 7.0, 'cheaper': 1.0, 'wash': 2.0, 'furthermore': 1.0, 'available': 3.0, 'local': 1.0, 'when': 1.0, 'us': 1.0, 'etc': 1.0, 'i': 3.0, 'cloth': 5.0, 'stitches': 1.0, 'ordered': 1.0, 'order': 1.0, 'became': 1.0, 'were': 1.0, 'very': 1.0, 'inches': 1.0, 'to': 1.0, 'as': 2.0, 'cloths': 1.0, 'such': 1.0, 'the': 7.0, 'money': 1.0, '2': 1.0, 'they': 2.0, 'burp': 6.0, 'larger': 1.0, 'than': 3.0, 'found': 1.0, 'this': 2.0, 'looked': 1.0, 'first': 2.0, 'target': 3.0, 'other': 1.0, 'received': 1.0, 'do': 1.0, 'much': 2.0, 'quality': 2.0, 'them': 1.0, 'save': 1.0, 'fact': 1.0, 'bigger': 2.0, 'however': 1.0, 'after': 2.0, 'gentle': 1.0, 'cycle': 1.0, 'and': 4.0, 'gerber': 2.0, 'is': 2.0, 'more': 1.0, 'around': 1.0}
Word element => {'things': 1.0, 'good': 1.0, 'any': 1.0, 'will': 1.0, 'they': 1.0, 'confident': 1.0, 'from': 1.0, 'order': 1.0, 'can': 1.0, 'you': 2.0, 'service': 1.0, 'huge': 1.0, 'enough': 1.0, 'cover': 1.0, 'large': 1.0, 'inches': 1.0, '20': 1.0, '18': 1.0, 'at': 1.0, 'face': 1.0, 'wiping': 1.0, 'for': 1.0, 'recommend': 1.0, 'resolve': 1.0, 'was': 1.0, 'had': 2.0, 'me': 1.0, 'and': 6.0, 'extra': 1.0, 'sent': 1.0, 'promptly': 2.0, 'superior': 1.0, 'making': 1.0, 'apparently': 1.0, 'say': 1.0, 'level': 1.0, 'is': 5.0, 'side': 2.0, 'friend': 2.0, 'received': 2.0, 'that': 3.0, 'although': 1.0, 'provides': 1.0, 'awesome': 1.0, 'replacement': 2.0, 'may': 1.0, 'company': 2.0, 'another': 1.0, 'my': 2.0, 'the': 9.0, 'defective': 1.0, 'packs': 2.0, 'these': 5.0, 'cloths': 4.0, 'your': 1.0, 'absorbent': 1.0, 'brest': 2.0, 'i': 5.0, 'cloth': 1.0, 'plus': 1.0, 'issues': 3.0, 'with': 3.0, 'first': 2.0, 'terry': 1.0, 'be': 1.0, 'cotton': 1.0, 'pack': 2.0, 'have': 2.0, 'of': 3.0, 'because': 1.0, 'about': 1.0, 'x': 1.0, 'no': 1.0, 'clothes': 1.0, 'baby': 1.0, 'quality': 1.0, 'back': 2.0, 'fairly': 1.0, 'are': 2.0, 'accent': 1.0, 'burp': 3.0, 'front': 1.0, 's': 1.0, 'a': 2.0, 'customer': 1.0, 'portion': 1.0, 'really': 1.0, 'material': 1.0, 'strongly': 1.0, 'this': 1.0, 'soft': 2.0, 'cannot': 1.0, 'courteously': 1.0, 'which': 1.0, 'great': 1.0, 'nice': 1.0}
Word element => {'them': 1.0, 'was': 1.0, 'perfect': 1.0, 'loved': 1.0, 'the': 4.0, 'with': 1.0, 'is': 1.0, 'colors': 1.0, 'texture': 1.0, 'of': 1.0, 'and': 1.0, 'cloth': 1.0, 'excellent': 1.0, 'thrilled': 1.0, 'be': 1.0, 'to': 1.0, 'mother': 1.0}
Word element => {'them': 1.0, 'use': 1.0, 'll': 1.0, 'i': 1.0, 'cool': 1.0, 'size': 1.0, 'are': 1.0, 'suppose': 1.0, 'they': 1.0, 'positive': 1.0, 'on': 1.0, 'cloths': 1.0, 'another': 1.0, 'baby': 1.0, 'little': 1.0, 'gets': 1.0, 'for': 2.0, 'side': 1.0, 'is': 1.0, 'look': 1.0, 'to': 2.0, 'our': 1.0, 'that': 1.0, 'find': 1.0, 'found': 1.0, 'have': 1.0, 'fabric': 1.0, 'skin': 1.0, 's': 1.0, 'faces': 1.0, 'her': 1.0, 'compared': 1.0, 'a': 2.0, 'great': 1.0, 'the': 2.0, 'red': 1.0, 'and': 2.0, 'irritated': 1.0, 'coarse': 1.0, 'we': 3.0, 'other': 1.0}
Word element => {'faint': 1.0, 'becomes': 1.0, 'color': 1.0, 's': 1.0, 'once': 1.0, 'find': 1.0, 'when': 1.0, 'cushioned': 1.0, 'disappointed': 1.0, 'colored': 1.0, 'however': 1.0, 'inner': 1.0, 'and': 2.0, 'thin': 1.0, 'like': 1.0, 'part': 1.0, 'what': 1.0, 'cloth': 1.0, 'i': 3.0, 'waste': 1.0, 'not': 1.0, 'received': 1.0, 'expected': 1.0, 'dipper': 1.0, 'would': 2.0, 'is': 2.0, 'a': 1.0, 'item': 2.0, 'it': 2.0, 'this': 2.0, 'was': 1.0, 'to': 2.0, 'material': 2.0, 'be': 3.0, 'personally': 1.0, 'from': 1.0, 'washed': 1.0, 'of': 1.0, 'reading': 1.0, 'money': 1.0, 'about': 1.0, 'thought': 1.0, 'the': 4.0, 'thick': 1.0}
Word element => {'today': 1.0, 'highchair': 1.0, 'likes': 1.0, 'small': 2.0, 'my': 1.0, 'and': 1.0, 'put': 1.0, 'but': 2.0, 'pretty': 1.0, 'crappy': 1.0, 'at': 1.0, 'it': 4.0, 'first': 1.0, 'buy': 1.0, 'i': 2.0, 'seemed': 1.0, '10': 1.0, 'leary': 1.0, 'the': 1.0, 'minor': 1.0, 'daughter': 1.0, 'together': 1.0, 'was': 2.0, 'to': 2.0, 'crapped': 1.0, 'ikea': 1.0, 'is': 1.0, 'folded': 1.0, 'that': 1.0, 'reclined': 1.0, 'ago': 1.0, 'a': 3.0, 'little': 1.0, 'bit': 1.0, 'pillow': 1.0, 'or': 1.0, 'easy': 1.0, 'con': 1.0, 'towel': 1.0, 'update': 1.0, 'out': 1.0, 'its': 1.0, 'works': 1.0, 'this': 1.0, 'perfect': 1.0, 'one': 2.0, 'bought': 1.0, 'months': 2.0, 'later': 1.0, 'few': 1.0}
Word element => {'it': 1.0, 'bought': 1.0, 'i': 1.0, 'couple': 1.0, 'a': 1.0, 'months': 1.0, 'piece': 1.0, 'that': 1.0, 'the': 1.0, 'of': 2.0, 'junk': 1.0, 'ended': 1.0, 'only': 1.0, 'taken': 1.0, 'up': 1.0, 'to': 1.0, 'being': 1.0, 'after': 1.0, 'dump': 1.0}
Word element => {'do': 1.0, 'things': 1.0, 'lift': 1.0, 'likes': 1.0, 'baby': 1.0, 'isn': 1.0, 'fine': 1.0, 'then': 1.0, 'said': 1.0, 'days': 1.0, 'every': 1.0, 'ripped': 1.0, 'like': 3.0, 'they': 1.0, 'why': 1.0, 'still': 1.0, 'yes': 1.0, 'now': 2.0, 'year': 1.0, 'almost': 1.0, 'out': 2.0, 'is': 2.0, 'that': 5.0, 'stupid': 1.0, 'starting': 1.0, 'and': 6.0, 'needed': 1.0, 'easy': 1.0, 'so': 2.0, 'time': 2.0, 'the': 4.0, 'can': 1.0, 'food': 1.0, 'money': 1.0, 'she': 1.0, 'annoying': 1.0, 'it': 11.0, 'stuck': 1.0, 'first': 2.0, 'this': 2.0, 'a': 2.0, 't': 2.0, 's': 5.0, 'there': 3.0, 'chair': 1.0, 'mine': 1.0, 'ok': 2.0, 'i': 8.0, 'didn': 1.0, 'light': 1.0, 'hope': 1.0, 'few': 1.0, 'just': 4.0, 'not': 1.0, 'at': 1.0, 'falls': 1.0, 'have': 3.0, 'be': 1.0, 'better': 1.0, 'if': 2.0, 'pretty': 1.0, 'had': 2.0, 'knock': 1.0, 'buying': 2.0, 'was': 1.0, 'seat': 1.0, 'to': 4.0, 'would': 2.0, 'something': 2.0, 'realize': 1.0, 'high': 1.0, 'lightweight': 1.0, 'my': 3.0, 'plastic': 2.0, 'how': 1.0, 'long': 1.0, 'vacuum': 1.0, 'for': 1.0, 'actually': 1.0, 'you': 2.0, 'again': 1.0, 'need': 2.0, 'bought': 1.0, 'one': 2.0, 'over': 1.0, 'up': 1.0, 'child': 1.0, 'also': 1.0, 'will': 1.0, 'your': 1.0, 'hell': 1.0, 'on': 3.0, 'put': 2.0, 'pull': 1.0, 'daughter': 1.0, 'together': 1.0, 'cute': 1.0}
Word element => {'being': 1.0, 'started': 1.0, 'difficult': 1.0, 'summer': 1.0, 'using': 1.0, 'one': 1.0, 'finally': 1.0, 'chair': 2.0, 'i': 3.0, 'old': 1.0, 'seat': 1.0, 'to': 1.0, 'was': 2.0, 'high': 2.0, 'my': 2.0, 've': 1.0, 'and': 2.0, 'caved': 1.0, 'finding': 1.0, 'so': 1.0, '9': 1.0, 'pretty': 1.0, 'she': 1.0, 'month': 1.0, 'it': 3.0, 'excited': 1.0, 'but': 1.0, 'girly': 1.0, 'a': 3.0, 'we': 1.0, 's': 1.0, 'reasonable': 1.0, 'got': 1.0, 'even': 1.0, 'price': 1.0, 'in': 2.0, 'outgrow': 1.0, 'surprisingly': 1.0, 'when': 1.0, 'daughter': 1.0, 'this': 2.0, 'found': 1.0, 'more': 1.0, 'at': 1.0, 'adorable': 1.0, 'person': 1.0, 'been': 1.0, 'loves': 1.0}
Word element => {'squats': 1.0, 'to': 1.0, 'also': 1.0, 'body': 1.0, 'across': 1.0, 'weight': 2.0, 'spreading': 1.0, 'of': 1.0, 'job': 1.0, 'lunges': 1.0, 's': 1.0, 'mei': 1.0, 'baby': 1.0, '1yo': 1.0, 'too': 1.0, 'when': 1.0, 'i': 1.0, 'her': 1.0, 'does': 1.0, 'take': 1.0, 'my': 4.0, 'is': 1.0, 'with': 1.0, 'it': 5.0, 'first': 1.0, 'this': 1.0, 'great': 1.0, 'heavy': 1.0, 'on': 1.0, 'everywhere': 1.0, 'love': 1.0, 'for': 2.0, 'got': 2.0, 'tei': 1.0, 'fantastic': 1.0, 'upper': 1.0, 'we': 2.0, 'do': 1.0, 'and': 2.0, 'wrap': 1.0, 'a': 1.0}
Word element => {'perk': 1.0, 'configurations': 1.0, 'do': 1.0, 'how': 1.0, 'helpful': 1.0, 'along': 1.0, 'came': 1.0, 'use': 1.0, 'daily': 1.0, 'well': 1.0, 'gotten': 1.0, 'fabric': 1.0, 'stretch': 1.0, 'some': 1.0, 'learning': 1.0, 'diagonal': 1.0, 'just': 1.0, 'numerous': 1.0, 'both': 1.0, 'like': 1.0, 'using': 1.0, 'washings': 1.0, 'confident': 1.0, 'enough': 2.0, 'booklet': 1.0, 'on': 1.0, 'strong': 1.0, 'nice': 1.0, 'feel': 1.0, 'great': 2.0, 'really': 2.0, 'baby': 2.0, 'stiff': 1.0, 'so': 1.0, 'bit': 3.0, 'multiple': 1.0, 'be': 1.0, 'storchenwiege': 1.0, 'had': 1.0, 'was': 5.0, 'citing': 1.0, 'reviews': 1.0, 'brand': 2.0, 'very': 1.0, 'read': 1.0, 'wrap': 2.0, 'the': 6.0, 'my': 3.0, 'original': 1.0, 'holding': 1.0, 'experience': 1.0, 'after': 1.0, 'wearing': 1.0, 'with': 3.0, 'it': 7.0, 'we': 1.0, 's': 2.0, 'a': 5.0, 'could': 1.0, 'that': 4.0, 'box': 1.0, 'far': 1.0, 'working': 1.0, 'ordering': 1.0, 'i': 3.0, 'compliments': 1.0, 'stiffness': 1.0, 'of': 5.0, 'pattern': 1.0, 'and': 4.0, 'concern': 1.0, 'out': 1.0, 'couple': 1.0, 'required': 1.0, 'soften': 1.0, 'not': 1.0, 'at': 1.0, 'as': 1.0, 'to': 4.0, 'all': 1.0, 'in': 1.0, 'regular': 1.0, 'surprisingly': 1.0, 've': 1.0, 'new': 1.0, 'this': 3.0, 'soft': 2.0, 'one': 1.0, 'up': 2.0, 'wash': 1.0, 'when': 1.0, 'times': 1.0}
Word element => {'use': 1.0, 'even': 1.0, 'learning': 1.0, 'the': 1.0, 'great': 1.0, 'm': 1.0, 'i': 2.0, 'woven': 1.0, 'though': 1.0, 'love': 1.0, 'for': 1.0, 'to': 1.0, 'worth': 1.0, 'still': 1.0, 'product': 1.0, 'it': 1.0, 'this': 2.0, 'money': 1.0, 'highly': 1.0, 'quality': 1.0, 'recommend': 1.0, 'brand': 1.0, 'if': 1.0, 'looking': 1.0, 'you': 1.0, 're': 1.0, 'well': 1.0, 'wrap': 1.0, 'a': 1.0}
Word element => {'bag': 1.0, 'another': 1.0, 'if': 1.0, 'be': 1.0, 'into': 1.0, 'unimpressed': 1.0, 'were': 1.0, 'i': 1.0, 'wife': 1.0, 'my': 1.0, 'included': 1.0, 'not': 1.0, 'ok': 1.0, 'very': 1.0, 'zipper': 1.0, 'purse': 1.0, 'and': 2.0, 'may': 1.0, 'strap': 1.0, 'plain': 1.0, 'shows': 1.0, 'no': 1.0, 'one': 1.0, 'items': 1.0, 'small': 2.0, 'the': 1.0, 'are': 1.0, 'on': 1.0, 'inserted': 1.0, 'item': 2.0, 'photo': 1.0, 'is': 2.0, 'amazon': 1.0, 'only': 1.0, 'with': 1.0, 'this': 2.0, 'it': 1.0, 'decorations': 1.0, 'which': 1.0}
Word element => {'too': 1.0, 'she': 1.0, 'i': 2.0, 'it': 4.0, 'gave': 1.0, 'a': 1.0, 'trail': 1.0, 'as': 1.0, 'and': 3.0, 'saw': 1.0, 'loved': 2.0, 'aunt': 1.0, 'my': 1.0, 'to': 1.0}
Word element => {'letting': 1.0, 'less': 2.0, 'little': 1.0, 'gives': 1.0, 'if': 1.0, 'items': 1.0, 'extra': 1.0, 'supplies': 1.0, 'car': 1.0, 'the': 2.0, 'keep': 1.0, 'use': 1.0, 'an': 1.0, 'carry': 1.0, 'kiners': 1.0, 'bags': 2.0, 'needs': 1.0, 'couple': 1.0, 'newborn': 1.0, 'in': 5.0, 'my': 6.0, 'one': 2.0, 'for': 4.0, 'around': 1.0, 'more': 1.0, 'is': 1.0, 'need': 1.0, 'bag': 3.0, 'have': 1.0, 'it': 1.0, 'with': 1.0, 'working': 1.0, 'using': 1.0, 'like': 1.0, 'frustration': 1.0, 'me': 5.0, 'purse': 4.0, 'and': 5.0, 'two': 1.0, 'i': 5.0, 'great': 1.0, 'diaper': 3.0, 'freedom': 1.0, 'don': 1.0, 'them': 1.0, 'baby': 2.0, 'carrying': 2.0, 'm': 1.0, 'both': 1.0, 'plus': 2.0, 'of': 1.0, 'lysol': 1.0, 'toddler': 1.0, 'fashion': 1.0, 'put': 1.0, 'diapers': 2.0, 'this': 3.0, 'allows': 1.0, 'refilling': 1.0, 'actual': 1.0, 'to': 2.0, 'wipes': 2.0, 'dirty': 1.0, 'antibacterial': 1.0, 'baggies': 1.0, 'easy': 1.0, 'mini': 1.0, 's': 1.0, 't': 1.0, 'a': 3.0, 'by': 1.0, 'just': 1.0, 'few': 1.0, 'pullout': 1.0, 'disposable': 1.0, 'changing': 1.0}
Word element => {'uses': 1.0, 'when': 1.0, 'himself': 1.0, 'easy': 1.0, 'proud': 1.0, 'so': 1.0, '18': 1.0, 'end': 1.0, '11': 1.0, 'mouth': 1.0, 'weighted': 1.0, 'actually': 1.0, 'he': 1.0, 'this': 3.0, 'is': 2.0, 'to': 3.0, 'reduce': 1.0, 'month': 2.0, 'spoon': 3.0, 'old': 2.0, 'utensils': 1.0, 'chew': 1.0, 'wants': 1.0, 'use': 1.0, 'wash': 1.0, 'perfect': 1.0, 'but': 1.0, 'will': 1.0, 'toddler': 1.0, 'beginning': 1.0, 'reach': 1.0, 'and': 1.0, 'makes': 1.0, 'your': 1.0, 'practice': 1.0, 'if': 1.0, 'frustration': 1.0, 'the': 5.0, 'helps': 1.0, 'leveling': 1.0, 'of': 2.0, 'self': 1.0, 'bites': 1.0}
Word element => {'fling': 1.0, 'and': 1.0, 'end': 1.0, 'just': 1.0, 'when': 1.0, 'or': 1.0, 'turn': 1.0, 'spills': 1.0, 'prevent': 1.0, 'holding': 1.0, 'the': 2.0, 't': 1.0, 'he': 2.0, 'it': 2.0, 'stuff': 1.0, 'really': 1.0, 'is': 1.0, 'doesn': 1.0, 'purple': 1.0, 'usually': 1.0, 'grab': 1.0, 'to': 1.0, 'green': 1.0, 'handle': 1.0, 'even': 1.0, 'part': 1.0, 'likes': 1.0}
Word element => {'again': 1.0, 'wounld': 1.0, 'buy': 1.0, 'i': 1.0, 'out': 1.0, 'get': 1.0, 'to': 1.0, 'mouths': 1.0, 'little': 1.0, 'for': 1.0, 'hard': 1.0, 'it': 1.0, 'of': 2.0, 'any': 1.0, 'deep': 1.0, 'than': 1.0, 'different': 1.0, 'around': 1.0, 'no': 1.0, 'sleeve': 1.0, 'the': 3.0, 'over': 1.0, 'turn': 1.0, 'if': 1.0, 'also': 1.0, 'rotate': 1.0, 'in': 1.0, 'other': 1.0, 'design': 2.0, 'fact': 1.0, 'will': 1.0, 'held': 1.0, 'makes': 1.0, 'poor': 1.0, 'degrees': 1.0, 'right': 1.0, 'does': 1.0, 'spoon': 6.0, '360': 1.0, 'food': 1.0, 'so': 1.0, 'not': 3.0, 'just': 1.0, 'is': 1.0}
Word element => {'loves': 1.0, 'colors': 1.0, 'bright': 1.0, 'herself': 1.0, 'feed': 1.0, 'so': 1.0, '360': 1.0, 'beaba': 1.0, 'one': 1.0, 'decided': 1.0, 'reviews': 1.0, 'after': 1.0, 'with': 2.0, 'eat': 2.0, 'longer': 1.0, 'down': 1.0, 'we': 2.0, 'a': 3.0, 'and': 5.0, 'much': 2.0, 'try': 1.0, 'do': 1.0, 'hold': 1.0, 'reading': 1.0, 'using': 1.0, 'frustrated': 1.0, 'seem': 1.0, 'gets': 1.0, 'daughter': 1.0, 'easily': 2.0, 'when': 1.0, '21': 1.0, 'allows': 1.0, 'this': 2.0, 'really': 4.0, 'fine': 1.0, 'what': 1.0, 'her': 6.0, 'old': 1.0, 'for': 1.0, 'product': 1.0, 'supposed': 1.0, 'spoon': 6.0, 'it': 1.0, 'month': 1.0, 'she': 4.0, 'mastered': 1.0, 'resulting': 1.0, 'well': 1.0, 'has': 1.0, 'stay': 1.0, 'give': 1.0, 'not': 1.0, 'orange': 1.0, 'hands': 1.0, 'the': 7.0, 'attention': 1.0, 'motor': 1.0, 'got': 1.0, 'skill': 1.0, 'fushia': 1.0, 'properly': 1.0, 'more': 1.0, 'is': 1.0, 'level': 2.0, 'regular': 1.0, 'in': 2.0, 'put': 2.0, 'toddler': 1.0, 'can': 1.0, 'food': 3.0, 'does': 2.0, 'mouth': 1.0, 'as': 1.0, 'proceed': 1.0, 'to': 7.0, 'spilled': 1.0, 'eventually': 1.0, 'impatient': 1.0, 'my': 1.0, 'hungry': 1.0, 'messy': 1.0, 'since': 1.0, 'bib': 1.0, 'new': 1.0, 'would': 1.0}
Word element => {'gotta': 1.0, 'ability': 1.0, 'on': 1.0, 'wheels': 1.0, 'love': 3.0, 'safest': 1.0, 'our': 2.0, 'babies': 2.0, 'have': 2.0, 'can': 1.0, 'item': 1.0, 'it': 5.0, 'this': 1.0, 'a': 1.0, 'them': 1.0, 'is': 2.0, 'really': 1.0, 'helped': 1.0, 'walk': 1.0, 'and': 1.0, 'the': 2.0, 'in': 1.0, 'must': 1.0, 'opinion': 1.0, 'depending': 1.0, 'you': 1.0, 'being': 1.0, 'your': 1.0, 'adjust': 1.0}
Word element => {'d': 1.0, 'stuff': 1.0, 'basic': 1.0, 'some': 1.0, 'what': 1.0, 'includes': 1.0, 'getting': 1.0, 'and': 1.0, 'recommend': 1.0, 'needed': 1.0, 'compact': 1.0, 's': 1.0, 'put': 1.0, 'but': 1.0, 'case': 2.0, 'or': 2.0, 'knock': 1.0, 'my': 1.0, 'yet': 1.0, 'in': 5.0, 'car': 2.0, 'diaper': 1.0, 'the': 2.0, 't': 1.0, 'keep': 1.0, 'of': 3.0, 'set': 2.0, 'a': 4.0, 'wood': 1.0, 'not': 1.0, 'just': 2.0, 'use': 1.0, 'i': 3.0, 'anything': 1.0, 'on': 1.0, 'bag': 1.0, 'cut': 1.0, 'happens': 1.0, 'haven': 1.0, 'had': 1.0, 'to': 2.0, 'this': 1.0, 'it': 3.0}
Word element => {'do': 1.0, 'continue': 1.0, 'will': 1.0, 'amazon': 1.0, 'at': 1.0, 'what': 1.0, 'first': 1.0, 'it': 3.0, 'children': 1.0, 'business': 1.0, 'my': 2.0, 'start': 1.0, 'that': 2.0, 'box': 1.0, 'i': 7.0, 'looking': 2.0, 'priced': 1.0, 'in': 2.0, 'daycare': 1.0, 'was': 2.0, 'aid': 1.0, 'feel': 1.0, 'a': 1.0, 'reasonably': 1.0, 'up': 1.0, 'to': 1.0, 'all': 1.0, 'as': 1.0, 'quality': 1.0, 'but': 1.0, 'kit': 2.0, 'actually': 1.0, 'for': 4.0, 'product': 1.0, 'the': 2.0, 'arrived': 1.0, 'on': 2.0, 'shop': 1.0, 'condition': 1.0, 'perfectly': 1.0, 'nonetheless': 1.0, 'so': 1.0, 'needs': 1.0, 'smaller': 1.0, 'time': 1.0, 'is': 3.0, 'anticipated': 1.0, 'does': 1.0, 'than': 1.0, 'not': 1.0, 'read': 1.0, 'this': 1.0, 'found': 1.0, 'perfect': 1.0, 'functional': 1.0, 'and': 5.0, 'consistently': 1.0}
Word element => {'enough': 1.0, 'it': 1.0, 'and': 1.0, 'baby': 1.0, 'dog': 1.0, 'our': 2.0, 'just': 1.0, 'perfect': 1.0, 'for': 1.0, 'we': 1.0, 'pieces': 1.0, 'on': 1.0, 'with': 1.0, 'hand': 1.0, 'this': 1.0, 'traveling': 2.0, 'when': 1.0, 'has': 1.0, 'keep': 1.0, 'camping': 1.0}
Word element => {'the': 1.0, 'before': 1.0, 'thing': 1.0, 'have': 1.0, 'to': 1.0, 'baby': 1.0, 'will': 1.0, 'arrives': 1.0, 'my': 2.0, 'bought': 1.0, 'enough': 1.0, 'good': 1.0, 'whole': 1.0, 'i': 1.0, 'it': 2.0, 'least': 1.0, 'purse': 1.0, 'without': 1.0, 'so': 1.0, 'we': 1.0, 'see': 1.0, 'at': 1.0, 'fits': 1.0, 'seems': 1.0, 'in': 1.0, 'filling': 1.0}
Word element => {'there': 1.0, 'wash': 1.0, 'eye': 1.0, 'creams': 2.0, 'important': 1.0, 'mainly': 1.0, 'me': 1.0, 'and': 5.0, 'sterile': 2.0, 'which': 1.0, 'in': 2.0, 'really': 1.0, 'included': 1.0, 'i': 3.0, 'genuine': 1.0, 'well': 2.0, 'convenient': 1.0, 'purchased': 2.0, 'are': 1.0, 'brands': 1.0, 'because': 1.0, 'very': 2.0, 'to': 2.0, 'as': 2.0, 'it': 1.0, 'this': 3.0, 'product': 1.0, 'kit': 2.0, 'love': 2.0, 'one': 1.0, 'the': 3.0, 'is': 3.0, 'around': 1.0, 'more': 1.0, 'have': 3.0, 'cause': 1.0, 'they': 2.0, 'work': 1.0, 'quality': 1.0, 'will': 1.0, 'add': 1.0, 'bandages': 1.0, 'other': 1.0, 'do': 1.0, 'only': 1.0, 'much': 1.0, 'better': 1.0, 'on': 1.0, 'hope': 1.0, 'that': 1.0, 'of': 1.0}
Word element => {'babies': 1.0, 'would': 1.0, 'they': 1.0, 'for': 2.0, 'wore': 1.0, 'soft': 1.0, 'was': 1.0, 'not': 1.0, 'that': 1.0, 'our': 2.0, 'can': 1.0, 'looking': 1.0, 'fill': 2.0, 'out': 1.0, 'finally': 1.0, 'we': 1.0, 'i': 1.0, 'old': 1.0, 'while': 2.0, 'well': 1.0, 'see': 1.0, 'a': 1.0, 'close': 1.0, 'and': 1.0, 'match': 1.0, 'as': 3.0, 'ones': 2.0, 'these': 1.0, 'the': 2.0, 'older': 1.0, 'bill': 2.0}
Word element => {'inserts': 1.0, 'be': 1.0, 'guess': 1.0, 'in': 1.0, 'newborn': 1.0, 'bigger': 1.0, 'wrap': 1.0, 'way': 1.0, 'no': 1.0, 'shade': 1.0, 'diaper': 1.0, 'stroller': 1.0, 'or': 1.0, 'car': 1.0, 'for': 2.0, 'caring': 1.0, 'clean': 1.0, 'could': 1.0, 't': 1.0, 'a': 4.0, 'well': 1.0, 'many': 1.0, 'stuff': 1.0, 'is': 2.0, 'one': 1.0, 'bought': 1.0, 'use': 3.0, 'intended': 1.0, 'wouldn': 1.0, 'diapers': 3.0, 'never': 2.0, 'cloths': 2.0, 'decent': 1.0, 'these': 3.0, 'such': 1.0, 'great': 1.0, 'can': 2.0, 'small': 1.0, 'have': 2.0, 'cloth': 1.0, 'etc': 1.0, 'i': 6.0, 'old': 1.0, 'them': 3.0, 'quality': 1.0, 'baby': 2.0, 'folded': 1.0, 'you': 1.0, 'moth': 1.0, 'when': 2.0, 'seat': 1.0, 'to': 1.0, 'as': 5.0, 'overall': 1.0, 'are': 3.0, 'they': 4.0, 'of': 1.0, 'too': 2.0, 'and': 3.0, 'seven': 1.0, 'primarily': 1.0, 'bibs': 1.0, 'wash': 1.0, 'over': 1.0, 'than': 1.0, 'because': 2.0, 'sized': 1.0, 'other': 1.0, 'used': 2.0, 'there': 1.0, 'burp': 1.0}
Word element => {'soft': 1.0, 'fabric': 1.0, 'well': 1.0, 'wash': 1.0, 'found': 1.0, 've': 1.0, 'we': 1.0, 'and': 2.0, 'most': 1.0, 'is': 1.0, 'son': 1.0, 'has': 1.0, 'they': 1.0, 'our': 1.0, 'these': 1.0, 'reflux': 1.0, 'are': 1.0, 'the': 2.0, 'absorbent': 1.0, 'cloths': 1.0, 'burp': 1.0}
Word element => {'value': 1.0, 'etc': 1.0, 'spills': 1.0, 'for': 2.0, 'good': 1.0, 'burp': 1.0, 'as': 1.0, 'is': 1.0, 'little': 1.0, 'when': 1.0, 'prop': 1.0, 'them': 1.0, 'and': 2.0, '10': 2.0, 'next': 1.0, 'to': 2.0, 'head': 1.0, 'absorbent': 1.0, 'nursing': 2.0, 'pack': 1.0, 'all': 1.0, 'use': 1.0, 'up': 1.0, 'says': 1.0, 'ordered': 1.0, 'cloth': 1.0, 'i': 2.0, 'he': 1.0, 'it': 2.0, 'title': 1.0, 'a': 2.0, 'cloths': 2.0, 'my': 2.0, 'are': 1.0, 'keep': 1.0, 'chair': 1.0, 'ones': 1.0, 'the': 1.0, 'these': 1.0, 'soft': 1.0}
Word element => {'confusing': 1.0, 'call': 1.0, 'll': 1.0, 'go': 1.0, 'just': 2.0, 'garbage': 1.0, 'back': 1.0, 'making': 2.0, 'stop': 1.0, 'hopefully': 2.0, 'dollars': 1.0, 'with': 1.0, 'vote': 1.0, 'all': 1.0, 'let': 1.0, 'cheaper': 1.0, 'obviously': 1.0, 'is': 1.0, 'stores': 1.0, 'since': 1.0, 'find': 1.0, 'tough': 1.0, 'wash': 1.0, 'last': 1.0, 'know': 1.0, 'through': 1.0, 'plush': 1.0, 'pushing': 1.0, 'spit': 1.0, 'shirt': 1.0, 'enough': 1.0, 're': 1.0, 'remember': 1.0, 'arrived': 1.0, 'your': 1.0, 'surprised': 1.0, 'not': 4.0, 'pleasantly': 1.0, 'that': 5.0, 'classic': 1.0, 'open': 1.0, 'availablegerber': 1.0, 'whitewhich': 1.0, 'and': 8.0, 'ones': 1.0, 'too': 2.0, 'you': 1.0, 'things': 1.0, 'see': 1.0, 'tried': 1.0, 'forever': 1.0, 'chance': 1.0, 'make': 1.0, 'a': 6.0, 't': 2.0, 'we': 4.0, 'raves': 1.0, 'used': 1.0, 'seemed': 1.0, '10': 1.0, 'bought': 2.0, 'count': 1.0, 'business': 1.0, 'it': 2.0, 'only': 3.0, 'birdseye': 4.0, 'overly': 1.0, 'very': 3.0, 'when': 3.0, 'decision': 1.0, 'weave': 2.0, 'diaper': 1.0, 'i': 7.0, 'to': 5.0, 'disappointed': 1.0, 'our': 2.0, 'had': 2.0, 'now': 2.0, 'thin': 1.0, 'was': 2.0, 'didn': 1.0, 'white': 2.0, 'holes': 1.0, 'sturdy': 1.0, 'they': 5.0, 'aren': 1.0, 'but': 3.0, 'the': 8.0, 'of': 4.0, 'them': 2.0, 'always': 2.0, 'cheap': 1.0, 'like': 4.0, 'made': 1.0, 'which': 1.0, 'my': 2.0, 'burpy': 2.0, 'old': 1.0, 'opinion': 1.0, 'extra': 1.0, 'diapers': 7.0, 'are': 4.0, 'can': 1.0, 'so': 3.0, 'family': 1.0, 'perfect': 2.0, 'soft': 2.0, 'kushies': 1.0, 'full': 1.0, 'better': 1.0, 'definitely': 1.0, 'sell': 1.0, 'pack': 3.0, 's': 3.0, 'thesekushies': 1.0, 'gerbers': 1.0, '6': 1.0, 'washable': 1.0, 'up': 2.0, 'flat': 1.0, 'everyone': 1.0, 'about': 1.0, 'in': 4.0, 'thick': 3.0, 'linty': 1.0, 'from': 2.0, 'feels': 1.0, 'flannel': 1.0, 'protect': 1.0, 'more': 1.0, 'said': 1.0, 'towel': 1.0, 'get': 3.0, 'absorbent': 1.0, 'than': 1.0, 'really': 1.0, 'gerber': 3.0, 'wanted': 1.0, 'gauze': 3.0, 'widely': 1.0, 'these': 6.0, 'sounds': 1.0, 'buy': 1.0, 'flatfold': 1.0, 'something': 1.0, 'experience': 1.0, 'hopes': 1.0, 'instead': 1.0, 'cloth': 5.0, 'took': 1.0}
Word element => {'purchasing': 1.0, 'was': 2.0, 'thought': 1.0, 'what': 2.0, 'difference': 1.0, 'well': 1.0, 'feel': 1.0, 'up': 1.0, 'else': 1.0, 'anything': 1.0, 'between': 1.0, 'shop': 1.0, 'actually': 1.0, 'for': 3.0, 'shipping': 1.0, 'with': 1.0, 'pink': 1.0, 'but': 2.0, 'wrapped': 1.0, 'just': 1.0, 'because': 1.0, 'not': 1.0, 'last': 1.0, 'arrived': 1.0, 'at': 1.0, 'time': 1.0, 'isn': 1.0, 'chose': 1.0, 'it': 4.0, 'this': 1.0, 'minute': 1.0, 'purple': 1.0, 'two': 1.0, 'i': 5.0, 'particular': 1.0, 'upset': 1.0, 'very': 1.0, 'little': 1.0, 'rosary': 2.0, 'received': 1.0, 'plastic': 1.0, 'day': 1.0, 'looking': 1.0, 'baptism': 2.0, 'the': 8.0, 't': 1.0, 'till': 1.0, 'is': 3.0, 'in': 2.0, 'said': 1.0, 'needed': 1.0, 'ish': 1.0, 'quality': 1.0, 'baby': 1.0, 'y': 1.0, 'waited': 1.0, 'beads': 1.0, 'card': 1.0, 'as': 2.0, 'to': 1.0, 'all': 1.0, 'blessings': 1.0, 'even': 1.0, 'that': 1.0, 'box': 1.0, 'and': 4.0, 'too': 1.0, 'late': 1.0}
Word element => {'long': 1.0, 'a': 1.0, 'last': 1.0, 'all': 1.0, 'product': 1.0, 'time': 2.0, 'is': 1.0, 'uses': 1.0, 'so': 1.0, 'high': 1.0, 'cute': 1.0, 'the': 1.0, 'my': 1.0, 'will': 1.0, 'baby': 1.0, 'quality': 1.0, 'and': 2.0, 'this': 1.0, 'loves': 1.0, 'it': 2.0}
Word element => {'love': 1.0, 'seen': 1.0, 'in': 1.0, 'replica': 1.0, 'a': 1.0, 'as': 2.0, 's': 1.0, 'awesome': 1.0, 'good': 1.0, 'think': 1.0, 'have': 2.0, 'any': 1.0, 'about': 1.0, 'amazon': 1.0, 'is': 2.0, 'animals': 2.0, 'on': 1.0, 'and': 2.0, 'my': 1.0, 'i': 3.0, 'found': 1.0, 'too': 1.0, 'daughter': 1.0, 'when': 1.0, 'thrilled': 1.0, 'this': 1.0, 'it': 5.0, 'line': 1.0, 'at': 1.0, 'to': 1.0, 'had': 1.0, 'stuffed': 2.0, 'was': 1.0, 'came': 1.0, 'crazy': 1.0, 'she': 1.0}
Word element => {'him': 1.0, 'resemble': 1.0, 'much': 1.0, 't': 1.0, 'plush': 1.0, 'have': 1.0, 'loves': 1.0, 'rio': 1.0, 'who': 1.0, 'a': 1.0, 'close': 1.0, 'in': 1.0, 'old': 1.0, 'i': 1.0, 'is': 1.0, 'enough': 1.0, 'that': 1.0, 'recognizes': 1.0, 'this': 1.0, 'he': 1.0, 'it': 2.0, 'two': 1.0, 'blu': 1.0, 'opinion': 1.0, 'year': 1.0, 'as': 1.0, 'doesn': 1.0, 'but': 1.0, 'my': 1.0}
Word element => {'instead': 1.0, 'plan': 1.0, 'better': 1.0, 'have': 1.0, 'th': 1.0, 'rio': 1.0, 'recognize': 1.0, 'long': 1.0, 'the': 2.0, 'don': 2.0, 'money': 1.0, 'and': 1.0, 'giving': 2.0, 'like': 3.0, 'nothing': 2.0, 'again': 1.0, 'are': 1.0, 'shipping': 1.0, 'that': 2.0, 'totally': 1.0, 'cheap': 1.0, 'fromchina': 1.0, 'i': 6.0, 'birds': 2.0, 'blu': 1.0, 'cute': 1.0, 'smart': 1.0, 'children': 1.0, 'found': 1.0, 'this': 1.0, 'wish': 1.0, 'it': 4.0, 'looks': 3.0, 'as': 2.0, 'to': 4.0, 'china': 1.0, 'return': 1.0, 'even': 2.0, 'picture': 1.0, 'waste': 2.0, 'on': 1.0, 'think': 1.0, 'your': 1.0, 'time': 1.0, 'they': 1.0, 'did': 1.0, 'absolutely': 1.0, 'm': 1.0, 'by': 1.0, 'not': 1.0, 'my': 1.0, 't': 2.0, 'could': 1.0, 'going': 1.0, 's': 1.0, 'them': 1.0, 'forever': 1.0, 'enough': 1.0}
Word element => {'better': 1.0, 'hope': 1.0, 'hooked': 1.0, 'won': 1.0, 'kid': 1.0, 'quite': 1.0, 'wings': 1.0, 'stitching': 1.0, 's': 3.0, 't': 2.0, 'a': 5.0, 'hole': 1.0, 'might': 1.0, 'than': 1.0, 'find': 1.0, 'larger': 1.0, 'actually': 2.0, 'sad': 1.0, 'toy': 2.0, 'wing': 1.0, 'son': 1.0, 'one': 1.0, 'rio': 1.0, 'eyes': 2.0, 'this': 1.0, 'other': 1.0, 'deceptive': 1.0, 'and': 6.0, 'o': 1.0, 'there': 3.0, 'soon': 1.0, 'but': 2.0, 'beak': 1.0, 'quality': 1.0, 'poor': 2.0, 'sure': 1.0, 'box': 1.0, 'loves': 1.0, 'gave': 1.0, 'figured': 1.0, 'cut': 1.0, 'symmetrical': 1.0, 'also': 1.0, 'deal': 1.0, 'bucks': 1.0, 'evident': 1.0, 'so': 2.0, 'everything': 1.0, 'to': 4.0, 'as': 2.0, 'was': 5.0, 'stuffed': 2.0, 'even': 1.0, 'he': 2.0, 'thrilled': 1.0, 'just': 1.0, 'my': 1.0, 'looks': 1.0, 'two': 1.0, 'threads': 1.0, '17': 1.0, 'care': 1.0, 'like': 1.0, 'some': 2.0, 'opened': 1.0, 'then': 1.0, 'up': 1.0, 'back': 2.0, 'hoped': 1.0, 'cosmetic': 1.0, 'again': 1.0, 'what': 1.0, 'tags': 1.0, 'days': 1.0, 'blue': 1.0, 'jewel': 1.0, 'it': 3.0, 'him': 1.0, 'though': 1.0, 'within': 1.0, 'be': 1.0, 'the': 11.0, 'of': 1.0, 'snuggling': 1.0, 'are': 1.0, 'i': 7.0, 'coming': 1.0, 'in': 1.0, 'not': 2.0, 'do': 1.0, 'noticed': 1.0, 'realize': 1.0, 'big': 1.0, 'really': 1.0, 'or': 1.0, 'out': 2.0, 'nothing': 1.0, 'photo': 1.0, 'is': 1.0, 'weren': 1.0, 'with': 1.0, 'smiling': 1.0}
Word element => {'must': 1.0, 'son': 1.0, 'front': 1.0, '15': 1.0, 'my': 1.0, 'diaper': 2.0, 'great': 2.0, 'way': 1.0, 'this': 1.0, 'with': 1.0, 'it': 3.0, 'he': 1.0, 'at': 1.0, 'night': 3.0, 'old': 1.0, 'i': 1.0, 'both': 1.0, 'little': 1.0, 'inserts': 1.0, 'in': 2.0, 'skinny': 1.0, 'more': 1.0, 'is': 3.0, 'but': 1.0, 'change': 1.0, 'bit': 1.0, 'time': 1.0, 'made': 1.0, 'through': 1.0, 'for': 1.0, 'fit': 1.0, 'the': 4.0, 'without': 1.0, '5': 1.0, 'months': 1.0, 'bulky': 1.0, 'about': 1.0, 'and': 3.0, 'tall': 1.0, 'was': 1.0, 'all': 1.0, 'to': 1.0, 'lbs': 1.0, 'am': 1.0, 'buy': 1.0, 'definitely': 1.0, 'a': 3.0, 's': 1.0, 'going': 1.0}
Word element => {'the': 1.0, 'would': 1.0, 'overheating': 1.0, 'made': 1.0, 'thick': 1.0, 'cover': 1.0, 'my': 1.0, 'unfortunately': 1.0, 'than': 1.0, 'summer': 1.0, 'is': 2.0, 'longer': 1.0, 'much': 1.0, 'to': 1.0, 'son': 1.0, 'decided': 1.0, 'i': 1.0, 'for': 1.0, 'one': 1.0, 'try': 1.0, 'and': 2.0, 'diapers': 1.0, 'polyester': 1.0, 'usually': 1.0, 'bought': 1.0, 'recommend': 1.0, 'lot': 1.0, 'absorbs': 1.0, 'not': 1.0, 'because': 1.0, 'takes': 1.0, 'of': 2.0, 'bamboo': 1.0, 'insert': 1.0, 'this': 1.0, 'cotton': 2.0, 'only': 1.0, 'it': 1.0, 'a': 1.0, 'however': 1.0, 'drying': 1.0}
Word element => {'wait': 1.0, 'issue': 1.0, 'an': 1.0, 'night': 1.0, 'buy': 1.0, 'day': 1.0, 'for': 1.0, 'over': 1.0, 'cross': 1.0, 'many': 1.0, 'were': 1.0, 'there': 1.0, 'why': 1.0, 'understand': 1.0, 'use': 1.0, 'easy': 1.0, 've': 1.0, 'super': 1.0, 'was': 1.0, 'can': 1.0, 'but': 1.0, 'nervous': 1.0, 'brands': 1.0, 'major': 1.0, 'this': 3.0, 'have': 1.0, 'got': 1.0, 'diapers': 1.0, 'the': 4.0, 'diaper': 2.0, 'both': 1.0, 'knocks': 1.0, 'and': 7.0, 'in': 1.0, 'totally': 1.0, 'used': 1.0, 'tons': 1.0, 'on': 1.0, 'ballpark': 1.0, 'out': 1.0, 'my': 3.0, 'fits': 1.0, 'more': 1.0, 'is': 1.0, 'say': 1.0, 'stash': 1.0, 'i': 4.0, 'old': 1.0, 'bought': 1.0, 'one': 1.0, 'favorite': 1.0, 'trim': 1.0, 'of': 3.0, 't': 1.0, 'we': 1.0, 's': 1.0, 'very': 1.0, '16': 1.0, 'it': 2.0, 'month': 1.0, 'all': 1.0, 'to': 4.0, 'grow': 1.0, 'time': 2.0, 'so': 2.0, 'has': 1.0, 'well': 1.0, 'room': 1.0, 'sides': 1.0, 'though': 1.0, 'colors': 1.0, 'are': 1.0, 'had': 1.0, 'vibrant': 1.0, 'at': 1.0, 'when': 1.0, 'never': 1.0, 'saw': 1.0, 'first': 1.0, 'snaps': 1.0}
Word element => {'luck': 1.0, 'your': 1.0, 'try': 1.0, 'prime': 1.0, 'want': 1.0, 'amazon': 1.0, 'have': 1.0, 'come': 1.0, 'where': 1.0, 'waste': 1.0, 'that': 1.0, 'star': 1.0, 'however': 1.0, 's': 1.0, 'you': 2.0, 'cute': 1.0, 'from': 1.0, 'chipped': 1.0, 'to': 1.0, 'was': 3.0, 'item': 1.0, 'the': 3.0, 't': 1.0, '1': 1.0, 'and': 2.0, 'screen': 1.0, 'unless': 1.0, 'battery': 1.0, 'dead': 1.0, 'don': 1.0, 'money': 1.0}
Word element => {'produced': 1.0, 'works': 1.0, 'great': 1.0, 'better': 1.0, 'product': 2.0, 'safety': 1.0, 'for': 2.0, 'than': 1.0, 'a': 3.0, 'that': 2.0, 'is': 1.0, 'wonderful': 1.0, 'price': 1.0, 'babies': 1.0, 'nothing': 1.0}
Word element => {'again': 1.0, 'this': 1.0, 'purchase': 1.0, 'operation': 1.0, 'observe': 1.0, 'did': 1.0, 'model': 1.0, 'will': 1.0, 'replaceable': 1.0, 'the': 2.0, 'are': 1.0, 'device': 1.0, 'arrived': 1.0, 'batteries': 2.0, 'with': 1.0, 'in': 1.0, 'dead': 1.0, 'returned': 1.0, 'and': 1.0, 'normal': 1.0, 'not': 3.0, 'was': 1.0}
Word element => {'accurate': 1.0, 'of': 1.0, 'out': 1.0, 'it': 1.0, 'works': 1.0, 'tub': 1.0, 'to': 1.0, 'temp': 1.0, 'and': 2.0, 'the': 1.0, 'my': 1.0, 'quickly': 1.0, 'in': 1.0, 'daughter': 1.0, 'reading': 1.0, 'well': 1.0, 'also': 1.0, 'loves': 1.0, 'play': 1.0, 'with': 1.0}
Word element => {'being': 1.0, 'blue': 1.0, 'house': 1.0, 'inside': 1.0, 'able': 1.0, 'testing': 1.0, 'enjoyed': 1.0, 'doing': 1.0, 'is': 1.0, 'boys': 1.0, 'grandson': 1.0, 'pink': 1.0, 'year': 1.0, 'water': 1.0, '5': 1.0, 'grandchildren': 1.0, '4': 1.0, 'old': 1.0, 'i': 2.0, 'of': 1.0, 'each': 1.0, 'my': 2.0, 'ones': 1.0, 'the': 7.0, 'bought': 1.0, 'girls': 1.0, 'turtles': 3.0, 'they': 1.0, 'out': 1.0, 'them': 1.0, 'for': 1.0, 'love': 3.0, 'parents': 1.0, 'also': 1.0, 've': 1.0, 'readings': 1.0, 'get': 1.0, 'projects': 1.0, 'and': 4.0, 'temperature': 1.0, 'play': 1.0, 'science': 1.0, 'kids': 1.0, 'with': 1.0, 'to': 2.0, 'now': 1.0}
Word element => {'buy': 1.0, 'it': 2.0, 'recommend': 1.0, 'would': 1.0, 'i': 1.0, 'this': 1.0, 'is': 1.0, 'the': 1.0, 'people': 1.0, 'ur': 1.0, 'for': 2.0, 'to': 1.0, 'useful': 1.0, 'checking': 1.0, 'water': 1.0, 'very': 1.0, 'temp': 1.0, 'baby': 1.0}
Word element => {'easy': 1.0, 'else': 1.0, 'everything': 1.0, 'wash': 1.0, 'throw': 1.0, 'out': 1.0, 'inside': 1.0, 'machine': 1.0, 'washing': 1.0, 'it': 2.0, 'carry': 1.0, 'then': 2.0, 'laundry': 1.0, 'm': 1.0, 'rotation': 1.0, 'empty': 1.0, 'try': 1.0, 'just': 1.0, 'wet': 1.0, 'needed': 1.0, 'turn': 1.0, 'in': 2.0, 'super': 1.0, 've': 1.0, 'purchase': 1.0, 'my': 2.0, 'the': 8.0, 'diaper': 1.0, 'to': 6.0, 'add': 1.0, 'planet': 1.0, 'and': 5.0, 'wise': 1.0, 'more': 1.0, 'is': 1.0, 'really': 1.0, 'very': 2.0, 'color': 1.0, 'decided': 1.0, 'one': 1.0, 'i': 6.0, 'bags': 2.0, 'cute': 1.0, 'worth': 1.0, 'used': 1.0, 'pleased': 1.0, 'combos': 1.0, 'days': 1.0, 'with': 3.0, 'durable': 1.0, 'incredibum': 2.0, 'this': 1.0, 'contents': 1.0, 'are': 2.0, 'well': 1.0, 'made': 1.0, 'plus': 1.0, 'of': 1.0, 'bag': 3.0, 'reversible': 1.0, 'past': 1.0, '2': 1.0, 'but': 1.0, 'can': 1.0, 'hold': 1.0}
Word element => {'cloth': 1.0, 'those': 1.0, 'for': 1.0, 'recommended': 1.0, 'same': 1.0, 'of': 1.0, 'out': 1.0, 'come': 1.0, 'bags': 1.0, 'after': 1.0, 'cute': 1.0, 'does': 1.0, 'what': 1.0, 'plastic': 1.0, 'diaper': 1.0, 'leak': 1.0, 'fold': 1.0, 'do': 1.0, 'odors': 1.0, 'says': 1.0, 'just': 1.0, 'controls': 1.0, 'the': 4.0, 'this': 1.0, 'it': 3.0, 'is': 1.0, 'highly': 1.0, 'really': 1.0, 'looking': 1.0, 'unlike': 1.0, 'exposed': 1.0, 'doesn': 1.0, 'will': 1.0, 'even': 1.0, 'diapers': 1.0, 'we': 1.0, 't': 3.0, 'a': 1.0, 'wetbag': 1.0, 'no': 1.0, 'that': 2.0, 'ties': 1.0, 'and': 1.0, 'closed': 1.0, 'fabric': 1.0, 'have': 1.0, 'wash': 3.0, 'don': 1.0, 'over': 1.0, 'so': 1.0, 'aren': 1.0, 'pull': 1.0, 'stiff': 1.0, 'closely': 1.0, 'teh': 1.0, 'you': 1.0, 'unless': 1.0, 'smells': 1.0, 'never': 1.0, 'stained': 1.0}
Word element => {'length': 1.0, 'pleasant': 1.0, 'has': 1.0, 'of': 1.0, 'good': 1.0, 'soft': 1.0, 'and': 3.0, 'quality': 1.0, 'very': 1.0, 'necklace': 1.0, 'chime': 1.0, 'allow': 1.0, 'pretty': 1.0, 'the': 2.0, 'a': 2.0, 'is': 1.0, 'this': 1.0, 'customizing': 1.0, 'sound': 1.0, 'ribbon': 1.0, 'long': 1.0, 'was': 1.0, 'to': 1.0, 'its': 1.0}
Word element => {'product': 1.0, 'small': 1.0, 'clip': 2.0, 'if': 1.0, 'pink': 2.0, 'large': 2.0, 'right': 1.0, 'size': 2.0, 'between': 1.0, 'black': 2.0, 'well': 1.0, 'was': 1.0, 'to': 2.0, 'otherwise': 1.0, 'i': 5.0, 'clips': 1.0, 'the': 6.0, 's': 1.0, 'a': 2.0, 't': 1.0, 'really': 2.0, 'and': 2.0, 'me': 1.0, 'like': 2.0, 'only': 1.0, 'it': 3.0, 'in': 1.0, 'wish': 1.0, 'so': 1.0, 'smaller': 1.0, 'my': 1.0, 'that': 1.0, 'there': 1.0, 'of': 1.0, 'one': 3.0, 'almost': 1.0, 'ridiculous': 1.0, 'is': 3.0, 'holds': 1.0, 'little': 1.0, 'you': 1.0, 'ask': 1.0, 'don': 1.0, 'use': 2.0, 'problem': 1.0, 'things': 2.0, 'these': 1.0, 'some': 1.0, 'but': 1.0, 'difficult': 1.0, 'because': 1.0}
Word element => {'babysit': 1.0, 'keys': 1.0, 'one': 1.0, 'easy': 1.0, 'very': 1.0, 'pushing': 1.0, 'focus': 1.0, 'me': 1.0, 'makes': 1.0, 'smaller': 1.0, 'time': 1.0, 'put': 1.0, 'on': 2.0, 'your': 1.0, 'shopping': 2.0, 'it': 4.0, 'stroller': 4.0, 'use': 3.0, 'allowing': 1.0, 'however': 1.0, 'harder': 1.0, 'apartment': 1.0, 'else': 1.0, 'i': 4.0, 'early': 1.0, 'a': 3.0, 'hold': 1.0, 'babysitter': 1.0, 'purse': 2.0, 'and': 2.0, 'perfectly': 1.0, 'education': 1.0, 'to': 6.0, 'now': 1.0, 'right': 1.0, 'that': 1.0, 'they': 1.0, 'double': 1.0, 'this': 1.0, 'full': 1.0, 'even': 1.0, 'twins': 1.0, 'am': 2.0, 'you': 1.0, 'when': 1.0, 'have': 1.0, 'push': 1.0, 'my': 1.0, 'the': 6.0, 'holding': 1.0, 'hard': 1.0, 'while': 1.0, 'teacher': 1.0, 'bags': 2.0, 'onto': 1.0, 'where': 1.0, 'actually': 1.0, 'product': 1.0, 'is': 2.0, 'around': 1.0, 'holds': 1.0, 'anything': 1.0}
Word element => {'keys': 1.0, 'car': 1.0, 'which': 1.0, 'extra': 1.0, 'for': 1.0, 'product': 1.0, 'able': 1.0, 'born': 1.0, 'want': 1.0, 'girlier': 1.0, 'back': 1.0, 'stroller': 2.0, 'diaper': 1.0, 'the': 3.0, 'comes': 1.0, 'is': 4.0, 'more': 1.0, 'great': 1.0, 'daughter': 1.0, 'described': 1.0, 'be': 3.0, 'her': 2.0, 'i': 3.0, 'bags': 1.0, 'ordered': 1.0, 'hook': 2.0, 'it': 5.0, 'can': 1.0, 'hang': 2.0, 'my': 2.0, 'of': 1.0, 'bag': 1.0, 'or': 1.0, 's': 1.0, 'a': 2.0, 'few': 1.0, 'seems': 1.0, 'this': 2.0, 'perfect': 2.0, 'exactly': 1.0, 'to': 5.0, 'as': 1.0, 'little': 1.0, 'very': 1.0, 'with': 1.0, 'pink': 1.0, 'soon': 1.0, 'green': 1.0, 'and': 2.0, 'sturdy': 1.0, 'grocery': 1.0, 'addition': 1.0, 'on': 2.0, 'make': 1.0, 'so': 2.0, 'bit': 1.0}
Word element => {'pacifier': 1.0, 'of': 1.0, 'a': 1.0, 'tracking': 1.0, 'keeping': 1.0, 'for': 1.0, 'great': 1.0}
Word element => {'mangling': 1.0, 'move': 1.0, 'that': 1.0, 'wheels': 1.0, 'back': 1.0, 'money': 1.0, 'but': 1.0, 'stroller': 3.0, 'total': 1.0, 'at': 1.0, 'of': 2.0, 'permanently': 1.0, 'disney': 1.0, 'the': 7.0, 'great': 1.0, 'this': 1.0, 'it': 7.0, 'wouldn': 2.0, 'first': 1.0, 'around': 3.0, 'is': 1.0, 'retract': 1.0, 'really': 1.0, 'wheel': 2.0, 'wire': 2.0, 'phil': 1.0, 'was': 2.0, 'our': 2.0, 'to': 2.0, 'twisted': 1.0, 'had': 1.0, 'so': 3.0, 'two': 1.0, 'attempted': 1.0, 'short': 1.0, 'and': 3.0, 'ted': 1.0, 'waste': 1.0, 'broke': 1.0, 'also': 1.0, 'thin': 1.0, 'day': 1.0, 't': 2.0, 'a': 1.0, 's': 1.0, 'we': 2.0, 'front': 1.0, 'use': 1.0, 'loop': 1.0, 'locked': 1.0, 'idea': 1.0, 'when': 1.0, 'attendant': 1.0, 'frame': 1.0, 'tried': 1.0}
Word element => {'doors': 1.0, 'product': 1.0, 'carriage': 1.0, 'many': 1.0, 'them': 1.0, 'cabinets': 1.0, 'lock': 1.0, 'and': 1.0, 'retractable': 1.0, 'i': 2.0, 'locks': 1.0, 'stroller': 1.0, 'but': 1.0, 'use': 1.0, 'have': 1.0, 'this': 1.0, 'great': 1.0, 'these': 1.0, 'the': 2.0, 'more': 1.0, 'for': 1.0, 'one': 1.0, 'love': 1.0, 'purposes': 1.0, 'way': 1.0, 'had': 1.0, 'was': 1.0, 'buggyguard': 1.0, 'works': 1.0, 'expensive': 1.0, 'well': 1.0, 'same': 1.0}
Word element => {'so': 1.0, 'correctly': 1.0, 'never': 1.0, 'i': 1.0, 'it': 3.0, 'holds': 1.0, 'use': 1.0, 'umcliping': 1.0, 'clip': 1.0, 'is': 2.0, 't': 1.0, 'the': 1.0, 'din': 1.0, 'anymore': 1.0, 'too': 1.0, 'expensivo': 1.0, 'for': 1.0, 'works': 1.0, 'does': 1.0, 'what': 1.0, 'aleays': 1.0, 'and': 1.0, 'just': 1.0, 'not': 1.0}
Word element => {'arrive': 1.0, 'girls': 1.0, 'work': 1.0, 'forward': 1.0, 'and': 5.0, 'delivery': 1.0, 'person': 1.0, 'received': 1.0, 'so': 1.0, 'are': 2.0, 'the': 1.0, 'twin': 1.0, 'great': 1.0, 'we': 1.0, 'holders': 1.0, 'this': 2.0, 'product': 2.0, 'just': 1.0, 'estimated': 1.0, 'its': 1.0, 'husband': 1.0, 'look': 1.0, 'pretty': 1.0, 'with': 1.0, 'date': 1.0, 'went': 1.0, 'my': 1.0, 'our': 1.0, 'paci': 1.0, 'to': 2.0, 'as': 2.0, 'described': 1.0, 'when': 1.0, 'prior': 1.0, 'i': 3.0, 'washed': 1.0, 'baby': 1.0, 'ahead': 1.0, 'them': 3.0, 'directed': 1.0, 'let': 1.0, 'quickly': 1.0, 'in': 2.0, 'air': 1.0, 'dry': 1.0, 'condition': 1.0, 'they': 1.0, 'very': 2.0, 'dried': 1.0, 'pleased': 1.0, 'hand': 1.0, 'using': 1.0}
Word element => {'looking': 1.0, 'cute': 1.0, 'while': 1.0, 'in': 1.0, 'once': 1.0, 'but': 1.0, 'stroller': 1.0, 'for': 1.0, 'one': 1.0, 'have': 1.0, 'i': 1.0, 'holder': 1.0, 'pacifier': 1.0, 'used': 2.0, 'even': 1.0, 'most': 1.0, 'use': 1.0, 'than': 1.0, 'was': 1.0, 'normal': 1.0, 'so': 1.0, 'after': 1.0, 'hold': 1.0, 'just': 1.0, 'not': 1.0, 'months': 1.0, 'few': 1.0, 'broke': 1.0, 'the': 4.0, 'well': 1.0, 'a': 2.0, 'spring': 1.0, 'clip': 1.0, 'should': 1.0, 'only': 1.0, 'this': 1.0, 'it': 2.0, 'probably': 1.0, 'of': 1.0, 'up': 1.0, 'that': 1.0, 'longer': 1.0, 'is': 1.0}
Word element => {'month': 1.0, 'about': 1.0, 'after': 1.0, 'to': 1.0, 'that': 2.0, 'am': 1.0, 'of': 1.0, 'has': 1.0, 'know': 1.0, 'do': 1.0, 'and': 1.0, 'couple': 1.0, 'loop': 1.0, 'frustrated': 1.0, 'we': 1.0, 'the': 1.0, 'a': 2.0, 'sew': 1.0, 'can': 1.0, 'times': 1.0, 'side': 1.0, 'used': 1.0, 'have': 2.0, 'but': 1.0, 'back': 1.0, 'only': 1.0, 'it': 3.0, 'come': 1.0, 'almost': 1.0, 'off': 1.0, 'on': 1.0, 'for': 1.0, 'using': 1.0, 'one': 1.0, 'i': 4.0}
Word element => {'much': 1.0, 'so': 4.0, 'you': 1.0, 'thank': 1.0, 'exactly': 1.0, 'be': 1.0, 'to': 1.0, 'was': 2.0, 'fast': 1.0, 'in': 1.0, 'very': 2.0, 'and': 1.0, 'me': 1.0, 'got': 1.0, 'expecting': 1.0, 'purchasing': 1.0, 'love': 1.0, 'i': 4.0, 'found': 1.0, 'what': 1.0, 'glad': 1.0, 'it': 2.0, 'this': 1.0, 'will': 1.0, 'more': 1.0, 'the': 1.0, 'future': 1.0, 'near': 1.0}
Word element => {'looking': 1.0, 'cute': 1.0, 'too': 1.0, 'easily': 1.0, 'to': 1.0, 'easy': 1.0, 'and': 2.0, 'must': 1.0, 'clips': 1.0, 't': 1.0, 'have': 1.0, 'item': 1.0, 'wash': 1.0, 'so': 1.0, 'your': 1.0, 'pacifier': 1.0, 'doesn': 1.0, 'great': 1.0, 'it': 1.0, 'dissapear': 1.0, 'on': 1.0, 'is': 1.0}
Word element => {'recommended': 1.0, 'newhighly': 1.0, 'like': 1.0, 'times': 1.0, 'many': 1.0, 'washed': 1.0, 'same': 1.0, 'they': 1.0, 'and': 2.0, 'but': 1.0, 'chains': 1.0, 'shown': 1.0, 'still': 1.0, 'cute': 2.0, 'so': 1.0, 'design': 2.0, 'in': 2.0, 'the': 5.0, 'are': 3.0, 'colors': 1.0, 'daily': 1.0, 'with': 2.0, 'totally': 1.0, 'on': 1.0, 'internet': 1.0, 'a': 1.0, 'match': 1.0, 'its': 1.0, 'to': 1.0, 'eye': 1.0, 'love': 1.0, 'personi': 1.0, 'pacifier': 1.0, 'used': 2.0, 'before': 1.0, 'booginhead': 1.0}
Word element => {'paci': 1.0, 'little': 1.0, 'to': 2.0, 'all': 1.0, 'off': 1.0, 'job': 1.0, 'not': 2.0, 'mom': 1.0, 'the': 1.0, 'does': 1.0, 'clip': 1.0, 'hand': 1.0, 'one': 1.0, 'for': 2.0, 'easy': 2.0, 'hands': 1.0, 'certainly': 1.0, 'pull': 1.0, 'other': 1.0, 'also': 1.0, 'clips': 1.0, 'on': 1.0, 'it': 1.0, 'with': 1.0, 'like': 1.0}
Word element => {'tugs': 1.0, 'pulls': 1.0, 'old': 1.0, 'and': 1.0, 'very': 1.0, 'time': 1.0, 'on': 1.0, 'clothing': 1.0, 'cute': 1.0, 'clip': 1.0, 'all': 1.0, 'even': 1.0, 'it': 1.0, 'month': 1.0, 'works': 1.0, 'great': 1.0, 'the': 2.0, 'my': 1.0, 'though': 1.0, '11': 1.0}
Word element => {'recommend': 1.0, 'definitely': 1.0, 'also': 1.0, 'one': 1.0, 'theme': 1.0, 'and': 1.0, 'will': 1.0, 'but': 1.0, 'blue': 1.0, 'light': 1.0, 'if': 1.0, 'own': 1.0, 'clips': 3.0, 'we': 1.0, 'half': 1.0, 'than': 1.0, 'different': 1.0, 'the': 7.0, 'these': 3.0, 'would': 2.0, 'pacifier': 2.0, 'several': 1.0, 'pleased': 2.0, 'however': 1.0, 'was': 3.0, 'not': 1.0, 'as': 1.0, 'very': 2.0, 'with': 3.0, 'only': 1.0, 'price': 2.0, 'wanting': 1.0, 'of': 2.0, 'some': 1.0, 'i': 5.0, 'boogin': 2.0, 'like': 2.0, 'head': 2.0, 'you': 2.0, 'jungle': 1.0, 'designs': 2.0, 'bought': 1.0, 'variety': 1.0}
Word element => {'got': 1.0, '4': 1.0, 'i': 1.0, 'a': 1.0, 'use': 1.0, 'but': 1.0, 'cute': 1.0, 'already': 1.0, 'lot': 1.0, 'strong': 1.0, 'and': 1.0, 'only': 1.0, 'pacifier': 1.0, 'after': 1.0, 'part': 1.0, 'of': 2.0, 'holder': 1.0, 'metal': 1.0, 'the': 2.0, 'those': 1.0, 'loose': 1.0, 'color': 1.0}
Word element => {'holder': 1.0, 'would': 1.0, 'best': 1.0, 'i': 2.0, 's': 1.0, 'clasp': 2.0, 'highly': 1.0, 'especially': 1.0, 'design': 1.0, 'love': 2.0, 'for': 1.0, 'the': 3.0, 'ever': 1.0, 'used': 1.0, 'recommend': 1.0, 'it': 1.0, 'this': 1.0, 'to': 1.0, 've': 1.0, 'anyone': 1.0, 'looking': 1.0, 'a': 1.0, 'and': 1.0, 'paci': 1.0}
Word element => {'account': 1.0, 'her': 2.0, 'leave': 1.0, 'have': 1.0, 'like': 1.0, 'would': 1.0, 'member': 1.0, 'amazon': 1.0, 'did': 2.0, 'par': 1.0, 'still': 1.0, 'product': 1.0, 'for': 1.0, 'you': 3.0, 'works': 1.0, 'simply': 1.0, 'on': 1.0, 'strong': 1.0, 'can': 1.0, 'but': 2.0, 'four': 1.0, 'enough': 1.0, 'not': 2.0, 'item': 1.0, 'will': 1.0, 'clasp': 1.0, 'no': 1.0, 'thing': 1.0, 'our': 1.0, 'to': 3.0, 'example': 1.0, 'received': 1.0, 'offering': 1.0, 'and': 4.0, '1': 1.0, 'response': 1.0, 'done': 1.0, 'less': 1.0, 'pbnj': 4.0, 'review': 1.0, 'has': 1.0, 'emailed': 1.0, 'service': 2.0, 'sub': 1.0, 'i': 4.0, 'booginhead': 1.0, 'pacifier': 1.0, 'strive': 1.0, 'replace': 1.0, 'the': 7.0, 'a': 4.0, 'into': 1.0, 'next': 1.0, 'that': 1.0, 'companies': 1.0, 'in': 1.0, 'close': 1.0, 'day': 1.0, 'than': 1.0, 'month': 2.0, 'it': 1.0, 'log': 1.0, 'customer': 2.0, 'is': 3.0, 'second': 1.0, 'an': 1.0, 'of': 1.0, 'excellent': 1.0, 'what': 1.0, 'malfunctioned': 1.0, 'other': 1.0, 'their': 1.0, 'should': 1.0, 'holder': 1.0, 'achieve': 1.0, 'update': 1.0, 'after': 1.0, 'thank': 1.0, 'replaced': 1.0, 'family': 1.0, 'purchase': 1.0, 'tight': 1.0, 'owned': 1.0, 'my': 1.0, 'if': 1.0, 'same': 2.0, 'malfunctioning': 1.0, 'paciholder': 1.0, 'months': 1.0, 'one': 1.0}
Word element => {'preference': 1.0, 'the': 1.0, 'my': 1.0, 'they': 1.0, 'things': 2.0, 'husband': 1.0, 'job': 1.0, 'loves': 1.0, 'however': 1.0, 'guess': 1.0, 'i': 2.0, 'tired': 1.0, 'them': 1.0, 'of': 2.0, 'tangled': 1.0, 'a': 1.0, 'matter': 1.0, 'done': 1.0, 'do': 1.0, 'get': 2.0, 'getting': 1.0, 'this': 1.0, 'it': 1.0, 'with': 1.0, 'is': 1.0}
Word element => {'broken': 1.0, 'has': 1.0, 'arrived': 1.0, 'quality': 1.0, 'week': 1.0, 'when': 1.0, 'i': 2.0, 'and': 1.0, 'my': 1.0, 'metal': 1.0, 'very': 1.0, 'son': 1.0, 'in': 1.0, 'disappointed': 1.0, 'having': 1.0, 'one': 1.0, 'for': 1.0, 'pattern': 1.0, 'it': 2.0, 'this': 1.0, 'already': 1.0, 'loved': 1.0, 'purchased': 1.0, 'clasp': 1.0, 'absolutely': 1.0, 'cute': 1.0, 'the': 3.0, 'puppy': 1.0, 'however': 1.0, 'after': 1.0, 'used': 1.0}
Word element => {'bought': 1.0, 'than': 1.0, 'better': 1.0, 'i': 2.0, 'do': 1.0, 'have': 1.0, 'this': 1.0, 'loves': 1.0, 'so': 1.0, 'got': 1.0, 'others': 1.0, 'son': 1.0, 'is': 2.0, 'fast': 1.0, 'and': 3.0, 'the': 1.0, 'my': 1.0, 'great': 1.0, 'it': 2.0, 'works': 1.0, 'clip': 2.0, 'cute': 1.0}
Word element => {'washable': 1.0, 'and': 1.0, 'use': 1.0, 'i': 2.0, 'say': 1.0, 'must': 1.0, 'binky': 1.0, 'cute': 1.0, 'clips': 1.0, 'one': 1.0, 'purchasing': 1.0, 'design': 1.0, 'struck': 1.0, 'after': 1.0, 'not': 1.0, 'gold': 1.0, 'this': 1.0, 'durable': 1.0, 'it': 1.0, 'only': 1.0, 'is': 1.0, 'the': 1.0, 's': 1.0, 'cheaper': 1.0, 'easy': 1.0, 'to': 1.0}
Word element => {'soothie': 1.0, 'avent': 1.0, 'for': 1.0, 'what': 1.0, 'crafted': 1.0, 'highly': 1.0, 'adorable': 1.0, 'product': 2.0, 'helpful': 1.0, 'is': 1.0, 'on': 1.0, 'holder': 1.0, 'no': 1.0, 'recommend': 1.0, 'and': 1.0, 'paci': 1.0, 'excellent': 1.0, 'this': 2.0, 'more': 1.0, 'the': 1.0, 'pacis': 2.0, 'dropped': 1.0, 'well': 1.0, 'a': 1.0, 'ground': 1.0, 'i': 1.0}
Word element => {'be': 1.0, 'could': 1.0, 'works': 1.0, 'it': 2.0, 'perfectly': 1.0, 'and': 1.0, 'quickly': 1.0, 'easier': 1.0, 'backseat': 1.0, 'arrived': 1.0, 'seat': 1.0, 'not': 1.0, 'would': 1.0, 'holder': 1.0, 'happier': 1.0, 'to': 2.0, 'grab': 1.0, 'the': 4.0, 'definitely': 1.0, 'from': 1.0, 'use': 1.0, 'again': 1.0, 'makes': 1.0, 'lot': 1.0, 'front': 1.0, 'a': 1.0}
Word element => {'free': 1.0, 'phthalate': 1.0, 'and': 1.0, 'internet': 1.0, 'on': 1.0, 'is': 1.0, 'match': 1.0, 'a': 2.0, 'shown': 1.0, 'that': 1.0, 'colors': 1.0, 'enough': 1.0, 'design': 1.0, 'in': 1.0, 'cute': 1.0, 'are': 1.0, 'to': 1.0, 'eye': 1.0, 'person': 1.0, 'say': 1.0, 'love': 3.0, 'bpa': 1.0, 'can': 1.0, 'it': 2.0, 'the': 3.0, 'such': 1.0, 't': 1.0}
Word element => {'but': 1.0, 'was': 2.0, 'frustrating': 1.0, 'that': 1.0, 'within': 1.0, 'bought': 1.0, 'still': 2.0, 'one': 2.0, 'clips': 1.0, 'working': 1.0, 'bad': 1.0, 'have': 1.0, 'of': 1.0, 'broke': 1.0, 'been': 1.0, 'the': 3.0, 'these': 1.0, 'other': 1.0, 'we': 1.0, 'just': 1.0, 'two': 1.0, 'hours': 1.0, '24': 1.0, 'is': 1.0, 'first': 1.0, 'it': 1.0, 'may': 1.0, 'clip': 1.0}
Word element => {'again': 1.0, 'buy': 1.0, 'would': 1.0, 'i': 1.0, 'these': 1.0, 'they': 1.0, 'great': 2.0, 'bag': 1.0, 'containers': 1.0, 'diaper': 1.0, 'in': 1.0, 'for': 1.0, 'but': 1.0, 'fits': 1.0, 'snacks': 1.0, 'the': 1.0, 'are': 2.0, 'small': 1.0, 'alot': 1.0}
Word element => {'place': 1.0, 'into': 1.0, 'hold': 1.0, 'and': 1.0, 'in': 1.0, 'wish': 1.0, 'didn': 1.0, 'piece': 1.0, 'support': 1.0, 'my': 1.0, 'son': 1.0, 'kind': 1.0, 'just': 1.0, 'seat': 2.0, 'of': 1.0, 'a': 1.0, 'i': 1.0, 'does': 1.0, 's': 1.0, 'the': 3.0, 'great': 1.0, 't': 1.0, 'slide': 1.0, 'head': 2.0, 'like': 1.0, 'to': 1.0, 'its': 1.0, 'it': 2.0, 'hard': 1.0, 'put': 1.0}
Word element => {'6': 1.0, 'until': 4.0, 'pass': 1.0, 'now': 1.0, 'face': 1.0, 'most': 1.0, 'but': 3.0, '2': 2.0, 'and': 4.0, 'allows': 1.0, 'this': 5.0, 'kids': 1.0, '30': 1.0, 'should': 3.0, 'for': 1.0, 'fit': 1.0, 'accomdate': 1.0, 'pinch': 1.0, 'same': 1.0, 'the': 5.0, 'carseat': 1.0, 'does': 1.0, 'boosters': 1.0, 'tests': 1.0, 'car': 1.0, 'they': 1.0, 'it': 2.0, 's': 1.0, 'a': 4.0, 'rearface': 2.0, 'near': 1.0, 'long': 2.0, 'on': 1.0, '3': 1.0, 'safety': 1.0, 'okay': 1.0, 'age': 2.0, '40lbs': 1.0, 'end': 1.0, 'only': 1.0, 'rear': 1.0, 'wise': 2.0, 'in': 2.0, 'seat': 6.0, 'other': 1.0, 'an': 1.0, 'all': 1.0, 'your': 2.0, 'any': 1.0, 'as': 4.0, 'to': 3.0, 'children': 2.0, 'least': 1.0, 'safe': 1.0, '35': 1.0, 'old': 2.0, 'very': 3.0, 'must': 1.0, 'have': 1.0, 'lower': 1.0, 'is': 6.0, 'at': 4.0, 'minimum': 1.0, 'average': 1.0, 'seats': 1.0, 'just': 1.0, 'hey': 1.0, 'not': 4.0, 'forward': 1.0, 'faces': 1.0, '40': 1.0, 'lbs': 1.0, 'has': 1.0, 'short': 1.0, 'shell': 1.0, 'height': 3.0, 'may': 1.0, 'my': 2.0, 'another': 1.0, 'weight': 1.0, 'that': 1.0, 'when': 1.0, 'what': 1.0, 'happening': 1.0, '5': 1.0, 'child': 2.0, 'year': 1.0, 'moment': 1.0, 'so': 1.0, 'overall': 1.0, 'then': 1.0, 'fine': 1.0, 'be': 2.0, 'prepared': 1.0, 'buy': 1.0, '2or': 1.0, 'years': 1.0, 'booster': 1.0}
Word element => {'definitely': 1.0, 'we': 2.0, 'bought': 1.0, 'and': 2.0, 'this': 2.0, 'car': 2.0, 'for': 1.0, 'a': 1.0, 'recommend': 1.0, 'worked': 1.0, 'has': 1.0, 'seat': 2.0, 'second': 1.0, 'love': 1.0, 'great': 1.0, 'it': 2.0}
Word element => {'recommend': 1.0, 'would': 1.0, 'car': 1.0, 'one': 1.0, 'to': 2.0, 'easy': 2.0, 'use': 1.0, 'each': 1.0, 'very': 1.0, 'definitely': 1.0, 'install': 1.0, 'stylish': 1.0, 'bought': 1.0, 'love': 1.0, 'the': 1.0, 'for': 1.0, 'design': 1.0, 'we': 1.0}
Word element => {'crunch': 1.0, 'a': 1.0, 'if': 1.0, 'especially': 1.0, 'quite': 1.0, 'annoying': 1.0, 're': 1.0, 'time': 1.0, 'your': 1.0, 'they': 1.0, 'issues': 1.0, 'money': 1.0, 'latches': 1.0, 'would': 1.0, 'harness': 1.0, 'in': 1.0, '34': 2.0, 'find': 1.0, 'spend': 1.0, 'wasn': 1.0, 'these': 1.0, 'more': 1.0, 'the': 4.0, 't': 1.0, 'made': 1.0, 'fittings': 1.0, 'i': 2.0, 'tighten': 1.0, 'inexpensive': 1.0, 'so': 1.0, 'surprised': 1.0, 'not': 2.0, 'seat': 2.0, 'were': 1.0, 'click': 1.0, 'cheaply': 1.0, 'and': 2.0, 'personally': 1.0, 'very': 1.0, 'easy': 1.0, 'on': 1.0, 'deal': 2.0, 'to': 5.0, 'was': 1.0, 'its': 2.0, 'with': 2.0, 'hard': 2.0}
Word element => {'better': 1.0, 'lot': 1.0, 'works': 1.0, 'whereas': 1.0, 'adjust': 1.0, 'he': 1.0, 'pain': 1.0, 'this': 2.0, 'hard': 1.0, 'then': 1.0, 'because': 2.0, 'affordable': 1.0, 'okay': 1.0, 'you': 2.0, 'what': 2.0, 'an': 1.0, 'a': 2.0, 's': 1.0, 'we': 2.0, 'other': 1.0, '3': 1.0, 'different': 1.0, 'my': 2.0, 'the': 3.0, 'most': 1.0, 'but': 1.0, 'work': 1.0, '2': 1.0, 'car': 3.0, 'definitely': 1.0, 'and': 5.0, 'babysitter': 1.0, 'get': 1.0, 'seats': 2.0, 'bought': 3.0, 'one': 4.0, 'expensive': 2.0, 'for': 6.0, 'in': 1.0, 'needs': 1.0, 'husband': 1.0, 'mom': 1.0, 'seat': 4.0, 'to': 3.0, 'our': 2.0, 'were': 1.0, 'they': 1.0, 'pay': 1.0, 'more': 2.0, 'is': 2.0, 'it': 2.0, 'accomplishes': 1.0, 'buckles': 1.0, 'are': 1.0}
Word element => {'being': 1.0, 'defeats': 1.0, 'infants': 1.0, 'useful': 1.0, 'be': 1.0, 'quality': 1.0, 'true': 1.0, '40': 1.0, 'a': 3.0, 'up': 1.0, 'child': 1.0, 'accomodate': 1.0, 'but': 1.0, 'can': 1.0, 'according': 1.0, 'way': 1.0, 'sit': 1.0, 'year': 1.0, 'seems': 1.0, 'also': 1.0, 'properly': 1.0, 'not': 2.0, 'did': 1.0, 'safe': 1.0, 'un': 1.0, 'which': 2.0, 'convertible': 1.0, 'slot': 1.0, 'needed': 1.0, 'daughter': 1.0, 'petite': 1.0, '3': 1.0, 'on': 2.0, 'slots': 1.0, 'height': 1.0, 'fit': 1.0, 'for': 3.0, 'one': 1.0, 'lbs': 1.0, 'you': 1.0, 'very': 1.0, 'is': 2.0, 'follow': 1.0, 'rear': 1.0, 'her': 3.0, 'the': 7.0, 'out': 1.0, 'i': 3.0, 'old': 2.0, 'facing': 1.0, 'because': 1.0, 'just': 1.0, '30': 1.0, 'percentale': 1.0, 'this': 2.0, 'month': 1.0, 'she': 1.0, 'it': 8.0, 'had': 1.0, 'purchased': 1.0, '15': 1.0, 'order': 1.0, 'my': 3.0, 'nice': 1.0, '1': 1.0, 'well': 1.0, 'has': 1.0, 'manufactures': 1.0, 'made': 1.0, 'grown': 1.0, 'weight': 1.0, 'only': 1.0, 'harness': 1.0, 'purpose': 1.0, 'infant': 1.0, 'car': 1.0, 'was': 2.0, 'seat': 5.0, 'to': 7.0, 'and': 3.0, 'too': 1.0, 'in': 4.0, 'use': 1.0, 'instructions': 1.0, 'position': 1.0, 'highest': 1.0, 'must': 1.0, 'small': 3.0, 'have': 2.0, 'of': 2.0, 'lb': 1.0, 'bottom': 1.0}
Word element => {'money': 1.0, 'the': 1.0, 'face': 1.0, 'we': 2.0, 'different': 1.0, 'in': 1.0, 'pattern': 1.0, 'could': 1.0, 'spare': 1.0, 'seat': 2.0, 'grandparents': 1.0, 'a': 2.0, 'as': 1.0, 'car': 2.0, 'this': 1.0, 'have': 1.0, 'got': 1.0, 'same': 1.0, 'vehicle': 1.0, 'little': 1.0, 'for': 2.0, 'one': 2.0, 'that': 1.0, 'used': 1.0, 'forward': 1.0, 'good': 1.0, 'until': 1.0}
Word element => {'luck': 1.0, 'll': 1.0, 'result': 1.0, 'came': 1.0, 'look': 1.0, 'local': 1.0, 'same': 2.0, 'with': 2.0, 'better': 1.0, 'rogue': 1.0, 'nissan': 1.0, 'police': 1.0, '2010': 1.0, 'flex': 1.0, 'lariat': 1.0, 'crew': 1.0, 'f150': 1.0, 'ford': 2.0, 'hopefully': 1.0, '2011': 1.0, 'mounted': 1.0, 'for': 1.0, 'btw': 1.0, 'department': 1.0, 'radian80sl': 1.0, 've': 1.0, 'super': 1.0, 'would': 1.0, 'sunshine': 1.0, 'the': 5.0, 'good': 1.0, 'had': 1.0, 'thought': 1.0, 'excellent': 1.0, 'backup': 1.0, 'they': 1.0, 'reviews': 1.0, 'be': 1.0, 'on': 1.0, 'have': 3.0, 'saw': 1.0, 'kids': 1.0, 'this': 3.0, 'it': 3.0, 'and': 4.0, 'get': 2.0, 'we': 3.0, 'a': 7.0, 's': 1.0, 'primary': 1.0, 'been': 2.0, 'awful': 1.0, 'results': 1.0, 'strapped': 1.0, 'sel': 1.0, 'rear': 1.0, 'harder': 1.0, 'than': 1.0, 'facing': 2.0, 'under': 1.0, 'normal': 1.0, 'all': 1.0, 'our': 2.0, 'seat': 7.0, 'as': 3.0, 'to': 5.0, 'towels': 1.0, 'in': 2.0, 'front': 2.0, 'use': 1.0, 'of': 1.0, 'set': 1.0, 'at': 1.0, 'an': 1.0, 'acceptable': 1.0, '2013': 1.0, 'has': 1.0, 'angle': 1.0}
Word element => {'price': 1.0, 's': 1.0, 'if': 1.0, 'area': 1.0, 'that': 2.0, 'necessary': 1.0, 'makes': 1.0, 'position': 1.0, 'facing': 1.0, 'connections': 1.0, 'didn': 1.0, 'latch': 2.0, 'fits': 1.0, 'toddlers': 1.0, 'so': 1.0, 'can': 4.0, 'will': 2.0, 'secure': 2.0, 'very': 1.0, 'appearance': 1.0, 'reading': 1.0, 'for': 6.0, 'use': 1.0, 'content': 1.0, 'front': 1.0, 'works': 1.0, 'only': 1.0, 'to': 5.0, 'really': 1.0, 'am': 1.0, 'you': 3.0, 'sedan': 1.0, 'awhile': 1.0, 'middle': 1.0, 'three': 1.0, 'riding': 1.0, 'colors': 1.0, 'car': 4.0, 'love': 1.0, 'he': 2.0, 'adjust': 1.0, 'it': 9.0, 'month': 1.0, 'my': 2.0, 'looks': 1.0, 'this': 5.0, 'fact': 1.0, 'old': 1.0, 'i': 7.0, 'convert': 1.0, 'the': 17.0, 'of': 2.0, 'like': 2.0, 'cheap': 1.0, 'beautifully': 1.0, 'seat': 10.0, 'in': 4.0, 'nissan': 1.0, 'good': 1.0, 'side': 2.0, 'be': 4.0, 'install': 1.0, 'seemed': 1.0, 'and': 2.0, 'should': 1.0, 'find': 1.0, 'lap': 1.0, 'instructions': 1.0, 'connectors': 1.0, 'just': 1.0, 'belt': 1.0, 't': 2.0, 'a': 2.0, 'want': 1.0, 'tighten': 1.0, 'now': 1.0, 'frame': 1.0, 'up': 1.0, 'don': 1.0, 'open': 1.0, 'over': 2.0, 'enough': 1.0, 'cover': 1.0, 'suggest': 1.0, 'with': 1.0, 'manual': 1.0, 'your': 1.0, 'installation': 1.0, 'using': 1.0, 'reason': 1.0, 'foam': 1.0, 'convertible': 1.0, 'give': 1.0, 'versa': 1.0, 'five': 1.0, 'star': 1.0, 'back': 1.0, 'too': 1.0, 'rating': 1.0, 'secured': 1.0, 'look': 1.0, 'is': 1.0, 'way': 2.0, 'part': 1.0, 'from': 1.0, 'seems': 1.0, 'see': 1.0, 'interior': 1.0, 'grandson': 1.0, 'easy': 1.0, 'however': 1.0}
Word element => {'also': 1.0, 'in': 1.0, 'and': 1.0, 'car': 1.0, 'seat': 1.0, 'really': 1.0, 'new': 1.0, 'his': 1.0, 'things': 1.0, 'he': 2.0, 'it': 2.0, 'can': 1.0, 'loves': 1.0, 'grandson': 1.0, 'high': 1.0, 'my': 1.0, 'sits': 1.0, 'the': 1.0, 'so': 1.0, 'look': 1.0, 'out': 1.0, 'up': 1.0, 'windows': 1.0, 'well': 1.0, 'see': 1.0, 'sleeps': 1.0}
Word element => {'your': 1.0, 'money': 1.0, 'don': 1.0, 'better': 1.0, 'a': 1.0, 'got': 1.0, 'spent': 1.0, 'should': 1.0, 'box': 1.0, 'so': 1.0, 'however': 1.0, 'unhappy': 1.0, 'very': 1.0, 'again': 1.0, 'my': 1.0, 'smaller': 1.0, 'car': 1.0, 'threw': 1.0, 'over': 1.0, 'is': 2.0, 'seat': 2.0, 'not': 1.0, 'would': 1.0, 'with': 1.0, 'this': 2.0, 'it': 2.0, 'waist': 1.0, 'buy': 1.0, 'i': 4.0, 'impossible': 1.0, 'picture': 1.0, 'husband': 1.0, 'to': 1.0, 'much': 1.0, 'install': 1.0, 't': 1.0, 'more': 1.0, 'the': 3.0, 'in': 1.0, 'stuck': 1.0, 'buckle': 1.0, 'than': 1.0, 'have': 1.0, 'all': 1.0, 'away': 1.0, 'and': 2.0, 'am': 2.0}
Word element => {'sleep': 1.0, 'they': 1.0, 'system': 1.0, 'kind': 1.0, 'recline': 1.0, 'some': 1.0, 'wish': 1.0, 'when': 1.0, 'daughter': 1.0, 'one': 1.0, 'comfortable': 1.0, 'that': 1.0, 'looks': 1.0, 'so': 1.0, 'like': 1.0, 'plush': 1.0, 'about': 1.0, 'baby': 1.0, 'she': 1.0, 's': 2.0, 'this': 1.0, 'it': 2.0, 'i': 1.0, 'my': 1.0, 'happy': 2.0, 'was': 2.0, 'to': 2.0, 'and': 1.0, 'get': 1.0, 'out': 1.0, 'there': 1.0, '34': 2.0, 'of': 2.0, 'just': 1.0, 'seat': 1.0, 'her': 1.0}
Word element => {'rated': 1.0, 'different': 1.0, 'bought': 1.0, 'went': 1.0, 'say': 1.0, 'needless': 1.0, 'another': 1.0, 'replace': 1.0, 'sent': 1.0, 'refund': 2.0, 'regauding': 1.0, 'protection': 1.0, 'inches': 1.0, 'loosened': 1.0, 'been': 1.0, 'contaceted': 1.0, 'would': 2.0, 'had': 3.0, 'if': 2.0, 'during': 1.0, 'flew': 1.0, 'holds': 1.0, 'screw': 1.0, 'usuall': 1.0, 'use': 1.0, 'months': 1.0, '11': 1.0, 'with': 3.0, 'couldn': 1.0, 'he': 1.0, 'so': 1.0, 'around': 1.0, 'wrap': 2.0, 'ace': 1.0, 'adhesive': 1.0, 'son': 1.0, 'self': 1.0, 'buying': 1.0, 'explaining': 1.0, 'intended': 1.0, 'old': 1.0, 'product': 1.0, 'year': 1.0, 'letter': 1.0, 'hour': 1.0, 'times': 1.0, 'over': 1.0, 'keep': 2.0, 'they': 3.0, 'should': 2.0, 'response': 1.0, 'issues': 1.0, 'having': 1.0, 'parents': 2.0, 'many': 1.0, 'me': 1.0, 'my': 5.0, 'website': 1.0, 'issue': 1.0, 'was': 3.0, 'solve': 1.0, 'pulled': 1.0, 'to': 10.0, 'didn': 1.0, 'realized': 1.0, 'problems': 1.0, 'because': 1.0, 'that': 2.0, 'young': 1.0, 'looking': 1.0, 'ship': 1.0, 'mess': 1.0, 'straps': 3.0, 'shoulder': 4.0, '2': 3.0, 'do': 1.0, '1': 1.0, 'about': 3.0, 'not': 1.0, 'greatly': 1.0, 'need': 1.0, 'concerns': 2.0, 't': 2.0, 'belt': 2.0, 'tightened': 1.0, 'replacement': 1.0, 'asking': 1.0, 'understand': 1.0, 'out': 3.0, 'tightening': 2.0, 'this': 6.0, 'as': 3.0, 'overlapping': 1.0, '3': 2.0, 'on': 7.0, 'safe': 1.0, 'due': 1.0, 'have': 3.0, 'broke': 1.0, 'i': 9.0, 'potential': 1.0, 'car': 1.0, 'creighton': 1.0, '2010': 1.0, 'sept': 1.0, 'were': 1.0, 'tighten': 1.0, 'them': 1.0, 'always': 1.0, 'target': 1.0, 'an': 3.0, 'other': 1.0, 'pulling': 1.0, 'chest': 1.0, 'model': 3.0, 'only': 1.0, 'accident': 2.0, 'easy': 1.0, '10': 1.0, 'for': 6.0, 'actually': 1.0, 'is': 3.0, 'at': 3.0, 'seat': 6.0, 'in': 4.0, 'carseat': 1.0, 'somewhere': 1.0, 'after': 4.0, 'no': 1.0, 'evenly': 1.0, 'plate': 3.0, 'safety': 1.0, 'their': 2.0, 'previous': 1.0, 'reduced': 1.0, 'got': 1.0, 'buckle': 1.0, 'even': 1.0, 'graco': 4.0, 'of': 8.0, 'the': 32.0, 'place': 2.0, 'most': 1.0, 'back': 1.0, 'we': 2.0, 'a': 7.0, 'purchased': 1.0, 'expense': 1.0, 'overlaps': 1.0, 'apparently': 1.0, 'design': 1.0, 'settled': 1.0, 'set': 1.0, 'slip': 1.0, 'yoke': 1.0, 'happened': 1.0, 'children': 2.0, 'why': 2.0, 'just': 2.0, 'seats': 1.0, 'individual': 1.0, 'single': 3.0, 'two': 3.0, 'little': 1.0, 'crates': 1.0, 'by': 2.0, 'pull': 1.0, 'strap': 4.0, 'same': 2.0, 'under': 1.0, 'better': 1.0, 'hook': 3.0, 'trip': 1.0, 'and': 8.0, 's': 2.0, 'advice': 1.0, 'will': 1.0, 'also': 1.0, 'comfortsport': 2.0, 'be': 1.0, 'emergency': 1.0, 'looser': 1.0, 'explain': 1.0, 'belts': 1.0, 'than': 1.0, 'him': 1.0, 'hooks': 1.0, 'it': 3.0, 'barely': 1.0, 'stating': 1.0, 'one': 2.0, 'held': 1.0, 'unbuckle': 1.0, 'looked': 1.0, 'major': 1.0, 'up': 1.0, 'our': 2.0, 'how': 1.0}
Word element => {'around': 1.0, 'tight': 1.0, 'doesnt': 1.0, 'to': 1.0, 'be': 1.0, 'an': 1.0, 'stay': 1.0, 'the': 4.0, 'seat': 2.0, 'not': 1.0, 'carseat': 1.0, 'would': 1.0, 'like': 1.0, 'move': 1.0, 'did': 1.0, 'if': 1.0, 'it': 1.0, 'were': 1.0, 'i': 1.0, 'in': 1.0, 'accident': 1.0, 'so': 1.0, 'there': 1.0, 'area': 1.0, 'car': 1.0, 'definitely': 1.0}
Word element => {'safe': 1.0, 'in': 1.0, 'speeds': 1.0, 'low': 1.0, 'its': 1.0, 'town': 1.0, 'areas': 1.0, 'tooling': 1.0, 'just': 1.0, 'but': 1.0, 'versus': 1.0, 'mine': 1.0, 'cost': 1.0, 'on': 1.0, 'constantly': 1.0, 'out': 1.0, 'at': 1.0, 'option': 1.0, 'so': 1.0, 'between': 1.0, 'after': 1.0, 'avoid': 1.0, 'that': 1.0, 'i': 1.0, 'to': 2.0, 'had': 1.0, 'switch': 1.0, 'husband': 1.0, 'carseats': 1.0, 'this': 3.0, 'carseat': 2.0, 'both': 1.0, 'having': 1.0, 'fine': 2.0, 'several': 2.0, 'see': 1.0, 'expensive': 1.0, 'for': 3.0, 'where': 1.0, 'could': 1.0, 'a': 1.0, 'we': 3.0, 'my': 2.0, 'car': 2.0, 'buy': 1.0, 'definitely': 1.0, 'the': 2.0, 'around': 1.0, 'is': 2.0, 'more': 1.0, 'and': 2.0, 'them': 1.0, 'baby': 1.0, 'robust': 1.0, 'sitter': 1.0, 'one': 3.0, 'bought': 1.0, 'mother': 1.0, 'then': 1.0, 'added': 1.0, 'of': 1.0, 'less': 1.0, 'installing': 1.0}
Word element => {'disappointed': 1.0, 'never': 1.0, 'have': 1.0, 'graco': 1.0, 'of': 1.0, 'see': 1.0, 'love': 2.0, 'for': 2.0, 'outgrown': 1.0, 'i': 3.0, 'great': 2.0, 'products': 1.0, 'such': 1.0, 'the': 2.0, 'our': 2.0, 'seat': 1.0, 'because': 2.0, 'know': 1.0, 'car': 1.0, 'a': 2.0, 'we': 3.0, 'one': 1.0, 'bought': 2.0, 'will': 1.0, 'baby': 3.0, 'this': 3.0, 'first': 1.0, 'she': 2.0, 'it': 2.0, 'had': 1.0, 'look': 1.0, 'lot': 1.0, 'who': 1.0, 'last': 1.0, 'her': 2.0, 'long': 1.0, 'time': 1.0, 'been': 1.0, 'that': 1.0, 'loves': 1.0, 'latch': 1.0, 'can': 1.0, 'out': 1.0, 'window': 1.0, 'better': 1.0, 'and': 2.0, 'is': 3.0, 'around': 1.0, 'system': 1.0, 'while': 1.0, 'are': 1.0, 'driving': 1.0, 've': 1.0, 'my': 1.0, 'safe': 1.0}
Word element => {'beat': 1.0, 'daughter': 1.0, 'from': 1.0, 'each': 1.0, 'having': 1.0, 'instead': 1.0, 'places': 1.0, 'takes': 1.0, 'in': 1.0, 'baby': 2.0, 'will': 1.0, 'also': 1.0, 'amazon': 1.0, 'be': 2.0, 'here': 1.0, 'buy': 1.0, 'price': 1.0, 'years': 1.0, 'several': 1.0, 'time': 1.0, 'so': 1.0, 'needs': 1.0, 'his': 1.0, 'should': 1.0, 'car': 3.0, 'really': 1.0, 'is': 3.0, 'just': 1.0, 'says': 1.0, 'remove': 1.0, 'she': 6.0, 'it': 5.0, 'of': 1.0, 'shower': 1.0, 'with': 1.0, 's': 1.0, 'going': 1.0, 'a': 1.0, 'i': 1.0, 'and': 3.0, 'not': 1.0, 'give': 1.0, 'for': 5.0, 'like': 1.0, 'using': 1.0, 'the': 6.0, 'mother': 2.0, 'can': 1.0, '2': 1.0, 'put': 1.0, 'on': 2.0, 'uses': 1.0, 'over': 1.0, 'now': 1.0, 'seat': 2.0, 'to': 4.0, 'was': 1.0, 'one': 1.0, 'months': 1.0, 'bought': 1.0, 'gift': 1.0, '8': 1.0, 'born': 1.0, 'last': 1.0, 'her': 4.0, 'still': 1.0, 'son': 1.0, 'very': 1.0, 'who': 1.0, 'am': 1.0, 'lbs': 1.0, 'when': 2.0, 'review': 1.0, 'likes': 1.0, 'has': 1.0, 'happy': 1.0, 'vehicle': 1.0, 'fact': 1.0, 'loves': 1.0, 'been': 1.0, 'that': 1.0, 'able': 2.0, 'convertible': 1.0}
Word element => {'1': 1.0, 'birth': 1.0, 'of': 1.0, 'beat': 1.0, 'just': 1.0, 'you': 1.0, 'year': 2.0, 'about': 1.0, 'this': 2.0, 'worked': 1.0, 'car': 1.0, 'infant': 3.0, 'seats': 2.0, 'her': 1.0, 'works': 1.0, 'well': 3.0, 'at': 1.0, 'since': 1.0, 't': 1.0, 'a': 2.0, 'we': 1.0, 'been': 1.0, 'using': 1.0, 'for': 3.0, 'carrier': 3.0, 'have': 1.0, 'the': 6.0, 'rear': 1.0, 'ones': 1.0, 'hit': 1.0, 'daughter': 1.0, 'facing': 2.0, 'washes': 1.0, 'not': 1.0, 'style': 2.0, 'weight': 1.0, 'would': 1.0, 'starting': 1.0, 'and': 1.0, 'get': 1.0, 'forward': 1.0, 'can': 1.0, 'but': 1.0, 'limit': 1.0, 'now': 1.0, 'seat': 1.0, 'our': 1.0, 'to': 2.0, 'liner': 1.0, 'pretty': 1.0, 'tougher': 1.0, 'it': 3.0, 'remove': 1.0, 'than': 1.0, 'in': 1.0, 'convenience': 1.0, 'newborn': 1.0, 'i': 2.0, 'd': 1.0, 'use': 1.0}
Word element => {'secured': 1.0, 'with': 1.0, 'was': 1.0, 'daily': 1.0, 'extra': 1.0, 'or': 1.0, 'good': 1.0, 'if': 1.0, 'review': 1.0, 'at': 1.0, 'old': 1.0, 'months': 1.0, 'carseat': 1.0, '16': 1.0, 'into': 1.0, 'that': 1.0, 'made': 1.0, 'you': 1.0, 'barely': 1.0, 'top': 1.0, 'camry': 1.0, 'tall': 1.0, 'and': 3.0, 'get': 1.0, '06': 2.0, 'an': 1.0, 'hoped': 1.0, 'had': 1.0, 'like': 1.0, 'didn': 1.0, 'grandparents': 1.0, 'for': 2.0, 'fit': 1.0, 'the': 5.0, 'comfortable': 1.0, '1': 1.0, 'great': 2.0, 'jeep': 1.0, 'this': 2.0, 'it': 2.0, 'he': 3.0, 'car': 5.0, 'is': 3.0, 'rear': 1.0, 't': 1.0, 'a': 4.0, 'as': 2.0, 'to': 2.0, 'seat': 3.0, 'not': 2.0, 'my': 2.0, 'i': 3.0, 'way': 1.0, 'returned': 1.0, 'cherokee': 1.0, 'need': 1.0, 'due': 1.0, 'would': 2.0, 'also': 1.0, 'time': 1.0, 'needs': 1.0, 'much': 1.0, 'use': 1.0, 'out': 1.0, 'of': 2.0, '32': 1.0, '34': 2.0, 'son': 1.0, 'cars': 1.0, 'facing': 1.0, 'part': 1.0, 'his': 1.0, 'height': 1.0, 'be': 2.0, 'shorter': 1.0, 'because': 1.0, 'than': 1.0}
Word element => {'put': 1.0, 'no': 1.0, 'seat': 2.0, 'stay': 1.0, 'and': 1.0, 'like': 2.0, 'loved': 1.0, 'major': 1.0, 'this': 1.0, 't': 2.0, 'the': 4.0, 'car': 1.0, 'we': 1.0, 'right': 1.0, 'complaints': 1.0, 'price': 1.0, 'don': 1.0, 'silly': 1.0, 'have': 1.0, 'thing': 1.0, 'i': 1.0, 'side': 1.0, 'is': 1.0, 'that': 1.0, 'cover': 1.0, 'on': 1.0, 'won': 1.0}
Word element => {'apart': 1.0, 'come': 1.0, 'not': 1.0, 'car': 1.0, 'seat': 1.0, 'of': 1.0, 'out': 1.0, 'this': 1.0, 'harness': 1.0, 'latch': 1.0, 'up': 1.0, 'to': 1.0, 'all': 1.0, 'messed': 1.0, 'get': 1.0, 'will': 1.0, 'its': 1.0, 'hard': 1.0, 'the': 1.0, 'my': 1.0, 'is': 1.0, 'son': 1.0}
Word element => {'carseat': 1.0, 'than': 1.0, 'other': 1.0, 'push': 1.0, 'have': 1.0, 'clip': 1.0, 'stay': 1.0, 'won': 1.0, 'doesn': 1.0, 'back': 1.0, 'in': 2.0, 'get': 1.0, 'and': 2.0, 'very': 1.0, 'easily': 1.0, 'like': 1.0, 'of': 1.0, 'there': 1.0, 'love': 1.0, 'one': 1.0, 'comfortable': 1.0, 'that': 3.0, 'use': 1.0, 'clipped': 1.0, 'strap': 1.0, 'easy': 2.0, 'lock': 1.0, 'belts': 1.0, 'install': 1.0, 'to': 5.0, 'really': 1.0, 'is': 1.0, 'seat': 1.0, 'are': 1.0, 'two': 1.0, 'things': 1.0, 'i': 3.0, 'the': 4.0, 't': 3.0, 'don': 1.0, 'about': 1.0, 'this': 1.0, 'hard': 1.0, 'only': 1.0, 'it': 2.0}
Word element => {'deserves': 1.0, 'have': 1.0, 'figured': 1.0, 'not': 1.0, 'thing': 1.0, '2': 2.0, 'gave': 1.0, 'times': 1.0, 'reposition': 1.0, 'pole': 1.0, 'side': 2.0, 'passenger': 2.0, 'but': 2.0, 'kid': 1.0, 'any': 1.0, 'your': 1.0, 'upright': 1.0, 'cozy': 1.0, 's': 2.0, 'a': 7.0, 't': 2.0, 'it': 5.0, 'she': 1.0, 'around': 1.0, 'the': 11.0, 'of': 1.0, 'reading': 1.0, 'reason': 1.0, 'using': 1.0, 'as': 2.0, 'to': 6.0, 'this': 2.0, 'latches': 1.0, 'convertible': 1.0, 'us': 1.0, 'old': 1.0, '15': 1.0, 'wanted': 1.0, 'facing': 2.0, 'daughter': 2.0, 'little': 1.0, 'trip': 1.0, 'and': 4.0, 'tough': 1.0, 'get': 1.0, 'months': 1.0, 'decided': 2.0, 'over': 2.0, 'my': 3.0, 'more': 2.0, 'husband': 1.0, 'keep': 1.0, 'on': 3.0, 'long': 1.0, 'her': 2.0, 'pros': 1.0, 'too': 1.0, 'rear': 1.0, 'first': 2.0, 'are': 2.0, 'position': 1.0, 'strap': 1.0, 'we': 2.0, 'reviews': 1.0, 'after': 1.0, 'rig': 3.0, 'headrest': 1.0, 'can': 1.0, 'so': 2.0, 'returning': 1.0, 'bit': 1.0, 'is': 2.0, 'at': 1.0, 'look': 1.0, 'right': 2.0, 'out': 2.0, 'car': 2.0, 'window': 1.0, 'because': 2.0, '20': 1.0, 'that': 2.0, 'didn': 2.0, 'bother': 1.0, 'most': 1.0, 'back': 1.0, 'much': 1.0, 'only': 3.0, 'fell': 1.0, 'possible': 1.0, 'problem': 1.0, 'with': 1.0, 'tried': 1.0, 'see': 1.0, 'until': 1.0, 'took': 1.0, 'm': 1.0, 'seat': 6.0, 'in': 2.0, 'turn': 1.0, 'every': 1.0, 'lbs': 1.0, 'was': 3.0, 'no': 2.0, 'than': 1.0, 'matter': 1.0, 'how': 2.0, 'slow': 1.0, 'i': 10.0, 'fast': 1.0, 'or': 1.0, 'about': 1.0, 'driving': 1.0, 'had': 1.0, 'product': 1.0, 'jimmy': 1.0, 'by': 1.0, 'wrapped': 1.0, '10': 1.0, 'for': 1.0, 'front': 1.0}
Word element => {'price': 1.0, 'always': 1.0, 'better': 1.0, 'graco': 1.0, 'car': 1.0, 'havent': 1.0, 'use': 1.0, 'it': 1.0, 'products': 1.0, 'seem': 1.0, 'and': 1.0, 'quality': 1.0, 'like': 1.0, 'a': 1.0, 'good': 2.0, 'size': 1.0, 'are': 1.0, 'small': 1.0, 'yet': 1.0, 'my': 1.0, 'for': 1.0}
Word element => {'over': 2.0, 'buy': 1.0, 'would': 1.0, 'they': 1.0, 'seats': 1.0, 'happy': 1.0, 'perfectly': 1.0, 'works': 1.0, 'still': 1.0, 'cover': 1.0, 'of': 1.0, 'edge': 1.0, 'elastic': 1.0, 'also': 1.0, 'stretches': 1.0, 'them': 1.0, 'his': 1.0, 'yr': 1.0, 'old': 3.0, 'i': 3.0, 'purchase': 1.0, 'already': 1.0, 'loved': 1.0, 'soft': 1.0, 'this': 5.0, 'car': 2.0, 'just': 1.0, 'now': 2.0, 'purchased': 3.0, 'had': 2.0, 'was': 1.0, '2010': 1.0, 'children': 1.0, '9': 2.0, 'more': 1.0, 'around': 1.0, 'is': 3.0, 'and': 5.0, 'all': 1.0, 'our': 3.0, 'seat': 2.0, 'to': 1.0, 'as': 2.0, 'nice': 1.0, 'great': 1.0, 'the': 6.0, 'decided': 1.0, 'one': 4.0, 'using': 1.0, 'brother': 1.0, 'for': 2.0, 'love': 1.0, 'in': 3.0, 'expected': 1.0, '3': 1.0, 'we': 3.0, 'it': 2.0, 'month': 2.0, 'daughter': 1.0, 'yes': 1.0, 'are': 3.0, 'again': 1.0, 'twins': 1.0, 'since': 1.0, 'cushion': 1.0, 'inserts': 1.0, 'fabric': 1.0, 'different': 2.0, 'than': 1.0, 'previous': 1.0, 'but': 2.0}
Word element => {'this': 1.0, 'either': 1.0, 'can': 1.0, 'on': 1.0, 'cup': 1.0, 'the': 1.0, 'that': 1.0, 'again': 1.0, 'side': 1.0, 'buy': 1.0, 'i': 2.0, 'holder': 1.0, 'would': 1.0, 'nice': 1.0, 'installation': 1.0, 'like': 1.0, 'nothing': 1.0, 'fabic': 1.0, 'easy': 1.0, 'to': 1.0, 'go': 1.0, 'negative': 1.0, 'say': 1.0, 'about': 1.0}
Word element => {'sharp': 1.0, 'easily': 1.0, 'foot': 1.0, 'plenty': 1.0, 'and': 2.0, 'perfectly': 1.0, 'i': 1.0, 'this': 1.0, 'with': 1.0, 'love': 1.0, 'of': 1.0, 'one': 1.0, 'huge': 1.0, 'rear': 1.0, 'is': 1.0, 'it': 2.0, 'looks': 1.0, 'car': 1.0, 'so': 1.0, 'straps': 2.0, 'worth': 1.0, 'far': 1.0, 'the': 1.0, 'great': 1.0, 'room': 1.0, 'facing': 1.0, 'son': 1.0, 'seat': 1.0, 'as': 1.0, 'adjust': 1.0, 'your': 1.0, 'well': 1.0, 'a': 1.0, 'since': 1.0, 'bonus': 1.0, 'which': 1.0, 'such': 1.0, 'these': 1.0, 'some': 1.0, 'not': 1.0, 'give': 1.0, 'trouble': 1.0, 'fits': 1.0, 'my': 1.0, 'purchase': 1.0, 'money': 1.0, 'also': 1.0, 'pretty': 1.0}
Word element => {'forth': 1.0, 'doesnt': 1.0, 'safer': 1.0, 'easier': 1.0, 'protection': 1.0, 'onside': 1.0, 'safety': 1.0, 'again': 1.0, 'buy': 1.0, 'overall': 1.0, 'not': 1.0, 'forward': 1.0, 'doesn': 2.0, 'was': 2.0, 'noodle': 1.0, 'wouldn': 1.0, 'ok': 1.0, 'use': 1.0, 'have': 2.0, 'unhook': 1.0, 'the': 8.0, 'without': 1.0, 'cheaper': 1.0, 'correct': 1.0, 'had': 1.0, '2011': 1.0, 'tight': 1.0, 'convertible': 1.0, 'there': 1.0, 'owned': 1.0, 'fits': 1.0, 'get': 2.0, 'towel': 1.0, 'easy': 1.0, 'and': 10.0, 'for': 2.0, 'angle': 1.0, 'review': 1.0, 'won': 1.0, 'corolla': 1.0, 'up': 1.0, 'very': 1.0, 'inches': 1.0, 'awful': 1.0, 'at': 1.0, 'is': 5.0, 'rear': 1.0, 'second': 2.0, 'to': 9.0, 'in': 4.0, 'seat': 7.0, 'as': 2.0, 'facing': 2.0, 'seem': 1.0, 'waited': 1.0, 'done': 1.0, 'i': 6.0, 'seams': 1.0, 'because': 3.0, 'installed': 2.0, 'better': 1.0, 'standard': 1.0, 'a': 4.0, 's': 1.0, 't': 4.0, 'it': 9.0, 'over': 1.0, 'hard': 3.0, 'this': 3.0, 'pool': 1.0, 'you': 1.0, 'do': 1.0, 'though': 1.0, 'riding': 1.0, 'back': 1.0, 'most': 1.0, 'write': 1.0, 'but': 2.0, '1st': 1.0, 'squishy': 1.0, 'just': 3.0, 'seats': 1.0, 'used': 1.0, 'move': 2.0, 'daughter': 3.0, 'feeling': 1.0, 'if': 1.0, 'still': 1.0, 'enjoy': 1.0, 'month': 1.0, 'super': 1.0, 've': 1.0, 'will': 1.0, 'until': 1.0, 'seems': 1.0, 'side': 2.0, 'which': 2.0, 'scares': 1.0, 'safe': 2.0, 'buckle': 2.0, 'comfy': 2.0, 'lower': 1.0, 'metal': 1.0, 'so': 1.0, 'buckles': 1.0, 'undo': 1.0, 'chest': 1.0, 'sticks': 1.0, 'install': 2.0, 'sometimes': 1.0, 'are': 1.0, 'cute': 1.0, 'may': 1.0, 'my': 5.0, 'me': 1.0, 'air': 1.0, 'almost': 1.0, 'resorted': 1.0, 'cutting': 1.0, 'out': 1.0}
Word element => {'riding': 1.0, 'loved': 1.0, 'daughter': 1.0, 'our': 1.0, 'and': 2.0, 'car': 1.0, 'chair': 2.0, 'fits': 1.0, 'including': 1.0, 'long': 1.0, 'we': 1.0, 'in': 2.0, 'trip': 1.0, 'a': 2.0, 'easy': 1.0, 'needed': 1.0, 'for': 1.0, 'rides': 1.0, 'comfortably': 1.0, 'install': 1.0, 'seats': 1.0, 'light': 1.0, 'plane': 2.0, 'compared': 1.0, 'it': 1.0, 'this': 1.0, 'is': 2.0, 'others': 1.0, 'weight': 1.0, 'to': 2.0}
Word element => {'highly': 1.0, 'i': 1.0, 'very': 1.0, 'suv': 1.0, 'well': 1.0, 'shipment': 1.0, 'the': 5.0, 'much': 1.0, 'just': 1.0, 'and': 3.0, 'as': 1.0, 'seat': 2.0, 'to': 4.0, 'had': 1.0, 'seems': 1.0, 'also': 1.0, 'in': 2.0, 'this': 3.0, 'received': 1.0, 'he': 1.0, 'mail': 1.0, 'it': 2.0, 'car': 2.0, 'more': 1.0, 'is': 1.0, 'see': 1.0, 'fast': 1.0, 'graco': 1.0, 'when': 1.0, 'easy': 2.0, 'comfortable': 1.0, 'great': 1.0, 'install': 1.0, 'take': 1.0, 'into': 1.0, 'loves': 1.0, 'my': 1.0, 'baby': 1.0, 't': 1.0, 'a': 3.0, 'we': 2.0, 's': 1.0, 'product': 1.0, 'for': 1.0, 'him': 1.0, 'newborn': 1.0, 'out': 1.0, 'of': 1.0, 'windows': 1.0, 'up': 1.0, 'recommend': 1.0, 'upgraded': 1.0, 'was': 1.0, 'doesn': 1.0, 'back': 1.0, 'space': 1.0, 'have': 1.0}
Word element => {'price': 1.0, 'a': 1.0, 'too': 1.0, 'especially': 1.0, 'fit': 1.0, 'can': 1.0, '3': 1.0, 'out': 1.0, 'her': 1.0, 'my': 1.0, 're': 1.0, 'position': 1.0, 'good': 1.0, 'almost': 2.0, 'to': 1.0, 'its': 1.0, 'year': 2.0, 'seat': 2.0, 'currently': 1.0, 'the': 2.0, 'rear': 1.0, 'we': 1.0, 'it': 4.0, 'in': 3.0, 'seems': 1.0, 'our': 1.0, 'using': 1.0, 'for': 2.0, 'comfortable': 1.0, 'one': 1.0, 'old': 2.0, 'get': 1.0, 'and': 2.0, 's': 2.0, 'facing': 1.0, 'easy': 1.0}
Word element => {'why': 1.0, 'see': 1.0, 'others': 1.0, 'and': 3.0, 'getting': 1.0, 'him': 1.0, 'mine': 1.0, 'he': 2.0, 'drove': 1.0, 'i': 2.0, 'which': 1.0, 'version': 1.0, 'can': 1.0, 'but': 1.0, 'sitting': 1.0, 'his': 1.0, 'does': 1.0, 'then': 1.0, 'even': 1.0, 'got': 1.0, 'is': 1.0, 'more': 2.0, 'the': 4.0, 'better': 1.0, 'they': 1.0, 'this': 2.0, 'with': 1.0, 'it': 2.0, 'have': 4.0, 'loves': 2.0, 'been': 1.0, 'in': 2.0, 'buckle': 1.0, 'think': 1.0, 'husbands': 1.0, 'though': 1.0, 'from': 1.0, 'my': 3.0, 'recalled': 1.0, 'son': 2.0, 'cars': 1.0, 'we': 1.0, 'for': 3.0, 'expensive': 1.0, 'grandparents': 1.0, 'back': 1.0, 'all': 1.0, 'to': 1.0, 'nc': 1.0, 'out': 1.0, 'maryland': 1.0, 'mad': 1.0, 'about': 1.0, 'not': 1.0, 'carseat': 1.0, 'padding': 1.0}
Word element => {'spending': 1.0, 'comfort': 1.0, 'american': 1.0, 'trash': 1.0, 'china': 1.0, '5': 1.0, 'which': 1.0, 'safety': 1.0, 'rest': 1.0, 'piece': 1.0, 'safely': 1.0, 'crappy': 1.0, 'around': 1.0, 'heads': 2.0, 'newborn': 2.0, 'tears': 1.0, 'stains': 1.0, 'sweaty': 1.0, 'climate': 1.0, 'choice': 1.0, 'better': 1.0, 'camry': 1.0, 'install': 3.0, 'back': 4.0, 'easily': 1.0, 'making': 1.0, 'do': 2.0, 'sharp': 1.0, 'impossible': 1.0, 'bottom': 1.0, 'wobbled': 2.0, 'trying': 3.0, 'at': 4.0, 'is': 12.0, 'easier': 1.0, 'reclined': 1.0, 'sure': 1.0, 'return': 1.0, 'you': 7.0, 'towels': 1.0, 'make': 1.0, 'too': 1.0, '3': 2.0, 'truck': 1.0, 'baby': 4.0, 'or': 3.0, 'bits': 1.0, 'cheaply': 2.0, 'belts': 4.0, 'matter': 1.0, 'bit': 1.0, 'than': 1.0, 'made': 6.0, 'enough': 1.0, 'tight': 1.0, 'would': 3.0, 'plastic': 3.0, 'correctly': 1.0, 'wobble': 1.0, 'how': 1.0, 'under': 1.0, 'don': 1.0, 'still': 3.0, 'wasn': 1.0, 'covering': 1.0, 'course': 1.0, 'e': 1.0, 'facing': 5.0, 'hate': 1.0, 'stuffed': 1.0, 'had': 1.0, 'front': 2.0, 'use': 1.0, 'secure': 1.0, 'will': 5.0, 'could': 1.0, 't': 3.0, 'belt': 1.0, 'suns': 1.0, 'a': 14.0, 'much': 2.0, 'forth': 1.0, 'due': 1.0, 'on': 4.0, 'burning': 1.0, 'with': 3.0, 'passion': 1.0, 'little': 1.0, 'level': 1.0, 'breathing': 1.0, 'no': 3.0, 'right': 1.0, 'to': 18.0, 'dreadful': 1.0, 'tunnel': 1.0, 'seat': 15.0, 'in': 11.0, 'digress': 1.0, 'bucket': 2.0, 'not': 5.0, 'forward': 1.0, 'was': 1.0, 'recommend': 2.0, 'well': 1.0, 'broke': 1.0, 'rear': 4.0, 'hand': 1.0, 'toyota': 2.0, 'this': 5.0, 'tightening': 1.0, 'few': 1.0, 'the': 27.0, 'even': 1.0, 'of': 6.0, 'myself': 1.0, 'meaning': 1.0, 'thousand': 1.0, 'here': 1.0, 'rests': 2.0, 'so': 1.0, 'cut': 1.0, 'they': 1.0, 'awful': 1.0, 'car': 3.0, 'and': 14.0, 'just': 2.0, 'bitch': 1.0, '1': 1.0, 'but': 2.0, 'if': 3.0, 'particularly': 2.0, 'padding': 1.0, 'designed': 1.0, 'it': 22.0, 'be': 2.0, 'work': 1.0, 'hard': 7.0, 'puts': 1.0, 'situation': 1.0, 'adjust': 1.0, 'fray': 1.0, 'unless': 1.0, 'after': 1.0, 'never': 1.0, 'take': 2.0, 'thing': 1.0, 'cannot': 1.0, 'why': 1.0, 'very': 3.0, 'twist': 1.0, 'loosen': 2.0, 'needs': 1.0, 'i': 7.0, 'prone': 1.0, 'snaked': 1.0, 'out': 2.0, 'worth': 1.0, '4': 2.0, 'order': 1.0, 'pull': 1.0, 'put': 1.0, 'forewarned': 1.0, 'strap': 1.0, 'position': 1.0, 'that': 2.0, 'doesn': 1.0, 's': 5.0, 'seems': 1.0, 'b': 1.0, 'more': 2.0, 'tilt': 1.0, 'for': 4.0, 'through': 1.0, 'into': 2.0, 'tundra': 1.0, 'fabric': 2.0, 'them': 4.0, 'everything': 1.0, 'about': 1.0, 'makes': 2.0, 'buy': 1.0, 'ness': 1.0, 'having': 1.0, 'uncomfortable': 1.0, 'apart': 1.0, '2': 1.0, 'neck': 1.0, 'cushy': 1.0, 'way': 1.0, 'all': 5.0, 'an': 3.0, 'cheap': 2.0, 'head': 3.0, 'my': 2.0, 'are': 5.0, 'slope': 1.0, 'there': 1.0, 'breathable': 1.0, 'large': 1.0, 'awkward': 1.0, 'whole': 1.0, 'as': 1.0, 'harmful': 1.0, 'their': 4.0, 'really': 1.0, 'however': 1.0, 'get': 2.0, 'months': 1.0, 'c': 1.0, 'child': 1.0, 'mine': 1.0, 'chest': 2.0, 'flop': 2.0, 'down': 1.0, 'far': 1.0, 'stick': 1.0, 'when': 1.0, 'your': 3.0, 'kiddo': 1.0, 'started': 1.0, 'have': 3.0, 'found': 1.0, 'hot': 1.0, 'd': 1.0, 'support': 1.0, 'latch': 2.0, 'prior': 1.0, 'busting': 1.0, 'european': 1.0, 'top': 1.0, 'unlatch': 1.0, 'unfortunately': 1.0, 'hell': 1.0}
Word element => {'ever': 1.0, 'dam': 1.0, 'good': 1.0, 'fits': 1.0, 'me': 1.0, 'actually': 1.0, 'that': 1.0, '34': 2.0, 'a': 1.0, 'in': 1.0, 'best': 1.0, 'son': 2.0, 'dad': 1.0, 'carseat': 2.0, 'my': 2.0, 'the': 1.0, '8': 1.0, 'month': 1.0, 'old': 1.0, 'now': 1.0, 'to': 1.0, 'is': 1.0, 'said': 1.0, 'relaxes': 1.0, 'this': 1.0}
Word element => {'car': 1.0, 'as': 1.0, 'irritated': 1.0, 'does': 2.0, 'is': 1.0, 'happy': 1.0, 'secure': 1.0, 'are': 1.0, 'months': 1.0, '10': 1.0, 'in': 1.0, 'old': 1.0, 'to': 1.0, 'him': 1.0, 'our': 1.0, 'bought': 1.0, 'other': 1.0, 'we': 2.0, 'he': 2.0, 'with': 2.0, 'it': 1.0, 'this': 1.0, 'not': 1.0, 'seat': 2.0, 'easy': 2.0, 'install': 1.0, 'out': 1.0, 'for': 1.0, 'comfortable': 1.0, 'get': 1.0, 'getting': 1.0, 'and': 2.0}
Word element => {'here': 1.0, '150': 1.0, 'moms': 1.0, 'shipped': 2.0, 'amazon': 1.0, 'locally': 1.0, 'find': 1.0, 'couldn': 1.0, 'safety': 1.0, 'european': 1.0, 'us': 1.0, 'real': 1.0, 'be': 1.0, 'enough': 1.0, 'not': 1.0, 'tighten': 1.0, 'sticks': 1.0, 'loosen': 1.0, 'adjustable': 1.0, 'plus': 1.0, 'are': 1.0, 'ship': 1.0, 'straps': 2.0, 'additional': 1.0, 'view': 1.0, 'keep': 1.0, 'into': 1.0, 'jammed': 1.0, 'don': 1.0, 'proper': 1.0, 'on': 2.0, 'taking': 1.0, '3': 1.0, 'to': 8.0, 'any': 1.0, 'had': 2.0, 'his': 1.0, 'including': 1.0, 'about': 1.0, 'vehicles': 1.0, 'rental': 1.0, 'family': 1.0, 'me': 1.0, 'my': 5.0, 'facing': 1.0, 'still': 2.0, 'seat': 7.0, 'in': 7.0, 'a': 3.0, 'an': 1.0, 'all': 2.0, 'fits': 1.0, 'other': 1.0, 'cost': 1.0, 't': 4.0, 'fit': 3.0, 'actually': 1.0, 'for': 3.0, 'so': 1.0, 'dashboard': 1.0, 'car': 5.0, 'occasionally': 1.0, 'turns': 1.0, 'seats': 1.0, 'and': 8.0, 'tall': 1.0, 'extra': 1.0, 'trying': 1.0, 'block': 1.0, 'tried': 1.0, 'months': 1.0, 'people': 1.0, 'one': 1.0, 'rear': 1.0, 'at': 1.0, 'is': 2.0, 'their': 1.0, 'vacation': 1.0, 'our': 1.0, 'how': 1.0, 'he': 4.0, 'infant': 1.0, '6': 1.0, 'this': 4.0, 'easy': 1.0, 'found': 1.0, 'paid': 1.0, 'only': 1.0, 'him': 1.0, 'it': 6.0, 'month': 1.0, 'knees': 1.0, 'have': 4.0, 'front': 1.0, 'but': 1.0, 'mode': 1.0, 'i': 7.0, 'well': 3.0, 'location': 1.0, 'has': 1.0, 'grandmas': 1.0, 'doubt': 1.0, 'll': 1.0, 'the': 13.0, 'of': 4.0, 'we': 2.0, 'leg': 1.0, 'position': 1.0, 'would': 2.0, 'convertible': 1.0, 'meets': 1.0, 'was': 4.0, 'easily': 1.0, 'that': 4.0, 'concerned': 1.0, 'very': 2.0, 'problem': 1.0, 'grew': 1.0, 'two': 1.0, 'little': 1.0, 'baby': 1.0, 'out': 2.0, 'when': 3.0, 'growth': 1.0, 'old': 1.0, 'worth': 1.0, 'seller': 1.0, 'now': 1.0, '15': 1.0, 'doesn': 2.0, 'lots': 2.0, 'once': 1.0, 'room': 2.0, 'before': 1.0, 'issues': 1.0, 'with': 2.0, 'standars': 1.0, 'made': 1.0, 'guy': 1.0, 'padding': 1.0, 'like': 1.0}
Word element => {'brand': 1.0, 'this': 1.0, 'trust': 1.0, 'not': 1.0, 'but': 1.0, 'side': 2.0, 'from': 1.0, 'wobbles': 1.0, 'totally': 1.0, 'that': 1.0, 'is': 1.0, 'came': 1.0, 'when': 1.0, 'it': 7.0, 'loved': 1.0, 'use': 2.0, 'convertible': 1.0, 'safety': 1.0, 'got': 1.0, 'ease': 1.0, 'and': 3.0, 'considered': 1.0, 'cars': 1.0, 'only': 1.0, 'primarily': 1.0, 'peg': 3.0, 'of': 2.0, 'britax': 1.0, 'features': 1.0, 'really': 1.0, 'to': 3.0, 'seat': 2.0, 'the': 6.0, 'infant': 1.0, 'car': 2.0, 'bought': 1.0, 'one': 1.0, 'both': 1.0, 'bit': 1.0, 'time': 1.0, 'advocate': 1.0, 'significant': 1.0, 'for': 2.0, 'love': 4.0, 'actually': 1.0, 'each': 1.0, 'two': 1.0, 'i': 2.0, 'we': 4.0, 'a': 3.0, 's': 4.0, 'right': 1.0, 'size': 1.0, 'easy': 1.0, 'good': 1.0, 'quality': 1.0, 'purchase': 1.0, 'my': 1.0, 'perego': 1.0, 'complaint': 1.0}
Word element => {'try': 1.0, 'every': 1.0, 'restrain': 1.0, 'fumes': 1.0, 'breathing': 1.0, 'tan': 1.0, 'black': 1.0, 'chemicals': 1.0, 'working': 1.0, 'were': 1.0, 'expert': 1.0, 'option': 2.0, 'brand': 2.0, 'consider': 1.0, 'name': 1.0, 'notable': 1.0, 'such': 1.0, 'britax': 2.0, 'may': 1.0, 'list': 1.0, 'note': 1.0, 'baby': 1.0, 'stores': 1.0, 'll': 1.0, 'nicer': 1.0, 'above': 1.0, 'comparison': 1.0, 'stack': 1.0, 'people': 1.0, 'lot': 1.0, 'thin': 1.0, 'attached': 1.0, 'loosely': 1.0, 'cheap': 2.0, 'mirror': 1.0, 'view': 1.0, 'blocked': 1.0, 'driver': 1.0, 'big': 2.0, 'cars': 1.0, 'position': 1.0, 'find': 2.0, '17': 1.0, 'both': 1.0, 'biggest': 1.0, 'far': 1.0, '40lbs': 1.0, '50': 1.0, 'affordable': 1.0, 'restraints': 1.0, 'company': 1.0, 'falls': 2.0, 'drop': 1.0, 'seat': 45.0, 'best': 2.0, 'backwards': 1.0, 'foam': 1.0, '22lbs': 1.0, 'easy': 7.0, 'fit': 6.0, 'use': 4.0, 'guy': 2.0, 'combined': 1.0, 'windows': 1.0, 'when': 4.0, 'crumples': 1.0, 'see': 3.0, 'straps': 5.0, 'foonfwhat': 1.0, 'up': 5.0, 'install': 7.0, 'impact': 2.0, '2': 2.0, 'next': 4.0, 'minutes': 1.0, 'from': 7.0, 'should': 1.0, 'short': 1.0, 'line': 3.0, 'well': 5.0, 'on': 2.0, 'leveling': 1.0, 'red': 1.0, 'angle': 2.0, 'or': 6.0, '30': 4.0, 'seats': 9.0, 'son': 5.0, 'somewhat': 1.0, 'even': 4.0, 'of': 13.0, 'base': 1.0, 'small': 3.0, 'product': 1.0, 'have': 5.0, 'cinching': 1.0, 'found': 1.0, 'jersey': 1.0, '20': 1.0, 'way': 2.0, '19': 1.0, 'wobble': 2.0, 'old': 1.0, 'forward': 2.0, 'part': 1.0, 'tight': 1.0, 'enough': 2.0, 'although': 1.0, 'little': 2.0, 'want': 1.0, 'narrow': 1.0, 'two': 2.0, 'insert': 2.0, 'installed': 4.0, 'climbing': 1.0, 'review': 1.0, 'click': 2.0, 'market': 1.0, 'recline': 3.0, 'it': 41.0, 'be': 10.0, 'fabric': 4.0, 'rock': 1.0, 'underscore': 2.0, 'rest': 2.0, 'long': 1.0, 'convertible': 1.0, 'safety': 1.0, 'likes': 1.0, 'certified': 1.0, 'absorbing': 1.0, 't': 8.0, 'quick': 3.0, 'bit': 2.0, 'hope': 1.0, 'place': 1.0, 'foonf': 2.0, 'shock': 1.0, 'did': 5.0, 'time': 3.0, 'spending': 1.0, 'though': 5.0, 'any': 2.0, 'proride': 1.0, '18lbs': 1.0, 'our': 18.0, 'kiddo': 2.0, 'an': 6.0, 'years': 1.0, 'something': 1.0, 'felt': 7.0, 'does': 6.0, 'under': 3.0, 'huge': 1.0, 'gets': 1.0, 'still': 1.0, 'box': 1.0, 'high': 5.0, 'is': 33.0, 'smaller': 2.0, 'solidly': 1.0, '120lbs': 1.0, 'facing': 1.0, 'peg': 1.0, 'liked': 4.0, 'saturn': 1.0, 'extending': 1.0, 'than': 2.0, 'cheaper': 1.0, '49': 3.0, 'at': 11.0, 'into': 5.0, 's': 2.0, 'expensive': 1.0, 'thighs': 1.0, 'however': 2.0, 'travel': 2.0, 'a': 26.0, 'able': 2.0, 'could': 2.0, 'never': 2.0, 'makes': 2.0, 'knew': 1.0, 'but': 7.0, 'very': 8.0, 'comes': 4.0, 'limits': 2.0, 'about': 1.0, '70lbs': 2.0, 'babies': 1.0, 'premium': 2.0, 'and': 32.0, 'recaro': 2.0, 'diono': 3.0, 'hard': 2.0, 'that': 25.0, 'ff': 6.0, 'using': 1.0, 'in': 27.0, 'how': 2.0, 'one': 7.0, 'upon': 1.0, '5': 1.0, 'search': 1.0, 'purchasing': 1.0, 'height': 6.0, 'super': 8.0, 'test': 1.0, 'weight': 3.0, '3': 2.0, 'too': 4.0, 'get': 4.0, 'was': 6.0, 'method': 1.0, 'rf': 10.0, 'wanted': 2.0, 'all': 2.0, 'his': 3.0, 'child': 7.0, 'brag': 1.0, 'husband': 1.0, 'purchased': 1.0, '7': 2.0, '45lbs': 2.0, 'another': 5.0, 'strap': 2.0, 'put': 1.0, 'before': 3.0, 'uncomfortable': 1.0, 'my': 4.0, 'room': 1.0, 'specific': 1.0, 'kid': 1.0, 'finally': 1.0, 'fresco': 1.0, 'he': 6.0, 'clek': 3.0, 'looked': 7.0, 'him': 1.0, 'yet': 2.0, 'car': 16.0, 'only': 3.0, 'dyes': 1.0, 'we': 39.0, 'rxt': 1.0, 'will': 6.0, 'armpit': 1.0, 'latch': 2.0, 'bigger': 1.0, 'light': 2.0, 'eliminated': 2.0, 'many': 1.0, 'your': 6.0, 'this': 37.0, 'safe': 2.0, 'stand': 1.0, 'droops': 1.0, 'just': 5.0, 'narrowed': 1.0, 'not': 13.0, 'cool': 2.0, 'after': 2.0, 'can': 13.0, 'down': 4.0, 'here': 1.0, '1': 1.0, '80lbs': 1.0, 'carrier': 1.0, 'seatwhat': 1.0, 'oh': 1.0, 'clean': 3.0, 'for': 19.0, 'tilt': 1.0, 'looooong': 1.0, 'headrest': 3.0, 'outgrow': 2.0, 'likely': 1.0, 'wipe': 1.0, 'move': 4.0, 'extra': 1.0, 'towel': 1.0, 'these': 2.0, '25': 1.0, 'research': 1.0, 'worked': 1.0, '6': 1.0, 'area': 1.0, 'asleep': 2.0, 'himself': 2.0, 'back': 1.0, 'four': 2.0, 'shoulder': 4.0, 'adjust': 1.0, 'missing': 1.0, 'rise': 1.0, 'wonder': 1.0, 'as': 5.0, 'right': 5.0, 'sit': 2.0, 'you': 19.0, 'toxic': 2.0, 'raise': 1.0, 'why': 1.0, 'there': 1.0, 'no': 2.0, 'center': 3.0, 'are': 3.0, 'thread': 1.0, 'alerted': 1.0, 'solid': 3.0, 'make': 2.0, 'encase': 1.0, 'sure': 1.0, 'everything': 1.0, '20lbs': 1.0, 'tiny': 2.0, 'across': 1.0, 'along': 1.0, 'also': 5.0, 'ion': 1.0, '57': 1.0, 'seriously': 1.0, 'don': 2.0, 'perego': 1.0, 'backseat': 1.0, 'side': 4.0, 'flaw': 1.0, 'love': 2.0, 'front': 1.0, 'copious': 1.0, 'what': 5.0, 'slightly': 1.0, 'reclined': 1.0, 'takes': 1.0, 'automatically': 1.0, 'like': 7.0, 'ease': 1.0, 'tall': 4.0, 'torpedo': 1.0, 'they': 2.0, 'easier': 1.0, 'clear': 1.0, 'then': 3.0, 'over': 1.0, 'out': 3.0, 'door': 1.0, 'e': 2.0, 'go': 3.0, 'directly': 1.0, 'designed': 1.0, 'frame': 2.0, 'extremely': 1.0, 'year': 1.0, 'being': 1.0, 'low': 1.0, 'rear': 2.0, '34': 11.0, 'problem': 2.0, 'now': 4.0, 'slide': 1.0, 'seems': 1.0, 'while': 2.0, 'am': 2.0, 'napping': 1.0, 'much': 1.0, 'to': 44.0, 'because': 4.0, 'rigid': 1.0, 'fits': 2.0, 'prevent': 1.0, 'getting': 2.0, 'chest': 2.0, 'average': 1.0, 'level': 1.0, '43': 1.0, 'design': 1.0, 'appropriately': 1.0, 'sedan': 2.0, 'concerned': 1.0, 'first': 3.0, 'positions': 1.0, 'price': 1.0, 'ouch': 1.0, 'take': 1.0, 'passenger': 2.0, 'again': 1.0, 'pay': 1.0, 'really': 2.0, 'built': 5.0, 'rxtwhat': 1.0, 'behind': 3.0, 'bottom': 2.0, 'radian': 4.0, 'picked': 1.0, 'point': 2.0, 'padding': 3.0, 'booster': 1.0, 'pads': 3.0, 'sits': 1.0, 'leaning': 1.0, 'climb': 1.0, 'has': 4.0, 'footprint': 1.0, 'heaviest': 1.0, 'need': 1.0, 'three': 2.0, 'with': 13.0, 'conducive': 1.0, 'crotch': 1.0, 'the': 68.0, 'important': 1.0, 'plan': 1.0, 'tighten': 1.0, 'window': 2.0, 'so': 13.0, 'great': 3.0, 'clip': 2.0, 'if': 1.0, 'fold': 1.0, 'feature': 1.0, 'used': 2.0, 'wings': 1.0, 'run': 1.0, 'easily': 2.0, 'comfy': 1.0, 'heavy': 2.0, '24lbs': 1.0, 'airline': 2.0, 'harness': 1.0, 'thinking': 1.0, 'would': 7.0, 'pressed': 2.0, 'bring': 1.0, 'tricky': 1.0, 'correctly': 2.0, 'without': 1.0, 'tips': 1.0, 'wide': 1.0, 'system': 1.0, 'con': 1.0, 'race': 1.0, 'provided': 1.0, 'challenging': 1.0, 'pro': 1.0, 'by': 2.0, 'older': 1.0, 'waaay': 1.0, 'kids': 1.0, 'more': 1.0, 'infant': 4.0, 'repellent': 1.0, 'head': 4.0, '65lbs': 1.0, 'change': 1.0, 'nice': 2.0, 'mode': 1.0, '14': 1.0, 're': 1.0, '50lbs': 1.0, 'correct': 1.0, 'crumple': 1.0, 'zone': 1.0, 'actual': 1.0, 'tested': 2.0, 'most': 4.0, 'didn': 3.0, 'water': 1.0, '32lbs': 1.0, 'sell': 1.0, 'person': 2.0, 'duffle': 1.0, '400': 1.0, 'clincher': 1.0, 'yourself': 1.0, 'us': 3.0, 'buy': 1.0, 'i': 14.0, 'between': 1.0, '4': 1.0, 'proridewhat': 1.0}
Word element => {'on': 1.0, 'wholeheartedly': 1.0, 'recommend': 1.0, 'would': 1.0, 'made': 1.0, 'especially': 1.0, 'compared': 1.0, 'anything': 1.0, 'loves': 1.0, 'produts': 1.0, 'ever': 2.0, 'chinese': 1.0, 'penny': 1.0, 'have': 2.0, 'this': 2.0, 'it': 3.0, 'i': 3.0, 'as': 1.0, 'best': 2.0, 'solidly': 1.0, 'seen': 2.0, 'seat': 2.0, 'superior': 1.0, 'my': 2.0, 'is': 2.0, 'the': 4.0, 'sits': 1.0, 'car': 2.0, 'to': 2.0, 'granddaughter': 1.0, 'was': 1.0, 'pricey': 1.0, 'quality': 1.0, 'but': 1.0, 'vehicle': 1.0, 'worth': 1.0, 'every': 1.0, 'in': 1.0, 'market': 1.0, 'and': 1.0}
Word element => {'highly': 1.0, 'would': 1.0, 'so': 2.0, 'feels': 1.0, 'patrol': 1.0, 'by': 1.0, 'redone': 1.0, 'completely': 1.0, 'up': 1.0, 'looks': 1.0, 'highway': 1.0, 'it': 7.0, 'carseats': 1.0, 'this': 1.0, 'first': 1.0, 'my': 3.0, 'in': 2.0, 'for': 1.0, 'carseat': 1.0, 'ended': 1.0, 'after': 1.0, 'rated': 1.0, 'however': 1.0, 'husband': 2.0, 'much': 1.0, 'its': 1.0, 'recommend': 1.0, 'was': 1.0, 'reviews': 1.0, 'second': 1.0, 'safe': 1.0, 'many': 1.0, 'rear': 1.0, 'reading': 1.0, 'wonderful': 1.0, 'most': 1.0, 'but': 1.0, 'can': 1.0, 'loves': 2.0, 'that': 1.0, 'once': 1.0, 'get': 1.0, 'too': 1.0, 'moved': 1.0, 'and': 2.0, 'decided': 1.0, 'our': 1.0, 'to': 3.0, 'as': 1.0, 'from': 2.0, 'very': 2.0, 's': 2.0, 'we': 2.0, 'a': 2.0, 'than': 1.0, 'because': 1.0, 'having': 1.0, 'installed': 1.0, 'car': 1.0, 'infant': 1.0, '70': 1.0, 'sleeker': 1.0, 'i': 1.0, 'pounds': 1.0, 'office': 1.0, 'local': 1.0, 'easily': 1.0, 'be': 1.0, 'son': 1.0, 'difficult': 1.0, 'reinstall': 1.0, 'facing': 2.0, 'forward': 1.0, 'installing': 1.0, 'without': 1.0, 'the': 1.0, 'place': 1.0}
Word element => {'safe': 1.0, 'keep': 1.0, 'while': 1.0, 'window': 1.0, 'see': 1.0, 'wings': 1.0, 'her': 2.0, 'last': 1.0, 'seems': 1.0, 'back': 1.0, 'put': 1.0, 'have': 1.0, 'facing': 1.0, 'still': 2.0, 'driver': 1.0, 'i': 1.0, 'that': 1.0, 'so': 1.0, 'room': 2.0, 'enough': 1.0, 'with': 1.0, 'my': 1.0, 'fits': 1.0, 'daughter': 1.0, 'easy': 1.0, 'research': 1.0, 'is': 2.0, 'inches': 1.0, 'grew': 1.0, 'purchased': 1.0, 'allow': 1.0, 'super': 1.0, 'of': 2.0, 'we': 1.0, 'a': 3.0, 'after': 1.0, 'reviews': 1.0, 'tons': 1.0, 'as': 3.0, 'our': 1.0, 'to': 3.0, 'seat': 6.0, 'just': 2.0, 'comfortable': 1.0, 'install': 1.0, '1': 1.0, 'she': 2.0, 'it': 2.0, 'landrover': 1.0, 'year': 1.0, 'old': 1.0, '21': 1.0, 'lbs': 1.0, 'this': 3.0, 'doing': 1.0, '30': 1.0, 'infant': 1.0, 'car': 1.0, 'and': 3.0, 'tall': 1.0, 'out': 2.0, 'was': 1.0, 'backseat': 1.0, 'the': 6.0, 'rear': 1.0, 'bunch': 1.0, 'peg': 1.0, 'perego': 2.0, 'short': 1.0, 'in': 4.0, 'lr4': 1.0, 'reading': 1.0, 'which': 1.0, 'has': 1.0}
Word element => {'forward': 1.0, 'a': 1.0, 'head': 1.0, 'grandson': 1.0, 't': 1.0, 'comfortable': 1.0, 'that': 1.0, 'angle': 1.0, 'very': 1.0, 'my': 1.0, 'falls': 1.0, 'falling': 1.0, 'adjusts': 1.0, 'in': 1.0, 'seems': 1.0, 'perfect': 1.0, 'so': 1.0, 'when': 1.0, 'this': 1.0, 'it': 1.0, 'he': 1.0, 'to': 1.0, 'asleep': 1.0, 'his': 1.0, 'isn': 1.0}
Word element => {'recommend': 1.0, 'in': 1.0, 'perfectly': 1.0, 'fits': 1.0, 'the': 1.0, 't': 2.0, 'we': 1.0, 'cars': 1.0, 'object': 1.0, 'wasn': 1.0, 'chic': 1.0, 'comfort': 1.0, 'suv': 1.0, 'recommendit': 1.0, 'first': 1.0, 'this': 1.0, 'it': 2.0, 'carseat': 1.0, 'was': 1.0, 'our': 2.0, 'small': 1.0, 'so': 1.0, 'is': 1.0, 'of': 1.0, 'excellent': 1.0, 'but': 1.0, 'an': 1.0, 'quality': 1.0, 'love': 1.0, 'for': 1.0, 'safety': 1.0, 'style': 2.0, 'i': 2.0, 'highly': 1.0, 'money': 1.0, 'don': 1.0}
Word element => {'received': 1.0, 'quickly': 1.0, 'upright': 1.0, 'positions': 1.0, '2': 1.0, 'only': 1.0, 'are': 1.0, 'there': 1.0, 'that': 1.0, 'note': 1.0, 'seller': 1.0, 'or': 1.0, 'mechanisms': 1.0, 'better': 1.0, 'very': 1.0, 'construction': 1.0, 'reclined': 1.0, 'cheaply': 1.0, 'use': 1.0, 'not': 1.0, 'just': 1.0, 'appear': 1.0, 'promised': 1.0, 'the': 4.0, 'and': 4.0, 'mechanisim': 2.0, 'quality': 1.0, 'recline': 3.0, 'this': 4.0, 'it': 3.0, 'say': 1.0, 'is': 3.0, 'a': 1.0, 'well': 1.0, 'good': 2.0, 'than': 1.0, 'does': 1.0, 'expensive': 1.0, 'pretty': 2.0, 'car': 1.0, 'which': 1.0, 'although': 1.0, 'be': 2.0, 'faster': 1.0, 'shipped': 1.0, 'given': 1.0, 'nice': 1.0, 'comfortable': 1.0, 'price': 1.0, 'of': 1.0, 'will': 1.0, 'also': 1.0, 'seems': 1.0, 'options': 1.0, 'otherwise': 1.0, 'i': 4.0, 'buy': 1.0, 'sure': 1.0, 'would': 1.0, 'am': 1.0, 'again': 1.0, 'over': 1.0, 'made': 1.0, 'less': 1.0, 'difficult': 1.0, 'seem': 1.0, 'have': 1.0, 'constructed': 1.0, 'seat': 2.0, 'to': 4.0, 'as': 1.0}
Word element => {'brands': 1.0, 'like': 1.0, 'compact': 1.0, 'cold': 1.0, 'weather': 1.0, 'warm': 2.0, 'child': 1.0, 'helps': 1.0, 'which': 1.0, 'material': 1.0, 'all': 1.0, 'thing': 1.0, 'keep': 1.0, 'main': 1.0, 'and': 3.0, 'very': 2.0, 'not': 1.0, 'seat': 3.0, 'other': 1.0, 'luxury': 1.0, 'of': 1.0, '34': 2.0, 'bulky': 1.0, 'great': 1.0, 'the': 4.0, 'is': 6.0, 'car': 3.0, 'safety': 2.0, 'comfortable': 1.0, 'for': 1.0, 'around': 1.0, 'cool': 1.0, 'top': 1.0, 'this': 2.0, 'it': 2.0, 'in': 3.0, 'also': 2.0, 'our': 1.0, 'breathable': 1.0, 'lil': 1.0, 'seats': 1.0, 'girl': 1.0}
Word element => {'his': 1.0, 'of': 1.0, 'out': 1.0, 'too': 1.0, '1': 1.0, 'seat': 2.0, 'purchasing': 1.0, 'for': 1.0, 'is': 1.0, 'my': 1.0, 'pleased': 1.0, 'he': 1.0, 'with': 1.0, 'it': 1.0, 'def': 1.0, 'loves': 1.0, 'other': 1.0, 'old': 1.0, 'year': 1.0, 'very': 1.0, 'will': 2.0, 'another': 1.0, 'car': 2.0, 'last': 1.0, 'be': 1.0, 'till': 1.0}
Word element => {'enough': 1.0, 'breeze': 1.0, 'easier': 1.0, 'much': 1.0, 'load': 1.0, 'easy': 1.0, 'bit': 1.0, 'looked': 1.0, 'into': 1.0, 'with': 1.0, 'plenty': 1.0, 'spacious': 1.0, 'till': 1.0, 'will': 1.0, 'tell': 1.0, 'has': 2.0, 'edge': 1.0, 'it': 4.0, 'already': 1.0, 'grows': 1.0, 'been': 1.0, 'have': 1.0, 'summer': 1.0, 'would': 1.0, 'no': 1.0, 'months': 1.0, 'seven': 1.0, 'i': 4.0, 'feet': 1.0, 'well': 1.0, 't': 1.0, 'fit': 1.0, 'pp': 1.0, 'liking': 1.0, 'ended': 1.0, 'love': 2.0, 'reputation': 1.0, 'their': 1.0, 'safe': 1.0, 'due': 1.0, 'leader': 1.0, 'head': 1.0, 'that': 2.0, 'but': 2.0, 'nice': 1.0, 'had': 1.0, 'least': 1.0, 'spaced': 1.0, 'g3': 1.0, 'pavilion': 1.0, 'pria': 2.0, 'which': 1.0, 'over': 2.0, 'this': 5.0, 'important': 1.0, 'outgrow': 1.0, 'possible': 1.0, 'facing': 1.0, 'cannot': 1.0, 'very': 1.0, 'as': 3.0, 'to': 9.0, 'any': 1.0, 'grow': 2.0, 'our': 5.0, 'around': 1.0, 'at': 1.0, 'is': 5.0, 'recommend': 1.0, 'were': 5.0, 'and': 8.0, 'wonderful': 1.0, 'old': 1.0, 'a': 7.0, 'we': 6.0, 'go': 1.0, 'closely': 1.0, 'faces': 1.0, 'my': 1.0, 'truly': 1.0, 'daughter': 1.0, 'seat': 19.0, 'in': 7.0, 'was': 5.0, 'seemed': 1.0, 'store': 1.0, 'carrying': 1.0, 'not': 1.0, 'up': 4.0, '7': 1.0, 'clear': 2.0, 'looking': 1.0, 'on': 1.0, 'long': 1.0, 'her': 6.0, 'large': 1.0, '45lbs': 1.0, 'fabric': 1.0, 'for': 4.0, 'switched': 1.0, 'peg': 2.0, 'comfortable': 5.0, 'infant': 4.0, 'window': 1.0, 'cool': 1.0, 'car': 1.0, 'she': 7.0, 'baby': 1.0, 'perego': 2.0, 's': 3.0, 'cosi': 1.0, 'of': 2.0, 'longer': 1.0, 'the': 22.0, 'out': 4.0, 'perfectly': 1.0, 'convertible': 1.0, 'there': 2.0, 'just': 1.0, 'seats': 4.0, 'only': 1.0, 'considering': 1.0, 'maxi': 1.0, 'having': 1.0, 'room': 2.0, 'before': 1.0, 'be': 1.0, 'us': 1.0, 'also': 1.0, 'than': 1.0, 'way': 1.0, 'huge': 1.0, 'consideration': 1.0, 'installation': 1.0, 'recently': 1.0, 'top': 1.0, 'britax': 4.0, 'are': 1.0, 'rear': 2.0, 'held': 1.0, 'winter': 1.0, 'felt': 1.0, 'totally': 1.0, 'month': 1.0, 'same': 1.0, 'latch': 1.0, 'safety': 2.0, 'keep': 1.0, 'standards': 1.0, 'can': 3.0, 'so': 4.0, 'gage': 1.0, 'highest': 1.0, 'really': 2.0, 'what': 1.0, 'choice': 1.0, 'you': 1.0, 're': 1.0, 'paying': 1.0, 'features': 1.0, 'comfort': 1.0, 'see': 1.0, 'b': 1.0, 'tried': 1.0, 'might': 1.0, 'headwings': 1.0, 'winner': 1.0, '70': 2.0, '3': 2.0, '18lb': 1.0, 'most': 2.0, 'making': 1.0, 'all': 1.0, 'an': 2.0, 'other': 1.0, 'higher': 1.0, '07': 1.0, '40lbs': 1.0, 'honda': 1.0, 'crv': 1.0}
Word element => {'most': 1.0, 'agree': 1.0, 'review': 1.0, 'helpfully': 1.0, 'this': 1.0, 'keep': 1.0, 'let': 1.0, 'he': 1.0, 'show': 1.0, 'come': 1.0, 'with': 3.0, 'work': 1.0, 'winner': 1.0, 'to': 7.0, 'other': 1.0, 'all': 1.0, 'car': 1.0, 'on': 1.0, 'them': 1.0, 'next': 1.0, 'free': 1.0, 'now': 1.0, 'him': 1.0, 'it': 4.0, 'ofcorse': 1.0, 'both': 3.0, 'but': 2.0, 'italian': 1.0, 'seats': 1.0, 'just': 2.0, 'home': 1.0, 'by': 1.0, 'new': 2.0, 'i': 14.0, 'and': 12.0, 'lot': 2.0, 'too': 1.0, 'price': 2.0, 'product': 1.0, 'cheap': 1.0, 'perego': 3.0, 'peg': 6.0, 'durable': 1.0, 'from': 1.0, 'returns': 1.0, 'put': 2.0, 'much': 1.0, 'advocate70': 1.0, 'how': 2.0, 'adjust': 2.0, 'difference': 1.0, 'reviews': 2.0, 'not': 2.0, 'relatively': 1.0, 'than': 1.0, 'cs': 1.0, 'amazon': 1.0, 'there': 1.0, 'britax': 6.0, 'nicer': 1.0, 'good': 1.0, 'for': 1.0, 'fabric': 1.0, 'of': 2.0, 'the': 7.0, 'heavier': 1.0, 'red': 3.0, 'everything': 2.0, 'manual': 2.0, 'at': 1.0, 'is': 8.0, 'husband': 1.0, 'pegis': 1.0, 'more': 1.0, 'a': 5.0, 't': 2.0, 'in': 3.0, 'better': 1.0, 'loose': 1.0, 'out': 1.0, 'received': 1.0, 'also': 1.0, 'bulky': 1.0, 'ordered': 2.0, 'didn': 1.0, 'even': 4.0, 'each': 1.0, 'read': 1.0, 'being': 1.0, 'very': 2.0, 'was': 1.0, 'true': 1.0, 'right': 1.0, 'me': 1.0, 'looks': 2.0, 'my': 2.0, 'complicated': 1.0, 'self': 1.0, 'after': 1.0, 'be': 1.0, 'sure': 1.0, 'that': 5.0, 'because': 1.0, 'easily': 1.0, 'when': 3.0, 'able': 1.0, 'you': 1.0, 'smoler': 1.0, 'easy': 1.0, 'found': 2.0, 'couldn': 1.0, 'still': 1.0, 'position': 1.0, 'difficult': 1.0, 'lighter': 1.0, 'looking': 1.0}
Word element => {'southern': 1.0, 'in': 1.0, 'months': 1.0, 'of': 1.0, 'during': 1.0, 'we': 1.0, 'twins': 1.0, 'our': 2.0, 'and': 1.0, 'very': 1.0, 'use': 1.0, 'easy': 1.0, 'to': 1.0, 'breathable': 1.0, 'area': 1.0, 'hot': 1.0, 'car': 1.0, 'summer': 1.0, 'is': 3.0, 'california': 1.0, 'seat': 1.0, 'two': 1.0, 'seem': 1.0, 'bought': 1.0, 'material': 1.0, 'which': 1.0, 'comfortable': 1.0, 'for': 1.0, 'the': 3.0, 'great': 1.0, 'climate': 1.0}
Word element => {'met': 1.0, 'perego': 1.0, 'would': 1.0, 'predetermined': 1.0, 'purchases': 1.0, 'typically': 1.0, 'review': 1.0, 'receive': 1.0, 'available': 1.0, 'stars': 3.0, 'five': 5.0, 'keeping': 1.0, 'stitching': 1.0, 'white': 1.0, 'mercedes': 1.0, 'between': 2.0, 'over': 1.0, 'make': 2.0, '3': 1.0, 'on': 2.0, 'mean': 1.0, 'priority': 1.0, 'important': 1.0, 'd': 1.0, 'meets': 1.0, 'was': 2.0, 'safety': 1.0, 'let': 1.0, 'yet': 1.0, 'or': 2.0, 'gl': 1.0, 'why': 1.0, 'parameters': 1.0, 'this': 5.0, 'i': 3.0, '4': 2.0, 'll': 1.0, 'peg': 1.0, 'said': 1.0, 'in': 3.0, 'seat': 3.0, 'your': 1.0, 'any': 1.0, 'margin': 1.0, 'straight': 1.0, 'to': 2.0, 'like': 1.0, 'highlight': 1.0, 'all': 3.0, 'other': 1.0, 'trips': 1.0, 'before': 1.0, '5': 1.0, 'matches': 1.0, 'shot': 1.0, 'know': 1.0, 'easy': 1.0, '2': 1.0, 'can': 2.0, 'but': 1.0, 'longer': 1.0, 'the': 10.0, 'of': 2.0, 've': 1.0, 'read': 1.0, 'requirements': 4.0, 's': 3.0, 'aforementioned': 1.0, 'a': 3.0, 't': 1.0, 'you': 6.0, 'turn': 1.0, 'if': 4.0, 'same': 1.0, 'regularly': 1.0, 'reviews': 1.0, 'difference': 1.0, 'big': 1.0, 'not': 1.0, 'do': 1.0, 'comfort': 2.0, 'homework': 1.0, 'be': 3.0, 'for': 6.0, 'and': 1.0, 'rate': 1.0, 'pulling': 1.0, 'quality': 1.0, 'amazed': 1.0, 'how': 1.0, 'at': 1.0, 'is': 2.0, 'product': 1.0, 'child': 1.0, 'products': 1.0, 'interior': 1.0, 'some': 1.0, 'car': 2.0, 'clean': 1.0, 'haven': 1.0, 'made': 1.0, 'had': 1.0, 'purchase': 2.0, 'quickly': 1.0, '1': 2.0, 'find': 1.0, 'absolutely': 1.0, 'out': 1.0, 'it': 5.0, 'my': 5.0, 'may': 1.0, 'me': 3.0, 'looks': 1.0, 'list': 1.0, 'aesthetics': 1.0, 'own': 1.0, '2012': 1.0, 'convertible': 1.0, 'perfectly': 1.0, 'black': 1.0, 'later': 1.0, 'amazon': 1.0, 'ml': 1.0, 'with': 2.0}
Word element => {'easy': 1.0, 'convertible': 1.0, 'other': 1.0, 'than': 1.0, 'not': 1.0, 'certainly': 1.0, 'but': 1.0, 'room': 1.0, 'bit': 1.0, 'products': 1.0, 'i': 2.0, 'perego': 1.0, 'fans': 1.0, 'lots': 1.0, 'the': 2.0, 'are': 1.0, 'a': 1.0, 'we': 1.0, 'facing': 1.0, 'son': 1.0, 'of': 3.0, 'up': 1.0, 'they': 1.0, 'that': 2.0, 'research': 1.0, 'it': 3.0, 'rear': 1.0, 'peg': 1.0, 'using': 1.0, 'like': 1.0, 'in': 3.0, 'quality': 1.0, 'and': 3.0, 'ease': 1.0, 'comfortably': 1.0, 'make': 1.0, 'sits': 1.0, 'safety': 1.0, 'more': 1.0, 'is': 3.0, 'takes': 1.0, 'important': 1.0, 'install': 1.0, 'big': 1.0, 'feel': 1.0, 'at': 1.0, 'no': 1.0, 'anchors': 1.0, 'fits': 1.0, 'my': 1.0, 'very': 3.0, 'little': 1.0, 'one': 2.0, 'car': 2.0, 'to': 1.0, 'any': 1.0, 'our': 1.0, 'seat': 2.0, 'with': 1.0, 'piece': 1.0, 'after': 1.0, 'base': 1.0, 'this': 2.0, 'separates': 1.0, 'quite': 1.0}
Word element => {'loves': 1.0, 'baby': 1.0, 'looks': 1.0, 'clean': 1.0, 'and': 1.0, 'comfy': 1.0, 's': 2.0, 'my': 1.0, 'happy': 1.0, 'm': 1.0, 'in': 1.0, 'for': 1.0, 'girl': 1.0, 'came': 1.0, 'box': 2.0, 'item': 1.0, 'quality': 1.0, 'an': 1.0, 'had': 1.0, 'to': 2.0, 'condition': 1.0, 'very': 2.0, 'open': 1.0, 'as': 2.0, 'with': 1.0, 'only': 1.0, 'it': 5.0, 'bought': 1.0, 'definitely': 1.0, 'never': 1.0, 'safe': 1.0, 'some': 1.0, 'i': 1.0, 'cosmetic': 1.0, 'easy': 1.0, 'damge': 1.0, 'great': 2.0, 'the': 3.0, 'used': 1.0, 'carseat': 1.0}
Word element => {'buy': 1.0, 'would': 1.0, 'second': 1.0, 'amazing': 1.0, 'point': 1.0, 'happy': 1.0, 'though': 1.0, 'after': 1.0, 'keep': 1.0, 'will': 1.0, 'lap': 1.0, '1': 1.0, 'less': 1.0, 'but': 4.0, 'unbelievable': 1.0, '34': 2.0, 'other': 3.0, 'fits': 1.0, 'head': 1.0, 'some': 3.0, 'when': 2.0, 'then': 2.0, 'first': 5.0, 'how': 1.0, 'at': 1.0, 'look': 1.0, 'closer': 1.0, 'service': 2.0, 'scratchy': 1.0, 'much': 2.0, 'put': 1.0, 'seems': 1.0, 'b': 2.0, 'that': 6.0, 'because': 1.0, 'in': 7.0, 'seat': 15.0, 'still': 1.0, 'super': 2.0, 've': 2.0, 'down': 2.0, 'all': 1.0, 'way': 1.0, 'than': 2.0, 'literally': 1.0, 'muscle': 1.0, 'me': 1.0, 'edges': 1.0, 'rear': 1.0, 'price': 1.0, 'try': 1.0, 'break': 1.0, 'directions': 1.0, 'comparing': 1.0, 'anyone': 1.0, 'volvo': 1.0, 'car': 6.0, 'noticed': 1.0, 'on': 4.0, 'smaller': 1.0, 'so': 2.0, 'is': 6.0, 'can': 1.0, 'him': 1.0, 'recline': 3.0, 'this': 7.0, 'no': 2.0, 'thing': 1.0, 'his': 1.0, 'begin': 1.0, 'adjustment': 1.0, 'for': 4.0, 'up': 2.0, 'install': 1.0, 'comfortable': 1.0, 'if': 2.0, 'great': 3.0, 'foot': 1.0, 'the': 27.0, 'label': 1.0, 'minutes': 1.0, 'pros': 1.0, 'returned': 1.0, 'more': 1.0, 'actually': 2.0, 'system': 1.0, 'love': 2.0, 'once': 2.0, 'facing': 1.0, 'difficult': 2.0, 'position': 2.0, 'latch': 1.0, 'tends': 1.0, 'i': 19.0, 'here': 1.0, 'with': 5.0, 'using': 1.0, 'again': 1.0, 'which': 1.0, 'was': 5.0, 'to': 11.0, 'm': 1.0, 'ever': 1.0, 's': 2.0, 'a': 13.0, 'installed': 2.0, 'installation': 1.0, 'wagon': 1.0, 'of': 3.0, 'brands': 2.0, 'pay': 1.0, 'unlike': 1.0, 'you': 3.0, 'upside': 1.0, 'seen': 1.0, 'ups': 1.0, 'v50': 1.0, 'take': 1.0, '15': 1.0, 'bug': 1.0, 'little': 4.0, 'sewn': 1.0, 'big': 1.0, 'nice': 1.0, 'know': 1.0, 'reline': 1.0, 'breathable': 1.0, 'there': 2.0, 'sweaty': 1.0, 'belt': 1.0, 'replacement': 2.0, 'decided': 1.0, 'move': 1.0, 'aware': 1.0, 'find': 2.0, 'very': 1.0, 'people': 2.0, 'complained': 1.0, 'front': 1.0, 'about': 1.0, 'grammar': 1.0, 'amazon': 4.0, 'are': 3.0, 'my': 5.0, 'issues': 1.0, 'easier': 1.0, 'x': 1.0, 'out': 1.0, 'had': 4.0, 'cons': 1.0, 'full': 1.0, 'tighten': 1.0, 'disclosure': 1.0, 'immediately': 1.0, 'received': 1.0, 'one': 3.0, 'got': 2.0, 'fabric': 3.0, 'into': 2.0, 'stuck': 1.0, 'we': 1.0, 'middle': 1.0, 'called': 1.0, 'overall': 1.0, 'they': 1.0, 'clear': 1.0, 'sleeping': 1.0, 'smooth': 1.0, 'charge': 1.0, 'day': 1.0, 'get': 2.0, 'shipping': 1.0, 'box': 1.0, 'pick': 1.0, 'customer': 2.0, 'from': 1.0, 'read': 1.0, 'thank': 1.0, 'else': 1.0, 'has': 2.0, 'return': 1.0, 'kind': 1.0, 'did': 2.0, 'defect': 1.0, 'easy': 1.0, 'discover': 1.0, 'could': 1.0, 'attempt': 1.0, 'upright': 1.0, 'back': 1.0, 'nicest': 1.0, 'step': 1.0, 'encountered': 1.0, 'button': 1.0, 'base': 1.0, 'think': 1.0, 'blog': 1.0, 'your': 1.0, 'where': 1.0, 'tried': 1.0, 'and': 8.0, 'just': 1.0, 'it': 15.0, 'be': 1.0, 'shoulder': 1.0, 'problem': 4.0, 'pads': 1.0, 'quite': 1.0, 'guy': 1.0, 'sent': 1.0, 'does': 1.0, 'ended': 1.0, 'make': 1.0, 'straps': 1.0}
Word element => {'further': 1.0, 'no': 1.0, 'budget': 1.0, 'your': 1.0, 'if': 1.0, 'firm': 1.0, 'sturdy': 1.0, 's': 1.0, 'minut': 1.0, 'material': 1.0, 'installed': 1.0, 'look': 1.0, 'its': 2.0, 'dows': 1.0, 'this': 1.0, 'i': 1.0, 'looking': 1.0, 'right': 1.0, 'not': 1.0, 'seat': 1.0, 'important': 1.0, 'reviews': 1.0, 'are': 1.0, 'great': 1.0, 'the': 2.0, 'and': 2.0, 'get': 1.0, 'within': 1.0, 'eacute': 1.0, 'hot': 1.0, 'which': 1.0, 'love': 1.0, 'for': 1.0, 'in': 1.0, 'really': 1.0, 'is': 1.0, 'warm': 1.0, 'climates': 1.0, 'few': 1.0, 'a': 1.0}
Word element => {'kid': 1.0, 'lots': 1.0, 'with': 1.0, 'down': 1.0, 'comfortable': 1.0, 'love': 1.0, 'for': 2.0, 'very': 1.0, 'her': 1.0, 'personally': 1.0, 'also': 1.0, 'in': 1.0, 'this': 1.0, 'she': 3.0, 'it': 2.0, 'toddler': 1.0, 'doesn': 1.0, 'car': 2.0, 'when': 1.0, 'i': 2.0, 'high': 1.0, 'sits': 1.0, 'look': 1.0, 'the': 3.0, 'asleep': 1.0, 'seat': 1.0, 'of': 2.0, 'windows': 1.0, 'head': 1.0, 'hang': 1.0, 'and': 3.0, 'so': 1.0, 'window': 1.0, 'but': 1.0, '2': 1.0, 'can': 1.0, 'see': 1.0, 'front': 1.0, 's': 1.0, 't': 1.0, 'a': 1.0, 'comfort': 1.0, 'well': 1.0, 'out': 1.0, 'my': 2.0, 'fits': 1.0, 'side': 1.0, 'door': 1.0, 'falls': 1.0, 'small': 1.0, 'have': 1.0}
Word element => {'product': 1.0, 'add': 1.0, 'lastly': 1.0, 'money': 1.0, 'totally': 1.0, 'reccomend': 1.0, 'should': 1.0, 'wondering': 1.0, 'chair': 1.0, 'comfortable': 1.0, 'shows': 1.0, 'italy': 1.0, 'road': 2.0, 'old': 1.0, 'cheap': 1.0, 'like': 1.0, 'sweat': 1.0, 'doesn': 1.0, 'all': 2.0, 'inches': 1.0, 'took': 1.0, 'even': 1.0, 'sturdy': 1.0, 'stable': 1.0, 'very': 1.0, 'got': 2.0, 'hard': 1.0, 'was': 1.0, 'husband': 1.0, 'installation': 1.0, 'graco': 1.0, 'esp': 1.0, 'up': 1.0, 'if': 2.0, 'covering': 1.0, 'safe': 1.0, 'dry': 1.0, 'not': 3.0, 'bulky': 1.0, 'see': 1.0, 'will': 1.0, 'go': 1.0, 'looking': 1.0, 'made': 1.0, 'good': 1.0, 'us': 1.0, 'compact': 1.0, 'at': 2.0, 'is': 4.0, 'him': 1.0, 'it': 6.0, 'can': 2.0, 'think': 1.0, 'on': 4.0, 'stains': 1.0, '2': 3.0, 'sleep': 1.0, 'most': 3.0, 'feature': 1.0, 'food': 1.0, 'but': 2.0, 'infant': 1.0, 'clean': 2.0, 'car': 7.0, 'you': 6.0, 'that': 3.0, 'easily': 1.0, 'once': 1.0, 'these': 1.0, 't': 3.0, 'small': 1.0, 'a': 4.0, 's': 4.0, 'china': 1.0, 'such': 1.0, 'for': 5.0, 'he': 1.0, 'love': 3.0, 'expensive': 1.0, 'try': 1.0, 'lot': 1.0, 'amelie': 1.0, 'one': 4.0, 'perfect': 1.0, 'highly': 1.0, 'expert': 1.0, 'this': 5.0, 'future': 1.0, 'brands': 1.0, 'reading': 1.0, 'became': 1.0, 'to': 8.0, 'move': 1.0, 'hehehe': 1.0, 'and': 11.0, 'out': 6.0, 'asking': 1.0, 'came': 1.0, 'hahaha': 1.0, 'seat': 4.0, 'in': 1.0, 'don': 1.0, 'always': 1.0, 'trips': 1.0, 'next': 1.0, 'budget': 1.0, 'materials': 1.0, 'she': 1.0, 'baby': 4.0, 'my': 3.0, 'after': 1.0, 'several': 1.0, 'narrowed': 1.0, 'down': 1.0, 'perego': 1.0, 'u': 2.0, 'anyway': 2.0, 'her': 3.0, 'any': 1.0, 'your': 1.0, 'online': 1.0, 'plenty': 1.0, 'time': 1.0, 'favorable': 1.0, 'though': 1.0, 'grew': 1.0, 'researching': 1.0, 'depends': 1.0, 'get': 3.0, 'we': 2.0, 'reviews': 1.0, 'comparing': 1.0, 'worth': 1.0, 'now': 1.0, 'when': 1.0, 'what': 2.0, 'ur': 1.0, 'are': 4.0, 'of': 7.0, 'the': 10.0, 'combi': 1.0, 'best': 1.0, 'both': 1.0, 'market': 1.0, 'nice': 1.0, 'mention': 1.0, 'said': 1.0, 'view': 1.0, 'peg': 1.0, 'there': 1.0, 'convertible': 1.0, 'seats': 2.0, 'know': 1.0, 'however': 1.0, 'have': 4.0, 'i': 11.0, 'coming': 1.0, 'pros': 1.0, 'cons': 1.0, 'had': 2.0, 'type': 1.0, 'how': 2.0, 'r': 1.0, 'much': 1.0, 'want': 2.0, 'spent': 1.0, 'invest': 1.0, 'traveling': 1.0, 'done': 1.0, 'finally': 1.0, 'kid': 1.0, 'guess': 1.0, 'those': 2.0, 'superb': 1.0, 'since': 1.0, 'find': 1.0, '1': 1.0, 'feeling': 1.0, 'from': 2.0, 'messy': 1.0}
Word element => {'tahoe': 1.0, 'in': 1.0, 'pretty': 1.0, 'worth': 1.0, 'but': 2.0, 'also': 1.0, 'secure': 1.0, 'old': 1.0, 'i': 3.0, '19': 1.0, 'this': 2.0, 'long': 1.0, 'trips': 1.0, 'her': 1.0, 'expensive': 1.0, 'comfortable': 1.0, '34': 4.0, 'of': 1.0, 'on': 2.0, 'hinney': 2.0, 'my': 3.0, 'looks': 1.0, 'it': 5.0, 'she': 2.0, 'baby': 1.0, 'about': 1.0, 'awesome': 1.0, 'girl': 1.0, 'would': 1.0, 'previous': 1.0, 'was': 2.0, 'complaining': 1.0, 'than': 1.0, 'help': 1.0, 'friend': 1.0, 'the': 2.0, 'seat': 2.0, 'referral': 1.0, 'is': 2.0, 'say': 1.0, 'more': 3.0, 'cool': 1.0, 'months': 1.0, 'bought': 1.0, 's': 1.0, 'a': 1.0, 'and': 2.0, 'am': 1.0, 'so': 1.0, 'glad': 1.0, 'did': 1.0, 'yes': 1.0, 'has': 1.0, 'been': 1.0}
Word element => {'heard': 1.0, 'deal': 1.0, 'long': 1.0, 'sides': 2.0, 'advice': 1.0, 'out': 2.0, 'compared': 2.0, 'pounds': 1.0, 'group': 1.0, 'littles': 1.0, 'stiff': 1.0, 'falls': 1.0, 'nicely': 1.0, 'himself': 1.0, 'asleep': 1.0, 'the': 24.0, 'come': 1.0, 'actually': 1.0, 'seems': 2.0, 'see': 1.0, 'will': 3.0, 'think': 3.0, '25': 2.0, 'is': 13.0, 'lucky': 1.0, 'at': 3.0, '21lbs': 1.0, 'seat': 9.0, 'in': 12.0, 'no': 2.0, '34': 1.0, 'link': 1.0, 'lbs': 1.0, 'was': 2.0, 'when': 1.0, 'of': 7.0, 'old': 1.0, 'months': 3.0, 'guessing': 1.0, 'has': 2.0, 'very': 4.0, '16': 1.0, 'do': 2.0, 'butt': 1.0, 'like': 1.0, 'longer': 1.0, 'looking': 1.0, 'would': 2.0, 'nextfit': 2.0, 'there': 2.0, 'as': 4.0, 'detail': 1.0, 'comfortable': 2.0, 'say': 1.0, 'win': 1.0, 'few': 1.0, 'big': 1.0, 'nice': 1.0, 'lower': 1.0, 'already': 1.0, 'me': 1.0, 'for': 7.0, 'purchase': 1.0, 'only': 1.0, 'remain': 1.0, 'so': 3.0, 'comparison': 2.0, 'strap': 1.0, 'position': 2.0, 'my': 1.0, 'are': 6.0, 'reviews': 1.0, 'post': 1.0, 'belt': 1.0, 'go': 1.0, 'a': 13.0, 'since': 1.0, '1': 1.0, 'happy': 1.0, 'one': 1.0, 'rear': 5.0, 'chicco': 1.0, 'limits': 1.0, 'quite': 3.0, 'bunch': 1.0, 'negative': 1.0, 'impossible': 1.0, 'were': 2.0, 'i': 8.0, 'not': 5.0, 'site': 1.0, 'hence': 1.0, 'using': 1.0, 'with': 3.0, 'him': 1.0, 'he': 7.0, 'all': 2.0, '22': 2.0, 'an': 1.0, 'pads': 1.0, 'search': 2.0, 'to': 15.0, 'years': 1.0, 'our': 5.0, 'easy': 3.0, 'it': 16.0, 'be': 4.0, 'convertible': 2.0, 'amazon': 2.0, 'been': 1.0, 'visual': 1.0, 'padded': 1.0, 'verified': 1.0, 'note': 1.0, 'and': 8.0, 'couldn': 1.0, 'install': 2.0, 'height': 5.0, 'won': 1.0, 'vehicle': 1.0, 'that': 5.0, 'because': 1.0, 'problems': 1.0, 'easily': 1.0, 'fabric': 1.0, 'into': 1.0, 'profile': 1.0, 'sweaty': 1.0, 'straps': 1.0, 'stated': 1.0, 'internet': 1.0, 'shoulder': 1.0, 'limit': 3.0, 'adjust': 1.0, 'harness': 1.0, 'also': 2.0, '32': 1.0, 'this': 3.0, 'relatively': 1.0, 'low': 1.0, 'have': 6.0, '7th': 1.0, 'time': 1.0, 'top': 1.0, 'we': 2.0, 'middle': 1.0, 'often': 1.0, 'get': 3.0, 'able': 1.0, 'you': 4.0, 'use': 2.0, 'but': 4.0, 'don': 1.0, 'super': 2.0, 'still': 1.0, 'happier': 1.0, 'great': 2.0, 'if': 3.0, 'outboard': 1.0, 'facing': 5.0, 'relation': 1.0, 'want': 1.0, 'below': 1.0, 'allow': 1.0, 'child': 1.0, 'most': 1.0, 'shell': 2.0, 'son': 5.0, 'seats': 4.0, '45': 1.0, 'on': 3.0, 'practices': 1.0, 'market': 1.0, 'weight': 1.0, 'higher': 1.0, 'm': 1.0, 'doesn': 1.0, 'average': 1.0, 'car': 7.0, 'interesting': 1.0, 'bit': 2.0, 'than': 2.0, 'web': 2.0, 'currently': 1.0, 'climbing': 2.0, 'installed': 2.0, 'review': 1.0, 'org': 1.0, 'let': 1.0, 'they': 1.0, 'raffle': 1.0, 'facebook': 1.0, 'or': 1.0, 'questions': 1.0, 'okay': 1.0, 'about': 2.0, 'csftl': 1.0, 'best': 1.0, 'latch': 1.0, 'url': 1.0, 't': 4.0, 'above': 1.0, 'should': 1.0, 'positions': 1.0, 'thing': 1.0, 'pain': 1.0}
Word element => {'elantra': 1.0, 'back': 1.0, 'ride': 1.0, 'hyundai': 1.0, 'old': 1.0, 'year': 1.0, '9': 1.0, 'leaves': 1.0, 'still': 1.0, 'noodle': 1.0, 'or': 1.0, 'use': 1.0, 'properly': 1.0, 'towel': 1.0, 'area': 1.0, 'inspector': 1.0, 'of': 2.0, 'owner': 1.0, 'car': 2.0, 'this': 1.0, 'it': 5.0, 'without': 1.0, 'the': 8.0, 'is': 1.0, 'more': 1.0, 'loves': 1.0, 'installation': 1.0, 'that': 1.0, 'and': 7.0, 'i': 1.0, 'in': 2.0, 'recaro': 1.0, 'told': 1.0, 'they': 1.0, 'sell': 1.0, 'room': 1.0, '5': 1.0, 'standards': 1.0, 'baby': 3.0, 'them': 1.0, 'unlike': 1.0, 'made': 1.0, 'out': 1.0, '11': 1.0, 'local': 1.0, 'we': 1.0, 't': 1.0, 'a': 2.0, 'equipment': 1.0, 'was': 2.0, 'anymore': 1.0, 'store': 2.0, 'my': 1.0, 'purchase': 1.0, 'our': 5.0, 'to': 4.0, 'seat': 2.0, 'having': 1.0, 'installed': 1.0, 'inspection': 1.0, 'because': 1.0, 'what': 1.0, 'suggested': 1.0, 'safety': 2.0, 'primo': 2.0, 'so': 1.0, 'viaggio': 1.0, 'don': 1.0, 'child': 1.0, 'proride': 2.0, 'meet': 1.0, 'love': 1.0, 'for': 2.0, 'fit': 1.0, 'britax': 2.0, 'called': 1.0, 'are': 2.0, 'stringent': 1.0, 'european': 1.0, '70': 1.0, 'well': 1.0, 'won': 1.0}
Word element => {'with': 1.0, 'pleased': 1.0, 'out': 1.0, 'and': 1.0, 'strollers': 1.0, 'two': 1.0, 'back': 1.0, 'in': 1.0, 'so': 1.0, 'the': 2.0, 'got': 1.0, 'sits': 1.0, 'highlander': 1.0, 'up': 2.0, 'easy': 3.0, 'that': 1.0, 'paloma': 1.0, 'from': 1.0, 'well': 2.0, 'likes': 1.0, 'daughter': 1.0, 'switching': 1.0, 'far': 1.0, 'made': 1.0, 'haven': 1.0, 'was': 1.0, 'thought': 1.0, 'had': 1.0, 'pp': 1.0, 'install': 1.0, 'passenger': 1.0, 'infant': 1.0, 'car': 1.0, 'this': 1.0, 'she': 1.0, 'it': 2.0, 'parent': 1.0, 'we': 5.0, 't': 1.0, 'a': 3.0, 'as': 1.0, 'our': 3.0, 'to': 4.0, 'seat': 2.0, 'any': 1.0, 'which': 1.0, 'toyota': 1.0, 'accidents': 1.0, 'or': 1.0, 'spit': 1.0, 'clean': 1.0, 'more': 1.0, 'is': 2.0, 'solid': 1.0, 'very': 2.0, 'construction': 1.0, 'product': 1.0, 'love': 1.0, 'fit': 1.0, 'adjust': 1.0, 'friendly': 1.0, 'purchase': 1.0, '2011': 1.0, 'have': 2.0, 'snug': 1.0}
Word element => {'car': 2.0, 'booster': 1.0, 'a': 1.0, 'needs': 1.0, 'until': 1.0, 'use': 1.0, 'to': 1.0, 'she': 2.0, 'home': 1.0, 'seats': 1.0, 'came': 1.0, 'daughter': 1.0, 'our': 3.0, 'they': 1.0, 'used': 1.0, 'hospital': 1.0, 'of': 2.0, '6': 1.0, 'for': 2.0, 'love': 2.0, 'all': 1.0, 'have': 1.0, 'carseats': 1.0, 'cars': 1.0, 'we': 3.0, 'get': 1.0, 'and': 2.0, 'from': 1.0, 'day': 1.0, 'very': 1.0, 'quality': 1.0, 'are': 1.0, 'them': 2.0, 'made': 1.0, 'these': 1.0, 'nicely': 1.0, 'the': 3.0, 'll': 1.0, 'material': 1.0, 'it': 1.0, 'with': 1.0, 'first': 1.0}
Word element => {'step': 1.0, 'not': 1.0, 'next': 1.0, 'is': 2.0, 'to': 1.0, 'got': 1.0, 'for': 3.0, 'the': 1.0, 'my': 1.0, 'this': 1.0, 'grandson': 1.0, 'it': 3.0, 's': 1.0, 'up': 1.0, 'infants': 1.0, 'and': 1.0, 'very': 1.0, 'comfortable': 1.0, 'use': 1.0, 'easy': 1.0}
Word element => {'them': 1.0, 'buckle': 1.0, 'quality': 3.0, 'higher': 1.0, 'about': 2.0, 'thing': 1.0, 'overall': 1.0, 'head': 1.0, 'only': 1.0, 'prefer': 1.0, 'end': 1.0, 'that': 2.0, 'daughter': 2.0, 'husband': 1.0, 'considering': 1.0, 'more': 3.0, 'it': 5.0, 'hardware': 1.0, 'think': 1.0, 'on': 1.0, 'her': 1.0, 'expensive': 1.0, 'for': 4.0, 'both': 2.0, 'little': 1.0, 'convertible': 2.0, 'like': 2.0, 'which': 1.0, 'peg': 6.0, 'of': 3.0, 'the': 15.0, 'travelling': 1.0, 'and': 9.0, 'particularly': 1.0, 'seats': 2.0, 'perego': 6.0, 'bought': 2.0, 'one': 2.0, 'another': 1.0, 'i': 7.0, 'otherwise': 1.0, 'comfortable': 1.0, 'get': 1.0, 'clek': 1.0, 'makes': 1.0, 's': 3.0, 'a': 4.0, 'high': 3.0, 'to': 4.0, 'going': 1.0, 'foonf': 4.0, 'incidentally': 1.0, '60': 1.0, 'was': 1.0, 'doesn': 1.0, 'recommend': 1.0, 'is': 6.0, 'at': 1.0, 'feel': 1.0, 'flimsy': 1.0, 'mine': 1.0, 'chest': 1.0, 'hard': 1.0, 'with': 1.0, 't': 1.0, 'strange': 1.0, 'what': 1.0, 'audi': 1.0, 'carseats': 1.0, 'super': 1.0, 'have': 1.0, 'car': 3.0, 'support': 1.0, 'these': 1.0, 'does': 1.0, 'need': 1.0, 'hand': 1.0, 'buy': 1.0, 'parents': 1.0, 'returned': 1.0, 'way': 1.0, 'am': 1.0, 'beautiful': 1.0, 'getting': 1.0, 'easier': 1.0, 'right': 1.0, 'away': 1.0, 'are': 1.0, 'heavy': 1.0, 'undo': 1.0, 'substantial': 1.0, 'my': 4.0, 'me': 1.0, 'safer': 1.0, 'into': 1.0, 'riding': 1.0, 'seat': 1.0, 'in': 1.0}
Word element => {'works': 1.0, 'but': 1.0, 'if': 1.0, 'better': 1.0, 'great': 1.0, 'feel': 1.0, 'me': 1.0, 'and': 3.0, 'comfy': 1.0, 'make': 1.0, 'now': 1.0, 'was': 3.0, 'recline': 1.0, 'this': 1.0, 'like': 1.0, 'using': 1.0, 'it': 7.0, 'month': 1.0, 'also': 2.0, 'little': 2.0, 'rear': 1.0, 'is': 1.0, 'seat': 1.0, 'we': 2.0, 'a': 9.0, 'facing': 1.0, 'fit': 1.0, 'love': 1.0, 'for': 3.0, 'grandparents': 1.0, 'about': 1.0, 'cobalt': 1.0, 'have': 2.0, 'deeper': 2.0, 'britax': 1.0, 'marathon': 1.0, 'with': 1.0, 'cushioning': 1.0, 'the': 2.0, 'quite': 1.0, 'adequate': 1.0, 'been': 1.0, 'installation': 1.0, 'ride': 1.0, 'bit': 2.0, 'so': 1.0, 'would': 2.0, 've': 1.0, 'breeze': 1.0, 'has': 1.0, 'feature': 1.0, 'i': 2.0, 'concerned': 1.0, 'how': 1.0}
Word element => {'but': 1.0, 'holder': 1.0, 'cup': 1.0, 'rest': 1.0, 'bulky': 1.0, 'feels': 1.0, 'did': 1.0, 'have': 2.0, 'falls': 1.0, 'when': 1.0, 'not': 2.0, 'head': 1.0, 'been': 1.0, 'that': 1.0, 'also': 1.0, 'corolla': 1.0, 'window': 1.0, 'side': 1.0, 'of': 3.0, 'see': 1.0, 'over': 1.0, 'up': 1.0, 'got': 1.0, 'sits': 1.0, 'would': 1.0, 'new': 1.0, 'wanted': 1.0, 'toyota': 1.0, 'like': 3.0, 'upright': 1.0, 'sit': 1.0, 'convertibles': 1.0, 'good': 2.0, 'her': 2.0, 'now': 1.0, 'who': 1.0, 'is': 2.0, 'too': 1.0, 'tall': 2.0, 'and': 5.0, 'nice': 1.0, '1': 1.0, '18lbs': 1.0, 'my': 1.0, 'happy': 1.0, 'i': 5.0, 'old': 1.0, 'just': 1.0, 'our': 1.0, 'to': 3.0, 'seat': 2.0, 'seeing': 1.0, 'does': 1.0, '31': 1.0, 'because': 1.0, '30': 1.0, 'this': 4.0, 'with': 3.0, 'in': 1.0, 'love': 1.0, 'for': 1.0, 'hang': 1.0, 'bought': 1.0, 'one': 3.0, 'previously': 1.0, 'year': 1.0, 'inches': 1.0, 'figure': 1.0, 'very': 1.0, 'looks': 1.0, 'she': 8.0, 'it': 4.0, 'disliked': 1.0, 'daughter': 1.0, 'was': 1.0, 'chicco': 2.0, 'weighs': 1.0, 'keyfit': 1.0, 'hated': 1.0, '2003': 1.0, 'much': 1.0, 'how': 1.0, 'asleep': 1.0, 'the': 5.0, 'a': 1.0, 'could': 1.0, 'proud': 1.0, 't': 1.0, 'car': 1.0, 'infant': 1.0, 'out': 1.0, 'wasn': 1.0, 'able': 1.0}
Word element => {'follow': 1.0, 'hard': 1.0, 'negative': 1.0, 'climate': 1.0, 'warmer': 1.0, 'away': 1.0, 'cool': 1.0, 'like': 1.0, 'are': 2.0, 'wet': 1.0, 'what': 1.0, 'overboard': 1.0, 'read': 1.0, 'little': 1.0, 'nice': 1.0, 'wonderful': 1.0, 'adjust': 1.0, 'they': 1.0, 'sturdy': 1.0, 'see': 1.0, 'seems': 2.0, 'clip': 1.0, 'chest': 1.0, 'something': 1.0, 'straps': 1.0, 'harness': 1.0, 'quality': 1.0, 'sip': 1.0, 'impressed': 1.0, 'box': 1.0, 'leather': 2.0, 'stores': 1.0, 'seen': 1.0, 'have': 3.0, 'compared': 1.0, 'nicely': 1.0, '2': 1.0, 'inch': 1.0, 'doesnt': 1.0, 'surprised': 1.0, 'any': 1.0, 'do': 1.0, 'would': 3.0, 'world': 1.0, 'written': 1.0, 'there': 1.0, 'safety': 4.0, 'carseats': 2.0, 'tested': 1.0, 'concern': 1.0, 'on': 2.0, '3': 2.0, 'and': 6.0, 'across': 1.0, 'features': 1.0, 'importantly': 1.0, 'moisture': 1.0, 'a': 5.0, 'we': 1.0, 'could': 2.0, 'less': 1.0, 'wick': 1.0, 'installing': 1.0, 'by': 1.0, 'our': 3.0, 'to': 8.0, 'fit': 4.0, 'fabric': 4.0, 'for': 3.0, 'far': 1.0, 'love': 1.0, 'similar': 2.0, 'installed': 1.0, 'carseat': 4.0, 'budge': 1.0, 'main': 1.0, 'describe': 1.0, 'money': 1.0, 'but': 1.0, 'about': 1.0, 'no': 1.0, 'somewhere': 1.0, 'after': 1.0, 'looking': 1.0, 'sent': 1.0, 'was': 8.0, 'better': 1.0, 'backseat': 1.0, 'had': 3.0, 'seat': 2.0, 'in': 3.0, 'well': 1.0, 'i': 13.0, 'available': 1.0, 'originially': 1.0, 'however': 1.0, 'easy': 2.0, 'if': 1.0, 'every': 1.0, 'only': 1.0, 'amazing': 1.0, 'been': 1.0, 'into': 1.0, 'ordered': 1.0, 'out': 1.0, 'absolutely': 1.0, 'suits': 1.0, 'best': 1.0, 'arrival': 2.0, 'proride': 1.0, 'this': 8.0, 'with': 2.0, 'allows': 1.0, 'thought': 1.0, 'it': 6.0, 'say': 1.0, 'at': 3.0, 'is': 8.0, 'more': 1.0, 'recaro': 1.0, 'ford': 1.0, 'slightly': 1.0, 'has': 1.0, 'safest': 1.0, 'decided': 2.0, 'huge': 1.0, 'must': 1.0, 'not': 6.0, 'able': 1.0, 'be': 3.0, 'correctly': 1.0, 'vehicle': 2.0, 'reasons': 1.0, 'my': 2.0, 'back': 1.0, 'too': 1.0, 'one': 1.0, 'try': 1.0, 'slim': 1.0, 'peg': 1.0, 'perego': 1.0, 'system': 1.0, 'order': 1.0, 'pp': 1.0, 'edge': 1.0, '1': 1.0, 'harnessing': 1.0, 'just': 2.0, 'following': 1.0, 'design': 1.0, 'other': 1.0, 'all': 2.0, 'an': 2.0, 'directions': 1.0, 'secure': 1.0, 'get': 1.0, 'trouble': 1.0, 'which': 1.0, 'made': 3.0, 'good': 3.0, 'rf': 1.0, 'middle': 1.0, 'the': 18.0, 'of': 5.0, 'because': 1.0, 'that': 4.0, 'obtrusive': 1.0, 'easily': 1.0, 'these': 1.0, 'crossover': 1.0}
Word element => {'on': 1.0, 'holders': 1.0, 'daughter': 1.0, 'car': 1.0, 'if': 1.0, 'convertible': 1.0, 'a': 2.0, 'my': 1.0, 're': 1.0, 'don': 1.0, 'seat': 1.0, 'searched': 1.0, 'while': 1.0, 'especially': 1.0, 'i': 1.0, 'you': 1.0, 'hesitating': 1.0, 'side': 1.0, 'is': 1.0, 'the': 2.0, 't': 1.0, 'seatbelt': 1.0, 'it': 2.0, 'for': 3.0, 'love': 1.0, 'worth': 1.0}
Word element => {'is': 1.0, 'removable': 1.0, '100': 1.0, 'would': 1.0, 'child': 1.0, 'awesome': 1.0, 'd': 1.0, 'and': 2.0, 'booster': 1.0, 'the': 1.0, 'my': 1.0, 'an': 1.0, 'recommend': 1.0, 'seat': 1.0, 'it': 3.0, 'love': 1.0, 'does': 1.0, 'excellent': 1.0, 'car': 1.0, 'so': 1.0}
Word element => {'money': 1.0, 'your': 1.0, 'need': 1.0, 'feel': 1.0, 'and': 1.0, 'never': 1.0, 'will': 1.0, 'i': 2.0, 'once': 2.0, 'not': 1.0, 'me': 1.0, 'that': 1.0, 'parts': 1.0, 'they': 2.0, 'because': 1.0, 'one': 1.0, 'good': 1.0, 'service': 1.0, 'peg': 3.0, 'given': 1.0, 'problem': 1.0, 'amazonnot': 1.0, 'google': 1.0, 'products': 1.0, 'ever': 2.0, 'buy': 3.0, 'customer': 1.0, 'expect': 1.0, 'easily': 1.0, 'you': 4.0, 'if': 3.0, 'want': 1.0, 'refused': 1.0, 'know': 1.0, 'just': 1.0, 'them': 1.0, 'started': 1.0, 'younger': 1.0, 'have': 2.0, 'able': 1.0, 'this': 3.0, 'how': 1.0, 'stands': 1.0, 'in': 1.0, 'fooled': 1.0, 'to': 5.0, 'do': 2.0, 'its': 1.0, 'or': 1.0, 'behind': 1.0, 'a': 3.0, 't': 1.0, 'the': 2.0, 'perego': 3.0, 'be': 1.0, 'don': 1.0, 'replacement': 3.0, 'cover': 1.0, 'from': 1.0, 'part': 1.0, 'wear': 1.0, 'tipped': 1.0, 'product': 3.0, 'expensive': 1.0, 'for': 3.0, 'model': 1.0, 'has': 1.0, 'manufacture': 1.0, 'another': 1.0, 'company': 3.0, 'my': 1.0, 'relatives': 1.0, 'provide': 1.0, 'got': 1.0, 'kid': 1.0, 'dumpster': 1.0, 'after': 1.0}
Word element => {'off': 1.0, 'them': 1.0, 'immediately': 1.0, 'were': 1.0, 'unsafe': 1.0, 'side': 2.0, 'bounce': 1.0, 'would': 1.0, 'over': 1.0, 'when': 1.0, 'wobbles': 1.0, 'head': 2.0, 'out': 2.0, 'pushing': 1.0, 'belly': 1.0, 'with': 1.0, 'figured': 1.0, 'car': 2.0, 'huge': 1.0, 'bought': 1.0, 'usually': 1.0, 'in': 2.0, 'shoulder': 1.0, 'but': 2.0, 'put': 1.0, 'is': 1.0, 'wonderful': 1.0, 'speech': 1.0, 'i': 3.0, 'so': 1.0, 'back': 2.0, 'needed': 1.0, 'previous': 1.0, 'him': 1.0, 'sit': 1.0, 'upright': 1.0, 'since': 1.0, 'strap': 1.0, 'are': 1.0, 'reviews': 2.0, 'the': 8.0, 'moving': 1.0, 'reason': 1.0, 'never': 1.0, 'positioned': 1.0, 'second': 1.0, 'write': 1.0, 'his': 4.0, 'pads': 1.0, 'seat': 4.0, 'all': 1.0, 'to': 4.0, 'had': 1.0, 'bumps': 1.0, 'was': 1.0, 'unfortunately': 1.0, 'fact': 1.0, 'my': 2.0, 'son': 2.0, 'hated': 1.0, 'how': 1.0, 'he': 3.0, 'felt': 2.0, 'it': 2.0, 'cried': 1.0, 'we': 1.0, 'that': 2.0, 'loves': 1.0, 'rides': 1.0, 'and': 5.0, 'too': 1.0, 'pull': 1.0, 'stiff': 1.0}
Word element => {'of': 1.0, 'like': 1.0, 'wih': 1.0, 'matches': 1.0, 'looks': 1.0, 'it': 3.0, 'leather': 1.0, 'licorice': 1.0, 'also': 1.0, 'did': 1.0, 'think': 1.0, 'had': 1.0, 'works': 1.0, 'its': 2.0, 'was': 1.0, 'recommend': 1.0, 'not': 1.0, '6': 1.0, 'interior': 1.0, 'best': 3.0, 'big': 1.0, 'car': 6.0, 'color': 1.0, 'bought': 1.0, 'months': 1.0, 'one': 1.0, 'for': 3.0, 'i': 7.0, 'perfect': 2.0, 'this': 5.0, 'have': 1.0, 'to': 1.0, 'seat': 5.0, 'all': 1.0, 'might': 1.0, 'we': 1.0, 'confortable': 1.0, 'a': 3.0, 'the': 5.0, 'weekend': 1.0, 'be': 2.0, 'cheapest': 1.0, 'tall': 1.0, 'and': 6.0, 'hope': 1.0, 'just': 1.0, 'worried': 1.0, 'about': 1.0, 'baby': 1.0, 'my': 3.0, 'long': 1.0, 'lot': 1.0, 'trips': 1.0, 'travel': 1.0, 'exceed': 1.0, 'totally': 1.0, 'but': 1.0, 'is': 1.0, 'around': 1.0, 'part': 1.0, 'looked': 1.0, 'while': 1.0, 'expectations': 1.0, 'find': 1.0}
Word element => {'price': 1.0, 'worth': 1.0, 'quality': 1.0, 'forward': 1.0, 'facing': 2.0, 'both': 1.0, 'in': 1.0, 'fits': 1.0, 'perego': 1.0, 'products': 1.0, 'i': 2.0, 'wonderful': 1.0, 'have': 1.0, 'peg': 1.0, 'which': 1.0, 'the': 3.0, 'small': 1.0, 'love': 1.0, 'seat': 2.0, 'car': 3.0, 'and': 2.0, 'it': 1.0, 'this': 1.0, 'thrilled': 1.0, 'was': 1.0, 'to': 1.0, 'convertible': 1.0, 'well': 2.0, 'see': 1.0, 'a': 2.0, 'two': 1.0, 'rear': 1.0, 'is': 2.0, 'door': 1.0}
Word element => {'it': 1.0, 'happy': 1.0, 'good': 2.0, 'purchased': 1.0, 'as': 1.0, 'very': 1.0, 'quality': 1.0, 'price': 1.0, 'promptly': 1.0, 'arrived': 1.0, 'daughter': 1.0, 'for': 1.0, 'my': 2.0, 'granddaughter': 1.0, 'with': 1.0, 'is': 2.0, 'she': 1.0}
Word element => {'china': 1.0, 'not': 1.0, 'and': 1.0, 'italy': 1.0, 's': 1.0, 'it': 3.0, 'love': 2.0, 'this': 1.0, 'car': 1.0, 'to': 1.0, 'be': 1.0, 'that': 1.0, 'best': 1.0, 'in': 3.0, 'market': 1.0, 'made': 1.0, 'the': 2.0, 'has': 1.0, 'seat': 1.0, 'we': 2.0}
Word element => {'car': 1.0, 'enjoys': 1.0, 'now': 1.0, 'very': 1.0, 'is': 1.0, 'importantly': 1.0, 'built': 1.0, 'comfortable': 1.0, 'install': 1.0, 'easy': 1.0, 'super': 1.0, 'hot': 1.0, 'e': 1.0, 'better': 1.0, 'of': 1.0, 'necessary': 1.0, 'rethreading': 1.0, 'no': 1.0, 'pain': 1.0, 'than': 1.0, 'because': 1.0, 'short': 1.0, 'materials': 1.0, 'up': 1.0, 'adjusting': 1.0, 'buying': 1.0, 'to': 5.0, 'ended': 1.0, 'quality': 1.0, 'baby': 3.0, 'on': 2.0, 'hugs': 1.0, 'most': 1.0, 'but': 1.0, 'uncomfortable': 1.0, 'it': 1.0, 'looks': 1.0, 'month': 1.0, 'cushiony': 1.0, 'went': 1.0, 'visibly': 1.0, 'my': 4.0, 'old': 1.0, 'buy': 1.0, 'sleeker': 1.0, '4': 1.0, 'i': 3.0, 'was': 1.0, 'store': 1.0, 'rides': 1.0, 'ridiculously': 1.0, 'the': 13.0, 'and': 6.0, 'perego': 2.0, 'perfectly': 1.0, 'a': 1.0, 'peg': 3.0, 'hated': 1.0, 'brilliant': 1.0, 'straps': 2.0, 'way': 1.0, 'adjust': 2.0, 'extremely': 1.0, 'for': 1.0, 'fit': 1.0, 'operate': 1.0, 'nicer': 1.0, 'britax': 4.0, 'pavilion': 1.0, 'are': 3.0, 'smoother': 1.0, 'which': 1.0, 'also': 2.0, 'instead': 1.0, 'headrest': 1.0, 'fantastic': 1.0, 'when': 1.0, 'much': 1.0, 'ie': 1.0}
Word element => {'misleading': 1.0, 'little': 1.0, 'think': 1.0, '43': 1.0, 'maximum': 1.0, 'can': 1.0, 'it': 3.0, 'he': 1.0, 'with': 1.0, 'specs': 1.0, 'though': 1.0, 'much': 1.0, 'for': 1.0, 'the': 2.0, 'my': 1.0, 'not': 1.0, 'almost': 1.0, 'sturdy': 1.0, 'use': 1.0, '34': 1.0, 'however': 1.0, 'withstand': 1.0, '45': 1.0, 'simple': 1.0, 'lb': 1.0, 'is': 1.0, 'son': 1.0, 'tall': 3.0, 'and': 1.0, 'too': 1.0, '65': 1.0, 'i': 2.0, 'pounds': 1.0, 'be': 1.0, 'safe': 1.0, 'seat': 1.0, 'to': 2.0, 's': 2.0, 't': 1.0, 'a': 3.0, 'enough': 1.0, 'weigh': 1.0, 'that': 1.0, 'wouldn': 1.0, 'perhaps': 1.0, 'height': 1.0, 'child': 1.0, 'missed': 1.0, 'in': 1.0, 'if': 1.0}
Word element => {'my': 1.0, 'all': 1.0, 'spacious': 1.0, 'small': 1.0, 'to': 1.0, 'not': 1.0, 'as': 2.0, 'very': 1.0, 'zipper': 1.0, 'magnetic': 1.0, 'the': 2.0, 'that': 1.0, 'for': 1.0, 'love': 1.0, 'and': 2.0, 'ergobaby': 1.0, 'purse': 1.0, 'handy': 1.0, 'instead': 1.0, 'i': 3.0, 'a': 3.0, 'needed': 1.0, 'size': 1.0, 'like': 1.0, 'engages': 1.0, 'snap': 1.0, 'could': 1.0, 'carrier': 1.0, 'preferred': 1.0, 'stuff': 1.0, 'is': 2.0}
Word element => {'find': 1.0, 'appears': 1.0, 'head': 1.0, 'like': 1.0, 'support': 1.0, 'remove': 1.0, 'clips': 1.0, 'my': 2.0, 'comfortable': 1.0, 'tight': 1.0, 'and': 2.0, 'get': 1.0, 'but': 1.0, 'in': 1.0, 'perfect': 1.0, 'to': 4.0, 'son': 1.0, 'as': 1.0, 'very': 1.0, 'a': 2.0, 'spare': 1.0, 'is': 3.0, 'next': 1.0, 'difficult': 2.0, 'seat': 3.0, 'car': 2.0, 'other': 1.0, 'make': 1.0, 'enough': 1.0, 'system': 1.0, 'feels': 1.0, 'fit': 1.0, 'our': 1.0, 'compared': 1.0, 'which': 1.0, 'latch': 1.0, 'chicco': 1.0, 'this': 1.0, 'it': 3.0, 'i': 1.0, 'cheap': 1.0, 'the': 4.0}
Word element => {'are': 1.0, 'fine': 1.0, 'with': 1.0, 'sit': 1.0, 'comfortably': 1.0, 'both': 1.0, 'shorter': 1.0, 'don': 1.0, 'driver': 1.0, 'person': 1.0, 'only': 1.0, 'placed': 1.0, 'generally': 1.0, 'graco': 1.0, 'plenty': 1.0, 'have': 2.0, 'still': 1.0, 'room': 1.0, '5': 1.0, 'is': 1.0, 'husband': 2.0, 'am': 1.0, 'backseat': 1.0, 'was': 2.0, 'out': 1.0, 'carseat': 4.0, 'online': 1.0, 'found': 1.0, 'this': 2.0, 'reviewed': 1.0, 'old': 1.0, 'tall': 1.0, 'and': 6.0, 'seats': 2.0, 'it': 3.0, 'month': 1.0, 'boy': 1.0, '6': 2.0, 'he': 1.0, 'adjust': 1.0, 'people': 1.0, 'many': 1.0, 'but': 1.0, 'identical': 1.0, 'passenger': 1.0, 'car': 2.0, 'product': 1.0, 'where': 1.0, 'fit': 1.0, 'for': 2.0, 'now': 1.0, 'fits': 2.0, 'my': 3.0, '8': 1.0, 'the': 11.0, 'him': 1.0, 'easy': 2.0, 'big': 1.0, 'install': 1.0, 'great': 2.0, 'mention': 1.0, 'need': 1.0, 'think': 1.0, 'on': 1.0, '3': 1.0, 'make': 1.0, 'that': 2.0, 'to': 4.0, 'our': 2.0, 'in': 5.0, 'back': 2.0, 'toyota': 1.0, 'corolla': 4.0, 'special': 1.0, 'honda': 2.0, 'pilot': 1.0, 'could': 1.0, 't': 1.0, 'going': 1.0, 'a': 1.0, 's': 3.0, 'we': 4.0, 'one': 1.0, 'bought': 1.0, 'i': 5.0, 'two': 1.0, 'of': 3.0, 'once': 1.0}
Word element => {'them': 1.0, 'used': 1.0, 'really': 1.0, 'although': 1.0, 'trips': 1.0, 'handy': 1.0, 'install': 1.0, 'much': 2.0, 'adjusted': 1.0, 'be': 2.0, 'price': 1.0, 'it': 6.0, '70': 1.0, 'closures': 1.0, 't': 1.0, 'might': 1.0, 'a': 3.0, 'we': 2.0, 'upper': 1.0, 'and': 3.0, 'have': 2.0, 'boulevard': 3.0, 'car': 2.0, 'safety': 1.0, 'look': 1.0, 'our': 2.0, 'to': 4.0, 'bought': 1.0, 'one': 1.0, 'yet': 1.0, 'cup': 1.0, 'alternatives': 1.0, 'good': 3.0, 'quite': 1.0, 'has': 1.0, 'of': 1.0, 'i': 1.0, 'ratings': 1.0, 'high': 1.0, 'haven': 1.0, 'weight': 1.0, 'limit': 1.0, 'making': 1.0, 'lower': 1.0, 'difficult': 2.0, 'pretty': 1.0, 'the': 6.0, 'deal': 1.0, 'while': 1.0, 'compared': 1.0, 'more': 1.0, 'is': 2.0, 'holders': 1.0, 'this': 2.0, 'release': 1.0, 'harder': 1.0, 'use': 1.0, 'does': 1.0, 'installed': 1.0, 'than': 2.0, 'britax': 1.0, 'are': 1.0, 'for': 3.0, 'grandparents': 1.0, 'actually': 1.0, 'which': 1.0, 'like': 1.0, 'noticeably': 1.0, 'cannot': 1.0}
Word element => {'ours': 1.0, 'without': 1.0, 'the': 4.0, 'but': 2.0, 'sitting': 1.0, 'away': 1.0, 'and': 4.0, 'head': 1.0, 'came': 1.0, 'might': 1.0, 'even': 1.0, 'hit': 2.0, 'were': 2.0, 'ride': 1.0, 'accident': 1.0, 'protected': 1.0, 'easy': 1.0, 'my': 5.0, 'or': 1.0, 'by': 1.0, 'large': 1.0, 'able': 1.0, 'when': 2.0, '11': 1.0, 'graco': 1.0, 'actually': 1.0, 'such': 2.0, 'for': 4.0, 'fit': 2.0, 'to': 4.0, 'is': 3.0, 'bruise': 1.0, 'car': 4.0, 'love': 2.0, 'he': 2.0, 'adjust': 1.0, 'with': 2.0, 'this': 2.0, 'dump': 1.0, 'totaled': 1.0, 'straps': 1.0, 'seat': 4.0, 'in': 5.0, 've': 1.0, 'besides': 1.0, 'we': 5.0, 'then': 1.0, 'purchased': 1.0, 'had': 1.0, 'was': 1.0, 'one': 1.0, 'months': 2.0, 'decided': 1.0, 'long': 1.0, 'on': 1.0, 'truck': 1.0, 'baby': 2.0, 'from': 2.0, 'bump': 1.0, 'show': 1.0, 'second': 1.0, 'immediately': 1.0, '4': 1.0, 'replace': 1.0, 'winter': 1.0, 'same': 1.0, 'being': 1.0, 'that': 2.0, 'loves': 1.0, 'child': 2.0, 'so': 2.0, 'time': 1.0, 'i': 2.0, 'well': 2.0, 'safe': 1.0, 'will': 1.0, 'seems': 1.0, 'us': 1.0, 'also': 1.0, 'be': 1.0, 'it': 6.0, 'him': 1.0, 'really': 2.0, 'comfortable': 1.0, 'working': 1.0, '65': 1.0, 'are': 1.0, 'which': 1.0, 'old': 2.0, 'wonderful': 1.0, 'behind': 1.0, 'about': 1.0, 'coats': 1.0, 'rather': 1.0, 'not': 1.0, 'a': 6.0, 'small': 1.0, 'vehicles': 1.0}
Word element => {'tried': 1.0, 'prius': 1.0, 'can': 1.0, 'vehicle': 1.0, 'fitting': 1.0, 'with': 1.0, 'and': 3.0, 'me': 1.0, 'up': 1.0, 'i': 3.0, 'how': 1.0, 'tech': 1.0, 'showed': 1.0, 'the': 5.0, 'had': 1.0, 'recommend': 1.0, 'was': 1.0, 'this': 1.0, 'it': 7.0, 'wouldn': 1.0, 'babies': 1.0, 'clearance': 1.0, 'for': 1.0, 'love': 1.0, 'messed': 1.0, 'get': 1.0, 'easy': 1.0, 'comfortable': 1.0, 'install': 1.0, 'seats': 1.0, 'imagine': 1.0, 'once': 1.0, 'some': 1.0, 'car': 2.0, 'passenger': 1.0, 'anyone': 1.0, 'be': 1.0, 'though': 1.0, 'riding': 1.0, 'in': 3.0, 'is': 1.0, 't': 3.0, 'we': 2.0, 'a': 2.0, 'little': 1.0, 'large': 1.0, 'seem': 1.0, 'required': 1.0, 'to': 3.0, 'seat': 4.0, 'our': 2.0, 'honda': 1.0, 'pilot': 1.0, 'haven': 1.0, 'appropriate': 1.0, 'between': 1.0, 'smaller': 1.0, 'adjustments': 1.0, 'so': 1.0, 'baby': 1.0, 'driver': 1.0}
Word element => {'awesome': 1.0, 'an': 1.0, 'purchase': 1.0, 'comfort': 1.0, 'about': 1.0, 'so': 1.0, 'hard': 1.0, 'made': 1.0, 'poorly': 1.0, 'very': 1.0, 'are': 1.0, 'seats': 1.0, 'one': 1.0, 'for': 4.0, 'love': 1.0, 'it': 4.0, 'this': 4.0, 'first': 2.0, 'other': 1.0, 'target': 1.0, 'purchased': 1.0, 'great': 1.0, 'the': 2.0, '77': 1.0, 'car': 4.0, 'and': 6.0, 'comfy': 1.0, 'bauer': 1.0, 's': 1.0, 'a': 1.0, 'we': 2.0, 'want': 1.0, 'if': 1.0, 'same': 2.0, 'just': 1.0, 'brand': 1.0, 'all': 1.0, 'as': 2.0, 'seat': 4.0, 'our': 2.0, 'child': 3.0, 'up': 1.0, 'think': 1.0, 'your': 2.0, 'on': 2.0, 'amazon': 1.0, 'is': 2.0, 'regular': 1.0, 'picked': 1.0, 'long': 1.0, 'at': 1.0, 'trips': 1.0, 'outings': 1.0, 'much': 2.0, 'better': 1.0, 'quality': 1.0, 'will': 1.0, 'brands': 1.0, 'than': 1.0, 'was': 1.0, 'eddie': 1.0, 'have': 1.0, 'evenflo': 1.0, 'got': 1.0, 'safety': 1.0, 'local': 1.0, 'you': 2.0}
Word element => {'toys': 1.0, 'water': 1.0, 'or': 1.0, 'need': 1.0, 'makes': 1.0, 'myself': 1.0, 'see': 1.0, 'forward': 1.0, 'tend': 1.0, 'riding': 1.0, 'front': 1.0, 'be': 1.0, 'anyways': 1.0, 'weight': 1.0, 'for': 1.0, 'okay': 1.0, '13': 1.0, 'wise': 1.0, 'these': 1.0, 'purchased': 1.0, 'when': 1.0, 'easier': 1.0, '30': 1.0, 'can': 1.0, 'so': 2.0, 'smaller': 1.0, 'vehicle': 1.0, 'my': 5.0, 'have': 2.0, 'wobbled': 1.0, 'a': 6.0, 't': 2.0, 'month': 1.0, 'it': 4.0, 'several': 1.0, 'about': 1.0, 'seem': 1.0, 'airport': 1.0, 'travel': 2.0, 'months': 2.0, 'bought': 1.0, 'rides': 2.0, 'online': 1.0, 'currently': 1.0, 'to': 7.0, 'as': 3.0, 'more': 1.0, 'husband': 2.0, 'overall': 2.0, 'its': 1.0, 'only': 2.0, 'this': 3.0, 'jeep': 1.0, 'patriot': 1.0, 'car': 7.0, 'fellow': 1.0, 'near': 1.0, 'on': 2.0, 'moms': 1.0, 'really': 3.0, 'is': 4.0, '2011': 1.0, 'old': 2.0, 'i': 4.0, 'well': 2.0, 'from': 1.0, 'the': 7.0, '16': 1.0, 'then': 1.0, 'we': 4.0, 'reviews': 1.0, 'they': 5.0, 'times': 1.0, 'are': 2.0, 'boys': 3.0, 'with': 1.0, 'mind': 1.0, 'and': 7.0, 'trip': 1.0, 'based': 1.0, 'which': 2.0, 'an': 1.0, 'hour': 1.0, 'also': 1.0, 'away': 1.0, 'taking': 1.0, 'don': 1.0, 'great': 1.0, 'lengthy': 1.0, 'lot': 1.0, 'one': 1.0, 'too': 1.0, 'rear': 2.0, 'very': 1.0, 'seat': 3.0, 'in': 2.0, 'always': 1.0, 'has': 1.0, 'them': 3.0, 'going': 2.0, 'complaint': 1.0, 'easily': 1.0, 'that': 1.0, 'had': 1.0, 'real': 1.0, 'problem': 1.0, 'installing': 1.0, 'facing': 4.0, 'lbs': 1.0, 'was': 3.0, 'main': 1.0, 'just': 1.0, 'seats': 3.0, 'chose': 1.0, 'but': 1.0, 'wouldn': 1.0, 'if': 1.0, 'enjoy': 4.0, 'stay': 1.0, 'nap': 1.0, 'stable': 1.0, 'position': 1.0, 'suv': 1.0, 'unsafe': 1.0, 'reason': 1.0, 'looking': 1.0, 'snacks': 1.0, 'close': 1.0, 'luckily': 1.0, 'were': 1.0}
Word element => {'than': 1.0, 'way': 1.0, 'out': 1.0, 'figured': 1.0, 'haven': 1.0, 'about': 1.0, 'were': 1.0, 'your': 1.0, 'anchors': 1.0, 'attach': 1.0, 'right': 1.0, 'green': 1.0, 'when': 1.0, 'angle': 1.0, 'proper': 1.0, 'you': 1.0, 'has': 4.0, 'since': 2.0, 'for': 4.0, 'yet': 1.0, 'love': 2.0, 'snacks': 1.0, 'clips': 1.0, 'so': 1.0, 'although': 1.0, 'is': 6.0, 'great': 2.0, 'comfortable': 1.0, 'place': 2.0, 'be': 3.0, 'by': 1.0, 'safest': 1.0, 'daughter': 3.0, 'safety': 1.0, 'clean': 1.0, 'car': 10.0, 'little': 1.0, 'wanted': 1.0, 'and': 9.0, 'middle': 1.0, 'serious': 1.0, 's': 1.0, 'fine': 1.0, 'we': 1.0, 'fit': 1.0, 't': 2.0, 'bottle': 1.0, 'this': 5.0, 'holders': 1.0, 'with': 2.0, 'only': 1.0, 'accident': 1.0, 'know': 1.0, 'bit': 1.0, 'easy': 3.0, 'me': 1.0, 'my': 5.0, 'very': 5.0, 'being': 1.0, 'backseat': 1.0, 'was': 3.0, 'actually': 1.0, 'order': 1.0, 'marble': 1.0, 'need': 1.0, 'falling': 1.0, 'a': 6.0, 'small': 1.0, 'after': 1.0, 'to': 9.0, 'i': 4.0, 'the': 18.0, 'of': 3.0, 'new': 2.0, 'position': 1.0, 'seat': 7.0, 'in': 9.0, 'also': 2.0, 'seems': 1.0, 'concerned': 1.0, 'that': 4.0, 'riding': 1.0, 'into': 1.0, 'anyways': 1.0, 'thing': 1.0, '2': 1.0, 'cup': 1.0, 'isn': 1.0, 'buckles': 1.0, 'lot': 1.0, 'one': 1.0, 'neck': 1.0, 'uncomfortable': 1.0, 'takes': 1.0, 'up': 1.0, 'sippy': 1.0, 'use': 2.0, 'her': 2.0, 'price': 1.0, 'design': 1.0, 'its': 2.0, 'comfy': 1.0, 'long': 1.0, 'on': 2.0, 'rides': 1.0, 'let': 1.0, 'no': 1.0, 'problem': 1.0, 'it': 1.0, 'head': 1.0, 'cushion': 1.0, 'twisted': 1.0, 'other': 2.0, 'an': 2.0, 'cute': 1.0, 'are': 1.0, 'buckle': 1.0, 'sturdy': 1.0, 'there': 1.0, 'asleep': 1.0, 'side': 1.0}
Word element => {'standard': 1.0, 'holders': 1.0, 'harness': 1.0, 'loosen': 1.0, 'convenient': 1.0, 'more': 1.0, 'times': 1.0, 'literally': 1.0, 'got': 1.0, 'front': 1.0, 'loosener': 1.0, 'tightener': 1.0, '1': 1.0, 'old': 1.0, 'between': 1.0, 'differences': 1.0, 'three': 1.0, 'like': 1.0, 'seems': 1.0, 'part': 1.0, 'much': 1.0, 'backward': 1.0, 'plastic': 1.0, 'two': 1.0, 'little': 1.0, 'behind': 1.0, 'about': 2.0, 'latch': 1.0, 'by': 1.0, 'aren': 1.0, 'has': 1.0, 'cars': 1.0, 'sexy': 1.0, 'strong': 1.0, 'with': 2.0, 'associated': 1.0, 'admit': 1.0, '2001': 1.0, 'similar': 1.0, 'installation': 1.0, 'installed': 1.0, 'unlucky': 1.0, 'later': 1.0, 'minutes': 2.0, 'head': 1.0, 'position': 1.0, 'adjust': 1.0, 'figured': 1.0, 's': 1.0, 'after': 1.0, 'out': 2.0, 'now': 2.0, 'figure': 1.0, 'sure': 3.0, 'check': 1.0, 'confusing': 1.0, 'extremely': 1.0, 'wise': 1.0, 'glance': 1.0, 'are': 2.0, 'bad': 1.0, 'first': 2.0, 'digress': 1.0, 'which': 1.0, 'good': 1.0, 'civic': 1.0, 'few': 1.0, 'this': 5.0, 'just': 3.0, 'seats': 3.0, 'also': 1.0, 'and': 8.0, 'in': 8.0, 'seat': 10.0, 'thousand': 1.0, 'word': 2.0, 'bit': 1.0, 'found': 2.0, 'inspected': 1.0, 'sedan': 1.0, 'was': 4.0, 'it': 4.0, 'how': 2.0, 'our': 4.0, 'stroller': 1.0, 'decision': 1.0, 'actually': 1.0, 'system': 2.0, 'probably': 3.0, 'be': 3.0, 'travel': 1.0, 'honda': 1.0, 'mix': 1.0, 'a': 7.0, 'fine': 1.0, 'we': 5.0, 'using': 2.0, 'defense': 1.0, 'belt': 1.0, 'rest': 1.0, 't': 2.0, 'again': 1.0, 'car': 10.0, 'have': 3.0, 'purchased': 1.0, 'reach': 1.0, 'than': 1.0, 'ball': 1.0, 'contained': 1.0, 'five': 1.0, 'given': 1.0, 'for': 3.0, 'months': 1.0, 'tons': 1.0, 'i': 12.0, 'forward': 1.0, 'not': 4.0, 'men': 1.0, 'man': 3.0, 'cup': 1.0, 'stores': 1.0, 'everything': 1.0, 'manual': 4.0, 'my': 3.0, 'having': 1.0, 'worked': 1.0, 'arrived': 1.0, 'trust': 1.0, 'of': 4.0, 'the': 25.0, 'comparable': 1.0, 'biggest': 1.0, 'only': 1.0, 'its': 1.0, 'she': 1.0, 'baby': 2.0, 'quality': 1.0, 'clips': 1.0, 'so': 1.0, 'leaning': 1.0, 'far': 1.0, 'when': 2.0, 'you': 1.0, 'brand': 1.0, 'makes': 1.0, 'experience': 1.0, 'that': 7.0, 'tighten': 1.0, 'were': 1.0, 'graco': 3.0, 'value': 1.0, 'stronger': 1.0, 'important': 2.0, 'design': 1.0, 'second': 1.0, 'went': 1.0, 'third': 1.0, 'but': 2.0, '2': 1.0, 'normally': 1.0, 'thing': 1.0, 'straps': 1.0, 'buy': 1.0, 'too': 1.0, 'one': 3.0, 'price': 1.0, 'most': 4.0, 'perhaps': 1.0, 'took': 1.0, 'basis': 1.0, 'even': 1.0, 'born': 1.0, 'various': 1.0, 'due': 1.0, 'attractive': 1.0, 'weakness': 1.0, 'to': 10.0, 'straight': 1.0, 'been': 1.0, 'instruction': 1.0, 'never': 1.0, 'some': 1.0, 'or': 2.0, 'healthier': 1.0, 'don': 1.0, 'seem': 1.0, 'at': 2.0, 'is': 5.0, 'noticed': 1.0, 'realize': 1.0, 'on': 2.0, 'would': 2.0, 'reading': 1.0, 'sexier': 1.0, 'argue': 1.0, 'an': 1.0, 'wiser': 1.0}
Word element => {'wipe': 1.0, 'wet': 1.0, 'with': 1.0, 'easily': 1.0, 'a': 1.0, 'down': 1.0, 'it': 1.0, 'to': 1.0, 'double': 1.0, 'install': 1.0, 'i': 1.0, 'wipes': 1.0, 'and': 2.0, 'like': 1.0, 'the': 1.0, 'cup': 1.0, 'easy': 1.0, 'use': 1.0, 'holders': 1.0}
Word element => {'car': 1.0, 'for': 1.0, 'one': 1.0, 'second': 1.0, 'a': 1.0, 'by': 1.0, 'the': 1.0, 'enough': 1.0, 'over': 1.0, 'anyone': 1.0, 'looking': 1.0, 'reports': 1.0, 'would': 1.0, 'recommend': 1.0, 'spend': 1.0, 'i': 1.0, '200': 1.0, 'from': 1.0, 'ratings': 1.0, 'our': 1.0, 'were': 1.0, 'to': 3.0, 'comes': 1.0, 'first': 1.0, 'this': 1.0, 'it': 1.0, 'with': 2.0, 'not': 1.0, 'seat': 1.0, 'excellent': 1.0, 'happy': 1.0, 'consumer': 1.0, 'other': 1.0, 'we': 1.0}
Word element => {'seems': 1.0, 'comfy': 1.0, 'bothers': 1.0, 'complaint': 1.0, 'far': 1.0, 'since': 1.0, 'cried': 1.0, 'barely': 1.0, 'mind': 1.0, 'clearance': 1.0, 'head': 1.0, 'getting': 3.0, 'trouble': 1.0, 'grabs': 1.0, 'toys': 1.0, 'young': 1.0, 'holders': 1.0, '1': 1.0, 'change': 1.0, 'make': 1.0, 'plenty': 1.0, 'difference': 1.0, 'price': 1.0, 'add': 1.0, 'holds': 1.0, 'velcro': 1.0, 'cushiness': 1.0, 'amount': 1.0, 'feel': 2.0, 'them': 3.0, 'they': 2.0, 'myride': 5.0, 'which': 1.0, 'asking': 1.0, 'very': 2.0, 'doesn': 3.0, 'expensive': 1.0, 'marathon': 1.0, 'between': 1.0, 'much': 1.0, 'forth': 1.0, 'kept': 1.0, 'bump': 1.0, 'initially': 1.0, 'height': 1.0, 'hang': 1.0, 'first': 1.0, 'open': 2.0, 'clip': 2.0, 'told': 1.0, 'out': 7.0, 'pull': 1.0, 'rod': 1.0, 'metal': 1.0, 'inside': 1.0, 'fingers': 1.0, 'putting': 2.0, 'same': 2.0, 'while': 1.0, 'hate': 1.0, 'sides': 1.0, 'grab': 1.0, 'carseat': 3.0, 'removing': 1.0, 'hand': 1.0, 'high': 1.0, 'better': 2.0, 'against': 1.0, 'baby': 3.0, 'put': 1.0, 'latch': 7.0, 're': 1.0, 'pushing': 1.0, 'come': 1.0, 'really': 1.0, 'say': 2.0, 'front': 5.0, 'mazda': 2.0, 'when': 7.0, 'way': 3.0, 'people': 1.0, 'addition': 1.0, 'half': 1.0, 'lightly': 1.0, 'loosen': 5.0, 'felt': 1.0, 'months': 1.0, 'move': 1.0, 'had': 6.0, 'up': 6.0, 'takes': 1.0, 'isn': 1.0, 'feels': 1.0, 'from': 1.0, 'but': 8.0, 'get': 5.0, 'able': 1.0, 'convertible': 1.0, 'there': 2.0, 'hard': 4.0, 'over': 1.0, 'properly': 1.0, 'touches': 1.0, 'would': 4.0, 'we': 1.0, 'middle': 3.0, 'don': 1.0, 'still': 1.0, 'if': 2.0, 'both': 5.0, 'seats': 1.0, 'son': 3.0, 'big': 2.0, 'recommend': 1.0, 'adjusting': 1.0, 'piece': 1.0, 'was': 12.0, 'britax': 5.0, 'knee': 1.0, 'now': 2.0, 'easy': 1.0, 'fit': 2.0, 'hanging': 1.0, 't': 8.0, 'belt': 6.0, 'actually': 3.0, 'holder': 3.0, 'for': 9.0, 'like': 5.0, 'with': 6.0, 'using': 4.0, 'i': 36.0, 'well': 1.0, '2011': 1.0, 'do': 5.0, 'system': 3.0, 'pulling': 1.0, 'doing': 2.0, 'the': 99.0, 'old': 1.0, 'of': 25.0, 'this': 7.0, 'month': 1.0, 'he': 5.0, 'him': 6.0, 'comfortably': 1.0, 'gotten': 1.0, 'has': 4.0, 'next': 3.0, 'back': 5.0, 'most': 1.0, 'jump': 1.0, 'carrier': 1.0, 'thing': 1.0, 'about': 1.0, 'a': 6.0, 'buckles': 1.0, 'side': 5.0, 'rear': 1.0, 'passenger': 1.0, 'transitioned': 1.0, 'car': 24.0, 'right': 1.0, 'to': 32.0, 'pulled': 2.0, 'push': 3.0, 'seat': 24.0, 'in': 26.0, '7': 1.0, 'entire': 1.0, 'me': 3.0, 'where': 1.0, 'your': 4.0, 'keeps': 1.0, 'any': 2.0, 'flap': 3.0, 'too': 3.0, '3': 2.0, 'just': 5.0, 'and': 31.0, 'more': 2.0, 'seem': 2.0, 'grabbed': 1.0, 'can': 3.0, 'is': 10.0, 'target': 1.0, 'at': 3.0, 'lot': 1.0, 'his': 6.0, 'around': 1.0, 'placed': 2.0, 'that': 13.0, 'am': 5.0, 'have': 7.0, 'one': 3.0, '5': 1.0, 'are': 1.0, 'my': 15.0, 'room': 3.0, 'armpit': 1.0, 'will': 1.0, 'could': 2.0, 'level': 1.0, 'child': 2.0, 'before': 1.0, 'been': 2.0, 'went': 4.0, 'ahead': 1.0, 'without': 2.0, 'only': 2.0, 'then': 4.0, 'realized': 1.0, 'didn': 2.0, 'being': 5.0, 'low': 1.0, 'halfway': 1.0, 'down': 1.0, 'lowest': 1.0, 'firmly': 1.0, 'slots': 2.0, 'installed': 1.0, 'opened': 1.0, 'so': 6.0, 'cake': 1.0, 'adjust': 2.0, 'sit': 2.0, 'as': 1.0, 'hardest': 1.0, 'top': 2.0, 'kind': 1.0, 'time': 4.0, 'driver': 1.0, 'button': 2.0, 'not': 3.0, 'enough': 4.0, 'unlatch': 3.0, '6': 1.0, 'strong': 1.0, 'tightening': 1.0, 'positioned': 1.0, 'someone': 1.0, 'help': 1.0, 'loosened': 1.0, 'by': 1.0, 'infant': 4.0, 'after': 2.0, 'though': 1.0, 'flip': 1.0, 'harness': 6.0, 'also': 2.0, 'playing': 1.0, 'harnesses': 3.0, 'optimal': 1.0, 'display': 1.0, 'cup': 4.0, 'on': 9.0, 'tail': 2.0, 'going': 1.0, 'end': 1.0, 'other': 1.0, 'an': 1.0, 'myself': 3.0, 'forums': 1.0, 'close': 1.0, 'tightened': 1.0, 'facing': 2.0, 'fabric': 3.0, 'into': 1.0, 'through': 1.0, 'towards': 1.0, 'hesitant': 1.0, 'remove': 1.0, 'how': 1.0, 'instructions': 1.0, 'fitting': 1.0, 'base': 1.0, 'almost': 1.0, 'done': 1.0, 'bother': 1.0, 'tighten': 3.0, 'its': 1.0, 'place': 3.0, 'especially': 1.0, 'use': 2.0, 'noodles': 1.0, 'angle': 1.0, 'or': 2.0, 'installing': 2.0, 'you': 6.0, 'towels': 1.0, 'own': 1.0, 'it': 27.0, 'be': 3.0, 'little': 1.0, 'does': 2.0}
Word element => {'comfortable': 1.0, 'be': 1.0, 'feels': 1.0, 'looks': 1.0, 'the': 1.0, 'granddaughter': 1.0, 'not': 1.0, 'will': 2.0, 'as': 1.0, 'and': 1.0, 'only': 1.0, 'great': 1.0, 'it': 2.0, 'ride': 1.0, 'though': 1.0, 'safety': 1.0, 'in': 2.0, 'style': 1.0, 'newest': 1.0, 'but': 1.0}
Word element => {'still': 1.0, 'you': 1.0, 'if': 1.0, 'middle': 1.0, 'go': 1.0, 'has': 1.0, 'install': 1.0, 'downside': 1.0, 'use': 1.0, 'facing': 1.0, 'easy': 2.0, 'but': 1.0, 'to': 3.0, 'fit': 1.0, 'camry': 1.0, 'comfy': 1.0, 'and': 1.0, 'very': 1.0, 'nice': 1.0, 'car': 1.0, 'seat': 1.0, 'the': 2.0, 'love': 1.0, 'only': 1.0, 'it': 4.0, 'rear': 1.0, 'want': 1.0, 'is': 2.0, 'large': 1.0, 'we': 1.0, 'in': 2.0, 'our': 1.0}
Word element => {'perfectly': 1.0, 'color': 1.0, 'bonus': 1.0, 'truck': 1.0, 'in': 1.0, 'easy': 1.0, 'super': 1.0, 'makes': 1.0, 'system': 1.0, 'awesome': 1.0, 'added': 1.0, 'are': 1.0, 'cushion': 1.0, 'little': 1.0, 'lots': 1.0, 'and': 3.0, 'up': 1.0, 'of': 1.0, 'high': 1.0, 'fits': 1.0, 'my': 4.0, 'or': 1.0, 'latch': 1.0, 'cup': 1.0, 'her': 4.0, 'works': 1.0, 'even': 1.0, 'car': 2.0, 'is': 2.0, 'carseat': 1.0, 'padding': 1.0, 's': 1.0, 'a': 2.0, 'just': 1.0, 'i': 1.0, 'fabulously': 1.0, 'support': 1.0, 'install': 1.0, 'comfortable': 1.0, 'daughter': 2.0, 'gives': 1.0, 'when': 1.0, 'holders': 1.0, 'this': 1.0, 'personality': 1.0, 'it': 5.0, 'loves': 2.0, 'headrest': 2.0, 'newborn': 1.0, 'love': 1.0, 'actually': 1.0, 'the': 4.0, 'asleep': 1.0, 'had': 1.0, 'husband': 1.0, 'head': 1.0, 'sets': 1.0, 'upright': 1.0, 'enough': 1.0, 'thick': 1.0, 'offer': 1.0, 'seat': 1.0, 'to': 3.0, 'our': 1.0, 'carrier': 1.0, 'keep': 1.0, 'flimsy': 1.0}
Word element => {'of': 1.0, 'be': 1.0, 'will': 1.0, 'confidence': 1.0, 'every': 1.0, 'have': 1.0, 'watched': 1.0, 'off': 1.0, 'simple': 1.0, 'relatively': 1.0, 'lolinstalling': 1.0, 'cushion': 1.0, 'butt': 1.0, 'by': 1.0, 'was': 2.0, 'forward': 1.0, 'slumps': 1.0, 'husband': 2.0, 'head': 1.0, 'little': 1.0, 'relaxes': 1.0, 'he': 1.0, 'this': 3.0, 'fascinated': 1.0, 'it': 4.0, 'models': 1.0, 'and': 4.0, 'comfy': 2.0, 'do': 2.0, 'most': 1.0, 'but': 1.0, 'back': 1.0, 'stood': 1.0, 'in': 4.0, 'no': 1.0, 'not': 1.0, 'safe': 1.0, 'fantasticly': 1.0, 'side': 1.0, 'cosco': 1.0, 'the': 6.0, 'sits': 1.0, 'my': 4.0, 'is': 2.0, 'son': 2.0, 'car': 3.0, 'fights': 1.0, 'usually': 1.0, 'bought': 1.0, 'all': 1.0, 'seat': 3.0, 'as': 2.0, 'to': 2.0, 'being': 1.0, 'love': 1.0, 'for': 1.0, 'that': 3.0, 'reclines': 1.0, 'sitter': 1.0, 'his': 1.0, 'well': 1.0, 'see': 1.0, 'i': 3.0, 'feature': 1.0, 'avail': 1.0, 'a': 1.0, 'we': 1.0, 'you': 1.0, 'on': 1.0, 'cheaper': 1.0, 'which': 1.0, 'like': 1.0, 'poor': 1.0}
Word element => {'buy': 1.0, 'ask': 1.0, 'i': 1.0, 'definitely': 1.0, 'install': 1.0, 'to': 1.0, 'great': 2.0, 'easy': 1.0, 'for': 1.0, 'could': 1.0, 'eeverything': 1.0, 'design': 1.0, 'daughter': 1.0, 'loves': 1.0, 'very': 1.0, 'her': 1.0, 'color': 1.0, 'new': 1.0, 'recommend': 1.0, 'seat': 1.0, 'overall': 1.0, 'car': 1.0}
Word element => {'infant': 1.0, 'key': 1.0, 'used': 1.0, 'sweating': 1.0, 'holder': 2.0, 'puts': 1.0, 'has': 1.0, 'likes': 1.0, 'not': 1.0, 'chicco': 1.0, 'was': 1.0, 'rear': 1.0, 'room': 1.0, 'leg': 1.0, 'no': 1.0, 'been': 1.0, 'that': 2.0, '30': 1.0, 'holders': 1.0, 'found': 1.0, 'facing': 3.0, 'like': 1.0, 'using': 1.0, 'hasn': 1.0, 'old': 1.0, 'one': 1.0, 'months': 1.0, 'her': 3.0, 'good': 1.0, 'cup': 2.0, 'or': 1.0, 'think': 1.0, 'make': 1.0, 'graco': 1.0, 'brands': 1.0, 'fit': 1.0, 'for': 1.0, 'expensive': 1.0, 'reasonable': 1.0, 'products': 1.0, 'buy': 2.0, 'other': 2.0, 'had': 2.0, 'at': 1.0, 'i': 1.0, 'two': 3.0, 'couldn': 1.0, 'so': 1.0, 'sippy': 1.0, 'quality': 1.0, 'but': 1.0, 'seats': 1.0, 'position': 2.0, 'super': 1.0, 'afford': 1.0, 'the': 5.0, 'pacifier': 1.0, 'are': 1.0, 'britax': 1.0, 'price': 1.0, 'is': 2.0, 'cute': 1.0, 'pretty': 1.0, 'easy': 1.0, 'she': 6.0, 'it': 3.0, 'comfortable': 1.0, 'install': 1.0, 'great': 1.0, 'big': 1.0, 'fits': 1.0, 'in': 6.0, 'to': 4.0, 'seat': 3.0, 'our': 2.0, 'forward': 2.0, 'prius': 1.0, 'we': 4.0, 't': 2.0, 'a': 2.0, 'matrix': 1.0, '16': 1.0, 'and': 5.0, 'v': 1.0, 'have': 1.0}
Word element => {'installed': 1.0, 'easily': 1.0, 'very': 1.0, '2': 1.0, 'a': 1.0, 'is': 1.0, 'who': 1.0, 'fits': 1.0, 'growing': 1.0, 'then': 1.0, 'around': 1.0, 'almost': 1.0, 'my': 1.0, 'comfortable': 1.0, 'for': 3.0, 'one': 1.0, 'carseat': 1.0, 'her': 2.0, 'turn': 1.0, 'and': 1.0, '1': 1.0, 'perfectly': 1.0, 'can': 1.0, 'this': 1.0, 'it': 1.0, 'she': 1.0, 'bigger': 1.0, 'daughter': 1.0, 'when': 1.0, 'gets': 1.0, 'we': 1.0}
Word element => {'needed': 1.0, 'we': 1.0, 'what': 1.0, 'just': 1.0}
Word element => {'again': 1.0, 'would': 1.0, 'something': 1.0, 'each': 2.0, 'holder': 1.0, 'cup': 1.0, 'more': 1.0, 'happy': 1.0, 'room': 1.0, 'really': 1.0, 'plenty': 1.0, 'months': 1.0, '9': 1.0, 'almost': 1.0, 'snug': 1.0, 'than': 1.0, 'has': 1.0, 'toy': 1.0, 'easier': 1.0, 'clasp': 1.0, 'seems': 1.0, 'also': 2.0, 'much': 1.0, 'harness': 1.0, 'so': 3.0, 'front': 1.0, 'out': 1.0, 'pull': 1.0, 'different': 1.0, 'love': 1.0, 'for': 1.0, 'my': 3.0, 'tight': 1.0, 'it': 2.0, 'up': 1.0, 'husband': 2.0, 'with': 1.0, 'buying': 1.0, 'store': 1.0, 'was': 1.0, 'of': 3.0, 'once': 1.0, 'two': 1.0, 'i': 7.0, 'buy': 2.0, 'itself': 1.0, 'in': 7.0, 'can': 1.0, 'but': 2.0, '2': 1.0, 'highlander': 1.0, 'these': 1.0, 'the': 6.0, 'ride': 1.0, 'seats': 1.0, 'comfortable': 1.0, 'install': 1.0, 'play': 1.0, 'and': 7.0, 'done': 1.0, 'infant': 1.0, 'wound': 1.0, 'car': 4.0, 'nissan': 1.0, 'had': 3.0, 'altima': 1.0, 'toyota': 1.0, 'this': 1.0, 'found': 2.0, 'model': 1.0, 'get': 2.0, 'easy': 2.0, 'strap': 2.0, 'to': 6.0, 'patterns': 1.0, 'as': 1.0, 'a': 1.0, 'we': 2.0, 's': 2.0, 'could': 1.0, 'he': 3.0, 'adjust': 1.0, '100': 1.0, 'not': 1.0, 'that': 1.0, 'fine': 1.0, 'be': 1.0, 'him': 2.0}
Word element => {'else': 1.0, 'find': 1.0, 'be': 1.0, 'will': 1.0, 'get': 2.0, 'strap': 1.0, 'opening': 1.0, 'looking': 1.0, 'rear': 2.0, 'is': 3.0, 'harness': 1.0, 'for': 5.0, 'button': 3.0, 'at': 1.0, 'the': 8.0, 'facing': 3.0, 'difficult': 1.0, 'great': 1.0, 'nice': 1.0, 'overall': 1.0, 'seat': 3.0, 'to': 3.0, 'it': 2.0, 'while': 2.0, 'but': 1.0, 'fingers': 1.0, 'forward': 1.0, 'far': 1.0, 'and': 2.0, 'too': 1.0, 'crammed': 1.0, 'of': 1.0, 'against': 1.0, 'vehicle': 1.0, 'you': 3.0, 's': 1.0, 'a': 5.0, 'wrists': 1.0, 'nightmare': 1.0, 'contort': 1.0, 'into': 1.0, 'that': 2.0, 'position': 1.0, 'something': 3.0, 'release': 1.0, 'this': 1.0, 'allows': 1.0, 'need': 1.0, 'press': 1.0, 'if': 2.0, 're': 1.0, 'up': 1.0, 'child': 1.0}
Word element => {'highly': 1.0, 'carseat': 1.0, 'a': 1.0, 'too': 1.0, 'those': 1.0, 'one': 1.0, 'cupholders': 1.0, 'this': 2.0, 'recommend': 1.0, 'seat': 1.0, 'is': 2.0, 'seems': 1.0, 'super': 2.0, 'handy': 1.0, 'safe': 1.0, 'great': 1.0, 'it': 2.0, 'comfortable': 1.0, 'for': 1.0, 'are': 1.0, 'my': 1.0, 'little': 1.0}
Word element => {'in': 1.0, 'talks': 1.0, 'so': 1.0, 'window': 1.0, 'the': 1.0, 'out': 1.0, 'looks': 1.0, 'and': 2.0, 'quiet': 1.0, 'car': 2.0, 'hated': 1.0, 's': 3.0, 'born': 1.0, 'absolutely': 1.0, 'he': 5.0, 'this': 2.0, 'it': 2.0, 'son': 1.0, 'comfortable': 1.0, 'rides': 1.0, 'my': 1.0, 'since': 1.0, 'was': 2.0, 'i': 1.0, 'when': 1.0, 'uses': 1.0, 'loves': 1.0, 'think': 1.0, 'infant': 1.0, 'seat': 2.0, 'just': 2.0, 'but': 1.0, 'his': 1.0}
Word element => {'holders': 1.0, 'every': 1.0, 'cry': 1.0, 'that': 1.0, 'would': 1.0, 'daughter': 1.0, 'very': 2.0, 'and': 1.0, 'old': 1.0, 'month': 1.0, 'seems': 2.0, 'in': 1.0, '13': 1.0, 'comfortable': 1.0, 'love': 1.0, 'it': 1.0, 'has': 1.0, 'time': 1.0, 'was': 1.0, 'now': 1.0, 'her': 1.0, 'she': 2.0, 'last': 1.0, 'cup': 1.0, 'happy': 1.0, 'seat': 1.0}
Word element => {'carseat': 1.0, 'cute': 1.0, 'wants': 1.0, 'who': 1.0, 'month': 1.0, '9': 1.0, 'love': 1.0, 'have': 2.0, 'it': 2.0, 'this': 2.0, 'much': 1.0, 'product': 1.0, 'so': 1.0, 'old': 1.0, 'i': 3.0, 'and': 4.0, 'as': 1.0, 'fits': 1.0, 'anyone': 1.0, 'perfect': 1.0, 'loves': 1.0, 'into': 1.0, 'safe': 1.0, 'two': 1.0, 'a': 2.0, 'well': 1.0, 'to': 1.0, 'now': 1.0, 'she': 1.0, 'recommend': 1.0}
Word element => {'cute': 1.0, 'very': 1.0, 'pattern': 1.0, 'in': 1.0, 'get': 1.0, 'you': 1.0, 'it': 1.0, 'sure': 1.0, 'well': 1.0, 'made': 1.0, 'make': 1.0, 'tightly': 1.0, 'sturdy': 1.0, 'seat': 1.0, 'car': 1.0, 'fairly': 1.0, 'install': 1.0, 'to': 1.0, 'easy': 1.0, 'just': 1.0}
Word element => {'owned': 1.0, 'car': 1.0, 'we': 1.0, 'other': 1.0, 'easy': 1.0, 'as': 2.0, 'are': 1.0, 'straps': 2.0, 'tighten': 1.0, 'constantly': 1.0, 'to': 1.0, 'have': 2.0, 'graco': 1.0, 'daughter': 1.0, 've': 1.0, 'seems': 1.0, 'in': 1.0, 'material': 1.0, 't': 1.0, 'the': 5.0, 'more': 2.0, 'and': 1.0, 'like': 1.0, 'this': 1.0, 'only': 1.0, 'my': 1.0, 'color': 1.0, 'doesn': 1.0, 'i': 3.0, 'relaxed': 1.0, 'not': 1.0, 'seat': 2.0, 'than': 1.0, 'her': 1.0, 'complaint': 1.0, 'seats': 1.0, 'infant': 1.0, 'is': 1.0}
Word element => {'buckled': 1.0, 'her': 1.0, 'model': 1.0, 'get': 1.0, 'seconds': 1.0, 'takes': 1.0, 'now': 1.0, 'but': 1.0, 'used': 1.0, 'getting': 1.0, 'little': 1.0, 'a': 1.0, 'take': 1.0, 'i': 3.0, 'and': 2.0, 'car': 1.0, 'fairly': 1.0, 'of': 2.0, 'love': 1.0, 'for': 2.0, 'with': 1.0, 'install': 1.0, 'belts': 1.0, 'recommend': 1.0, 'was': 1.0, 'the': 3.0, 'my': 2.0, 'bit': 1.0, 'smaller': 1.0, 'riding': 1.0, 'easily': 1.0, 'husband': 1.0, 'head': 1.0, 'worked': 1.0, 'in': 3.0, 'also': 1.0, 'came': 1.0, 'carseat': 1.0, 'able': 1.0, 'our': 2.0, 'to': 3.0, 'all': 1.0, 'that': 1.0, 'babies': 1.0, 'well': 1.0, 'has': 2.0, 'likes': 1.0, 'this': 2.0, 'holders': 1.0, 'daughter': 2.0, 'enjoy': 1.0, 'would': 2.0, 'cup': 1.0, 'rests': 1.0, 'cushions': 1.0, 'those': 1.0, 'be': 1.0, 'better': 1.0, 'it': 3.0, 'she': 1.0, 'plenty': 1.0, '5': 1.0, 'room': 1.0}
Word element => {'feeling': 1.0, 'installationcons': 1.0, 'careasy': 1.0, 'economy': 1.0, 'pricecup': 1.0, 'them': 1.0, 'was': 1.0, 'thing': 1.0, 'first': 1.0, 'also': 1.0, 'upright': 1.0, 'comfortably': 1.0, 'his': 1.0, 'holds': 1.0, 'sleep': 2.0, 'seems': 1.0, 'but': 1.0, 'had': 1.0, 'have': 1.0, 'does': 1.0, 'said': 1.0, 'expected': 1.0, 'still': 3.0, 'in': 5.0, 'seat': 2.0, 'length': 1.0, 'to': 5.0, 'nice': 1.0, 'feel': 1.0, 'big': 1.0, 'overall': 1.0, 'head': 3.0, 'right': 1.0, 'coda': 1.0, '98': 1.0, 'barely': 1.0, 'fit': 1.0, 't': 1.0, 'holdersfits': 1.0, 'pros': 1.0, 'son': 2.0, 'height': 1.0, 'price': 1.0, '2010': 1.0, 'fits': 2.0, 'an': 1.0, 'quality': 1.0, 'higher': 1.0, 'inexpensive': 1.0, 'end': 1.0, 'do': 1.0, 'much': 1.0, 'reach': 1.0, 'than': 1.0, 'be': 3.0, 'holders': 1.0, 'material': 3.0, 'loves': 1.0, 'rough': 1.0, 'fell': 1.0, 'outgrow': 1.0, 'though': 2.0, '5': 1.0, 'comfortable': 1.0, 'worry': 1.0, 'purchased': 1.0, 'either': 1.0, 'convertible': 1.0, 'able': 2.0, 'even': 1.0, 'instead': 1.0, 'while': 2.0, 'stars': 1.0, 'rather': 1.0, 'cheap': 2.0, 'for': 5.0, 'of': 2.0, 'the': 11.0, 'well': 2.0, 'i': 4.0, 'cup': 1.0, '4': 2.0, 'style': 1.0, 'not': 3.0, 'gave': 1.0, 'because': 1.0, 'that': 3.0, 'this': 2.0, 'drive': 1.0, 'feels': 1.0, 'hatchback': 1.0, 'long': 1.0, 'on': 2.0, 'and': 4.0, 'is': 6.0, 'at': 2.0, 'our': 6.0, 'how': 1.0, 'far': 1.0, 'he': 5.0, 'more': 1.0, 'door': 1.0, 'months': 2.0, 'it': 11.0, 'recline': 2.0, 'already': 2.0, 'setting': 1.0, 'highest': 1.0, 'a': 1.0, 'small': 2.0, 'can': 1.0, 'so': 4.0, 'quickly': 1.0, 'will': 2.0, 'support': 2.0, 'car': 2.0, '6': 2.0, 'infant': 1.0, 'toyota': 1.0, 'yaris': 1.0, 'seats': 3.0, 'just': 1.0, 'very': 4.0, 'being': 1.0, 'don': 1.0, 'up': 1.0, 'takes': 1.0, 'did': 2.0, 'were': 1.0, 'we': 5.0, 'then': 1.0}
Word element => {'jimm': 1.0, 'value': 1.0, 'good': 1.0, 'strapped': 1.0, 'him': 1.0, 'get': 1.0, 'bought': 1.0, 'my': 1.0, 'grandson': 1.0, 'one': 1.0, 'in': 1.0, 'for': 1.0, 'easy': 2.0, 'to': 3.0, 'very': 1.0, 'and': 1.0, 'up': 1.0, 'set': 1.0, 'adjust': 1.0}
Word element => {'extremely': 1.0, 'same': 1.0, 'friends': 1.0, 'several': 1.0, 'adorable': 1.0, 'also': 1.0, 'print': 1.0, 'g3': 1.0, 'boulevard': 1.0, 'got': 1.0, 'line': 1.0, 'checking': 1.0, 'rec': 1.0, 'purchasing': 1.0, 'about': 1.0, 'thinking': 1.0, 'more': 3.0, 'that': 5.0, 'box': 1.0, 'been': 1.0, 'store': 1.0, 'you': 1.0, 'expensive': 1.0, 'for': 2.0, 'even': 1.0, 'safety': 1.0, 'my': 2.0, 'all': 1.0, 'any': 1.0, 'is': 2.0, 'at': 1.0, 'happy': 1.0, 'lot': 1.0, 'one': 2.0, 'little': 1.0, 'nice': 1.0, 'padded': 1.0, 'to': 2.0, 'pulled': 1.0, 'be': 2.0, 'would': 3.0, 'cost': 1.0, 'padding': 2.0, 'came': 1.0, 'and': 4.0, 'they': 2.0, 'disappointed': 1.0, 'had': 3.0, 'when': 2.0, 'what': 2.0, 'of': 2.0, 'the': 12.0, 'not': 3.0, 'wow': 1.0, 'reading': 1.0, 'which': 2.0, 'ordered': 2.0, 'say': 1.0, 'comfortable': 2.0, 'customers': 1.0, 'from': 1.0, 'i': 14.0, 'incredibly': 1.0, 'receiving': 1.0, 'with': 2.0, 'models': 1.0, 'seen': 1.0, 'leather': 1.0, 'this': 4.0, 'it': 5.0, 'mail': 2.0, 'after': 2.0, 'so': 2.0, 'bit': 1.0, 'time': 1.0, 'seat': 4.0, 'in': 6.0, 'imagine': 1.0, 'a': 5.0, 'espec': 1.0, 'returned': 1.0, 'britax': 3.0, 'are': 2.0, '70': 1.0, 'today': 1.0, 'reviews': 2.0, 'difference': 2.0, 'yes': 1.0, 'did': 1.0, 'hardly': 1.0, 'maybe': 1.0, 'huge': 1.0, 'than': 1.0, 'was': 2.0, '60': 2.0, 'over': 1.0, 'child': 1.0, 'will': 1.0, 'needless': 1.0, 'really': 1.0, 'much': 1.0, 'considered': 1.0, 'have': 2.0, 'ride': 1.0, 'why': 1.0, 'should': 1.0, 'get': 1.0, 'zebra': 1.0, 'instantly': 1.0, 'less': 1.0, 'pleased': 1.0, 'out': 2.0, 'extra': 1.0, 'honestly': 1.0, 'course': 1.0, 'if': 1.0}
Word element => {'price': 1.0, 'quality': 1.0, 'for': 1.0, 'actually': 1.0, 'breeze': 1.0, 'adjusting': 1.0, 'piece': 1.0, 'harness': 1.0, 'snugness': 1.0, 'adjusts': 1.0, 'pull': 1.0, 'one': 1.0, 'also': 1.0, '2006': 1.0, 'and': 2.0, 'didn': 1.0, 'even': 1.0, 'want': 1.0, 'is': 4.0, 'side': 1.0, 'belt': 1.0, 'doesn': 1.0, '2': 1.0, 'but': 1.0, 'this': 1.0, 'drive': 1.0, 'holders': 1.0, 'so': 1.0, 'time': 1.0, '16': 1.0, 'old': 1.0, 'the': 6.0, 'that': 1.0, 'loves': 1.0, 'of': 4.0, 'there': 2.0, '5i': 1.0, 'he': 1.0, 'sturdy': 1.0, 'to': 2.0, 'seat': 3.0, 'style': 1.0, 'not': 1.0, 'my': 1.0, 'it': 4.0, 'month': 1.0, 'out': 2.0, 'half': 1.0, 'very': 1.0, 'little': 1.0, 'drink': 1.0, 'on': 1.0, 'large': 2.0, 'a': 5.0, 't': 2.0, 's': 1.0, 'built': 1.0, 'bad': 1.0, 'thing': 1.0, 'have': 1.0, 'you': 1.0, 'unless': 1.0, 'in': 2.0, 'expect': 1.0, 'coupe': 1.0, 'strap': 1.0, 'are': 1.0, 'i': 2.0, 'two': 1.0, 'kind': 1.0, 'get': 2.0, 'easy': 1.0, 'car': 1.0}
Word element => {'this': 1.0, 'at': 1.0, 'was': 1.0, 'it': 1.0, 'a': 1.0, 'protections': 1.0, 'added': 1.0, 'the': 1.0, 'my': 1.0, 'and': 1.0, 'with': 1.0, 'is': 1.0, 'new': 1.0, 'seat': 1.0, 'so': 1.0, 'comfortable': 1.0, 'price': 1.0, 'steal': 1.0, 'her': 1.0, 'daughter': 1.0, 'in': 1.0, 'car': 1.0}
Word element => {'great': 1.0, 'overall': 1.0, 'uncomfortable': 1.0, 'how': 1.0, 'adjust': 1.0, 'complaints': 1.0, 'didn': 2.0, 'all': 2.0, 'to': 5.0, 'as': 2.0, 'almost': 1.0, 'amazon': 1.0, 'front': 1.0, 'purchase': 1.0, 'my': 3.0, 'cushy': 1.0, 'finally': 1.0, 're': 1.0, 'granted': 1.0, 'read': 1.0, 'nice': 1.0, 'little': 2.0, 'researched': 1.0, 'accommodate': 1.0, 'price': 1.0, 'harnesses': 1.0, 'car': 6.0, 's': 2.0, 'a': 7.0, 'reviews': 1.0, 'we': 1.0, 'could': 1.0, 'replace': 1.0, 'different': 1.0, 'the': 10.0, 'of': 2.0, 'because': 1.0, 'installed': 1.0, 'than': 1.0, 'about': 1.0, 'no': 1.0, 'seat': 6.0, 'in': 3.0, 'newborn': 1.0, 'was': 3.0, 'had': 3.0, 'came': 2.0, 'although': 1.0, 'padding': 1.0, 'on': 1.0, 'long': 1.0, 'seats': 1.0, 'and': 4.0, 'buy': 1.0, 'i': 7.0, 'big': 2.0, 'decided': 1.0, 'one': 1.0, 'upon': 1.0, 'daughter': 1.0, 'when': 2.0, 'graco': 1.0, 'snugride': 3.0, 'this': 1.0, 'time': 1.0, 'honda': 1.0, 't': 4.0, 'fit': 2.0, 'wasn': 1.0, 'differently': 1.0, 'see': 1.0, 'have': 1.0, 'at': 2.0, 'it': 11.0, 'already': 1.0, 'for': 2.0, 'such': 1.0, 'lots': 1.0, 'setting': 1.0, 'pushed': 1.0, 'up': 2.0, 'far': 1.0, 'took': 1.0, 'but': 2.0, 'most': 1.0, 'difficult': 1.0, 'being': 1.0, 'still': 1.0, 'if': 1.0, 'found': 1.0, 'easy': 1.0, 'get': 1.0, 'imagined': 1.0, 'problem': 1.0, 'part': 1.0, 'into': 1.0, 'right': 1.0, 'slot': 1.0, 'quite': 1.0, 'shoulder': 1.0, 'isn': 1.0, 'becoming': 1.0}
Word element => {'rear': 1.0, 'is': 1.0, 'honda': 1.0, 'the': 1.0, 'pilot': 1.0, 'in': 1.0, 'well': 1.0, 'work': 1.0, 'seat': 1.0, 'not': 1.0, 'does': 1.0, 'facing': 1.0, 'so': 1.0, 'big': 1.0, 'that': 1.0, 'this': 1.0, 'with': 1.0, 'it': 2.0, 'only': 1.0, 'my': 1.0, 'downside': 1.0, 'its': 1.0, 'to': 1.0, 'car': 1.0}
Word element => {'should': 1.0, 'won': 1.0, 'that': 1.0, 'holds': 1.0, 'straps': 2.0, 'clasp': 1.0, 'together': 1.0, 'sometimes': 1.0, 't': 1.0, 'the': 2.0, 'unsnap': 1.0, 'are': 1.0, 'fine': 1.0, 'easily': 1.0, 'works': 2.0, 'under': 1.0, 'baby': 1.0, 'it': 1.0, 'hard': 1.0, 'get': 2.0, 'and': 1.0, 'as': 1.0, 'to': 1.0, 'out': 1.0}
Word element => {'store': 1.0, 'grocery': 1.0, 'over': 1.0, 'drive': 1.0, 'quick': 1.0, 'week': 1.0, 'only': 2.0, 'yet': 1.0, 'other': 1.0, 'us': 1.0, 'help': 1.0, 'hope': 1.0, 'next': 1.0, 'taking': 1.0, 'be': 2.0, 'will': 2.0, 'said': 1.0, '18': 1.0, 'have': 3.0, 'husband': 2.0, 'accord': 1.0, 'ratings': 1.0, 'i': 6.0, 'pounds': 1.0, 'facing': 1.0, 'installed': 2.0, 'that': 4.0, 'our': 2.0, 'center': 1.0, 'to': 6.0, 'seat': 7.0, 'in': 5.0, 'diono': 1.0, 'fire': 1.0, 'which': 1.0, 'safety': 2.0, 'for': 2.0, 'expensive': 1.0, 'up': 2.0, 'child': 1.0, 'honda': 1.0, 'main': 1.0, 'big': 1.0, 'great': 1.0, 'cannot': 1.0, 'very': 2.0, 'my': 5.0, 'car': 4.0, 'a': 6.0, 'maybe': 1.0, 's': 2.0, 'not': 3.0, 'we': 4.0, 'then': 1.0, 'inspection': 1.0, 'with': 1.0, 'this': 4.0, 'thankfully': 1.0, 'hyundai': 1.0, 'use': 1.0, 'back': 3.0, 'but': 3.0, 'so': 1.0, 'can': 1.0, 'shoulder': 1.0, 'sits': 1.0, 'is': 11.0, 'once': 1.0, 'comes': 1.0, 'of': 2.0, 'the': 13.0, 'and': 6.0, 'rear': 1.0, 'too': 2.0, 'seats': 1.0, 'inspects': 1.0, 'as': 2.0, 'unable': 1.0, 'close': 1.0, '25': 1.0, 'am': 1.0, 'seen': 1.0, 'complaints': 1.0, 'able': 1.0, 'you': 1.0, 'road': 1.0, 'months': 1.0, 'get': 2.0, 'straps': 3.0, 'graco': 1.0, 'strict': 1.0, 'than': 1.0, 'way': 1.0, 'enough': 2.0, 'especially': 1.0, 'down': 1.0, 'she': 1.0, 'many': 1.0, 'it': 4.0, 'horror': 1.0, 'daughter': 3.0, 'got': 1.0, 'videos': 1.0, 'about': 1.0, 'when': 2.0, 'what': 1.0, 'happens': 1.0, 'if': 2.0, 'any': 1.0, 'probably': 1.0, 'your': 1.0, 'tight': 2.0, 'properly': 1.0, 'do': 1.0, 'rule': 1.0, 'they': 2.0, 'pinch': 1.0, 'are': 2.0, 'tuscon': 1.0, 'loose': 1.0, 'both': 1.0, 'there': 1.0, 'issue': 1.0, 'station': 1.0}
Word element => {'recommend': 1.0, 'would': 1.0, 'reclines': 1.0, 'carseat': 1.0, 'his': 1.0, 'trips': 1.0, 'forward': 1.0, 'but': 1.0, 'color': 1.0, 'one': 1.0, 'love': 1.0, 'for': 1.0, 'car': 1.0, '2nd': 1.0, 'that': 1.0, 'during': 1.0, 'already': 1.0, 'definitely': 1.0, 'buy': 1.0, 'holders': 1.0, 'this': 1.0, 'he': 1.0, 'it': 2.0, 'another': 1.0, 'don': 1.0, 'bulky': 1.0, 'about': 1.0, 'and': 2.0, 'built': 1.0, 'had': 2.0, 'seat': 1.0, 'our': 1.0, 'to': 2.0, 'the': 2.0, 'asleep': 1.0, 'in': 2.0, 'enough': 1.0, 'facing': 1.0, 'worry': 1.0, 'cup': 1.0, 'neck': 1.0, 'so': 1.0, 'bit': 1.0, 'when': 1.0, 'have': 1.0, 'falls': 1.0, 'is': 1.0, 't': 1.0, 'we': 4.0, 'a': 1.0}
Word element => {'mi': 1.0, 'comodo': 1.0, 'ahora': 1.0, 'hasta': 1.0, 'para': 1.0, 'like': 1.0, 'bastante': 1.0, 'this': 1.0, 'bebe': 1.0, 'problema': 1.0, 'productlo': 1.0, 'buenas': 1.0, 'i': 1.0, 'recibi': 1.0, 'en': 1.0, 'rapido': 1.0, 'y': 1.0, 'condicionesningun': 1.0}
Word element => {'vehicles': 1.0, 'fine': 1.0, 'admit': 1.0, 'only': 1.0, 'do': 1.0, 'away': 1.0, 'fold': 1.0, 'they': 1.0, 'need': 1.0, 'you': 1.0, 'when': 1.0, 'that': 2.0, 'by': 1.0, 'daughter': 1.0, 'on': 1.0, 'surprise': 1.0, 'the': 4.0, 'far': 1.0, 'who': 1.0, 'bottom': 1.0, 'favorite': 1.0, 'have': 2.0, 'we': 1.0, 't': 2.0, 'a': 1.0, 'i': 2.0, 'six': 1.0, 'bought': 2.0, 'it': 4.0, 'flop': 1.0, 'years': 1.0, 'for': 1.0, 'this': 3.0, 'carseats': 1.0, 'head': 1.0, 'don': 1.0, 'over': 1.0, 'child': 1.0, 'quite': 1.0, 'youngest': 1.0, 'big': 1.0, 'great': 1.0, 'install': 1.0, 'of': 4.0, 'there': 1.0, 'seat': 1.0, 'all': 3.0, 'our': 2.0, 'to': 3.0, 'fits': 2.0, 'my': 2.0, 'con': 1.0, 'easy': 1.0, 'and': 3.0, 'adjust': 1.0, 'in': 2.0, 'her': 1.0, 'was': 1.0, 'doesn': 1.0, 'is': 4.0, 'around': 1.0, 'but': 2.0, 'most': 1.0, 'are': 1.0, 'feet': 1.0}
Word element => {'using': 1.0, 'in': 3.0, 'am': 3.0, 'car': 2.0, 'now': 1.0, 'federal': 1.0, 'too': 1.0, 'and': 3.0, 'the': 6.0, 'bulky': 1.0, 'for': 1.0, 'approved': 1.0, 'not': 1.0, 'thus': 1.0, 'i': 4.0, 'old': 1.0, 'products': 1.0, 'from': 1.0, 'price': 1.0, 'best': 2.0, 'happy': 2.0, 'aviation': 1.0, 'australia': 2.0, 'postage': 1.0, 'needed': 1.0, 'nine': 1.0, 'purchased': 1.0, 'travelled': 1.0, 'seat': 2.0, 'as': 1.0, 'to': 2.0, 'living': 1.0, 'airline': 1.0, 'its': 1.0, 'made': 1.0, 'with': 2.0, 'united': 1.0, 'this': 2.0, 'it': 3.0, 'one': 1.0, 'months': 1.0, 'a': 3.0, 'we': 1.0, 'are': 1.0, 'via': 1.0, 'however': 1.0, 'baby': 3.0, 'usa': 3.0, 'quality': 1.0, 'flying': 1.0, 'plus': 1.0, 'of': 1.0, 'is': 2.0, 'around': 1.0}
Word element => {'price': 1.0, 'the': 1.0, 'value': 1.0, 'old': 1.0, 'his': 1.0, 'in': 1.0, 'it': 2.0, 'research': 1.0, 'did': 2.0, 'seat': 3.0, 'car': 1.0, '31': 1.0, '20': 1.0, 'we': 1.0, 'a': 1.0, 'was': 2.0, 'son': 2.0, 'shopping': 1.0, 'my': 3.0, 'i': 3.0, 'he': 3.0, 'how': 1.0, 'time': 1.0, 'so': 1.0, 'love': 1.0, 'picky': 1.0, 'for': 4.0, 'decided': 1.0, 'one': 1.0, 'great': 1.0, 'comfortable': 1.0, 'on': 1.0, 'when': 2.0, 'am': 1.0, 'lbs': 1.0, 'is': 2.0, 'very': 1.0, 'inches': 1.0, 'and': 3.0, 'tall': 1.0, 'this': 2.0, 'perfect': 1.0, 'would': 1.0, 'never': 1.0, 'worried': 1.0, 'about': 1.0, 'him': 1.0, 'be': 1.0, 'weighs': 1.0, 'during': 1.0, 'long': 1.0, 'bigger': 1.0, 'trips': 1.0, 'but': 1.0, 'fusses': 1.0, 'like': 1.0}
Word element => {'price': 1.0, 'carseat': 1.0, 'recommend': 1.0, 'room': 1.0, 'leg': 1.0, 'of': 1.0, 'ton': 1.0, 'has': 1.0, 'still': 1.0, 'at': 1.0, 'passenger': 1.0, 'great': 1.0, 'the': 1.0, 'month': 1.0, 'this': 1.0, 'it': 3.0, 'my': 1.0, 'love': 1.0, 'comfortable': 1.0, '8': 1.0, 'but': 1.0, 'fits': 1.0, 'very': 1.0, 'big': 1.0, 'seat': 1.0, 'a': 4.0, 'and': 1.0, 'perfectly': 1.0, 'bmw': 1.0, 'car': 1.0, 'definitely': 2.0, 'buy': 1.0, 'i': 1.0, 'old': 1.0, 'was': 1.0, 'to': 1.0, 'daughter': 1.0, 'in': 1.0, 'seems': 1.0, 'awesome': 1.0, 'our': 1.0, '328i': 1.0}
Word element => {'safe': 1.0, 'comfortable': 1.0, 'in': 4.0, 'time': 1.0, 'has': 1.0, 'thank': 1.0, 'screamed': 1.0, 'i': 5.0, 'bought': 1.0, 'one': 1.0, 'rides': 1.0, 'love': 3.0, 'for': 1.0, 'the': 3.0, 'my': 2.0, 'every': 2.0, 'baby': 2.0, 'her': 4.0, 'put': 1.0, 'almost': 2.0, 'girl': 1.0, 'car': 1.0, 'infant': 1.0, 'hated': 1.0, 'you': 1.0, 'from': 1.0, 'day': 1.0, 'this': 1.0, 'it': 1.0, 'now': 1.0, 'seat': 1.0, 'to': 2.0, 'cried': 1.0, 'ride': 2.0, 'ends': 1.0, 'a': 2.0, 'nap': 1.0, 'carseat': 2.0, 'padding': 1.0, 'is': 1.0, 'and': 5.0, 'pattern': 1.0, 'how': 1.0, 'get': 1.0, 'easy': 1.0, 'snap': 1.0, 'out': 1.0, 'quiet': 1.0, 'graco': 1.0, 'making': 1.0}
Word element => {'so': 2.0, 'a': 1.0, 'the': 1.0, 'good': 1.0, 'of': 1.0, 'cup': 1.0, 'far': 1.0, 'but': 1.0, 'holders': 1.0, 't': 1.0, 'weeks': 1.0, 'couple': 1.0, 'we': 2.0, 'long': 1.0, 'haven': 1.0, 'had': 1.0, 'love': 1.0, 'it': 1.0, 'only': 1.0}
Word element => {'yet': 1.0, 'complaints': 1.0, 'no': 1.0, 'have': 2.0, 'likes': 1.0, 'too': 1.0, 'daughter': 1.0, 'ordered': 1.0, 'her': 1.0, 'long': 2.0, 'should': 1.0, 'better': 1.0, 'after': 1.0, 'infant': 1.0, 'car': 1.0, 'much': 1.0, 'seat': 3.0, 'to': 1.0, 'spot': 1.0, 'because': 1.0, 'than': 1.0, 'sticks': 1.0, '5': 1.0, 'under': 1.0, 'easy': 1.0, 'pad': 1.0, 'the': 2.0, 'my': 1.0, 'a': 5.0, 'ago': 1.0, 'love': 1.0, 'it': 4.0, 'hard': 1.0, 'so': 1.0, 'time': 1.0, 'of': 1.0, 'instead': 1.0, 'there': 1.0, 'up': 1.0, 'is': 1.0, 'that': 1.0, 'think': 1.0, 'would': 1.0, 'i': 3.0, '4': 1.0, 'become': 1.0, 'uncomfortable': 1.0, 'but': 1.0, 'use': 1.0, 'travel': 1.0}
Word element => {'price': 1.0, 'for': 1.0, 'overall': 1.0, 'facing': 2.0, 'under': 1.0, 'but': 2.0, '2': 1.0, 'tall': 2.0, 'and': 4.0, '6': 1.0, 'over': 1.0, 'wash': 1.0, 's': 1.0, 'a': 6.0, 'we': 1.0, 'installed': 1.0, 'tricky': 1.0, 'tell': 1.0, 'without': 1.0, 'ford': 1.0, 'with': 1.0, 'chevy': 1.0, 'subaru': 1.0, 'comfy': 1.0, 'forester': 1.0, 'sturdy': 1.0, 'has': 2.0, 'angle': 1.0, 'it': 8.0, 'grows': 1.0, 'daughter': 1.0, 'another': 1.0, 'vehicle': 1.0, 'tightly': 1.0, 'door': 1.0, 'husband': 1.0, 'was': 1.0, 'to': 9.0, 'all': 1.0, 'easy': 2.0, 'towel': 1.0, 'even': 1.0, 'strange': 1.0, 'fit': 3.0, 'have': 2.0, 'little': 1.0, 'been': 1.0, 'because': 1.0, 'that': 2.0, 'into': 1.0, 'seat': 3.0, 'in': 3.0, 'tried': 1.0, 'seems': 2.0, 'secure': 2.0, 'gauge': 1.0, 'move': 1.0, 'avalanche': 1.0, 'from': 1.0, 'car': 3.0, 'forward': 1.0, 'as': 1.0, 'heavy': 1.0, 'ways': 1.0, 'i': 2.0, 'tough': 1.0, 'd': 1.0, 'expect': 1.0, 'harness': 1.0, 'do': 1.0, 'strap': 1.0, 'height': 1.0, 'only': 1.0, 'options': 1.0, 'one': 1.0, 'rear': 1.0, 'different': 1.0, 'you': 1.0, 'still': 1.0, 'if': 1.0, 'everything': 1.0, 'is': 5.0, 'at': 1.0, 'correct': 1.0, 'silverado': 1.0, 'complaint': 1.0, 'or': 1.0, 'some': 1.0, 'great': 2.0, 'sort': 1.0, 'the': 3.0, 'of': 1.0, 'cushion': 1.0, 'says': 1.0, 'seats': 1.0, 'just': 1.0, 'safe': 1.0, 'this': 1.0, 'my': 2.0, 'focus': 2.0, 'me': 1.0}
Word element => {'carseats': 1.0, 'than': 1.0, 'much': 1.0, 'also': 1.0, 'adjust': 1.0, 'to': 1.0, 'easy': 1.0, 'very': 1.0, 'wonderfully': 1.0, 'two': 1.0, 'carseat': 2.0, 'days': 1.0, 'convertible': 1.0, 'most': 1.0, 'got': 1.0, 'lighter': 1.0, 'so': 1.0, 'after': 1.0, 'order': 1.0, 'we': 2.0, 'extremely': 1.0, 'the': 1.0, 'my': 1.0, 'placed': 1.0, 'love': 1.0, 'this': 3.0, 'it': 1.0, 'install': 1.0, 'girl': 1.0, 'month': 1.0, 'is': 2.0, 'seven': 1.0, 'roomy': 1.0, 'fits': 1.0, 'i': 1.0, 'old': 1.0, 'comfy': 1.0, 'and': 2.0, 'chunky': 1.0}
Word element => {'so': 1.0, 'or': 1.0, 'issues': 1.0, 'no': 1.0, 'work': 1.0, 'are': 1.0, 'same': 1.0, 'with': 1.0, 'far': 1.0, 'stay': 1.0, 'great': 1.0, 'the': 1.0, 'figured': 1.0, 'i': 1.0, 'one': 1.0, 'baby': 1.0, 'my': 2.0, 'car': 2.0, 'concerns': 1.0, 'because': 1.0, 'seat': 2.0, 'of': 1.0, 'current': 1.0, 'they': 1.0, 'has': 1.0, 'new': 1.0, 'well': 1.0, 'a': 1.0, 'easy': 1.0, 'might': 1.0, 'needed': 1.0, 'starting': 1.0, 'was': 1.0, 'to': 2.0, 'brand': 1.0, 'beautiful': 1.0, 'weigh': 1.0, 'out': 1.0, 'her': 1.0, 'as': 1.0, 'son': 1.0, 'use': 1.0, 'similar': 1.0, 'and': 2.0}
Word element => {'it': 1.0, 'lot': 1.0, 'a': 1.0, 'seat': 1.0, 'like': 1.0, 'car': 1.0, 'great': 1.0}
Word element => {'on': 1.0, 'lot': 1.0, 'long': 1.0, 'carseat': 3.0, 'her': 2.0, 'old': 2.0, 'i': 3.0, 'drives': 1.0, 'whole': 1.0, 'and': 3.0, 'me': 1.0, 'our': 1.0, 'were': 1.0, 'that': 1.0, 'now': 1.0, 'daughter': 1.0, 'year': 1.0, 'very': 1.0, 'for': 2.0, 'big': 1.0, '1': 1.0, 'comfortable': 1.0, 'looking': 1.0, 'my': 1.0, 'the': 2.0, 'a': 1.0, 'go': 1.0, 'we': 1.0, 't': 1.0, 'husband': 1.0, 'head': 1.0, 'would': 1.0, 'forward': 2.0, 'uncomfortable': 1.0, 'but': 2.0, 'doesn': 1.0, 'hated': 1.0, 'she': 2.0, 'it': 2.0, 'with': 1.0, 'perfect': 3.0, 'this': 1.0, 'made': 1.0, 'trip': 1.0, 'know': 1.0, 'fall': 2.0, 'is': 2.0, 'safe': 1.0}
Word element => {'g4': 1.0, 'roundabout': 1.0, 'holders': 1.0, 'cup': 1.0, 'excited': 1.0, 'all': 1.0, 'child': 1.0, 'compromising': 1.0, 'work': 1.0, 'make': 1.0, 'towel': 1.0, 'get': 1.0, 'left': 1.0, 'noodle': 1.0, 'pool': 1.0, 'no': 1.0, 'about': 2.0, 'two': 1.0, 'position': 1.0, 'something': 1.0, 'facing': 1.0, 'cars': 1.0, 'middle': 1.0, 'still': 1.0, 'side': 1.0, 'when': 3.0, 'secure': 1.0, 'snugride': 1.0, 'keep': 2.0, 're': 1.0, 'seats': 2.0, 'decided': 1.0, 'move': 1.0, 'install': 2.0, 'own': 1.0, 'tried': 1.0, 'until': 1.0, 'how': 1.0, 'our': 3.0, 'as': 1.0, 'had': 2.0, 'seat': 8.0, 'in': 5.0, 'could': 1.0, 'we': 15.0, 'safety': 1.0, 'latch': 3.0, 's': 1.0, 'maybe': 1.0, 'because': 2.0, 'so': 1.0, 'everything': 1.0, 'belts': 3.0, '90': 1.0, 'matter': 1.0, 'and': 7.0, 'rear': 1.0, 'too': 2.0, 'with': 1.0, 'this': 2.0, 'it': 4.0, 'felt': 1.0, 'enough': 1.0, 'loved': 1.0, 'got': 1.0, 'not': 1.0, 'tight': 1.0, 'vehicle': 1.0, 'convertible': 1.0, 'owned': 1.0, 'there': 1.0, 'instead': 2.0, 'was': 3.0, 'slack': 1.0, 'they': 2.0, 'able': 1.0, 'degree': 1.0, 'right': 1.0, 'bad': 1.0, 'britax': 3.0, 'lemon': 1.0, 'called': 1.0, 'marathon': 2.0, 'previously': 1.0, 'graco': 2.0, 'troubleshoot': 1.0, 'pulled': 1.0, 'to': 10.0, 'pretty': 2.0, 'many': 1.0, 'a': 5.0, 'confident': 1.0, 'comes': 1.0, 'installing': 1.0, 'primary': 1.0, 'exceptions': 1.0, 'but': 1.0, 'needed': 1.0, 'for': 1.0, 'shorter': 1.0, 'rides': 1.0, 'using': 2.0, 'second': 1.0, 'purchase': 1.0, 'simply': 1.0, 'only': 1.0, 'car': 9.0, 'suggestion': 1.0, 'returned': 1.0, 'the': 14.0, 'of': 2.0, 'tighten': 1.0, 'were': 3.0, 'making': 1.0}
Word element => {'would': 1.0, 'far': 1.0, 'so': 1.0, 'detect': 1.0, 'i': 2.0, 'comfortable': 1.0, 'baby': 1.0, 'recommend': 1.0, 'no': 1.0, 'seat': 1.0, 'the': 1.0, 'seems': 1.0, 'car': 1.0, 'happy': 1.0, 'problems': 1.0, 'in': 1.0, 'can': 1.0, 'great': 1.0, 'it': 2.0, 'and': 1.0, 'very': 1.0}
Word element => {'need': 1.0, 'are': 1.0, 'last': 1.0, 'am': 1.0, 'i': 1.0, 'switched': 1.0, 'before': 1.0, 'pinched': 1.0, 'relaxed': 1.0, 'safety': 2.0, 'good': 1.0, 'feel': 1.0, '1': 1.0, 'comfortable': 1.0, 'definately': 1.0, 'consumer': 1.0, 'we': 8.0, 'looked': 1.0, 'higher': 1.0, 'looks': 1.0, 'he': 1.0, 'received': 1.0, '100': 1.0, 'our': 3.0, 'to': 5.0, 'seat': 7.0, 'in': 1.0, 'out': 2.0, 'head': 1.0, 'little': 3.0, 'very': 1.0, 'was': 3.0, 'who': 1.0, 'keep': 1.0, 'bumping': 1.0, 'son': 3.0, 'while': 1.0, 'facing': 2.0, 'poor': 1.0, 'time': 3.0, 'infant': 3.0, 'car': 4.0, 'seats': 3.0, 'seemed': 1.0, 'market': 1.0, 'each': 1.0, 'less': 1.0, 'up': 1.0, 'his': 2.0, 'around': 1.0, 'at': 1.0, 'is': 4.0, 'more': 3.0, 'and': 7.0, 'bought': 1.0, 'get': 1.0, 'months': 2.0, '8': 1.0, 'old': 2.0, '2': 1.0, '80': 1.0, 'can': 1.0, 'room': 2.0, 'these': 2.0, 'of': 8.0, 'the': 12.0, 'careful': 1.0, 'record': 1.0, 'squished': 1.0, 'needed': 2.0, 'reports': 1.0, 'this': 1.0, 'much': 1.0, 'only': 1.0, 'difficulty': 1.0, 'than': 3.0, 'other': 2.0, 'for': 5.0, '10': 1.0, 'has': 2.0, 'will': 2.0, 'seems': 1.0, 'be': 4.0, 'it': 3.0, 'him': 1.0, 'able': 1.0, 'lot': 1.0, 'rear': 2.0, 'on': 2.0, 'long': 2.0, 'guy': 1.0, 'padding': 1.0, 'confident': 1.0, 'a': 6.0, 'slight': 1.0, 'that': 3.0, 'into': 1.0, 'tricky': 1.0, 'baby': 1.0, 'toddler': 1.0, 'running': 1.0, 'have': 1.0, 'not': 1.0, 'plenty': 1.0, 'with': 1.0, 'buy': 2.0, 'regardless': 1.0, 'acts': 1.0}
Word element => {'price': 1.0, 'purchase': 1.0, 'happy': 1.0, 'like': 1.0, 'me': 1.0, 'isn': 1.0, 'that': 1.0, 'of': 2.0, 'was': 1.0, 'easy': 1.0, 'and': 3.0, 'person': 1.0, 'room': 1.0, 'buckles': 1.0, 'for': 2.0, 'in': 3.0, 'difficult': 1.0, 'deal': 1.0, 'the': 5.0, 'big': 1.0, 'install': 1.0, 'great': 2.0, 'are': 3.0, 'colors': 1.0, 'on': 1.0, 'this': 1.0, '6': 1.0, 'he': 1.0, 'with': 2.0, 'infant': 1.0, 'car': 5.0, 'to': 4.0, 'grow': 1.0, 'seat': 5.0, 'our': 3.0, 'better': 1.0, 'got': 1.0, 'month': 1.0, 'it': 4.0, 'looks': 2.0, 'old': 1.0, 'times': 1.0, 'out': 1.0, 'safe': 1.0, 'who': 1.0, 'at': 1.0, 'secure': 1.0, 'but': 1.0, 'new': 1.0, 'really': 1.0, 'plenty': 1.0, 's': 1.0, 't': 1.0, 'we': 2.0, 'a': 3.0, 'grew': 1.0, 'very': 2.0, 'little': 1.0, 'click': 1.0}
Word element => {'slouching': 1.0, 'alseep': 1.0, 'glad': 1.0, 'am': 1.0, 'headrest': 1.0, 'love': 1.0, 'comfy': 1.0, 'so': 1.0, 'daughter': 2.0, 'infant': 1.0, 'car': 1.0, 'consider': 1.0, 'elantra': 1.0, 'perfectly': 1.0, 'my': 2.0, 'fits': 1.0, 'fact': 1.0, 'in': 3.0, 'fall': 1.0, 'is': 1.0, 'don': 1.0, 'took': 2.0, 'i': 5.0, 'looks': 1.0, 'mid': 1.0, 'it': 5.0, 'can': 1.0, 'but': 1.0, 'be': 2.0, 'adjusting': 1.0, 'overall': 1.0, 'reviews': 1.0, 'between': 1.0, 'installation': 1.0, 'that': 2.0, 'worried': 1.0, 'cumbersome': 1.0, 'size': 1.0, 'system': 1.0, 'facing': 1.0, 'wasn': 1.0, 'without': 1.0, 'the': 8.0, 't': 2.0, 'a': 3.0, 'at': 1.0, 'since': 1.0, 'think': 1.0, 'on': 1.0, 'and': 3.0, 'read': 1.0, 'little': 1.0, 'only': 1.0, '45min': 1.0, 'would': 1.0, 'carseat': 2.0, 'had': 1.0, 'somewhere': 1.0, 'this': 1.0, '30': 1.0, 'install': 1.0, 'which': 1.0, 'using': 1.0, 'latch': 1.0, 'bulky': 1.0, 'unloop': 1.0, 'compact': 1.0, 'rear': 1.0, 'all': 1.0, 'to': 4.0, 'seat': 2.0, 'was': 2.0, 'belt': 1.0, 'height': 1.0, 'compared': 1.0, 'part': 2.0, 'while': 1.0, 'from': 1.0, 'her': 1.0, 'personally': 1.0, 'hyundai': 1.0, 'metal': 1.0}
Word element => {'front': 1.0, 'but': 1.0, 'installed': 1.0, 'buckle': 1.0, 'on': 1.0, 'release': 1.0, 'pressing': 1.0, 'adjust': 1.0, 'hard': 2.0, 'very': 1.0, 'also': 1.0, 'lengths': 1.0, 'hidden': 1.0, 'or': 1.0, 'them': 2.0, 'hook': 1.0, 'good': 1.0, 'made': 2.0, 'seem': 1.0, 'remove': 1.0, 'days': 1.0, 'they': 1.0, 'underneath': 1.0, 'be': 2.0, 'towels': 1.0, 'rolls': 1.0, 'level': 1.0, 'keep': 1.0, 'lb': 1.0, 'button': 1.0, '150': 1.0, 'for': 3.0, 's': 4.0, 'difference': 1.0, 'we': 3.0, 'needed': 1.0, 'driver': 1.0, 'enough': 1.0, 'left': 1.0, '5': 1.0, 'arrangement': 1.0, 'time': 1.0, 'honda': 1.0, 'back': 2.0, 'sienna': 1.0, 'toddler': 1.0, 'child': 2.0, 'in': 5.0, 'seat': 10.0, 'to': 13.0, 'daughter': 1.0, 'pull': 2.0, 'when': 2.0, 'and': 4.0, 'few': 1.0, 'civic': 1.0, 'this': 4.0, '30': 1.0, 'a': 6.0, '1998': 1.0, 'only': 1.0, 'keyfit': 1.0, 'my': 4.0, 'anchors': 1.0, 'springs': 1.0, 'tight': 1.0, 'potentially': 1.0, 'carabiner': 1.0, 'fits': 1.0, 'positioned': 1.0, 'of': 3.0, 'the': 21.0, 'connectors': 1.0, 'adjusted': 1.0, 'bought': 1.0, 'from': 1.0, 'center': 1.0, 'outgrew': 1.0, 'latch': 4.0, 'lounge': 1.0, 'use': 1.0, 'her': 1.0, 'no': 1.0, 'chicco': 1.0, 'was': 9.0, 't': 2.0, 'belt': 1.0, 'so': 1.0, 'spaces': 1.0, 'easily': 1.0, 'that': 1.0, 'car': 7.0, 'two': 1.0, 'at': 1.0, 'lap': 1.0, 'since': 1.0, 'several': 1.0, 'down': 1.0, 'turned': 1.0, 'she': 1.0, 'hooks': 1.0, 'recline': 1.0, 'it': 4.0, 'overall': 1.0, 'adults': 1.0, 'secured': 1.0, 'using': 1.0, 'toyota': 1.0, 'didn': 2.0, 'have': 1.0, 'belts': 1.0, 'row': 1.0, 'not': 1.0, 'were': 2.0, 'tighten': 2.0, 'point': 1.0, 'their': 1.0, 'hardness': 1.0, 'second': 2.0, 'easy': 1.0, 'however': 1.0, 'safe': 1.0, 'born': 1.0, 'just': 1.0, 'placed': 1.0, 'seats': 2.0, 'best': 1.0, 'unsafe': 1.0, '2': 1.0, 'adjustment': 1.0, 'ride': 2.0, 'impossible': 1.0, 'toward': 1.0, 'floor': 1.0, 'rear': 2.0, 'facing': 3.0, 'position': 1.0, 'strap': 2.0, 'difficult': 2.0, 'had': 2.0, 'repeatedly': 1.0, 'purchased': 1.0, 'after': 2.0, 'with': 1.0, 'extremely': 1.0, 'secure': 1.0, '65': 2.0, 'room': 1.0, 'these': 1.0}
Word element => {'done': 1.0, 'self': 1.0, 'then': 1.0, 'out': 1.0, 'be': 1.0, 'can': 1.0, 'an': 1.0, 'something': 1.0, 'coils': 1.0, 'about': 1.0, 'resembling': 1.0, 'how': 2.0, 'design': 1.0, 'when': 1.0, 'teh': 1.0, 'needs': 1.0, 'awkward': 1.0, 'quite': 1.0, 'un': 1.0, 'tightener': 2.0, 'many': 1.0, 'level': 1.0, 'is': 2.0, 'padding': 1.0, 'long': 1.0, 'at': 1.0, 'trips': 1.0, 'even': 1.0, 'tolerate': 1.0, 'pulled': 1.0, 'install': 1.0, 'which': 1.0, 'baby': 2.0, 'strap': 1.0, 'are': 2.0, 'the': 4.0, 't': 1.0, 'holders': 1.0, 'this': 1.0, 'seatbelt': 1.0, 'it': 2.0, 'car': 1.0, 'override': 1.0, 'comfort': 1.0, 'hot': 1.0, 'has': 1.0, 'that': 1.0, 'only': 2.0, 'its': 2.0, 'doesn': 1.0, 'was': 1.0, 'actual': 1.0, 'seat': 1.0, 'to': 1.0, 'minus': 2.0, 'and': 4.0, 'very': 1.0, 'pluses': 2.0, 'in': 1.0, 'texas': 1.0, 'summers': 1.0, 'helps': 1.0, 'there': 1.0, 'right': 1.0, 'item': 1.0, 'cup': 1.0, 'large': 1.0, 'improvement': 1.0, 'enough': 1.0, 'for': 1.0, 'really': 1.0, 'every': 1.0, 'left': 1.0, 'get': 1.0, 'easy': 1.0}
Word element => {'can': 1.0, 'is': 1.0, 'age': 1.0, 'for': 1.0, 'in': 1.0, 'as': 2.0, 'gives': 1.0, 'have': 1.0, 'grandson': 1.0, 'to': 1.0, 'peace': 1.0, 'car': 1.0, 'my': 2.0, 'be': 1.0, 'bought': 1.0, 'mind': 1.0, 'i': 1.0, 'fits': 1.0, 'me': 1.0, 'well': 1.0, 'months': 1.0, 'safe': 1.0, 'at': 1.0, 'of': 1.0, '6': 1.0, 'he': 3.0, 'this': 1.0, 'it': 1.0}
Word element => {'they': 1.0, 'hand': 1.0, 'on': 1.0, 'get': 1.0, 'her': 1.0, 'hard': 1.0, 'would': 2.0, 'position': 2.0, 'look': 1.0, 'isn': 1.0, 'reclined': 1.0, 'child': 1.0, 'when': 2.0, 'other': 2.0, 'weighs': 1.0, 'safety': 1.0, 'upright': 1.0, 'factor': 1.0, 'determining': 1.0, 'compact': 1.0, 'how': 1.0, 'see': 1.0, 'can': 1.0, 'but': 1.0, 'issue': 1.0, 'suv': 1.0, 'an': 3.0, 'nice': 1.0, 'big': 1.0, 'fall': 1.0, 'shouldn': 1.0, 'is': 6.0, 'uncomfortable': 1.0, 'one': 1.0, 'in': 5.0, 'very': 2.0, 'recommend': 1.0, 'doesn': 1.0, 'was': 1.0, 'she': 3.0, 'it': 7.0, 'this': 6.0, 'daughter': 1.0, 't': 3.0, 'a': 2.0, 'could': 1.0, 'we': 2.0, 'safe': 1.0, 'things': 1.0, 'reports': 1.0, 'purchased': 1.0, 'as': 1.0, 'to': 3.0, 'seat': 4.0, 'not': 2.0, 'car': 4.0, 'listed': 1.0, 'asleep': 1.0, 'the': 4.0, 'buy': 1.0, 'two': 1.0, 'i': 5.0, 'best': 1.0, '34': 2.0, 'rather': 1.0, 'of': 1.0, 'so': 2.0, 'grade': 1.0, 'pray': 1.0, 'appears': 1.0, 'there': 1.0, 'gave': 1.0, 'that': 5.0, 'consumer': 1.0, 'my': 2.0, 'really': 2.0, 'likes': 1.0, 'have': 2.0, 'class': 1.0, 'and': 2.0, 'much': 1.0, 'its': 1.0, 'do': 1.0, 'be': 4.0, 'never': 1.0, 'because': 3.0, 'find': 1.0, 'convenience': 1.0, 'out': 2.0, 'are': 1.0, 'product': 1.0, 'for': 2.0, 'love': 1.0, 'about': 1.0}
Word element => {'difficult': 1.0, 'since': 1.0, 'someone': 1.0, 'by': 1.0, 'installed': 1.0, 'having': 1.0, 'maybe': 1.0, 'recommend': 2.0, 'would': 1.0, 'hated': 1.0, 'car': 2.0, 'go': 1.0, 'gets': 1.0, 'pumpkin': 1.0, 'baby': 1.0, 'she': 2.0, 'than': 1.0, 'more': 1.0, 'much': 1.0, 'sturdy': 1.0, 'ready': 1.0, 'tall': 1.0, 'and': 4.0, 'or': 1.0, 'behind': 2.0, 'latch': 1.0, 'driver': 1.0, 'did': 2.0, 'her': 1.0, 'smaller': 1.0, 'vehixle': 1.0, 'system': 1.0, 'forward': 2.0, 'don': 1.0, 'short': 1.0, '10': 1.0, 'safe': 1.0, 'am': 1.0, 'work': 1.0, 'but': 3.0, 'so': 1.0, 'can': 1.0, 'if': 1.0, 'still': 1.0, 'facing': 2.0, 'little': 1.0, 'two': 1.0, 'planned': 1.0, 'daughter': 2.0, 'bit': 1.0, 'know': 1.0, 'like': 1.0, 'as': 1.0, 'pretty': 1.0, 'to': 4.0, 'always': 1.0, 'has': 2.0, 'who': 1.0, 'won': 1.0, 'mazda': 1.0, 'front': 1.0, 'a': 10.0, 'take': 1.0, 'we': 4.0, 'fit': 1.0, 't': 2.0, 'wuld': 1.0, 'out': 1.0, 'have': 2.0, 'is': 6.0, 'rear': 1.0, 'durable': 1.0, 'mentioned': 1.0, 'else': 1.0, 'very': 3.0, 'passenger': 1.0, 'everyone': 1.0, 'large': 1.0, '45': 1.0, 'just': 1.0, 'on': 1.0, 'this': 4.0, 'pain': 2.0, 'it': 14.0, 'month': 2.0, 'seat': 6.0, 'in': 6.0, 'person': 1.0, 'the': 7.0, 'of': 3.0, 'us': 1.0, 'was': 2.0, 'get': 1.0, 'secure': 2.0, 'with': 2.0, 'that': 1.0, 'now': 2.0, '3': 1.0, 'taking': 1.0, 'older': 1.0, 'though': 1.0, 'minutes': 1.0, 'trying': 1.0, 'i': 4.0, 'well': 1.0, 'putting': 1.0, 'be': 1.0, 'our': 2.0, 'how': 1.0, 'excited': 1.0, 'after': 1.0, 'seems': 1.0, 'see': 1.0, 'until': 1.0, 'great': 1.0, 'old': 1.0, 'face': 1.0, 'overall': 1.0, 'strongly': 1.0, 'had': 1.0, 'my': 1.0, 'loes': 1.0}
Word element => {'forward': 1.0, 'enjoy': 1.0, 'to': 1.0, 'drive': 1.0, 'and': 1.0, 'facing': 2.0, 'for': 1.0, 'rear': 1.0, 'car': 1.0, 'best': 1.0, 't': 1.0, 'the': 1.0, 'seat': 1.0, 'not': 1.0, 's': 1.0, 'it': 1.0, 'can': 1.0, 'wait': 1.0, 'month': 1.0, 'until': 1.0, '10': 1.0, 'i': 1.0, 'old': 1.0, 'be': 1.0, 'my': 1.0, 'lo': 1.0, 'safe': 1.0}
Word element => {'installspaciousshe': 1.0, 'easy': 1.0, '40': 1.0, 'facing': 1.0, 'rear': 1.0, 'keeping': 1.0, 'be': 1.0, 'choice': 1.0, 'glad': 1.0, 'very': 1.0, 'are': 1.0, 'joy': 1.0, 'with': 2.0, 'and': 1.0, 'room': 1.0, 'got': 1.0, 'tell': 1.0, 'can': 1.0, 'long': 1.0, 'space': 1.0, 'this': 3.0, 'first': 1.0, 'exspected': 1.0, 'max': 1.0, 'weight': 1.0, 'we': 4.0, 'so': 1.0, 'loves': 1.0, 'of': 2.0, 'up': 1.0, 'because': 2.0, 'not': 1.0, 'till': 1.0, 'is': 1.0, 'plenty': 2.0, 'large': 1.0, 'for': 3.0, 'u': 1.0, 'which': 1.0, 'it': 3.0, 'she': 4.0, 'her': 5.0, 'last': 1.0, 'needed': 1.0, 'its': 1.0, 'our': 1.0, 'grow': 1.0, 'seat': 2.0, 'to': 5.0, 'recommend': 1.0, 'was': 2.0, 'will': 3.0, 'have': 1.0, 'birthday': 1.0, 'move': 1.0, 'later': 1.0, 'from': 1.0, 'shes': 2.0, 'car': 1.0, 'week': 1.0, 'infant': 1.0, 'about': 1.0, 'height': 2.0, 'pass': 1.0, 'in': 3.0, 'the': 1.0, '90th': 1.0, 'likes': 1.0, 'expected': 1.0, 'percentile': 1.0, 'pounds': 1.0, 'hits': 1.0, 'giggles': 1.0, 'i': 1.0}
Word element => {'of': 1.0, 'keep': 1.0, 'help': 1.0, 'cup': 1.0, 'has': 1.0, 'that': 1.0, 'used': 1.0, 'have': 1.0, 'on': 1.0, 'later': 1.0, 'sippy': 1.0, 'booster': 1.0, 'yet': 1.0, 'for': 2.0, 'little': 1.0, 'nice': 1.0, 'car': 1.0, 'as': 1.0, 'very': 1.0, 'and': 1.0, 'ones': 1.0, 'the': 2.0, 'not': 1.0, 'seat': 2.0, 'a': 2.0, 'is': 3.0, 'this': 1.0, 'it': 6.0, 'supposed': 2.0, 'loves': 1.0, 'stays': 1.0, 'track': 1.0, 'holders': 1.0, 'but': 1.0, 'work': 1.0, 'put': 1.0, 'cups': 1.0, 'where': 1.0, 'granddaughter': 1.0, 'to': 3.0, 'i': 1.0, 'guess': 1.0}
Word element => {'again': 1.0, 'anywhere': 1.0, 'going': 1.0, 'clicked': 1.0, 'makes': 1.0, 'would': 1.0, 'installment': 1.0, 'knowing': 1.0, 'proper': 1.0, 'level': 1.0, 'in': 3.0, 's': 2.0, 'built': 1.0, 'for': 1.0, 'ensures': 1.0, 'not': 2.0, 'seat': 1.0, 'purchase': 1.0, 'feel': 1.0, 'sturdy': 1.0, 'issue': 1.0, 'me': 2.0, 'and': 1.0, 'safer': 1.0, 'very': 1.0, 'once': 1.0, 'solid': 1.0, 'belt': 1.0, 'is': 2.0, 'this': 1.0, 'it': 2.0, 'hard': 1.0, 'to': 1.0, 'but': 1.0, 'an': 1.0, 'click': 1.0, 'that': 2.0}
Word element => {'aspects': 1.0, 'safety': 1.0, 'satisfied': 1.0, 'them': 1.0, 'toys': 1.0, 'her': 1.0, 'to': 1.0, 'learned': 1.0, 'nice': 1.0, 'overall': 1.0, 'are': 1.0, 'coushioning': 1.0, 'ample': 1.0, 'is': 1.0, 'really': 1.0, 'the': 4.0, 'cup': 2.0, 'my': 1.0, 'floor': 1.0, 'product': 2.0, 'like': 1.0, 'put': 1.0, 'holders': 1.0, 'quality': 2.0, 'comfy': 1.0, 'and': 4.0, 's': 1.0, 'with': 1.0, 'this': 2.0, 'it': 2.0, 'there': 1.0, 'of': 3.0, 'completely': 1.0, 'instead': 1.0, 'sturdy': 1.0, 'feel': 2.0, 'one': 1.0, 'comfortable': 1.0, 'old': 1.0, 'i': 3.0, 'putting': 1.0, 'very': 3.0, 'year': 1.0, 'seems': 1.0, 'in': 2.0, 'she': 2.0}
Word element => {'problem': 1.0, 'be': 1.0, 'terribly': 1.0, 'not': 1.0, '34': 1.0, 'so': 1.0, 'another': 1.0, 'my': 1.0, 'upright': 1.0, 'front': 2.0, 'means': 1.0, 'that': 2.0, 'golf': 1.0, 'door': 1.0, 'turn': 1.0, 'in': 3.0, '5': 2.0, 'room': 1.0, 'once': 1.0, 'of': 1.0, 'takes': 1.0, 'rearward': 1.0, 'vw': 1.0, 'when': 1.0, 'no': 1.0, 'luckily': 1.0, 'though': 1.0, 'even': 2.0, 'around': 1.0, 'shouldn': 1.0, 'shifted': 1.0, 'is': 3.0, 'unexpected': 1.0, 'because': 1.0, 'base': 1.0, 'chose': 1.0, 'and': 2.0, 'rear': 1.0, 'year': 1.0, 'features': 1.0, 'easy': 1.0, 'still': 1.0, 'facing': 2.0, 'looks': 1.0, 'she': 1.0, 'it': 8.0, 'first': 1.0, 'car': 1.0, 'bought': 1.0, 'for': 1.0, 'kid': 2.0, 'but': 1.0, 'can': 1.0, 'take': 1.0, 'lot': 1.0, 'who': 1.0, 'outgrowing': 1.0, 'way': 1.0, 'good': 1.0, 'her': 1.0, 'seat': 7.0, 'to': 2.0, 'our': 2.0, 'all': 1.0, 'the': 5.0, 'was': 1.0, 'anymore': 2.0, 'doesn': 1.0, 'forward': 2.0, 'this': 1.0, 'holders': 1.0, 'need': 1.0, 'comfortable': 1.0, 'big': 1.0, 'padded': 1.0, 'until': 1.0, 'install': 1.0, 'nice': 1.0, 'we': 2.0, 's': 3.0, 't': 2.0, 'a': 4.0, 'has': 1.0, 'well': 1.0, 'up': 1.0, 'child': 1.0, 'converts': 1.0, 'from': 1.0, '4': 1.0, 'feature': 1.0, 'two': 1.0, 'cup': 1.0}
Word element => {'time': 1.0, 'long': 1.0, 'll': 1.0, 'think': 1.0, 'good': 1.0, 'be': 2.0, 'quality': 1.0, 'than': 1.0, 'haven': 1.0, 'less': 1.0, 'still': 1.0, 'facing': 1.0, 'rear': 1.0, 'managed': 1.0, 'is': 1.0, 'with': 2.0, 'it': 2.0, 'the': 5.0, 'rush': 1.0, 'very': 2.0, 'its': 1.0, 'pounds': 1.0, 'ratings': 1.0, 'i': 6.0, 'any': 1.0, 'to': 3.0, 'seat': 2.0, 'stay': 1.0, 'not': 1.0, 'toddler': 2.0, '30': 1.0, 'this': 2.0, 'holders': 1.0, 'using': 1.0, 'reading': 1.0, 'one': 1.0, 'bought': 2.0, 'appears': 1.0, 'use': 3.0, 'after': 1.0, 'consumer': 1.0, 'or': 1.0, 'cup': 1.0, 'car': 1.0, 'infant': 1.0, '2': 1.0, 'but': 1.0, 'can': 1.0, 'easy': 1.0, 'get': 1.0, 'and': 2.0, 'in': 3.0, 've': 2.0, 'out': 1.0, 'easily': 1.0, 'when': 1.0, 'm': 1.0, 't': 1.0, 'we': 4.0, 'a': 2.0, 'had': 1.0, 'reports': 1.0, 'thought': 1.0, 'were': 1.0, 'an': 1.0, 'silly': 1.0, 'they': 1.0, 'for': 3.0, 'love': 1.0, 'actually': 1.0, 'installation': 1.0, 'been': 1.0, 'problems': 1.0, 'handy': 1.0, 'wee': 1.0}
Word element => {'child': 1.0, 'seat': 2.0, 'asleep': 1.0, 'whole': 1.0, 'quite': 1.0, 'during': 1.0, 'daughter': 1.0, 'distance': 1.0, 'became': 1.0, 'in': 1.0, '13': 1.0, 'this': 1.0, 'it': 1.0, 'immediately': 1.0, 'my': 1.0, 'great': 2.0, 'the': 1.0, 'fell': 1.0, 'months': 1.0, 'on': 1.0, '200': 1.0, 'kms': 1.0, 'and': 2.0, 'drive': 1.0}
Word element => {'nice': 1.0, 'very': 1.0, 'belt': 1.0, 'secure': 1.0, 'that': 1.0, 'graco': 1.0, 'childs': 1.0, 'got': 1.0, 'use': 1.0, 'hold': 1.0, 'move': 1.0, 'clip': 1.0, 'child': 1.0, 'on': 1.0, 'in': 1.0, 'product': 1.0, 'for': 1.0, 'i': 1.0, 'head': 2.0, 'plenty': 1.0, 'sliding': 1.0, 'huge': 1.0, 'support': 1.0, 'lower': 1.0, 'this': 1.0, 'he': 1.0, 'car': 3.0, 'of': 1.0, 'room': 1.0, 'say': 1.0, 'around': 1.0, 'is': 2.0, 'can': 1.0, 'but': 1.0, 'from': 1.0, 'while': 1.0, 'she': 1.0, 'easy': 1.0, 'goes': 1.0, 'harness': 1.0, 'the': 8.0, 'place': 1.0, 'without': 2.0, 'away': 1.0, 'and': 1.0, 'to': 4.0, 'seat': 4.0, 'latches': 1.0, 'sleep': 1.0, 'as': 1.0, 'adjustable': 1.0, 'other': 1.0, 'manufactures': 1.0, 'does': 1.0, 'ample': 1.0, 'cushion': 1.0}
Word element => {'of': 2.0, 'ease': 1.0, 'quite': 1.0, 'carseat': 1.0, 'know': 1.0, 'fine': 1.0, 'just': 1.0, 'in': 3.0, 'out': 2.0, 'seat': 1.0, 'grow': 1.0, 'to': 3.0, 'daughter': 1.0, '1': 1.0, 'love': 1.0, 'fit': 2.0, 'for': 2.0, 'try': 1.0, 'harness': 1.0, 'cupholders': 1.0, 'will': 1.0, 'adjusted': 1.0, 'i': 6.0, 'snug': 1.0, 'old': 2.0, 'time': 1.0, 'so': 3.0, 'after': 1.0, 'little': 1.0, 'taking': 1.0, 'able': 1.0, 'convertible': 1.0, 'getting': 1.0, 'couldn': 1.0, 'started': 1.0, 'my': 4.0, 'dual': 1.0, 'on': 3.0, 'son': 3.0, 'is': 1.0, 'researching': 1.0, 'many': 1.0, '10': 1.0, 'carrier': 1.0, 'and': 5.0, 'too': 2.0, 'year': 1.0, 'his': 1.0, 'room': 1.0, 'before': 1.0, 'car': 1.0, 'infant': 1.0, '2': 2.0, 'particularly': 1.0, 'was': 1.0, 'had': 1.0, 'happier': 1.0, 'research': 1.0, 'with': 2.0, 'she': 1.0, 'it': 3.0, 'doing': 1.0, 'this': 2.0, 'carseats': 2.0, 'ones': 1.0, 'a': 2.0, 't': 1.0, 'into': 1.0, 'installation': 1.0, 'that': 2.0, 'some': 2.0, 'headache': 1.0, 'finally': 1.0, 'months': 1.0, 'decided': 2.0, 'one': 1.0, 'the': 5.0, 'possibly': 1.0, 'him': 2.0, 'be': 2.0}
Word element => {'and': 1.0, 'put': 1.0, 'places': 1.0, 'handy': 1.0, 'come': 1.0, 'cup': 1.0, 'size': 1.0, 'normal': 1.0, 'deviations': 1.0, 'yours': 1.0, 'it': 2.0, 'holders': 1.0, 'kids': 1.0, 'this': 1.0, 'in': 2.0, 'toys': 1.0, 'need': 1.0, 'which': 1.0, 'i': 1.0, 'sippy': 1.0, 'corolla': 1.0, 'several': 1.0, '06': 1.0, 'nice': 1.0, 'big': 1.0, 'the': 1.0, 'somewhere': 1.0, 'kid': 1.0, 'wife': 1.0, 'unless': 1.0, 'when': 2.0, 'you': 1.0, 'cups': 1.0, 'as': 1.0, 'to': 3.0, 'standard': 1.0, 'usually': 1.0, 'be': 1.0, 'camry': 1.0, 'do': 1.0, 'take': 1.0, 'well': 1.0, '2013': 1.0, 'also': 1.0, 'will': 1.0, 'my': 2.0, 'fits': 1.0, 'rear': 3.0, 'facing': 1.0, 'how': 1.0, 's': 1.0, 'we': 1.0, 'use': 1.0, '2': 1.0, 'but': 1.0, 'most': 1.0, 'till': 1.0, 'is': 3.0, 'fface': 1.0, 'off': 1.0, '40': 1.0, 'lb': 1.0, 'so': 1.0, 'should': 1.0, 'good': 1.0, 'there': 1.0, 'for': 1.0}
Word element => {'seems': 1.0, 'its': 1.0, 'seats': 1.0, 'car': 1.0, 'forward': 1.0, 'safe': 1.0, 'two': 1.0, 'between': 1.0, 'fits': 1.0, 'very': 2.0, 'big': 1.0, 'of': 1.0, 'ive': 1.0, 'thing': 1.0, 'tan': 1.0, 'deville': 1.0, 'a': 2.0, 'looks': 1.0, 'is': 2.0, 'complaint': 1.0, 'warning': 1.0, 'more': 1.0, 'my': 1.0, 'cadillac': 1.0, 'this': 2.0, 'only': 1.0, 'and': 2.0, 'though': 1.0, 'much': 1.0, 'barely': 1.0, 'our': 1.0, 'facing': 1.0, 'bigger': 1.0, 'last': 1.0, 'comfortable': 1.0, 'one': 1.0, 'got': 1.0}
Word element => {'years': 1.0, '3': 1.0, 'at': 1.0, 'until': 1.0, 'able': 1.0, 'be': 1.0, 'them': 1.0, 'expect': 1.0, 'old': 2.0, 'year': 1.0, 'almost': 1.0, 'worth': 1.0, 'are': 4.0, 'other': 1.0, 'back': 1.0, 'whole': 1.0, 'up': 1.0, 'take': 1.0, 'they': 3.0, 'was': 1.0, 'had': 1.0, 'butt': 1.0, 'snugride': 1.0, 'that': 2.0, 'graco': 1.0, 'from': 1.0, 'straps': 2.0, 'girls': 1.0, 'well': 1.0, 'has': 1.0, 'it': 2.0, 'only': 1.0, 'use': 1.0, 'wonderful': 1.0, 'front': 1.0, 'car': 4.0, 'than': 1.0, 'expectations': 1.0, 'huge': 1.0, 'the': 5.0, 'these': 3.0, 'and': 5.0, 'surpassed': 1.0, 'have': 3.0, 'i': 2.0, 'caution': 1.0, 'love': 1.0, 'money': 1.0, '2': 2.0, 'can': 1.0, 'own': 1.0, 'consider': 1.0, 'this': 1.0, 'pain': 1.0, 'in': 1.0, 'least': 1.0, 'our': 2.0, 'to': 5.0, 'seat': 3.0, 'word': 1.0, 'a': 3.0, 'we': 3.0, 's': 1.0, 'of': 2.0, 'is': 1.0, 'adjust': 2.0, 'door': 1.0, 'want': 1.0, 'if': 1.0, 'my': 2.0, 'may': 1.0, 'another': 1.0, 'you': 2.0, 'twins': 1.0, 'seats': 3.0}
Word element => {'rides': 1.0, 'car': 1.0, 'looking': 1.0, 'was': 1.0, 'head': 1.0, 'pillow': 1.0, 'which': 1.0, 'body': 1.0, 'he': 3.0, 'loves': 2.0, 'back': 1.0, 'lean': 1.0, 'easily': 1.0, 'you': 1.0, 'enough': 1.0, 'far': 1.0, 'out': 1.0, '2006': 1.0, 'passengers': 1.0, 'and': 4.0, 'perfectly': 1.0, 'i': 2.0, 'accord': 1.0, 'huge': 1.0, 'fall': 1.0, 'is': 4.0, 'his': 1.0, 'features': 1.0, 'rear': 1.0, 'side': 3.0, 'it': 3.0, 'only': 1.0, 'met': 1.0, 'of': 2.0, 'there': 1.0, 'what': 1.0, 'either': 2.0, 'asleep': 1.0, 'the': 8.0, 'a': 3.0, 't': 1.0, 'honda': 1.0, 'cup': 2.0, 'while': 1.0, 'stick': 1.0, 'must': 1.0, 'have': 3.0, 'my': 2.0, 'fits': 1.0, 'can': 1.0, 'sitting': 1.0, 'most': 1.0, 'but': 1.0, 'forward': 1.0, 'this': 1.0, 'holders': 2.0, '34': 2.0, 'both': 1.0, 'amount': 1.0, 'busy': 1.0, 'son': 1.0, 'facing': 2.0, 'in': 4.0, 'to': 3.0, 'seat': 3.0, 'center': 1.0, 'problem': 1.0, 'fine': 1.0, 'isn': 1.0, 'comfortable': 1.0, 'for': 4.0, 'room': 1.0, 'make': 1.0, 'on': 2.0, 'long': 1.0, 'armrests': 1.0}
Word element => {'great': 1.0, 'works': 1.0}
Word element => {'nightmare': 1.0, 'of': 1.0, 'buckled': 1.0, 'getting': 1.0, 'trouble': 1.0, 'have': 1.0, 'frequently': 1.0, 'very': 2.0, 'i': 1.0, 'that': 1.0, 'car': 2.0, 'button': 1.0, 'problems': 1.0, 'difficult': 1.0, 'son': 1.0, '1': 1.0, 'get': 2.0, 'and': 4.0, 'it': 5.0, 'he': 1.0, 'is': 2.0, 'especially': 1.0, 'deal': 1.0, 'the': 6.0, '2': 1.0, 'are': 2.0, 'which': 1.0, 'using': 1.0, 'with': 1.0, 'frustrating': 1.0, 'convenient': 1.0, 'really': 2.0, 'attractive': 1.0, 'making': 1.0, 'cup': 1.0, 'my': 1.0, 'hard': 1.0, 'while': 1.0, 'this': 1.0, 'release': 2.0, 'holders': 1.0, 'there': 1.0, 'a': 3.0, 's': 3.0, 'bucket': 1.0, 'harness': 1.0, 'seat': 3.0, 'to': 3.0, 'major': 2.0, 'now': 1.0, 'in': 2.0, 'couple': 1.0, 'out': 2.0, 'bigger': 1.0, '18': 1.0, 'months': 1.0, '3': 1.0, 'constantly': 1.0, 'make': 1.0, 'on': 1.0, 'sticks': 2.0}
Word element => {'ll': 1.0, 'will': 1.0, 'cars': 1.0, 'smaller': 1.0, 'do': 1.0, 'would': 1.0, 'think': 1.0, 'don': 1.0, 'height': 1.0, 'well': 1.0, 'percentile': 1.0, 'out': 2.0, '90th': 1.0, 'is': 1.0, 'i': 6.0, 'buy': 2.0, 'bought': 1.0, 'material': 1.0, 'the': 4.0, 'hopefully': 1.0, 'my': 1.0, 'this': 3.0, 'with': 1.0, 'car': 3.0, 'stretch': 1.0, 'last': 2.0, 'he': 3.0, '6': 1.0, 'of': 1.0, 'in': 4.0, 'for': 3.0, 'love': 1.0, 'money': 1.0, 'can': 2.0, 'it': 5.0, 'month': 1.0, 'and': 3.0, 'easy': 1.0, 'get': 1.0, 'great': 1.0, 'stays': 1.0, 'easily': 1.0, 'cooler': 1.0, 'be': 1.0, 'him': 1.0, 'because': 2.0, 'than': 1.0, 'his': 1.0, 't': 1.0, 'a': 2.0, 's': 2.0, 'seat': 3.0, 'sleep': 1.0, 'to': 2.0, 'have': 3.0, 'no': 1.0, 'old': 1.0, 'problems': 1.0, 'suv': 1.0}
Word element => {'ship': 1.0, 'week': 1.0, 'took': 1.0, 'only': 1.0, 'guam': 1.0, 'on': 1.0, 'live': 1.0, 'doing': 1.0, 'prone': 1.0, 'usually': 1.0, 'cover': 2.0, 'daughter': 1.0, 'easy': 2.0, 'month': 1.0, 'she': 1.0, 'i': 2.0, 'old': 1.0, 'snug': 1.0, 'instructions': 1.0, 'hard': 1.0, 'and': 3.0, 'experience': 1.0, 'chose': 1.0, 'away': 1.0, 'forward': 1.0, 'the': 3.0, 'one': 1.0, 'facing': 1.0, 'required': 1.0, 'quick': 1.0, 'with': 2.0, 'manual': 1.0, 'me': 1.0, 'not': 1.0, 'yayyyy': 1.0, 'to': 5.0, 'all': 3.0, 'seat': 2.0, 'no': 1.0, 'my': 2.0, 'equipped': 1.0, 'can': 1.0, 'around': 1.0, 'is': 3.0, 'level': 1.0, 'at': 2.0, 'indicator': 1.0, 'feisty': 1.0, 'a': 3.0, 'plus': 1.0, 'for': 1.0, 'fit': 1.0, 'definite': 1.0, 'washable': 1.0, 'way': 1.0, 'that': 1.0, 'read': 2.0, 'little': 1.0, '28': 1.0, 'rip': 1.0, 'like': 1.0}
Word element => {'purchase': 1.0, 'pleased': 1.0, 'very': 1.0, 'price': 1.0, 'double': 1.0, 'not': 1.0, 'worth': 1.0, 'having': 2.0, 'large': 1.0, 'quite': 1.0, 'britax': 1.0, 'are': 2.0, 'however': 1.0, 'bulky': 1.0, 'time': 1.0, 'bit': 2.0, 'on': 1.0, 'grows': 1.0, 'straps': 2.0, 'safety': 1.0, 'gets': 1.0, 'son': 2.0, 'the': 7.0, 'uninstall': 1.0, 'ratings': 1.0, 'i': 4.0, 'arm': 1.0, 'particular': 1.0, 'did': 1.0, 'recommend': 1.0, 'was': 1.0, 'doesn': 1.0, 'an': 1.0, 'we': 1.0, 't': 1.0, 'a': 6.0, 'lot': 1.0, 'baby': 1.0, 'relatively': 1.0, 'easy': 1.0, 'carseats': 1.0, 'this': 2.0, 'research': 1.0, 'only': 1.0, 'felt': 1.0, 'it': 2.0, 'before': 1.0, 'carseat': 1.0, 'down': 1.0, 'with': 1.0, 'buying': 1.0, 'of': 2.0, 'leg': 1.0, 'convertible': 2.0, 'more': 1.0, 'level': 1.0, 'say': 1.0, 'is': 3.0, 'really': 1.0, 'and': 4.0, 'spend': 2.0, 'great': 1.0, 'install': 1.0, 'comfortable': 1.0, 'for': 1.0, 'all': 1.0, 'as': 1.0, 'to': 7.0, 'seat': 3.0, 'our': 3.0, 'loves': 1.0, 'that': 1.0, 'cost': 1.0, 'would': 3.0, 'sides': 1.0, 'anyone': 1.0, 'be': 1.0, 'you': 1.0, 'have': 1.0, 'adjust': 2.0}
Word element => {'enjoy': 1.0, 'like': 1.0, 'seems': 1.0, 'holders': 1.0, 'acquired': 1.0, 'animals': 1.0, 'snacks': 1.0, 'newly': 1.0, 'sticks': 1.0, 'favor': 1.0, 'was': 2.0, 'she': 2.0, 'unfortunately': 1.0, 'reasons': 1.0, 'my': 2.0, 'extended': 1.0, 'admit': 1.0, 'getting': 1.0, 'who': 1.0, 'at': 2.0, 'something': 1.0, 'ride': 1.0, 'face': 1.0, 'and': 5.0, 'comfy': 1.0, 'familiarity': 1.0, 'new': 1.0, 'main': 1.0, 'time': 1.0, 'small': 1.0, 'a': 4.0, 'we': 3.0, 's': 1.0, 'going': 1.0, 'well': 1.0, 'i': 3.0, 'cup': 1.0, 'cups': 1.0, '4': 1.0, 'old': 1.0, 'purchased': 1.0, 'had': 2.0, 'month': 1.0, 'it': 4.0, 'our': 2.0, 'to': 2.0, 'for': 5.0, 't': 2.0, 'fit': 1.0, 'where': 1.0, 'recently': 1.0, 'stuffed': 1.0, 'graco': 1.0, 'daughter': 2.0, 'in': 1.0, 'seat': 5.0, 'hadn': 1.0, 'back': 1.0, 'car': 2.0, 'this': 3.0, 'over': 1.0, 'drive': 1.0, 'out': 1.0, 'quite': 1.0, 'of': 2.0, 'the': 5.0, 'more': 1.0, 'grown': 1.0, 'long': 1.0, 'her': 2.0, 'doors': 1.0, 'will': 1.0, 'also': 1.0, 'products': 1.0, 'capabilities': 1.0, 'toddler': 1.0, 'but': 3.0, 'so': 1.0, 'can': 1.0, 'facing': 1.0, '2001': 1.0, 'police': 1.0, 'toyota': 1.0, 'which': 1.0, 'cab': 1.0, 'does': 1.0, 'forward': 1.0, 'not': 1.0, 'have': 1.0, 'or': 1.0, 'one': 1.0, 'holidays': 1.0, 'rear': 1.0, '20': 1.0, 'that': 1.0, 'loves': 1.0, 'very': 1.0, 'being': 1.0, 'said': 1.0, 'tundra': 1.0, 'perfectly': 1.0, 'bit': 1.0, 'inspected': 1.0, 'needed': 1.0, 'local': 1.0, 'department': 1.0, 'they': 1.0, 'biggest': 1.0, 'only': 1.0, 'full': 2.0, 'tighten': 1.0, 'little': 1.0, 'seeing': 1.0, 'are': 1.0, 'now': 1.0}
Word element => {'child': 1.0, 'because': 1.0, 'didn': 2.0, 'use': 3.0, 'pretty': 1.0, 'either': 1.0, 'cinch': 1.0, 'not': 2.0, 'with': 2.0, 'have': 1.0, 'enough': 1.0, 'old': 1.0, 'when': 1.0, 'him': 1.0, 'be': 1.0, 'they': 1.0, 'can': 1.0, 'but': 3.0, 'all': 1.0, 'to': 3.0, 'as': 1.0, 'hard': 1.0, 'from': 1.0, 'for': 2.0, 'install': 2.0, 'nice': 1.0, 'great': 1.0, 'the': 4.0, 'annoying': 1.0, 'it': 4.0, 'he': 3.0, 'much': 1.0, 'only': 1.0, 't': 2.0, 'a': 4.0, 's': 1.0, 'we': 1.0, 'was': 1.0, 'now': 2.0, 'padding': 1.0, 'carseat': 4.0, 'too': 1.0, 'and': 2.0, 'price': 1.0, 'both': 1.0, '34': 2.0, 'there': 1.0, 'bought': 1.0, 'upgrade': 1.0, 'anchors': 1.0, 'my': 2.0, 'happy': 1.0, 'cup': 2.0, 'infant': 1.0, 'out': 1.0, 'sippy': 1.0, 'them': 1.0, 'first': 1.0, 'reversible': 1.0, 'ways': 1.0, 'is': 2.0, 'fully': 1.0, 'son': 2.0, 'facing': 1.0, 'forward': 1.0, 'carseats': 1.0, 'this': 1.0, 'holders': 1.0, 'next': 1.0, 'that': 3.0, 'loves': 1.0, 'i': 4.0, 'will': 1.0, 'also': 1.0, 'in': 1.0, 'like': 2.0, 'normal': 1.0, 'are': 2.0, 'puts': 1.0, 'need': 1.0, 'toys': 1.0}
Word element => {'reviews': 1.0, 'for': 1.0, 'comfortable': 1.0, 'be': 1.0, 'excellent': 1.0, 'seat': 1.0, 'car': 1.0, 'head': 1.0, 'the': 2.0, 'install': 1.0, 'easy': 1.0, 'holds': 1.0, 'safe': 1.0, 'very': 1.0, 'and': 2.0, 'appears': 1.0, 'up': 1.0, 'build': 1.0, 'well': 1.0, 'fall': 1.0, 'safety': 1.0, 'when': 1.0, 'i': 1.0, 'they': 1.0, 'to': 2.0, 'asleep': 1.0, 'childs': 1.0, 'feel': 1.0, 'baby': 1.0, 'is': 1.0, 'in': 1.0, 'this': 1.0}
Word element => {'them': 1.0, 'kids': 1.0, 'our': 1.0, 'works': 1.0, 'to': 1.0, 'thing': 1.0, 'is': 1.0, 'car': 1.0, 'nice': 1.0, 'very': 2.0, 'latch': 1.0, 's': 1.0, 'hard': 1.0, 'with': 1.0, 'only': 1.0, 'it': 3.0, 'and': 1.0, 'get': 1.0, 'we': 1.0, 'love': 1.0, 'tight': 1.0, 'system': 1.0, 'enough': 1.0, 'great': 1.0, 'the': 2.0, 'so': 1.0, 'seat': 1.0, 'just': 1.0, 'use': 1.0, 'seatbelt': 1.0}
Word element => {'trouble': 1.0, 'had': 1.0, 'wouldn': 1.0, 'in': 1.0, 'have': 2.0, 'would': 1.0, 'detail': 1.0, 'if': 1.0, 'now': 1.0, 'installed': 1.0, 'is': 1.0, 'charm': 1.0, 'worked': 1.0, 'tighten': 1.0, 'side': 2.0, 'instructions': 1.0, 'front': 1.0, 't': 1.0, 'a': 2.0, 'but': 1.0, 'video': 2.0, 'back': 1.0, 'inside': 1.0, 'her': 1.0, 'not': 1.0, 'been': 1.0, 'rocking': 1.0, 'i': 2.0, 'old': 1.0, 'any': 1.0, 'seat': 4.0, 'to': 6.0, 'was': 2.0, 'watched': 1.0, 'difficult': 1.0, 'still': 1.0, 'system': 2.0, 'bought': 1.0, 'tightly': 1.0, 'my': 1.0, 'pull': 1.0, 'this': 3.0, 'for': 2.0, 'like': 1.0, 'using': 1.0, 'too': 1.0, 'and': 2.0, 'carseat': 1.0, '16': 1.0, 'it': 1.0, 'month': 1.0, 'infant': 1.0, 'enough': 1.0, 'cover': 1.0, 'who': 1.0, 'face': 1.0, 'the': 9.0, 'latch': 3.0, 'big': 2.0, 'install': 1.0, 'until': 1.0, 'finally': 1.0, 'getting': 1.0, 'youtube': 1.0, 'shows': 1.0, 'strap': 1.0, 'of': 1.0, 'peel': 1.0, 'while': 1.0}
Word element => {'washer': 1.0, 'the': 1.0, 'easily': 1.0, 'can': 1.0, 'pads': 1.0, 'shoulder': 1.0, 'family': 1.0, 'what': 1.0, 'that': 1.0, 'cover': 1.0, 'for': 2.0, 'love': 1.0, 'in': 1.0, 'needs': 1.0, 'perfect': 1.0, 'is': 2.0, 'on': 1.0, 'seat': 2.0, 'car': 1.0, 'it': 1.0, 'this': 2.0, 'graco': 1.0, 'be': 1.0, 'reliable': 1.0, 'and': 2.0, 'up': 1.0, 'to': 1.0, 'my': 1.0, 'date': 1.0, 'recalls': 1.0, 'thrown': 1.0, 'i': 1.0}
Word element => {'legs': 1.0, 'between': 1.0, 'tightener': 1.0, 'pull': 1.0, 'of': 1.0, 'you': 1.0, 'my': 2.0, 'cram': 1.0, 'car': 2.0, 'in': 3.0, 'had': 1.0, 'towels': 1.0, 'one': 1.0, 'two': 2.0, 'i': 2.0, 'it': 4.0, 'this': 1.0, 'while': 1.0, 'wife': 1.0, 'hard': 2.0, 'and': 3.0, 'like': 1.0, 'rear': 1.0, 'is': 1.0, 'to': 3.0, 'seat': 2.0, 'because': 1.0, 'under': 1.0, 'facing': 1.0, 'strap': 2.0, 'install': 1.0, 's': 3.0, 'discovered': 1.0, 'we': 3.0, 'okay': 1.0, 'got': 1.0, 'share': 1.0, 'that': 1.0, 'pulling': 1.0, 'day': 1.0, 'care': 1.0, 'dropoff': 1.0, 'the': 7.0, 'baby': 2.0, 'easier': 1.0, 'likes': 1.0, 'pickup': 1.0, 'straps': 1.0, 'grab': 1.0, 'be': 1.0, 'tighten': 1.0, 'can': 1.0, 'but': 1.0, 'back': 1.0, 'if': 1.0}
Word element => {'would': 1.0, 'anyone': 1.0, 'trying': 1.0, 'tired': 1.0, 'are': 1.0, 'arms': 1.0, 'latch': 1.0, 'of': 1.0, 'hands': 1.0, 'the': 2.0, 'loop': 1.0, 'add': 1.0, 'didn': 1.0, 'who': 1.0, 'i': 5.0, 'old': 1.0, 'were': 1.0, 'visit': 1.0, 'have': 1.0, 'this': 4.0, 'from': 1.0, 'looked': 1.0, 'it': 1.0, 'month': 1.0, 'not': 2.0, '20': 1.0, 'a': 3.0, 't': 2.0, 'we': 1.0, 'going': 1.0, 'our': 1.0, 'all': 1.0, 'seat': 1.0, 'to': 5.0, 'recommend': 1.0, 'belt': 1.0, 'laws': 1.0, 'was': 2.0, 'bought': 1.0, 'one': 1.0, 'model': 1.0, 'in': 1.0, 'install': 1.0, 'near': 1.0, 'impossible': 1.0, 'spent': 1.0, 'hours': 1.0, 'and': 3.0, 'couldn': 1.0, 'end': 1.0, 'do': 1.0, 'did': 1.0, 'for': 3.0, 'fit': 1.0, 'my': 2.0, 'tightly': 1.0, 'up': 1.0, 'video': 1.0, 'installation': 1.0, 'because': 1.0, 'find': 1.0, 'they': 1.0, 'needed': 1.0}
Word element => {'longer': 1.0, 'else': 1.0, 'to': 1.0, 'better': 1.0, 'than': 1.0, 'locally': 1.0, 'kid': 1.0, 'your': 1.0, 'taking': 1.0, 'for': 2.0, 'think': 1.0, 'good': 1.0, 'be': 2.0, 'head': 1.0, 'would': 2.0, 's': 2.0, 'as': 2.0, 'get': 1.0, 'and': 1.0, 'just': 1.0, 'not': 1.0, 'seat': 2.0, 'my': 1.0, 'something': 1.0, 'that': 1.0, 'thought': 1.0, 'drives': 1.0, 'i': 2.0, 'enclined': 1.0, 'when': 1.0, 'other': 1.0, 'daughters': 1.0, 'the': 2.0, 'more': 1.0, 'sits': 1.0, 'upright': 1.0, 'bobbles': 1.0, 'on': 1.0, 'road': 1.0, 'it': 3.0, 'this': 1.0}
Word element => {'with': 1.0, 'even': 1.0, 'already': 1.0, 'old': 1.0, 'top': 1.0, 'not': 1.0, 'head': 1.0, 'them': 1.0, 'well': 1.0, 'see': 1.0, 'model': 1.0, 'comfortable': 1.0, 's': 1.0, 'a': 1.0, 't': 1.0, 'is': 3.0, 'more': 1.0, 'reach': 1.0, 'the': 4.0, 'it': 2.0, 'first': 1.0, 'than': 1.0, 'was': 1.0, 'grow': 1.0, 'as': 1.0, 'to': 3.0, 'i': 2.0, 'my': 4.0, 'how': 2.0, 'grandchild': 1.0, 'lx': 1.0, 'seem': 1.0, 'yr': 1.0, '65': 1.0, 'lbs': 1.0, 'graco': 1.0, 'this': 1.0, 'kids': 1.0, 'ride': 1.0, 'one': 1.0, 'bought': 1.0, 'be': 1.0, 'either': 1.0, 'will': 2.0, '2': 1.0, 'but': 1.0, 'supposed': 1.0, 'for': 2.0, 'expensive': 1.0, 'fit': 2.0, 'over': 1.0, 'don': 1.0, 'child': 2.0, 'up': 1.0, '50': 1.0, 'or': 1.0, '60': 1.0, 'they': 3.0, 'granddaughter': 1.0, 'much': 1.0, 'do': 1.0, 'and': 2.0, 'very': 1.0, 'safe': 1.0, 'bigger': 1.0, 'main': 1.0, 'concern': 1.0}
Word element => {'recommend': 1.0, 'also': 1.0, 'over': 1.0, 'switch': 1.0, 'husband': 1.0, 'easy': 1.0, 'has': 1.0, 'safe': 1.0, 'and': 2.0, 'family': 1.0, 'my': 1.0, 'checked': 1.0, 'it': 2.0, 'had': 1.0, 'but': 1.0, 'car': 3.0, 'base': 1.0, 'months': 1.0, 'his': 1.0, 'having': 1.0, 'does': 1.0, 'needed': 1.0, 'at': 1.0, 'bigger': 1.0, 'facing': 1.0, 'height': 1.0, 'price': 1.0, '8': 1.0, 'the': 4.0, 'of': 1.0, 'he': 2.0, 'this': 2.0, 'is': 2.0, 'definitely': 1.0, 'backward': 1.0, 'would': 1.0, 'something': 1.0, 'been': 1.0, 'that': 1.0, 'were': 1.0, 'grew': 1.0, 'little': 1.0, 'in': 1.0, 'seat': 3.0, 'our': 2.0, 'to': 6.0, 'its': 2.0, 'forward': 1.0, 'love': 1.0, 'for': 2.0, 'fit': 1.0, 'transition': 1.0, 'bill': 1.0, 'within': 1.0, 'know': 1.0, 'willing': 1.0, 'spend': 1.0, 'feel': 1.0, 'we': 5.0, 'could': 1.0, 'a': 2.0, 'friends': 1.0, 'so': 2.0, 'boy': 1.0, '90': 1.0, 'bit': 1.0, 'out': 1.0, 'loose': 1.0, 'from': 2.0, 'compared': 1.0}
Word element => {'delivery': 1.0, 'fast': 1.0, 'was': 2.0, 'grandchild': 1.0, 'my': 1.0, 'parents': 1.0, 'it': 1.0, 'on': 3.0, 'i': 1.0, 'have': 1.0, 'for': 1.0, 'product': 3.0, 'stars': 1.0, 'this': 2.0, 'soft': 2.0, 's': 1.0, 'you': 2.0, '5': 1.0, 'very': 1.0, 'and': 5.0, 'get': 1.0, 'comfy': 1.0, 'giving': 1.0, 'highly': 1.0, 'recommended': 1.0, 'did': 1.0, 'the': 5.0, 'comfortable': 1.0, 'great': 2.0, 'sitting': 1.0, 'car': 1.0, 'to': 5.0, 'all': 2.0, 'seat': 1.0, 'give': 1.0, 'not': 1.0, 'excellent': 1.0, 'brought': 1.0, 'want': 1.0, 'amazon': 1.0, 'out': 1.0, 'design': 1.0, 'super': 1.0, 'safety': 1.0, 'us': 2.0, 'thank': 2.0, 'seller': 1.0, 'who': 2.0, 'service': 1.0}
Word element => {'else': 1.0, 'buy': 1.0, 'safe': 1.0, 'know': 1.0, 'don': 1.0, 'longer': 1.0, 'install': 2.0, 'every': 1.0, 'minutes': 1.0, 'if': 2.0, '10': 1.0, 'and': 4.0, 'get': 1.0, 'correctly': 1.0, 'are': 1.0, 'strap': 2.0, 'have': 2.0, 'rear': 1.0, 'is': 4.0, 'what': 1.0, 'correct': 1.0, 'the': 6.0, 'wobbles': 1.0, 'adjust': 1.0, 'so': 1.0, 'time': 2.0, 'hard': 1.0, 'it': 11.0, 'doing': 1.0, 'pain': 1.0, 'be': 2.0, 'an': 1.0, 'secure': 2.0, 'back': 1.0, 'put': 1.0, 'can': 1.0, 'but': 2.0, 'least': 1.0, 'all': 1.0, 'seat': 1.0, 'to': 8.0, 'switch': 1.0, 'car': 1.0, 'for': 2.0, 'forth': 1.0, 'length': 1.0, 'in': 1.0, 'unless': 1.0, 'you': 4.0, 'afford': 1.0, 'something': 2.0, 'awesome': 1.0, 'takes': 1.0, 'right': 1.0, 'once': 1.0, 'at': 1.0, 'absolute': 1.0, 'underneath': 1.0, 'my': 1.0, 'possible': 1.0, 'facing': 1.0, 'son': 1.0, 'loves': 1.0, 't': 1.0, 'we': 1.0, 'vehicles': 1.0}
Word element => {'girl': 1.0, 'comfortable': 1.0, 'or': 1.0, 'yet': 1.0, 'for': 2.0, 'and': 1.0, 'it': 2.0, 'with': 2.0, 'this': 3.0, 'really': 1.0, 'seat': 2.0, 'not': 1.0, 'i': 7.0, 'have': 1.0, 'seems': 1.0, 'having': 1.0, 'haven': 1.0, 'far': 1.0, 'used': 1.0, 'either': 1.0, 'what': 1.0, 'months': 1.0, 'support': 1.0, 'the': 1.0, 'boy': 1.0, 'so': 2.0, 'am': 3.0, 'finding': 1.0, 'happy': 1.0, '7': 1.0, 'many': 1.0, 'safe': 1.0, 'pregnant': 1.0, 'but': 1.0, 'work': 1.0, 'baby': 1.0, 'don': 1.0, 'like': 1.0, 'that': 2.0, 'comes': 1.0, 'wanted': 1.0, 'car': 1.0, 'infant': 1.0, 'seats': 1.0, 'cushion': 1.0, 'convertible': 1.0, 'out': 1.0, 'm': 1.0, 't': 2.0, 'could': 1.0, 'a': 1.0}
Word element => {'9': 1.0, 'now': 1.0, 'facing': 1.0, 'rear': 1.0, '6': 1.0, 'mazda': 1.0, 'was': 1.0, 'had': 1.0, 'an': 1.0, 'secure': 1.0, 'bases': 1.0, 'old': 2.0, 'this': 2.0, 'she': 3.0, 'month': 1.0, 'it': 3.0, 'only': 1.0, 'sitting': 1.0, 'but': 2.0, '2': 1.0, 'heavy': 1.0, 'the': 3.0, 'more': 1.0, 'is': 2.0, 'infant': 3.0, 'car': 5.0, '7': 1.0, 'nice': 1.0, 'carrier': 1.0, 'months': 1.0, 'bought': 1.0, 'that': 2.0, 'getting': 1.0, 'for': 1.0, 'too': 1.0, 'carry': 1.0, 'arounf': 1.0, 'in': 2.0, 'so': 1.0, 'to': 1.0, 'seat': 5.0, 'our': 3.0, 'as': 1.0, 'sits': 1.0, 'got': 1.0, '2nd': 1.0, 'we': 3.0, 's': 2.0, 'likes': 1.0, 'roomy': 1.0, 'keeps': 1.0, 'her': 1.0, 'with': 1.0, 'drawback': 1.0, 'upright': 2.0, 'than': 1.0}
Word element => {'big': 1.0, 'that': 1.0, 'not': 1.0, 'rolled': 1.0, 'end': 1.0, 'a': 1.0, 'front': 1.0, 'deal': 1.0, 'support': 1.0, 'need': 1.0, 'up': 1.0, '34': 2.0, 'chair': 1.0, 'for': 1.0, 'angle': 1.0, 'correct': 1.0, 'secured': 1.0, 'is': 1.0, 'complaint': 1.0, 'and': 1.0, 'with': 1.0, 'only': 1.0, 'easily': 1.0, 'base': 1.0, 'be': 3.0, 'to': 3.0, 'seems': 1.0, 'adjust': 1.0, 'all': 1.0, 'leveled': 1.0, 'automatically': 1.0, 'straps': 1.0, 'might': 1.0, 't': 1.0, 'the': 1.0, 'towel': 1.0, 'child': 1.0, 'made': 1.0, 'doesn': 1.0, 'seem': 1.0, 'solid': 1.0, 'once': 1.0, 'at': 1.0}
Word element => {'car': 1.0, 'in': 1.0, 'the': 2.0, 'did': 1.0, 'priced': 1.0, 'middle': 1.0, 'a': 1.0, 'model': 1.0, 'one': 1.0, 'seat': 1.0, 'loves': 1.0, 'good': 1.0, 'his': 1.0, 'again': 1.0, 'reviews': 1.0, 'infant': 1.0, 'hated': 1.0, 'now': 1.0, 'to': 2.0, 'far': 1.0, 'ride': 1.0, 'so': 3.0, 'i': 2.0, 'buy': 1.0, 'he': 1.0, 'looked': 1.0, 'with': 1.0, 'this': 2.0, 'over': 1.0, 'and': 3.0, 'safety': 1.0, 'trick': 1.0, 'range': 1.0, 'decided': 1.0, 'son': 1.0, 'ratings': 1.0, 'my': 1.0, 'went': 1.0}
Word element => {'have': 1.0, 'of': 1.0, 'wiggle': 1.0, 'get': 1.0, 'we': 2.0, 'the': 4.0, 'not': 2.0, 'was': 2.0, 'returned': 1.0, 'it': 1.0, 'this': 1.0, 'out': 1.0, 'could': 1.0, 'for': 1.0, 'facing': 1.0, 'safe': 1.0, 'position': 1.0, 'car': 1.0, 'baby': 1.0, 'hyundai': 1.0, '2010': 1.0, 'felt': 1.0, 'rear': 1.0, 'is': 1.0}
Word element => {'most': 1.0, 'better': 1.0, 'else': 1.0, 'anything': 1.0, 'as': 2.0, 'do': 1.0, 'will': 1.0, 'like': 1.0, 'looks': 1.0, 'appearances': 1.0, 'from': 1.0, 'would': 1.0, 'well': 2.0, 'i': 3.0, 'prop': 1.0, 'system': 1.0, 'latch': 1.0, 'buckles': 1.0, 'reasonably': 1.0, 'in': 7.0, 'seems': 1.0, 'box': 1.0, 'case': 2.0, 'been': 1.0, 'enjoy': 1.0, 'daughter': 1.0, 'moment': 1.0, 'we': 2.0, 't': 2.0, 'really': 2.0, 'but': 1.0, 'personal': 1.0, 'car': 1.0, 'bill': 1.0, 'get': 2.0, 'left': 1.0, 'quickly': 1.0, 'accident': 1.0, 'others': 1.0, 'she': 1.0, 'month': 1.0, 'it': 8.0, 'facing': 1.0, 'needed': 1.0, 'was': 1.0, 'to': 8.0, 'how': 1.0, 'our': 1.0, 'had': 2.0, 'install': 1.0, 'came': 1.0, 'although': 1.0, 'and': 9.0, 'perfectly': 1.0, 'loosen': 1.0, 'this': 2.0, 'plenty': 1.0, 'with': 3.0, 'before': 1.0, '18': 1.0, 'trips': 1.0, 'protect': 1.0, 'more': 1.0, 'level': 1.0, 'room': 1.0, 'comes': 1.0, 'handle': 1.0, 'is': 1.0, 'of': 1.0, 'the': 9.0, 'snugride': 1.0, 'tighten': 1.0, 'out': 2.0, 'up': 1.0, 'child': 2.0, 'rear': 1.0, 'one': 1.0, 'end': 1.0, 'some': 1.0, 'necessary': 1.0, 'towels': 1.0, 'sit': 1.0, 'straps': 3.0, 'a': 5.0, 'story': 1.0, 'untold': 1.0, 'loved': 1.0, 'enough': 1.0, 'are': 3.0, 'very': 1.0, 'adjust': 1.0, 'whole': 1.0, 'thing': 1.0, 'than': 2.0, 'apart': 1.0, 'that': 1.0, 'easily': 2.0, 'carseat': 1.0, 'cleaning': 1.0, 'easy': 3.0, 'know': 1.0, '35': 1.0, 'by': 1.0, 'say': 1.0, 'experience': 1.0, 'best': 1.0, 'roomy': 1.0, 'even': 1.0, 'also': 1.0, 'coat': 1.0, 'haven': 1.0, 'all': 1.0, 'fits': 1.0, 'an': 1.0, 'so': 1.0, 'can': 1.0}
Word element => {'up': 1.0, 'that': 1.0, 'all': 1.0, 'hard': 1.0, 'it': 1.0, 'so': 1.0, 'to': 2.0, 'grand': 1.0, 'got': 1.0, 'use': 1.0, 'while': 1.0, 'far': 1.0, 'spare': 1.0, 'second': 1.0, 'seat': 1.0, 'or': 1.0, 'good': 2.0, 'no': 1.0, 'a': 1.0, 'complaints': 1.0, 'visits': 1.0, 'for': 1.0, 't': 1.0, 'the': 1.0, 'baby': 1.0, 'wasn': 1.0, 'working': 1.0, 'rig': 1.0, 'out': 1.0}
Word element => {'girls': 1.0, 'bright': 1.0, 'trim': 1.0, 'looking': 1.0, 'sleek': 1.0, 'is': 2.0, 'click': 1.0, 'forward': 1.0, 'this': 1.0, 'the': 6.0, 'car': 3.0, 'works': 1.0, 'do': 2.0, 'and': 3.0, 'so': 1.0, 'son': 2.0, 'year': 1.0, 'from': 1.0, 'have': 2.0, '8': 1.0, 'up': 1.0, 'don': 1.0, 'occasionally': 1.0, 'bought': 1.0, 'shuffle': 1.0, 'used': 1.0, 'love': 1.0, 'for': 4.0, 'straps': 1.0, 'parents': 1.0, 'liked': 1.0, 'seat': 3.0, 'our': 4.0, 'to': 5.0, 'had': 1.0, 'switch': 1.0, 'boys': 1.0, 'easily': 1.0, 'when': 1.0, 't': 1.0, 'we': 2.0, 's': 2.0, 'easy': 2.0, 'install': 1.0, 'it': 4.0, 'month': 1.0, 'but': 1.0, 'sitting': 1.0, 'in': 1.0, 've': 1.0, 'i': 1.0, '4': 1.0, 'old': 2.0, 'who': 1.0, 'that': 1.0, 'nephew': 1.0, 'backwards': 2.0, 'rave': 1.0, 'they': 2.0, 'reviews': 1.0, 'cup': 1.0, 'pick': 1.0, 'holder': 1.0}
Word element => {'head': 1.0, 'just': 1.0, 'that': 2.0, 'car': 1.0, 'infant': 1.0, 'conventional': 1.0, 'than': 1.0, 'upright': 1.0, 'to': 2.0, 'seat': 2.0, 'coz': 1.0, 'more': 1.0, 'is': 4.0, 'use': 1.0, 'amazon': 1.0, 'rear': 1.0, 'his': 1.0, 'sturdy': 1.0, 'got': 2.0, 'good': 1.0, 'doesn': 1.0, 'was': 1.0, 'look': 1.0, 'lights': 1.0, 'cheapest': 1.0, 'it': 3.0, 'this': 1.0, 'he': 2.0, 'prices': 1.0, 'looking': 2.0, 'blankets': 1.0, 'can': 1.0, 'nice': 1.0, 't': 1.0, 'we': 1.0, 'a': 2.0, 'ok': 1.0, 'compared': 1.0, 'from': 2.0, 'and': 4.0, 'bargain': 1.0, 'bit': 1.0, 'so': 3.0, 'xmas': 1.0, 'prop': 1.0, 'i': 4.0, 'one': 1.0, 'raised': 1.0, 'researched': 1.0, 'my': 2.0, 'baby': 2.0, 'whenever': 1.0, 'at': 1.0, 'asleep': 1.0, 'the': 4.0, 'decorated': 1.0, 'trees': 1.0, 'up': 1.0, 'over': 1.0, 'window': 1.0, 'bow': 2.0, 'facing': 1.0, 'still': 1.0, 'complaint': 1.0, 'have': 2.0, 'falls': 1.0, 'would': 1.0, 'forward': 2.0}
Word element => {'are': 1.0, 'months': 1.0, 'the': 1.0, 'been': 1.0, 'we': 1.0, 'occurs': 1.0, 'happy': 1.0, 'accident': 1.0, 'or': 1.0, 'throw': 1.0, 'a': 1.0, 'removed': 1.0, 'up': 1.0, 'completely': 1.0, 'be': 1.0, 'can': 1.0, 'year': 1.0, 'makes': 1.0, 'hassle': 1.0, 'feel': 1.0, 'past': 1.0, 'when': 1.0, 'us': 1.0, 'poop': 1.0, 'washing': 1.0, 'because': 1.0, 'its': 1.0, 'carseat': 1.0, 'using': 1.0, 'for': 2.0, 'adequately': 1.0, 'like': 1.0, '1': 1.0, 'and': 2.0, 'with': 1.0, 'it': 3.0, 'this': 1.0, 'only': 1.0, 'snug': 1.0, 'old': 1.0, 'is': 2.0, 'two': 1.0, 'padded': 1.0, 'secure': 1.0, 'but': 1.0, 'our': 1.0, 'that': 1.0}
Word element => {'40': 1.0, 'or': 1.0, 'until': 1.0, 'face': 1.0, 'be': 1.0, 'but': 1.0, 'small': 1.0, 'seat': 1.0, 'not': 1.0, 'incline': 1.0, 'and': 2.0, 'son': 1.0, 'as': 2.0, 'close': 1.0, 'little': 1.0, 'my': 2.0, 'the': 1.0, 'for': 2.0, 'should': 1.0, 'fit': 1.0, 'a': 3.0, 'rear': 1.0, 'is': 1.0, 'boy': 1.0, 's': 2.0, 'you': 1.0, 'perfect': 2.0, 'use': 1.0, 'he': 1.0, 'with': 1.0, 'it': 3.0, 'to': 4.0, 'install': 1.0, 'long': 1.0, 'relatively': 1.0, 'easy': 1.0, 'read': 1.0, 'lbs': 1.0, 'instructions': 1.0, 'towel': 1.0, 'help': 1.0}
Word element => {'family': 1.0, 'friends': 1.0, 'be': 1.0, 'i': 1.0, 'about': 1.0, 'nothing': 1.0, 'there': 1.0, 'cost': 1.0, 'reasonable': 1.0, 'given': 1.0, 's': 1.0, 'and': 3.0, 'very': 2.0, 'securely': 1.0, 'install': 1.0, 'to': 4.0, 'fits': 1.0, 'car': 2.0, 'happy': 2.0, 'our': 1.0, 'forward': 1.0, 'in': 1.0, 'seems': 1.0, 'is': 3.0, 'seat': 2.0, 'the': 2.0, 'dislike': 1.0, 'it': 3.0, 'first': 1.0, 'this': 1.0, 'would': 1.0, 'travelling': 1.0, 'grand': 1.0, 'when': 1.0, 'graco': 1.0, 'daughter': 1.0, 'recommend': 1.0, 'easy': 1.0, 'facing': 1.0, 'she': 1.0}
Word element => {'replace': 1.0, 'impossible': 1.0, 'manufacturer': 1.0, 'the': 1.0, 'to': 2.0, 'product': 1.0, 'this': 1.0, 'on': 1.0, 'owning': 1.0, 'there': 1.0, 'ahold': 1.0, 'dissatisfied': 1.0, 'part': 1.0, 'was': 3.0, 'after': 1.0, 'i': 1.0, 'one': 1.0, 'week': 1.0, 'of': 2.0, 'a': 1.0, 'get': 1.0, 'recall': 1.0}
Word element => {'her': 1.0, 'for': 1.0, 'who': 1.0, 'every': 1.0, 'recommend': 1.0, 'roads': 1.0, 'the': 2.0, 'on': 1.0, 'mom': 1.0, 'when': 1.0, 'worry': 1.0, 'to': 2.0, 'dont': 1.0, 'off': 1.0, 'sleep': 1.0, 'my': 1.0, 'ever': 1.0, 'you': 1.0, 'best': 2.0, 'that': 1.0, 'seat': 3.0, 'put': 1.0, 'car': 3.0, 'him': 1.0, 'driving': 1.0, 'in': 1.0, 'baby': 2.0, 'lovely': 1.0, 'it': 1.0, 'this': 2.0, 'bad': 1.0, 'have': 1.0, 'want': 1.0, 'is': 1.0, 'well': 1.0, 'once': 1.0, 'padded': 1.0, 'i': 2.0}
Word element => {'of': 1.0, 'out': 1.0, 'baby': 1.0, 'as': 1.0, 'very': 1.0, 'pretty': 1.0, 'in': 1.0, 'wash': 1.0, 'removing': 1.0, 'hid': 1.0, 'good': 1.0, 'well': 1.0, 'stains': 1.0, 'a': 1.0, 'easy': 1.0, 'facing': 2.0, 'i': 1.0, 'for': 1.0, 'daughter': 1.0, 'graco': 1.0, 'our': 2.0, 'forward': 1.0, 'like': 1.0, 'get': 1.0, 'and': 4.0, 'have': 1.0, 'is': 1.0, 'really': 1.0, 'rear': 1.0, 'simple': 1.0, 'we': 1.0, 'color': 1.0, 'smaller': 1.0, 'little': 1.0, 'vehicle': 1.0, 'it': 1.0, 'carseat': 1.0, 'works': 1.0, 'both': 1.0, 'was': 1.0, 'to': 3.0, 'now': 1.0, 'great': 1.0, 'the': 1.0}
Word element => {'material': 1.0, 'wood': 1.0, 'construction': 1.0, 'old': 1.0, 'high': 1.0, 'love': 1.0, 'it': 1.0, 'the': 1.0, 'my': 2.0, 'loved': 1.0, 'good': 1.0, '1': 1.0, 'three': 1.0, 'year': 2.0, 'very': 1.0, 'quality': 1.0, 'as': 2.0, 'well': 1.0}
Word element => {'quality': 1.0, 'comparable': 1.0, 'wide': 1.0, 'investment': 1.0, 'think': 1.0, 'driving': 1.0, 'test': 1.0, 'after': 1.0, 'pictures': 1.0, 'some': 1.0, 'pulling': 1.0, 'pushing': 1.0, 'around': 2.0, 'not': 1.0, 'far': 1.0, 'solid': 1.0, 'write': 1.0, 'but': 2.0, 'next': 1.0, 'them': 1.0, 'location': 1.0, 'or': 2.0, 'room': 1.0, 'another': 1.0, 'lightweight': 1.0, 'enough': 3.0, 'best': 1.0, 'price': 2.0, 'both': 1.0, 'seemed': 1.0, 'because': 1.0, 'reviews': 1.0, 'though': 1.0, 'by': 2.0, 'home': 2.0, 'terms': 1.0, 'parenting': 1.0, 'post': 1.0, 'my': 3.0, 'in': 6.0, 'there': 2.0, 'will': 1.0, 'suit': 1.0, 'assembly': 1.0, 'damage': 1.0, 'small': 1.0, 'a': 5.0, 't': 1.0, 'ordering': 1.0, 'fun': 1.0, 'hex': 1.0, 'wood': 1.0, 'class': 1.0, 'classes': 1.0, 'toddlers': 3.0, 'and': 19.0, 'green': 1.0, 'similar': 1.0, 'good': 1.0, 'made': 1.0, 'which': 1.0, 'one': 1.0, 'moved': 3.0, 'months': 1.0, 'chance': 1.0, 'be': 4.0, 'to': 8.0, 'was': 6.0, 'searched': 1.0, 'even': 1.0, 'took': 1.0, 'teach': 1.0, 'old': 2.0, 'searching': 1.0, 'for': 2.0, 'structure': 1.0, 'two': 1.0, 'use': 1.0, 'wrench': 1.0, 'this': 2.0, 'with': 1.0, 'were': 1.0, 'piece': 2.0, 'week': 1.0, 'quick': 1.0, 'equipment': 1.0, '8': 1.0, 'especially': 1.0, 'it': 8.0, '9': 1.0, 'on': 3.0, 'years': 1.0, 'no': 2.0, 'today': 1.0, 'needs': 1.0, 'very': 1.0, 'reasonable': 1.0, 'compared': 1.0, 'playing': 1.0, 'all': 1.0, 'other': 1.0, 'again': 1.0, 'objects': 1.0, 'arrived': 1.0, 'climbing': 3.0, 'couldn': 1.0, 'babies': 2.0, 'more': 2.0, 'is': 2.0, 'nothing': 1.0, 'finished': 1.0, 'up': 1.0, 'carefully': 1.0, 'pleased': 1.0, 'provide': 1.0, 'required': 1.0, 'shipping': 1.0, 'found': 1.0, 'easy': 1.0, 'screws': 1.0, 'enclosed': 1.0, 'i': 7.0, 'well': 1.0, 'ramp': 1.0, 'stable': 1.0, 'the': 5.0, 'of': 2.0, 'sturdy': 2.0, 'nicely': 1.0, 'just': 1.0, 'right': 1.0, 'safety': 1.0, 'size': 1.0, 'sliding': 1.0, 'balancing': 1.0, 'challenge': 1.0, 'packed': 1.0}
Word element => {'carrying': 1.0, 'sides': 1.0, 'tons': 1.0, 'it': 7.0, 'this': 1.0, 'with': 1.0, 'love': 1.0, 'hang': 1.0, 'use': 1.0, 'great': 1.0, 'feel': 1.0, 'its': 1.0, 'bag': 1.0, 'grey': 1.0, 'the': 1.0, 'orange': 1.0, 'hubby': 1.0, 'inside': 1.0, 'diaper': 1.0, 'stroller': 1.0, 'handle': 1.0, 'back': 1.0, 't': 1.0, 'we': 1.0, 'a': 2.0, 'of': 1.0, 'has': 2.0, 'on': 3.0, 'your': 1.0, 'backpack': 1.0, 'got': 1.0, 'even': 1.0, 'pockets': 1.0, 'to': 2.0, 'as': 1.0, 'from': 1.0, 'too': 1.0, 'and': 4.0, 'snaps': 1.0, 'if': 1.0, 'so': 1.0, 'you': 2.0, 'can': 1.0, 'up': 1.0, 'don': 1.0, 'like': 1.0, 'having': 1.0, 'coloring': 1.0, 'my': 1.0, 'is': 1.0}
Word element => {'back': 1.0, 'carrying': 1.0, 'size': 1.0, 'really': 1.0, 'pack': 1.0, 'its': 1.0, 'ever': 1.0, 'us': 1.0, 'last': 1.0, 'it': 2.0, 'perfect': 1.0, 'this': 1.0, 'expect': 1.0, 'things': 1.0, 'i': 3.0, 'the': 3.0, 'diaper': 1.0, 'traditional': 1.0, 'school': 1.0, 'feel': 1.0, 'great': 2.0, 'where': 1.0, 'for': 2.0, 'like': 1.0, 'using': 1.0, 'bag': 1.0, 'take': 1.0, 'was': 1.0, 'pockets': 1.0, 'didn': 1.0, 'just': 1.0, 'with': 1.0, 'convenient': 1.0, 'choice': 1.0, 'better': 1.0, 'and': 4.0, 'm': 1.0, 'random': 1.0, 'price': 1.0, 'never': 1.0, 'lots': 1.0, 'compared': 2.0, 'very': 1.0, 'long': 1.0, 'brands': 1.0, 'other': 1.0, 'name': 1.0, 'to': 4.0, 'all': 1.0, 'has': 2.0, 'held': 1.0, 'still': 1.0, 'up': 1.0, 'of': 1.0, 'in': 1.0, 'room': 1.0, 'go': 1.0, 't': 1.0, 'a': 3.0, 'we': 2.0, 'necessities': 1.0, 'shape': 1.0, 'decide': 1.0}
Word element => {'cold': 1.0, 'bottles': 1.0, 'keep': 1.0, 'fit': 1.0, 'of': 1.0, 'has': 1.0, 'price': 1.0, 'for': 1.0, 'item': 1.0, 'alot': 1.0, 'a': 1.0, 'we': 2.0, 'my': 1.0, 'insulated': 1.0, 'got': 1.0, 'son': 1.0, 'as': 2.0, 'and': 2.0, 'need': 1.0, 'quite': 1.0, 'items': 1.0, 'it': 1.0, 'older': 1.0, 'this': 2.0, 'great': 1.0, 'the': 2.0, 't': 1.0, 'didn': 1.0, 'bought': 1.0, 'pockets': 1.0, 'i': 1.0, 'when': 1.0, 'to': 3.0, 'things': 1.0, 'space': 1.0, 'carry': 1.0, 'is': 1.0, 'left': 1.0, 'many': 1.0, 'house': 1.0}
Word element => {'now': 1.0, 'girl': 1.0, 'like': 1.0, 'or': 1.0, 'need': 1.0, 'about': 1.0, 'tote': 1.0, 'stand': 1.0, 's': 1.0, 'a': 6.0, 'will': 2.0, 'baby': 1.0, 'quality': 1.0, 'but': 1.0, 'this': 1.0, 'it': 3.0, 'with': 2.0, 'nature': 1.0, 'other': 1.0, 'any': 1.0, 'to': 4.0, 'the': 4.0, 'big': 1.0, 'feel': 1.0, 'great': 1.0, 'product': 1.0, 'love': 1.0, 'for': 2.0, 'i': 4.0, 'up': 1.0, 'of': 3.0, 'her': 1.0, 'good': 1.0, 'fabric': 1.0, 'have': 2.0, 'little': 1.0, 'overall': 1.0, 'issue': 1.0, 'opening': 1.0, 'just': 1.0, 'large': 1.0, 'toddler': 1.0, 'compartment': 1.0, 'boy': 1.0, 'bit': 2.0, 'toting': 1.0, 'too': 2.0, 'restrictive': 1.0, 'than': 1.0, 'narrow': 1.0, 'that': 1.0, 'is': 2.0, 'around': 2.0, 'him': 1.0, 'force': 1.0, 'anyone': 1.0, 'purchase': 1.0, 'think': 1.0, 'make': 2.0, 'recommendation': 1.0, 'your': 2.0}
Word element => {'a': 1.0, 'is': 1.0, 'compartment': 1.0, 'insulated': 1.0, 'zippers': 1.0, 'addition': 1.0, 'of': 1.0, 'there': 1.0, 'diaper': 1.0, 'the': 2.0, 'are': 2.0, 'this': 1.0, 'bag': 1.0, 'works': 1.0, 'plenty': 1.0, 'well': 1.0, 'straps': 1.0, 'cushioned': 1.0, 'pockets': 1.0, 'and': 3.0, 'nice': 2.0}
Word element => {'price': 1.0, 'a': 1.0, 'wear': 1.0, 'comfortable': 1.0, 'i': 1.0, 'everything': 1.0, 'fits': 1.0, 'need': 1.0, 'and': 2.0, 'is': 1.0, 'now': 1.0, 'shape': 1.0, 'this': 1.0, 'to': 1.0, 'still': 1.0, 'thing': 1.0, 'almost': 1.0, 'great': 2.0, 'two': 1.0, 'for': 1.0, 'had': 1.0, 'years': 1.0, 'in': 1.0}
Word element => {'travel': 1.0, 'of': 1.0, 'out': 1.0, 'grew': 1.0, 'when': 1.0, 'diaper': 1.0, 'look': 1.0, 'husband': 1.0, 'my': 2.0, 'would': 2.0, 'nice': 1.0, 'us': 1.0, 'included': 1.0, 'ring': 1.0, 'daughter': 1.0, 'pull': 1.0, 'trying': 1.0, 'cool': 1.0, 'gym': 1.0, 'kept': 1.0, 'usual': 1.0, 'pocket': 1.0, 'worry': 1.0, 'threw': 1.0, 'bag': 4.0, 'detached': 1.0, 'in': 2.0, 'also': 2.0, 'used': 1.0, 'helpful': 1.0, 'key': 1.0, 'built': 1.0, 'the': 7.0, 'we': 1.0, 'a': 3.0, 't': 3.0, 'so': 1.0, 'bottle': 1.0, 'didn': 2.0, 'i': 3.0, 'an': 1.0, 'but': 1.0, 'liked': 1.0, 'like': 1.0, 'frustrated': 1.0, 'lunch': 1.0, 'doesn': 1.0, 'recommend': 2.0, 'was': 2.0, 'not': 1.0, 'ice': 1.0, 'because': 2.0, 'light': 1.0, 'just': 3.0, 'at': 1.0, 'as': 1.0, 'to': 3.0, 'all': 1.0, 'pack': 1.0, 'unhook': 1.0, 'have': 2.0, 'and': 3.0, 'loves': 1.0, 'changing': 1.0, 'that': 2.0, 'holder': 1.0, 'bulky': 1.0, 'about': 1.0, 'it': 9.0, 'ruining': 1.0, 'pad': 1.0, 'off': 1.0, 'section': 1.0, 'or': 2.0, 'latch': 1.0, 'weight': 1.0, 'made': 1.0, 'get': 1.0, 'backpack': 1.0, 'easy': 1.0, 'for': 1.0, 'perk': 1.0, 'actually': 1.0, 'from': 1.0}
Word element => {'great': 1.0, 'livelier': 1.0, 'a': 2.0, 'seat': 1.0, 'sassy': 1.0, 'jolly': 1.0, 'mat': 2.0, 'makes': 1.0, 'jumper': 2.0, 'musical': 1.0, 'the': 2.0, 'my': 1.0, 'son': 1.0, 'time': 1.0, 's': 1.0, 'experience': 1.0, 'in': 1.0}
Word element => {'soap': 1.0, 'and': 2.0, 'very': 1.0, 'idea': 1.0, 'penguin': 1.0, 'that': 2.0, 'is': 2.0, 'lovvveeee': 1.0, 'the': 5.0, 'slips': 1.0, 'clip': 1.0, 'problem': 1.0, 'i': 2.0, 'holder': 1.0, 'in': 1.0, 'most': 1.0, 'place': 1.0, 'loose': 1.0, 'only': 1.0, 'it': 1.0, 'holds': 1.0, 'off': 1.0, 'times': 1.0, 'pump': 1.0}
Word element => {'told': 1.0, 'my': 1.0, 'the': 2.0, 'love': 1.0, 'for': 1.0, 'gift': 1.0, 'times': 1.0, 'holiday': 1.0, 'a': 1.0, 'it': 1.0, 'this': 1.0, 'son': 1.0, 'as': 1.0, 'daycare': 1.0, 'and': 1.0, 'purchased': 2.0, 's': 1.0, 'large': 1.0, 'i': 4.0, 'family': 1.0, 've': 1.0, 'been': 1.0, 'asked': 1.0, 'dispenser': 1.0, 'many': 1.0, 'kids': 1.0, 'm': 1.0, 'where': 1.0}
Word element => {'nieces': 1.0, 'my': 1.0, 'for': 2.0, 'actually': 1.0, 'love': 1.0, 'other': 1.0, 'gentle': 1.0, 'just': 2.0, 'off': 1.0, 'would': 1.0, 'hard': 1.0, 'or': 1.0, 'fast': 1.0, 'were': 1.0, 'same': 1.0, 'if': 1.0, 'feel': 1.0, 'm': 1.0, 'they': 1.0, 'baby': 1.0, 'but': 1.0, 'money': 1.0, 'of': 1.0, 'don': 1.0, 'up': 1.0, 'amazon': 1.0, 'fall': 1.0, 'is': 2.0, 'it': 4.0, 'this': 2.0, 'stores': 1.0, 'with': 1.0, 'saw': 1.0, 'christmas': 1.0, 'ordered': 1.0, 'originally': 1.0, 'glad': 1.0, 'than': 1.0, 'find': 1.0, 'could': 1.0, 't': 1.0, 'cutest': 1.0, 'so': 1.0, 'the': 6.0, 'careful': 1.0, 'at': 1.0, 'was': 2.0, 'wanted': 1.0, 'wall': 1.0, 'thing': 4.0, 'have': 1.0, 'too': 3.0, 'and': 3.0, 'entire': 1.0, 'one': 1.0, 'i': 8.0, 'rough': 1.0, 'twice': 1.0, 'fill': 1.0, 'to': 4.0, 'as': 1.0, 'only': 1.0, 'much': 1.0, 'pump': 1.0, 'easy': 1.0, 'on': 1.0, 'put': 1.0, 'soap': 1.0, 'water': 1.0, 'that': 4.0, 'like': 1.0, 'pumping': 2.0, 'how': 1.0, 'be': 3.0, 'you': 1.0, 'when': 2.0}
Word element => {'fill': 1.0, 'great': 1.0, 'suction': 1.0, 'likes': 1.0, 'well': 1.0, 'nearby': 1.0, 'in': 1.0, 'seems': 1.0, 'button': 1.0, 'incentive': 1.0, 'o': 1.0, 'little': 2.0, 'y': 1.0, 'daughter': 1.0, 'water': 1.0, 'my': 2.0, 'bottle': 1.0, 'time': 1.0, 'bath': 1.0, 'too': 1.0, 'this': 1.0, 'it': 4.0, 'provides': 1.0, 't': 1.0, 'a': 4.0, 'toddler': 1.0, 'cups': 1.0, 'as': 1.0, 'to': 5.0, 'work': 1.0, '2': 1.0, 'can': 1.0, 'add': 1.0, 'yet': 1.0, 'for': 2.0, 'becomes': 1.0, 'i': 2.0, 'have': 1.0, 'do': 1.0, 'easy': 1.0, 'pump': 1.0, 'get': 1.0, 'done': 1.0, 'her': 1.0, 'when': 2.0, 'penguin': 1.0, 'you': 1.0, 'soap': 2.0, 'enough': 1.0, 'operate': 1.0, 'properly': 1.0, 'keep': 1.0, 'push': 1.0, 'dilute': 1.0, 'the': 3.0, 'job': 1.0, 'of': 1.0, 'baby': 1.0}
Word element => {'shampoo': 1.0, 'theirs': 1.0, 'dr': 1.0, 'in': 2.0, 'deal': 1.0, 'a': 1.0, 'totally': 1.0, 'filled': 1.0, 'is': 1.0, 'amazon': 1.0, 'bought': 1.0, 'when': 1.0, '50': 1.0, 'was': 2.0, 'soap': 1.0, 's': 2.0, 'so': 2.0, 'use': 1.0, 'got': 1.0, 'or': 1.0, 'i': 4.0, 'recently': 1.0, 'bathroom': 4.0, 'boys': 2.0, 'ago': 1.0, 'my': 1.0, 'bronner': 1.0, 'great': 1.0, 'the': 2.0, 'from': 1.0, 'as': 1.0, 'year': 1.0, 'personally': 1.0, 'one': 3.0, 'for': 3.0, 'liked': 1.0, 'received': 1.0, 'much': 1.0, 'with': 2.0, 'it': 4.0, 'their': 2.0, 'our': 2.0, 'master': 2.0, 'baby': 1.0, 'price': 1.0}
Word element => {'better': 1.0, 'have': 1.0, 'suppose': 1.0, 'holes': 1.0, 'drill': 1.0, 'if': 1.0, 'want': 1.0, 'didn': 1.0, 'foot': 1.0, 'off': 1.0, 'tile': 1.0, 'or': 1.0, 'tabs': 1.0, 'sticky': 1.0, 'either': 1.0, 'with': 1.0, 'himself': 1.0, 'would': 2.0, 'fell': 1.0, 'it': 9.0, 'this': 1.0, 'you': 1.0, 'hurt': 1.0, 'penguin': 1.0, 'hang': 1.0, 'bought': 1.0, 'my': 1.0, 'figuring': 1.0, 'than': 1.0, 'actually': 1.0, 'for': 2.0, 'his': 1.0, 'year': 1.0, 'son': 1.0, 'penguins': 1.0, 'cups': 1.0, 'all': 1.0, 'our': 2.0, 'to': 4.0, 'was': 1.0, 'old': 1.0, 'gave': 1.0, 'loves': 1.0, 'i': 5.0, '4': 1.0, 'on': 2.0, 'very': 1.0, 'figure': 1.0, 'up': 2.0, 'wash': 1.0, 'in': 2.0, 'so': 1.0, 'the': 3.0, 'tub': 4.0, 'stick': 2.0, 'while': 1.0, 'cute': 1.0, 'and': 3.0, 'unusable': 1.0, 'larger': 1.0, 'is': 1.0, 'completely': 1.0, 'easier': 1.0, 'expected': 1.0, 'has': 1.0, 'suction': 1.0, 'him': 2.0, 'be': 1.0, 'liner': 1.0, 'might': 1.0, 't': 1.0, 'go': 1.0, 'a': 2.0, 'plastic': 1.0, 'not': 1.0, 'since': 1.0, 'at': 1.0}
Word element => {'us': 1.0, 'perfect': 1.0, 'attach': 1.0, 'tiles': 1.0, 'plate': 2.0, 'off': 1.0, 'anchors': 1.0, 'reviewer': 1.0, 'wall': 1.0, 'very': 1.0, 'mounting': 1.0, 'why': 1.0, 'week': 1.0, 'adhesive': 1.0, 'and': 4.0, 'an': 1.0, 'cup': 1.0, 'be': 1.0, 's': 3.0, 'might': 1.0, 'previous': 1.0, 'scrubbed': 1.0, 'still': 1.0, 'makes': 1.0, 'really': 4.0, 'is': 2.0, 'comes': 1.0, 'having': 1.0, 'sure': 1.0, 'towel': 1.0, 'easy': 1.0, 'pump': 1.0, 'get': 1.0, 'the': 5.0, 'place': 1.0, 'hands': 1.0, 'dry': 1.0, 'not': 1.0, 'for': 4.0, 'planned': 1.0, 'expensive': 1.0, 'product': 1.0, 'attached': 1.0, 'well': 1.0, 'i': 4.0, 'little': 2.0, 'two': 1.0, 'bath': 1.0, 'keeping': 1.0, 'with': 3.0, 'it': 6.0, 'this': 4.0, 'now': 1.0, 'rub': 1.0, 'hard': 2.0, 'part': 1.0, 'to': 4.0, 'as': 1.0, 'our': 1.0, 'three': 1.0, 'since': 1.0, 'them': 1.0, 'screws': 1.0, 'baby': 1.0, 'simply': 1.0, 'options': 1.0, 'too': 1.0, 'ones': 1.0, 'we': 2.0, 'then': 1.0, 'pushed': 1.0, 'bam': 1.0, 'are': 1.0, 'been': 1.0, 'problems': 1.0, 'that': 2.0, 'stuck': 1.0, 'm': 1.0, 'in': 2.0, 'suction': 1.0, 'organic': 1.0, 'but': 1.0, 'use': 2.0, 'wash': 1.0, 'last': 1.0, 'twice': 1.0, 'long': 1.0, 'although': 1.0, 'will': 1.0, 'great': 1.0, 'agree': 1.0, 'push': 1.0, 'you': 1.0, 'dried': 1.0, 'foam': 1.0, 'a': 4.0, 'small': 1.0, 'bathing': 1.0, 'guys': 1.0}
Word element => {'hahaha': 1.0, 'shampoo': 1.0, 'll': 1.0, 'time': 1.0, 'they': 1.0, 'their': 1.0, 'desing': 1.0, 'beacuse': 1.0, 'in': 2.0, 'cute': 1.0, 'so': 1.0, 'want': 1.0, 'looks': 1.0, '2': 1.0, 'the': 4.0, 'great': 1.0, 'use': 1.0, 'then': 1.0, 'bath': 1.0, 'super': 1.0, 'run': 1.0, 'out': 2.0, 'tub': 1.0, 'to': 2.0, 'reach': 1.0, 'and': 2.0, 'it': 4.0, 'only': 1.0, 'kids': 1.0, 'you': 2.0, 'practical': 1.0, 'loooved': 1.0, 'probleme': 1.0, 'of': 2.0, 'all': 1.0, 'have': 1.0, 'weeks': 1.0, 'put': 1.0}
Word element => {'just': 1.0, 'water': 1.0, 'then': 1.0, 'first': 1.0, 'add': 2.0, 'said': 1.0, 'so': 1.0, 'shake': 1.0, 'mix': 2.0, 'wouldn': 2.0, 'it': 10.0, 'this': 1.0, 'half': 2.0, 'has': 1.0, 'wall': 1.0, 'soap': 2.0, 'the': 3.0, 'a': 1.0, 't': 2.0, 'adorable': 1.0, 'love': 1.0, 'directions': 1.0, 'but': 2.0, 'stir': 1.0, 'you': 1.0, 'penguin': 1.0, 'fault': 1.0, 'stick': 1.0, 'solution': 1.0, 'still': 1.0, 'as': 2.0, 'to': 4.0, 'had': 1.0, 'was': 2.0, 'is': 3.0, 'put': 1.0, 'think': 1.0, 'on': 1.0, 'not': 1.0, 'easy': 1.0, 'foaming': 1.0, 'like': 1.0, 'should': 1.0, 'push': 1.0, 'my': 1.0, 'button': 1.0, 'because': 1.0, 'maybe': 1.0, 'i': 4.0, 'adding': 1.0, 'too': 1.0, 'much': 1.0, 'followed': 1.0, 'iwas': 1.0}
Word element => {'even': 1.0, 'used': 1.0, 'never': 1.0, 'think': 1.0, 'don': 1.0, 'there': 1.0, 'but': 1.0, 'put': 1.0, 'and': 1.0, 'return': 2.0, 'did': 1.0, 'so': 1.0, 'thing': 1.0, 'stay': 2.0, 'hold': 1.0, 'its': 1.0, 'wall': 1.0, 'soap': 3.0, 'once': 2.0, 'in': 2.0, 'cannot': 1.0, 'can': 1.0, 'fill': 1.0, 'i': 7.0, 'this': 1.0, 'it': 5.0, 'not': 3.0, 'because': 3.0, 'just': 1.0, 'haveay': 1.0, 'on': 1.0, 'won': 1.0, 'box': 1.0, 't': 2.0, 'the': 3.0, 'damaged': 1.0}
Word element => {'bag': 1.0, 'in': 1.0, 'keep': 1.0, 'cute': 1.0, 'so': 1.0, 'out': 1.0, 'eating': 1.0, 'crayons': 3.0, 'with': 3.0, 'this': 1.0, 'children': 1.0, 'i': 1.0, 'by': 1.0, 'is': 1.0, 'handled': 1.0, 'child': 1.0, 'don': 1.0, 'about': 1.0, 'when': 1.0, 'you': 2.0, 'are': 2.0, 'great': 2.0, 'go': 1.0, 'going': 1.0, 'a': 2.0, 't': 1.0, 'play': 2.0, 'other': 1.0, 'item': 2.0, 'have': 3.0, 'handling': 1.0, 'likes': 1.0, 'if': 1.0, 'my': 1.0, 'that': 1.0, 'been': 1.0, 'rolling': 1.0, 'your': 1.0, 'on': 2.0, 'worry': 1.0, 'restaurant': 1.0, 'floor': 1.0, 'let': 1.0, 'or': 1.0, 'sniffles': 1.0, 'she': 1.0, 'the': 5.0, 'bungee': 1.0, 'straps': 1.0, 'to': 5.0, 'as': 2.0, 'granddaughter': 1.0, 'much': 1.0}
Word element => {'ensembles': 1.0, 'permanent': 1.0, 'make': 1.0, 'unique': 1.0, 'novel': 1.0, 'a': 2.0, 'it': 2.0, 'bungeeand': 1.0, 'i': 4.0, 'materials': 1.0, 'gift': 1.0, 'children': 2.0, 'in': 1.0, 'bungee': 2.0, 'the': 3.0, 'practical': 2.0, 'past': 1.0, 'when': 1.0, 'and': 5.0, 'limeand': 1.0, 'have': 2.0, 'versatile': 1.0, 'everyone': 1.0, 'all': 1.0, 'as': 1.0, 'paci': 1.0, 'to': 4.0, 'decided': 1.0, 'bought': 1.0, 'so': 1.0, 'limefor': 1.0, 'friends': 1.0, 'with': 1.0, 'thenini': 3.0, 'are': 3.0, 'sunny': 2.0, 'well': 1.0, 'toy': 1.0, 'easy': 1.0, 'they': 1.0, 'clean': 1.0, 'eye': 1.0, 'family': 1.0, 'my': 2.0, 'addition': 1.0, 'how': 1.0, 'catching': 1.0, 'ordered': 2.0, 'such': 1.0, 'products': 1.0, 'some': 1.0, 'loves': 1.0, 'that': 1.0, 'nephew': 1.0, 'crayon': 1.0, 'product': 1.0, 'for': 1.0, 'new': 1.0, 'great': 1.0, 'grand': 1.0, 'recently': 1.0, 'ordering': 1.0, 'saw': 1.0}
Word element => {'my': 1.0, 'assembled': 1.0, 'half': 1.0, 'babysrus': 1.0, 'at': 1.0, 'am': 1.0, 'i': 2.0, 'assemble': 1.0, '53': 1.0, 'returning': 1.0, 'parts': 1.0, 'get': 1.0, 'and': 4.0, 'as': 2.0, 'are': 1.0, 'back': 1.0, 'but': 1.0, 'too': 1.0, 'good': 1.0, 'to': 2.0, 'comfortable': 1.0, 'one': 1.0, 'does': 1.0, 'the': 2.0, 'disassemble': 2.0, 'piece': 2.0, 'snaps': 1.0, 'cannot': 1.0, 'in': 1.0, 'other': 1.0, 'difficult': 2.0, 'not': 1.0, 'it': 3.0, 'looks': 1.0, 'is': 1.0}
Word element => {'in': 1.0, 'place': 1.0, 'loves': 1.0, 'has': 1.0, 'that': 1.0, 'different': 1.0, 'the': 1.0, 's': 1.0, 'product': 1.0, 'soon': 1.0, 'boys': 1.0, 'she': 2.0, 'girls': 1.0, 'little': 1.0, 'did': 1.0, 'not': 1.0, 'a': 1.0, 'up': 1.0, 'as': 3.0, 'very': 1.0, 'gets': 1.0, 'daughter': 2.0, 'love': 1.0, 'for': 2.0, 'my': 2.0, 'with': 1.0, 'it': 4.0, 'this': 3.0, 'gadgets': 1.0, 'got': 1.0, 'i': 3.0, 'to': 1.0, 'busy': 1.0, 'all': 1.0, 'helped': 1.0, 'pinked': 1.0, 'want': 1.0, 'is': 1.0, 'nice': 1.0, 'neutral': 1.0, 'and': 1.0, 'get': 1.0, 'jumper': 1.0, 'both': 1.0, 'her': 2.0, 'works': 1.0}
Word element => {'when': 1.0, 'hiding': 1.0, 'if': 1.0, 'so': 1.0, 'everything': 1.0, 'awkward': 1.0, 'you': 2.0, 'your': 1.0, 'peek': 2.0, 'at': 1.0, 'rooms': 1.0, 'to': 3.0, 'allows': 1.0, 'be': 1.0, 'baby': 1.0, 'nice': 1.0, 'people': 1.0, 'is': 2.0, 'sitting': 2.0, 'cover': 1.0, 'while': 1.0, 'little': 1.0, 'didn': 1.0, 'busy': 1.0, 'able': 1.0, 'nursing': 1.0, 'behind': 1.0, 't': 1.0, 'the': 2.0, 'in': 1.0, 'hole': 1.0, 'reason': 1.0, 'get': 1.0, 'this': 1.0, 'only': 1.0, 'it': 2.0, 'see': 1.0, 'a': 2.0, '5': 1.0, 'are': 1.0, 'actually': 1.0}
Word element => {'moving': 1.0, 't': 1.0, 'cover': 1.0, 'have': 1.0, 'if': 1.0, 'sides': 1.0, 'you': 1.0, 'isn': 1.0, 'your': 1.0, 'public': 1.0, 'in': 1.0, 'design': 1.0, 'feedings': 1.0, 'confident': 1.0, 'feeling': 1.0, 'beautifully': 1.0, 'especially': 1.0, 'easy': 1.0, 'a': 1.0, 'very': 1.0, 'like': 1.0, 'while': 1.0, 'active': 1.0, 'baby': 2.0, 'for': 1.0, 'mine': 1.0, 'position': 1.0, 'to': 1.0, 'switch': 1.0, 'works': 1.0, 'etc': 1.0}
Word element => {'company': 1.0, 'home': 1.0, 'this': 1.0, 'public': 1.0, 'with': 1.0, 'buying': 1.0, 'up': 1.0, 'ended': 1.0, 'back': 1.0, 'tie': 1.0, 'string': 1.0, 'of': 1.0, 'type': 1.0, 'fasten': 1.0, 'i': 4.0, 'well': 4.0, 'use': 2.0, 'front': 1.0, 'around': 1.0, 'is': 2.0, 'was': 1.0, 'doesn': 2.0, 'a': 4.0, 't': 2.0, 'the': 3.0, 'attractive': 1.0, 'cover': 1.0, 'like': 1.0, 'any': 1.0, 'to': 5.0, 'as': 2.0, 'and': 3.0, 'couple': 1.0, 'would': 2.0, 'good': 1.0, 'sure': 1.0, 'when': 1.0, 'you': 2.0, 'idea': 1.0, 'times': 1.0, 'style': 1.0, 'squirming': 1.0, 'stay': 2.0, 'an': 1.0, 'loop': 1.0, 'it': 8.0, 'covers': 1.0, 'for': 1.0, 'one': 2.0, 'poncho': 1.0, 'in': 3.0, 'there': 2.0, 'lets': 1.0, 'very': 3.0, 'little': 1.0, 'but': 1.0, 'work': 2.0, 'shoulder': 1.0, 'peek': 1.0, 'at': 2.0, 'think': 1.0, 'make': 1.0, 'put': 1.0, 'on': 1.0, 'your': 1.0, 'however': 1.0, 'part': 1.0, 'if': 2.0}
Word element => {'for': 1.0, 'slack': 1.0, 'exposed': 1.0, 'and': 1.0, 'clip': 1.0, 'imagine': 1.0, 'of': 1.0, 'out': 1.0, 'added': 1.0, 'are': 1.0, 'strap': 1.0, 'fumbling': 1.0, 'it': 2.0, 'found': 1.0, 'this': 2.0, 'with': 1.0, 'only': 1.0, 'baby': 1.0, 'dysfunctional': 1.0, 'all': 1.0, 'as': 1.0, 'to': 2.0, 'still': 1.0, 'falls': 1.0, 'have': 2.0, 'security': 1.0, 'about': 1.0, 'thing': 1.0, 'into': 1.0, 'that': 2.0, 'cover': 2.0, 'can': 1.0, '2': 1.0, 'slide': 1.0, 'properly': 1.0, 'we': 1.0, 'causes': 1.0, 'a': 2.0, 'bit': 1.0, 'myself': 1.0, 'without': 1.0, 'the': 10.0, 'job': 2.0, 'neck': 1.0, 'or': 1.0, 'said': 1.0, 'comes': 1.0, 'is': 1.0, 'you': 1.0, 'am': 1.0, 'when': 2.0, 'knot': 1.0, 'does': 2.0, 'nursing': 1.0, 'down': 2.0, 'i': 5.0, 'trouble': 1.0, 'other': 1.0, 'also': 1.0, 'would': 1.0, 'shifts': 1.0, 'using': 1.0, 'which': 2.0, 'sometimes': 1.0, 'note': 1.0, 'moves': 1.0, 'pulls': 1.0, 'tying': 1.0, 'on': 1.0, 'material': 1.0, 'then': 2.0}
Word element => {'how': 1.0, 'see': 1.0, 'wait': 1.0, 'have': 1.0, 'so': 1.0, 'll': 1.0, 'longer': 1.0, 'no': 1.0, 'up': 1.0, 'nearly': 1.0, 'canvas': 1.0, 'thick': 1.0, 'were': 1.0, 'day': 1.0, 'still': 2.0, 'them': 2.0, 'love': 1.0, 'for': 1.0, 'sold': 1.0, 'and': 5.0, 'a': 1.0, 'we': 1.0, 'ago': 1.0, 'cole': 1.0, 'my': 2.0, 'years': 1.0, 'snap': 1.0, 'thin': 1.0, 'snapping': 1.0, 'pocket': 1.0, 'they': 1.0, 'these': 4.0, 'is': 2.0, 'more': 1.0, 'the': 4.0, 'with': 1.0, 'nice': 1.0, 'excited': 1.0, 'disappointed': 1.0, 'bought': 1.0, 'every': 1.0, 'bibs': 2.0, 'really': 1.0, 'material': 2.0, 'i': 5.0, 'well': 1.0, 'jj': 1.0, 'unfortunately': 1.0, 'was': 2.0, 'as': 1.0, 'to': 2.0, 'order': 1.0, 'youngest': 1.0, '2': 2.0, 'but': 2.0, 'are': 3.0, 'not': 2.0, 'same': 1.0, 'hold': 1.0, 'like': 2.0, 'which': 1.0, 'use': 1.0, 'wonderful': 1.0, 'size': 1.0, 'flimsy': 1.0, 'large': 1.0, 'originals': 2.0}
Word element => {'great': 2.0, 'old': 1.0, 'mos': 1.0, 'baby': 1.0, 'them': 2.0, 'using': 1.0, 'buying': 1.0, 'stores': 1.0, 'kind': 1.0, 'bad': 1.0, 'also': 1.0, 'be': 1.0, 'need': 1.0, 'now': 1.0, 'away': 1.0, 'involved': 1.0, 'twins': 1.0, 'easily': 1.0, 'bibs': 4.0, 'plastic': 2.0, 'separate': 1.0, 'for': 1.0, 'closure': 1.0, 'could': 1.0, 'a': 1.0, 'these': 2.0, 'the': 3.0, 'key': 2.0, 'wash': 1.0, 'in': 3.0, 'heaven': 1.0, 'snap': 1.0, 'themselves': 1.0, 'is': 3.0, 'velcro': 1.0, 'of': 1.0, 'stink': 1.0, 'babies': 1.0, 'that': 2.0, 'awesome': 1.0, 'm': 1.0, 'best': 1.0, 'open': 1.0, 'hard': 1.0, 'from': 1.0, 'i': 2.0, 'can': 1.0, 'most': 1.0, 'gifts': 1.0, 'are': 2.0, 'find': 2.0, 'not': 2.0, 'right': 1.0, 'important': 1.0, 'as': 1.0, 'to': 4.0, 'machine': 1.0, 'clean': 1.0, 'never': 1.0, 'dry': 1.0, 'my': 1.0, 'eventually': 1.0, 'pocket': 1.0, 'they': 2.0, 'have': 1.0, 'dryer': 1.0, 'do': 1.0, 'too': 1.0, 'milk': 1.0, 'and': 3.0, 'high': 1.0, 'especially': 1.0, '10': 1.0, 'thrown': 1.0, 'surface': 1.0, 'if': 1.0}
Word element => {'better': 1.0, 'a': 1.0, 'off': 1.0, 'broke': 1.0, 'stars': 1.0, '3': 1.0, '5': 1.0, 'throw': 1.0, 'month': 1.0, 'the': 1.0, 't': 1.0, 'these': 1.0, 'for': 1.0, 'fast': 1.0, 'snap': 2.0, 'like': 1.0, 'bibs': 2.0, 'd': 1.0, 'after': 1.0, 'twins': 1.0, 'when': 1.0, 'by': 1.0, 'clean': 1.0, 'swear': 1.0, 'we': 4.0, 'taking': 1.0, 'are': 1.0, 'easy': 1.0, 'give': 1.0, 'didn': 1.0, 'had': 1.0, 'to': 2.0, 'away': 1.0, 'and': 2.0, '16': 1.0, 'they': 1.0, 'dry': 1.0, 'only': 1.0, 'is': 1.0, 'really': 1.0, 'thing': 1.0, 'our': 1.0, 'that': 2.0}
Word element => {'happy': 1.0, 'baby': 1.0, 'looking': 1.0, 'were': 1.0, 'what': 1.0, 'us': 1.0, 'parents': 1.0, 'for': 1.0, 'one': 1.0, 'just': 1.0, 'this': 1.0, 'with': 1.0, 'velcro': 1.0, 'havoc': 1.0, 'off': 1.0, 'tear': 1.0, 'bibs': 1.0, 'learned': 1.0, 'to': 1.0, 'causing': 1.0, 'some': 1.0, 'purchase': 1.0, 'sturdy': 1.0, 'the': 2.0, 'these': 1.0, 'solved': 1.0, 'and': 1.0, 'issue': 1.0, 'in': 1.0, 'washable': 1.0, 'we': 1.0, 'design': 1.0, 'a': 1.0, 'little': 1.0, 'waterproof': 1.0}
Word element => {'disappointed': 1.0, 'either': 1.0, 'help': 1.0, 'washing': 1.0, 'top': 1.0, 'gets': 1.0, 'still': 1.0, 'tried': 2.0, 'on': 2.0, 'mark': 1.0, 'neck': 2.0, 've': 2.0, 'new': 1.0, 'when': 1.0, 'shirt': 1.0, 'other': 1.0, 'than': 1.0, 'were': 1.0, 'stiffer': 1.0, 'much': 1.0, 'are': 1.0, 'these': 1.0, 'designs': 1.0, 'the': 3.0, 'that': 1.0, 'been': 1.0, 'it': 2.0, 'she': 3.0, 'irritate': 1.0, 'born': 1.0, 'leave': 1.0, 'have': 1.0, 'stinky': 1.0, 'was': 1.0, 'my': 1.0, 'i': 5.0, 'two': 1.0, 'solid': 1.0, 'exactly': 1.0, 'red': 1.0, 'with': 2.0, 'this': 2.0, 'eating': 1.0, 'before': 1.0, '18': 1.0, 'used': 1.0, 't': 1.0, 'rubs': 1.0, 'ago': 1.0, 'a': 4.0, 'since': 1.0, 'her': 3.0, 'different': 2.0, 'daughter': 1.0, 'and': 4.0, 'pattern': 1.0, 'for': 2.0, 'like': 1.0, 'using': 2.0, 'months': 1.0, 'bought': 1.0, 'one': 1.0, 'them': 4.0, 'started': 1.0, 'little': 1.0, 'foods': 1.0, 'then': 1.0, 'loved': 1.0, 'didn': 1.0, 'even': 2.0, 'got': 1.0, 'every': 1.0, 'looser': 1.0, 'they': 3.0, 'after': 1.0, 'so': 2.0, 'same': 1.0, 'being': 1.0, 'day': 1.0, 'year': 1.0, 'ordered': 1.0, 'food': 1.0, 'but': 3.0, '2': 2.0, 'of': 2.0}
Word element => {'that': 1.0, 'has': 1.0, 'recommend': 1.0, 'machine': 1.0, 'from': 1.0, 'signs': 1.0, 'time': 1.0, 'so': 1.0, 'snaps': 1.0, 'pretty': 1.0, 'there': 1.0, 'of': 2.0, 'and': 2.0, 'snug': 1.0, 'old': 1.0, 'i': 1.0, '11': 1.0, 'adjustable': 1.0, 'some': 1.0, 'these': 1.0, 'the': 4.0, 'they': 2.0, 'dry': 1.0, 'our': 2.0, 'are': 2.0, 'my': 1.0, 'favorite': 1.0, 'bibs': 3.0, 'hand': 1.0, 'hold': 1.0, 'like': 1.0, 'fit': 1.0, 'for': 2.0, 'one': 1.0, 'showing': 1.0, 'month': 1.0, 'neck': 1.0, 'mainly': 1.0, 'because': 1.0, 'not': 1.0, 'washing': 1.0, '6': 1.0, 'he': 2.0, 'this': 1.0, 'with': 1.0, 'velcro': 1.0, 'only': 1.0, 'but': 1.0, 'can': 2.0, 'rip': 1.0, 'who': 1.0, 'bib': 1.0, 'off': 1.0, 'good': 1.0, 'in': 1.0, 'damage': 1.0, 'up': 1.0, 'wash': 2.0, 'out': 1.0, 'around': 1.0, 'is': 1.0}
Word element => {'price': 1.0, 'this': 1.0, 'again': 1.0, 'purchase': 1.0, 'will': 1.0, 'i': 1.0, 'the': 2.0, 'cheap': 1.0, 'not': 2.0, 'ones': 1.0, 'at': 2.0, 'than': 1.0, 'thinner': 1.0, 'all': 1.0, 'like': 1.0, 'very': 1.0, 'and': 1.0, 'generations': 1.0, 'old': 2.0, 'much': 2.0}
Word element => {'had': 1.0, 'now': 1.0, 'wash': 1.0, 'up': 1.0, 'eats': 1.0, 'after': 1.0, 'so': 2.0, 'small': 1.0, 'often': 1.0, 'my': 2.0, 'everything': 1.0, 'drops': 1.0, 'till': 1.0, 'is': 3.0, 'side': 1.0, 'sink': 1.0, 'mostly': 1.0, 'on': 1.0, 'this': 1.0, 'bib': 1.0, 'and': 3.0, 'love': 1.0, 'for': 1.0, 'using': 1.0, 'it': 5.0, 'she': 1.0, 'easy': 1.0, 'little': 2.0, 'clean': 1.0, 'meal': 1.0, 'just': 2.0, 'to': 4.0, 'them': 1.0, 'wipe': 1.0, 'was': 1.0, 'i': 4.0, 'catches': 1.0, 'down': 1.0, 'in': 1.0, 'the': 4.0, 'these': 1.0, 'ones': 1.0, 'set': 1.0, 'dry': 1.0, 'that': 1.0, 'next': 1.0, 'then': 1.0, 'daughter': 1.0, 'discovered': 1.0, 'a': 1.0, 'ready': 1.0, 'year': 1.0, 'barely': 1.0, 'material': 1.0}
Word element => {'searching': 1.0, 'be': 1.0, 'than': 1.0, 'sturdier': 1.0, 'quality': 1.0, 'intact': 1.0, 'still': 1.0, 'reckless': 1.0, 'latest': 1.0, 'due': 1.0, 'not': 1.0, 'so': 1.0, 'new': 3.0, 'were': 1.0, 'stickier': 1.0, 'are': 2.0, 'brand': 1.0, 'unsnap': 1.0, 'granted': 1.0, 'which': 1.0, 'offerings': 1.0, 'was': 2.0, 'refund': 1.0, 'for': 2.0, 'asked': 1.0, 'tearing': 1.0, 'when': 1.0, 'again': 1.0, 'that': 1.0, 'later': 1.0, 'days': 1.0, 'ten': 1.0, 'purchased': 1.0, 'children': 1.0, 'much': 1.0, 'only': 1.0, 'with': 3.0, 'higher': 1.0, 'it': 1.0, 'contacted': 1.0, 'have': 1.0, 'used': 1.0, 'as': 1.0, 'to': 2.0, 'our': 1.0, 'recently': 1.0, '34': 2.0, 'years': 1.0, 'will': 1.0, 'tore': 2.0, 'another': 1.0, 'jj': 3.0, 'cloth': 1.0, 'carefully': 1.0, 'this': 1.0, 'cole': 3.0, 'too': 1.0, 'and': 4.0, 'bib': 4.0, 'same': 1.0, 'own': 1.0, 'made': 2.0, 'the': 11.0, 'along': 1.0, 'care': 1.0, 'other': 2.0, 'i': 5.0, '4': 1.0, 'two': 1.0, 'quickly': 1.0, 'earlier': 1.0, 'of': 2.0, 'every': 1.0, 'bibs': 6.0, 'material': 2.0, 'but': 2.0, 'week': 2.0, 'last': 1.0, 'different': 1.0, 'excluding': 1.0, 'print': 1.0, 'after': 1.0, 'a': 5.0, 's': 1.0, 'replaced': 1.0, 'button': 2.0, 'buttons': 1.0, 'took': 1.0, 'through': 1.0, 'use': 2.0, 'amazon': 2.0, 'or': 1.0}
Word element => {'that': 1.0, 'away': 1.0, '1': 1.0, 'and': 1.0, 'thinner': 1.0, 'bit': 1.0, 'imo': 1.0, 'take': 1.0, 'version': 1.0, 'is': 2.0, 'as': 2.0, 'best': 1.0, 'have': 1.0, 'to': 1.0, 'seems': 1.0, 'older': 1.0, 'durable': 1.0, 'this': 2.0, 'hard': 1.0, 'lil': 1.0, 'bibs': 1.0, 'newer': 1.0, 'soft': 1.0, 'of': 2.0, 'not': 2.0, 'are': 1.0, 'different': 1.0, 'lot': 1.0, 'a': 2.0, 'versions': 1.0, 'don': 1.0, 'ved': 1.0, 'balance': 1.0, 'most': 1.0, 'tried': 1.0, 'i': 1.0, 'for': 2.0, 'one': 2.0, 'comfortable': 1.0, 'ones': 2.0, 'the': 7.0, 't': 1.0, 'which': 1.0, 'catch': 1.0, 'star': 1.0, 'so': 1.0, 'food': 1.0}
Word element => {'issue': 1.0, 'an': 1.0, 'be': 1.0, 'mine': 1.0, 'does': 1.0, 'than': 1.0, 'chunkier': 1.0, 'your': 1.0, 'if': 1.0, 'options': 1.0, 'some': 1.0, 'snug': 1.0, 'just': 1.0, 'kid': 1.0, 'quite': 1.0, 'velcro': 1.0, 'snaps': 1.0, 'has': 2.0, 'is': 2.0, 'really': 1.0, 'crazy': 1.0, 'm': 1.0, 'daughter': 1.0, 'not': 4.0, 'the': 3.0, 'goo': 1.0, 'easily': 1.0, 'like': 1.0, 'i': 2.0, 'it': 2.0, 'only': 1.0, 'thing': 1.0, 'about': 1.0, 'stylish': 1.0, 'and': 2.0, 'three': 1.0, 'lot': 1.0, 'bib': 2.0, 'down': 2.0, 'what': 1.0, 'sturdy': 1.0, 'how': 1.0, 'neck': 4.0, 'so': 1.0, 'bit': 1.0, 'collar': 1.0, 'wait': 1.0, 't': 1.0, 's': 3.0, 'a': 4.0, 'hole': 1.0, 'always': 1.0, 'of': 1.0, 'this': 2.0, 'allows': 1.0, 'supposed': 1.0, 'food': 1.0, 'wipes': 1.0, 'dribble': 1.0, 'as': 2.0, 'to': 2.0, 'other': 1.0, 'adjustable': 1.0, 'prevent': 1.0, 'shirt': 1.0, 'may': 1.0, 'my': 1.0, 'isn': 1.0, 'into': 1.0, 'that': 1.0}
Word element => {'one': 1.0, 'tasks': 1.0, 'learning': 1.0, 'am': 1.0, 'mom': 1.0, 'new': 1.0, 'be': 1.0, 'may': 1.0, 'my': 1.0, 'how': 2.0, 'no': 1.0, 'carry': 1.0, 'i': 2.0, 'two': 1.0, 'ton': 1.0, 'a': 4.0, 'of': 2.0, 'has': 1.0, 'common': 1.0, 'also': 1.0, 'it': 2.0, 'full': 1.0, 'this': 1.0, 'do': 1.0, 'only': 1.0, 'with': 1.0, 'diapers': 1.0, 'most': 1.0, 'can': 1.0, 'but': 1.0, 'make': 1.0, 'bag': 1.0, 'not': 2.0, 'matter': 1.0, 'bags': 1.0, 'mat': 1.0, 'straps': 1.0, 'fashionable': 1.0, 'changing': 1.0, 'stroller': 1.0, 'diaper': 1.0, 'hands': 1.0, 'the': 1.0, 'which': 2.0, 'more': 1.0, 'is': 2.0, 'wipes': 1.0, 'still': 2.0, 'changes': 1.0, 'and': 3.0, 'handed': 1.0, 'space': 1.0, 'messenger': 1.0, 'clothes': 1.0, 'have': 1.0, 'bottles': 1.0, 'strap': 1.0, 'blanket': 1.0, 'formula': 1.0, 'room': 1.0, 'fit': 1.0, 'for': 1.0, 'comfortable': 1.0, 'pus': 1.0, 'as': 1.0, 'to': 1.0}
Word element => {'are': 1.0, 'stroller': 1.0, 'quality': 1.0, 'great': 1.0, 'splurge': 1.0, 'this': 2.0, 'have': 1.0, 'after': 1.0, 'pregnancy': 1.0, 'at': 1.0, 'would': 1.0, 'big': 1.0, 'target': 1.0, 'my': 2.0, 'bought': 1.0, 'awesome': 1.0, 'hooks': 1.0, 'something': 1.0, 'cute': 1.0, 'hate': 1.0, 'and': 2.0, 'too': 1.0, 'was': 1.0, 'to': 1.0, 'husband': 1.0, 'girly': 1.0, 'not': 1.0, 'seeing': 1.0, 'carrying': 1.0}
Word element => {'materials': 1.0, 'poor': 1.0, 'really': 1.0, 'style': 1.0, 'avoid': 1.0, 'overall': 1.0, 'kind': 1.0, 'wouldn': 1.0, 'even': 1.0, 'and': 3.0, 'upper': 1.0, 'cute': 1.0, 'are': 1.0, 'bad': 1.0, 'canvas': 1.0, 'noticeable': 1.0, 'plastic': 1.0, 'without': 1.0, 'looked': 3.0, 'from': 3.0, 'flimsy': 1.0, 'online': 1.0, 'suffers': 1.0, 'sleek': 1.0, 'also': 1.0, 'in': 4.0, 'looking': 1.0, 'bag': 5.0, 'but': 5.0, 'just': 1.0, 'like': 2.0, 'cheap': 2.0, 'product': 1.0, 'this': 2.0, 'with': 1.0, 'green': 2.0, 'felt': 1.0, 'handles': 1.0, 'material': 2.0, 'i': 4.0, 'bru': 1.0, 'love': 1.0, 'far': 1.0, 'for': 2.0, 'such': 1.0, 'out': 2.0, 'less': 1.0, 'way': 1.0, 's': 3.0, 'a': 5.0, 'strange': 1.0, 't': 1.0, 'the': 12.0, 'person': 1.0, 'of': 2.0, 'would': 2.0, 'lining': 1.0, 'structured': 1.0, 'something': 1.0, 'pictures': 2.0, 'scratch': 1.0, 'lime': 1.0, 'that': 3.0, 'easily': 1.0, 'you': 3.0, 'not': 1.0, 'looks': 2.0, 'me': 1.0, 'what': 1.0, 'had': 1.0, 'it': 6.0, 'thought': 2.0, 'color': 1.0, 'pattern': 1.0, 'one': 1.0, 'uncomfortable': 1.0, 'at': 3.0, 'is': 3.0, 'on': 1.0, 'think': 1.0, 'amazon': 1.0, 'checked': 1.0, 'bother': 1.0, 'clear': 1.0, 'if': 3.0, 'have': 1.0, 'open': 1.0, 'or': 1.0, 'part': 2.0, 'fell': 1.0, 'tilted': 1.0, 'luggage': 1.0, 'all': 1.0, 'to': 2.0, 'very': 1.0, 'away': 1.0, 'which': 1.0, 'bulges': 1.0, 'made': 1.0, 'good': 1.0, 'garish': 1.0, 'carry': 1.0, 'be': 1.0, 'trying': 1.0, 're': 1.0}
Word element => {'with': 1.0, 'happy': 1.0, 'extremely': 1.0, 'away': 1.0, 'venture': 1.0, 'been': 1.0, 'hop': 1.0, 'skip': 1.0, 'have': 2.0, 'one': 1.0, 'albeit': 1.0, 'purse': 1.0, 'more': 1.0, 'looks': 1.0, 'looking': 1.0, '7': 1.0, 'ages': 2.0, 'lots': 2.0, 'don': 1.0, 'bags': 1.0, 'from': 1.0, 'this': 1.0, 'kids': 1.0, 'my': 1.0, 'diaper': 1.0, 'stroller': 1.0, 'but': 1.0, 'work': 2.0, 'four': 1.0, 'to': 1.0, 'all': 1.0, 'somewhat': 1.0, 'straps': 1.0, 'cute': 1.0, 'big': 1.0, 'feel': 1.0, 'great': 2.0, 'suitcase': 1.0, 'the': 2.0, 'pockets': 1.0, 'i': 4.0, 'too': 1.0, 'and': 6.0, 'plenty': 2.0, 'clasps': 1.0, 'bento': 1.0, 'room': 2.0, 'of': 5.0, 'duo': 1.0, 'sturdy': 1.0, 'like': 2.0, 'which': 1.0, 'bag': 1.0, 'done': 1.0, 'need': 1.0, 'afraid': 1.0, 'for': 3.0, 'everywhere': 1.0, 'down': 1.0, 'professional': 1.0, 'toting': 1.0, 'are': 1.0, 'stuff': 2.0, 'on': 2.0, 'constantly': 1.0, 'a': 3.0, 't': 1.0, 'we': 1.0, 'go': 1.0, 'feels': 1.0, 'handles': 1.0, 'carting': 1.0, 'am': 2.0, 'something': 1.0, 'super': 1.0, 'studio': 1.0, 'first': 1.0, 'so': 1.0, 'time': 1.0, 'in': 1.0}
Word element => {'than': 1.0, 'rather': 1.0, '34': 2.0, 'purses': 1.0, 'trendy': 1.0, 'their': 1.0, 'that': 1.0, 'fact': 1.0, 'more': 1.0, 'the': 1.0, 'like': 2.0, 'baby': 1.0, 'years': 1.0, 'jj': 1.0, 'i': 3.0, 'first': 1.0, 'almost': 1.0, 'look': 1.0, 'buying': 1.0, 'are': 1.0, 'they': 1.0, 'bags': 3.0, 'big': 1.0, 'very': 1.0, 'and': 1.0, 'my': 1.0, 'cole': 1.0, 'for': 1.0, 'one': 2.0, 'love': 1.0, 'used': 1.0, 'before': 1.0, 'a': 1.0, 'three': 1.0, 'functional': 1.0, 'new': 1.0, 'stylish': 1.0}
Word element => {'while': 1.0, 'continue': 1.0, 'hard': 1.0, 'maybe': 1.0, 'verdict': 1.0, 'especially': 1.0, 'new': 1.0, 'time': 1.0, 'got': 1.0, 'onyx': 1.0, 'take': 1.0, 'classic': 1.0, 'inside': 1.0, 'll': 1.0, 'aesthetic': 1.0, 'useful': 1.0, 'each': 1.0, 've': 1.0, 'anything': 1.0, 'about': 1.0, 'thing': 1.0, 'just': 1.0, 'hold': 1.0, 'like': 1.0, 'will': 2.0, 'also': 1.0, 'off': 1.0, 'pocket': 1.0, 'start': 1.0, 'very': 2.0, 'construction': 1.0, 'awful': 1.0, 'son': 1.0, 'patent': 1.0, 'pros': 1.0, 'that': 1.0, 'fall': 1.0, 'simple': 1.0, 'using': 1.0, 'bag': 4.0, 'months': 1.0, 'color': 1.0, 'too': 1.0, 'one': 2.0, 'undone': 1.0, 'my': 3.0, 'last': 1.0, 'born': 1.0, 'roomy': 1.0, 'have': 1.0, 'suppose': 1.0, 'weekends': 1.0, 'reinforce': 1.0, 'brown': 1.0, 'decent': 1.0, 'it': 1.0, 'already': 1.0, 'purchased': 1.0, 'had': 1.0, 'coming': 1.0, 'i': 11.0, 'october': 1.0, 'and': 6.0, 'leather': 1.0, 'this': 5.0, 'he': 1.0, '6': 1.0, 'addition': 1.0, 'was': 1.0, 'pretty': 1.0, 'to': 5.0, 'child': 1.0, 'price': 1.0, 'in': 3.0, 'm': 2.0, 'for': 3.0, 'cons': 1.0, 'diaper': 2.0, 'horrible': 1.0, 'use': 1.0, 'a': 4.0, 't': 1.0, 'working': 1.0, 'faux': 1.0, 'approaching': 1.0, 'so': 1.0, 'seam': 1.0, 'really': 1.0, 'whatever': 1.0, 'only': 1.0, 'on': 4.0, 'needle': 2.0, 'thread': 2.0, 'handles': 2.0, 'is': 7.0, 'handle': 1.0, 'longer': 1.0, 'the': 12.0, 'of': 2.0, 'with': 1.0, 'pockets': 1.0, 'pull': 1.0, 'absolutely': 1.0, 'out': 1.0, 'again': 1.0, 'but': 2.0, 'mom': 2.0, 'words': 1.0, 'doubt': 1.0, 'sweet': 1.0, 'ain': 1.0, 'nobody': 1.0}
Word element => {'compliments': 1.0, 'so': 1.0, 'stylish': 1.0, 'room': 1.0, 'made': 1.0, 'well': 1.0, 'have': 2.0, 'bag': 1.0, 'it': 1.0, 'this': 2.0, 'i': 2.0, 'countless': 1.0, 'one': 1.0, 'get': 1.0, 'and': 3.0, 'bags': 1.0, '3': 1.0, 'gone': 1.0, 'of': 2.0, 'has': 2.0, 'tons': 2.0, 'compartments': 1.0, 'kids': 1.0, 'through': 1.0, 'years': 1.0, 'on': 1.0, 'uses': 1.0, 'over': 1.0, 'diaper': 1.0, 'the': 1.0, 'but': 1.0, 'many': 1.0, 'is': 2.0}
Word element => {'happy': 1.0, 'so': 2.0, 'and': 1.0, 'it': 1.0, 'love': 1.0, 'wish': 1.0, 'the': 3.0, 'a': 1.0, 'bag': 1.0, 'elastic': 1.0, 'i': 1.0, 'with': 1.0, 'on': 1.0, 'tighter': 1.0, 'was': 1.0, 'little': 1.0, 'inside': 1.0, 'but': 1.0}
Word element => {'would': 1.0, 'material': 1.0, 'good': 1.0, 'made': 1.0, 'expecting': 1.0, 'was': 1.0, 'that': 1.0, 'but': 1.0, 's': 2.0, 'all': 1.0, 'like': 1.0, 'room': 1.0, 'of': 2.0, 'has': 1.0, 'pattern': 1.0, 'big': 1.0, 'best': 1.0, 'lots': 1.0, 'baby': 1.0, 'my': 1.0, 'diaper': 1.0, 'the': 4.0, 'what': 1.0, 'before': 1.0, 'came': 1.0, 'bag': 1.0, 'recommend': 1.0, 'lot': 1.0, 'well': 1.0, 'a': 1.0, 'around': 1.0, 'pockets': 1.0, 'i': 6.0, 'seems': 1.0, 'perfect': 1.0, 'gray': 1.0, 'and': 4.0, 'for': 1.0, 'one': 1.0, 'liked': 1.0, 'love': 1.0, 'this': 2.0, 'looked': 1.0, 'it': 3.0}
Word element => {'really': 1.0, 'smaller': 1.0, 'must': 1.0, 'instead': 1.0, 'bought': 1.0, 'which': 1.0, 'bradley': 1.0, 'like': 1.0, 'vera': 1.0, 'has': 1.0, 'friend': 1.0, 'tell': 1.0, 'they': 1.0, 'purse': 1.0, 'most': 1.0, 'or': 1.0, 'compliment': 1.0, 'people': 2.0, 'also': 1.0, 'visits': 1.0, 'doctor': 1.0, 'paperwork': 1.0, 'products': 1.0, 'travel': 1.0, 'gets': 1.0, 'sized': 2.0, 'oball': 1.0, 'phone': 1.0, 'straps': 1.0, 'messenger': 1.0, 'formula': 1.0, 'ventaire': 1.0, 'extra': 1.0, 'box': 2.0, 'receiving': 1.0, 'wipes': 1.0, 'outting': 1.0, 'typical': 1.0, 'carry': 1.0, 'what': 1.0, 'you': 2.0, 'give': 1.0, 'either': 1.0, 'space': 1.0, 'having': 1.0, 'not': 1.0, 'how': 1.0, 'mine': 1.0, 'bib': 1.0, '6': 1.0, 'extremely': 1.0, 'exactly': 1.0, 'know': 1.0, 'ask': 1.0, 'can': 3.0, 'so': 2.0, 'july': 1.0, 'yes': 1.0, 'until': 2.0, 'be': 1.0, 'here': 1.0, 'johnson': 1.0, 'creme': 1.0, 'baby': 1.0, 'have': 2.0, 'roomy': 2.0, 'regular': 1.0, 'won': 2.0, 's': 5.0, 'rattle': 2.0, 'small': 1.0, 'a': 14.0, 'outfit': 1.0, 'it': 9.0, 'inside': 1.0, 'but': 2.0, 'than': 1.0, 'actually': 1.0, 'color': 2.0, 'tons': 1.0, 'months': 1.0, 'daughter': 1.0, 'got': 1.0, 'with': 2.0, 'plenty': 2.0, 'pockets': 1.0, 'if': 1.0, 'still': 2.0, 'diapers': 3.0, 'cute': 2.0, 'hers': 1.0, 'outside': 1.0, 'pretty': 2.0, 'to': 5.0, 'idea': 1.0, 'any': 1.0, 'monitor': 1.0, 'little': 1.0, 'and': 11.0, 'green': 1.0, 'lot': 1.0, 'one': 2.0, 'too': 1.0, 'using': 1.0, 'bag': 5.0, 'll': 1.0, 'true': 1.0, 'issues': 1.0, 'is': 6.0, 'more': 1.0, 'say': 2.0, 'stuff': 1.0, 'pack': 1.0, 'think': 1.0, 'of': 9.0, 'the': 7.0, 'as': 2.0, 'bags': 1.0, 'diaper': 5.0, 'i': 13.0, 'me': 3.0, 'my': 4.0, 'white': 2.0, 'cleans': 1.0, 'make': 1.0, 'area': 1.0, 'put': 2.0, 'much': 2.0, 'in': 4.0, 'then': 1.0, 'don': 1.0, 'list': 1.0, 'aspen': 1.0, 'd': 1.0, 'enough': 2.0, 'for': 3.0, 'snacks': 1.0, 't': 6.0, 'fit': 2.0, 'wallet': 2.0, 'keys': 2.0, 'some': 3.0, 'up': 1.0, 'over': 1.0, '5': 2.0, 'blanket': 2.0, 'managed': 1.0, 'bottles': 2.0, 'yet': 1.0, 'an': 3.0, 'fits': 1.0, 'other': 1.0, 'on': 5.0, 'update': 2.0, 'very': 3.0, 'later': 1.0, 'everything': 2.0, 've': 1.0, 'playtex': 1.0, 'been': 1.0, 'this': 3.0, 'almost': 1.0, 'now': 1.0, 'that': 1.0, 'because': 1.0, 'easily': 2.0, 'although': 1.0, 'arbor': 1.0, 'hasn': 1.0, 'gotten': 1.0, 'dirty': 3.0, 'haven': 1.0, 'had': 1.0}
Word element => {'bag': 1.0, 'is': 1.0, 'it': 2.0, 'this': 1.0, 'she': 2.0, 'daughter': 1.0, 'for': 1.0, 'look': 1.0, 't': 1.0, 'diaper': 1.0, 'and': 2.0, 'very': 1.0, 'like': 1.0, 'stylish': 1.0, 'friendly': 1.0, 'my': 1.0, 'user': 1.0, 'got': 1.0, 'loves': 1.0, 'holds': 1.0, 'everything': 1.0, 'needs': 1.0, 'doesn': 1.0, 'a': 1.0}
Word element => {'stuff': 1.0, 'baby': 1.0, 'toddler': 1.0, 'gender': 1.0, 'any': 1.0, 'so': 2.0, 'all': 1.0, 'holds': 1.0, 'far': 1.0, 'good': 1.0, 'work': 1.0, 'would': 1.0, 'i': 1.0, 'it': 1.0, 'love': 1.0, 'the': 1.0, 'mommy': 1.0, 'look': 1.0, 'for': 1.0}
Word element => {'of': 1.0, 'on': 1.0, 'see': 1.0, 'am': 1.0, 'you': 1.0, 'true': 1.0, 'arbor': 1.0, 'in': 1.0, 'really': 1.0, 'website': 1.0, 'the': 3.0, 'to': 2.0, 'what': 1.0, 'had': 1.0, 'get': 1.0, 'it': 4.0, 'with': 1.0, 'durable': 1.0, 'leaked': 1.0, 'gross': 1.0, 'so': 2.0, 'smelly': 1.0, 'after': 1.0, 'got': 2.0, 'loved': 1.0, 'bottles': 1.0, 'lot': 1.0, 'many': 2.0, 'is': 3.0, 'perfect': 1.0, 'this': 1.0, 'cole': 3.0, 'went': 1.0, 'fan': 1.0, 'i': 7.0, 'buy': 1.0, 'diaper': 1.0, 'bag': 2.0, 'inside': 1.0, 'but': 2.0, 'green': 1.0, 'and': 4.0, 'too': 2.0, 'style': 1.0, 'new': 1.0, 'color': 2.0, 'one': 2.0, 'love': 1.0, 'comfortable': 1.0, 'my': 1.0, 'another': 1.0, 'last': 2.0, 'different': 1.0, 'absolutely': 1.0, 'jj': 3.0, 'roomy': 1.0, 'stylish': 1.0, 'compliments': 1.0, 'a': 4.0, 'we': 1.0, 'travel': 1.0, 'like': 1.0}
Word element => {'far': 1.0, 'favorite': 1.0, 'my': 1.0, 'bags': 1.0, 'several': 1.0, 'had': 1.0, 'probably': 1.0, 'organized': 1.0, 'pretty': 1.0, 'stays': 1.0, 'large': 2.0, 'also': 1.0, 'way': 1.0, 'this': 1.0, 'it': 3.0, 'is': 2.0, 'looks': 1.0, 'needed': 1.0, 'bag': 2.0, 'pockets': 1.0, 'i': 5.0, 'very': 1.0, 'nice': 1.0, 'need': 1.0, 'but': 1.0, 'fits': 1.0, 'have': 1.0, 'all': 1.0, 'a': 1.0, 'so': 2.0, 'everything': 2.0, 'love': 2.0, 'for': 1.0, 'two': 1.0, 'little': 1.0, 'diaper': 1.0, 'the': 2.0, 'ones': 1.0}
Word element => {'recommend': 1.0, 'would': 1.0, 'brand': 1.0, 'still': 1.0, 'few': 1.0, 'months': 1.0, 'on': 1.0, 'compliments': 1.0, 'looks': 1.0, 'many': 1.0, 'received': 1.0, 'pattern': 1.0, 'anyone': 1.0, 've': 2.0, 'having': 1.0, 'i': 6.0, 'when': 1.0, 'wonderful': 1.0, 'looking': 1.0, 'non': 1.0, 'resemble': 1.0, 'knew': 1.0, 'bag': 3.0, 'saw': 1.0, 'new': 1.0, 'fit': 1.0, 'stop': 1.0, 'along': 1.0, 'with': 1.0, 'this': 3.0, 'it': 5.0, 'to': 1.0, 'had': 1.0, 'was': 2.0, 'using': 1.0, 'one': 2.0, 'for': 2.0, 'the': 1.0, 't': 1.0, 'diaper': 1.0, 'huge': 1.0, 'and': 2.0, 'didn': 1.0, 'a': 3.0, 'something': 1.0, 'that': 1.0}
Word element => {'must': 1.0, 'comfy': 1.0, 'strap': 1.0, 'pack': 1.0, 'blankets': 1.0, 'necessary': 1.0, 'of': 1.0, 'there': 1.0, 'plenty': 1.0, 'is': 3.0, 'so': 1.0, 'i': 3.0, 'pockets': 1.0, 'cloth': 1.0, 'cute': 1.0, 'finally': 1.0, 'the': 7.0, 'bag': 2.0, 'for': 3.0, 'love': 1.0, 'handle': 1.0, 'inside': 1.0, 'stroller': 2.0, 'found': 1.0, 'perfect': 1.0, 'also': 1.0, 'and': 5.0, 'space': 1.0, 'messenger': 1.0, 'm': 1.0, 'diapering': 1.0, 'hook': 1.0, 'dipes': 1.0, 'clean': 1.0, 'wipes': 1.0, 'a': 2.0, 'well': 1.0, 'wet': 1.0, 'to': 3.0, 'as': 2.0, 'room': 1.0, 'dirties': 1.0, 'outfits': 1.0, 'me': 1.0, 'style': 2.0, 'modern': 1.0, 'on': 1.0, 'hooks': 1.0, 'it': 1.0, 'extra': 1.0, 'bars': 1.0}
Word element => {'it': 3.0, 'love': 1.0, 'we': 1.0, 'and': 1.0, 'green': 1.0, 'cute': 1.0, 'still': 1.0, 'quickly': 1.0, 'in': 1.0, 'online': 1.0, 'came': 1.0, 'bag': 1.0, 'diaper': 1.0, 'the': 3.0, 'a': 1.0, 'little': 1.0, 'darker': 1.0, 'than': 1.0, 'but': 1.0, 'picture': 1.0, 'of': 1.0, 'is': 1.0, 'really': 1.0, 's': 1.0}
Word element => {'be': 1.0, 'that': 1.0, 'lots': 1.0, 'shouldn': 1.0, 'is': 1.0, 'there': 1.0, 'smaller': 1.0, 'holding': 1.0, 'big': 1.0, 'seemed': 1.0, 'were': 1.0, 'inside': 1.0, 'pockets': 2.0, 'on': 2.0, 'children': 1.0, 'both': 1.0, 'items': 2.0, 'hold': 1.0, 'room': 2.0, 'plenty': 2.0, 'has': 1.0, 'little': 2.0, 'upset': 1.0, 'considering': 1.0, 'choice': 1.0, 'first': 1.0, 'it': 6.0, 'wish': 1.0, 'this': 1.0, 'i': 5.0, 'arbor': 1.0, 'to': 2.0, 'was': 1.0, 'fixed': 1.0, 'now': 1.0, 'ordered': 1.0, 'about': 1.0, 'baby': 1.0, 'sent': 1.0, 'amazon': 2.0, 'elastic': 1.0, 'satchel': 1.0, 'second': 1.0, 'loose': 1.0, 'wasn': 1.0, 'deal': 1.0, 'the': 6.0, 'diaper': 2.0, 'a': 5.0, 's': 2.0, 't': 2.0, 'in': 2.0, 'bag': 3.0, 'grey': 1.0, 'of': 6.0, 'my': 3.0, 'cream': 1.0, 'too': 2.0, 'green': 2.0, 'and': 3.0, '2': 1.0, 'but': 4.0, 'me': 1.0, 'not': 1.0, 'clean': 1.0, 'white': 1.0, 'kind': 1.0, 'they': 1.0, 'dirty': 1.0, 'problem': 1.0, 'tighter': 1.0, 'stone': 1.0, 'have': 1.0, 'color': 3.0, 'bought': 1.0, 'for': 3.0}
Word element => {'deeper': 1.0, 'inch': 1.0, 'an': 1.0, 'were': 1.0, '5': 1.0, 'instead': 1.0, 'stars': 1.0, 'important': 1.0, 'space': 1.0, 'super': 1.0, 'and': 2.0, 'about': 1.0, 'purse': 2.0, 'chose': 1.0, 'cloth': 1.0, 'two': 1.0, '4': 1.0, 'i': 6.0, 'items': 1.0, 'like': 1.0, 'computer': 1.0, 'looks': 1.0, 'it': 5.0, 'diaper': 3.0, 'is': 1.0, 'more': 1.0, 'the': 2.0, 'bag': 4.0, 'a': 3.0, 's': 2.0, 'than': 1.0, 'because': 2.0, 'not': 1.0, 'or': 1.0, 'yet': 1.0, 'bill': 1.0, 'can': 2.0, 'also': 1.0, 'in': 1.0, 'organize': 1.0, 'as': 1.0, 'fits': 1.0, 'my': 1.0, 'so': 1.0, 'neatly': 1.0, 'smaller': 1.0, '34': 2.0, 'of': 2.0, 'when': 1.0, 'gave': 1.0, 'stuffed': 1.0, 'wish': 1.0, 'this': 2.0, 'functional': 1.0, 'full': 1.0, 'pockets': 1.0, 'diapers': 1.0, 'use': 1.0, 'win': 3.0}
Word element => {'forget': 1.0, 'week': 1.0, 'several': 1.0, 'my': 1.0, 'be': 1.0, 'us': 1.0, 'occasional': 1.0, 'for': 1.0, 'stylish': 1.0, 'something': 2.0, 'would': 1.0, '3': 1.0, 'all': 1.0, 'have': 1.0, 'wide': 1.0, '8': 1.0, 'then': 2.0, 'loved': 2.0, 'can': 1.0, 'but': 2.0, 'quality': 1.0, 'it': 3.0, 'this': 3.0, 'layout': 1.0, 'forever': 1.0, 'guest': 1.0, 'size': 1.0, 'and': 3.0, 'unusable': 1.0, 'use': 2.0, 'horrible': 1.0, 'the': 4.0, 'look': 1.0, 'now': 1.0, 'months': 1.0, 'seams': 1.0, 'i': 3.0, '4': 1.0, 'after': 1.0, 'of': 3.0, '6': 1.0, 'unacceptable': 1.0, 'inch': 1.0, 'along': 1.0, 'bag': 3.0, 'ripped': 1.0, 'light': 1.0, 'just': 1.0, 'corners': 1.0, 'open': 1.0, 'mean': 1.0, 'rips': 1.0, 'is': 2.0, 'totally': 1.0, 'considering': 1.0, 'price': 1.0, 'makes': 1.0, 'a': 2.0, 'value': 1.0, 'want': 2.0, 'if': 2.0, 'times': 1.0, 'you': 3.0}
Word element => {'roomy': 1.0, 'amazon': 1.0, 'deal': 1.0, 'better': 1.0, 'a': 1.0, 'j': 2.0, 'pleased': 1.0, 'so': 2.0, 'purchase': 1.0, 'got': 1.0, 'was': 1.0, 'would': 1.0, 'my': 1.0, 'cole': 1.0, 'i': 1.0, 'bag': 1.0, 'with': 1.0, 'this': 1.0, 'have': 1.0, 'the': 1.0, 'diaper': 1.0, 'love': 2.0, 'paid': 1.0, 'full': 1.0, 'price': 1.0, 'off': 2.0, 'even': 1.0, 'but': 1.0}
Word element => {'clutch': 1.0, 'changing': 1.0, 'diaper': 1.0, 'cooler': 1.0, 'bottle': 1.0, 'parents': 2.0, 'picked': 1.0, 'shower': 1.0, 'far': 1.0, 'baby': 1.0, 'ordered': 1.0, 'upcoming': 1.0, 'out': 1.0, 'arrived': 1.0, 'of': 1.0, 'expecting': 2.0, 'on': 1.0, 'was': 1.0, 'priced': 1.0, 'ahead': 1.0, 'convenient': 1.0, 'reasonably': 1.0, 'matching': 1.0, 'and': 4.0, 'get': 1.0, 'what': 1.0, 'shopping': 1.0, 'they': 1.0, 'amazon': 1.0, 'promptly': 1.0, 'registered': 1.0, 'want': 1.0}
Word element => {'purchase': 1.0, 'i': 1.0, 'glad': 1.0, 'space': 1.0, 'of': 1.0, 'diaper': 1.0, 'made': 1.0, 'are': 1.0, 'the': 2.0, 'great': 1.0, 'love': 1.0, 'it': 1.0, 'purse': 1.0, 'looks': 1.0, 'bag': 1.0, 'a': 1.0, 'fabulous': 1.0, 'as': 1.0, 'lots': 1.0, 'colors': 1.0}
Word element => {'purselike': 1.0, 'of': 1.0, 'sort': 1.0, 'some': 1.0, 'like': 1.0, 'huge': 1.0, 'not': 1.0, 'daughter': 1.0, 'my': 1.0, 'diaper': 1.0, 'the': 2.0, 'stroller': 1.0, 'an': 1.0, 'for': 1.0, 'liked': 1.0, 'to': 2.0, 'a': 1.0, 'as': 1.0, 'and': 1.0, 'it': 2.0, 'this': 1.0, 'bag': 1.0, 'seems': 1.0, 'got': 1.0, 'sturdy': 1.0, 'is': 2.0, 'really': 1.0, 'attractive': 1.0, 'attach': 1.0, 'she': 1.0, 'bags': 1.0, 'gift': 1.0, 'straps': 1.0}
Word element => {'don': 1.0, 'definitely': 1.0, 'i': 1.0, 'long': 1.0, 'recommend': 1.0, 'last': 1.0, 'seam': 1.0, 'a': 2.0, 'at': 1.0, 'but': 2.0, 'quality': 1.0, 'very': 1.0, 'roomy': 1.0, 's': 1.0, 'few': 1.0, 'poor': 1.0, 'side': 1.0, 'unusable': 1.0, 'completely': 1.0, 'so': 1.0, 'after': 1.0, 'rendering': 1.0, 'it': 4.0, 'cute': 1.0, 'ripped': 1.0, 'bag': 1.0, 'the': 2.0, 't': 2.0, 'months': 1.0, 'won': 1.0}
Word element => {'absolutely': 1.0, 'which': 1.0, 'buying': 1.0, 'restaurant': 1.0, 'for': 2.0, 'love': 2.0, 'my': 1.0, 'take': 1.0, 'anywhere': 1.0, 'bag': 2.0, 'to': 2.0, 'just': 2.0, 'is': 2.0, 'a': 1.0, 'jj': 1.0, 'well': 1.0, 'wanting': 1.0, 'ended': 1.0, 'zoey': 1.0, 'i': 6.0, 'but': 1.0, 'thought': 1.0, 'returning': 1.0, 'it': 5.0, 'cole': 1.0, 'found': 1.0, 'this': 1.0, 'daily': 2.0, 'seemed': 1.0, 'big': 1.0, 'then': 1.0, 'loved': 1.0, 'myself': 1.0, 'the': 4.0, 'ones': 1.0, 'beautiful': 1.0, 'store': 1.0, 'organization': 1.0, 'church': 1.0, 'park': 1.0, 'made': 1.0, 'too': 1.0, 'and': 3.0, 'not': 2.0, 'me': 1.0, 'of': 2.0, 'up': 1.0, 'practical': 1.0, 'needs': 1.0, 'trips': 1.0, 'three': 1.0, 'very': 1.0, 'little': 1.0}
Word element => {'but': 1.0, 'absolutely': 1.0, 'better': 1.0, 'was': 1.0, 'compartment': 1.0, 'just': 1.0, 'items': 1.0, 'because': 1.0, 'worth': 1.0, 'out': 2.0, 'stretched': 1.0, 'adorable': 1.0, 'main': 1.0, 'keep': 1.0, 'tops': 1.0, 'elastic': 1.0, 'of': 2.0, 'inside': 1.0, 'even': 1.0, 'pockets': 3.0, 'there': 1.0, 'issue': 1.0, 'not': 2.0, 'definitely': 1.0, 'so': 1.0, 'on': 2.0, 'months': 1.0, 'straps': 1.0, 'that': 4.0, 'using': 1.0, 'hold': 2.0, 'really': 1.0, 'material': 2.0, 'apart': 2.0, 'rings': 1.0, 'also': 2.0, 'in': 3.0, 'all': 1.0, 'to': 2.0, 'had': 1.0, 'now': 2.0, 'the': 15.0, 'diaper': 2.0, 'holes': 1.0, 'a': 1.0, 's': 2.0, 't': 1.0, 'useless': 1.0, 'it': 3.0, 'wish': 1.0, 'this': 3.0, 'first': 1.0, 'before': 1.0, 'stuffing': 1.0, 'bag': 6.0, 'up': 1.0, 'over': 1.0, 'don': 1.0, 'are': 4.0, 'for': 1.0, 'actually': 1.0, 'care': 1.0, 'ripping': 1.0, 'about': 1.0, 'several': 1.0, 'and': 6.0, 'quality': 1.0, 'them': 1.0, 'started': 1.0, 'baby': 1.0, 'shedding': 1.0, 'junk': 1.0, '4': 2.0, 'i': 4.0, 'seams': 1.0, 'together': 1.0, 'coming': 1.0, 'have': 2.0, 'around': 2.0, 'fall': 2.0, 'completely': 2.0, 'is': 2.0, 'absolute': 1.0, 'tight': 1.0, 'my': 1.0, 'very': 1.0, 'end': 1.0, 'much': 1.0}
Word element => {'into': 1.0, 'quick': 1.0, 'are': 1.0, 'tiny': 1.0, 'try': 1.0, 'if': 1.0, 'space': 1.0, 'up': 1.0, 'fill': 1.0, 'of': 1.0, 'out': 1.0, 'get': 1.0, 'easy': 1.0, 'peaking': 1.0, 'open': 2.0, 'from': 1.0, 'mother': 1.0, 'diaper': 1.0, 'without': 1.0, 'the': 6.0, 'for': 1.0, 'good': 1.0, 'half': 1.0, 'well': 1.0, 'this': 2.0, 'around': 1.0, 'is': 1.0, 'useless': 1.0, 'it': 2.0, 'looks': 1.0, 'not': 2.0, 'cute': 1.0, 'cloth': 1.0, 'i': 2.0, 'and': 3.0, 'disappointed': 1.0, 'made': 1.0, 'doctors': 1.0, 'them': 2.0, 'inside': 1.0, 'especially': 1.0, 'but': 1.0, 't': 1.0, 'a': 2.0, 's': 1.0, 'm': 1.0, '34': 2.0, 'expose': 1.0, 'diapering': 1.0, 'in': 4.0, 'anything': 2.0, 'so': 1.0, 'put': 2.0, 'your': 1.0, 'messy': 1.0, 'even': 1.0, 'pockets': 3.0, 'didn': 1.0, 'zipper': 1.0, 'have': 1.0, 'bag': 5.0, 'anywhere': 1.0, 'all': 1.0, 'outside': 1.0, 'to': 3.0, 'store': 1.0, 'paperwork': 1.0, 'folded': 1.0, 'you': 2.0, 'office': 1.0}
Word element => {'apart': 1.0, 'thread': 1.0, 'a': 2.0, 's': 1.0, 'places': 1.0, 'has': 1.0, 'love': 1.0, 'strap': 1.0, 'there': 1.0, 'its': 2.0, '1': 1.0, 'couple': 1.0, 'and': 3.0, 'month': 1.0, 'bag': 1.0, 'it': 1.0, 'only': 2.0, 'this': 1.0, 'options': 1.0, 'cute': 1.0, 'coming': 1.0, 'where': 1.0, 'style': 1.0, 'diaper': 1.0, 'the': 2.0, 'all': 1.0, 'thing': 1.0, 'old': 1.0, 'pockets': 1.0, 'i': 1.0, 'little': 1.0, 'notices': 1.0, 'features': 1.0, 'many': 1.0, 'is': 2.0}
Word element => {'day': 1.0, '3': 1.0, 'or': 1.0, 'use': 1.0, 'getaway': 1.0, 'what': 1.0, 'bag': 1.0, 'daily': 1.0, 'this': 1.0, 'didn': 1.0, 'perfect': 1.0, 'include': 1.0, 'all': 1.0, 'a': 1.0, 'looking': 1.0, 'that': 1.0, 'were': 1.0, 'we': 3.0, 'like': 1.0, 'pockets': 1.0, 'need': 2.0, 'for': 2.0, 'one': 2.0, 't': 1.0, 'diaper': 1.0, 'the': 1.0, 'enough': 1.0, 'space': 1.0, 'look': 1.0, 'was': 1.0, 'to': 1.0}
Word element => {'cute': 1.0, 'super': 1.0, 'looks': 1.0, 'it': 1.0, 'kind': 1.0, 'plus': 1.0, 'every': 1.0, 'out': 1.0, 'inside': 1.0, 'could': 1.0, 'this': 1.0, 'bag': 1.0, 'available': 1.0, 'everything': 1.0, 'strap': 1.0, 'you': 1.0, 'want': 1.0, 'lots': 1.0, 'pockets': 1.0, 'and': 3.0, 'more': 1.0, 'has': 1.0, 'of': 2.0}
Word element => {'service': 1.0, 'good': 1.0, 'hopefully': 1.0, '2012': 1.0, 'it': 1.0, 'years': 1.0, 'warranty': 1.0, 'apparently': 1.0, 'cannot': 1.0, '3': 2.0, 'put': 1.0, 'unfortunately': 1.0, 'was': 2.0, 'pull': 1.0, 'to': 4.0, 'all': 3.0, 'as': 1.0, 'each': 1.0, 've': 1.0, 'would': 1.0, 'toggle': 3.0, 'attached': 1.0, 'issue': 1.0, 'main': 1.0, 'since': 1.0, 'm': 1.0, 'in': 2.0, 'zippers': 3.0, 'came': 1.0, 'didn': 2.0, 'and': 5.0, 'zipper': 4.0, 'have': 3.0, 'off': 3.0, 'outer': 1.0, 'size': 1.0, 'because': 1.0, 'that': 5.0, 'writing': 1.0, 'however': 2.0, 'pliers': 1.0, 'front': 1.0, 'use': 1.0, 'a': 3.0, 't': 2.0, 'could': 1.0, 'notice': 1.0, 'is': 3.0, 'holds': 1.0, 'completely': 1.0, 'under': 1.0, 'month': 1.0, 'this': 3.0, 'lost': 1.0, 'first': 1.0, 'are': 3.0, 'great': 2.0, 'two': 2.0, 'nice': 1.0, 'of': 7.0, 'the': 20.0, 'bag': 8.0, 'using': 1.0, 'for': 2.0, 're': 1.0, 'come': 2.0, 'where': 1.0, 'broken': 2.0, 'durable': 1.0, '11': 1.0, 'again': 2.0, 'piece': 2.0, 'pockets': 1.0, 'with': 2.0, 'months': 1.0, 'one': 1.0, 'functional': 2.0, 'owning': 1.0, '2': 1.0, 'has': 2.0, 'them': 1.0, 'customer': 1.0, 'quality': 1.0, 'right': 1.0, 'away': 1.0, 'now': 1.0, 'they': 3.0, 'so': 3.0, 'limited': 1.0, 'back': 1.0, 'then': 1.0, 'had': 1.0, 'needlenose': 1.0, 'purchased': 1.0, 'pinch': 1.0, 'within': 2.0, 'part': 1.0, 'even': 1.0, 'organizing': 1.0, 'cloth': 1.0, 'material': 1.0, 'not': 1.0, 'company': 1.0, 'only': 1.0, 'purchase': 1.0, 'on': 7.0, 'update': 1.0, 'inside': 1.0, 'third': 1.0, 'november': 1.0, 'february': 1.0, 'when': 1.0, '2014': 1.0, 'i': 7.0, 'broke': 1.0, 'three': 2.0, 'non': 1.0, 'point': 1.0}
Word element => {'though': 1.0, 'their': 1.0, 'week': 1.0, 'about': 1.0, 'for': 1.0, 'diaper': 1.0, 'left': 1.0, 'send': 1.0, 'order': 1.0, 'which': 1.0, 'using': 1.0, 'destroy': 1.0, 'made': 1.0, 'was': 2.0, 'unfortunately': 1.0, 'to': 2.0, 'began': 1.0, 'and': 3.0, 'me': 3.0, 'top': 1.0, 'handle': 1.0, 'metal': 1.0, 'of': 1.0, 'without': 1.0, 'the': 4.0, 'great': 1.0, 'in': 1.0, 'regular': 1.0, 'one': 2.0, 'months': 1.0, 'up': 1.0, 'over': 1.0, 'loops': 1.0, 'however': 1.0, 'after': 1.0, 'with': 1.0, 'bag': 4.0, 'knew': 1.0, 'stylish': 1.0, 'is': 1.0, 'around': 1.0, 'so': 1.0, 'time': 1.0, 'notch': 1.0, 'vinyl': 1.0, 'they': 3.0, 'use': 1.0, 'set': 1.0, 'shred': 1.0, 'got': 1.0, 'four': 1.0, 'compartments': 1.0, 'crack': 1.0, 'i': 3.0, 'new': 2.0, 'would': 1.0, 'rip': 1.0, 'right': 1.0, 'off': 1.0, 'emailed': 1.0, 'service': 2.0, 'has': 1.0, 'jj': 1.0, 'this': 1.0, 'cole': 1.0, 'customer': 2.0, 'quickly': 1.0, 'a': 4.0}
Word element => {'shipped': 1.0, 'or': 1.0, 'in': 1.0, 'quickly': 1.0, 'space': 1.0, 'great': 1.0, 'the': 1.0, 'more': 1.0, 't': 1.0, 'can': 1.0, 'who': 1.0, 'but': 1.0, 'we': 1.0, 'what': 1.0, 'wanted': 1.0, 'as': 1.0, 'and': 1.0, 'product': 1.0, 'material': 1.0, 'time': 1.0, 'second': 1.0, 'is': 2.0, 'for': 2.0, 'gift': 1.0, 'life': 1.0, 'larger': 1.0, 'a': 2.0, 'expected': 1.0, 'myself': 1.0, 'use': 1.0, 'purchased': 1.0, 'notch': 1.0, 'i': 2.0, 'mom': 1.0, 'when': 1.0, 'beautiful': 1.0, 'this': 1.0, 'it': 4.0, 'arrived': 1.0, 'top': 1.0, 'than': 1.0}
Word element => {'happy': 1.0, 'am': 1.0, 'idea': 1.0, 'excellent': 1.0, 'an': 1.0, 'stroller': 1.0, 'carrying': 1.0, 'grabbing': 1.0, 'make': 1.0, 'handles': 1.0, 'open': 1.0, 'a': 1.0, 'well': 1.0, 'even': 1.0, 'pockets': 2.0, 'have': 1.0, 'fabric': 2.0, 'light': 1.0, 'large': 1.0, 'interior': 1.0, 'the': 4.0, 'with': 3.0, 'it': 5.0, 'this': 2.0, 'more': 1.0, 'is': 3.0, 'spare': 1.0, 'i': 3.0, '4': 1.0, 'love': 1.0, 'style': 1.0, 'of': 2.0, 'over': 1.0, 'up': 1.0, 'bag': 2.0, 'hangers': 1.0, 'everything': 1.0, 'organized': 1.0, 'so': 1.0, 'packed': 2.0, 'in': 1.0, 'area': 1.0, 'easy': 2.0, 'are': 1.0, 'fairly': 1.0, 'strap': 1.0, 'very': 1.0, 'access': 1.0, 'room': 1.0, 'all': 1.0, 'to': 3.0, 'importantly': 1.0, 'sturdy': 1.0, 'and': 1.0, 'similar': 1.0, 'use': 1.0, 'will': 1.0, 'exterior': 1.0, 'luggage': 1.0, '8': 1.0, 'inside': 1.0, 'stand': 1.0, 'lots': 1.0, 'but': 1.0, 'shoulder': 1.0}
Word element => {'taste': 1.0, 'little': 1.0, 'just': 1.0, 'the': 1.0, 'it': 4.0, 'this': 1.0, 'first': 1.0, 'with': 1.0, 'big': 1.0, 'until': 1.0, 'was': 1.0, 'to': 2.0, 'have': 1.0, 'thing': 1.0, 'bulky': 1.0, 'diaper': 1.0, 'ones': 1.0, 'realize': 1.0, 'wouldn': 1.0, 'got': 1.0, 'didn': 1.0, 'that': 1.0, 'been': 1.0, 'i': 5.0, 'buy': 1.0, 'and': 1.0, 'cute': 1.0, 'how': 1.0, 'because': 1.0, 's': 2.0, 't': 3.0, 'a': 2.0, 'online': 1.0, 'bag': 2.0, 'my': 2.0, 'baby': 1.0, 'don': 1.0, 'smaller': 1.0, 'so': 1.0, 'anything': 1.0, 'but': 1.0, 'would': 1.0, 've': 2.0, 'again': 1.0, 'seen': 1.0, 'better': 1.0, 'for': 2.0, 'probably': 2.0, 'compare': 1.0, 'nothing': 1.0, 'me': 1.0, 'wrong': 1.0}
Word element => {'kidish': 1.0, 'than': 1.0, 'rather': 1.0, 'like': 1.0, 'that': 1.0, 'fun': 1.0, 'diaper': 1.0, 'the': 1.0, 'boys': 1.0, '1yr': 1.0, 'just': 1.0, '3yr': 1.0, 'color': 1.0, 'my': 1.0, 'full': 1.0, 'purse': 1.0, 'me': 1.0, 'and': 4.0, 'of': 1.0, 'up': 1.0, 'everywhere': 1.0, 'have': 1.0, 'it': 4.0, 'this': 2.0, 'with': 2.0, 'love': 2.0, 'for': 1.0, 'now': 2.0, 'had': 1.0, 'big': 1.0, 'from': 1.0, 'as': 1.0, 'year': 1.0, 'i': 2.0, 'has': 1.0, 'almost': 1.0, 'good': 1.0, 'held': 1.0, 'a': 3.0, 'well': 1.0, 'bag': 2.0, 'junk': 1.0, 'take': 1.0, 'stuff': 1.0, 'looks': 2.0, 'new': 1.0}
Word element => {'expected': 1.0, 'like': 1.0, 'white': 1.0, 'not': 1.0, 'khaki': 1.0, 'actually': 1.0, 'are': 1.0, 'bag': 2.0, 'this': 1.0, 'of': 2.0, 'size': 1.0, 'spring': 1.0, 'had': 1.0, 'image': 1.0, 'handles': 1.0, 'the': 6.0, 'ordered': 1.0, 'top': 1.0, 'arbor': 1.0, 'i': 3.0, 'green': 1.0, 'color': 3.0, 'a': 1.0, 'bright': 1.0, 'love': 2.0, 'for': 1.0, 'large': 1.0, 'deceiving': 1.0, 'but': 1.0, 'aspen': 1.0, 'is': 1.0, 'part': 1.0}
Word element => {'practice': 1.0, 'great': 1.0, 'issue': 1.0, 'compounding': 1.0, 'just': 1.0, 'theory': 1.0, 'this': 1.0, 'overlook': 1.0, 'willing': 1.0, 'initially': 1.0, 'was': 1.0, 'but': 1.0, 'shoulder': 1.0, 'come': 1.0, 't': 1.0, 'even': 1.0, 'didn': 1.0, 'detachable': 1.0, 'broke': 1.0, 'zipper': 2.0, 'one': 1.0, 'months': 1.0, 'with': 1.0, 'piece': 1.0, '5': 1.0, 'used': 1.0, 'part': 1.0, 'more': 1.0, 'is': 1.0, 'completely': 1.0, 'of': 2.0, 'metal': 2.0, '4': 1.0, 'i': 2.0, 'something': 1.0, 've': 1.0, 'long': 1.0, 'zippers': 1.0, 'to': 2.0, 'significant': 1.0, 'for': 2.0, 'handle': 1.0, 'so': 1.0, 'time': 1.0, 'snapping': 1.0, 'in': 2.0, 'regular': 1.0, 'falling': 1.0, 'tabs': 1.0, 'use': 1.0, 'off': 2.0, 'able': 1.0, 'snapped': 1.0, 'main': 1.0, 'keep': 1.0, 'compartment': 1.0, 'other': 1.0, 'not': 2.0, 'those': 1.0, 'the': 8.0, 'tightening': 1.0, 'increases': 1.0, 'much': 1.0, 'risk': 1.0, 'and': 3.0, 'too': 1.0, 'daily': 1.0, 'handles': 1.0, 'strap': 1.0, 'periods': 1.0, 'are': 1.0, 'showing': 1.0, 'wear': 1.0, 'bag': 2.0}
Word element => {'need': 1.0, 'ever': 1.0, 'you': 1.0, 'out': 1.0, 'fashionable': 1.0, 'extremely': 1.0, 'none': 1.0, 'once': 1.0, 'through': 1.0, 'bag': 3.0, 'for': 1.0, 'a': 1.0, 'and': 5.0, 'to': 1.0, 'comes': 1.0, 'will': 1.0, 'inside': 1.0, 'quality': 1.0, 'long': 1.0, 'we': 1.0, 'only': 1.0, 'it': 3.0, 'this': 1.0, 'hard': 1.0, 'looked': 1.0, 'looks': 1.0, 'is': 2.0, 'roominess': 1.0, 'amazon': 1.0, 'second': 1.0, 'great': 1.0, 'diaper': 1.0, 'the': 2.0, 'again': 1.0, 'are': 1.0, 'price': 1.0, 'of': 1.0}
Word element => {'considering': 1.0, 'off': 1.0, 'better': 1.0, 'have': 1.0, 'keeping': 1.0, 'be': 1.0, '50': 1.0, 'so': 1.0, 'bit': 1.0, 'smashed': 1.0, 'using': 1.0, 'just': 1.0, 'ripped': 1.0, 'straps': 1.0, 'disappointed': 1.0, '100': 1.0, 'extremely': 1.0, 'edit': 1.0, 'onto': 1.0, 'is': 1.0, 'bags': 1.0, 'while': 1.0, 'part': 1.0, 'll': 1.0, 'down': 1.0, 'favorite': 1.0, 'lot': 1.0, 'needed': 2.0, 'the': 7.0, 'without': 1.0, 'on': 1.0, 'hooks': 1.0, 'stuff': 1.0, 'second': 1.0, 'been': 1.0, 'that': 1.0, 'primary': 1.0, 'to': 1.0, 'as': 2.0, 'one': 1.0, 'months': 1.0, 'decided': 1.0, 'about': 1.0, 'purse': 1.0, 'it': 8.0, 'with': 2.0, 'bag': 6.0, 'recommend': 1.0, 'was': 2.0, 'after': 2.0, 'also': 2.0, 'this': 1.0, 'perfect': 1.0, 'fact': 1.0, 'my': 4.0, 'super': 1.0, 'new': 1.0, 'product': 1.0, 'snacks': 1.0, 'for': 4.0, 'stroller': 2.0, 'diaper': 1.0, 'of': 3.0, 'room': 2.0, 'but': 2.0, 'diapers': 1.0, 'spent': 1.0, 'compartments': 1.0, 'starting': 1.0, 'and': 1.0, 'too': 1.0, 'might': 1.0, 'a': 6.0, 's': 2.0, 'quality': 1.0, 'started': 1.0, 'baby': 1.0, 'clothes': 1.0, 'keys': 1.0, 'stylish': 1.0, 'having': 1.0, 'because': 2.0, 'well': 2.0, 'has': 1.0, 'tons': 1.0, 'good': 1.0, 'wipes': 1.0, 'look': 1.0, 'wallet': 1.0, '4': 1.0, 'i': 9.0, 'etc': 1.0, 'being': 1.0, 'definitely': 1.0, 'looking': 1.0, 'extra': 1.0, 'obnoxious': 1.0}
Word element => {'know': 1.0, 'mind': 1.0, 'think': 1.0, 'honestly': 1.0, 'up': 1.0, 'follow': 1.0, 'much': 1.0, 'do': 1.0, 'll': 2.0, 'comment': 1.0, 'won': 1.0, 'big': 1.0, 'lil': 1.0, 'hold': 1.0, 'top': 1.0, 'not': 1.0, 'ease': 1.0, 'everything': 3.0, 'be': 1.0, 'narrow': 1.0, 'negative': 1.0, 'price': 1.0, 'yet': 1.0, 'bottom': 1.0, 'pickle': 1.0, 'debating': 1.0, 'order': 1.0, 'oversized': 1.0, 'about': 2.0, 'purse': 2.0, 'need': 1.0, 'or': 1.0, 'combined': 1.0, 'large': 2.0, 'just': 3.0, 'looked': 1.0, 'from': 2.0, 'couldn': 1.0, 'yrs': 1.0, 'really': 1.0, 'every': 1.0, 'because': 2.0, 'deep': 2.0, 'that': 3.0, 'review': 1.0, 'fancy': 1.0, 'alot': 1.0, 'wallet': 1.0, 'wanted': 2.0, 'using': 1.0, 'bag': 13.0, 'was': 5.0, 'i': 22.0, '4': 1.0, 'a': 9.0, 'could': 2.0, 'ago': 1.0, 't': 7.0, 's': 1.0, 'over': 1.0, 'opening': 2.0, 'don': 2.0, '6': 2.0, 'how': 1.0, 'received': 1.0, 'another': 2.0, 'of': 7.0, 'the': 11.0, 'years': 1.0, 'wasn': 3.0, 'nothing': 1.0, 'size': 1.0, 'like': 1.0, 'reading': 1.0, 'and': 10.0, 'skip': 2.0, 'born': 1.0, 'an': 1.0, 'all': 4.0, 'to': 9.0, 'diaper': 6.0, 'as': 3.0, 'remember': 1.0, '3rd': 1.0, 'am': 3.0, 'when': 1.0, 'again': 1.0, 'able': 1.0, 'you': 1.0, 'but': 5.0, 'being': 1.0, 'later': 1.0, 'very': 1.0, 'few': 1.0, 'this': 4.0, 'look': 1.0, 'is': 3.0, '1': 1.0, 'grand': 1.0, 'mom': 1.0, 'ordered': 2.0, 'first': 1.0, 'central': 1.0, 'months': 1.0, 'get': 2.0, 'after': 1.0, 'then': 1.0, 'reviews': 2.0, 'thought': 1.0, 'it': 8.0, 'wear': 3.0, 'happier': 1.0, 'tear': 3.0, 'on': 4.0, 'impressed': 1.0, 'something': 3.0, 'straps': 1.0, 'my': 3.0, 'me': 1.0, 'wrong': 1.0, 'good': 1.0, 'lots': 2.0, 'with': 4.0, 'pockets': 2.0, 'mother': 1.0, 'hop': 2.0, 'tell': 1.0, 'too': 1.0, 'happy': 1.0, 'great': 1.0, 'carrying': 1.0, 'throw': 1.0, 'in': 2.0, 'holds': 1.0, 'carry': 1.0, 'etc': 2.0, 'day': 1.0, 'so': 1.0, 'kiddo': 1.0, 'functionality': 2.0, 'decided': 1.0}
Word element => {'out': 1.0, 'the': 3.0, 'diaper': 1.0, 'receive': 1.0, 'me': 1.0, 'not': 1.0, 'just': 1.0, 'know': 1.0, 'adjustable': 1.0, 'making': 1.0, 'did': 1.0, 'strap': 1.0, 'that': 3.0, 'everything': 1.0, 'i': 6.0, 'very': 1.0, 'fact': 1.0, 'my': 1.0, 'happy': 1.0, 'and': 1.0, 'thanks': 1.0, 'am': 1.0, 'received': 1.0, 'how': 1.0, 'except': 1.0, 'bag': 2.0, 'it': 3.0, 'come': 1.0, 'with': 2.0, 'love': 1.0, 'is': 2.0, 'suppose': 1.0, 'to': 2.0, 'withi': 1.0, 'this': 2.0, 'dont': 1.0, 'go': 1.0, 'about': 1.0, 'main': 1.0, 'since': 1.0, 'of': 1.0, 'one': 1.0, 'reasons': 1.0, 'purchased': 1.0, 'get': 1.0, 'sure': 1.0, 'anybody': 1.0, 'shoulder': 1.0, 'can': 1.0, 'help': 1.0}
Word element => {'strap': 1.0, 'long': 1.0, 'maybe': 1.0, 'ring': 1.0, 'tearing': 1.0, 'straps': 1.0, 'mentioned': 1.0, 'they': 1.0, 'other': 1.0, 'in': 1.0, 'on': 1.0, 'pass': 1.0, 'by': 1.0, 'just': 1.0, 'll': 1.0, 'inside': 2.0, 'son': 1.0, 'old': 1.0, '3month': 1.0, 'my': 1.0, 'look': 1.0, 'complements': 1.0, 'pretty': 1.0, 'did': 1.0, 'dosent': 1.0, 'own': 1.0, 'very': 1.0, 'decided': 1.0, 'personally': 1.0, 'm': 1.0, 'satchel': 2.0, 'smaller': 1.0, 'took': 1.0, 'i': 7.0, 's': 2.0, 'a': 4.0, 'me': 2.0, 'get': 1.0, 'and': 2.0, 'allows': 1.0, 'cole': 2.0, 'this': 1.0, 'wanted': 1.0, 'bag': 3.0, 'review': 1.0, 'jj': 2.0, 'before': 1.0, 'using': 1.0, 'like': 1.0, 'glad': 1.0, 'diaper': 2.0, 'the': 6.0, 'lot': 1.0, 'at': 2.0, 'word': 1.0, 'to': 3.0, 'all': 1.0, 'pockets': 1.0, 'got': 1.0, 'it': 3.0, 'month': 1.0, 'normally': 1.0, 'tons': 1.0, 'of': 1.0, 'carter': 1.0, 'seems': 1.0, 'four': 1.0, '2': 1.0, 'but': 1.0, 'try': 1.0, 'pack': 1.0, 'dose': 1.0, 'everything': 1.0, 'avoid': 1.0, 'that': 3.0, 'love': 1.0, 'fit': 2.0, 'for': 1.0}
Word element => {'hope': 1.0, 'well': 2.0, 'feels': 1.0, 'of': 1.0, 'up': 2.0, 'look': 1.0, 'inside': 1.0, 'yet': 1.0, 'love': 1.0, 'for': 1.0, 'the': 3.0, 'diaper': 1.0, 'carrying': 1.0, 'made': 1.0, 'haven': 1.0, 'i': 4.0, 'and': 1.0, 'green': 1.0, 'it': 5.0, 'with': 1.0, 'but': 1.0, 'can': 1.0, 'how': 1.0, 'bag': 3.0, 'since': 1.0, 't': 2.0, 'a': 2.0, 'using': 1.0, 'hold': 2.0, 'like': 1.0, 'purse': 1.0, 'you': 1.0, 're': 1.0, 'than': 1.0, 'standard': 1.0, 'around': 1.0, 'more': 1.0, 'say': 1.0, 'is': 2.0, 'nice': 1.0, 'lime': 1.0, 'this': 1.0, 'perfect': 1.0, 'will': 2.0, 'seems': 1.0, 'our': 1.0, 'started': 1.0, 'baby': 1.0, 'so': 1.0, 'boy': 1.0, 'very': 1.0}
Word element => {'garbage': 1.0, 'off': 2.0, 'straps': 1.0, 'the': 2.0, 'up': 1.0, 'and': 1.0, 'i': 1.0, 'cross': 1.0, 'within': 1.0, 'broke': 1.0, 'ended': 1.0, 'months': 1.0, 'cutting': 1.0, 'they': 1.0, 'fell': 1.0, 'because': 1.0, 'frayed': 1.0, 'total': 1.0, 'were': 1.0, 'cracked': 1.0, 'then': 1.0, 'apart': 1.0, 'body': 1.0, 'strap': 1.0}
Word element => {'friend': 1.0, 'as': 1.0, 'best': 1.0, 'smaller': 1.0, 'my': 1.0, 'for': 1.0, 'wish': 1.0, 'use': 1.0, 'loved': 1.0, 'baby': 1.0, 'she': 1.0, 'bought': 1.0, 'shower': 1.0, 'this': 1.0, 'it': 2.0, 's': 1.0, 'i': 3.0, 'is': 1.0, 'so': 1.0, 'cute': 1.0, 'purse': 1.0, 'and': 1.0, 'a': 2.0, 'version': 1.0, 'had': 1.0, 'to': 1.0}
Word element => {'comfortable': 1.0, 'are': 1.0, 'better': 1.0, 'way': 1.0, 'stone': 1.0, 'is': 2.0, 'satchel': 1.0, 'lost': 1.0, 'decided': 1.0, 'jj': 1.0, 'material': 1.0, 'fell': 1.0, 'gotta': 1.0, 'zipper': 1.0, 'and': 3.0, 'caprice': 1.0, 'more': 1.0, 'the': 4.0, 'shoulder': 1.0, 'off': 1.0, 'until': 1.0, 'bag': 2.0, 'before': 1.0, 'straps': 1.0, 'fixing': 1.0, 'nicer': 1.0, 'this': 2.0, 'it': 1.0, 'loved': 1.0, 'then': 1.0, 'to': 1.0, 'arbor': 1.0, 'i': 4.0, 'buy': 1.0, 'cole': 1.0, 'say': 1.0}
Word element => {'cooler': 1.0, 'bottle': 1.0, 'reccomend': 1.0, 'cole': 1.0, 'definately': 1.0, 'ordered': 1.0, 'think': 1.0, 'can': 1.0, 'so': 1.0, 'am': 1.0, 'i': 2.0, 'and': 3.0, 'jj': 1.0, 'today': 1.0, 'just': 1.0, 'great': 1.0, '2': 1.0, 'the': 2.0, 'start': 1.0, 'also': 2.0, 'in': 1.0, 'for': 1.0, 'recieved': 1.0, 'you': 1.0, 'plenty': 1.0, 'seperate': 1.0, 'its': 1.0, 'to': 1.0, 'carring': 1.0, 'with': 1.0, 'mail': 1.0, 'this': 1.0, 'excited': 1.0, 'it': 2.0, 'of': 2.0, 'room': 1.0, 'anything': 1.0, 'compartments': 1.0}
Word element => {'different': 1.0, 'a': 1.0, 'husband': 1.0, 'coloring': 1.0, 'is': 1.0, 'color': 1.0, 'my': 1.0, 'and': 1.0, 'size': 1.0, 'doesn': 1.0, 'highly': 1.0, 'another': 1.0, 'bag': 1.0, 't': 1.0, 'diaper': 1.0, 'perfect': 3.0, 'in': 1.0, 'mind': 1.0, 'holding': 1.0, 'this': 1.0, 'it': 1.0, 'recommended': 1.0, 'would': 1.0, 'definitely': 1.0, 'buy': 1.0, 'one': 1.0}
Word element => {'m': 1.0, 'lots': 1.0, 'of': 1.0, 'there': 1.0, 'came': 1.0, 'daughters': 1.0, 'i': 1.0, 'happy': 1.0, 'my': 1.0, 'the': 2.0, 'both': 1.0, 'is': 2.0, 'room': 1.0, 'everything': 1.0, 'for': 1.0, 'which': 1.0, 'holds': 1.0, 'hook': 1.0, 'straps': 1.0, 'stroller': 1.0, 'with': 1.0, 'it': 4.0, 'also': 1.0, 'to': 2.0, 'very': 2.0, 'convenient': 1.0}
Word element => {'angel': 1.0, 'on': 1.0, 'but': 1.0, 'plastic': 1.0, 'covering': 1.0, 'actual': 1.0, 'the': 3.0, 'my': 1.0, 'caddy': 1.0, 'i': 2.0, 'day': 1.0, 'changing': 1.0, 'use': 1.0, 'every': 1.0, 'pad': 1.0, 'left': 1.0, 'was': 2.0, 'cut': 1.0, 'torn': 1.0, 'edges': 1.0, 'scared': 1.0, 'and': 1.0, 'rigged': 1.0, 'could': 1.0}
Word element => {'recommend': 1.0, 'highly': 1.0, 'rash': 1.0, 'size': 1.0, 'pad': 1.0, 'changing': 1.0, 'box': 1.0, 'diapers': 1.0, '20': 1.0, 'several': 1.0, 'about': 1.0, 'will': 1.0, 'bag': 1.0, 'diaper': 1.0, 'instead': 1.0, 'with': 1.0, 'car': 1.0, 'one': 1.0, 'bring': 1.0, 'just': 1.0, 'hold': 1.0, 'overloading': 1.0, 'trip': 1.0, 'day': 1.0, 'love': 1.0, 'for': 3.0, 'and': 4.0, 'very': 1.0, 'open': 1.0, 'its': 2.0, 'now': 1.0, 'under': 1.0, 'b': 1.0, 'wipes': 1.0, 'different': 1.0, 'this': 1.0, 'full': 2.0, 'kids': 2.0, 'durable': 1.0, 'shouldn': 1.0, 'it': 2.0, 'colors': 1.0, 'whenever': 1.0, 'have': 2.0, 'past': 1.0, 'four': 1.0, 'putting': 1.0, 'etc': 1.0, 'i': 1.0, '4': 1.0, 'over': 1.0, 'to': 2.0, 'our': 1.0, 'these': 1.0, 'the': 6.0, 'purchased': 1.0, 'drawer': 1.0, 'of': 3.0, '3': 3.0, 'lotions': 1.0, 'not': 1.0, 'creams': 2.0, 'long': 1.0, 'in': 3.0, 'years': 1.0, 'c': 1.0, 'things': 1.0, 'get': 1.0, 'easy': 1.0, 'they': 1.0, 'are': 1.0, 'us': 1.0, 'taking': 1.0, 't': 1.0, 'we': 4.0, 'a': 2.0}
Word element => {'all': 1.0, 'carts': 1.0, 'at': 1.0, 'one': 1.0, 'on': 3.0, 'shopping': 1.0, 'target': 1.0, 'time': 1.0, 'broke': 1.0, 's': 1.0, 'cute': 1.0, 'high': 1.0, 'very': 1.0, 'and': 1.0, 'side': 1.0, 'i': 1.0, 'tie': 1.0, 'snug': 1.0, 'it': 4.0, 'first': 1.0, 'used': 1.0, 'but': 1.0, 'doesn': 2.0, 'the': 2.0, 't': 2.0, 'fit': 2.0, 'off': 1.0, 'chairs': 1.0}
Word element => {'stylish': 1.0, 'also': 1.0, 'very': 2.0, 'pockets': 1.0, 'i': 2.0, 'me': 1.0, 'thought': 1.0, 'but': 1.0, 'great': 1.0, 'working': 1.0, 'bag': 1.0, 'been': 1.0, 'it': 2.0, 'this': 1.0, 'first': 1.0, 'for': 1.0, 'has': 1.0, 'up': 1.0, 'of': 1.0, 'at': 1.0, 'just': 1.0, 'huge': 1.0, 'quite': 1.0, 'was': 1.0, 'now': 1.0, 'holding': 1.0, 'find': 1.0, 'well': 1.0, 'convenient': 1.0, 'lots': 1.0}
Word element => {'loves': 1.0, 'daughter': 1.0, 'for': 1.0, 'wanted': 1.0, 'had': 1.0, 'to': 1.0, 'gift': 1.0, 'bought': 1.0, 'a': 2.0, 'who': 1.0, 'as': 1.0, 'and': 1.0, 'it': 3.0, 'baby': 1.0, 'the': 1.0, 'two': 1.0, 'my': 1.0, 'ago': 1.0, 'weeks': 1.0, 's': 1.0, 'perfect': 1.0, 'bag': 1.0, 'what': 1.0, 'she': 2.0, 'needed': 1.0}
Word element => {'use': 1.0, 'yet': 1.0, 'though': 1.0, 'them': 1.0, 'jj': 1.0, 'contact': 1.0, 'get': 1.0, 'easy': 1.0, 'arrived': 1.0, 'missing': 1.0, 'mine': 1.0, 'attachments': 1.0, 'include': 1.0, 'to': 4.0, 'versatile': 1.0, 'makes': 1.0, 'strap': 1.0, 'haven': 1.0, 'prefer': 1.0, 'but': 2.0, 'of': 1.0, 'than': 1.0, 'having': 1.0, 'black': 1.0, 'were': 2.0, 'what': 1.0, 'so': 1.0, 'that': 3.0, 'am': 1.0, 'when': 1.0, 'easily': 1.0, 'while': 1.0, 'bags': 2.0, 'was': 2.0, 'start': 1.0, 'replaced': 1.0, 'look': 1.0, 'always': 1.0, 'way': 2.0, 'just': 1.0, 'stroller': 1.0, 'diaper': 2.0, 'the': 5.0, 'i': 6.0, 'put': 1.0, 'on': 1.0, 'cole': 1.0, 'this': 2.0, 'bag': 5.0, 'knew': 1.0, 'it': 7.0, 'disliked': 1.0, 'my': 2.0, 'with': 1.0, 'leather': 1.0, 'very': 1.0, 'little': 1.0, 'received': 1.0, 'supposed': 1.0, 'actually': 1.0, 'for': 1.0, 'fit': 1.0, 'messenger': 1.0, 'since': 1.0, 'faux': 1.0, 't': 1.0, 'a': 3.0, 'we': 2.0, 'wipes': 1.0, 'off': 1.0, 'green': 1.0, 'and': 3.0, 'inside': 1.0, 'super': 1.0, 'charcoal': 1.0, 've': 1.0, 'new': 1.0, 'lining': 1.0, 'comes': 1.0, 'more': 1.0, 'is': 4.0, 'using': 1.0, 'like': 1.0, 'which': 1.0, 'excited': 1.0, 'great': 1.0, 'lime': 1.0, 'nice': 1.0, 'neutral': 1.0, 'gender': 1.0, 'color': 1.0, 'one': 1.0, 'bought': 1.0, 'before': 1.0}
Word element => {'amazon': 1.0, 'here': 1.0, 'found': 1.0, 'was': 1.0, 'we': 1.0, 'bedding': 1.0, 'set': 2.0, 'great': 1.0, 'love': 1.0, 'find': 1.0, 'the': 3.0, 'of': 2.0, 'this': 1.0, 'look': 1.0, 'most': 1.0, 'on': 1.0, 'pieces': 1.0, 'right': 1.0, 'to': 1.0}
Word element => {'much': 1.0, 'real': 1.0, 'beware': 1.0, 'enough': 1.0, 'corduroy': 1.0, 'valances': 1.0, 'tops': 1.0, 'lime': 1.0, 'border': 1.0, 'in': 1.0, 'brown': 2.0, 'dark': 1.0, 'be': 1.0, 'expected': 1.0, 'edging': 1.0, 'more': 1.0, 'is': 2.0, 'me': 1.0, 'biggest': 1.0, 'cute': 1.0, 'package': 1.0, 'on': 1.0, 'printed': 1.0, 'were': 1.0, 'to': 1.0, 'actual': 1.0, 'which': 1.0, 'computer': 1.0, 'from': 1.0, 'monitor': 1.0, 'little': 1.0, 'so': 1.0, 'valance': 3.0, 'registered': 1.0, 'significantly': 1.0, 'really': 1.0, 'tan': 2.0, 'ahead': 1.0, 'kind': 1.0, 'get': 1.0, 'matching': 1.0, 'set': 1.0, 'of': 5.0, 'liked': 1.0, 'actually': 1.0, 'for': 3.0, 'bright': 1.0, 'went': 1.0, 'color': 1.0, 'it': 3.0, 'but': 1.0, 'advertised': 1.0, 'pictures': 1.0, 'this': 1.0, 'the': 13.0, 'blue': 1.0, 'orbit': 1.0, 'arrived': 1.0, 'whole': 1.0, 'etc': 1.0, 'i': 6.0, 'saw': 1.0, 'when': 2.0, 'green': 1.0, 'and': 4.0, 'pattern': 2.0, 'dealbreaker': 1.0, 'online': 1.0, 'variance': 1.0, 'what': 1.0, 'even': 1.0, 's': 2.0, 'a': 5.0, 't': 1.0, 'could': 1.0, 'paint': 1.0, 'was': 2.0, 'ordered': 1.0, 'surprised': 1.0, 'at': 1.0, 'how': 1.0, 'good': 1.0, 'different': 2.0, 'than': 3.0, 'colors': 2.0, 'blanket': 1.0, 'are': 1.0, 'sky': 1.0, 'isn': 1.0, 'life': 1.0, 'just': 1.0, 'that': 2.0, 'case': 1.0}
Word element => {'set': 1.0, 'snuggling': 1.0, 'instantly': 1.0, 'crib': 2.0, 'her': 1.0, 'daughter': 1.0, 'first': 1.0, 'came': 1.0, 'definitely': 1.0, 'day': 1.0, 'did': 1.0, 'still': 1.0, 'far': 1.0, 'so': 1.0, 'seen': 1.0, 'would': 1.0, 've': 2.0, 'bumpers': 1.0, 'nice': 2.0, 'bright': 1.0, 'is': 4.0, 'gray': 2.0, 'worried': 1.0, 'bumper': 3.0, 'sections': 1.0, 'of': 2.0, 'i': 6.0, 'she': 1.0, 'looks': 2.0, 'it': 7.0, 'love': 1.0, 'the': 10.0, 'about': 1.0, 'twice': 1.0, 'colors': 1.0, 'started': 1.0, 'night': 1.0, 'baby': 1.0, 'we': 1.0, 'a': 3.0, 'bedding': 1.0, 'white': 2.0, 'in': 2.0, 'reviews': 1.0, 'one': 1.0, 'color': 1.0, 'not': 2.0, 'recommend': 1.0, 'was': 1.0, 'after': 1.0, 'my': 1.0, 'taupe': 2.0, 'shade': 1.0, 'put': 1.0, 'washed': 1.0, 'magenta': 1.0, 'images': 1.0, 'off': 1.0, 'and': 4.0, 'are': 1.0, 'blanket': 1.0, 'which': 1.0, 'reading': 1.0, 'like': 3.0, 'this': 2.0, 'soft': 1.0, 'cuddly': 1.0, 'has': 1.0, 'some': 2.0, 'thickness': 1.0, 'pink': 2.0, 'piece': 1.0, 'four': 1.0, 'other': 1.0}
Word element => {'underneath': 1.0, 'buttoned': 1.0, 'all': 1.0, 's': 1.0, 'when': 1.0, 'her': 1.0, 'up': 1.0, 'of': 1.0, 'little': 1.0, 'the': 3.0, 'diaper': 1.0, 'out': 1.0, 'girl': 1.0, 'bag': 1.0, 'for': 1.0, 'love': 2.0, 'this': 1.0, 'it': 2.0, 'sun': 1.0, 'and': 2.0, 'wonderfully': 1.0, 'sleeps': 1.0, 'keeps': 1.0, 'wind': 1.0, 'i': 1.0, 'matches': 1.0, 'she': 2.0, 'jj': 1.0, 'print': 1.0, 'my': 2.0, 'cole': 1.0}
Word element => {'cover': 1.0, 'got': 1.0, 'ask': 1.0, 'will': 1.0, 'every': 1.0, 'almost': 1.0, 'say': 1.0, 'car': 1.0, 'nicely': 1.0, 'mom': 1.0, 'sun': 1.0, 'protected': 1.0, 'out': 1.0, 'keeping': 1.0, 'live': 1.0, 'the': 3.0, 'direct': 1.0, 'of': 1.0, '9': 1.0, '99': 1.0, 'sunny': 1.0, 'like': 1.0, 'tell': 1.0, 'me': 2.0, 'm': 1.0, 'price': 1.0, 'them': 1.0, 'baby': 2.0, 's': 2.0, 'we': 2.0, 'a': 4.0, 'always': 1.0, 'craft': 1.0, 'i': 5.0, 'trend': 1.0, 'old': 1.0, 'canopy': 2.0, 'bought': 1.0, 'cole': 1.0, 'this': 2.0, 'secures': 1.0, 'it': 5.0, 'let': 1.0, 'stop': 1.0, 'after': 1.0, 'and': 4.0, 'similar': 1.0, 'product': 1.0, 'where': 2.0, 'for': 3.0, 'would': 1.0, 'something': 1.0, 'against': 1.0, 'time': 2.0, 'arts': 1.0, 'much': 1.0, 'an': 2.0, 'now': 1.0, 'steeper': 1.0, 'weeks': 1.0, 'thing': 1.0, 'have': 1.0, 'jj': 1.0, 'hot': 1.0, 'has': 1.0, 'that': 1.0, 'been': 1.0, 'amazon': 1.0, 'wonderful': 1.0, 'definitely': 1.0, 'looking': 1.0, 'you': 1.0, 'when': 1.0, 'another': 1.0, 'my': 1.0, 'was': 2.0, 'seat': 1.0, 'our': 1.0, 'to': 4.0, 'just': 1.0, 'few': 1.0, 'nice': 1.0, 'since': 1.0, 'at': 1.0, 'keep': 1.0, 'fair': 1.0, 'people': 1.0, 'seeing': 1.0, 'from': 2.0, 'in': 1.0, 'on': 1.0, 'her': 3.0, 'touching': 1.0}
Word element => {'good': 1.0, 'husband': 1.0, 'because': 1.0, 'his': 1.0, 'of': 1.0, 'out': 1.0, 'wind': 1.0, 'rain': 1.0, 'snow': 1.0, 'keep': 1.0, 'blanket': 1.0, 'lap': 1.0, 'always': 1.0, 'approves': 1.0, 'winter': 1.0, 'ideal': 1.0, 'me': 1.0, 'not': 1.0, 'cold': 1.0, 'weight': 1.0, 'light': 1.0, 'nice': 1.0, 'fly': 1.0, 'end': 1.0, 'over': 1.0, 'up': 2.0, 'ends': 1.0, 'that': 3.0, 'being': 1.0, 'if': 1.0, 'my': 3.0, 'canopy': 1.0, 'have': 3.0, 'the': 5.0, 'wish': 1.0, 'this': 1.0, 'with': 2.0, 'annoying': 1.0, 'it': 9.0, 'went': 1.0, 'face': 1.0, 'born': 1.0, 'come': 1.0, 'like': 2.0, 'a': 1.0, 'might': 1.0, 's': 3.0, 't': 2.0, 'going': 1.0, 'm': 2.0, 'when': 1.0, 'really': 2.0, 'doesn': 1.0, 'chicco': 1.0, 'enough': 2.0, 'off': 1.0, 'one': 1.0, 'love': 1.0, 'for': 3.0, 'handle': 1.0, 'i': 10.0, 'waiting': 1.0, 'stretches': 1.0, 'baby': 2.0, 'seem': 1.0, 'still': 1.0, 'neutral': 1.0, 'now': 1.0, 'had': 1.0, 'here': 1.0, 'be': 2.0, 'didn': 1.0, 'can': 1.0, '2': 1.0, 'but': 2.0, 'will': 2.0, 'on': 1.0, 'think': 1.0, 'put': 2.0, 'green': 1.0, 'and': 5.0, 'first': 1.0, 'fist': 1.0, 'car': 2.0, 'as': 1.0, 'to': 4.0, 'seat': 1.0, 'well': 1.0, 'see': 1.0, 'though': 2.0, 'll': 1.0, 'down': 1.0, 'in': 1.0, 'so': 4.0}
Word element => {'i': 1.0, 'does': 1.0, 'out': 1.0, 'its': 1.0, 'worth': 1.0, 'pops': 1.0, 'trouble': 1.0, 'easily': 1.0, 'open': 1.0, 'light': 1.0, 'd': 1.0, 'more': 1.0, 'well': 1.0, 'a': 1.0, 'car': 1.0, 'keep': 1.0, 'say': 1.0, 'than': 1.0, 'go': 1.0, 'canopy': 1.0, 'with': 1.0, 'this': 1.0, 'seat': 1.0, 'not': 1.0}
Word element => {'first': 1.0, 'nicer': 1.0, 'blanket': 1.0, 'a': 1.0, 'used': 1.0, 'and': 3.0, 'how': 1.0, 'undone': 1.0, 'would': 1.0, 'sun': 1.0, 'tightest': 1.0, 'from': 2.0, 'day': 1.0, 'protects': 1.0, 'the': 6.0, 'my': 1.0, 'product': 1.0, 'love': 2.0, 'month': 1.0, 'it': 4.0, 'this': 3.0, 'much': 1.0, 'only': 1.0, 'velcro': 1.0, 'come': 1.0, 'was': 1.0, 'i': 5.0, 'is': 4.0, 'completely': 1.0, 'sides': 1.0, 'plus': 1.0, 'bottom': 1.0, 'easy': 1.0, 'to': 2.0, 'all': 1.0, 'thing': 1.0, 'easier': 1.0, 'likes': 1.0, 'use': 1.0, 'every': 2.0, 'but': 1.0, 'change': 1.0, 'peek': 1.0, 'baby': 1.0, 'worth': 1.0, 'print': 1.0, 'cute': 1.0, 'penny': 1.0, 'in': 1.0, 'on': 1.0, 'her': 1.0, 'so': 2.0, 'stylish': 1.0, 'that': 1.0, 'because': 1.0, 'still': 1.0, 'gets': 1.0, 'pulled': 1.0}
Word element => {'still': 1.0, 'feet': 1.0, 'be': 1.0, 'likely': 1.0, 'will': 1.0, 'of': 1.0, 'inches': 1.0, 'if': 1.0, 'kick': 1.0, 'able': 2.0, 'not': 1.0, 'has': 1.0, 'so': 1.0, 'breeze': 1.0, 'they': 1.0, 'products': 1.0, 'their': 1.0, 'open': 3.0, 'better': 2.0, 'you': 3.0, 'however': 2.0, 'from': 1.0, 'leave': 1.0, 'must': 1.0, 'shields': 1.0, 'dust': 1.0, 'she': 2.0, 'useless': 1.0, 'it': 5.0, 'canopy': 1.0, 'velcro': 2.0, 'he': 1.0, 'flap': 1.0, 'how': 1.0, 'in': 3.0, 'lightweight': 1.0, 'are': 2.0, 's': 1.0, 'a': 2.0, 'baby': 3.0, 'few': 1.0, 'heat': 1.0, 'like': 1.0, 'wind': 2.0, 'factors': 1.0, 'legs': 1.0, 'off': 1.0, 'house': 1.0, 'piece': 1.0, 'with': 1.0, 'elastic': 3.0, 'can': 1.0, 'past': 1.0, '2': 1.0, 'but': 1.0, 'i': 1.0, 'step': 1.0, 'fasten': 2.0, 'or': 2.0, 'been': 1.0, 'that': 1.0, 'into': 1.0, 'more': 1.0, 'is': 1.0, 'around': 2.0, 'holds': 1.0, 'similar': 1.0, 'and': 3.0, 'closed': 1.0, 'car': 2.0, 'edge': 1.0, 'before': 1.0, 'bottom': 3.0, 'down': 1.0, 'takes': 1.0, 'without': 1.0, 'the': 14.0, 'hands': 1.0, 'seat': 1.0, 'our': 1.0, 'as': 1.0, 'outside': 1.0, 'to': 4.0, 'short': 1.0, 'due': 1.0, 'extend': 1.0, 'your': 1.0, 'on': 1.0, 'sun': 1.0, 'positive': 1.0, 'side': 1.0, 'much': 1.0, 'breathable': 1.0, 'than': 2.0}
Word element => {'use': 1.0, 'after': 1.0, 'top': 1.0, 'at': 1.0, 'apart': 1.0, 'canopy': 1.0, 'stitching': 1.0, 'problem': 1.0, 'carseat': 1.0, 'infant': 1.0, 'he': 1.0, 'way': 1.0, 'in': 1.0, 'are': 1.0, 'feet': 1.0, 'old': 1.0, 'months': 2.0, '7': 1.0, 'now': 1.0, 'fine': 1.0, 'keyfit': 1.0, 'or': 1.0, 'sun': 1.0, 'used': 2.0, 'too': 1.0, 'and': 4.0, 'that': 2.0, 'almost': 1.0, 'his': 2.0, 'awesome': 1.0, 'few': 1.0, 'just': 1.0, 'by': 1.0, 'my': 4.0, 'first': 1.0, 'kids': 1.0, 'this': 4.0, 'with': 2.0, 'it': 2.0, 'for': 1.0, 'product': 2.0, 'be': 1.0, 'an': 1.0, 'would': 1.0, 'idea': 1.0, 'cover': 1.0, 'off': 3.0, 'protecting': 1.0, 'didn': 1.0, 'etc': 1.0, 'i': 2.0, 'blow': 1.0, 'a': 1.0, 't': 1.0, 'blankets': 1.0, '2': 1.0, 'job': 1.0, 'the': 6.0, 'coming': 1.0, 'have': 1.0, 'is': 3.0, 'big': 1.0, 'pulled': 1.0, 'started': 1.0, 'baby': 3.0, 'getting': 1.0, 'did': 1.0, 'better': 1.0, 'of': 4.0, 'from': 1.0, 'only': 1.0, 'much': 1.0, 'chicco': 1.0, 'was': 2.0, 'to': 1.0, 'closing': 1.0, 'easy': 1.0, 'put': 1.0, '3': 1.0, 'on': 2.0, 'people': 1.0, 'take': 1.0}
Word element => {'people': 1.0, 'it': 1.0, 'your': 1.0, 'faec': 1.0, 'out': 2.0, 's': 2.0, 'sun': 1.0, 'of': 2.0, 'keeps': 2.0, 'have': 1.0, 'must': 1.0, 'importantly': 1.0, 'the': 2.0, 'more': 1.0, 'strangers': 1.0, 'season': 1.0, 'gear': 1.0, 'baby': 3.0, 'pet': 1.0, 'will': 1.0, 'but': 1.0, 'dirty': 1.0, 'flu': 1.0, 'fingers': 1.0, 'carseat': 1.0, 'and': 1.0, 'hands': 1.0, 'seriously': 1.0, 'totally': 1.0}
Word element => {'one': 1.0, 'i': 1.0, 'this': 1.0, 'have': 1.0, 'other': 1.0, 'to': 1.0, 'used': 1.0, 'they': 1.0, 'the': 2.0, 'are': 1.0, 'compared': 1.0, 'light': 1.0, 'everything': 1.0, 'most': 1.0, 'for': 1.0, 'blankets': 1.0, 'and': 1.0, 'almost': 1.0, 'all': 1.0, 'perfect': 1.0, 'weight': 1.0, 'best': 1.0, 'investment': 1.0}
Word element => {'gets': 1.0, 'case': 1.0, 'a': 3.0, 'go': 1.0, 't': 2.0, '5': 1.0, 'blanket': 1.0, 'cute': 1.0, 'are': 3.0, 'spend': 1.0, 'great': 1.0, 'fluctuate': 1.0, 'does': 1.0, 'huge': 1.0, 'than': 1.0, 'change': 1.0, 'bucks': 2.0, 'blankets': 3.0, 'amazon': 1.0, 'over': 1.0, 'don': 2.0, 'price': 1.0, 'aa': 2.0, 'not': 2.0, 'as': 2.0, 'to': 1.0, 'any': 1.0, 'couple': 1.0, 'and': 5.0, 'me': 2.0, 'my': 1.0, 'company': 1.0, 'quality': 1.0, 'softer': 1.0, 'visually': 1.0, 'more': 4.0, 'at': 1.0, 'is': 2.0, 'the': 10.0, 'these': 2.0, 'for': 6.0, 'sometimes': 1.0, 'linen': 1.0, 'soft': 2.0, 'this': 1.0, 'swaddle': 1.0, 'large': 1.0, 'pricing': 1.0, '21': 1.0, 'size': 1.0, 'smooth': 1.0, 'got': 1.0, '17': 2.0, 'rather': 1.0, 'like': 2.0, 'which': 1.0, 'know': 1.0, 'i': 4.0, 'definitely': 1.0, 'pack': 1.0, 'real': 1.0, 'set': 3.0, 'brand': 1.0, 'on': 3.0, 'noticed': 1.0, 'two': 4.0, 'little': 2.0, 'but': 2.0, 'print': 1.0, 'from': 1.0, 'designs': 1.0, 'stars': 1.0, 'approx': 1.0, 'yellowish': 1.0, 'sophisticated': 1.0, 'pink': 6.0, 'they': 1.0, 'appealing': 1.0, 'note': 1.0, '20': 1.0, 'that': 3.0, 'color': 1.0, 'one': 2.0, 'per': 1.0, 'in': 1.0, '16': 1.0, 'much': 1.0, 'match': 1.0, 'other': 1.0, 'has': 2.0, 'tint': 1.0, 'it': 2.0, 'giraffe': 1.0, 'why': 1.0, 'cutesy': 1.0, 'did': 1.0, 'would': 1.0, 'be': 1.0, 'if': 1.0, 'same': 1.0, 'premium': 1.0, 'dye': 1.0, 'were': 1.0, 'no': 1.0, 'else': 1.0}
Word element => {'swaddled': 1.0, 'while': 1.0, 'summer': 1.0, 'loved': 1.0, 'wash': 1.0, 'they': 1.0, 'busy': 1.0, 'or': 1.0, 'not': 1.0, 'of': 1.0, 'pale': 1.0, 'colors': 1.0, 'didn': 1.0, 'overwhelming': 1.0, 'little': 1.0, 'nice': 2.0, 'pattern': 1.0, 'swaddling': 1.0, 'wish': 1.0, 'had': 1.0, 'to': 1.0, 'fantastic': 1.0, 'stretchy': 1.0, 'i': 3.0, 'well': 2.0, 'a': 3.0, 'them': 1.0, 'overheated': 1.0, 'are': 3.0, 'my': 2.0, 'durable': 1.0, 'older': 1.0, 't': 1.0, 'the': 1.0, 'these': 2.0, 'and': 1.0, 'get': 2.0, 'for': 3.0, 'tight': 1.0, 'so': 1.0, 'd': 1.0, 'swaddle': 1.0, 'daughter': 1.0, 'too': 1.0, 'kids': 1.0, 'big': 1.0, 'as': 1.0}
Word element => {'a': 1.0, 'nice': 1.0, 'and': 1.0, 'lightweight': 1.0, 'big': 1.0, 'so': 1.0}
Word element => {'on': 1.0, 'those': 1.0, 'get': 1.0, 'cover': 1.0, 'pad': 1.0, 'changing': 1.0, 'mobile': 1.0, 'was': 1.0, 'for': 2.0, 'over': 1.0, 'apart': 1.0, 'in': 1.0, 'pieces': 1.0, 'all': 1.0, 'third': 1.0, 'later': 1.0, 'looked': 1.0, 'with': 1.0, 'decals': 1.0, 'good': 1.0, 'and': 3.0, 'matching': 2.0, 'undecided': 1.0, 'perfectly': 1.0, 'of': 2.0, 'the': 3.0, 'perfect': 1.0, 'this': 2.0, 'cole': 1.0, 'i': 3.0, 'still': 1.0, 'matches': 1.0, 'jj': 1.0, 'sweet': 1.0, 'daughter': 1.0, 'wall': 1.0, 'primrose': 1.0, 'only': 1.0, 'nursery': 1.0, 'both': 1.0, 'amount': 1.0, 'set': 2.0, 'sets': 1.0, 'fell': 1.0, 'short': 1.0, 'bedding': 2.0, 't': 1.0, 's': 1.0, 'a': 1.0, 'time': 1.0, 'is': 1.0, 'quality': 1.0, 'very': 1.0, 'pretty': 1.0, 'previous': 1.0, 'didn': 1.0, 'may': 1.0, 'my': 3.0, 'purchase': 1.0}
Word element => {'their': 2.0, 'carries': 1.0, 'anyone': 1.0, 'to': 1.0, 'recommend': 1.0, 'would': 1.0, 'is': 1.0, 'and': 1.0, 'have': 1.0, 'you': 1.0, 'once': 1.0, 'put': 1.0, 'will': 1.0, 'but': 1.0, 'am': 1.0, 'weighing': 1.0, 'arm': 2.0, 'seat': 1.0, 'because': 1.0, 'carrying': 1.0, 'help': 1.0, 'on': 1.0, 'over': 2.0, 'cushion': 1.0, 'the': 3.0, 'my': 1.0, 'her': 1.0, 'carseat': 2.0, 'does': 3.0, 'i': 2.0, 'it': 7.0, 'forearm': 1.0, 'definitely': 1.0, 'job': 1.0, 'always': 1.0, 'of': 1.0, 'who': 1.0, 'stay': 1.0, 'cushioning': 1.0, 'however': 1.0, 'move': 1.0, 'easily': 1.0}
Word element => {'second': 1.0, 'works': 1.0, 'but': 1.0, 'carry': 1.0, 'around': 1.0, 'painful': 1.0, 'so': 1.0, 'always': 1.0, 'infant': 1.0, 'have': 2.0, 'carrier': 2.0, 'addition': 1.0, 'has': 1.0, 't': 1.0, 'great': 2.0, 'the': 3.0, 'a': 1.0, 'this': 2.0, 'it': 1.0, 'with': 2.0, 'our': 1.0, 'fist': 1.0, 'child': 2.0, 'we': 1.0, 'cushion': 1.0, 'been': 1.0, 'didn': 1.0, 'for': 1.0, 'one': 1.0, 'and': 1.0, 'now': 1.0, 'to': 2.0, 'was': 1.0}
Word element => {'handle': 1.0, 'of': 1.0, 'a': 1.0, 'that': 1.0, 'you': 1.0, 'much': 1.0, 'portion': 1.0, 'product': 1.0, 'and': 1.0, 'didn': 1.0, 'just': 1.0, 'padding': 1.0, 'wish': 1.0, 'this': 1.0, 'it': 1.0, 'to': 1.0, 'was': 1.0, 'carseat': 1.0, 'have': 1.0, 'wider': 1.0, 'when': 1.0, 'holding': 1.0, 't': 1.0, 'the': 2.0, 'are': 1.0, 'small': 1.0, 'so': 1.0, 'restricted': 1.0}
Word element => {'painful': 1.0, 't': 1.0, 'have': 1.0, 'distances': 1.0, 'wasn': 1.0, 'less': 1.0, 'why': 1.0, 'available': 1.0, 'long': 1.0, 'arm': 1.0, 'to': 1.0, 'this': 2.0, 'with': 1.0, 'first': 1.0, 'my': 1.0, 'happy': 1.0, 'carrying': 1.0, 'so': 1.0, 'two': 1.0, 'makes': 1.0, 'your': 1.0, 'one': 1.0, 'cushion': 1.0, 'little': 1.0}
Word element => {'breeze': 1.0, 'a': 1.0, 'makes': 1.0, 'carrying': 1.0, 'car': 2.0, 'the': 2.0, 'i': 1.0, 'it': 2.0, 'love': 1.0, 'this': 1.0, 'cushion': 1.0, 'seat': 2.0, 'blends': 1.0, 'soft': 1.0, 'in': 1.0, 'and': 1.0, 'nicely': 1.0, 'is': 1.0, 'with': 1.0}
Word element => {'nothing': 1.0, 'than': 1.0, 'better': 1.0, 'perfect': 1.0, 'a': 1.0, 'not': 1.0, 'while': 1.0, 'hold': 1.0, 'i': 1.0, 'where': 1.0, 'tend': 1.0, 'which': 1.0, 'widest': 1.0, 'cushion': 1.0, 'way': 1.0, 'awkward': 1.0, 'of': 1.0, 'offers': 1.0, 'my': 1.0, 'the': 4.0, 'heavy': 1.0, 'and': 1.0, 'significant': 1.0, 'product': 1.0, 'barely': 1.0, 'to': 2.0, 'for': 1.0, 'handle': 2.0, 'stretch': 1.0, 'is': 4.0, 'that': 1.0, 'it': 2.0, 'only': 1.0, 'this': 1.0, 'velcro': 1.0, 'part': 1.0, 'carseat': 1.0, 'long': 1.0, 'fit': 1.0, 'around': 1.0, 'complaint': 1.0, 'enough': 1.0}
Word element => {'it': 1.0, 'loved': 1.0}
Word element => {'not': 1.0, 'jut': 1.0, 'models': 1.0, 'car': 1.0, 'other': 1.0, 'works': 1.0, 'for': 2.0, 'be': 1.0, 'seat': 1.0, 'to': 5.0, 'hoping': 1.0, 'seems': 1.0, 'it': 3.0, 'tried': 1.0, 'i': 3.0, 'made': 1.0, 'my': 1.0, 'well': 2.0, 'this': 1.0, '30': 1.0, 'was': 1.0, 'unfortunately': 1.0, 'chicco': 1.0, 'off': 1.0, 'or': 1.0, 'have': 1.0, 'and': 1.0, 'rotating': 1.0, 'probably': 1.0, 'work': 1.0, 'but': 1.0, 'handle': 2.0, 'back': 1.0, 'would': 1.0, 'the': 6.0, 'side': 1.0, 'of': 1.0, 'close': 1.0, 'widest': 1.0, 'part': 1.0, 'carseat': 1.0, 'so': 1.0, 'keyfit': 3.0, 'kept': 1.0, 'a': 2.0, 'could': 1.0, 'carry': 1.0, 'put': 1.0, 'on': 1.0, 'middle': 1.0, 'forearm': 1.0, 'just': 1.0, 'round': 1.0, 'sliding': 1.0}
Word element => {'mommy': 1.0, 'highly': 1.0, 'graco': 1.0, 'use': 1.0, 'easier': 1.0, 'toy': 1.0, 'add': 1.0, 'or': 1.0, 'since': 1.0, 'get': 1.0, 'carrier': 2.0, 'he': 1.0, 'it': 5.0, 'time': 1.0, 'so': 3.0, 'baby': 1.0, 'still': 1.0, 'forearm': 1.0, 'i': 5.0, 'life': 1.0, 'lands': 1.0, 'just': 2.0, 'not': 1.0, 'center': 1.0, 'to': 3.0, 'had': 2.0, 'recommend': 1.0, 'was': 1.0, 'pound': 1.0, 'second': 1.0, 'want': 1.0, 'cushion': 1.0, 'the': 3.0, 'heavy': 1.0, 'another': 1.0, 'my': 2.0, 'ten': 1.0, 'a': 2.0, 's': 2.0, 'you': 2.0, 'which': 1.0, 'like': 1.0, 'size': 1.0, 'right': 2.0, 'and': 1.0, 'too': 1.0, 'for': 2.0, 'where': 1.0, 'big': 1.0, 'but': 1.0, 'make': 1.0, 'your': 1.0, 'on': 1.0, 'this': 1.0, 'allows': 1.0, 'pick': 1.0, 'child': 1.0, 'up': 1.0, 'in': 1.0}
Word element => {'mother': 1.0, 'would': 1.0, 'with': 1.0, 'begin': 1.0, 'just': 1.0, 'didn': 1.0, 'regret': 1.0, 'holding': 1.0, 'move': 1.0, 'easily': 1.0, 'of': 2.0, 'carry': 1.0, 'neutral': 1.0, 'pretty': 1.0, 'it': 3.0, 'this': 6.0, 'feed': 1.0, 'recommend': 1.0, 'was': 2.0, 'my': 4.0, 'handle': 1.0, 'slouching': 1.0, 'disappointed': 1.0, 'also': 2.0, 'not': 2.0, 't': 1.0, 'a': 3.0, 'wonderful': 3.0, 'nursing': 1.0, 'have': 1.0, 'pillow': 9.0, 'is': 8.0, 'i': 8.0, 'taller': 1.0, 'originally': 1.0, 'boppy': 3.0, 'daughter': 2.0, 'square': 1.0, 'can': 1.0, 'but': 1.0, 'because': 3.0, 'than': 1.0, 'the': 6.0, 'bulky': 1.0, 'so': 1.0, 'only': 1.0, 'end': 1.0, 'much': 2.0, 'do': 1.0, 'pattern': 1.0, 'and': 2.0, 'slouch': 1.0, 'while': 2.0, 'like': 1.0, 'breastfeeding': 1.0, 'that': 2.0, 'very': 2.0, 'has': 1.0, 'bought': 1.0, 'cuter': 1.0, 'any': 1.0, 'to': 5.0, 'as': 2.0, 'patterns': 1.0, 'love': 1.0, 'get': 1.0, 'easy': 1.0, 'harbor': 1.0, 'constantly': 1.0, 'on': 2.0}
Word element => {'for': 1.0, 'couch': 1.0, 'on': 1.0, 'seated': 1.0, 'while': 1.0, 'when': 1.0, 'my': 1.0, 'boppy': 1.0, 'under': 1.0, 'than': 2.0, 'some': 1.0, 'good': 1.0, 'stiffness': 1.0, 'were': 1.0, 'excellent': 1.0, 'situations': 1.0, 'it': 3.0, 'but': 1.0, 'quality': 1.0, 'and': 1.0, 'use': 3.0, 'feel': 1.0, 'baby': 1.0, 'elbow': 1.0, 'colors': 1.0, 'pattern': 1.0, 'in': 1.0, 'is': 1.0, 'more': 1.0, 'the': 5.0, 'i': 3.0, 'holding': 1.0, 'found': 1.0, 'a': 1.0, 'feeding': 1.0, 'little': 1.0, 'harder': 1.0, 'to': 1.0}
Word element => {'easily': 1.0, 'my': 1.0, 'for': 1.0, 'put': 1.0, 'off': 2.0, 'take': 2.0, 'little': 1.0, 'spills': 1.0, 'keeps': 1.0, 'was': 1.0, 'husband': 1.0, 'to': 2.0, 'its': 1.0, 'pillow': 1.0, 'on': 3.0, 'me': 1.0, 'shape': 1.0, 'and': 3.0, 'able': 1.0, 'nursing': 1.0, 'diffulcult': 1.0, 'that': 3.0, 'well': 1.0, 'a': 2.0, 'it': 2.0, 'this': 1.0, 'down': 1.0, 'does': 1.0, 'not': 1.0, 'milk': 1.0, 'absorb': 1.0, 'great': 1.0, 'the': 2.0, 'is': 3.0, 'side': 1.0, 'immediately': 1.0, 'covering': 1.0}
Word element => {'recommend': 1.0, 'with': 1.0, 'great': 1.0, 'which': 1.0, 'style': 1.0, 'modern': 1.0, 'are': 1.0, 'colors': 1.0, 'cover': 1.0, 'how': 1.0, 'bed': 1.0, 'or': 1.0, 'snugly': 1.0, 'as': 4.0, 'waist': 1.0, 'any': 2.0, 'not': 2.0, 's': 2.0, 'does': 1.0, 'transport': 1.0, 'find': 1.0, 'having': 1.0, 'a': 3.0, 'small': 1.0, 'because': 1.0, 'that': 4.0, 'been': 1.0, 'while': 2.0, 'for': 2.0, 'where': 1.0, 'love': 2.0, 'wish': 1.0, 'cole': 1.0, 'this': 3.0, 'was': 3.0, 'had': 2.0, 'pillow': 6.0, 'would': 1.0, 'bulky': 1.0, 'pillows': 3.0, 'frequently': 1.0, 'mother': 1.0, 'remove': 1.0, 'without': 1.0, '2': 1.0, 'but': 1.0, 'my': 8.0, 've': 1.0, 'breastfed': 1.0, 'easy': 5.0, 'also': 1.0, 'compact': 1.0, 'jj': 1.0, 'paisley': 2.0, 'i': 10.0, 'wash': 1.0, 'use': 2.0, 'didn': 1.0, 'out': 1.0, 'child': 1.0, 'pleased': 1.0, 'up': 1.0, 'and': 11.0, 'children': 2.0, 'it': 9.0, 'all': 1.0, 'fits': 1.0, 'other': 5.0, 'nursing': 7.0, '3rd': 1.0, 'there': 1.0, 'chair': 1.0, 'the': 11.0, 'of': 2.0, 'between': 1.0, 't': 1.0, 'rest': 2.0, 'rocker': 1.0, 'floor': 1.0, 'overall': 1.0, 'nurse': 3.0, 'got': 1.0, 'daughter': 1.0, 'to': 11.0, 'high': 1.0, 'enough': 1.0, 'can': 1.0, 'so': 1.0, 'on': 2.0, 'another': 1.0, 'extra': 1.0, 'padding': 1.0, 'size': 1.0, 'sits': 1.0, 'is': 3.0, 'arm': 2.0, 'big': 1.0, 'carry': 1.0, 'room': 1.0, 'before': 1.0, 'using': 1.0, 'something': 1.0, 'hand': 1.0, 'm': 1.0, 'in': 3.0, 'by': 1.0, 'home': 1.0, 'needed': 1.0, 'pattern': 1.0, 'one': 1.0, 'has': 1.0, 'them': 2.0, 'very': 2.0, 'challenge': 1.0, 'strap': 1.0, 'difficult': 1.0, 'manuever': 1.0, 'makes': 1.0}
Word element => {'price': 1.0, 'for': 1.0, 'product': 1.0, 'better': 1.0, 'much': 1.0, 'home': 1.0, 'brest': 1.0, 'my': 1.0, 'tear': 1.0, 'not': 1.0, 'and': 2.0, 'thin': 1.0, 'careful': 1.0, 'the': 10.0, 'in': 1.0, 'wash': 1.0, 'falling': 1.0, 'apart': 1.0, 'pieces': 1.0, 'also': 1.0, 'it': 3.0, 'this': 2.0, 'planning': 1.0, 'at': 1.0, 'keep': 2.0, 'since': 1.0, 'return': 1.0, 'a': 1.0, 't': 1.0, 'going': 1.0, 'seams': 1.0, 'i': 7.0, 'but': 1.0, 'figured': 1.0, 'car': 1.0, 'together': 1.0, 'realize': 1.0, 'that': 1.0, 'was': 3.0, 'to': 7.0, 'have': 1.0, 'zipper': 2.0, 'small': 2.0, 'however': 1.0, 'so': 2.0, 'friend': 1.0, 'pillow': 2.0, 'cotton': 1.0, 'be': 2.0, 'removing': 1.0, 'brand': 1.0, 'you': 1.0, 'when': 1.0, 'am': 1.0, 'cover': 2.0, 'foam': 1.0, 'already': 1.0, 'opening': 1.0, 'glued': 1.0, 'are': 2.0, 'separating': 1.0, 'though': 1.0, 'didn': 1.0, 'even': 1.0, 'is': 3.0, 'use': 1.0, 'amazon': 1.0, 'would': 2.0, 'new': 1.0}
Word element => {'first': 1.0, 'those': 1.0, 'companion': 1.0, 'much': 1.0, 'no': 1.0, 'there': 1.0, 'sit': 1.0, 'used': 1.0, 'both': 1.0, 'long': 1.0, 'cole': 2.0, 'my': 1.0, 'boppy': 2.0, 'the': 3.0, 'was': 1.0, 'now': 1.0, 'torso': 1.0, 'that': 1.0, 'for': 2.0, 'pillow': 2.0, 'versatile': 1.0, 'nurses': 1.0, 'is': 4.0, 'jj': 2.0, 'she': 2.0, 'it': 2.0, 'specially': 1.0, 'like': 1.0, 'a': 4.0, 'and': 7.0, 'tall': 1.0, 'baby': 2.0, 'have': 2.0, 'nursing': 2.0, 'regularly': 1.0, 'great': 1.0, 'big': 1.0, 'comfortable': 1.0, '1': 1.0, 'until': 1.0, 'to': 3.0, 'sleep': 1.0, 'i': 3.0, '4': 1.0, 'months': 2.0, '5': 1.0, 'year': 1.0, 'still': 2.0, 'use': 2.0, 'once': 2.0, 'in': 1.0, 'compared': 1.0, 'while': 1.0, 'when': 1.0, 'firm': 2.0, 'can': 1.0}
Word element => {'parents': 1.0, 'have': 1.0, 'must': 1.0, 'brand': 1.0, 'still': 1.0, 'times': 1.0, 'many': 2.0, 'recommendation': 1.0, 'washed': 1.0, 'being': 1.0, 'purchases': 1.0, 'only': 1.0, 'looks': 1.0, 'it': 3.0, 'daily': 1.0, 'with': 1.0, 'made': 1.0, 'the': 2.0, 'baby': 2.0, 'about': 1.0, 'of': 1.0, 'was': 2.0, 'for': 2.0, 'become': 1.0, 'i': 3.0, 'gear': 2.0, 'blanket': 1.0, 'new': 3.0, 'hesitant': 1.0, 'my': 1.0, 'purchase': 1.0, 'purchased': 1.0, 'been': 1.0, 'initially': 1.0, 'bob': 1.0, 'we': 3.0, 'a': 1.0, 'absolutely': 1.0, '60': 1.0, 'best': 1.0, 'however': 1.0, 'this': 3.0, 'wish': 1.0, 'knew': 1.0, 'before': 1.0, 'used': 2.0, 'jjcole': 1.0, 'has': 2.0, 'ergo': 1.0, 'after': 1.0, 'bundle': 1.0, 'me': 1.0, 'and': 2.0, 'carrier': 1.0, 'stroller': 1.0, 'car': 1.0, 'to': 1.0, 'our': 1.0, 'seat': 1.0, 'one': 1.0, 'months': 1.0}
Word element => {'between': 1.0, 'forever': 1.0, 'last': 1.0, 'nice': 1.0, 'is': 1.0, 'you': 1.0, 'think': 1.0, 's': 1.0, 'very': 1.0, 'quality': 1.0, 'only': 1.0, 'handy': 1.0, 'use': 1.0, 'nightactivities': 1.0, 'item': 1.0, 'this': 2.0, 'baby': 1.0, 'u': 1.0, 'crazy': 1.0, 'be': 1.0, 'must': 1.0}
Word element => {'job': 1.0, 'good': 1.0}
Word element => {'that': 1.0, 'forward': 1.0, 'i': 1.0, 'case': 1.0, 'include': 1.0, 'looking': 1.0, 'did': 1.0, 'was': 3.0, 'not': 2.0, 'older': 1.0, 'the': 2.0, 'to': 1.0, 'much': 1.0, 'product': 1.0, 'an': 2.0, 'same': 1.0, 'very': 1.0, 'wipes': 1.0, 'travel': 1.0, 'as': 1.0, 'style': 1.0, 'pictured': 1.0, 'it': 1.0}
Word element => {'happy': 1.0, 'happier': 1.0, 'was': 1.0, 'towels': 1.0, 'hooded': 2.0, 'like': 1.0, 'aug': 1.0, 'on': 1.0, 'born': 1.0, 'babies': 1.0, 'any': 1.0, 'all': 1.0, 'i': 3.0, 'am': 1.0, 'toes': 2.0, 'bought': 1.0, 'purchase': 1.0, '2011': 1.0, 'my': 3.0, 'extremely': 1.0, '6': 1.0, 'of': 1.0, 'there': 1.0, 'towel': 3.0, 'out': 1.0, 'before': 1.0, 'does': 1.0, 'not': 2.0, 'from': 1.0, 'right': 1.0, 'size': 1.0, 'could': 1.0, 'a': 1.0, 'tickle': 2.0, 'with': 2.0, 'skin': 1.0, 'the': 3.0, 'scratch': 1.0, 'and': 2.0, 'do': 1.0, 'baby': 1.0, 'quality': 1.0, 'is': 1.0, 'soft': 1.0, 'cheap': 1.0, 'for': 1.0, 'be': 1.0, 'him': 1.0, 'some': 1.0, 'other': 1.0, 'in': 1.0}
Word element => {'all': 1.0, 'much': 1.0, 'again': 1.0, 'thick': 1.0, 'washing': 1.0, 'up': 1.0, 'still': 1.0, 'held': 1.0, 'soft': 1.0, '3': 1.0, 'bigger': 1.0, 'last': 1.0, 'towel': 1.0, 'been': 1.0, 'has': 2.0, '11': 1.0, 'hooded': 2.0, 'love': 1.0, 'using': 1.0, 'for': 2.0, 'we': 2.0, 'other': 2.0, 'great': 1.0, 'the': 3.0, 'than': 1.0, 'outgrew': 1.0, 'newborn': 1.0, 'super': 1.0, 'quickly': 1.0, 'bought': 1.0, 'baby': 1.0, 'that': 1.0, 'our': 1.0, 'when': 1.0, 'it': 3.0, 'this': 1.0, 'he': 2.0, 'a': 1.0, 'is': 3.0, 'to': 1.0, 'towels': 2.0, 'was': 1.0, 'had': 1.0, 'now': 1.0, '4': 1.0, 'months': 2.0, 'and': 4.0}
Word element => {'are': 1.0, 'they': 1.0, 'and': 1.0, 'than': 1.0, 'less': 1.0, 'paid': 1.0, 'that': 1.0, 'towels': 1.0, 'hooded': 1.0, '20': 3.0, 'larger': 1.0, 'buy': 1.0, 'i': 4.0, 'softer': 3.0, 'quality': 1.0, 'top': 1.0, 'large': 1.0, 'just': 1.0, 'carter': 1.0, 'to': 1.0, 'this': 1.0, 'it': 4.0, 'size': 1.0, 'ok': 1.0, 'for': 3.0, 'which': 1.0, 'like': 1.0, 'bucks': 2.0, 'nice': 1.0, 'feel': 1.0, 'paying': 1.0, 'your': 1.0, 'on': 1.0, 'is': 2.0, '00': 1.0, 'have': 2.0, 'hood': 1.0, 'over': 1.0, 'don': 1.0, 'but': 2.0, 'money': 1.0, 'towel': 4.0, 'get': 1.0, 'not': 1.0, 'me': 1.0, 'wrong': 1.0, 'much': 2.0, 'its': 1.0, 'works': 1.0, 'be': 1.0, 'so': 2.0, 'smaller': 1.0, 'a': 5.0, 'could': 2.0, 't': 1.0, 's': 1.0}
Word element => {'baby': 1.0, 'but': 1.0, 'gotten': 1.0, 'ever': 1.0, 've': 1.0, 'i': 1.0, 'feel': 1.0, 'it': 3.0, 'works': 2.0, 'and': 1.0, 'nice': 1.0, 'for': 1.0, 'most': 1.0, 'my': 1.0, 'the': 1.0, 'towel': 1.0, 's': 1.0, 'well': 2.0, 'expensive': 1.0}
Word element => {'time': 1.0, 'helpful': 1.0, 'more': 1.0, 'hope': 1.0, 'guilty': 1.0, 'correct': 1.0, 'glad': 1.0, 'returns': 1.0, 'hate': 1.0, 'had': 1.0, 'offered': 1.0, 'accept': 1.0, 'company': 1.0, 't': 2.0, 'didn': 2.0, 'edges': 1.0, 'its': 1.0, 'hold': 1.0, 'got': 1.0, 'soon': 1.0, 'as': 3.0, 'would': 2.0, 'sucking': 1.0, 'started': 1.0, 'otherwise': 1.0, 'wet': 1.0, 'turns': 1.0, 'rough': 1.0, 'loved': 1.0, 'seemingly': 1.0, 'dries': 1.0, 'soft': 2.0, 'this': 7.0, 'frankly': 1.0, 's': 3.0, 'a': 2.0, 'baby': 5.0, 'for': 3.0, 'product': 2.0, 'than': 2.0, 'around': 2.0, 'say': 2.0, 'neither': 1.0, 'is': 3.0, 'at': 1.0, 'find': 1.0, 'since': 1.0, 'no': 2.0, 'about': 1.0, 'nor': 1.0, 'like': 1.0, 'using': 1.0, 'was': 6.0, 'two': 1.0, '99': 1.0, 'burlington': 1.0, 'of': 3.0, 'the': 9.0, 'wrap': 1.0, 'tickle': 1.0, 'fact': 1.0, 'towel': 5.0, 'review': 3.0, 'i': 20.0, 'well': 1.0, 'site': 1.0, 'it': 14.0, '9': 1.0, 'else': 1.0, 'better': 1.0, 'expecting': 1.0, 'if': 1.0, 've': 2.0, 'here': 2.0, 'through': 1.0, 'original': 1.0, 'sure': 2.0, 'return': 3.0, 'first': 1.0, 'concerned': 1.0, 'coz': 3.0, 'gonna': 1.0, 'bought': 2.0, 'planning': 1.0, 'months': 2.0, 'though': 1.0, 'thick': 1.0, 'feel': 1.0, 'online': 1.0, 'surprised': 1.0, 'texture': 1.0, 'toes': 1.0, 'factory': 1.0, 'seen': 1.0, 'other': 3.0, 'all': 1.0, 'from': 1.0, 'interested': 1.0, 'when': 2.0, 'what': 1.0, 'reviews': 1.0, 'in': 3.0, 'm': 5.0, 'delicate': 1.0, 'to': 7.0, 'pretty': 1.0, 'much': 1.0, 'scratch': 1.0, 'big': 1.0, 'anyways': 1.0, 'skin': 1.0, 'itself': 1.0, 'not': 1.0, 'my': 8.0, 'me': 1.0, 'excellent': 1.0, 'needless': 1.0, 'really': 3.0, 'everyone': 1.0, 'hand': 1.0, '2012': 1.0, '5': 2.0, 'before': 2.0, 'feb': 1.0, 'now': 3.0, 'been': 1.0, 'last': 1.0, 'her': 2.0, 'one': 1.0, 'happy': 1.0, 'too': 1.0, 'used': 1.0, 'quicker': 1.0, 'water': 1.0, 'laundry': 1.0, 'have': 1.0, 'so': 1.0, 'be': 1.0, 'wrapped': 1.0}
Word element => {'pretty': 1.0, 'pastel': 1.0, 'gifts': 1.0, 'pink': 1.0, 'baby': 1.0, 'for': 1.0, 'buy': 1.0, 'would': 1.0, 'shower': 1.0, 'more': 1.0, 'the': 3.0, 'color': 1.0, 'girl': 1.0, 'towel': 1.0, 'is': 3.0, 'nice': 1.0, 'great': 1.0, 'wonderful': 1.0, 'very': 2.0, 'quality': 1.0, 'washes': 1.0, 'well': 1.0, 'drys': 1.0}
Word element => {'buy': 1.0, 'probably': 1.0, 'far': 1.0, 'several': 1.0, 'dryer': 1.0, 'in': 2.0, 'putting': 1.0, 'been': 2.0, 've': 2.0, 'so': 2.0, 'me': 1.0, 'impractical': 1.0, 'should': 1.0, 'times': 1.0, 'you': 1.0, 'says': 1.0, 'tag': 1.0, 'being': 1.0, 'paisley': 1.0, 'big': 1.0, 'as': 1.0, 'very': 2.0, 'with': 1.0, 'pink': 1.0, 'long': 1.0, 'looks': 1.0, 'it': 6.0, 'material': 1.0, 'way': 1.0, 'sweet': 1.0, 'towels': 1.0, 'short': 1.0, 'wanted': 1.0, 'one': 1.0, 'for': 3.0, 'i': 5.0, 'towel': 2.0, 'up': 1.0, 'child': 1.0, 'generous': 1.0, 'holding': 1.0, 'after': 1.0, 's': 2.0, 'a': 3.0, 'temperature': 1.0, 'well': 2.0, 'low': 1.0, 'embossed': 1.0, 'fluffy': 1.0, 'are': 1.0, 'my': 2.0, 'bigger': 1.0, 'absorbs': 1.0, 'baby': 1.0, 'too': 1.0, 'tall': 1.0, 'and': 5.0, 'more': 1.0, 'is': 3.0, 'around': 1.0, 'keeping': 1.0, 'washed': 1.0, 'on': 1.0, 'bath': 1.0, 'childish': 1.0, 'got': 1.0, 'warm': 1.0, 'dry': 2.0, 'without': 1.0, 'wrap': 1.0, 'the': 6.0, 'toddler': 1.0, 'thick': 1.0, 'this': 2.0, 'soft': 1.0, 'line': 1.0, 'water': 1.0, 'will': 1.0, 'cycle': 1.0, 'also': 1.0, 'pretty': 1.0}
Word element => {'other': 1.0, 'warm': 1.0, 'are': 1.0, 'they': 1.0, 'in': 1.0, 'will': 1.0, 'anymore': 1.0, 'you': 1.0, 'compare': 1.0, 'don': 2.0, 'as': 1.0, 'get': 1.0, 'and': 3.0, 'daughter': 1.0, 'a': 2.0, 'towel': 1.0, 'chain': 1.0, 'two': 1.0, 'thick': 1.0, 'toes': 1.0, 'use': 1.0, 'stores': 1.0, 'tickle': 1.0, 'my': 1.0, 'the': 2.0, 't': 2.0, 'these': 1.0, 'more': 1.0, 'used': 1.0, 'what': 1.0, 'even': 2.0, 'her': 1.0, 'find': 1.0, 'gift': 1.0, 'birthday': 1.0, 'for': 1.0, 'given': 1.0, 'one': 1.0, 'i': 1.0, 'towels': 2.0, 'had': 1.0, 'was': 1.0, 'to': 2.0, 'after': 1.0, 'order': 1.0}
Word element => {'and': 1.0, 'softer': 1.0, 'significantly': 1.0, 'are': 1.0, 'as': 1.0, 'instead': 1.0, 'off': 1.0, 'they': 1.0, 'dry': 1.0, 'pretty': 1.0, 'on': 1.0, 'is': 2.0, 'itself': 1.0, 'fabric': 1.0, 'not': 1.0, 'brand': 1.0, 'hood': 1.0, 'the': 3.0, 'my': 2.0, 'quality': 1.0, 'but': 1.0, 'will': 1.0, 'baby': 1.0, 'plush': 1.0, 'be': 1.0, 'using': 1.0, 'martha': 1.0, 'stewart': 1.0, 'towel': 1.0, 'nath': 1.0, 'to': 1.0, 'towels': 1.0}
Word element => {'are': 1.0, 'have': 2.0, 'any': 1.0, 'to': 3.0, 'about': 1.0, 'happy': 1.0, 'nice': 1.0, 'big': 1.0, 'cloth': 2.0, 'wash': 2.0, 'wraps': 1.0, '6': 1.0, 'after': 1.0, 'recommend': 1.0, 'anymore': 1.0, 'even': 2.0, 'doesnt': 1.0, 'see': 1.0, 'fit': 1.0, 'where': 1.0, 'for': 1.0, 'months': 1.0, 'one': 1.0, 'be': 2.0, 'def': 1.0, 'because': 1.0, 'give': 1.0, 'not': 1.0, 'that': 1.0, 'new': 1.0, 'would': 1.0, 'something': 1.0, 'daughter': 1.0, 'going': 1.0, 'a': 3.0, 's': 3.0, 'way': 1.0, 'am': 1.0, 'you': 1.0, 'i': 3.0, 'item': 1.0, 'will': 2.0, 'who': 1.0, 'adore': 1.0, 'or': 1.0, 'worth': 1.0, 'absolutely': 1.0, 'it': 6.0, 'kids': 2.0, 'soft': 1.0, 'this': 3.0, 'money': 1.0, 'baby': 3.0, 'towel': 2.0, 'out': 1.0, 'around': 2.0, 'is': 4.0, 'many': 1.0, 'purchase': 1.0, 'my': 4.0, 'the': 7.0, 'these': 1.0, 'very': 4.0, 'long': 1.0, 'hood': 1.0, 'good': 1.0, 'adult': 1.0, 'size': 2.0, 'too': 1.0, 'and': 5.0, 'market': 1.0, 'friends': 1.0, 'time': 1.0, 'so': 1.0, 'body': 1.0, 'using': 1.0, 'know': 1.0, 'like': 2.0, 'shower': 1.0, 'of': 2.0, 'there': 1.0, 'other': 1.0, 'gift': 1.0, 'towels': 1.0, 'regular': 1.0, 'in': 1.0, 'days': 1.0}
Word element => {'c': 1.0, 'linda': 1.0, 'thank': 1.0, 'need': 1.0, 'you': 1.0, 'again': 1.0, 'things': 1.0, 'whenever': 1.0, 'bibz': 1.0, 'spent': 1.0, 'at': 1.0, 'was': 4.0, 'looked': 1.0, 'with': 1.0, 'quick': 1.0, 'towel': 1.0, 'purchase': 1.0, 'my': 1.0, 'hood': 1.0, 'the': 4.0, 'more': 1.0, 'large': 1.0, 'this': 2.0, 'soft': 1.0, 'i': 9.0, 'baby': 2.0, 'money': 1.0, 'and': 1.0, 'n': 1.0, 'me': 2.0, 'impressed': 1.0, 'to': 2.0, 'as': 1.0, 'a': 2.0, 'bought': 2.0, 'be': 1.0, 'gift': 4.0, 'had': 1.0, 'allot': 1.0, 'than': 1.0, 'did': 1.0, 'pretty': 1.0, 'amazed': 1.0, 'mom': 1.0, 'for': 1.0, 'like': 1.0, 'using': 1.0, 'called': 1.0, 'tell': 1.0, 'much': 1.0, 'how': 4.0, 'received': 1.0, 'it': 1.0, 'she': 1.0, 'loves': 1.0, 'item': 2.0, 'also': 1.0, 'will': 1.0}
Word element => {'into': 1.0, 'to': 1.0, 'has': 1.0, 'old': 1.0, 'big': 1.0, 'pretty': 1.0, 'a': 1.0, 'have': 1.0, 'too': 1.0, 'nice': 1.0, 'size': 1.0, 'winter': 1.0, 'stroller': 1.0, 'of': 1.0, '6': 1.0, 'says': 1.0, 'in': 1.0, 'and': 2.0, 'we': 1.0, 'during': 1.0, 'although': 1.0, 'our': 2.0, 'the': 1.0, 'great': 1.0, 'red': 1.0, 'room': 1.0, 'warm': 1.0, 'is': 1.0, 'looks': 1.0, 'he': 1.0, 'it': 3.0, 'this': 2.0, 'grow': 1.0, 'month': 1.0, 'light': 1.0, 'weight': 1.0, 'plenty': 1.0, 's': 1.0, 'cold': 1.0, 'been': 1.0, 'baby': 1.0, 'toasty': 1.0, 'keeping': 1.0, 'new': 1.0, 'york': 1.0}
Word element => {'that': 1.0, 'bag': 1.0, 'storage': 1.0, 'every': 1.0, 'little': 1.0, 'it': 1.0, 'great': 1.0, 'day': 1.0, 'use': 1.0, 'perfect': 1.0, 'with': 2.0, 'a': 1.0, 'the': 2.0, 'really': 1.0, 'comes': 1.0, 'and': 1.0, 'quality': 1.0, 'like': 1.0, 'design': 1.0, 'pattern': 1.0}
Word element => {'instructions': 1.0, 'been': 1.0, 've': 1.0, 'would': 1.0, 'rings': 1.0, 'd': 1.0, 'brief': 1.0, 'using': 1.0, 'strap': 1.0, 'helpful': 1.0, 'pros': 1.0, 'perfect': 3.0, 'color': 1.0, 'provide': 1.0, 'size': 1.0, 'coveragecons': 1.0, 'i': 1.0, 'struggle': 1.0, 'to': 2.0, 'still': 1.0, 'tie': 1.0, 'the': 2.0}
Word element => {'public': 1.0, 'in': 1.0, 'once': 1.0, 'used': 1.0, 'company': 1.0, 'we': 1.0, 'sometimes': 1.0, 'when': 1.0, 'i': 3.0, 'and': 1.0, 'very': 1.0, 'it': 2.0, 'am': 1.0, 'with': 1.0, 'have': 2.0, 'this': 1.0, 'at': 1.0, 'home': 1.0, 'pleased': 1.0, 'cover': 1.0, 'use': 1.0}
Word element => {'design': 1.0, 'love': 1.0, 'basics': 1.0, 'am': 1.0, 'sippy': 1.0, 'add': 1.0, 'and': 2.0, 'purse': 1.0, 'prepared': 1.0, 'or': 1.0, 'car': 1.0, 'in': 1.0, 'always': 1.0, 'have': 1.0, 'bag': 1.0, 'colors': 1.0, 'don': 1.0, 'a': 3.0, 'i': 4.0, 'cup': 1.0, 'my': 2.0, 'son': 1.0, 'this': 1.0, 'with': 2.0, 'on': 1.0, 'that': 1.0, 'need': 1.0, 'now': 1.0, 'to': 1.0, 'is': 1.0, 'leave': 1.0, 'toddler': 1.0, 'house': 1.0, 't': 1.0, 'the': 4.0, 'diaper': 1.0, 'hand': 1.0, 'keep': 1.0}
Word element => {'item': 1.0, 'seen': 1.0, 'at': 1.0, 've': 1.0, 'cheaper': 1.0, 'i': 1.0, 'walmart': 1.0, 'target': 1.0, 'but': 1.0, 'it': 1.0, 'fine': 1.0, 'the': 2.0, 'very': 1.0, 'and': 2.0, 'same': 1.0, 'its': 1.0, 'baby': 1.0, 'who': 1.0, 'six': 1.0, 'is': 1.0, 'monthe': 1.0, 'old': 1.0, 'likes': 1.0}
Word element => {'i': 1.0, 'who': 1.0, 'baby': 1.0, 'my': 1.0, 'the': 1.0, 'item': 1.0, 'loves': 1.0, 'saves': 1.0, 'on': 1.0, 'one': 1.0, 'love': 2.0, 'eating': 1.0, 'this': 1.0, 'it': 2.0, 'is': 1.0, 'lunch': 1.0, 'go': 1.0, 'so': 1.0, 'time': 1.0, 'makes': 1.0, 'life': 1.0, 'easy': 1.0, 'me': 1.0, 'and': 1.0}
Word element => {'reviews': 1.0, 'in': 1.0, 'convenient': 1.0, 'use': 1.0, 'its': 1.0, 'to': 1.0, 'is': 1.0, 'as': 2.0, 'son': 1.0, 'my': 1.0, 'because': 1.0, 't': 2.0, 'haven': 1.0, 'our': 1.0, 'i': 1.0, '3': 1.0, 'months': 1.0, 'video': 1.0, 'but': 1.0, 'shown': 1.0, 'out': 1.0, 'fits': 1.0, 'only': 1.0, 'this': 1.0, 'it': 2.0, 'perfectly': 1.0, 'tested': 1.0, 'can': 1.0, 'wait': 1.0, 'bugaboo': 1.0, 'hope': 1.0, 'into': 1.0, 'cameleon': 1.0}
Word element => {'so': 1.0, 'are': 1.0, 'don': 1.0, 'was': 1.0, 'gift': 1.0, 'a': 1.0, 'recipient': 1.0, 'elaborate': 1.0, 'strollers': 1.0, 'bought': 1.0, 'liked': 1.0, 'as': 1.0, 'get': 1.0, 'hype': 1.0, 'but': 1.0, 'i': 1.0, 'm': 1.0, 'glad': 1.0, 'new': 1.0, 'she': 1.0, 'this': 1.0, 'shower': 1.0, 'thrilled': 1.0, 'it': 1.0, 't': 1.0, 'the': 1.0, 'these': 1.0}
Word element => {'thanks': 1.0, 'remember': 1.0, 'one': 2.0, 'for': 1.0, 'a': 2.0, 'asked': 1.0, 'child': 1.0, 'over': 1.0, 'she': 2.0, 'it': 4.0, 'gun': 1.0, 'with': 2.0, 'moving': 1.0, 'oldest': 1.0, 'so': 3.0, 'called': 1.0, 'original': 2.0, 'to': 1.0, 'as': 3.0, 'day': 1.0, 'ever': 1.0, 'has': 1.0, 'used': 1.0, 'online': 1.0, 'even': 1.0, 'daughter': 1.0, 'rocket': 1.0, 'there': 1.0, 'remembered': 1.0, 'and': 3.0, 'but': 1.0, 'playing': 1.0, 'the': 3.0, 'years': 1.0, 'i': 3.0, 'ship': 1.0, 'had': 1.0, 'was': 1.0, 'jenny': 1.0, 'now': 1.0, 'this': 1.0, 'lost': 1.0, 'went': 1.0, 'using': 1.0, 'tada': 1.0, 'bold': 1.0, 'ordered': 1.0, 'still': 1.0, 'some': 1.0, 'though': 1.0, 'ray': 1.0, 'isnot': 1.0}
Word element => {'fork': 1.0, 'than': 1.0, 'recommend': 1.0, 'scramble': 1.0, 'waiting': 1.0, 'new': 1.0, 'so': 1.0, 'eggs': 3.0, 'got': 1.0, 'loved': 1.0, 'apparently': 1.0, 'the': 1.0, 'we': 1.0, 'works': 1.0, 'hubby': 1.0, 'wellwould': 1.0, 'at': 1.0, 'not': 1.0, 'whisk': 2.0, 'have': 1.0, 'fix': 1.0, 'better': 1.0, 'spring': 1.0, 'a': 2.0, 'time': 1.0, 'for': 1.0, 'one': 2.0, 'i': 2.0, 'several': 1.0, 'times': 1.0, 'him': 1.0, 'breakfast': 1.0, 'he': 1.0, 'moved': 1.0, 'it': 2.0, 'still': 1.0, 'find': 1.0, 'disappeared': 1.0, 'beat': 2.0, 'had': 1.0, 'wanted': 1.0, 'to': 3.0, 'and': 2.0, 'me': 1.0}
Word element => {'pudding': 1.0, 'milk': 1.0, 'while': 1.0, 'like': 1.0, 'easily': 1.0, 'myself': 1.0, 'got': 1.0, 'course': 1.0, 'so': 1.0, 'perfect': 1.0, 's': 1.0, 'whips': 1.0, 'found': 1.0, 'i': 3.0, 'can': 1.0, 'this': 1.0, 'it': 3.0, 'great': 1.0, 'thoroughly': 1.0, 'these': 1.0, 'long': 1.0, 'making': 1.0, 'searched': 1.0, 'up': 1.0, 'of': 2.0, 'one': 3.0, 'for': 4.0, 'heating': 1.0, 'had': 2.0, 'too': 1.0, 'when': 1.0, 'mom': 1.0, 'finally': 1.0, 'my': 1.0, 'broken': 1.0, 'as': 2.0, 'replacement': 1.0, 'remember': 1.0, 'she': 1.0, 'quickly': 1.0, 'things': 2.0, 'told': 1.0, 'stirring': 1.0, 'and': 3.0, 'me': 1.0, 'a': 1.0}
Word element => {'nothing': 1.0, 'is': 1.0, 'lumpy': 1.0, 'it': 1.0, 'when': 1.0, 'of': 1.0, 'out': 1.0, 'than': 1.0, 'lumps': 1.0, 'being': 1.0, 'bran': 3.0, 'way': 1.0, 'worse': 1.0, 'i': 2.0, 'love': 1.0, 'one': 1.0, 'spring': 1.0, 'so': 1.0, 'the': 4.0, 'these': 1.0, 'to': 3.0, 'happy': 1.0, 'cooked': 1.0, 'blend': 1.0, 'they': 1.0, 'whisks': 1.0, 'dry': 1.0, 'find': 1.0, 'ingredients': 1.0, 'then': 1.0, 'use': 1.0, 'every': 1.0, 'whisk': 1.0, 'morning': 1.0, 'oat': 2.0, 'mix': 1.0, 'cinnamon': 1.0, 'into': 1.0}
Word element => {'pan': 1.0, 'your': 1.0, 'corners': 1.0, 'is': 1.0, 'a': 2.0, 'breaks': 1.0, 'for': 3.0, 'whisk': 1.0, 'in': 1.0, 'it': 1.0, 'this': 1.0, 'have': 1.0, 'while': 1.0, 'even': 1.0, 'needed': 1.0, 'i': 1.0, 'or': 1.0, 'making': 1.0, 'rue': 1.0, 'great': 1.0, 'the': 1.0, 'gravy': 1.0, 'gumbo': 1.0, 'and': 1.0, 'of': 1.0, 'up': 1.0, 'clumps': 1.0}
Word element => {'in': 1.0, 'even': 1.0, 'd': 1.0, 'as': 2.0, 'not': 1.0, 'still': 1.0, 'where': 1.0, 's': 2.0, 'kitchen': 2.0, 'into': 1.0, 'studio': 1.0, 'out': 1.0, 'mark': 1.0, 'the': 3.0, 'missed': 1.0, 'move': 1.0, 'did': 1.0, 'lifting': 1.0, 'was': 1.0, 'i': 3.0, 'for': 3.0, 'art': 2.0, 'platform': 1.0, 'nice': 1.0, 'a': 3.0, 'like': 1.0, 'thin': 3.0, 'is': 1.0, 'it': 2.0, 'with': 1.0, 'this': 2.0, 'super': 2.0, 'looking': 1.0, 'depth': 1.0, 'thickness': 1.0, 'but': 3.0, 'spatula': 3.0, 'an': 1.0, 'adequate': 1.0, 'project': 1.0, 'regretably': 1.0, 'perfectly': 1.0, 'and': 2.0, 'my': 2.0, 'unfortunately': 1.0}
Word element => {'because': 1.0, 'longer': 1.0, 'wear': 1.0, 'able': 1.0, 'be': 1.0, 'hemp': 1.0, 'use': 1.0, 'still': 1.0, 'ones': 1.0, '60': 1.0, 'swaddlebees': 1.0, 'with': 2.0, 'different': 1.0, 'would': 1.0, 'however': 1.0, 'fine': 2.0, 'them': 4.0, 'baby': 1.0, 'if': 1.0, 'so': 1.0, 'have': 2.0, 'not': 3.0, 'trim': 1.0, 'that': 1.0, 'though': 1.0, 'inserts': 3.0, 'for': 2.0, 'replace': 1.0, 'diaper': 1.0, 'these': 1.0, 'the': 5.0, 'large': 1.0, 'i': 7.0, 'old': 1.0, 'is': 4.0, 'very': 2.0, '17': 1.0, 'like': 1.0, '3': 1.0, 'your': 1.0, 'absorbent': 1.0, 'short': 3.0, 'wanted': 1.0, 'to': 3.0, 'was': 1.0, 'most': 1.0, 'work': 2.0, 'but': 2.0, 'pockets': 1.0, 'diapers': 2.0, 'they': 5.0, 'fb': 1.0, 'rise': 2.0, 'made': 1.0, 'are': 3.0, 'heavy': 1.0, 'first': 1.0, 'much': 1.0, 'only': 1.0, 'sold': 1.0, 'and': 4.0, 'may': 1.0, 'purchase': 2.0, 'my': 4.0, 'daughter': 3.0, 'a': 2.0, 'of': 2.0, 'wetter': 1.0, '11': 1.0, 'when': 1.0, 'lbs': 1.0, 'will': 1.0, 'also': 1.0, 'really': 1.0, 'skinny': 2.0, 'pretty': 1.0, '4months': 1.0, 'long': 1.0, 'she': 2.0, 'at': 1.0, 'months': 1.0, 'bought': 1.0}
Word element => {'should': 1.0, 'by': 1.0, 'blue': 1.0, 'got': 1.0, 'instead': 1.0, 'standards': 1.0, 'any': 1.0, 'colors': 1.0, 'neutral': 1.0, 'yellow': 1.0, 'gender': 1.0, 'disappointed': 1.0, 'be': 1.0, 'variety': 2.0, 'product': 1.0, 'was': 1.0, 'to': 1.0, 'love': 1.0, 're': 1.0, 'a': 3.0, 'they': 1.0, 'fuzzibunz': 1.0, 'very': 1.0, 'and': 2.0, 'i': 3.0, 'picture': 2.0, 'expect': 1.0, 'misleading': 1.0, 'only': 1.0, 'with': 1.0, 'this': 1.0, 'of': 1.0, 'set': 1.0, 'not': 1.0, 'description': 1.0, 'because': 1.0, 'great': 1.0, 'the': 2.0, 'changed': 1.0, 'lead': 1.0, 'wide': 1.0}
Word element => {'leak': 1.0, 'end': 1.0, 'in': 1.0, 'very': 1.0, 'time': 1.0, 'really': 1.0, 'but': 1.0, 'trouble': 1.0, 'back': 1.0, 'plastic': 1.0, 'more': 1.0, 'the': 5.0, 'basically': 1.0, 'together': 1.0, 'did': 1.0, 'put': 2.0, 'constantly': 1.0, 'no': 1.0, 'panties': 1.0, 'what': 1.0, 'from': 1.0, 'matter': 1.0, 'and': 3.0, 'different': 1.0, 'dont': 1.0, 'them': 4.0, 'buying': 1.0, 'adjusting': 1.0, 'need': 1.0, 'leaking': 1.0, 'recommend': 1.0, 'keep': 1.0, 'lot': 1.0, 'especially': 1.0, 'expensive': 1.0, 'for': 1.0, 'love': 1.0, 'you': 1.0, 'idea': 1.0, 'twins': 1.0, 'saving': 1.0, 'liners': 1.0, 'or': 1.0, 'of': 2.0, 'environment': 1.0, 'they': 2.0, 'are': 1.0, 'we': 1.0, 'a': 1.0, 'over': 1.0, 'wash': 1.0, 'to': 3.0, 'all': 1.0}
Word element => {}
Word element => {'previously': 1.0, 'changed': 1.0, 'ones': 2.0, 'weren': 1.0, 'in': 1.0, 'somewhere': 1.0, 'didn': 1.0, 'chubbers': 1.0, 'better': 1.0, 'inserts': 1.0, 'eye': 1.0, 'had': 1.0, 'what': 1.0, 'thought': 1.0, 'happier': 1.0, 'store': 1.0, 'was': 1.0, 'bought': 2.0, 'those': 2.0, 'not': 3.0, 'i': 12.0, 'prodect': 1.0, 'elite': 1.0, 'if': 2.0, 'getting': 1.0, 'description': 1.0, 'and': 3.0, 'stars': 1.0, 'fit': 1.0, 'love': 1.0, 'missed': 1.0, 'don': 1.0, 'elites': 1.0, 'the': 8.0, 'these': 1.0, 'fuzzibunz': 1.0, 'from': 2.0, 'have': 1.0, 'gave': 1.0, 'that': 3.0, 'babies': 1.0, 'is': 3.0, 'red': 1.0, 'with': 2.0, 'minky': 1.0, 'it': 2.0, 'of': 2.0, 'know': 2.0, 'like': 1.0, 'version': 1.0, 'so': 2.0, 'bulls': 1.0, 'they': 3.0, 'are': 1.0, 'saggy': 1.0, 'gapey': 1.0, 'be': 1.0, 'slimmer': 2.0, 'bum': 1.0, 't': 3.0, 'could': 1.0, 'a': 1.0, 'word': 1.0, '3': 1.0, 'think': 1.0, 'on': 2.0, 'slimness': 1.0, 'my': 2.0, 'now': 1.0, 'absorb': 1.0, '2': 2.0, 'but': 1.0, 'great': 1.0, 'feel': 1.0}
Word element => {'love': 1.0, 'won': 1.0, 'softbums': 1.0, 'replace': 1.0, 'want': 1.0, 'almost': 1.0, 'make': 2.0, 'enough': 2.0, 'but': 2.0, 'her': 1.0, 'times': 1.0, '2': 1.0, 'had': 1.0, 'haven': 1.0, 'peanut': 1.0, 'kid': 1.0, 'fortunately': 1.0, 'down': 1.0, 'or': 2.0, 'size': 1.0, 'have': 1.0, 'days': 2.0, 'probably': 1.0, 'feel': 1.0, 'great': 3.0, 'big': 1.0, 'for': 2.0, 'prefer': 1.0, 'irritate': 1.0, 'colors': 1.0, 'minky': 1.0, 'nearly': 1.0, 'over': 1.0, 'don': 1.0, 'up': 3.0, 'than': 2.0, 'because': 3.0, 'new': 1.0, 'sell': 1.0, 'better': 3.0, 'improved': 1.0, 'baby': 1.0, 'this': 5.0, 'too': 1.0, 'versus': 1.0, 'quality': 2.0, 'previous': 2.0, '18': 1.0, 'spouse': 1.0, 'is': 6.0, 'more': 4.0, 'on': 5.0, 'fit': 4.0, 't': 3.0, 'a': 3.0, 'these': 5.0, 'and': 6.0, 'susceptible': 1.0, 'pro': 1.0, 'myself': 1.0, 'diapers': 1.0, 'are': 3.0, 'much': 5.0, 'do': 2.0, 'in': 4.0, 'curse': 1.0, 'inners': 1.0, 'off': 1.0, 'seems': 3.0, 'elastic': 1.0, 'with': 2.0, 'like': 3.0, 'version': 6.0, 'something': 1.0, 'hand': 2.0, 'the': 20.0, 'of': 3.0, 'sizing': 3.0, 'which': 1.0, 'good': 2.0, 'fabrics': 1.0, 'old': 1.0, 'makes': 1.0, 'i': 12.0, 'fewer': 1.0, 'bunched': 1.0, 'to': 9.0, 'those': 2.0, 'my': 3.0, 'microfiber': 1.0, 'me': 3.0, '3': 1.0, 'older': 1.0, 'neutral': 1.0, 'pocket': 3.0, 's': 1.0, 'narrower': 1.0, 'stuff': 1.0, 'just': 1.0, 'comfy': 1.0, 'months': 1.0, 'get': 1.0, 'con': 1.0, 'inserts': 2.0, 'consider': 1.0, 'leaks': 2.0, 'since': 2.0, 'insert': 2.0, 'as': 2.0, 'diaper': 1.0, 'when': 2.0, 'other': 1.0, 'hidden': 1.0, 'considers': 1.0, 'his': 1.0, 'them': 2.0, 'workmanship': 1.0, 'always': 1.0, 'cons': 1.0, 'pros': 1.0, 'hate': 1.0, 'ends': 1.0, 'it': 3.0, 'him': 1.0, 'buttons': 2.0, 'still': 2.0, 'system': 2.0, 'absolutely': 1.0, 'dread': 1.0}
Word element => {'mouth': 1.0, 'in': 1.0, 'still': 1.0, 'is': 1.0, 'even': 1.0, 'off': 1.0, 'on': 1.0, 'one': 1.0, 'glad': 1.0, 'but': 1.0, 'instead': 1.0, 'easy': 1.0, 'store': 1.0, 'at': 1.0, 'not': 1.0, 'clip': 1.0, 'the': 1.0, 'a': 3.0, 'functional': 1.0, 'bought': 2.0, 'this': 1.0, 'first': 1.0, 'it': 1.0, 'pacifier': 2.0, 'i': 3.0, 'snap': 1.0, 'to': 1.0, 'was': 1.0, 'had': 1.0, 'loop': 1.0, 'of': 1.0, 'get': 1.0, 'and': 2.0, 'very': 2.0, 'while': 1.0, 'am': 1.0, 'so': 1.0}
Word element => {'wait': 1.0, 'can': 1.0, 'toddlers': 1.0, 'with': 1.0, 'other': 2.0, 'make': 1.0, 'a': 1.0, 'well': 1.0, 'i': 2.0, 'really': 1.0, 'many': 1.0, 'bringing': 1.0, 'are': 3.0, 'for': 2.0, 'compliments': 1.0, 'snacks': 1.0, 'in': 1.0, 'perfect': 1.0, 'moms': 1.0, 'solution': 1.0, 'easy': 1.0, 'prints': 1.0, 's': 1.0, 'gift': 1.0, 'cute': 1.0, 'more': 1.0, 't': 1.0, 'great': 1.0, 'the': 2.0, 'these': 1.0, 'your': 1.0, 'they': 2.0, 'on': 2.0, 'go': 1.0, 'functional': 1.0, 'so': 2.0, 'to': 2.0, 'made': 1.0, 'them': 1.0, 'child': 1.0, 'clean': 1.0, 'and': 2.0, 'get': 2.0}
Word element => {'quality': 1.0, 'manner': 1.0, 'timely': 1.0, 'shipped': 1.0, 'product': 1.0, 'room': 1.0, 'on': 1.0, 'am': 1.0, 'is': 1.0, 'looks': 1.0, 'daycare': 1.0, 'items': 1.0, 'always': 1.0, 'to': 1.0, 'look': 1.0, 'for': 1.0, 'in': 2.0, 'own': 1.0, 'my': 2.0, 'a': 2.0, 'out': 1.0, 'i': 2.0, 'that': 1.0, 'cover': 1.0, 'have': 1.0, 'play': 1.0, 'monkeys': 1.0, 'and': 2.0, 'plate': 1.0, 'liking': 1.0, 'the': 3.0, 'great': 1.0}
Word element => {'different': 1.0, 'the': 1.0, 'my': 1.0, 'for': 1.0, 'i': 1.0, 'but': 1.0, 'use': 1.0, 'ordered': 1.0, 'cute': 1.0, 'super': 1.0, 'is': 2.0, 'room': 1.0, 'were': 1.0, 'granddaughters': 1.0, 'it': 1.0, 'this': 1.0, 'new': 1.0, 'plate': 1.0, 'and': 1.0, 'as': 1.0, 'they': 1.0, 'not': 1.0, 'able': 1.0, 'switch': 2.0, 'to': 1.0}
Word element => {'shipping': 1.0, 'fast': 1.0, 'perfectly': 1.0, 's': 1.0, 'matches': 1.0, 'switch': 1.0, 'room': 1.0, 'standard': 1.0, 'nice': 1.0, 'plastic': 1.0, 'baby': 1.0, 'will': 1.0, 'its': 1.0, 'quality': 1.0, 'any': 1.0, 'oversized': 1.0, 'not': 1.0, 'the': 1.0, 'metal': 1.0, 'cheap': 1.0, 'fit': 1.0}
Word element => {'for': 1.0, 'other': 1.0, 'attractive': 1.0, 'and': 2.0, 'company': 1.0, 'in': 1.0, 'made': 1.0, 'since': 1.0, 'well': 1.0, 'teething': 1.0, 's': 1.0, 'is': 3.0, 'look': 1.0, 'now': 1.0, 'soft': 1.0, 'organic': 1.0, 'this': 2.0, 'it': 2.0, 'toy': 1.0, 'baby': 1.0, 'most': 1.0, 'every': 1.0, 'important': 1.0, 'mouth': 1.0, 'from': 1.0, 'very': 1.0, 'day': 1.0, 'products': 1.0, 'i': 1.0}
Word element => {'great': 1.0, 'design': 1.0, 'overall': 1.0, 'socks': 1.0, 'walk': 1.0, 'don': 1.0, 'with': 2.0, 'from': 1.0, 'hard': 1.0, 'plays': 1.0, 'in': 1.0, 'hop': 1.0, 'everything': 1.0, 'now': 1.0, 'weeks': 1.0, 'few': 1.0, 'out': 1.0, 'see': 1.0, 'quality': 2.0, 'much': 1.0, 'both': 1.0, 'but': 2.0, 'can': 1.0, 'reviews': 1.0, 'they': 1.0, 'find': 2.0, 'expect': 1.0, 'rare': 1.0, 'animals': 1.0, 'identify': 1.0, 'puzzle': 1.0, 'it': 3.0, 'easy': 1.0, 'months': 1.0, 'is': 3.0, 'playmat': 1.0, 'please': 1.0, 'use': 2.0, 'mix': 1.0, 'bright': 1.0, 'have': 2.0, 'sit': 1.0, 'to': 5.0, 'was': 1.0, 'fine': 1.0, 'look': 1.0, 'skip': 1.0, 'paint': 1.0, 'mat': 1.0, 'i': 5.0, 'so': 2.0, 'together': 1.0, 'muted': 1.0, 'you': 1.0, 'am': 1.0, 'my': 5.0, 'about': 2.0, 'colors': 2.0, 'would': 1.0, 've': 1.0, 'super': 1.0, 'son': 2.0, 'loves': 1.0, 'that': 2.0, 'had': 1.0, 'what': 2.0, 'toys': 1.0, 'like': 2.0, 'place': 2.0, 'the': 6.0, 't': 1.0, 'a': 5.0, 'we': 3.0, 'product': 1.0, 'picky': 1.0, 'love': 2.0, 'for': 2.0, 'peeling': 1.0, 'of': 1.0, 'play': 1.0, 'and': 11.0, 'infant': 1.0, 'yrs': 1.0, '7': 1.0, 'found': 1.0, 'kids': 2.0, 'eyes': 1.0, 'soft': 1.0, 'think': 1.0, 'except': 1.0, 'put': 1.0, 'on': 2.0, '3': 1.0, 'clean': 1.0, 'ours': 1.0, 'toddler': 1.0}
Word element => {'tumbling': 1.0, 'of': 1.0, 'amount': 1.0, 'just': 1.0, 'floor': 1.0, 'kitchen': 1.0, 'hardwood': 1.0, 'our': 1.0, 'answer': 1.0, 'on': 1.0, 'is': 2.0, 'colors': 1.0, 'fun': 2.0, 'right': 1.0, 'departure': 1.0, 'the': 3.0, 'my': 1.0, 'loves': 1.0, 'play': 1.0, 'daughter': 1.0, 'and': 2.0, 'mat': 1.0, 'this': 1.0, 'it': 2.0, 'bright': 1.0, 'a': 1.0, 'adorable': 1.0, 'from': 1.0, 'for': 2.0, 'letters': 1.0, 'animals': 1.0, 'tiles': 1.0, 'cushioning': 1.0, 'plain': 1.0, 'perfect': 1.0}
Word element => {'loves': 1.0, 'boy': 1.0, 'little': 1.0, 'pictures': 1.0, 'the': 2.0, 'by': 1.0, 'town': 1.0, 'of': 1.0, 'out': 1.0, 'received': 1.0, 'person': 1.0, 'judging': 1.0, 'for': 1.0, 'in': 1.0, 'gift': 1.0, 'baby': 1.0, 'friend': 1.0, 'an': 1.0, 'see': 1.0, 'a': 1.0, 'to': 2.0, 'was': 2.0, 'not': 1.0, 'therefore': 1.0, 'it': 4.0, 'mailed': 1.0, 'directly': 1.0, 'her': 1.0, 'did': 1.0, 'i': 2.0, 'get': 1.0}
Word element => {'starts': 1.0, 'he': 1.0, 'will': 1.0, 'newborn': 1.0, 'son': 1.0, 'engrossed': 1.0, 'took': 1.0, 'was': 2.0, 'crawling': 1.0, 'colors': 1.0, 'loves': 1.0, 'age': 1.0, 'animal': 1.0, 'spill': 1.0, 'after': 1.0, 'soapy': 1.0, 'cushiony': 1.0, 'uses': 1.0, 'time': 2.0, 'fun': 1.0, 'from': 1.0, 'wipe': 1.0, 'type': 1.0, 'bleach': 1.0, 'cats': 1.0, 'backyard': 1.0, 'puzzle': 1.0, 'relegated': 1.0, 'now': 1.0, 'water': 1.0, 'up': 1.0, 'better': 1.0, 'think': 1.0, 'nice': 1.0, 'two': 1.0, 'showing': 1.0, 'plenty': 1.0, 'with': 3.0, 'hasn': 1.0, 'good': 1.0, 'which': 1.0, 'furniture': 1.0, 'sitting': 1.0, 'previous': 1.0, 'strong': 1.0, 'happened': 1.0, 'firm': 1.0, 'floors': 1.0, 'at': 2.0, 'is': 3.0, 'hardwood': 1.0, 'print': 1.0, 'but': 1.0, 'while': 2.0, 'does': 1.0, 'kitchen': 1.0, 'section': 1.0, 'so': 1.0, 'can': 1.0, 'rinsed': 1.0, 'unlike': 1.0, 'around': 1.0, 'surface': 2.0, 'than': 1.0, 'apart': 1.0, 'or': 1.0, 'my': 5.0, 'letter': 1.0, 'weapons': 1.0, 'grow': 1.0, 'drawn': 1.0, 'contrast': 1.0, 'affect': 1.0, 'round': 1.0, 'also': 1.0, 'crumbs': 1.0, 'puzzles': 1.0, 'tiles': 2.0, 'used': 1.0, 'totally': 1.0, 'under': 1.0, 'alphabet': 3.0, 'animals': 1.0, 'large': 1.0, 'on': 3.0, '3': 2.0, 'general': 1.0, 'floor': 2.0, 'put': 2.0, 'she': 2.0, 'many': 1.0, 'others': 1.0, 'collapse': 1.0, 'some': 2.0, 'chewed': 1.0, 'm': 2.0, 'in': 5.0, 'have': 5.0, 'misplaced': 1.0, 'wear': 1.0, 'it': 15.0, 'like': 2.0, 'lot': 1.0, 'one': 1.0, 'them': 1.0, 'has': 1.0, 'inside': 1.0, 'bunch': 1.0, 'project': 1.0, 'circle': 1.0, 'are': 3.0, 'playmats': 1.0, 'small': 2.0, 'a': 9.0, 's': 4.0, 'soon': 1.0, 'there': 1.0, 'into': 3.0, 'get': 1.0, 'easy': 1.0, 'rematch': 1.0, 'bits': 1.0, 'and': 13.0, 'few': 1.0, 'footsteps': 1.0, 'this': 4.0, 'thrown': 1.0, 'don': 1.0, 'of': 7.0, 'the': 15.0, 'interchangeable': 1.0, 'playing': 1.0, 'all': 3.0, 'to': 8.0, 'our': 3.0, 'as': 4.0, 'when': 3.0, 'advantages': 1.0, 'that': 4.0, 'easily': 1.0, 'year': 1.0, 'old': 3.0, 'pulls': 1.0, 'package': 1.0, 'come': 1.0, 'finished': 1.0, 'out': 2.0, 'abunch': 1.0, 'not': 1.0, 'mat': 5.0, 'big': 1.0, 'vibrant': 1.0, 'didn': 1.0, 'border': 1.0, 'whole': 1.0, 'trick': 1.0, 'thing': 1.0, 'back': 3.0, 'market': 1.0, 'sections': 1.0, 'wiping': 1.0, 'were': 2.0, 'together': 2.0, 'pieces': 4.0, 'foam': 3.0, 'daughter': 2.0, 'cooking': 1.0, 'pull': 1.0, 'doesn': 1.0, 'seems': 1.0, 'b': 1.0, 'off': 1.0, 'holding': 1.0, 'house': 1.0, 'enough': 1.0, 'started': 1.0, 'generally': 1.0, 'friends': 1.0, 'her': 1.0, 'smaller': 1.0, 't': 4.0, 'strange': 1.0, 'separate': 1.0, 'we': 2.0, 'take': 1.0, 'then': 1.0, 'very': 2.0, 'later': 1.0, 'i': 6.0}
Word element => {'on': 1.0, 'feet': 1.0, 'in': 1.0, 'month': 1.0, '6': 1.0, 's': 1.0, 'only': 1.0, 'it': 2.0, 'a': 1.0, 'since': 1.0, 'yellow': 1.0, 'show': 1.0, 'colors': 1.0, 'isn': 1.0, 'your': 1.0, 'if': 1.0, 'playroom': 1.0, 'playing': 1.0, 'that': 1.0, 'traditional': 1.0, 'red': 1.0, 'the': 1.0, 't': 1.0, 'great': 1.0, 'but': 1.0, 'blue': 1.0, 'especially': 1.0, 'scratches': 1.0, 'old': 1.0, 'i': 1.0, 'green': 1.0, 'and': 1.0, 'indents': 1.0, 'bare': 1.0, 'is': 1.0, 'sooner': 1.0, 'expected': 1.0}
Word element => {'get': 1.0, 'baby': 1.0, 'your': 1.0, 'mat': 1.0, 'put': 1.0, 'together': 1.0, 'have': 1.0, 'this': 1.0, 'in': 1.0, 'durable': 1.0, 'to': 2.0, 'adorable': 1.0, 'easy': 1.0, 'just': 1.0, 'room': 1.0, 'is': 1.0, 'a': 1.0, 'it': 1.0, 'great': 1.0}
Word element => {'case': 1.0, 'replacing': 1.0, 'paint': 1.0, 'in': 2.0, 'no': 1.0, 'is': 1.0, 'after': 1.0, 'peeling': 1.0, 'just': 1.0, 'not': 1.0, 'it': 1.0, 'only': 1.0, 'are': 1.0, 'look': 1.0, 'lovely': 1.0, 'design': 1.0, 'animals': 1.0, 'tiles': 1.0, 'months': 1.0, 'quality': 1.0, 'but': 2.0, 'toxicity': 1.0, 'use': 1.0, 'hopefully': 1.0, 'great': 1.0, 'the': 2.0, 'these': 1.0, 'a': 1.0, 'few': 1.0, 'there': 1.0, 'of': 1.0, 'good': 1.0, 'functionally': 1.0}
Word element => {'do': 1.0, 'foam': 1.0, 'colored': 1.0, 'solid': 1.0, 'where': 1.0, 'this': 1.0, 'replacing': 1.0, 'be': 1.0, 'will': 1.0, 'so': 1.0, 'recommend': 1.0, 'unfortunately': 1.0, 'safe': 1.0, 'not': 2.0, 'ever': 1.0, 'best': 1.0, 'that': 1.0, 'and': 5.0, 'market': 1.0, 'we': 1.0, 's': 1.0, 'a': 3.0, 'write': 1.0, 'who': 2.0, 'layer': 2.0, 'peel': 1.0, 'while': 1.0, 'tiles': 2.0, 'mat': 2.0, 'other': 1.0, 'certainly': 1.0, 'toy': 1.0, 'review': 1.0, 'girls': 1.0, 'to': 2.0, 'scooting': 1.0, 'becomes': 1.0, 'i': 2.0, 'with': 3.0, 'is': 1.0, 'compelled': 1.0, 'course': 1.0, 'on': 1.0, 'one': 1.0, 'months': 2.0, 'agree': 1.0, 'after': 1.0, 'the': 8.0, 'these': 1.0, 'cutest': 1.0, 'of': 4.0, 'sticker': 1.0, 'peeling': 1.0, 'have': 2.0, '8': 1.0, 'complained': 1.0, 'no': 1.0, 'about': 1.0, 'feel': 1.0, 'twin': 1.0, 'drooling': 1.0, 'reviewers': 1.0, 'are': 2.0, 'almost': 1.0, 'off': 2.0, 'few': 1.0, 'like': 1.0, 'rolling': 1.0, 'top': 2.0, 'it': 1.0, 'peels': 1.0}
Word element => {'infant': 1.0, 'keep': 1.0, 'order': 1.0, 'toys': 1.0, 'safe': 2.0, 'research': 1.0, 'toxins': 1.0, 'for': 1.0, 'low': 1.0, 'getting': 1.0, 'france': 1.0, 'realize': 1.0, 'banned': 1.0, 'have': 2.0, 'are': 1.0, 'certain': 1.0, 'because': 2.0, 'us': 2.0, 'in': 4.0, 'free': 1.0, 'calling': 1.0, 'away': 1.0, 'get': 1.0, 'level': 1.0, 'is': 1.0, 'which': 1.0, 'trying': 1.0, 'formula': 1.0, 'our': 2.0, 'to': 5.0, 'all': 2.0, 'belgium': 1.0, 'standards': 2.0, 'allow': 1.0, 've': 1.0, 'also': 1.0, 'me': 1.0, 'told': 1.0, 'they': 3.0, 'disturbingly': 1.0, 'if': 1.0, 'hop': 2.0, 'and': 4.0, 'play': 3.0, 's': 1.0, 'a': 2.0, 'off': 1.0, 'daughter': 1.0, 'knowledge': 1.0, 'revise': 1.0, 'tiles': 1.0, 'mat': 1.0, 'paint': 2.0, 'skip': 2.0, 'the': 6.0, 'some': 1.0, 'these': 1.0, 'my': 3.0, 'ate': 1.0, 'peels': 2.0, 'it': 3.0, 'with': 2.0, 'can': 1.0, 'but': 1.0, 'minimal': 1.0, 'under': 1.0, 'still': 2.0, 'safety': 2.0, 'nevertheless': 1.0, 'full': 1.0, 'carcinogenic': 1.0, 'sell': 1.0, 'of': 3.0, 'rid': 1.0, 'representative': 1.0, 'problem': 1.0, 'i': 4.0, 'am': 1.0, 'contain': 1.0, 'horrified': 1.0, 'discover': 1.0, 'been': 2.0, 'that': 1.0, 'them': 1.0, 'eva': 2.0, 'formaldehyde': 2.0, 'foam': 2.0, 'laws': 1.0, 'was': 1.0, 'mats': 3.0}
Word element => {'longer': 1.0, 'lasted': 1.0, 'have': 1.0, 'price': 1.0, 'made': 1.0, 'something': 1.0, 'rid': 1.0, 'getting': 2.0, 'will': 1.0, 'so': 1.0, 'us': 1.0, 'worry': 1.0, 'everywhere': 1.0, 'back': 1.0, 'this': 2.0, 'puzzle': 1.0, 'pulling': 1.0, 'enjoys': 1.0, 'designs': 1.0, 'and': 4.0, 'bright': 1.0, 'lot': 1.0, 'since': 1.0, 'the': 5.0, 'a': 2.0, 'we': 2.0, 'colors': 1.0, 'be': 1.0, 'putting': 1.0, 'old': 2.0, 'in': 2.0, 'pieces': 1.0, 'should': 1.0, 'better': 1.0, 'their': 1.0, '4month': 1.0, 'it': 3.0, 'she': 1.0, 'off': 1.0, 'for': 3.0, 'together': 1.0, 'daughter': 2.0, 'just': 1.0, 'our': 2.0, 'all': 1.0, 'loves': 1.0, 'babies': 1.0, 'like': 1.0, 'giant': 1.0, 'away': 1.0, 'thin': 1.0, 'now': 2.0, 'cons': 1.0, 'plastic': 1.0, '6': 1.0, 'bought': 1.0, 'months': 1.0, 'are': 1.0, 'of': 2.0, 'peeling': 2.0, 'already': 1.0, 'apart': 1.0, 'everything': 1.0, 'foam': 1.0, 'paper': 1.0, 'put': 1.0, 'mouths': 1.0}
Word element => {'time': 1.0, 'reply': 1.0, 'in': 1.0, 'email': 1.0, 'one': 1.0, 'received': 1.0, 'information': 1.0, 'return': 1.0, 'emails': 1.0, 'nightmare': 1.0, 't': 1.0, 'a': 1.0, 'has': 1.0, 'have': 2.0, 'fading': 1.0, 'buy': 1.0, 'days': 1.0, 'customer': 1.0, 'don': 1.0, 'up': 2.0, 'skiphop': 1.0, 'using': 1.0, 'refund': 1.0, 'was': 3.0, 'to': 1.0, '5': 1.0, 'opening': 1.0, 'written': 1.0, 'been': 1.0, 'babies': 1.0, 'that': 2.0, 'price': 1.0, 'colors': 1.0, 'purchased': 1.0, 'for': 2.0, 'product': 1.0, 'this': 1.0, 'it': 2.0, 'with': 1.0, 'asking': 1.0, 'sold': 1.0, 'and': 6.0, 'your': 1.0, 'on': 1.0, 'two': 1.0, 'i': 2.0, 'cuteness': 1.0, 'infant': 1.0, 'the': 5.0, 'began': 1.0, 'working': 1.0, 'of': 1.0, 'peeling': 2.0, 'approximately': 1.0, 'from': 1.0, 'factor': 1.0, 'tiles': 1.0, 'money': 1.0, 'worrisome': 1.0, 'because': 1.0, 'save': 1.0, 'fact': 1.0, 'my': 1.0, 'crawling': 1.0, 'kept': 1.0, 'eat': 1.0, 'within': 1.0, 'trying': 1.0, 'were': 1.0, 'pieces': 1.0, 'safe': 1.0, 'service': 1.0}
Word element => {'intention': 1.0, 'do': 1.0, 'only': 1.0, 'recommend': 1.0, 'durable': 1.0, 'even': 1.0, 'but': 1.0, 'mouth': 1.0, 'tiles': 1.0, 'you': 1.0, 'able': 1.0, 'thing': 1.0, 'another': 1.0, 'toys': 1.0, 'plastic': 1.0, 'hard': 1.0, 'rubbing': 1.0, 'from': 1.0, 'come': 1.0, 'suggested': 1.0, 'as': 1.0, 'anything': 1.0, 'hands': 1.0, 'ending': 1.0, 'instances': 1.0, 'around': 1.0, 'by': 1.0, 'attenuated': 1.0, 'be': 1.0, 'after': 1.0, 'seems': 1.0, 'off': 3.0, 'if': 2.0, 'course': 1.0, 'stay': 1.0, 'definitively': 1.0, 'he': 1.0, 'crawl': 1.0, 'any': 1.0, 'your': 2.0, 'sense': 1.0, 'ours': 1.0, 'no': 1.0, 'or': 4.0, 'skip': 1.0, 'right': 1.0, 'not': 8.0, 'does': 3.0, 'product': 2.0, 'such': 2.0, 'for': 2.0, 'crawling': 1.0, 'whole': 1.0, 'despite': 1.0, 'decided': 1.0, 'get': 1.0, 'months': 1.0, 'is': 9.0, 'head': 1.0, 'apparently': 1.0, 'the': 14.0, 'of': 5.0, 'and': 9.0, 'up': 1.0, 'water': 1.0, 'thin': 1.0, 'daughter': 2.0, 'foam': 1.0, 'like': 2.0, 'good': 1.0, 'phase': 1.0, 'which': 2.0, 'will': 1.0, 'could': 1.0, 'take': 1.0, 'reviews': 1.0, 'we': 7.0, 'our': 2.0, 'against': 1.0, 'job': 1.0, 'to': 8.0, 'had': 1.0, 'time': 2.0, 'can': 2.0, 'so': 1.0, 'friends': 1.0, 'been': 1.0, 'baby': 2.0, 'she': 6.0, 'it': 12.0, 'though': 1.0, 'thick': 1.0, 'fell': 2.0, 'confined': 1.0, 'this': 6.0, 'have': 4.0, 'a': 5.0, 'small': 1.0, 'now': 1.0, 'upright': 1.0, 'sometimes': 1.0, 'face': 1.0, 'went': 1.0, 'several': 1.0, 'down': 1.0, 'paint': 2.0, 'times': 1.0, 'size': 3.0, 'hurt': 2.0, 'sit': 1.0, 'when': 1.0, 'because': 2.0, 'that': 3.0, 'easily': 1.0, 'case': 2.0, '4': 1.0, 'seen': 2.0, 'keep': 1.0, 'makes': 1.0, 'did': 2.0, 'herself': 1.0, 'directly': 1.0, 'back': 2.0, 'extensive': 1.0, 'us': 1.0, 'also': 1.0, 'peel': 1.0, 'away': 1.0, 'bumped': 1.0, 'use': 1.0, 'her': 4.0, 'clean': 1.0, 'too': 5.0, 'lot': 1.0, 'crying': 1.0, 'clothes': 1.0, 'was': 1.0, 'has': 2.0, 'mats': 3.0, 'very': 4.0, 'easy': 3.0, 'with': 1.0, 'perfect': 1.0, 'soapy': 1.0, 'edge': 1.0, 'since': 2.0, 'transport': 1.0, 'on': 6.0, 'long': 2.0, 'reach': 1.0, 'way': 1.0, 'vacation': 1.0, 'crawls': 1.0, 'spends': 1.0, 'everything': 1.0, 'other': 1.0, 'all': 3.0, 'fits': 1.0, 'in': 6.0, 'using': 1.0, 'bag': 1.0, 'would': 1.0, 'either': 2.0, 'adequate': 1.0, 'points': 1.0, 'quite': 1.0, 'into': 1.0, 'shuffling': 1.0, 'houses': 1.0, 'bad': 1.0, 'are': 1.0, 'mat': 5.0, 'big': 2.0}
Word element => {'anyone': 1.0, 'recommend': 1.0, 'second': 1.0, 'product': 1.0, 'for': 1.0, 'see': 1.0, 'after': 1.0, 'brand': 1.0, 'tiles': 1.0, 'products': 1.0, 'i': 4.0, 'buy': 1.0, 'use': 1.0, 'playmat': 1.0, 'loved': 1.0, 'either': 1.0, 'months': 1.0, 'decided': 1.0, 'best': 1.0, 'the': 7.0, 'all': 2.0, 'to': 2.0, 'just': 1.0, 'few': 1.0, 'by': 1.0, 'because': 1.0, 'other': 1.0, 'this': 2.0, 'and': 2.0, 'a': 2.0, 't': 2.0, 'discovered': 1.0, 'top': 1.0, 'coat': 1.0, 'of': 2.0, 'peeling': 1.0, 'if': 1.0, 'design': 1.0, 'foam': 1.0, 'connectors': 1.0, 'isn': 1.0, 'on': 1.0, 'your': 1.0, 'you': 1.0, 'tiny': 1.0, 'chewed': 1.0, 'but': 1.0, 'can': 1.0, 'teeth': 1.0, 'marks': 1.0, 'quality': 1.0, 'baby': 1.0, 'leaves': 1.0, 'wouldn': 1.0, 'even': 1.0, 'it': 1.0, 'she': 1.0}
Word element => {'our': 1.0, 'daughter': 1.0, 'where': 1.0, 'different': 1.0, 'countries': 1.0, 'we': 1.0, 'other': 1.0, 'banned': 1.0, 'formamide': 1.0, 'ended': 1.0, 'about': 1.0, 'concerned': 1.0, 'being': 1.0, 'mobile': 1.0, 'mat': 1.0, 'initially': 1.0, 'if': 1.0, 'soon': 1.0, 'kid': 1.0, 'fun': 1.0, 'chew': 1.0, 'playmat': 1.0, 'but': 1.0, 'will': 1.0, 'a': 2.0, 'is': 2.0, 'edge': 1.0, 'your': 1.0, 'they': 1.0, 'in': 1.0, 'pieces': 1.0, 'apart': 1.0, 'start': 1.0, 't': 1.0, 'the': 2.0, 'pulling': 1.0, 'this': 1.0, 'it': 1.0, 'couldn': 1.0, 'getting': 1.0, 'and': 1.0, 'chewing': 1.0, 'up': 1.0, 'of': 1.0}
Word element => {'store': 1.0, 'faded': 1.0, 'one': 1.0, 'foam': 1.0, 'prints': 1.0, 'outdoor': 1.0, 'on': 1.0, 'animal': 1.0, 'good': 2.0, 'an': 1.0, 'but': 1.0, 'use': 1.0, 'just': 1.0, 'with': 1.0, 'arrival': 1.0, 'looked': 1.0, 'moderate': 1.0, 'probably': 1.0, 'from': 1.0, 'as': 1.0, 'month': 1.0, 'lock': 1.0, 'to': 1.0, 'buy': 1.0, 'within': 1.0, 'together': 1.0, 'flooring': 1.0}
Word element => {'animals': 1.0, 'peeling': 1.0, 'paint': 1.0, 'issue': 1.0, 't': 1.0, 'haven': 1.0, 'other': 1.0, 'unlike': 1.0, 'together': 1.0, 'easy': 1.0, 'reviewers': 1.0, 'are': 1.0, 'off': 1.0, 'enough': 1.0, 'so': 1.0, 'm': 1.0, 'kids': 1.0, 'third': 1.0, 'old': 1.0, 'i': 6.0, 'pregnant': 1.0, 'have': 1.0, 'roll': 1.0, 'these': 1.0, 'the': 3.0, 'nicely': 1.0, 'had': 2.0, 'any': 1.0, 'to': 2.0, 'around': 1.0, 'is': 1.0, 'son': 1.0, 'with': 3.0, 'older': 1.0, 'put': 1.0, 'on': 2.0, 'my': 4.0, 'eye': 1.0, 'months': 1.0, 'color': 1.0, 'since': 1.0, 'bright': 1.0, 'glad': 1.0, '6': 1.0, 'up': 1.0, 'and': 4.0, 'play': 1.0, 'design': 1.0, 'them': 1.0, 'clean': 1.0, 'love': 1.0, 'was': 1.0, 'mats': 1.0, 'modern': 1.0, 'colors': 1.0, 'much': 1.0, 'better': 1.0, 'than': 1.0, 'primary': 1.0, 'tiles': 1.0, 'used': 1.0, 'they': 1.0}
Word element => {'product': 2.0, 'i': 1.0, 'money': 1.0, 'love': 1.0, 'great': 2.0, 'and': 1.0, 'worth': 1.0, 'little': 1.0, 'for': 1.0, 'kids': 1.0, 'babies': 1.0, 'living': 1.0, 'this': 1.0, 'play': 1.0, 'at': 1.0, 'the': 2.0, 'def': 1.0, 'room': 1.0}
Word element => {'it': 2.0, 'doesn': 1.0, 'on': 1.0, 'is': 1.0, 'too': 1.0, 'small': 1.0, 'my': 1.0, 'baby': 1.0, 'play': 1.0, 't': 1.0, 'and': 1.0, 'like': 1.0, 'to': 1.0}
Word element => {'might': 1.0, 'what': 1.0, 'bright': 1.0, 'see': 1.0, 'a': 1.0, 'wait': 1.0, 'can': 1.0, 'lose': 1.0, 'him': 1.0, 'to': 3.0, 'appealing': 1.0, 'is': 1.0, 'of': 1.0, 'french': 1.0, 'story': 1.0, 'believe': 1.0, 'mouse': 4.0, 'sleeps': 1.0, 'little': 1.0, 'it': 2.0, 'he': 2.0, 'this': 1.0, 'with': 2.0, 'fairies': 1.0, 'live': 1.0, 'and': 3.0, 'son': 1.0, 'as': 1.0, 'my': 1.0, 'more': 1.0, 't': 2.0, 'tooth': 5.0, 'the': 5.0, 'woods': 1.0, 'night': 1.0, 'adores': 1.0, 'along': 1.0, 'we': 2.0, 'every': 1.0, 'purchased': 1.0, 'doesn': 1.0, 'book': 1.0, 'in': 2.0}
Word element => {'for': 1.0, 'the': 1.0, 'of': 1.0, 'you': 1.0, 's': 1.0, 'to': 1.0, 'adorable': 1.0, 'i': 1.0, 'm': 1.0, 'remind': 1.0, 'french': 2.0, 'using': 1.0, 'a': 1.0, 'class': 1.0, 'cheese': 1.0, 'its': 1.0, 'love': 1.0, 'sure': 1.0, 'it': 2.0, 'mascot': 1.0, 'as': 1.0, 'and': 1.0}
Word element => {'new': 1.0, 'his': 1.0, 'nephew': 1.0, 'wrote': 1.0, 'who': 1.0, 'to': 1.0, 'was': 1.0, 'my': 2.0, 'photo': 1.0, 'sent': 2.0, 'nice': 1.0, 'note': 2.0, 'son': 1.0, 'from': 1.0, 'very': 1.0, 'wondering': 1.0, 'as': 1.0, 'and': 3.0, 'exactly': 1.0, 'lovely': 1.0, 'toy': 1.0, 'cute': 2.0, 'sucks': 1.0, 'did': 1.0, 'amazon': 1.0, 'is': 1.0, 'the': 2.0, 'i': 2.0, 'in': 1.0, 've': 1.0, 'not': 2.0, 'this': 2.0, 'sister': 1.0, 'with': 1.0, 'it': 2.0, 'since': 1.0, 'a': 2.0, 'include': 1.0, 'however': 1.0, 'so': 1.0}
Word element => {'husband': 1.0, 'room': 1.0, 'little': 1.0, 'takes': 1.0, 'baby': 1.0, 'on': 1.0, 'convenient': 1.0, 'couldn': 1.0, 'not': 1.0, 'n': 1.0, 'me': 1.0, 'stumped': 1.0, 'pouch': 1.0, 'instructions': 1.0, 'travel': 1.0, 'how': 1.0, 'travels': 1.0, 'well': 1.0, 's': 1.0, 't': 1.0, 'a': 4.0, 'seems': 1.0, 'also': 2.0, 'itself': 1.0, 'in': 2.0, 'know': 1.0, 'few': 1.0, 'complicated': 1.0, 'i': 6.0, 'was': 1.0, 'loves': 1.0, 'that': 3.0, 'first': 1.0, 'minute': 1.0, 'perfect': 1.0, 'this': 1.0, 'it': 7.0, 'wanted': 3.0, 'bassinet': 2.0, 'are': 1.0, 'now': 1.0, 'weeks': 1.0, 'have': 1.0, 'to': 5.0, 'our': 1.0, 'all': 1.0, 'super': 1.0, 'something': 1.0, 'would': 1.0, 'bedroom': 1.0, 'love': 3.0, 'for': 4.0, 'fit': 1.0, 'grandparents': 1.0, 'folds': 1.0, 'get': 1.0, 'easy': 1.0, 'out': 1.0, 'of': 1.0, 'set': 1.0, 'up': 2.0, 'pack': 2.0, 'only': 1.0, 'town': 1.0, 'so': 3.0, 'and': 2.0, 'play': 2.0, 'find': 1.0, 'because': 3.0, 'yard': 1.0, 'hidden': 1.0, 'later': 1.0, 'is': 1.0, 'folded': 1.0, 'came': 1.0, 'the': 5.0, 'assembled': 1.0}
Word element => {'pack': 1.0, 'typical': 1.0, 'than': 1.0, 'gorgeous': 1.0, 'pattern': 1.0, 'the': 2.0, 'love': 1.0, 'n': 1.0, 'with': 1.0, 'it': 1.0, 'in': 1.0, 'perfect': 1.0, 'size': 1.0, 'looks': 1.0, 'and': 2.0, 'i': 1.0, 'paisley': 1.0, 'smaller': 1.0, 'my': 1.0, 'anywhere': 1.0, 'pink': 1.0, 'adorable': 1.0, 'room': 1.0, 'brown': 1.0, 'being': 1.0, 'plays': 1.0, '20': 1.0, 'dark': 1.0, 'fits': 1.0, 'living': 1.0}
Word element => {'cribs': 1.0, 'then': 1.0, 'work': 1.0, 'its': 4.0, 'buying': 1.0, 'things': 1.0, 'space': 1.0, 'at': 1.0, 'because': 1.0, 'just': 1.0, 'it': 1.0, 'this': 1.0, 'love': 2.0, 'for': 2.0, 'bed': 1.0, 'son': 1.0, 'to': 5.0, 'as': 1.0, 'my': 1.0, 'and': 4.0, 'easy': 1.0, 'get': 1.0, 'saver': 1.0, 'a': 3.0, 'well': 1.0, 'one': 1.0, 'bought': 1.0, 'gift': 1.0, 'after': 1.0, 'so': 1.0, 'myself': 1.0, 'i': 3.0, 'put': 1.0, 'your': 2.0, 'new': 1.0, 'mom': 1.0, 'important': 1.0, 'have': 2.0, 'next': 2.0, 'that': 1.0, 'mostly': 1.0, 'when': 1.0, 'you': 2.0, 'great': 1.0, 'more': 1.0, 'night': 1.0, 'tired': 1.0, 'baby': 1.0, 'them': 1.0}
Word element => {'their': 1.0, 'solid': 1.0, 'breathe': 1.0, 'goes': 1.0, 'has': 2.0, 'element': 1.0, 'seriously': 1.0, 'myconcern': 1.0, 'taking': 1.0, 'contacted': 1.0, 'basinettd': 1.0, 'tod': 1.0, 'stars': 1.0, 'give': 1.0, 'bigger': 1.0, 'higher': 1.0, 'lie': 1.0, 'reach': 1.0, 'area': 1.0, 'does': 1.0, 'basinetts': 1.0, 'worth': 1.0, 'product': 1.0, 'said': 1.0, 'being': 1.0, 'ike': 1.0, 'unattended': 1.0, 'stepping': 1.0, 'from': 1.0, 'dog': 2.0, 'while': 1.0, 'money': 1.0, 'set': 1.0, 'place': 2.0, 'head': 1.0, 'possible': 1.0, 'hazard': 1.0, 'safety': 2.0, 'securely': 1.0, 'what': 1.0, 'suffocate': 1.0, 'face': 2.0, 'easily': 1.0, 'at': 2.0, 'gap': 1.0, 'out': 3.0, 'limit': 1.0, 'took': 1.0, 'lbs': 1.0, 'nearing': 1.0, 'work': 1.0, 'note': 1.0, 'perfectly': 2.0, 'leaves': 1.0, 'should': 2.0, 'pink': 1.0, 'they': 5.0, 'bassinet': 1.0, 'to': 22.0, 'pretty': 1.0, 'fitted': 2.0, 'adult': 1.0, 'an': 1.0, 'jersey': 1.0, 'carters': 2.0, 'reviews': 1.0, 'we': 2.0, 'or': 3.0, 'contacting': 1.0, 'feature': 4.0, 'there': 3.0, 'breathable': 2.0, 'big': 1.0, 'sound': 1.0, 'full': 1.0, 'help': 1.0, 'about': 2.0, 'play': 2.0, 'you': 1.0, 'some': 1.0, 'floor': 1.0, 'underside': 1.0, 'cut': 1.0, 'so': 5.0, 'sheet': 3.0, 'might': 1.0, 'after': 1.0, 'by': 2.0, 'update': 1.0, 'read': 2.0, 'leave': 1.0, 'end': 4.0, 'wish': 1.0, 'figure': 1.0, '18x36': 1.0, 'wide': 1.0, 'pad': 6.0, 'surface': 1.0, 'etc': 2.0, 'on': 4.0, 'long': 1.0, 'portable': 1.0, 'blankets': 1.0, 'wanted': 1.0, 'small': 1.0, 'pack': 1.0, 'think': 2.0, 'wise': 1.0, 'this': 9.0, 'mattress': 18.0, 'reading': 1.0, 'good': 1.0, 'waterproof': 3.0, 'ought': 1.0, 'against': 2.0, 'comes': 2.0, 'bought': 1.0, 'crib': 10.0, 'allow': 1.0, 'fit': 3.0, 'easy': 2.0, 'get': 1.0, 'enough': 1.0, 'purchased': 3.0, 'fits': 3.0, 'for': 6.0, 'purchase': 2.0, '15': 1.0, 'take': 1.0, 'simply': 1.0, 'chose': 1.0, 'supposed': 2.0, 'perhaps': 1.0, 'sleep': 3.0, 'baby': 9.0, 'make': 2.0, 'she': 3.0, 'cleaner': 1.0, 'that': 12.0, 'living': 1.0, 'the': 54.0, 'of': 5.0, 'moves': 1.0, 'bed': 1.0, 'when': 2.0, 'platform': 1.0, 'occurred': 1.0, 'use': 2.0, 'hopes': 1.0, 'smaller': 1.0, 'both': 1.0, 'travel': 7.0, 'will': 9.0, 'could': 2.0, 'i': 28.0, 'well': 3.0, 'lite': 4.0, 'winslet': 1.0, 'pippa': 1.0, 'keep': 2.0, 'time': 1.0, 'did': 3.0, 'way': 3.0, 'all': 5.0, 'sheets': 2.0, 'fitting': 1.0, 'as': 7.0, 'replaced': 1.0, 'our': 1.0, 'great': 1.0, 'sticky': 1.0, 'if': 2.0, 'me': 2.0, 'not': 7.0, 'added': 1.0, 'outgrows': 1.0, 'size': 1.0, 'a': 15.0, 'offgassing': 1.0, 'can': 1.0, 'is': 9.0, 'no': 2.0, 'basinette': 3.0, 'have': 3.0, 'dryer': 1.0, 'newborn': 1.0, 'using': 1.0, 'with': 5.0, 'width': 2.0, 'weight': 1.0, 'too': 1.0, 'concerned': 1.0, 'held': 1.0, 'room': 4.0, 'my': 2.0, 'are': 4.0, 'plus': 1.0, 'soft': 1.0, 'mesh': 1.0, 'like': 2.0, 'then': 1.0, 'separate': 2.0, 'cheap': 1.0, 'tshirt': 1.0, 'more': 1.0, 'perfect': 1.0, 'people': 1.0, 'solution': 2.0, 'need': 2.0, 'also': 1.0, 'decided': 2.0, 'sort': 1.0, 'naturepedic': 1.0, 'plastic': 1.0, '1': 2.0, 'tell': 1.0, 'y': 1.0, '0': 1.0, 'which': 2.0, 'made': 1.0, 'would': 4.0, 'wipe': 1.0, 'down': 3.0, 'far': 1.0, 'stick': 2.0, 'but': 4.0, 'retained': 1.0, 'her': 8.0, 'cotton': 2.0, 'little': 1.0, 'before': 1.0, 'uncomfortable': 1.0, 'had': 1.0, 'together': 1.0, 'in': 10.0, 'non': 1.0, 'fabric': 1.0, 'towards': 1.0, 'company': 1.0, 'into': 1.0, 'once': 1.0, 'tuck': 1.0, 'where': 2.0, 'it': 16.0, 'be': 6.0, 'own': 1.0, 'off': 1.0, 'was': 4.0, 'graco': 4.0, 'pleased': 2.0, 'very': 1.0, 'find': 1.0, 'same': 1.0, 'under': 2.0, 'pads': 1.0, 'basinettes': 1.0, 'flat': 1.0, 'arrived': 1.0, 'cradle': 1.0, 'regular': 1.0, '19': 1.0, 's': 2.0, 'inches': 2.0, 'whether': 2.0, 'put': 4.0, 'hem': 1.0, 'and': 19.0, 'just': 2.0, 'ends': 1.0, 'change': 1.0, 'comfortable': 2.0, 'alternatively': 1.0, 'velcro': 2.0, 'buy': 1.0, 'bottom': 2.0, 'hold': 1.0, 'sleeping': 1.0, '18': 1.0, 'purchases': 1.0, 'shrink': 1.0, 'its': 1.0, 'got': 1.0, 'absolutely': 1.0, 'one': 3.0, '5': 3.0, 'upon': 1.0, 'sized': 1.0, 'diaper': 1.0, 'washing': 1.0, 'original': 1.0, 'grandparents': 1.0, 'am': 2.0}
Word element => {'or': 1.0, 'year': 1.0, 'last': 1.0, 'would': 1.0, 'long': 1.0, 'inches': 1.0, 'few': 1.0, 'ok': 1.0, 'need': 1.0, 'than': 1.0, 'one': 1.0, 'im': 2.0, 'for': 2.0, 'u': 1.0, 'using': 1.0, 'now': 1.0, 'buying': 1.0, 'only': 1.0, 'its': 2.0, '6': 2.0, 'week': 1.0, 'times': 1.0, 'really': 1.0, 'my': 2.0, 'bigger': 2.0, 'baby': 3.0, 'thing': 1.0, 'about': 1.0, 'that': 1.0, 'been': 1.0, 'knew': 1.0, 'month': 2.0, 'it': 3.0, 'but': 2.0, 'money': 1.0, 'four': 1.0, 'wouldn': 1.0, 'got': 1.0, 'until': 1.0, 'nice': 1.0, 'big': 1.0, 'and': 3.0, 'too': 1.0, 'fast': 1.0, 'i': 4.0, 'this': 1.0, 'wish': 1.0, 'before': 1.0, 'bough': 1.0, 'the': 4.0, 'a': 4.0, 't': 1.0, 'is': 1.0, 'more': 3.0, 'size': 1.0, 'lucky': 1.0, 'spending': 1.0, 'other': 2.0, 'options': 1.0, 'be': 1.0, 'portable': 1.0, 'on': 1.0, 'if': 2.0, 'lol': 1.0, 'same': 1.0}
Word element => {'loving': 1.0, 'my': 1.0, 'in': 1.0, 'fit': 1.0, 'space': 1.0, 'bedroom': 1.0, 'much': 1.0, 'up': 1.0, 'take': 1.0, 'doesnt': 1.0, 'a': 1.0, 'together': 1.0, 'so': 2.0, 'fact': 1.0, 'put': 1.0, 'was': 2.0, 'to': 3.0, 'big': 1.0, 'adorable': 1.0, 'wasnt': 1.0, 'with': 1.0, 'come': 1.0, 'it': 7.0, 'im': 1.0, 'love': 1.0, 'i': 1.0, 'daughters': 1.0, 'surprise': 1.0, 'perfectly': 1.0, 'and': 2.0, 'me': 1.0, 'easy': 1.0, 'expecting': 1.0, 'on': 1.0, 'fast': 2.0, 'how': 1.0, 'cute': 1.0, 'the': 2.0}
Word element => {'babies': 1.0, 'family': 1.0, 'for': 1.0, 'awesome': 1.0, 'needed': 1.0, 'as': 1.0, 'down': 1.0, 'pull': 1.0, 'can': 1.0, 'visiting': 1.0, 'so': 1.0, 'bag': 1.0, 'travel': 1.0, 'at': 1.0, 'was': 2.0, 'realized': 1.0, 'tough': 1.0, 'tho': 1.0, 'i': 3.0, 'setup': 3.0, 'received': 1.0, 'and': 1.0, 'cam': 1.0, 'quite': 1.0, 'final': 1.0, 'just': 1.0, 'didn': 1.0, 'perfect': 1.0, 'the': 3.0, 't': 1.0, 'follow': 1.0, 'result': 1.0, 'instructions': 1.0, 'first': 1.0, 'with': 1.0, 'a': 1.0}
Word element => {'to': 1.0, 'recommend': 1.0, 'play': 1.0, 'neede': 1.0, 'pack': 1.0, 'color': 1.0, 'smaller': 1.0, 'lite': 1.0, 'and': 3.0, 'travel': 1.0, 'a': 2.0, 'than': 1.0, 'perfect': 1.0, 'something': 1.0, 'little': 1.0, 'crib': 1.0, 'i': 2.0, 'the': 2.0, 'are': 1.0, 'regular': 1.0, 'is': 1.0, 'print': 1.0, 'cute': 1.0, 'others': 1.0, 'would': 1.0, 'definitely': 1.0}
Word element => {'or': 1.0, 'space': 1.0, 'have': 1.0, 'if': 1.0, 'graco': 1.0, 'much': 1.0, 'pack': 1.0, 'smaller': 2.0, 'out': 1.0, 'just': 1.0, 'by': 1.0, 'light': 1.0, 'shade': 1.0, 'lil': 1.0, 'keeps': 1.0, 'touch': 1.0, 'nice': 1.0, 'which': 1.0, 'also': 1.0, 't': 1.0, 'a': 2.0, 'internet': 1.0, 'perfect': 1.0, 'soft': 2.0, 'to': 2.0, 'then': 2.0, 'looking': 1.0, 'person': 1.0, 'assemble': 1.0, 'for': 2.0, 'in': 2.0, 'pretty': 2.0, 'own': 1.0, 'something': 1.0, 'super': 1.0, 'don': 1.0, 'up': 2.0, 'set': 1.0, '6': 1.0, 'print': 1.0, 'cushioned': 1.0, 'even': 1.0, 'her': 1.0, 'was': 1.0, 'beautiful': 1.0, 'you': 1.0, 'when': 1.0, 'on': 2.0, 'the': 8.0, 'is': 6.0, 'more': 1.0, 'nicely': 1.0, 'it': 5.0, 'month': 1.0, 'easy': 1.0, 'folds': 1.0, 'play': 1.0, 'too': 2.0, 'and': 3.0, 'fits': 1.0, 'included': 1.0, 'carrying': 1.0, 'not': 1.0, 'case': 1.0, 'be': 1.0, 'bassinet': 1.0, 'are': 1.0, 'cushion': 1.0, 'quilted': 2.0, 'pregnant': 1.0, 'but': 2.0, 'woman': 1.0, 'unsafe': 1.0, 'sides': 1.0}
Word element => {'sturdy': 1.0, 'very': 1.0, 'spaces': 1.0, 'in': 1.0, 'is': 1.0, 'up': 1.0, 'togeter': 1.0, 'put': 1.0, 'but': 1.0, 'when': 1.0, 'young': 1.0, 'for': 1.0, 'wish': 1.0, 'small': 2.0, 'baby': 1.0, 'crib': 1.0, 'little': 1.0, 'easy': 2.0, 'bigger': 1.0, 'great': 2.0, 'it': 2.0, 'nice': 1.0, 'and': 2.0, 'away': 1.0, 'to': 1.0, 'rolls': 1.0, 'was': 1.0, 'a': 1.0}
Word element => {'they': 1.0, 'much': 1.0, 'feels': 1.0, 'my': 1.0, 'kick': 1.0, 'size': 1.0, 'and': 1.0, 'great': 1.0, 'works': 1.0, 'well': 1.0, 'safer': 1.0, 'crib': 1.0, 'had': 1.0, 'wish': 1.0, 'when': 1.0, 'i': 1.0, 'this': 2.0, 'instead': 1.0, 'around': 1.0, 'wooden': 1.0, 'of': 1.0}
Word element => {'rooms': 1.0, 'rv': 1.0, 'for': 1.0, 'perfect': 1.0, 's': 2.0, 'the': 2.0, 'smaller': 1.0, 'that': 1.0, 'only': 1.0, 'and': 2.0, 'is': 1.0, 'on': 1.0, 'market': 1.0, 'great': 1.0, 'works': 1.0, 'it': 2.0, 'can': 1.0, 'this': 1.0, 'item': 2.0, 'fit': 1.0}
Word element => {'quick': 1.0, 'home': 1.0, 'baby': 1.0, 'shipping': 1.0, 'our': 1.0, 'when': 1.0, 'for': 1.0, 'using': 1.0, 'love': 2.0, 'are': 1.0, 'the': 1.0, 'this': 2.0, 'put': 1.0, 'together': 1.0, 'comes': 1.0, 'very': 1.0, 'easy': 2.0, 'first': 1.0, 'product': 2.0, 'to': 1.0, 'colors': 1.0, 'we': 1.0}
Word element => {'smell': 1.0, 'pillows': 1.0, 'when': 1.0, 'especially': 1.0, 'bothersome': 1.0, 'megillah': 1.0, 'does': 1.0, 'whole': 1.0, 'about': 1.0, 'could': 1.0, 's': 3.0, 'clean': 3.0, 'tofu': 1.0, 'out': 2.0, 'magnet': 1.0, 'as': 1.0, 'crannies': 1.0, 'are': 2.0, 'reviewers': 1.0, 'terrible': 4.0, 'totally': 1.0, 'because': 1.0, 'that': 2.0, 'you': 1.0, 'smells': 1.0, 'way': 1.0, 'wash': 1.0, 'pieces': 1.0, 'to': 6.0, 'high': 2.0, 'padding': 2.0, 'fish': 1.0, 'seating': 1.0, 'how': 1.0, 'for': 2.0, 'fit': 1.0, 'counterintuitive': 1.0, 'sure': 1.0, 'easy': 1.0, 'but': 1.0, 'work': 1.0, 'process': 1.0, 'astronaut': 1.0, 'their': 1.0, 'elaborate': 1.0, 'a': 4.0, 'unnecessary': 1.0, 'this': 3.0, 'bits': 1.0, 'and': 3.0, 'tall': 1.0, 'the': 10.0, 'of': 1.0, 'pad': 1.0, 'etc': 1.0, 'literally': 1.0, 'in': 2.0, 'complex': 1.0, 'dishwasher': 1.0, 'it': 4.0, 'chair': 2.0, 'awful': 1.0, 'shills': 1.0, 'crumbs': 1.0, 'poorly': 1.0, 'not': 3.0, 'impossible': 2.0, 'those': 1.0, 'do': 1.0, 'buy': 1.0, 'laud': 1.0, 'so': 1.0, 'disregard': 2.0, 'take': 1.0, 'reviews': 1.0, 'into': 2.0, 'designed': 1.0, 'talk': 1.0, 'tray': 2.0, 'graco': 1.0, 'company': 1.0, 'too': 1.0, 'ones': 1.0, 'regular': 1.0, 'who': 1.0, 'is': 7.0, 'at': 1.0, 'back': 1.0, 'your': 1.0, 'she': 1.0, 'baby': 1.0, 'stinks': 1.0, 'an': 1.0, 'food': 1.0, 'need': 1.0, 'sink': 1.0, 'which': 1.0, 'pillowy': 1.0, 'luxury': 1.0, 'nooks': 1.0, 'dinner': 1.0}
Word element => {'in': 1.0, 'secure': 1.0, 'way': 1.0, 'so': 1.0, 'just': 1.0, 'them': 1.0, 'prevent': 1.0, 'locks': 1.0, 'have': 1.0, 'they': 3.0, 'for': 1.0, 'use': 1.0, 'd': 1.0, 'easily': 1.0, 'you': 1.0, 'what': 1.0, 'plastic': 1.0, 'friction': 1.0, 'low': 1.0, 'made': 1.0, 'are': 1.0, 'not': 1.0, 'having': 1.0, 'room': 1.0, 'carry': 1.0, 'rolling': 1.0, 'hand': 1.0, 'position': 1.0, 'biggest': 1.0, 'own': 1.0, 'do': 1.0, 'its': 2.0, 'roll': 1.0, 'lower': 2.0, 'as': 2.0, 'tallest': 1.0, 'to': 8.0, 'seat': 2.0, 'sliding': 1.0, 'able': 1.0, 'similar': 1.0, 'across': 1.0, 'and': 1.0, 'raising': 1.0, 'being': 1.0, 'solidly': 1.0, 'slide': 1.0, 'from': 2.0, 'while': 2.0, 'this': 1.0, 'it': 4.0, 'on': 1.0, 'is': 3.0, 'that': 4.0, 'convenient': 1.0, 'with': 1.0, 'drawback': 1.0, 'of': 1.0, 'takes': 1.0, 'still': 1.0, 'fold': 1.0, 'there': 2.0, 'chair': 2.0, 'virtually': 1.0, 'area': 1.0, 'folds': 1.0, 's': 1.0, 'a': 5.0, 'stand': 1.0, 'down': 1.0, 'upright': 1.0, 'unfold': 1.0, 'built': 1.0, 'compactly': 1.0, 'no': 2.0, 'two': 1.0, 'extended': 1.0, 'aspect': 1.0, 'particularly': 1.0, 'can': 2.0, 'rollers': 1.0, 'be': 2.0, 'handed': 1.0, 'tray': 1.0, 'one': 2.0, 'raise': 1.0, 'casters': 1.0, 'without': 1.0, 'the': 7.0, 'hands': 1.0, 'or': 3.0, 'foot': 1.0, 'legs': 1.0, 'operated': 1.0, 'done': 1.0}
Word element => {'t': 2.0, 'folded': 1.0, 'will': 1.0, 'i': 3.0, 'tell': 1.0, 'anyone': 1.0, 'click': 1.0, 'can': 3.0, 'this': 2.0, 'it': 4.0, 'and': 1.0, 'me': 1.0, 'get': 1.0, 'now': 1.0, 'to': 2.0, 'chair': 1.0, 'stay': 2.0, 'open': 1.0, 'however': 1.0, 'again': 1.0, 'won': 1.0, 'up': 2.0, 'fold': 1.0, 'down': 1.0}
Word element => {'highchair': 1.0, 'line': 1.0, 'a': 4.0, 't': 3.0, 'easy': 1.0, 'it': 6.0, 'remove': 1.0, 'use': 2.0, 'then': 1.0, 'long': 1.0, 'etc': 1.0, 'well': 2.0, 'i': 11.0, '10m': 1.0, 'clean': 2.0, 'as': 3.0, 'double': 1.0, 'easiest': 1.0, 'cover': 1.0, 'the': 5.0, 'which': 1.0, 'like': 2.0, 'house': 3.0, 'both': 1.0, 'unfold': 1.0, 'over': 1.0, 'child': 1.0, 'up': 1.0, 'chair': 2.0, 'glad': 1.0, 'girl': 1.0, 'little': 1.0, 'very': 1.0, 'agonized': 1.0, 'to': 4.0, 'high': 3.0, 'this': 2.0, 'chairs': 1.0, 'looked': 1.0, 'matter': 1.0, 'for': 4.0, 'one': 4.0, 'tray': 1.0, 'is': 4.0, 'at': 1.0, 'dollar': 1.0, 'climb': 1.0, 'ordered': 1.0, 'didn': 1.0, 'realized': 1.0, 'really': 1.0, 'and': 2.0, 'because': 2.0, 'that': 3.0, 'case': 1.0, 'can': 3.0, 'but': 1.0, 'hide': 1.0, 'with': 3.0, 'wouldn': 1.0, 'secure': 1.0, 'hand': 2.0, 'straps': 1.0, 'if': 1.0, 'your': 2.0, 'stuff': 1.0, 'has': 1.0, 'next': 1.0, 'tries': 1.0, 'mine': 1.0, 'never': 1.0, 'only': 1.0, 'its': 1.0, 'match': 1.0, 'much': 1.0, 'need': 1.0, 'not': 1.0, 'my': 3.0, 'me': 1.0, 'have': 1.0, 'blends': 1.0, 'big': 1.0, 'bottom': 1.0, 'fold': 1.0, 'issue': 1.0, 'gender': 1.0, 'neutral': 1.0, 'm': 1.0, 'in': 2.0, 'would': 1.0, 'boy': 1.0, 'plus': 1.0, 'decent': 2.0, 'how': 1.0, 'about': 1.0, 'all': 1.0, 'other': 1.0, 'she': 1.0, 'deal': 1.0, 'many': 1.0, 'baby': 1.0}
Word element => {'family': 1.0, 'as': 1.0, 'eat': 1.0, 'us': 1.0, 'right': 1.0, 'safe': 1.0, 'clean': 1.0, 'the': 1.0, 'chair': 1.0, 'a': 1.0, 'maneuver': 1.0, 'heights': 1.0, 'my': 1.0, 'high': 1.0, 'her': 1.0, 'with': 1.0, 'it': 1.0, 'this': 1.0, 'is': 3.0, 'easy': 2.0, 'she': 1.0, 'recommend': 1.0, 'comfortable': 1.0, 'baby': 1.0, 'highly': 1.0, 'and': 2.0, 'to': 3.0, 'allows': 1.0, 'be': 1.0, 'different': 1.0}
Word element => {'baby': 1.0, 'use': 1.0, 'feed': 1.0, 'comfortably': 1.0, 'sit': 1.0, 'its': 1.0, 'big': 1.0, 'not': 1.0, 'good': 2.0, 'kid': 1.0, 'done': 1.0, 'themselves': 1.0, 'eat': 1.0, 'twins': 1.0, 'yourself': 1.0, 'someone': 2.0, 'has': 1.0, 'them': 1.0, 'feeding': 4.0, 'while': 3.0, 'real': 1.0, 'you': 3.0, 'push': 1.0, 'place': 1.0, 'hard': 1.0, 'work': 1.0, 'over': 1.0, 'despite': 1.0, 'certain': 1.0, 'also': 2.0, 'really': 1.0, 't': 1.0, 'don': 1.0, 'chair': 3.0, 'who': 1.0, 'regular': 1.0, 'will': 1.0, 'with': 1.0, 'buying': 1.0, 'move': 4.0, 'washing': 1.0, 'back': 1.0, 'locking': 1.0, 'dining': 1.0, 'around': 2.0, 'completely': 1.0, 'debating': 1.0, 'issue': 2.0, 'traffic': 1.0, 'wipe': 1.0, 'as': 2.0, 'any': 1.0, 'other': 2.0, 'all': 2.0, 'cover': 1.0, 'off': 2.0, 'growth': 1.0, 'folded': 1.0, 'very': 2.0, 'strap': 1.0, 'boys': 1.0, 'are': 9.0, 'sitting': 1.0, 'their': 2.0, 'my': 5.0, 'only': 1.0, 'purchase': 1.0, 'they': 2.0, 'for': 5.0, 'love': 1.0, 'pounds': 1.0, 'twin': 1.0, '1': 2.0, 'two': 1.0, 'well': 1.0, 'i': 11.0, '4': 3.0, 'purchased': 2.0, 'if': 2.0, 'still': 2.0, 'number': 1.0, 'old': 1.0, 'in': 4.0, 'perfect': 2.0, 'this': 5.0, 'kids': 4.0, 'both': 3.0, 'best': 1.0, 'price': 1.0, 'let': 1.0, 'years': 1.0, '14': 1.0, 'on': 3.0, 'accommodate': 1.0, '3': 1.0, 'get': 1.0, 'legs': 1.0, 'months': 1.0, 'happy': 1.0, 'one': 4.0, 'and': 10.0, 'similar': 1.0, 'moves': 2.0, 'the': 19.0, 'of': 3.0, 'perfectly': 1.0, 'there': 1.0, 'comes': 1.0, 'these': 4.0, 'room': 1.0, 'before': 1.0, 'chairs': 7.0, 'was': 1.0, 'need': 1.0, 'or': 1.0, 'better': 1.0, 'hook': 1.0, 'else': 1.0, 'overwhelming': 1.0, 'height': 1.0, 'prefer': 1.0, 'so': 2.0, 'can': 4.0, 'but': 1.0, 'it': 6.0, 'clean': 1.0, 'window': 2.0, 'be': 2.0, 'looking': 1.0, 'out': 1.0, 'is': 7.0, 'at': 1.0, 'space': 2.0, 'am': 2.0, 'eating': 1.0, 'like': 2.0, 'table': 2.0, 'up': 1.0, 'less': 1.0, 'takes': 1.0, 'part': 1.0, 'easily': 4.0, 'because': 3.0, 'that': 5.0, 'a': 5.0, 'easy': 1.0, 'bit': 1.0, 'bjorns': 1.0, 'due': 1.0, 'against': 1.0, 'to': 8.0, 'high': 1.0, 'graco': 1.0, 'by': 3.0}
Word element => {'attached': 1.0, 'without': 1.0, 'closer': 1.0, 'or': 1.0, 'table': 2.0, 'booster': 1.0, 'ready': 1.0, 'end': 1.0, 'them': 1.0, 'on': 1.0, 'randomly': 1.0, 'either': 1.0, 'would': 1.0, 'buttons': 1.0, 'release': 1.0, 'side': 1.0, 'where': 1.0, 'eventually': 2.0, 'my': 5.0, 'fact': 1.0, 'space': 1.0, 'adjust': 1.0, 'sometimes': 2.0, 'handed': 1.0, 'hands': 1.0, 'does': 1.0, 'sit': 1.0, 'when': 2.0, 'very': 1.0, 'figure': 3.0, 'wall': 1.0, 'and': 6.0, 'two': 1.0, 'i': 8.0, 'in': 2.0, 'for': 3.0, 'highchair': 3.0, 'able': 3.0, 'taking': 1.0, 'second': 1.0, 'too': 1.0, 'one': 1.0, 'after': 1.0, 'tray': 4.0, 'loved': 1.0, 'purchased': 1.0, 'out': 6.0, 'wasn': 1.0, 'child': 1.0, 'up': 3.0, 'don': 1.0, 'we': 1.0, 'then': 1.0, 'take': 1.0, 'came': 1.0, 'easily': 1.0, 'that': 3.0, 'but': 3.0, 'this': 1.0, 'recline': 1.0, 'it': 10.0, 'fold': 1.0, 'decided': 1.0, 'used': 1.0, 'fridge': 1.0, 'between': 1.0, 'she': 2.0, 'folds': 1.0, 'get': 1.0, 'so': 2.0, 'found': 1.0, 'easy': 2.0, 'bit': 1.0, 'to': 13.0, 'how': 2.0, 'our': 1.0, 'all': 1.0, 'vacuum': 1.0, 'was': 7.0, 'great': 1.0, 'house': 1.0, 'cover': 2.0, 'off': 3.0, 'contempo': 1.0, 'clean': 1.0, 'small': 2.0, 'a': 3.0, 'fit': 1.0, 't': 2.0, 's': 1.0, 'once': 1.0, 'popping': 1.0, 'the': 17.0, 'of': 1.0, 'lysol': 1.0, 'figured': 1.0, 'are': 1.0, 'first': 1.0, 'bad': 1.0, 'just': 2.0, 'pull': 3.0, 'crumbs': 1.0, 'daughter': 1.0, 'crevices': 1.0, 'really': 1.0, 'some': 1.0, 'from': 1.0, 'wiped': 1.0, 'unfold': 2.0, 'down': 1.0, 'with': 2.0, 'wipe': 1.0, 'height': 1.0, 'only': 1.0, 'fault': 2.0, 'took': 1.0, 'even': 1.0, 'think': 1.0, 'at': 2.0, 'is': 2.0}
Word element => {'another': 1.0, 'room': 1.0, 'from': 1.0, 'move': 1.0, 'to': 2.0, 'easy': 1.0, 'recommend': 1.0, 'would': 1.0, 'one': 1.0, 'i': 1.0, 'it': 1.0, 'am': 1.0, 'highly': 1.0, 'very': 1.0, 'and': 1.0, 'nice': 1.0, 'chair': 1.0, 'loves': 1.0, 'this': 1.0, 'babie': 1.0, 'enjoying': 1.0, 'too': 1.0, 'addie': 1.0}
Word element => {'buying': 1.0, 'of': 2.0, 'or': 1.0, 'after': 1.0, 'so': 1.0, 'cover': 2.0, 'such': 1.0, 'to': 4.0, 'clean': 2.0, 'pain': 2.0, 'this': 2.0, 'first': 1.0, 'month': 1.0, 'remove': 1.0, 'it': 2.0, 'looks': 1.0, 'chair': 2.0, 'nice': 1.0, 'which': 1.0, 'and': 5.0, 'done': 1.0, 'use': 1.0, '80': 1.0, 'but': 1.0, 'back': 1.0, 's': 1.0, 'a': 3.0, 'could': 1.0, 'not': 2.0, 'stand': 1.0, 'by': 1.0, 'just': 1.0, 'i': 2.0, 'saved': 1.0, 'removing': 1.0, 'the': 3.0, 'place': 1.0, 'wash': 1.0, 'in': 1.0, 'placing': 1.0, 'booster': 1.0, 'decided': 1.0, 'get': 1.0, 'easy': 1.0, 'should': 1.0, 'have': 1.0, 'bulky': 1.0, 'about': 1.0, 'bucks': 1.0}
Word element => {'no': 1.0, 'date': 1.0, 'professional': 1.0, 'problems': 1.0, 'very': 1.0, 'chair': 1.0, 'recommend': 1.0, 'highly': 1.0, 'i': 1.0, 'able': 1.0, 'child': 1.0, 'excellent': 1.0, 'received': 1.0, 'company': 1.0, 'in': 1.0, 'time': 1.0, 'condition': 1.0, 'on': 1.0, 'is': 2.0, 'to': 2.0, 'now': 1.0, 'was': 2.0, 'item': 1.0, 'enjoy': 1.0, 'highchair': 1.0, 'a': 1.0, 'gift': 1.0, 'truly': 1.0, 'graco': 1.0, 'new': 1.0, 'top': 1.0, 'of': 1.0, 'line': 1.0, 'the': 4.0, 'mother': 1.0, 'so': 1.0, 'this': 2.0, 'it': 1.0, 'excited': 1.0, 'and': 3.0}
Word element => {'grows': 1.0, 'as': 1.0, 'to': 1.0, 'of': 1.0, 'chair': 1.0, 'favorite': 1.0, 'adjust': 1.0, 'time': 1.0, 'is': 1.0, 'on': 1.0, 'great': 1.0, 'the': 2.0, 'part': 1.0, 'keeping': 1.0, 'required': 1.0, 'no': 1.0, 'assembly': 1.0, 'an': 1.0, 'when': 1.0, 'you': 1.0, 'since': 1.0, 'a': 1.0, 'high': 1.0, 'my': 1.0, 're': 1.0, 'eye': 1.0, 'essence': 1.0, 'easy': 1.0, 'crawling': 1.0, 'baby': 2.0}
Word element => {'same': 1.0, 'seems': 1.0, 'grandson': 1.0, 'neat': 1.0, 'fold': 1.0, 'handle': 1.0, 'was': 1.0, 'stands': 1.0, 'the': 5.0, 'it': 4.0, 'this': 1.0, 'with': 1.0, 'is': 3.0, 'tray': 1.0, 't': 1.0, 'a': 1.0, 'and': 6.0, 'very': 5.0, 'high': 1.0, 'way': 1.0, 'sit': 1.0, 'feel': 1.0, 'comfortable': 1.0, 'nice': 3.0, 'adjustable': 1.0, 'anything': 1.0, 'chair': 2.0, 'itself': 2.0, 'in': 1.0, 'like': 1.0, 'cannot': 1.0, 'by': 1.0, 'be': 1.0, 'unfolds': 1.0, 'can': 1.0, 'stored': 1.0, 'easily': 1.0, 'i': 3.0, 'how': 1.0, 'easy': 2.0, 'folds': 1.0, 'wheels': 1.0, 'impressed': 1.0, 'portable': 1.0, 'make': 1.0, 'our': 1.0, 'to': 2.0, 'seat': 1.0, 'height': 1.0, 'about': 1.0, 'up': 2.0, 'don': 1.0, 'find': 1.0, 'babies': 1.0, 'that': 1.0}
Word element => {'bill': 1.0, 'this': 1.0, 'around': 1.0, 'the': 2.0, 'all': 1.0, 'functional': 1.0, 'to': 1.0, 'easy': 1.0, 'just': 1.0, 'wheel': 1.0, 'way': 2.0, 'light': 1.0, 'slides': 1.0, 'and': 2.0, 'locks': 1.0, 'every': 1.0, 'fits': 1.0, 'clean': 1.0, 'off': 1.0, 'dont': 1.0, 'perfect': 1.0, 'in': 1.0, 'easily': 1.0, 'need': 1.0, 'anything': 1.0, 'tray': 1.0, 'is': 1.0, 'fancy': 1.0, 'something': 1.0, 'that': 1.0}
Word element => {'in': 1.0, 's': 1.0, 'when': 1.0, 'dangle': 1.0, 'legs': 1.0, 'olds': 1.0, 'month': 1.0, 'clean': 1.0, 'stars': 1.0, 'i': 2.0, 'does': 1.0, 'is': 1.0, 'product': 1.0, 'to': 1.0, 'he': 1.0, 'it': 2.0, 'with': 1.0, 'this': 1.0, 'have': 1.0, 'my': 1.0, 'happy': 1.0, 'because': 1.0, 'not': 2.0, 'easy': 1.0, 'don': 1.0, 'like': 1.0, 'how': 1.0, '2': 1.0, 't': 1.0, 'the': 1.0, 'footrest': 1.0, '9': 1.0, 'move': 1.0}
Word element => {'so': 1.0, 'else': 1.0, 'like': 1.0, 'clean': 1.0, 'good': 1.0, 'am': 1.0, 'someone': 1.0, 'kitchen': 1.0, 'way': 1.0, 'seemed': 1.0, 'small': 1.0, 'purchase': 1.0, 'my': 4.0, 'researched': 1.0, 'compact': 1.0, 'easy': 2.0, 'get': 1.0, 'bet': 1.0, 'and': 3.0, 'couldn': 1.0, 'squirmy': 1.0, 'do': 1.0, 'highchairs': 1.0, 'that': 1.0, 'although': 1.0, 'easier': 1.0, 'this': 3.0, 'moving': 1.0, 'with': 3.0, 'it': 4.0, 'possible': 1.0, 'fold': 2.0, 'up': 1.0, 'of': 2.0, 'i': 5.0, 'one': 1.0, 'highchair': 2.0, 'out': 1.0, 'a': 2.0, 's': 2.0, 't': 1.0, 'is': 2.0, 'more': 1.0, 'be': 1.0, 'unfold': 1.0, 'pleased': 2.0, 'as': 2.0, 'to': 2.0, 'can': 1.0, 'while': 1.0, 'holding': 2.0, 'tired': 1.0, 'baby': 2.0}
Word element => {'cleanup': 1.0, 'top': 1.0, 'how': 1.0, 'tray': 1.0, 'quality': 1.0, 'clean': 1.0, 'i': 2.0, 'for': 2.0, 'the': 1.0, 'my': 1.0, 'would': 1.0, 'granddaughter': 1.0, 'it': 1.0, 'love': 1.0, 'recommend': 1.0, 'removes': 1.0, 'good': 1.0, 'perfect': 1.0, 'easy': 2.0, 'to': 1.0}
Word element => {'really': 1.0, 'look': 1.0, 'colors': 1.0, 'in': 2.0, 'compactly': 1.0, 'very': 1.0, 'folds': 1.0, 'positive': 1.0, 'was': 1.0, 'frustrating': 1.0, 'home': 1.0, 'ingest': 1.0, 'daughter': 1.0, 'variety': 1.0, 'worried': 1.0, 'm': 1.0, 'some': 1.0, 'marks': 1.0, 'are': 1.0, 'now': 1.0, 'leaves': 1.0, 'be': 1.0, 'stupid': 1.0, 'behind': 1.0, 'the': 5.0, 'nice': 1.0, 'mention': 1.0, 'scratch': 1.0, 'great': 1.0, 'not': 3.0, 'and': 3.0, 'perfectly': 1.0, 'huge': 1.0, 'tray': 2.0, 'comes': 1.0, 'is': 5.0, 'could': 1.0, 't': 1.0, 'a': 2.0, 'since': 1.0, 'it': 2.0, 'remove': 1.0, 'so': 2.0, 'no': 1.0, 'about': 1.0, 'sticky': 2.0, 'removed': 1.0, 'our': 1.0, 'to': 3.0, 'any': 1.0, 'high': 1.0, 'my': 2.0, 'there': 4.0, 'chair': 1.0, 'of': 1.0, 'necessary': 1.0, 'sticker': 2.0, 'packaging': 1.0, 'i': 3.0, 'this': 3.0, 'eating': 1.0, 'on': 2.0, 'except': 1.0, 'try': 1.0, 'residue': 2.0, 'totally': 1.0, 'that': 3.0, 'covering': 2.0, 'want': 1.0, 'everything': 1.0, 'if': 1.0, 'didn': 1.0, 'use': 1.0, 'harsh': 1.0, 'chemicals': 1.0, 'required': 1.0, 'still': 1.0, 'difficult': 1.0, 'scrubbed': 1.0, 'assembly': 1.0, 'child': 1.0, 'will': 1.0, 'forever': 1.0, 'off': 1.0}
Word element => {'lol': 1.0, 'away': 1.0, 'making': 1.0, 'from': 2.0, 'flying': 1.0, 'keeps': 1.0, 'wide': 1.0, 'stationary': 1.0, 'confused': 1.0, 'were': 1.0, 'wheels': 1.0, 'those': 1.0, 'extremely': 1.0, 'cleans': 1.0, 'area': 1.0, 'easy': 1.0, 'folds': 1.0, 'made': 1.0, 'up': 2.0, 'child': 1.0, 'wash': 1.0, 'in': 1.0, 'dishwasher': 2.0, 'to': 4.0, 'was': 3.0, 'too': 1.0, 'and': 2.0, 'perfectly': 1.0, 'tray': 2.0, 'around': 1.0, 'is': 1.0, 'does': 1.0, 'for': 1.0, 'love': 2.0, 'eating': 1.0, 'administer': 1.0, 'relucant': 1.0, 'fits': 1.0, 'my': 1.0, 'the': 8.0, 'piece': 1.0, 'about': 1.0, 'food': 1.0, 'most': 1.0, 'removable': 2.0, 'first': 1.0, 'useless': 1.0, 'it': 4.0, 'personally': 1.0, 'are': 1.0, 'smoother': 1.0, 'there': 1.0, 'lo': 1.0, 'chair': 3.0, 'back': 1.0, 'top': 2.0, 'at': 1.0, 'roll': 1.0, 'some': 2.0, 'a': 3.0, 'bit': 1.0, 'much': 1.0, 'which': 1.0, 'had': 1.0, 'what': 1.0, 'thought': 1.0, 'that': 2.0, 'i': 4.0, 'feature': 1.0, 'far': 1.0, 'curious': 1.0, 'reclining': 1.0, 'until': 1.0, 'this': 2.0, 'recline': 1.0, 'medication': 1.0}
Word element => {'down': 1.0, 'far': 1.0, 'since': 1.0, 'catcher': 1.0, 'takes': 1.0, 'up': 1.0, 'of': 1.0, 'with': 1.0, 'meals': 1.0, 'dining': 1.0, 'pulling': 1.0, 'for': 2.0, 'height': 1.0, 'move': 1.0, 'chair': 1.0, 'room': 1.0, 'so': 1.0, 'bit': 1.0, 'around': 1.0, 'is': 4.0, 'one': 1.0, 'tray': 2.0, 'really': 1.0, 'light': 1.0, 'the': 7.0, 'hand': 1.0, 'table': 1.0, 'very': 1.0, 'and': 1.0, 'easy': 2.0, 'get': 1.0, 'this': 1.0, 'perfect': 1.0, 'as': 1.0, 'to': 5.0, 'purpose': 1.0, 't': 2.0, 'a': 3.0, 'scrubbing': 2.0, 'off': 1.0, 'crumb': 1.0, 'footrest': 1.0, 'fabric': 1.0, 'food': 1.0, 'but': 1.0, 'doesn': 2.0, 'seem': 1.0, 'hurt': 1.0, 'it': 3.0, 'remove': 1.0, 'serve': 1.0, 'except': 1.0}
Word element => {'mashinewashable': 1.0, 'is': 1.0, 'fact': 1.0, 'the': 1.0, 'my': 1.0, 'that': 1.0, 'comfortable': 1.0, 'love': 2.0, 'this': 1.0, '6months': 1.0, 'chair': 1.0, 'easy': 2.0, 'old': 1.0, 'to': 1.0, 'baby': 1.0, 'clean': 1.0, 'ti': 1.0, 'fold': 1.0, 'tray': 1.0, 'very': 1.0, 'highly': 1.0, 'for': 1.0, 'recccommend': 1.0}
Word element => {'recomend': 1.0, 'would': 1.0, 'clean': 1.0, 'easy': 1.0, 'straps': 1.0, 'harness': 1.0, 'again': 1.0, 'buy': 1.0, 'box': 1.0, 'the': 1.0, 'reclines': 1.0, 'great': 2.0, 'assembled': 1.0, 'completely': 1.0, 'go': 1.0, 'away': 1.0, 'and': 1.0, 'folds': 1.0, 'nicely': 1.0, 'ready': 1.0, 'to': 3.0, 'anyone': 1.0, 'out': 1.0}
Word element => {'chair': 1.0, 'highly': 1.0, 'also': 1.0, 's': 1.0, 'clean': 1.0, 'recommend': 1.0, 'compact': 1.0, 'easy': 3.0, 'close': 1.0, 'messy': 1.0, 'is': 3.0, 'people': 1.0, 'months': 2.0, '3': 1.0, 'we': 1.0, 'when': 1.0, 'i': 3.0, 'very': 1.0, 'open': 1.0, 'son': 1.0, 'love': 1.0, 'for': 1.0, 'have': 1.0, 'my': 1.0, 'travel': 1.0, 'bought': 1.0, 'now': 1.0, 'turned': 1.0, 'to': 4.0, 'used': 1.0, 'eating': 2.0, 'with': 2.0, 'he': 2.0, 'this': 3.0, 'first': 1.0, 'it': 3.0, 'highchair': 1.0, 'him': 1.0, 'just': 1.0, 'sitting': 1.0, 'higher': 1.0, 'and': 5.0, '6': 1.0, 'up': 1.0}
Word element => {'this': 1.0, 'recommend': 1.0, 'overall': 1.0, 'space': 1.0, 'living': 1.0, 'limited': 1.0, 'getting': 1.0, 'product': 1.0, 'for': 1.0, 'high': 1.0, 'of': 1.0, 'side': 1.0, 'gray': 1.0, 'pressing': 1.0, 'chair': 2.0, 'on': 2.0, '3': 1.0, 'with': 1.0, 'starts': 1.0, 'gets': 1.0, 'either': 1.0, 'had': 1.0, 'nicely': 1.0, 'pros': 1.0, 'is': 3.0, 'storing': 1.0, 'some': 1.0, 'when': 1.0, 'easily': 1.0, 'plastic': 1.0, 'it': 2.0, 'wiped': 1.0, 'nice': 1.0, '1': 1.0, 'the': 8.0, 'i': 1.0, 'feature': 1.0, 'two': 1.0, 'texture': 1.0, 'top': 1.0, 'doors': 1.0, 'to': 2.0, 'seat': 1.0, 'folds': 1.0, 'easy': 1.0, 'be': 2.0, 'clean': 2.0, 'fabric': 1.0, 'play': 1.0, 'and': 2.0, 'clicks': 1.0, 'through': 1.0, 'buttons': 1.0, 'curious': 1.0, 'small': 1.0, 'have': 1.0, 'waterproof': 1.0, 'very': 1.0, 'layers': 1.0, 'little': 2.0, 'tray': 2.0, 'one': 4.0, 'or': 2.0, 'can': 2.0, '2': 1.0, 'removable': 1.0, 'removed': 1.0, 'tired': 1.0, 'baby': 1.0, 'totally': 1.0, 'that': 1.0, 'in': 2.0, 'part': 1.0, 'even': 1.0, 'by': 2.0, 'less': 1.0, 'than': 1.0, 'his': 1.0, 'year': 1.0, 'old': 1.0, 'a': 2.0, 'we': 1.0, 'unfortunate': 1.0, 'spills': 1.0}
Word element => {'two': 1.0, 'purchase': 1.0, 'i': 1.0, 'my': 1.0, 'little': 1.0, 'because': 1.0, 'daughter': 1.0, 'highchair': 1.0, 'along': 1.0, 'is': 2.0, 'it': 1.0, 'this': 1.0, 'with': 1.0, 'highchairs': 1.0, 'their': 1.0, 'our': 2.0, 'twins': 1.0, 'so': 1.0, 'husband': 1.0, 'to': 2.0, 'home': 1.0, 'easy': 1.0, 'store': 1.0, 'being': 1.0, 'and': 2.0, 'decided': 1.0, 'open': 1.0, 'very': 1.0, 'for': 3.0, 'using': 1.0, 'comfortable': 1.0, 'ones': 1.0, 'the': 1.0}
Word element => {'chairs': 1.0, 'most': 1.0, 'is': 1.0, 'underneath': 1.0, 'chair': 2.0, 'stripes': 1.0, 'from': 1.0, '4': 1.0, 'guess': 1.0, 'putting': 1.0, 'i': 2.0, 'are': 1.0, 'himi': 1.0, 'the': 5.0, 'since': 1.0, 'when': 1.0, 'gave': 1.0, 'it': 2.0, 'in': 3.0, 'comfortartbly': 1.0, 'strips': 1.0, 'not': 1.0, 'stars': 1.0, 'arranged': 1.0, 'baby': 1.0, 'always': 1.0, 'have': 1.0, 'to': 1.0, 'move': 1.0}
Word element => {'next': 1.0, 'to': 1.0, 'room': 1.0, 'from': 1.0, 'moving': 1.0, 'easy': 1.0, 'are': 1.0, 'living': 1.0, 'or': 1.0, 'feature': 1.0, 'a': 1.0, 'space': 1.0, 'grandma': 1.0, 'one': 1.0, 'for': 2.0, 'chair': 1.0, 's': 1.0, 'the': 2.0, 'great': 1.0, 'feels': 1.0, 'added': 1.0, 'sturdy': 1.0, 'small': 1.0, 'folds': 1.0, 'and': 1.0, 'easily': 1.0, 'high': 1.0, 'casters': 1.0, 'house': 1.0, 'an': 1.0}
Word element => {'s': 1.0, 'that': 1.0, 'other': 1.0, 'hand': 1.0, 'one': 1.0, 'operate': 1.0, 'to': 1.0, 'hard': 1.0, 'than': 1.0, 'plastic': 1.0, 'great': 1.0, 'it': 1.0, 'issue': 1.0, 'release': 1.0, 'with': 1.0, 'is': 2.0, 'my': 1.0, 'the': 1.0, 'only': 1.0, 'and': 1.0, 'tray': 1.0, 'stiff': 1.0, 'really': 1.0}
Word element => {'when': 1.0, 'on': 1.0, 'securely': 1.0, 'doesnt': 1.0, 'take': 1.0, 'to': 1.0, 'out': 2.0, 'you': 2.0, 'time': 1.0, 'every': 1.0, 'off': 1.0, 'falls': 1.0, 'tray': 1.0, 'is': 1.0, 'complaint': 1.0, 'are': 1.0, 'the': 2.0, 'for': 1.0, 'that': 1.0, 'experience': 1.0, 'match': 1.0, 'well': 1.0, 'a': 2.0, 'stay': 1.0, 'chair': 2.0, 'grandson': 1.0, 'of': 1.0, 'baby': 1.0, 'lovely': 1.0, 'wooden': 1.0, 'colors': 1.0, 'house': 1.0, 'i': 1.0, 'bad': 1.0, 'kept': 1.0, 'after': 1.0, 'extend': 1.0, 'only': 1.0, 'this': 1.0, 'it': 4.0, 'with': 1.0, 'pull': 1.0, 'my': 3.0, 'high': 1.0}
Word element => {'which': 1.0, 'back': 1.0, 'house': 1.0, 'well': 1.0, 'on': 2.0, 'is': 3.0, 'but': 1.0, 'removable': 1.0, 'the': 2.0, 'a': 4.0, 't': 1.0, 'we': 2.0, 'no': 1.0, 'option': 2.0, 'at': 1.0, 'tray': 1.0, 'bought': 1.0, 'that': 1.0, 'their': 1.0, 'and': 2.0, 'pain': 1.0, 'recline': 1.0, 'this': 1.0, 'first': 1.0, 'it': 3.0, 'highchair': 1.0, 'for': 1.0, 'parents': 1.0, 'any': 1.0, 'our': 1.0, 'to': 1.0, 'must': 1.0, 'have': 2.0, 'rolls': 1.0, 'don': 1.0, 'child': 1.0, 'also': 2.0, 'great': 1.0, 'nice': 1.0, 'use': 1.0, 'much': 1.0, 'carpet': 1.0, 'my': 1.0, 'different': 1.0, 'brand': 1.0, 'does': 1.0, 'not': 1.0, 'regrets': 1.0, 'roll': 1.0}
Word element => {'everyone': 1.0, 'anyone': 1.0, 'recommend': 1.0, 'well': 1.0, 'saver': 1.0, 'use': 1.0, 'also': 1.0, 'wha': 1.0, 'gets': 1.0, 'would': 1.0, 'each': 1.0, 'after': 1.0, 'down': 1.0, 'sink': 1.0, 'take': 1.0, 'off': 1.0, 'cover': 1.0, 'detachable': 1.0, 'the': 3.0, 'clean': 2.0, 'easy': 1.0, 'so': 3.0, 'as': 2.0, 'to': 6.0, 'wanted': 1.0, 'spray': 1.0, 'led': 1.0, 'that': 3.0, 'spoon': 1.0, 'knew': 1.0, 'space': 1.0, 'lot': 1.0, 'no': 1.0, 'sponge': 1.0, 'of': 1.0, 'feeding': 1.0, 'little': 1.0, 'give': 2.0, 'did': 1.0, 'brushed': 1.0, 'looking': 1.0, 'and': 4.0, 'which': 1.0, 'whatever': 1.0, 'love': 2.0, 'for': 1.0, 'highchair': 2.0, 'because': 1.0, 'tray': 1.0, 'one': 1.0, 'huge': 1.0, 'on': 1.0, 'make': 1.0, 'your': 1.0, 'means': 1.0, 'they': 2.0, 'you': 3.0, 'baby': 1.0, 'them': 2.0, 'itself': 1.0, 'regular': 2.0, 'around': 1.0, 'is': 1.0, 'can': 1.0, 'la': 1.0, 'food': 1.0, 'do': 1.0, 'town': 1.0, 's': 1.0, 'a': 6.0, 'we': 5.0, 'weaning': 1.0, 'go': 1.0, 'with': 3.0, 'purees': 1.0, 'it': 5.0, 'this': 2.0, 'meal': 1.0, 'just': 1.0, 'by': 1.0, 'chair': 2.0, 'mean': 1.0, 'i': 3.0, 'mess': 1.0}
Word element => {'of': 1.0, 'detachable': 1.0, 'the': 2.0, 'love': 2.0, 'it': 1.0, 'clean': 1.0, 'was': 1.0, 'all': 1.0, 'easy': 1.0, 'details': 1.0, 'to': 1.0, 'assemble': 1.0, 'tray': 1.0, 'very': 1.0, 'and': 2.0, 'item': 1.0, 'this': 2.0, 'fit': 1.0}
Word element => {'they': 1.0, 'how': 1.0, 'store': 1.0, 'overall': 2.0, 'nice': 1.0, 'feel': 1.0, 'try': 1.0, 'perform': 1.0, 'other': 1.0, 'than': 1.0, 'on': 1.0, 'tray': 1.0, 'the': 2.0, 'and': 1.0, 'get': 1.0, 'harder': 1.0, 'to': 2.0, 'it': 1.0, 'before': 1.0, 'does': 1.0, 'buy': 1.0, 'i': 1.0, 'chairs': 1.0, 'job': 1.0, 'for': 1.0, 'you': 2.0, 'others': 1.0, 'would': 1.0, 'at': 1.0, 'them': 1.0, 'out': 1.0, 'see': 1.0, 'local': 1.0, 'a': 1.0}
Word element => {'flooring': 1.0, 'have': 1.0, 't': 1.0, 'doesn': 1.0, 'floor': 1.0, 'slide': 1.0, 'i': 2.0, 'when': 1.0, 'plank': 1.0, 'felt': 1.0, 'love': 1.0, 'it': 3.0, 'scratch': 1.0, 'acoss': 1.0, 'legs': 1.0, 'just': 1.0, 'vinyl': 1.0, 'had': 1.0, 'on': 1.0, 'to': 1.0, 'put': 1.0, 'back': 1.0, 'so': 1.0}
Word element => {'boy': 1.0, 'kitchen': 1.0, 'rough': 1.0, 'turned': 1.0, 'back': 1.0, 'with': 1.0, 'new': 1.0, 'his': 1.0, 'chair': 1.0, 'very': 1.0, 'son': 1.0, 'tumble': 1.0, '4': 1.0, 'i': 1.0, 'old': 1.0, 'base': 1.0, 'month': 1.0, 'for': 1.0, 'love': 1.0, 'harness': 1.0, 'him': 1.0, 'high': 1.0, 'my': 3.0, 'the': 3.0, 'safety': 1.0, 'seems': 1.0, 'in': 2.0, 'sturdy': 1.0, 'feel': 1.0, 'safe': 1.0, 'at': 1.0, 'and': 3.0, 'ease': 1.0, 'loves': 1.0, 'leaving': 1.0, 'there': 1.0}
Word element => {'dishwasher': 1.0, 'go': 1.0, 'parts': 1.0, 'very': 1.0, 'where': 1.0, 'got': 1.0, 'clean': 1.0, 'was': 1.0, 'son': 1.0, 'first': 1.0, 'price': 1.0, 'any': 1.0, 'as': 2.0, 'our': 3.0, 'table': 1.0, 'like': 3.0, 'since': 1.0, 'nice': 1.0, 'big': 1.0, 'use': 1.0, 'of': 2.0, 'the': 14.0, 'place': 1.0, 'money': 1.0, 'removable': 1.0, 'but': 2.0, 's': 2.0, 'a': 6.0, 'we': 4.0, 't': 2.0, 'going': 1.0, 'kitchen': 1.0, 'other': 1.0, 'able': 1.0, 'score': 1.0, 'am': 1.0, 'while': 1.0, 'play': 1.0, 'and': 7.0, 'can': 4.0, 'so': 4.0, 'bit': 1.0, 'chair': 4.0, 'there': 1.0, 'fisher': 1.0, 'really': 1.0, 'just': 2.0, 'toys': 1.0, 'started': 1.0, 'that': 6.0, 'into': 1.0, 'month': 1.0, 'without': 1.0, 'remove': 1.0, 'washing': 1.0, 'with': 1.0, 'mind': 1.0, 'few': 1.0, 'this': 3.0, 'pain': 2.0, 'food': 2.0, 'need': 1.0, 'feature': 1.0, 'i': 11.0, 'putting': 1.0, 'it': 6.0, 'recline': 2.0, 'him': 2.0, 'clipped': 1.0, 'be': 1.0, 'six': 1.0, 'until': 1.0, 'see': 1.0, 've': 2.0, 'seat': 2.0, 'in': 4.0, 'fabric': 1.0, 'for': 4.0, 'to': 7.0, 'high': 2.0, 'feedings': 1.0, 'booster': 2.0, 'didn': 1.0, 'spending': 1.0, 'on': 2.0, 'put': 2.0, 'sit': 2.0, 'roll': 1.0, 'old': 1.0, 'living': 1.0, 'only': 1.0, 'room': 1.0, 'every': 1.0, 'if': 1.0, 'minutes': 1.0, 'kind': 1.0, 'pop': 1.0, 'out': 3.0, 'tray': 5.0, 'at': 1.0, 'is': 4.0, 'completely': 1.0, 'move': 1.0, 'don': 1.0, 'had': 2.0, 'wipeable': 1.0, 'top': 1.0, 'far': 2.0, 'he': 1.0, 'love': 1.0, 'bottom': 1.0, 'bulky': 1.0, 'than': 1.0}
Word element => {'a': 1.0, 'though': 1.0, 'of': 1.0, 'take': 1.0, 'i': 1.0, 'time': 1.0, 'every': 1.0, 'good': 1.0, 'off': 1.0, 'didn': 1.0, 't': 1.0, 'the': 2.0, 'and': 2.0, 'easily': 1.0, 'put': 1.0, 'it': 3.0, 'this': 1.0, 'chair': 3.0, 'nice': 1.0, 'loving': 1.0, 'fall': 1.0, 'we': 1.0, 'is': 2.0, 'adjusts': 1.0, 'son': 1.0, 'overall': 1.0, 'are': 1.0, 'my': 1.0, 'comfortable': 1.0, 'for': 1.0, 'strap': 1.0, 'easy': 1.0, 'to': 1.0, 'be': 1.0, 'out': 1.0, 'covers': 1.0, 'clean': 1.0, 'together': 1.0, 'him': 1.0, 'would': 1.0, 'if': 1.0}
Word element => {'in': 1.0, 'fit': 1.0, 'big': 1.0, 'you': 1.0, 'there': 1.0, 'using': 1.0, 'were': 1.0, 'works': 1.0, 'it': 2.0, 'place': 1.0, 'to': 1.0, 'wish': 2.0, 'clean': 1.0, 'a': 1.0, 'well': 1.0, 'easy': 1.0, 'doesn': 1.0, 'put': 1.0, 'dishwasher': 1.0, 'could': 1.0, 'wasn': 1.0, 'tray': 2.0, 'and': 1.0, 'if': 1.0, 'not': 1.0, 'the': 3.0, 't': 2.0, 'so': 1.0}
Word element => {'legs': 1.0, 'right': 1.0, 'left': 1.0, 'partition': 1.0, 'made': 1.0, 'should': 1.0, 'between': 1.0, 'they': 1.0, 'of': 1.0, 'amount': 1.0, 'loving': 1.0, 'peace': 1.0, 'chair': 1.0, 'who': 1.0, 'toys': 1.0, 'high': 1.0, 'with': 1.0, 'for': 1.0, 'in': 1.0, 'also': 1.0, 'bit': 1.0, 'boy': 1.0, 'time': 1.0, 'our': 1.0, 'it': 1.0, 'ot': 1.0, 'considerable': 1.0, 'sits': 1.0, 'the': 2.0, '10': 1.0, 'which': 1.0, 'son': 1.0, 'very': 1.0, 'is': 2.0, 'one': 1.0, 'months': 1.0, 'tray': 1.0, 'not': 2.0, 'just': 1.0, 'a': 2.0, 'old': 1.0, 'i': 1.0, 'exactly': 1.0, 'wide': 1.0, 'have': 2.0, 'this': 1.0, 'allows': 1.0, 'us': 1.0, 'and': 1.0, 'tough': 1.0, 'on': 1.0, 'put': 1.0, 'along': 1.0, 'food': 1.0, 'shorter': 1.0, 'assembly': 1.0, 'was': 1.0, 'complaint': 1.0}
Word element => {'seat': 1.0, 'booster': 1.0, 'the': 1.0, 'continue': 1.0, 'chair': 1.0, 'put': 1.0, 'high': 1.0, 'for': 1.0, 'love': 1.0, 'can': 1.0, 'baby': 1.0, 'easy': 3.0, 'to': 4.0, 'use': 2.0, 'sturdy': 1.0, 'of': 1.0, 'and': 1.0, 'best': 1.0, 'as': 1.0, 'it': 3.0, 'he': 1.0, 'grows': 1.0, 'together': 1.0, 'stable': 1.0, 'clean': 1.0, 'out': 1.0, 'i': 1.0}
Word element => {'eating': 1.0, 'while': 1.0, 'motor': 1.0, 'there': 1.0, 'refine': 1.0, 'how': 1.0, 'child': 1.0, 'your': 1.0, 'skills': 1.0, 'even': 1.0, 'island': 1.0, 'kitchen': 1.0, 'craft': 1.0, 'to': 2.0, 'center': 1.0, 'seat': 1.0, 'as': 1.0, 'use': 1.0, 'fine': 1.0, 'look': 1.0, 'cost': 2.0, 'would': 2.0, 'for': 2.0, 'highchair': 3.0, 'of': 1.0, 'suggest': 1.0, 'thought': 1.0, 'that': 1.0, 'worth': 1.0, 'still': 1.0, 'every': 1.0, 'if': 2.0, 'everything': 1.0, '400': 1.0, 'learn': 1.0, 'penny': 1.0, 'you': 1.0, 'best': 1.0, 'are': 1.0, 'place': 1.0, 'deal': 1.0, 'the': 3.0, 'great': 1.0, 'dollars': 1.0, 'i': 3.0, 'looking': 1.0, 'ever': 2.0, 'buy': 2.0, 'have': 1.0, 'used': 1.0, 'no': 1.0, 'further': 1.0, 'because': 1.0, 'this': 1.0, 'truly': 1.0, 'it': 5.0, '00': 1.0, 'is': 1.0, 'and': 3.0, 'we': 1.0, 's': 1.0, 'a': 5.0, 'might': 1.0, 'designers': 1.0, 'last': 1.0, 'few': 1.0, 'but': 1.0, 'will': 1.0, '5th': 1.0, 'be': 1.0}
Word element => {'some': 1.0, 'with': 1.0, 'hard': 1.0, 'catches': 1.0, 'locationthe': 1.0, 'its': 1.0, 'that': 1.0, 'because': 1.0, 'plier': 1.0, 'fingers': 1.0, 'really': 1.0, 'either': 1.0, 'requires': 1.0, 'which': 1.0, 'drythe': 1.0, 'washable': 1.0, 'itthe': 1.0, 'adjust': 1.0, 'baby': 1.0, 'kitchenthe': 1.0, 'a': 1.0, 'walker': 1.0, 'uses': 1.0, 'not': 3.0, 'those': 1.0, 'skinny': 1.0, 'little': 1.0, 'roll': 1.0, 'when': 3.0, 'times': 1.0, 'you': 5.0, 'chair': 5.0, 'removed': 1.0, 'purpose': 1.0, 'can': 3.0, 'but': 5.0, 'inner': 1.0, 'highchair': 1.0, 'for': 2.0, 'where': 1.0, 'removablethe': 1.0, 'be': 1.0, 'and': 4.0, 'offer': 1.0, 's': 2.0, 'as': 3.0, 'convenience': 1.0, 'only': 1.0, 'this': 1.0, 'already': 1.0, 'it': 10.0, 'recline': 1.0, 'babiesthe': 1.0, 'sticking': 1.0, 'could': 1.0, 'travel': 1.0, 'will': 1.0, 'your': 2.0, 'cracks': 1.0, 'remove': 3.0, 'slightly': 1.0, 'one': 2.0, 'tray': 4.0, 'hang': 1.0, 'serves': 1.0, 'to': 10.0, 'against': 1.0, 'height': 1.0, 'pros': 1.0, 'is': 6.0, 'adjustable': 1.0, 'raise': 1.0, 'up': 3.0, 'ammothe': 1.0, 'smaller': 1.0, 'wash': 1.0, 'child': 1.0, 'downthe': 1.0, 'attach': 2.0, 'cover': 3.0, 'throw': 1.0, 'foot': 2.0, 'has': 1.0, 'washablethe': 1.0, 'fit': 1.0, 'rest': 2.0, 'well': 1.0, 'aggravatingthe': 1.0, 'adjustablecons': 1.0, 'ds': 1.0, 'of': 2.0, 'the': 8.0, 'in': 5.0, 'around': 1.0, 'his': 2.0, 'dishwasher': 1.0, 'standard': 1.0, 'straps': 1.0, 'wants': 1.0, 'hand': 1.0, 'using': 1.0, 'table': 1.0, 'cannot': 1.0, 'if': 1.0, 'every': 1.0, 'mealno': 1.0, 'top': 1.0, 'then': 3.0, 'have': 1.0, 'rolls': 1.0, 'put': 1.0, 'floor': 2.0, 'need': 1.0, 'food': 3.0, 'or': 2.0, 'needs': 1.0, 'pick': 1.0, 'difficult': 1.0, 'position': 1.0, 'strap': 1.0, 'reposition': 1.0, 'brake': 1.0, 'my': 1.0, 'long': 1.0, 'on': 2.0, 'smashed': 1.0, 'face': 1.0, 'he': 2.0, 'yes': 1.0, 'tried': 1.0, 'several': 1.0, 'stand': 1.0, 'air': 1.0, 'now': 1.0}
Word element => {'munchkin': 1.0, 'nice': 1.0, 'but': 1.0, 'space': 1.0, 'buck': 1.0, 'bang': 1.0, 'decent': 1.0, 'kids': 1.0, 'non': 1.0, 'some': 1.0, 'wish': 1.0, 'design': 2.0, 'chair': 2.0, 'requirement': 1.0, 'dropped': 1.0, 'crevices': 1.0, 'definitely': 1.0, 'time': 1.0, 'single': 1.0, 'be': 2.0, 'could': 2.0, 'couldn': 1.0, 'sturdy': 1.0, 'they': 1.0, 'store': 1.0, 'sure': 1.0, 'harness': 1.0, 'pt': 1.0, '3': 1.0, 'though': 1.0, 'part': 1.0, 'use': 1.0, 'issue': 1.0, 'idiot': 1.0, 'not': 3.0, 'get': 1.0, 'before': 1.0, 'slips': 1.0, 'times': 1.0, 'place': 1.0, 'hold': 1.0, 'strap': 1.0, 'as': 1.0, 'high': 2.0, 'to': 10.0, 'your': 2.0, 'any': 1.0, 'show': 1.0, 'plastic': 1.0, 'darker': 1.0, 'bit': 1.0, 'so': 3.0, 'do': 1.0, 'much': 2.0, 'only': 2.0, 'room': 1.0, 'a': 6.0, 'of': 2.0, 'the': 10.0, 'on': 3.0, 'good': 1.0, 'plan': 1.0, 'is': 3.0, 'throw': 1.0, 'seems': 1.0, 'off': 2.0, 'cover': 1.0, 'folds': 1.0, 'baby': 2.0, 'wipe': 1.0, 'that': 4.0, 'product': 1.0, 'fabric': 1.0, 'for': 4.0, 'actually': 2.0, 'belt': 1.0, 't': 3.0, 'fit': 1.0, 'front': 1.0, 'still': 1.0, 'every': 1.0, 'if': 1.0, 'longevity': 1.0, 'dirt': 1.0, 'too': 1.0, 'food': 1.0, 'vinyl': 1.0, 'connect': 1.0, 'lots': 1.0, 'doesn': 2.0, 'buckled': 2.0, 'week': 1.0, 'it': 6.0, 'this': 2.0, 'separately': 1.0, 'pain': 1.0, 'wheels': 1.0, 'wipeable': 1.0, 'make': 2.0, 'area': 1.0, 'lap': 2.0, 'colored': 1.0, 'ever': 1.0, 'an': 2.0, 'easier': 1.0, 'comment': 1.0, 'table': 1.0, 've': 2.0, 'i': 5.0, 'type': 1.0, 'pros': 1.0, 'take': 2.0, 'buckle': 1.0, 're': 1.0, 'come': 1.0, 'handy': 1.0, 'storage': 1.0, 'm': 1.0, 'seat': 1.0, 'in': 5.0, 'around': 3.0, 'dishwasher': 1.0, 'most': 1.0, 'back': 2.0, 'cannot': 2.0, 'removeable': 1.0, 'very': 2.0, 'keep': 1.0, 'overall': 1.0, 'insert': 2.0, 'bibs': 1.0, 'up': 2.0, 'rags': 1.0, 'used': 1.0, 'move': 1.0, 'therecons': 1.0, 'about': 1.0, 'hour': 1.0, 'wiggly': 1.0, 'assemble': 1.0, 'way': 1.0, 'something': 1.0, 'straps': 2.0, 'big': 1.0, 'contact': 1.0, 'fidgeting': 1.0, 'with': 2.0, 'tray': 3.0, 'unless': 1.0, 'smarter': 1.0, 'buckling': 1.0, 'you': 4.0, 'load': 1.0, 'why': 1.0, 'just': 2.0, 'first': 1.0, 'are': 1.0, 'and': 6.0, 'tedious': 1.0, 'while': 2.0, 'running': 1.0, 'have': 2.0, 'shoulder': 2.0}
Word element => {'disappointments': 1.0, 'great': 1.0, 'use': 1.0, 'easier': 1.0, 'wipe': 1.0, 'far': 1.0, 'then': 1.0, 'took': 1.0, 'be': 1.0, 'goo': 1.0, 'some': 1.0, 'yes': 1.0, 'so': 1.0, 'time': 1.0, 'knows': 1.0, 'cause': 1.0, 'her': 1.0, 'strap': 1.0, 'old': 1.0, '6': 1.0, 'eating': 1.0, 'when': 2.0, 'my': 1.0, 'neat': 1.0, 'residue': 1.0, 'try': 1.0, 'care': 1.0, 'kitchen': 1.0, 'designs': 1.0, 'amount': 1.0, 'down': 1.0, 'doesn': 1.0, 'consumes': 1.0, 'month': 1.0, 'she': 2.0, 'it': 5.0, 'wet': 1.0, 'thrilled': 1.0, 'this': 3.0, 'with': 2.0, 'at': 1.0, 'space': 1.0, 'gone': 1.0, 'no': 2.0, 'sticker': 2.0, 'of': 4.0, 'takes': 1.0, 'anyway': 1.0, 'up': 2.0, 'the': 6.0, 'is': 1.0, 'more': 1.0, 'buy': 1.0, 'ease': 1.0, 'stay': 1.0, 'me': 1.0, 'and': 4.0, 'very': 1.0, 'open': 1.0, 'any': 1.0, 'all': 1.0, 'to': 2.0, 'as': 2.0, 'none': 1.0, 'small': 1.0, 'have': 1.0, 't': 1.0, 's': 3.0, 'we': 2.0, 'a': 4.0, 'for': 1.0, 'highchair': 1.0, 'max': 1.0, 'does': 1.0, 'than': 1.0, 'on': 2.0, '3': 1.0, 'dishwasher': 1.0, 'in': 2.0, 'mess': 1.0, 'i': 2.0, 'food': 2.0, 'but': 2.0, 'can': 1.0, 'huge': 1.0, 'fuss': 1.0, 'one': 1.0, 'width': 1.0, 'hand': 1.0, 'been': 1.0, 'cleaning': 1.0, 'pad': 1.0, 'folding': 1.0, 'spit': 1.0}
Word element => {'save': 1.0, 'space': 1.0, 'no': 1.0, 'sturdy': 1.0, 'months': 1.0, 'about': 1.0, 'also': 1.0, 's': 1.0, '2': 1.0, 'is': 1.0, 'with': 1.0, 'it': 3.0, 'for': 1.0, 'to': 1.0, 'had': 1.0, 'i': 1.0, 'when': 1.0, 'have': 1.0, 'we': 1.0, 'issues': 1.0, 'light': 1.0, 'and': 1.0, 'fully': 1.0, 'stands': 1.0, 'own': 1.0, 'collapsed': 1.0}
Word element => {'took': 1.0, 'mom': 1.0, 'because': 1.0, 'helps': 1.0, 'review': 1.0, 'go': 1.0, 'wanted': 1.0, 'year': 1.0, 'big': 1.0, 'am': 1.0, 'consumers': 1.0, 'enough': 1.0, 'telling': 1.0, 'refund': 1.0, 'give': 1.0, 'return': 2.0, 'pay': 1.0, 'situatuion': 1.0, 'almost': 2.0, 'out': 2.0, 'people': 1.0, 'customer': 2.0, 'tho': 1.0, 'spoke': 1.0, 'amazon': 2.0, 'more': 2.0, 'left': 1.0, 'touch': 1.0, 'well': 1.0, 'intention': 1.0, 'line': 1.0, 'backing': 1.0, 'bottom': 1.0, 'stain': 1.0, 'quickly': 1.0, 'cleaning': 1.0, 'fix': 1.0, 'later': 1.0, 'minutes': 1.0, '10': 1.0, 'leaked': 1.0, 'over': 1.0, 'valve': 1.0, 'flow': 1.0, 'discovered': 1.0, 'trainer': 1.0, 'use': 2.0, 'trapped': 1.0, 'cups': 1.0, 'food': 1.0, 'from': 1.0, 'who': 2.0, 'parent': 1.0, 'angry': 2.0, 'uses': 1.0, 'couldn': 1.0, 'heartbroken': 1.0, 'seat': 1.0, 'didnt': 1.0, 'see': 1.0, 'seen': 1.0, 'covers': 1.0, 'junk': 1.0, 'missed': 1.0, 'returns': 1.0, 'when': 3.0, 'thanks': 1.0, 'bleach': 1.0, 'down': 1.0, 'treat': 2.0, 'house': 1.0, 'keep': 1.0, 'person': 2.0, 'thinks': 1.0, 'stuck': 1.0, 'squeezed': 1.0, 'guessed': 1.0, 'between': 1.0, 'crotch': 2.0, 'where': 1.0, 'kidding': 1.0, 'silver': 1.0, 'name': 1.0, 'hole': 2.0, 'square': 1.0, 'stand': 1.0, 'bar': 2.0, 'would': 3.0, 'there': 5.0, 'edge': 1.0, 'mail': 1.0, 'post': 1.0, 'plastic': 1.0, 'coated': 1.0, 'cardboard': 2.0, 'they': 5.0, 'sure': 1.0, 'sorting': 1.0, 'loved': 2.0, 'spoon': 1.0, 'don': 1.0, 'wonder': 1.0, 'abuse': 1.0, 'super': 2.0, 'still': 1.0, 'full': 1.0, 'help': 1.0, 'damp': 1.0, 'other': 3.0, 'an': 1.0, 'while': 2.0, 'or': 3.0, 'feature': 2.0, 'drink': 1.0, 'me': 4.0, 'call': 1.0, 'saw': 1.0, 'all': 2.0, 'way': 5.0, 'returning': 1.0, 'huge': 2.0, 'be': 5.0, 'it': 25.0, 'recline': 1.0, 'starting': 1.0, 'thought': 1.0, 'used': 3.0, 'wil': 1.0, 'decided': 1.0, 'friendly': 1.0, '6': 1.0, 'imagine': 1.0, 'tipped': 1.0, 'waited': 1.0, 'water': 2.0, 'feeding': 1.0, 'long': 1.0, 'although': 1.0, 'think': 1.0, 'preemie': 1.0, 'high': 2.0, 'right': 1.0, 'to': 34.0, 'feed': 2.0, 'about': 5.0, 'awesome': 1.0, 'amazing': 1.0, 'fed': 1.0, 'was': 9.0, 'outnumbered': 1.0, 'learn': 1.0, 'graco': 4.0, 'soft': 1.0, 'office': 1.0, 'babies': 5.0, 'o': 1.0, 'that': 11.0, 'design': 2.0, 'important': 1.0, 'unsnap': 1.0, 'this': 9.0, 'days': 1.0, 'bottle': 1.0, 'few': 1.0, 'usability': 1.0, 'ease': 1.0, 'save': 1.0, 'nasty': 3.0, 'know': 2.0, 'than': 2.0, 'removed': 1.0, 'hides': 1.0, 'bit': 1.0, 'my': 2.0, 'are': 10.0, 'first': 1.0, 'old': 1.0, 'covered': 1.0, 'of': 12.0, 'so': 5.0, 'in': 3.0, 'company': 1.0, 'fabric': 2.0, 'were': 5.0, 'size': 1.0, 'solids': 1.0, 'neat': 1.0, 'squeeze': 1.0, 'the': 48.0, 'experience': 1.0, 'liner': 6.0, 'child': 1.0, 'peice': 1.0, 'price': 1.0, 'time': 1.0, 'kind': 1.0, 'did': 1.0, 'really': 2.0, 'please': 2.0, 'could': 4.0, 't': 5.0, 'a': 26.0, 'bad': 1.0, 'we': 10.0, '15': 1.0, 'take': 3.0, 'only': 2.0, 'legs': 1.0, 'then': 4.0, 'i': 40.0, 'instead': 1.0, 'coming': 1.0, 'adheres': 1.0, '4': 3.0, '3': 2.0, 'catch': 2.0, 'on': 7.0, 'got': 2.0, 'absolutely': 2.0, 'one': 3.0, 'user': 1.0, 'lot': 2.0, 'happy': 1.0, 'months': 3.0, 'read': 1.0, 'around': 1.0, 'each': 1.0, 'fisherprice': 2.0, 'being': 1.0, 'met': 1.0, 'w': 1.0, 'research': 1.0, 'explained': 1.0, 'these': 1.0, 'find': 1.0, 'why': 1.0, 'very': 2.0, 'knew': 1.0, 'booster': 2.0, 'collapse': 2.0, 'what': 3.0, 'sealed': 1.0, 'features': 1.0, 'soap': 1.0, 'everywhere': 1.0, 'start': 2.0, 'shipping': 1.0, 'get': 3.0, 'able': 1.0, 'you': 10.0, 'need': 1.0, 'also': 2.0, 'chair': 8.0, 'if': 5.0, 'great': 3.0, 'polices': 1.0, 'until': 2.0, 'off': 4.0, 'seemed': 1.0, 'any': 2.0, 'cup': 1.0, 'expectations': 1.0, 'tell': 3.0, '1': 3.0, 'how': 1.0, 'washed': 1.0, 'squishy': 1.0, 'at': 3.0, 'can': 5.0, 'is': 14.0, 'family': 1.0, 'for': 12.0, 'purchase': 2.0, 'twins': 2.0, 'idiotic': 1.0, 'actually': 1.0, 'us': 3.0, '2x': 1.0, 'fold': 1.0, 'teh': 2.0, 'flaw': 2.0, 'love': 2.0, 'tray': 1.0, 'by': 2.0, 'after': 2.0, 'had': 6.0, 'towel': 1.0, 'with': 5.0, 'virtually': 1.0, 'looking': 1.0, 'service': 1.0, 'wipe': 4.0, 'clean': 4.0, 'forward': 1.0, 'not': 7.0, 'anymore': 1.0, 'problem': 1.0, 'now': 2.0, 'self': 1.0, 'messy': 1.0, 'going': 2.0, 'cloth': 1.0, '2': 1.0, 'leave': 1.0, 'attached': 1.0, 'space': 1.0, 'always': 2.0, 'dish': 1.0, 'their': 3.0, 'want': 1.0, 'hands': 1.0, 'hope': 1.0, 'seem': 1.0, 'onto': 1.0, 'our': 8.0, 'kudos': 1.0, 'before': 1.0, 'stuff': 1.0, 'and': 32.0, 'warm': 1.0, 'just': 2.0, 'dollar': 1.0, 'trying': 2.0, 'next': 1.0, 'extra': 2.0, 'again': 1.0, 'which': 2.0, 'someone': 1.0, 'good': 1.0, '5x': 1.0, 'since': 6.0, 'day': 4.0, 'seats': 1.0, 'both': 1.0, 'needed': 2.0, 'reclined': 2.0, 'wash': 6.0, 'has': 1.0, 'anyway': 1.0, 'tired': 1.0, 'mold': 1.0, 'doesn': 1.0, 'm': 3.0, 's': 2.0, 'pain': 1.0, 'will': 1.0, 'unbeknownst': 1.0, 'cover': 9.0, 'completely': 1.0, 'wipable': 1.0, 'but': 3.0, 'up': 3.0, 'washing': 1.0, 'week': 1.0, 'bins': 1.0, 'didn': 1.0, 'spot': 2.0, 'totally': 1.0, 'them': 3.0, 'everything': 3.0, 'kids': 1.0, 'else': 1.0, 'either': 1.0, 'do': 3.0, 'much': 1.0, 'put': 1.0, 'laundry': 1.0, 'etc': 2.0, 'highchairs': 2.0, '34': 4.0, 'no': 4.0, 'reading': 1.0, 'll': 1.0, 'have': 4.0, 'shoudl': 1.0, 'things': 1.0, 'fast': 1.0, 'myself': 1.0, 'buying': 1.0, 'current': 1.0, 'chairs': 1.0, 'under': 2.0, 'pad': 1.0, 'bananas': 1.0, 'taken': 1.0}
Word element => {'be': 1.0, 'buy': 1.0, 'easy': 1.0, 'are': 1.0, 'couldn': 1.0, 'and': 1.0, 'clean': 1.0, 'covers': 1.0, 'kid': 1.0, 'removable': 2.0, 'price': 1.0, 't': 1.0, 'the': 1.0, 'my': 1.0, 'a': 2.0, 'cover': 1.0, 'sitting': 1.0, 'in': 1.0, 'moderate': 1.0, 'needs': 1.0, 'all': 2.0, 'meets': 1.0, 'tray': 1.0, 'is': 1.0, 'two': 1.0, 'at': 1.0, 'with': 1.0, 'this': 1.0, 'it': 2.0, 'love': 1.0, 'so': 1.0, 'loves': 1.0, 'good': 2.0, 'that': 2.0, 'happier': 1.0, 'to': 1.0, 'comes': 1.0}
Word element => {'off': 1.0, 'rips': 1.0, 'and': 1.0, 'grabs': 1.0, 'just': 1.0, 'table': 2.0, 'though': 1.0, 'in': 1.0, 'fitment': 1.0, 'even': 1.0, 'our': 1.0, 'pretty': 1.0, 'it': 2.0, 'right': 1.0, 'can': 1.0, 'way': 1.0, 's': 1.0, 'of': 1.0, 'photo': 1.0, 'too': 1.0, 'useless': 1.0, 'is': 1.0, 'the': 3.0, 'big': 1.0, 'range': 1.0, 'i': 1.0, 'post': 1.0, 'a': 1.0, 'baby': 1.0}
Word element => {'returned': 1.0, 'immediately': 1.0, 'totally': 1.0, 'is': 1.0, 'standard': 1.0, 'meets': 1.0, '150': 1.0, 'which': 1.0, 'for': 1.0, 'table': 1.0, 'and': 1.0, 'coffee': 1.0, 'rectangular': 1.0, 'the': 3.0, 'my': 1.0, 'description': 1.0, 'specifications': 1.0, 'it': 2.0, 'this': 1.0, 'product': 1.0, 'falling': 1.0, 'per': 1.0, 'sides': 1.0, 'was': 1.0, 'off': 1.0}
Word element => {'adult': 1.0, 'supervision': 1.0, 'to': 1.0, 'a': 1.0, 'be': 1.0, 'product': 1.0, 'and': 1.0, 'stage': 1.0, 'pulling': 1.0, 'state': 1.0, 'mobile': 1.0, 'table': 1.0, 'on': 1.0, 'substituted': 1.0, 'is': 5.0, 'range': 1.0, 'best': 1.0, 'furniture': 1.0, 'agree': 1.0, 'lower': 1.0, 'not': 3.0, 'deterrent': 1.0, 'only': 1.0, 'it': 4.0, 'does': 1.0, 'works': 1.0, 'the': 8.0, 'great': 1.0, 'i': 1.0, 'edge': 1.0, 'up': 1.0, 'fairly': 1.0, 'of': 1.0, 'proper': 1.0, 'protecting': 1.0, 'but': 1.0, 'for': 2.0, 'in': 1.0, 'also': 1.0, 'if': 2.0, 'better': 1.0, 'baby': 1.0}
Word element => {'stupid': 1.0, 'basement': 1.0, 'up': 1.0, 'ended': 1.0, 'right': 1.0, 'stitches': 1.0, '3': 1.0, 'when': 1.0, 'my': 1.0, 'our': 1.0, 'between': 1.0, 'however': 1.0, 'the': 2.0, 't': 1.0, 'son': 1.0, 'table': 2.0, 'prevent': 1.0, 'coffee': 1.0, 'to': 1.0, 'had': 1.0, 'eyes': 1.0, 'we': 2.0, 'tripped': 1.0, 'on': 1.0, 'over': 1.0, 'a': 2.0, 'down': 1.0, 'his': 1.0, 'soccer': 1.0, 'ball': 1.0, 'moving': 1.0, 'this': 1.0, 'it': 1.0, 'still': 1.0, 'didn': 1.0, 'cut': 1.0, 'requiring': 1.0}
Word element => {'since': 1.0, 'useful': 1.0, 'particularly': 1.0, 'been': 1.0, 'stayed': 1.0, 'also': 1.0, 'protect': 1.0, 'corner': 1.0, 'have': 1.0, 'small': 1.0, 'with': 1.0, 'came': 1.0, 'in': 1.0, 'still': 1.0, 'son': 1.0, 'my': 1.0, 're': 1.0, 'smaller': 1.0, 'sharp': 1.0, 'end': 1.0, 'these': 2.0, 'job': 1.0, 'place': 1.0, 'the': 4.0, 'and': 6.0, 'bumper': 1.0, 'bottom': 1.0, 'of': 2.0, 'stays': 1.0, 'great': 1.0, 'padded': 1.0, 'oversized': 1.0, 'two': 1.0, 'top': 1.0, 've': 1.0, 'they': 1.0, 'well': 1.0, 'has': 2.0, 'got': 1.0, 'for': 1.0, 'coffee': 2.0, 'which': 1.0, 'table': 3.0, 'an': 1.0, 'put': 1.0, 'on': 2.0, 'them': 1.0, 'many': 1.0, 'more': 1.0, 'is': 1.0, 'never': 1.0, 'corners': 1.0, 'large': 1.0, 'does': 1.0, 'than': 1.0, 'edges': 1.0, 'his': 1.0, 'times': 1.0, 'fallen': 1.0, 'hurt': 1.0, 'ego': 1.0, 'to': 1.0, 'pads': 1.0, 'our': 2.0, 'size': 1.0, 'while': 1.0, 'loose': 1.0, 'it': 2.0, 'we': 1.0, 's': 1.0, 'a': 1.0, 'very': 1.0, 'little': 1.0}
Word element => {'best': 1.0, 'son': 1.0, 'back': 1.0, 'away': 1.0, 'get': 1.0, 'total': 1.0, 'not': 1.0, 'well': 1.0, 'pain': 1.0, 'put': 1.0, 'on': 2.0, 'waste': 1.0, 'off': 1.0, 'gave': 1.0, 'it': 4.0, 'with': 1.0, 'did': 1.0, 'pulling': 1.0, 'my': 2.0, 'table': 2.0, 'all': 1.0, 'to': 2.0, 'was': 3.0, 'hoping': 1.0, 'right': 1.0, 'obsessed': 1.0, 'an': 1.0, 'friend': 1.0, 'would': 1.0, 'never': 1.0, 'her': 1.0, 'fit': 1.0, 'expensive': 1.0, 'have': 1.0, 'noticed': 1.0, 'win': 1.0, 'being': 1.0, 'use': 1.0, 'there': 1.0, 'of': 1.0, 'work': 1.0, 'can': 1.0, 'money': 1.0, 'oh': 1.0, 'you': 1.0, 'a': 1.0, 't': 1.0, 'them': 1.0}
Word element => {'this': 1.0, 'not': 1.0, 'do': 1.0, 'in': 1.0, 'accident': 1.0, 'my': 1.0, 'seater': 1.0, 'table': 2.0, 'as': 1.0, 'rectangular': 1.0, 'see': 1.0, 'a': 3.0, 'happen': 1.0, 'products': 1.0, 'i': 3.0, 'have': 2.0, 'glass': 2.0, 'that': 2.0, 'will': 1.0, 'work': 2.0, 'an': 1.0, 'to': 1.0, 'kitchen': 1.0, 'waiting': 1.0, 'spent': 1.0, 'amount': 1.0, 'ridiculous': 1.0, '4': 1.0, 'on': 2.0}
Word element => {'baby': 1.0, 'up': 1.0, 'and': 1.0, 'table': 1.0, 'around': 1.0, 'to': 1.0, 'loose': 1.0, 'either': 1.0, 'it': 2.0, 'large': 1.0, 's': 1.0, 'pull': 1.0, 'elastic': 1.0, 'shrink': 1.0, 'too': 1.0, 'uses': 1.0, 'or': 1.0, 'the': 1.0, 'wont': 1.0, 'himself': 1.0, 'hangs': 1.0}
Word element => {'now': 1.0, 'used': 1.0, 'being': 1.0, 'not': 1.0, 'sitting': 1.0, 'it': 2.0, 'doesn': 1.0, 'but': 1.0, 'fact': 1.0, 'itself': 1.0, 'that': 1.0, 'padding': 1.0, 'is': 1.0, 'my': 1.0, 'most': 1.0, 'in': 1.0, 'tables': 1.0, 'and': 1.0, 'has': 1.0, 'isn': 1.0, 't': 2.0, 'great': 1.0, 'the': 2.0, 'adjustable': 1.0, 'fit': 1.0, 'around': 1.0, 'closet': 1.0}
Word element => {'range': 1.0, '180': 1.0, 'if': 1.0, 'unusable': 1.0, '100': 1.0, 'when': 1.0, 'please': 1.0, 'definitions': 1.0, 'different': 1.0, 'take': 1.0, 'people': 1.0, 'many': 1.0, 'sides': 1.0, 'long': 1.0, '160': 1.0, 'off': 1.0, 'that': 1.0, 'loose': 4.0, 'with': 1.0, 'measurement': 1.0, 'end': 1.0, 'lower': 1.0, 'not': 2.0, 'does': 1.0, 'but': 1.0, 'work': 2.0, 'really': 1.0, 'word': 1.0, 'any': 1.0, 'to': 1.0, 'will': 1.0, 'item': 1.0, 'in': 2.0, 'recommend': 1.0, 'was': 2.0, 'had': 2.0, 'hung': 1.0, 'now': 1.0, 'square': 1.0, 'safety': 1.0, 'it': 11.0, 'i': 7.0, 'too': 1.0, 'and': 6.0, 'edges': 1.0, '34': 8.0, 'of': 4.0, 'up': 1.0, 'protector': 3.0, 'the': 11.0, 'must': 1.0, 'have': 2.0, 'small': 2.0, 'simply': 1.0, 'so': 2.0, 'rated': 2.0, 'strongly': 1.0, 'perfect': 1.0, 'this': 3.0, '30': 1.0, 'medium': 2.0, 'great': 1.0, 'pulled': 1.0, 'know': 1.0, 'table': 7.0, 'version': 1.0, '1st': 1.0, 'product': 1.0, 'for': 5.0, 'fit': 2.0, 'edge': 1.0, 'larger': 1.0, 'large': 1.0, '146': 2.0, 'your': 1.0, 'on': 1.0, 'put': 1.0, 'attic': 1.0, 'bought': 1.0, '141': 1.0, 'system': 1.0, 'size': 1.0, 'a': 3.0, 's': 2.0, 'complete': 1.0, 'way': 3.0, 'say': 1.0, 'around': 1.0, 'is': 3.0, 'tightly': 1.0, 'tight': 1.0, 'my': 2.0}
Word element => {'like': 1.0, 'buy': 1.0, 'activity': 1.0, 'type': 1.0, 'sitting': 1.0, 'but': 1.0, 'comfortable': 1.0, 'sit': 1.0, 'cons': 1.0, 'likely': 1.0, 'will': 1.0, 'so': 1.0, 'quality': 1.0, 'good': 1.0, 'velcro': 2.0, 'take': 1.0, 'size': 3.0, 'isn': 2.0, 'right': 1.0, 'wear': 1.0, 'soreness': 1.0, 'you': 1.0, 'when': 1.0, 'off': 1.0, 'build': 1.0, 'it': 5.0, 'belly': 1.0, 'i': 5.0, 'bought': 2.0, 'during': 1.0, 'and': 5.0, 'have': 1.0, 'm': 2.0, 'd': 2.0, 'this': 2.0, 'wish': 1.0, 'in': 4.0, 'something': 1.0, 'super': 1.0, 'soooo': 1.0, 'easy': 1.0, 'pregnancy': 2.0, 'the': 6.0, 'out': 1.0, 'feet': 1.0, 'third': 2.0, 'medium': 1.0, 'not': 1.0, 'me': 1.0, 'trimester': 1.0, 'of': 2.0, 'worked': 1.0, 'for': 2.0, 'my': 3.0, 'select': 1.0, 'upsie': 1.0, 't': 2.0, 'a': 1.0, 's': 2.0, 'abdomen': 1.0, 'guidelines': 1.0, 'first': 1.0, 'pros': 1.0, 'really': 2.0, 'to': 3.0, 'is': 1.0, 'reduces': 1.0, 'average': 1.0, 'used': 1.0, 'muscle': 1.0, 'lower': 1.0, 'back': 1.0, 'put': 1.0, 'tightness': 1.0, 'on': 2.0}
Word element => {'recommend': 1.0, 'perfectly': 1.0, 'medium': 1.0, 'weeks': 1.0, 'weigh': 1.0, '150lbs': 1.0, 'now': 1.0, 'wearing': 2.0, 'gluteus': 1.0, 'bit': 1.0, 'so': 1.0, 'less': 2.0, 'live': 1.0, 'weight': 1.0, 'ton': 1.0, '34': 1.0, 'has': 1.0, 'related': 1.0, 'items': 1.0, 'muscles': 1.0, 'think': 1.0, 'that': 2.0, 'ligament': 1.0, 'discomfort': 2.0, 'abdominal': 1.0, 'also': 1.0, 'seems': 1.0, 've': 1.0, 'having': 1.0, 'fair': 1.0, 'lower': 1.0, 'had': 1.0, 'against': 1.0, 'to': 1.0, 'was': 1.0, 'highly': 1.0, 'this': 4.0, 'since': 1.0, 'could': 1.0, 'walks': 1.0, 'take': 1.0, 'we': 1.0, 's': 2.0, 'belt': 2.0, 't': 1.0, 'i': 7.0, 'at': 2.0, 'is': 2.0, 'natural': 1.0, 'of': 3.0, 'the': 3.0, 'longer': 1.0, 'it': 5.0, 'truly': 1.0, 'supports': 1.0, 'about': 1.0, 'back': 1.0, 'top': 1.0, 'fits': 1.0, 'helped': 1.0, 'and': 6.0, '130lbs': 1.0, 'me': 1.0, 'my': 2.0, 'growing': 1.0, 'material': 1.0, 'belly': 1.0, 'comfortable': 1.0, 'even': 1.0, 'bare': 1.0, 'not': 1.0, 'skin': 1.0, 'started': 1.0, 'week': 1.0, '28': 1.0, '5': 2.0, 'one': 1.0, 'pregnancy': 2.0, 'performance': 1.0, 'cannot': 1.0, 'sleeping': 1.0, 'do': 1.0, 'its': 1.0, 'a': 4.0, 'small': 1.0, 'wedge': 1.0, 'have': 1.0, 'pillow': 1.0, '32': 1.0, 'for': 2.0, 'noticed': 1.0, 'hasn': 1.0, 'velcro': 1.0, 'pre': 1.0, 'without': 2.0, 'soft': 1.0, 'slightly': 1.0, 'sticky': 1.0, 'lately': 1.0, 'but': 1.0, 'far': 1.0, 'affected': 1.0, 'am': 1.0, 'reference': 1.0, 'smooth': 1.0, 'allows': 1.0, 'with': 1.0}
Word element => {'relief': 1.0, 'immediate': 1.0, 'provides': 1.0, 'am': 1.0, 'like': 1.0, 'your': 1.0, 'on': 1.0, 'pain': 1.0, 'sciatic': 1.0, 'or': 2.0, 'low': 1.0, 'carrying': 1.0, 'are': 3.0, 'you': 1.0, 'if': 1.0, 'be': 1.0, 'weeks': 1.0, '30': 1.0, 'sooner': 1.0, 'this': 2.0, 'til': 1.0, 'buy': 1.0, 'i': 3.0, 'genius': 1.0, 'didn': 1.0, 'discomfort': 1.0, 'having': 1.0, 'perfect': 1.0, 'pop': 1.0, '5': 2.0, 'large': 1.0, 'day': 1.0, 'why': 1.0, 'all': 1.0, 'pregnant': 1.0, '185lbs': 1.0, 'these': 1.0, 't': 1.0, 'the': 2.0, 'and': 1.0, 'perfectly': 1.0, 'fit': 1.0, 'should': 1.0, 'feet': 1.0, 'size': 1.0}
Word element => {'for': 1.0, 'plenty': 1.0, 'adjustment': 1.0, 'there': 1.0, 'now': 1.0, 'ordered': 1.0, '34': 1.0, 'room': 1.0, '5': 1.0, 'lbs': 1.0, '11': 1.0, 'am': 1.0, 'but': 1.0, 'much': 1.0, 'spending': 1.0, 'abdominal': 1.0, 'right': 2.0, 'belly': 1.0, 'about': 2.0, 'leery': 1.0, 'on': 2.0, 'pain': 2.0, 'this': 3.0, 'with': 1.0, 'band': 1.0, 'it': 4.0, 'fits': 1.0, 'my': 2.0, '2nd': 1.0, 'experiancing': 1.0, 'and': 6.0, 'couldn': 1.0, 'pregnancy': 1.0, 'get': 1.0, 'support': 2.0, 'lower': 1.0, 'large': 1.0, 'just': 1.0, 'i': 6.0, 'doesn': 1.0, 'was': 2.0, 'to': 1.0, 'a': 3.0, 't': 2.0, 'is': 5.0, 'more': 1.0, 'the': 2.0, 'chart': 1.0, 'be': 1.0, 'pleased': 1.0, 'growing': 1.0, 'exactly': 1.0, 'what': 1.0, '180': 1.0, 'amount': 1.0, 'back': 1.0, 'needed': 1.0, 'hot': 1.0, 'little': 1.0, 'very': 1.0, 'breathable': 1.0, 'provides': 1.0, 'of': 2.0, 'sizing': 1.0}
Word element => {'worth': 1.0, 'compares': 1.0, 'else': 1.0, 'nothing': 1.0, 'around': 1.0, 'shopping': 1.0, 'are': 1.0, 'you': 1.0, 'every': 1.0, 'if': 1.0, 'line': 1.0, 'feature': 1.0, 'this': 2.0, 'will': 1.0, 'am': 1.0, 'penny': 1.0, 'ice': 1.0, 'bottom': 1.0, 'yet': 1.0, 'large': 2.0, 'been': 1.0, 'accurate': 1.0, 'size': 2.0, 'found': 1.0, 'undetected': 1.0, 'worn': 1.0, 'nice': 1.0, 'skinny': 1.0, 'others': 1.0, 'shape': 1.0, 'contort': 1.0, 'does': 1.0, 'heating': 1.0, 'visible': 1.0, 'be': 3.0, 'fitted': 1.0, 'under': 2.0, 'layering': 1.0, 'sure': 1.0, 'store': 1.0, 'clothes': 3.0, 'was': 5.0, 'awkward': 1.0, 'body': 1.0, 'maternity': 2.0, 'like': 2.0, 'money': 1.0, 'but': 3.0, 'uncomfortable': 1.0, 'help': 1.0, 'on': 4.0, 'dr': 1.0, 'regular': 1.0, 'pressure': 1.0, 'painful': 1.0, 'made': 2.0, 'based': 1.0, 'soft': 1.0, 'ligament': 1.0, 'tried': 2.0, 'wearing': 1.0, 'terrible': 1.0, 'i': 13.0, 'very': 2.0, 'everyone': 1.0, 'wanted': 1.0, 'suggested': 2.0, 'may': 1.0, 'my': 8.0, 'me': 1.0, 'skin': 2.0, 'not': 4.0, 'and': 5.0, 'getting': 1.0, 'packs': 1.0, 'sales': 1.0, 'would': 1.0, 'gone': 1.0, 'something': 1.0, 'spd': 2.0, 'with': 1.0, 'hesitant': 1.0, 'have': 3.0, 'unbearable': 1.0, 'pain': 2.0, 'exactly': 1.0, 'wouldn': 1.0, 'comfortable': 1.0, 'belly': 2.0, 'perfect': 1.0, 'walking': 1.0, 'a': 5.0, 'belt': 1.0, 't': 1.0, 'brace': 1.0, 'that': 3.0, 'provides': 1.0, 'over': 1.0, 'used': 1.0, 'nearly': 1.0, 'tank': 1.0, 'needed': 1.0, 'back': 1.0, 'can': 1.0, 'so': 1.0, 'to': 3.0, 'against': 1.0, 'soon': 1.0, 'perfectly': 1.0, 'irritate': 1.0, 'spend': 1.0, 'upsie': 1.0, 'in': 2.0, 'm': 2.0, 'flattering': 1.0, 'hot': 1.0, 'has': 1.0, 'enough': 1.0, 'it': 10.0, 'already': 1.0, 'support': 1.0, 'ordered': 2.0, 'clerk': 1.0, 'product': 1.0, 'actually': 1.0, 'reviews': 1.0, 'truly': 1.0, 'bamboo': 1.0, 'having': 2.0, 'even': 4.0, 'personally': 1.0, 'symptoms': 1.0, 'fabric': 1.0, 'pelvis': 1.0, 'look': 1.0, 'is': 5.0, 'what': 1.0, 'from': 1.0, 'breathes': 1.0, 'extra': 1.0, '100': 1.0, 'never': 1.0, 'degree': 1.0, 'whether': 1.0, 'eliminated': 1.0, 'fits': 1.0, 'helped': 1.0, 'irritating': 1.0, 'the': 9.0, 'of': 1.0}
Word element => {'to': 1.0, 'its': 1.0, 'a': 1.0, 'wife': 1.0, 'month': 1.0, 'great': 1.0, 'lost': 1.0, 'said': 1.0, 'ability': 1.0, 'support': 1.0, 'the': 3.0, 'use': 1.0, 'while': 1.0, 'velcro': 2.0, 'about': 1.0, 'of': 1.0, 'worked': 1.0, 'hold': 1.0, 'was': 1.0, 'after': 1.0}
Word element => {'under': 1.0, 'your': 2.0, 'accomodates': 1.0, 'back': 1.0, 'show': 1.0, 'needs': 1.0, 'for': 1.0, 'and': 2.0, 'from': 1.0, 'as': 1.0, 'it': 2.0, 'belly': 2.0, 'grows': 1.0, 'moderately': 1.0, 'clothing': 1.0, 'light': 1.0, 'weight': 1.0, 'that': 1.0, 'support': 1.0, 'won': 1.0, 'thin': 1.0, 'so': 1.0, 'great': 1.0, 'the': 2.0, 't': 1.0, 'much': 1.0}
Word element => {'about': 1.0, 'alot': 1.0, 'complaints': 1.0, 'them': 2.0, 'baby': 1.0, 'given': 1.0, 'to': 1.0, 'they': 1.0, 'our': 1.0, 'like': 1.0, 'and': 1.0, 'wife': 1.0, 'their': 1.0, 'son': 1.0, 'birth': 1.0, 'at': 1.0, 'the': 1.0, 'no': 1.0, 'really': 1.0, 'of': 1.0}
Word element => {'colors': 1.0, 'start': 1.0, 'would': 1.0, 'if': 1.0, 'be': 1.0, 'that': 1.0, 'also': 1.0, 'nice': 2.0, 'install': 1.0, 'on': 1.0, 'strong': 1.0, 'very': 1.0, 'they': 2.0, 'genius': 1.0, 'how': 1.0, 'comments': 1.0, 'about': 2.0, 'me': 1.0, 'asks': 1.0, 'everyone': 1.0, 'first': 1.0, 'only': 1.0, 'magnets': 1.0, 'enough': 2.0, 'especially': 1.0, 'likes': 1.0, 'now': 1.0, 'old': 1.0, 'i': 1.0, 'buckle': 1.0, 'the': 6.0, 'but': 1.0, '2': 1.0, 'these': 2.0, 'are': 3.0, 'a': 1.0, 'car': 2.0, 'match': 1.0, 'undo': 1.0, 'attach': 1.0, 'lifesaver': 1.0, 'easy': 2.0, 'straps': 1.0, 'holding': 1.0, 'is': 2.0, '5': 1.0, 'magnet': 1.0, 'seat': 3.0, 'all': 1.0, 'to': 5.0, 'our': 2.0, 'their': 1.0, 'it': 3.0, 'she': 1.0, 'fastens': 1.0, 'other': 1.0, 'chest': 1.0, 'them': 3.0, 'baby': 1.0, 'clip': 1.0, 'offering': 1.0, 'soon': 1.0, 'and': 4.0, 'company': 1.0, 'may': 1.0, 'my': 2.0, 'bought': 1.0, 'brother': 1.0, 'for': 1.0, 'year': 1.0, 'his': 1.0, 'while': 1.0, 'wife': 1.0, 'since': 1.0, 'who': 1.0, 'expecting': 1.0}
Word element => {'clumsy': 1.0, 'less': 1.0, 'much': 1.0, 'so': 1.0, 'are': 1.0, 'idea': 1.0, 'why': 1.0, 'up': 1.0, 'like': 1.0, 'baby': 1.0, 'don': 1.0, 'using': 1.0, 'great': 1.0, 't': 2.0, 'with': 2.0, 'come': 1.0, 'this': 2.0, 'works': 1.0, 'before': 1.0, 'invention': 1.0, 'didn': 1.0, 'know': 1.0, 'just': 1.0, 'awesome': 1.0, 'somebody': 1.0, 'product': 1.0, 'makes': 1.0, 'you': 2.0, 'feel': 1.0}
Word element => {'cloth': 1.0, 'through': 1.0, 'enough': 1.0, 'is': 1.0, 'magnet': 1.0, 'could': 1.0, 'leaves': 1.0, 'worth': 1.0, 'idea': 1.0, 'are': 1.0, 'with': 1.0, 'it': 2.0, 'placement': 1.0, 'a': 3.0, 'using': 1.0, 'work': 1.0, 'trouble': 1.0, 'but': 1.0, 'great': 1.0, 'the': 5.0, 'these': 1.0, 'play': 1.0, 'attach': 1.0, 'strong': 1.0, 'not': 2.0, 'seat': 1.0, 'to': 2.0, 'them': 1.0, 'child': 2.0, 'you': 1.0, 's': 1.0, 'where': 1.0, 'safety': 1.0, 'required': 1.0, 'pin': 1.0, 'and': 1.0}
Word element => {'you': 1.0, 'once': 1.0, 'right': 1.0, 'them': 1.0, 'spot': 1.0, 'to': 2.0, 'it': 2.0, 'definitely': 2.0, 'they': 1.0, 'has': 1.0, 'well': 2.0, 'pretty': 1.0, 'the': 1.0, 'these': 1.0, 'but': 1.0, 'helped': 1.0, 'work': 2.0, 'clips': 1.0, 'little': 1.0, 'my': 1.0, 'son': 1.0, 'is': 1.0, 'trial': 1.0, 'error': 1.0, 'in': 2.0, 'carseat': 1.0, 'before': 1.0, 'his': 1.0, 'easier': 1.0, 'than': 1.0, 'do': 1.0, 'get': 2.0, 'and': 1.0}
Word element => {'recommend': 1.0, 'and': 1.0, 'what': 1.0, 'is': 1.0, 'would': 1.0, 'expected': 1.0, 'carseat': 1.0, 'these': 1.0, 'little': 1.0, 'hands': 1.0, 'the': 1.0, 'my': 1.0, 'make': 1.0, 'it': 3.0, 'easier': 1.0, 'i': 1.0, 'pit': 1.0, 'much': 1.0, 'to': 1.0, 'in': 1.0, 'daughter': 1.0}
Word element => {'point': 1.0, 'lower': 1.0, 'at': 1.0, 'sold': 1.0, 'could': 1.0, 'they': 1.0, 'that': 1.0, 'gifts': 1.0, 'them': 3.0, 'a': 2.0, 'would': 1.0, 'smart': 1.0, 'mom': 1.0, 'wish': 1.0, 'invented': 1.0, 'i': 4.0, 'shared': 1.0, 'agree': 1.0, 'however': 1.0, 'so': 1.0, 'are': 1.0, 'my': 1.0, 'have': 2.0, 'these': 1.0, 'shower': 1.0, 'with': 1.0, 'lot': 1.0, 'of': 1.0, 'be': 1.0, 'friends': 1.0, 'and': 1.0, 'as': 1.0, 'given': 1.0, 'price': 1.0, 'baby': 1.0}
Word element => {'life': 1.0, 'just': 1.0, 'make': 1.0, 'more': 2.0, 'this': 1.0, 'clip': 1.0, 'say': 1.0, 'easier': 1.0, 'must': 1.0, 'need': 1.0, 'to': 1.0, 'be': 1.0, 'thing': 1.0, 'mom': 1.0, 'designed': 1.0, 'little': 1.0, 'by': 1.0, 'one': 1.0, 'i': 1.0, 'a': 2.0}
Word element => {'gaudy': 1.0, 'less': 1.0, 'that': 1.0, 'make': 1.0, 'll': 1.0, 'they': 2.0, 're': 1.0, 'unfortunately': 1.0, 'blankets': 1.0, 'are': 1.0, 'and': 2.0, 'like': 1.0, 'seats': 1.0, 'strong': 1.0, 's': 1.0, 'clothes': 1.0, 'much': 1.0, 'to': 1.0, 'well': 1.0, 'really': 4.0, 'work': 1.0, 'the': 2.0, 'these': 1.0, 'use': 1.0, 'hopefully': 1.0, 'than': 1.0, 'nicer': 1.0, 'magnets': 1.0, 'velcro': 1.0, 'ugly': 1.0, 'on': 2.0, 'set': 1.0, 'britax': 1.0, 'which': 1.0, 'catches': 1.0, 'another': 1.0, 'baby': 1.0}
Word element => {'colour': 1.0, 'baby': 1.0, 'bright': 1.0, 'people': 1.0, 'and': 1.0, 'to': 1.0, 'clips': 1.0, 'her': 1.0, 'before': 1.0, 'belt': 1.0, 'seat': 2.0, 'they': 1.0, 'has': 1.0, 'nicely': 2.0, 'these': 1.0, 'the': 2.0, 'made': 1.0, 'contracts': 1.0, 's': 1.0, 'also': 1.0, 'with': 1.0, 'it': 1.0, 'stop': 1.0, 'touch': 1.0}
Word element => {'i': 1.0, 'they': 2.0, 'came': 1.0, 'what': 1.0, 'ask': 1.0, 'carrier': 1.0, 'it': 2.0, 'different': 1.0, 'makes': 1.0, 'get': 1.0, 'infant': 1.0, 'so': 1.0, 'always': 1.0, 'people': 1.0, 'her': 1.0, 'colors': 1.0, 'easier': 1.0, 'wish': 1.0, 'in': 2.0, 'much': 1.0, 'to': 1.0, 'are': 1.0, 'the': 1.0}
Word element => {'buy': 1.0, 'recommend': 1.0, 'likesyes': 1.0, 'and': 1.0, 'theme': 1.0, 'would': 1.0, 'father': 1.0, 'was': 1.0, 'suppliers': 1.0, 'right': 1.0, 'to': 2.0, 'other': 1.0, 's': 2.0, 'well': 1.0, 'price': 1.0, 'compared': 1.0, 'goes': 1.0, 'with': 1.0, 'baby': 1.0}
Word element => {'comments': 1.0, 'his': 1.0, 'based': 1.0, 'is': 1.0, 'gave': 1.0, 'loved': 1.0, 'as': 1.0, 'gift': 1.0, 'the': 1.0, 'we': 1.0, 'star': 1.0, 'so': 2.0, 'am': 3.0, 'racing': 1.0, 'i': 3.0, 'and': 1.0, 'giving': 1.0, 'recipient': 1.0, 'a': 3.0, 'rating': 2.0, '5': 1.0, 'not': 1.0, 'on': 1.0, 'guy': 1.0, 'but': 1.0, 'it': 3.0, 'this': 1.0, 'he': 1.0}
Word element => {'otherwise': 1.0, 'stars': 1.0, 'four': 1.0, 'value': 1.0, 'good': 1.0, 'easier': 1.0, 'makes': 1.0, 'punches': 1.0, 'painted': 1.0, 'so': 1.0, 'and': 2.0, 'replaced': 1.0, 'of': 1.0, 'plus': 1.0, 'immediately': 1.0, 'but': 2.0, 'work': 1.0, 'because': 1.0, 'not': 1.0, 'did': 1.0, 'read': 2.0, 'hands': 2.0, 's': 1.0, 'i': 3.0, 'appearance': 1.0, 'one': 1.0, 'much': 1.0, 'received': 1.0, 'to': 3.0, 'great': 1.0, 'red': 1.0, 'the': 4.0, 'them': 1.0, 'made': 1.0, 'are': 1.0, 'a': 1.0, 'black': 2.0, 'hard': 1.0, 'first': 1.0, 'it': 5.0, 'clock': 2.0, 'cool': 1.0, 'really': 1.0, 'amazon': 1.0, 'change': 1.0}
Word element => {'2013': 1.0, 'september': 1.0, 'gift': 1.0, 'birthday': 1.0, 'smaller': 1.0, 'than': 1.0, 'in': 1.0, 'year': 1.0, 'for': 1.0, 'yet': 1.0, 'expected': 1.0, 'was': 1.0, 'as': 1.0, 'very': 1.0, 'it': 1.0, '7': 1.0, 'nice': 1.0, 'old': 1.0, 'purchased': 1.0, 'a': 2.0}
Word element => {'at': 1.0, 'should': 1.0, 'who': 1.0, 'think': 1.0, 'would': 1.0, 'and': 1.0, 'made': 1.0, 'nurse': 1.0, 'baby': 1.0, 'least': 1.0, 'moms': 1.0, 'recommend': 1.0, 'she': 1.0, 'will': 1.0, 'gift': 1.0, 'have': 1.0, 'all': 1.0, 'fabric': 1.0, 'friend': 1.0, 'well': 1.0, 'a': 2.0, 'item': 2.0, 'as': 1.0, 'purchased': 1.0, 'to': 1.0, 'be': 1.0, 's': 1.0, 'i': 4.0, 'beautiful': 1.0, 'know': 1.0, 'just': 1.0, 'one': 1.0, 'for': 1.0, 'love': 1.0, 'this': 3.0, 'shower': 1.0, 'it': 1.0, 'seems': 1.0}
Word element => {'in': 1.0, 'public': 1.0, 'half': 1.0, 'worry': 1.0, 'nurse': 1.0, 'do': 1.0, 'well': 1.0, 'covers': 1.0, 'not': 1.0, 'work': 1.0, 'when': 1.0, 'i': 3.0, 'this': 1.0, 'cover': 1.0, 'its': 1.0, 'it': 1.0, 'love': 1.0, 'works': 1.0, 'to': 2.0, 'exactly': 1.0, 'suppose': 1.0, 'how': 1.0}
Word element => {'how': 1.0, 'tell': 1.0, 'is': 1.0, 'people': 1.0, 'love': 1.0, 'always': 1.0, 'says': 1.0, 'on': 1.0, 'label': 1.0, 'the': 4.0, 'me': 1.0, 'and': 2.0, 'very': 1.0, 'as': 2.0, 'soft': 2.0, 'still': 1.0, 'cute': 2.0, 'did': 1.0, 'blanket': 3.0, 'this': 1.0, 'it': 3.0, 'now': 1.0, 'to': 1.0, 'not': 2.0, 'but': 2.0, 'put': 1.0, 'in': 1.0, 'i': 2.0, 'so': 1.0, 's': 1.0, 'dryer': 1.0, 'before': 1.0}
Word element => {'all': 1.0, 'at': 1.0, 'not': 1.0, 'washings': 1.0, 'after': 1.0, 'softer': 1.0, 'warm': 1.0, 'gotton': 1.0, 'has': 2.0, 'trim': 1.0, 'white': 1.0, 'for': 1.0, 'faded': 1.0, 'bought': 1.0, 'blanket': 1.0, 'cozy': 1.0, 'soft': 1.0, 'pretty': 1.0, 'black': 1.0, 'bright': 2.0, 'plan': 1.0, 'a': 1.0, 'many': 1.0, 'is': 1.0, 'my': 1.0, 'the': 2.0, 'more': 1.0, 'only': 1.0, 'with': 1.0, 'it': 2.0, 'first': 1.0, 'everyone': 1.0, 'to': 1.0, 'granddaughter': 1.0, 'and': 4.0, 'pink': 1.0, 'softsweetthis': 1.0, 'as': 1.0, 'i': 1.0, 'buy': 1.0, 'gifts': 1.0, 'loves': 1.0}
Word element => {'this': 1.0, 'with': 1.0, 'one': 2.0, 'the': 1.0, 'replace': 1.0, 'she': 3.0, 'blanket': 1.0, 'everywhere': 1.0, 'carried': 1.0, 'would': 1.0, 'out': 1.0, 'worn': 1.0, 'granddaughter': 1.0, 'had': 1.0, 'my': 1.0, 'loves': 1.0, 'a': 1.0, 'since': 1.0, 'bright': 1.0, 'colors': 1.0, 'sparkling': 1.0, 'let': 1.0, 'things': 1.0, 'old': 1.0, 'i': 1.0, 'that': 1.0, 'thought': 1.0, 'and': 1.0, 'me': 1.0}
Word element => {'same': 1.0, 'still': 1.0, 'pink': 1.0, 'all': 1.0, 'as': 2.0, 'to': 2.0, 'its': 2.0, 'sweet': 1.0, 'issue': 2.0, 'not': 2.0, 'because': 1.0, 'find': 1.0, 'due': 1.0, 'june': 1.0, 'bad': 1.0, 'my': 2.0, 'color': 1.0, 'such': 1.0, 'the': 2.0, 'going': 2.0, 'a': 4.0, 'bright': 1.0, 'very': 3.0, 'little': 1.0, 'baby': 3.0, 'spent': 1.0, 'girl': 2.0, 'blanket': 3.0, 'i': 7.0, '13th': 1.0, 'better': 1.0, '2nd': 1.0, 'got': 1.0, 'feel': 1.0, 'zebra': 1.0, 'for': 2.0, 'good': 1.0, '1st': 1.0, 'money': 1.0, 'but': 1.0, 'scared': 1.0, 'this': 1.0, 'soft': 2.0, 'looking': 1.0, 'well': 1.0, 'girls': 1.0, 'hot': 1.0, 'was': 5.0, 'beautiful': 1.0, 'what': 1.0, 'thought': 1.0, 'lining': 1.0, 'be': 1.0}
Word element => {'loves': 1.0, 'she': 1.0, 'daughter': 1.0, 'for': 1.0, 'grand': 1.0, 'little': 1.0, 'my': 1.0, 'in': 1.0, 'trendy': 1.0, 'are': 1.0, 'blanket': 1.0, 'very': 1.0, 'a': 1.0, 'is': 1.0, 'it': 1.0, 'this': 1.0, 'whole': 1.0, 'her': 1.0, 'the': 1.0, 'mother': 1.0, 'those': 1.0, 'bedroom': 1.0, 'and': 2.0, 'accessories': 1.0, 'baby': 1.0, 'colors': 1.0}
Word element => {'your': 1.0, 'happy': 1.0, 'with': 1.0, 'totally': 1.0, 'are': 1.0, 'the': 1.0, 'in': 1.0, 'we': 2.0, 'also': 1.0, 'alot': 1.0, 'product': 1.0, 'this': 1.0, 'of': 1.0, 'services': 1.0, 'christmas': 1.0, 'past': 1.0, 'ordered': 1.0, 'from': 1.0, 'you': 1.0, 'and': 2.0}
Word element => {'feel': 1.0, 'of': 1.0, 'unsure': 1.0, 'so': 1.0, 'gift': 1.0, 'gave': 1.0, 'm': 1.0, 'blanket': 1.0, 'as': 1.0, 'dry': 1.0, 'the': 4.0, 'a': 1.0, 'i': 2.0, 'quality': 1.0, 'but': 1.0, 'super': 1.0, 'line': 1.0, 'soft': 2.0, 'it': 2.0, 'this': 1.0, 'maintain': 1.0, 'noted': 1.0, 'was': 2.0, 'to': 1.0}
Word element => {'by': 1.0, 'or': 1.0, 'colors': 1.0, 'like': 1.0, 'want': 1.0, 'so': 1.0, 'wash': 2.0, 'catch': 1.0, 'does': 1.0, 'washing': 1.0, 'improve': 1.0, 'think': 1.0, 'taste': 1.0, 'will': 1.0, 'item': 1.0, 'this': 2.0, 'with': 4.0, 'it': 2.0, 'trim': 1.0, 'not': 1.0, 'did': 1.0, 'fabric': 1.0, 'have': 1.0, 'plush': 1.0, 'even': 1.0, 'nice': 1.0, 'ordered': 1.0, 'person': 1.0, 'stiff': 1.0, 'there': 1.0, 'of': 1.0, 'itself': 1.0, 'in': 3.0, 'is': 2.0, 'granddaughter': 1.0, 'rose': 1.0, 'really': 1.0, 'you': 1.0, 'when': 2.0, 'us': 1.0, 'washes': 1.0, 'i': 2.0, 'was': 1.0, 'beautiful': 1.0, 'get': 1.0, 'too': 1.0, 'pattern': 1.0, 'and': 2.0, 'lot': 1.0, 'head': 1.0, 'the': 3.0, 'turns': 1.0, 'we': 2.0, 'notice': 1.0, 'a': 3.0, 'go': 1.0, 'prettier': 1.0, 'out': 1.0, 'may': 1.0, 'my': 2.0, 'lint': 1.0, 'super': 1.0, 'but': 1.0, 'girly': 1.0, 'to': 1.0, 'outside': 1.0, 'little': 1.0, 'for': 1.0}
Word element => {'several': 1.0, 'washed': 1.0, 'i': 1.0, 'the': 1.0, 'soft': 1.0, 'cute': 1.0, 'super': 2.0, 'you': 1.0, 'not': 1.0, 'is': 2.0, 'will': 1.0, 'durable': 1.0, 'purchasing': 1.0, 'times': 1.0, 'regret': 1.0, 'good': 1.0, 'have': 1.0, 'this': 1.0, 'blanket': 2.0, 'it': 2.0, 'and': 2.0, 'quality': 1.0}
Word element => {'softness': 1.0, 'loss': 1.0, 'or': 1.0, 'washings': 1.0, 'though': 1.0, 'straighten': 1.0, 'you': 1.0, 'appearance': 1.0, 'doesn': 1.0, '10': 1.0, 'being': 1.0, 'after': 2.0, 'fading': 1.0, 'dryer': 1.0, 'flat': 1.0, 'my': 1.0, 'shown': 1.0, 'very': 1.0, 'kind': 1.0, 'winter': 1.0, 'color': 1.0, 'months': 1.0, 'bought': 1.0, 'be': 2.0, 'without': 1.0, 'the': 8.0, 'it': 4.0, 'in': 3.0, 'out': 2.0, 'newborn': 1.0, 'effect': 1.0, 'for': 1.0, 'daughter': 1.0, 'through': 2.0, 'as': 1.0, 'to': 3.0, 'keep': 1.0, 'blanket': 3.0, 'warm': 1.0, 'bit': 1.0, 'bright': 1.0, 't': 1.0, 'a': 1.0, 'pulled': 1.0, 'her': 1.0, 'this': 2.0, 'soft': 1.0, 'and': 3.0, 'noticeable': 1.0, 'thick': 1.0, 'is': 1.0, 'holds': 1.0, 'up': 2.0, 'there': 1.0, 'of': 4.0, 'washer': 1.0, 'i': 1.0, 'threads': 1.0, 'although': 1.0, 'that': 1.0, 'seem': 1.0, 'some': 1.0, 'inside': 1.0, 'bunch': 1.0, 'lasted': 1.0, 'well': 1.0, 'has': 2.0}
Word element => {'crazy': 1.0, 'pass': 1.0, 'you': 1.0, 'your': 1.0, 'one': 1.0, 'my': 1.0, 'great': 1.0, 'blanket': 1.0, 'up': 1.0, 'quality': 1.0, 'really': 1.0, 'if': 1.0, 'soft': 1.0, 'little': 1.0, 'baby': 1.0, 'every': 1.0, 'worth': 1.0, 'top': 1.0, 'penny': 1.0, 'for': 1.0}
Word element => {'on': 1.0, 'print': 1.0, 'of': 1.0, 'colors': 1.0, 'the': 2.0, 'love': 1.0, 'it': 2.0, 'nascar': 1.0, 'a': 1.0, 'little': 1.0, 'will': 1.0, 'nice': 1.0, 'blanket': 1.0, 'what': 1.0, 'boy': 1.0, 'any': 1.0, 'look': 1.0, 'in': 1.0, 'cute': 1.0}
Word element => {'multiple': 1.0, 'and': 1.0, 'hanging': 1.0, 'abuse': 1.0, 'of': 1.0, 'up': 1.0, 'coats': 1.0, 'so': 1.0, 'mount': 1.0, 'sturdier': 1.0, 'own': 1.0, 's': 1.0, 'is': 2.0, 'room': 1.0, 'times': 1.0, 'far': 1.0, 'themed': 1.0, 'old': 1.0, 'i': 2.0, 'nascar': 1.0, 'a': 3.0, 'backpack': 1.0, 'addition': 1.0, 'on': 1.0, '4': 1.0, 'believe': 1.0, 'my': 2.0, 'stood': 1.0, 'the': 2.0, 'great': 1.0, 'it': 3.0, 'with': 1.0, 'this': 1.0, 'day': 1.0, 'year': 1.0, 'son': 1.0, 'very': 1.0, 'but': 1.0, 'quality': 1.0, 'pleased': 1.0, 'that': 1.0, 'hardware': 1.0, 'to': 3.0, 'was': 1.0, 'husband': 1.0, 'his': 2.0, 'used': 1.0}
Word element => {'product': 1.0, 'etc': 1.0, 'memorabilia': 1.0, 'model': 1.0, 'would': 1.0, 'display': 1.0, 'this': 1.0, 'with': 1.0, 'room': 1.0, 'on': 2.0, 'car': 2.0, 'nice': 1.0, 'to': 3.0, 'recommend': 1.0, 'easy': 1.0, 'great': 1.0, 'shelf': 1.0, 'and': 1.0, 'made': 1.0, 'assemble': 1.0, 'hats': 1.0, 'well': 1.0, 'pegs': 1.0, 'themed': 1.0, 'or': 1.0, 'sturdy': 1.0, 'cars': 1.0, 'goes': 1.0, 'design': 1.0, 'hang': 1.0, 'jackets': 1.0, 'top': 1.0}
Word element => {'be': 1.0, 'though': 1.0, 'straight': 1.0, 'up': 1.0, 'not': 2.0, 'and': 1.0, 'sort': 1.0, 'some': 1.0, 'no': 1.0, 'would': 3.0, 'or': 2.0, 'bottles': 3.0, 'it': 6.0, 'this': 1.0, 'with': 1.0, 'works': 1.0, 'only': 1.0, 'the': 2.0, 'more': 1.0, 'what': 1.0, 'thought': 2.0, 'that': 1.0, 'stand': 1.0, 'inside': 3.0, 'will': 1.0, 'just': 4.0, 'separators': 1.0, 'regular': 2.0, 'have': 3.0, 'bad': 1.0, 'bag': 2.0, 'spacers': 1.0, 'i': 3.0, 'of': 1.0, 'dividers': 1.0, 'at': 1.0, 'keep': 1.0, 'if': 2.0, 'so': 1.0, 'else': 1.0, 'a': 2.0, 's': 1.0, 'you': 3.0, 'like': 1.0, 'use': 2.0, 'for': 1.0, 'least': 1.0, 'to': 1.0, 'any': 1.0, 'other': 1.0, 'keeps': 1.0, 'on': 1.0, '3': 1.0, '1': 1.0, 'upright': 2.0, 'tip': 1.0}
Word element => {'reorganize': 1.0, 'house': 1.0, 'of': 1.0, 'pull': 1.0, 'one': 1.0, 'is': 1.0, 'everything': 1.0, 'if': 1.0, 'inside': 1.0, 'tote': 1.0, 'happy': 1.0, 'activities': 1.0, 'ride': 1.0, 'organizing': 1.0, 'useful': 1.0, 'will': 1.0, 'changes': 1.0, 'out': 1.0, 'keeping': 1.0, 'books': 1.0, 'diapers': 1.0, 'stored': 1.0, 'but': 1.0, 'quality': 1.0, 'compartments': 2.0, 'in': 6.0, 'neat': 1.0, 'my': 1.0, 'm': 1.0, 'dividers': 1.0, 'i': 2.0, 'amazon': 1.0, 'purchased': 1.0, 'and': 2.0, 'shape': 1.0, 'hold': 1.0, 'folded': 1.0, 'boys': 1.0, 'little': 2.0, 'very': 3.0, 'kids': 1.0, 'perfect': 1.0, 'this': 2.0, 'with': 2.0, 'it': 1.0, 'separate': 1.0, 'wipes': 1.0, 'fabric': 1.0, 'bring': 1.0, 'nice': 3.0, 'car': 6.0, 'button': 1.0, 'restock': 1.0, 'husbands': 1.0, 'on': 3.0, 'go': 1.0, 'a': 3.0, 'product': 1.0, 'love': 1.0, 'snacks': 2.0, 'for': 6.0, 'diaper': 2.0, 'the': 8.0, 'caddy': 2.0, 'future': 1.0, 'three': 1.0, 'arrived': 1.0, 'up': 1.0, 'was': 1.0, 'as': 1.0, 'all': 1.0, 'to': 3.0, 'nursery': 1.0, 'its': 1.0, 'easy': 2.0, 'would': 1.0, 'be': 2.0, 'cute': 1.0}
Word element => {'us': 1.0, 'discovered': 1.0, 'place': 1.0, 've': 1.0, 'in': 1.0, 'divider': 1.0, 'hold': 1.0, 'they': 1.0, 'didn': 1.0, 'use': 1.0, 'inside': 1.0, 'i': 2.0, 'well': 1.0, 'a': 1.0, 'very': 1.0, 'as': 1.0, 'know': 1.0, 'at': 1.0, 'now': 1.0, 'had': 1.0, 'to': 1.0, 'works': 1.0, 'caddy': 1.0, 'buttons': 1.0, 'that': 4.0, 'this': 1.0, 'first': 1.0, 'it': 2.0, 'for': 1.0, 'loops': 1.0, 't': 1.0, 'diaper': 1.0, 'the': 2.0, 'we': 1.0, 'attach': 1.0, 'on': 1.0}
Word element => {'priced': 1.0, 'use': 1.0, 'nice': 1.0, 'second': 1.0, 'same': 1.0, 'simple': 1.0, 'child': 1.0, 'received': 1.0, 'i': 1.0, 'one': 1.0, 'for': 2.0, 'to': 1.0, 'product': 1.0, 'first': 1.0, 'a': 1.0, 'reasonably': 1.0, 'bought': 1.0, 'gift': 1.0, 'the': 1.0, 'my': 2.0, 'very': 1.0, 'as': 1.0, 'and': 2.0}
Word element => {'patient': 1.0, 'time': 1.0, 'your': 1.0, 'so': 1.0, 'right': 1.0, 'just': 1.0, 'print': 1.0, 'the': 1.0, 'a': 2.0, 'is': 1.0, 'son': 1.0, 'tries': 1.0, 's': 1.0, 'take': 2.0, 'my': 1.0, 'purchased': 1.0, 'be': 1.0, 'product': 1.0, 'to': 2.0, 'for': 1.0, 'christmas': 1.0, 'it': 2.0, 'first': 1.0, 'this': 1.0, 'good': 1.0, 'up': 1.0, 'seems': 1.0, 'hold': 1.0, 'does': 1.0, 'few': 1.0, 'and': 2.0, 'get': 1.0}
Word element => {'piece': 1.0, 'tiny': 1.0, 'a': 1.0, 'than': 1.0, 'other': 1.0, 'distracting': 1.0, 'screws': 1.0, 'covers': 1.0, 'no': 1.0, 'are': 1.0, 'of': 1.0, 'visually': 1.0, 'there': 1.0, 'that': 2.0, 'really': 1.0, 'is': 4.0, 'just': 1.0, 'seat': 1.0, 'my': 1.0, 'baby': 1.0, 'cool': 2.0, 'art': 1.0, 'for': 3.0, 'the': 3.0, 't': 1.0, 'to': 2.0, 'be': 1.0, 'very': 1.0, 'issue': 1.0, 'and': 2.0, 'i': 3.0, 'can': 1.0, 'wait': 1.0, 'him': 1.0, 'this': 1.0, 'only': 1.0, 'it': 3.0, 'have': 1.0, 'able': 1.0, 'purchased': 1.0, 'use': 1.0, 'however': 1.0}
Word element => {'process': 1.0, 'return': 1.0, 'my': 1.0, 'times': 1.0, 'several': 1.0, 'about': 1.0, 'told': 1.0, 'no': 1.0, 'if': 2.0, 'multiple': 1.0, 'bottom': 1.0, 'refund': 1.0, 'front': 1.0, 'hopes': 1.0, 'why': 1.0, 'handled': 1.0, 'cracks': 1.0, 'force': 1.0, '3': 1.0, 'warnings': 1.0, 'on': 3.0, 'base': 2.0, 'cute': 2.0, 'wrong': 1.0, 'all': 2.0, 'as': 1.0, 'to': 3.0, 'idea': 1.0, 'any': 1.0, 'stars': 1.0, 'well': 1.0, 'i': 5.0, 'from': 1.0, 'while': 1.0, 'dolphin': 1.0, 'used': 1.0, 'decided': 1.0, 'actual': 1.0, 'one': 1.0, 'of': 2.0, 'ran': 1.0, 'the': 15.0, 'more': 1.0, 'so': 1.0, 'time': 1.0, 'see': 1.0, 'it': 4.0, 'showing': 1.0, 'wooden': 1.0, 'back': 2.0, 'quality': 3.0, 'also': 2.0, 'seat': 1.0, 'in': 1.0, 'been': 1.0, 'ignore': 1.0, 'this': 1.0, 'rocking': 1.0, 'would': 1.0, 'had': 4.0, 'was': 5.0, 'receive': 1.0, 'before': 1.0, 'good': 1.0, 'along': 1.0, 'rocker': 2.0, 't': 1.0, 'scratches': 1.0, 'could': 1.0, 's': 1.0, 'head': 1.0, 'and': 3.0, 'large': 2.0, 'tail': 2.0, 'holes': 1.0, 'were': 3.0, 'enough': 2.0, 'a': 2.0, 'stuffing': 1.0, 'due': 1.0, 'hole': 1.0, 'didn': 1.0, 'seem': 1.0, 'being': 1.0, 'very': 3.0, 'they': 1.0, 'sturdy': 1.0, 'breaking': 1.0, 'product': 1.0, 'child': 1.0, 'with': 3.0, 'great': 1.0, 'has': 1.0, 'is': 1.0, 'at': 2.0, 'but': 1.0, 'quick': 1.0, 'poor': 1.0, 'returned': 1.0, 'shipped': 1.0, 'easily': 1.0, 'that': 4.0, 'problems': 1.0, 'manufacturer': 1.0}
Word element => {'one': 1.0, 'expecting': 1.0, 'if': 1.0, 'babies': 1.0, 'twins': 1.0, 'twin': 1.0, 'is': 1.0, 'a': 1.0, 'are': 1.0, 'the': 2.0, 'it': 1.0, 'great': 1.0, 'need': 1.0, 'very': 2.0, 'and': 1.0, 'you': 2.0, 'comfortable': 1.0, 'design': 1.0, 'for': 1.0, 'mom': 1.0}
Word element => {'drugs': 1.0, 'an': 1.0, 'tighten': 1.0, 'prevent': 1.0, 'in': 1.0, 'teeth': 1.0, 'to': 3.0, 'doors': 1.0, 'the': 3.0, 'push': 1.0, 'are': 1.0, 'not': 1.0, 'order': 1.0, 'so': 2.0, 'them': 1.0, 'requires': 1.0, 'out': 1.0, 'a': 2.0, 'closing': 1.0, 'being': 1.0, 'happening': 1.0, 'even': 1.0, 'level': 1.0, 'is': 4.0, 'acceptable': 1.0, 'what': 1.0, '2': 1.0, 'firm': 1.0, 'closed': 1.0, 'securely': 1.0, 'with': 2.0, 'possible': 2.0, 'still': 1.0, '1': 1.0, 'do': 1.0, 'inches': 1.0, 'pull': 1.0, 'pinched': 2.0, 'fine': 1.0, 'worse': 1.0, 'does': 1.0, 'than': 1.0, 'clasp': 1.0, 'from': 1.0, 'fingers': 2.0, 'disaster': 1.0, 'chemicals': 1.0, 'or': 1.0}
Word element => {'doors': 1.0, 'on': 1.0, 'knobs': 1.0, 'of': 1.0, 'have': 1.0, 'you': 1.0, 'don': 1.0, 'made': 1.0, 'well': 2.0, 'purchased': 1.0, 't': 1.0, 'the': 2.0, 'ones': 1.0, 'not': 1.0, 'at': 1.0, 'i': 1.0, 'kind': 1.0, 'as': 2.0, 'ok': 1.0, 'faster': 1.0, 'works': 1.0, 'depot': 1.0, 'were': 1.0, 'cabinet': 1.0, 'home': 1.0, 'your': 1.0, 'they': 1.0, 'right': 1.0, 'flimsy': 1.0, 'comparison': 1.0, 'unless': 1.0, 'in': 1.0, 'break': 1.0, 'probably': 1.0, 'work': 1.0, 'but': 1.0, 'will': 1.0}
Word element => {'unsatisfied': 1.0, 'very': 1.0, 'longer': 1.0, 'no': 1.0, 'works': 1.0, 'it': 3.0, 'installing': 1.0, 'first': 1.0, 'time': 1.0, 'after': 1.0, 'not': 1.0, 'off': 1.0, 'heat': 1.0, 'resistant': 1.0, 'i': 1.0, 'fell': 1.0, 'oven': 1.0, 'definitely': 1.0, 'see': 1.0, 'the': 1.0, 'my': 1.0}
Word element => {'tho': 1.0, 'lock': 1.0, 'a': 1.0, 'loss': 1.0, 'i': 3.0, 'does': 1.0, 'has': 1.0, 'well': 1.0, 'above': 1.0, 'what': 1.0, 'oven': 2.0, 'money': 1.0, 'work': 2.0, 'but': 1.0, 'was': 1.0, 'works': 1.0, 'its': 1.0, 'stick': 1.0, 'door': 3.0, 'type': 1.0, 'have': 1.0, 'small': 1.0, 'so': 1.0, 'as': 1.0, 'all': 1.0, 'to': 2.0, 'doors': 1.0, 'the': 3.0, 'older': 1.0, 'complain': 1.0, 'with': 1.0, 'this': 1.0, 'it': 1.0, 'cheap': 1.0, 'for': 1.0, 'not': 3.0, 'me': 1.0, 'and': 1.0, 'adhesive': 1.0, 'midway': 1.0, 'also': 1.0, 'will': 3.0, 'item': 1.0, 'about': 1.0, 'no': 1.0, 'good': 2.0, 'nessisary': 1.0, 'till': 1.0, 'upgrade': 1.0, 'stove': 1.0, 'lip': 3.0, 'my': 2.0, 'another': 1.0, 'hopefully': 1.0, 'enough': 1.0, 'dnt': 1.0, 'feel': 1.0}
Word element => {'alternative': 1.0, 'trying': 1.0, 'out': 1.0, 'package': 1.0, 'an': 1.0, 'to': 3.0, 'had': 1.0, 'open': 1.0, 'did': 1.0, 'not': 1.0, 'find': 2.0, 'the': 1.0, 'my': 1.0, 'oven': 1.0, 'rip': 1.0, 'i': 2.0, 'can': 1.0, 'it': 1.0, 'this': 1.0, 'fit': 1.0, 't': 1.0, 'return': 1.0, 'as': 1.0}
Word element => {'takes': 1.0, 'that': 1.0, 'most': 1.0, 'change': 1.0, 'type': 1.0, 'high': 1.0, 'lock': 2.0, 'of': 3.0, 'weight': 2.0, 'unfortunate': 1.0, 'in': 2.0, 'off': 1.0, 'or': 2.0, 'i': 1.0, 'theory': 1.0, 'this': 1.0, 'it': 2.0, 'adhesive': 4.0, 'find': 1.0, 'is': 1.0, 'pulls': 1.0, 'reality': 1.0, 'so': 1.0, 'not': 2.0, 'the': 11.0, 'until': 2.0, 'great': 2.0, 'location': 1.0, 'oven': 2.0, 'on': 1.0, 'put': 1.0, 'strip': 1.0, 'longer': 1.0, 'll': 1.0, 'much': 1.0, '5': 1.0, 'hopefully': 1.0, 'different': 1.0, 'worked': 1.0, 'stayed': 1.0, 'product': 1.0, 'for': 1.0, 'whole': 1.0, 'adhered': 1.0, 'about': 1.0, 'pulling': 1.0, 'days': 1.0, 'used': 1.0, 'at': 1.0, 's': 1.0, 'a': 2.0, 'heat': 1.0, 'they': 1.0}
Word element => {'about': 1.0, 'complain': 1.0, 'nothing': 1.0, 'solid': 1.0, 'be': 1.0, 'to': 2.0, 'adhesive': 1.0, 'this': 1.0, 'does': 1.0, 'a': 1.0, 'fine': 1.0, 'the': 1.0, 'job': 1.0, 'of': 1.0, 'keeping': 1.0, 'oven': 1.0, 'seems': 1.0, 'door': 1.0, 'locked': 1.0}
Word element => {'effectively': 1.0, 'adhesive': 1.0, 'heat': 1.0, 'eventually': 1.0, 'emit': 1.0, 'not': 1.0, 'dishwashers': 1.0, 'mind': 1.0, 'so': 1.0, 'adhere': 1.0, 'surface': 1.0, 'opening': 1.0, 'you': 1.0, 'keeping': 1.0, 'dishwasher': 1.0, 'for': 1.0, 'baby': 1.0, 'my': 1.0, 'in': 1.0, 'flat': 1.0, 'as': 1.0, 'from': 1.0, 'things': 1.0, 'ovens': 1.0, 'the': 2.0, 'great': 1.0, 'these': 2.0, 'keep': 1.0, 'pretty': 1.0, 'and': 4.0, 'need': 1.0, 'will': 1.0, 'work': 2.0, 'oven': 1.0, 'but': 1.0, 'to': 3.0, 'have': 1.0, 'a': 1.0, 'large': 1.0}
Word element => {'safe': 1.0, 'little': 1.0, 'curious': 1.0, 'thus': 1.0, 'opened': 1.0, 'my': 1.0, 'the': 1.0, 'this': 1.0, 'thing': 1.0, 'being': 1.0, 'and': 1.0, 'hot': 1.0, 'love': 1.0, 'works': 1.0, 'great': 1.0, 'keeps': 2.0, 'oven': 1.0, 'man': 1.0, 'from': 1.0}
Word element => {'fit': 1.0, 'because': 2.0, 'product': 1.0, 'simply': 1.0, 'located': 1.0, 'universal': 1.0, 't': 1.0, 'mother': 1.0, 'the': 1.0, 'my': 2.0, 'give': 1.0, 'wish': 1.0, 'it': 2.0, 'i': 2.0, 'doesn': 1.0, 'oven': 1.0, 'of': 1.0, 'where': 1.0, 'our': 1.0, 'handle': 1.0, 'really': 1.0, 'is': 1.0, 'to': 2.0, 'had': 1.0, 'was': 1.0}
Word element => {'put': 1.0, 'use': 1.0, 'easy': 2.0, 'oven': 1.0, 'out': 1.0, 'little': 1.0, 'the': 2.0, 'of': 1.0, 'keeping': 1.0, 'on': 2.0, 's': 1.0, 'one': 1.0, 'i': 1.0, 'to': 2.0, 'exactly': 1.0, 'what': 1.0, 'looking': 1.0, 'was': 1.0, 'for': 1.0, 'and': 2.0, 'it': 1.0, 'works': 1.0, 'great': 1.0}
Word element => {'friend': 1.0, 'a': 1.0, 'i': 1.0, 'recommended': 1.0, 'open': 1.0, 'this': 2.0, 'out': 1.0, 'to': 1.0, 'cannot': 1.0, 'it': 1.0, 'works': 1.0, 'great': 1.0, 'stove': 1.0, 'my': 1.0, 'gas': 1.0, 'on': 1.0, 'son': 1.0, 'would': 1.0, 'ikea': 1.0}
Word element => {'stars': 1.0, '5': 1.0, 'gladly': 1.0, 'few': 1.0, 'still': 1.0, 'if': 1.0, 'detach': 1.0, 'stick': 1.0, 'looks': 1.0, 'it': 2.0, 'first': 1.0, 'come': 1.0, 'oven': 1.0, 'to': 2.0, 'well': 2.0, 'since': 1.0, 'working': 1.0, 'took': 1.0, 'i': 2.0, 'they': 4.0, 'time': 1.0, 'may': 1.0, 'overkill': 1.0, 'the': 4.0, 'change': 1.0, 'but': 2.0, 'work': 1.0, '2': 2.0, 'nice': 1.0, 'great': 1.0, 'scrub': 1.0, 'area': 1.0, 'are': 1.0, 'strips': 1.0, 'clean': 1.0, 'them': 1.0, 'off': 1.0, 'adhesive': 1.0, 'and': 5.0, 'a': 1.0, 'we': 1.0, 'be': 1.0, 'months': 1.0, 'bought': 1.0, 'will': 1.0, 'also': 1.0, 'in': 2.0, 'cone': 1.0, 'packs': 1.0, 'both': 1.0, 'put': 1.0, 'strong': 1.0, 'on': 1.0, 'how': 1.0, 'door': 1.0, 'is': 1.0, 'metal': 1.0, 'dried': 1.0, 'very': 1.0, 'read': 1.0, 'construction': 1.0}
Word element => {'anyone': 1.0, 'so': 1.0, 'instruction': 1.0, 'postman': 1.0, 'or': 1.0, 'if': 1.0, 'out': 1.0, 'loose': 1.0, 'sticky': 1.0, 'should': 1.0, 'tape': 1.0, 'sided': 1.0, 'attached': 1.0, 'with': 2.0, 'ears': 1.0, 'other': 1.0, 'impossable': 1.0, 'think': 1.0, 'make': 1.0, 'screws': 1.0, 'small': 1.0, 'into': 1.0, 'box': 1.0, 'of': 1.0, 'affixed': 1.0, 'through': 1.0, 'then': 1.0, 'off': 1.0, 'can': 1.0, 'but': 2.0, 'review': 1.0, 'drill': 1.0, 'shown': 1.0, 'super': 1.0, 'new': 1.0, 'shell': 1.0, 'top': 2.0, 'will': 2.0, 'adjusted': 1.0, 'when': 1.0, 'remove': 1.0, 'it': 13.0, 'release': 1.0, 'this': 2.0, 'is': 5.0, 'side': 2.0, 'really': 1.0, 'lock': 1.0, 'figured': 1.0, 'cut': 1.0, 'excess': 1.0, 'give': 1.0, 'door': 2.0, 'plastic': 1.0, 'very': 1.0, 'mailbox': 2.0, 'i': 6.0, 'two': 3.0, 'replica': 1.0, 'keep': 1.0, 'without': 1.0, 'turns': 1.0, 'the': 11.0, 'only': 1.0, 'much': 1.0, 'adjustment': 2.0, 'there': 1.0, 'measured': 1.0, 'are': 1.0, 'parts': 1.0, 'bought': 1.0, 'one': 1.0, 'glue': 1.0, 'to': 7.0, 'as': 2.0, 'see': 1.0, 'permanent': 1.0, 'hold': 1.0, 'which': 1.0, 'drilled': 1.0, 'too': 1.0, 'closed': 1.0, 'and': 4.0, 'complely': 1.0, 'locked': 1.0, 'shotgun': 1.0, 'picture': 1.0, 'got': 1.0}
Word element => {'adhesive': 1.0, 'self': 1.0, 'on': 1.0, 'put': 1.0, 'what': 1.0, 'purchased': 1.0, 'had': 1.0, 'in': 1.0, 'said': 1.0, 'accidentally': 1.0, 'under': 1.0, 'have': 2.0, 'lock': 1.0, 'first': 1.0, 'with': 2.0, 'models': 1.0, 'quick': 1.0, 'this': 1.0, 'unlike': 1.0, 'wasted': 2.0, 'it': 3.0, 'use': 2.0, 'good': 1.0, 'snap': 1.0, 'discovered': 1.0, 'a': 2.0, 'could': 1.0, 'and': 1.0, 'seen': 1.0, 'adjustable': 1.0, 'closed': 1.0, 'package': 2.0, 'after': 1.0, 'brand': 1.0, 'while': 2.0, 'looked': 1.0, 'straps': 1.0, 'second': 1.0, 'i': 8.0, 'experimenting': 1.0, 'one': 3.0, 'there': 1.0, 'were': 2.0, 'no': 2.0, 'so': 2.0, 'time': 1.0, 'other': 1.0, 'all': 1.0, 'as': 2.0, 'least': 1.0, 'permanency': 1.0, 'figured': 1.0, '2': 3.0, 'but': 2.0, 'way': 2.0, 'reach': 1.0, 'comes': 1.0, 'these': 1.0, 'care': 1.0, 'like': 1.0, 'strap': 4.0, 'position': 1.0, 'would': 2.0, 'permanently': 1.0, 'not': 1.0, 'lace': 1.0, 'enclosed': 1.0, 'through': 1.0, 'latch': 1.0, 'or': 1.0, 'inside': 1.0, 'went': 1.0, '1': 2.0, 'to': 6.0, 'fixed': 1.0, 'pulled': 1.0, '3': 1.0, 'that': 1.0, 'be': 3.0, 'trying': 1.0, 'reviews': 1.0, 'fine': 1.0, 'cinching': 1.0, 'tried': 1.0, 'hard': 1.0, 'open': 1.0, 'should': 2.0, 'out': 1.0, 'the': 14.0, 'of': 1.0, 'microwave': 2.0, 'cinch': 1.0, 'now': 1.0, 'very': 1.0, 'read': 1.0, 'how': 1.0, 'disappointed': 1.0, 'instructions': 2.0, 'purchasing': 1.0, 'idea': 1.0, 'online': 1.0, 'before': 2.0, 'at': 1.0, 'them': 1.0, 'really': 1.0}
Word element => {'price': 1.0, 'value': 1.0, 'good': 1.0, 'kitchens': 1.0, 'for': 1.0, 'most': 1.0, 'well': 1.0, 'color': 1.0, 'just': 1.0, 'with': 1.0, 'cabinets': 1.0, 'your': 1.0, 'updated': 1.0, 'first': 1.0, 'the': 2.0, 'measure': 1.0, 'stainless': 1.0, 'works': 2.0, 'great': 1.0, 'steel': 1.0}
Word element => {'for': 1.0, 'not': 1.0, 'clearly': 1.0, 'love': 1.0, 'some': 1.0, 'continue': 1.0, 'hope': 1.0, 'care': 1.0, 'would': 1.0, 'coating': 1.0, 'don': 2.0, 'on': 1.0, 'or': 1.0, 'just': 3.0, 'but': 2.0, 'all': 1.0, 'to': 6.0, 'our': 1.0, 'and': 4.0, 'couldn': 1.0, 'enter': 1.0, 'agree': 1.0, 'cabinet': 1.0, 'package': 1.0, 'after': 1.0, 'us': 1.0, 'received': 1.0, 'plastic': 1.0, 'so': 4.0, 'function': 1.0, 'they': 8.0, 'between': 1.0, 'a': 6.0, 't': 4.0, 'packs': 1.0, 'shower': 1.0, 'ok': 1.0, 'is': 2.0, 'notice': 1.0, 'at': 1.0, 'three': 1.0, 'stubborn': 1.0, 'it': 2.0, 'got': 1.0, 'didn': 1.0, 'that': 7.0, 'silicone': 1.0, 'use': 4.0, 'in': 3.0, 'kitchen': 1.0, 'often': 1.0, 'may': 1.0, 'me': 1.0, 'my': 2.0, 'one': 2.0, 'right': 1.0, 'week': 1.0, 'locks': 4.0, 'out': 2.0, 'of': 6.0, 'the': 5.0, 'these': 4.0, 'them': 3.0, 'difficult': 1.0, 'taken': 1.0, 'fourth': 1.0, 'engineered': 1.0, 'struggle': 2.0, 'with': 1.0, 'frequently': 1.0, 'thing': 1.0, 'fix': 1.0, 'should': 1.0, 'work': 1.0, 'hard': 1.0, 'open': 1.0, 'cabinets': 1.0, 'be': 1.0, 'essential': 1.0, 'think': 1.0, 'definitely': 1.0, 'we': 7.0, 'difference': 1.0, 'pans': 1.0, 'used': 1.0, 'functionality': 1.0, 'two': 2.0, 'upset': 1.0, 'babysitting': 1.0, 'are': 4.0, 'i': 4.0, 'well': 1.0, 'mother': 2.0, 'law': 1.0, 'mechanics': 1.0, 'much': 1.0, 'have': 2.0, 'as': 1.0, 'leave': 1.0, 'remaining': 1.0, 'snacks': 1.0, 'still': 1.0, 'if': 2.0, 'really': 1.0, 'gift': 1.0, 'made': 1.0, 'scratched': 1.0, 'new': 1.0, 'while': 1.0, 'wood': 1.0, 'make': 1.0, 'rubber': 1.0}
Word element => {'bin': 1.0, 'donation': 1.0, 'in': 1.0, 'seemed': 1.0, 'bathroom': 1.0, 'people': 1.0, 'sturdier': 1.0, 'enough': 1.0, 'the': 3.0, 'some': 1.0, 'these': 1.0, 'but': 1.0, 'didn': 1.0, 'i': 3.0, 'buy': 1.0, 'putting': 1.0, 'was': 1.0, 'that': 1.0, 'to': 3.0, 'our': 1.0, 'hesitant': 1.0, 'reviews': 1.0, 'they': 3.0, 'cabinets': 1.0, 'kitchen': 1.0, 'than': 1.0, 't': 1.0, 'a': 1.0, 's': 1.0, 'go': 1.0, 'reading': 1.0, 'u': 1.0, 'shaped': 1.0, 'fit': 2.0, 'for': 1.0, 'bit': 1.0, 'so': 2.0, 'one': 1.0, 'decided': 1.0, 'it': 1.0, 'pulls': 1.0, 'come': 1.0, 'do': 1.0, 'apart': 1.0, 'wide': 1.0, 'on': 1.0, 'not': 1.0, 'cabinet': 1.0, 'm': 1.0, 'them': 1.0}
Word element => {'yet': 1.0, 'but': 1.0, 'they': 1.0, 'd': 2.0, 'point': 1.0, 'you': 1.0, 'mentioned': 1.0, 'have': 1.0, 'problem': 1.0, 'engineering': 1.0, 'adult': 1.0, 'a': 3.0, 'slight': 1.0, 'them': 2.0, 'idea': 1.0, 'not': 2.0, 'baby': 2.0, 'think': 1.0, 'good': 1.0, 'off': 2.0, 'this': 1.0, 'with': 1.0, 'only': 1.0, 'locks': 1.0, 'can': 2.0, 'either': 1.0, 'the': 1.0, 'these': 1.0, 't': 2.0, 'other': 1.0, 'and': 1.0, 'get': 3.0, 'reviews': 1.0, 'are': 1.0, 'actually': 1.0, 'several': 1.0}
Word element => {'friends': 1.0, 'mommy': 1.0, 'after': 1.0, 'stop': 1.0, 'safe': 1.0, 'pop': 1.0, 'to': 5.0, 'doors': 1.0, 'throughout': 1.0, 'installed': 1.0, 'having': 1.0, 'use': 1.0, 'every': 1.0, 'has': 2.0, 'place': 1.0, 'hands': 1.0, 'figured': 1.0, 'a': 1.0, 'several': 1.0, 've': 1.0, 'something': 1.0, 'each': 1.0, 't': 1.0, 'cost': 1.0, 'didn': 1.0, 'safety': 2.0, 'staying': 1.0, 'especially': 1.0, 'as': 3.0, 'exploited': 1.0, 'of': 2.0, 'the': 4.0, 'device': 1.0, 'i': 6.0, 'two': 1.0, 'hit': 1.0, 'shut': 1.0, 'these': 2.0, 'points': 1.0, 'miss': 1.0, 'out': 1.0, 'damage': 1.0, 'or': 1.0, 'think': 1.0, 'your': 1.0, 'would': 1.0, 'weeks': 1.0, 'openings': 1.0, 'house': 1.0, 'products': 1.0, 'child': 1.0, 'toddler': 1.0, 'all': 1.0, 'other': 2.0, 'simple': 1.0, 'this': 1.0, 'pieces': 1.0, 'recommend': 1.0, 'were': 1.0, 'honestly': 1.0, 'low': 1.0, 'into': 1.0, 'at': 1.0, 'clip': 1.0, 'multiple': 1.0, 'deter': 1.0, 'from': 2.0, 'way': 1.0, 'matter': 1.0, 'able': 1.0, 'him': 2.0, 'it': 2.0, 'fingers': 1.0, 'm': 1.0, 'in': 3.0, 'and': 3.0, 'being': 1.0, 'twist': 1.0, 'first': 1.0, 'are': 3.0, 'stumped': 1.0, 'he': 1.0, 'inquisitive': 1.0, 'love': 1.0, 'for': 1.0, 'pricier': 1.0, 'actually': 1.0, 'tried': 1.0, 'happy': 1.0, 'ones': 1.0, 'they': 1.0, 'my': 5.0, 'me': 1.0, 'with': 1.0, 'nerve': 1.0, 'but': 1.0, 'hard': 1.0, 'open': 2.0, 'work': 1.0, 'days': 1.0, 'son': 1.0}
Word element => {'or': 1.0, 'handles': 1.0, 'bronze': 1.0, 'but': 1.0, 'better': 1.0, 'they': 1.0, 'these': 1.0, 'match': 1.0, 'don': 1.0, 'for': 1.0, 'in': 1.0, 't': 1.0, 'glow': 1.0, 'colored': 1.0, 'the': 2.0, 'ones': 1.0, 'white': 1.0, 'do': 1.0, 'dark': 2.0, 'like': 1.0}
Word element => {'for': 1.0, 'news': 1.0, 'is': 2.0, 'could': 1.0, 'far': 1.0, 'so': 1.0, 'my': 1.0, 'it': 3.0, 'tried': 1.0, 'old': 1.0, 'not': 1.0, 'son': 1.0, 'year': 1.0, 'open': 1.0, '2': 1.0, 'great': 1.0, 'yetand': 1.0, 'me': 1.0, 'couple': 1.0, 'of': 1.0, 'no': 1.0, 'good': 1.0, 'his': 1.0, 'friends': 1.0, 'also': 1.0, 'successthat': 1.0}
Word element => {'they': 1.0, 'purchased': 1.0, 'already': 1.0, 'feel': 1.0, 'house': 1.0, 'work': 1.0, 'will': 1.0, 'but': 1.0, 'them': 1.0, 'whole': 1.0, 'i': 2.0, 'kidco': 1.0, 'previously': 1.0, 'more': 1.0, 'ones': 1.0, 'the': 2.0, 'my': 1.0, 'adults': 1.0, 'testing': 1.0, 'flimsy': 1.0, 'better': 1.0, 'built': 1.0, 'yet': 1.0, 'young': 1.0, 'for': 2.0, 'than': 1.0, 'easy': 1.0, 'much': 1.0, 'to': 2.0, 'bought': 1.0, 'be': 1.0, 'open': 1.0, 'baby': 1.0, 'fine': 1.0, 'is': 1.0, 'too': 1.0}
Word element => {'perfectly': 1.0, 'so': 1.0, 'are': 1.0, 'doorknobs': 1.0, 'don': 1.0, 'price': 1.0, 'cons': 1.0, 'install': 1.0, 'was': 1.0, 'to': 1.0, 'easy': 1.0, 'match': 1.0, 'from': 1.0, 'outside': 1.0, 'but': 1.0, 'house': 1.0, 'they': 1.0, 'brass': 1.0, 'nightthey': 1.0, 'my': 2.0, 'keep': 2.0, 'polished': 1.0, 'fairly': 1.0, 'of': 1.0, 'going': 1.0, 'daughter': 2.0, 'in': 1.0, 'three': 1.0, 'pros': 1.0, 'right': 1.0, 'can': 1.0, 'without': 1.0, 't': 1.0, 'the': 1.0, 'warning': 1.0, 'these': 1.0, 'were': 1.0, 'our': 2.0, 'bedroom': 1.0, 'with': 1.0, 'i': 1.0, 'her': 1.0, 'at': 1.0}
Word element => {'reinstall': 1.0, 'stop': 1.0, 'does': 1.0, 'it': 1.0, 'right': 1.0, 'pop': 1.0, 'openings': 1.0, 'instead': 1.0, 'rush': 1.0, 'in': 1.0, 'times': 1.0, 'few': 1.0, 'securely': 1.0, 'seam': 1.0, 'so': 1.0, 'clever': 1.0, 'closed': 1.0, 'and': 5.0, 'he': 1.0, 'only': 1.0, 'defeating': 1.0, 'open': 2.0, 'from': 1.0, 'have': 2.0, 'sizes': 1.0, 'adults': 1.0, 'but': 1.0, 'can': 1.0, '2': 1.0, 'these': 1.0, 'deal': 1.0, 'the': 5.0, 'a': 5.0, 's': 1.0, 't': 1.0, 'guards': 1.0, 'toddler': 1.0, 'are': 2.0, 'guard': 2.0, 've': 1.0, 'prevented': 1.0, 'easy': 3.0, 'relatively': 1.0, 'big': 1.0, 'install': 1.0, 'o': 1.0, 'quite': 1.0, 'styles': 1.0, 'that': 1.0, 'doors': 1.0, 'our': 1.0, 'to': 3.0, 'force': 1.0, 'him': 1.0, 'squeezed': 1.0, 'more': 1.0, 'is': 2.0, 'me': 1.0, 'not': 2.0, 'always': 1.0, 'of': 2.0, 'they': 2.0, 'y': 1.0, 'range': 1.0, 'complaint': 1.0, 'snap': 1.0, 'doorknob': 1.0, 'fit': 1.0, 'for': 1.0, 'use': 1.0, 'i': 2.0, 'over': 1.0, 'don': 1.0}
Word element => {'out': 1.0, 'tumbling': 1.0, 'handle': 1.0, 'by': 1.0, 'food': 1.0, 'carrying': 1.0, 'opening': 1.0, 'as': 1.0, 'to': 1.0, 'once': 1.0, 'mentioned': 1.0, 'the': 2.0, 'have': 1.0, 'lid': 1.0, 'does': 1.0, 'lead': 1.0, 'stay': 1.0, 'others': 1.0, 'closed': 1.0, 'would': 1.0, 'not': 1.0, 'after': 1.0}
Word element => {'but': 1.0, 'deeper': 1.0, 'are': 1.0, 'goodbyn': 1.0, 'also': 1.0, 'keep': 1.0, 'maybe': 1.0, 'have': 2.0, 'of': 1.0, 'out': 1.0, 'size': 1.0, 'nothing': 1.0, 'come': 2.0, 'never': 1.0, 'has': 2.0, 'far': 1.0, 'stick': 1.0, 'cheese': 1.0, 'and': 3.0, 'smaller': 1.0, 'so': 1.0, 'sandwich': 1.0, 'ilunch': 1.0, 'pack': 3.0, 'everyday': 1.0, 'snack': 3.0, 'two': 1.0, 'i': 2.0, 'no': 1.0, 'juice': 2.0, 'width': 1.0, 'lunch': 1.0, 'each': 1.0, 've': 1.0, 'in': 5.0, 'helps': 1.0, 'there': 1.0, 'up': 1.0, 'that': 3.0, 'box': 6.0, 'the': 8.0, 'is': 2.0, 'more': 1.0, 's': 1.0, 'we': 4.0, 'a': 4.0, 'owned': 1.0, 'my': 1.0, 'lid': 2.0, 'or': 2.0, 'daughter': 1.0, 'yogurt': 1.0, 'problems': 1.0, 'kit': 1.0, 'for': 2.0, 'with': 3.0, 'roughly': 1.0, 'now': 1.0, 'our': 1.0, 'as': 1.0, 'to': 2.0, 'it': 2.0, 'elephant': 1.0, 'month': 1.0, 'off': 1.0, 'enough': 1.0, 'bento': 1.0, 'room': 1.0, 'cut': 1.0, 'dry': 2.0, 'sometimes': 1.0, 'on': 1.0, 'put': 2.0, 'an': 2.0, 'just': 1.0, 'applesauce': 1.0, 'fruit': 1.0, 'pouch': 1.0, 'smoothie': 1.0, 'same': 2.0, 'compartment': 2.0}
Word element => {'eat': 1.0, 'way': 1.0, 'birthday': 1.0, 'first': 1.0, 'their': 1.0, 'parent': 1.0, 'every': 1.0, 'know': 1.0, 'his': 1.0, 'keeping': 1.0, 'learning': 2.0, 'yes': 1.0, 'stroller': 1.0, 'planes': 1.0, 'foods': 1.0, 'dry': 1.0, 'other': 1.0, 'help': 1.0, 'at': 1.0, 'keep': 1.0, 'still': 1.0, 'cars': 1.0, 'son': 2.0, 'my': 2.0, 'wonderful': 1.0, 'use': 2.0, 'purchased': 1.0, 'skeptical': 1.0, 'of': 2.0, 'he': 1.0, '6': 1.0, 'it': 10.0, 'this': 2.0, 'fault': 1.0, 'things': 1.0, '22': 2.0, 'with': 1.0, 'one': 1.0, 'months': 3.0, 'won': 1.0, 'never': 1.0, 'curve': 1.0, 'would': 1.0, 'i': 8.0, 'them': 1.0, 'night': 1.0, 'for': 3.0, 'love': 1.0, 'product': 2.0, 'more': 1.0, 'is': 3.0, 'say': 1.0, 'fidge': 1.0, 'after': 1.0, 'but': 1.0, 'food': 2.0, 'was': 1.0, 'and': 3.0, 'loves': 1.0, 'lap': 1.0, 'styles': 1.0, 'must': 1.0, 'have': 1.0, 'to': 2.0, 'all': 1.0, 'a': 3.0, 'we': 2.0, 'take': 2.0, 'childs': 1.0, 'outings': 1.0, 'fill': 1.0, 'own': 1.0, 'fun': 1.0, 'both': 1.0, 'before': 1.0, 'does': 2.0, 'the': 5.0, 'cold': 2.0, 'on': 2.0, 'put': 1.0, 'age': 1.0, 'in': 4.0, 'about': 1.0, 'no': 1.0, 'give': 1.0, 'not': 2.0}
Word element => {'with': 1.0, 'made': 1.0, 'plastic': 1.0, 'snacks': 1.0, 'lunch': 1.0, 'both': 1.0, 'love': 1.0, 'lid': 1.0, 'this': 1.0, 'space': 1.0, 'fitting': 2.0, 'cute': 1.0, 'good': 1.0, 'of': 2.0, 'large': 1.0, 'very': 1.0, 'and': 2.0, 'lots': 1.0, 'durable': 1.0, 'for': 1.0}
Word element => {'better': 1.0, 'with': 1.0, 'available': 1.0, 'brands': 1.0, 'much': 1.0, 'it': 1.0, 'all': 1.0, 'but': 1.0, 'are': 1.0, 'the': 2.0, 'lid': 1.0, 'close': 2.0, 'quality': 1.0, 'like': 1.0, 'of': 1.0, 'cheaper': 1.0, 'does': 2.0, 'i': 1.0, '4': 1.0, 'at': 1.0, 'not': 2.0, 'idea': 1.0, 'compartments': 1.0}
Word element => {'air': 1.0, 'keep': 1.0, 'able': 1.0, 'designers': 1.0, 'hope': 1.0, 'this': 2.0, 'children': 1.0, 'who': 1.0, 'snacks': 2.0, 'defeats': 1.0, 'bag': 1.0, 'items': 1.0, 'fruit': 1.0, 'most': 1.0, 'useful': 1.0, 'designed': 1.0, 'ok': 1.0, '34': 2.0, 'stars': 1.0, '3': 1.0, 'only': 1.0, 'up': 1.0, 'when': 1.0, 'soggy': 1.0, 'everything': 1.0, 'really': 1.0, 'pb': 1.0, 'bell': 1.0, 'watermelon': 2.0, 'many': 1.0, 'grapes': 1.0, 'had': 1.0, 'test': 1.0, 'leak': 1.0, 'will': 2.0, 'purpose': 1.0, 'from': 1.0, 'negative': 1.0, 'big': 1.0, 'pluses': 1.0, 'used': 1.0, 'd': 1.0, 'previously': 1.0, 'cary': 1.0, 'our': 1.0, 'item': 2.0, 'opened': 1.0, 'lid': 3.0, 'on': 3.0, 'currently': 1.0, 'pyrex': 1.0, 'it': 4.0, 'easy': 2.0, 'kind': 2.0, 'ziplock': 1.0, 's': 3.0, 'a': 9.0, 'and': 6.0, 'super': 1.0, 'each': 2.0, 'at': 1.0, 'is': 8.0, 'more': 1.0, 'year': 1.0, 'product': 2.0, 'for': 9.0, 'why': 1.0, 'just': 1.0, 'slices': 1.0, 'large': 1.0, 'wants': 1.0, 'bento': 1.0, '5': 3.0, 'once': 1.0, 'room': 2.0, 'give': 2.0, 'there': 2.0, 'containers': 1.0, 'ages': 1.0, 'ordered': 1.0, 'one': 2.0, 'my': 1.0, 'entire': 3.0, 'liked': 1.0, 'box': 4.0, 'compartments': 1.0, 'that': 5.0, 'tight': 1.0, 'would': 2.0, 'boy': 1.0, 'sandwich': 2.0, 'juice': 2.0, 'school': 1.0, '1': 1.0, 'tunk': 1.0, 'lunch': 5.0, 'which': 2.0, 'based': 1.0, 'rework': 1.0, 'without': 1.0, 'remove': 1.0, 'days': 1.0, 'putting': 1.0, 'i': 4.0, 'of': 6.0, 'the': 20.0, 'compartment': 2.0, '2': 3.0, 'but': 2.0, 'so': 2.0, 'can': 1.0, 'to': 7.0, 'pepper': 1.0, 'as': 5.0, 'adorable': 1.0, 'j': 1.0, 'their': 2.0, 'container': 1.0, 'week': 1.0, 'lunchbox': 2.0, 'was': 3.0, 'expecting': 1.0, 'work': 1.0, 'drive': 1.0, 'over': 2.0, 'open': 1.0, 'hard': 1.0, 'yr': 1.0, 'old': 2.0, 'pry': 1.0, 'off': 1.0, 'enough': 1.0, 'half': 1.0, 'all': 3.0, 'an': 1.0, 'other': 1.0, 'we': 4.0, 'take': 1.0, 'reviews': 1.0, 'dry': 1.0, 'not': 2.0, 'be': 1.0, 'any': 1.0, 'idea': 1.0, 'sizes': 1.0, 'are': 2.0, 'healthy': 1.0, 'than': 1.0, 'ample': 1.0, 'with': 1.0, 'snack': 3.0, 'plenty': 2.0, 'glass': 1.0, 'attractive': 1.0, 'in': 3.0, 'right': 1.0, 'much': 1.0, 'love': 1.0, 'far': 1.0, 'he': 1.0, 'eat': 1.0, 'very': 1.0}
Word element => {'between': 1.0, 'processes': 1.0, 'hopefully': 1.0, 'scheduled': 1.0, 'date': 1.0, 'currently': 1.0, 'stock': 1.0, 'boxes': 1.0, 'no': 1.0, 'thank': 1.0, 'done': 1.0, 'now': 1.0, 'seller': 1.0, 'through': 1.0, 'items': 1.0, 'or': 1.0, 'about': 1.0, 'updated': 1.0, 'inquire': 1.0, 'put': 1.0, 'power': 1.0, 'so': 1.0, 'contacted': 1.0, 'even': 1.0, 'overlap': 1.0, 'enough': 2.0, 'next': 1.0, 'has': 2.0, 'low': 1.0, 'closure': 1.0, 'tolerances': 1.0, 'seem': 1.0, 'doesn': 1.0, 'ton': 1.0, 'item': 1.0, 'unit': 1.0, 'piece': 1.0, 'click': 1.0, 'top': 1.0, 'around': 1.0, 'plastic': 1.0, 'amazon': 1.0, 'blue': 1.0, 'cracking': 1.0, 'defect': 1.0, 'addition': 1.0, 'pulling': 1.0, 'aware': 1.0, 'wiggle': 2.0, 'opening': 1.0, 'anything': 1.0, 'without': 1.0, 'slightly': 1.0, 'size': 1.0, 'stay': 2.0, 'still': 1.0, 'box': 1.0, 'ordered': 1.0, 'be': 1.0, 'multiple': 1.0, 'was': 1.0, 'release': 1.0, 'bent': 1.0, 'other': 4.0, 'being': 1.0, 'everything': 1.0, 'same': 1.0, 'trying': 1.0, 'girls': 1.0, 'opened': 1.0, 'lid': 3.0, 'of': 7.0, 'the': 17.0, 'room': 2.0, 'these': 2.0, 'close': 2.0, '4th': 1.0, 'twin': 1.0, 'seemed': 1.0, 'edge': 1.0, '1': 1.0, 'nothing': 1.0, 'out': 1.0, 'arrived': 1.0, 'use': 1.0, 'purchased': 1.0, 'are': 2.0, 'first': 1.0, 'already': 1.0, 'it': 11.0, 'greyedit': 1.0, 'snack': 1.0, 'weren': 1.0, 'with': 1.0, 'they': 2.0, 'pink': 1.0, 'two': 2.0, 'i': 6.0, 'my': 2.0, 'bagdabbawalla': 1.0, 'way': 1.0, 'lunches': 1.0, 'just': 5.0, 'off': 1.0, 'tried': 1.0, 'for': 6.0, 't': 2.0, 'replacement': 2.0, 'fit': 1.0, 'slight': 1.0, 'a': 8.0, 'time': 3.0, 'suggested': 1.0, 'pushing': 2.0, 'edit': 1.0, 'taking': 1.0, 'blushing': 1.0, 'again': 2.0, 'upon': 1.0, 'never': 1.0, 'appeared': 1.0, 'you': 1.0, 'upside': 1.0, 'sealed': 1.0, 'sides': 1.0, 'returning': 1.0, 'however': 2.0, 'after': 3.0, 'on': 6.0, 'july': 1.0, 'defective': 3.0, 'turning': 1.0, 'straight': 1.0, 'to': 9.0, 'hoping': 1.0, 'down': 2.0, 'table': 1.0, 'and': 12.0, 'closed': 2.0, 'interestingly': 1.0, 'manufacturing': 1.0, 'one': 4.0, 'lot': 2.0, 'too': 2.0, 'get': 2.0, 'lunch': 2.0, 'side': 1.0, 'gripping': 1.0, 'then': 3.0, 'this': 1.0, 'manufacturer': 2.0, 'barely': 1.0, 'perfect': 1.0, '2': 1.0, 'thing': 1.0, 'replacements': 1.0, 'in': 3.0, 'm': 1.0, 'work': 1.0, 'there': 3.0, 'monkey': 1.0, 'problems': 1.0, 'that': 2.0, 'magenta': 1.0, 'because': 1.0, 'rim': 1.0, 'does': 2.0, 'at': 1.0, 'is': 7.0, 'their': 3.0, 'unable': 1.0, 'units': 1.0, 'bags': 1.0, 'bag': 1.0, 'also': 1.0, 'received': 2.0, 'snap': 1.0}
Word element => {'everywhere': 1.0, 'lock': 1.0, 'bag': 1.0, 'to': 2.0, 'had': 1.0, 'sort': 1.0, 'off': 2.0, 'of': 1.0, 'cant': 1.0, 'up': 1.0, 'some': 1.0, 'super': 1.0, 'it': 3.0, 'with': 1.0, 'i': 3.0, 'overall': 1.0, 'in': 2.0, 'wish': 2.0, 'the': 2.0, 'clip': 1.0, 'cute': 2.0, 'food': 1.0, 'but': 2.0, 'doesn': 1.0, 'top': 2.0, 'design': 1.0, 'never': 1.0, 'is': 2.0, 'correctly': 1.0, 'so': 1.0, 'fly': 1.0, 'go': 2.0, 'we': 1.0, 't': 1.0, 'a': 2.0, 'could': 1.0, 'out': 1.0, 'daughter': 1.0, 'closed': 1.0, 'and': 2.0, 'show': 1.0, 'because': 1.0, 'has': 1.0, 'be': 1.0, 'wrapped': 1.0, 'how': 1.0, 'plastic': 1.0, 'my': 1.0, 'tightly': 1.0}
Word element => {'for': 1.0, 'am': 1.0, 'seal': 1.0, 'doesn': 1.0, 'everywhere': 1.0, 'went': 1.0, 'contacting': 1.0, 'just': 1.0, 'snacks': 1.0, 'all': 1.0, 'boon': 1.0, 'elephant': 1.0, 'super': 1.0, 'packed': 1.0, 'i': 2.0, 'disappointed': 1.0, 'cute': 1.0, 'gift': 1.0, 'so': 1.0, 'after': 1.0, 'with': 1.0, 'this': 1.0, 'it': 3.0, 'replacement': 1.0, 'as': 1.0, 'up': 1.0, 'getting': 1.0, 'and': 1.0, 'a': 2.0, 'opened': 1.0, 't': 1.0, 'the': 1.0, 'fruit': 1.0}
Word element => {'bag': 1.0, 'put': 1.0, 'doesn': 1.0, 'but': 1.0, 'easily': 1.0, 'on': 1.0, 'went': 1.0, 'love': 1.0, 'can': 1.0, 'our': 2.0, 'to': 1.0, 'come': 1.0, 'it': 2.0, 'first': 1.0, 'this': 1.0, 'into': 1.0, 'or': 1.0, 'off': 2.0, 'lid': 1.0, 'we': 2.0, 'and': 1.0, 'get': 1.0, 'carried': 2.0, 'her': 1.0, 'wherever': 1.0, 'being': 1.0, 'how': 1.0, 'gave': 1.0, 'daughter': 1.0, 'compartments': 1.0, 'when': 3.0, 'she': 2.0, 'large': 1.0, 't': 1.0, 'the': 2.0, 'are': 1.0}
Word element => {'safe': 1.0, 'not': 1.0, 'easy': 1.0, '1': 1.0, 'yrs': 1.0, 'cap': 1.0, 'old': 1.0, 'is': 2.0, 'son': 2.0, 'was': 1.0, '3': 1.0, 'it': 1.0, 'he': 1.0, 'with': 1.0, 'excited': 1.0, 'my': 1.0, 'falls': 1.0, 'his': 1.0, 'new': 1.0, 'snack': 1.0, 'box': 1.0, 'but': 1.0, '2': 1.0, 'the': 1.0, 'great': 1.0, 'dissapointment': 1.0, 'so': 1.0}
Word element => {'to': 1.0, 'compared': 1.0, 'that': 1.0, 'best': 1.0, 'on': 1.0, 'stay': 1.0, 'i': 2.0, 'doesn': 1.0, 'the': 3.0, 'are': 2.0, 'similar': 1.0, 'as': 1.0, 'and': 1.0, 'it': 1.0, 'love': 1.0, 'great': 1.0, 'compartments': 1.0, 'have': 1.0, 'containers': 1.0, 'other': 1.0, 'lid': 1.0, 't': 1.0}
Word element => {'all': 1.0, 'drill': 1.0, 'locks': 1.0, 'to': 1.0, 'tighten': 1.0, 'want': 1.0, 'them': 1.0, 'didn': 1.0, 'just': 1.0, 'i': 1.0, 'for': 1.0, 'love': 1.0, 'holes': 1.0, 't': 1.0, 'these': 2.0, 'the': 2.0, 'great': 1.0, 'latch': 1.0, 'and': 1.0, 'as': 3.0, 'work': 1.0, 'down': 1.0, 'long': 1.0, 'way': 1.0, 'you': 1.0}
Word element => {'bathroom': 1.0, 'of': 1.0, 'out': 1.0, 'somewhat': 1.0, 'are': 1.0, 'that': 1.0, 'places': 1.0, 'for': 1.0, 'as': 1.0, 'best': 1.0, 'seemed': 1.0, 'quite': 1.0, 'and': 1.0, 'but': 1.0, 'than': 1.0, 'device': 1.0, 'sight': 1.0, 'mechanism': 1.0, 'low': 1.0, 'used': 1.0, 'works': 1.0, 'actual': 1.0, 'well': 1.0, 'locking': 1.0, 'a': 1.0, 'such': 1.0, 'the': 2.0, 'my': 1.0, 'bit': 1.0, 'pictured': 1.0, 'larger': 1.0, 'is': 1.0, 'not': 1.0, 'cabinets': 1.0, 'particularly': 1.0, 'attractive': 1.0, 'eyes': 1.0, 'to': 1.0}
Word element => {'lathes': 1.0, 'one': 1.0, 'long': 1.0, 'than': 1.0, 'much': 1.0, 'find': 1.0, 'job': 1.0, 'theydo': 1.0, 's': 1.0, 'it': 1.0, 'ok': 1.0, 'open': 1.0, 'to': 4.0, 'be': 2.0, 'cabinet': 1.0, 'easy': 1.0, 'easier': 2.0, 'thought': 1.0, 'are': 2.0, 'they': 3.0, 'door': 2.0, 'the': 2.0, 'these': 1.0, 'latches': 1.0, 'but': 1.0, 'put': 1.0, 'like': 1.0, 'and': 3.0, 'i': 3.0, 'piece': 1.0, 'on': 1.0, 'cabinets': 1.0, 'can': 1.0, 'little': 1.0, 'tightened': 1.0, 'adjusted': 1.0, 'fit': 1.0, 'use': 1.0, 'most': 1.0, 'would': 1.0, 'a': 1.0}
Word element => {'pinching': 1.0, 'stop': 1.0, 'might': 1.0, 'gets': 1.0, 'ignores': 1.0, 'going': 1.0, 'kid': 1.0, 'enough': 1.0, 'tight': 1.0, 'hold': 1.0, 'doesn': 1.0, 'us': 1.0, 'keep': 1.0, 'did': 1.0, 'bands': 1.0, 'rubber': 1.0, 'after': 1.0, 'this': 2.0, 'our': 1.0, 'how': 1.0, 'put': 1.0, 'much': 2.0, 'not': 3.0, 'little': 2.0, 'figure': 1.0, 'my': 1.0, 'out': 2.0, 'locks': 2.0, 'child': 1.0, 'for': 3.0, 'and': 4.0, 'closed': 2.0, 'far': 3.0, 'if': 1.0, 'buttons': 1.0, 'we': 3.0, 'then': 1.0, 'a': 4.0, 't': 3.0, 'have': 2.0, 'find': 1.0, 'was': 2.0, 'opens': 1.0, 'that': 2.0, 'come': 1.0, 'cabinet': 3.0, 'girl': 1.0, 'cabinets': 2.0, 'first': 1.0, 'are': 3.0, 'lock': 2.0, 'door': 1.0, 'more': 1.0, 'type': 2.0, 'doors': 3.0, 'couldn': 1.0, 'i': 1.0, 'up': 1.0, 'fidgets': 1.0, 'takes': 1.0, 'handles': 3.0, 'wood': 1.0, '2': 2.0, 'but': 2.0, 'these': 1.0, 'they': 1.0, 'happened': 1.0, 'hands': 2.0, 'cause': 1.0, 'simple': 1.0, 'open': 4.0, 'work': 2.0, 'hard': 1.0, 'thought': 1.0, 'it': 7.0, 'modern': 1.0, 'crawls': 1.0, 'get': 1.0, 'kind': 1.0, 'by': 1.0, 'why': 1.0, 'just': 2.0, 'pulls': 2.0, 'long': 1.0, 'on': 6.0, 'at': 2.0, 'is': 2.0, 'handle': 1.0, 'with': 3.0, 'bit': 1.0, 'pretty': 1.0, 'to': 10.0, 'against': 1.0, 'can': 2.0, 'so': 4.0, 'looking': 1.0, 'interested': 1.0, 'checking': 1.0, 'force': 1.0, 'has': 1.0, 'them': 4.0, 'she': 5.0, 'baby': 1.0, 'finger': 1.0, 'the': 20.0, 'of': 3.0, 'moves': 1.0, 'an': 1.0, 'hitting': 1.0, 'biggest': 1.0, 'fun': 1.0, 'both': 2.0, 'issue': 1.0, 'sit': 1.0, 'when': 1.0, 'try': 1.0, 'too': 1.0, 'one': 1.0, 'or': 1.0, 'about': 1.0, 'inch': 1.0, 'pinch': 1.0, 'her': 1.0, 'in': 1.0, 'don': 1.0, 'opening': 1.0, 'quite': 1.0, 'big': 1.0, 'something': 2.0, 'hand': 2.0}
Word element => {'pleased': 1.0, 'my': 1.0, 'hard': 1.0, 'to': 1.0, '1': 1.0, 'good': 1.0, 'open': 1.0, 'knobs': 1.0, 'quality': 1.0, 'and': 2.0, 'works': 1.0, 'just': 1.0, 'me': 1.0, 'easy': 1.0, 'with': 1.0, '6': 1.0, 'too': 1.0, 'year': 2.0, 'for': 2.0}
Word element => {'of': 1.0, 'bit': 1.0, 'a': 1.0, 'to': 1.0, 'adult': 1.0, 'bypassed': 1.0, 'so': 1.0, 'locks': 1.0, 'an': 1.0, 'work': 1.0, 'instantly': 1.0, 'bought': 1.0, 'old': 2.0, 'we': 1.0, 'require': 1.0, 'open': 1.0, 'year': 1.0, 'for': 1.0, 'one': 1.0, 'my': 2.0, 'boy': 1.0, 'they': 3.0, 'these': 1.0, 'great': 1.0, 'concentration': 1.0, 'and': 2.0, 'do': 1.0, 'too': 1.0, 'almost': 1.0, 'good': 1.0, 'take': 1.0, 'both': 1.0, 'hands': 1.0}
Word element => {'them': 1.0, 'get': 1.0, 't': 1.0, 'one': 1.0, 'well': 1.0, 'year': 1.0, 'required': 1.0, 'drilling': 1.0, 'these': 1.0, 'made': 1.0, 'are': 2.0, 'my': 1.0, 'no': 1.0, 'favorite': 1.0, 'and': 2.0, 'lock': 1.0, 'through': 1.0, 'to': 1.0, 'style': 1.0, 'install': 1.0, 'can': 1.0, 'cake': 1.0, 'given': 1.0}
Word element => {'how': 1.0, 'hasn': 1.0, '18': 1.0, 'my': 1.0, 'little': 1.0, 'up': 1.0, 'excess': 1.0, 'tabs': 1.0, 'trimmed': 1.0, 'month': 1.0, 'securely': 1.0, 'still': 1.0, 'any': 1.0, 'and': 1.0, 'woodwork': 1.0, 'doing': 1.0, 'out': 1.0, 'clean': 1.0, 'them': 3.0, 'well': 1.0, 'a': 2.0, 'plastic': 1.0, 'click': 1.0, 'damage': 1.0, 'without': 1.0, 'old': 1.0, 'i': 2.0, 'to': 3.0, 'had': 1.0, 'yet': 1.0, 'for': 1.0, 'open': 1.0, 'from': 1.0, 'permanent': 1.0, 'year': 1.0, 'work': 1.0, 've': 1.0, 'figured': 1.0, 't': 1.0, 'the': 2.0, 'these': 1.0, 'your': 1.0, 'they': 1.0, 'on': 1.0, 'almost': 1.0}
Word element => {'t': 1.0, 'now': 1.0, 'and': 1.0, 'of': 1.0, 'one': 1.0, 'so': 1.0, 'super': 1.0, 'those': 1.0, 'to': 1.0, 'hard': 1.0, 'open': 1.0, 'trash': 2.0, 'used': 1.0, 'our': 1.0, 'dog': 1.0, 'can': 2.0, 'we': 2.0, 'get': 2.0, 'into': 2.0, 'the': 2.0}
Word element => {'perfect': 1.0, 'on': 1.0, 'breaking': 1.0, 'mechanism': 1.0, 'safety': 1.0, 'old': 1.0, 'problems': 1.0, 'with': 1.0, 'week': 1.0, 'up': 1.0, 'child': 1.0, 'over': 1.0, 'these': 2.0, 'u': 1.0, 'using': 1.0, 'rating': 1.0, 'off': 1.0, 'right': 1.0, 'looking': 1.0, 'it': 1.0, 'looked': 1.0, 'children': 1.0, 'only': 1.0, 'open': 2.0, 'how': 1.0, 'is': 1.0, 'away': 1.0, 'and': 1.0, 'our': 1.0, 'to': 2.0, 'ended': 1.0, 'package': 2.0, 'for': 2.0, 'without': 1.0, 'the': 11.0, 'those': 1.0, 'not': 2.0, 'shaped': 1.0, 'at': 2.0, 'am': 1.0, 'when': 1.0, 'i': 5.0, 'reached': 1.0, 'opened': 1.0, 'star': 1.0, 'back': 1.0, 'zip': 1.0, 'replacement': 1.0, 'locks': 4.0, 'out': 1.0, 'quality': 1.0, 'them': 1.0, 'instructions': 1.0, 'so': 1.0, 'took': 1.0, 'far': 1.0, 'my': 1.0, 'have': 2.0, 'able': 1.0, 'figure': 1.0, 'little': 1.0, 'worried': 1.0, 'we': 1.0, 'could': 1.0, 'a': 3.0, 'no': 1.0, 'tie': 1.0, 'about': 1.0, 'of': 1.0, 'were': 2.0, 'parts': 1.0, 'been': 2.0, 'that': 1.0, 'reason': 1.0}
Word element => {'kitchen': 1.0, 'into': 1.0, 'get': 1.0, 'able': 1.0, 'from': 1.0, 'child': 1.0, 'our': 1.0, 'to': 1.0, 'being': 1.0, 'product': 1.0, 'cabinets': 1.0, 'is': 2.0, 'the': 2.0, 'it': 2.0, 'works': 1.0, 'way': 1.0, 'this': 1.0, 'intended': 1.0, 'and': 1.0, 'good': 1.0, 'keeps': 1.0}
Word element => {'cabinet': 1.0, 'opening': 1.0, 'from': 1.0, 'close': 1.0, 'them': 2.0, 'a': 1.0, 'to': 1.0, 'forget': 1.0, 'if': 1.0, 'distraction': 1.0, 'toddler': 1.0, 'back': 1.0, 'doors': 1.0, 'my': 1.0, 'are': 1.0, 'clicking': 1.0, 'it': 1.0, 'we': 1.0, 'the': 1.0, 'great': 1.0, 'these': 1.0, 'has': 1.0, 'good': 1.0, 'fun': 1.0, 'together': 1.0, 'so': 1.0, 's': 1.0, 'also': 1.0}
Word element => {'us': 1.0, 'that': 1.0, 'bit': 1.0, 'can': 1.0, 'for': 1.0, 'doors': 1.0, 'they': 2.0, 'a': 2.0, 'are': 1.0, 'the': 1.0, 'work': 3.0, 'but': 3.0, 'get': 1.0, 'will': 1.0, 'little': 2.0, 'pulled': 1.0, 'tricky': 1.0, 'be': 1.0, 'still': 1.0, 'to': 1.0, 'open': 2.0}
Word element => {'open': 1.0, 'to': 1.0, 'not': 1.0, 'a': 3.0, 'few': 1.0, 'once': 1.0, 'for': 1.0, 'liked': 1.0, 'lock': 1.0, 'and': 1.0, 'before': 1.0, 'drawer': 1.0, 'opened': 1.0, 'this': 1.0, 'it': 3.0, 'became': 1.0, 'mechanism': 1.0, 'times': 1.0, 'i': 1.0, 'took': 1.0, 'baby': 1.0, 'about': 1.0, 'week': 1.0, 'the': 1.0, 'opening': 1.0, 'got': 1.0, 'smooth': 1.0, 'easy': 2.0}
Word element => {'messes': 1.0, 'and': 1.0, 'needed': 1.0, 'formula': 1.0, 'no': 1.0, 'of': 1.0, 'amount': 1.0, 'the': 1.0, 'this': 1.0, 'easily': 1.0, 'fits': 1.0, 'perfect': 1.0, 'absolutely': 1.0, 'it': 1.0, 'container': 1.0, 'for': 1.0, 'traveling': 1.0, 'is': 1.0, 'with': 1.0, 'baby': 1.0}
Word element => {'bottle': 1.0, 'bag': 1.0, 'for': 1.0, 'and': 1.0, 'nice': 1.0, 't': 1.0, 'diaper': 1.0, 'the': 2.0, 'are': 1.0, 'a': 3.0, 'doesn': 1.0, 'is': 1.0, 'pouring': 1.0, 'dispenser': 1.0, 'stick': 1.0, 'this': 1.0, 'it': 1.0, 'formula': 1.0, 'to': 1.0, 'size': 1.0, 'plastic': 1.0, 'when': 1.0, 'you': 1.0, 'into': 1.0}
Word element => {'into': 1.0, 'shocked': 1.0, 'space': 1.0, 'get': 1.0, 'tons': 1.0, 'took': 1.0, 'which': 1.0, 'kind': 1.0, 'old': 1.0, 'markers': 1.0, 'worth': 1.0, 'behind': 1.0, 'before': 1.0, 'was': 3.0, 'had': 2.0, 'cheap': 1.0, 'i': 3.0, 'pouring': 1.0, 'are': 1.0, 'helps': 1.0, 'there': 1.0, 'bottles': 1.0, 'divided': 1.0, 'amount': 1.0, 'on': 1.0, 'goes': 1.0, 'make': 2.0, 'best': 1.0, 'lid': 3.0, 'mouth': 1.0, 'wide': 1.0, 'so': 1.0, 'can': 1.0, 'but': 1.0, 'dispenser': 3.0, 'two': 1.0, 'little': 3.0, 'you': 3.0, 'a': 5.0, 'we': 2.0, 't': 1.0, 's': 2.0, 'is': 6.0, 'my': 1.0, 'miserable': 1.0, 'remove': 1.0, 'with': 2.0, 'bottle': 1.0, 'few': 1.0, 'this': 4.0, 'have': 1.0, 'powder': 3.0, 'pour': 1.0, 'other': 1.0, 'ease': 1.0, 'extra': 1.0, 'out': 1.0, 'nothing': 1.0, 'and': 3.0, 'one': 2.0, 'stays': 2.0, 'stacking': 1.0, 'avent': 1.0, 'great': 2.0, 'big': 1.0, 'hand': 1.0, 'dollars': 1.0, 'nails': 1.0, 'do': 1.0, 'only': 1.0, 'of': 3.0, 'natural': 1.0, 'finger': 1.0, 'the': 14.0, 'deal': 1.0, 've': 1.0, 'same': 1.0, 'super': 1.0, 'never': 1.0, 'probably': 1.0, 'any': 1.0, 'to': 8.0, 'could': 1.0, 'spilling': 2.0, 'no': 2.0, 'isn': 1.0, 'up': 2.0, 'takes': 1.0, 'issues': 1.0, 'hassle': 1.0, 'broken': 1.0, 'aligned': 2.0, 'compact': 1.0, '9oz': 1.0, 'need': 1.0, 'sure': 2.0, 'correctly': 2.0, 'show': 1.0, 'it': 6.0, 'wear': 1.0, 'align': 1.0, 'that': 4.0, 'easily': 1.0, 'compartments': 1.0, 'essential': 1.0, 'keep': 1.0, 'from': 2.0, 'thing': 1.0, 'compartment': 1.0, 'split': 1.0, 'second': 1.0, 'washes': 1.0, 'in': 1.0, 'dishwasher': 1.0, 'point': 1.0}
Word element => {'some': 1.0, 'filling': 1.0, 'big': 1.0, 'but': 1.0, 'rim': 1.0, 'past': 1.0, 'might': 1.0, 'a': 1.0, 'go': 1.0, 'fill': 1.0, 'bottle': 2.0, 'so': 2.0, 'issue': 1.0, 'protruding': 1.0, 'spill': 1.0, 'was': 2.0, 'i': 1.0, 'one': 1.0, 'then': 1.0, 'easier': 1.0, 'that': 3.0, 'fills': 1.0, 'neck': 1.0, 'bottles': 1.0, 'the': 11.0, 'instead': 1.0, 'there': 1.0, 'up': 2.0, 'of': 2.0, 'stacking': 1.0, 'dispenser': 4.0, 'thing': 1.0, 'top': 2.0, 'chamber': 1.0, 'wish': 1.0, 'carries': 1.0, 'you': 1.0, 'when': 1.0, 'easily': 1.0, 'formula': 2.0, 'worry': 1.0, 'powdered': 1.0, 'she': 2.0, 'remove': 1.0, 'it': 4.0, 'only': 2.0, 'to': 6.0, 'as': 1.0, 'more': 1.0, 'is': 6.0, 'stage': 1.0, 'easy': 2.0, 'get': 1.0, 'and': 3.0, 'coordinated': 1.0, 'if': 1.0, '10': 1.0, 'would': 1.0, 'each': 1.0, 'feels': 1.0, 'spin': 1.0, 'grandma': 1.0, 'correct': 1.0, 'ounce': 1.0, 'throw': 1.0, 'secure': 1.0, 'will': 1.0, 'not': 3.0, 'pop': 1.0, 'enough': 1.0, 'off': 1.0, 'clean': 1.0, 'dishwasher': 1.0, 'in': 1.0}
Word element => {'mean': 1.0, 'qualities': 1.0, 'right': 1.0, 'looking': 1.0, 'still': 1.0, 'm': 1.0, 'out': 1.0, 'roll': 1.0, 'really': 1.0, 'will': 1.0, 'also': 1.0, 'stiff': 1.0, 'side': 2.0, 'from': 1.0, 'twists': 1.0, 'one': 1.0, 'dispenses': 1.0, 'round': 1.0, 'giving': 1.0, 'stars': 1.0, 'for': 2.0, 'reason': 1.0, 'only': 1.0, 'cap': 1.0, 'my': 1.0, 'work': 1.0, 'but': 2.0, 'all': 2.0, 'actual': 1.0, 'to': 6.0, 'doesn': 1.0, 'spill': 1.0, 'was': 1.0, 'pop': 1.0, 'awkward': 1.0, 'compartments': 1.0, 'get': 1.0, 'easy': 2.0, 'top': 1.0, 'off': 2.0, 'section': 1.0, 'enough': 1.0, 'refill': 1.0, 'the': 8.0, 'diaper': 1.0, 'tried': 1.0, 'i': 4.0, 'whole': 1.0, 'brands': 1.0, 'impressed': 1.0, 'and': 3.0, 'over': 1.0, 'around': 1.0, 'holds': 1.0, 'is': 3.0, 'with': 2.0, 'it': 4.0, 'this': 2.0, 'come': 1.0, 'little': 1.0, 'dispenser': 2.0, 'have': 2.0, '5': 1.0, 'formula': 4.0, 'other': 1.0, 'that': 3.0, 'something': 1.0, 'accidentally': 1.0, 'in': 2.0, 'bag': 1.0, 'not': 1.0, 'stay': 1.0, 'time': 1.0, 'bottle': 1.0, 'separated': 1.0, 't': 1.0, 'a': 3.0, 's': 1.0, 'or': 1.0, 'worth': 1.0, 'of': 2.0, 'per': 1.0}
Word element => {'well': 1.0, 'clean': 1.0, 'bag': 1.0, 'each': 1.0, 'two': 1.0, 'use': 1.0, 'to': 2.0, 'have': 2.0, 'formula': 2.0, 've': 1.0, 'of': 1.0, 'actually': 1.0, 'keeps': 1.0, 'dispensers': 1.0, 'as': 1.0, 'best': 1.0, 'several': 1.0, 'brands': 1.0, 'used': 1.0, 'but': 1.0, 'far': 1.0, 'store': 1.0, 'easy': 2.0, 'other': 1.0, 'we': 3.0, 'for': 1.0, 'one': 2.0, 'is': 2.0, 'by': 1.0, 'diaper': 1.0, 'the': 2.0, 'contained': 1.0, 'this': 1.0, 'it': 1.0, 'and': 2.0}
Word element => {'this': 1.0, 'have': 1.0, 'happy': 1.0, 'job': 1.0, 'while': 1.0, 'but': 1.0, 'easy': 1.0, 'baby': 1.0, 'its': 1.0, 'clean': 1.0, 'to': 3.0, 'store': 1.0, 'out': 2.0, 'and': 1.0, 'pour': 1.0, 'with': 1.0, 'is': 1.0, 'formula': 1.0, 'design': 1.0, 'did': 1.0, 'simple': 1.0}
Word element => {'lol': 1.0, 'wrapped': 1.0, 'before': 1.0, 'fits': 1.0, 'my': 1.0, 'i': 2.0, 'pockets': 2.0, 'tried': 1.0, 'size': 1.0, 'pretty': 1.0, 'a': 2.0, 'can': 3.0, 'but': 1.0, 'end': 1.0, 'its': 1.0, 'look': 1.0, 'perfect': 1.0, 'this': 1.0, 'christmas': 1.0, 'crayons': 1.0, 'and': 4.0, 'know': 1.0, 'like': 1.0, 'tray': 2.0, 'that': 2.0, 'duaghter': 1.0, 'would': 1.0, 'sides': 1.0, 'doesnt': 1.0, 'be': 1.0, 'when': 1.0, 'gets': 1.0, 'will': 2.0, 'coloring': 1.0, 'it': 6.0, 'she': 3.0, 'love': 1.0, 'for': 1.0, 'fit': 1.0, 'big': 1.0, 'great': 1.0, 'the': 5.0, 'good': 1.0, 'her': 1.0, 'in': 2.0, 'put': 1.0, 'make': 1.0, 'on': 2.0, 'couch': 1.0, 'sit': 1.0, 'between': 1.0, 'cushions': 1.0}
Word element => {'themwith': 1.0, 'filling': 1.0, 'looking': 1.0, 'pleased': 1.0, 'so': 1.0, 'precious': 1.0, 'forward': 1.0, 'will': 1.0, 'they': 1.0, 'princess': 1.0, 'the': 2.0, 'memories': 1.0, 'my': 2.0, 'with': 1.0, 'shower': 1.0, 'books': 2.0, 'two': 2.0, 'baby': 2.0, '34': 1.0, 'of': 1.0, 'disney': 1.0, 'know': 1.0, 'because': 1.0, 'girls': 1.0, 'she': 1.0, 'be': 1.0, 'bought': 2.0, 'little': 2.0, 'twin': 1.0, 'i': 3.0, 'for': 1.0, 'to': 1.0, 'was': 1.0, 'granddaughter': 2.0, 's': 1.0, 'princesses': 1.0, 'is': 2.0, 'having': 1.0, 'and': 2.0}
Word element => {'she': 1.0, 'and': 1.0, 'loved': 2.0, 'my': 1.0, 'it': 3.0, 'friend': 1.0, 'so': 2.0, 'was': 1.0, 'much': 1.0, 'thank': 2.0, 'for': 1.0, 'again': 1.0, 'you': 2.0, 'best': 1.0}
Word element => {'recommend': 1.0, 'looking': 1.0, 'giraffe': 1.0, 'pink': 1.0, 'notes': 1.0, 'unique': 1.0, 'daddymy': 1.0, 'schoola': 1.0, 'fifth': 1.0, 'through': 1.0, 'second': 1.0, 'photoshappy': 1.0, 'find': 1.0, 'very': 1.0, 'happy': 1.0, 'toys': 1.0, 'outing': 1.0, 'firstsnew': 1.0, 'coming': 1.0, 'teeth': 1.0, 'full': 1.0, 'were': 1.0, 'also': 4.0, 'downsmile': 1.0, 'in': 5.0, 'includes': 1.0, 'then': 1.0, 'reviews': 1.0, 'important': 1.0, 'twelve': 1.0, 'feet': 1.0, 'i': 8.0, 'this': 2.0, 'everything': 1.0, 'them': 1.0, 'visits': 1.0, 'put': 3.0, 'footprints': 1.0, 'for': 16.0, 'five': 1.0, 'birthday': 5.0, 'elephants': 1.0, 'monkeys': 1.0, 'mommya': 1.0, 'events': 1.0, 'trip': 1.0, 'cute': 3.0, 'with': 2.0, 'haircut': 1.0, 'weren': 1.0, 'adventures': 1.0, 'bath': 1.0, 'adorable': 1.0, 'celebrationssome': 1.0, 'years': 1.0, 'photo': 2.0, 'made': 1.0, 'good': 1.0, 'discoveries': 1.0, 'tooth': 1.0, 'began': 1.0, 'place': 1.0, 'heard': 1.0, 'is': 6.0, 'patterns': 1.0, 'because': 2.0, 'that': 3.0, 'most': 1.0, 'back': 2.0, 'diapers': 1.0, 'but': 1.0, 'girl': 1.0, 'book': 3.0, 'pages': 5.0, 'things': 3.0, 'to': 11.0, 'any': 1.0, 'name': 1.0, 'about': 4.0, 'baby': 4.0, 'heartbeat': 1.0, 'there': 5.0, 'section': 1.0, 'ticket': 1.0, 'soon': 1.0, 'milk': 1.0, 'of': 16.0, 'the': 20.0, 'and': 14.0, 'just': 4.0, 'prints': 2.0, 'daddy': 5.0, 'new': 1.0, 'world': 2.0, 'etc': 5.0, 'day': 3.0, 'nervous': 1.0, 'month': 1.0, 'covers': 1.0, 'it': 8.0, 'ordering': 1.0, 'below': 1.0, 'hands': 2.0, 'giraffes': 1.0, 'perspective': 1.0, 'was': 5.0, 'blood': 1.0, 'little': 3.0, 'nice': 1.0, 'have': 1.0, 'found': 1.0, 'highly': 1.0, 'given': 1.0, 'tv': 1.0, 'bornmy': 1.0, 'perfect': 2.0, 'felt': 1.0, 'months': 2.0, 'printpersonally': 1.0, 'absolutely': 1.0, 'one': 2.0, 'me': 9.0, 'written': 2.0, 'prices': 1.0, 'doctors': 1.0, 'headlines': 1.0, 'inside': 1.0, 'treemommy': 1.0, 'favorite': 1.0, 'memories': 1.0, 'says': 1.0, 'up': 1.0, 'mommy': 6.0, 'steps': 1.0, 'school': 1.0, 'a': 16.0, 'small': 1.0, 'tiny': 1.0, 'fun': 1.0, 'birthdays': 1.0, 'friends': 1.0, 't': 1.0, 's': 14.0, 'from': 7.0, 'wonder': 1.0, 'firsts': 2.0, 'child': 1.0, 'price': 1.0, 'so': 1.0, 'family': 2.0, 'photos': 3.0, 'songs': 1.0, 'type': 1.0, 'move': 1.0, 'toward': 1.0, 'current': 1.0, 'after': 1.0, 'foods': 1.0, 'glowing': 1.0, 'letter': 3.0, 'labor': 1.0, 'think': 1.0, 'another': 1.0, 'surprise': 1.0, '2': 2.0, 'info': 1.0, 'when': 2.0, 'gallon': 2.0, 'invitation': 1.0, 'born': 1.0, 'favorites': 1.0, 'news': 1.0, 'couple': 1.0, 'certificate': 1.0, 'president': 1.0, 'growing': 1.0, 'cert': 1.0, 'or': 3.0, 'popular': 2.0, 'shows': 1.0, 'wishes': 1.0, 'movies': 1.0, 'zoo': 1.0, 'on': 3.0, 'items': 1.0, 'gas': 1.0, 'stamps': 1.0, 'movie': 1.0, '5th': 2.0, 'copy': 1.0, 'like': 5.0, 'birth': 3.0, 'hospital': 1.0, '3': 1.0, 'too': 2.0, 'bracelet': 2.0, 'clapped': 1.0, 'handprints': 1.0, 'basically': 1.0, 'party': 1.0, 'pageimmunization': 1.0, 'table': 1.0, 'keepsakes': 2.0, 'contents': 1.0, 'way': 1.0, 'pagenever': 1.0, 'all': 2.0, 'mommyall': 1.0, 'daddymommy': 1.0, 'treedaddy': 1.0, 'having': 1.0, 'babymommy': 1.0, 'showers': 1.0, 'vacationholidays': 1.0, 'special': 3.0, 'eachmy': 1.0, 'happen': 1.0, 'celebrate': 1.0, 'come': 1.0, 'birthdayit': 1.0, 'pains': 1.0, 'room': 4.0, 'are': 3.0, 'my': 13.0, 'announcement': 2.0, 'has': 3.0, 'announcing': 1.0, 'newspaper': 1.0, 'each': 4.0, 'around': 2.0, 'pictures': 2.0, 'homecomingthe': 1.0, 'watch': 1.0, 'grow': 2.0, '1': 4.0, 'chart': 1.0, 'pagewatch': 1.0, 'first': 13.0, '12': 1.0, 'page': 7.0, 'slowing': 1.0}
Word element => {'on': 1.0, 'u': 1.0, 'no': 1.0, 'book': 2.0, 'upseting': 1.0, 'for': 1.0, 'wrong': 1.0, 'that': 1.0, 'the': 1.0, 'monkey': 1.0, 'my': 2.0, 'appeared': 1.0, 'srnt': 1.0, 'was': 3.0, 'very': 2.0, 'a': 1.0, 'ordered': 1.0, 'gift': 1.0, 'requested': 1.0, 'daughters': 1.0, 'this': 2.0, 'first': 1.0, 'unhappy': 1.0, 'child': 1.0}
Word element => {'gel': 1.0, 'likes': 1.0, 'around': 1.0, 'walk': 1.0, 'him': 1.0, 'safe': 1.0, 'flexible': 1.0, 's': 3.0, 'too': 1.0, 'when': 1.0, 'on': 1.0, 'done': 1.0, 'and': 1.0, 'tether': 1.0, 'the': 2.0, 'toothbrushes': 1.0, 'my': 1.0, 'is': 2.0, 'spry': 1.0, 'son': 1.0, 'other': 1.0, 'loves': 2.0, 'chew': 1.0, 'use': 2.0, 'brushing': 1.0, 'to': 5.0, 'place': 1.0, 'teething': 1.0, 'refuses': 1.0, 'i': 1.0, 'has': 1.0, 'with': 1.0, 'this': 2.0, 'only': 1.0, 'he': 5.0, 'it': 4.0, 'for': 1.0, 'one': 1.0, 'love': 1.0, 'that': 1.0, 'since': 1.0, 'a': 2.0, 'will': 1.0, 'put': 1.0}
Word element => {'future': 1.0, 'blue': 1.0, 'the': 1.0, 'all': 1.0, 'with': 1.0, 'clothews': 1.0, 'expected': 1.0, 'put': 1.0, 'girl': 1.0, 'been': 1.0, 'baby': 3.0, 'box': 1.0, 'boy': 2.0, 'out': 1.0, 'to': 1.0, 'be': 1.0, 'turned': 1.0, 'so': 1.0, 'for': 1.0, 'in': 1.0, 'book': 1.0, 'has': 1.0}
Word element => {'them': 1.0, 'pleased': 1.0, 'very': 1.0, 'our': 1.0, 'i': 1.0, 'book': 1.0, 'in': 1.0, 'could': 1.0, 'we': 1.0, 'different': 1.0, 'new': 1.0, 'grand': 2.0, 'things': 1.0, 'babies': 1.0, 'both': 1.0, 'her': 1.0, 'daughter': 2.0, 'for': 3.0, 'quility': 1.0, 'it': 3.0, 'loved': 2.0, 'left': 1.0, 'my': 1.0, 'these': 1.0, '2': 1.0, 'the': 2.0, 'bought': 2.0, 'lots': 1.0, 'was': 2.0, 'good': 1.0, 'of': 2.0, 'do': 1.0, 'and': 3.0, 'area': 1.0, 'you': 1.0}
Word element => {'daddy': 1.0, 'includes': 1.0, 'also': 1.0, 'end': 1.0, 'place': 1.0, 'the': 1.0, 'adorable': 1.0, 'at': 1.0, 'born': 1.0, 'before': 1.0, 'what': 1.0, 'about': 1.0, 'mommy': 1.0, 'information': 1.0, 'places': 1.0, 'firsts': 1.0, 'child': 1.0, 'letter': 1.0, 'baby': 5.0, 'a': 4.0, 'keeping': 1.0, 'it': 4.0, 'first': 1.0, 'pictures': 1.0, 'this': 2.0, 'with': 1.0, 'm': 1.0, 'happened': 1.0, 'when': 1.0, 'multiple': 2.0, 'for': 5.0, 'love': 1.0, 'picky': 1.0, 'very': 1.0, 'one': 2.0, 'decided': 1.0, 'usually': 1.0, 'our': 1.0, 'to': 5.0, 'wanted': 1.0, 'comes': 1.0, 'was': 2.0, 'i': 5.0, 'record': 1.0, 'that': 2.0, 'organizing': 1.0, 'and': 4.0, 'everything': 1.0, 'suited': 1.0, 'purchase': 1.0, 'my': 1.0, 'boy': 1.0, 'so': 1.0, 'needs': 1.0, 'in': 1.0, 'reading': 1.0, 'pages': 1.0, 'reviews': 1.0, 'books': 1.0, 'book': 3.0, 'other': 1.0, 'along': 1.0, 'has': 1.0, 'looking': 1.0, 'after': 1.0, 'cute': 1.0, 'designs': 1.0, 'write': 2.0, 'contains': 1.0}
Word element => {'show': 1.0, 'amazed': 1.0, 'were': 1.0, 'they': 1.0, 'the': 2.0, 'loving': 1.0, 'my': 1.0, 'truly': 1.0, 'found': 1.0, 'gift': 1.0, 'find': 1.0, 'a': 2.0, 'as': 1.0, 'bought': 1.0, 'friends': 1.0, 'and': 1.0, 'disney': 2.0, 'baby': 2.0, 'keepsake': 1.0, 'i': 3.0, 'it': 1.0, 'shower': 1.0, 'this': 2.0, 'looked': 1.0, 'everywhere': 1.0, 'for': 1.0, 'stole': 1.0, 'book': 2.0, 'could': 1.0, 'box': 2.0, 'while': 1.0, 'not': 1.0}
Word element => {'money': 1.0, 'my': 1.0, 'little': 1.0, 'expected': 1.0, '00': 1.0, 'of': 2.0, 'this': 1.0, 'sad': 1.0, 'out': 1.0, 'more': 1.0, 'the': 1.0, 'are': 1.0, 'they': 1.0, 'really': 1.0, 'is': 1.0, 'probably': 1.0, 'mattress': 1.0, 'a': 2.0, 'on': 1.0, 'piece': 1.0, 'thin': 1.0, 'foam': 1.0, 'covered': 1.0, 'by': 1.0, 'item': 1.0, 'plastic': 1.0, 'stock': 1.0, 'all': 1.0, 'lucky': 1.0, 'for': 2.0, 'i': 1.0, '48': 1.0}
Word element => {'market': 1.0, 'other': 1.0, 'far': 1.0, 'car': 1.0, 'practical': 1.0, 'me': 1.0, 'and': 2.0, 'by': 1.0, 'just': 1.0, 'know': 1.0, 'if': 1.0, 'over': 1.0, 'don': 2.0, 'about': 1.0, 'baby': 1.0, 'more': 1.0, 'is': 5.0, 'weight': 1.0, 'would': 2.0, 'previous': 1.0, 'i': 8.0, 'read': 1.0, 'very': 4.0, 'all': 1.0, 'to': 1.0, 'seat': 2.0, 'as': 2.0, 'it': 5.0, 'this': 2.0, 'product': 1.0, 'love': 1.0, 'licorice': 1.0, 'peg': 1.0, 'perego': 1.0, 'be': 1.0, 'bought': 2.0, 'recommend': 1.0, 'was': 1.0, 'heavy': 2.0, 'concerned': 1.0, 'but': 1.0, 'put': 1.0, 'think': 1.0, 'though': 1.0, 'maxi': 1.0, 'much': 1.0, 'fabric': 1.0, 'comfortable': 1.0, 'nice': 1.0, 'my': 1.0, 'way': 1.0, 't': 2.0, 's': 1.0, 'brands': 1.0, 'because': 1.0, 'than': 1.0, 'in': 3.0, 'kiddy': 1.0, 'the': 7.0, 'pro': 1.0}
Word element => {'there': 1.0, 'safest': 1.0, '1': 1.0, 'rated': 1.0, 'seats': 1.0, 'peg': 2.0, 'would': 1.0, 'handle': 1.0, 'still': 1.0, 'under': 1.0, 'up': 1.0, 'on': 1.0, 'reason': 1.0, 'perego': 2.0, 'complaint': 1.0, 'that': 3.0, 'parents': 1.0, 'stars': 1.0, 'for': 1.0, 'love': 1.0, 'the': 8.0, 'heavy': 1.0, 'recommend': 1.0, 'was': 1.0, 'had': 2.0, 'out': 1.0, 'concerns': 2.0, '4': 1.0, 'i': 3.0, 'it': 4.0, 'this': 3.0, 'only': 1.0, 'absolutely': 1.0, 'some': 1.0, 'really': 1.0, 'have': 3.0, 'may': 1.0, 'car': 3.0, 'are': 1.0, 'reviewers': 1.0, 'stylish': 2.0, 'with': 2.0, 'leather': 1.0, 'happy': 1.0, 'very': 1.0, 'problems': 1.0, 'tuck': 1.0, 'and': 3.0, 'get': 1.0, 'stay': 1.0, 'not': 4.0, 'me': 1.0, 'sunshade': 1.0, 'will': 1.0, 'most': 1.0, 'but': 1.0, 'of': 1.0, 'hot': 1.0, 'well': 1.0, 'you': 1.0, 'unless': 1.0, 'am': 1.0, 'is': 3.0, 'say': 1.0, 'does': 2.0, 'we': 1.0, 'other': 1.0, 'our': 2.0, 'to': 3.0, 'seat': 3.0, 'as': 3.0, 'any': 1.0, 'base': 1.0, 'latch': 1.0}
Word element => {'for': 1.0, 'comfy': 1.0, 'stylish': 1.0, 'looks': 1.0, 'needed': 1.0, 'new': 1.0, 'love': 1.0, 'it': 1.0, 'baby': 1.0, 'clean': 1.0, 'when': 1.0, 'stays': 1.0, 'looking': 1.0, 'easy': 1.0, 'to': 1.0, 'up': 1.0, 'and': 2.0, 'messes': 1.0}
Word element => {'am': 1.0, 'quality': 1.0, '3': 1.0, 'ages': 1.0, 'be': 1.0, 'say': 1.0, 'are': 1.0, 'who': 1.0, 'own': 1.0, 'on': 1.0, 'of': 1.0, 'based': 1.0, 'value': 1.0, '5th': 1.0, 'so': 1.0, '7': 1.0, 'average': 1.0, 'size': 2.0, 'happy': 1.0, 'my': 2.0, 'for': 3.0, 'very': 2.0, 'year': 1.0, 'birthday': 1.0, 'good': 4.0, 'loves': 1.0, 'sons': 1.0, 'purchase': 1.0, 'purchased': 1.0, 'with': 1.0, 'children': 1.0, 'he': 1.0, 'sister': 1.0, 'this': 3.0, 'it': 2.0, 'would': 2.0, 'him': 1.0, 'does': 1.0, 'his': 1.0, 'old': 1.0, 'i': 3.0, 'six': 1.0, 'is': 1.0, 'a': 1.0}
Word element => {'quickly': 1.0, 'shipped': 1.0, 'my': 1.0, 'on': 1.0, 'price': 1.0, 'lots': 1.0, 'use': 1.0, 'but': 1.0, 'what': 1.0, 'bag': 1.0, 'has': 1.0, 'of': 2.0, 'i': 2.0, 'icicles': 2.0, 'more': 1.0, 'the': 2.0, 'these': 1.0, 'tree': 1.0, 'one': 2.0, 'love': 1.0, 'awesome': 1.0, 'although': 1.0, 'did': 1.0, 'and': 2.0, 'bags': 1.0, 'package': 1.0, 'shows': 1.0, 'like': 1.0, 'a': 1.0, 'than': 1.0, 'half': 1.0}
Word element => {'use': 1.0, 'year': 1.0, 'beautiful': 3.0, 'chose': 1.0, 'temperature': 1.0, '800': 1.0, 'in': 1.0, 'itself': 1.0, 'the': 2.0, 'these': 1.0, 'dress': 1.0, 'this': 1.0, 'christmas': 1.0, 'under': 1.0, 'and': 2.0, 'purposely': 1.0, 'we': 3.0, 'a': 1.0, 'artificial': 1.0, '15': 1.0, 'that': 1.0, 'tree': 2.0, 'silver': 1.0, 'foot': 1.0, 'because': 1.0, 'tend': 1.0, 'as': 1.0, 'all': 1.0, 'to': 2.0, 'lights': 1.0, 'is': 1.0, 'around': 1.0, 'have': 1.0, 'small': 1.0, 'rain': 1.0, 'dropped': 1.0, 'white': 1.0, 'them': 1.0, '34': 2.0, '6': 1.0, 'of': 1.0, 'led': 1.0, 'button': 1.0, '000': 1.0, 'like': 1.0, 'looks': 1.0, 'fell': 1.0, 'icicles': 2.0, 'froze': 1.0}
Word element => {'and': 1.0, 'boxes': 1.0, 'three': 1.0, '97': 2.0, 'paying': 1.0, 'shock': 1.0, 'the': 1.0, 'carry': 1.0, 'many': 1.0, 'not': 1.0, 'them': 1.0, 'out': 1.0, 'find': 1.0, 'are': 1.0, 'on': 1.0, 'that': 1.0, 'was': 2.0, 'to': 2.0, 'be': 1.0, 'hang': 1.0, 'those': 1.0, '14': 1.0, 'being': 1.0, 'stores': 1.0, 'my': 1.0, 'happy': 1.0, 'so': 1.0, 'icicles': 1.0, 'i': 1.0, 'for': 2.0, 'tree': 1.0, 'one': 1.0, 'since': 1.0, 'only': 1.0, 'this': 1.0, 'shipping': 1.0, 'must': 1.0, '5': 1.0, 'phased': 1.0, 'of': 1.0, 'decorations': 1.0}
Word element => {'go': 1.0, 'and': 1.0, 'too': 1.0, 'cover': 1.0, 'is': 2.0, 'really': 2.0, 'love': 1.0, 'everyone': 1.0, 'cute': 2.0, 'car': 1.0, 'this': 1.0, 'loved': 1.0, 'i': 1.0, 'a': 1.0, 'more': 1.0, 'my': 1.0, 'lot': 1.0, 'easy': 1.0, 'seat': 1.0, 'just': 1.0, 'baby': 1.0, 'in': 1.0, 'put': 1.0, 'hat': 1.0, 'zipper': 1.0}
Word element => {'ladybug': 1.0, 'little': 1.0, 'my': 1.0, 'product': 1.0, 'adorable': 1.0, 'an': 1.0, 'you': 1.0, 'too': 1.0, 'cute': 1.0, 'such': 1.0, 'our': 1.0, 'weather': 1.0, 'and': 1.0, 'very': 1.0, 'is': 1.0, 'it': 1.0, 'zero': 1.0, 'warm': 1.0, 'for': 2.0, 'thank': 1.0, 'in': 1.0, 'near': 1.0}
Word element => {'person': 1.0, 'and': 1.0, 'a': 1.0, 'the': 3.0, 'liked': 1.0, 'to': 1.0, 'product': 2.0, 'i': 4.0, 'gave': 1.0, 'line': 1.0, 'it': 4.0, 'before': 1.0, 'saw': 1.0, 'on': 1.0, 'received': 2.0, 'was': 2.0, 'gift': 1.0, 'christmas': 2.0}
Word element => {'winter': 1.0, 'cold': 1.0, 'weather': 1.0, 'once': 1.0, 'use': 1.0, 'to': 1.0, 'wait': 1.0, 'hat': 1.0, 'matching': 1.0, 'and': 1.0, 'perfectly': 1.0, 'love': 1.0, 'of': 1.0, 'over': 1.0, 'car': 1.0, 'fits': 1.0, 'our': 1.0, 'that': 1.0, 'seats': 1.0, 'cover': 1.0, 'came': 1.0, 'both': 1.0, 'the': 3.0, 'we': 1.0, 'design': 1.0, 'is': 2.0, 'it': 2.0, 'this': 2.0, 'with': 1.0, 'so': 1.0, 'cute': 1.0, 'i': 1.0, 'cannot': 1.0, 'also': 1.0}
Word element => {'winter': 1.0, 'warm': 1.0, 'comfortably': 1.0, 'my': 1.0, 'keep': 1.0, 'hope': 1.0, 'yet': 1.0, 'the': 3.0, 'not': 1.0, 'on': 1.0, 'is': 1.0, 'item': 1.0, 'have': 2.0, 'new': 1.0, 'fit': 1.0, 'carseat': 1.0, 'used': 1.0, 'will': 2.0, 'but': 1.0, 'that': 1.0, 'cover': 1.0, 'this': 1.0, 'arrival': 1.0, 'it': 2.0, 'a': 1.0, 'i': 3.0, 'snug': 1.0, 'nice': 1.0, 'beleive': 1.0, 'and': 2.0, 'soft': 1.0}
Word element => {'recommend': 1.0, 'rate': 1.0, 'child': 1.0, 'also': 1.0, 'these': 1.0, 'some': 1.0, 'necessarily': 1.0, 'who': 1.0, 'out': 1.0, 'figuring': 1.0, 'spend': 1.0, 'or': 1.0, 'means': 1.0, 'nights': 1.0, 'disposables': 2.0, 'use': 1.0, 'easier': 1.0, 'make': 1.0, 'feasible': 1.0, 'there': 1.0, 'hour': 1.0, 'close': 1.0, 'wetter': 1.0, 'just': 2.0, 'time': 2.0, 'single': 1.0, '2': 1.0, 'very': 1.0, 'issue': 3.0, 'type': 1.0, 'nighttime': 1.0, 'had': 2.0, 'itself': 1.0, 'not': 4.0, 'at': 1.0, 'is': 4.0, 'despite': 1.0, 'best': 2.0, 'regret': 1.0, 'on': 1.0, 'long': 1.0, 'for': 2.0, 'even': 1.0, 'cloth': 2.0, '34': 4.0, 'with': 3.0, 'stuck': 1.0, 'something': 1.0, 'disposable': 1.0, 'which': 1.0, 'leaking': 1.0, 'good': 1.0, 'leaks': 1.0, 'inserts': 2.0, 'clean': 1.0, 'fact': 1.0, 'toddlerhood': 1.0, 'to': 5.0, 'heavy': 1.0, 'diaper': 3.0, 'as': 2.0, 'how': 1.0, 'our': 1.0, 'stains': 1.0, 'surprisingly': 1.0, 'occasional': 1.0, 'in': 1.0, 'adjustable': 1.0, 'an': 1.0, 'all': 1.0, 'other': 1.0, 'works': 3.0, 'soft': 1.0, 'without': 1.0, 'brand': 2.0, 'decided': 1.0, 'used': 3.0, 'from': 2.0, 'fuzzibunz': 2.0, 'free': 1.0, 'saves': 1.0, 'then': 1.0, 'we': 8.0, 'fit': 2.0, 't': 4.0, 'a': 3.0, 'have': 8.0, 'using': 2.0, 'comfortable': 1.0, 'own': 1.0, 'until': 1.0, 'too': 1.0, 'one': 2.0, 'washes': 1.0, 'seem': 1.0, 'but': 2.0, 'durable': 1.0, 'only': 1.0, 'anyone': 1.0, 'recommended': 1.0, 'and': 7.0, 'beginning': 1.0, 'loading': 1.0, 'through': 1.0, '8226': 11.0, 'this': 1.0, 'highly': 2.0, 'no': 2.0, 'about': 1.0, 'post': 1.0, 'pocket': 1.0, 'they': 3.0, 'combination': 1.0, 'that': 3.0, '20': 1.0, 'blogs': 1.0, 'easily': 1.0, 'things': 2.0, 'you': 3.0, 'depend': 1.0, 'most': 1.0, 'washer': 1.0, 'back': 1.0, 'months': 1.0, 'get': 2.0, 'past': 1.0, 'issues': 3.0, 'the': 8.0, 'of': 5.0, 'covers': 1.0, 'like': 1.0, 'dollarsproblems': 1.0, 'far': 1.0, 'he': 1.0, 'washing': 1.0, 'well': 2.0, 'i': 6.0, 'complicated': 1.0, 'don': 4.0, 'think': 1.0, 'it': 6.0, 'pushes': 1.0, 'confusing': 1.0, 'enough': 1.0, 'change': 1.0, 'water': 1.0, 'has': 2.0, 'them': 1.0, 'can': 1.0, 'so': 2.0, 'special': 1.0, 'pre': 1.0, 'their': 1.0, 'customer': 1.0, 'rinse': 2.0, 'hundreds': 1.0, 'sometimes': 2.0, 'instructions': 1.0, 'infancy': 1.0, 'rash': 1.0, 'fully': 2.0, 'especially': 1.0, 'every': 3.0, 'clear': 1.0, 'service': 1.0, 'if': 3.0, 'prefer': 1.0, 'read': 1.0, 'any': 1.0, 'your': 1.0, 'detergents': 3.0, 'online': 1.0, 'know': 2.0, 'easy': 1.0, 'however': 1.0, 'suggest': 1.0, 'diapers': 2.0, 'are': 1.0, 'having': 1.0, 'find': 1.0, 'switch': 1.0}
Word element => {'leak': 1.0, 't': 1.0, 'don': 1.0, 'incredibly': 1.0, 'accurate': 1.0, 'sizing': 1.0, 'training': 1.0, 'are': 1.0, '18': 1.0, 'in': 1.0, 'tried': 1.0, 'them': 2.0, 'put': 1.0, 'on': 1.0, 'washed': 1.0, 'tight': 1.0, 'imse': 1.0, 'were': 1.0, 'm': 1.0, 'takes': 1.0, 'which': 1.0, 'the': 6.0, 'great': 1.0, 'alternative': 1.0, 'sting': 1.0, 'vimse': 1.0, 'buy': 1.0, 'i': 1.0, 'waistmy': 1.0, 'donation': 1.0, 'you': 1.0, 'designs': 1.0, 'tiny': 1.0, 'box': 1.0, 'that': 1.0, 'daughtter': 1.0, 'but': 1.0, 'can': 1.0, 'more': 1.0, 'is': 1.0, 'ile': 2.0, 'packs': 1.0, 'pros': 1.0, 'snaps': 1.0, 'seat': 1.0, 'to': 1.0, 'us': 1.0, '25': 1.0, 'easy': 1.0, 'use': 1.0, 'appreciate': 1.0, 'out': 1.0, 'way': 2.0, 'cons': 1.0, 'soft': 2.0, 'convenient': 1.0, 'roomy': 1.0, 'these': 1.0, 'some': 1.0, 'ordering': 1.0, 'of': 3.0, 'pair': 1.0, 'leg': 1.0, 'blown': 1.0, 'no': 2.0, 'several': 1.0, 'small': 2.0, 'large': 1.0, 'by': 1.0, 'holes': 1.0, 'means': 1.0, '95': 1.0, 'for': 3.0, 'pants': 1.0, 'weight': 1.0, 'height': 1.0}
Word element => {'size': 1.0, 'in': 1.0, 'fault': 1.0, 'not': 1.0, 'side': 1.0, 'is': 1.0, 'she': 1.0, 'girl': 1.0, 'lil': 1.0, 'happy': 1.0, 'my': 1.0, 'on': 3.0, 'cute': 1.0, 'then': 1.0, 'got': 1.0, 'product': 1.0, 'this': 1.0, 'these': 1.0, 'the': 4.0, 'overall': 1.0, 'again': 1.0, 'are': 1.0, 'products': 1.0, 'i': 2.0, 'but': 2.0, 'inside': 1.0, 'and': 2.0, 'a': 1.0, 'soft': 1.0, 'line': 1.0, 'large': 1.0, 'its': 2.0, 'small': 1.0, 'so': 2.0, 'kinda': 1.0, 'very': 2.0, 'outside': 1.0, 'big': 1.0, 'judging': 1.0, 'mine': 1.0, 'love': 1.0, 'for': 1.0}
Word element => {'time': 1.0, 'will': 1.0, 'are': 1.0, 'once': 1.0, 'clip': 1.0, 'unfastened': 1.0, 'leak': 1.0, 'do': 2.0, 'and': 4.0, 'i': 3.0, 'not': 2.0, 'else': 1.0, 'wear': 1.0, 'anything': 1.0, 'to': 2.0, 'refuses': 1.0, 'my': 1.0, 'went': 1.0, 'bee': 1.0, 'like': 1.0, 'daughter': 1.0, 'you': 2.0, 'easily': 1.0, 'when': 2.0, 'they': 3.0, 'setting': 1.0, 'these': 1.0, 'the': 4.0, 'she': 3.0, 'them': 3.0, 'calls': 1.0, 'size': 1.0, 'chart': 1.0, 'her': 4.0, 'even': 1.0, 'next': 1.0, 'totally': 1.0, 'loves': 1.0, 'that': 2.0, 'undies': 1.0, 'go': 1.0, 'a': 1.0, 'knows': 1.0, 'legs': 2.0, 'is': 1.0, 'large': 1.0, 'wet': 1.0, 'with': 2.0, 'bought': 1.0, 'medium': 1.0, 'but': 1.0, 'on': 3.0, 'largest': 1.0, 'for': 1.0, 'fit': 1.0, 'slip': 1.0, 'leave': 1.0, 'have': 1.0}
Word element => {'would': 1.0, 'else': 1.0, 'fixed': 1.0, 'how': 2.0, 'don': 2.0, 'little': 1.0, 'strap': 1.0, 'few': 1.0, 'know': 2.0, 'using': 1.0, 'be': 2.0, 'probably': 1.0, 'will': 1.0, 'nurser': 1.0, 'good': 1.0, 'you': 2.0, 'if': 1.0, 'think': 1.0, '2': 1.0, 'but': 1.0, 'carrying': 1.0, 'used': 2.0, 'me': 2.0, 'and': 3.0, 'carry': 3.0, 'take': 1.0, 'bag': 4.0, 'issues': 1.0, 'as': 1.0, 'to': 5.0, 'separately': 1.0, 'in': 1.0, 'it': 7.0, 'this': 2.0, 'first': 1.0, 'only': 2.0, 'months': 1.0, 'huge': 1.0, 'one': 1.0, 't': 2.0, 'a': 8.0, 'with': 5.0, 'convenient': 1.0, 'diaper': 2.0, 'the': 3.0, 'describe': 1.0, 'awkward': 1.0, 'awesome': 1.0, 'nursing': 4.0, 'have': 2.0, 'i': 7.0, 'pockets': 1.0, 'that1': 1.0, 'around': 5.0, 'more': 1.0, 'is': 6.0, 'pillow': 4.0, 'for': 1.0, 'love': 1.0, 'product': 1.0, 'granted': 1.0, 'my': 2.0, 'has': 1.0, 'ton': 1.0, 'of': 1.0, 'always': 1.0, 'organized': 1.0, 'so': 1.0, 'definitely': 1.0, 'less': 1.0, 'big': 1.0, 'because': 1.0, 'having': 1.0, 'than': 1.0}
Word element => {'but': 1.0, 'until': 1.0, 'last': 1.0, 'should': 1.0, 'website': 1.0, 'the': 1.0, 'says': 1.0, 'few': 1.0, 'lasted': 1.0, 'would': 1.0, 'very': 1.0, 'son': 2.0, 'when': 1.0, 'lbs': 2.0, 'build': 1.0, '9': 1.0, 'if': 1.0, 'about': 1.0, 'old': 1.0, '4': 1.0, 'i': 5.0, 'use': 1.0, 'week': 1.0, 'on': 1.0, 'washed': 1.0, 'put': 1.0, 'item': 1.0, 'find': 1.0, 'maybe': 1.0, 'this': 3.0, 'with': 2.0, 'he': 2.0, 'it': 6.0, 'only': 1.0, 'weeks': 1.0, 'now': 2.0, 'as': 1.0, 'to': 2.0, 'was': 2.0, '12': 1.0, 'purchased': 1.0, 'had': 1.0, 'have': 1.0, 'small': 2.0, 'instructed': 1.0, 'my': 2.0, 'born': 1.0, 'went': 1.0, 'couldn': 1.0, 'gotten': 1.0, 'a': 3.0, 's': 1.0, 't': 3.0, 'diaper': 1.0, 'for': 1.0, 'fit': 1.0, 'and': 1.0, 'too': 1.0, 'm': 1.0, 'first': 1.0, 'stuck': 1.0, 'didn': 2.0, 'even': 1.0}
Word element => {'easily': 1.0, 'apart': 1.0, 'not': 1.0, 'will': 1.0, 'wash': 1.0, 'in': 1.0, 'very': 1.0, 'up': 1.0, 'quality': 1.0, 'side': 1.0, 'newborn': 1.0, 'holds': 1.0, 'but': 1.0, 'diapers': 1.0, 'on': 1.0, 'made': 1.0, 'more': 1.0, 'the': 1.0, 'fall': 1.0, 'well': 1.0, 'expensive': 1.0, 'good': 1.0, 'of': 1.0}
Word element => {'every': 1.0, 'in': 1.0, 'perfect': 1.0, 'just': 1.0, 's': 1.0, 'and': 1.0, 'quality': 1.0, 'the': 1.0, 'more': 1.0, 'i': 3.0, 'seriously': 1.0, 'this': 1.0, 'way': 1.0, 'it': 1.0, 'love': 2.0, 'so': 1.0, 'buy': 1.0, 'a': 1.0, 'want': 1.0, 'much': 1.0, 'to': 1.0, 'ton': 1.0}
Word element => {'waste': 1.0, 'newborn': 1.0, 'perhaps': 1.0, 'but': 1.0, 'an': 1.0, 'our': 2.0, 'did': 1.0, 'always': 1.0, 'of': 3.0, 'i': 2.0, 'soaked': 1.0, 'mother': 1.0, 'through': 1.0, 'thought': 1.0, 'leaks': 1.0, 'exhausted': 1.0, 'it': 1.0, 'he': 1.0, 'pushed': 1.0, 'minutes': 1.0, 'wonderful': 1.0, 'time': 2.0, 'they': 1.0, 'son': 1.0, 'test': 1.0, 'every': 1.0, 'a': 3.0, 'we': 2.0, 'these': 1.0, 'without': 1.0, 'the': 1.0, 'diaper': 2.0, 'in': 1.0, 'each': 1.0, 'fail': 1.0, 'leaked': 1.0, 'yesterday': 1.0, 'after': 1.0, '10': 1.0, 'being': 1.0, 'put': 1.0, 'on': 1.0, 'his': 1.0, 'clothes': 1.0, 'sheets': 1.0, 'bonus': 1.0, 'and': 1.0, 'bed': 1.0, 'for': 1.0, 'not': 1.0}
Word element => {'choice': 1.0, 'still': 1.0, 'but': 1.0, 'others': 1.0, 'faster': 1.0, 'wear': 1.0, 'show': 1.0, 'while': 1.0, 'sometimes': 1.0, 'time': 1.0, 'of': 1.0, 'wondeful': 1.0, 'look': 1.0, 'cloth': 1.0, 'even': 1.0, 'long': 1.0, 'diapering': 1.0, 'and': 4.0, 'do': 1.0, 'might': 1.0, 'a': 3.0, 'easier': 1.0, 'has': 1.0, 'well': 1.0, 'covers': 1.0, 'it': 2.0, 'love': 1.0, 'for': 1.0, 'great': 1.0, 'place': 1.0, 'prefolds': 1.0, 'the': 2.0, 'steep': 1.0, 'diaper': 1.0, 'cost': 1.0, 'mom': 1.0, 'grovias': 1.0, 'piece': 1.0, 'i': 4.0, '4': 1.0, 'are': 1.0, 'this': 1.0, 'perfect': 1.0, 'easy': 1.0, 'design': 1.0, 'assorbancy': 1.0, 'think': 1.0, 'give': 1.0, 'than': 1.0, 'sized': 1.0, 'because': 1.0, 'm': 1.0, 'price': 1.0, 'is': 1.0, 'one': 1.0, 'th': 1.0, 'will': 1.0}
Word element => {'s': 1.0, 'another': 1.0, 'am': 1.0, 'll': 1.0, 'us': 1.0, 'definitely': 1.0, 'better': 1.0, 'something': 1.0, 'two': 2.0, 'nice': 1.0, 'its': 1.0, 'be': 1.0, 'highly': 1.0, 'buying': 2.0, 'brand': 2.0, 'bought': 1.0, 'newborn': 6.0, 'make': 1.0, 'specific': 1.0, 'obviously': 1.0, 'problem': 1.0, 'have': 2.0, 'brands': 3.0, 'several': 3.0, 'grovia': 3.0, 'they': 2.0, 'seem': 1.0, 'legs': 1.0, 'don': 1.0, 'leaked': 2.0, 'around': 1.0, 'is': 2.0, 'i': 11.0, 'sized': 2.0, 'in': 1.0, 'regular': 1.0, 'doesn': 1.0, 'again': 1.0, 'leaks': 2.0, 'both': 1.0, 'mind': 1.0, 'with': 3.0, 'pee': 2.0, 'fit': 1.0, 'along': 1.0, 't': 3.0, 'we': 4.0, 'a': 4.0, 'didn': 1.0, 'not': 1.0, 'using': 1.0, 'like': 3.0, 'baby': 5.0, 'was': 2.0, 'clothes': 1.0, 'when': 1.0, 'even': 1.0, 'cloth': 1.0, 'and': 6.0, 'leak': 2.0, 'horrible': 1.0, 'crazy': 2.0, 'diaper': 2.0, 'now': 1.0, 'to': 3.0, 'fits': 1.0, 'other': 1.0, 'all': 1.0, 'huge': 1.0, 'inner': 1.0, 'can': 1.0, 'so': 4.0, 'excited': 2.0, 'loved': 1.0, 'through': 1.0, 'use': 3.0, 'about': 1.0, 'no': 1.0, 'me': 1.0, 'my': 1.0, 'month': 1.0, 'drip': 1.0, 'often': 1.0, 'recommend': 1.0, 'were': 3.0, 'seams': 1.0, 'because': 1.0, 'that': 5.0, 'for': 3.0, 'fabric': 1.0, 'know': 1.0, 'touches': 1.0, 'went': 1.0, 'only': 1.0, 'whatever': 1.0, 'wearing': 1.0, 'or': 2.0, 'sitting': 1.0, 'change': 2.0, 'but': 4.0, 'work': 1.0, 'normal': 2.0, 'everything': 1.0, 'next': 1.0, 'unfinished': 1.0, 'them': 3.0, 'stripped': 1.0, 'always': 2.0, 'will': 1.0, 'seep': 1.0, 'just': 1.0, 'some': 1.0, 'days': 1.0, 'thats': 1.0, 'time': 2.0, 'new': 1.0, 'the': 14.0, 'of': 4.0, 'are': 2.0, 'diapers': 11.0, 'first': 2.0, 'used': 1.0, 'try': 1.0, 'too': 1.0, 'one': 4.0, 'thought': 2.0, 'it': 4.0, 'outfit': 1.0, 'on': 3.0, 'long': 1.0, 'day': 1.0, 'miracle': 1.0, 'how': 1.0, 'should': 1.0, 'currently': 2.0, 'if': 1.0, 'every': 1.0, 'bigger': 1.0, 'size': 4.0}
Word element => {'g': 1.0, 'or': 1.0, 'would': 1.0, 'recommend': 1.0, 'lot': 1.0, 'leak': 1.0, 'of': 1.0, 'even': 1.0, 'brands': 1.0, 'few': 1.0, 'different': 1.0, 'a': 3.0, 'like': 1.0, 'diapers': 2.0, 'but': 1.0, 'size': 1.0, 'newborn': 1.0, 'bought': 1.0, 'larger': 1.0, 'i': 4.0, 'found': 1.0, 'this': 1.0, 'diaper': 1.0, 'these': 1.0, 'the': 3.0, 'and': 1.0, 'worst': 1.0, 'grovia': 1.0, 'hybrid': 1.0, 'cocalo': 1.0, 'one': 1.0, 'for': 2.0, 'infant': 2.0}
Word element => {'us': 1.0, 'for': 1.0, 'winner': 1.0, 'are': 1.0, 'smells': 1.0, 'g': 1.0, 'better': 1.0, 'that': 1.0, 'brands': 1.0, 'other': 1.0, 'few': 1.0, 'a': 1.0, 'leak': 1.0, 'got': 1.0, 'then': 1.0, 'totally': 1.0, 'just': 1.0, 've': 1.0, 'having': 1.0, 'body': 1.0, 's': 1.0, 'it': 1.0, 'maybe': 1.0, 'out': 1.0, 'work': 1.0, 'but': 1.0, 'back': 1.0, 'i': 2.0, 'my': 1.0, 'end': 1.0, 'u': 1.0, 'to': 1.0, 'change': 1.0, 'these': 1.0, 'babes': 1.0, 'the': 3.0, 'more': 1.0, 'diaper': 2.0}
Word element => {'taggies': 1.0, 'seller': 1.0, 'who': 1.0, 'anyone': 1.0, 'definitely': 1.0, 'i': 1.0, 'purchase': 1.0, 'easy': 1.0, 'toy': 1.0, 'an': 1.0, 'such': 1.0, 'bought': 1.0, 'my': 1.0, 'and': 2.0, 'for': 2.0, 'recommend': 1.0, 'nephew': 1.0, 'he': 1.0, 'this': 3.0, 'loves': 2.0, 'absolutely': 1.0, 'it': 1.0, 'was': 1.0}
Word element => {'child': 1.0, 'by': 1.0, 'loved': 1.0, 'are': 1.0, 'the': 2.0, 'fun': 1.0, 'all': 1.0, 'safe': 1.0, 'them': 1.0, 'using': 1.0, 'it': 2.0, 'for': 1.0, 'children': 1.0, 'and': 2.0, 'from': 1.0, '1': 2.0, '2': 1.0, 'with': 1.0, 'is': 1.0, 'younger': 1.0, 'to': 1.0, 'tags': 1.0, '5': 1.0}
Word element => {'big': 1.0, 'not': 1.0, 'so': 1.0, 'after': 1.0, 'huge': 1.0, 'husband': 1.0, 'hoping': 1.0, 'was': 1.0, 'hadn': 1.0, 'this': 1.0, 'with': 2.0, 'fan': 1.0, 'i': 5.0, 'old': 1.0, 'ordered': 1.0, 'isn': 1.0, 'interact': 1.0, 'they': 1.0, 'there': 2.0, '6': 1.0, 'would': 2.0, 'my': 1.0, 'is': 1.0, 'more': 1.0, 's': 1.0, 'a': 3.0, 'football': 2.0, 't': 2.0, 'the': 1.0, 'wished': 1.0, 'be': 2.0, 'stuffed': 1.0, 'thought': 1.0, 'sleep': 1.0, 'to': 5.0, 'our': 1.0, 'fun': 1.0, 'for': 2.0, 'it': 4.0, 'month': 1.0, 'have': 1.0, 'too': 1.0, 'and': 2.0, 'get': 1.0, 'possible': 1.0, 'attached': 1.0, 'its': 1.0, 'much': 1.0, 'except': 1.0, 'tags': 1.0, 'blanket': 1.0, 'call': 1.0, 'but': 1.0}
Word element => {'great': 1.0, 'for': 1.0, 'often': 1.0, 'is': 2.0, 'baby': 1.0, 'toy': 1.0, 'to': 1.0, 'product': 1.0, 'first': 1.0, 'it': 2.0, 'with': 2.0, 'this': 2.0, 'loves': 1.0, 'played': 1.0, 'daughter': 1.0, 'ball': 1.0, 'and': 1.0, 'up': 1.0, 'very': 1.0, 'my': 1.0, 'has': 1.0, 'held': 1.0, 'washing': 1.0, 'am': 1.0, 'i': 1.0, 'pleased': 1.0, 'well': 1.0, 'a': 1.0}
Word element => {'worth': 1.0, 'was': 1.0, 'makes': 1.0, 'daughter': 1.0, 'the': 2.0, 'my': 1.0, 'i': 1.0, 'money': 1.0, 'it': 3.0, 'love': 1.0, 'is': 1.0, 'loves': 1.0, 'this': 1.0, 'sound': 1.0, 'lots': 1.0, 'big': 1.0, 'has': 1.0, 'of': 1.0, 'well': 1.0, 'tags': 1.0, 'and': 1.0}
Word element => {'hear': 1.0, 'tags': 1.0, 'are': 1.0, 'littlest': 1.0, 'pretty': 1.0, 'is': 1.0, 'loves': 1.0, 'newborn': 1.0, 'as': 1.0, 'and': 4.0, 'the': 3.0, 'these': 2.0, 'number': 1.0, 'of': 3.0, 'chimes': 1.0, 'has': 1.0, 'a': 1.0, 'grab': 1.0, 'everyone': 1.0, 'to': 3.0, 'had': 1.0, 'gifts': 1.0, 'ordered': 1.0, 'i': 1.0, 'for': 1.0, 'one': 1.0, 'them': 1.0, 'newborns': 1.0, 'it': 2.0, 'soft': 1.0, 'become': 1.0, 'my': 1.0, 'tradition': 1.0, 'give': 1.0, 'able': 1.0, 'babies': 2.0, 'all': 1.0}
Word element => {'soft': 1.0, 's': 1.0, 'nice': 1.0, 'are': 1.0, 'well': 1.0, 'loves': 1.0, 'inherited': 1.0, 'has': 1.0, '6': 1.0, 'his': 1.0, 'when': 1.0, 'very': 1.0, 'as': 1.0, 'son': 1.0, 'was': 1.0, 'now': 1.0, 'for': 1.0, 'colors': 1.0, 'toy': 1.0, 'i': 1.0, 'old': 1.0, 'it': 3.0, 'sister': 1.0, 'he': 2.0, 'with': 1.0, 'this': 1.0, 'loved': 1.0, 'my': 1.0, 'the': 3.0, 'bought': 1.0, 'months': 1.0, 'tags': 1.0, 'and': 5.0, 'playing': 1.0, 'rattle': 1.0, 'inside': 1.0}
Word element => {'tag': 1.0, 'tags': 1.0, 'this': 2.0, 'old': 1.0, 'to': 1.0, 'month': 1.0, 'love': 1.0, 'noise': 1.0, '7': 1.0, 'all': 1.0, 'babies': 1.0, 'godsons': 1.0, 'ball': 2.0, 'and': 3.0, 'highly': 1.0, 'baby': 1.0, 'my': 1.0, 'is': 1.0, 'soft': 1.0, 'recommend': 1.0, 'snuggly': 1.0, 'makes': 1.0, 'loves': 1.0, 'boot': 1.0}
Word element => {'teethe': 1.0, 'gift': 1.0, 'excellent': 1.0, 'practical': 1.0, 'move': 1.0, 'you': 1.0, 'when': 1.0, 'quality': 1.0, 'very': 2.0, 'and': 2.0, 'shapes': 1.0, 'for': 1.0, 'love': 2.0, 'of': 1.0, 'good': 1.0, '5': 1.0, 'chew': 1.0, 'purchased': 1.0, 'various': 1.0, 'we': 1.0, 'these': 1.0, 'they': 1.0, 'to': 1.0, 'colorful': 1.0, 'all': 1.0, 'have': 1.0, 'babies': 3.0, 'them': 2.0, 'a': 1.0, 'are': 1.0, 'new': 1.0, 'make': 1.0, 'soft': 1.0, 'in': 1.0, 'sound': 1.0}
Word element => {'s': 1.0, 'baby': 1.0, 'my': 1.0, 'move': 1.0, 'and': 1.0, 'grab': 1.0, 'to': 1.0, 'fingers': 1.0, 'little': 1.0, 'easy': 1.0, 'best': 1.0, 'one': 1.0, 'for': 2.0, 'the': 3.0, 'but': 1.0, 'all': 1.0, 'babies': 1.0, 'plays': 1.0, 'this': 1.0, 'with': 1.0, 'it': 4.0, 'he': 1.0, '6': 1.0, 'of': 2.0, 'toys': 1.0, 'favorite': 2.0, 'is': 1.0, 'course': 1.0, 'really': 1.0, 'tags': 2.0, 'a': 2.0, 'are': 2.0, 'element': 1.0, 'time': 1.0, 'chimes': 1.0, 'around': 1.0, 'make': 1.0, 'cool': 1.0, 'feature': 1.0}
Word element => {'development': 1.0, 'skill': 1.0, 'for': 1.0, 'fine': 1.0, 'taggies': 1.0, 'motor': 1.0, 'the': 1.0, 'on': 1.0, 'fingers': 1.0, 'have': 1.0, 'i': 1.0, '4': 1.0, 'their': 1.0, 'twin': 1.0, 'months': 1.0, 'old': 1.0, 'rubbing': 1.0, 'boys': 1.0, 'and': 1.0, 'they': 1.0, 'great': 1.0, 'love': 1.0}
Word element => {'sleep': 1.0, 'could': 1.0, '8': 1.0, 'about': 1.0, 'out': 2.0, 'for': 3.0, 'nursing': 1.0, 'fewer': 2.0, 'across': 1.0, 'without': 1.0, 'napped': 1.0, 'max': 1.0, 'disaster': 1.0, 'was': 5.0, 'on': 2.0, 'put': 2.0, 'moments': 1.0, 'early': 1.0, 'very': 1.0, 'from': 1.0, 'day': 1.0, 'comfort': 1.0, 'sleeping': 1.0, 'hand': 1.0, 'up': 1.0, 'once': 1.0, 'needed': 1.0, 'it': 1.0, 'in': 3.0, 'believed': 1.0, 'wiggling': 1.0, 'daughter': 1.0, 'slept': 1.0, 'i': 6.0, '4': 1.0, 'night': 3.0, 'has': 1.0, 'them': 1.0, 'she': 9.0, 'baby': 1.0, 'infant': 1.0, 'hour': 1.0, 'figured': 1.0, 'finally': 2.0, 'naps': 1.0, 'would': 1.0, 'sucking': 1.0, 'my': 3.0, 'minutes': 1.0, 'another': 1.0, 'than': 1.0, '30': 1.0, 'a': 8.0, 'hours': 1.0, 'becoming': 1.0, 'no': 1.0, 'at': 4.0, 'time': 3.0, 'bit': 2.0, 'with': 2.0, 'buying': 1.0, 'woke': 2.0, 'more': 2.0, '2': 1.0, 'but': 1.0, 'never': 1.0, 'be': 1.0, 'swaddled': 1.0, 'decided': 1.0, 'immensely': 1.0, 'her': 2.0, 'of': 3.0, 'the': 4.0, 'had': 1.0, 'even': 2.0, 'kept': 1.0, 'highly': 1.0, 'this': 4.0, 'few': 1.0, 'peace': 1.0, 'recommend': 1.0, 'were': 1.0, 'to': 1.0, 'high': 1.0, 'came': 1.0, 'frequently': 1.0, 'free': 1.0, 'months': 2.0, 'legs': 1.0, 'convertible': 1.0, 'and': 6.0, 'arms': 1.0, 'price': 1.0, 'though': 1.0, 'gave': 1.0, 'ones': 1.0, 'one': 2.0, 'try': 1.0, 'old': 2.0, 'taste': 1.0, 'when': 2.0, 'soundly': 1.0, 'every': 1.0, 'still': 1.0, 'an': 1.0, 'helped': 1.0}
Word element => {'mommies': 1.0, 'repeat': 1.0, 'recommend': 1.0, 'i': 1.0, 'night': 1.0, 'sleep': 1.0, 'and': 2.0, 'him': 1.0, 'help': 1.0, 'who': 1.0, 'all': 1.0, 'sensory': 1.0, 'has': 1.0, 'on': 1.0, 'is': 1.0, 'woombie': 1.0, 'for': 1.0, 'son': 1.0, 'processing': 1.0, 'my': 1.0, 'great': 1.0, 'the': 2.0, 'this': 1.0, 'firm': 1.0, 'but': 1.0, 'self': 1.0, 'concerns': 1.0, 'just': 1.0, 'soft': 1.0, 'his': 1.0, 'soothe': 1.0, 'body': 1.0, 'new': 1.0, 'through': 1.0, 'input': 1.0, 'enough': 1.0, 'was': 1.0, 'to': 2.0}
Word element => {'out': 1.0, 'have': 1.0, 'able': 1.0, 'be': 1.0, '3': 1.0, 'took': 1.0, 'alternate': 1.0, 'and': 1.0, 'time': 1.0, 'at': 1.0, 'a': 2.0, 'kept': 1.0, 'transition': 1.0, 'to': 3.0, 'then': 1.0, 'from': 1.0, 'when': 1.0, 'arms': 2.0, 'were': 1.0, 'it': 1.0, 'first': 1.0, 'this': 1.0, 'full': 1.0, 'arm': 1.0, 'we': 4.0, 'one': 1.0, 'woombie': 1.0, 'remove': 1.0, 'the': 1.0, 'legs': 1.0, 'would': 1.0, 'weeks': 1.0, 'ready': 1.0, 'but': 1.0, 'inside': 1.0, 'both': 1.0, 'used': 2.0, 'his': 1.0}
Word element => {'cute': 1.0, 'snuggly': 1.0, 'end': 1.0, 'they': 1.0, 'o': 1.0, 'and': 1.0, 'up': 1.0, 'friends': 1.0, 'ordering': 1.0, 'love': 1.0, 'carter': 1.0, 's': 1.0, 'ordered': 1.0, 'i': 1.0, 'blankies': 1.0, 'soo': 1.0, 'for': 1.0, 've': 1.0, 'prego': 1.0, 'them': 1.0, 'all': 1.0, 'more': 1.0, 'my': 1.0}
Word element => {'priced': 1.0, 'nicely': 1.0, 'was': 1.0, 'not': 1.0, 'toddlerhood': 1.0, 'your': 1.0, 'follow': 1.0, 'that': 1.0, 'something': 1.0, 'looking': 1.0, 'if': 1.0, 'pretty': 1.0, 'wear': 1.0, 'show': 1.0, 'material': 1.0, 'satin': 1.0, 'is': 2.0, 'perfect': 1.0, 'this': 1.0, 'only': 1.0, 'can': 1.0, 'and': 2.0, 'her': 3.0, 'bag': 1.0, 'girl': 1.0, 'have': 1.0, 'these': 1.0, 'diaper': 1.0, 'great': 1.0, 'adorable': 1.0, 'trips': 1.0, 'at': 1.0, 'keep': 1.0, 'of': 2.0, 'child': 1.0, 'up': 1.0, '34': 2.0, 'crib': 1.0, 'little': 1.0, 'in': 4.0, 'for': 5.0, 'one': 2.0, 'two': 1.0, 'i': 2.0, 'night': 1.0, 'my': 2.0, 'it': 4.0, 'she': 2.0, 'you': 2.0, 'when': 1.0, 'us': 2.0, 'be': 1.0, 'multiple': 1.0, 'attached': 1.0, 'travel': 1.0, 'wakes': 1.0, 'the': 3.0, 'job': 1.0, 'quickly': 1.0, 'saves': 1.0, 'from': 1.0, 'to': 4.0, 'does': 2.0, 'find': 1.0, 'replug': 1.0, 'room': 1.0, 'might': 1.0, 'going': 1.0, 'a': 1.0, 'keeping': 1.0, 'are': 1.0, 'pacifier': 1.0, 'complaint': 1.0}
Word element => {'far': 1.0, 'superior': 1.0, 'making': 1.0, 'detach': 1.0, 'months': 1.0, 'nine': 1.0, 'paci': 3.0, 'and': 1.0, 'buddies': 1.0, 'keeps': 1.0, 'she': 1.0, 'it': 2.0, 'this': 3.0, 'crib': 1.0, 'by': 3.0, 'amazingly': 1.0, 'quality': 2.0, 'can': 1.0, 'but': 1.0, 'is': 2.0, 'in': 1.0, 'said': 1.0, 'many': 1.0, 'that': 1.0, 'loves': 1.0, 'off': 1.0, 'her': 1.0, 'fabric': 1.0, 'good': 1.0, 'very': 2.0, 'must': 1.0, 'the': 9.0, 'product': 1.0, 'cheap': 1.0, 'products': 1.0, 'buy': 1.0, 'my': 1.0, 'daughter': 1.0, 'pull': 1.0, 'cannot': 1.0, 'like': 1.0, 'competitors': 1.0, 'a': 2.0, '34': 2.0, 'takes': 1.0, 'if': 1.0, 'on': 1.0, 'your': 1.0, 'child': 2.0, 'bay': 1.0, 'are': 1.0, 'blanket': 1.0, 'pacifier': 1.0, 'bunnies': 1.0, 'silly': 1.0}
Word element => {'home': 1.0, 'if': 1.0, 'effective': 1.0, 'use': 1.0, 'simple': 1.0, 'tissue': 1.0, 'of': 1.0, 'over': 1.0, 'piece': 1.0, 'a': 1.0, 'get': 1.0, 'and': 2.0, 'between': 1.0, 'thing': 1.0, 'the': 1.0, 'nose': 1.0, 'can': 1.0, 'item': 1.0, 'works': 1.0, 'just': 1.0, 'snot': 3.0, 'only': 1.0, 'this': 2.0, 'first': 1.0, 'off': 1.0, 'start': 1.0, 'are': 1.0, 'i': 1.0, 'is': 1.0, 'want': 1.0, 'said': 1.0, 'free': 1.0, 'basicly': 1.0, 'your': 3.0, 'saying': 1.0, 'to': 2.0, 'now': 1.0, 'that': 2.0, 'by': 1.0, 'kids': 1.0, 'you': 3.0, 's': 1.0, 'sucking': 2.0, 'very': 1.0, 'from': 1.0}
Word element => {'cheap': 1.0, 'effective': 1.0, 'pinch': 1.0, 'in': 1.0, 'paper': 1.0, 'filter': 1.0, 'toilet': 1.0, 'even': 1.0, 'use': 1.0, 'you': 1.0, 'that': 1.0, 'fact': 1.0, 'like': 1.0, 'baby': 1.0, 'don': 1.0, 'the': 5.0, 'replace': 1.0, 'and': 4.0, 'hate': 1.0, 'get': 2.0, 'darn': 1.0, 'quick': 1.0, 'aspirators': 1.0, 'this': 1.0, 'item': 1.0, 'was': 1.0, 'those': 1.0, 'babycomfynose': 1.0, 'they': 1.0, 'used': 1.0, 'her': 2.0, 'bulb': 2.0, 'aspirator': 1.0, 'nose': 4.0, 'i': 3.0, 'thing': 1.0, 'whole': 1.0, 'shrieks': 2.0, 'or': 1.0, 'squirms': 2.0, 'through': 2.0, 'icky': 2.0, 'screams': 2.0, 'ton': 2.0, 'still': 1.0, 'gets': 1.0, 'kleenex': 1.0, 'of': 4.0, 'stuff': 1.0, 'out': 3.0, 'can': 1.0, 'particularly': 1.0, 'process': 2.0, 'but': 2.0, 'she': 2.0, 'as': 1.0, 'to': 1.0, 'least': 1.0, 'entire': 1.0, 'freaking': 1.0, 'at': 1.0, 'while': 1.0, 't': 1.0, 'a': 7.0, 's': 1.0}
Word element => {'shipping': 1.0, 'fast': 1.0, 'it': 1.0, 'package': 1.0, 'far': 1.0, 'use': 1.0, 'really': 1.0, 'havent': 1.0, 'so': 2.0, 'nice': 1.0, 'happy': 1.0, 'with': 1.0, 'is': 1.0, 'altought': 1.0, 'not': 1.0, 'product': 1.0, 'yet': 1.0, 'the': 1.0, 'my': 1.0, 'little': 2.0, 'one': 1.0, 'born': 1.0}
Word element => {'shows': 1.0, 'video': 1.0, 'suck': 1.0, 'easy': 1.0, 'breathe': 1.0, 'of': 1.0, 'up': 1.0, 'both': 1.0, 'definitely': 1.0, 'nose': 1.0, 'at': 1.0, 'one': 1.0, 'syringe': 1.0, 'bulb': 1.0, 'great': 1.0, 'is': 2.0, 'baby': 1.0, 'end': 1.0, 'works': 1.0, 'he': 1.0, 'hospital': 1.0, 'there': 1.0, 'comfy': 1.0, 'green': 1.0, 'i': 1.0, 'husband': 1.0, 'for': 1.0, 'product': 1.0, 'but': 2.0, 'especially': 1.0, 'us': 1.0, 'when': 1.0, 'hard': 1.0, 'compared': 1.0, 'better': 1.0, 'have': 1.0, 'it': 3.0, 'truly': 1.0, 'time': 1.0, 'sucking': 1.0, 'does': 1.0, 'than': 1.0, 'out': 3.0, 'given': 1.0, 'problem': 1.0, 'boogers': 2.0, 'we': 1.0, 'a': 3.0, 's': 2.0, 'way': 1.0, 'me': 1.0, 'not': 2.0, 'difficult': 1.0, 'to': 3.0, 'as': 3.0, 'my': 1.0, 'the': 6.0, 'job': 1.0}
Word element => {'were': 1.0, 'my': 1.0, 'when': 1.0, 'had': 1.0, 'moms': 1.0, 'babies': 1.0, 'all': 1.0, 'the': 2.0, 'children': 1.0, 'this': 1.0, 'it': 1.0, 'way': 1.0, 'three': 1.0, 'new': 1.0, 'babycomfynose': 1.0, 'love': 1.0, 'for': 1.0, 'product': 2.0, 'bought': 1.0, 'and': 1.0, 'than': 1.0, 'wish': 1.0, 'say': 1.0, 'regular': 1.0, 'is': 1.0, 'better': 1.0, '3': 1.0, 'aspirator': 1.0, 'nasal': 1.0, 'i': 1.0}
Word element => {'distress': 1.0, 'more': 1.0, 'hand': 1.0, 'which': 1.0, 'doesn': 1.0, 'recommend': 1.0, 's': 2.0, 'a': 3.0, 't': 2.0, 'go': 1.0, 'cold': 1.0, 'although': 1.0, 'had': 1.0, 'bulb': 2.0, 'than': 1.0, 'better': 1.0, 'their': 1.0, 'nose': 2.0, 'would': 1.0, 'allow': 1.0, 'luckily': 1.0, 'her': 4.0, 'in': 3.0, 'first': 1.0, 'it': 6.0, 'she': 4.0, 'us': 1.0, 'syringe': 2.0, 'worked': 1.0, 'sick': 1.0, 'torture': 1.0, 'one': 1.0, 'i': 3.0, 'battery': 1.0, 'collects': 1.0, 'chamber': 1.0, 'no': 1.0, 'never': 1.0, 'paper': 1.0, 'like': 1.0, 'cheap': 1.0, 'powered': 1.0, 'bought': 1.0, 'believe': 1.0, 'just': 1.0, 'pull': 1.0, 'without': 1.0, 'anything': 1.0, 'out': 1.0, 'awesome': 1.0, 'that': 2.0, 'been': 1.0, 'can': 1.0, 'will': 1.0, 'tolerate': 1.0, 'we': 1.0, 'then': 1.0, 'at': 1.0, 'is': 3.0, 'done': 1.0, 'job': 1.0, 'to': 3.0, 'sleep': 1.0, 'all': 1.0, 'unlike': 1.0, 'everything': 1.0, 'else': 1.0, 'with': 1.0, 'results': 1.0, 'couldnt': 1.0, 'replace': 1.0, '6months': 1.0, 'on': 3.0, 'amount': 1.0, 'the': 5.0, 'of': 1.0, 'ordered': 1.0, 'didn': 1.0, 'discomfort': 1.0, 'mucous': 1.0, 'but': 1.0, 'tissue': 1.0, 'easy': 1.0, 'collection': 1.0, 'this': 4.0, 'highly': 1.0, 'hard': 1.0, 'enough': 1.0, 'has': 2.0, 'solution': 1.0, 'them': 1.0, 'disposable': 1.0, 'be': 1.0, 'for': 4.0, 'such': 1.0, 'great': 1.0, 'and': 4.0, 'easing': 1.0, 'causing': 1.0}
Word element => {'sleeping': 1.0, 'good': 1.0, 'went': 1.0, 'week': 1.0, 'was': 1.0, 'but': 1.0, 'son': 1.0, 'about': 2.0, 'is': 2.0, 'swaddled': 2.0, 'just': 2.0, 'by': 1.0, 'guy': 1.0, '3': 1.0, 'little': 1.0, 'very': 1.0, 'medium': 1.0, 'would': 1.0, 'purchased': 1.0, 'for': 3.0, '2010': 1.0, 'both': 2.0, 'be': 2.0, 'turned': 1.0, 'us': 1.0, 'now': 1.0, 'to': 8.0, 'back': 1.0, 'sleep': 3.0, 'needed': 2.0, 'have': 4.0, 'order': 1.0, 'true': 1.0, 'solid': 1.0, 'he': 6.0, 'children': 1.0, 'in': 5.0, 'my': 4.0, 'fits': 1.0, 'and': 5.0, 'anyone': 1.0, '16lbs': 1.0, 'started': 1.0, 'womb': 1.0, 'these': 1.0, 'med': 2.0, 'out': 1.0, 'ones': 1.0, 'of': 2.0, 'the': 3.0, '2': 1.0, 'has': 1.0, 'first': 1.0, 'boys': 1.0, 'am': 1.0, 'roll': 1.0, 'when': 1.0, 'fact': 1.0, 'old': 1.0, 'well': 2.0, 'i': 3.0, 'thinking': 1.0, 'used': 1.0, 'sz': 2.0, 'definitely': 1.0, 'over': 1.0, 'child': 1.0, 'so': 1.0, 'new': 2.0, 'time': 1.0, 'needs': 1.0, 'that': 1.0, 'initially': 1.0, 'mos': 1.0, 'outgrows': 1.0, 'weight': 1.0, 'then': 1.0, 'fine': 1.0, 'we': 3.0, 'transitioned': 1.0, 'small': 1.0, 'a': 4.0, 'will': 1.0, 'sack': 1.0, 'your': 1.0, 'probably': 1.0, 'though': 1.0, 'starting': 1.0, 'him': 1.0, 'it': 2.0, 'worked': 1.0, 'this': 2.0, 'highly': 1.0, 'recommend': 1.0, 'still': 1.0, 'if': 1.0, 'transition': 1.0, 'did': 1.0, 'swaddle': 1.0, 'period': 1.0, 'from': 1.0, 'using': 1.0, 'truewombs': 1.0, 'classic': 1.0, '5': 1.0, 'blanket': 1.0}
Word element => {'flimsy': 1.0}
Word element => {'outings': 1.0, 'lug': 1.0, 'affordable': 1.0, 'for': 1.0, 'looking': 1.0, 'been': 1.0, 'has': 1.0, 'stroller': 3.0, 'have': 1.0, 'does': 1.0, 'not': 1.0, 'great': 1.0, 'family': 1.0, 'lightweight': 1.0, 'with': 2.0, 'only': 1.0, 'train': 1.0, 'it': 1.0, 'is': 2.0, 'around': 3.0, 'move': 1.0, 'highly': 1.0, 'and': 4.0, 'thing': 1.0, 'about': 1.0, 'purse': 1.0, 'need': 1.0, 'easy': 2.0, 'recommend': 1.0, 'the': 2.0, 'place': 1.0, 'live': 1.0, 'any': 1.0, 'to': 4.0, 'or': 1.0, 'belongings': 1.0, 'out': 1.0, 'if': 2.0, 'bus': 1.0, 'you': 2.0, 'when': 2.0, 'in': 1.0, 'this': 1.0, 'perfect': 1.0, 'anyone': 1.0, 'city': 1.0, 'a': 2.0, 'riding': 1.0, 'put': 1.0, 'your': 1.0, 'on': 2.0, 'i': 1.0, 'something': 2.0, 'would': 1.0, 'who': 1.0}
Word element => {'umbrella': 1.0, 'sturdy': 1.0, 'riding': 1.0, 'like': 1.0, 'baby': 1.0, 'car': 1.0, 'seems': 1.0, 'in': 2.0, 'space': 1.0, 'save': 1.0, 'worth': 1.0, 'unfold': 1.0, 'to': 3.0, 'into': 1.0, 'bag': 1.0, 'stroller': 1.0, 'an': 1.0, 'but': 1.0, 'back': 1.0, 'than': 1.0, 'go': 1.0, 'a': 2.0, 'can': 2.0, 'it': 6.0, 'more': 1.0, 'the': 3.0, 'that': 1.0, 'anything': 1.0, 'is': 3.0, 'out': 1.0, 'from': 1.0, 'up': 1.0, 'fold': 2.0, 'of': 1.0, 'tricky': 1.0, 'gets': 1.0, 'stars': 1.0, 'and': 2.0, 'five': 1.0, 'me': 1.0, 'little': 2.0}
Word element => {'tricky': 1.0, 'step': 1.0, 'also': 1.0, 'far': 1.0, 'pretty': 1.0, 'floor': 1.0, 'on': 1.0, 'sits': 1.0, 'stand': 1.0, 'open': 2.0, 'tired': 1.0, 'makes': 1.0, 'thing': 1.0, 'back': 1.0, 'lugging': 1.0, 'when': 1.0, 'idea': 1.0, 'just': 1.0, 'away': 1.0, 'stash': 1.0, 'reason': 1.0, 'main': 1.0, 'sticks': 1.0, 'room': 1.0, 'so': 2.0, 'bit': 1.0, 'inconvenient': 1.0, 'quite': 1.0, 'takes': 1.0, 'seriously': 1.0, 'day': 1.0, 'looking': 1.0, 'of': 6.0, 'adjustable': 1.0, 'the': 10.0, 'heavy': 2.0, 'nicely': 1.0, 'tray': 1.0, 'want': 1.0, 'completely': 1.0, 'is': 10.0, 'too': 1.0, 'and': 5.0, 'vinyl': 1.0, 'clean': 1.0, 'up': 1.0, 'washable': 1.0, 'an': 1.0, 'out': 2.0, 'foldable': 1.0, 'kind': 1.0, 'easy': 1.0, 'compact': 1.0, 'i': 2.0, 'annoying': 1.0, 'it': 8.0, 'found': 1.0, 'this': 2.0, 'part': 1.0, 'from': 1.0, 'very': 1.0, 'that': 3.0, 'highchair': 1.0, 'sides': 1.0, 'machine': 1.0, 'be': 1.0, 'every': 1.0, 'material': 1.0, 'me': 1.0, 'not': 3.0, 'all': 2.0, 'to': 3.0, 'seat': 2.0, 'but': 3.0, 'most': 1.0, 'are': 1.0, 'a': 3.0, 's': 1.0, 'lie': 1.0, 'chair': 2.0, 'nice': 1.0, 'padded': 1.0, 'because': 1.0, 'does': 1.0, 'have': 1.0, 'flat': 1.0, 'still': 1.0}
Word element => {'item': 1.0, 'great': 1.0, 'holds': 1.0, 'for': 2.0, 'let': 1.0, 'converts': 1.0, 'and': 3.0, 'completely': 1.0, 'up': 2.0, 'as': 2.0, 'so': 1.0, 'folds': 2.0, 'know': 1.0, 'works': 1.0, 'down': 1.0, 'well': 2.0, 'a': 2.0, 'like': 1.0, 'easily': 1.0, 'storage': 1.0, 'bought': 1.0, 'gift': 1.0, 'it': 2.0, 'seems': 1.0, 'flat': 1.0, 'newborn': 1.0, 'but': 1.0, 'will': 1.0, 'you': 1.0, 'how': 1.0}
Word element => {'couldn': 1.0, 'rocks': 1.0, '1': 1.0, 'here': 1.0, 'pay': 1.0, 'everyday': 1.0, 'live': 1.0, 'where': 1.0, 'japan': 1.0, 'way': 1.0, 'either': 1.0, 'think': 1.0, 'better': 1.0, 'new': 1.0, 'didn': 1.0, 'ordered': 1.0, 'worries': 1.0, 'was': 1.0, 'wheel': 1.0, 'yard': 1.0, 'quicksmart': 1.0, 'bought': 1.0, 'thin': 1.0, 've': 1.0, 'car': 1.0, 'trying': 1.0, 'lugging': 1.0, 'even': 1.0, 'base': 1.0, 'instead': 1.0, 'keep': 1.0, 'load': 1.0, 'on': 4.0, 'been': 2.0, 'secondary': 1.0, 's': 4.0, 'who': 1.0, 'have': 2.0, 'don': 1.0, 'its': 1.0, 'zipped': 1.0, 'end': 1.0, 'luggage': 2.0, 'other': 1.0, 'hours': 1.0, 'when': 1.0, 'then': 2.0, 'however': 1.0, 'gate': 1.0, 'allow': 1.0, 'airlines': 1.0, 'are': 1.0, 'or': 2.0, 'suitable': 1.0, 'yes': 1.0, 'off': 1.0, 'great': 2.0, 'foot': 1.0, 'should': 1.0, 'non': 1.0, 'that': 3.0, 'steal': 1.0, 'basket': 1.0, 'got': 1.0, 'avoid': 1.0, 'get': 1.0, 'months': 1.0, 'up': 3.0, 'fabric': 1.0, 'for': 4.0, 'price': 1.0, 'child': 1.0, 'product': 1.0, 'a': 12.0, 'fold': 1.0, 'accessories': 1.0, 'they': 1.0, 'has': 1.0, 'under': 1.0, 'ergo': 1.0, 'stroller': 7.0, 'portability': 1.0, 'seat': 1.0, 'in': 7.0, 'flawed': 1.0, 'being': 1.0, 'very': 2.0, 'little': 2.0, 'ok': 1.0, 'holder': 1.0, '8': 1.0, 'cart': 1.0, 'left': 1.0, 'sale': 1.0, 'grubby': 1.0, 'really': 4.0, 'happier': 1.0, 'around': 1.0, 'obviously': 1.0, 'terms': 2.0, 'carry': 1.0, 'special': 1.0, 'beat': 1.0, 't': 4.0, 'rest': 1.0, 'pretty': 3.0, 'to': 6.0, 'existant': 1.0, 'no': 2.0, 'terrible': 1.0, 'thing': 1.0, 'frequently': 1.0, 'this': 3.0, 'it': 12.0, 'recline': 1.0, 'just': 1.0, 'large': 1.0, 'not': 5.0, 'rather': 1.0, 'like': 1.0, 'which': 2.0, 'be': 2.0, 'drink': 1.0, 'but': 2.0, 'so': 4.0, 'can': 3.0, 'behind': 1.0, 'about': 2.0, 'awesome': 1.0, 'the': 14.0, 'of': 5.0, 'natural': 1.0, 'and': 9.0, 'arms': 1.0, 'you': 3.0, 'put': 1.0, '16': 1.0, 'do': 2.0, 'with': 4.0, 'many': 1.0, 'folds': 1.0, 'baby': 4.0, 'any': 1.0, 'your': 2.0, 'worry': 1.0, 'seriously': 1.0, 'bag': 5.0, 'check': 3.0, 'quite': 1.0, 'carrier': 2.0, 'is': 6.0, 'at': 3.0, 'hands': 1.0, 'airport': 2.0, 'i': 12.0, 'means': 1.0, 'travel': 1.0, 'narrow': 1.0, 'usually': 1.0, 'looks': 1.0, 'me': 2.0, 'my': 5.0, 'there': 3.0, 'black': 1.0, '8th': 1.0, 'camel': 1.0, 'lining': 1.0, 'material': 1.0, 'through': 1.0, 'nothing': 1.0, 'out': 2.0, 'clunking': 1.0, 'also': 2.0}
Word element => {'love': 1.0, 'also': 1.0, 's': 1.0, 'space': 1.0, 'unfortunately': 1.0, 'my': 2.0, 'i': 1.0, 'all': 1.0, 'have': 1.0, 'very': 1.0, 'best': 1.0, 'that': 1.0, 'a': 2.0, 'stroller': 2.0, 'doesn': 1.0, 'is': 1.0, 'it': 2.0, 'this': 1.0, 'with': 1.0, 'car': 1.0, 'comes': 1.0, 'small': 2.0, 'folds': 1.0, 'of': 1.0, 'up': 2.0, 'and': 1.0, 'trunk': 2.0, 'the': 1.0, 't': 1.0, 'great': 1.0, 'light': 1.0, 'take': 1.0}
Word element => {'no': 1.0, 'angle': 1.0, 'she': 1.0, 'when': 1.0, 'head': 1.0, 'support': 2.0, 'help': 1.0, 'or': 1.0, 'pillow': 2.0, 's': 5.0, 'travel': 1.0, 'could': 2.0, 'we': 5.0, 'rest': 1.0, 'walking': 1.0, 'daughter': 1.0, 'wheels': 1.0, 'also': 1.0, 'somewhere': 1.0, 'to': 6.0, 'as': 1.0, 'lightweight': 1.0, 'so': 2.0, 'bit': 1.0, 'unfold': 1.0, 'used': 1.0, 'takes': 1.0, 'little': 2.0, 'very': 1.0, 'almost': 1.0, 'year': 1.0, 'example': 1.0, 'ready': 1.0, 'convenient': 1.0, 'with': 2.0, 'option': 1.0, 'makes': 1.0, 'keep': 1.0, 'did': 1.0, '10': 1.0, 'for': 4.0, 'a': 6.0, 'maneuverability': 1.0, 'old': 1.0, 'handy': 1.0, 'kid': 1.0, 'tram': 1.0, 'italy': 1.0, 'during': 1.0, 'and': 4.0, 'went': 1.0, 'ride': 1.0, 'lined': 1.0, 'it': 11.0, 'full': 1.0, 'while': 1.0, 'backpack': 3.0, '3': 2.0, 'on': 3.0, 'days': 1.0, 'life': 1.0, 'just': 1.0, 'but': 1.0, '2': 1.0, 'our': 3.0, 'stroller': 2.0, 'was': 3.0, 'he': 1.0, 'fold': 1.0, 'the': 8.0, 'of': 4.0, 'b': 1.0, 'off': 1.0, 'girl': 1.0, 're': 1.0, 'smaller': 1.0, 'use': 1.0, 'storing': 1.0, 'something': 1.0, 'else': 1.0, 'took': 1.0, 'seat': 1.0, 'in': 1.0, 'have': 2.0, 'practice': 1.0, 'plane': 1.0, 'couple': 1.0, 'carry': 1.0, 'cons': 1.0, 'mild': 1.0, '1': 1.0, 'feels': 1.0, 'britax': 1.0, 'first': 1.0, 'flimsy': 1.0, 'probably': 1.0, 'size': 1.0, 'because': 2.0, 'not': 2.0, 'at': 1.0, 'compromised': 1.0, 'is': 1.0, 'neck': 2.0, 'obviously': 1.0, 'using': 1.0, 'asleep': 1.0, 'good': 1.0, 'gravel': 1.0, 'this': 1.0, 'sidewalks': 1.0, 'saver': 1.0, 'paths': 1.0, 'all': 1.0, 'an': 1.0}
Word element => {'back': 2.0, 'make': 1.0, 'cover': 1.0, 'been': 1.0, 'has': 1.0, 'wish': 1.0, 'take': 1.0, 'strollers': 1.0, 'am': 1.0, 'option': 1.0, 'cheaper': 1.0, 'would': 1.0, 'better': 1.0, 'think': 1.0, 'overall': 1.0, 'halt': 1.0, 'even': 1.0, 'directions': 1.0, 'both': 1.0, 'swing': 1.0, 'legs': 1.0, 'position': 1.0, 'comfortable': 1.0, 'more': 1.0, 'cabinet': 1.0, 'there': 1.0, 'give': 1.0, 'not': 3.0, 'head': 1.0, 'hips': 1.0, 'under': 1.0, 'son': 2.0, 'middle': 1.0, 'international': 1.0, 'gate': 2.0, 'asking': 1.0, 'photo': 1.0, 'snap': 1.0, 'allowed': 1.0, 'airplane': 1.0, 'in': 5.0, 'my': 5.0, 'shown': 1.0, 'claim': 1.0, 'reach': 1.0, 'way': 2.0, 'to': 14.0, 'while': 2.0, 'because': 1.0, 'feet': 3.0, 'i': 8.0, 'board': 1.0, 'but': 4.0, 'stroller': 7.0, 'stretch': 1.0, 'use': 1.0, 'front': 1.0, 'him': 2.0, 'it': 13.0, 'this': 4.0, 'from': 1.0, 'allow': 1.0, 'since': 1.0, 'baggage': 1.0, 'traveling': 2.0, 'push': 1.0, 'you': 5.0, 'airlines': 1.0, 'as': 4.0, 'leave': 1.0, 'rest': 1.0, 't': 2.0, 'a': 5.0, 'go': 1.0, 'steps': 1.0, 'airports': 1.0, 'move': 1.0, 'caused': 1.0, 'used': 1.0, 'shoulders': 1.0, 'some': 1.0, 'carry': 3.0, 'look': 1.0, 'is': 8.0, 'at': 2.0, 'don': 1.0, 'flight': 1.0, 'on': 5.0, 'won': 1.0, 'can': 1.0, 'so': 3.0, 'needs': 1.0, 'good': 2.0, 'which': 1.0, 'like': 3.0, 'what': 1.0, 'several': 1.0, 'thing': 1.0, 'light': 1.0, 'umbrella': 4.0, 'and': 3.0, 'another': 1.0, 'block': 1.0, 'also': 1.0, 'will': 1.0, 'one': 2.0, 'over': 1.0, 'open': 1.0, 'through': 1.0, 'before': 1.0, 'enter': 1.0, 'hated': 1.0, 'are': 1.0, 'plane': 1.0, 'have': 1.0, 'practice': 1.0, 'be': 2.0, 'quick': 1.0, 'the': 16.0, 'of': 1.0, 'fits': 1.0, 'all': 1.0, 'an': 2.0, 'other': 1.0, 'passengers': 1.0, 'about': 1.0, 'behind': 1.0, 'wheels': 1.0, 'fold': 1.0, 'he': 1.0, 'for': 3.0, '2yrs': 1.0, 'old': 1.0, 'kept': 2.0, 'resting': 1.0, 'his': 3.0}
Word element => {'not': 1.0, 'wasn': 1.0, 'sized': 1.0, 'more': 1.0, 'version': 2.0, 'expecting': 1.0, 'easy': 1.0, 'sturdy': 1.0, 'made': 1.0, 'fair': 1.0, 'time': 1.0, 'periods': 1.0, 'on': 1.0, 'very': 2.0, 'being': 1.0, 'cannot': 1.0, 'expected': 1.0, 'were': 2.0, 'been': 1.0, 'into': 1.0, 'collapsible': 2.0, 'months': 1.0, 'bought': 1.0, 'one': 1.0, 'extended': 1.0, 'years': 1.0, 'both': 2.0, '5': 2.0, 'there': 1.0, 'umbrella': 3.0, '6': 1.0, 'carry': 2.0, 'children': 1.0, 'wouldn': 3.0, 'able': 2.0, 'taking': 1.0, 'to': 7.0, 'as': 1.0, 'day': 1.0, 'looking': 2.0, 'practical': 1.0, 'well': 1.0, 'i': 12.0, 'thinking': 1.0, '4': 1.0, '2': 1.0, 't': 4.0, 'we': 2.0, 'imagine': 1.0, 'a': 5.0, 'city': 1.0, 'could': 1.0, 'of': 7.0, 'the': 11.0, 'place': 1.0, 'heavier': 1.0, 'entire': 1.0, 'my': 5.0, 'lightweight': 1.0, 'be': 4.0, 'form': 1.0, 'back': 1.0, 'prayers': 1.0, 'ungainly': 1.0, 'recently': 1.0, 'and': 3.0, 'trip': 2.0, 'like': 2.0, 'while': 2.0, 'from': 1.0, 'backpack': 4.0, 'around': 2.0, 'old': 2.0, 'answered': 1.0, 'all': 1.0, 'an': 3.0, 'tops': 1.0, 'bad': 1.0, 'are': 1.0, 'italy': 1.0, 'in': 4.0, 'each': 1.0, 'visiting': 1.0, 'where': 1.0, 'product': 2.0, 'just': 4.0, 'this': 4.0, 'perfect': 1.0, 'sections': 1.0, 'seemed': 2.0, 'quicksmart': 1.0, 'compromise': 1.0, 'use': 1.0, 'have': 1.0, 'worn': 1.0, 'lug': 1.0, 'it': 4.0, 'for': 2.0, '10': 1.0, 'backs': 1.0, 'appeared': 1.0, 'stroller': 7.0, 'disappointed': 1.0, 'also': 2.0, 'compact': 3.0, 'had': 1.0, 'photos': 1.0, 'online': 1.0, 'that': 1.0, 'because': 1.0, 'than': 1.0, 'was': 7.0, 'what': 1.0, 'when': 1.0, 'am': 1.0, 'reached': 1.0, 'collapsed': 1.0, 'collapse': 1.0, 'knew': 2.0, 'shoulders': 1.0, 'above': 1.0, 'regular': 1.0, 'knees': 1.0, 'much': 1.0}
Word element => {'at': 1.0, 'no': 1.0, 'airport': 1.0, 'into': 1.0, 'all': 1.0, 'pack': 1.0, 'my': 2.0, 'plane': 1.0, 'carrier': 1.0, 'in': 2.0, 'baby': 1.0, 'to': 1.0, 'had': 1.0, 'i': 1.0, 'ride': 1.0, 'so': 1.0, 'got': 1.0, 'as': 1.0, 'best': 1.0, 'we': 2.0, 'for': 1.0, 'the': 2.0, 'looks': 1.0, 'many': 1.0, 'traveling': 1.0, 'is': 1.0, 'on': 4.0, 'traveled': 1.0, 'with': 1.0, 'this': 3.0, 'comments': 1.0, 'get': 1.0, 'and': 2.0, 'even': 2.0, 'trouble': 1.0, 'back': 1.0, 'stroller': 2.0, 'while': 1.0, 'well': 2.0, 'front': 1.0, 'a': 2.0, 'few': 1.0, 'pictures': 1.0, 'of': 1.0, 'vacation': 1.0, 'were': 1.0}
Word element => {'80': 1.0, 'early': 1.0, 'invented': 1.0, 'thing': 1.0, 'wasn': 1.0, 'diaper': 1.0, 'bed': 1.0, 'item': 1.0, 'particular': 1.0, 'now': 1.0, 'or': 1.0, 'head': 1.0, 'grab': 1.0, 'days': 1.0, 'continue': 1.0, 'bag': 1.0, 'bassinet': 1.0, 'little': 1.0, 'room': 1.0, 'they': 1.0, 'time': 1.0, 'why': 2.0, 'was': 1.0, 'to': 1.0, 'would': 2.0, 'something': 1.0, 'first': 1.0, 'with': 2.0, 'thought': 1.0, 'purchased': 1.0, 'instead': 1.0, 'have': 2.0, 'born': 1.0, 'asleep': 1.0, 'the': 8.0, 'hoping': 1.0, 'in': 5.0, 'drive': 1.0, 'this': 6.0, 'perfect': 1.0, 'like': 1.0, 'that': 1.0, 'babies': 1.0, 'box': 1.0, 'start': 1.0, 'and': 6.0, 'i': 1.0, 'back': 3.0, 'your': 1.0, 'put': 1.0, 'opened': 1.0, 'visit': 1.0, 'were': 1.0, 'black': 1.0, 's': 1.0, 'we': 1.0, 't': 2.0, 'a': 3.0, 'grabbing': 1.0, 'my': 2.0, 'old': 1.0, 'begins': 1.0, 'fall': 1.0, 'around': 1.0, 'is': 2.0, 'for': 2.0, 'you': 1.0, 'when': 3.0, 'someone': 1.0, 'baby': 6.0, 'visiting': 1.0, 'friend': 1.0, 'of': 1.0, 'didn': 1.0, 'heading': 1.0, 'home': 2.0, 'fussing': 1.0, 'nap': 1.0}
Word element => {'s': 1.0, 'little': 1.0, 'my': 1.0, 'against': 1.0, 'like': 1.0, 'putting': 1.0, 'i': 1.0, 'defect': 1.0, 'a': 1.0, 'maybe': 1.0, 'size': 3.0, 'got': 3.0, 'then': 1.0, 'nose': 1.0, '0': 1.0, 'isn': 1.0, 'slightly': 1.0, 't': 1.0, 'nipple': 3.0, 'the': 6.0, 'so': 1.0, 'butterfly': 1.0, 'small': 1.0, 'we': 3.0, 'perfect': 1.0, 'disappointed': 1.0, 'up': 1.0, 'of': 1.0, '6': 1.0, 'it': 1.0, 'with': 2.0, 'mos': 1.0, 'was': 2.0, 'super': 1.0, 'do': 1.0, 'and': 2.0, 'shape': 2.0, 'another': 1.0, 'one': 3.0, 'round': 1.0, 'but': 2.0, 'same': 1.0}
Word element => {'new': 1.0, 'one': 1.0, 'opened': 1.0, 'and': 1.0, 'to': 1.0, 'defects': 1.0, 'if': 2.0, 'like': 1.0, 'sure': 1.0, 'be': 1.0, 'supposed': 1.0, 'this': 1.0, 'it': 2.0, 'is': 1.0, 'just': 1.0, 'not': 1.0, 'brand': 1.0, 'am': 1.0, 'packaging': 1.0, 'i': 2.0, 'that': 1.0, 'are': 1.0, 'there': 1.0, 'says': 1.0, 'any': 1.0, 'don': 1.0, 'the': 1.0, 't': 1.0, 'please': 1.0, 'use': 1.0}
Word element => {'returned': 1.0, 'so': 1.0, 'time': 1.0, 'long': 1.0, 'used': 1.0, 'if': 1.0, 'issues': 1.0, 'that': 1.0, 'worried': 1.0, 'may': 1.0, 'she': 1.0, 'tippie': 1.0, 'current': 1.0, 'than': 1.0, 'of': 1.0, '6': 3.0, 'a': 2.0, 'tommie': 1.0, 'arrived': 1.0, 'made': 1.0, 'the': 3.0, 'cause': 1.0, 'smaller': 1.0, 'my': 1.0, 'i': 4.0, 'old': 1.0, 'palate': 1.0, 'once': 1.0, 'over': 1.0, 'natural': 1.0, '12': 2.0, 'rubber': 1.0, 'pacifier': 2.0, 'and': 2.0, 'find': 1.0, 'ordered': 1.0, 'to': 1.0, 'was': 4.0, 'mo': 3.0, 'size': 2.0, 'using': 1.0, 'for': 1.0, 'period': 1.0, 'with': 1.0, 'excited': 1.0, 'it': 3.0}
Word element => {'loves': 1.0, 'daughter': 1.0, 'my': 1.0, 'it': 4.0, 'and': 1.0, 'parts': 1.0, 'clean': 1.0, 'i': 1.0, 'one': 1.0, 's': 2.0, 'piece': 1.0, 'recommend': 1.0, 'no': 1.0, 'safe': 1.0, 'easy': 1.0, 'loose': 1.0, 'to': 1.0, 'so': 1.0}
Word element => {'infant': 1.0, 'nice': 1.0, 'made': 1.0, 'is': 1.0, 'and': 1.0, 'paci': 1.0, 'epic': 1.0, 'this': 1.0, 'other': 1.0, 'like': 2.0, 'at': 1.0, 'for': 1.0, 'one': 1.0, 'i': 2.0, 'lil': 1.0, 'not': 1.0, 'just': 2.0, 'but': 1.0, 't': 1.0, 'the': 2.0, '3': 1.0, 'different': 1.0, 'brands': 1.0, 'fail': 1.0, 'breastfeed': 1.0, 'my': 2.0, 'high': 1.0, 'sturdy': 1.0, 'purchased': 1.0, 'had': 1.0, 'allo': 1.0, 'pacy': 1.0, 'didn': 1.0, 'hopes': 1.0}
Word element => {'anyone': 1.0, 'whenever': 1.0, 'overall': 1.0, 'slides': 1.0, 'floors': 1.0, 'hardwood': 1.0, 'have': 1.0, 'sliding': 1.0, 'from': 1.0, 'stop': 1.0, 'what': 1.0, 'i': 2.0, 's': 3.0, 'it': 8.0, 'disappointing': 1.0, 'but': 1.0, 'especially': 1.0, 'cute': 1.0, 'pretty': 1.0, 'rug': 1.0, 'expected': 1.0, 'really': 1.0, 'is': 3.0, 'on': 2.0, 'the': 2.0, 'made': 1.0, 'to': 2.0, 'be': 1.0, 'since': 2.0, 'by': 1.0, 'of': 1.0, 'there': 1.0, 'bottom': 1.0, 'steps': 1.0, 'not': 1.0, 'carter': 1.0, 'nothing': 1.0}
Word element => {'cute': 1.0, 'quality': 1.0, 'good': 1.0, 'cribs': 1.0, 'the': 2.0, 'have': 1.0, 'we': 1.0, 'our': 3.0, 'for': 3.0, 'crib': 2.0, 'in': 2.0, 'perfect': 2.0, 'fits': 1.0, 'really': 1.0, 'looks': 1.0, 'is': 3.0, 'length': 1.0, 'nursery': 2.0, 'a': 1.0, 'mini': 2.0, 'front': 1.0, 'rug': 3.0, 'boy': 1.0, 'girl': 1.0, 'twins': 1.0, 'and': 2.0, 'perfectly': 1.0, 'this': 3.0, 'it': 1.0, 'of': 1.0}
Word element => {'purchased': 1.0, 'receive': 1.0, 'not': 1.0, 'did': 1.0, 'that': 1.0, 'very': 1.0, 'm': 1.0, 'well': 1.0, 'what': 1.0, 'his': 1.0, 'love': 1.0, 'product': 1.0, 'right': 1.0, '4': 1.0, 'i': 6.0, 'sides': 1.0, 'out': 1.0, 'pattern': 1.0, '3': 1.0, 'room': 1.0, 'received': 1.0, 'but': 1.0, 'put': 1.0, 'of': 1.0, 'up': 1.0, 'so': 1.0, 'the': 1.0, '2': 1.0, 'disappointed': 1.0, 'in': 1.0, 'crib': 1.0, 'matches': 1.0, 'to': 2.0, 'look': 1.0, 'my': 1.0, 'make': 1.0, 'and': 1.0, 'sons': 1.0, 'this': 1.0, 'only': 2.0, 'it': 2.0}
Word element => {'neutral': 1.0, 'gender': 1.0, 'that': 1.0, 'padding': 1.0, 'features': 1.0, 'is': 2.0, 'the': 2.0, 'her': 1.0, 'we': 1.0, 'or': 2.0, 'easy': 1.0, 'sleep': 2.0, 'to': 3.0, 'had': 1.0, 'little': 1.0, 'very': 2.0, 'up': 1.0, 'set': 1.0, 'of': 1.0, 'entertained': 1.0, 'always': 1.0, 'in': 1.0, 'design': 1.0, 'lots': 1.0, 'baby': 1.0, 'him': 1.0, 'bassinet': 1.0, 'are': 1.0, 'keep': 1.0, 'one': 1.0, 'on': 1.0, 'your': 1.0, 'great': 1.0, 'nice': 1.0, 'most': 1.0, 'pack': 1.0, 'have': 1.0, 'bad': 1.0, 'n': 1.0, 'hard': 1.0, 'felt': 1.0, 'it': 1.0, 'plays': 1.0, 'and': 1.0, 'i': 1.0, 'other': 1.0, 'making': 1.0, 'my': 1.0, 'soothe': 1.0, 'beautiful': 1.0}
Word element => {'carry': 1.0, 'easier': 1.0, 'board': 1.0, 'the': 3.0, 'on': 1.0, 'feels': 1.0, 'and': 4.0, 'lite': 1.0, 'probably': 1.0, 'like': 2.0, '16': 1.0, 'it': 5.0, 'mattress': 1.0, 'this': 3.0, 'with': 1.0, 'big': 1.0, 'great': 1.0, 'feel': 1.0, 'sits': 1.0, 'got': 1.0, 'yard': 1.0, 'does': 1.0, 'because': 1.0, 'not': 4.0, 'light': 1.0, 'pounds': 1.0, 'i': 3.0, 'said': 1.0, 'was': 1.0, 'stilts': 1.0, 'to': 2.0, 'as': 3.0, 'bassinet': 1.0, 'so': 1.0, 'easy': 1.0, 'home': 1.0, 'much': 1.0, 'pack': 2.0, 'worth': 1.0, 'but': 1.0, '2': 1.0, 'money': 1.0, 'ended': 1.0, 'am': 1.0, 'sending': 1.0, 'back': 1.0, 'up': 1.0, 'graco': 1.0, 'a': 1.0, 'go': 1.0, 's': 2.0, 'assemble': 1.0, 'for': 1.0, 'travel': 1.0}
Word element => {'washes': 1.0, 'looking': 1.0, 'i': 1.0, 'what': 1.0, 'just': 1.0, 'pink': 1.0, 'on': 1.0, 'little': 1.0, 'baby': 1.0, 'my': 2.0, 'nicely': 1.0, 'the': 2.0, 'comfort': 1.0, 'one': 1.0, 'for': 2.0, 'was': 2.0, 'perfect': 1.0, 'sheet': 1.0, 'soft': 1.0, 'bassinet': 1.0, 'it': 2.0, 'this': 1.0, 'provides': 1.0, 'and': 1.0, 'thicker': 1.0, 'is': 2.0, 'side': 1.0, 'so': 1.0, 'girl': 1.0, 'pale': 1.0}
Word element => {'flat': 1.0, 'up': 1.0, 'grows': 1.0, 'on': 1.0, 'mattress': 2.0, 'corners': 1.0, 'turn': 1.0, 'have': 1.0, 'its': 1.0, 'baby': 2.0, 'but': 1.0, 'will': 1.0, 'sheets': 1.0, 'am': 1.0, 'a': 1.0, 'the': 5.0, 'as': 1.0, 'must': 1.0, 'for': 1.0, 'fit': 1.0, 'new': 1.0, 'i': 1.0, 'sure': 1.0, 'lie': 1.0}
Word element => {'return': 1.0, 'times': 1.0, 'multiple': 1.0, 'been': 1.0, 'have': 1.0, 'that': 1.0, 'ago': 1.0, 'tossed': 1.0, 'years': 1.0, 'bc': 1.0, '10': 1.0, 'packages': 1.0, 'very': 1.0, 'from': 1.0, 'items': 1.0, 'after': 1.0, 'so': 1.0, 'sheets': 1.0, 'washed': 3.0, 'put': 1.0, 'but': 2.0, 'cheap': 1.0, 'i': 4.0, 'product': 1.0, 'flannel': 1.0, 'bought': 1.0, 'looks': 2.0, 'is': 1.0, 't': 1.0, 'the': 2.0, 'disappointed': 1.0, 'perfect': 1.0, 'in': 1.0, 'it': 1.0, 'bassinet': 1.0, 'couldn': 1.0, 'and': 2.0, 'could': 1.0, 'like': 2.0, 'had': 1.0, 'was': 1.0, 'its': 1.0, 'basically': 1.0, 'size': 1.0, 'right': 1.0, 'ruined': 1.0}
Word element => {'great': 1.0, 'fit': 1.0, 'and': 1.0, 'very': 1.0, 'soft': 1.0, 'thick': 1.0, 'made': 1.0, 'are': 2.0, 'material': 1.0, 'ones': 1.0, 'had': 1.0, 'a': 2.0, 'i': 1.0, 'finding': 1.0, 'time': 1.0, 'oval': 1.0, 'hard': 1.0, 'fitted': 1.0, 'of': 1.0, 'bassinet': 1.0, 'sheets': 1.0, 'pretty': 1.0, 'these': 1.0}
Word element => {'soft': 1.0, 'fit': 1.0, 'try': 1.0, 'give': 1.0, 'would': 1.0, 'at': 2.0, 'sale': 1.0, 'extra': 1.0, 'for': 1.0, 'daughter': 1.0, 'they': 1.0, 'recently': 1.0, 'are': 1.0, 'bassinet': 1.0, 'a': 3.0, 'my': 1.0, 'find': 1.0, 'bought': 1.0, 'garage': 1.0, 'i': 3.0, 'couldn': 1.0, 'and': 2.0, 'sheets': 1.0, 'these': 1.0, 'the': 2.0, 't': 1.0, 'size': 1.0, 'right': 2.0, 'needed': 1.0, 'store': 1.0, 'thought': 1.0}
Word element => {'so': 1.0, 'fit': 1.0, 'because': 1.0, 'two': 1.0, 'bought': 1.0, 'i': 1.0, 'material': 1.0, 'soft': 1.0, 'fits': 1.0, 'my': 1.0, 'of': 1.0, 'bassinet': 1.0, 'nice': 1.0, 'mattress': 1.0, 'perfectly': 1.0, 'it': 2.0, 'well': 1.0, 'actually': 1.0, 's': 1.0, 'and': 1.0, 'very': 1.0, 'them': 1.0, 'a': 1.0}
Word element => {'who': 1.0, 'all': 1.0, 'to': 1.0, 'soft': 1.0, 'one': 1.0, 'i': 1.0, 'need': 1.0, 'friends': 1.0, 'and': 2.0, 'up': 1.0, 'recommend': 1.0, 'bassinet': 1.0, 'nice': 1.0, 'ended': 1.0, 'buying': 1.0, 'my': 1.0, 'more': 1.0, 'the': 1.0, 'for': 1.0}
Word element => {'easier': 1.0, 'it': 1.0, 'seems': 1.0, 'like': 1.0, 'and': 1.0, 'should': 1.0, 'sheet': 2.0, 'fine': 1.0, 'hard': 1.0, 'be': 1.0, 'to': 1.0, 'match': 1.0, 'size': 3.0, 'bassinet': 1.0, 'of': 3.0, 'is': 1.0, 'with': 1.0, 'mattress': 1.0}
Word element => {'beat': 1.0, 't': 1.0, 'place': 1.0, 'into': 1.0, 'days': 1.0, 'snapped': 1.0, 'arrive': 1.0, 'provided': 1.0, 'number': 1.0, 'customer': 2.0, 'called': 1.0, 'through': 1.0, 'expedited': 1.0, 'go': 1.0, 'rather': 1.0, 'defect': 1.0, 'be': 2.0, 'might': 1.0, 'think': 1.0, 'about': 1.0, 'reviewers': 1.0, 'problem': 1.0, 'brand': 1.0, 'or': 1.0, 'another': 1.0, 'use': 1.0, 'want': 1.0, 'love': 1.0, 'hard': 1.0, 'comes': 1.0, 'room': 1.0, 'up': 1.0, 'take': 1.0, 'around': 1.0, 'wheel': 2.0, 'never': 1.0, 'haul': 1.0, 'mentioned': 1.0, 'friends': 1.0, 'not': 1.0, 'replace': 1.0, 'stroller': 6.0, 'them': 1.0, 'amazon': 1.0, 'been': 1.0, 'beats': 1.0, 'loved': 1.0, 'are': 1.0, 'working': 1.0, 'this': 4.0, 'valuable': 1.0, 'kids': 1.0, 'off': 1.0, 'own': 1.0, 'each': 1.0, 've': 1.0, 'long': 1.0, 'impressively': 1.0, 'service': 2.0, 'every': 1.0, 'strollers': 2.0, 'last': 2.0, 'peg': 3.0, 'batch': 1.0, 'compact': 1.0, 'had': 1.0, 'try': 1.0, 'one': 2.0, 'aria': 1.0, 'for': 2.0, 'using': 1.0, 'made': 1.0, 'which': 1.0, 'hand': 1.0, 'perego': 3.0, 'have': 3.0, 'gem': 1.0, 'it': 12.0, 'six': 1.0, 'i': 10.0, 'again': 1.0, 'car': 2.0, 'infant': 2.0, 'mile': 1.0, 'seats': 1.0, 'was': 1.0, 'knee': 1.0, 'and': 8.0, 'toss': 1.0, 'immediately': 1.0, 'second': 1.0, 'at': 2.0, 'is': 3.0, 'me': 1.0, 'my': 8.0, 'but': 2.0, 'new': 1.0, 'time': 1.0, 'lightweight': 1.0, 'can': 3.0, 'so': 5.0, 'they': 2.0, 'by': 1.0, 'life': 1.0, 'a': 8.0, 's': 5.0, 'easy': 1.0, 'breakage': 1.0, 'folds': 1.0, 'in': 5.0, 'seat': 1.0, 'other': 1.0, 'an': 1.0, 'all': 2.0, 'steer': 1.0, 'simple': 2.0, 'than': 1.0, 'particular': 1.0, 'assemble': 1.0, 'way': 1.0, 'did': 1.0, 'dirtiness': 1.0, 'makes': 1.0, 'right': 2.0, 'll': 1.0, 'maneuver': 1.0, 'easier': 1.0, 'coverts': 1.0, 'from': 2.0, 'while': 2.0, 'with': 3.0, 'seating': 1.0, 'products': 1.0, 'child': 1.0, 'problems': 1.0, 'that': 2.0, 'easily': 2.0, 'because': 1.0, 'same': 1.0, 'under': 1.0, 'two': 4.0, 'nice': 1.0, 'little': 1.0, 'you': 1.0, 'push': 1.0, 'years': 1.0, 'no': 2.0, 'to': 6.0, 'lie': 1.0, 'general': 1.0, 'do': 1.0, 'holding': 1.0, 'newborn': 1.0, 'back': 1.0, 'popping': 1.0, 'the': 7.0, 'doing': 1.0, 'of': 2.0, 'travel': 1.0, 'pp': 1.0, 'gigantic': 1.0, 'system': 1.0}
Word element => {'easily': 1.0, 'hand': 2.0, 'one': 2.0, 'i': 1.0, 'controlled': 1.0, 'it': 1.0, 'love': 1.0, 'the': 1.0, 'ease': 1.0, 'of': 1.0, 'this': 1.0, 'stroller': 1.0, 'is': 1.0, 'with': 2.0, 'and': 1.0, 'folds': 1.0, 'up': 1.0}
Word element => {'coarse': 1.0, 'upstairs': 1.0, 'toe': 1.0, 'thanks': 1.0, 'great': 1.0, 'big': 1.0, 'price': 1.0, 'best': 1.0, 'from': 1.0, 'fold': 1.0, 'of': 1.0, 'one': 1.0, 'hand': 1.0, 'light': 1.0, 'easy': 2.0, 'stroller': 1.0, 'week': 1.0, 'wight': 1.0, 'doesn': 1.0, 'lost': 1.0, 'this': 1.0, 'only': 1.0, 'first': 1.0, 'it': 1.0, 'can': 1.0, 'basket': 1.0, 'without': 1.0, 'the': 6.0, 'push': 1.0, 'cup': 1.0, 't': 1.0, 'go': 1.0, 'kept': 1.0, 'biggest': 1.0, 'secret': 1.0, 'is': 2.0, 'side': 1.0, 'head': 1.0, 'to': 2.0, 'breaks': 1.0, 'locking': 1.0, 'well': 1.0, 'wheels': 1.0, 'down': 1.0, 'i': 1.0, 'holder': 1.0, 'stay': 1.0, 'on': 1.0, 'oh': 1.0, 'and': 1.0}
Word element => {'back': 1.0, 'off': 1.0, 'take': 1.0, 'store': 1.0, 'of': 1.0, 'undo': 1.0, 'when': 1.0, 'you': 2.0, 'her': 1.0, 'can': 1.0, 'but': 1.0, 'baby': 1.0, 'strollers': 1.0, 'common': 1.0, 'be': 2.0, 'underneath': 1.0, 'may': 1.0, 'note': 1.0, 'one': 1.0, 'me': 1.0, 'and': 3.0, 'harness': 2.0, 'do': 1.0, 'taken': 1.0, 'it': 5.0, 'this': 1.0, 'or': 2.0, 'let': 1.0, 'together': 1.0, 'stroller': 1.0, 'i': 3.0, 'took': 1.0, 'the': 8.0, 'admit': 1.0, 'should': 1.0, 'long': 1.0, 'even': 1.0, 'just': 3.0, 'over': 1.0, 'don': 2.0, 'everything': 1.0, 'want': 1.0, 'in': 2.0, 'said': 1.0, 'say': 1.0, 'is': 3.0, 'on': 2.0, 'put': 3.0, '3': 1.0, 'out': 2.0, 'shopping': 1.0, 'to': 4.0, 'our': 1.0, 'still': 1.0, 'coat': 2.0, 'would': 1.0, 'basket': 2.0, 'that': 4.0, 'been': 1.0, 'figured': 1.0, 'challenging': 1.0, 'love': 1.0, 'his': 1.0, 'sturdy': 1.0, '1': 1.0, 'big': 2.0, 'have': 3.0, 'must': 1.0, 'how': 1.0, 'walk': 1.0, 'time': 1.0, 'so': 2.0, 'go': 1.0, 't': 2.0, 's': 1.0, 'we': 1.0, 'a': 2.0}
Word element => {'morning': 1.0, 'a': 2.0, 'hat': 1.0, 'crocheted': 1.0, 'and': 2.0, 'girl': 1.0, 'grand': 1.0, 'on': 1.0, 'bow': 1.0, 'soft': 1.0, 'was': 3.0, 'baby': 1.0, 'incredibly': 1.0, 's': 1.0, 'niece': 1.0, 'christmas': 2.0, 'with': 1.0, 'this': 1.0, 'it': 2.0, 'feather': 1.0, 'for': 1.0, 'my': 1.0, 'adorable': 1.0, 'big': 1.0, 'hit': 1.0}
Word element => {'looks': 1.0, 'and': 1.0, 'its': 1.0, 'later': 1.0, 'year': 1.0, 'a': 1.0, 'it': 1.0, 'bought': 1.0, 'loved': 1.0, 'this': 1.0, 'we': 1.0, 'all': 1.0, 'than': 1.0, 'stroller': 1.0, 'but': 1.0, 'i': 1.0, 'when': 1.0, 'first': 1.0, 'cheap': 1.0, 'wabilly': 1.0, 'less': 1.0}
Word element => {'out': 1.0, 'satisfied': 1.0, 'other': 1.0, 'is': 1.0, 'product': 1.0, 'box': 1.0, 'there': 1.0, 'of': 1.0, 'since': 1.0, 'brands': 1.0, 'his': 1.0, 'excellent': 1.0, 'very': 1.0, 'son': 1.0, 'timely': 1.0, 'for': 1.0, 'workmanship': 1.0, 'wife': 1.0, 'superior': 1.0, 'my': 1.0, 'the': 2.0, 'with': 1.0, 'this': 1.0, 'purchased': 1.0, 'i': 1.0, 'they': 1.0, 'and': 4.0, 'delivery': 1.0, 'were': 1.0, 'condition': 1.0, 'expecting': 1.0, 'twins': 1.0, 'another': 1.0, 'pleasantly': 1.0, 'to': 1.0, 'was': 1.0, 'pleased': 1.0}
Word element => {'the': 1.0, 'definitely': 1.0, 'did': 1.0, 'so': 1.0, 'am': 1.0, 'and': 1.0, 'i': 3.0, 'had': 1.0, 'for': 1.0, 'time': 1.0, 'worth': 1.0, 'been': 1.0, 'considering': 1.0, 'stroller': 1.0, 'cost': 1.0, 'happy': 1.0, 'buying': 1.0, 'a': 1.0, 'this': 1.0, 'long': 1.0}
Word element => {'burns': 1.0, 'spills': 1.0, 'avoid': 1.0, 'safety': 1.0, 'suspect': 1.0, 'i': 1.0, 'but': 1.0, 'cup': 1.0, 'there': 1.0, 'only': 1.0, 'you': 3.0, 'fantastic': 1.0, 'when': 2.0, 'face': 2.0, 'switches': 1.0, 'can': 2.0, 'so': 3.0, 'main': 1.0, 'turn': 1.0, 'on': 3.0, 'make': 1.0, 'your': 1.0, 'washed': 1.0, 'that': 1.0, 'easily': 1.0, 'because': 1.0, 'a': 5.0, 'child': 3.0, 'up': 1.0, 'in': 1.0, 'seat': 4.0, 'as': 1.0, 'whilst': 1.0, 'eat': 1.0, 'chassis': 1.0, 'older': 1.0, 'and': 6.0, 'could': 1.0, 'travel': 1.0, 'money': 1.0, 'bought': 1.0, 'removed': 1.0, 'younger': 1.0, 'have': 3.0, 'holder': 1.0, 'system': 1.0, 'no': 1.0, 'of': 1.0, 'the': 11.0, 'accessories': 1.0, 'love': 1.0, 'expensive': 1.0, 'for': 4.0, 'it': 3.0, 'was': 1.0, 'safely': 1.0, 'infant': 2.0, 'rate': 1.0, 'which': 1.0, 'to': 8.0, 'high': 1.0, 'stand': 1.0, 'at': 1.0, 'is': 6.0, 'or': 1.0, 'feature': 1.0, 'buy': 1.0, 'saved': 1.0, 'coffee': 1.0, 'our': 2.0, 'stroller': 4.0, 'marketing': 1.0, 'frame': 1.0, 'needed': 1.0, 'newborn': 1.0, 'we': 4.0, 'then': 1.0, 'lived': 1.0, 'learning': 1.0, 'con': 2.0, 'final': 1.0, 'fussy': 1.0, 'by': 1.0, 'just': 1.0, 'themselves': 1.0, 'used': 1.0, 'back': 1.0, 'directly': 1.0, 'did': 1.0, 'pitch': 1.0, 'forward': 1.0, 'not': 3.0, 'extra': 1.0, 'another': 1.0, 'also': 1.0, 'us': 2.0, 'recommend': 1.0, 'piece': 1.0, 'again': 1.0, 'car': 3.0, 'upholstery': 1.0, 'very': 1.0, 'forgiving': 1.0, 'drink': 1.0, 'be': 1.0, 'compared': 1.0, 'all': 1.0, 'matching': 1.0, 'an': 1.0, 'other': 1.0, 'strollers': 1.0, 'had': 1.0, 'this': 2.0, 'highly': 1.0}
Word element => {'sure': 1.0, '200z': 1.0, 'won': 1.0, 'this': 2.0, 'find': 1.0, 'cannot': 1.0, 'like': 1.0, 'angle': 1.0, 'whichever': 1.0, 'adjust': 1.0, 'all': 1.0, 'goes': 1.0, 'its': 1.0, 'hip': 1.0, 's': 1.0, 'low': 1.0, 'me': 1.0, 'up': 1.0, 'does': 1.0, 'wheel': 1.0, 'sun': 1.0, 'important': 1.0, 'most': 1.0, 'still': 1.0, 'you': 6.0, 'although': 1.0, 'fold': 1.0, 'easy': 2.0, 'pick': 1.0, 'basket': 1.0, 'cup': 1.0, 'on': 2.0, 'buy': 2.0, 'hand': 1.0, 'wants': 1.0, 'deck': 1.0, 'second': 1.0, 'save': 1.0, 'washable': 1.0, 'rips': 1.0, 'many': 1.0, 'baby': 2.0, 'am': 1.0, 'strollers': 1.0, 'to': 3.0, 'even': 1.0, 'oh': 1.0, 'with': 2.0, 'part': 1.0, 'fell': 1.0, 'can': 3.0, 'strength': 1.0, 'so': 1.0, '4th': 1.0, 'worth': 1.0, 'air': 1.0, 'in': 2.0, 'tray': 1.0, 'after': 1.0, 'metro': 1.0, 'diaper': 1.0, 't': 2.0, 'a': 2.0, 'we': 1.0, 'the': 10.0, 'hands': 2.0, 'want': 1.0, 'lite': 1.0, 'amazes': 1.0, '6': 1.0, '3rd': 1.0, 'tough': 1.0, 'and': 4.0, 'by': 2.0, 'graco': 2.0, 'yes': 1.0, 'peg': 1.0, 'travel': 2.0, 'new': 1.0, 'color': 1.0, 'system': 2.0, 'i': 5.0, 'little': 2.0, 'two': 1.0, 'was': 7.0, 'do': 1.0, 'changing': 1.0, 'dirt': 1.0, 'best': 1.0, 'for': 2.0, 'plane': 1.0, 'have': 2.0, 'born': 1.0, 'unfold': 1.0, 'flights': 1.0, 'down': 1.0, 'anything': 1.0, 'cracks': 1.0, '5th': 1.0, 'perego': 1.0, 'table': 1.0, 'one': 7.0, 'lot': 1.0, 'xlr': 1.0, 'built': 1.0, 'volo': 1.0, 'great': 2.0, 'but': 3.0, 'bought': 1.0, 'money': 2.0, '2': 1.0, 'cover': 2.0, 'four': 1.0, 'is': 5.0, 'not': 4.0, 'it': 6.0, 'recline': 1.0, 'hard': 1.0, 'control': 1.0, 'food': 1.0, 'or': 1.0, 'need': 2.0, 'because': 1.0, 'harnest': 1.0, 'maclaren': 2.0, 'they': 1.0, 'bad': 1.0, 'are': 1.0, 'under': 1.0, '15month': 1.0, 'regret': 1.0, 'holding': 1.0, 'half': 1.0, 'has': 1.0, 'thats': 1.0, 'seperately': 1.0, 'what': 1.0, 'didn': 1.0, 'realized': 1.0, 'way': 1.0, 'apart': 1.0, 'everything': 1.0, 'week': 1.0, 'returned': 1.0, 'mean': 1.0, 'nah': 1.0, 'which': 2.0, 'gift': 1.0, 'made': 1.0, 'ok': 1.0, '6th': 1.0, '430': 1.0, 'pliko': 1.0, 'your': 1.0, 'any': 1.0, 'idea': 1.0, 'mom': 1.0}
Word element => {'better': 1.0, 'built': 1.0, 'quality': 1.0, 'its': 1.0, 'plastic': 1.0, 'cheap': 1.0, 'handles': 1.0, 'bracket': 1.0, 'placed': 1.0, 'could': 1.0, 'a': 1.0, 'of': 2.0, 'front': 1.0, 'feel': 1.0, 'pass': 1.0, 'first': 1.0, 'higher': 1.0, 'it': 1.0, 'with': 1.0, 'release': 1.0, 'this': 1.0, 'all': 2.0, 'to': 3.0, 'lastly': 1.0, 'on': 1.0, 'accessed': 1.0, 'support': 1.0, 'some': 1.0, 'would': 1.0, 'position': 1.0, 'the': 9.0, 'start': 1.0, 'like': 2.0, 'by': 2.0, 'issues': 1.0, 'i': 3.0, 'in': 2.0, 'poorly': 1.0, 'me': 1.0, 'stroller': 2.0, 'most': 1.0, 'but': 2.0, 'saying': 1.0, 'back': 1.0, 'have': 4.0, 'let': 1.0, 'mechanisms': 1.0, 'pushed': 1.0, 'been': 1.0, 'that': 1.0, 'basket': 2.0, 'brands': 1.0, 'than': 1.0, 'because': 1.0, 'be': 2.0, 'handed': 1.0, 'manually': 1.0, 'locked': 1.0, 'irritating': 1.0, 'every': 1.0, 'time': 1.0, 'locking': 1.0, 'makes': 1.0, 'setup': 1.0, 'second': 1.0, 'under': 1.0, 'one': 1.0, 'cant': 1.0, 'hard': 1.0, 'from': 1.0}
Word element => {'best': 1.0, 'deserves': 1.0, 'daughter': 1.0, 'always': 1.0, 'brands': 1.0, 'those': 1.0, 'has': 1.0, 'else': 1.0, 'my': 1.0, 'cheap': 1.0, 'the': 2.0, 'are': 1.0, 'baby': 1.0, 'friends': 1.0, 'and': 1.0, 'jealous': 1.0, 'ugly': 1.0, 'other': 1.0, 'loves': 1.0, 'it': 1.0, 'everyone': 1.0, 'family': 1.0, 'so': 1.0}
Word element => {'give': 1.0, 'to': 1.0, 'picked': 1.0, 'i': 2.0, 'baby': 1.0, 'a': 1.0, 'for': 1.0, 'gift': 1.0, 'great': 1.0, 'love': 1.0, 'it': 2.0, 'scent': 1.0, 'quality': 1.0, 'nicely': 1.0, 'shower': 1.0, 'made': 1.0, 'glad': 1.0, 'color': 1.0, 'good': 1.0, 'no': 1.0, 'item': 2.0, 'on': 1.0}
Word element => {'cool': 1.0, 'at': 1.0, 'not': 1.0, 'it': 1.0, 'i': 1.0, 'week': 1.0, 'the': 3.0, 'is': 1.0, 'bag': 1.0, 'big': 1.0, 'all': 1.0, 'but': 1.0, 'spacious': 1.0, 'broke': 1.0, 'and': 1.0, 'zipper': 1.0, 'first': 1.0, 'had': 1.0, 'in': 1.0}
Word element => {'next': 1.0, 'and': 2.0, 'size': 1.0, 'plastic': 1.0, 'its': 1.0, 'look': 2.0, 'it': 3.0, 'or': 1.0, 'i': 3.0, 'pockets': 1.0, 'love': 1.0, 'cheap': 1.0, 'perfect': 1.0, 'but': 2.0, 'was': 1.0, 'doesn': 1.0, 'what': 2.0, 'thought': 1.0, 'the': 2.0, 'different': 1.0, 'bag': 1.0, 'be': 1.0, 'material': 1.0, 'expected': 1.0, 'cleans': 1.0, 'not': 1.0, 'lots': 1.0, 'another': 1.0, 'of': 2.0, 'up': 1.0, 'one': 1.0, 'color': 2.0, 'cant': 1.0, 'at': 1.0, 'to': 3.0, 'all': 1.0, 'have': 2.0, 'is': 1.0, 'made': 1.0, 'so': 1.0, 'very': 1.0, 'get': 1.0, 'easy': 1.0, 't': 1.0, 'a': 2.0, 'going': 1.0, 'might': 1.0, 'decide': 1.0}
Word element => {'hold': 1.0, 'not': 1.0, 'is': 1.0, 'up': 1.0, 'and': 1.0, 'months': 1.0, 'two': 1.0, 'broke': 1.0, 'its': 1.0, 'strap': 1.0, 'what': 1.0, 'you': 1.0, 'broken': 1.0, 'the': 3.0, 'already': 1.0, 'get': 1.0, 'for': 2.0, 'had': 1.0, 'first': 1.0, 'price': 1.0, 'does': 1.0, 'i': 1.0, 'it': 2.0}
Word element => {'quality': 1.0, 'better': 1.0, 'a': 1.0, 'pay': 1.0, 'little': 1.0, 'falls': 1.0, 'bag': 1.0, 'more': 1.0, 'the': 1.0, 't': 1.0, 'i': 1.0, 'your': 1.0, 'for': 1.0, 'one': 1.0, 'this': 1.0, 'it': 1.0, 'easily': 1.0, 'waste': 1.0, 'spilled': 1.0, 'formula': 1.0, 'after': 1.0, 'and': 1.0, 'apart': 1.0, 'in': 1.0, 'wash': 1.0, 'straps': 1.0, 'money': 1.0, 'don': 1.0, 'broke': 1.0, 'definitely': 1.0}
Word element => {'disappointed': 1.0, 'something': 1.0, 'or': 1.0, 'bag': 1.0, 'overnight': 1.0, 'use': 1.0, 'll': 1.0, 'myself': 1.0, 'for': 2.0, 'if': 1.0, 'money': 1.0, 'on': 1.0, 'waste': 1.0, 'to': 1.0, 'kept': 1.0, 'so': 1.0, 'a': 1.0, 'very': 1.0, 'as': 2.0, 'more': 1.0, 't': 3.0, 'even': 1.0, 'give': 1.0, 'didn': 2.0, 'couldn': 1.0, 'thing': 1.0, 'cheap': 1.0, 'i': 4.0, 'plastic': 1.0, 'looking': 1.0, 'want': 1.0, 'is': 1.0, 'bucks': 1.0, 'send': 1.0, 'gift': 1.0, 'worth': 1.0, 'just': 1.0, 'because': 1.0, '5': 1.0, 'this': 2.0, 'it': 3.0, 'work': 1.0, 'an': 1.0, 'back': 1.0}
Word element => {'today': 1.0, 'received': 1.0, 'have': 1.0, 'just': 1.0, 'still': 1.0, 'see': 1.0, 'will': 1.0, 'use': 1.0, 'of': 2.0, 'because': 1.0, 'than': 1.0, 'active': 1.0, 'size': 1.0, 'flimsy': 1.0, 'am': 1.0, 'but': 3.0, 'quality': 1.0, 'may': 1.0, 'different': 2.0, 'last': 1.0, 'chance': 1.0, 'be': 2.0, 'material': 1.0, 'i': 6.0, 'pockets': 1.0, 'like': 1.0, 'dissatisfied': 1.0, 'this': 1.0, 'with': 1.0, 'month': 1.0, 'it': 4.0, 'bag': 1.0, 'the': 5.0, 'is': 1.0, 'shouldn': 1.0, 'more': 1.0, 'design': 1.0, 'afraid': 1.0, 'for': 2.0, 'color': 1.0, 'chocolate': 1.0, 't': 2.0, 'a': 3.0, 's': 2.0, 'made': 1.0, 'way': 1.0, 'story': 1.0, 'won': 1.0, 'price': 1.0, 'm': 1.0, 'long': 1.0, 'very': 1.0, 'to': 1.0, 'give': 1.0, 'stay': 1.0, 'itself': 1.0, 'in': 1.0, 'overall': 1.0, 'shape': 1.0, 'couple': 1.0}
Word element => {'bargain': 1.0, 'good': 1.0, 'price': 1.0, 'lovely': 1.0, 'a': 2.0, 'just': 1.0, 'were': 1.0, 'hooks': 1.0, 'stroller': 1.0, 'fabric': 1.0, 'color': 1.0, 'beautiful': 1.0, 'like': 1.0, 'use': 1.0, 'has': 2.0, 'big': 1.0, 'smart': 1.0, 'optional': 1.0, 'holding': 1.0, 'navy': 1.0, 'and': 4.0, 'i': 1.0, 'pockets': 3.0, 'pretty': 1.0, 'also': 1.0, 'bag': 2.0, 'design': 1.0, 'along': 1.0, 'waterproof': 1.0, 'bottle': 1.0, 'is': 2.0, 'babywipes': 1.0, 'mid': 1.0, 'such': 1.0, 'these': 1.0, '2': 3.0, 'interior': 1.0, 'the': 3.0, 'diaper': 2.0, 'for': 1.0, 'this': 1.0, 'with': 2.0, 'it': 1.0, 'large': 1.0, '3': 1.0, 'size': 1.0}
Word element => {'helps': 1.0, 'few': 1.0, 'hope': 1.0, 'im': 1.0, 'next': 1.0, 'use': 1.0, 'longer': 1.0, 'will': 1.0, 'got': 1.0, 'guess': 1.0, 'no': 1.0, 'about': 1.0, 'itself': 1.0, 'purchasing': 1.0, 'made': 1.0, 'theyre': 1.0, 'material': 1.0, 'bought': 1.0, 'quiality': 1.0, 'low': 1.0, 'fray': 1.0, 'straps': 1.0, 'week': 1.0, '17': 1.0, 'using': 1.0, 'things': 1.0, 'bucks': 1.0, 'space': 1.0, 'lot': 1.0, 'read': 1.0, 'more': 1.0, 'is': 2.0, 'diaper': 2.0, 'the': 7.0, 'and': 4.0, 'was': 2.0, 'its': 1.0, 'matches': 1.0, 'someone': 1.0, 'times': 1.0, 'when': 2.0, 'i': 10.0, 'this': 4.0, 'perfect': 1.0, 'reason': 1.0, 'what': 1.0, 'thought': 1.0, 'reviews': 1.0, 'basic': 1.0, 'bag': 6.0, 'looks': 1.0, 'it': 6.0, 'month': 1.0, 'be': 1.0, 'payed': 1.0, 'dlls': 1.0, 'of': 4.0, 'has': 1.0, '2': 2.0, 'can': 1.0, 'as': 1.0, 'to': 2.0, 'all': 1.0, 'save': 1.0, 'my': 1.0, 'started': 1.0, 'baby': 1.0, 'a': 6.0, 'going': 1.0, 'go': 1.0, 'outfits': 1.0, 'pretty': 1.0, 'casual': 1.0, '3': 1.0, 'on': 2.0, 'put': 1.0, 'expensive': 1.0, 'for': 1.0, 'cheap': 1.0, 'fit': 1.0, 'stars': 1.0, 'because': 2.0, 'after': 1.0, 'time': 1.0, 'needs': 1.0, 'so': 2.0, 'or': 1.0}
Word element => {'bonus': 1.0, 'a': 1.0, 'inside': 1.0, 'all': 1.0, 'bags': 1.0, 'two': 1.0, 'of': 1.0, 'added': 1.0, 'instead': 1.0, 'hold': 1.0, 'would': 1.0, 'enough': 2.0, 'fashionable': 1.0, 'big': 1.0, 'baby': 2.0, 'perfect': 1.0, 'than': 1.0, 'its': 2.0, 'to': 1.0, 'bag': 1.0, 'this': 1.0, 'other': 1.0, 'bringing': 1.0, 'is': 2.0, 'room': 1.0, 'for': 2.0, 'items': 1.0, 'everything': 1.0, 'pockets': 1.0, 'i': 1.0, 'need': 1.0, 'and': 2.0, 'my': 2.0, 'the': 1.0, 'diaper': 1.0, 'more': 1.0, 'child': 1.0}
Word element => {'recommend': 1.0, 'so': 1.0, 'edges': 1.0, 'straps': 1.0, 'leather': 1.0, 'faux': 1.0, 'apart': 1.0, 'sort': 1.0, 'stitching': 1.0, 'old': 1.0, 'weeks': 1.0, 'six': 1.0, 'only': 1.0, 'however': 1.0, 'easily': 1.0, 'nice': 1.0, 'medicine': 1.0, 'things': 1.0, 'all': 1.0, 'to': 1.0, 'pouches': 1.0, 'coming': 1.0, 'small': 1.0, 'various': 1.0, 'waterproof': 1.0, 'close': 1.0, 'holds': 1.0, 'is': 3.0, 'regular': 1.0, 'obviously': 1.0, 'up': 1.0, 'peeling': 1.0, 'of': 2.0, 'this': 1.0, 'looks': 2.0, 'it': 6.0, 'toys': 1.0, 'simple': 1.0, 'other': 1.0, 'the': 4.0, 'my': 2.0, 'burp': 1.0, 'baby': 3.0, 'can': 1.0, 'but': 1.0, 'diapers': 1.0, 'received': 1.0, 'how': 1.0, 'plastic': 1.0, 'really': 1.0, 'material': 1.0, 'registry': 1.0, 'love': 1.0, 'because': 1.0, 'than': 1.0, 'pacifiers': 1.0, 'outfits': 1.0, 'that': 1.0, 'hold': 1.0, 'like': 2.0, 'are': 1.0, 'blanket': 1.0, 't': 1.0, 's': 2.0, 'a': 4.0, 'at': 1.0, 'keep': 1.0, 'several': 1.0, 'just': 1.0, 'large': 2.0, 'container': 1.0, 'wipes': 1.0, 'i': 3.0, 'two': 2.0, 'already': 1.0, 'some': 1.0, 'cloths': 1.0, 'tote': 1.0, 'nursing': 1.0, 'off': 1.0, 'cover': 1.0, 'and': 7.0}
Word element => {'me': 1.0, 'value': 1.0, 'greater': 1.0, 'gives': 1.0, 'of': 2.0, 'resembles': 1.0, 'imo': 1.0, 'amount': 1.0, 'sturdy': 1.0, 'quite': 1.0, 'is': 1.0, 'perfectly': 1.0, 'needs': 1.0, 'they': 1.0, 'good': 1.0, 'wipes': 1.0, 'baby': 1.0, 'them': 1.0, 'filling': 1.0, 'was': 1.0, 'my': 4.0, 'binders': 1.0, 'etc': 1.0, 'i': 5.0, 'fraction': 1.0, 'diapers': 1.0, 'pockets': 2.0, 'with': 2.0, 'it': 3.0, 'this': 3.0, 'room': 1.0, 'streamlined': 1.0, 'individual': 1.0, 'much': 1.0, 'price': 1.0, '34': 1.0, 'there': 2.0, 'longchamp': 1.0, 'too': 1.0, 'and': 5.0, 'filled': 1.0, 'really': 1.0, 'if': 1.0, 'want': 1.0, 'notebook': 1.0, 'great': 1.0, 'the': 5.0, 'laptop': 1.0, 'to': 1.0, 'look': 1.0, 'wallet': 1.0, 'product': 1.0, 'fit': 1.0, 'for': 4.0, 'notes': 1.0, 'bag': 2.0, 'teach': 1.0, 'utility': 1.0, 'huge': 1.0, 'hold': 1.0, 'which': 1.0, 'else': 1.0, 'small': 2.0, 'items': 1.0, 'are': 2.0, 'but': 2.0, 'work': 1.0, 'can': 2.0, 's': 2.0, 'a': 3.0, 'pens': 1.0, 'use': 2.0, 'phone': 1.0, 'at': 1.0, '13': 1.0, 'keep': 1.0, 'main': 1.0, 'anything': 1.0, 'other': 1.0, 'separate': 1.0, 'bags': 1.0, 'from': 1.0, 'compartment': 1.0}
Word element => {'falling': 1.0, 'very': 1.0, 'using': 2.0, 'for': 3.0, 'handles': 1.0, 'months': 1.0, 'waste': 1.0, '9': 1.0, 'this': 2.0, 'it': 1.0, 'bag': 4.0, 'really': 1.0, 'of': 2.0, 'good': 1.0, 'plan': 1.0, 'is': 2.0, 'holds': 1.0, 'diaper': 1.0, 'the': 5.0, 'a': 1.0, 't': 1.0, 'don': 1.0, 'money': 1.0, 'but': 1.0, 'cheaply': 1.0, 'are': 1.0, 'made': 1.0, 'stylish': 1.0, 'unthreaded': 1.0, 'after': 1.0, 'apart': 1.0, 'if': 1.0, 'everything': 1.0, 'and': 2.0, 'hate': 1.0, 'coming': 1.0, 'on': 1.0, 'your': 1.0, 'time': 1.0, 'as': 1.0, 'all': 1.0, 'having': 1.0, 'because': 1.0, 'price': 1.0, 'both': 1.0, 'my': 1.0, 'you': 1.0, 'boys': 1.0}
Word element => {'water': 1.0, 'ice': 1.0, 'so': 1.0, 'got': 1.0, 'size': 1.0, 'right': 1.0, 'has': 2.0, 'time': 1.0, 'on': 1.0, 'the': 1.0, 'my': 1.0, 'that': 2.0, 'is': 1.0, 'stuff': 1.0, 'you': 1.0, 'with': 1.0, 'it': 4.0, 'i': 1.0, 'need': 1.0, 'for': 2.0, 'carrying': 1.0, 'all': 1.0, 'plus': 1.0, 'compartments': 1.0, 'rocking': 1.0}
Word element => {'diaper': 1.0, 'designer': 1.0, 'on': 1.0, '200': 1.0, 'don': 1.0, 'option': 1.0, 'ask': 1.0, 'has': 1.0, 'baby': 2.0, 'tons': 1.0, 'waterproof': 1.0, 'keys': 1.0, 'want': 1.0, 'if': 1.0, 'everything': 1.0, 'small': 1.0, 'large': 1.0, 'purse': 1.0, 'it': 4.0, 'sanitzer': 1.0, 'enough': 2.0, 'need': 1.0, 'bag': 2.0, 'to': 4.0, 'this': 1.0, 'perfect': 1.0, 'size': 1.0, 'the': 2.0, 'is': 1.0, 'more': 1.0, 'fit': 1.0, 'scream': 1.0, 'for': 5.0, 'of': 1.0, 'inside': 1.0, 'pockets': 1.0, 'diapers': 1.0, 'fact': 1.0, 'was': 1.0, 'doesn': 1.0, 'you': 3.0, 'cell': 1.0, 'spend': 1.0, 'great': 1.0, 'pass': 1.0, 'mention': 1.0, 'phone': 1.0, 'etc': 1.0, 'what': 2.0, 'and': 1.0, 'sold': 1.0, 'that': 2.0, 'me': 1.0, 'not': 1.0, 's': 1.0, 'a': 2.0, 't': 2.0, 'could': 1.0}
Word element => {'others': 1.0, 'would': 1.0, 'a': 2.0, 'the': 4.0, '2': 1.0, 'has': 2.0, 'also': 2.0, 'nice': 1.0, 'which': 1.0, 'designer': 1.0, 'inside': 1.0, 'large': 1.0, 'just': 1.0, 'concerns': 1.0, 'several': 1.0, 'yesterday': 1.0, 'this': 2.0, 'bag': 5.0, 'zipper': 1.0, 'must': 1.0, 'very': 2.0, 'picture': 1.0, 'pockets': 1.0, 'i': 3.0, 'and': 3.0, 'say': 1.0, 'is': 2.0, 'it': 1.0, 'looks': 2.0, 'recommend': 1.0, 'was': 1.0, 'had': 1.0, 'buying': 1.0, 'all': 1.0, 'to': 2.0, 'look': 1.0, 'color': 1.0, 'one': 1.0, 'for': 1.0, 'of': 1.0, 'in': 1.0, 'beats': 1.0, 'you': 1.0, '300': 1.0, 'stylish': 1.0, 'bucks': 1.0, 'same': 1.0, 'want': 1.0, 'if': 1.0, 'person': 1.0, 'definitely': 2.0, 'waterproof': 1.0, 'exactly': 1.0, 'received': 1.0, 'how': 1.0}
Word element => {'buy': 1.0, 'pk': 1.0, 'confidence': 1.0, '3': 1.0, 'out': 1.0, 'great': 1.0, 'it': 2.0, 'works': 1.0, 'as': 1.0, 'value': 1.0, 'advertised': 1.0, 'yet': 1.0, 'my': 1.0, 'with': 2.0, '2': 1.0, 'old': 1.0, 'too': 1.0, 'yr': 1.0, 'girl': 1.0, 'hasn': 1.0, 't': 1.0, 'figured': 1.0}
Word element => {'buy': 1.0, 'promises': 1.0, 'what': 1.0, 'for': 3.0, 'us': 1.0, 'great': 2.0, 'big': 1.0, 'son': 1.0, 'this': 3.0, 'does': 1.0, 'because': 1.0, 'at': 1.0, 'try': 1.0, 'should': 1.0, 'functionally': 1.0, 'or': 1.0, 'trying': 1.0, 'him': 1.0, 'bought': 2.0, 'i': 4.0, 'old': 2.0, 'my': 1.0, 'late': 1.0, 'if': 2.0, 'to': 5.0, 'normal': 1.0, 'too': 1.0, 'and': 1.0, 'is': 1.0, 'it': 6.0, 'train': 3.0, 'looks': 1.0, 'work': 2.0, 'but': 3.0, '2': 1.0, 'you': 1.0, 'years': 2.0, 'like': 1.0, '5': 1.0, 'he': 2.0, '6': 1.0, 'potty': 3.0, 'so': 2.0, 'think': 1.0, '3': 1.0, 'your': 2.0, 'kid': 1.0, 'size': 1.0, 't': 1.0, 's': 3.0, 'a': 3.0, 'might': 1.0, 'didn': 1.0}
Word element => {'me': 1.0, 'sanitary': 1.0, 'much': 1.0, 'seems': 1.0, 'one': 1.0, 'and': 3.0, 'get': 1.0, 'plastic': 1.0, 'had': 1.0, 'i': 5.0, 'it': 5.0, 'slide': 1.0, 'stick': 1.0, 'looked': 1.0, 'hard': 1.0, 'where': 1.0, 'love': 4.0, 'comfortable': 1.0, 'crannies': 1.0, 'has': 1.0, 'isn': 1.0, 'underneath': 1.0, 'lip': 1.0, 'this': 2.0, 'soft': 2.0, 'so': 3.0, 'suction': 1.0, 'that': 4.0, 'the': 2.0, 'around': 1.0, 'is': 2.0, 'more': 2.0, 'ones': 1.0, 'there': 1.0, 'bottom': 1.0, 'extra': 1.0, 'other': 1.0, 'toilet': 1.0, 'creating': 1.0, 'nooks': 1.0, 'germs': 2.0, 'to': 3.0, 'cups': 1.0, 'seat': 2.0, 'all': 1.0, 'sit': 1.0, 'at': 1.0, 'wont': 1.0, 't': 1.0, 'a': 3.0, 'hide': 1.0, 'can': 2.0, 'but': 1.0}
Word element => {'plus': 1.0, 'a': 1.0, 'keep': 1.0, 'which': 1.0, 'suction': 1.0, 'sit': 1.0, 'her': 1.0, 'still': 1.0, 'on': 1.0, 'lbs': 1.0, 'also': 1.0, 'clean': 1.0, 'to': 2.0, 's': 1.0, 'tiny': 1.0, 'easy': 1.0, 'is': 4.0, 'so': 1.0, 'cushy': 1.0, 'toilet': 1.0, 'huge': 1.0, 'seat': 3.0, 'making': 1.0, '20': 1.0, 'moving': 1.0, 'it': 1.0, 'this': 2.0, 'soft': 1.0, 'and': 2.0, 'from': 1.0, 'very': 1.0, 'the': 3.0, 'my': 1.0, 'potty': 1.0, 'for': 1.0, 'comfortable': 2.0, 'cups': 1.0, 'daughter': 1.0}
Word element => {'gotten': 1.0, 'should': 1.0, 'was': 1.0, 'as': 1.0, 'not': 1.0, 'almost': 2.0, 'very': 2.0, 'attractive': 1.0, 'came': 1.0, 'color': 3.0, 'actually': 1.0, 'picture': 1.0, 'red': 2.0, 'looked': 1.0, '5': 1.0, 'thing': 1.0, 'only': 1.0, 'con': 1.0, 'plastic': 1.0, 'hard': 1.0, 'cushy': 1.0, 'firm': 1.0, 'easy': 1.0, 'super': 1.0, 'wall': 1.0, 'inner': 1.0, 'continuous': 1.0, 'oval': 1.0, 'just': 1.0, 'seats': 2.0, 'our': 3.0, 'seat': 9.0, 'pretty': 1.0, 'to': 7.0, 'pink': 1.0, 'comfort': 1.0, 'has': 2.0, 'easier': 1.0, 'like': 2.0, 'dark': 1.0, 'comfortable': 1.0, 'say': 1.0, 'is': 8.0, 'more': 2.0, 'have': 3.0, 'really': 1.0, 'got': 1.0, 'prevented': 1.0, 'crevices': 1.0, 'daughter': 1.0, 'once': 1.0, 'another': 1.0, 'pro': 1.0, 'of': 5.0, 'the': 22.0, 'pee': 1.0, 'design': 1.0, 'arm': 4.0, 'started': 1.0, 'wipe': 2.0, 'me': 1.0, 'my': 1.0, 'fits': 1.0, 'splash': 2.0, 'use': 1.0, 'though': 1.0, 'potty': 2.0, 'so': 5.0, 'i': 5.0, 'two': 1.0, 'bucks': 1.0, 'cheaper': 1.0, 'bought': 2.0, 'had': 2.0, 'hammer': 4.0, 'for': 2.0, 'also': 2.0, 'seems': 1.0, 'great': 3.0, 'stays': 1.0, 'then': 1.0, 'reviews': 1.0, 'a': 5.0, 'giving': 1.0, 's': 3.0, 'shape': 1.0, 'and': 10.0, 'lot': 1.0, 'one': 6.0, 'too': 2.0, 'purplish': 1.0, 'couple': 1.0, 'it': 5.0, 'first': 1.0, 'this': 6.0, 'most': 1.0, 'but': 3.0, 'rim': 2.0, 'new': 1.0, 'toilet': 5.0, 'guard': 2.0, 'stars': 1.0, 'bathroom': 1.0, 'shaper': 1.0, 'space': 1.0, 'suction': 1.0, 'plunger': 1.0, 'long': 2.0, 'on': 2.0, 'better': 1.0, 'works': 2.0, 'put': 1.0, 'prob': 1.0, 'much': 3.0, 'smooth': 1.0, 'downstairs': 1.0, 'with': 1.0, 'poppy': 1.0, 'splattered': 1.0, 'rounder': 1.0, 'edges': 1.0, 'there': 2.0, 'which': 3.0, 'good': 1.0, 'clean': 3.0, 'or': 1.0, 'inches': 1.0, 'from': 3.0, 'edge': 2.0, 'inside': 2.0, 'houses': 1.0, 'designed': 1.0, 'even': 1.0, 'both': 1.0, 'many': 2.0, 'indents': 1.0, 'that': 3.0, 'were': 1.0, 'sit': 1.0, 'when': 1.0}
Word element => {'anything': 1.0, 'or': 1.0, 'them': 1.0, 'like': 1.0, 'not': 1.0, 'toilet': 1.0, 'own': 1.0, 'son': 1.0, 'bathroom': 1.0, 'my': 1.0, 'clean': 1.0, 'different': 1.0, 'so': 2.0, 'with': 1.0, 'll': 1.0, 'except': 1.0, 'on': 2.0, 'think': 1.0, 'second': 1.0, 'replaced': 1.0, 'they': 1.0, 'tear': 1.0, 'was': 1.0, 'when': 1.0, 'tearing': 2.0, 'every': 1.0, 'really': 2.0, 'flaw': 1.0, 're': 1.0, 'limited': 1.0, 'warranty': 1.0, 'where': 1.0, 'rough': 1.0, 'ring': 1.0, 'his': 1.0, 'year': 1.0, 'm': 1.0, 'interior': 1.0, 'the': 8.0, 'after': 1.0, 'two': 1.0, 'i': 5.0, 'liked': 1.0, 'one': 4.0, 'month': 1.0, 'it': 7.0, 'this': 3.0, 'now': 1.0, 'major': 1.0, 'first': 2.0, 'we': 1.0, 's': 1.0, 'hole': 1.0, 'a': 6.0, 'keeps': 1.0, 'to': 2.0, 'seat': 5.0, 'just': 2.0, 'has': 3.0, 'but': 3.0, 'at': 1.0, 'sits': 1.0, 'got': 1.0, 'point': 1.0, 'that': 1.0, 'have': 1.0, 'small': 1.0, 'completing': 1.0, 'their': 1.0, 'also': 1.0, 'tore': 3.0, 'up': 2.0, 'and': 6.0, 'would': 1.0, 'fortunately': 1.0, 'is': 2.0, 'prince': 1.0, 'lionheart': 1.0, 'giving': 1.0, 'within': 2.0, 'form': 1.0, 'getting': 1.0, 'pinch': 1.0, 'sending': 1.0, 'receipt': 1.0}
Word element => {'house': 1.0, 'one': 1.0, 'takes': 1.0, 'sometimes': 1.0, 'sore': 1.0, 'getting': 2.0, 'poor': 1.0, 'sit': 1.0, 'way': 1.0, 'really': 1.0, 'it': 2.0, 'floor': 1.0, 'guard': 1.0, 'in': 1.0, 'built': 1.0, 'times': 1.0, 'you': 1.0, 'tell': 1.0, 'also': 2.0, 'of': 1.0, 'mom': 1.0, 'slidding': 1.0, 'while': 2.0, 'from': 1.0, 'prevent': 1.0, 'bottom': 2.0, 's': 1.0, 'a': 5.0, 'he': 4.0, 'red': 1.0, 'with': 1.0, 'plan': 1.0, 'around': 1.0, 'is': 4.0, 'old': 1.0, 'saved': 1.0, 'i': 5.0, 'no': 1.0, 'up': 1.0, 'training': 1.0, 'got': 1.0, 'another': 1.0, 'fact': 1.0, 'splash': 1.0, 'my': 2.0, 'at': 1.0, 'who': 1.0, 'there': 1.0, 'chair': 1.0, 'just': 2.0, 'can': 2.0, '2': 1.0, 'without': 1.0, 'the': 6.0, 'son': 1.0, 'big': 1.0, '34': 4.0, 'years': 1.0, 'grandparents': 1.0, 'for': 4.0, 'love': 1.0, 'and': 2.0, 'starting': 2.0, 'determind': 1.0, 'on': 3.0, 'so': 1.0, 'potty': 2.0, 'boy': 2.0, 'well': 1.0, 'has': 2.0, 'better': 1.0, 'than': 1.0, 'soft': 1.0, 'this': 2.0, 'doing': 1.0, 'kids': 1.0, 'as': 3.0, 'to': 2.0, 'seat': 2.0, 'cups': 1.0, 'like': 1.0, 'which': 1.0, 'multiple': 1.0, 'him': 2.0, 'be': 1.0, 'suction': 1.0, 'much': 1.0, 'works': 1.0, 'his': 1.0, 'awesome': 1.0, 'that': 3.0, 'me': 2.0, 'clean': 1.0}
Word element => {'disappointing': 1.0, 'very': 1.0, 'have': 1.0, 'substantial': 1.0, 'seems': 1.0, 'until': 1.0, 'was': 1.0, 'after': 1.0, 'material': 1.0, 'cracking': 1.0, 'great': 1.0, 'the': 1.0, 'of': 1.0, 'sides': 1.0, 'light': 1.0, 'both': 1.0, 'few': 1.0, 'cracked': 1.0, 'it': 2.0, 'this': 1.0, 'not': 1.0, 'started': 1.0, 'seat': 1.0, 'just': 1.0, 'use': 1.0, 'a': 1.0, 'on': 1.0, 'months': 1.0, 'should': 1.0, 'construction': 1.0, 'and': 1.0}
Word element => {'replace': 1.0, 'dollars': 1.0, 'hammer': 1.0, 'plastic': 1.0, 'through': 1.0, 'not': 1.0, 'did': 1.0, 'up': 1.0, 'child': 1.0, 'which': 1.0, 'like': 1.0, 'items': 1.0, 'have': 1.0, 'unusable': 1.0, 'is': 2.0, 'point': 1.0, 'cracked': 1.0, 'support': 1.0, 'under': 1.0, 'nothing': 1.0, 'down': 1.0, 'pushed': 1.0, '2': 1.0, 'most': 1.0, 'has': 1.0, 'that': 2.0, 'hard': 1.0, 'part': 1.0, 'guess': 1.0, 'in': 1.0, 'arm': 1.0, 'side': 1.0, 'each': 1.0, 'edge': 1.0, 'however': 1.0, 'ended': 1.0, 'after': 1.0, 'buying': 1.0, 'with': 1.0, 'piece': 1.0, 'best': 1.0, 'first': 2.0, 'it': 11.0, 'inner': 1.0, 'fit': 1.0, 'for': 4.0, 'tried': 1.0, 'easy': 1.0, 'was': 4.0, 'pressure': 1.0, 'home': 1.0, 'made': 1.0, 'last': 1.0, 'clean': 1.0, 'the': 9.0, 'of': 2.0, 'center': 1.0, 'all': 1.0, 'our': 1.0, 'to': 5.0, 'seat': 3.0, 'started': 1.0, 'kids': 1.0, 'this': 3.0, 'soft': 1.0, 'make': 1.0, 'on': 3.0, '3': 1.0, 'i': 5.0, 'two': 2.0, 'etc': 1.0, 'even': 2.0, 'thought': 1.0, 'grandma': 1.0, 'eventually': 1.0, 'my': 1.0, 'so': 1.0, 'friends': 1.0, 'ten': 1.0, 'toilets': 1.0, 'one': 3.0, 'bought': 1.0, 'told': 1.0, 'about': 2.0, 'and': 4.0, 'we': 1.0, 's': 1.0, 'expect': 1.0, 'frequent': 1.0, 'use': 2.0, 'began': 1.0, 'at': 1.0, 'crack': 1.0}
Word element => {'replace': 1.0, 'buying': 1.0, 'are': 1.0, 'pretty': 1.0, 'last': 1.0, 'them': 1.0, 'expect': 1.0, 'seats': 1.0, 'have': 2.0, 'sometimes': 1.0, 'a': 1.0, 'we': 3.0, 'other': 1.0, 'get': 1.0, 'and': 1.0, 'away': 1.0, 'forever': 1.0, 'off': 1.0, 'loves': 1.0, 'hard': 2.0, 'it': 5.0, 'full': 1.0, 'soft': 1.0, 'this': 2.0, 'cracked': 1.0, 'the': 1.0, 'was': 1.0, 'do': 1.0, 'much': 1.0, 'another': 1.0, 'my': 1.0, 'underneath': 1.0, 'him': 1.0, 'of': 1.0, 'life': 1.0, 'just': 1.0, 'not': 1.0, 'son': 1.0, 'on': 1.0, 'completely': 1.0, 'is': 2.0, 'so': 2.0, 'had': 3.0, 'contained': 1.0, '6': 1.0, 'plastic': 1.0, 'consider': 1.0, 'toilet': 1.0, 'chipping': 1.0, 'at': 1.0, 'all': 1.0, 'to': 4.0, 'seat': 2.0, 'our': 2.0, 'months': 1.0, 'one': 2.0, 'for': 1.0, 'sitting': 1.0, 'but': 1.0, 'i': 2.0}
Word element => {'each': 1.0, 'yes': 1.0, 'off': 1.0, 'areas': 1.0, 'next': 1.0, 'money': 1.0, 'toddler': 1.0, 'training': 1.0, 'quite': 1.0, 'elated': 2.0, 'every': 1.0, 'winner': 2.0, 'might': 1.0, 'me': 1.0, 'review': 3.0, 'shelf': 1.0, 'bought': 1.0, 'retailer': 1.0, 'if': 2.0, 'great': 2.0, 'without': 1.0, 'soft': 1.0, 'at': 2.0, 'iphone': 1.0, 'on': 6.0, 'comparison': 1.0, 'so': 1.0, 'brick': 1.0, 'parent': 1.0, 'was': 3.0, 'amazon': 3.0, 'blue': 2.0, 'you': 4.0, 'when': 3.0, 'reasons': 1.0, 'had': 1.0, 'beside': 1.0, 'what': 1.0, 'cell': 1.0, 'or': 2.0, 'in': 7.0, 'flushed': 1.0, 'seat': 4.0, 'know': 1.0, 'this': 7.0, 'doing': 1.0, 'the': 14.0, 'celebration': 1.0, 'about': 3.0, 'don': 1.0, 'worry': 1.0, 'works': 2.0, 'underpants': 1.0, 'seriously': 1.0, 'major': 1.0, 'now': 1.0, 'found': 1.0, 'have': 2.0, 'these': 1.0, 'but': 2.0, 'puppies': 1.0, 'recommended': 1.0, 'our': 6.0, 'butt': 2.0, 'fear': 1.0, 'put': 1.0, 'particular': 1.0, 'getting': 1.0, 'kids': 2.0, 'digress': 2.0, 'product': 1.0, 'worst': 1.0, 'mortar': 1.0, 'first': 1.0, 'while': 1.0, 'wife': 1.0, 'a': 6.0, 'small': 2.0, 'stumbled': 1.0, 'we': 1.0, 't': 2.0, 'easy': 1.0, 'fit': 1.0, 's': 3.0, 'proud': 1.0, 'owners': 1.0, 'told': 1.0, 'out': 1.0, 'end': 1.0, 'helmets': 1.0, 'broke': 1.0, 'well': 1.0, '4': 2.0, 'sit': 1.0, 'as': 3.0, 'comfortable': 1.0, 'universal': 1.0, 'to': 4.0, 'toilet': 11.0, 'guard': 1.0, 'be': 1.0, 'it': 4.0, 'down': 1.0, 'overprotective': 1.0, 'retailers': 1.0, 'that': 2.0, 'concerned': 1.0, 'mean': 1.0, 'being': 1.0, 'cannot': 1.0, 'wipe': 1.0, 'usual': 1.0, 'new': 1.0, 'oval': 2.0, 'elongated': 3.0, 'is': 5.0, 'can': 2.0, 'downstairs': 1.0, 'bathroom': 1.0, 'of': 5.0, 'old': 1.0, 'round': 2.0, 'plumber': 1.0, 'an': 3.0, 'all': 1.0, 'other': 1.0, 'fits': 1.0, 'repeat': 1.0, 'again': 1.0, 'phone': 1.0, 'clean': 2.0, 'house': 1.0, 'cool': 1.0, 'anyway': 1.0, 'unreachable': 1.0, 'use': 1.0, 'sure': 1.0, 'would': 1.0, 'work': 1.0, 'efficient': 1.0, 'toilets': 2.0, 'for': 7.0, 'guess': 1.0, 'from': 1.0, 'one': 1.0, 'upon': 1.0, '5': 1.0, 'them': 1.0, 'bikes': 1.0, 'star': 1.0, 'perfectly': 1.0, 'wasn': 1.0, 'like': 1.0, 'poopy': 1.0, 'not': 2.0, 'by': 1.0, 'though': 1.0, 'fashionable': 1.0, 'real': 2.0, 'multiple': 1.0, 'shopping': 2.0, 'integrated': 1.0, 'my': 5.0, 'are': 1.0, 'fronts': 1.0, 'i': 12.0, 'cause': 1.0, 'simple': 1.0, 'splash': 1.0, 'dummy': 1.0, 'and': 6.0, 'just': 2.0, 'seats': 1.0, 'stuff': 1.0, 'find': 1.0, 'very': 2.0, 'why': 1.0, 'proof': 1.0, 'they': 1.0, 'should': 1.0, 'make': 1.0, 'nice': 1.0, 'white': 1.0, 'little': 2.0, 'only': 1.0, 'were': 1.0, 'enough': 1.0, 'crevices': 1.0, 'away': 1.0, 'no': 1.0, 'falling': 2.0, 'tough': 1.0, 'most': 1.0, 'space': 1.0, 'stands': 1.0, 'guy': 2.0, 'excellent': 2.0, 'value': 2.0, 'feel': 1.0, 'berry': 2.0, 'statement': 1.0}
Word element => {'slide': 1.0, 't': 1.0, 'bottom': 1.0, 'on': 1.0, 'cups': 1.0, 'suction': 1.0, 'it': 1.0, 'great': 1.0, 'love': 1.0, 'squishy': 1.0, 'the': 1.0, 'pee': 1.0, 'i': 1.0, 'guard': 1.0, 'has': 1.0, 'seat': 2.0, 'no': 1.0, 'so': 2.0, 'doesn': 1.0, 'leaks': 1.0}
Word element => {'daughter': 1.0, 'for': 1.0, 'bought': 1.0, 'too': 1.0, 'color': 1.0, 'seat': 1.0, 'home': 1.0, 'soft': 1.0, 'another': 1.0, 'padding': 1.0, 'suction': 1.0, 'to': 2.0, 'clean': 1.0, 's': 1.0, 'securely': 1.0, 'cups': 1.0, 'great': 1.0, 'it': 1.0, 'easy': 1.0, 'holds': 1.0, 'my': 1.0, 'the': 1.0, 'toilet': 1.0}
Word element => {'time': 1.0, 'long': 1.0, 'last': 1.0, 'mind': 1.0, 'in': 1.0, 'you': 1.0, 'weepod': 1.0, 'cushiony': 1.0, 'lionheart': 1.0, 'buy': 2.0, 'same': 2.0, 'other': 2.0, 'by': 1.0, 'picture': 1.0, 'keep': 1.0, 'at': 1.0, 'look': 1.0, 'from': 2.0, 'that': 2.0, 'have': 1.0, '4': 1.0, 'i': 2.0, 'very': 1.0, 'months': 1.0, 'one': 4.0, 'hammer': 1.0, 'only': 2.0, 'end': 1.0, 'had': 2.0, 'was': 1.0, 'lasts': 1.0, 'side': 2.0, 'arm': 1.0, 'did': 1.0, 'soon': 1.0, 'tall': 1.0, 'and': 6.0, 'to': 2.0, 'as': 2.0, 'concept': 1.0, 'then': 1.0, 'loved': 1.0, 'every': 1.0, 'it': 10.0, 'buyer': 1.0, 'this': 2.0, 'prince': 1.0, 'is': 4.0, 'changed': 1.0, 'go': 2.0, 'we': 4.0, 'a': 2.0, 'lasted': 1.0, 'well': 1.0, 'not': 4.0, 'because': 1.0, 'ahead': 2.0, 'started': 2.0, 'baby': 1.0, 'can': 1.0, 'but': 4.0, 'longer': 1.0, 'complaint': 1.0, 'inside': 1.0, 'made': 1.0, 'using': 1.0, 'like': 1.0, 'place': 1.0, 'the': 6.0, 'pee': 1.0, 'cracked': 1.0, 'comfortable': 1.0, 'nice': 1.0, 'great': 1.0, 'may': 1.0, 'hopefully': 1.0, 'another': 1.0, 'my': 1.0, 'splash': 2.0, 'enough': 1.0, 'his': 1.0, 'guard': 2.0, 'would': 1.0, 'up': 1.0, 'for': 1.0, 'product': 1.0, 'where': 1.0, 'bu': 1.0, 'toilet': 1.0, 'reason': 1.0}
Word element => {'whenever': 1.0, 'year': 1.0, 'through': 1.0, 'two': 1.0, 'i': 3.0, 'tiny': 1.0, 'waiting': 1.0, 'will': 1.0, 'seems': 1.0, 'go': 1.0, 'hole': 1.0, 't': 1.0, 'the': 6.0, 'pee': 1.0, 'difficult': 1.0, 'my': 1.0, 'fits': 1.0, 'fall': 1.0, 'has': 1.0, 'well': 1.0, 'worry': 1.0, 'easily': 1.0, 'however': 1.0, 'that': 1.0, 'comfortable': 1.0, 'for': 1.0, 'and': 1.0, 'get': 1.0, 'don': 1.0, 'as': 1.0, 'seat': 3.0, 'to': 5.0, 'front': 1.0, 'use': 1.0, 'this': 1.0, 'she': 1.0, 'it': 1.0, 'm': 1.0, '34': 2.0, 'blocker': 1.0, 'on': 3.0, 'old': 1.0, 'makes': 1.0, 'bump': 1.0, 'her': 2.0, 'climb': 1.0, 'herself': 1.0, 'want': 1.0, 'be': 1.0, 'able': 1.0, 'toilet': 1.0}
Word element => {'clean': 1.0, 'soft': 1.0, 's': 1.0, 'himself': 1.0, 'by': 1.0, 'training': 1.0, 'seat': 1.0, 'a': 1.0, 'easily': 1.0, 'elongated': 1.0, 'is': 1.0, '2': 1.0, 'year': 1.0, 'our': 2.0, 'that': 2.0, 'were': 1.0, 'fit': 1.0, 'it': 2.0, 'this': 1.0, 'we': 2.0, 'looking': 1.0, 'can': 1.0, 'toilet': 1.0, 'comfortable': 1.0, 'love': 1.0, 'for': 1.0, 'one': 1.0, 'easy': 2.0, 'use': 2.0, 'to': 2.0, 'old': 1.0, 'and': 2.0}
Word element => {'in': 1.0, 'and': 2.0, 'unusable': 1.0, 'side': 1.0, 'it': 2.0, 'this': 2.0, 'with': 1.0, 'crack': 2.0, 'will': 1.0, '6': 1.0, 'few': 1.0, 'large': 1.0, 'months': 2.0, 'mark': 1.0, 'about': 1.0, 'baby': 2.0, 'after': 1.0, 'small': 1.0, 'check': 1.0, 'using': 1.0, 'for': 1.0, 'potty': 1.0, 'has': 1.0, 'on': 3.0, 'your': 1.0, 'because': 1.0, 'money': 1.0, '18lb': 1.0, 'inward': 1.0, 'the': 2.0, 'my': 2.0, 'a': 3.0, 'causes': 1.0, 'seat': 2.0, 'to': 1.0, 'is': 1.0, 'fall': 1.0, 'other': 1.0, 'leaves': 1.0, 'be': 1.0, 'her': 1.0, 'before': 1.0, 'thigh': 1.0, 'please': 1.0, 'wasting': 1.0, 'out': 1.0, 'options': 1.0, 'you': 1.0, 'replacing': 1.0}
Word element => {'lionheart': 1.0, 'prince': 1.0, 'of': 1.0, 'double': 1.0, 'price': 1.0, 'bjorn': 1.0, 'baby': 1.0, 'favorite': 1.0, 'this': 2.0, 'have': 2.0, 'seats': 1.0, 'potty': 1.0, 'is': 3.0, 'easily': 1.0, 'elongated': 1.0, 'oval': 1.0, 'next': 1.0, 'slipping': 1.0, 'different': 1.0, 'we': 1.0, 'i': 1.0, 'tried': 1.0, 'the': 4.0, 'best': 1.0, 'but': 1.0, 'an': 1.0, 'seat': 2.0, 'fits': 1.0, 'and': 2.0, 'five': 1.0, 'perfectly': 1.0, 'toilet': 1.0, 'without': 1.0}
Word element => {'all': 1.0, 'at': 1.0, 'slip': 1.0, 'not': 1.0, 'seat': 2.0, 's': 1.0, 'the': 1.0, 'for': 1.0, 'fit': 1.0, 'my': 1.0, 'grandchild': 1.0, 'got': 1.0, 'this': 1.0, 'it': 3.0, 'visit': 1.0, 'i': 1.0, 'and': 1.0, 'expected': 1.0, 'part': 1.0, 'was': 1.0, 'a': 1.0, 'regular': 1.0, 'toilet': 1.0, 'worked': 1.0, 'as': 1.0, 'best': 1.0, 'did': 1.0}
Word element => {'product': 1.0, 'wonderful': 1.0, 'no': 1.0, 'soft': 1.0, 'oval': 1.0, 'and': 1.0, 'comfy': 1.0, 'good': 1.0, 'loves': 1.0, 's': 1.0, 'on': 2.0, 'piece': 1.0, 'with': 1.0, 'this': 1.0, 'it': 2.0, 'the': 1.0, 'red': 1.0, 'pee': 1.0, 'great': 2.0, 'functional': 1.0, 'a': 1.0, 'is': 1.0, 'very': 2.0, 'son': 1.0, 'seat': 2.0, 'potty': 1.0, 'one': 1.0, 'for': 1.0, 'boy': 1.0, 'plus': 1.0, 'marks': 1.0, 'fits': 1.0, 'guard': 1.0, 'clean': 1.0, 'my': 2.0, 'bummy': 1.0, 'easy': 1.0, 'to': 1.0}
Word element => {'decent': 1.0, 'for': 1.0, 'potty': 1.0, 'over': 1.0, 'spending': 1.0, 'originally': 1.0, 'we': 1.0, 'both': 1.0, 'within': 1.0, 'had': 3.0, 'that': 3.0, 'useless': 1.0, 'to': 1.0, 'target': 1.0, 'receipts': 1.0, 'second': 1.0, 'amazon': 2.0, 'use': 3.0, 'side': 1.0, 'did': 1.0, 'continuing': 1.0, 'with': 4.0, 'cracked': 2.0, 'until': 1.0, 'great': 1.0, 'nice': 1.0, 'another': 1.0, 'my': 1.0, 'about': 1.0, 'maybe': 1.0, 'along': 1.0, 't': 1.0, 'defective': 1.0, 'search': 1.0, 'place': 1.0, '2': 3.0, 'but': 1.0, 'thought': 1.0, 'it': 1.0, 'already': 1.0, 'crack': 1.0, 'who': 1.0, 'since': 1.0, 'seats': 4.0, 'couple': 1.0, '50': 1.0, 'and': 6.0, 'so': 2.0, 'after': 3.0, 'on': 3.0, 'months': 2.0, 'too': 1.0, 'one': 10.0, 'bought': 4.0, 'pink': 5.0, 'they': 5.0, 'these': 3.0, 'gray': 2.0, 'i': 9.0, 'replaced': 1.0, 'the': 14.0, 'of': 1.0, 'from': 2.0, 'slide': 1.0, 'month': 1.0, 'same': 1.0, 'if': 1.0, 'this': 1.0, 'pictures': 1.0, 'minimal': 1.0, 'mouse': 1.0, '5': 1.0, 'toilet': 2.0, '28': 1.0, 'before': 1.0, 'year': 1.0, 'old': 1.0, 'company': 1.0, 'only': 1.0, 'weighs': 1.0, 'was': 1.0, 'lbs': 1.0, 'a': 7.0, 'emailed': 1.0, 'issue': 1.0, 'said': 1.0, 'seat': 1.0, 'in': 1.0, 'send': 1.0, 'making': 1.0, 'back': 1.0, 'original': 1.0, 'would': 1.0, 'replace': 1.0, 'am': 1.0, 'threw': 1.0, 'don': 1.0, 'trash': 1.0, 'around': 1.0, 'are': 3.0, 'first': 1.0, 'bad': 1.0, 'really': 1.0, 'break': 1.0, 'easy': 1.0, 'mini': 1.0, 'form': 1.0, 'clean': 1.0, 'like': 1.0}
Word element => {'lionheart': 1.0, 'buy': 1.0, 'never': 1.0, 'will': 1.0, 'that': 1.0, 'saying': 1.0, 'anyone': 1.0, 'of': 1.0, 'heard': 1.0, 'haven': 1.0, 'time': 1.0, 'target': 1.0, 'the': 1.0, 'pee': 1.0, 'it': 1.0, 'repeating': 1.0, 'this': 1.0, 'excited': 1.0, 'first': 1.0, 'used': 1.0, 'little': 1.0, 'o': 1.0, 'product': 1.0, 'for': 1.0, 'bought': 1.0, 'out': 1.0, 'guard': 1.0, 'again': 1.0, 'boys': 1.0, 'floor': 1.0, 'see': 1.0, 't': 1.0, 'a': 1.0, 'tend': 1.0, 'who': 2.0, 'at': 1.0, 'customer': 1.0, 'unhelpful': 1.0, 'towels': 1.0, 'was': 1.0, 'etc': 3.0, 'i': 3.0, 'and': 2.0, 'urine': 1.0, 'there': 1.0, '34': 2.0, 'prince': 1.0, 'completely': 1.0, 'is': 1.0, 'child': 1.0, 'over': 3.0, 'support': 1.0, 'another': 1.0, 'splash': 1.0, 'bathroom': 1.0, 'my': 1.0, 'to': 2.0, 'all': 1.0, 'seat': 1.0, 'toilet': 1.0, 'bath': 1.0, 'wall': 1.0, 'called': 1.0}
Word element => {'favor': 1.0, 'later': 1.0, 'big': 1.0, 'transition': 1.0, 'also': 1.0, 'clean': 1.0, 'look': 1.0, 'are': 1.0, 'at': 1.0, 'pottys': 2.0, 'disgusting': 1.0, 'those': 1.0, 'of': 1.0, 'obnoxious': 1.0, 'buy': 2.0, 'easy': 1.0, 'hes': 1.0, 'smidge': 1.0, 'bums': 1.0, 'in': 1.0, 'a': 3.0, 'move': 1.0, 'yourself': 1.0, 'do': 1.0, 'its': 1.0, 'little': 3.0, 'when': 1.0, 'potty': 2.0, 'and': 8.0, 'awesome': 2.0, 'discreetly': 1.0, 'expensive': 1.0, 'for': 2.0, 'love': 1.0, 'such': 1.0, 'sits': 1.0, 'the': 3.0, 'doesnt': 1.0, 'on': 1.0, 'is': 2.0, 'remove': 1.0, 'looks': 1.0, 'it': 5.0, 'first': 1.0, 'price': 1.0, 'that': 2.0, 'next': 1.0, 'an': 1.0, 'toilet': 1.0, 'i': 3.0, 'one': 3.0, 'bought': 1.0, 'silver': 1.0, 'just': 2.0, 'to': 7.0, 'as': 1.0, 'does': 1.0, 'cushy': 1.0, 'my': 1.0, 'purchase': 1.0, 'pain': 1.0, 'this': 2.0, 'soft': 1.0, 'pictures': 1.0, 'dont': 1.0, 'have': 1.0}
Word element => {'find': 1.0, 'cons': 1.0, 'intended': 1.0, 'what': 1.0, 'concentrating': 1.0, 'than': 1.0, 'cartoon': 1.0, 'prints': 1.0, 'designs': 1.0, 'potty': 1.0, 'she': 1.0, 'record': 1.0, 't': 1.0, 'cushionyi': 1.0, 'animal': 1.0, 'kid': 1.0, 'do': 2.0, 'and': 1.0, 'any': 2.0, 'sizegood': 1.0, 'this': 1.0, 'wouldn': 1.0, 'or': 1.0, 'good': 1.0, 'pros': 1.0, 'one': 1.0, 'love': 1.0, 'purpose': 1.0, 'was': 1.0, 'to': 4.0, 'gripsoft': 1.0, 'those': 1.0, 'i': 1.0, 'buy': 1.0, 'fancy': 2.0, 'did': 1.0, 'watch': 1.0, 'designed': 1.0, 'not': 1.0, 'because': 1.0, 'serves': 1.0, 'my': 2.0, 'rather': 1.0, 'would': 1.0}
Word element => {'otherwise': 1.0, 'but': 1.0, 'bigger': 1.0, 'bit': 1.0, 'a': 1.0, 'were': 1.0, 'cups': 1.0, 'suchion': 1.0, 'wish': 1.0, 'i': 1.0, 'through': 1.0, 'fits': 1.0, 'just': 2.0, 'far': 2.0, 'and': 2.0, 'like': 2.0, 'picture': 1.0, 'or': 1.0, 'the': 3.0, 'bottem': 1.0, 'on': 3.0, 'proplems': 1.0, 'toliet': 1.0, 'son': 1.0, 'my': 2.0, 'color': 1.0, 'is': 1.0, 'fine': 1.0, 'so': 2.0, 'it': 3.0, 'likes': 1.0, 'has': 1.0, 'no': 2.0, 'proplem': 1.0, 'sitting': 1.0, 'falling': 1.0}
Word element => {'size': 1.0, 'is': 1.0, 'tlhe': 1.0, 'platic': 1.0, 'my': 1.0, 'solidly': 1.0, '34': 2.0, 'stick': 1.0, 'it': 1.0, 'to': 1.0, 'be': 1.0, 'perfect': 1.0, 'but': 1.0, 'good': 1.0, 'seat': 1.0, 'some': 1.0, 'toilet': 1.0, 'reason': 1.0, 'for': 1.0, 'mine': 1.0, 'does': 1.0, 'would': 1.0, 'not': 1.0}
Word element => {'training': 1.0, 'too': 1.0, 'and': 1.0, 'me': 1.0, 'easy': 2.0, 'lot': 1.0, 'him': 1.0, 'it': 3.0, 'he': 2.0, 'come': 1.0, 'with': 1.0, 'position': 1.0, 'no': 1.0, 'himself': 1.0, 'the': 2.0, 'my': 1.0, 'boy': 1.0, 'potty': 2.0, 'toilet': 1.0, 'for': 1.0, 'from': 1.0, 'old': 1.0, 'step': 1.0, 'year': 1.0, 'his': 2.0, '3': 1.0, 'on': 3.0, 'put': 1.0, 'then': 1.0, 'to': 5.0, 'seat': 1.0, 'saved': 1.0, 'son': 1.0, 'gets': 1.0, 'up': 2.0, 'shield': 1.0, 'once': 1.0, 'messes': 1.0, 'of': 1.0, 'stool': 1.0, 'likes': 1.0, 'has': 2.0, 'problem': 1.0, 'sitting': 1.0, 'front': 1.0, 'go': 1.0, 's': 2.0, 'a': 2.0, 'having': 1.0, 'clean': 2.0, 'that': 1.0}
Word element => {'amazing': 1.0, 'happy': 1.0, 'consuming': 1.0, 'training': 1.0, 'worth': 1.0, 'was': 1.0, 'never': 1.0, 'i': 3.0, 'mess': 1.0, 'of': 1.0, 'forward': 1.0, 'seat': 1.0, 'to': 3.0, 'wipe': 1.0, 'easy': 1.0, 'lot': 1.0, 'winner': 1.0, 'it': 5.0, 'found': 1.0, 'this': 3.0, 'is': 5.0, 'weepod': 1.0, 'product': 1.0, 'for': 2.0, 'cheap': 1.0, 'ordered': 1.0, 'front': 1.0, 'after': 1.0, 'the': 4.0, 'buying': 1.0, 'gaurd': 1.0, 'a': 4.0, 'we': 1.0, 'up': 1.0, 'time': 1.0, 'so': 1.0, 'potty': 2.0, 'some': 1.0, 'cleaning': 1.0, 'clean': 1.0, 'son': 1.0, 'and': 3.0, 'lead': 1.0, 'seats': 1.0, 'backwards': 1.0, 'that': 2.0, 'cushy': 1.0, 'bathroom': 1.0, 'splash': 1.0, 'my': 1.0, 'but': 1.0, 'guide': 1.0, 'can': 2.0, 'sit': 2.0, 'while': 1.0, 'review': 1.0, 'comfortably': 1.0, 'has': 1.0, 'in': 1.0, 'key': 1.0, 'which': 2.0, 'very': 1.0, 'little': 1.0, 'am': 1.0, 'boys': 1.0, 'slouching': 1.0, 'back': 1.0, 'instead': 1.0, 'helps': 1.0}
Word element => {'cleaning': 1.0, 'for': 1.0, 'product': 1.0, 'sitting': 1.0, 'a': 1.0, 'since': 1.0, 'purchased': 1.0, 'in': 3.0, 'so': 1.0, 'interest': 1.0, 'we': 1.0, 'shows': 1.0, 'potty': 1.0, 'additionally': 1.0, 'secure': 1.0, 'training': 1.0, 'toddler': 1.0, 'our': 1.0, 'early': 1.0, 'looks': 1.0, 'is': 2.0, 'the': 1.0, 'great': 1.0, '2': 1.0, 'ease': 1.0, '1': 1.0, 'and': 1.0, 'my': 1.0, 'to': 1.0, 'husband': 1.0, 'able': 1.0, 'likes': 1.0, 'this': 2.0, 'he': 2.0, 'it': 2.0}
Word element => {'the': 1.0, 'survives': 1.0, 'hold': 1.0, 'like': 1.0, 'seems': 1.0, 'soft': 1.0, 'as': 1.0, 's': 1.0, 'different': 1.0, 'little': 1.0, 'and': 1.0, 'trained': 1.0, 'attempts': 1.0, 'second': 1.0, 'one': 2.0, 'for': 1.0, 'hoping': 1.0, 'to': 1.0, 'a': 2.0, 'that': 2.0, 'use': 1.0, 'then': 1.0, 'loved': 1.0, 'bought': 2.0, 'i': 2.0, 'much': 1.0, 'potty': 1.0, 'up': 1.0, 'grandmas': 2.0, 'halfhearted': 1.0, 'this': 1.0, 'only': 1.0, 'it': 2.0, 'not': 1.0, 'seat': 1.0, 'started': 1.0, 'will': 1.0, 'house': 2.0, 'but': 2.0, 'crack': 1.0, 'so': 1.0, 'after': 1.0}
Word element => {'help': 1.0, 'i': 2.0, 'tries': 1.0, 'started': 1.0, 'training': 1.0, 'but': 3.0, 'he': 5.0, 'it': 2.0, 'skin': 1.0, 'toilet': 1.0, 'any': 1.0, 'seat': 1.0, 'to': 5.0, 'thinks': 1.0, 'wanted': 1.0, 'was': 1.0, 'be': 1.0, 'grab': 1.0, 'haven': 1.0, 'without': 1.0, 'the': 2.0, 'great': 1.0, 'able': 2.0, 'sit': 1.0, 'upright': 1.0, 'officially': 1.0, 'if': 1.0, 'when': 1.0, 'boy': 1.0, 'potty': 1.0, 'my': 1.0, 'pull': 1.0, 'use': 1.0, 'get': 1.0, 'and': 2.0, 'comfy': 1.0, 'off': 1.0, 'is': 2.0, 'say': 1.0, 'owe': 1.0, 'overall': 1.0, 'since': 1.0, 't': 1.0, 'a': 1.0, 'will': 1.0, 'seems': 2.0, 'ready': 1.0, 'his': 1.0, 'little': 1.0}
Word element => {'other': 1.0, 'second': 1.0, 'with': 1.0, 'happy': 1.0, 'so': 1.0, 'seems': 1.0, 'things': 1.0, 'long': 2.0, 'how': 1.0, 'timed': 1.0, 've': 1.0, 'just': 1.0, 'few': 1.0, 'once': 1.0, 'sit': 2.0, 'this': 2.0, 'lionheart': 1.0, 'general': 1.0, 'while': 1.0, 'early': 1.0, 'moving': 1.0, 'never': 2.0, 'pick': 1.0, 'i': 5.0, 'products': 1.0, 'took': 1.0, 'old': 1.0, 'our': 1.0, 'seat': 1.0, 'to': 5.0, 'wait': 1.0, 'wanted': 1.0, 'like': 1.0, 'she': 3.0, 'it': 7.0, 'train': 1.0, 'was': 1.0, 'minutes': 1.0, 'doesn': 1.0, 'the': 2.0, 'bathroom': 1.0, 'my': 3.0, 'daughter': 1.0, 'when': 1.0, 'me': 1.0, 'and': 4.0, 'bought': 1.0, 'uncomfortable': 1.0, 'one': 1.0, 'sits': 1.0, '9mo': 1.0, 'for': 3.0, 'favorite': 1.0, 'who': 1.0, 'we': 1.0, 't': 1.0, 'a': 4.0, 's': 2.0, 'get': 1.0, 'easy': 1.0, 'put': 3.0, 'on': 7.0, 'take': 1.0, 'enough': 2.0, 'off': 1.0, 'comfortable': 1.0, 'stays': 1.0, 'own': 1.0, 'toilet': 1.0, 'but': 3.0, 'can': 1.0, 'little': 1.0, 'her': 3.0, 'in': 2.0, 'age': 1.0, 'prince': 1.0, 'is': 3.0, 'fall': 1.0}
Word element => {'one': 1.0, 'little': 1.0, 'as': 1.0, 'loves': 1.0, 'said': 1.0, 'potty': 1.0, 'doesn': 1.0, 'it': 3.0, 'slip': 1.0, 'climbs': 1.0, 'seat': 2.0, 'of': 1.0, 'and': 2.0, 'my': 1.0, 't': 2.0, 'great': 1.0, 'the': 2.0, 'hurt': 1.0, 'her': 1.0, 'tushy': 1.0, 'nice': 1.0, 'that': 1.0, 'on': 1.0, 'won': 1.0, 'suctions': 1.0, 'granddaughter': 1.0, 'to': 1.0, 'slide': 1.0}
Word element => {'very': 1.0, 'fit': 1.0, 'a': 1.0, 'contoured': 1.0, 'boys': 1.0, 'for': 2.0, 'in': 1.0, 'seat': 3.0, 'keeps': 1.0, 'both': 1.0, 'comfy': 1.0, 'and': 2.0, 'happy': 1.0, 'my': 1.0, 'product': 1.0, 'bought': 1.0, 'with': 1.0, 'this': 2.0, 'it': 1.0, 'is': 1.0, 'shapes': 1.0, 'the': 3.0, 'great': 1.0, 'i': 1.0, 'round': 1.0, 'fits': 1.0, 'guard': 1.0, 'toilet': 1.0, 'everything': 1.0, 'elongated': 1.0, 'potty': 1.0, 'peepee': 1.0}
Word element => {'high': 1.0, 'look': 1.0, 'need': 1.0, 'how': 1.0, 'one': 1.0, 'part': 1.0, 'from': 1.0, 'cracks': 1.0, 'just': 1.0, 'literately': 1.0, 'what': 1.0, 'even': 1.0, 'not': 1.0, 'm': 1.0, 'problem': 1.0, 'first': 1.0, 'purchasing': 1.0, 'before': 1.0, 'should': 1.0, 'through': 1.0, 'about': 1.0, 'front': 1.0, 'use': 2.0, 'if': 1.0, 'sons': 2.0, 'other': 1.0, 'scratches': 1.0, 'or': 1.0, 'now': 2.0, 'clean': 1.0, 'guard': 1.0, 'sure': 1.0, 'easy': 1.0, 'in': 2.0, 'and': 3.0, 'read': 1.0, 'very': 1.0, 'year': 1.0, 'pee': 2.0, 'the': 6.0, '2': 1.0, 'another': 2.0, 'purchase': 1.0, 'my': 3.0, 'cushion': 1.0, 'perfect': 1.0, 'this': 4.0, 'with': 2.0, 'it': 4.0, 'consistent': 1.0, 'was': 2.0, 'old': 1.0, 'i': 6.0, 'product': 1.0, 'for': 1.0, 'sad': 1.0, 'love': 2.0, 'won': 1.0, 'review': 1.0, 'has': 3.0, 'reviews': 1.0, 'they': 3.0, 'to': 4.0, 'seat': 3.0, 'next': 1.0, 'that': 2.0, 'so': 1.0, 'time': 1.0, 'bit': 1.0, 'potty': 1.0, 'of': 1.0, 'over': 1.0, 'don': 1.0, 'pinches': 1.0, 'like': 3.0, 'also': 1.0, 'will': 1.0, 'is': 2.0, 'fall': 1.0, 't': 2.0, 'a': 2.0, 'we': 1.0, 'some': 1.0, 'seats': 1.0, 'have': 2.0, 'happened': 1.0, 'when': 1.0, 'boys': 1.0, 'seen': 1.0, 'usedupdated': 1.0, 'cracked': 1.0, 'twin': 1.0, 'feel': 1.0, 'until': 1.0}
Word element => {'toilet': 1.0, 'hook': 1.0, 'had': 1.0, 'wish': 1.0, 'clean': 1.0, 'your': 1.0, 'super': 1.0, 'after': 1.0, 'everywhere': 1.0, 'stays': 1.0, 'quite': 1.0, 'seats': 1.0, 'tank': 1.0, 'going': 1.0, 'favorite': 1.0, 'the': 1.0, 'pee': 1.0, 't': 1.0, 'and': 2.0, 'get': 1.0, 'comfy': 2.0, 'doesn': 1.0, 'thru': 1.0, 'a': 3.0, 'few': 1.0, 'potty': 1.0, 'for': 2.0, 'one': 1.0, 'is': 1.0, 'lo': 1.0, 'color': 1.0, 'my': 1.0, 'only': 1.0, 'this': 1.0, 'it': 3.0, 's': 1.0, 'pretty': 1.0}
Word element => {'herself': 1.0, 'color': 1.0, 'balance': 1.0, 'to': 1.0, 'loves': 1.0, 'have': 1.0, 't': 1.0, 'doesn': 1.0, 'comfortable': 1.0, 'the': 2.0, 'my': 1.0, 'she': 1.0, 'little': 1.0, 'very': 1.0, 'and': 2.0, 'potty': 1.0, 'one': 1.0, 'it': 1.0, 'perfectly': 1.0, 'on': 2.0, 'fits': 1.0}
Word element => {'go': 1.0, 'learn': 1.0, 'has': 1.0, 'and': 1.0, 'item': 1.0, 'boys': 1.0, 'which': 1.0, 'a': 1.0, 'front': 1.0, 'in': 1.0, 'guard': 1.0, 'helped': 1.0, 'training': 1.0, 'is': 1.0, 'many': 1.0, 'necessity': 1.0, 'potty': 2.0, 'i': 1.0, 'love': 1.0, 'for': 1.0, 'one': 1.0, 'help': 1.0, 'items': 1.0, 'so': 1.0, 'son': 2.0, 'my': 2.0, 'it': 1.0, 'with': 1.0, 'looked': 1.0, 'this': 2.0, 'already': 1.0, 'to': 2.0, 'had': 1.0, 'pee': 1.0, 'the': 1.0, 'great': 1.0, 'reviews': 1.0, 'especially': 1.0, 'because': 1.0, 'up': 1.0, 'of': 1.0}
Word element => {'wash': 1.0, 'very': 1.0, 'little': 1.0, 'a': 1.0, 'bounces': 1.0, 'and': 1.0, 'soft': 1.0, 'is': 2.0, 'seat': 1.0, 'hated': 1.0, 'of': 1.0, 'two': 1.0, 'so': 1.0, 'her': 2.0, 'child': 1.0, 'those': 1.0, 'goes': 1.0, 'we': 1.0, 'toilet': 1.0, 'product': 1.0, 'bought': 1.0, 'bit': 1.0, 'potty': 1.0, 'my': 1.0, 'great': 1.0, 'the': 2.0, 'train': 1.0, 'go': 1.0, 'on': 1.0, 'to': 3.0, 'now': 1.0, 'easy': 1.0, 'she': 2.0, 'loved': 1.0, 'it': 2.0, 'willingly': 1.0}
Word element => {'from': 1.0, 'keep': 1.0, 'seat': 2.0, 'has': 1.0, 'new': 1.0, 'her': 1.0, 's': 1.0, 'it': 1.0, 'loves': 1.0, 'softer': 1.0, 'and': 1.0, 'cups': 1.0, 'daughter': 1.0, 'to': 1.0, 'had': 1.0, 'much': 1.0, 'potty': 1.0, 'my': 1.0, 'the': 2.0, 'sliding': 1.0, 'than': 1.0, 'baby': 1.0, 'bjorn': 1.0, 'she': 1.0, 'been': 1.0, 'one': 1.0, 'using': 1.0, 'suction': 1.0}
Word element => {'product': 1.0, 'quite': 1.0, 'is': 1.0, 'comfortable': 1.0, 'one': 1.0, 'little': 1.0, 'you': 1.0, 'but': 1.0, 'fits': 1.0, 'stands': 1.0, 'use': 1.0, 'fit': 1.0, 'have': 1.0, 'how': 1.0, 'would': 1.0, 'to': 2.0, 'was': 1.0, 'not': 1.0, 'as': 1.0, 'skeptical': 1.0, 'i': 1.0, 'when': 1.0, 'and': 1.0, 'get': 1.0, 'alone': 1.0, 'this': 1.0, 'it': 2.0, 'the': 1.0, 'great': 2.0, 'in': 1.0}
Word element => {'brand': 1.0, 'another': 1.0, 'try': 1.0, 'should': 1.0, 'i': 1.0, 'again': 1.0, 'buy': 1.0, 'will': 1.0, 'my': 1.0, 'daughter': 1.0, 'likes': 1.0, 'disappointed': 1.0, 'very': 1.0, 'but': 1.0, 'it': 2.0, 'cracked': 1.0, 'not': 1.0, 'after': 1.0, '3': 1.0, 'weeks': 1.0}
Word element => {'one': 1.0, 'quality': 1.0, 'for': 1.0, 'more': 1.0, 'bit': 1.0, 'shell': 1.0, 'buy': 1.0, 'together': 1.0, 'out': 1.0, 'third': 1.0, 'use': 2.0, 'and': 1.0, 'do': 1.0, 'a': 2.0, 't': 2.0, 'the': 4.0, 'off': 1.0, 'bottom': 1.0, 'of': 1.0, 'had': 1.0, 'easy': 1.0, 'on': 1.0, 'don': 1.0, 'over': 1.0, 'stick': 1.0, 'from': 2.0, 'would': 1.0, 'thumbnail': 1.0, 'higher': 1.0, 'it': 5.0, 'with': 1.0, 'pinching': 1.0, 'wouldn': 1.0, 'likes': 1.0, 'well': 1.0, 'to': 2.0, 'all': 1.0, 'cups': 1.0, 'son': 2.0, 'gets': 1.0, 'unfortunately': 1.0, 'my': 2.0, 'after': 1.0, 'broke': 1.0, 'second': 1.0, 'this': 1.0, 'nicks': 1.0, 'in': 2.0, 'then': 1.0, 'falling': 1.0, 'edges': 1.0, 'his': 1.0, 'but': 1.0, 'keeps': 1.0, 'again': 1.0, 'suction': 1.0, 'him': 1.0, 'if': 1.0, 'i': 3.0}
Word element => {'potty': 1.0, 'getting': 1.0, 'since': 1.0, 'actually': 1.0, 'front': 1.0, 'barrier': 1.0, 'spray': 1.0, 'bonus': 1.0, 'clean': 1.0, 'rinse': 1.0, 'wipe': 1.0, 'up': 1.0, 'taking': 1.0, 'high': 1.0, 'to': 9.0, 'as': 1.0, 'cups': 1.0, 'our': 1.0, 'wants': 1.0, 'can': 1.0, 'so': 1.0, 'needs': 1.0, 'wetness': 1.0, 's': 5.0, 'we': 2.0, 'a': 2.0, 't': 4.0, 'with': 1.0, 'but': 2.0, 'work': 2.0, 'brands': 1.0, 'that': 4.0, 'fancy': 1.0, 'he': 4.0, 'and': 8.0, 'bowls': 1.0, 'my': 1.0, 'me': 1.0, 'not': 2.0, 'seats': 1.0, 'just': 2.0, 've': 2.0, 'design': 1.0, 'any': 1.0, 'your': 1.0, 'keeps': 1.0, 'all': 1.0, 'fits': 1.0, 'other': 1.0, 'care': 1.0, 'many': 1.0, 'is': 5.0, 'prince': 1.0, 'weepod': 2.0, 'play': 1.0, 'about': 2.0, 'off': 1.0, 'tried': 2.0, 'scrapes': 1.0, 'best': 1.0, 'toddler': 1.0, 'potties': 1.0, 'price': 1.0, 'neutral': 1.0, 'lionheart': 1.0, 'aren': 1.0, 'comfort': 1.0, 'place': 1.0, 'fantastic': 1.0, 'great': 1.0, 'trust': 1.0, 'nearly': 1.0, 'don': 3.0, 'enough': 2.0, 'legs': 1.0, 'both': 1.0, 'half': 2.0, 'house': 1.0, 'fun': 1.0, 'scared': 1.0, 'without': 1.0, 'soft': 2.0, 'circulation': 1.0, 'either': 1.0, 'for': 2.0, 'exceptional': 1.0, 'material': 1.0, 'it': 7.0, 'him': 1.0, 'suction': 1.0, 'while': 1.0, 'on': 2.0, 'floor': 1.0, 'put': 1.0, 'if': 1.0, 'little': 1.0, 'of': 4.0, 'the': 15.0, 'longer': 1.0, 'have': 2.0, 'comfortable': 1.0, 'worry': 2.0, 'seat': 3.0, 'in': 4.0, 'his': 1.0, 'or': 2.0, 'block': 1.0, 'effortlessly': 1.0, 'well': 1.0, 'i': 2.0, 'feet': 1.0, 'easy': 2.0, 'use': 1.0, 'keep': 1.0, 'styles': 1.0, 'toilet': 1.0, 'side': 1.0, 'sit': 1.0, 'when': 2.0, 'you': 2.0, 'using': 1.0}
Word element => {'down': 1.0, 'point': 1.0, 'remembers': 1.0, 'bigger': 1.0, 'now': 1.0, 'he': 1.0, 'misses': 1.0, 'rarely': 1.0, 'day': 1.0, 'wintery': 1.0, 'on': 1.0, 'cold': 1.0, 'not': 1.0, 'comfortable': 1.0, 'it': 1.0, 'is': 3.0, 'rear': 1.0, 'toilet': 1.0, 'off': 1.0, 'himself': 1.0, 'cleaning': 1.0, 'clean': 1.0, 'into': 1.0, 'that': 3.0, 'crystalizes': 1.0, 'stable': 1.0, 'of': 1.0, 'was': 1.0, 'seat': 2.0, 'to': 3.0, 'part': 1.0, 'rubber': 1.0, '5': 1.0, 'stars': 1.0, 'sealed': 1.0, 'rate': 1.0, 'fits': 1.0, 'my': 2.0, 'surface': 1.0, 'if': 1.0, 'the': 8.0, 'otherwise': 1.0, 'i': 1.0, 'foam': 1.0, 'would': 1.0, 'breeze': 1.0, 'area': 1.0, 'but': 1.0, 'unsealed': 1.0, 'urine': 1.0, 'too': 1.0, 'and': 4.0, 'under': 1.0, 'gets': 1.0, 'miss': 1.0, 'when': 1.0, 'stuck': 1.0, 'in': 1.0, 'this': 2.0, 'pain': 1.0, 't': 1.0, 'a': 3.0, 's': 2.0, 'very': 1.0, 'little': 1.0, 'didn': 1.0, 'boy': 2.0}
Word element => {'complaining': 1.0, 'see': 1.0, 'and': 3.0, 'reviewing': 1.0, 'through': 2.0, 'to': 4.0, 'other': 1.0, 'all': 1.0, 'huge': 2.0, 'bought': 2.0, 'planning': 1.0, 'one': 2.0, 'last': 2.0, 'clean': 1.0, 'it': 14.0, 'used': 1.0, 'that': 1.0, 'had': 2.0, '3': 1.0, 'think': 1.0, 'on': 1.0, 'months': 1.0, 'except': 1.0, 'month': 1.0, 'same': 3.0, 'keeps': 1.0, 'don': 1.0, 'up': 1.0, 'replacing': 1.0, 'crack': 1.0, 'since': 1.0, 'weeks': 1.0, 'neutral': 1.0, 'but': 2.0, 'thing': 1.0, '2': 1.0, 'prior': 1.0, 'i': 10.0, 'didn': 1.0, 'got': 1.0, 'even': 2.0, 'halfway': 1.0, 'enough': 1.0, 'once': 1.0, 'gray': 1.0, 'of': 2.0, 'the': 6.0, 'a': 2.0, 't': 2.0, 'ago': 1.0, 's': 2.0, 'have': 1.0, 'years': 2.0, 'been': 2.0, 'amazon': 1.0, 'anyway': 1.0, 'use': 1.0, 'about': 5.0, 'whole': 1.0, 'seat': 2.0, 'm': 2.0, 'in': 3.0, 'from': 1.0, 'year': 1.0, 'for': 4.0, 'using': 1.0, 'like': 1.0, 'this': 4.0, 'kids': 1.0, 'purchase': 1.0, 'only': 2.0, 'getting': 1.0, 'worse': 1.0, 'so': 1.0, 'potty': 1.0, 'need': 1.0, '15': 1.0, 'replace': 1.0, 'kind': 1.0, 'know': 1.0, 'easy': 1.0, 'disappointed': 1.0, 'liked': 1.0, 'durable': 1.0, 'regularly': 1.0, 'though': 1.0, 'bottom': 1.0, 'especially': 1.0, 'at': 1.0, 'is': 1.0, 'seemed': 1.0, 'gender': 1.0, 'many': 2.0, 'with': 2.0, 'everyone': 1.0, 'has': 1.0, 'children': 1.0, 'still': 1.0, 'people': 1.0, 'holding': 1.0, 'not': 2.0, 'worth': 1.0}
Word element => {'a': 1.0, 'super': 1.0, 'soft': 1.0, 'uncle': 1.0, 'aunt': 1.0, 's': 3.0, 'we': 1.0, 'pretty': 1.0, 'going': 1.0, 'when': 1.0, 'buy': 1.0, 'i': 2.0, 'potty': 1.0, 'son': 1.0, 'comfortable': 1.0, 'one': 3.0, 'for': 4.0, 'were': 1.0, 'works': 1.0, 'with': 1.0, 'it': 2.0, 'this': 1.0, 'my': 3.0, 'bought': 2.0, 'house': 2.0, 'training': 1.0, 'home': 1.0, 'great': 1.0, 'the': 1.0, 'heavy': 1.0, 'mother': 1.0, 'and': 4.0, 'grandmother': 1.0}
Word element => {'has': 1.0, 'telling': 1.0, 'weeks': 1.0, 'recently': 1.0, 'week': 1.0, 'after': 2.0, 'quickly': 1.0, 'reason': 1.0, 'it': 3.0, 'he': 7.0, 'this': 2.0, 'love': 1.0, 'for': 2.0, 'yet': 1.0, 'training': 3.0, 'is': 6.0, 'son': 1.0, 'ring': 1.0, 'these': 2.0, 'started': 1.0, 'choice': 1.0, 'are': 1.0, 'every': 1.0, 'amazing': 1.0, 'and': 5.0, 'chair': 2.0, 'when': 3.0, 'i': 3.0, 'time': 1.0, 'so': 1.0, 'potty': 3.0, 'of': 3.0, 'always': 1.0, 'easy': 1.0, 'him': 3.0, 'to': 2.0, 'use': 1.0, 'himself': 1.0, 'go': 1.0, 'going': 1.0, 'we': 3.0, 'a': 2.0, 's': 1.0, 'although': 1.0, '16': 1.0, 'one': 1.0, 'bought': 1.0, 'months': 1.0, 'put': 1.0, 'on': 2.0, 'the': 4.0, 'believe': 1.0, 'chooses': 1.0, 'that': 1.0, 'loves': 2.0, 'me': 1.0, 'give': 1.0, 'my': 1.0, 'cushy': 1.0, '2': 1.0, 'sitting': 1.0, 'firm': 1.0, 'part': 1.0}
Word element => {'oooooo': 1.0, 'said': 1.0, 'it': 1.0, 'first': 1.0, 'she': 2.0, 'insecure': 1.0, 'super': 1.0, 'on': 3.0, 'sat': 1.0, 'aren': 1.0, 'sticky': 1.0, 'suction': 1.0, 'that': 1.0, 'they': 1.0, '34': 2.0, 'bottom': 1.0, 't': 2.0, 'the': 3.0, 'are': 1.0, 'my': 1.0, 'scoot': 1.0, 'feel': 1.0, 'when': 1.0, 'cups': 1.0, 'daughter': 1.0, 'but': 1.0, 'doesn': 1.0, 'enough': 1.0, 'around': 1.0, 'strong': 1.0, 'seat': 1.0, 'and': 1.0}
Word element => {'paper': 1.0, 'toilet': 1.0, 'also': 1.0, 'other': 1.0, 'her': 1.0, 'sat': 1.0, 'i': 1.0, 'potty': 1.0, 'start': 1.0, 'going': 1.0, 'thought': 1.0, 'that': 1.0, 'for': 2.0, 'fun': 1.0, 'at': 1.0, 'grab': 1.0, 'to': 3.0, 'was': 2.0, 'bought': 1.0, 'better': 1.0, 'target': 2.0, 'she': 2.0, 'store': 1.0, 'easy': 1.0, 'gray': 1.0, 'use': 2.0, '12': 1.0, 'really': 1.0, 'wise': 1.0, 'here': 1.0, 'saw': 1.0, 'and': 1.0, 'comfy': 1.0, 'the': 3.0, '99': 1.0, 'tax': 1.0, 'hehehe': 1.0, 'color': 1.0, 'day': 1.0, 'very': 1.0, 'a': 1.0, 'price': 1.0, 'baby': 1.0}
Word element => {'anyone': 1.0, 'movements': 1.0, 'easier': 1.0, 'has': 1.0, 'properly': 1.0, 'allowed': 1.0, 'herself': 1.0, 'ability': 1.0, 'too': 1.0, 'and': 1.0, 'now': 1.0, 'some': 1.0, 'guess': 1.0, 'quite': 1.0, 'having': 1.0, 'dd': 1.0, 'trouble': 1.0, 'constipation': 2.0, 'have': 2.0, 'seems': 1.0, 'also': 1.0, 's': 1.0, 'hole': 1.0, 'bowel': 1.0, 'toilet': 1.0, 'managed': 1.0, 'always': 1.0, 'of': 1.0, 'who': 1.0, 'boys': 1.0, 'chair': 1.0, 'somehow': 1.0, 'my': 2.0, 'high': 1.0, 'this': 3.0, 'but': 1.0, 'advertised': 1.0, 'i': 3.0, 'time': 1.0, 'potty': 3.0, 'it': 1.0, 'solved': 2.0, 'is': 3.0, 'although': 1.0, 'been': 1.0, 'that': 2.0, 'not': 1.0, 'worth': 1.0, 'only': 2.0, 'its': 2.0, 'daughter': 1.0, 'should': 1.0, 'recently': 1.0, 'for': 3.0, 'weight': 1.0, 'got': 1.0, 'previous': 1.0, 'buy': 1.0, 'gold': 1.0, 'did': 1.0, 'problem': 1.0, 'shoot': 1.0, 'splashguard': 1.0, 'believe': 1.0, 'pee': 1.0, 'the': 5.0, 'out': 1.0, 'her': 3.0, 'get': 1.0, 'seat': 6.0, 'to': 5.0, 'as': 1.0, 'addition': 1.0, 'in': 2.0, 'itself': 1.0, 'tapered': 1.0, 'inwards': 1.0, 'towards': 1.0}
Word element => {'brand': 1.0, 'seats': 1.0, 'baby': 1.0, 'than': 2.0, 'larger': 1.0, 'slightly': 1.0, 'beyond': 1.0, 'perfect': 1.0, 'potty': 2.0, 'smooth': 1.0, 'going': 1.0, 'a': 1.0, 's': 2.0, 'hard': 1.0, 'surface': 1.0, 'clean': 1.0, 'that': 3.0, 'for': 1.0, 'not': 1.0, 'dense': 1.0, 'i': 1.0, 'like': 2.0, 'when': 1.0, 'fallen': 1.0, 'easily': 2.0, 'but': 1.0, 'plastic': 2.0, 'toilet': 3.0, 'easy': 1.0, 'well': 1.0, 'has': 2.0, 'girls': 1.0, 'it': 2.0, 'she': 1.0, 'as': 1.0, 'seat': 4.0, 'to': 1.0, 'and': 5.0, 'pink': 1.0, 'piece': 1.0, 'on': 2.0, 'very': 2.0, 'construction': 1.0, 'comfy': 1.0, 'feels': 1.0, 'training': 1.0, 'cleans': 1.0, 'one': 1.0, 'color': 1.0, 'fits': 2.0, 'my': 1.0, 'more': 1.0, 'is': 1.0, 'comfortable': 1.0, 'shapes': 1.0, 'great': 1.0, 'the': 3.0, 'daughter': 1.0, 'foam': 1.0, 'never': 1.0, 'bjorn': 1.0, 'in': 1.0, 'many': 1.0, 'safe': 1.0}
Word element => {'does': 1.0, 'down': 1.0, 'smack': 1.0, 'recommended': 1.0, 'likes': 1.0, 'he': 3.0, 'him': 1.0, 'comfy': 1.0, 'on': 2.0, 'imagine': 1.0, 'in': 1.0, 'air': 1.0, 'toilet': 2.0, 'and': 3.0, 'i': 1.0, 'guard': 1.0, 'happen': 1.0, 'now': 1.0, 'peepee': 1.0, 'highly': 1.0, 'every': 1.0, 'then': 1.0, 'baby': 1.0, 'didn': 1.0, 'little': 1.0, 'first': 1.0, 'this': 1.0, 'it': 4.0, 'what': 1.0, '699': 2.0, 'to': 1.0, 'seat': 1.0, 'business': 1.0, 'fact': 1.0, 'my': 2.0, 'incidents': 1.0, 'hands': 1.0, 'the': 2.0, 'have': 2.0, 'grateful': 1.0, 'can': 2.0, 'but': 1.0, 'his': 2.0, 'awesome': 1.0, 'loves': 1.0, 'that': 1.0, 'protects': 1.0, 'while': 1.0, 'from': 1.0, 'open': 1.0, 'us': 1.0, 'happened': 1.0, 'you': 2.0, 'am': 1.0, 'when': 1.0, 's': 1.0, 't': 1.0, 'a': 2.0, 'so': 1.0, 'boy': 1.0, 'for': 3.0, 'product': 1.0, 'seated': 1.0, 'also': 1.0}
Word element => {'15': 1.0, 'waste': 1.0, 'you': 1.0, 'unless': 1.0, 'don': 1.0, 'was': 1.0, 'appeared': 1.0, 'before': 1.0, 'okay': 1.0, 'even': 1.0, 'very': 1.0, 'in': 1.0, 'despite': 1.0, 'be': 1.0, 'the': 6.0, 'cracking': 1.0, 'used': 1.0, 'been': 1.0, 'point': 1.0, 'month': 1.0, 'it': 4.0, 'this': 1.0, 'with': 1.0, 'for': 1.0, 'though': 1.0, 'so': 1.0, 'potty': 2.0, 've': 1.0, 'each': 1.0, 'best': 1.0, 'had': 1.0, 'or': 1.0, 'year': 1.0, 'almost': 1.0, 'last': 2.0, 'bigger': 2.0, 'since': 1.0, 'to': 2.0, 'seat': 2.0, 'started': 1.0, 'of': 2.0, 'may': 1.0, 'my': 1.0, 't': 1.0, 'going': 1.0, 's': 1.0, 'we': 1.0, 'a': 1.0, 'ago': 1.0, 'only': 1.0, 'efforts': 1.0, 'want': 1.0, 'being': 1.0, 'buy': 1.0, 'days': 1.0, 'soon': 1.0, 'and': 3.0, 'unusable': 1.0, 'get': 1.0, 'trash': 1.0, 'is': 1.0, 'use': 1.0, 'just': 1.0, 'few': 1.0, 'cracks': 2.0, 'will': 1.0}
Word element => {'your': 1.0, 'while': 1.0, 'sturdy': 1.0, 'most': 1.0, 'setbacks': 1.0, 'these': 1.0, 'despite': 1.0, 'live': 1.0, 'where': 1.0, 'depending': 1.0, 'recycled': 1.0, 'care': 1.0, 'like': 1.0, 'toilet': 1.0, 'one': 1.0, 'actual': 1.0, 'takes': 1.0, 'up': 1.0, 'doesn': 1.0, 'could': 1.0, 'guidelines': 1.0, 'mark': 1.0, 'also': 1.0, 'comfortable': 1.0, 'replaced': 1.0, 'completely': 2.0, 'be': 3.0, 'needs': 1.0, 'fix': 1.0, 'with': 1.0, 'sadly': 1.0, 'thing': 1.0, 'big': 1.0, 'as': 1.0, 'crazy': 1.0, 'avoided': 1.0, 'was': 2.0, 'deal': 1.0, 'unfortunately': 1.0, 'you': 1.0, 'bucks': 1.0, 'twelve': 1.0, 'isn': 2.0, 'shield': 1.0, 'a': 4.0, 'maybe': 1.0, 's': 1.0, 'very': 2.0, 'being': 1.0, 'coating': 1.0, 'base': 1.0, 'after': 1.0, 'not': 1.0, 'itself': 1.0, 'regular': 1.0, 'pack': 1.0, 'cracks': 1.0, 'works': 1.0, 'forgotten': 1.0, 'in': 1.0, 'seat': 7.0, 'our': 1.0, 'if': 2.0, 'stay': 1.0, 'and': 8.0, 'potty': 4.0, 'my': 1.0, 'this': 3.0, 'tipping': 1.0, 'purchased': 1.0, 'type': 1.0, 'had': 1.0, 'underneath': 1.0, 'grandma': 1.0, 'extended': 1.0, 'no': 1.0, 'i': 1.0, 'little': 1.0, 'two': 1.0, 'for': 3.0, 'saw': 1.0, 'weepod': 3.0, 'character': 1.0, 'normal': 1.0, 'are': 1.0, 'husband': 1.0, 'that': 1.0, 'reasonable': 1.0, 'potties': 1.0, 'toddler': 1.0, 'business': 1.0, 'his': 2.0, 't': 3.0, 'require': 1.0, 'nearly': 1.0, 'other': 1.0, 'an': 2.0, 'house': 1.0, 'at': 2.0, 'is': 2.0, 'summer': 1.0, 'part': 1.0, 'during': 1.0, 'however': 1.0, 'sold': 1.0, 'easy': 2.0, 'her': 1.0, 'use': 2.0, 'front': 1.0, 'extra': 2.0, 'to': 5.0, 'high': 1.0, 'great': 1.0, 'foam': 1.0, 'contrary': 1.0, 'there': 2.0, 'impossible': 1.0, 'side': 1.0, 'handles': 1.0, 'but': 2.0, 'can': 2.0, 'hand': 1.0, 'cushioning': 1.0, 'makes': 1.0, 'falling': 1.0, 'or': 2.0, 'it': 2.0, 'over': 2.0, 'happen': 2.0, 'colorful': 1.0, 'some': 1.0, 'on': 3.0, 'plastic': 2.0, 'correctly': 1.0, 'we': 2.0, 'reviews': 1.0, 'does': 1.0, 'cleaning': 1.0, 'seats': 1.0, 'just': 1.0, 'tends': 1.0, 'large': 1.0, 'five': 1.0, 'months': 1.0, 'the': 16.0, 'of': 3.0, 'bottom': 1.0, 'under': 1.0, 'now': 1.0, 'target': 1.0, 'has': 1.0}
Word element => {'shape': 1.0, 'is': 1.0, 'hotel': 1.0, 'in': 2.0, 'stay': 1.0, 'week': 1.0, 'move': 1.0, 'included': 1.0, 'months': 1.0, 'sit': 1.0, 'have': 1.0, 'my': 2.0, 'out': 1.0, 'clean': 1.0, 'got': 1.0, 'use': 1.0, 'that': 1.0, 'loves': 1.0, 'this': 2.0, 'it': 3.0, '3': 2.0, 'on': 1.0, 'still': 1.0, 'son': 1.0, 'great': 1.0, 'big': 2.0, 'year': 1.0, 'little': 1.0, 'having': 1.0, 'because': 1.0, 'was': 1.0, 'to': 2.0, 'i': 2.0, 'old': 1.0, 'sick': 1.0, 'will': 1.0, 'can': 2.0, 'but': 1.0, 'of': 1.0, 'up': 1.0, 'the': 1.0, 'a': 3.0, 's': 1.0, 'we': 2.0, 't': 1.0, '5': 1.0, 'daughter': 1.0, 'and': 3.0, 'too': 1.0, 'speak': 1.0, 'for': 2.0, 'he': 2.0, 'how': 1.0, 'has': 1.0, 'likes': 1.0, 'well': 1.0, 'which': 1.0, 'hold': 1.0, 'long': 1.0, 'used': 1.0, 'potty': 2.0, 'term': 1.0}
Word element => {'past': 1.0, 'used': 1.0, 'other': 1.0, 'she': 1.0, 'it': 2.0, 'pretty': 1.0, 'is': 1.0, 'carriers': 1.0, 'her': 2.0, 'seemed': 1.0, 'an': 1.0, 'put': 1.0, 'back': 1.0, 'and': 3.0, 'very': 1.0, 'secure': 1.0, 'item': 1.0, 'doesn': 1.0, 'was': 1.0, 'as': 1.0, 'to': 2.0, 'at': 1.0, 'some': 1.0, 'this': 2.0, 'functional': 1.0, 'purchased': 1.0, 'innovative': 1.0, 'law': 1.0, 'gift': 1.0, 'my': 2.0, 'daughter': 1.0, 'in': 3.0, 'both': 2.0, 'dil': 1.0, 'get': 1.0, 'easy': 1.0, 'the': 4.0, 'mother': 1.0, 's': 1.0, 'a': 1.0, 't': 1.0, 'of': 1.0, 'by': 1.0, 'says': 1.0, 'how': 1.0, 'baby': 2.0, 'request': 1.0, 'satisfied': 1.0, 'for': 1.0, 'fit': 1.0, 'idea': 1.0, 'hurt': 1.0, 'like': 1.0}
Word element => {'buy': 1.0, 'items': 1.0, 'get': 1.0, 'long': 1.0, 'best': 1.0, 'category': 1.0, 'need': 1.0, 'that': 1.0, 'will': 1.0, 'item': 1.0, 'you': 2.0, 'again': 1.0, 'are': 2.0, 'recently': 1.0, 'longer': 1.0, 'even': 1.0, 'use': 1.0, 'there': 1.0, 'birthday': 1.0, 'sons': 1.0, 'mine': 1.0, 'used': 1.0, 'just': 1.0, 'and': 2.0, 'perfect': 1.0, 'minute': 1.0, 'less': 1.0, 'throw': 1.0, 'is': 1.0, 'fall': 1.0, 'expecting': 1.0, 'was': 3.0, 'we': 1.0, 'discovered': 1.0, 'a': 4.0, 'going': 1.0, 'could': 3.0, 'until': 1.0, 'feel': 1.0, 'every': 1.0, 'to': 3.0, 'all': 1.0, 'they': 2.0, 'having': 1.0, 'than': 1.0, 'find': 1.0, 'my': 6.0, 'went': 1.0, 'baby': 3.0, 'about': 1.0, 'through': 1.0, 'once': 1.0, 'of': 3.0, 'child': 1.0, 'out': 1.0, 'i': 5.0, 'different': 1.0, 'lent': 1.0, 'carrier': 1.0, 'like': 1.0, 'which': 1.0, 'first': 3.0, 'beginning': 1.0, 'second': 1.0, 'crossed': 1.0, 'neighbor': 1.0, 'hang': 1.0, 'sucked': 1.0, 'one': 2.0, 'me': 2.0, 'these': 1.0, 'way': 1.0, 'always': 1.0, 'showed': 1.0, 'wrap': 1.0, 'the': 5.0, 'month': 1.0, 'it': 6.0, 'she': 1.0, 'moby': 1.0, 'how': 1.0, 'can': 1.0, 'but': 3.0, 'put': 1.0, 'on': 2.0, 'in': 3.0, 'be': 3.0, 'so': 1.0, 'after': 1.0, 'mind': 1.0, 'with': 2.0, 'frustrating': 2.0}
Word element => {'lots': 1.0, 'compliments': 1.0, 'get': 1.0, 'product': 1.0, 'much': 1.0, 'so': 1.0, 'for': 1.0, 'thank': 1.0, 'it': 1.0, 'is': 1.0, 'back': 1.0, 'i': 1.0, 'passengers': 1.0, 'a': 1.0, 'reliable': 1.0, 'and': 1.0, 'need': 1.0, 'of': 1.0, 'seat': 1.0, 'holder': 1.0, 'good': 1.0, 'beverage': 1.0, 'this': 2.0}
Word element => {'traveling': 1.0, 'when': 1.0, 'and': 1.0, 'don': 1.0, 'them': 1.0, 'seats': 1.0, 'sides': 1.0, 'van': 1.0, 'on': 1.0, 'of': 1.0, 't': 1.0, 'the': 3.0, 'tried': 1.0, 'well': 1.0, 'markers': 1.0, 'so': 1.0, 'we': 4.0, 'love': 1.0, 'this': 1.0, 'it': 1.0, 'work': 1.0, 'holders': 1.0, 'put': 1.0, 'drinks': 1.0, 'in': 1.0, 're': 1.0, 'cup': 1.0, 'pencils': 1.0}
Word element => {'is': 1.0, 'convenient': 1.0, 'everything': 1.0, 'makes': 1.0, 'which': 1.0, 'below': 1.0, 'trash': 1.0, 'bag': 1.0, 'knew': 1.0, 'she': 2.0, 'absolutely': 2.0, 'this': 2.0, 'with': 1.0, 'it': 1.0, 'wonderful': 1.0, 'can': 1.0, 'in': 2.0, 'daughter': 1.0, 'love': 1.0, 'for': 1.0, 'fell': 1.0, 'and': 1.0, 'like': 1.0, 'my': 1.0, 'more': 1.0, 'the': 2.0, 'exactly': 1.0, 'her': 1.0, 'what': 1.0, 'that': 1.0, 'was': 1.0, 'i': 1.0, 'fact': 1.0, 'put': 1.0}
Word element => {'sew': 1.0, 'especially': 1.0, 'an': 1.0, 'it': 1.0, 'grinder': 1.0, 'nothing': 1.0, 'almost': 1.0, 'shopping': 1.0, 'give': 1.0, 'not': 1.0, 'stores': 2.0, 'having': 2.0, 'find': 1.0, 'don': 1.0, 'seldom': 1.0, 'made': 1.0, 'home': 1.0, 'live': 1.0, 'excellent': 1.0, 'had': 1.0, 'often': 1.0, 'my': 2.0, 'shower': 2.0, 'giving': 1.0, 'and': 7.0, 'get': 2.0, '1': 1.0, 'for': 2.0, 'where': 1.0, 'love': 2.0, 'one': 1.0, 'these': 2.0, 'the': 3.0, 'blankets': 1.0, 'can': 1.0, '2': 1.0, 'is': 2.0, 'more': 1.0, 'blanket': 1.0, 'are': 1.0, 'gifts': 1.0, 'i': 10.0, 'crochet': 1.0, 'box': 1.0, 'babies': 1.0, 'have': 1.0, 'knit': 1.0, 'grinders': 1.0, 'item': 1.0, 'loved': 1.0, 'to': 2.0, 'as': 1.0, 'from': 2.0, 'shipping': 2.0, 't': 1.0, 'a': 3.0, 'go': 2.0, 'ordering': 1.0, 'use': 1.0, 'amazon': 1.0, 'when': 2.0, 'am': 1.0, 'short': 1.0, 'delivered': 1.0, 'now': 1.0, 'away': 1.0, 'free': 3.0, 'since': 1.0, 'total': 1.0, 'thrift': 1.0, 'or': 4.0, 'always': 1.0, 'm': 1.0, '34': 2.0, 'on': 1.0, 'bonus': 1.0, 'using': 1.0, 'hand': 1.0, 'in': 2.0, 'them': 4.0, 'baby': 2.0, 'gift': 2.0}
Word element => {'love': 1.0, 'll': 1.0, 'extra': 1.0, 'lid': 1.0, 'tightly': 1.0, 'on': 3.0, 'make': 2.0, 'if': 2.0, 'still': 2.0, 'two': 1.0, 'complicated': 1.0, 'nearly': 1.0, 'over': 2.0, 'out': 1.0, 'can': 1.0, 'prefers': 1.0, 'it': 7.0, 'though': 1.0, 'top': 2.0, 'regular': 1.0, 'dishwasher': 1.0, 'normal': 1.0, 'and': 5.0, 'we': 1.0, 'a': 4.0, 'sides': 1.0, 's': 4.0, 'ago': 1.0, 't': 1.0, 'loved': 1.0, 'real': 1.0, 'through': 1.0, 'favorite': 1.0, 'down': 2.0, 'by': 1.0, 'daughter': 1.0, 'year': 1.0, 'since': 1.0, 'one': 1.0, 'lot': 1.0, 'cup': 2.0, 'now': 2.0, 'worth': 1.0, 'you': 4.0, 'times': 2.0, 'has': 3.0, 'always': 1.0, 'took': 1.0, 'even': 1.0, 'her': 1.0, 'drink': 1.0, 'been': 2.0, 'totally': 1.0, 'this': 5.0, 'first': 1.0, 'with': 2.0, 'of': 3.0, 'the': 5.0, 'doesn': 1.0, 'pop': 1.0, 'safe': 1.0, 'off': 1.0, 'they': 1.0, 'key': 1.0, 'my': 1.0, 'looks': 1.0, 'me': 1.0, 'while': 1.0, 'is': 2.0, 'more': 1.0, 'to': 1.0, 'all': 1.0, 'sure': 2.0, 'sounds': 1.0, 'also': 1.0, 'than': 1.0, 'put': 1.0, 'do': 1.0, 'gone': 1.0, 'that': 2.0, 'problems': 1.0, 'nipple': 1.0, 'brand': 1.0, 'promise': 1.0, 'press': 1.0, 'no': 1.0, 'ours': 1.0, 'money': 1.0, 'bought': 1.0, 'dropped': 1.0, 'for': 1.0, 'unlike': 1.0, 'she': 3.0, 'many': 1.0, 'others': 1.0, 'firmly': 1.0, 'degrade': 1.0, 'literally': 1.0, 'hundreds': 1.0, 'time': 1.0, 'new': 1.0}
Word element => {'trash': 1.0, 'belonged': 1.0, 'finally': 1.0, 'children': 1.0, 'garbage': 1.0, 'in': 3.0, 'throw': 1.0, 'about': 1.0, 'wasn': 1.0, 'put': 1.0, 'on': 1.0, 'much': 1.0, 'every': 1.0, 'even': 1.0, 'money': 1.0, 'but': 2.0, 'stroller': 1.0, 'it': 6.0, 'this': 2.0, 'he': 3.0, 'was': 1.0, 'old': 1.0, 'i': 4.0, 'months': 1.0, 'threw': 1.0, '8': 1.0, 'like': 1.0, 'using': 1.0, 'where': 1.0, 'for': 1.0, 'everywhere': 1.0, 'cup': 2.0, 'my': 1.0, 'seemed': 1.0, 'son': 1.0, 'from': 1.0, 'started': 1.0, 'just': 1.0, 'because': 1.0, 'pop': 1.0, 'the': 6.0, 'floor': 1.0, 'top': 1.0, 'museum': 1.0, 'would': 2.0, 'off': 1.0, 'and': 1.0, 'contents': 1.0, 'half': 1.0, 'at': 1.0, 'spent': 1.0, 'to': 3.0, 'least': 1.0, 's': 1.0, 't': 1.0, 'go': 1.0, 'a': 4.0, 'dozen': 1.0, 'happened': 2.0, 'when': 1.0, 'times': 1.0, 'after': 2.0, 'time': 1.0, 'so': 1.0}
Word element => {'cute': 1.0, 'very': 1.0, 'all': 1.0, 'but': 1.0, 'animal': 1.0, 'an': 1.0, 'i': 1.0, 'it': 3.0, 'over': 1.0, 'do': 1.0, 'a': 1.0, 'maybe': 1.0, 'wish': 1.0, 'design': 1.0, 'had': 1.0, 'is': 1.0, 'on': 1.0, 'little': 1.0, 'more': 1.0}
Word element => {'buying': 1.0, 'do': 1.0, 'it': 3.0, 'bother': 1.0, 'my': 1.0, 'not': 1.0, 'scaring': 1.0, 'after': 2.0, 'kept': 1.0, '3': 1.0, 'use': 1.0, 'months': 1.0, 'baby': 1.0, 'broke': 1.0, 'every': 1.0, 'snapping': 1.0}
Word element => {'stool': 1.0, 'with': 2.0, 'they': 1.0, 'new': 1.0, 'uses': 1.0, 'in': 1.0, 'daughter': 1.0, 'my': 1.0, 'these': 1.0, 'the': 1.0, 'really': 1.0, 'leak': 1.0, 'grandson': 1.0, 'hold': 1.0, 'moisture': 1.0, 'sometimes': 1.0, 'our': 1.0, 'although': 1.0, 'loose': 1.0, 'out': 1.0, 'sides': 1.0, 'law': 1.0, 'well': 1.0, 'a': 1.0}
Word element => {'rotation': 1.0, 'in': 1.0, 'lulls': 1.0, 'too': 1.0, 'loud': 2.0, 'claim': 1.0, 'arm': 1.0, 'instructions': 1.0, 'on': 2.0, 'been': 1.0, 'into': 1.0, 'loves': 1.0, 'slide': 1.0, 'not': 2.0, 'do': 1.0, 'get': 1.0, 'better': 1.0, 'ornaments': 1.0, 'even': 1.0, 'i': 2.0, 'caught': 1.0, 'is': 2.0, 'bear': 1.0, 'am': 1.0, 'place': 1.0, 'the': 7.0, 'my': 2.0, 'little': 3.0, 'crib': 1.0, 'this': 1.0, 'normally': 1.0, 'it': 3.0, 'music': 1.0, 'anytime': 1.0, 'but': 2.0, 'bears': 1.0, 'bump': 1.0, 'having': 1.0, 'occasion': 1.0, 'will': 1.0, 'also': 1.0, 'seems': 1.0, 'reattach': 1.0, 'adorable': 1.0, 'at': 1.0, 'sleep': 1.0, 'as': 1.0, 'to': 2.0, 'least': 1.0, 'mobile': 2.0, 'one': 3.0, 'of': 2.0, 'quality': 1.0, 'baby': 1.0, 'them': 1.0, 'like': 1.0, 'a': 1.0, 'could': 1.0, 'have': 1.0}
Word element => {'that': 1.0, 'buy': 1.0, 'you': 1.0, 'plastic': 1.0, 'arm': 1.0, 'mechanical': 1.0, 'separately': 1.0, 'also': 1.0, 'sound': 1.0, 'has': 1.0, 'and': 1.0, 'of': 1.0, 'up': 1.0, 'screechy': 1.0, 'kinda': 1.0, 'cover': 1.0, 'to': 3.0, 'music': 1.0, 'musical': 1.0, 'a': 3.0, 'is': 1.0, 'the': 2.0, 'it': 1.0, 'instead': 1.0, 'one': 1.0, 'does': 1.0, 'huge': 1.0, 'not': 1.0, 'sleeve': 1.0, 'have': 2.0}
Word element => {'girl': 1.0, 'baby': 2.0, 'suitable': 1.0, 'priced': 1.0, 'reasonably': 1.0, 'simple': 1.0, 'cute': 1.0, 'for': 1.0, 'in': 1.0, 'design': 1.0, 'yet': 1.0, 'a': 1.0, 'honey': 1.0, 'or': 1.0, 'bear': 1.0, 'matches': 1.0, 'bedding': 1.0, 'boy': 1.0, 'set': 1.0, 'very': 1.0}
Word element => {'good': 1.0, 'would': 1.0, 'then': 1.0, 'so': 1.0, 'pieces': 1.0, 'white': 1.0, 'not': 1.0, 'just': 1.0, 'and': 1.0, 'expected': 1.0, 'mobile': 1.0, 'we': 1.0, 'wish': 1.0, 'different': 1.0, 'what': 1.0, 'amount': 1.0, 'haven': 1.0, 'was': 1.0, 'together': 1.0, 'are': 1.0, 'paid': 1.0, 'might': 1.0, 't': 1.0, 'the': 3.0, 'for': 3.0, 'yet': 1.0, 'were': 1.0, 'that': 1.0, 'cute': 1.0, 'found': 1.0, 'i': 2.0, 'it': 3.0, 'bears': 1.0, 'put': 1.0, 'but': 1.0, 'be': 2.0, 'flimsy': 2.0, 'item': 1.0, 'looking': 1.0, 'a': 1.0}
Word element => {'designed': 1.0, 'come': 1.0, 'hasn': 1.0, 'gift': 1.0, 'one': 1.0, 'received': 1.0, 'site': 1.0, 'anyone': 1.0, 'supermall': 1.0, 'called': 1.0, 'amazon': 1.0, 'no': 1.0, 'poorly': 1.0, 'embarrassment': 1.0, 'yourself': 1.0, 'save': 1.0, 'has': 1.0, 'girls': 1.0, 'baby': 2.0, 'new': 1.0, 'please': 1.0, 'their': 1.0, 'for': 2.0, 'looking': 1.0, 'target': 1.0, 'shelf': 1.0, 'beware': 1.0, 'eye': 1.0, 'even': 1.0, 'or': 3.0, 'side': 1.0, 'if': 2.0, 'short': 1.0, 'the': 8.0, 't': 1.0, 'a': 7.0, 'sorry': 1.0, 'courage': 1.0, 'had': 1.0, 'purchased': 1.0, 'thought': 1.0, 'of': 1.0, 'lil': 6.0, 'on': 4.0, 'with': 3.0, 'buyer': 1.0, 'this': 6.0, 'set': 1.0, 'taken': 1.0, 'who': 1.0, 'overly': 1.0, 'at': 2.0, 'out': 2.0, 'as': 1.0, 'to': 2.0, 'say': 1.0, 'is': 5.0, 'comes': 1.0, 'level': 1.0, 'in': 1.0, 'item': 1.0, 'seems': 1.0, 'and': 2.0, 'too': 1.0, 'shade': 3.0, 'above': 1.0, 'included': 1.0, 'priced': 1.0, 'bulb': 3.0, 'table': 1.0, 'which': 1.0, 'someone': 1.0, 'eco': 1.0, 'lamp': 7.0, 'standard': 1.0, 'installed': 1.0, 'room': 1.0, 'sticks': 1.0, 'correctly': 1.0, 'cause': 1.0, 'reviews': 1.0, 'lacks': 1.0, 'pass': 1.0, 'big': 1.0, 'so': 1.0, 'friends': 2.0, 'time': 1.0, 'craftsmanship': 1.0, 'practicality': 1.0, 'have': 1.0, 'into': 1.0, 'that': 1.0, 'been': 1.0}
Word element => {'bought': 1.0, 'ever': 1.0, 'item': 1.0, 'worst': 1.0, 'overnight': 1.0, 'let': 1.0, 'off': 1.0, 'proofing': 1.0, 'fallen': 1.0, 'had': 1.0, 'they': 3.0, 'old': 1.0, '16mo': 1.0, 'min': 1.0, '10': 1.0, 'is': 1.0, 'figure': 1.0, 'left': 1.0, 'son': 1.0, 'open': 1.0, 'others': 1.0, 'my': 1.0, 'the': 5.0, 'figured': 1.0, 'on': 1.0, 'of': 3.0, 'waste': 1.0, 'broke': 1.0, 'all': 1.0, 'any': 1.0, 'i': 2.0, 'two': 1.0, 'packs3': 1.0, 'who': 1.0, 'ordered': 1.0, 'out': 5.0, 'up': 1.0, 'child': 2.0, 'them': 1.0, 'package': 1.0, '8': 1.0, 'are': 1.0, 'go': 1.0, 'a': 2.0, 'simple': 1.0, 'pop': 1.0, 'adhesive': 1.0, 'and': 2.0, 'anyways': 1.0, 'money': 1.0, 'can': 1.0, 'minutes': 1.0, 'morning': 1.0, 'in': 2.0, 'turn': 1.0, 'into': 1.0, 'game': 1.0, 'cabinets': 1.0, 'came': 1.0, 'this': 1.0}
Word element => {'days': 1.0, 'a': 1.0, 'off': 1.0, 'they': 1.0, 'terrible': 1.0, 'is': 1.0, 'material': 1.0, 'first': 1.0, 'read': 1.0, 'should': 1.0, 'other': 1.0, 'every': 1.0, 'nearly': 1.0, 'old': 1.0, 'been': 1.0, 'would': 1.0, 'one': 1.0, 'matter': 1.0, 'and': 2.0, 'adhesive': 1.0, 'mechanism': 1.0, 'cute': 1.0, 'end': 1.0, 'my': 1.0, 'to': 1.0, 'look': 1.0, 'as': 1.0, 'year': 1.0, 'falling': 1.0, 'in': 2.0, 'adequate': 1.0, 'have': 2.0, 'the': 3.0, 'these': 1.0, 'keep': 1.0, 'up': 1.0, 'mentioned': 1.0, 'of': 2.0, 'them': 1.0, 'review': 1.0, 'out': 1.0, 'drawers': 1.0, 'however': 1.0}
Word element => {'cabinet': 1.0, 'to': 2.0, 'stuck': 1.0, 'where': 1.0, 'wasn': 1.0, 'it': 1.0, 'back': 1.0, 'but': 1.0, 'work': 1.0, 'sticky': 1.0, 'came': 2.0, 'of': 2.0, '12': 1.0, 'waste': 1.0, 'not': 1.0, 'total': 1.0, 'they': 2.0, 'a': 1.0, 'that': 1.0, 'were': 1.0, 'popping': 1.0, 'almost': 1.0, 'off': 2.0, '20': 1.0, 'within': 1.0, 'hours': 1.0, 't': 1.0, 'these': 1.0, 'the': 4.0, 'material': 1.0, 'is': 1.0, 'clip': 1.0, 'awful': 1.0, 'and': 1.0, 'even': 1.0, 'used': 1.0, 'does': 1.0}
Word element => {'big': 1.0, 'and': 1.0, 'proof': 1.0, 'to': 1.0, 'write': 1.0, 'have': 1.0, 'i': 2.0, 'it': 1.0, 'of': 2.0, 'waste': 2.0, '3': 1.0, 'for': 1.0, 'review': 1.0, 'since': 1.0, 'a': 2.0, 'but': 1.0, 'will': 1.0, 'money': 2.0, 'baby': 1.0, 'also': 1.0, 'say': 1.0, 'words': 2.0, '20': 1.0, 'definitely': 1.0, 'is': 1.0, 'not': 1.0}
Word element => {'worth': 1.0, 'phone': 1.0, 'fabric': 1.0, 'everything': 1.0, 'else': 1.0, 'all': 1.0, 'to': 1.0, 'that': 1.0, 'in': 1.0, 'holes': 1.0, 'bottom': 2.0, 'does': 1.0, 'because': 1.0, 'not': 3.0, 'definitely': 1.0, 'items': 1.0, 'see': 1.0, 'toys': 1.0, 'bag': 1.0, 'connect': 1.0, 'diaper': 1.0, 'insert': 1.0, 'really': 1.0, 'a': 2.0, 's': 1.0, 'keys': 1.0, 'of': 1.0, 'rather': 1.0, 'it': 1.0, 'useless': 1.0, 'get': 1.0, 'separates': 1.0, 'lost': 2.0, 'towards': 1.0, 'move': 1.0, 'around': 1.0, 'staying': 1.0, 'pockets': 1.0, 'etc': 1.0, 'i': 1.0, 'food': 1.0, 'but': 1.0, 'can': 1.0, 'and': 1.0, 'tall': 1.0, 'things': 1.0, 'like': 1.0, 'so': 1.0, 'bottle': 1.0, 'the': 7.0, 'place': 1.0, 'gets': 1.0}
Word element => {'separated': 1.0, 'large': 1.0, 'have': 1.0, 'keep': 1.0, 'if': 1.0, 'is': 1.0, 'someone': 1.0, 'way': 1.0, 'attach': 1.0, 'waste': 1.0, 'would': 1.0, 'organizer': 1.0, 'benefit': 1.0, 'at': 1.0, 'not': 1.0, 'to': 1.0, 'was': 1.0, 'bag': 1.0, 'in': 2.0, 'a': 1.0, 'do': 1.0, 'the': 5.0, 'winds': 1.0, 'dividers': 1.0, 'my': 1.0, 'items': 1.0, 'so': 1.0, 'everything': 1.0, 'they': 1.0, 'eventually': 1.0, 'of': 2.0, 'bottom': 2.0, 'up': 1.0, 'only': 2.0, 'this': 1.0, 'it': 2.0, 'money': 1.0}
Word element => {'behind': 1.0, 'leaving': 1.0, 'everything': 1.0, 'also': 1.0, 'husband': 1.0, 'and': 1.0, 'cloths': 1.0, 'extra': 1.0, 'side': 1.0, 'room': 1.0, 'have': 1.0, 'it': 1.0, 'looked': 1.0, 'now': 1.0, 'mail': 1.0, 'in': 2.0, 'can': 1.0, 'but': 1.0, 'find': 1.0, 'than': 1.0, 'bigger': 1.0, 'was': 2.0, 'what': 1.0, 'had': 1.0, 'i': 4.0, 'compartments': 1.0, 'might': 1.0, 'a': 3.0, 'my': 2.0, 'without': 1.0, 'the': 4.0, 'diaper': 1.0, 'concerned': 1.0, 'bit': 2.0, 'diapers': 1.0, 'got': 1.0, 'this': 1.0, 'perfect': 1.0, 'jeep': 1.0, 'for': 1.0, 'snacks': 1.0, 'brand': 1.0, 'are': 1.0, 'pictured': 1.0, 'just': 1.0, 'stand': 1.0, 'right': 1.0, 'disaster': 1.0, 'size': 1.0, 'up': 1.0, 'plus': 1.0, 'to': 2.0, 'any': 1.0, 'medications': 1.0, 'bag': 2.0, 'toys': 1.0, 'wipes': 1.0, 'anything': 1.0, 'when': 1.0, 'you': 1.0, 'on': 1.0, 'put': 2.0, 'your': 1.0, 'still': 1.0}
Word element => {'prepared': 1.0, 'always': 1.0, 'so': 1.0, 'everything': 1.0, 'and': 1.0, 'am': 2.0, 'diaper': 1.0, 'the': 1.0, 'in': 2.0, 'also': 1.0, 'diapers': 1.0, 'but': 1.0, 'easier': 1.0, 'to': 2.0, 'product': 1.0, 'be': 1.0, 'months': 1.0, '5': 2.0, 'quickly': 1.0, 'things': 2.0, 'is': 2.0, 'this': 1.0, 'with': 2.0, 'ago': 1.0, 'my': 2.0, '3': 1.0, 'bag': 1.0, 'youngest': 1.0, 'her': 1.0, 'kids': 1.0, 'able': 1.0, 'pack': 2.0, 'have': 2.0, 'old': 2.0, 'i': 5.0, 'for': 1.0, 'organize': 1.0, 'year': 2.0, 'need': 1.0, 'which': 1.0, 'a': 1.0, '7': 2.0, 'would': 1.0}
Word element => {'for': 1.0, 'clean': 1.0, 'day': 1.0, 'easy': 1.0, 'is': 1.0, 'picnic': 1.0, 'up': 1.0, 'and': 3.0, 'another': 1.0, 'park': 1.0, 'granddaughter': 1.0, 'it': 1.0, 'love': 1.0, 'fold': 1.0, 'take': 1.0, 'my': 1.0, 'the': 2.0, 'i': 1.0, 'to': 3.0, 'play': 1.0, 'wipe': 1.0, 'so': 1.0, 'mat': 1.0}
Word element => {'protects': 1.0, 'in': 1.0, 'permanent': 1.0, 'semi': 1.0, 'and': 1.0, 'likely': 1.0, 'but': 1.0, 'easy': 1.0, 'baby': 1.0, 'application': 1.0, 'tv': 1.0, 'the': 4.0, 'is': 1.0, 'head': 1.0, 'to': 1.0, 'corners': 1.0, 'stand': 1.0, 'of': 2.0, 'fall': 1.0, 'case': 1.0, 's': 1.0, 'media': 1.0, 'glass': 2.0}
Word element => {'corners': 1.0, 'and': 1.0, 'soft': 1.0, 'is': 1.0, 'helpful': 1.0, 'adhesives': 1.0, 'careful': 1.0, 'the': 3.0, 'these': 1.0, 'be': 1.0, 'to': 1.0, 'off': 1.0, 'adhesive': 1.0, 'it': 1.0, 'with': 1.0, 'because': 1.0, 'just': 1.0, 'remove': 1.0, 'peel': 1.0, 'paint': 1.0, 'will': 1.0, 'work': 1.0, 'rubber': 1.0, 'would': 1.0, 'furniture': 1.0, 'solvent': 1.0, 'i': 1.0, 'recommend': 1.0, 'for': 1.0, 'using': 1.0, 'well': 1.0, 'a': 1.0}
Word element => {'home': 1.0, 'at': 1.0, 'tried': 1.0, 'already': 1.0, 've': 1.0, 'still': 1.0, 'be': 1.0, 'to': 1.0, 'models': 1.0, 'it': 5.0, 'can': 1.0, 'kid': 1.0, 'we': 1.0, 'other': 1.0, 'pull': 1.0, 'my': 1.0, 'the': 1.0, 'should': 1.0, 'as': 1.0, 'attached': 1.0, 'stays': 1.0, 'out': 1.0, 'than': 1.0, 'all': 1.0, 'way': 1.0, 's': 1.0, 'easier': 1.0, 'but': 1.0, 'put': 1.0, 'back': 1.0}
Word element => {'better': 1.0, 'my': 1.0, 'safe': 1.0, 'but': 1.0, 'be': 1.0, 'material': 1.0, 'protect': 1.0, 'enough': 1.0, 'feels': 1.0, 'to': 1.0, 'injuries': 1.0, 'it': 1.0, 'i': 1.0, 'child': 1.0, 's': 1.0, 'well': 1.0, 'from': 1.0, 'sticks': 1.0, 'sticker': 1.0, 'the': 2.0, 'tapes': 1.0, 'head': 1.0, 'like': 1.0, 'could': 1.0}
Word element => {'my': 1.0, 'update': 1.0, 'review': 1.0, 'out': 1.0, 'we': 1.0, 'to': 1.0, 'don': 2.0, 'i': 4.0, 'when': 1.0, 'going': 1.0, 'where': 1.0, 'double': 1.0, 'tape': 2.0, 'know': 2.0, 'and': 2.0, 'if': 3.0, 'how': 1.0, 't': 2.0, 'the': 3.0, 'figure': 1.0, 'is': 4.0, 'second': 1.0, 'side': 1.0, 'nice': 1.0, 'will': 1.0, 'work': 1.0, 'sided': 1.0, 'cushiony': 1.0, 'foam': 2.0, 'could': 1.0, 'use': 1.0, 'with': 1.0, 'this': 2.0, 'only': 1.0, 'it': 2.0}
Word element => {'affect': 1.0, 'that': 1.0, 'goodness': 1.0, 'thank': 1.0, 'them': 1.0, 'across': 1.0, 'as': 1.0, 'corner': 1.0, 'usefulness': 1.0, 'like': 1.0, 'foam': 1.0, 'of': 2.0, 'pieces': 1.0, 'anyone': 1.0, 'idea': 1.0, 'this': 1.0, 'with': 2.0, 'razor': 1.0, 't': 1.0, 'the': 3.0, 'a': 3.0, 'few': 1.0, 'tell': 1.0, 'you': 1.0, 'cut': 1.0, 'came': 1.0, 'doesn': 1.0, 'guards': 1.0, 'toddler': 1.0, 'will': 1.0, 'but': 1.0, 'i': 1.0, 'blade': 1.0}
Word element => {'last': 1.0, 'mos': 1.0, 'only': 1.0, 'them': 1.0, 'days': 1.0, 'use': 1.0, 'didn': 2.0, '10': 1.0, 'long': 2.0, 'we': 1.0, 'couple': 1.0, 'my': 1.0, 't': 2.0, 'the': 1.0, 'old': 1.0, 'a': 1.0, 'pulled': 1.0, 'for': 2.0, 'one': 1.0, 'off': 1.0, 'after': 1.0, '34': 2.0, 'very': 2.0, 'stick': 1.0}
Word element => {'then': 1.0, 'i': 2.0, 'else': 1.0, 'smaller': 1.0, 'so': 1.0, 'everyone': 1.0, 'to': 1.0, 'easily': 1.0, 'tape': 1.0, 'same': 1.0, '1st': 2.0, 'use': 1.0, 'guards': 1.0, 'toddler': 1.0, 'plastic': 1.0, 'the': 3.0, 'these': 3.0, 'are': 5.0, 'they': 2.0, 'a': 3.0, '3m': 1.0, 'like': 1.0, 'version': 1.0, 'which': 1.0, 'perfectly': 1.0, 'and': 1.0, 'safety': 2.0, 'bag': 1.0, 'simple': 1.0, 'fine': 1.0, 'but': 3.0, 'can': 1.0, 'identical': 1.0, 'come': 2.0, 'in': 1.0, 'also': 1.0, 'have': 2.0, 'brand': 1.0, 'of': 1.0, 'used': 1.0, 'bought': 1.0, 'huge': 1.0, 'style': 1.0, 'not': 1.0, 'corner': 1.0, 'name': 1.0, 'pull': 1.0, 'off': 2.0, 'easy': 1.0}
Word element => {'may': 1.0, 'purchase': 1.0, 'for': 1.0, 'cause': 1.0, 'double': 1.0, 'better': 1.0, 'find': 1.0, 'hold': 1.0, 'ripped': 1.0, 'with': 3.0, 'try': 1.0, 'only': 1.0, 'these': 2.0, 'them': 2.0, 'don': 1.0, 'sticky': 1.0, 'that': 1.0, 'but': 2.0, 'have': 2.0, 'grabby': 1.0, 'toddler': 2.0, 'week': 1.0, 'you': 2.0, 'nice': 1.0, 'and': 2.0, 'are': 2.0, 'useful': 1.0, 'in': 2.0, 'good': 1.0, 'if': 2.0, 'be': 1.0, 'within': 1.0, 'tape': 2.0, 'is': 1.0, 'sided': 1.0, 'realistically': 1.0, 'just': 1.0, 'corners': 1.0, 'isn': 1.0, 'off': 1.0, 'enough': 1.0, 'any': 1.0, 'our': 1.0, 'to': 2.0, 'the': 2.0, 'place': 1.0, 'lost': 1.0, 'this': 1.0, 'theory': 1.0, 'provided': 1.0, 'kids': 1.0, 't': 2.0, 'a': 4.0, 'we': 1.0, 'going': 1.0, 'tendencies': 1.0, 'of': 1.0, 'natural': 1.0, 'amount': 1.0, 'curiosity': 1.0}
Word element => {'be': 1.0, 'that': 1.0, 'adhesive': 1.0, 'another': 1.0, 'get': 2.0, 'to': 2.0, 'immediately': 1.0, 'tape': 1.0, 'pulled': 1.0, 'will': 1.0, 'doesn': 1.0, 'but': 1.0, 'sided': 1.0, 'guard': 1.0, 'double': 1.0, 'have': 1.0, 'itself': 1.0, 'table': 1.0, 'is': 1.0, 'on': 1.0, 'my': 1.0, 'the': 2.0, 't': 1.0, 'hold': 1.0, 'it': 2.0, '9': 1.0, 'month': 1.0, 'i': 1.0, 'old': 1.0, 'good': 1.0, 'off': 2.0, 'harder': 1.0, 'so': 1.0}
Word element => {'off': 1.0, 'are': 1.0, 'other': 1.0, 'makes': 1.0, 'by': 2.0, 'toddler': 1.0, 'but': 1.0, 'deal': 1.0, 'pulled': 1.0, 'well': 1.0, 'a': 2.0, 'not': 1.0, 'padding': 1.0, 'to': 1.0, 'easily': 1.0, 'like': 1.0, 'corners': 1.0, 'old': 1.0, 'furniture': 1.0, 'as': 1.0, 'stick': 1.0, 'big': 1.0, 'year': 1.0, 'don': 1.0, 'firm': 1.0, 'our': 2.0, 'difference': 1.0, 'edges': 1.0, 'and': 3.0, 'for': 1.0, 'btw': 1.0, 'may': 1.0, 't': 1.0, 'tapes': 1.0, 'the': 1.0, '2': 1.0, 'protect': 1.0, 'adhesive': 3.0, 'seem': 1.0, 'plenty': 1.0, 'of': 1.0, 'tape': 1.0, 'nice': 1.0, '3m': 2.0, 'with': 1.0, 'it': 1.0}
Word element => {'other': 1.0, 'than': 1.0, 'works': 1.0, 'use': 1.0, 'you': 2.0, 'if': 1.0, 'about': 1.0, 'complaining': 1.0, 'are': 1.0, 'others': 1.0, 'by': 1.0, 'm': 1.0, 'held': 1.0, 'intend': 1.0, 'this': 3.0, 'far': 1.0, 'so': 2.0, 'pulls': 1.0, 'up': 1.0, 'of': 1.0, 'and': 3.0, 'area': 1.0, 'sure': 1.0, 'get': 1.0, 'tv': 1.0, 'i': 3.0, 'old': 1.0, 'one': 1.0, 'bought': 1.0, 'abuse': 1.0, 'glass': 1.0, 'better': 1.0, 'true': 1.0, 'any': 1.0, 'to': 5.0, 'my': 2.0, 'well': 1.0, 'has': 2.0, 'stand': 1.0, 'not': 1.0, 'around': 1.0, 'edges': 1.0, 'year': 1.0, 'it': 4.0, 'she': 1.0, 'on': 1.0, 'constantly': 1.0, 'at': 1.0, 'tape': 2.0, 'attempts': 1.0, 'bite': 1.0, 'before': 1.0, 'clean': 1.0, 'her': 1.0, 'what': 1.0, 'can': 1.0, 'guard': 1.0, 'in': 1.0, 'wrap': 1.0, 'the': 4.0, 'place': 1.0, 'uses': 1.0, 'stayed': 1.0, '3m': 1.0}
Word element => {'his': 1.0, 'cracking': 1.0, 'enough': 1.0, 'open': 1.0, 'child': 1.0, 'thick': 1.0, 'from': 1.0, 'definitely': 1.0, 'great': 1.0, 'foam': 1.0, 'bumpers': 1.0, 'that': 1.0, 'my': 1.0, 'are': 1.0, 'keep': 1.0, 'attach': 1.0, 'table': 1.0, 'securely': 1.0, 'head': 1.0, 'to': 2.0, 'permanently': 1.0, 'these': 1.0}
Word element => {'a': 1.0, 'toddlers': 1.0, 'active': 1.0, 'you': 1.0, 'if': 1.0, 'tape': 1.0, 'of': 2.0, 'good': 1.0, 'has': 1.0, 'is': 2.0, 'adhesive': 1.0, 'the': 1.0, 'prevent': 1.0, 'falls': 1.0, 'must': 1.0, 'very': 1.0, 'used': 1.0, 'it': 1.0, 'this': 2.0, 'quality': 1.0, 'but': 1.0, 'in': 1.0, 'lacking': 1.0, 'over': 1.0, 'quantity': 1.0, 'couple': 1.0, 'most': 1.0, 'already': 1.0, 'have': 3.0, 'bad': 1.0}
Word element => {'exactly': 1.0, 'and': 1.0, 'reach': 1.0, 'can': 1.0, 'in': 2.0, 'so': 1.0, 'bag': 1.0, 'of': 1.0, 'desperate': 1.0, 'organization': 1.0, 'diaper': 1.0, 't': 1.0, 'have': 1.0, 'our': 1.0, 'it': 1.0, 'hard': 1.0, 'find': 1.0, 'need': 2.0, 'anything': 1.0, 'grab': 1.0, 'look': 1.0, 'was': 2.0, 'to': 2.0, 'now': 1.0, 'but': 1.0, 'what': 1.0, 'even': 1.0, 'i': 3.0, 'don': 1.0}
Word element => {'wipes': 1.0, 'wet': 1.0, 'wrapped': 1.0, 'individually': 1.0, 'liners': 1.0, 'side': 1.0, 'burp': 1.0, 'tylenol': 1.0, 'children': 1.0, 'dropper': 1.0, 'medicine': 1.0, 'aspirator': 1.0, 'nasal': 1.0, 'hair': 1.0, 'spray': 1.0, 'hold': 1.0, 'body': 1.0, 'animal': 1.0, 'stuffed': 1.0, 'butt': 1.0, 'aids': 1.0, '3': 2.0, 'size': 2.0, '6': 3.0, 'receiving': 1.0, 'pad': 1.0, 'cover': 1.0, 'gel': 1.0, 'the': 4.0, '2': 1.0, 'changing': 1.0, 'that': 1.0, 'am': 1.0, 'diapers': 1.0, 'pockets': 2.0, 'panty': 1.0, '4': 1.0, 'i': 3.0, 'and': 2.0, 'so': 1.0, 'organized': 1.0, 'ease': 1.0, 'great': 1.0, '1': 1.0, 'not': 1.0, 'did': 1.0, 'deep': 1.0, 'with': 1.0, 'band': 1.0, 'it': 2.0, 'toys': 1.0, 'bag': 2.0, 'pads': 1.0, 'paci': 1.0, 'all': 1.0, 'to': 1.0, 'full': 1.0, 'this': 2.0, 'found': 1.0, 'gas': 1.0, 's': 2.0, 'a': 2.0, '10': 2.0, 'drops': 1.0, 'want': 1.0, 'outer': 1.0, 'nursing': 2.0, 'thankful': 1.0, 'cloth': 1.0, 'carry': 2.0, 'cream': 1.0, 'my': 1.0, 'lot': 1.0, 'sons': 1.0, 'essensials': 1.0, 'of': 3.0, 'set': 1.0, 'love': 1.0, 'product': 1.0, 'lotion': 1.0, 'in': 1.0, 'each': 1.0, 'blanket': 1.0, 'are': 1.0, 'pairs': 1.0, 'insert': 1.0, 'diaper': 2.0, 'socks': 1.0, 'pocket': 1.0, 'is': 1.0, 'holds': 2.0, 'baby': 1.0, 'quality': 1.0, 'clothes': 1.0, 'jacket': 1.0}
Word element => {'saver': 1.0, 'bag': 1.0, 'large': 1.0, 'life': 1.0, 'of': 1.0, 'my': 1.0, 'the': 2.0, 'diaper': 1.0, 'most': 1.0, 'amazing': 1.0, 'what': 1.0, 'to': 1.0, 'thing': 1.0, 'inside': 1.0, 'just': 1.0, 'i': 1.0, 'ever': 1.0, 'needed': 1.0, 'organize': 1.0}
Word element => {'so': 1.0, 'own': 1.0, 'any': 1.0, 'up': 1.0, 'bag': 3.0, 'convert': 1.0, 'organizer': 1.0, 'in': 2.0, 'perfect': 1.0, 'stands': 1.0, 't': 1.0, 'diaper': 1.0, 'the': 2.0, 'made': 1.0, 'is': 2.0, 'collapse': 1.0, 'on': 1.0, 'doesn': 1.0, 'put': 1.0, 'this': 1.0, 'it': 3.0, 'a': 2.0, 'from': 1.0, 'thick': 1.0, 'material': 1.0, 'that': 1.0, 'to': 3.0, 'its': 1.0}
Word element => {'friend': 1.0, 'would': 1.0, 'as': 1.0, 'very': 1.0, 'helperful': 1.0, 'i': 1.0, 'it': 1.0, 'use': 1.0, 'for': 1.0, 'diaper': 1.0, 'in': 1.0, 'a': 3.0, 'buy': 1.0, 'ordersized': 1.0, 'item': 1.0, 'longchamp': 1.0, 'bag': 2.0}
Word element => {'needs': 1.0, 'my': 2.0, 'babies': 1.0, 'all': 1.0, 'stylishly': 1.0, 'didn': 1.0, 'because': 1.0, 'momma': 1.0, 'chic': 1.0, 'are': 1.0, 'bag': 2.0, 'any': 1.0, 'practically': 1.0, 'now': 1.0, 'to': 2.0, 'fit': 1.0, 'enough': 1.0, 'large': 1.0, 'this': 2.0, 'it': 2.0, 'love': 1.0, 'can': 2.0, 'cheesy': 1.0, 'organizer': 1.0, 'a': 2.0, 'diaper': 1.0, 'the': 1.0, 't': 1.0, 'great': 1.0, 'such': 1.0, 'want': 1.0, 'regular': 1.0, 'is': 2.0, 'carry': 1.0, 'hobo': 1.0, 'most': 1.0, 'and': 2.0, 'travel': 1.0, 'ordered': 1.0, 'bags': 1.0, 'buy': 1.0, 'i': 4.0, 'how': 1.0, 'you': 2.0, 'put': 1.0, 'into': 1.0}
Word element => {'suppose': 1.0, 'gets': 1.0, 'it': 1.0, 'but': 1.0, 'great': 1.0, 'buying': 1.0, 'as': 1.0, 'to': 1.0, 'purpose': 1.0, 'of': 2.0, 'instead': 1.0, 'use': 1.0, 'so': 1.0, 'handbags': 1.0, 'done': 1.0, 'wanted': 1.0, 'bag': 2.0, 'amount': 1.0, 'had': 1.0, 'what': 1.0, 'this': 2.0, 'only': 1.0, 'job': 1.0, 'the': 3.0, 'a': 3.0, 't': 2.0, 'diaper': 1.0, 'insert': 2.0, 'hefty': 1.0, 'didn': 1.0, 'give': 1.0, 'i': 6.0, 'several': 1.0, 'separate': 1.0, 'babies': 1.0, 'large': 1.0, 'on': 1.0, 'make': 1.0, 'love': 2.0, 'stars': 1.0, 'fit': 1.0, 'tote': 1.0, 'perfectly': 1.0, 'and': 1.0, 'different': 1.0, 'before': 1.0, '5': 1.0, 'each': 1.0, 'spent': 1.0, 'compartments': 1.0, 'serves': 1.0, 'having': 1.0, 'sized': 1.0, 'because': 1.0, 'material': 2.0, 'wasn': 1.0}
Word element => {'toting': 1.0, 'during': 1.0, 'wants': 1.0, 'who': 1.0, 'recommend': 1.0, 'out': 1.0, 'handbag': 1.0, 'easily': 1.0, 'can': 1.0, 'side': 1.0, 'pad': 1.0, 'wallet': 1.0, 'they': 1.0, 'don': 1.0, 'baby': 1.0, 'clothes': 1.0, 'them': 1.0, 'changing': 1.0, 'that': 1.0, 'perfectly': 1.0, 'anyone': 1.0, 'be': 1.0, 'fits': 1.0, 'my': 3.0, 'mama': 1.0, 'this': 2.0, 'it': 3.0, 'for': 3.0, 'brilliant': 1.0, 'how': 1.0, 'live': 1.0, 'along': 1.0, 'did': 1.0, 'have': 1.0, 'without': 1.0, 'the': 2.0, 'alerted': 1.0, 'diaper': 1.0, 'i': 4.0, 'time': 1.0, 'friends': 1.0, 'so': 1.0, 'slide': 1.0, 'stick': 1.0, 'wearing': 1.0, 'immediately': 1.0, 'long': 1.0, 'pinged': 1.0, 'all': 1.0, 'to': 2.0, 'and': 4.0, 'longchamp': 1.0, 'diversity': 1.0, 'same': 1.0, 'toys': 1.0, 'bag': 1.0, 'every': 1.0, 'extra': 1.0, 'day': 1.0, 'is': 1.0, 't': 1.0, 'a': 2.0, 'with': 1.0, 'invention': 1.0, 'in': 2.0, 'doomed': 1.0, 'nice': 1.0, 'pockets': 1.0, 'diapers': 1.0, 'wipes': 1.0}
Word element => {'my': 1.0, 'longchamp': 1.0, 'fit': 1.0, 'me': 1.0, 'in': 1.0, 'for': 1.0, 'not': 1.0, 'smell': 1.0, 'a': 1.0, 'bad': 1.0, 'i': 2.0, 'perfectly': 1.0, 'it': 2.0, 'love': 1.0, 'that': 1.0, 'dont': 1.0, 'and': 1.0, 'know': 1.0, 'why': 1.0, 'say': 1.0, 'has': 1.0, 'some': 1.0, 'people': 1.0}
Word element => {'hoo': 1.0, 'bag': 1.0, 'a': 1.0, 'to': 1.0, 'want': 1.0, 'that': 1.0, 'purses': 1.0, 'stores': 1.0, 'believe': 1.0, 'don': 1.0, 'baby': 1.0, 'sell': 1.0, 'can': 1.0, 'i': 1.0, 'into': 1.0, 'or': 1.0, 'diaper': 1.0, 't': 2.0, 'the': 1.0, 'glad': 1.0, 'woo': 1.0, 'could': 1.0, 'online': 1.0, 'for': 1.0, 'this': 2.0, 'it': 2.0, 'only': 1.0, 'bags': 1.0, 'chose': 1.0, 'get': 1.0, 'you': 1.0, 's': 1.0, 'turn': 1.0, 'large': 1.0, 'perfect': 1.0}
Word element => {'frustrating': 1.0, 'how': 1.0, 'black': 1.0, 'received': 1.0, 'i': 2.0, 'ordered': 1.0, 'insert': 2.0, 'combo': 1.0, 'a': 3.0, 'exact': 1.0, 'khaki': 1.0, 'with': 1.0, 'without': 1.0, 'changing': 2.0, 'this': 1.0, 'pad': 2.0}
Word element => {'mom': 1.0, 'organized': 1.0, 'highly': 1.0, 'of': 1.0, 'bag': 1.0, 'item': 1.0, 'my': 1.0, 'find': 1.0, 'a': 1.0, 'for': 1.0, 'love': 1.0, 'this': 2.0, 'it': 1.0, 'the': 1.0, 'mess': 1.0, 'diaper': 1.0, 'great': 1.0, 'i': 1.0, 'is': 2.0, 'much': 1.0, 'was': 1.0, 'now': 1.0, 'to': 1.0, 'easier': 1.0, 'materials': 1.0, 'so': 1.0, 'everything': 1.0}
Word element => {'else': 1.0, 'how': 1.0, 'out': 1.0, 'and': 4.0, 'unstopables': 1.0, 'make': 1.0, 'washed': 1.0, 'let': 1.0, 'smells': 2.0, 'because': 1.0, 'really': 1.0, 'is': 1.0, 'same': 1.0, 'insert': 1.0, 'with': 1.0, 'this': 1.0, 'useful': 1.0, 'go': 1.0, 'a': 2.0, 't': 2.0, 'the': 2.0, 'i': 3.0, 'cloth': 1.0, 'can': 1.0, 'but': 1.0, 'diapers': 1.0, 'horrible': 1.0, 'use': 1.0, 'for': 1.0, 'don': 1.0, 'up': 1.0, 'downy': 1.0, 'over': 1.0, 'it': 6.0, 'month': 1.0, 'cover': 1.0, 'still': 1.0, 'know': 1.0, 'like': 1.0, 'chemicals': 1.0, 'stuck': 1.0, 'air': 1.0, 'in': 1.0, 'my': 1.0, 'nursing': 2.0, 'have': 1.0, 'to': 1.0, 'pads': 1.0, 'burp': 1.0, 'away': 1.0, 'now': 1.0, 'they': 1.0, 'smell': 2.0}
Word element => {'bucks': 1.0, 'about': 1.0, 'no': 1.0, 'the': 1.0, 'if': 1.0, 'held': 1.0, 'worth': 1.0, 'old': 1.0, 'device': 1.0, 'i': 2.0, 'sure': 1.0, 'was': 1.0, 'would': 1.0, 'work': 1.0, 'but': 2.0, '7': 1.0, 'price': 1.0, 'm': 1.0, 'walking': 1.0, 'for': 1.0, 'then': 1.0, 'aid': 1.0, 'sturdy': 1.0, 'granddaughter': 1.0, 'try': 1.0, 'some': 1.0, 'expect': 1.0, '12': 1.0, 'grandma': 1.0, 'what': 1.0, 'thought': 1.0, 'babies': 1.0, 'that': 2.0, 'understand': 1.0, 'my': 1.0, 'bouncer': 1.0, 'jumper': 1.0, 'and': 3.0, 'didn': 1.0, 'immediately': 1.0, 'quite': 1.0, 'is': 3.0, 'did': 1.0, 'higher': 1.0, 'month': 1.0, 'it': 2.0, 'she': 1.0, 'a': 4.0, 't': 1.0, 's': 1.0, 'baby': 1.0, 'other': 1.0, 'than': 2.0, 'this': 2.0, 'soft': 1.0}
Word element => {'outlets': 1.0, 'play': 1.0, 'child': 1.0, 'my': 1.0, 'surface': 1.0, 'on': 1.0, 'idea': 1.0, 'would': 1.0, 'the': 2.0, 'a': 1.0, 'like': 1.0, 'good': 1.0, 'seems': 1.0, 'avoid': 1.0, 'i': 1.0, 'as': 1.0, 'decided': 1.0, 'while': 1.0, 'to': 2.0, 'product': 1.0, 'with': 1.0, 'it': 3.0, 'this': 1.0, 'because': 1.0, 'looks': 1.0, 'electrical': 1.0, 'though': 1.0, 'actually': 1.0, 'encourage': 1.0}
Word element => {'rooms': 1.0, 'himself': 1.0, 'the': 4.0, 'these': 1.0, 'if': 1.0, 'it': 2.0, 'closing': 1.0, 'sure': 1.0, 'was': 3.0, 'had': 1.0, 'horrible': 1.0, 'and': 1.0, 'smell': 1.0, 'china': 1.0, 'prevented': 1.0, 'we': 2.0, 'a': 1.0, 'them': 3.0, 'out': 1.0, 'shipped': 2.0, 'little': 1.0, 'from': 3.0, 'when': 1.0, 'material': 1.0, 'not': 1.0, 'just': 1.0, 'got': 1.0, 'they': 2.0, 'factory': 1.0, 'or': 1.0, 'let': 1.0, 'son': 1.0, 'awhile': 1.0, 'strong': 1.0, 'on': 1.0, 'over': 1.0, 'back': 1.0, 'patio': 1.0, 'that': 1.0, 'to': 1.0, 'doors': 1.0, 'our': 1.0, 'in': 1.0, 'air': 1.0, 'itself': 1.0, 'fine': 1.0, 'shapes': 1.0, 'cute': 1.0, 'actually': 1.0, 'product': 1.0, 'for': 1.0, 'fit': 1.0}
Word element => {'toys': 1.0, 'other': 1.0, 'her': 1.0, 'use': 1.0, 'does': 1.0, 'chew': 1.0, 'easy': 1.0, 'mention': 1.0, 'she': 1.0, 'house': 1.0, 'toddler': 1.0, 'in': 1.0, 'door': 2.0, 'is': 1.0, 'these': 3.0, 'hanging': 1.0, 'the': 3.0, 'constanly': 1.0, 'have': 1.0, 'funky': 1.0, 'are': 3.0, 'there': 1.0, 'you': 1.0, 'a': 1.0, 'very': 2.0, 'cute': 1.0, 'if': 1.0, 'as': 2.0, 'to': 2.0, 'look': 1.0, 'was': 1.0, 'stoppers': 1.0, 'concern': 1.0, 'loose': 1.0, '34': 2.0, 'todler': 1.0, 'my': 2.0, 'only': 1.0, 'that': 1.0, 'no': 1.0, 'whether': 1.0, 'on': 2.0, 'toxic': 1.0, 'usefull': 1.0, 'or': 1.0, 'not': 1.0, 'and': 3.0, 'finds': 1.0, 'them': 2.0, 'foam': 1.0, 'tries': 1.0}
Word element => {'right': 1.0, 'doors': 1.0, 'needs': 1.0, 'who': 1.0, 'privacy': 1.0, 'think': 1.0, 'things': 1.0, 'day': 1.0, 'parent': 1.0, 'first': 1.0, 'and': 2.0, 'cute': 1.0, 'if': 1.0, 'really': 1.0, 'of': 2.0, 'anyway': 1.0, 'are': 2.0, 'your': 1.0, 'they': 2.0, 'great': 1.0, 'the': 2.0, 'these': 1.0, 'saved': 1.0, 'we': 1.0, 'now': 1.0, 'to': 1.0, 'fingers': 1.0, 'had': 1.0, 'them': 1.0, 'a': 2.0, 'you': 2.0, 'have': 2.0, 'busy': 1.0, 'shut': 1.0, 'one': 1.0, 'but': 1.0, 'toddler': 1.0, 'might': 1.0, 'last': 1.0}
Word element => {'wish': 1.0, 'found': 1.0, 'cute': 1.0, 'super': 1.0, 'are': 1.0, 'value': 1.0, 'recommend': 1.0, 'one': 1.0, 'compared': 1.0, 'any': 1.0, 'similar': 1.0, 'as': 1.0, 'and': 1.0, 'had': 1.0, 'to': 2.0, 'first': 2.0, 'would': 1.0, 'work': 1.0, 'i': 3.0, 'products': 1.0, 'expensive': 1.0, 'a': 1.0, 'well': 1.0, 'bought': 1.0, 'great': 1.0, 'ones': 1.0, 'more': 1.0, 'these': 2.0, 'just': 1.0}
Word element => {'them': 1.0, 'set': 1.0, 'second': 1.0, 'b': 1.0, 'my': 1.0, 'more': 1.0, 'that': 1.0, 'though': 1.0, 'enough': 1.0, 'buying': 2.0, 'mind': 1.0, 'theyre': 1.0, 'age': 1.0, 'give': 1.0, 'me': 1.0, 'break': 1.0, 'like': 1.0, 'have': 1.0, 'if': 1.0, 'stop': 1.0, 'and': 1.0, 'play': 1.0, 'doesnt': 1.0, 'hinge': 2.0, 'pros': 1.0, 'side': 3.0, 'door': 3.0, 'stops': 1.0, 'fingers': 2.0, 'to': 1.0, 'from': 2.0, 'you': 2.0, 'twins': 1.0, 'pinching': 1.0, 'cons': 1.0, 'i': 3.0, 'two': 1.0, 'pinched': 1.0, 'handle': 1.0, 'cheap': 1.0, 'love': 1.0, 'mine': 1.0, 'the': 4.0, 'dont': 1.0, 'kids': 1.0, 'who': 1.0, 'w': 1.0, 'on': 2.0, 'make': 1.0, 'worried': 1.0, 'of': 1.0, 'it': 1.0, 'games': 1.0, 'slamming': 1.0, 'be': 2.0, 'might': 1.0, 'a': 2.0, 'little': 1.0, 'about': 1.0, 'still': 1.0, 'will': 1.0, 'also': 1.0, 'or': 1.0, 'overtime': 1.0, 'they': 1.0, 'old': 1.0}
Word element => {'this': 1.0, 'recommend': 1.0, 'would': 1.0, 'def': 1.0, 'out': 2.0, 'high': 1.0, 'it': 1.0, 'keep': 1.0, 'but': 1.0, 'in': 2.0, 'be': 1.0, 'anyone': 1.0, 'look': 1.0, 'their': 1.0, 'that': 1.0, 'know': 1.0, 'so': 1.0, 'just': 1.0, 'butterfly': 1.0, 'door': 4.0, 'they': 3.0, 'wont': 1.0, 't': 1.0, 'great': 2.0, 'enough': 1.0, 're': 2.0, 'my': 1.0, 'little': 1.0, 'edge': 1.0, 'rip': 1.0, 'fingers': 1.0, 'paint': 1.0, 'foam': 1.0, 'mind': 1.0, 'piece': 1.0, 'sight': 1.0, 'the': 7.0, 'wrap': 1.0, 'well': 1.0, 'child': 1.0, 'up': 1.0, 'around': 1.0, 'test': 1.0, 'i': 2.0, 'tried': 1.0, 'didn': 1.0, 'even': 1.0, 'on': 1.0, 'your': 2.0, 'except': 1.0, 'slamming': 1.0, 'held': 1.0, 'of': 5.0, 'rather': 1.0, 'you': 2.0, 'lose': 1.0, 'to': 1.0, 'any': 1.0, 'personal': 1.0, 'pinch': 1.0, 'styles': 1.0, 'product': 1.0, 'opinion': 1.0, 'for': 1.0}
Word element => {'with': 1.0, 'begin': 1.0, 'since': 1.0, 'able': 1.0, 'grip': 1.0, '34': 2.0, 'just': 1.0, 'okay': 1.0, 'is': 1.0, 'around': 1.0, 'to': 4.0, 'rigid': 1.0, 'but': 2.0, 'and': 2.0, 'too': 1.0, 'are': 4.0, 'these': 1.0, 'a': 1.0, 'hand': 1.0, 'door': 2.0, 'second': 1.0, 'they': 5.0, 'ever': 1.0, 'makes': 1.0, 'put': 1.0, 'on': 1.0, 'one': 1.0, 'little': 1.0, 'do': 2.0, 'much': 1.0, 'not': 1.0, 'stay': 1.0, 'because': 1.0, 'having': 1.0, 'the': 3.0, 'place': 2.0, 'barely': 1.0, 'easily': 1.0, 'am': 1.0, 'in': 2.0, 'colorfulness': 1.0, 'so': 1.0, 'precariously': 1.0, 'cute': 1.0, 'i': 1.0, 'thoughts': 1.0, 'about': 1.0, 'them': 3.0, 'their': 1.0, 'attractive': 1.0, 'my': 1.0, 'kid': 1.0, 'remove': 1.0, 'she': 1.0}
Word element => {'price': 1.0, 'for': 1.0, 'door': 1.0, 'stopping': 1.0, 'at': 1.0, 'works': 1.0, 'the': 2.0, 'more': 1.0, 'great': 1.0, 'closing': 1.0, 'simple': 1.0, 'hands': 1.0, 'need': 1.0, 'nice': 1.0, 'from': 1.0, 'ok': 1.0, 'on': 1.0, 'anybody': 1.0, 's': 2.0, 'and': 1.0, 'probably': 1.0, 'than': 1.0, 'but': 1.0, 'i': 1.0, 'that': 1.0}
Word element => {'easily': 1.0, 'fall': 1.0, 'they': 1.0, 'shake': 1.0, 'how': 1.0, 'be': 1.0, 'to': 2.0, 'soon': 1.0, 'body': 1.0, 'and': 1.0, 'get': 1.0, 'able': 1.0, 'busy': 1.0, 'i': 1.0, 'little': 1.0, 'off': 2.0, 'my': 1.0, 't': 1.0, 'figured': 1.0, 'the': 2.0, 'thought': 1.0, 'but': 1.0, 'out': 1.0, 'child': 1.0, 'them': 1.0, 'door': 2.0, 'enough': 1.0, 'wouldn': 1.0, 'he': 1.0, 'it': 1.0}
Word element => {'is': 1.0, 'out': 1.0, 'let': 1.0, 'to': 1.0, 'all': 1.0, 'have': 1.0, 'then': 1.0, 'her': 2.0, 'find': 1.0, 'room': 1.0, 'a': 2.0, 'male': 1.0, 'dog': 2.0, 'dogs': 1.0, 'bought': 1.0, 'has': 1.0, 'of': 1.0, 'for': 1.0, 'in': 2.0, 'locked': 1.0, 'doors': 1.0, 'my': 3.0, 'great': 1.0, 't': 1.0, 'these': 2.0, 'the': 1.0, 'actually': 1.0, 'until': 1.0, 'habit': 1.0, 'sometimes': 1.0, 'i': 2.0, 'can': 2.0, 'opening': 1.0, 'get': 1.0, 'and': 2.0, 'say': 1.0, 'shutting': 1.0, 'we': 1.0, 'other': 1.0, 'work': 1.0, 'house': 1.0, 'will': 1.0}
Word element => {'access': 1.0, 'for': 1.0, 'not': 1.0, 'when': 2.0, 'right': 1.0, 'them': 1.0, 'i': 1.0, 'door': 2.0, 'a': 1.0, 'off': 1.0, 'being': 1.0, 'closing': 1.0, 'little': 1.0, 'doors': 1.0, 'my': 1.0, 'prevent': 1.0, 'are': 2.0, 'they': 3.0, 'knob': 1.0, 'the': 2.0, 'these': 1.0, 'way': 1.0, 'from': 1.0, 'work': 1.0, 'all': 1.0, 'needed': 1.0, 'easy': 2.0, 'perfectly': 1.0, 'and': 3.0, 'over': 1.0, 'on': 1.0, 'guy': 1.0, 'pinching': 1.0, 'used': 1.0, 'his': 1.0, 'slip': 1.0, 'super': 1.0, 'take': 1.0, 'fingers': 1.0, 'to': 1.0}
Word element => {'solid': 1.0, 'cuter': 1.0, 'is': 1.0, 'bonus': 1.0, 'job': 1.0, 'for': 1.0, 'in': 1.0, 'happy': 1.0, 'doors': 1.0, 'my': 1.0, 'are': 2.0, 'very': 1.0, 'from': 1.0, 'then': 1.0, 'purchased': 1.0, 'ones': 1.0, 'the': 4.0, 'these': 1.0, 'they': 2.0, 'slamming': 1.0, 'keep': 1.0, 'closeing': 1.0, 'white': 1.0, 'them': 1.0, 'on': 1.0, 'her': 1.0, 'thick': 1.0, 'to': 1.0, 'fingers': 1.0, 'house': 1.0, 'toddler': 1.0, 'work': 1.0, 'and': 2.0, 'perfectly': 1.0}
Word element => {'a': 1.0, 'them': 1.0, 'chew': 1.0, 'toy': 1.0, 'to': 1.0, 'likes': 1.0, 'also': 1.0, 'cute': 1.0, 'as': 1.0, 'and': 1.0, 'little': 1.0, 'my': 1.0, 'prevent': 1.0, 'helps': 1.0, 'the': 1.0, 'fingers': 1.0, 'getting': 1.0, 'from': 1.0, 'door': 1.0, 'slammed': 1.0, 'daughter': 1.0, 'in': 1.0}
Word element => {'fine': 1.0, 'everything': 1.0, 'otherwise': 1.0, 'got': 1.0, 'think': 1.0, 'gift': 1.0, 'they': 1.0, 'the': 1.0, 'it': 1.0, 'great': 1.0, 'but': 1.0, 'i': 3.0, 'don': 2.0, 't': 2.0, 'know': 1.0, 'what': 1.0, 'was': 2.0, 'work': 1.0, 'free': 1.0}
Word element => {'hurt': 1.0, 'o': 1.0, 'lose': 1.0, 'going': 1.0, 'that': 1.0, 'be': 1.0, 'get': 1.0, 'and': 2.0, 'very': 1.0, 'walk': 1.0, 'active': 1.0, 'leave': 1.0, 'is': 2.0, 'to': 1.0, 'now': 1.0, 'marvelous': 1.0, 'a': 2.0, 'have': 1.0, 'working': 1.0, 'because': 1.0, 'afraid': 1.0, 'don': 1.0, 'baby': 1.0, 'he': 1.0, 'it': 1.0, 'ordered': 1.0, 'fingernail': 1.0, 'i': 3.0, 'my': 1.0, 't': 1.0, 'the': 1.0, 'around': 1.0, 'toddler': 1.0, 'house': 1.0, 'an': 1.0}
Word element => {'doors': 1.0, 'with': 1.0, 'problem': 1.0, 'a': 1.0, 'have': 1.0, 'longer': 1.0, 'price': 1.0, 'cute': 1.0, 'for': 1.0, 'product': 1.0, 'sure': 1.0, 'no': 1.0, 'super': 1.0, 'they': 2.0, 'great': 1.0, 'these': 1.0, 'the': 1.0, 'are': 2.0, 'foam': 1.0, 'i': 1.0, 'so': 1.0, 'how': 1.0, 'am': 1.0, 'just': 1.0, 'not': 1.0, 'long': 1.0, 'we': 1.0, 'but': 1.0, 'will': 1.0, 'slamming': 1.0, 'last': 1.0}
Word element => {'them': 1.0, 'as': 1.0, 'rendered': 1.0, 'the': 2.0, 'cracked': 1.0, 'were': 2.0, 'however': 1.0, 'which': 1.0, 'neatly': 1.0, 'useless': 1.0, 'guards': 1.0, 'pieces': 1.0, '2': 1.0, 'with': 1.0, 'packed': 1.0, 'bubble': 1.0, 'material': 1.0, 'of': 1.0}
Word element => {'not': 1.0, 'would': 1.0, 'product': 2.0, 'awful': 1.0, 'so': 1.0, 'is': 1.0, 'recommend': 1.0, 'really': 1.0, 'i': 1.0, 'bad': 1.0, 'the': 1.0, 'and': 1.0, 'quality': 1.0, 'it': 2.0, 'thin': 1.0, 'doesn': 1.0, 'this': 1.0, 't': 1.0, 'stop': 1.0, 'even': 1.0, 'door': 1.0, 'because': 1.0}
Word element => {'of': 1.0, 'would': 1.0, 'more': 2.0, 'i': 2.0, 'if': 1.0, 'buy': 2.0, 'nice': 1.0, 'and': 2.0, 'colorful': 1.0, 'safe': 1.0, 'those': 1.0, 'stops': 1.0, 'had': 1.0, 'doors': 2.0, 'great': 1.0, 'love': 1.0, 'them': 2.0, 'closing': 1.0, 'a': 1.0}
Word element => {'stop': 1.0, 'door': 1.0, 'ones': 1.0, 'clear': 1.0, 'regular': 1.0, 'get': 1.0, 'the': 1.0, 'my': 1.0, 'more': 1.0, 'or': 1.0, 'dd': 1.0, 'wants': 1.0, 'eat': 1.0, 'them': 1.0, 'a': 2.0, 'nuisance': 1.0, 'just': 1.0, 'than': 1.0, 'to': 1.0, 'helping': 1.0}
Word element => {'t': 1.0, 'don': 1.0, 'please': 1.0, 'so': 1.0, 'all': 1.0, 'package': 1.0, 'easy': 1.0, 'believe': 1.0, 'no': 1.0, 'gift': 1.0, 'fine': 1.0, 'description': 1.0, 'is': 1.0, 'however': 1.0, 'works': 1.0, 'it': 1.0, 'the': 2.0, 'broken': 1.0, 'at': 1.0, 'free': 1.0, 'in': 1.0}
Word element => {'shutting': 1.0, 'little': 1.0, 'for': 1.0, 'on': 1.0, 'doors': 1.0, 're': 1.0, 'much': 1.0, 'them': 1.0, 'door': 1.0, 'really': 1.0, 'don': 1.0, 'be': 2.0, 'first': 1.0, 'used': 1.0, 'they': 3.0, 'perfectly': 1.0, 'and': 2.0, 'the': 1.0, 't': 1.0, 'these': 1.0, 'great': 1.0, 'can': 1.0, 'i': 1.0, 'once': 1.0, 'at': 1.0, 'keeping': 1.0, 'added': 1.0, 'bath': 1.0, 'notice': 1.0, 'toys': 1.0, 'from': 1.0, 'as': 2.0, 'big': 1.0, 'thought': 1.0, 'an': 1.0, 'work': 2.0, 'but': 1.0, 'might': 1.0, 'kids': 1.0, 'too': 1.0, 'bonus': 1.0, 'you': 1.0}
Word element => {'small': 1.0, 'kids': 1.0, 'till': 1.0, 'last': 1.0, 'best': 1.0, 'also': 1.0, 'is': 1.0, 'good': 2.0, 'quite': 1.0, 'and': 1.0, 'although': 1.0, 'but': 1.0, 'quality': 1.0, 'guards': 1.0, 'useful': 1.0, 'pinch': 1.0, 'magnet': 1.0, 'use': 1.0, 'all': 1.0, 'are': 2.0, 'the': 6.0, 'not': 2.0, 'did': 1.0, 'enough': 1.0, 'havent': 1.0, 'its': 1.0, 'to': 2.0, 'fingers': 1.0, 'had': 1.0, 'doors': 1.0, 'at': 1.0, 'stress': 1.0, 'about': 1.0, 'little': 1.0}
Word element => {'used': 1.0, 'not': 1.0, 'all': 1.0, 'have': 1.0, 'we': 1.0, 'smaller': 1.0, 'them': 1.0, 'fitting': 1.0, 'while': 1.0, 'easy': 1.0, 'snugly': 1.0, 'off': 1.0, 'get': 1.0, 'and': 1.0, 'as': 1.0, 'on': 2.0, 'to': 2.0, 'be': 1.0, 'our': 1.0, 'although': 1.0, 'house': 1.0, 'put': 1.0, 'the': 1.0, 'are': 1.0, 'is': 1.0, 'door': 1.0, 'they': 1.0, 'seems': 1.0, 'still': 1.0, 'cute': 1.0, 'well': 1.0, '5': 1.0, 'plenty': 1.0}
Word element => {'four': 1.0, 'other': 1.0, 'home': 1.0, 'in': 1.0, 'need': 1.0, 'really': 1.0, 'spares': 1.0, 'shut': 1.0, 'pulling': 1.0, 'tried': 1.0, 'my': 1.0, 'like': 1.0, 'fingers': 1.0, 'nothing': 1.0, 'are': 1.0, 'slammed': 2.0, 'am': 1.0, 'and': 2.0, 'paid': 1.0, 'an': 1.0, 'on': 2.0, 'guards': 1.0, 'put': 1.0, 'placed': 1.0, 'pretty': 1.0, 'item': 2.0, 'tested': 1.0, 'works': 1.0, 'only': 2.0, 'higher': 1.0, 'it': 1.0, 'i': 9.0, 'add': 1.0, 'these': 1.0, 'the': 3.0, 'next': 1.0, 'that': 1.0, 'mention': 1.0, 'finger': 1.0, 'one': 2.0, 'love': 1.0, 'for': 2.0, 'product': 1.0, 'purchased': 1.0, 'did': 1.0, 'pinch': 1.0, 'this': 3.0, 'broomstick': 1.0, 'them': 3.0, 'so': 2.0, 'then': 1.0, 'far': 1.0, 'have': 1.0, 'used': 1.0, 'of': 1.0, 'hey': 1.0, 'up': 1.0, 'door': 3.0, 'well': 1.0, 'a': 1.0, 'our': 1.0, 'as': 1.0, 'to': 1.0, 'doors': 2.0}
Word element => {'mind': 1.0, 'peace': 1.0, 'things': 1.0, 'of': 1.0, 'once': 1.0, 'cute': 1.0, 'found': 1.0, 'old': 1.0, 'amazon': 1.0, 'door': 1.0, 'apartment': 1.0, 'life': 1.0, 'in': 2.0, 'these': 1.0, 'my': 4.0, 'searched': 1.0, 'grandughter': 1.0, 'i': 2.0, 'saved': 1.0, 'and': 5.0, 'closed': 1.0, 'take': 1.0, '20mos': 1.0, 'little': 1.0, 'every': 1.0, 'she': 3.0, 'to': 1.0, 'fingers': 1.0, 'is': 1.0, 'comes': 1.0, 'has': 1.0, 'they': 1.0, 'keep': 1.0, 'that': 1.0, 'bee': 1.0, 'last': 1.0, 'her': 1.0, 'will': 1.0, 'an': 1.0, 'baby': 1.0, 'them': 2.0, 'put': 1.0, 'on': 1.0, 'over': 1.0, 'when': 1.0, 'forever': 1.0, 'off': 1.0, 'leaves': 1.0, 'are': 1.0, 'inexpensive': 1.0}
Word element => {'number': 1.0, 'kid': 1.0, 'for': 1.0, 'purchasing': 1.0, 'be': 1.0, 'will': 1.0, 'and': 1.0, 'happy': 1.0, 'on': 1.0, '2': 1.0, 'surfaces': 1.0, 'great': 1.0, '3m': 1.0, 'very': 1.0, 'permanent': 1.0, 'stick': 1.0, 'say': 1.0, 'have': 1.0, 'it': 1.0, 'this': 1.0, 'far': 1.0, 'easy': 1.0, 'so': 3.0, 'i': 2.0, 'stitches': 1.0, 'cut': 1.0, 'just': 1.0, 'not': 1.0, 'to': 2.0, 'no': 1.0, 'tape': 1.0, 'works': 1.0, 'does': 1.0, 'used': 1.0, 'glue': 1.0, 'leave': 1.0, 'a': 1.0}
Word element => {'earthy': 1.0, 'ref': 1.0, 'dings': 1.0, 'on': 1.0, 'cream': 1.0, 'and': 1.0, 'wall': 2.0, 'corner': 1.0, 'hitting': 1.0, 'reviews': 1.0, 'in': 2.0, 'as': 1.0, 'very': 1.0, 'an': 1.0, 'placed': 1.0, 'quality': 1.0, 'more': 1.0, 'the': 3.0, 'once': 1.0, 'tape': 1.0, 'no': 2.0, 'this': 2.0, 'with': 1.0, 'issues': 1.0, 'other': 1.0, 'we': 3.0, 'refrigerator': 1.0, 'a': 3.0, 'thick': 1.0, 'color': 1.0, 'high': 1.0, 'product': 1.0, 'is': 2.0, 'door': 2.0, 'that': 1.0, 'had': 2.0, 'was': 1.0}
Word element => {'mouth': 1.0, 'to': 1.0, 'right': 1.0, 'on': 1.0, 'his': 1.0, 'put': 1.0, 'i': 1.0, 'minutes': 1.0, 'and': 1.0, 'table': 1.0, 'after': 1.0, 'not': 1.0, 'that': 1.0, 'the': 2.0, 'my': 1.0, 'song': 1.0, 'straigh': 1.0, 'removed': 1.0, 'of': 1.0, 'great': 1.0, 'it': 2.0, 'from': 1.0, 'edge': 1.0}
Word element => {'keep': 1.0, 'will': 1.0, 'quite': 1.0, 'am': 1.0, 'cream': 1.0, 'like': 1.0, 'was': 1.0, 'to': 3.0, 'is': 2.0, 'that': 1.0, 'furniture': 1.0, 'a': 2.0, 'for': 1.0, 'disappointed': 1.0, 'in': 1.0, 'which': 1.0, 'looking': 2.0, 'been': 1.0, 'not': 1.0, 'because': 1.0, 'white': 4.0, 'have': 2.0, 'it': 1.0, 'he': 1.0, 'with': 1.0, 'this': 1.0, 'i': 3.0, 'blend': 1.0, 'very': 1.0, 'supposed': 1.0, 'product': 1.0, 'bought': 1.0, 'of': 1.0, 'more': 1.0, 'the': 1.0, 'color': 2.0}
Word element => {'money': 1.0, 'edges': 1.0, 'anyone': 1.0, 'recommend': 1.0, 'no': 1.0, 'tape': 1.0, 'waste': 1.0, 'there': 1.0, 'of': 1.0, 'to': 3.0, 'is': 1.0, 'adhesive': 1.0, 'not': 1.0, 'would': 1.0, 'like': 1.0, 'i': 3.0, 'as': 1.0, 'stick': 1.0, 'this': 1.0, 'it': 1.0, 'the': 1.0, 'feel': 1.0, 'cheated': 1.0, 'am': 1.0}
Word element => {'halloween': 1.0, 'costume': 1.0, 'sleeper': 1.0, 'would': 1.0, 'i': 1.0, 'changes': 1.0, 'recommend': 1.0, 'needed': 1.0, 'for': 3.0, 'to': 1.0, 'maybe': 1.0, 'opening': 2.0, 'cute': 1.0, 'child': 1.0, 'not': 2.0, 'diaper': 1.0, 'the': 3.0, 'is': 2.0, 'very': 1.0, 'but': 2.0, 'zipper': 1.0, 'this': 1.0, 'it': 2.0, 'month': 1.0, 'enough': 1.0, 'fit': 1.0, 'chest': 1.0, 'a': 4.0, 'has': 1.0, 'at': 1.0, 'no': 1.0, 'large': 1.0, '3': 1.0, 'of': 1.0, '6': 1.0, 'bottom': 1.0}
Word element => {'until': 1.0, 'stump': 1.0, 'down': 1.0, 'off': 1.0, 'snap': 1.0, 'tiny': 1.0, 'includes': 1.0, 'buying': 1.0, 'recommend': 1.0, 'umbilical': 1.0, 'newborn': 1.0, 'out': 1.0, 'daughter': 1.0, 'bundle': 1.0, 'after': 1.0, 'highly': 1.0, 'every': 1.0, 'same': 1.0, 'gdiapers': 2.0, 'friends': 1.0, 'falls': 1.0, 'have': 2.0, 'use': 1.0, 'rash': 1.0, 'diaper': 1.0, 'never': 1.0, 'well': 1.0, 'has': 1.0, 'gentle': 1.0, 'compared': 1.0, 'inexpensive': 1.0, 'that': 1.0, 'were': 1.0, 'diapers': 2.0, 'which': 1.0, 'using': 1.0, 'love': 1.0, 'for': 4.0, 'on': 2.0, 'nuts': 1.0, 'turned': 1.0, 'us': 2.0, 'what': 1.0, 'had': 2.0, 'everyone': 1.0, 'as': 2.0, 'our': 6.0, 'all': 1.0, 'to': 4.0, 'skin': 1.0, 'first': 2.0, 'girl': 1.0, 'decisions': 1.0, 'they': 2.0, 'ever': 1.0, 'them': 1.0, 'baby': 4.0, 'incredibly': 1.0, 'cloth': 1.0, 'disposables': 1.0, 'i': 2.0, 'bet': 1.0, 'environmentally': 1.0, 'and': 3.0, 'five': 1.0, 'one': 1.0, 'months': 1.0, 'gpants': 1.0, 'several': 1.0, 'told': 1.0, 's': 2.0, 'we': 8.0, 'ago': 1.0, 'give': 1.0, 'up': 1.0, 'of': 2.0, 'within': 1.0, 'the': 6.0, 'these': 1.0, 'it': 2.0, 'she': 1.0, 'month': 1.0, 'can': 2.0, 'honestly': 1.0, 'is': 1.0, 'more': 1.0, 'say': 1.0, 'are': 2.0, 'family': 1.0, 'care': 1.0, 'protect': 1.0, 'delicate': 1.0, 'd': 1.0, 'best': 1.0, 'made': 1.0, 'friendly': 1.0, 'easy': 1.0}
Word element => {'ideas': 1.0, 'accessory': 1.0, 'other': 1.0, 'photo': 1.0, 'glad': 1.0, 'though': 1.0, 'rug': 1.0, 'ruffle': 1.0, 'sheets': 1.0, 'quilt': 1.0, '100': 1.0, 'paying': 1.0, 'little': 1.0, 'here': 1.0, 'and': 4.0, 'daughter': 1.0, 'love': 1.0, 'for': 3.0, 'model': 1.0, 'crib': 1.0, 'my': 1.0, 'high': 2.0, 'black': 1.0, 'am': 1.0, 'local': 1.0, 'price': 1.0, 'store': 1.0, 'beautiful': 1.0, 'i': 6.0, 'amazon': 2.0, 'is': 2.0, 'this': 3.0, 'picked': 1.0, 'not': 1.0, 'out': 2.0, 'from': 1.0, 'set': 2.0, 'but': 2.0, 'baby': 1.0, 'quality': 1.0, 'did': 1.0, 'better': 1.0, 'had': 1.0, 'isn': 1.0, 'look': 2.0, 'on': 2.0, 'the': 6.0, 'a': 3.0, 't': 1.0, 'they': 1.0, 'display': 1.0, 'would': 1.0, 'something': 1.0, 'it': 2.0, 'normally': 1.0, 'feel': 1.0, 'saw': 1.0, 'pick': 1.0, 'even': 1.0, 'in': 1.0, 'buy': 1.0, 'person': 1.0, 'are': 1.0, 'so': 2.0}
Word element => {'sippigrip': 1.0, 'prefer': 1.0, 'world': 1.0, 'end': 1.0, 'not': 1.0, 'permanent': 1.0, 'open': 1.0, 'tethers': 1.0, 'the': 7.0, 'how': 1.0, 'don': 1.0, 'loop': 2.0, 'use': 1.0, 'this': 2.0, 'it': 4.0, 'unfasten': 1.0, 'sippy': 1.0, 'inconvenient': 1.0, 'has': 1.0, 'your': 1.0, 'of': 3.0, 'high': 2.0, 'and': 2.0, 'love': 1.0, 'one': 2.0, 'ends': 1.0, 't': 2.0, 'a': 2.0, 'we': 1.0, 's': 3.0, 'you': 2.0, 'fine': 2.0, 'but': 2.0, 'can': 1.0, 'cup': 1.0, 'or': 1.0, 'latch': 1.0, 'close': 1.0, 'little': 1.0, 'onto': 1.0, 'stroller': 2.0, 'car': 2.0, 'tether': 2.0, 'to': 2.0, 'seat': 2.0, 'instead': 1.0, 'chair': 2.0, 'i': 2.0, 'etc': 2.0, 'have': 1.0, 'way': 1.0, 'straps': 1.0, 'through': 1.0, 'that': 1.0}
Word element => {'item': 1.0, 'the': 2.0, '1st': 1.0, 'same': 1.0, 'had': 1.0, 'for': 3.0, 'price': 1.0, 'years': 1.0, 'table': 2.0, 'get': 1.0, 'and': 1.0, 'children': 1.0, 'this': 1.0, 'sturdy': 1.0, 'purchased': 1.0, 'i': 2.0, 'very': 2.0, 'changing': 1.0, 'my': 2.0, 'grandchild': 1.0, 'ago': 1.0, 'easily': 1.0, 'put': 1.0, 'all': 1.0, '3': 1.0, 'of': 1.0, 'together': 1.0}
Word element => {'recommend': 1.0, 'highly': 1.0, 'one': 1.0, 'little': 1.0, 'tank': 2.0, 'mom': 1.0, 'much': 1.0, 'after': 1.0, 'hassle': 1.0, 'makes': 1.0, 'so': 1.0, 'time': 3.0, 'unsnaps': 1.0, 'breastfeeding': 1.0, 'i': 3.0, 'it': 2.0, 'perfect': 1.0, 'this': 2.0, 'skin': 2.0, 'with': 1.0, 'love': 3.0, 'for': 1.0, 'comfortable': 1.0, 'a': 3.0, 'is': 2.0, 'both': 1.0, 'long': 1.0, 'of': 1.0, 'and': 3.0, 'get': 1.0, 'pumping': 2.0, 'day': 1.0, 'when': 2.0, 'easily': 1.0, 'am': 1.0, 'able': 1.0, 'nursing': 1.0, 'as': 1.0, 'to': 2.0, 'work': 1.0, 'who': 1.0, 'at': 1.0, 'the': 1.0, 'same': 1.0, 'working': 1.0, 'then': 1.0, 'finally': 1.0, 'less': 1.0, 'home': 1.0, 'cozy': 1.0, 'my': 1.0}
Word element => {'work': 1.0, 'anchor': 1.0, 'now': 1.0, 'door': 1.0, 'walk': 1.0, 'night': 1.0, 'baby': 1.0, 'feeding': 1.0, 'versatile': 1.0, 'component': 1.0, 'bra': 1.0, 'support': 1.0, 'there': 1.0, 'average': 1.0, 'woman': 1.0, 'great': 1.0, 'every': 1.0, 'material': 1.0, 'version': 1.0, 'wardrobe': 1.0, 'nothing': 1.0, 'tanks': 1.0, 'other': 1.0, 'covering': 1.0, 'by': 1.0, 'privacy': 1.0, 'of': 3.0, 'surgeries': 1.0, 'about': 1.0, 'is': 5.0, 'say': 1.0, 'tried': 1.0, 'things': 1.0, 'degree': 1.0, 'positive': 1.0, 'busy': 1.0, 'nursing': 2.0, 'have': 2.0, 'become': 1.0, 'i': 5.0, 'compares': 1.0, 'tank': 4.0, 'torso': 1.0, 'welcome': 1.0, 'my': 5.0, 'soon': 1.0, 'moms': 1.0, 'and': 5.0, 'me': 1.0, 'only': 1.0, 'first': 1.0, 'maintain': 1.0, 'as': 2.0, 'to': 4.0, 'excellent': 1.0, 'purchased': 1.0, 'for': 4.0, 'recently': 1.0, 'the': 10.0, 'surgeon': 1.0, 'has': 2.0, 'time': 1.0, 'pump': 2.0, 'or': 1.0, 'working': 1.0, 'day': 1.0, 'pumping': 2.0, 'height': 1.0, 'increase': 1.0, 'a': 3.0, 'at': 1.0, 'who': 1.0, 'little': 1.0, 'rumina': 2.0, 'between': 2.0, 'while': 1.0, 'solution': 1.0, 'efficiency': 1.0, 'seeing': 1.0, 'length': 1.0, 'in': 2.0, 'patients': 1.0, 'am': 1.0, 'office': 1.0, 'soft': 1.0, 'perfect': 1.0, 'this': 2.0, 'allows': 1.0}
Word element => {'otherwise': 1.0, 'quality': 1.0, 'good': 1.0, 'very': 1.0, 'shipment': 1.0, 'clasp': 1.0, 'broke': 1.0, 'plastic': 1.0, 'use': 1.0, 'except': 1.0, 'strap': 1.0, 'might': 1.0, 'have': 1.0, 'tank': 1.0, 'the': 1.0, 'sure': 1.0, 'this': 1.0, 'it': 1.0, 'i': 1.0, 'love': 1.0, 'one': 1.0, 'after': 1.0, 'not': 1.0, 'if': 1.0, 'gotten': 1.0, 'that': 1.0, 'stressed': 1.0, 'during': 1.0}
Word element => {'s': 1.0, 'mums': 1.0, 'likely': 1.0, 'rumina': 1.0, 'flat': 1.0, 'unless': 1.0, 'is': 1.0, 'fine': 1.0, 'wrong': 1.0, 'size': 1.0, 'chested': 1.0, 'got': 1.0, 'so': 2.0, 'be': 2.0, 'barely': 1.0, 'nursing': 1.0, 'have': 1.0, 'understand': 1.0, 'why': 1.0, 'expecting': 1.0, 'on': 1.0, 'tight': 1.0, 'don': 1.0, 'not': 1.0, 'because': 1.0, 'just': 1.0, 'while': 1.0, 'fit': 2.0, 'across': 1.0, 'bust': 1.0, 't': 2.0, 'these': 2.0, 'the': 2.0, 'waist': 1.0, 'i': 3.0, 'wasn': 1.0, 'could': 1.0, 'to': 3.0, 'had': 1.0, 'breathe': 1.0, 'and': 2.0, 'shoulders': 1.0, 'it': 3.0}
Word element => {'lifesaver': 1.0, 'pump': 1.0, 'another': 1.0, 'on': 1.0, 'to': 2.0, 'not': 1.0, 'night': 1.0, 'thank': 1.0, 'can': 1.0, 'and': 2.0, 'goodness': 1.0, 'have': 1.0, 'this': 2.0, 'along': 1.0, 'strap': 1.0, 'came': 1.0, 'because': 1.0, 'all': 1.0, 'day': 1.0, 'i': 1.0, 'bra': 1.0, 'wear': 1.0}
Word element => {'need': 1.0, 'piece': 1.0, 'or': 1.0, 'this': 2.0, 'overall': 1.0, 'get': 1.0, 'easier': 1.0, 'idea': 1.0, 'times': 1.0, 'softer': 1.0, 'wore': 1.0, 'got': 1.0, 'was': 2.0, 'it': 5.0, 'getting': 1.0, 'far': 1.0, 'all': 1.0, 'to': 2.0, 'as': 2.0, 'much': 1.0, 'side': 1.0, 'thicker': 1.0, 'that': 2.0, 'in': 1.0, 'length': 1.0, 'once': 1.0, 'of': 3.0, 'up': 1.0, 'really': 1.0, 'also': 1.0, 'options': 1.0, 'durable': 1.0, 'for': 1.0, 'love': 3.0, 'is': 3.0, 'more': 1.0, 'fabric': 2.0, 'nursing': 2.0, 'have': 1.0, 'snug': 2.0, 'i': 10.0, 'like': 3.0, 'a': 4.0, 'could': 1.0, 'the': 10.0, 'hanging': 1.0, 'moms': 1.0, 'too': 1.0, 'and': 5.0, 'feels': 1.0, 'tank': 2.0, 'top': 1.0, 'should': 1.0, 'supportive': 1.0, 'clasps': 1.0, 'straps': 1.0, 'on': 3.0, 'think': 1.0, 'sizing': 1.0, 'be': 1.0, 'very': 1.0, 'little': 1.0, 'generous': 1.0, 'great': 1.0, 'feel': 2.0, 'few': 1.0, 'large': 2.0, 'but': 2.0, 'an': 1.0, 'maybe': 1.0, 'pumping': 1.0, 'extra': 1.0, 'purchased': 2.0, 'breasts': 1.0, 'tight': 1.0, 'my': 1.0, 'are': 1.0, 'out': 1.0}
Word element => {'stock': 1.0, 'in': 1.0, 'plenty': 1.0, 'were': 1.0, 'there': 1.0, '99': 1.0, 'paid': 1.0, 'back': 1.0, 'for': 2.0, 'r': 1.0, 'aching': 1.0, 'bought': 1.0, 'my': 3.0, 'just': 2.0, 'seat': 1.0, 'this': 3.0, 'n': 1.0, 'it': 2.0, 'ridiculous': 1.0, 'out': 1.0, 'way': 1.0, 'price': 2.0, 'nature': 1.0, 'us': 1.0, 'soothing': 1.0, 'daughter': 1.0, 'i': 2.0, 'seller': 1.0, 'easy': 2.0, 'is': 2.0, 'minnie': 1.0, 'the': 1.0, 'mouse': 1.0, 'of': 1.0, 'at': 1.0, 'on': 1.0, 'ballpark': 1.0, 'pack': 1.0, 'granddaughter': 1.0, 's': 2.0, 'a': 3.0, 'very': 2.0, 'nice': 1.0, 'bassinet': 1.0, 'featuring': 1.0, 'vibration': 1.0, '209': 1.0, 'setting': 1.0, 'play': 1.0, 'and': 1.0, 'music': 1.0, 'changing': 1.0, 'babies': 1.0, 'rocking': 1.0, 'loves': 1.0, 'that': 1.0, 'item': 1.0, 'sounds': 1.0, 'also': 1.0, 'has': 1.0}
Word element => {'helps': 1.0, 'order': 1.0, 'some': 1.0, 'save': 1.0, 'someone': 1.0, 'you': 1.0, 'gear': 1.0, 'the': 1.0, 'out': 1.0, 'way': 1.0, 'it': 3.0, 'dont': 1.0, 'this': 3.0, 'come': 1.0, 'with': 1.0, 'back': 1.0, 'now': 1.0, 'was': 3.0, 'months': 2.0, 'over': 1.0, 'on': 1.0, '157': 1.0, 'money': 1.0, 'can': 1.0, 'but': 1.0, 'babiesrus': 2.0, 'priced': 1.0, 'at': 1.0, 've': 1.0, 'in': 2.0, 'been': 1.0, 'hope': 1.0, 'few': 2.0, 'i': 4.0, 'buy': 2.0, 'right': 1.0, 'wanting': 1.0, 'baby': 1.0, 'a': 2.0, 'amazon': 2.0, 'after': 1.0, 'waiting': 1.0, 'stock': 1.0, 'pack': 1.0, 'to': 2.0, 'all': 1.0, 'thought': 1.0, 'purchased': 1.0, 'and': 2.0, 'sold': 1.0, 'play': 1.0, '00': 1.0, 'from': 2.0, 'girls': 1.0, 'are': 1.0, 'for': 3.0, 'product': 1.0, 'expensive': 1.0, 'enough': 1.0}
Word element => {'here': 1.0, 'on': 1.0, 'price': 1.0, 'cheaper': 1.0, 'even': 1.0, 'to': 1.0, 'use': 1.0, 'can': 1.0, 'you': 1.0, 'r': 1.0, 'is': 2.0, '10': 1.0, 'us': 1.0, 'play': 1.0, 'sold': 1.0, 'it': 1.0, 'n': 1.0, 'this': 2.0, 'pack': 1.0, 'babies': 1.0, 'have': 1.0, 'same': 1.0, 'off': 1.0, 'at': 1.0, 'rediculous': 1.0, 'for': 1.0, '209': 1.0, 'always': 1.0, '99': 1.0, 'get': 1.0, 'and': 1.0, 'they': 1.0, 'a': 1.0, 'coupon': 1.0, '20': 1.0}
Word element => {'totally': 1.0, 'loves': 1.0, 'outfits': 1.0, 'and': 1.0, 'navy': 1.0, 'adorable': 1.0, 'from': 1.0, 'with': 1.0, 'in': 1.0, 've': 1.0, 'green': 1.0, 'i': 1.0, 's': 1.0, 'crawling': 1.0, 'she': 2.0, 'baby': 1.0, 'anything': 1.0, 'neutral': 1.0, 'to': 1.0, 'now': 1.0, 'looks': 1.0, 'is': 1.0, 'girl': 1.0, 'too': 1.0, 'my': 1.0, 'color': 1.0, 'the': 1.0, 'these': 2.0, 'they': 1.0, 'that': 2.0, 'for': 1.0, 'love': 1.0, 'everywhere': 1.0, 'help': 1.0, 'protect': 1.0, 'her': 1.0, 'them': 2.0, 'paired': 1.0, 'knees': 1.0, 'enough': 1.0}
Word element => {'mat': 1.0, 'easy': 1.0, 'assemble': 1.0, 'side': 1.0, 'small': 1.0, 'the': 1.0, 'is': 1.0, 'on': 1.0, 'appears': 1.0, 'to': 3.0, 'be': 1.0, 'kids': 1.0, 'comfortable': 1.0, 'perhaps': 1.0, 'seem': 1.0, 'like': 1.0, 'great': 1.0, 'it': 1.0, 'a': 1.0, 'little': 1.0}
Word element => {'worked': 1.0, 'between': 1.0, 'shoulders': 1.0, 'some': 1.0, 'remove': 1.0, 'scissors': 1.0, 'used': 1.0, 'stiff': 1.0, 'material': 1.0, 'cup': 1.0, 'from': 1.0, 'by': 2.0, 'while': 1.0, 'removed': 1.0, 'distance': 1.0, 'little': 1.0, 'rip': 1.0, 'five': 1.0, 'stained': 1.0, 'is': 2.0, 'cleaned': 1.0, 'more': 1.0, 'narrow': 1.0, 'only': 2.0, 'velcro': 1.0, 'into': 1.0, 'fishing': 1.0, 'pick': 1.0, 'off': 4.0, 'not': 1.0, 'my': 3.0, 'me': 1.0, 'was': 3.0, 'to': 6.0, 'bending': 1.0, 'as': 1.0, 'pizza': 1.0, 'had': 1.0, 'in': 1.0, 'could': 1.0, 'a': 4.0, 't': 2.0, 'fine': 1.0, 'we': 1.0, 'tired': 1.0, 'wipe': 1.0, 'has': 1.0, 'them': 1.0, 'bibs': 4.0, 'love': 1.0, 'for': 2.0, 'stars': 1.0, 'however': 1.0, 'bit': 1.0, 'easy': 1.0, 'get': 1.0, 'once': 1.0, 'these': 2.0, 'of': 3.0, 'the': 11.0, 'do': 1.0, 'floor': 2.0, 'sippy': 1.0, 'less': 1.0, 'up': 1.0, 'laundry': 1.0, 'down': 1.0, 'day': 1.0, 'gotten': 1.0, 'toddler': 1.0, 'twins': 1.0, 'and': 4.0, 'green': 1.0, 'quick': 1.0, 'clean': 2.0, 'also': 1.0, 'toddlers': 2.0, 'rinse': 1.0, 'their': 1.0, 'or': 2.0, 'food': 1.0, 'constantly': 1.0, 'can': 1.0, 'wearing': 1.0, '2': 1.0, 'discovery': 1.0, 'accidentally': 1.0, 'pocket': 1.0, 'dropped': 1.0, 'made': 1.0, 'which': 3.0, '6': 1.0, 'bib': 3.0, 'rate': 1.0, 'like': 1.0, 'i': 5.0, 'well': 1.0, 'didn': 1.0, 'got': 1.0, 'thrilled': 1.0, 'that': 3.0, 'because': 1.0, 'required': 1.0, '1': 1.0, 'meant': 1.0, 'things': 1.0, 'enjoyed': 1.0, 'out': 1.0, 'sauce': 1.0, 'wide': 1.0, 'ones': 2.0, 'too': 1.0, 'one': 1.0, 'washing': 1.0, 'effectively': 1.0, 'be': 2.0, 'drink': 1.0}
Word element => {'cover': 1.0, 'her': 1.0, 'a': 1.0, 'rise': 1.0, 'to': 1.0, 'helped': 1.0, 'faucet': 1.0, 'and': 2.0, 'great': 1.0, 'hair': 1.0, 'it': 3.0, 'love': 1.0, 'this': 1.0, 'used': 1.0, 'the': 1.0, 'my': 1.0, 'for': 2.0, 'daughter': 1.0, 'i': 2.0, 'when': 1.0, 'was': 2.0, 'little': 1.0, 'she': 1.0}
Word element => {'s': 1.0, 'thing': 1.0, 'safety': 1.0, 'real': 1.0, 'a': 2.0, 'even': 1.0, 'worth': 1.0, 'not': 2.0, 'how': 1.0, 'who': 1.0, 'them': 1.0, 'out': 1.0, 'proofing': 1.0, 'month': 1.0, 'joke': 1.0, 'him': 1.0, '10': 1.0, 'it': 1.0, 'with': 1.0, 'for': 1.0, 'playing': 1.0, 'electrician': 1.0, 'the': 1.0, 'these': 1.0, 'little': 1.0, 'pull': 1.0, 'my': 1.0, 'bought': 1.0, 'to': 2.0, 'off': 1.0, 'loves': 1.0, 'money': 1.0, 'about': 1.0, '1': 1.0, 'old': 1.0, 'i': 1.0, 'took': 1.0, 'minute': 1.0, 'cords': 1.0, 'figure': 1.0}
Word element => {'not': 1.0, 'do': 1.0, 'made': 1.0, 'cheaply': 1.0, 'very': 1.0, 'this': 2.0, 'somehow': 1.0, 'are': 1.0, 'product': 1.0, 'bought': 2.0, 'buy': 1.0, 'i': 5.0, 'battery': 1.0, 'back': 2.0, 'two': 2.0, 'the': 2.0, 'these': 2.0, 'batteries': 1.0, 'of': 1.0, 'cap': 1.0, 'when': 2.0, 'unscrewed': 1.0, 'to': 1.0, 'place': 1.0, 'operated': 1.0, 'could': 1.0, 'in': 1.0, 'missed': 1.0, 'never': 1.0, 'screw': 1.0}
Word element => {'instead': 1.0, 'up': 1.0, 'cute': 1.0, 'ended': 1.0, 'but': 1.0, 'good': 1.0, 'gives': 1.0, 'do': 1.0, 'not': 2.0, 'and': 3.0, 'very': 1.0, 'he': 1.0, 'this': 1.0, 'it': 1.0, 'while': 1.0, 'fast': 1.0, 'was': 1.0, 'purchased': 1.0, 'have': 2.0, 'turn': 2.0, 'in': 1.0, 'for': 1.0, 'to': 4.0, 'our': 1.0, 'night': 1.0, 'baby': 1.0, 'on': 2.0, 'is': 2.0, 'want': 1.0, 'wear': 1.0, 'go': 1.0, 's': 1.0, 'could': 1.0, 'a': 2.0, 'bright': 1.0, 'light': 3.0, 'the': 3.0, 'i': 3.0, 'auto': 1.0, 'feature': 1.0, 'other': 1.0, 'each': 1.0, 'super': 1.0, 'room': 1.0, 'sensitive': 1.0, 'item': 1.0, 'batteries': 1.0, 'purchasing': 1.0, 'made': 1.0, 'out': 1.0, 'option': 1.0, 'off': 2.0, 'so': 1.0, 'time': 1.0, 'sleeping': 1.0, 'which': 1.0, 'did': 1.0}
Word element => {'do': 1.0, 'just': 1.0, 'people': 1.0, 'recommend': 1.0, 'dangle': 1.0, 'them': 1.0, 'of': 2.0, 'up': 1.0, 'likes': 1.0, 'have': 3.0, 'a': 2.0, 'long': 1.0, 'although': 1.0, 'that': 2.0, 'their': 1.0, 'hanging': 1.0, 'wrap': 1.0, 'playing': 1.0, 'the': 5.0, 'cat': 1.0, 'are': 2.0, 'kids': 2.0, 'pull': 1.0, 'actually': 1.0, 'for': 2.0, 'love': 1.0, 'i': 4.0, 'it': 2.0, 'buying': 1.0, 'with': 1.0, 'safety': 2.0, 'got': 1.0, 'instead': 1.0, 'shades': 2.0, 'they': 1.0, 'is': 1.0, 'these': 2.0, 'attack': 1.0, 'in': 1.0, 'because': 1.0, 'not': 1.0, 'cords': 2.0, 'cats': 1.0, 'to': 2.0, 'any': 1.0, 'event': 1.0, 'if': 1.0, 'when': 1.0, 'you': 2.0, 'or': 1.0, 'who': 1.0, 'cord': 2.0, 'and': 2.0, 'so': 1.0, 'organized': 1.0, 'great': 1.0, 'nice': 1.0, 'letting': 1.0}
Word element => {'into': 1.0, 'wood': 1.0, 'have': 1.0, 'install': 1.0, 'screw': 1.0, 'it': 4.0, 'provided': 1.0, 'is': 2.0, 'you': 1.0, 'what': 1.0, 'looks': 1.0, 'no': 2.0, 'easy': 1.0, 'exactly': 1.0, 'to': 2.0, 'like': 1.0, 'less': 1.0, 'more': 1.0}
Word element => {'reach': 1.0, 'of': 2.0, 'out': 1.0, 'the': 1.0, 'wrap': 1.0, 'hands': 1.0, 'clear': 1.0, 'is': 1.0, 'cords': 1.0, 'hard': 1.0, 'curious': 1.0, 'easily': 1.0, 'to': 2.0, 'notice': 1.0, 'intended': 1.0, 'however': 1.0, 'works': 1.0, 'perfectly': 1.0, 'as': 1.0}
Word element => {'lifesaver': 1.0, 'a': 1.0, 'was': 1.0, 'gets': 1.0, 'keeping': 1.0, 'from': 1.0, 'sick': 1.0, 'my': 2.0, 'falls': 1.0, 'for': 2.0, 'kitchen': 1.0, 'dirty': 1.0, 'cord': 2.0, 'the': 2.0, 'great': 1.0, 'is': 1.0, 'blinds': 1.0, 'both': 1.0, 'this': 2.0, 'being': 1.0, 'place': 1.0, 'all': 2.0, 'childproofing': 1.0, 'over': 1.0, 'always': 1.0, 'or': 1.0, 'into': 1.0, 'and': 1.0}
Word element => {'not': 1.0, 'c': 1.0, 'b': 1.0, 'that': 1.0, 'blind': 1.0, 'very': 2.0, 'and': 1.0, 'like': 1.0, 'simple': 1.0, 'to': 3.0, 'cords': 1.0, 'dangling': 2.0, 'solution': 1.0, 'easy': 1.0, 'they': 3.0, 'are': 4.0, 'these': 1.0, 'the': 2.0, 'cord': 1.0, 'prevent': 1.0, 'install': 1.0, 'you': 1.0, 'simply': 1.0, 'a': 1.0, 'wrap': 1.0, 'around': 1.0, 'noticeable': 1.0, 'clear': 1.0, 'i': 1.0}
Word element => {'window': 1.0, 'i': 1.0, 'be': 1.0, 'that': 1.0, 'but': 1.0, 'strings': 1.0, 'which': 1.0, 'catch': 1.0, 'on': 1.0, 'ends': 1.0, 'the': 5.0, 'could': 1.0, 'working': 1.0, 'when': 1.0, 'little': 1.0, 'angle': 2.0, 'sometimes': 1.0, 'frame': 1.0, 'to': 3.0, 'with': 1.0, 'it': 3.0, '80': 1.0, 'and': 2.0, 'blind': 1.0, 'seems': 1.0, 'pretty': 1.0, 'wind': 1.0, 'full': 1.0, 'is': 1.0, 'cords': 1.0, 'we': 1.0, 'have': 2.0, 'at': 1.0, 'space': 1.0, 'hold': 1.0, 'them': 2.0, 'funny': 1.0, 'a': 1.0, 'though': 1.0, 'long': 1.0, 'does': 1.0, 'installed': 1.0, 'take': 1.0, 'just': 1.0, 'seconds': 1.0, 'enough': 1.0, 'around': 2.0}
Word element => {'in': 1.0, 'it': 1.0, 'nice': 1.0, 'clear': 1.0, 'because': 1.0, 'hardware': 1.0, 'they': 2.0, 'blends': 1.0, 'advertised': 1.0, 'necessary': 1.0, 'the': 2.0, 'work': 1.0, 'as': 1.0, 'to': 1.0, 'easy': 1.0, 'all': 1.0, 'install': 1.0, 'come': 1.0, 'is': 1.0, 'with': 1.0}
Word element => {'work': 1.0, 'great': 1.0, 'and': 1.0, 'install': 1.0, 'to': 1.0, 'essy': 1.0, 'really': 1.0, 'are': 1.0, 'these': 1.0}
Word element => {'problems': 1.0, 'new': 1.0, 'causing': 1.0, 'without': 1.0, 'cords': 1.0, 'them': 1.0, '3m': 1.0, 'daily': 1.0, 'with': 1.0, 'all': 1.0, 'have': 1.0, 'i': 1.0, 'used': 1.0, 'when': 1.0, 'apart': 1.0, 'winders': 1.0, 'these': 1.0, 'the': 2.0, 'keep': 1.0, 'circular': 1.0, 'cord': 2.0, 'next': 1.0, 'they': 2.0, 'my': 1.0, 'went': 1.0, 'wrong': 1.0, 'were': 1.0, 'that': 1.0, 'strips': 1.0, 'difficult': 1.0, 'had': 1.0, 'to': 2.0, 'use': 2.0, 'couple': 1.0, 'get': 2.0, 'and': 2.0, 'windows': 1.0, 'of': 1.0, 'set': 1.0, 'up': 3.0, 'would': 1.0, 'on': 1.0, 'wrapped': 1.0, 'almost': 1.0, 'or': 1.0, 'a': 1.0, 'pulled': 1.0}
Word element => {'of': 1.0, 'that': 1.0, 'prefer': 1.0, 'your': 1.0, 'if': 1.0, 'doesn': 1.0, 'but': 1.0, 'sometimes': 1.0, 'pacifier': 1.0, 'him': 1.0, 'thermometer': 1.0, 'likes': 1.0, 'for': 1.0, 'in': 1.0, 'idea': 1.0, 'not': 2.0, 'genius': 1.0, 'is': 1.0, 'this': 1.0, 'it': 3.0, 'good': 1.0, 'think': 1.0, 'i': 1.0, 'while': 1.0, 's': 2.0, 'nipple': 1.0, 't': 1.0, 'the': 1.0, 'my': 1.0, 'a': 2.0, 'chokes': 1.0, 'pacifiers': 1.0, 'child': 2.0, 'shape': 2.0, 'and': 2.0, 'works': 1.0, 'long': 1.0}
Word element => {'hates': 1.0, 'out': 1.0, 'drag': 1.0, 'turn': 1.0, 'even': 1.0, 'thermometer': 1.0, 'use': 1.0, 'sanitized': 1.0, 'up': 1.0, 'opened': 1.0, 'other': 1.0, 't': 1.0, 'the': 2.0, 'regular': 1.0, 'fever': 1.0, 'digital': 1.0, 'away': 1.0, 'and': 3.0, 'on': 1.0, 'months': 1.0, 'few': 1.0, 'doesn': 1.0, 'put': 1.0, 'well': 1.0, 'a': 2.0, 'this': 2.0, 'it': 5.0, 'ordered': 1.0, 'tried': 1.0, 'night': 1.0, 'i': 5.0, 'thinking': 1.0, 'that': 2.0, 'would': 1.0, 'had': 1.0, 'to': 2.0, 'was': 1.0, 'open': 1.0, 'she': 1.0, 'needed': 1.0, 'running': 1.0, 'ago': 1.0, 'high': 1.0, 'my': 1.0, 'when': 1.0, 'daughter': 1.0}
Word element => {'to': 1.0, 'everyone': 1.0, 'family': 1.0, 'rn': 1.0, 'i': 1.0, 'an': 1.0, 'seems': 1.0, 'cannot': 1.0, 'his': 1.0, 'become': 1.0, 'love': 1.0, 'for': 2.0, 'gift': 1.0, 'initially': 1.0, 'so': 1.0, 'mother': 1.0, 'these': 2.0, 'they': 1.0, 'godson': 1.0, 'my': 2.0, 'friends': 1.0, 'bought': 1.0, 'raving': 1.0, 'baby': 1.0, 'about': 1.0, 'them': 1.0, 'a': 1.0, 'all': 1.0, 'have': 1.0, 'stop': 1.0, 'standard': 1.0, 'issue': 1.0}
Word element => {'number': 1.0, 'through': 1.0, 'depending': 1.0, 'm': 1.0, 'for': 1.0, 'one': 1.0, 'my': 2.0, 'before': 1.0, 'long': 1.0, 'have': 1.0, 'bummis': 1.0, 'thing': 1.0, 'old': 1.0, 'been': 2.0, 'i': 2.0, 'two': 2.0, 'weeks': 1.0, 'will': 1.0, 'but': 1.0, 'out': 1.0, 'very': 1.0, 'son': 2.0, 'giving': 1.0, 'since': 1.0, 'the': 3.0, 'with': 1.0, 'happy': 1.0, 'velcro': 1.0, 'outgrown': 1.0, 'whisper': 1.0, 'brites': 1.0, 'it': 1.0, 'super': 1.0, 've': 1.0, 'was': 1.0, 'had': 1.0, 'to': 2.0, 'except': 1.0, 'on': 2.0, 'wraps': 1.0, 'baby': 1.0, 'them': 3.0, 'started': 1.0, 'using': 1.0, 'know': 1.0, 's': 1.0, 'and': 2.0, 'too': 1.0, 'soon': 1.0, 'how': 1.0, 'snaps': 1.0, 'last': 2.0}
Word element => {'quickly': 1.0, 'was': 1.0, 'also': 1.0, 'sent': 1.0, 'well': 1.0, 'washed': 1.0, 'print': 1.0, 'is': 1.0, 'so': 1.0, 'cute': 1.0, 'this': 1.0, 'working': 1.0, 'and': 1.0, 'really': 1.0, 'has': 2.0, 'been': 1.0, 'great': 1.0, 'it': 2.0}
Word element => {'delivers': 1.0, 'but': 1.0, 'thirsties': 1.0, 'covers': 2.0, 'during': 1.0, 'other': 1.0, 'like': 1.0, 'any': 1.0, 'i': 1.0, 'clear': 1.0, 'enough': 1.0, 'cover': 2.0, 'to': 2.0, 'in': 1.0, 'newborn': 2.0, 'go': 1.0, 'my': 1.0, 'the': 5.0, 'love': 1.0, 'for': 1.0, 'yet': 1.0, 'and': 1.0, 'stage': 2.0, 'has': 1.0, 'is': 2.0, 'rubbing': 1.0, 'this': 2.0, 'when': 1.0, 'prevent': 1.0, 'cord': 2.0, 'early': 2.0, 'not': 1.0, 'low': 1.0, 'fallen': 1.0, 'or': 1.0, 'off': 1.0, 'bummis': 1.0, 'bleeding': 1.0, 'stump': 2.0, 'dip': 1.0, 'size': 1.0}
Word element => {'use': 1.0, '30': 1.0, 'pushing': 1.0, 'began': 1.0, 'guy': 1.0, 'little': 1.0, 'lbs': 1.0, 'when': 1.0, 'large': 1.0, 'upgraded': 1.0, 'but': 1.0, 'starter': 1.0, 'cloth': 1.0, 'to': 1.0, 'as': 1.0, 'size': 1.0, 'sizes': 1.0, 'medium': 1.0, 'were': 1.0, 'print': 1.0, 'kit': 1.0, 'love': 1.0, 'with': 1.0, 'elastic': 1.0, 'osocozy': 1.0, 'rocket': 1.0, 'water': 1.0, 'diapering': 1.0, 'in': 2.0, 'part': 1.0, 'soaked': 1.0, 'solid': 1.0, 've': 1.0, 'super': 1.0, 'm': 1.0, 'and': 4.0, 'me': 1.0, 'are': 1.0, 'prefolds': 1.0, 'the': 7.0, 'diaper': 1.0, 'had': 1.0, 'snaps': 1.0, 'given': 2.0, 'problem': 1.0, 'we': 3.0, 't': 1.0, 'a': 5.0, 'them': 2.0, 'one': 1.0, 'huge': 1.0, 'never': 2.0, 'nighter': 1.0, 'i': 4.0, 'fan': 1.0, 'bummis': 1.0, 'small': 1.0, 'have': 1.0, 'recently': 1.0, 'their': 1.0, 'covers': 1.0, 'band': 1.0, 'they': 3.0, 'dry': 1.0, 'like': 1.0, 'dream': 1.0, 'break': 1.0, 'withstand': 1.0, 'warm': 1.0, 'legs': 1.0, 're': 1.0, 'still': 1.0, 'of': 2.0, 'reasonably': 1.0, 'waterproof': 1.0, 'even': 1.0, 'won': 1.0, 'wash': 2.0, 'over': 1.0}
Word element => {'worth': 1.0, 'and': 1.0, 'the': 1.0, 'great': 1.0, 'overall': 1.0, 'bigger': 1.0, 's': 1.0, 'once': 1.0, 'perfect': 1.0, 'be': 1.0, 'he': 1.0, 'it': 1.0, 'has': 1.0, 'blow': 1.0, 'or': 1.0, 'leaks': 1.0, 'had': 1.0, 'though': 1.0, 'not': 1.0, 'outs': 1.0, 'a': 2.0, 'awkwardly': 1.0, 'that': 1.0, 'cover': 1.0, 'any': 1.0, 'fits': 1.0, 'my': 1.0, 'cost': 1.0, '9': 1.0, 'sure': 1.0, 'pound': 1.0, 'old': 1.0, '3': 1.0, 'will': 1.0, 'quality': 2.0, 'week': 1.0, 'little': 2.0}
Word element => {'either': 1.0, 'good': 1.0, 'cross': 1.0, 'years': 1.0, 'simply': 1.0, 'bad': 1.0, 'aren': 2.0, 'aspirators': 1.0, '1st': 1.0, 'style': 1.0, 'safety': 1.0, 'nasal': 1.0, 'works': 1.0, 'dreadful': 1.0, 'but': 2.0, 'hospital': 2.0, 'brought': 1.0, 'you': 2.0, 'buy': 1.0, 'red': 1.0, 'these': 1.0, 't': 3.0, 'the': 5.0, 'american': 1.0, 'nearly': 1.0, 'aspiratorinstead': 1.0, 'home': 1.0, 'should': 1.0, 'like': 1.0, 'from': 1.0, 'as': 2.0, 'first': 1.0, 'this': 1.0, 'it': 2.0, 'they': 1.0, 'isn': 1.0, 'one': 1.0, 'effective': 1.0, 'simplebulb': 1.0, 'aspirator': 1.0, 'syringe': 1.0, 'looks': 1.0, 'really': 1.0}
Word element => {'like': 1.0, 'frustrated': 1.0, 'wants': 1.0, 'gets': 1.0, 'old': 1.0, '19': 1.0, 'problem': 1.0, 'only': 1.0, 'doorknob': 1.0, 'hung': 1.0, 'just': 1.0, 'used': 1.0, 'when': 1.0, 'and': 1.0, 'sufficiently': 1.0, 'definitely': 1.0, 'have': 1.0, 'his': 2.0, 'protect': 1.0, 'both': 1.0, 'also': 1.0, 'will': 1.0, 'can': 2.0, 'but': 2.0, 'thick': 1.0, 'toddler': 1.0, 'learn': 1.0, 'fingers': 3.0, 'he': 2.0, 'door': 4.0, 'around': 2.0, 'is': 4.0, 'better': 1.0, 'child': 1.0, 'be': 1.0, 'him': 1.0, 'product': 1.0, 'brother': 1.0, 'for': 2.0, 'one': 1.0, 'i': 2.0, 'not': 4.0, 'because': 2.0, 'super': 1.0, 'necessary': 1.0, 'all': 2.0, 'as': 1.0, 'to': 4.0, 'doors': 1.0, 'my': 2.0, 'always': 1.0, 'stopper': 1.0, 'got': 1.0, 'so': 1.0, 'won': 1.0, 'put': 1.0, 'think': 1.0, 'on': 2.0, 'month': 1.0, 'it': 4.0, 'slam': 2.0, 'the': 6.0, 'playing': 1.0, 'little': 1.0, 'a': 2.0, 't': 2.0, 's': 1.0, 'they': 1.0, 'are': 1.0, 'being': 1.0, 'if': 1.0, 'same': 1.0}
Word element => {'service': 1.0, 'customer': 1.0, 'everyone': 1.0, 'refer': 1.0, 'worry': 1.0, 'filters': 1.0, 'about': 1.0, 'no': 1.0, 'soapy': 1.0, 'just': 2.0, 'clean': 1.0, 'returning': 1.0, 'also': 1.0, 'of': 1.0, 'one': 3.0, 'have': 1.0, 'nosefrida': 1.0, 'plastic': 1.0, 'hard': 1.0, 'tip': 1.0, 'rubber': 1.0, 'well': 1.0, 'has': 1.0, 'warm': 1.0, 'old': 1.0, 'm': 1.0, 'years': 1.0, 'only': 1.0, 'older': 1.0, '2': 2.0, 'but': 1.0, 'work': 3.0, 'don': 1.0, 'easy': 1.0, 'get': 1.0, 'and': 8.0, 'as': 2.0, 'to': 8.0, 'doesn': 1.0, 'refund': 1.0, 'was': 1.0, 'ordered': 1.0, 'aspirator': 1.0, 'originally': 1.0, 'that': 1.0, 'actually': 1.0, 'came': 1.0, 'soft': 1.0, 'this': 4.0, 'found': 1.0, 'i': 6.0, 'tried': 2.0, 'the': 5.0, 'off': 1.0, 's': 1.0, 'a': 2.0, 't': 2.0, 'going': 2.0, 'water': 1.0, 'daughter': 1.0, 'am': 1.0, 'you': 1.0, 'again': 1.0, 'when': 1.0, 'need': 1.0, 'make': 1.0, 'nice': 1.0, '1': 1.0, 'stays': 1.0, 'snot': 1.0, 'in': 1.0, 'very': 1.0, 'little': 1.0, 'cup': 1.0, 'another': 1.0, 'lid': 2.0, 'my': 1.0, 'those': 1.0, 'not': 1.0, 'me': 1.0, 'wow': 1.0, 'does': 1.0, 'after': 1.0, 'got': 1.0, 'wonderful': 1.0, 'use': 2.0, 'know': 1.0, 'like': 1.0, 'using': 1.0, 'is': 2.0, 'asked': 1.0, 'it': 8.0, 'she': 2.0, 'felt': 1.0, 'so': 1.0, 'stuffy': 1.0}
Word element => {'will': 1.0, 'kids': 1.0, 'least': 1.0, 'if': 1.0, 'good': 1.0, 'oxo': 1.0, 'steep': 1.0, 'price': 1.0, 'folds': 1.0, 'back': 2.0, 'button': 1.0, 'stuff': 1.0, 'just': 1.0, 'so': 2.0, 'all': 1.0, 'on': 1.0, 'gets': 1.0, 'factor': 1.0, 'weeks': 1.0, 'away': 1.0, 'recommending': 1.0, 'going': 1.0, 'a': 4.0, 'we': 2.0, 't': 3.0, 's': 3.0, 'limit': 2.0, 'years': 1.0, 'under': 1.0, 'dinner': 1.0, 'stand': 1.0, 'down': 1.0, 've': 2.0, 'and': 6.0, 'too': 1.0, 'age': 2.0, 'having': 1.0, 'does': 1.0, 'materials': 1.0, 'strap': 1.0, 'loves': 1.0, 'been': 1.0, 'not': 2.0, 'closely': 1.0, 'sure': 2.0, 'found': 1.0, 'bit': 1.0, 'easy': 1.0, 'test': 1.0, 'chair': 2.0, 'extremely': 1.0, 'over': 1.0, 'daily': 1.0, 'learn': 1.0, 'few': 1.0, 'this': 3.0, 'are': 1.0, 'my': 1.0, 'for': 2.0, 'using': 1.0, 'table': 1.0, 'he': 3.0, 'yet': 1.0, 'pretty': 1.0, 'to': 3.0, 'm': 2.0, 'in': 4.0, 'seat': 4.0, 'supervise': 1.0, 'really': 2.0, 'of': 2.0, 'the': 17.0, 'liking': 1.0, 'but': 3.0, 'falling': 1.0, 'food': 2.0, 'sitting': 1.0, 'be': 1.0, 'ensure': 1.0, 'doesn': 2.0, 'helping': 1.0, 'it': 10.0, 'him': 1.0, 'son': 1.0, 'proper': 1.0, 'worth': 1.0, 'now': 1.0, 'etiquette': 1.0, 'between': 1.0, 'is': 5.0, 'at': 3.0, 'simple': 1.0, 'cleaning': 1.0, 'push': 1.0, 'you': 2.0, 'that': 1.0, 'because': 1.0, 'fall': 2.0, 'easily': 1.0, 'do': 1.0, '2': 2.0, 'happens': 1.0, 'have': 1.0, 'as': 2.0, 'falls': 2.0, 'well': 1.0, 'i': 4.0, 'putting': 1.0, 'coming': 1.0, 'cushion': 4.0, 'make': 1.0, 'clean': 1.0, 'sometimes': 1.0, 'isn': 1.0, 'his': 2.0, 'obvious': 1.0, 'come': 1.0, 'seems': 1.0, 'until': 1.0, 'out': 4.0, 'dried': 1.0, 'although': 1.0, 'never': 1.0, 'had': 1.0, 'breakfast': 1.0, 'problem': 1.0, 'with': 1.0, 'while': 1.0, 'lift': 1.0, 'also': 1.0}
Word element => {'chair': 1.0, 'away': 1.0, 'move': 1.0, 'she': 1.0, 'been': 1.0, 'when': 1.0, 'daughter': 1.0, 'for': 1.0, 'earlier': 1.0, 'this': 2.0, 'have': 1.0, 'should': 1.0, 'my': 1.0, 'stool': 1.0, 'bought': 1.0, 't': 1.0, 'great': 1.0, 's': 1.0, 'sitting': 1.0, 'a': 1.0, 'placed': 1.0, 'doesn': 1.0, 'on': 2.0, 'is': 2.0, 'that': 1.0, 'seat': 2.0, 'not': 1.0, 'stable': 2.0, 'very': 1.0}
Word element => {'chair': 1.0, 'about': 1.0, 'don': 1.0, 'if': 1.0, 'however': 1.0, 'chairs': 1.0, 'dining': 1.0, 'care': 1.0, 'secured': 1.0, 'clean': 1.0, 'easy': 2.0, 'strap': 1.0, 'matches': 1.0, 'even': 1.0, 'then': 1.0, 'took': 1.0, 'well': 1.0, 'the': 2.0, 'could': 1.0, 'we': 1.0, 'a': 3.0, 't': 2.0, 'my': 2.0, 'very': 1.0, 'and': 2.0, 'it': 5.0, 'perfect': 1.0, 'wish': 1.0, 'this': 4.0, 'only': 1.0, 'modern': 1.0, 'looking': 1.0, 'that': 3.0, 'gave': 1.0, 'loves': 1.0, 'to': 5.0, 'our': 2.0, 'as': 1.0, 'seat': 2.0, 'because': 1.0, 'is': 4.0, 'keep': 1.0, 'movies': 1.0, 'have': 1.0, 'just': 1.0, 'few': 1.0, 'you': 1.0, 'times': 1.0, 'use': 1.0, 'daughter': 1.0, 'booster': 1.0, 'would': 1.0, 'highly': 1.0, 'decor': 1.0, 'anyone': 1.0, 'i': 4.0, '4': 1.0, 'on': 2.0, 'opinion': 1.0, 'product': 1.0, 'stars': 1.0, 'store': 1.0, 'recommend': 1.0, 'doesn': 1.0, 'bottom': 1.0}
Word element => {'easy': 1.0, 'cleans': 1.0, 'big': 1.0, 'too': 1.0, 'isn': 1.0, 'no': 1.0, 'slip': 1.0, 'down': 1.0, 'works': 1.0, 'others': 1.0, 'compares': 1.0, 'how': 1.0, 'know': 1.0, 'so': 1.0, 'up': 1.0, 'says': 1.0, 'doesn': 1.0, 'but': 2.0, 'give': 1.0, 'perfect': 1.0, 'my': 1.0, 'it': 3.0, '5': 1.0, 'personality': 1.0, 'a': 1.0, 'should': 1.0, 'complaints': 1.0, 'maybe': 1.0, 'great': 1.0, 't': 4.0, 'nothing': 1.0, 'really': 1.0, 'is': 1.0, 'other': 1.0, 'we': 1.0, 'wipes': 1.0, 'haven': 1.0, 'to': 2.0, 'had': 1.0, 'i': 2.0, 'buy': 1.0, 'don': 1.0, 'any': 1.0, 'seats': 1.0}
Word element => {'too': 1.0, 'clean': 1.0, 'you': 1.0, 'bring': 1.0, 'to': 2.0, 'easy': 2.0, 'super': 1.0, 'this': 1.0, 'at': 1.0, 'with': 1.0, 'is': 1.0, 'a': 1.0, 'great': 2.0, 'booster': 1.0, 'and': 1.0, 'very': 1.0, 'home': 1.0, 'convenient': 1.0, 'for': 1.0}
Word element => {'grows': 1.0, 'this': 1.0, 'use': 1.0, 'old': 2.0, 'toddler': 1.0, 'but': 1.0, 'very': 1.0, 'year': 1.0, 'plastic': 1.0, 'step': 1.0, 'while': 1.0, 'from': 1.0, 'hard': 2.0, 'month': 1.0, 'it': 2.0, 'with': 1.0, 'as': 1.0, 'seat': 3.0, 'not': 1.0, 'got': 1.0, 'the': 5.0, 'these': 1.0, 'is': 3.0, 'pictured': 1.0, 'taupe': 1.0, 'exactly': 1.0, 'up': 1.0, 'of': 1.0, 'and': 2.0, 'lovely': 1.0, 'design': 1.0, 'a': 2.0, 's': 1.0, 'we': 1.0, 'has': 1.0, 'into': 1.0, 'been': 1.0, 'cushion': 1.0, 'using': 1.0, 'one': 1.0, 'will': 1.0, 'also': 1.0, 'have': 1.0, 'lionheart': 1.0, 'however': 1.0, 'seats': 1.0, 'are': 1.0, 'same': 1.0, 'material': 1.0, 'so': 1.0, 'bit': 1.0, 'low': 1.0, 'let': 1.0, '20': 1.0, '5': 1.0}
Word element => {'it': 1.0, 'donate': 1.0, 'my': 1.0, 'save': 1.0, 'didn': 1.0, 'great': 1.0, 'but': 1.0, 'work': 1.0, 'that': 1.0, 'army': 1.0, 'since': 1.0, 'at': 1.0, 'fisher': 1.0, 'receive': 1.0, 'prefered': 1.0, 'simply': 1.0, 'seems': 1.0, 'will': 2.0, 'booster': 1.0, 'receipt': 3.0, 'refund': 2.0, 'is': 1.0, 'take': 1.0, 'many': 1.0, 'skin': 1.0, 'salvation': 1.0, 'price': 1.0, '34': 2.0, 'of': 1.0, 'reported': 1.0, 'would': 1.0, 'flaking': 1.0, 've': 1.0, 'reason': 1.0, 'year': 1.0, 'guarantee': 1.0, 'replacement': 3.0, 'had': 1.0, 'because': 1.0, 'than': 1.0, 't': 1.0, 'discovered': 1.0, 'we': 1.0, 'a': 5.0, 'cushion': 1.0, 'return': 1.0, 'less': 1.0, 'and': 3.0, 'off': 1.0, 'vintage': 1.0, 'without': 1.0, 'the': 5.0, 'website': 1.0, 'thrift': 1.0, 'users': 1.0, 'or': 1.0, 'i': 5.0, 'must': 1.0, 'have': 2.0, 'contacted': 1.0, 'include': 1.0, 'through': 1.0, 'their': 1.0, 'were': 1.0, 'shop': 1.0, 'they': 2.0, 'extremely': 1.0, 'helpful': 1.0, 'refunds': 1.0, 'other': 1.0, 'satisfaction': 1.0, 'this': 1.0, 'allows': 1.0, 'for': 4.0, 'oxo': 4.0, 'product': 1.0, 'you': 2.0, 'as': 1.0, 'to': 3.0, 'seat': 2.0, 'any': 2.0, 'send': 1.0, 'exchange': 1.0}
Word element => {'it': 1.0, 'is': 1.0, 'the': 2.0, 'my': 1.0, 'to': 1.0, 'right': 1.0, 'clean': 1.0, 'carry': 1.0, 'cushion': 1.0, 'of': 1.0, 'beautifully': 1.0, 'just': 1.0, 'and': 1.0, 'designed': 1.0, 'amount': 1.0, 'toddler': 1.0, 'loves': 1.0, 'firmness': 1.0, 'did': 1.0, 'i': 1.0, 'also': 1.0, 'store': 1.0, 'easy': 1.0, 'mention': 1.0, 'that': 1.0}
Word element => {'us': 1.0, 'the': 1.0, 'at': 1.0, 'sitting': 1.0, 'enjoys': 1.0, 'boy': 1.0, 'our': 1.0, 'product': 1.0, 'quality': 1.0, 'and': 1.0, 'green': 1.0, 'i': 1.0, 'one': 1.0, 'have': 1.0, 'expected': 1.0, 'exactly': 1.0, 'now': 1.0, 'to': 1.0, 'yesterday': 1.0, 'just': 1.0, 'perfect': 1.0, 'table': 1.0, 'easy': 1.0, 'got': 1.0, 'so': 1.0, 'portable': 1.0, 'color': 1.0, 'leather': 1.0, 'very': 1.0, 'good': 1.0, 'chairs': 1.0, 'nice': 1.0, 'with': 1.0, 'this': 1.0, 'it': 1.0, 'what': 1.0, 'works': 1.0, 'we': 1.0, 'simple': 1.0, 'clean': 1.0}
Word element => {'height': 1.0, 'clean': 1.0, 'wipe': 1.0, 'nice': 2.0, 'table': 1.0, 'very': 1.0, 'and': 1.0, 'they': 1.0, 'stay': 1.0, 'my': 1.0, 'the': 1.0, 'are': 1.0, 'kitchen': 1.0, 'for': 1.0, 'in': 1.0, 'just': 1.0, 'easy': 1.0, 'right': 1.0, 'product': 1.0, 'place': 1.0, 'to': 1.0}
Word element => {'you': 1.0, 'set': 1.0, 'once': 1.0, 'doesnt': 1.0, 'to': 1.0, 'bring': 1.0, 'move': 1.0, 'we': 1.0, 'have': 1.0, 'this': 1.0, 'it': 2.0, 'absolutely': 1.0, 'chair': 2.0, 'loves': 1.0, 'chairs': 1.0, 'son': 1.0, 'everywhere': 1.0, 'on': 1.0, 'my': 1.0, 'a': 1.0, 'wooden': 1.0, 'easy': 1.0, 'clean': 1.0, 'and': 1.0}
Word element => {'not': 1.0, 'and': 1.0, 'clean': 1.0, 'easy': 1.0, 'comfortable': 1.0, 'bulky': 1.0, 's': 2.0, 'it': 2.0, 'love': 4.0, 'i': 2.0, 'to': 1.0, 'old': 1.0, 'got': 1.0, 'this': 2.0, 'seat': 2.0, 'year': 1.0, 'for': 1.0, '2': 1.0, 'son': 1.0, 'booster': 1.0, 'my': 1.0}
Word element => {'transition': 1.0, 'with': 1.0, 'great': 1.0, 'can': 1.0, 'be': 1.0, 'friends': 1.0, 'family': 1.0, 'and': 1.0, 'get': 1.0, 'out': 2.0, 'along': 1.0, 'before': 1.0, 'take': 1.0, 'eat': 1.0, 'you': 1.0, 'to': 4.0, 'ready': 1.0, 'but': 1.0, 'independence': 1.0, 'no': 1.0, 'seat': 1.0, 'belt': 1.0, 'they': 1.0, 'easy': 1.0, 'may': 1.0}
Word element => {'anyone': 1.0, 'this': 1.0, 'would': 1.0, 'definitely': 1.0, 'have': 1.0, 'then': 1.0, 'ones': 1.0, 'these': 2.0, 'sit': 1.0, 'cushion': 1.0, 'are': 2.0, 'for': 1.0, 'product': 1.0, 'actually': 1.0, 'better': 1.0, 'eat': 1.0, 'if': 1.0, 'restaurants': 1.0, 'they': 2.0, 'slipping': 1.0, 'protected': 1.0, 'easy': 2.0, 'recommend': 1.0, 'store': 1.0, 'fear': 1.0, 'comes': 1.0, 'fold': 1.0, 'child': 1.0, 'up': 1.0, 'of': 1.0, 'off': 2.0, 'clean': 2.0, 'out': 1.0, '500': 1.0, 'and': 2.0, 'seat': 2.0, 'to': 5.0, 'as': 1.0, 'at': 1.0, 'stay': 1.0, 'in': 2.0, 'the': 4.0, 'place': 1.0, 'without': 1.0, 'like': 1.0, 'restaurant': 1.0, 'entire': 1.0, 'one': 1.0, 'booths': 1.0, 'us': 1.0, 'you': 1.0, 'when': 1.0, 'take': 1.0, 'with': 2.0, 'a': 1.0, 'we': 2.0, 'go': 1.0}
Word element => {'table': 1.0, 'retro': 1.0, 'suitcase': 1.0, 'a': 2.0, 'down': 1.0, 'does': 1.0, 'colors': 1.0, 'fits': 1.0, 'another': 1.0, 'love': 1.0, 'for': 2.0, 'in': 2.0, 'look': 1.0, 'hooked': 1.0, 'had': 1.0, 'with': 1.0, 'buying': 1.0, 'at': 1.0, 'no': 1.0, 'our': 1.0, 'to': 3.0, 'seat': 2.0, 'this': 1.0, 'come': 1.0, 'looks': 1.0, 'it': 1.0, 'seatbelt': 2.0, 'style': 1.0, 'not': 2.0, 'modern': 1.0, 'nice': 5.0, 'unfortunately': 1.0, 'nicely': 1.0, 'soon': 1.0, 'green': 1.0, 'and': 1.0, 'travel': 1.0, 'be': 2.0, 'folds': 1.0, 'very': 2.0, 'would': 1.0, 'if': 1.0, 'sleek': 1.0, 'cushion': 1.0, 'is': 1.0, 'child': 1.0, 'anyway': 1.0, 'but': 1.0, 'will': 1.0, 'seem': 1.0, 'off': 1.0, 'easily': 1.0, 'design': 1.0, 'other': 1.0}
Word element => {'owner': 1.0, 'proud': 1.0, 'am': 1.0, 'durable': 1.0, 'cushion': 1.0, 'to': 4.0, 'this': 4.0, 'good': 1.0, 'clean': 2.0, 'be': 2.0, 'so': 1.0, 'boy': 1.0, 'grab': 1.0, 'simply': 1.0, 'are': 1.0, 'note': 1.0, 'an': 1.0, 'seat': 1.0, 'in': 2.0, 'strapped': 2.0, 'chair': 1.0, 'table': 1.0, 'like': 2.0, 'using': 1.0, 'fully': 1.0, 'feels': 1.0, 'wood': 1.0, 'and': 7.0, 'big': 1.0, 'my': 1.0, 'whole': 1.0, 'thing': 1.0, 'surfaces': 1.0, 'booster': 2.0, 'a': 3.0, 'we': 1.0, '5': 1.0, 'fabric': 1.0, 'for': 2.0, 'it': 4.0, 'with': 2.0, 'he': 2.0, 'please': 1.0, 'use': 2.0, 'old': 1.0, 'i': 5.0, 't': 2.0, 'likes': 1.0, 'kids': 1.0, 'expected': 1.0, 'sprayer': 1.0, 'that': 4.0, 'because': 1.0, 'than': 2.0, 'up': 2.0, 'year': 1.0, 'child': 1.0, 'isn': 1.0, 'wouldn': 1.0, 'spray': 1.0, 'supervised': 1.0, 'at': 1.0, 'is': 3.0, 'more': 1.0, 'much': 1.0, '1': 1.0, 'firmer': 1.0, 'the': 6.0, 'of': 2.0, 'really': 1.0, 'will': 1.0, 'stand': 1.0, 'down': 1.0, 'there': 1.0, 'perfectly': 1.0, 'many': 1.0, 'onto': 1.0, 'both': 1.0, 'sitting': 1.0, 'most': 1.0, 'work': 1.0, 'likely': 1.0, 'one': 1.0, 'easy': 2.0, 'towel': 1.0, 'if': 1.0, 'have': 1.0, 'pasta': 1.0, 'need': 1.0, 'or': 1.0, 'no': 2.0, 'years': 1.0, 'let': 1.0, 'straps': 1.0, 'something': 1.0, 'messy': 1.0, 'kitchen': 2.0, 'dry': 1.0, 'on': 1.0, 'slip': 1.0, 'grips': 1.0, 'overall': 1.0}
Word element => {'plays': 1.0, 'use': 1.0, 'floor': 1.0, 'toddler': 1.0, 'wiggly': 1.0, 'sits': 1.0, 'safety': 1.0, 'holding': 1.0, 'nothing': 1.0, 'on': 2.0, 'themselves': 1.0, 'able': 1.0, 'or': 1.0, 'belt': 1.0, 'meal': 1.0, 'entire': 1.0, 'still': 1.0, 'sit': 1.0, 'kid': 1.0, 'with': 2.0, 'used': 2.0, 'be': 2.0, 'an': 1.0, 'own': 2.0, 'their': 2.0, 'in': 3.0, 'accord': 1.0, 'i': 1.0, 'for': 5.0, 'daughter': 1.0, 'booster': 2.0, 'takes': 1.0, 'up': 2.0, 'of': 4.0, 'have': 1.0, 'this': 4.0, 'she': 1.0, 'it': 1.0, 'now': 1.0, 'older': 1.0, 'the': 8.0, 'clean': 1.0, 'is': 5.0, 'back': 1.0, 'seat': 6.0, 'to': 4.0, 'when': 1.0, 'again': 1.0, 'unless': 1.0, 'easily': 2.0, 'little': 1.0, 'very': 1.0, 'get': 1.0, 'easy': 1.0, 'folds': 1.0, 'green': 1.0, 'and': 2.0, 'cleaning': 1.0, 'getting': 1.0, 'could': 1.0, 't': 1.0, 'a': 6.0, 'capable': 1.0, 'well': 1.0, 'so': 2.0, 'bit': 1.0, 'time': 1.0, 'there': 1.0, 'chair': 4.0, 'hard': 1.0, 'properly': 1.0, 'out': 1.0, 'removes': 1.0, 'concern': 2.0, 'my': 2.0, 'into': 1.0, 'that': 2.0, 'only': 1.0, 'works': 1.0, 'space': 1.0, 'who': 2.0, 'toddlers': 1.0, 'not': 1.0, 'those': 1.0, 'are': 1.0, 'can': 2.0, 'but': 1.0, 'sitting': 1.0}
Word element => {'position': 1.0, 'up': 1.0, 'back': 1.0, 'with': 1.0, 'button': 1.0, 'push': 1.0, 'lightweight': 1.0, 'clean': 1.0, 'down': 3.0, 'wipe': 2.0, 'frame': 1.0, 'so': 2.0, 'off': 2.0, 'locks': 1.0, 'out': 2.0, 'just': 2.0, 'strong': 2.0, 'to': 2.0, 'seat': 2.0, 'all': 1.0, 'lift': 2.0, 'whole': 1.0, 'this': 1.0, 'lifts': 1.0, 'it': 5.0, 'is': 2.0, 'take': 1.0, 'pretty': 1.0, 'rinse': 1.0, 'booster': 1.0, 'the': 7.0, 'yet': 1.0, 'comfortable': 1.0, 'tiny': 1.0, 'a': 1.0, 's': 2.0, 'in': 2.0, 'also': 1.0, 'awesome': 1.0, 'into': 1.0, 'that': 1.0, 'sit': 1.0, 'cushion': 2.0, 'sides': 1.0, 'sometimes': 1.0, 'bits': 1.0, 'and': 3.0, 'of': 1.0, 'backrest': 1.0, 'crack': 1.0, 'can': 4.0, 'food': 1.0, 'but': 2.0, 'anything': 1.0, 'when': 1.0, 'you': 7.0, 'easily': 1.0, 'fallen': 1.0, 'has': 1.0, 'folds': 1.0, 'get': 1.0, 'easy': 1.0}
Word element => {'with': 1.0, 'table': 1.0, 'at': 1.0, 'likes': 1.0, 'he': 1.0, 'great': 1.0, 'stuff': 1.0, 'meals': 1.0, 'chair': 1.0, 'sit': 1.0, 'high': 1.0, 'sitting': 1.0, 'down': 1.0, 'but': 1.0, 'use': 1.0, 'still': 1.0, 'adults': 1.0, 'the': 3.0, 'for': 2.0, 'messy': 1.0}
Word element => {'flat': 1.0, 'can': 1.0, 'that': 2.0, 'sit': 1.0, 'nice': 1.0, 'great': 1.0, 'boost': 1.0, 'little': 1.0, 'needs': 1.0, 'seems': 1.0, 'in': 1.0, 'this': 2.0, 'it': 4.0, 'at': 1.0, 'store': 1.0, 'was': 3.0, 'wipe': 1.0, 'a': 4.0, 'well': 1.0, 'of': 2.0, 'addition': 1.0, 'the': 2.0, 'place': 1.0, 'like': 1.0, 'table': 2.0, 'year': 1.0, 'our': 2.0, 'seat': 1.0, 'to': 5.0, 'as': 1.0, 'old': 1.0, 'cloth': 1.0, 'two': 1.0, 'i': 1.0, 'for': 1.0, 'him': 1.0, 'easy': 2.0, 'get': 1.0, 'and': 2.0, 'on': 2.0, 'chair': 1.0, 'stay': 1.0, 'just': 1.0, 'by': 1.0, 'himself': 1.0, 'top': 1.0, 'off': 1.0, 'cover': 1.0, 'more': 1.0, 'is': 1.0, 'clean': 1.0}
Word element => {'stored': 1.0, 'be': 1.0, 'or': 1.0, 'clean': 1.0, 'easily': 1.0, 'but': 1.0, 'room': 1.0, 'dining': 1.0, 'our': 1.0, 'height': 1.0, 'right': 1.0, 'away': 1.0, 'and': 1.0, 'of': 1.0, 'up': 2.0, 'my': 1.0, 'booster': 1.0, 'the': 2.0, '5': 1.0, 'for': 1.0, 'year': 1.0, 'a': 1.0, 'old': 1.0, 'i': 1.0, 'wipe': 1.0, 'comes': 1.0, 'to': 3.0, 'was': 1.0, 'not': 1.0, 'apart': 1.0, 'perfect': 1.0, 'table': 1.0, 'needed': 1.0, 'solution': 1.0, 'this': 1.0, 'only': 1.0, 'it': 2.0, 'folds': 1.0, 'meals': 1.0, 'after': 1.0, 'boost': 1.0, 'down': 1.0, 'does': 1.0, 'her': 1.0}
Word element => {'consists': 1.0, 'that': 1.0, 'oxo': 1.0, '40': 1.0, 'than': 1.0, 'cheaper': 1.0, 'probably': 1.0, 'would': 1.0, 'again': 1.0, 'something': 1.0, 'buy': 1.0, 'given': 1.0, 'bad': 1.0, 'but': 1.0, '2': 2.0, 'purple': 1.0, 'i': 4.0, 'incorrect': 1.0, 'chair': 1.0, 'spraying': 1.0, 'stock': 2.0, 'food': 1.0, 'or': 2.0, 'is': 3.0, 'slightly': 1.0, 'computer': 1.0, 'however': 1.0, 'know': 1.0, 'like': 1.0, 'on': 1.0, 'display': 1.0, 'between': 1.0, 'opt': 1.0, 't': 2.0, 'we': 2.0, 'a': 4.0, 'if': 3.0, 'don': 1.0, 'not': 2.0, 'it': 4.0, 'boost': 1.0, 'quite': 1.0, 'convertible': 1.0, 'much': 1.0, 'piece': 1.0, 'dumping': 1.0, 'wedged': 1.0, 'booster': 2.0, '1': 1.0, 'pinky': 1.0, 'as': 3.0, 'all': 1.0, 'outside': 1.0, 'our': 1.0, 'for': 4.0, 'had': 1.0, 'deal': 1.0, 'this': 2.0, 'kids': 2.0, 'bought': 1.0, 'actually': 1.0, 'color': 2.0, 'old': 1.0, 'looks': 1.0, 'me': 1.0, 'my': 3.0, 'may': 1.0, 'requires': 1.0, 'to': 2.0, 'high': 1.0, 'tag': 1.0, 'her': 2.0, 'originally': 1.0, 'price': 1.0, 'product': 1.0, 'year': 1.0, 'toddler': 1.0, 'one': 2.0, 'actual': 1.0, 'too': 1.0, 'and': 5.0, 'opportunity': 1.0, 'gave': 1.0, 'breaker': 1.0, 'forever': 1.0, 'the': 14.0, 'of': 5.0, 'very': 1.0, 'aren': 1.0, 'pink': 1.0, 'definitely': 1.0, 'though': 1.0, 'be': 1.0, '3': 1.0, 'taking': 1.0, 'older': 1.0, 'who': 1.0, 'great': 1.0, 'option': 1.0, 's': 3.0, 'maybe': 1.0, 'crevice': 1.0, 'messy': 1.0, 'getting': 1.0, 'seat': 2.0, 'in': 1.0, 'back': 1.0, 'photo': 2.0, 'out': 2.0, 'crumbs': 1.0, 'travel': 1.0, 'although': 1.0, 've': 1.0, 'never': 1.0, 'used': 1.0, 'bright': 1.0, 'home': 1.0, 'overall': 1.0}
Word element => {'easy': 1.0, 'loud': 1.0, 'minimalist': 1.0, 'very': 2.0, 'appearance': 1.0, 'sit': 1.0, 'getting': 1.0, 'move': 1.0, 'definite': 1.0, 'freedom': 1.0, 'plus': 2.0, 'gives': 1.0, 'stand': 1.0, 'trying': 1.0, 'in': 2.0, 'wiggling': 1.0, 'clean': 1.0, 'good': 1.0, 'her': 4.0, 'with': 1.0, 'once': 1.0, 'even': 2.0, 'topple': 1.0, 'boost': 1.0, 'threatened': 1.0, 'vaguely': 1.0, 'it': 6.0, 'this': 1.0, 'that': 2.0, 'seat': 1.0, 'to': 5.0, 'as': 1.0, 'our': 1.0, 'the': 4.0, 'lightweight': 1.0, 'neat': 1.0, 'my': 1.0, 'strap': 1.0, 'too': 1.0, 'and': 6.0, 'skid': 1.0, 'vinyl': 1.0, 'room': 1.0, 'around': 1.0, 'is': 5.0, 'worried': 1.0, 'dining': 1.0, 'year': 1.0, 'which': 1.0, 'table': 1.0, 'using': 1.0, 'problem': 1.0, 'given': 1.0, 'would': 1.0, 'was': 1.0, 'at': 1.0, 'no': 4.0, 'periodically': 1.0, '3': 1.0, 'on': 2.0, 'chair': 1.0, 'there': 1.0, 'securing': 1.0, 't': 1.0, 'a': 4.0, 's': 1.0, 'but': 1.0, 'i': 1.0, 'feature': 1.0, 'for': 1.0, 'actually': 1.0, 'much': 1.0, 'works': 1.0, 'so': 3.0, 'chairs': 1.0, 'half': 1.0, 'well': 1.0, 'diner': 1.0, 'goofy': 1.0, 'stay': 1.0, 'not': 3.0, 'style': 1.0, 'old': 1.0, 'hasn': 1.0}
Word element => {'books': 1.0, 'beats': 1.0, 'home': 1.0, 'our': 1.0, 'visit': 1.0, 'have': 1.0, 'bench': 1.0, 'needs': 1.0, 'certainly': 1.0, 'if': 1.0, 'homes': 1.0, 'piano': 1.0, 'eat': 1.0, 'we': 1.0, 'take': 1.0, 'little': 1.0, 'with': 1.0, 'handy': 1.0, 'been': 2.0, 'basic': 1.0, 'stack': 1.0, 'stable': 1.0, 'neutral': 1.0, 'clean': 1.0, 'use': 1.0, 'really': 1.0, 'ought': 1.0, 'both': 1.0, 'his': 1.0, 'supervision': 1.0, 'just': 1.0, 'very': 1.0, 'extra': 1.0, 'opinion': 1.0, 'for': 3.0, 'portable': 1.0, 'think': 1.0, 'older': 1.0, '3': 1.0, 'cousin': 1.0, 'on': 4.0, 'my': 3.0, 'easy': 1.0, 'table': 1.0, 'hold': 1.0, 'seem': 1.0, 'son': 1.0, 's': 5.0, 'confident': 1.0, 'a': 8.0, 'comfortable': 1.0, 'ready': 1.0, 'spot': 1.0, 'great': 2.0, 'in': 6.0, 'age': 1.0, 'booster': 1.0, 'feeling': 1.0, 'of': 2.0, 'the': 5.0, 'reach': 1.0, 'regular': 1.0, 'who': 2.0, 'three': 1.0, 'chair': 3.0, 'ideal': 1.0, 'other': 1.0, 'an': 1.0, 'note': 1.0, 'convenient': 1.0, 'as': 2.0, 'boost': 1.0, 'already': 1.0, 'it': 6.0, 'this': 5.0, 'hand': 1.0, 'toddlers': 2.0, 'straps': 1.0, 'is': 3.0, 'too': 2.0, 'and': 3.0, 'there': 1.0, 'soon': 1.0, 'toddler': 2.0, 'but': 2.0, 'sitting': 1.0, 'taller': 1.0, 'be': 2.0, 'short': 1.0, 'while': 1.0, 'from': 2.0, 'well': 1.0, 'i': 1.0, 'design': 1.0, 'keeps': 1.0, 't': 1.0, 'babyish': 1.0, 'are': 1.0, 'obviously': 1.0, 'babies': 1.0, 'has': 1.0, 'recommendation': 1.0, 'them': 3.0, 'next': 1.0, 'isn': 1.0, 'or': 3.0, 'offering': 1.0, 'that': 1.0, 'young': 1.0, 'let': 1.0, 'no': 1.0, 'secure': 1.0, 'seems': 1.0, 'will': 1.0, 'step': 1.0, 'what': 1.0, 'sit': 2.0, 'when': 2.0, 'graduating': 1.0, 'quite': 1.0, 'to': 11.0, 'high': 1.0, 'do': 1.0, 'attractive': 1.0, 'comfortably': 1.0, 'meantime': 1.0, 'though': 1.0, 'he': 2.0, 'not': 1.0}
Word element => {'booster': 1.0, 'need': 1.0, 'sometime': 1.0, 'uses': 1.0, 'now': 1.0, 'after': 1.0, 'of': 1.0, 'pretty': 1.0, 'have': 1.0, 'likes': 1.0, 'nook': 1.0, 'just': 1.0, 'few': 1.0, 'lands': 1.0, 'breakfast': 1.0, 'in': 1.0, 'restaurant': 1.0, 'bench': 1.0, 'we': 2.0, 'a': 6.0, 'does': 1.0, 'great': 1.0, 'he': 1.0, 'dining': 1.0, 'use': 1.0, 'not': 1.0, 'to': 4.0, 'seat': 1.0, 'times': 1.0, 'hurt': 1.0, 'you': 2.0, 'basic': 1.0, 'for': 1.0, 'actually': 1.0, 'the': 3.0, 'job': 1.0, 'or': 1.0, 'surface': 1.0, 'want': 1.0, 'if': 5.0, 'move': 1.0, 'stand': 1.0, 'especially': 1.0, 'is': 3.0, 'around': 1.0, 'an': 1.0, 'back': 1.0, 'stopped': 1.0, 'she': 1.0, 'it': 5.0, 'active': 1.0, 'tot': 1.0, 'sharp': 1.0, 'do': 1.0, 'and': 2.0, 'on': 2.0, 'your': 1.0, 'up': 1.0, 'from': 1.0, 'can': 1.0, 'but': 1.0, 'sitting': 1.0, 'using': 1.0, 'which': 1.0, 'like': 1.0, 'squirmer': 1.0, 'tries': 1.0, 'mine': 1.0, 'easy': 1.0, 'tip': 1.0, 'backwards': 1.0}
Word element => {'daughter': 1.0, 'year': 1.0, 'kitchen': 1.0, '2': 1.0, 'is': 1.0, 'wooden': 1.0, 'chairs': 1.0, 'chair': 1.0, 'well': 1.0, 'easy': 1.0, 'old': 1.0, 'to': 2.0, 'clean': 1.0, 'it': 2.0, 'loves': 1.0, 'sticks': 1.0, 'the': 1.0, 'my': 2.0}
Word element => {'hold': 1.0, 'they': 1.0, 'boosters': 1.0, 'some': 1.0, 'out': 1.0, 'comfortably': 1.0, 'expected': 1.0, 'review': 1.0, 'and': 1.0, 'tall': 2.0, 'edge': 1.0, 'move': 1.0, 'wish': 1.0, 'booster': 1.0, 'can': 1.0, 'so': 1.0, 'or': 1.0, 'of': 3.0, 'the': 11.0, 'nervous': 1.0, '3': 2.0, 'finally': 1.0, 'we': 4.0, 'a': 4.0, 'maybe': 1.0, 's': 2.0, 't': 1.0, 'against': 1.0, 'to': 4.0, 'seat': 4.0, 'as': 2.0, 'other': 1.0, 'all': 1.0, 'chair': 5.0, 'for': 2.0, 'stars': 1.0, 'it': 6.0, 'she': 2.0, 'well': 1.0, 'i': 8.0, 'old': 1.0, 'year': 1.0, 'awesome': 1.0, 'very': 1.0, 'table': 1.0, 'needed': 1.0, 'check': 1.0, 'was': 4.0, 'were': 1.0, 'recommend': 1.0, 'on': 4.0, 'update': 1.0, 'enough': 1.0, 'off': 1.0, 'pad': 1.0, 're': 1.0, 'sit': 2.0, 'is': 1.0, 'knees': 1.0, 'regular': 1.0, 'not': 2.0, 'uncomfortable': 1.0, 'months': 1.0, 'but': 2.0, 'banging': 1.0, 'our': 2.0, 'item': 1.0, 'would': 4.0, 've': 1.0, 'slip': 1.0, 'perfect': 1.0, 'grips': 1.0, 'love': 1.0, 'bottom': 1.0, 'are': 1.0, 'her': 2.0, 'use': 1.0, 'upholstered': 1.0, 'unless': 1.0, 'again': 1.0, 'flat': 1.0, 'have': 1.0, 'great': 2.0, 'buy': 1.0, 'now': 1.0, 'because': 1.0, 'that': 1.0, 'had': 2.0, 'this': 3.0, 'few': 1.0, 'just': 1.0, 'foam': 2.0, 'isn': 1.0, 'holding': 2.0, 'calves': 1.0, 'up': 3.0, 'hard': 2.0, 'over': 1.0, 'dropping': 1.0, 'do': 2.0, 'think': 2.0, 'better': 2.0, 'still': 1.0, 'if': 1.0}
Word element => {'seat': 1.0, 'booster': 1.0, 'to': 1.0, 'looking': 1.0, 'anyone': 1.0, 'a': 1.0, 'rating': 1.0, 'highest': 1.0, 'give': 1.0, 'would': 1.0, 'and': 1.0, 'reviewed': 1.0, 'am': 1.0, 'selections': 1.0, 'completely': 2.0, 'of': 1.0, 'very': 1.0, 'best': 1.0, 'overall': 1.0, 'chair': 2.0, 'satisfied': 1.0, 'it': 1.0, 'looked': 1.0, 'with': 1.0, 'the': 3.0, '2': 1.0, 'sturdy': 1.0, 'purchase': 2.0, 'for': 2.0, 'yr': 1.0, 'like': 1.0, 'easily': 1.0, 'i': 2.0, 'old': 1.0, 'my': 2.0, 'grandchild': 1.0, 'cleans': 1.0}
Word element => {'lol': 1.0, 'bought': 1.0, 'floor': 1.0, 'travel': 1.0, 'positioned': 1.0, 'the': 3.0, 'at': 1.0, 'booster': 1.0, 'not': 1.0, 'because': 1.0, 'is': 3.0, 'i': 2.0, 'time': 1.0, 'so': 1.0, 'correctly': 1.0, 'food': 1.0, 'folds': 1.0, 'got': 1.0, 'great': 1.0, 'feel': 1.0, 'picking': 1.0, 'child': 1.0, 'up': 2.0, 'of': 2.0, '34': 2.0, 'all': 1.0, 'off': 1.0, 'my': 1.0, 'this': 1.0, 'it': 3.0, 'simple': 1.0, 'and': 2.0, 'perfectly': 1.0, 'comfy': 1.0, 'works': 1.0, 'also': 1.0, 'for': 2.0, 'like': 1.0, 'table': 1.0, 'which': 1.0, 'very': 1.0, 'him': 2.0, 'doesn': 1.0, 'make': 1.0, 't': 1.0, 'a': 1.0, 'tired': 1.0, 'baby': 1.0}
Word element => {'thank': 1.0, 'clean': 1.0, 'to': 1.0, 'comfortable': 1.0, 'best': 1.0, 'you': 1.0, 'easiest': 1.0, 'booster': 1.0, 'seat': 1.0, 'sturdy': 1.0, 'any': 1.0, 'and': 1.0, 'of': 2.0, 'nicest': 1.0, 'many': 1.0, 'is': 1.0, 'children': 1.0, 'this': 1.0, 'all': 1.0, 'have': 1.0, 'used': 1.0, 'the': 2.0, 'great': 1.0, 'my': 1.0, 'portable': 1.0, 'color': 1.0, 'selection': 1.0}
Word element => {'boosters': 1.0, 'did': 1.0, 'doesn': 1.0, 'wipe': 1.0, 'love': 1.0, 'it': 2.0, 'she': 1.0, 'clean': 1.0, 'restaurant': 1.0, 't': 1.0, 'loves': 1.0, 'wiggle': 1.0, 'easy': 1.0, 'to': 1.0, 'the': 1.0, 'my': 1.0, 'like': 1.0, 'and': 1.0, 'two': 1.0, 'in': 1.0, 'year': 1.0}
Word element => {'enjoy': 1.0, 'say': 1.0, 'n': 1.0, 'nothing': 1.0, 'months': 1.0, 'it': 1.0, '2': 1.0, 'is': 1.0, 'a': 1.0, 'seat': 1.0, 'eacute': 1.0, 'stable': 1.0, 'clean': 1.0, 'since': 1.0, 'very': 1.0, 'and': 1.0, 'gative': 1.0, 'easy': 1.0, 'to': 2.0, 'this': 1.0, 'have': 1.0}
Word element => {'yr': 1.0, '3': 1.0, 'my': 1.0, 'needed': 1.0, 'i': 1.0, 'what': 1.0, 'old': 1.0, 'to': 1.0, 'easy': 1.0, 'use': 1.0, 'just': 1.0, 'for': 2.0, 'up': 2.0, 'folds': 1.0, 'travel': 1.0, 'and': 1.0, 'cleans': 1.0, 'great': 1.0}
Word element => {'way': 1.0, 'it': 1.0, 'wear': 1.0, 'to': 1.0, 'abrasions': 1.0, 'outside': 1.0, 'wish': 1.0, 'start': 1.0, 'the': 3.0, 'a': 2.0, 'little': 1.0, 'tougher': 1.0, 'on': 1.0, 'cushion': 1.0, 'was': 1.0, 'material': 1.0, 'seat': 1.0, 'of': 1.0}
Word element => {'time': 1.0, 'off': 1.0, 'son': 1.0, 'chair': 1.0, 'pretty': 1.0, 'is': 2.0, 'clean': 1.0, 'this': 3.0, 'also': 2.0, 'macth': 1.0, 'slides': 1.0, 'in': 2.0, 'not': 1.0, '18': 1.0, 'does': 1.0, 'works': 1.0, 'pounds': 1.0, 'i': 1.0, 'all': 1.0, 'seat': 3.0, 'our': 2.0, 'to': 3.0, 'liked': 1.0, 'oxo': 1.0, 'for': 1.0, 'parents': 1.0, 'the': 4.0, 'aware': 1.0, 'nicely': 1.0, 'stays': 1.0, 'great': 1.0, 'who': 1.0, 'tot': 1.0, 'and': 3.0, 'booster': 2.0, 'kitchen': 1.0, 'other': 1.0, 'likes': 1.0, 'have': 1.0, 'bought': 1.0, 'be': 1.0, 'my': 1.0, 'taupe': 1.0, 'we': 1.0, 'a': 1.0, 'strap': 1.0, 'store': 1.0, 'belt': 1.0, 'put': 1.0, 'on': 2.0, 'furniture': 1.0, 'your': 1.0, 'child': 1.0, 'fine': 1.0, 'it': 3.0, 'month': 1.0, 'looks': 1.0, '25': 1.0, 'us': 1.0, 'but': 2.0, 'should': 1.0, 'stable': 1.0, 'of': 1.0, 'easy': 1.0, 'folds': 1.0, 'very': 1.0}
Word element => {'them': 1.0, 'the': 1.0, 'my': 1.0, 'booster': 1.0, 'seat': 1.0, 'grandchildren': 1.0, 'is': 1.0, 'children': 1.0, 'for': 1.0, 'and': 1.0, 'very': 1.0, 'love': 1.0, 'great': 1.0, 'it': 1.0, 'portable': 1.0}
Word element => {'their': 1.0, 'i': 1.0, 'mama': 1.0, 'right': 1.0, 'to': 2.0, 'for': 2.0, 'liked': 1.0, 'much': 1.0, 'they': 2.0, 'down': 1.0, 'grandma': 1.0, 'height': 1.0, 'storage': 1.0, 'have': 1.0, 'these': 1.0, 'the': 1.0, 'are': 1.0, 'sent': 1.0, 's': 1.0, 'fold': 1.0, 'two': 1.0, 'at': 1.0, 'home': 1.0, 'easy': 2.0, 'them': 2.0, 'clean': 1.0, 'and': 1.0, 'so': 1.0}
Word element => {'bought': 1.0, '26': 1.0, 'why': 1.0, 'sure': 1.0, 'not': 1.0, 'note': 1.0, 'behavior': 1.0, '40': 1.0, 'abilities': 1.0, 'own': 1.0, 'make': 1.0, 'parents': 1.0, 'call': 1.0, 'judgment': 1.0, 'a': 1.0, 'works': 1.0, 'whether': 1.0, 'wasn': 1.0, 'issue': 1.0, 'an': 1.0, 'be': 1.0, 'would': 1.0, 'your': 1.0, 'feel': 1.0, 'didn': 1.0, 'their': 1.0, 'previous': 1.0, 'but': 1.0, 'straps': 1.0, 'safety': 1.0, 'were': 1.0, 'there': 1.0, 'initially': 1.0, 'was': 1.0, 'i': 2.0, 'on': 2.0, 'jumped': 1.0, 'perimeter': 1.0, 'that': 1.0, 'concerned': 1.0, 'because': 1.0, 'restaurant': 1.0, 'average': 1.0, 'months': 1.0, 'restaurants': 1.0, 'new': 1.0, 'think': 1.0, 'durability': 1.0, 'looks': 1.0, 'she': 2.0, 'it': 10.0, 'said': 1.0, 'seat': 2.0, 'in': 3.0, 'have': 1.0, 'reviewers': 1.0, 'does': 1.0, 'belts': 1.0, 'than': 1.0, 'despite': 1.0, 'about': 2.0, 'table': 2.0, 'based': 1.0, 'good': 1.0, 'which': 1.0, 'like': 1.0, 'bottom': 1.0, 'love': 2.0, 'for': 5.0, 'oxo': 1.0, '5': 1.0, '28': 1.0, 'some': 1.0, 'has': 1.0, 'streamlined': 1.0, 'as': 3.0, 'behaved': 1.0, 'how': 1.0, 'our': 3.0, 'big': 1.0, 'carrying': 1.0, 'great': 1.0, 'this': 1.0, 'unisex': 1.0, 'bring': 1.0, 'worked': 1.0, 'of': 2.0, 'the': 9.0, 'place': 1.0, 'makes': 1.0, 'fans': 1.0, '4': 1.0, 'booster': 2.0, 'we': 6.0, 's': 4.0, 'go': 1.0, 'likes': 1.0, 't': 3.0, 'chair': 1.0, 'no': 1.0, 'ours': 1.0, '2yo': 1.0, 'and': 10.0, 'too': 1.0, 're': 1.0, 'enough': 1.0, 'to': 5.0, 'high': 1.0, 'price': 1.0, 'products': 1.0, 'climbs': 1.0, 'up': 2.0, 'from': 1.0, 'fun': 1.0, '35': 1.0, 'by': 1.0, 'light': 1.0, 'herself': 1.0, 'kiddo': 1.0, 'move': 1.0, 'design': 1.0, 'at': 1.0, 'rubberized': 1.0, 'is': 2.0, 'more': 1.0, 'easy': 1.0, 'disassembling': 1.0, 'cleaning': 1.0, 'highchairs': 1.0, 'folding': 1.0, 'secure': 1.0, 'modern': 1.0, 'onto': 1.0, 'colors': 1.0, 'portable': 1.0, 'with': 2.0, 'us': 1.0, 'what': 1.0, 'when': 2.0, 'out': 1.0, 'eat': 1.0, 'kid': 4.0, 'so': 3.0, 'lightweight': 1.0, 'can': 1.0, 'dining': 1.0, 'most': 1.0, 'stand': 1.0, 'her': 2.0, 'use': 1.0, 'general': 1.0, 'much': 2.0}
Word element => {'highly': 1.0, 'storage': 1.0, 'up': 1.0, 'fold': 1.0, 'can': 1.0, 'how': 1.0, 'and': 1.0, 'clean': 1.0, 'girl': 1.0, 'big': 1.0, 'want': 1.0, 'a': 2.0, 'it': 2.0, 'this': 2.0, 'would': 1.0, 'highchair': 1.0, 'love': 1.0, 'for': 2.0, 'in': 1.0, 'booster': 1.0, 'at': 1.0, 'seat': 2.0, 'you': 1.0, 's': 1.0, 'anymore': 1.0, 'didn': 1.0, 'my': 1.0, 't': 1.0, 'the': 1.0, 'wants': 1.0, 'i': 3.0, 'granddaughter': 1.0, 'to': 3.0, 'bought': 1.0, 'be': 1.0, 'sit': 1.0, 'recommend': 1.0, 'easy': 2.0, 'she': 2.0, 'table': 1.0, 'like': 1.0}
Word element => {'stars': 1.0, 'gets': 1.0, 'still': 1.0, 'it': 1.0, 'but': 1.0, 'higher': 1.0, 'bit': 1.0, 'a': 1.0, 'wish': 1.0, 'was': 1.0, 'to': 1.0, 'seat': 1.0, 'on': 1.0, 'securely': 1.0, 'two': 2.0, 'actually': 1.0, 'easy': 1.0, 'needed': 1.0, 'highchair': 1.0, 'year': 2.0, 'from': 1.0, 'of': 1.0, 'transition': 1.0, 'bought': 1.0, 'the': 1.0, 'sits': 1.0, 'lightweight': 1.0, 'great': 1.0, 'for': 1.0, 'visits': 1.0, 'love': 1.0, 'backrest': 1.0, 'portable': 1.0, 'my': 1.0, 'i': 2.0, 'old': 2.0, 'five': 1.0, 'do': 1.0, 'and': 2.0, 'four': 1.0, 'grands': 1.0, 'they': 1.0, 'clean': 1.0, 'out': 1.0, 'them': 1.0}
Word element => {'happy': 1.0, 'are': 1.0, 'overall': 1.0, 'behind': 1.0, 'crumbs': 1.0, 'though': 1.0, 'dining': 1.0, 'move': 1.0, 'under': 1.0, 'off': 1.0, 'legs': 1.0, 'us': 1.0, 'very': 2.0, 'worked': 1.0, 'try': 1.0, 'amazon': 1.0, 'reviews': 1.0, 'this': 2.0, 'based': 1.0, 'them': 1.0, 'with': 2.0, 'problem': 1.0, 'not': 2.0, 'products': 1.0, 'oxo': 1.0, 'for': 3.0, 'fallen': 1.0, 'you': 1.0, 'outgrown': 1.0, 'experience': 1.0, 'enable': 1.0, 'can': 1.0, 'work': 1.0, 'would': 2.0, 'that': 4.0, 'there': 1.0, 'chair': 3.0, 'even': 1.0, 'cushioned': 2.0, 'get': 1.0, 'easy': 1.0, 'sure': 1.0, 'booster': 5.0, 'does': 1.0, 'find': 2.0, 'hook': 1.0, 'wanted': 1.0, 'i': 4.0, 'old': 1.0, 'decided': 1.0, '23': 1.0, 'chairs': 1.0, 'month': 1.0, 'any': 1.0, 'our': 4.0, 'to': 5.0, 'seat': 7.0, 'well': 1.0, 'has': 2.0, 'on': 4.0, 'clean': 1.0, 'her': 3.0, 'tall': 2.0, 'and': 5.0, 'like': 1.0, 'table': 4.0, 'other': 1.0, 'also': 1.0, 'have': 4.0, 'sit': 1.0, 'large': 1.0, 'room': 1.0, 'edge': 1.0, 'may': 1.0, 'lip': 1.0, 'comes': 1.0, 'is': 3.0, 'around': 1.0, 'the': 11.0, 'so': 3.0, 'wasn': 1.0, 'a': 3.0, 'we': 4.0, 't': 1.0, 'could': 1.0, 'pushed': 1.0, 'child': 1.0, 'up': 1.0, 'had': 1.0, 'what': 1.0, 'purchased': 1.0}
Word element => {'with': 1.0, 'five': 1.0, 'from': 1.0, 'slide': 1.0, 'to': 5.0, 'seat': 5.0, 'outside': 1.0, 'will': 1.0, 'cleaned': 1.0, 'made': 1.0, 'gave': 1.0, 'green': 3.0, 'and': 4.0, 'around': 2.0, 'doesn': 1.0, 'be': 3.0, 'material': 1.0, 'really': 1.0, 'still': 1.0, 'every': 2.0, 'stars': 1.0, 'onto': 1.0, 'however': 1.0, 'easy': 1.0, 'folds': 1.0, 'also': 2.0, 'compact': 2.0, 'durable': 1.0, 'booster': 1.0, 'a': 5.0, 'shell': 2.0, 'great': 1.0, 'nice': 1.0, 'place': 1.0, 'has': 1.0, 'comfortably': 2.0, 'easier': 1.0, 'since': 1.0, 'grips': 1.0, 'on': 3.0, 'parent': 1.0, 'think': 1.0, 'detaches': 1.0, 'wasn': 1.0, 'it': 7.0, 'this': 2.0, 'the': 18.0, 'of': 3.0, 'bottom': 1.0, 'outer': 1.0, 'but': 1.0, 'plastic': 3.0, 'chairs': 1.0, 'surface': 2.0, 'can': 1.0, 'so': 4.0, 'because': 1.0, 'easily': 2.0, 'that': 6.0, 'been': 1.0, 'perfectly': 1.0, 'there': 2.0, 'helps': 1.0, 'chair': 2.0, 'no': 1.0, 'light': 1.0, 'reason': 1.0, 'for': 2.0, 't': 2.0, 'fit': 1.0, 'dirty': 1.0, 'well': 1.0, 'i': 3.0, 'should': 2.0, 'cushion': 2.0, 'sit': 1.0, 'clean': 1.0, 'support': 1.0, 'suggestion': 1.0, 'ever': 1.0, 'fits': 1.0, 'my': 1.0, 'toddler': 1.0, 'product': 1.0, 'child': 2.0, 'up': 1.0, 'itself': 1.0, 'not': 1.0, 'slip': 1.0, 'like': 1.0, 'buy': 1.0, 'something': 1.0, 'add': 1.0, 'hand': 2.0, 'hold': 1.0, 'back': 1.0, 'is': 8.0, 'handle': 1.0, 'quite': 1.0, 'only': 1.0, 'would': 2.0, 'have': 1.0, 'white': 4.0, 'strap': 1.0, 'holds': 1.0, 'carry': 1.0, 'into': 2.0, 'designed': 2.0, 'shape': 1.0}
Word element => {'also': 1.0, 'perfect': 1.0, 'chairs': 1.0, 'on': 1.0, 'cute': 1.0, 'absolutely': 1.0, 'modern': 1.0, 'size': 1.0, 'can': 1.0, 'old': 1.0, 'love': 1.0, 'for': 1.0, 'herself': 1.0, 'wood': 1.0, '5yr': 1.0, 'around': 1.0, 'it': 6.0, 'this': 1.0, 'the': 1.0, '2': 1.0, 't': 1.0, 'and': 2.0, 'our': 2.0, 'bought': 1.0, 'we': 1.0, 'move': 1.0, 's': 3.0, 'so': 1.0, 'light': 1.0, 'she': 1.0, 'doesn': 1.0, 'slide': 1.0}
Word element => {'baby': 1.0, 'flying': 1.0, 'anyone': 1.0, 'definitely': 1.0, 'd': 1.0, 'floor': 1.0, 'on': 1.0, 'worked': 1.0, 'the': 3.0, 'cover': 1.0, 'sitting': 1.0, 'entertained': 1.0, 'with': 3.0, 'this': 2.0, 'recently': 1.0, 'bored': 1.0, 'table': 1.0, 'month': 1.0, 'it': 5.0, 'she': 3.0, 'certainly': 1.0, 'played': 1.0, 'home': 1.0, 'and': 3.0, 'tray': 1.0, 'bought': 1.0, 'as': 1.0, 'flew': 1.0, 'our': 1.0, 'to': 2.0, 'toy': 1.0, 'old': 1.0, '45': 1.0, 'i': 3.0, 'for': 1.0, 'we': 1.0, 'a': 2.0, 'her': 1.0, 'good': 1.0, 'loves': 1.0, 'recommend': 1.0, 'was': 1.0, 'minutes': 1.0, 'in': 1.0, 'air': 1.0, 'when': 1.0, 'just': 2.0, '6': 1.0, 'flipped': 1.0, 'over': 1.0, 'pull': 1.0, 'out': 1.0, 'keep': 1.0, 'at': 1.0, 'much': 1.0}
Word element => {'travel': 1.0, 'out': 1.0, 'many': 1.0, 'are': 1.0, 'there': 2.0, 'from': 1.0, 'reflect': 1.0, 'even': 1.0, 'purchased': 1.0, 'fuzzy': 1.0, 'them': 1.0, 'other': 1.0, 'ease': 1.0, 'now': 1.0, 'has': 1.0, 'well': 2.0, 'worth': 1.0, 'outgrew': 1.0, 'or': 1.0, 'though': 1.0, 'button': 2.0, 'pieces': 2.0, 'of': 1.0, 'problem': 1.0, 'no': 2.0, '8': 1.0, 'appropriate': 1.0, 'better': 1.0, 'collectively': 1.0, 'item': 1.0, 'like': 1.0, 'does': 1.0, 'because': 1.0, 'maybe': 1.0, 'in': 1.0, 'age': 1.0, 'plane': 1.0, 'the': 11.0, 'clip': 3.0, 'did': 1.0, 'each': 1.0, 'would': 1.0, 'that': 1.0, 'entertained': 1.0, 'on': 1.0, 'essentially': 1.0, 'months': 3.0, 'with': 2.0, 'infant': 1.0, 'her': 2.0, 'all': 1.0, 'our': 1.0, 'flew': 1.0, 'regularly': 1.0, 'interest': 1.0, 'so': 2.0, 'needed': 1.0, 'compact': 1.0, 'it': 4.0, 'she': 4.0, 'be': 1.0, 'was': 6.0, 'light': 1.0, 'just': 2.0, 'not': 6.0, 'my': 2.0, 'pull': 1.0, 'daughter': 2.0, 'and': 6.0, 'too': 1.0, 'can': 1.0, 'but': 1.0, 'zipper': 2.0, 'could': 2.0, 'we': 2.0, 's': 1.0, 'a': 3.0, 'toys': 1.0, '15': 2.0, 'i': 1.0, 'fan': 1.0, 'completely': 1.0, 'is': 3.0, 'price': 1.0, 'mirror': 1.0, 'fun': 1.0, 'since': 1.0, 'keep': 1.0, 'at': 2.0, 'very': 1.0, 'little': 3.0, 'do': 3.0, 'much': 1.0, 'product': 1.0, 'for': 2.0, 'seem': 1.0, 'still': 1.0}
Word element => {'their': 1.0, 'with': 1.0, 'in': 1.0, 'see': 1.0, 'you': 1.0, 'ones': 1.0, 'would': 1.0, 'mall': 1.0, 'super': 1.0, 'those': 1.0, 'like': 1.0, 'wanna': 1.0, 'diaper': 1.0, 'the': 6.0, 'needs': 1.0, 'time': 1.0, 'same': 1.0, 'be': 1.0, 'that': 1.0, 'keep': 1.0, 'who': 1.0, 'at': 1.0, 'space': 1.0, 'mom': 2.0, 'bottles': 1.0, 'or': 1.0, 'but': 1.0, 'recommend': 1.0, 'doesn': 1.0, 'inside': 1.0, 'necessities': 1.0, 't': 2.0, 'a': 2.0, 'baby': 1.0, 'quilted': 1.0, '300': 1.0, 'stylish': 1.0, 'mean': 1.0, 'zip': 1.0, 'oragel': 1.0, 'im': 1.0, 'expensive': 1.0, 'for': 3.0, 'i': 2.0, 'products': 1.0, 'bag': 5.0, '3': 1.0, 'on': 1.0, 'plus': 1.0, 'don': 1.0, 'up': 2.0, 'rash': 1.0, 'any': 1.0, 'to': 2.0, 'outside': 1.0, 'all': 1.0, 'other': 1.0, 'extra': 2.0, '00': 1.0, 'holds': 1.0, 'is': 2.0, 'kids': 1.0, 'soft': 1.0, 'this': 2.0, 'perfect': 1.0, 'cream': 1.0, 'and': 1.0, 'even': 2.0, 'binki': 1.0}
Word element => {'climbs': 1.0, 'your': 1.0, 'if': 1.0, 'toddler': 1.0, 'will': 1.0, 'legs': 1.0, 'table': 1.0, 'however': 1.0, 'a': 2.0, 'little': 1.0, 'broke': 1.0, 'for': 1.0, 'son': 1.0, 'year': 1.0, 'before': 1.0, 'extremely': 1.0, 'break': 1.0, 'comfy': 1.0, 'and': 2.0, 'our': 1.0, 'bought': 1.0, 'we': 1.0, 'on': 1.0, 'over': 1.0, 'chairs': 1.0, 'it': 4.0, 'this': 1.0, 'he': 1.0, 'lasted': 1.0, 's': 1.0, 'cute': 1.0, 'the': 2.0, 'are': 1.0}
Word element => {'that': 1.0, 'all': 1.0, 'isnt': 1.0, 'fabric': 1.0, 'though': 1.0, 'and': 1.0, 'warm': 1.0, 'nice': 1.0, 'comforter': 1.0, 'should': 1.0, 'the': 1.0, 'doesnt': 1.0, 'bed': 1.0, 'its': 1.0, 'been': 1.0, 'bigger': 1.0, 'either': 1.0, 'it': 1.0, 'have': 1.0, 'fit': 1.0, 'whole': 1.0}
Word element => {'aren': 1.0, 'impossible': 1.0, 'unfortunately': 1.0, 'you': 1.0, 'if': 1.0, 'more': 1.0, 'would': 1.0, 'like': 2.0, 'much': 1.0, 'do': 2.0, 'really': 1.0, 'sterilize': 1.0, 'next': 1.0, 'solution': 1.0, 'vinegar': 1.0, 'white': 1.0, 'odor': 1.0, 'filling': 1.0, 'couple': 1.0, 'slight': 1.0, 'a': 2.0, 'into': 1.0, 'use': 1.0, 'before': 1.0, 'alone': 1.0, 'components': 1.0, 'have': 1.0, 'truly': 1.0, 'research': 1.0, 'after': 1.0, 'tons': 1.0, 'except': 1.0, 'in': 2.0, 'remove': 1.0, 'anything': 1.0, 'food': 1.0, 'but': 3.0, 'deemed': 1.0, 'boiling': 1.0, 'been': 1.0, 'pouring': 1.0, 'breastfeeding': 1.0, 'thus': 1.0, 'as': 1.0, 'to': 5.0, 'any': 2.0, 'stainless': 1.0, 'say': 1.0, 'from': 4.0, 'month': 1.0, 'it': 6.0, 'bpa': 1.0, 'plastic': 3.0, 'extremely': 1.0, 'only': 1.0, 'hasn': 1.0, 'old': 1.0, 'being': 1.0, 'pura': 2.0, 'also': 2.0, 'china': 1.0, '10': 1.0, 'for': 4.0, 'far': 1.0, 'beverages': 1.0, 'steel': 1.0, 'love': 1.0, 'chips': 1.0, 'consumption': 1.0, 'of': 5.0, 'the': 15.0, 'hands': 1.0, 'weren': 1.0, 'with': 3.0, 'times': 1.0, 'paint': 2.0, 't': 4.0, 's': 2.0, 'buying': 1.0, 'nipple': 2.0, 'bought': 1.0, 'no': 1.0, 'about': 1.0, 'pressed': 1.0, 'kiki': 2.0, 'products': 2.0, 'some': 1.0, 'unsafe': 1.0, 'is': 6.0, 'at': 1.0, 'look': 1.0, 'my': 1.0, 'am': 1.0, 'what': 1.0, 'transitioning': 1.0, 'when': 1.0, '50': 2.0, 'and': 5.0, 'too': 1.0, 'this': 4.0, 'bottle': 9.0, 'can': 1.0, 'so': 2.0, 'then': 1.0, 'reviews': 1.0, 'find': 1.0, 'colored': 1.0, 'metallics': 1.0, 'all': 1.0, 'fits': 1.0, 'an': 1.0, 'off': 1.0, 'purchased': 1.0, 'cup': 2.0, 'sleeve': 2.0, 'over': 2.0, 'don': 1.0, 'chipping': 1.0, 'itself': 1.0, 'not': 2.0, 'issue': 1.0, 'overnight': 1.0, 'recommend': 3.0, 'plan': 1.0, 'which': 1.0, 'made': 2.0, 'leaking': 1.0, 'snugly': 1.0, 'go': 1.0, 'protects': 1.0, 'getting': 1.0, 'cold': 2.0, 'sippy': 2.0, 'water': 5.0, 'does': 2.0, 'that': 5.0, 'silicone': 1.0, 'concerned': 1.0, 'because': 1.0, 'leak': 1.0, 'true': 1.0, 'however': 1.0, 'on': 1.0, 'i': 10.0, 'putting': 1.0}
Word element => {'though': 1.0, 'sure': 1.0, 'm': 1.0, 'his': 1.0, 'really': 1.0, 'pastime': 1.0, 'water': 1.0, 'then': 1.0, 'silicone': 1.0, 'easily': 1.0, 'can': 1.0, 'he': 1.0, 'favorite': 1.0, 'complaint': 1.0, 'push': 1.0, 'are': 1.0, 'with': 1.0, 'this': 1.0, 'durable': 1.0, 'fault': 1.0, 'problem': 1.0, 'of': 1.0, 'spout': 1.0, 'peeling': 1.0, 'which': 1.0, 'hand': 1.0, 'if': 2.0, 's': 2.0, 'a': 3.0, 'well': 1.0, 'not': 2.0, 'dents': 1.0, 'because': 1.0, 'and': 3.0, 'difference': 1.0, 'no': 1.0, 'several': 1.0, 'paint': 1.0, 'bottle': 3.0, 'little': 1.0, 'had': 2.0, 'for': 2.0, 'months': 1.0, 'one': 1.0, 'the': 4.0, 'my': 3.0, '16': 1.0, 'only': 2.0, 'works': 1.0, 'it': 4.0, 'month': 1.0, 'makes': 1.0, 'old': 1.0, 'two': 1.0, 'i': 3.0, 'have': 4.0, 'off': 1.0, 'quite': 1.0, 'everywhere': 1.0, 'yet': 1.0, 'or': 1.0, 'as': 1.0, 'others': 1.0, 'mentioned': 1.0, 'washed': 1.0, 'dump': 1.0, 'always': 1.0, 'there': 1.0, 'into': 1.0, 'that': 3.0, 'banging': 1.0, 'seems': 1.0, 'is': 3.0, 'dropping': 1.0}
Word element => {'her': 1.0, 'extremely': 1.0, 'daily': 1.0, 'carseat': 1.0, 'britax': 1.0, 'use': 2.0, 'great': 2.0, 'our': 2.0, 'friends': 1.0, 'and': 1.0, 'travel': 2.0, '5': 1.0, 'booster': 2.0, 'we': 1.0, 'seat': 1.0, 'is': 1.0, 'for': 3.0, 'daughter': 1.0, 'so': 1.0, 'still': 1.0}
Word element => {'do': 1.0, 'parents': 1.0, 'them': 1.0, 'they': 1.0, 'and': 1.0, 'like': 1.0, 'seats': 1.0, 'big': 1.0, 'i': 1.0, 'granddaughters': 1.0, 'my': 1.0, 'too': 1.0, 'girl': 1.0, 'two': 1.0, 'bought': 1.0, 'their': 2.0, 'twin': 1.0, 'who': 1.0, 'for': 1.0, 'have': 1.0, 'outgrown': 1.0}
Word element => {'right': 1.0, 'maybe': 1.0, 'shoulders': 1.0, 'there': 1.0, 'would': 1.0, 'down': 1.0, 'to': 1.0, 'back': 1.0, 'strap': 1.0, 'is': 1.0, 'had': 1.0, 'they': 1.0, 'only': 1.0, 'so': 3.0, 'seatbelt': 1.0, 'it': 2.0, 'car': 1.0, 'numb': 1.0, 'help': 1.0, 'clips': 1.0, 'put': 1.0, 'on': 2.0, 'the': 6.0, 'these': 1.0, 'and': 2.0, 'butt': 1.0, 'were': 1.0, 'next': 1.0, 'that': 1.0, 'bought': 1.0, 'safety': 1.0, 'in': 3.0, 'taken': 1.0, 'built': 1.0, 'fit': 1.0, 'for': 3.0, 'you': 1.0, 'traveling': 1.0, 'i': 3.0, 'was': 1.0, 'looking': 1.0, 'has': 1.0, 'my': 1.0, 'wish': 1.0, 'this': 1.0, 'kids': 1.0, 'holders': 1.0, 'will': 2.0, 'but': 1.0, 'far': 1.0, 'model': 1.0, 'sure': 1.0, 'them': 3.0, 'have': 1.0, 'hold': 1.0, 'know': 1.0, 'like': 1.0, 'trip': 1.0, 'we': 2.0, 'a': 2.0, 'thing': 1.0, 'about': 1.0, 'if': 1.0, 'not': 2.0, 'give': 1.0, 'years': 1.0, 'both': 1.0, '34': 2.0, 'yet': 1.0, 'cup': 1.0, 'let': 1.0}
Word element => {'seats': 1.0, 'car': 1.0, 'thing': 1.0, 'purchasing': 1.0, 'step': 1.0, 'i': 1.0, 'in': 1.0, 'perfect': 1.0, 'seat': 2.0, 'recommend': 1.0, 'you': 1.0, 'everything': 1.0, 'is': 2.0, 'your': 1.0, 'next': 1.0, 'highly': 1.0, 'if': 1.0, 'child': 1.0, 'are': 1.0, 'durable': 1.0, 'it': 1.0, 'advertised': 1.0, 'this': 2.0, 'moving': 1.0, 'to': 1.0, 'that': 1.0, 'their': 1.0}
Word element => {'pick': 1.0, 'one': 1.0, 'color': 1.0, 'very': 1.0, 'says': 1.0, 'secure': 1.0, 'keep': 1.0, 'not': 1.0, 'is': 4.0, 'down': 1.0, 'worry': 1.0, 'need': 1.0, 'gets': 1.0, 'she': 2.0, 'it': 8.0, 'only': 2.0, 'pink': 1.0, 'with': 1.0, 'how': 1.0, 'understand': 1.0, 'santafe': 1.0, 'appears': 1.0, 'of': 2.0, 'there': 1.0, 'about': 1.0, 'no': 2.0, 'definetly': 1.0, 'pretty': 1.0, 'safe': 1.0, 'arrived': 1.0, 'out': 3.0, 'child': 1.0, 'when': 3.0, 'booster': 2.0, 'daughter': 2.0, 'i': 3.0, 'a': 2.0, 'latch': 2.0, 'to': 5.0, 'for': 2.0, 'strapping': 1.0, 'system': 1.0, 'then': 1.0, 'my': 2.0, 'went': 1.0, 'find': 1.0, 'this': 2.0, 'dont': 1.0, 'found': 1.0, 'improvement': 1.0, 'be': 2.0, 'anyone': 1.0, 'in': 5.0, 'the': 5.0, 'car': 3.0, 'on': 1.0, 'can': 1.0, '2': 1.0, 'sitting': 1.0, 'searching': 1.0, 'play': 1.0, 'and': 3.0, 'had': 1.0, 'purchased': 1.0, 'what': 1.0, 'comfortable': 1.0, 'stays': 1.0, '1': 1.0, 'grand': 1.0}
Word element => {'them': 1.0, 'granddaughters': 1.0, 'second': 1.0, 'poorly': 1.0, 'be': 1.0, 'had': 1.0, 'seats': 1.0, 'and': 2.0, 'shopped': 1.0, 'get': 1.0, 'various': 1.0, 'so': 1.0, 'love': 2.0, 'bought': 1.0, 'one': 2.0, 'liked': 1.0, 'made': 1.0, 'booster': 2.0, 'at': 1.0, 'the': 4.0, 'great': 1.0, 'cup': 1.0, 'has': 1.0, 'diono': 1.0, 'in': 1.0, 'fe': 1.0, 'car': 1.0, 'i': 1.0, 'stores': 2.0, 'with': 1.0, 'found': 1.0, 'this': 1.0, 'it': 1.0, 'our': 1.0, 'to': 1.0, 'seat': 1.0, 'any': 1.0, 'santa': 1.0, 'padding': 2.0, 'side': 1.0, 'you': 1.0, 'way': 1.0, 'hide': 1.0, 'hardly': 1.0, 'we': 3.0, 'a': 2.0, 'beverage': 1.0, 'holder': 1.0, 'on': 1.0, 'each': 1.0, 'much': 1.0}
Word element => {'again': 1.0, 'this': 2.0, 'buying': 1.0, 'of': 1.0, 'd': 1.0, 'i': 1.0, 'streamlined': 1.0, 'much': 1.0, 'consuming': 1.0, 'time': 1.0, 'store': 1.0, 'was': 1.0, 'it': 1.0, 'label': 1.0, 'shipping': 1.0, 'replacement': 1.0, 'provide': 1.0, 'll': 1.0, 'justkidsstore': 1.0, 'just': 1.0, 'because': 1.0, 'the': 4.0, 'damaged': 1.0, 'replace': 1.0, 'booster': 1.0, 'spent': 1.0, 'fe': 1.0, 'if': 1.0, 'arrived': 1.0, 'diono': 2.0, 'they': 2.0, 'easier': 1.0, 'has': 1.0, 'and': 5.0, 'could': 1.0, 'we': 2.0, 'a': 2.0, 'wary': 1.0, 'return': 2.0, 'see': 1.0, 'from': 2.0, 'be': 2.0, 'trying': 1.0, 'waiting': 1.0, 'an': 1.0, 'advised': 1.0, 'seat': 1.0, 'to': 5.0, 'now': 1.0, 'car': 1.0, 'us': 1.0, 'phone': 1.0, 'santa': 1.0, 'contact': 1.0, 'that': 1.0, 'been': 1.0, 'manufacturer': 1.0, 'refused': 1.0, 'honor': 1.0, 'emails': 1.0, 'warranty': 1.0, 'hour': 1.0, 'item': 1.0, 'calls': 1.0, 'discontinued': 1.0, 'justforkids': 1.0, 'experience': 1.0, 'after': 2.0, 'several': 1.0, 're': 1.0}
Word element => {'comfortable': 1.0, 'for': 1.0, 'said': 1.0, 'is': 3.0, 'longer': 1.0, 'year': 1.0, '6': 1.0, 'exceeded': 1.0, 'old': 1.0, 'snug': 1.0, 'system': 1.0, 'it': 3.0, 'on': 1.0, 'was': 1.0, 'not': 1.0, 'as': 2.0, 'seat': 2.0, 'trip': 1.0, 'a': 2.0, 'well': 1.0, 'convenient': 1.0, 'latch': 1.0, 'cup': 1.0, 'booster': 1.0, 'legs': 1.0, 'tear': 1.0, 'expectations': 1.0, 'than': 1.0, 'wear': 1.0, 'but': 1.0, '2': 1.0, 'the': 1.0, 'secure': 1.0, 'hour': 1.0, 'after': 1.0, 'base': 1.0, 'and': 4.0, 'my': 2.0, 'fits': 1.0, 'holders': 1.0, 'kids': 1.0, 'normal': 1.0, 'are': 1.0, 'her': 1.0, 'good': 1.0, 'fabric': 1.0, 'kid': 1.0, 'messes': 1.0}
Word element => {'grandma': 1.0, 'for': 1.0, 'room': 1.0, 'cup': 1.0, 'fold': 1.0, 'two': 1.0, 'making': 1.0, 'seat': 1.0, 'been': 1.0, 'haven': 1.0, 'necessary': 1.0, 'and': 3.0, 'switch': 1.0, 'to': 2.0, 'straps': 1.0, 'padding': 1.0, 'is': 1.0, 'worked': 1.0, 'they': 1.0, 'has': 2.0, 'out': 2.0, 'it': 1.0, 'this': 1.0, 'other': 1.0, 'holders': 1.0, 'but': 1.0, 'option': 1.0, 'put': 1.0, 'in': 2.0, 'great': 1.0, 't': 1.0, 'the': 4.0, 'are': 3.0, 'car': 1.0, 'nice': 1.0, 'when': 2.0, 'easy': 2.0, 'needed': 1.0, 'enough': 1.0, 'operate': 1.0, 'well': 1.0, 'a': 1.0}
Word element => {'hooks': 1.0, 'up': 1.0, 'easy': 1.0, 'easily': 1.0, 'comfortable': 1.0, 'quality': 1.0, 'and': 2.0, 'great': 1.0, 'are': 2.0, 'adjustments': 1.0, 'these': 1.0}
Word element => {'s': 1.0, 'otherwise': 1.0, 'for': 1.0, 'it': 2.0, 'i': 2.0, 'ordered': 1.0, 'disappointed': 1.0, 'plum': 1.0, 'because': 1.0, 'my': 1.0, 'black': 1.0, 'the': 2.0, 'seat': 1.0, 'granddaughter': 1.0, 'was': 3.0, 'not': 1.0, 'fine': 1.0, 'color': 1.0}
Word element => {'end': 1.0, 'other': 1.0, 'travel': 1.0, 'when': 1.0, 'on': 1.0, 'carry': 1.0, 'easy': 1.0, 'grown': 1.0, '34': 1.0, 'riding': 1.0, 'than': 1.0, 'for': 1.0, 'actually': 1.0, 'about': 1.0, 'no': 1.0, 'are': 1.0, 'perfectly': 1.0, 'luggage': 1.0, 'will': 1.0, 'slide': 1.0, 'this': 1.0, 'looks': 1.0, 'arguments': 1.0, 'it': 3.0, 'children': 1.0, 'great': 1.0, 'comfortable': 1.0, 'i': 2.0, 'latch': 1.0, 'light': 1.0, 'safest': 1.0, 'need': 1.0, 'wanted': 1.0, 'comfort': 1.0, 'recommended': 1.0, 'has': 1.0, 'around': 1.0, 'that': 2.0, 'fine': 1.0, 'car': 2.0, 'booster': 3.0, 'plane': 1.0, 'in': 5.0, 'fight': 1.0, 'hand': 1.0, 'which': 1.0, 'safety': 1.0, 'didn': 1.0, 'highly': 1.0, 'lock': 1.0, 'the': 5.0, 'place': 1.0, 'one': 1.0, 'color': 1.0, 'my': 1.0, 'combination': 1.0, 'and': 4.0, 'too': 1.0, 'sitting': 1.0, 'work': 1.0, 'most': 1.0, 'rather': 1.0, 'of': 1.0, 'there': 1.0, 'as': 1.0, 'to': 2.0, 'seat': 5.0, 'all': 1.0, 'straps': 1.0, 'sit': 1.0, 'we': 1.0, 'a': 3.0, 't': 1.0, 'could': 1.0, 's': 2.0, 'very': 1.0, 'up': 1.0, 'over': 1.0, 'at': 1.0, 'who': 1.0, 'so': 1.0}
Word element => {'security': 1.0, 'extra': 1.0, 'clips': 1.0, 'for': 1.0, 'love': 1.0, 'mind': 1.0, 'seem': 1.0, 'doesnt': 1.0, 'fact': 1.0, 'but': 1.0, 'and': 1.0, 'between': 1.0, 'that': 2.0, 'room': 1.0, 'space': 1.0, 'booster': 3.0, 'is': 2.0, 'grew': 1.0, 'it': 2.0, 'with': 1.0, 'this': 1.0, 'have': 1.0, 'to': 3.0, 'there': 1.0, 'britax': 1.0, 'regent': 2.0, 'son': 2.0, 'as': 1.0, 'from': 1.0, 'out': 1.0, 'a': 2.0, 'my': 1.0, 'went': 1.0, 'the': 7.0, 'more': 1.0, 'great': 1.0, 'in': 1.0, 'car': 1.0, 'seat': 2.0, 'has': 1.0, 'con': 1.0}
Word element => {'had': 1.0, 'else': 1.0, 'anyone': 1.0, 'try': 1.0, 'one': 1.0, 'want': 1.0, 'the': 1.0, 'we': 1.0, 'a': 3.0, 'has': 1.0, 'well': 1.0, 'with': 2.0, 'this': 3.0, 'smoke': 1.0, 'looked': 1.0, 'came': 1.0, 'good': 1.0, 'latch': 1.0, 'not': 1.0, 'because': 1.0, 'smell': 3.0, 'was': 4.0, 'smelled': 1.0, 'but': 3.0, 'get': 1.0, 'easy': 1.0, 'another': 1.0, 'may': 1.0, 'home': 1.0, 'seemed': 1.0, 'hoping': 1.0, 'in': 2.0, 'like': 2.0, 'and': 3.0, 'it': 4.0, 'remove': 1.0, 'fit': 1.0, 'new': 1.0, 'have': 1.0, 'seat': 3.0, 'to': 4.0, 'smoker': 1.0, 'all': 1.0, 'that': 2.0, 'been': 1.0, 'chemical': 1.0, 'brand': 1.0, 'am': 2.0, 'how': 1.0, 'problem': 1.0, 'tried': 1.0, 'i': 2.0, 'thinking': 1.0, 'about': 1.0, 'worried': 1.0, 'reordering': 1.0, 'is': 1.0, 'someones': 1.0, 'they': 1.0}
Word element => {'everyone': 1.0, 'product': 1.0, 'highly': 1.0, 'this': 1.0, 't': 1.0, 'they': 1.0, 'stroller': 1.0, 'used': 1.0, 'get': 1.0, 'will': 1.0, 'son': 1.0, 'my': 1.0, 'done': 1.0, 'little': 1.0, 'keep': 1.0, 'fleece': 1.0, 'or': 1.0, 'weight': 1.0, 'pumping': 1.0, 'before': 1.0, 'baby': 1.0, 'dealing': 1.0, 'be': 2.0, 'across': 1.0, 'and': 3.0, 'enough': 1.0, 'blanket': 8.0, 'are': 3.0, 'open': 1.0, 'ground': 1.0, 'better': 1.0, 'easy': 1.0, 'pump': 1.0, 'kind': 1.0, 'at': 1.0, 'is': 4.0, 'hand': 2.0, 'plan': 1.0, 'which': 1.0, 'clip': 3.0, 'one': 4.0, 'bought': 1.0, 'expensive': 1.0, 'grab': 1.0, 'whatever': 1.0, 'only': 1.0, 'much': 1.0, 'with': 5.0, 'it': 3.0, 'covers': 1.0, 'a': 8.0, 's': 1.0, 'holding': 1.0, 'myself': 1.0, 'cover': 3.0, 'heavier': 1.0, 'great': 2.0, 'once': 1.0, 'these': 6.0, 'some': 1.0, 'important': 1.0, 'receiving': 1.0, 'fabric': 1.0, 'for': 2.0, 'such': 1.0, 'coming': 1.0, 'i': 9.0, 'don': 1.0, 'wintertime': 1.0, 'wash': 1.0, 'use': 3.0, 'while': 3.0, 'using': 1.0, 'looking': 1.0, 'reason': 1.0, 'perfect': 1.0, 'opens': 1.0, 'was': 1.0, 'to': 10.0, 'all': 1.0, 'as': 2.0, 'nursing': 4.0, 'that': 1.0, 'fall': 1.0, 'easily': 1.0, 'because': 2.0, 'choose': 2.0, 'swap': 1.0, 'you': 3.0, 'able': 1.0, 'blankets': 2.0, 'out': 1.0, 'wide': 1.0, 'time': 1.0, 'your': 2.0, 'on': 3.0, 'them': 2.0, 'always': 2.0, 'clean': 1.0, 'had': 1.0, 'when': 1.0, 'what': 1.0, 'summer': 1.0, 'would': 1.0, 'up': 2.0, 'laundry': 1.0, 'gets': 1.0, 'still': 1.0, 'if': 1.0, 'every': 1.0, 'milk': 1.0, 'just': 1.0, 'another': 1.0, 'warmer': 1.0, 'clips': 1.0, 'can': 4.0, 'so': 2.0, 'lightweight': 1.0, 'recommend': 1.0, 'dirty': 1.0, 'm': 1.0, 'in': 3.0, 'also': 1.0, 'the': 8.0, 'doing': 1.0, 'of': 1.0, 'muslin': 1.0}
Word element => {'d': 1.0, 'reason': 1.0, 'if': 1.0, 'with': 1.0, 'buy': 1.0, 'definitely': 1.0, 'nursery': 1.0, 'now': 1.0, 'and': 2.0, 'right': 1.0, 'clips': 1.0, 'took': 1.0, 'cute': 1.0, 'so': 1.0, 'as': 5.0, 'cake': 1.0, 'about': 1.0, 'food': 1.0, 'but': 1.0, 'amazing': 1.0, 'freakin': 1.0, 'came': 1.0, 're': 1.0, 'label': 1.0, 'my': 3.0, 'could': 1.0, 's': 1.0, 'a': 2.0, 'baby': 1.0, 'them': 3.0, 'out': 3.0, 'i': 5.0, 'they': 1.0, 'these': 1.0, 'the': 7.0, 'picture': 2.0, 'even': 1.0, 'find': 1.0, 'sister': 2.0, 'she': 1.0, 'it': 1.0, 'for': 1.0, 'topper': 1.0, 'card': 1.0, 'are': 1.0, 'just': 2.0, 'this': 1.0, 'holders': 2.0, 'perfect': 2.0, 'in': 1.0, 'itself': 1.0, 'metal': 2.0, 'shower': 1.0, 'of': 2.0, 'pleased': 1.0, 'used': 2.0, 'clip': 1.0, 'thought': 1.0, 'animal': 1.0, 'is': 1.0, 'more': 2.0, 'comes': 1.0, 'was': 2.0, 'grass': 1.0, 'using': 1.0, 'which': 1.0, 'mom': 1.0}
Word element => {'gift': 1.0, 'home': 1.0, 'take': 1.0, 'was': 1.0, 'attractive': 1.0, 'around': 1.0, 'mom': 1.0, 'running': 1.0, 'wildly': 1.0, 'had': 1.0, 'them': 1.0, 'one': 1.0, 'although': 1.0, 'in': 1.0, 'probably': 1.0, 'and': 4.0, 'nursery': 1.0, 'end': 1.0, 'do': 1.0, 'ultrasound': 1.0, 'give': 1.0, 'photos': 1.0, 'photo': 1.0, 'of': 3.0, 'up': 1.0, 'cute': 1.0, 'guestbook': 1.0, 'holding': 1.0, 'i': 4.0, 'used': 1.0, 'broke': 1.0, 'write': 1.0, 'a': 2.0, 'we': 1.0, 's': 1.0, 't': 1.0, 'guests': 1.0, 'hold': 1.0, 'table': 1.0, 'wanted': 1.0, 'an': 1.0, 'but': 1.0, 'put': 1.0, 'kids': 1.0, 'this': 1.0, 'have': 2.0, 'as': 2.0, 'to': 7.0, 'all': 1.0, 'got': 1.0, 'didn': 1.0, 'nice': 1.0, 'few': 1.0, 'just': 1.0, 'be': 1.0, 'decor': 2.0, 'chance': 1.0, 'for': 3.0, 'been': 1.0, 'that': 1.0, 've': 1.0, 'would': 1.0, 'something': 1.0, 'instructions': 1.0, 'animals': 1.0, 'game': 1.0, 'couple': 1.0, 'sign': 1.0, 'the': 9.0, 'place': 1.0, 'able': 1.0, 'ask': 1.0, 'at': 1.0}
Word element => {'rcb': 1.0, 'satisfied': 1.0, 'time': 1.0, 'on': 1.0, 'is': 1.0, 'and': 2.0, 'useful': 1.0, 'place': 1.0, 'the': 1.0, 'just': 1.0, 'use': 1.0, 'packaging': 1.0, 'touch': 1.0, 'creatures': 1.0, 'winner': 1.0, 'for': 1.0, 'perfect': 1.0, 'in': 1.0, 'delightful': 1.0, 'cards': 1.0, 'this': 2.0, 'right': 1.0, 'item': 1.0, 'display': 1.0, 'a': 2.0, 'shipping': 1.0, 'very': 2.0, 'whimsey': 1.0, 'practical': 1.0, 'set': 1.0, 'offers': 1.0, 'of': 2.0, 'photo': 1.0, 'or': 1.0}
Word element => {'bigger': 1.0, 'little': 1.0, 'was': 1.0, 'made': 1.0, 'the': 1.0, 'small': 1.0, 'it': 1.0, 'i': 1.0, 'were': 1.0, 'kateaspen': 1.0, 'are': 1.0, 'again': 2.0, 'would': 1.0, 'previous': 1.0, 'like': 1.0, 'purchase': 1.0, 'once': 1.0, 'be': 1.0, 'but': 1.0, 'perfect': 1.0, 'just': 1.0, 'they': 3.0, 'nice': 1.0, 'if': 1.0, 'a': 1.0}
Word element => {'sturdy': 1.0, 'to': 1.0, 'place': 1.0, 'looking': 1.0, 'cute': 1.0, 'and': 2.0, 'adorable': 1.0, 'as': 1.0, 'them': 1.0, 'they': 1.0, 'really': 1.0, 'forward': 1.0, 'holders': 1.0, 'decorations': 1.0, 'are': 2.0, 'the': 1.0, 'my': 2.0, 'shower': 1.0, 'on': 1.0, 'tables': 1.0, 'seem': 1.0, 's': 1.0, 'using': 1.0, 'for': 1.0, 'daughter': 1.0, 'baby': 1.0}
Word element => {'price': 1.0, 'can': 1.0, 'for': 2.0, 'enough': 1.0, 'either': 1.0, 'use': 1.0, 'sturdy': 1.0, 'photos': 1.0, 'them': 1.0, 'shown': 1.0, 'exactly': 1.0, 'small': 1.0, 'my': 1.0, 'are': 2.0, 'in': 2.0, 'holders': 1.0, 'nursery': 1.0, 'photo': 1.0, 's': 1.0, 'what': 1.0, 'used': 1.0, 'they': 3.0, 'read': 1.0, 'son': 1.0, 'as': 2.0, 'and': 2.0, 'i': 2.0, 't': 1.0, 'the': 3.0, 'these': 1.0, 'great': 1.0, 'because': 1.0, 'measurements': 1.0, 'meant': 1.0, 'beat': 1.0, 'look': 2.0, 'to': 1.0, 'be': 1.0}
Word element => {}
Word element => {'brown': 1.0, 'perfect': 1.0, 'this': 1.0, 'now': 1.0, 'to': 2.0, 'wanted': 1.0, 'fixed': 1.0, 'beautiful': 1.0, 'was': 2.0, 'son': 1.0, 'girl': 1.0, 'year': 1.0, 'with': 2.0, 'pink': 2.0, 'old': 1.0, 'took': 1.0, '9': 1.0, 'own': 1.0, 'has': 3.0, 'and': 2.0, 'her': 2.0, 'daughter': 3.0, 'when': 1.0, 'for': 1.0, 'bed': 1.0, 'years': 1.0, 'baby': 1.0, 'my': 2.0, 'joy': 1.0, 'many': 1.0, 'i': 1.0, 'fan': 1.0, 'it': 1.0, 'she': 2.0, 'see': 1.0, 'him': 1.0, 'never': 1.0, 'the': 4.0, 'on': 2.0, 'face': 1.0, 'nursery': 1.0, 'go': 1.0, 'a': 3.0, 's': 1.0, 'bedding': 1.0, 'priceless': 1.0, 'into': 1.0, 'been': 1.0, 'of': 1.0, 'but': 1.0}
Word element => {'crib': 1.0, 'little': 1.0, 'my': 1.0, 'no': 1.0, 'display': 1.0, 'to': 2.0, 'entire': 1.0, 'nursery': 1.0, 'remodeled': 1.0, 'wait': 1.0, 'room': 1.0, 'much': 1.0, 'just': 1.0, 'and': 2.0, 'match': 1.0, 'as': 2.0, 'theme': 2.0, 'we': 2.0, 'snags': 1.0, 'precious': 1.0, 'see': 1.0, 'a': 1.0, 'is': 3.0, 'girl': 1.0, 'bag': 1.0, 'say': 1.0, 'made': 1.0, 'bedding': 1.0, 'out': 1.0, 'i': 2.0, 'beautiful': 1.0, 'picture': 1.0, 'can': 2.0, 'this': 1.0, 'it': 1.0, 'her': 1.0, 'what': 1.0, 'of': 1.0, 't': 1.0, 'nicely': 1.0, 'the': 6.0, 'in': 2.0, 'liked': 1.0, 'so': 1.0}
Word element => {'afraid': 1.0, 'was': 1.0, 'wall': 1.0, 'the': 1.0, 'too': 1.0, 'color': 1.0, 'wouldnt': 1.0, 'pink': 1.0, 'darker': 1.0, 'amazing': 1.0, 'in': 1.0, 'crib': 1.0, 'bedding': 1.0, 'with': 1.0, 'i': 1.0, 'matches': 1.0, 'really': 1.0, 'good': 1.0, 'quality': 1.0, 'it': 2.0, 'perfect': 1.0, 'a': 1.0}
Word element => {'person': 1.0, 'prettier': 1.0, 'it': 1.0, 'crib': 1.0, 'up': 1.0, 'in': 2.0, 'now': 1.0, 'boot': 1.0, 'use': 1.0, 'never': 1.0, 'stuff': 1.0, 'more': 1.0, 'is': 4.0, 'am': 2.0, 'feel': 1.0, 'nursery': 1.0, 'its': 1.0, 'was': 2.0, 'too': 1.0, 'and': 4.0, 'elegance': 1.0, 'fan': 1.0, 'i': 5.0, 'me': 1.0, 'not': 1.0, 'to': 4.0, 'all': 1.0, 'bumper': 1.0, '8': 1.0, 'have': 1.0, 'attracted': 2.0, 'the': 6.0, 'bedding': 1.0, 'a': 2.0, 't': 1.0, 'cutesy': 1.0, 'this': 1.0, 'first': 1.0, 'that': 2.0, 'pleased': 1.0, 'romantic': 1.0, 'set': 4.0, 'of': 2.0, 'available': 1.0, 'frilly': 1.0, 'for': 4.0, 'thing': 1.0, 'several': 1.0, 'reasons': 1.0, 'true': 1.0, 'baby': 1.0, 'price': 1.0, 'girls': 1.0, 'an': 1.0, 'with': 1.0, 'piece': 1.0, 'almost': 1.0, 'good': 1.0, 'pay': 1.0, 'be': 1.0, 'even': 2.0, 'didn': 1.0, 'would': 1.0}
Word element => {'family': 1.0, 'and': 1.0, 'friends': 1.0, 'my': 1.0, 'all': 1.0, 'recommend': 1.0, 'fast': 1.0, 'prices': 1.0, 'to': 1.0, 'place': 2.0, 'again': 1.0, 'buy': 1.0, 'supermall': 1.0, 'shipping': 1.0, 'from': 1.0, 'definitely': 1.0, 'baby': 1.0, 'will': 2.0, 'great': 1.0, 'love': 1.0, 'this': 2.0, 'i': 2.0}
Word element => {'new': 1.0, 'lovely': 1.0, 'happy': 1.0, 'little': 1.0, 'very': 1.0, 'overall': 1.0, 'received': 1.0, 'specific': 1.0, 'itself': 1.0, 'for': 1.0, 'product': 1.0, 'related': 1.0, 'don': 1.0, 'department': 1.0, 'from': 1.0, 'replacement': 1.0, 'staining': 2.0, 'some': 1.0, 'with': 2.0, 'came': 1.0, 'valance': 1.0, 'that': 3.0, 'recommended': 1.0, 'princess': 1.0, 'minor': 1.0, 'not': 2.0, 'due': 1.0, 'include': 1.0, 'are': 1.0, 'pad': 1.0, 'local': 2.0, 'but': 3.0, 'a': 2.0, 't': 2.0, 'orange': 1.0, 'the': 7.0, 'this': 2.0, 'it': 4.0, 'of': 1.0, 'more': 1.0, 'is': 3.0, 'amazon': 1.0, 'everything': 1.0, 'so': 1.0, 'and': 1.0, 'set': 2.0, 'includes': 1.0, 'reasonable': 1.0, 'bumpers': 1.0, 'about': 2.0, 'baby': 1.0, 'our': 1.0, 'to': 3.0, 'purchased': 1.0, 'had': 1.0, 'increased': 1.0, 'price': 1.0, 'm': 2.0, 'just': 2.0, 'worried': 1.0, 'sids': 1.0, 'i': 5.0, 'think': 1.0, 'on': 2.0, 'only': 1.0, 'nursery': 2.0, 'risk': 1.0, 'much': 1.0, 'than': 1.0, 'doesn': 1.0, 'beautiful': 1.0, 'was': 1.0, 'store': 2.0, 'my': 2.0, 'bumper': 1.0, 'complaint': 1.0}
Word element => {'wall': 1.0, 'decorations': 1.0, 'includes': 1.0, 'which': 1.0, '8': 1.0, '3': 1.0, 'advertises': 1.0, 'but': 1.0, 'haven': 1.0, 'baby': 1.0, 'chance': 1.0, 'for': 1.0, 'crib': 1.0, 't': 1.0, 'the': 2.0, 'purchased': 1.0, 'had': 1.0, 'to': 1.0, 'was': 1.0, 'a': 3.0, 'see': 1.0, 'this': 3.0, 'shower': 1.0, 'it': 1.0, 'others': 1.0, 'as': 1.0, 'on': 1.0, 'piece': 2.0, 'describe': 1.0, '6': 1.0, 'set': 1.0}
Word element => {'good': 1.0, 'quality': 1.0, 'i': 1.0, 'daughter': 1.0, 'seems': 1.0, 'in': 1.0, 'something': 1.0, 'for': 1.0, 'the': 3.0, 'special': 1.0, 'is': 2.0, 'really': 1.0, 'this': 1.0, 'complements': 1.0, 'room': 1.0, 'received': 1.0, 'my': 1.0, 'color': 1.0, 'lots': 1.0, 'daniella': 1.0, 'of': 1.0, 'set': 1.0, 'so': 1.0, 's': 1.0, 'girly': 1.0, 'and': 1.0}
Word element => {'good': 1.0, 'law': 1.0, 'in': 1.0, 'daughter': 1.0, 'gift': 1.0, 'a': 1.0, 'to': 2.0, 'pretty': 1.0, 'looks': 1.0, 'give': 1.0, 'just': 1.0, 'quality': 1.0, 'as': 1.0, 'very': 2.0, 'and': 1.0, 'like': 1.0, 'my': 1.0, 'the': 1.0, 'this': 1.0, 'ad': 1.0, 't': 1.0, 'wait': 1.0, 'can': 1.0}
Word element => {'kids': 1.0, 'for': 1.0, 'blanket': 1.0, 'little': 1.0, 'cute': 1.0}
Word element => {'nice': 1.0, 'very': 1.0, 'a': 1.0, 'its': 2.0, 'not': 1.0, 'because': 1.0, 'little': 1.0, 'baby': 1.0, 'sweater': 1.0, 'in': 1.0, 'this': 1.0, 'like': 2.0, 'poncho': 1.0, 'but': 1.0, 'i': 1.0, 'too': 1.0, 'warm': 1.0, 'keeps': 1.0, 'my': 1.0, 'heavy': 1.0, 'the': 1.0, 'cool': 1.0, 'winter': 1.0, 'jacket': 1.0, 'desert': 1.0}
Word element => {'found': 1.0, 'where': 1.0, 'local': 1.0, 'and': 1.0, 'first': 1.0, 'it': 2.0, 'this': 1.0, 'are': 1.0, 'great': 1.0, 'the': 4.0, 'set': 1.0, 'best': 1.0, 'bedding': 1.0, 'we': 2.0, 's': 1.0, 'perfect': 1.0, 'than': 1.0, 'love': 1.0, 'for': 1.0, 'boys': 1.0, '30': 1.0, 'online': 1.0, 'part': 1.0, 'was': 2.0, 'colors': 1.0, 'price': 1.0, 'store': 1.0, 'cheaper': 1.0}
Word element => {'chubby': 1.0, 'knees': 1.0, 'protect': 1.0, 'a': 1.0, 'intended': 1.0, 'elastic': 1.0, 'it': 2.0, 'to': 2.0, 'loose': 1.0, 'doesnt': 1.0, 'not': 2.0, 'do': 1.0, 'on': 1.0, 'legs': 1.0, 'leg': 1.0, 'what': 1.0, 'does': 1.0, 'or': 1.0, 'tight': 1.0, 'ring': 1.0, 'really': 1.0, 'is': 3.0, 'leave': 1.0, 'my': 1.0, 'baby': 1.0, 'average': 1.0}
Word element => {'have': 1.0, 'at': 1.0, 'love': 1.0, 'that': 1.0, 'm': 1.0, 'with': 1.0, 'piece': 1.0, 'like': 1.0, 'overall': 1.0, 'from': 1.0, 'when': 1.0, 'use': 2.0, 'first': 2.0, 'upon': 1.0, 'updates': 1.0, 'squeaked': 1.0, 'infatuated': 1.0, 'distance': 1.0, 'but': 2.0, 'sitting': 1.0, 'height': 1.0, 'an': 1.0, 'will': 1.0, 'adjusted': 1.0, 'seems': 2.0, 'however': 1.0, 'once': 1.0, 'of': 2.0, 'edge': 1.0, 'good': 1.0, 'expected': 1.0, 'than': 2.0, 'lower': 2.0, 'so': 2.0, 'bit': 2.0, 'is': 1.0, 'sure': 1.0, 'several': 1.0, 'might': 1.0, 'a': 4.0, 's': 2.0, 'it': 6.0, 'research': 1.0, 'same': 1.0, 'if': 2.0, 'blinded': 1.0, 'was': 1.0, 'google': 1.0, 'made': 1.0, 'appropriate': 1.0, 'tiffany': 1.0, 'purchasing': 1.0, 'this': 3.0, 'found': 1.0, 'in': 3.0, 'i': 6.0, 'saved': 1.0, 'after': 2.0, 'sight': 1.0, 'the': 12.0, 'do': 1.0, 'much': 1.0, 'dollars': 1.0, 'great': 2.0, 'foot': 1.0, 'enough': 1.0, 'then': 1.0, 'decently': 1.0, 'ottoman': 3.0, 'through': 1.0, 'one': 1.0, 'color': 2.0, 'sold': 1.0, 'bratt': 1.0, 'chair': 4.0, 'combo': 1.0, 'purchased': 1.0, 'by': 2.0, 'arrived': 1.0, 'blue': 1.0, 'close': 1.0, 'seller': 1.0, 'not': 1.0, 'me': 1.0, 'be': 1.0, 'decor': 1.0, 'hundred': 1.0, 'furniture': 1.0, 'make': 1.0, 'on': 1.0, 'double': 1.0, 'condition': 1.0, 'any': 1.0, 'as': 1.0, 'to': 1.0, 'check': 1.0, 'dimensions': 1.0}
Word element => {'great': 1.0, 'stock': 1.0, '7': 1.0, '5': 1.0, 'within': 1.0, 'product': 1.0, 'your': 1.0, 'reality': 1.0, 'when': 2.0, 'them': 1.0, 'convenience': 1.0, 'technically': 1.0, 'today': 1.0, 'about': 1.0, 'no': 1.0, 'arrived': 1.0, 'just': 3.0, 'worried': 1.0, 'by': 1.0, 'few': 1.0, 'we': 3.0, 't': 2.0, 'a': 5.0, 'seriously': 1.0, 'say': 1.0, 'is': 4.0, 'but': 1.0, 'as': 1.0, 'to': 4.0, 'called': 4.0, 'looks': 1.0, 'size': 2.0, 'kid': 1.0, 'amazinggggggggggggggg': 1.0, 'nervous': 1.0, 'they': 3.0, 'match': 1.0, 'labeled': 1.0, 'matching': 2.0, 'listed': 1.0, 'stacks': 2.0, 'and': 6.0, 'perfect': 2.0, 'weren': 1.0, 'also': 1.0, 'our': 2.0, 'item': 2.0, 'reason': 1.0, 'sold': 1.0, 'bit': 2.0, 'so': 1.0, 'through': 1.0, 'ottoman': 3.0, 'was': 3.0, 'same': 1.0, 'color': 3.0, 's': 2.0, 'advice': 1.0, 'grand': 1.0, 'it': 6.0, 'glider': 3.0, 'while': 2.0, 'for': 2.0, 'both': 1.0, 'getting': 1.0, 'have': 1.0, 'you': 2.0, 'complaints': 1.0, 'wouldn': 1.0, 'close': 1.0, 'amazon': 1.0, 'smoothly': 1.0, 'blue': 1.0, 'days': 1.0, 'day': 2.0, 'tiffany': 1.0, 'status': 1.0, 'needless': 1.0, 'really': 1.0, 'in': 3.0, 'said': 1.0, 'nursery': 1.0, 'side': 1.0, 'note': 1.0, 'the': 9.0, 'of': 4.0, 'call': 1.0, 'seller': 1.0, 'after': 2.0, 'big': 1.0, 'check': 1.0, 'on': 2.0, 'think': 1.0, 'if': 1.0, 'glides': 1.0, 'shipment': 1.0, 'usually': 1.0, 'whatever': 1.0, 'amazing': 2.0, 'purchase': 2.0, 'be': 1.0, 'window': 2.0, 'either': 1.0, 'september': 1.0, 'i': 3.0, 'until': 1.0, 'see': 1.0, 'low': 1.0, 'behold': 1.0, 'shipped': 1.0, 'out': 2.0, 'end': 1.0, 'each': 1.0, 'there': 1.0, 'give': 1.0}
Word element => {'lol': 1.0, 'but': 1.0, 'say': 1.0, 'to': 1.0, 'else': 1.0, 'what': 1.0, 'don': 1.0, 'definitely': 1.0, 'out': 1.0, 'my': 1.0, 't': 1.0, 'great': 1.0, 'older': 1.0, 'it': 3.0, 'can': 1.0, 'know': 1.0, 'seat': 3.0, 'a': 3.0, 'looks': 1.0, 'actually': 1.0, 's': 2.0, 'good': 1.0, 'loves': 1.0, 'like': 1.0, 'and': 1.0, 'she': 2.0, 'sturdy': 1.0, 'use': 1.0, 'grow': 1.0, 'i': 1.0, 'daughter': 1.0, 'when': 1.0, 'gets': 1.0}
Word element => {'and': 1.0, 'booster': 1.0, 'my': 3.0, 'everytime': 1.0, 'comfy': 1.0, 'grandson': 1.0, 'loves': 1.0, 'love': 1.0, 'it': 1.0, 'i': 1.0, 'seat': 2.0, 'he': 2.0, 'gets': 1.0, 'into': 1.0, 'nice': 1.0, 'car': 1.0, 'says': 1.0}
Word element => {'bulky': 1.0, 'too': 1.0, 'to': 1.0, 'easy': 1.0, 'is': 1.0, 'they': 1.0, 'occasionally': 1.0, 'i': 1.0, 'it': 3.0, 'bought': 1.0, 'kindergarten': 1.0, 'my': 2.0, 'because': 1.0, 'no': 1.0, 'laws': 1.0, 'pick': 1.0, 'like': 1.0, 'and': 2.0, 'up': 1.0, 'in': 1.0, 'daughter': 1.0, 'install': 1.0, 'from': 1.0}
Word element => {'little': 1.0, 'whatever': 1.0, 'but': 1.0, 'time': 1.0, 'you': 2.0, 'waiting': 1.0, 'school': 1.0, 'hops': 1.0, 'week': 1.0, 'car': 2.0, 'of': 1.0, 'third': 1.0, 'out': 2.0, 'child': 1.0, 'cheap': 1.0, 'for': 2.0, 'kicked': 1.0, 'get': 1.0, 'and': 3.0, 'hundred': 1.0, 'it': 4.0, 'with': 1.0, 'armrest': 2.0, 'fine': 1.0, 'the': 6.0, 'behind': 1.0, 'simple': 1.0, 'fall': 1.0, 'other': 1.0, 'cars': 1.0, 'freaking': 1.0, 'line': 1.0, 'your': 2.0, 'constantly': 1.0, 'while': 3.0, 'teacher': 1.0, 'in': 1.0, 's': 3.0, 'a': 2.0, 'that': 1.0, 'into': 1.0, 'helper': 1.0, 'ground': 1.0, 'seat': 1.0, 'pads': 1.0, 'to': 1.0, 'outer': 1.0, 'off': 3.0, 're': 1.0, 'cover': 1.0, 'their': 1.0, 'kids': 1.0, 'picks': 1.0, 'drop': 1.0, 'tosses': 1.0, 'back': 1.0}
Word element => {'girl': 1.0, 'shopping': 1.0, 'definitely': 1.0, 'would': 1.0, 'design': 1.0, 'graffiti': 1.0, 'and': 1.0, 'colors': 1.0, 'for': 1.0, 'love': 1.0, 'anyone': 1.0, 'in': 1.0, 'multiple': 1.0, 'daughter': 1.0, 'big': 1.0, 'year': 1.0, 'sight': 1.0, 'fell': 1.0, 'so': 1.0, 'little': 1.0, 'inspired': 1.0, 'claims': 1.0, 'old': 1.0, 'six': 1.0, 's': 1.0, 'my': 1.0, 'at': 1.0, 'booster': 1.0, 'first': 1.0, 'it': 1.0, 'with': 2.0, 'this': 1.0, 'recommend': 1.0, 'she': 1.0, 'to': 1.0, 'its': 1.0, 'their': 1.0, 'that': 1.0, '34': 4.0, 'cool': 1.0}
Word element => {'a': 1.0, 'throughout': 1.0, 'this': 1.0, 'one': 1.0, 'buy': 1.0, 'weight': 1.0, 'the': 1.0, 'pricemy': 1.0, 'is': 1.0, 'triprecommend': 1.0, 'just': 1.0, 'it': 1.0, 'great': 1.0, 'size': 1.0, 'right': 3.0, 'daughter': 1.0, 'enjoyed': 1.0}
Word element => {'soft': 1.0, 'and': 1.0, 'like': 1.0, 'as': 2.0, 'support': 1.0, 'the': 3.0, 'original': 2.0, 'has': 1.0, 'have': 1.0, 'that': 2.0, 'set': 1.0, 'also': 1.0, 'i': 1.0, 'one': 1.0, 'even': 1.0, 'back': 1.0, 'but': 1.0, 'though': 1.0, 'this': 1.0, 'it': 2.0, 'full': 1.0, 'looks': 1.0, 'is': 1.0, 'not': 1.0}
Word element => {'at': 1.0, 'good': 1.0, 'watch': 1.0, 'normal': 1.0, 'up': 1.0, 'was': 1.0, 'store': 1.0, 'quick': 1.0, 'out': 1.0, 'came': 1.0, 'when': 1.0, 'in': 1.0, 'dog': 1.0, '35': 1.0, 'fuzzy': 1.0, 'own': 1.0, 'likes': 1.0, 'he': 1.0, 'due': 1.0, 'somewhat': 1.0, 'would': 1.0, 'think': 1.0, 'and': 3.0, 'keeshond': 1.0, 'back': 1.0, 'house': 1.0, 'sitting': 2.0, 'but': 1.0, 'did': 1.0, 'if': 1.0, 'so': 2.0, 'double': 1.0, 'they': 2.0, 'his': 2.0, 'cleaner': 1.0, 'guess': 1.0, 'pre': 1.0, 'be': 2.0, 'school': 1.0, 'great': 1.0, 'a': 3.0, 's': 2.0, 't': 1.0, 'the': 4.0, 'have': 2.0, 'this': 1.0, 'than': 1.0, 'sister': 1.0, 'higher': 1.0, 'she': 1.0, 'it': 6.0, 'from': 1.0, 'hard': 1.0, 'just': 1.0, 'me': 1.0, 'not': 1.0, 'that': 1.0, 'nephew': 1.0, 'for': 2.0, 'uncomfortable': 1.0, 'bought': 1.0, 'one': 1.0, 'purchase': 1.0, 'my': 3.0, 'fair': 1.0, 'take': 2.0, 'days': 1.0, 'newer': 1.0, 'liked': 1.0, 'tho': 1.0, 'only': 1.0, 'its': 1.0, 'seat': 2.0, 'to': 7.0, 'as': 1.0, 'i': 5.0, 'complicated': 1.0, 'trip': 1.0, 'like': 1.0, 'price': 1.0, 'm': 1.0, 'sure': 1.0, 'caught': 1.0, 'say': 1.0, 'is': 2.0, 'required': 1.0}
Word element => {'says': 1.0, 'holders': 1.0, 'cup': 1.0, 'comfy': 1.0, 'loves': 1.0, 'son': 1.0, 'and': 1.0, 'quality': 1.0, 'high': 1.0, 'price': 1.0, 'love': 1.0, 'it': 2.0, 'great': 1.0, 'nice': 1.0, 'colors': 1.0, 'that': 1.0, 'a': 1.0, 'match': 1.0, 'the': 1.0, 'my': 1.0, 'black': 1.0, 's': 1.0, 'interior': 1.0}
Word element => {'booster': 1.0, 'recommend': 1.0, 'definitely': 1.0, 'other': 1.0, 'drink': 1.0, 'my': 1.0, 'cup': 2.0, 'buckle': 1.0, 'also': 2.0, 'in': 1.0, 'snacks': 1.0, 'for': 4.0, 'love': 1.0, 'one': 2.0, 'truck': 2.0, 'son': 1.0, 'easy': 2.0, 'and': 3.0, 'it': 3.0, 'from': 1.0, 'looked': 1.0, 'only': 1.0, 'really': 1.0, 'is': 3.0, 'has': 2.0, 'transfer': 1.0, 'such': 1.0, 'nice': 1.0, 'great': 1.0, 'the': 4.0, 'light': 1.0, 'carseat': 1.0, 'super': 1.0, 'at': 1.0, 'himself': 1.0, 'less': 1.0, 'mom': 1.0, 'this': 2.0, 'holders': 1.0, 'a': 2.0, 'we': 3.0, 'boosters': 1.0, 'been': 1.0, 'that': 2.0, 'into': 1.0, 'to': 4.0, 'seat': 1.0, '2': 2.0, 'work': 1.0, 'hide': 1.0, 'most': 1.0, 'of': 1.0, 'have': 2.0, 'holder': 1.0}
Word element => {'m': 1.0, 'older': 1.0, 'little': 1.0, 'is': 1.0, 'shoulder': 2.0, 'the': 2.0, 'great': 1.0, 'my': 1.0, 'pulling': 1.0, 'an': 1.0, 'finally': 1.0, 'would': 3.0, 'exactly': 1.0, 'when': 1.0, 'returned': 1.0, 'thinking': 1.0, 'i': 4.0, 'into': 1.0, 'that': 2.0, 'got': 2.0, 'this': 2.0, 'it': 6.0, 'he': 1.0, 'looked': 1.0, 'hard': 1.0, 'not': 1.0, 'stay': 1.0, 'hold': 1.0, 'and': 2.0, 'get': 1.0, 'be': 3.0, 'strap': 2.0, 'however': 1.0, 'his': 1.0, 'excellent': 1.0, 'thought': 1.0, 'what': 1.0, 'had': 1.0, 'seat': 3.0, 'to': 2.0, 'we': 1.0, 'a': 4.0, 'time': 1.0, 'has': 1.0, 'on': 1.0, 'your': 1.0, 'back': 2.0, 'child': 2.0, 'up': 1.0, 'should': 1.0, 'where': 1.0, 'for': 1.0, 'reason': 1.0, 'if': 1.0}
Word element => {'well': 1.0, 'armrests': 1.0, 'otherwise': 1.0, 'of': 1.0, 'pull': 1.0, 'catch': 1.0, 'to': 2.0, 'began': 2.0, 'fabric': 1.0, 'several': 1.0, 'cushion': 1.0, 'twin': 1.0, 'grandsons': 2.0, 'bought': 1.0, 'for': 2.0, 'in': 1.0, 'at': 1.0, 'would': 1.0, 'inside': 1.0, 'put': 1.0, 'work': 2.0, 'time': 1.0, 'our': 2.0, 'we': 3.0, 'and': 3.0, 'stuffing': 1.0, 'seats': 2.0, 'from': 1.0, 'decided': 1.0, 'us': 1.0, '2': 1.0, 'these': 1.0, 'the': 7.0, 'cupholders': 1.0, 'models': 1.0, 'looked': 1.0, 'first': 1.0}
Word element => {'grandson': 1.0, 'my': 1.0, 'for': 1.0, 'perfect': 1.0, 'its': 1.0}
Word element => {'holders': 1.0, 'good': 1.0, 'cup': 1.0, 'cover': 1.0, 'this': 1.0, 'is': 1.0, 'very': 2.0, 'love': 1.0, 'it': 1.0, 'also': 1.0, 'product': 1.0, 'useful': 1.0, 'separable': 1.0, 'additionally': 1.0, 'are': 1.0, 'my': 1.0, 'washable': 1.0, 'kid': 1.0}
Word element => {'many': 1.0, 'padding': 1.0, 'this': 1.0, 'retail': 1.0, 'more': 1.0, 'booster': 1.0, 'on': 1.0, 'is': 1.0, 'than': 1.0, 'just': 1.0, 'found': 1.0, 'i': 1.0, 'it': 1.0, 'was': 1.0, 'looking': 1.0, 'in': 1.0, 'for': 1.0, 'stores': 1.0, 'seat': 1.0, 'has': 1.0}
Word element => {'that': 1.0, 'now': 1.0, 'every': 1.0, 'engaged': 1.0, 'fully': 1.0, 'his': 1.0, 'of': 1.0, 'popped': 1.0, 'son': 1.0, 'my': 1.0, 'and': 1.0, 'dear': 1.0, 'for': 1.0, 'was': 1.0, 'belt': 2.0, 'the': 6.0, 'hard': 1.0, 'stopped': 1.0, 'it': 4.0, 'is': 4.0, 'realized': 1.0, 'buckle': 1.0, 'in': 3.0, 'check': 1.0, 'back': 1.0, 'or': 1.0, 'i': 5.0, 'suddenly': 1.0, 'better': 1.0, 'not': 2.0, 'than': 1.0, 'because': 1.0, 'get': 1.0, 'sure': 1.0, 'be': 1.0, 'other': 2.0, 'would': 1.0, 'concern': 1.0, 'out': 2.0, 'nice': 1.0, 'underside': 1.0, 't': 2.0, 'a': 4.0, 'see': 1.0, 'very': 1.0, 'little': 1.0, 'time': 1.0, 'bit': 1.0, 'over': 1.0, 'on': 1.0, 'receiver': 1.0, 'but': 1.0, 'sitting': 1.0, 'can': 2.0, 'car': 2.0, 'why': 1.0, 'they': 1.0, 'narrow': 1.0, 'our': 1.0, 'seat': 4.0, 'any': 1.0, 'to': 1.0, 'as': 2.0, 'least': 1.0, 'at': 1.0, 'safety': 1.0, 'manually': 1.0, 'am': 1.0, 'when': 1.0}
Word element => {'being': 1.0, 'not': 1.0, 'from': 1.0, 'used': 1.0, 'stack': 1.0, 'adult': 1.0, 'easily': 1.0, 'remove': 1.0, 'all': 1.0, 'have': 1.0, 'sit': 1.0, 'want': 1.0, 'them': 1.0, 'keep': 1.0, 'move': 1.0, 'when': 2.0, 'kids': 1.0, 'in': 2.0, 'for': 2.0, 'use': 1.0, 'to': 5.0, 'and': 2.0, 'up': 1.0, 'of': 1.0, 'our': 1.0, 'they': 3.0, 'bought': 1.0, 'around': 1.0, 'enough': 1.0, 'space': 1.0, 'two': 1.0, 'booster': 1.0, 'taking': 1.0, 'are': 1.0, 'we': 2.0, 'church': 1.0, 'van': 1.0, 'seats': 2.0, 'light': 1.0, 'an': 1.0, 'work': 1.0, 'nicely': 1.0, 'these': 1.0, 'the': 2.0, 'great': 1.0, 'crowd': 1.0, 'weight': 1.0}
Word element => {'us': 1.0, 'for': 1.0, 'which': 1.0, 'washed': 1.0, 'be': 1.0, 'can': 1.0, 'the': 2.0, 'are': 1.0, 'removed': 1.0, 'a': 2.0, 'is': 1.0, 'holders': 1.0, 'been': 1.0, 'plus': 1.0, 'cushion': 1.0, 'has': 1.0, 'cup': 1.0, 'good': 1.0, 'pus': 1.0, 'huge': 1.0, 'and': 2.0}
Word element => {'with': 1.0, 'up': 1.0, 'no': 1.0, 'spills': 1.0, 'when': 1.0, 'like': 1.0, 'show': 1.0, 'doesn': 1.0, 'showing': 1.0, 'she': 3.0, 'it': 5.0, 'holders': 2.0, 'this': 1.0, 'love': 1.0, 'for': 3.0, 'milk': 1.0, 'and': 1.0, 'granddaughter': 1.0, 'now': 1.0, 'old': 1.0, 'stains': 2.0, 'loves': 1.0, 'are': 1.0, 'keeps': 1.0, 'the': 5.0, 'my': 1.0, 'cup': 2.0, 'bought': 1.0, 'color': 1.0, 'booster': 1.0, 'things': 1.0, 'i': 3.0, '4': 1.0, 'uses': 2.0, 'on': 1.0, 'also': 1.0, 'in': 3.0, 'drinks': 1.0, '5': 1.0, 't': 1.0, 'a': 1.0, 'floor': 1.0, 'see': 1.0, 'plus': 1.0, '34': 2.0, 'of': 1.0, 'them': 4.0, 'many': 1.0, 'trash': 1.0, 'is': 1.0, 'year': 1.0, 'puts': 2.0, 'clean': 1.0, 'her': 4.0, 'instead': 1.0, 'throwing': 1.0, 'can': 1.0, 'money': 1.0, 'as': 1.0, 'seat': 1.0, 'all': 1.0, 'wonderful': 1.0}
Word element => {'cup': 1.0, 'has': 1.0, 'that': 1.0, 'fact': 1.0, 'theme': 1.0, 'liked': 1.0, 'holders': 1.0, 'especially': 1.0, 'i': 1.0, 'bought': 1.0, 'the': 2.0, 'my': 1.0, 'and': 2.0, 'loves': 1.0, 'this': 1.0, 'for': 1.0, 'sister': 1.0, 'little': 1.0, 'she': 2.0, 'it': 2.0, 'absolutely': 1.0}
Word element => {'than': 1.0, 'less': 1.0, 'used': 1.0, 'years': 1.0, 'ten': 1.0, 'improvement': 1.0, 'without': 1.0, 'terrible': 1.0, 'four': 1.0, 'fabric': 1.0, 'in': 1.0, 'laundered': 1.0, 'afternoon': 1.0, 'as': 1.0, 'year': 1.0, 'place': 1.0, 'was': 2.0, 'to': 1.0, 'i': 1.0, 'old': 2.0, 'easy': 1.0, 'and': 3.0, 'the': 2.0, 'hours': 1.0, 'booster': 1.0, 'light': 1.0, 'disappointment': 1.0, 'looks': 2.0, 'is': 1.0, 'pilled': 1.0, 'seat': 1.0, 'car': 1.0, 'instructed': 1.0, 'however': 1.0, 'after': 1.0, 'a': 2.0, 'for': 1.0, 'one': 1.0, 'using': 1.0, '6': 1.0, 'with': 1.0, 'this': 1.0, 'it': 3.0}
Word element => {'how': 1.0, 'figure': 1.0, 'my': 1.0, 'iteven': 1.0, 'can': 1.0, 'it': 2.0, 'out': 1.0, 'from': 1.0, 'use': 1.0, 'easy': 1.0, 'to': 4.0, 'parents': 1.0, 'useeasy': 1.0, 'transfer': 1.0, 'cari': 1.0, 'recommend': 1.0, 'car': 1.0, 'was': 1.0, 'would': 1.0}
Word element => {'appreciate': 1.0, 'too': 1.0, 'safe': 1.0, 'purchase': 1.0, 'thank': 1.0, 'recommend': 1.0, 'is': 1.0, 'and': 1.0, 'very': 2.0, 'i': 2.0, 'great': 1.0, 'it': 3.0, 'much': 2.0, 'you': 1.0, 'comfortable': 1.0}
Word element => {'website': 1.0, 'dirt': 1.0, 'extra': 1.0, 'turbo': 1.0, 'have': 1.0, 'eta': 1.0, 'little': 1.0, 'rest': 2.0, 'belt': 3.0, 'spare': 2.0, 't': 1.0, 'require': 1.0, 'come': 1.0, 'lapbelt': 2.0, 'kids': 3.0, 'positioning': 1.0, 'any': 1.0, 'keeps': 1.0, 'many': 1.0, 'where': 2.0, 'your': 1.0, 'makes': 1.0, 'clek': 1.0, 'such': 2.0, 'for': 5.0, 'sits': 1.0, 'you': 1.0, 'things': 1.0, 'years': 1.0, 'onto': 1.0, 'thin': 1.0, 'easy': 1.0, 'able': 1.0, 'however': 1.0, 'projectiles': 1.0, 'want': 1.0, 'great': 1.0, 'if': 3.0, 'position': 3.0, 'strap': 1.0, 'better': 1.0, 'shoulder': 2.0, 'is': 11.0, 'can': 3.0, 'jazz': 1.0, 'so': 3.0, 'that': 7.0, 'thrilled': 1.0, 'child': 3.0, 'merely': 1.0, 'behind': 1.0, 'does': 1.0, 'hipbones': 1.0, 'installed': 1.0, 'dangerous': 1.0, 'not': 4.0, 'purchased': 1.0, 'use': 2.0, 'positioned': 1.0, 'intended': 2.0, 'was': 1.0, 'at': 1.0, 'seatbelt': 3.0, 'from': 1.0, 'with': 4.0, 'garnered': 1.0, 'pads': 2.0, 'slide': 1.0, 'now': 1.0, 'older': 1.0, 'a': 14.0, 'car': 3.0, 'cupholders': 3.0, 'again': 1.0, 'well': 1.0, 'it': 8.0, 'be': 5.0, 'look': 1.0, 'built': 1.0, 'attachment': 1.0, 'once': 1.0, 'clip': 1.0, 'reminders': 1.0, 'basis': 1.0, 'used': 4.0, 'become': 1.0, 'graco': 3.0, 'zero': 1.0, 'this': 3.0, 'fall': 2.0, 'few': 1.0, 'full': 1.0, 'diono': 1.0, 'pad': 1.0, 'vehicle': 4.0, 'in': 8.0, 'seat': 7.0, 'backless': 4.0, 'booster': 9.0, 'cups': 3.0, 'originally': 1.0, 'case': 1.0, 'or': 1.0, 'support': 1.0, 'latch': 2.0, 'the': 28.0, 'old': 1.0, 'of': 3.0, 'effects': 1.0, 'no': 1.0, 'time': 2.0, 'has': 3.0, 'regular': 1.0, 'them': 1.0, 'needing': 1.0, 'to': 9.0, 'never': 1.0, 'abdomen': 1.0, 'on': 3.0, 'occupants': 1.0, 'and': 5.0, '9': 1.0, 'am': 1.0, 'fe': 1.0, 'how': 1.0, 'are': 9.0, 'my': 4.0, 'easily': 1.0, 'looks': 1.0, 'red': 1.0, 'entire': 1.0, 'fits': 2.0, 'way': 2.0, 'all': 1.0, 'adult': 1.0, 'an': 1.0, 'other': 1.0, 'playing': 1.0, 'i': 4.0, 'simple': 1.0, 'across': 2.0, 'lap': 1.0, 'very': 2.0, 'required': 1.0, 'upper': 1.0, 'there': 4.0, 'turbobooster': 2.0, 'guides': 1.0, '12': 1.0, 'show': 1.0, 'should': 2.0, 'suffered': 1.0, 'into': 2.0, 'moved': 1.0, 'two': 2.0, 'its': 1.0, 'screw': 1.0, 'armrests': 3.0, 'proper': 1.0, 'height': 1.0, 'overall': 1.0, 'they': 4.0, 'boost': 1.0, 'adjusted': 1.0, 'desired': 1.0, 'but': 1.0, 'although': 1.0, 'up': 2.0, 'adequate': 2.0, 'thighs': 1.0, 's': 3.0, 'good': 1.0, 'cannot': 1.0, 'boosters': 4.0, 'positions': 1.0, 'aren': 1.0, 'thing': 1.0, 'retractable': 1.0, 'shallow': 1.0, 'out': 2.0, 'complaints': 1.0, 'carpet': 1.0, 'spilling': 1.0, 'when': 1.0, 'as': 5.0, 'sit': 1.0, 'please': 1.0, 'angled': 1.0, 'remember': 1.0, 'cheap': 1.0, 'only': 1.0, 'accident': 1.0, 'soft': 1.0, 'without': 1.0, 'do': 1.0, 'needed': 1.0, 'seats': 1.0, 'big': 2.0, 'ready': 2.0, 'he': 1.0, 'santa': 1.0, 'she': 1.0, 'always': 1.0, 'most': 1.0, 'until': 3.0, 'trip': 1.0, 'somewhere': 1.0, 'children': 2.0, 'between': 1.0, 'age': 1.0, '8': 1.0, 'affix': 1.0, '5': 2.0, 'point': 1.0, 'need': 1.0, 'harness': 1.0, 'head': 2.0}
Word element => {'another': 1.0, 'to': 1.0, 'car': 1.0, 'from': 1.0, 'seats': 1.0, 'every': 1.0, 'changed': 1.0, 'our': 1.0, 'we': 1.0, 'seat': 1.0, 'booster': 1.0, 'the': 1.0, 'time': 1.0, 'is': 1.0, 'for': 2.0, 'grandchildren': 1.0, 'one': 2.0, 'great': 1.0, 'money': 1.0, 'saves': 1.0, 'this': 1.0, 'got': 1.0}
Word element => {'children': 1.0, 'body': 1.0, 'be': 1.0, 'belt': 1.0, 'size': 1.0, 'stay': 1.0, 'seat': 1.0, 'protection': 1.0, 'moment': 1.0, 'to': 5.0, 'being': 1.0, 'of': 5.0, 'up': 1.0, 'transporting': 1.0, 'any': 1.0, 'and': 1.0, 'investment': 1.0, 'is': 1.0, 'best': 1.0, 'exact': 1.0, 'for': 1.0, 'comfortable': 1.0, 'the': 8.0, 'my': 1.0, 'doubting': 1.0, 'they': 2.0, 'nephews': 1.0, 'adapt': 1.0, 'easily': 1.0, 'car': 1.0, 'light': 1.0}
Word element => {'just': 1.0, 'than': 1.0, 'other': 1.0, 'loose': 1.0, 'enable': 1.0, 'would': 1.0, 'hooking': 1.0, 'flip': 1.0, 'caused': 1.0, 'an': 1.0, 'come': 1.0, 'seats': 2.0, 'car': 3.0, 'models': 1.0, 'inside': 1.0, 'event': 1.0, 'rings': 1.0, 'booster': 2.0, 'from': 2.0, 'that': 2.0, 'latching': 1.0, 's': 1.0, 'a': 3.0, 'included': 1.0, 'not': 2.0, 'accident': 1.0, 'easy': 1.0, 'who': 1.0, 'inches': 1.0, 'rear': 1.0, '45': 1.0, 'now': 1.0, 'tall': 1.0, 'and': 7.0, 'lbs': 1.0, 'steel': 1.0, 'of': 5.0, 'set': 1.0, 'two': 2.0, 'hook': 1.0, 'ordered': 1.0, 'they': 1.0, 'back': 2.0, '44': 1.0, 'small': 1.0, 'fine': 1.0, 'stain': 1.0, 'roll': 1.0, 'these': 2.0, 'the': 8.0, 'for': 1.0, 'are': 2.0, 'my': 1.0, 'son': 1.0, 'is': 4.0, 'include': 1.0, 'about': 1.0, 'positions': 1.0, 'thing': 1.0, 'up': 1.0, 'washable': 1.0, 'covers': 1.0, 'to': 6.0, 'seat': 4.0, 'unlikely': 1.0, 'in': 1.0, 'resistant': 1.0, 'arm': 2.0, 'latch': 1.0, 'or': 1.0, 'cup': 1.0, 'rests': 2.0, 'holders': 1.0, 'install': 1.0, 'nice': 1.0, 'one': 2.0, 'entire': 1.0, 'most': 1.0, 'removable': 1.0, 'can': 1.0, 'be': 1.0, 'unit': 1.0, 'only': 1.0, 'pretty': 1.0}
Word element => {'cup': 1.0, 'two': 1.0, 'loves': 1.0, 'and': 2.0, 'holders': 1.0, 'perfect': 1.0, 'old': 1.0, 'my': 1.0, 'can': 1.0, 'it': 1.0, 'seven': 1.0, 'in': 1.0, 'for': 1.0, 'year': 1.0, 'she': 3.0, 'out': 1.0, 'slide': 1.0, 'says': 1.0, 'having': 1.0, 'is': 1.0, 'that': 1.0, 'comfortable': 1.0}
Word element => {'loves': 1.0, 'graduating': 1.0, 'she': 2.0, 'celebration': 1.0, 'uses': 1.0, 'when': 1.0, '34': 2.0, 'of': 1.0, 'big': 1.0, 'seat': 1.0, 'in': 2.0, 'my': 2.0, 'bought': 1.0, 'to': 1.0, 'was': 1.0, 'a': 1.0, 'girl': 1.0, 'car': 2.0, 'niece': 1.0, 's': 1.0, 'this': 1.0, 'it': 2.0, 'with': 1.0, 'and': 1.0, 'me': 1.0}
Word element => {'value': 1.0, 'great': 1.0, 'need': 1.0, 'and': 1.0, 'highly': 1.0, 'to': 2.0, 'reports': 1.0, 'easy': 1.0, 'vehicle': 1.0, 'consumer': 1.0, 'works': 1.0, 'you': 1.0, 'rated': 1.0, 'is': 2.0, 'on': 1.0, 'seat': 1.0, 'if': 1.0, 'move': 1.0, 'different': 1.0, 'it': 1.0, 'this': 1.0, 'put': 1.0, 'in': 1.0, 'well': 1.0, 'a': 2.0}
Word element => {'comfortable': 1.0, 's': 1.0, 'it': 2.0, 'without': 1.0, 'car': 1.0, 'my': 1.0, 'for': 1.0, 'daughter': 1.0, 't': 1.0, 'and': 1.0, 'like': 1.0, 'to': 2.0, 'she': 1.0, 'her': 1.0, 'sit': 2.0, 'on': 2.0, 'don': 1.0, 'want': 1.0}
Word element => {'seat': 1.0, 'baby': 1.0, 'in': 1.0, 'when': 1.0, 'than': 1.0, 'much': 1.0, 'and': 1.0, 'better': 1.0, 'move': 1.0, 'can': 1.0, 'booster': 1.0, 'likes': 1.0, 'see': 1.0, 'a': 1.0, 'basis': 1.0, 'use': 1.0, 'thought': 1.0, 'toys': 1.0, 'the': 1.0, 'cup': 1.0, 'my': 1.0, 'on': 1.0, '4': 1.0, 'd': 1.0, 'year': 1.0, 'never': 1.0, 'old': 1.0, 'holders': 1.0, 'but': 1.0, 'an': 1.0, 'really': 1.0, 'regular': 1.0, 'is': 1.0, 'one': 1.0, 'for': 2.0, 'using': 1.0, 'his': 3.0, 'drink': 1.0, 'this': 1.0, 'he': 1.0, 'dthe': 1.0, 'we': 1.0, 'other': 1.0}
Word element => {'higly': 1.0, 'it': 1.0, 'so': 1.0, 'car': 1.0, 'water': 1.0, 'two': 1.0, 'drinks': 1.0, 'very': 1.0, 'as': 1.0, 'have': 1.0, 'upholstery': 1.0, 'set': 1.0, 'matches': 1.0, 'to': 1.0, 'lucky': 1.0, 'recommend': 1.0, 'easy': 1.0, 'holders': 1.0, 'and': 1.0, 'me': 1.0, 'price': 1.0, 'nicely': 1.0, 'great': 1.0, 'the': 2.0, 'color': 2.0, 'cup': 1.0, 'my': 1.0, 'is': 1.0, 'or': 1.0, 'almost': 1.0, 'same': 1.0}
Word element => {'up': 1.0, 'forward': 1.0, 'opening': 1.0, 'looking': 1.0, 'i': 1.0, 'seat': 1.0, 'able': 1.0, 'm': 1.0, 'gained': 1.0, 'is': 1.0, 'enough': 1.0, 'until': 1.0, 'into': 1.0, 'bribe': 1.0, 'to': 6.0, 'be': 2.0, 'my': 2.0, 'eating': 1.0, 'it': 4.0, 'the': 1.0, 'great': 1.0, 'gain': 1.0, 'a': 1.0, 'sitting': 1.0, 'child': 2.0, 'way': 1.0, 's': 1.0, 'waiting': 1.0, 'weight': 2.0, 'box': 1.0, 'sees': 1.0, 'in': 2.0, 'opened': 1.0, 'every': 1.0, 'day': 1.0}
Word element => {'boy': 1.0, 'a': 1.0, 'big': 1.0, 'he': 1.0, 'too': 1.0, 'convenient': 1.0, 'priced': 1.0, 'to': 1.0, 'easy': 1.0, 'use': 1.0, 'like': 1.0, 'and': 2.0, 'felt': 1.0, 'my': 1.0, 'reasonably': 1.0, 'likes': 1.0, 'kid': 1.0, 'it': 1.0}
Word element => {'complaints': 1.0, 'i': 1.0, 'far': 1.0, 'thus': 1.0, 'fasten': 1.0, 'wrong': 1.0, 'worry': 1.0, 'having': 1.0, 'needed': 1.0, 'back': 2.0, 'washing': 1.0, 'placed': 1.0, 'off': 1.0, 'material': 1.0, 'at': 1.0, 'child': 1.0, 'have': 1.0, 'small': 1.0, 'easily': 2.0, 'way': 1.0, 'out': 2.0, 'for': 1.0, 'where': 1.0, 'us': 1.0, 'light': 2.0, 'pop': 1.0, 'take': 1.0, 'marvelously': 1.0, 'daughter': 1.0, 'booster': 1.0, 'carry': 1.0, 'assistance': 1.0, 'do': 1.0, 'works': 1.0, 'with': 2.0, 'car': 1.0, 'from': 1.0, 'very': 1.0, 'best': 1.0, 'upgraded': 1.0, 'place': 1.0, 'without': 1.0, 'the': 7.0, 'and': 6.0, 'get': 1.0, 'comes': 1.0, 'is': 4.0, 'my': 1.0, 'or': 1.0, 'cup': 1.0, 'of': 2.0, 'fold': 1.0, 'weight': 2.0, 'right': 1.0, 'can': 4.0, 'all': 1.0, 'seat': 2.0, 'to': 5.0, 'putting': 1.0, 'be': 2.0, 'instructions': 1.0, 'travel': 1.0, 'if': 2.0, 'a': 3.0, 'we': 2.0, 'design': 1.0, 'it': 7.0, 'she': 2.0, 'so': 2.0, 'chooses': 1.0, 'solely': 1.0, 'on': 2.0, 'awesome': 1.0, 'that': 2.0, 'about': 1.0, 'no': 2.0, 'thing': 1.0, 'based': 1.0, 'holders': 1.0, 'age': 1.0, 'in': 2.0}
Word element => {'s': 1.0, 'grandma': 1.0, 'her': 1.0, 'another': 1.0, 'thinking': 1.0, 'complaints': 1.0, 'no': 1.0, 'and': 1.0, 'weeks': 1.0, 'few': 1.0, 'one': 1.0, 'purchasing': 1.0, 'for': 2.0, 'using': 1.0, 'we': 1.0, 'car': 1.0, 'area': 1.0, 'now': 1.0, 'was': 1.0, 'daughter': 1.0, 'in': 1.0, 'as': 1.0, 'like': 1.0, 'my': 1.0, 'pictured': 1.0, 'only': 1.0, 'it': 4.0, 'seat': 1.0, 'just': 1.0, 'been': 1.0, 'didn': 2.0, 'loves': 1.0, 'the': 2.0, 't': 2.0, 'thing': 1.0, 'have': 2.0, 'that': 1.0, 'a': 2.0, 'is': 1.0, 'padding': 1.0, 'she': 1.0, 'lot': 1.0, 'of': 2.0}
Word element => {'free': 1.0, 'feel': 1.0, 'please': 1.0, 'anyone': 1.0, 'if': 1.0, 'solution': 2.0, 'for': 1.0, 'of': 1.0, 'also': 1.0, 'rests': 1.0, 'difficult': 1.0, 'under': 1.0, 'get': 1.0, 'honda': 1.0, 'struggles': 1.0, 'belt': 1.0, 'with': 2.0, 'hate': 1.0, 'are': 2.0, 'the': 6.0, 'thighs': 1.0, 'intelligent': 1.0, 'these': 1.0, 'some': 1.0, 'i': 5.0, 'problems': 1.0, 'makes': 1.0, 'old': 1.0, 'writing': 1.0, 'we': 1.0, 't': 1.0, 'a': 4.0, 'has': 1.0, 'review': 1.0, 'child': 1.0, 'to': 4.0, 'seat': 2.0, 'after': 1.0, 'civic': 1.0, 'so': 1.0, 'comment': 1.0, 'width': 1.0, 'reading': 2.0, 'positive': 1.0, 'problem': 1.0, 'been': 1.0, 'that': 3.0, 'is': 2.0, 'herself': 1.0, 'find': 1.0, 'because': 1.0, 'having': 1.0, 'shocked': 1.0, 'many': 1.0, 'buckle': 1.0, 'in': 4.0, 'my': 2.0, 'arm': 1.0, '7': 1.0, 'sitting': 1.0, 'can': 1.0, 'year': 1.0, 'very': 1.0, 'booster': 3.0, 'daughter': 1.0, 'am': 2.0, 'when': 1.0, 'have': 2.0, 'buckling': 1.0, 'pinpointed': 1.0, 'this': 4.0, 'flaws': 1.0, 'searching': 1.0, 'reviews': 1.0, 'they': 1.0, 'larger': 1.0}
Word element => {'child': 1.0, 'with': 1.0, 'grow': 1.0, 'adjustable': 1.0, 'armrests': 1.0, 'seatbelt': 1.0, 'buckle': 1.0, 'to': 1.0, 'clean': 1.0, 'lines': 1.0, 'and': 2.0, 'fabric': 1.0, 'love': 1.0, 'the': 2.0, 'fun': 1.0, 'double': 1.0, 'cup': 1.0, 'easy': 1.0, 'holders': 1.0}
Word element => {'like': 1.0, 'also': 1.0, 'anywhere': 1.0, 'take': 1.0, 'is': 1.0, 'a': 1.0, 'friend': 1.0, 'that': 1.0, 'recommended': 1.0, 'convinient': 1.0, 'this': 1.0, 'we': 1.0, 'consider': 1.0, 'product': 1.0, 'to': 2.0, 'she': 1.0, 'me': 1.0, 'it': 2.0}
Word element => {'s': 1.0, 'for': 1.0, 'set': 1.0, 'second': 1.0, 'bought': 1.0, 'so': 1.0, 'inexpensive': 1.0, 'also': 1.0, 'my': 1.0, 'cup': 1.0, 'around': 1.0, 'like': 2.0, 'seats': 1.0, 'and': 1.0, 'at': 1.0, 'price': 1.0, 'are': 3.0, 'a': 2.0, 'kids': 1.0, 'that': 1.0, 'great': 2.0, 'the': 2.0, 'these': 1.0, 'they': 2.0, 'holders': 1.0, 'relatively': 1.0, 'easy': 2.0, 'i': 2.0, 'husband': 1.0, 'to': 3.0, 'clean': 1.0, 'move': 1.0, 'from': 1.0, 'car': 3.0}
Word element => {'pleased': 1.0, 'am': 1.0, 'very': 1.0, 'ratings': 1.0, 'the': 1.0, 'great': 1.0, 'portable': 1.0, 'to': 2.0, 'safety': 1.0, 'good': 1.0, 'seat': 1.0, 'purchase': 1.0, 'use': 2.0, 'easy': 1.0, 'needed': 1.0, 'price': 1.0, 'we': 1.0, 'simple': 1.0, 'extra': 1.0, 'an': 1.0, 'carpooling': 1.0, 'booster': 1.0, 'with': 1.0, 'this': 1.0, 'is': 1.0, 'for': 1.0, 'comfortable': 1.0, 'and': 1.0, 'i': 1.0}
Word element => {'recommend': 1.0, 'friends': 1.0, 'few': 1.0, 'will': 1.0, 'also': 1.0, 'booster': 1.0, 'now': 1.0, 'had': 1.0, 'continue': 1.0, 'its': 1.0, 'a': 1.0, 'we': 1.0, 'since': 1.0, 'recommended': 1.0, 'well': 1.0, 'love': 2.0, 'i': 3.0, 'needed': 1.0, 'car': 2.0, 'the': 1.0, 'more': 1.0, 'through': 1.0, 'an': 1.0, 'extra': 1.0, 'gotten': 1.0, 'and': 4.0, 'have': 3.0, 'red': 1.0, 'with': 1.0, 'in': 2.0, 'match': 1.0, 'originally': 1.0, 'ordered': 1.0, 'this': 3.0, 'found': 1.0, 'from': 1.0, 'interior': 1.0, 'best': 1.0, 'son': 1.0, 'to': 2.0, 'seat': 1.0, 'any': 1.0, 'as': 1.0, 'toysrus': 1.0, 'prices': 1.0, 'but': 1.0, 'can': 1.0, 'amazon': 1.0, 'because': 1.0, 'they': 1.0, 'always': 1.0, 'one': 1.0, 'color': 1.0, 'family': 1.0, 'another': 1.0, 'my': 1.0, 'it': 4.0, 'fell': 1.0, 'totally': 1.0, 'loves': 1.0, 'masculine': 1.0}
Word element => {'each': 1.0, 'and': 2.0, 'two': 1.0, 'purchase': 1.0, 'purchased': 2.0, 'have': 1.0, 'we': 1.0, 'for': 1.0, 'safety': 1.0, 'price': 1.0, 'very': 1.0, 'shipping': 1.0, 'ratings': 1.0, 'car': 1.0, 'happy': 1.0, 'i': 1.0, 'based': 1.0, 'on': 1.0, 'with': 1.0, 'fast': 1.0, 'am': 1.0, 'these': 1.0, 'great': 1.0, 'the': 1.0}
Word element => {'always': 1.0, 'which': 1.0, 'cup': 1.0, 'name': 1.0, 'trust': 1.0, 'typical': 1.0, 'a': 1.0, 'is': 1.0, 'place': 1.0, 'arm': 1.0, 'item': 1.0, 'just': 1.0, 'seat': 2.0, 'arrived': 1.0, 'holders': 1.0, 'but': 1.0, 'rests': 1.0, 'ready': 1.0, 'put': 1.0, 'kids': 1.0, 'graco': 2.0, 'pretty': 1.0, 'i': 1.0, 'putting': 1.0, 'love': 1.0, 'for': 1.0, 'in': 2.0, 'required': 1.0, 'price': 1.0, 'and': 2.0, 'it': 1.0, 'this': 1.0, 'only': 1.0, 'the': 6.0, 'great': 1.0, 'much': 1.0, 'had': 1.0, 'was': 2.0, 'to': 1.0, 'car': 1.0, 'two': 1.0, 'booster': 2.0, 'quickly': 1.0, 'assembly': 1.0}
Word element => {'holders': 1.0, 'an': 1.0, 'to': 1.0, 'old': 1.0, 'year': 1.0, 'as': 1.0, 'very': 1.0, 'this': 1.0, 'extra': 1.0, 'simple': 1.0, 'cup': 1.0, 'my': 2.0, 'bought': 1.0, 'nice': 1.0, 'use': 1.0, 'mom': 1.0, 'when': 1.0, 'she': 1.0, 'has': 1.0, '5': 1.0, 'for': 1.0, 'comfortable': 1.0, 'love': 1.0, 'the': 1.0, '2': 1.0}
Word element => {'in': 1.0, 'wiggly': 1.0, 'a': 1.0, 'install': 1.0, 'it': 2.0, 'also': 1.0, 'youngster': 1.0, 'its': 1.0, 'clumsy': 1.0, 'light': 1.0, 'with': 1.0, 'is': 1.0, 'and': 1.0, 'especially': 1.0, 'while': 1.0, 'easy': 1.0, 'to': 2.0, 'store': 1.0}
Word element => {'can': 1.0, 'what': 1.0, 'if': 1.0, 'belt': 1.0, 'car': 1.0, 'hold': 1.0, 'needed': 1.0, 'strap': 1.0, 'to': 1.0, 'comes': 1.0, 'padding': 1.0, 'year': 1.0, 'in': 1.0, 'and': 2.0, 'safety': 1.0, 'list': 1.0, 'boosters': 1.0, 'at': 1.0, 'ask': 1.0, 'price': 1.0, 'tops': 1.0, 'you': 1.0, 'toward': 1.0, 's': 1.0, 'with': 1.0, 'this': 1.0, 'it': 1.0, 'a': 1.0, 'sturdy': 1.0, 'cup': 1.0, 'comfortable': 1.0, 'for': 2.0, 'yet': 1.0, 'more': 2.0, 'great': 1.0, 'lightweight': 1.0, 'holders': 1.0, 'that': 1.0, 'slide': 1.0, 'child': 1.0, 'out': 1.0}
Word element => {'money': 1.0, 'for': 1.0, 'padding': 1.0, 'ample': 1.0, 'very': 1.0, 'to': 3.0, 'next': 1.0, 'worth': 1.0, 'little': 1.0, 'transfer': 1.0, 'the': 3.0, 'definitely': 1.0, 'from': 1.0, 'one': 2.0, 'easy': 1.0, 'vehicle': 1.0, 'seems': 1.0, 'have': 1.0}
Word element => {'buckling': 1.0, 'problem': 1.0, 'up': 1.0, 'and': 1.0, 'it': 1.0, 'loves': 1.0, '7': 1.0, 'granddaughter': 1.0, 'with': 1.0, 'is': 1.0, 'yr': 1.0, 'old': 1.0, 'no': 1.0, 'has': 1.0, 'age': 1.0, 'my': 1.0, 'small': 1.0, 'herself': 1.0, 'for': 1.0, 'her': 1.0, 'she': 1.0}
Word element => {'row': 1.0, 'pilot': 1.0, 'honda': 1.0, 'my': 1.0, 'and': 1.0, 'very': 1.0, 'seats': 1.0, 'middle': 1.0, 'a': 1.0, 'sturdy': 1.0, 'seat': 1.0, 'product': 1.0, 'to': 1.0, 'buster': 1.0, 'it': 1.0, 'this': 1.0, 'fit': 1.0, 'found': 1.0, 'buy': 1.0, 'i': 2.0, 'using': 1.0, 'for': 1.0, 'also': 1.0, 'in': 1.0, 'great': 2.0, 'the': 1.0, 'booster': 1.0, 'price': 1.0, 'am': 1.0, 'able': 1.0, '3': 1.0}
Word element => {'little': 1.0, 'the': 1.0, 'one': 1.0, 'for': 1.0, 'be': 1.0, 'so': 1.0, 'to': 1.0, 'its': 1.0, 'not': 1.0, 'on': 2.0, 'very': 2.0, 'but': 1.0, 'use': 1.0, 'good': 1.0, 'hard': 1.0, 'it': 1.0, 'this': 2.0, 'trips': 1.0, 'wise': 1.0, 'is': 1.0, 'longer': 1.0, 'enough': 1.0, 'a': 1.0, 'couple': 1.0, 'hours': 1.0, 'would': 1.0, 'max': 1.0}
Word element => {'this': 1.0, 'recommend': 1.0, 'highly': 1.0, 'clean': 1.0, 'maintain': 1.0, 'easy': 1.0, 's': 1.0, 'it': 2.0, 'would': 1.0, 'was': 1.0, 'happy': 1.0, 'a': 1.0, 'gift': 1.0, 'product': 2.0, 'to': 2.0, 'the': 1.0, 'my': 1.0, 'i': 1.0, 'beautiful': 1.0, 'niece': 1.0, 'everybody': 1.0, 'is': 1.0, 'with': 1.0}
Word element => {'additional': 1.0, 'standards': 1.0, 'ntsa': 1.0, 'meet': 1.0, 'made': 2.0, 'essentials': 1.0, 'basic': 1.0, 'worth': 1.0, 'ask': 1.0, 'point': 1.0, 'features': 2.0, 'positive': 1.0, 'with': 1.0, 'interfered': 1.0, 'being': 1.0, 'recessed': 1.0, 'same': 1.0, 'seem': 1.0, 'installed': 1.0, 'matter': 1.0, 'themselves': 1.0, 'harder': 1.0, 'i': 1.0, 'nice': 1.0, 'rests': 2.0, 'arm': 3.0, 'model': 1.0, 'another': 1.0, 'why': 1.0, 'bottom': 1.0, 'recognize': 1.0, 'jabbing': 1.0, 'keeps': 1.0, 'at': 5.0, 'slot': 2.0, 'comfy': 1.0, 'remember': 2.0, 'or': 1.0, 'leather': 1.0, 'foam': 1.0, 'memory': 1.0, 'dad': 1.0, 'squirmy': 1.0, 'used': 1.0, 'impedes': 1.0, 'ratchet': 1.0, 'course': 1.0, 'e': 1.0, 'older': 1.0, 'firmly': 2.0, 'shouldn': 1.0, 'yikes': 1.0, 'out': 3.0, 'pull': 1.0, 'by': 2.0, 'you': 5.0, 'things': 2.0, 'means': 1.0, 'will': 2.0, 'winged': 1.0, 'locked': 2.0, 'suggested': 1.0, 'feature': 1.0, 'have': 6.0, 'words': 1.0, 'ratches': 1.0, 'her': 1.0, 'mom': 1.0, 'make': 3.0, 'vehicle': 1.0, 'manufacturers': 1.0, 'other': 2.0, 'optional': 2.0, 'way': 2.0, 'all': 4.0, 'thing': 1.0, 'happens': 1.0, 'dangerous': 1.0, 'similar': 1.0, 'in': 7.0, 'seat': 11.0, 'option': 1.0, 'event': 1.0, 'no': 1.0, 'slack': 1.0, 'potential': 1.0, 'seems': 1.0, 'until': 1.0, 'see': 1.0, 'b': 2.0, 'of': 15.0, 'the': 61.0, 'there': 6.0, 'portion': 3.0, 'pushes': 1.0, 'really': 1.0, 'costs': 1.0, 'strap': 1.0, 'my': 3.0, 'are': 11.0, 'we': 1.0, 'bad': 1.0, 'manufacturer': 1.0, 'rear': 1.0, 'guess': 1.0, 'for': 11.0, 'still': 1.0, 'don': 3.0, 'shoulder': 14.0, 'graco': 2.0, 'child': 14.0, 'sudden': 2.0, 'threatening': 1.0, 'sure': 1.0, 'backrest': 1.0, 'snugs': 1.0, 'however': 1.0, 'get': 2.0, 'cheap': 1.0, 'then': 6.0, 'legs': 3.0, 'and': 10.0, 'recommended': 1.0, 'back': 3.0, 'keep': 1.0, 'pinned': 1.0, 'll': 1.0, 'use': 1.0, 'especially': 1.0, 'should': 5.0, 'engaged': 1.0, 'if': 5.0, 'great': 1.0, 'sides': 2.0, 't': 7.0, 'belt': 12.0, 'safety': 4.0, 'rest': 3.0, 'realizing': 1.0, 'style': 1.0, 'wrong': 1.0, 'not': 10.0, 'me': 1.0, 'annoy': 1.0, 'seats': 5.0, 'this': 7.0, '1': 2.0, 'thicker': 1.0, 'correctly': 1.0, 'breakaway': 1.0, 'problem': 1.0, 'possible': 1.0, 'these': 1.0, 'comes': 1.0, 'some': 5.0, 'comfortably': 1.0, 'braking': 2.0, 'latch': 1.0, 'minimum': 1.0, 'secured': 1.0, 'it': 8.0, 'be': 6.0, 'placed': 1.0, 'savings': 2.0, 'that': 7.0, 'to': 12.0, 'tether': 5.0, '3': 1.0, 'adjusted': 1.0, 'retractor': 2.0, 'holds': 1.0, 'but': 5.0, 'typically': 1.0, 'what': 1.0, 'when': 4.0, 'locks': 1.0, 'a': 4.0, 'others': 1.0, 'imagine': 1.0, 'bone': 1.0, 'tug': 1.0, 'so': 3.0, 'is': 16.0, 'can': 2.0, 'more': 2.0, 'door': 1.0, 'life': 1.0, 'also': 1.0, 'harness': 1.0, 'makes': 2.0, 'created': 1.0, 'buckle': 1.0, 'adult': 1.0, 'setup': 1.0, 'math': 1.0, 'which': 2.0, 'again': 3.0, 'revisited': 1.0, 'c': 2.0, 'wisea': 2.0, 'height': 3.0, 'raised': 1.0, 'does': 1.0, 'on': 5.0, 'into': 1.0, 'one': 2.0, 'locking': 1.0, '5': 1.0, 'cost': 3.0, 'pt': 1.0, 'd': 1.0, 'type': 1.0, 'capability': 1.0, 'them': 1.0, 'regular': 1.0, 'squirm': 1.0, 'tends': 1.0, 'slip': 1.0, 'booster': 4.0, 'buy': 2.0, 'aka': 1.0, 'they': 3.0, 'comfort': 4.0, 'around': 1.0, 'connectors': 1.0, 'his': 1.0, 'their': 3.0, 'who': 2.0, 'from': 2.0, 'minimized': 1.0, 'protect': 1.0, 'here': 3.0, 'underneath': 1.0, 'receiving': 1.0, 'your': 3.0, 'upward': 1.0, 'less': 1.0, 'sit': 2.0, 'as': 1.0, 'straddling': 2.0, 'over': 1.0, 'functionality': 1.0, 'between': 2.0, 'children': 1.0, 'doesn': 2.0, 's': 6.0, 'thighs': 1.0, 'sake': 2.0, 'second': 1.0, 'must': 1.0, 'whose': 1.0, 'cloth': 1.0, '2': 2.0, 'end': 2.0, 'terms': 1.0, 'accident': 1.0, 'tight': 2.0, 'enough': 1.0, 'padding': 3.0, 'car': 2.0, 'yet': 1.0}
Word element => {'chose': 1.0, 'being': 1.0, 'ended': 1.0, 'one': 2.0, 'up': 1.0, 'and': 1.0, 'many': 1.0, 'perfect': 2.0, 'price': 1.0, 'delivery': 1.0, 'works': 1.0, 'this': 1.0, 'other': 1.0, 'wonderful': 1.0, 'daughter': 1.0, 'for': 1.0, 'the': 1.0, 'my': 1.0, 'we': 2.0, 'looked': 1.0, 'at': 1.0}
Word element => {'time': 1.0, 'likes': 1.0, 'price': 1.0, 'playing': 1.0, 'the': 4.0, 'grandson': 1.0, 'other': 1.0, 'nice': 1.0, 'a': 1.0, 'is': 2.0, 'my': 1.0, 'cup': 2.0, 'holder': 1.0, 'this': 1.0, 'with': 1.0, 'he': 1.0, 'uses': 1.0, 'his': 1.0, 'and': 1.0, 'for': 3.0, 'one': 1.0, 'whatever': 1.0, 'booster': 1.0, 'at': 1.0}
Word element => {'nearly': 1.0, 'leave': 1.0, 'adult': 1.0, 'an': 1.0, 'for': 1.0, 'room': 1.0, 'excited': 1.0, 'well': 1.0, 'leather': 1.0, 'my': 1.0, 'are': 2.0, 'make': 1.0, 'constructed': 1.0, 'seats': 2.0, 'kids': 1.0, 'boosters': 1.0, 'attractive': 1.0, 'the': 1.0, 'imprint': 1.0, 'these': 1.0, 'they': 2.0, 'to': 3.0, 'and': 2.0, 'get': 1.0, 'on': 1.0, 'remove': 1.0, 'into': 1.0, 'big': 1.0, 'zero': 1.0, 'kid': 1.0, 'car': 1.0, '1000': 1.0, 'were': 1.0, 'easier': 1.0}
Word element => {'all': 1.0, 'mind': 1.0, 'she': 1.0, 'and': 1.0, 'everything': 1.0, 'car': 1.0, 'at': 1.0, '40': 1.0, 'for': 1.0, 'year': 1.0, 'my': 1.0, 'travel': 1.0, 'great': 1.0, 't': 2.0, 'old': 1.0, 'was': 1.0, 'to': 2.0, 'ordered': 1.0, 'lbs': 1.0, '4': 1.0, 'daughter': 1.0, 'when': 1.0, 'we': 3.0, 'use': 1.0, 'didn': 2.0, 'seat': 1.0, 'because': 1.0, 'want': 1.0, 'this': 1.0, 'traveled': 1.0, 'with': 1.0, 'her': 1.0, 'large': 1.0}
Word element => {}
Word element => {'not': 1.0, 'slide': 1.0, 'they': 1.0, 'car': 1.0, 'them': 1.0, 'fastening': 1.0, 'no': 1.0, 'there': 1.0, 'around': 1.0, 'hardware': 1.0, 'is': 3.0, 'attached': 1.0, 'when': 2.0, 'happy': 1.0, 'i': 3.0, 'tend': 1.0, 'find': 1.0, 'place': 1.0, 'the': 8.0, 'keeps': 1.0, 'exactly': 1.0, 'others': 1.0, 'that': 3.0, 'strap': 2.0, 'shown': 1.0, 'arrived': 1.0, 'on': 3.0, 'it': 1.0, 'its': 1.0, 'only': 1.0, 'with': 1.0, 'this': 1.0, 'was': 2.0, 'recommend': 1.0, 'belt': 2.0, 'and': 4.0, 'promptly': 1.0, 'in': 3.0, 'child': 1.0, 'proper': 1.0, 'position': 1.0, 'line': 1.0, 'booster': 1.0, 'a': 1.0, 's': 1.0, 'shoulder': 1.0, 'vehicle': 1.0, 'my': 1.0, 'checked': 1.0, 'use': 1.0, 'childs': 1.0, 'for': 2.0, 'has': 1.0, 'comfort': 1.0, 'problem': 1.0, 'seat': 4.0, 'to': 3.0, 'as': 1.0, 'all': 1.0, 'have': 1.0, 'seats': 1.0}
Word element => {'fine': 1.0, 'it': 2.0, 'daughter': 1.0, 'in': 1.0, 'seat': 2.0, 'of': 1.0, 'booster': 1.0, 'minivan': 1.0, 'my': 1.0, 'great': 1.0, 't': 1.0, 'the': 2.0, 'bother': 1.0, 'nice': 1.0, 'belt': 1.0, 'doesn': 1.0, 'loves': 1.0, 'shoulder': 1.0, 'works': 1.0, 'her': 1.0, 'much': 1.0, 'so': 1.0, 's': 1.0, 'all': 1.0}
Word element => {'breaker': 1.0, 'deal': 1.0, 'was': 1.0, 'properly': 1.0, 'able': 1.0, 'being': 1.0, 'secure': 1.0, 'extremely': 1.0, 'challenge': 1.0, 'is': 3.0, 'around': 2.0, 'keep': 1.0, 'all': 1.0, 'as': 1.0, 'mechanism': 1.0, 'alone': 1.0, 'system': 1.0, 'slightly': 3.0, 'or': 1.0, 'latch': 1.0, 'has': 1.0, '1': 1.0, 'have': 1.0, 'purchased': 1.0, 'bottom': 1.0, 'based': 1.0, 'great': 1.0, 'flaws': 1.0, 'this': 2.0, 'found': 1.0, 'vehicle': 3.0, 'slip': 1.0, 'no': 2.0, 'two': 1.0, 'i': 3.0, 'cup': 1.0, 'booster': 7.0, 'any': 1.0, 'your': 1.0, 'from': 2.0, 'while': 1.0, 'son': 1.0, 'less': 1.0, 'major': 1.0, 'infiniti': 1.0, 'place': 2.0, '5yr': 1.0, 'flush': 1.0, 'taking': 1.0, 'moving': 2.0, 'reviews': 1.0, 'between': 3.0, '2': 1.0, 'sitting': 1.0, 'measure': 1.0, 'work': 1.0, 'week': 1.0, 'car': 1.0, 'wider': 1.0, 'after': 1.0, 'for': 3.0, 'using': 1.0, 'small': 1.0, 'a': 5.0, 's': 1.0, 'old': 1.0, 'on': 1.0, 'noticed': 2.0, 'problems': 1.0, 'compact': 1.0, 'also': 1.0, 'driving': 1.0, 'it': 2.0, 'simply': 1.0, 'to': 4.0, 'against': 1.0, 'my': 2.0, 'me': 2.0, 'secured': 1.0, 'seat': 17.0, 'in': 4.0, 'not': 2.0, 'itself': 1.0, 'sure': 1.0, 'the': 17.0, 'of': 2.0, 'anti': 1.0, 'forcing': 1.0, 'gap': 1.0, 'stitching': 2.0, 'slanted': 1.0, 'make': 1.0, 'q50': 1.0, 'preventing': 1.0, 'back': 2.0, 'but': 2.0, 'creating': 1.0, 'and': 3.0, 'width': 1.0, 'with': 1.0, 'holders': 1.0, 'handles': 1.0, 'comfy': 1.0, 'described': 1.0, 'than': 2.0, 'relatively': 1.0}
Word element => {'safe': 1.0, 'is': 1.0, 'own': 1.0, 'on': 1.0, 'cheapest': 1.0, 'the': 1.0, 'my': 1.0, 'out': 2.0, 'one': 1.0, 'nice': 1.0, 'now': 1.0, 'was': 1.0, 'so': 3.0, 'there': 1.0, 'graco': 1.0, 'but': 1.0, 'this': 1.0, 'it': 1.0, 'his': 1.0, 'works': 1.0, 'can': 1.0, 'convenient': 1.0, 'well': 1.0, 'from': 1.0, 'son': 1.0, 'probably': 1.0, 'and': 3.0, 'get': 1.0, 'in': 1.0}
Word element => {'others': 1.0, 'to': 1.0, 'glad': 1.0, 'very': 1.0, 'son': 1.0, 'gray': 1.0, 'purchased': 1.0, 'and': 1.0, 'the': 1.0, 'cup': 1.0, 'picked': 2.0, 'excited': 1.0, 'out': 3.0, 'them': 1.0, 'one': 2.0, 'product': 1.0, 'for': 2.0, 'my': 2.0, 'tight': 1.0, 'i': 6.0, 'amazon': 1.0, 'really': 1.0, 'variety': 1.0, 'recommend': 1.0, 'was': 1.0, 'its': 1.0, 'offered': 1.0, 'totally': 1.0, 'that': 2.0, 'squeeze': 1.0, 'typical': 1.0, 'of': 1.0, 'a': 3.0, 'did': 1.0, 'styles': 1.0, 'this': 2.0, 'holders': 1.0, 'put': 1.0, 'back': 1.0, 'so': 1.0, 'but': 1.0, 'can': 1.0, 'in': 1.0, 'if': 1.0, 'they': 1.0, 'are': 1.0, 'larger': 1.0, 'than': 1.0, 'pull': 1.0, 'daughter': 1.0, 'booster': 1.0, 'seats': 1.0, 'have': 1.0, 'you': 1.0, 'am': 1.0}
Word element => {'too': 1.0, 'soft': 1.0, 'nice': 1.0, 'padding': 1.0, 'this': 1.0, 'on': 1.0, 'is': 2.0, 'love': 1.0, 'to': 1.0, 'holders': 1.0, 'easy': 1.0, 'use': 1.0, 'the': 3.0, 'my': 1.0, 'kids': 1.0, 'seat': 2.0, 'cup': 1.0}
Word element => {'if': 1.0, 'shop': 1.0, 'so': 1.0, 'be': 1.0, 'purchased': 1.0, 'excellent': 1.0, 'target': 1.0, 'around': 1.0, 'seat': 1.0, 'bothered': 1.0, 'you': 1.0, 'however': 1.0, '2': 1.0, 'cheaper': 1.0, 'found': 1.0, 'can': 1.0, 'it': 2.0, 'at': 1.0, 'after': 1.0, 'was': 1.0}
Word element => {'suv': 1.0, 'boys': 1.0, 'another': 1.0, 'own': 1.0, 'and': 1.0, 'carpool': 1.0, 'our': 2.0, 'the': 2.0, 'these': 1.0, 'they': 1.0, 'bench': 1.0, 'in': 1.0, 'two': 1.0, 'seats': 1.0, 'girl': 1.0, 'for': 2.0, 'love': 1.0, 'fit': 1.0, 'we': 3.0, 'with': 1.0, 'have': 1.0, 'all': 1.0, 'seat': 1.0, 'of': 1.0}
Word element => {'car': 1.0, 'in': 1.0, 'surprise': 1.0, 'i': 1.0, 'when': 1.0, 'loves': 1.0, 'him': 1.0, 'it': 2.0, 'comfortable': 1.0, 'was': 1.0, 'so': 1.0, 'very': 1.0, 'and': 1.0, 'my': 2.0, 'with': 1.0, 'son': 1.0, 'excited': 1.0, 'he': 1.0}
Word element => {'backless': 1.0, 'boosters': 1.0, 'over': 1.0, 'recommend': 1.0, 'field': 1.0, 'checked': 1.0, 'vehicle': 1.0, 'my': 1.0, 'school': 1.0, 'put': 1.0, 'itchy': 1.0, 'on': 1.0, 'weight': 1.0, 'purchasing': 1.0, 'looking': 1.0, 'light': 1.0, 'carry': 1.0, 'trips': 1.0, 'has': 1.0, 'place': 1.0, 'without': 1.0, 'said': 1.0, 'doesn': 1.0, 'simple': 1.0, 'at': 1.0, 'is': 4.0, 'getting': 1.0, 'himself': 1.0, 'and': 5.0, 'ratings': 1.0, 'i': 2.0, 'so': 1.0, 'can': 2.0, 'but': 1.0, 'in': 3.0, 'seat': 2.0, 'rough': 1.0, 'reviews': 1.0, 'the': 4.0, 'of': 1.0, 'safety': 1.0, 'a': 1.0, 'belt': 1.0, 'beat': 1.0, 't': 3.0, 're': 3.0, 'read': 1.0, 'little': 1.0, 'child': 1.0, 'price': 1.0, '34': 2.0, 'awkward': 1.0, 'you': 4.0, 'before': 1.0, 'sit': 1.0, 'what': 2.0, 'needed': 1.0, 'issues': 1.0, 'hassle': 1.0, 'balls': 1.0, 'for': 3.0, 'fabric': 2.0, 'good': 1.0, 'isn': 1.0, 'having': 1.0, 'that': 1.0, 'it': 3.0, 'will': 1.0, 'seems': 1.0, 'secure': 1.0, 'son': 1.0, 'under': 1.0, 'snag': 1.0, 'kid': 1.0, 'angle': 1.0, 'like': 2.0, 'an': 1.0, 'other': 2.0, 'making': 1.0, 'get': 1.0, 'sure': 1.0, 'fray': 1.0, 'to': 2.0, 'pretty': 1.0, 'their': 1.0, 'quality': 1.0, 'have': 1.0, 'lot': 1.0, 'one': 1.0, 'if': 3.0, 'still': 1.0, 'every': 1.0, 'this': 2.0, 'highly': 1.0, '7yr': 1.0, 'old': 1.0, 'no': 1.0, 'strapping': 1.0, 'your': 1.0, 'any': 1.0, 'armrests': 1.0, 'would': 1.0}
Word element => {'holders': 1.0, 'cup': 1.0, 'handy': 1.0, 'and': 1.0, 'from': 1.0, 'complaints': 1.0, 'least': 1.0, 'had': 2.0, 'well': 1.0, 'a': 1.0, 'between': 1.0, 'seat': 3.0, 'car': 1.0, 'of': 1.0, 'up': 1.0, 'the': 4.0, 'two': 1.0, 'no': 1.0, 'booster': 1.0, 'at': 1.0, 'enough': 1.0, 'with': 1.0, 'this': 1.0, 'picked': 1.0, 'moving': 1.0, 'we': 2.0, 'finally': 1.0, 'cars': 1.0, 'child': 1.0, 'fits': 1.0, 'second': 1.0, 'is': 1.0, 'for': 1.0, 'comfortable': 1.0}
Word element => {'thanks': 1.0, 'on': 1.0, 'car': 1.0, 'when': 1.0, 'use': 1.0, 'to': 1.0, 'product': 1.0, 'grandson': 1.0, 'designs': 1.0, 's': 2.0, 'he': 1.0, 'it': 3.0, 'one': 1.0, 'for': 2.0, 'love': 1.0, 'ordered': 2.0, 'visiting': 1.0, 'after': 1.0, 'excellent': 1.0, 'we': 1.0, '2': 1.0, 'more': 1.0, 'the': 1.0, 'our': 2.0, 'that': 1.0, 'wih': 1.0}
Word element => {'car': 1.0, 'other': 1.0, 'the': 1.0, 'second': 1.0, 'bought': 1.0, 'enjoys': 1.0, '4': 1.0, 'one': 1.0, 'for': 2.0, 'my': 1.0, '5': 1.0, 'i': 1.0, 'old': 1.0, 'fast': 1.0, 'being': 1.0, 'perfect': 1.0, 'fits': 1.0, 'just': 1.0, 'he': 1.0, 'this': 1.0, 'a': 2.0, '34': 2.0, 'boy': 1.0, 'now': 1.0, 'year': 1.0, 'big': 1.0, 'shipping': 1.0, 'as': 1.0, 'described': 1.0}
Word element => {'car': 1.0, 'crumbs': 1.0, 'all': 1.0, 'up': 1.0, 'easy': 1.0, 'great': 1.0, 'the': 2.0, 'nicely': 1.0, 'we': 2.0, 'q5': 1.0, 'seat': 1.0, 'when': 1.0, 'utility': 1.0, 'to': 3.0, 'from': 1.0, 'very': 1.0, 'purchase': 1.0, 'then': 1.0, 'most': 1.0, 'in': 2.0, 'give': 1.0, 'clean': 1.0, 'fits': 1.0, 'products': 1.0, 'eating': 1.0, 'this': 1.0, 'and': 3.0, 'comfy': 1.0, 'booster': 1.0, 'looks': 2.0, 'is': 2.0, 'pretty': 1.0, 'importance': 1.0, 'our': 1.0}
Word element => {'long': 1.0, 'and': 1.0, 'in': 1.0, 'for': 2.0, 'car': 1.0, 'back': 1.0, 'sons': 1.0, 'well': 1.0, 'bulky': 1.0, 'are': 1.0, 'the': 2.0, 'replacement': 1.0, 'my': 2.0, 'booster': 1.0, 'cup': 1.0, 'of': 1.0, 'seat': 1.0, 'rides': 1.0, 'if': 1.0, 'holders': 1.0, 'perfect': 2.0, 'fits': 1.0}
Word element => {'one': 1.0, 'to': 1.0, 'want': 1.0, 'them': 1.0, 'protect': 1.0, 'this': 1.0, 'children': 1.0, 'and': 1.0, 'give': 1.0, 'comfort': 1.0, 'you': 1.0, 'buy': 1.0}
Word element => {'but': 1.0, 'product': 1.0, 'than': 1.0, 'for': 1.0, 'not': 1.0, 'shipping': 2.0, 'them': 1.0, 'of': 1.0, 'no': 1.0, 'two': 1.0, 'ordered': 1.0, 'problem': 1.0, 'extra': 1.0, 'exactly': 1.0, 'was': 2.0, 'to': 1.0, 'had': 1.0, 'daughter': 1.0, 'in': 1.0, 'compaints': 1.0, 'combined': 1.0, 'loves': 1.0, 'order': 1.0, 'i': 3.0, 'my': 2.0, 'paid': 1.0, 'are': 1.0, 'and': 2.0, 'more': 1.0, 'ones': 1.0, 'the': 3.0, 'these': 1.0, 'they': 1.0, 'only': 1.0, 'this': 1.0, 'it': 1.0, 'were': 1.0, 'new': 1.0, 'blanket': 1.0, 'like': 1.0, 'package': 1.0}
Word element => {'kids': 1.0, 'older': 1.0, 'may': 1.0, 'done': 1.0, 'when': 1.0, 'not': 1.0, 'meant': 1.0, 'baby': 1.0, 'be': 1.0, 'to': 1.0, 'okay': 1.0, 'measure': 1.0, 'with': 1.0, 'is': 1.0, 'toddlers': 1.0, 'beep': 1.0, 'as': 1.0, 'it': 3.0, 'temperatures': 1.0, 'doesn': 1.0, 't': 1.0}
Word element => {'emergency': 1.0, 'an': 1.0, 'will': 1.0, 'so': 1.0, 'today': 1.0, 'buying': 1.0, 'i': 1.0, 'naps': 1.0, 'backup': 1.0, 'comfy': 1.0, 'old': 1.0, 'buy': 1.0, 'year': 1.0, 'from': 3.0, 'carried': 1.0, 'her': 1.0, 'another': 1.0, 'my': 1.0, 'the': 1.0, 'these': 1.0, 'blanket': 4.0, 'it': 4.0, 'blankie': 1.0, 'have': 2.0, 'well': 1.0, 'likes': 1.0, 'amazon': 2.0, 'wonderful': 1.0, 'a': 1.0, 't': 1.0, 'we': 2.0, '2': 2.0, 'but': 2.0, 'didn': 1.0, 'originally': 1.0, 'is': 3.0, 'around': 1.0, 'for': 2.0, 'one': 2.0, 'military': 1.0, 'of': 1.0, 'years': 1.0, '34': 2.0, 'exchange': 1.0, 'them': 1.0, 'up': 1.0, 'child': 1.0, 'soft': 1.0, 'this': 2.0, 'carries': 1.0, 'holding': 1.0, 'as': 1.0, 'to': 1.0, 'constant': 1.0, 'carry': 1.0, 'and': 1.0, 'washing': 1.0, 'if': 1.0, 'am': 1.0, 'twins': 1.0, 'you': 1.0}
Word element => {'great': 1.0, 'id': 1.0, 'buy': 1.0, 'cards': 1.0, 'for': 2.0, 'are': 1.0, 'there': 1.0, 'using': 1.0, 'window': 1.0, 'giving': 1.0, 'and': 2.0, 'the': 5.0, 'well': 1.0, 'see': 1.0, 'but': 1.0, 'quality': 1.0, 'she': 1.0, 'it': 5.0, 'this': 1.0, 'ordered': 1.0, 'gift': 1.0, 'holding': 1.0, 'from': 1.0, 'price': 1.0, 'pleasant': 1.0, 'did': 1.0, 'credit': 1.0, 'pretty': 2.0, 'is': 1.0, 'wallet': 2.0, 'surprise': 1.0, 'faux': 1.0, 'was': 3.0, 'not': 2.0, 'still': 1.0, 'kitty': 1.0, 'good': 2.0, 'someone': 1.0, 'that': 1.0, 'loves': 2.0, 'hello': 1.0, 'expect': 1.0, 'i': 4.0, 'granddaughter': 1.0, 'much': 1.0, 'since': 1.0, 'at': 1.0, 'who': 1.0, 'of': 1.0, 'anyway': 1.0, 'up': 1.0, 'slots': 1.0, 'leather': 1.0, 'my': 1.0, 'a': 4.0, 's': 2.0, 'bad': 1.0, 'as': 1.0, 'to': 1.0, 'all': 1.0}
Word element => {'dry': 1.0, 'not': 1.0, 'stick': 1.0, 'is': 1.0, 'leaks': 1.0, 'no': 1.0, 'a': 1.0, 'out': 1.0, 'them': 1.0, 'love': 1.0, 'glass': 1.0, 'use': 1.0, 'to': 1.0, 'had': 1.0, 'buying': 1.0, 'what': 1.0, 'before': 1.0, 'all': 1.0, 'have': 2.0, 'absolutely': 1.0, 'nipples': 1.0, 'that': 1.0, 'vent': 1.0, 'our': 2.0, 'bottle': 1.0, 'wideneck': 1.0, 'would': 1.0, 'wish': 1.0, 'great': 1.0, 'these': 2.0, 'the': 2.0, 'bottles': 3.0, 'design': 1.0, 'we': 1.0, 'did': 1.0, 'of': 1.0, 'thinkbaby': 1.0, 'hard': 1.0, 'with': 1.0, 'discovered': 1.0, 'sprouts': 1.0, 'and': 3.0, 'i': 4.0, 'green': 1.0}
Word element => {'than': 1.0, 'lighter': 1.0, 'and': 1.0, 'picture': 1.0, 'in': 1.0, 'color': 2.0, 'the': 3.0, 'more': 1.0, 'were': 1.0, 'got': 1.0, 'expecting': 1.0, 'we': 2.0, 'girly': 1.0, 'when': 1.0, 'was': 4.0, 'not': 1.0, 'it': 2.0, 'this': 1.0, 'expected': 1.0, 'much': 3.0, 'cute': 1.0, 'still': 1.0, 'set': 1.0, 'of': 2.0, 'a': 2.0, 'but': 3.0, 'purple': 2.0, 'blue': 1.0, 'enough': 1.0}
Word element => {'much': 2.0, 'promptly': 1.0, 'money': 1.0, 'refunded': 1.0, 'kind': 1.0, 'extremely': 1.0, 'seller': 1.0, 'however': 1.0, 'returned': 1.0, 'when': 1.0, 'coloring': 2.0, 'than': 1.0, 'tone': 1.0, 'purple': 3.0, 'be': 1.0, 'more': 1.0, 'the': 6.0, 'made': 2.0, 'hue': 1.0, 'maybe': 1.0, 'in': 1.0, 'bluish': 1.0, 'return': 1.0, 'a': 3.0, 'was': 3.0, 'rather': 1.0, 'would': 1.0, 'process': 1.0, 'expecting': 1.0, 'i': 2.0, 'me': 1.0, 'walls': 1.0, 'think': 1.0, 'easier': 1.0, 'that': 1.0, '34': 2.0, 'of': 1.0, 'blanket': 1.0}
Word element => {'months': 1.0, 'loves': 1.0, 'holds': 1.0, 'well': 2.0, 'bill': 1.0, 'fit': 1.0, 'wash': 1.0, 'in': 2.0, 'daughter': 2.0, 'we': 1.0, 'bedding': 2.0, 'up': 1.0, 'set': 1.0, 'comforter': 1.0, 'that': 1.0, 'the': 3.0, 't': 1.0, 'have': 1.0, 'and': 3.0, 'any': 1.0, 'baby': 1.0, 'very': 1.0, 'pink': 1.0, 'snuggle': 1.0, 'my': 2.0, 'bought': 1.0, 'i': 2.0, 'just': 1.0, 'didn': 1.0, 'for': 2.0, 'love': 1.0, 'with': 1.0, 'this': 2.0, 'it': 3.0, 'to': 1.0, 'now': 1.0, 'was': 1.0, '7': 1.0, 'looking': 1.0, 'girl': 1.0}
Word element => {'wonderful': 1.0, 'such': 1.0, 'thank': 1.0, 'weeks': 1.0, 'in': 1.0, 'my': 1.0, 'will': 1.0, 'white': 1.0, 'was': 1.0, 'mention': 1.0, 'nice': 1.0, 'really': 1.0, 'of': 1.0, 'deal': 1.0, 'the': 8.0, 'about': 1.0, 'help': 1.0, 'lovely': 1.0, 'items': 1.0, 'so': 1.0, 'quality': 1.0, 'i': 2.0, 'purple': 1.0, 'and': 4.0, 'early': 1.0, 'contrasting': 1.0, 'foundation': 1.0, 'it': 4.0, 'vision': 1.0, 'perfect': 1.0, 'this': 2.0, 'red': 1.0, 'with': 2.0, 'but': 1.0, 'can': 2.0, 'enough': 1.0, 'inexpensive': 1.0, 'is': 1.0, 'say': 1.0, 'deep': 1.0, 'a': 1.0, 't': 2.0, 'go': 1.0, 'not': 1.0, 'wrong': 1.0, 'black': 1.0, 'stylish': 1.0, 'you': 2.0, 'for': 2.0, 'love': 4.0, 'to': 1.0, 'all': 1.0, 'as': 1.0, 'our': 1.0, 'very': 2.0, 'little': 2.0, 'girls': 2.0, 'room': 1.0, 'picture': 1.0, 'shows': 1.0, 'pop': 1.0, 'color': 1.0, 'set': 2.0, 'used': 1.0, 'just': 1.0}
Word element => {'pottery': 1.0, 'shade': 1.0, 'with': 2.0, 'easy': 1.0, 'polka': 3.0, 'white': 3.0, 'lamp': 1.0, 'find': 1.0, 'w': 1.0, 'black': 3.0, 'and': 1.0, 'pattern': 1.0, 'common': 1.0, 'has': 1.0, 'like': 1.0, 'also': 1.0, 'cover': 1.0, 'pad': 1.0, 'off': 1.0, 'changing': 1.0, 'that': 2.0, 'at': 1.0, 'keep': 1.0, 'are': 1.0, 'have': 1.0, 'heard': 1.0, 've': 1.0, 'recommend': 1.0, 'd': 1.0, 'after': 1.0, 'i': 3.0, 'dot': 2.0, 'safety': 1.0, 'picture': 1.0, 'it': 2.0, 'barn': 1.0, 'supposed': 1.0, 'love': 1.0, 'for': 2.0, 'wall': 1.0, 'you': 2.0, 'aqua': 1.0, 'customer': 1.0, 'set': 3.0, 'aren': 1.0, 'but': 3.0, 'blue': 1.0, 'matching': 1.0, 'attached': 1.0, 'arrived': 1.0, 'see': 1.0, 'going': 1.0, 't': 1.0, 's': 1.0, 'bedding': 1.0, 'we': 4.0, 'a': 6.0, 'so': 1.0, 'boy': 1.0, 'the': 6.0, 'great': 1.0, 'colored': 1.0, 'crib': 1.0, 'slightly': 1.0, 'paint': 1.0, 'in': 1.0, 'arrives': 1.0, 'reasons': 1.0, 'color': 2.0, 'dots': 1.0, 'if': 1.0, 'your': 1.0, 'put': 1.0, 'on': 2.0, 'painting': 1.0, 'everywhere': 1.0, 'or': 1.0, 'plan': 1.0, 'more': 1.0, 'is': 2.0, 'still': 1.0, 'girl': 1.0, 'take': 1.0, 'room': 1.0, 'bumper': 2.0, 'our': 1.0, 'to': 4.0, 'found': 1.0, 'pictures': 1.0}
Word element => {'love': 1.0, 'still': 1.0, 'than': 1.0, 'of': 1.0, 'but': 1.0, 'blue': 1.0, 'a': 3.0, 'more': 1.0, 'the': 2.0, 'aqua': 2.0, 'design': 1.0, 'in': 1.0, 'deceiving': 1.0, 'pretty': 1.0, 'it': 2.0, 'very': 1.0, 'painted': 1.0, 'green': 1.0, 'i': 2.0, 'picture': 1.0, 'walls': 1.0, 'think': 1.0, 'bit': 1.0, 'color': 1.0, 'is': 2.0, 'wise': 1.0}
Word element => {'they': 1.0, 'if': 1.0, 'especially': 1.0, 'toddlers': 1.0, 'for': 1.0, 'tv': 1.0, 'a': 1.0, 'is': 1.0, 'this': 1.0, 'songs': 1.0, 'sounds': 1.0, 'hear': 1.0, 's': 1.0, 'old': 1.0, 'much': 1.0, 'buttons': 1.0, 'month': 1.0, 'and': 3.0, 'very': 1.0, 'blue': 1.0, 'into': 1.0, 'good': 1.0, 'loves': 1.0, 'boom': 1.0, 'choice': 1.0, 'my': 1.0, 'the': 5.0, 'clues': 1.0, 'granddaughter': 1.0, 'to': 1.0, 'recognized': 1.0, 'box': 1.0, 'show': 1.0, 'she': 1.0, 'likes': 1.0, 'all': 1.0, 'familiar': 1.0, '18': 1.0, 'characters': 1.0, 'are': 1.0, 'pushes': 1.0}
Word element => {'toy': 1.0, 'blues': 1.0, 'daughter': 1.0, 'my': 1.0, 'cause': 1.0, 'though': 1.0, 'still': 1.0, 'would': 1.0, 'starts': 1.0, 'music': 1.0, 'loves': 2.0, 'off': 1.0, 'turn': 1.0, 'clues': 1.0, 'to': 1.0, 'way': 1.0, 'also': 1.0, 'other': 1.0, 'right': 1.0, 'buy': 1.0, 'i': 2.0, 'again': 1.0, 'reviews': 1.0, 'ignored': 1.0, 'how': 1.0, 'is': 3.0, 'on': 1.0, 'the': 2.0, 'once': 1.0, 'no': 1.0, 'some': 1.0, 'thing': 1.0, 'and': 3.0, 'very': 1.0, 'this': 2.0, 'loud': 2.0, 'it': 4.0, 'were': 1.0, 'warned': 1.0, 'but': 2.0, 'they': 1.0, 'be': 1.0, 'dead': 1.0, 'mentioned': 1.0, 'of': 1.0, 'there': 1.0}
Word element => {'probably': 1.0, 'them': 1.0, 'help': 1.0, 'speakers': 1.0, 'don': 1.0, 'over': 1.0, 'tape': 2.0, 'duct': 1.0, 'putting': 1.0, 'above': 1.0, 'clearly': 1.0, 'makes': 1.0, 'easily': 1.0, 'very': 1.0, 'ordinary': 1.0, 'boombox': 1.0, 'out': 1.0, 'given': 1.0, 'fighting': 1.0, 'to': 1.0, 'all': 1.0, 'any': 1.0, 'least': 1.0, 'at': 2.0, 'that': 1.0, 'tv': 1.0, 'xbox': 1.0, 'muffle': 1.0, 'the': 3.0, 'having': 1.0, 'time': 1.0, 'so': 1.0, 'perspective': 1.0, 'which': 1.0, 'obsessed': 1.0, 'batteries': 1.0, 'nice': 1.0, '1': 1.0, 'heard': 1.0, 'not': 1.0, 'me': 1.0, 'rip': 1.0, 'five': 1.0, 'kids': 2.0, 'this': 4.0, 'with': 2.0, 'loud': 1.0, 'blue': 2.0, 'anyways': 1.0, 'but': 2.0, 'thinking': 1.0, 'two': 1.0, 'i': 4.0, 't': 1.0, 's': 5.0, 'clues': 2.0, 'bought': 1.0, 'my': 3.0, 'off': 1.0, 'images': 1.0, 'colorful': 1.0, 'it': 8.0, 'she': 1.0, 'was': 1.0, 'crazy': 1.0, 'for': 1.0, 'daughter': 3.0, 'birthday': 1.0, 'cute': 1.0, 'comes': 1.0, 'is': 3.0, 'really': 1.0, 'of': 4.0, 'much': 1.0, 'try': 1.0, 'characters': 1.0, 'think': 1.0, 'put': 1.0, 'on': 1.0, 'button': 1.0, 'and': 5.0, 'play': 1.0, 'cycles': 1.0, 'through': 1.0, 'some': 1.0, 'or': 1.0, 'let': 1.0, 'would': 2.0, 'something': 1.0, 'songs': 1.0, 'itself': 1.0, 'in': 1.0, 'has': 2.0, 'likes': 1.0, 'thing': 1.0, 'have': 1.0}
Word element => {'with': 1.0, 'played': 1.0, 'when': 1.0, 'ears': 1.0, 'my': 1.0, 'hold': 1.0, 'not': 1.0, 'i': 1.0, 'now': 1.0, 'can': 1.0, 'but': 1.0, 'house': 1.0, 'placed': 1.0, 'paper': 1.0, 'control': 1.0, 'the': 8.0, 'great': 1.0, 'between': 1.0, 'holes': 1.0, 'tape': 2.0, 'loud': 1.0, 'this': 2.0, 'it': 1.0, 'durable': 1.0, 'to': 1.0, 'has': 1.0, 'toy': 2.0, 'removed': 1.0, 'is': 3.0, 'make': 1.0, 'volume': 1.0, 'that': 1.0, 'bearable': 1.0, 'how': 1.0, 'and': 4.0, 'in': 3.0, 'speaker': 2.0, 'cute': 1.0, 'applied': 1.0, 'allow': 1.0, 'out': 1.0, 'towel': 1.0, 'a': 1.0, 'doubled': 1.0, 'sound': 1.0, 'over': 1.0, 'up': 1.0, 'no': 1.0, 'about': 1.0, 'whole': 1.0, 'order': 1.0, 'downfall': 1.0, 'took': 1.0, 'procedure': 1.0, 'being': 1.0, '10': 1.0, 'was': 3.0, 'minutes': 1.0}
Word element => {'ingredients': 1.0, 'combo': 1.0, 'see': 1.0, 'happy': 1.0, 'here': 1.0, 'check': 1.0, 'an': 1.0, 'get': 1.0, 'went': 1.0, 'i': 3.0, 'times': 1.0, 'couple': 1.0, 'last': 1.0, 'and': 3.0, 'amazon': 1.0, 'horrible': 1.0, 'dollar': 2.0, 'he': 2.0, 'with': 1.0, 'this': 1.0, 'it': 6.0, 'looked': 1.0, 'hard': 1.0, 'over': 1.0, 'on': 1.0, 'thought': 1.0, 'had': 2.0, 'to': 4.0, 'prescribed': 1.0, 'believe': 1.0, 'the': 4.0, 'fanatic': 1.0, 'tried': 1.0, 'my': 1.0, 'available': 1.0, 'burned': 1.0, 'tube': 1.0, 'has': 2.0, 'counter': 1.0, 'they': 1.0, 'his': 3.0, 'elbows': 1.0, 'were': 1.0, 'so': 4.0, 'everything': 2.0, 'raw': 1.0, 'helping': 1.0, 'zinc': 1.0, 'bought': 1.0, 'of': 3.0, 'at': 1.0, 'husband': 1.0, 'tree': 2.0, 'been': 1.0, 'amazing': 1.0, 'whatever': 1.0, 'm': 1.0, 'eczema': 2.0, 'arms': 1.0, 'are': 1.0, 'made': 1.0, 'smooth': 1.0, 't': 1.0, 'a': 1.0, 's': 3.0, 'hasn': 1.0, 'shelves': 1.0}
Word element => {'have': 1.0, 'stroller': 1.0, 'an': 1.0, 'car': 1.0, 'on': 1.0, 'can': 1.0, 'which': 1.0, 'versatile': 1.0, 'must': 1.0, 'very': 1.0, 'is': 1.0, 'love': 1.0, 'in': 1.0, 'also': 1.0, 'we': 1.0, 'dry': 1.0, 'and': 4.0, 'my': 1.0, '3': 1.0, 'the': 1.0, 'german': 1.0, 'umbrella': 1.0, 'product': 3.0, 'use': 1.0, 'wet': 1.0, 'purchased': 1.0, 'to': 1.0, 'it': 2.0, 'this': 2.0, 'loves': 1.0, 'seat': 1.0, 'because': 1.0, 'old': 1.0, 'i': 1.0, 'you': 1.0, 'wife': 1.0, 'that': 1.0, 'our': 2.0, 'infant': 1.0, 'winters': 1.0, 'babywear': 1.0, 'month': 1.0, 'cold': 1.0, 'are': 1.0, 'keeps': 1.0, 'kiddo': 1.0, 'warm': 1.0}
Word element => {'worth': 1.0, 'totally': 1.0, 'car': 1.0, 'over': 1.0, 'warm': 1.0, 'the': 6.0, 'great': 1.0, 'my': 3.0, 'well': 1.0, 'ergo': 1.0, 'keeps': 1.0, 'england': 1.0, 'on': 1.0, 'new': 1.0, 'it': 1.0, 'with': 1.0, 'pouch': 1.0, 'is': 2.0, 'elements': 1.0, 'unpredictable': 1.0, 'a': 1.0, 'shielded': 1.0, 'unlike': 1.0, 'looking': 1.0, 'really': 1.0, 'weather': 1.0, 'get': 1.0, 'baby': 1.0, 'quality': 1.0, 'size': 1.0, 'forward': 1.0, 'stroller': 1.0, 'this': 2.0, 'perfect': 1.0, 'bundleme': 1.0, 'in': 1.0, 'for': 1.0, 'love': 1.0, 'price': 1.0, 'im': 1.0, 'pouches': 1.0, 'using': 1.0, 'which': 1.0, 'carrier': 1.0, 'from': 1.0, 'soaked': 1.0, 'snow': 1.0, 'rain': 1.0, 'versatility': 1.0, 'moms': 1.0, 'and': 3.0, 'too': 1.0, 'large': 1.0, 'seat': 1.0, 'as': 2.0, 'to': 1.0}
Word element => {'well': 1.0, 'has': 1.0, 'front': 1.0, 'birthday': 1.0, 'looked': 1.0, 'great': 1.0, 'my': 1.0, 'on': 2.0, 'design': 1.0, 'for': 2.0, 'daughter': 1.0, 'washings': 1.0, '2nd': 1.0, 'wear': 1.0, 'through': 1.0, 'worn': 1.0, 'purchased': 1.0, 'to': 1.0, 'her': 1.0}
Word element => {'greener': 1.0, 'tries': 1.0, 'company': 1.0, 'is': 1.0, 'bonus': 1.0, 'little': 1.0, 'gets': 1.0, 'child': 1.0, 'will': 1.0, 'than': 1.0, 'maybe': 1.0, 'much': 1.0, 'played': 1.0, 'cute': 1.0, 'sea': 1.0, 'i': 1.0, 'suffocation': 1.0, 'prevent': 1.0, 'not': 1.0, 'those': 1.0, 'water': 1.0, 'pour': 1.0, 'bottom': 1.0, 'toddler': 1.0, 'and': 3.0, 'are': 2.0, 'hood': 2.0, 'how': 1.0, 'throughout': 1.0, 'well': 1.0, 'lasted': 1.0, 'things': 1.0, 'no': 1.0, 'a': 3.0, 'we': 1.0, 'others': 1.0, 'support': 1.0, 'these': 1.0, 'the': 4.0, 'they': 2.0, 'holes': 1.0, 'had': 1.0, 'versatile': 1.0, 'there': 1.0, 'of': 1.0, 'be': 3.0, 'travel': 1.0, 'to': 1.0, 'our': 1.0, 'as': 2.0, 'all': 1.0, 'cups': 2.0, 'you': 3.0, 'idea': 1.0, 'would': 1.0, 'friends': 1.0, 'so': 2.0, 'have': 1.0, 'small': 1.0, 'many': 1.0, 'baby': 1.0, 'them': 1.0, 'into': 1.0, 'that': 3.0, 'but': 1.0, 'can': 2.0, 'minutes': 1.0, 'stacking': 1.0, 'with': 3.0, 'at': 1.0, 'keep': 1.0, 'guess': 1.0, 'kid': 1.0, 'happy': 1.0, '3': 1.0, 'your': 1.0, 'on': 1.0, 'older': 1.0, 'airplane': 1.0, 'for': 1.0, 'few': 1.0}
Word element => {'product': 1.0, 'recommend': 1.0, 'i': 1.0, 'worry': 1.0, 'highly': 1.0, 'storage': 1.0, 'about': 1.0, 'don': 1.0, 'space': 1.0, 'no': 1.0, 'up': 2.0, 'stacked': 1.0, 'on': 1.0, 'this': 1.0, 'with': 1.0, 'have': 2.0, 'and': 3.0, 'especially': 1.0, 'bath': 2.0, 'toys': 2.0, 'cups': 2.0, 'donated': 1.0, 'since': 1.0, 'well': 1.0, 'almost': 1.0, 'loves': 1.0, 'my': 1.0, 'are': 1.0, 'were': 1.0, 't': 1.0, 'the': 8.0, 'great': 1.0, 'these': 1.0, 'wall': 2.0, 'to': 2.0, 'son': 1.0, 'stick': 1.0, 'very': 1.0, 'mainstream': 1.0, 'unlike': 1.0, 'take': 1.0, 'version': 1.0, 'fish': 2.0, 'we': 2.0, 'given': 1.0}
Word element => {'bottom': 1.0, 'they': 1.0, 'myself': 1.0, 'for': 1.0, 'fun': 1.0, 'awesome': 1.0, 'nice': 2.0, 'friends': 1.0, 'and': 3.0, 'are': 3.0, 'kid': 1.0, 'sea': 1.0, 'my': 2.0, 'together': 1.0, 'but': 1.0, 'have': 1.0, 'all': 1.0, 'colors': 1.0, 'don': 1.0, 'chew': 1.0, 'got': 1.0, 'i': 2.0, 'both': 1.0, 'does': 1.0, 'the': 5.0, 'these': 1.0, 't': 1.0, 'very': 1.0, 'stick': 1.0, 'it': 1.0, 'a': 1.0, 'well': 1.0, 'on': 2.0, 'shapes': 1.0, 'is': 1.0, 'them': 1.0, 'tub': 1.0, 'cups': 1.0, 'daughter': 1.0}
Word element => {'bit': 1.0, 'babies': 1.0, 'cups': 1.0, 'are': 1.0, 'the': 2.0, 'while': 1.0, 'toys': 1.0, 'say': 1.0, 'bath': 1.0, 'on': 1.0, '3': 1.0, 'for': 1.0, 'years': 1.0, 'stacking': 1.0, 'little': 1.0, 'plus': 1.0, 'confusing': 1.0, 'a': 1.0, 'them': 1.0}
Word element => {'a': 1.0, 'nice': 1.0, 'its': 1.0, 'though': 1.0, 'last': 1.0, 'sea': 1.0, 'are': 1.0, 'product': 1.0, 'friends': 1.0, 'and': 2.0, 'd': 1.0, 'that': 2.0, 'what': 1.0, 'smaller': 1.0, 'green': 1.0, 'i': 1.0, 'cups': 2.0, 'for': 1.0, 'letters': 1.0, 'the': 2.0, 'imagined': 1.0, 'just': 1.0, 'walmart': 1.0, 'mold': 1.0, 'from': 1.0, 'mildew': 1.0, 'will': 1.0, 'rather': 1.0, 'like': 1.0, 'foam': 1.0, 'easily': 1.0}
Word element => {'installed': 1.0, 'quite': 1.0, 'for': 3.0, 'need': 1.0, 'wait': 1.0, 'space': 1.0, '13': 1.0, 'even': 2.0, 'picture': 1.0, 'wouldn': 2.0, 'but': 1.0, 'works': 1.0, 'sure': 1.0, 'get': 1.0, 'here': 1.0, 'putting': 1.0, 'i': 11.0, 'stated': 1.0, 'otherwise': 1.0, 'have': 4.0, 'itself': 1.0, 'm': 1.0, 'in': 5.0, 'as': 3.0, 'to': 3.0, 'clearly': 1.0, 'and': 6.0, 'sold': 1.0, 'item': 2.0, 'cared': 1.0, 'also': 1.0, 'bother': 1.0, 'saying': 1.0, 'if': 1.0, 'black': 3.0, 't': 4.0, 'gate': 1.0, 'fine': 1.0, 'at': 1.0, 'is': 2.0, 'annoyed': 1.0, 'box': 1.0, 'because': 3.0, 'that': 1.0, 'been': 1.0, 'was': 2.0, 'had': 1.0, 'label': 1.0, 'describing': 1.0, 'this': 4.0, 'already': 1.0, 'it': 7.0, 'month': 1.0, 'white': 2.0, 'shown': 1.0, 'arrived': 1.0, 'large': 1.0, 'a': 3.0, 'pictured': 1.0, 'which': 3.0, 'required': 1.0, 'purchase': 1.0, 'my': 1.0, 'an': 1.0, 'extension': 1.0, 'together': 1.0, 'were': 1.0, 'piece': 1.0, 'stores': 1.0, 'didn': 1.0, 'ordered': 2.0, 'ensure': 1.0, 've': 2.0, 'would': 1.0, 'desperate': 1.0, 'they': 1.0, 'thing': 1.0, 'walking': 1.0, 'being': 1.0, 'wobbly': 1.0, 'product': 2.0, 'child': 1.0, 'don': 1.0, 'old': 1.0, 'so': 1.0, 'inaccurately': 1.0, 'description': 1.0, 'their': 1.0, 'sell': 1.0, 'described': 1.0, 'seller': 1.0, 'now': 1.0, 'the': 6.0, 'longer': 1.0, 'of': 1.0, 'them': 1.0, 'safety': 1.0, 'size': 1.0, 'bought': 1.0}
Word element => {'containment': 1.0, 'don': 1.0, 'disappointed': 1.0, 'in': 2.0, 'organic': 1.0, 'sadly': 1.0, 'feature': 1.0, 'all': 2.0, 'cloth': 1.0, 'most': 1.0, 'effective': 1.0, 'best': 2.0, 'around': 1.0, 'design': 3.0, 'gusset': 1.0, 'double': 1.0, 'expect': 1.0, 'security': 1.0, 'extra': 1.0, 'crucial': 1.0, 'avail': 1.0, 'no': 1.0, 'times': 1.0, 'however': 1.0, 'super': 1.0, 'would': 2.0, 'my': 3.0, 'leaking': 2.0, 'doesn': 1.0, 'major': 1.0, 'with': 2.0, 'lacks': 1.0, 'experienced': 1.0, 'almost': 2.0, 'problem': 3.0, 'see': 1.0, 'tried': 1.0, 'had': 2.0, 'deliver': 1.0, 'purchased': 1.0, 'have': 6.0, 'give': 1.0, 'not': 2.0, 'diapers': 3.0, 'small': 1.0, 'a': 9.0, 'thirsties': 1.0, 'pee': 1.0, 'these': 2.0, 'since': 1.0, 'read': 1.0, 'single': 1.0, 'they': 2.0, 'holes': 1.0, 'stars': 2.0, 'cost': 1.0, 't': 2.0, 'fit': 2.0, 'day': 1.0, 'does': 1.0, 'ease': 1.0, 'absorption': 1.0, 'difficult': 1.0, 'seem': 1.0, 's': 2.0, 'positives': 1.0, 'also': 2.0, 'soaker': 1.0, 'before': 1.0, 'helps': 1.0, '5': 3.0, '6': 1.0, 'he': 1.0, 'the': 11.0, 'of': 5.0, 'we': 6.0, 'leg': 2.0, 'elemental': 1.0, 'about': 1.0, 'i': 6.0, 'use': 1.0, 'and': 8.0, 'one': 2.0, 'lot': 1.0, 'too': 1.0, 'months': 1.0, 'get': 2.0, 'folds': 1.0, 'never': 2.0, 'old': 1.0, 'poop': 2.0, 'out': 1.0, 'understand': 1.0, 'if': 1.0, 'every': 2.0, 'time': 1.0, 'am': 2.0, 'contain': 1.0, 'was': 1.0, 'lbs': 1.0, 'breastfeeding': 1.0, 'that': 4.0, 'is': 3.0, 'at': 1.0, 'configuration': 1.0, 'so': 1.0, 'can': 1.0, 'but': 3.0, 'them': 3.0, 'stripped': 1.0, 'be': 1.0, 'to': 5.0, 'pre': 1.0, 'cover': 1.0, 'from': 1.0, 'snaps': 1.0, 'on': 1.0, 'quality': 1.0, 'bumgenius': 3.0, 'definitely': 1.0, 'better': 1.0, 'it': 2.0, 'area': 1.0, 'help': 1.0, 'for': 4.0, '10': 1.0, 'birth': 1.0, 'son': 3.0, 'proper': 1.0, 'this': 1.0, 'few': 1.0}
Word element => {'dry': 1.0, 'same': 1.0, 'then': 2.0, 'in': 1.0, 'sanitary': 2.0, 'wash': 1.0, 'soiled': 1.0, 'toilet': 1.0, 'by': 1.0, 'nozzle': 1.0, 'tube': 1.0, 'spray': 1.0, 'look': 1.0, 'access': 1.0, 'very': 1.0, 'years': 1.0, 'at': 1.0, 'three': 1.0, 'some': 1.0, 'these': 1.0, 'year': 1.0, 'ruffly': 1.0, '900': 1.0, 'express': 2.0, 'about': 1.0, 'remove': 1.0, 'it': 1.0, 'month': 1.0, 'happier': 1.0, 'dryer': 1.0, 'have': 1.0, 'and': 6.0, 'do': 2.0, 'you': 3.0, 'many': 1.0, 'clean': 1.0, 'last': 1.0, 'be': 1.0, 'healthy': 1.0, 'washer': 1.0, 'using': 2.0, 'product': 1.0, 'for': 4.0, 'more': 1.0, '1': 1.0, 'great': 1.0, 'rashes': 1.0, 'the': 3.0, 'without': 1.0, 'can': 1.0, 'money': 1.0, 'videos': 1.0, 'baby': 1.0, 'cycle': 2.0, 'will': 2.0, 'diapers': 2.0, 'into': 1.0, 'been': 1.0, 'months': 1.0, 'uses': 1.0, '12': 1.0, 'to': 2.0, 'as': 1.0, 'plus': 1.0, 'on': 1.0, 'your': 1.0, 'keeping': 1.0, 'day': 1.0, 'environment': 1.0, 'use': 1.0, 'easy': 1.0, '140': 1.0, 'cleaner': 1.0, 'buying': 1.0, 'with': 1.0, 'less': 1.0, 'throw': 1.0, 'landfill': 1.0, 'or': 1.0, '4': 1.0, 'pollution': 1.0, 'bidet': 1.0, 's': 1.0, 'a': 5.0, 'we': 1.0, '14': 1.0, 'so': 1.0, 'used': 1.0, 'average': 1.0, 'math': 1.0, '165': 1.0}
Word element => {'longer': 1.0, 'champ': 1.0, 'holding': 1.0, 'great': 1.0, 'work': 1.0, 'very': 1.0, 'have': 1.0, 'wouldn': 1.0, 'design': 1.0, 'known': 1.0, 'dry': 2.0, 'poop': 1.0, 'only': 2.0, 'harder': 1.0, 'are': 1.0, 'changed': 1.0, 'leak': 1.0, 'like': 1.0, 'hold': 1.0, 'v1': 1.0, 'get': 1.0, 'shot': 1.0, 'faster': 1.0, 'things': 1.0, 'new': 1.0, 'trying': 1.0, 'not': 1.0, 'am': 2.0, 'v2': 2.0, 'with': 2.0, 'first': 1.0, 'dislike': 1.0, 'he': 1.0, 'needed': 1.0, 'original': 1.0, 'peeing': 1.0, 'bit': 2.0, 'against': 1.0, 'so': 2.0, 'them': 4.0, 'out': 2.0, 'arrived': 1.0, 'keep': 1.0, 'of': 1.0, 'don': 2.0, 'up': 1.0, 'had': 2.0, 'wish': 1.0, 'found': 1.0, 'i': 7.0, 'gotten': 1.0, 'buy': 1.0, 'bought': 1.0, 'loved': 1.0, 'my': 1.0, 'angry': 1.0, 'however': 1.0, 'went': 1.0, 'more': 3.0, 'tad': 1.0, 'pee': 1.0, 'the': 9.0, 'ones': 1.0, 'take': 1.0, 'bumgenius': 2.0, 'elementals': 2.0, 'son': 1.0, 'to': 4.0, 'as': 3.0, 'from': 1.0, 'really': 3.0, 'well': 1.0, 'likes': 1.0, 'positive': 1.0, 'juice': 1.0, 't': 3.0, 'we': 7.0, 's': 2.0, 'a': 5.0, 'few': 1.0, 'and': 2.0, 'soon': 1.0, 'they': 8.0, 'noticed': 2.0, 'gave': 1.0, 'that': 1.0, 'were': 1.0, 'on': 1.0, 'last': 1.0, 'clean': 1.0, 'different': 1.0, 'tag': 1.0}
Word element => {'training': 1.0, 'potty': 1.0, 'used': 1.0, 'rash': 1.0, 'thousands': 1.0, 'decisions': 1.0, 'best': 1.0, 'get': 1.0, 'disposable': 2.0, 'everything': 1.0, 'after': 1.0, 'elastic': 1.0, 'helps': 2.0, 'babies': 1.0, 'before': 1.0, 'close': 1.0, 'concave': 1.0, 'leak': 1.0, 'tucked': 1.0, 'sure': 3.0, 'help': 1.0, 'make': 3.0, 'these': 2.0, 'run': 1.0, 'downside': 1.0, 'easy': 1.0, 'usually': 1.0, 'work': 1.0, 'show': 1.0, 'when': 2.0, 'dollars': 1.0, 'unenthusiastic': 1.0, 'extremely': 1.0, 'under': 1.0, 'often': 1.0, 'will': 2.0, 'care': 1.0, 'into': 1.0, 'looking': 1.0, 'recently': 1.0, 'sprayer': 1.0, 'use': 3.0, 'out': 1.0, 'times': 1.0, 'lining': 1.0, 'organic': 1.0, 'solids': 1.0, 'true': 1.0, 'right': 1.0, 'easier': 2.0, 'having': 1.0, 'may': 1.0, 'my': 5.0, 'deal': 1.0, 'many': 1.0, 'place': 1.0, 'began': 1.0, 'mornings': 1.0, 'need': 1.0, 'spent': 1.0, 'for': 2.0, 'expensive': 1.0, 'along': 1.0, 't': 2.0, 'fit': 1.0, 'one': 3.0, 'than': 2.0, 'huge': 1.0, 'son': 2.0, 'short': 1.0, 'day': 3.0, 'extra': 2.0, 'from': 4.0, 'you': 2.0, 'night': 2.0, 'bath': 1.0, 'following': 1.0, 'stuff': 1.0, 'making': 1.0, 'most': 2.0, 'can': 3.0, 'chubby': 1.0, 'but': 1.0, 'enough': 1.0, 'sigh': 1.0, 'loved': 1.0, 'about': 1.0, 'shakes': 1.0, 'elemental': 2.0, 'running': 1.0, 'have': 4.0, 'dryer': 1.0, 'though': 2.0, 'inserts': 1.0, 's': 1.0, 'stuffing': 1.0, 'a': 4.0, 'leg': 1.0, 'take': 1.0, 'we': 6.0, 'bg': 2.0, 'had': 1.0, '0': 4.0, 'lost': 1.0, 'evenings': 1.0, 'add': 1.0, 'because': 1.0, 'that': 8.0, 'how': 2.0, 'our': 1.0, 'hoping': 1.0, 'to': 10.0, 'if': 1.0, 'prepare': 1.0, 'putting': 1.0, 'i': 12.0, 'us': 1.0, 'soaker': 1.0, 'lanky': 1.0, 'also': 2.0, 'm': 1.0, 'in': 5.0, 'diaper': 4.0, 'as': 3.0, 'flood': 1.0, 'saving': 1.0, 'remove': 1.0, 'without': 2.0, 'with': 7.0, 'it': 9.0, 'was': 2.0, 'made': 1.0, 'leaking': 1.0, 'are': 3.0, 'diapers': 5.0, 'an': 1.0, 'find': 2.0, 'upgrade': 1.0, 'worth': 1.0, 'he': 1.0, 'choosing': 1.0, 'washing': 1.0, 'don': 1.0, 'cotton': 1.0, 'leaked': 1.0, 'bulky': 2.0, 'no': 1.0, 'needing': 1.0, 'them': 4.0, 'has': 2.0, 'time': 1.0, 'been': 3.0, 'saver': 1.0, 'and': 5.0, 'machine': 1.0, 'cloth': 3.0, 'even': 1.0, 'instead': 1.0, 'finger': 1.0, 'the': 23.0, 'elementals': 1.0, 'longer': 1.0, 'of': 5.0, 'line': 1.0, 'daughter': 1.0, 'dry': 1.0, 'they': 9.0, 'between': 1.0, 'put': 1.0, 'much': 2.0, 'do': 1.0, '4': 4.0, 'soakers': 1.0, 'say': 2.0, 'replaced': 1.0, 'liner': 2.0, 'attached': 1.0, 'at': 3.0, 'is': 7.0, 'less': 1.0, 'relief': 1.0, 'nowhere': 1.0, 'on': 1.0, 'long': 2.0, 'near': 1.0}
Word element => {'for': 1.0, 'again': 1.0, 'product': 1.0, 'am': 1.0, 'buy': 1.0, 'i': 1.0, 'useless': 1.0, 'not': 1.0, 'making': 1.0, 'keep': 1.0, 'snaps': 1.0, 'already': 1.0, 'have': 1.0, '12': 1.0, 'even': 1.0, 'diapers': 1.0, 'ec': 1.0, 'this': 1.0, 'daily': 1.0, 'and': 2.0, 'since': 1.0, 'last': 1.0, 'we': 1.0, 'the': 2.0, 't': 2.0, 'these': 2.0, 'our': 1.0, 'from': 1.0, 'son': 1.0, 'is': 1.0, 'disappointed': 1.0, 'wash': 1.0, 'in': 2.0, 'would': 1.0, 'broken': 1.0, 'underwear': 1.0, 'still': 1.0, 'another': 1.0, 'don': 2.0, 'about': 1.0, 'mainly': 1.0, '5': 1.0, 'child': 1.0, 'them': 2.0, 'breaking': 1.0, 'out': 1.0, 'of': 1.0}
Word element => {'splash': 1.0, 'to': 1.0, 'so': 1.0, 'snuggly': 1.0, 'in': 2.0, 'fits': 1.0, 'tub': 3.0, 'loves': 1.0, 'love': 1.0, 'this': 1.0, 'it': 4.0, 'bath': 1.0, 'i': 1.0, 'doesn': 1.0, 'slide': 1.0, 'around': 1.0, 'away': 1.0, 'and': 1.0, 'like': 1.0, 's': 1.0, 'slippery': 1.0, 'not': 1.0, 't': 1.0, 'the': 3.0, 'ones': 1.0, 'little': 1.0}
Word element => {'cute': 1.0, 'on': 1.0, 'birds': 1.0, 'it': 2.0, 'pictured': 1.0, 'ad': 1.0, 'item': 1.0, 'birdhouses': 1.0, 'that': 1.0, 'the': 1.0, 'i': 1.0, 'close': 1.0, 'received': 1.0, 'not': 1.0, 'was': 1.0, 'had': 1.0, 'pattern': 1.0, 'no': 1.0, 'where': 1.0, 'to': 1.0}
Word element => {'arms': 1.0, 'sticking': 1.0, 'slats': 1.0, 'from': 1.0, 'baby': 1.0, 'fits': 1.0, 'keeps': 1.0, 'bassinet': 1.0, 'of': 1.0, 'nicely': 1.0, 'well': 1.0, 'on': 1.0, 'through': 1.0, 'ties': 1.0, 'mini': 1.0, 'made': 1.0, 'rungs': 1.0, 'the': 2.0, 'look': 1.0, 'lovely': 1.0}
Word element => {'look': 1.0, 'diaper': 1.0, 'match': 1.0, 'sometimes': 1.0, 'colors': 1.0, 'wish': 1.0, '3mos': 1.0, 'now': 1.0, 'small': 1.0, 'was': 1.0, 'it': 2.0, 'she': 1.0, 'were': 1.0, 'than': 1.0, 'outs': 1.0, 'looking': 2.0, 'blow': 1.0, 've': 1.0, 'more': 3.0, 'say': 1.0, 'honestly': 1.0, 'but': 1.0, 'can': 1.0, 'outfit': 1.0, 'convenience': 1.0, 'quickly': 1.0, 'sticks': 1.0, 'velcro': 2.0, 'with': 3.0, 'to': 5.0, 'simple': 1.0, 'design': 1.0, 'these': 1.0, 'everything': 1.0, 'they': 6.0, 'cloth': 2.0, 'disposables': 2.0, 'i': 3.0, 'their': 2.0, 'leaks': 1.0, 'had': 2.0, 'thought': 1.0, 'love': 1.0, 'for': 2.0, 'like': 1.0, 'using': 1.0, 'make': 1.0, 'on': 1.0, 'grovia': 1.0, 'part': 1.0, 'hard': 1.0, 'whe': 1.0, 'stick': 1.0, 'use': 2.0, 'easy': 1.0, 'diapers': 1.0, 're': 1.0, 'placed': 1.0, 'really': 4.0, 'tabs': 1.0, 'of': 2.0, 'there': 1.0, 'itself': 1.0, 'in': 1.0, 'wash': 1.0, 'little': 2.0, 'under': 1.0, 'washing': 1.0, 'snaps': 1.0, 'normal': 1.0, 'are': 3.0, 'resize': 1.0, 'perfectly': 1.0, 'only': 1.0, 'do': 2.0, 'dry': 1.0, 'charlie': 1.0, 'the': 8.0, 'job': 1.0, 'well': 1.0, 'm': 1.0, 'a': 1.0, 'go': 1.0, 'we': 2.0, 's': 2.0, 'soap': 1.0, 'about': 1.0, 'bulky': 1.0, 'no': 1.0, 'also': 1.0, 'staining': 1.0}
Word element => {'absolutely': 1.0, 'fitting': 1.0, 'a': 1.0, 'other': 1.0, 'and': 1.0, 'inserts': 1.0, 'always': 1.0, 'i': 2.0, 'than': 1.0, 'in': 2.0, 'pattern': 1.0, 'grovia': 1.0, 'adorable': 1.0, 'to': 1.0, 'expected': 1.0, 'person': 1.0, 'great': 1.0, 'such': 1.0, 'more': 1.0, 'the': 1.0, 'is': 1.0, 'want': 1.0, 'diapers': 1.0, 'put': 1.0, 'our': 2.0, 'baby': 1.0, 'both': 1.0, 'cover': 2.0, 'fitted': 1.0, 'with': 2.0, 'this': 1.0, 'it': 1.0, 's': 1.0, 'super': 1.0, 'favorite': 1.0, 'trim': 1.0}
Word element => {'shell': 1.0, 'system': 1.0, 'super': 1.0, 'prefer': 1.0, 'to': 2.0, 'as': 1.0, 'diapering': 1.0, 'with': 1.0, 'only': 1.0, 'babysitters': 1.0, 'it': 2.0, 'one': 1.0, 'for': 2.0, 'of': 1.0, 'are': 1.0, 'insert': 1.0, 'is': 1.0, 'more': 1.0, 'deal': 1.0, 'the': 3.0, 'pee': 1.0, 'great': 1.0, 'my': 1.0, 'easy': 1.0, 'so': 1.0, 'need': 1.0, 'and': 2.0, 'inserts': 1.0, 'when': 1.0, 's': 2.0, 'a': 1.0, 'well': 1.0, 'i': 3.0, 'catches': 1.0, 'cloth': 1.0, 'moisture': 1.0, 'snaps': 1.0, 'than': 1.0, 'usually': 1.0, 'change': 1.0, 'but': 1.0, 'favorites': 1.0, 'like': 1.0, 'their': 1.0, 'hook': 1.0, 'loop': 1.0, 'grovia': 1.0, 'think': 1.0}
Word element => {'on': 1.0, 'daddy': 1.0, 'breeze': 1.0, 'a': 1.0, 'them': 1.0, 'duty': 1.0, 'it': 1.0, 'diapers': 1.0, 'to': 2.0, 'easy': 1.0, 'use': 1.0, 'so': 2.0, 'grovia': 1.0, 'love': 1.0, 'line': 1.0, 'disposable': 1.0, 'are': 2.0, 'my': 1.0, 'makes': 1.0, 'they': 1.0, 'the': 1.0, 'these': 1.0, 'diaper': 2.0, 'i': 1.0, 'when': 2.0, 'ds': 1.0, 'is': 2.0, 'daycare': 1.0, 'in': 1.0, 'also': 1.0, 'close': 1.0, 'especially': 1.0, 'enough': 1.0}
Word element => {'see': 1.0, 'can': 1.0, 'if': 1.0, 'wonder': 1.0, 'diaper': 1.0, 'emergency': 1.0, 'only': 1.0, 'longer': 1.0, 'last': 1.0, 'maybe': 1.0, 'back': 1.0, 'marks': 1.0, 'terrible': 1.0, 'now': 1.0, 'leaves': 1.0, 'lot': 1.0, 'part': 1.0, 'color': 1.0, 'us': 1.0, 'of': 1.0, 'either': 1.0, 'won': 1.0, 'velcro': 1.0, 'red': 1.0, 'with': 2.0, 'come': 1.0, 'after': 1.0, 'so': 1.0, 'prefold': 1.0, 'them': 2.0, 'baby': 1.0, 'or': 3.0, 'snap': 1.0, 'off': 2.0, 'young': 1.0, 'for': 1.0, 'fit': 1.0, 'worked': 1.0, 'his': 1.0, 'year': 1.0, 'on': 2.0, 'grovia': 1.0, 'amazing': 1.0, 'inserts': 1.0, 'in': 1.0, 'swim': 1.0, 'wiggly': 1.0, 'they': 2.0, 'the': 6.0, 'lower': 1.0, 'these': 1.0, 'great': 1.0, 'version': 1.0, 'which': 1.0, 'lay': 1.0, 'and': 3.0, 'as': 2.0, 'waist': 1.0, 'to': 3.0, 'i': 3.0, 'flat': 1.0, 'have': 2.0, 'use': 2.0, 'faded': 1.0, 'very': 1.0, 'snappi': 1.0, 'am': 1.0, 'active': 1.0, 't': 1.0, 'a': 6.0, 'going': 1.0, 'my': 1.0, 'convert': 1.0, 'beginning': 1.0, 'snaps': 1.0, 'dipes': 1.0, 'toddler': 1.0, 'comes': 1.0, 'is': 1.0, 'not': 1.0, 'fun': 1.0}
Word element => {'recommend': 1.0, 'grovias': 1.0, 'last': 1.0, 'would': 2.0, 'buy': 1.0, 'disposable': 1.0, 'bulkier': 1.0, 'sense': 1.0, 'side': 1.0, 'huge': 1.0, 'isn': 1.0, 'uniform': 1.0, 'leakage': 1.0, 'double': 1.0, 'moisture': 1.0, 'fabric': 1.0, 'uber': 1.0, 'rather': 1.0, 'microfiber': 2.0, 'freetimes': 2.0, 'away': 1.0, 'ripples': 1.0, 'left': 1.0, 'bulky': 2.0, 'comfortable': 1.0, 'ripple': 1.0, 'booster': 1.0, 'never': 1.0, 'heavy': 1.0, 'enough': 2.0, 'aren': 2.0, 'biggest': 1.0, 'absorbency': 1.0, 'curious': 1.0, 'least': 1.0, 'regularly': 1.0, 'bleach': 1.0, 'idea': 1.0, 'smelling': 1.0, 'fresh': 1.0, 'keep': 1.0, 'religious': 1.0, 'doing': 1.0, 'hold': 1.0, 'seem': 2.0, 'really': 1.0, 'longer': 2.0, 'smell': 1.0, 'ammonia': 1.0, 'problems': 1.0, 'good': 2.0, 'stink': 2.0, 'poke': 1.0, 'rest': 1.0, 'eventually': 1.0, 'sooner': 1.0, 'may': 2.0, 'trim': 1.0, 'happen': 1.0, 'stick': 1.0, 'wider': 1.0, 'starting': 1.0, 'what': 1.0, 'fact': 1.0, 'due': 1.0, 'cons': 1.0, 'con': 1.0, 'stuff': 1.0, 'velcro': 3.0, 'tabs': 3.0, 'setting': 1.0, 'because': 2.0, 'mainly': 1.0, 'think': 1.0, 'natural': 1.0, 'bum': 2.0, 'experienced': 1.0, 'leaks': 2.0, 'blowouts': 1.0, 'marks': 2.0, 'red': 2.0, 'elastic': 1.0, 'minutes': 2.0, 'bathroom': 1.0, 'public': 1.0, 'air': 1.0, 'gets': 1.0, 'under': 1.0, 'look': 1.0, 'dried': 2.0, 'rinsed': 1.0, 'quickly': 1.0, 'glad': 1.0, 'reused': 1.0, '4': 2.0, 'buckle': 1.0, 'an': 2.0, 'house': 1.0, 'aplix': 2.0, 'shopping': 1.0, 'if': 2.0, 'great': 2.0, 'instead': 2.0, 'worked': 1.0, 'bunch': 1.0, 'buying': 1.0, 'skin': 1.0, 'stripping': 1.0, 'delicate': 1.0, 'daughters': 2.0, 'than': 3.0, 'custom': 2.0, 'bit': 2.0, 'rise': 1.0, 'putting': 1.0, 'quite': 1.0, 'covers': 3.0, 'need': 1.0, 'also': 5.0, 'verdict': 1.0, 'multiple': 1.0, 'you': 3.0, 'compare': 1.0, 'off': 1.0, 'come': 1.0, 'made': 1.0, 'noticeable': 1.0, 'those': 1.0, 'wetters': 1.0, 'not': 6.0, 'dry': 2.0, 'its': 1.0, 'bother': 2.0, '30lbs': 1.0, 'sun': 1.0, 'definitely': 1.0, 'nasty': 1.0, 're': 4.0, 'perfectly': 1.0, 'girl': 1.0, 'about': 1.0, 'use': 9.0, 'pros': 1.0, 'wash': 3.0, 'almost': 1.0, 'at': 5.0, 'cause': 1.0, 'i': 39.0, 'consistency': 1.0, 'before': 2.0, 'probably': 3.0, 'shells': 8.0, 'maybe': 1.0, 'without': 1.0, 'whole': 1.0, 'less': 3.0, 'as': 3.0, 'to': 26.0, 'pretty': 1.0, 'these': 8.0, 'anyone': 1.0, 'how': 3.0, 'strong': 1.0, '6': 1.0, 'found': 1.0, 'have': 5.0, 'smallest': 2.0, 'trained': 1.0, 'cute': 1.0, 'we': 1.0, 'called': 1.0, 'bought': 1.0, 'other': 2.0, 'next': 2.0, 'routine': 1.0, 'extra': 2.0, 'grobaby': 1.0, 'ones': 1.0, '20': 1.0, 'all': 1.0, 'oldest': 2.0, 'issue': 3.0, 'they': 16.0, 'months': 2.0, 'ready': 1.0, 'until': 5.0, 'new': 4.0, 'top': 1.0, 'began': 2.0, 'time': 5.0, 've': 5.0, 'soft': 6.0, 'babies': 3.0, 'went': 1.0, 'been': 6.0, 'helped': 1.0, 'cd': 3.0, 'grovia': 2.0, 'love': 5.0, 'easy': 3.0, 'fit': 2.0, 't': 11.0, 'for': 18.0, 'tiny': 3.0, 'a': 23.0, 'small': 1.0, 'legs': 1.0, 'separate': 1.0, 'only': 5.0, 'didn': 4.0, 'inserts': 10.0, 'clean': 1.0, 'switch': 1.0, 'd': 2.0, 'id': 1.0, 'wet': 2.0, 'no': 4.0, 'them': 13.0, 'has': 5.0, 'always': 1.0, 'night': 4.0, 'when': 6.0, 'do': 1.0, 'snapped': 1.0, 'either': 1.0, 'had': 6.0, 'first': 3.0, '12': 1.0, 'exclusively': 2.0, 'were': 6.0, 'reuse': 1.0, 'issues': 1.0, 'are': 11.0, 'my': 12.0, 'me': 2.0, 'daughter': 2.0, 'contrary': 1.0, 'pull': 1.0, 'squirmy': 1.0, 'used': 4.0, 'wearing': 2.0, 'cloth': 1.0, 'drier': 1.0, 'leave': 1.0, '2': 1.0, 'happens': 2.0, 'machine': 3.0, 'etc': 2.0, 'four': 3.0, 'on': 9.0, 'pooped': 1.0, 'mostly': 1.0, 'kids': 1.0, 'month': 1.0, 'get': 2.0, 'able': 2.0, 'often': 1.0, 'annoying': 1.0, 'background': 1.0, 'stopped': 2.0, 'part': 1.0, 'baby': 4.0, 'now': 2.0, 'anymore': 1.0, 'was': 7.0, 'curl': 1.0, 'lbs': 1.0, 'so': 10.0, 'fault': 1.0, 'prefolds': 3.0, 'is': 7.0, 'can': 8.0, 'in': 13.0, 'potty': 2.0, 'ups': 1.0, 'since': 5.0, 'very': 4.0, 'find': 3.0, 'needing': 2.0, 'go': 1.0, 'cder': 1.0, 'fallen': 1.0, 'say': 1.0, 'more': 2.0, 'perfect': 3.0, 'and': 27.0, 'just': 3.0, 'snap': 1.0, 'the': 50.0, 'even': 1.0, 'old': 4.0, 'stored': 1.0, 'of': 10.0, 'strap': 1.0, 'possible': 1.0, 'difficult': 1.0, 'much': 5.0, 'match': 1.0, 'colours': 1.0, 'life': 1.0, 'that': 9.0, 'layer': 1.0, 'couple': 1.0, 'few': 5.0, 'organic': 1.0, 'times': 2.0, 'condition': 2.0, 'years': 4.0, 'stinky': 1.0, 'others': 1.0, 'absorbent': 1.0, 'yrs': 1.0, 'or': 6.0, '3': 1.0, 'worn': 1.0, 'too': 5.0, 'some': 5.0, 'fixed': 1.0, 'people': 1.0, 'this': 6.0, 'thicker': 1.0, 'true': 1.0, '30': 1.0, 'bumgenius': 2.0, 'diapers': 7.0, 'but': 11.0, 'by': 1.0, 'though': 1.0, 'after': 1.0, 'confidently': 1.0, 'own': 1.0, 'be': 6.0, 'it': 6.0, 'wear': 1.0, 'doesn': 1.0, 'snug': 1.0, 'm': 3.0, 's': 2.0, 'year': 1.0, 'insert': 3.0, 'easier': 1.0, 'travel': 1.0, 'needed': 1.0, 'shell': 9.0, 'key': 1.0, 'well': 4.0, 'line': 1.0, 'stay': 1.0, 'stuffing': 1.0, 'which': 4.0, 'their': 1.0, 'reviews': 1.0, 'super': 1.0, 'still': 3.0, 'don': 3.0, 'poop': 2.0, 'who': 2.0, 'from': 2.0, 'knows': 1.0, 'designs': 1.0, 'wicks': 1.0, 'thick': 1.0, 'snaps': 6.0, 'she': 7.0, 'agitates': 1.0, 'during': 1.0, 'out': 5.0, 'versatile': 1.0, '5': 4.0, 'one': 4.0, 'absolutely': 1.0, 'nothing': 1.0, 'up': 4.0, 'sized': 1.0, 'diaper': 3.0, 'washing': 1.0, 'holds': 1.0, 'prolong': 1.0, 'size': 4.0, 'long': 5.0, 'although': 2.0, 'training': 1.0, 'unstuffing': 1.0, 'kid': 1.0, 'purchased': 1.0, 'colour': 1.0, 'using': 1.0, 'with': 8.0, 'folding': 1.0, 'chunk': 1.0, 'sure': 1.0, 'beginning': 1.0, 'could': 1.0, 'loose': 1.0, 'obnoxious': 1.0, 'mesh': 1.0, 'birth': 1.0, 'like': 1.0, 'makes': 3.0}
Word element => {'overall': 1.0, 'but': 1.0, 'shell': 1.0, 'lo': 1.0, 'my': 1.0, 'than': 1.0, 'leg': 1.0, 'by': 1.0, 'sides': 1.0, 'soaker': 1.0, 'like': 1.0, 'snap': 1.0, 'not': 2.0, 'for': 1.0, 'love': 2.0, 'month': 1.0, 'in': 3.0, 'usa': 1.0, 'made': 1.0, 'usually': 1.0, 'product': 1.0, 'with': 1.0, 'this': 1.0, 'have': 1.0, 'change': 1.0, 'is': 1.0, 'that': 1.0, 'get': 1.0, 'urine': 1.0, 'ease': 1.0, 'd': 1.0, 'contained': 1.0, 'so': 3.0, 'always': 1.0, 'of': 1.0, 'wet': 1.0, 'use': 1.0, 'old': 1.0, 'i': 3.0, 'wetter': 2.0, '4': 1.0, 'a': 3.0, 'more': 1.0, 'great': 2.0, 'diaper': 2.0, 'the': 3.0, 'heavy': 2.0}
Word element => {'these': 1.0, 'downside': 1.0, 'big': 1.0, 'used': 1.0, 'equally': 1.0, 'extended': 1.0, 'from': 1.0, 'holes': 1.0, 'washing': 2.0, 'up': 1.0, 'holds': 1.0, 'fleece': 3.0, 'on': 2.0, 'elastic': 1.0, 'also': 2.0, 'decision': 1.0, 'might': 1.0, 'done': 1.0, 'days': 1.0, 'after': 1.0, 'resell': 1.0, 'looking': 1.0, 'are': 4.0, 'so': 2.0, 'handed': 1.0, 'seem': 1.0, 't': 1.0, 'covered': 1.0, 'organic': 3.0, 'but': 2.0, 'bunch': 1.0, 'liked': 1.0, 'have': 2.0, 'being': 1.0, 'into': 2.0, 'when': 3.0, 'folded': 1.0, 'expensive': 1.0, 'uncomfortable': 1.0, 'purchase': 1.0, 'function': 1.0, 'they': 2.0, 'and': 7.0, 'stain': 2.0, 'go': 1.0, 'soakers': 2.0, 'cloth': 1.0, 'drier': 1.0, 'watch': 1.0, 'my': 6.0, 'gussets': 2.0, 'cotton': 3.0, 'with': 4.0, 'absorb': 1.0, 'hates': 1.0, 'covers': 2.0, 'baby': 3.0, 'she': 3.0, 'wear': 1.0, 'it': 2.0, 'child': 1.0, 'products': 1.0, 'etc': 1.0, 'said': 1.0, 'diapering': 2.0, 'in': 3.0, 'really': 2.0, 'annoying': 1.0, 'as': 1.0, 'of': 2.0, 'the': 14.0, 'your': 2.0, 'down': 1.0, 've': 1.0, 'each': 1.0, 'parents': 1.0, 'bumgenius': 1.0, 'system': 1.0, 'while': 3.0, 'i': 3.0, 'well': 2.0, 'pretty': 1.0, 'to': 4.0, 'against': 1.0, 'potty': 1.0, 'new': 1.0, 'mix': 1.0, 'time': 2.0, 'use': 1.0, 'her': 2.0, 'which': 1.0, 'prefolds': 2.0, 'good': 1.0, 'microfleece': 1.0, 'skin': 2.0, 'this': 2.0, 'look': 1.0, 'is': 3.0, 'more': 1.0, 'thing': 1.0, 'training': 1.0, 'fasteners': 1.0, 'newborn': 1.0, 'affect': 1.0, '15': 1.0, 'minutes': 1.0, 'you': 1.0, 'pees': 2.0, 'cries': 2.0, 'that': 3.0, 'easily': 2.0, 'because': 1.0, 'stash': 1.0, 'gets': 1.0, 'if': 1.0, 'every': 2.0, 'still': 2.0, 'washes': 1.0, 'doesn': 1.0, 'hemp': 3.0, 'inserts': 5.0, 'comfortable': 1.0, 'ones': 1.0, 'one': 1.0, '2nd': 1.0, 'lot': 1.0, 'essentially': 1.0, 'overall': 1.0, 'a': 5.0, 'added': 1.0, 'disposable': 1.0, 'stays': 1.0, 'bonus': 1.0, 'far': 1.0, 'solid': 1.0, 'waste': 1.0, 'grovia': 2.0, 'seems': 1.0, 'off': 1.0, 's': 1.0, 'wetness': 1.0, 'cleaner': 1.0}
Word element => {'a': 1.0, 'in': 1.0, 'soakers': 1.0, 'they': 1.0, 'cloth': 1.0, 'and': 2.0, 'favorite': 1.0, 'my': 1.0, 'diaper': 1.0, 'nicely': 1.0, 'these': 1.0, 'the': 1.0, 'are': 1.0, 'to': 1.0, 'diapering': 1.0, 'grovia': 1.0, 'really': 1.0, 'is': 1.0, 'on': 1.0, 'hybrid': 1.0, 'bag': 1.0, 'take': 1.0, 'soft': 1.0, 'easy': 1.0, 'put': 1.0, 'off': 1.0, 'system': 2.0, 'fit': 1.0}
Word element => {'closest': 1.0, 'ias': 1.0, 'grandma': 1.0, 'him': 1.0, 'will': 1.0, 'else': 1.0, 'use': 1.0, 'generally': 1.0, 'change': 1.0, 'work': 1.0, 'both': 1.0, 'with': 1.0, 'itty': 1.0, 'now': 1.0, 'friendly': 1.0, 'caretaker': 1.0, 'and': 4.0, 'husband': 1.0, 'to': 2.0, 'was': 1.0, 'grovia': 3.0, 'son': 1.0, 'etc': 1.0, 'i': 6.0, 'diaper': 1.0, 'great': 1.0, 'these': 1.0, 'prefolds': 1.0, 'the': 4.0, 'hybrids': 1.0, 'are': 3.0, 'my': 2.0, 'them': 1.0, 'used': 1.0, 'they': 2.0, 'dry': 2.0, 'have': 2.0, 'duo': 1.0, 'biosoakers': 1.0, 'snap': 1.0, 'stay': 2.0, 'soakers': 1.0, 'a': 1.0, 's': 1.0, 't': 1.0, 'doctor': 1.0, 'go': 1.0, 'thirsties': 1.0, 'inserts': 2.0, 'prefer': 1.0, 'because': 1.0, 'in': 1.0, 'for': 2.0, 'love': 1.0, 'bitty': 1.0, 'easiest': 1.0, 'someone': 1.0, '11': 1.0, 'traveling': 1.0, 'when': 2.0, 'disposable': 1.0, 'hubs': 1.0, 'vs': 1.0, 'preferred': 1.0, 'well': 1.0, 'aplix': 2.0, 'snaps': 1.0}
Word element => {'are': 1.0, 'size': 2.0, 'other': 2.0, 'earlier': 1.0, 'weeks': 1.0, 'from': 1.0, 'prints': 1.0, 'take': 1.0, '90': 1.0, 'also': 2.0, 'than': 2.0, 'having': 1.0, 'one': 2.0, 'months': 1.0, 'grovias': 1.0, '5': 1.0, 'trimmer': 1.0, 'leak': 1.0, 'stay': 1.0, 'not': 2.0, 'have': 1.0, 'they': 2.0, 'dry': 2.0, 'isn': 1.0, 'these': 1.0, 'the': 2.0, 's': 1.0, 'we': 2.0, 't': 1.0, 'through': 1.0, 'our': 1.0, 'to': 4.0, 'and': 4.0, 'only': 1.0, 'do': 1.0, 'most': 1.0, 'change': 1.0, '24': 1.0, 'on': 1.0, 'stuff': 1.0, 'she': 1.0, 'material': 1.0, 'every': 1.0, 'use': 1.0, 'minutes': 1.0, 'want': 1.0, 'if': 1.0, 'her': 1.0, 'hours': 1.0, 'fit': 1.0, 'clothesline': 1.0, 'love': 1.0, 'ideal': 1.0, 'alright': 1.0, 'however': 1.0, '4': 1.0, 'i': 2.0, 'diapers': 2.0, 'pockets': 1.0, 'which': 1.0, 'like': 3.0, 'baby': 1.0, 'them': 2.0, 'still': 1.0, 'anyway': 1.0}
Word element => {'used': 1.0, 'than': 1.0, 'room': 1.0, 'up': 1.0, 'dont': 1.0, 'take': 1.0, 'bag': 1.0, 'in': 1.0, 'to': 2.0, 'because': 1.0, 'disposables': 1.0, 'especially': 1.0, 'stuff': 1.0, 'grovia': 1.0, 'soft': 1.0, 'soakers': 1.0, 'love': 1.0, 'awesome': 1.0, 'convenient': 1.0, 'a': 1.0, 'and': 1.0, 'do': 1.0, 'sons': 1.0, 'dry': 1.0, 'they': 2.0, 'more': 1.0, 'diaper': 1.0, 'the': 3.0, 'great': 1.0, 'these': 1.0, 'are': 2.0, 'keeping': 1.0, 'he': 1.0, 'carry': 2.0, 'at': 1.0, 'so': 1.0, 'after': 1.0, 'hybrids': 1.0, 'job': 1.0, 'bum': 1.0, 'my': 1.0, 'pees': 1.0, 'i': 2.0}
Word element => {'prefolds': 1.0, 'regular': 1.0, 'grobaby': 1.0, 'better': 1.0, 'like': 1.0, 'we': 1.0, 'family': 1.0, 'our': 1.0, 'works': 1.0, 'booster': 1.0, 'absorbency': 2.0, 'easy': 1.0, 're': 1.0, 'organic': 3.0, 'can': 1.0, 'so': 2.0, 'and': 3.0, 'great': 1.0, 'shell': 1.0, 'lots': 2.0, 'backing': 1.0, 'baby': 3.0, 'waterproof': 1.0, 'easier': 1.0, 'a': 4.0, 's': 1.0, 'be': 1.0, 'material': 1.0, 'skinny': 1.0, 'times': 1.0, 'love': 2.0, 'for': 2.0, 'i': 3.0, 'to': 2.0, 'as': 1.0, 'system': 2.0, 'active': 1.0, 'they': 1.0, 'between': 1.0, 'keeps': 1.0, 'shells': 1.0, 'wiggly': 1.0, 'makes': 1.0, 'next': 1.0, 'much': 1.0, 'changing': 1.0, 'grovia': 3.0, 'on': 1.0, 'used': 1.0, 'what': 1.0, 'had': 1.0, 'than': 2.0, 'that': 1.0, 'because': 1.0, 'dry': 2.0, 'skin': 1.0, 'part': 1.0, 'same': 1.0, 'clean': 1.0, 'leaks': 1.0, 'inserts': 3.0, 'numerous': 1.0, 'in': 4.0, 'cotton': 3.0, 'trimmer': 1.0, 'don': 1.0, 'now': 1.0, 'is': 3.0, 'more': 1.0, 'sometimes': 2.0, 'after': 1.0, 'these': 2.0, 'bunch': 1.0, 'poop': 1.0, 'front': 1.0, 'my': 1.0, 'extra': 1.0, 'another': 1.0, 'reviewer': 1.0, 'stay': 1.0, 'if': 1.0, 'absorbencywhat': 1.0, 'still': 1.0, 'layers': 1.0, 'gets': 1.0, 'washes': 1.0, 'quite': 1.0, 'with': 2.0, 'short': 1.0, 'rise': 1.0, 'it': 1.0, 't': 1.0, 'require': 1.0, 'the': 7.0, 'of': 1.0, 'prepping': 1.0, 'guy': 1.0, 'issue': 1.0, 'slide': 1.0, 'overall': 1.0, 'full': 1.0, 'this': 1.0, 'snap': 1.0, 'hybrid': 1.0, 'dozen': 1.0, 'or': 2.0, 'wonder': 1.0}
Word element => {'that': 1.0, 'well': 2.0, 'just': 1.0, 'work': 2.0, 'but': 1.0, 'use': 1.0, 'they': 1.0, 'covers': 1.0, 'and': 2.0, 'several': 1.0, 'as': 1.0, 'grovia': 1.0, 'prefolds': 1.0, 'some': 1.0, 'of': 2.0, 'flats': 1.0, 'have': 2.0, 'other': 1.0, 'i': 3.0, 'snap': 1.0, 'the': 1.0, 'also': 1.0, 'in': 1.0, 'soakers': 2.0, 'brands': 1.0}
Word element => {'ai1s': 1.0, 'velcro': 1.0, 'shells': 1.0, 'to': 2.0, 'newborn': 1.0, 'a': 1.0, 'was': 1.0, 'snap': 1.0, 'i': 2.0, 'grovia': 1.0, 'use': 1.0, 'exclusively': 1.0, 'the': 4.0, 'my': 1.0, 'baby': 1.0, 'ai2s': 1.0, 'for': 1.0, 'have': 1.0, 'and': 2.0, 'since': 1.0, 'prefer': 1.0, 'he': 1.0}
Word element => {'well': 1.0, 'works': 1.0, 'quality': 1.0, 'and': 1.0, 'great': 1.0}
Word element => {'absorbent': 1.0, 'tell': 1.0, 'more': 2.0, 'work': 1.0, 'poos': 1.0, 'will': 1.0, 'whatcha': 1.0, 'happens': 1.0, 'this': 1.0, 'had': 1.0, 've': 1.0, 'top': 1.0, 'potty': 1.0, 'for': 1.0, 'stars': 1.0, 'wet': 1.0, 'probably': 1.0, 'feel': 1.0, 'big': 1.0, 'to': 1.0, 'pads': 2.0, 'as': 2.0, 'training': 1.0, 's': 2.0, 't': 3.0, 'we': 3.0, 'a': 2.0, 'cotton': 1.0, 'don': 2.0, 'baby': 1.0, 'started': 1.0, 'leak': 1.0, 'softer': 1.0, 'night': 1.0, 're': 1.0, 'cover': 1.0, 'my': 1.0, 'all': 1.0, 'an': 2.0, 'fits': 1.0, 'keep': 2.0, 'they': 4.0, 'between': 1.0, 'when': 2.0, 'times': 1.0, 'well': 1.0, 'i': 6.0, '4': 1.0, 'these': 2.0, 'never': 1.0, 'some': 1.0, 'rock': 1.0, 'flush': 1.0, 'yes': 1.0, 'ones': 1.0, 'cding': 1.0, 'original': 2.0, 'has': 1.0, 'always': 1.0, 'fibers': 1.0, 'and': 8.0, 'milk': 1.0, 'like': 2.0, 'prefolds': 1.0, 'which': 2.0, 'newborn': 1.0, 'or': 1.0, 'need': 1.0, 'organic': 2.0, 'but': 2.0, 'so': 2.0, 'can': 2.0, 'gonna': 1.0, 'bought': 1.0, 'different': 1.0, 'are': 3.0, 'first': 1.0, 'nicely': 1.0, 'fleece': 1.0, 'best': 1.0, 'the': 6.0, 'natural': 1.0, 'very': 1.0, 'little': 1.0, 'really': 2.0, 'want': 1.0, 'at': 1.0, 'is': 2.0, 'dry': 1.0, 'not': 1.0, 'poops': 1.0, 'with': 2.0, 'solid': 1.0, 'yet': 1.0, 'he': 2.0, 'bottom': 1.0, 'loose': 1.0, 'gave': 1.0, 'nap': 1.0, 'do': 1.0, 'bum': 1.0, 'put': 1.0, 'long': 1.0, 'on': 1.0, 'in': 3.0, 'extra': 1.0, 'insert': 1.0, 'him': 1.0, 'it': 4.0, 'both': 1.0, 'people': 1.0, 'soaker': 2.0, 'also': 3.0, 'layer': 1.0, 'that': 1.0, 'because': 4.0, 'breast': 1.0, 'gets': 1.0}
Word element => {'problem': 1.0, 'shell': 1.0, 'every': 2.0, 'use': 2.0, 'then': 1.0, 'his': 2.0, 'he': 1.0, 'solved': 1.0, 'it': 2.0, 'out': 1.0, 'night': 2.0, 'i': 3.0, 'pjs': 1.0, 'was': 2.0, 'husband': 1.0, 'now': 1.0, 'son': 1.0, 'snap': 1.0, 'crying': 1.0, 'peeing': 1.0, 'change': 1.0, 'up': 1.0, 'nighttime': 1.0, 'over': 3.0, 'don': 1.0, 'my': 2.0, 'the': 3.0, 'changed': 1.0, 'diaper': 5.0, 'inserts': 1.0, 'this': 2.0, 'cranky': 1.0, 'for': 1.0, 'would': 2.0, 'him': 1.0, 'of': 1.0, 'wake': 1.0, 'and': 3.0, 'sack': 1.0, 'just': 1.0, 'by': 1.0, 'while': 1.0, 'sheets': 1.0, 'time': 1.0, 'awake': 1.0, 'sleep': 1.0, 'all': 2.0, 'disposable': 1.0, 'wide': 1.0, 'a': 1.0, 't': 1.0, 'we': 2.0, 'were': 1.0}
Word element => {'a': 1.0, 'in': 1.0, 'leg': 1.0, 't': 2.0, 'have': 1.0, 'use': 1.0, 'prefold': 1.0, 'my': 1.0, 'own': 1.0, 'as': 1.0, 'trust': 1.0, 'diapers': 1.0, 'doesn': 1.0, 'i': 2.0, 'gussets': 1.0, 's': 1.0, 'of': 1.0, 'everything': 1.0, 'so': 1.0, 'only': 1.0, 'fitted': 1.0, 'with': 2.0, 'this': 1.0, 'it': 3.0, 'wouldn': 1.0, 'to': 1.0, 'hold': 1.0}
Word element => {'absorbent': 1.0, 'more': 1.0, 'used': 1.0, 'the': 5.0, 'these': 1.0, 'out': 2.0, 'them': 2.0, 'much': 1.0, 'try': 1.0, 'layer': 2.0, 'every': 1.0, 'to': 2.0, 'had': 1.0, 'was': 1.0, 'time': 1.0, 'new': 1.0, 'top': 1.0, 'stay': 1.0, 'of': 1.0, 'up': 1.0, 'an': 1.0, 'inserts': 1.0, 't': 1.0, 'we': 2.0, 'been': 1.0, 'using': 1.0, 'for': 1.0, 'can': 1.0, 'but': 1.0, 'organic': 2.0, 'bought': 1.0, 'improvement': 1.0, 'cotton': 2.0, 'be': 1.0, 'soakers': 1.0, '4': 1.0, 'i': 2.0, 'soaked': 1.0, 'figure': 1.0, 'how': 1.0, 'are': 1.0, 'seems': 2.0, 'dry': 1.0, 'cut': 1.0, 'daughter': 1.0, 'large': 1.0, 'too': 1.0, 'and': 2.0, 'bottom': 1.0, 'bunches': 1.0, 'my': 1.0}
Word element => {'in': 1.0, 'and': 2.0, 'very': 1.0, 'inserts': 1.0, 'gdiaper': 1.0, 'nice': 1.0, 'trim': 1.0, 'them': 2.0, 'use': 1.0, 'with': 1.0, 'we': 1.0, 'shells': 1.0, 'they': 1.0, 'these': 1.0, 'great': 1.0, 'i': 1.0, 'work': 1.0, 'are': 1.0, 'my': 1.0, 'little': 1.0, 'girl': 1.0, 'looks': 1.0, 'love': 1.0, 'comfortable': 1.0}
Word element => {'purchase': 1.0, 'use': 1.0, 'easy': 1.0, 'machine': 1.0, 'white': 1.0, 'own': 1.0, 'unnecessarily': 1.0, 'just': 1.0, 'not': 1.0, 'and': 2.0, 'batteries': 1.0, 'saving': 1.0, 'makes': 1.0, 'on': 1.0, 'sound': 1.0, 'that': 1.0, 'for': 1.0, 'love': 1.0, 'static': 1.0, 'have': 1.0, 'or': 1.0, 'riddled': 1.0, 'parent': 1.0, 'first': 1.0, 'it': 3.0, 'only': 1.0, 'much': 2.0, 'us': 1.0, 'clearer': 1.0, 'being': 1.0, 'how': 1.0, 'i': 2.0, 'baby': 1.0, 'night': 1.0, 'can': 1.0, 'm': 1.0, 'noise': 2.0, 'room': 1.0, 'worry': 1.0, 'time': 1.0, 'so': 1.0, 'less': 1.0, 'made': 1.0, 'found': 1.0, 'this': 1.0, 'vision': 1.0, 'would': 1.0, 've': 1.0, 'new': 1.0, 'other': 1.0, 'see': 1.0, 'fuzzy': 1.0, 'bought': 1.0, 'monitor': 1.0, 'matter': 1.0, 'son': 1.0, 'of': 1.0, 'no': 1.0, 'setting': 1.0, 'some': 1.0, 'dark': 1.0, 'turn': 1.0, 'kicks': 1.0, 'in': 2.0, 'playing': 1.0, 'the': 3.0, 'again': 1.0, 'when': 1.0, 'thanks': 1.0, 'which': 1.0, 'our': 2.0, 'to': 3.0, 'than': 1.0, 'a': 2.0, 's': 2.0, 'we': 3.0, 'go': 1.0, 'glad': 1.0, 'clearly': 1.0, 'monitors': 1.0}
Word element => {'vehicle': 1.0, 'other': 1.0, 'ceiling': 1.0, 'about': 1.0, '4': 1.0, 'uses': 1.0, 'short': 1.0, 'when': 1.0, 'too': 1.0, 'pole': 1.0, 'to': 1.0, 'was': 1.0, 'after': 1.0, 'the': 3.0, 'my': 2.0, '34': 1.0, 'of': 1.0, 'suv': 1.0, 'plastic': 1.0, 'reach': 1.0, 'and': 1.0, 'cracked': 1.0, 'a': 1.0, 'few': 1.0, 'in': 1.0}
Word element => {'are': 1.0, 'sturdily': 1.0, 'manufactured': 1.0, 'should': 1.0, '40': 1.0, 'up': 1.0, '3': 1.0, 'end': 1.0, 'only': 1.0, 'baby': 1.0, 'of': 1.0, 'view': 1.0, 'how': 1.0, 'really': 1.0, 'it': 3.0, 'great': 1.0, 'install': 1.0, 'since': 1.0, 'total': 1.0, '20': 2.0, 'more': 1.0, 'asked': 2.0, 'broke': 1.0, 'rod': 1.0, 'i': 9.0, 'paying': 1.0, 'wanted': 1.0, 'to': 3.0, '4u2c': 1.0, 'giving': 1.0, 'be': 2.0, 'us': 1.0, 'able': 2.0, 'in': 3.0, 'though': 1.0, 'this': 1.0, 'ended': 1.0, 'package': 1.0, 'like': 2.0, 'even': 1.0, 'followed': 1.0, 'immediately': 1.0, 'instead': 1.0, 'telescoping': 1.0, 'but': 2.0, 'the': 8.0, 'still': 1.0, 'shipping': 1.0, 'fastening': 1.0, 'agreed': 1.0, 'replacement': 1.0, 'stars': 1.0, 'product': 2.0, 'for': 3.0, 'undamaged': 1.0, 'one': 1.0, 'we': 3.0, 'a': 4.0, 'gives': 1.0, 'when': 1.0, 'mirror': 2.0, 'm': 1.0, 'instructions': 1.0, 'use': 1.0, 'amazon': 1.0, 'backseat': 1.0, 'was': 1.0, 'refund': 1.0, 'me': 1.0, 'and': 4.0, 'have': 1.0, 'contacted': 1.0, 'if': 1.0, 'did': 1.0, 'successfully': 1.0, 'glad': 2.0, 'would': 1.0, 'new': 1.0, 'arrived': 1.0}
Word element => {'other': 1.0, 'views': 1.0, 'one': 1.0, 'safe': 1.0, 'back': 2.0, 'dogs': 1.0, 'have': 1.0, 'should': 1.0, 'ages': 1.0, 'children': 1.0, 'transport': 1.0, 'those': 1.0, 'because': 1.0, 'connected': 1.0, 'places': 1.0, 'a': 2.0, 'go': 1.0, 'are': 2.0, 'they': 2.0, 'both': 1.0, 'mirror': 2.0, 'prefers': 1.0, 'can': 2.0, 'relaxed': 1.0, 'looking': 1.0, 'purchased': 1.0, 'what': 2.0, 'her': 4.0, 'board': 1.0, 'his': 1.0, 'of': 1.0, 'view': 1.0, 'so': 1.0, 'watch': 1.0, 'driving': 3.0, 'in': 3.0, 'also': 1.0, 'item': 1.0, 'seems': 1.0, 'she': 3.0, 'i': 2.0, 'concentrates': 1.0, 'floor': 1.0, 'see': 2.0, 'who': 2.0, 'that': 1.0, 'backwards': 1.0, 'doing': 2.0, 'this': 1.0, 'only': 1.0, 'my': 2.0, 'glances': 1.0, 'for': 3.0, 'feel': 1.0, 'comfortable': 1.0, 'daughter': 2.0, 'facing': 1.0, 'son': 1.0, 'rear': 2.0, 'car': 1.0, 'seeing': 1.0, 'the': 5.0, 'is': 3.0, 'more': 4.0, 'baby': 2.0, 'happier': 1.0, 'mommy': 2.0, 'parents': 1.0, 'speaks': 1.0, 'sings': 1.0, 'all': 2.0, 'as': 3.0, 'seat': 3.0, 'to': 3.0, 'now': 2.0, 'window': 1.0, 'him': 2.0, 'and': 5.0, 'think': 1.0, 'constantly': 1.0, 'on': 1.0}
Word element => {'up': 1.0, 'put': 1.0, 'compared': 1.0, 'adjust': 1.0, 'frequently': 1.0, 'straps': 1.0, 'kind': 1.0, 'husband': 1.0, 'matters': 1.0, 's': 1.0, 'as': 2.0, 'reflection': 1.0, 'eventually': 1.0, 'minor': 1.0, 'very': 1.0, 'is': 5.0, 'holds': 1.0, 'regular': 1.0, 'son': 1.0, 'place': 1.0, 'the': 8.0, 'hold': 1.0, 'know': 1.0, 'what': 2.0, 'when': 4.0, 'tension': 1.0, 'and': 5.0, 'surfaces': 1.0, 'perfectly': 1.0, 'down': 1.0, 'remove': 1.0, 'works': 1.0, 'only': 1.0, 'mirror': 4.0, 'to': 10.0, 'in': 4.0, 'seat': 1.0, 'higher': 1.0, 'this': 3.0, 'bar': 1.0, 'purchased': 1.0, 'had': 1.0, 'a': 3.0, 'mirrors': 1.0, 'love': 1.0, 'he': 3.0, 'need': 1.0, 't': 3.0, 'fit': 2.0, 'has': 4.0, 'care': 1.0, 'angle': 1.0, 'car': 2.0, 'doesn': 1.0, 'but': 2.0, '2': 1.0, 'needed': 1.0, 'baby': 3.0, 'with': 1.0, 'vibrate': 1.0, 'smooth': 2.0, 'me': 1.0, 'my': 7.0, 'vibrates': 1.0, 'are': 1.0, 'headrests': 1.0, 'other': 1.0, 'all': 1.0, 'an': 1.0, 'that': 4.0, 'into': 1.0, 'actual': 1.0, 'one': 2.0, 'months': 2.0, 'piece': 1.0, 'i': 10.0, 'have': 2.0, 'infiniti': 1.0, 'now': 1.0, 'constant': 1.0, 'was': 3.0, 'sedan': 1.0, 'driving': 1.0, 'about': 1.0, '3': 1.0, 'make': 1.0, 'long': 1.0, 'on': 1.0, 'old': 1.0, 'it': 12.0, '9': 1.0, 'uses': 1.0, 'time': 1.0, 'constantly': 1.0, 'headrest': 2.0, 'so': 1.0, 'adjusted': 1.0, 'will': 1.0, 'getting': 1.0, 'see': 2.0, 'around': 2.0, 'his': 1.0, 'face': 2.0, 'concern': 1.0, 'out': 1.0, 'order': 1.0, 'position': 1.0, 'sweet': 1.0, 'cushion': 1.0, 'most': 1.0, 'back': 1.0, 'making': 1.0, 'pushing': 1.0, 'indent': 1.0, 'don': 2.0, 'stay': 1.0, 'still': 1.0, 'clear': 1.0, 'bigger': 1.0, 'if': 1.0}
Word element => {'car': 1.0, 'possible': 1.0, 'damage': 1.0, 'without': 1.0, 'connects': 1.0, 'way': 1.0, 'i': 2.0, 'expecting': 1.0, 'for': 1.0, 'in': 1.0, 'gift': 1.0, 'to': 2.0, 'bought': 1.0, 'be': 1.0, 'a': 1.0, 'like': 2.0, 'it': 1.0, 'looked': 1.0, 'this': 3.0, 'couple': 1.0, 'at': 1.0, 'several': 1.0, 'made': 1.0, 'the': 3.0, 'my': 1.0, 'an': 1.0, 'but': 1.0, 'any': 1.0, 'appeared': 1.0, 'opinion': 1.0, 'as': 1.0, 'best': 1.0}
Word element => {'of': 1.0, 'as': 1.0, 'same': 1.0, 'lose': 1.0, 'once': 1.0, 'point': 1.0, 's': 1.0, 'you': 2.0, 'room': 3.0, 'on': 1.0, 'my': 1.0, 'having': 1.0, 'camera': 1.0, 'in': 2.0, 'leave': 1.0, 'monitor': 2.0, 'the': 6.0, 'great': 1.0, 'what': 1.0, 'her': 1.0, 'works': 1.0, 'can': 1.0, 'reception': 1.0, 'if': 1.0, 'child': 1.0, 'i': 2.0, 'with': 1.0, 'only': 1.0, 'a': 1.0, 'see': 1.0, 'while': 1.0, 'am': 1.0}
Word element => {'expensive': 1.0, 'are': 1.0, 'that': 1.0, 'some': 1.0, 'good': 1.0, 'for': 2.0, 'way': 1.0, 'you': 1.0, 'than': 1.0, 'gift': 1.0, 'product': 1.0, 'bought': 1.0, 'my': 1.0, 'more': 1.0, 'ones': 1.0, 'the': 4.0, 'friend': 1.0, 'see': 1.0, 'a': 1.0, 'as': 3.0, 'modes': 1.0, 'and': 1.0, 'twice': 1.0, 'item': 1.0, 'most': 1.0, 'loved': 1.0, 'price': 1.0, 'baby': 1.0, 'she': 1.0, 'bigger': 1.0, 'i': 1.0, 'screen': 1.0, 'shower': 1.0, 'this': 1.0, 'it': 3.0, 'of': 1.0, 'says': 1.0, 'has': 1.0, 'many': 1.0, 'is': 2.0}
Word element => {'nursery': 1.0, 'your': 1.0, 'not': 1.0, 'does': 1.0, 'power': 1.0, 'when': 2.0, 'no': 1.0, 'use': 1.0, 'machine': 2.0, 'to': 3.0, 'our': 3.0, 'since': 1.0, 'easy': 1.0, 'surprisingly': 1.0, 'used': 1.0, 'apartment': 1.0, 'house': 2.0, 'an': 1.0, 'consider': 1.0, 'with': 2.0, 'this': 2.0, 'it': 3.0, 'and': 4.0, 'were': 1.0, 'pieces': 1.0, 'are': 1.0, 'limited': 1.0, 'depend': 1.0, 'great': 1.0, 'logistics': 1.0, 'vision': 1.0, 'is': 2.0, 'quality': 1.0, 'noise': 2.0, 'monitor': 4.0, 'picture': 1.0, 'wouldn': 1.0, 'didn': 1.0, 'bedroom': 1.0, 'for': 1.0, 'overseas': 1.0, 'expensive': 1.0, 'initially': 1.0, 'more': 1.0, 'babies': 1.0, 'that': 1.0, 'problems': 1.0, 'source': 1.0, 'worked': 1.0, 'white': 2.0, 'out': 1.0, 'a': 4.0, 'we': 7.0, 's': 2.0, 'sound': 1.0, 'up': 4.0, 'don': 1.0, 'child': 1.0, 'lightweight': 1.0, 'so': 1.0, 'while': 1.0, 'needs': 1.0, 'pick': 2.0, 'sounds': 1.0, 'setting': 1.0, 'picks': 1.0, 'live': 1.0, 'have': 2.0, 'transformers': 1.0, 'bigger': 1.0, 'clear': 1.0, 'if': 1.0, 'had': 1.0, 'would': 1.0, 't': 3.0, 'separate': 1.0, 'two': 1.0, 'well': 1.0, 'i': 2.0, 'the': 11.0, 'of': 1.0, 'equipment': 1.0, 'though': 1.0, 'possible': 1.0, 'problem': 1.0, 'but': 1.0, 'cannot': 1.0, 'on': 1.0, 'you': 1.0, 'night': 1.0, 'cries': 1.0, 'overall': 1.0, 'in': 4.0, 'm': 1.0, 'glad': 1.0, 'buy': 1.0, 'happy': 1.0, 'one': 1.0, 'just': 1.0, 'need': 1.0}
Word element => {'ok': 1.0, '2': 1.0, 'it': 2.0, 'month': 1.0, 'thou': 1.0, 'bad': 1.0, 'but': 2.0, 'breaks': 1.0, 'kept': 1.0, 'a': 1.0, 'doesn': 1.0, 'months': 1.0, 'about': 1.0, 'tilt': 1.0, 'have': 1.0, 't': 1.0, 'working': 1.0, 'and': 2.0, 'stopped': 1.0, 'would': 1.0, 'not': 2.0, 'after': 1.0}
Word element => {'for': 1.0, 'kids': 1.0, 'you': 1.0, 'monitory': 1.0, 'it': 2.0, 'thanks': 1.0, 'skill': 1.0, 'good': 2.0, 'item': 1.0, 'very': 1.0, 'and': 1.0, 'is': 2.0, 'a': 1.0, 'to': 2.0, 'easy': 1.0, 'use': 1.0}
Word element => {'money': 1.0, 'get': 1.0, 'mine': 1.0, 'english': 1.0, 'one': 1.0, 'owners': 2.0, 'was': 3.0, 'it': 2.0, 'manual': 2.0, 'with': 1.0, 'came': 1.0, 'is': 2.0, 'monitor': 1.0, 'and': 2.0, 'tried': 1.0, 'for': 1.0, 'cheap': 1.0, 'i': 4.0, 'the': 4.0, 'made': 1.0, 'of': 1.0, 'received': 1.0, 'plastic': 1.0, 'to': 2.0, 'all': 2.0, 'able': 1.0, 'back': 1.0, 'check': 1.0, 'when': 1.0, 'written': 1.0, 'in': 1.0, 'broken': 1.0, 'translated': 1.0, 'does': 1.0, 'poorly': 1.0, 'not': 1.0, 'help': 1.0, 'at': 1.0, 'material': 1.0, 'customer': 1.0, 'guidance': 1.0, 'happy': 1.0, 'thing': 1.0, 'about': 1.0, 'typos': 1.0, 'amazons': 1.0, 'many': 1.0, 'service': 1.0, 'thank': 1.0, 'my': 1.0, 'goodness': 1.0}
Word element => {'reccommended': 1.0, 'worth': 1.0, 'still': 1.0, 'estimated': 1.0, 'than': 1.0, 'handy': 1.0, 'delivery': 1.0, 'and': 1.0, 'but': 1.0, 'quality': 1.0, 'my': 1.0, 'the': 4.0, 'awesome': 1.0, 'babies': 1.0, 'already': 1.0, 'use': 1.0, 'vision': 1.0, 'even': 1.0, 'wait': 1.0, 'room': 1.0, 'longer': 1.0, 'is': 2.0, 'for': 1.0, 'love': 1.0, 'come': 1.0, 'this': 1.0, 'it': 1.0, 'way': 1.0, 'took': 1.0, 'i': 2.0, 'night': 1.0, 'amazing': 1.0, 'in': 2.0, 'camera': 1.0, 'sound': 1.0, 'two': 1.0, 'has': 1.0}
Word element => {'life': 1.0, 'sound': 1.0, 'did': 1.0, 'better': 1.0, 'am': 1.0, 'reviews': 1.0, 'paid': 1.0, 'and': 2.0, 'monitor': 4.0, 'battery': 1.0, 'about': 1.0, 'the': 2.0, 'great': 3.0, 'this': 4.0, 'it': 2.0, 'not': 2.0, 'knowing': 1.0, 'what': 1.0, 'works': 1.0, 'was': 1.0, 'i': 5.0, 'expect': 2.0, 'of': 2.0, 'bought': 1.0, 'one': 1.0, 'love': 1.0, 'for': 1.0, 't': 1.0, 'a': 2.0, 'lot': 2.0, 'less': 1.0, 'having': 1.0, 'because': 2.0, 'than': 2.0, 'any': 1.0, 'to': 2.0, 'all': 1.0, 'glad': 1.0, 'monitors': 1.0, 'have': 1.0, 'other': 1.0, 'but': 1.0, 'so': 1.0, '150': 1.0, 'bad': 1.0, 'nothing': 1.0, 'didn': 1.0, 'picture': 1.0, 'say': 1.0, 'is': 3.0}
Word element => {'her': 1.0, 'in': 1.0, 'still': 1.0, 'stupid': 1.0, 'daughter': 1.0, 'could': 1.0, 'choked': 1.0, 'my': 1.0, 'made': 1.0, 'product': 1.0, 'thing': 1.0, 'have': 1.0, 'not': 1.0, 'would': 1.0, 'after': 1.0, 'mouth': 1.0, 'throw': 1.0, 'on': 1.0, 'chews': 1.0, 'i': 1.0, 'up': 1.0, 'this': 2.0, 'with': 1.0, 'it': 2.0, 'only': 1.0, 'a': 1.0, 'few': 1.0, 'recommend': 1.0, 'she': 1.0}
Word element => {'pleased': 1.0, 'gums': 1.0, 'on': 1.0, 'course': 1.0, 'of': 1.0, 'moves': 1.0, 'very': 1.0, 'and': 1.0, 'like': 1.0, 'bought': 1.0, 'the': 1.0, 'my': 1.0, 'almost': 1.0, 'for': 1.0, '6': 1.0, 'old': 1.0, 'this': 1.0, 'loves': 1.0, 'way': 1.0, 'month': 1.0, 'it': 3.0, 'she': 3.0}
Word element => {'rid': 1.0, 'for': 1.0, 'these': 1.0, 'they': 1.0, 'are': 1.0, 'a': 1.0, 'of': 1.0, 'really': 1.0, 'at': 1.0, 'i': 1.0, 'cheaper': 1.0, 'and': 1.0, 'hair': 1.0, 'pet': 1.0, 'getting': 1.0, 'great': 1.0, 'sticky': 1.0, 'price': 1.0, 'use': 1.0, 'walmart': 1.0, 'than': 1.0}
Word element => {'hair': 1.0, 'on': 1.0, 'cat': 2.0, 'they': 1.0, 'has': 1.0, 'who': 1.0, 'mom': 1.0, 'be': 1.0, 'to': 2.0, 'able': 1.0, 'work': 2.0, 'handles': 1.0, 'it': 1.0, 'nice': 1.0, 'a': 1.0, 'refills': 1.0, 'and': 2.0, 'get': 1.0, 'great': 2.0, 'these': 1.0, 'the': 2.0, 'my': 1.0, 'so': 1.0, 'got': 1.0, 's': 1.0, 'you': 1.0, 'reuse': 1.0, 'can': 1.0, 'plastic': 1.0, 'them': 1.0, 'for': 1.0}
Word element => {'they': 1.0, 'work': 1.0, 'and': 1.0, 'home': 1.0, 'lint': 1.0, 'to': 1.0, 'are': 1.0, 'rollers': 1.0, 'pic': 1.0, 'helpful': 1.0, 'great': 1.0, 'these': 1.0, 'have': 1.0, 'up': 2.0, 'always': 1.0, 'it': 1.0, 'quick': 1.0, 's': 1.0, 'floors': 1.0, 'handy': 2.0, 'one': 1.0, 'for': 1.0, 'a': 1.0, 'them': 1.0, 'clean': 1.0, 'i': 1.0, 'keep': 1.0, 'on': 1.0, 'two': 1.0, 'at': 2.0}
Word element => {'good': 1.0, 'pretty': 1.0, 'and': 3.0, 'up': 1.0, 'two': 1.0, 'grey': 1.0, 'price': 1.0, 'sticky': 1.0, 'rollers': 2.0, 'cat': 1.0, 'are': 2.0, 'lint': 2.0, 'we': 1.0, 'cats': 1.0, 'white': 1.0, 'pick': 1.0, 'have': 1.0, 'the': 1.0, 'these': 3.0, 'they': 1.0, 'one': 2.0, 'love': 1.0, 'hair': 1.0, 'really': 1.0, 'well': 1.0, 'a': 1.0}
Word element => {'damage': 1.0, 'it': 1.0, 'items': 1.0, 'a': 1.0, 'throw': 1.0, 'if': 1.0, 'near': 1.0, 'them': 3.0, 'put': 1.0, 'sticky': 1.0, 'now': 1.0, 'buy': 1.0, 'll': 1.0, 'one': 1.0, 'used': 1.0, 'bag': 1.0, 'wanted': 1.0, 'just': 1.0, 'you': 2.0, 'when': 1.0, 'come': 1.0, 'so': 1.0, 'time': 1.0, 'places': 1.0, 'hair': 1.0, 'of': 3.0, 'like': 1.0, 'which': 1.0, 'evercare': 1.0, 'everywhere': 1.0, 'cleanly': 1.0, 'cats': 1.0, 'to': 1.0, 'all': 1.0, 'have': 1.0, 'disappointed': 1.0, 'in': 3.0, 'means': 1.0, 'very': 2.0, 'two': 3.0, 'i': 6.0, 'tried': 1.0, 'other': 2.0, 'careful': 1.0, 'the': 4.0, 'these': 1.0, 'be': 1.0, 'rollers': 3.0, 'lots': 1.0, 'and': 2.0, 'only': 1.0, 'do': 1.0, 'that': 2.0, 'been': 1.0, 'rip': 3.0, 'keep': 1.0, 'experienced': 1.0, 'is': 1.0, 'annoyed': 1.0, 'sheets': 2.0, 'house': 1.0, 'off': 4.0, 'rarely': 1.0, 'multiples': 1.0, 'what': 1.0, 'had': 1.0, 'was': 1.0, 'indoor': 1.0, 'with': 2.0, 'handy': 1.0, 'brand': 2.0, 've': 1.0, 'lint': 2.0, 'would': 1.0, 'may': 1.0, 'another': 1.0, 'my': 1.0, 'often': 1.0}
Word element => {'time': 1.0, 'the': 1.0, 'rub': 1.0, 'to': 1.0, 'you': 1.0, 'that': 1.0, 'cats': 1.0, 'i': 1.0, 'we': 1.0, 'have': 1.0, 'every': 1.0, 'all': 1.0, 'against': 1.0, 'use': 1.0, 'day': 1.0, 'like': 1.0, 'and': 1.0, 'since': 1.0, 'a': 1.0, 'these': 1.0, 'dog': 1.0}
Word element => {'roller': 1.0, 'size': 1.0, 'standard': 1.0, 'on': 1.0, 'fit': 1.0, 'doesn': 1.0, 'it': 1.0, 'so': 1.0, 'rolls': 1.0, 'scotch': 1.0, 'are': 3.0, 'rollers': 1.0, 'like': 1.0, 'of': 1.0, 'note': 1.0, 'kinds': 1.0, 'big': 1.0, 'from': 1.0, 'best': 1.0, 'you': 1.0, 'all': 1.0, 'than': 1.0, 'used': 1.0, 've': 1.0, 't': 1.0, 'the': 4.0, 'more': 1.0, 'these': 2.0, 'ones': 1.0, 'i': 1.0, 'tape': 1.0, 'super': 1.0, 'masking': 1.0, 'sticky': 2.0, 'ish': 1.0, 'get': 1.0, 'and': 1.0, 'vinyl': 1.0}
Word element => {'furniture': 1.0, 'of': 1.0, 'various': 1.0, 'lay': 1.0, 'likes': 1.0, 'kitty': 1.0, 'my': 1.0, 'because': 1.0, 'delivery': 1.0, 'was': 1.0, 'use': 1.0, 'fine': 1.0, 'pieces': 1.0, 'on': 1.0, 'is': 1.0, 'and': 1.0, 'this': 1.0, 'to': 1.0, 'product': 1.0, 'something': 1.0, 'everyday': 1.0, 'i': 1.0}
Word element => {'well': 1.0, 'about': 1.0, 'worry': 1.0, 'but': 1.0, 'set': 1.0, 'wanted': 1.0, 'really': 1.0, 'should': 1.0, 'enough': 1.0, 'that': 3.0, 'measurements': 1.0, 'indicated': 1.0, 'even': 1.0, 'long': 1.0, 'because': 1.0, 'the': 6.0, 'sewn': 1.0, 'are': 3.0, 'on': 3.0, 'being': 1.0, 'retie': 1.0, 'full': 1.0, 'this': 2.0, 'pleats': 1.0, 'it': 2.0, 'quite': 1.0, 'up': 1.0, 'though': 1.0, 'plus': 1.0, 'very': 1.0, 'in': 1.0, 'cannot': 1.0, 'ends': 1.0, 'ended': 1.0, 'also': 1.0, 'will': 1.0, 'fact': 1.0, 'my': 1.0, 'window': 1.0, 'so': 2.0, 'not': 1.0, 'poorly': 1.0, 'uneven': 1.0, 'and': 2.0, 'fixed': 1.0, 'as': 1.0, 'to': 1.0, 'you': 1.0, 'untie': 1.0, 'quality': 1.0, 'them': 1.0, 'fit': 1.0, 'bows': 1.0, 'sad': 1.0, 'i': 3.0, 'have': 1.0, 'return': 1.0}
Word element => {'brand': 1.0, 'from': 1.0, 'again': 1.0, 'definitely': 1.0, 'would': 1.0, 'superb': 1.0, 'is': 1.0, 'quality': 1.0, 'themey': 1.0, 'too': 1.0, 'making': 1.0, 'without': 1.0, 'princess': 1.0, 'of': 1.0, '34': 2.0, 'set': 1.0, 'sam': 1.0, 'fabrics': 1.0, 'girl': 1.0, 'room': 2.0, 'baby': 2.0, 'my': 2.0, 'the': 5.0, 'made': 1.0, 'nursery': 1.0, 'aqua': 1.0, 'art': 1.0, 'love': 2.0, 'this': 1.0, 'with': 1.0, 'it': 1.0, 'fit': 1.0, 'buy': 1.0, 'whole': 1.0, 'i': 2.0, 'wall': 1.0, 's': 1.0, 'so': 1.0, 'magical': 1.0, 'and': 2.0, 'pixie': 1.0, 'in': 1.0, 'all': 1.0}
Word element => {'aqua': 1.0, 'sam': 1.0, 'pink': 1.0, 'baby': 2.0, 'pixie': 1.0, 'on': 1.0, '34': 2.0, 'again': 1.0, 'review': 1.0, 'wife': 1.0, 'and': 2.0, 'read': 1.0, 'our': 1.0, 'i': 2.0, 'about': 1.0, 'the': 2.0, 'my': 2.0, 'are': 1.0, 'did': 1.0, 'excited': 1.0, 'first': 1.0, 'rug': 1.0, 'so': 1.0}
Word element => {'like': 1.0, 'just': 1.0, 'as': 1.0, 'works': 1.0, 'happier': 1.0, 'the': 1.0, 't': 1.0, 'saw': 1.0, 'item': 1.0, 'she': 1.0, 'picture': 1.0, 'september': 1.0, 'on': 1.0, 'in': 2.0, 'wife': 1.0, 'due': 1.0, 'my': 1.0, 'looks': 1.0, 'is': 1.0, 'amazon': 1.0, 'product': 1.0, 'be': 1.0, 'fell': 1.0, 'love': 1.0, 'advertised': 1.0, 'this': 2.0, 'with': 1.0, 'it': 2.0, 'we': 1.0, 'received': 1.0, 'week': 1.0, 'a': 1.0, 'later': 1.0, 'and': 3.0, 'couldn': 1.0}
Word element => {'nursery': 1.0, 'in': 1.0, 'looks': 1.0, 'am': 1.0, 'fast': 1.0, 'very': 1.0, 'shipping': 1.0, 'like': 1.0, 'just': 1.0, 'pleased': 1.0, 'soft': 1.0, 's': 1.0, 'worth': 1.0, 'so': 1.0, 'shot': 1.0, 'reviews': 1.0, 'and': 5.0, 'baby': 1.0, 'our': 1.0, 'long': 1.0, 'bedding': 1.0, 'gorgeous': 1.0, 'a': 2.0, 'time': 1.0, 'for': 3.0, 'amazing': 1.0, 'girl': 1.0, 'i': 5.0, 'too': 1.0, 'gave': 1.0, 'when': 1.0, 'saw': 1.0, 'have': 1.0, 'was': 2.0, 'had': 1.0, 'to': 1.0, 'with': 1.0, 'looked': 1.0, 'this': 1.0, 'it': 6.0, 'despite': 1.0, 'some': 1.0, 'set': 1.0, 'of': 1.0, 'photos': 1.0, 'negative': 1.0, 'the': 4.0}
Word element => {'bed': 1.0, 'her': 1.0, 'colors': 1.0, 'with': 1.0, 'happier': 1.0, 'looks': 1.0, 'we': 1.0, 'like': 1.0, 'the': 2.0, 'perfectly': 1.0, 'it': 3.0, 'love': 1.0, 'picture': 1.0, 'exactly': 1.0, 'be': 1.0, 'couldn': 1.0, 'fit': 1.0, 't': 1.0}
Word element => {'it': 1.0, 'returned': 1.0, 'disappointed': 1.0, 'incredibly': 1.0, 'picture': 1.0, 'i': 4.0, 'bright': 1.0, 'pictures': 1.0, 'colorful': 1.0, 'loved': 1.0, 'all': 1.0, 'but': 1.0, 'product': 1.0, 'received': 1.0, 'not': 1.0, 'was': 2.0, 'the': 3.0, 'nearly': 1.0, 'and': 1.0, 'as': 2.0}
Word element => {'still': 1.0, 'they': 1.0, 'regardless': 1.0, 'am': 1.0, 'but': 1.0, 'room': 1.0, 'person': 1.0, 'in': 2.0, 'seen': 1.0, 'if': 1.0, 'have': 1.0, 'not': 1.0, 'and': 1.0, 'very': 1.0, 'like': 1.0, 'thought': 1.0, 'i': 6.0, 'wood': 1.0, 'of': 1.0, 'really': 1.0, 'them': 4.0, 'made': 1.0, 'are': 1.0, 'light': 1.0, 'baby': 1.0, 'price': 2.0, 'great': 1.0, 'the': 2.0, 'these': 1.0, 'look': 1.0, 'had': 1.0, 'was': 1.0, 'for': 2.0, 'what': 1.0, 'however': 2.0, 'keeping': 1.0, 'purchased': 1.0, 'got': 1.0, 'my': 1.0, 'high': 1.0, 'anyways': 1.0, 'may': 1.0}
Word element => {'her': 1.0, 'my': 1.0, 'the': 3.0, 'mitt': 1.0, 'child': 1.0, 'interaction': 1.0, 'for': 1.0, 'book': 2.0, 'is': 1.0, 'on': 1.0, 'exceptional': 1.0, 'a': 1.0, 'had': 2.0, 'granddaughter': 1.0, 'to': 2.0, 'with': 2.0, 'this': 1.0, 'first': 1.0, 'sleep': 1.0, 's': 1.0, 'several': 1.0, 'nights': 1.0, 'she': 1.0, 'read': 1.0}
Word element => {'will': 1.0, 'install': 1.0, 'easy': 1.0, 'great': 1.0, 'were': 1.0, 'is': 2.0, 'home': 1.0, 'looking': 1.0, 'chart': 1.0, 'to': 1.0, 'exactly': 1.0, 'and': 3.0, 'the': 1.0, 'my': 1.0, 'in': 1.0, 'look': 1.0, 'for': 1.0, 'wife': 1.0, 'growth': 1.0, 'what': 1.0, 'your': 1.0, 'beautiful': 1.0, 'i': 1.0}
Word element => {'their': 1.0, 'for': 1.0, 'but': 1.0, 'service': 1.0, 'horrible': 1.0, 'product': 2.0, 'buy': 1.0, 'i': 1.0, 'by': 1.0, 'replaced': 1.0, 'never': 1.0, 's': 1.0, 'co': 2.0, 'replacement': 1.0, 'the': 3.0, 'crappy': 2.0, 'this': 1.0, 'kent': 2.0, 'great': 1.0, 'works': 1.0, 'pilot': 2.0, 'way': 1.0, 'hitch': 1.0}
Word element => {'icing': 1.0, 'and': 1.0, 'butterflies': 1.0, 'space': 1.0, 'have': 1.0, 'this': 2.0, 'dragonflies': 1.0, 'on': 2.0, 'is': 2.0, 'much': 1.0, 'the': 4.0, 'more': 1.0, 'wall': 1.0, 'expected': 1.0, 'then': 1.0, 'beautiful': 1.0, 'i': 2.0, 'cake': 1.0, 'perfectly': 1.0, 'fills': 1.0, 'it': 1.0, 'in': 1.0}
Word element => {'dried': 1.0, 'air': 1.0, 'even': 1.0, 'shrank': 1.0, 'five': 1.0, 'and': 2.0, 'on': 1.0, 'to': 1.0, 'lot': 1.0, 'easy': 1.0, 'cover': 1.0, 'is': 1.0, 'really': 1.0, 'washing': 1.0, 'because': 1.0, 'seat': 1.0, 'put': 1.0, 'with': 1.0, 'it': 3.0, 'only': 1.0, 'this': 1.0, 'a': 2.0, 'i': 3.0, 'stars': 1.0, 'soft': 1.0, 'love': 1.0, 'one': 1.0, 'for': 1.0, 'my': 1.0, 't': 1.0, 'the': 1.0, 'didn': 1.0, 'give': 1.0, 'little': 1.0, 'reason': 1.0}
Word element => {'dry': 1.0, 'cycle': 1.0, 'detergent': 1.0, 'gentle': 1.0, 'some': 1.0, 'fadded': 1.0, 'only': 1.0, 'child': 1.0, '8': 1.0, 'use': 2.0, 'out': 1.0, 'bag': 1.0, 'to': 2.0, 'seat': 1.0, '2nd': 1.0, 'pockets': 1.0, 'big': 1.0, 'can': 1.0, 'baby': 1.0, 'everything': 1.0, 'problem': 1.0, 'chair': 1.0, 'low': 1.0, 'high': 1.0, 'every': 1.0, 'about': 1.0, 'oversized': 1.0, 'pull': 1.0, 'daughter': 1.0, 'head': 2.0, 'was': 2.0, 'matching': 1.0, 'banged': 2.0, 'thin': 1.0, 'now': 3.0, 'had': 1.0, 'after': 1.0, 'love': 1.0, 'fit': 1.0, 'for': 1.0, 'i': 7.0, 'brand': 1.0, 'old': 2.0, 'reach': 1.0, 'without': 1.0, 'the': 5.0, 'another': 1.0, 'my': 2.0, 'other': 1.0, 'with': 2.0, 'plush': 2.0, 'first': 1.0, 'that': 3.0, '5': 1.0, 'year': 1.0, 'cover': 2.0, 'crying': 1.0, 'very': 1.0, 'leaned': 1.0, 'back': 1.0, 'so': 4.0, 'time': 1.0, 'cart': 2.0, 'too': 1.0, 'and': 7.0, 'negative': 1.0, 'her': 2.0, 'washed': 1.0, 'on': 2.0, 'month': 1.0, 'covers': 1.0, 'it': 7.0, 'she': 3.0, 'felt': 1.0, 'is': 3.0, 'bad': 1.0, 'one': 1.0, 'bought': 2.0, 'hysterical': 1.0, 'because': 1.0, 'soft': 1.0, 'this': 2.0, 'full': 1.0, 'when': 1.0, 'am': 1.0, 'again': 1.0, 'never': 1.0}
Word element => {'worry': 1.0, 'thin': 1.0, 'like': 1.0, 'head': 1.0, 'because': 1.0, 'for': 1.0, 'love': 1.0, 'one': 2.0, 'is': 1.0, 'really': 1.0, 'padding': 1.0, 'that': 1.0, 'accidentally': 1.0, 'from': 1.0, 'seat': 1.0, 'as': 1.0, 'son': 2.0, 'a': 3.0, 't': 1.0, 'these': 1.0, 'the': 1.0, 'this': 3.0, 'nook': 1.0, 'company': 1.0, 'my': 3.0, 'friend': 1.0, 'i': 3.0, 'has': 2.0, 'cart': 1.0, 'makes': 1.0, 'of': 2.0, 'much': 1.0, 'if': 1.0, 'falls': 1.0, 'very': 1.0, 'little': 1.0, 'don': 1.0, 'over': 1.0, 'on': 1.0, 'or': 1.0, 'different': 1.0, 'good': 1.0, 'bangs': 1.0, 'his': 1.0, 'amount': 1.0, 'back': 1.0, 'cover': 1.0, 'and': 1.0, 'comfy': 1.0}
Word element => {'great': 1.0, 'was': 1.0, 'overall': 1.0, 'cloth': 1.0, 'many': 1.0, 'also': 1.0, 'back': 1.0, 'fold': 1.0, 'get': 1.0, 'easy': 1.0, 'toys': 1.0, 'bag': 2.0, 'just': 1.0, 'chance': 1.0, 'when': 2.0, 'travel': 1.0, 'use': 2.0, 'gladly': 1.0, 'high': 1.0, 'yet': 1.0, 'restaurant': 1.0, 'in': 3.0, 'used': 1.0, 's': 1.0, 'a': 5.0, 't': 1.0, 'haven': 1.0, 'ease': 1.0, 'lots': 1.0, 'baby': 1.0, 'the': 7.0, 'because': 1.0, 'find': 2.0, 'hang': 1.0, 'bought': 1.0, 'really': 1.0, 'material': 1.0, 'plush': 1.0, 'as': 1.0, 'to': 3.0, 'reading': 1.0, 'of': 2.0, 'product': 2.0, 'for': 1.0, 'has': 1.0, 'review': 1.0, 'i': 9.0, 'and': 6.0, 'do': 1.0, 'research': 1.0, 'with': 4.0, 'it': 6.0, 'happy': 2.0, 'cart': 1.0, 'shopping': 1.0, 'have': 1.0, 'must': 1.0, 'very': 1.0, 'cover': 5.0, 'on': 2.0, 'over': 1.0, 'd': 1.0, 'best': 1.0, 'm': 2.0, 'cushy': 1.0, 'my': 4.0, 'fits': 1.0, 'purchase': 2.0, 'but': 1.0, 'money': 1.0, 'most': 1.0, 'comes': 1.0, 'say': 1.0, 'is': 1.0, 'so': 2.0, 'based': 1.0, 'this': 2.0, 'soft': 1.0, 'chair': 1.0, 'larger': 1.0, 'that': 2.0, 'loves': 1.0, 'not': 1.0, 'supermarket': 1.0, 'at': 1.0, 'carts': 1.0, 'tabs': 1.0, 'costco': 1.0}
Word element => {'my': 1.0, 'definitely': 1.0, 'is': 1.0, 'works': 1.0, 'great': 1.0, 'for': 1.0, 'in': 1.0, 'and': 2.0, 'any': 1.0, 'baby': 1.0, 'plush': 1.0, 'cart': 1.0, 'soft': 1.0, 'high': 1.0, 'chairs': 1.0, 'comfy': 1.0, 'restaurant': 1.0, 'this': 1.0, 'fabric': 1.0}
Word element => {'fit': 1.0, 'didn': 1.0, 'but': 1.0, 'all': 1.0, 'baby': 1.0, 'afraid': 1.0, 'was': 1.0, 'love': 1.0, 'one': 1.0, 'this': 1.0, 'it': 3.0, 'order': 1.0, 'shopping': 1.0, 'cart': 1.0, 'i': 2.0, 'guess': 1.0, 'even': 1.0, 'does': 1.0, 'what': 1.0, 't': 1.0, 'the': 1.0, 'my': 1.0, 'costco': 1.0, 'carts': 1.0, 'and': 1.0}
Word element => {'recommend': 1.0, 'highly': 1.0, 'high': 1.0, 'of': 1.0, 'all': 1.0, 'fits': 1.0, 'seat': 1.0, 'floppy': 1.0, 'carts': 2.0, 'costco': 1.0, 'on': 2.0, 'larger': 1.0, 'soft': 1.0, 'and': 4.0, 'wasn': 1.0, 'is': 2.0, 'chairs': 1.0, 'stays': 1.0, 'one': 1.0, 'i': 1.0, 'cover': 2.0, 'target': 1.0, 'cart': 2.0, 'but': 1.0, 'put': 1.0, 'before': 1.0, 'great': 2.0, 'the': 3.0, 't': 1.0, 'kept': 1.0, 'it': 2.0, 'this': 2.0, 'moving': 1.0, 'big': 1.0, 'fit': 1.0, 'around': 1.0, 'enough': 1.0, 'had': 1.0, 'to': 1.0}
Word element => {'expense': 1.0, 'worth': 1.0, 'item': 1.0, 'easy': 1.0, 'normal': 1.0, 'seat': 1.0, 'to': 1.0, 'shopping': 1.0, 'and': 3.0, 'fine': 1.0, 'i': 1.0, 'the': 6.0, 'this': 1.0, 'with': 2.0, 'carts': 1.0, 'slip': 2.0, 'huge': 1.0, 'bought': 1.0, 'my': 1.0, 'it': 8.0, 'covers': 1.0, 't': 1.0, 'ago': 1.0, 'a': 2.0, 'just': 2.0, 'few': 1.0, 'weeks': 1.0, 'doesn': 1.0, 'daughter': 1.0, 'for': 2.0, 'where': 1.0, 'your': 1.0, 'put': 1.0, 'on': 1.0, 'great': 1.0, 'stays': 1.0, 'when': 1.0, 'you': 2.0, 'is': 2.0, 'finished': 1.0, 'off': 1.0, 'cover': 1.0, 'bag': 1.0, 'came': 1.0, 'fold': 1.0, 'child': 1.0, 'up': 1.0, 'stick': 1.0, 'have': 1.0, 'must': 1.0, 'in': 1.0, 'that': 1.0, 'definitely': 1.0}
Word element => {'shopping': 1.0, 'sitting': 1.0, 'bad': 1.0, 'that': 1.0, 'comfortable': 1.0, 'cozy': 1.0, 'babies': 1.0, 'and': 1.0, 'in': 1.0, 'worried': 1.0, 'for': 1.0, 'it': 1.0, 'money': 1.0, 'time': 1.0, 'having': 1.0, 'now': 1.0, 'is': 2.0, 'the': 1.0, 'not': 1.0, 'cart': 1.0, 'baby': 1.0, 'worth': 1.0}
Word element => {'much': 1.0, 'so': 1.0, 'and': 1.0, 'use': 1.0, 'can': 1.0, 'i': 1.0, 'on': 1.0, 'description': 1.0, 'in': 1.0, 'when': 1.0, 'liquid': 1.0, 'does': 1.0, 'no': 1.0, 't': 1.0, 'the': 1.0, 'cup': 1.0, 'my': 1.0, 'it': 5.0, 'despite': 1.0, '34': 2.0, 's': 1.0, 'side': 1.0, 'holds': 1.0, 'loves': 1.0, 'spills': 1.0, 'being': 1.0, 'like': 1.0, 'since': 1.0, 'a': 1.0, 'real': 1.0, 'fact': 1.0, 'spill': 2.0, 'toddler': 1.0, 'but': 1.0}
Word element => {'will': 1.0, 'pleased': 1.0, 'set': 1.0, 'for': 1.0, 'even': 1.0, 'that': 1.0, 'enjoys': 1.0, 'really': 1.0, '7': 1.0, 'be': 1.0, 'him': 1.0, 'do': 2.0, 'and': 3.0, 'satisfy': 1.0, 'hold': 1.0, 'transition': 1.0, 'tighten': 1.0, 'who': 1.0, 'enough': 3.0, 'fun': 2.0, 'two': 1.0, 'i': 4.0, 'liquid': 1.0, 'down': 1.0, 'from': 1.0, 'son': 1.0, 'ordered': 1.0, 'upside': 1.0, 'to': 6.0, 'cups': 1.0, 'daughter': 1.0, 'they': 5.0, 'these': 1.0, 'cup': 2.0, 'my': 2.0, 'are': 3.0, 'a': 3.0, 'have': 1.0, 'is': 1.0, 'say': 1.0, 'leak': 1.0, 'of': 4.0, 'again': 1.0, 'you': 2.0, 'regular': 1.0, 'turn': 1.0, 'sippy': 1.0, 'them': 3.0, 'clean': 1.0, 'out': 2.0, 'but': 1.0, 'then': 1.0, 'maybe': 1.0, 'did': 1.0, 'not': 1.0, 'colorful': 1.0, 'it': 1.0, 'easy': 1.0, 'drink': 2.0}
Word element => {'figure': 1.0, 'can': 1.0, 'til': 1.0, 'would': 1.0, 'did': 1.0, 'stars': 1.0, '5': 1.0, 'work': 1.0, 'but': 3.0, 'not': 1.0, 'just': 1.0, 'have': 1.0, 'i': 1.0, 'for': 1.0, 'given': 1.0, 'young': 1.0, 'the': 1.0, 'baby': 1.0, 'hang': 1.0, 'it': 1.0, 'he': 2.0, 'going': 1.0, 'too': 1.0, 'was': 1.0, 'to': 2.0, 'on': 1.0, 'out': 1.0, 'them': 1.0}
Word element => {'through': 1.0, 'have': 1.0, 'seem': 1.0, 'just': 1.0, 'edges': 1.0, 'and': 3.0, 'couple': 1.0, 'a': 1.0, 'out': 1.0, 'them': 1.0, 'up': 1.0, 'leak': 2.0, 'of': 1.0, 'some': 1.0, 'really': 1.0, 'good': 1.0, 'to': 1.0, 'wanted': 1.0, 'had': 1.0, 'i': 1.0, 'my': 1.0, 'ones': 1.0, 'these': 1.0, 'more': 1.0, 'the': 3.0, 'as': 1.0, 'son': 1.0, 'seep': 1.0, 'with': 1.0, 'however': 1.0, 'liquid': 1.0, 'before': 1.0, 'does': 1.0, 'orange': 1.0}
Word element => {'was': 1.0, 'when': 1.0, 'cup': 1.0, 'her': 1.0, '8': 1.0, 'we': 1.0, 'excellent': 1.0, 'these': 1.0, 'old': 2.0, 'product': 1.0, 'started': 1.0, 'my': 1.0, 'and': 1.0, 'only': 1.0, 'daughter': 1.0, 'this': 1.0, 'loves': 1.0, 'months': 2.0, 'cups': 1.0, 'she': 2.0, 'on': 1.0, '10': 1.0, 'is': 1.0}
Word element => {'like': 1.0, 'feels': 1.0, 'so': 1.0, 'baby': 1.0, 'not': 1.0, 's': 1.0, 'go': 1.0, 'for': 1.0, 'a': 3.0, 'on': 2.0, 'two': 1.0, 'pour': 1.0, 'out': 2.0, 'drink': 2.0, 'daughter': 1.0, 'cups': 1.0, 'old': 1.0, 'to': 1.0, 'spill': 1.0, 'but': 1.0, 'kid': 1.0, 'toddlers': 1.0, 'can': 1.0, 'this': 1.0, 'it': 2.0, 'big': 1.0, 'year': 1.0, 'cuts': 1.0, 'cup': 3.0, 'my': 2.0, 'great': 1.0, 'mess': 1.0, '99': 1.0, 'the': 2.0, 'loves': 1.0, 'down': 1.0, 'her': 1.0, 'proof': 1.0, 'grow': 1.0, 'of': 2.0, 'up': 1.0, 'regular': 1.0, 'is': 2.0}
Word element => {'sippy': 1.0, 'than': 1.0, 'better': 1.0, 'way': 1.0, 'immensely': 1.0, 'helped': 1.0, 'have': 1.0, 'old': 1.0, 'so': 1.0, 'clean': 1.0, 'cups': 2.0, 'never': 1.0, 'loves': 1.0, 'easy': 1.0, 'yr': 1.0, 'these': 2.0, '2': 1.0, 'regular': 1.0, 'is': 1.0, 'cup': 1.0, 'my': 1.0, 'and': 2.0, 'any': 1.0, 'now': 1.0, 'to': 2.0, 'had': 1.0, 'leak': 1.0, 'he': 1.0, 'learning': 1.0, 'drink': 1.0, 'from': 1.0, 'a': 1.0}
Word element => {'play': 1.0, 'button': 1.0, 'lid': 1.0, 'or': 1.0, 'cold': 1.0, 'one': 6.0, 'months': 2.0, 'bought': 1.0, '13': 1.0, 'since': 1.0, 'hot': 1.0, 'started': 3.0, 'i': 4.0, 'prior': 1.0, 'worthwhile': 1.0, 'every': 1.0, 'as': 1.0, 'likes': 1.0, 't': 2.0, 'discovered': 1.0, 'more': 1.0, 'thermos': 1.0, 'with': 4.0, 'it': 3.0, 'screw': 1.0, 'isn': 1.0, 'when': 2.0, 'daughter': 2.0, 'line': 1.0, 'head': 1.0, 'and': 4.0, 'green': 2.0, 'water': 1.0, 'up': 1.0, 'around': 1.0, 'nuisance': 1.0, 'infant': 1.0, 'straw': 1.0, 'so': 1.0, 'tip': 1.0, 'learns': 1.0, 'top': 3.0, 'needed': 1.0, 'at': 1.0, 'is': 6.0, 'handle': 1.0, 'cup': 5.0, 'begins': 1.0, 'pro': 1.0, 'drinking': 1.0, 'on': 2.0, 'flow': 1.0, 'had': 1.0, 'bit': 1.0, 'easy': 1.0, 'con': 1.0, 'control': 1.0, 'sometimes': 1.0, 'a': 3.0, 'slight': 1.0, 'small': 2.0, 'push': 1.0, 'you': 1.0, 'things': 1.0, 'size': 3.0, 'wish': 1.0, 'this': 1.0, 'correctly': 1.0, '8': 1.0, 'switched': 1.0, 'to': 7.0, 'pretty': 1.0, 'only': 2.0, 'quickly': 1.0, 'real': 1.0, 'we': 3.0, 'difference': 1.0, 'in': 2.0, 'weight': 1.0, 'haven': 1.0, 'that': 2.0, 'has': 1.0, 'them': 1.0, 'recommendation': 1.0, 'next': 1.0, 'reason': 1.0, 'late': 1.0, 'keeps': 1.0, 'medium': 2.0, 'would': 1.0, 'be': 1.0, 'flip': 1.0, 'standard': 1.0, 'better': 1.0, 'toddler': 1.0, 'year': 1.0, 'now': 1.0, 'the': 13.0, 'of': 2.0, 'gift': 1.0, 'items': 1.0, 'other': 1.0, 'parents': 1.0, 'foogo': 1.0, 'shopping': 1.0, 'my': 3.0, 'me': 1.0}
Word element => {'glad': 1.0, 'added': 1.0, 'some': 1.0, 'quite': 1.0, 'etc': 1.0, 'hand': 1.0, 'on': 1.0, 'several': 1.0, 'done': 1.0, 'almost': 1.0, 'figure': 1.0, 'like': 1.0, 'us': 1.0, 'since': 1.0, 'hooked': 1.0, 'drink': 1.0, 'next': 1.0, 'than': 1.0, 'bit': 1.0, 'into': 1.0, 'turned': 1.0, 'anything': 1.0, 'couldn': 1.0, 'again': 2.0, 'd': 1.0, 'thought': 1.0, 'milk': 1.0, 'put': 1.0, 'starting': 1.0, 'first': 3.0, 'in': 4.0, 'plus': 1.0, 'major': 1.0, 'up': 1.0, 'at': 2.0, 'ring': 1.0, 'has': 2.0, 'clean': 3.0, 'use': 3.0, 'stretch': 1.0, 'bonus': 1.0, 'wash': 2.0, 'years': 1.0, 'no': 3.0, 'leaking': 1.0, 'could': 2.0, 'will': 3.0, 'about': 3.0, 'now': 4.0, 'come': 1.0, 'once': 1.0, 'easier': 1.0, 'son': 5.0, 'returned': 1.0, 'out': 2.0, 'general': 1.0, 'do': 2.0, 'it': 10.0, 'be': 8.0, 'here': 2.0, 'so': 7.0, 'is': 5.0, 'can': 3.0, 'review': 2.0, 'original': 2.0, 'wrote': 1.0, 'essentially': 1.0, 'adults': 1.0, 'purchased': 1.0, 'worth': 1.0, '4': 1.0, 'seen': 1.0, 'cup': 5.0, 'i': 23.0, 'fyi': 1.0, 'would': 2.0, 'harboring': 1.0, 'as': 2.0, 'convince': 1.0, 'not': 5.0, 've': 1.0, 'down': 2.0, 'water': 2.0, 'table': 1.0, '30': 1.0, 'with': 3.0, 'using': 4.0, 'may': 1.0, 's': 4.0, 'cups': 5.0, 'giving': 1.0, 'story': 1.0, 't': 5.0, 'worrying': 1.0, 'these': 7.0, 'further': 1.0, 'spilling': 2.0, 'replacement': 1.0, '18': 3.0, 'same': 2.0, 'mention': 1.0, 'set': 3.0, 'the': 22.0, 'longer': 1.0, 'that': 4.0, 'been': 3.0, 'idea': 1.0, 'where': 1.0, 'your': 2.0, 'bed': 1.0, 'when': 1.0, 'you': 3.0, 'leak': 2.0, 'upside': 2.0, 'lids': 2.0, 'anywhere': 1.0, 'though': 2.0, 'part': 2.0, 'or': 1.0, 'possibly': 1.0, 'to': 26.0, 'them': 6.0, 'ribbed': 1.0, 'are': 3.0, 'my': 8.0, 'issues': 2.0, 'past': 1.0, 'work': 1.0, 'think': 1.0, 'open': 1.0, 'him': 1.0, 'he': 8.0, 'car': 2.0, 'yet': 1.0, '6': 1.0, 'plastic': 1.0, '8': 1.0, 'but': 4.0, 'let': 1.0, 'issue': 2.0, 'they': 3.0, 'great': 3.0, 'yes': 1.0, 'heck': 1.0, 'need': 1.0, 'sitting': 1.0, 'germs': 1.0, 'old': 2.0, 'of': 5.0, 'even': 3.0, 'took': 2.0, 'haven': 2.0, 'brought': 1.0, 'things': 1.0, 'myself': 1.0, 'lol': 1.0, 'truly': 1.0, '3': 1.0, 'too': 2.0, 'got': 3.0, 'one': 1.0, 'try': 3.0, 'p': 1.0, 'big': 1.0, 'much': 1.0, 'sippies': 4.0, 'spouts': 1.0, 'a': 7.0, 'disassembling': 1.0, 'reassembling': 1.0, 'from': 2.0, 'whenever': 1.0, 'straw': 3.0, 'getting': 1.0, 'way': 1.0, 'those': 2.0, 'weather': 2.0, 'have': 3.0, 'found': 2.0, 'update': 1.0, 'months': 5.0, 'read': 1.0, 'warmer': 1.0, 'liquid': 2.0, 'want': 1.0, 'below': 1.0, 'tips': 1.0, 'an': 4.0, 'get': 9.0, 'insulated': 1.0, 'version': 1.0, 'more': 1.0, 'speak': 1.0, 'trips': 1.0, 'excited': 1.0, 'and': 14.0, 'tried': 2.0, 'warm': 1.0, 'had': 3.0, 'ours': 1.0, 'hard': 1.0, 'keeping': 1.0, 'tells': 1.0, 'hold': 1.0, 'cooler': 1.0, 'point': 2.0, 'started': 1.0, 'how': 2.0, 'child': 2.0, 'used': 2.0, 'sick': 1.0, 'this': 3.0, 'for': 12.0, 'guess': 1.0, 'seconds': 2.0, 'before': 2.0, 'prime': 2.0, 'toss': 1.0, 'few': 3.0, 'times': 1.0, 'help': 1.0, 'works': 1.0, 'separate': 2.0, 'only': 1.0, 'time': 3.0, 'top': 1.0, 'did': 1.0, 'won': 1.0, 'ago': 2.0, 'two': 1.0, 'rubber': 1.0, 'was': 2.0, 'we': 3.0, 'take': 1.0, 'sippys': 1.0, 'nasty': 1.0, 'find': 1.0, 'something': 1.0, 'else': 1.0, 'still': 2.0, 'don': 1.0}
Word element => {'grandparents': 1.0, 'no': 1.0, 'there': 1.0, 'of': 1.0, 'as': 1.0, 'and': 1.0, 'any': 1.0, 'them': 2.0, 'a': 1.0, 'is': 1.0, 'love': 1.0, 'can': 1.0, 'without': 1.0, 'grandkids': 1.0, 'fuss': 1.0, 'in': 1.0, 'area': 1.0, 'spill': 1.0, 'house': 1.0, 'our': 1.0, 'they': 1.0, 'take': 1.0, 'my': 1.0, 'anywhere': 1.0}
Word element => {'very': 1.0, 'like': 1.0, 'feel': 1.0, 'go': 1.0, 'they': 1.0, 'that': 1.0, 'for': 1.0, 'are': 1.0, 'more': 1.0, 'the': 3.0, 'can': 1.0, 'great': 1.0, 'love': 1.0, 'grandkids': 1.0, 'sanitary': 1.0, 'dishwasher': 1.0, 'no': 1.0, 'spills': 1.0, 'clean': 1.0, 'i': 1.0, 'into': 1.0, 'easily': 1.0}
Word element => {'kind': 1.0, 'beverage': 1.0, 'put': 1.0, 'you': 1.0, 'if': 1.0, 'we': 1.0, 'of': 1.0, 'leak': 1.0, 'any': 1.0, 'only': 1.0, 'cups': 1.0, 'these': 1.0, 'they': 1.0, 'don': 1.0, 'except': 1.0, 't': 1.0, 'carbonated': 1.0, 'at': 1.0, 'inside': 1.0, 'use': 1.0, 'all': 1.0}
Word element => {'pocket': 1.0, 'bottle': 1.0, 'bag': 1.0, 'diaper': 1.0, '8': 1.0, 'hods': 1.0, 'parent': 1.0, 'every': 1.0, 'for': 1.0, 'this': 1.0, 'definitely': 1.0, 'is': 1.0, 'it': 2.0, 'fits': 1.0, 'lid': 1.0, 'good': 1.0, 'knock': 1.0, 'overs': 1.0, 'the': 4.0, 'these': 1.0, 'use': 1.0, 'had': 1.0, 'teaches': 1.0, 'normal': 1.0, 'or': 2.0, 'cup': 3.0, 'in': 1.0, 'dishwasher': 1.0, 'hand': 1.0, 'like': 1.0, '6': 1.0, 'recommend': 1.0, 'spill': 1.0, 'holder': 1.0, 'never': 1.0, 'and': 3.0, 'too': 1.0, 'one': 1.0, 'months': 1.0, 'oz': 1.0, 've': 1.0, 'would': 1.0, 'new': 1.0, 'conveniently': 1.0, 'i': 2.0, 'that': 1.0, 'wash': 1.0, 'child': 1.0, 'drink': 1.0, 'we': 2.0, 'a': 1.0, 'still': 2.0, 'tilting': 1.0, 'from': 2.0, 'while': 1.0, 'avoiding': 1.0, 'as': 2.0, 'to': 1.0, 'cups': 1.0, 'any': 2.0, 'of': 2.0, 'spout': 1.0, 'messes': 1.0, 'much': 1.0}
Word element => {'wonderful': 1.0, 'in': 2.0, 'this': 2.0, 'when': 1.0, 'many': 1.0, 'is': 3.0, 'leakage': 1.0, 'come': 1.0, 'went': 1.0, 'cup': 1.0, 's': 1.0, 'a': 2.0, 'the': 3.0, 'minimize': 1.0, 'above': 1.0, 'but': 1.0, 'grove': 1.0, 'will': 1.0, 'step': 1.0, 'i': 1.0, 'spilling': 1.0, 'out': 1.0, 'rest': 1.0, 'one': 1.0, 'have': 1.0, 'cups': 1.0, 'to': 1.0, 'all': 1.0, 'def': 1.0, 'does': 1.0, 'leak': 1.0, 'there': 1.0, 'not': 1.0, 'little': 1.0, 'very': 1.0, 'from': 1.0, 'only': 1.0, 'much': 1.0, 'at': 1.0, 'if': 1.0, 'and': 2.0, 'milk': 1.0, 'it': 2.0, 'she': 1.0, 'drinks': 1.0, 'that': 2.0, 'other': 1.0, 'through': 1.0, 'then': 1.0}
Word element => {'isn': 1.0, 'transitional': 1.0, 't': 1.0, 'great': 1.0, 'easily': 1.0, 'so': 1.0, 'leaky': 1.0, 'cleaning': 1.0, 'also': 1.0, 'apart': 1.0, '5': 1.0, 's': 1.0, 'within': 1.0, 'sippy': 1.0, 'daughter': 1.0, 'month': 1.0, 'this': 1.0, 'it': 3.0, 'for': 1.0, 'love': 1.0, '18': 1.0, 'cup': 2.0, 'my': 1.0, 'minutes': 1.0, 'very': 1.0, 'and': 1.0, 'to': 1.0, 'comes': 1.0, 'mastered': 1.0, 'easy': 1.0, 'use': 1.0, 'old': 1.0, 'i': 1.0, 'that': 1.0}
Word element => {'these': 1.0, 'we': 1.0, 'kit': 1.0, 'lunch': 1.0, 'inside': 1.0, 'my': 1.0, 'highly': 1.0, 'and': 1.0, 'kindergartener': 1.0, 'his': 2.0, 'fun': 1.0, 'cups': 2.0, 'spills': 1.0, 'loves': 1.0, 'colorful': 1.0, 'slender': 1.0, 'recommend': 1.0, 'of': 1.0, 'no': 1.0}
Word element => {'naturally': 1.0, 'took': 1.0, 'but': 1.0, 'out': 1.0, 'starting': 1.0, 'it': 1.0, 'trouble': 1.0, 'fantastic': 1.0, 'to': 1.0, 'product': 1.0, 'certain': 1.0, 'my': 1.0, 'she': 1.0, 'little': 2.0, 'i': 1.0, 'one': 1.0, 'was': 1.0, 'would': 1.0, 'have': 1.0, 'a': 1.0}
Word element => {'that': 1.0, 'our': 1.0, 'to': 1.0, 'specifically': 1.0, 'ordered': 1.0, 'i': 2.0, 'one': 3.0, 'two': 1.0, 'them': 1.0, 'arrived': 1.0, 'received': 1.0, 'confused': 1.0, 'day': 1.0, 'yellow': 2.0, 'but': 1.0, 'purple': 3.0, 'friends': 1.0, 'bought': 1.0, 'product': 1.0, 'however': 1.0, 'a': 1.0, 'ones': 1.0, 'the': 1.0, 'great': 1.0, 'with': 1.0, 'only': 1.0, 'it': 1.0, 'cups': 2.0, 'get': 1.0, 'and': 2.0, 'normally': 1.0, 'would': 1.0, 'early': 1.0, 'not': 2.0, 'have': 2.0, 'been': 1.0, 'problem': 1.0}
Word element => {'of': 1.0, 'out': 1.0, 'drinking': 1.0, 'time': 1.0, 'them': 1.0, 'a': 1.0, 'had': 1.0, 'kids': 1.0, 'my': 1.0, 'dripped': 1.0, 'not': 1.0, 'even': 1.0, 'still': 2.0, 'to': 1.0, 'tho': 1.0, 'it': 2.0, 'supposed': 1.0, 'and': 1.0, 'said': 1.0, 'hard': 1.0, 'its': 1.0}
Word element => {'turn': 1.0, 'purchase': 1.0, 'save': 1.0, 'than': 1.0, 'more': 1.0, 'better': 1.0, 'hopefully': 1.0, 'kick': 1.0, 'sassy': 1.0, 'design': 1.0, 'drinking': 1.0, 'original': 1.0, 'they': 2.0, 'have': 1.0, 'would': 1.0, 'glad': 1.0, 'yep': 1.0, 'two': 1.0, 'little': 1.0, 'took': 1.0, 'left': 1.0, 'house': 1.0, 'walked': 1.0, 'unless': 1.0, 'tray': 1.0, 'been': 1.0, 'highchair': 1.0, 'his': 1.0, 'problem': 1.0, 'he': 3.0, 'any': 1.0, 'couldn': 1.0, 'long': 1.0, 'try': 1.0, 'too': 1.0, 'all': 2.0, 'drink': 1.0, 'her': 1.0, 'did': 2.0, 'shake': 2.0, 'didn': 2.0, 'she': 1.0, 'year': 1.0, 'test': 3.0, 'sofa': 1.0, 'each': 1.0, 'almond': 1.0, 'us': 1.0, 'much': 1.0, 'wasting': 1.0, 'harder': 1.0, 'tip': 1.0, 'babiesrus': 1.0, 'hardwood': 1.0, 'but': 4.0, 'son': 1.0, 'hate': 1.0, 'own': 1.0, 'yes': 1.0, 'waiting': 2.0, 'needed': 2.0, 'back': 2.0, 'upright': 1.0, 'drop': 3.0, 'set': 1.0, 'doesn': 2.0, 'sure': 1.0, 'store': 2.0, 'was': 5.0, 'good': 1.0, 'can': 1.0, 'so': 5.0, 'for': 10.0, 'straw': 2.0, 'no': 1.0, 'shaken': 1.0, 'thing': 1.0, 'spilling': 1.0, 'badly': 1.0, 'car': 1.0, 'leaks': 3.0, 't': 9.0, 'city': 1.0, 'story': 1.0, 'a': 6.0, 'go': 1.0, '360': 1.0, 'placed': 1.0, 'milk': 2.0, 'just': 3.0, 'by': 1.0, 'returning': 1.0, 'know': 1.0, 'went': 1.0, 'me': 1.0, 'my': 11.0, 'don': 3.0, 'i': 15.0, 'am': 2.0, 'roll': 1.0, 'what': 1.0, 'when': 2.0, 'say': 1.0, 'ring': 1.0, 'floors': 1.0, 'is': 2.0, 'want': 2.0, 'mean': 1.0, 'upside': 3.0, 'copied': 1.0, 'and': 13.0, 'getting': 1.0, 'this': 4.0, 'drips': 1.0, 'kids': 2.0, 'frig': 1.0, 'it': 11.0, 'gave': 1.0, 'month': 2.0, 'take': 1.0, 'reviews': 2.0, 'suck': 1.0, 'to': 15.0, '4': 1.0, 'dribble': 1.0, 'cup': 6.0, 'cups': 5.0, 'how': 1.0, 'our': 2.0, 'down': 3.0, 'turned': 2.0, 'longer': 1.0, 'of': 2.0, 'the': 13.0, 'without': 1.0, 'wow': 3.0, 'everywhere': 3.0, 'that': 3.0, 'behind': 1.0, 'awesome': 1.0, 'out': 2.0, 'while': 2.0, 'over': 2.0, 'hard': 1.0, 'from': 1.0, 'm': 2.0, 'actually': 1.0, 'order': 1.0, 'trouble': 1.0, 'get': 3.0, 'yourself': 1.0, 'shipped': 1.0, 'got': 1.0, 'these': 3.0, 'or': 4.0, 'need': 1.0, '15': 2.0, 'chance': 1.0, 'looking': 1.0, 'bag': 1.0, 'has': 1.0, 'them': 2.0, 'water': 7.0, 'sippy': 1.0, 'old': 3.0, 'loved': 1.0, 'enough': 1.0, 'won': 1.0, 'who': 2.0, 'regular': 1.0, 'bad': 1.0, 'first': 1.0, 'are': 4.0, 'leak': 2.0, 'diaper': 1.0, 'really': 2.0, 'going': 1.0, 'soaked': 1.0, 'asap': 1.0, 'kid': 3.0}
Word element => {'washing': 1.0, 'especially': 1.0, 'even': 1.0, 'having': 1.0, 'everywhere': 1.0, 'them': 2.0, 'taking': 1.0, 'with': 1.0, 'it': 1.0, 'never': 1.0, 'cups': 1.0, 'and': 1.0, 'any': 1.0, 'best': 1.0, 'issues': 1.0, 'love': 1.0, 'straw': 1.0, 'one': 1.0, 'better': 1.0, 'lack': 1.0, 'my': 1.0, 'the': 1.0, 'little': 1.0, 'loves': 1.0, 'plus': 1.0, 'of': 1.0, 'ever': 1.0, 'makes': 1.0}
Word element => {'to': 1.0, 'enjoyable': 1.0, 'is': 1.0, 'professes': 1.0, 'it': 1.0, 'what': 1.0, 'toddler': 2.0, 'will': 1.0, 'sassy': 1.0, 'not': 2.0, 'does': 1.0, 'but': 1.0, 'use': 1.0, 'my': 2.0, 'the': 1.0, 'll': 1.0, 'cupthe': 1.0, 'cup': 1.0}
Word element => {'fyi': 1.0, 'ruined': 1.0, 'dishwasher': 1.0, 'our': 1.0, 'bigger': 1.0, 'nice': 1.0, 'very': 1.0, 'husband': 1.0, 'to': 1.0, 'use': 1.0, 'and': 2.0, 'getting': 1.0, 'a': 1.0, 'by': 1.0, 'just': 1.0, 'not': 1.0, 'are': 2.0, 'my': 2.0, 'twins': 1.0, 'bought': 2.0, 'love': 1.0, 'for': 1.0, 'we': 2.0, 'ones': 1.0, 'the': 2.0, 'these': 1.0, 'they': 2.0, 'take': 1.0, 'proof': 1.0, 'if': 1.0, 'side': 1.0, 'left': 1.0, 'on': 2.0, 'of': 1.0, 'bottom': 1.0, 'leak': 1.0, 'there': 1.0, 'little': 3.0, 'an': 1.0, 'put': 1.0, 'but': 1.0, 'will': 1.0, 'spill': 1.0, 'rack': 1.0, 'them': 3.0, 'out': 1.0}
Word element => {'match': 1.0, 'mix': 1.0, 'than': 1.0, 'inside': 1.0, 'will': 2.0, 'liquid': 1.0, 'long': 1.0, 'witch': 1.0, 'they': 2.0, 'time': 1.0, 'is': 1.0, 'side': 1.0, 'many': 1.0, 'amazon': 1.0, 'left': 1.0, 'on': 1.0, 'other': 1.0, 'bought': 1.0, 'be': 1.0, 'as': 2.0, 'us': 2.0, 'whatever': 1.0, 'love': 1.0, 'for': 1.0, 'let': 1.0, 'if': 1.0, 'have': 1.0, 'kids': 1.0, 'this': 1.0, 'with': 1.0, 'fade': 1.0, 'are': 2.0, 'drip': 1.0, 'and': 3.0, 'its': 1.0, 'do': 1.0, 'extremely': 1.0, 'has': 1.0, 'well': 1.0, 'we': 2.0, 'a': 1.0, 'made': 1.0, 'confident': 1.0, 'these': 1.0, 'the': 2.0, 'feel': 1.0, 'great': 1.0, 'colors': 1.0, 'not': 1.0, 'fantastic': 1.0, 'you': 1.0, 'can': 1.0}
Word element => {'back': 1.0, 'issue': 1.0, 'on': 1.0, 'still': 1.0, 'regular': 1.0, 'drink': 1.0, 'though': 1.0, 'daughter': 1.0, 'when': 1.0, 'for': 2.0, 'nub': 1.0, 'she': 5.0, 'the': 2.0, 'these': 2.0, 'great': 1.0, 'can': 1.0, '2': 1.0, 'nipple': 1.0, 'from': 2.0, 'very': 1.0, 'asked': 1.0, 'months': 1.0, 'were': 1.0, 'they': 2.0, 'have': 2.0, 'easy': 1.0, 'get': 1.0, 'and': 3.0, 'couldn': 1.0, 'about': 2.0, 'been': 1.0, 'beginning': 1.0, 'them': 2.0, 'any': 1.0, 'cups': 1.0, 'our': 1.0, 'to': 2.0, 'doesn': 1.0, 'was': 1.0, 'now': 2.0, 'use': 2.0, 'forth': 1.0, '15': 1.0, 'old': 1.0, 've': 1.0, 'lasted': 1.0, 'going': 1.0, 't': 2.0, 'we': 4.0, 'go': 1.0, 'a': 2.0, 's': 1.0, 'chew': 1.0, 'because': 1.0, 'through': 1.0, 'cup': 1.0, 'everywhere': 1.0, 'or': 1.0, 'got': 1.0, 'even': 1.0}
Word element => {'this': 1.0, 'in': 1.0, 'item': 1.0, 'will': 1.0, 'big': 1.0, 'anything': 1.0, 'drink': 1.0, 'refuses': 1.0, 'who': 1.0, 'stubborn': 1.0, 'even': 1.0, 'come': 1.0, 'cup': 1.0, 'see': 1.0, 'people': 1.0, 'always': 1.0, 'washed': 1.0, 'be': 2.0, 'boy': 1.0, 'friends': 1.0, 'so': 1.0, 'from': 2.0, 'cleaning': 1.0, 'more': 1.0, 'completely': 1.0, 'comes': 1.0, 'issues': 1.0, 'had': 1.0, 'have': 3.0, 'recommended': 1.0, 'well': 2.0, 'imagine': 1.0, 'tossed': 1.0, 'child': 1.0, 'don': 1.0, 'sideways': 1.0, 'bought': 2.0, 'disappointed': 1.0, 'upside': 1.0, 'whatever': 1.0, 'love': 2.0, 'for': 2.0, 'set': 1.0, 'leak': 1.0, 'not': 3.0, 'you': 2.0, 'when': 3.0, 'several': 1.0, 'separately': 1.0, 'no': 1.0, 'shaken': 1.0, 'i': 4.0, 'old': 1.0, 'too': 1.0, 'and': 3.0, 'but': 1.0, 'can': 2.0, 'valve': 1.0, 'these': 3.0, 'the': 5.0, 'they': 3.0, '16': 1.0, 'down': 1.0, 'does': 2.0, 'them': 1.0, 'removes': 1.0, 'out': 2.0, 's': 1.0, 'we': 1.0, 't': 1.0, 'a': 2.0, 'toddler': 1.0, 'with': 2.0, 'how': 1.0, 'wonder': 1.0, 'he': 1.0, 'their': 1.0, 'were': 1.0, 'that': 1.0, 'twist': 1.0, 'drop': 1.0, 'it': 2.0, 'month': 1.0, 'easy': 1.0, 'lid': 1.0, 'my': 2.0, 'reactions': 1.0, 'as': 1.0, 'cups': 3.0, 'to': 4.0, 'figure': 1.0, 'like': 1.0, 'cannot': 1.0, 'liquid': 1.0, 'top': 1.0, 'off': 1.0}
Word element => {'only': 1.0, 'use': 1.0, 'purchase': 1.0, 'will': 1.0, 'kid': 1.0, 'my': 1.0, 'a': 1.0, 'don': 1.0, 'whim': 1.0, 'next': 1.0, 'they': 1.0, 'our': 1.0, 'for': 1.0, 'love': 1.0, 'on': 1.0, 'and': 3.0, 'suck': 1.0, 'bought': 1.0, 'too': 1.0, 'cups': 2.0, 'i': 4.0, 'the': 1.0, 'these': 2.0, 't': 1.0, 'leak': 1.0, 'of': 1.0, 'dishwasher': 1.0, 'easy': 1.0, 'earlier': 1.0, 'safe': 1.0, 'to': 1.0, 'them': 1.0, 'out': 1.0, 'think': 1.0}
Word element => {'i': 1.0, 'lower': 1.0, 'his': 1.0, 'put': 1.0, 'to': 1.0, 'where': 1.0, 'it': 1.0, 'love': 1.0, 'learning': 1.0, 'this': 1.0, 'lip': 1.0, 'my': 1.0, 'son': 1.0, 'time': 1.0, 'is': 2.0, 'having': 1.0, 'drinking': 1.0, 'hard': 1.0, 'from': 1.0, 'he': 1.0, 'cup': 1.0, 'a': 2.0, 'using': 1.0}
Word element => {'buy': 1.0, 'm': 1.0, 'so': 1.0, 'ours': 1.0, 'highly': 1.0, 'regular': 1.0, 'are': 1.0, 'drink': 1.0, 'will': 1.0, 'now': 1.0, 'figure': 1.0, 'him': 1.0, '5': 1.0, 'recently': 1.0, 'open': 1.0, 'son': 2.0, 'from': 1.0, 'cups': 1.0, 'all': 1.0, 'to': 3.0, 'dropped': 1.0, 'easy': 1.0, 'great': 1.0, 'and': 4.0, 'surfaces': 1.0, 'the': 1.0, 'distances': 1.0, 'varity': 1.0, 'took': 1.0, 'bru': 1.0, 'clean': 1.0, 'i': 3.0, 'got': 1.0, 'durable': 1.0, 'with': 1.0, 'its': 2.0, 'only': 1.0, 'it': 3.0, 'at': 1.0, 'super': 1.0, 'about': 1.0, 'no': 1.0, 'sippy': 1.0, 'cup': 4.0, 'my': 2.0, 'high': 1.0, 'for': 2.0, 'he': 1.0, '99': 1.0, '6': 1.0, 'of': 2.0, 'months': 1.0, '3': 1.0, 'on': 1.0, 'damage': 1.0, 'more': 1.0, 'around': 1.0, 'is': 2.0, 'go': 1.0, 'going': 1.0, 'a': 2.0, 'we': 2.0, 'have': 1.0, 'lost': 1.0, 'this': 3.0, 'found': 1.0, 'recommend': 1.0, 'minutes': 1.0, 'spill': 1.0, 'out': 2.0, 'proof': 1.0, 'been': 1.0, 'that': 1.0, 'loves': 1.0}
Word element => {'than': 1.0, 'regular': 1.0, 'drink': 1.0, 'teaching': 1.0, 'concept': 1.0, 'good': 1.0, 'materials': 1.0, 'come': 1.0, 'hard': 1.0, 'strong': 1.0, 'on': 1.0, 'without': 1.0, 'the': 3.0, 'deal': 1.0, 'sucked': 1.0, 'is': 3.0, 'see': 1.0, 'out': 4.0, 'liquid': 1.0, 'rim': 1.0, 'it': 6.0, 'month': 1.0, 'has': 1.0, 'earlier': 1.0, 'of': 5.0, 'cup': 2.0, 'sealed': 1.0, 'still': 2.0, 'cute': 1.0, 'him': 1.0, 'be': 2.0, 'get': 1.0, 'kind': 1.0, 'to': 6.0, 'constructed': 1.0, 'as': 1.0, 'figure': 1.0, 'very': 1.0, 'like': 1.0, 'my': 1.0, 'may': 1.0, 'and': 2.0, 'too': 1.0, 'vacuum': 1.0, 'for': 2.0, '10': 1.0, 'old': 1.0, 'i': 2.0, 'grandson': 1.0, 'successfully': 1.0, 'glad': 1.0, 'how': 2.0, 'am': 1.0, 'use': 1.0, 'purchased': 1.0, 'a': 3.0, 'we': 1.0, 'seems': 1.0, 'will': 1.0}
Word element => {'is': 1.0, 'not': 1.0, 'tho': 1.0, 'have': 1.0, 'said': 1.0, 'regular': 1.0, 'flow': 1.0, 'had': 1.0, 'and': 2.0, 'from': 1.0, 'month': 1.0, 'can': 2.0, 'babies': 1.0, 'drink': 2.0, 'little': 1.0, 'sucking': 1.0, 'allows': 1.0, 'this': 1.0, 'with': 1.0, 'because': 3.0, 'just': 1.0, 'they': 2.0, 'get': 1.0, 'introduced': 1.0, '18': 1.0, 'used': 1.0, 'liquid': 2.0, 'old': 1.0, 'drinking': 1.0, 'to': 3.0, 'as': 1.0, 'our': 1.0, 'cups': 1.0, 'when': 1.0, 'you': 1.0, 'a': 2.0, 'we': 2.0, 't': 2.0, 'the': 1.0, 'pour': 1.0, 'loose': 1.0, 'proof': 1.0, 'out': 1.0, 'them': 1.0, 'of': 1.0, 'still': 1.0, 'struggled': 1.0, 'love': 1.0, 'don': 1.0, 'spill': 2.0, 'lid': 2.0, 'on': 1.0, 'are': 1.0, 'loosening': 1.0, 'already': 1.0, 'these': 1.0, 'others': 1.0}
Word element => {'bottle': 1.0, 'off': 1.0, 'their': 1.0, 'trying': 1.0, 'recommend': 1.0, 'i': 1.0, 'come': 1.0, 'none': 1.0, 'destructive': 1.0, 'other': 1.0, 'to': 1.0, 'all': 1.0, 'any': 1.0, 'child': 1.0, 'over': 1.0, 'knock': 1.0, 'throw': 1.0, 'best': 1.0, 'pretty': 1.0, 'out': 2.0, 'figure': 1.0, 'not': 1.0, 'quickly': 1.0, 'drink': 1.0, 'how': 1.0, 'built': 1.0, 'is': 2.0, 'wean': 1.0, 'see': 1.0, 'think': 1.0, 'your': 1.0, 'on': 1.0, 'part': 1.0, 'wife': 1.0, 'when': 1.0, 'times': 1.0, 'you': 3.0, 'works': 1.0, 'listed': 1.0, 'liquid': 2.0, 'it': 8.0, 'picked': 1.0, 'ups': 1.0, 'this': 2.0, 'they': 2.0, 'counter': 1.0, 'than': 1.0, 'the': 9.0, 'grown': 1.0, 'less': 1.0, 'us': 1.0, 'lot': 1.0, 'at': 1.0, 'of': 3.0, 'once': 1.0, 'thing': 1.0, 'no': 1.0, 'or': 1.0, 'cup': 3.0, 'let': 1.0, 'for': 3.0, 'like': 1.0, 'using': 1.0, 's': 1.0, 'a': 2.0, 'few': 1.0, 'just': 1.0, 'says': 1.0, 'baby': 2.0, 'intuitive': 1.0, 'use': 1.0, 'amazon': 1.0, 'appears': 1.0, 'in': 1.0, 'will': 3.0, 'seems': 1.0, 'beginning': 1.0, 'parents': 1.0, 'somewhat': 1.0, 'past': 1.0, 'can': 2.0, 'but': 1.0, 'my': 1.0, 'fact': 1.0, 'get': 2.0, 'description': 1.0, 'and': 2.0, 'babies': 2.0, 'that': 3.0, 'through': 1.0, 'r': 1.0, 'membrane': 1.0}
Word element => {'space': 1.0, 'and': 1.0, 'battery': 1.0, 'money': 1.0, 'not': 1.0, 'the': 3.0, 'body': 1.0, 'use': 1.0, 'even': 1.0, 'to': 1.0, 'tilts': 1.0, 'with': 1.0, 'water': 1.0, 'filled': 1.0, 'so': 1.0, 'worth': 1.0, 'hard': 1.0, 'its': 1.0}
Word element => {'easier': 1.0, 'to': 1.0, 'much': 1.0, 'so': 1.0, 'and': 1.0, 'carolyn': 1.0, 'made': 1.0, 'the': 2.0, 'is': 1.0, 'a': 1.0, 'oxygen': 1.0, 'thomason': 1.0, 'strap': 2.0, 'it': 1.0, 'portable': 1.0, 'perfect': 1.0, 'i': 1.0, 'have': 1.0, 'carry': 2.0, 'tank': 1.0}
Word element => {'job': 1.0, 'from': 1.0, 'luggage': 1.0, 'either': 1.0, 'stuck': 1.0, 'up': 1.0, 'tangled': 1.0, 'swivel': 2.0, 'supposed': 1.0, 'comfortable': 1.0, 'didn': 2.0, 'remotely': 1.0, 'on': 1.0, 'padding': 1.0, 'return': 1.0, 'a': 2.0, 'flimsy': 1.0, 't': 2.0, 'more': 1.0, 'the': 5.0, 'cheap': 1.0, 'make': 1.0, 'do': 1.0, 'get': 2.0, 'and': 2.0, 'nothing': 2.0, 'had': 1.0, 'to': 3.0, 'was': 4.0, 'would': 1.0, 'part': 1.0, 'carseat': 1.0, 'that': 2.0, 'it': 1.0, 'this': 1.0, 'than': 1.0, 'some': 1.0, 'tumi': 1.0, 'fabric': 1.0, 'real': 1.0, 'actually': 1.0, 'so': 2.0, 'wearing': 1.0, 'strap': 4.0, '25lb': 1.0, 'diono': 1.0}
Word element => {'no': 1.0, 'carry': 1.0, 'seat': 1.0, 'overall': 1.0, 'backpack': 1.0, 'a': 1.0, 'very': 1.0, 'as': 1.0, 'is': 1.0, 'want': 1.0, 'you': 1.0, 'if': 1.0, 'matter': 1.0, 'and': 1.0, 'but': 1.0, 'thought': 1.0, 'proper': 1.0, 'use': 1.0, 'came': 1.0, 'strap': 2.0, 'we': 1.0, 'body': 1.0, 'comfortable': 1.0, 'one': 1.0, 'buy': 1.0, 'i': 2.0, 'diono': 1.0, 'wasn': 2.0, 'used': 2.0, 'it': 1.0, 'with': 1.0, 'radian': 1.0, 'this': 1.0, 'heavy': 1.0, '2': 1.0, 'the': 4.0, 't': 2.0, 'was': 1.0, 'to': 3.0, 'wrong': 1.0, 'go': 1.0, 'across': 1.0}
Word element => {'traveling': 1.0, 'when': 1.0, 'carseat': 1.0, 'carry': 1.0, 'backpack': 1.0, 'strap': 1.0, 'double': 1.0, 'a': 1.0, 'to': 2.0, 'it': 1.0, 'item': 1.0, 'arrived': 1.0, 'on': 1.0, 'time': 1.0, 'is': 1.0, 'and': 1.0, 'as': 1.0, 'described': 1.0, 'we': 1.0, 'the': 1.0, 'make': 1.0, 'll': 1.0, 'use': 1.0}
Word element => {'product': 1.0, 'terrible': 1.0, 'off': 1.0, 'broke': 1.0, 'both': 1.0, 'tank': 1.0, 'metal': 1.0, 'flights': 1.0, 'of': 4.0, 'couple': 1.0, 'and': 2.0, 'built': 1.0, 'had': 1.0, 'quality': 1.0, 'but': 1.0, 'connectors': 1.0, 'straps': 2.0, 'like': 1.0, 'carseats': 2.0, 'rxt': 1.0, 'diono': 2.0, 'nowhere': 1.0, 'a': 2.0, 'near': 1.0, 'are': 2.0, 'these': 2.0, 'the': 5.0, 'we': 1.0, 'bent': 1.0, 'two': 1.0, 'on': 1.0, 'bag': 1.0, 'within': 1.0}
Word element => {'wash': 1.0, 'up': 1.0, 'absorbent': 1.0, 'fits': 1.0, 'my': 1.0, 'after': 1.0, 'cute': 1.0, 'holds': 1.0, 'is': 2.0, 'this': 3.0, 'looks': 1.0, 'it': 5.0, 'excited': 1.0, 'diaper': 3.0, 'the': 6.0, 'fit': 1.0, 'for': 3.0, 'love': 1.0, 'work': 1.0, 'will': 3.0, 'cow': 1.0, 'an': 1.0, 'quality': 1.0, 'best': 1.0, 'what': 1.0, 'down': 1.0, 'print': 1.0, 'see': 3.0, 'use': 1.0, 'front': 1.0, 'able': 1.0, 'us': 1.0, 'i': 7.0, 'cloth': 1.0, 'several': 1.0, 'inserts': 1.0, 'super': 2.0, 'new': 1.0, 'to': 5.0, 'buying': 1.0, 'how': 4.0, 'so': 1.0, 'like': 1.0, 'types': 1.0, 'snap': 1.0, 'that': 2.0, 'review': 1.0, 'has': 2.0, 'diapering': 1.0, 'in': 2.0, 'update': 1.0, 'newborn': 1.0, 'umbilical': 1.0, 'am': 4.0, 'stump': 1.0, 'and': 3.0, 'opening': 1.0, 'extra': 1.0, 'different': 1.0, 'good': 1.0}
Word element => {'ve': 1.0, 'attached': 1.0, 'any': 1.0, 'and': 1.0, 'stays': 1.0, 'i': 2.0, 'also': 1.0, 's': 1.0, 'better': 1.0, 'pacifier': 1.0, 'it': 1.0, 'love': 1.0, 'tried': 1.0, 'the': 1.0, 'this': 1.0, 'clip': 1.0, 'others': 1.0, 'with': 1.0, 'than': 1.0, 'perfect': 1.0, 'soothie': 1.0}
Word element => {'complaints': 1.0, 'lots': 1.0, 'is': 1.0, 'and': 2.0, 'up': 1.0, 'of': 1.0, 'has': 1.0, 'anymore': 1.0, 'no': 1.0, 'constantly': 1.0, 'clip': 1.0, 'cute': 1.0, 'held': 1.0, 'with': 1.0, 'this': 1.0, 'use': 1.0, 'so': 1.0, 'glad': 1.0, 'to': 1.0, 'be': 1.0, 'washing': 2.0, 'not': 1.0, 'the': 1.0, 'pacifier': 1.0}
Word element => {}
Word element => {'securely': 1.0, 'stay': 1.0, 'to': 1.0, 'if': 1.0, 'clasp': 1.0, 'and': 1.0, 'like': 1.0, 'need': 1.0, 'tight': 1.0, 'unisex': 1.0, 'want': 1.0, 'is': 1.0, 'on': 2.0, 'the': 2.0, 'metal': 1.0, 'holder': 1.0, 'pacifier': 1.0, 'only': 1.0, 'it': 2.0, 'i': 1.0, 'stays': 1.0, 'that': 1.0, 'you': 2.0, 'actually': 1.0, 'a': 2.0, 'fidgety': 1.0, 'squirmy': 1.0, 'colors': 1.0, 'baby': 1.0}
Word element => {'too': 1.0, 'in': 1.0, 'this': 1.0, 'clip': 1.0, 'is': 2.0, 'very': 1.0, 'and': 2.0, 'wash': 1.0, 'so': 1.0, 'use': 1.0, 'easy': 2.0, 'place': 1.0, 'to': 2.0, 'great': 1.0, 'it': 1.0, 'stays': 1.0}
Word element => {'stores': 1.0, 'local': 1.0, 'your': 1.0, 'at': 1.0, 'i': 1.0, 'does': 1.0, 'whatever': 1.0, 'that': 1.0, 'chose': 1.0, 'paci': 2.0, 'onto': 1.0, 'job': 1.0, 'of': 1.0, 'its': 1.0, 'holding': 1.0, 'find': 2.0, 'are': 1.0, 'this': 1.0, 'clips': 1.0, 'brand': 1.0, 'you': 2.0, 'way': 1.0, 'cuter': 1.0, 'can': 1.0, 'than': 1.0, 'the': 2.0, 'ones': 1.0}
Word element => {'for': 1.0, 'use': 1.0, 'with': 1.0, 'apart': 1.0, 'falling': 1.0, 'years': 1.0, 'don': 1.0, 'i': 2.0, 'picks': 1.0, 'sometimes': 2.0, 'a': 1.0, 'see': 1.0, 'well': 1.0, 'their': 1.0, 'metal': 1.0, 'up': 1.0, 'or': 1.0, 'job': 1.0, 'are': 1.0, 'end': 1.0, 'my': 1.0, 'clip': 1.0, 'couple': 1.0, 'and': 2.0, 'do': 1.0, 't': 1.0, 'the': 1.0, 'these': 2.0, 'two': 1.0, 'girl': 1.0, 'together': 1.0, 'little': 1.0, 'breaking': 1.0, 'made': 1.0, 'them': 1.0, 'prefers': 1.0, 'normal': 1.0, 'to': 1.0, 'suck': 1.0, 'on': 1.0}
Word element => {'holders': 1.0, 'brand': 1.0, 'best': 1.0, 'otherwise': 1.0, 'after': 1.0, 'clips': 1.0, 'person': 1.0, 'wash': 2.0, 'in': 1.0, 'cuter': 1.0, 'it': 1.0, 'tight': 1.0, 'love': 1.0, 'even': 1.0, 'have': 1.0, 'all': 1.0, 'is': 1.0, 'there': 1.0, 'of': 2.0, 'stay': 1.0, 'i': 1.0, 'holder': 1.0, 'pacifier': 1.0, 'the': 1.0, 'these': 1.0, 's': 1.0, 'stitching': 1.0, 'a': 1.0, 'out': 1.0, 'them': 1.0, 'few': 1.0, 'paci': 1.0, 'probably': 1.0, 'and': 2.0, 'strong': 2.0, 'that': 1.0}
Word element => {'one': 1.0, 'indent': 1.0, 'off': 1.0, 'and': 1.0, 'beginning': 1.0, 'does': 1.0, 'that': 1.0, 'buy': 1.0, 'never': 1.0, 'would': 1.0, 'holder': 1.0, 'pacifier': 1.0, 'not': 1.0, 'strong': 1.0, 'we': 1.0, 'clothes': 1.0, 'wish': 1.0, 'comes': 1.0, 'had': 1.0, 'have': 1.0, 'this': 1.0, 'it': 1.0, 'from': 1.0, 'the': 1.0}
Word element => {'daughter': 1.0, 'my': 1.0, 'these': 1.0, 'have': 1.0, 'd': 1.0, 'they': 1.0, 'accessory': 1.0, 'practical': 1.0, 'bored': 1.0, 'many': 1.0, 'one': 2.0, 'pink': 1.0, 'when': 1.0, 'you': 3.0, 'gives': 1.0, 'style': 1.0, 'baby': 4.0, 'same': 1.0, 'silver': 1.0, 'saucy': 1.0, 'seem': 1.0, 'get': 1.0, 'sure': 1.0, 'wide': 1.0, 'assortment': 1.0, 'won': 1.0, 'has': 1.0, 'thebooginhead': 1.0, 'binky': 1.0, 'silveris': 1.0, 'your': 2.0, 'holder': 1.0, 'booginhead': 1.0, 'pacifier': 2.0, 'of': 2.0, 'ask': 2.0, 'offers': 1.0, 'can': 1.0, 'but': 1.0, 'wish': 1.0, 'holders': 1.0, 'an': 1.0, 'was': 1.0, 'doesn': 1.0, 'dangerous': 1.0, 'by': 1.0, 'pacigrip': 1.0, 'the': 4.0, 's': 1.0, 'could': 1.0, 'a': 4.0, 't': 2.0, 'more': 1.0, 'had': 1.0, 'what': 1.0, 'entirely': 1.0, 'her': 1.0, 'different': 1.0, 'actually': 1.0, 'for': 2.0, 'persona': 1.0, 'so': 2.0, 'seriously': 1.0, 'it': 1.0, 'attaches': 1.0, 'patterns': 1.0, 'any': 1.0, 'as': 1.0, 'to': 2.0, 'pattern': 1.0, 'and': 1.0, 'clip': 1.0, 'be': 1.0}
Word element => {'to': 1.0, 'color': 1.0, 'nice': 1.0, 'has': 1.0, 'love': 1.0, 'it': 3.0, 's': 1.0, 'its': 1.0, 'a': 1.0, 'they': 1.0, 'must': 1.0, 'have': 1.0, 'drop': 1.0, 'for': 1.0, 'all': 1.0, 'constantly': 1.0, 'since': 1.0, 'infants': 1.0, 'i': 1.0, 'pasi': 1.0}
Word element => {'stroller': 1.0, 'another': 1.0, 'bought': 1.0, 'in': 1.0, 've': 1.0, 'not': 1.0, 'to': 1.0, 'was': 1.0, 'i': 2.0, 'stays': 1.0, 'mine': 1.0, 'one': 1.0, 'with': 1.0, 'this': 1.0, 'other': 1.0, 'attached': 1.0, 'on': 1.0, 'keep': 1.0, 'clip': 1.0, 'the': 2.0, 'great': 1.0, 'works': 1.0, 'used': 1.0, 'would': 1.0, 'pacifier': 1.0, 'grips': 1.0, 'that': 1.0, 'stay': 1.0, 'clipped': 1.0, 'so': 1.0, 'happy': 1.0}
Word element => {'lol': 1.0, 'bull': 1.0, 'roping': 1.0, 'off': 1.0, 'time': 1.0, 'with': 1.0, 'he': 1.0, 'it': 2.0, 'type': 2.0, 'is': 2.0, 'soothie': 1.0, 'has': 1.0, 'well': 2.0, 'clips': 1.0, 'uses': 1.0, 'pretends': 1.0, 'your': 1.0, 'on': 1.0, 'norm': 1.0, 'be': 2.0, 'sons': 1.0, 'and': 3.0, 'spot': 1.0, 'paci': 3.0, 'to': 2.0, 'or': 2.0, 'handle': 1.0, 'for': 1.0, 'whatever': 1.0, 'clip': 2.0, 'of': 2.0, 'kind': 1.0, 'a': 2.0, 'hole': 1.0, 'this': 1.0, 'perfect': 2.0, 'my': 2.0, 'the': 2.0, 'something': 1.0, 'would': 1.0, 'baby': 2.0, 'prefers': 1.0, 'fabric': 1.0, 'stitched': 1.0, 'clasp': 1.0, 'even': 1.0, 'yanks': 1.0, 'not': 1.0, 'does': 1.0, 'tear': 1.0, 'no': 1.0, 'clothing': 1.0, 'when': 1.0}
Word element => {'useful': 1.0}
Word element => {'tried': 1.0, 'i': 1.0, 'little': 1.0, 'fit': 1.0, 'the': 2.0, 'although': 1.0, 'pacifiers': 1.0, 'all': 1.0, 'mams': 1.0, 'nice': 1.0, 'a': 3.0, 'on': 2.0, 'has': 1.0, 'cute': 1.0, 'clip': 1.0, 'you': 1.0, 's': 3.0, 'soothies': 1.0, 'with': 2.0, 'it': 6.0, 'to': 3.0, 'and': 2.0, 'grip': 1.0, 'nearly': 1.0, 'impossible': 1.0, 'baby': 1.0, 'nuks': 1.0, 'whatever': 1.0, 'tight': 2.0, 'for': 1.0, 'detach': 1.0, 've': 1.0, 'also': 2.0, 'seems': 1.0, 'work': 1.0}
Word element => {'clip': 1.0, 'pacifier': 1.0, 'fabric': 1.0, 'girl': 1.0, 'loves': 1.0, 'this': 1.0, 'chew': 1.0, 'all': 1.0, 'on': 1.0, 'with': 1.0, 'great': 1.0, 'works': 1.0, 'pacifiers': 1.0, 'including': 1.0, 'to': 1.0, 'soothies': 1.0, 'the': 2.0, 'my': 1.0, 'plus': 1.0, 'little': 1.0}
Word element => {'issue': 1.0, 'now': 1.0, 'off': 1.0, 'get': 1.0, '6': 1.0, 'not': 2.0, 'does': 1.0, 'downside': 1.0, 'gift': 1.0, 'starts': 1.0, 'my': 1.0, 'everyone': 1.0, 'buy': 1.0, 'most': 1.0, 'but': 1.0, 'part': 1.0, 'designs': 2.0, 'last': 1.0, 'different': 2.0, 'amazon': 1.0, 'on': 1.0, 'clip': 1.0, 'tons': 1.0, 'online': 1.0, 'more': 2.0, 'is': 2.0, 'a': 1.0, 't': 1.0, 'clothes': 1.0, 'them': 3.0, 'loose': 1.0, 'out': 2.0, 'of': 3.0, 'there': 2.0, 'frequently': 1.0, 'thing': 1.0, 'have': 5.0, 'and': 5.0, 'the': 6.0, 'anymore': 1.0, 'was': 1.0, 'had': 2.0, 'as': 1.0, 'all': 1.0, 'paci': 1.0, 'to': 3.0, 'clips': 1.0, 'then': 1.0, 'include': 1.0, 'bru': 2.0, 'didn': 1.0, 'are': 2.0, 'changing': 1.0, 'that': 6.0, 'best': 1.0, 'first': 1.0, 'found': 1.0, 'this': 2.0, 'fell': 1.0, 'it': 5.0, 'with': 1.0, 'i': 14.0, 'months': 1.0, 'bought': 1.0, 'one': 2.0, 'for': 2.0, 'love': 2.0, 'saw': 1.0, 'tested': 1.0, 'brand': 1.0, 'easily': 1.0, 'when': 2.0, 'am': 2.0, 'these': 2.0, 'knew': 1.0, 'only': 1.0, 'try': 1.0, 'few': 1.0, 'just': 1.0, 'sooooooooooooo': 1.0, 'searching': 1.0, 'they': 1.0, 'glad': 1.0, 'did': 1.0, 'curse': 1.0, 'at': 1.0, 'since': 2.0, 'in': 1.0, 'pulls': 1.0, 'went': 2.0, 'back': 1.0}
Word element => {'twins': 1.0, 'to': 1.0, 'i': 3.0, 'am': 1.0, 'will': 1.0, 'future': 1.0, 'hoping': 1.0, 'use': 2.0, 'however': 1.0, 'for': 1.0, 'in': 1.0, 'my': 1.0, 'yet': 1.0, 'the': 1.0, 'item': 1.0, 'this': 2.0, 'have': 1.0}
Word element => {'fun': 1.0, 'so': 1.0, 'the': 1.0, 'and': 2.0, 'blanket': 1.0, 'everywhere': 1.0, 'brings': 1.0, 'she': 1.0, 'bought': 1.0, 'can': 1.0, 'it': 3.0, 'useful': 1.0, 'old': 1.0, 'a': 1.0, 'use': 1.0, 'present': 1.0, '2': 1.0, 'for': 1.0, 'year': 1.0, 'was': 1.0, 'her': 1.0, 'favorite': 1.0}
Word element => {'hello': 1.0, 'her': 1.0, 'loves': 1.0, 'granddaughter': 1.0, 'is': 2.0, 'my': 1.0, 'the': 2.0, 'kitty': 2.0, 'perfect': 1.0, 'blanket': 1.0, 'in': 1.0, 'size': 1.0, 'very': 1.0, 'and': 2.0, 'great': 1.0, 'plush': 1.0}
Word element => {'purchase': 1.0, 'was': 4.0, 'mail': 1.0, 'it': 6.0, 'she': 1.0, 'i': 5.0, 'old': 1.0, 'this': 1.0, 'minute': 1.0, 'right': 1.0, 'got': 1.0, 'loved': 1.0, 'worried': 1.0, 'came': 1.0, 'that': 2.0, 'thought': 1.0, 'which': 1.0, 'in': 2.0, 'girl': 1.0, 'year': 1.0, 'present': 1.0, 'kind': 1.0, 'big': 1.0, 'time': 1.0, '3': 1.0, 'on': 1.0, 'the': 1.0, 'deal': 1.0, 'babysit': 1.0, 'bigger': 1.0, 'at': 1.0, 'about': 1.0, 'not': 2.0, 'bought': 1.0, 'be': 1.0, 'of': 1.0, 'too': 1.0, 'for': 1.0, 'expensive': 1.0, 'because': 1.0, 'than': 1.0, 'but': 1.0, 'a': 3.0, 'going': 1.0, 's': 1.0, 'to': 1.0, 'all': 3.0, 'last': 1.0, 'good': 1.0}
Word element => {'cuddly': 1.0, 'her': 2.0, 'soft': 1.0, 'made': 1.0, 'kitty': 1.0, 'the': 2.0, 's': 1.0, 'big': 1.0, 'blanket': 1.0, 'nice': 1.0, 'hello': 1.0, 'loves': 1.0, 'daughter': 1.0, 'for': 1.0, 'and': 2.0, 'so': 1.0, 'was': 1.0, 'a': 1.0, 'cause': 1.0, 'my': 1.0, 'happy': 1.0, 'choice': 1.0, 'this': 1.0, 'it': 1.0}
Word element => {'awesome': 1.0, 'this': 1.0, 'with': 1.0, 'animal': 1.0, 'little': 2.0, 'much': 1.0, 'say': 1.0, 't': 1.0, 'trips': 1.0, 'about': 1.0, 'take': 2.0, 'isn': 1.0, 'to': 2.0, 'stuffed': 1.0, 'there': 1.0, 'i': 2.0, 'over': 1.0, 'guy': 1.0, 'on': 1.0, 'all': 2.0, 'my': 1.0, 'like': 1.0, 'travel': 1.0, 'and': 1.0, 'a': 1.0, 'funny': 1.0, 'him': 1.0, 'pictures': 1.0}
Word element => {'again': 1.0, 'buy': 1.0, 'would': 1.0, 'i': 1.0, 'washes': 1.0, 'and': 1.0, 'it': 1.0, 'love': 1.0, '5th': 1.0, 'is': 1.0, 'made': 1.0, 'the': 2.0, 'shirt': 2.0, 'for': 1.0, 'itself': 1.0, 'well': 2.0, 'her': 1.0, 'she': 1.0, 'birthday': 1.0}
Word element => {'smaller': 1.0, 'lot': 1.0, 'a': 1.0, 'were': 1.0, 'thought': 1.0, 'than': 1.0, 'but': 1.0, 'they': 2.0, 'i': 1.0, 'matched': 1.0, 'looked': 1.0, 'and': 1.0, 'the': 1.0, 'my': 1.0, 'really': 1.0, 'good': 1.0, 'rest': 1.0, 'of': 1.0, 'nursery': 1.0}
Word element => {'well': 1.0, 'cute': 1.0, 'fabric': 1.0, 'changing': 1.0, 'i': 1.0, 'everything': 1.0, 'fit': 1.0, 'this': 1.0, 'organizer': 1.0, 'nursery': 1.0, 'easily': 1.0, 'is': 2.0, 'perfect': 1.0, 'for': 2.0, 'made': 1.0, 'the': 2.0, 'my': 2.0, 'and': 2.0, 'table': 1.0, 'need': 1.0, 'hanging': 1.0, 'pockets': 1.0}
Word element => {'your': 1.0, 'feed': 1.0, 'things': 1.0, 'of': 1.0, 'the': 2.0, 'nature': 1.0, 'to': 2.0, 'according': 1.0, 'baby': 1.0, 'its': 1.0, 'multipl': 1.0, 'need': 1.0, 'each': 1.0, 'very': 1.0, 'usufal': 1.0, 'use': 1.0, 'item': 1.0, 'can': 1.0, 'with': 2.0, 'pieces': 1.0, 'where': 1.0, 'you': 2.0}
Word element => {'clean': 1.0, 'soft': 1.0, 'the': 2.0, 'to': 2.0, 'through': 1.0, 'easy': 1.0, 'just': 1.0, 'with': 1.0, 'amazingly': 1.0, 'versatile': 1.0, 'different': 1.0, 'uses': 1.0, 'friendly': 1.0, 'touch': 1.0, 'wash': 1.0, 'so': 2.0, 'explained': 1.0, 'many': 1.0, 'as': 1.0, 'and': 2.0, 'in': 1.0, 'eco': 1.0}
Word element => {'thorough': 1.0, 'after': 1.0, 'scrubbing': 1.0, 'juice': 1.0, 'water': 1.0, 'nicer': 1.0, 'are': 1.0, 'kanteen': 1.0, 'stainless': 1.0, 'money': 1.0, 'waste': 1.0, 'don': 1.0, 'better': 1.0, 'more': 1.0, 'back': 2.0, 'linger': 1.0, 'be': 1.0, 'fix': 1.0, 'weakest': 1.0, 'its': 2.0, 'this': 1.0, 'recommend': 1.0, 'd': 1.0, 'spot': 1.0, 'very': 1.0, 'flying': 1.0, 'cup': 2.0, 'caught': 1.0, 'love': 1.0, 'he': 1.0, 'but': 2.0, 'll': 1.0, 'table': 2.0, 'sippies': 2.0, 'keep': 1.0, 'we': 1.0, 'beyond': 1.0, 'seem': 1.0, 'least': 1.0, 'happened': 1.0, 'same': 2.0, 'days': 1.0, 'alas': 1.0, 'screw': 1.0, 'great': 2.0, 'charge': 1.0, 'want': 1.0, 'free': 1.0, 't': 1.0, 'replacement': 1.0, 'throwing': 1.0, 'out': 1.0, 'part': 1.0, 'within': 2.0, 'week': 1.0, 'baby': 1.0, 'satisfied': 1.0, 'playtex': 1.0, 'been': 1.0, 'solution': 1.0, 'always': 1.0, 'have': 1.0, 'even': 2.0, 'contacted': 1.0, 'several': 1.0, 'whole': 1.0, 'no': 1.0, 'dropping': 1.0, 'with': 2.0, 'mind': 1.0, 'and': 7.0, 'just': 1.0, 'milk': 4.0, 'across': 1.0, 'seal': 1.0, 'klean': 1.0, 'they': 1.0, 'gets': 1.0, 'not': 1.0, 'good': 1.0, 'which': 1.0, 'ones': 1.0, 'one': 2.0, 'for': 4.0, 'way': 1.0, 'inner': 1.0, 'where': 2.0, 'find': 2.0, 'wooden': 1.0, 'me': 1.0, 'my': 4.0, 'lid': 3.0, 'was': 2.0, 'to': 7.0, 'as': 3.0, 'innobaby': 1.0, 'deeming': 1.0, 'these': 1.0, 'products': 1.0, 'hunt': 1.0, 'in': 2.0, 'promptly': 1.0, 'daily': 1.0, 'over': 1.0, 'time': 1.0, 'only': 1.0, 'usually': 1.0, 'simply': 1.0, 'elbow': 1.0, 'plastic': 3.0, 'something': 1.0, 'toddlers': 1.0, 'who': 1.0, 'non': 1.0, 'funky': 1.0, 'came': 1.0, 'local': 1.0, 'thrilled': 1.0, 'easily': 2.0, 'things': 1.0, 'you': 2.0, 'a': 4.0, 'your': 1.0, 'idea': 1.0, 'downs': 1.0, 'maybe': 1.0, 's': 1.0, 'use': 1.0, 'shop': 1.0, 'snap': 1.0, 'until': 1.0, 'own': 1.0, 'off': 2.0, 'on': 3.0, 'guy': 2.0, 'useless': 1.0, 'it': 4.0, 'is': 1.0, 'at': 3.0, 'ring': 1.0, 'sealed': 1.0, 'of': 3.0, 'the': 17.0, 'longer': 1.0, 'two': 1.0, 'little': 2.0, 'thing': 3.0, '2': 1.0, '5': 1.0, 'lost': 1.0, 'grip': 1.0, 'while': 2.0, 'walking': 1.0, 'his': 3.0, 'around': 1.0, 'i': 6.0, 'broke': 1.0, 'feet': 1.0, 'much': 1.0, 'floor': 3.0, 'snapped': 2.0, 'quality': 1.0, 'their': 2.0, 'customer': 1.0, 'if': 1.0, 'service': 1.0, 'sent': 2.0}
Word element => {'t': 1.0, 'i': 1.0, 'doesn': 1.0, 'fish': 1.0, 'would': 1.0, 'say': 1.0, 'is': 1.0, 'on': 2.0, 'the': 5.0, 'stay': 1.0, 'cup': 3.0, 'disappearing': 1.0, 'looks': 1.0, 'print': 1.0, 'great': 1.0, 'but': 1.0}
Word element => {'alaska': 1.0, 'frigid': 1.0, 'right': 1.0, 'day': 2.0, 'activities': 1.0, 'of': 1.0, 'down': 1.0, 'range': 1.0, 'chilly': 1.0, 'provides': 1.0, 'the': 2.0, 'fantastic': 1.0, 'easily': 1.0, 'coat': 1.0, 'seasonal': 1.0, 'own': 2.0, 'your': 2.0, 'warm': 1.0, 'over': 1.0, 'made': 1.0, 'goes': 1.0, 'simple': 1.0, 'a': 3.0, 'we': 2.0, 'adjustable': 1.0, 'other': 1.0, 'fall': 1.0, 'is': 3.0, 'full': 1.0, 'this': 2.0, 'covers': 1.0, 'it': 1.0, 'from': 1.0, 'hard': 1.0, 'with': 1.0, 'carrier': 2.0, 'for': 2.0, 'love': 1.0, 'reasons': 1.0, 'one': 1.0, 'so': 2.0, 'better': 1.0, 'wear': 1.0, 'cover': 1.0, 'plush': 1.0, 'layering': 1.0, 'too': 1.0, 'and': 2.0, 'in': 2.0, 'winter': 1.0, 'us': 1.0, 'have': 1.0, 'baby': 1.0, 'but': 1.0, 'are': 1.0, 'they': 1.0, 'akward': 1.0, 'nothing': 1.0, 'system': 1.0, 'to': 2.0, 'easy': 1.0, 'really': 1.0, 'customer': 1.0, 'many': 1.0, 'service': 1.0, 'entirely': 1.0, 'kowalli': 1.0}
Word element => {'and': 1.0, 'weather': 1.0, 'made': 1.0, 'cold': 2.0, 'carriers': 1.0, 's': 1.0, 'is': 1.0, 'use': 1.0, 'proof': 1.0, 'cover': 1.0, 'it': 2.0, 'with': 1.0, 'this': 1.0, 'well': 1.0, 'convenient': 1.0, 'to': 1.0, 'for': 1.0, 'in': 1.0, 'carrying': 1.0, 'any': 1.0, 'baby': 1.0, 'very': 2.0, 'vest': 1.0, 'outside': 1.0}
Word element => {'recommend': 1.0, 'definitely': 1.0, 'my': 1.0, 'it': 2.0, 'high': 1.0, 'and': 1.0, 'quality': 1.0, 'loves': 1.0, 'this': 1.0, 'son': 1.0, 'is': 1.0, 'i': 1.0, 'incredibly': 1.0, 'cozy': 1.0}
Word element => {'done': 1.0, 'color': 1.0, 'through': 1.0, 'well': 1.0, 'teenagers': 1.0, 'they': 1.0, 'the': 1.0, 'adults': 1.0, 'are': 2.0, 'a': 1.0, 'least': 1.0, 'and': 2.0, 'size': 1.0, 'sturdy': 1.0, 'good': 1.0, 'design': 1.0, 'for': 1.0, 'everyone': 1.0, 'at': 1.0}
Word element => {'it': 1.0, 'goes': 1.0, 'if': 1.0, 'keep': 1.0, 'll': 1.0, 'formulas': 1.0, 'bought': 1.0, 'store': 1.0, 'than': 1.0, 'know': 1.0, 'easy': 1.0, 'very': 1.0, 'so': 3.0, 'ideas': 1.0, 'husband': 1.0, 'wanted': 1.0, 'had': 1.0, 'much': 1.0, 'its': 1.0, 'is': 2.0, 'baby': 2.0, 'and': 2.0, 'starting': 1.0, 'posted': 1.0, 'in': 1.0, 'given': 1.0, 'holidays': 1.0, 'got': 2.0, 'wrong': 1.0, 'me': 3.0, 'heard': 1.0, 'small': 1.0, 'have': 2.0, 'this': 3.0, 'he': 2.0, 'to': 3.0, 'as': 2.0, 'household': 1.0, 'my': 1.0, 'the': 4.0, 'great': 1.0, 'gift': 1.0, 'healthier': 1.0, 'some': 1.0, 'knew': 1.0, 'i': 4.0, 'start': 1.0, 'food': 2.0, 'but': 3.0, 'sage': 1.0, 'anything': 1.0, 'making': 1.0, 'book': 1.0, 'no': 1.0, 'you': 1.0, 'idea': 1.0, 'love': 1.0, 'for': 3.0, 'where': 1.0, 'we': 1.0, 'a': 2.0, 'go': 1.0, 'never': 1.0, 'of': 1.0, 'real': 1.0, 'far': 2.0, 'included': 1.0, 'has': 1.0}
Word element => {'repairable': 1.0, 'at': 1.0, 'an': 1.0, 'said': 1.0, 'is': 1.0, 'blender': 1.0, 'the': 1.0, 'not': 1.0, 'started': 1.0, 'then': 1.0, 'use': 1.0, 'was': 1.0, 'husband': 1.0, 'sparked': 1.0, 'to': 1.0, 'gift': 1.0, 'a': 2.0, 'very': 1.0, 'electrician': 1.0, 'from': 1.0, 'as': 2.0, 'dozen': 1.0, 'who': 1.0, 'times': 1.0, 'grandson': 1.0, 'died': 1.0, 'for': 1.0, 'disappointed': 1.0, 'in': 1.0, 'received': 1.0, 'and': 3.0, 'me': 1.0, 'than': 1.0, 'my': 3.0, 'today': 1.0, 'she': 3.0, 'used': 1.0, 'looked': 1.0, 'this': 1.0, 'it': 5.0, 'daughter': 1.0, 'less': 1.0, 'when': 1.0, 'plugged': 1.0}
Word element => {'nice': 1.0, 'very': 1.0, 'time': 1.0, 'next': 1.0, 'until': 1.0, 'away': 1.0, '4': 1.0, '3': 1.0, 'last': 1.0, 'make': 1.0, 'quirks': 1.0, 'tricky': 1.0, 'cookbook': 1.0, 'personally': 1.0, 'clean': 2.0, 'different': 1.0, 'complications': 1.0, 'storing': 1.0, 'far': 1.0, 'love': 3.0, 'for': 5.0, 'product': 1.0, 'under': 1.0, 'storage': 1.0, 'need': 1.0, 'or': 1.0, 'food': 1.0, 'aren': 1.0, 'immersion': 2.0, 'puree': 1.0, 'would': 1.0, 'cabinet': 1.0, 'not': 1.0, 'store': 2.0, 'doesn': 1.0, 'easy': 1.0, 'then': 1.0, 'take': 1.0, 'bulk': 2.0, 'works': 1.0, 'days': 3.0, 'day': 2.0, 'amounts': 1.0, 'definitely': 1.0, 'think': 1.0, 'put': 1.0, 'on': 2.0, 'your': 1.0, 'of': 3.0, 'the': 6.0, 'great': 3.0, 'does': 2.0, 'counter': 2.0, 'it': 8.0, 'this': 3.0, 'a': 3.0, 't': 2.0, 'i': 8.0, 'well': 2.0, 'in': 1.0, 'apart': 1.0, 'soup': 1.0, 'everything': 1.0, 'to': 5.0, 'job': 1.0, 'straight': 1.0, 'you': 1.0, 'nothing': 1.0, 'size': 1.0, 'recommend': 1.0, 'together': 1.0, 'too': 1.0, 'and': 11.0, 'landed': 1.0, 'is': 3.0, 'parts': 1.0, 'point': 1.0, 'how': 1.0, 'easily': 1.0, 'that': 3.0, 'so': 1.0, 'can': 2.0, 'included': 1.0, 'combinations': 1.0, 'first': 1.0, 'are': 1.0, 'containers': 1.0, 'also': 1.0, 'use': 1.0, 'all': 2.0, 'other': 1.0, 'home': 1.0, 'good': 1.0, 'made': 1.0, 'dishes': 1.0, 'just': 2.0, 'says': 1.0, 'many': 1.0, 'baby': 1.0, 'overall': 1.0, 'did': 1.0, 'complicated': 1.0, 'ton': 1.0, 'im': 1.0, 'research': 1.0, 'suggestions': 1.0, 'talking': 1.0, 'hours': 2.0, 'should': 1.0, 'finally': 1.0, 'have': 1.0, 'sit': 1.0, 'every': 1.0, 'no': 1.0}
Word element => {'organic': 1.0, 'fresh': 1.0, 'that': 1.0, 'benefit': 1.0, 'getting': 1.0, 'and': 1.0, 'her': 1.0, 'she': 1.0, 'christmas': 1.0, 'bought': 1.0, 'money': 1.0, 'baby': 4.0, 'lots': 1.0, 'daughter': 2.0, 'for': 3.0, 'saving': 1.0, 'food': 3.0, 'the': 2.0, 'my': 4.0, 'made': 1.0, 'i': 1.0, 'has': 1.0, 'of': 1.0, 'maker': 1.0, 'different': 1.0, 'delicious': 1.0, 'making': 1.0, 'real': 1.0, 'foods': 1.0, 'grandson': 2.0, 'herself': 1.0, 'said': 1.0, 'is': 3.0}
Word element => {'maker': 1.0, 'would': 1.0, 'learned': 1.0, 'thing': 1.0, 'eat': 1.0, 'didn': 1.0, 'girl': 1.0, 'out': 1.0, 'most': 1.0, 'dump': 1.0, 'had': 1.0, 'after': 1.0, 'day': 2.0, 'only': 1.0, 'that': 2.0, 'waste': 1.0, 'given': 1.0, 'pureed': 1.0, 'brim': 1.0, 'storage': 2.0, 'in': 3.0, 'turn': 1.0, 'click': 1.0, 'what': 1.0, 'when': 2.0, 'use': 3.0, 'blender': 1.0, 'and': 7.0, 'processor': 1.0, 'is': 1.0, 'immersion': 1.0, 'easy': 4.0, 'freezer': 1.0, 'made': 2.0, 'defrost': 1.0, 'haven': 1.0, 'it': 4.0, 'highly': 1.0, 'this': 2.0, 'recommend': 1.0, 'full': 1.0, 'but': 2.0, 'you': 3.0, 'able': 1.0, 'i': 9.0, 'cookbook': 1.0, 'daughter': 1.0, 'mom': 1.0, 'be': 1.0, 'filled': 1.0, 'was': 1.0, 'veggies': 1.0, 'to': 5.0, 'our': 2.0, 'as': 1.0, 'doubtful': 1.0, 'time': 1.0, 'can': 2.0, 'so': 3.0, 'on': 1.0, 'make': 2.0, 'a': 4.0, 't': 4.0, 'system': 1.0, 'size': 1.0, 'solids': 1.0, 'my': 3.0, 'tabbed': 1.0, 'rinse': 1.0, 'own': 1.0, 'an': 1.0, 'just': 1.0, 'by': 1.0, 'hot': 1.0, 'started': 1.0, 'baby': 4.0, 'has': 1.0, 'them': 3.0, 'squash': 1.0, 'd': 1.0, 'read': 1.0, 'have': 2.0, 'different': 1.0, 'clean': 1.0, 'types': 1.0, 'the': 11.0, 'of': 4.0, 'fruits': 1.0, 'whole': 1.0, 'reference': 1.0, 'right': 1.0, 'away': 1.0, 'jars': 2.0, 'trays': 1.0, 'great': 1.0, 'mistake': 1.0, 'used': 1.0, 'put': 1.0, 'much': 1.0, 'since': 2.0, 'one': 1.0, 'froze': 1.0, 'too': 1.0, 'lot': 1.0, 'lesson': 1.0, 'space': 1.0, 'they': 1.0, 'batch': 1.0, 'then': 1.0, 'we': 1.0, 'take': 1.0, 'water': 1.0, 'up': 1.0, 'don': 2.0, 'room': 1.0, 'fridge': 1.0, 'food': 5.0, 'or': 1.0, 'such': 1.0, 'for': 2.0, 'under': 1.0, 'same': 1.0, 'did': 1.0, 'working': 1.0, 'are': 2.0, 'first': 1.0, 'with': 1.0}
Word element => {'wonderful': 1.0, 'just': 1.0, 'avoiding': 1.0, 'matteress': 1.0, 'directly': 1.0, 'laying': 1.0, 'pressure': 1.0, 'under': 1.0, 'pillow': 1.0, 'this': 1.0, 'its': 1.0, 'try': 1.0, 'ever': 1.0, 'using': 1.0, 'favoring': 1.0, 'loves': 1.0, 'been': 2.0, 'today': 1.0, 'old': 1.0, 'i': 3.0, 'put': 1.0, 'on': 2.0, 'fight': 1.0, 'with': 1.0, 'mail': 1.0, 'firm': 1.0, 'but': 1.0, '2': 1.0, 'asleep': 2.0, 'the': 5.0, 'shifted': 1.0, 'is': 1.0, 'relieve': 1.0, 'side': 3.0, 'ordered': 1.0, 'and': 4.0, 'me': 1.0, 'she': 7.0, 'it': 6.0, 'fell': 2.0, 'one': 2.0, 'months': 1.0, 'bought': 1.0, 'didn': 1.0, 'got': 1.0, 'yesterday': 1.0, 'correct': 1.0, 'daughter': 1.0, 'when': 2.0, 'turn': 1.0, 'in': 1.0, 'my': 1.0, 'to': 4.0, 'smile': 1.0, 'her': 5.0, 'down': 1.0, 'face': 1.0, 'help': 1.0, 'little': 1.0, 'flattening': 1.0, 'of': 4.0, 'back': 1.0, 'fighting': 1.0, 'head': 4.0, 'from': 1.0, 'lays': 1.0, 't': 1.0, 'a': 2.0, 's': 2.0}
Word element => {'flat': 1.0, 'helps': 1.0, 'hopefully': 1.0, 'so': 1.0, 'prevents': 1.0, 'her': 1.0, 'of': 1.0, 'daughter': 1.0, 'my': 1.0, 'the': 2.0, 'and': 3.0, 'other': 1.0, 'back': 1.0, 'put': 1.0, 'got': 1.0, 'just': 1.0, 'sleep': 1.0, 'night': 1.0, 'i': 2.0, 'spot': 1.0, 'was': 1.0, 'to': 1.0, 'on': 2.0, 'this': 2.0, 'it': 1.0, 'she': 2.0, 'out': 1.0, 'a': 2.0, 'light': 1.0, 'has': 1.0, 'head': 2.0, 'like': 1.0, 'bald': 1.0}
Word element => {'away': 1.0, 'throw': 1.0, 'opened': 1.0, 'had': 1.0, 'package': 1.0, 'the': 1.0, 'like': 1.0, 'because': 1.0, 'having': 1.0, 'in': 1.0, 'came': 1.0, 'head': 2.0, 'shape': 1.0, 'matter': 1.0, 'couldn': 1.0, 'too': 1.0, 'his': 2.0, 'so': 2.0, 'was': 1.0, 'to': 2.0, 'i': 4.0, 'tried': 1.0, 'bought': 1.0, 'll': 1.0, 'my': 1.0, 'baby': 1.0, 'this': 1.0, 'with': 1.0, 'it': 7.0, 'for': 2.0, 'who': 1.0, 'far': 1.0, 'tilts': 1.0, 'set': 1.0, 'trouble': 1.0, 'forward': 1.0, 'seems': 1.0, 'will': 1.0, 'no': 1.0, 'position': 1.0, 'he': 1.0, 'how': 1.0, 'when': 1.0, 'am': 1.0, 'just': 1.0, 'worried': 1.0, 'been': 1.0, 'that': 2.0, 'return': 1.0, 'make': 1.0, 'difficult': 1.0, 'be': 1.0, 'him': 1.0, 'going': 1.0, 'breath': 1.0, 'a': 1.0, 't': 1.0}
Word element => {'also': 1.0, 'color': 1.0, 'support': 1.0, 'the': 1.0, 'would': 1.0, 'unisex': 1.0, 'recommend': 1.0, 'who': 1.0, 'anyone': 1.0, 'doubt': 1.0, 'is': 2.0, 'pillow': 1.0, 'for': 2.0, 'in': 1.0, 'which': 1.0, 'head': 1.0, 'newborn': 1.0, 'to': 1.0, 'choose': 1.0}
Word element => {'m': 1.0, 'so': 1.0, 'has': 1.0, 'well': 1.0, 'function': 1.0, 'should': 1.0, 'sided': 1.0, 'tell': 1.0, 'baby': 2.0, 'noticable': 1.0, 'used': 1.0, 'pillow': 1.0, 'circle': 1.0, 'velcro': 1.0, 'cover': 1.0, 'folds': 1.0, 'fabric': 1.0, 'pouch': 1.0, 'there': 1.0, 'for': 2.0, 'are': 1.0, 'support': 2.0, 'yet': 1.0, 'neck': 2.0, 'nice': 1.0, 'big': 1.0, 'with': 3.0, 'it': 6.0, 'spots': 1.0, 'holds': 1.0, 'is': 5.0, 'want': 1.0, 'using': 1.0, 'like': 1.0, 'which': 1.0, 'just': 1.0, 'by': 1.0, 'this': 2.0, 'kids': 1.0, 'and': 2.0, 'too': 2.0, 'hoping': 1.0, 'in': 1.0, 'brown': 1.0, 'my': 4.0, 'white': 1.0, 'be': 1.0, 'decor': 1.0, 'haven': 1.0, 'made': 1.0, 'ok': 1.0, 'why': 2.0, 'very': 2.0, 'end': 1.0, 'much': 1.0, 'nursery': 1.0, 'imagine': 1.0, 'of': 2.0, 'willow': 1.0, 'when': 1.0, 'you': 3.0, 'fawns': 1.0, 'impression': 1.0, 'first': 2.0, 'appealed': 1.0, 'as': 1.0, 'to': 3.0, 'was': 1.0, 'me': 1.0, 'i': 5.0, 'got': 1.0, 'raised': 1.0, 'flat': 1.0, 'small': 1.0, 'line': 1.0, 'sense': 1.0, 'organic': 1.0, 'can': 3.0, 'but': 2.0, 'since': 1.0, 'over': 2.0, 'don': 1.0, 'a': 5.0, 't': 3.0, 'the': 4.0, 'avoid': 1.0, 'nephew': 1.0, 'that': 5.0, 'babies': 1.0, 'shape': 1.0, 'head': 2.0}
Word element => {'well': 1.0, 'fit': 1.0, 'and': 1.0, 'very': 1.0, 'best': 1.0, 'are': 1.0, 'bibs': 2.0, 'pullover': 1.0, 'her': 1.0, 'yrs': 1.0, 'almost': 1.0, 'nice': 1.0, 'share': 1.0, 'shortcake': 1.0, 'strawberry': 1.0, 'daughters': 1.0, 'the': 1.0, 'these': 2.0, 'my': 2.0, 'ago': 1.0, 'daughter': 1.0, 'too': 1.0, 'grand': 1.0, '30': 1.0, 'love': 1.0, 'cloth': 1.0, 'products': 1.0, 'so': 1.0, 'had': 1.0, 'to': 1.0, 'with': 1.0, 'little': 1.0}
Word element => {'complain': 1.0, 'dont': 1.0, 'when': 1.0, 'son': 1.0, 'cup': 1.0, 'my': 1.0, 'cute': 1.0, 'find': 1.0, 'the': 1.0, 'these': 1.0, 'store': 1.0, 'his': 1.0, 'drinks': 1.0, 'cant': 1.0, 'hate': 1.0, 'and': 1.0, 'in': 1.0, 'r': 1.0, 'u': 1.0, 'warm': 1.0, 'so': 1.0, 'now': 1.0, 'was': 1.0, 'snack': 1.0, 'idea': 1.0, 'a': 1.0, 'good': 1.0, 'with': 1.0, 'this': 1.0, 'he': 1.0}
Word element => {'baby': 1.0, 'like': 1.0, 'do': 1.0, 'book': 1.0, 'but': 1.0, 'than': 1.0, 'thought': 1.0, 'instead': 1.0, 'be': 1.0, 'would': 1.0, 'to': 1.0, 'was': 1.0, 'smaller': 1.0, 'you': 1.0, 'i': 2.0, 'how': 1.0, 'the': 1.0, 'are': 1.0, 'carry': 1.0, 'of': 1.0, 'cards': 1.0, 'it': 2.0, 'with': 1.0, 'convenient': 1.0, 'a': 1.0}
Word element => {'value': 1.0, 'great': 1.0, 'use': 1.0, 'perfect': 1.0, 'wish': 1.0, 'my': 1.0, 'when': 1.0, 'i': 2.0, 'were': 1.0, 'children': 1.0, 'it': 1.0, 'this': 1.0, 'born': 1.0, 'well': 1.0, 'for': 2.0, 'parents': 1.0, 'had': 1.0, 'now': 1.0, 'but': 1.0, 'gifts': 1.0, 'very': 1.0, 'discovered': 1.0, 'and': 1.0, 'constructed': 1.0, 'new': 1.0}
Word element => {'recommend': 1.0, 'would': 1.0, 'changing': 1.0, 'when': 1.0, 'for': 1.0, 'like': 1.0, 'keeps': 1.0, 'no': 1.0, 'case': 1.0, 's': 1.0, 'changepal': 1.0, 'bag': 1.0, 'separate': 1.0, 'have': 1.0, 'items': 1.0, 'everything': 1.0, 'my': 2.0, 'how': 1.0, 'together': 1.0, 'this': 1.0, 'it': 1.0, 'and': 1.0, 'perfectly': 1.0, 'i': 3.0, 'fits': 1.0, 'in': 1.0, 'the': 1.0, 'diaper': 1.0, 'baby': 2.0, 'longer': 1.0, 'look': 1.0, 'to': 1.0}
Word element => {'diaper': 1.0, 'bag': 1.0, 'to': 1.0, 'in': 1.0, 'carry': 1.0, 'bulky': 1.0, 'too': 1.0}
Word element => {'a': 1.0, 'to': 1.0, 'shopper': 1.0, 'grandma': 1.0, 'what': 1.0, 'line': 1.0, 'on': 1.0, 'going': 1.0, 'when': 1.0, 'as': 1.0, 'purchase': 1.0, 'them': 2.0, 'your': 2.0, 'they': 1.0, 'not': 1.0, 'just': 2.0, 'sure': 1.0, 'grandson': 2.0, 'are': 1.0, 'these': 1.0, 'the': 1.0, 'love': 1.0, 'for': 1.0, 'you': 1.0, 'sheets': 2.0, 'wash': 1.0, 'am': 1.0, 'order': 1.0, 'so': 1.0, 'i': 3.0, 'is': 1.0, 'really': 1.0, 'loves': 1.0, 'good': 1.0, 'ordered': 1.0, 'cute': 1.0, 'get': 1.0, 'and': 2.0, 'up': 1.0, 'my': 2.0, 'happy': 2.0, 'this': 1.0, 'with': 1.0}
Word element => {'think': 1.0, 'do': 1.0, 'and': 1.0, 'delivery': 1.0, 'the': 3.0, 't': 1.0, 'great': 1.0, 'blame': 1.0, 'don': 1.0, 'i': 3.0, 'well': 1.0, 'know': 1.0, 'not': 3.0, 'should': 1.0, 'they': 1.0, 'brand': 1.0, 'spanking': 1.0, 'new': 1.0, 'would': 4.0, 'but': 3.0, 'work': 1.0, 'back': 1.0, 'did': 1.0, 'from': 1.0, 'properly': 1.0, 'problem': 1.0, 'was': 1.0, 'to': 1.0, 'aviv': 1.0, 'more': 1.0, 'is': 1.0, 'it': 3.0, 'this': 1.0, 'have': 1.0, 'that': 2.0, 'been': 1.0, 'what': 1.0, 'judaica': 1.0, 'send': 1.0, 'company': 1.0, 'purchase': 1.0, 'paid': 1.0, 'again': 2.0, 'product': 3.0, 'expensive': 1.0, 'for': 1.0, 'working': 1.0, 'then': 1.0, 'order': 1.0}
Word element => {'same': 1.0, 'i': 3.0, 'color': 1.0, 'my': 2.0, 'of': 2.0, 'the': 1.0, '2': 2.0, 'each': 1.0, 'one': 2.0, 'for': 1.0, 'would': 1.0, 'at': 2.0, 'not': 1.0, 'surprised': 1.0, 'work': 1.0, 'was': 2.0, 'who': 1.0, 'purchased': 1.0, 'be': 1.0, 'home': 1.0, 'did': 1.0, 'all': 1.0, 'also': 1.0, 'sent': 1.0, 'grandchildren': 1.0, 'that': 1.0}
Word element => {'other': 1.0, 'used': 1.0, 'and': 1.0, 'him': 1.0, 'cleaned': 1.0, 'i': 1.0, 'right': 1.0, 'baby': 1.0, 'went': 1.0, 'my': 1.0, 'after': 1.0, 'so': 1.0, 'wrong': 1.0, 'on': 2.0, 'not': 1.0, 'quite': 1.0, 'are': 1.0, 'pads': 1.0, 'was': 2.0, 'turned': 2.0, 'the': 6.0, 'mess': 1.0, 'free': 1.0, 'they': 1.0, 'ink': 2.0, 'it': 3.0, 'telling': 1.0, 'in': 1.0, 'sound': 1.0, 'side': 3.0, 'but': 1.0, 'hand': 2.0, 's': 1.0, 'prints': 1.0, 'made': 1.0, 'out': 2.0, 'as': 2.0, 'ok': 2.0, 'up': 2.0, 'sticker': 1.0, 'which': 1.0}
Word element => {'a': 1.0, 'that': 1.0, 'food': 1.0, 'your': 1.0, 'in': 1.0, 'reason': 1.0, 'some': 1.0, 'for': 2.0, 'if': 1.0, 'described': 1.0, 'mouse': 2.0, 'is': 1.0, 'really': 1.0, 'sturdy': 1.0, 'three': 1.0, 'minnie': 2.0, 'my': 1.0, 'the': 2.0, 'highly': 1.0, 'broke': 1.0, 'recommend': 1.0, 'she': 1.0, 'accidentally': 1.0, 'was': 2.0, 'word': 1.0, 's': 2.0, 'heartbroken': 1.0, 'exactly': 1.0, 'old': 1.0, 'i': 2.0, 'it': 1.0, 'this': 1.0, 'market': 1.0, 'plate': 1.0, 'and': 1.0, 'ware': 1.0, 'year': 1.0, 'replacement': 1.0, 'as': 1.0}
Word element => {'compliments': 1.0, 'great': 1.0, 'it': 2.0, 'glad': 1.0, 'i': 3.0, 'bought': 2.0, 'this': 1.0, 'match': 1.0, 'lamp': 1.0, 'to': 1.0, 'the': 2.0, 'm': 1.0, 'nursery': 2.0, 'so': 1.0, 'set': 1.0}
Word element => {'the': 1.0, 'in': 2.0, 'better': 1.0, 'ever': 1.0, 'looks': 1.0, 'reasonable': 1.0, 'life': 1.0, 'good': 1.0, 'pictures': 1.0, 'price': 1.0, 'i': 1.0, 'very': 1.0, 'quality': 2.0, 'and': 1.0, 'much': 1.0, 'than': 2.0, 'real': 1.0, 'higher': 1.0, 'expected': 1.0}
Word element => {'including': 1.0, 'full': 1.0, 'love': 1.0, 'it': 2.0, 'piece': 1.0, 'every': 1.0, 'this': 1.0, 'is': 3.0, 'a': 2.0, 'the': 1.0, 'are': 1.0, 'some': 1.0, 'good': 2.0, 'quality': 1.0, 'as': 1.0, 'shown': 1.0, 'set': 2.0, 'buy': 1.0, 'extras': 1.0, 'colors': 1.0}
Word element => {'11': 1.0, 'ross': 1.0, 'at': 1.0, 'beat': 1.0, 'matches': 1.0, 'that': 2.0, 'lamp': 1.0, 't': 1.0, '99': 1.0, 'the': 2.0, 'my': 1.0, 'room': 1.0, 'boys': 1.0, 'a': 1.0, 'patterns': 1.0, 'could': 1.0, 'love': 1.0, 'for': 2.0, 'can': 1.0, 'wonderful': 1.0, 'looks': 1.0, 'quality': 1.0, 'and': 1.0, 'good': 1.0, 'price': 1.0, 'baby': 1.0, 'colors': 1.0, 'in': 1.0, 'also': 1.0, 'bought': 1.0, 'be': 1.0, 'used': 1.0, 'girl': 1.0, 'i': 1.0}
Word element => {'babyish': 1.0, 'or': 1.0, 'froo': 2.0, 'being': 1.0, 'perfect': 1.0, 'the': 2.0, 'is': 2.0, 'without': 1.0, 'it': 1.0, 'love': 1.0, 'quality': 1.0, 'of': 1.0, 'whole': 1.0, 'this': 1.0, 'too': 2.0, 'excellent': 1.0, 'bedding': 1.0, 'we': 1.0, 'collection': 1.0}
Word element => {'hands': 1.0, 'rocks': 1.0, 'in': 1.0, 'fell': 1.0, 'stuff': 1.0, 'joke': 1.0, 'down': 1.0, 'a': 1.0, 'more': 1.0, 'love': 1.0, 'it': 1.0, 'i': 1.0, 'thought': 1.0, 'tank': 1.0, 'saw': 1.0, 'this': 2.0, 'bull': 1.0, 'on': 1.0, 'shark': 1.0, 'as': 1.0, 'and': 2.0, 'bought': 1.0, 'crap': 1.0}
Word element => {'pouch': 1.0, 'breastfeeding': 1.0, 'easy': 1.0, 'on': 1.0, 'carry': 1.0, 'way': 1.0, 'without': 1.0, 'it': 1.0, 'and': 1.0, 'very': 1.0, 'small': 1.0, 'folds': 1.0, 'to': 1.0, 'discreet': 1.0, 'how': 1.0, 'love': 1.0, 'comfortable': 1.0, 'embarrassment': 1.0, 'in': 1.0, 'any': 1.0, 'lovely': 1.0, 'your': 1.0, 'public': 1.0, 'into': 1.0, 'a': 1.0}
Word element => {'off': 1.0, 'them': 1.0, 'throw': 1.0, 'will': 1.0, 'blankets': 1.0, 'keep': 1.0, 't': 1.0, 'because': 1.0, 'especially': 1.0, 'staying': 1.0, 'like': 1.0, 'know': 1.0, 'happy': 1.0, 'me': 1.0, 'that': 1.0, 'on': 2.0, 'it': 1.0, 'worth': 1.0, 'snows': 1.0, 'this': 3.0, 'shoes': 1.0, 'he': 3.0, 'ny': 1.0, 'have': 1.0, 'march': 1.0, 'doesn': 1.0, 'was': 3.0, 'northern': 1.0, 'and': 4.0, 'son': 1.0, 'canada': 1.0, 'very': 1.0, 'i': 5.0, 'took': 1.0, 'every': 1.0, 'in': 2.0, 'for': 2.0, 'made': 1.0, 'live': 1.0, 'purchase': 1.0, 'my': 1.0, 'running': 1.0, 'end': 1.0, 'his': 2.0, 'got': 1.0, 'even': 1.0, 'began': 1.0, 'definitely': 1.0, 'close': 1.0, 'jogging': 1.0, 'socks': 1.0, 'stroller': 1.0, 'the': 2.0, 'of': 2.0, 'april': 1.0, 'just': 2.0, 'time': 1.0, 'here': 1.0, 'him': 1.0, 'would': 1.0, 'feet': 1.0, 'out': 1.0, 'after': 1.0, 'to': 3.0, 'outside': 1.0, 'our': 1.0, 'runs': 1.0, 'until': 1.0, 'nice': 1.0, 'no': 1.0, 'toasty': 1.0, 'warm': 2.0, 'when': 1.0}
Word element => {'muff': 1.0, 'of': 1.0, 'out': 1.0, 'easy': 1.0, 'idea': 1.0, 'in': 2.0, 'he': 1.0, 'this': 2.0, 'item': 1.0, 'purchase': 1.0, 'we': 1.0, 'even': 1.0, 'zipper': 1.0, 'stroller': 1.0, 'great': 1.0, 'the': 3.0, 'red': 1.0, 'though': 1.0, 'warm': 1.0, 'to': 2.0, 'elements': 1.0, 'is': 4.0, 'since': 1.0, 'black': 1.0, 'a': 2.0, 'from': 1.0, 'decided': 1.0, 'son': 1.0, 'very': 2.0, 'get': 1.0, 'and': 1.0, 'our': 2.0, 'that': 1.0, 'helpful': 1.0, 'keeps': 1.0, 'protected': 1.0}
Word element => {'trips': 1.0, '25': 1.0, 'cost': 1.0, 'justifies': 1.0, 'issue': 1.0, 'we': 2.0, 'now': 1.0, 'mode': 1.0, 'very': 1.0, 'with': 2.0, 'position': 1.0, 'young': 1.0, 'carry': 5.0, 'more': 1.0, 'could': 2.0, 'lighter': 1.0, 'about': 1.0, 'care': 1.0, 'personally': 1.0, 'bulk': 1.0, 'padded': 1.0, 'throughout': 1.0, 'bulkier': 1.0, 'heavy': 1.0, 'attracts': 1.0, 'having': 1.0, 'wear': 1.0, 'piggy': 1.0, 'without': 3.0, 'transporting': 1.0, 'camera': 1.0, 'nursing': 1.0, 'set': 1.0, 'connected': 1.0, '10': 1.0, 'water': 3.0, 'thick': 1.0, 'older': 1.0, 'pad': 5.0, 'day': 1.0, 'disposable': 1.0, 'or': 2.0, 'feature': 2.0, 'bottles': 1.0, 'better': 3.0, 'think': 1.0, 'pack': 7.0, 'enough': 1.0, 'tight': 1.0, 'would': 3.0, 'may': 1.0, 'me': 5.0, 'this': 4.0, 'attached': 1.0, '2': 11.0, 'compartment': 1.0, 'organic': 3.0, 'at': 2.0, 'can': 2.0, 'is': 19.0, 'caps': 1.0, 'than': 4.0, 'he': 1.0, 'looked': 1.0, 'changing': 3.0, 'much': 3.0, 'put': 1.0, 'box': 1.0, 'old': 1.0, 'of': 16.0, 'the': 46.0, 'magnet': 1.0, 'was': 3.0, 'sack': 1.0, 'add': 1.0, 'fit': 4.0, 't': 3.0, 'love': 1.0, 'bottom': 1.0, 'pieces': 1.0, 'for': 13.0, 'into': 1.0, 'fabric': 4.0, 'pouch': 1.0, 'piece': 3.0, 'full': 1.0, 'somewhat': 1.0, 'easier': 1.0, 'travel': 3.0, 'observations': 1.0, 'rolls': 1.0, 'each': 2.0, 'new': 1.0, 'tall': 1.0, 'construction': 1.0, 'received': 2.0, 'only': 2.0, 'nipples': 1.0, 'right': 1.0, 'to': 14.0, 'being': 1.0, 'mother': 1.0, 'up': 1.0, 'mid': 1.0, 'diaper': 3.0, 'bags': 3.0, 'as': 4.0, 'awkward': 4.0, 'carrier': 5.0, 'pocket': 4.0, 'deal': 1.0, 'baby': 8.0, 'small': 4.0, 'held': 2.0, 'decided': 1.0, 'i': 19.0, 'trip': 1.0, 'medela': 3.0, '1': 5.0, 'those': 1.0, 'pump': 2.0, 'performance': 1.0, 'rather': 1.0, 'backpack': 8.0, 'padding': 1.0, 'cons': 1.0, 'backed': 1.0, 'handles': 1.0, 'parts': 1.0, 'earbud': 1.0, 'a': 14.0, 'bag': 1.0, 'cover': 1.0, 'will': 2.0, 'attaches': 1.0, 'felt': 1.0, 'however': 1.0, 'often': 1.0, 'be': 2.0, 'it': 30.0, 'functional': 1.0, 'higher': 1.0, 'bother': 1.0, 'good': 1.0, 'lint': 1.0, 'hat': 2.0, 'last': 1.0, 'because': 1.0, 'pacifiers': 2.0, 'that': 5.0, 'pockets': 2.0, 'previous': 2.0, 'when': 3.0, 'crazy': 1.0, 'bug': 1.0, 'roll': 2.0, 'unraveling': 1.0, 'version': 3.0, 'closure': 1.0, 'mesh': 1.0, 'like': 6.0, 'boxes': 1.0, 'non': 1.0, 'main': 1.0, 'in': 13.0, 'burlap': 1.0, 'are': 2.0, 'my': 4.0, 'room': 2.0, 'diapers': 1.0, 'but': 5.0, 'extra': 1.0, 'opinion': 1.0, 'pro': 1.0, '3': 3.0, 'too': 1.0, 'weight': 3.0, 'conclusion': 1.0, 'comfortable': 1.0, 'say': 1.0, 'weekend': 1.0, 'velcros': 1.0, 'top': 2.0, 'snugly': 1.0, 'most': 1.0, 'there': 2.0, 'black': 2.0, 'never': 2.0, 'search': 1.0, 'nice': 2.0, 'have': 3.0, 'shows': 1.0, 'webbing': 1.0, 'acts': 1.0, 'any': 1.0, 'other': 1.0, 'counts': 1.0, 'an': 1.0, 'so': 6.0, 'luggage': 5.0, 'back': 3.0, 'dirt': 1.0, 'on': 4.0, 'onsies': 1.0, 'you': 1.0, 'way': 2.0, 'all': 1.0, 'call': 1.0, 'made': 1.0, 'reminds': 1.0, 'takes': 1.0, 'pros': 1.0, 'wash': 1.0, 'worth': 1.0, '4': 2.0, 'sun': 1.0, 'swing': 1.0, 'important': 1.0, 'plastic': 2.0, 'also': 1.0, 'disposal': 1.0, 'holds': 1.0, 'dispenser': 1.0, 'absolutely': 1.0, 'one': 4.0, '5': 1.0, 's': 2.0, 'doesn': 1.0, 'additional': 2.0, 'bottle': 5.0, 'flying': 1.0, '6': 1.0, 'count': 2.0, 'adds': 2.0, 'below': 1.0, 'don': 1.0, 'still': 2.0, 'neither': 1.0, 'outlet': 1.0, 'squeeze': 1.0, 'nor': 1.0, 'per': 1.0, 'plush': 1.0, 'tissues': 1.0, 'benefit': 1.0, 'returned': 1.0, 'con': 1.0, 'out': 1.0, 'magnetic': 1.0, 'front': 3.0, 'which': 3.0, 'kindle': 2.0, 'wipes': 2.0, 'realized': 1.0, 'stability': 1.0, 'phone': 1.0, 'quality': 1.0, 'stick': 1.0, 'didn': 1.0, 'just': 1.0, 'and': 18.0, 'tried': 1.0, 'range': 1.0, 'capacity': 1.0}
Word element => {'ergo': 2.0, 'the': 2.0, 'attach': 1.0, 'impossible': 1.0, 's': 2.0, 'i': 1.0, 'think': 1.0, 'a': 1.0, 'it': 2.0, 'great': 1.0, 'bag': 2.0, 'next': 1.0, 'to': 4.0, 'straps': 1.0, 'but': 1.0, 'truthfully': 1.0}
Word element => {'help': 1.0, 'big': 1.0, 'was': 1.0, 'free': 1.0, 'being': 1.0, 'hands': 1.0, 'the': 2.0, 'in': 1.0, 'carrying': 1.0, 'not': 1.0, 'used': 2.0, 'reasonable': 1.0, 'down': 1.0, 'be': 1.0, 'to': 1.0, 'your': 1.0, 'recently': 1.0, 'baby': 1.0, 'don': 1.0, 'it': 1.0, 'with': 2.0, 'traveled': 1.0, 't': 1.0, 's': 1.0, 'a': 3.0, 'since': 1.0, 'backpack': 2.0, 'really': 1.0, 'is': 1.0, 'ergo': 1.0, 'my': 1.0, 'this': 1.0, 'soft': 1.0, 'you': 1.0, 'when': 1.0, 'huge': 1.0, 'one': 1.0, '2': 1.0, 'but': 1.0, 'designed': 1.0, 'size': 1.0, 'so': 1.0, 'load': 1.0, 'year': 1.0, 'its': 1.0, 'yourself': 1.0, 'much': 1.0, 'infant': 1.0, 'junk': 1.0, 'i': 1.0, 'old': 1.0, 'too': 1.0, 'and': 2.0}
Word element => {'watching': 1.0, 'many': 1.0, 'have': 1.0, 'on': 1.0, 'ornament': 1.0, 'own': 1.0, 'will': 1.0, 'handprint': 1.0, 'put': 1.0, 'could': 1.0, 'grow': 1.0, 'cut': 1.0, 'would': 1.0, 'grandpa': 1.0, 'as': 1.0, 'big': 1.0, 'enough': 2.0, 'does': 1.0, 'her': 5.0, 'having': 1.0, 'wrote': 1.0, 'told': 1.0, 'who': 1.0, 'enjoying': 1.0, 'niece': 2.0, 'old': 1.0, 'i': 2.0, 'when': 1.0, 'tree': 3.0, 'for': 2.0, 'gift': 1.0, 'bought': 1.0, 'letter': 1.0, 'my': 2.0, 'it': 1.0, 'this': 1.0, 'first': 1.0, 'was': 3.0, 'to': 1.0, 'years': 1.0, 'baby': 1.0, 'she': 4.0, 'a': 1.0, '34': 2.0, 'the': 3.0, 'great': 1.0, 'and': 3.0}
Word element => {'washing': 1.0, 'all': 1.0, 'with': 1.0, 'soft': 1.0, 'super': 1.0, 'and': 1.0, 'simple': 1.0, 'store': 1.0, 'they': 2.0, 'out': 1.0, 'them': 2.0, 'for': 1.0, 'sold': 1.0, 'received': 1.0, 'loved': 1.0, 'up': 1.0, '34': 2.0, 'desperate': 1.0, 'held': 1.0, 'gift': 1.0, 'find': 2.0, 'was': 2.0, 'to': 3.0, 've': 2.0, 'pieces': 1.0, 'the': 2.0, 'these': 1.0, 'duplicates': 1.0, 'twins': 1.0, 'so': 1.0, 'i': 1.0, 'here': 1.0, 'my': 1.0, 'happy': 1.0, 'well': 1.0, 'a': 1.0, 'since': 1.0}
Word element => {'your': 1.0, 'on': 1.0, 'give': 1.0, 'quite': 1.0, 'wall': 1.0, 's': 1.0, 'get': 1.0, 'couple': 1.0, 'and': 1.0, 'yourself': 1.0, 'very': 1.0, 'like': 1.0, 'i': 1.0, 'beautiful': 1.0, 'adds': 1.0, 'it': 3.0, 'a': 2.0, 'the': 2.0, 'my': 1.0, 'special': 1.0, 'because': 1.0, 'just': 1.0, 'looks': 1.0, 'feel': 1.0, 'hours': 1.0, 'apply': 1.0, 'tall': 1.0, 'nursery': 1.0, 'picture': 1.0, 'help': 1.0, 'have': 1.0, 'to': 3.0, 'had': 1.0, 'husband': 1.0}
Word element => {'nice': 1.0, 'though': 1.0, 'sort': 1.0, 'longer': 1.0, 'us': 1.0, 'it': 1.0, 'instruction': 1.0, 'than': 1.0, 'so': 1.0, 'sheet': 2.0, 'thorugh': 1.0, 'differently': 1.0, 'out': 1.0, 'laid': 1.0, 'of': 1.0, 'pieces': 1.0, 'were': 1.0, 'parts': 1.0, 'what': 2.0, 'had': 1.0, 'requests': 1.0, 'questions': 1.0, 'was': 2.0, 'recommend': 1.0, 'the': 8.0, 'customer': 1.0, 'from': 1.0, 'shipping': 1.0, 'is': 1.0, 'responses': 1.0, 'quick': 1.0, 'provided': 1.0, 'this': 2.0, 'two': 1.0, 'i': 2.0, 'baby': 1.0, 'got': 1.0, 'use': 1.0, 'sections': 1.0, 'in': 2.0, 'any': 1.0, 'all': 2.0, 'to': 5.0, 'our': 1.0, 'room': 2.0, 'received': 1.0, 'fast': 1.0, 'trunk': 1.0, 'where': 1.0, 'for': 2.0, 'one': 2.0, 'determine': 1.0, 'decal': 2.0, 's': 1.0, 'a': 3.0, 'goes': 1.0, 'made': 1.0, 'took': 1.0, 'order': 1.0, 'item': 1.0, 'can': 1.0, 'looking': 1.0, 'person': 1.0, 'definitely': 1.0, 'service': 1.0, 'people': 1.0, 'on': 2.0, 'put': 1.0, 'up': 1.0, 'and': 1.0, 'do': 1.0, 'branch': 2.0, 'leaves': 1.0, 'little': 2.0, 'negative': 1.0, 'about': 1.0, 'thing': 1.0}
Word element => {'got': 1.0, 'also': 1.0, 'amazing': 1.0, 'son': 1.0, 'decors': 1.0, 'decor': 1.0, 'let': 1.0, 'nursery': 1.0, 'customize': 1.0, 'the': 3.0, 'new': 1.0, 'my': 2.0, 'color': 1.0, 'for': 1.0, 'tree': 1.0, 'love': 1.0, 'quick': 1.0, 'it': 2.0, 'pop': 1.0, 's': 1.0, 'wall': 1.0, 'towards': 1.0, 'i': 2.0, 'me': 1.0, 'and': 2.0, 'really': 1.0, 'looks': 1.0, 'side': 1.0, 'sways': 1.0}
Word element => {'fall': 1.0, 'a': 1.0, 'nights': 1.0, 'winter': 1.0, 'blanket': 1.0, 'like': 1.0, 'blankets': 1.0, 'of': 1.0, 'tangled': 1.0, 'don': 1.0, 'only': 1.0, 'it': 2.0, 'they': 1.0, 'cold': 1.0, 'are': 1.0, 'my': 1.0, 'sacks': 1.0, 'is': 2.0, 'sleep': 1.0, 'get': 1.0, 'do': 1.0, 'more': 1.0, 't': 1.0, 'great': 1.0, 'heavy': 1.0, 'problem': 1.0, 'was': 1.0, 'not': 1.0, 'that': 1.0, 'enough': 1.0, 'for': 1.0}
Word element => {'cute': 1.0, 'super': 1.0}
Word element => {'recommend': 1.0, 'def': 1.0, 'these': 1.0, 'thinking': 1.0, 'though': 1.0, 'had': 1.0, 'month': 1.0, 'from': 1.0, 'for': 2.0, 'one': 1.0, 'i': 1.0, 've': 1.0, 'wished': 1.0, 'better': 1.0, 'late': 1.0, 'ordering': 1.0, 'than': 1.0, 'would': 1.0, 'never': 1.0, 'a': 1.0, 'friend': 1.0, 'their': 1.0, 'about': 1.0, 'baby': 1.0, 'shower': 1.0}
Word element => {'photos': 1.0, 'shirts': 1.0, 'little': 1.0, 'my': 1.0, 'on': 1.0, 'perfect': 1.0, 'and': 1.0, 'color': 1.0, 'to': 1.0, 'exactly': 1.0, 'were': 1.0, 'what': 1.0, 'looking': 1.0, 'i': 1.0, 'show': 1.0, 'ones': 1.0, 'was': 1.0, 'look': 1.0, 'for': 2.0, 'these': 1.0, 'they': 1.0, 'true': 1.0}
Word element => {'parents': 1.0, 'gift': 1.0, 'great': 1.0, 'a': 1.0, 'also': 1.0, 'is': 1.0, 'everyone': 1.0, 'recommend': 1.0, 'definitely': 1.0, 'he': 1.0, 'first': 2.0, 'this': 1.0, 'these': 1.0, 'the': 1.0, 'month': 2.0, 'she': 1.0, 'most': 1.0, 'baby': 2.0, 'little': 1.0, 'that': 1.0, 'during': 1.0, 'and': 2.0, 'changes': 1.0, 'her': 1.0, 'year': 1.0, 'awesome': 1.0, 'his': 1.0, 'are': 1.0, 'as': 1.0, 'to': 2.0, 'grows': 1.0, 'your': 1.0, 'photograph': 1.0, 'of': 2.0, 'life': 1.0, 'i': 3.0, 'every': 2.0, 'really': 1.0, 'like': 1.0, 'you': 2.0, 'idea': 1.0, 'am': 1.0, 'so': 1.0, 'happy': 1.0, 'my': 1.0, 'stickers': 1.0, 'have': 1.0, 'photos': 1.0, '12': 1.0, 'months': 1.0, 'thoughtful': 1.0, 'for': 2.0, 'where': 1.0, 'see': 1.0, 'encourage': 1.0, 'rapid': 1.0, 'new': 1.0, 'would': 1.0}
Word element => {'seats': 1.0, 'other': 1.0, 'with': 1.0, 'squeezes': 1.0, 'facing': 1.0, 'quite': 1.0, '3': 1.0, '3i': 1.0, 'lbs': 1.0, 'rxt': 1.0, 'in': 2.0, 'bought': 1.0, 'be': 1.0, 'nicely': 1.0, 'rearfacing': 1.0, 'carseat': 5.0, 'all': 1.0, 'least': 1.0, 'to': 1.0, 'he': 1.0, 'perfect': 1.0, 'this': 2.0, 'fell': 1.0, 'it': 4.0, 'done': 1.0, 'riding': 1.0, 'asleep': 1.0, 'the': 2.0, 'love': 1.0, 'for': 3.0, 'parents': 1.0, 'right': 2.0, 'rear': 1.0, 'hated': 1.0, 'old': 2.0, '23lbs': 1.0, '2': 1.0, 'but': 2.0, 'aren': 1.0, 'his': 2.0, 'year': 2.0, 'infant': 1.0, 'savvy': 1.0, 'set': 1.0, 'over': 1.0, 'up': 1.0, 'of': 1.0, 'out': 1.0, 'box': 1.0, 't': 1.0, 's': 2.0, 'could': 1.0, 'a': 2.0, 'tricky': 1.0, 'at': 1.0, 'who': 1.0, 'exactly': 1.0, 'fits': 1.0, 'my': 2.0, 'extended': 1.0, 'which': 1.0, 'safest': 1.0, '1': 1.0, 'great': 2.0, 'until': 1.0}
Word element => {'out': 1.0, 'anyone': 1.0, 'to': 1.0, 'recommend': 1.0, 'def': 1.0, 'turned': 1.0, 'so': 1.0, 'theme': 1.0, 'these': 1.0, 'in': 1.0, 'for': 1.0, 'my': 1.0, 'monthly': 1.0, 'cute': 1.0, 'pictures': 2.0, 'love': 1.0, 'great': 2.0, 'woodland': 1.0}
Word element => {'disappointing': 1.0, 'son': 1.0, 'good': 1.0, 'which': 1.0, 'fact': 1.0, 'well': 1.0, 'i': 4.0, 'have': 2.0, 'one': 2.0, 'by': 1.0, 'advertising': 1.0, 'carried': 2.0, 'that': 6.0, 'case': 1.0, 'a': 4.0, 's': 2.0, 'shows': 1.0, 'bag': 5.0, 'plainly': 1.0, 'very': 3.0, 'picture': 2.0, 'provide': 1.0, 'this': 4.0, 'hooks': 1.0, 'it': 1.0, 'does': 2.0, 'nor': 1.0, 'advertised': 1.0, 'shoulder': 2.0, 'false': 1.0, 'but': 1.0, 'and': 5.0, 'am': 1.0, 'you': 2.0, 'received': 1.0, 'sent': 2.0, 'shown': 1.0, 'about': 1.0, 'despite': 1.0, 'is': 4.0, 'clear': 1.0, 'service': 2.0, 'many': 1.0, 'strap': 3.0, 'seller': 4.0, 'no': 1.0, 'let': 1.0, 'feature': 1.0, 'or': 2.0, 'speaking': 2.0, 'myself': 1.0, 'to': 3.0, 'in': 1.0, 'seat': 3.0, 'as': 4.0, 'any': 1.0, 'was': 3.0, 'refund': 1.0, 'not': 2.0, 'my': 2.0, 'me': 1.0, 'there': 1.0, 'give': 2.0, 'excellent': 1.0, 'carrying': 1.0, 'be': 3.0, 'attachments': 1.0, 'from': 1.0, 'allow': 1.0, 'between': 1.0, 'free': 1.0, 'refuses': 1.0, 'only': 2.0, 'accept': 1.0, 'allows': 1.0, 'with': 3.0, 't': 1.0, 'communications': 1.0, 'replacement': 1.0, 'hook': 1.0, 'offer': 1.0, 'assembly': 1.0, 'up': 2.0, 'car': 1.0, 'consider': 1.0, 'type': 2.0, 'the': 15.0, 'of': 1.0, 'needs': 1.0, 'worse': 1.0, 'who': 1.0, 'experience': 1.0, 'hopes': 1.0, 'amazon': 2.0, 'get': 1.0, 'can': 1.0, 'so': 1.0, 'frustrated': 1.0, 'review': 1.0, 'recourse': 1.0, 'after': 1.0, 'their': 1.0, 'customer': 1.0, 'care': 1.0, 'did': 1.0}
Word element => {'used': 1.0, 'get': 1.0, 'cups': 1.0, 'my': 1.0, 'replacement': 1.0, 'are': 1.0, 'them': 1.0, 'alot': 1.0, 'a': 1.0, 'highly': 1.0, 'recommend': 1.0, 'of': 1.0, 'good': 1.0, 'lollacups': 1.0, 'the': 3.0, '2': 1.0, 'purchased': 1.0, 'right': 1.0, 'to': 2.0, 'grandson': 1.0, 'straws': 1.0, 'i': 2.0, 'took': 1.0, 'it': 1.0, 'have': 2.0, 'thing': 1.0, 'because': 1.0}
Word element => {'side': 1.0, 'ordered': 1.0, 'have': 1.0, 'straws': 1.0, 'issues': 1.0, 'on': 1.0, 'with': 1.0, 'not': 1.0, 'had': 1.0, 'be': 1.0, 'to': 2.0, 'them': 2.0, 'no': 1.0, 'safe': 1.0, 'just': 1.0, 'use': 1.0, 'the': 2.0, 'yet': 1.0}
Word element => {'of': 1.0, 'about': 1.0, 'concerned': 1.0, 'now': 1.0, 'but': 1.0, 'blue': 1.0, 'own': 1.0, 'his': 1.0, 'getting': 1.0, 'on': 1.0, 'planning': 1.0, 'companies': 1.0, 'in': 1.0, 'm': 1.0, '34': 2.0, 'because': 1.0, 'especially': 1.0, 'better': 1.0, 'not': 1.0, 'were': 2.0, 'son': 1.0, 'begin': 1.0, 'either': 1.0, 'what': 1.0, 'cup': 1.0, 'or': 1.0, 'batch': 1.0, 'bad': 1.0, 'got': 1.0, 'if': 1.0, 'drink': 1.0, 'our': 1.0, 'to': 4.0, 'was': 2.0, 'order': 1.0, 'however': 1.0, 'jagged': 1.0, 'i': 9.0, 'daily': 1.0, 'it': 2.0, 'hack': 1.0, 'and': 2.0, 'cheap': 1.0, 'expensive': 1.0, 'supposed': 1.0, 'where': 1.0, 'for': 1.0, 'daughter': 2.0, 'someone': 1.0, 'when': 1.0, 'don': 1.0, 'discover': 1.0, 'her': 1.0, 'looked': 1.0, 'from': 2.0, 'replacement': 2.0, 'quite': 1.0, 'happy': 1.0, 'my': 2.0, 'with': 2.0, 'red': 1.0, 'the': 8.0, 'try': 1.0, 'lollacup': 2.0, 'products': 1.0, 'support': 1.0, 'some': 1.0, 'at': 1.0, 'expected': 1.0, 'has': 1.0, 'so': 2.0, 'time': 1.0, 'drinking': 1.0, 'loves': 1.0, 'been': 1.0, 'that': 1.0, 'know': 1.0, 'like': 1.0, 'straws': 3.0, 'made': 1.0, 'disappointed': 1.0, 'tip': 1.0, 'usa': 1.0, 'quality': 2.0, 'them': 1.0, 'cut': 1.0, 'we': 1.0, 't': 1.0, 'could': 1.0, 'a': 2.0, 'saw': 1.0, 'received': 1.0, 'plastic': 1.0, 'is': 3.0}
Word element => {'time': 1.0, 'long': 1.0, 'a': 1.0, 'will': 1.0, 'adjustments': 1.0, 'width': 1.0, 'highly': 1.0, 'height': 1.0, 'head': 1.0, 'i': 1.0, 'to': 2.0, 'recommend': 1.0, 'easy': 1.0, 'finds': 1.0, 'highway': 1.0, 'institute': 1.0, 'protection': 1.0, 's': 2.0, 'comfortable': 1.0, 'for': 3.0, 'love': 2.0, 'and': 5.0, 'iihs': 1.0, 'use': 2.0, 'sturdy': 1.0, 'safe': 1.0, 'booster': 1.0, 'my': 2.0, 'the': 3.0, 'we': 3.0, 'child': 1.0, 'bet': 1.0, 'pick': 1.0, 'come': 1.0, 'it': 5.0, 'this': 1.0, 'picked': 1.0, 'based': 1.0, 'daughter': 1.0, 'safety': 1.0, 'by': 1.0, 'useful': 1.0, 'neck': 1.0, 'insurance': 1.0, 'on': 1.0, 'very': 2.0, 'best': 1.0}
Word element => {'like': 1.0, 'what': 1.0, 'exactly': 1.0, 'are': 1.0, 'colors': 1.0, 'the': 3.0, 'and': 2.0, 'quality': 1.0, 'adorable': 1.0, 'very': 3.0, 'pleased': 1.0, 'that': 1.0, 'came': 1.0, 'made': 1.0, 'bedding': 1.0, 'cute': 1.0, 'bright': 1.0, 'a': 1.0, 'looks': 1.0, 'is': 3.0, 'it': 2.0, 'with': 1.0, 'this': 2.0, 'i': 1.0, 'am': 1.0, 'all': 1.0, 'photo': 1.0, 'set': 1.0, 'of': 1.0, 'pieces': 1.0, 'in': 1.0, 'collection': 1.0}
Word element => {'me': 1.0, 'with': 1.0, 'when': 1.0, 'clothes': 1.0, 'her': 1.0, 'to': 1.0, 'pack': 1.0, 'comes': 1.0, 'and': 1.0, 'my': 1.0, 'grand': 1.0, 'stay': 1.0, 'keeps': 1.0, 'toys': 1.0, 'it': 2.0, 'loves': 1.0, 'this': 1.0, 'bag': 1.0, 'will': 1.0, 'she': 2.0, 'daughter': 1.0, 'in': 2.0}
Word element => {'sometimes': 1.0, 'and': 1.0, 'fall': 1.0, 'play': 1.0, 'will': 1.0, 'she': 1.0, 'car': 1.0, 'hand': 2.0, '4': 1.0, 'when': 1.0, 'hold': 1.0, 'asleep': 1.0, 'to': 1.0, 'old': 1.0, 'place': 1.0, 'or': 2.0, 'loves': 1.0, 'shirt': 2.0, 'my': 3.0, 'either': 1.0, 'month': 1.0, 'the': 2.0, 'great': 1.0, 'with': 1.0, 'this': 1.0, 'it': 2.0, 'nursing': 1.0, 'is': 1.0, 'because': 1.0, 'takes': 1.0, 'of': 1.0, 'in': 1.0, 'also': 1.0}
Word element => {'you': 1.0, 'wear': 1.0, 'compliments': 1.0, 'get': 1.0, 'the': 1.0, 'my': 1.0, 'and': 1.0, 'for': 1.0, 'daughter': 1.0, 'when': 1.0, 'i': 2.0, 'to': 1.0, 'with': 1.0, 'price': 1.0, 'always': 1.0, 't': 1.0, 'loves': 1.0, 'play': 1.0, 'this': 1.0, 'beat': 1.0, 'can': 1.0, 'it': 2.0, 'necklace': 1.0}
Word element => {'fraying': 1.0, 'from': 1.0, 'keep': 1.0, 'lace': 1.0, 'shoe': 1.0, 'were': 1.0, 'wrapped': 1.0, 'ends': 1.0, 'actually': 1.0, 'wearing': 1.0, 'like': 2.0, 'and': 2.0, 'i': 2.0, 'old': 1.0, 'month': 1.0, 'this': 1.0, 'it': 2.0, 'slip': 1.0, '8': 1.0, 'my': 1.0, 'the': 2.0, 'just': 1.0, 'tied': 1.0, 'knot': 1.0, 'wish': 1.0, 'in': 1.0, 'or': 1.0, 'loves': 1.0, 'string': 1.0, 'a': 2.0, 'to': 1.0, 'was': 1.0}
Word element => {'latvia': 1.0, 'in': 1.0, 'an': 1.0, 'home': 1.0, 'was': 2.0, 'pushed': 1.0, 'easily': 1.0, 'thin': 1.0, 'are': 1.0, 'actually': 1.0, 'chewing': 1.0, 'sewn': 1.0, 'teething': 1.0, 'during': 1.0, 'came': 1.0, 'claim': 1.0, 'been': 1.0, 'threads': 2.0, 'shipped': 1.0, 'have': 1.0, 'consists': 1.0, 'which': 2.0, 'this': 1.0, 'of': 2.0, 'appears': 1.0, 'wooden': 2.0, 'some': 1.0, 'a': 1.0, 'side': 1.0, 'around': 1.0, 'is': 1.0, 'evidence': 1.0, 'exposing': 1.0, 'ring': 2.0, 'to': 3.0, 'any': 1.0, 'as': 1.0, 'from': 1.0, 'what': 2.0, 'child': 1.0, 'individual': 1.0, 'private': 1.0, 'would': 1.0, 'cotton': 3.0, 'be': 2.0, 'riga': 1.0, 'on': 1.0, 'organic': 1.0, 'advertised': 1.0, 'but': 1.0, 'item': 2.0, 'the': 7.0, 'without': 1.0, 'attesting': 1.0}
Word element => {'month': 1.0, 'pics': 1.0, 'couple': 1.0, 'a': 1.0, 'daughter': 1.0, 'for': 1.0, 'work': 1.0, 'there': 1.0, 'fine': 1.0, 'too': 1.0, 'mark': 1.0, 'isnt': 1.0, 'of': 1.0, 'really': 1.0, 'this': 1.0, 'stickers': 1.0, 'much': 1.0, 'to': 2.0, 'my': 1.0, 'the': 1.0, 'are': 1.0, 'nice': 1.0, 'and': 1.0}
Word element => {'curves': 1.0, 'attach': 1.0, 'side': 1.0, 'or': 1.0, 'mobile': 1.0, 'issue': 1.0, 'another': 1.0, 'happy': 1.0, 'floor': 1.0, 'just': 1.0, 'small': 1.0, 'have': 2.0, 'those': 1.0, 'not': 1.0, 'attached': 2.0, 'with': 1.0, 'due': 1.0, 'wanted': 1.0, 'wood': 1.0, 'little': 1.0, 'fix': 1.0, 'get': 1.0, 'box': 1.0, 'that': 4.0, 'been': 1.0, 'crib': 7.0, 'do': 1.0, 'tightened': 2.0, 'sits': 1.0, 'didn': 1.0, 'front': 1.0, 'instructions': 1.0, 'is': 3.0, 'fall': 1.0, 'say': 1.0, 'drawer': 8.0, 'opened': 1.0, 'basically': 1.0, 'the': 18.0, 's': 1.0, 'a': 6.0, 'we': 4.0, 't': 2.0, 'i': 3.0, 'build': 1.0, 'it': 5.0, 'this': 4.0, 'has': 1.0, 'so': 1.0, 'bit': 1.0, 'time': 1.0, 'really': 3.0, 'at': 1.0, 'since': 1.0, 'like': 2.0, 'in': 3.0, 'was': 1.0, 'had': 2.0, 'on': 4.0, 'put': 4.0, 'can': 2.0, 'but': 2.0, 'back': 2.0, 'under': 1.0, 'difficult': 2.0, 'of': 2.0, 'once': 1.0, 'already': 1.0, 'then': 1.0, 'glue': 1.0, 'to': 8.0, 'all': 2.0, 'screws': 4.0, 'loose': 1.0, 'out': 1.0, 'actually': 1.0, 'fit': 1.0, 'bottom': 1.0, 'loosen': 1.0, 'if': 1.0, 'everything': 1.0, 'up': 1.0, 'and': 2.0, 'closed': 1.0, 'each': 1.0, 'would': 1.0, 'am': 1.0, 'you': 4.0}
Word element => {'best': 1.0, 'the': 1.0, 'new': 1.0, 'brand': 1.0, 'to': 1.0, 'look': 1.0, 'and': 1.0, 'already': 1.0, 'times': 1.0, '10': 1.0, 'least': 1.0, 'them': 1.0, 'would': 1.0, 'toddler': 1.0, 'but': 1.0, 'mac': 1.0, 'save': 1.0, 'still': 1.0, 'absolutely': 1.0, 'loves': 1.0, 'cheese': 1.0, 'saved': 1.0, 'have': 1.0, 'daughter': 1.0, 'stain': 1.0, 'children': 1.0, 'it': 1.0, 'this': 2.0, 'n': 1.0, 'i': 1.0, 'my': 1.0, 'her': 2.0, 's': 1.0, 'clothes': 3.0, 'product': 2.0, 'your': 1.0, 'they': 1.0, 'has': 1.0, 'really': 1.0, 'is': 1.0, 'single': 1.0, 'at': 1.0, 'handily': 1.0, 'also': 1.0, 'washed': 1.0}
Word element => {'yes': 1.0, 'own': 1.0, 'thier': 1.0, 'on': 1.0, 'eat': 1.0, 'learning': 1.0, 'are': 1.0, 'they': 1.0, 'when': 1.0, 'cottage': 1.0, 'spagetti': 1.0, 'messy': 1.0, 'the': 3.0, 'great': 2.0, 'smock': 1.0, 'chees': 1.0, 'not': 2.0, 'indespensible': 1.0, 'has': 1.0, 'time': 1.0, 'coverage': 1.0, 'use': 1.0, 'recommend': 1.0, 'yogurt': 1.0, 'daycare': 2.0, 'her': 2.0, 'brands': 1.0, 'having': 2.0, 'in': 2.0, 'is': 2.0, 'o': 1.0, 'bib': 1.0, 'just': 1.0, 'few': 1.0, 'breakfast': 1.0, 'and': 3.0, 'it': 1.0, 'mess': 2.0, 'i': 2.0, 'one': 2.0, 'for': 5.0, 'love': 1.0, 'morning': 1.0, 'over': 1.0, 'my': 1.0, 'girl': 1.0, 'a': 2.0, 's': 1.0, 'clothes': 2.0, 'rushing': 1.0, 'out': 1.0, 'been': 1.0, 'mornignt': 1.0, 'work': 1.0, 'all': 2.0, 'to': 2.0, 'worry': 1.0, 'thing': 1.0, 'about': 1.0, 'this': 1.0, 'full': 1.0, 'less': 1.0, 'meals': 1.0}
Word element => {'buying': 1.0, 'worth': 1.0, 'mess': 1.0, 'down': 1.0, 'on': 1.0, 'cuts': 1.0, 'and': 1.0, 'this': 1.0, 'great': 1.0, 'my': 1.0, 'really': 1.0, 'value': 1.0, 'use': 1.0, 'feed': 1.0, 'brilliantly': 1.0, 'year': 1.0, 'one': 1.0, 'to': 1.0, 'old': 1.0}
Word element => {'were': 1.0, 'when': 1.0, 'it': 1.0, 'like': 1.0, 'had': 1.0, 'they': 2.0, 'that': 1.0, 'clever': 1.0, 'after': 1.0, 'smock': 2.0, 'does': 1.0, 'his': 1.0, 'sleeves': 1.0, 'used': 1.0, 'art': 1.0, 'enough': 1.0, 'cover': 1.0, 'their': 1.0, 'better': 1.0, 'up': 3.0, 'bib': 1.0, 'with': 1.0, 'kids': 1.0, 'wish': 1.0, 'this': 1.0, 'come': 1.0, 'generally': 1.0, 'something': 1.0, 've': 1.0, 'in': 1.0, 'saying': 1.0, 'son': 1.0, 'can': 1.0, 'messy': 1.0, 'meal': 1.0, 'much': 1.0, 'be': 1.0, 'and': 4.0, 'eater': 1.0, 'how': 1.0, 'doesn': 1.0, 'the': 4.0, 'job': 1.0, 'keeping': 1.0, 'clothes': 1.0, 'neat': 1.0, 'is': 2.0, 'people': 1.0, 'easy': 1.0, 'clean': 1.0, 't': 1.0, 'a': 3.0, 'we': 1.0, 'restaurants': 1.0, 'younger': 1.0, 'have': 1.0, 'our': 1.0, 'to': 1.0, 'all': 1.0, 'time': 1.0}
Word element => {'adult': 1.0, 'for': 1.0, 'brush': 1.0, 'recommend': 1.0, 'nail': 1.0, 'larger': 2.0, 'give': 1.0, 'kids': 2.0, 'own': 1.0, 'finish': 1.0, 'you': 1.0, 'is': 2.0, 'lightly': 1.0, 'great': 2.0, 'these': 1.0, 'the': 7.0, 'rough': 1.0, 'colors': 1.0, 'application': 1.0, 'with': 1.0, 'pink': 1.0, 'match': 1.0, 'other': 1.0, 'previous': 1.0, 'got': 1.0, 'regular': 1.0, 'in': 2.0, 'lacking': 1.0, 'pens': 1.0, 'splotchy': 1.0, 'of': 2.0, 'polish': 3.0, 'applicator': 1.0, 'but': 2.0, 'blue': 1.0, 'will': 2.0, 'two': 1.0, 'i': 2.0, 'one': 1.0, 'need': 1.0, 'and': 1.0, 'pen': 1.0, 'are': 1.0, 'gritty': 1.0, 'to': 3.0, 'or': 2.0, 'don': 1.0, 'up': 1.0, 'teeny': 1.0, 'coats': 1.0, 'come': 1.0, 'it': 1.0, 's': 1.0, 't': 1.0, 'go': 1.0, 'a': 3.0, 'little': 1.0, 'your': 2.0, 'on': 1.0, 'tiny': 1.0, 'try': 1.0, 'nails': 2.0}
Word element => {'3days': 1.0, 'arrived': 1.0, 'me': 1.0, 'later': 1.0, 'tracked': 1.0, 'themilkcrate1': 1.0, 'order': 1.0, 'loved': 1.0, 'through': 1.0, 'second': 1.0, '14': 1.0, 'walmart': 1.0, 'first': 1.0, 'either': 1.0, 'beat': 1.0, 'toddler': 1.0, 'quite': 1.0, 'fleece': 1.0, 'of': 1.0, 'layer': 1.0, 'very': 1.0, 'out': 2.0, 'feet': 1.0, 'there': 1.0, 'and': 1.0, 'tall': 1.0, 'easy': 1.0, 'get': 1.0, 'do': 1.0, 'back': 1.0, 'it': 3.0, 'will': 1.0, 'also': 1.0, 'that': 3.0, 'to': 1.0, 'our': 1.0, 'fits': 1.0, 'my': 7.0, 'blue': 1.0, 'stroller': 1.0, 'warm': 1.0, 'old': 1.0, '5stars': 1.0, 'i': 7.0, 'muff': 1.0, 'fold': 1.0, 'still': 2.0, 'price': 1.0, 'absolutely': 1.0, 'awesome': 1.0, 'girl': 1.0, 'new': 1.0, 'love': 2.0, 'for': 8.0, 'bought': 1.0, 'one': 4.0, '3yr': 1.0, 'have': 1.0, 'long': 1.0, 'carseat': 1.0, 'even': 1.0, 'pink': 1.0, 'pop': 1.0, 'buckle': 1.0, 'pretty': 1.0, 'clip': 1.0, 't': 1.0, 'a': 1.0, 'we': 1.0, 'amazon': 1.0, 'use': 1.0, 'the': 5.0, 'they': 1.0, 'double': 1.0, 'holes': 1.0, 'zip': 1.0, 'blanket': 1.0, 'are': 1.0, 'this': 1.0, 'kids': 2.0, 'when': 2.0, 'straps': 1.0, 'always': 1.0, 'bottom': 2.0, 'enough': 1.0, 'foot': 1.0, 'off': 1.0, 'in': 2.0, 'kicks': 1.0, 'regular': 1.0, 'can': 2.0, 'blankets': 1.0, 'at': 2.0, 'them': 2.0, 'on': 1.0, 'which': 1.0, 'u': 1.0}
Word element => {'years': 1.0, 'they': 1.0, 'see': 1.0, 'months': 1.0, '6': 1.0, '4': 1.0, 'i': 2.0, 'snap': 1.0, 'are': 1.0, 'blanket': 1.0, 'out': 1.0, 'fleece': 1.0, 'made': 1.0, 'and': 2.0, 'do': 1.0, 'taking': 1.0, 'making': 1.0, 'them': 1.0, 'started': 1.0, 'this': 1.0, 'it': 4.0, 'straps': 1.0, 'stroller': 2.0, 'is': 3.0, 'ground': 1.0, 'in': 1.0, 'velcros': 1.0, 'were': 1.0, 'the': 5.0, 'a': 2.0, 't': 1.0, 'these': 1.0, 'of': 2.0, 'over': 1.0, 'on': 1.0, 'old': 1.0, 'warm': 1.0, 'snuggly': 1.0, 'never': 1.0, 'have': 1.0, 'to': 1.0, 'until': 1.0, 'bring': 1.0, 'awesome': 1.0, 'coats': 1.0, 'doesn': 1.0, 'anymore': 1.0, 'very': 1.0, 'large': 1.0, 'can': 1.0, 'but': 1.0, 'blankets': 1.0, 'like': 1.0, 'drag': 1.0, 'using': 2.0, 'twins': 1.0, 'when': 1.0, 'boys': 1.0}
Word element => {'by': 1.0, 'arrived': 1.0, 'ordered': 1.0, 'what': 1.0, 'toy': 2.0, 'exactly': 1.0, 'similar': 1.0, 'i': 1.0, 'popper': 1.0, 'replacement': 1.0, 'the': 2.0, 'my': 1.0, 'had': 2.0, 'was': 2.0, 'and': 1.0, 'ball': 1.0, 'that': 1.0, 'a': 2.0, 'been': 1.0, 'she': 1.0, 'for': 1.0, 'one': 1.0, 'of': 1.0, 'eve': 1.0, 'favorite': 1.0, 'toys': 1.0, 'niece': 1.0, 's': 1.0, 'loves': 1.0, 'christmas': 1.0, 'it': 2.0}
Word element => {'lime': 1.0, 'at': 1.0, 'm': 1.0, 'now': 1.0, 'replaced': 1.0, 'looking': 1.0, 'days': 1.0, 'couple': 1.0, 'after': 1.0, 'in': 2.0, 'an': 1.0, 'instead': 1.0, 'there': 1.0, 'of': 2.0, 'up': 1.0, 'colors': 1.0, 'green': 2.0, 'and': 3.0, 'packet': 1.0, 'awesome': 1.0, 'star': 2.0, 'bottles': 1.0, 'get': 1.0, 'easy': 1.0, 'love': 1.0, 'for': 1.0, 'product': 1.0, 'heat': 1.0, 'so': 1.0, 'bottle': 3.0, 'this': 1.0, 'it': 2.0, 'didn': 1.0, 'picture': 2.0, 'got': 2.0, 'because': 3.0, 'me': 1.0, 'give': 1.0, 'not': 1.0, 't': 1.0, 'a': 4.0, 'are': 1.0, 'orange': 1.0, 'the': 8.0, 'i': 8.0, '4': 2.0, 'that': 1.0, 'gave': 1.0, 'when': 1.0, 'received': 1.0, 'purchase': 2.0, 'my': 2.0, 'pine': 1.0, 'forgot': 1.0, 'to': 2.0, 'all': 1.0, 'end': 1.0, 'pack': 1.0, 'clean': 1.0, 'good': 1.0, 'specifically': 1.0, 'but': 1.0, 'they': 2.0, 'send': 1.0, 'was': 2.0, 'yellow': 2.0, 'like': 1.0, 'which': 1.0, 'disappointed': 1.0}
Word element => {'back': 1.0, 'the': 1.0, 'on': 1.0, 'off': 1.0, 'a': 1.0, 'is': 1.0, 'there': 1.0, 'suprised': 1.0, 'when': 1.0, 'she': 1.0, 'it': 2.0, 'grandbaby': 1.0, 'noise': 1.0, 'old': 1.0, 'switch': 1.0, 'was': 1.0, 'to': 1.0, 'year': 1.0, 'loved': 1.0, 'much': 1.0, 'talked': 1.0, 'songs': 1.0, 'made': 1.0, 'my': 1.0, 'cookie': 1.0, 'monster': 1.0, 'between': 1.0, 'her': 1.0, 'shut': 1.0, 'one': 1.0, 'parents': 1.0, 'thought': 1.0}
Word element => {'send': 1.0, 'i': 1.0, 'way': 1.0, 'and': 1.0, 'purse': 1.0, 'just': 1.0, 'use': 1.0, 'than': 1.0, 'back': 1.0, 'but': 1.0, 'inside': 1.0, 'as': 2.0, 'too': 1.0, 'pretty': 1.0, 'bag': 3.0, 'it': 3.0, 'this': 1.0, 'looks': 1.0, 'is': 3.0, 'on': 1.0, 'small': 1.0, 'had': 1.0, 'to': 2.0, 'a': 1.0, 'the': 2.0, 'diaper': 1.0, 'my': 1.0, 'smaller': 1.0}
Word element => {'on': 1.0, 'they': 1.0, 'hope': 1.0, 'fresh': 1.0, 'and': 1.0, 'were': 1.0, 'colors': 1.0, 'gifts': 1.0, 'bright': 1.0, 'cute': 1.0, 'friend': 1.0, 'the': 1.0, 'my': 1.0, 'pony': 1.0, 'stay': 1.0, 'cap': 1.0, 'for': 1.0, 'easy': 1.0, 'to': 1.0, 'mail': 1.0, 'out': 1.0}
Word element => {'now': 1.0, 'buying': 1.0, 'm': 1.0, 'i': 1.0, 'right': 1.0, 'size': 1.0, 'nice': 1.0, 'favorite': 1.0, 'is': 1.0, 'boy': 1.0, 'newborn': 1.0, 'my': 3.0, 'this': 1.0, 'it': 2.0, 'shower': 1.0, '15': 1.0, 'a': 2.0, 'more': 1.0, 'the': 1.0, 'these': 1.0, 'of': 2.0, 'for': 3.0, 'one': 2.0, 'stretchy': 1.0, 'or': 1.0, 'got': 2.0, 'so': 1.0, 's': 2.0, 'swaddling': 1.0, 'soft': 1.0, 'cute': 1.0, 'warm': 1.0, 'and': 2.0, 'at': 1.0, 'blankets': 1.0, 'we': 1.0}
Word element => {'definitely': 1.0, 'your': 1.0, 'packing': 1.0, 'would': 2.0, 'and': 1.0, 'carried': 1.0, 'case': 1.0, 'loved': 1.0, 'helpful': 1.0, 'i': 1.0, 'when': 1.0, 'or': 1.0, 'bag': 1.0, 'came': 2.0, 'in': 1.0, 'also': 1.0, 'savers': 1.0, 'hospital': 3.0, 'pads': 1.0, 'life': 1.0, 'them': 2.0, 'gel': 1.0, 'packs': 1.0, 'constantly': 1.0, 'relief': 1.0, 'were': 2.0, 'warming': 1.0, 'the': 5.0, 'recommend': 2.0, 'home': 1.0, 'from': 1.0, 'to': 1.0, 'was': 1.0, 'cooling': 1.0, 'love': 1.0, 'for': 1.0, 'it': 4.0, 'this': 1.0, 'cotton': 1.0}
Word element => {'opened': 1.0, 'of': 1.0, 'good': 1.0, 'bout': 1.0, 'though': 1.0, 'expected': 1.0, 'through': 1.0, 'i': 2.0, 'finding': 1.0, 'har': 1.0, 'than': 1.0, 'bigger': 1.0, 'were': 1.0, 'a': 2.0, 'had': 1.0, 'and': 1.0, 'helped': 1.0, 'quality': 1.0, 'the': 2.0, 'are': 1.0, 'pads': 2.0, 'they': 1.0, 'mastitis': 1.0, 'time': 1.0, 'how': 1.0}
Word element => {'with': 1.0, 'happy': 1.0, 'am': 1.0, 'is': 1.0, 'overall': 1.0, 'running': 1.0, 'would': 1.0, 'get': 1.0, 'ask': 1.0, 'just': 1.0, 'occupied': 1.0, 'part': 1.0, 'while': 1.0, 'started': 1.0, 'nipple': 1.0, 'washcloth': 1.0, 'disposable': 1.0, 'like': 1.0, 'this': 1.0, 'liked': 1.0, 'once': 1.0, 'carry': 1.0, 'some': 1.0, 'things': 1.0, 'pacifier': 1.0, 'helped': 1.0, 'but': 2.0, 'put': 1.0, 'definitely': 1.0, 'me': 1.0, 'and': 4.0, 'she': 1.0, 'it': 6.0, 'wouldn': 1.0, 'or': 2.0, 'good': 1.0, 'old': 1.0, 'go': 1.0, 'could': 1.0, 't': 1.0, 's': 1.0, 'a': 5.0, 'well': 1.0, 'really': 1.0, 'twice': 1.0, 'call': 1.0, 'without': 1.0, 'the': 3.0, 'deal': 1.0, 'purple': 1.0, 'otherwise': 1.0, 'etc': 1.0, 'i': 7.0, '4': 1.0, 'year': 1.0, 'bag': 4.0, 'small': 1.0, 'must': 1.0, 'have': 2.0, 'favorite': 1.0, 'nursing': 3.0, 'still': 1.0, 'use': 1.0, 'pads': 1.0, 'as': 2.0, 'all': 1.0, 'to': 2.0, 'purchase': 1.0, 'cream': 1.0, 'my': 4.0, 'out': 1.0, 'newborn': 1.0, 'in': 1.0, 'other': 1.0, 'daughter': 1.0, 'essentials': 1.0, 'needs': 1.0, 'so': 1.0, 'if': 1.0, 'needed': 2.0}
Word element => {'is': 1.0, 'when': 1.0, 'few': 1.0, 'those': 1.0, 'for': 1.0, 'feedings': 1.0, 'of': 1.0, 'weeks': 1.0, 'track': 1.0, 'keep': 1.0, 'log': 1.0, 'booklet': 1.0, 'needed': 1.0, 'i': 1.0, 'feeding': 1.0, 'little': 1.0, 'helpful': 1.0, 'kit': 1.0, 'breast': 1.0, 'very': 1.0, 'as': 1.0, 'and': 2.0, 'time': 1.0, 'a': 2.0, 'first': 2.0, 'excited': 1.0, 'with': 1.0, 'this': 1.0, 'it': 1.0, 'to': 3.0, 'was': 1.0, 'feeder': 1.0, 'had': 1.0, 'order': 1.0, 'everything': 2.0, 'you': 1.0, 'start': 1.0, 'blur': 1.0, 'out': 1.0}
Word element => {'soft': 1.0, 'good': 1.0, 'really': 2.0, 'covers': 1.0, 'packs': 1.0, 'product': 1.0, 'is': 2.0, 'are': 1.0, 'the': 3.0, 'excellent': 1.0, 'this': 1.0, 'bag': 1.0, 'so': 1.0, 'nice': 1.0, 'bags': 1.0, 'gel': 1.0, 'and': 2.0, 'discrete': 1.0}
Word element => {'product': 1.0, 'recommend': 1.0, 'money': 1.0, 'highly': 1.0, 'high': 1.0, 'are': 1.0, 'of': 1.0, 'leak': 1.0, 'to': 1.0, 'happen': 1.0, 'this': 1.0, 'only': 1.0, 'other': 1.0, 'have': 1.0, 'for': 2.0, 'use': 1.0, 'than': 1.0, 'can': 1.0, 'things': 1.0, 'you': 1.0, 'that': 2.0, 'packs': 1.0, 'so': 1.0, 'ice': 1.0, 'but': 2.0, 'quality': 2.0, 'deal': 1.0, 'breast': 1.0, 'they': 1.0, 'your': 1.0, 'i': 3.0, 'because': 1.0, 'not': 2.0, 'used': 1.0, 'great': 2.0, 'the': 2.0, 'pads': 1.0, 'reuseable': 1.0, 'is': 1.0}
Word element => {'if': 1.0, 'order': 1.0, 'it': 1.0, 'shower': 1.0, 'be': 1.0, 'pumping': 1.0, 'overall': 1.0, 'from': 1.0, 'more': 1.0, 'ordered': 1.0, 'products': 1.0, 'its': 1.0, 'now': 1.0, 'was': 1.0, 'pump': 1.0, 'they': 1.0, 'mommy': 1.0, 'correctly': 1.0, 'and': 6.0, 'or': 1.0, 'latch': 1.0, 'good': 1.0, 'i': 4.0, 'had': 2.0, 'purchased': 1.0, 'could': 1.0, 'a': 3.0, 't': 2.0, 'great': 4.0, 'this': 1.0, 'with': 1.0, 'wonders': 1.0, 'son': 2.0, 'worked': 1.0, 'very': 1.0, 'on': 1.0, 'breast': 1.0, 'intentions': 1.0, 'avent': 1.0, 'my': 2.0, 'exclusively': 1.0, 'wouldn': 1.0, 'even': 1.0, 'didn': 1.0, 'but': 2.0, 'gift': 1.0, 'trouble': 1.0, 'love': 1.0, 'for': 2.0, 'product': 2.0, 'regardless': 1.0, 'again': 1.0, 'when': 1.0, 'soothing': 1.0, 'having': 1.0, 'breastfeeding': 2.0, 'latching': 1.0, 'the': 3.0, 'myself': 1.0, 'gel': 1.0, 'to': 1.0, 'as': 1.0, 'pads': 2.0, 'well': 1.0, 'hot': 1.0, 'cold': 1.0, 'are': 1.0, 'were': 1.0, 'glad': 1.0, 'them': 1.0}
Word element => {'which': 1.0, 'reminding': 1.0, 'that': 1.0, 'give': 1.0, 'ribbon': 1.0, 'little': 1.0, 'a': 1.0, 'this': 1.0, 'pack': 1.0, 'to': 1.0, 'helps': 1.0, 'start': 1.0, 'absolutely': 1.0, 'love': 1.0, 'it': 1.0, 'great': 1.0, 'next': 1.0, 'is': 1.0, 'with': 2.0, 'breast': 1.0, 'comes': 1.0}
Word element => {'she': 1.0, 'friend': 1.0, 'bought': 1.0, 'price': 1.0, 's': 1.0, 'sessions': 1.0, 'keep': 1.0, 'little': 1.0, 'i': 1.0, 'night': 1.0, 'pads': 1.0, 'backed': 1.0, 'and': 5.0, 'relief': 1.0, 'nursing': 3.0, 'to': 1.0, 'comes': 1.0, 'for': 2.0, 'pains': 1.0, 'warm': 1.0, 'on': 1.0, 'it': 2.0, 'with': 1.0, 'adhesive': 1.0, 'a': 5.0, 'well': 1.0, 'cold': 1.0, 'needs': 1.0, 'also': 2.0, 'loves': 1.0, 'or': 1.0, 'track': 1.0, 'book': 1.0, 'work': 1.0, 'recently': 1.0, 'your': 2.0, 'they': 1.0, 'provide': 1.0, 'morning': 1.0, 'wonderful': 2.0, 'from': 1.0, 'great': 1.0, 'the': 1.0, 'of': 1.0, 'based': 1.0, 'set': 3.0}
Word element => {'milk': 1.0, 'of': 1.0, 'burning': 1.0, 'are': 1.0, 'full': 1.0, 'they': 1.0, 'and': 1.0, 'breast': 1.0, 'very': 1.0, 'when': 1.0, 'your': 1.0, 'relieves': 1.0, 'i': 4.0, 'ordered': 1.0, 'is': 2.0, 'it': 5.0, 'love': 2.0, 'useful': 1.0, 'recommended': 1.0, 'just': 1.0, '100': 1.0, 'what': 1.0, 'will': 1.0}
Word element => {'hospital': 1.0, 'at': 1.0, 'used': 1.0, 'in': 1.0, 'perfect': 1.0, 'was': 1.0, 'problems': 1.0, 'goodies': 1.0, 'little': 2.0, 'baby': 1.0, 'i': 1.0, 'sturdy': 1.0, 'that': 1.0, 'bag': 1.0, 'came': 1.0, 'leaking': 1.0, 'stuff': 1.0, 'diaper': 1.0, 'the': 5.0, 'shirt': 1.0, 'bad': 2.0, 'all': 1.0, 'with': 3.0, 'it': 2.0, 'for': 1.0, 'liked': 1.0, 'an': 1.0, 'refilled': 1.0, 'pads': 1.0, 'bra': 1.0, 'might': 1.0, 'extra': 2.0, 'along': 1.0, 'need': 1.0}
Word element => {'price': 1.0, 'product': 1.0, 'haves': 1.0, 'must': 1.0, 'care': 1.0, 'pouch': 1.0, 'zippered': 1.0, 'washable': 1.0, 'items': 1.0, 'hold': 1.0, 'keeping': 1.0, 'record': 1.0, 'obsessed': 1.0, 'tool': 1.0, 'mind': 1.0, 'peace': 1.0, 'great': 1.0, 'is': 3.0, 'comes': 1.0, 'last': 1.0, 'it': 2.0, 'she': 1.0, 'this': 1.0, 'basket': 1.0, 'relief': 1.0, 'extra': 1.0, 'as': 1.0, 'to': 6.0, 'tells': 1.0, 'me': 2.0, 'recommended': 1.0, 'and': 10.0, 'there': 3.0, 'soon': 1.0, 'adhesive': 1.0, 'milk': 1.0, 'all': 1.0, 'other': 1.0, 'item': 1.0, 'comfortable': 1.0, 'your': 1.0, 'feel': 1.0, 'mom': 2.0, 'going': 1.0, 'a': 7.0, 'added': 1.0, 'kit': 3.0, 'keep': 2.0, 'feeding': 4.0, '2': 1.0, 'pads': 3.0, 'place': 1.0, 'remind': 1.0, 'was': 1.0, 'bra': 1.0, 'disposable': 2.0, 'be': 1.0, 'thus': 1.0, 'also': 1.0, 'received': 1.0, '6': 1.0, 'inexpensive': 1.0, 'far': 1.0, 'strips': 1.0, 'through': 1.0, 'that': 2.0, 'breast': 6.0, 'use': 2.0, 'flow': 1.0, 'on': 2.0, 'tracking': 1.0, 'relatively': 1.0, 'absorbent': 1.0, 'dual': 1.0, 'new': 2.0, 'time': 2.0, 'has': 2.0, 'usage': 1.0, 'lot': 1.0, 'one': 1.0, 'night': 3.0, 'you': 3.0, 'dry': 1.0, 'comfort': 1.0, 'they': 1.0, 'seem': 1.0, 'cold': 1.0, 'during': 1.0, 'thick': 1.0, 'very': 1.0, 'come': 1.0, 'especially': 2.0, 'soothing': 1.0, 'day': 2.0, 'pad': 1.0, 'plans': 1.0, 'in': 2.0, 'who': 2.0, '12': 1.0, 'definite': 1.0, 'starter': 2.0, 'are': 3.0, 'plus': 1.0, 'warm': 1.0, 'for': 6.0, 'stimulate': 1.0, 'with': 2.0, 'based': 1.0, 'good': 1.0, 'made': 1.0, 'gift': 1.0, 'side': 1.0, 'sleeves': 1.0, 'clip': 1.0, 'the': 6.0, 'of': 2.0, 'soft': 1.0, 'fed': 1.0, 'from': 1.0, 'diary': 1.0}
Word element => {'nurse': 1.0, 'planning': 1.0, 'new': 1.0, 'shower': 1.0, 'perfect': 1.0, 'tata': 1.0, 'gift': 1.0, 'which': 1.0, 'brain': 1.0, 'baby': 2.0, 'long': 1.0, 'shocked': 1.0, 'd': 1.0, 'nice': 1.0, 'pin': 1.0, 'know': 1.0, 'like': 2.0, 'be': 4.0, 'discs': 1.0, 'fridge': 1.0, 'next': 1.0, 'them': 2.0, 'started': 1.0, 'poke': 1.0, 'second': 1.0, 'will': 5.0, 'now': 1.0, 'in': 6.0, 'fire': 1.0, 'weeks': 2.0, 'would': 2.0, 'nursed': 1.0, 'up': 2.0, 'relief': 1.0, 'daughter': 1.0, 'best': 1.0, 'temp': 1.0, 'to': 5.0, 'all': 1.0, 'very': 1.0, 'child': 1.0, 'year': 1.0, 'edges': 1.0, 'gel': 1.0, 'without': 1.0, 'lasts': 1.0, 'that': 2.0, 'breastfeeding': 1.0, 'set': 3.0, '2': 2.0, 'thing': 1.0, 'mommy': 1.0, '8': 1.0, 'down': 1.0, 'soothing': 1.0, 'due': 1.0, 'using': 1.0, 'bag': 3.0, 'remember': 1.0, 'have': 3.0, 'a': 3.0, 'small': 1.0, 'loved': 1.0, 'with': 2.0, 'month': 1.0, 'this': 5.0, 'much': 1.0, 'sharp': 1.0, 'old': 1.0, 'warm': 1.0, 'handy': 1.0, 'and': 5.0, 'it': 3.0, 'starting': 1.0, 'get': 2.0, 'me': 2.0, 'provide': 1.0, 'needed': 1.0, 'am': 2.0, 'you': 3.0, 'too': 1.0, 'happy': 1.0, 'lot': 1.0, 'is': 1.0, 'at': 2.0, 'are': 1.0, 'first': 2.0, 'nicely': 1.0, 'chilled': 1.0, 'they': 2.0, 'contour': 1.0, 'i': 9.0, 'well': 1.0, 'around': 1.0, 'nipple': 1.0, 'help': 2.0, 'let': 1.0, 'liked': 1.0, 'our': 1.0, 'how': 2.0, 'comes': 1.0, 'room': 1.0, 'her': 1.0, 'use': 2.0, 'for': 3.0, 'quickly': 1.0, 'nipples': 1.0, 'as': 1.0, 'diaper': 1.0, 'the': 12.0, 'of': 2.0, 'yowza': 1.0, 'frozen': 1.0, 'great': 1.0, 'step': 1.0, 'from': 1.0, 'peas': 1.0, 'items': 1.0, 'your': 1.0}
Word element => {'home': 1.0, 'got': 1.0, 'for': 1.0, 'waiting': 1.0, 'have': 1.0, 'really': 1.0, 'overall': 1.0, 'daytime': 1.0, 'than': 1.0, 'rather': 1.0, 'more': 1.0, 'provided': 1.0, 'wish': 1.0, 'soaked': 1.0, 'getting': 1.0, 'from': 2.0, 'sore': 1.0, 'breastfeeding': 1.0, 'hospital': 1.0, 'into': 1.0, 'that': 2.0, 'to': 3.0, 'pads': 4.0, 'supposed': 1.0, 'where': 1.0, 'helped': 2.0, 'relieve': 1.0, 'holes': 1.0, 'gel': 2.0, 'annoying': 1.0, 'engorgement': 1.0, 'it': 2.0, 'me': 1.0, 'my': 5.0, 'engorged': 1.0, 'them': 1.0, 'deal': 1.0, 'baby': 1.0, 'also': 1.0, 'during': 2.0, 'cabbage': 1.0, 'lansinoh': 1.0, 'they': 2.0, 'cut': 1.0, 'packs': 2.0, 'breasts': 1.0, 'week': 1.0, 'came': 2.0, 'go': 1.0, 'weaning': 1.0, 'a': 3.0, 'just': 1.0, 'milk': 3.0, 'and': 6.0, 'are': 4.0, 'first': 1.0, 'not': 1.0, 'skin': 1.0, 'nipples': 2.0, 'only': 3.0, 'when': 4.0, 'showers': 1.0, 'much': 1.0, 'do': 2.0, 'put': 1.0, 'placing': 1.0, 'feeding': 2.0, 'night': 1.0, 'things': 1.0, 'but': 2.0, '2': 1.0, 'on': 1.0, 'noticed': 1.0, 'etc': 1.0, 'i': 6.0, 'frozen': 1.0, 'did': 1.0, 'significant': 1.0, 'make': 1.0, 'help': 1.0, 'sometimes': 1.0, 'after': 1.0, 'decrease': 1.0, 'worse': 1.0, 'great': 4.0, 'big': 1.0, 'bra': 2.0, 'was': 3.0, 'over': 1.0, 'had': 3.0, 'warm': 1.0, 'nighttime': 2.0, 'course': 1.0, 'the': 14.0, 'of': 3.0, 'supply': 2.0, 'nothing': 1.0, 'cutting': 1.0, 'were': 5.0, 'pouch': 1.0, 'happy': 1.0, 'ones': 1.0, 'one': 1.0, 'in': 4.0, 'per': 1.0, 'so': 1.0, 'few': 1.0, 'this': 2.0, 'these': 2.0, 'comes': 1.0, 'is': 1.0, 'with': 1.0, 'nursing': 2.0, 'which': 1.0, 'weeks': 2.0, 'would': 1.0, 'later': 1.0, 'prevent': 1.0}
Word element => {'be': 1.0, 'but': 1.0, 'much': 1.0, 'do': 1.0, 'worse': 1.0, 'desired': 1.0, 'okay': 1.0, 'even': 1.0, 'stiff': 1.0, 'overall': 1.0, 'roughness': 1.0, 'avent': 1.0, 'feel': 2.0, 'itchy': 1.0, 'comes': 1.0, 'it': 2.0, 'with': 2.0, 'down': 1.0, 'i': 2.0, 'tried': 1.0, 'they': 3.0, 'already': 1.0, 'these': 2.0, 'comfort': 1.0, 'tough': 1.0, 'and': 3.0, 'breast': 2.0, 'on': 1.0, 'job': 1.0, 'the': 3.0, 'deal': 2.0, 'hands': 1.0, 'so': 1.0, 'their': 1.0, 'wear': 1.0, 'to': 3.0, 'pads': 2.0, 'sometimes': 1.0, 'leave': 1.0, 'have': 1.0, 'win': 1.0, 'because': 1.0, 'making': 1.0, 'of': 3.0, 'sore': 1.0, 'stiffness': 1.0, 'actually': 1.0, 'product': 1.0, 'when': 3.0, 'you': 1.0, 'lansinoh': 2.0, 'breasts': 1.0, 'material': 1.0, 'really': 1.0, 'that': 1.0, 'top': 1.0, 's': 1.0, 'a': 1.0, 'them': 1.0}
Word element => {'day': 1.0, 'worth': 1.0, 'month': 1.0, 'nights': 1.0, 'in': 2.0, 'just': 1.0, 'wish': 1.0, 'than': 1.0, 'whole': 1.0, 'i': 1.0, 's': 2.0, 'job': 1.0, 'fantastic': 1.0, 'do': 1.0, 'they': 1.0, 'are': 1.0, 'the': 1.0, 'these': 1.0, 'more': 1.0, 'there': 1.0, 'their': 1.0, 'that': 1.0, 'to': 1.0, 'was': 1.0, '20': 1.0, 'well': 1.0, 'a': 2.0, 'pack': 2.0, 'only': 1.0, 'compared': 1.0, '10': 1.0}
Word element => {'pads': 1.0, 'haven': 1.0, 'any': 1.0, 'keeps': 1.0, 'product': 1.0, 'to': 1.0, 'other': 1.0, 'night': 1.0, 'buy': 1.0, 'you': 1.0, 'not': 1.0, 'but': 2.0, 'will': 1.0, 'doesn': 1.0, 'very': 1.0, 'best': 1.0, 'stick': 1.0, 't': 2.0, 'the': 1.0, 'dry': 1.0, 'your': 1.0, 'ever': 1.0, 'happy': 1.0, 'this': 1.0, 'skin': 1.0, 'with': 1.0}
Word element => {'small': 1.0, 'ordering': 1.0, 'skin': 1.0, 'it': 2.0, 'the': 3.0, 'these': 1.0, 'stick': 1.0, 'big': 1.0, 'don': 1.0, 'night': 1.0, 'i': 2.0, 'or': 1.0, 'really': 1.0, 'is': 1.0, 'happy': 1.0, 'so': 1.0, 'am': 1.0, 'day': 1.0, 'days': 1.0, 'they': 2.0, 'use': 1.0, 'safe': 1.0, 'order': 1.0, 'through': 1.0, 'pads': 1.0, 'to': 3.0, 'can': 1.0, 'breathe': 1.0, 'with': 1.0, 'frustrating': 1.0, 'that': 1.0, 'whole': 1.0, 'thing': 1.0, 'only': 2.0, 'pack': 2.0, 'for': 2.0, 'love': 1.0, 'one': 1.0, 'me': 1.0, 'instead': 1.0, 'there': 1.0, 'of': 1.0, 'are': 1.0, '20': 1.0, 'in': 1.0, 't': 1.0, 's': 1.0, '10': 2.0, 'would': 1.0}
Word element => {'very': 1.0, 'not': 1.0, 'adhesive': 2.0, 'for': 1.0, 'oh': 1.0, 'fine': 1.0, 'worked': 1.0, 'regular': 1.0, 'force': 1.0, 'came': 1.0, 'my': 1.0, 'use': 1.0, 'too': 1.0, 'lot': 1.0, 'they': 3.0, 'to': 6.0, 'all': 1.0, 'as': 3.0, 'harder': 1.0, 'pull': 1.0, 'but': 3.0, 'were': 1.0, 'full': 1.0, 'grand': 1.0, 'like': 2.0, 'soft': 1.0, 'packaging': 1.0, 'had': 1.0, 't': 3.0, 'small': 1.0, 'a': 4.0, 'scheme': 1.0, 'more': 1.0, 'is': 1.0, 'sufficed': 1.0, 'of': 4.0, 'the': 10.0, 'pads': 3.0, 'place': 1.0, 'turns': 1.0, 'wrap': 1.0, 'used': 1.0, 'what': 1.0, 'when': 1.0, 'that': 1.0, 'box': 1.0, 'wrappers': 2.0, 'don': 1.0, 'from': 1.0, 'out': 2.0, 'understand': 1.0, 'in': 5.0, 'm': 1.0, 'are': 3.0, 'keeps': 1.0, 'it': 4.0, 'really': 2.0, 'which': 3.0, 'leaking': 1.0, 'want': 1.0, 'than': 1.0, 'matter': 1.0, 'apart': 1.0, 'folded': 1.0, 'sanitation': 1.0, 'half': 1.0, 'about': 1.0, 'well': 1.0, 'i': 8.0, 'over': 1.0, 'open': 1.0, 'should': 1.0, 'individually': 1.0, 'picky': 1.0, 'nice': 1.0, 'little': 3.0, 'you': 2.0, 'things': 2.0, 'be': 2.0, 'back': 1.0, '2009': 1.0, 'breastfeed': 1.0, 'did': 1.0, 'last': 1.0, 'time': 1.0, 'so': 2.0, 'except': 1.0, 'get': 2.0, 'kind': 1.0, 'compare': 1.0, 'dislike': 1.0, 'seems': 2.0, 'also': 1.0, 'weird': 1.0, 'and': 4.0, 'takes': 1.0, 'them': 3.0, 'left': 1.0, 'packed': 1.0, 'never': 1.0, 'some': 1.0, 'entirely': 1.0, 'these': 2.0, 'wise': 1.0, 'honestly': 1.0, 'milk': 1.0, 'just': 1.0, 'do': 1.0, 'put': 1.0, 'pantiliners': 1.0, 'need': 1.0, 'or': 1.0, 'something': 1.0, 'save': 1.0, 'didn': 2.0, 'long': 1.0, 'circle': 1.0, 'hoped': 1.0}
Word element => {'blouses': 1.0, 'or': 1.0, 'shirts': 1.0, 'and': 1.0, 'stains': 1.0, 'embarrassing': 1.0, 'causing': 1.0, 'this': 1.0, 'wetness': 1.0, 'extra': 1.0, 'work': 1.0, 'without': 1.0, 'perfectly': 1.0, 'for': 1.0, 'on': 1.0, 'contain': 1.0, 'is': 1.0, 'they': 1.0, 'the': 1.0, 'what': 1.0, '34': 2.0, 'needed': 1.0}
Word element => {'preferable': 1.0, 'far': 1.0, 'do': 1.0, 'worst': 1.0, 'uncomfortable': 1.0, 'but': 1.0, 'cloth': 1.0, 'not': 2.0, 'these': 1.0, 'the': 4.0, 'ones': 1.0, 'overnight': 1.0, 'verdict': 1.0, 'am': 1.0, 'are': 2.0, 'my': 1.0, 're': 1.0, 'relatively': 1.0, 'for': 1.0, 'they': 3.0, 'need': 1.0, 'be': 1.0, 'although': 1.0, 'were': 1.0, 'relaying': 1.0, 'bra': 1.0, 'was': 1.0, 'ineffective': 1.0, 'well': 1.0, 'use': 1.0, 'breast': 1.0, 'and': 1.0, 'conform': 1.0, 'adhesive': 1.0, 'wife': 1.0, 'stick': 1.0, 'to': 4.0, 'as': 1.0, 'also': 1.0, 'mostly': 1.0, 'i': 1.0, 'disposables': 1.0, 's': 1.0, 'go': 1.0, 'there': 1.0, 'bulky': 1.0, 'no': 1.0, 'either': 1.0, 'leaks': 1.0}
Word element => {'on': 1.0, 'unless': 1.0, 'would': 1.0, 'so': 1.0, 're': 1.0, 'bad': 1.0, 'leaky': 1.0, 'at': 1.0, 'overly': 1.0, 'be': 1.0, 'but': 1.0, 'can': 1.0, '20': 1.0, 'before': 1.0, 'pump': 1.0, 'out': 2.0, 'run': 1.0, 'due': 1.0, 'admit': 1.0, 'though': 1.0, 'well': 1.0, 'holding': 1.0, 'thick': 1.0, 'extra': 1.0, 'little': 1.0, 'breastmilk': 1.0, 'my': 1.0, 'avent': 3.0, 'opportunity': 1.0, 'given': 1.0, 'problem': 3.0, 'stick': 1.0, 'philips': 3.0, 'go': 1.0, 'a': 3.0, 'thicker': 1.0, 'them': 2.0, 'it': 1.0, 'engorgement': 1.0, 'showing': 1.0, 'that': 1.0, 'been': 1.0, 'pretty': 1.0, 'many': 1.0, '49': 1.0, 'up': 1.0, 'nighttime': 3.0, 'an': 1.0, 'sale': 1.0, 'have': 5.0, '4': 1.0, 'i': 8.0, 'comfortable': 1.0, 'feel': 1.0, 'm': 1.0, 'used': 1.0, 'brand': 1.0, 'using': 1.0, 'like': 2.0, 'lansinoh': 4.0, 'too': 1.0, 'milk': 1.0, 'and': 4.0, 'try': 1.0, 'do': 1.0, 'they': 2.0, 'are': 5.0, 'now': 1.0, 'breastpads': 1.0, 'just': 1.0, 'not': 2.0, 'about': 1.0, 'for': 2.0, 'expensive': 1.0, 'love': 1.0, 'actually': 1.0, 'oversupply': 1.0, 'good': 1.0, 'quite': 2.0, 'shirt': 1.0, 'thickness': 1.0, 'others': 1.0, 'these': 4.0, 'without': 1.0, 'the': 4.0, 'found': 1.0, 'soft': 2.0, 'all': 1.0, 'to': 6.0, 'as': 2.0, 'pads': 5.0, 'with': 3.0, 'through': 1.0}
Word element => {'hasn': 1.0, 'clothing': 1.0, 'through': 1.0, 'wrinkled': 1.0, 'bunchy': 1.0, 'look': 1.0, 'been': 1.0, 'that': 2.0, 'e': 1.0, 'appear': 1.0, 'would': 2.0, 'worried': 1.0, 'note': 1.0, 'types': 1.0, 'other': 1.0, 'it': 1.0, 'if': 1.0, 'thicker': 1.0, 'in': 1.0, 'regular': 2.0, 'recommend': 1.0, 'bra': 1.0, 'was': 1.0, 'leaking': 1.0, 'for': 1.0, '3x': 1.0, 'they': 5.0, 'tender': 1.0, 'these': 2.0, 's': 1.0, 'a': 3.0, 't': 2.0, 'but': 2.0, '2': 1.0, 'more': 1.0, 'the': 2.0, 'like': 1.0, 'i': 7.0, 'breastfeed': 1.0, 'my': 3.0, 'use': 1.0, 'while': 1.0, 'how': 2.0, 'nightime': 1.0, 'have': 1.0, 'with': 1.0, 'over': 1.0, 'don': 1.0, 'problem': 2.0, 'pretty': 1.0, 'are': 1.0, 'still': 3.0, 'and': 3.0, 'brands': 1.0, 'than': 1.0, 'daytime': 1.0, 'ones': 2.0, 'bunch': 1.0, 'less': 1.0, 'd': 1.0, 'm': 1.0, 'night': 1.0, 'softer': 1.0, 'against': 1.0, 'sore': 1.0, 'comfortable': 1.0, 'feel': 1.0, 'pricewise': 1.0, 'breasts': 1.0, 'not': 1.0, 'get': 1.0, 'sure': 1.0, 'compare': 1.0, 'comparable': 1.0, 'to': 1.0}
Word element => {'nothing': 1.0, 'nursing': 1.0, 'bras': 1.0, 'stuck': 1.0, 'if': 1.0, 'the': 1.0, 'tanks': 1.0, 'anything': 1.0, 'on': 1.0, 'adhesive': 1.0, 'would': 1.0, 'never': 1.0, 'actually': 1.0, 'stay': 1.0, 'worked': 1.0, 'they': 1.0, 'these': 1.0, 'but': 1.0, 'be': 1.0, 'great': 1.0}
Word element => {'them': 1.0, 'been': 1.0, 've': 1.0, 'since': 1.0, 'or': 1.0, 'day': 1.0, 'at': 1.0, 'which': 1.0, 'they': 1.0, 't': 1.0, 'these': 1.0, 'haven': 1.0, 'pads': 2.0, 're': 1.0, 'for': 1.0, 'using': 2.0, 'all': 1.0, 'nursing': 1.0, 'like': 1.0, 'but': 1.0, 'really': 1.0, 'night': 1.0, 'i': 3.0, 'cheaper': 1.0, 'expensive': 1.0, 'what': 1.0, 'you': 1.0, 'and': 1.0, 'get': 1.0, 'm': 1.0, 'now': 1.0, 'lanisoh': 1.0, 'leaked': 1.0, 'are': 1.0}
Word element => {'see': 1.0, 'old': 2.0, 'to': 3.0, 'granddaughter': 1.0, 'not': 1.0, 'year': 2.0, 'chair': 1.0, 'has': 1.0, 'one': 1.0, '4': 1.0, 'my': 1.0, 'let': 1.0, 'will': 1.0, 'cute': 1.0, 'her': 1.0, 'even': 1.0, 'and': 1.0, 'get': 1.0, 'close': 1.0, 'this': 1.0, 'taken': 1.0, 'sister': 1.0, 'it': 1.0, 'so': 1.0}
Word element => {'mom': 1.0, 'new': 1.0, 'a': 1.0, 'saver': 1.0, 'for': 1.0, 'life': 1.0}
Word element => {'have': 1.0, 'you': 1.0, 'if': 1.0, 'not': 1.0, 'would': 1.0, 'i': 1.0, 'now': 1.0, 'recommend': 1.0, 'big': 1.0, 'small': 1.0, 'are': 1.0, 'way': 1.0, 'to': 1.0, 'ice': 1.0, 'breasts': 1.0, 'these': 2.0, 'used': 1.0, 'as': 1.0, 'them': 1.0, 'packs': 1.0, 'purchasing': 1.0, 'for': 1.0}
Word element => {'enough': 1.0, 'get': 1.0, 'found': 1.0, 'be': 1.0, 'can': 1.0, 'they': 2.0, 'process': 1.0, 'a': 1.0, 'didn': 1.0, 'heat': 1.0, 'been': 1.0, 'would': 1.0, 'no': 1.0, 'were': 1.0, 'but': 2.0, 'water': 1.0, 'different': 1.0, 'ice': 1.0, 'cold': 1.0, 't': 1.0, 'microwaved': 1.0, 'great': 1.0, 'the': 1.0, 'having': 1.0, 'disappointed': 1.0, 'pads': 1.0, 'slow': 1.0, 'to': 1.0, 'was': 2.0, 'i': 2.0, 'or': 1.0, 'worked': 1.0, 'from': 1.0, 'using': 3.0, 'them': 2.0, 'any': 1.0, 'not': 1.0, 'gel': 1.0, 'type': 1.0, 'hot': 2.0, 'other': 1.0, 'have': 1.0, 'pack': 1.0, 'warm': 2.0}
Word element => {'migraine': 1.0, 'headache': 1.0, 'tender': 1.0, 'relief': 1.0, 'brings': 1.0, 'highly': 1.0, 'boo': 1.0, 'would': 1.0, 'washing': 1.0, 'hand': 1.0, 'bumps': 1.0, 'recommend': 2.0, 'small': 1.0, 'can': 1.0, 'but': 1.0, 'covers': 1.0, 'or': 1.0, 'let': 1.0, 'consuming': 1.0, 'so': 1.0, 'time': 1.0, 'fever': 2.0, 'they': 1.0, 'forehead': 1.0, 'knee': 1.0, 'skinned': 1.0, 'bruised': 1.0, 'bump': 1.0, 'multi': 1.0, 'of': 2.0, 'are': 1.0, 'helped': 1.0, 'apply': 1.0, 'at': 1.0, 'milk': 1.0, 'and': 3.0, 'kid': 1.0, 'woke': 1.0, 'any': 2.0, 'as': 1.0, 'prepare': 1.0, 'to': 6.0, 'pop': 1.0, 'encourage': 1.0, 'mom': 1.0, 'easily': 1.0, 'when': 1.0, 'then': 1.0, 'multipurpose': 1.0, 'get': 1.0, 'neg': 1.0, 'easy': 1.0, 'freezer': 4.0, 'purpose': 1.0, 'packs': 1.0, 'heated': 1.0, 'swollen': 1.0, 'with': 4.0, 'a': 2.0, 'we': 2.0, 'breasts': 2.0, 'relieve': 1.0, 'cover': 3.0, '5': 1.0, 'age': 1.0, 'regular': 1.0, 'in': 1.0, 'also': 1.0, 'love': 1.0, 'for': 7.0, 'stars': 1.0, 'lost': 1.0, 'painful': 1.0, 'breastfeeding': 1.0, 'boos': 1.0, 'one': 1.0, 'cool': 2.0, 'put': 1.0, 'on': 2.0, 'the': 3.0, 'great': 1.0, 'used': 1.0, 'bruises': 1.0, 'inside': 1.0, 'down': 2.0, 'pack': 1.0, 'works': 1.0, 'hot': 2.0, 'engorged': 1.0, 'sweats': 2.0, 'night': 3.0, 'wash': 1.0, 'up': 1.0, 'use': 3.0, 'grabbed': 1.0, 'flashes': 2.0, 'out': 1.0}
Word element => {'addition': 1.0, 'nice': 1.0, 'freezer': 1.0, 'however': 1.0, 'wet': 1.0, 'they': 1.0, 'terrycloth': 1.0, 'used': 1.0, 'rag': 1.0, 'haven': 1.0, 'pads': 1.0, 'a': 2.0, 'warming': 1.0, 'can': 1.0, 'because': 1.0, 'from': 1.0, 'as': 1.0, 'and': 2.0, 'are': 1.0, 'actually': 1.0, 'cover': 1.0, 'amazing': 1.0, 'take': 1.0, 'i': 1.0, 'in': 1.0, 'these': 1.0, 't': 2.0, 'the': 3.0, 'microwave': 1.0, 'microwaving': 1.0, 'is': 1.0, 'longer': 1.0, 'to': 1.0, 'prepare': 1.0, 'go': 1.0, 'than': 1.0}
Word element => {'much': 1.0, 'so': 1.0, 'are': 1.0, 'soothies': 1.0, 'needed': 1.0, 'which': 1.0, 'on': 1.0, 'cover': 1.0, 'had': 1.0, 'you': 2.0, 'relief': 1.0, 'any': 1.0, 'for': 1.0, 'enough': 1.0, 'cool': 1.0, 'better': 1.0, 'if': 1.0, 'did': 1.0, 'they': 1.0, 'in': 1.0, 'm': 1.0, 'and': 1.0, 'do': 1.0, 'pads': 1.0, 'the': 1.0, 'these': 1.0, 't': 1.0, 'just': 1.0, 'gel': 1.0, 'not': 3.0, 'smart': 1.0, 'i': 2.0, 'that': 1.0, 'maybe': 1.0, 'can': 1.0, 'them': 2.0, 'out': 1.0, 'why': 1.0, 'really': 1.0, 'figure': 1.0, 'is': 1.0, 'a': 1.0, 'little': 1.0, 'understand': 1.0, 'there': 1.0, 'notch': 1.0}
Word element => {'work': 1.0, 'after': 1.0, 'baby': 1.0, 'away': 1.0, 'being': 1.0, 'this': 1.0, 'is': 1.0, 'you': 1.0, 'experiencing': 1.0, 'great': 1.0, 'for': 1.0, 'are': 1.0, 'soothing': 1.0, 'from': 2.0, 'engorgement': 1.0, 'sore': 1.0, 'if': 1.0, 'beasts': 1.0, 'especially': 1.0}
Word element => {'second': 1.0, 'duty': 1.0, 'double': 1.0, 'do': 1.0, 'pair': 2.0, 'don': 1.0, 'want': 1.0, 'you': 1.0, 'thaw': 1.0, 'warm': 3.0, 'if': 2.0, 'freezer': 2.0, 'recommendation': 1.0, 'has': 1.0, 'them': 1.0, 'pads': 2.0, 'dual': 1.0, 'advantage': 1.0, 'then': 1.0, 'take': 2.0, 'difficult': 1.0, 'aching': 1.0, 'cold': 2.0, 'hot': 2.0, 'cloth': 1.0, 'terry': 1.0, 'very': 2.0, 'being': 1.0, 'surface': 1.0, 'nursing': 1.0, 'was': 4.0, 'bra': 1.0, 'launder': 1.0, 'to': 7.0, 'keeps': 1.0, 'any': 1.0, 'in': 3.0, 'appreciated': 1.0, 'capability': 1.0, 'wife': 1.0, 'from': 1.0, 'while': 1.0, 'soothe': 1.0, 's': 3.0, 't': 2.0, 'could': 1.0, 'my': 1.0, 'absolute': 1.0, 'fact': 1.0, 'both': 3.0, 'immediate': 1.0, 'buy': 1.0, 'wants': 1.0, 'hand': 2.0, 'on': 2.0, 'liners': 1.0, 'recommend': 1.0, 'were': 3.0, 'when': 1.0, 'same': 1.0, 'gave': 1.0, 'about': 1.0, 'incredibly': 1.0, 'out': 2.0, 'absolutely': 1.0, 'throwing': 1.0, 'breasts': 2.0, 'found': 1.0, 'easy': 1.0, 'make': 1.0, 'area': 1.0, 'bottom': 1.0, 'frozen': 2.0, 'soft': 1.0, 'choose': 1.0, 'mother': 1.0, 'these': 2.0, 'either': 1.0, 'would': 1.0, 'use': 1.0, 'her': 6.0, 'water': 1.0, 'relief': 1.0, 'shape': 1.0, 'and': 5.0, 'feature': 1.0, 'or': 1.0, 'greatly': 1.0, 'try': 1.0, 'one': 4.0, 'ones': 1.0, 'too': 2.0, 'she': 10.0, 'it': 7.0, 'placement': 1.0, 'kept': 1.0, 'nipples': 1.0, 'yes': 1.0, 'off': 1.0, 'all': 1.0, 'an': 1.0, 'other': 1.0, 'critical': 1.0, 'the': 16.0, 'of': 9.0, 'bowl': 1.0, 'hole': 1.0, 'didn': 1.0, 'microwave': 1.0, 'lifesaver': 1.0, 'needed': 1.0, 'side': 1.0, 'that': 3.0, 'breast': 1.0, 'but': 2.0, 'not': 2.0, 'is': 1.0, 'at': 1.0, 'engorged': 1.0, 'time': 1.0, 'feeling': 1.0, 'designed': 1.0, 'for': 1.0, 'larger': 1.0, 'cover': 1.0, 'breasted': 1.0, 'woman': 1.0, 'a': 4.0, 'small': 1.0, 'big': 1.0, 'also': 1.0}
Word element => {'sock': 1.0, 'nice': 1.0, 'often': 1.0, 'remedy': 1.0, 'best': 1.0, 'being': 1.0, 'clearly': 1.0, 'plastic': 1.0, 'instructions': 1.0, 'just': 2.0, 'time': 1.0, 'wait': 1.0, 'quite': 1.0, 'could': 1.0, 'before': 2.0, 'through': 1.0, 'rice': 1.0, 'go': 1.0, 'many': 1.0, 'how': 1.0, 'kept': 2.0, 'nurse': 1.0, 'pop': 1.0, 'and': 2.0, 'freezer': 3.0, 'keep': 1.0, 'seeds': 1.0, 'flax': 2.0, 'only': 2.0, 'usually': 1.0, 'when': 2.0, 'general': 1.0, 'put': 1.0, 'microwave': 3.0, 'think': 1.0, 'pack': 1.0, 'definitely': 1.0, 'up': 1.0, 'water': 2.0, 'relief': 1.0, 'but': 3.0, 'so': 1.0, 'can': 3.0, 'in': 9.0, 'large': 1.0, 'meant': 1.0, 'you': 6.0, 'want': 2.0, 'terry': 1.0, 'engorgement': 2.0, 'woman': 2.0, 'vine': 1.0, 'weakest': 1.0, 'are': 2.0, 'used': 1.0, 'since': 1.0, 'one': 1.0, 'skin': 1.0, 'not': 5.0, 'design': 1.0, 'idea': 1.0, 'probably': 1.0, 'designed': 1.0, 'ready': 2.0, 'clever': 2.0, 'product': 5.0, 'for': 7.0, 'where': 1.0, 'if': 6.0, 'certainly': 1.0, 'damaged': 1.0, 'however': 2.0, 'against': 1.0, 'to': 11.0, 'as': 4.0, 'was': 2.0, 'useful': 2.0, 'doesn': 1.0, 'would': 7.0, 'warm': 1.0, 'offered': 1.0, 'nipple': 3.0, 't': 3.0, 'hole': 1.0, 'heat': 2.0, 'going': 1.0, 'on': 1.0, 'at': 1.0, 'is': 14.0, 'more': 1.0, 'firstly': 1.0, 'shouldn': 1.0, 'amazon': 1.0, 'cycles': 1.0, 'imagine': 2.0, 'a': 13.0, 'small': 1.0, 'suppose': 1.0, 'appreciated': 1.0, 'have': 4.0, 'while': 2.0, 'purpose': 1.0, 'center': 1.0, 'from': 1.0, 'stick': 1.0, 'this': 9.0, 'educator': 1.0, 'it': 13.0, 'has': 1.0, 'i': 10.0, 'well': 2.0, 'temperature': 1.0, 'hot': 4.0, 'of': 4.0, 'the': 20.0, 'seemingly': 1.0, 'd': 1.0, 'c': 1.0, 'cup': 1.0, 'or': 4.0, 'huge': 1.0, 'matter': 1.0, 'than': 1.0, 'lactation': 1.0, 'see': 2.0, 'b': 1.0, 'seem': 1.0, 'excited': 1.0, 'mold': 1.0, 'use': 5.0, 'smaller': 1.0, 'also': 2.0, 'full': 1.0, 'planning': 1.0, 'recommend': 1.0, 'were': 1.0, 'shield': 1.0, 'be': 3.0, 'though': 1.0, 'part': 1.0, 'cold': 4.0, 'because': 1.0, 'breast': 1.0, 'that': 2.0, 'sometimes': 1.0, 'practical': 1.0, 'cloth': 1.0, 'appropriate': 1.0, 'breasted': 2.0, 'helpful': 2.0, 'cover': 1.0, 'sore': 2.0, 'there': 3.0, 'hold': 1.0}
Word element => {'when': 1.0, 'take': 1.0, 'in': 1.0, 'leave': 1.0, 'provided': 1.0, 'sleeve': 1.0, 'especially': 1.0, 'use': 1.0, 'and': 3.0, 'with': 1.0, 'only': 1.0, 'baby': 1.0, 'now': 1.0, 'to': 1.0, 'had': 1.0, 'option': 1.0, 'far': 1.0, 'needed': 1.0, 'easy': 1.0, 'a': 1.0, 'out': 1.0, 'them': 1.0, 'have': 1.0, 'started': 1.0, 'the': 3.0, 'these': 1.0, 'even': 1.0, 'before': 1.0, 'used': 1.0, 'they': 1.0, 'i': 4.0, 'freezer': 1.0, 'mine': 1.0, 'using': 1.0, 'liked': 1.0, 'are': 1.0, 'cold': 1.0, 'so': 1.0}
Word element => {'use': 1.0, 'experience': 1.0, 'positive': 1.0, 'have': 1.0, 'else': 1.0, 'someone': 1.0, 'worth': 1.0, 'completely': 1.0, 'are': 1.0, 'happening': 1.0, 'wasn': 1.0, 'by': 1.0, 'suggests': 1.0, 'product': 1.0, 'as': 1.0, 'mist': 2.0, 'create': 1.0, 'enough': 1.0, 'helpful': 1.0, 'production': 1.0, 'yes': 1.0, 'tried': 1.0, 'another': 1.0, 'buy': 1.0, 'might': 1.0, 'using': 1.0, 'while': 1.0, 'set': 2.0, 'will': 1.0, 'could': 1.0, 'so': 1.0, 'didn': 1.0, 'nagging': 1.0, 'kind': 1.0, 'get': 2.0, 'freezer': 3.0, 'to': 2.0, 'other': 2.0, 'all': 2.0, 'when': 3.0, 'inserted': 1.0, 'these': 1.0, 'once': 1.0, 'pads': 1.0, 'dd': 1.0, 'find': 1.0, 'feeling': 1.0, 'felt': 1.0, 'used': 1.0, 'it': 3.0, 'sets': 1.0, 'any': 1.0, 'your': 1.0, 'do': 1.0, 'put': 1.0, 'on': 1.0, 'they': 5.0, 'and': 7.0, 'one': 1.0, 'crying': 1.0, 'too': 1.0, 'milk': 1.0, 'just': 2.0, 'large': 1.0, 'immersing': 1.0, 'soak': 1.0, 'know': 1.0, 'gel': 1.0, 'of': 3.0, 'the': 14.0, 'stretchy': 1.0, 'in': 6.0, 'beats': 1.0, 'particularly': 1.0, 'bra': 1.0, 'was': 1.0, 'such': 1.0, 'for': 5.0, 'actually': 1.0, 'or': 2.0, 'cup': 1.0, 'into': 1.0, 'because': 1.0, 'that': 3.0, 'ddd': 1.0, 'were': 2.0, 'them': 6.0, 'hot': 2.0, 'started': 1.0, 'you': 2.0, 'night': 1.0, 'a': 5.0, 't': 4.0, 'maybe': 1.0, 'sense': 1.0, 's': 2.0, 'lower': 1.0, 'soreness': 1.0, 'leaned': 1.0, 'still': 1.0, 'back': 2.0, 'this': 1.0, 'with': 1.0, 'weren': 2.0, 'wish': 1.0, 'me': 1.0, 'my': 1.0, 'breasts': 1.0, 'warm': 5.0, 'had': 1.0, 'i': 13.0, 'slept': 1.0, 'am': 1.0, 'last': 1.0, 'sleeves': 2.0, 'good': 1.0, 'is': 2.0, 'at': 1.0, 'cool': 2.0, 'keep': 1.0, 'did': 2.0, 'massaged': 1.0, 'uncomfortable': 1.0, 'obviously': 1.0, 'woke': 1.0, 'water': 1.0, 'relief': 3.0, 'up': 1.0, 'but': 3.0, 'thing': 1.0, 'happens': 1.0, '2': 1.0, 'ok': 2.0, 'sore': 2.0, 'give': 1.0, 'there': 1.0, 'no': 1.0, 'covers': 1.0, 'burn': 1.0, 'cold': 1.0, 'not': 1.0, 'skin': 1.0, 'size': 1.0, 'shape': 1.0}
Word element => {'little': 1.0, 'so': 1.0, 'worked': 1.0, 'owies': 1.0, 'for': 2.0, 'three': 1.0, 'honestly': 1.0, 'in': 2.0, 'relief': 1.0, 'first': 1.0, 'perfect': 1.0, 'this': 1.0, 'and': 4.0, 'need': 1.0, 'saw': 1.0, 'bruises': 1.0, 'longer': 1.0, 'nursing': 1.0, 'only': 1.0, 'pack': 2.0, 'used': 2.0, 'his': 2.0, 'these': 1.0, 'the': 3.0, 'bumps': 1.0, 'was': 1.0, 'help': 1.0, 'them': 2.0, 'started': 1.0, 'no': 1.0, 'discomfort': 1.0, 'of': 1.0, 'i': 3.0, 'times': 1.0, 'when': 1.0, 'ice': 2.0, 'my': 2.0, 'however': 1.0, 'went': 1.0, 'toddler': 1.0, 'an': 1.0, 'bumped': 1.0, 'head': 1.0, 'stays': 1.0, 'auntie': 1.0, 'assumed': 1.0, 'get': 1.0, 'freezer': 3.0, 'him': 1.0, 'it': 3.0, 'engorgement': 1.0, 'she': 1.0, 'into': 1.0, 'that': 1.0, 'to': 2.0, 'our': 1.0}
Word element => {'find': 1.0, 'pictures': 1.0, 'looking': 1.0, 'calm': 1.0, 'me': 1.0, 'anything': 1.0, 'didn': 1.0, 'and': 1.0, 'milk': 1.0, 'get': 1.0, 'help': 1.0, 'using': 1.0, 'nice': 1.0, 'feel': 1.0, 'did': 1.0, 'better': 1.0, 'however': 1.0, 'don': 1.0, 'worked': 1.0, 'son': 2.0, 'were': 1.0, 'i': 3.0, 'when': 1.0, 'times': 1.0, 'was': 1.0, 'soothe': 1.0, 'they': 3.0, 'used': 1.0, 'best': 1.0, 'applied': 1.0, 'these': 2.0, 't': 2.0, 'nipple': 1.0, 'wraps': 1.0, 'at': 2.0, 'soothing': 1.0, 'especially': 1.0, 'that': 4.0, 'breastfeeding': 1.0, 'more': 1.0, 'around': 1.0, 'while': 1.0, 'my': 5.0, 'exclusively': 1.0, 'being': 2.0, 'but': 1.0, 'work': 2.0, 'has': 1.0, 'well': 1.0, 'midly': 1.0, 'for': 5.0, 'of': 2.0, 'sore': 1.0, 'nipples': 2.0, 'the': 3.0, 'gel': 1.0, 'helps': 1.0, 'instead': 1.0, 'on': 2.0, 'engorged': 1.0, 'them': 2.0, 'breasts': 3.0, 'lansinoh': 1.0, 'as': 2.0, 'to': 2.0, 'pads': 1.0, 'do': 1.0, 'much': 1.0}
Word element => {'cold': 1.0, 'or': 1.0, 'hot': 1.0, 'can': 1.0, 'that': 1.0, 'worry': 1.0, 'so': 1.0, 'just': 1.0, 'use': 2.0, 'easy': 1.0, 'me': 1.0, 'about': 1.0, 'super': 1.0, 's': 1.0, 'i': 3.0, 'to': 1.0, 'the': 2.0, 'more': 1.0, 'is': 1.0, 'sterilization': 1.0, 'of': 2.0, 'this': 1.0, 'it': 3.0, 'a': 1.0, 'hassle': 1.0, 'fact': 1.0, 'love': 1.0, 'for': 1.0}
Word element => {'agent': 1.0, 'proper': 1.0, 'was': 1.0, 'easy': 1.0, 'personally': 1.0, 'test': 1.0, 'rest': 1.0, 't': 1.0, 'while': 1.0, 'time': 1.0, 'be': 1.0, 'happens': 1.0, 'who': 1.0, 'proximity': 1.0, 'close': 1.0, 'have': 1.0, 'for': 1.0, 'luckily': 1.0, 'these': 1.0, 'using': 1.0, 'not': 1.0, 'me': 2.0, 'appropriate': 1.0, 'weirdo': 1.0, 'some': 1.0, 'he': 2.0, 'what': 1.0, 'reviewing': 1.0, 'man': 1.0, 'testing': 1.0, 'am': 1.0, 'hell': 1.0, 'hurting': 1.0, 'prevents': 1.0, 'kind': 1.0, 'extreme': 1.0, 'probably': 2.0, 'from': 4.0, 'as': 1.0, 'place': 1.0, 'pads': 2.0, 'to': 4.0, 'least': 1.0, 'temperature': 1.0, 'or': 2.0, 've': 1.0, 'in': 5.0, 'tenderness': 1.0, 'guy': 1.0, 'particularly': 1.0, 'more': 1.0, 'them': 2.0, 'make': 1.0, 'do': 2.0, 'put': 4.0, 'an': 1.0, 'other': 1.0, 'it': 2.0, 'already': 1.0, 'providing': 1.0, 'use': 2.0, 'pad': 1.0, 'set': 1.0, 'there': 1.0, 'gel': 2.0, 'packaged': 1.0, 'sleeve': 2.0, 'first': 1.0, 'are': 2.0, 'moment': 1.0, 'about': 2.0, 'you': 9.0, 'breast': 2.0, 'that': 4.0, 'easily': 1.0, 's': 2.0, 'could': 1.0, 'figured': 1.0, 'go': 1.0, 'a': 3.0, 'knowing': 1.0, 'water': 1.0, 'than': 1.0, 'holders': 1.0, 'this': 6.0, 'tell': 1.0, 'anything': 1.0, 'soft': 1.0, 'comfort': 1.0, 'they': 5.0, 'two': 1.0, 'well': 1.0, 'i': 4.0, 're': 1.0, 'come': 1.0, 'with': 4.0, 'work': 1.0, 'freezer': 1.0, 'say': 1.0, 'unique': 1.0, 'comfortable': 1.0, 'syled': 1.0, 'by': 2.0, 'why': 1.0, 'just': 3.0, 'and': 3.0, 'suffering': 1.0, 'protection': 1.0, 'indeed': 1.0, 'is': 3.0, 'at': 2.0, 'someone': 1.0, 'yourself': 2.0, 'd': 1.0, 'necessary': 1.0, 'didn': 1.0, 'discomfort': 1.0, 'the': 6.0, 'of': 3.0, 'if': 1.0, 'feeding': 2.0, 'hot': 1.0, 'speaking': 1.0, 'product': 3.0, 'avent': 1.0, 'trusted': 1.0, 'brand': 1.0, 'nothing': 1.0, 'asking': 1.0, 'absolutely': 1.0, 'out': 2.0, 'himself': 1.0, 'very': 1.0, 'can': 4.0, 'so': 2.0, 'then': 1.0, 'take': 1.0, 'grain': 1.0, 'salt': 1.0, 'good': 2.0, 'made': 1.0, 'which': 1.0}
Word element => {'i': 1.0, 'or': 1.0, 'two': 1.0, 'use': 1.0, 'purchased': 1.0, 'to': 1.0, '2': 1.0, 'this': 1.0, 'perfectly': 1.0, 'and': 1.0, 'up': 1.0, 'worked': 1.0, 'as': 2.0, 'ordered': 1.0, 'one': 2.0, 'for': 2.0, 'warm': 3.0, 'cold': 2.0, 'well': 1.0, 'packs': 1.0, 'bring': 1.0, 'did': 1.0, 'not': 1.0, 'relief': 1.0, 'stay': 1.0, 'far': 1.0}
Word element => {'day': 1.0, 'end': 1.0, 'done': 1.0, 'has': 1.0, 'babies': 1.0, 'those': 1.0, 'how': 1.0, 'know': 1.0, 'don': 1.0, 'issue': 1.0, 'it': 1.0, 'do': 1.0, 'bum': 1.0, 'be': 2.0, 'immediately': 1.0, 'a': 4.0, 'we': 2.0, 'baby': 2.0, 'breathing': 1.0, 'would': 1.0, 'was': 1.0, 'cover': 1.0, 'where': 1.0, 're': 1.0, 'and': 3.0, 'for': 2.0, 't': 1.0, 'fit': 1.0, 'on': 4.0, 's': 2.0, 'posterior': 1.0, 'skeptical': 1.0, 'one': 2.0, 'lot': 1.0, 'give': 1.0, 'not': 2.0, 'expectations': 1.0, 'that': 2.0, 'because': 1.0, 'does': 1.0, 'brands': 1.0, 'researching': 1.0, 'get': 1.0, 'no': 1.0, 'some': 1.0, 'spent': 1.0, 'these': 4.0, 'room': 1.0, 'are': 3.0, 'diapers': 5.0, 'okay': 1.0, 'an': 1.0, 'all': 2.0, 'diaper': 3.0, 'as': 3.0, 'to': 4.0, 'of': 5.0, 'the': 12.0, 'claimed': 1.0, 'at': 2.0, 'is': 3.0, 'i': 5.0, 'disposables': 1.0, 'cloth': 2.0, 'time': 2.0, 'they': 2.0, 'in': 1.0, 'break': 1.0, 'daycare': 1.0, 'snaps': 1.0, 'from': 1.0, 'downside': 1.0, 'nice': 1.0, 'great': 1.0, 'so': 2.0, 'can': 2.0, 'contain': 1.0, 'past': 1.0, 'adjust': 1.0, 'washing': 1.0, 'rise': 1.0, 'my': 2.0, 'post': 1.0, 'child': 1.0, 'decided': 1.0, 'nearly': 1.0, 'poopy': 1.0, 'bummies': 1.0, 'event': 1.0, 'will': 1.0, 'expected': 1.0, 'only': 2.0, 'have': 1.0, 'consuming': 1.0, 'looking': 1.0, 'weekends': 1.0, 'rinsing': 2.0, 'rinse': 1.0, 'if': 1.0, 'ick': 1.0, 'version': 1.0, 'staining': 1.0, 'factor': 1.0, 'exceeded': 1.0, 'use': 1.0, 'you': 2.0, 'able': 1.0, 'activities': 1.0, 'need': 1.0, 'or': 1.0, 'dried': 1.0, 'waste': 1.0, 'really': 1.0}
Word element => {'old': 1.0, 'month': 1.0, '4': 1.0, 'my': 1.0, 'cute': 1.0, 'stretchy': 1.0, 'like': 1.0, 'good': 2.0, 'is': 1.0, 'really': 1.0, 'quality': 1.0, 'will': 1.0, 'hat': 1.0, 'cotton': 1.0, 'it': 1.0, 'this': 1.0, 'other': 1.0, 'fit': 1.0, 'not': 1.0, 'probably': 1.0, 'order': 1.0, 'great': 1.0, 'the': 1.0, 'baby': 1.0, 'colors': 1.0, 'seems': 1.0, 'to': 1.0, 'love': 1.0, 'for': 1.0}
Word element => {'options': 1.0, 'dishware': 1.0, 'free': 1.0, 'plastic': 1.0, 'additional': 1.0, 'open': 1.0, 'buy': 1.0, 'them': 1.0, 'am': 1.0, 'overall': 2.0, 'wary': 1.0, 'be': 1.0, 'long': 1.0, 'larger': 1.0, 'there': 1.0, 'foods': 1.0, 'with': 2.0, 'sink': 1.0, 'in': 1.0, 'color': 1.0, 'couple': 1.0, 'soak': 1.0, 'tend': 1.0, 'they': 1.0, 'that': 1.0, 'far': 1.0, 'hand': 1.0, 'continue': 1.0, 'certain': 1.0, 'only': 1.0, 've': 1.0, 'ideal': 1.0, 'sliced': 1.0, 'fruit': 1.0, 'keep': 1.0, 'toddlers': 1.0, 'at': 1.0, 'of': 1.0, 'rather': 1.0, 'once': 1.0, 'a': 3.0, 'half': 1.0, '5': 1.0, 'eyes': 1.0, 'this': 1.0, 'kids': 2.0, 'perfect': 1.0, 'will': 1.0, 'staining': 1.0, 'also': 1.0, 'so': 2.0, 'plate': 1.0, 'sandwich': 1.0, 'some': 1.0, 'these': 2.0, 'the': 3.0, 'are': 4.0, 'too': 1.0, 'and': 7.0, 'bowls': 1.0, 'for': 4.0, 'more': 1.0, 'is': 1.0, 'cereal': 1.0, 'washed': 1.0, 'therefore': 1.0, 'nuts': 1.0, 'refilled': 1.0, 'have': 1.0, 'small': 1.0, 'summer': 1.0, 'though': 1.0, 'sets': 1.0, 'pleased': 1.0, 'tip': 1.0, 'yr': 2.0, 'left': 1.0, 'easy': 1.0, 'by': 2.0, 'meal': 1.0, 'snack': 1.0, 'lightweight': 1.0, 'my': 3.0, 'noticed': 1.0, 'young': 1.0, 'old': 2.0, 'i': 4.0, 'cups': 2.0, 'least': 1.0, 'to': 3.0, 'up': 1.0, 'over': 1.0, 'if': 2.0, 'sitting': 1.0, 'but': 2.0, '2': 1.0, 'bumped': 1.0}
Word element => {'plus': 1.0, 'seen': 1.0, 'be': 1.0, 'cartoon': 1.0, 'not': 1.0, 'set': 1.0, 'perfect': 1.0, 'this': 1.0, 'would': 1.0, 'spoon': 1.0, 'onto': 1.0, 'daughter': 1.0, 'big': 1.0, 'grand': 1.0, 'another': 1.0, 'fact': 1.0, 'my': 1.0, 'food': 1.0, 'but': 2.0, 'recommend': 1.0, 'doesn': 1.0, 'two': 1.0, 'i': 5.0, 'what': 1.0, 'that': 3.0, 'half': 1.0, 'easier': 1.0, 'say': 1.0, 'is': 4.0, 'colorful': 1.0, 'scoop': 1.0, 'it': 4.0, 'come': 1.0, 'and': 6.0, 'shape': 1.0, 'edges': 1.0, 'curved': 1.0, 'the': 10.0, 'are': 1.0, 't': 1.0, 'a': 3.0, 'cup': 1.0, 'wanted': 1.0, 'to': 3.0, 'much': 1.0, 'size': 2.0, 'right': 1.0, 'large': 1.0, 'just': 1.0, 'will': 1.0, 'seems': 2.0, 'nonbreakable': 1.0, 'bowl': 1.0, 'never': 1.0, 'her': 1.0, 'clean': 1.0, 'in': 1.0, 'dishwasher': 1.0, 'have': 1.0, 'take': 1.0, 'plate': 3.0, 'bit': 1.0, 'so': 2.0, 'time': 1.0, 'makes': 1.0, 'for': 1.0, 'love': 1.0, 'of': 1.0, 'wash': 1.0, 'up': 1.0, 'hand': 1.0, 'which': 1.0}
Word element => {'you': 2.0, 'person': 1.0, 'conscientious': 1.0, 'a': 1.0, 'thankful': 1.0, 'zoe': 1.0, 'chemicals': 1.0, 'is': 1.0, 'leaks': 1.0, 'b': 1.0, 'than': 1.0, 'that': 2.0, 'rather': 1.0, 'have': 1.0, 'all': 1.0, 'but': 1.0, 'there': 1.0, 'of': 1.0, 'products': 1.0, 'i': 2.0, 'daughters': 1.0, 'thank': 2.0, 'they': 1.0, 'on': 1.0, 'replaced': 1.0, 'product': 1.0, 'eating': 1.0, 'plates': 1.0, 'my': 1.0, 'safest': 1.0, 'plastic': 2.0, 'can': 1.0, 'cups': 1.0, 'market': 1.0, 'and': 1.0, 'absolutely': 1.0, 'bowls': 1.0, 'behind': 1.0, 'the': 2.0, 'scratch': 1.0, 'garbage': 1.0, 'd': 1.0}
Word element => {'size': 1.0, 'larger': 1.0, 'i': 1.0, 'his': 1.0, 'cover': 1.0, 'no': 1.0, 'will': 1.0, 'bit': 1.0, 'gets': 1.0, 'fall': 1.0, 'melt': 1.0, 'rack': 2.0, 'shoulders': 1.0, 'her': 1.0, 'clean': 1.0, 'back': 1.0, 'top': 1.0, 'through': 1.0, 'they': 1.0, 'pocket': 1.0, 'bibs': 1.0, 'had': 2.0, 'to': 3.0, 'dishwasher': 1.0, 'in': 3.0, 'by': 1.0, 'wish': 1.0, 'this': 1.0, 'it': 1.0, 'with': 1.0, 'toddlers': 1.0, 'bigger': 1.0, 'bib': 2.0, 'and': 2.0, 'latch': 1.0, 'or': 1.0, 'stays': 2.0, 'hand': 1.0, 'open': 1.0, 'a': 2.0, 'we': 1.0, 's': 3.0, 'you': 1.0, 'use': 1.0, 'easy': 1.0, 'one': 1.0, 'longer': 1.0, 'bottom': 1.0, 'always': 1.0, 'heated': 1.0, 'dry': 1.0, 'on': 3.0, 'your': 2.0, 'once': 1.0, 'element': 1.0, 'have': 1.0, 'be': 1.0, 'the': 9.0, 'careful': 1.0, 'not': 1.0, 'catch': 1.0, 'baby': 2.0, 'hair': 1.0, 'for': 1.0, 'closure': 1.0, 'but': 1.0, 'case': 1.0, 'that': 2.0}
Word element => {'purchased': 1.0, 'glad': 1.0, 'im': 1.0, 'bibs': 1.0, 'overall': 1.0, 'tell': 1.0, 'soft': 1.0, 'less': 1.0, 'on': 1.0, 'periodically': 1.0, 'think': 3.0, 'stuff': 1.0, 'recommendation': 1.0, 'wonders': 1.0, 'this': 3.0, 'curious': 1.0, 'buttons': 1.0, 'not': 1.0, 'bib': 1.0, 'keep': 1.0, 'make': 1.0, 'help': 1.0, 'neck': 1.0, 'pouch': 1.0, 'out': 4.0, 'empty': 1.0, 'its': 1.0, 'only': 2.0, 'babies': 1.0, 'or': 1.0, 'food': 1.0, 'can': 1.0, 'but': 1.0, 'mess': 2.0, 'liquids': 2.0, 'my': 2.0, 'was': 1.0, 'spill': 1.0, 'catching': 1.0, 'adjust': 1.0, 'he': 1.0, 'liked': 1.0, 'a': 4.0, 'i': 5.0, 'well': 1.0, 'in': 2.0, 'also': 2.0, 'seems': 1.0, 'would': 5.0, 'drop': 1.0, 'besides': 1.0, 'at': 1.0, 'is': 2.0, 'around': 1.0, 'really': 2.0, 'with': 2.0, 'it': 8.0, 'unfortunately': 1.0, 'baby': 5.0, 'get': 1.0, 'and': 6.0, 'that': 2.0, 'silicone': 1.0, 'stays': 1.0, 'holes': 1.0, 'compare': 1.0, 'all': 1.0, 'pour': 1.0, 'other': 2.0, 'brands': 1.0, 's': 2.0, 'maybe': 1.0, 'went': 1.0, 'to': 7.0, 'pretty': 1.0, 'straight': 1.0, 'bought': 1.0, 'from': 1.0, 'part': 1.0, 'since': 1.0, 'friend': 1.0, 'the': 9.0, 'of': 2.0, 'work': 1.0, 'open': 1.0, 'like': 1.0, 'catch': 1.0, 'supposed': 1.0, 't': 1.0, 'fit': 1.0, 'there': 3.0, 'working': 1.0, 'first': 1.0, 'are': 2.0, 'back': 1.0, 'multiple': 1.0, 'will': 1.0, 'tendency': 1.0, 'anyway': 1.0, 'comfortable': 1.0, 'worry': 1.0, 'about': 1.0, 'tearing': 1.0, 'time': 1.0}
Word element => {'clean': 1.0, 'are': 1.0, 'really': 1.0, 're': 1.0, 'they': 1.0, 'myself': 1.0, 'daughter': 2.0, 've': 1.0, 'easy': 1.0, 'she': 1.0, 'because': 1.0, 'well': 1.0, 'a': 1.0, 'comfortable': 1.0, 'for': 3.0, 'using': 1.0, 'product': 1.0, 'bought': 1.0, 's': 1.0, 'friend': 1.0, 'bib': 1.0, 'and': 3.0, 'to': 1.0, 'was': 1.0, 'wanted': 1.0, 'pink': 1.0, 'son': 1.0, 'children': 1.0, 'this': 1.0, 'it': 1.0, 'work': 1.0, 'back': 1.0, 'i': 1.0, 'her': 3.0, 'used': 1.0, 'great': 2.0, 'these': 1.0}
Word element => {'time': 1.0, 'next': 1.0, 'just': 1.0, 'and': 2.0, 'bag': 1.0, 'rinse': 1.0, 'keep': 1.0, 'when': 1.0, 'daughter': 1.0, 'in': 1.0, 'reason': 1.0, 'ready': 1.0, 'doesn': 1.0, 'but': 1.0, 'easy': 1.0, 'she': 1.0, 'off': 2.0, 'plus': 1.0, 'out': 1.0, 'clean': 1.0, 'bibs': 1.0, 'hates': 1.0, 'to': 1.0, 'the': 1.0, 'diaper': 1.0, 't': 1.0, 'my': 2.0, 'rip': 1.0, 'for': 2.0, 'one': 1.0, 'i': 1.0, 'this': 1.0, 'it': 4.0, 's': 2.0, 'some': 1.0, 'super': 1.0}
Word element => {'really': 1.0, 'not': 1.0, 'into': 1.0, 'necklace': 1.0, 'new': 1.0, 'a': 1.0, 'imprinted': 2.0, 'has': 1.0, 'of': 1.0, 'little': 1.0, 'bib': 1.0, 'and': 1.0, 'cute': 1.0, 'bibs': 1.0, 'it': 1.0, 'this': 1.0, 'pink': 1.0, 'adorable': 1.0, 'buttons': 1.0, 'upscale': 1.0, 'sorry': 1.0, 'look': 1.0, 'for': 2.0, 'infants': 1.0, 'the': 1.0, 'silicone': 1.0, 'toddlers': 1.0}
Word element => {'clean': 1.0, 'to': 1.0, 'super': 1.0, 'babies': 1.0, 'easy': 1.0, 'against': 1.0, 'just': 1.0, 'what': 1.0, 'soft': 1.0, 'looking': 1.0, 'flexible': 1.0, 'we': 1.0, 'were': 1.0, 'neck': 1.0, 'this': 1.0, 'for': 1.0, 'is': 1.0, 'a': 1.0, 'and': 1.0, 'bib': 1.0, 'very': 1.0}
Word element => {'we': 1.0, 'bib': 1.0, 'much': 1.0, 'pretty': 1.0, 'off': 1.0, 'of': 1.0, 'dishwasher': 1.0, 'can': 1.0, 'use': 1.0, 'most': 1.0, 'in': 1.0, 'you': 1.0, 'food': 1.0, 'great': 1.0, 'the': 3.0, 'drops': 1.0, 'is': 2.0, 'throw': 1.0, 'catches': 1.0, 'thing': 1.0, 'only': 1.0, 'it': 3.0, 'this': 2.0, 'that': 1.0, 'our': 1.0, 'baby': 1.0, 'clean': 1.0, 'and': 1.0, 'just': 1.0, 'now': 1.0, 'to': 1.0}
Word element => {'keeps': 1.0, 'daughter': 1.0, 'too': 1.0, 'that': 1.0, 'food': 1.0, 'bottom': 1.0, 'use': 1.0, 'bibs': 1.0, 'falls': 1.0, 'waterproof': 1.0, 'we': 1.0, 'other': 1.0, 'all': 1.0, 'great': 1.0, 'the': 3.0, 'water': 1.0, 'under': 1.0, 's': 1.0, 'month': 1.0, 'looking': 1.0, 'soft': 1.0, 'what': 1.0, 'love': 1.0, 'for': 1.0, 'comfortable': 1.0, 'exactly': 1.0, 'i': 2.0, 'old': 1.0, 'was': 1.0, 'to': 2.0, 'curved': 1.0, 'is': 3.0, 'on': 1.0, 'catch': 1.0, '10': 1.0, 'bib': 1.0, 'it': 4.0, 'this': 1.0, 'rinses': 1.0, 'my': 2.0, 'a': 1.0, 'breeze': 1.0, 'unlike': 1.0, 'run': 1.0, 'clean': 3.0, 'just': 1.0}
Word element => {'its': 1.0, 'baby': 1.0, 'wipe': 1.0, 'great': 1.0, 'the': 3.0, 'carry': 1.0, 'needed': 1.0, 'love': 1.0, 'wash': 1.0, 'don': 1.0, 'about': 1.0, 't': 1.0, 'a': 2.0, 'bag': 1.0, 'this': 1.0, 'shower': 1.0, 'it': 3.0, 'received': 1.0, 'one': 1.0, 'decided': 1.0, 'to': 3.0, 'as': 1.0, 'from': 1.0, 'i': 3.0, 'at': 1.0, 'bib': 1.0, 'too': 1.0, 'and': 1.0, 'gift': 1.0, 'because': 1.0, 'just': 1.0, 'you': 2.0, 'can': 1.0, 'off': 1.0, 'or': 1.0, 'in': 2.0, 'dishwasher': 1.0, 'worry': 1.0, 'have': 1.0, 'also': 1.0, 'staining': 1.0, 'has': 1.0, 'another': 1.0, 'lip': 1.0, 'bottom': 1.0, 'diaper': 1.0, 'catch': 1.0, 'crumbs': 1.0}
Word element => {'meal': 1.0, 'every': 1.0, 'durable': 1.0, 'it': 6.0, 'daily': 1.0, 'he': 1.0, 'this': 2.0, 'only': 1.0, 'excellent': 1.0, 'purchased': 1.0, 'when': 1.0, 'and': 2.0, 'shape': 1.0, 'perfectly': 1.0, 'very': 1.0, 'from': 1.0, 'son': 1.0, 'bib': 2.0, 'has': 1.0, '18': 1.0, 'used': 1.0, 'his': 1.0, 'one': 1.0, 'months': 2.0, 'about': 1.0, 'is': 2.0, 'now': 1.0, 'to': 1.0, 'rolls': 1.0, 'until': 1.0, '10': 1.0, 'which': 1.0, 'easy': 2.0, 'lap': 1.0, 'wash': 1.0, 'up': 1.0, 'for': 2.0, 'use': 1.0, 'travel': 1.0, 'onto': 1.0, 'retains': 1.0, 'my': 1.0, 'fits': 1.0, 'him': 1.0, 'i': 1.0, 'otherwise': 1.0, 'catches': 1.0, 'food': 1.0, 'would': 1.0, 'drop': 1.0, 's': 2.0, 'we': 1.0}
Word element => {'review': 1.0, 'have': 1.0, 'quality': 1.0, 'higher': 1.0, 'ulubulu': 1.0, 'money': 1.0, 'worth': 1.0, 'buying': 1.0, 'won': 1.0, 'you': 1.0, 'regret': 1.0, 'people': 1.0, 'there': 1.0, 'give': 1.0, 'gift': 1.0, 'its': 1.0, 'another': 1.0, 'myself': 1.0, 'ordered': 1.0, 'again': 1.0, 'eating': 1.0, 'tries': 1.0, 'up': 1.0, 'reaches': 1.0, 'some': 1.0, 'accidentally': 1.0, 'figured': 1.0, 'plus': 1.0, 'done': 1.0, 'sink': 1.0, 'toss': 1.0, 'pockets': 1.0, 'remove': 1.0, 'chair': 1.0, 'mouth': 1.0, 'wipe': 1.0, 'be': 1.0, 'lap': 1.0, 'getting': 1.0, 'string': 1.0, 'too': 1.0, 'ones': 1.0, 'one': 2.0, 'absorbed': 1.0, 'shower': 2.0, 'once': 1.0, 'much': 1.0, 'messes': 1.0, 'hands': 1.0, 'least': 1.0, 'high': 1.0, 'to': 3.0, 'bigger': 1.0, 'at': 2.0, 'seemed': 1.0, 'big': 1.0, 'but': 1.0, 'collected': 1.0, 'back': 3.0, 'most': 1.0, 'him': 1.0, 'it': 8.0, 'my': 5.0, 'on': 2.0, 'omg': 1.0, 'what': 1.0, 'when': 2.0, 'bibs': 1.0, 'amazing': 1.0, 'voila': 1.0, 'wasn': 1.0, 'cleanups': 1.0, 'out': 3.0, 'started': 1.0, 'baby': 4.0, 'got': 1.0, 'all': 1.0, 'ever': 1.0, 'and': 12.0, 'a': 4.0, 'along': 1.0, 't': 3.0, 's': 3.0, 'mess': 1.0, 'day': 1.0, 'etc': 1.0, 'of': 5.0, 'the': 12.0, 'easily': 1.0, 'silicone': 2.0, 'that': 3.0, 'dump': 1.0, 'stains': 2.0, 'purees': 1.0, 'about': 1.0, 'this': 2.0, 'minute': 1.0, 'used': 1.0, 'collects': 1.0, 'no': 3.0, 'let': 1.0, 'went': 1.0, 'well': 1.0, 'i': 7.0, 'fast': 1.0, 'forward': 1.0, 'drawer': 2.0, 'bib': 4.0, '6': 1.0, 'smeared': 1.0, 'he': 4.0, 'son': 1.0, 'decides': 1.0, 'wiping': 1.0, 'meals': 1.0, 'pocket': 1.0, 'man': 1.0, 'picks': 1.0, 'doesn': 1.0, 'make': 2.0, 'anymore': 1.0, 'food': 2.0, 'need': 1.0, 'drops': 1.0, 'his': 5.0, 'grown': 1.0, 'mama': 1.0, 'cloth': 1.0, 'feed': 1.0, 'constantly': 1.0, 'so': 3.0, 'off': 1.0, 'months': 1.0, 'legs': 1.0, 'drips': 2.0, 'shorts': 1.0, 'than': 1.0, 'lightbulb': 1.0, 'm': 1.0, 'in': 4.0, 'feeding': 1.0, 'new': 1.0, 'invention': 1.0, 'more': 3.0, 'backs': 1.0, '10': 1.0, 'tray': 1.0, 'excited': 1.0, 'after': 1.0, 'just': 2.0}
Word element => {'gift': 1.0, 'easily': 1.0, 'up': 1.0, 'roll': 1.0, 'great': 1.0, 'can': 1.0, 'transport': 1.0, 'to': 2.0, 'dishwasher': 1.0, 'idea': 1.0, 'lasting': 1.0, 'super': 1.0, 'flexible': 1.0, 'clean': 1.0, 'easy': 1.0, 'safe': 1.0, 'long': 1.0, 'wipe': 1.0, 'so': 1.0}
Word element => {'gifting': 1.0, 'find': 1.0, 'call': 1.0, 'will': 1.0, 'guess': 1.0, 'loved': 1.0, 'customer': 1.0, 'over': 1.0, 'clearly': 1.0, 'australia': 1.0, 'safe': 1.0, 'food': 1.0, 'item': 1.0, 'how': 1.0, 'say': 1.0, 'does': 1.0, 'buried': 1.0, 'australian': 1.0, 'not': 1.0, 'continue': 1.0, 'version': 1.0, 'out': 1.0, 'chinese': 1.0, 'sending': 1.0, 'instead': 1.0, 'minus': 1.0, 'way': 1.0, 'under': 1.0, 'same': 1.0, 'molded': 1.0, 'ordered': 1.0, 'one': 2.0, 'last': 1.0, 'but': 5.0, 'dupe': 1.0, 'free': 1.0, 'part': 1.0, 'be': 1.0, 'might': 1.0, 'can': 2.0, 'so': 1.0, 'photos': 1.0, 'logo': 3.0, 'had': 1.0, 'with': 4.0, 'generic': 1.0, 'plastic': 1.0, 'specs': 1.0, 'cheap': 1.0, 'catches': 1.0, 'two': 1.0, 'trust': 1.0, 'become': 1.0, 'was': 2.0, 'store': 1.0, 'amazon': 2.0, 'we': 1.0, 'giving': 1.0, 's': 3.0, 'look': 1.0, 'at': 1.0, 'is': 7.0, 'she': 2.0, 'thought': 1.0, 'it': 7.0, 'conscience': 1.0, 'bags': 1.0, 'as': 2.0, 'to': 5.0, 'without': 1.0, 'pulls': 1.0, 'a': 5.0, 'small': 1.0, 'have': 4.0, 'good': 1.0, 'based': 1.0, 'made': 3.0, 'gift': 2.0, 'started': 1.0, 'my': 4.0, 'company': 8.0, 'sealed': 1.0, '99': 1.0, 'pulling': 1.0, 'bib': 4.0, '6': 1.0, 'knock': 1.0, 'i': 8.0, 'well': 1.0, 'them': 2.0, 'has': 1.0, 'details': 1.0, 'frustration': 1.0, 'shipped': 1.0, 'chaffing': 1.0, 'daughter': 1.0, 'using': 1.0, 'off': 2.0, 'images': 1.0, 'tightest': 1.0, 'display': 1.0, 'they': 2.0, 'day': 3.0, 'shown': 1.0, 't': 4.0, 'fit': 1.0, 'china': 2.0, 'for': 2.0, 'product': 2.0, 'packaging': 2.0, 'this': 8.0, 'when': 3.0, 'hurt': 1.0, 'figure': 1.0, 'seller': 3.0, 'now': 2.0, 'frame': 1.0, 'months': 1.0, 'fact': 1.0, 'old': 1.0, 'and': 4.0, 'where': 1.0, 'come': 1.0, 'moms': 1.0, 'doesn': 3.0, 'must': 1.0, 'setting': 1.0, 'these': 2.0, 'receiving': 1.0, 'use': 1.0, 'her': 2.0, 'you': 1.0, 'boxed': 1.0, 'spills': 1.0, 'several': 1.0, 'no': 2.0, 'there': 1.0, 'give': 1.0, 'present': 1.0, 'new': 1.0, 'silicone': 1.0, 'that': 2.0, 'received': 1.0, 'also': 1.0, 'after': 1.0, 'either': 1.0, 'on': 1.0, 'ridiculously': 1.0, 'update': 1.0, '3': 1.0, 'information': 1.0, 'make': 2.0, 'hocking': 1.0, '18': 1.0, 'go': 1.0, '14': 1.0, 'believe': 1.0, 'purchasing': 1.0, 'from': 1.0, 'an': 2.0, 'any': 1.0, 'online': 1.0, 'authorized': 1.0, 'the': 19.0, 'of': 3.0, 'longer': 1.0, 'in': 9.0, 'every': 1.0, 'still': 4.0, 'clear': 1.0, 'cute': 1.0, 'are': 2.0, 'being': 1.0}
Word element => {'granddaughter': 1.0, 's': 1.0, 'next': 1.0, 'so': 1.0, 'meal': 1.0, 'to': 1.0, 'favorite': 1.0, 'ready': 1.0, 'clean': 1.0, 'easy': 1.0, 'just': 1.0, 'rinse': 1.0, 'you': 1.0, 'my': 2.0, 'the': 1.0, 'are': 1.0, 'bib': 1.0, 'and': 1.0, 'daughter': 1.0, 'for': 2.0}
Word element => {'super': 1.0, 'spills': 1.0, 'and': 2.0, 'drips': 1.0, 'all': 1.0, 'helpful': 1.0, 'very': 1.0, 'so': 1.0, 'bib': 2.0, 'is': 3.0, 'rubber': 1.0, 'the': 4.0, 'cute': 1.0, 'cleaned': 1.0, 'absolutely': 1.0, 'catcher': 1.0, 'this': 1.0, 'it': 1.0, 'soft': 1.0, 'extra': 1.0, 'those': 1.0, 'we': 1.0, 'easy': 1.0, 'just': 1.0, 'pop': 1.0, 'wipe': 1.0, 'to': 2.0, 'material': 1.0, 'be': 1.0, 'crumb': 1.0, 'or': 1.0, 'off': 1.0, 'in': 1.0, 'love': 1.0, 'for': 2.0, 'dishwasher': 1.0}
Word element => {'source': 1.0, 'be': 1.0, 'must': 1.0, 'time': 1.0, '2nd': 1.0, 'that': 3.0, 'clean': 1.0, 'off': 1.0, 'take': 1.0, 'know': 1.0, 'not': 1.0, 'easy': 2.0, 'problem': 1.0, 'tried': 1.0, 'ordered': 1.0, 'this': 1.0, 'it': 3.0, 'at': 1.0, 'bib': 4.0, 'and': 4.0, 'love': 1.0, 'the': 6.0, 'on': 2.0, 'remedy': 1.0, 'graciously': 1.0, 'is': 3.0, 'amazon': 1.0, 'to': 3.0, 'store': 1.0, 'was': 1.0, 'very': 2.0, 'functionality': 1.0, 'of': 1.0, 'same': 1.0, 'want': 1.0, 'if': 1.0, 'you': 2.0, 'sent': 1.0, 'colored': 2.0, 'just': 1.0, 'pictured': 1.0, 'what': 1.0, 'will': 1.0, 'i': 1.0, 'purple': 1.0, 'but': 1.0, 'receive': 1.0, 'deep': 1.0, 'dark': 1.0, 'go': 1.0, 's': 1.0, 'lilac': 1.0, 'a': 3.0, 'situation': 1.0}
Word element => {'functional': 1.0, 'cute': 1.0, 'backup': 1.0, 'a': 1.0, 'catches': 1.0, 't': 1.0, 'another': 1.0, 'bib': 2.0, 'and': 3.0, 'as': 1.0, 'high': 1.0, 'this': 2.0, 'it': 2.0, 'love': 1.0, 'is': 4.0, 'awesome': 1.0, 'so': 1.0, 'stain': 1.0, 'everything': 1.0, 'we': 1.0, 'easy': 1.0, 'be': 1.0, 'clean': 1.0, 'doesn': 1.0, 'quality': 1.0, 'will': 1.0, 'to': 1.0, 'buying': 1.0}
Word element => {'really': 1.0, 'need': 1.0, 'ever': 1.0, 'will': 1.0, 'bib': 1.0, 'only': 1.0, 'you': 1.0, 'the': 1.0}
Word element => {'purchase': 1.0, 'happy': 1.0, 'clean': 1.0, 'this': 2.0, 'very': 1.0, 'bib': 1.0, 'and': 1.0, 'with': 1.0, 'is': 3.0, 'the': 2.0, 'design': 1.0, 'material': 1.0, 'perfect': 1.0, 'easy': 1.0, 'adorable': 1.0, 'to': 1.0}
Word element => {'granddaughter': 1.0, 'for': 1.0, 'one': 1.0, 'purple': 1.0, 'pink': 1.0, 'recommend': 1.0, 'no': 1.0, 'future': 1.0, 'bibs': 1.0, 'great': 1.0, 'more': 1.0, 'am': 1.0, 'with': 1.0, 'triplets': 1.0, 'highly': 1.0, 'and': 1.0, 'washes': 1.0, 'cloth': 1.0, 'buying': 1.0, 'a': 1.0}
Word element => {'not': 1.0, 'pliable': 1.0, 'just': 1.0, 'easily': 1.0, 'bibs': 1.0, 'clean': 1.0, 'child': 1.0, 'do': 2.0, 'and': 3.0, 'toddler': 1.0, 'well': 1.0, 'fit': 1.0, 'other': 1.0, 'neck': 1.0, 'helping': 1.0, 'learning': 1.0, 'these': 1.0, 'the': 3.0, 'feed': 1.0, 'ones': 1.0, 'they': 2.0, 'best': 1.0, 'soft': 1.0, 'food': 1.0, 'are': 2.0, 'a': 4.0, 's': 1.0, 'silicone': 1.0, 'on': 1.0, 'pouch': 1.0, 'around': 1.0, 'is': 2.0, 'stain': 1.0, 'right': 1.0, 'great': 1.0, 'spot': 1.0, 'catch': 1.0, 'as': 1.0, 'to': 4.0, 'spilled': 1.0, 'eliminate': 1.0, 'spills': 1.0, 'clothing': 1.0, 'what': 1.0, 'gift': 1.0, 'themselves': 1.0, 'parent': 1.0, 'of': 1.0, 'at': 1.0, 'who': 1.0}
Word element => {'can': 1.0, 'why': 1.0, 'all': 1.0, 'strange': 1.0, 'so': 1.0, 'his': 2.0, 'one': 3.0, 'green': 3.0, 'i': 1.0, 'than': 2.0, 'thinner': 2.0, 'flimsier': 1.0, 'little': 1.0, 't': 1.0, 'the': 2.0, 'is': 2.0, 'same': 1.0, 'bib': 1.0, 'and': 1.0, 'quality': 1.0, 'but': 1.0, 'blue': 3.0, 'a': 2.0, 'this': 1.0, 'be': 1.0, 'bought': 1.0, 'of': 1.0, '6': 1.0, 'my': 1.0, 'ago': 1.0, 'months': 1.0, 'disappointed': 1.0, 'also': 1.0, 'nephew': 1.0, 'they': 1.0, 'has': 1.0}
Word element => {'times': 1.0, 'several': 1.0, 'bib': 1.0, 'bottom': 1.0, 'down': 1.0, 'before': 2.0, 'after': 1.0, 'wipe': 1.0, 'to': 3.0, 'sure': 1.0, 'easy': 1.0, 'ordered': 1.0, 'is': 1.0, 'fine': 1.0, 'really': 1.0, 'bibs': 1.0, 'like': 1.0, 'variety': 1.0, 'meal': 1.0, 'this': 1.0, 'it': 3.0, 'with': 1.0, 'and': 1.0, 'little': 2.0, 'very': 1.0, 'he': 1.0, 'washing': 1.0, 'dishwasher': 1.0, 'in': 1.0, 'the': 2.0, 'my': 1.0, 'one': 2.0, 'doesn': 1.0, 'can': 1.0, 'but': 1.0, 'be': 2.0, 'putting': 1.0, 'your': 1.0, 'bowl': 1.0, 'on': 2.0, 'of': 1.0, 'once': 1.0, 'we': 1.0, 'a': 2.0, 't': 1.0, 's': 1.0, 'used': 1.0, 'tip': 1.0, 'try': 1.0, 'empty': 1.0}
Word element => {'used': 1.0, 'ever': 1.0, 'have': 1.0, 'i': 1.0, 'best': 1.0, 'to': 1.0, 'easy': 1.0, 'but': 1.0, 'bib': 2.0, 'bag': 1.0, 'using': 1.0, 'of': 1.0, 'is': 3.0, 'and': 2.0, 'ease': 1.0, 'so': 2.0, 'pliable': 1.0, 'good': 1.0, 'into': 1.0, 'great': 1.0, 'the': 4.0, 'diaper': 1.0, 'built': 1.0, 'shove': 1.0, 'in': 1.0, 'soft': 1.0, 'it': 1.0, 'this': 1.0, 'catcher': 1.0}
Word element => {'disappointed': 1.0, 'be': 1.0, 'you': 1.0, 'about': 1.0, 'collects': 1.0, 'and': 2.0, 'asks': 1.0, 'open': 1.0, 'stays': 1.0, 'cute': 2.0, 'i': 2.0, 'who': 1.0, 'road': 1.0, 'favorite': 1.0, 'all': 1.0, 'recommend': 1.0, 'easy': 1.0, 'bib': 3.0, 'stain': 1.0, 'of': 2.0, 'up': 1.0, 'types': 1.0, 'my': 1.0, 'practical': 1.0, 'own': 1.0, 'is': 2.0, 'won': 1.0, 'on': 1.0, 'mess': 1.0, 'the': 4.0, 't': 2.0, 'catcher': 1.0, 'this': 2.0, 'it': 3.0, 'everyone': 1.0, 'to': 3.0, 'out': 1.0, 'clean': 1.0, 'doesn': 1.0, 'roll': 1.0, 'take': 1.0}
Word element => {'precious': 1.0, 'on': 1.0, 'is': 1.0, 'available': 1.0, 'colors': 1.0, 'easy': 1.0, 'all': 1.0, 'it': 1.0, 'love': 1.0, 'this': 1.0, 'cute': 1.0, 'clean': 1.0, 'little': 1.0, 'and': 1.0, 'bib': 1.0, 'i': 1.0, 'so': 1.0, 'am': 1.0, 'order': 1.0, 'keep': 1.0, 'going': 1.0, 'to': 2.0, 'in': 1.0}
Word element => {'really': 1.0, 'are': 1.0, 'two': 1.0, 'of': 1.0, 'up': 1.0, 'ended': 1.0, 'dishwasher': 1.0, 'great': 1.0, 'diaper': 1.0, 'the': 2.0, 'can': 1.0, 'we': 1.0, 'while': 1.0, 'used': 1.0, 'i': 2.0, 'stays': 1.0, 'them': 1.0, 'out': 1.0, 'clean': 2.0, 'little': 1.0, 'buying': 1.0, 'to': 2.0, 'home': 1.0, 'easy': 3.0, 'travel': 1.0, 'and': 4.0, 'bib': 1.0, 'one': 2.0, 'for': 3.0, 'in': 2.0, 'go': 1.0, 'throw': 1.0, 'best': 1.0, 'it': 4.0, 're': 1.0, 'my': 2.0, 'snack': 1.0, 'bag': 2.0, 's': 1.0, 'so': 1.0, 'after': 1.0, 'on': 1.0, 'guy': 1.0, 'they': 1.0, 'has': 1.0}
Word element => {'well': 1.0, 'bibs': 1.0, 'and': 1.0, 'cloth': 1.0, 'washing': 1.0, 'easier': 1.0, 'they': 1.0, 'my': 1.0, 'travels': 1.0, 'it': 3.0, 'gave': 1.0, 'great': 1.0, 'i': 1.0, 'niece': 1.0, 'than': 1.0, 'use': 1.0, 'alot': 1.0, 'to': 1.0, 'much': 1.0}
Word element => {'self': 1.0, 'little': 1.0, 'of': 1.0, 'recommend': 1.0, 'highly': 1.0, 'would': 1.0, 'cleaning': 1.0, 'use': 1.0, 'the': 1.0, 'heavy': 1.0, 'parents': 1.0, 'comfortable': 1.0, 'to': 3.0, 'learning': 1.0, 'through': 1.0, 'seems': 1.0, 'be': 1.0, 'material': 1.0, 'and': 2.0, 'feed': 1.0, 'soft': 1.0, 'quality': 1.0, 'toddler': 1.0, 'high': 1.0, 'my': 1.0, 'kids': 1.0, 'when': 1.0, 'does': 1.0, 'daily': 1.0, 'it': 1.0, 'good': 1.0, 'job': 1.0, 'catching': 1.0, 'food': 1.0, 'wearing': 1.0, 'sustains': 1.0, 'a': 1.0, 'well': 1.0}
Word element => {'per': 1.0, 'them': 1.0, 'these': 1.0, 'so': 1.0, 'move': 1.0, '2': 1.0, 'four': 1.0, 'can': 1.0, 'they': 1.0, 'neck': 1.0, 'their': 1.0, 'rough': 1.0, 'either': 1.0, 'switched': 1.0, 'like': 1.0, 'tried': 1.0, 'son': 1.0, 'are': 1.0, 'folding': 1.0, 'comfort': 1.0, 'terms': 1.0, 'with': 2.0, 'convenient': 1.0, '14': 1.0, 'all': 1.0, 'to': 3.0, 'was': 3.0, 'look': 1.0, 'by': 1.0, 'daughter': 2.0, 'traveling': 1.0, 'when': 2.0, 'love': 1.0, 'for': 3.0, 'my': 3.0, 'kids': 1.0, 'found': 2.0, 'this': 2.0, 'she': 2.0, 'it': 4.0, 'before': 1.0, 'her': 1.0, 'used': 1.0, 'of': 3.0, 'always': 1.0, 'bibs': 3.0, 'herself': 1.0, 'on': 2.0, 'didn': 2.0, 'silicone': 1.0, 'lot': 1.0, 'at': 2.0, 'finally': 1.0, 'too': 1.0, 'starting': 1.0, 'and': 7.0, 'i': 7.0, 'mess': 1.0, 'the': 7.0, 'more': 1.0, 'legs': 1.0, 'have': 1.0, 'he': 1.0, 'plastic': 3.0, 'kid': 2.0, 'one': 5.0, 'bought': 2.0, 'tray': 1.0, 'months': 1.0, 'decided': 1.0, 'kind': 1.0, 'want': 1.0, 'eat': 1.0, 'same': 1.0, 'in': 2.0, 't': 3.0, 'we': 4.0, 'a': 3.0, 's': 2.0, 'much': 1.0}
Word element => {'done': 1.0, 'little': 1.0, 'gets': 1.0, 'still': 1.0, 'them': 1.0, 'out': 1.0, 'are': 1.0, 'mouth': 1.0, 'wide': 1.0, 'have': 1.0, 'too': 1.0, 'when': 1.0, 'i': 3.0, 'bottle': 1.0, 'particular': 1.0, 'that': 1.0, 'would': 1.0, 'be': 1.0, 'big': 1.0, 'great': 1.0, 'job': 1.0, 'the': 4.0, 'a': 1.0, 't': 1.0, 'tight': 1.0, 'my': 1.0, 'fit': 1.0, 'this': 1.0, 'it': 2.0, 'dr': 1.0, 'except': 1.0, 'bottles': 1.0, 'solution': 1.0, 'brown': 1.0, 'in': 1.0, 'can': 1.0, 'but': 2.0, 'packet': 1.0, 'get': 1.0, 'to': 2.0, 'is': 1.0, 'almost': 1.0, 'there': 1.0, 'impossible': 1.0, 'crystallizes': 1.0, 'if': 1.0, 'thermal': 2.0, 'jacket': 2.0, 'heat': 1.0, 'just': 1.0, 'up': 1.0, 'don': 1.0, 'warmer': 1.0, 'use': 1.0}
Word element => {'alternatives': 1.0, 'looking': 1.0, 'point': 1.0, 'beyond': 1.0, 'whole': 1.0, 'when': 1.0, 'pieces': 1.0, 'in': 1.0, 'which': 1.0, 'plastic': 1.0, 'opening': 1.0, 'bought': 1.0, 'and': 2.0, 'installed': 1.0, 'except': 1.0, 'that': 1.0, 'case': 1.0, 'into': 1.0, 'i': 2.0, 'two': 1.0, 'fine': 1.0, 'made': 1.0, 'shattered': 1.0, 'are': 1.0, 'defeats': 1.0, 'for': 1.0, 'cheap': 1.0, 'brittle': 1.0, 'hit': 1.0, 'these': 1.0, 'the': 5.0, 't': 1.0, 'well': 1.0, 'stop': 2.0, 'functions': 1.0, 'being': 1.0, 'anyone': 1.0, 'window': 2.0, 'wasn': 1.0, 'of': 1.0, 'forcing': 1.0, 'able': 1.0, 'looks': 1.0, 'it': 1.0, 'this': 1.0, 'purpose': 1.0, 'to': 2.0, 'prevent': 1.0, 'while': 1.0, 'hard': 1.0, 'from': 1.0, 'open': 1.0}
Word element => {'lot': 1.0, 'a': 1.0, 'not': 1.0, 'there': 1.0, 'say': 1.0, 'install': 1.0, 'to': 2.0, 'easy': 1.0, 'window': 1.0, 'more': 1.0, 'made': 1.0, 'job': 1.0, 'and': 1.0, 'lock': 1.0, 'is': 3.0, 'does': 1.0, 'well': 1.0, 'simple': 1.0, 'its': 1.0, 'this': 1.0, 'intended': 1.0}
Word element => {'from': 1.0, 'force': 1.0, 'to': 1.0, 'enough': 1.0, 'robust': 1.0, 'withstand': 1.0, 's': 1.0, 'if': 1.0, 'the': 3.0, 'ease': 1.0, 'though': 1.0, 'design': 1.0, 'regular': 1.0, 'recommendable': 1.0, 'of': 2.0, 'use': 2.0, 'not': 1.0, 'was': 1.0, 'and': 1.0, 'very': 1.0, 'it': 2.0, 'sure': 1.0}
Word element => {'been': 1.0, 'number': 1.0, 'service': 1.0, 'courtesy': 1.0, 'there': 1.0, 'going': 1.0, 'love': 1.0, 'll': 1.0, 'gamble': 1.0, 'order': 1.0, 'go': 1.0, 'have': 3.0, 'phone': 1.0, 're': 1.0, 'jobs': 1.0, 'full': 1.0, 'with': 2.0, 'nice': 1.0, 'two': 2.0, 'father': 1.0, 'across': 1.0, 'and': 8.0, 'giant': 1.0, 'about': 1.0, 'including': 1.0, 'after': 1.0, 'suitcase': 4.0, 'luck': 1.0, 'our': 2.0, 'as': 2.0, 'this': 2.0, 'a': 11.0, 's': 2.0, 't': 1.0, 'acceptable': 1.0, 'is': 2.0, 'i': 7.0, 'toddler': 2.0, 'product': 2.0, 'operates': 1.0, 'dont': 1.0, 'everything': 1.0, 'no': 1.0, 'extended': 1.0, 'ordered': 1.0, 'eventually': 1.0, '34': 4.0, 'd': 1.0, 'it': 2.0, 'scratch': 2.0, 'great': 1.0, 'for': 3.0, 'such': 2.0, 'which': 2.0, 'accept': 1.0, 'company': 3.0, 'disguises': 1.0, 'to': 5.0, 'hoping': 1.0, 'received': 1.0, 'not': 2.0, 'itself': 1.0, 'suitcases': 1.0, 'that': 5.0, 'deep': 1.0, 'gave': 1.0, 'same': 2.0, 'under': 1.0, 'from': 1.0, 'etc': 1.0, 'day': 3.0, 'get': 3.0, 'poor': 1.0, 'week': 1.0, 'names': 1.0, 'but': 3.0, '2': 1.0, 'kids': 1.0, 'shipping': 2.0, 'ready': 1.0, 'customer': 1.0, '25': 1.0, 'the': 4.0, 'of': 3.0, 'yes': 1.0, 'liked': 1.0, 'will': 1.0, 'found': 1.0, 'know': 1.0, 'damaged': 1.0, 'paying': 1.0, 'time': 2.0, 'new': 4.0, 'my': 2.0, 'me': 2.0, 'prices': 1.0, 'items': 1.0, 'even': 1.0, 'contacted': 1.0, 'them': 1.0, 'send': 3.0, 'they': 2.0, 'way': 1.0, 'return': 1.0, 'back': 3.0, 'needed': 1.0, 'make': 1.0, 'then': 1.0, 'we': 2.0, 'take': 1.0, 'work': 1.0, 'over': 1.0, 'would': 1.0, 'weeks': 1.0, 'now': 1.0, 'just': 2.0, 'sending': 1.0, 'out': 1.0, 'one': 1.0, 'so': 1.0, 'won': 1.0, 'was': 1.0, 'refund': 1.0, 'mother': 1.0, 'percentage': 1.0}
Word element => {'got': 1.0, 'mine': 1.0, 'i': 1.0, 'when': 1.0, 'a': 1.0, 'of': 1.0, 'the': 1.0, 'is': 1.0, 'crushed': 1.0, 'these': 1.0, 'better': 1.0, 'they': 2.0, 'its': 1.0, 'self': 1.0, 'were': 1.0, 'way': 1.0, 'great': 1.0, 'package': 1.0, 'but': 1.0, 'need': 1.0, 'product': 1.0, 'to': 2.0, 'think': 1.0}
Word element => {'again': 1.0, 'thanks': 1.0, 'order': 1.0, 'defiantly': 1.0, 'i': 1.0, 'for': 1.0, 'fast': 1.0, 'shop': 1.0, 'super': 1.0, 'came': 1.0, 'to': 1.0, 'head': 1.0, 'trip': 1.0, 'more': 1.0, 'these': 1.0, 'well': 1.0, 'a': 1.0, 'll': 1.0, 'bought': 1.0, 'way': 1.0, 'store': 1.0, 'cheaper': 1.0, 'collective': 1.0, 'or': 1.0, 'disneyland': 1.0, 'than': 1.0, 'any': 1.0, 'and': 1.0, 'mom': 1.0, 'pops': 1.0, 'soon': 1.0, 'liquor': 1.0}
Word element => {'be': 1.0, 'up': 1.0, 'condition': 1.0, 'the': 1.0, 'and': 1.0, 'they': 1.0, 'how': 2.0, 'ended': 1.0, 'about': 1.0, 'pleased': 1.0, 'was': 1.0, 'to': 2.0, 'my': 1.0, 'own': 1.0, 'made': 1.0, 'very': 1.0, 'at': 1.0, 'thing': 1.0, 'item': 1.0, 'rolling': 1.0, 'good': 1.0, 'tabacky': 1.0, 'purchased': 1.0, 'i': 3.0, 'where': 1.0, 'when': 1.0, 'wacky': 1.0, 'packaged': 1.0, 'so': 1.0, 'only': 1.0, 'this': 2.0, 'it': 2.0, 'wasnt': 2.0, '100': 1.0, 'times': 1.0, 'that': 1.0, 'easier': 1.0}
Word element => {'for': 1.0, 'in': 1.0, 'tabacco': 2.0, 'mixes': 1.0, 'the': 1.0, 'great': 2.0, 'works': 2.0, 'product': 1.0, 'loose': 1.0, 'to': 1.0, 'well': 1.0, 'or': 1.0, 'straws': 1.0, 'plastic': 1.0, 'push': 1.0, 'very': 1.0, 'and': 1.0, 'comes': 1.0, 'with': 1.0, 'herbal': 1.0, 'short': 1.0}
Word element => {'products': 1.0, 'raw': 1.0, 'wrong': 1.0, 'go': 1.0, 'easier': 1.0, 'll': 1.0, 'make': 1.0, 'roll': 1.0, 'how': 1.0, 'dnt': 1.0, 'if': 1.0, 'so': 1.0, 'rolled': 1.0, 'made': 1.0, 'them': 2.0, 'a': 1.0, 'hemp': 1.0, 'stuff': 1.0, 'you': 2.0, 'know': 1.0, 'just': 1.0, 'cones': 1.0, 'trips': 1.0, 'with': 1.0, 'this': 2.0, 'have': 1.0, 'for': 1.0, 'road': 1.0, 'your': 1.0, 'they': 3.0, 'great': 1.0, 'are': 2.0, 'get': 1.0, 'and': 1.0, 'cant': 1.0, 'of': 1.0, 'up': 1.0, 'light': 1.0, 'burn': 1.0, 'nice': 1.0, 'life': 1.0, 'taste': 1.0, 'slow': 1.0, 'to': 2.0, 'pre': 1.0}
Word element => {'somewhere': 1.0, 'be': 1.0, 'unusable': 1.0, 'done': 1.0, 'was': 1.0, 'had': 1.0, 'to': 2.0, 'or': 1.0, 'people': 1.0, 'no': 1.0, 'damaged': 1.0, 'the': 2.0, 'great': 1.0, 'traveling': 1.0, 'you': 3.0, 'are': 4.0, 'absolutely': 1.0, 'perfect': 2.0, 'in': 1.0, 'package': 1.0, 'tell': 1.0, 'things': 1.0, 'rush': 1.0, 'free': 1.0, 'by': 1.0, 'just': 1.0, 'know': 1.0, 'werent': 1.0, 'but': 1.0, 'can': 1.0, 'meanings': 1.0, 'means': 1.0, 'they': 2.0, 'wrinkle': 1.0, 'awesome': 1.0, 'product': 1.0, 'for': 1.0, 'who': 1.0, 'don': 1.0, 'how': 1.0, 'some': 1.0, 'these': 2.0, 'roll': 2.0, 'well': 2.0, 't': 1.0, 'could': 1.0, 'a': 1.0, 'even': 1.0, 'if': 2.0}
Word element => {'yourself': 1.0, 'it': 1.0, 'trying': 1.0, 'easier': 1.0, 'much': 1.0, 'to': 1.0, 'its': 1.0, 'so': 1.0, 'm': 1.0, 'do': 1.0, 'and': 2.0, 'already': 1.0, 'glad': 1.0, 'times': 1.0, 'quickly': 1.0, 'will': 1.0, 'a': 1.0, 'them': 2.0, 'future': 1.0, 'few': 1.0, 'near': 1.0, 'always': 1.0, 'have': 1.0, 'found': 1.0, 'ordered': 1.0, 'receive': 1.0, 'definitely': 1.0, 'i': 4.0, 'in': 2.0, 'perfect': 1.0, 'condition': 1.0, 'be': 1.0, 'than': 1.0, 'ordering': 1.0, 'these': 1.0, 'more': 1.0, 'the': 1.0}
Word element => {'buybuybuybuybuy': 1.0, 'must': 1.0, 'a': 1.0, 's': 1.0, 'the': 1.0, 'my': 1.0, 'smoker': 1.0, 'extremely': 1.0, 'marijuana': 1.0, 'product': 3.0, 'taste': 1.0, 'herb': 1.0, 'satisfied': 1.0, 'by': 1.0, 'away': 1.0, 'blowned': 1.0, 'i': 3.0, 'to': 1.0, 'was': 2.0, 'had': 1.0, 'exquisite': 1.0, 'recommend': 1.0, 'tabbacco': 1.0, 'any': 1.0, 'with': 2.0, 'this': 3.0, 'it': 1.0}
Word element => {'every': 1.0, 'tradition': 1.0, 'up': 1.0, 'this': 1.0, 'ornaments': 1.0, 'happy': 1.0, 'so': 1.0, 'it': 1.0, 'give': 1.0, 'perfect': 1.0, 'i': 1.0, 'is': 1.0, 'not': 1.0, 'was': 1.0, 'able': 1.0, 'to': 3.0, 'keep': 1.0, 'stores': 1.0, 'the': 1.0, 'find': 2.0, 'year': 1.0, 'online': 1.0, 'in': 1.0}
Word element => {'amazon': 1.0, 'once': 1.0, 'and': 1.0, 'this': 1.0, 'was': 1.0, 'perfect': 1.0, 'just': 1.0, 'again': 1.0, 'you': 1.0, 'what': 1.0, 'looking': 1.0, 'we': 1.0, 'thank': 1.0, 'in': 1.0, 'for': 1.0, 'were': 1.0, 'it': 1.0, 'condition': 1.0, 'promptly': 1.0, 'arrived': 1.0}
Word element => {'was': 1.0, 'wouldn': 1.0, 'thrilled': 1.0, 'be': 1.0, 'to': 1.0, 'i': 1.0, 'she': 1.0, 'baby': 1.0, 't': 1.0, 'this': 1.0, 'bag': 2.0, 'coach': 1.0, 'bought': 1.0, 'gift': 1.0, 'what': 1.0, 'diaper': 1.0, 'mommy': 1.0, 'for': 1.0, 'shower': 1.0, 'want': 1.0, 'a': 2.0, 'new': 1.0}
Word element => {'collection': 1.0, 'my': 1.0, 'addition': 1.0, 'this': 1.0, 'up': 1.0, 'strapped': 1.0, 'side': 1.0, 'bags': 1.0, 'coach': 2.0, 'that': 1.0, 'sachet': 1.0, 'and': 1.0, 'brown': 1.0, 'cute': 1.0, 'easier': 1.0, 'lot': 3.0, 'overall': 1.0, 'mom': 1.0, 'which': 1.0, 'like': 1.0, 'disappointed': 1.0, 'reason': 1.0, 'it': 4.0, 'first': 1.0, 'come': 2.0, 'convenient': 1.0, 'red': 1.0, 'with': 2.0, 'great': 1.0, 'nice': 2.0, 'be': 2.0, 'material': 1.0, 'all': 1.0, 'as': 2.0, 'to': 3.0, 'its': 1.0, 'for': 4.0, 'i': 3.0, 'splurged': 1.0, 'clean': 1.0, 'out': 1.0, 'frees': 1.0, 'very': 1.0, 'little': 2.0, 'pockets': 1.0, 'didn': 1.0, 'bag': 3.0, 'seems': 1.0, 'also': 1.0, 'will': 1.0, 'but': 1.0, 'getting': 1.0, 'of': 3.0, 'use': 1.0, 'storage': 1.0, 'because': 1.0, 'just': 1.0, 'some': 1.0, 'beautiful': 1.0, 'was': 3.0, 'expecting': 1.0, 'time': 1.0, 'bit': 1.0, 'room': 1.0, 'is': 3.0, 'more': 1.0, 'going': 1.0, 'a': 7.0, 't': 1.0, 'hands': 1.0, 'the': 1.0}
Word element => {'altogether': 1.0, 'return': 1.0, 'just': 1.0, 'fix': 1.0, 'of': 1.0, 'hence': 1.0, 'how': 1.0, 'like': 1.0, 'really': 1.0, 'problem': 1.0, 'same': 1.0, 'looks': 1.0, 'it': 4.0, 'so': 2.0, 'item': 1.0, 'is': 1.0, 'have': 1.0, 'but': 1.0, 'four': 1.0, 'all': 1.0, 'ones': 1.0, 'myself': 1.0, 'the': 7.0, 'defective': 1.0, 'damaged': 1.0, 'short': 1.0, 'be': 1.0, 'are': 1.0, 'pieces': 1.0, 'stars': 1.0, 'love': 1.0, 'll': 1.0, 'bumper': 2.0, 'got': 1.0, 'tie': 1.0, 'cute': 1.0, 'print': 1.0, 'came': 1.0, 'long': 1.0, 'three': 1.0, 'at': 3.0, 'one': 2.0, 'color': 1.0, 'only': 1.0, 'this': 1.0, 'come': 1.0, 'with': 2.0, 'first': 1.0, 'exchanged': 1.0, 'single': 1.0, 'very': 2.0, 'and': 3.0, 'instead': 1.0, 'there': 2.0, 'would': 1.0, 'each': 2.0, 'otherwise': 1.0, 'i': 6.0, 'two': 3.0, 'thinking': 1.0, 'corner': 2.0, 'design': 1.0, 'a': 2.0, 'we': 1.0, 'makes': 1.0, 'difficult': 1.0, 'instructions': 1.0, 'next': 1.0, 'installation': 1.0, 'that': 3.0, 'show': 1.0, 'should': 1.0, 'ties': 1.0, 'was': 1.0}
Word element => {'feel': 1.0, 'also': 1.0, 'place': 1.0, 'in': 1.0, 'lot': 1.0, 'hold': 1.0, 'they': 1.0, 'these': 2.0, 'have': 1.0, 'are': 1.0, 'tried': 1.0, 'a': 2.0, 'stick': 1.0, 'great': 1.0, 'very': 1.0, 'and': 1.0, 'quite': 1.0, 'as': 1.0, 'few': 1.0, 'i': 1.0, 'soft': 1.0, 'brands': 1.0}
Word element => {'not': 1.0, 'comfortable': 1.0, 'super': 1.0, 'and': 2.0, 'fantastic': 1.0, 'look': 1.0, 'years': 1.0, 'are': 1.0, 'my': 1.0, 'himself': 1.0, 'loves': 1.0, 'old': 1.0, 'to': 1.0, 'put': 1.0, 'they': 1.0, 'these': 1.0, 'stiff': 1.0, 'he': 1.0, 'son': 1.0, 'on': 1.0, 'is': 1.0, '3': 1.0}
Word element => {'grows': 1.0, 'out': 1.0, 'slippers': 1.0, 'her': 1.0, 'pair': 1.0, 'plan': 1.0, 'butterfly': 1.0, 'absolutely': 1.0, 'when': 1.0, 'daughter': 1.0, 'year': 1.0, 'loves': 1.0, 'to': 2.0, 'these': 1.0, '2': 2.0, 'my': 1.0, 'are': 1.0, 'they': 1.0, 'cozy': 1.0, 'comfy': 1.0, '1': 1.0, 'and': 1.0, 'she': 1.0, 'easy': 1.0, 'wash': 1.0, 'i': 1.0, 'old': 1.0, 'buy': 1.0, 'another': 1.0}
Word element => {'restaurants': 1.0, 'you': 1.0, 'beats': 1.0, 'type': 1.0, 'any': 1.0, 'and': 1.0, 'needing': 1.0, 'chair': 2.0, 'on': 2.0, 'in': 3.0, 'chairs': 1.0, 'stays': 1.0, 'does': 1.0, 'keep': 1.0, 'around': 1.0, 'place': 2.0, 'to': 1.0, 'comfortable': 1.0, 'soft': 1.0, 'plastic': 1.0, 'without': 1.0, 'hard': 1.0, 'it': 1.0, 'those': 1.0, 'extra': 1.0, 'seat': 2.0, 'not': 1.0, 'find': 1.0, 'straps': 1.0, 'slide': 1.0, 'the': 1.0}
Word element => {'new': 1.0, 'his': 1.0, 'loves': 1.0, 'chairs': 1.0, 'back': 1.0, 'secure': 1.0, 'and': 2.0, 'very': 1.0, 'table': 1.0, 'in': 1.0, 'well': 1.0, 'fits': 1.0, 'curved': 1.0, 'is': 2.0, 'on': 1.0, 'the': 3.0, 'my': 1.0, 'seat': 2.0, 'with': 1.0, 'this': 1.0, 'chair': 1.0, 'grandson': 1.0, 'able': 1.0, 'at': 1.0, 'now': 1.0, 'everyone': 1.0, 'to': 1.0, 'else': 1.0, 'eat': 1.0}
Word element => {'grandchildren': 1.0, 'the': 1.0, 'lightweight': 1.0, 'both': 1.0, 'smaller': 1.0, 'bring': 1.0, 'and': 3.0, 'quality': 1.0, 'kids': 1.0, 'washes': 1.0, 'chair': 1.0, 'is': 1.0, 'comfortable': 1.0, 'for': 2.0, 'to': 1.0, 'bigger': 1.0, 'easy': 1.0, 'store': 1.0, 'good': 1.0, 'easily': 1.0, 'solid': 1.0, 'two': 1.0, 'i': 1.0, 'have': 1.0, 'out': 1.0, 'them': 1.0}
Word element => {'disappointed': 1.0, 'and': 1.0, 'tomorrow': 1.0, 'out': 1.0, 'have': 1.0, 'find': 1.0, 'gift': 1.0, 'a': 1.0, 'be': 1.0, 'supposed': 1.0, 'something': 1.0, 'that': 1.0, 'is': 1.0, 'christmas': 1.0, 'it': 1.0, 'with': 1.0, 'paid': 1.0, 'add': 1.0, 'on': 1.0, 'box': 1.0, 'what': 1.0, 'inside': 2.0, 'instead': 1.0, 'the': 1.0, 'so': 1.0, 'else': 1.0, 'small': 1.0, 'entire': 1.0, 'now': 1.0, 'was': 1.0, 'to': 3.0, 'wanted': 1.0, 's': 1.0, 'go': 1.0, '5': 1.0, 'i': 3.0, 'toys': 2.0, '28': 1.0, '26': 1.0, 'for': 1.0, 'baby': 1.0, 'ridiculous': 1.0, 'how': 1.0}
Word element => {'for': 1.0, 'teaching': 1.0, 'and': 1.0, 'fun': 1.0, '13': 1.0, 'play': 1.0, 'loves': 1.0, 'first': 1.0, 'to': 1.0, 'old': 1.0, 'good': 1.0, 'he': 1.0, 'with': 1.0, 'son': 1.0, 'is': 1.0, 'these': 1.0, 'they': 1.0, 'words': 1.0, 'my': 1.0, 'are': 1.0, 'tool': 1.0, 'months': 1.0}
Word element => {'not': 1.0, 'will': 1.0, 'make': 1.0, 'ahead': 1.0, 'go': 1.0, 'considering': 1.0, 'are': 1.0, 'be': 1.0, 'product': 1.0, 'of': 2.0, 'the': 3.0, 'my': 1.0, 'is': 1.0, 'pleased': 1.0, 'very': 1.0, 'delivery': 1.0, 'and': 2.0, 'i': 1.0, 'beautiful': 1.0, 'disappointed': 1.0, 'also': 1.0, 'this': 1.0, 'with': 1.0, 'it': 1.0, 'absolutely': 1.0, 'was': 1.0, 'beat': 1.0, 'purchase': 1.0, 'every': 1.0, 'timeliness': 1.0, 'price': 1.0, 'if': 1.0, 'you': 2.0, 'elsewhere': 1.0}
Word element => {'value': 1.0, 'it': 1.0, 'year': 1.0, 'excellent': 1.0, 'two': 1.0, 'loves': 1.0, 'this': 1.0, 'thing': 1.0, 'is': 1.0, 'soft': 1.0, 'transportable': 1.0, 'easy': 1.0, 'old': 1.0, 'to': 1.0, 'clean': 1.0, 'quality': 1.0, 'very': 1.0, 'and': 2.0, 'our': 1.0}
Word element => {'stores': 1.0, 'have': 1.0, 'that': 1.0, 'design': 1.0, 'prefer': 1.0, 'very': 1.0, 'placed': 1.0, 'seen': 1.0, 'when': 1.0, 'move': 1.0, 'and': 1.0, 'your': 1.0, 'worrying': 1.0, 'for': 2.0, 'keep': 1.0, 'problem': 1.0, 'of': 3.0, 'fairly': 1.0, 'some': 1.0, 'booster': 2.0, 'slip': 1.0, 'negative': 1.0, 'nothing': 1.0, 'like': 1.0, 'chairs': 1.0, 'special': 1.0, 'this': 3.0, 'it': 1.0, 'but': 1.0, 'restraints': 1.0, 'much': 1.0, 'only': 1.0, 'works': 1.0, 'about': 2.0, 'well': 1.0, 'might': 1.0, 'a': 1.0, 'child': 1.0, 'out': 1.0, 'absence': 1.0, 'from': 1.0, 'son': 1.0, 'falling': 1.0, 'any': 1.0, 'our': 1.0, 'to': 2.0, 'seat': 1.0, 'wooden': 1.0, 'does': 1.0, 'because': 1.0, 'in': 3.0, 'resistant': 1.0, 'is': 2.0, 'not': 2.0, 'me': 1.0, 'ease': 1.0, 'potential': 1.0, 'i': 3.0, 'be': 1.0, 'putting': 1.0, 'my': 1.0, 'the': 5.0, 'without': 1.0, 'straps': 1.0}
Word element => {'out': 1.0, 'them': 1.0, 'train': 1.0, 'my': 1.0, 'cushy': 1.0, 'piece': 1.0, 'with': 1.0, 's': 2.0, 'a': 3.0, '26': 1.0, 'clean': 1.0, 'extremely': 1.0, 'plastic': 1.0, 'place': 1.0, 'without': 1.0, 'stays': 1.0, 'use': 2.0, 'dining': 1.0, 'most': 1.0, 'but': 1.0, 'we': 2.0, 'then': 1.0, 'the': 8.0, 'of': 2.0, 'expensive': 1.0, 'for': 5.0, 'actually': 1.0, 'easy': 2.0, 'bit': 1.0, 'can': 1.0, 'so': 1.0, 'since': 1.0, 'toddlers': 1.0, 'who': 1.0, 'more': 1.0, 'at': 1.0, 'is': 3.0, 'seems': 2.0, 'also': 1.0, 'will': 1.0, 'in': 2.0, 've': 2.0, 'would': 1.0, 'simple': 1.0, 'this': 4.0, 'perfect': 2.0, 'looked': 1.0, 'and': 5.0, 'cherry': 1.0, 'to': 5.0, 'all': 1.0, 'cartons': 1.0, 'was': 2.0, 'had': 2.0, 'he': 1.0, 'solid': 1.0, 'booster': 2.0, 'little': 1.0, 'two': 1.0, 'i': 1.0, 'ones': 1.0, 'one': 3.0, 'like': 1.0, 'table': 2.0, 'it': 5.0, 'him': 1.0, 'move': 1.0, 'old': 1.0, 'living': 1.0, 'only': 1.0, 'its': 1.0, 'comes': 1.0, 'room': 1.0, 'are': 1.0, 'strap': 1.0, 'ready': 1.0, 'safety': 1.0, 'though': 1.0, 'colors': 1.0, 'overall': 1.0, 'over': 1.0, 'additionally': 1.0, 'that': 2.0, 'because': 1.0, 'or': 1.0, 'compliment': 1.0, 'unlike': 1.0, 'your': 1.0, 'on': 1.0, 'set': 1.0, 'ours': 1.0, 'there': 1.0, 'black': 2.0, 'push': 1.0, 'you': 1.0, 'chair': 1.0, 'way': 1.0, 'month': 2.0, 'under': 1.0, 'many': 1.0}
Word element => {'doors': 1.0, 'letting': 1.0, 'just': 1.0, 'or': 1.0, 'not': 1.0, 'fingers': 1.0, 'small': 1.0, 'if': 1.0, 'you': 2.0, 'door': 2.0, 'slammer': 1.0, 'must': 1.0, 'have': 2.0, 'this': 1.0, 'close': 1.0, 'them': 1.0, 'childrens': 1.0, 'a': 1.0, 'protect': 1.0, 'hinge': 1.0, 'to': 1.0}
Word element => {'showers': 1.0, 'the': 1.0, 'disney': 1.0, 'this': 1.0, 'bought': 1.0, 'and': 2.0, 'back': 1.0, 'front': 1.0, 'nice': 1.0, 'protection': 1.0, 'fits': 1.0, 'well': 1.0, 'daily': 1.0, 'would': 1.0, 'recommend': 1.0, 'product': 1.0, 'full': 1.0, 'world': 1.0, 'child': 1.0, 'for': 2.0, 'in': 1.0}
Word element => {'panier': 1.0, 'le': 1.0, 'de': 1.0, 'et': 2.0, 'pluies': 1.0, '2': 1.0, 'vent': 1.0, 'du': 1.0, 'assez': 1.0, 'enfants': 1.0, 'parfaitles': 1.0, 'a': 1.0, 'la': 1.0, 'sont': 1.0, 'labris': 1.0, 'adapte': 1.0, 'tres': 1.0, 'plie': 1.0, 'se': 1.0, 'bien': 1.0, 'facilementse': 1.0, 'dans': 1.0, 'met': 1.0, 'sans': 1.0, 'soucis': 1.0}
Word element => {'awesome': 1.0, 'trips': 1.0, 'on': 1.0, 'pretty': 1.0, 'take': 1.0, 'issues': 1.0, 'sheet': 1.0, 'out': 1.0, 'putting': 1.0, 'bare': 1.0, 'this': 1.0, 'it': 3.0, 'with': 2.0, 'immediately': 1.0, 'there': 1.0, 'use': 2.0, 'no': 1.0, 'were': 1.0, 'quickly': 1.0, 'bed': 1.0, 'the': 5.0, 'of': 1.0, 'slips': 1.0, 'seem': 1.0, 'unless': 1.0, 'you': 1.0, 'easily': 1.0, 'consider': 1.0, 'right': 1.0, 's': 1.0, 'we': 1.0, 'included': 1.0, 'able': 1.0, 'small': 1.0, 'have': 1.0, 'any': 1.0, 'our': 1.0, 'to': 4.0, 'is': 2.0, 'comes': 1.0, 'assembly': 1.0, 'over': 1.0, 'extremely': 1.0, 'cot': 1.0, 'folds': 1.0, 'and': 4.0, 'enough': 1.0, 'unfolds': 1.0, 'back': 1.0, 'that': 1.0, 'box': 1.0, 'into': 1.0, 'little': 1.0, 'simple': 1.0, 'bag': 1.0, 'doesnt': 1.0, 'daughter': 1.0, 'slept': 1.0, 'comfort': 1.0, 'well': 1.0}
Word element => {'grade': 1.0, 'highly': 1.0, 'cheaper': 1.0, 'replacements': 1.0, 'disappointment': 1.0, 'yourself': 1.0, 'opinion': 1.0, 'spent': 1.0, 'well': 1.0, 'available': 1.0, 'with': 4.0, 'regalo': 3.0, 'some': 1.0, 'high': 1.0, 'pretty': 1.0, 'to': 8.0, 'right': 1.0, 'royal': 1.0, 'closing': 1.0, 'did': 1.0, 'makes': 1.0, 'really': 1.0, 'in': 3.0, 'up': 1.0, 'cheaperregalo': 1.0, 'returned': 1.0, 'enough': 1.0, 'would': 2.0, 'cheap': 1.0, 'didn': 1.0, 'smell': 2.0, 'chemical': 2.0, 'material': 1.0, 'had': 2.0, 'you': 3.0, 'night': 1.0, 'the': 31.0, 'turned': 1.0, 'pony': 1.0, 'she': 3.0, 'footcot': 1.0, 'weekends': 1.0, 'extra': 3.0, 'nauseatingly': 1.0, 'nylon': 1.0, 'blue': 1.0, 'glad': 1.0, 'sheet': 1.0, 'camping': 1.0, 'sturdy': 1.0, 'sleeping': 1.0, 'year': 1.0, 'child': 2.0, 'use': 2.0, 'even': 2.0, 'of': 7.0, 'old': 1.0, 'seams': 1.0, 'concerned': 1.0, 'i': 9.0, 'seems': 1.0, 'half': 1.0, 'house': 1.0, 'decided': 1.0, 'money': 2.0, 'whatsoever': 1.0, 'what': 1.0, 'folds': 1.0, 'sleeps': 2.0, 'weekend': 1.0, 'retail': 1.0, 'but': 4.0, 'my': 9.0, 'easily': 2.0, 'looks': 1.0, 'joovy': 4.0, 'complained': 1.0, 'first': 1.0, 'bothered': 1.0, 'strong': 1.0, 'portable': 2.0, 'wanted': 1.0, 'on': 6.0, 'pound': 1.0, 'foocot': 10.0, 'daytime': 2.0, 'case': 2.0, 'just': 2.0, 'tried': 1.0, 'and': 12.0, 'trip': 1.0, 'fabric': 3.0, 'this': 2.0, '32': 1.0, 'returns': 1.0, 'when': 1.0, 'bed': 1.0, 'polypropylene': 1.0, 'be': 4.0, 'it': 8.0, 't': 1.0, 'expensive': 1.0, 'm': 1.0, 's': 2.0, 'at': 6.0, 'cot': 7.0, 'out': 2.0, 'during': 1.0, 'daycare': 2.0, 'daughter': 4.0, 'feels': 1.0, 'from': 1.0, '2': 1.0, 'center': 1.0, 'seem': 1.0, 'unfolds': 1.0, 'most': 1.0, 'still': 1.0, 'if': 1.0, 'crib': 1.0, 'refuses': 1.0, 'stronger': 1.0, 'so': 4.0, 'is': 3.0, 'can': 1.0, 'do': 1.0, 'inevitable': 1.0, 'much': 3.0, 'box': 1.0, 'made': 1.0, 'than': 1.0, 'vacation': 1.0, 'very': 3.0, 'promptly': 1.0, 'prevent': 1.0, 'bought': 1.0, 'comes': 2.0, 'granted': 1.0, 'once': 1.0, 'for': 7.0, 'stylish': 1.0, 'carrying': 1.0, 'napping': 1.0, 'grandparents': 1.0, 'taken': 1.0, 'pad': 3.0, 'less': 1.0, 'as': 1.0, 'reinforced': 3.0, 'an': 1.0, 'alternative': 1.0, 'quality': 1.0, 'pay': 1.0, 'unlike': 1.0, 'has': 2.0, 'naps': 3.0, 'safety': 1.0, 'latch': 1.0, 'accidentally': 1.0, 'collapsing': 1.0, 'your': 1.0, 'feel': 1.0, 'probably': 1.0, 'lying': 1.0, 'handy': 1.0, 'also': 1.0, 'soft': 1.0, 'cots': 2.0, 'without': 1.0, 'fitted': 1.0, 'purchased': 1.0, 'spare': 1.0, 'real': 1.0, 'band': 1.0, 'or': 3.0, 'thejoovy': 1.0, 'quilted': 1.0, 'week': 1.0, 'mattress': 3.0, 'her': 2.0, 'white': 1.0, 'no': 1.0, 'inch': 1.0, 'cushioning': 1.0, 'cushy': 1.0, 'a': 11.0, 'bag': 1.0, 'nap': 2.0, 'mat': 1.0, 'home': 1.0, 'by': 1.0, 'have': 1.0, 'similar': 1.0, '37': 1.0, 'that': 2.0, 'appeared': 1.0, 'comfortable': 1.0, 'not': 1.0, 'about': 2.0, 'middle': 1.0, 'we': 1.0, 'like': 1.0, 'fine': 1.0, 'get': 2.0, 'however': 1.0, '600d': 1.0, 're': 1.0, 'strip': 2.0, 'd': 1.0, 'recommend': 2.0, 'getting': 1.0, 'since': 1.0, 'padding': 1.0, 'noticeable': 1.0, 'one': 2.0}
Word element => {'with': 1.0, 'happy': 1.0, 'this': 1.0, 'soft': 1.0, 'also': 1.0, 'sheet': 1.0, 'on': 1.0, 'purchase': 1.0, 'my': 1.0, 'is': 2.0, 'there': 2.0, 'of': 1.0, 'set': 2.0, 'up': 2.0, 'middle': 1.0, 'them': 2.0, 'quality': 1.0, 'nice': 1.0, 'great': 1.0, 'the': 4.0, 'twins': 2.0, 'a': 1.0, 'we': 1.0, 'just': 1.0, 'i': 1.0, 'two': 2.0, 'no': 1.0, 'carry': 1.0, 'year': 1.0, 'very': 2.0, 'for': 1.0, 'love': 1.0, 'they': 1.0, 'cross': 1.0, 'metal': 1.0, 'old': 1.0, 'got': 1.0, 'pockets': 1.0, 'bar': 1.0, 'purchased': 1.0, 'be': 1.0, 'as': 2.0, 'our': 1.0, 'to': 2.0, 'or': 1.0, 'fabric': 2.0, 'that': 1.0, 'case': 1.0, 'configuration': 1.0, 'are': 2.0, 'strap': 1.0, 'easy': 1.0, 'through': 1.0, 'these': 1.0, 'support': 1.0, 'straps': 1.0, 'run': 1.0, 'in': 1.0, 'soon': 2.0, 'and': 2.0}
Word element => {'compact': 1.0, 'very': 1.0, 'traveling': 1.0, 'friends': 1.0, 'bought': 1.0, 'be': 1.0, 'staying': 1.0, 'us': 1.0, 'camping': 1.0, 'home': 1.0, 'well': 1.0, 'bag': 1.0, 'due': 1.0, 'my': 1.0, 'with': 1.0, 'this': 2.0, 'it': 6.0, 'great': 2.0, 'the': 3.0, 'for': 4.0, 'using': 1.0, 'had': 1.0, 'our': 1.0, 'to': 1.0, 'was': 2.0, 'he': 1.0, 'cot': 1.0, 'a': 2.0, 'we': 2.0, 'old': 1.0, 'that': 1.0, 'loves': 1.0, 'few': 1.0, 'future': 1.0, 'weeks': 1.0, 'house': 1.0, 'year': 1.0, 'ready': 1.0, 'will': 1.0, '5': 1.0, 'before': 1.0, 'is': 2.0, 'sleeps': 1.0, 'on': 1.0, 'and': 3.0, 'worth': 1.0, '2': 1.0, 'money': 1.0, 'definitely': 1.0, 'transition': 1.0, 'summer': 1.0, 'in': 1.0}
Word element => {'wants': 1.0, 'family': 1.0, 'where': 1.0, 'for': 1.0, 'nice': 1.0, 'log': 1.0, 'vacation': 1.0, '6': 1.0, 'by': 1.0, '2ft': 1.0, 'up': 1.0, 'folds': 1.0, 'unconfortable': 1.0, 'this': 1.0, 'with': 2.0, 'her': 4.0, 'sharing': 1.0, 'there': 1.0, 'comforatable': 1.0, 'bed': 3.0, 'sick': 1.0, 'own': 1.0, 'an': 1.0, 'were': 1.0, 'hit': 1.0, 'was': 1.0, 'now': 2.0, 'night': 1.0, 'old': 1.0, 'moved': 1.0, 'and': 2.0, 'we': 2.0, 'through': 1.0, 'instant': 1.0, 'doesnt': 1.0, 'our': 2.0, 'to': 4.0, 'sleep': 3.0, 'loves': 1.0, 'or': 1.0, 'year': 1.0, 'daughter': 1.0, 'the': 3.0, 'it': 2.0, 'she': 4.0, '3': 1.0, 'on': 1.0, 'have': 1.0, 'room': 1.0, 'sleeps': 1.0, 'in': 3.0, 'seems': 1.0, 'has': 1.0, 'complained': 1.0, 'not': 1.0, 'of': 1.0, 'once': 1.0, 'about': 2.0, 'anything': 1.0, 'hurting': 1.0, 'being': 1.0}
Word element => {'far': 1.0, 'out': 1.0, 'turned': 1.0, 'expensive': 1.0, 'nothing': 1.0, 'voice': 1.0, 'loud': 1.0, 'be': 2.0, 'are': 1.0, 'there': 1.0, 'choice': 1.0, 'if': 1.0, 'kid': 1.0, 'although': 1.0, 'on': 1.0, 'so': 1.0, 'bit': 1.0, 'time': 1.0, 'single': 1.0, 'with': 1.0, 'complain': 1.0, 'collapse': 1.0, 'didn': 2.0, 'at': 1.0, 'recommended': 1.0, 'well': 1.0, '9': 1.0, 'held': 1.0, 'or': 1.0, '8': 1.0, 'used': 1.0, 'something': 1.0, 've': 1.0, 'told': 1.0, 'about': 1.0, 'complaining': 1.0, 'in': 2.0, 'few': 1.0, 'was': 1.0, 'winner': 1.0, 'uncomfortable': 1.0, 'one': 2.0, 'other': 1.0, 'this': 4.0, 'nights': 1.0, 'it': 5.0, 'choosing': 1.0, 't': 2.0, 's': 6.0, 'we': 3.0, 'a': 8.0, 'bar': 1.0, 'son': 2.0, 'middle': 1.0, 'reviews': 1.0, 'between': 1.0, 'd': 1.0, 'and': 5.0, 'cheaperregalo': 1.0, 'metal': 1.0, 'up': 2.0, 'due': 1.0, 'have': 1.0, 'the': 5.0, 'were': 1.0, 'that': 1.0, 'significantly': 1.0, 'an': 1.0, 'moves': 1.0, 'rod': 1.0, 'cot': 2.0, 'he': 2.0, 'how': 1.0, 'but': 3.0, 'wrong': 1.0, 'not': 2.0, 'having': 2.0, 'because': 1.0, 'holding': 1.0, 'easy': 1.0, 'sure': 3.0, 'much': 1.0, 'more': 1.0, 'around': 1.0, 'is': 2.0, 'true': 1.0, 'i': 1.0, 'quality': 1.0, 'night': 3.0, 'stable': 1.0, 'of': 1.0, 'rather': 1.0, 'good': 3.0, 'to': 3.0, 'sleep': 2.0, 'my': 2.0}
Word element => {'return': 1.0, 'had': 1.0, 'we': 1.0, 'for': 1.0, 'liked': 1.0, 'bed': 2.0, 'size': 1.0, 'right': 1.0, 'unfold': 1.0, 'of': 1.0, 'just': 1.0, 'lower': 1.0, 'not': 1.0, 'easy': 1.0, 'and': 1.0, 'very': 2.0, 'lightweight': 1.0, 'is': 3.0, 'really': 1.0, 'i': 1.0, 'problem': 1.0, 'tried': 1.0, 'old': 1.0, 'it': 4.0, 'out': 1.0, 'the': 8.0, 'heavier': 1.0, 'child': 1.0, 'to': 1.0, 'waist': 1.0, 'our': 2.0, 'raised': 1.0, 'baby': 1.0, 'years': 1.0, 'before': 1.0, '5': 1.0, 'maybe': 1.0, 'than': 1.0, 'can': 1.0, '2': 1.0, 'but': 2.0, 'will': 1.0, 'fold': 1.0, 'middle': 1.0, 'see': 1.0, 'you': 1.0, 'on': 1.0, 'even': 1.0, 'picture': 1.0, 'same': 1.0, 'head': 1.0, 'have': 1.0}
Word element => {'you': 1.0, 'thank': 1.0, 'his': 1.0, 'sleeping': 1.0, 'like': 1.0, 'said': 1.0, 'got': 1.0, 'yr': 1.0, 'too': 1.0, 'grandson': 1.0, 'my': 1.0, 'small': 1.0, 't': 1.0, 'the': 1.0, 'cot': 3.0, 'a': 1.0, 'bed': 1.0, 'for': 2.0, 'was': 4.0, 'night': 1.0, 'old': 1.0, 'i': 2.0, 'chulds': 1.0, 'full': 1.0, '7': 1.0, 'looking': 1.0, 'size': 1.0, 'in': 1.0, 'perfect': 1.0, 'it': 2.0, 'first': 1.0, 'he': 2.0, 'slept': 1.0, 'on': 1.0}
Word element => {'but': 1.0, 's': 1.0, 'sensitive': 1.0, 'bought': 1.0, 'it': 1.0, 'with': 1.0, 'durable': 1.0, 'skin': 1.0, 'cotton': 1.0, 'soft': 1.0, 'baby': 1.0, 'my': 2.0, 'nice': 1.0, 'two': 1.0, 'since': 1.0, '6': 1.0, 'up': 1.0, 'month': 1.0, 'tends': 1.0, 'for': 1.0, 'often': 1.0, 'i': 1.0, 'old': 1.0, 'to': 1.0, 'pricey': 1.0, 'spit': 1.0}
Word element => {'firm': 1.0, 'is': 1.0, 'very': 1.0, 'since': 1.0, 'glad': 1.0, 'this': 1.0, 'pad': 1.0, 'it': 1.0, 'adds': 1.0, 'a': 1.0, 'the': 2.0, 'little': 1.0, 'we': 1.0, 'cot': 2.0, 'got': 1.0, 'am': 1.0, 'cushion': 1.0, 'to': 1.0, 'i': 1.0}
Word element => {'ordering': 1.0, 'are': 1.0, 'you': 1.0, 'be': 1.0, 'potential': 1.0, 'lot': 1.0, 'has': 1.0, 'a': 1.0, 'well': 1.0, 'made': 1.0, 'is': 1.0, 'please': 1.0, 'feel': 1.0, 'it': 1.0, 'this': 1.0, 'as': 1.0, 'of': 2.0, 'up': 2.0, 'thinking': 1.0, 'sized': 1.0, 'need': 1.0, 'to': 3.0, 'have': 1.0, 'able': 1.0, 'thing': 1.0, 'and': 1.0, 'get': 1.0, 'should': 1.0, 'wasn': 1.0, 'great': 1.0, 't': 2.0, 'the': 1.0, 'if': 1.0, 'own': 1.0, 'i': 5.0, 'one': 2.0, 'on': 1.0, 'size': 1.0, 'can': 1.0, 'wear': 1.0, 'although': 1.0, 'that': 2.0, 'exchange': 1.0}
Word element => {'found': 1.0, 'glad': 1.0, 'so': 1.0, 'infant': 1.0, 'ordered': 1.0, 'still': 1.0, 'special': 1.0, 'i': 2.0, 'old': 1.0, 'very': 2.0, 'from': 1.0, 'big': 1.0, 'them': 1.0, 'petite': 1.0, 'regular': 1.0, 'in': 1.0, 'daughter': 1.0, 'like': 1.0, 'is': 1.0, 'panties': 1.0, 'the': 1.0, 'these': 2.0, '12mo': 1.0, 'of': 1.0, 'up': 1.0, 'other': 1.0, '5': 1.0, 'several': 1.0, 'yr': 1.0, 'she': 1.0, 'fits': 1.0, 'company': 1.0, 'my': 1.0, 'another': 1.0, 'too': 1.0, 'and': 2.0, 'comfy': 1.0, 'they': 1.0, 'slightly': 1.0, 'bottoms': 1.0, 'were': 1.0, 'reviewers': 1.0, 'are': 2.0, 'loose': 1.0, '2': 1.0, 'but': 1.0, 'stay': 1.0, 'continues': 1.0, 'underwear': 1.0, 'as': 1.0, 'to': 1.0, 'wear': 1.0}
Word element => {'comfy': 1.0, 'and': 1.0, 'soft': 1.0, 'very': 1.0, 'are': 1.0, 'they': 1.0, 'them': 1.0, 'loves': 1.0, 'old': 1.0, 'girl': 1.0, 'month': 1.0, 'training': 1.0, 'what': 1.0, 'you': 1.0, 'that': 1.0, 'for': 1.0, 'heed': 1.0, 'a': 2.0, 'just': 1.0, 'not': 1.0, 'is': 2.0, 'all': 1.0, 'so': 1.0, 'at': 2.0, 'expect': 1.0, 'lot': 1.0, 'of': 1.0, 'diaper': 1.0, 'mess': 1.0, 'the': 1.0, 'my': 1.0, 'beginning': 1.0, 'it': 1.0, '19': 1.0}
Word element => {'off': 1.0, 'pissed': 1.0, 'completely': 1.0, 'reaon': 1.0, 'cupcake': 1.0, 'because': 1.0, 'finally': 1.0, 'i': 4.0, 'wouldve': 1.0, 'print': 3.0, 'ordered': 2.0, 'cute': 1.0, 'if': 1.0, 'get': 1.0, 'and': 1.0, 'its': 1.0, 'was': 1.0, 'wanted': 1.0, 'these': 1.0, 'the': 3.0, 'mail': 1.0, 'only': 1.0, 'it': 2.0, 'in': 1.0, 'a': 1.0, 'flower': 2.0}
Word element => {'use': 1.0, 'can': 1.0, 'in': 3.0, 'bubble': 1.0, 'and': 3.0, 'assembly': 1.0, 'at': 1.0, 'pretty': 1.0, 'easy': 1.0, 'just': 1.0, 'wait': 1.0, 'arrive': 1.0, 'was': 1.0, 'to': 2.0, 'shield': 1.0, 'sun': 1.0, 't': 1.0, 'the': 4.0, 'bay': 1.0, 'run': 3.0, 'next': 1.0, 'time': 1.0, '5k': 1.0, 'quick': 1.0, 'it': 2.0, 'kept': 1.0, 'scortching': 1.0, 'bubbles': 1.0, 'arizona': 1.0}
Word element => {'heat': 1.0, 'bugs': 1.0, 'and': 2.0, 'cold': 1.0, 'one': 1.0, 'months': 1.0, 'winter': 1.0, 'nice': 1.0, 'would': 1.0, 'or': 2.0, 'through': 1.0, 'don': 1.0, 'child': 1.0, 'see': 1.0, 'cannot': 1.0, 'expect': 1.0, 'mesh': 2.0, 'an': 1.0, 'not': 4.0, 'fall': 1.0, 'is': 5.0, 'summer': 2.0, 'that': 2.0, 'sun': 3.0, 'in': 5.0, 'warning': 1.0, 'windy': 1.0, 'the': 8.0, 'i': 1.0, 'hot': 1.0, 'uv': 1.0, 'rays': 2.0, 'from': 2.0, 'intended': 1.0, 'oven': 1.0, 'what': 1.0, 'purchased': 1.0, 'this': 4.0, 'it': 4.0, 'protect': 2.0, 'as': 1.0, 'to': 4.0, 'baby': 1.0, 'my': 1.0, 'effect': 1.0, 'product': 2.0, 'for': 1.0, 'directions': 1.0, 'should': 1.0, 't': 1.0, 'a': 3.0, 'little': 1.0, 'f': 1.0, 'shield': 2.0, 'there': 1.0, 'will': 1.0, 'material': 2.0, 'weather': 2.0, 'breathable': 1.0, 'than': 1.0, 'called': 1.0, 'are': 1.0, 'window': 1.0, 'be': 2.0, 'multiple': 1.0, 'your': 2.0, 'warnings': 1.0, 'when': 1.0, 'you': 2.0, 'heavy': 1.0, 'degrees': 1.0, 'but': 2.0, 'can': 1.0, 'use': 3.0, 'warmer': 1.0, '65': 1.0, 'create': 1.0}
Word element => {'materials': 1.0, 'complaints': 1.0, 's': 1.0, 'products': 1.0, 'sure': 1.0, 'of': 2.0, 'not': 1.0, 'fine': 1.0, 'the': 2.0, 'find': 1.0, 'does': 1.0, 'job': 1.0, 'sort': 1.0, 'to': 1.0, 'cotton': 1.0, 'it': 1.0, 'hard': 1.0, 'only': 1.0, 'and': 1.0, 'made': 1.0, 'out': 1.0, 'about': 2.0, 'flax': 1.0, 'organic': 1.0}
Word element => {'however': 1.0, 'good': 1.0, 'a': 1.0, 'is': 1.0, 'hoped': 1.0, 'had': 1.0, 'shade': 1.0, 'much': 1.0, 'bug': 1.0, 'this': 1.0, 'the': 1.0, 'i': 1.0, 'does': 1.0, 'not': 1.0, 'as': 2.0, 'like': 1.0, 'weather': 1.0, 'shield': 2.0, 'fits': 1.0, 'but': 1.0, 'it': 2.0, 'provide': 1.0}
Word element => {'one': 1.0, 'get': 1.0, 'spend': 1.0, 'that': 1.0, 'you': 1.0, 'extra': 1.0, 'not': 1.0, 'an': 1.0, 'music': 1.0, 'minutes': 1.0, 'lasts': 2.0, 'the': 2.0, 'less': 1.0, 'and': 1.0, 'only': 1.0, 'than': 1.0, '10': 1.0, '2': 1.0, 'worth': 1.0, 'can': 1.0, 'money': 1.0}
Word element => {'chance': 1.0, 'tiny': 1.0, 'double': 1.0, 'britax': 1.0, 'lets': 1.0, 'wherever': 1.0, 'much': 1.0, 'hang': 1.0, 'adjusts': 1.0, 'off': 1.0, 'come': 1.0, 'clip': 1.0, 'does': 2.0, 'comfy': 1.0, 'over': 1.0, 'pulled': 1.0, 'pudge': 1.0, 'breasts': 1.0, 'between': 1.0, 'go': 2.0, 'because': 1.0, 'usually': 1.0, 'hate': 1.0, 'comfortable': 1.0, 'backpack': 1.0, 'body': 2.0, 'cross': 2.0, 'adjustable': 1.0, 'almost': 1.0, 'has': 2.0, 'or': 1.0, 'comfortably': 1.0, 'throw': 1.0, 'problem': 1.0, 'minutes': 1.0, 'five': 1.0, 'didn': 1.0, 'luckily': 1.0, 'were': 1.0, 'pouch': 2.0, 'look': 2.0, 'at': 1.0, 'the': 25.0, 'person': 3.0, 'liked': 1.0, 'dispenser': 1.0, 'really': 2.0, 'reviews': 3.0, 'sites': 2.0, 'divided': 1.0, 'stays': 1.0, 'missing': 1.0, 'stay': 1.0, 'me': 6.0, 'may': 1.0, 'bottles': 2.0, 'promising': 1.0, 'custom': 1.0, 'other': 2.0, 'coach': 1.0, 'fits': 3.0, 'basket': 1.0, 'an': 1.0, 'side': 3.0, 'had': 4.0, 'of': 8.0, 'even': 2.0, 'cloth': 1.0, 'could': 1.0, 'beginning': 1.0, 'was': 3.0, 'right': 2.0, 'to': 7.0, 'vera': 1.0, 'little': 3.0, 'two': 6.0, 'feel': 3.0, 'bottom': 2.0, 'love': 1.0, 'there': 5.0, 'black': 1.0, 'carters': 1.0, 'on': 6.0, 'think': 1.0, 'stroller': 1.0, 'totes': 1.0, 'too': 1.0, '3': 1.0, 'skip': 1.0, 'underwear': 1.0, 'bradley': 1.0, 'bring': 1.0, 'backpacks': 1.0, 'diaper': 2.0, 'bags': 6.0, 'anais': 1.0, 'in': 8.0, 'hesitant': 1.0, 'have': 1.0, 'something': 2.0, 'hand': 1.0, 'straps': 2.0, 've': 3.0, 'blanket': 1.0, 'thirty': 1.0, 'bibs': 1.0, 'hop': 1.0, 'many': 1.0, 'others': 1.0, 'jujube': 1.0, 'apparently': 1.0, 'so': 5.0, 'zips': 1.0, 'is': 5.0, 'can': 3.0, 'i': 34.0, 'no': 3.0, 'years': 1.0, 'carry': 2.0, 'circulation': 1.0, 'purse': 2.0, 'looked': 1.0, 'very': 5.0, 'mother': 1.0, 'being': 1.0, 'for': 3.0, 'picky': 1.0, 'wipes': 1.0, 'swaddle': 1.0, 't': 8.0, 'see': 1.0, 'spare': 1.0, 'small': 1.0, 'back': 2.0, 'checked': 1.0, 'onsies': 1.0, 'into': 1.0, 'belly': 1.0, 'towards': 1.0, 'company': 1.0, 'this': 11.0, 'roomy': 1.0, 'bottle': 2.0, 'perfect': 1.0, 'petunia': 1.0, 'least': 1.0, 'each': 2.0, 'cole': 1.0, 'couple': 1.0, 'out': 3.0, 'a': 17.0, 'bag': 18.0, 'shirt': 1.0, 'same': 1.0, 'accentuating': 1.0, 'like': 3.0, 'wasn': 1.0, 'jj': 1.0, 'them': 1.0, 'long': 2.0, 'etsy': 1.0, 'not': 3.0, 'different': 2.0, 'site': 1.0, 'use': 2.0, 'pickle': 1.0, 'messengers': 1.0, 'hold': 1.0, 'happy': 1.0, 'ebags': 1.0, 'they': 2.0, 'try': 1.0, 'pattern': 1.0, 'sure': 2.0, 'but': 6.0, 'diapers': 1.0, 'okay': 1.0, 'about': 1.0, 'below': 2.0, 'want': 1.0, 'ordered': 1.0, 'from': 1.0, 'reviewing': 1.0, 'here': 1.0, 'term': 1.0, 'good': 1.0, 'someone': 1.0, 'wet': 1.0, '5': 1.0, 'one': 3.0, 'got': 1.0, 'using': 2.0, 'with': 7.0, 'pockets': 3.0, 'nice': 2.0, 'big': 2.0, 'horizontal': 1.0, 'arm': 1.0, 'm': 9.0, 's': 4.0, 'doesn': 3.0, 'huge': 1.0, 'strap': 4.0, 'put': 3.0, 'three': 1.0, 'package': 1.0, 'funny': 1.0, 'those': 1.0, 'inside': 1.0, 'disposable': 1.0, 'it': 14.0, 'be': 3.0, 'shorts': 1.0, 'just': 4.0, 'tried': 4.0, 'and': 11.0, 'toddler': 1.0, 'formula': 1.0, 'burp': 1.0, 'several': 1.0, 'cloths': 1.0, 'sorry': 1.0, 'way': 1.0, 'saw': 1.0, 'all': 3.0, 'nail': 1.0, 'holder': 2.0, 'comes': 2.0, 'my': 11.0, 'are': 5.0, 'room': 1.0, 'aden': 1.0, 'if': 1.0, 'great': 1.0, 'top': 1.0, 'shut': 1.0, 'clippers': 1.0, 'do': 2.0, 'either': 2.0, 'snapped': 1.0, 'when': 2.0, 'blankets': 1.0, 'also': 4.0, 'thing': 1.0, 'holds': 2.0, 'extra': 2.0, 'some': 2.0, 'pacifier': 1.0, 'that': 11.0, 'pacifiers': 1.0, 'stuff': 1.0, 'tube': 1.0, 'lotion': 1.0, 'tight': 1.0, 'enough': 3.0, 'sanitizer': 1.0, 'took': 1.0, 'shoulder': 2.0, 'still': 4.0, 'don': 2.0, 'made': 2.0, 'nicely': 1.0, 'benefit': 1.0, 'dig': 2.0, 'losing': 1.0, 'though': 1.0, 'by': 2.0, 'after': 1.0}
Word element => {'in': 1.0, 'the': 1.0, 'or': 1.0, 'collection': 1.0, 'guy': 1.0, 'soft': 1.0, 'bug': 1.0, 'this': 2.0, 't': 1.0, 'others': 1.0, 'with': 1.0, 'is': 1.0, 'you': 1.0, 'so': 2.0, 'of': 1.0, 'he': 1.0, 'big': 1.0, 'any': 1.0, 'and': 1.0, 'go': 1.0, 'can': 1.0, 'wrong': 1.0}
Word element => {'granddaughters': 1.0, 'for': 1.0, 'it': 1.0, 'pictured': 1.0, 'was': 3.0, 'pleased': 1.0, 'very': 1.0, 'recvd': 1.0, 'and': 2.0, 'my': 1.0, 'more': 1.0, 'room': 1.0, 'with': 1.0, 'colorful': 1.0, 'this': 1.0, 'frame': 1.0, 'bought': 1.0, 'quickly': 1.0, 'perfect': 1.0, 'than': 1.0, 'even': 1.0}
Word element => {'far': 1.0, 'regrets': 1.0, 'no': 1.0, 'little': 1.0, 'cleaning': 1.0, 'of': 1.0, 'wash': 1.0, 'yet': 1.0, 'five': 1.0, 'that': 2.0, 'loves': 1.0, 'said': 1.0, 'in': 1.0, 'holding': 1.0, 'only': 1.0, 'pack': 1.0, 'and': 3.0, 'give': 1.0, 'me': 1.0, 'them': 1.0, 'ease': 1.0, 'looking': 1.0, 'can': 2.0, 'home': 1.0, 'preschool': 2.0, 'wait': 1.0, 'at': 4.0, 'use': 3.0, 'wants': 1.0, 'i': 4.0, 'old': 1.0, 'as': 2.0, 'to': 5.0, 'purchased': 1.0, 'had': 1.0, 'reason': 1.0, 'saw': 1.0, 'this': 2.0, 'she': 3.0, 'it': 9.0, 'mat': 3.0, 'straps': 1.0, 'online': 1.0, 'didn': 1.0, 'even': 1.0, 'her': 2.0, 'recently': 1.0, 'well': 1.0, 'has': 1.0, 'daughter': 1.0, 'year': 1.0, 'expensive': 1.0, 'stars': 1.0, 'for': 3.0, 'my': 1.0, 'have': 2.0, 'the': 3.0, 'nice': 1.0, 'great': 1.0, 'cupcake': 1.0, 'is': 3.0, 't': 2.0, 'a': 4.0, 'comment': 1.0, 'hand': 1.0, 'like': 1.0, 'cannot': 1.0, 'also': 1.0, 'carry': 1.0, 'nap': 1.0, 'think': 1.0, '3': 1.0, 'on': 2.0, 'handle': 1.0, 'back': 2.0, 'so': 2.0, 'you': 1.0}
Word element => {'pack': 1.0, 'pillow': 1.0, 'on': 1.0, 'removable': 1.0, '5': 1.0, 'daughter': 1.0, 'in': 1.0, 'year': 1.0, 'as': 1.0, 'it': 1.0, 'for': 2.0, 'love': 1.0, 'good': 1.0, 'loves': 1.0, 'old': 1.0, 'makes': 1.0, 'ease': 1.0, 'the': 1.0, 'straps': 1.0, 'quality': 1.0, 'back': 2.0, 'washing': 1.0, 'carrying': 1.0, 'a': 1.0}
Word element => {'liked': 1.0, 'looking': 1.0, 'padded': 1.0, 'also': 1.0, 'almost': 1.0, 'super': 1.0, 'little': 1.0, 'nice': 1.0, 'two': 2.0, 'purple': 1.0, 'than': 1.0, 'find': 1.0, 'enough': 1.0, 'soft': 1.0, 'this': 1.0, 'pictures': 1.0, 'large': 1.0, 'by': 1.0, 'locally': 1.0, 'around': 1.0, 'rolls': 1.0, 'have': 1.0, 'to': 4.0, 'town': 1.0, 'as': 1.0, 'grow': 1.0, 'all': 1.0, 'for': 4.0, 'and': 7.0, 'school': 2.0, 'daughter': 1.0, 'could': 1.0, 'small': 1.0, 'a': 4.0, 'we': 3.0, 'needed': 1.0, 'is': 4.0, 'at': 1.0, 'handle': 1.0, 'top': 1.0, 'old': 2.0, 'into': 1.0, 'someone': 1.0, 'my': 1.0, 'benefits': 1.0, 'mat': 3.0, 'flimsy': 1.0, 'your': 2.0, 'carried': 1.0, 'on': 1.0, 'five': 1.0, 'it': 2.0, 'only': 1.0, 'one': 1.0, 'too': 1.0, 'ones': 1.0, 'uncomfortable': 1.0, 'were': 1.0, 'average': 1.0, 'shape': 1.0, 'sturdy': 1.0, 'pink': 1.0, 'can': 2.0, 'be': 1.0, 'or': 1.0, 'backpack': 1.0, 'touch': 1.0, 'part': 2.0, 'straps': 1.0, 'shown': 1.0, 'very': 1.0, 'lay': 1.0, 'day': 1.0, 'in': 3.0, 'nap': 2.0, 'blanket': 1.0, 'pillow': 1.0, 'prime': 1.0, 'amazon': 1.0, 'flip': 1.0, 'allows': 1.0, 'with': 2.0, 'attatched': 1.0, 'plenty': 1.0, 'either': 1.0, 'had': 1.0, 'starts': 1.0, 'direction': 1.0, 'bigger': 1.0, 'if': 1.0, 'year': 2.0, 'child': 1.0, 'drive': 1.0, 'over': 1.0, 'shipping': 1.0, 'the': 9.0, 'of': 1.0, 'cupcake': 1.0, 'time': 1.0, 'did': 1.0, 'not': 1.0}
Word element => {'soft': 1.0, 'can': 1.0, 'world': 1.0, 'thing': 1.0, 'her': 2.0, 'lays': 1.0, 'blame': 1.0, 'very': 1.0, 'pink': 1.0, 'amidst': 1.0, 'so': 1.0, 'boy': 1.0, 'sooooo': 1.0, 'it': 1.0, 'this': 1.0, 'in': 1.0, 'reason': 1.0, 'my': 2.0, 't': 1.0, 'liking': 1.0, 'the': 3.0, 'home': 1.0, 'some': 1.0, 'at': 1.0, 'would': 1.0, 'a': 2.0, 'princess': 1.0, 'keep': 1.0, 'to': 3.0, 'had': 1.0, 'purchase': 1.0, 'most': 1.0, 'for': 1.0, 'blanket': 2.0, 'meet': 1.0, 'took': 1.0, 'i': 2.0, 'who': 1.0, 'second': 1.0, 'is': 1.0, 'ultra': 1.0, 'little': 1.0, 's': 1.0, 'niece': 1.0, 'you': 1.0}
Word element => {'possible': 1.0, 'that': 1.0, 'if': 1.0, 'each': 1.0, 'gets': 1.0, 'washes': 1.0, 'old': 1.0, 'up': 1.0, 'cover': 1.0, 'to': 2.0, 'length': 1.0, 'the': 1.0, 'good': 1.0, 'so': 3.0, 'throws': 1.0, 'still': 1.0, 'using': 1.0, 'for': 1.0, 'blankets': 1.0, 'and': 2.0, 'but': 1.0, 'toddler': 2.0, 'my': 2.0, 'wash': 1.0, 'softer': 1.0, 'perfect': 1.0, 'flat': 1.0, 'we': 1.0, 'with': 1.0, 'he': 1.0, 'this': 1.0, 'it': 4.0, 'well': 1.0, 'a': 3.0, 'bought': 1.0, 'pillow': 2.0, 'year': 1.0, 'sleeping': 1.0, 'as': 2.0, 'son': 1.0, 'folded': 1.0, 'is': 1.0, 's': 3.0, '3': 1.0, 'soft': 1.0}
Word element => {'blankie': 1.0, 'girl': 1.0, 'soft': 1.0, 'super': 1.0, 'dog': 1.0, 'neighbors': 1.0, 'this': 2.0, 'demolished': 1.0, 'was': 1.0, 'takes': 1.0, 'bought': 1.0, 'my': 1.0, 'replacement': 1.0, 'as': 1.0, 'for': 1.0, 'everywhere': 1.0, 'blanket': 1.0, 'baby': 1.0, 'by': 1.0, 'that': 1.0, 'got': 1.0}
Word element => {'for': 1.0, 'perfect': 1.0, 'in': 1.0, 'the': 3.0, 'baby': 1.0, 'she': 1.0, 'a': 2.0, 'is': 2.0, 'friend': 1.0, 'color': 1.0, 'to': 1.0, 'was': 1.0, 'her': 1.0, 'who': 1.0, 'nursery': 2.0, 'shower': 1.0, 'it': 2.0, 'tinker': 1.0, 'gift': 1.0, 'theme': 1.0, 'bell': 1.0, 'doing': 1.0, 'loved': 1.0, 'match': 1.0, 'as': 1.0, 'going': 1.0}
Word element => {'on': 1.0, 'now': 1.0, 'from': 1.0, 'gifts': 1.0, 'shower': 1.0, 'be': 1.0, 'going': 1.0, 'purchased': 1.0, 'best': 1.0, 'who': 1.0, 'instructor': 1.0, 'class': 1.0, 'go': 3.0, 's': 1.0, 'wearing': 1.0, 'fix': 1.0, 'after': 1.0, 'few': 1.0, 'this': 2.0, 'it': 3.0, 'baby': 2.0, 'she': 6.0, 'how': 1.0, 'know': 1.0, 'not': 2.0, 'did': 2.0, 'away': 1.0, 'but': 1.0, 'can': 1.0, 'uncomfortable': 1.0, 'to': 4.0, 'was': 2.0, 'anymore': 1.0, 'made': 1.0, 'me': 1.0, 'my': 3.0, 'breathing': 1.0, 'attended': 1.0, 'out': 1.0, 'newborn': 1.0, 't': 1.0, 'lungs': 1.0, 'one': 1.0, 'scream': 1.0, 'car': 3.0, 'her': 3.0, 'top': 1.0, 'when': 2.0, 'daughter': 2.0, 'insert': 1.0, 'in': 1.0, 'said': 1.0, 'weeks': 1.0, 'would': 1.0, 'snuggin': 2.0, 'set': 1.0, 'the': 10.0, 'of': 5.0, 'a': 5.0, 'imagine': 1.0, 'were': 1.0, 'visit': 1.0, 'at': 1.0, 'is': 2.0, 'ever': 1.0, 'an': 1.0, '10': 1.0, 'that': 1.0, 'very': 1.0, 'and': 2.0, 'trip': 2.0, 'recommended': 1.0, 'problem': 1.0, 'with': 1.0, 'huge': 2.0, 'way': 2.0, 'seats': 1.0, 'hated': 1.0, 'are': 1.0, 'designed': 1.0, 'today': 1.0, 'asked': 1.0, 'if': 1.0, 'course': 1.0, 'road': 1.0, 'realized': 1.0, 'ordered': 1.0, 'right': 1.0, 'we': 5.0, 'difference': 1.0, 'knew': 1.0, 'never': 1.0, 'things': 1.0, 'cries': 1.0, 'took': 1.0, 'even': 1.0, 'hr': 1.0, 'great': 1.0, 'rn': 1.0, 'grandma': 1.0, 'had': 1.0, 'i': 4.0, 'well': 1.0, 'slept': 1.0, 'most': 1.0, 'making': 1.0, 'before': 1.0}
Word element => {'not': 1.0, 'but': 1.0, 'at': 1.0, 'available': 1.0, 'definitely': 1.0, 'jogging': 1.0, 'pushing': 1.0, 'when': 1.0, 'which': 1.0, 'slightly': 1.0, 'side': 1.0, 'thing': 1.0, 'whole': 1.0, 'point': 1.0, 'metal': 1.0, 'partially': 1.0, 'stroller': 1.0, 'push': 1.0, 'effort': 1.0, 'problem': 1.0, 'a': 3.0, 'is': 3.0, 'tire': 1.0, 'many': 3.0, 'amazon': 1.0, 'really': 1.0, 'price': 1.0, 'years': 1.0, 'them': 1.0, 'strollers': 1.0, 'quality': 1.0, 'baby': 1.0, 'the': 8.0, 'over': 1.0, 'was': 3.0, 'preschoolers': 1.0, 'i': 3.0, 'products': 1.0, 'ordered': 1.0, 'became': 1.0, 'wheel': 1.0, 'only': 1.0, 'limit': 1.0, 'major': 3.0, 'with': 1.0, 'it': 2.0, 'have': 1.0, 'that': 1.0, 'were': 2.0, 'wish': 1.0, 'this': 3.0, 'kids': 1.0, 'off': 2.0, 'or': 1.0, 'issue': 1.0, 'flaw': 1.0, 'tires': 1.0, 'of': 4.0, 'popped': 1.0, 'there': 1.0, 'wheels': 1.0, 'either': 2.0, 'my': 1.0, 'one': 5.0, 'matched': 1.0, 'way': 1.0, 'to': 2.0, 'mis': 1.0, 'as': 2.0, 'and': 1.0, 'soon': 1.0, 'put': 1.0, 'in': 1.0, 'leaned': 1.0, 'under': 1.0, 'weight': 1.0, 'physical': 1.0}
Word element => {'2011': 1.0, 'made': 1.0, 'this': 1.0, 'me': 1.0, 'told': 1.0, 'rep': 1.0, '2014': 1.0, 'yesterday': 1.0, 'received': 1.0, 'just': 1.0, 'waiting': 1.0, 'amazon': 1.0, 'sending': 1.0, 'taking': 1.0, 'or': 1.0, 'worth': 1.0, 'its': 1.0, 'what': 1.0, 'used': 1.0, 'was': 2.0, 'now': 1.0, 'get': 1.0, 'pump': 1.0, 'they': 1.0, 'month': 1.0, 'it': 5.0, 'bike': 1.0, 'march': 1.0, 'coming': 1.0, 'm': 1.0, 'filled': 1.0, 'in': 1.0, 'said': 2.0, 'figure': 1.0, 'one': 1.0, 'rim': 1.0, 'of': 3.0, 'the': 4.0, 'inflated': 1.0, 'back': 4.0, 'tires': 2.0, 'tire': 2.0, 'take': 1.0, 'service': 2.0, 'quite': 1.0, 'replacement': 1.0, 'out': 2.0, 'to': 4.0, 'as': 2.0, 'and': 5.0, 'soon': 1.0, 'i': 3.0, 'order': 1.0, 'baby': 2.0, 'trend': 2.0, 'from': 1.0, 'while': 1.0, 'customer': 2.0, 'called': 1.0, 'are': 1.0, 'on': 1.0, 'a': 4.0, 'we': 2.0, 'could': 1.0, 'would': 1.0, 'before': 1.0, 'receive': 1.0, 'stuck': 1.0, 'trying': 1.0, 'apart': 1.0, 'if': 1.0}
Word element => {'children': 1.0, 'future': 1.0, 'ny': 1.0, 'us': 1.0, 'taking': 1.0, 'please': 1.0, 'am': 1.0, 'peel': 1.0, 'be': 3.0, 'there': 1.0, 'wasn': 1.0, 'overall': 1.0, 'divider': 1.0, 'despite': 1.0, 'sized': 1.0, 'basket': 1.0, 'road': 1.0, 'summer': 1.0, 'pitcher': 1.0, 'would': 1.0, 'either': 1.0, 'holes': 1.0, 'perfect': 1.0, 'live': 1.0, 'ditches': 1.0, 'side': 1.0, 'which': 2.0, 'easier': 1.0, 'makes': 1.0, 'wheel': 1.0, 'front': 1.0, 'seems': 1.0, '30in': 1.0, 'where': 1.0, '25ibs': 1.0, 'months': 1.0, '11': 1.0, 'tall': 2.0, '38ibs': 1.0, 'three': 1.0, 'age': 1.0, 'content': 1.0, 'comfortable': 1.0, 'seated': 1.0, 'they': 1.0, 'when': 2.0, 'definitely': 1.0, 'better': 1.0, 'nap': 1.0, 'allowing': 1.0, 'completely': 1.0, 'almost': 1.0, 'push': 1.0, 'able': 1.0, 'friendly': 1.0, 'call': 1.0, 'needed': 1.0, 'bother': 1.0, 'and': 13.0, 'through': 2.0, 'or': 1.0, 'no': 1.0, 'nervous': 1.0, 'flat': 1.0, 'son': 1.0, 'tires': 1.0, 'version': 1.0, 'like': 2.0, 'child': 1.0, 'major': 1.0, 'up': 3.0, 'anyway': 1.0, 'having': 1.0, 'usually': 1.0, 'but': 2.0, 'terrain': 2.0, 'locking': 1.0, 'most': 1.0, 'can': 2.0, 'replace': 1.0, 'successfully': 1.0, 'something': 1.0, 'individual': 1.0, 'deep': 1.0, 'easily': 2.0, 'everywhere': 1.0, 'because': 1.0, 'that': 4.0, 'if': 1.0, 'decently': 1.0, 'clinic': 2.0, 'hit': 1.0, 'stroller': 3.0, 'our': 3.0, 'pretty': 1.0, 'to': 8.0, 'doors': 1.0, 'outside': 1.0, 'steep': 1.0, 'got': 1.0, 'was': 2.0, 'little': 1.0, 'well': 1.0, 'hill': 1.0, 'i': 11.0, 'kids': 4.0, 'this': 3.0, 'by': 1.0, 'a': 6.0, 'stairs': 1.0, 'oldest': 1.0, 'about': 1.0, 'walk': 2.0, 'more': 1.0, 'door': 1.0, 'love': 1.0, 't': 2.0, 'fit': 1.0, 'with': 8.0, 'done': 1.0, 'going': 1.0, 'pike': 1.0, 'recline': 1.0, 'it': 6.0, 'went': 1.0, '38in': 1.0, 'seats': 1.0, 'study': 1.0, 'fine': 1.0, 'we': 3.0, 'take': 2.0, 'maneuvered': 1.0, 'beating': 1.0, 'find': 1.0, 'since': 2.0, 'have': 4.0, 'of': 1.0, 'the': 12.0, 'navigated': 1.0, 'very': 1.0, 'fittting': 1.0, 'being': 2.0, 'as': 3.0, 'town': 1.0, 'its': 1.0, 'do': 1.0, 'on': 2.0, 'hills': 1.0, 'uneven': 1.0, 'my': 6.0, 'me': 1.0, 'car': 2.0, 'downtown': 1.0, 'originally': 1.0, 'single': 1.0, 'doorways': 1.0, 'seattle': 1.0, 'forward': 1.0, 'not': 1.0, 'confort': 1.0, 'street': 1.0, 'market': 1.0, 'ease': 1.0, 'both': 1.0, 'house': 2.0, 'doesn': 1.0, 'must': 1.0, 'exeption': 1.0, 'plus': 3.0, 'are': 4.0, 'bus': 1.0, 'lock': 1.0, 'after': 1.0, 'strapping': 1.0, 'look': 1.0, 'at': 1.0, 'is': 3.0}
Word element => {'april': 1.0, 'them': 1.0, 'using': 1.0, 'looking': 1.0, 'nice': 1.0, 'really': 1.0, 'to': 1.0, 'look': 1.0, 'in': 1.0, 'wash': 1.0, 'bit': 1.0, 'guessing': 1.0, 'forward': 1.0, 'but': 1.0, 'than': 1.0, 'would': 1.0, 'i': 2.0, 'good': 1.0, 'think': 1.0, 'or': 1.0, 'rougher': 1.0, 'otherwise': 1.0, 'bibs': 1.0, 'help': 1.0, 'characters': 1.0, 'a': 2.0, 'two': 1.0, 'might': 1.0, 'that': 1.0, 'cool': 1.0, 'with': 1.0, 'm': 1.0, 'coloring': 1.0}
Word element => {'baby': 1.0, 'making': 1.0, 'a': 1.0, 'swaddle': 1.0, 'job': 1.0, 'good': 1.0, 'great': 2.0, 'blankets': 1.0, 'and': 2.0, 'for': 2.0, 'do': 1.0, 'blanket': 1.0, 'babies': 1.0, 'so': 1.0, 'these': 1.0, 'they': 1.0, 'are': 1.0, 'burritos': 1.0, 'double': 1.0, 'think': 1.0, 'looking': 1.0, 'soft': 1.0}
Word element => {'design': 1.0, 'like': 1.0, 'doesnt': 1.0, 'but': 1.0, 'all': 1.0, 'wrap': 1.0, 'a': 1.0, 'big': 1.0, 'really': 1.0, 'this': 1.0, 'idea': 1.0, 'not': 1.0, 'way': 1.0, 'bought': 1.0, 'around': 1.0, 'enough': 1.0, 'its': 1.0, 'had': 1.0, 'though': 1.0, 'hight': 1.0, 'great': 1.0, 'the': 3.0, 'chair': 1.0, 'slides': 1.0, 'did': 1.0, 'out': 1.0}
Word element => {'and': 1.0, 'shame': 1.0, 'case': 1.0, 'not': 1.0, 'seat': 1.0, 'out': 1.0, 'before': 1.0, 'her': 1.0, 'lift': 1.0, 'time': 1.0, 'every': 1.0, 'baby': 1.0, 'small': 1.0, 'too': 1.0, 'style': 1.0, 'chair': 1.0, 'according': 1.0, 'large': 1.0, 'that': 1.0, 'our': 1.0, 'until': 1.0, 'is': 1.0, 'fit': 1.0, 'restaurant': 1.0, 'high': 1.0, 'waste': 1.0, 'on': 1.0, 'instructions': 1.0, 'clings': 1.0, 'perfect': 1.0, 'a': 3.0, 'we': 3.0, 'of': 1.0, 'washed': 2.0, 'this': 1.0, 'it': 3.0, 'once': 1.0, 'now': 1.0, 'was': 2.0, 'to': 2.0, 'such': 1.0, 'the': 3.0}
Word element => {'time': 1.0, 'the': 1.0, 'have': 1.0, 'all': 1.0, 'use': 1.0, 'we': 1.0, 'cute': 1.0, 'soft': 1.0, 'and': 3.0, 'cover': 1.0, 'that': 1.0, 'a': 2.0, 'balboa': 1.0, 'm': 1.0, 'complaints': 1.0, 'looking': 1.0, 'high': 1.0, 'functional': 1.0, 'been': 1.0, 'baby': 1.0, 've': 1.0, 'while': 1.0, 'i': 2.0, 'for': 2.0, 'one': 1.0, 'so': 1.0, 'chair': 1.0, 'glad': 1.0, 'made': 1.0, 'it': 2.0, 's': 1.0, 'no': 1.0, 'super': 1.0, 'compact': 1.0}
Word element => {'everything': 1.0, 'who': 1.0, 'worth': 1.0, 'am': 1.0, 'bag': 1.0, 'pillow': 1.0, 'pocket': 1.0, 'fold': 1.0, 'not': 1.0, 'itself': 1.0, 'wasn': 1.0, 'week': 1.0, 'times': 1.0, 'washed': 1.0, 'time': 1.0, 'about': 4.0, 'from': 1.0, 'covered': 1.0, 'tie': 1.0, 'another': 2.0, 'minutes': 1.0, 'though': 1.0, 'within': 1.0, 'old': 1.0, 'month': 3.0, 'will': 2.0, 'comes': 1.0, 'successfully': 1.0, 'child': 2.0, 'kicking': 1.0, 'probably': 1.0, 'keeps': 1.0, 'your': 2.0, 'apart': 2.0, 'hope': 2.0, 'gets': 2.0, 'adjust': 1.0, 'flops': 1.0, 'snuggly': 1.0, 'work': 1.0, 'over': 1.0, 'wouldn': 1.0, 'drape': 1.0, 'velcro': 5.0, 've': 2.0, 'stick': 1.0, 'older': 1.0, '3': 1.0, 'supposed': 1.0, 'come': 1.0, 'where': 1.0, 're': 1.0, 'back': 1.0, 'faded': 2.0, 'thing': 4.0, '2': 2.0, 'make': 2.0, 'goes': 1.0, 'my': 2.0, 'socks': 1.0, 'actually': 1.0, 'fabric': 1.0, 'for': 5.0, 'and': 12.0, 'too': 1.0, 'works': 1.0, 'chair': 7.0, 'just': 3.0, 'small': 1.0, 'a': 17.0, 'might': 1.0, 's': 7.0, 'she': 1.0, 'folds': 1.0, 'baby': 4.0, 'don': 1.0, 'said': 1.0, 'in': 6.0, 'really': 1.0, 'is': 5.0, 'around': 5.0, 'more': 1.0, 'want': 1.0, 'still': 1.0, 'every': 1.0, 'if': 3.0, 'was': 1.0, 'fit': 3.0, 't': 9.0, 'belt': 3.0, 'print': 1.0, 'but': 3.0, 'do': 2.0, 'put': 2.0, 'can': 1.0, 'so': 8.0, 'constantly': 1.0, 'already': 1.0, '9': 1.0, 'it': 42.0, 'few': 1.0, 'this': 5.0, 'wish': 2.0, 'sure': 1.0, 'thread': 1.0, 'seemed': 2.0, 'big': 4.0, 'dirty': 2.0, 'together': 2.0, 'shifting': 1.0, 'wipe': 1.0, 'cart': 4.0, 'sort': 4.0, 'how': 1.0, 'shopping': 4.0, 'would': 6.0, 'bulky': 1.0, 'care': 1.0, 'like': 3.0, 'gift': 1.0, 'good': 4.0, 'wash': 1.0, 'use': 3.0, 'anyway': 2.0, 'her': 1.0, 'diaper': 1.0, 'negotiate': 1.0, 'as': 4.0, 'job': 1.0, 'pretty': 3.0, 'high': 7.0, 'to': 6.0, 'has': 1.0, 'solution': 3.0, 'airline': 1.0, 'reviewer': 1.0, 'didn': 1.0, 'size': 1.0, 'safety': 3.0, 'well': 1.0, 'i': 11.0, 'buy': 2.0, 'cover': 3.0, 'be': 3.0, 'you': 10.0, 'able': 1.0, 'person': 2.0, 'the': 28.0, 'of': 11.0, 'wrap': 1.0, 'into': 5.0, 'because': 2.0, 'that': 2.0, 'doesn': 4.0, 'thinner': 1.0, 'tangles': 1.0, 'first': 1.0, 'are': 2.0, 'working': 1.0, 'through': 3.0, 'with': 3.0, 'elastic': 1.0, 'inevitably': 1.0, 'when': 2.0, 'what': 1.0, 'had': 2.0, 'have': 2.0, 'own': 1.0, 'seems': 1.0, 'folding': 1.0, 'two': 1.0, 'little': 3.0, 'also': 1.0, 'compact': 1.0, 'think': 2.0, 'better': 2.0, 'all': 1.0, 'other': 2.0, 'an': 2.0, 'or': 1.0, 'drawstring': 1.0, 'top': 1.0, 'getting': 1.0, 'laundry': 1.0, 'up': 1.0, 'takes': 1.0, 'some': 1.0, 'we': 4.0, 'then': 1.0, 'leg': 2.0, 'negotiation': 1.0, 'legs': 2.0, 'get': 2.0, 'holes': 5.0, 'only': 1.0, 'usually': 2.0}
Word element => {'into': 1.0, 'grow': 1.0, 'will': 1.0, 'your': 1.0, 'cute': 1.0, 'and': 2.0, 'a': 1.0, 'bright': 1.0, 'well': 1.0, 'also': 1.0, 'so': 1.0, 'made': 1.0, 'the': 2.0, 'are': 1.0, 'i': 1.0, 'piece': 1.0, '4': 1.0, 'material': 1.0, 'bought': 1.0, 'baby': 1.0, 'colors': 1.0, 'love': 1.0, 'bed': 1.0, 'set': 2.0, 'fun': 1.0, 'durable': 1.0, 'it': 1.0, 'this': 1.0, 'is': 1.0}
Word element => {'100': 1.0, 'try': 1.0, 'job': 1.0, 'good': 1.0, 'or': 1.0, 'by': 1.0, 'minutes': 2.0, 'usual': 1.0, 'i': 3.0, 'make': 1.0, 'more': 1.0, 'the': 3.0, 'did': 2.0, 'understand': 1.0, 'individual': 1.0, 'but': 1.0, '5': 1.0, 'than': 1.0, 'spray': 1.0, 'not': 1.0, 'atleast': 1.0, 'him': 1.0, 'on': 2.0, 'first': 1.0, 'it': 1.0, 'he': 1.0, 'lasted': 1.0, '15': 1.0, 'a': 1.0, 'last': 1.0, 'lot': 1.0, 'felt': 2.0, 'longer': 1.0, 'studd': 1.0, 'lomger': 1.0, 'used': 1.0, 'his': 1.0}
Word element => {'men': 1.0, 'all': 1.0, 'for': 1.0, 'this': 1.0, 'girlfriend': 1.0, 'highly': 1.0, 'very': 1.0, 'and': 1.0, 'like': 1.0, 'worked': 1.0, 'charm': 1.0, 'helped': 1.0, 'product': 2.0, 'to': 1.0, 'a': 1.0, 'increase': 1.0, 'made': 1.0, 'my': 2.0, 'happy': 1.0, 'staying': 1.0, 'recommrnd': 1.0, 'power': 1.0}
Word element => {'occasionally': 1.0, 'well': 1.0, 'recommended': 1.0, 'as': 1.0, 'friends': 1.0, 'and': 1.0, 'anyone': 1.0, 'have': 1.0, 'this': 2.0, 'great': 1.0, 'it': 1.0, 'i': 2.0, 'use': 2.0, 'all': 1.0, 'product': 1.0, 'to': 3.0, 'my': 1.0, 'the': 1.0, 'of': 1.0, 'some': 1.0, 'recommend': 1.0, 'time': 1.0}
Word element => {'added': 1.0, 'any': 1.0, 'for': 1.0, 'not': 1.0, 'adds': 1.0, 'without': 1.0, 'this': 1.0, 'loves': 1.0, 'room': 3.0, 'is': 1.0, 'her': 1.0, 'darkening': 1.0, 'my': 1.0, 'the': 1.0, 'daughter': 1.0, 'described': 1.0, 'as': 1.0, 'princess': 2.0, 'a': 1.0, 'thin': 1.0, 'exactly': 1.0, 'so': 1.0, 'of': 1.0, 'flair': 1.0, 'touch': 1.0, 'overdoing': 1.0, 'material': 1.0, 'entire': 1.0}
Word element => {'see': 1.0, 'even': 1.0, 'to': 1.0, 'it': 1.0, 'print': 2.0, 'and': 2.0, 'soft': 1.0, 'light': 1.0, 'difficult': 1.0, 'making': 1.0, 'just': 1.0, 'good': 1.0, 'of': 1.0, 'are': 2.0, 'the': 5.0, 'they': 2.0, 'on': 1.0, 'shines': 1.0, 'very': 1.0, 'adorable': 1.0, 'right': 1.0, 'through': 1.0, 'thin': 1.0, 'them': 1.0, 'is': 2.0, 'side': 1.0, 'quality': 1.0, 'back': 1.0}
Word element => {'one': 1.0, 'i': 1.0, 'place': 1.0, 'good': 1.0, 'reasonable': 1.0, 'completed': 1.0, 'could': 1.0, 'in': 1.0, 'look': 1.0, 'room': 1.0, 'find': 1.0, 'the': 3.0, 'my': 1.0, 'this': 1.0, 'grandson': 1.0, 'only': 1.0, 'quality': 1.0, 'and': 1.0, 'amazon': 1.0, 's': 1.0, 'price': 1.0, 'was': 2.0}
Word element => {'too': 1.0, 'wrinkles': 1.0, 'no': 2.0, 'dried': 1.0, 'i': 2.0, 'love': 2.0, 'threw': 1.0, 'the': 1.0, 'these': 1.0, 'bought': 1.0, 'and': 2.0, 'shrinking': 1.0, '2': 1.0, 'them': 3.0, 'in': 1.0, 'wash': 1.0}
Word element => {'purpose': 1.0, 's': 1.0, 'more': 1.0, 'but': 1.0, 'thin': 1.0, 'a': 2.0, 'loves': 1.0, 'it': 4.0, 'this': 2.0, 'very': 1.0, 'son': 1.0, 'blocked': 1.0, 'serves': 1.0, 'my': 1.0, 'cute': 1.0, 'light': 1.0, 'so': 1.0, 'however': 1.0, 'our': 1.0, 'where': 1.0, 'previous': 1.0, 'is': 3.0, 'really': 1.0, 'valance': 2.0, 'functional': 1.0, 'little': 1.0, 'does': 1.0, 'not': 2.0, 'at': 1.0, 'decorative': 1.0, 'all': 1.0}
Word element => {'love': 1.0, 'absolutely': 1.0, 'from': 1.0, 'out': 1.0, 'these': 2.0, 'creases': 1.0, 'the': 1.0, 'are': 1.0, 'a': 1.0, 'awesome': 1.0, 'take': 1.0, 'super': 1.0, 'to': 2.0, 'light': 1.0, 'quick': 1.0, 'soft': 1.0, 'packaging': 1.0, 'iron': 1.0, 'wash': 1.0, 'needed': 1.0, 'easy': 1.0, 'just': 1.0}
Word element => {'modern': 1.0, 'an': 1.0, 'from': 1.0, 'outside': 1.0, 'as': 1.0, 'i': 3.0, 'snug': 1.0, 'how': 1.0, 'breathable': 1.0, 'recommend': 1.0, 'beautiful': 1.0, 'pink': 1.0, 'with': 1.0, 'love': 1.0, 'for': 1.0, 'the': 4.0, 'crib': 2.0, 'design': 1.0, 'element': 1.0, 'of': 3.0, 'and': 5.0, 'sides': 1.0, 'shabby': 1.0, 'paired': 1.0, 'adds': 1.0, 'white': 1.0, 'fits': 1.0, 'made': 1.0, 'feminine': 1.0, 'sheet': 2.0, 'bit': 1.0, 'it': 3.0, 'sophistication': 1.0, 'looks': 1.0, 've': 1.0, 'perfectly': 1.0, 'bumper': 1.0, 'skirt': 1.0, 'a': 2.0, 's': 2.0, 'this': 3.0, 'soft': 1.0, 'mattress': 2.0, 'if': 1.0, 'chic': 1.0, 'specifically': 1.0, 'that': 1.0, 'highly': 1.0}
Word element => {'carter': 1.0, 'cute': 2.0, 'is': 1.0, 'crib': 1.0, 'daughter': 1.0, 'bumper': 1.0, 'bought': 1.0, 's': 2.0, 'super': 1.0, 'baby': 1.0, 'my': 1.0, 'to': 1.0, 'thick': 2.0, 'addition': 1.0, 'and': 1.0, 'nor': 1.0, 'wasnt': 1.0, 'best': 1.0, 'as': 3.0, 'i': 2.0, 'recommend': 1.0, 'cheaper': 1.0, 'one': 1.0, 'a': 1.0, 'but': 1.0, 'it': 2.0}
Word element => {'quality': 1.0, 'price': 1.0, 'with': 1.0, 'than': 1.0, 'were': 1.0, 'ties': 1.0, 'am': 1.0, 'again': 1.0, 'easily': 1.0, 'washes': 1.0, 'cute': 1.0, 'would': 1.0, 'super': 1.0, 'that': 2.0, 'try': 1.0, 'works': 2.0, 'much': 1.0, 'up': 1.0, 'wish': 1.0, 'this': 3.0, 'older': 1.0, 'the': 4.0, 'is': 1.0, 'more': 2.0, 'it': 5.0, 'she': 1.0, 'so': 1.0, 'two': 1.0, 'i': 4.0, 'as': 1.0, 'to': 2.0, 'buy': 1.0, 'looking': 1.0, 'happy': 1.0, 'panels': 1.0, 'pre': 1.0, 'good': 1.0, 'decided': 1.0, 'one': 1.0, 'was': 2.0, 'doesn': 1.0, 'toddler': 1.0, 'since': 1.0, 'my': 1.0, 'wake': 1.0, 'longer': 2.0, 'bumper': 2.0, 'perfectly': 1.0, 'and': 6.0, 'product': 1.0, 'for': 4.0, 'barn': 2.0, 'fit': 1.0, 'pottery': 2.0, 'crib': 1.0, 'wouldn': 1.0, 'didn': 1.0, 'give': 1.0, 't': 3.0, 'a': 3.0, 'we': 1.0, 'have': 1.0, 'want': 1.0, 'spend': 1.0, 'money': 1.0, 'on': 1.0, 'long': 1.0, 'although': 1.0, 'came': 1.0, 'recommended': 1.0}
Word element => {'wide': 1.0, 'ready': 2.0, 'of': 1.0, 'rest': 1.0, 'dry': 1.0, 'let': 1.0, '10': 1.0, 'dryer': 1.0, 'air': 1.0, 'in': 1.0, 'put': 1.0, 'i': 2.0, 'didn': 1.0, 'then': 1.0, 'through': 2.0, 'repositioned': 1.0, 'don': 1.0, 'accessible': 1.0, 'shrink': 1.0, 'easily': 1.0, 'recommend': 1.0, 'minutes': 1.0, 'crotch': 1.0, 'second': 1.0, 'around': 1.0, 'is': 3.0, 'comes': 1.0, 'seat': 1.0, 'to': 2.0, 'spot': 1.0, 'folding': 1.0, 'it': 8.0, 'this': 2.0, 'for': 4.0, 'but': 2.0, 'back': 1.0, 'stroller': 1.0, 'agile': 1.0, 'cleaning': 1.0, 'takes': 1.0, 'than': 1.0, 'does': 2.0, 'perfectly': 1.0, 'too': 1.0, 'and': 5.0, 'britax': 2.0, 'strap': 2.0, 'cover': 1.0, 'pull': 1.0, 'fits': 1.0, 'b': 3.0, 'my': 1.0, 'move': 1.0, 't': 2.0, 'hole': 1.0, 'a': 3.0, 'needs': 1.0, 'bit': 1.0, 'liner': 2.0, 'be': 1.0, 'just': 1.0, 'tug': 1.0, 'into': 1.0, 'the': 10.0, 'place': 1.0, 'narrow': 1.0, 'way': 2.0, 'has': 1.0, 'well': 1.0, 'easier': 1.0, 'washes': 1.0}
Word element => {'properly': 1.0, 'food': 1.0, 'catch': 1.0, 'much': 1.0, 'too': 1.0, 'fit': 1.0, 'around': 1.0, 'slides': 1.0, 'next': 1.0, 'time': 1.0, 'liner': 1.0, 'to': 1.0, 'because': 1.0, 'just': 1.0, 'fits': 1.0, 'of': 2.0, 'design': 1.0, 't': 2.0, 'the': 1.0, 'this': 1.0, 'it': 2.0, 'i': 2.0, 'love': 1.0, 'one': 1.0, 'doesn': 2.0, 'but': 1.0, 'stroller': 2.0, 'will': 1.0, 'off': 1.0, 'purchase': 1.0, 'and': 1.0, 'get': 1.0, 'etsy': 1.0, 'that': 1.0, 'our': 1.0}
Word element => {'sleep': 1.0, 'good': 1.0, 'overall': 1.0, 'make': 1.0, 'construction': 1.0, 'use': 1.0, 'garment': 1.0, 'as': 2.0, 'for': 1.0, 'weight': 1.0, 'material': 1.0, 'had': 1.0, 'was': 1.0, 'not': 1.0, 'light': 1.0, 'high': 1.0, 'a': 2.0, 'nighttime': 1.0, 'summer': 1.0, 'is': 1.0, 'the': 2.0, 'of': 1.0, 'i': 1.0, 'hoped': 1.0, 'it': 1.0, 'but': 1.0, 'quality': 2.0, 'will': 1.0}
Word element => {'before': 1.0, 'i': 1.0, 'blanket': 1.0, 'wearable': 1.0, 'cotton': 1.0, 'sleepsack': 1.0, '100': 1.0, 'comfortable': 1.0, 'it': 1.0, 'is': 1.0, 'the': 1.0, 'cheap': 1.0, 'not': 2.0, 'thin': 1.0, 'as': 1.0, 'and': 2.0, 'halo': 1.0, 'looks': 1.0, 'good': 1.0, 'for': 1.0, 'bought': 1.0, 'winter': 1.0, 'soft': 1.0}
Word element => {'your': 1.0, 'waste': 1.0, 'a': 1.0, 'than': 1.0, 'use': 1.0, 'nervous': 1.0, 'face': 1.0, 's': 1.0, 'up': 1.0, 'blanket': 1.0, 'bunched': 1.0, 'once': 1.0, 'after': 1.0, 'money': 1.0, 'don': 1.0, 'broke': 1.0, 'february': 1.0, 'in': 1.0, 'born': 1.0, 'item': 1.0, 'my': 3.0, 't': 1.0, 'more': 1.0, 'the': 3.0, 'around': 1.0, 'enough': 1.0, 'this': 2.0, 'it': 2.0, 'i': 2.0, 'to': 1.0, 'was': 3.0, 'not': 2.0, 'product': 1.0, 'bought': 1.0, 'material': 2.0, 'son': 3.0, 'very': 1.0, 'and': 2.0, 'zipper': 1.0, 'light': 1.0, 'warm': 1.0, 'real': 1.0, 'using': 1.0, 'for': 2.0, 'comfortable': 1.0}
Word element => {'fine': 1.0, 'just': 1.0, 'to': 1.0, 'got': 1.0, 'we': 1.0, 'like': 1.0, 'and': 1.0, 'seems': 1.0, 'our': 1.0, 'fabric': 1.0, 'up': 2.0, 'of': 1.0, 'color': 1.0, 'love': 1.0, 'it': 3.0, 'hold': 1.0, 'well': 1.0, 'i': 1.0, 'tie': 1.0, 'the': 3.0, 't': 1.0, 'very': 1.0, 'best': 1.0, 'on': 1.0, 'crib': 1.0, 'work': 1.0, 'will': 1.0, 'doesn': 1.0, 'but': 1.0}
Word element => {'too': 1.0, 'spare': 1.0, 'use': 1.0, 'will': 1.0, 'this': 2.0, 'is': 1.0, 'a': 2.0, 'the': 1.0, 'it': 1.0, 'great': 1.0, 'nicely': 1.0, 'washes': 1.0, 'as': 1.0, 'and': 1.0, 'sheet': 1.0, 'i': 1.0, 'purchased': 1.0, 'entire': 1.0, 'set': 1.0}
Word element => {'elephants': 1.0, 'loves': 1.0, 'son': 1.0, 'a': 1.0, 'bumpers': 1.0, 'crib': 1.0, 'sheets': 1.0, 'these': 1.0, 'they': 1.0, 'my': 1.0, 'are': 3.0, 'the': 2.0, 'great': 1.0, 'cute': 1.0, 'soft': 1.0, 'no': 2.0, 'spruce': 1.0, 'since': 1.0, 'and': 2.0, 'up': 1.0}
Word element => {'not': 1.0, 'hot': 1.0, 'for': 1.0, 'be': 1.0, 'would': 1.0, 'days': 1.0, 'cozy': 1.0, 'make': 1.0, 'to': 1.0, 'warm': 1.0, 'though': 1.0, 'bumper': 1.0, 'use': 1.0, 'baby': 1.0, 'don': 1.0, 'give': 1.0, 'crib': 2.0, 'warmer': 1.0, 'on': 2.0, 'do': 1.0, 'and': 1.0, 'like': 2.0, 'since': 2.0, 'wonderfully': 1.0, 'can': 1.0, 'so': 1.0, 'fits': 1.0, 'sheet': 1.0, 'it': 3.0, 'this': 2.0, 'i': 3.0, 't': 1.0, 'great': 2.0, 'the': 5.0, 's': 1.0, 'sheets': 1.0, 'designs': 1.0, 'summer': 1.0, 'looks': 1.0, 'side': 1.0, 'our': 1.0, 'that': 1.0, 'some': 1.0, 'too': 1.0, 'style': 1.0}
Word element => {'with': 1.0, 'happy': 1.0, 'be': 1.0, 'to': 1.0, 'seem': 1.0, 'parents': 1.0, 'sheets': 1.0, 'i': 1.0, 'baby': 1.0, 'this': 1.0, 'and': 1.0, 'as': 1.0, 'them': 1.0, 'a': 1.0, 'they': 1.0, 'the': 1.0, 'are': 1.0, 'shower': 1.0, 'bought': 1.0, 'gift': 1.0, 'cute': 1.0}
Word element => {'sheet': 1.0, 'hop': 1.0, 'skip': 1.0, 'bought': 1.0, 'different': 1.0, '5': 1.0, 'price': 1.0, 'dollars': 1.0, 't': 1.0, 'the': 1.0, 'but': 1.0, 'quality': 1.0, 'good': 1.0, 'lot': 1.0, 'a': 2.0, 'sheets': 1.0, 'three': 1.0, 'washings': 1.0, 'sons': 1.0, 'and': 1.0, 'like': 1.0, 'up': 1.0, 'my': 1.0, '25': 1.0, 'was': 1.0, 'to': 3.0, 'wouldn': 1.0, 'it': 2.0, 'this': 1.0, 'complain': 1.0, 'fit': 1.0, 'i': 3.0, 'for': 1.0, 'one': 1.0, 'if': 1.0, 'did': 1.0, 'bucks': 1.0, 'cute': 1.0, 'just': 1.0, 'not': 2.0, 'stand': 1.0, 'even': 1.0, 'wash': 1.0, 'perfect': 1.0, 'at': 1.0, 'super': 1.0}
Word element => {'sometimes': 1.0, 'cute': 2.0, 'gave': 1.0, 'baby': 1.0, 'piping': 1.0, 'pricey': 1.0, 'mattress': 2.0, 'this': 3.0, 'but': 2.0, 'edge': 2.0, '5': 1.0, 'admit': 1.0, 'around': 1.0, 'is': 3.0, 'a': 6.0, 't': 2.0, 'goes': 1.0, 'll': 1.0, 'product': 1.0, 'for': 1.0, 'great': 1.0, 'pass': 1.0, 'place': 1.0, 'only': 1.0, 'much': 1.0, 'think': 1.0, 'on': 1.0, 'good': 1.0, 'to': 5.0, 'as': 2.0, 'was': 2.0, 'idea': 1.0, 'when': 1.0, 'bit': 1.0, 'can': 1.0, 'so': 3.0, 'very': 1.0, 'little': 2.0, 'the': 9.0, 'of': 4.0, 'less': 1.0, 'up': 2.0, 'don': 1.0, 'la': 1.0, 'i': 9.0, 'organic': 1.0, 'mixed': 1.0, 'it': 7.0, 'have': 2.0, 'hesitant': 1.0, 'screen': 1.0, 'fine': 1.0, 'we': 1.0, 'reviews': 1.0, 'aren': 1.0, 'they': 1.0, 'in': 1.0, 'm': 2.0, 'and': 2.0, 'an': 2.0, 'that': 3.0, 'because': 1.0, 'just': 3.0, 'sheet': 4.0, 'glad': 1.0, 'out': 1.0, 'keeping': 1.0, 'pull': 1.0, 'crib': 2.0, 'line': 1.0, 'adjust': 1.0, 'with': 1.0, 'thing': 1.0, 'my': 3.0, 'me': 1.0, 'from': 1.0, 's': 2.0, 'giving': 1.0, 'stars': 1.0, 'colors': 1.0, 'quite': 1.0, 'vibrant': 1.0, 'appear': 1.0, 'computer': 1.0, 'like': 1.0, 'tighter': 1.0, 'still': 1.0, 'planning': 1.0, 'try': 2.0, 'too': 1.0, 'pattern': 1.0, 'one': 1.0, 'shifts': 1.0, 'buy': 1.0, 'second': 1.0, 'wash': 1.0, 'use': 1.0, 'old': 1.0, 'sheets': 1.0}
Word element => {'usually': 1.0, 'are': 1.0, 'of': 1.0, 'instead': 1.0, 'baby': 1.0, 'colors': 2.0, 'stuck': 1.0, 'having': 1.0, 'and': 2.0, 'wanted': 1.0, 'nursery': 1.0, 'paired': 1.0, 'neutral': 1.0, 'looks': 1.0, 'gear': 1.0, 'we': 1.0, 'bright': 1.0, 'a': 1.0, 'pastel': 1.0, 'i': 2.0, 'it': 1.0, 'with': 2.0, 'teal': 1.0, 'on': 1.0, 'these': 2.0, 'the': 4.0, 'leafs': 1.0, 'giraffe': 1.0, 'you': 1.0, 'sheets': 2.0, 'wall': 1.0, 'love': 2.0, 'for': 2.0, 'awesome': 1.0, 'color': 1.0}
Word element => {'too': 1.0, 'was': 1.0, 'theme': 1.0, 'crib': 1.0, 's': 1.0, 'i': 1.0, 'price': 1.0, 'sheet': 1.0, 'perfect': 2.0, 'loved': 1.0, 'my': 1.0, 'the': 2.0, 'it': 1.0, 'went': 1.0, 'and': 1.0, 'skip': 1.0, 'hop': 1.0, 'son': 1.0, 'with': 1.0}
Word element => {'dark': 1.0, 'brown': 1.0, 'to': 1.0, 'short': 1.0, 'longer': 1.0, 'one': 1.0, 'end': 1.0, 'crib': 1.0, 'little': 1.0, 'the': 3.0, 'well': 1.0, 'a': 2.0, 's': 2.0, 'with': 1.0, 'it': 3.0, 'part': 1.0, 'so': 1.0, 'pulls': 1.0, 'inward': 1.0, 'our': 1.0, 'that': 1.0, 'top': 1.0, 'goes': 1.0, 'other': 1.0, 'wood': 1.0, 'than': 1.0, 'very': 1.0, 'and': 1.0, 'cute': 1.0, 'sheet': 1.0}
Word element => {'crib': 1.0, 'awesome': 1.0, 'designs': 1.0, 'and': 2.0, 'quality': 2.0, 'side': 1.0, 'love': 1.0, 'the': 4.0, 'is': 1.0, 'on': 2.0, 'looks': 1.0, 'so': 1.0, 'good': 2.0}
Word element => {'to': 1.0, 'alternative': 1.0, 'nursery': 1.0, 'pediatrics': 1.0, 'of': 1.0, 'your': 1.0, 'academy': 1.0, 'american': 1.0, 'per': 1.0, 'safe': 1.0, 'no': 1.0, 'are': 1.0, 'bumpers': 1.0, 'and': 1.0, 'little': 1.0, 'give': 1.0, 'crib': 2.0, 'appeal': 1.0, 'as': 2.0, 'gives': 1.0, 'great': 1.0, 'the': 4.0, 'more': 1.0, 'design': 1.0, 'standard': 1.0, 'longer': 1.0, 'is': 2.0, 'pizzaz': 1.0, 'since': 1.0, 'well': 2.0, 'a': 3.0, 'fits': 1.0, 'made': 1.0, 'sheet': 1.0, 'durable': 1.0, 'it': 2.0, 'this': 1.0, 'creative': 1.0, 'what': 1.0, 'mattress': 1.0, 'especially': 1.0, 'around': 1.0, 'perimeter': 1.0, 'pleasing': 1.0}
Word element => {'sos': 1.0, 'anymore': 1.0, 't': 1.0, 'you': 1.0, 'bumpers': 1.0, 'use': 1.0, 'especially': 1.0, 'super': 1.0, 'very': 1.0, 'since': 1.0, 'and': 1.0, 'nice': 1.0, 'i': 1.0, 'creat': 1.0, 'can': 1.0, 'love': 1.0, 'the': 1.0, 'boarder': 1.0, 'a': 1.0, 'soft': 1.0, 'cute': 1.0, 'how': 1.0, 'sides': 1.0}
Word element => {'one': 1.0, 'isnt': 1.0, 'stuff': 1.0, 'nice': 1.0, 'makes': 1.0, 'uses': 1.0, 'stretch': 1.0, 'weird': 1.0, 'her': 1.0, 'that': 1.0, 'is': 1.0, 'really': 1.0, 'smaller': 1.0, 'sheet': 1.0, 'got': 2.0, 'have': 2.0, 'mattress': 2.0, 'this': 2.0, 'she': 1.0, 'it': 3.0, 'with': 1.0, 'hard': 1.0, 'the': 3.0, 'and': 3.0, 'me': 1.0, 'get': 1.0, 'than': 1.0, 'we': 1.0, 'bedding': 1.0, 'go': 1.0, 'crib': 1.0, 'for': 2.0, 'seems': 1.0, 'in': 1.0, 'had': 1.0, 'alot': 1.0, 'never': 1.0, 'issues': 1.0, 'my': 2.0, 'company': 1.0, 'another': 1.0, 'daughter': 1.0, 'together': 1.0, 'skiphop': 1.0, 'sort': 1.0, 'to': 6.0, 'sleep': 1.0, 'of': 3.0, 'curls': 1.0, 'favorites': 1.0, 'like': 1.0, 'which': 1.0, 'has': 1.0, 'be': 1.0}
Word element => {'fashionably': 1.0, 'on': 1.0, 'is': 2.0, 'sleeping': 1.0, 'son': 1.0, 'works': 1.0, 'without': 1.0, 'soft': 1.0, 'sheet': 1.0, 'so': 1.0, 'great': 1.0, 'the': 1.0, 'my': 1.0, 'and': 2.0, 'giving': 1.0, 'fun': 1.0, 'that': 1.0, 'this': 1.0, 'safely': 1.0, 'crib': 1.0, 'look': 1.0, 'a': 2.0, 'love': 1.0, 'using': 1.0, 'bumper': 1.0, 'i': 1.0}
Word element => {'recommended': 1.0, 'bumper': 1.0, 'yet': 1.0, 'the': 1.0, 'able': 1.0, 'not': 1.0, 'strongly': 1.0, 'awesome': 1.0, 'great': 1.0, 'and': 1.0, 'quality': 1.0, 'use': 1.0, 'while': 1.0, 'vibrant': 1.0, 'color': 1.0, 'print': 1.0, 'being': 1.0, 'to': 2.0, 'adorable': 1.0, 'have': 1.0}
Word element => {'in': 1.0, 'affordable': 1.0, 'archaic': 1.0, 'to': 1.0, 'be': 1.0, 'wishes': 1.0, 'family': 1.0, 'for': 1.0, 'design': 1.0, 'usa': 1.0, 'made': 1.0, 'sheet': 1.0, 'if': 1.0, 'more': 1.0, 'these': 1.0, 'the': 3.0, 'great': 2.0, 'it': 1.0, 'eschew': 1.0, 'were': 1.0, 'that': 1.0, 'a': 1.0, 'modern': 1.0, 'baby': 1.0, 'neutral': 1.0, 'bumper': 1.0, 'likes': 1.0, 'and': 2.0, 'gender': 1.0, 'would': 1.0}
Word element => {'bumper': 1.0, 'a': 1.0, 'don': 1.0, 'you': 1.0, 'need': 1.0, 'and': 1.0, 'sons': 1.0, 'i': 1.0, 'sheet': 1.0, 'perfect': 1.0, 'love': 1.0, 'of': 1.0, 't': 1.0, 'this': 1.0, 'look': 1.0, 'crib': 3.0, 'for': 1.0, 'the': 1.0, 'my': 1.0}
Word element => {'to': 1.0, 'back': 1.0, 'get': 1.0, 'out': 1.0, 'will': 1.0, 'or': 1.0, 'you': 1.0, 'pleased': 1.0, 'if': 1.0, 'a': 1.0, 'find': 1.0, 'the': 1.0, 'recipient': 1.0, 'gift': 1.0, 'no': 1.0, 'and': 2.0, 'not': 1.0, 'was': 2.0, 'idea': 1.0, 'this': 1.0, 'item': 1.0, 'have': 1.0}
Word element => {'colors': 1.0, 'dryer': 1.0, 'up': 1.0, 'held': 1.0, 'in': 3.0, 've': 1.0, 'practical': 1.0, 'the': 4.0, 'they': 1.0, 'ever': 1.0, 'i': 5.0, 'bumper': 2.0, 'pad': 1.0, 'and': 4.0, 'very': 1.0, 'washer': 1.0, 'like': 1.0, 'add': 1.0, 'but': 2.0, 'aren': 1.0, 'crib': 1.0, 'how': 2.0, 'cute': 1.0, 'nursery': 1.0, 'not': 1.0, 'style': 1.0, 'fine': 1.0, 'look': 1.0, 'had': 1.0, 'are': 1.0, 'love': 2.0, 'one': 1.0, 'this': 1.0, 'it': 3.0, 'so': 1.0, 'sheet': 3.0, 'fact': 1.0, 'tight': 1.0, 'fits': 2.0, 'of': 1.0, 'recommended': 1.0, 'has': 1.0, 'well': 2.0, 'think': 1.0, 'as': 1.0, 'pads': 1.0, 'to': 1.0, 'all': 1.0, 'any': 1.0, 'does': 1.0, 'should': 1.0, 't': 1.0, 'a': 1.0, 's': 1.0}
Word element => {}
Word element => {'did': 1.0, 'as': 2.0, 'a': 1.0, 'stretched': 1.0, 'time': 1.0, 'has': 1.0, 'still': 1.0, 'that': 1.0, 'our': 1.0, 'crisp': 1.0, 'over': 1.0, 'on': 1.0, 'is': 1.0, 'i': 1.0, 'bumpers': 2.0, 'use': 1.0, 'doesn': 1.0, 'but': 1.0, 'little': 1.0, 'crib': 1.0, 'not': 1.0, 'and': 1.0, 'do': 1.0, 'we': 1.0, 'look': 2.0, 'wanted': 1.0, 'my': 1.0, 'of': 1.0, 'it': 2.0, 'only': 1.0, 'this': 1.0, 'out': 1.0, 'sheet': 1.0, 'new': 1.0, 'complaint': 1.0, 'works': 1.0, 't': 1.0, 'the': 1.0, 'great': 1.0}
Word element => {'a': 1.0, 'has': 1.0, 'mattress': 1.0, 'size': 1.0, 'fits': 1.0, 'feel': 1.0, 'bought': 1.0, 'the': 1.0, 'my': 1.0, 'baby': 1.0, 'very': 1.0, 'and': 2.0, 'this': 1.0, 'it': 1.0, 'for': 1.0, 'crib': 1.0, 'well': 1.0, 'average': 1.0, 's': 2.0, 'super': 1.0, 'soft': 1.0, 'cute': 1.0}
Word element => {'cute': 1.0, 'very': 1.0, 'and': 1.0, 'design': 1.0, 'like': 1.0, 'really': 1.0, 'use': 1.0, 'in': 1.0, 'softer': 1.0, 'the': 3.0, 't': 1.0, 'before': 1.0, 'any': 1.0, 'perhaps': 1.0, 'notice': 1.0, 'look': 1.0, 'was': 1.0, 'crib': 1.0, 'didn': 1.0, 'using': 1.0, 'a': 1.0, 'sheet': 2.0, 'i': 2.0, 'of': 1.0, 'washed': 1.0, 'fading': 1.0, 'but': 1.0, 'will': 1.0, 'wish': 1.0, 'bit': 1.0, 'that': 1.0, 'this': 1.0, 'come': 1.0, 'it': 2.0, 'with': 1.0}
Word element => {'decor': 1.0, 'nursery': 1.0, 'material': 1.0, 'no': 1.0, 'there': 1.0, 'washed': 1.0, 'slippage': 1.0, 'after': 1.0, 'wraps': 1.0, 'standard': 1.0, 'and': 4.0, 'durable': 1.0, 'it': 3.0, 'with': 1.0, 'well': 1.0, 'the': 4.0, 'feels': 1.0, 'is': 3.0, 'very': 1.0, 'quality': 1.0, 'so': 2.0, 'sheet': 2.0, 'fade': 1.0, 'nice': 1.0, 'crib': 2.0, 'did': 1.0, 'not': 1.0, 'washing': 1.0, 'happi': 1.0, 'i': 2.0, 'have': 1.0, 'colors': 1.0, 'twice': 1.0, 'far': 1.0, 'purchased': 1.0, 'perfectly': 1.0, 'bumper': 1.0, 'to': 1.0, 'a': 3.0, 'go': 1.0, 'tree': 1.0, 'fit': 1.0, 'for': 1.0, 'this': 1.0, 'mattress': 1.0, 'perfect': 1.0, 'underneath': 1.0, 'fits': 1.0, 'my': 1.0}
Word element => {'loose': 1.0, 'as': 1.0, 'loves': 1.0, 'crib': 1.0, 'little': 1.0, 'my': 1.0, 'a': 1.0, 'washed': 1.0, 'after': 1.0, 'however': 1.0, 'and': 2.0, 'edges': 1.0, 'that': 1.0, 'other': 1.0, 'on': 1.0, 'is': 1.0, 'print': 1.0, 'great': 1.0, 'the': 3.0, 'love': 1.0, 'his': 1.0, 'bubbly': 1.0, 'first': 1.0, 'this': 1.0, 'it': 2.0, 'blanket': 3.0, 'i': 1.0, 'dried': 1.0, 'around': 1.0, 'fabric': 1.0, 'boy': 1.0, 'slightly': 1.0, 'than': 1.0, 's': 1.0}
Word element => {'return': 1.0, 'could': 1.0, 'wish': 1.0, 'also': 1.0, 'mirror': 1.0, 'loved': 1.0, 'might': 1.0, '7': 1.0, '24': 1.0, 'head': 1.0, 'your': 2.0, 'love': 2.0, 'smack': 1.0, 'like': 1.0, 'necessary': 1.0, 'bat': 1.0, 'has': 1.0, 'them': 1.0, 'becomes': 1.0, 'baby': 3.0, 'little': 1.0, 'safe': 1.0, 'songs': 1.0, 'type': 1.0, 'tune': 3.0, 'more': 1.0, 'tabs': 3.0, 'is': 4.0, 'arch': 1.0, 'it': 6.0, 'annoying': 1.0, 'bright': 2.0, 'use': 1.0, 'colors': 1.0, 'repeats': 1.0, 'my': 1.0, 'tab': 2.0, 'poor': 1.0, 'get': 1.0, 'tabsmusic': 1.0, 'the': 13.0, 'of': 5.0, 'which': 1.0, 'good': 1.0, 'based': 1.0, 'this': 3.0, 'full': 1.0, 'not': 3.0, 'choking': 1.0, 'mouth': 2.0, 'variety': 1.0, 'does': 2.0, 'have': 4.0, 'on': 1.0, 'continuously': 1.0, 'constantly': 1.0, 'included': 1.0, 'ability': 1.0, 'round': 1.0, 'pillow': 1.0, 'for': 1.0, 'button': 1.0, 'boppy': 1.0, 'toy': 1.0, 'nearly': 1.0, 'a': 7.0, 'then': 1.0, 'we': 3.0, 'to': 8.0, 'was': 1.0, 'hold': 1.0, 'however': 1.0, 'grandson': 1.0, 'pulling': 1.0, 'toys': 5.0, 'control': 1.0, 'short': 1.0, 'proscute': 1.0, 'and': 7.0, 'play': 3.0, 'gets': 3.0, 'item': 1.0, 'size': 1.0, 'mat': 1.0, 'attach': 1.0, 'circus': 1.0, 'hazard': 1.0, 'cute': 1.0, 'are': 1.0, 'from': 1.0, 'his': 1.0, 'music': 3.0, 'everytime': 1.0, 'you': 3.0, 'when': 1.0, 'whack': 1.0, 'with': 1.0, 'over': 2.0, 'baseball': 1.0, 'only': 1.0, 'because': 1.0, 'lasts': 1.0, 'lots': 1.0, 'everyone': 1.0, 'time': 1.0, 'another': 1.0, 'stops': 1.0, 'colorsconsunsafe': 1.0, 'feature': 1.0, 'mad': 1.0, 'there': 1.0, 'same': 1.0, 'course': 1.0, 'if': 2.0, 'should': 1.0, 'been': 1.0, 'switch': 1.0, 'chose': 1.0, 'desired': 1.0, 'since': 1.0, 'in': 2.0, 'house': 1.0, 'humming': 1.0, 'guess': 1.0}
Word element => {'not': 1.0, 'always': 1.0, 'reviews': 1.0, 'write': 1.0, 'read': 1.0, 'very': 1.0, 'anyone': 1.0, 'even': 1.0, 'wouldn': 1.0, 'in': 1.0, 'disappointed': 1.0, 'rarely': 1.0, 'extremely': 1.0, 'mouth': 1.0, 'to': 2.0, 'stick': 1.0, 'tummy': 1.0, 'her': 2.0, 'mat': 2.0, 'became': 1.0, 'movie': 1.0, 'of': 4.0, 'creepy': 1.0, 'horror': 1.0, 'circus': 1.0, 'like': 1.0, 'nose': 1.0, 'would': 1.0, 'following': 1.0, 'when': 1.0, 'but': 1.0, 'music': 1.0, 'if': 1.0, 'musical': 1.0, 'material': 2.0, 'buy': 2.0, 'product': 1.0, 'cheap': 1.0, 'i': 4.0, 'sounds': 1.0, 'piece': 1.0, 'washed': 1.0, 'on': 1.0, 'the': 8.0, 'this': 3.0, 'do': 1.0, 'works': 1.0, 'them': 1.0, 'baby': 1.0, 's': 1.0, 't': 2.0, 'a': 1.0, 'stitching': 1.0, 'it': 4.0, 'arch': 1.0, 'after': 1.0, 'so': 1.0, 'recommend': 1.0, 'was': 3.0, 'crap': 1.0, 'don': 1.0, 'nearly': 1.0, 'stretched': 1.0, 'instructions': 1.0, 'balls': 1.0, 'came': 1.0, 'out': 2.0, 'one': 1.0, 'and': 3.0, 'ruined': 1.0, 'that': 1.0, 'my': 1.0}
Word element => {'any': 1.0, 'buying': 1.0, 'recommend': 1.0, 'these': 1.0, 'wrong': 1.0, 'buy': 1.0, 'over': 1.0, 'big': 1.0, 'find': 1.0, 'collected': 1.0, 'hanging': 1.0, 'millions': 1.0, 'interesting': 1.0, 'almost': 1.0, 'blah': 1.0, 'kinda': 1.0, 'new': 1.0, 'main': 1.0, 'uses': 1.0, 'time': 1.0, 'its': 2.0, 'really': 2.0, 'my': 2.0, 'boppy': 2.0, 'parent': 1.0, 'definitely': 1.0, 'better': 1.0, 'exception': 1.0, 'lame': 1.0, 'sidesthe': 1.0, 'kicks': 1.0, 'or': 2.0, 'nothing': 1.0, 'activited': 1.0, 'when': 1.0, 'great': 1.0, 'onthe': 1.0, 'way': 1.0, 'no': 1.0, 'short': 1.0, 'song': 1.0, 'there': 2.0, 't': 4.0, 'want': 1.0, 'baby': 5.0, 'music': 2.0, 'pillow': 1.0, 'shake': 1.0, 'headrest': 1.0, 'can': 4.0, 'so': 4.0, 'flexible': 1.0, 'like': 3.0, 'motion': 1.0, 'you': 2.0, 'things': 2.0, 'are': 10.0, 'here': 1.0, 'only': 2.0, 'subdued': 1.0, 'grab': 1.0, 'be': 5.0, 'but': 3.0, 'arches': 4.0, 'month': 1.0, 'few': 1.0, 'this': 3.0, 'yet': 1.0, 'he': 3.0, '34': 2.0, 'plastic': 1.0, 'pull': 1.0, 'home': 1.0, 'our': 1.0, 'leave': 1.0, 'as': 2.0, 'pretty': 1.0, 'to': 9.0, 'who': 1.0, 'son': 2.0, '3': 1.0, 'on': 1.0, 'anything': 1.0, 'soft': 1.0, 'without': 1.0, 'place': 1.0, 'tummy': 1.0, 'stimulating': 1.0, 'them': 3.0, 'has': 2.0, 'small': 1.0, 'a': 6.0, 'the': 24.0, 'of': 10.0, 'fisher': 2.0, 'area': 1.0, 'easy': 1.0, 'have': 5.0, 'embedded': 1.0, 'old': 1.0, 'well': 1.0, 'i': 10.0, 'another': 1.0, 'real': 1.0, 'rooms': 1.0, 'price': 2.0, 'tap': 1.0, 'fun': 3.0, 'loves': 2.0, 'because': 2.0, 'easily': 1.0, 'that': 6.0, 'an': 1.0, 'all': 4.0, 'other': 1.0, 'rainforest': 2.0, 'it': 6.0, 'hooks': 1.0, 'already': 1.0, 'top': 1.0, 'ahold': 1.0, 'some': 1.0, 'much': 1.0, 'do': 1.0, 'playmat': 2.0, 'use': 1.0, 'toysthe': 1.0, 'and': 11.0, 'about': 1.0, 'play': 2.0, 'too': 1.0, 'one': 4.0, 'lights': 1.0, 'toys': 5.0, 'issue': 2.0, 'attached': 1.0, 'just': 1.0, 'openings': 1.0, 'is': 9.0, 'more': 1.0, 'completely': 1.0, 'mirror': 1.0, 'large': 3.0, 'with': 6.0, 'wanted': 1.0, 'colors': 1.0, 'sides': 1.0, 'two': 1.0, 'interchange': 1.0, 'nice': 1.0, 'little': 2.0, 'wherever': 1.0, 'itself': 1.0, 'not': 2.0, 'they': 4.0, 'inside': 1.0, 'down': 2.0, 'for': 5.0, 'fabric': 2.0, 'flash': 1.0, 'move': 1.0, 'size': 1.0, 'aroundit': 1.0, 'very': 1.0, 'plays': 1.0, 'lay': 1.0, 'don': 3.0, 'archesthere': 1.0, 'sliding': 1.0, 'slide': 1.0, 'up': 1.0, 'everything': 1.0, 'places': 1.0}
Word element => {'them': 1.0, 'old': 1.0, 'to': 2.0, 'extremely': 1.0, 'after': 1.0, 'rods': 1.0, 'and': 2.0, 'be': 1.0, 'pillow': 1.0, 'cracked': 1.0, 'hold': 1.0, 'toys': 2.0, 'fair': 1.0, 'are': 2.0, 'great': 1.0, 'the': 2.0, 'my': 1.0, 'flimsy': 1.0, 'broke': 1.0, 'about': 1.0, 'a': 1.0, 'but': 1.0, 'week': 1.0, 'though': 1.0, 'year': 1.0, '3': 1.0}
Word element => {'stacker': 1.0, 'toy': 1.0, 'learning': 1.0, 'too': 1.0, 's': 2.0, 'him': 1.0, 'just': 1.0, 'tool': 1.0, 'pillow': 1.0, 'boppy': 1.0, 'a': 2.0, 'mini': 1.0, 'well': 1.0, 'as': 2.0, 'mirror': 1.0, 'we': 1.0, 'in': 1.0, 'rattles': 1.0, 'fast': 1.0, 'so': 1.0, 'item': 1.0, 'have': 1.0, 'got': 1.0, 'loved': 1.0, 'crinkles': 1.0, 'lights': 2.0, 'great': 1.0, 'the': 3.0, 'for': 2.0, 'love': 1.0, 'song': 1.0, 'cute': 1.0, 'absolutely': 1.0, 'with': 1.0, 'mail': 1.0, 'this': 1.0, 'it': 4.0, 'i': 1.0, 'set': 1.0, 'up': 1.0, 'and': 3.0, 'little': 1.0, 'man': 1.0, 'music': 1.0}
Word element => {'of': 1.0, 'the': 1.0, 'small': 1.0, 'with': 1.0, 'came': 1.0, 'i': 1.0, 'ink': 1.0, 'it': 2.0, 'also': 1.0, 's': 1.0, 'stain': 1.0, 'very': 1.0, 'gift': 1.0, 'bought': 1.0, 'though': 1.0, 'in': 1.0, 'for': 1.0, 'this': 1.0, 'myself': 1.0, 'but': 1.0, 'headphones': 1.0, 'a': 2.0, 'cute': 1.0}
Word element => {'sheet': 1.0, 'a': 1.0, 'good': 1.0, 'swaddling': 1.0, 'nice': 2.0, 'as': 1.0, 'and': 2.0, 'cottony': 1.0, 'colors': 2.0, 'fabric': 1.0, 'crib': 1.0, 'for': 1.0, 'wish': 1.0, 'could': 1.0, 'choose': 1.0, 'you': 1.0, 'what': 1.0, 'get': 1.0, 'we': 1.0, '3': 1.0}
Word element => {'in': 1.0, 'money': 1.0, 'value': 1.0, 'my': 1.0, 'a': 1.0, 'wrong': 1.0, 'go': 1.0, 'looks': 2.0, 'is': 2.0, 'chair': 1.0, 'it': 2.0, 'this': 1.0, 'loves': 1.0, 'great': 2.0, 'the': 1.0, 't': 1.0, 'granddaughter': 1.0, 'and': 2.0, 'couldn': 1.0, 'too': 1.0, 'purchasing': 1.0, 'for': 1.0, 'sturdy': 1.0, 'use': 1.0, 'you': 1.0}
Word element => {'together': 1.0, 'it': 1.0, 'fits': 1.0, 'put': 1.0, 'work': 1.0, 'would': 1.0, 'dining': 1.0, 'the': 3.0, 'grandson': 1.0, 'chair': 1.0, 'nice': 1.0, 'that': 1.0, 'well': 1.0, 'a': 1.0, 'wood': 1.0, 'to': 1.0, 'was': 1.0, 'wanted': 1.0, 'easy': 1.0, 'table': 2.0, 'very': 1.0, 'and': 1.0, 'my': 1.0, 'high': 1.0, 'i': 1.0, 'around': 1.0, 'room': 1.0, 'is': 1.0, 'for': 1.0, 'walnut': 1.0, 'finish': 1.0}
Word element => {'areas': 1.0, 'seamlessly': 1.0, 'blends': 1.0, 'decor': 1.0, 'with': 3.0, 'this': 2.0, 'problem': 1.0, 'that': 2.0, 'love': 1.0, 'most': 1.0, 'but': 1.0, 'cleans': 1.0, 'restaraunt': 1.0, 'chair': 2.0, 'to': 1.0, 'now': 1.0, 'tacky': 1.0, 'ones': 1.0, 'hated': 1.0, 'kitchen': 1.0, 'purchased': 1.0, 'because': 1.0, 'my': 1.0, 'high': 2.0, 'seemed': 1.0, 'daughter': 1.0, 't': 1.0, 'we': 1.0, 'a': 1.0, 'and': 1.0, 'flying': 1.0, 'colors': 1.0, 'it': 3.0, 'solved': 1.0, 'she': 1.0, 'happily': 1.0, 'eats': 1.0, 'regular': 1.0, 'in': 3.0, 'her': 1.0, 'up': 1.0, 'finicky': 1.0, 'very': 1.0, 'easily': 1.0, 'isn': 1.0, 'or': 1.0, 'covered': 1.0, 'some': 1.0, 'the': 1.0, 'ugly': 1.0, 'print': 1.0, 'clashes': 1.0}
Word element => {'them': 1.0, 'with': 1.0, 'table': 1.0, 'to': 1.0, 'my': 2.0, 'are': 1.0, 'accommodate': 1.0, 'and': 2.0, 'year': 2.0, 'as': 3.0, 'nice': 1.0, 'chairs': 1.0, 'sturdy': 1.0, 'well': 2.0, '5': 1.0, 'the': 2.0, '2': 1.0, 'old': 2.0, 'i': 1.0, 'am': 1.0, '34': 1.0, '7': 1.0, 'can': 1.0, '8': 1.0, 'sit': 1.0, 'at': 1.0}
Word element => {'also': 1.0, 'but': 1.0, 'under': 1.0, 'climb': 1.0, 't': 2.0, 'can': 2.0, 'they': 1.0, 'so': 1.0, 'little': 1.0, 'a': 1.0, 'that': 1.0, 'bought': 1.0, 'higher': 1.0, 'keep': 1.0, 'up': 1.0, 'beast': 1.0, 'of': 2.0, 'to': 2.0, 'my': 2.0, 'dogs': 2.0, 'helps': 1.0, 'want': 1.0, 'them': 1.0, 'it': 1.0, 'this': 2.0, 'loves': 1.0, 'by': 1.0, 'where': 1.0, 'putting': 1.0, 'cheap': 1.0, 'i': 1.0, 'one': 1.0, 'jump': 2.0, 'gate': 2.0, 'over': 1.0, 'simple': 1.0, 'stop': 1.0, 'things': 1.0, 'and': 1.0}
Word element => {'kinda': 1.0, 'square': 1.0, 'we': 1.0, 'this': 1.0, 'have': 1.0, 'product': 1.0, 'an': 1.0, 'would': 2.0, 'not': 3.0, 'cheap': 1.0, 'the': 1.0, 'are': 1.0, 'older': 1.0, 'recommend': 1.0, 'farmhouse': 1.0, 'lock': 1.0, 'and': 2.0, 'door': 1.0, 'frames': 1.0}
Word element => {'right': 1.0, 'just': 1.0, 'but': 1.0, 'these': 1.0, 'thank': 1.0, 'was': 1.0, 'in': 1.0, 've': 1.0, 'god': 1.0, '1': 1.0, 'of': 1.0, 'hear': 1.0, 'described': 1.0, 'since': 1.0, 'prime': 1.0, 'came': 1.0, 'day': 1.0, 'as': 1.0, 'shipping': 1.0, 'works': 1.0, 'used': 1.0, 'it': 2.0, 's': 1.0, 'been': 1.0, 'awhile': 1.0, 'we': 1.0, 'for': 1.0, 'one': 1.0}
Word element => {'australia': 1.0, 'back': 1.0, 'again': 1.0, 'been': 1.0, 'that': 1.0, 'past': 1.0, 'to': 2.0, 'had': 1.0, 'am': 1.0, 'bars': 1.0, 'fit': 1.0, 'can': 1.0, 'because': 1.0, 'able': 1.0, 'have': 2.0, 'moving': 1.0, 'thrilled': 1.0, 'he': 1.0, 'this': 1.0, 'other': 1.0, 'i': 3.0, 'as': 1.0, 'get': 1.0, 'and': 2.0, 'in': 1.0, 'needs': 1.0, 'one': 1.0, 'for': 1.0, 'my': 1.0, 'since': 1.0, 'a': 1.0, 'gate': 1.0, 'these': 1.0, 't': 1.0, 'the': 3.0, 'puppy': 1.0, 'is': 1.0, 'maltese': 1.0, 'don': 1.0, 'baby': 1.0, 'between': 1.0, 'gates': 2.0, 'keep': 1.0, 'ideal': 1.0, 'him': 1.0, 'confined': 1.0}
Word element => {'upgraded': 1.0, 'is': 1.0, 'white': 1.0, 'stairway': 1.0, 'whiteor': 1.0, 'last': 1.0, 'should': 1.0, 'dexterity': 1.0, 'hand': 1.0, 'and': 1.0, 'area': 1.0, 'low': 1.0, 'you': 1.0, 'if': 1.0, 'thecardinal': 2.0, 'traffic': 2.0, 'would': 1.0, 'nor': 1.0, 'does': 1.0, 'around': 1.0, 'get': 1.0, 'new': 1.0, 've': 1.0, 'ready': 1.0, 'they': 2.0, 'puppy': 1.0, 'bedroom': 1.0, 'need': 1.0, 'or': 1.0, 'a': 8.0, 'go': 1.0, 'we': 5.0, 's': 2.0, 'both': 2.0, 'years': 2.0, 'anytime': 1.0, 'highly': 1.0, 'this': 1.0, 'few': 1.0, 'openings': 1.0, 'just': 1.0, 'an': 1.0, 'pins': 1.0, 'spare': 1.0, 'live': 1.0, 'have': 5.0, 'i': 5.0, 'store': 1.0, 'recommend': 3.0, 'pets': 1.0, 'them': 1.0, 'for': 7.0, 'actually': 1.0, 'high': 1.0, 'to': 4.0, 'our': 3.0, 'leave': 1.0, 'as': 1.0, 'had': 1.0, 'used': 1.0, 'gate': 7.0, 'stairs': 4.0, 'without': 1.0, 'the': 5.0, 'of': 2.0, 'sets': 1.0, 'it': 3.0, 'determined': 1.0, 'baby': 1.0, 'she': 1.0, 'once': 1.0, 'these': 3.0, 'readily': 2.0, 'great': 3.0, 'use': 2.0, 're': 1.0, 'awhile': 2.0, 'visiting': 1.0, 'can': 2.0, 'so': 1.0, 'vary': 1.0, '2': 1.0, 'normally': 1.0, 'gates': 6.0, 'lock': 1.0, 'are': 1.0, 'tri': 1.0, 'making': 1.0, 'occasional': 1.0, 'in': 5.0, 'level': 1.0, 'granddaughter': 1.0, 'do': 1.0, 'came': 1.0, 'shepherds': 1.0, 'with': 1.0, 'us': 1.0, 'toddler': 1.0, 'not': 4.0, 'installed': 1.0, 'dangerous': 1.0, 'on': 2.0, 'auto': 1.0, 'otherwise': 1.0, 'youngsters': 1.0, 'who': 1.0, 'climb': 1.0, 'since': 1.0, 'german': 1.0, 'leap': 1.0, 'special': 1.0, 'over': 1.0, 'which': 1.0, 'good': 1.0, 'however': 1.0, 'easy': 1.0, 'scaled': 1.0, 'secure': 1.0, 'will': 1.0, 'that': 1.0, 'young': 1.0, 'unsecure': 1.0, 'temporary': 1.0, 'frequently': 1.0, 'by': 1.0, 'home': 2.0, 'pushed': 1.0, 'closed': 1.0, 'latching': 1.0, 'what': 1.0, 'when': 1.0, 'dog': 1.0, 'decides': 1.0, 'he': 2.0}
Word element => {'strong': 1.0, 'or': 1.0, 'out': 1.0, 'baby': 1.0, 'trust': 1.0, 'wouldn': 1.0, 'fromi': 1.0, 'for': 2.0, 'supposed': 1.0, 'barrier': 2.0, 'try': 1.0, 'were': 1.0, 'over': 1.0, 'knock': 1.0, 'big': 1.0, 'designed': 1.0, 'is': 3.0, 'was': 2.0, 'husband': 1.0, 'away': 1.0, 'now': 1.0, 'recognizes': 1.0, 'and': 3.0, 'get': 1.0, 'not': 1.0, 'stay': 2.0, 'poorly': 1.0, 'maybe': 1.0, 'fortunately': 1.0, 'found': 1.0, 'i': 1.0, 'mechanism': 1.0, 'one': 1.0, 'difficult': 1.0, 'light': 1.0, 'just': 3.0, 'room': 1.0, 'can': 1.0, 'but': 2.0, 'both': 1.0, 'the': 5.0, 'puppy': 1.0, 'my': 1.0, 'well': 1.0, 'little': 2.0, 'so': 1.0, 'plastic': 1.0, 'received': 1.0, 'bends': 1.0, 'leaving': 1.0, 'suit': 1.0, 'instead': 1.0, 'of': 1.0, 'cranking': 1.0, 'worked': 1.0, 'from': 2.0, 'enough': 3.0, 'malleable': 1.0, 'keep': 2.0, 'as': 1.0, 'to': 7.0, 'our': 1.0, 'that': 3.0, 'when': 1.0, 'it': 10.0, 'she': 5.0, 'stairs': 1.0, 't': 1.0, 'we': 1.0, 'a': 4.0, 's': 2.0}
Word element => {'my': 1.0, 'happy': 1.0, 'be': 1.0, 'supposed': 1.0, 'not': 1.0, 'purchases': 1.0, 'with': 1.0, 'he': 1.0, 'where': 1.0, 'into': 1.0, 'very': 1.0, 'from': 1.0, 'beagle': 1.0, 'a': 1.0, 'adequate': 1.0, 'is': 2.0, 'highly': 1.0, 'out': 1.0, 'tension': 1.0, 'keep': 2.0, 'they': 1.0, 'to': 4.0, 'was': 1.0, 'areas': 1.0, 'i': 1.0, 'are': 1.0, 'more': 1.0, 'pets': 1.0, 'these': 1.0, 'the': 1.0, 'no': 1.0, 'super': 1.0, 'then': 1.0, 'use': 1.0, 'getting': 1.0, 'and': 2.0, 'me': 1.0, 'gates': 1.0, 'installation': 1.0, 'recommend': 1.0, 'easy': 1.0, 'needed': 1.0, 'for': 1.0}
Word element => {'your': 1.0, 'of': 1.0, 'one': 1.0, 'for': 1.0, 'year': 1.0, 'top': 1.0, 'enough': 1.0, 'a': 1.0, 'don': 1.0, 'is': 1.0, 'recomend': 1.0, 'old': 1.0, 'to': 1.0, 'stairs': 1.0, 'think': 1.0, 'boyi': 1.0, 'use': 1.0, 'wouldn': 1.0, 'if': 1.0, 'itespecially': 1.0, 'you': 1.0, 'are': 1.0, 't': 2.0, 'the': 1.0, 'going': 1.0, 'safe': 1.0, 'at': 1.0}
Word element => {'proofing': 1.0, 'done': 1.0, 'up': 1.0, 'touch': 1.0, 'totally': 1.0, 'that': 1.0, 'sure': 1.0, 'popped': 1.0, 'and': 3.0, 'strong': 1.0, 'on': 3.0, 'your': 2.0, 'enough': 1.0, 'just': 2.0, 'completely': 1.0, 'very': 1.0, 'son': 1.0, 'worry': 1.0, 'doorway': 1.0, 'chip': 1.0, 'this': 3.0, 'kids': 1.0, 'have': 2.0, 'free': 1.0, 'now': 1.0, 'older': 1.0, 'isn': 1.0, 'right': 1.0, 'work': 1.0, 'but': 2.0, 'will': 1.0, 'secure': 1.0, 'also': 1.0, 'of': 3.0, 'the': 5.0, 'gate': 3.0, 'place': 1.0, 't': 1.0, 'maybe': 1.0, 's': 2.0, 'a': 1.0, 'pull': 1.0, 'my': 3.0, 'keep': 3.0, 'is': 1.0, 'at': 1.0, 'if': 1.0, 'you': 3.0, 'when': 2.0, 'in': 2.0, 'as': 1.0, 'it': 11.0, 'him': 1.0, 'out': 3.0, 'great': 1.0, 'for': 4.0, 'where': 1.0, 'crawlers': 1.0, 'an': 1.0, 'eye': 1.0, 'remove': 1.0, 'stairs': 1.0, 'works': 1.0, 'job': 1.0, 'to': 5.0, 'pretty': 1.0, 'i': 3.0, 'well': 2.0, 'before': 1.0, 'stoppers': 1.0, 'top': 1.0, 'trust': 1.0, 'used': 1.0, 'he': 1.0, 'was': 3.0, 'baby': 2.0, 'had': 1.0, 'peace': 1.0, 'house': 1.0, 'holding': 1.0, 'mind': 1.0, 'with': 1.0, 'while': 1.0, 'really': 1.0, 'use': 1.0, 'does': 1.0, 'ease': 1.0, 'make': 1.0, 'rubber': 1.0, 'made': 1.0, 'paint': 2.0, 'easy': 1.0, 'office': 1.0, 'however': 1.0, 'walls': 1.0, 'can': 1.0, 'so': 1.0, 'watch': 1.0, 'or': 1.0, 'some': 1.0, 'toddlers': 1.0, 'hand': 1.0}
Word element => {'product': 1.0, 'love': 1.0, 'for': 1.0, 'you': 1.0, 'thank': 1.0, 'of': 1.0, 'i': 1.0, 'great': 2.0, 'the': 3.0, 'and': 2.0, 'just': 1.0, 'was': 1.0, 'out': 2.0, 'put': 1.0, 'box': 1.0, 'easily': 1.0, 'in': 1.0, 'place': 1.0, 'it': 3.0, 'this': 2.0, 'with': 1.0, 'handled': 1.0, 'is': 1.0, 'pulled': 1.0, 'a': 1.0, 'hitch': 1.0, 'ticket': 1.0, 'construction': 1.0}
Word element => {'one': 1.0, 'lab': 1.0, 'in': 1.0, 'for': 1.0, 'perfect': 1.0, 'doorways': 1.0, 'my': 1.0, 'the': 2.0, 'room': 1.0, 'is': 2.0, 'keeping': 1.0, 'sturdy': 1.0, 'different': 1.0, 'height': 1.0, 'gate': 1.0, 'and': 1.0, 'size': 1.0, 'slides': 1.0, 'easily': 1.0, 'to': 1.0, 'fit': 1.0}
Word element => {'baby': 1.0, 'purchase': 1.0, 'keeps': 1.0, 'overall': 1.0, 'few': 1.0, 'having': 1.0, 'deal': 1.0, 'not': 1.0, 'wandering': 1.0, 's': 1.0, 'and': 1.0, 'do': 1.0, 'it': 4.0, 'works': 1.0, 'stairs': 1.0, 'good': 1.0, 'off': 2.0, 'walls': 1.0, 'we': 1.0, 'makes': 1.0, 'big': 2.0, 'handle': 1.0, 'but': 1.0, 'work': 1.0, 'above': 1.0, 'put': 1.0, 'ground': 1.0, 'a': 3.0, 'well': 1.0, 'to': 2.0, 'easy': 1.0, 'all': 1.0, 'have': 1.0, 'moulding': 1.0, 'so': 1.0, 'pads': 1.0, 'touch': 1.0, 'inches': 1.0, 'our': 2.0, 'that': 1.0, 'the': 4.0}
Word element => {'great': 1.0, 'works': 1.0, 'steps': 1.0, 'basement': 1.0, 'top': 1.0, 'at': 1.0, 'we': 1.0, 'eyes': 1.0, 'use': 1.0, 'easy': 2.0, 'to': 1.0, 'put': 1.0, 'very': 1.0, 'up': 1.0, 'and': 2.0, 'take': 1.0, 'of': 1.0, 'sturdy': 1.0, 'the': 3.0, 'down': 1.0, 'on': 1.0}
Word element => {'o': 1.0, 'leave': 1.0, 'off': 1.0, 'broke': 1.0, 'when': 1.0, 'opened': 1.0, 'less': 1.0, 'the': 3.0, 'that': 1.0, 'box': 1.0, 'but': 1.0, 'plastic': 1.0, 'pieces': 2.0, 'fell': 1.0, 'out': 1.0, 'be': 1.0, 'product': 1.0, 'desired': 1.0, 'works': 1.0}
Word element => {'indestructible': 1.0, 'seems': 1.0, 'use': 1.0, 'has': 1.0, 'security': 1.0, 'or': 1.0, 'chooses': 1.0, 'it': 3.0, 'this': 1.0, 'with': 1.0, 'he': 1.0, 'loud': 1.0, 'months': 1.0, 'push': 2.0, 'sends': 1.0, 'my': 1.0, 'effort': 1.0, '18': 1.0, 'at': 2.0, 'some': 2.0, 'signal': 1.0, 'son': 1.0, 'of': 2.0, 'less': 1.0, 'more': 1.0, 'the': 2.0, 'breached': 1.0, 'him': 2.0, 'been': 1.0, 'that': 2.0, 'a': 3.0, 'could': 1.0, 't': 1.0, 'we': 1.0, 'age': 1.0, 'in': 1.0, 'over': 2.0, 'don': 1.0, 'sound': 1.0, 'certain': 1.0, 'and': 2.0, 'easy': 1.0, 'get': 1.0, 'area': 1.0, 'want': 1.0, 'if': 1.0, 'disobey': 1.0, 'you': 2.0, 'to': 4.0, 'least': 1.0, 'nice': 1.0, 'out': 1.0, 'warning': 1.0, 'hitting': 1.0, 'floor': 1.0, 'give': 1.0}
Word element => {'quite': 1.0, 'll': 1.0, 'weight': 1.0, 'also': 1.0, 'is': 1.0, 'well': 2.0, 'it': 6.0, 'this': 1.0, 'doesn': 2.0, 'house': 1.0, 'but': 1.0, 'alone': 1.0, 'dog': 2.0, 'chihuahua': 1.0, 'so': 1.0, 'he': 1.0, 'walk': 1.0, 'got': 1.0, 'use': 2.0, 'required': 1.0, 'for': 3.0, 'hold': 1.0, 'using': 1.0, 'run': 1.0, 'my': 3.0, 'leave': 1.0, 'have': 1.0, 'while': 1.0, 'tried': 1.0, 'when': 1.0, 'gate': 1.0, 'the': 2.0, 'i': 4.0, 'mess': 1.0, 'all': 1.0, 'to': 2.0, 'too': 1.0, 'and': 1.0, 'make': 1.0, 'a': 3.0, 't': 2.0, 's': 2.0, 'way': 1.0, 'very': 2.0, 'best': 1.0, 'easy': 1.0, 'there': 1.0, 'no': 1.0, 'up': 1.0, 'over': 3.0, 'assembly': 1.0, 'works': 1.0, 'potentially': 1.0, 'doorways': 1.0, 'light': 1.0, 'just': 1.0, 'stay': 1.0}
Word element => {'us': 1.0, 'but': 1.0, 'intended': 1.0, 'how': 1.0, 'between': 1.0, 'in': 1.0, 'fit': 1.0, 'can': 1.0, 'is': 2.0, 'its': 1.0, 'to': 2.0, 'who': 1.0, 'as': 1.0, 'year': 1.0, 'for': 2.0, 'not': 1.0, 'just': 1.0, 'started': 1.0, 'my': 1.0, 'great': 2.0, 'the': 2.0, 'wall': 1.0, 'rails': 2.0, 'me': 1.0, '1': 1.0, 'has': 1.0, 'two': 1.0, 'no': 1.0, 'it': 1.0, 'this': 3.0, 'have': 1.0, 'needed': 1.0, 'old': 1.0, 'i': 3.0, 'go': 1.0, 'up': 1.0, 'stairs': 2.0, 'that': 1.0, 'works': 1.0, 'both': 1.0, 'gate': 1.0, 'on': 1.0, 'ends': 1.0}
Word element => {'doorways': 1.0, 'in': 1.0, 'not': 1.0, 'my': 1.0, 'use': 1.0, 'handy': 1.0, 'easy': 1.0, 'i': 1.0, 'for': 1.0, 'take': 1.0, 'really': 1.0, 'it': 1.0, 'this': 1.0, 'well': 1.0, 'a': 1.0, 'etc': 1.0, 'works': 1.0, 'down': 1.0, 'dogs': 1.0, 'baby': 1.0, 'and': 2.0, 'very': 1.0, 'up': 1.0, 'its': 1.0, 'to': 1.0, 'put': 1.0}
Word element => {'and': 3.0, 'out': 1.0, 'kiddies': 1.0, 'stay': 1.0, 'of': 2.0, 'to': 1.0, 'rooms': 1.0, 'stares': 1.0, 'can': 1.0, 'places': 1.0, 'have': 1.0, 'this': 1.0, 'we': 2.0, 'works': 1.0, 'peace': 1.0, 'corral': 1.0, 'for': 1.0, 'safety': 1.0, 'great': 1.0, 'lightweight': 1.0, 'the': 1.0, 'mind': 1.0, 'their': 1.0, 'our': 1.0, 'gate': 1.0, 'is': 1.0}
Word element => {'bamboo': 1.0, 'nature': 1.0, 'than': 1.0, 'better': 1.0, 'if': 1.0, 'superior': 1.0, 'far': 1.0, 'safety': 2.0, 'bother': 1.0, 'plastic': 1.0, '1st': 2.0, 'flimsy': 1.0, 'pet': 1.0, 'toddler': 1.0, 'indication': 1.0, 'cat': 1.0, 'more': 1.0, 'is': 4.0, 'of': 1.0, 'good': 1.0, '1': 1.0, 'and': 1.0, 'these': 1.0, 'go': 1.0, 'a': 4.0, 't': 1.0, 'are': 2.0, 'gates': 1.0, 'so': 1.0, 'not': 1.0, 'broken': 1.0, 'quality': 2.0, 'baby': 1.0, 'but': 1.0, 'can': 1.0, 'money': 1.0, 'or': 1.0, 'worth': 1.0, 'cheap': 1.0, 'for': 2.0, 'expensive': 1.0, 'fit': 1.0, 'product': 1.0, 'be': 1.0, 'purchased': 1.0, 'arrived': 1.0, 'i': 1.0, 'two': 1.0, 'next': 1.0, 'that': 3.0, 'the': 5.0, 'gate': 4.0, 'don': 1.0, 'over': 2.0, 'you': 1.0, 'easily': 1.0, 'perfect': 1.0, 'this': 2.0, 'toppled': 1.0, 'my': 2.0, 'by': 1.0, 'daughter': 1.0, 'both': 1.0, 'looking': 1.0, 'knocked': 1.0, 'one': 1.0, 'survived': 1.0, 'shipping': 1.0}
Word element => {'gets': 1.0, 'every': 1.0, 'back': 1.0, 'put': 1.0, 'have': 1.0, 'a': 1.0, 'royal': 1.0, 'easily': 1.0, 'constantly': 1.0, 'if': 1.0, 'as': 1.0, 'very': 1.0, 'pain': 1.0, 'gate': 1.0, 'down': 1.0, 'recommend': 1.0, 'up': 1.0, 'of': 1.0, 'wouldn': 1.0, 'this': 1.0, 'it': 3.0, 'can': 1.0, 'i': 1.0, 's': 1.0, 'not': 1.0, 'mounted': 1.0, 't': 1.0, 'the': 1.0, 'is': 1.0, 'type': 1.0, 'door': 1.0, 'to': 3.0, 'frame': 1.0, 'and': 1.0, 'get': 1.0, 'bumped': 1.0, 'time': 1.0, 'knocked': 1.0}
Word element => {'safety': 1.0, 'with': 1.0, 'pleased': 1.0, 'very': 1.0, 'so': 1.0, 'her': 2.0, 'to': 2.0, 'toddler': 1.0, 'are': 1.0, 'quality': 1.0, 'plastic': 1.0, 'do': 1.0, 'works': 1.0, 'risk': 1.0, 'of': 6.0, 'there': 1.0, 'too': 1.0, 'subtle': 1.0, 'and': 3.0, 'side': 2.0, 'is': 6.0, 'small': 1.0, 'have': 4.0, 'am': 1.0, 'toes': 1.0, 'easily': 1.0, 'traditional': 1.0, 'holes': 2.0, 'steps': 1.0, 'a': 5.0, 'could': 1.0, 'house': 1.0, 'in': 3.0, 'falling': 1.0, 'cream': 1.0, 'my': 2.0, 'worry': 1.0, 'room': 1.0, 'railing': 1.0, 'opening': 1.0, 'looking': 1.0, 'i': 6.0, 'color': 1.0, 'one': 1.0, 'for': 3.0, 'it': 1.0, 'doorway': 1.0, 'the': 13.0, 'without': 1.0, 'gate': 4.0, 'into': 1.0, 'stairway': 3.0, 'been': 1.0, 'that': 3.0, 'climbing': 1.0, 'nice': 1.0, 'install': 1.0, 'this': 3.0, 'get': 1.0, 'area': 2.0, 'did': 1.0, 'not': 2.0, 'other': 1.0, 'making': 1.0, 'require': 1.0, 'wood': 1.0, 'pressure': 1.0, 'mounted': 1.0, 'application': 1.0, 'since': 1.0, 'odd': 1.0, 'at': 1.0, 'about': 1.0, 'wall': 1.0, 'no': 1.0, 'perfectly': 1.0, 'bottom': 2.0, 'down': 1.0}
Word element => {'reason': 1.0, 'some': 1.0, 'for': 1.0, 'but': 1.0, 'because': 1.0, 'thinks': 1.0, 'cheap': 1.0, 'the': 1.0, 'a': 1.0, 'well': 1.0, 's': 3.0, 'our': 1.0, 'dog': 1.0, 'bedroom': 1.0, 'his': 1.0, 'works': 1.0, 'little': 1.0, 'clunky': 1.0, 'pretty': 1.0, 'keep': 1.0, 'bathroom': 1.0, 'of': 1.0, 'it': 5.0, 'he': 1.0, 'bought': 1.0, 'to': 1.0, 'out': 1.0, 'we': 1.0, 'extra': 1.0}
Word element => {'tag': 1.0, 'seuss': 1.0, 'gift': 2.0, 'dr': 1.0, 'from': 1.0, 'purchased': 1.0, 'to': 1.0, 'little': 1.0, 'a': 2.0, 'with': 1.0, 'even': 1.0, 'just': 1.0, 'it': 1.0, 'comes': 1.0, 'as': 2.0, 'very': 1.0, 'looks': 1.0, 'appears': 1.0, 'in': 1.0, 'picture': 1.0, 'the': 1.0, 'soft': 1.0, 'cotton': 1.0}
Word element => {'tiny': 1.0, 'much': 1.0, 'how': 1.0, 'look': 1.0, 'you': 2.0, 'thanks': 2.0, 'again': 1.0, 'seller': 1.0, 'never': 1.0, 'way': 1.0, 'every': 1.0, 'different': 1.0, 'pleased': 1.0, 'overnight': 1.0, 'had': 1.0, 'it': 1.0, 'another': 1.0, 'have': 1.0, 'hope': 1.0, 'by': 1.0, 'few': 1.0, 'days': 1.0, 'in': 1.0, 'turn': 1.0, 'if': 1.0, 'want': 1.0, 'amazon': 1.0, 'free': 1.0, 'they': 3.0, 'got': 2.0, 'charge': 1.0, 'from': 3.0, 'shipping': 3.0, 'ripped': 1.0, 'very': 1.0, 'big': 1.0, 'could': 1.0, 'a': 2.0, 'pajamas': 3.0, 'but': 1.0, '2': 1.0, 'these': 1.0, 'the': 5.0, 'other': 2.0, 'with': 2.0, 'this': 3.0, 'pairs': 1.0, 'pair': 4.0, 'of': 4.0, 'came': 2.0, 'diana': 1.0, 'be': 1.0, 'here': 1.0, 'i': 7.0, 'pjs': 2.0, 'ordered': 1.0, 'straight': 2.0, 'bought': 1.0, 'one': 2.0, 'and': 3.0, 'would': 2.0, 'cost': 2.0, 'store': 1.0, 'was': 3.0, 'baby': 1.0, 'stunning': 1.0, '95': 1.0, 'for': 2.0, 'where': 2.0, '14': 1.0, 'over': 1.0, 'sooner': 1.0, 'longer': 1.0, '8': 1.0, 'is': 1.0, '00': 1.0, 'into': 1.0, 'that': 2.0, 'off': 2.0}
Word element => {'recommend': 1.0, 'totally': 1.0, 'small': 1.0, 'on': 1.0, 'runs': 1.0, 'would': 1.0, 'board': 1.0, 'm': 1.0, 'daughter': 2.0, 'i': 3.0, 'old': 1.0, 'about': 1.0, 'age': 1.0, 'fabulous': 1.0, 'say': 1.0, 'is': 3.0, '24': 1.0, 'not': 1.0, 'know': 1.0, 'over': 1.0, 'packaged': 1.0, 'so': 2.0, 'the': 6.0, 'nicely': 1.0, 'soft': 1.0, 'this': 3.0, 'hard': 1.0, 'with': 1.0, 'for': 3.0, 'my': 2.0, 'fits': 1.0, 'side': 1.0, 'run': 1.0, 'arrived': 1.0, 'quickly': 1.0, 'sure': 1.0, 'very': 3.0, 'grand': 2.0, 'big': 1.0, 'baby': 2.0, 'quality': 1.0, 'and': 3.0, 'sizing': 1.0, 'purchased': 1.0, 'bought': 1.0, 'months': 2.0, '6': 1.0, 'it': 3.0, 'she': 1.0, 'her': 2.0, 'well': 1.0, 's': 1.0, 'seem': 1.0, 'sizes': 1.0, 'to': 2.0, 'all': 1.0, 'they': 1.0}
Word element => {'satisfied': 1.0, 'a': 3.0, 's': 1.0, 'yrs': 1.0, 'months': 1.0, 'is': 1.0, 'i': 1.0, 'old': 1.0, 'ham': 1.0, 'ordered': 2.0, 'eggs': 1.0, 'at': 1.0, 'son': 1.0, 'from': 1.0, 'his': 2.0, '24': 1.0, 'long': 1.0, 'this': 1.0, 'perfect': 1.0, 'for': 2.0, 'week': 1.0, 'favorite': 1.0, 'the': 3.0, 'but': 1.0, '2': 1.0, 'moment': 1.0, 'little': 2.0, 'small': 1.0, 'in': 2.0, 'age': 1.0, '5': 1.0, 'than': 1.0, 'ordering': 1.0, 'book': 1.0, 'shirt': 1.0, 'my': 1.0, 'fits': 1.0, 'green': 1.0, 'and': 1.0, 'are': 1.0, 'overall': 1.0, 'not': 1.0, 'size': 1.0, 'bad': 1.0, 'he': 1.0, 'received': 1.0, 'pants': 1.0, 'less': 1.0}
Word element => {'love': 1.0, 'i': 1.0, 'which': 1.0, 'chemicals': 1.0, 'my': 1.0, 'on': 1.0, 'side': 1.0, 'summer': 1.0, 'is': 1.0, 'she': 1.0, 'will': 1.0, 'daughter': 1.0, 'and': 1.0, 'retardant': 1.0, 'fit': 1.0, 'be': 1.0, 'to': 1.0, 'small': 1.0, 'wear': 1.0, 'the': 1.0, 'great': 1.0, 'these': 1.0, 'able': 1.0, 'all': 2.0, 'cotton': 1.0, 'no': 1.0, 'flame': 1.0}
Word element => {'held': 1.0, 'pants': 1.0, 'still': 1.0, 'is': 1.0, 'these': 1.0, 'bought': 1.0, 'the': 1.0, 'my': 1.0, 'were': 1.0, 'great': 1.0, 'have': 1.0, 'colorful': 1.0, 'grandson': 1.0, 'loved': 1.0, 'up': 1.0, 'very': 1.0, 'and': 2.0, 'in': 1.0, 'for': 1.0, 'good': 1.0, 'sleeping': 1.0, 'he': 1.0, 'them': 1.0}
Word element => {'too': 1.0, 'washes': 1.0, 'school': 1.0, 'off': 1.0, 'take': 1.0, 'to': 2.0, 'did': 1.0, 'not': 1.0, 'was': 1.0, 'want': 1.0, 'a': 1.0, 'gift': 1.0, 'wore': 1.0, 'for': 1.0, 'my': 1.0, 'this': 1.0, 'loved': 1.0, 'good': 1.0, 'nephew': 1.0, 'he': 1.0, 'just': 1.0, 'it': 2.0}
Word element => {'1': 1.0, 'thing': 1.0, 'every': 1.0, 'from': 1.0, 'different': 1.0, 'that': 1.0, 'i': 1.0, 's': 1.0, 'super': 1.0, 'cute': 1.0, 'nice': 1.0, 'shirt': 2.0, 'my': 1.0, 'like': 1.0, 'and': 2.0, 'very': 1.0, 'quality': 1.0, 'other': 1.0, 'loves': 1.0, 'it': 2.0, 'son': 1.0}
Word element => {'vibrant': 1.0, 'his': 1.0, 'am': 1.0, 'wear': 1.0, 'so': 1.0, 'son': 1.0, 'love': 1.0, 'for': 1.0, 'perfect': 1.0, 'in': 1.0, 'shirt': 2.0, 'color': 1.0, 'my': 1.0, 'cat': 1.0, 'the': 2.0, 'at': 1.0, 'to': 1.0, 'was': 1.0, 'first': 1.0, 'this': 2.0, 'bought': 1.0, 'i': 3.0, 'doing': 1.0, 'a': 1.0, 'hat': 1.0, 'birthday': 1.0, 'theme': 1.0}
Word element => {'expected': 1.0, 'just': 1.0, 'was': 1.0, 'manner': 1.0, 'my': 1.0, 'the': 1.0, 'shirt': 1.0, 'are': 1.0, 'for': 1.0, 'in': 2.0, 'purchased': 1.0, 'it': 2.0, 'mail': 1.0, 'this': 2.0, 'a': 1.0, 'party': 1.0, 'product': 1.0, 'recieved': 2.0, 's': 1.0, 'i': 5.0, '1st': 1.0, 'birthday': 1.0, 'am': 1.0, 'as': 1.0, 'timely': 1.0, 'son': 1.0, 'very': 1.0, 'and': 1.0, 'pleased': 1.0, 'colors': 1.0, 'vibrant': 1.0}
Word element => {'of': 1.0, 'just': 1.0, 'recomend': 1.0, 'definately': 1.0, 'cute': 1.0, 'are': 1.0, 'aware': 1.0, 'material': 1.0, 'fitting': 1.0, 'thing': 1.0, 'no': 1.0, 'absolutely': 1.0, 'gear': 1.0, 'who': 1.0, 'old': 1.0, 'very': 2.0, 'sizing': 2.0, '2014': 1.0, 'be': 4.0, 'to': 1.0, 'soon': 2.0, 'and': 4.0, 'nice': 1.0, 'big': 1.0, '1': 3.0, 'months': 2.0, 'seuss': 1.0, '12': 1.0, 'she': 1.0, 'looks': 1.0, '2years': 1.0, 'they': 2.0, 'into': 1.0, 'rocking': 1.0, 'next': 1.0, 'so': 2.0, '3t': 1.0, 'wear': 1.0, 'already': 1.0, 'these': 1.0, 'is': 4.0, 'till': 1.0, 'more': 1.0, 'the': 6.0, 'on': 1.0, 'dr': 1.0, 'there': 1.0, 'baught': 1.0, 'year': 2.0, '4t': 2.0, 'for': 2.0, 'avid': 1.0, 'purchase': 1.0, 'my': 2.0, 'dust': 1.0, 'fans': 1.0, 'them': 2.0, 'super': 2.0, 'would': 2.0, 'ok': 1.0, 'late': 1.0, 'this': 1.0, 'ordered': 1.0, 'early': 1.0, 'in': 2.0, 'anytime': 1.0, '2': 3.0, 'but': 1.0, 'will': 2.0, 'like': 1.0, '4': 1.0, 'fan': 2.0, 'i': 3.0, 'thinking': 1.0, 'collecting': 1.0, 'way': 1.0, 'technically': 1.0, 'closet': 1.0}
Word element => {'shipping': 1.0, 'fast': 1.0, 'olds': 1.0, 'yr': 1.0, 'soft': 1.0, 'play': 1.0, 'design': 1.0, 'for': 1.0, 'jr': 1.0, 'graphic': 1.0, 'price': 1.0, 'colors': 1.0, 'shirt': 1.0, 'suessical': 1.0, 'my': 1.0, 't': 1.0, 'great': 4.0, 'on': 1.0, 'is': 1.0, 'really': 1.0, 'quality': 1.0, 'stage': 1.0, 'and': 2.0, 'washes': 1.0, 'material': 1.0, 'bright': 1.0, 'a': 1.0, 'well': 1.0, '5': 1.0, 'this': 1.0, 'looked': 1.0}
Word element => {'extra': 1.0, 'again': 1.0, 'thanks': 1.0, 'pleased': 1.0, 'very': 1.0, 'still': 1.0, 'size': 1.0, 'bit': 1.0, 'closes': 1.0, 'a': 1.0, 'came': 1.0, 'they': 1.0, 'just': 1.0, 'that': 1.0, 'wish': 2.0, 'my': 1.0, 'for': 2.0, 'young': 1.0, 'i': 4.0, 'to': 1.0, 'had': 1.0, 'was': 1.0, 'sister': 1.0, 'this': 1.0, 'certainly': 1.0, 's': 1.0, 'hugs': 2.0, 'lots': 1.0, 'of': 1.0, 'them': 1.0, 'the': 1.0, 'these': 1.0, 'tees': 1.0, 'me': 1.0, 'and': 2.0, 'kids': 1.0, 'when': 2.0, 'gave': 2.0, 'm': 1.0, 'grateful': 1.0}
Word element => {'child': 1.0, 'for': 1.0, 'like': 1.0, 'when': 1.0, 'i': 1.0, 'my': 1.0, 'the': 2.0, 'his': 2.0, 'put': 1.0, 'dr': 1.0, 'to': 2.0, 'seuss': 1.0, 'on': 1.0, 'has': 2.0, 'grandson': 1.0, 'iron': 1.0, 'read': 1.0, 'him': 1.0, 'he': 1.0, 'it': 1.0, 'shirt': 2.0, 'good': 1.0, 'loves': 1.0, 'books': 2.0, 'and': 2.0, 'a': 2.0, 'small': 1.0, 'wear': 1.0, 'priceand': 1.0}
Word element => {'fast': 1.0, 'came': 1.0, 'for': 1.0, 'what': 1.0, 'exactly': 1.0, 'looking': 1.0, 'size': 1.0, 'perfect': 1.0, 'in': 1.0, 'bought': 1.0, 'very': 1.0, 'as': 1.0, 'shirt': 1.0, 'find': 1.0, 'its': 1.0, 'to': 1.0, 'needed': 1.0, 'store': 1.0, 'happy': 1.0, 'twins': 1.0, 'so': 1.0, 'it': 1.0, 'this': 1.0, 'that': 1.0, 'were': 2.0, 'we': 4.0, 'have': 2.0, 'thing': 2.0, 'at': 1.0, 'not': 1.0, 'the': 3.0, '2': 1.0, 'but': 1.0, 'they': 1.0, 'did': 1.0, 'and': 1.0, '1': 1.0}
Word element => {'highly': 1.0, 'in': 1.0, 'out': 1.0, 'breaking': 1.0, 'also': 1.0, 'creams': 1.0, 'rash': 1.0, 'messy': 1.0, 'need': 1.0, 'no': 2.0, 'crinkly': 1.0, 'home': 1.0, 'pampers': 1.0, 'fine': 1.0, 'is': 1.0, 'at': 1.0, 'was': 1.0, 'either': 1.0, 'had': 1.0, 'from': 1.0, 'while': 1.0, 'route': 1.0, 'me': 1.0, 'those': 1.0, 'not': 1.0, 'used': 1.0, 'were': 1.0, 'leak': 1.0, 'rashes': 1.0, 'the': 3.0, 'my': 1.0, 're': 1.0, 'allergic': 1.0, 'go': 1.0, 'we': 1.0, 'a': 1.0, 'recommended': 1.0, 'well': 1.0, 'this': 2.0, 'kids': 1.0, 'by': 1.0, 'babies': 1.0, 'cloth': 1.0, 'i': 1.0, 'traveling': 1.0, 'contain': 1.0, 'and': 4.0, 'any': 1.0, 'all': 1.0, 'to': 2.0, 'as': 1.0, 'price': 1.0, 'both': 1.0, 'best': 2.0, 'but': 1.0, 'required': 1.0, 'disposable': 1.0, 'one': 1.0, 've': 1.0, 'hives': 1.0, 'far': 1.0, 'they': 2.0, 'for': 1.0, 'fit': 1.0, 'of': 3.0, 'messes': 1.0, 'keeps': 1.0, 'never': 1.0, 'stiff': 1.0, 'or': 1.0}
Word element => {'this': 1.0, 'definitely': 1.0, 'enough': 1.0, 'soon': 1.0, 'overnight': 1.0, 'because': 1.0, 'her': 1.0, 'does': 1.0, 'if': 1.0, 'change': 1.0, 'leaks': 1.0, 'recommend': 1.0, 'she': 1.0, 'rarely': 1.0, 'over': 1.0, 'and': 2.0, '6mos': 1.0, 'didn': 1.0, 'little': 1.0, 'been': 1.0, 'a': 1.0, 'daughter': 1.0, 'brand': 3.0, 've': 1.0, 'i': 4.0, 'must': 1.0, 'say': 1.0, 'that': 1.0, 'using': 1.0, 'for': 1.0, 'love': 1.0, 'compared': 1.0, 'its': 1.0, 'to': 1.0, 'name': 1.0, 'diaper': 2.0, 't': 1.0, 'these': 2.0, 'the': 1.0, 'my': 1.0, 'diapers': 1.0}
Word element => {'bigger': 1.0, 'will': 1.0, 'bag': 1.0, 'lunch': 1.0, 'next': 1.0, 'points': 1.0, 'good': 1.0, 'because': 1.0, 'just': 1.0, 'inserts': 1.0, 'the': 1.0, 'carrying': 1.0, 'others': 1.0, 'this': 1.0, 'it': 6.0, 'small': 1.0, 'have': 2.0, 'reusable': 1.0, 'too': 1.0, 'and': 2.0, 'out': 1.0, 'convenience': 1.0, 'couple': 1.0, 'be': 2.0, 'taking': 1.0, 'mentioned': 1.0, 'we': 2.0, 't': 2.0, 's': 4.0, 'a': 3.0, 'so': 1.0, 'bit': 1.0, 'use': 1.0, 'containers': 2.0, 'instead': 1.0, 'got': 1.0, 'even': 1.0, 'of': 2.0, 'packaging': 1.0, 'but': 1.0, 'toddler': 1.0, 'doesn': 1.0, 'trouble': 1.0, 'don': 1.0, 'our': 1.0, 'as': 1.0, 'any': 1.0, 'send': 1.0, 'still': 1.0, 'after': 1.0, 'cute': 1.0, 'drink': 1.0, 'barely': 1.0, 'may': 1.0, 'fits': 1.0, 'my': 1.0}
Word element => {'quickly': 1.0, 'up': 1.0, 'removable': 1.0, 'are': 1.0, 'fills': 1.0, 'that': 1.0, 'has': 1.0, 'but': 2.0, 'box': 1.0, 'cute': 1.0, 'child': 1.0, 's': 1.0, 'little': 1.0, 'prior': 1.0, 'very': 2.0, 'and': 2.0, 'really': 1.0, 'lunch': 1.0, 'is': 3.0, 'deep': 1.0, 'this': 1.0, 'it': 3.0, 'the': 1.0, 'small': 1.0, 'so': 1.0, 'a': 1.0, 'check': 1.0, 'dimensions': 1.0, 'to': 1.0, 'sections': 1.0, 'purchase': 1.0, 'nice': 1.0}
Word element => {'overall': 1.0, 'bottles': 1.0, 'bag': 1.0, 'insulated': 1.0, 'a': 1.0, 'as': 1.0, 'very': 1.0, 'cute': 1.0, 'great': 1.0, 'oldest': 1.0, 'use': 1.0, 'well': 1.0, 'daughter': 1.0, 'for': 2.0, 'bought': 1.0, 'made': 1.0, 'my': 1.0, 'product': 1.0, 'to': 1.0}
Word element => {'us': 1.0, 'worked': 1.0, 'but': 1.0, 'environmentally': 1.0, 'better': 2.0, 'brand': 1.0, 'honest': 1.0, 'liking': 1.0, 'breastfed': 1.0, 'solids': 1.0, 'before': 1.0, 'months': 1.0, 'several': 1.0, 'using': 1.0, 'were': 2.0, 'about': 1.0, 'talking': 1.0, 'isn': 1.0, 'really': 1.0, 'sometimes': 1.0, 'solid': 1.0, 'that': 2.0, 'know': 1.0, 'i': 2.0, 'now': 2.0, '2013': 1.0, 'it': 3.0, 'she': 4.0, 'sitting': 2.0, 'or': 1.0, 'on': 1.0, 'ended': 1.0, 'laying': 1.0, 'usually': 1.0, 'maybe': 1.0, 'anything': 1.0, 'was': 3.0, 'clothes': 1.0, 'onto': 1.0, 'out': 1.0, 'to': 3.0, 'your': 1.0, 'any': 1.0, 'a': 3.0, 'then': 1.0, 'we': 4.0, 'conscious': 1.0, 'ago': 1.0, 't': 3.0, 'up': 4.0, 'over': 1.0, 'child': 1.0, 'so': 3.0, 'time': 1.0, 'doesn': 2.0, 'exclusively': 1.0, 'back': 4.0, 'even': 1.0, 'eating': 1.0, 'okay': 1.0, 'chute': 1.0, 'used': 1.0, 'and': 4.0, 'much': 2.0, 'do': 1.0, 'diapers': 5.0, 'are': 3.0, 'my': 3.0, 'have': 2.0, 'is': 4.0, 'at': 2.0, 'not': 2.0, 'acts': 1.0, 'poops': 2.0, 'next': 1.0, 'other': 1.0, 'all': 3.0, 'ever': 1.0, 'they': 3.0, 'avoid': 1.0, 'daughter': 3.0, 'pee': 1.0, 'as': 1.0, 'diaper': 1.0, 'comes': 1.0, 'these': 7.0, 'successfully': 1.0, 'seem': 1.0, 'than': 1.0, 'matter': 1.0, 'either': 1.0, 'had': 1.0, 'worst': 1.0, 'position': 1.0, 'in': 1.0, 'older': 1.0, 'absorb': 2.0, 'edit': 1.0, 'what': 3.0, 'when': 2.0, 'things': 1.0, 'push': 1.0, 'you': 4.0, '11': 1.0, 'right': 1.0, 'stain': 1.0, 'nurtured': 1.0, 'bottle': 1.0, 'this': 1.0, 'problem': 1.0, 'with': 3.0, 'mess': 1.0, 'otherwise': 1.0, 'still': 1.0, 'every': 1.0, 'if': 3.0, 'by': 3.0, 'nature': 1.0, 'could': 1.0, 'will': 1.0, 'like': 1.0, 'poop': 4.0, 'mean': 2.0, 'packages': 1.0, 'should': 1.0, 'looser': 1.0, 'remover': 1.0, 'come': 1.0, 'the': 6.0, 'of': 1.0, 'for': 2.0, 'never': 1.0, 'her': 2.0, 'use': 1.0, 'costs': 1.0, '5': 1.0}
Word element => {'long': 1.0, 'very': 1.0, 'last': 1.0, 'price': 1.0, 'will': 1.0, 'worth': 1.0, 'well': 1.0, 'time': 1.0, 'minimal': 1.0, 'investment': 1.0, 'a': 3.0, 'i': 1.0, 'awesome': 1.0, 'had': 1.0, 'to': 1.0, 'upgrade': 2.0, 'the': 2.0, 'great': 1.0, 'it': 2.0, 'wheel': 1.0, 'liners': 1.0, 'was': 2.0, 'but': 1.0}
Word element => {'work': 1.0, 'away': 1.0, 'home': 1.0, 'not': 1.0, 'will': 1.0, 'know': 1.0, 'am': 1.0, 'when': 2.0, 'especially': 1.0, 'us': 1.0, 'tool': 1.0, 'incredibly': 1.0, 'an': 1.0, 'has': 1.0, 'time': 1.0, 'breastpump': 1.0, 'a': 2.0, 'was': 1.0, 'at': 2.0, 'gentle': 2.0, 'pretty': 1.0, 'if': 1.0, 'breasts': 1.0, 'stop': 1.0, 'milk': 1.0, 'and': 2.0, 'very': 1.0, 'the': 3.0, 'need': 1.0, 'session': 1.0, 'only': 1.0, 'moving': 1.0, 'with': 1.0, 'helpful': 2.0, 'are': 2.0, 'for': 2.0, 'one': 1.0, 'comfortable': 1.0, 'finger': 1.0, 'be': 1.0, 'suction': 1.0, 'pumping': 2.0, 'two': 1.0, 'i': 6.0, 'simplisse': 1.0, 'or': 2.0, 'to': 4.0, 'cups': 1.0, 'enough': 1.0, 'been': 1.0, 'that': 1.0, 'even': 1.0, 'have': 1.0, 'it': 2.0, 'mid': 1.0, 'pump': 2.0, 'easy': 1.0, 'takes': 1.0, 'them': 2.0, 'clean': 1.0, 'my': 1.0, 'this': 1.0, 'soft': 1.0, 'found': 1.0, 'release': 1.0, 'pieces': 1.0}
Word element => {'help': 1.0, 'who': 1.0, 'there': 1.0, 'parts': 1.0, 'replacement': 1.0, 'is': 2.0, 'side': 1.0, 'other': 1.0, 'of': 1.0, 'connection': 1.0, 'it': 1.0, 'with': 2.0, 'which': 1.0, 'using': 1.0, 'one': 3.0, 'i': 6.0, 'just': 1.0, 'me': 1.0, 'cords': 1.0, 'not': 1.0, 'because': 1.0, 'was': 1.0, 'to': 3.0, 'the': 5.0, 'm': 1.0, 'happy': 1.0, 'my': 1.0, 'pumps': 1.0, 'can': 1.0, 'but': 1.0, 'and': 3.0, 'works': 1.0, 'only': 1.0, 'do': 1.0, 'breast': 1.0, 'won': 1.0, 'on': 1.0, 'received': 1.0, 'pump': 2.0, 'made': 1.0, 'improperly': 1.0, 't': 1.0, 's': 1.0, 'air': 1.0, 'in': 1.0, 'need': 3.0, 'return': 1.0, 'item': 1.0, 'difficult': 1.0, 'still': 1.0, 'anyone': 1.0, 'be': 1.0, 'able': 1.0, 'started': 1.0, 'baby': 1.0, 'let': 1.0, 'latch': 1.0, 'so': 1.0, 'everything': 1.0}
Word element => {'would': 1.0, 'recommend': 1.0, 'was': 1.0, 'had': 1.0, 'comes': 1.0, 'using': 1.0, 'product': 1.0, 'for': 1.0, 'however': 1.0, 'pumping': 1.0, 'of': 2.0, 'lots': 1.0, 'baby': 1.0, 'heard': 1.0, 'stories': 1.0, 'i': 6.0, 'with': 2.0, 'time': 1.0, 'the': 3.0, 'reflux': 1.0, 'comfortable': 1.0, 'great': 1.0, 'during': 2.0, 'use': 1.0, 'breast': 1.0, 'this': 3.0, 'pain': 1.0, 'fed': 1.0, 'to': 1.0, 'cups': 1.0, 'and': 2.0, 'stopped': 1.0, 'felt': 1.0, 'about': 1.0, 'no': 1.0, 'assembly': 1.0, 'pump': 2.0, 'easy': 1.0, 'needed': 1.0, 'quite': 1.0, 'pains': 1.0, 'acid': 1.0, 'a': 1.0, 'others': 1.0, 'carrying': 1.0, 'because': 1.0, 'short': 1.0, 'bag': 1.0, 'my': 1.0, 'pleased': 1.0, 'special': 1.0, 'enjoyed': 1.0, 'formula': 1.0}
Word element => {'worth': 1.0, 'definitely': 1.0, 'provides': 1.0, 'flexibility': 1.0, 'need': 1.0, 'want': 1.0, 'who': 1.0, 'pumping': 1.0, 'breastfeeding': 1.0, 'overall': 1.0, 'deal': 1.0, 'big': 1.0, 'not': 1.0, 'use': 1.0, 'try': 1.0, 'three': 1.0, 'fourth': 1.0, 'my': 1.0, 'd': 1.0, 'i': 6.0, 'outside': 1.0, 'while': 1.0, 'had': 3.0, 'was': 1.0, 'moms': 2.0, 'and': 4.0, 'child': 1.0, 'on': 1.0, 'much': 3.0, 'put': 1.0, 'is': 4.0, 'more': 2.0, 'level': 1.0, 'nursing': 1.0, 'busy': 1.0, 'investment': 1.0, 'comfortable': 1.0, 'for': 3.0, 'love': 1.0, 'pieces': 1.0, 'to': 5.0, 'high': 1.0, 'parts': 1.0, 'm': 1.0, 'in': 2.0, 'so': 1.0, 'know': 1.0, 'wish': 1.0, 'this': 3.0, 'a': 4.0, 's': 2.0, 'go': 1.0, 'pump': 3.0, 'get': 1.0, 'with': 1.0, 'it': 6.0, 'cup': 1.0, 'case': 1.0, 'breast': 2.0, 'that': 2.0, 'some': 1.0, 'never': 1.0, 'setting': 1.0, 'lots': 1.0, 'choice': 1.0, 'you': 2.0, 'does': 1.0, 'find': 2.0, 'fits': 1.0, 'all': 1.0, 'other': 1.0, 'anything': 1.0, 'pumps': 1.0, 'past': 1.0, 'but': 2.0, 'softer': 1.0, 've': 1.0, 'something': 1.0, 'used': 1.0, 'before': 1.0, 'noise': 1.0, 'compression': 1.0, 'take': 2.0, 'suction': 1.0, 'from': 1.0, 'feels': 1.0, 'running': 1.0, 'practice': 1.0, 'right': 1.0, 'hang': 1.0, 'perfectly': 1.0, 'black': 1.0, 'there': 2.0, 'first': 1.0, 'are': 2.0, 'great': 2.0, 'carrying': 1.0, 'improve': 1.0, 'different': 1.0, 'options': 1.0, 'if': 1.0, 'than': 2.0, 'apart': 1.0, 'seems': 1.0, 'also': 1.0, 'nice': 1.0, 'little': 1.0, 'natural': 1.0, 'the': 14.0, 'of': 2.0, 'once': 1.0, 'together': 1.0, 'cleaning': 1.0}
Word element => {'try': 1.0, 'company': 1.0, 'going': 1.0, 'am': 1.0, 'again': 1.0, 'actually': 1.0, 'times': 1.0, 'lot': 1.0, 'a': 1.0, 'fit': 1.0, 'of': 2.0, 'two': 1.0, 'no': 1.0, 'is': 1.0, 'much': 1.0, 'to': 5.0, 'but': 1.0, 'because': 1.0, 'just': 1.0, 'liked': 1.0, 'comfortable': 1.0, 'need': 1.0, 'suction': 1.0, 'snug': 1.0, 'i': 4.0, 'better': 1.0, 'lack': 1.0, 'replacement': 1.0, 'worked': 2.0, 'as': 2.0, 'very': 1.0, 'parts': 2.0, 'due': 1.0, 'they': 1.0, 'time': 1.0, 'pump': 1.0, 'it': 3.0, 'this': 1.0, 'the': 4.0, 't': 1.0, 'and': 1.0, 'get': 2.0, 'contact': 1.0, 'little': 1.0, 'wish': 1.0, 'milk': 1.0, 'don': 1.0}
Word element => {'buy': 1.0, 'don': 1.0, 'few': 1.0, 'down': 1.0, 'newborn': 1.0, 't': 1.0, 'a': 3.0, 'have': 2.0, 'many': 1.0, '10': 1.0, 'then': 1.0, 'minutes': 2.0, '5': 1.0, 'takes': 2.0, 'chance': 1.0, 'putting': 1.0, 'that': 2.0, 'top': 1.0, 'put': 1.0, 'on': 1.0, 'waste': 1.0, 'is': 3.0, 'help': 1.0, 'done': 1.0, 'me': 1.0, 'too': 1.0, 'and': 3.0, 'parts': 1.0, 'ounce': 1.0, 'precious': 1.0, 'it': 4.0, 'this': 3.0, 'thing': 3.0, 'has': 2.0, 'get': 2.0, 'pump': 2.0, 'time': 2.0, 'good': 1.0, 'read': 1.0, 'the': 5.0, 'washing': 1.0, 'labor': 1.0, 'for': 1.0, 'cheap': 1.0, 'huge': 1.0, 'decided': 1.0, 'from': 1.0, 'all': 1.0, 'to': 2.0, 'my': 3.0, 'purchase': 1.0, 'induce': 1.0, 'reviews': 1.0, 'since': 1.0, 'baby': 1.0, 'medela': 1.0, 'arrived': 1.0, 'i': 3.0, 'junk': 1.0, 'sometimes': 1.0, 'only': 2.0, 'works': 1.0, 'even': 1.0, 'does': 1.0, 'of': 3.0, 'together': 1.0, 'quit': 1.0, 'hand': 1.0, 'you': 2.0, 'barely': 1.0, 'when': 2.0, 'money': 1.0, 'most': 1.0, 'work': 1.0, 'an': 1.0, 'each': 1.0, 'use': 1.0, 'breast': 1.0}
Word element => {'pumps': 1.0, 'factor': 1.0, 'up': 1.0, 'make': 1.0, 'enough': 1.0, 'before': 1.0, '4oz': 1.0, 'oz': 1.0, '12': 1.0, 'results': 1.0, 'again': 1.0, 'clean': 2.0, 'really': 1.0, 'difficult': 1.0, 'design': 1.0, 'know': 1.0, 'suspect': 1.0, 'another': 1.0, 'leave': 1.0, 'as': 1.0, 'haven': 1.0, 'monday': 1.0, 'on': 1.0, 'tomorrow': 1.0, 'get': 3.0, 'mail': 1.0, 'kit': 1.0, 'express': 1.0, 'collection': 1.0, 'time': 1.0, 'new': 1.0, 'sending': 1.0, 'are': 1.0, 'said': 2.0, 'pumping': 1.0, 'how': 2.0, 'questions': 1.0, 'they': 3.0, 'suction': 2.0, 'and': 6.0, 'compare': 1.0, 'nothing': 1.0, 'have': 2.0, 'very': 2.0, 'morning': 1.0, 'worked': 1.0, 'going': 2.0, 'a': 9.0, 't': 3.0, 's': 3.0, 'disassemble': 1.0, 'could': 1.0, 'always': 2.0, 'has': 3.0, 'since': 1.0, 'great': 1.0, 'costumer': 3.0, 'regularly': 1.0, 'it': 8.0, 'month': 1.0, 'bunch': 1.0, 'engorgement': 1.0, 'this': 5.0, 'brown': 3.0, 'm': 1.0, 'in': 4.0, 'to': 10.0, 'had': 3.0, 'hard': 1.0, 'work': 4.0, 'write': 1.0, 'but': 5.0, 'back': 1.0, 'about': 3.0, 'don': 2.0, 'for': 5.0, 'using': 3.0, 'inconvenience': 1.0, 'well': 2.0, 'i': 22.0, 'two': 1.0, 'case': 1.0, 'been': 3.0, 'that': 1.0, 'because': 2.0, 'assemble': 2.0, 'than': 3.0, 'take': 1.0, 'then': 1.0, 'difference': 1.0, 'reviews': 1.0, 'dr': 3.0, 'usually': 1.0, 'amazing': 1.0, 'pump': 13.0, 'which': 1.0, 'good': 2.0, 'entirely': 1.0, 'supply': 2.0, 'asked': 1.0, 'service': 3.0, 've': 3.0, 'normally': 1.0, 'begin': 1.0, 'complicated': 1.0, 'son': 1.0, 'with': 8.0, 'manual': 3.0, 'o': 1.0, 'makes': 1.0, 'keep': 1.0, 'did': 2.0, 'use': 1.0, 'hospital': 3.0, 'ameda': 1.0, 'can': 1.0, 'so': 2.0, 'etc': 1.0, 'day': 3.0, 'grade': 1.0, 'after': 2.0, 'me': 5.0, 'my': 5.0, 'was': 3.0, 'born': 1.0, 'almost': 1.0, 'emergencies': 1.0, 'tubes': 1.0, 'while': 2.0, 'works': 1.0, 'much': 1.0, 'think': 1.0, 'better': 1.0, 'home': 1.0, 'by': 2.0, 'milk': 1.0, 'just': 2.0, 'far': 1.0, 'also': 1.0, 'missing': 1.0, 'more': 4.0, 'real': 1.0, 'benefit': 1.0, 'success': 1.0, 'used': 2.0, 'or': 1.0, 'called': 1.0, 'one': 2.0, 'affecting': 1.0, 'the': 12.0, 'of': 2.0, 'other': 1.0, 'an': 2.0, 'at': 3.0, 'is': 4.0, 'ring': 1.0}
Word element => {'how': 1.0, 'once': 1.0, 'put': 1.0, 'accustomed': 1.0, 'you': 2.0, 'sensation': 1.0, 'loud': 1.0, 'lotcons': 1.0, 'makes': 1.0, 'trick': 1.0, 'valve': 1.0, 'super': 1.0, 'had': 5.0, 'type': 1.0, 'so': 5.0, 'were': 1.0, 'full': 1.0, 'piece': 1.0, 'extremely': 1.0, '11': 1.0, 'directions': 1.0, 'because': 3.0, 'that': 3.0, 'incorrectly': 1.0, 'suction': 6.0, 'brushes': 1.0, 'over': 2.0, 'breast': 3.0, 'hard': 2.0, 'tricky': 1.0, 'normal': 2.0, 'out': 1.0, 'during': 1.0, 'within': 1.0, 'really': 1.0, 'realizing': 1.0, 't': 2.0, 'being': 2.0, 'later': 1.0, '10': 1.0, 'for': 5.0, 'actually': 1.0, 'electric': 1.0, 'double': 1.0, 'me': 1.0, 'controls': 2.0, 'if': 1.0, 'great': 1.0, 'fantastic': 1.0, 'not': 2.0, 'different': 3.0, 'a': 14.0, 'used': 4.0, 'become': 1.0, 'some': 2.0, 'never': 1.0, 'was': 6.0, 'cups': 2.0, 'philips': 1.0, 'let': 1.0, 'they': 1.0, 'replace': 1.0, 'to': 19.0, 'became': 2.0, 'now': 1.0, 'comfortable': 4.0, 'entire': 1.0, 'red': 1.0, 'larger': 1.0, 'pinch': 1.0, 'first': 3.0, 'my': 5.0, 'are': 3.0, 'didn': 1.0, 'switched': 2.0, 'swollen': 1.0, 'circle': 1.0, 'much': 3.0, 'getting': 2.0, 'pump': 19.0, 'easy': 2.0, 'painful': 1.0, 'more': 7.0, 'husband': 1.0, 'this': 6.0, 'know': 2.0, 'silicone': 4.0, 'nipples': 5.0, 'i': 19.0, 'putting': 1.0, 'the': 31.0, 'of': 5.0, 'can': 1.0, 'is': 2.0, 'at': 5.0, 'difficult': 1.0, 'with': 3.0, 'using': 3.0, 'constantly': 1.0, 'and': 14.0, 'just': 2.0, 'simplisse': 6.0, 'milk': 1.0, 'enlarged': 1.0, 'hospital': 1.0, 'pros': 1.0, 'takes': 2.0, 'as': 1.0, 'less': 2.0, 'realize': 1.0, 'come': 1.0, 'sized': 2.0, 'than': 5.0, 'having': 1.0, 'found': 1.0, 'have': 1.0, 'flat': 1.0, 'returned': 1.0, 'lubricants': 1.0, 'couldn': 1.0, 'pain': 3.0, 'ounces': 2.0, 'dropping': 1.0, 'increasingly': 1.0, 'most': 1.0, 'back': 1.0, 'company': 1.0, 'directly': 1.0, 'valves': 1.0, 'but': 8.0, 'uncomfortable': 1.0, 'sent': 1.0, 'months': 2.0, 'snapped': 1.0, 'from': 2.0, 'he': 1.0, 'traumatized': 1.0, 'been': 3.0, '2': 3.0, '3': 1.0, 'degrade': 1.0, 'down': 2.0, 'ruined': 1.0, 'one': 1.0, '5': 1.0, '8': 1.0, 'desperation': 1.0, 'pumping': 4.0, 'use': 5.0, 'speed': 2.0, 'nipple': 3.0, 'cream': 3.0, 'it': 10.0, 'be': 3.0, 'often': 1.0, 'however': 1.0, 'able': 2.0, 'comfortably': 2.0, 'glad': 1.0, 'there': 1.0, 'no': 2.0, 'clean': 1.0, 'comfort': 2.0, 'available': 1.0, 'which': 1.0, 'avent': 5.0, 'olive': 1.0, 'together': 2.0, 'in': 2.0, 'based': 2.0, 'melts': 1.0, 'oil': 3.0, 'mimics': 1.0, 'scratch': 1.0, 'make': 1.0, 'parts': 5.0, 'any': 3.0, 'on': 1.0, 'flow': 2.0, 'fast': 1.0, 'contacted': 1.0, 'louder': 1.0, 'an': 1.0, 'follow': 1.0, 'collection': 1.0, 'kit': 2.0, 'free': 1.0, 'received': 1.0, 'holding': 1.0, 'exactly': 1.0, 'days': 1.0, 'breastcups': 1.0, 'without': 1.0, 'am': 3.0, 'by': 1.0, 'dish': 1.0, 'their': 1.0, 'engorged': 1.0, 'assumed': 1.0, 'size': 1.0, 'has': 2.0, 'everything': 1.0, 'them': 2.0, 'started': 3.0, 'couple': 1.0, 'gentle': 3.0, 'weeks': 1.0, 'when': 2.0, 'loving': 1.0, 'y': 1.0, 'closely': 1.0, 'baby': 1.0, 'ever': 1.0, 's': 2.0, 'feeling': 1.0, 'awkward': 1.0, 'offers': 1.0, 'white': 1.0, 'little': 3.0, 'sure': 1.0, 'removing': 2.0, 'accidentally': 1.0, 'off': 1.0, 'time': 7.0, 'did': 1.0, 'top': 1.0, 'lid': 1.0}
Word element => {'thing': 1.0, 'little': 1.0, 'very': 1.0, 'bad': 1.0, 'that': 3.0, 'negative': 1.0, 'trouble': 1.0, 'of': 1.0, 'on': 1.0, 'make': 1.0, 'havibg': 1.0, 'thy': 1.0, 'always': 1.0, 'were': 1.0, 'parts': 1.0, 'out': 1.0, 'replacement': 1.0, 'sent': 1.0, 'they': 1.0, 'happy': 1.0, 'my': 3.0, 'cup': 1.0, 'only': 1.0, 'try': 1.0, 'loved': 1.0, 'then': 1.0, 'be': 1.0, 'all': 2.0, 'to': 3.0, 'recommend': 1.0, 'talk': 1.0, 'was': 2.0, 'is': 4.0, 'world': 1.0, 'hard': 1.0, 'it': 6.0, 'suggestions': 1.0, 'up': 1.0, 'i': 7.0, 'pump': 1.0, 'friends': 1.0, 'so': 1.0, 'time': 1.0, 'overnight': 1.0, 'used': 1.0, 'months': 1.0, 'product': 1.0, 'for': 1.0, 'loud': 1.0, 'madela': 1.0, 'the': 5.0, 's': 1.0, 'could': 1.0, 'a': 3.0, 't': 1.0, 'in': 1.0, 'itself': 1.0, 'did': 1.0, 'self': 1.0, 'know': 1.0, 'and': 4.0, 'not': 1.0, 'me': 1.0, 'never': 1.0, 'besides': 1.0, 'settings': 1.0, 'new': 1.0, 'would': 3.0, 'someone': 1.0, 'you': 2.0, 'am': 1.0, '11': 1.0, 'hurt': 1.0, 'even': 1.0, 'didn': 1.0, 'half': 1.0, 'doing': 1.0, 'based': 1.0, 'full': 1.0, 'service': 1.0, 'customer': 1.0, 'amazing': 1.0}
Word element => {'information': 1.0, 'purchase': 1.0, 'proof': 1.0, 'my': 1.0, 'ask': 1.0, 'charge': 1.0, 'needed': 1.0, 'parts': 1.0, 'all': 1.0, 'a': 1.0, 'or': 1.0, 'service': 1.0, 'company': 1.0, 'pieces': 1.0, 'on': 1.0, 'customer': 1.0, 'warranty': 1.0, 'is': 1.0, 'browns': 1.0, 'of': 3.0, 'kit': 1.0, 'dr': 1.0, 'me': 1.0, 'and': 3.0, 'even': 1.0, 'works': 1.0, 'above': 1.0, 'with': 1.0, 'this': 2.0, 'free': 1.0, 'pump': 2.0, 'they': 2.0, 'beyond': 1.0, 'i': 2.0, 'love': 1.0, 'for': 1.0, 'one': 1.0, 'had': 1.0, 'broken': 1.0, 't': 1.0, 'great': 1.0, 'the': 3.0, 'plastic': 1.0, 'didn': 1.0, 'shipped': 1.0}
Word element => {'stars': 1.0, 'zero': 1.0, 's': 1.0, 'give': 1.0, 'o': 1.0, 'their': 1.0, 'on': 1.0, 'waste': 1.0, 'don': 1.0, 'money': 2.0, 'my': 1.0, 'suggest': 1.0, 'i': 5.0, 'does': 1.0, 'anyone': 2.0, 'want': 1.0, 'is': 1.0, 'not': 2.0, 'back': 1.0, 'work': 1.0, 'at': 1.0, 'get': 1.0, 'horrible': 1.0, 'do': 1.0, 'product': 2.0, 'to': 2.0, 't': 1.0, 'the': 1.0, 'pump': 1.0, 'a': 1.0, 'return': 1.0, 'well': 1.0, 'all': 1.0, 'it': 2.0, 'this': 2.0, 'only': 2.0, 'ordering': 1.0, 'wish': 2.0, 'p': 1.0, 'could': 2.0}
Word element => {'on': 1.0, 'tries': 1.0, 'first': 1.0, 'yes': 1.0, 'with': 1.0, 'in': 1.0, 'but': 1.0, 'can': 1.0, 'faster': 1.0, 'double': 1.0, 'else': 1.0, 'why': 1.0, 'mom': 1.0, 'are': 3.0, 'huge': 1.0, 'there': 1.0, 'so': 1.0, 'isn': 2.0, 'compressions': 1.0, 'be': 2.0, 'probably': 1.0, 'and': 3.0, 'to': 2.0, 'minutes': 1.0, 'was': 2.0, 'min': 1.0, '5oz': 1.0, '20': 1.0, 'just': 1.0, 'the': 10.0, 'luck': 1.0, 'working': 2.0, 'took': 1.0, 'i': 4.0, 'price': 1.0, 'over': 1.0, 'don': 2.0, 'for': 4.0, 'afraid': 2.0, 'very': 1.0, 'it': 6.0, 'soft': 1.0, 'painful': 1.0, '30': 1.0, 'this': 2.0, 'not': 1.0, 'me': 2.0, '3oz': 1.0, 'n': 1.0, 'once': 1.0, 'of': 4.0, 'disappointed': 1.0, 'get': 7.0, 'pump': 8.0, 'which': 1.0, 'hand': 1.0, 'if': 2.0, 'same': 1.0, 'friend': 1.0, 'amount': 1.0, 'good': 1.0, 'different': 1.0, 'her': 1.0, 'unless': 1.0, 'you': 6.0, '15': 1.0, 'need': 2.0, 'gave': 1.0, 'quickly': 1.0, 'medela': 3.0, 's': 2.0, 'could': 1.0, 't': 4.0, 'a': 4.0, 'go': 1.0, 'is': 2.0, 'mommas': 1.0, 'breast': 3.0, 'wonderful': 1.0, 'couple': 1.0, 'out': 1.0, 'breastpumping': 1.0, 'would': 2.0}
Word element => {'brown': 1.0, 'dr': 1.0, 'd': 1.0, 'plug': 1.0, 'had': 1.0, 'cool': 1.0, 'thing': 1.0, 'production': 1.0, 'me': 1.0, 'best': 1.0, 'setting': 1.0, 'intense': 1.0, 'on': 1.0, 'use': 1.0, 'pumping': 1.0, 'sure': 1.0, 'make': 1.0, 'double': 1.0, 'much': 1.0, 'do': 2.0, 'been': 1.0, 'has': 2.0, 'customer': 1.0, 'than': 1.0, 'something': 1.0, 'parts': 1.0, 'needs': 1.0, 'check': 1.0, '4oz': 1.0, 'which': 1.0, 'made': 1.0, 'that': 4.0, 'how': 1.0, 'correctly': 1.0, 'plastic': 2.0, 'bottles': 2.0, 'or': 2.0, 'another': 2.0, 'storage': 2.0, 'anyone': 1.0, 'and': 4.0, 'ease': 1.0, 'when': 1.0, 'beginning': 1.0, 'snaps': 2.0, 'tried': 1.0, 'if': 1.0, 'service': 1.0, 'still': 1.0, 'bigger': 1.0, 'gentleness': 1.0, 'don': 1.0, 'up': 2.0, 'efficient': 1.0, 'over': 1.0, 'overall': 1.0, 'like': 2.0, 'into': 2.0, 'tote': 1.0, 'where': 1.0, 'especially': 1.0, 'perfectly': 1.0, 'down': 1.0, 'other': 1.0, 'fits': 1.0, 'all': 5.0, 'to': 6.0, 'very': 2.0, 'have': 3.0, 'bag': 1.0, 'of': 2.0, 'the': 22.0, 'hands': 1.0, 'love': 3.0, 'for': 3.0, 'admit': 1.0, 'wise': 1.0, 'comes': 1.0, 'at': 1.0, 'is': 5.0, 'product': 1.0, 'products': 2.0, 'tender': 1.0, 'well': 1.0, 'i': 14.0, 'broke': 2.0, 'pump': 6.0, 'battery': 1.0, 'really': 2.0, 'too': 1.0, 'one': 1.0, 'only': 1.0, 'wish': 1.0, 'eh': 1.0, 'it': 9.0, 'in': 4.0, 'covert': 1.0, 'white': 1.0, 'quite': 1.0, 'can': 2.0, 'back': 1.0, 'most': 3.0, 'but': 1.0, 'be': 4.0, 'here': 1.0, 'used': 1.0, 'containers': 1.0, 'right': 2.0, 'replacement': 1.0, 'fit': 1.0, 't': 2.0, 'a': 3.0, 'could': 1.0, 'think': 2.0, 'as': 2.0, 'crazy': 1.0, 'bra': 2.0, 'you': 1.0, 'things': 2.0, 'loud': 1.0, 'would': 1.0, 'either': 1.0, 'working': 1.0, 'are': 2.0, 'option': 1.0, 'great': 1.0, 'improve': 1.0, 'bottle': 2.0, 'this': 2.0, '8oz': 1.0, 'few': 1.0, 'not': 2.0, 'free': 1.0, 'however': 2.0, 'aren': 1.0, 'they': 2.0, 'ended': 2.0, 'honestly': 1.0, 'buying': 1.0, 'recommend': 1.0, 'together': 1.0, 'were': 1.0, 'piece': 3.0, 'medela': 1.0, 'almost': 1.0, 'top': 1.0}
Word element => {'brand': 1.0, 'stuck': 1.0, 'now': 1.0, 'warn': 1.0, 'little': 1.0, 'even': 1.0, 'for': 1.0, 'of': 1.0, 'a': 4.0, 'paid': 1.0, 'does': 1.0, 'having': 1.0, 'loud': 1.0, 'new': 1.0, 'super': 1.0, 'also': 1.0, 'being': 2.0, 'out': 1.0, 'anyone': 1.0, 'trying': 1.0, 'not': 5.0, 'ended': 1.0, 'after': 1.0, 'double': 1.0, 'reviews': 2.0, 'are': 1.0, 'hospial': 1.0, 'dr': 5.0, 'on': 2.0, 'breast': 1.0, 'i': 6.0, 'used': 2.0, 'have': 1.0, 'electric': 1.0, 'able': 2.0, 'against': 1.0, 'grade': 2.0, 'up': 1.0, 'browns': 5.0, 'is': 1.0, 'the': 8.0, 'am': 2.0, 'times': 1.0, 'bought': 1.0, 'medula': 2.0, 'well': 1.0, 'fixed': 1.0, 'several': 1.0, 'express': 2.0, 'that': 2.0, 'all': 1.0, 'as': 2.0, 'to': 3.0, 'any': 2.0, 'and': 2.0, 'milk': 2.0, 'y': 1.0, 'buying': 2.0, 'with': 3.0, 'it': 3.0, 'based': 1.0, 'this': 1.0, 'lot': 1.0, 'at': 1.0, 'nd': 1.0, 'unit': 1.0, 'suspicious': 1.0, 'or': 1.0, 'hospital': 1.0, 'somehow': 1.0, 'get': 1.0, 'pump': 1.0, 'work': 2.0, 'money': 1.0, 'false': 1.0, 'can': 1.0, 'but': 1.0}
Word element => {'bothering': 1.0, 'during': 1.0, 'valuable': 1.0, 'hassle': 1.0, 'avoid': 1.0, 'definitely': 1.0, 'loses': 1.0, 'wonderful': 1.0, 'life': 1.0, 'medela': 2.0, 'refund': 1.0, 'partial': 1.0, 'precious': 1.0, 'receive': 1.0, 'did': 1.0, 'sent': 1.0, 'line': 1.0, 'bottom': 1.0, 'but': 1.0, '8': 1.0, 'for': 1.0, 'with': 4.0, 'stuck': 1.0, 'only': 1.0, 'nice': 1.0, 'ton': 1.0, 'best': 1.0, 'initially': 1.0, 'been': 2.0, 'pumper': 1.0, 'many': 2.0, 'never': 2.0, 'gentle': 1.0, 'parts': 2.0, 'pick': 1.0, 'dumb': 1.0, 'waste': 1.0, 'exactly': 1.0, 'product': 2.0, 'able': 1.0, 'you': 4.0, 'times': 1.0, 'reason': 2.0, 'including': 1.0, 'liked': 1.0, 'ones': 1.0, 'too': 1.0, 'and': 9.0, 'case': 1.0, 'cups': 1.0, 'to': 8.0, 'first': 1.0, 'bad': 1.0, 'are': 2.0, '6': 1.0, 'loved': 1.0, 'looked': 1.0, 'this': 5.0, 'buy': 1.0, 'day': 1.0, 'i': 8.0, 'that': 3.0, 'problems': 1.0, 'worthless': 1.0, 'easy': 1.0, 'know': 1.0, 'which': 1.0, 'carrying': 1.0, 'way': 2.0, 'huge': 1.0, 'not': 2.0, 'suction': 3.0, 'be': 1.0, 'trying': 1.0, 'a': 7.0, 'losing': 1.0, 's': 2.0, 'has': 2.0, 'idea': 1.0, 'your': 3.0, 'do': 3.0, 'put': 2.0, 'yourself': 1.0, 'dr': 1.0, 'go': 1.0, 'pump': 5.0, 'get': 1.0, 'attracted': 1.0, 'right': 1.0, 'favor': 1.0, 'was': 3.0, 'there': 1.0, 'the': 8.0, 'of': 3.0, 'travel': 2.0, 'means': 1.0, 'will': 1.0, 'have': 3.0, 'must': 1.0, 'customer': 1.0, 'time': 3.0, 'wash': 1.0, 'use': 2.0, 'say': 1.0, 'importantly': 1.0, 'now': 2.0, 'almost': 1.0, 'it': 9.0, 'back': 2.0, 'together': 2.0, 'constantly': 1.0, 'so': 1.0, 'can': 1.0, 'work': 1.0, 'or': 1.0, 'service': 1.0, 'every': 2.0, 'if': 1.0, 'big': 1.0, 'very': 3.0, 'leaving': 1.0, 'me': 1.0, 'my': 1.0, 'babies': 1.0, 'more': 2.0, 'husband': 1.0, 'help': 1.0, 'weeks': 2.0, 'would': 2.0, 'is': 4.0, 'at': 1.0, 'prone': 1.0, 'brown': 1.0}
Word element => {'buy': 1.0, 'please': 2.0, 'thing': 1.0, 'one': 1.0, 'ordered': 1.0, 'matters': 1.0, '34': 2.0, 'take': 1.0, 'would': 1.0, 'such': 1.0, 'unbelievable': 1.0, 'problems': 1.0, 'and': 4.0, 'make': 1.0, 'your': 1.0, 'dr': 1.0, 'at': 1.0, 'the': 2.0, 'without': 2.0, 'item': 2.0, 'original': 2.0, 'opened': 1.0, 'makeshift': 1.0, 'brown': 1.0, 'in': 2.0, 'received': 1.0, 'company': 1.0, 'my': 1.0, 'i': 3.0, 'packaging': 2.0, 'worse': 1.0, 'associates': 1.0, 'isn': 1.0, 'has': 1.0, 'assume': 1.0, 'corporation': 1.0, 'tampered': 1.0, 'newborn': 1.0, 'third': 1.0, 'receive': 1.0, 'with': 1.0, 'this': 5.0, 'it': 2.0, 'resale': 1.0, 'product': 1.0, 'mother': 1.0, 'so': 1.0, 'time': 1.0, 'rodeo': 1.0, '2': 1.0, 'safety': 1.0, 'first': 1.0, 'spoke': 1.0, 'cause': 1.0, 'code': 1.0, 'seal': 1.0, 'same': 1.0, 'if': 1.0, 'happened': 1.0, 'am': 1.0, 'you': 1.0, 'could': 1.0, 'a': 5.0, 't': 1.0, 's': 1.0, 'disgusting': 1.0, 'not': 1.0, 'that': 2.0, 'breastfeeding': 1.0, 'box': 1.0, 'been': 1.0, 'risk': 1.0, 'validation': 1.0, 'used': 1.0, 'level': 1.0, 'is': 1.0, 'second': 1.0, 'health': 2.0, 'elsewhere': 1.0, 'to': 3.0}
Word element => {'good': 1.0, 'support': 1.0, 'real': 1.0, 'talk': 1.0, 'minutes': 1.0, 'was': 2.0, 've': 2.0, 'cost': 1.0, 'breastfeeding': 1.0, 'times': 3.0, 'both': 3.0, 'm': 2.0, 'misplaced': 1.0, 'it': 1.0, 'piece': 1.0, 'about': 1.0, 'called': 1.0, 'compassionate': 1.0, 'however': 1.0, 'really': 1.0, 'kind': 1.0, 'human': 1.0, 'pump': 2.0, 'worked': 1.0, 'have': 2.0, 'other': 2.0, 'sincerely': 1.0, 'time': 1.0, 'some': 1.0, 'compare': 1.0, 'few': 1.0, 'this': 1.0, 'first': 1.0, 'to': 9.0, 'as': 2.0, 'pumps': 1.0, 'broke': 1.0, 'well': 2.0, 'i': 8.0, 'two': 1.0, 'but': 1.0, 'efficient': 1.0, 'work': 1.0, 'no': 2.0, 'gotten': 1.0, 'day': 1.0, 'and': 8.0, 'rave': 1.0, 'me': 3.0, 'not': 1.0, 'they': 2.0, 'electric': 1.0, 'mom': 1.0, 'mailed': 1.0, 'supporting': 1.0, 'a': 4.0, 'going': 2.0, 'huge': 1.0, 'seemed': 1.0, 'effective': 1.0, 'for': 1.0, 'being': 1.0, 'hear': 1.0, 'same': 1.0, 'within': 1.0, 'comfortable': 1.0, 'replaced': 1.0, 'parts': 1.0, 'is': 1.0, 'at': 1.0, 'has': 1.0, 'them': 1.0, 'she': 2.0, 'others': 1.0, 'baby': 1.0, 'ridiculously': 1.0, 'on': 1.0, 'service': 2.0, 'asked': 1.0, 'how': 1.0, 'double': 1.0, 'feeding': 1.0, 'the': 8.0, 'of': 1.0, 'now': 1.0, 'back': 1.0, 'one': 1.0, 'happy': 1.0, 'like': 1.0, 'company': 1.0, 'seem': 1.0, 'love': 1.0, 'dedicated': 1.0, 'mothers': 1.0, 'maybe': 1.0, 'that': 3.0, 'because': 1.0, 're': 1.0, 'companies': 1.0, 'customer': 2.0, 'their': 1.0}
Word element => {'stop': 1.0, 'but': 1.0, 'loud': 1.0, 'a': 1.0, 'bag': 1.0, 'of': 1.0, 'out': 1.0, 'is': 2.0, 'parts': 1.0, 'with': 1.0, 'problems': 1.0, 'had': 1.0, 'now': 1.0, 'weeks': 1.0, 'prefer': 1.0, 'at': 1.0, 'my': 1.0, 'in': 2.0, 'medela': 2.0, 'the': 7.0, 'used': 1.0, 'does': 2.0, 'simplisse': 2.0, 'that': 1.0, 'been': 1.0, 'hospital': 1.0, 'have': 3.0, 'found': 1.0, 'this': 1.0, 'it': 4.0, 'be': 1.0, 'suck': 1.0, 'feel': 1.0, 'comfortable': 1.0, 'using': 2.0, 'for': 1.0, 'pump': 6.0, 'easy': 1.0, 'little': 1.0, 'very': 1.0, 'any': 1.0, 'all': 1.0, 'to': 2.0, 'as': 2.0, 'and': 4.0, 'though': 1.0, 'me': 1.0, 'advance': 1.0, 'style': 1.0, 'not': 4.0, 'entire': 1.0, 'use': 1.0, 'breast': 2.0, 'i': 6.0, '4': 1.0, 'cover': 1.0, 'from': 1.0, 'part': 1.0, 'while': 1.0, 'when': 1.0, 'am': 1.0, 'definitely': 1.0, 'pumping': 2.0, 'almost': 1.0, 'feels': 1.0, 'if': 1.0, 'about': 1.0}
Word element => {'service': 1.0, 'also': 1.0, 'tender': 2.0, 'has': 1.0, 'pump': 1.0, 'slightly': 1.0, 'engorged': 2.0, 'after': 1.0, 'so': 1.0, 'other': 1.0, 'breasts': 2.0, 'multiple': 1.0, 'done': 1.0, 'too': 1.0, 'and': 2.0, 'the': 4.0, 'great': 1.0, 'my': 2.0, 'simplisse': 1.0, 'son': 1.0, 'breast': 3.0, 'little': 2.0, 'very': 1.0, 'gently': 1.0, 'pain': 1.0, 'a': 2.0, 'more': 1.0, 'is': 4.0, 'feeds': 1.0, 'fave': 1.0, 'one': 1.0, 'blocked': 1.0, 'favorite': 1.0, 'he': 1.0, 'with': 2.0, 'when': 1.0, 'sim': 1.0, 'pliss': 1.0, 'eacute': 1.0, 'ducts': 1.0, 'handles': 1.0, 'both': 1.0, 'than': 1.0, 'for': 1.0, 'love': 1.0, 'relieving': 1.0, 'to': 1.0, 'no': 1.0, 'customer': 1.0}
Word element => {'would': 1.0, 'little': 1.0, 'constraints': 1.0, 'use': 1.0, 'above': 1.0, 'looking': 1.0, 'parts': 4.0, 'and': 6.0, 'break': 1.0, 'couple': 1.0, 'wasn': 1.0, 'customer': 1.0, 'instantly': 1.0, 's': 1.0, 'a': 4.0, 'brown': 1.0, 'in': 1.0, 'dr': 1.0, 'put': 1.0, 'on': 1.0, 'advanced': 1.0, 'medela': 1.0, 'also': 1.0, 'this': 6.0, 'nothing': 1.0, 'i': 9.0, 'used': 2.0, 'low': 2.0, 'factor': 1.0, 'months': 1.0, '8': 1.0, 'one': 1.0, 'lot': 1.0, 'had': 3.0, 'now': 1.0, 'is': 4.0, 'more': 1.0, 'baby': 1.0, 'tweaking': 1.0, 'send': 3.0, 'them': 2.0, 'requires': 1.0, 'time': 4.0, 'can': 1.0, 'so': 2.0, 'go': 2.0, 'pump': 8.0, 'easy': 1.0, 'patience': 2.0, 'sure': 1.0, 'comfortable': 1.0, 'for': 5.0, 'the': 11.0, 'of': 4.0, 'am': 1.0, 'you': 8.0, 'style': 1.0, 'my': 1.0, 'me': 2.0, 'not': 2.0, 'most': 1.0, 'pisa': 1.0, 'comfort': 2.0, 'they': 3.0, 'no': 2.0, 'questions': 1.0, 'service': 1.0, 'turn': 1.0, 'asked': 1.0, 'if': 5.0, 'or': 2.0, 'need': 2.0, '100': 1.0, 'extra': 1.0, 'just': 1.0, 'with': 1.0, 'have': 4.0, 'frustrating': 1.0, 'there': 1.0, 'additional': 1.0, 'something': 1.0, 'complexity': 1.0, 'mom': 1.0, 'any': 1.0, 't': 1.0, 'beat': 1.0, 'cost': 1.0, 'spare': 1.0, 'cons': 1.0, 'working': 1.0, 'are': 2.0, 'old': 1.0, 'number': 1.0, 'right': 1.0, 'it': 3.0, 'some': 1.0, 'supply': 1.0, 'output': 1.0, 'quickly': 1.0, 'only': 1.0, 'complciated': 1.0, 'that': 1.0, 'was': 1.0, 'recommend': 1.0, 'together': 1.0}
Word element => {'am': 1.0, 'day': 1.0, 'of': 1.0, 'rectified': 1.0, 'cannotget': 1.0, 'so': 1.0, 'waiting': 1.0, 'you': 1.0, 'hour': 1.0, 'not': 1.0, 'for': 1.0, 'to': 1.0, 'had': 1.0, 'on': 1.0, '4': 1.0, 'i': 3.0, 'have': 1.0, 'any': 2.0, 'about': 1.0, 'this': 1.0, 'it': 2.0, 'terrible': 1.0, '24': 1.0, 'settings': 1.0, 'is': 2.0, 'time': 1.0, 'highest': 1.0, 'pump': 1.0, 'a': 2.0, 'doesnt': 1.0, 'call': 1.0, 'line': 2.0, 'days': 1.0, 'barely': 1.0, 'back': 1.0, 'work': 1.0, 'customer': 2.0, 'at': 1.0, 'currently': 1.0, 'the': 2.0, 'me': 1.0, 'issue': 1.0, 'and': 1.0, 'get': 1.0, 'service': 2.0, 'tug': 1.0}
Word element => {'one': 1.0, 'satisfied': 1.0, 'm': 1.0, 'pump': 1.0, 'not': 1.0, 'is': 1.0, 'i': 2.0, 'use': 1.0, 'easy': 1.0, 'but': 2.0, 'this': 1.0, 'only': 1.0, 'and': 1.0, 'breast': 1.0, 'before': 1.0, 'does': 1.0, 'used': 1.0, 'worh': 1.0, 'hurt': 1.0, 'assemble': 1.0, 'to': 1.0, 'a': 2.0, 'bit': 1.0, 'overall': 1.0, 'great': 1.0, 'noisy': 1.0, 'item': 1.0, 'thing': 1.0, 'have': 1.0, 'never': 1.0}
Word element => {'what': 1.0, 'like': 1.0, 'complete': 1.0, 'didn': 1.0, 'receiving': 1.0, 'charge': 1.0, 'all': 2.0, 'ship': 2.0, 'they': 3.0, 'free': 2.0, 'furthermore': 1.0, 'immediately': 1.0, 'via': 1.0, 'customer': 1.0, 'where': 1.0, 'said': 1.0, 'broken': 2.0, 'pushed': 1.0, 'morning': 1.0, 'be': 1.0, 'very': 1.0, 'pipe': 1.0, '34': 2.0, 'connect': 1.0, 'caused': 1.0, 'used': 1.0, 'part': 5.0, 'top': 1.0, 'down': 1.0, 'night': 1.0, 'meant': 1.0, 'smoothness': 1.0, 'for': 3.0, 'are': 2.0, 'those': 1.0, '1': 1.0, '6': 1.0, 'contains': 1.0, 'we': 3.0, 'small': 1.0, 'a': 5.0, 's': 5.0, 'our': 1.0, 'to': 13.0, 'online': 1.0, 'any': 1.0, 'except': 1.0, 'arrive': 1.0, 'sets': 1.0, 'it': 7.0, 'service': 2.0, 'every': 1.0, 'philips': 1.0, 'sales': 1.0, 'compared': 1.0, 'wife': 2.0, 'manual': 1.0, 'one': 4.0, 'replacement': 2.0, 't': 2.0, 'famous': 1.0, 'medela': 1.0, 'various': 1.0, 'contact': 1.0, 'there': 4.0, 'of': 1.0, 'the': 23.0, 'great': 1.0, 'avent': 1.0, 'types': 1.0, 'single': 1.0, 'at': 1.0, 'is': 10.0, 'say': 1.0, 'assemble': 3.0, 'explain': 1.0, 'more': 1.0, 'best': 2.0, 'page': 1.0, 'bottle': 2.0, 'this': 2.0, 'set': 1.0, 'pain': 2.0, 'have': 1.0, 'that': 6.0, 'because': 2.0, 'breast': 3.0, 'use': 1.0, 'different': 2.0, 'only': 1.0, 'purchase': 1.0, 'paid': 1.0, 'out': 1.0, 'well': 1.0, 'i': 4.0, 'new': 1.0, 'assembled': 1.0, 'time': 1.0, 'so': 3.0, 'pump': 12.0, 'in': 4.0, 'whole': 1.0, 'brown': 1.0, 'brands': 1.0, 'double': 4.0, 'cause': 1.0, 'found': 1.0, 'fought': 1.0, 'excitement': 1.0, 'had': 2.0, 'disappointment': 1.0, 'tedious': 1.0, 'and': 9.0, 'just': 1.0, 'why': 1.0, 'milk': 2.0, 'bet': 1.0, 'market': 1.0, 'electric': 6.0, 'before': 1.0, 'entire': 1.0, 'arranged': 1.0, 'my': 2.0, 'me': 1.0, 'replied': 1.0, 'finally': 1.0, 'express': 2.0, 'let': 1.0, 'no': 3.0, 'live': 1.0, 'ended': 1.0, 'after': 2.0, '2': 2.0, 'but': 3.0, '3': 1.0, 'shipped': 1.0, 'someone': 1.0, 'tough': 1.0, 'dr': 1.0, 'times': 1.0, 'singapore': 3.0, 'as': 3.0, 'slower': 1.0, 'always': 1.0, 'from': 3.0, 'feels': 1.0, 'side': 1.0, 'good': 1.0, 'which': 2.0, 'instead': 1.0, 'even': 1.0, 'contacted': 1.0, 'took': 1.0, 'quite': 2.0, 'expensive': 1.0, 'hard': 1.0, 'over': 1.0, 'support': 2.0, 'many': 1.0, 'she': 4.0, 'others': 1.0, 'available': 1.0, 'off': 1.0, 'tried': 3.0, 'until': 1.0, 'yes': 2.0, 'doesn': 1.0, 'smooth': 1.0, 'parts': 5.0}
Word element => {'we': 1.0, 'thay': 1.0, 'have': 1.0, 'carrier': 1.0, 'recommend': 1.0, 'favorite': 1.0, 'my': 1.0, 'highly': 1.0, 'and': 1.0, 'our': 2.0, 'i': 2.0, 'by': 1.0, 'it': 2.0, 'love': 1.0, 'son': 1.0, 'is': 1.0, 'babyhawk': 1.0, 'far': 1.0}
Word element => {'too': 1.0, 'on': 1.0, 'worked': 1.0, 'sharpies': 1.0, 'person': 1.0, 'this': 1.0, 'was': 3.0, 'exactly': 1.0, 'what': 1.0, 'i': 1.0, 'great': 1.0, 'it': 3.0, 'online': 1.0, 'in': 1.0, 'nice': 1.0, 'wanted': 1.0, 'and': 1.0, 'as': 2.0}
Word element => {'on': 1.0, 'are': 1.0, 'board': 2.0, 'name': 1.0, 'already': 1.0, 'add': 1.0, 'printed': 1.0, 'match': 1.0, 'offer': 1.0, 'they': 1.0, 'though': 1.0, 'contacting': 1.0, 'will': 1.0, 'mother': 1.0, 'picky': 1.0, 'not': 1.0, 'granted': 1.0, 'terrible': 1.0, 'want': 1.0, 'if': 2.0, 'return': 1.0, 'figured': 1.0, 'older': 1.0, 'this': 3.0, 'it': 7.0, 'my': 3.0, 'review': 1.0, 'concerned': 1.0, 'child': 3.0, 'chart': 5.0, 'said': 1.0, 'i': 12.0, 'pleased': 1.0, 'pixelated': 1.0, 'about': 1.0, 'beautiful': 1.0, 'was': 6.0, 'to': 4.0, 't': 1.0, 's': 2.0, 'a': 3.0, 'made': 1.0, 'consuming': 1.0, 'purchasing': 1.0, 'the': 7.0, 'myself': 1.0, 'that': 2.0, 'very': 1.0, 'little': 1.0, 'just': 1.0, 'and': 6.0, 'font': 1.0, 'see': 1.0, 'couldn': 1.0, 'do': 1.0, 'get': 1.0, 'numbers': 1.0, 'like': 1.0, 'manufacturer': 1.0, 'hand': 2.0, 'painted': 2.0, 'can': 1.0, 'lettering': 1.0, 'but': 2.0, 'so': 2.0, 'time': 1.0, 'am': 1.0, 'growth': 5.0, 'again': 1.0, 'quite': 1.0, 'youngest': 1.0, 'would': 3.0, 'be': 2.0, 'taller': 1.0, 'because': 2.0, 'than': 1.0, 'before': 1.0, 'picture': 1.0, 'got': 1.0, 'is': 1.0, 'finished': 1.0, 'one': 1.0, 'decided': 1.0}
Word element => {'something': 1.0, 'making': 1.0, 'business': 1.0, 'just': 1.0, 'wonderful': 1.0, 'use': 1.0, 'will': 2.0, 'ground': 1.0, 'out': 2.0, 'feet': 1.0, 'ours': 1.0, 'hung': 1.0, 'sure': 1.0, 'get': 2.0, 'great': 1.0, 'until': 1.0, 'painting': 1.0, 'close': 1.0, 'looking': 1.0, 'reason': 1.0, 'keeps': 1.0, 'huge': 1.0, 'are': 1.0, 'no': 1.0, 'wall': 1.0, 'attention': 1.0, 'piece': 1.0, 'of': 3.0, 'there': 3.0, 'recommend': 1.0, 'beautiful': 1.0, 'doesn': 1.0, 'numbers': 1.0, 'like': 2.0, 'make': 1.0, 'on': 2.0, 'your': 2.0, 'for': 1.0, 'product': 1.0, 'art': 1.0, 'love': 2.0, 'off': 1.0, 'enough': 2.0, 'you': 2.0, 'growth': 1.0, 'treasured': 1.0, 'more': 1.0, 'is': 3.0, 'say': 1.0, 'last': 1.0, 'chart': 2.0, 'might': 1.0, 'we': 1.0, 's': 4.0, 'a': 7.0, 't': 3.0, 'two': 1.0, 'i': 4.0, 'mess': 1.0, 'hanging': 1.0, 'the': 3.0, 'how': 1.0, 'much': 1.0, 'decades': 1.0, 'room': 1.0, 'it': 9.0, 'but': 1.0, 'can': 3.0, 'small': 1.0, 'have': 1.0, 'detail': 1.0, 'our': 1.0, 'to': 4.0, 'be': 3.0, 'well': 1.0, 'relegated': 1.0, 'child': 2.0, 'made': 1.0, 'or': 1.0, 'others': 1.0, 'some': 2.0, 'corner': 1.0, 'full': 1.0, 'this': 4.0, 'cutesy': 1.0, 'than': 1.0, 'because': 1.0, 'bit': 1.0, 'so': 1.0, 'and': 2.0, 'appreciate': 1.0, 'really': 1.0, 'that': 2.0}
Word element => {'perfect': 1.0, 'size': 1.0, 'and': 1.0, 'is': 1.0, 'the': 1.0, 'functional': 1.0}
Word element => {'easy': 1.0, 'makes': 1.0, 'great': 1.0, 'it': 1.0, 'looks': 1.0, 'so': 1.0, 'match': 1.0, 'i': 1.0, 'because': 1.0, 'decorating': 1.0, 'lots': 1.0, 'and': 1.0, 'like': 1.0, 'items': 1.0, 'are': 1.0, 'there': 1.0, 'that': 1.0, 'of': 1.0, 'this': 1.0, 'other': 1.0}
Word element => {'website': 1.0, 'love': 1.0, 'in': 1.0, 'fell': 1.0, 'so': 1.0, 'i': 2.0, 'when': 1.0, 'found': 1.0, 'cheaper': 1.0, 'set': 1.0, 'it': 2.0, 'this': 1.0, 'with': 2.0, 'happy': 1.0, 'and': 1.0, 'was': 3.0, 'bedding': 1.0, 'sad': 1.0, 'out': 1.0, 'being': 1.0, 'discontinued': 1.0, 'the': 2.0, 'price': 1.0, 'carters': 1.0, 'than': 1.0}
Word element => {'promise': 1.0, 'winds': 1.0, 'then': 1.0, 'bit': 1.0, 'plays': 1.0, 'doesn': 1.0, 'wind': 1.0, 'crib': 1.0, 'hangs': 1.0, 'll': 1.0, 'down': 1.0, 'especially': 1.0, 'how': 1.0, 'nursery': 2.0, 're': 1.0, 'forever': 1.0, 'safari': 2.0, 'my': 1.0, 'has': 2.0, 'everyone': 1.0, 'not': 1.0, 'out': 1.0, 'them': 1.0, 'be': 1.0, 'to': 2.0, 'also': 1.0, 'seems': 1.0, 'sites': 1.0, 'in': 2.0, 'true': 1.0, 'carter': 1.0, 'making': 1.0, 'immediately': 1.0, 'of': 1.0, 'with': 1.0, 'hard': 1.0, 'for': 2.0, 'themed': 1.0, 'love': 2.0, 'on': 2.0, 'play': 1.0, 'and': 2.0, 'sold': 1.0, 'i': 5.0, 'this': 1.0, 'found': 1.0, 'you': 3.0, 'seen': 1.0, 'when': 2.0, 'made': 1.0, 'less': 1.0, 'online': 1.0, 'because': 2.0, 'find': 1.0, 'does': 1.0, 'up': 1.0, 'over': 1.0, 'don': 1.0, 'the': 5.0, 'if': 3.0, 'that': 4.0, 'going': 1.0, 'a': 2.0, 't': 2.0, 's': 3.0, 'completely': 1.0, 'is': 3.0, 'precious': 1.0, 'normally': 1.0, 'fell': 1.0, 'it': 10.0, 'looks': 2.0, 'music': 1.0, 'most': 1.0, 'but': 1.0, 'giraffe': 1.0, 'comments': 1.0, 'exactly': 1.0, 'picture': 1.0, 'possible': 1.0, 'mobile': 1.0, 'bought': 1.0, 'cuter': 1.0, 'know': 1.0, 'like': 2.0, 'which': 1.0}
Word element => {'help': 1.0, 'fussy': 1.0, 'she': 1.0, 'when': 1.0, 'daughter': 1.0, 'is': 2.0, 'puts': 1.0, 'my': 1.0, 'the': 2.0, 'this': 1.0, 'flowers': 1.0, 'distract': 1.0, 'mobile': 1.0, 'so': 1.0, 'to': 1.0, 'music': 1.0, 'adorable': 1.0, 'and': 2.0, 'sleep': 1.0, 'perfect': 1.0, 'her': 1.0, 'cute': 1.0}
Word element => {'love': 1.0, 'will': 1.0, 'to': 1.0, 'addition': 1.0, 'rest': 1.0, 'sturdy': 1.0, 'perfect': 1.0, 'fits': 1.0, 's': 1.0, 'it': 3.0, 'grandson': 1.0, 'sure': 1.0, 'adorable': 1.0, 'very': 1.0, 'and': 1.0, 'mobile': 1.0, 'well': 1.0, 'a': 1.0, 'is': 2.0, 'the': 4.0, 'my': 1.0, 'of': 1.0, 'set': 1.0, 'crib': 1.0, 'i': 1.0, 'too': 1.0, 'm': 1.0}
Word element => {'that': 1.0, 'locally': 1.0, 'so': 1.0, 'home': 1.0, 'didn': 1.0, 'close': 1.0, 'one': 2.0, 'different': 1.0, 'return': 1.0, 'a': 1.0, 'bought': 1.0, 'send': 1.0, 'and': 1.0, 'mobile': 1.0, 'when': 1.0, 'i': 6.0, 'giraff': 1.0, 'on': 1.0, 'all': 1.0, 'detail': 1.0, 't': 1.0, 'disassemble': 1.0, 'the': 2.0, 'broken': 1.0, 'this': 1.0, 'it': 4.0, 'work': 1.0, 'back': 1.0, 'but': 1.0, 'put': 1.0, 'together': 1.0, 'realized': 1.0, 'if': 1.0, 'music': 1.0, 'could': 1.0, 'box': 1.0, 'either': 1.0, 'got': 1.0, 'loved': 1.0, 'then': 2.0, 'was': 1.0, 'to': 2.0, 'had': 1.0}
Word element => {'love': 1.0, 'nursery': 1.0, 'our': 1.0, 'in': 1.0, 'packs': 1.0, 'i': 1.0, 'on': 2.0, 'go': 1.0, 'and': 3.0, 'as': 1.0, 'bought': 1.0, 'product': 1.0, 'look': 1.0, '2': 1.0, 'great': 1.0, 'the': 4.0, 'fantastic': 1.0, 'easy': 1.0, 'just': 1.0, 'give': 1.0, 'it': 1.0, 'come': 1.0, 'easily': 1.0, 'too': 1.0, 'walls': 1.0, 'decals': 2.0, 'off': 1.0, 'they': 2.0, 'wall': 1.0, 'you': 1.0, 'filled': 1.0, 'is': 1.0, 'many': 1.0, 'so': 1.0}
Word element => {'baby': 1.0, 'our': 1.0, 's': 1.0, 'wall': 1.0, 're': 1.0, 'they': 1.0, 'them': 1.0, 'a': 1.0, 'decide': 1.0, 'cute': 1.0, 'so': 1.0, 'boys': 1.0, 'haven': 1.0, 'the': 1.0, 't': 3.0, 'these': 1.0, 'are': 1.0, 'yet': 2.0, 'bad': 1.0, 'we': 3.0, 'of': 1.0, 'up': 1.0, 'put': 1.0, 'but': 1.0, 'just': 1.0, 'because': 1.0, 'can': 2.0, 'room': 1.0, 'wait': 1.0, 'on': 2.0, 'until': 1.0, 'layout': 1.0}
Word element => {'apply': 1.0, 'to': 1.0, 'plastic': 1.0, 'easy': 1.0, 'thick': 1.0, 'cute': 1.0, 'i': 1.0, 'love': 1.0, 'made': 1.0, 'the': 1.0, 'are': 1.0, 'elephants': 1.0, 'of': 1.0, 'decals': 1.0, 'and': 2.0, 'they': 1.0, 'these': 1.0, 'fit': 1.0, 'bill': 1.0}
Word element => {'really': 1.0, 'is': 1.0, 'it': 1.0, 'installed': 1.0, 'bubbles': 1.0, 'making': 1.0, 'avoid': 1.0, 'a': 1.0, 'order': 1.0, 'bit': 1.0, 'you': 1.0, 'little': 1.0, 'difficult': 1.0, 'use': 1.0, 'once': 1.0, 'to': 3.0, 'install': 2.0, 'must': 1.0, 'in': 1.0, 'something': 1.0, 'nice': 1.0, 'help': 1.0}
Word element => {'good': 1.0, 'and': 2.0, 'very': 1.0, 'super': 1.0, 'also': 1.0, 'but': 1.0, 'fits': 1.0, 'washed': 1.0, 'find': 1.0, 'cute': 1.0, 'the': 2.0, 't': 1.0, 'its': 1.0, 'haven': 1.0, 'it': 1.0, 'yet': 1.0, 'love': 1.0, 'i': 2.0, 'colors': 1.0, 'looks': 1.0, 'nice': 1.0, 'mattress': 1.0, 'overall': 1.0, 'on': 1.0, 'a': 1.0}
Word element => {'would': 1.0, 'i': 1.0, 'room': 1.0, 'to': 1.0, 'a': 1.0, 'so': 1.0, 'nursery': 1.0, 'cute': 1.0, 'and': 1.0, 'bought': 1.0, 'the': 1.0, 'made': 1.0, 'my': 1.0, 'finish': 1.0, 'it': 1.0, 'great': 2.0, 'works': 1.0, 'for': 1.0, 'recommend': 1.0, 'really': 1.0, 'nephew': 1.0, 's': 1.0}
Word element => {'in': 1.0, 's': 1.0, 'granddaughter': 1.0, 'our': 1.0, 'of': 2.0, 'gifts': 1.0, 'got': 1.0, 'looks': 1.0, 'the': 1.0, 'one': 1.0, 'as': 1.0, 'and': 1.0, 'theme': 1.0, 'which': 1.0, 'we': 1.0, 'goes': 1.0, 'her': 3.0, 'room': 2.0, 'baby': 1.0, 'shower': 2.0, 'this': 1.0, 'with': 1.0, 'it': 1.0, 'darling': 1.0}
Word element => {'asked': 1.0, 'if': 1.0, 'again': 1.0, 'be': 1.0, 'just': 1.0, 'myself': 1.0, 'repaired': 1.0, 'went': 1.0, 'unfortunately': 1.0, 'quickly': 1.0, 'came': 1.0, 'back': 2.0, 'sent': 2.0, 'someone': 1.0, 'replacement': 2.0, 'very': 2.0, 'what': 1.0, 'i': 5.0, 'lamp': 1.0, 'wanted': 1.0, 'to': 1.0, 'was': 2.0, 'is': 2.0, 'figured': 1.0, 'the': 2.0, 'would': 1.0, 'exactly': 1.0, 'broken': 3.0, 'gave': 1.0, 'shower': 1.0, 'it': 7.0, 'and': 5.0, 'me': 1.0, 'transit': 2.0, 'for': 2.0, 'also': 1.0, 'in': 2.0, 'since': 1.0, 'ahead': 1.0, 'a': 2.0, 'baby': 1.0, 'cute': 1.0, 'gift': 1.0}
Word element => {'theme': 1.0, 'overall': 1.0, 'overpriced': 1.0, 'extremely': 1.0, '69': 1.0, 'not': 1.0, '39': 1.0, 'r': 1.0, 'adorable': 1.0, 'at': 1.0, 'finding': 1.0, 'up': 1.0, 'us': 1.0, 'included': 1.0, 'would': 3.0, 'bumper': 3.0, 'babies': 1.0, 'been': 1.0, 'that': 1.0, 'do': 1.0, 'of': 3.0, 'pink': 1.0, 'very': 1.0, 'gives': 1.0, 'covered': 1.0, 'room': 2.0, 'recommend': 1.0, 'was': 2.0, 'exactly': 1.0, 'what': 1.0, 'green': 1.0, 'floppy': 1.0, 'in': 1.0, 'ears': 1.0, 'daughter': 1.0, 'pop': 1.0, 'actually': 1.0, 'for': 3.0, 'didn': 1.0, 'actual': 1.0, 'is': 2.0, 'more': 1.0, 'the': 9.0, 'my': 1.0, 'color': 2.0, 'wish': 1.0, 'this': 2.0, 'it': 1.0, 'bedding': 1.0, 's': 2.0, 't': 1.0, 'a': 2.0, 'listed': 1.0, 'elephants': 1.0, 'than': 1.0, 'i': 6.0, 'purple': 1.0, 'but': 1.0, 'ended': 1.0, 'cute': 1.0, 'buy': 1.0, 'looking': 1.0, 'definitely': 2.0, 'lime': 1.0, 'raspberry': 1.0, 'nice': 1.0, 'some': 1.0, 'on': 1.0, 'comforter': 1.0, 'have': 2.0, 'want': 1.0, 'detail': 1.0, 'amazing': 1.0}
Word element => {'order': 1.0, 'will': 1.0, 'again': 1.0, 'seen': 1.0, 'online': 1.0, 'even': 1.0, 'in': 3.0, 've': 1.0, 'was': 1.0, 'now': 1.0, 'or': 1.0, 'almost': 1.0, 'i': 1.0, 'old': 1.0, 'were': 1.0, 'had': 1.0, 'either': 1.0, 'ordering': 1.0, 'than': 1.0, 'usually': 1.0, 'product': 1.0, 'of': 1.0, 'leery': 1.0, 'my': 1.0, 'every': 1.0, 'cutest': 1.0, '9': 1.0, 'the': 5.0, 'm': 1.0, 'over': 1.0, 'months': 1.0, 'we': 4.0, 'internet': 1.0, 'used': 1.0, 'set': 1.0, 'pleased': 1.0, 'but': 1.0, 'stores': 1.0, 'with': 1.0, 'vidid': 1.0, 'it': 1.0, 'so': 1.0, 'colors': 1.0, 'are': 1.0, 'definitely': 1.0, 'day': 1.0, 'person': 1.0, 'this': 2.0, 'pictures': 1.0, 'son': 1.0, 'more': 1.0, 'is': 1.0, 'and': 1.0}
Word element => {'using': 1.0, 'looking': 1.0, 'lovely': 1.0, 'soft': 1.0, 'and': 3.0, 'expecting': 1.0, 'not': 1.0, 'bigger': 1.0, 'stacker': 1.0, 'is': 3.0, 'in': 1.0, 'diaper': 1.0, 'the': 1.0, 'my': 1.0, 'happy': 1.0, 'which': 2.0, 'nice': 2.0, 'am': 2.0, 'with': 1.0, 'it': 5.0, 'very': 1.0, 'cloth': 1.0, 'i': 3.0, 'than': 1.0, 'fits': 1.0, 'all': 1.0, 'forward': 1.0, 'quality': 1.0, 'diapers': 1.0, 'expected': 1.0, 'to': 1.0, 'was': 1.0, 'actually': 1.0}
Word element => {'60': 1.0, 'month': 1.0, 'it': 1.0, 'working': 1.0, 'a': 1.0, 'powered': 1.0, 'cheaply': 1.0, 'broke': 1.0, 'spent': 1.0, 'owned': 1.0, 'stop': 1.0, 'back': 1.0, 'only': 1.0, 'very': 1.0, 'and': 1.0, 'made': 1.0, 'wheels': 1.0, 'for': 1.0, 'in': 1.0, 'battery': 1.0, 'toy': 1.0}
Word element => {'visiting': 1.0, 'when': 1.0, 'happy': 1.0, 'her': 1.0, 'keep': 1.0, 'us': 1.0, 'played': 1.0, 'family': 1.0, 'flawlessly': 1.0, 'and': 5.0, 'mechanism': 1.0, 'worked': 1.0, 'protection': 1.0, 'she': 4.0, 'it': 5.0, 'only': 1.0, 'with': 2.0, 'this': 1.0, 'freely': 1.0, 'the': 4.0, 'that': 2.0, 'our': 1.0, 'around': 2.0, 'fall': 1.0, 'second': 1.0, 'braking': 1.0, 'really': 2.0, 'was': 2.0, 'walker': 1.0, 'got': 1.0, 'could': 3.0, 'we': 3.0, 'going': 1.0, 'liked': 1.0, 'daughter': 1.0, 'wheels': 1.0, 'sound': 1.0, 'light': 1.0, 'take': 1.0, 'contained': 1.0, 'bar': 1.0, 'see': 1.0, 'but': 1.0, 'until': 1.0, 'off': 1.0, 'i': 1.0, 'then': 1.0, 'loved': 1.0, 'took': 1.0, 'friends': 1.0, 'scoot': 1.0, 'so': 1.0, 'portability': 1.0, 'where': 1.0, 'for': 2.0, 'meant': 1.0}
Word element => {'toys': 1.0, 'velcroed': 1.0, 'owls': 1.0, 'plastic': 1.0, 'been': 2.0, 'would': 1.0, 'enough': 1.0, 'steady': 1.0, 'were': 1.0, 'go': 1.0, 'front': 1.0, 'girls': 1.0, 'stops': 1.0, 'those': 1.0, 'down': 2.0, 'inches': 1.0, '3': 1.0, 'walk': 1.0, 'about': 1.0, 'ledge': 3.0, 'little': 1.0, 'two': 1.0, 'where': 1.0, 'wood': 1.0, 'we': 3.0, 'really': 1.0, 'being': 2.0, 'for': 2.0, 'still': 1.0, 'if': 1.0, 'sure': 1.0, 'exactly': 1.0, 'rubber': 2.0, 'are': 2.0, 'between': 1.0, 'developed': 1.0, 'mobile': 1.0, 'more': 1.0, 'walker': 5.0, 'wheels': 2.0, 'sitting': 1.0, 'from': 1.0, 'converts': 1.0, 'fuss': 1.0, 'no': 1.0, 'simple': 1.0, 'great': 4.0, 'tough': 1.0, 'someone': 2.0, 'when': 3.0, 'push': 1.0, 'you': 2.0, 'they': 1.0, 'them': 2.0, 'has': 2.0, 'toy': 1.0, 'but': 2.0, 'tile': 1.0, '2': 1.0, 'not': 2.0, 'easily': 1.0, 'that': 11.0, 'have': 4.0, 'some': 1.0, 'like': 4.0, 'additional': 1.0, 'chew': 1.0, 'mention': 1.0, 'said': 1.0, 'meet': 1.0, 'floors': 1.0, 'is': 8.0, 'second': 1.0, '2011': 1.0, 'my': 3.0, 'party': 1.0, 'of': 1.0, 'the': 19.0, 'turns': 2.0, 'strips': 3.0, 'through': 1.0, 'bc': 4.0, 'here': 1.0, 'daughters': 1.0, 'i': 6.0, 'reason': 2.0, 'using': 1.0, 'looking': 1.0, 'slanted': 1.0, 'child': 1.0, 'price': 1.0, 'works': 1.0, 'tell': 1.0, 'bed': 1.0, 'now': 2.0, 'as': 2.0, 'in': 4.0, 'seat': 2.0, 'meets': 1.0, 'was': 5.0, 'an': 1.0, 'on': 8.0, 'floor': 2.0, 'put': 1.0, 'our': 1.0, 'how': 2.0, 'adjust': 1.0, 'a': 12.0, 'until': 1.0, 'see': 1.0, 'too': 1.0, 'rating': 1.0, 'and': 8.0, 'pieces': 1.0, 'daughter': 2.0, 'happened': 1.0, 'children': 1.0, 'thought': 1.0, 'it': 11.0, 'shocked': 1.0, 'this': 5.0, 'wish': 1.0, 'made': 1.0, 'gift': 1.0, 'based': 1.0, 'friend': 1.0, 'find': 1.0, 'had': 1.0, 'bar': 1.0, 'button': 1.0, 'gone': 1.0, 'something': 1.0, 'hang': 1.0, 'there': 5.0, 'switch': 1.0, 'poorly': 1.0, 'received': 1.0, 'also': 3.0, 'with': 1.0, 'volume': 1.0, 'or': 1.0, 'up': 2.0, 'hard': 1.0, 'over': 3.0, 'lived': 1.0, 'don': 1.0, 'by': 2.0, 'preference': 1.0, 'clicking': 1.0, 'twice': 1.0, 'super': 1.0, 'under': 2.0, 'to': 9.0, 'removes': 1.0, 'out': 1.0, 'bottom': 1.0, 'love': 2.0, 't': 1.0, 'fit': 1.0, 'found': 1.0, 'easy': 1.0, 'becomes': 1.0, 'folds': 1.0, 'so': 1.0, 'dinner': 1.0, 'nicely': 1.0, 'wash': 1.0, 'use': 1.0, 'want': 1.0, 'mentioned': 1.0, 'height': 1.0, 'white': 1.0, 'strap': 1.0, 'guess': 1.0}
Word element => {'month': 1.0, '4': 1.0, 'on': 1.0, 'face': 1.0, 'hands': 1.0, 'his': 1.0, 'to': 1.0, 'comfortable': 1.0, 'for': 2.0, 'looks': 1.0, 'baby': 2.0, 'sleeps': 1.0, 'he': 1.0, 'it': 5.0, 'can': 1.0, 'the': 3.0, 'rub': 1.0, 'like': 1.0, 'as': 1.0, 'get': 1.0, 'me': 1.0, 'and': 3.0, 'way': 2.0, 's': 1.0, 'a': 2.0, 'well': 1.0, 'old': 1.0, 'i': 2.0, 'still': 1.0, 'carry': 1.0, 'but': 1.0, 'man': 1.0, 'lol': 1.0, 'loves': 2.0, 'feels': 1.0}
Word element => {'ruin': 1.0, 'will': 1.0, 'dryer': 1.0, 'using': 1.0, 'though': 1.0, 'low': 1.0, 'dry': 1.0, 'tumble': 1.0, 'definitely': 1.0, 'personal': 1.0, 'amazing': 1.0, 'design': 1.0, 'experience': 1.0, 'cute': 1.0, 'extremely': 1.0, 'if': 1.0, 'spares': 1.0, 'higher': 1.0, 'it': 3.0, 'and': 2.0, 'temperatures': 1.0, 'couple': 1.0, 'quality': 1.0, 'soft': 1.0, 'this': 1.0, 'based': 2.0, 'of': 1.0, 'takes': 1.0, 'bought': 1.0, 'one': 1.0, 'son': 1.0, 'on': 3.0, 'everywhere': 1.0, 'pretty': 1.0, 'keep': 1.0, 'these': 1.0, 'the': 2.0, 'more': 1.0, 'my': 1.0, 'good': 1.0, 'loves': 1.0, 'heat': 1.0, 'just': 1.0, 'carter': 1.0, 'reviews': 1.0, 'absolutely': 1.0, 'snuggles': 1.0, 'with': 1.0, 'endlessly': 1.0, 'are': 1.0, 'blanket': 2.0, 'even': 1.0, 'drying': 1.0, 'excellent': 1.0, 'purchased': 1.0, 'i': 2.0, 'two': 1.0, 'blankets': 1.0, 'to': 1.0, 's': 2.0, 'a': 2.0, 'boa': 1.0, 'warm': 1.0, 'handy': 1.0}
Word element => {'look': 1.0, 'wash': 1.0, 'many': 1.0, 's': 1.0, 'second': 1.0, 'ordered': 1.0, 'just': 1.0, 'after': 1.0, 've': 1.0, 'i': 1.0, 'my': 1.0, 'and': 1.0, 'loves': 1.0, 'it': 2.0, 'blanket': 2.0, 'good': 1.0, 'he': 1.0, 'walks': 1.0, 'sleeps': 1.0, 'plays': 1.0, 'son': 1.0, 'with': 1.0}
Word element => {'colors': 1.0, 'condition': 1.0, 'excellent': 1.0, 'product': 1.0, 'this': 1.0, 'and': 1.0, 'size': 1.0, 'loved': 1.0, 'perfect': 1.0, 'i': 1.0}
Word element => {}
Word element => {'use': 1.0, 'm': 1.0, 'i': 1.0, 'manageable': 1.0, 'down': 1.0, 'get': 1.0, 'in': 1.0, 'fabric': 1.0, 'others': 1.0, 'with': 1.0, 'drying': 1.0, 'still': 1.0, 'washes': 1.0, '10': 1.0, 'order': 1.0, 'took': 1.0, 'hesitant': 1.0, 'lint': 2.0, 'that': 2.0, 'great': 1.0, 'it': 5.0, 'hair': 1.0, 'blanket': 4.0, 'like': 1.0, 'level': 1.0, 'is': 3.0, 'many': 1.0, 'lined': 1.0, 'generated': 1.0, 'a': 3.0, 'similar': 1.0, 'and': 4.0, 'caused': 1.0, 'getting': 1.0, 'having': 1.0, 'problem': 1.0, 'ridiculous': 1.0, 'very': 1.0, 'little': 1.0, 'for': 2.0, 'was': 2.0, 'so': 1.0, 'amount': 1.0, 'after': 1.0, 'size': 1.0, 'bad': 1.0, 'to': 4.0, 'all': 1.0, 'of': 2.0, 'once': 1.0, 'flair': 1.0, 'inhaling': 1.0, 'only': 1.0, 'pet': 1.0, 'up': 1.0, 'wash': 1.0, 'over': 1.0, 'the': 5.0, 'place': 1.0, 'my': 2.0, 'about': 1.0, 'clothing': 1.0, 'kids': 1.0, 'this': 4.0, 'soft': 1.0, 'allergies': 1.0, 'you': 1.0, 'times': 1.0}
Word element => {'baby': 1.0, 'truly': 1.0, 'the': 1.0, 'that': 1.0, 'especially': 1.0, 'we': 1.0, 'excellent': 1.0, 'is': 1.0, 'this': 1.0, 'warm': 1.0, 'blanket': 1.0, 'recommend': 1.0, 'keeps': 1.0, 'really': 1.0, 'of': 1.0, 'colors': 1.0, 'love': 1.0, 'shapes': 1.0, 'quality': 1.0, 'and': 1.0}
Word element => {'tree': 1.0, 'our': 1.0, 'addition': 1.0, 'light': 1.0, 'it': 1.0, '2011': 1.0, 'born': 1.0, 'delicate': 1.0, 'this': 1.0, 'and': 1.0, 'very': 1.0, 'ornament': 2.0, 'is': 2.0, 'a': 3.0, 'perfect': 2.0, 'to': 1.0, 'first': 1.0, 'in': 1.0, 'for': 1.0, 'had': 1.0, 'baby': 2.0, 'who': 1.0, 'anyone': 1.0}
Word element => {'offers': 1.0, 'are': 1.0, 'if': 1.0, 'finish': 4.0, 'when': 2.0, 'something': 1.0, 'crib': 7.0, 'we': 1.0, 'could': 1.0, 'a': 8.0, 'fit': 1.0, 't': 1.0, 'recommend': 1.0, 'together': 1.0, 'dresser': 1.0, 'on': 3.0, 'different': 1.0, 'once': 1.0, 'up': 2.0, 'not': 3.0, 'style': 1.0, 'just': 1.0, 'by': 1.0, 'in': 1.0, 'brookhaven': 1.0, 'is': 2.0, 'at': 1.0, 'highlands': 2.0, 'came': 1.0, 'loved': 1.0, 'needed': 1.0, 'collection': 1.0, 'table': 4.0, 'like': 2.0, 'with': 5.0, 'only': 1.0, 'dollars': 1.0, 'nursery': 1.0, 'put': 1.0, 'changing': 3.0, 'match': 2.0, 'from': 1.0, 'went': 2.0, 'to': 3.0, 'our': 1.0, 'was': 3.0, 'beautiful': 1.0, 'had': 2.0, 'you': 1.0, 'meant': 1.0, 'love': 1.0, 'its': 1.0, 'undertones': 1.0, 'this': 2.0, 'i': 11.0, '4': 1.0, 'of': 2.0, 'the': 13.0, 'deal': 1.0, 'knew': 1.0, 'for': 2.0, 'such': 1.0, 'mocha': 3.0, 'googling': 1.0, 'thirty': 1.0, 'reddish': 1.0, 'good': 1.0, 'made': 1.0, 'after': 1.0, 'easy': 1.0, 'found': 1.0, 'bit': 1.0, 'more': 1.0, 'styles': 1.0, 'did': 1.0, 'would': 1.0, 'summer': 2.0, 'infant': 2.0, 'guy': 1.0, 'particularly': 1.0, 'that': 6.0, 'because': 1.0, 'wanted': 1.0, 'bank': 1.0, 'classic': 1.0, 'pass': 1.0, 'saw': 1.0, 'it': 4.0, 'be': 1.0, 'details': 1.0, 'sale': 1.0, 'really': 2.0, 'very': 1.0, 'nice': 1.0, 'little': 1.0, 'striking': 1.0, 'now': 1.0, 'target': 1.0, 'has': 1.0, 'looking': 2.0, 'and': 1.0, 'realized': 1.0, 'didn': 1.0, 'break': 1.0}
Word element => {'match': 1.0, 'as': 1.0, 'ottoman': 1.0, 'received': 1.0, 'like': 1.0, 'broken': 1.0, 'smooth': 1.0, 'really': 1.0, 'is': 2.0, 'so': 2.0, 'nice': 2.0, 'rotating': 1.0, 'and': 2.0, 'in': 1.0, 'needs': 1.0, 'gliding': 1.0, 'think': 1.0, 'the': 4.0, 'great': 2.0, 'with': 1.0, 'this': 1.0, 'it': 1.0, 'chair': 2.0, 'far': 2.0, 'back': 1.0, 'plump': 1.0, 'but': 1.0, 'just': 1.0, 'seem': 1.0, 'soft': 1.0, 'fabric': 1.0, 'well': 1.0, 'a': 1.0, 'little': 1.0, 'i': 2.0}
Word element => {'nurse': 1.0, 'or': 1.0, 'periods': 1.0, 'there': 1.0, 'way': 1.0, 'sent': 1.0, 'for': 2.0, 'support': 1.0, 'enough': 1.0, 'me': 1.0, 'and': 3.0, 'sit': 2.0, 'in': 2.0, 'i': 3.0, 'comfortably': 1.0, 'arms': 1.0, 'small': 1.0, 't': 1.0, 'the': 2.0, 'are': 1.0, 'could': 1.0, 'wasn': 1.0, 'to': 3.0, 'was': 2.0, 'because': 1.0, 'not': 1.0, 'nursery': 1.0, 'tall': 1.0, 'chair': 1.0, 'too': 1.0, 'm': 1.0, 'back': 2.0, 'it': 3.0, 'this': 1.0, 'a': 2.0, 'big': 1.0, 'extended': 1.0, 'person': 1.0, 'no': 1.0, 'super': 1.0, 'rock': 1.0, 'bought': 1.0, 'short': 1.0}
Word element => {'metal': 1.0, 'the': 1.0, 'required': 1.0, 'in': 1.0, 'frame': 1.0, 'drilling': 1.0, 'it': 1.0, 'is': 1.0, 'does': 1.0, 'nice': 1.0, 'a': 1.0, 'go': 1.0, 'bed': 1.0, 'additional': 1.0, 'all': 1.0, 'but': 1.0, 'was': 1.0, 'at': 1.0, 'not': 1.0, 'together': 1.0, 'smoothly': 1.0}
Word element => {'cover': 1.0, 'put': 1.0, 'just': 1.0, 'covers': 1.0, 'them': 2.0, 'so': 2.0, 'stay': 1.0, 'waking': 1.0, 'diaper': 2.0, 'the': 3.0, 'one': 1.0, 'fitted': 2.0, 'picked': 1.0, 'i': 4.0, 'have': 1.0, 'around': 1.0, 'these': 2.0, 'some': 1.0, 'desired': 1.0, 'diapers': 2.0, 'doesn': 1.0, 'but': 2.0, 'work': 1.0, 'well': 1.0, 't': 1.0, 'a': 2.0, 'times': 2.0, 'waterproofing': 2.0, 'works': 1.0, 'leaves': 1.0, 'cotton': 1.0, 'be': 1.0, 'over': 1.0, 'up': 1.0, 'nap': 1.0, 'dry': 1.0, 'liners': 1.0, 'that': 1.0, 'sleep': 1.0, 'all': 1.0, 'to': 2.0, 'our': 1.0, 'for': 4.0, 'fit': 1.0, 'wellenough': 1.0, 'little': 1.0, 'treat': 1.0, 'use': 1.0, 'wellat': 1.0, 'like': 1.0, 'and': 1.0}
Word element => {'bulk': 1.0, 'no': 1.0, 'let': 1.0, 'quality': 1.0, 'far': 1.0, 'price': 1.0, 'myself': 1.0, 'like': 1.0, 'highly': 1.0, 'days': 1.0, 'two': 1.0, 'every': 1.0, 'll': 1.0, 'with': 1.0, 'more': 1.0, '12': 2.0, 'order': 1.0, 'laundry': 1.0, 'affordable': 2.0, 'time': 1.0, 'one': 1.0, 'outer': 1.0, 'think': 1.0, 'downside': 1.0, 'white': 1.0, 'before': 1.0, 'had': 1.0, 'all': 1.0, 'colors': 1.0, 'extermely': 1.0, 'washer': 1.0, 'just': 1.0, 'total': 1.0, 'since': 1.0, 'able': 1.0, 'you': 4.0, 'when': 1.0, 'different': 1.0, '5': 1.0, '100': 1.0, '36': 1.0, '6': 1.0, 'lite': 1.0, 'expensive': 1.0, 'for': 5.0, 'high': 1.0, 'to': 8.0, 'very': 4.0, 'been': 3.0, 'low': 1.0, 'brand': 2.0, 'a': 6.0, 'then': 1.0, 'we': 2.0, 't': 3.0, 'was': 2.0, 'now': 2.0, 'thin': 2.0, 'is': 7.0, 'using': 2.0, '17': 1.0, 'hold': 3.0, 'daughter': 1.0, 'quick': 1.0, 'week': 1.0, 'but': 5.0, 'work': 2.0, 'grows': 1.0, 'only': 4.0, 'put': 1.0, 'do': 2.0, 'recommended': 1.0, 'and': 7.0, 'they': 11.0, 've': 1.0, 'real': 2.0, 'whether': 1.0, 'through': 1.0, 'my': 2.0, 'recievied': 1.0, 'these': 4.0, 'shell': 1.0, 'great': 4.0, 'toddlers': 1.0, 'buy': 1.0, 'day': 1.0, '4': 1.0, 'probably': 1.0, 'your': 1.0, 'sizes': 1.0, 'born': 1.0, 'have': 6.0, 'many': 1.0, 'baby': 1.0, 'she': 3.0, 'deal': 1.0, 'of': 1.0, 'the': 9.0, 'sunshine': 2.0, 'pee': 1.0, 'believe': 1.0, 'i': 11.0, 'well': 2.0, 'them': 1.0, 'has': 1.0, 'm': 1.0, 'in': 2.0, 'surprisingly': 1.0, 'said': 2.0, 's': 1.0, 'wetness': 1.0, 'so': 5.0, 'would': 1.0, 'bulky': 1.0, 'fool': 1.0, 'diapers': 6.0, 'working': 1.0, 'are': 9.0, 'first': 1.0, 'diaper': 1.0, 'as': 5.0, 'heavy': 2.0, '400': 1.0, 'skeptical': 2.0, 'wetter': 2.0, 'or': 2.0, 'dry': 1.0, 'nappie': 2.0, 'not': 1.0, 'couldn': 1.0, 'don': 2.0, 'use': 1.0, 'her': 2.0, 'wash': 2.0, 'thinness': 1.0, 'kushies': 1.0, 'were': 2.0, 'overnight': 2.0, 'because': 1.0, 'that': 5.0, 'combination': 1.0, 'months': 1.0, 'get': 1.0, 'know': 1.0, 'easy': 1.0, 'also': 1.0, 'us': 1.0, 'ultra': 1.0, 'it': 2.0, 'wear': 1.0}
Word element => {'be': 1.0, 'product': 1.0, 'fast': 1.0, 'are': 2.0, 'cloth': 1.0, 'and': 2.0, 'pocket': 1.0, 'as': 1.0, 'shipping': 1.0, 'of': 2.0, 'brands': 2.0, 'price': 1.0, 'several': 1.0, 'we': 2.0, 'described': 1.0, 'style': 1.0, 'fantatic': 1.0, 'will': 1.0, 'diapers': 2.0, 'work': 1.0, 'at': 1.0, 'buying': 1.0, 'was': 2.0, 'more': 1.0, 'the': 2.0, 'these': 1.0, 'great': 1.0, 'least': 1.0, 'half': 1.0, 'have': 1.0, 'name': 1.0}
Word element => {'long': 1.0, 'be': 1.0, 'going': 1.0, 'awesome': 1.0, 'are': 2.0, 'they': 2.0, 'work': 1.0, 'but': 2.0, 'i': 1.0, 'cloth': 1.0, 'soft': 1.0, 'thick': 1.0, 'if': 1.0, 'price': 1.0, 'inserts': 1.0, 'never': 1.0, 'ive': 1.0, 'ill': 1.0, 'think': 1.0, 'good': 1.0, 'diaper': 1.0, 'the': 1.0, 'these': 1.0, 'such': 1.0, 'just': 1.0, 'not': 1.0, 'for': 1.0, 'im': 2.0, 'love': 1.0, 'sure': 1.0, 'this': 1.0, 'really': 1.0, 'is': 1.0, 'a': 1.0, 'world': 1.0, 'them': 2.0, 'as': 1.0, 'make': 1.0, 'new': 1.0, 'had': 1.0, 'to': 3.0}
Word element => {'needed': 1.0, 'order': 1.0, 'very': 1.0, 'are': 1.0, 'butt': 1.0, 'huge': 1.0, 'had': 1.0, 'folds': 1.0, 'pre': 1.0, 'just': 1.0, 'when': 1.0, 'bad': 1.0, 'up': 1.0, 'used': 2.0, 'more': 3.0, 'and': 5.0, 'wake': 1.0, 'of': 2.0, 'diapers': 2.0, 'has': 1.0, 'definitely': 1.0, 'ever': 1.0, 'with': 2.0, 'above': 1.0, 'skin': 1.0, 'this': 1.0, 'it': 1.0, 'he': 3.0, 'diaper': 1.0, 'insert': 1.0, 'would': 1.0, 'hesitant': 1.0, 'inserts': 2.0, 'two': 2.0, 'rashes': 2.0, 'the': 5.0, 'these': 4.0, 'hemp': 1.0, 'liner': 1.0, 'fleece': 1.0, 'bum': 1.0, 'any': 1.0, 'to': 2.0, 'right': 1.0, 'spending': 1.0, 'genius': 1.0, 'next': 1.0, 'been': 1.0, 'pocket': 3.0, 'use': 2.0, 'does': 1.0, 'were': 1.0, 'about': 1.0, 'but': 1.0, 'money': 1.0, 'so': 2.0, 'if': 1.0, 'everything': 1.0, 'trick': 1.0, 'else': 1.0, 'much': 1.0, 'absorbent': 1.0, 'on': 1.0, 'worth': 1.0, 'a': 3.0, 'we': 6.0, 's': 1.0, 'hardly': 1.0, 'son': 1.0, 'gets': 1.0}
Word element => {'gift': 1.0, 'a': 1.0, 'for': 1.0, 'reused': 1.0, 'nice': 1.0, 'be': 1.0, 'product': 1.0, 'could': 1.0, 'absorbent': 1.0, 'bag': 1.0, 'soft': 1.0, 'pleased': 1.0, 'too': 1.0, 'm': 1.0, 's': 2.0, 'super': 1.0, 'this': 1.0, 'with': 1.0, 'it': 3.0, 'sizes': 1.0, 'very': 1.0, 'and': 2.0, 'quite': 1.0, 'i': 1.0, 'long': 1.0, 'different': 1.0, 'so': 1.0, 'really': 2.0, 'looks': 1.0, 'fits': 1.0, 'the': 1.0}
Word element => {'donut': 1.0, 'hoppop': 1.0, 'is': 1.0, 'favorite': 1.0, 'it': 1.0, 'however': 1.0, 'like': 1.0, 'as': 1.0, 'a': 1.0, 'little': 1.0, 'i': 1.0, 'potty': 3.0, 'the': 1.0, 'cheap': 1.0, 'my': 1.0, 'simple': 1.0}
Word element => {'do': 1.0, 'kinds': 1.0, 'other': 1.0, 'like': 1.0, 'metal': 1.0, 'scratch': 1.0, 'don': 1.0, 'you': 1.0, 'want': 1.0, 'if': 1.0, 'wear': 1.0, 'occasional': 1.0, 'for': 2.0, 'at': 1.0, 'option': 1.0, 'pay': 1.0, 'still': 1.0, 'of': 2.0, 'run': 1.0, 'mos': 1.0, 'about': 1.0, 'however': 1.0, 'later': 1.0, 'wearing': 1.0, 'have': 1.0, 'sizes': 1.0, 'rings': 1.0, 'good': 1.0, 'different': 1.0, 'and': 5.0, 'gotten': 1.0, 'get': 1.0, 'guards': 1.0, 'on': 3.0, 'little': 1.0, 'everyday': 2.0, 'i': 4.0, 'assorted': 1.0, '6': 1.0, 'plastic': 1.0, 'opening': 1.0, 'snuggies': 2.0, 'in': 1.0, 'doesn': 1.0, 'snuggie': 1.0, 'was': 1.0, 'least': 1.0, 'to': 5.0, 'glad': 1.0, 'haven': 1.0, 'useful': 1.0, 'my': 1.0, 'find': 1.0, 'they': 1.0, 'these': 1.0, 'the': 5.0, 'though': 1.0, 'ring': 1.0, 'been': 1.0, 'that': 1.0, 'around': 1.0, 've': 2.0, 'resizing': 2.0, 'it': 3.0, 'stretch': 1.0, 'out': 1.0, 'couple': 1.0, 'widens': 1.0, 'then': 1.0, 'pop': 1.0, 'off': 1.0, 'lost': 1.0, 'causes': 1.0, 'a': 4.0, 't': 3.0, 's': 1.0}
Word element => {'impressed': 1.0, 'not': 1.0, 'to': 1.0, 'from': 1.0, 'the': 2.0, 'prevent': 1.0, 'they': 1.0, 'just': 1.0, 'pop': 1.0, 'side': 1.0, 'ring': 1.0, 'feel': 1.0, 'it': 1.0, 'doesn': 1.0, 'twisting': 1.0, 'off': 1.0, 't': 1.0, 'and': 1.0, 'also': 1.0, 'bulky': 1.0}
Word element => {'inexpensive': 1.0, 'trying': 1.0, 'might': 1.0, 'worth': 1.0, 'still': 1.0, 'to': 1.0, 'tends': 1.0, 'of': 1.0, 'roughness': 1.0, 'is': 1.0, 'since': 1.0, 'and': 1.0, 'for': 1.0, 'scratch': 1.0, 'the': 3.0, 't': 1.0, 'make': 1.0, 'fit': 1.0, 'got': 1.0, 'as': 1.0, 'ring': 1.0, 'resized': 1.0, 'i': 1.0, 'does': 1.0, 'originally': 1.0, 'this': 1.0, 'wedding': 1.0, 'it': 3.0, 'plastic': 1.0, 'can': 1.0, 'my': 1.0, 'tungsten': 1.0, 'be': 2.0, 'alternative': 1.0, 'better': 1.0, 'an': 1.0, 'but': 1.0}
Word element => {'for': 1.0, 'drawer': 1.0, 'in': 1.0, 'so': 1.0, 'sending': 1.0, 'put': 1.0, 'back': 1.0, 'will': 1.0, 'hard': 1.0, 'it': 3.0, 'to': 1.0, 'worth': 1.0, 'still': 1.0, 'is': 1.0, 'knuckle': 1.0, 'once': 1.0, 'let': 1.0, 'alone': 1.0, 'not': 2.0, 'go': 1.0, 'on': 2.0, 'over': 1.0, 'get': 1.0, 'and': 1.0, 'then': 1.0, 'ring': 1.0, 'big': 1.0, 'does': 1.0, 'when': 1.0, 'too': 1.0}
Word element => {'give': 1.0, 'but': 1.0, 'just': 1.0, 'choices': 1.0, 'jade': 1.0, 'that': 2.0, 'a': 1.0, 'them': 1.0, 'wear': 1.0, 'so': 1.0, 'they': 1.0, 'remembered': 1.0, 'purchased': 2.0, 'i': 4.0, 'it': 2.0, 'to': 2.0, 'had': 1.0, 'was': 1.0, 'ring': 2.0, 'big': 1.0, 'amazon': 1.0, 'love': 1.0, 'bang': 1.0, 'sold': 1.0, 'snuggies': 1.0, 'and': 1.0}
Word element => {'of': 1.0, 'few': 1.0, 'using': 1.0, 'a': 1.0, 'after': 1.0, 'removing': 1.0, 'ended': 1.0, 'minutes': 1.0, 'so': 1.0, 'uncomfortable': 1.0, 'i': 2.0, 'money': 1.0, 'it': 3.0, 'just': 1.0, 'too': 1.0, 'wasted': 1.0, 'my': 1.0, 'up': 1.0, 'and': 1.0, 'useless': 1.0, 'is': 1.0, 'bulky': 1.0}
Word element => {'rings': 1.0, 'now': 1.0, 'so': 1.0, 'fit': 1.0, 'snuggies': 1.0, 'ring': 1.0, 'my': 1.0, 'the': 2.0, 'a': 1.0, 'product': 1.0, 'all': 1.0, 'package': 1.0, 'was': 1.0, 'of': 1.0, 'good': 1.0, 'as': 1.0, 'described': 1.0, 'and': 1.0, 'had': 1.0, 'number': 1.0}
Word element => {'attractive': 1.0, 'or': 1.0, 'affordable': 1.0, 'necessarily': 1.0, 'c': 1.0, 'b': 1.0, 'diy': 1.0, 'snuggies': 1.0, 'with': 1.0, 'better': 1.0, 'off': 1.0, 're': 1.0, 'almost': 1.0, 'comfortable': 2.0, 'difficult': 1.0, 'much': 1.0, 'stiff': 1.0, 'very': 2.0, 'are': 2.0, 'easy': 1.0, 'option': 1.0, 'at': 1.0, 'bigger': 1.0, 'hoping': 1.0, 'unfortunately': 1.0, 'was': 2.0, 'any': 1.0, 'all': 1.0, 'to': 4.0, 'varies': 1.0, 'would': 1.0, 'size': 1.0, 'plastic': 1.0, 'this': 1.0, 'useless': 1.0, 'band': 2.0, 'it': 2.0, 'about': 1.0, 'several': 1.0, 'half': 1.0, 'different': 1.0, 'that': 2.0, 'were': 1.0, 'a': 2.0, 'an': 1.0, 'inside': 1.0, 'rings': 1.0, 'will': 1.0, 'be': 2.0, 'i': 3.0, 'one': 1.0, 'not': 4.0, 'hard': 1.0, 'while': 1.0, 'the': 6.0, 'these': 3.0, 'diameter': 1.0, 'same': 1.0, 'if': 1.0, 'additionally': 1.0, 'exactly': 1.0, 'tube': 2.0, 'accomodate': 1.0, 'think': 1.0, 'on': 1.0, 'put': 1.0, 'widths': 1.0, 'solve': 1.0, 'width': 2.0, 'need': 1.0, 'have': 1.0, 'remains': 1.0, 'so': 1.0, 'more': 2.0, 'is': 1.0, 'you': 3.0}
Word element => {'ring': 1.0, 'my': 1.0, 'on': 1.0, 'finger': 1.0, 'chaffing': 1.0, 'some': 1.0, 'lead': 1.0, 'which': 1.0, 'hands': 1.0, 'to': 2.0, 'had': 1.0, 'a': 1.0, 'get': 1.0, 'and': 3.0, 'uncomfortable': 2.0, 'quality': 1.0, 'when': 1.0, 'pop': 1.0, 'trap': 1.0, 'tendency': 1.0, 'low': 1.0, 'wash': 1.0, 'also': 1.0, 'horrid': 1.0, 'if': 1.0, 'off': 1.0, 'lost': 1.0, 'your': 2.0, 'amounts': 1.0, 'of': 1.0, 'rings': 1.0, 'water': 1.0, 'tiny': 1.0, 'you': 2.0, 'wear': 1.0}
Word element => {'rolls': 1.0, 'places': 1.0, 'as': 1.0, 'and': 2.0, 'finger': 1.0, 'ring': 3.0, 'start': 1.0, 'the': 4.0, 'on': 3.0, 'what': 1.0, 'a': 1.0, 'waste': 1.0, 'of': 1.0, 'off': 2.0, 'money': 1.0, 'plastic': 1.0, 'pop': 2.0, 'when': 1.0, 'your': 4.0, 'they': 1.0, 'putting': 2.0}
Word element => {'was': 1.0, 'it': 1.0, 'as': 1.0, 'very': 1.0, 'i': 2.0, 'think': 1.0, 'different': 1.0, 'uncomfortable': 1.0, 'a': 2.0, 'will': 1.0, 'my': 1.0, 'just': 1.0, 'wear': 1.0, 'gift': 1.0, 'christmas': 1.0, 'finger': 1.0, 'ring': 1.0, 'on': 1.0}
Word element => {'snugger': 1.0, 'in': 1.0, 'cramming': 1.0, 'it': 1.0, 'finger': 1.0, 'ring': 1.0, 'i': 1.0, 'after': 1.0, 'couldn': 1.0, 'bend': 1.0, 'even': 1.0, 'them': 1.0, 'to': 2.0, 'alone': 1.0, 'get': 2.0, 't': 1.0, 'fit': 1.0, 'into': 1.0, 'onto': 1.0, 'my': 1.0, 'let': 1.0, 'the': 2.0}
Word element => {'ring': 1.0, 'engagement': 1.0, 'my': 1.0, 'the': 1.0, 'find': 1.0, 'sizes': 1.0, 'and': 1.0, 'lengths': 1.0, 'perfect': 2.0, 'one': 1.0, 'i': 3.0, 'so': 1.0, 'needed': 2.0, 'that': 1.0, 'what': 1.0, 'they': 1.0, 'a': 1.0, 'come': 1.0, 'could': 1.0, 'variety': 1.0, 'for': 2.0, 'in': 1.0, 'of': 1.0}
Word element => {'long': 1.0, 'a': 1.0, 'included': 1.0, 'sizes': 1.0, 'can': 1.0, 'multiple': 1.0, 'there': 1.0, 'that': 1.0, 'you': 1.0, 'only': 1.0, 'job': 1.0, 'negative': 1.0, 'and': 1.0, 'done': 1.0, 'get': 1.0, 'uncomfortable': 1.0, 'are': 1.0, 'the': 2.0, 'time': 1.0, 'they': 2.0, 'would': 1.0, 'be': 2.0, 'if': 1.0, 'wear': 1.0, 'them': 1.0, 'for': 1.0}
Word element => {'to': 1.0, 'loose': 1.0, 'if': 1.0, 'a': 1.0, 'losing': 1.0, 'risk': 1.0, 'and': 2.0, 'they': 2.0, 'of': 1.0, 'around': 1.0, 'begin': 1.0, 'pack': 1.0, 'an': 1.0, 'purchased': 1.0, 'are': 1.0, 'ring': 1.0, 'trust': 1.0, 'assorted': 1.0, 'i': 2.0, 'slip': 2.0, 'on': 1.0, 'band': 1.0, 'bulky': 1.0, 'these': 1.0, 'the': 1.0, 't': 1.0, 'with': 1.0, 'it': 1.0, 'wouldn': 1.0, 'were': 1.0, 'that': 1.0, 'you': 1.0, 'might': 1.0, 'may': 1.0, 'off': 1.0}
Word element => {'i': 1.0, 'get': 1.0, 'untill': 1.0, 'fine': 1.0, 'do': 1.0, 'will': 1.0, 'my': 1.0, 'made': 1.0, 'resized': 1.0, 'ring': 1.0, 'snug': 1.0, 'this': 2.0, 'fit': 2.0, 'just': 1.0, 'perfect': 1.0, 'can': 1.0, 'it': 2.0, 'was': 1.0, 'a': 1.0, 'wont': 1.0, 'fall': 1.0, 'worked': 1.0, 'of': 1.0}
Word element => {'around': 1.0, 'buy': 1.0, 'you': 1.0, 'thing': 1.0, 'do': 1.0, 'uncomfortable': 1.0, 'are': 3.0, 'most': 1.0, 'snuggies': 1.0, 'ring': 2.0, 'the': 1.0, 'these': 1.0, 'your': 1.0, 'they': 1.0, 'better': 1.0, 'them': 1.0, 'a': 1.0, 'wrapping': 1.0, 'waste': 1.0, 'of': 1.0, 'tape': 1.0, 'money': 1.0, 'off': 1.0, 'not': 1.0, 'just': 1.0}
Word element => {'also': 1.0, 'shipping': 1.0, 'fast': 1.0, 'worked': 1.0, 'advertised': 1.0, 'was': 1.0, 'i': 1.0, 'perfectly': 1.0, 'it': 2.0, 'size': 1.0, 'this': 1.0, 'to': 1.0, 'bought': 1.0, 'ring': 1.0, 'came': 1.0, 'a': 1.0, 'down': 1.0, 'and': 1.0, 'as': 1.0}
Word element => {'recommend': 1.0, 'them': 2.0, 'lost': 1.0, 'off': 1.0, 'fell': 1.0, 'finger': 1.0, 'my': 1.0, 'they': 2.0, 'did': 1.0, 'not': 1.0, 'around': 1.0, 'work': 1.0, '34': 2.0, 'temporary': 1.0, 'too': 1.0, 'ring': 1.0, 'loose': 1.0, 'over': 2.0, 'on': 2.0, 'to': 1.0, 'now': 1.0, 'have': 2.0, 'right': 1.0, 'snuggies': 1.0, 'were': 1.0, 'that': 2.0, 'a': 2.0, 't': 2.0, 'these': 1.0, 'the': 4.0, 's': 1.0, 'tried': 1.0, 'i': 3.0, 'don': 1.0, 'money': 1.0, 'wouldn': 1.0, 'skin': 1.0, 'only': 1.0, 'it': 1.0, 'and': 2.0, 'get': 1.0, 'pinch': 1.0, 'sized': 1.0, 'so': 1.0}
Word element => {'sizer': 1.0, 'found': 1.0, 'but': 1.0, '8': 2.0, 'size': 2.0, 'take': 1.0, 'however': 1.0, 'or': 1.0, 'good': 1.0, 'be': 1.0, 'would': 1.0, 'my': 1.0, '2': 1.0, 'the': 1.0, 'one': 2.0, 'lost': 2.0, 'this': 1.0, 'only': 1.0, 'wedding': 2.0, 'i': 5.0, 'because': 1.0, 'very': 1.0, 'worked': 1.0, 'decided': 1.0, 'ring': 2.0, 'new': 1.0, 'meat': 1.0, 'titanium': 1.0, 'got': 1.0, 'wife': 1.0, 'gave': 1.0, '9': 1.0, 'substitute': 1.0, 'gold': 2.0, 'well': 1.0, 'a': 5.0, 'since': 1.0, '1': 1.0, 'and': 1.0, 'is': 1.0, 'expensive': 1.0, 'our': 1.0, 'that': 1.0}
Word element => {'around': 1.0, 'fiddle': 1.0, 'though': 1.0, 'feel': 1.0, 'honestly': 1.0, 'reviews': 1.0, 'negative': 1.0, 'of': 1.0, 'lot': 2.0, 'off': 1.0, 'became': 1.0, 'no': 1.0, 'slip': 1.0, 'not': 2.0, 'after': 1.0, 'sure': 2.0, 'hold': 1.0, 'see': 1.0, 'a': 3.0, 'weightloss': 1.0, 'loose': 1.0, 'why': 1.0, 'year': 1.0, 'ring': 3.0, 'it': 1.0, 'with': 1.0, 'wedding': 1.0, 'when': 1.0, 'i': 4.0, 'my': 2.0, 't': 1.0, 'more': 1.0, 'the': 2.0, 'perfectly': 1.0, 'snuggie': 2.0, 'but': 1.0, 'on': 2.0, 'medium': 1.0, 'slipping': 1.0, 'they': 1.0, 'can': 1.0, 'size': 1.0}
Word element => {'buy': 1.0, 'overall': 1.0, 'not': 2.0, 'returning': 1.0, 'helped': 1.0, 'fast': 1.0, 'for': 3.0, 'with': 1.0, 'just': 2.0, 'me': 3.0, 'but': 2.0, 'wedding': 1.0, 'ring': 1.0, 'good': 1.0, 'of': 1.0, 'metal': 1.0, 'as': 1.0, 'shipping': 1.0, 'moving': 1.0, 'better': 1.0}
Word element => {'very': 1.0, 'will': 1.0, 'fingers': 1.0, 'i': 2.0, 'this': 1.0, 'have': 1.0, 'useful': 1.0, 'be': 1.0, 'product': 1.0, 'to': 1.0, 'many': 1.0, 'that': 1.0, 'rings': 1.0, 'different': 1.0, 'want': 1.0, 'so': 2.0, 'wear': 1.0, 'on': 1.0}
Word element => {'wouldn': 1.0, 'anymore': 1.0, 'buy': 1.0, 'i': 1.0, 'just': 1.0, 'didn': 1.0, 'me': 1.0, 'my': 1.0, 'get': 1.0, 'rings': 1.0, 't': 2.0, 'not': 1.0, 'would': 1.0, 'work': 1.0, 'so': 1.0, 'for': 1.0, 'them': 2.0, 'kept': 1.0, 'they': 1.0, 'moving': 1.0}
Word element => {'uncomfortable': 1.0, 'with': 1.0, 'working': 1.0, 'home': 1.0, 'things': 1.0, 'normal': 1.0, 'wear': 1.0, 'who': 1.0, 'people': 1.0, 'if': 1.0, 'dishes': 1.0, 'plastic': 1.0, 'have': 1.0, 'temporary': 1.0, 'good': 1.0, 'feel': 1.0, 'until': 1.0, 'or': 2.0, 'thought': 1.0, 'and': 2.0, 'off': 1.0, 're': 1.0, 'pull': 1.0, 'very': 1.0, 'little': 1.0, 'would': 2.0, 'short': 1.0, 'need': 1.0, 'engagement': 1.0, 'ring': 4.0, 'i': 5.0, 'clear': 1.0, 'needs': 1.0, 'term': 1.0, 'wedding': 1.0, 'next': 1.0, 'around': 1.0, 'is': 1.0, 'a': 4.0, 'be': 1.0, 'to': 3.0, 'was': 2.0, 'loose': 1.0, 'fix': 1.0, 'while': 2.0, 'it': 5.0, 'band': 1.0, 'sizer': 1.0, 'flexible': 1.0, 'sized': 1.0, 'doing': 2.0, 'this': 1.0, 'found': 1.0, 'hands': 1.0, 'the': 3.0, 'such': 1.0, 'daily': 1.0, 'tube': 1.0, 'most': 1.0, 'work': 1.0, 'can': 1.0, 'uncomfortatble': 1.0, 'after': 1.0, 'days': 1.0, 'someone': 1.0, 'you': 1.0, 'hurt': 1.0, 'my': 3.0, 'tight': 1.0, 'for': 2.0, 'fit': 1.0, 'your': 2.0, '3': 1.0, 'on': 1.0, 'guess': 1.0, 'cooking': 1.0}
Word element => {'use': 1.0, 'minutes': 1.0, 'during': 1.0, 'off': 1.0, 'it': 1.0, 'hard': 1.0, 'ordered': 1.0, '15': 1.0, 'a': 2.0, 'removed': 1.0, 'keep': 1.0, 'of': 2.0, 'from': 1.0, 'ring': 1.0, 'loss': 1.0, 'product': 1.0, 'slipping': 1.0, 'these': 1.0, 'the': 3.0, 'to': 2.0, 'was': 1.0, 'fingers': 1.0, 'against': 1.0, 'weight': 1.0, 'insides': 1.0, 'uncomfortable': 1.0, 'after': 1.0, 'wear': 1.0}
Word element => {'twist': 1.0, 'if': 1.0, 'finger': 2.0, 'your': 1.0, 'pinches': 1.0, 'also': 1.0, 'the': 1.0, 'are': 1.0, 'a': 1.0, 'gets': 1.0, 'these': 1.0, 'they': 1.0, 'do': 1.0, 'around': 1.0, 'waste': 1.0, 'of': 1.0, 'money': 1.0, 'it': 2.0, 'not': 1.0, 'work': 1.0}
Word element => {'sixzer': 1.0, 'having': 1.0, 'kept': 1.0, 'my': 1.0, 'on': 1.0, 'bit': 2.0, 'throughout': 1.0, 'well': 1.0, 'a': 2.0, 'sizer': 1.0, 'are': 1.0, 'they': 2.0, 'the': 3.0, 'these': 1.0, 'i': 2.0, 'readjust': 1.0, 'clunky': 1.0, 'stay': 1.0, 'day': 1.0, 'very': 1.0, 'slimmer': 1.0, 'ring': 2.0, 'decent': 1.0, 'longer': 1.0, 'were': 1.0, 'sizers': 1.0, 'would': 1.0, 'not': 1.0, 'to': 1.0, 'was': 1.0, 'hoping': 1.0, 'be': 1.0, 'and': 1.0, 'did': 1.0}
Word element => {'larger': 1.0, 'maybe': 1.0, 'size': 1.0, 'fingers': 1.0, 'small': 1.0, 'have': 1.0, 'rings': 1.0, 'also': 1.0, 'brand': 1.0, 'just': 1.0, 'or': 1.0, 'way': 1.0, 'they': 2.0, 'if': 2.0, 'so': 2.0, 'one': 1.0, 'adjusters': 1.0, 'never': 1.0, 've': 1.0, 'don': 1.0, 'up': 1.0, 'perform': 1.0, 'then': 1.0, 'knife': 1.0, 't': 1.0, 'a': 2.0, 'butter': 1.0, 'push': 1.0, 'my': 2.0, 'biting': 1.0, 'better': 1.0, 'open': 1.0, 'ring': 4.0, 'day': 1.0, 'it': 5.0, 'had': 1.0, 'all': 1.0, 'to': 3.0, 'the': 3.0, 'these': 2.0, 'pry': 1.0, 'i': 8.0, 'tried': 2.0, 'this': 2.0, 'found': 1.0, 'be': 1.0, 'with': 2.0, 'snuggies': 1.0, '5': 1.0, 'before': 1.0, 'opening': 1.0, 'plastic': 1.0, 'extremely': 1.0, 'difficult': 1.0, 'on': 1.0, 'put': 1.0, 'work': 1.0, 'but': 1.0, 'hard': 1.0, 'wearing': 1.0, 'kept': 1.0, 'for': 1.0, 'was': 1.0, 'snuggie': 1.0, 'is': 2.0, 'made': 1.0, 'of': 2.0, 'know': 1.0, 'hand': 1.0, 'whenever': 1.0, 'and': 1.0, 'closed': 1.0, 'too': 1.0, 'into': 2.0, 'that': 1.0, 'gave': 1.0, 'irritating': 1.0}
Word element => {'d': 1.0, 'like': 1.0, 'seem': 1.0, 'larger': 1.0, 'much': 1.0, 'they': 2.0, 'your': 1.0, 'if': 1.0, 'them': 1.0, 'any': 1.0, 'use': 1.0, 'half': 1.0, 'smallest': 1.0, 'ring': 2.0, 'be': 1.0, 'case': 1.0, 'bought': 1.0, 'making': 1.0, 'of': 2.0, 'in': 3.0, 'hopes': 1.0, 'engagement': 1.0, 'this': 2.0, 't': 1.0, 'the': 2.0, 'i': 2.0, 'one': 1.0, 'a': 1.0, 'right': 1.0, 'can': 1.0, 'size': 1.0, 'my': 1.0, 'smaller': 1.0, 'but': 1.0, 'even': 1.0, 'all': 1.0, 'pack': 1.0, 'is': 2.0, 'too': 1.0, 'thick': 1.0}
Word element => {'specific': 1.0, 'correct': 1.0, 'you': 1.0, 'work': 1.0, 'for': 1.0, 'cheap': 1.0, 'thy': 1.0, 'of': 1.0, 'well': 1.0, 'half': 1.0, 'never': 1.0, 'would': 1.0, 'i': 3.0, 'needed': 1.0, 'size': 2.0, 'exact': 1.0, 'snuggles': 1.0, 'in': 2.0, 'item': 1.0, 'will': 1.0, 'also': 1.0, 'do': 1.0, 'only': 2.0, 'use': 2.0, 'be': 2.0, 'a': 3.0, 'since': 2.0, 'they': 4.0, 'if': 2.0, 'came': 1.0, 'package': 1.0, 'because': 2.0, 'are': 2.0, 'too': 1.0, 'pop': 1.0, 'great': 2.0, 'big': 1.0, 'decided': 1.0, 'ring': 2.0, 'the': 6.0, 'careful': 1.0, 'have': 1.0, 'thing': 1.0, 'this': 1.0, 'lost': 1.0, 'few': 1.0, 'to': 1.0, 'was': 1.0, 'out': 1.0, 'them': 1.0, 'solution': 1.0, 'from': 1.0, 'wearing': 1.0, 'while': 1.0, 'is': 1.0, 'that': 1.0}
Word element => {'recommend': 1.0, 'day': 1.0, 'all': 1.0, 'to': 1.0, 'difficult': 1.0, 'the': 1.0, 'a': 1.0, 'material': 1.0, 'is': 1.0, 'on': 1.0, 'this': 1.0, 'wouldnt': 1.0, 'little': 1.0, 'thick': 1.0, 'wear': 1.0, 'so': 1.0, 'it': 2.0, 'long': 1.0, 'makes': 1.0}
Word element => {'down': 1.0, 'real': 1.0, 'using': 1.0, 'even': 1.0, 'for': 1.0, 'that': 1.0, 'packages': 1.0, 'many': 1.0, 'an': 1.0, 'buying': 1.0, 'with': 1.0, 'package': 1.0, 'in': 1.0, 'only': 1.0, 'let': 2.0, 'doesn': 1.0, 'it': 1.0, 'you': 4.0, 'when': 1.0, 'these': 2.0, 'the': 5.0, 'sizes': 1.0, 'size': 4.0, 'right': 2.0, 'buy': 1.0, 'fixes': 1.0, 'looked': 1.0, 'off': 1.0, 'types': 1.0, 'fits': 1.0, 'my': 1.0, 'assortment': 1.0, 'big': 1.0, 'ring': 3.0, 'one': 2.0, 'bought': 1.0, 'be': 2.0, 'too': 1.0, 'and': 5.0, 'problem': 1.0, 'tried': 1.0, 'i': 6.0, 'are': 2.0, 'will': 1.0, 'also': 1.0, 'rings': 1.0, 'other': 2.0, 'have': 5.0, 'none': 1.0, 'there': 1.0, 'adjustment': 1.0, 'impossible': 1.0, 'find': 1.0, 'because': 2.0, 'not': 3.0, 'weight': 1.0, 'would': 2.0, 'but': 1.0, 'work': 1.0, 'once': 1.0, 'of': 2.0, 'them': 1.0, 'really': 2.0, 'more': 1.0, 'is': 3.0, 'sure': 1.0, 'get': 3.0, 'easy': 1.0, 'any': 1.0, 'all': 1.0, 'to': 4.0, 'use': 1.0, 'what': 2.0, 'thought': 1.0, 'they': 2.0, 'lost': 1.0, 'perfect': 1.0, 'so': 2.0, 'finding': 1.0, 'almost': 1.0, 'your': 1.0, 'on': 3.0, 't': 1.0, 'a': 2.0}
Word element => {'them': 1.0, 'using': 1.0, 'am': 1.0, 'suppose': 1.0, 'get': 1.0, 'i': 3.0, 'price': 1.0, 'will': 1.0, 'not': 2.0, 'is': 1.0, 'recomend': 1.0, 'for': 1.0, 'but': 1.0, 'that': 2.0, 'you': 1.0, 'what': 1.0}
Word element => {'lots': 1.0, 'friends': 1.0, 'and': 2.0, 'her': 1.0, 'family': 1.0, 'rings': 1.0, 'different': 1.0, 'sizes': 2.0, 'suited': 1.0, 'the': 1.0, 'my': 1.0, 'wife': 1.0, 'by': 1.0, 'she': 1.0, 'given': 1.0, 'many': 1.0, 'of': 1.0, 'has': 1.0, 'vintage': 1.0, 'so': 1.0}
Word element => {'not': 1.0, 'wear': 1.0, 'set': 1.0, 'around': 1.0, 'uncomfortable': 1.0, 'wedding': 1.0, 'so': 3.0, 'too': 2.0, 'large': 1.0, 'that': 3.0, 'small': 1.0, 'have': 2.0, 'i': 3.0, 'tried': 1.0, 'ring': 2.0, 'extra': 1.0, 'day': 1.0, 'which': 1.0, 'like': 1.0, 'these': 1.0, 'the': 2.0, 'bulky': 2.0, 'they': 2.0, 'are': 1.0, 's': 3.0, 'a': 4.0, 'well': 1.0, 'would': 3.0, 'be': 1.0, 'solution': 2.0, 'perfect': 1.0, 'in': 1.0, 'also': 2.0, 'fit': 1.0, 'com': 1.0, 'for': 2.0, 'great': 1.0, 'feel': 1.0, 'scratch': 1.0, 'seemed': 1.0, 'finger': 1.0, 'band': 1.0, 'it': 8.0, 'skin': 1.0, 'with': 1.0, 'wore': 1.0, 'make': 1.0, 'constantly': 1.0, 'your': 1.0, 'on': 1.0, 'you': 2.0, 'happened': 1.0, 'other': 1.0, 'as': 2.0, 'any': 1.0, 'to': 3.0, 'contact': 1.0, 'really': 1.0, 'under': 1.0, '2': 1.0, 'but': 2.0, 'can': 1.0}
Word element => {'would': 1.0, 'lasted': 1.0, 'that': 1.0, 'on': 1.0, 'i': 1.0, 'sized': 1.0, 'and': 1.0, 'to': 1.0, 'having': 1.0, 'one': 1.0, 'for': 2.0, 'rings': 1.0, 'recommend': 1.0, 'lot': 1.0, 'not': 1.0, 'work': 1.0, 'are': 1.0, 'have': 2.0, 'great': 1.0, 't': 1.0, 'these': 1.0, 'has': 1.0, 'your': 1.0, 'they': 1.0, 'years': 1.0, 'money': 1.0, 'don': 1.0, 'cost': 1.0, 'of': 1.0, 'a': 1.0, 'well': 1.0}
Word element => {'up': 1.0, 'ended': 1.0, 'piece': 1.0, 'plastic': 1.0, 'the': 1.0, 'into': 1.0, 'at': 1.0, 'able': 1.0, 'but': 1.0, 'a': 1.0, 'days': 1.0, 'first': 1.0, 'using': 1.0, 'liked': 1.0, 'was': 1.0, 'to': 2.0, 'i': 2.0, 'after': 1.0, 'wearing': 1.0, 'ok': 1.0, 'them': 3.0, 'out': 1.0, 'not': 1.0, 'started': 2.0, 'they': 2.0, 'few': 1.0, 'if': 1.0, 'itch': 1.0, 'water': 1.0, 'and': 2.0, 'get': 1.0}
Word element => {'havethem': 1.0, 'am': 2.0, 'assorted': 1.0, 'valuable': 1.0, 'too': 1.0, 'glad': 1.0, 'find': 1.0, 'are': 1.0, 'sizes': 2.0, 'that': 1.0, 'not': 1.0, 'work': 1.0, 'only': 1.0, 'using': 1.0, 'the': 2.0, '2': 1.0, 'of': 1.0, 'i': 3.0, 'six': 1.0, 'they': 1.0, 'and': 1.0, 'do': 1.0, 'though': 1.0, 'to': 1.0}
Word element => {'them': 1.0, 'needed': 1.0, 'what': 1.0, 'various': 1.0, 'different': 1.0, 'rings': 1.0, 'on': 1.0, 'now': 1.0, 'theses': 1.0, 'i': 3.0, 'have': 1.0, 'the': 1.0, 'great': 1.0, 't': 1.0, 'snuggies': 1.0, 'size': 1.0, 'perfectly': 1.0, 'and': 1.0, 'they': 2.0, 'don': 1.0, 'fall': 1.0, 'off': 1.0, 'put': 1.0, 'work': 1.0, 'love': 1.0, 'for': 2.0}
Word element => {'into': 1.0, 'sags': 1.0, 'of': 1.0, 'length': 1.0, 'few': 1.0, 'inwards': 1.0, 'more': 1.0, 'the': 3.0, 'is': 1.0, 'that': 1.0, 'only': 1.0, 'a': 1.0, 'down': 1.0, 'use': 1.0, 'side': 1.0, 'it': 3.0, 'ties': 1.0, 'to': 1.0, 'along': 1.0, 'this': 1.0, 'crib': 1.0, 'could': 1.0}
Word element => {'as': 1.0, 'dishwasher': 1.0, 'even': 1.0, 'that': 1.0, 'your': 1.0, 'substance': 1.0, 'stained': 1.0, 'most': 1.0, 'gets': 1.0, 'it': 1.0, 'out': 1.0, 'clean': 1.0, 'in': 1.0, 'residual': 1.0, 'if': 1.0, 'and': 1.0, 'food': 1.0, 'items': 1.0, 'finally': 1.0, 'gerber': 1.0, 'kidsme': 1.0, 'you': 1.0, 'including': 1.0, 'nets': 1.0, 'definitely': 1.0, 'of': 2.0, 'the': 4.0, 'these': 1.0, 'nuby': 1.0, 'have': 1.0, 'one': 1.0, 'oxi': 1.0, 'soak': 1.0, 'buying': 1.0, 'may': 1.0, 'last': 1.0, 'a': 2.0, 'tried': 1.0, 'i': 1.0, 'fyi': 1.0, 'leave': 1.0, 'many': 1.0, 'is': 1.0, 'worth': 1.0, 'price': 1.0}
Word element => {'too': 1.0, 'like': 1.0, 'fear': 1.0, 'without': 1.0, 'new': 1.0, 'experience': 1.0, 'to': 1.0, 'him': 1.0, 'way': 1.0, 'eats': 1.0, 'and': 1.0, 'eat': 1.0, 'his': 1.0, 'what': 1.0, 'i': 3.0, 'product': 2.0, 'foods': 1.0, 'care': 2.0, 'of': 2.0, 'older': 1.0, 'this': 2.0, 'he': 1.0, 'a': 2.0, 'interested': 1.0, 'toddler': 1.0, 'ready': 1.0, 'but': 1.0, 'day': 1.0, 'as': 1.0, 'great': 1.0, 't': 1.0, 'provider': 1.0, 'infants': 1.0, 'the': 4.0, 'parents': 1.0, 'chocking': 1.0, 'one': 1.0, 'love': 1.0, 'for': 3.0, 'in': 1.0, 'isn': 1.0, 'solids': 1.0, 'really': 1.0, 'is': 2.0}
Word element => {'items': 1.0, 'less': 1.0, 'give': 1.0, 'or': 1.0, 'that': 1.0, 'easier': 1.0, 'is': 1.0, 'really': 1.0, 'enjoys': 1.0, 'they': 2.0, 'these': 1.0, 'the': 2.0, 'finger': 1.0, 'great': 1.0, 'if': 1.0, 'them': 2.0, 'downside': 1.0, 'using': 1.0, 'my': 1.0, 'often': 1.0, 'cute': 1.0, '9': 1.0, 'messy': 2.0, 'daughter': 1.0, 'you': 1.0, 'idea': 1.0, 'and': 1.0, 'are': 2.0, 'mind': 1.0, 'months': 1.0, '5': 1.0, 'so': 1.0, 'food': 2.0, 'don': 2.0, 'up': 1.0, 'be': 1.0, 'buy': 1.0, 't': 2.0, 'a': 2.0, 'we': 1.0, 'use': 1.0, 'either': 1.0, 'just': 1.0, 'because': 1.0, 'only': 1.0, 'its': 1.0, 'to': 1.0, 'super': 1.0, 'would': 1.0, 'puree': 1.0, 'clean': 1.0, 'her': 2.0}
Word element => {'giggles': 1.0, 'on': 1.0, 'for': 2.0, 'great': 1.0, 'purchased': 1.0, 'up': 1.0, 'as': 1.0, 'not': 1.0, 'christmas': 1.0, 'gift': 1.0, 'a': 1.0, 'them': 1.0, 'desk': 1.0, 'your': 1.0, 'i': 1.0, 'may': 1.0, 'just': 1.0, 'but': 1.0, 'give': 1.0}
Word element => {'as': 1.0, 'found': 1.0, 'i': 1.0, 'be': 1.0, 'to': 1.0, 'liked': 1.0, 'advertised': 1.0, 'he': 1.0, 'it': 4.0, 'was': 1.0, 'bought': 1.0, 'wasn': 1.0, 'my': 1.0, 'for': 1.0, 'a': 1.0, 'friend': 1.0, 't': 1.0, 'style': 1.0, 'but': 2.0}
Word element => {'nice': 1.0, 'have': 1.0, 'myself': 1.0, 'for': 1.0, 'to': 1.0, 'day': 1.0, 'adorable': 1.0, 'craftsman': 1.0, 'are': 2.0, 'am': 1.0, 'i': 2.0, 'especially': 1.0, 'ship': 1.0, 'greatly': 1.0, 'walter': 3.0, 'partial': 1.0, 'sgifts': 1.0, 'and': 2.0, 'voices': 1.0, 'apprecaited': 1.0, 'the': 1.0, 'these': 2.0, 'great': 3.0, 'were': 1.0, 'purchase': 1.0, 'shipper': 1.0, 'a': 2.0, 'kept': 1.0}
Word element => {'adorable': 1.0, 'and': 1.0, 'actually': 1.0, 'are': 2.0, 'says': 1.0, 'them': 1.0, 'bobble': 2.0, 'for': 3.0, 'he': 2.0, 'christmas': 1.0, 'bought': 1.0, 'heads': 1.0, 'loved': 1.0, 'loves': 1.0, 'these': 2.0, 'they': 2.0, 'my': 1.0, 'hysterical': 1.0, 'jeff': 1.0, 'husband': 1.0, 'dunham': 1.0, 'so': 1.0, 'him': 1.0, 'perfect': 1.0, 'sayings': 1.0, 'were': 1.0, 'that': 1.0, 'each': 1.0, 'head': 1.0}
Word element => {'quality': 1.0, 'of': 1.0, 'made': 1.0, 'materials': 1.0, 'nursery': 1.0, 'yellow': 1.0, 'light': 1.0, 'this': 1.0, 'is': 2.0, 'our': 1.0, 'such': 1.0, 'a': 1.0, 'cheerful': 1.0, 'bedding': 1.0, 'great': 1.0, 'ensamble': 1.0, 'it': 2.0, 'looks': 1.0, 'in': 1.0}
Word element => {'little': 1.0, 'be': 1.0, 'could': 1.0, 'description': 1.0, 'love': 1.0, 'now': 1.0, 'those': 1.0, 'when': 2.0, 'had': 1.0, 'comes': 1.0, 'annoyed': 1.0, 'is': 1.0, 'more': 2.0, 'was': 2.0, 'accurate': 1.0, 'fact': 1.0, 'another': 1.0, '20': 1.0, 'that': 4.0, 'next': 1.0, 'thing': 1.0, 'for': 2.0, 'actually': 1.0, 'off': 1.0, 'set': 3.0, 'square': 2.0, 'shipper': 1.0, 'kinda': 1.0, 'and': 3.0, 'items': 1.0, 'calming': 1.0, 'from': 1.0, 'enjoy': 1.0, 'wall': 3.0, 'dollars': 1.0, 'mixture': 1.0, 'paid': 1.0, 'only': 1.0, 'of': 3.0, 'the': 16.0, 'hanging': 3.0, 'even': 1.0, 'amazon': 1.0, 'valance': 2.0, 'really': 3.0, 'annoyance': 1.0, 'my': 1.0, 'may': 1.0, 'me': 2.0, 'looks': 1.0, 'already': 1.0, 'it': 2.0, 'to': 6.0, 'pretty': 1.0, 'buy': 1.0, 'including': 1.0, 'looking': 2.0, 'fast': 1.0, 'i': 5.0, 'with': 1.0, 'piece': 3.0, 'colors': 1.0, 'a': 4.0, 'bright': 1.0, 'are': 3.0, 'cute': 1.0, '8': 1.0, 'good': 2.0, 'which': 1.0, 'like': 1.0, 'picture': 1.0, 'counts': 1.0, 'each': 1.0, 'way': 1.0, 'particular': 1.0, 'item': 1.0, '3': 1.0, 'impression': 1.0, 'put': 1.0, 'amount': 1.0, 'on': 1.0, 'hangings': 1.0, 'three': 1.0, 'in': 2.0, 'leaves': 1.0, 'reality': 1.0, 'so': 1.0, 'overall': 1.0, 'cheesy': 1.0, 'soft': 1.0, 'got': 1.0, 'brings': 1.0, 'pieces': 2.0, 'foam': 1.0, 'they': 2.0, 'fish': 1.0, 'turtle': 1.0, 'but': 2.0, 'money': 1.0, 'forward': 1.0, 'one': 2.0, 'ones': 1.0, 'need': 1.0, 'literally': 1.0, 'spend': 1.0, 'get': 1.0}
Word element => {'from': 1.0, 'buying': 1.0, 'recommend': 1.0, 'art': 1.0, 'wall': 1.0, 'as': 1.0, 'definitely': 1.0, 'better': 1.0, 'welcoming': 1.0, 'nursery': 1.0, 'happy': 1.0, 'actually': 1.0, 'be': 3.0, 'that': 3.0, 'our': 1.0, 'to': 6.0, 'so': 2.0, 'time': 2.0, 'couldn': 1.0, 'floor': 1.0, 'anyone': 1.0, 'and': 8.0, 'off': 1.0, 'enough': 1.0, 'set': 3.0, 'used': 1.0, 'over': 1.0, 'product': 2.0, 'child': 2.0, 'years': 1.0, 'find': 1.0, 'does': 2.0, 'ordered': 3.0, 'warm': 1.0, 'companies': 1.0, 'there': 2.0, 'more': 2.0, 'is': 4.0, 't': 1.0, 'a': 4.0, 's': 1.0, 'of': 2.0, 'person': 1.0, 'the': 10.0, 'in': 2.0, 've': 3.0, 'would': 2.0, 'review': 1.0, 'i': 6.0, 'well': 1.0, 'felt': 1.0, 'it': 4.0, 'amazon': 1.0, 'use': 1.0, 'highly': 1.0, 'this': 4.0, 'plush': 1.0, 'even': 1.0, 'rare': 1.0, 'his': 1.0, 'write': 1.0, 'but': 1.0, 'colors': 1.0, 'textures': 1.0, 'for': 3.0, 'fabric': 1.0, 'first': 2.0, 'are': 3.0, 'blanket': 1.0, 'items': 1.0, 'beautiful': 1.0, 'really': 1.0, 'made': 1.0, 'with': 1.0, 'tummy': 1.0, 'cocalo': 1.0, 'on': 1.0, 'looks': 2.0, 'my': 1.0, 'ton': 1.0, 'son': 1.0, 'comfortable': 1.0, 'great': 1.0, 'also': 1.0, 'will': 2.0, 'hamper': 1.0, 'ever': 1.0, 'matching': 2.0, 'adorable': 1.0, 'complete': 1.0, 'comes': 1.0, 'room': 1.0, 'if': 2.0, 'inclined': 1.0, 'you': 2.0, 'out': 1.0, 'compelled': 1.0, 'hand': 1.0, 'like': 1.0, 'future': 1.0, 'paint': 1.0, 'letter': 1.0, 'than': 1.0, 'way': 1.0, 'blocks': 1.0, 'online': 1.0, 'your': 1.0, 'name': 1.0}
Word element => {'chic': 1.0, 'functional': 1.0, 's': 1.0, 'they': 1.0, 'them': 1.0, 'tell': 1.0, 'when': 1.0, 'nice': 1.0, 've': 1.0, 'bag': 2.0, 'have': 1.0, 'this': 1.0, 'it': 2.0, 'i': 2.0, 'my': 2.0, 'rocks': 1.0, 'don': 1.0, 'about': 1.0, 'price': 1.0, 'is': 1.0, 'people': 1.0, 'how': 1.0, 't': 1.0, 'diaper': 1.0, 'the': 1.0, 'for': 2.0, '3': 1.0, 'its': 1.0, 'had': 1.0, 'now': 1.0, 'believe': 1.0, 'months': 1.0, 'commented': 1.0, 'on': 1.0, 'me': 1.0, 'purse': 1.0, 'couple': 1.0, 'and': 2.0, 'a': 1.0, 'of': 1.0}
Word element => {'arm': 1.0, 'off': 1.0, 'without': 1.0, 'attached': 1.0, 'straps': 1.0, 'expect': 1.0, 'out': 1.0, 'square': 1.0, 'bottom': 1.0, 'fold': 1.0, 'either': 1.0, 'should': 1.0, 'empty': 1.0, 'its': 1.0, 'stand': 1.0, 'does': 1.0, 'insulated': 1.0, 'an': 1.0, 'get': 1.0, 'locating': 1.0, 'problem': 2.0, 'sure': 1.0, 'last': 1.0, 'am': 1.0, 'be': 4.0, 'enough': 1.0, 'pad': 2.0, 'hold': 1.0, 'many': 1.0, 'mod': 1.0, 'like': 2.0, 'you': 3.0, 'if': 1.0, 'practical': 1.0, 'could': 1.0, 't': 2.0, 'including': 1.0, 'bag': 7.0, 'standing': 1.0, 'two': 1.0, 'i': 2.0, 'and': 5.0, 'one': 2.0, 'too': 1.0, 'newborn': 1.0, 'wont': 1.0, 'pieces': 1.0, 'black': 1.0, 'in': 5.0, 'up': 3.0, 'search': 1.0, 'not': 3.0, 'constantly': 1.0, 'can': 1.0, 'but': 3.0, 'size': 2.0, 'for': 3.0, 'opinion': 1.0, 'are': 1.0, 'bad': 1.0, 'detailing': 1.0, 'comparable': 1.0, 'straight': 1.0, 'high': 1.0, 'to': 4.0, 'by': 2.0, 'your': 2.0, 'mom': 1.0, 'faux': 1.0, 'have': 3.0, 'a': 10.0, 'small': 1.0, 'picture': 1.0, 'this': 2.0, 'it': 7.0, 'may': 3.0, 'my': 1.0, 'printed': 1.0, 'items': 2.0, 'once': 1.0, 'comes': 2.0, 'paper': 1.0, 'great': 2.0, 'of': 3.0, 'the': 13.0, 'quality': 2.0, 'crook': 1.0, 'toddler': 1.0, 'silver': 1.0, 'leslie': 1.0, 'leather': 1.0, 'pockets': 1.0, 'with': 3.0, 'seem': 1.0, 'purse': 2.0, 'diaper': 4.0, 'bags': 1.0, 'which': 2.0, 'side': 2.0, 'made': 3.0, 'worn': 1.0, 'timi': 1.0, 'on': 3.0, 'long': 1.0, 'easily': 1.0, 'that': 2.0, 'much': 1.0, 'changing': 2.0, 'breaker': 1.0, 'makes': 1.0, 'thing': 1.0, 'wind': 1.0, 'at': 1.0, 'is': 6.0, 'look': 1.0, 'shoulder': 1.0, 'don': 1.0, 'notebook': 1.0, 'isn': 1.0, 'than': 1.0, 'huge': 1.0, 'color': 1.0, 'inside': 2.0, 'top': 1.0, 'ecru': 2.0, 'wipeable': 1.0, 'strap': 1.0, 'white': 1.0, 'thin': 1.0, 'sturdy': 1.0, 'they': 2.0, 'pack': 1.0, 'better': 1.0, 'think': 1.0, 'falling': 1.0, 'need': 1.0, 'vinyl': 1.0, 'or': 1.0, 'draw': 1.0, 'back': 1.0, 'bolder': 1.0}
Word element => {'like': 1.0, 'far': 2.0, 'through': 1.0, 'is': 1.0, 'cutters': 1.0, 'bite': 1.0, 'were': 2.0, 'pieces': 2.0, 'from': 1.0, 'part': 1.0, 'time': 1.0, 'cantaloupe': 1.0, 'satisfied': 1.0, 'butter': 1.0, 'size': 2.0, 'peanut': 1.0, 'was': 3.0, 'on': 1.0, 'make': 1.0, 'using': 1.0, 'thoroughly': 1.0, 'of': 2.0, 'the': 6.0, 'messy': 1.0, 'gift': 1.0, 'subject': 1.0, 'else': 1.0, 'too': 1.0, 'and': 6.0, 'created': 1.0, 'get': 1.0, 'impossible': 1.0, 'easier': 2.0, 'funbites': 1.0, 'treated': 1.0, 'bites': 1.0, 'that': 5.0, 'been': 1.0, 'to': 10.0, 'any': 2.0, 'as': 1.0, 'it': 5.0, 'this': 2.0, 'cutter': 2.0, 'neater': 1.0, 'after': 1.0, 'top': 1.0, 'pushes': 1.0, 'cleaning': 1.0, 'clean': 2.0, 'having': 2.0, 'does': 1.0, 'also': 1.0, 'do': 1.0, 'away': 1.0, 'with': 2.0, 'small': 1.0, 'a': 5.0, 't': 1.0, 'knife': 1.0, 'or': 2.0, 'use': 2.0, 'hassle': 1.0, 'regular': 1.0, 'cookie': 1.0, 'i': 6.0, 'watermelon': 1.0, 'shape': 1.0, 'are': 1.0, 'out': 1.0, 'rudely': 1.0, 'product': 3.0, 'cuter': 1.0, 'yourself': 1.0, 'someone': 1.0, 'tried': 1.0, 'benefit': 1.0, 'given': 1.0, 'return': 1.0, 'had': 1.0, 'purchased': 1.0, 'when': 1.0, 'what': 1.0, 'directly': 1.0, 'them': 1.0, 'told': 1.0, 'relative': 1.0, 'toast': 1.0, 'give': 1.0, 'not': 1.0, 'friend': 1.0, 'if': 1.0, 'sense': 1.0, 'why': 1.0, 'would': 1.0, 'didn': 1.0, 'took': 1.0, 'even': 1.0}
Word element => {'moms': 1.0, 'now': 1.0, 'dinner': 1.0, 'of': 1.0, 'all': 1.0, 'other': 1.0, 'creating': 1.0, 'are': 1.0, 'my': 1.0, 'meat': 1.0, 'kids': 1.0, 'including': 1.0, 'you': 1.0, 'thank': 1.0, 'for': 1.0, 'great': 1.0, 'with': 1.0, 'this': 1.0, 'eating': 1.0, 'it': 1.0, 'idea': 1.0, 'i': 1.0, 'will': 1.0, 'their': 1.0, 'share': 1.0}
Word element => {'rocks': 1.0, 'a': 1.0, 'attentive': 1.0, 'are': 1.0, 'tried': 1.0, 'i': 4.0, 'cleansing': 1.0, 'food': 1.0, 'original': 1.0, 'after': 1.0, 'sturdy': 1.0, 'got': 1.0, 'proves': 1.0, 'loved': 1.0, 'through': 1.0, 'make': 1.0, 'cuts': 1.0, 'is': 2.0, 'and': 5.0, 'it': 3.0, 'quick': 1.0, 'cubes': 1.0, 'rinsing': 1.0, 'this': 1.0, 'kids': 1.0, 'when': 1.0, 'no': 1.0, 'fun': 1.0, 'every': 1.0, 'customer': 1.0, 'very': 2.0, 'kind': 1.0, 'for': 1.0, 'have': 2.0, 'myself': 1.0, 'perfectly': 1.0, 'favorite': 1.0, 'to': 2.0, 'was': 1.0, 'into': 1.0, 'service': 1.0, 'also': 1.0, 'immediate': 1.0, 'cutting': 1.0, 'be': 1.0, 'great': 1.0, 'peaches': 1.0, 'funbites': 1.0}
Word element => {'food': 1.0, 'cut': 1.0, 'to': 1.0, 'easy': 1.0, 'a': 1.0, 'this': 1.0, 'eaters': 1.0, 'way': 1.0, 'love': 1.0, 'fun': 1.0, 'that': 1.0, 'are': 1.0, 'making': 1.0, 'lil': 1.0, 'bites': 1.0, 'or': 1.0, 'for': 1.0, 'is': 1.0, 'toddlers': 1.0, 'picky': 1.0, 'challenged': 1.0}
Word element => {'or': 1.0, 'result': 1.0, 'cutesy': 1.0, 'soft': 3.0, 'motherhood': 1.0, 'firmer': 1.0, 'of': 1.0, 'oh': 1.0, 'top': 1.0, 'coconut': 1.0, 'peabutter': 1.0, 'and': 1.0, 'me': 1.0, 'stay': 1.0, 'apple': 1.0, 'order': 1.0, 'ate': 1.0, 'bread': 2.0, 'the': 3.0, 'oil': 1.0, 'contents': 2.0, 'fed': 1.0, 'little': 2.0, 'very': 1.0, 'son': 1.0, 'whole': 1.0, 'square': 1.0, 'built': 1.0, 'won': 1.0, 'well': 1.0, 'i': 2.0, 'cinnamon': 1.0, 't': 2.0, 's': 1.0, 'a': 1.0, 'mushed': 1.0, 'in': 2.0, 'cutely': 1.0, 'to': 2.0, 'toast': 1.0, 'glamour': 1.0, 'inside': 1.0, 'firm': 1.0, 'but': 1.0, 'muffin': 1.0, 'my': 2.0, 'honey': 1.0, 'sandwhichi': 1.0, 'happy': 1.0, 'had': 1.0, 'spread': 1.0, 'conclusion': 1.0, 'sadwhich': 1.0, 'don': 1.0, 'squares': 1.0, 'judge': 1.0, 'wasted': 1.0, 'therefore': 1.0, '34': 2.0, 'for': 2.0, 'actually': 1.0, 'results': 1.0, 'just': 1.0, 'sandwhich': 1.0, 'breakfast': 1.0}
Word element => {'clean': 1.0, 'leaves': 1.0, 'squish': 1.0, 'doesn': 1.0, 'great': 1.0, 'extra': 1.0, 'cut': 2.0, 'to': 1.0, 'works': 2.0, 'even': 1.0, 'it': 5.0, 'piece': 1.0, 'with': 1.0, 'insert': 1.0, 'cutter': 2.0, 'veggies': 1.0, 'else': 1.0, 'the': 4.0, 'squares': 1.0, 'you': 5.0, 'fruit': 1.0, 'funbites': 2.0, 'well': 1.0, 't': 1.0, 's': 1.0, 'a': 3.0, 'eats': 1.0, 'how': 1.0, 'have': 1.0, 'anything': 1.0, 'separate': 1.0, 'picky': 1.0, 'if': 2.0, 'or': 2.0, 'one': 1.0, 'start': 1.0, 'out': 2.0, 'here': 1.0, 'be': 1.0, 'whether': 1.0, 'rock': 1.0, 'so': 1.0, 'sandwich': 1.0, 'eater': 1.0, 'and': 5.0, 'food': 6.0, 'can': 1.0, 'of': 2.0, 'set': 1.0, 'need': 1.0, 'forth': 1.0, 'pop': 1.0, 'take': 1.0, 'two': 1.0, 'pieces': 1.0, 'think': 1.0, 'your': 7.0, 'on': 1.0, 'little': 2.0, 'gently': 1.0, 'back': 1.0}
Word element => {'wait': 1.0, 'thanks': 1.0, 'exciting': 1.0, 'can': 1.0, 'peanut': 1.0, 'their': 1.0, 'boring': 1.0, 'butter': 1.0, 'a': 1.0, 'fun': 1.0, 'designs': 1.0, 'tiny': 1.0, 'squares': 1.0, 'but': 1.0, 'try': 1.0, 'use': 1.0, 'for': 1.0, 'sandwiches': 1.0, 'eating': 2.0, 'about': 1.0, 'sometimes': 1.0, 'other': 1.0, 'funbites': 2.0, 'complain': 1.0, 'my': 3.0, 't': 1.0, 'the': 1.0, 'i': 1.0, 'all': 1.0, 'have': 1.0, 'sandwich': 1.0, 'and': 1.0, 'do': 1.0, 'to': 3.0, 'now': 2.0, 'lunch': 1.0, 'is': 3.0, 'kids': 2.0, 'square': 1.0, 'think': 1.0}
Word element => {'dates': 1.0, 'lunch': 1.0, 'parties': 1.0, 'make': 1.0, 'snacks': 1.0, 'thinking': 1.0, 'm': 1.0, 'son': 1.0, 'much': 1.0, 'use': 1.0, 'might': 1.0, 'cute': 1.0, 'are': 1.0, 'bite': 2.0, 'pieces': 1.0, 'baby': 1.0, 'bag': 1.0, 'simple': 1.0, 'vs': 1.0, 'just': 2.0, 'down': 1.0, 'gobble': 1.0, 'whole': 1.0, 'sit': 1.0, 'carrot': 1.0, 'up': 1.0, 'll': 1.0, 'poke': 1.0, 'right': 1.0, 'size': 1.0, 'kid': 1.0, 'won': 1.0, 'funbites': 2.0, 'carrots': 1.0, 'always': 1.0, 'has': 1.0, 'if': 1.0, 'same': 1.0, 'apple': 1.0, 'me': 1.0, 'my': 2.0, 'genius': 1.0, 'and': 3.0, 'tough': 1.0, 'cutters': 1.0, 'idea': 1.0, 'you': 1.0, 'of': 4.0, 'the': 7.0, 'blade': 1.0, 't': 1.0, 'a': 7.0, 'chomp': 1.0, 'but': 1.0, 'so': 1.0, 'can': 3.0, 'or': 2.0, 'food': 2.0, 'i': 4.0, 'anything': 1.0, 'without': 1.0, 'cookie': 1.0, 'fun': 1.0, 'slice': 2.0, 'yet': 1.0, 'he': 1.0, 'it': 4.0, 'perfect': 1.0, 'eaters': 1.0, 'thing': 1.0, 'duty': 1.0, 'this': 1.0, 'for': 4.0, 'with': 1.0, 'piece': 1.0, 'little': 2.0, 'mouths': 1.0, 'guy': 1.0, 'performance': 1.0, 'slimy': 1.0, 'curbed': 1.0, 'all': 2.0, 'pizza': 1.0, 'these': 1.0, 'cutter': 3.0, 'high': 1.0, 'to': 1.0, 'pretty': 2.0, 'as': 2.0, 'heavy': 1.0, 'more': 3.0, 'nifty': 1.0, 'substantial': 1.0, 'than': 1.0, 'having': 1.0, 'large': 1.0, 'picky': 1.0, 'popper': 1.0, 'top': 1.0, 'is': 4.0, 'at': 2.0, 'handle': 1.0, 'because': 1.0, 'that': 1.0, 'out': 2.0, 'touch': 1.0, 'thick': 1.0, 'even': 1.0, 'pop': 1.0, 'thin': 1.0, 'cheese': 1.0}
Word element => {'clean': 1.0, 'so': 1.0, 'problems': 1.0, 'no': 1.0, 'great': 1.0, 'works': 1.0, 'it': 2.0, 'my': 1.0, 'easy': 1.0, 'all': 1.0, 'me': 1.0, 'to': 1.0, 'old': 1.0, 'helping': 1.0, 'at': 1.0, 'cut': 1.0, 'his': 1.0, 'sandwiches': 1.0, 'is': 1.0, 'with': 1.0, '3yr': 1.0, 'loves': 1.0, 'this': 1.0}
Word element => {'see': 1.0, 'ever': 1.0, 'don': 1.0, 'strong': 1.0, 'super': 1.0, 'free': 1.0, 'usa': 1.0, 'in': 1.0, 'made': 1.0, 'its': 1.0, 'use': 1.0, 'quick': 1.0, 'sandwich': 1.0, 'easy': 1.0, 'get': 1.0, 'and': 4.0, 'eat': 2.0, 'food': 1.0, 'small': 2.0, 'had': 1.0, 'like': 1.0, 'i': 4.0, 'the': 5.0, 't': 2.0, 'a': 1.0, 'plastic': 1.0, 'he': 2.0, 'eating': 1.0, 'it': 4.0, 'great': 1.0, 'big': 1.0, 'son': 1.0, 'product': 1.0, 'picky': 1.0, 'love': 2.0, 'whole': 1.0, 'about': 1.0, 'cutter': 2.0, 'is': 4.0, 'my': 1.0, 'pretty': 1.0, 'tear': 1.0, 'cut': 1.0, 'sandwiches': 1.0, 'that': 1.0, 'into': 2.0, 'loves': 1.0, 'bite': 1.0, 'pieces': 2.0, 'him': 1.0, 'me': 1.0, 'not': 1.0, 'doesn': 1.0, 'anymore': 1.0, 'breaking': 1.0, 'lets': 1.0, 'quickly': 1.0, 'bpa': 1.0, 'his': 1.0, 'to': 5.0, 'pizza': 1.0, 'always': 1.0, 'omelets': 1.0, 'funbites': 2.0, 'pancakes': 1.0, 'size': 2.0}
Word element => {'parents': 1.0, 'the': 1.0, 'easier': 1.0, 'them': 1.0, 'dinner': 1.0, 'cut': 1.0, 'thumbs': 1.0, 'time': 1.0, 'so': 1.0, 'helps': 1.0, 'up': 1.0, 'threw': 1.0, 'don': 1.0, 'anything': 1.0, 'it': 2.0, 'you': 1.0, 'fun': 3.0, 'things': 1.0, 'safe': 1.0, 'no': 1.0, 'this': 1.0, 'kids': 2.0, 'effort': 1.0, 'love': 1.0, 'for': 3.0, 'here': 1.0, 'house': 1.0, 'can': 1.0, 'but': 1.0, 'in': 1.0, 'our': 1.0, 'takes': 1.0, 'little': 1.0, 'we': 1.0, 'a': 1.0, 't': 1.0, 'because': 1.0, 'than': 1.0, 'some': 1.0, 'others': 1.0, 'two': 2.0, 'i': 1.0, 'with': 2.0, 'mind': 1.0, 'more': 2.0, 'is': 1.0, 'lunch': 1.0, 'much': 1.0, 'sharp': 1.0, 'almost': 1.0, 'edges': 1.0, 'too': 1.0, 'and': 2.0, 'bites': 2.0, 'makes': 1.0}
Word element => {'total': 1.0, 'return': 1.0, 'wish': 1.0, 'only': 1.0, 'code': 1.0, 'get': 1.0, 'so': 1.0, 'can': 1.0, 's': 2.0, 'together': 1.0, 'two': 1.0, 'attach': 1.0, 'you': 1.0, 'if': 1.0, 'top': 1.0, 'safe': 1.0, 'dishwasher': 1.0, 'handwash': 1.0, 'lastly': 1.0, 'sharper': 1.0, 'be': 1.0, 'needs': 1.0, 'could': 2.0, 'a': 5.0, 't': 4.0, 'pointless': 1.0, 'but': 3.0, 'cut': 3.0, 'j': 1.0, 'would': 1.0, 'cubes': 1.0, 'closely': 1.0, 'kind': 1.0, 'should': 1.0, 'here': 1.0, 'we': 1.0, 'reviews': 3.0, 'read': 1.0, 'aged': 1.0, 'glowing': 1.0, 'saw': 1.0, 'lots': 1.0, 'more': 1.0, 'water': 1.0, 'up': 2.0, 'don': 1.0, 'really': 1.0, 'pb': 1.0, 'the': 9.0, 'of': 8.0, '4': 1.0, 'blog': 1.0, 'style': 1.0, 'not': 1.0, 'says': 1.0, 'bento': 1.0, 'use': 1.0, 'amazon': 1.0, 'have': 1.0, 'to': 4.0, 'turkey': 1.0, 'my': 2.0, 'bought': 1.0, 'lunches': 1.0, 'on': 4.0, 'strong': 1.0, 'for': 4.0, 'children': 1.0, 'this': 2.0, 'attempt': 1.0, 'it': 8.0, 'lunch': 1.0, 'and': 5.0, 'eat': 1.0, 'agree': 1.0, 'is': 3.0, 'at': 1.0, 'one': 1.0, 'lot': 2.0, 'edge': 1.0, 'since': 1.0, 'all': 3.0, 'other': 1.0, 'because': 1.0, 'that': 3.0, 'burger': 2.0, 'wasn': 1.0, 'cutting': 2.0, 'out': 1.0, 'enough': 1.0, 'squished': 2.0, 'yes': 1.0, 'see': 1.0, 'tried': 2.0, 'off': 1.0, 'sandwiches': 1.0, 'pieces': 1.0, 'school': 1.0, 'juice': 1.0, 'in': 2.0, 'didn': 1.0, 'i': 9.0, 'well': 3.0, 'knock': 1.0, 'oh': 1.0, 'with': 1.0, 'guess': 2.0, 'reviewed': 1.0, 'socks': 1.0, 'cutter': 1.0, 'ham': 1.0, 'cheese': 1.0, 'waste': 3.0, 'sandwich': 1.0, 'there': 2.0, 'instead': 1.0, 'what': 1.0, 'when': 1.0, 'clean': 1.0, 'again': 2.0, 'ok': 2.0, 'rectangular': 1.0, 'rack': 1.0, 'square': 1.0, 'did': 2.0, 'waffles': 1.0, 'tofu': 2.0, 'was': 1.0}
Word element => {'while': 1.0, 'road': 1.0, 'on': 1.0, 'squares': 1.0, 'picnic': 1.0, 'making': 1.0, 'sized': 1.0, 'useful': 1.0, 'make': 1.0, 'especially': 1.0, 'found': 1.0, 've': 1.0, 'easy': 1.0, 'to': 1.0, 'very': 1.0, 'and': 2.0, 'funbites': 1.0, 'lake': 1.0, 's': 1.0, 'kids': 1.0, 'cutter': 1.0, 'use': 1.0, 'nibbles': 1.0, 'easier': 1.0, 'their': 1.0, 'my': 1.0, 'the': 4.0, 'makes': 1.0, 'eating': 1.0, 'it': 1.0, 'quick': 1.0, 'parks': 1.0, 'little': 1.0, 'love': 1.0, 'for': 3.0, 'kid': 1.0, 'at': 1.0, 'lunches': 2.0, 'bite': 1.0, 'snacks': 1.0, 'or': 2.0, 'i': 1.0}
Word element => {'much': 1.0, 'not': 1.0, 'as': 1.0, 'yourself': 2.0, 'use': 1.0, 'softer': 1.0, 'and': 3.0, 'filling': 2.0, 'on': 3.0, 'toasted': 1.0, 'lunch': 1.0, 'side': 1.0, 'lightly': 1.0, 'be': 2.0, 'to': 2.0, 'our': 1.0, 'old': 1.0, 'etc': 2.0, 'texture': 1.0, 'works': 1.0, 'when': 2.0, 'times': 1.0, 'meat': 1.0, 'sized': 1.0, 'bites': 1.0, 'because': 1.0, 'should': 2.0, 'work': 1.0, 'open': 1.0, 'their': 1.0, 'contraption': 1.0, 'something': 1.0, 'cheese': 2.0, 'waste': 2.0, 'find': 1.0, '1': 1.0, 'it': 5.0, 'she': 1.0, 'this': 2.0, 'theory': 1.0, 'kids': 1.0, 'we': 1.0, 's': 2.0, 't': 2.0, 'a': 1.0, 'bread': 2.0, 'of': 2.0, 'the': 6.0, 'sliced': 1.0, 'jellies': 1.0, 'hands': 1.0, 'solid': 1.0, 'love': 1.0, 'for': 3.0, 'year': 1.0, 'bust': 1.0, 'awesome': 1.0, 'edges': 1.0, 'like': 2.0, 'cuts': 1.0, 'exposing': 1.0, 'correctly': 1.0, 'fillings': 1.0, 'you': 1.0, 'things': 1.0, 'into': 1.0, 'butters': 1.0, 'melted': 1.0, 'perfectly': 2.0, 'there': 1.0, 'lots': 1.0, 'mine': 1.0, 'pick': 1.0, 'squishing': 1.0, 'cutting': 1.0, 'nut': 1.0, 'out': 1.0, 'sticky': 1.0, 'around': 1.0, 'is': 1.0, 'more': 1.0, 'often': 1.0, 'themselves': 1.0, 'don': 1.0, 'up': 1.0, 'food': 1.0, 'or': 1.0, 'with': 1.0, 'gooey': 1.0, 'those': 2.0, 'daughter': 1.0, 'pieces': 2.0, 'also': 1.0, 'leaves': 1.0, 'than': 1.0, 'way': 1.0, 'just': 1.0, 'crust': 1.0, 'so': 3.0, 'cubes': 1.0, 'who': 1.0, 'won': 1.0, 'regular': 1.0}
Word element => {'squares': 1.0, 'the': 1.0, 'these': 1.0, 'into': 1.0, 'daughters': 1.0, 'bites': 1.0, 'for': 1.0, 'sandwich': 2.0, 'tiny': 1.0, 'to': 1.0, 'thing': 1.0, 'pack': 2.0, 'make': 1.0, 'my': 1.0, 'j': 1.0, 'this': 1.0, 'i': 2.0, 'whole': 3.0, 'bought': 1.0, 'eats': 2.0, 'lunch': 1.0, 'sandwiches': 1.0, 'pb': 1.0, 'cut': 1.0, 'if': 2.0, 'a': 3.0, 'she': 2.0, 'few': 1.0}
Word element => {'easy': 1.0, 'through': 1.0, 'to': 2.0, 'back': 1.0, 'kids': 1.0, 'rocking': 1.0, 'would': 1.0, 'not': 1.0, 'for': 2.0, 'than': 1.0, 'use': 2.0, 'thought': 1.0, 'breads': 1.0, 'great': 1.0, 'more': 1.0, 'the': 3.0, 'cutter': 1.0, 'helps': 1.0, 's': 2.0, 'i': 3.0, 'cut': 1.0, 'sandwiches': 1.0, 'and': 2.0, 'sharp': 1.0, 'slightly': 1.0, 'food': 1.0, 'so': 1.0, 'rounded': 1.0, 'forth': 1.0, 'bottom': 1.0, 'it': 2.0, 'this': 1.0, 'with': 1.0}
Word element => {'i': 1.0, 'perfect': 1.0, 'making': 1.0, 'wish': 1.0, 'different': 1.0, 'lots': 1.0, 'through': 1.0, 'cutting': 1.0, 'at': 1.0, 'job': 1.0, 'square': 1.0, 'gets': 1.0, 'if': 1.0, 'but': 1.0, 'me': 1.0, 'for': 1.0, 'kinds': 1.0, 'which': 1.0, 'my': 1.0, 'great': 1.0, 'more': 2.0, 'were': 1.0, 'pricey': 1.0, 'to': 2.0, 'little': 3.0, 'worth': 1.0, 'available': 1.0, 'there': 1.0, 'of': 2.0, 'plus': 1.0, 'a': 2.0, 'shapes': 2.0, 'is': 2.0, 'it': 7.0, 'guy': 1.0, 'eat': 1.0, 'food': 2.0, 'what': 1.0, 'does': 2.0, 'then': 1.0, 's': 1.0}
Word element => {'more': 1.0, 'appetizers': 1.0, 'make': 1.0, 'cutters': 1.0, 'using': 1.0, 'also': 1.0, 'course': 1.0, 'snacks': 1.0, 'lunches': 1.0, 'bite': 1.0, 'create': 1.0, 'sandwiches': 1.0, 'sized': 1.0, 'meat': 1.0, 'luncheon': 1.0, 'cheeses': 1.0, 'fruits': 1.0, 'fun': 2.0, 'from': 1.0, 'future': 1.0, 'gadgets': 1.0, 'go': 2.0, 'will': 2.0, 'this': 1.0, 'serve': 1.0, 'pieces': 2.0, 'liked': 1.0, 'especially': 1.0, 'old': 1.0, 'year': 1.0, '5': 1.0, 'be': 2.0, 'yesterday': 1.0, 'used': 1.0, 'success': 1.0, 'find': 1.0, 'know': 1.0, 'however': 1.0, 'did': 1.0, 'we': 2.0, 'not': 1.0, 'great': 1.0, 'option': 1.0, 'either': 1.0, 'would': 1.0, 'i': 6.0, 'little': 1.0, 'two': 1.0, 'these': 1.0, 'squares': 1.0, 'lunch': 1.0, 'which': 1.0, 'apple': 1.0, 'romantic': 1.0, 'tough': 1.0, 'and': 6.0, 'a': 2.0, 's': 1.0, 'both': 1.0, 'one': 2.0, 'cool': 1.0, 'in': 4.0, 'even': 1.0, 'hearts': 1.0, 'deciding': 1.0, 'was': 1.0, 'trial': 1.0, 'boxes': 1.0, 'cuts': 2.0, 'available': 1.0, 'right': 1.0, 'kitchen': 1.0, 'equally': 1.0, 'options': 1.0, 'admittedly': 1.0, 'end': 1.0, 'prefer': 1.0, 'solid': 1.0, 'treats': 1.0, 'into': 3.0, 'that': 1.0, 'have': 1.0, 'without': 1.0, 'out': 2.0, 'cutting': 1.0, 'use': 1.0, 'time': 1.0, 'sandwich': 1.0, 'can': 1.0, 'so': 2.0, 'idea': 1.0, 'your': 1.0, 'think': 1.0, 'now': 1.0, 'error': 1.0, 'items': 1.0, 'but': 1.0, 'boys': 1.0, 'cute': 1.0, 'are': 1.0, 'first': 1.0, 'an': 1.0, 'other': 1.0, 'simple': 2.0, 'shape': 1.0, 'shows': 1.0, 'for': 3.0, 'website': 1.0, 'my': 5.0, 'letting': 1.0, 'beau': 1.0, 'experiences': 1.0, 'food': 2.0, 'or': 1.0, 'gestures': 1.0, 'here': 1.0, 'shaped': 2.0, 'loving': 1.0, 'won': 1.0, 'there': 1.0, 'heart': 2.0, 'were': 1.0, 'grilled': 1.0, 'several': 1.0, 'suggestions': 1.0, 'their': 2.0, 'when': 1.0, 'what': 1.0, 'had': 1.0, 'pretty': 1.0, 'to': 10.0, 'manner': 1.0, 'they': 1.0, 'cut': 2.0, 'with': 2.0, 'how': 1.0, 'some': 1.0, 'cheese': 2.0, 'although': 1.0, 'on': 3.0, 'long': 1.0, 'site': 1.0, 'possible': 1.0, 'see': 1.0, 'tried': 1.0, 'the': 10.0, 'of': 7.0, 'doing': 1.0, 'above': 1.0, 'enough': 1.0, 'attempts': 1.0, 'kind': 1.0, 'it': 7.0, 'oozed': 1.0}
Word element => {'beautifully': 1.0, 'cheese': 1.0, 'on': 1.0, 'used': 1.0, 'i': 1.0, 'it': 3.0, 'and': 2.0, 'very': 1.0, 'came': 1.0, 'mail': 1.0, 'quickly': 1.0, 'awesome': 1.0, 'in': 1.0, 'the': 1.0, 'cut': 1.0, 'was': 1.0, 'wrapped': 1.0, 'well': 1.0}
Word element => {'in': 1.0, 'up': 1.0, 'of': 1.0, 'will': 2.0, 'toddler': 1.0, 'instead': 1.0, 'be': 1.0, 'to': 2.0, 'was': 1.0, 'after': 1.0, 'this': 2.0, 'she': 2.0, 'it': 2.0, 'is': 1.0, 'dish': 1.0, 'a': 3.0, 'cut': 1.0, 'girl': 1.0, 'able': 1.0, 'not': 1.0, 'because': 1.0, 'her': 1.0, 'even': 1.0, 'used': 2.0, 'for': 3.0, 'i': 3.0, 'food': 3.0, 'can': 1.0, 'the': 1.0, 'without': 1.0, 'simple': 1.0, 'wait': 1.0, 'childs': 1.0, 'cleans': 1.0, 'chicken': 1.0, 'own': 1.0, 'my': 4.0, 'cuts': 1.0, 'help': 1.0, 'washer': 1.0, 'device': 1.0, 'like': 1.0, 'easily': 2.0, 'feel': 1.0, 'big': 1.0, 'use': 1.0, 'breast': 1.0, 'knife': 1.0, 'quickly': 1.0, 'too': 1.0, 'and': 1.0, 'easier': 1.0}
Word element => {'moms': 1.0, 'fantastic': 1.0, 'be': 1.0, 'would': 1.0, 'recommend': 1.0, 'will': 1.0, 'use': 1.0, 'each': 1.0, 'after': 1.0, 'water': 1.0, 'used': 2.0, 'our': 1.0, 'turkey': 1.0, 'basically': 1.0, 'you': 2.0, 'seen': 1.0, 'can': 1.0, 'but': 1.0, 'soapy': 1.0, 'sandwiches': 1.0, 'simplicity': 1.0, 'c': 1.0, 'mean': 1.0, 'i': 9.0, 'stating': 1.0, 'eaters': 1.0, 'highly': 1.0, 'this': 3.0, 'gift': 1.0, 'based': 1.0, 'kids': 2.0, 'ease': 1.0, 'day': 1.0, 'and': 9.0, 'food': 1.0, 'or': 4.0, 'adults': 1.0, 'all': 1.0, 'other': 1.0, 'anything': 1.0, 'have': 8.0, 'everyone': 1.0, 'must': 1.0, 'on': 2.0, 'think': 2.0, 'is': 3.0, 'more': 1.0, 'zero': 1.0, 'blow': 1.0, 'say': 1.0, 'around': 1.0, 'gadget': 2.0, 'rock': 2.0, 'forth': 1.0, 'love': 3.0, 'picky': 1.0, 'for': 2.0, 'salami': 1.0, 'it': 7.0, 'my': 2.0, 'square': 1.0, 'funbites': 4.0, 'hot': 1.0, 'little': 2.0, 'review': 2.0, 'single': 1.0, 'the': 7.0, 'of': 3.0, 'squares': 1.0, 'cutter': 4.0, 'cut': 3.0, 'amazing': 1.0, 'mon': 1.0, 'we': 2.0, 's': 2.0, 't': 1.0, 'since': 1.0, 'stay': 1.0, 'every': 1.0, 'if': 2.0, 'everything': 1.0, 'a': 5.0, 'tiny': 1.0, 'toddlers': 1.0, 'cheeses': 1.0, 'from': 1.0, 'hard': 1.0, 'receiving': 1.0, 'fruits': 1.0, 'to': 5.0, 'veggies': 1.0, 'including': 1.0, 'no': 1.0, 'through': 2.0, 'nutella': 1.0, 'even': 1.0, 'steak': 2.0, 'with': 2.0, 'did': 2.0, 'back': 1.0, 'had': 1.0, 'issues': 2.0, 'problems': 1.0, 'that': 2.0, 'couldn': 1.0, 'was': 1.0, 'clean': 2.0, 'pbj': 1.0, 'cutting': 1.0, 'rinse': 1.0, 'ahem': 1.0, 'swish': 1.0, 'in': 1.0}
Word element => {'cute': 1.0, 'website': 1.0, 'check': 1.0, 'bpa': 1.0, 'and': 1.0, 'bites': 1.0, 'of': 1.0, 'dishwasher': 1.0, 'food': 1.0, 'small': 1.0, 'the': 2.0, 'device': 1.0, 'free': 1.0, 'cutting': 1.0, 'easy': 1.0, 'some': 1.0, 'creates': 1.0, 'quickly': 1.0, 'safe': 1.0, 'super': 1.0, 'designs': 1.0, 's': 1.0, 'for': 2.0, 'in': 1.0, 'this': 1.0, 'it': 1.0, 'out': 1.0, 'made': 1.0, 'usa': 1.0, 'kids': 1.0, 'mom': 1.0, 'invented': 1.0}
Word element => {'piece': 1.0, 'clean': 1.0, 'to': 1.0, 'easy': 1.0, 'very': 1.0, 'in': 1.0, 'also': 1.0, 's': 1.0, 'easier': 1.0, 'much': 1.0, 'funbites': 1.0, 'right': 1.0, 'through': 1.0, 'it': 3.0, 'cutter': 1.0, 'one': 1.0, 'parents': 1.0, 'love': 1.0, 'for': 1.0, 'cube': 1.0, 'a': 1.0, 'is': 1.0, 'stores': 1.0, 'cuts': 1.0, 'great': 1.0, 'the': 2.0, 'of': 2.0, 'little': 2.0, 'kids': 2.0, 'all': 2.0, 'foods': 1.0, 'and': 2.0, 'makes': 1.0, 'product': 1.0, 'mealtimes': 1.0}
Word element => {'kids': 1.0, 'kabob': 1.0, 'the': 1.0, 'great': 1.0, 'made': 1.0, 'i': 1.0, 'foods': 1.0, 'other': 1.0, 'have': 1.0, 'cheese': 2.0, 'for': 3.0, 'and': 2.0, 'sandwich': 2.0, 'cutting': 1.0, 'into': 1.0, 'is': 1.0, 'used': 1.0, 'this': 1.0, 'it': 2.0, 'jicama': 1.0, 'meat': 1.0, 'also': 1.0, 'sandwiches': 1.0, 'cut': 1.0, 'a': 2.0, 'squares': 1.0, 'awesome': 1.0, 'that': 1.0}
Word element => {'adds': 1.0, 'verdict': 1.0, 'set': 1.0, 'both': 1.0, 'special': 1.0, 'even': 1.0, 'there': 1.0, '99': 1.0, 'for': 2.0, 'shapes': 1.0, 'as': 1.0, 'come': 1.0, 'else': 1.0, 'see': 1.0, 'wait': 1.0, 'if': 1.0, 'turn': 1.0, 'gallery': 1.0, 'be': 1.0, 'teach': 1.0, 'cannot': 1.0, 'himself': 1.0, 'let': 1.0, 'older': 1.0, 'gets': 1.0, 'guy': 1.0, 'patience': 1.0, 'plastic': 2.0, 'because': 2.0, 'that': 4.0, 'artwork': 1.0, 'thing': 1.0, 'ourselves': 1.0, 'him': 2.0, 'it': 5.0, 'genius': 1.0, 'picking': 1.0, 'takes': 1.0, 'up': 3.0, 'ate': 1.0, 'wanting': 1.0, 'actually': 1.0, 'he': 2.0, 'love': 4.0, 'lunch': 6.0, 'inspiration': 1.0, 'comes': 1.0, 'more': 1.0, 'on': 4.0, 'definitely': 1.0, 'think': 1.0, 'about': 2.0, 'play': 1.0, 'and': 8.0, 'funbites': 4.0, 'easier': 2.0, 'fussing': 1.0, 'his': 5.0, 'independent': 1.0, 'toy': 1.0, 'used': 1.0, 'makes': 1.0, 'to': 9.0, 'ideas': 1.0, 'smile': 1.0, 'all': 3.0, 'trying': 1.0, 's': 1.0, 'a': 6.0, 't': 1.0, 'going': 1.0, 'fun': 1.0, 'designs': 1.0, 'retail': 1.0, 'i': 13.0, 'm': 1.0, 'in': 1.0, 'this': 2.0, 'kids': 2.0, 'are': 1.0, 'first': 1.0, 'excited': 1.0, 'their': 1.0, 'get': 1.0, 'sat': 1.0, 'getting': 2.0, 'consists': 1.0, 'much': 1.0, 'put': 1.0, 'do': 2.0, 'try': 1.0, 'kept': 1.0, 'com': 2.0, 'but': 3.0, '00': 1.0, 'can': 4.0, 'without': 1.0, 'huge': 1.0, 'than': 2.0, 'amazing': 1.0, 'only': 1.0, 'prince': 2.0, 'usually': 1.0, 'size': 1.0, 'what': 3.0, 'when': 2.0, 'okay': 1.0, 'eating': 1.0, 'am': 1.0, 'two': 1.0, 'little': 5.0, '12': 1.0, 'cubes': 3.0, 'looking': 1.0, 'is': 6.0, 'at': 1.0, 'since': 1.0, 'my': 1.0, 'entire': 1.0, 'me': 1.0, 'those': 1.0, 'with': 3.0, 'explore': 1.0, 'sweet': 1.0, 'factor': 1.0, 'honestly': 1.0, 'face': 1.0, 'saying': 1.0, 'baby': 1.0, 'has': 1.0, 'them': 1.0, 'worth': 1.0, '22': 1.0, 'figure': 1.0, 'now': 3.0, 'the': 7.0, 'of': 2.0, 'buy': 1.0, 'hand': 1.0, 'something': 1.0, 'they': 2.0, 'cut': 2.0, 'into': 3.0, 'been': 1.0, 'loves': 1.0, 'have': 2.0, 'cutting': 2.0, 'out': 2.0, 'kabobs': 2.0, 'or': 1.0, 'food': 1.0, 'grill': 1.0, 'didn': 1.0, 'want': 1.0, 'you': 1.0, 'things': 2.0, 'by': 2.0, 'just': 1.0, 'product': 2.0, 'toddler': 1.0}
Word element => {'em': 1.0, 'endless': 1.0, 'oeuvres': 1.0, 'd': 1.0, 'or': 1.0, 'sammies': 1.0, 'cheeses': 1.0, 'sandwiches': 1.0, 'cut': 1.0, 'club': 1.0, 'mini': 1.0, 'just': 1.0, 'not': 1.0, 'little': 2.0, 'platter': 1.0, 'elegant': 1.0, 'so': 1.0, 'melon': 1.0, 'them': 1.0, 'made': 1.0, 'used': 2.0, 'hors': 1.0, 'even': 1.0, 'funbites': 2.0, 'is': 1.0, 'many': 1.0, 'things': 1.0, 'cutting': 2.0, 'cheese': 1.0, 'barbeque': 1.0, 'kids': 1.0, 'dinner': 1.0, 've': 2.0, 'i': 3.0, 'omelets': 1.0, 'party': 1.0, 'my': 1.0, 'pizza': 1.0, 'to': 1.0, 'tofu': 1.0, 'the': 2.0, 'stir': 1.0, 'make': 1.0, 'your': 2.0, 'think': 1.0, 'cubes': 1.0, 'are': 1.0, 'fry': 1.0, 'and': 1.0, 'of': 1.0, 'love': 1.0, 'for': 6.0, 'salad': 1.0, 'next': 1.0, 'into': 1.0, 'skewers': 1.0, 'you': 1.0, 'possibilities': 1.0, 'a': 2.0, 'could': 1.0}
Word element => {'gathering': 1.0, 'way': 1.0, 'their': 1.0, 'in': 1.0, 'having': 1.0, 've': 1.0, 'anyone': 1.0, 'and': 3.0, 'they': 2.0, 'time': 1.0, 'bit': 1.0, 'when': 1.0, 'or': 2.0, 'i': 1.0, 'sizes': 1.0, 'it': 1.0, 'kids': 1.0, 'this': 1.0, 'absolutely': 1.0, 'snacks': 1.0, 'love': 2.0, 'for': 4.0, 'funbites': 1.0, 'my': 1.0, 'great': 1.0, 'the': 2.0, 'sqaure': 1.0, 'your': 1.0, 'make': 1.0, 'on': 1.0, 'lunch': 1.0, 'cutter': 1.0, 'use': 1.0, 'every': 1.0, 'kiddies': 1.0, 'get': 1.0, 'left': 1.0, 'easy': 2.0, 'to': 2.0, 's': 1.0, 'we': 2.0, 'a': 3.0, 'snack': 1.0, 'used': 1.0, 're': 2.0, 'sandwiches': 1.0, 'satisfied': 1.0, 'fruits': 1.0, 'buy': 1.0, 'definitely': 1.0, 'looking': 1.0, 'an': 1.0, 'unique': 1.0}
Word element => {'expressed': 1.0, 'opinions': 1.0, 'originally': 1.0, 'review': 2.0, 'my': 3.0, 'facilitate': 1.0, 'i': 1.0, 'disclosure': 1.0, 'wings': 1.0, 'dragonfly': 1.0, 'sailboats': 1.0, 'by': 1.0, 'were': 1.0, 'heart': 1.0, 'in': 1.0, 'incorporated': 1.0, 'circles': 1.0, 'entirely': 1.0, 'instance': 1.0, 'larger': 1.0, 'shapes': 1.0, 'create': 1.0, 'appeared': 1.0, 'simple': 1.0, 'titus2homemaker': 1.0, 'way': 1.0, 'relatively': 1.0, 'snacks': 1.0, 'besides': 1.0, 'not': 1.0, 'fruit': 1.0, 'softer': 1.0, 'something': 1.0, 'doesn': 1.0, 'as': 2.0, 'through': 1.0, 'tricky': 1.0, 'difficult': 1.0, 'received': 1.0, 'also': 1.0, 'we': 1.0, 'unfortunately': 1.0, 'themselves': 1.0, 'butterfly': 1.0, 'use': 2.0, 't': 1.0, 'fairly': 1.0, 'makes': 1.0, 'plastic': 1.0, 'which': 1.0, 'good': 1.0, 'made': 2.0, 'cutters': 2.0, 'at': 1.0, 'is': 2.0, 'taken': 1.0, 'run': 1.0, 'and': 5.0, 'be': 2.0, 'truth': 1.0, 'com': 1.0, 'creating': 1.0, 'all': 1.0, 'an': 1.0, 'square': 1.0, 'funbites': 3.0, 'always': 1.0, 'them': 2.0, 'has': 1.0, 'easier': 1.0, 'are': 3.0, 'bite': 3.0, 'sized': 3.0, 'just': 2.0, 'life': 1.0, 'up': 3.0, 'when': 1.0, 'half': 1.0, 'both': 1.0, 'fun': 1.0, 'designs': 2.0, 'mom': 1.0, 'your': 1.0, 'make': 5.0, 'push': 2.0, 'you': 6.0, 'things': 1.0, 'principle': 1.0, 'within': 1.0, 'part': 1.0, 'problem': 2.0, 'combined': 2.0, 'for': 3.0, 'especially': 1.0, 're': 3.0, 's': 3.0, 'eat': 1.0, 'if': 1.0, 'same': 1.0, 'art': 1.0, 'being': 1.0, 'or': 1.0, 'food': 6.0, 'special': 1.0, 'work': 1.0, 'can': 3.0, 'regular': 1.0, 'own': 1.0, 'slicers': 1.0, 'dishwasher': 1.0, 'sometimes': 3.0, 'with': 3.0, 'this': 4.0, 'children': 3.0, 'it': 6.0, 'to': 11.0, 'because': 1.0, 'young': 1.0, 'that': 4.0, 'into': 3.0, 'quickly': 1.0, 'found': 1.0, 'easy': 1.0, 'familiar': 1.0, 'triangles': 1.0, 'one': 1.0, 'like': 2.0, 'afterward': 1.0, 'cuts': 1.0, 'want': 1.0, 'apple': 1.0, 'on': 2.0, 'wedges': 1.0, 'of': 7.0, 'the': 15.0, 'place': 1.0, 'squares': 1.0, 'these': 1.0, 'cutter': 5.0, 'insert': 1.0, 'making': 1.0, 'cheese': 1.0, 'back': 1.0, 'down': 1.0, 'those': 1.0, 'inside': 1.0, 'top': 2.0, 'creators': 2.0, 'have': 1.0, 'a': 7.0, 'small': 2.0, 'hearts': 2.0, 'even': 1.0, 'pusher': 1.0, 'addressed': 1.0, 'cutting': 1.0, 'out': 1.0, 'stuck': 1.0, 'there': 1.0, 'cut': 3.0, 'they': 1.0, 'safe': 2.0, 'press': 1.0, 'no': 1.0, 'pieces': 2.0, 'crevices': 1.0, 'scrubbing': 1.0, 'little': 1.0, 'yay': 1.0, 'two': 1.0, 'likely': 1.0, 'basic': 2.0}
Word element => {'yeah': 1.0, 'adults': 1.0, 'through': 1.0, 've': 2.0, 'pieces': 1.0, 'cut': 1.0, 'cleanly': 1.0, 'it': 6.0, 'only': 1.0, 'quick': 1.0, 'fantastic': 1.0, 'easy': 1.0, 'we': 3.0, 'funbites': 1.0, 'have': 2.0, 'name': 1.0, 'heavy': 1.0, 'the': 4.0, 'luv': 1.0, 'they': 1.0, 'used': 1.0, 'nearly': 1.0, 'are': 3.0, 'everything': 1.0, 'thrown': 1.0, 'these': 1.0, 'products': 1.0, 'fancy': 1.0, 'think': 1.0, 'too': 1.0, 'and': 5.0, 'cube': 2.0, 'for': 3.0, 'at': 1.0, 'both': 1.0, 'fun': 2.0, 'not': 1.0, 'is': 1.0, 'all': 1.0, 'to': 1.0, 'use': 1.0, 'but': 1.0, 'seriously': 1.0, 'size': 1.0, 'how': 1.0, 'says': 1.0, 'perfect': 1.0, 'duty': 1.0, 'kids': 1.0, 'appetizers': 1.0}
Word element => {'dishwasher': 1.0, 's': 1.0, 'part': 1.0, 'best': 1.0, 'a': 1.0, 'times': 1.0, 'least': 1.0, 'safe': 1.0, 'at': 1.0, 'use': 1.0, 'and': 1.0, '1': 1.0, 'especially': 1.0, 'perfect': 2.0, 'we': 1.0, 'funbites': 1.0, '5': 2.0, 'little': 1.0, 'cubeit': 1.0, 'is': 1.0, 'starting': 1.0, 'on': 1.0, '2': 1.0, 'the': 3.0, 'are': 3.0, 'my': 1.0, 'it': 2.0, 'this': 2.0, 'older': 1.0, 'i': 1.0, 'too': 1.0, 'kids': 2.0, 'that': 2.0, 'for': 1.0, 'love': 2.0, 'finger': 1.0, 'food': 1.0, 'week': 1.0, 'squares': 1.0, 'size': 1.0}
Word element => {'they': 1.0, 'knowing': 1.0, 'confidence': 1.0, 'i': 1.0, 'eating': 1.0, 'before': 1.0, 'them': 1.0, 'knock': 1.0, 'was': 1.0, 'now': 1.0, 'he': 2.0, 'children': 1.0, 'since': 1.0, 'his': 2.0, 'stack': 1.0, 'using': 1.0, 'for': 1.0, 'the': 3.0, 'my': 1.0, '12': 1.0, 'on': 2.0, 'months': 2.0, 'youngest': 1.0, 'food': 2.0, 'but': 1.0, 'squares': 1.0, 'we': 1.0, 'funbites': 1.0, 'other': 1.0, 'small': 1.0, 'younger': 1.0, 'have': 2.0, 'son': 1.0, 'to': 1.0, 'all': 1.0, 'as': 1.0, 'is': 2.0, 'square': 1.0, '16': 1.0, 'old': 2.0, 'cutter': 1.0, 'especially': 1.0, 'perfect': 1.0, 'bite': 1.0, 'pieces': 2.0, 'top': 1.0, 'uniform': 1.0, 'in': 1.0, 'are': 2.0, 'and': 3.0, 'size': 2.0, 'been': 1.0, 'loves': 1.0, 'over': 1.0, 'attempting': 1.0, 'of': 2.0, 'each': 1.0}
Word element => {'pancakes': 1.0, 'square': 1.0, 'little': 1.0, '73': 1.0, 'at': 1.0, 'may': 1.0, 'foods': 1.0, 'through': 1.0, 'cut': 1.0, 'blade': 1.0, 'fine': 1.0, 's': 1.0, 'cheese': 2.0, 'extract': 1.0, 'but': 2.0, 'mark': 1.0, 'and': 1.0, 'do': 2.0, 'very': 1.0, 'ok': 2.0, 'from': 1.0, 'to': 4.0, 'was': 2.0, 'don': 1.0, 'ended': 1.0, 'cutter': 1.0, 'be': 1.0, 'tool': 1.0, 't': 1.0, 'the': 4.0, 'other': 1.0, 'we': 2.0, 'for': 1.0, 'using': 2.0, 'a': 1.0, 'with': 1.0, 'hard': 1.0, 'it': 3.0, 'saw': 1.0, 'cooping': 1.0, 'up': 1.0, '34': 1.0}
Word element => {'safer': 1.0, 'run': 1.0, 'long': 1.0, 'worth': 1.0, 'well': 1.0, 'very': 1.0, 'invest': 1.0, 'true': 1.0, 'be': 1.0, 'almost': 1.0, 'good': 1.0, 'it': 5.0, 'this': 1.0, 'diaper': 2.0, 'nicely': 1.0, 'the': 4.0, 'modern': 1.0, 'plastic': 1.0, 't': 1.0, 'a': 1.0, 'size': 1.0, 'bad': 1.0, 'stinky': 1.0, 'babies': 1.0, 'i': 3.0, 'old': 1.0, 'mommy': 1.0, 'tried': 1.0, 'esp': 1.0, 'so': 1.0, 'items': 1.0, 'couldn': 1.0, 'color': 1.0, 'my': 1.0, 'made': 1.0, 'out': 1.0, 'smelled': 1.0, 'had': 1.0, 'as': 1.0, 'to': 2.0, 'unfortunately': 1.0, 'was': 1.0, 'loved': 1.0, 'bag': 3.0, 'of': 1.0, 'really': 2.0, 'like': 1.0, 'using': 1.0, 'food': 1.0, 'but': 1.0, 'your': 1.0, 'put': 1.0, 'throw': 1.0, 'in': 3.0, 'price': 1.0, 'and': 2.0, 'too': 1.0}
Word element => {'start': 1.0, 'to': 1.0, 'is': 1.0, 'ready': 1.0, 'toddler': 1.0, 'carrots': 1.0, 'sandwiches': 1.0, 'anything': 1.0, 'cuts': 2.0, 'pretty': 1.0, 'much': 1.0, 'through': 1.0, 'just': 1.0, 'not': 1.0, 'love': 1.0, 'snacking': 1.0, 'with': 2.0, 'this': 1.0, 'it': 2.0, 'i': 1.0, 'your': 1.0, 'apples': 1.0, 'plunger': 1.0, 'and': 2.0, 'ease': 2.0, 'the': 2.0, 'pushes': 1.0, 'out': 1.0, 'food': 1.0}
Word element => {'cookie': 1.0, 'regular': 1.0, 'back': 1.0, 'm': 1.0, 'expected': 1.0, 'smaller': 1.0, 'it': 3.0, 'i': 3.0, 's': 1.0, 'now': 1.0, 'is': 1.0, 'cute': 1.0, 'than': 1.0, 'but': 1.0, 'cutters': 1.0, 'had': 1.0, 'to': 2.0, 'return': 1.0, 'very': 1.0, 'as': 1.0}
Word element => {'sharp': 1.0, 'not': 1.0, 'because': 1.0, 'you': 1.0, 'can': 1.0, 'kids': 1.0, 'is': 2.0, 'to': 1.0, 'now': 1.0, 'use': 1.0, 'got': 1.0, 'top': 1.0, 'i': 3.0, 'a': 1.0, 'bottom': 1.0, 'of': 3.0, 'hang': 1.0, 'play': 1.0, 'did': 1.0, 'fun': 1.0, 'at': 1.0, 'doh': 1.0, 'reminded': 1.0, 'actually': 1.0, 'used': 1.0, 'with': 1.0, 'this': 2.0, 'first': 2.0, 'it': 5.0, 'maker': 1.0, 'wrong': 1.0, 'my': 1.0, 'time': 1.0, 'on': 1.0, 'do': 1.0, 'me': 1.0, 'and': 2.0, 'put': 1.0, 'the': 5.0, 'bread': 1.0}
Word element => {'long': 1.0, 'mad': 1.0, 't': 1.0, 'didn': 1.0, 'stay': 1.0, 'not': 1.0, 'her': 1.0, 'snuck': 1.0, 'also': 1.0, 'playdoh': 1.0, 'them': 1.0, 'very': 3.0, 'year': 1.0, 'and': 1.0, 'things': 1.0, 'with': 2.0, 'have': 1.0, 'does': 1.0, 'two': 1.0, 'i': 5.0, 'old': 1.0, 'had': 1.0, 'to': 4.0, 'recommend': 1.0, 'was': 1.0, 'this': 3.0, 'eaters': 1.0, 'delayed': 1.0, 'how': 1.0, 'easily': 1.0, 'am': 1.0, 'pancakes': 1.0, 'funbites': 1.0, 'surprisingly': 1.0, 'new': 1.0, 'literally': 1.0, 'picky': 1.0, 'product': 2.0, 'developmentally': 1.0, 'try': 1.0, 'use': 2.0, 'help': 1.0, 'happy': 2.0, 'my': 1.0, 'about': 1.0, 'express': 1.0, 'that': 3.0, 'is': 1.0, 'upstairs': 1.0, 'so': 3.0, 'easy': 1.0, 'it': 4.0, 'she': 1.0, 'daughter': 1.0, 'but': 1.0, 'four': 1.0, 'past': 1.0, 'using': 1.0, 'cleaned': 1.0, 'cut': 1.0, 'up': 2.0, 'the': 1.0, 'weekend': 1.0}
Word element => {'product': 1.0, 'i': 1.0, 'and': 1.0, 'have': 1.0, 't': 1.0, 'highly': 1.0, 'don': 1.0, 'a': 1.0, 'recommend': 1.0, 'easy': 1.0, 'invention': 1.0, 'pretty': 1.0, 'cook': 1.0, 'picky': 1.0, 'cool': 1.0, 'what': 1.0, 'meals': 1.0, 'now': 1.0, 'to': 2.0, 'special': 1.0, 'for': 1.0, 'eaters': 1.0, 'just': 1.0, 'use': 2.0, 'funbites': 1.0, 'you': 1.0, 's': 1.0, 'fun': 1.0, 'super': 2.0, 'this': 1.0, 'it': 1.0}
Word element => {'favorite': 1.0, 'and': 1.0, 'are': 1.0, 'my': 1.0, 'kids': 1.0, 'that': 1.0, 'were': 1.0, 'it': 1.0, 'both': 1.0, 'items': 2.0, 'so': 2.0, 'much': 1.0, 'to': 1.0, 'we': 1.0, 'funbites': 1.0, 'adults': 1.0, 'able': 1.0, 'use': 1.0, 'them': 1.0, 'many': 1.0, 'is': 1.0, 'for': 2.0, 'one': 1.0, 'of': 1.0}
Word element => {'at': 1.0, 'favorite': 1.0, 'tremendously': 1.0, 'of': 4.0, 'the': 8.0, 'on': 3.0, 'focus': 1.0, 'will': 1.0, 'could': 2.0, 'novel': 1.0, 'don': 1.0, 'isn': 1.0, 'approach': 1.0, 'but': 2.0, 'or': 1.0, 'food': 2.0, 'since': 1.0, 'day': 2.0, 'etc': 1.0, 'spend': 1.0, 'display': 1.0, 'positively': 1.0, 'wish': 1.0, 'helped': 1.0, 'them': 2.0, 'encourage': 1.0, 'has': 2.0, 'likely': 1.0, 'she': 8.0, 'read': 1.0, 'each': 1.0, 'nibble': 1.0, 'arrived': 1.0, 'wait': 1.0, 'product': 2.0, 'year': 1.0, 'love': 4.0, 'picky': 1.0, 'daughter': 4.0, 'actually': 1.0, 'us': 2.0, 'you': 2.0, 'starts': 1.0, 'thrilled': 1.0, 'that': 8.0, 'decisions': 1.0, 'because': 1.0, 'when': 3.0, 'before': 1.0, 'different': 2.0, 'use': 2.0, 'smaller': 1.0, 'two': 1.0, 'her': 13.0, 'little': 3.0, 'i': 18.0, 'broke': 1.0, 'easily': 1.0, 'making': 1.0, 'kitchen': 1.0, 'in': 4.0, 'best': 1.0, 'out': 3.0, 'ways': 1.0, 'very': 3.0, 'why': 1.0, 'dangerous': 1.0, 'squealed': 1.0, 'mentioned': 1.0, 'there': 1.0, 'know': 2.0, 'honey': 1.0, 'with': 3.0, 'oh': 1.0, 'a': 7.0, 'take': 1.0, 'then': 1.0, 'three': 1.0, 'was': 5.0, 'to': 17.0, 'now': 1.0, 'combat': 1.0, 'safety': 1.0, 'hurt': 1.0, 'thing': 1.0, 'surprise': 1.0, 'been': 1.0, 'talk': 1.0, 've': 1.0, 'something': 1.0, 'foods': 2.0, 'wants': 1.0, 'allow': 1.0, 'able': 1.0, 'get': 1.0, 'eater': 1.0, 'just': 1.0, 'and': 9.0, 'stir': 1.0, 'essentially': 1.0, 'down': 1.0, 'starving': 1.0, 'eat': 1.0, 't': 4.0, 'fun': 2.0, 'contraption': 1.0, 'every': 1.0, 'prepare': 1.0, 'first': 3.0, 'my': 9.0, 'are': 2.0, 'creates': 2.0, 'bite': 1.0, 'up': 1.0, 'sized': 1.0, 'gets': 1.0, 'more': 3.0, 'perfect': 1.0, 'fingers': 1.0, 'had': 3.0, 'funbites': 9.0, 'known': 1.0, 'heart': 3.0, 'piece': 1.0, 'help': 1.0, 'involved': 2.0, 'full': 1.0, 'we': 6.0, 'crying': 2.0, 'absolutely': 1.0, 'one': 2.0, 'this': 5.0, 'eyes': 1.0, 'hungry': 1.0, 'next': 1.0, 'extra': 1.0, 'time': 2.0, 'cut': 1.0, 'pink': 1.0, 'morsel': 1.0, 'it': 5.0, 'swear': 1.0, 'griffin': 1.0, 'would': 2.0, 'intrigued': 1.0, 'sworn': 1.0, 'seriously': 1.0, 'decreased': 1.0, 'remember': 1.0, 'break': 1.0, 'situation': 1.0, 'took': 1.0, 'hearts': 1.0, 'second': 1.0, 'attributes': 1.0, 'shaped': 2.0, 'by': 2.0, 'bright': 1.0, 'for': 3.0, 'shapes': 2.0, 'sizes': 1.0, 'as': 4.0, 'whole': 1.0, 'selects': 1.0, 'which': 1.0, 'stranger': 1.0, 'mention': 1.0, 's': 1.0, 'talking': 1.0, 'm': 1.0, 'meals': 4.0, 'doesn': 1.0, 'come': 2.0, 'delight': 1.0, 'all': 2.0, 'way': 1.0, 'saw': 1.0, 'have': 4.0, 'found': 1.0, 'hot': 1.0, 'pour': 1.0, 'sure': 1.0, 'triangles': 1.0, 'box': 1.0, 'if': 2.0, 'great': 1.0, 'about': 4.0, 'tool': 1.0, 'children': 1.0, 'want': 1.0, 'hands': 1.0, 'ages': 1.0, 'colors': 1.0, 'offers': 1.0, 'comes': 1.0, 'squares': 1.0, 'is': 6.0, 'slowly': 1.0, 'can': 1.0, 'preschool': 1.0, 'check': 1.0, 'review': 1.0, 'visiting': 1.0}
Word element => {'today': 1.0, 'pick': 1.0, 'as': 1.0, 'price': 1.0, 'affordable': 1.0, 'much': 1.0, 'up': 1.0, 'of': 1.0, 'even': 1.0, 'are': 1.0, 'perfect': 1.0, 'pieces': 1.0, 'size': 1.0, 'so': 2.0, 'small': 1.0, 'well': 1.0, 'a': 2.0, 'snacks': 1.0, 'pickest': 1.0, 'bite': 1.0, 'or': 1.0, 'snack': 1.0, 'to': 1.0, 'product': 1.0, 'few': 1.0, 'help': 1.0, 'little': 1.0, 'will': 1.0, 'more': 2.0, 'the': 3.0, 'great': 2.0, 'make': 1.0, 'learning': 1.0, 'lunch': 1.0, 'shapes': 1.0, 'lunches': 1.0, 'fun': 1.0, 'kids': 1.0, 'for': 3.0, 'eaters': 1.0, 'time': 1.0, 'they': 1.0, 'enjoy': 1.0, 'their': 1.0, 'and': 2.0}
Word element => {'other': 2.0, 'said': 1.0, 'little': 1.0, 'larger': 1.0, 'instead': 1.0, 'cube': 1.0, 'for': 1.0, 'known': 1.0, 'scrap': 2.0, 'do': 1.0, 'younger': 1.0, 'have': 3.0, 'when': 2.0, 'would': 4.0, 'wish': 1.0, 'this': 4.0, 'walked': 1.0, 'and': 4.0, 'there': 1.0, 'soon': 1.0, 'she': 4.0, 'easy': 1.0, 'left': 1.0, 'darn': 1.0, 'only': 2.0, 'quickly': 1.0, 'some': 1.0, 'we': 1.0, 'then': 1.0, 'use': 2.0, 'cut': 1.0, 'sturdy': 1.0, 'it': 5.0, 'thought': 2.0, 'was': 2.0, 'to': 7.0, 'probably': 1.0, 'any': 1.0, 'least': 1.0, 'leave': 1.0, 'as': 1.0, 'year': 1.0, 'product': 2.0, 'almost': 1.0, 'sustain': 1.0, 'can': 2.0, 'into': 1.0, 'really': 2.0, 'plain': 1.0, 'attractive': 1.0, 'with': 1.0, 'plenty': 2.0, 'time': 1.0, 'being': 1.0, 'crust': 1.0, 'very': 1.0, 'my': 3.0, 'serious': 1.0, 'asked': 1.0, 'if': 1.0, 'still': 2.0, 'plastic': 1.0, 'seriously': 1.0, 'i': 8.0, 't': 1.0, 'small': 1.0, 'a': 2.0, 'nothing': 1.0, 'out': 1.0, 'abuse': 1.0, 'concern': 1.0, 'which': 1.0, 'made': 2.0, 'breaking': 1.0, 'seems': 1.0, 'tried': 1.0, 'see': 1.0, 'of': 6.0, 'the': 10.0, 'kitchen': 1.0, 'slightly': 1.0, 'works': 1.0, 'anything': 1.0, 'apparently': 1.0, 'after': 1.0, 'excited': 1.0, 'shapes': 3.0, 'over': 2.0, 'geometric': 1.0, 'insisted': 1.0, 'but': 1.0, 'butter': 1.0, 'bread': 3.0, 'saw': 1.0, 'amount': 1.0, 'on': 3.0, 'had': 2.0, 'bella': 2.0, 'counter': 1.0, 'eating': 2.0, 'got': 1.0, 'pieces': 1.0, 'immediately': 1.0, 'immediate': 1.0, 'no': 1.0, 'or': 1.0, 'be': 1.0, 'foods': 1.0, 'toddlers': 1.0, 'is': 4.0, 'at': 1.0, 'has': 1.0, 'appeal': 1.0, 'old': 1.0, 'less': 1.0, '7': 1.0, 'discard': 1.0, 'are': 1.0, 'plus': 1.0, 'that': 2.0, 'result': 1.0, 'because': 1.0, 'wanted': 1.0}
Word element => {'good': 1.0, 'part': 1.0, 'they': 2.0, 'your': 1.0, 'jelly': 1.0, 'use': 1.0, 'loved': 2.0, 'through': 2.0, 'to': 2.0, 'tiny': 2.0, 'i': 2.0, 'cutter': 3.0, 'sandwiches': 1.0, 'press': 2.0, 'and': 3.0, 'this': 2.0, 'pancakes': 1.0, 'funbites': 2.0, 'help': 1.0, 'food': 2.0, 'heart': 1.0, 'even': 1.0, 'got': 1.0, 'grandsons': 1.0, 'grape': 1.0, 'the': 3.0, 'bread': 1.0, 'great': 1.0, 'cookies': 1.0, 'my': 1.0, 'made': 1.0, 'out': 1.0, 'being': 1.0, 'a': 1.0, 'of': 1.0, 'comes': 1.0, 'is': 1.0, 'really': 1.0, 'easy': 1.0, 'just': 1.0, 'ect': 1.0, 'bite': 1.0, 'pieces': 1.0, 'product': 1.0, 'for': 1.0, 'chees': 1.0, 'fruits': 1.0, 'size': 1.0, 'vegetables': 1.0}
Word element => {'look': 1.0, 'because': 1.0, '34': 2.0, 'them': 1.0, 'eat': 1.0, 'just': 1.0, 'keep': 1.0, 'did': 1.0, 'son': 1.0, 'wants': 1.0, 'different': 2.0, 'veggies': 2.0, 'hear': 1.0, 'most': 1.0, 'food': 1.0, 'complains': 1.0, 'they': 3.0, 'ever': 1.0, 'cook': 1.0, 'of': 2.0, 'war': 1.0, 'and': 4.0, 'as': 2.0, 'mom': 1.0, 'kids': 3.0, 'veggie': 1.0, 'coloring': 1.0, 'my': 4.0, 'fight': 1.0, 'with': 3.0, 'flowers': 1.0, 'many': 2.0, 'i': 2.0, 'everyday': 1.0, 'funbites': 1.0, 'a': 1.0, 'we': 1.0, 'was': 1.0, 'cool': 1.0, 'one': 1.0, 'the': 4.0, 'plates': 1.0, 'smart': 1.0, 'said': 1.0, 'in': 2.0, 'acquisitions': 1.0, 'gone': 1.0, 'no': 3.0, 'wars': 1.0, 'flavors': 1.0, 'tiny': 1.0, 'so': 2.0, 'bit': 1.0, 'are': 1.0, 'failing': 1.0, 'fights': 1.0}
Word element => {'highly': 1.0, 'holiday': 1.0, 'foods': 1.0, 'square': 1.0, 'get': 1.0, 'wait': 1.0, 'ones': 1.0, 'the': 1.0, 't': 1.0, 'up': 1.0, 'to': 2.0, 'sandwiches': 1.0, 'cut': 1.0, 'use': 1.0, 'this': 1.0, 'it': 2.0, 'finger': 1.0, 'for': 1.0, 'love': 1.0, 'can': 1.0, 'my': 1.0, 'our': 2.0, 'pancakes': 1.0, 'luv': 1.0, 'food': 1.0, 'season': 1.0, 'funbites': 1.0, 'we': 2.0, 'preschoolers': 1.0, 'recommend': 1.0, 'she': 1.0, 'shaped': 1.0, 'loves': 1.0, 'etc': 1.0, 'her': 1.0, 'heart': 1.0, 'i': 1.0}
Word element => {'with': 1.0, 'now': 1.0, 'an': 1.0, 'my': 1.0, 'sandwiches': 2.0, 'their': 1.0, 'layers': 1.0, 'her': 1.0, 'different': 1.0, 'see': 1.0, 'item': 1.0, 'also': 1.0, 'shapes': 1.0, 'only': 1.0, 'not': 1.0, 'addicted': 1.0, 'totally': 1.0, 'must': 1.0, 'have': 2.0, 'it': 1.0, 'heart': 2.0, 'out': 1.0, 'punches': 1.0, 'too': 1.0, 'and': 2.0, 'outer': 1.0, 'eating': 1.0, 'able': 1.0, 'puncher': 1.0, 'love': 1.0, 'for': 2.0, 'mine': 1.0, 'one': 1.0, 'parents': 1.0, 'cube': 1.0, 'new': 1.0, '2': 1.0, 'but': 1.0, 'can': 1.0, 'meal': 1.0, 'a': 5.0, 'is': 1.0, 'tool': 1.0, 'hassle': 1.0, 'arsenal': 1.0, 'on': 1.0, 'make': 1.0, 'your': 1.0, 'other': 1.0, 'anything': 1.0, 'using': 1.0, 'which': 1.0, 'like': 1.0, 'know': 1.0, 'than': 1.0, 'there': 1.0, 'kids': 2.0, 'square': 1.0, 'am': 1.0, 'again': 1.0, 'you': 1.0, 'what': 1.0, 'cute': 1.0, 'experience': 1.0, 'mommy': 1.0, 'styles': 1.0, 'are': 1.0, 'called': 1.0, 'yr': 1.0, 'meals': 1.0, 'easier': 1.0, 'has': 1.0, 'funbites': 1.0, 'created': 1.0, 'our': 1.0, 'to': 4.0, 'fun': 2.0, 'i': 1.0, 'become': 1.0, 'two': 1.0, 'the': 6.0, 'time': 3.0, 'sandwich': 1.0, 'shapers': 1.0, 'mosaic': 1.0, 'come': 1.0, 'in': 1.0, 'toddlers': 1.0, 'shaped': 1.0, 'thankfully': 1.0, 'adorable': 1.0, 'if': 1.0, 'being': 2.0}
Word element => {'her': 1.0, 'made': 1.0, 'to': 2.0, 'easy': 1.0, 'loved': 1.0, 'use': 1.0, 'funbites': 1.0, 'and': 1.0, 'cutter': 1.0, 'my': 1.0, 'using': 1.0, 'love': 1.0, 'way': 1.0, 'absolutely': 1.0, 'from': 1.0, 'heart': 1.0, 'a': 1.0, 'i': 2.0, 'unique': 1.0, 'your': 1.0, 'it': 1.0, 'this': 2.0, 'have': 1.0, 'lunch': 1.0, 'is': 1.0, 'the': 1.0, 'such': 1.0, 'food': 1.0, 'when': 1.0, 'daughter': 1.0}
Word element => {'facebook': 2.0, 'jellywafflescheck': 1.0, 'omelettepeanut': 1.0, 'them': 1.0, 'easy': 1.0, 'super': 1.0, 'else': 1.0, 'handwashed': 1.0, 'free': 1.0, 'bpa': 1.0, 'in': 2.0, '100': 1.0, 'press': 1.0, 'insert': 1.0, 'life': 1.0, 'mine': 1.0, '6': 1.0, '5': 1.0, 'about': 1.0, 'which': 1.0, 'made': 1.0, 'side': 2.0, 'rock': 1.0, 'grilled': 1.0, 'down': 1.0, 'pressing': 1.0, 'handles': 1.0, 'top': 3.0, 'on': 2.0, 'place': 1.0, 'are': 2.0, 'first': 1.0, 'dishwasher': 1.0, 'around': 1.0, 'turn': 1.0, 'could': 1.0, 'faster': 1.0, 'cutter': 2.0, 'squares': 2.0, 'completely': 1.0, 'funbite': 1.0, 'gobbled': 1.0, 'morning': 1.0, 'each': 1.0, 'pieces': 2.0, 'babies': 1.0, 'because': 1.0, 'that': 3.0, 'into': 2.0, 'would': 1.0, 'usa': 1.0, 'new': 1.0, 'something': 1.0, 'use': 4.0, 'put': 1.0, 'do': 1.0, 'popper': 2.0, 'picky': 1.0, 'for': 3.0, 'love': 1.0, 'get': 1.0, 'toast': 2.0, 'and': 3.0, 'tool': 1.0, 'eaters': 1.0, 'kids': 2.0, 'make': 1.0, 'pincer': 1.0, 'firmly': 1.0, '3': 1.0, 'cheesepizzamelondeli': 1.0, 'fun': 1.0, 'some': 1.0, 'to': 9.0, 'great': 2.0, 'shapes': 1.0, 'your': 5.0, 'feel': 1.0, 'a': 3.0, 'lew': 1.0, 'we': 2.0, 'review': 2.0, 'funbites': 8.0, 'innovative': 1.0, 'you': 4.0, 'what': 1.0, 'bug': 1.0, 'when': 1.0, 'than': 1.0, 'way': 2.0, 'kitchen': 1.0, 'making': 1.0, 'be': 1.0, 'hearts': 2.0, 'times': 1.0, 'momma': 1.0, 'i': 7.0, 'without': 1.0, 'cookie': 1.0, 'butter': 1.0, 'sandwichespancakeshamburgerscheeseegg': 1.0, 'but': 2.0, 'work': 1.0, 'cubes': 1.0, 'an': 1.0, 'by': 1.0, 'is': 1.0, 'cutters': 1.0, 'blog': 1.0, 'both': 1.0, 'instantly': 1.0, 'food': 4.0, 'or': 3.0, 'while': 1.0, 'bite': 2.0, 'sized': 2.0, 'grab': 1.0, 'only': 1.0, 'usually': 1.0, 'it': 3.0, 'their': 4.0, 's': 2.0, 'grasp': 1.0, 'self': 1.0, 'feeding': 1.0, 'website': 1.0, 'learning': 1.0, 'my': 3.0, 'children': 1.0, 'cuts': 1.0, 'like': 1.0, 'waste': 1.0, 'since': 1.0, 'cut': 3.0, 'they': 2.0, 'eat': 1.0, 'of': 5.0, 'the': 9.0, 'mealtimes': 1.0, 'out': 4.0, 'can': 2.0, 'so': 3.0, 'our': 1.0, 'how': 1.0, 'also': 1.0, 'received': 1.0, 'day': 1.0, 'little': 1.0, 'too': 1.0, 'try': 2.0, 'lot': 1.0, 'one': 1.0, 'was': 2.0, 'sick': 1.0, 'with': 1.0, 'tummy': 1.0, 'used': 1.0, 'ended': 1.0, 'up': 3.0}
Word element => {'preparation': 1.0, 'part': 1.0, 'whole': 1.0, 'pancakes': 1.0, 'your': 1.0, 'if': 1.0, 'also': 1.0, 'take': 1.0, 'then': 1.0, 'in': 2.0, 's': 1.0, 'but': 2.0, 'adorable': 1.0, 'heart': 2.0, 'snacks': 1.0, 'pizza': 2.0, 'like': 1.0, 'making': 1.0, 'cheese': 2.0, 'choose': 1.0, 'even': 1.0, 'hearts': 4.0, 'i': 12.0, 'fun': 7.0, 'on': 2.0, 'eat': 3.0, 'cut': 3.0, 'aren': 1.0, 'his': 1.0, 'pretty': 1.0, 'to': 16.0, 'actual': 1.0, 'now': 1.0, 'play': 2.0, 'eater': 1.0, 'and': 10.0, 'week': 1.0, 'funbites': 9.0, 'when': 2.0, 'times': 1.0, 'cutter': 2.0, 'squares': 2.0, 'offers': 1.0, 'up': 3.0, 'completely': 1.0, 'at': 1.0, 'look': 1.0, 'is': 5.0, 'there': 4.0, 'myself': 1.0, 'a': 3.0, 'shapes': 4.0, 'only': 1.0, 'dress': 1.0, 'for': 2.0, 'them': 1.0, 'next': 1.0, 'loves': 3.0, 'into': 3.0, 'because': 1.0, 'that': 2.0, 'thought': 1.0, 'already': 1.0, 'it': 5.0, 'love': 4.0, 'he': 4.0, 'plastic': 1.0, 'food': 6.0, 'or': 1.0, 'cute': 1.0, 'are': 3.0, 'two': 2.0, 'little': 1.0, 'wants': 1.0, 'foods': 2.0, 'something': 1.0, 'different': 1.0, 'clean': 1.0, 'you': 1.0, 'choice': 1.0, 'things': 1.0, 'can': 4.0, 'so': 3.0, 'was': 2.0, 'beautiful': 1.0, 'sandwiches': 2.0, 'family': 3.0, 'perfect': 1.0, 'snack': 1.0, 'with': 4.0, 'allows': 2.0, 'injure': 1.0, 'my': 4.0, 'me': 3.0, 'unique': 1.0, 'will': 1.0, 'shape': 1.0, 'use': 3.0, 'son': 3.0, 'create': 1.0, 'simple': 1.0, 't': 1.0, 'blade': 1.0, 'found': 1.0, 'easy': 1.0, 'certain': 1.0, 'sure': 1.0, 'pieces': 1.0, 'picky': 1.0, 'popper': 1.0, 'made': 1.0, 'make': 4.0, 'help': 1.0, 'pop': 1.0, 'out': 1.0, 'finger': 1.0, 'the': 8.0, 'of': 2.0, 'no': 1.0, 'just': 1.0, 'have': 2.0, 'remember': 1.0, 'hold': 1.0, 'chance': 1.0, 'using': 2.0, 'handles': 1.0, 'fingers': 1.0, 'not': 1.0, 'nearby': 1.0}
Word element => {'well': 1.0, 'shapes': 1.0, 'be': 1.0, 'kid': 1.0, 'not': 1.0, 'parent': 1.0, 'for': 1.0, 'definitely': 2.0, 'cuts': 1.0, 'hard': 1.0, 'cutter': 1.0, 'down': 1.0, 'pushing': 1.0, 'need': 1.0, 'do': 1.0, 'out': 2.0, 'purchasing': 1.0, 'made': 1.0, 'of': 2.0, 'way': 1.0, 'always': 1.0, 'up': 1.0, 'through': 1.0, 'then': 1.0, 'sturdy': 1.0, 'make': 2.0, 'on': 2.0, 'food': 1.0, 'i': 3.0, 'watermelon': 1.0, 'pieces': 1.0, 'piece': 1.0, 'with': 1.0, 'durable': 1.0, 'it': 3.0, 'first': 1.0, 'lunch': 1.0, 'the': 9.0, 'is': 2.0, 'more': 1.0, 'other': 2.0, 'will': 1.0, 'item': 1.0, 'plastic': 1.0, 'extremely': 1.0, 'as': 1.0, 'all': 1.0, 'to': 6.0, 'sure': 2.0, 'easy': 1.0, 'sandwhiches': 1.0, 'just': 1.0, 'use': 5.0, 'cutting': 1.0, 'rocking': 1.0, 'into': 1.0, 'or': 1.0, 'are': 1.0, 'push': 2.0, 'my': 1.0, 'funbite': 2.0, 'very': 1.0, 'this': 3.0, 'kids': 1.0, 'and': 5.0, 'too': 1.0, 'their': 1.0, 'snack': 1.0, 'eat': 1.0, 'if': 1.0, 'cut': 1.0, 'you': 2.0}
Word element => {'these': 1.0, 'will': 1.0, 'kids': 1.0, 'really': 1.0, 'pressing': 1.0, 'of': 1.0, 'to': 7.0, 'was': 6.0, 'led': 1.0, 'get': 1.0, 'easy': 3.0, 'me': 1.0, 'cantaloupe': 1.0, 'dough': 1.0, 'i': 1.0, 'threw': 1.0, 'on': 1.0, 'and': 3.0, 'play': 1.0, 'loved': 1.0, 'worried': 1.0, 'use': 1.0, 'daughter': 1.0, 'a': 1.0, 'we': 1.0, 'going': 1.0, 'clean': 1.0, 'lot': 1.0, 'shaped': 1.0, 'how': 1.0, 'my': 1.0, 'believe': 1.0, 'the': 4.0, 'heart': 1.0, 'it': 9.0, 'hard': 1.0, 'pieces': 1.0, 'pancakes': 1.0, 'next': 1.0, 'used': 1.0, 'in': 1.0, 'dishwasher': 1.0, 'ready': 1.0, 'love': 1.0, 'for': 1.0, 'directions': 1.0, 'but': 1.0, 'food': 1.0, 'eat': 1.0, 'cut': 2.0, 'project': 1.0, 'take': 1.0, 'about': 1.0, 'super': 1.0, 've': 1.0, 'would': 1.0, 'be': 1.0, 'because': 1.0}
Word element => {'loved': 1.0, 'v': 1.0, 'it': 1.0, 'only': 1.0, 'this': 1.0, 'have': 1.0, 'cute': 2.0, 'not': 1.0, 'for': 2.0, 'shapes': 1.0, 'is': 1.0, 'great': 1.0, 'ones': 1.0, 'the': 1.0, 'make': 1.0, 'little': 1.0, 'was': 1.0, 'to': 2.0, 'fin': 1.0, 'but': 1.0, 'day': 1.0, 'hearts': 1.0, 'also': 1.0, 'so': 1.0, 'food': 1.0}
Word element => {'lunches': 1.0, 'be': 1.0, 'bigger': 1.0, 'are': 1.0, 'that': 2.0, 'sandwiches': 1.0, 'make': 1.0, 'larger': 1.0, 'some': 1.0, 'see': 1.0, 'would': 2.0, 'a': 3.0, 'not': 1.0, 'choose': 1.0, 'from': 2.0, 'their': 1.0, 'making': 1.0, 'fun': 3.0, 'really': 1.0, 'customer': 1.0, 'pros': 1.0, 'shapes': 3.0, 'funbites': 2.0, 'had': 1.0, 'to': 8.0, 'own': 1.0, 'and': 3.0, 'events': 1.0, 'mini': 1.0, 'con': 1.0, 'get': 1.0, 'easy': 1.0, 'yr': 1.0, 'eaters': 2.0, 'kids': 1.0, 'perfect': 2.0, '7yr': 1.0, 'much': 1.0, 'old': 2.0, 'i': 1.0, '4': 1.0, 'uses': 1.0, 'so': 1.0, 'eat': 1.0, 'but': 1.0, 'food': 1.0, 'use': 1.0, 'sturdy': 1.0, 'creative': 1.0, 'cons': 1.0, 'way': 1.0, 'different': 1.0, 'good': 1.0, 'picky': 2.0, 'love': 2.0, 'for': 4.0, 'snacks': 1.0, 'bite': 1.0, 'service': 1.0, 'treat': 1.0, 'special': 1.0, 'multi': 1.0, 'size': 1.0, 'my': 1.0, 'cookies': 1.0, 'little': 2.0, 'construction': 1.0, 'friendly': 1.0}
Word element => {'toddler': 1.0, 'great': 1.0, 'the': 1.0, 'weebles': 1.0, 'of': 1.0, 'every': 1.0, 'one': 2.0, 'them': 1.0, 'a': 1.0, 'and': 1.0, 'played': 1.0, 's': 1.0, 'party': 1.0, 'toy': 1.0, 'old': 1.0, 'with': 2.0, '8': 1.0, 'had': 1.0, 'children': 2.0, 'year': 1.0}
Word element => {'grandchild': 1.0, 'do': 1.0, 'out': 1.0, 'free': 1.0, 'bpa': 1.0, 'also': 1.0, 'is': 1.0, 'other': 1.0, 'with': 1.0, 'come': 1.0, 'wait': 1.0, 'one': 2.0, 'cant': 1.0, 'at': 1.0, 'choke': 1.0, 'a': 2.0, 'wont': 1.0, 'shapes': 1.0, 'big': 1.0, 'if': 1.0, 'being': 1.0, 'pieces': 1.0, 'worry': 1.0, 'alot': 1.0, 'your': 1.0, 'make': 1.0, 'on': 1.0, 'have': 3.0, 'i': 5.0, 'them': 6.0, 'too': 2.0, 'and': 4.0, 'not': 1.0, 'me': 1.0, 'shape': 1.0, 'in': 1.0, 'of': 2.0, 'up': 2.0, 'available': 1.0, 'plus': 1.0, 'set': 3.0, 'used': 1.0, 'they': 2.0, 'or': 2.0, 'let': 1.0, 'deal': 1.0, 'possibly': 1.0, 'the': 6.0, 'such': 1.0, 'these': 1.0, 'are': 2.0, 'little': 1.0, 'foods': 1.0, 'tell': 1.0, 'funbites': 2.0, 'dont': 1.0, 'about': 2.0, 'good': 1.0, 'clean': 1.0, 'her': 1.0, 'different': 1.0, 'for': 4.0, 'like': 1.0, 'using': 1.0, 'purchase': 1.0, 'checked': 1.0, 'fact': 1.0, 'my': 1.0, 'daughter': 1.0, 'squares': 1.0, 'you': 3.0, 'when': 1.0, 'sure': 1.0, 'easy': 1.0, 'price': 1.0, 'absolutely': 1.0, 'nephew': 1.0, 'that': 1.0, 'loves': 1.0, 'use': 1.0, 'niece': 1.0, 'then': 1.0, 'heart': 1.0, 'she': 2.0, 'it': 1.0, 'so': 2.0, 'food': 2.0, 'all': 1.0, 'to': 5.0, 'cut': 2.0}
Word element => {'dinner': 1.0, 'size': 1.0, 'down': 1.0, 'essentially': 1.0, 'wonders': 1.0, 'littler': 1.0, 'you': 3.0, 'if': 2.0, 'eat': 1.0, 'like': 1.0, 'eaters': 1.0, 'pickiest': 1.0, 'through': 1.0, 'enough': 1.0, '4': 1.0, 'could': 1.0, 'old': 2.0, 'year': 2.0, 'work': 1.0, 'even': 1.0, 'took': 1.0, 'apples': 2.0, 'cut': 2.0, 'super': 1.0, 'all': 2.0, 'at': 1.0, 'lot': 1.0, 'who': 1.0, 'she': 1.0, 'be': 1.0, 'used': 1.0, 'can': 2.0, 'strength': 1.0, 'so': 1.0, 'do': 1.0, 'abe': 1.0, 'food': 1.0, 'slices': 1.0, 'but': 3.0, 'apple': 1.0, 'spent': 1.0, 'have': 2.0, 'proved': 1.0, 'portions': 2.0, 'teenage': 1.0, 'my': 3.0, 'went': 1.0, 'make': 3.0, 'girl': 1.0, 'moments': 1.0, 'on': 1.0, 'i': 7.0, 'when': 3.0, 'easy': 1.0, 'found': 2.0, 'kids': 1.0, 'using': 3.0, 'lunch': 1.0, 'which': 1.0, 'would': 1.0, 'time': 3.0, 'new': 1.0, 't': 3.0, 'a': 8.0, 'go': 1.0, 'works': 1.0, 'mother': 1.0, 'of': 3.0, 'the': 12.0, 'turns': 1.0, 'was': 3.0, 'to': 14.0, 'use': 1.0, 'lunches': 1.0, 'way': 1.0, 'getting': 1.0, 'jello': 2.0, 'isn': 1.0, 'therefore': 1.0, 'bread': 1.0, 'their': 1.0, 'younger': 1.0, 'funbites': 5.0, 'review': 1.0, 'cutting': 1.0, 'out': 1.0, 'fun': 5.0, 'best': 2.0, 'onto': 1.0, 'few': 1.0, 'just': 1.0, 'being': 1.0, 'how': 1.0, 'thing': 1.0, 'in': 1.0, 'nieces': 2.0, 'and': 4.0, 'nephews': 1.0, 'are': 2.0, '7': 1.0, 'up': 1.0, 'for': 1.0, 'treat': 1.0, 'popular': 1.0, 'came': 1.0, 'visit': 1.0, 'let': 1.0, 'always': 1.0, 'next': 1.0, 'them': 1.0, 'started': 1.0, 'as': 3.0, 'town': 1.0, 'family': 1.0, 'sandwiches': 2.0, 'squished': 1.0, 'it': 6.0, 'jigglers': 2.0, 'making': 2.0, 'cheese': 2.0, 'had': 1.0, 'we': 2.0, 'then': 1.0, 'take': 1.0, 'snack': 1.0, 'with': 2.0, 'mind': 1.0, 'moved': 1.0, 'get': 1.0, 'hang': 1.0, 'little': 3.0, 'more': 3.0, 'challenging': 1.0, 'that': 3.0, 'because': 1.0, 'didn': 2.0}
Word element => {'cut': 1.0, 'handles': 1.0, 'one': 1.0, 'use': 1.0, 'how': 1.0, 'pieces': 1.0, 'parts': 1.0, 'then': 1.0, 'through': 1.0, 'any': 1.0, 'to': 3.0, 'if': 2.0, 'need': 1.0, 'press': 2.0, 'not': 2.0, 'wrong': 1.0, 'you': 2.0, 'when': 1.0, 'messy': 1.0, 'both': 1.0, 'fun': 1.0, 'it': 9.0, 'older': 1.0, 'try': 1.0, 'only': 1.0, 'piece': 2.0, 'quick': 1.0, 'with': 2.0, 'mess': 1.0, 'i': 3.0, 'and': 3.0, 'my': 2.0, 've': 1.0, 'pancakes': 1.0, 'has': 1.0, 'time': 1.0, 'these': 1.0, 'waffles': 1.0, 'the': 8.0, 's': 5.0, 'a': 4.0, 'mostly': 1.0, 'or': 1.0, 'for': 1.0, 'year': 1.0, 'old': 1.0, 'problems': 1.0, 'on': 2.0, 'little': 1.0, 'that': 1.0, 'been': 1.0, 'second': 1.0, 'cheese': 1.0, 'because': 1.0, 'toast': 1.0, 'was': 3.0, 'hearts': 1.0, 'cutter': 1.0, 'used': 1.0, 'square': 1.0, 'this': 1.0, 'kids': 1.0, 'are': 1.0, 'loosen': 1.0, 'favorite': 1.0, 'food': 1.0, 'but': 2.0, 'using': 3.0, 'like': 1.0, 'just': 1.0, 'few': 1.0, 'different': 1.0, '1': 1.0, 'shapes': 1.0, 'had': 1.0, 'thought': 1.0}
Word element => {'will': 1.0, 'investment': 1.0, 'be': 1.0, 'won': 1.0, 'today': 1.0, 'of': 2.0, 'or': 2.0, 'cube': 1.0, 'purchasing': 1.0, 'the': 3.0, 'these': 1.0, 'bites': 1.0, 'tools': 1.0, 'this': 1.0, 'with': 1.0, 'quick': 1.0, 'heart': 1.0, 'for': 3.0, 'picky': 1.0, 'you': 6.0, 't': 2.0, 'go': 1.0, 'wrong': 1.0, 'different': 1.0, 'set': 1.0, 'square': 1.0, 'can': 2.0, 'economical': 1.0, 'shaped': 3.0, 'and': 1.0, 'eater': 1.0, 'best': 1.0, 'fun': 2.0, 'both': 2.0, 'worlds': 1.0, 'parties': 1.0, 'in': 1.0, 'that': 2.0, 'small': 1.0, 'have': 1.0, 'yours': 1.0, 'use': 2.0, 'sorry': 1.0, 'either': 1.0, 'to': 2.0, 'sized': 1.0, 'foods': 2.0, 'make': 2.0, 'your': 2.0, 'them': 1.0, 'cut': 1.0, 'so': 3.0, 'get': 2.0, 'easy': 1.0}
Word element => {'good': 1.0, 'quality': 1.0, 'very': 1.0, 'was': 1.0, 'lunch': 1.0, 'better': 1.0, 'they': 1.0, 'these': 1.0, 'i': 3.0, 'when': 1.0, 'daughters': 1.0, 'than': 1.0, 'use': 1.0, 'all': 1.0, 'time': 1.0, 'expecting': 1.0, 'am': 1.0, 'are': 1.0, 'the': 1.0, 'my': 1.0, 'making': 1.0}
Word element => {'to': 1.0, 'recommend': 1.0, 'would': 1.0, 'friends': 1.0, 'product': 1.0, 'are': 1.0, 'boring': 1.0, 'sandwiches': 1.0, 'very': 1.0, 'butter': 1.0, 'of': 1.0, 'peanut': 1.0, 'fun': 1.0, 'out': 1.0, 'shapes': 1.0, 'love': 1.0, 'makes': 1.0, 'we': 1.0, 'i': 2.0, 'and': 2.0, 'do': 1.0, 'my': 1.0, 'happy': 1.0, 'kids': 1.0, 'too': 1.0, 'this': 1.0, 'it': 2.0, 'with': 1.0}
Word element => {'mine': 1.0, 'are': 1.0, 'opinions': 1.0, 'my': 1.0, 'complementary': 1.0, 'i': 1.0, 'the': 1.0, 'dishwasher': 1.0, 'in': 2.0, 'when': 1.0, 'no': 1.0, 'clean': 1.0, 'fruit': 1.0, 'it': 3.0, 'this': 1.0, 'with': 1.0, 'quick': 1.0, 'come': 1.0, 'exchange': 1.0, 'them': 1.0, 'waffles': 1.0, 'on': 2.0, 'review': 1.0, 'funbites': 2.0, 'have': 2.0, 'meal': 1.0, 'using': 1.0, 'product': 1.0, 'for': 3.0, 'way': 1.0, 'parents': 1.0, '2': 1.0, 'food': 2.0, 'whenever': 1.0, 'problems': 1.0, 'old': 1.0, 'sandwiches': 1.0, 'cut': 2.0, 'up': 2.0, 've': 1.0, 'having': 1.0, 'used': 1.0, 'year': 1.0, 'his': 1.0, 'down': 1.0, 'possible': 1.0, 'all': 1.0, 'to': 2.0, 'our': 2.0, 'toss': 1.0, 'and': 3.0, 'do': 1.0, 'really': 1.0, 'been': 1.0, 'loves': 1.0, 's': 1.0, 'we': 3.0, 'a': 2.0, 'cuts': 1.0, '100': 1.0, 'received': 1.0, 'he': 1.0, 'prep': 1.0, 'time': 1.0, 'easy': 1.0, 'sure': 1.0, 'more': 1.0, 'is': 1.0, 'cutters': 1.0}
Word element => {'even': 1.0, 'before': 1.0, 'have': 1.0, 'kids': 1.0, 'devoured': 1.0, 'fresh': 1.0, 'course': 1.0, 'will': 1.0, 'squares': 1.0, 'to': 1.0, 'make': 1.0, 'the': 1.0, 'and': 3.0, 'cutter': 1.0, 'realize': 1.0, 'their': 1.0, 'playing': 1.0, 'kiddos': 1.0, 'funbites': 1.0, 'fruit': 1.0, 'you': 1.0, 'food': 2.0, 'try': 1.0, 'can': 1.0, 'grilled': 1.0, 'it': 3.0, 'with': 3.0, 'hearts': 1.0, 'they': 1.0, 'your': 3.0, 'love': 1.0, 'for': 1.0, 'enjoy': 1.0, 'cheese': 1.0, 'cookies': 1.0, 'set': 1.0, 'of': 1.0}
Word element => {'your': 1.0, 'daniella': 1.0, 'choose': 1.0, 'recommend': 1.0, 'enhances': 1.0, 'should': 1.0, 'crib': 1.0, 'to': 1.0, 'expect': 1.0, 'would': 2.0, 'her': 2.0, 'goes': 1.0, 'cocalo': 1.0, 'bed': 1.0, 'for': 3.0, 'daughter': 1.0, 'baby': 2.0, 'my': 1.0, 'the': 5.0, 'fits': 1.0, 'out': 1.0, 'bedding': 2.0, 'is': 2.0, 'room': 1.0, 'you': 1.0, 's': 1.0, 'so': 1.0, 'i': 3.0, 'purchased': 1.0, 'picked': 1.0, 'with': 1.0, 'this': 1.0, 'it': 4.0, 'as': 2.0, 'very': 1.0, 'perfectly': 1.0, 'and': 2.0, 'if': 1.0, 'pretty': 1.0, 'set': 1.0}
Word element => {'appearance': 1.0, 'happy': 1.0, 'are': 1.0, 'in': 1.0, 'came': 1.0, 'separately': 1.0, 'nature': 1.0, 'mood': 1.0, 'with': 2.0, 'it': 2.0, 'also': 1.0, 'unique': 1.0, 'the': 6.0, 'made': 1.0, 'out': 1.0, 'product': 1.0, 'for': 2.0, 'crib': 1.0, 'perfect': 1.0, 'this': 2.0, 'soft': 1.0, 'set': 2.0, 'of': 3.0, 'wonderful': 1.0, 'really': 1.0, 'second': 1.0, 'valance': 1.0, 'colors': 1.0, 'lots': 2.0, 'quality': 1.0, 'baby': 1.0, 'very': 1.0, 'textures': 1.0, 'was': 3.0, 'to': 2.0, 'my': 1.0, 'grand': 1.0, 'nursery': 1.0, 'perfectly': 1.0, 'bumper': 1.0, 'and': 4.0, 'sold': 1.0, 'sheet': 2.0, 'so': 1.0, 'watch': 1.0, 'that': 2.0, 'fabrics': 1.0, 'needed': 1.0, 'easy': 1.0, 'we': 2.0, 's': 1.0, 'a': 1.0, 'but': 1.0, 'find': 1.0, 'one': 1.0, 'matched': 1.0}
Word element => {'attractive': 1.0, 'for': 1.0, 'love': 1.0, 'excited': 1.0, 'fantastic': 1.0, 'sides': 1.0, 'due': 1.0, 'and': 1.0, 'starting': 1.0, 'is': 2.0, 'changed': 1.0, 'all': 1.0, 'snickerdoodle': 1.0, 'the': 4.0, '3rd': 1.0, 'how': 1.0, 'bumper': 3.0, 'one': 1.0, 'bought': 1.0, 'winter': 1.0, 'fact': 1.0, 'my': 1.0, 're': 1.0, 'are': 2.0, 'not': 1.0, 'that': 1.0, 'set': 1.0, 'over': 2.0, 'child': 1.0, 'made': 1.0, 'we': 1.0, 'separate': 1.0, 'other': 1.0, '4': 1.0, 'i': 3.0, 'two': 1.0, 'this': 2.0, 'kids': 1.0, 'so': 1.0, 'its': 1.0, 'much': 1.0, '16': 1.0, 'teenagers': 1.0, 'in': 1.0, 'm': 1.0, 'years': 1.0, 'very': 2.0, 'has': 1.0, 'well': 1.0}
Word element => {'cute': 1.0, 'also': 1.0, 'patterns': 1.0, 'him': 1.0, 'and': 2.0, '18mo': 1.0, 'used': 1.0, 'work': 1.0, 'an': 1.0, 'bibs': 1.0, 'thick': 1.0, 'is': 1.0, 'i': 1.0, 'are': 2.0, 'great': 1.0, 'these': 1.0, 'the': 1.0, 'fit': 1.0, 'with': 1.0, 'he': 1.0, 'very': 2.0, 'big': 1.0, 'well': 1.0, 'a': 1.0, 'they': 2.0, 'boy': 1.0}
Word element => {'our': 1.0, 'on': 1.0, 'nice': 1.0, 'is': 1.0, 'personalization': 1.0, 'was': 2.0, 'tree': 1.0, 'for': 1.0, 'free': 1.0, 'manner': 1.0, 'ornament': 2.0, 'and': 2.0, 'keepsake': 1.0, 'year': 1.0, 'timely': 1.0, 'very': 1.0, 'gorgeous': 1.0, 'a': 2.0, 'the': 2.0, 'neat': 1.0, 'received': 1.0, 'smudge': 1.0, 'in': 1.0, 'also': 1.0, 'little': 1.0, 'penmanship': 1.0, 'this': 2.0, 'looked': 1.0}
Word element => {'all': 1.0, 'cute': 1.0, 'ugly': 1.0, 'is': 1.0, 'sent': 1.0, 'they': 1.0, 'arrived': 1.0, 'the': 3.0, 'company': 1.0, 'at': 1.0, 'let': 1.0, 'when': 1.0, 'bear': 3.0, 'i': 1.0, 'sells': 1.0, 'product': 2.0, 'totally': 1.0, 'specifically': 1.0, 'return': 1.0, 'a': 1.0, 'this': 2.0, 'it': 2.0, 'now': 1.0, 'was': 1.0, 'not': 2.0, 'different': 1.0, 'who': 1.0, 'will': 1.0, 'and': 2.0, 'chose': 1.0, 'me': 2.0}
Word element => {'versions': 1.0, 'off': 1.0, 'are': 1.0, 'sellers': 1.0, 'shipped': 1.0, 'only': 1.0, 'online': 1.0, 'third': 1.0, 'out': 1.0, 'by': 1.0, 'just': 1.0, 'showing': 1.0, 'it': 2.0, 'from': 1.0, 'hard': 1.0, 'turtle': 1.0, 'item': 1.0, 'will': 1.0, 'cloud': 1.0, 'color': 2.0, 'loved': 1.0, 'delivering': 1.0, '29': 1.0, 'amazon': 2.0, 'use': 1.0, 'son': 1.0, 'daughter': 1.0, 'find': 1.0, '99': 1.0, '34': 2.0, 'warehouse': 1.0, 'ladybug': 1.0, 'is': 3.0, 'now': 1.0, 'to': 1.0, 'knock': 1.0, 'stores': 1.0, 'pink': 1.0, 'buying': 1.0, 'be': 1.0, 'up': 1.0, 'at': 1.0, 'blue': 3.0, 'buy': 2.0, 'started': 1.0, 'baby': 1.0, 'for': 2.0, 'a': 1.0, '20': 1.0, 'unfortunately': 1.0, 'store': 1.0, 'trust': 1.0, 'coupon': 1.0, 'better': 1.0, 'if': 2.0, 'on': 1.0, 'otherwise': 1.0, 'enjoying': 1.0, 'and': 2.0, 'sold': 2.0, 'party': 1.0, 'my': 2.0, 'b': 1.0, 'the': 3.0, 'deal': 1.0, 'website': 1.0}
Word element => {'again': 1.0, 'i': 2.0, 'much': 1.0, 'also': 1.0, 'used': 1.0, 'one': 1.0, 'bought': 1.0, 'color': 2.0, 'my': 5.0, 'happy': 1.0, 'liked': 1.0, 'options': 1.0, 'different': 1.0, 'of': 1.0, 'godson': 1.0, 'this': 3.0, 'it': 2.0, 'he': 1.0, 'was': 1.0, 'to': 1.0, 'turtle': 2.0, 'nice': 1.0, 'great': 2.0, 'orange': 1.0, 'the': 4.0, '2': 1.0, 'adorable': 1.0, 'matches': 1.0, 'son': 2.0, 'year': 2.0, 'are': 2.0, 'quality': 1.0, 'buy': 1.0, 'blue': 1.0, 'except': 1.0, 'on': 1.0, 'is': 3.0, 'would': 1.0, 'settings': 1.0, '5': 1.0, 'room': 2.0, 'see': 1.0, 'very': 1.0, 'little': 1.0, 'dark': 1.0, 'and': 5.0, 'too': 1.0, 'green': 1.0, 'old': 1.0, 'amazing': 1.0, 's': 1.0, 'a': 1.0, 'we': 1.0, 'in': 1.0, 'olds': 1.0, 'so': 1.0, 'moon': 1.0, 'product': 1.0, 'for': 2.0, 'stars': 1.0}
Word element => {'problem': 1.0, 'a': 1.0, 'solved': 1.0, 'efficiently': 1.0, 'they': 1.0, 'service': 1.0, 'highly': 1.0, 'very': 1.0, 'and': 2.0, 'it': 1.0, 'company': 1.0, 'the': 1.0, 'grandson': 1.0, 'loves': 1.0, 'this': 1.0, 'recommend': 1.0, 'has': 1.0, 'customer': 1.0, 'excellent': 1.0, 'fast': 1.0}
Word element => {'wipe': 1.0, 'per': 1.0, 'is': 1.0, 'that': 1.0, 'write': 1.0, 'product': 1.0, 'it': 1.0, 'meal': 1.0, 'soft': 1.0, 'high': 1.0, 'cute': 1.0, 'very': 2.0, 'quality': 1.0, 'wipes': 4.0, 'and': 2.0, 'the': 4.0, 'are': 2.0, 'clothes': 1.0, 'prints': 1.0, 'clean': 1.0, 'them': 1.0, 'price': 1.0, 'baby': 1.0, 'says': 1.0, 'up': 2.0, 'bottom': 1.0, 'go': 1.0, 'sweetbottoms': 1.0, 'i': 1.0, 'after': 1.0, 'so': 1.0, 'in': 1.0, 'wash': 1.0, 'use': 1.0, 'for': 1.0, 'nose': 1.0, 'on': 1.0}
Word element => {'long': 1.0, 'expect': 1.0, 'time': 1.0, 'so': 1.0, 'clothing': 1.0, 'or': 1.0, 'diapers': 1.0, 'of': 1.0, 'last': 1.0, 'load': 1.0, 'tbsp': 1.0, 'takes': 1.0, 'it': 1.0, 'packed': 1.0, 'comes': 1.0, 'but': 1.0, 'an': 1.0, 'note': 1.0, 'seems': 1.0, 'also': 1.0, 'happy': 1.0, 'really': 1.0, 'real': 1.0, 'see': 1.0, 'detergent': 1.0, 'bag': 1.0, 'wanted': 1.0, 'ammonia': 1.0, 'was': 1.0, 'soak': 1.0, 'would': 1.0, 'thought': 1.0, 'to': 3.0, 'our': 1.0, '20': 1.0, 'with': 3.0, 'i': 3.0, 'issues': 1.0, 'small': 1.0, 'have': 2.0, 'been': 1.0, 'developed': 1.0, 'a': 2.0, 'we': 3.0, 'do': 1.0, 'only': 2.0, 'try': 1.0, 'used': 1.0, 'and': 2.0, 'issue': 1.0, '1': 2.0, 'product': 1.0, 'for': 2.0, 'entire': 1.0, 'months': 1.0, 'one': 1.0, 'recently': 1.0, 'cloth': 1.0, 'rng': 1.0, 'stinkies': 1.0, 'if': 1.0, 'the': 5.0, 'this': 2.0, 'based': 1.0, 'up': 1.0, 'diapering': 1.0, 'in': 2.0, 'improvement': 1.0, 'build': 1.0, 'from': 2.0, 'day': 1.0, 'sprout': 1.0, 'brand': 2.0, 'noticed': 1.0, 'd': 1.0, 'trusted': 1.0, 'after': 1.0, 'smells': 1.0, 'eco': 1.0}
Word element => {'kiddos': 1.0, 'future': 1.0, 'rotation': 1.0, 'be': 1.0, 'still': 1.0, 'will': 1.0, 'home': 1.0, 'daily': 1.0, 'they': 1.0, 'well': 1.0, 'their': 1.0, '6': 1.0, 'pricey': 1.0, 'use': 1.0, 'rash': 1.0, 'diaper': 1.0, 'from': 1.0, 'tender': 1.0, 'when': 2.0, 'wonderfully': 1.0, 'side': 1.0, 'heavy': 1.0, 'plush': 1.0, 'skin': 1.0, 'irritated': 1.0, 'along': 1.0, 'cleaning': 2.0, 'of': 2.0, 'few': 1.0, 'have': 1.0, 'worth': 2.0, 'but': 3.0, 'quality': 2.0, 'economically': 1.0, 'that': 2.0, 'stash': 1.0, 'velvety': 1.0, 'i': 3.0, 'sure': 1.0, 'get': 2.0, 'and': 3.0, 'pack': 1.0, 'works': 1.0, 'do': 1.0, 'entire': 1.0, 'hand': 1.0, 'which': 1.0, 'nice': 1.0, 'everyday': 1.0, 'beautifully': 1.0, 'these': 4.0, 'is': 2.0, 'more': 1.0, 'done': 1.0, 'due': 1.0, 'my': 2.0, 'bottoms': 1.0, 'were': 1.0, 'high': 1.0, 'are': 4.0, 'any': 1.0, 'to': 3.0, 'had': 1.0, 'soft': 1.0, 'wish': 1.0, 'durable': 1.0, 'with': 1.0, 'higher': 1.0, 'it': 2.0, 'the': 5.0, 'job': 2.0, 'm': 1.0, 'price': 1.0, 'cost': 1.0, 've': 1.0, 'in': 3.0, 'fill': 1.0, 'priced': 1.0, 'on': 1.0, 'absorbent': 1.0, 'gaps': 1.0, 'grovia': 1.0, 'thirsties': 1.0, 's': 1.0, 'a': 3.0, 'for': 3.0, 'wipes': 4.0, 'tag': 1.0, 'clean': 1.0, 'wash': 1.0, 'up': 3.0, 'come': 1.0, 'however': 1.0}
Word element => {'totally': 1.0, 'fall': 1.0, 'they': 1.0, 'after': 1.0, 'kids': 1.0, 'timer': 1.0, 'love': 1.0, 'it': 4.0, 'and': 1.0, 'asleep': 1.0, 'has': 1.0, 'worth': 1.0, 'off': 1.0, '45': 1.0, 'a': 1.0, 'minute': 1.0, 'shuts': 1.0, 'so': 1.0}
Word element => {'keep': 1.0, 'helps': 1.0, 'mind': 1.0, 'false': 1.0, 'a': 1.0, 'than': 1.0, 'practicality': 1.0, 'messes': 1.0, 'much': 1.0, 'have': 1.0, 'dual': 1.0, 'far': 1.0, 'so': 3.0, 'for': 1.0, 'is': 1.0, 'washing': 1.0, 'insert': 1.0, 'will': 1.0, 'changes': 2.0, 'diaper': 1.0, 'as': 2.0, 'want': 1.0, 'big': 1.0, 'mistake': 1.0, 'we': 1.0, 'go': 1.0, 'fairly': 1.0, 't': 5.0, 's': 1.0, 'loose': 1.0, 'green': 1.0, 'when': 2.0, 'times': 1.0, 'unless': 1.0, 'you': 1.0, 'daughter': 1.0, 'idea': 1.0, 'sizes': 1.0, 'using': 1.0, 'know': 1.0, 'too': 1.0, 'one': 1.0, 'bought': 1.0, 'them': 3.0, 'they': 8.0, 'pocket': 1.0, 'many': 1.0, 'she': 1.0, 'outfit': 1.0, 'it': 4.0, 'nice': 1.0, 'little': 1.0, 'single': 1.0, 'peace': 1.0, 'since': 2.0, '13': 1.0, 'months': 2.0, 'legs': 1.0, 've': 2.0, 'me': 1.0, 'my': 3.0, 'wouldn': 1.0, 'started': 2.0, 'diapering': 1.0, 'in': 3.0, 'used': 2.0, 'lbs': 1.0, 'was': 4.0, 'were': 2.0, 'recommend': 1.0, '3': 1.0, 'on': 2.0, 'rated': 1.0, '12': 1.0, 'had': 1.0, 'cloth': 3.0, 'i': 9.0, 'old': 1.0, 'made': 1.0, 'out': 2.0, 'third': 1.0, 'with': 2.0, 'that': 2.0, 'problems': 1.0, 'everywhere': 1.0, 'second': 1.0, 'worked': 1.0, 'needle': 1.0, 'not': 1.0, 'say': 1.0, 'uniform': 1.0, 're': 3.0, 'girl': 1.0, 'especially': 1.0, 'bubblegum': 1.0, 'periwinkle': 1.0, 'but': 2.0, 'past': 1.0, 'to': 1.0, 'diapers': 4.0, 'first': 1.0, 'are': 1.0, 'different': 1.0, 'just': 2.0, 'gussets': 1.0, 'leaked': 1.0, 'don': 3.0, 'work': 1.0, 'over': 1.0, 'tried': 1.0, 'multiple': 1.0, 'and': 5.0, 'anyone': 1.0, 'time': 1.0, 'leak': 2.0, 'none': 1.0, 'the': 8.0, 'of': 4.0, 'all': 1.0, 'other': 2.0, 'manufactured': 1.0, 'hasn': 1.0, 'biggest': 1.0, 'only': 1.0, 'ahhh': 1.0, 'these': 2.0, 'still': 1.0, 'every': 1.0, 'if': 2.0, 'size': 2.0, 'incorrect': 1.0, 'shoddy': 1.0, 'craftsmanship': 1.0}
Word element => {'worth': 1.0, 'is': 2.0, 'in': 1.0, 'i': 3.0, 'purchasing': 1.0, 'one': 1.0, 'see': 1.0, 'the': 3.0, 'soooo': 1.0, 'that': 1.0, 'there': 1.0, 'title': 1.0, 'should': 1.0, 'have': 1.0, 'what': 1.0, 'before': 1.0, 'only': 1.0, 'misleading': 1.0, 'this': 1.0, 'read': 1.0, 'paid': 1.0, 'reviews': 1.0, 'not': 1.0, 'description': 1.0, 'because': 1.0, 'now': 1.0, 'was': 1.0}
Word element => {'daughter': 1.0, 'in': 1.0, 'wife': 1.0, 'so': 1.0, 'well': 1.0, 'is': 1.0, 'uses': 1.0, 'when': 1.0, 'or': 1.0, 'i': 1.0, 'does': 1.0, 'not': 1.0, 'ok': 1.0, 'very': 1.0, 'but': 1.0, 'have': 1.0, 'this': 2.0, 'fit': 1.0, 'be': 1.0, 'to': 2.0, 'the': 1.0, 'my': 3.0, 'toilet': 2.0}
Word element => {'when': 1.0, 'quick': 1.0, 'it': 2.0, 'at': 1.0, 'need': 2.0, 'a': 2.0, 'kinda': 1.0, 'you': 2.0, 'pain': 1.0, 'to': 2.0, 'store': 1.0, 'in': 1.0, 'small': 1.0, 'get': 1.0, 'bathroom': 1.0, 'but': 1.0}
Word element => {'cute': 1.0, 'lime': 1.0, 'secure': 1.0, 'for': 1.0, 'daughter': 1.0, 'in': 1.0, 'made': 1.0, 'newly': 1.0, 'white': 1.0, 'fits': 1.0, 'and': 2.0, 'ring': 1.0, 'very': 2.0, 'pleased': 1.0, 'came': 1.0, 'is': 2.0, 'it': 3.0, 'with': 1.0, 'are': 1.0, 'the': 1.0, 'we': 1.0, 'our': 1.0, 'potty': 1.0, 'trained': 1.0, 'color': 1.0, 'well': 2.0, 'a': 1.0}
Word element => {'are': 1.0, 'it': 1.0, 'take': 1.0, 'so': 1.0, 'light': 1.0, 'we': 1.0, 'stable': 1.0, 'u': 1.0, 'clean': 1.0, 'this': 1.0, 'fit': 1.0, 'with': 2.0, 'on': 1.0, 'satisfied': 1.0, 'perfect': 1.0, 'all': 1.0, 'easy': 2.0, 'product': 1.0, 'to': 2.0, 'very': 3.0, 'toilets': 1.0, 'and': 1.0}
Word element => {'bathroom': 1.0, 'for': 1.0, 'buy': 1.0, 'this': 2.0, 'another': 1.0, 'don': 1.0, 'kids': 1.0, 'but': 1.0, 'easy': 1.0, 'cleans': 1.0, 't': 1.0, 'the': 3.0, 'is': 1.0, 'bath': 1.0, 'like': 1.0, 'and': 1.0, 'part': 1.0, 'in': 2.0, 'nice': 1.0, 'center': 1.0, 'to': 1.0, 'had': 1.0, 'so': 1.0, 'we': 1.0, 'main': 1.0, 'keep': 1.0, 'raised': 1.0, 'our': 1.0, 'half': 1.0}
Word element => {'t': 1.0, 'doesn': 1.0, 'he': 1.0, 'forward': 1.0, 'lean': 1.0, 'has': 1.0, 'grandson': 1.0, 'fit': 2.0, 'not': 2.0, 'does': 2.0, 'pros': 1.0, 'is': 1.0, 'nice': 1.0, 'takes': 1.0, 'over': 1.0, 'up': 2.0, 'and': 2.0, 'sturdy': 1.0, 'cup': 1.0, 'high': 1.0, 'closet': 1.0, 'cons': 1.0, 'clean': 1.0, 'little': 2.0, 'room': 1.0, 'easily': 1.0, 'in': 4.0, 'are': 1.0, 'small': 2.0, 'so': 2.0, 'toilet': 2.0, 'seats': 1.0, 'had': 1.0, 'all': 2.0, 'seat': 2.0, 'to': 2.0, 'handles': 1.0, 'switch': 1.0, 'wanted': 1.0, 'stores': 1.0, 'with': 1.0, 'looks': 1.0, 'it': 1.0, 'this': 1.0, 'bathroom': 1.0, 'my': 1.0, 'another': 1.0, 'one': 2.0, 'pee': 1.0, 'the': 2.0, 'enough': 1.0, 'house': 1.0, 'would': 1.0, 'water': 1.0, 'front': 1.0, 'stick': 1.0}
Word element => {'be': 1.0, 'like': 1.0, 'potty': 1.0, 'bathroom': 1.0, 'the': 1.0, 'find': 1.0, 'if': 2.0, 'i': 2.0, 'a': 1.0, 'see': 1.0, 'front': 1.0, 'works': 1.0, 'long': 1.0, 'looks': 1.0, 'longer': 1.0, 'said': 1.0, 'is': 2.0, 'have': 1.0, 'will': 1.0, 'back': 1.0, 'but': 1.0, 'get': 1.0, 'kid': 1.0, 'can': 1.0, 'toilet': 1.0, 'those': 1.0, 'it': 5.0, 'this': 2.0, 'excited': 1.0, 'fit': 1.0, 'should': 2.0, 'too': 2.0, 'reviews': 1.0, 'slightly': 1.0, 'to': 2.0, 'was': 1.0, 'large': 1.0, 'for': 2.0, 'awesome': 1.0, 'that': 2.0, 'our': 1.0, 'might': 1.0, 'read': 1.0, 'so': 2.0, 'rounded': 1.0, 'just': 1.0, 'seat': 3.0}
Word element => {'out': 1.0, 'won': 1.0, 'certain': 1.0, 'size': 1.0, 'adjustable': 1.0, 'have': 1.0, 'not': 1.0, 'does': 1.0, 'instead': 1.0, 'baby': 1.0, 'instant': 1.0, 'experience': 1.0, 'training': 1.0, 'potty': 2.0, 'whole': 1.0, 'this': 1.0, 'into': 1.0, 'or': 1.0, 'round': 1.0, 'am': 1.0, 'when': 1.0, 'snap': 1.0, 'the': 6.0, 'it': 4.0, 'he': 1.0, 'didn': 1.0, 'but': 2.0, 'sitting': 1.0, 'securely': 1.0, 'pop': 1.0, 'take': 1.0, 'seems': 1.0, 'in': 2.0, 'bijorn': 1.0, 'terms': 1.0, 'and': 3.0, 'comfortable': 1.0, 'nice': 1.0, '1': 1.0, 'handle': 1.0, 'top': 1.0, 'any': 1.0, 'seat': 4.0, 'of': 1.0, 'up': 2.0, 'handles': 2.0, 'is': 2.0, 'fall': 1.0, 'an': 1.0, 'toilet': 2.0, 'my': 2.0, 'year': 1.0, 'gets': 1.0, 'son': 2.0, 'old': 1.0, 'i': 3.0, 'pushes': 1.0, 'bowl': 1.0, '3': 1.0, 'on': 2.0, 'design': 1.0, 'pops': 1.0, 'recommend': 1.0, 'was': 1.0, 'spoil': 1.0, 'for': 2.0, 'afraid': 1.0, 'would': 1.0, 't': 2.0, 'a': 1.0}
Word element => {}
Word element => {'sitting': 1.0, 's': 1.0, 'while': 1.0, 'doesn': 1.0, 'if': 1.0, 'does': 1.0, 'even': 1.0, 'frequently': 1.0, 'is': 1.0, 'fits': 1.0, 'perfectly': 1.0, 'and': 3.0, 'go': 1.0, 'different': 1.0, 'wanted': 1.0, 'to': 2.0, 'now': 1.0, 'was': 1.0, 'toilet': 3.0, 'that': 3.0, 'seat': 4.0, 'fit': 1.0, 'the': 2.0, 't': 2.0, 'he': 3.0, 'excited': 1.0, 'it': 3.0, 'this': 3.0, 'use': 2.0, 'loved': 1.0, 'sit': 1.0, 'arm': 1.0, 'didn': 1.0, 'my': 3.0, 'hammer': 1.0, 'i': 2.0, 'on': 2.0, 'trick': 1.0, 'asks': 1.0, 'son': 2.0, 'd': 1.0, 'however': 1.0, 'so': 1.0, 'potty': 2.0, 'much': 1.0, 'bought': 1.0, 'a': 2.0}
Word element => {'clean': 1.0, 'and': 1.0, 'her': 1.0, 'comfortable': 1.0, 'well': 1.0, 'seat': 1.0, 'bought': 1.0, 'my': 1.0, 'our': 1.0, 'this': 1.0, 'is': 1.0, 'elongated': 1.0, 'for': 2.0, 'year': 1.0, 'to': 1.0, 'old': 1.0, 'easy': 1.0, 'fits': 1.0, '3': 1.0, 'toilet': 1.0}
Word element => {'in': 1.0, 'like': 1.0, 'training': 1.0, 'doesn': 1.0, 'also': 1.0, 'will': 1.0, 'pottingn': 1.0, 'located': 1.0, 'her': 3.0, 'with': 2.0, 'this': 2.0, 'my': 1.0, 'help': 2.0, 'hurt': 1.0, 'granddaughter': 1.0, 'would': 1.0, 'i': 5.0, 'step': 1.0, 'haven': 1.0, 'use': 1.0, 'that': 1.0, 'a': 2.0, 't': 2.0, 'the': 5.0, 'had': 1.0, 'purchased': 1.0, 'thought': 1.0, 'stool': 1.0, 'chance': 1.0, 'be': 1.0, 'sure': 2.0, 'get': 1.0, 'to': 3.0, 'seat': 2.0, 'of': 2.0, 'course': 1.0, 'back': 1.0, 'herself': 1.0, 'safety': 1.0, 'onto': 1.0, 'm': 1.0, 'watch': 1.0, 'later': 1.0, 'from': 1.0, 'grandfather': 1.0, 'quite': 1.0, 'on': 1.0, 'make': 1.0, 'deodorizer': 1.0, 'it': 1.0, 'she': 1.0, 'helpful': 1.0}
Word element => {'public': 1.0, 'trunk': 1.0, 'in': 2.0, 'emergencies': 1.0, 'for': 1.0, 'one': 1.0, 'threw': 1.0, 'loves': 1.0, 'that': 1.0, 'lionheart': 1.0, 'prince': 1.0, 'i': 3.0, 'hurts': 1.0, 'toilet': 1.0, 'it': 3.0, 'he': 2.0, 'this': 2.0, 'm': 1.0, 'ended': 1.0, 'hates': 1.0, 'son': 1.0, 'my': 1.0, '2': 1.0, 'the': 2.0, 'and': 1.0, 'getting': 1.0, 'giving': 1.0, 'stars': 1.0, 'seat': 3.0, 'because': 1.0, 'fits': 1.0, 'says': 1.0, 'up': 1.0, 'well': 1.0, 'a': 1.0}
Word element => {'guard': 1.0, 'higher': 1.0, 'potties': 1.0, 'training': 1.0, 'other': 1.0, 'with': 1.0, 'problem': 1.0, 'stream': 1.0, 'give': 1.0, 't': 1.0, 'a': 3.0, 'them': 1.0, 'made': 1.0, 'to': 2.0, 'the': 4.0, 'pee': 1.0, 'toilet': 1.0, 'great': 1.0, 'nice': 1.0, 'this': 2.0, 'stability': 1.0, 'only': 1.0, 'more': 1.0, 'is': 2.0, 'price': 1.0, 'handles': 1.0, 'in': 1.0, 'for': 2.0, 'little': 1.0, 'very': 1.0, 'son': 1.0, 'and': 2.0, 'getting': 1.0, 'fits': 1.0, 'my': 2.0, 'are': 1.0, 'push': 1.0, 'that': 2.0, 'their': 1.0, 'boys': 1.0, 'snug': 1.0, 'have': 3.0, 'i': 1.0, 'junk': 1.0, 'especially': 1.0, 'complaint': 1.0, 'down': 1.0, 'towards': 1.0, 'water': 1.0, 'quite': 1.0, 'ends': 1.0, 'or': 1.0, 'everywhere': 1.0, 'don': 1.0, 'up': 1.0, 'well': 1.0, 'has': 1.0}
Word element => {'potty': 1.0, 'pictures': 1.0, 'no': 1.0, 'classic': 1.0, 'a': 1.0, 'slipand': 1.0, 'doesnt': 1.0, 'its': 1.0, 'was': 1.0, 'bathroom': 1.0, 'my': 2.0, 'cutesey': 1.0, 'bought': 2.0, 'upstairs': 1.0, 'this': 1.0, 'first': 2.0, 'it': 4.0, 'downstairs': 1.0, 'for': 1.0, 'love': 1.0, 'long': 1.0, 'works': 1.0, 'great': 1.0, 'i': 2.0, 'measure': 1.0, 'too': 1.0, 'when': 1.0, 'where': 1.0, 'bathrooms': 1.0, 'changed': 1.0, 'again': 1.0, 'and': 1.0}
Word element => {'feature': 1.0, 'added': 1.0, 'on': 1.0, 'easiest': 1.0, 'securely': 1.0, 'better': 1.0, 'it': 3.0, 'this': 1.0, 'or': 1.0, 'potty': 1.0, 'wiggling': 1.0, 'in': 1.0, 'makes': 1.0, 'the': 6.0, 'training': 1.0, 'no': 1.0, 'thing': 1.0, 'isn': 1.0, 'right': 1.0, 'wobbling': 1.0, 'toilet': 2.0, 'filter': 1.0, 'fit': 1.0, 'very': 1.0, 'easy': 1.0, 'seat': 1.0, 'to': 1.0, 'store': 1.0, 'was': 1.0, 'along': 1.0, 'soda': 1.0, 'arm': 1.0, 'side': 1.0, 'of': 1.0, 'my': 1.0, 'hammer': 1.0, 'grandson': 1.0, 'even': 1.0, 'pointed': 1.0, 'world': 1.0, 'handles': 1.0, 'and': 1.0, 'out': 1.0, 'baking': 1.0, 'replaceable': 1.0, 's': 1.0, 't': 1.0, 'a': 1.0, 'nice': 1.0}
Word element => {'report': 1.0, 'the': 1.0, 'we': 1.0, 'so': 1.0, 'comfortable': 1.0, 'very': 1.0, 'rate': 1.0, 'price': 1.0, 'it': 3.0, '5': 1.0, 's': 1.0, 'nice': 1.0, 'toddler': 2.0, 'fast': 1.0, 'stars': 1.0, 'shipping': 1.0, 'good': 1.0, 'pasted': 1.0, 'product': 1.0, 'reports': 1.0}
Word element => {'safe': 1.0, 'feels': 1.0, 'america': 1.0, 'ones': 1.0, 'the': 1.0, 'than': 1.0, 'bit': 1.0, 'is': 1.0, 'on': 2.0, 'doing': 1.0, 'use': 1.0, 'fits': 1.0, 'bigger': 1.0, 'she': 2.0, 'to': 1.0, 'comfortable': 1.0, 'for': 1.0, 'which': 1.0, 'and': 2.0, 'my': 1.0, 'bought': 1.0, 'so': 1.0, 'a': 1.0, 'well': 1.0, 'with': 1.0, 'this': 1.0, 'it': 2.0, 'our': 1.0, 'in': 1.0, 'seems': 1.0, 'toilet': 1.0, 'daughter': 1.0, 'too': 1.0}
Word element => {'works': 1.0, 'prefers': 1.0, 'said': 1.0, 'hangs': 1.0, 'prefer': 1.0, 'nicely': 1.0, 'important': 1.0, 'bjorn': 1.0, 'was': 2.0, 'doesn': 1.0, 'allowed': 1.0, 'needed': 1.0, 'on': 7.0, 'make': 1.0, 'toilet': 3.0, 'our': 1.0, 'in': 1.0, 'seat': 5.0, 'to': 6.0, 'as': 1.0, 'like': 3.0, 'hold': 1.0, 'potty': 1.0, 'can': 1.0, 'so': 2.0, 'and': 8.0, 'similar': 1.0, 'two': 2.0, 'i': 8.0, 'went': 1.0, 'me': 1.0, 'my': 5.0, 'may': 1.0, 'more': 1.0, 'sits': 1.0, 'is': 7.0, 'side': 1.0, 'which': 1.0, 'based': 1.0, 'this': 6.0, 'the': 11.0, 'of': 4.0, 'once': 1.0, 'it': 8.0, 'complaints': 1.0, 'reviews': 1.0, 'we': 2.0, 'a': 6.0, 'one': 2.0, 'toilets': 1.0, 'love': 1.0, 'with': 1.0, 'downstairs': 2.0, 'day': 1.0, 'buy': 2.0, 'round': 1.0, 'upstairs': 2.0, 'got': 1.0, 'daughter': 5.0, 'fallen': 1.0, 'realized': 1.0, 'training': 1.0, 'second': 1.0, 'year': 1.0, 'price': 1.0, 'shape': 1.0, 'had': 1.0, 'but': 3.0, 'both': 1.0, 'half': 1.0, 't': 4.0, 'likes': 1.0, 'has': 3.0, 'great': 1.0, '1': 1.0, 'because': 1.0, 'that': 8.0, 'have': 2.0, 'all': 1.0, 'other': 2.0, 'characters': 1.0, 'options': 1.0, 'only': 1.0, 'handles': 1.0, 'old': 1.0, 'contoured': 1.0, 'think': 1.0, 'ground': 1.0, 'better': 1.0, 'joke': 1.0, 'balance': 1.0, 'off': 2.0, 'arm': 1.0, 'for': 3.0, 'hammer': 1.0, 'scent': 1.0, '2': 1.0, 'thing': 1.0, 'not': 4.0, 'reason': 2.0, 'us': 1.0, 'also': 1.0, 'hang': 1.0, 'there': 1.0, 'don': 1.0, 'isn': 1.0, 'way': 1.0, 'when': 2.0, 'sit': 2.0, 'securely': 1.0, 'sometimes': 1.0, 'getting': 1.0, 'rocks': 1.0}
Word element => {'one': 1.0, 'idea': 1.0, 'toddler': 1.0, 'more': 1.0, 'is': 2.0, 'now': 1.0, 'i': 3.0, 'problem': 1.0, 'snaps': 1.0, 'toilet': 1.0, 'have': 1.0, 'this': 1.0, 'insert': 1.0, 'are': 1.0, 'gets': 1.0, 'seems': 1.0, 'that': 1.0, 'into': 2.0, 'my': 1.0, 'the': 5.0, 'made': 1.0, 'out': 1.0, 'well': 1.0, 'securely': 1.0, 'too': 1.0, 'and': 1.0, 'freaked': 1.0, 'her': 2.0, 'put': 1.0, 'think': 1.0, 'on': 1.0, 'until': 1.0, 'big': 2.0, 'seat': 2.0, 'any': 1.0, 'as': 1.0, 'smaller': 1.0, 'time': 1.0, 'potty': 2.0, 'only': 1.0, 'much': 1.0, 'for': 1.0, 'yet': 1.0, 'using': 1.0, 'of': 2.0, 'it': 2.0, 'she': 1.0, 'a': 1.0, 'we': 1.0, 's': 1.0}
Word element => {'security': 1.0, 'him': 1.0, 'have': 1.0, 'i': 1.0, 'is': 1.0, 'give': 1.0, 'pottying': 1.0, 'this': 1.0, 'he': 1.0, 'in': 1.0, 'highest': 1.0, 'boy': 1.0, 'isn': 1.0, 'slash': 1.0, 'bought': 1.0, 'seats': 1.0, 'and': 2.0, 'different': 1.0, 'seen': 1.0, 'toilet': 2.0, '4': 1.0, 'my': 1.0, 't': 1.0, 'the': 4.0, 'for': 1.0, 'one': 1.0, 'yet': 1.0, 'handles': 1.0, 'tushie': 1.0, 'but': 1.0, 'guard': 1.0, 'fits': 1.0, 'his': 1.0, 'son': 1.0, 'best': 1.0}
Word element => {'either': 1.0, 'overspend': 1.0, 'never': 1.0, 'researching': 1.0, 'factor': 1.0, 'deciding': 1.0, 'don': 1.0, 'though': 1.0, 'right': 1.0, 'also': 1.0, 'clean': 1.0, 'wiping': 1.0, 'school': 1.0, 'mind': 1.0, 'tank': 1.0, 'water': 1.0, 'store': 1.0, 'upright': 1.0, 'figure': 1.0, 'sat': 1.0, 'arm': 1.0, 'but': 2.0, 'reading': 1.0, 'hold': 1.0, 'she': 2.0, 'accustomed': 1.0, 'on': 2.0, 'online': 1.0, 'your': 1.0, '14': 1.0, 'than': 1.0, 'my': 2.0, 'out': 2.0, 'price': 1.0, 'toddler': 1.0, 's': 1.0, 'a': 2.0, 'english': 1.0, 'another': 1.0, 'trying': 2.0, 'here': 1.0, 'old': 2.0, 'well': 2.0, 'i': 9.0, 'it': 8.0, 'thought': 1.0, 'times': 1.0, 'you': 1.0, 'sit': 1.0, 'when': 2.0, 'far': 1.0, 'stands': 1.0, 'there': 2.0, 'something': 1.0, 'gone': 1.0, 'weight': 1.0, 'get': 2.0, 'and': 6.0, 't': 2.0, 'fit': 1.0, 'actually': 1.0, 'hammer': 1.0, 'for': 1.0, 'expensive': 1.0, 'other': 2.0, 'design': 3.0, 'the': 11.0, 'why': 1.0, 'just': 2.0, 'started': 1.0, 'good': 2.0, 'anything': 1.0, 'works': 1.0, 'are': 2.0, 'reviews': 2.0, 'after': 2.0, 'can': 1.0, 'so': 3.0, 'was': 2.0, 'to': 6.0, 'handles': 2.0, 'proves': 1.0, 'that': 3.0, 'initially': 1.0, 'trash': 1.0, 'more': 1.0, 'used': 1.0, 'is': 3.0, 'at': 2.0, 'back': 1.0, 'great': 1.0, 'addition': 1.0, 'her': 1.0, 'use': 3.0, 'onto': 1.0, 'deodorizers': 1.0, 'as': 2.0, 'diaper': 1.0, 'liked': 1.0, 'held': 1.0, 'ones': 1.0, 'month': 1.0, 'same': 1.0, 'using': 2.0, 'looking': 1.0, 'ordered': 1.0, 'didn': 1.0, 'safety': 1.0, 'see': 1.0, 'twice': 1.0, 'better': 1.0, 'this': 2.0, 'closet': 1.0, 'deodorizer': 1.0, 'in': 1.0, 'could': 1.0, 'will': 1.0, 'still': 1.0, 'need': 1.0, 'precaution': 1.0}
Word element => {'recommended': 1.0, 'highly': 1.0, 'overall': 1.0, 'fills': 1.0, 're': 1.0, 'of': 1.0, 'wash': 1.0, 'would': 1.0, 'you': 1.0, 'from': 1.0, 'as': 1.0, 'big': 1.0, 'a': 2.0, 'time': 2.0, 'your': 1.0, 'handles': 1.0, 'allow': 1.0, 'grip': 1.0, 'toilet': 1.0, 'off': 1.0, 'almost': 1.0, 'toddler': 1.0, 'fits': 1.0, 'prefer': 1.0, 'safe': 1.0, 'while': 1.0, 'great': 1.0, 'the': 5.0, 'this': 1.0, 'instead': 1.0, 'every': 1.0, 'feel': 1.0, 'buying': 1.0, 'to': 3.0, 'jumping': 1.0, 'deal': 1.0, 'on': 1.0, 'is': 2.0, 'and': 1.0, 'deodorizing': 1.0, 'seat': 4.0, 'not': 1.0}
Word element => {'work': 1.0, 'will': 1.0, 'toilet': 1.0, 'elongated': 1.0, 'standard': 1.0, 'on': 2.0, 'fit': 1.0, 'made': 1.0, 'and': 1.0, 'only': 1.0, 'seat': 1.0, 'of': 1.0, 'but': 1.0, 'plastic': 1.0, 'fits': 1.0, 'a': 2.0, 'thicker': 1.0, 'securely': 1.0, 'well': 1.0}
Word element => {'attachment': 1.0, 'refillable': 1.0, 'came': 1.0, 'priced': 1.0, 'wipe': 1.0, 'recommend': 1.0, 'was': 1.0, 'toilet': 2.0, 'to': 2.0, 'seat': 2.0, 'because': 1.0, 'just': 1.0, 'adult': 1.0, 'regular': 1.0, 'is': 1.0, 'have': 1.0, 'upright': 1.0, 'this': 2.0, 'it': 4.0, 'boys': 1.0, 'you': 1.0, 'storage': 1.0, 't': 1.0, 's': 2.0, 'a': 3.0, 'with': 1.0, 'convenient': 1.0, 'so': 1.0, 'potty': 3.0, 'scent': 1.0, 'clean': 2.0, 'trainer': 1.0, 'splash': 1.0, 'fits': 1.0, 'guard': 1.0, 'don': 1.0, 'over': 1.0, 'on': 1.0, 'bowl': 1.0, 'reliable': 1.0, 'the': 4.0, 'flush': 1.0, 'reasonably': 1.0, 'stable': 1.0, 'too': 1.0, 'and': 3.0, 'stands': 1.0, 'easy': 1.0, 'for': 2.0, 'i': 2.0, 'like': 1.0, 'simple': 1.0, 'design': 1.0, 'has': 1.0, 'very': 1.0}
Word element => {'elongated': 1.0, 'fit': 1.0, 'to': 1.0, 'toddler': 1.0, 'in': 1.0, 'for': 1.0, 'use': 1.0, 'easy': 1.0, 'seat': 1.0, 'then': 1.0, 'bought': 1.0, 'another': 1.0, 'nicely': 1.0, 'and': 1.0, 'i': 1.0, 'one': 1.0, 'because': 1.0, 'our': 1.0, 'they': 2.0, 'my': 1.0, 'are': 1.0, 'light': 1.0, 'so': 1.0}
Word element => {'sleek': 1.0, 'just': 1.0, 'in': 1.0, 'to': 1.0, 'whatever': 1.0, 'or': 1.0, 'padding': 1.0, 'weird': 1.0, 'that': 1.0, 'i': 1.0, 're': 1.0, 'hammer': 1.0, 'it': 2.0, 'they': 1.0, 'there': 1.0, 'of': 1.0, 'no': 1.0, 'two': 1.0, 'care': 1.0, 'don': 1.0, 'about': 1.0, 's': 2.0, 'pee': 1.0, 'great': 1.0, 'these': 1.0, 't': 1.0, 'the': 1.0, 'wipeable': 1.0, 'little': 1.0, 'we': 1.0, 'arm': 1.0, 'get': 1.0, 'and': 2.0, 'have': 1.0, 'thing': 1.0, 'but': 1.0, 'nice': 1.0}
Word element => {'to': 1.0, 'stability': 1.0, 'weight': 1.0, 'bit': 1.0, 'them': 1.0, 'a': 1.0, 'fits': 1.0, 'nicely': 1.0, 'toilet': 1.0, 'our': 1.0, 'seat': 1.0, 'more': 1.0, 'the': 1.0, 'i': 1.0, 'handles': 1.0, 'in': 1.0, 'wish': 1.0, 'had': 1.0}
Word element => {'also': 1.0, 'slipped': 1.0, 'securely': 1.0, 'though': 1.0, 'or': 1.0, 'snaps': 1.0, 'no': 1.0, 'grown': 1.0, 'when': 1.0, 'set': 1.0, 'never': 1.0, 'pick': 1.0, 'easy': 2.0, 'it': 3.0, 'part': 1.0, 'soda': 1.0, 'locks': 1.0, 'baking': 1.0, 'ignore': 1.0, 'toilet': 1.0, 'right': 1.0, 'size': 1.0, 'of': 1.0, 'clean': 2.0, 'wipe': 1.0, 'them': 1.0, 'not': 1.0, 'very': 1.0, 'little': 1.0, 'on': 1.0, 'has': 1.0, 'won': 1.0, 'uses': 2.0, 'aside': 1.0, 'having': 1.0, 'regular': 1.0, 'in': 2.0, 'son': 1.0, 'back': 1.0, 'top': 1.0, 'preferred': 1.0, 'nice': 1.0, 'this': 2.0, 'he': 2.0, 'to': 8.0, 'fits': 2.0, 'my': 1.0, 'the': 8.0, 'but': 1.0, 'guide': 1.0, 'and': 5.0, 'seats': 2.0, 'i': 2.0, 'narrows': 1.0, 'space': 1.0, 'his': 1.0, 'down': 1.0, 'potty': 3.0, 'so': 1.0, 'fall': 1.0, 'a': 1.0, 's': 2.0, 't': 2.0, 'we': 1.0, 'up': 3.0, 'don': 1.0, 'have': 1.0, 'sit': 1.0, 'like': 1.0, 'hold': 1.0, 'him': 2.0, 'handles': 1.0, 'are': 1.0}
Word element => {'them': 1.0, 'recommend': 1.0, 'highly': 1.0, 'seat': 1.0, 'for': 1.0, 'good': 1.0, 'be': 1.0, 'to': 1.0, 'seem': 1.0, 'handles': 1.0, 'perfect': 1.0, 'fit': 1.0, 'part': 1.0, 'they': 1.0, 'little': 1.0, 'and': 3.0, 'design': 1.0, 'simple': 1.0, 'how': 1.0, 'straightforward': 1.0, 'best': 1.0, 'is': 1.0, 'ones': 1.0, 'sits': 1.0, 'the': 2.0, 'it': 1.0, 'over': 1.0}
Word element => {'picky': 1.0, 'be': 1.0, 'kid': 1.0, 'like': 1.0, 'rather': 1.0, 'than': 1.0, 'particular': 2.0, 'limited': 1.0, 'much': 1.0, 'stars': 1.0, 'four': 1.0, 'three': 2.0, 'debated': 1.0, 'pee': 1.0, 'kids': 2.0, 'suit': 1.0, 'parts': 1.0, 'touching': 1.0, 'uses': 1.0, 'countless': 1.0, 'emergencies': 1.0, 'rare': 1.0, 'cup': 1.0, 'top': 2.0, 'peed': 1.0, 'times': 1.0, 'fact': 2.0, 'number': 1.0, 'probably': 1.0, 'has': 2.0, 'always': 1.0, 'he': 5.0, 'but': 1.0, 'hand': 1.0, 'something': 2.0, 'hardness': 1.0, 'if': 3.0, 'know': 1.0, 'giving': 1.0, 'preferred': 1.0, 'training': 1.0, 'actually': 1.0, 'effectiveness': 1.0, 'comment': 1.0, 'use': 2.0, 'excellent': 1.0, 'really': 1.0, 'some': 2.0, 'never': 2.0, 'although': 1.0, 'selling': 1.0, 'fortunately': 1.0, 'where': 1.0, 'deliberation': 1.0, 'amazon': 1.0, 'cupi': 1.0, 'happened': 1.0, 'concerted': 1.0, 'before': 1.0, 'bottomline': 1.0, 'mind': 2.0, 'with': 2.0, 'a': 3.0, 'go': 3.0, 'we': 9.0, 'return': 1.0, 'on': 13.0, 'count': 1.0, 'careful': 1.0, 'of': 6.0, 'the': 29.0, 'after': 1.0, 'lionheart': 4.0, 'used': 1.0, 'decided': 2.0, 'deodorizercons': 1.0, 'testing': 1.0, 'toilets': 4.0, 'pros': 1.0, 'son': 3.0, 'weepod': 1.0, 'told': 1.0, 'about': 3.0, 'potty': 6.0, 'interest': 1.0, 'can': 2.0, 'so': 5.0, 'and': 9.0, 'colder': 1.0, 'to': 10.0, 'one': 9.0, 'too': 1.0, 'actual': 1.0, 'prince': 4.0, 'more': 2.0, 'his': 1.0, 'around': 1.0, 'wife': 1.0, 'later': 1.0, 'slide': 1.0, 'seat': 3.0, 'in': 1.0, 'basix': 1.0, 'refunded': 1.0, 'may': 3.0, 'my': 2.0, 'started': 2.0, 'was': 8.0, 'avoid': 1.0, 'got': 1.0, 'train': 1.0, 'him': 1.0, 'it': 13.0, 'felt': 1.0, 'toilet': 6.0, 'arm': 3.0, 'using': 1.0, 'this': 6.0, 'also': 1.0, 'us': 1.0, 'seats': 2.0, 'just': 2.0, 'factors': 1.0, 'since': 1.0, 'effort': 1.0, 'bought': 2.0, 'money': 1.0, 'because': 1.0, 'that': 13.0, 'does': 1.0, 'primary': 1.0, 'when': 2.0, 'what': 2.0, 'liked': 2.0, 'for': 1.0, 'hammer': 3.0, 'hard': 1.0, 'over': 3.0, 'don': 2.0, 'ultimately': 1.0, 'all': 4.0, 'an': 1.0, 'other': 4.0, 'our': 7.0, 'how': 1.0, 'at': 3.0, 'snug': 2.0, 'have': 1.0, 't': 7.0, 'fit': 6.0, 'you': 2.0, 'meant': 1.0, 'keep': 1.0, 'did': 4.0, 'limiting': 1.0, 'not': 7.0, 'didn': 4.0, 'made': 1.0, 'tight': 1.0, 'would': 2.0, 'puck': 1.0, 'mean': 2.0, 'greatly': 1.0, 'feature': 1.0, 'or': 5.0, 'portables': 1.0, 'i': 7.0, 'well': 1.0, 'unusable': 1.0, 'through': 1.0, 'show': 1.0, 'handles': 2.0, 'were': 1.0, 'two': 3.0, 'nice': 1.0, 'cold': 1.0, 'during': 2.0, 'though': 1.0, 'slid': 1.0, 'touch': 3.0, 'odor': 1.0}
Word element => {'time': 1.0, 'every': 1.0, 'like': 1.0, 'much': 1.0, 'clean': 2.0, 'perfect': 1.0, 'is': 1.0, 'as': 3.0, 'absorbed': 1.0, 'crack': 1.0, 'sponge': 1.0, 'regularly': 1.0, 'bleaching': 1.0, 'started': 1.0, 'washing': 1.0, 'stand': 1.0, 'didn': 1.0, 'padded': 1.0, 'that': 1.0, 'new': 1.0, 'fancier': 1.0, 't': 1.0, 'the': 5.0, 'brand': 1.0, 'a': 1.0, 'almost': 1.0, 'bought': 1.0, 'price': 1.0, 'buy': 1.0, 'i': 3.0, 'this': 2.0, 'it': 3.0, 'only': 1.0, 'you': 1.0, 'double': 1.0, 'lasted': 1.0, 'few': 1.0, 'one': 2.0, 'for': 1.0, 'months': 1.0, 'was': 1.0, 'had': 1.0, 'to': 2.0, 'water': 1.0, 'throw': 2.0, 'and': 3.0, 'away': 2.0}
Word element => {'complaints': 1.0, 'daughter': 1.0, 'and': 1.0, 'trick': 1.0, 'does': 1.0, 'pricier': 1.0, 'little': 1.0, 'a': 1.0, 'was': 1.0, 'one': 3.0, 'i': 1.0, 'potty': 1.0, 'in': 2.0, 'so': 1.0, 'have': 1.0, 'we': 1.0, 'of': 1.0, 'has': 2.0, 'no': 1.0, 'two': 1.0, 'got': 1.0, 'every': 1.0, 'bjorn': 1.0, 'these': 1.0, 'the': 3.0, 'my': 2.0, 'could': 1.0, 'like': 1.0, 'house': 1.0, 'but': 1.0, 'sister': 1.0, 'this': 2.0, 'it': 1.0}
Word element => {'every': 1.0, 'worth': 1.0, 'fit': 1.0, 'works': 2.0, 'have': 1.0, 'toilet': 1.0, 'penny': 1.0, 'we': 1.0, 'and': 2.0, 'get': 1.0, 'kohler': 1.0, 'elongated': 1.0, 'this': 2.0, 'with': 2.0, 'were': 1.0, 'that': 1.0, 'secure': 1.0, 'but': 1.0, 'an': 1.0, 'to': 1.0, 'snug': 1.0, 'i': 1.0, 'going': 1.0, 'seat': 2.0, 'a': 1.0, 'replacement': 1.0, 'great': 1.0, 'the': 1.0, 'child': 1.0, 's': 1.0, 'built': 1.0, 'perfect': 1.0, 'in': 1.0}
Word element => {'are': 1.0, 'where': 1.0, 'going': 1.0, 'nice': 1.0, 'no': 1.0, 'regardless': 1.0, 'have': 1.0, 'sit': 1.0, 'our': 1.0, 'for': 1.0, 'yr': 1.0, 'easy': 1.0, 'isn': 1.0, 'seats': 1.0, 'elongated': 1.0, 'want': 1.0, 'don': 1.0, 'a': 1.0, 'matter': 1.0, 'lug': 1.0, 've': 1.0, 'keep': 1.0, 'if': 1.0, 'to': 4.0, 'as': 1.0, 'trick': 1.0, 'on': 3.0, '2': 1.0, 't': 2.0, 'the': 2.0, 'does': 1.0, 'potty': 2.0, 'old': 1.0, 'tried': 1.0, 'i': 1.0, 'it': 3.0, 'around': 1.0, 'seat': 1.0, 'training': 1.0, 'but': 1.0, 'toddler': 1.0, 'you': 2.0, 's': 2.0, 'fits': 1.0, 'every': 1.0}
Word element => {'once': 1.0, 'most': 1.0, 'has': 1.0, 'which': 1.0, 'other': 1.0, 'or': 1.0, 'will': 1.0, 'handles': 1.0, 'her': 1.0, 'weight': 2.0, 'puts': 1.0, 'hand': 1.0, 'if': 1.0, 'while': 1.0, 'step': 1.0, 'she': 4.0, 'a': 1.0, 'seat': 3.0, 'this': 1.0, 'with': 1.0, 'tilt': 1.0, 'on': 5.0, 'fine': 1.0, 'really': 1.0, 'is': 4.0, 'getting': 1.0, 'issue': 1.0, 'get': 1.0, 'stable': 1.0, 'can': 1.0, 'potty': 1.0, 'daughter': 1.0, 'when': 1.0, 'unevenly': 1.0, 'one': 2.0, 'my': 1.0, 'the': 6.0, 'up': 1.0, 'onto': 1.0, 'stool': 1.0, 'depending': 1.0, 'way': 1.0, 's': 1.0, 'minor': 1.0}
Word element => {'added': 1.0, 'is': 1.0, 'an': 1.0, 'back': 1.0, 'bonus': 1.0, 'way': 1.0, 'toilets': 1.0, 'the': 2.0, 'pee': 1.0, 'perfectly': 1.0, 'easy': 1.0, 'my': 1.0, 'little': 2.0, 'its': 1.0, 'it': 3.0, 'this': 1.0, 'that': 1.0, 'seat': 1.0, 'fits': 1.0, 'cleaning': 1.0, 'solid': 1.0, 'on': 3.0, 'piece': 1.0, 'so': 1.0, 'deodorizer': 1.0, 'makes': 1.0, 'love': 2.0, 'one': 1.0, 'for': 1.0, 'if': 1.0, 'a': 1.0}
Word element => {'law': 1.0, 'stand': 1.0, 'more': 1.0, 'the': 3.0, 'and': 1.0, 'nothing': 1.0, 'like': 1.0, 'they': 1.0, 'train': 1.0, '2': 1.0, 'but': 2.0, 'back': 1.0, 'do': 2.0, 'much': 1.0, 'i': 1.0, 'old': 1.0, 'to': 2.0, 'twins': 1.0, 'potty': 1.0, 'so': 1.0, 'trying': 1.0, 'have': 2.0, 'thing': 1.0, 'year': 1.0, 'arm': 1.0, 'with': 2.0, 'this': 2.0, 'used': 1.0, '5': 1.0, 'that': 2.0, 'potties': 1.0, 'want': 1.0, 'second': 1.0, 'house': 1.0, 're': 1.0, 'hammer': 1.0, 'my': 1.0, 'alone': 1.0, 'kid': 1.0, 'well': 1.0, 's': 1.0, 'we': 4.0, 'a': 1.0, 'never': 1.0, 'on': 1.0, 'bought': 1.0, 'one': 1.0, 'expensive': 1.0, 'for': 1.0, 'in': 1.0}
Word element => {'bums': 1.0, 'it': 3.0, 'quick': 1.0, 'there': 1.0, 'set': 1.0, 'of': 2.0, 'lysol': 1.0, 'just': 1.0, 'little': 1.0, 'out': 1.0, 'house': 2.0, 'on': 2.0, 'put': 1.0, 'these': 1.0, 'the': 4.0, 'absorber': 1.0, 'potty': 1.0, 'each': 1.0, 'i': 1.0, 'kid': 1.0, 'my': 1.0, 'shot': 1.0, 'and': 3.0, 'done': 1.0, 'you': 2.0, 'when': 1.0, 'they': 1.0, 'are': 1.0, 'go': 1.0, 'a': 1.0, 'could': 1.0, 'got': 1.0, 'even': 1.0, 'dishwasher': 1.0, 'in': 1.0, 'perfect': 1.0, 'alone': 1.0, 'to': 1.0, 'odor': 1.0, 'one': 2.0, 'sterilize': 1.0, 'is': 1.0, 'pretty': 1.0, 'three': 1.0, 'pointless': 1.0, 'grandparents': 1.0, 'for': 3.0, 'fit': 1.0}
Word element => {'off': 1.0, 'come': 1.0, 'or': 1.0, 'probably': 1.0, 'himself': 1.0, 'able': 1.0, 'he': 1.0, 'think': 1.0, 'on': 2.0, 'put': 1.0, 'in': 1.0, 'even': 1.0, 'didn': 1.0, 'give': 1.0, 'get': 1.0, 'easy': 1.0, 'would': 2.0, 'super': 1.0, 'his': 1.0, 'both': 1.0, 'clean': 1.0, 'made': 1.0, 'only': 1.0, 'it': 7.0, 'this': 1.0, 'like': 1.0, 'and': 2.0, 'completely': 1.0, 'around': 1.0, 'is': 2.0, 'really': 1.0, 'son': 1.0, 'potty': 1.0, 'i': 6.0, 'my': 2.0, 'to': 3.0, 'seat': 1.0, 'maybe': 1.0, 'because': 2.0, 'reason': 1.0, 'keeps': 1.0, 't': 3.0, 'a': 1.0, 'popped': 1.0, '5': 1.0, 'doesn': 1.0, 'inside': 1.0, 'back': 1.0, 'fit': 1.0, 'toilet': 1.0, 'shift': 1.0, 'work': 1.0, 'but': 1.0, 'rim': 1.0, 'have': 2.0, 'by': 2.0, 'when': 1.0, 'keeping': 1.0, 'of': 1.0, 'don': 1.0, 'up': 2.0, 'him': 1.0, 'be': 2.0, 'pee': 1.0, 'the': 3.0, 'careful': 1.0}
Word element => {'use': 1.0, 'in': 1.0, 'when': 1.0, 'discreetly': 1.0, 'stands': 1.0, 'other': 1.0, 'like': 1.0, 's': 1.0, 'seats': 1.0, 'securely': 1.0, 'year': 1.0, 'my': 1.0, 'mean': 1.0, 'for': 1.0, 'toilet': 1.0, 'right': 1.0, 'novis': 1.0, 'to': 1.0, 'shaped': 1.0, 'is': 1.0, 'folded': 1.0, 'a': 1.0, 'not': 2.0, 'just': 1.0, 'seat': 1.0, 'of': 1.0, 'old': 1.0, 'whole': 1.0, 'potty': 3.0, 'irritation': 1.0, 'behind': 1.0, 'bulky': 1.0, 'sits': 1.0, '2': 1.0, 'the': 4.0, 'prevent': 1.0, 'over': 1.0, 'it': 1.0, 'with': 1.0, 'this': 1.0, 'skin': 1.0, 'edges': 1.0, 'and': 2.0, 'handles': 1.0}
Word element => {'she': 1.0, 'every': 1.0, 'went': 1.0, 'it': 1.0, 'sit': 1.0, 'this': 1.0, 'time': 1.0, 'on': 1.0, 'is': 1.0, 'a': 1.0, 'seat': 1.0, 'comfortable': 1.0, 'potty': 2.0, 'the': 1.0, 'my': 1.0, 'grandchild': 1.0, 'very': 1.0, 'wanted': 1.0, 'to': 2.0}
Word element => {'what': 1.0, 'exactly': 1.0, 'amazon': 1.0, 'potty': 1.0, 'characters': 1.0, 'looking': 2.0, 'without': 1.0, 'it': 1.0, 'for': 2.0, 'could': 1.0, 'stores': 1.0, 'a': 1.0, 'i': 4.0, 'tried': 1.0, 'found': 1.0, 'find': 1.0, 'anything': 1.0, 'and': 2.0, 'seat': 1.0, 'not': 1.0, 'so': 1.0, 'headed': 1.0, '4': 1.0, 'on': 1.0, 'over': 1.0, 'was': 1.0, 'to': 1.0, 'trusty': 1.0}
Word element => {'boy': 1.0, 'for': 2.0, 'i': 1.0, 'everything': 1.0, 'enough': 1.0, 'sure': 1.0, 'tall': 1.0, 'was': 2.0, 'cup': 1.0, 'great': 1.0, 'the': 2.0, 'realized': 1.0, 'fits': 1.0, 'lacking': 1.0, 'perfect': 1.0, 'would': 2.0, 'sat': 1.0, 'floor': 1.0, 'be': 2.0, 'girl': 1.0, 'cover': 1.0, 'not': 1.0, 'because': 1.0, 'seat': 2.0, 'this': 1.0, 'it': 4.0, 'we': 3.0, 'toilet': 1.0, 'nice': 1.0, 'but': 2.0, 'secure': 1.0, 'and': 1.0, 'on': 2.0, 'son': 1.0, 'a': 3.0, 'm': 1.0, 'when': 1.0, 'hit': 1.0, 'that': 1.0, 'thought': 1.0, 'our': 1.0, 'quickly': 1.0}
Word element => {'wrong': 1.0, 'otherwise': 1.0, 'pops': 1.0, 'of': 2.0, 'kind': 1.0, 'down': 1.0, 'elongated': 1.0, 'note': 1.0, 'much': 2.0, 'like': 2.0, 'using': 1.0, 'toilets': 1.0, 'one': 1.0, 'getting': 1.0, '10': 1.0, 'under': 1.0, 'though': 1.0, 'beat': 1.0, 'hard': 2.0, 'done': 1.0, 'is': 2.0, 'doesn': 1.0, 'was': 1.0, 'this': 2.0, 'picked': 1.0, 'than': 1.0, 'because': 2.0, 'stool': 1.0, 'grandma': 1.0, 'well': 2.0, 'have': 2.0, 'the': 5.0, '1': 1.0, 'great': 2.0, 'up': 4.0, 'our': 1.0, 'to': 5.0, 'seat': 2.0, 'as': 1.0, 'year': 1.0, 'go': 1.0, 't': 2.0, 'a': 2.0, 'we': 3.0, 's': 1.0, 'visit': 1.0, 'old': 1.0, 'fit': 1.0, 'for': 4.0, 'better': 1.0, 'recently': 1.0, 'potty': 1.0, 'so': 3.0, 'inexpensive': 1.0, 'my': 1.0, '5': 1.0, 'loved': 2.0, 'use': 1.0, 'handles': 1.0, 'push': 2.0, 'are': 1.0, 'too': 1.0, 'and': 6.0, 'it': 8.0, 'she': 4.0, 'loves': 1.0, 'house': 2.0, 'babybjorn': 2.0, 'off': 1.0, 'ended': 1.0, 'holding': 1.0, '3': 1.0, 'on': 1.0, 'you': 2.0, 'when': 2.0, 'but': 3.0, '2': 1.0, 'sitting': 1.0, 'can': 2.0, 'herself': 1.0, 'price': 1.0, 'onto': 1.0}
Word element => {'be': 1.0, 'should': 1.0, 'words': 1.0, 'of': 1.0, 'certain': 1.0, 'loves': 1.0, 'grandson': 1.0, 'toilet': 1.0, 'on': 1.0, 'is': 1.0, 'why': 1.0, 'require': 1.0, 'securely': 1.0, 'fits': 1.0, 'great': 1.0, 'this': 2.0, 'it': 1.0, 'my': 1.0, 'potty': 1.0, 'i': 1.0, 'not': 1.0, 'seat': 1.0, 'excellent': 1.0, 'reviews': 1.0, 'dont': 1.0, 'like': 1.0, 'to': 1.0, 'amount': 1.0, 'write': 1.0, 'you': 1.0}
Word element => {'would': 1.0, 'about': 1.0, 'and': 1.0, 'again': 1.0, 'buy': 1.0, 'best': 1.0, 'one': 1.0, 'had': 1.0, 'on': 1.0, 'everything': 1.0, 'toilet': 1.0, 'we': 2.0, 'have': 1.0, 'ever': 1.0, 'it': 2.0, 'love': 1.0, 'great': 1.0, 'goes': 1.0, 'the': 1.0}
Word element => {'of': 1.0, 'kind': 1.0, 'annoying': 1.0, 'basic': 1.0, 'toilet': 1.0, 'mine': 1.0, 'it': 1.0, 'states': 1.0, 'doesn': 1.0, 'is': 2.0, 'standard': 2.0, 'fits': 1.0, 'this': 1.0, 'fit': 1.0, 't': 1.0, 'most': 1.0, 'very': 1.0, 'and': 2.0, 'toilets': 1.0, 'that': 1.0, 'hmmmm': 1.0}
Word element => {'huge': 1.0, 'a': 2.0, 'little': 1.0, 'my': 1.0, 'for': 1.0, 'built': 1.0, 'which': 1.0, 'it': 2.0, 'in': 2.0, 'perfect': 1.0, 'works': 1.0, 'even': 1.0, 'freshened': 1.0, 'to': 1.0, 'air': 1.0, 'help': 1.0, 'great': 1.0, 'these': 1.0, 'smell': 1.0, 'has': 1.0, 'boy': 1.0, 'your': 1.0, 'plus': 1.0, 'bathroom': 1.0, 'is': 1.0}
Word element => {'we': 1.0, 'other': 1.0, 'any': 1.0, 'clean': 1.0, 'have': 1.0, 'all': 1.0, 'profile': 1.0, 'used': 1.0, 'low': 1.0, 'the': 2.0, 'ergonomic': 1.0, 'seat': 3.0, 'previous': 1.0, 'our': 1.0, 'better': 2.0, 'than': 2.0, 'easy': 2.0, 'potty': 1.0, 'much': 1.0, 'to': 1.0, 'so': 2.0, 'provides': 1.0, 'on': 1.0, 'around': 1.0, 'feels': 1.0, 'is': 1.0, 'and': 1.0, 'very': 1.0, 'off': 1.0, 'it': 1.0, 'comfortable': 1.0}
Word element => {'one': 1.0, 'that': 1.0, 'seats': 1.0, 'are': 1.0, 'beautifully': 1.0, 'there': 2.0, 'use': 1.0, 'this': 1.0, 'it': 3.0, 'but': 1.0, 'help': 1.0, 'other': 1.0, 'standard': 1.0, 'before': 1.0, 'dimensions': 1.0, 'does': 1.0, 'not': 2.0, 'seat': 1.0, 'is': 1.0, 'fine': 1.0, 'really': 1.0, 'the': 4.0, 'toilet': 1.0, 'check': 1.0, 'well': 1.0, 'have': 1.0, 'itself': 1.0, 'wide': 1.0, 'fit': 2.0, 'enough': 1.0, 'so': 2.0, 's': 1.0, 'you': 1.0, 'buying': 1.0, 'to': 1.0, 'out': 1.0, 'child': 1.0}
Word element => {'need': 1.0, 'whistles': 1.0, 'bells': 1.0, 'waste': 1.0, 'things': 1.0, 'those': 1.0, 'be': 1.0, 'that': 1.0, 'worry': 1.0, 'will': 1.0, 'ever': 1.0, 'the': 1.0, 'never': 1.0, 'replacing': 1.0, 'don': 3.0, 'up': 1.0, 'or': 1.0, 'stool': 1.0, 'get': 2.0, 'just': 1.0, 'step': 2.0, 'used': 1.0, 'integrated': 1.0, 'lieu': 1.0, 'in': 1.0, 'one': 1.0, 'comfortable': 1.0, 'm': 1.0, 'you': 2.0, 'when': 2.0, 'daughter': 1.0, 'rounded': 1.0, 'ordering': 1.0, 'll': 3.0, 'perfectly': 3.0, 'and': 5.0, 'deodorizer': 1.0, 'she': 1.0, 'it': 8.0, 'this': 3.0, 'with': 4.0, 'old': 1.0, 'i': 3.0, 'year': 1.0, 'very': 1.0, 'training': 1.0, 'can': 1.0, 'but': 1.0, 'time': 1.0, 'so': 2.0, 'potty': 3.0, 'a': 1.0, 't': 5.0, 'we': 5.0, 'an': 1.0, 'toilet': 2.0, 'your': 1.0, 'constantly': 1.0, 'think': 1.0, '3': 1.0, 'now': 2.0, 'all': 1.0, 'our': 4.0, 'seat': 4.0, 'to': 3.0, 'was': 1.0, 'elongated': 1.0, 'reviews': 1.0, 'won': 1.0, 'actually': 1.0, 'love': 1.0, 'for': 2.0, 'fit': 2.0, 've': 2.0, 'according': 1.0, 'see': 1.0, 'always': 1.0, 'disc': 1.0, 'of': 1.0, 'traveled': 1.0, 'stable': 1.0, 'if': 1.0, 'got': 1.0, 'even': 1.0, 'didn': 1.0, 'another': 1.0, 'fits': 1.0, 'family': 1.0, 'my': 1.0, 'asked': 1.0, 'more': 1.0, 'is': 2.0}
Word element => {'handles': 1.0, 'great': 1.0, 'on': 2.0, 'knew': 1.0, 'would': 2.0, 'new': 2.0, 'potty': 2.0, 'so': 2.0, 'certain': 1.0, 'i': 10.0, 'our': 1.0, 'to': 2.0, 'least': 1.0, 'from': 1.0, 'while': 1.0, 'mount': 1.0, 'original': 1.0, 'no': 1.0, 'wall': 1.0, 'thing': 1.0, 'one': 3.0, 'toilets': 1.0, 'imo': 1.0, 'built': 1.0, 'chairs': 1.0, 'pees': 1.0, 'bjorn': 2.0, 'but': 3.0, 'money': 1.0, 'toilet': 4.0, 'rinse': 1.0, 'mounts': 1.0, 'a': 3.0, 'we': 2.0, 's': 1.0, 'floor': 1.0, 'squarish': 1.0, 'bathrooms': 1.0, 'could': 1.0, 'will': 1.0, 'has': 2.0, 'this': 4.0, 'american': 1.0, 'wasted': 1.0, 'with': 4.0, 'regular': 1.0, 'shaped': 1.0, 'live': 1.0, 'at': 1.0, 'is': 5.0, 'bathroom': 2.0, 'my': 3.0, 'was': 2.0, 'turns': 1.0, 'standard': 1.0, 'that': 2.0, 'because': 1.0, 'does': 1.0, 'all': 1.0, 'an': 1.0, 'fits': 1.0, 'other': 1.0, 'it': 7.0, 'thought': 1.0, 'son': 2.0, 'use': 1.0, 'refills': 1.0, 'nothing': 1.0, 'out': 1.0, 'house': 1.0, 'both': 1.0, 'seat': 4.0, 'in': 3.0, 'm': 1.0, 'perfectly': 1.0, 'doubt': 1.0, 'shocked': 1.0, 'two': 2.0, 'nice': 3.0, 'plastic': 1.0, 'love': 1.0, 'he': 1.0, 'and': 5.0, 'when': 1.0, 'special': 1.0, 'hard': 1.0, 'work': 2.0, 'over': 1.0, 'easy': 1.0, 'wipe': 1.0, 'clean': 1.0, 'deodorant': 1.0, 'bother': 1.0, 'almost': 1.0, 'glad': 1.0, 'went': 1.0, 'instead': 1.0, 'have': 1.0, '1961': 2.0, 'the': 6.0, 'of': 1.0, 'they': 2.0, 'are': 2.0}
Word element => {'sturdy': 1.0, 'is': 1.0, 'itself': 1.0, 'and': 2.0, 'job': 1.0, 'the': 4.0, 'great': 1.0, 'hated': 1.0, 'attaches': 1.0, 'my': 1.0, 'fits': 1.0, 'that': 2.0, 'something': 1.0, 'know': 1.0, 'worked': 1.0, 'gives': 1.0, 'toilet': 2.0, 'sitting': 1.0, 'but': 1.0, 'can': 1.0, 't': 1.0, 'a': 2.0, 'we': 1.0, 'this': 1.0, 'she': 1.0, 'it': 3.0, 'have': 1.0, 'to': 3.0, 'seat': 4.0, 'all': 1.0, 'daughter': 1.0, 'us': 1.0, 'actually': 1.0, 'for': 2.0, 'hang': 1.0, 'one': 1.0, 'did': 1.0, 'lol': 1.0, 'if': 1.0, 'put': 1.0, 'on': 4.0, 'herself': 1.0, 'really': 1.0, 'enough': 1.0, 'plus': 1.0, 'handles': 1.0, 'good': 2.0, 'scent': 1.0, 'her': 1.0, 'disk': 1.0, 'does': 2.0, 'i': 1.0, 'don': 1.0, 'much': 1.0}
Word element => {'others': 1.0, 'recommend': 1.0, 'would': 1.0, 'glad': 1.0, 'am': 1.0, 'huh': 1.0, 'paper': 1.0, 'water': 1.0, 'just': 1.0, 'clean': 1.0, 'easy': 1.0, 'very': 1.0, 'sit': 1.0, 'can': 2.0, 'back': 1.0, 'likes': 1.0, 'well': 1.0, 'half': 1.0, 'wall': 1.0, 'about': 1.0, '12': 1.0, 'week': 1.0, 'blue': 1.0, 'weeks': 1.0, 'the': 10.0, 'slips': 1.0, 'use': 1.0, 'inch': 1.0, 'did': 1.0, 'sits': 1.0, 'got': 1.0, '2nd': 1.0, 'go': 1.0, 'a': 2.0, 'found': 1.0, 'this': 2.0, 'research': 1.0, 'he': 3.0, 'it': 6.0, 'with': 1.0, 'before': 1.0, 'c': 1.0, 'both': 1.0, 'is': 3.0, 'under': 1.0, 'still': 1.0, 'son': 3.0, 'hang': 1.0, 'months': 1.0, 'color': 1.0, 'one': 1.0, 'product': 1.0, 'for': 2.0, 'home': 1.0, 'purchasing': 1.0, 'i': 6.0, 'old': 1.0, 'on': 4.0, '3': 1.0, 'have': 1.0, 'seat': 5.0, 'to': 6.0, 'lot': 1.0, 'at': 2.0, 'potty': 3.0, 'time': 1.0, 'overall': 1.0, 'running': 1.0, 'elongated': 2.0, 'play': 1.0, 'and': 2.0, 'perfectly': 1.0, 'able': 1.0, 'round': 2.0, 'rinse': 1.0, 'toilet': 5.0, 'toliet': 1.0, 'b': 1.0, 'my': 3.0, 'fits': 1.0}
Word element => {'too': 1.0, 'clean': 1.0, 'easy': 1.0, 'training': 1.0, 'potty': 1.0, 'after': 1.0, 'get': 1.0, 'to': 2.0, 'love': 1.0, 'seat': 1.0, 'this': 1.0, 'her': 2.0, 'made': 1.0, 'my': 1.0, 'pooping': 1.0, 'and': 1.0, 'daughter': 1.0, 'feel': 1.0, 'fear': 1.0, 'over': 1.0, 'secure': 1.0, 'helped': 1.0}
Word element => {'nana': 1.0, 'stay': 1.0, 'house': 1.0, 'on': 1.0, 'the': 1.0, 't': 2.0, 'this': 1.0, 'it': 3.0, 'either': 2.0, 'at': 2.0, 'when': 1.0, 'mom': 1.0, 'little': 1.0, 'didn': 2.0, 'and': 1.0, 'seats': 1.0, 'fit': 2.0, 'meijer': 1.0, 'bought': 1.0, 'we': 1.0, 'toilet': 1.0, 'for': 1.0, 'one': 1.0, 'i': 1.0, 'there': 1.0, 'of': 1.0, 'guys': 1.0, 'our': 1.0, 'so': 1.0, 's': 2.0, 'sent': 1.0, 'to': 1.0, 'my': 1.0}
Word element => {'own': 1.0, 'their': 1.0, 'down': 1.0, 'up': 1.0, 'stool': 1.0, 'step': 1.0, 'around': 1.0, 'overspray': 1.0, 'your': 1.0, 'has': 1.0, 'lip': 1.0, 'is': 1.0, 'one': 2.0, 'little': 2.0, 'prevent': 1.0, 'inexpensive': 1.0, 'cushioned': 1.0, 'kind': 1.0, 'to': 3.0, 'gets': 1.0, 'assist': 1.0, 'ones': 1.0, 'the': 2.0, 'smells': 1.0, 'on': 1.0, 'over': 1.0, 'wrap': 1.0, 'a': 1.0, 'front': 2.0, 'perfect': 1.0, 'heaven': 1.0, 'not': 1.0, 'affordable': 1.0, 'so': 1.0, 'wide': 1.0, 'all': 1.0, 'splits': 1.0, 'getting': 1.0, 'urine': 1.0, 'get': 2.0, 'do': 1.0, 'and': 3.0, 'high': 1.0, 'durable': 1.0, 'it': 1.0, 'this': 1.0}
Word element => {'too': 1.0, 'are': 1.0, 'side': 1.0, 'handles': 1.0, 'bowl': 1.0, 'keep': 1.0, 'to': 1.0, 'front': 1.0, 'construction': 1.0, 'nice': 1.0, 's': 1.0, 'him': 1.0, 'never': 1.0, 'helps': 1.0, 'about': 1.0, 'and': 2.0, 'my': 2.0, 'great': 2.0, 'the': 5.0, 'son': 2.0, 'for': 1.0, 'it': 2.0, 'this': 1.0, 'got': 1.0, 'has': 1.0, 'complained': 1.0, 'perfect': 1.0, 'in': 2.0, 'discomfort': 1.0, 'or': 1.0, 'guard': 1.0, 'on': 1.0, 'pain': 1.0, 'little': 1.0}
Word element => {'5': 1.0, '10': 1.0, 'area': 1.0, 'underside': 1.0, 'inches': 2.0, 'measures': 1.0, 'x': 3.0, '15': 1.0, 'dimensions': 1.0, 'ordering': 1.0, 'measuring': 1.0, 'suggest': 1.0, 'would': 1.0, 'uncertain': 1.0, 'for': 1.0, 'those': 1.0, 'not': 1.0, '8': 1.0, 'perfectly': 1.0, 'and': 2.0, '21': 1.0, 'elongated': 1.0, 'snap': 1.0, 'cimarron': 1.0, 'the': 7.0, 'sits': 1.0, 'to': 1.0, 'seat': 6.0, 'our': 1.0, 'that': 1.0, 'wiggle': 1.0, 'secure': 1.0, 'work': 1.0, 'approximately': 1.0, 'slide': 1.0, 'arm': 1.0, 'toilet': 3.0, 'smell': 1.0, '14': 1.0, 'does': 2.0, '4': 1.0, 'prior': 1.0, 'i': 2.0, 'old': 1.0, 'hammer': 1.0, 'fits': 1.0, 'my': 1.0, 'potty': 3.0, 'pleasant': 1.0, 'which': 1.0, 'footed': 1.0, 'is': 1.0, 'around': 1.0, 'your': 1.0, 'kohler': 1.0, 'on': 2.0, 'daughter': 1.0, 'month': 1.0, 'it': 1.0, 'in': 1.0, 'blue': 1.0, 'deodorizing': 1.0, 'of': 2.0, 'disc': 1.0, 'comfortably': 1.0, 'comfort': 2.0, 'has': 1.0, 'isn': 1.0, 't': 1.0, 'a': 1.0, 'ordered': 1.0, 'height': 1.0, 'overwhelming': 1.0}
Word element => {'diaper': 1.0, 'boy': 1.0, 'just': 1.0, 'not': 2.0, 'tell': 1.0, 'the': 3.0, 'a': 1.0, 's': 1.0, 'we': 1.0, 't': 1.0, 'yet': 1.0, 'can': 1.0, 'toilet': 2.0, 'this': 2.0, 'only': 1.0, 'i': 4.0, 'received': 1.0, 'today': 1.0, 'although': 1.0, 'to': 1.0, 'seat': 2.0, 'our': 2.0, 'that': 1.0, 'quality': 1.0, 'will': 1.0, 'and': 2.0, 'perfectly': 1.0, 'five': 1.0, 'preliminary': 1.0, 'already': 1.0, 'used': 1.0, 'because': 1.0, 'does': 2.0, 'haven': 1.0, 'on': 2.0, 'from': 1.0, 'slide': 1.0, 'appear': 1.0, 'transition': 1.0, 'help': 1.0, 'reason': 1.0, 'm': 2.0, 'product': 1.0, 'fit': 1.0, 'stars': 1.0, 'around': 1.0, 'is': 1.0, 'it': 4.0, 'basing': 1.0, 'review': 1.0, 'giving': 1.0, 'observations': 1.0}
Word element => {'are': 1.0, 'daily': 1.0, 'wipe': 1.0, 'just': 1.0, 'about': 1.0, 'little': 1.0, 'feeling': 1.0, 'seems': 1.0, 'plus': 1.0, 'like': 1.0, 'which': 1.0, 'himself': 1.0, 'down': 1.0, 'perfectly': 1.0, 'size': 1.0, 'toilet': 2.0, 'can': 1.0, 'literally': 1.0, 'fit': 1.0, 'it': 5.0, 'this': 2.0, 'he': 2.0, 'the': 2.0, 'not': 1.0, 'simple': 1.0, 'standard': 1.0, 'independent': 1.0, 'conquer': 1.0, 'easy': 1.0, 'kind': 1.0, 'was': 1.0, 'to': 4.0, 'our': 1.0, 'shape': 1.0, 'elongated': 1.0, 'you': 1.0, 'easily': 1.0, 'clean': 1.0, 'good': 2.0, 'off': 1.0, 'on': 3.0, '4': 1.0, 'fits': 1.0, 'my': 1.0, 'old': 1.0, 'nephew': 1.0, 'let': 1.0, 'and': 4.0, 'intimidated': 1.0, 'more': 1.0, 'is': 3.0, 'fear': 1.0, 'sit': 1.0, 'correctly': 1.0, 'go': 1.0, 'a': 4.0, 's': 1.0, 'him': 1.0, 'year': 1.0, 'his': 1.0, 'of': 1.0, 'falling': 1.0, 'in': 1.0, 'take': 1.0}
Word element => {'be': 1.0, 'out': 1.0, 'turned': 1.0, 'us': 2.0, 'he': 3.0, 'when': 1.0, 'now': 1.0, 'weeks': 1.0, 'few': 1.0, 'for': 1.0, 'beginning': 1.0, 'at': 1.0, 'used': 1.0, 'deodorant': 1.0, 'splashes': 1.0, 'saw': 1.0, 'keeps': 1.0, 'great': 1.0, 'nice': 1.0, 'regular': 1.0, 'in': 1.0, 'having': 1.0, 'is': 1.0, 'on': 1.0, 'hold': 1.0, 'little': 3.0, 'cart': 1.0, 'stable': 1.0, 'toilet': 2.0, 'but': 1.0, 'inside': 1.0, 'additional': 2.0, 'get': 1.0, 'easy': 1.0, 'wanted': 2.0, 'buying': 1.0, 'handles': 1.0, 'the': 10.0, 'a': 3.0, 't': 1.0, 'raised': 1.0, 'avoid': 1.0, 'that': 1.0, 'feature': 1.0, 'i': 3.0, 'ended': 1.0, 'front': 1.0, 'use': 2.0, 'it': 1.0, 'this': 2.0, 'small': 1.0, 'apartment': 1.0, 'tiny': 1.0, 'don': 1.0, 'up': 1.0, 'all': 1.0, 'copy': 1.0, 'to': 6.0, 'seat': 2.0, 'time': 1.0, 'potty': 3.0, 'and': 4.0, 'too': 1.0, 'bathroom': 1.0, 'my': 1.0, 'wants': 1.0, 'son': 1.0}
Word element => {'toilet': 1.0, 'of': 1.0, 'sides': 1.0, 'on': 1.0, 'to': 1.0, 'grab': 1.0, 'she': 1.0, 'that': 1.0, 'otherwise': 1.0, 'doesn': 1.0, 'but': 1.0, 'for': 1.0, 'daughter': 1.0, 'small': 1.0, 'my': 1.0, 't': 1.0, 'the': 3.0, 'little': 1.0, 'bit': 1.0, 'a': 1.0, 'seats': 1.0, 'elongated': 1.0, 'like': 2.0, 'and': 1.0, 'directly': 1.0, 's': 1.0, 'handles': 1.0, 'we': 1.0, 'really': 1.0, 'seat': 2.0, 'it': 1.0, 'this': 1.0, 'loves': 1.0, 'i': 1.0}
Word element => {'is': 1.0, 'which': 1.0, 'if': 1.0, 'freshener': 1.0, 'air': 1.0, 'small': 1.0, 'm': 1.0, 'a': 1.0, 'holder': 1.0, 'can': 1.0, 'plus': 1.0, 'to': 1.0, 'needed': 1.0, 'easy': 1.0, 'super': 1.0, 'makes': 1.0, 'we': 1.0, 'different': 1.0, 'seat': 2.0, 'clean': 1.0, 'bathrooms': 1.0, 'fits': 1.0, 'and': 2.0, 'full': 1.0, 'potty': 1.0, 'one': 1.0, 'have': 1.0, 'all': 1.0, 'sizes': 1.0, 'this': 1.0, 'it': 2.0, 'across': 1.0, 'the': 4.0, 'fact': 1.0, 'house': 1.0, 'awesome': 1.0, 'our': 1.0, 'that': 1.0, 's': 1.0, 'on': 1.0, 'piece': 1.0}
Word element => {'in': 1.0, 'fall': 1.0, 'are': 1.0, 'they': 1.0, 'feel': 1.0, 'going': 1.0, 'kids': 1.0, 'my': 1.0, 'so': 1.0, 'like': 1.0, 'easily': 1.0, 'around': 1.0, 'restroom': 1.0, 'to': 1.0, 'was': 1.0, 'second': 1.0, 'seat': 1.0, 'and': 3.0, 'seats': 1.0, 'our': 2.0, 'potty': 1.0, 'i': 2.0, 'decided': 1.0, 'don': 1.0, 'another': 1.0, 'doesn': 1.0, 'one': 1.0, 'for': 2.0, 'looking': 1.0, 'did': 1.0, 'on': 1.0, 't': 2.0, 'shift': 1.0, 'glad': 1.0, 'this': 1.0, 'it': 1.0, 'fits': 1.0, 'long': 1.0}
Word element => {'are': 1.0, 'we': 1.0, 'solid': 1.0, 'very': 2.0, 'i': 1.0, 'fits': 1.0, 'made': 1.0, 'seat': 1.0, 'fit': 1.0, 'around': 1.0, 'of': 1.0, 'a': 1.0, 'been': 1.0, 'one': 1.0, 'for': 1.0, 'to': 1.0, 'had': 1.0, 'which': 1.0, 'looking': 1.0, 'toilet': 1.0, 'oblong': 1.0, 'and': 1.0, 'others': 1.0, 'it': 1.0, 'with': 1.0, 'this': 1.0, 'moved': 1.0, 'sort': 1.0, 'feel': 1.0, 'happy': 1.0, 'my': 2.0, 'grandchild': 1.0, 'unsafe': 1.0}
Word element => {'available': 1.0, 'cushioning': 1.0, 'additional': 1.0, 'sort': 1.0, 'of': 1.0, 'some': 1.0, 'there': 1.0, 'better': 1.0, 'have': 1.0, 'this': 1.0, 'the': 1.0, 'had': 1.0, 'could': 1.0, 'in': 1.0, 'been': 2.0, 'requirement': 1.0, 'its': 1.0, 'simple': 1.0, 'usage': 1.0, 'and': 1.0, 'is': 1.0, 'meets': 1.0, 'it': 1.0}
Word element => {'guess': 1.0, 'it': 1.0, 'stick': 1.0, 'will': 1.0, 'but': 1.0, 'we': 1.0, 'toilet': 1.0, 'enough': 1.0, 'tough': 1.0, 'i': 1.0, 'one': 1.0, 'for': 1.0, 'shape': 1.0, 'with': 1.0, 'is': 1.0, 'a': 1.0, 'the': 1.0, 'this': 1.0, 'fit': 1.0, 'good': 1.0, 'of': 1.0, 'our': 1.0}
Word element => {'handles': 1.0, 'looks': 1.0, 'round': 1.0, 'i': 2.0, 'moves': 1.0, 'good': 1.0, 'seat': 2.0, 'around': 1.0, 'the': 3.0, 'a': 1.0, 'on': 1.0, 'standard': 1.0, 'toilet': 2.0, 'like': 1.0, 'seats': 1.0, 'and': 2.0, 'have': 1.0}
Word element => {'good': 3.0, 'clean': 1.0, 'to': 1.0, 'reasonable': 1.0, 'price': 1.0, 'comfy': 1.0, 'and': 2.0, 'looks': 1.0, 'easy': 1.0, 'well': 1.0, 'investment': 3.0, 'sits': 1.0, 'on': 1.0, 'the': 1.0, 'toilet': 1.0}
Word element => {'little': 1.0, 'boy': 1.0, '34': 1.0, 'old': 1.0, 'year': 1.0, 'for': 1.0, 'could': 1.0, '3': 1.0, 'longer': 1.0, 'is': 2.0, 'seat': 2.0, 'good': 1.0, 'the': 3.0, 'my': 1.0, '41': 1.0, 'hole': 1.0, 'be': 1.0, 'bought': 1.0, 'who': 1.0, 'tall': 1.0, 'it': 1.0, 'works': 1.0, 'pretty': 1.0, 'a': 1.0, 'well': 1.0, 'size': 1.0, 'but': 1.0}
Word element => {'no': 1.0, 'does': 1.0, 'of': 1.0, 'but': 1.0, 'back': 1.0, 'worthless': 1.0, 'little': 1.0, 'harm': 1.0, 'found': 1.0, 'boy': 1.0, 'toddle': 1.0, 'a': 2.0, 'best': 1.0, 'seats': 1.0, 'deodorant': 1.0, 'we': 2.0, 'other': 1.0, 'fits': 1.0, 'than': 1.0, 'better': 1.0, 'and': 1.0, 's': 1.0, 've': 2.0, 'also': 1.0, 'for': 1.0, 'love': 1.0, 'this': 2.0, 'it': 2.0, 'tried': 1.0, 'i': 1.0, 'on': 2.0, 'is': 2.0, 'the': 7.0, 'more': 1.0, 'because': 1.0, 'seat': 3.0, 'making': 2.0, 'stable': 1.0, 'bit': 1.0, 'much': 2.0, 'toilet': 1.0, 'opening': 1.0, 'large': 1.0, 'larger': 1.0}
Word element => {'wonderfully': 1.0, 'works': 1.0, 'splashguard': 1.0, 'off': 1.0, 'have': 1.0, 'a': 1.0, 'and': 3.0, '3': 1.0, 'toilet': 1.0, 'started': 1.0, 'the': 1.0, 'year': 1.0, 'old': 1.0, 'i': 2.0, 'age': 1.0, 'has': 1.0, 'at': 1.0, 'two': 1.0, 'using': 1.0, 'love': 1.0, 'this': 1.0, 'it': 2.0, 'fits': 1.0, 'perfect': 1.0, 'clicked': 1.0, 'on': 1.0, 'never': 1.0}
Word element => {'kids': 1.0, 'to': 1.0, 'easy': 1.0, 'very': 2.0, 'seat': 1.0, 'your': 1.0, 'toilet': 1.0, 'in': 1.0, 'take': 1.0, 'and': 2.0, 'shape': 1.0, 'this': 1.0, 'it': 1.0, 'fits': 1.0, 'out': 1.0, 'nicely': 1.0, 'the': 1.0, 'for': 1.0, 'handle': 1.0, 'on': 1.0, 'both': 1.0, 'is': 1.0, 'side': 1.0, 'convenient': 1.0}
Word element => {'kid': 1.0, 'little': 1.0, 'for': 1.0, 'would': 1.0, 'in': 1.0, 'upright': 1.0, 's': 1.0, 'up': 1.0, 'much': 1.0, 'any': 1.0, 'alone': 1.0, 'we': 3.0, 'not': 1.0, 'stand': 1.0, 'job': 1.0, 'took': 1.0, 'they': 1.0, 'used': 1.0, 'when': 1.0, 'gets': 1.0, 'the': 2.0, 'kiddie': 1.0, 'so': 1.0, 'space': 1.0, 'use': 1.0, 'loved': 1.0, 'potties': 1.0, 'that': 1.0, 'was': 1.0, 'recommend': 1.0, 'stands': 1.0, 'cheaper': 1.0, 'and': 3.0, 'done': 1.0, 'durable': 1.0, 'this': 1.0, 'it': 1.0}
Word element => {'price': 1.0, 'and': 1.0, 'i': 1.0, 'size': 1.0, 'recommend': 1.0, 'good': 1.0, 'a': 1.0, 'the': 1.0, 'my': 1.0, 'this': 1.0, 'grandson': 1.0, 'for': 1.0, '3': 1.0, 'securely': 1.0, 'too': 1.0, 'yr': 1.0, 'right': 1.0, 'product': 1.0, 'old': 1.0, 'great': 1.0, 'it': 1.0, 'fits': 1.0, 'is': 2.0}
Word element => {'again': 1.0, 'stays': 1.0, 'herself': 1.0, 'the': 1.0, 'it': 2.0, 'would': 1.0, 'able': 1.0, 'on': 1.0, 'is': 1.0, 'purchase': 1.0, 'toilet': 1.0, 'we': 1.0, 'put': 2.0, 'girl': 1.0, 'a': 1.0, 'seat': 1.0, 'she': 2.0, 'to': 2.0, 'seems': 1.0, 'and': 2.0, 'like': 1.0, 'have': 1.0, 'this': 1.0}
Word element => {'bathroom': 1.0, 'other': 1.0, 'second': 1.0, 'slide': 1.0, 'bleached': 1.0, 'it': 5.0, 'he': 1.0, 'washed': 1.0, 'using': 1.0, 'around': 1.0, 'is': 1.0, 'really': 1.0, 'can': 1.0, 'right': 1.0, 'that': 2.0, 'the': 2.0, 'currently': 1.0, 'this': 1.0, 'molded': 1.0, 'seems': 1.0, 'in': 1.0, 'one': 2.0, 'toilets': 1.0, 'be': 1.0, 'its': 1.0, 'our': 1.0, 'seat': 1.0, 'to': 1.0, 'all': 2.0, 'have': 1.0, 'for': 1.0, 'fit': 1.0, 'buying': 1.0, 'with': 1.0, 'piece': 1.0, 'visit': 1.0, 'i': 2.0, 'if': 1.0, 'am': 1.0, 'someone': 1.0, 'gets': 1.0, 'we': 1.0, 'a': 2.0, 'little': 1.0, 'messy': 1.0, 'nice': 1.0, 'great': 1.0, 'spot': 1.0, '1': 1.0, 'and': 2.0, 'so': 1.0, 'boy': 1.0, 'does': 1.0, 'are': 1.0, 'handles': 1.0, 'doesnt': 1.0}
Word element => {'thing': 1.0, 'him': 1.0, 'son': 1.0, 'is': 1.0, 'on': 1.0, 'our': 1.0, 'easy': 1.0, 'the': 1.0, 'seat': 2.0, 'atop': 1.0, 'put': 1.0, 'his': 1.0, 'it': 1.0, 'he': 1.0, 'this': 1.0, 'can': 2.0, 'toilet': 1.0, 'simple': 2.0, 'we': 1.0, 'set': 1.0, 'there': 1.0, 'up': 1.0, 'hold': 1.0, 'and': 2.0, 'do': 1.0}
Word element => {'right': 1.0, 'eye': 1.0, 'pleasing': 1.0, 'munchkin': 1.0, 'points': 1.0, 'bonus': 1.0, 'have': 1.0, 'any': 1.0, 'all': 1.0, 'to': 4.0, 'nail': 1.0, '1': 2.0, 'pack': 1.0, 'nursery': 1.0, 'wipes': 2.0, 'clippers': 1.0, 'the': 6.0, '2': 1.0, 'butt': 1.0, 'out': 1.0, 'of': 1.0, 'etc': 1.0, 'rattle': 1.0, 'i': 2.0, 'boogie': 1.0, 'it': 3.0, 'perfect': 1.0, 'this': 2.0, 'n': 1.0, 'handy': 1.0, 'basket': 1.0, 'that': 1.0, 'next': 1.0, 'room': 2.0, 'is': 1.0, 'caddy': 1.0, 'so': 2.0, 'essentials': 1.0, 'and': 3.0, 'play': 1.0, 'hangs': 1.0, 'for': 1.0, 'love': 1.0, 'where': 1.0, 'family': 1.0, 'cream': 1.0, 'fits': 2.0, 'my': 1.0, 'them': 1.0, 'baby': 2.0, 'girl': 1.0, 'making': 1.0, 'naps': 1.0, 'diapers': 1.0, 's': 1.0, 'size': 1.0, 'in': 3.0, 'lotion': 1.0, 'thermometer': 1.0}
Word element => {'the': 1.0, 'on': 1.0, 'one': 1.0, 'for': 2.0, 'are': 1.0, 'cubbies': 1.0, 'small': 1.0, 'simple': 1.0, 'long': 1.0, 'daycare': 1.0, 'and': 3.0, 'wipes': 2.0, 'home': 1.0, 'needed': 1.0, 'i': 1.0, 'that': 1.0, 'awesome': 1.0, 'middle': 1.0, 'a': 2.0, 'is': 2.0, 'way': 1.0, 'organize': 1.0, 'this': 2.0, 'it': 1.0, 'to': 1.0, 'several': 1.0, 'different': 1.0, 'diapers': 2.0, 'in': 1.0, 'perfect': 2.0, 'have': 1.0, 'four': 1.0, 'because': 1.0, 'has': 1.0}
Word element => {'materials': 1.0, 'safe': 1.0, 'conscientious': 1.0, 'being': 1.0, 'munchkin': 1.0, 'gift': 1.0, 'give': 1.0, 'stock': 1.0, 'makes': 1.0, 'books': 1.0, 'still': 1.0, 'holding': 1.0, 'find': 1.0, 'but': 1.0, 'baby': 1.0, 'quality': 2.0, 'also': 1.0, 'will': 2.0, 'for': 3.0, 'using': 1.0, 'size': 1.0, 'a': 5.0, 'etc': 1.0, 'i': 5.0, 'toys': 1.0, 'need': 1.0, 'was': 1.0, 'perfect': 1.0, 'this': 1.0, 'with': 2.0, 'construction': 1.0, 'feels': 1.0, 'and': 2.0, 'good': 2.0, 'is': 1.0, 'it': 5.0, 'looks': 1.0, 'longer': 1.0, 'shower': 1.0, 'of': 1.0, 'the': 2.0, 'diaper': 1.0, 'high': 1.0, 'smaller': 1.0, 'definitely': 1.0, 'sure': 1.0, 'use': 1.0, 'impressed': 1.0, 'portable': 1.0, 'bath': 1.0, 'you': 1.0, 'am': 2.0, 'easily': 1.0, 'when': 1.0, 'about': 1.0, 'no': 1.0, 'to': 1.0, 'all': 1.0, 'as': 2.0, 'appreciate': 1.0, 'really': 3.0, 'caddy': 1.0, 'be': 1.0, 'basket': 3.0, 'organizing': 1.0, 'items': 2.0}
Word element => {'toward': 1.0, 'side': 1.0, 'turn': 1.0, 'sewn': 1.0, 'company': 1.0, 'sarahbear': 1.0, 'from': 1.0, 'logo': 1.0, 'one': 1.0, 'liner': 1.0, 'here': 1.0, 'crooked': 1.0, 'baby': 2.0, 'dresser': 1.0, 'feet': 1.0, 'size': 1.0, 'the': 6.0, 'diaper': 1.0, 'but': 2.0, 'work': 1.0, 'little': 2.0, 'basket': 2.0, 'that': 2.0, 'changing': 2.0, 'great': 1.0, 'big': 1.0, 'it': 2.0, 'major': 1.0, 'on': 3.0, '4': 1.0, 'really': 1.0, 'use': 2.0, 'stand': 1.0, 'of': 4.0, 'at': 1.0, 'wall': 1.0, 'no': 1.0, 'top': 1.0, 'table': 2.0, 'which': 1.0, 'a': 3.0, 'we': 3.0, 'will': 1.0, 'also': 1.0, 'plan': 1.0, 'is': 3.0, 'holds': 1.0, 'tag': 1.0, 'wipes': 1.0, 'too': 1.0, 'and': 1.0, 'well': 1.0, 'has': 1.0, 'complaints': 1.0, 'diapers': 1.0, 'pockets': 1.0, 'for': 1.0, 'our': 2.0, 'as': 1.0, 'to': 2.0, 'all': 1.0, 'small': 2.0, 'have': 1.0, 'issue': 1.0, 'alone': 1.0, 'creams': 1.0}
Word element => {'get': 1.0, 'don': 1.0, 'niece': 1.0, 'has': 1.0, 'one': 2.0, 'for': 2.0, 'people': 1.0, 'is': 1.0, 't': 1.0, 'the': 1.0, 'my': 1.0, 'lady': 1.0, 'handy': 1.0, 'basket': 1.0, 'this': 1.0, 'have': 1.0, 'expect': 1.0, 'babysit': 1.0, 'super': 1.0, 'had': 1.0, 'to': 3.0, 'i': 2.0, 'buy': 1.0, 'awesome': 1.0, 'that': 1.0, 'very': 1.0, 'nice': 1.0, 'gift': 1.0}
Word element => {'diaper': 1.0, 'not': 1.0, 'caddy': 1.0, 'really': 1.0, 'anything': 1.0, 'be': 1.0, 'needed': 1.0, 'purchase': 1.0, 'definitely': 1.0, 'useful': 1.0, 'but': 1.0, 'fake': 1.0, 'just': 1.0, 'by': 1.0, 'stained': 1.0, 'if': 1.0, 'being': 2.0, 'super': 1.0, 'each': 1.0, 'due': 1.0, 'photo': 1.0, 'again': 1.0, 'seen': 1.0, 'than': 2.0, 'black': 1.0, 'd': 1.0, '34': 2.0, 'closer': 1.0, 'in': 2.0, 'brown': 2.0, 'deep': 1.0, 'dark': 2.0, 'received': 1.0, 'so': 1.0, 'anyway': 1.0, 'materials': 1.0, 'stain': 1.0, 'could': 1.0, 'we': 3.0, 'a': 4.0, 'adorable': 1.0, 'lot': 1.0, 'formaldehyde': 1.0, 'imagine': 1.0, 'rather': 2.0, 'of': 4.0, 'well': 1.0, 'has': 1.0, 'free': 2.0, 'based': 1.0, 'this': 2.0, 'it': 4.0, 'with': 1.0, 'made': 2.0, 'goes': 1.0, 'color': 1.0, 'one': 2.0, 'perfectly': 1.0, 'and': 10.0, 'more': 1.0, 'is': 7.0, 'lead': 1.0, 'still': 1.0, 'storage': 1.0, 'basket': 2.0, 'that': 3.0, 'nice': 1.0, 'only': 1.0, 'nursery': 1.0, 'cute': 1.0, 'i': 2.0, 'hand': 1.0, 'like': 1.0, 'the': 7.0, 'for': 1.0, 'love': 1.0, 'product': 1.0, 'real': 1.0, 'wood': 3.0, 'water': 1.0, 'good': 1.0, 'different': 1.0, 'pvc': 1.0, 'thing': 1.0, 'dye': 2.0, 'used': 2.0, 'on': 2.0, 'was': 2.0, 'all': 2.0, 'to': 3.0, 'our': 1.0, 'as': 3.0, 'actual': 1.0}
Word element => {'better': 1.0, 'worked': 1.0, 'which': 1.0, 'caddy': 1.0, 'clearly': 1.0, 'of': 1.0, 'up': 1.0, 'little': 1.0, 'to': 2.0, 'one': 1.0, 'i': 4.0, 'not': 1.0, 'just': 1.0, 'munchkin': 1.0, 'would': 1.0, 'if': 1.0, 'recommend': 1.0, 'you': 1.0, 'keep': 1.0, 'space': 1.0, 'her': 1.0, 'couch': 1.0, 'spends': 1.0, 'this': 3.0, 'it': 1.0, 'have': 1.0, 'enough': 1.0, 'in': 1.0, 'the': 1.0, 'my': 2.0, 'family': 1.0, 'room': 1.0, 'time': 1.0, 'so': 1.0, 'everytime': 1.0, 'bag': 1.0, 'need': 1.0, 'most': 1.0, 'change': 1.0, 'is': 1.0, 'its': 1.0, 'do': 1.0, 'getting': 1.0, 'portable': 1.0, 'on': 1.0, 'that': 1.0, 'for': 1.0, 'product': 1.0, 'and': 1.0, 'too': 1.0, 'big': 1.0, 'ended': 1.0, 'a': 1.0}
Word element => {'cheaper': 1.0, 'check': 1.0, 'just': 1.0, 'looking': 1.0, 'container': 1.0, 'toiletries': 1.0, 'into': 1.0, 'transition': 1.0, 'gets': 1.0, 'after': 1.0, 'thing': 1.0, 'love': 1.0, 'clippers': 1.0, 'miscellaneous': 1.0, 'etc': 2.0, 'pad': 1.0, 'changing': 1.0, 'buttpaste': 1.0, 'are': 1.0, 'diapers': 1.0, 'nail': 1.0, 'son': 2.0, 'comes': 1.0, 'you': 2.0, 'anything': 1.0, 'personal': 1.0, 'designated': 1.0, 'space': 1.0, 'pocket': 1.0, 'really': 1.0, 'seriously': 1.0, 'sex': 1.0, 'used': 1.0, 'precious': 1.0, 'design': 1.0, 'recommend': 1.0, 'favorite': 1.0, 'absolute': 1.0, 'purchasing': 2.0, 'seconds': 1.0, 'case': 1.0, 'lately': 1.0, 'either': 1.0, 'weeks': 1.0, 'from': 1.0, 'seeing': 1.0, 'best': 1.0, 'price': 2.0, '34': 2.0, 'both': 1.0, 'no': 2.0, 'years': 1.0, 'will': 2.0, 'undoubtedly': 1.0, 'one': 3.0, 'they': 2.0, 'wipes': 1.0, 'between': 1.0, 'not': 1.0, 'easily': 1.0, 'because': 1.0, 'possible': 1.0, 'if': 2.0, 'all': 4.0, 'to': 4.0, 'diaper': 2.0, 'as': 5.0, 'and': 6.0, 'remembered': 1.0, 'me': 1.0, 'my': 9.0, 'truly': 1.0, 'away': 1.0, 'nights': 1.0, 'longer': 1.0, 'the': 7.0, 'of': 6.0, 'needs': 6.0, 'time': 1.0, 'can': 4.0, 'so': 1.0, 'wonderful': 1.0, 'been': 1.0, 'amazon': 3.0, 'bath': 1.0, 'caddy': 5.0, 'your': 1.0, 'feel': 1.0, 'then': 1.0, 'some': 1.0, 'his': 1.0, 'around': 1.0, 'complaint': 1.0, 'well': 2.0, 'i': 15.0, 'items': 1.0, 'thinking': 1.0, 'stated': 1.0, 'two': 1.0, 'only': 1.0, 'with': 3.0, 'buying': 2.0, 'kids': 1.0, 'come': 1.0, 'need': 1.0, 'possibly': 1.0, 'or': 1.0, '29': 1.0, 'went': 1.0, 'thermometer': 1.0, 'meets': 1.0, 'was': 2.0, 'almost': 1.0, 'deal': 1.0, 'baby': 2.0, 'imagine': 1.0, 'a': 10.0, 'further': 1.0, 'fit': 1.0, 'ago': 1.0, 'highly': 2.0, 'this': 7.0, 'few': 4.0, 'back': 2.0, 'when': 2.0, 'local': 2.0, 'be': 1.0, 'randomly': 1.0, 'in': 2.0, 'has': 2.0, 'target': 5.0, 'look': 1.0, 'is': 5.0, 'at': 2.0, 'it': 4.0, 'thought': 1.0, 'purchased': 2.0, 'trying': 1.0, 'rip': 1.0, 'have': 6.0, 'remember': 1.0, 'before': 1.0, 'own': 1.0, 'off': 1.0, 'absolutely': 1.0, 'caddies': 1.0, 'use': 1.0, 'tag': 1.0, 'last': 1.0, '99': 1.0, 'think': 1.0, 'better': 1.0, 's': 1.0, 'ha': 1.0, 'glad': 1.0, 'there': 1.0, 'styles': 1.0, 'stock': 1.0, '10': 1.0, 'such': 1.0, 'for': 6.0, 'exceptional': 1.0, 'older': 1.0, '3': 1.0, 'over': 1.0}
Word element => {'so': 1.0, 'however': 1.0, 'every': 1.0, 'caddies': 1.0, 'the': 3.0, 'these': 1.0, 'diaper': 1.0, 'great': 1.0, 'has': 1.0, 'think': 1.0, 'next': 1.0, 'that': 1.0, 'new': 1.0, 'munchkin': 2.0, 'gone': 1.0, 'of': 1.0, 'have': 2.0, 'slightly': 1.0, 'sizes': 1.0, 'i': 5.0, 'two': 1.0, 'love': 2.0, 'for': 1.0, 'bed': 1.0, 'do': 1.0, 'and': 3.0, 'since': 1.0, 'obviously': 1.0, 'one': 3.0, 'bought': 1.0, 'design': 1.0, 'from': 1.0, 'very': 1.0, 'version': 1.0, 'older': 1.0, 'sarabear': 1.0, 'it': 1.0, 'compartments': 1.0, 'when': 1.0, 'are': 1.0, 'to': 1.0, 'my': 1.0, 'down': 1.0, 'especially': 1.0, 'quality': 1.0, 'them': 1.0, 'baby': 1.0, 'is': 1.0}
Word element => {'some': 1.0, 'and': 2.0, 'wipes': 1.0, 'hold': 1.0, 'my': 1.0, 'fine': 1.0, 'could': 1.0, 'something': 1.0, 'wish': 1.0, 'in': 1.0, 'all': 1.0, 'put': 1.0, 'diapers': 1.0, 'but': 1.0, 'larger': 1.0, 'there': 2.0, 'i': 2.0, 'cloth': 1.0, 'can': 1.0, 'creams': 1.0, 'works': 1.0, 'diaper': 1.0, 't': 1.0, 'this': 1.0, 'anything': 1.0, 'covers': 1.0, 'out': 1.0, 'well': 1.0, 'was': 1.0, 'to': 1.0}
Word element => {'fabric': 1.0, 'good': 1.0, 'basket': 1.0, 'also': 1.0, 'is': 3.0, 'design': 1.0, 'the': 3.0, 's': 1.0, 'baby': 1.0, 'little': 1.0, 'few': 1.0, 'wipes': 1.0, 'quality': 1.0, 'diapers': 1.0, 'easy': 2.0, 'and': 3.0, 'me': 1.0, 'for': 1.0, 'helpful': 1.0, 'it': 3.0, 'this': 1.0, 'cute': 1.0, 'found': 1.0, 'i': 1.0, 'so': 3.0, 'essentials': 1.0, 'made': 1.0, 'to': 3.0, 'right': 1.0, 'keep': 1.0, 'a': 1.0, 'things': 1.0, 'transport': 1.0, 'next': 1.0}
Word element => {'in': 1.0, 'came': 1.0, 'package': 1.0, 'on': 1.0, 'pictured': 1.0, 'brown': 1.0, 'be': 1.0, 'black': 1.0, 'well': 1.0, 'as': 2.0, 'might': 1.0, 'or': 1.0, 'good': 1.0, 'sturdy': 1.0, 'amazon': 1.0, 'is': 3.0, 'nice': 1.0, 'liner': 1.0, 'caddy': 1.0, 'size': 1.0, 'it': 2.0, 'with': 1.0, 'this': 1.0, 'the': 4.0, 'my': 1.0, 'compartments': 1.0, 'but': 1.0, 'love': 1.0, 'one': 1.0, 'i': 1.0, 'took': 1.0, 'away': 1.0, 'so': 1.0, 'star': 1.0, 'not': 1.0, 'basket': 2.0, 'because': 1.0, 'definitely': 1.0, 'dark': 1.0}
Word element => {'this': 1.0, 'glad': 1.0, 'will': 1.0, 'instead': 1.0, 'course': 1.0, 'of': 2.0, 'set': 1.0, 'spa': 1.0, 'like': 1.0, 'little': 1.0, 'makes': 1.0, 'decor': 1.0, 'weave': 1.0, 'apart': 1.0, 'falling': 1.0, 'now': 2.0, 'was': 3.0, 'hoping': 1.0, 'any': 1.0, 'to': 1.0, 'look': 2.0, 'is': 1.0, 'first': 1.0, 'born': 1.0, 'finally': 1.0, 'when': 1.0, 'daughter': 1.0, 'i': 6.0, 'with': 2.0, 'pink': 3.0, 'it': 5.0, 'sarabear': 1.0, 'one': 2.0, 'for': 1.0, 'too': 1.0, 'green': 1.0, 'and': 3.0, 'got': 1.0, 'worried': 1.0, 'three': 1.0, 'really': 1.0, 'caddy': 1.0, 'm': 1.0, 'years': 1.0, 'my': 1.0, 'another': 2.0, 'baby': 1.0, 'find': 1.0, 'chose': 1.0, 'ended': 1.0, 'cute': 1.0, 'the': 3.0, 'but': 2.0, 'up': 1.0, 'white': 2.0, 'that': 1.0, 'boring': 1.0, 'new': 1.0, 'would': 1.0, 'go': 1.0, 'ago': 1.0, 'a': 3.0, 'waffle': 1.0, 's': 1.0}
Word element => {'have': 1.0, 'hope': 1.0, 'it': 1.0, 'are': 2.0, 'dry': 1.0, 'like': 1.0, 'didn': 2.0, 'usually': 1.0, 'smell': 1.0, 'and': 1.0, 'play': 1.0, 'arm': 1.0, 'lack': 1.0, 'couldn': 1.0, 'use': 1.0, 'keeping': 1.0, 'weird': 1.0, 'but': 2.0, 'back': 1.0, 'only': 1.0, 'try': 1.0, 'nursery': 1.0, 'over': 1.0, 'babyganics': 1.0, 'i': 8.0, 'odor': 1.0, 'tried': 1.0, 'take': 1.0, 'about': 1.0, 'baby': 1.0, 'dapple': 2.0, 'the': 4.0, 'others': 1.0, 'these': 3.0, 'area': 1.0, 'my': 1.0, 'plus': 1.0, 'hammer': 1.0, 'unfortunately': 1.0, 'wipes': 6.0, 'clean': 2.0, 'at': 1.0, 'how': 1.0, '99': 1.0, '6': 1.0, 'of': 2.0, 'for': 1.0, 's': 1.0, 'going': 1.0, 't': 3.0, 'a': 2.0, 'canister': 1.0, 'well': 1.0, '75': 1.0, 'thought': 1.0, 'price': 1.0, 'm': 2.0, 'd': 1.0, 'give': 1.0, 'obsessive': 1.0, 'switch': 1.0, 'to': 2.0, 'as': 3.0, 'really': 2.0}
Word element => {'we': 1.0, 'whenever': 1.0, 'again': 1.0, 'will': 1.0, 'drying': 1.0, 'all': 1.0, 'enough': 1.0, 'remain': 1.0, 'of': 1.0, 'son': 1.0, 'my': 1.0, 'wipe': 2.0, 'to': 4.0, 'without': 1.0, 'right': 1.0, 'each': 1.0, 'start': 1.0, 'provide': 1.0, 'like': 1.0, 'and': 2.0, 'toys': 2.0, 'wipes': 1.0, 's': 1.0, 'buy': 1.0, 'night': 1.0, 'i': 2.0, 'the': 1.0, 'these': 2.0, 'just': 1.0, 'run': 1.0, 'out': 1.0, 'them': 1.0, 'moist': 1.0, 'sanitize': 1.0, 'moisture': 1.0, 'low': 1.0, 'down': 2.0, 'amount': 1.0, 'his': 1.0}
Word element => {'happy': 1.0, 'slightly': 1.0, 'leave': 1.0, 'do': 1.0, 'wet': 1.0, 'dripping': 1.0, 'mine': 1.0, 'cleaned': 1.0, 'dry': 1.0, 'consider': 1.0, 'don': 1.0, 'damp': 1.0, 'moist': 1.0, 'paranoid': 1.0, 'in': 1.0, 'win': 2.0, 'everything': 2.0, 'items': 1.0, 'slobber': 1.0, 'my': 3.0, 'toys': 1.0, 'mouth': 1.0, 'chew': 1.0, 'likes': 1.0, 'has': 2.0, 'won': 1.0, 'm': 1.0, '34': 4.0, 'plus': 1.0, 'surfaces': 1.0, 'and': 3.0, 'not': 1.0, 'me': 1.0, 'unlike': 1.0, 'ease': 1.0, 'time': 1.0, 'friends': 1.0, 'know': 1.0, 'like': 1.0, 'first': 1.0, 'it': 1.0, 'all': 1.0, 'as': 1.0, 'to': 2.0, 'baby': 3.0, 'wipe': 2.0, 'on': 2.0, 'put': 2.0, 'his': 2.0, 'down': 1.0, 'mom': 1.0, 'some': 1.0, 'these': 2.0, 'the': 3.0, 's': 1.0, 'a': 3.0, 't': 2.0, 'at': 2.0, 'quickly': 1.0, 'i': 3.0, 'can': 1.0, 'other': 1.0, 'contaminated': 1.0, 'that': 3.0, 'been': 1.0, 'reviewers': 1.0, 'are': 2.0, 'clean': 1.0, 'ingredients': 1.0, 'harm': 1.0}
Word element => {'dislikes': 1.0, 'for': 1.0, 'stars': 1.0, '5': 1.0, 'given': 1.0, 'look': 1.0, 'wipe': 1.0, 'to': 1.0, 'the': 1.0, 'such': 1.0, 'these': 2.0, 'more': 1.0, 'not': 1.0, 'that': 1.0, 'two': 1.0, 'i': 2.0, 'surface': 1.0, 'so': 4.0, 'd': 1.0, 'wide': 1.0, 'have': 1.0, 'well': 1.0, 't': 2.0, 'a': 1.0, 'are': 1.0, 'title': 1.0, 'suggests': 1.0, 'scented': 1.0, 'they': 2.0, 'and': 1.0, 'getting': 1.0, 'cant': 1.0, 'don': 2.0, 'up': 2.0, 'in': 1.0, 'also': 1.0, 'chemicals': 1.0, 'it': 2.0, 'but': 2.0, 'easily': 1.0, 'you': 3.0, 'much': 2.0, 'end': 2.0, 'like': 3.0, 'using': 1.0, 'wipes': 1.0, 'clean': 1.0, 'out': 1.0, 'off': 1.0, 'having': 1.0, 'detach': 1.0, 'than': 1.0, 'need': 1.0}
Word element => {'myself': 1.0, 'them': 1.0, 'addition': 1.0, 'for': 1.0, 'love': 1.0, 'purse': 1.0, 'they': 1.0, 'a': 1.0, 'are': 2.0, 'that': 1.0, 'packaged': 1.0, 'mom': 1.0, 'i': 2.0, 'or': 1.0, 'any': 1.0, 's': 1.0, 'great': 1.0, 'these': 1.0, 'diaper': 1.0, 'to': 2.0, 'had': 1.0, 'bag': 1.0, 'individually': 1.0, 'have': 1.0, 'even': 1.0, 'use': 1.0}
Word element => {'soda': 1.0, 'tote': 1.0, 'perfume': 1.0, 'used': 1.0, 'have': 1.0, 'thing': 2.0, 'hand': 1.0, 'miss': 1.0, 'about': 2.0, 'don': 1.0, 'are': 2.0, 'or': 1.0, 'person': 1.0, 'wipe': 1.0, 'to': 3.0, 'best': 2.0, 'as': 1.0, 'kind': 1.0, 'open': 1.0, 'bulky': 1.0, 'the': 3.0, 'these': 2.0, 't': 2.0, 'didn': 1.0, 'old': 1.0, 'i': 3.0, 'thin': 1.0, 'like': 2.0, 'no': 1.0, 'carry': 1.0, 'at': 1.0, 'opening': 1.0, 'of': 1.0, '34': 2.0, 'they': 2.0, 'your': 1.0, 'school': 1.0, 'however': 1.0, 'ketchup': 1.0, 'baking': 1.0, 'purse': 1.0, 'packet': 1.0, 'first': 1.0, 'it': 1.0, 'is': 2.0, 'on': 1.0, 'nice': 1.0}
Word element => {'go': 1.0, 'the': 1.0, 'carry': 1.0, 'to': 1.0, 'wrapper': 1.0, 'easy': 1.0, 'individual': 1.0, 'i': 1.0, 'goodvery': 1.0, 'convinient': 1.0, 'very': 1.0, 'like': 1.0, 'each': 1.0, 'that': 1.0, 'wipe': 1.0, 'on': 1.0, 'is': 1.0, 'sealed': 1.0, 'in': 1.0}
Word element => {'with': 1.0, 'purse': 1.0, 'it': 1.0, 'couple': 1.0, 'makes': 1.0, 'wipes': 1.0, 'they': 1.0, 'a': 1.0, 'my': 1.0, 'made': 1.0, 'this': 2.0, 'wish': 1.0, 'in': 2.0, 'big': 1.0, 'me': 1.0, 'easy': 1.0, 'but': 1.0, 'take': 1.0, 'wrapped': 1.0, 'to': 1.0, 'pack': 1.0, 'individually': 1.0}
Word element => {'potty': 1.0, 'as': 1.0, 'understand': 1.0, 'daughter': 1.0, 'my': 1.0, 'is': 1.0, 'this': 2.0, 'think': 1.0, 'assembly': 1.0, 'looks': 1.0, 'doesnt': 1.0, 'product': 1.0, 'to': 2.0, 'good': 1.0, 'just': 1.0, 'easy': 1.0, 'fits': 1.0, 'perfect': 1.0, 'a': 2.0, 'toddler': 1.0}
Word element => {'like': 1.0, 'overall': 1.0, 'wiping': 1.0, 'they': 1.0, 'store': 1.0, 'toilet': 1.0, 'flushable': 1.0, 'just': 1.0, 'even': 1.0, 'though': 1.0, 'worth': 1.0, 'horrible': 1.0, 'are': 1.0, 'that': 1.0, 'accesible': 1.0, 'side': 1.0, 'on': 1.0, 'likes': 1.0, 'easier': 1.0, 'used': 1.0, 'down': 1.0, 'still': 1.0, 'son': 2.0, 'dispenser': 1.0, 'very': 2.0, 'too': 1.0, 'and': 4.0, 'size': 1.0, 'work': 1.0, 'can': 1.0, 'gallon': 1.0, 'great': 1.0, 'nice': 1.0, 'without': 1.0, 'the': 8.0, 'is': 3.0, 'really': 2.0, 'purchase': 1.0, 'my': 2.0, 'lid': 1.0, 'this': 2.0, 'with': 2.0, 'be': 1.0, 'stool': 1.0, 'liked': 1.0, 'when': 2.0, 'came': 1.0, 'step': 1.0, 'i': 4.0, 'for': 1.0, 'cheap': 1.0, 'much': 1.0, 'its': 2.0, 'seat': 2.0, 'as': 1.0, 'to': 2.0, 't': 2.0, 'a': 2.0, 'sturdy': 1.0, 'come': 1.0, 'bucket': 1.0, 'easy': 1.0, 'it': 8.0, 'remove': 1.0, 'line': 1.0, '5': 1.0, 'isn': 1.0, 'garbage': 1.0, 'potty': 1.0, 'so': 2.0, 'from': 1.0, 'bags': 1.0, 'have': 1.0, 'wipes': 4.0, 'clean': 2.0, 'out': 1.0, 'makes': 1.0, 'don': 1.0, 'up': 1.0}
Word element => {'stuck': 1.0, 'now': 1.0, 'm': 1.0, 'both': 1.0, 'that': 2.0, 'used': 1.0, 'chairs': 1.0, 'girl': 1.0, 'model': 1.0, 'they': 1.0, 'need': 1.0, 'short': 1.0, 'far': 1.0, 'do': 2.0, 'only': 1.0, 'clearly': 2.0, 'will': 2.0, 'on': 2.0, 'instead': 1.0, 'chair': 1.0, 'unisex': 1.0, 'redesign': 1.0, 'urine': 1.0, 'designed': 1.0, 'poorly': 1.0, 'very': 1.0, 'is': 3.0, 'can': 1.0, 'work': 2.0, 'but': 2.0, 'money': 1.0, 'after': 1.0, 'ended': 1.0, 'putting': 1.0, 'be': 2.0, 'trying': 3.0, 'a': 3.0, 's': 2.0, 't': 1.0, 'job': 1.0, 'the': 3.0, 'other': 2.0, 'home': 1.0, 'too': 1.0, 'and': 5.0, 'up': 1.0, 'of': 3.0, 'to': 6.0, 'grandpa': 1.0, 'things': 1.0, 'grandma': 1.0, 'before': 1.0, 'two': 2.0, 'i': 10.0, 'actually': 1.0, 'supposed': 1.0, 'for': 5.0, 'hadn': 1.0, 'my': 4.0, 'went': 1.0, 'one': 2.0, 'bought': 1.0, 'girls': 1.0, 'well': 1.0, 'them': 2.0, 'started': 1.0, 'just': 1.0, 'find': 1.0, 'because': 1.0, 'it': 4.0, 'wasted': 1.0, 'train': 1.0, 'son': 2.0, 'boy': 2.0, 'potty': 3.0, 'so': 1.0, 'something': 1.0, 'guard': 1.0, 'would': 1.0, 'products': 1.0, 'these': 1.0, 'already': 1.0, 'have': 2.0, 'buying': 1.0, 'with': 1.0, 'wish': 1.0, 'this': 3.0, 'handy': 1.0, 'brand': 1.0, 'like': 1.0, 'separately': 1.0, 'several': 1.0, 'sell': 2.0, 'their': 1.0}
Word element => {'better': 1.0, 've': 1.0, 'guard': 1.0, 'because': 1.0, 'get': 1.0, 'clean': 1.0, 'easier': 1.0, 'only': 1.0, 'much': 1.0, 'makes': 1.0, 'bag': 1.0, 'stick': 1.0, 'but': 1.0, 'removable': 1.0, 'since': 1.0, 'in': 2.0, 'toilet': 1.0, 'just': 2.0, 'reason': 1.0, 'design': 1.0, 'absolutely': 1.0, 'be': 1.0, 'version': 1.0, 'like': 2.0, 'one': 1.0, 'months': 1.0, 'up': 1.0, 'over': 2.0, '8': 1.0, 'have': 1.0, 'wide': 1.0, 'splash': 2.0, 'my': 3.0, 'and': 2.0, 'play': 1.0, 'big': 1.0, 'great': 1.0, 'with': 1.0, 'higher': 1.0, 'looks': 1.0, 'it': 6.0, 'he': 1.0, 'still': 2.0, 'son': 2.0, 'anything': 1.0, 'want': 1.0, 'i': 6.0, 'doesn': 4.0, 'was': 3.0, 'what': 1.0, 'wastebasket': 1.0, 'ever': 1.0, 'looking': 1.0, 'stars': 1.0, 'love': 1.0, 'for': 4.0, 'guards': 1.0, 'bowl': 1.0, 'guy': 1.0, 'make': 1.0, 'squirms': 1.0, 'is': 6.0, 'around': 1.0, 'seat': 1.0, 'to': 4.0, 'any': 1.0, 'exactly': 1.0, 'learn': 1.0, 'that': 1.0, 'the': 7.0, 'playing': 1.0, 's': 1.0, 'go': 1.0, 'a': 5.0, 't': 4.0, 'going': 1.0, 'seen': 1.0, 'when': 1.0, 'not': 1.0, 'base': 1.0, 'smaller': 1.0, 'potty': 4.0, 'so': 1.0, 'there': 3.0, 'of': 2.0, 'no': 1.0, '5': 1.0, 'noise': 1.0, 'worry': 1.0, 'wish': 1.0, 'this': 2.0, 'tipping': 1.0, 'little': 2.0}
Word element => {'tracked': 1.0, 'side': 1.0, 'for': 1.0, 'not': 1.0, 'designcons': 1.0, 'in': 1.0, 'pros': 1.0, 'toilet': 1.0, 'on': 1.0, 'goes': 1.0, 'that': 1.0, 'switched': 1.0, 'his': 1.0, 'thrilled': 1.0, 'it': 4.0, 'with': 2.0, 'this': 1.0, 'childrenbest': 1.0, 'oneclean': 1.0, 'only': 1.0, 'he': 2.0, 'training': 1.0, 'morning': 1.0, 'growing': 1.0, 'of': 2.0, 'child': 1.0, 'up': 1.0, 'parts': 1.0, 'seem': 1.0, 'son': 2.0, 'worked': 1.0, 'ok': 1.0, 'chair': 3.0, 'was': 3.0, 'all': 1.0, 'our': 3.0, 'to': 2.0, 'alley': 1.0, '18': 1.0, 'months': 1.0, 'the': 6.0, 'i': 1.0, 'step': 1.0, 'luck': 1.0, 'concept': 1.0, 'loved': 1.0, 'easily': 1.0, 'when': 1.0, 'tried': 2.0, 'problem': 1.0, 'did': 1.0, 'more': 1.0, 'is': 1.0, 'many': 1.0, 'because': 1.0, 'potty': 2.0, 'so': 2.0, 'we': 3.0, 'a': 2.0, 'toy': 1.0, 'enjoy': 1.0, 'thought': 1.0, 'had': 1.0, 'stool': 1.0, 'be': 1.0, 'and': 2.0}
Word element => {'just': 1.0, 'easily': 1.0, 'when': 1.0, 'base': 1.0, 'stool': 1.0, 'step': 1.0, 'about': 1.0, 'else': 1.0, 'love': 1.0, 'together': 1.0, 'off': 1.0, 'legs': 1.0, 'squish': 1.0, 'from': 1.0, 'dry': 1.0, 'why': 1.0, 'hands': 1.0, 'the': 6.0, 'pee': 1.0, 'that': 1.0, 'lid': 1.0, 'splash': 2.0, 'needs': 1.0, 'potty': 1.0, 'everything': 1.0, 'if': 1.0, 'climb': 1.0, 'keep': 2.0, 'know': 1.0, 'not': 1.0, 'great': 1.0, '1': 1.0, 'is': 3.0, 'old': 1.0, 'i': 1.0, 'guard': 2.0, 'doesn': 1.0, 'can': 1.0, '2': 2.0, 'but': 1.0, 'back': 1.0, 't': 2.0, 'we': 2.0, 'a': 3.0, 'front': 1.0, 'and': 3.0, 'tall': 1.0, 'chair': 3.0, 'stands': 1.0, 'far': 1.0, 'have': 1.0, 'solid': 1.0, 'splashing': 1.0, 'on': 4.0, 'floor': 2.0, 'higher': 1.0, 'it': 4.0, 'definitely': 1.0, 'effective': 1.0, 'year': 1.0, 'his': 3.0, 'he': 3.0, 'scrunch': 1.0, 'frog': 1.0, 'has': 2.0, 'as': 2.0, 'to': 3.0, 'sit': 1.0, 'way': 2.0, 'or': 1.0, 'wash': 1.0, 'don': 1.0, 'up': 1.0}
Word element => {'toilet': 1.0, 'when': 1.0, 'ya': 1.0, 'serves': 1.0, 'practical': 1.0, 'to': 1.0, 'useful': 1.0, 'very': 2.0, 'and': 1.0, 'our': 1.0, 'for': 1.0, 'the': 1.0, 'small': 1.0, 'is': 1.0, 'using': 1.0, 'a': 1.0, 'resistant': 1.0, 'begin': 1.0, 'plus': 1.0}
Word element => {'ok': 1.0, 'he': 1.0, 'doing': 1.0, 'excellently': 1.0, 'be': 1.0, 'to': 1.0, 'product': 1.0, 'designed': 1.0, 'only': 1.0, 'll': 1.0, 'my': 1.0, 'before': 1.0, 'grandson': 1.0, 'on': 1.0, 'now': 1.0, 'sit': 1.0, 'if': 1.0, 'i': 2.0, 'it': 1.0, 'can': 1.0, 'poops': 1.0, 'get': 1.0}
Word element => {'recommend': 1.0, 'totally': 1.0, 'fridge': 1.0, 'in': 1.0, 'nicely': 1.0, 'my': 4.0, 'to': 1.0, 'had': 1.0, 'daughter': 1.0, 'pump': 1.0, 'fit': 1.0, 'because': 1.0, 'used': 1.0, 'i': 4.0, 'breastmilk': 1.0, 'and': 2.0, 'parts': 1.0, 'stored': 1.0, 'son': 1.0, 'very': 1.0, 'for': 1.0, 'love': 1.0, 'with': 1.0, 'this': 1.0, 'it': 2.0, 'exclusively': 1.0, 'how': 1.0, 'pumping': 1.0}
Word element => {'disappointed': 1.0, 'and': 1.0, 'member': 1.0, 'family': 1.0, 'been': 1.0, 'by': 1.0, 'recommended': 1.0, 'allows': 1.0, 'you': 1.0, 'wipe': 1.0, 'a': 2.0, 'product': 1.0, 'to': 1.0, 'have': 1.0, 'pull': 1.0, 'i': 1.0, 'one': 1.0, 'time': 1.0, 'not': 1.0, 'at': 1.0, 'was': 1.0}
Word element => {'another': 1.0, 'order': 1.0, 'i': 3.0, 'products': 1.0, 'know': 1.0, 'works': 2.0, 'with': 1.0, 'aaargh': 1.0, 'impeccable': 1.0, 'bought': 1.0, 'because': 1.0, 'usually': 1.0, 'and': 2.0, 'ok': 1.0, 'anyway': 1.0, 'are': 1.0, '20': 1.0, 'oxo': 1.0, 'for': 1.0, 'a': 1.0, 'plan': 1.0, 'irritation': 1.0, 'the': 3.0, 'plastic': 1.0, 'get': 1.0, 'tub': 1.0, 'out': 1.0, 'tubs': 1.0, 'bullet': 1.0, 'incredibly': 1.0, 'removed': 1.0, 'it': 3.0, 'looks': 1.0, 'or': 1.0, 'well': 3.0, 'has': 1.0, 'permanently': 1.0, 'of': 2.0, 'decor': 1.0, 'trying': 1.0, 'any': 1.0, 'to': 2.0, 'those': 1.0, 'good': 1.0, 'wipes': 1.0, 'package': 1.0, 'vendor': 1.0, 'bit': 1.0, 'so': 1.0}
Word element => {'epoxy': 1.0, 'some': 1.0, 'fix': 1.0, 'now': 2.0, 'entire': 1.0, 'rendered': 1.0, 'might': 1.0, 'came': 1.0, 'fitting': 1.0, 'white': 1.0, 'but': 1.0, 'fingernail': 1.0, 'coaxed': 1.0, 'wouldn': 1.0, 'stuck': 1.0, 'got': 1.0, 'useless': 1.0, 'today': 1.0, 'oils': 1.0, 'essential': 1.0, 'water': 1.0, 'all': 1.0, 'apart': 1.0, 'way': 1.0, 'hubby': 1.0, 'discolor': 1.0, 'began': 1.0, 'time': 1.0, 'that': 1.0, 'sitting': 1.0, 'bit': 1.0, 'started': 1.0, 'level': 1.0, 'able': 1.0, 'you': 1.0, 'window': 2.0, 'clear': 2.0, 'little': 1.0, 'month': 1.0, 'about': 2.0, 'after': 1.0, 'months': 1.0, 'thing': 1.0, '2': 1.0, 'would': 1.0, 'pull': 1.0, 'inside': 1.0, 'impossible': 1.0, 'wipe': 2.0, 'pretty': 1.0, 'to': 3.0, 'as': 1.0, 'was': 4.0, 'see': 1.0, 'off': 1.0, 'light': 1.0, 'just': 2.0, 'and': 10.0, 'closed': 1.0, 'container': 3.0, 'open': 3.0, '13': 2.0, 'dripping': 1.0, 'gladware': 1.0, 'tiny': 1.0, 'a': 10.0, 'then': 1.0, 'we': 3.0, 't': 3.0, 'storing': 1.0, 'been': 1.0, 'use': 2.0, 'out': 4.0, 'review': 1.0, 'too': 2.0, 'one': 1.0, 'in': 5.0, 'with': 3.0, 'cut': 1.0, 'pink': 1.0, 'this': 2.0, 'perfect': 2.0, 'plastic': 1.0, '8': 1.0, 'have': 3.0, '31': 1.0, 'original': 1.0, 'stack': 2.0, 'handed': 1.0, 'happened': 1.0, 'when': 2.0, '12': 1.0, 'excellent': 1.0, 'had': 1.0, 'tj': 1.0, 'i': 4.0, 'wipes': 7.0, 'last': 1.0, 'it': 3.0, 'lift': 1.0, 'also': 1.0, 'puddle': 1.0, 'big': 1.0, 'be': 1.0, 'stays': 2.0, 'at': 2.0, 'is': 4.0, 'holds': 1.0, 'always': 1.0, 'them': 1.0, 'solution': 1.0, 'weight': 3.0, 'dry': 1.0, 'not': 1.0, 'style': 1.0, 'once': 2.0, 'the': 22.0, 'doing': 1.0, 'of': 2.0, 'clump': 1.0, '24': 1.0, 'where': 1.0, 'come': 1.0, 'love': 1.0, 'fold': 1.0, 'top': 2.0, 'maxx': 1.0, 'updated': 1.0, 'don': 1.0, 'pops': 1.0, 'quickly': 2.0, 'put': 1.0, 'accordion': 1.0, 'pulling': 1.0, 'blotchy': 1.0, 'cloth': 1.0, 'even': 2.0, 'eventually': 1.0, 'hole': 1.0, 'didn': 1.0, 'can': 1.0, 'so': 2.0, 'disappointed': 1.0, 'how': 1.0, 'across': 1.0, 'quietly': 1.0, 'rests': 1.0, 'lid': 3.0, 'shortens': 1.0, 'for': 2.0, '10': 1.0, 'latch': 1.0, 'size': 1.0, 'table': 1.0, 'right': 1.0, 'on': 2.0, 'amount': 1.0}
Word element => {'the': 1.0, 'worth': 1.0, 's': 1.0, 'sooner': 1.0, 'bought': 1.0, 'i': 1.0, 'our': 1.0, 'like': 1.0, 'money': 1.0, 'works': 1.0, 'great': 1.0, 'it': 3.0, 'a': 1.0, 'we': 1.0, 'lot': 1.0, 'house': 1.0, 'had': 1.0, 'in': 1.0, 'wish': 1.0}
Word element => {'product': 1.0, 'needed': 1.0, 'top': 1.0, 'by': 1.0, 'reuse': 1.0, 'originally': 1.0, 'could': 1.0, 'a': 10.0, 's': 1.0, 'disposable': 1.0, 'new': 1.0, 'found': 1.0, 'find': 1.0, 'tub': 1.0, 'get': 1.0, 'shot': 1.0, 'wipe': 1.0, 'left': 1.0, 'out': 2.0, 'container': 2.0, 'set': 1.0, 'so': 3.0, 'plate': 1.0, 'this': 2.0, 'bottle': 1.0, 'broken': 1.0, 'olive': 1.0, 'dispenser': 2.0, 'little': 1.0, 'had': 1.0, 'to': 3.0, 'all': 3.0, 'machines': 1.0, 'just': 1.0, 'started': 1.0, 'my': 4.0, 'weighted': 1.0, 'stash': 1.0, 'her': 2.0, 'wipes': 7.0, 'near': 1.0, 'on': 3.0, 'way': 1.0, 'about': 1.0, 'with': 2.0, 'arrival': 1.0, 'old': 1.0, 'realized': 1.0, 'i': 11.0, 'cloth': 3.0, 'and': 5.0, 'green': 1.0, 'as': 1.0, 'diaper': 1.0, 'purchasing': 1.0, 'one': 2.0, 'for': 2.0, 'but': 1.0, 'ready': 1.0, 'second': 1.0, 'soap': 1.0, 'that': 5.0, 'case': 1.0, 'into': 1.0, 'amazon': 1.0, 'front': 1.0, 'thought': 1.0, 'it': 2.0, 'figure': 1.0, 'worth': 1.0, 'is': 1.0, 'great': 2.0, 'keeps': 1.0, 'of': 6.0, 'the': 7.0, 'place': 1.0, 'in': 3.0, 'window': 1.0, 'here': 1.0, 'see': 1.0, 'our': 1.0, 'how': 1.0, 'washing': 1.0, 'baby': 1.0, 'many': 1.0, 'then': 3.0, 'take': 1.0, 'pop': 2.0, 'are': 2.0, 'oil': 1.0, 'those': 1.0, 'you': 1.0, 'who': 1.0, 'keep': 1.0, 'wondering': 1.0, 'fold': 1.0, 'they': 1.0, 'directions': 1.0, 'squirt': 2.0, 'them': 1.0, 'has': 1.0, 'solution': 2.0, 'up': 1.0, 'water': 1.0}
Word element => {'has': 1.0, 'they': 1.0, 'with': 1.0, 'only': 1.0, 'looks': 1.0, 'even': 1.0, 'changing': 1.0, 'works': 1.0, 'great': 1.0, 'nice': 1.0, 'colors': 1.0, 'bought': 1.0, 'more': 1.0, 'station': 1.0, 'my': 1.0, 'downstairsi': 1.0, 'second': 2.0, 'i': 1.0, 'one': 1.0, 'for': 1.0}
Word element => {'bulk': 1.0, 'worth': 1.0, 'is': 1.0, 'refills': 1.0, 'convenient': 1.0, 'scratched': 1.0, 'into': 1.0, 'hand': 2.0, 'hate': 1.0, 'plastic': 1.0, 'my': 1.0, 'the': 4.0, 'are': 1.0, 'digging': 1.0, 'wipe': 1.0, 'come': 1.0, 'this': 2.0, 'love': 1.0, 'buy': 1.0, 'i': 2.0, 'your': 1.0, 'money': 1.0, 'boxes': 1.0, 'just': 1.0, 'because': 1.0, 'that': 1.0, 'wipes': 2.0, 'stuck': 1.0, 'in': 2.0, 'once': 1.0, 'etc': 1.0, 'low': 1.0, 'gets': 1.0}
Word element => {'well': 1.0, 'clean': 1.0, 'looks': 2.0, 'feels': 1.0, 'in': 1.0, 'place': 1.0, 'product': 1.0, 'to': 1.0, 'the': 2.0, 'works': 1.0, 'great': 1.0, 'love': 1.0, 'plate': 1.0, 'as': 1.0, 'very': 2.0, 'and': 1.0, 'weighted': 1.0, 'sturdy': 1.0, 'keep': 1.0, 'this': 1.0, 'wipies': 1.0}
Word element => {'one': 1.0, 'order': 1.0, 'at': 1.0, 'breaking': 1.0, 'about': 1.0, 'another': 1.0, 'conworried': 1.0, 'easy': 1.0, 'to': 2.0, 'point': 1.0, 'it': 1.0, 'pros': 1.0, 'works': 1.0, 'great': 1.0, 'some': 1.0, 'keeps': 1.0, 'remove': 1.0, 'moist': 1.0, 'needing': 1.0, 'and': 2.0, 'wipes': 2.0, 'refill': 1.0}
Word element => {}
Word element => {'moisture': 1.0, 'seal': 1.0, 'gasket': 1.0, 'that': 1.0, 'a': 1.0, 'is': 1.0, 'rubber': 1.0, 'does': 1.0, 'find': 1.0, 'the': 1.0, 'wipes': 1.0, 'and': 1.0, 'has': 1.0, 'good': 1.0, 'job': 1.0, 'ensure': 1.0, 'difficult': 1.0, 'dispenser': 1.0, 'it': 1.0, 's': 1.0, 'product': 1.0, 'to': 2.0}
Word element => {'looking': 1.0, 'was': 1.0, 'what': 1.0, 'exactly': 1.0, 'this': 1.0, 'package': 1.0, 'plastic': 1.0, 'of': 1.0, 'sound': 1.0, 'crinkling': 1.0, 'hates': 1.0, 'downstairs': 1.0, 'buying': 1.0, 'stay': 1.0, 'so': 1.0, 'time': 1.0, 'a': 2.0, 'at': 1.0, 'one': 2.0, 'for': 3.0, 'pull': 1.0, 'another': 1.0, 'my': 3.0, 'slot': 1.0, 'baby': 1.0, 'wipe': 1.0, 'forever': 1.0, 'her': 1.0, 'wipes': 4.0, 'last': 1.0, 'just': 2.0, 'it': 5.0, 'the': 3.0, 'any': 1.0, 'as': 2.0, 'big': 1.0, 'likely': 1.0, 'will': 1.0, 'change': 1.0, 'can': 1.0, 'money': 1.0, 'but': 1.0, 'worth': 1.0, 'moist': 1.0, 'open': 1.0, 'should': 1.0, 'better': 1.0, 'w': 1.0, 'than': 1.0, 'other': 1.0, 'and': 4.0, 'play': 1.0, 'sold': 1.0, 'squeezed': 1.0, 'is': 2.0, 'fine': 1.0, 'dispenser': 2.0, 'little': 1.0, 'in': 2.0, 'graco': 1.0, 'works': 2.0, 'pack': 1.0, 'i': 5.0, 'there': 1.0, 'when': 1.0, 'you': 1.0, 'am': 1.0}
Word element => {'baby': 1.0, 'wiggly': 1.0, 'poopy': 1.0, 'are': 1.0, 'when': 1.0, 'deal': 1.0, 'big': 1.0, 'change': 1.0, 'is': 1.0, 'which': 1.0, 'of': 1.0, 'have': 1.0, 'found': 1.0, 'i': 1.0, 'one': 2.0, 'things': 1.0, 'my': 1.0, 'the': 1.0, 'own': 1.0, 'handiest': 1.0, 'we': 1.0, 'and': 1.0, 'get': 1.0, 'this': 1.0, 'it': 1.0, 'be': 1.0, 'handed': 1.0, 'allows': 1.0, 'trying': 1.0, 'you': 2.0, 'a': 3.0, 'to': 3.0, 'husband': 1.0, 'wipe': 1.0}
Word element => {'especially': 1.0, 'it': 1.0, 'recommend': 1.0, 'highly': 1.0, 'would': 1.0, 'pleased': 1.0, 'purpose': 1.0, 'on': 1.0, 'don': 1.0, 'folds': 1.0, 'or': 1.0, 'neck': 1.0, 'wiping': 1.0, 'sometimes': 1.0, 'since': 1.0, 'wet': 2.0, 'use': 2.0, 'problem': 1.0, 'want': 1.0, 'layer': 1.0, 'if': 1.0, 'that': 2.0, 'were': 1.0, 'am': 1.0, 'folded': 1.0, 'when': 1.0, 't': 1.0, 'a': 1.0, 'going': 1.0, 'i': 10.0, 'cloth': 2.0, 'have': 2.0, 'families': 1.0, 'diapering': 1.0, 'in': 2.0, 'one': 1.0, '5': 1.0, 'water': 1.0, 'the': 1.0, 'purchase': 1.0, 'crusty': 1.0, 'my': 4.0, 'and': 5.0, 'wipes': 4.0, 'side': 1.0, 'dozen': 1.0, 'for': 4.0, 'fit': 1.0, 'spray': 1.0, 'flannel': 1.0, 'single': 1.0, 'dispenser': 1.0, 'eyes': 1.0, 'this': 2.0, 'with': 3.0, 'only': 1.0, 'no': 1.0, 'fold': 3.0, 'all': 1.0, 'as': 1.0, 'to': 1.0, 'tri': 1.0, 'bottle': 1.0, 'evenly': 1.0, 'so': 1.0, 'alternate': 1.0, 'but': 1.0, 'them': 2.0, 'they': 1.0, 'stack': 1.0, 'pre': 1.0, 'properly': 1.0, 'solution': 2.0}
Word element => {'pleased': 1.0, 'will': 1.0, 'baby': 1.0, 'how': 1.0, 'am': 2.0, 'the': 2.0, 'because': 1.0, 'not': 1.0, 'i': 4.0, 'chose': 1.0, 'looks': 1.0, 'is': 1.0, 'one': 1.0, 'using': 1.0, 'rating': 1.0, 'a': 1.0, 'be': 1.0, 'product': 2.0, 'bought': 1.0, 'with': 1.0, 'this': 3.0, 'it': 1.0, 'very': 1.0, 'as': 1.0, 'who': 1.0, 'present': 1.0, 'perfect': 1.0, 'color': 1.0}
Word element => {'table': 1.0, 'package': 1.0, 'on': 1.0, 'ugly': 1.0, 'an': 1.0, 'cuter': 1.0, 'also': 1.0, 'than': 1.0, 'legs': 1.0, 'baby': 1.0, 'holding': 1.0, 'while': 1.0, 'handed': 1.0, 'pull': 1.0, 'can': 1.0, 'have': 1.0, 'it': 3.0, 'this': 1.0, 'from': 1.0, 'changing': 2.0, 'must': 1.0, 'easier': 1.0, 'a': 1.0, 'is': 2.0, 'container': 2.0, 'one': 1.0, 'for': 1.0, 'the': 1.0, 'diaper': 1.0, 'nursery': 1.0, 'wipes': 3.0, 'and': 1.0, 'your': 2.0, 'makes': 1.0, 'them': 1.0, 'moist': 1.0, 'so': 1.0, 'much': 1.0, 'because': 1.0, 'keeps': 1.0, 's': 1.0, 'you': 1.0}
Word element => {'product': 1.0, 'excellent': 1.0, 'second': 1.0, 'and': 1.0, 'room': 1.0, 'in': 2.0, 'have': 1.0, 'other': 1.0, 'main': 1.0, 'keep': 1.0, 'with': 1.0, 'used': 1.0, 'easier': 1.0, 'upstairs': 1.0, 'so': 2.0, 'makes': 1.0, 'it': 2.0, 'this': 2.0, 'the': 8.0, 'without': 1.0, 'but': 1.0, 'money': 1.0, 'can': 2.0, 'live': 1.0, 'part': 1.0, 'while': 1.0, 'is': 2.0, 'easily': 1.0, 'you': 2.0, 'be': 1.0, 'trying': 1.0, 'definitely': 1.0, 'of': 3.0, 'up': 1.0, 'those': 1.0, 'worth': 1.0, 'products': 1.0, 'i': 2.0, 'things': 1.0, 'tried': 1.0, 'got': 1.0, 'house': 1.0, 'pad': 1.0, 'one': 3.0, 'entire': 1.0, 'single': 1.0, 'dispenser': 1.0, 'lifting': 1.0, 'that': 2.0, 'changing': 2.0, 'baby': 4.0, 'tired': 1.0, 'wipe': 1.0, 'get': 1.0, 's': 1.0, 'we': 1.0, 'could': 1.0, 'a': 4.0, 'as': 1.0, 'to': 2.0, 'all': 1.0, 'table': 1.0, 'hand': 1.0, 'hold': 1.0, 'much': 1.0, 'squirmy': 1.0, 'on': 3.0}
Word element => {'for': 1.0, 'very': 1.0, 'are': 1.0, 'though': 1.0, 'much': 1.0, 'how': 1.0, 'easy': 1.0, 'show': 1.0, 'window': 1.0, 'a': 1.0, 'clean': 1.0, 'out': 1.0, 'of': 1.0, 'good': 1.0, 'by': 1.0, 'work': 1.0, 'but': 1.0, 'doesn': 2.0, 'wipes': 2.0, 'plies': 1.0, 't': 2.0, 'the': 2.0, 'which': 1.0, 'left': 1.0, 'really': 1.0, 'is': 4.0, 'what': 1.0, 'that': 1.0, 'dispenser': 1.0, 'come': 1.0, 'this': 1.0, 'it': 3.0, 'has': 1.0, 'suppose': 1.0, 'to': 3.0, 'me': 1.0, '1': 2.0, 'do': 1.0}
Word element => {'here': 1.0, 'no': 1.0, 'in': 1.0, 'complaints': 1.0, 'right': 1.0, 'fits': 1.0, 'box': 1.0, 'orange': 2.0, 'rest': 1.0, 'baby': 1.0, 'and': 3.0, 'wipes': 2.0, 'with': 1.0, 'this': 2.0, 'have': 1.0, 'together': 1.0, 'tend': 1.0, 'stick': 1.0, 'container': 1.0, 'for': 1.0, 'great': 1.0, 'the': 4.0, 'weight': 1.0, 'makes': 1.0, 'lot': 1.0, 'a': 2.0, 'to': 1.0, 'wipe': 1.0, 'products': 2.0, 'i': 2.0, 'separator': 1.0, 'boon': 2.0, 'use': 1.0, 'wet': 1.0, 'keeps': 1.0, 'of': 2.0}
Word element => {'oxo': 1.0, 'found': 1.0, 'searched': 1.0, 'we': 1.0, 'and': 3.0, 'wipes': 1.0, 'ever': 1.0, 'handed': 1.0, 'dispenser': 1.0, 'sizes': 1.0, 'one': 2.0, 'for': 1.0, 'love': 1.0, 'this': 1.0, 'it': 1.0, 'best': 1.0, 'many': 1.0, 'easy': 1.0, 'use': 1.0, 'fits': 1.0, 'convenient': 1.0, 'wipe': 1.0, 'to': 1.0, 'of': 1.0}
Word element => {'dry': 1.0, 'get': 1.0, 'top': 1.0, 'period': 1.0, 'long': 1.0, 'they': 1.0, 'fine': 1.0, 'use': 1.0, 'still': 1.0, 'cost': 1.0, 'comparing': 1.0, 'you': 2.0, 'when': 1.0, 'but': 2.0, 'brands': 1.0, 'other': 1.0, 'regularly': 1.0, 'if': 3.0, 'baby': 1.0, 'was': 2.0, 'purchased': 1.0, 'had': 1.0, 'do': 1.0, 'much': 1.0, 'works': 1.0, 'used': 1.0, 'it': 3.0, 'dont': 1.0, 'this': 4.0, 'of': 1.0, 'shower': 1.0, 'sit': 1.0, 'way': 1.0, 'about': 1.0, 'no': 1.0, 'there': 1.0, 'time': 1.0, 'against': 1.0, 'so': 1.0, 'say': 1.0, 'is': 3.0, 'stay': 1.0, 'me': 1.0, 'not': 2.0, 'moist': 1.0, 'yet': 1.0, 'one': 1.0, 'for': 2.0, 'the': 7.0, 'ones': 2.0, 'great': 3.0, 'gift': 1.0, 'few': 1.0, 'grandkids': 1.0, 'like': 1.0, 'have': 2.0, 'as': 2.0, 'to': 2.0, 'all': 1.0, 'our': 2.0, 'that': 2.0, 'then': 1.0, 'item': 1.0, 'will': 4.0, 'here': 1.0, 'be': 2.0, 'i': 1.0, 'add': 1.0, 'wipes': 2.0, 'last': 1.0, 'brand': 1.0, 'grandson': 1.0, 'year': 1.0, 'a': 3.0, 'we': 2.0, 'ago': 1.0, 'and': 2.0}
Word element => {'older': 1.0, 'gets': 1.0, 'toddler': 1.0, 'one': 5.0, 'comes': 1.0, 'dispenses': 1.0, 'dispenser': 1.0, 'little': 2.0, 'functionality': 1.0, 'a': 6.0, 't': 1.0, 'don': 1.0, 'changing': 1.0, 'advantage': 1.0, 'more': 1.0, 'manages': 1.0, 'but': 2.0, 'suble': 1.0, 'can': 1.0, 'it': 6.0, 'color': 1.0, 'laugh': 1.0, 'may': 1.0, 'is': 2.0, 'at': 1.0, 'open': 1.0, 'yet': 1.0, 'latch': 1.0, 'or': 1.0, 'wipes': 4.0, 'clean': 1.0, 'hold': 2.0, 'version': 1.0, 'out': 3.0, 'helen': 1.0, 'some': 1.0, 'spread': 1.0, 'your': 4.0, 'guy': 2.0, 'make': 1.0, 'close': 1.0, 'oxo': 2.0, 'for': 2.0, 'i': 4.0, 'skill': 1.0, 'you': 2.0, 'have': 2.0, 'balance': 1.0, 'pad': 1.0, 'wipe': 1.0, 'baby': 1.0, 'to': 5.0, 'disposable': 1.0, 'be': 1.0, 'like': 1.0, 'rather': 1.0, 'of': 3.0, 'the': 9.0, 'as': 1.0, 'diaper': 1.0, 'and': 3.0, 'green': 1.0, 'get': 1.0, 'easy': 2.0, 'plastic': 1.0, 'time': 1.0, 'smaller': 1.0, 'use': 2.0, 'with': 2.0, 'while': 2.0, 'this': 2.0, 'fresh': 1.0, 'grab': 2.0, 'quickly': 1.0, 'in': 1.0, 'm': 1.0, 'd': 1.0, 'not': 1.0, 'posess': 1.0, 'that': 3.0, 'thrilled': 1.0, 'awesome': 1.0, 'about': 1.0, 'keep': 2.0, 'makes': 1.0, 's': 2.0, 'sense': 1.0, 'nursery': 1.0, 'would': 1.0, 'ever': 1.0, 'other': 1.0, 'an': 1.0, 'hand': 1.0, 'something': 1.0, 'olive': 1.0, 'container': 1.0, 'beige': 1.0, 'interesting': 1.0, 'tried': 1.0, 'see': 1.0, 'if': 1.0, 'slightly': 1.0}
Word element => {'mechanism': 1.0, 'caught': 1.0, 'use': 1.0, 'so': 1.0, 'giving': 1.0, 'do': 1.0, 'its': 1.0, 'blame': 1.0, 'sometimes': 1.0, 'manufacturer': 1.0, 'hold': 1.0, 'i': 9.0, 'on': 1.0, '3': 1.0, 'same': 1.0, 'often': 1.0, 'my': 1.0, 'household': 1.0, 'lid': 1.0, 'not': 1.0, 'track': 1.0, 'tub': 1.0, 'out': 1.0, 'pull': 1.0, 'it': 2.0, 'with': 1.0, 'come': 1.0, 'this': 4.0, 'have': 1.0, 'as': 2.0, 'comparable': 1.0, 'pair': 1.0, 'rather': 1.0, 'a': 4.0, 'product': 1.0, 'stars': 1.0, 'trying': 1.0, 'another': 1.0, 'opinion': 1.0, 'for': 1.0, 'if': 2.0, 'still': 2.0, 'wipes': 5.0, 'weight': 1.0, 'simple': 1.0, 'they': 2.0, 'seal': 1.0, 'm': 2.0, 'in': 3.0, 'more': 1.0, 'around': 1.0, 'of': 1.0, 'the': 11.0, 'works': 1.0, 'without': 1.0, 'great': 1.0, 'but': 1.0, '2': 1.0, 'will': 1.0, 'item': 1.0, 'note': 1.0, 'some': 1.0, 'apart': 1.0, 'than': 1.0, 'that': 2.0, 'because': 2.0, '1': 1.0, 'find': 1.0, 'mouth': 2.0, '5': 1.0, 'following': 1.0, 'cost': 2.0, 'down': 2.0, 've': 2.0, 'items': 1.0, 'to': 5.0, 'high': 1.0, 'wonder': 1.0, 'purpose': 1.0, 'container': 1.0, 'you': 1.0, 'push': 1.0, 'rubber': 1.0, 'twice': 1.0, 'up': 1.0, 'came': 1.0, 'off': 1.0, 'snap': 1.0, 'is': 1.0, 'ring': 1.0, 'at': 1.0, 'had': 2.0, 'unjam': 1.0, '4': 1.0, 'closed': 1.0, 'and': 1.0, 'wipe': 1.0, 'serve': 1.0, 'got': 1.0}
Word element => {'t': 1.0, 'won': 1.0, 'if': 1.0, 'fit': 1.0, 'had': 1.0, 'wish': 1.0, 'when': 1.0, 'i': 3.0, 'one': 1.0, 'dispenser': 1.0, 'product': 1.0, 'have': 1.0, 'would': 1.0, 'it': 1.0, 'this': 3.0, 'only': 1.0, 'wipes': 2.0, 'get': 1.0, 'and': 1.0, 'known': 1.0, 'regret': 1.0, 'my': 1.0, 'about': 1.0, 'baby': 1.0, 'we': 1.0, 'use': 2.0, 'package': 1.0, 'in': 1.0, 'perfect': 1.0, 'you': 2.0, 'costco': 2.0, 'is': 1.0, 'a': 1.0}
Word element => {'best': 1.0, 'great': 1.0, 'the': 2.0, 'by': 1.0, 'product': 1.0, 'be': 1.0, 'makes': 1.0, 'has': 1.0, 'on': 1.0, 'warmer': 1.0, 'a': 2.0, 'market': 1.0, 'and': 2.0, 'opens': 1.0, 'up': 1.0, 'easy': 1.0, 'use': 1.0, 'not': 1.0, 'just': 1.0, 'even': 2.0, 'so': 1.0, 'its': 1.0, 'to': 2.0, 'wipe': 1.0, 'box': 1.0, 'you': 1.0, 'love': 1.0, 'right': 1.0, 'can': 1.0, 'this': 1.0, 'it': 3.0, 'oxo': 1.0, 'i': 1.0, 'tap': 1.0, 'far': 1.0, 'wipes': 1.0, 'stay': 1.0, 'warm': 1.0, 'though': 1.0}
Word element => {'access': 1.0, 'to': 1.0, 'and': 1.0, 'moist': 1.0, 'each': 1.0, 'easy': 1.0, 'table': 1.0, 'wipes': 3.0, 'changing': 1.0, 'for': 1.0, 'one': 1.0, 'i': 1.0, 'of': 1.0, 'good': 1.0, 'bought': 1.0, 'but': 1.0, 'doesn': 1.0, 'these': 1.0, 't': 1.0, 'stuck': 1.0, 'separate': 1.0, 'design': 1.0, 'those': 1.0, 'that': 1.0, 'keeps': 1.0, 'are': 2.0, 'two': 1.0, 'super': 1.0, 'together': 1.0}
Word element => {'remove': 1.0, 'you': 1.0, 'place': 1.0, 'wipes': 2.0, 'keeps': 1.0, 'weight': 1.0, 'clean': 1.0, 'and': 2.0, 'to': 1.0, 'inside': 1.0, 'quality': 1.0, 'after': 1.0, 'in': 1.0, 've': 1.0, 'purchased': 1.0, 'missing': 1.0, 'one': 2.0, 'i': 1.0, 'weirdly': 1.0, 'time': 1.0, 'hand': 1.0, '2nd': 1.0, 'the': 4.0, 'aliens': 1.0, 'can': 1.0, 'item': 1.0, 'maybe': 1.0, 'my': 1.0, 'went': 1.0, 'with': 1.0, 'first': 1.0, 'this': 2.0, 'it': 1.0, 'open': 1.0, 'from': 1.0, 'easy': 1.0, 'home': 1.0, 'is': 2.0, 'really': 2.0, 'nice': 1.0}
Word element => {'disappointed': 1.0, 'not': 1.0, 'will': 1.0, 'you': 1.0, 'peasy': 1.0, 'we': 2.0, 'so': 2.0, 'wipe': 1.0, 'it': 2.0, 'much': 2.0, 'wipes': 2.0, 'and': 2.0, 'upstairs': 1.0, 'downstairs': 1.0, 'liked': 2.0, 'for': 3.0, 'one': 2.0, 'be': 1.0, 'bought': 3.0, 'a': 1.0, 'some': 1.0, 'at': 1.0, 'baby': 1.0, 'another': 1.0, 'dad': 1.0, 'time': 1.0, 'mom': 1.0, 'too': 1.0, 'easy': 1.0}
Word element => {'is': 1.0, 'you': 1.0, 'all': 1.0, 'if': 1.0, 'product': 1.0, 'good': 1.0, 'like': 1.0, 'seemed': 1.0, 'i': 1.0, 'thinking': 1.0, 'bought': 1.0, 'my': 1.0, 'this': 1.0, 'item': 1.0, 'was': 1.0, 'want': 1.0, 'a': 3.0, 'dispenser': 1.0, 'it': 1.0, 'warmer': 1.0, 'mistake': 1.0}
Word element => {}
Word element => {'lionheart': 1.0, 'myprince': 1.0, 'on': 1.0, 'great': 1.0, 'moist': 1.0, 'keeps': 1.0, 'supposed': 1.0, 'what': 1.0, 'exactly': 1.0, 'makes': 1.0, 'that': 1.0, 'depot': 1.0, 'top': 1.0, 'back': 1.0, 'come': 1.0, 'shove': 1.0, 'then': 1.0, 'out': 2.0, 'package': 1.0, 'wrestle': 1.0, 'wipe': 1.0, 'baby': 1.0, 'purchase': 1.0, 'fits': 1.0, 'my': 1.0, 'wipes': 2.0, 'diaper': 1.0, 'glad': 1.0, 'with': 3.0, 'it': 6.0, 'get': 2.0, 'this': 3.0, 'scared': 1.0, 'clearso': 1.0, 'and': 4.0, 'especially': 1.0, 'i': 6.0, 'extra': 1.0, 'buy': 1.0, 'm': 2.0, 'price': 1.0, 'don': 1.0, 'satisfied': 1.0, 'ones': 2.0, 'without': 1.0, 'the': 6.0, 'free': 1.0, 'was': 1.0, 'to': 6.0, 'miss': 1.0, 'when': 2.0, 'you': 4.0, 't': 1.0, 's': 1.0, 'a': 3.0, 'hesitant': 1.0, 'reviews': 1.0, 'themselves': 1.0, 'off': 1.0, 'very': 1.0, 'dispenser': 1.0, 'little': 1.0, 'does': 1.0, 'because': 1.0, 'know': 1.0, 'change': 1.0, 'but': 1.0, 'were': 1.0, 'so': 1.0, 'positive': 1.0, 'do': 2.0, 'try': 1.0, 'did': 1.0, 'decided': 1.0, 'one': 1.0, 'of': 2.0, 'me': 2.0, 'give': 1.0, 'those': 1.0, 'things': 1.0, 'downstairs': 1.0, 'need': 1.0, 'is': 1.0, 'till': 1.0, 'have': 2.0}
Word element => {'ready': 1.0, 'for': 1.0, 'voila': 1.0, 'them': 1.0, 'am': 1.0, 'place': 1.0, 'simply': 1.0, 'can': 1.0, 'solution': 2.0, 'dispenser': 2.0, 'use': 2.0, 'instead': 1.0, 'intended': 1.0, 'before': 1.0, 'pun': 1.0, 'soak': 1.0, 'now': 1.0, 'to': 2.0, 'wipe': 2.0, 'yes': 1.0, 'diaper': 1.0, 'the': 4.0, 'is': 1.0, 'duty': 1.0, 'it': 1.0, 'this': 1.0, 'with': 2.0, 'in': 2.0, 'perfect': 1.0, 'having': 1.0, 'wipes': 2.0, 'each': 1.0, 'fold': 1.0, 'of': 1.0, 'and': 2.0, 'spray': 1.0, 'cloth': 1.0, 'i': 3.0}
Word element => {'very': 1.0, 'open': 1.0, 'works': 2.0, 'one': 3.0, 'baby': 1.0, 'top': 1.0, 'of': 1.0, 'recommend': 1.0, 'great': 1.0, 'the': 2.0, 'is': 1.0, 'time': 1.0, 'at': 2.0, 'wipes': 1.0, 'and': 1.0, 'it': 1.0, 'this': 1.0, 'only': 1.0, 'keeping': 1.0, 'wet': 1.0, 'dispensing': 1.0, 'well': 1.0, 'a': 1.0, 'i': 1.0, 'products': 1.0, 'touch': 1.0}
Word element => {'minor': 1.0, 'brown': 1.0, 'chocolate': 1.0, 'more': 1.0, 'offered': 1.0, 'be': 1.0, 'nursery': 1.0, 'for': 1.0, 'mint': 1.0, 'blue': 1.0, 'don': 1.0, 'color': 2.0, 'issue': 2.0, 'preference': 1.0, 'options': 1.0, 'only': 1.0, 'oxo': 1.0, 'from': 1.0, 'everything': 1.0, 'like': 3.0, 'craftsmanship': 1.0, 'to': 6.0, 'pink': 1.0, 'they': 3.0, 'huggies': 2.0, 'genius': 1.0, 'could': 1.0, 'a': 4.0, 't': 2.0, 'using': 2.0, 'hand': 2.0, 'hold': 1.0, 'comment': 1.0, 'table': 1.0, 'very': 1.0, 'works': 1.0, 'nice': 1.0, 'two': 1.0, 'time': 1.0, 'plate': 1.0, 'orange': 1.0, 'would': 2.0, 'either': 2.0, 'got': 1.0, 'even': 1.0, 'neutral': 1.0, 'wipes': 2.0, 'which': 1.0, 'good': 1.0, 'glad': 1.0, 'i': 8.0, 'well': 1.0, 'hands': 1.0, 'on': 3.0, 'your': 1.0, 'aqua': 1.0, 'did': 1.0, 'far': 1.0, 'love': 1.0, 'use': 1.0, 'get': 3.0, 'and': 5.0, 'own': 1.0, 'b': 1.0, 'promo': 1.0, 'back': 1.0, 'top': 1.0, 'seventh': 1.0, 'bought': 1.0, 'one': 1.0, 'dispenser': 2.0, 'dispenses': 1.0, 'today': 1.0, 'work': 1.0, 'but': 2.0, 'so': 3.0, 'can': 1.0, 'with': 3.0, 'this': 2.0, 'it': 5.0, 'not': 3.0, 'my': 3.0, 'me': 1.0, 'just': 2.0, 'started': 1.0, 'wipe': 1.0, 'deal': 1.0, 'baby': 1.0, 'once': 1.0, 'the': 7.0, 'of': 2.0, 'or': 4.0, 'reach': 1.0, 'apart': 2.0, 'course': 1.0, 'longevity': 1.0, 'if': 2.0, 'fall': 1.0, 'at': 2.0, 'is': 4.0, 'into': 1.0, 'always': 1.0, 'them': 2.0, 'next': 1.0, 'generation': 1.0, 'changing': 1.0, 'ivory': 1.0, 'causing': 1.0, 'you': 1.0, 'when': 1.0, 'have': 2.0, 'bright': 1.0, 'pull': 1.0, 'down': 1.0, 'in': 1.0, 'out': 1.0, 'contaminated': 1.0, 'all': 1.0, 'other': 1.0, 'gross': 1.0, 'come': 2.0, 'especially': 1.0, 're': 1.0, 'low': 1.0, 'c': 1.0, 'weighted': 1.0, 'green': 1.0, 'under': 1.0, 'simple': 1.0}
Word element => {'on': 1.0, 'organized': 1.0, 'tidy': 1.0, 'your': 1.0, 'i': 1.0, 'changing': 1.0, 'dispenser': 1.0, 'line': 1.0, 'love': 1.0, 'entire': 1.0, 'keeps': 1.0, 'of': 1.0, 'oxo': 1.0, 'this': 1.0, 'the': 1.0, 'tot': 1.0, 'products': 1.0, 'table': 1.0, 'and': 1.0, 'wipes': 2.0}
Word element => {'deal': 1.0, 'big': 1.0, 'a': 1.0, 'just': 1.0, 'me': 2.0, 'give': 1.0, 'but': 1.0, 'will': 1.0, 'every': 1.0, 'end': 1.0, 'how': 1.0, 'dispenser': 1.0, 'it': 1.0, 'this': 1.0, 'works': 1.0, 'except': 1.0, 'love': 1.0, 'one': 1.0, 'i': 1.0, 'to': 1.0, 'wipe': 1.0, 'pile': 1.0, 'at': 1.0, 'great': 1.0, 't': 1.0, 'the': 2.0, 'always': 1.0, 'of': 1.0, 'that': 1.0, 'time': 1.0, 'isn': 1.0}
Word element => {'great': 1.0, 'works': 1.0, 'looks': 1.0, 'really': 1.0, 'glad': 1.0, 'm': 1.0, 'but': 1.0, 'in': 1.0, 'bathroom': 1.0, 'my': 1.0, 'wanted': 1.0, 'decorative': 1.0, 'have': 1.0, 'or': 2.0, 'i': 5.0, 'so': 1.0, 'got': 1.0, 'use': 1.0, 'clean': 1.0, 'little': 1.0, 'looking': 1.0, 'this': 1.0, 'it': 4.0, 's': 1.0, '5': 1.0, 'a': 1.0, 'something': 1.0, 'pricey': 1.0, 'would': 1.0, 'given': 1.0, 'stars': 1.0}
Word element => {'have': 1.0, 'nursery': 1.0, 'much': 1.0, 'product': 1.0, 'diaper': 1.0, 'wish': 1.0, 'to': 1.0, 'had': 1.0, 'makes': 1.0, 'we': 1.0, 'and': 1.0, 'must': 1.0, 'changing': 1.0, 'year': 1.0, 'very': 1.0, 'use': 1.0, 'easy': 1.0, 'i': 1.0, 'seen': 1.0, 'faster': 1.0, 'this': 2.0, 'a': 2.0, 'ago': 1.0, 'is': 1.0, '34': 2.0}
Word element => {'would': 1.0, 'we': 1.0, 'diaper': 1.0, 'two': 1.0, 'number': 1.0, 'the': 1.0, 'this': 2.0, 'is': 2.0, 'strikes': 1.0, 'a': 1.0, 'wipe': 1.0, 'again': 1.0, 'buy': 1.0, 'that': 1.0, 'great': 1.0, 'dispenser': 1.0, 'to': 1.0, 'easy': 1.0, 'use': 1.0, 'when': 1.0}
Word element => {'another': 1.0, 'it': 1.0, 'love': 1.0, 'product': 1.0, 'floor': 1.0, 'each': 1.0, 'on': 1.0, 'have': 1.0, 'at': 1.0, 'works': 1.0, 'weight': 1.0, 'container': 1.0, 'refilling': 1.0, 'great': 2.0, 'the': 1.0, 'to': 1.0, 'wipe': 2.0, 'so': 1.0, 'a': 1.0, 'closing': 1.0, 'time': 1.0, 'is': 1.0, 'get': 1.0, 'perfectly': 1.0, '1': 3.0, 'and': 3.0, 'easy': 1.0, 'best': 1.0, 'open': 1.0, 'oxo': 1.0, 'touch': 1.0, 'i': 1.0}
Word element => {'about': 1.0, 'don': 1.0, 'but': 1.0, 'thing': 1.0, 'pop': 1.0, 'can': 1.0, 'so': 1.0, 'thick': 1.0, 'wipes': 3.0, 'that': 1.0, 'awesome': 1.0, 'for': 1.0, 'which': 1.0, 'anyways': 1.0, 'my': 2.0, 'care': 1.0, 'are': 1.0, 's': 1.0, 'this': 1.0, 'it': 2.0, 'the': 1.0, 't': 2.0, 'great': 1.0, 'cloth': 1.0, 'i': 4.0, 'does': 1.0, 'a': 1.0, 'job': 1.0, 'up': 1.0, 'of': 1.0, 'use': 3.0, 'keeping': 1.0, 'really': 2.0, 'moist': 1.0, 'and': 1.0, 'charlie': 1.0, 'banana': 1.0}
Word element => {'solutions': 1.0, 'homemade': 1.0, '2013': 1.0, 'cleaningouttheclutter': 1.0, 'http': 1.0, 'article': 1.0, 'liquid': 1.0, 'with': 1.0, 'it': 1.0, 'fill': 1.0, 'do': 1.0, 'and': 5.0, 'you': 3.0, 'i': 3.0, 'cloth': 3.0, 'clear': 1.0, 'slight': 1.0, 'this': 3.0, '30': 1.0, 'have': 1.0, 'a': 1.0, 'might': 1.0, 'com': 1.0, 'love': 1.0, 'read': 1.0, 'dispenser': 2.0, 'use': 2.0, 'sure': 1.0, 'of': 1.0, 'wipes': 5.0, 'dribble': 1.0, 'window': 1.0, 'soaked': 1.0, 'solution': 1.0, 'from': 1.0, 'the': 2.0, 'holds': 1.0, 'more': 1.0, 'but': 1.0, 'wet': 1.0, 'just': 1.0, 'not': 1.0, 'using': 1.0, 'know': 1.0, 'make': 1.0, 'are': 1.0, '05': 1.0, 'if': 2.0, 'want': 1.0, 'all': 1.0, 'to': 1.0, 'baby': 1.0, 'them': 1.0, 'wipe': 2.0, 'about': 2.0, 'how': 1.0, 'my': 1.0}
Word element => {'for': 1.0, 'never': 1.0, 'into': 1.0, 'have': 1.0, '8': 1.0, 'dry': 1.0, 'they': 1.0, 'makes': 1.0, '10': 1.0, 'of': 1.0, 'sturdy': 1.0, 'out': 2.0, 'and': 4.0, 'in': 1.0, 'our': 1.0, 'something': 1.0, 'm': 1.0, 'solid': 1.0, 'i': 1.0, 'are': 1.0, 'load': 1.0, 'wipes': 2.0, 'times': 1.0, 'a': 2.0, 'changing': 1.0, 'must': 1.0, 'day': 1.0, 'table': 1.0, 'easy': 2.0, 'dispenser': 1.0, 'this': 1.0, 'it': 2.0, 's': 1.0, 'to': 1.0}
Word element => {'traction': 1.0, 'heavier': 1.0, 'enough': 1.0, 'avoid': 1.0, 'product': 1.0, 'each': 1.0, 'operation': 1.0, 'handed': 1.0, 'two': 1.0, 'releasing': 1.0, 'lifts': 1.0, 'plate': 2.0, 'weighted': 1.0, 'wipe': 1.0, 'disposables': 1.0, 'pull': 1.0, 'dispense': 1.0, 'up': 1.0, 'leftover': 1.0, 'them': 1.0, 'stick': 2.0, 'stack': 1.0, 'flannel': 1.0, 'clean': 1.0, 'fold': 1.0, 'standard': 1.0, 'think': 1.0, 'don': 1.0, 'time': 1.0, 'cocoa': 1.0, 'but': 5.0, 'over': 1.0, 'work': 2.0, 'call': 1.0, 'applies': 1.0, 'disappointed': 1.0, 'accordian': 1.0, 'refillable': 1.0, 'convenience': 1.0, 'one': 3.0, 'more': 1.0, 'myjj': 1.0, 'for': 6.0, 'supposed': 1.0, 'oxo': 1.0, 'need': 1.0, 'judgement': 1.0, 'worth': 1.0, 'at': 1.0, 'is': 5.0, 'would': 3.0, 'lookout': 1.0, 'fit': 1.0, 't': 3.0, 's': 2.0, 'added': 1.0, 'a': 7.0, 'against': 1.0, 'to': 5.0, 'just': 2.0, 'be': 4.0, 'disposable': 2.0, 'when': 1.0, 'what': 1.0, 'works': 1.0, 'choose': 1.0, 'dispenser': 3.0, 'expect': 1.0, 'come': 1.0, 'does': 2.0, 'compatible': 1.0, 'it': 5.0, 'normally': 1.0, 'with': 3.0, 'container': 1.0, 'paying': 1.0, 'drawback': 1.0, 'this': 6.0, 'cole': 1.0, 'attractive': 1.0, 'caddy': 1.0, 'wipes': 8.0, 'and': 3.0, 'similar': 1.0, 'buyers': 2.0, 'not': 2.0, 'whether': 1.0, 'functionally': 1.0, 'from': 1.0, 'well': 3.0, 'i': 7.0, 'potential': 1.0, 'that': 5.0, 'designed': 1.0, 'into': 2.0, 'collections': 1.0, 'heavy': 1.0, 'as': 1.0, 'diaper': 1.0, 'stripe': 1.0, 'in': 2.0, 'forewarned': 1.0, 'aren': 1.0, 'they': 2.0, 'wet': 1.0, 'd': 3.0, 'my': 1.0, 'me': 1.0, 'may': 1.0, 'containers': 1.0, 'also': 1.0, 'other': 2.0, 'caddies': 1.0, 'so': 1.0, 'you': 2.0, 'true': 1.0, 'll': 1.0, 'made': 1.0, 'good': 1.0, 'which': 1.0, 'rather': 1.0, 'the': 8.0, 'of': 2.0, 'have': 2.0, 'hoped': 1.0, 'instead': 1.0, 'cloth': 3.0, 'doesn': 1.0, 'on': 1.0, 'realize': 1.0, 'minority': 1.0, 'becomes': 1.0, 'many': 1.0, 'diaperers': 1.0, 'guess': 1.0, 'holder': 1.0}
Word element => {'everyone': 1.0, 'recommend': 1.0, 'i': 1.0, 'station': 1.0, 'weeks': 1.0, 'moist': 1.0, 'keeps': 1.0, 'many': 1.0, 'pull': 1.0, 'easy': 1.0, 'makes': 1.0, 'house': 1.0, 'disappoint': 1.0, 'didn': 1.0, 'changing': 1.0, 'that': 2.0, 'products': 1.0, 'other': 1.0, 'numerous': 1.0, 'needed': 1.0, 'time': 1.0, 'so': 3.0, 'items': 1.0, 'way': 1.0, 'of': 1.0, 'frustrating': 1.0, 'bulk': 1.0, 'buy': 1.0, 'this': 2.0, 'come': 1.0, 'it': 6.0, 'our': 1.0, 'to': 6.0, 'for': 1.0, 'love': 2.0, 'oxo': 2.0, 'product': 2.0, 'anyone': 1.0, 'be': 2.0, 'very': 1.0, 'dispenser': 1.0, 'is': 1.0, 'bought': 2.0, 'one': 4.0, 'another': 1.0, 'fits': 1.0, 'my': 1.0, 'much': 1.0, 'works': 1.0, 'end': 1.0, 'in': 3.0, 'boxes': 1.0, 'down': 1.0, 'perfectly': 1.0, 'favorite': 1.0, 'last': 1.0, 'wipes': 4.0, 'refilled': 1.0, 'like': 1.0, 'could': 1.0, 't': 1.0, 'a': 2.0, 'we': 9.0, 'wipe': 2.0, 'baby': 1.0, 'them': 2.0, 'first': 1.0, 'nicely': 1.0, 'the': 6.0, 'since': 1.0, 'at': 3.0, 'just': 2.0, 'dispense': 2.0, 'difficult': 1.0, 'plastic': 1.0, 'most': 1.0, 'but': 1.0, 'towards': 1.0, 'each': 1.0, 'would': 3.0, 'and': 5.0, 'have': 2.0}
Word element => {'gift': 1.0, 'shower': 1.0, 'great': 1.0, 'perfectly': 1.0, 'to': 1.0, 'seems': 1.0, 'problem': 1.0, 'either': 1.0, 'drying': 1.0, 'had': 1.0, 'never': 1.0, 'have': 1.0, 'particular': 1.0, 'was': 1.0, 'the': 4.0, 'used': 1.0, 'before': 1.0, 'reusable': 1.0, 'and': 2.0, 'much': 1.0, 'got': 1.0, 'wear': 1.0, 'containers': 1.0, 'fine': 1.0, 'feature': 1.0, 'saved': 1.0, 'i': 4.0, 'it': 4.0, 'stopped': 1.0, 'this': 2.0, 'with': 2.0, 'piece': 1.0, 'using': 1.0, 'for': 2.0, 'well': 1.0, 'has': 1.0, 'seal': 1.0, 'they': 1.0, 'my': 1.0, 'eventually': 1.0, 'so': 1.0, 'time': 1.0, 'around': 1.0, 'make': 2.0, 'now': 1.0, 'baby': 1.0, 'wipe': 1.0, 'months': 1.0, 'one': 1.0, 'selling': 1.0, 'me': 1.0, 'frustration': 1.0, 'gasket': 1.0, '6': 1.0, 'wipes': 2.0, 'been': 1.0, 'dispensing': 1.0, 'that': 2.0, 'huggies': 1.0, 'rubber': 1.0, 've': 1.0, 'would': 2.0, 'worked': 1.0, 'but': 1.0, 'out': 2.0, 'at': 1.0, 'a': 3.0, 'point': 1.0, 'thing': 1.0}
Word element => {'out': 1.0, 'tug': 1.0, 'small': 1.0, 'twice': 1.0, 'wipe': 1.0, 'would': 1.0, 'weight': 1.0, 'is': 1.0, 'want': 1.0, 'times': 1.0, 'wipes': 1.0, 'multiple': 1.0, 'so': 1.0, 'kinda': 1.0, 'can': 1.0, 'work': 1.0, 'but': 2.0, 'dispenser': 1.0, 'it': 8.0, 'only': 1.0, 'way': 1.0, 'gets': 1.0, 'still': 1.0, 'imagine': 1.0, 'once': 1.0, 'no': 1.0, 'used': 2.0, 'house': 1.0, 'off': 1.0, 'without': 1.0, 'the': 7.0, 'great': 1.0, 's': 2.0, 't': 2.0, 'in': 1.0, 'day': 2.0, 'knocked': 1.0, 'pull': 2.0, 'dresser': 1.0, 'don': 1.0, 'and': 2.0, 'then': 1.0, 'working': 1.0, 'i': 6.0, 'got': 1.0, 'purchase': 1.0, 'need': 1.0, 'as': 3.0, 'to': 1.0, 'was': 1.0, 'one': 2.0, 'for': 1.0, 'car': 1.0, 'life': 1.0, 'just': 1.0, 'does': 1.0, 'because': 1.0, 'been': 1.0, 'that': 1.0, 'awesome': 1.0, 'thought': 1.0, 'there': 1.0}
Word element => {'in': 1.0, 'come': 1.0, 'packages': 1.0, 'resealable': 1.0, 'than': 1.0, '5': 1.0, 'press': 1.0, 'of': 1.0, 'stay': 1.0, 'wipes': 2.0, 'or': 1.0, 'latch': 1.0, '4': 1.0, 'won': 1.0, 'yesterday': 1.0, 'after': 1.0, 'the': 5.0, 'more': 1.0, 'times': 2.0, 'you': 2.0, 'this': 1.0, 'first': 1.0, 'with': 1.0, 'dispenser': 1.0, 'have': 2.0, 'get': 1.0, 'from': 1.0, 'matter': 1.0, 'closed': 1.0, 'and': 1.0, 'latching': 1.0, 'down': 1.0, 'as': 1.0, 'to': 5.0, 'no': 1.0, 'plastic': 1.0, 'how': 1.0, 'many': 1.0, 'push': 1.0, 'month': 1.0, 'it': 5.0, 'stopped': 1.0, 'useless': 1.0, 't': 1.0, 'we': 1.0, 'lid': 1.0, 'another': 1.0, 'keep': 1.0, 'weigh': 1.0, 'object': 1.0, 'drying': 1.0, 'out': 1.0, 'making': 1.0}
Word element => {'simply': 1.0, 'moist': 1.0, 'wipes': 1.0, 'for': 1.0, 'love': 1.0, 'i': 1.0, 'tap': 1.0, 'look': 2.0, 'its': 1.0, 'of': 2.0, 'keeping': 1.0, 'then': 1.0, 'on': 1.0, 'and': 1.0, 'done': 1.0, 'nice': 1.0, 'it': 4.0, 'this': 1.0, 'lid': 1.0, 'the': 3.0, 'own': 1.0, 'c': 1.0, 'creates': 1.0, 'b': 1.0, 'opens': 1.0, 'close': 1.0, 're': 1.0, 'a': 1.0, 'when': 1.0, 'you': 1.0, 'seal': 1.0}
Word element => {'five': 1.0, 'will': 1.0, 'perfectlymy': 1.0, 'stars': 1.0, 'they': 1.0, 'i': 2.0, 'it': 2.0, 'and': 1.0, 'very': 1.0, 'quality': 1.0, 'bought': 1.0, 'give': 1.0, 'perfect': 1.0, 'me': 1.0, 'thank': 1.0, 'wife': 1.0, 'for': 1.0, 'you': 2.0, 'babyand': 1.0, 'worked': 1.0, 'stay': 1.0, 'good': 1.0}
Word element => {'useful': 1.0, 'recommend': 1.0, 'table': 1.0, 'on': 1.0, 'free': 1.0, 'your': 1.0, 'leaves': 1.0, 'up': 1.0, 'pulling': 1.0, 'would': 1.0, 'holder': 1.0, 'other': 2.0, 'need': 1.0, 'not': 1.0, 'works': 1.0, 'and': 2.0, 'hold': 2.0, 'manor': 1.0, 'very': 1.0, 'changing': 1.0, 'from': 1.0, 'timely': 1.0, 'is': 1.0, 'a': 2.0, 'it': 3.0, 'with': 2.0, 'this': 2.0, 'can': 1.0, 'wonderful': 1.0, 'in': 1.0, 'got': 1.0, 'i': 2.0, 'one': 1.0, 'great': 1.0, 'the': 6.0, 'thing': 1.0, 'highly': 1.0, 'baby': 1.0, 'about': 1.0, 'you': 1.0, 'to': 2.0, 'wipe': 2.0, 'grab': 1.0, 'hand': 3.0}
Word element => {'ever': 1.0, 'easiest': 1.0, 'function': 1.0, 'moist': 1.0, 'really': 1.0, 'about': 1.0, 'thing': 1.0, 'other': 1.0, 'and': 2.0, 'the': 7.0, 'product': 1.0, 'actually': 1.0, 'will': 1.0, 'this': 2.0, 'service': 1.0, 'own': 1.0, 'if': 1.0, 'open': 1.0, 'their': 1.0, 'of': 1.0, 'dispensers': 1.0, 'in': 2.0, 'come': 1.0, 'it': 3.0, 'i': 4.0, 'wipes': 5.0, 'dispenser': 2.0, 'than': 1.0, 'usually': 1.0, 'nature': 1.0, 'daycare': 1.0, 'crazy': 1.0, 'least': 1.0, 'to': 2.0, 'well': 1.0, 'could': 1.0, 's': 1.0, 'a': 2.0, 'seem': 1.0, 'when': 1.0, 'you': 1.0, 'great': 1.0, 'nice': 1.0, 'spend': 1.0, 'money': 1.0, 'can': 1.0, 'but': 1.0, 'coming': 1.0, 'have': 3.0, 'that': 1.0, 'changing': 1.0, 'been': 1.0, 'with': 3.0, 'endlessly': 1.0, 'on': 1.0, 'your': 2.0, 'time': 1.0, 'out': 1.0, 'is': 2.0, 'more': 1.0, 'sanity': 1.0, 'diaper': 1.0, 'one': 4.0, 'three': 1.0, 'at': 3.0, 'do': 2.0, 'happens': 1.0, 'stay': 1.0, 'those': 1.0, 'babycare': 1.0, 'table': 1.0, 'know': 1.0, 'frustrated': 1.0, 'which': 1.0, 'use': 1.0, 'bathroom': 1.0, 'save': 1.0, 'my': 1.0, 'compostable': 1.0}
Word element => {'when': 1.0, 'attached': 1.0, 'weight': 1.0, 'well': 1.0, 'inside': 1.0, 'but': 1.0, 'needed': 1.0, 'easy': 1.0, 'job': 1.0, 'good': 1.0, 'keeps': 1.0, 'not': 1.0, 'is': 1.0, 'anything': 1.0, 'the': 3.0, 'product': 1.0, 'to': 2.0, 'through': 1.0, 'it': 1.0, 'wipes': 1.0, 'and': 1.0, 'does': 1.0, 'down': 1.0, 'them': 1.0, 'pull': 1.0}
Word element => {'to': 1.0, 'when': 1.0, 'i': 2.0, 'nice': 1.0, 'kids': 1.0, 'you': 1.0, 'practic': 1.0, 'very': 1.0, 'and': 1.0, 'wipes': 1.0, 'it': 2.0, 'love': 2.0, 'dispenser': 1.0, 'excellent': 1.0, 'have': 2.0, 'item': 1.0}
Word element => {'parents': 1.0, 'have': 1.0, 'must': 1.0, 'simple': 1.0, 'design': 1.0, 'low': 1.0, 'getting': 1.0, 'are': 1.0, 'sleek': 1.0, 'see': 1.0, 'window': 1.0, 'me': 1.0, 'clever': 1.0, 'using': 1.0, 'plastic': 1.0, 'and': 5.0, 'moms': 1.0, 'wipes': 1.0, 'decorative': 1.0, 'a': 4.0, 's': 1.0, 'it': 3.0, 'the': 5.0, 'box': 2.0, 'that': 1.0, 'empty': 1.0, 'all': 1.0, 'to': 3.0, 'recommend': 1.0, 'crazy': 1.0, 'was': 2.0, 'wipe': 2.0, 'for': 1.0, 'love': 2.0, 'product': 1.0, 'drive': 1.0, 'this': 2.0, 'allows': 1.0, 'i': 4.0, 'new': 2.0, 'would': 2.0, 'weight': 1.0, 'you': 2.0, 'when': 2.0, 'nearly': 1.0, 'pulling': 1.0, 'pull': 1.0, 'out': 2.0, 'thing': 1.0, 'lift': 1.0, 'one': 2.0, 'entire': 1.0, 'in': 1.0, 'dispense': 1.0, 'is': 2.0, 'just': 1.0, 'at': 1.0, 'so': 1.0, 'time': 1.0}
Word element => {'over': 1.0, 'time': 1.0, 'big': 1.0, 'looks': 1.0, 'works': 1.0, 'improvement': 1.0, 'way': 1.0, 'with': 1.0, 'this': 1.0, 'and': 1.0, 'huggies': 1.0, 've': 1.0, 'container': 1.0, 'love': 1.0, 'for': 1.0, 'that': 1.0, 'cheap': 1.0, 'i': 1.0, 'been': 1.0, 'the': 3.0, 'reusing': 1.0, 'refills': 1.0, 'a': 1.0, 'brand': 1.0, 'while': 1.0}
Word element => {}
Word element => {'happy': 1.0, 'am': 1.0, 'want': 1.0, 'did': 1.0, 'warmer': 2.0, 'not': 2.0, 'was': 2.0, 'no': 1.0, 'had': 1.0, 'have': 1.0, 'long': 1.0, 'will': 1.0, 'seems': 1.0, 'pop': 1.0, 'push': 1.0, 'sturdy': 1.0, 'construction': 1.0, 'very': 2.0, 'my': 1.0, 'lid': 1.0, 'fits': 1.0, 'out': 1.0, 'find': 1.0, 'yard': 2.0, 'the': 6.0, '2': 1.0, 'nicely': 1.0, 'downstairs': 1.0, 'down': 1.0, 'perfectly': 1.0, 'up': 1.0, 'don': 1.0, 'and': 2.0, 'play': 2.0, 'it': 3.0, 'with': 2.0, 'only': 2.0, 'for': 4.0, 'product': 2.0, 'months': 1.0, 'one': 3.0, 'bought': 1.0, 'room': 1.0, 'is': 3.0, 'of': 1.0, '4': 1.0, 'i': 5.0, 'in': 4.0, 'this': 3.0, 'perfect': 1.0, 'to': 1.0, 'them': 1.0, 'baby': 1.0, 'wipe': 3.0, 'that': 2.0, 'designed': 1.0, 'dry': 1.0, 'last': 1.0, 'wipes': 2.0, 'great': 1.0, 'spot': 1.0, 'stays': 1.0, 'time': 1.0, 'upstairs': 1.0, 'so': 1.0, 'weighted': 1.0, 'decision': 1.0, 'insert': 1.0, 'issues': 1.0, 'sealed': 1.0, 'help': 1.0, 'now': 1.0, 'aid': 1.0, 'grabbing': 1.0, 'could': 1.0, 't': 1.0, 'a': 4.0, 'like': 1.0, 'hand': 1.0}
Word element => {'down': 1.0, 'rest': 1.0, 'with': 1.0, 'this': 1.0, 'once': 1.0, 'at': 1.0, 'that': 2.0, 'solves': 1.0, 'their': 1.0, 'multiple': 1.0, 'tough': 1.0, 'stuck': 1.0, 'other': 1.0, 'to': 2.0, 'original': 1.0, 'out': 2.0, 'wipes': 4.0, 'each': 1.0, 'keeps': 1.0, 'weighted': 1.0, 'are': 1.0, 'the': 4.0, 'lot': 1.0, 'a': 1.0, 'plate': 1.0, 'issue': 1.0, 'and': 1.0, 'getting': 1.0, 'packaging': 1.0, 'i': 1.0, 'completely': 1.0, 'up': 1.0, 'of': 3.0, 'always': 1.0, 'pull': 1.0, 'end': 1.0, 'pulling': 1.0}
Word element => {'3am': 1.0, 'at': 1.0, 'bleary': 1.0, 'get': 1.0, 'costco': 1.0, 'son': 1.0, 'open': 2.0, 'the': 3.0, 'useless': 1.0, 'month': 1.0, 'cut': 1.0, 'i': 4.0, 'was': 1.0, 'as': 1.0, 'to': 1.0, 'now': 1.0, 'after': 1.0, 'so': 1.0, 'while': 1.0, 'part': 2.0, 'got': 1.0, 'have': 1.0, 'born': 1.0, 'this': 2.0, 'gift': 1.0, 'of': 1.0, 'eyed': 1.0, 'set': 1.0, 'downside': 1.0, 'using': 1.0, 'oxo': 1.0, 'for': 1.0, 'voila': 1.0, 'a': 4.0, 'babyganics': 1.0, 'spectacularly': 1.0, 'affordable': 1.0, 'toss': 1.0, 'and': 4.0, 'been': 1.0, 'case': 3.0, 'that': 1.0, 'wipes': 2.0, 'good': 1.0, 'my': 1.0, 'lid': 1.0, 'price': 1.0, 'is': 1.0, 'them': 2.0, 'in': 2.0, 'thick': 1.0, 'most': 1.0, 'can': 1.0}
Word element => {'gold': 1.0, 'weight': 1.0, 'image': 1.0, 'mental': 1.0, 'are': 1.0, 'wipes': 1.0, 'giving': 1.0, 'worth': 1.0, 'or': 1.0, 'over': 1.0, 'and': 2.0, 'get': 3.0, 'simple': 1.0, 'design': 1.0, 'such': 1.0, 's': 1.0, 'a': 5.0, 't': 1.0, 'it': 2.0, 'sister': 1.0, 'tipping': 1.0, 'this': 2.0, 'with': 2.0, 'law': 1.0, 'swears': 1.0, 'my': 3.0, 'now': 2.0, 'told': 1.0, 'by': 2.0, 'getting': 1.0, 'effective': 1.0, 'one': 1.0, 'wife': 2.0, 'you': 3.0, 'in': 2.0, 'imagine': 1.0, 'of': 2.0, 'bottom': 1.0, 'fussy': 1.0, 'wipe': 2.0, 'kicking': 1.0, 'baby': 1.0, 'to': 3.0, 'poo': 1.0, 'his': 1.0, '3': 1.0, 'on': 1.0, 'hand': 1.0, 'out': 1.0, 'wiper': 1.0, 'frustration': 1.0, 'fumbling': 1.0, 'give': 1.0, 'package': 1.0, 'that': 1.0, 'was': 1.0, 'doesn': 1.0, 'want': 1.0, 'single': 1.0, 'the': 2.0, 'without': 1.0}
Word element => {}
Word element => {'anyone': 1.0, 'absolutely': 1.0, 'reccommend': 1.0, 'that': 1.0, 'ordering': 1.0, 'careful': 1.0, 'be': 1.0, 'willl': 1.0, 'what': 1.0, 'item': 2.0, 'sent': 1.0, 'i': 5.0, 'more': 1.0, 't': 2.0, 'returnable': 1.0, 'have': 1.0, 'thing': 1.0, 'would': 2.0, 'not': 3.0, 'notice': 1.0, 'when': 1.0, 'described': 1.0, 'how': 1.0, 'statement': 1.0, 'non': 1.0, 'time': 1.0, 'next': 1.0, 'they': 1.0, 'ever': 1.0, 'this': 2.0, 'it': 3.0, 'swear': 1.0, 'back': 1.0, 'but': 1.0, 'didn': 2.0, 'until': 1.0, 'to': 1.0, 'was': 1.0, 'had': 1.0, 'received': 1.0, 'see': 1.0, 'alot': 1.0, 'a': 1.0}
Word element => {'overall': 1.0, 'pretty': 1.0, 'so': 1.0, 'id': 1.0, 'm': 1.0, 'i': 4.0, 'not': 2.0, 'give': 1.0, 'been': 1.0, 'dollars': 1.0, 'its': 2.0, 'to': 1.0, 'design': 1.0, 'built': 1.0, 'you': 1.0, 'a': 3.0, 'this': 1.0, 'weight': 1.0, 'then': 1.0, 'recommended': 1.0, 'well': 1.0, 'has': 1.0, 'think': 1.0, 'if': 1.0, 'about': 2.0, '100': 1.0, 'how': 1.0, 'it': 5.0, 'looks': 1.0, 'is': 1.0, 'but': 2.0, 'still': 1.0, 'the': 1.0, 'ugly': 1.0, 'months': 1.0, 'good': 3.0, 'paid': 1.0, '5': 1.0, '20': 1.0, 'crazy': 1.0, 'consistent': 1.0, 'maybe': 1.0, 'few': 2.0, 've': 1.0, 'like': 1.0, 'using': 1.0, 'stars': 1.0, 'expensive': 1.0, 'for': 1.0, 'too': 1.0, 'and': 1.0}
Word element => {'you': 1.0, 'time': 1.0, 'at': 1.0, 'love': 2.0, 'them': 1.0, 'want': 1.0, 'a': 2.0, 'moist': 1.0, 'lot': 1.0, 'more': 1.0, 'helps': 1.0, 'this': 1.0, 'pulling': 1.0, 'container': 1.0, 'from': 1.0, 'than': 1.0, 'holds': 1.0, 'wipes': 1.0, 'up': 1.0, 'and': 1.0, 'keeps': 1.0, 'keep': 1.0}
Word element => {'despencing': 1.0, 'works': 1.0, 'insert': 1.0, 'weighted': 1.0, 'keep': 1.0, 'and': 2.0, 'me': 1.0, 'just': 1.0, 'ordered': 1.0, 'wipes': 1.0, 'who': 1.0, 'i': 1.0, 'daughter': 1.0, 'moist': 1.0, 'made': 1.0, 'my': 1.0, 'so': 1.0, 'one': 1.0, 'for': 3.0, 'love': 1.0, 'the': 1.0, 'great': 2.0, 'with': 1.0, 'this': 2.0, 'it': 1.0, 'well': 1.0, 'a': 2.0, 'baby': 1.0, 'seal': 1.0, 'on': 1.0, 'comes': 1.0, 'had': 1.0, 'to': 1.0}
Word element => {'nursery': 1.0, 'bathroom': 1.0, 'in': 1.0, 'keep': 1.0, 'about': 1.0, 'holder': 1.0, 'plastic': 1.0, 'flat': 1.0, 'around': 1.0, 'thing': 1.0, 'lugging': 1.0, 'even': 1.0, 'can': 1.0, 'holds': 1.0, 'toilet': 1.0, 'wherever': 1.0, 'little': 1.0, 'cottonelle': 1.0, 'mounted': 1.0, 'way': 1.0, 'you': 1.0, 'wall': 2.0, 'whole': 1.0, 'no': 1.0, 'or': 2.0, 'lid': 2.0, 'off': 3.0, 'placed': 1.0, 'enough': 1.0, 'either': 1.0, 'wrestle': 1.0, 'lighter': 1.0, 'home': 1.0, 'pull': 2.0, 'tank': 2.0, 'top': 1.0, 'this': 3.0, '20': 1.0, 'that': 2.0, 'kids': 1.0, 'box': 1.0, 'our': 1.0, 'heavy': 1.0, 'as': 4.0, 'to': 6.0, 'weight': 1.0, 'routinely': 1.0, 'come': 2.0, 'snap': 1.0, 'outs': 1.0, 'move': 1.0, 'with': 6.0, 'light': 1.0, 'screaming': 1.0, 'without': 1.0, 'more': 1.0, 'at': 1.0, 'is': 1.0, 'travel': 1.0, 'will': 1.0, 'also': 1.0, 'products': 1.0, 'faithfully': 1.0, 'i': 3.0, 'while': 1.0, 'kicking': 1.0, 'flailing': 1.0, 'baby': 1.0, 'them': 2.0, 'wipe': 2.0, 'dragging': 1.0, 'far': 2.0, 'being': 1.0, 'cannot': 1.0, 'like': 1.0, 'and': 5.0, 'tiny': 1.0, 'imagine': 1.0, 'a': 4.0, 's': 2.0, 'wrestling': 2.0, 't': 2.0, 'truly': 1.0, 'there': 1.0, 'resistance': 1.0, 'it': 5.0, 'enable': 1.0, 'out': 3.0, 'get': 2.0, 'due': 1.0, 'they': 1.0, 'cut': 1.0, 'too': 1.0, 'ones': 3.0, 'one': 3.0, 'built': 1.0, 'doesn': 1.0, 'lord': 1.0, 'wipes': 3.0, 'rubber': 1.0, 'not': 4.0, 'gasket': 1.0, 'any': 1.0, 'keeps': 1.0, 'touch': 1.0, 'else': 1.0, 'everything': 1.0, 'pop': 1.0, 'opens': 1.0, 'the': 12.0, 'finger': 1.0, 'those': 1.0, 'closes': 1.0, 'older': 1.0, 'useless': 1.0, 'supposed': 1.0, 'moist': 1.0, 'still': 1.0, 'stay': 1.0, 'e': 1.0, 've': 1.0, 'down': 1.0}
Word element => {'there': 1.0, 'out': 1.0, 'others': 1.0, 'the': 1.0, 'of': 1.0, 'fantastic': 1.0, 'makes': 1.0, 'grabbing': 1.0, 'easy': 1.0, 'than': 1.0, 'so': 1.0, 'it': 1.0, 'way': 1.0, 'better': 1.0, 'wipes': 1.0, 'any': 1.0}
Word element => {'parents': 1.0, 'overall': 1.0, 'issue': 1.0, 'minor': 1.0, 'blocks': 1.0, 'other': 1.0, 'needs': 1.0, 'live': 1.0, 'perfect': 1.0, 'found': 1.0, 'functional': 1.0, 'this': 3.0, 'that': 2.0, 'been': 1.0, 'need': 1.0, 'just': 2.0, 'part': 1.0, 'can': 1.0, 'so': 1.0, 'warmer': 1.0, 'comes': 2.0, 'want': 1.0, 'don': 1.0, 'but': 2.0, 'four': 1.0, 'firm': 1.0, 'with': 4.0, 'must': 1.0, 'useful': 1.0, 'pad': 1.0, 'plate': 1.0, 'day': 1.0, 'bag': 1.0, 'looking': 1.0, 'very': 2.0, 'wipes': 5.0, 'month': 1.0, 'it': 10.0, 'ten': 1.0, 'i': 7.0, 'old': 1.0, 'like': 1.0, 'cheap': 1.0, 'for': 3.0, 'side': 1.0, 'thoughtful': 1.0, 'since': 1.0, 'flimsy': 1.0, 'we': 3.0, 't': 1.0, 'have': 3.0, 'choices': 1.0, 'container': 3.0, 'to': 8.0, 'quality': 1.0, 'too': 1.0, 'warmers': 1.0, 'one': 2.0, 'ones': 1.0, 'pads': 1.0, 'place': 2.0, 'replace': 2.0, 'rubber': 1.0, 'come': 1.0, 'only': 1.0, 'a': 6.0, 'tiny': 1.0, 'changing': 2.0, 'much': 1.0, 'are': 1.0, 'first': 1.0, 'great': 2.0, 'mention': 1.0, 'and': 1.0, 'design': 1.0, 'next': 1.0, 'has': 3.0, 'on': 3.0, 'bottom': 1.0, 'hold': 2.0, 'right': 1.0, 'table': 1.0, 'build': 1.0, 'top': 1.0, 'notch': 1.0, 'weight': 1.0, 'in': 2.0, 'when': 1.0, 'you': 1.0, 'pull': 1.0, 'out': 1.0, 'the': 17.0, 'of': 1.0, 'keep': 1.0, 'did': 1.0, 'is': 5.0, 'look': 1.0, 'also': 2.0, 'window': 3.0, 'be': 2.0, 'see': 1.0, 'how': 1.0, 'plastic': 1.0, 'wipe': 3.0, 'left': 1.0, 'still': 1.0, 'not': 1.0, 'my': 1.0, 'may': 1.0, 'looks': 1.0, 'me': 2.0, 'would': 1.0}
Word element => {'inconvenience': 1.0, 'm': 1.0, 'husband': 1.0, 'engineer': 1.0, 'drives': 1.0, 'designed': 1.0, 'it': 2.0, 'why': 1.0, 'way': 2.0, 'removable': 1.0, 'crazy': 1.0, 'was': 1.0, 'doesn': 1.0, 'my': 1.0, 'often': 1.0, 'lid': 1.0, 't': 1.0, 'a': 2.0, 'that': 2.0, 'falls': 1.0, 'have': 2.0, 'piece': 1.0, 'with': 2.0, 'plastic': 2.0, 'all': 1.0, 'to': 1.0, 'baby': 1.0, 'wipe': 1.0, 'annoyed': 1.0, 'is': 3.0, 'comes': 1.0, 'much': 1.0, 'an': 1.0, 'very': 1.0, 'incredible': 1.0, 'too': 1.0, 'and': 3.0, 'i': 2.0, 'meant': 1.0, 'cheap': 1.0, 'one': 3.0, 'easier': 1.0, 'has': 1.0, 'item': 1.0, 'wiggly': 1.0, 'they': 1.0, 'by': 1.0, 'life': 1.0, 'made': 2.0, 'out': 3.0, 'latch': 1.0, 'moist': 1.0, 'him': 1.0, 'at': 2.0, 'once': 1.0, 'wipes': 1.0, 'stay': 1.0, 'hand': 1.0, 'which': 1.0, 'close': 1.0, 'pulling': 1.0, '5': 1.0, 'in': 1.0, 'this': 3.0, 'perfect': 1.0, 'the': 4.0, 'container': 2.0, 'times': 1.0, 'when': 1.0, 'on': 1.0, 'except': 1.0}
Word element => {'quite': 1.0, 'gonna': 1.0, 'ambushed': 1.0, 'not': 1.0, 'means': 1.0, 'which': 1.0, 'insert': 1.0, 'weighted': 1.0, 'lowering': 1.0, 'low': 1.0, 'tell': 1.0, 'easier': 1.0, 's': 2.0, 'bonus': 1.0, 'umpteenth': 1.0, 'finally': 1.0, 'how': 1.0, 'item': 1.0, 'see': 1.0, 'seems': 1.0, 'and': 5.0, 'baby': 3.0, 'them': 1.0, 'left': 1.0, 'wipe': 2.0, 'times': 1.0, 'when': 2.0, 'space': 1.0, 'who': 1.0, 'walked': 1.0, 'haves': 1.0, 'few': 1.0, 'this': 1.0, 'full': 1.0, 'just': 3.0, 'hardened': 1.0, 'after': 1.0, 'sometimes': 1.0, 'battle': 1.0, 'stop': 1.0, 'items': 1.0, 'was': 1.0, 'to': 5.0, 'diaper': 1.0, 'as': 2.0, 'had': 1.0, 'buy': 2.0, 'i': 4.0, 'past': 1.0, 'plethora': 1.0, 'advertised': 1.0, 'but': 2.0, 'particularly': 1.0, 'can': 2.0, 'figured': 1.0, 'once': 1.0, 'these': 1.0, 'such': 1.0, 'of': 4.0, 'the': 6.0, 'hands': 1.0, 'taking': 1.0, 'you': 3.0, 'able': 1.0, 'thing': 1.0, 'wind': 1.0, 'are': 3.0, 'time': 2.0, 'new': 1.0, 'million': 1.0, 'it': 4.0, 'really': 1.0, 'out': 3.0, 'change': 2.0, 'up': 2.0, 'because': 1.0, 'that': 3.0, 'must': 1.0, 'have': 2.0, 'a': 11.0, 'unnecessary': 1.0, 'another': 1.0, 'trying': 1.0, 'squirming': 1.0, 'there': 1.0, 'give': 1.0, 'require': 1.0, 't': 1.0, 'separate': 1.0, 'wipes': 2.0, 'came': 1.0, 'in': 1.0, 'threes': 1.0, 'even': 1.0, 'string': 1.0, 'matters': 1.0, 'become': 1.0, 'decided': 1.0, 'count': 1.0, 'say': 1.0, 'at': 3.0, 'is': 1.0, 'gotta': 1.0, 'like': 1.0, 'try': 1.0, 'one': 2.0, 'rolling': 1.0, 'simple': 1.0, 'over': 1.0, 'concept': 1.0, 'being': 2.0, 'on': 1.0, 'mom': 1.0, 'your': 1.0, 'with': 2.0, 'blowout': 1.0, 'themselves': 1.0, 'from': 1.0}
Word element => {'frustrating': 1.0, 'less': 1.0, 'already': 1.0, 'going': 1.0, 't': 1.0, 'hasn': 1.0, 'yet': 1.0, 'behind': 1.0, 'shoppers': 1.0, 'time': 1.0, 'reality': 1.0, 'my': 2.0, 'diaper': 1.0, 'practical': 1.0, 'every': 1.0, 'really': 1.0, 'is': 4.0, 'of': 1.0, 'up': 1.0, 'buy': 1.0, 'i': 6.0, 'one': 3.0, 'love': 3.0, 'this': 3.0, 'because': 1.0, 'those': 1.0, 'not': 1.0, 'and': 4.0, 'wipes': 1.0, 'in': 1.0, 'little': 1.0, 'dispenser': 1.0, 'unnecessary': 1.0, 'looks': 1.0, 'tap': 1.0, 'it': 5.0, 'normally': 1.0, 'something': 1.0, 'would': 1.0, 'item': 1.0, 'right': 1.0, 'born': 1.0, 'however': 1.0, 'nice': 1.0, 'make': 1.0, 'on': 1.0, 'been': 1.0, 'changing': 2.0, 'open': 1.0, 'best': 1.0, 'know': 1.0, 'table': 1.0, 'easy': 1.0, 'top': 1.0, 'to': 2.0, 'grab': 1.0, 'baby': 1.0, 'wipe': 2.0, 'the': 1.0, 'part': 1.0, 'am': 1.0, 'you': 1.0, 'pops': 1.0}
Word element => {'indispensable': 1.0, 'proven': 1.0, 'purchase': 1.0, 'for': 1.0, 'expensive': 1.0, 'an': 1.0, 'seemed': 1.0, 'initially': 1.0, 'pull': 1.0, 'dresser': 1.0, 'the': 8.0, 'ones': 1.0, 'reusable': 1.0, 'and': 2.0, 'changes': 1.0, 'works': 1.0, 'it': 2.0, 'with': 1.0, 'this': 2.0, 'has': 1.0, 'half': 1.0, 'in': 2.0, 'slipping': 1.0, 'also': 1.0, 't': 1.0, 'we': 1.0, 'during': 1.0, 'pop': 1.0, 'container': 1.0, 'from': 1.0, 'while': 2.0, 'use': 1.0, 'six': 1.0, 'cloth': 1.0, 'bumkins': 1.0, 'flannel': 1.0, 'wipes': 5.0, 'you': 1.0, 'folded': 1.0, 'don': 1.0, 'up': 1.0, 'perfectly': 1.0, 'bottom': 1.0, 'of': 1.0, 'like': 2.0, 'disposable': 1.0, 'would': 1.0, 'weight': 1.0, 'thirty': 1.0, 'rubber': 1.0, 'keeps': 2.0, 'holder': 1.0, 'them': 2.0, 'order': 1.0, 'makes': 1.0, 'easy': 1.0, 'as': 1.0, 'to': 2.0, 'be': 1.0, 'grab': 1.0, 'messy': 1.0, 'out': 1.0, 'feet': 1.0, 'on': 2.0}
Word element => {'mechanism': 1.0, 'break': 1.0, 'drops': 1.0, 'up': 1.0, 'picks': 1.0, 'short': 1.0, 'warning': 1.0, 'drop': 1.0, 'set': 1.0, 'sized': 1.0, 'like': 1.0, 'rather': 1.0, 'and': 5.0, 'put': 1.0, 'do': 1.0, 'out': 5.0, 'them': 3.0, 'need': 1.0, 'or': 2.0, 'latch': 2.0, 'workable': 1.0, 'can': 1.0, 'so': 1.0, 'will': 1.0, 'could': 1.0, 'a': 7.0, 'package': 5.0, 'refill': 7.0, 'of': 4.0, 'the': 20.0, 'defective': 2.0, 'instructions': 1.0, 'if': 4.0, 'should': 1.0, 'packages': 2.0, 'quickly': 1.0, 'worked': 1.0, 'no': 1.0, 'it': 6.0, 'looks': 1.0, 'with': 3.0, 'wipes': 8.0, 'dry': 1.0, 'not': 2.0, 'all': 1.0, 'item': 1.0, 'our': 1.0, 'comes': 1.0, 'is': 2.0, 'more': 1.0, 'was': 1.0, 'moistyes': 1.0, 'you': 3.0, 'gives': 1.0, 'concept': 1.0, 'take': 2.0, 'then': 1.0, 'great': 1.0, 'nice': 1.0, 'sure': 1.0, 'seemed': 1.0, 'even': 2.0, 'have': 1.0, 'diagram': 1.0, 'be': 1.0, 'dispenser': 2.0, 'toddler': 1.0, 'product': 1.0, 'actually': 1.0, 'however': 1.0, 'i': 4.0, 'in': 4.0, 'but': 2.0, '80': 1.0, 'fit': 1.0, 'cost': 1.0, 'that': 1.0, 'inside': 2.0, 'opening': 1.0, 'dispense': 1.0, 'overall': 1.0, 'just': 2.0, 'bag': 1.0, 'using': 1.0, 'to': 5.0, 'straight': 1.0, 'fiddle': 1.0, 'effective': 1.0, 'seal': 1.0, 'keep': 1.0, 'find': 1.0, 'since': 1.0, 'better': 1.0, 'types': 1.0, 'one': 1.0, 'count': 1.0, 'plasic': 1.0, 'had': 1.0, 'would': 2.0, 'properly': 1.0, 'either': 1.0, 'leave': 1.0, 'drying': 1.0, 'suggest': 1.0, 'gaskget': 1.0, 'start': 1.0, 'kept': 1.0, 'leaving': 1.0, 'plastic': 1.0, 'buy': 1.0}
Word element => {'trust': 1.0, 'thank': 1.0, 'will': 1.0, 'shower': 1.0, 'buy': 1.0, 'or': 1.0, 'worth': 1.0, 'but': 1.0, 'cheap': 1.0, 'exactly': 1.0, 'not': 1.0, 'should': 1.0, 'go': 2.0, 'figured': 1.0, 'before': 1.0, 'this': 3.0, 'i': 3.0, 'pull': 1.0, 'out': 2.0, 'attempts': 1.0, 't': 3.0, 'a': 4.0, 'maybe': 1.0, 's': 2.0, 'mixing': 1.0, 'wipe': 2.0, 'buying': 1.0, 'mind': 1.0, 'the': 8.0, 'of': 3.0, 'too': 1.0, 'one': 3.0, 'how': 2.0, 'he': 1.0, 'wipes': 4.0, 'been': 1.0, 'next': 3.0, 'do': 1.0, 'changing': 1.0, 'you': 6.0, 'when': 2.0, 'in': 2.0, 'brown': 1.0, 'down': 1.0, 've': 1.0, 'navet': 1.0, 'after': 1.0, 'months': 1.0, 'get': 2.0, 'lose': 1.0, 'and': 2.0, '1': 1.0, 'to': 2.0, 'laughed': 1.0, 'pulled': 1.0, 'dispenser': 2.0, 'faulty': 1.0, 'penny': 1.0, 'up': 1.0, 'can': 2.0, 'believe': 1.0, 'bought': 1.0, 'money': 1.0, 'that': 1.0, 'because': 2.0, 'know': 1.0, 'table': 1.0, 'poop': 1.0, 'just': 1.0, 'about': 1.0, 'thing': 1.0, 'innovation': 1.0, 'through': 1.0, 'took': 1.0, 'make': 1.0, 'mom': 1.0, 'your': 1.0, 'dispensers': 1.0, 'on': 1.0, 'think': 1.0, 'yourself': 1.0, 'someone': 1.0, 'dr': 1.0, 'disposable': 1.0, 'they': 1.0, 'we': 1.0, 'reviews': 1.0, 'ever': 1.0, 'favor': 1.0, 'defcon': 1.0, 'was': 2.0, 'another': 1.0, 'me': 1.0, 'rave': 1.0, 'my': 2.0, 'instance': 1.0, 'husband': 1.0, 'at': 2.0, 'eacute': 1.0, 'for': 2.0, 'gadget': 1.0, 'use': 1.0, 'see': 1.0, 'formula': 1.0, 'decades': 1.0, 'would': 1.0, 'pitcher': 1.0, 'if': 1.0, 'every': 2.0, 'really': 1.0, 'time': 1.0, 'have': 1.0, 'from': 1.0, 'matter': 1.0, 'frantic': 1.0, 'pops': 1.0, 'didn': 2.0, 'seconds': 1.0, 'are': 1.0, 'baby': 2.0, 'spending': 1.0, 'many': 1.0, 'it': 3.0}
Word element => {'nice': 1.0, 'looks': 1.0, 'it': 1.0, 'perfect': 1.0, 'is': 1.0, 'this': 1.0, 'i': 1.0, 'always': 1.0, 'hated': 1.0, 'sitting': 1.0, 'moist': 1.0, 'bathroom': 2.0, 'the': 3.0, 'packages': 1.0, 'stay': 1.0, 'around': 1.0, 'container': 1.0, 'in': 1.0, 'for': 1.0, 'and': 1.0, 'wipes': 2.0}
Word element => {'excellent': 1.0, 'materials': 1.0, 'a': 1.0, 'up': 1.0, 'wiping': 1.0, 'awesome': 1.0, 'for': 1.0, 'with': 1.0, 'this': 1.0, 'mess': 1.0, 't': 2.0, 'but': 1.0, 'invention': 1.0, 'are': 2.0, 'reviews': 1.0, 'write': 1.0, 'to': 1.0, 'don': 2.0, 'is': 1.0, 'want': 1.0, 'them': 2.0, 'normally': 1.0, 'i': 1.0, 'pay': 1.0, 'or': 1.0, 'when': 1.0, 'you': 3.0, 'wipes': 1.0, 'waste': 1.0, 'fuss': 1.0}
Word element => {'yes': 1.0, 'whew': 1.0, 'increasingly': 1.0, 'fully': 1.0, 'seal': 1.0, 'get': 2.0, 'tryin': 1.0, 'shovin': 1.0, 'back': 1.0, 'needed': 1.0, 'moon': 1.0, 'rest': 1.0, 'package': 2.0, 'extras': 1.0, 'compared': 1.0, 'it': 3.0, 'with': 3.0, 'this': 2.0, 'as': 1.0, 'any': 1.0, 'to': 4.0, 'pack': 1.0, 'only': 2.0, 'its': 1.0, 'slow': 1.0, 'dry': 1.0, 'mo': 1.0, 'tired': 1.0, 'wipe': 1.0, 'an': 1.0, 'the': 7.0, 'indulgence': 1.0, 'newmama': 1.0, 'no': 1.0, 'quiet': 1.0, 's': 1.0, 'a': 2.0, 'go': 1.0, 'expensive': 1.0, 'for': 1.0, 'not': 1.0, 'me': 1.0, 'wipes': 1.0, 'midnightnappychangin': 1.0, 'on': 2.0, 'and': 4.0, 'adhesive': 2.0, 'one': 1.0, 'mechanism': 1.0, 'is': 1.0, 'out': 1.0, 'rrrrip': 1.0, 'oh': 1.0, 'button': 1.0, 'dime': 1.0, 'handy': 1.0, 'push': 1.0, 'opening': 1.0, 'saves': 1.0, 'so': 2.0, 'time': 1.0, 'in': 3.0, 'providing': 1.0, 'two': 1.0, 'at': 1.0, 'sticker': 1.0, 'of': 3.0, 'once': 1.0, 'most': 1.0}
Word element => {'time': 1.0, 'at': 1.0, 'of': 1.0, 'always': 1.0, 'product': 1.0, 'love': 1.0, 'one': 1.0, 'latch': 1.0, 'lid': 1.0, 'stoked': 1.0, 'it': 1.0, 'got': 1.0, 'use': 1.0, 'also': 2.0, 'assumed': 1.0, 'broken': 2.0, 'would': 1.0, 'the': 5.0, 'i': 3.0, 'cloth': 1.0, 'bad': 1.0, 'due': 1.0, 'rare': 1.0, 'does': 1.0, 't': 1.0, 'a': 4.0, 'reviews': 1.0, 'to': 2.0, 'wipe': 2.0, 'idea': 1.0, 'reflect': 1.0, 'but': 2.0, 'was': 1.0, 'doesn': 1.0, 'defect': 1.0, 'wipes': 1.0, 'solution': 1.0, 'home': 1.0, 'made': 1.0, 'and': 2.0, 'closed': 1.0, 'with': 2.0, 'component': 1.0, 'stay': 1.0, 'not': 1.0, 'reliably': 1.0, 'dispense': 1.0, 'packaged': 1.0, 'single': 1.0}
Word element => {'bums': 1.0, 'their': 1.0, 'hot': 1.0, 'found': 1.0, 'this': 3.0, 'amazon': 1.0, 'use': 1.0, 'day': 1.0, 'on': 2.0, '3': 1.0, 'i': 8.0, 'sucked': 1.0, 'to': 3.0, 'various': 1.0, 'and': 3.0, 'middle': 1.0, 'came': 1.0, 'guessing': 1.0, 'cold': 1.0, 'bag': 1.0, 'because': 1.0, 'that': 5.0, 't': 3.0, 'we': 2.0, 'a': 3.0, 's': 2.0, 'my': 1.0, 'comes': 2.0, 'produces': 1.0, 'babies': 1.0, 'more': 1.0, 'around': 1.0, 'wipes': 3.0, 'with': 4.0, 'one': 5.0, 'too': 2.0, 'warmers': 1.0, 'sound': 1.0, 'system': 1.0, 'doesn': 1.0, 'bough': 1.0, 'partner': 1.0, 'costco': 1.0, 'plastic': 2.0, 'money': 1.0, 'but': 1.0, 'they': 3.0, 'aren': 1.0, 'hard': 1.0, 'it': 4.0, 'saw': 1.0, 'stand': 1.0, 'after': 1.0, 'mold': 1.0, 'crinkling': 1.0, 'now': 1.0, 'all': 1.0, 'other': 1.0, 'met': 1.0, 'or': 2.0, 'world': 1.0, 'growing': 1.0, 'spending': 1.0, 'mind': 1.0, 'house': 1.0, 'bunch': 1.0, 'harsh': 1.0, 'the': 6.0, 'of': 2.0, 'wipe': 3.0, 'myself': 1.0, 'dispenser': 1.0, 'two': 1.0, 'little': 1.0, 'want': 1.0, 'hand': 1.0, 'boxes': 1.0, 'like': 1.0, 'only': 1.0, 'continue': 1.0, 'do': 1.0, 'out': 3.0, 'at': 1.0, 'uses': 1.0, 'time': 1.0, 'can': 3.0, 'so': 1.0, 'until': 1.0, 'run': 1.0, 'things': 1.0, 'life': 1.0, 'be': 1.0, 'satisfying': 1.0, 'in': 3.0, 'm': 1.0, 'some': 1.0, 'get': 1.0, 'used': 1.0, 'live': 1.0, 'start': 1.0, 'drying': 1.0}
Word element => {'at': 1.0, 'wipe': 1.0, '1': 1.0, 'dispenses': 1.0, 'wet': 1.0, 'the': 3.0, 'product': 1.0, 'exactly': 1.0, 'and': 1.0, 'wipes': 1.0, 'as': 1.0, 'described': 1.0, 'moisture': 1.0, 'works': 1.0, 'it': 1.0, 'all': 1.0, 'retains': 1.0, 'time': 1.0, 'on': 1.0}
Word element => {'and': 1.0, 'container': 1.0, 'hands': 1.0, 'two': 1.0, 'require': 1.0, 'of': 1.0, 'hold': 1.0, 'wipes': 1.0, 'weighted': 1.0, 'holds': 1.0, 'while': 1.0, 'that': 1.0, 'you': 1.0, 'dispensers': 1.0, 'the': 5.0, 'i': 2.0, 'love': 1.0, 'one': 2.0, 'pull': 2.0, 'design': 1.0, 'other': 2.0, 'on': 1.0, 'remove': 1.0, 'to': 3.0, 'wipe': 2.0, 've': 1.0, 'stack': 1.0, 'down': 2.0, 'used': 1.0}
Word element => {'recommend': 1.0, 'highly': 1.0, 'pull': 1.0, 'to': 1.0, 'ability': 1.0, 'with': 2.0, 'weight': 1.0, 'that': 1.0, 'free': 2.0, 'those': 1.0, 'place': 1.0, 'dispensers': 1.0, 'than': 1.0, 'inside': 1.0, 'hand': 1.0, 'better': 1.0, 'you': 2.0, 'way': 1.0, 'works': 1.0, 'one': 1.0, 'love': 2.0, 'great': 1.0, 'the': 4.0, 'wipes': 2.0, 'get': 1.0, 'and': 1.0, 'products': 1.0, 'oxo': 1.0, 'i': 1.0, 'keeps': 1.0, 'in': 1.0, 'gives': 1.0}
Word element => {'through': 1.0, 'one': 1.0, 'usually': 1.0, 'weighted': 1.0, 'in': 1.0, 'and': 1.0, 'are': 1.0, 'opens': 1.0, 'wipe': 1.0, 'keep': 1.0, 'plate': 1.0, 'time': 1.0, 'didn': 1.0, 'by': 1.0, 'few': 1.0, 'uses': 1.0, 'have': 2.0, 'a': 4.0, 't': 1.0, 'place': 1.0, 'the': 4.0, 'diaper': 1.0, 'allows': 1.0, 'this': 1.0, 'with': 2.0, 'it': 3.0, 'only': 2.0, 'after': 1.0, 'was': 2.0, 'would': 1.0, 'grab': 1.0, 'be': 1.0, '34': 2.0, 'poopy': 1.0, 'up': 1.0, 'which': 1.0, 'like': 1.0, 'wipes': 3.0, 'held': 1.0, 'or': 2.0, 'moist': 1.0, 'to': 2.0, 'pads': 1.0, 'two': 1.0, 'i': 2.0, 'etc': 1.0, 'that': 2.0, '2': 1.0, 'but': 1.0, 'is': 1.0, 'really': 1.0, 'warmer': 1.0, 'wonderful': 1.0, 'finger': 1.0, 'those': 1.0, 'discarded': 1.0, 'required': 1.0, 'changes': 1.0, 'afraid': 1.0, 'for': 1.0, 'where': 1.0, 'easily': 1.0, 'you': 1.0}
Word element => {'stars': 1.0, '5': 1.0, 'recommended': 1.0, 'enthusiastically': 1.0, 'without': 1.0, 'complete': 1.0, 'out': 1.0, 'wipes': 1.0, 'load': 1.0, 'easy': 1.0, 'extremely': 1.0, 'opens': 1.0, 'easily': 2.0, 'to': 2.0, 'exactly': 1.0, 'once': 1.0, 'time': 1.0, 'suppose': 1.0, 'and': 3.0, 'do': 1.0, 'gasket': 1.0, 'is': 3.0, 'hassle': 1.0, 'closed': 1.0, 'what': 1.0, 'does': 1.0, 'closes': 1.0, 'for': 1.0, 'one': 1.0, 'come': 1.0, 'first': 1.0, 'with': 2.0, 'it': 5.0, 'i': 1.0, 'touch': 1.0, 'sealed': 1.0, 'the': 4.0, 'on': 1.0, 'silicone': 1.0, 'lid': 1.0}
Word element => {'looking': 1.0, 'smaller': 1.0, 'make': 1.0, 'easy': 1.0, 'been': 1.0, 'have': 1.0, 'would': 1.0, 'heavier': 1.0, 'price': 1.0, 'and': 3.0, 'larger': 1.0, 'than': 1.0, 'just': 1.0, 'dispenser': 1.0, 'it': 4.0, 'works': 1.0, 'the': 2.0, 'more': 1.0, 'to': 2.0, 'its': 1.0, 'got': 1.0, 'how': 1.0, 'am': 1.0, 'i': 3.0, 'much': 1.0, 'expected': 2.0, 'less': 1.0, 'going': 1.0, 'industrial': 1.0, 'keep': 1.0, 'see': 1.0, 'for': 1.0}
Word element => {'very': 1.0, 'have': 1.0, 'i': 1.0, 'disposable': 1.0, 'out': 1.0, 'wipes': 1.0, 'to': 1.0, 'fighting': 1.0, 'the': 1.0, 'more': 1.0, 'life': 1.0, 'happy': 1.0, 're': 1.0, 'where': 1.0, 'those': 2.0, 'one': 2.0, 'of': 3.0, 'kinda': 1.0, 'easier': 1.0, 'that': 2.0, 'no': 2.0, 'things': 2.0, 'containers': 1.0, 'really': 2.0, 'is': 2.0, 'like': 1.0, 'get': 1.0, 'necessary': 2.0, 'well': 1.0, 'you': 1.0, 's': 2.0, 'with': 1.0, 'this': 1.0, 'it': 3.0, 'but': 1.0, 'not': 1.0, 'just': 1.0, 'been': 1.0, 'little': 1.0, 'makes': 1.0}
Word element => {'recommend': 1.0, 'highly': 1.0, 'wildebeast': 1.0, 'angry': 1.0, 'subdue': 1.0, 'trying': 1.0, 'when': 1.0, 'times': 1.0, 'product': 1.0, 'for': 1.0, 'free': 1.0, 'other': 1.0, 'your': 1.0, 'press': 1.0, 'with': 1.0, 'opens': 1.0, 'keeping': 1.0, 'out': 1.0, 'dry': 1.0, 'moist': 1.0, 'loaded': 1.0, 'they': 1.0, 'seal': 1.0, 'rubber': 1.0, 'one': 1.0, 'get': 1.0, 'and': 4.0, 'from': 1.0, 'never': 1.0, 'keeps': 2.0, 'there': 1.0, 'of': 2.0, 'this': 4.0, 'those': 1.0, 'cats': 1.0, 'like': 1.0, 'which': 1.0, 'hand': 1.0, 'know': 1.0, 'is': 7.0, 'without': 1.0, 'the': 6.0, 'nice': 1.0, 'great': 2.0, 'bunching': 1.0, 'these': 1.0, 'an': 2.0, 'very': 1.0, 'dispenser': 1.0, 'only': 1.0, 'works': 1.0, 'changing': 1.0, 'that': 2.0, 'weight': 1.0, 'quality': 1.0, 'wipe': 1.0, 'at': 1.0, 'we': 2.0, 'pajamas': 1.0, 't': 1.0, 'a': 4.0, 'time': 1.0, 'has': 1.0, '5th': 1.0, 'internal': 1.0, 'game': 1.0, 'spring': 1.0, 'changer': 1.0, 'up': 1.0, 'child': 1.0, 'don': 1.0, 'years': 1.0, 'how': 1.0, 'diapers': 1.0, 'got': 1.0, 'just': 1.0, 'by': 1.0, 'to': 1.0, 'our': 1.0, 'all': 1.0, 'thing': 1.0, 'lid': 3.0, 'wipes': 3.0, 'good': 1.0}
Word element => {'sorry': 1.0, 'be': 1.0, 'now': 1.0, 'smell': 1.0, 'except': 1.0, 'incredibly': 1.0, 'being': 1.0, 'won': 1.0, 'has': 1.0, 'stack': 1.0, 'poopy': 1.0, 'over': 1.0, 'there': 1.0, 'easy': 1.0, 'get': 1.0, 'area': 1.0, 'floor': 1.0, 'weighted': 1.0, 'bedrooms': 1.0, 'for': 3.0, 'loved': 1.0, 'from': 1.0, 'solution': 1.0, 'absolute': 1.0, 'very': 1.0, 'dispenser': 1.0, 'can': 1.0, 'money': 1.0, 'waste': 1.0, 'plus': 1.0, 'everywhere': 1.0, 'pull': 2.0, 'after': 1.0, 'plate': 1.0, 'so': 4.0, 'about': 1.0, 'gone': 1.0, 'thing': 1.0, 'have': 2.0, 'the': 5.0, 'is': 5.0, 'more': 1.0, 'stressful': 1.0, 'such': 1.0, 'regular': 1.0, 'in': 1.0, 'buy': 1.0, 'day': 1.0, 'i': 7.0, 'and': 3.0, 'five': 1.0, 'sits': 1.0, 'diapers': 2.0, 'got': 1.0, 'down': 1.0, 'main': 1.0, 'three': 1.0, 'total': 1.0, 'lot': 1.0, 'of': 5.0, 'our': 1.0, 'to': 3.0, 'point': 1.0, 'with': 2.0, 'come': 1.0, 'annoying': 1.0, 'it': 4.0, 'that': 3.0, 'changing': 3.0, 'box': 1.0, 'wipes': 2.0, 'something': 1.0, 'each': 1.0, 'would': 2.0, 'bought': 1.0, 'one': 5.0, 'newborn': 1.0, 'out': 1.0, 'along': 1.0, 'perfect': 1.0, 'found': 1.0, 'this': 2.0, 'pain': 1.0, 'someone': 1.0, 'twins': 2.0, 'am': 1.0, 'you': 4.0, 'when': 2.0, 't': 1.0, 'a': 7.0, 'go': 1.0, 'going': 1.0, 'do': 1.0, 'only': 1.0, 'much': 1.0, 'certain': 1.0, 'poop': 1.0}
Word element => {'diapers': 1.0, 'will': 1.0, 'solid': 1.0, 'my': 1.0, 'keep': 1.0, 'truly': 1.0, 'it': 3.0, 'great': 1.0, 'operation': 1.0, 'pulled': 1.0, 'needed': 1.0, 'tell': 1.0, 'left': 1.0, 'many': 2.0, 'how': 2.0, 'see': 1.0, 'side': 1.0, 'anyone': 1.0, 'window': 1.0, 'need': 1.0, 'out': 2.0, 'pull': 1.0, 'in': 3.0, 'getting': 1.0, 'are': 1.0, 'when': 1.0, 'times': 1.0, 'you': 4.0, 'i': 12.0, 'and': 2.0, 'last': 2.0, 'wipes': 5.0, 'had': 2.0, 'to': 2.0, 'recommend': 1.0, 'was': 1.0, 'the': 9.0, 'can': 2.0, 'past': 1.0, '2': 1.0, 'each': 1.0, 'would': 2.0, 'weight': 2.0, 'been': 1.0, 'box': 1.0, 'that': 9.0, 'for': 2.0, 'one': 6.0, 'liked': 1.0, 'knowing': 1.0, 're': 1.0, 't': 1.0, 'ago': 1.0, 'a': 5.0, 'years': 1.0, 'construction': 1.0, 'little': 2.0, 'capacity': 1.0, 'boxes': 1.0, 'usually': 1.0, 'than': 2.0, 'with': 3.0, 'kids': 1.0, 'wish': 1.0, 'this': 2.0, 'so': 2.0, 'time': 3.0, 'have': 4.0, 'long': 2.0, 'down': 1.0, 'squirmy': 1.0, 'only': 1.0, 'opprotunity': 1.0, 'try': 1.0, 'dissapointed': 1.0, 'not': 2.0, 'make': 1.0, 'on': 2.0, 'almost': 1.0, 'packs': 1.0, 'of': 1.0, 'helps': 1.0, 'there': 2.0, 'hand': 2.0, 'like': 1.0, 'know': 1.0, 'using': 1.0, 'which': 3.0, 'comes': 1.0, 'more': 2.0, 'holds': 2.0, 'is': 5.0, 'really': 2.0, 'other': 1.0}
Word element => {'heated': 1.0, 'that': 1.0, 'than': 1.0, 'like': 1.0, 'really': 1.0, 'time': 1.0, 'a': 1.0, 'plastic': 1.0, 'the': 3.0, 'of': 1.0, 'wipes': 1.0, 'bags': 1.0, 'out': 1.0, 'my': 1.0, 'pulling': 1.0, 'trouble': 1.0, 'having': 1.0, 'when': 1.0, 'i': 1.0, 'one': 3.0, 'at': 1.0, 'it': 1.0, 'this': 1.0, 'solved': 1.0, 'better': 1.0, 'problem': 1.0, 'weight': 1.0, 'handed': 1.0, 'allows': 1.0, 'was': 1.0, 'to': 1.0, 'me': 1.0, 'and': 1.0, 'get': 1.0}
Word element => {'disappointed': 1.0, 'obviously': 1.0, 'so': 1.0, 'brand': 1.0, 'solid': 1.0, 'a': 1.0, 'product': 1.0, 'usually': 1.0, 'is': 1.0, 'close': 1.0, 'won': 1.0, 'for': 1.0, 'convenience': 1.0, 'broken': 1.0, 'the': 4.0, 't': 2.0, 'looking': 1.0, 'nursery': 1.0, 'm': 2.0, 'oxo': 1.0, 'i': 3.0, 'of': 2.0, 'completely': 1.0, 'and': 2.0, 'latch': 1.0, 'to': 1.0, 'was': 1.0, 'now': 1.0, 'because': 1.0, 'with': 1.0, 'this': 2.0, 'it': 1.0, 'inconvenienced': 1.0, 'arrived': 1.0, 'quality': 1.0, 'work': 1.0, 'forward': 1.0, 'doesn': 1.0}
Word element => {'have': 1.0, 'definitely': 1.0, 'wipes': 1.0, 'new': 1.0, 'insert': 1.0, 'must': 1.0, 'very': 1.0, 's': 1.0, 'a': 2.0, 'made': 1.0, 'works': 1.0, 'dispenser': 1.0, 'plastic': 1.0, 'can': 1.0, 'easy': 2.0, 'during': 1.0, 'simple': 1.0, 'of': 1.0, 'says': 1.0, 'i': 1.0, 'everything': 1.0, 'changes': 1.0, 'and': 2.0, 'get': 1.0, 'is': 3.0, 'any': 1.0, 'ask': 1.0, 'it': 4.0, 'with': 1.0, 'this': 1.0, 'pull': 1.0, 'to': 1.0, 'wipe': 1.0, 'sturdy': 1.0, 'every': 1.0, 'one': 1.0, 'for': 1.0, 'diaper': 1.0, 't': 1.0, 'more': 1.0}
Word element => {'described': 1.0, 'proper': 1.0, 'all': 1.0, 'at': 1.0, 'weight': 1.0, 'then': 1.0, 'the': 6.0, 'made': 1.0, 'is': 2.0, 'next': 2.0, 'feed': 2.0, 'are': 1.0, 'weighted': 1.0, 'wipes': 3.0, 'dispenser': 2.0, 'help': 2.0, 'with': 1.0, 'only': 1.0, 'it': 1.0, 'this': 2.0, 'though': 1.0, 'to': 2.0, 'wipe': 2.0, 'as': 3.0, 'best': 1.0, 'works': 1.0, 'does': 1.0, 'even': 1.0, 'used': 1.0, 'properly': 1.0, 'if': 1.0, 'not': 2.0}
Word element => {'color': 2.0, 'white': 1.0, 'note': 1.0, 'thing': 1.0, 'low': 1.0, 'stock': 1.0, 'often': 1.0, 'since': 1.0, 'really': 1.0, 'opening': 1.0, 'isn': 1.0, 'front': 1.0, 'another': 1.0, 'seals': 1.0, 'hand': 1.0, 'using': 1.0, 'gasket': 2.0, 'an': 1.0, 'delivers': 1.0, 'd': 1.0, 'ton': 1.0, 'from': 1.0, 'wife': 1.0, 'as': 1.0, 'to': 2.0, 'exactly': 1.0, 'closes': 1.0, 'mostly': 1.0, 'important': 1.0, 'design': 1.0, 'keeps': 2.0, 'love': 1.0, 'oxo': 2.0, 'like': 1.0, 'cheap': 2.0, 'in': 2.0, 'won': 1.0, 't': 3.0, 'moving': 1.0, 'we': 2.0, 'have': 1.0, 'tired': 1.0, 'junky': 1.0, 'baby': 1.0, 'flawlessly': 1.0, 'has': 1.0, 'them': 1.0, 'wipe': 1.0, 'and': 7.0, 'wipes': 5.0, 'good': 1.0, 'you': 2.0, 'kitchen': 1.0, 'product': 2.0, 'products': 1.0, 'some': 1.0, 'got': 1.0, 'most': 1.0, 'my': 2.0, 'lid': 1.0, 'works': 1.0, 'without': 1.0, 'well': 1.0, 'i': 4.0, 'kleenex': 1.0, 'notice': 1.0, 'is': 4.0, 'expect': 1.0, 'dispenser': 4.0, 'seriously': 1.0, 'with': 5.0, 'piece': 2.0, 're': 1.0, 'come': 1.0, 'this': 2.0, 'on': 1.0, 'dispensers': 2.0, 'window': 1.0, 'heft': 1.0, 'popped': 1.0, 'their': 1.0, 'easily': 1.0, 'that': 2.0, 'free': 2.0, 'moist': 1.0, 'the': 16.0, 'of': 3.0, 'longer': 1.0, 'than': 1.0, 'already': 1.0, 'it': 5.0, 'be': 3.0, 'only': 1.0, 'grab': 1.0, 'practical': 1.0, 'operated': 1.0, 'a': 5.0, 'slight': 1.0, 'press': 1.0, 'one': 1.0, 'selection': 1.0, 'opens': 1.0, 'are': 1.0, 'just': 1.0, 'by': 1.0, 'pulling': 1.0, 'out': 1.0, 'couple': 1.0, 'weighted': 2.0, 'middle': 1.0, 'up': 1.0, 'ready': 1.0, 'changes': 1.0, 'snagging': 1.0, 'couldn': 1.0, 'around': 1.0, 'happier': 1.0, 'when': 1.0, 'pampers': 1.0, 'can': 1.0, 'so': 2.0, 'sensitive': 1.0}
Word element => {'used': 1.0, 'plastic': 1.0, 'quality': 1.0, 'open': 1.0, 'every': 1.0, 'amount': 1.0, 'see': 1.0, 'since': 1.0, 'gimmick': 1.0, 'of': 2.0, 'window': 1.0, 'down': 1.0, 'weight': 1.0, 'rubber': 1.0, 'time': 1.0, 'bit': 1.0, 'so': 1.0, 'kept': 1.0, 'has': 2.0, 'half': 1.0, 'into': 1.0, 'good': 1.0, 'wipes': 4.0, 'me': 1.0, 'not': 1.0, 'cut': 1.0, 'pretty': 1.0, 'spring': 2.0, 'use': 2.0, 'then': 1.0, 'do': 1.0, 'nice': 2.0, 'hold': 1.0, 'which': 2.0, 'this': 2.0, 'it': 1.0, 'lid': 2.0, 'bathroom': 1.0, 'in': 1.0, 'to': 2.0, 'for': 1.0, 'product': 1.0, 'usually': 1.0, 'the': 12.0, 'i': 4.0, 'we': 1.0, 'a': 4.0, 'loaded': 1.0, 'seal': 1.0, 'will': 1.0, 'is': 1.0, 'around': 1.0, 'top': 3.0, 'help': 1.0, 'moist': 1.0, 'reload': 1.0, 'close': 1.0, 'articulating': 1.0, 'when': 1.0, 'you': 2.0, 'opens': 1.0, 'push': 1.0, 'must': 1.0, 'mechanism': 1.0}
Word element => {'arrived': 1.0, 'one': 4.0, 'latches': 1.0, 'our': 2.0, 'ruined': 1.0, 'that': 2.0, 'ordered': 1.0, 'latch': 3.0, 'good': 1.0, 'the': 7.0, 'great': 2.0, 'flaw': 1.0, 'which': 2.0, 'this': 2.0, 'first': 1.0, 'with': 2.0, 'would': 1.0, 'broken': 1.0, 'product': 2.0, 'be': 1.0, 'replaced': 1.0, 'we': 2.0, 'a': 3.0, 'fatal': 1.0, 'plastic': 2.0, 'weak': 2.0, 'but': 3.0, 'was': 2.0, 'and': 1.0, 'on': 1.0, 'threw': 1.0, 'replacement': 2.0, 'just': 2.0, 'broke': 2.0, 'experience': 1.0, 'after': 1.0, 'so': 1.0, 'less': 1.0, 'than': 1.0, 'it': 3.0, 'month': 1.0, 'of': 1.0, 'is': 1.0, 'trash': 1.0, 'amazon': 1.0, 'use': 1.0, 'in': 1.0, 'while': 1.0, 'has': 1.0, 'lasted': 1.0}
Word element => {'in': 1.0, 'money': 1.0, 'the': 1.0, 'singapore': 1.0, 'worth': 1.0, 'one': 1.0, 'have': 1.0, 'this': 1.0, 'item': 1.0, 'is': 1.0, 'a': 1.0, 'should': 1.0, 'buy': 1.0, 'best': 1.0, 'and': 1.0, 'very': 1.0, 'to': 1.0, 'mother': 1.0, 'useful': 2.0, 'all': 1.0}
Word element => {'was': 1.0, 'set': 1.0, 'wish': 1.0, 'hehe': 1.0, 'see': 1.0, 'gets': 1.0, 'cute': 3.0, 'to': 1.0, 'exactly': 1.0, 'as': 1.0, 'cheaper': 1.0, 'when': 1.0, 'eats': 1.0, 'the': 3.0, 'wolf': 1.0, 'pictured': 1.0, 'it': 1.0, 'all': 1.0, 'baby': 1.0, 'she': 1.0}
Word element => {'melamine': 1.0, 'things': 1.0, 'not': 1.0, 'cool': 1.0, 'one': 1.0, 'that': 1.0, 'unique': 1.0, 'nothing': 1.0, 'melt': 1.0, 'top': 1.0, 'is': 2.0, 'really': 1.0, 'handled': 1.0, 'adorable': 1.0, 'sides': 1.0, 'put': 1.0, 'curved': 1.0, 'the': 6.0, 'this': 1.0, 'it': 4.0, 'set': 1.0, 'of': 2.0, 'for': 1.0, 'love': 1.0, 'cuteness': 1.0, 'good': 1.0, 'off': 1.0, 'my': 1.0, 'lid': 1.0, 'cup': 2.0, 'or': 1.0, 'has': 1.0, 'they': 1.0, 'so': 2.0, 'plate': 2.0, 'kind': 1.0, 'get': 1.0, 'you': 1.0, 'too': 1.0, 'difficult': 1.0, 'just': 1.0, 'use': 1.0, 'go': 1.0, 't': 1.0, 's': 3.0, 'a': 1.0, 'i': 1.0, 'two': 1.0, 'about': 2.0, 'no': 1.0, 'but': 1.0, 'can': 1.0, 'as': 1.0, 'to': 2.0, 'spoons': 1.0, 'in': 1.0, 'dishwasher': 1.0}
Word element => {'too': 1.0, 'come': 1.0, 'stains': 1.0, 'nicely': 1.0, 'set': 1.0, 'bed': 1.0, 'out': 1.0, 'this': 1.0, 'love': 1.0}
Word element => {'recommend': 1.0, 'definitely': 1.0, 'would': 1.0, 'with': 1.0, 'go': 1.0, 'things': 1.0, 'to': 2.0, 'easy': 1.0, 'and': 1.0, 'i': 2.0, 's': 1.0, 'cute': 1.0, 'it': 1.0, 'absolutely': 1.0, 'love': 2.0, 'find': 1.0, 'the': 1.0, 'this': 1.0, 'set': 1.0, 'so': 1.0, 'colors': 1.0}
Word element => {'we': 1.0, 'way': 1.0, 'girls': 1.0, 'just': 1.0, 'tried': 1.0, 'are': 1.0, 'the': 2.0, 'mommy': 1.0, 'to': 2.0, 'be': 1.0, 'as': 1.0, 'wanted': 1.0, 'coordinating': 1.0, 'twin': 1.0, 'bought': 1.0, 'pieces': 1.0, 'on': 1.0, '2': 1.0, 'many': 1.0, 'buy': 1.0, 'what': 1.0, 'there': 1.0}
Word element => {'this': 1.0, 'from': 1.0, 'buying': 1.0, 'be': 1.0, 'will': 1.0, 'better': 1.0, 'than': 1.0, 'i': 2.0, 'and': 1.0, 'quality': 1.0, 'excellent': 1.0, 'line': 1.0, 'love': 1.0, 'more': 1.0, 'the': 2.0, 'colors': 1.0, 'expected': 1.0, 'was': 1.0}
Word element => {'quality': 1.0, 'for': 1.0, 'pricey': 1.0, 'quite': 1.0, 'though': 1.0, 'even': 1.0, 'softer': 1.0, 'described': 1.0, 'and': 1.0, 'as': 1.0, 'very': 1.0, 'purchase': 1.0, 'use': 1.0, 'satisfied': 1.0, 'a': 1.0, 'the': 3.0, 'more': 1.0, 'make': 1.0, 'is': 2.0, 'blanket': 1.0, 'could': 1.0, 'material': 1.0, 'product': 1.0, 'to': 1.0, 'with': 1.0, 'it': 2.0, 'stuffing': 1.0, 'fluffier': 1.0, 'however': 1.0, 'i': 1.0, 'am': 1.0}
Word element => {'item': 1.0, 'same': 1.0, 'if': 1.0, 'cost': 1.0, 'of': 1.0, 'going': 1.0, 'fraction': 1.0, 'exact': 1.0, 'for': 2.0, 'in': 1.0, 'a': 2.0, 're': 1.0, 'store': 1.0, 'much': 1.0, 'this': 2.0, 'to': 1.0, 'its': 1.0, 'got': 1.0, 'you': 2.0, 'i': 1.0, 'buy': 1.0, 'product': 1.0, 'll': 1.0, 'more': 1.0, 'the': 1.0, 'pay': 1.0}
Word element => {'adorable': 1.0, 'is': 1.0, 'room': 1.0, 'matched': 1.0, 'that': 1.0, 'and': 2.0, 'fabric': 1.0, 'so': 2.0, 'nice': 1.0, 'nursery': 1.0, 'decals': 1.0, 'cute': 1.0, 'for': 1.0, 'the': 3.0, 'ordered': 1.0, 'wall': 1.0}
Word element => {'i': 1.0, 'adorable': 1.0, 'it': 1.0, 'love': 1.0, 'absolutely': 1.0, 'nursery': 1.0, 'decals': 1.0, 'wall': 1.0, 'matching': 1.0, 'this': 1.0, 'a': 1.0, 'the': 2.0, 'is': 2.0, 'gorgeous': 1.0, 'set': 1.0, 'we': 1.0, 'hamper': 1.0, 'high': 1.0, 'and': 2.0, 'quality': 1.0, 'crib': 1.0, 'bought': 1.0}
Word element => {'product': 1.0, 'made': 1.0, 'reasonable': 1.0, 'price': 1.0, 'expand': 1.0, 'want': 1.0, 'nursery': 1.0, 'you': 1.0, 's': 1.0, 'girl': 1.0, 'well': 1.0, 'a': 2.0, 'for': 1.0, 'tree': 1.0, 'available': 1.0, 'up': 1.0, 'set': 3.0, 'because': 1.0, 'happi': 1.0, 'little': 1.0, 'crib': 1.0, 'dena': 1.0, 'the': 3.0, 'pieces': 2.0, 'colored': 1.0, 'decorative': 1.0, 'additional': 1.0, 'animals': 1.0, 'we': 1.0, 'feminine': 1.0, 'chose': 1.0, 'and': 1.0, 'to': 2.0, 'was': 2.0, 'had': 1.0, 'forest': 1.0, 'should': 1.0, 'included': 1.0, 'essential': 1.0, 'theme': 1.0, 'cute': 1.0, 'pastel': 1.0, 'with': 1.0, 'it': 1.0, 'this': 1.0}
Word element => {'but': 1.0, 'same': 1.0, 'though': 1.0, 'works': 1.0, 'even': 1.0, 'better': 1.0, 'size': 1.0, 'toddlers': 2.0, 'on': 1.0, 'bedspread': 1.0, 'are': 1.0, 'more': 1.0, 'the': 2.0, 'my': 1.0, 'guess': 1.0, 'i': 2.0, 'cute': 1.0, 'so': 1.0, 'is': 2.0, 'looks': 1.0, 'all': 1.0, 'because': 1.0, 'just': 1.0, 'it': 7.0, 'we': 3.0, 'using': 1.0, 'bed': 3.0, 'for': 3.0, 'wish': 1.0, 'colors': 1.0, 'and': 1.0, 'animals': 1.0, 'matches': 1.0, 'was': 1.0, 'granddaughters': 1.0, 'a': 5.0, 'crib': 1.0, 'little': 1.0, 'needed': 2.0, 'bigger': 1.0}
Word element => {'off': 1.0, 'rip': 1.0, 'selling': 1.0, 'actually': 1.0, 'they': 1.0, 'what': 2.0, 'for': 2.0, 'thinking': 1.0, 's': 2.0, 'reading': 1.0, 'arrived': 1.0, 'shown': 1.0, 'carefully': 1.0, 'item': 2.0, 'that': 2.0, 'fault': 1.0, 'pacifier': 1.0, 'holder': 2.0, 'a': 3.0, 'is': 3.0, 're': 1.0, 'cup': 1.0, 'my': 1.0, 'the': 3.0, 'more': 1.0, 'sippy': 1.0, 'it': 1.0, 'not': 1.0, 'picture': 1.0, 'silly': 1.0, 'me': 1.0}
Word element => {'buying': 1.0, 'me': 1.0, 'us': 1.0, 'if': 2.0, 'else': 1.0, 'what': 1.0, 'toddlers': 1.0, 'at': 1.0, 'will': 1.0, 'even': 1.0, 'nothing': 1.0, 'makes': 1.0, 'old': 1.0, 'it': 1.0, 'month': 1.0, '8': 1.0, 'awesome': 1.0, 'are': 2.0, 'so': 2.0, 'you': 1.0, 'look': 1.0, 'thank': 1.0, 'company': 1.0, 'neat': 1.0, 'which': 1.0, 'here': 1.0, 'steel': 1.0, 'there': 1.0, 'containers': 1.0, 'more': 1.0, 'is': 2.0, 'have': 2.0, 'get': 1.0, 'and': 4.0, 'jars': 1.0, 'trustworthy': 1.0, 'long': 1.0, 'we': 2.0, 'tips': 1.0, 'compares': 1.0, 'handle': 1.0, 'count': 1.0, 'bought': 1.0, 'one': 1.0, 'munchkin': 2.0, 'something': 1.0, 'babies': 1.0, 'that': 1.0, 'into': 1.0, 'all': 1.0, 'our': 1.0, 'to': 4.0, 'spoons': 3.0, 'on': 2.0, 'way': 1.0, 'products': 1.0, 'these': 2.0, 'the': 3.0, 'better': 1.0, 'throw': 1.0, 'love': 2.0, 'for': 3.0, 'recycled': 1.0, 'or': 1.0, 'gerber': 1.0, 'this': 1.0, 'soft': 1.0, 'out': 1.0, 'china': 1.0, 'made': 3.0, 'them': 1.0, 'usa': 1.0, 'reason': 1.0, 'in': 3.0, 'much': 1.0, 'only': 1.0, 'spoon': 1.0, 'by': 1.0, 'because': 1.0, 'than': 1.0, 'find': 1.0, 'junk': 1.0, 'i': 2.0, 'stainless': 1.0, 'from': 1.0}
Word element => {'manufacturing': 1.0, 'by': 1.0, 'produced': 1.0, 'ira': 1.0, 'a': 5.0, 'take': 1.0, 'spoon': 3.0, 'not': 1.0, 'would': 1.0, 'item': 1.0, 'but': 1.0, 'can': 2.0, 'plastic': 2.0, 'mention': 1.0, 'that': 3.0, 'what': 1.0, 'listed': 1.0, 'tipped': 1.0, 'i': 3.0, 'think': 1.0, 'because': 1.0, 'than': 1.0, 'group': 1.0, 'they': 2.0, 'the': 5.0, 'are': 1.0, 'of': 1.0, 'deliver': 1.0, 'only': 1.0, 'with': 2.0, 'this': 1.0, 'it': 2.0, 'away': 1.0, 'star': 1.0, 'for': 1.0, 'love': 1.0, 'say': 1.0, 'is': 3.0, 'white': 1.0, 'stained': 1.0, 'use': 1.0, 'carrots': 1.0, 'likes': 1.0, 'teether': 1.0, 'spoons': 1.0, 'as': 2.0, 'to': 1.0, 'and': 2.0, 'play': 1.0, 'bit': 1.0, 'usa': 1.0, 'baby': 1.0, 'softer': 1.0}
Word element => {'a': 1.0, 'is': 1.0, 'dishwasher': 1.0, 'munchkins': 1.0, 'better': 1.0, 'much': 1.0, 'feed': 1.0, 'brand': 1.0, 'themselves': 1.0, 'how': 1.0, 'learning': 1.0, 'for': 1.0, 'than': 1.0, 'grip': 1.0, 'to': 2.0, 'easy': 1.0, 'handles': 1.0, 'and': 1.0, 'used': 1.0, 'they': 2.0, 'i': 2.0, 'best': 1.0, 'our': 1.0, 'that': 3.0, 'standards': 1.0, 'these': 2.0, 'the': 4.0, 'are': 6.0, 'spoons': 1.0, 'ethics': 1.0, 'quality': 1.0, 'babies': 1.0, 'have': 1.0, 'plus': 2.0, 'of': 1.0, 'in': 2.0, 'also': 1.0, 'feel': 1.0, 'safe': 2.0, 'which': 1.0, 'terms': 1.0, 'knowing': 1.0, 'made': 1.0, 'usa': 1.0, 'with': 1.0}
Word element => {'great': 1.0, 'in': 2.0, 'perfect': 1.0, 'also': 1.0, 'made': 1.0, 'white': 1.0, 'product': 1.0, 'love': 1.0, 'for': 1.0, 'that': 2.0, 'quality': 1.0, 'usa': 1.0, 'baby': 1.0, 'don': 1.0, 'just': 1.0, 'the': 3.0, 'these': 1.0, 'phthalates': 1.0, 'are': 4.0, 'son': 1.0, 'i': 2.0, 'old': 1.0, 't': 1.0, 'a': 2.0, 'regards': 1.0, 'discuss': 1.0, 'with': 1.0, 'they': 3.0, 'free': 1.0, 'all': 2.0, 'as': 1.0, 'to': 3.0, 'spoons': 2.0, 'on': 1.0, 'and': 2.0, 'material': 1.0, 'of': 1.0, 'adipates': 1.0, 'however': 1.0, 'lead': 1.0, 'bpa': 1.0, 'size': 1.0, 'my': 1.0, '8month': 1.0, 'lot': 1.0, 'who': 1.0, 'likes': 1.0, 'chew': 1.0, 'spoon': 1.0, 'from': 1.0, 'part': 1.0}
Word element => {'maintained': 1.0, 'high': 1.0, 'of': 1.0, 'products': 1.0, 'in': 1.0, 'not': 1.0, 'moreover': 1.0, 'quality': 1.0, 'usa': 1.0, 'baby': 1.0, 'highly': 1.0, 'enough': 1.0, 'i': 3.0, 'so': 1.0, 'boy': 1.0, 'cereal': 1.0, 'with': 1.0, 'it': 2.0, 'is': 3.0, 'many': 1.0, 'the': 3.0, 'how': 1.0, 'well': 1.0, 'recommended': 1.0, 't': 1.0, 's': 2.0, 'super': 1.0, 'product': 1.0, 'love': 1.0, 'for': 2.0, 'affordable': 1.0, 'my': 2.0, '6mo': 1.0, 'small': 1.0, 'have': 2.0, 'and': 4.0, 'this': 1.0, 'perfect': 1.0, 'mouth': 1.0, 'only': 1.0, 'its': 1.0, 'avocado': 1.0, 'had': 1.0, 'sure': 1.0, 'easy': 1.0, 'clean': 1.0, 'china': 1.0, 'made': 1.0, 'haven': 1.0, 'staining': 1.0, 'are': 1.0, 'reviewers': 1.0, 'old': 1.0, 'problems': 1.0, 'to': 1.0, 'as': 1.0, 'mentioned': 1.0, 'but': 1.0, 'spoon': 1.0, 'then': 1.0, 'am': 1.0, 'again': 1.0, 'fed': 1.0}
Word element => {'child': 1.0, 's': 1.0, 'well': 1.0, 'stock': 1.0, 'usa': 1.0, 'up': 1.0, 'and': 1.0, 'any': 1.0, 'in': 2.0, 'other': 1.0, 'worth': 1.0, 'baby': 2.0, 'spoon': 1.0, 'risks': 1.0, 'putting': 1.0, 'these': 1.0, 'lead': 1.0, 'health': 1.0, 'your': 2.0, 'the': 1.0, 'made': 1.0, 'are': 1.0}
Word element => {'american': 2.0, 'quality': 2.0, 'product': 2.0, 'this': 2.0, 'china': 2.0, 'in': 2.0, 'made': 4.0, 'a': 2.0, 'is': 2.0, 'buying': 2.0, 'stop': 2.0}
Word element => {'eat': 1.0, 'to': 1.0, 'ones': 1.0, 'little': 1.0, 'rubber': 1.0, 'covered': 1.0, 'spoon': 1.0, 'these': 1.0, 'have': 1.0, 'spoons': 1.0, 'and': 1.0, 'nice': 1.0, 'a': 1.0, 'small': 1.0, 'are': 1.0, 'the': 1.0, 'made': 1.0, 'for': 1.0, 'in': 2.0, 'learning': 1.0, 'usa': 1.0}
Word element => {'if': 1.0, 'have': 1.0, 'but': 1.0, 'these': 1.0, 'buy': 1.0, 'would': 3.0, 'him': 1.0, 'making': 1.0, 'his': 1.0, 'hope': 1.0, 'though': 1.0, 'about': 1.0, 'happy': 1.0, 'm': 1.0, 'scratch': 1.0, 'big': 1.0, 'teeth': 1.0, 'which': 1.0, 'handle': 2.0, 'its': 1.0, 'arrived': 1.0, 'had': 1.0, 'been': 1.0, 'that': 1.0, 'rubber': 3.0, 'marred': 1.0, 'spoon': 2.0, 'except': 1.0, 'think': 1.0, 'on': 4.0, 'gauges': 1.0, 'marks': 1.0, 'well': 1.0, 'grabbing': 1.0, 'one': 2.0, 'sterilize': 3.0, 'don': 1.0, 'wash': 1.0, 'in': 1.0, 'said': 1.0, 'scrape': 1.0, 'is': 2.0, 'left': 1.0, 'directions': 1.0, 'however': 1.0, 'against': 1.0, 'so': 3.0, 'wanted': 1.0, 'use': 1.0, 'not': 2.0, 'give': 1.0, 'bigger': 1.0, 'three': 1.0, 'product': 1.0, 'marring': 2.0, 'for': 2.0, 'stars': 1.0, 'this': 1.0, 'it': 3.0, 'with': 2.0, 'before': 1.0, 'five': 1.0, 'and': 2.0, 'deal': 1.0, 'the': 12.0, 'ingest': 1.0, 'made': 1.0, 'usa': 1.0, 'them': 3.0, 'out': 1.0, 'because': 1.0, 'or': 1.0, 'bottles': 1.0, 'didn': 1.0, 'silicone': 1.0, 'to': 5.0, 'our': 1.0, 'spoons': 2.0, 'fine': 1.0, 'isn': 1.0, 'teething': 1.0, 'gauge': 1.0, 'rings': 1.0, 't': 3.0, 'a': 2.0, 'we': 2.0, 'i': 5.0, 'boiled': 1.0, 'boil': 3.0, 'minutes': 1.0, 'again': 1.0, 'causing': 1.0, 'when': 1.0, 'pair': 1.0, 'of': 2.0, 'tongs': 2.0}
Word element => {'jobs': 1.0, 'and': 1.0, 'american': 1.0, 'shoukd': 1.0, 'believe': 1.0, 'in': 2.0, 'spoons': 1.0, 'child': 1.0, 'loves': 1.0, 'i': 2.0, 'usa': 2.0, 'love': 1.0, 'buy': 1.0, 'you': 1.0, 'that': 2.0, 'these': 1.0, 'they': 1.0, 'support': 1.0, 'the': 2.0, 'my': 1.0, 'are': 1.0, 'made': 1.0}
Word element => {'well': 1.0, 'but': 1.0, 'and': 1.0, 'worth': 1.0, 'find': 1.0, 'able': 1.0, 'to': 1.0, 'was': 1.0, 'that': 1.0, 'pleased': 1.0, 'spoons': 2.0, 'i': 2.0, 'shipping': 1.0, 'very': 1.0, 'in': 1.0, 'for': 1.0, 'made': 1.0, 'usa': 1.0, 'it': 3.0, '00': 1.0, 'is': 2.0, 'paid': 1.0, '10': 1.0, '2': 1.0, 'pretty': 1.0, 'expensive': 1.0, 'baby': 1.0, 'about': 1.0}
Word element => {'baja': 1.0, 'stima': 1.0, 'l': 1.0, 'decorar': 1.0, 'para': 1.0, 'buen': 1.0, 'un': 1.0, 'curioso': 1.0, 'figuras': 1.0, 'p': 1.0, 'hace': 1.0, 'ver': 1.0, 'el': 2.0, 'lido': 1.0, 'ba': 1.0, 'y': 2.0, 'es': 2.0, 'muy': 1.0, 'lo': 2.0, 'las': 1.0, 'color': 1.0, 'calidad': 2.0, 'no': 1.0, 'o': 1.0, 'la': 2.0, 'detalle': 1.0, 'aacute': 2.0, 'impresi': 1.0, 'mala': 1.0, 'oacute': 1.0, 'ntilde': 1.0, 'esperaba': 1.0, 'que': 1.0, 'n': 1.0, 'de': 2.0}
Word element => {'bibs': 1.0, 'highly': 1.0, 'wash': 1.0, 'well': 1.0, 'bonus': 1.0, 'fashionable': 1.0, 'cool': 1.0, 'are': 1.0, 'plus': 1.0, 'irritate': 1.0, 'is': 2.0, 'him': 2.0, 'changing': 1.0, 'son': 1.0, 'so': 3.0, 'got': 1.0, 'then': 1.0, 'how': 3.0, 'wet': 1.0, 'just': 1.0, 'recommend': 1.0, 'doesn': 1.0, 'was': 1.0, 'baby': 1.0, 'started': 1.0, 'wipe': 1.0, 'couldn': 2.0, 'and': 2.0, 'shirt': 1.0, 'burp': 1.0, 'another': 1.0, 'my': 2.0, 'his': 3.0, 'a': 2.0, 't': 3.0, 'the': 2.0, 'they': 1.0, 'drooling': 2.0, 'become': 1.0, 'mess': 1.0, 'i': 7.0, 'cloth': 1.0, 'also': 1.0, 'these': 1.0, 'cloths': 1.0, 'constantly': 1.0, 'put': 1.0, 'soft': 1.0, 'found': 1.0, 'this': 1.0, 'it': 2.0, 'at': 1.0, 'bib': 1.0, 'new': 1.0, 'stand': 1.0, 'down': 1.0, 'favorite': 1.0, 'keeps': 1.0, 'any': 1.0, 'patterns': 1.0, 'to': 1.0, 'all': 2.0, 'fabric': 1.0, 'of': 1.0, 'dry': 1.0, 'for': 1.0, 'love': 1.0, 'when': 1.0, 'mouth': 1.0}
Word element => {'our': 1.0, 'agree': 1.0, 'both': 2.0, 'grandma': 1.0, 'rubber': 1.0, 'off': 1.0, 'that': 1.0, 'babies': 1.0, 'my': 1.0, 'tickle': 1.0, 'have': 1.0, 'small': 1.0, 'so': 1.0, 'are': 4.0, 'it': 1.0, 'skin': 1.0, 'velcro': 1.0, 'rip': 1.0, 'waterproof': 1.0, 'the': 2.0, 'seems': 2.0, 'favorites': 1.0, 'like': 1.0, 'right': 2.0, '15': 1.0, 'a': 1.0, 'bought': 1.0, 'bibs': 1.0, 'material': 1.0, 'fabric': 1.0, 'different': 1.0, 'kinds': 1.0, 'stiff': 1.0, 'great': 1.0, 'nice': 1.0, 'big': 1.0, 'protects': 1.0, 'very': 1.0, 'these': 1.0, 'some': 4.0, 'of': 2.0, 'toes': 1.0, 'is': 4.0, 'this': 1.0, 'soft': 2.0, 'too': 3.0, 'and': 3.0, 'on': 1.0, 'just': 1.0, 'not': 1.0, 'i': 2.0, 'strength': 1.0, 'baby': 1.0, 'backing': 1.0, 'clothes': 1.0}
Word element => {'def': 1.0, 'would': 1.0, 'recommend': 1.0, 'good': 1.0, 'it': 1.0, 'absolutely': 1.0, 'she': 1.0, 'i': 1.0, 's': 1.0, 'got': 1.0, 'loves': 1.0, 'this': 1.0, 'quality': 1.0, 'and': 1.0, 'as': 1.0, 'a': 1.0, 'girlfriend': 1.0, 'gift': 1.0, 'for': 1.0, 'my': 1.0, 'nursery': 1.0}
Word element => {'perfect': 1.0, 'nursery': 1.0, 'for': 1.0, 'color': 1.0, 'cute': 1.0, 'described': 1.0, 'as': 2.0, 'and': 2.0, 'was': 1.0, 'wanted': 1.0, 'just': 1.0, 'our': 1.0, 'were': 1.0, 'great': 1.0, 'the': 5.0, 'on': 1.0, 'extremely': 1.0, 'this': 2.0, 'item': 1.0, 'mobile': 1.0, 'website': 1.0, 'scheme': 1.0, 'same': 1.0, 'colors': 1.0, 'baby': 1.0, 'i': 1.0, 'is': 1.0, 'really': 1.0, '34': 2.0, 'blue': 1.0}
Word element => {'to': 1.0, 'six': 1.0, 'need': 1.0, 'looks': 1.0, 'good': 1.0, 'would': 1.0, 'worth': 1.0, 'review': 1.0, 'complete': 1.0, 'for': 1.0, 'prints': 1.0, 'words': 1.0, 'more': 1.0, 'are': 1.0, 'the': 3.0, 'money': 1.0, 'beautiful': 1.0, 'i': 1.0, 'prduct': 1.0, 'suggest': 1.0}
Word element => {'of': 1.0, 'rest': 1.0, 'with': 1.0, 'room': 1.0, 'boys': 1.0, 'little': 1.0, 'pictures': 1.0, 'set': 1.0, 'shown': 1.0, 'came': 1.0, 'just': 1.0, 'as': 1.0, 'in': 2.0, 'my': 1.0, 'the': 3.0, 'along': 1.0, 'this': 1.0, 'ad': 1.0, 'went': 1.0, 'perfectly': 1.0}
Word element => {'got': 1.0, 'through': 1.0, 'enough': 1.0, 'worm': 1.0, 'and': 3.0, 'out': 1.0, 'couple': 1.0, 'baby': 1.0, 'colors': 1.0, 'keeps': 1.0, 'it': 7.0, 'toddler': 1.0, 'but': 1.0, 'blanket': 1.0, 'like': 1.0, 'soft': 2.0, 'this': 1.0, 'perfect': 1.0, 'cozy': 1.0, 've': 1.0, 'that': 1.0, 'boy': 1.0, 'time': 1.0, 'is': 1.0, 'for': 1.0, 'stays': 1.0, 'take': 1.0, 'the': 2.0, 'girl': 1.0, 'year': 1.0, 'day': 1.0, 'or': 1.0, 'everywhere': 1.0, 's': 2.0, 'a': 3.0, 'we': 3.0, 'go': 1.0, 'because': 1.0, 'not': 1.0, 'just': 1.0, 'small': 2.0, 'to': 1.0, 'your': 1.0, 'washed': 1.0, 'of': 1.0, 'no': 1.0, 'diminish': 1.0, 'i': 1.0}
Word element => {'customer': 1.0, 'made': 1.0, 'looks': 1.0, 'product': 1.0, 'through': 1.0, 'came': 1.0, 'before': 1.0, 'receive': 1.0, 'well': 1.0, 'a': 1.0, 'great': 1.0, 'the': 4.0, 'love': 1.0, 'for': 1.0, 'crib': 2.0, 'could': 2.0, 'seller': 1.0, 'colors': 1.0, 'baby': 1.0, 'ask': 1.0, 'of': 1.0, 'set': 2.0, 'if': 1.0, 'i': 3.0, 'cute': 1.0, 'ordered': 1.0, 'to': 1.0, 'item': 1.0, 'right': 1.0, 'they': 2.0, 'service': 1.0, 'ship': 1.0, 'shower': 2.0, 'this': 2.0, 'it': 1.0, 'and': 1.0, 'away': 1.0, 'called': 1.0, 'so': 1.0}
Word element => {'paying': 1.0, 'dollars': 1.0, 'gone': 1.0, 'have': 1.0, 'guess': 1.0, 'kids': 1.0, 'been': 1.0, 've': 1.0, 'they': 2.0, 'someone': 1.0, 'into': 1.0, 'get': 1.0, 'expensive': 1.0, 'twice': 1.0, 'skip': 1.0, 'different': 1.0, 'getting': 1.0, 'be': 1.0, 'will': 1.0, 'line': 1.0, 'part': 1.0, 'most': 1.0, 'off': 1.0, 'peeling': 1.0, 'through': 1.0, 'handles': 1.0, 'dot': 1.0, 'describe': 1.0, 'plastic': 1.0, 'all': 1.0, 'padded': 1.0, 'useful': 1.0, 'outside': 1.0, 'elastic': 1.0, 'closer': 1.0, 'velcro': 1.0, 'able': 1.0, 'wipe': 1.0, 'piece': 1.0, 'outlining': 1.0, 'just': 2.0, 'strap': 1.0, 'are': 1.0, 'so': 2.0, 'can': 1.0, '2': 1.0, 'but': 4.0, '3': 2.0, 'hop': 1.0, 'tell': 1.0, 'no': 1.0, 'about': 3.0, 'side': 1.0, 'it': 17.0, 'pros': 1.0, 'phone': 1.0, 'don': 1.0, 'shoulder': 1.0, 'list': 1.0, 'con': 1.0, 'kind': 1.0, 'continues': 1.0, 'pro': 1.0, 'stretchy': 1.0, 'said': 1.0, 'counting': 1.0, 'looks': 1.0, 'my': 4.0, 'here': 1.0, 'wanted': 1.0, 's': 10.0, 'bottom': 1.0, 'love': 3.0, 'fabric': 1.0, 'for': 2.0, 't': 3.0, 'fit': 1.0, 'pewter': 1.0, 'know': 1.0, 'found': 1.0, 'lost': 1.0, 'got': 1.0, 'didn': 2.0, 'i': 13.0, 'instinct': 1.0, 'etc': 1.0, 'does': 1.0, 'as': 1.0, 'annoying': 1.0, 'diaper': 4.0, 'great': 3.0, '1': 2.0, 'anyone': 1.0, 'and': 7.0, 'one': 3.0, 'too': 2.0, 'to': 5.0, 'your': 1.0, 'probably': 1.0, 'any': 1.0, 'like': 2.0, 'very': 2.0, 'looked': 2.0, 'although': 1.0, 'padding': 1.0, 'on': 3.0, 'long': 1.0, '20': 1.0, 'because': 1.0, 'that': 3.0, 'much': 1.0, 'put': 1.0, 'changing': 1.0, 'keys': 1.0, 'more': 1.0, 'husband': 1.0, 'stylish': 1.0, 'started': 1.0, 'has': 1.0, 'them': 1.0, 'should': 1.0, 'rip': 2.0, 'now': 1.0, 'cons': 1.0, 'way': 2.0, 'black': 1.0, 'there': 2.0, 'quickly': 1.0, 'only': 1.0, 'inside': 2.0, 'ran': 1.0, 'the': 11.0, 'of': 5.0, 'at': 2.0, 'look': 1.0, 'is': 4.0, 'comes': 1.0, 'not': 2.0, 'looking': 1.0, 'bag': 7.0, 'common': 1.0, 'if': 1.0, 'zippered': 1.0, 'pays': 1.0, 'pocket': 2.0, 'this': 6.0, 'bottle': 2.0, 'insulator': 1.0, 'a': 10.0, 'small': 1.0, 'in': 1.0, 'was': 3.0, 'how': 1.0, 'disappointed': 1.0, 'else': 1.0, 'normal': 1.0, 'everything': 1.0, 'sized': 1.0, 'gets': 1.0, 'complain': 1.0, 'pockets': 2.0, 'with': 5.0, 'basically': 1.0, 'mat': 1.0}
Word element => {'precious': 1.0, 'lil': 1.0, 'your': 1.0, 'a': 2.0, 'tell': 1.0, 'bag': 2.0, 'with': 1.0, 'it': 3.0, 'nice': 1.0, 'i': 1.0, 'or': 1.0, 'traveling': 1.0, 'even': 1.0, 't': 1.0, 'diaper': 1.0, 'one': 1.0, 'for': 1.0, 'luv': 1.0, 's': 2.0, 'just': 1.0, 'not': 1.0, 'its': 1.0, 'to': 2.0, 'size': 1.0, 'can': 1.0, 'right': 1.0, 'big': 1.0, 'small': 1.0}
Word element => {'be': 1.0, 'bib': 1.0, 'mudflap': 1.0, 'so': 1.0, 'car': 1.0, 'family': 1.0, 'new': 1.0, 'safe': 1.0, 'at': 1.0, 'has': 1.0, 'soon': 1.0, 'getting': 1.0, 'and': 3.0, 'huge': 1.0, 'baby': 3.0, 'my': 3.0, 'the': 1.0, 'more': 1.0, 't': 1.0, 'them': 1.0, 'this': 3.0, 'sister': 2.0, 'perfect': 1.0, 'having': 1.0, 'in': 2.0, 'for': 1.0, 'one': 1.0, 'love': 1.0, 'looking': 1.0, 'can': 1.0, 'wait': 1.0, 'vw': 3.0, 'i': 3.0, 'to': 2.0, 'law': 1.0, 'a': 4.0, 'see': 1.0, 'going': 1.0, 'm': 1.0, 'is': 3.0, 'fan': 1.0, 'as': 1.0, 'brother': 1.0}
Word element => {'money': 1.0, 'worth': 1.0, 'reason': 1.0, 'in': 1.0, 'seems': 1.0, 'move': 1.0, 'did': 1.0, 'even': 1.0, 'long': 1.0, 'this': 1.0, 'only': 1.0, 'it': 2.0, 'thing': 1.0, 'have': 1.0, 'around': 1.0, 'is': 2.0, 'awesome': 1.0, '5': 1.0, 'the': 6.0, 'helps': 1.0, 'my': 1.0, 'high': 1.0, 'position': 1.0, 'back': 1.0, 'baby': 1.0, 'quality': 1.0, 'takes': 1.0, 'of': 2.0, 'off': 1.0, 'strain': 1.0, 'i': 3.0, 'because': 1.0, 'not': 2.0, 'give': 1.0, 'stars': 1.0, 'you': 1.0, 'when': 1.0, 'am': 1.0, 'unaware': 1.0, 'durability': 1.0, 'materials': 1.0, 'keep': 1.0, 'since': 1.0, 'correct': 1.0, 'had': 1.0, 'to': 1.0, 'be': 1.0, 'made': 1.0, 'though': 1.0}
Word element => {'quickly': 1.0, 'that': 1.0, 'size': 1.0, 'small': 1.0, 'pound': 1.0, 'having': 1.0, '7': 1.0, 'even': 1.0, 'me': 1.0, 'for': 1.0, 'heavy': 1.0, 'also': 2.0, 'baby': 2.0, 'my': 2.0, 'rolled': 1.0, 'should': 1.0, 'around': 1.0, 'is': 1.0, 'bought': 2.0, 'be': 1.0, 'from': 1.0, 'and': 1.0, 'there': 1.0, 'incredible': 1.0, 'being': 1.0, 'this': 1.0, 'she': 3.0, 'it': 6.0, 'pounds': 1.0, 'i': 4.0, 'thinking': 1.0, 'works': 1.0, 'her': 1.0, 'hated': 1.0, 'handy': 1.0, 'point': 1.0, 'can': 1.0, 'but': 2.0, 'pregnant': 1.0, 'was': 3.0, '12': 1.0, 'screamed': 1.0, 'had': 1.0, 'as': 1.0, 'to': 1.0, 'would': 1.0, 'at': 1.0, 'moot': 1.0, 'squashed': 1.0, 'outgrow': 1.0, 'in': 2.0, 'breast': 1.0, 'bit': 1.0, 'so': 1.0, 'hold': 1.0, 'anyway': 1.0, 'making': 1.0, 'hands': 1.0, 'the': 2.0, 'now': 1.0, 'away': 1.0, 'free': 1.0, 'you': 1.0, 'when': 2.0, 'idea': 1.0, 't': 1.0, 'a': 3.0, 'imagine': 1.0, 'of': 1.0}
Word element => {'boys': 1.0, 'also': 1.0, 'good': 1.0, 'works': 1.0, 'it': 1.0, 'make': 1.0, 'the': 2.0, 'is': 1.0, 'lego': 1.0, 'chart': 1.0, 'duplo': 1.0, 'baby': 1.0, 'happy': 1.0, 'nice': 1.0, 'and': 1.0, 'growth': 1.0, 'use': 1.0, 'easy': 1.0, 'an': 1.0, 'to': 1.0}
Word element => {'comprimising': 1.0, 'out': 1.0, 'adhesive': 1.0, 'with': 1.0, 'is': 1.0, 'mistake': 1.0, 'slight': 1.0, 'a': 1.0, 'if': 1.0, 'and': 1.0, 'buy': 1.0, 'for': 1.0, 'fix': 1.0, 'made': 1.0, 'the': 2.0, 'great': 1.0, 'money': 1.0, 'easy': 1.0, 'to': 1.0, 'put': 1.0, 'together': 1.0}
Word element => {'or': 1.0, 'remove': 1.0, 'reposition': 1.0, 'you': 1.0, 'mess': 1.0, 't': 1.0, 'doesn': 1.0, 'need': 1.0, 'up': 1.0, 'and': 1.0, 'addition': 1.0, 'in': 1.0, 'to': 4.0, 'use': 1.0, 'easy': 1.0, 'the': 3.0, 'nursery': 1.0, 'it': 1.0, 'great': 1.0, 'walls': 1.0, 'without': 1.0, 'having': 1.0, 'paint': 2.0}
Word element => {'brands': 1.0, 'off': 1.0, 'come': 1.0, 'to': 1.0, 'other': 1.0, 't': 1.0, 'like': 1.0, 'and': 1.0, 'can': 1.0, 'love': 1.0, 'haven': 1.0, 'they': 1.0, 'these': 1.0, 'stay': 1.0, 'decals': 1.0, 'tried': 1.0, 'my': 1.0, 'in': 1.0, 'daughter': 1.0, 'well': 1.0, 's': 1.0, 'room': 1.0, 'on': 1.0}
Word element => {'factor': 1.0, 'for': 1.0, 'product': 1.0, 'have': 2.0, 'star': 1.0, 'right': 1.0, 'animal': 2.0, 'had': 2.0, 'forest': 1.0, 'and': 5.0, 'moved': 1.0, 'adhesive': 1.0, 'getting': 1.0, 'didn': 1.0, 'picture': 1.0, 'little': 1.0, 'very': 1.0, 'on': 3.0, 'sure': 1.0, 'deer': 1.0, 'out': 1.0, 'a': 2.0, 't': 1.0, 'set': 7.0, 'both': 2.0, 'as': 2.0, 'any': 1.0, 'to': 8.0, 'this': 3.0, 'animals': 2.0, 'problem': 1.0, 'others': 1.0, 'these': 1.0, 'some': 2.0, 'bought': 1.0, 'entire': 1.0, 'one': 1.0, 'branches': 1.0, 'easy': 2.0, 'however': 1.0, 'well': 2.0, 'woodland': 3.0, 'i': 8.0, 'cuteness': 2.0, 'are': 2.0, 'cute': 1.0, 'in': 4.0, 'm': 1.0, 'tree': 4.0, 'liked': 1.0, 'although': 1.0, 'follow': 1.0, 'up': 2.0, 'over': 1.0, 'freedom': 1.0, 'there': 1.0, 'rather': 2.0, 'of': 2.0, 'the': 17.0, 'place': 1.0, 'completely': 1.0, 'around': 2.0, 'look': 2.0, 'is': 1.0, 'where': 1.0, 'everything': 1.0, 'you': 1.0, 'put': 1.0, 'match': 1.0, 'do': 2.0, 'works': 1.0, 'that': 1.0, 'butterflies': 1.0, 'with': 2.0, 'sets': 3.0, 'it': 1.0, 'looking': 1.0, 'great': 1.0, 'use': 1.0, 'smaller': 2.0, 'fox': 1.0, 'giant': 2.0, 'ground': 1.0, 'difficulty': 1.0, 'than': 3.0, 'flowers': 1.0, 'birds': 1.0, 'wall': 2.0, 'no': 1.0, 'directly': 1.0, 'sticking': 1.0, 'will': 1.0, 'not': 2.0, 'still': 1.0, 'stay': 1.0, 'placed': 1.0, 'why': 1.0, 'would': 1.0, 'stays': 1.0, 'be': 1.0, 'different': 1.0, 'other': 1.0, '5': 1.0}
Word element => {'pieces': 1.0, 'into': 1.0, 'floor': 1.0, 'on': 1.0, 'son': 1.0, 'husband': 1.0, 'was': 3.0, 'as': 3.0, 'to': 2.0, 'more': 1.0, 'my': 2.0, 'helpful': 1.0, 'reviews': 1.0, 'again': 1.0, 'sizes': 1.0, 'fell': 1.0, 'it': 7.0, 'found': 1.0, 'this': 1.0, 'excited': 1.0, 'with': 1.0, 'only': 1.0, 'product': 1.0, 'portion': 1.0, 'really': 1.0, 'noticed': 1.0, 'liked': 1.0, 'meals': 1.0, 'the': 3.0, 'careful': 1.0, 'however': 1.0, 'order': 1.0, 'a': 2.0, 'since': 1.0, 'results': 1.0, 'giving': 1.0, 'be': 1.0, 'trying': 1.0, 'lasted': 1.0, 'because': 1.0, 'not': 1.0, 'two': 1.0, 'i': 5.0, 'stated': 1.0, 'broke': 2.0, 'get': 1.0, 'easy': 1.0, 'balanced': 1.0, 'would': 1.0, 'few': 1.0, 'days': 1.0, 'and': 3.0, 'soon': 1.0}
Word element => {'group': 1.0, 'age': 1.0, 'getting': 1.0, 'are': 1.0, 'was': 1.0, 'any': 1.0, 'to': 2.0, 'some': 1.0, 'too': 2.0, 'he': 2.0, 'eating': 1.0, 'this': 1.0, 'first': 1.0, 'recipes': 1.0, 'way': 1.0, 'bought': 1.0, 'portion': 1.0, 'variety': 1.0, 'start': 1.0, 'my': 1.0, 'birthday': 1.0, 'meals': 2.0, 'plate': 1.0, 'so': 1.0, 'everything': 1.0, 'i': 1.0, 'cookbook': 1.0, 'set': 1.0, 'of': 2.0, 'for': 2.0, 'gets': 1.0, 'son': 1.0, 'since': 1.0, 'going': 1.0, 's': 1.0, 'a': 3.0, 'more': 1.0, 'is': 1.0, 'his': 1.0, 'little': 2.0, 'the': 2.0, 'without': 1.0, 'much': 1.0, 'or': 1.0, 'has': 1.0, 'great': 1.0, 'nice': 1.0, 'that': 1.0, 'real': 1.0, 'tasty': 1.0}
Word element => {'com': 1.0, 'experience': 1.0, 'transaction': 1.0, 'dieters': 1.0, 'recommend': 1.0, 'highly': 1.0, 'purchased': 1.0, 'i': 3.0, 'what': 1.0, 'paying': 1.0, 'parents': 1.0, 'for': 3.0, 'am': 1.0, 'great': 2.0, 'control': 1.0, 'amazon': 1.0, 'is': 2.0, 'to': 1.0, 'colorful': 1.0, 'plate': 1.0, 'dieting': 1.0, 'and': 4.0, 'attention': 1.0, 'a': 2.0, 'healthy': 1.0, 'portion': 1.0, 'with': 1.0, 'it': 3.0, 'this': 1.0, 'eating': 1.0, 'informative': 1.0, 'alike': 1.0, 'lifestyle': 1.0}
Word element => {'frsh': 1.0, 'recommend': 1.0, 'favorite': 1.0, 's': 1.0, 'is': 1.0, 'dishwasher': 1.0, 'well': 1.0, 'of': 1.0, 'up': 1.0, 'our': 1.0, 'the': 2.0, '20mos': 1.0, 'son': 3.0, 'in': 2.0, 'and': 1.0, 'plate': 1.0, 'plates': 1.0, 'one': 1.0, 'for': 2.0, 'love': 1.0, 'with': 1.0, 'this': 1.0, 'it': 2.0, 'to': 1.0, 'being': 1.0, 'place': 1.0, 'baby': 1.0, 'highly': 1.0, 'portions': 1.0, 'products': 1.0, 'old': 1.0, 'i': 2.0, 'aids': 1.0, 'us': 1.0, 'able': 1.0, 'my': 2.0, 'nutrition': 1.0, 'proper': 1.0, 'holds': 1.0, 'good': 1.0}
Word element => {'gift': 1.0, 'useful': 1.0, 'unusual': 1.0, 'idea': 1.0, 'very': 2.0, 'beautiful': 1.0, 'baby': 1.0, 'colors': 1.0, 'wonderful': 1.0, 'balanced': 1.0, 'made': 1.0, 'are': 1.0, 'the': 1.0, 'is': 1.0, 'and': 1.0, 'plate': 1.0, 'it': 1.0, 'this': 1.0, 'vibrant': 1.0, 'makes': 1.0, 'well': 1.0, 'a': 1.0, 'subtle': 1.0, 'healthy': 1.0, 'an': 1.0, 'but': 1.0, 'statement': 1.0, 'clear': 1.0, 'yet': 1.0, 'for': 2.0, 'meals': 1.0}
Word element => {'little': 1.0, 'of': 1.0, 'out': 1.0, 'have': 1.0, 'slipping': 1.0, 'also': 1.0, 'say': 1.0, 'what': 1.0, 'so': 1.0, 'cold': 1.0, 'getting': 1.0, 'kids': 1.0, 'keep': 2.0, 'do': 3.0, 'she': 1.0, 'bottles': 2.0, 'down': 1.0, 'online': 1.0, 'slippery': 1.0, 'even': 1.0, 'went': 1.0, 'over': 1.0, 'task': 1.0, 'hands': 2.0, 'the': 5.0, 'these': 1.0, 'finally': 1.0, 'texture': 1.0, 'i': 1.0, 'attractive': 1.0, 'really': 1.0, 'was': 1.0, 'get': 2.0, 'and': 3.0, 'to': 6.0, 'our': 3.0, 'that': 1.0, 'you': 1.0, 'soap': 2.0, 'need': 1.0, 'information': 1.0, 'on': 2.0, 'make': 1.0, 'turned': 1.0, 'included': 1.0, 'by': 1.0, 'babysitter': 1.0, 'using': 2.0, 'dish': 2.0, 'them': 1.0, 'there': 2.0, 'no': 1.0, 'sleeves': 2.0, 'helpful': 1.0, 'are': 2.0, 'with': 1.0, 'from': 2.0, 'solution': 1.0, 'tracked': 1.0, 'hard': 1.0, 'struggled': 1.0, 'product': 1.0, 'still': 1.0, 'use': 1.0, 'they': 5.0}
Word element => {'about': 1.0, 'forget': 1.0, 'fit': 1.0, 'tight': 1.0, 'i': 1.0, 'pulling': 1.0, 'patience': 1.0, 'on': 1.0, 'slow': 1.0, 'to': 2.0, 'is': 1.0, 'from': 3.0, 'liquid': 1.0, 'get': 1.0, 'and': 2.0, 'temperature': 1.0, 's': 1.0, 'has': 1.0, 'slipping': 2.0, 'your': 1.0, 'the': 4.0, 'taking': 1.0, 'prevented': 1.0, 'paid': 1.0, 'transferring': 1.0, 'cold': 1.0, 'keeps': 1.0, 'of': 1.0, 'though': 1.0, 'sleeve': 1.0, 'think': 1.0, 'off': 3.0, 'into': 1.0, 'clean': 1.0, 'child': 1.0, 'hands': 1.0, 'this': 1.0, 'it': 3.0, 'but': 2.0, 'trouble': 1.0, 'a': 1.0, 'bottle': 1.0, 'little': 1.0}
Word element => {'bottles': 1.0, 'metal': 1.0, 'pura': 1.0, 'beverages': 1.0, 'cool': 1.0, 'or': 1.0, 'warm': 1.0, 'protected': 1.0, 'ones': 1.0, 'your': 2.0, 'hand': 1.0, 'keep': 1.0, 'on': 1.0, 'is': 1.0, 'to': 2.0, 'once': 1.0, 'a': 1.0, 'friendly': 1.0, 'totally': 1.0, 'little': 2.0, 'user': 1.0, 'get': 1.0, 'and': 1.0, 'from': 1.0, 'adorable': 1.0, 'very': 1.0, 'as': 1.0, 'need': 1.0, 'but': 1.0, 'difficult': 1.0, 'just': 1.0, 'you': 1.0, 'that': 1.0, 'have': 1.0, 'conquered': 1.0, 'function': 1.0, 'it': 3.0}
Word element => {'fits': 1.0, 'but': 1.0, 'on': 1.0, 'and': 1.0, 'get': 1.0, 's': 2.0, 'that': 2.0, 'is': 1.0, 'like': 1.0, 'thing': 2.0, 'water': 1.0, 'glad': 1.0, 'for': 1.0, 'we': 1.0, 'to': 1.0, 'dropped': 1.0, 'didn': 1.0, 'bottle': 1.0, 'snug': 1.0, 'i': 3.0, 'does': 1.0, 'purchased': 1.0, 'too': 1.0, 'when': 1.0, 'm': 1.0, 'sleeve': 1.0, 't': 1.0, 'the': 3.0, 'great': 1.0, 'steel': 1.0, 'since': 1.0, 'a': 2.0, 'good': 1.0, 'think': 1.0, 'job': 1.0, 'of': 1.0, 'nice': 1.0, 'protecting': 1.0, 'stainless': 1.0, 'hard': 1.0, 'this': 1.0, 'it': 3.0, 'only': 1.0}
Word element => {'held': 1.0, 'has': 1.0, 'water': 1.0, 'up': 1.0, 'of': 1.0, 'cup': 2.0, 'drop': 1.0, 'sleeve': 1.0, 'fit': 1.0, 'as': 1.0, 'works': 1.0, 'it': 1.0, 'often': 1.0, 'using': 1.0, 'well': 1.0, 'a': 1.0, 'onto': 1.0, 'product': 1.0, 'to': 1.0, 'don': 1.0, 'helps': 1.0, 't': 1.0, 'the': 4.0, 'we': 1.0, 'intended': 1.0, 'use': 1.0, 'but': 1.0}
Word element => {'struggle': 1.0, 'but': 1.0, 'on': 1.0, 's': 1.0, 'holds': 1.0, 'drinks': 1.0, 'cold': 2.0, 'pura': 1.0, 'for': 1.0, 'dents': 1.0, 'have': 1.0, 'when': 2.0, 'the': 4.0, 'helps': 1.0, 'well': 1.0, 'a': 2.0, 'worth': 1.0, 'protect': 1.0, 'is': 1.0, 'hard': 1.0, 'this': 1.0, 'it': 2.0, 'sleeve': 1.0, 'to': 1.0, 'dropped': 1.0, 'get': 1.0, 'getting': 1.0, 'and': 1.0, 'also': 1.0, 'must': 1.0, 'from': 2.0, 'protects': 1.0, 'bottle': 3.0, 'little': 2.0, 'hands': 1.0}
Word element => {'helps': 1.0, 'that': 1.0, 'you': 1.0, 'long': 1.0, 'dry': 1.0, 'water': 2.0, 'warm': 1.0, 'rinse': 1.0, 'bit': 2.0, 'bottle': 1.0, 'onto': 1.0, 'then': 1.0, 'sleeve': 2.0, 'inside': 1.0, 'the': 7.0, '2': 1.0, 'work': 1.0, 'bottles': 1.0, 'sleeves': 1.0, 'paper': 1.0, 'add': 1.0, 'kiki': 1.0, 'insulation': 1.0, 'fit': 1.0, 'for': 2.0, 'reviewer': 2.0, 'directions': 1.0, 'posted': 1.0, 'i': 4.0, 'they': 3.0, 'counter': 1.0, 'it': 1.0, 'thoroughly': 1.0, 'like': 1.0, 'simple': 1.0, 'need': 1.0, 'as': 3.0, 'our': 1.0, 'to': 2.0, 'spread': 1.0, 'what': 1.0, 'liquid': 1.0, 'have': 1.0, 'other': 2.0, 'too': 1.0, 'tall': 1.0, 'and': 3.0, 'do': 1.0, 'slide': 2.0, 'printed': 1.0, 'right': 2.0, 'with': 2.0, 'piece': 1.0, 'on': 3.0, 'think': 1.0, 'missed': 1.0, 'very': 1.0, 'little': 1.0, 'of': 4.0, 'great': 1.0, 'feel': 1.0, 'install': 1.0, 'drop': 1.0, 'pea': 1.0, 'sized': 1.0, 'a': 2.0, 'dish': 1.0, 'soap': 2.0}
Word element => {'during': 1.0, 'hot': 1.0, 'bottles': 1.0, 'if': 1.0, 'you': 2.0, 'the': 3.0, 'bottle': 1.0, 'a': 1.0, 'cleaning': 1.0, 'really': 1.0, 'then': 1.0, 'sleeve': 2.0, 'must': 1.0, 'purchase': 1.0, 'get': 2.0, 'without': 1.0}
Word element => {'stay': 1.0, 'addition': 1.0, 'really': 1.0, 'nice': 1.0, 'happy': 1.0, 'a': 1.0, 'warm': 1.0, 'sleeve': 1.0, 's': 1.0, 'sometimes': 1.0, 'cold': 1.0, 'this': 2.0, 'with': 1.0, 'it': 1.0, 'i': 1.0, 'was': 1.0, 'to': 1.0, 'the': 2.0, 'helps': 1.0, 'pura': 2.0, 'get': 1.0, 'and': 1.0, 'little': 1.0, 'bottles': 2.0, 'hands': 1.0}
Word element => {'lot': 1.0, 'better': 1.0, 'should': 1.0, 'they': 1.0, 'what': 1.0, 'get': 2.0, 'accessories': 1.0, 'up': 1.0, 'of': 2.0, 'that': 1.0, 'now': 1.0, 'this': 3.0, 'with': 1.0, 'it': 6.0, 'hard': 1.0, 'sleeve': 2.0, 'its': 1.0, 'much': 1.0, 'worse': 1.0, 'way': 2.0, 'completely': 1.0, 'is': 2.0, 'even': 1.0, 'didn': 1.0, 'and': 3.0, 'too': 1.0, 'reach': 1.0, 'the': 6.0, 'a': 1.0, 'go': 1.0, 's': 4.0, 't': 1.0, 'small': 1.0, 'bottle': 3.0, 'so': 1.0, 'work': 1.0, 'most': 1.0, 'took': 1.0, 'then': 1.0, 'supposed': 1.0, 'for': 2.0, 'top': 1.0, 'on': 1.0, 'ridiculously': 1.0, 'forever': 1.0, 'off': 1.0, 'washing': 1.0, 'separately': 1.0, 'out': 1.0, 'than': 1.0, 'question': 1.0, 'to': 3.0, 'as': 2.0, 'cost': 1.0}
Word element => {'working': 1.0, '5': 1.0, '14': 1.0, 'my': 1.0, 'love': 1.0, 'this': 1.0, 'it': 1.0, 'bottle': 1.0, 'highly': 1.0, 'years': 1.0, 'i': 1.0, 'old': 1.0, 'to': 1.0, 'girls': 1.0, 'recommend': 1.0, 'easy': 1.0, 'use': 1.0, 'far': 1.0, 'so': 1.0, 'problem': 1.0, 'there': 1.0, 'is': 1.0, 'not': 1.0, 'well': 1.0, 'a': 1.0}
Word element => {'with': 1.0, 'll': 1.0, 'her': 1.0, 'at': 1.0, 'look': 1.0, 'using': 1.0, 'on': 1.0, 'plan': 1.0, 'granddaughter': 1.0, 'do': 1.0, 'of': 1.0, 'out': 1.0, 'for': 2.0, 'lamb': 1.0, 'daughter': 1.0, 'i': 5.0, 'tie': 1.0, 'off': 1.0, 'loop': 2.0, 'in': 2.0, 'was': 6.0, 'mary': 1.0, 'believes': 1.0, 'had': 2.0, 'able': 2.0, 'snapped': 1.0, 'broken': 1.0, 'hanging': 1.0, 'the': 9.0, 'mobile': 3.0, 'stick': 1.0, 'from': 2.0, 'looked': 1.0, 'she': 1.0, 'it': 6.0, 'tune': 2.0, 'zip': 1.0, 'soother': 1.0, 'just': 2.0, 'says': 1.0, 'pictured': 1.0, 'to': 4.0, 'as': 2.0, 'little': 1.0, 'very': 2.0, 'and': 2.0, 'crib': 2.0, 'worst': 1.0, 'bright': 1.0, 'we': 2.0, 's': 2.0, 't': 1.0, 'a': 4.0, 'see': 1.0, 'package': 1.0, 'cute': 2.0, 'another': 1.0, 'my': 2.0, 'save': 1.0, 'song': 1.0, 'but': 1.0, 'music': 3.0, 'use': 1.0, 'then': 1.0, 'not': 1.0, 'heard': 1.0, 'construct': 1.0, 'something': 1.0, 'new': 1.0, 'glad': 1.0, 'wound': 1.0, 'box': 1.0, 'that': 5.0, 'action': 1.0, 'even': 1.0, 'don': 1.0, 'ever': 1.0, 'recognize': 1.0}
Word element => {'so': 1.0, 'toybox': 1.0, 'she': 1.0, 'up': 1.0, 'how': 1.0, 'not': 1.0, 'did': 1.0, 'old': 2.0, 'many': 1.0, 's': 1.0, 'mommy': 1.0, 'daughter': 1.0, 'for': 1.0, 'her': 1.0, 'cute': 1.0, 'to': 1.0, 'grand': 1.0, 'the': 2.0, 'replace': 1.0, 't': 1.0, 'my': 1.0, 'knows': 1.0, 'nearly': 1.0, 'childhood': 1.0, 'bought': 1.0, 'broke': 1.0, 'toy': 2.0, 'wooden': 1.0, 'box': 2.0, 'this': 1.0, 'it': 2.0, 'will': 1.0, 'but': 1.0, 'doesn': 1.0, 'who': 1.0, 'sure': 1.0, 'toys': 1.0, 'hold': 2.0, 'as': 2.0}
Word element => {'baby': 1.0, 'soft': 2.0, 'and': 1.0, 'very': 2.0, 'is': 1.0, 'son': 1.0, 'adorable': 1.0, 'cannot': 1.0, 'grip': 1.0, 'this': 1.0, 'the': 1.0, 'my': 1.0, 'yet': 1.0, 'not': 1.0, 'was': 1.0, 'alarming': 1.0, 'rattles': 1.0, 'i': 1.0, 'but': 1.0, 'thought': 1.0, 'it': 2.0}
Word element => {'baby': 1.0, 'bother': 1.0, 'seem': 1.0, 'doesn': 1.0, 'round': 1.0, 'animal': 1.0, 'stuffed': 1.0, 'in': 1.0, 'weight': 1.0, 'for': 1.0, 'one': 1.0, 'with': 1.0, 'pink': 1.0, 't': 1.0, 'a': 4.0, 'out': 1.0, 'though': 1.0, 'jungle': 1.0, 'have': 2.0, 'sit': 2.0, 'implies': 1.0, 'old': 1.0, 'i': 2.0, 'show': 1.0, 'grandbaby': 1.0, 'my': 1.0, 'the': 4.0, 'simply': 1.0, 'so': 1.0, 'pig': 3.0, 'however': 1.0, 'on': 1.0, 'her': 1.0, 'find': 1.0, 'does': 2.0, 'this': 2.0, 'she': 1.0, 'month': 1.0, 'it': 4.0, 'is': 2.0, 'just': 1.0, 'not': 2.0, 'right': 1.0, 'junction': 1.0, 'but': 1.0, 'will': 1.0, 'bottom': 3.0, '8': 1.0, 'complaint': 1.0, 'tv': 1.0, 'loves': 2.0, 'that': 1.0, 'has': 1.0, 'set': 1.0, 'upright': 2.0, 'weighted': 1.0, 'similar': 1.0, 'description': 1.0, 'and': 2.0, 'to': 2.0, 'any': 1.0}
Word element => {'wider': 1.0, 'if': 1.0, 'extenders': 1.0, '34': 1.0, 'a': 1.0, 'misses': 1.0, 'almost': 1.0, 'stay': 1.0, 'around': 1.0, '32': 1.0, 'the': 1.0, 'love': 1.0, 'for': 3.0, 'one': 1.0, 'feature': 1.0, 'when': 1.0, 'buy': 1.0, 'i': 2.0, 'open': 2.0, 'opening': 2.0, 'can': 1.0, 'looking': 1.0, 'only': 1.0, 'this': 1.0, 'with': 1.0, 'is': 3.0, 'install': 1.0, 'exactly': 1.0, 'easy': 1.0, 'baby': 1.0, 'not': 1.0, 'had': 1.0, 'to': 1.0, 'was': 1.0, 'what': 1.0}
Word element => {'it': 1.0, 'assemble': 1.0, 'i': 2.0, 'to': 2.0, 'product': 1.0, 'using': 1.0, 'use': 1.0, 'easy': 1.0, 'safe': 1.0, 'recomended': 1.0, 'nice': 1.0, 'm': 1.0, 'stairs': 1.0, 'that': 1.0, 'for': 1.0, 'very': 1.0, 'and': 2.0, 'up': 1.0}
Word element => {'gift': 1.0, 'other': 1.0, 'it': 1.0, 'great': 1.0, 'blanket': 1.0, 'cute': 1.0, 'soft': 1.0, 'well': 1.0, 'shower': 1.0, 'small': 1.0, 'made': 2.0, 'items': 1.0, 'and': 1.0, 'combined': 1.0, 'with': 1.0, 'a': 2.0, 'little': 1.0, 'few': 1.0}
Word element => {'gathering': 1.0, 'ankle': 1.0, 'of': 1.0, 'because': 1.0, 'off': 1.0, 'fall': 1.0, 'never': 1.0, 'son': 1.0, 'is': 1.0, 'room': 1.0, 'so': 1.0, 'my': 1.0, 'and': 2.0, 's': 1.0, 'months': 1.0, 'fit': 1.0, 'does': 1.0, 'love': 1.0, 'he': 2.0, 'has': 1.0, 'some': 1.0, 'slippers': 1.0, '7': 1.0, 'old': 1.0, 'to': 1.0, 'grow': 1.0, 'the': 3.0, 'these': 1.0, 'great': 1.0, 'booties': 1.0}
Word element => {'any': 1.0, 'have': 1.0, 't': 1.0, 'don': 1.0, 'worked': 1.0, 'broke': 1.0, 'idea': 1.0, 'words': 1.0, 'more': 1.0, 'the': 1.0, 'first': 1.0, 'time': 1.0, 'required': 1.0, 'had': 1.0, 'we': 1.0, 'used': 1.0, 'seven': 1.0, 'great': 1.0, 'it': 2.0, 'if': 1.0}
Word element => {'celcius': 1.0, 'switch': 1.0, 'possible': 1.0, 's': 1.0, 'not': 2.0, 'correct': 1.0, 'the': 2.0, 'it': 1.0, 'can': 1.0, 'but': 1.0, 'see': 1.0, 'you': 1.0, '29': 1.0, 'centigrade': 1.0, 'picture': 2.0, 'to': 2.0, 'degrees': 1.0, 'is': 1.0, 'on': 1.0}
Word element => {'again': 1.0, 'buy': 1.0, 'would': 1.0, 'far': 1.0, 'on': 1.0, 'stay': 1.0, 'to': 1.0, 'fit': 1.0, 'are': 1.0, 'so': 2.0, 'these': 1.0, 'pretty': 1.0, 'soft': 1.0, 'cute': 1.0, 'and': 2.0, 'super': 1.0, 'well': 1.0, 'seem': 1.0}
Word element => {'bottoms': 1.0, 'the': 2.0, 'stuff': 1.0, 'and': 1.0, 'skid': 1.0, 'anti': 1.0, 's': 1.0, 'super': 2.0, 'on': 3.0, 'huge': 1.0, 'baby': 1.0, 'my': 2.0, 'are': 2.0, 'inside': 1.0, 'but': 1.0, 'warm': 1.0, 'they': 4.0, 'were': 1.0, 'that': 1.0, 'i': 1.0, 'than': 1.0, 'wish': 1.0, 'had': 1.0, 'a': 1.0, 'soft': 1.0, '3': 1.0, '6': 1.0, 'feet': 1.0, 'size': 1.0, 'other': 1.0, 'have': 1.0}
Word element => {}
Word element => {'for': 1.0, 'makes': 1.0, 'ribbon': 1.0, 'chain': 1.0, 'a': 2.0, 'mobility': 1.0, 'like': 1.0, 'i': 1.0, 'through': 1.0, 'would': 1.0, 'not': 1.0, 'because': 1.0, 'baby': 1.0, 'doesn': 1.0, 'also': 1.0, 'perfect': 1.0, 'my': 1.0, 'are': 1.0, 'hook': 1.0, 'pacifiers': 1.0, 'loop': 2.0, 'rings': 1.0, 'that': 3.0, 'is': 2.0, 'this': 1.0, 'with': 1.0, 'more': 1.0, 'the': 6.0, 't': 1.0, 'likes': 1.0, 'have': 1.0, 'hinged': 1.0, 'where': 1.0, 'and': 1.0, 'market': 1.0, 'paci': 1.0, 'on': 1.0, 'clips': 1.0, 'silicone': 1.0}
Word element => {'face': 1.0, 's': 1.0, 'baby': 1.0, 'pacifiers': 1.0, 'construction': 1.0, 'press': 1.0, 'not': 1.0, 'work': 1.0, 'would': 1.0, 'does': 1.0, 'fine': 1.0, 'into': 1.0, 'of': 1.0, 'to': 1.0, 'seems': 1.0, 'however': 1.0, 'our': 1.0, 'that': 1.0, 'have': 1.0, 'it': 1.0, 'this': 1.0, 'with': 1.0, 'the': 2.0, 'we': 1.0, 'be': 1.0, 'connecting': 1.0, 'link': 1.0}
Word element => {'lanyard': 1.0, 'work': 1.0, 'doesn': 1.0, 'that': 1.0, 'complaint': 1.0, 'cute': 1.0, 'wash': 1.0, 'easy': 1.0, 'to': 1.0, 'only': 1.0, 'and': 1.0, 'small': 1.0, 'my': 1.0, 't': 1.0, 'loves': 1.0, 'pacifiers': 1.0, 'it': 2.0, 'daughter': 1.0, 'playing': 1.0, 'holes': 1.0, 'is': 1.0, 'with': 3.0}
Word element => {'pleased': 1.0, 'am': 1.0, 'room': 1.0, 's': 1.0, 'very': 1.0, 'son': 1.0, 'my': 1.0, 'in': 1.0, 'stacker': 1.0, 'the': 1.0, 'diaper': 1.0, 'look': 1.0, 'had': 1.0, 'that': 2.0, '34': 2.0, 'a': 1.0, 'everywhere': 1.0, 'would': 1.0, 'searched': 1.0, 'i': 4.0, 'found': 1.0, 'for': 1.0, 'one': 1.0, 'good': 2.0, 'cars': 2.0, 'and': 1.0, 'with': 3.0, 'this': 1.0, 'it': 2.0, 'stuff': 1.0, 'really': 1.0, 'looks': 1.0, 'have': 1.0, 'all': 1.0}
Word element => {'members': 1.0, 'becomes': 1.0, 'and': 1.0, 'faces': 1.0, 'familiar': 1.0, 'baby': 1.0, 'the': 2.0, 'far': 1.0, 'a': 1.0, 'that': 1.0, 'loves': 1.0, 'this': 1.0, 'wonderful': 1.0, 'toy': 1.0, 'gift': 1.0, 'for': 1.0, 'babies': 1.0, 'is': 2.0, 'with': 2.0, 'away': 1.0, 'family': 2.0}
Word element => {'system': 1.0, 'latch': 1.0, 'even': 1.0, 'strap': 1.0, 'attach': 1.0, 'super': 1.0, 'their': 1.0, 'don': 1.0, 'child': 1.0, 'need': 1.0, 'bag': 1.0, 'seconds': 1.0, 'in': 2.0, 'is': 3.0, 'easier': 1.0, 'so': 1.0, 'harder': 1.0, 'makes': 1.0, 'absolute': 1.0, 'carry': 2.0, 'quick': 1.0, 'with': 4.0, 'remove': 1.0, 'it': 2.0, 'toddler': 1.0, 'own': 1.0, 'an': 1.0, 'gear': 1.0, 'much': 1.0, 'product': 2.0, 'travel': 1.0, 'traveling': 1.0, 'you': 3.0, 'trying': 1.0, 'if': 1.0, 'and': 4.0, 'easy': 1.0, 'lifesaver': 1.0, 'get': 1.0, 'this': 3.0, 'kids': 2.0, 'life': 1.0, 'just': 1.0, 'by': 1.0, 'of': 1.0, 'your': 3.0, 'on': 2.0, 'make': 1.0, 'car': 4.0, 'why': 1.0, 'seat': 4.0, 'any': 1.0, 'to': 2.0, 'all': 1.0, 'the': 3.0, 'stressful': 1.0, 'these': 1.0, 'luggage': 1.0, 'one': 1.0, 'nifty': 1.0, 'straps': 1.0, 'enough': 1.0, 'off': 1.0, 't': 1.0, 'a': 2.0, 'go': 1.0}
Word element => {'ways': 1.0, 'thread': 1.0, 'ha': 1.0, 'use': 1.0, 'but': 1.0, 'attention': 1.0, 'way': 1.0, 'i': 2.0, 'both': 1.0, 'carseat': 1.0, 're': 1.0, 'my': 2.0, 'one': 1.0, 'for': 1.0, 'in': 1.0, 'well': 1.0, 'carry': 1.0, 'to': 2.0, 'goes': 1.0, 'younger': 1.0, 'worked': 1.0, 'son': 1.0, 'wouldn': 1.0, 'it': 2.0, 'only': 1.0, 'so': 1.0, 't': 1.0, 'dot': 1.0, 'pay': 1.0}
Word element => {'product': 1.0, 'recommend': 1.0, 'highly': 1.0, 'airport': 1.0, 'keep': 1.0, 'at': 1.0, 'check': 1.0, 'line': 1.0, 'in': 3.0, 'waited': 1.0, 'them': 2.0, 'they': 1.0, 'more': 1.0, 'worked': 1.0, 'of': 1.0, 'plus': 1.0, 'one': 1.0, 'bought': 1.0, 'so': 1.0, 'everything': 1.0, 'items': 1.0, 'on': 2.0, '4': 1.0, 'i': 3.0, 'seats': 1.0, 'take': 1.0, '2': 3.0, 'sitting': 1.0, 'vacation': 1.0, 'were': 1.0, 'had': 2.0, 'manageable': 1.0, 'now': 1.0, 'we': 3.0, 'a': 1.0, 'wonderfully': 1.0, 'car': 2.0, 'with': 1.0, 'straps': 1.0, 'luggage': 1.0, 'which': 2.0, 'me': 1.0, 'spot': 1.0, '1': 1.0, 'able': 1.0, 'helped': 1.0, 'strap': 1.0, 'as': 1.0, 'to': 7.0, 'seat': 1.0, 'each': 1.0, 'only': 1.0, 'much': 1.0, 'the': 2.0, 'suitcase': 1.0, 'made': 1.0, 'these': 1.0, 'roll': 1.0, 'vs': 1.0, 'this': 1.0, 'recent': 1.0, 'kids': 1.0, 'enjoyed': 1.0}
Word element => {'grabbing': 1.0, 'for': 1.0, 'soft': 1.0, 's': 1.0, 'our': 1.0, '6': 1.0, 'the': 1.0, 'it': 1.0, 'month': 1.0, 'rolling': 1.0, 'baseball': 1.0, 'this': 1.0, 'loves': 2.0, 'genius': 1.0, 'old': 1.0, 'taggie': 1.0, 'and': 3.0, 'items': 1.0, 'perfect': 1.0, 'all': 1.0, 'especially': 1.0}
Word element => {'read': 1.0, 'ball': 1.0, 'purchasedplay': 1.0, 'also': 1.0, 'fun': 1.0, 'early': 1.0, 'brainwashing': 1.0, 'start': 1.0, 'thrilled': 1.0, 'plus': 1.0, 'closer': 1.0, 'something': 1.0, 'at': 1.0, 'baby': 2.0, 'be': 2.0, 'bought': 1.0, 'll': 1.0, 'husband': 2.0, 'with': 3.0, 'he': 3.0, 'so': 1.0, 'least': 1.0, 'to': 5.0, 'our': 1.0, 'as': 1.0, 'fan': 1.0, 'i': 3.0, 'father': 1.0, 'or': 3.0, 'sticking': 1.0, 'think': 1.0, 'my': 2.0, 'baseball': 2.0, 'gift': 1.0, 'cute': 1.0, 's': 2.0, 'a': 2.0, 'could': 1.0, 'day': 1.0, 'tags': 1.0, 'for': 6.0, 'once': 1.0, 'it': 2.0, 'she': 2.0, 'is': 3.0, 'really': 1.0, 'us': 1.0, 'able': 1.0, 'corduroyfor': 1.0, 'sensory': 1.0, 'thing': 1.0, 'too': 1.0, 'soon': 1.0, 'play': 2.0, 'and': 2.0, 'this': 1.0, 'soft': 1.0, 'out': 1.0, 'big': 1.0, 'until': 1.0, 'stimulation': 1.0, 'great': 1.0, 'deal': 2.0, 'the': 3.0, 'enough': 1.0, 'real': 2.0}
Word element => {'each': 1.0, 'enjoyed': 1.0, 've': 1.0, 'and': 1.0, 'time': 1.0, 'on': 1.0, 'arrived': 1.0, 'sense': 1.0, 'develops': 1.0, 'boys': 1.0, 'who': 1.0, 'twin': 1.0, 'their': 1.0, 'it': 2.0, 'this': 2.0, 'touch': 1.0, 'i': 1.0, 'love': 1.0, 'is': 1.0, 'product': 1.0, 'tag': 1.0, 'we': 1.0, 'goes': 1.0, 'because': 1.0, 'of': 2.0, 'since': 1.0, 'a': 1.0, 'well': 1.0, 'encourages': 1.0, 'great': 1.0, 'the': 2.0, 'different': 1.0, 'have': 1.0, 'textures': 1.0, 'curiosity': 1.0, 'day': 1.0, 'as': 2.0}
Word element => {'very': 1.0, 'washing': 1.0, 'hold': 1.0, 'up': 1.0, 'of': 1.0, 'take': 1.0, 'to': 2.0, 'easy': 1.0, 'have': 1.0, 'this': 1.0, 'newborns': 1.0, 'i': 1.0, 'for': 1.0, 'in': 1.0, 'twins': 1.0, 'twin': 1.0, 'start': 1.0, 'care': 1.0, 'are': 1.0, 'and': 2.0, 'well': 1.0, 'a': 1.0, 'is': 2.0, 'my': 1.0, 'smaller': 1.0, 'still': 1.0, 'great': 1.0, '2': 1.0, 'these': 1.0, 'they': 1.0, 'at': 1.0, '5': 1.0, 'months': 1.0}
Word element => {'unnecessarily': 1.0, 'get': 1.0, 'to': 1.0, 'want': 1.0, 'yet': 1.0, 'it': 2.0, 'haven': 1.0, 'but': 1.0, 'buying': 1.0, 'so': 1.0, 'name': 1.0, 'sense': 1.0, 'confused': 2.0, 'shipping': 1.0, 'x': 1.0, 'about': 1.0, 'reviews': 1.0, 'i': 3.0, 'which': 1.0, 'opened': 1.0, 'review': 1.0, '34': 3.0, 'just': 1.0, 'says': 1.0, 'are': 1.0, 'blanket': 3.0, 'was': 2.0, 'make': 1.0, 'bought': 1.0, 'one': 1.0, '12x10': 1.0, 'since': 1.0, 'its': 2.0, 'only': 1.0, 'didn': 1.0, 'wouldn': 1.0, 'looked': 1.0, 'talking': 1.0, 'themselves': 1.0, 'am': 1.0, 'other': 1.0, 'a': 1.0, 't': 3.0, 'the': 5.0, 'that': 1.0, 'is': 2.0, 'bad': 1.0, 'size': 2.0, 'gotten': 1.0, 'person': 1.0, 'not': 1.0, 'and': 2.0, 'description': 1.0, 'must': 1.0, 'have': 1.0, 'product': 1.0, 'received': 1.0, '36': 1.0, 'states': 1.0, 'in': 1.0, 'swaddling': 1.0, '30': 1.0}
Word element => {'purchase': 1.0, 'would': 1.0, 'blanket': 1.0, 'the': 2.0, 'on': 1.0, 'is': 1.0, 'again': 1.0, 'pooh': 1.0, 'exactly': 1.0, 'and': 1.0, 'as': 1.0, 'described': 1.0, 'born': 1.0, 'gift': 1.0, 'for': 1.0, 'bomb': 1.0, 'a': 1.0, 'new': 1.0, 'so': 1.0, 'prefect': 1.0, 'soft': 1.0}
Word element => {'adventure': 1.0, 'diaper': 1.0, 'starting': 1.0, 'recommend': 1.0, 'anyone': 1.0, 'friendly': 1.0, 'user': 1.0, 'extremely': 1.0, 'i': 2.0, 'cloth': 1.0, 'and': 1.0, 'very': 1.0, 'love': 1.0, 'the': 1.0, 'are': 1.0, 'they': 1.0, 'these': 3.0, 'we': 1.0, 'diapers': 1.0, 'exclusively': 1.0, 'use': 1.0, 'to': 1.0, 'absorbent': 1.0}
Word element => {'loose': 1.0, 'were': 1.0, 'their': 1.0, 'that': 1.0, 'reviews': 1.0, 'someother': 1.0, 'ours': 2.0, 'checked': 1.0, 'love': 1.0, 'sturdy': 1.0, 'got': 1.0, 'her': 1.0, 'plan': 1.0, 'straps': 1.0, 'cute': 1.0, 'on': 2.0, 'fine': 1.0, 'said': 1.0, 'is': 3.0, 'don': 1.0, 'but': 1.0, 'carrying': 1.0, 'just': 3.0, 't': 1.0, 'the': 2.0, 'i': 2.0, 'it': 4.0, 'much': 1.0, 'right': 1.0, 'small': 1.0, 'so': 2.0, 's': 2.0, 'and': 2.0, 'we': 1.0, 'design': 1.0, 'everyone': 1.0, 'very': 1.0, 'asks': 1.0, 'where': 1.0}
Word element => {'3': 5.0, 'bought': 1.0, 'happy': 1.0, 'm': 1.0, '60': 5.0, 'it': 2.0, 'backpack': 1.0, 'looks': 1.0, 'so': 2.0, 'i': 1.0, 'when': 1.0, 'cute': 1.0, 'my': 1.0, 'son': 1.0, 'carries': 1.0, 'this': 1.0}
Word element => {'condition': 1.0, 'perfect': 1.0, 'expected': 1.0, 'as': 1.0, 'if': 1.0, 'small': 1.0, 'especially': 1.0, 'make': 1.0, 'baby': 1.0, 'zoobie': 2.0, 'or': 1.0, 'one': 1.0, 'the': 1.0, 'great': 1.0, 'pets': 1.0, 'similar': 1.0, 'a': 1.0, 'gifts': 1.0, 'book': 1.0, 'to': 1.0, 'character': 1.0, 'shower': 1.0, 'with': 1.0, 'this': 1.0, 'child': 1.0, 'paired': 1.0, 'arrived': 1.0}
Word element => {'most': 1.0, 'which': 1.0, 'carry': 1.0, 'easy': 1.0, 'are': 1.0, 'road': 1.0, 'face': 1.0, 'what': 1.0, 'her': 1.0, 'loves': 1.0, 'youngest': 1.0, 'against': 1.0, 'received': 1.0, 'love': 2.0, 'one': 1.0, 'i': 2.0, 'it': 1.0, 'with': 2.0, 'croc': 2.0, 'and': 3.0, 'very': 1.0, 'in': 2.0, 'is': 3.0, 'covenant': 1.0, 'pet': 1.0, 'blanket': 4.0, 'a': 1.0, 'on': 1.0, 'zoobies': 1.0, 'kojo': 1.0, 'have': 1.0, 'all': 1.0, 'pets': 1.0, 'these': 1.0, 'the': 6.0, 'made': 1.0, 'my': 2.0, 'fell': 1.0, 'pillow': 1.0, 'material': 1.0, 'to': 2.0, 'was': 1.0, 'up': 1.0, 'of': 1.0, 'soft': 1.0, 'us': 1.0, 'kids': 1.0}
Word element => {'one': 1.0, 'without': 1.0, 'are': 1.0, 'is': 1.0, 'of': 1.0, 'style': 1.0, 'a': 1.0, 'lying': 1.0, 'product': 1.0, 'to': 1.0, 'this': 2.0, 'loves': 1.0, 'have': 1.0, 'and': 1.0, 'never': 1.0, 'pacifier': 1.0, 'baby': 1.0, 'my': 1.0, 'the': 1.0, 'around': 1.0, 'make': 1.0, 'we': 2.0, 'several': 1.0, 'quality': 1.0, 'house': 1.0, 'sure': 1.0, 'that': 1.0}
Word element => {'stable': 1.0, 'out': 1.0, 'had': 2.0, 'really': 1.0, 'excellent': 1.0, 'grandma': 1.0, 'where': 1.0, 'for': 3.0, 'love': 1.0, 'another': 1.0, 'my': 3.0, 'reviewer': 1.0, 'vehicle': 1.0, 'never': 1.0, 'car': 2.0, 'of': 2.0, 'the': 4.0, 'place': 1.0, 'is': 2.0, 'meet': 1.0, 'she': 1.0, 'thought': 1.0, 'it': 7.0, 'but': 1.0, 'situation': 1.0, '2': 2.0, 'ride': 1.0, 'loops': 1.0, 'by': 1.0, 'we': 2.0, 's': 1.0, 'have': 2.0, 'a': 4.0, 'small': 1.0, 'now': 1.0, 'as': 1.0, 'in': 3.0, 'seat': 2.0, 'very': 2.0, 'year': 3.0, 'pinch': 1.0, 'though': 1.0, 'plus': 1.0, 'limits': 1.0, '7': 1.0, 'i': 4.0, 'stated': 1.0, 'ratings': 1.0, 'old': 3.0, 'frequently': 1.0, 'and': 3.0, 'months': 1.0, 'both': 1.0, 'does': 2.0, 'than': 1.0, 'brands': 1.0, 'only': 1.0, 'much': 1.0, 'few': 1.0, 'this': 2.0, 'not': 1.0, 'flip': 1.0, 'think': 1.0, 'your': 1.0, 'used': 1.0, 'would': 1.0, 'properly': 2.0, 'own': 1.0, 'comfy': 1.0, 'handles': 1.0, 'feels': 1.0, 'if': 2.0, 'still': 1.0, 'enough': 1.0, 'more': 2.0, 'door': 1.0, 'how': 1.0, 'compact': 1.0, 'also': 1.0, 'secure': 1.0, 'like': 1.0, 'nihs': 1.0, 'belt': 1.0, 'into': 1.0, 'that': 1.0, 'so': 1.0, 'stays': 1.0, 'great': 1.0, 'securely': 1.0, 'fits': 1.0, 'an': 1.0, 'other': 1.0, 'booster': 1.0, '4': 3.0, 'backless': 1.0, 'these': 1.0, 'cars': 1.0, 'has': 1.0}
Word element => {'average': 1.0, 'looking': 1.0, 'are': 1.0, 'purchase': 1.0, 'don': 1.0, 'properly': 1.0, 'fine': 1.0, 'is': 1.0, '3': 1.0, 'accross': 1.0, 'doesn': 2.0, 'but': 1.0, 'work': 1.0, 'able': 1.0, 'in': 1.0, 'itself': 1.0, 'something': 1.0, 'would': 1.0, 'and': 3.0, 'smallest': 1.0, 'other': 1.0, 'about': 1.0, 'situation': 1.0, 'this': 2.0, 'it': 2.0, 'works': 1.0, 'its': 1.0, 'be': 2.0, 'bought': 1.0, 'purchased': 1.0, 'if': 1.0, 'being': 1.0, 'booster': 3.0, 'the': 2.0, 'a': 1.0, 't': 3.0, 'carpooling': 1.0, 'i': 4.0, 'article': 1.0, 'fit': 1.0, 'for': 3.0, 'read': 1.0, 'specifically': 1.0, 'have': 1.0, 'small': 1.0, 'size': 1.0, 'you': 1.0, 'seen': 1.0, 'seem': 1.0, 'an': 1.0, 'pool': 1.0, 'smaller': 2.0, 'because': 1.0, 'than': 2.0, 'any': 2.0, 'seat': 1.0, 'to': 2.0, 'our': 1.0, 'car': 1.0}
Word element => {'due': 1.0, 'star': 1.0, 'one': 1.0, 'wear': 1.0, 'show': 1.0, 'yet': 1.0, 'have': 1.0, 'wash': 1.0, 'immediately': 1.0, 'disappears': 1.0, 'smell': 2.0, 'the': 1.0, 'changing': 1.0, 'after': 1.0, 'right': 1.0, 'reduce': 1.0, 'rise': 1.0, 'other': 1.0, 'doesn': 1.0, 'even': 1.0, 'before': 1.0, 'and': 3.0, 'urine': 1.0, 'cloth': 1.0, 'tried': 1.0, 'i': 3.0, 'disposables': 1.0, 'he': 1.0, 'with': 3.0, 'this': 1.0, 'through': 1.0, 'then': 1.0, 'every': 1.0, 'wet': 1.0, 'stink': 1.0, 'of': 1.0, 'any': 1.0, 'to': 4.0, 'leaked': 2.0, 'are': 2.0, 'my': 1.0, 'son': 1.0, 'until': 1.0, 'thats': 1.0, 'brand': 1.0, 'happen': 1.0, 'switching': 1.0, 'these': 1.0, 'everything': 1.0, 'regular': 1.0, 'hemp': 1.0, 'inserts': 1.0, 'brands': 1.0, 'find': 2.0, 'night': 1.0, 'them': 1.0, 'him': 1.0, 'be': 1.0, 't': 1.0, 'we': 1.0, 'a': 1.0, 'at': 1.0, 'since': 1.0, 'thicker': 1.0, 'little': 1.0, 'stiff': 1.0, 'well': 1.0, 'expected': 1.0, 'but': 2.0, 'they': 4.0, 'also': 1.0, 'when': 1.0}
Word element => {'leakage': 1.0, 'never': 1.0, 'absorb': 1.0, 'them': 1.0, 'we': 1.0, 'and': 2.0, 'insert': 1.0, 'organic': 1.0, 'have': 1.0, 'few': 1.0, 'directly': 1.0, 'on': 1.0, 'cheaper': 1.0, 'i': 2.0, 'but': 2.0, 'going': 1.0, 'had': 1.0, 'to': 2.0, 'was': 1.0, 'it': 1.0, 'love': 2.0, 'ant': 1.0, 'saving': 1.0, 'order': 2.0, '2': 1.0, 'these': 2.0, 'the': 2.0, 'very': 1.0, 'best': 1.0, 'of': 1.0, 'bottom': 1.0, 'website': 1.0, 'regular': 1.0, 'is': 1.0, 'amazon': 1.0, 'like': 1.0, 'a': 2.0}
Word element => {'cloth': 1.0, 'other': 1.0, 'over': 1.0, 'bottoms': 1.0, 'choose': 1.0, 'would': 1.0, 'store': 1.0, 'my': 1.0, 'these': 1.0, 'local': 1.0, 'you': 1.0, 'feeling': 1.0, 'best': 1.0, '34': 2.0, 'bottom': 1.0, '6': 1.0, 'any': 1.0, 'to': 1.0, 'top': 1.0, 'on': 2.0, 'wished': 1.0, 's': 1.0, 'a': 2.0, 'loved': 1.0, 'then': 1.0, 'dry': 1.0, 'they': 1.0, 'sold': 1.0, 'and': 1.0, 'the': 2.0, 'insert': 1.0, 'diaper': 3.0, 'great': 1.0, 'it': 3.0, 'regular': 1.0, 'leaks': 1.0, 'into': 1.0, 'that': 2.0, 'snap': 3.0, 'cover': 1.0, 'little': 1.0, 'so': 1.0, 'i': 1.0, 'made': 1.0, 'baby': 1.0, 'night': 1.0, '8am': 1.0, 'one': 1.0, 'keep': 1.0, 'bigger': 1.0, 'at': 2.0, 'bulky': 1.0, 'no': 1.0, 'can': 1.0, 'but': 1.0, 'works': 1.0, 'from': 1.0, '30pm': 1.0, 'is': 1.0, 'till': 1.0}
Word element => {'my': 1.0, 'sister': 1.0, 'for': 1.0, 'gift': 1.0, 'recommend': 1.0, 'i': 2.0, 'practical': 1.0, 'it': 4.0, 'love': 1.0, 'a': 1.0, 'functional': 1.0, 'wonderful': 1.0, 'and': 2.0, 'as': 2.0, 'was': 1.0, 'would': 1.0, 's': 1.0, 'well': 1.0}
Word element => {'needed': 1.0, 'just': 1.0, 'actually': 1.0, 'husband': 1.0, 'started': 1.0, 'both': 1.0, 'if': 1.0, 'same': 1.0, 'be': 1.0, 'of': 1.0, 'washed': 1.0, 'on': 2.0, 'dingy': 1.0, 'background': 2.0, 'the': 9.0, 'color': 3.0, 'arrived': 1.0, 'sheet': 2.0, 'white': 3.0, 'disappointed': 1.0, 'ordered': 1.0, 'this': 1.0, 'found': 1.0, 'laid': 1.0, 'excited': 1.0, 'border': 1.0, 'sack': 1.0, 'was': 1.0, 'i': 1.0, 'crib': 1.0, 'we': 2.0, 'however': 1.0, 'very': 2.0, 'and': 5.0, 'my': 1.0, 'cream': 1.0, 'difference': 1.0, 'asked': 1.0, 'is': 3.0, 'it': 3.0, 'looks': 1.0, 'as': 1.0, 'to': 1.0, 'sleep': 1.0, 'off': 1.0, 'amd': 1.0, 'when': 3.0, 'you': 1.0, 'blanket': 2.0, 'are': 1.0, 'an': 1.0, 'set': 1.0, 'noticable': 1.0, 'next': 1.0, 'they': 1.0, 'dirty': 1.0, 'because': 1.0, 'were': 1.0, 'assume': 1.0, 'should': 1.0}
Word element => {'buy': 1.0, 'do': 1.0, 'big': 1.0, 'point': 1.0, 'like': 2.0, 'really': 1.0, 'that': 1.0, 'complete': 1.0, 'provide': 1.0, 'enough': 1.0, 'wide': 1.0, 'crib': 3.0, 'down': 1.0, 'mesh': 1.0, 'sides': 1.0, 'summer': 1.0, 'good': 1.0, 'is': 2.0, 'need': 1.0, 'just': 2.0, 'floor': 1.0, 'skirt': 2.0, 'on': 1.0, 'out': 1.0, 'laid': 1.0, 'stroller': 1.0, 'mind': 1.0, 'but': 4.0, 'intended': 1.0, 'doesn': 3.0, 'no': 1.0, 'about': 1.0, 'don': 3.0, 'again': 1.0, 'complained': 1.0, 'look': 1.0, 'piping': 1.0, 'isn': 1.0, 'others': 1.0, 'brown': 2.0, 'to': 2.0, 'our': 1.0, 'as': 4.0, 'annoying': 1.0, 'it': 11.0, 'fitted': 2.0, 'fit': 1.0, 'for': 2.0, 'love': 1.0, 'deal': 1.0, 'the': 14.0, 'so': 3.0, 'bit': 1.0, 'sheet': 3.0, 'linen': 1.0, 'cute': 1.0, 'small': 1.0, 'have': 2.0, 'or': 2.0, 'i': 7.0, 'very': 1.0, 'faded': 1.0, 'be': 1.0, 'wearable': 1.0, 'also': 2.0, 'would': 1.0, 've': 1.0, 'coverage': 1.0, 'never': 1.0, 'shrunk': 1.0, 'too': 1.0, 'and': 3.0, 'not': 3.0, 'me': 1.0, 'at': 1.0, 'edge': 1.0, 'once': 1.0, 'of': 3.0, 'this': 1.0, 'mattress': 1.0, 'because': 1.0, 'does': 1.0, 'used': 2.0, 'bother': 1.0, 'other': 1.0, 'reviewers': 1.0, 'blanket': 3.0, 's': 3.0, 'notice': 1.0, 'a': 3.0, 't': 7.0, 'might': 1.0, 'could': 1.0}
Word element => {'smeared': 1.0, 'enclosure': 1.0, 'being': 1.0, 'ended': 1.0, 'plastic': 1.0, 'of': 1.0, 'bottom': 1.0, 'up': 1.0, 'sticker': 1.0, 'slap': 1.0, 'materials': 1.0, 'adhesive': 1.0, 'gift': 1.0, 'bought': 1.0, 'are': 1.0, 'a': 2.0, 'and': 1.0, 'skip': 1.0, 'this': 1.0, 'have': 1.0, 'the': 5.0, 'great': 1.0, 'but': 1.0, 'than': 1.0, 'as': 1.0, 'question': 1.0, 'known': 1.0, 'to': 2.0, 'its': 1.0, 'whole': 1.0, 'i': 2.0, 'packaging': 2.0, 'design': 1.0, 'hop': 1.0, 'better': 1.0, 'around': 1.0, 'should': 1.0}
Word element => {'us': 1.0, 'be': 1.0, 'would': 1.0, 'that': 1.0, 'something': 1.0, 'spend': 1.0, 'not': 1.0, 'find': 1.0, 'glad': 1.0, 'a': 2.0, 'want': 1.0, 't': 2.0, 'have': 2.0, 'and': 3.0, 'bedding': 1.0, 'quilt': 1.0, 'to': 3.0, 'was': 1.0, 'use': 1.0, 'bumper': 1.0, 'i': 2.0, 'those': 1.0, 'no': 1.0, 'two': 1.0, 'this': 1.0, 'with': 1.0, 'wouldn': 1.0, 'didn': 1.0, 'been': 1.0, 'used': 1.0, 'on': 1.0, 'thins': 1.0, 'waste': 1.0, 'set': 2.0, 'of': 1.0, 'money': 2.0, 'so': 1.0}
Word element => {'also': 1.0, 'value': 1.0, 'a': 1.0, 'blanket': 1.0, 'cozy': 1.0, 'the': 1.0, 'this': 1.0, 'was': 2.0, 'set': 1.0, 'i': 1.0, 'crib': 1.0, 'for': 1.0, 'our': 1.0, 'baby': 1.0, 'perfect': 1.0, 'especially': 1.0, 'great': 1.0, 'it': 1.0, 'love': 1.0}
Word element => {'baby': 1.0, 'super': 1.0, 'very': 1.0, 'and': 1.0, 'quality': 1.0, 'great': 1.0, 'i': 1.0, 'am': 1.0, 'cute': 1.0, 'always': 1.0, 'perfect': 1.0, 'but': 1.0, 'materials': 1.0, 'hesitant': 1.0, 'for': 1.0, 'online': 1.0, 'to': 1.0, 'comfortable': 1.0, 'buy': 1.0, 'was': 1.0, 'this': 1.0}
Word element => {'regrets': 1.0, 'overall': 1.0, 'problem': 1.0, 'shrinkage': 1.0, 'if': 1.0, 'roomy': 1.0, 'haven': 1.0, 'yet': 1.0, 'or': 1.0, 'washing': 1.0, 'soften': 1.0, 'seems': 1.0, 'also': 1.0, 'will': 1.0, 'maybe': 1.0, 'it': 2.0, 'higher': 1.0, 'very': 1.0, 'little': 1.0, 'surprised': 1.0, 'thread': 1.0, 'do': 1.0, 'great': 1.0, 'though': 1.0, 'colors': 1.0, 'there': 1.0, 'out': 1.0, 'throw': 1.0, 'but': 2.0, 'at': 1.0, 'means': 1.0, 'was': 3.0, 'of': 3.0, 'are': 1.0, 'fairly': 1.0, 'regular': 1.0, 'd': 2.0, 'natural': 1.0, 'using': 1.0, 'up': 1.0, 'don': 1.0, 'least': 1.0, 'any': 2.0, 'to': 1.0, 'as': 1.0, 'while': 1.0, 'from': 1.0, 'two': 1.0, 'i': 8.0, 'see': 1.0, 'white': 3.0, 'washed': 1.0, 'on': 2.0, 'bummed': 1.0, 'thought': 1.0, 'purchased': 1.0, 'deal': 1.0, 'the': 9.0, 'owners': 1.0, 'a': 5.0, 't': 2.0, 'is': 3.0, 'plan': 1.0, 'more': 1.0, 'complete': 1.0, 'wish': 1.0, 'this': 1.0, 'set': 1.0, 'bleached': 1.0, 'be': 1.0, 'bumpers': 1.0, 'other': 2.0, 'target': 1.0, 'me': 1.0, 'not': 1.0, 'after': 1.0, 'package': 1.0, 'plenty': 1.0, 'portion': 1.0, 'no': 1.0, 'backgound': 1.0, 'for': 2.0, 'actually': 1.0, 'count': 1.0, 'color': 2.0, 'my': 1.0, 'crib': 2.0, 'sheet': 3.0, 'so': 2.0, 'difference': 1.0, 'un': 1.0, 'bright': 1.0, 'obvious': 1.0, 'that': 2.0, 'breaker': 1.0, 'just': 1.0, 'by': 1.0}
Word element => {'awesome': 1.0, 'so': 1.0, 'is': 1.0, 'blanket': 1.0, 'soft': 1.0, 'sheet': 1.0, 'all': 1.0, 'the': 4.0, 'are': 2.0, 'holding': 1.0, 'love': 1.0, 'top': 1.0, 'and': 2.0, 'up': 1.0, 'items': 1.0, 'nicely': 1.0, 'quality': 2.0, 'i': 1.0}
Word element => {}
Word element => {'again': 1.0, 'buy': 1.0, 'definitely': 1.0, 'wall': 1.0, 'be': 1.0, 'way': 1.0, 'mounted': 1.0, 'so': 1.0, 'but': 1.0, 'board': 1.0, 'design': 1.0, 'put': 1.0, 'on': 2.0, 'i': 3.0, 'also': 1.0, 'saying': 1.0, 'just': 1.0, 'we': 1.0, 'could': 2.0, 'were': 1.0, 'that': 3.0, 'it': 5.0, 'only': 1.0, 'come': 1.0, 'type': 1.0, 'in': 1.0, 'said': 1.0, 'and': 2.0, 'done': 1.0, 'some': 1.0, 'love': 2.0, 'for': 1.0, 'opinion': 1.0, 'paint': 1.0, 'the': 5.0, 'without': 1.0, 'job': 1.0, 'wish': 1.0, 'this': 1.0, 'kids': 1.0, 'suppose': 1.0, 'have': 2.0, 'all': 1.0, 'themselves': 1.0, 'damaging': 1.0, 'being': 1.0, 'price': 1.0, 'should': 1.0, 'my': 1.0, 'would': 1.0}
Word element => {'birthday': 1.0, 'grand': 1.0, 'perfect': 1.0, 'the': 1.0, 'our': 1.0, 'better': 1.0, 'daughters': 1.0, 'i': 1.0, 'quality': 1.0, 'was': 1.0, 'not': 1.0, 'a': 1.0, 'loved': 1.0, 'have': 1.0, 'it': 1.0, 'asked': 1.0, 'poem': 1.0, 'could': 1.0, 'for': 2.0}
Word element => {'each': 1.0, 'me': 1.0, 'and': 1.0, 'saying': 1.0, 'favorite': 1.0, 'love': 1.0, 'our': 1.0, 'early': 1.0, 'its': 1.0, 'she': 1.0, 'every': 1.0, 'got': 1.0, 'does': 1.0, 'stays': 1.0, 'my': 1.0, '5': 1.0, 'year': 1.0, 'i': 1.0, 'night': 1.0, 'old': 1.0, 'time': 1.0, 'it': 2.0, 'this': 1.0, 'with': 1.0}
Word element => {}
Word element => {'again': 1.0, 'would': 1.0, 'once': 1.0, 'but': 1.0, 'around': 2.0, 'couldn': 1.0, 'love': 1.0, 'fitting': 1.0, 'buy': 1.0, 'i': 2.0, 'itvcardwas': 1.0, 'thing': 1.0, 'able': 1.0, 'bad': 1.0, 'seat': 2.0, 'only': 1.0, 'it': 1.0, 'this': 1.0, 'great': 1.0, 'the': 1.0, 't': 1.0, 'in': 2.0, 'a': 2.0, 'smaller': 1.0, 'vehicle': 2.0, 'use': 1.0, 'so': 1.0, 'until': 1.0, 'turned': 1.0, 'was': 1.0, 'to': 1.0, 'turn': 1.0}
Word element => {'newborn': 1.0, 'very': 1.0, 'from': 1.0, 'thanks': 1.0, 'today': 1.0, 'eight': 1.0, 'family': 2.0, 'a': 2.0, 'on': 1.0, 'they': 1.0, 'bye': 2.0, 'go': 1.0, 'his': 1.0, 'went': 1.0, 'ago': 1.0, 'new': 1.0, 'grandson': 1.0, 'loves': 1.0, 'comfy': 1.0, 'and': 2.0, 'great': 1.0, '2': 1.0, 'days': 1.0, 'got': 1.0, 'for': 1.0, 'love': 1.0, 'him': 1.0, 'car': 2.0, 'trip': 1.0, 'just': 2.0, 'seat': 2.0, 'with': 1.0, 'it': 2.0, 'he': 2.0, 'daddy': 1.0, 'cried': 1.0, 'when': 1.0, 'snug': 1.0, 'took': 1.0, 'fits': 1.0, 'out': 1.0, 'wanted': 1.0, 'to': 2.0}
Word element => {'new': 1.0, 'her': 1.0, 'in': 1.0, 'girl': 1.0, 'to': 1.0, 'wait': 1.0, 'window': 1.0, 'my': 1.0, 'happy': 1.0, 'i': 5.0, 'can': 2.0, 'm': 2.0, 'washes': 1.0, 'set': 1.0, 'paying': 1.0, 'valance': 1.0, 'looks': 1.0, 'really': 1.0, 'this': 1.0, 'and': 1.0, 'matching': 1.0, 'not': 1.0, 'bed': 1.0, 'love': 1.0, 'for': 1.0, 'little': 1.0, 'crib': 1.0, 'see': 1.0, 'well': 1.0, 'a': 1.0, 'bumper': 1.0, 'use': 1.0, 'ordered': 1.0, 'great': 1.0, 't': 2.0, 'the': 1.0}
Word element => {'worth': 1.0, 'totally': 1.0, 'to': 1.0, 'bottles': 3.0, 'accessories': 1.0, 'many': 1.0, 't': 1.0, 'falling': 1.0, 'always': 1.0, 'did': 1.0, 'expectations': 1.0, 'meet': 1.0, 'are': 1.0, 'the': 2.0, 'my': 1.0, 'n': 2.0, 'it': 3.0, 'doesn': 1.0, 'hold': 1.0, 'not': 2.0, 'was': 1.0, 'too': 1.0, 'expensive': 1.0}
Word element => {'purchases': 1.0, 'occasions': 1.0, 'my': 1.0, 'car': 1.0, 'rarely': 1.0, 'because': 1.0, 'us': 1.0, 'for': 1.0, 'issue': 1.0, 'an': 1.0, 'heavy': 1.0, 'is': 1.0, 'load': 1.0, 'sufficient': 1.0, 'that': 1.0, 'into': 1.0, 'been': 3.0, 'has': 2.0, 'times': 1.0, 'wife': 1.0, 'while': 1.0, 'charge': 2.0, 'plug': 1.0, 'our': 1.0, 'as': 1.0, 'to': 2.0, 'generator': 1.0, 'only': 1.0, 'also': 1.0, 'rain': 1.0, 'snow': 1.0, 'used': 1.0, 'use': 1.0, 'one': 1.0, 'months': 1.0, 'few': 1.0, 'just': 1.0, 've': 3.0, 'said': 1.0, 'in': 4.0, 'daily': 1.0, 'with': 2.0, 'this': 3.0, 'it': 3.0, 'properties': 1.0, 'shows': 1.0, 'best': 1.0, 'headlights': 1.0, 'i': 1.0, 'restaurants': 1.0, 'reflective': 1.0, 'mechanical': 1.0, 'of': 3.0, 'thus': 1.0, 'condo': 1.0, 'unlike': 1.0, 'have': 1.0, 'indispensable': 1.0, 't': 1.0, 'city': 1.0, 's': 1.0, 'we': 5.0, 'a': 3.0, 'are': 2.0, 'high': 1.0, 'and': 6.0, 'others': 1.0, 'streets': 1.0, 'on': 2.0, 'over': 2.0, 'miles': 1.0, 'had': 2.0, 'several': 1.0, 'no': 2.0, 'at': 1.0, 'odometer': 1.0, 'hasn': 1.0, 'problems': 2.0, 'stroller': 4.0, 'self': 2.0, 'expands': 1.0, 'collapses': 1.0, 'the': 6.0, 'without': 1.0, 'problem': 1.0, 'rise': 1.0, 'live': 1.0, 'home': 1.0, 'church': 1.0, 'school': 1.0, '9': 1.0, '200': 1.0}
Word element => {'easier': 1.0, 'make': 1.0, 'luggage': 1.0, 'charging': 1.0, 'wheels': 1.0, 'little': 1.0, 'opens': 1.0, 'and': 2.0, 'because': 1.0, 'mostly': 1.0, 'but': 1.0, 'stroller': 2.0, 'at': 1.0, 'to': 1.0, 'lights': 1.0, 'bought': 1.0, 'this': 2.0, 'it': 3.0, 'love': 2.0, 'heavy': 1.0, 'the': 5.0, 'i': 3.0, 'touch': 1.0, 'of': 1.0, 'button': 1.0, 'in': 1.0, 'also': 1.0, 'phone': 1.0, 'maneuver': 1.0, 'front': 1.0, 'closes': 1.0, 'a': 2.0, 'capability': 1.0, 'type': 1.0, 'is': 1.0}
Word element => {'if': 1.0, 'baby': 1.0, 'first': 1.0, 'her': 1.0, 'pregnaunt': 2.0, 'id': 2.0, 'myself': 1.0, 'the': 1.0, 'attach': 1.0, 'my': 1.0, 'purchase': 1.0, 'people': 1.0, 'many': 1.0, 'live': 1.0, 'very': 1.0, 'open': 1.0, 'and': 5.0, 'get': 4.0, 'in': 3.0, 'she': 1.0, 'it': 7.0, 'this': 3.0, 'close': 1.0, 'i': 11.0, 'strooler': 3.0, 'for': 2.0, 'love': 4.0, 'where': 1.0, 'am': 2.0, 'when': 1.0, 'see': 1.0, 's': 1.0, 'wont': 2.0, 'a': 1.0, 'is': 1.0, 'comes': 2.0, 'say': 1.0, 'unique': 1.0, 'colors': 1.0, 'one': 2.0, 'cant': 1.0, 'once': 1.0, 'of': 1.0, 'sister': 1.0, 'find': 1.0, 'fight': 2.0, 'with': 6.0, 'stores': 1.0, 'to': 7.0, 'bcause': 3.0, 'all': 2.0, 'have': 1.0, 'trying': 1.0, 'or': 1.0, 'ride': 1.0, 'public': 1.0, 'transportation': 1.0, 'carseat': 1.0, 'totally': 1.0, 'that': 1.0, 'most': 1.0, 'can': 1.0}
Word element => {'had': 1.0, 'spent': 1.0, 'probably': 1.0, 'enough': 1.0, 'were': 1.0, 'money': 1.0, 'prepared': 1.0, 'starter': 1.0, 'conversation': 1.0, 'definitely': 1.0, 'looks': 1.0, 'feature': 1.0, 'close': 1.0, 'idea': 1.0, 'no': 1.0, 'days': 1.0, 'when': 1.0, 'did': 2.0, 'time': 1.0, 'gift': 1.0, 'rarely': 1.0, 'twice': 1.0, 'winter': 1.0, 'slept': 1.0, 'ride': 1.0, 'neighborhood': 1.0, 'refusing': 1.0, 'outside': 1.0, 'times': 1.0, 'few': 1.0, 'fall': 1.0, 'summer': 1.0, 'spring': 1.0, 'customer': 1.0, 'wheels': 3.0, 'you': 1.0, 'floor': 1.0, 'numerous': 1.0, 'put': 2.0, 'much': 2.0, 'do': 3.0, 'charge': 1.0, 'excursions': 1.0, 'smooth': 2.0, 'concrete': 1.0, 'service': 1.0, 'original': 1.0, 'came': 1.0, 'blanket': 1.0, 'after': 2.0, 'called': 1.0, 'we': 6.0, 'maneuver': 1.0, 'easier': 1.0, 'seat': 2.0, 'turning': 2.0, 'tedious': 1.0, 'trip': 1.0, '103': 1.0, 'would': 3.0, 'what': 1.0, 'front': 2.0, 'undo': 1.0, 'don': 2.0, 'early': 1.0, 'somehow': 1.0, 'noticed': 1.0, 'first': 1.0, 'lucky': 1.0, 'at': 2.0, 'stroller': 10.0, 'how': 2.0, 'change': 1.0, 'takes': 1.0, 'but': 5.0, 'husband': 3.0, 'more': 1.0, 'now': 2.0, 'almost': 1.0, 'was': 10.0, 'thinks': 1.0, 'lbs': 1.0, 'daughter': 1.0, 'in': 8.0, 'together': 1.0, 'figured': 1.0, 'car': 2.0, 'matter': 1.0, 'huge': 1.0, 'stick': 1.0, 'used': 2.0, 'out': 3.0, 'newborn': 1.0, 'graco': 2.0, 'whatever': 2.0, 'only': 1.0, 'off': 2.0, 'see': 1.0, 'two': 2.0, 'draws': 1.0, 'finally': 2.0, 'i': 18.0, 'putting': 1.0, 'ugh': 1.0, 'have': 6.0, 'because': 2.0, 'been': 2.0, 'sticking': 1.0, 'switched': 1.0, 'didn': 3.0, 'eventually': 1.0, 'thing': 2.0, 'suv': 1.0, 'about': 2.0, 'so': 3.0, 'turn': 1.0, 'is': 8.0, 'can': 5.0, 'direction': 1.0, 'with': 3.0, 'using': 1.0, 'for': 3.0, 'are': 1.0, 'my': 8.0, 'me': 1.0, 'the': 23.0, 'of': 2.0, 'doing': 1.0, 'bag': 2.0, 'a': 13.0, 'small': 2.0, 't': 8.0, 'that': 8.0, 'adaptable': 1.0, 'getting': 1.0, 'on': 5.0, 'items': 1.0, 'own': 2.0, 'be': 2.0, 'it': 18.0, 'recline': 1.0, 'those': 1.0, 'not': 3.0, 'right': 3.0, 'to': 15.0, 'pretty': 1.0, 'fit': 1.0, 'easy': 2.0, 'sure': 1.0, 'store': 1.0, 'bottom': 1.0, 'mention': 1.0, 'carpet': 1.0, 'difficult': 2.0, 'seem': 2.0, 'too': 1.0, 'hang': 2.0, 'there': 2.0, 'purse': 1.0, 'taking': 2.0, 'they': 2.0, 'sent': 1.0, 'new': 2.0, 'away': 1.0, 'them': 1.0, 'has': 1.0, 'make': 1.0, 'big': 2.0, 'deal': 1.0, 'part': 1.0, 'baby': 2.0, 'kept': 1.0, 'week': 2.0, 'quick': 1.0, 'fine': 1.0, 'wasn': 2.0, 'like': 4.0, 'care': 1.0, 'continually': 1.0, 'some': 1.0, 'take': 2.0, 'never': 1.0, 'attention': 2.0, 'ton': 1.0, 'other': 3.0, 'others': 1.0, 'points': 1.0, 'get': 1.0, 'often': 1.0, 'extra': 1.0, 'gathers': 1.0, 'dark': 1.0, 'he': 4.0, 'lights': 1.0, 'necessary': 1.0, 'm': 2.0, 's': 2.0, 'doesn': 1.0, 'errand': 1.0, 'this': 6.0, 'his': 1.0, 'and': 13.0, 'constantly': 1.0, 'just': 2.0, '5': 3.0, 'one': 2.0, 'grocery': 1.0, 'or': 2.0, 'case': 1.0, 'use': 1.0, 'foldable': 1.0, 'while': 1.0, 'months': 2.0, 'storage': 1.0, 'up': 1.0, 'diaper': 1.0, 'as': 2.0, 'heavy': 2.0, 'awkward': 1.0, 'from': 2.0, 'cons': 1.0, 'handles': 1.0, 'watch': 1.0, 'mentioned': 1.0, 'lift': 2.0, 'again': 1.0, '0': 1.0, 'prosyou': 1.0, 'our': 3.0, 'sucks': 1.0, 'open': 3.0, 'think': 1.0, '7': 1.0, 'straps': 1.0, 'smaller': 1.0, 'parents': 2.0, 'moderate': 1.0, 'jog': 1.0, 'differently': 1.0, 'if': 2.0, 'great': 2.0}
Word element => {'wash': 1.0, 'constantly': 1.0, 'recommended': 1.0, 'future': 1.0, 'should': 1.0, 'this': 1.0, 'it': 1.0, 'works': 1.0, 'i': 3.0, 'one': 1.0, 'for': 1.0, 'me': 1.0, 'to': 3.0, 'moms': 1.0, 'easy': 1.0, 'bra': 1.0, 'so': 1.0, 'have': 3.0, 'nursing': 1.0, 'use': 1.0, 'already': 1.0, 'really': 1.0, 'bought': 1.0, 'the': 1.0, 't': 1.0, 'great': 1.0, '2': 1.0, 'don': 1.0}
Word element => {'at': 1.0, 'of': 1.0, 'i': 2.0, 'when': 1.0, 'home': 1.0, 'bra': 1.0, 'except': 1.0, 'pumpease': 1.0, 'the': 2.0, 'taking': 1.0, 'are': 1.0, 'pumping': 1.0, 'like': 1.0, 'and': 1.0, 'each': 1.0, 'it': 2.0, 'on': 1.0, 'good': 1.0, 'off': 1.0, 'inconvenience': 1.0, 'time': 1.0, 'pump': 1.0, 'otherwise': 1.0, 'you': 1.0, 's': 1.0}
Word element => {'soft': 1.0, 'in': 1.0, 'toddler': 1.0, 'wrap': 1.0, 'it': 1.0, 'cut': 1.0, 'up': 1.0, 'very': 1.0, 'and': 3.0, 'fluffly': 1.0, 'a': 1.0, 'functional': 1.0, 'towel': 1.0, 'is': 1.0, 'has': 1.0, 'good': 2.0, 'absorbency': 1.0, 'adorable': 1.0, 'to': 1.0}
Word element => {'grow': 1.0, 'room': 1.0, 'has': 1.0, 'months': 1.0, 'size': 1.0, 'my': 2.0, 'for': 2.0, 'daughter': 1.0, 'of': 1.0, '16month': 1.0, 'more': 1.0, 'great': 1.0, '2': 1.0, 'these': 1.0, 'used': 1.0, 'have': 2.0, 'this': 1.0, 'we': 2.0, 'old': 2.0, 'adorable': 1.0, 'designs': 1.0, 'and': 3.0, 'highly': 1.0, 'colors': 1.0, 'recommend': 1.0, 'she': 2.0, 'few': 1.0, 'to': 1.0, 'was': 1.0, 'since': 1.0, 'a': 1.0}
Word element => {'life': 1.0, 'this': 2.0, 'couldn': 1.0, 'at': 1.0, 'after': 1.0, 'i': 2.0, 'available': 1.0, 't': 1.0, 'the': 2.0, 'all': 1.0, 'looking': 1.0, 'child': 1.0, 'towels': 1.0, 'choice': 1.0, 'for': 2.0, 'in': 1.0, 'a': 1.0, 'special': 2.0, 'little': 1.0, 'your': 1.0, 'boy': 1.0, 'resist': 1.0, 'highly': 1.0, 'recommend': 1.0}
Word element => {'time': 1.0, 'the': 1.0, 'use': 1.0, 'easy': 1.0, 'all': 1.0, 'him': 1.0, 'see': 1.0, 'good': 1.0, 'important': 1.0, 'device': 1.0, 'her': 1.0, 'if': 1.0, 'have': 1.0, 'its': 1.0, 'u': 1.0, 'baby': 1.0, 'quality': 1.0, 'very': 1.0, 'and': 1.0, 'a': 1.0, 'want': 1.0, 'to': 2.0}
Word element => {'from': 1.0, 'just': 1.0, 'or': 1.0, 'iphone': 1.0, 'stay': 1.0, 'not': 1.0, 'brand': 1.0, 'buying': 1.0, 'waiting': 1.0, 'decide': 1.0, 'version': 1.0, 'now': 1.0, 'away': 1.0, 'ipad': 1.0, 'older': 1.0, 'way': 1.0, 'there': 1.0, 'upgraded': 1.0, 'problem': 1.0, 'increase': 1.0, 'upgrade': 2.0, 'much': 1.0, 'os': 1.0, 'working': 1.0, 'after': 1.0, 'stop': 1.0, 'user': 2.0, 're': 2.0, 'you': 3.0, 'if': 2.0, 'don': 1.0, 'in': 1.0, 'kat': 3.0, 'seems': 1.0, 'the': 6.0, 'enviroment': 1.0, 'monitor': 3.0, 'and': 5.0, 'focused': 1.0, 'baby': 3.0, 'simply': 1.0, 'back': 1.0, 'android': 3.0, 'support': 2.0, 'won': 1.0, 'on': 1.0, 'once': 1.0, 'of': 3.0, 'clearly': 1.0, 'aware': 1.0, 'really': 1.0, 'say': 1.0, 'is': 4.0, 'expensive': 1.0, 'kit': 3.0, 'product': 2.0, 'be': 1.0, 'can': 1.0, 'needless': 1.0, 'work': 1.0, 'withings': 3.0, 'related': 1.0, 'until': 1.0, 'annoucement': 1.0, 'afford': 1.0, 'disapointed': 1.0, 'no': 1.0, 'despite': 1.0, 'security': 1.0, 'another': 1.0, 'my': 1.0, 'may': 1.0, 'care': 1.0, 'apple': 1.0, 'devices': 1.0, 'useless': 2.0, 'it': 2.0, 'this': 2.0, 'unfortunatelly': 1.0, 'a': 2.0, 't': 3.0, 's': 2.0, 'clear': 1.0, 'that': 4.0, 'kind': 1.0, 'any': 1.0, 'to': 6.0, 'health': 1.0, 'should': 1.0, 'issues': 1.0, 'software': 1.0, 'cause': 1.0, 'they': 1.0}
Word element => {'how': 1.0, 'fix': 1.0, 'properly': 1.0, 'not': 1.0, 'c': 1.0, 'on': 1.0, 'don': 2.0, 'number': 1.0, 'us': 1.0, 'they': 2.0, 'b': 1.0, 'glitches': 1.0, 'has': 2.0, 'only': 1.0, 'this': 1.0, 'it': 3.0, 'and': 2.0, 'get': 1.0, 'monitor': 1.0, 'have': 3.0, 'tech': 1.0, 'tons': 1.0, 'contact': 1.0, 'for': 1.0, 'product': 1.0, 'an': 1.0, 'back': 1.0, 'technical': 1.0, 'of': 1.0, 'there': 1.0, 'way': 1.0, 'aweful': 1.0, 'to': 4.0, 'now': 1.0, 'had': 1.0, 'baby': 1.0, 'them': 1.0, 'is': 1.0, 'working': 1.0, 'through': 1.0, 'support': 1.0, 'email': 1.0, 'know': 1.0, 'which': 1.0, 'take': 1.0, 'forever': 1.0, 'been': 2.0, 'that': 1.0, 'several': 1.0, 'times': 1.0, 's': 1.0, 'a': 2.0, 't': 2.0, 'we': 1.0, 'go': 1.0, 'without': 1.0}
Word element => {'good': 1.0, 'offer': 1.0, 'at': 1.0, 'type': 1.0, 'apple': 2.0, 'is': 1.0, 'for': 1.0, 'advice': 1.0, 'given': 1.0, 'live': 1.0, 'camera': 1.0, 'get': 1.0, 'way': 1.0, 'like': 1.0, 'which': 1.0, 'be': 1.0, 'trying': 1.0, 'this': 1.0, 'fios': 1.0, 'have': 2.0, 'i': 3.0, 'days': 1.0, 'response': 1.0, 'no': 1.0, 'hours': 1.0, 'company': 1.0, 'my': 2.0, 'some': 1.0, 'products': 1.0, 'support': 2.0, 'up': 1.0, 'over': 2.0, 'make': 1.0, 'your': 1.0, 'on': 2.0, 'least': 1.0, 'to': 8.0, 'as': 1.0, 'and': 5.0, 'network': 1.0, 'worst': 1.0, 'couldn': 1.0, 'try': 2.0, 'do': 1.0, 'me': 1.0, 'hour': 1.0, 'phone': 2.0, 'number': 1.0, 'provider': 1.0, 'verizon': 1.0, 'the': 4.0, 'going': 1.0, 'internet': 1.0, 't': 2.0, '24': 1.0, 'figure': 1.0, 'customer': 1.0, 'every': 2.0, 'times': 1.0, 'dns': 1.0, 'error': 1.0, 'under': 1.0, '5': 1.0, 'sun': 1.0, 'out': 1.0, 'what': 1.0, 'got': 1.0, 'wouldn': 1.0, 'call': 2.0, 'help': 1.0, 'co': 1.0, 'so': 1.0, 'questions': 1.0, 'after': 1.0, 'if': 1.0, '10': 1.0}
Word element => {'decision': 1.0, 'with': 2.0, 'happy': 1.0, 'very': 1.0, 'penny': 1.0, 'every': 1.0, 'worth': 1.0, 'well': 1.0, 'withings': 1.0, 'work': 1.0, 'it': 2.0, 'this': 2.0, 've': 1.0, 'in': 3.0, 'i': 4.0, 'whole': 1.0, 'up': 1.0, 'and': 3.0, 'setting': 1.0, 'girl': 1.0, 'got': 1.0, 'my': 2.0, 'march': 1.0, 'due': 1.0, 'able': 2.0, 'for': 1.0, 'love': 1.0, 'to': 3.0, 'all': 1.0, 'our': 1.0, 'been': 1.0, 'out': 1.0, 'options': 1.0, 'trying': 1.0, 'go': 1.0, 'we': 1.0, 's': 1.0, 'son': 1.0, 'is': 2.0, '5': 1.0, 'room': 1.0, 'talk': 1.0, 'works': 1.0, 'what': 1.0, 'amazingly': 1.0, 'video': 1.0, 'baby': 1.0, 'quality': 1.0, 'the': 2.0, 'want': 1.0, 'being': 2.0, 'who': 1.0, 'at': 1.0, 'alerts': 2.0, 'humidity': 1.0, 'check': 1.0, 'temp': 1.0, 'm': 2.0}
Word element => {'by': 1.0, 'would': 1.0, 'loved': 1.0, 'your': 1.0, 'talk': 1.0, 'lullabies': 1.0, 'boy': 1.0, 'the': 5.0, 'my': 3.0, 'at': 4.0, 'i': 2.0, 'comfort': 1.0, 'it': 5.0, 'baby': 2.0, 'every': 1.0, 'use': 1.0, 'during': 2.0, 'eyes': 1.0, 'also': 1.0, 'to': 4.0, 'all': 1.0, 'from': 1.0, 'open': 1.0, 'is': 3.0, 'take': 1.0, 'play': 1.0, 'and': 4.0, 'closed': 1.0, 'a': 1.0, 'see': 1.0, 'be': 1.0, 'look': 1.0, 'right': 1.0, 'work': 2.0, 'can': 2.0, 'home': 1.0, 'day': 1.0, 'close': 1.0, 'sure': 1.0, 'dor': 1.0, 'even': 1.0, 'delightful': 1.0, 'se': 1.0, 'including': 1.0, 'again': 1.0, 'you': 1.0, 'nigth': 1.0, 'living': 1.0, 'room': 1.0, 'of': 1.0, 'bed': 1.0, 'everything': 2.0, 'if': 1.0, 'useful': 1.0, 'are': 1.0, 'or': 1.0}
Word element => {'thing': 1.0, 'ethernet': 1.0, 'with': 1.0, 'worked': 1.0, 'baby': 1.0, 'connected': 1.0, 'alone': 1.0, 'let': 1.0, 'same': 1.0, 'in': 2.0, 'couldn': 1.0, 'well': 1.0, 'new': 1.0, 'modem': 1.0, 'nursery': 1.0, 'the': 5.0, 'and': 3.0, 'sq': 1.0, 'router': 3.0, 'monitor': 1.0, 'me': 1.0, 'get': 2.0, 'wirelessly': 1.0, 'house': 1.0, 'but': 1.0, 'work': 2.0, 'room': 2.0, '5000': 1.0, 'wanted': 1.0, 'i': 5.0, 'tried': 1.0, 'ft': 1.0, 'when': 1.0, 'times': 1.0, 'am': 1.0, 'after': 1.0, 'that': 1.0, 'great': 1.0, 'nada': 1.0, 'countless': 1.0, 'as': 2.0, 'to': 6.0, 'our': 1.0, 'wireless': 1.0, 'have': 1.0, 'this': 4.0, 'it': 4.0, 'sad': 1.0, 'for': 1.0, 'cable': 2.0, 'is': 2.0, 'so': 2.0, 'upstairs': 2.0, 's': 1.0, 't': 2.0, 'a': 4.0, 'we': 1.0, 'sync': 1.0, 'up': 1.0, 'always': 1.0, 'disconnected': 1.0, 'home': 1.0, 'network': 1.0, 'large': 1.0, 'few': 1.0, 'was': 1.0, 'upgraded': 1.0, 'minutes': 1.0, 'horrible': 1.0, 'use': 1.0, 'got': 1.0, 'didn': 1.0, 'even': 2.0, 'my': 1.0}
Word element => {'lullabies': 1.0, 'of': 1.0, 'spending': 1.0, 'see': 1.0, 'monitor': 1.0, 'sounds': 2.0, 'wave': 2.0, 'good': 1.0, 'always': 1.0, 'returned': 1.0, 'else': 1.0, 'buying': 1.0, 'time': 1.0, 'some': 1.0, 'works': 1.0, 'only': 1.0, 'yourself': 1.0, 'from': 2.0, 'execution': 1.0, 'great': 1.0, 'minutes': 1.0, 'done': 1.0, '15': 1.0, 'able': 1.0, 'not': 1.0, 'now': 1.0, 'worse': 1.0, 'clear': 1.0, 'i': 8.0, 'to': 4.0, 'terrible': 2.0, 'thought': 1.0, 'more': 1.0, 'is': 5.0, 'headaches': 1.0, 'app': 1.0, 'playing': 1.0, 'the': 6.0, 'can': 1.0, 'money': 2.0, 'withings': 1.0, 'but': 3.0, 'work': 3.0, 'issues': 1.0, 'have': 5.0, 'wish': 1.0, 'this': 6.0, 'it': 6.0, 'year': 2.0, 'one': 1.0, 'stop': 1.0, 'nothing': 1.0, 'concept': 1.0, 'working': 1.0, 'over': 1.0, 't': 1.0, 'a': 3.0, 'and': 5.0, 'kind': 1.0, 'get': 2.0, 'plays': 1.0, 'gotten': 1.0, 'there': 1.0, 'box': 1.0, 'that': 2.0, 'been': 1.0, 'uninstall': 1.0, 'thing': 1.0, 'frequently': 2.0, 'by': 1.0, 'just': 1.0, 'am': 1.0, 'data': 1.0, 'when': 1.0, 'because': 1.0, 'than': 1.0, 'does': 1.0, 'stops': 1.0, 'application': 2.0, 'something': 1.0, 'would': 2.0, 'reason': 1.0, 'itself': 1.0, 'in': 1.0, 'or': 1.0, 'save': 1.0, 'owned': 2.0, 'another': 1.0, 'force': 1.0, 'be': 1.0, 'improved': 1.0, 'has': 1.0, 'product': 1.0, 'for': 5.0, 'actually': 1.0}
Word element => {'idea': 1.0, 'brilliant': 1.0, 'anywhere': 1.0, 'from': 1.0, 'the': 3.0, 'is': 3.0, 'invaluable': 1.0, 'access': 1.0, 'that': 1.0, 'you': 1.0, 'quality': 1.0, 'fact': 1.0, 'image': 1.0, 'so': 1.0, 'sound': 1.0, 'it': 1.0, 'great': 1.0, 'can': 1.0}
Word element => {'level': 1.0, 'is': 5.0, 'by': 1.0, 'anything': 1.0, 'part': 1.0, 'from': 1.0, 'properly': 1.0, 'frustration': 1.0, 'not': 2.0, 'wrong': 1.0, 'only': 1.0, 'altogether': 1.0, 'luck': 1.0, 'through': 1.0, 'no': 1.0, 'about': 1.0, 'withing': 2.0, 'goes': 1.0, 'constant': 1.0, 'owning': 2.0, 'tried': 1.0, 'after': 1.0, 'questions': 1.0, 'for': 1.0, 'intentionally': 1.0, 'one': 2.0, 'connection': 1.0, 'total': 1.0, 'who': 1.0, 'was': 2.0, 'a': 5.0, 's': 1.0, 't': 1.0, 'worst': 1.0, 'and': 3.0, 'monitor': 3.0, 'f': 1.0, 'money': 1.0, 'work': 1.0, 'but': 2.0, 'inconsistencies': 1.0, 'will': 1.0, 'baby': 2.0, 'send': 1.0, 'give': 1.0, 'there': 2.0, 'the': 3.0, 'of': 4.0, 'product': 1.0, 'year': 2.0, 'support': 2.0, 'email': 2.0, 'issues': 1.0, 'call': 2.0, 'waste': 1.0, 'technical': 1.0, 'piece': 1.0, 'with': 1.0, 'stopped': 1.0, 'it': 3.0, 'this': 2.0, 'lousy': 1.0, 'answer': 1.0, 'especially': 1.0, 'phone': 1.0, 'number': 1.0, 'to': 4.0, 'working': 1.0, 'communicatethrough': 1.0, 'wirthing': 1.0, 'or': 1.0, '00': 1.0, 'can': 1.0, 'ask': 1.0, 'you': 1.0, 'gamble': 1.0, 'service': 1.0, 'every': 1.0, 'clarity': 1.0, 'if': 1.0, 'nobody': 1.0, 'buy': 1.0, 'something': 1.0, 'i': 3.0, 'out': 1.0, 'have': 1.0, 'complaint': 1.0, 'customer': 2.0, 'their': 1.0, 'website': 1.0, 'my': 1.0, '250': 1.0, 'gets': 1.0, 'kicked': 1.0, 'back': 1.0, 'an': 1.0, 'crappy': 1.0, 'equipment': 1.0, '34': 2.0, 'on': 2.0}
Word element => {'total': 1.0, 'high': 1.0, 'with': 1.0, 'has': 1.0, 'of': 1.0, 'another': 1.0, 'or': 1.0, 'replacement': 1.0, 'are': 1.0, 'device': 1.0, 'which': 1.0, 'manufacturer': 1.0, 'was': 1.0, 'refund': 1.0, 'within': 1.0, 'trying': 1.0, 'now': 1.0, 'am': 1.0, 'i': 2.0, 'money': 1.0, 'not': 1.0, 'respond': 1.0, 'slow': 1.0, 'products': 1.0, 'ridiculously': 1.0, 'support': 1.0, 'falls': 1.0, 'have': 1.0, 'do': 2.0, 'only': 2.0, 'they': 2.0, 'service': 1.0, 'customer': 1.0, '34': 4.0, 'offering': 1.0, 'and': 4.0, 'monitor': 1.0, 'get': 2.0, 'waste': 1.0, 'difference': 1.0, 'somehow': 1.0, 'stop': 1.0, 'after': 1.0, 'so': 1.0, 'baby': 1.0, 'night': 1.0, 'would': 2.0, 'nothing': 2.0, 'this': 2.0, 'it': 3.0, 'your': 1.0, 'make': 1.0, 'is': 3.0, 'monitors': 1.0, 'changed': 1.0, 'the': 5.0, 'terrible': 2.0, 'that': 2.0, 'their': 2.0, 'online': 2.0, 'disappointment': 1.0, 'had': 2.0, 'though': 1.0, 'help': 1.0, 'issues': 1.0, 'one': 2.0, 'product': 1.0, 'for': 2.0, 'from': 1.0, 'day': 1.0, 'to': 4.0, 'as': 1.0, 'all': 1.0, 'went': 1.0, 'warranty': 1.0, 'working': 1.0, 'through': 1.0, 'far': 1.0, 'booster': 1.0, 's': 1.0, 'we': 2.0, 't': 1.0, 'a': 5.0, 'internet': 1.0, 'in': 1.0, 'also': 1.0, 'hopes': 2.0, 'even': 2.0, 'didn': 1.0}
Word element => {'portion': 1.0, 'one': 1.0, 'uses': 1.0, 'have': 1.0, 'but': 1.0, 'fabulous': 1.0, 'a': 1.0, 'be': 1.0, 'would': 1.0, 'it': 1.0, 'get': 1.0, 'sure': 1.0, 'home': 2.0, 'tool': 1.0, 'anywhere': 1.0, 'wifi': 1.0, 'my': 3.0, 'invaluable': 1.0, 'of': 2.0, 'completely': 1.0, 'the': 4.0, 'well': 1.0, 'temperature': 1.0, 'm': 3.0, 'monitor': 1.0, 'functionality': 1.0, 'am': 1.0, 'upstairs': 1.0, 'so': 1.0, 'via': 1.0, 'baby': 2.0, 'for': 2.0, 'product': 1.0, 'that': 1.0, 'i': 6.0, 'and': 2.0, 'moved': 1.0, 'with': 1.0, 'quick': 1.0, 'found': 1.0, 'functional': 1.0, 'allows': 1.0, 'this': 1.0, 'viewing': 1.0, 'monitoring': 3.0, 'house': 1.0, 'an': 1.0, 'while': 2.0, 'from': 2.0, 'as': 1.0, 'to': 3.0, 'in': 2.0, 'sound': 1.0, 'connections': 1.0, 'alerts': 1.0, 'iphone': 1.0, 'able': 1.0, 'receive': 1.0, 'humidity': 1.0, 'detection': 3.0, 'want': 1.0, 'drops': 1.0, 'motion': 1.0, 'or': 1.0, 'rises': 1.0, 'on': 1.0, 'away': 2.0, 'ipad': 1.0, 'other': 2.0, 'making': 1.0}
Word element => {'out': 1.0, 'with': 1.0, 'feel': 1.0, 'item': 1.0, 'favorite': 1.0, 'far': 1.0, 'by': 1.0, 'dark': 1.0, 'about': 1.0, 'worry': 1.0, 'not': 1.0, 'so': 1.0, 'home': 2.0, 'easy': 2.0, 'and': 3.0, 'monitor': 2.0, 'up': 1.0, 'set': 1.0, 'view': 1.0, 'wifi': 1.0, 'my': 6.0, 'i': 7.0, 'true': 1.0, 'it': 7.0, 'love': 1.0, 'anywhere': 1.0, 'downstairs': 1.0, 'like': 1.0, 'using': 2.0, 'is': 2.0, 'the': 2.0, 'baby': 3.0, 'use': 2.0, 'be': 1.0, 'as': 1.0, 'to': 2.0, 'ipad': 2.0, 'or': 1.0, 'off': 1.0, 'on': 2.0, 'going': 1.0, 't': 1.0, 's': 1.0, 'a': 1.0, 'nap': 1.0, 'iphone': 2.0, 'from': 2.0, 'while': 1.0, 'at': 1.0, 'can': 4.0, 'work': 1.0, 'but': 1.0, 'was': 1.0, 'peak': 1.0, 'doesn': 1.0, 'concerned': 1.0, 'that': 1.0, 'screen': 1.0, 'would': 1.0, 'in': 1.0, 'turn': 2.0, 'am': 2.0, 'you': 1.0, 'when': 2.0}
Word element => {'case': 1.0, 'supposed': 1.0, 'isn': 1.0, 'believing': 1.0, 'be': 1.0, 'suggestions': 1.0, 'do': 1.0, 'about': 1.0, 'where': 1.0, 'worth': 1.0, 'now': 1.0, 'point': 1.0, 'mommy': 1.0, 'which': 1.0, 'mins': 1.0, '15': 1.0, 'has': 1.0, 'them': 1.0, 'checking': 1.0, 'rather': 1.0, 'were': 1.0, 'while': 1.0, 'mind': 2.0, 'peace': 2.0, 'just': 3.0, 'buy': 1.0, 'had': 2.0, 'mean': 1.0, 'their': 1.0, 'customer': 1.0, 'd': 1.0, 'expensive': 1.0, 'as': 1.0, 'better': 1.0, 'think': 1.0, 'would': 2.0, 'you': 2.0, 'questions': 1.0, 'any': 2.0, 'answer': 1.0, 'avail': 1.0, 'facebook': 1.0, 'on': 2.0, 'week': 1.0, 'hard': 1.0, 'over': 1.0, 'ticket': 1.0, 'didn': 1.0, '2nd': 1.0, 'than': 2.0, 'reading': 1.0, 'using': 1.0, 'technology': 1.0, 'product': 3.0, 'child': 2.0, 'year': 2.0, 'for': 2.0, 'was': 1.0, 'help': 2.0, 'anymore': 1.0, 'fix': 1.0, 'ahead': 1.0, 'ago': 2.0, 't': 2.0, 'last': 1.0, 'am': 3.0, 'penny': 1.0, 'up': 2.0, 'less': 1.0, 'home': 1.0, 'after': 4.0, 'a': 7.0, 'small': 1.0, 'appreciated': 1.0, 'have': 7.0, 'went': 1.0, 'born': 1.0, 'move': 1.0, 'bedroom': 1.0, 'reviews': 1.0, 'we': 1.0, 'deaf': 2.0, 'bought': 2.0, 'glitches': 1.0, 'it': 11.0, 'with': 5.0, 'children': 2.0, 'hear': 1.0, 'this': 9.0, 'kids': 3.0, 'perfect': 1.0, 'broken': 1.0, 'i': 15.0, 'husband': 2.0, 'woke': 1.0, 'my': 8.0, 'me': 3.0, 'if': 2.0, 'every': 2.0, 'service': 1.0, 'stay': 1.0, 'not': 2.0, 'monitor': 4.0, 'anyone': 2.0, 'and': 6.0, 'setting': 1.0, 'napping': 1.0, 'but': 3.0, 'all': 4.0, 'fixed': 1.0, 'to': 9.0, 'situation': 1.0, '2': 1.0, 'thing': 1.0, 'no': 3.0, 'battery': 1.0, 'withings': 1.0, 'hearing': 2.0, 'from': 1.0, 'naps': 1.0, 'anything': 1.0, 'in': 7.0, 'mornings': 1.0, 'leaves': 1.0, 'early': 1.0, 'before': 1.0, 'first': 3.0, 'are': 1.0, 'awake': 1.0, 'getting': 1.0, 'equals': 1.0, 'did': 1.0, 'greatly': 1.0, 'need': 1.0, 'or': 2.0, 'advice': 1.0, 'plug': 1.0, 'around': 1.0, 'room': 1.0, 'these': 1.0, 'comes': 1.0, 'loved': 1.0, 'through': 1.0, 'because': 1.0, 'that': 2.0, 'frustrated': 1.0, 'plugs': 1.0, 'been': 2.0, 'time': 1.0, 'new': 1.0, 'worked': 2.0, 'shell': 1.0, 'great': 1.0, 'out': 2.0, 'when': 1.0, 'what': 2.0, 'of': 2.0, 'person': 1.0, 'the': 9.0, 'longer': 1.0, 'at': 2.0, 'is': 6.0, 'recharger': 1.0, 'part': 2.0, 'touch': 2.0, 'wrote': 1.0}
Word element => {'store': 1.0, 'returned': 1.0, 'yet': 1.0, 'but': 1.0, 'version': 1.0, 'released': 1.0, 'was': 1.0, 'baked': 1.0, 'half': 1.0, 'general': 1.0, 'happening': 2.0, 'five': 1.0, 'much': 2.0, 'as': 2.0, 'delay': 1.0, 'noticeable': 1.0, 'few': 1.0, 'photos': 1.0, 'series': 1.0, 'like': 2.0, 'most': 1.0, 'choppy': 1.0, '5': 1.0, 'what': 2.0, 'sleeps': 1.0, 'obscuring': 1.0, 'partially': 1.0, 'not': 2.0, 'camera': 2.0, 'actually': 1.0, 'us': 1.0, 'no': 1.0, 'horrible': 1.0, '000': 1.0, 'annoying': 1.0, 'so': 2.0, 'terrible': 1.0, 'charges': 1.0, 'take': 1.0, '15': 1.0, 'somewhere': 1.0, 'made': 1.0, 'good': 1.0, 'had': 1.0, 'configure': 1.0, 'wife': 2.0, 'same': 1.0, 'around': 1.0, 'least': 1.0, 'notifications': 1.0, 'course': 1.0, 'an': 2.0, 'other': 1.0, 'have': 4.0, 'running': 1.0, 'incorporate': 1.0, '10': 1.0, 'gb': 1.0, 'rid': 1.0, 'very': 1.0, '16': 2.0, 'streaming': 1.0, 'barely': 1.0, 'app': 1.0, 'note': 1.0, 'plan': 2.0, 'iphone': 1.0, 'mute': 1.0, 'off': 3.0, 'turned': 2.0, 'position': 1.0, 'several': 1.0, 'defeats': 1.0, 'wifi': 2.0, 'alerts': 8.0, 'accidentally': 2.0, 'hated': 2.0, 'on': 6.0, 'cost': 1.0, 't': 3.0, 'open': 1.0, 'left': 2.0, 'work': 1.0, 'up': 4.0, 'she': 1.0, 'ended': 2.0, 'make': 1.0, 'heard': 1.0, 'time': 2.0, 'or': 2.0, 'also': 2.0, 'need': 1.0, 'her': 4.0, 'i': 18.0, 'any': 1.0, 'your': 2.0, 'about': 1.0, 'overage': 1.0, 'monitor': 5.0, 'constantly': 1.0, 'and': 15.0, 'based': 1.0, 'in': 10.0, 'temperature': 2.0, 'dozens': 1.0, 'ok': 1.0, 'extremely': 1.0, 'day': 1.0, 'the': 31.0, 'even': 1.0, 'of': 13.0, 'humidity': 2.0, 'than': 1.0, 'over': 1.0, 'wake': 1.0, 'sound': 2.0, 'luckily': 1.0, 'definitely': 1.0, 'loses': 1.0, 'every': 1.0, 'video': 2.0, 'product': 4.0, 'night': 4.0, 'monitors': 1.0, 'things': 1.0, 'you': 6.0, 'quality': 2.0, 'that': 2.0, 'because': 1.0, 'all': 3.0, 'way': 2.0, '20': 1.0, 'it': 9.0, 'using': 1.0, 'with': 4.0, 'wouldn': 1.0, 'more': 2.0, 'into': 1.0, 'considering': 1.0, 'turn': 1.0, 'can': 4.0, 'is': 16.0, 'vision': 2.0, 'at': 3.0, 'these': 1.0, 'small': 1.0, 'liked': 1.0, 'built': 1.0, 'this': 10.0, 'days': 1.0, 'sensor': 1.0, 'when': 2.0, 'data': 3.0, 'has': 1.0, 'seen': 1.0, 'order': 1.0, '4': 1.0, 'mistake': 1.0, 'couldn': 1.0, 'followed': 1.0, 'if': 3.0, 'great': 2.0, 'comes': 1.0, 'better': 1.0, 'unfortunately': 1.0, 'gigabytes': 1.0, 'feels': 1.0, 'daughter': 3.0, 'during': 1.0, 'out': 1.0, 'seconds': 2.0, 'for': 5.0, '1': 1.0, 'tell': 1.0, 'head': 1.0, 'whenever': 1.0, 'from': 1.0, 'purpose': 1.0, 'beta': 1.0, 'stuffed': 1.0, 'movement': 1.0, 'getting': 1.0, 's': 3.0, 'smart': 1.0, 'surprising': 1.0, 'spams': 1.0, 'how': 1.0, 'our': 2.0, 'high': 1.0, '2': 1.0, 'end': 2.0, 'unlimited': 1.0, '3': 1.0, 'mostly': 1.0, 'apparently': 1.0, 'which': 2.0, 'monitoring': 1.0, 'minutes': 1.0, 'two': 2.0, 'after': 3.0, 'by': 1.0, 'now': 1.0, 'signal': 1.0, 'second': 1.0, 'know': 1.0, 'should': 1.0, 'leaves': 1.0, 'to': 6.0, 'right': 1.0, 'll': 1.0, 'away': 1.0, 'morning': 1.0, 'usually': 2.0, 'idea': 1.0, 'between': 2.0, '8': 1.0, 'first': 1.0, '12': 1.0, 'phone': 1.0, 'want': 1.0, 'sleep': 1.0, 'baby': 6.0, 'hours': 1.0, 'disabled': 1.0, 'could': 1.0, 'afternoons': 1.0, 'otherwise': 1.0, 'often': 1.0, 'device': 1.0, 'get': 4.0, 'my': 7.0, 'room': 4.0, 'hour': 1.0, 'those': 1.0, 've': 1.0, 'damn': 1.0, 'a': 10.0, 'nap': 1.0, 'spammed': 1.0, 'there': 4.0, 'bunny': 1.0, 'status': 1.0, 'would': 1.0, 'bar': 2.0, 'bottom': 1.0, 'screen': 1.0, 'move': 1.0, 'set': 1.0}
Word element => {}
Word element => {'monitor': 1.0, '5': 1.0, 'on': 1.0, 'good': 1.0, 'not': 1.0, 'i': 1.0, '4': 1.0, 'network': 1.0, 'from': 1.0, 'disconnecting': 1.0, 'concept': 1.0, 'way': 1.0, 'a': 2.0, 'with': 1.0, 'it': 1.0, 'is': 2.0, 'of': 1.0, 'connected': 1.0, 'every': 1.0, 'features': 1.0, 'awesome': 1.0, 'well': 1.0, 'review': 1.0, 'are': 1.0, 'the': 5.0, 'bash': 1.0, 'constant': 1.0, 'product': 1.0, 'especially': 2.0, 'new': 1.0, 'being': 1.0, 'contemplating': 1.0, 'so': 1.0, 'getting': 1.0, 'insane': 1.0, 'sometimes': 1.0, 'its': 1.0, 'apple': 1.0, 'other': 1.0, 'this': 2.0, 'minute': 1.0, 'old': 1.0, 'and': 1.0, 'too': 1.0, 'am': 1.0, 'you': 1.0, 'when': 1.0, 'unreliable': 1.0, 'better': 1.0, 'have': 1.0, 'born': 1.0, 'does': 1.0, 'most': 1.0, 'work': 1.0, 'regular': 1.0, 'in': 1.0, 'my': 1.0, 'iphone': 1.0}
Word element => {'us': 1.0, 'help': 1.0, 'great': 1.0, 'another': 1.0, 'hasn': 1.0, 'were': 1.0, 'baby': 1.0, 'useitfor': 1.0, 'is': 1.0, 'second': 1.0, 'excitedto': 1.0, 'shown': 1.0, 'have': 1.0, 'money': 1.0, 'but': 2.0, 'work': 2.0, 'an': 1.0, 'back': 1.0, 'response': 1.0, 'dead': 1.0, 'doesnt': 1.0, 'looks': 1.0, 'it': 1.0, 'our': 2.0, 'all': 1.0, 'to': 5.0, 'as': 1.0, 'received': 1.0, 'noone': 1.0, 'unsatisfactory': 1.0, 'and': 2.0, 'get': 1.0, 'battery': 1.0, 'no': 1.0, 'customer': 1.0, 'service': 1.0, 'or': 1.0, 'product': 2.0, 'where': 1.0, 'complain': 1.0, 't': 1.0, 'we': 3.0, 's': 1.0, 'a': 1.0, 'real': 1.0, 'care': 1.0, 'solution': 1.0, 'problem': 2.0, 'seems': 1.0}
Word element => {'research': 1.0, 'so': 1.0, 'reported': 1.0, 'problems': 1.0, 'other': 1.0, 'somewhere': 1.0, 'outsourced': 1.0, 'being': 1.0, 'way': 1.0, 'the': 2.0, 'buyer': 1.0, 'many': 1.0, 'via': 1.0, 'sense': 1.0, 'stopped': 1.0, 'it': 2.0, 'and': 1.0, 'monitor': 1.0, 'get': 1.0, 'only': 1.0, 'do': 2.0, 'seems': 1.0, 'did': 1.0, 'anyone': 1.0, 'be': 1.0, 'ware': 1.0, 'from': 1.0, 'sound': 1.0, 'don': 1.0, 'to': 2.0, 'any': 1.0, 'our': 1.0, 'their': 1.0, 'last': 1.0, 'not': 1.0, 'baby': 2.0, 'night': 1.0, 't': 1.0, 'we': 1.0, 'stops': 1.0, 'working': 2.0, 'like': 1.0, 'cry': 1.0, 'randomly': 1.0, 'days': 1.0, 'is': 2.0, 'support': 2.0, 'email': 1.0, 'takes': 1.0, 'back': 1.0, 'when': 1.0, 'they': 1.0, 'first': 1.0, 'hear': 2.0, 'respond': 1.0, 'answers': 1.0, 'your': 1.0, 'make': 1.0}
Word element => {'use': 1.0, 'was': 2.0, 'after': 2.0, 't': 1.0, 'the': 1.0, 'theory': 1.0, 'we': 1.0, 'would': 1.0, 'disconnect': 1.0, 'much': 1.0, 'very': 1.0, 'decided': 1.0, 'best': 1.0, 'you': 1.0, 'disappointed': 1.0, 'moniter': 1.0, 'in': 1.0, 'this': 1.0, 'research': 1.0, 'it': 3.0, 'month': 1.0, 'but': 1.0, 'baby': 1.0, 'about': 1.0, 'a': 1.0, 'constantly': 1.0, 'couldn': 1.0, 'and': 1.0}
Word element => {'weight': 1.0, '300': 1.0, 'ends': 1.0, 'baby': 1.0, 'with': 1.0, 'take': 1.0, 'mail': 1.0, 'slow': 1.0, 'support': 1.0, 'cant': 1.0, 'bought': 1.0, 'one': 2.0, 'product': 1.0, 'for': 2.0, 'paper': 1.0, 'tries': 1.0, 'doesn': 1.0, 'but': 1.0, 'work': 2.0, 'thought': 1.0, 'we': 1.0, 'a': 3.0, 't': 1.0, 'the': 5.0, 'time': 1.0, 'simply': 1.0, 'company': 1.0, 'another': 1.0, 'this': 1.0, 'it': 5.0, 'risk': 1.0, 'only': 1.0, 'first': 1.0, 'our': 1.0, 'to': 3.0, 'response': 1.0, 'wanted': 1.0, 'comes': 1.0, 'and': 4.0, 'gave': 2.0, 'buffering': 1.0, 'customer': 1.0, 'really': 1.0, 'of': 1.0, 'tons': 1.0, 'set': 1.0, 'faulty': 1.0, 'up': 2.0, 'endless': 1.0, 'new': 1.0, 'shot': 1.0, 'find': 1.0, 'being': 1.0, 'same': 1.0, 'results': 1.0, 'worked': 1.0, 'properly': 1.0, 'i': 1.0, 'two': 1.0, 'no': 1.0, 'days': 1.0, 'e': 1.0, 'call': 1.0, 'then': 1.0, 'returned': 1.0, 'way': 1.0}
Word element => {'drain': 1.0, 'couple': 1.0, 'received': 1.0, 'refund': 1.0, 't': 1.0, 'don': 1.0, 'surprisingly': 1.0, 'make': 1.0, 'they': 2.0, 'respond': 1.0, 'day': 1.0, 'communication': 1.0, 'each': 1.0, 'human': 1.0, 'no': 1.0, 'there': 1.0, 'two': 1.0, 'for': 1.0, 'with': 2.0, 'been': 1.0, 'now': 1.0, 'i': 2.0, 'service': 1.0, 'nursery': 1.0, 'all': 1.0, 'hundred': 1.0, 'router': 1.0, 'wireless': 1.0, 'literally': 1.0, 'apartment': 1.0, 'sized': 1.0, 'times': 1.0, 'modest': 1.0, 'live': 1.0, 'wake': 1.0, 'notification': 1.0, 'reconnect': 2.0, 'connections': 1.0, 'unable': 1.0, 'as': 1.0, 'problem': 1.0, 'pinch': 1.0, 'failing': 1.0, 'kept': 1.0, 's': 1.0, 'then': 1.0, 'we': 3.0, 'a': 12.0, 'ask': 1.0, 'can': 1.0, 'so': 3.0, 'drops': 1.0, 'category': 1.0, 'account': 1.0, 'overall': 2.0, 'withings': 1.0, 'but': 5.0, 'over': 2.0, 'work': 2.0, 'dropped': 1.0, 'money': 1.0, 'most': 2.0, 'does': 1.0, 'probably': 1.0, 'your': 1.0, 'working': 1.0, 'customer': 2.0, 'see': 1.0, 'tried': 1.0, 'terrible': 3.0, 'lastly': 1.0, 'generates': 1.0, 'setup': 1.0, 'initial': 1.0, 'cannot': 1.0, 'buy': 1.0, 'have': 5.0, 'down': 1.0, 've': 1.0, 'past': 1.0, 'basic': 1.0, 'in': 5.0, 'review': 1.0, 'just': 2.0, 'not': 2.0, 'video': 1.0, 'weeks': 1.0, 'summer': 1.0, 'connection': 1.0, 'good': 1.0, 'monitor': 4.0, 'and': 8.0, 'one': 1.0, 'too': 1.0, 'support': 2.0, 'is': 8.0, 'changes': 1.0, 'more': 1.0, 'smart': 1.0, 'different': 1.0, 'sucks': 1.0, 'rooms': 1.0, 'law': 1.0, 'save': 1.0, 'ordered': 1.0, 'eventually': 1.0, 'my': 1.0, 'exchanging': 1.0, 'baby': 2.0, 'few': 1.0, 'this': 4.0, 'speak': 1.0, 'it': 5.0, 'has': 1.0, 'tries': 1.0, 'never': 2.0, 'long': 1.0, 'important': 1.0, 'charge': 1.0, 'from': 2.0, 'before': 1.0, 'room': 1.0, 'worked': 2.0, 'requested': 1.0, 'app': 2.0, 'got': 1.0, 'however': 1.0, 'three': 1.0, 'emails': 1.0, 'keep': 1.0, 'takes': 1.0, 'up': 1.0, 'major': 1.0, 'that': 3.0, 'problems': 1.0, 'took': 1.0, 'iphone': 1.0, 'sort': 1.0, 'mother': 1.0, 'works': 1.0, 'usually': 1.0, 'suffers': 1.0, 'function': 1.0, 'same': 1.0, 'notifications': 2.0, 'multiple': 2.0, 'line': 1.0, 'features': 1.0, 'nutshell': 1.0, 'importantly': 1.0, 'continues': 1.0, 'get': 1.0, 'pretty': 1.0, 'to': 6.0, 'the': 22.0, 'device': 3.0, 'of': 1.0, 'humidity': 1.0, 'int': 1.0, 'he': 1.0, 'unfortunate': 1.0, 'low': 1.0, 'bucks': 1.0, 'you': 3.0}
Word element => {'awesome': 1.0, 'country': 1.0, 'across': 1.0, 'see': 2.0, 'no': 2.0, 'incredible': 1.0, 'this': 1.0, 'at': 1.0, 'was': 1.0, 'my': 2.0, 'wow': 1.0, 'the': 3.0, 'greatest': 1.0, 'i': 3.0, 'can': 2.0, 'works': 1.0, 'it': 1.0, 'baby': 3.0, 'ever': 1.0, 'office': 1.0, 'bought': 1.0, 'worries': 2.0, 'toy': 1.0}
Word element => {'these': 1.0, 'considering': 1.0, 'seriously': 1.0, 'm': 1.0, 'without': 1.0, 'tricky': 1.0, 'faq': 1.0, 'learned': 1.0, 'even': 1.0, 'poorer': 1.0, 'degrees': 1.0, 'end': 1.0, 'bracket': 2.0, 'foot': 1.0, 'time': 1.0, 'needs': 4.0, 'both': 1.0, 'some': 1.0, 'decent': 1.0, 'propped': 1.0, 's': 4.0, 'a': 4.0, 'binder': 1.0, 'glorified': 1.0, 'from': 1.0, 'withings': 1.0, 'use': 1.0, 'and': 4.0, 'away': 1.0, 'attached': 2.0, 'have': 1.0, 'attaches': 1.0, 'younger': 1.0, 'crib': 4.0, 'of': 1.0, 'the': 14.0, 'opened': 1.0, 'dresser': 1.0, 'any': 2.0, 'pretty': 1.0, 'to': 17.0, 'horrible': 1.0, 'as': 1.0, 'be': 5.0, 'was': 1.0, 'using': 2.0, 'pull': 2.0, 'resolution': 3.0, 'really': 4.0, 'baby': 2.0, 'off': 4.0, 'tried': 1.0, 'putting': 1.0, 'i': 6.0, 'this': 3.0, 'up': 1.0, 'carefully': 1.0, 'him': 1.0, 'it': 9.0, 'daytime': 1.0, 'or': 2.0, 'on': 4.0, '3': 1.0, 'much': 1.0, 'put': 1.0, 'just': 1.0, 'clip': 1.0, 'who': 1.0, 'included': 1.0, 'so': 1.0, 'can': 1.0, 'standing': 1.0, 'had': 1.0, 'could': 1.0, 'will': 1.0, 'rip': 1.0, 'thing': 1.0, 'reasons': 1.0, 'website': 1.0, 'my': 1.0, 'son': 1.0, 'is': 5.0, 'angled': 1.0, '90': 1.0, 'blocks': 1.0, 'explain': 1.0, 'around': 1.0, 'almost': 1.0, 've': 1.0, 'would': 1.0, 'he': 1.0, 'not': 1.0, 'touch': 1.0, 'that': 6.0, 'because': 1.0, 'mounting': 1.0, 'very': 2.0, 'expensive': 1.0, 'returning': 1.0, 'however': 1.0, 'easy': 3.0, 'break': 1.0, 'mount': 1.0, 'careful': 1.0, 'nervous': 1.0, 'guess': 1.0, 'camera': 3.0, 'toddler': 1.0, 'for': 1.0, 'yank': 2.0, 'night': 1.0, 'you': 1.0, 'shelf': 2.0, 'then': 1.0, 'one': 1.0, 'big': 1.0, 'drawback': 1.0}
Word element => {'babies': 1.0, 'check': 1.0, 'wrote': 1.0, 'as': 1.0, 'literally': 1.0, 'maintain': 1.0, 'again': 1.0, 'old': 1.0, 'repeatedly': 1.0, 'fails': 1.0, 'plugging': 1.0, 'did': 1.0, 'no': 1.0, 'router': 1.0, 'our': 1.0, 'overall': 1.0, 'reconfiguring': 1.0, 've': 1.0, 'registered': 1.0, 'help': 1.0, 'sound': 1.0, 'end': 1.0, 'noises': 1.0, 'any': 1.0, 'actually': 1.0, 'live': 1.0, 'disconnected': 1.0, 'plain': 1.0, 'why': 1.0, 'just': 3.0, 'or': 1.0, 'lost': 1.0, 'loading': 1.0, 'would': 1.0, 'either': 1.0, 'location': 1.0, 'rarely': 1.0, 'always': 1.0, 'apartment': 1.0, 'nearly': 1.0, 'is': 2.0, 'off': 1.0, 'see': 1.0, 'tried': 2.0, 'seems': 1.0, 'both': 1.0, 'ipad': 1.0, 'wireless': 1.0, 'started': 1.0, 'easy': 1.0, 'relatively': 1.0, 'up': 1.0, 'drop': 1.0, 'set': 1.0, 'box': 1.0, 'beautiful': 1.0, 'avail': 1.0, 'want': 1.0, 'original': 1.0, 'they': 2.0, 'circuit': 1.0, 'iphone': 1.0, 'contacted': 1.0, 'have': 2.0, 'also': 1.0, 'rely': 2.0, 'in': 4.0, 'got': 1.0, 'needs': 1.0, 'turning': 1.0, 'july': 1.0, 'micro': 2.0, 'usb': 2.0, 'really': 3.0, 'customer': 3.0, 'work': 1.0, 'hard': 1.0, 'from': 3.0, 'fix': 2.0, 'hear': 1.0, 'period': 1.0, 'to': 11.0, 'stars': 2.0, 'cord': 1.0, 'for': 5.0, 'and': 10.0, 'soon': 1.0, 'monitor': 10.0, 'figure': 1.0, 'baby': 1.0, 'she': 2.0, 'raised': 1.0, 'one': 4.0, 'months': 1.0, 'trick': 1.0, 'thing': 1.0, '2': 1.0, 'withings': 3.0, 'board': 1.0, 'but': 3.0, 'so': 2.0, 'can': 3.0, 'without': 1.0, '4': 1.0, 'review': 2.0, 'kicked': 1.0, 'when': 1.0, '2014': 1.0, 'i': 18.0, 'broke': 3.0, 'better': 1.0, 'process': 1.0, 'think': 1.0, 'itself': 1.0, 'not': 1.0, 'looks': 1.0, 'post': 1.0, 'my': 4.0, 'me': 2.0, 'connection': 3.0, 'the': 23.0, 'of': 6.0, 'fantastic': 1.0, 'twins': 1.0, 'you': 3.0, 'on': 4.0, 'long': 1.0, 'update': 1.0, 'out': 2.0, 'wasn': 1.0, 'other': 1.0, 'an': 1.0, 'all': 1.0, 'helped': 2.0, 'because': 1.0, 'that': 4.0, 'this': 6.0, 'a': 5.0, 'then': 1.0, 'we': 2.0, 'go': 2.0, 'broken': 1.0, 'simple': 1.0, 'find': 1.0, 'since': 2.0, 'was': 3.0, 'part': 1.0, 'within': 1.0, 'be': 1.0, 'through': 1.0, 'expensive': 1.0, 'sent': 2.0, 'back': 3.0, 'time': 1.0, 'new': 2.0, 'it': 9.0, 'thought': 1.0, 'had': 1.0, 'warranty': 1.0, 'sure': 1.0, 'unplugging': 1.0, 'd': 2.0, 'some': 3.0, 'technology': 1.0, 'sending': 1.0, 'inside': 1.0, 'went': 1.0, 'only': 1.0, 'quickly': 1.0, 'brand': 1.0, 'hand': 1.0, 'signal': 1.0, 'like': 3.0, 'if': 1.0, 'service': 3.0, 'still': 1.0, 'stuck': 1.0, 'connectivity': 2.0, 'issues': 2.0, 't': 3.0, 'beat': 1.0, 'price': 1.0, 'video': 1.0, 'thank': 1.0}
Word element => {'her': 1.0, 'up': 1.0, 'run': 1.0, 'home': 1.0, 'm': 1.0, 'i': 2.0, 'iphone': 1.0, 'my': 1.0, 'can': 1.0, 'work': 1.0, 'check': 2.0, 'able': 1.0, 'especially': 1.0, 'need': 1.0, 'what': 1.0, 'box': 1.0, 'cute': 1.0, 'in': 1.0, 'convenience': 1.0, 'superb': 1.0, 'interface': 1.0, 'whenever': 1.0, 'user': 1.0, 'packaging': 1.0, 'like': 2.0, 'monitor': 2.0, 'terrible': 1.0, 'stylish': 1.0, 'were': 1.0, 'crappy': 1.0, 'awesome': 1.0, 'features': 2.0, 'really': 1.0, 'many': 1.0, 'just': 1.0, '1': 1.0, 'great': 2.0, 'are': 1.0, 'it': 5.0, 'perfect': 1.0, 'this': 1.0, 'quality': 2.0, 'baby': 3.0, 'crazy': 1.0, 'be': 1.0, 'prices': 2.0, 'wedding': 1.0, 'so': 1.0, 'for': 2.0, 'product': 1.0, 'effect': 1.0, 'monitors': 1.0, 'venues': 1.0, 'from': 3.0, 'and': 4.0, 'soon': 1.0, 'say': 1.0, 'we': 1.0, 's': 4.0, 'a': 2.0, 'go': 1.0, 'roof': 1.0, 'you': 1.0, 'webcam': 1.0, 'working': 1.0, 'through': 1.0, 'on': 3.0, 'make': 1.0, 'the': 5.0, 'basically': 1.0, 'want': 1.0, 'being': 1.0, 'if': 1.0, 'other': 1.0, 'apple': 1.0, 'all': 1.0, 'as': 2.0, 'to': 4.0, 'would': 1.0}
Word element => {'money': 1.0, 'your': 1.0, 'save': 1.0, 'my': 1.0, 'respond': 1.0, 'weeks': 1.0, '3': 1.0, 'also': 1.0, 'constantly': 1.0, 'withings': 1.0, 'on': 1.0, 'switches': 1.0, 'vision': 1.0, 'took': 1.0, 'i': 1.0, 'night': 1.0, 'the': 3.0, 'connection': 1.0, 'inquiry': 1.0, 'kicked': 1.0, 'bluetooth': 1.0, 'customer': 1.0, 'lose': 1.0, 'to': 3.0, 'get': 1.0, 'and': 2.0, 'monitor': 1.0, 'it': 1.0, 'off': 2.0, 'service': 1.0, 'almost': 1.0}
Word element => {'them': 1.0, 'hear': 1.0, 'watch': 1.0, 'makes': 1.0, 'to': 3.0, 'now': 1.0, 'and': 5.0, 'while': 1.0, 'matter': 1.0, 'easy': 1.0, 'up': 1.0, 'camera': 1.0, 'in': 4.0, 'also': 1.0, 'that': 1.0, 'touch': 1.0, 'puppies': 1.0, 'can': 3.0, 'it': 6.0, 'this': 1.0, 'with': 1.0, 'really': 1.0, 'is': 1.0, 'dependable': 1.0, 'feel': 1.0, 'very': 1.0, 'live': 1.0, 'am': 1.0, 'a': 1.0, 's': 1.0, 't': 1.0, 'pets': 1.0, 'without': 1.0, 'the': 2.0, 'ipads': 1.0, 'have': 3.0, 'crate': 1.0, 'able': 1.0, 'good': 1.0, 'be': 2.0, 'me': 1.0, 'stay': 1.0, 'my': 3.0, 'no': 1.0, 'restaurants': 1.0, 'i': 5.0, 'two': 1.0, 'love': 1.0, 'where': 1.0, 'app': 1.0, 'on': 1.0, 'iphone': 1.0, 'both': 1.0, 'set': 1.0, 'used': 1.0, 'car': 1.0}
Word element => {'recommend': 1.0, 'highly': 1.0, 'would': 1.0, 'i': 1.0, 'free': 1.0, 'g': 1.0, '3': 1.0, 'that': 1.0, 'to': 1.0, 'now': 1.0, 'for': 1.0, 'anyone': 1.0, 'in': 1.0, 'perfect': 1.0, 'monitor': 1.0, 'and': 2.0, 'quality': 1.0, 'video': 1.0, 'is': 3.0, 'room': 1.0, 'on': 1.0, 'seeing': 1.0, 'my': 1.0, 'works': 2.0, 'the': 3.0, 'great': 3.0, 'when': 1.0, 'you': 1.0, 'it': 2.0, 'this': 1.0, 'come': 1.0, 'nightlight': 1.0, 'iphone': 1.0, 'ipad': 1.0}
Word element => {'5': 1.0, '3': 1.0, 'infrared': 1.0, 'wireless': 1.0, 'remote': 1.0, 'motorolamotorola': 1.0, 'buying': 1.0, 'up': 1.0, 'ended': 1.0, 'who': 1.0, 'back': 1.0, 'interested': 1.0, 'line': 1.0, 'lan': 1.0, 'establishing': 1.0, 'bluetooth': 1.0, 'due': 1.0, 'am': 1.0, 'book': 1.0, 'flipping': 1.0, 'someone': 1.0, 'right': 1.0, 'left': 1.0, 'move': 1.0, 'arm': 1.0, 'see': 1.0, 'something': 2.0, 'like': 2.0, 'room': 1.0, 'placed': 1.0, 'seen': 1.0, 'between': 1.0, 'delay': 1.0, 'there': 1.0, 'fact': 1.0, 'thing': 1.0, 'minds': 1.0, 'through': 2.0, 'screaming': 1.0, 'daughter': 1.0, 'newborn': 1.0, 'amazon': 1.0, 'thoughts': 1.0, 'one': 1.0, 'reoccurring': 1.0, 'be': 1.0, 'created': 1.0, 'guide': 1.0, 'connection': 3.0, 'month': 1.0, 'fix': 1.0, 'stopped': 2.0, 'it': 5.0, 'kept': 1.0, 'on': 6.0, 'working': 2.0, 'retrieve': 1.0, 'we': 4.0, 'application': 3.0, 'vision': 1.0, 'at': 1.0, 'not': 4.0, 'extra': 1.0, 'day': 1.0, 'would': 2.0, 'weeks': 1.0, 'but': 2.0, 'other': 1.0, 'playing': 1.0, 'an': 1.0, 'addition': 1.0, 'from': 2.0, 'wife': 2.0, 'eliminating': 1.0, 'sent': 1.0, 'thus': 1.0, 'iphones': 3.0, 'more': 1.0, 'smart': 2.0, 'sure': 1.0, 'seemed': 2.0, 'showing': 1.0, 'two': 1.0, 'slept': 1.0, 'i': 4.0, 'prevalent': 1.0, 'carry': 1.0, 'pages': 1.0, 'you': 1.0, 'motion': 1.0, 'night': 2.0, 'able': 1.0, 'apparent': 1.0, 'us': 1.0, 'need': 1.0, 'doing': 1.0, 'of': 2.0, 'the': 20.0, 'myself': 1.0, 'purchased': 1.0, 'had': 1.0, 'refunded': 1.0, 'correct': 2.0, 'slow': 1.0, 'later': 1.0, 'being': 2.0, 'message': 1.0, 'to': 10.0, 'awesome': 1.0, 'about': 1.0, 'picture': 1.0, 'monitor': 9.0, 'and': 5.0, 'responded': 1.0, 'a': 12.0, 'procedural': 1.0, 'ago': 1.0, 'could': 2.0, 's': 1.0, 'peacefully': 1.0, '4s': 1.0, 'were': 2.0, 'known': 1.0, 'my': 2.0, 'heard': 1.0, 'time': 2.0, 'mbp36': 1.0, 'so': 2.0, 'almost': 1.0, 'error': 1.0, 'they': 1.0, 'zoom': 1.0, 'annoying': 1.0, 'as': 3.0, 'unable': 1.0, 'information': 1.0, 'actually': 1.0, 'video': 1.0, 'product': 1.0, 'found': 1.0, 'wiithings': 2.0, 'this': 4.0, 'inch': 1.0, 'provided': 1.0, 'out': 1.0, 'that': 6.0, 'watching': 1.0, 'next': 1.0, 'what': 2.0, 'when': 1.0, 'saw': 1.0, 'her': 1.0, 'where': 2.0, 'phone': 1.0, 'immediately': 1.0, 'contacted': 1.0, 'problem': 2.0, 'within': 1.0, '24': 1.0, 'promptly': 1.0, 'hours': 1.0, 'she': 1.0, 'baby': 6.0, 'unfortunately': 1.0, 'was': 13.0, 'issue': 3.0, 'support': 1.0, 'with': 3.0, 'bring': 1.0, 'pdf': 1.0, 'purchase': 1.0, 'slowly': 1.0, 'accept': 1.0, 'document': 1.0, 'our': 7.0, 'how': 2.0, 'in': 4.0, 'happening': 1.0, 'than': 1.0, 'particular': 1.0}
Word element => {'version': 1.0, 'for': 1.0, 'wait': 1.0, 'waste': 1.0, 'picture': 1.0, 'of': 1.0, 'life': 1.0, 'slick': 1.0, 'the': 2.0, 'looks': 1.0, 'baby': 1.0, 'out': 1.0, 'this': 1.0, 'battery': 1.0, 'next': 1.0, 'your': 2.0, 'has': 1.0, 'poor': 1.0, 'but': 1.0, 'quality': 1.0, 'a': 1.0, 'sucks': 1.0, 'pretty': 1.0, 'delay': 1.0, 'significant': 1.0, 'and': 1.0, 'do': 1.0, 'not': 1.0}
Word element => {'it': 1.0, 'rainbow': 1.0, 'noise': 1.0, 'white': 1.0, 'light': 1.0, 'by': 1.0, 'zapped': 1.0, 'that': 1.0, 'fussy': 1.0, 'if': 1.0, 'had': 2.0, 'was': 2.0, 'to': 1.0, 'easy': 1.0, 'and': 3.0, 'little': 1.0, 'monitor': 1.0, 'very': 1.0, 'set': 1.0, 'of': 1.0, 'the': 3.0, 'trying': 1.0, 'you': 2.0, 'way': 1.0, 'monitors': 1.0, 'have': 1.0, 'many': 2.0, 'is': 1.0, 'love': 1.0, 'actually': 1.0, 'glitches': 1.0, 'on': 1.0, 'your': 1.0, 'time': 1.0, 'different': 2.0, 'this': 3.0, 'models': 1.0, 'with': 1.0, 'thing': 2.0, 'no': 1.0, 'night': 1.0, 'baby': 3.0, 'up': 1.0, 'don': 1.0, '2': 1.0, 'money': 1.0, 'work': 1.0, 'an': 1.0, 'after': 1.0, 'update': 1.0, 'idevice': 1.0, 'less': 1.0, 'need': 1.0, 'anything': 1.0, 't': 1.0, 'go': 1.0, 'a': 2.0, 'waste': 1.0, 'or': 1.0, '21amjust': 1.0}
Word element => {'utilize': 1.0, 'one': 1.0, 'all': 1.0, 'an': 1.0, 'for': 1.0, 'does': 1.0, 'another': 1.0, 'works': 2.0, 'return': 1.0, 'make': 1.0, 'better': 1.0, 'think': 1.0, 'enough': 1.0, 'be': 1.0, 'someone': 1.0, 'd': 1.0, 'you': 1.0, 'when': 2.0, 'use': 2.0, 'feed': 2.0, 'varies': 1.0, 'consistenttrouble': 1.0, 'how': 1.0, 'network': 1.0, 'wifi': 2.0, 'not': 1.0, 'fact': 1.0, 'me': 1.0, 'my': 2.0, 'family': 1.0, 'mode': 1.0, 'but': 2.0, 'can': 2.0, 'video': 2.0, 'phone': 2.0, 'depending': 1.0, 'will': 1.0, 'also': 1.0, 'thing': 1.0, 'have': 1.0, 'work': 1.0, 'over': 1.0, 'to': 7.0, 'any': 1.0, 'as': 1.0, 'would': 2.0, 'hardwire': 1.0, 'matter': 1.0, 'from': 1.0, 'monitor': 1.0, 'accessing': 1.0, 'intensity': 1.0, 'trouble': 1.0, 'get': 1.0, 'alone': 1.0, 'connected': 1.0, 'out': 1.0, 'device': 1.0, 'the': 6.0, 'of': 2.0, 'with': 1.0, 'this': 4.0, 'first': 1.0, 'pros': 1.0, 'nightlight': 1.0, 'it': 4.0, 'useless': 1.0, 'great': 2.0, 'bring': 1.0, 'is': 3.0, 'vision': 1.0, 'at': 2.0, 'home': 1.0, 'feature': 1.0, 'or': 1.0, 'remotely': 1.0, 'members': 1.0, 'networklagi': 1.0, 'readout': 1.0, 'helps': 1.0, 'comfort': 1.0, 'i': 4.0, 'well': 1.0, 'baby': 1.0, 'sicknight': 1.0, 'and': 2.0, 's': 1.0, 't': 1.0, 'in': 3.0, 'if': 1.0, 'feedhumidity': 1.0, 'which': 1.0, 'comforting': 1.0, 'audio': 1.0, 'ir': 1.0, 'looking': 1.0, 'light': 1.0, 'harmful': 1.0, 'solution': 1.0, 'eyesworks': 1.0, 'had': 1.0, 'homecons': 1.0, 'wireless': 1.0, 'isn': 1.0, 'find': 1.0, 'that': 3.0, 'because': 1.0, 'see': 1.0, 'off': 1.0, 'access': 2.0, 'own': 1.0}
Word element => {'plugged': 1.0, 'not': 1.0, 'when': 1.0, 'though': 1.0, 'last': 1.0, 'batteries': 1.0, 'while': 1.0, 'should': 1.0, 'through': 1.0, 'can': 1.0, 'wall': 1.0, 'you': 1.0, 'child': 1.0, 'out': 1.0, 'in': 2.0, 'angles': 1.0, 'panning': 1.0, 'lullaby': 1.0, 'of': 2.0, 'good': 1.0, 'from': 1.0, 'changing': 1.0, 'possibility': 1.0, 'the': 3.0, 'with': 3.0, 'longer': 1.0, 'speak': 1.0, 'is': 1.0, 'away': 1.0, 'and': 4.0, 'monitor': 2.0, 'view': 1.0, 'your': 2.0, 'nice': 1.0, 'iphone': 1.0, 'cute': 1.0, 'asleep': 1.0, 'to': 1.0, 'fall': 1.0}
Word element => {'great': 1.0, 'charge': 1.0, 'free': 1.0, 'send': 1.0, 'response': 1.0, 'immediately': 1.0, 'be': 1.0, 'shipping': 1.0, 'replacement': 1.0, 'paying': 1.0, 'mind': 1.0, 'not': 1.0, 'would': 3.0, 'told': 1.0, 'support': 1.0, 'customer': 1.0, 'their': 1.0, 'email': 1.0, 'decided': 1.0, 'months': 1.0, 'been': 1.0, 'sending': 1.0, 'handy': 1.0, 'came': 1.0, 'had': 2.0, 'let': 1.0, 'no': 1.0, 'address': 1.0, 'devastated': 1.0, 'out': 3.0, 'love': 3.0, 'grandparents': 1.0, 'shocked': 1.0, 'part': 1.0, 'fell': 1.0, 'nights': 2.0, 'without': 2.0, 'works': 1.0, 'do': 1.0, 'so': 2.0, 'in': 4.0, 'having': 1.0, 'say': 1.0, 'at': 1.0, 'is': 1.0, 'way': 1.0, 'know': 1.0, 'easy': 1.0, 'sure': 1.0, 'one': 1.0, 'sooth': 1.0, 'other': 1.0, 'an': 1.0, 'guidelines': 1.0, 'were': 4.0, 'how': 1.0, 'our': 4.0, 'job': 1.0, 'to': 8.0, 'sleep': 1.0, 'when': 6.0, 'able': 2.0, 'you': 1.0, 'happened': 1.0, 'off': 1.0, 'the': 10.0, 'person': 1.0, 'of': 6.0, 'with': 3.0, 'few': 1.0, 'this': 4.0, 'representative': 1.0, 'we': 13.0, 'a': 6.0, 's': 2.0, 'daughter': 4.0, 'got': 1.0, 'socket': 1.0, 'about': 1.0, 'sunday': 2.0, 'goodnight': 1.0, 'it': 1.0, 'gem': 1.0, 'fact': 1.0, 'power': 2.0, 'old': 1.0, 'went': 1.0, 'me': 2.0, 'my': 4.0, 'company': 3.0, 'on': 3.0, 'make': 1.0, 'your': 2.0, '1': 1.0, 'spy': 1.0, 'was': 4.0, 'more': 1.0, 'husband': 2.0, 'thinkgeek': 1.0, 'wanted': 1.0, 'because': 1.0, 'that': 4.0, 'case': 1.0, 'even': 1.0, 'took': 1.0, 'care': 1.0, 'withings': 1.0, 'her': 2.0, 'supply': 2.0, 'down': 1.0, 'nap': 1.0, 'bedtime': 1.0, 'suggested': 1.0, 'month': 1.0, 'total': 1.0, 'town': 1.0, 'as': 1.0, 'leave': 1.0, 'product': 3.0, 'child': 1.0, 'she': 1.0, 'sitter': 1.0, 'expect': 1.0, 'them': 2.0, 'follow': 1.0, 'situation': 2.0, 'and': 5.0, 'schedule': 1.0, 'are': 2.0, 'asked': 1.0, 'service': 1.0, 'if': 1.0, 'unavailable': 1.0, 'accidentally': 1.0, 'before': 1.0, 'room': 1.0, 'com': 1.0, 'but': 1.0, 'fast': 1.0, 'i': 3.0, 'now': 1.0, 'broken': 1.0, 'cleaning': 1.0, 'for': 6.0, 'cord': 1.0}
Word element => {'investment': 1.0, '250': 1.0, 'was': 1.0, 'find': 1.0, 'can': 1.0, 'another': 1.0, 'something': 1.0, 'buy': 1.0, 'wait': 1.0, 'sound': 1.0, 'now': 1.0, 'out': 1.0, 'kinks': 1.0, 'be': 1.0, 't': 1.0, 'excuse': 1.0, 'hallway': 1.0, 'port': 1.0, 'wifi': 1.0, 'main': 1.0, 'right': 1.0, 's': 1.0, 'about': 1.0, 'part': 1.0, 'worst': 1.0, 'down': 2.0, 'reliable': 1.0, 'been': 1.0, 'just': 5.0, 'next': 1.0, 'has': 1.0, 'cell': 1.0, 'when': 1.0, 'again': 2.0, 'no': 1.0, 'let': 1.0, 'shut': 1.0, 'room': 2.0, 'for': 2.0, 'video': 1.0, 'product': 2.0, 'baby': 4.0, 'you': 3.0, 'night': 2.0, 'ad': 1.0, 'work': 2.0, 'really': 3.0, 'to': 5.0, 'wanted': 1.0, 'there': 1.0, 'give': 1.0, 'and': 11.0, 'ease': 1.0, 'door': 1.0, 'more': 2.0, 'tell': 1.0, 'without': 1.0, 'his': 2.0, 'obvious': 1.0, 'from': 2.0, 'one': 1.0, 'me': 1.0, 'my': 2.0, 'reasons': 1.0, 'entire': 1.0, 'shouldn': 1.0, 'we': 1.0, 'a': 6.0, 'in': 2.0, 'turning': 1.0, 'i': 6.0, 'myself': 1.0, 'messages': 1.0, 'feel': 3.0, 'check': 1.0, 'big': 1.0, 'use': 2.0, 'it': 5.0, 'he': 1.0, 'started': 1.0, 'throughout': 1.0, 'this': 4.0, 'disappointing': 1.0, 'found': 1.0, 'with': 1.0, 'piece': 1.0, 'mind': 1.0, 'is': 5.0, 'comforted': 1.0, 'the': 11.0, 'of': 3.0, 'daddy': 1.0, 'ipad': 1.0, 'disappointment': 1.0, 'had': 1.0, 'lost': 1.0, 'beginning': 1.0, 'moved': 1.0, 'get': 2.0, 'bunch': 1.0, 'running': 1.0, 'interrupted': 1.0, 'connection': 2.0, 'if': 2.0, 'until': 2.0, 'own': 1.0, 'see': 2.0, 'off': 1.0, 'connected': 1.0, 'on': 2.0, 'takes': 1.0, 'up': 2.0, 'could': 2.0, 'will': 2.0, 'suppose': 1.0, 'run': 1.0, 'market': 1.0, 'rebooting': 1.0, 'actually': 1.0, 'system': 1.0, 'crib': 1.0, 'monitor': 4.0, 'phone': 1.0, 'instant': 1.0, 'they': 1.0, 'gives': 1.0, 'sleeping': 1.0, 'back': 1.0, 'headache': 1.0, 'through': 1.0, 'waking': 1.0, 'very': 1.0, 'blank': 1.0, 'screen': 1.0, 'that': 1.0, 'because': 1.0}
Word element => {'on': 1.0, 'attention': 1.0, 'trying': 1.0, 'after': 1.0, 'shoddy': 1.0, 'worse': 1.0, 'received': 1.0, 'door': 1.0, 'luck': 1.0, 'working': 1.0, 'through': 1.0, 'other': 1.0, 'got': 1.0, 'shrieking': 1.0, 'up': 1.0, 'of': 2.0, 'was': 2.0, 'i': 4.0, 'is': 3.0, 'really': 1.0, 'excited': 1.0, 'stopped': 1.0, 'month': 1.0, 'it': 5.0, 'much': 1.0, 'only': 1.0, 'simpler': 1.0, 'when': 1.0, 'and': 1.0, 'too': 1.0, 'get': 1.0, 'learned': 1.0, 'unsettled': 1.0, 'so': 1.0, 'hear': 1.0, 'to': 2.0, 'as': 2.0, 'set': 1.0, 'link': 1.0, 'construction': 1.0, 'very': 1.0, 'video': 1.0, 'gift': 1.0, 'four': 1.0, 'most': 1.0, 'but': 1.0, 'particularly': 1.0, 'cut': 1.0, 'systems': 1.0, 'the': 7.0, 'unstable': 1.0, 'frequently': 1.0, 'ip': 1.0, 'out': 1.0, 'meaning': 1.0, 'company': 1.0, 'b': 1.0, 'often': 1.0, 'my': 1.0, 'quality': 2.0, 'baby': 1.0, 'than': 1.0, 'because': 1.0, 'a': 2.0, 'could': 1.0, 'good': 1.0, 'her': 1.0}
Word element => {'watch': 1.0, 'she': 1.0, 'when': 1.0, 'features': 1.0, 'please': 1.0, 'suggestions': 1.0, 'calling': 1.0, 'long': 1.0, 'complaints': 1.0, 'lots': 1.0, 'angled': 1.0, 'address': 1.0, 'connectivity': 1.0, 'sell': 1.0, 'list': 1.0, 'me': 3.0, 'give': 2.0, 'songs': 2.0, 'drm': 1.0, 'select': 1.0, 'try': 1.0, 'sooth': 1.0, 'yet': 1.0, 'upload': 1.0, 'loses': 1.0, 'app': 2.0, 'or': 3.0, 'need': 1.0, 'still': 1.0, '6': 2.0, 'enhance': 1.0, 'face': 1.0, 'one': 1.0, '5': 1.0, 'reset': 1.0, 'camera': 2.0, 'monitoring': 1.0, 'of': 2.0, 'the': 17.0, 'history': 1.0, 'scale': 1.0, 'ipad': 2.0, 'viewer': 1.0, 'stream': 1.0, 'anchored': 1.0, 'date': 1.0, 'ability': 1.0, 'up': 3.0, '27': 1.0, 'trip': 1.0, 'set': 2.0, 'development': 1.0, 'law': 1.0, 'now': 1.0, 'by': 1.0, 'fussy': 1.0, 'hope': 1.0, 'bigger': 1.0, 'support': 2.0, 'issues': 2.0, 'my': 4.0, 'are': 1.0, 'uh': 1.0, '4': 1.0, 'access': 2.0, 'well': 1.0, 'restrict': 1.0, 'usb': 2.0, 'because': 1.0, 'that': 3.0, 'a': 2.0, 'we': 2.0, 'mount': 1.0, 'stars': 1.0, 'accounts': 1.0, 'would': 1.0, 'wire': 1.0, 'on': 7.0, 'good': 1.0, 'asleep': 1.0, 'reconnect': 1.0, 'this': 3.0, '2014': 1.0, 'crib': 2.0, 'updated': 1.0, 'android': 1.0, 'at': 2.0, 'celsius': 2.0, 'look': 1.0, 'notice': 2.0, 'pc': 1.0, '2': 2.0, 'reads': 1.0, 'fahrenheit': 1.0, 'outsource': 1.0, 'withings': 3.0, 'reinforce': 1.0, 'from': 3.0, 'who': 1.0, 'osx': 1.0, 'there': 1.0, 'threw': 1.0, 'three': 1.0, 'flimsy': 1.0, 'night': 2.0, 'administration': 2.0, 'mini': 2.0, 'connector': 2.0, 'broken': 1.0, 'cable': 1.0, 'to': 12.0, 'wall': 2.0, 'they': 1.0, 'limit': 1.0, 'mountable': 1.0, 'come': 1.0, 'based': 1.0, 'in': 2.0, 'temperature': 1.0, 'i': 10.0, 'threshold': 1.0, 'least': 2.0, 'saving': 1.0, 'mother': 1.0, 'using': 2.0, 'time': 2.0, 'european': 1.0, 've': 1.0, 'been': 1.0, 'tilt': 1.0, 'for': 1.0, 'update': 1.0, 'read': 2.0, 'months': 1.0, 'get': 1.0, 'not': 4.0, 'as': 3.0, 'if': 3.0, 'zoom': 2.0, 'fine': 1.0, 'like': 1.0, 'but': 1.0, '3': 2.0, 'mil': 1.0, 'turn': 1.0, 'is': 8.0, 'can': 4.0, 'so': 5.0, 'inches': 1.0, 's': 2.0, 'plug': 1.0, 'updates': 1.0, 'awake': 1.0, 'and': 6.0, 'just': 1.0, 'continues': 1.0, 'worry': 1.0, 'does': 2.0, 'add': 1.0, 'should': 1.0, 'protrude': 1.0, 'out': 1.0, 'own': 1.0, 'be': 2.0, 'it': 4.0, 'he': 2.0, 'him': 1.0, 'forced': 1.0, 'remotely': 1.0, 'us': 2.0, 'place': 1.0, 'away': 1.0, 'pinch': 1.0, 'alerts': 1.0, 'synchronized': 1.0, 'needs': 1.0, 'wife': 2.0, 'no': 2.0, 'light': 1.0, 'individual': 1.0, 'view': 3.0, 'settings': 1.0, 'almost': 1.0, 'done': 1.0, 'browser': 1.0, 'function': 1.0, 'extremely': 1.0, 'helpful': 1.0, 'becomes': 1.0, 'help': 1.0, 'user': 2.0, 'password': 2.0, 'terrible': 1.0, 'his': 1.0, 'upstairs': 1.0, 'gave': 1.0, '1': 1.0, 'tell': 1.0, 'account': 2.0, 'music': 1.0, 'oh': 1.0, 'watching': 1.0, 'about': 2.0, 'via': 1.0, 'fix': 1.0, 'iphone': 1.0, 'way': 1.0, 'all': 1.0, 'day': 1.0}
Word element => {'further': 1.0, 'assistant': 1.0, 'provide': 1.0, 'humidity': 1.0, 'noise': 1.0, 'care': 1.0, 'adjustable': 1.0, 'wireless': 1.0, 'motion': 1.0, 'or': 2.0, 'wired': 1.0, 'need': 1.0, 'which': 1.0, 'bluetooth': 1.0, 'the': 2.0, 'for': 3.0, 'day': 1.0, 'relief': 1.0, 'days': 1.0, 'issue': 1.0, 'monitor': 2.0, 'couple': 1.0, 'flawlessly': 1.0, 'and': 3.0, 'away': 1.0, 'it': 2.0, 'unit': 1.0, 'of': 1.0, '6': 1.0, 'detectors': 1.0, 'offers': 1.0, 'smart': 1.0, 'temperature': 1.0, 'well': 1.0, 'has': 1.0, 'lasted': 1.0, 'baby': 2.0, 'been': 1.0, 'your': 3.0, 'on': 1.0, 'almost': 1.0, 'besides': 1.0, 'server': 1.0, 'its': 1.0, 'as': 1.0, 'our': 1.0, 'to': 1.0, 'internet': 1.0, 'a': 3.0, 'we': 1.0, 'worked': 1.0, 'network': 2.0, 'performance': 1.0, 'you': 2.0, 'relies': 1.0, 'heavily': 1.0, 'eliminates': 1.0, 'home': 3.0, 'connectivity': 2.0, 'if': 1.0, 'are': 1.0, 'months': 1.0, 'bought': 1.0, 'planning': 1.0, 'threshold': 1.0, 'from': 1.0, 'while': 1.0, 'since': 1.0, 'at': 1.0}
Word element => {'sequence': 1.0, 'has': 1.0, 'or': 1.0, 'device': 1.0, 'invest': 1.0, 'i': 1.0, 'apple': 1.0, 'other': 1.0, 'connectivity': 1.0, 'flawless': 1.0, 'providing': 1.0, 'airport': 1.0, 'with': 1.0, 'network': 1.0, 'proper': 1.0, 'looking': 1.0, 'days': 1.0, 'getting': 1.0, 'this': 1.0, 'doing': 1.0, 'after': 1.0, 'follow': 1.0, 'again': 1.0, 'fi': 1.0, 'wi': 1.0, 'iphone': 1.0, 'm': 1.0, '34': 2.0, 'devices': 1.0, 'short': 1.0, 'than': 1.0, 'great': 1.0, 'extreme': 1.0, 'the': 5.0, 'works': 2.0, 'once': 1.0, 'of': 2.0, 'irritant': 1.0, 'monitor': 2.0, 'and': 3.0, 'styling': 1.0, 'installation': 1.0, 'that': 3.0, 'time': 1.0, 'site': 1.0, 'more': 1.0, 'is': 3.0, 'an': 2.0, 'doesn': 1.0, '2': 1.0, 'most': 1.0, 'process': 1.0, 'withings': 1.0, 'work': 1.0, 'will': 1.0, 'withbaby': 2.0, 'iphoneconnect': 1.0, 't': 1.0, 'a': 5.0, 'it': 2.0, 'normally': 1.0, 'whether': 1.0, 'then': 1.0, 'for': 1.0, 'tech': 1.0, 'bluetooth': 1.0, 'in': 2.0, 'connect': 1.0, 'not': 2.0, 'repeatedly': 1.0, 'at': 2.0, 'your': 5.0, 'on': 4.0, 'remedy': 1.0, 'proposed': 1.0, 'all': 2.0, 'to': 4.0, 'baby': 2.0, 'reset': 1.0, 'processremove': 1.0, 'by': 1.0, 'networkinstall': 1.0, 'attached': 1.0, 'app': 1.0, 'period': 1.0, 'from': 1.0, 'functioning': 1.0, 'iphoneturn': 1.0}
Word element => {'storage': 1.0, 'up': 4.0, 'would': 2.0, 'summer': 1.0, 'or': 3.0, 'many': 1.0, 'folds': 1.0, 'baby': 3.0, 'unfortunately': 1.0, 'unit': 3.0, 'standing': 1.0, 'like': 2.0, 'wasn': 1.0, 'isn': 1.0, 'look': 1.0, 'at': 2.0, 'vision': 1.0, 'upon': 1.0, 'daughter': 2.0, 'buttons': 1.0, 'user': 1.0, 'huge': 1.0, 'savvy': 1.0, 'relatively': 1.0, 'this': 6.0, 'few': 1.0, 'shell': 1.0, 'great': 1.0, 'average': 1.0, 'm': 1.0, 'much': 1.0, 'nursery': 1.0, 'performance': 1.0, 'the': 23.0, 'living': 1.0, 'note': 1.0, 'app': 2.0, 'should': 1.0, 'review': 3.0, 'i': 14.0, 'feet': 1.0, 'a': 10.0, 'reviews': 1.0, 'difference': 1.0, 'other': 3.0, 'way': 1.0, 'all': 1.0, 'on': 4.0, 'long': 1.0, 'without': 3.0, 'in': 1.0, 'based': 1.0, 'good': 4.0, 'made': 1.0, 'package': 1.0, 're': 1.0, 'hopes': 1.0, 'was': 6.0, 'diving': 1.0, 'live': 1.0, 'ended': 2.0, 'too': 3.0, 'similar': 2.0, 'of': 2.0, 'even': 1.0, 'for': 5.0, '10': 1.0, 'purchased': 1.0, 'had': 1.0, 'our': 2.0, 'network': 1.0, 'how': 1.0, 'to': 5.0, 'high': 1.0, 'any': 1.0, 'pretty': 1.0, 'ordered': 1.0, 'didn': 2.0, 'opening': 1.0, 'work': 1.0, 'most': 1.0, 'exaggerating': 1.0, 'withings': 2.0, 'probably': 1.0, 'clam': 1.0, 'before': 1.0, 'construction': 1.0, 'motorola': 1.0, 'monitor': 4.0, 'very': 5.0, 'looking': 2.0, 'with': 9.0, 'using': 2.0, 'fit': 1.0, 'easy': 2.0, 'than': 1.0, 'bit': 1.0, 'disappointing': 1.0, 'researching': 1.0, 'features': 2.0, 'so': 4.0, 'monitors': 1.0, 'night': 1.0, 'found': 1.0, 'have': 1.0, 'running': 1.0, 'big': 1.0, 'smart': 3.0, 'seemed': 1.0, 'market': 1.0, 'phone': 4.0, 'realized': 1.0, 'clean': 1.0, 'that': 3.0, 'easily': 1.0, 'because': 1.0, 'result': 1.0, 'been': 1.0, 'into': 2.0, 'setup': 1.0, 'test': 1.0, 'difficult': 1.0, 'instructions': 1.0, 'computers': 1.0, 'money': 1.0, 'follow': 1.0, 'go': 1.0, 'connecting': 3.0, 'wifi': 3.0, 'my': 5.0, 'via': 1.0, 'bluetooth': 2.0, 'everything': 2.0, 'lights': 1.0, 'ready': 1.0, 'looked': 1.0, 'point': 1.0, 'we': 4.0, 'bad': 2.0, 'feeling': 1.0, '1': 1.0, 'lag': 4.0, 'immediately': 1.0, 'second': 1.0, 'router': 1.0, 'pleased': 1.0, 'poor': 2.0, 'every': 1.0, 'video': 2.0, 'camera': 1.0, 'product': 1.0, 'were': 5.0, 'frame': 1.0, 'almost': 1.0, 't': 5.0, 'rate': 1.0, 'far': 1.0, 'stick': 1.0, 'quality': 3.0, 'it': 4.0, 'be': 1.0, 'tech': 1.0, 'once': 1.0, 'unusable': 1.0, 'there': 2.0, 'give': 1.0, '2': 1.0, 'resetting': 1.0, 'seems': 1.0, 'movement': 2.0, 'trial': 1.0, 'seeing': 1.0, 'tried': 1.0, 'and': 13.0, 'just': 1.0, 'reference': 1.0, 'within': 1.0, 'out': 1.0, 'during': 1.0, 'least': 1.0, 'around': 1.0, 'each': 1.0, 'no': 1.0, 'from': 1.0, 'beginning': 1.0, 'but': 2.0, 'same': 1.0, 'noticed': 1.0, 'wanted': 1.0, 'honestly': 1.0, 'couldn': 1.0, 'more': 1.0, 'android': 1.0, 'fair': 1.0, 'issue': 1.0, 'overall': 1.0, 'between': 1.0, 'expect': 1.0, 'after': 3.0, 'by': 1.0, 'has': 1.0, 'worked': 1.0}
Word element => {'will': 1.0, 'go': 1.0, 'son': 1.0, 'day': 1.0, 'an': 1.0, 'other': 1.0, 'crib': 2.0, 'mount': 1.0, 'this': 2.0, 'if': 1.0, 'enjoy': 1.0, 'utilized': 1.0, 'husband': 1.0, 'into': 1.0, 'talk': 1.0, 'phone': 1.0, 'very': 1.0, 'being': 1.0, 'newborn': 1.0, 'having': 2.0, 'enjoyed': 1.0, 'really': 2.0, 'feature': 2.0, 'which': 1.0, 'managed': 1.0, 'temperature': 1.0, 'shows': 1.0, 'screen': 1.0, 'issues': 1.0, 'bed': 1.0, 'works': 1.0, 'without': 1.0, 'tell': 1.0, 'house': 1.0, 'both': 1.0, 'par': 1.0, 'on': 3.0, 'about': 1.0, 'free': 1.0, 'viewing': 1.0, 'smart': 1.0, 'seemed': 1.0, 'nice': 3.0, 'found': 1.0, 'recommended': 1.0, 'and': 10.0, 'quite': 1.0, 'happy': 1.0, 'for': 4.0, 'friends': 1.0, 'available': 2.0, 'well': 1.0, 'i': 15.0, 's': 1.0, 'a': 3.0, 'we': 2.0, 't': 1.0, 'wall': 2.0, 'extended': 1.0, 'no': 1.0, 'several': 2.0, 'what': 1.0, 'when': 2.0, 'am': 2.0, 'say': 1.0, 'shares': 1.0, 'done': 1.0, 'finally': 1.0, 'disappointed': 1.0, 'besides': 1.0, 'our': 4.0, 'monitor': 3.0, 'picture': 1.0, 'iphone': 1.0, 'even': 2.0, 'some': 1.0, 'room': 2.0, 'another': 1.0, 'researched': 1.0, 'monitoring': 1.0, 'sometimes': 1.0, 'excited': 1.0, 'after': 1.0, 'system': 1.0, 'themobicam': 1.0, 'have': 9.0, 'baby': 6.0, 'previous': 2.0, 'quality': 1.0, 'time': 2.0, 'audio': 1.0, 'sleeping': 1.0, 'you': 2.0, 'able': 2.0, 'night': 1.0, 'monitors': 1.0, 'only': 1.0, 'much': 1.0, 'with': 4.0, 'already': 1.0, 'him': 1.0, 'it': 13.0, 'use': 1.0, 'withings': 1.0, 'so': 3.0, 'can': 1.0, 'work': 1.0, 'but': 1.0, 'used': 1.0, 'just': 1.0, 'from': 4.0, 'while': 1.0, 'period': 1.0, 'start': 1.0, 'always': 1.0, 'there': 1.0, 'was': 5.0, 'issue': 1.0, 'because': 1.0, 'problems': 1.0, 'that': 3.0, 'not': 2.0, 'in': 2.0, 'video': 2.0, 'camera': 1.0, 'us': 1.0, 'he': 2.0, 'love': 2.0, 'yet': 1.0, 'months': 1.0, 'humidity': 1.0, 'doing': 1.0, 'the': 15.0, 'of': 2.0, 'waiting': 1.0, 'job': 1.0, 'to': 13.0, 'became': 1.0, 'snatched': 1.0, 'up': 1.0, 'did': 1.0, 'vision': 1.0, 'is': 5.0, 'better': 1.0, 'way': 1.0, 'than': 1.0, 'away': 3.0, 'pull': 1.0, 'home': 2.0, 'haven': 1.0, 'wonderful': 1.0, 'off': 1.0, 'access': 1.0, 'see': 1.0, 'my': 5.0, 'gets': 1.0, 'late': 1.0, 'had': 2.0, 'though': 1.0, 'problem': 1.0, 'perhaps': 1.0, 'limited': 1.0, 'would': 4.0, 'be': 3.0, 'option': 1.0}
Word element => {'cumbersome': 1.0, 'little': 1.0, 'a': 1.0, 'neat': 1.0, 'product': 1.0, 'not': 1.0, 'night': 1.0, 'sensors': 1.0, 'use': 1.0, 'additional': 1.0, 'viewing': 1.0, 'our': 1.0, 'for': 2.0, 'otherwise': 1.0, 'con': 1.0, 'ir': 1.0, 'appreciate': 1.0, 'other': 1.0, 'the': 2.0, 'temperature': 1.0, 'and': 1.0, 'humidity': 1.0, 'sufficient': 1.0, 'app': 1.0, 'pros': 1.0, 'is': 1.0}
Word element => {'buy': 1.0, 'awake': 1.0, 'newborn': 1.0, 'wifi': 1.0, 'n': 1.0, 'with': 1.0, 'it': 2.0, 'times': 1.0, 'several': 1.0, 'safety': 1.0, 'have': 1.0, 'really': 1.0, 'big': 1.0, 'best': 1.0, 'son': 1.0, 'sleeping': 1.0, 'house': 1.0, 'advertised': 1.0, 'but': 2.0, 'or': 1.0, 'instantly': 1.0, 'tested': 1.0, 'class': 1.0, 'and': 2.0, 'noises': 1.0, 'as': 1.0, 'our': 2.0, 'were': 1.0, 'pricey': 1.0, 'first': 1.0, 'concerned': 1.0, 'we': 3.0, 'a': 2.0, 'regarding': 1.0, 'parties': 1.0, 'one': 1.0, 'of': 1.0, 'the': 2.0, 'around': 1.0, 'new': 1.0, 'works': 1.0, 'its': 1.0, 'had': 1.0, 'was': 2.0, 'good': 2.0, 'on': 1.0, 'floor': 1.0, 'if': 1.0, 'making': 1.0, 'while': 1.0}
Word element => {'find': 1.0, 'aggravation': 1.0, 'yourself': 1.0, 'spent': 1.0, 'one': 1.0, 'especially': 1.0, 'unreliable': 1.0, 'is': 1.0, 'baby': 2.0, 'have': 1.0, 'before': 1.0, 'disappointed': 1.0, 'time': 1.0, 'so': 2.0, 'was': 1.0, 'hoping': 1.0, 'wanted': 1.0, 'to': 2.0, 'recognized': 1.0, 'husband': 1.0, 'hadn': 1.0, 'wrong': 1.0, '300': 1.0, 'were': 1.0, 'gave': 1.0, 'that': 3.0, 'i': 8.0, 'tried': 2.0, 'really': 2.0, 'like': 1.0, 'wasn': 1.0, 'even': 2.0, 'they': 1.0, 'reviews': 1.0, 'ignored': 1.0, 'the': 4.0, 'wish': 1.0, 'this': 1.0, 'it': 1.0, 'other': 1.0, 'set': 1.0, 'up': 2.0, 'and': 3.0, 'couldn': 1.0, 'get': 1.0, 'monitor': 3.0, 'can': 1.0, 'past': 1.0, 'phone': 2.0, 'startup': 1.0, 'by': 1.0, 'on': 2.0, 'another': 1.0, 'save': 1.0, 'eventually': 1.0, 'my': 3.0, 'iphone': 1.0, 'or': 2.0, 'droid': 1.0, 'a': 1.0, 't': 4.0, 'we': 2.0, 's': 1.0, 'ipad': 1.0, 'several': 1.0, 'times': 1.0}
Word element => {'time': 1.0, 'waste': 1.0, 'a': 1.0, 'back': 1.0, 'sent': 1.0, 'of': 1.0, 'completely': 1.0, 'thus': 1.0, 'other': 1.0, 'defective': 1.0, 't': 1.0, 'review': 1.0, 'can': 1.0, 'this': 1.0, 'it': 2.0, 'with': 1.0, 'and': 1.0, 'monitor': 1.0, 'am': 1.0, 'very': 1.0, 'i': 1.0, 'or': 1.0, 'than': 1.0, 'all': 1.0, 'did': 1.0, 'not': 1.0, 'at': 1.0, 'ipad': 1.0, 'disappointed': 1.0, 'connect': 1.0, 'useless': 1.0, 'my': 1.0, 'was': 1.0, 'to': 1.0, 'iphone': 1.0}
Word element => {'does': 1.0, 'full': 1.0, 'higher': 1.0, 'or': 1.0, 'sandwich': 1.0, '0': 1.0, '4': 1.0, 'with': 1.0, 'team': 1.0, 'an': 2.0, 'finally': 1.0, 'crashes': 1.0, 'home': 1.0, 'network': 2.0, 'disappointed': 1.0, 'same': 1.0, 'still': 1.0, 'if': 1.0, 'development': 1.0, 'when': 3.0, 'you': 1.0, 'software': 1.0, 'they': 4.0, 'connect': 2.0, 'even': 2.0, 'norm': 1.0, 'fine': 1.0, 'are': 1.0, 'asus': 1.0, '3': 1.0, 'galaxy': 1.0, 'frequently': 1.0, 'platform': 1.0, 'this': 2.0, 'good': 1.0, 'some': 1.0, 'error': 1.0, 'samsung': 1.0, 'email': 1.0, 'get': 1.0, 'monitor': 2.0, 'later': 1.0, 'very': 1.0, 'that': 4.0, 'although': 1.0, 'terrible': 2.0, 'behind': 1.0, 'the': 8.0, 'transformer': 1.0, 'frequent': 1.0, 'android': 2.0, 'really': 1.0, 'is': 2.0, 'states': 1.0, 'it': 5.0, 'hardware': 1.0, 'say': 1.0, 'especially': 2.0, 'll': 1.0, 'has': 1.0, 'i': 3.0, 'well': 2.0, 'speed': 1.0, 'can': 3.0, 'nexus': 2.0, 'withings': 1.0, 'work': 1.0, 'knowing': 1.0, 'ice': 1.0, '7': 2.0, 'forward': 1.0, 'not': 3.0, 'cream': 1.0, 'be': 2.0, 'website': 1.0, 'my': 2.0, 'and': 3.0, 'just': 3.0, 'seems': 1.0, 'tablet': 2.0, 'will': 1.0, 'sound': 1.0, 'don': 1.0, 'pc': 1.0, 'choppy': 1.0, 'respond': 1.0, 'was': 1.0, 'doesn': 2.0, 'issue': 1.0, 't': 4.0, 'a': 1.0, 'to': 2.0, 'on': 3.0, 'update': 3.0, 'their': 2.0, 'note': 1.0, 'app': 1.0, 'm': 1.0, 'in': 1.0, 'ipad': 1.0, 'said': 2.0, 'product': 1.0, 'also': 1.0, 'received': 1.0, 'response': 1.0, '15': 1.0, 'works': 1.0, 'days': 1.0, 'essentially': 1.0, 'found': 1.0, 'know': 1.0, 'available': 1.0, 'feedback': 1.0}
Word element => {'would': 1.0, 'that': 1.0, 't': 1.0, 'didn': 1.0, 'extremely': 1.0, 'like': 1.0, 'work': 2.0, 'should': 1.0, 'monitoringfor': 1.0, 'audio': 1.0, 'shrill': 1.0, 'very': 1.0, 'horrible': 1.0, 'porch': 1.0, 'back': 1.0, 'on': 1.0, 'outside': 1.0, 'or': 1.0, 'strong': 1.0, 'is': 1.0, 'feedback': 1.0, 'bluetooth': 1.0, 'range': 1.0, 'keep': 1.0, 'gadget': 1.0, 'listening': 1.0, 'often': 1.0, 'without': 1.0, 'especially': 1.0, 'ipad': 2.0, 'when': 2.0, 'us': 1.0, 'iphones': 1.0, 'acceptable': 1.0, 'multiple': 1.0, 'enough': 1.0, 'loved': 1.0, 'set': 1.0, 'real': 1.0, 'it': 7.0, 'with': 4.0, 'decided': 1.0, 'my': 1.0, 'reasons': 1.0, 'deciding': 1.0, 'than': 1.0, 'was': 1.0, 'talk': 1.0, 'phones': 1.0, 'hoping': 1.0, 'to': 8.0, 'disappointed': 1.0, 'our': 4.0, 'husband': 1.0, 'go': 1.0, 'take': 1.0, 'we': 8.0, 's': 1.0, 'a': 2.0, 'are': 2.0, '2': 2.0, 'music': 1.0, 'idea': 1.0, 'probably': 1.0, 'and': 5.0, 'monitor': 6.0, 'since': 2.0, '1': 1.0, 'excited': 1.0, 'always': 1.0, 'humidity': 1.0, 'the': 11.0, 'of': 2.0, 'once': 1.0, 'have': 1.0, 'monitors': 2.0, 'another': 1.0, 'electronics': 1.0, 'arrived': 2.0, 'apple': 1.0, 'dream': 1.0, 'an': 1.0, 'all': 2.0, 'other': 1.0, 'i': 1.0, 'prior': 1.0, 'price': 1.0, 'informationunfortunately': 1.0, 'products': 1.0, 'baby': 3.0, 'started': 1.0, 'arrival': 1.0, 'were': 2.0, 'found': 1.0, 'returning': 1.0, 'can': 1.0, 'so': 2.0, 'main': 1.0, 'time': 1.0, 'use': 1.0, 'this': 3.0, 'few': 1.0, 'life': 1.0, 'internet': 1.0, 'says': 1.0, 'in': 1.0, 'liked': 1.0, 'pluses': 1.0, 'about': 1.0, 'factor': 1.0, 'ability': 2.0, 'start': 1.0, 'iphone': 1.0, 'from': 2.0, 'temperature': 1.0, 'situations': 1.0, 'home': 2.0, 'up': 2.0, 'less': 1.0, 'for': 3.0, 'following': 1.0, 'using': 1.0, 'reason': 1.0, 'looses': 1.0, 'connection': 2.0, 'not': 2.0, 'reconnect': 1.0}
Word element => {'cant': 1.0, 'harmed': 1.0, 'it': 5.0, 'with': 1.0, 'first': 1.0, 'around': 1.0, 'carrying': 2.0, 'just': 1.0, 'not': 1.0, 'would': 1.0, 'husband': 1.0, 'to': 4.0, 'was': 2.0, 'both': 1.0, 'feel': 1.0, 'comfortable': 1.0, 'actually': 1.0, 'for': 1.0, 'that': 1.0, 'us': 1.0, 'i': 4.0, 'pockets': 1.0, 'about': 1.0, 'child': 1.0, 'arrived': 1.0, 'am': 1.0, 'extremely': 1.0, 'fast': 1.0, 'fits': 1.0, 'my': 3.0, 'wait': 1.0, 'wanted': 1.0, 'bag': 2.0, 'have': 1.0, 'and': 4.0, 'a': 1.0, 'tons': 1.0, 'packaging': 1.0, 'of': 2.0, 'make': 1.0, 'stuff': 1.0, 'in': 2.0, 'has': 1.0, 'everything': 1.0, 'enough': 1.0, 'house': 1.0, 'the': 2.0, 'start': 1.0, 'right': 1.0, 'double': 1.0, 'kind': 1.0, 'sure': 1.0}
Word element => {'design': 1.0, 's': 1.0, 'embarassment': 1.0, 'not': 1.0, 'enough': 1.0, 'in': 1.0, 'seems': 1.0, 'and': 1.0, 'for': 1.0, 'utilitarian': 1.0, 'right': 1.0, 'an': 1.0, 'to': 1.0, 'the': 1.0, 'all': 1.0, 'since': 1.0, 'a': 1.0, 'guy': 1.0, 'or': 1.0, 'girl': 1.0, 'carry': 1.0, 'durable': 1.0, 'it': 2.0, 'stuff': 1.0, 'is': 1.0, 'so': 1.0}
Word element => {'practicity': 1.0, 'size': 1.0, 'and': 1.0, 'quality': 1.0, 'high': 1.0, 'are': 1.0, 'finishings': 1.0, 'the': 1.0, 'take': 1.0, 'love': 1.0, 'it': 1.0, 'for': 1.0, 'color': 1.0, 'husband': 1.0, 'perfect': 1.0, 'me': 1.0, 'our': 1.0, 'baby': 1.0, 'or': 1.0, 'compartiments': 1.0, 'to': 1.0}
Word element => {'or': 1.0, 'used': 1.0, 'use': 1.0, 'quickly': 1.0, 'out': 1.0, 'in': 1.0, 'place': 1.0, 'you': 1.0, 'wipes': 2.0, 'so': 1.0, 'i': 2.0, 'tissues': 1.0, 'issue': 1.0, 'bag': 1.0, 'have': 2.0, 'great': 1.0, 't': 1.0, 'the': 3.0, 'diaper': 1.0, 'air': 1.0, 'a': 1.0, 'been': 1.0, 'dry': 1.0, 'has': 1.0, 'holder': 1.0, 'it': 4.0, 'this': 1.0, 'only': 1.0, 'with': 1.0, 'is': 1.0, 'now': 1.0, 'wipe': 1.0, 'for': 1.0, 'tight': 1.0, 'doesn': 1.0, 'an': 1.0, 'seal': 1.0}
Word element => {'hooks': 1.0, 'buy': 1.0, 'no': 1.0, 'handle': 1.0, 'stroller': 1.0, 'graco': 1.0, 'my': 1.0, 'enough': 1.0, 'long': 1.0, 'strap': 1.0, 'use': 1.0, 'everyday': 1.0, 'of': 1.0, 'hang': 1.0, 'months': 1.0, '5': 1.0, 'used': 1.0, 'first': 1.0, 'it': 5.0, 'with': 1.0, 'have': 1.0, 'go': 1.0, 't': 1.0, 'pop': 1.0, 'didn': 1.0, 'this': 2.0, 'functional': 1.0, 'like': 1.0, 'pocket': 1.0, 'easily': 1.0, 'complaint': 1.0, 'container': 1.0, 'should': 1.0, 'open': 2.0, 'has': 1.0, 'is': 6.0, 'that': 3.0, 'wipe': 1.0, 'was': 1.0, 'to': 4.0, 'purpose': 1.0, 'only': 1.0, 'its': 1.0, 'holding': 1.0, 'after': 2.0, 'time': 1.0, 'so': 2.0, 'everything': 1.0, 'not': 2.0, 'had': 1.0, 'excellent': 1.0, 'be': 1.0, 'great': 1.0, 'pulled': 1.0, 'and': 2.0, 'easy': 1.0, 'defeated': 1.0, 'itself': 1.0, 'in': 1.0, 'over': 1.0, 'up': 1.0, 'accessible': 1.0, 'i': 1.0, 'otherwise': 1.0, 'an': 1.0, 'need': 1.0, 'bag': 3.0, 'the': 6.0, 'place': 1.0}
Word element => {'be': 1.0, 'use': 1.0, 'fine': 1.0, 'discover': 1.0, 'could': 2.0, 'wider': 1.0, 'would': 1.0, 'larger': 1.0, 'had': 1.0, 'while': 2.0, 'material': 1.0, 'wish': 3.0, 'again': 1.0, 'shorten': 1.0, 'when': 1.0, 'makes': 1.0, 'loosening': 1.0, 'twisting': 1.0, 'difficult': 1.0, 'strap': 3.0, 'shoulder': 1.0, 'store': 1.0, 'from': 1.0, 'easier': 1.0, 'right': 1.0, 'buy': 1.0, '56': 1.0, 'plastic': 1.0, 'rid': 1.0, 'got': 1.0, 'cannot': 1.0, 'constantly': 1.0, 'so': 2.0, 'low': 1.0, 'remedy': 1.0, 'they': 1.0, 'themselves': 1.0, 'need': 1.0, 'or': 1.0, 'pinching': 1.0, 'always': 1.0, 'close': 1.0, 't': 1.0, 'container': 3.0, 'adjust': 1.0, 'noted': 1.0, 'uncomfortable': 1.0, 'reviewers': 1.0, 'ct': 1.0, 'many': 1.0, 'in': 3.0, 'babes': 1.0, 'open': 1.0, 'work': 1.0, 'over': 1.0, 'pocket': 4.0, 'seems': 1.0, 'access': 2.0, 'easy': 2.0, 'con': 1.0, 'was': 1.0, 'clothes': 1.0, 'wipe': 2.0, 'been': 2.0, 'doesn': 1.0, 'lots': 2.0, 'mine': 1.0, 'burp': 1.0, 'manage': 1.0, 'stuff': 1.0, 'just': 2.0, 'crumbled': 1.0, 'wipes': 4.0, 'large': 1.0, 's': 5.0, 'a': 7.0, 'to': 11.0, 'outside': 1.0, 'all': 1.0, 'more': 1.0, 'husband': 1.0, 'mom': 1.0, 'it': 7.0, 'bottle': 2.0, 'this': 9.0, 'lost': 1.0, 'have': 5.0, '2': 2.0, 'past': 1.0, 'but': 3.0, 'annoying': 1.0, 'as': 2.0, 'diaper': 3.0, 'of': 4.0, 'the': 14.0, 'pro': 1.0, 'are': 4.0, 'pacifier': 1.0, 'there': 2.0, 'black': 1.0, 'bag': 5.0, 'using': 1.0, 'like': 2.0, 'well': 1.0, 'i': 8.0, 'day': 1.0, 'etc': 1.0, '4': 1.0, 'around': 2.0, 'once': 2.0, 'comes': 1.0, 'is': 6.0, 'here': 1.0, 'because': 1.0, 'easily': 1.0, 'that': 4.0, 'compartments': 1.0, 'little': 1.0, 'nice': 1.0, 'great': 1.0, 'padded': 1.0, 'fabric': 1.0, 'for': 5.0, '10': 1.0, 'get': 2.0, 'months': 1.0, 'actually': 1.0, 'color': 1.0, 'than': 1.0, 'relatively': 1.0, 'huge': 1.0, 'carry': 1.0, 'cons': 2.0, 'which': 1.0, 'side': 2.0, 'sturdier': 1.0, 'pros': 2.0, 'every': 1.0, 'zippered': 2.0, 'back': 1.0, '1': 3.0, 'find': 3.0, 'does': 1.0, 'better': 1.0, 'think': 1.0, 'pack': 1.0, 'incredibly': 1.0, 'lid': 1.0, 'helpful': 2.0, 'quick': 1.0, 'cell': 1.0, 'phone': 1.0, 'improved': 1.0, 'wallet': 1.0, 'mass': 1.0, 'and': 8.0, 'similar': 1.0, 'interior': 2.0, 'allows': 1.0, 'with': 2.0, 'pockets': 2.0, 'force': 1.0, '3': 2.0, 'bottom': 1.0, 'fold': 1.0, 'up': 1.0, 'mat': 1.0, 'not': 3.0, 'my': 3.0, 'me': 1.0, 'things': 3.0, 'you': 8.0, 'able': 2.0, 'anything': 2.0, 'overall': 1.0, 'slide': 1.0, 'thin': 1.0, 'tow': 1.0, 'treasure': 1.0}
Word element => {'diaper': 1.0, 'a': 1.0, 'drama': 1.0, 'beside': 1.0, 'portable': 1.0, 'buying': 1.0, 'open': 2.0, 'wipe': 4.0, 'was': 1.0, 'hard': 2.0, 'this': 1.0, 'it': 5.0, 'makes': 2.0, 'when': 1.0, 'gets': 1.0, 'compartments': 1.0, 'those': 1.0, 'style': 1.0, 'jammed': 1.0, 'section': 1.0, 'however': 1.0, 'correctly': 1.0, 'so': 2.0, 'bag': 3.0, 'to': 2.0, 'all': 1.0, 'is': 1.0, 'the': 4.0, 'great': 2.0, '2': 1.0, 'love': 1.0, 'consistently': 1.0, 'and': 3.0, 'of': 2.0, 'up': 2.0, 'finally': 1.0, 'getting': 1.0, 'did': 1.0, 'keep': 1.0, 'close': 1.0, 'my': 2.0, 'end': 1.0, 'wipes': 1.0, 'after': 1.0, 'ended': 1.0, 'about': 1.0, 'broke': 1.0, 'little': 1.0, 'very': 1.0, 'dried': 1.0, 'out': 1.0, 'well': 1.0, 'one': 1.0, 'months': 1.0, 'box': 3.0, 'i': 1.0}
Word element => {'new': 1.0, 'for': 1.0, 'will': 1.0, 'i': 1.0, 'wipes': 1.0, 'this': 1.0, 'wonderful': 1.0, 'recommend': 1.0, 'of': 1.0, 'has': 1.0, 'lots': 1.0, 'hold': 1.0, 'compartments': 1.0, 'product': 1.0, 'to': 1.0, 'etc': 1.0, 'everything': 1.0, 'including': 1.0, 'moms': 1.0, 'diapers': 1.0}
Word element => {'like': 1.0, 'lot': 1.0, 'space': 1.0, 'own': 1.0, 'holds': 1.0, 'issues': 1.0, 'no': 1.0, 'with': 1.0, 'so': 1.0, 'made': 1.0, 'half': 1.0, 'has': 1.0, 'in': 2.0, 'far': 1.0, 'falling': 1.0, 'started': 1.0, 'week': 1.0, 'removed': 1.0, 'once': 1.0, 'right': 1.0, 'to': 1.0, 'container': 1.0, 'compartments': 1.0, 'out': 1.0, 'laid': 1.0, 'theme': 1.0, 'i': 3.0, 'wipes': 1.0, 'seemed': 1.0, 'great': 1.0, 'diaper': 1.0, 'very': 1.0, 'nicely': 1.0, 'first': 2.0, 'fit': 1.0, 'love': 2.0, 'for': 1.0, 'one': 2.0, 'the': 4.0, 'orange': 1.0, 'works': 1.0, 'dumb': 1.0, 'black': 1.0, 'just': 1.0, 'not': 1.0, 'everything': 1.0, 'apart': 1.0, 'if': 1.0, 'flip': 1.0, 'over': 1.0, 'you': 1.0, 'again': 1.0, 'month': 1.0, 'it': 8.0, 'felt': 1.0, 'that': 1.0, 'but': 1.0, 'p': 1.0, 's': 2.0, 'a': 4.0, 'we': 1.0, 'had': 1.0, 'purchased': 1.0, 'this': 1.0, 'jeep': 1.0, 'brand': 1.0, 'bag': 1.0, 'and': 3.0}
Word element => {'scheme': 1.0, 'color': 1.0, 'black': 1.0, 'on': 1.0, 'red': 1.0, 'plus': 1.0, 'this': 1.0, 'price': 1.0, 'good': 2.0, 'of': 1.0, 'carrying': 1.0, 'nothing': 2.0, 'like': 3.0, 'easily': 1.0, 'pocket': 1.0, 'diaper': 2.0, 'are': 1.0, 'yes': 1.0, 'that': 1.0, 'i': 5.0, 'pockets': 1.0, 'something': 1.0, 'would': 1.0, 'the': 7.0, 'place': 1.0, 'wrong': 1.0, 'those': 1.0, 'carry': 1.0, 'is': 2.0, 'around': 1.0, 'should': 1.0, 'enough': 1.0, 'in': 1.0, 'a': 2.0, 't': 1.0, 's': 1.0, 'bags': 1.0, 'type': 1.0, 'material': 1.0, 'really': 1.0, 'girly': 1.0, 'but': 2.0, 'if': 1.0, 'over': 1.0, 'accessible': 1.0, 'don': 1.0, 'need': 1.0, 'all': 2.0, 'to': 1.0, 'tumi': 1.0, 'them': 1.0, 'foo': 2.0, 'quality': 1.0, 'wipe': 1.0, 'why': 1.0, 'unlike': 1.0, 'anyhow': 1.0, 'there': 1.0, 'product': 1.0, 'for': 2.0, 'essentials': 1.0, 'front': 1.0}
Word element => {'heavy': 1.0, 'bursting': 1.0, 'seams': 1.0, 'i': 1.0, 'lots': 1.0, 'of': 1.0, 'to': 1.0, 'mat': 2.0, 'a': 2.0, 'hats': 1.0, 'this': 1.0, 'with': 1.0, 'has': 1.0, 'case': 1.0, 'changing': 1.0, 'being': 1.0, 'everything': 1.0, 'taste': 1.0, 'too': 1.0, 'and': 5.0, 'room': 1.0, 'much': 1.0, 'my': 1.0, 'requires': 1.0, 'able': 1.0, 'picky': 1.0, 'fit': 1.0, 'bag': 2.0, 'toys': 1.0, 'wipes': 1.0, 'am': 1.0, 'pacifers': 1.0, 'wipe': 1.0, 'clothes': 1.0, 'sheets': 1.0, 'change': 1.0, 'blankets': 1.0, 'there': 1.0, 'burp': 1.0, 'cloths': 1.0, 'training': 1.0, 'pockets': 1.0, 'diapers': 1.0, 'pad': 1.0, 'multiple': 1.0, 'meds': 1.0, 'or': 1.0, 'bottles': 1.0, 'comes': 1.0, 'is': 1.0, 'more': 1.0, 'the': 2.0, 'without': 1.0}
Word element => {'like': 1.0, 'price': 1.0, 'but': 1.0, 'itself': 1.0, 'color': 1.0, 'mat': 1.0, 'match': 1.0, 'changing': 1.0, 'and': 1.0, 'hoping': 1.0, 'was': 1.0, 'looking': 1.0, 'may': 1.0, 'on': 1.0, 'is': 2.0, 'so': 1.0, 'expected': 1.0, 'bit': 1.0, 'considering': 2.0, 'tag': 1.0, 'little': 3.0, 'off': 1.0, 'the': 5.0, 'front': 1.0, 'a': 3.0, 'narrower': 1.0, 'cheap': 1.0, 'i': 4.0, 'not': 1.0, 'just': 1.0, 'than': 2.0, 'other': 1.0, 'it': 2.0, 'this': 1.0, 'take': 1.0, 'bag': 2.0, 'that': 1.0, 'does': 1.0, 'weird': 1.0, 'what': 1.0}
Word element => {'bother': 1.0, 'doesn': 1.0, 'pocket': 1.0, 'front': 1.0, 'said': 1.0, 'wider': 1.0, 'non': 1.0, 'skinny': 1.0, 'strap': 1.0, 'drawback': 1.0, 'only': 1.0, 'new': 1.0, 'fits': 1.0, 'all': 1.0, 'shoulder': 1.0, 'falling': 1.0, 'was': 2.0, 'that': 2.0, 'had': 1.0, 't': 1.0, 'fit': 1.0, 'for': 2.0, 'pacifiers': 1.0, 'disposable': 1.0, 'cloths': 1.0, 'burp': 1.0, '6': 1.0, 'like': 2.0, 'and': 7.0, 'pad': 1.0, 'enough': 2.0, 'a': 7.0, 'we': 1.0, 's': 3.0, 'might': 1.0, 'carry': 1.0, 'to': 5.0, '5': 1.0, 'so': 3.0, 'deal': 1.0, 'baby': 2.0, 'bag': 3.0, 'onesies': 1.0, 'husband': 1.0, 'it': 6.0, 'handle': 1.0, 'is': 6.0, 'smartphones': 2.0, 'around': 1.0, 'traffic': 1.0, '2': 2.0, 'but': 2.0, 'big': 2.0, 'mom': 1.0, 'flap': 2.0, 'feel': 2.0, 'comfortable': 1.0, 'bags': 1.0, 'as': 2.0, 'diaper': 2.0, 'stroller': 2.0, 'love': 1.0, 'yet': 1.0, 'far': 1.0, 'diapers': 1.0, 'weeks': 1.0, 'old': 1.0, 'this': 2.0, 'rail': 1.0, 'makes': 1.0, 'while': 1.0, 'lotions': 1.0, 'on': 2.0, 'potions': 1.0, 'think': 1.0, 'not': 3.0, 'my': 6.0, 'me': 3.0, 'put': 1.0, 'changing': 1.0, 'of': 4.0, 'the': 13.0, 'inside': 1.0, 'off': 1.0, 'outer': 1.0, 'protected': 2.0, 'get': 1.0, 'wipes': 1.0, 'large': 1.0, 'magnetic': 1.0, 'if': 1.0, 'bigger': 1.0, 'messenger': 1.0, 'one': 1.0, 'holder': 1.0, 'color': 1.0, 'cell': 2.0, 'roll': 1.0, 'when': 1.0, 'especially': 1.0, 're': 1.0, 'phone': 3.0, 'wallet': 1.0, 'disposal': 1.0, 'style': 2.0, 'hangs': 1.0, 'i': 7.0, 'well': 2.0, 'trunk': 1.0, 'seat': 1.0, 'in': 3.0, 'm': 1.0, 'extra': 1.0, 'trying': 2.0, 'out': 1.0, 'pockets': 1.0, 'with': 1.0, 'bottles': 1.0, 'by': 3.0, 'fussy': 1.0, 'car': 1.0, 'whizzing': 1.0, 'really': 2.0, 'helpful': 1.0, 'carrying': 2.0, 'great': 1.0, 'throw': 1.0}
Word element => {'wipes': 1.0, 'diapers': 1.0, 'he': 2.0, 'it': 3.0, 'this': 2.0, 'prefer': 1.0, 'my': 1.0, 'with': 2.0, 'stores': 1.0, 'however': 1.0, 'so': 1.0, 'finding': 1.0, 'ideal': 1.0, 'compartments': 1.0, 'to': 1.0, 'husband': 1.0, 'was': 3.0, 'messanger': 1.0, 'etc': 1.0, 'i': 1.0, 'originally': 1.0, 'bought': 1.0, 'travel': 1.0, 'style': 1.0, 'me': 1.0, 'have': 1.0, 'bag': 2.0, 'which': 1.0, 'for': 2.0, 'because': 1.0, 'well': 1.0, 'manly': 1.0, 're': 1.0, 'enough': 1.0, 'around': 1.0, 'ease': 1.0, 'looking': 1.0, 'plus': 1.0, 'of': 2.0, 'said': 1.0, 'in': 1.0, 'baby': 1.0, 'lots': 1.0, 'a': 1.0, 's': 1.0, 'you': 1.0, 'stroller': 1.0, 'can': 1.0, 'but': 1.0, 'what': 1.0}
Word element => {'one': 1.0, 'get': 1.0, 'will': 1.0, 'style': 1.0, 'not': 1.0, 'probably': 1.0, 'buy': 1.0, 'kept': 1.0, 'strap': 1.0, 'on': 1.0, 'plus': 1.0, 'until': 1.0, 'smart': 1.0, 'straps': 1.0, 'way': 1.0, 'no': 1.0, 'besides': 1.0, 'new': 1.0, 'would': 2.0, 'phone': 2.0, 'third': 1.0, 'away': 2.0, 'throwing': 1.0, 'with': 1.0, 'job': 1.0, 'the': 6.0, 'right': 1.0, 'really': 1.0, 'very': 2.0, 'ended': 1.0, 'holding': 1.0, 'held': 1.0, 'was': 1.0, 'first': 1.0, 'it': 5.0, 'this': 2.0, 'i': 6.0, 'tangling': 1.0, 'in': 1.0, 'said': 1.0, 'of': 4.0, 'there': 1.0, 'to': 1.0, 'all': 2.0, 'were': 1.0, 'changing': 2.0, 'that': 4.0, 'diaper': 2.0, 'is': 2.0, 'comes': 1.0, 'more': 2.0, 'roomy': 1.0, 'capable': 1.0, 'didn': 1.0, 'diapers': 1.0, 'shoulder': 1.0, 'but': 2.0, 'messenger': 1.0, 'lot': 2.0, 'things': 1.0, 'second': 1.0, 'expect': 1.0, 'pocket': 1.0, 'reviews': 1.0, 'my': 1.0, 'awkwardly': 1.0, 'other': 1.0, 'its': 1.0, 'do': 1.0, 'much': 2.0, 'threw': 1.0, 'up': 2.0, 'don': 1.0, 'like': 1.0, 'hold': 2.0, 'wipes': 1.0, 'need': 1.0, 'bag': 4.0, 'toys': 1.0, 'find': 1.0, 'than': 1.0, 'water': 1.0, 'placed': 1.0, 'pad': 2.0, 'then': 1.0, 'cheap': 1.0, 'snacks': 1.0, 'too': 1.0, 'and': 4.0, 'few': 1.0, 't': 2.0, 'a': 6.0, 's': 1.0, 'again': 1.0, 'cell': 1.0, 'you': 1.0}
Word element => {'think': 1.0, 'anything': 1.0, 'that': 1.0, 'diaper': 1.0, 'since': 1.0, 'convenient': 1.0, 'i': 2.0, 'it': 5.0, 'pockets': 1.0, 'wouldn': 1.0, 'this': 2.0, 'perfect': 1.0, 'will': 1.0, 'seems': 1.0, 'arrived': 1.0, 'haven': 1.0, 'used': 1.0, 'hasn': 1.0, 'bag': 1.0, 'wanted': 1.0, 'husband': 1.0, 'matches': 1.0, 'my': 1.0, 'yet': 1.0, 'baby': 1.0, 'be': 1.0, 'embarrassed': 1.0, 'carrying': 1.0, 'enough': 1.0, 'around': 1.0, 'is': 1.0, 'many': 1.0, 'has': 1.0, 't': 4.0, 'a': 1.0, 'we': 1.0, 's': 1.0, 'you': 1.0, 'great': 1.0, 'big': 2.0, 'the': 1.0, 'without': 1.0, 'work': 1.0, 'but': 1.0, 'can': 1.0, 'everything': 1.0, 'being': 1.0, 'and': 2.0, 'too': 1.0, 'actually': 1.0, 'where': 1.0, 'find': 1.0}
Word element => {'what': 1.0, 'about': 1.0, 'price': 1.0, 'twist': 1.0, 'strap': 1.0, 'for': 1.0, 'passy': 1.0, 'pockets': 1.0, 'well': 1.0, 'reasonably': 1.0, 'really': 1.0, 'is': 4.0, 'encountered': 1.0, 'up': 1.0, 'set': 1.0, 'bag': 1.0, 'have': 1.0, 'container': 1.0, 'to': 1.0, 'wipe': 1.0, 'like': 1.0, 'pocket': 1.0, 'diaper': 1.0, 'the': 6.0, 'great': 1.0, 'and': 2.0, 'issue': 1.0, 'it': 1.0, 'with': 1.0, 'major': 1.0, 'we': 2.0, 'expected': 1.0, 'thus': 1.0, 'far': 1.0}
Word element => {'be': 1.0, 'just': 1.0, 'wish': 1.0, 'flap': 1.0, 'tempted': 1.0, 'sturdier': 1.0, 'made': 1.0, 'gets': 3.0, 'own': 1.0, 'loosens': 1.0, 'starch': 1.0, 'twists': 1.0, 'way': 1.0, 'cons': 1.0, 'wasn': 1.0, 'out': 1.0, 'pointed': 1.0, 'year': 1.0, '5': 1.0, 'my': 1.0, 'in': 2.0, 'what': 1.0, 'of': 1.0, 'with': 1.0, 'so': 1.0, 'but': 1.0, 'really': 1.0, 'is': 2.0, 'pros': 1.0, 'i': 3.0, 'babies': 1.0, 'have': 2.0, 'carrying': 1.0, 'overall': 1.0, 'strap': 1.0, 'are': 2.0, 'without': 1.0, 'the': 5.0, 'diaper': 1.0, 'its': 1.0, 'works': 1.0, 'reasonable': 1.0, 'don': 2.0, 'm': 1.0, 'price': 1.0, 'for': 1.0, 'bag': 5.0, 'need': 1.0, 'great': 1.0, 'until': 1.0, 'nice': 1.0, 'bags': 1.0, 'like': 1.0, 'tags': 1.0, 'they': 1.0, 'pocket': 1.0, 'and': 5.0, 'annoying': 2.0, 'it': 7.0, 'get': 1.0, 'easy': 1.0, 'them': 1.0, 'wipe': 2.0, 'to': 4.0, 'should': 1.0, 'container': 1.0, 'open': 1.0, 'old': 1.0, 'labeled': 1.0, 'sized': 1.0, 'would': 1.0, 'each': 1.0, 'picture': 1.0, 'pockets': 1.0, 'even': 1.0, 'didn': 1.0, 'access': 1.0, 'little': 1.0, 't': 4.0, 'a': 4.0, 'notice': 1.0, 'there': 2.0, 'put': 1.0, 'stuff': 1.0, 'on': 2.0}
Word element => {'found': 1.0, 'and': 1.0, 'them': 1.0, 'pacifiers': 1.0, 'things': 1.0, 'placing': 1.0, 'need': 1.0, 'you': 3.0, 'little': 1.0, 'every': 1.0, 'lot': 1.0, 'strap': 1.0, 'that': 2.0, 'easily': 1.0, 'pocket': 2.0, 'hanging': 1.0, 'can': 2.0, 'item': 1.0, 'storage': 1.0, 'baby': 1.0, 'about': 1.0, 'wrong': 1.0, 'for': 3.0, 'love': 1.0, 'only': 1.0, 'this': 1.0, 'it': 2.0, 'have': 1.0, 'thing': 3.0, 'is': 3.0, 'the': 5.0, 'seems': 1.0, 'in': 1.0, 'construction': 1.0, 'even': 1.0, 'does': 1.0, 'amount': 1.0, 'pockets': 1.0, 'i': 1.0, 'of': 2.0, 'your': 1.0, 'poor': 1.0, 'has': 2.0, 'a': 3.0}
Word element => {'that': 1.0, 'other': 1.0, 'sturdy': 1.0, 'seem': 1.0, 'doesn': 1.0, 'material': 1.0, 'than': 1.0, 'different': 1.0, 'make': 1.0, 'enough': 2.0, 'big': 1.0, 'isn': 1.0, 'insert': 1.0, 'room': 1.0, 'allow': 1.0, 'would': 2.0, 'thing': 1.0, 'wipes': 1.0, 'bag': 2.0, 'plastic': 1.0, 'maybe': 1.0, 'change': 1.0, 'is': 1.0, 'also': 1.0, 'hole': 2.0, 't': 2.0, 'the': 5.0, 'diaper': 1.0, 'for': 2.0, 'love': 2.0, 'i': 4.0, 'a': 1.0, 'strap': 1.0, 'bigger': 1.0, 'just': 1.0, 'because': 1.0, 'to': 2.0, 'it': 1.0, 'only': 1.0, 'this': 2.0, 'come': 1.0, 'made': 1.0, 'out': 2.0, 'of': 2.0}
Word element => {'gifts': 1.0, 'and': 1.0, 'with': 1.0, 'mind': 1.0, 'girl': 1.0, 'bag': 3.0, 'gave': 1.0, 'that': 1.0, 'a': 1.0, 'front': 1.0, 'for': 1.0, 'liked': 1.0, 'or': 1.0, 'i': 3.0, 'even': 1.0, 'pockets': 1.0, 'it': 4.0, 'only': 1.0, 'happy': 1.0, 'velcro': 2.0, '2': 1.0, 'but': 1.0, 'secure': 2.0, 'just': 1.0, 'not': 3.0, 'because': 1.0, 'carrying': 1.0, 'dad': 1.0, 'baby': 1.0, 'is': 2.0, 'would': 1.0, 'gender': 1.0, 'this': 1.0, 'wish': 1.0, 'neutral': 1.0, 'either': 1.0, 'instead': 1.0, 'the': 6.0, 'labeled': 1.0, 'very': 2.0, 'make': 1.0, 'easy': 1.0, 'as': 1.0, 'to': 3.0, 'snaps': 1.0, 'friends': 1.0, 'so': 1.0, 'boy': 1.0, 'organized': 1.0, 'since': 1.0, 'keep': 1.0, 'at': 1.0, 'bottom': 1.0, 'of': 1.0, 'pocket': 1.0, 'm': 1.0}
Word element => {'haha': 1.0, 'as': 1.0, 'using': 1.0, 'started': 1.0, 'wipes': 1.0, 'diapers': 1.0, 'e': 1.0, 'goes': 1.0, 'bag': 1.0, 'in': 1.0, 'anything': 1.0, 'well': 1.0, 's': 1.0, 'pacifier': 1.0, 'never': 1.0, 'lose': 1.0, 'i': 4.0, 'where': 1.0, 'when': 1.0, 'this': 1.0, 'it': 4.0, 'like': 1.0, 'organized': 1.0, 'purse': 2.0, 'do': 1.0, 'tabs': 1.0, 'comes': 1.0, 'to': 1.0, 'my': 2.0, 'everything': 1.0, 'small': 1.0, 'eventually': 1.0, 'has': 1.0, 'that': 1.0, 'bottle': 1.0, 'identify': 1.0}
Word element => {'something': 1.0, 'all': 1.0, 'didn': 1.0, 'bottle': 1.0, 'of': 2.0, 'wash': 2.0, 'being': 1.0, 'without': 1.0, 'ripped': 1.0, 'at': 1.0, 'two': 1.0, 'we': 2.0, 'long': 1.0, 'got': 1.0, 'so': 1.0, 'after': 1.0, 'because': 1.0, 'not': 1.0, 'shut': 1.0, 'new': 1.0, 'staying': 1.0, 'seams': 1.0, 'holder': 1.0, 't': 2.0, 'the': 1.0, 'find': 1.0, 'replacement': 1.0, 'stopped': 1.0, 'it': 4.0, 'times': 1.0, 'wipes': 1.0, 'dry': 1.0, 'getting': 1.0, 'couple': 1.0, 'couldn': 1.0, 'and': 2.0, 'leaky': 1.0, 'out': 1.0, 'tried': 1.0, 'i': 1.0, 'had': 1.0, 'overfilled': 1.0, 'wipe': 1.0, 'to': 2.0, 'well': 1.0, 'a': 3.0}
Word element => {'recommend': 1.0, 'ripping': 1.0, 'without': 1.0, 'section': 1.0, 'insulated': 1.0, 'bag': 3.0, 'i': 2.0, 'totally': 1.0, 'bottle': 2.0, 'price': 1.0, 'fisher': 1.0, 'would': 1.0, 'holder': 1.0, 'in': 1.0, 'also': 1.0, 'actually': 1.0, 'my': 1.0, 'love': 1.0, 'the': 4.0, 'diaper': 1.0, 'second': 1.0, 'is': 2.0, 'this': 3.0, 'with': 1.0, 'wipe': 1.0, 'so': 1.0, 'accesability': 1.0, 'fits': 1.0, 'area': 1.0, 'larger': 1.0, 'a': 1.0}
Word element => {'larger': 1.0, 'room': 1.0, 'cuz': 1.0, 'like': 1.0, 'also': 1.0, 'unorganizibg': 1.0, 'through': 1.0, 'out': 1.0, 'husband': 1.0, 'so': 1.0, 'how': 2.0, 'great': 1.0, 'most': 1.0, 'but': 1.0, 'of': 3.0, 'compartment': 1.0, 'carry': 1.0, 'in': 2.0, 'going': 1.0, 't': 1.0, 'able': 1.0, 'labeled': 1.0, 'old': 1.0, 'etc': 1.0, 'i': 4.0, '4yr': 1.0, 'drink': 1.0, 'other': 2.0, 'it': 4.0, 'pockets': 2.0, 'diapers': 1.0, 'stiry': 1.0, 'this': 2.0, 'perfect': 1.0, 'knows': 1.0, 'bag': 2.0, 'light': 1.0, 'have': 2.0, 'on': 1.0, 'stuff': 1.0, '3': 1.0, 'won': 1.0, 'girls': 1.0, 'extra': 2.0, 'looking': 1.0, 'diaper': 1.0, 'the': 5.0, 'years': 1.0, 'actually': 1.0, 'where': 1.0, 'love': 1.0, 'fit': 2.0, 'for': 4.0, 'more': 1.0, 'is': 1.0, 'leaves': 1.0, 'now': 1.0, 'family': 1.0, 'fits': 2.0, 'my': 4.0, 'wipes': 1.0, 'keep': 1.0, 'binkies': 1.0, 'meds': 1.0, 'strollers': 1.0, 'clothes': 3.0, 'sippy': 1.0, 'no': 1.0, 'outside': 1.0, 'our': 1.0, 'to': 1.0, 'all': 1.0, 'cups': 1.0, 'and': 1.0, 'much': 1.0, 'w': 2.0, 'things': 1.0, 'sooo': 1.0, 'problem': 1.0, 'being': 1.0, 'still': 1.0, 'part': 1.0, 'while': 1.0, 'bags': 1.0, 'weight': 1.0, 'been': 1.0, 'that': 1.0, 'are': 3.0}
Word element => {'stays': 1.0, 'not': 1.0, 'dries': 1.0, 'constantly': 1.0, 'opens': 1.0, 'wipes': 2.0, 'don': 1.0, 'compartment': 1.0, 'reviewers': 1.0, 'of': 3.0, 'ever': 1.0, 'has': 1.0, 'as': 1.0, 'big': 2.0, 'blankets': 1.0, 'like': 3.0, 'closed': 1.0, 'hardly': 1.0, 'bag': 1.0, 'velcro': 1.0, 'it': 1.0, 'this': 1.0, 'room': 1.0, 'fan': 1.0, 'is': 1.0, 'bottles': 1.0, 'lot': 1.0, 'flap': 1.0, 'etc': 1.0, 'other': 1.0, 'we': 2.0, 'and': 3.0, 'zippered': 1.0, 'closure': 1.0, 'a': 2.0, 'for': 2.0, 'secure': 1.0, 'diapers': 2.0, 'outfits': 1.0, 'also': 2.0, 't': 1.0, 'diaper': 1.0, 'the': 4.0, 'compartments': 1.0, 'out': 1.0, 'pacifiers': 1.0}
Word element => {'in': 1.0, 'wish': 1.0, 'exactly': 1.0, 'although': 1.0, 'had': 1.0, 'was': 2.0, 'looking': 1.0, 'bag': 2.0, 'for': 1.0, 'love': 2.0, 'velcro': 1.0, 'this': 2.0, 'it': 1.0, 'i': 4.0, 'snap': 1.0, 'the': 1.0, 'what': 1.0, 'flap': 1.0, 'of': 1.0, 'a': 1.0, 'enclosure': 1.0, 'instead': 1.0, 'but': 1.0, 'all': 2.0}
Word element => {'purse': 1.0, 'large': 1.0, 'around': 1.0, 'carry': 1.0, 'because': 1.0, 'one': 1.0, 'husband': 1.0, 'birth': 1.0, 'anticipated': 1.0, 'hospital': 1.0, 'used': 1.0, 'being': 1.0, 'now': 1.0, 'right': 1.0, 'stinky': 1.0, 'you': 1.0, 'when': 1.0, 'wipes': 1.0, 'searching': 1.0, 'in': 1.0, 'come': 1.0, 'will': 1.0, 'that': 1.0, 'case': 1.0, 'sure': 1.0, 'stuff': 1.0, 'spare': 1.0, 'much': 1.0, 'room': 1.0, 'he': 1.0, 'received': 1.0, 'how': 2.0, 'surprised': 1.0, 'diapers': 1.0, 'change': 1.0, 'can': 1.0, 'looks': 1.0, 'it': 2.0, 'with': 1.0, 'gift': 1.0, 'son': 1.0, 'wants': 1.0, 'still': 1.0, 'i': 6.0, 'was': 1.0, 'who': 1.0, 'at': 1.0, 'diaper': 3.0, 'the': 6.0, 's': 1.0, 'a': 4.0, 'love': 1.0, 'for': 3.0, 'fit': 1.0, 'be': 1.0, 'essential': 1.0, 'bag': 4.0, 'and': 2.0, 'handy': 1.0, 'labeled': 1.0, 'my': 4.0, 'wipe': 1.0, 'baby': 2.0, 'shower': 1.0, 'of': 3.0, 'have': 2.0, 'to': 4.0, 'as': 2.0, 'outside': 2.0, 'all': 1.0, 'refused': 1.0, 'like': 2.0, 'compartments': 1.0, 'absolutely': 1.0, 'm': 1.0, 'are': 1.0, 'this': 2.0, 'pictures': 1.0, 'items': 1.0, 'bottles': 1.0, 'picked': 1.0, 'pacifiers': 1.0, 'inside': 1.0, 'ect': 1.0}
Word element => {'updated': 1.0, 'get': 1.0, 'you': 1.0, 'discoveries': 1.0, 'special': 1.0, 'i': 1.0, 'works': 1.0, 'out': 2.0, 'still': 1.0, 'make': 1.0, 'impression': 1.0, 'not': 1.0, 'please': 1.0, 'know': 1.0, 'symbol': 1.0, 'the': 4.0, 'ages': 1.0, 'first': 1.0, 'dig': 1.0, 'marking': 1.0, 'alot': 1.0, 'bag': 1.0, 'need': 1.0, 'no': 2.0, 'at': 1.0, 'space': 1.0, 'of': 1.0, 'there': 1.0, 'field': 1.0, 'my': 1.0, 'rooms': 1.0, 'in': 3.0, 'where': 1.0, 'for': 1.0, 'will': 1.0, 'voila': 1.0, 'more': 1.0, 'is': 5.0, 'with': 1.0, 'it': 5.0, 'if': 2.0, 'everything': 1.0, 'after': 1.0, 'find': 1.0, 'because': 1.0, 'than': 1.0, 'makes': 1.0, 'easier': 1.0, 'that': 3.0, 'look': 1.0, 'right': 1.0, 'and': 2.0, 'just': 2.0, 'wet': 1.0, 'diapers': 1.0, 'organized': 1.0, 'time': 1.0, 'bottle': 1.0, 'pacifier': 1.0, 'this': 1.0, 'found': 1.0, 'any': 1.0, 'to': 3.0, 'all': 1.0, 'have': 1.0, 'different': 1.0, 'wipes': 1.0, 'good': 2.0, 'enough': 1.0}
Word element => {'though': 1.0, 'functional': 1.0, 'and': 1.0, 'stylish': 1.0, 'of': 1.0, 'design': 1.0, 'for': 1.0, 'diaper': 1.0, 'lots': 1.0, 'cool': 1.0, 'looks': 1.0, 'places': 1.0, 'everything': 1.0, 'pockets': 1.0, 'i': 1.0, 'have': 1.0, 'used': 1.0, 'color': 1.0, 'my': 1.0, 'own': 1.0, 'station': 1.0, 'very': 1.0, 'changing': 1.0, 'cover': 1.0}
Word element => {'complain': 1.0, 'can': 1.0, 'i': 1.0, 'price': 1.0, 'access': 1.0, 'tons': 1.0, 'reasonable': 1.0, 'best': 1.0, 'designed': 1.0, 'wipes': 1.0, 'this': 1.0, 'quick': 1.0, 'well': 1.0, 'of': 1.0, 'to': 1.0, 'is': 1.0, 'looks': 1.0, 'hey': 1.0, 'pros': 1.0, 'nice': 1.0, 'pricecons': 1.0, 'not': 1.0, 'space': 1.0, 'at': 1.0, 't': 1.0, 'great': 1.0, 'the': 1.0, 'quality': 1.0, 'but': 1.0}
Word element => {'wear': 1.0, 'along': 1.0, 'diapers': 1.0, 'all': 2.0, 'fits': 1.0, 'and': 2.0, 'baby': 1.0, 'my': 1.0, 'the': 1.0, 'clothes': 1.0, 's': 1.0, 'with': 1.0, 'it': 2.0, 'his': 1.0, 'blanket': 1.0, 'has': 1.0, 'compartments': 1.0, 'casual': 1.0, 'already': 1.0, 'very': 1.0, 'labeled': 1.0, 'i': 1.0, 'found': 1.0, 'to': 1.0}
Word element => {'extra': 1.0, 'blanket': 1.0, 'stroller': 1.0, 'pack': 1.0, 'just': 1.0, 'large': 1.0, 'pretty': 1.0, 'bags': 1.0, 'can': 1.0, 'girly': 1.0, 'stereotypical': 1.0, 'and': 2.0, 'how': 1.0, 'mommy': 1.0, 'here': 1.0, 'enough': 1.0, 'etc': 1.0, 'i': 1.0, 'it': 3.0, 'this': 2.0, 'with': 1.0, 'yet': 2.0, 'love': 3.0, 'for': 1.0, 'one': 1.0, 'also': 1.0, 'will': 1.0, 'an': 1.0, 'those': 1.0, 'ad': 1.0, 'have': 2.0, 'toys': 1.0, 'bag': 3.0, 's': 1.0, 'a': 2.0, 'we': 4.0, 't': 2.0, 'place': 1.0, 'the': 1.0, 'gets': 1.0, 'haven': 1.0, 'used': 1.0, 'clothes': 1.0, 'baby': 2.0, 'because': 1.0, 'gender': 1.0, 'weeks': 1.0, 'neutral': 1.0, 'more': 1.0, 'is': 1.0, 'daddy': 2.0, 'of': 2.0, 'easy': 1.0, 'so': 1.0, 'organized': 1.0, 'time': 1.0, 'finding': 1.0, 'everything': 1.0, 'in': 1.0, 'won': 1.0, 'until': 1.0, 'feel': 1.0, 'couple': 1.0, 'out': 1.0}
Word element => {'a': 1.0, 'good': 1.0, 'sturdy': 1.0, 'it': 1.0, 'for': 1.0, 'our': 1.0, 'baby': 2.0, 'items': 1.0, 'herfor': 1.0, 'and': 3.0, 'christmas': 1.0, 'bought': 1.0, 'granddaughter': 1.0, 'with': 1.0, 'is': 2.0, 'size': 1.0, 'looks': 1.0, 'expecting': 1.0, 'filled': 1.0, 'i': 1.0, 'her': 1.0, 'first': 1.0, 'this': 1.0}
Word element => {'product': 1.0, 'recommend': 1.0, 'i': 2.0, 'do': 1.0, 'so': 1.0, 'this': 1.0, 'loves': 1.0, 'bought': 1.0, 'our': 1.0, 'and': 2.0, 'my': 1.0, 'it': 3.0, 'wife': 1.0, 'for': 1.0, 'baby': 1.0, 'its': 1.0, 'new': 1.0, 'serves': 1.0, 'purpose': 1.0}
Word element => {'ours': 1.0, 'anything': 1.0, 'if': 1.0, 'happened': 1.0, 'again': 1.0, 'buy': 1.0, 'nicely': 1.0, 'up': 1.0, 'mat': 1.0, 'us': 1.0, 'help': 1.0, 'pockets': 1.0, 'organized': 1.0, 'smaller': 1.0, 'keep': 1.0, 'main': 1.0, 'large': 1.0, 'would': 1.0, 'arrangement': 1.0, 'pocket': 2.0, 'happen': 1.0, 'to': 4.0, 'carry': 1.0, 'things': 1.0, 'enough': 1.0, 'feels': 1.0, 'can': 2.0, 'two': 1.0, 'i': 3.0, 'maybe': 1.0, 'does': 1.0, 'that': 1.0, 'been': 1.0, 'husband': 1.0, 'about': 1.0, 'months': 1.0, 'using': 1.0, 'for': 2.0, 'my': 1.0, 'often': 1.0, 'a': 1.0, 'we': 2.0, 't': 1.0, 'diaper': 2.0, 'the': 3.0, 'great': 2.0, 'have': 1.0, 'this': 3.0, 'it': 2.0, 'with': 1.0, 'he': 1.0, 'bag': 3.0, 'comfort': 1.0, 'clean': 1.0, 'good': 1.0, 'wipes': 1.0, 'still': 1.0, 'relatively': 1.0, 'folds': 1.0, 'easy': 2.0, 'both': 1.0, 'manly': 1.0, 'use': 1.0, 'access': 1.0, 'container': 1.0, 'and': 6.0, 'too': 1.0, 'around': 2.0, 'say': 1.0, 'is': 3.0, 'not': 1.0, 'dry': 1.0, 'out': 1.0}
Word element => {'under': 1.0, 'or': 1.0, 'lug': 1.0, 'don': 1.0, 'perfectly': 1.0, 'handlebar': 1.0, 'strap': 1.0, 'stroller': 2.0, 'diaper': 1.0, 'doesn': 1.0, 'far': 1.0, 'wipes': 1.0, 'binkies': 2.0, 'to': 3.0, 'had': 1.0, 'now': 1.0, 'separate': 2.0, 'have': 3.0, 'rummage': 1.0, 'etc': 1.0, 'i': 5.0, 'compartments': 2.0, 'stow': 1.0, 'also': 2.0, 'scream': 1.0, 'where': 1.0, 'for': 2.0, 'love': 1.0, '2': 1.0, 'the': 5.0, 'neural': 1.0, 'and': 4.0, 'bags': 1.0, 'everything': 1.0, 'that': 2.0, 'organized': 1.0, 'so': 2.0, 'bottle': 1.0, 'toys': 1.0, 'bag': 2.0, 'with': 1.0, 'it': 4.0, 'this': 1.0, 'allows': 1.0, 'be': 1.0, 'you': 2.0, 'would': 1.0, 've': 1.0, 'super': 1.0, 'didn': 1.0, 'diapers': 1.0, 'fits': 1.0, 'fact': 1.0, 't': 3.0, 'a': 1.0, 'around': 2.0, 'is': 1.0, 'know': 1.0, 'like': 1.0, 'gender': 1.0, 'color': 1.0}
Word element => {'all': 1.0, 'it': 1.0, 'for': 1.0, 'looks': 1.0, 'cool': 1.0, 'space': 1.0, 'has': 1.0, 'one': 2.0, 'little': 1.0, 'with': 1.0, 'next': 1.0, 'the': 1.0, 'due': 1.0, 'bag': 1.0, 'this': 1.0, 'pockets': 1.0, 'and': 2.0, 'very': 1.0, 'soon': 1.0}
Word element => {'trips': 1.0, 'compact': 1.0, 'hate': 1.0, 'and': 2.0, 'like': 1.0, 'big': 2.0, 'of': 1.0, 'too': 1.0, 'more': 1.0, 'the': 4.0, 'on': 1.0, 'something': 1.0, 'that': 2.0, 'this': 1.0, 'matterial': 1.0, 'it': 2.0, 'think': 2.0, 'buy': 1.0, 'i': 4.0, 'everyday': 1.0, 'idea': 1.0, 'case': 1.0, 'longer': 1.0, 'is': 2.0, 'side': 1.0, 'just': 1.0, 'use': 2.0, 'wipe': 1.0, 'to': 1.0, 'for': 2.0}
Word element => {'middle': 1.0, 'bottle': 2.0, 'holding': 1.0, 'other': 1.0, 'satisfied': 1.0, 'the': 6.0, 'diaper': 1.0, 'overall': 1.0, 'they': 1.0, 'has': 1.0, 'always': 1.0, 'of': 1.0, 'there': 1.0, 'impossible': 1.0, 'take': 1.0, 'bag': 1.0, 'is': 1.0, 'side': 2.0, 'on': 1.0, 'zipper': 2.0, 'wipes': 1.0, 'and': 2.0, 'almost': 2.0, 'rips': 1.0, 'out': 1.0, 'to': 1.0, 'now': 1.0, 'even': 1.0, 'for': 1.0, 'fit': 1.0, '8217': 2.0, 'in': 2.0, 'stuck': 1.0, 'i': 2.0, 'am': 2.0, 'not': 1.0, 'with': 1.0, 'full': 1.0, 'this': 1.0, 'it': 1.0, 'aren': 1.0, 'but': 1.0, 'can': 1.0, 'p': 1.0, 't': 2.0, 's': 1.0, 'a': 1.0, 'space': 1.0, 'lot': 1.0}
Word element => {'love': 1.0, 'how': 1.0, 'mention': 1.0, 'parents': 1.0, 'recommend': 1.0, 'absolutely': 1.0, 'purchase': 1.0, 'my': 1.0, 'are': 1.0, 'reviews': 2.0, 'they': 1.0, 'decided': 1.0, 'customers': 1.0, 'read': 1.0, 'like': 1.0, 'about': 1.0, 'any': 1.0, 'all': 3.0, 'bag': 8.0, 'need': 1.0, 'affordable': 1.0, 'designated': 1.0, 'place': 1.0, 'came': 1.0, 'glad': 1.0, 'for': 2.0, 'price': 1.0, 'product': 2.0, 'expensive': 1.0, 'a': 3.0, 't': 3.0, 's': 1.0, 'what': 1.0, 'before': 1.0, 'low': 1.0, 'to': 6.0, 'high': 2.0, 'now': 1.0, 'was': 2.0, 'doesn': 2.0, 'impressed': 1.0, 'much': 1.0, 'put': 2.0, 'and': 6.0, 'spacious': 1.0, 'across': 1.0, 'buy': 1.0, 'i': 15.0, 'be': 1.0, 'oh': 1.0, 'with': 1.0, 'mind': 1.0, 'hard': 1.0, 'diaper': 3.0, 'bags': 1.0, 'from': 1.0, 'searched': 1.0, 'features': 1.0, 'having': 1.0, 'that': 2.0, 'because': 3.0, 'would': 1.0, 'boy': 1.0, 'time': 1.0, 'feminine': 1.0, 'opinions': 1.0, 'see': 1.0, 'until': 1.0, 'highly': 1.0, 'this': 4.0, 'unisex': 1.0, 'wonderful': 1.0, 'can': 1.0, 'everything': 2.0, 'm': 1.0, 'in': 1.0, 'it': 5.0, 'still': 1.0, 'organize': 1.0, 'have': 3.0, 'space': 1.0, 'did': 2.0, 'keep': 2.0, 'there': 1.0, 'helps': 1.0, 'baby': 1.0, 'their': 1.0, 'quality': 1.0, 'things': 1.0, 'saw': 1.0, 'didn': 1.0, 'right': 1.0, 'is': 4.0, 'look': 1.0, 'has': 1.0, 'easy': 1.0, 'clean': 1.0, 'the': 9.0, 'of': 1.0, 'material': 1.0, 'which': 1.0, 'made': 1.0, 'more': 1.0, 'husband': 1.0, 'carrying': 1.0}
Word element => {'are': 1.0, 'you': 1.0, 'if': 1.0, 'well': 1.0, 't': 1.0, 'a': 2.0, 'her': 1.0, 'friend': 1.0, 'my': 1.0, 'although': 1.0, 'is': 3.0, 'now': 1.0, 'had': 2.0, 'for': 4.0, 'i': 2.0, 'color': 1.0, 'one': 1.0, 'bought': 1.0, 'to': 3.0, 'as': 2.0, 'and': 1.0, 'similar': 1.0, 'not': 1.0, 'style': 1.0, 'that': 1.0, 'babies': 1.0, 'girl': 1.0, 'this': 1.0, 'most': 2.0, 'pregnant': 1.0, 'advertised': 1.0, 'it': 1.0, 'get': 1.0, 'easy': 1.0, 'access': 1.0, 'fussy': 1.0, 'things': 2.0, 'in': 1.0, 'also': 1.0, 'myself': 1.0, 'the': 2.0, 'great': 1.0, 'bad': 1.0, 'size': 1.0, 'carrying': 1.0, 'strong': 1.0, 'though': 1.0, 'plus': 1.0, 'they': 1.0, 'isn': 1.0, 'bag': 2.0, 'need': 1.0, 'feminine': 1.0, 'blue': 1.0}
Word element => {'on': 1.0, 'need': 1.0, 'everything': 1.0, 'for': 1.0, 'space': 1.0, 'fyi': 1.0, 'i': 1.0, 'pockets': 1.0, 'little': 1.0, 'case': 1.0, 'are': 1.0, 'actually': 1.0, 'can': 1.0, 'best': 1.0, 'plenty': 1.0, 'you': 1.0, 'emote': 1.0, 'pocket': 1.0, 'is': 3.0, 'it': 3.0, 'with': 1.0, 'great': 1.0, 'the': 5.0, 'wipe': 1.0, 'comes': 1.0, 'and': 2.0, 'wipes': 1.0, 'just': 2.0, 'inside': 1.0, 'blue': 1.0, 'put': 1.0, 'a': 1.0, 'pack': 1.0, 'there': 1.0, 'of': 2.0, 'in': 1.0, 'other': 1.0}
Word element => {'satisfied': 1.0, 'stylish': 1.0, 'course': 1.0, 'around': 1.0, 'more': 2.0, 'features': 1.0, 'very': 1.0, 'little': 2.0, 'with': 2.0, 'back': 1.0, 'pad': 1.0, 'fits': 2.0, 'price': 1.0, 'best': 2.0, 'the': 15.0, 'stroller': 1.0, 'diaper': 2.0, 'but': 1.0, '2': 1.0, 'it': 3.0, 'this': 3.0, 'works': 1.0, 'wipes': 2.0, 'bags': 1.0, 'for': 2.0, 'purchased': 1.0, 'one': 1.0, 'months': 1.0, 'i': 1.0, '4': 1.0, 'separate': 1.0, 'other': 1.0, 'eb': 1.0, 'toys': 1.0, 'bag': 2.0, 'us': 1.0, 'we': 1.0, 'could': 1.0, 'ago': 1.0, 'a': 6.0, 'after': 1.0, 'be': 1.0, 'trying': 1.0, 'clothes': 1.0, 'couple': 1.0, 'under': 1.0, 'changes': 1.0, 'and': 3.0, 'our': 1.0, 'paci': 1.0, 'of': 3.0, '6': 1.0, 'wiggling': 1.0, 'in': 7.0, 'basket': 1.0, 'changing': 1.0, 'case': 1.0, 'front': 2.0, 'pouch': 1.0, 'side': 2.0, 'no': 1.0, 'about': 1.0, '8': 1.0, 'pocket': 4.0, 'toting': 1.0, 'are': 2.0, 'blanket': 1.0, 'oz': 1.0, 'bottles': 1.0, 'pockets': 1.0, 'diapers': 1.0, 'cooler': 3.0, 'put': 1.0, 'on': 2.0, '3': 1.0, 'main': 1.0, 'compartment': 1.0}
Word element => {'diapers': 1.0, 'to': 1.0, 'and': 1.0, 'need': 1.0, 'of': 1.0, 'has': 1.0, 'carry': 1.0, 'no': 1.0, 'also': 1.0, 'bag': 2.0, 'this': 1.0, 'room': 1.0, 'for': 1.0, 'love': 1.0, 'lightweight': 1.0, 'diaper': 1.0, 'great': 1.0, 'i': 1.0, 'when': 1.0, 'would': 1.0, 'be': 1.0, 'a': 1.0, 'plenty': 1.0, 'you': 1.0, 'traveling': 1.0, 'longer': 1.0}
Word element => {'is': 1.0, 'stuff': 1.0, 'baby': 1.0, 'the': 1.0, 'separating': 1.0, 'easily': 1.0, 'for': 1.0, 'labeled': 1.0, 'i': 1.0, 'it': 1.0, 'space': 1.0, 'this': 1.0, 'bag': 1.0, 'all': 2.0, 'very': 1.0, 'and': 1.0, 'like': 1.0, 'as': 1.0, 'lots': 1.0, 'sturdy': 1.0, 'has': 1.0, 'of': 1.0}
Word element => {'small': 1.0, 'use': 1.0, 'out': 1.0, 'wipes': 1.0, 'their': 1.0, 'about': 1.0, 'people': 1.0, 'other': 1.0, 'drying': 1.0, 'what': 1.0, 'read': 1.0, 'things': 1.0, 'said': 1.0, 'in': 3.0, 'enough': 1.0, 'be': 1.0, 'will': 1.0, 'but': 1.0, 've': 1.0, 'super': 1.0, 'keep': 1.0, 'future': 1.0, 'space': 2.0, 'carrying': 1.0, 'difficult': 1.0, 'than': 1.0, 'because': 1.0, 'mind': 1.0, 'are': 1.0, 'this': 2.0, 'pack': 1.0, 'much': 1.0, 'only': 1.0, 'my': 2.0, 'case': 1.0, 'that': 2.0, 'great': 2.0, 'refill': 1.0, 'possibly': 1.0, 'the': 4.0, 'month': 1.0, 'more': 1.0, 'around': 1.0, 'is': 3.0, 'needed': 1.0, 'needs': 1.0, 'bit': 1.0, 'so': 3.0, 'finding': 1.0, 'everything': 1.0, 'doesn': 1.0, 'was': 1.0, 'husband': 1.0, 'one': 1.0, 'for': 1.0, 'i': 4.0, 'wouldn': 1.0, 'pockets': 1.0, 'old': 1.0, 'cute': 1.0, 'and': 4.0, 'he': 3.0, 'extremely': 1.0, 'practical': 1.0, 'grow': 1.0, 'as': 1.0, 'all': 2.0, 'there': 3.0, 'of': 1.0, 'you': 1.0, 'tons': 1.0, 't': 2.0, 'a': 4.0, 's': 1.0, 'could': 1.0, 'bag': 3.0, 'need': 2.0, 'baby': 1.0}
Word element => {'properly': 1.0, 'close': 1.0, 'box': 1.0, 'modification': 1.0, 'needs': 1.0, 'compartments': 1.0, 'wipes': 1.0, 'hold': 1.0, 'enough': 1.0, 'has': 1.0, 'of': 1.0, 'quality': 1.0, 'items': 1.0, 'high': 1.0, 'is': 1.0, 'doesnt': 1.0, 'bag': 1.0, 'fisherprice': 1.0, 'to': 1.0, 'and': 1.0, 'necessary': 1.0, 'diaper': 1.0, 'the': 1.0, 'price': 1.0, 'baby': 1.0, 'worth': 1.0, 'just': 1.0, 'for': 1.0, 'one': 1.0, 'things': 1.0}
Word element => {'have': 1.0, 'got': 1.0, 'slipping': 1.0, 'eventually': 1.0, 'but': 1.0, 'not': 1.0, 'at': 1.0, 'worry': 1.0, 'like': 1.0, 'it': 3.0, 'first': 1.0, 'to': 3.0, 'tub': 1.0, 'son': 2.0, 'my': 2.0, 'used': 1.0, 'did': 1.0, 'pretty': 1.0, 'sticks': 1.0, 'the': 2.0, 't': 1.0, 'bottom': 1.0, 'of': 1.0, 'well': 1.0, 'i': 1.0, 'about': 1.0, 'don': 1.0}
Word element => {'years': 1.0, 'through': 1.0, 'well': 1.0, 'up': 1.0, 'will': 1.0, 'it': 1.0, 'hold': 1.0, 'know': 1.0, 'detail': 1.0, 'with': 1.0, 'christmas': 1.0, 'first': 1.0, 'cuteness': 1.0, 'are': 2.0, 'in': 1.0, 'my': 1.0, 'received': 1.0, 'and': 4.0, 'chose': 1.0, 'couldn': 1.0, 'they': 2.0, 'each': 1.0, 'something': 2.0, 'were': 1.0, 'that': 2.0, 'husband': 1.0, 'happier': 1.0, 'its': 1.0, 'for': 2.0, 'collect': 1.0, 'when': 1.0, 'kids': 1.0, 'adding': 1.0, 'i': 2.0, 'looking': 1.0, 'grown': 1.0, 'the': 3.0, 'ornaments': 1.0, 'what': 1.0, 'could': 1.0, 't': 1.0, 'we': 3.0, 'ornament': 1.0, 'be': 1.0, 'them': 1.0, 'steinbach': 1.0, 'baby': 1.0, 'is': 1.0, 'take': 1.0, 'many': 1.0, 'collection': 1.0, 'have': 1.0, 'compliments': 1.0, 'our': 2.0, 'to': 2.0, 'as': 1.0}
Word element => {'purchase': 1.0, 'cute': 1.0, 'a': 1.0, 'it': 1.0, 'first': 1.0, 'i': 2.0, 'ordered': 1.0, 's': 2.0, 'm': 1.0, 'nice': 1.0, 'happy': 2.0, 'seems': 1.0, 'turkey': 1.0, 'thanksgiving': 1.0, 'for': 1.0, 'with': 1.0, 'son': 1.0, 'day': 1.0, 'and': 1.0, 'quality': 1.0, 'bib': 2.0, 'the': 2.0, 'my': 2.0}
Word element => {'buy': 1.0, 'recaro': 3.0, 'bethe': 1.0, 'flatter': 1.0, 'all': 1.0, 'comfortable': 1.0, 'say': 1.0, 'seems': 2.0, 'until': 1.0, 'climb': 1.0, 'off': 1.0, 'see': 2.0, 'also': 1.0, 'makes': 2.0, 'little': 1.0, 'two': 2.0, 'wider': 1.0, 'after': 1.0, 'unbuckle': 1.0, 'offers': 1.0, 'wrist': 1.0, 'hard': 1.0, 'over': 2.0, 'guide': 1.0, 'don': 2.0, 'so': 3.0, 'with': 3.0, 'allows': 1.0, 'unbuckling': 1.0, 'but': 1.0, 'you': 1.0, 'slightly': 3.0, 'me': 1.0, 'may': 1.0, 'stays': 1.0, 'position': 1.0, 'seem': 2.0, 'that': 1.0, 'easily': 2.0, 'have': 6.0, 'belt': 4.0, 'fit': 2.0, 'was': 3.0, 'had': 2.0, 'area': 1.0, 'mini': 1.0, 'well': 3.0, 'i': 9.0, 'in': 3.0, 'seat': 15.0, 'm': 1.0, 'second': 1.0, 'height': 2.0, 'of': 2.0, 'the': 25.0, 'doing': 1.0, 'as': 2.0, 'annoying': 1.0, 'youthe': 1.0, 'to': 22.0, 'comes': 2.0, 'against': 1.0, 'any': 1.0, 'pretty': 1.0, 'our': 2.0, 'wanted': 1.0, 'anywhere': 1.0, 'now': 1.0, 'problem': 1.0, 'kids': 2.0, 'molded': 1.0, 'be': 5.0, 'it': 14.0, 'difficult': 2.0, 'thought': 1.0, 'already': 1.0, 'can': 3.0, 'is': 12.0, 'at': 3.0, 'more': 6.0, 'arm': 1.0, 'subaru': 1.0, 'side': 2.0, 'which': 4.0, 'plan': 1.0, 'vivo': 2.0, 'if': 4.0, 'this': 10.0, 'relatively': 1.0, 'particular': 1.0, 'why': 1.0, 'find': 3.0, 'day': 1.0, 'since': 1.0, 'daughter': 1.0, 'space': 1.0, 'might': 1.0, 'a': 9.0, 'we': 7.0, 'base': 4.0, 'an': 2.0, 'buckle': 2.0, 'than': 3.0, 'bit': 1.0, 'couldn': 1.0, 'constantly': 1.0, 'just': 2.0, 'and': 11.0, 't': 5.0, 'roomthe': 1.0, 'narrow': 2.0, 'only': 1.0, 'grab': 1.0, 'about': 1.0, 'thread': 1.0, 'certain': 1.0, 'van': 1.0, 'for': 5.0, 'one': 2.0, 'rear': 1.0, 'far': 1.0, 'booster': 3.0, 'presses': 2.0, 'like': 2.0, 'threaded': 2.0, 'first': 1.0, 'room': 1.0, 'my': 4.0, 'are': 1.0, 'headrest': 3.0, 'realized': 1.0, 'themselves': 1.0, 'didn': 1.0, 'place': 2.0, 'much': 1.0, 'do': 1.0, 're': 1.0, 'especially': 1.0, 'out': 1.0, 'months': 1.0, 'therefore': 1.0, 'tries': 1.0, 'frequentlyconsit': 1.0, 'easier': 3.0, 'both': 1.0, 'seats': 2.0, 'somewhat': 1.0, 'shoulder': 2.0, 'adjust': 3.0, 'when': 4.0, 'bolt': 1.0, 'doubly': 1.0, 'kid': 2.0, 'trying': 2.0, 'fabric': 1.0, 'through': 1.0, 'into': 3.0, 'who': 1.0, 'want': 1.0, 'switch': 1.0, 'hurting': 1.0, 'top': 1.0, 'time': 2.0, 'often': 1.0, 'probably': 1.0, 'where': 1.0, 'your': 1.0, 'not': 2.0, 'cover': 1.0, 'stock': 1.0, 'tweaking': 1.0, 'on': 3.0, 'car': 4.0, 'head': 1.0, 'haven': 1.0, 'tip': 1.0, 'offering': 1.0, 'rest': 1.0, 'safety': 1.0, 'or': 1.0, 'am': 1.0, 'something': 2.0, 'wrong': 1.0, 'heightsif': 1.0, 'buckling': 1.0, 'pull': 1.0, 'up': 1.0, 'pleased': 1.0, 'instructions': 1.0, 'comfortablethe': 1.0, 'has': 1.0, 'anyway': 1.0, 'upright': 1.0, 'another': 1.0, 'spend': 1.0, 'pros': 1.0, 'reclined': 2.0, 'checked': 1.0, 'back': 1.0, 'option': 1.0, 'outback': 1.0, 'issue': 3.0, 'overall': 1.0, 'quite': 1.0}
Word element => {'booster': 1.0, 'compact': 1.0, 'great': 1.0, 'i': 7.0, 'truly': 1.0, 'it': 6.0, 'around': 1.0, 'boosters': 1.0, 'have': 1.0, 'to': 5.0, 'that': 2.0, 'part': 1.0, 'overall': 1.0, 'slide': 1.0, 'a': 3.0, 'go': 1.0, 'hole': 1.0, 'be': 2.0, '2010': 1.0, 'my': 2.0, 'all': 1.0, 'fits': 1.0, 'often': 1.0, 'back': 2.0, 'on': 1.0, 'guy': 1.0, 'configuration': 1.0, 'is': 2.0, 'for': 3.0, 'bubble': 1.0, 'when': 1.0, 'three': 1.0, 'bigger': 1.0, 'and': 3.0, 'across': 1.0, 'one': 2.0, 'too': 1.0, 's': 2.0, 'narrower': 1.0, 'fully': 1.0, 'trying': 1.0, 'researched': 1.0, 'seats': 1.0, 'came': 1.0, 'pin': 1.0, 'kiddos': 1.0, 'find': 1.0, 'lap': 1.0, 'works': 1.0, 'without': 1.0, 'liking': 1.0, 'forrester': 1.0, 'he': 1.0, 'with': 3.0, 'this': 3.0, 'britax': 1.0, 'are': 1.0, 'work': 1.0, 'hard': 1.0, 'over': 1.0, 'the': 12.0, 'of': 4.0, 'int': 1.0, 'am': 1.0, 'securing': 1.0, 'up': 2.0, 'qualms': 1.0, 'along': 1.0, 'belt': 4.0, 'was': 1.0, 'guides': 1.0, 'clip': 1.0, 'used': 1.0, 'get': 2.0, 'seat': 2.0, 'm': 1.0, 'in': 2.0, 'absolutely': 1.0, 'out': 1.0, 'can': 1.0, 'so': 1.0, 'time': 1.0, 'bum': 1.0, 'wasting': 1.0, 'through': 1.0, 'only': 1.0, 'narrow': 1.0, 'opening': 1.0, 'shoulder': 1.0, 'guide': 1.0, 'board': 1.0, 'but': 2.0, 'not': 2.0, 'accompanying': 1.0, 'important': 1.0, 'no': 1.0, 'could': 1.0, 'will': 1.0, 'two': 1.0, 'little': 1.0, 'very': 1.0, 'figure': 1.0, 'however': 1.0, 'bit': 1.0, 'disappointing': 1.0}
Word element => {'son': 1.0, 'sturdy': 1.0, 'really': 1.0, 'is': 1.0, 'it': 2.0, 'give': 1.0, 'get': 1.0, 're': 1.0, 'did': 1.0, 'glad': 1.0, 'm': 1.0, 'chance': 2.0, 'decided': 1.0, 'version': 1.0, 'high': 1.0, 'low': 1.0, 'with': 1.0, 'success': 1.0, 'third': 1.0, 'ceiling': 1.0, 'positioning': 1.0, 'caravan': 2.0, 'including': 1.0, 'great': 2.0, 'grand': 2.0, '2006': 1.0, 'of': 4.0, '3rd': 2.0, 'brand': 1.0, 'child': 1.0, 'loves': 1.0, 'that': 1.0, 'if': 1.0, 'dodge': 1.0, 'used': 1.0, 'i': 5.0, 'row': 3.0, 'and': 3.0, 'in': 3.0, 've': 1.0, 'fit': 1.0, 'for': 1.0, 'this': 3.0, 'struggling': 2.0, 'the': 9.0, 'fits': 2.0, 'my': 3.0, 'chose': 1.0, 'after': 2.0, 'molding': 1.0, 'to': 5.0, 'all': 1.0, 'booster': 5.0, 'name': 1.0, 'due': 1.0, 'thus': 1.0, 'far': 1.0, 'take': 1.0, 'many': 1.0, 'back': 2.0, 'tilt': 1.0, 'having': 1.0, 'find': 1.0, 'boosters': 2.0, 'because': 1.0, 'plastic': 1.0, 'stow': 1.0, 'a': 5.0, 't': 1.0, 'go': 1.0, 'or': 1.0, 'belt': 1.0, 'doesn': 1.0, 'from': 1.0, 'slide': 1.0, 'you': 1.0, 'easily': 1.0}
Word element => {'any': 1.0, 'nice': 1.0, 'looks': 1.0, 'an': 1.0, 'vehicle': 1.0, 'perfect': 1.0, 'child': 1.0, 'the': 1.0, 'transition': 1.0, 'is': 1.0, 'in': 1.0, 'for': 2.0, 'smaller': 1.0, 'infant': 1.0, 'who': 1.0, 'too': 1.0, 'seat': 2.0, 'big': 1.0}
Word element => {'in': 1.0, 'case': 1.0, 'spare': 1.0, 'several': 1.0, 'lost': 1.0, 'i': 4.0, 'bad': 1.0, 'have': 1.0, 't': 1.0, 'would': 1.0, 'so': 1.0, 'parts': 1.0, 'about': 1.0, 'any': 1.0, 'and': 1.0, 'ordered': 1.0, 'say': 1.0, 'this': 1.0, 'it': 2.0, 'can': 1.0, 'came': 1.0, 'days': 1.0, 'early': 1.0, 'anything': 1.0}
Word element => {'easily': 1.0, 'so': 1.0, 'is': 1.0, '10': 1.0, 'good': 1.0, 'my': 1.0, 'the': 1.0, 'use': 1.0, 'especially': 1.0, 'daily': 1.0, 'it': 1.0, 'i': 1.0, 'to': 1.0, 'tore': 1.0, 'membranes': 1.0, '8': 1.0, 'have': 1.0, 'a': 1.0, 'back': 1.0, 'of': 1.0, 'up': 1.0, 'parts': 1.0, 'x': 1.0, 'as': 1.0, 'breastpump': 1.0, 'they': 1.0}
Word element => {'well': 1.0, 'bottles': 1.0, 'storage': 1.0, 'replace': 1.0, 'her': 1.0, 'works': 1.0, 'it': 1.0, 'gave': 1.0, 'i': 1.0, 'ameda': 2.0, 'here': 1.0, 'sister': 1.0, 'just': 1.0, 'me': 1.0, 'all': 2.0, 'spare': 2.0, 'pump': 2.0, 'and': 1.0, 'breast': 2.0, 'parts': 2.0, 'the': 1.0, 'are': 1.0, 'my': 1.0}
Word element => {'percent': 1.0, '30': 1.0, '20': 1.0, 'about': 1.0, 'by': 1.0, 'increased': 1.0, 'switched': 1.0, 'we': 1.0, 'and': 1.0, 'volume': 1.0, 'parts': 2.0, 'day': 1.0, 'as': 1.0, 'per': 1.0, 'turns': 1.0, 'is': 1.0, 'three': 1.0, 'out': 2.0, 'degrade': 1.0, 'these': 2.0, 'the': 3.0, 'performance': 1.0, 'of': 3.0, 'time': 1.0, 'pump': 2.0, 'it': 1.0, 'this': 1.0, 'production': 1.0, 'wear': 1.0, 'after': 2.0, 'all': 1.0, 'four': 1.0, 'over': 1.0, 'months': 1.0, 'usage': 1.0, 'times': 1.0}
Word element => {'with': 1.0, 'pleased': 1.0, 'every': 1.0, 'the': 1.0, 'this': 2.0, 'package': 1.0, 'of': 1.0, 'spare': 1.0, 'and': 1.0, 'parts': 1.0, 'im': 1.0, 'i': 2.0, 'bottles': 1.0, 'flasks': 1.0, 'needed': 1.0, 'had': 1.0, 'everything': 1.0, 'after': 1.0, 'purchased': 1.0}
Word element => {'should': 1.0, 'happened': 1.0, 'has': 1.0, 'based': 1.0, 'but': 1.0, 'mistakes': 1.0, 'know': 1.0, 'understanding': 1.0, 'am': 1.0, 'more': 2.0, 'with': 1.0, 'issue': 1.0, 'be': 1.0, 'this': 2.0, 't': 1.0, 'don': 1.0, 'just': 1.0, 'is': 4.0, 'buyer': 1.0, 'benefit': 1.0, 'possibly': 1.0, 'on': 2.0, 'make': 1.0, 'invoice': 1.0, 'taking': 1.0, 'called': 1.0, 'are': 4.0, 'items': 4.0, 'see': 1.0, 'it': 4.0, 'received': 2.0, 'he': 1.0, 'how': 1.0, 'problem': 1.0, 'things': 1.0, 'being': 2.0, 'corrected': 1.0, 'tubing': 1.0, 'they': 2.0, 'have': 2.0, 'completing': 1.0, 'what': 1.0, 'when': 2.0, 'felt': 1.0, 'gave': 1.0, 'that': 4.0, 'to': 5.0, 'annoying': 1.0, 'as': 1.0, 'word': 1.0, 'an': 3.0, 'all': 2.0, 'adapter': 3.0, 'white': 1.0, 'kept': 1.0, 'one': 1.0, 'stating': 1.0, 'i': 9.0, 'were': 4.0, 'parts': 2.0, 'orders': 1.0, 'than': 2.0, 'explain': 1.0, 'caps': 2.0, 'from': 1.0, 'happen': 1.0, 'hard': 1.0, 'excuse': 1.0, 'would': 1.0, 'feel': 1.0, 'your': 1.0, 'dishonest': 1.0, 'missing': 4.0, 'doubt': 1.0, 'read': 1.0, 'seller': 1.0, 'these': 3.0, 'receiving': 1.0, 'figured': 1.0, 'listed': 2.0, 'and': 7.0, 'situation': 1.0, 'previous': 1.0, 'description': 1.0, 'customer': 1.0, 'favor': 1.0, 'was': 2.0, 'courteous': 1.0, 'enough': 1.0, 'fail': 1.0, 'did': 1.0, 'agree': 1.0, 'send': 1.0, 'although': 1.0, 'saying': 1.0, 'like': 2.0, '34': 2.0, 'representative': 1.0, 'reviews': 2.0, 'we': 1.0, 'a': 1.0, 'for': 2.0, 'order': 2.0, 'actually': 1.0, 'person': 1.0, 'the': 16.0, 'of': 2.0, 'doing': 1.0, 'pictures': 1.0, 'website': 1.0, 'my': 1.0, 'me': 1.0, 'not': 1.0, 'by': 1.0, 'about': 1.0, 'included': 2.0, 'so': 1.0, 'sure': 1.0, 'in': 2.0, 'service': 1.0, 'shipment': 1.0, 'there': 2.0}
Word element => {'sent': 1.0, 'they': 1.0, '2013': 1.0, '9': 1.0, 'update': 1.0, 'an': 1.0, 've': 1.0, 'very': 1.0, 'kit': 1.0, 'same': 1.0, 'received': 1.0, 'contacted': 1.0, 'previous': 1.0, 'spare': 1.0, 'is': 2.0, 'today': 2.0, 'the': 6.0, 'retailer': 1.0, 'part': 2.0, 'not': 1.0, 'with': 1.0, 'it': 1.0, 'and': 2.0, 'issue': 2.0, 'i': 4.0, 'happy': 1.0, 'adaptor': 1.0, 'missing': 2.0, 'reviewer': 1.0, '7': 1.0, 'caps': 1.0, 'noticed': 1.0, 'parts': 1.0, 'that': 2.0, 'since': 1.0, 'a': 1.0, 'had': 2.0}
Word element => {'comparison': 1.0, 'last': 1.0, 'long': 1.0, 'how': 1.0, 'am': 1.0, 'seem': 1.0, 'ordered': 1.0, 'with': 3.0, 'other': 1.0, 'standard': 1.0, 'unsure': 1.0, 'plastic': 1.0, 'the': 8.0, 'in': 1.0, 'pieces': 1.0, 'disappointed': 1.0, 'just': 1.0, 'not': 1.0, 'will': 1.0, 'but': 1.0, 'work': 1.0, 'quality': 1.0, 'of': 2.0, 'up': 1.0, 'as': 1.0, 'were': 1.0, 'parts': 3.0, 'do': 1.0, 'and': 1.0, 'i': 4.0, 'was': 1.0, 'to': 3.0, 'same': 1.0, 'kit': 1.0, 'received': 1.0, 'they': 3.0, 'pump': 2.0, 'fine': 1.0, 'spare': 1.0}
Word element => {'avent': 1.0, 'a': 1.0, 'buy': 1.0, 'just': 1.0, 'frustration': 1.0, 'this': 1.0, 'yourself': 2.0, 'the': 2.0, 'one': 1.0, 'time': 1.0, 'is': 1.0, 'on': 1.0, 'some': 1.0, 'of': 1.0, 'worst': 1.0, 'and': 2.0, 'breast': 1.0, 'pumps': 1.0, 'market': 1.0, 'philips': 1.0, 'money': 1.0, 'save': 1.0}
Word element => {'up': 1.0, 'great': 1.0, 'thus': 1.0, 'parts': 1.0, 'just': 1.0, 'i': 1.0, 'old': 1.0, 'kind': 1.0, 'if': 1.0, 'is': 1.0, 'breast': 2.0, 'wirking': 1.0, 'pump': 2.0, 'my': 2.0, 'new': 1.0, 'make': 1.0, 'and': 1.0, 'get': 1.0, 'sure': 1.0, 'tune': 1.0, 'it': 1.0, 'wanted': 1.0, 'to': 4.0, 'was': 2.0, 'its': 1.0, 'kit': 1.0, 'full': 1.0, 'potential': 1.0}
Word element => {'item': 1.0, 'this': 1.0, 'given': 1.0, 'recommend': 1.0, 'needed': 1.0, 'i': 2.0, 'just': 1.0, 'use': 1.0, 'arrived': 1.0, 'in': 1.0, 'me': 1.0, 'and': 1.0, 'parts': 1.0, 'as': 1.0, 'pump': 1.0, 'time': 1.0, 'condition': 1.0, 'on': 1.0, 'sterile': 1.0, 'so': 1.0, 'everything': 1.0, 'freind': 1.0, 'had': 1.0, 'to': 2.0, 'be': 1.0, 'able': 1.0, 'these': 1.0, 'the': 1.0, 'my': 1.0}
Word element => {'in': 1.0, 'a': 1.0, 'since': 1.0, 'home': 1.0, 'recommend': 1.0, 'up': 1.0, 'of': 1.0, 'highly': 1.0, 'and': 1.0, 'seat': 1.0, 'know': 1.0, 'space': 1.0, 'no': 1.0, 'two': 1.0, 'afterwards': 1.0, 'our': 3.0, 'have': 1.0, 'premium': 1.0, 'it': 1.0, 'i': 1.0, 'potty': 2.0, 'longer': 1.0, 'is': 2.0, 'on': 1.0, 'toddlers': 1.0, 'little': 1.0, 'hang': 1.0, 'these': 1.0, 'the': 2.0, 'floor': 1.0, 'to': 1.0}
Word element => {'use': 1.0, 'in': 1.0, 'works': 1.0, 'have': 1.0, 'training': 1.0, 'bjorn': 1.0, 'baby': 1.0, 'and': 2.0, 'up': 1.0, 'potty': 2.0, 'kids': 1.0, 'when': 1.0, 'great': 1.0, 'the': 3.0, 'hang': 1.0, 'we': 1.0, 'it': 1.0, 'this': 1.0, 'with': 1.0, 'is': 1.0, 'easy': 1.0, 'for': 1.0, 'to': 1.0, 'seat': 2.0, 'not': 1.0}
Word element => {'done': 1.0, 's': 1.0, 'after': 1.0, 'her': 1.0, 'to': 1.0, 'loves': 1.0, 'daughter': 1.0, 'invention': 1.0, 'keeps': 1.0, 'things': 1.0, 'my': 1.0, 'the': 2.0, 'she': 1.0, 'hang': 1.0, 'off': 1.0, 'clean': 1.0, 'up': 1.0, 'and': 1.0, 'potty': 2.0, 'great': 1.0, 'a': 1.0, 'floor': 1.0, 'what': 1.0}
Word element => {'idea': 1.0, 'as': 2.0, 'wish': 1.0, 'liked': 1.0, 'for': 1.0, 'i': 2.0, 'though': 1.0, 'potty': 1.0, 'get': 1.0, 'hook': 1.0, 'you': 1.0, 'pricey': 1.0, 'little': 2.0, 'been': 1.0, 'well': 1.0, 'a': 2.0, 'doesn': 1.0, 'what': 1.0, 'part': 1.0, 'would': 2.0, 'of': 2.0, 'seat': 1.0, 'great': 1.0, 'the': 2.0, 't': 1.0, 'wider': 1.0, 'sit': 1.0, 'on': 1.0, 'it': 1.0}
Word element => {'free': 1.0, 'bathroom': 1.0, 'worth': 1.0, 'of': 1.0, 'keep': 1.0, 'seat': 1.0, 'buying': 1.0, 'do': 1.0, 'to': 1.0, 'exactly': 1.0, 'what': 1.0, 'it': 1.0, 'clutter': 1.0, 'should': 1.0, 'child': 1.0, 's': 1.0, 'holds': 1.0, 'does': 1.0, 'your': 2.0, 'potty': 1.0}
Word element => {'price': 1.0, 'hangs': 1.0, 'toilet': 2.0, 'hook': 1.0, 'of': 3.0, 'the': 5.0, 'sort': 2.0, 'hey': 1.0, 'seat': 1.0, 'just': 1.0, 'but': 2.0, 'works': 2.0, 'on': 2.0, 'for': 1.0, 'one': 1.0, 'weirdly': 1.0, 'only': 1.0, 'it': 4.0, 'direction': 1.0, 'also': 1.0, 'sticks': 1.0, 'from': 1.0, 'top': 1.0, 'out': 1.0, 'pressure': 1.0}
Word element => {'with': 1.0, 'good': 1.0, 'are': 1.0, 'two': 1.0, 'or': 1.0, 'but': 1.0, 'used': 1.0, 'after': 1.0, 'ends': 1.0, 'on': 3.0, 'it': 4.0, 'in': 2.0, 'facing': 1.0, 'hidden': 1.0, 'part': 1.0, 'this': 1.0, 'soft': 1.0, 'if': 1.0, 'pretty': 1.0, 'also': 1.0, 'will': 1.0, 'doesn': 1.0, 'okay': 1.0, 'to': 1.0, 'seat': 1.0, 'our': 1.0, 'up': 1.0, 'fits': 1.0, 'bathroom': 1.0, '34': 2.0, 'of': 1.0, 'there': 1.0, 'hook': 1.0, 'toilet': 3.0, 'right': 1.0, 'is': 1.0, 'side': 1.0, 'door': 1.0, 'standard': 1.0, 'day': 1.0, 'looking': 1.0, 'extra': 1.0, 'ugly': 1.0, 'the': 6.0, 'fit': 1.0, 'corner': 1.0, 'only': 1.0, 'its': 1.0, 'when': 1.0, 'you': 1.0, 'open': 1.0, 'took': 1.0, 'we': 1.0, 't': 1.0, 'a': 2.0, 'so': 2.0, 'bit': 1.0, 'getting': 1.0}
Word element => {'in': 1.0, 'excellent': 1.0, 'and': 2.0, 'probably': 1.0, 'nursery': 1.0, 'do': 1.0, 'get': 1.0, 'great': 2.0, 'looks': 2.0, 'it': 4.0, 'this': 2.0, 'unit': 1.0, 'put': 1.0, 'an': 1.0, 'i': 5.0, 'sites': 1.0, 'the': 2.0, 'myself': 1.0, 'expected': 1.0, 'other': 1.0, 'value': 1.0, 'together': 1.0, 'let': 1.0, 'such': 1.0, 'some': 1.0, 'was': 2.0, 'husband': 1.0, 'available': 1.0, 'of': 1.0, 't': 1.0, 'a': 2.0, 'through': 1.0, 'better': 1.0, 'should': 1.0, 'top': 1.0, 'price': 1.0, 'have': 1.0, 'able': 1.0, 'than': 2.0, 'because': 1.0, 'wasn': 1.0, 'like': 1.0, 'to': 1.0, 'as': 2.0, 'my': 1.0, 'tight': 1.0, 'would': 1.0, 'more': 1.0, 'holds': 1.0, 'at': 1.0, 'lot': 1.0}
Word element => {'worth': 1.0, '00': 1.0, '70': 1.0, 'love': 1.0, 'known': 1.0, 'storage': 1.0, 'll': 1.0, 'return': 1.0, 'use': 2.0, 'being': 1.0, 'stuck': 1.0, 'quality': 2.0, 'them': 3.0, 'star': 1.0, 'product': 2.0, 'grow': 1.0, 'aware': 1.0, 'they': 4.0, 'first': 1.0, 'instinct': 1.0, 'might': 1.0, 'best': 1.0, 'few': 2.0, 'decide': 1.0, 'remember': 1.0, 'other': 1.0, '9': 1.0, 'yet': 1.0, 'born': 1.0, 'isn': 1.0, 'recommendation': 1.0, 't': 3.0, 'your': 3.0, 'able': 1.0, 'get': 1.0, 'however': 2.0, 'feeding': 2.0, 'bottle': 6.0, 'this': 7.0, 'stage': 1.0, 'drop': 6.0, 'expected': 1.0, 'given': 1.0, 'five': 1.0, '2': 1.0, 'instead': 1.0, 'drops': 1.0, 'europe': 1.0, 'brand': 2.0, 'supposed': 1.0, 'perhaps': 2.0, 'back': 2.0, 'ate': 1.0, 'noticing': 1.0, 'would': 3.0, 'care': 1.0, 'likes': 1.0, 'refusing': 1.0, 'thought': 2.0, 'from': 5.0, 'baby': 19.0, 'fed': 1.0, 'girl': 4.0, 'with': 10.0, 'newborn': 1.0, 'ridiculous': 1.0, 'buy': 3.0, 'which': 7.0, 'evenflo': 11.0, 'have': 3.0, 'until': 1.0, 'reaction': 1.0, 'spare': 1.0, 'see': 2.0, 'weeks': 3.0, 'seems': 1.0, 'like': 4.0, 'birth': 1.0, 'on': 3.0, 'sizes': 1.0, 'fuzz': 3.0, 'health': 1.0, 'continued': 1.0, 'liking': 2.0, 'bottles': 11.0, 'after': 1.0, 'by': 3.0, 'day': 2.0, 'since': 5.0, 'at': 3.0, 'notice': 2.0, 'three': 2.0, 'learned': 1.0, 'thinner': 1.0, 'won': 1.0, 'two': 5.0, 'pediatrician': 1.0, 'i': 1.0, 'feed': 2.0, 'about': 3.0, 'colic': 2.0, 'the': 31.0, 'brands': 1.0, 'allowed': 2.0, 'of': 14.0, 'some': 2.0, 'none': 1.0, 'these': 4.0, 'while': 1.0, 'compared': 1.0, 'faster': 1.0, 'wife': 1.0, 'used': 1.0, 'left': 1.0, 'opening': 1.0, 'promote': 1.0, 'tried': 2.0, 'just': 5.0, 'and': 13.0, 'one': 13.0, 'happy': 1.0, 'were': 3.0, 'that': 10.0, 'because': 3.0, 'nipples': 5.0, 'guess': 1.0, 'for': 9.0, 'it': 8.0, 'be': 3.0, 'shorter': 1.0, 'stages': 1.0, 'started': 3.0, 'a': 11.0, 'expensive': 2.0, 's': 2.0, 'sides': 1.0, 'maybe': 2.0, 'take': 1.0, 'then': 1.0, 'design': 1.0, 'had': 9.0, 'store': 1.0, 'no': 2.0, 'was': 7.0, 'our': 18.0, 'step': 1.0, 'luck': 1.0, 'right': 2.0, 'to': 18.0, 'heard': 1.0, 'did': 1.0, 'time': 3.0, 'leading': 1.0, 'both': 1.0, 'in': 2.0, 'excited': 1.0, 'weekend': 2.0, 'wider': 2.0, 'cheaper': 1.0, 'up': 1.0, 'comfortable': 1.0, 'change': 2.0, 'gums': 1.0, 'you': 4.0, 'more': 6.0, 'struggle': 1.0, 'compare': 1.0, 'eat': 1.0, 'she': 11.0, 'make': 2.0, 'big': 1.0, 'happen': 1.0, 'barely': 1.0, 'month': 1.0, 'gave': 1.0, 'same': 1.0, 'age': 1.0, 'don': 1.0, 'crisis': 2.0, 'actually': 1.0, 'us': 3.0, 'we': 30.0, 'bad': 1.0, 'saved': 1.0, 'my': 1.0, 'are': 2.0, 'suggested': 1.0, 'local': 1.0, 'formula': 2.0, 'prevent': 1.0, 'colics': 1.0, 'little': 2.0, 'her': 3.0, 'kept': 1.0, 'refused': 1.0, 'trying': 2.0, 'nipple': 7.0, 'every': 1.0, 'great': 1.0, 'if': 4.0, 'changing': 1.0, 'much': 1.0, 'put': 1.0, 'an': 2.0, 'ones': 3.0, 'all': 3.0, 'what': 4.0, 'question': 1.0, 'out': 1.0, 'liked': 2.0, 'suffered': 1.0, 'bought': 3.0, 'seemed': 1.0, 'chicco': 11.0, 'better': 3.0, 'definitely': 1.0, 'set': 2.0, 'prepared': 1.0, 'shape': 1.0, 'is': 7.0, 'can': 2.0, 'so': 2.0, 'winged': 1.0, 'beginning': 1.0, 'neonatal': 1.0, 'could': 3.0, 'will': 2.0, 'its': 1.0, 'over': 1.0, 'six': 1.0, 'makes': 1.0, 'give': 2.0, 'flow': 3.0, 'hold': 2.0, 'guessed': 1.0, 'different': 3.0, 'not': 6.0, 'accepting': 1.0, 'whole': 1.0, 'as': 3.0, 'away': 1.0, 'price': 1.0, 'or': 3.0, 'now': 1.0, 'fuzziness': 1.0, 'been': 1.0, 'whether': 1.0, 'looking': 1.0}
Word element => {'for': 1.0, 'street': 1.0, 'it': 1.0, 'hard': 1.0, 'idea': 1.0, 'baby': 1.0, 'price': 1.0, 'if': 1.0, 'a': 2.0, 'monster': 1.0, 'want': 1.0, 'little': 1.0, 'bottle': 1.0, 'high': 1.0, 'cookie': 1.0, 'cute': 1.0, 'find': 1.0, 'was': 1.0, 'to': 1.0, 'that': 1.0, 'sesame': 1.0, 'you': 1.0, 'likes': 1.0, 'but': 1.0}
Word element => {'free': 1.0, 'daughter': 1.0, 'keep': 1.0, 'to': 1.0, 'help': 1.0, 's': 1.0, 'catch': 1.0, 'my': 1.0, 'are': 1.0, 'mess': 1.0, 'these': 1.0, 'they': 1.0, 'crumbs': 1.0, 'great': 1.0, 'clean': 1.0, 'little': 1.0, 'and': 3.0, 'clothes': 1.0, 'bibs': 1.0, 'other': 1.0, 'messes': 1.0}
Word element => {'100': 1.0, 'recommend': 1.0, 'them': 1.0, 'it': 1.0, 'love': 1.0, 'they': 1.0, 'are': 1.0, 'child': 1.0, 'to': 2.0, 'perfect': 1.0, 'easy': 1.0, 'feed': 1.0, 'i': 2.0, 'your': 1.0, 'very': 1.0, 'and': 1.0, 'clean': 1.0, 'its': 1.0}
Word element => {'messy': 1.0, 'teething': 1.0, 'he': 1.0, 'a': 1.0, 'them': 1.0, 'is': 1.0, 'on': 1.0, 'this': 1.0, 'loves': 1.0, 'to': 1.0, 'much': 1.0, 'chew': 1.0, 'than': 1.0, 'one': 1.0, 'gets': 1.0, 'these': 1.0, 'better': 1.0, 'are': 1.0, 'my': 1.0, 'little': 2.0, 'cloth': 1.0, 'bibs': 1.0, 'however': 1.0}
Word element => {'so': 1.0, 'alike': 1.0, 'them': 1.0, 'time': 1.0, 'having': 1.0, 'but': 1.0, 'little': 1.0, 'it': 1.0, 'hard': 2.0, 'mom': 1.0, 'not': 1.0, 'i': 1.0, 'reasonable': 1.0, 'does': 1.0, 'price': 1.0, 'onsies': 1.0, 'a': 2.0, 'want': 1.0, 'the': 2.0, 'dressed': 1.0, 'find': 2.0, 'high': 1.0, 'my': 1.0, 'nephews': 1.0, 'clothes': 1.0, 'trying': 1.0, 'was': 3.0, 'to': 2.0, 'camo': 1.0, 'for': 1.0}
Word element => {'seller': 1.0, 'says': 1.0, 'nice': 1.0, 'be': 1.0, 'would': 1.0, '00': 1.0, 'not': 1.0, '21': 1.0, 'size': 2.0, 'all': 1.0, 'here': 1.0, 'and': 1.0, 'get': 2.0, 'to': 2.0, 'awhile': 1.0, 'got': 1.0, 'earlier': 1.0, 'the': 5.0, 'way': 1.0, 'our': 1.0, 'on': 1.0, 'for': 2.0, 'disappointed': 1.0, 'newborn': 1.0, 'in': 2.0, 'though': 1.0, 'ordered': 1.0, 'along': 1.0, 'we': 1.0, 'it': 4.0, 'this': 2.0, 'mail': 1.0, 'a': 3.0, '12m': 2.0, 'son': 1.0, 'day': 1.0, 'onesie': 2.0, 'than': 1.0, 'even': 1.0, 'tracking': 1.0, 'is': 2.0, 'said': 1.0, 'took': 1.0}
Word element => {'thank': 1.0, 'packaged': 1.0, 'plus': 1.0, 'and': 3.0, 'the': 3.0, 'that': 1.0, 'detail': 1.0, 'is': 2.0, 'you': 1.0, 'bear': 1.0, 'picture': 1.0, 'i': 2.0, 'figurine': 1.0, 'in': 2.0, 'also': 1.0, 'on': 1.0, 'with': 2.0, 'this': 1.0, 'it': 2.0, 'shower': 1.0, 'm': 2.0, 'absolutely': 1.0, 'cute': 1.0, 'worth': 1.0, 'love': 1.0, 'for': 1.0, 'shipped': 1.0, 'bag': 1.0, 'shows': 1.0, 'every': 2.0, 'soooo': 1.0, 'extremely': 1.0, 'fast': 1.0, 'satisfied': 1.0, 'dipper': 1.0, 'penny': 1.0, 'purchase': 1.0, 'my': 1.0, 'well': 1.0, 'has': 1.0, 'recommended': 1.0, 'all': 1.0, 'mommies': 1.0, 'to': 2.0, 'was': 1.0, 'be': 1.0, 'baby': 1.0, 'single': 1.0, 'little': 1.0, 'very': 1.0, 'which': 1.0, 'a': 1.0}
Word element => {'facebook': 1.0, 'now': 1.0, 'on': 1.0, 'probably': 1.0, 'took': 1.0, 'and': 1.0, 'it': 1.0, 'used': 1.0, 'loved': 1.0, 'this': 1.0, 'pictures': 1.0, 'cute': 1.0, 'topper': 1.0, 'which': 1.0, 'yesterday': 1.0, 'for': 1.0, 'are': 1.0, 'shower': 1.0, 'my': 1.0, 'by': 1.0, 'baby': 1.0, 'daughters': 1.0, 'everyone': 1.0}
Word element => {'special': 1.0, 'few': 1.0, 'of': 1.0, 'if': 1.0, 'at': 1.0, 'babbles': 1.0, 'even': 1.0, 'inside': 1.0, 'sounding': 1.0, 'crunchy': 1.0, 'piece': 1.0, 'squeezing': 1.0, 'most': 1.0, 'zebra': 3.0, 'it': 2.0, 'and': 4.0, 'searching': 1.0, '24': 1.0, 'old': 1.0, 'realized': 1.0, 'about': 1.0, 'has': 1.0, 'toy': 4.0, 'rattle': 1.0, 'undoubtedly': 1.0, 'months': 1.0, 'one': 1.0, 'raised': 1.0, 'pal': 1.0, 'friends': 1.0, 'so': 1.0, 'his': 2.0, 'this': 4.0, 'lost': 1.0, 'another': 1.0, 'my': 1.0, 'quickly': 1.0, 'for': 3.0, 'had': 1.0, 'was': 1.0, 'recognized': 1.0, 'that': 1.0, 'loves': 3.0, 'son': 1.0, 'to': 3.0, 'as': 3.0, 'ring': 1.0, 'only': 1.0, 'much': 2.0, 'looking': 1.0, 'is': 1.0, 'around': 1.0, 'hours': 1.0, 'should': 1.0, 'order': 1.0, 'then': 1.0, 'enjoyed': 1.0, 'plastic': 1.0, 'he': 5.0, 'cherished': 1.0, 'how': 1.0, 'missed': 1.0, 'have': 1.0, 's': 1.0, 'we': 5.0, 'a': 3.0, 'backup': 1.0, 'chewing': 1.0, 'him': 1.0, 'be': 1.0, 'dotted': 1.0, 'on': 1.0, 'the': 4.0}
Word element => {'gift': 1.0, 'perfect': 1.0, 'just': 1.0, 'was': 1.0, 'filler': 1.0, 'this': 1.0, 'one': 1.0, 'great': 1.0, 'and': 2.0, 'baby': 1.0, 'little': 3.0, 'my': 1.0, 'cute': 1.0, 'had': 1.0, 'for': 1.0, 'a': 3.0, 'new': 1.0, 'teether': 1.0, 'girl': 1.0, 'nephew': 1.0}
Word element => {'worth': 1.0, 'also': 1.0, 'rock': 1.0, 'really': 1.0, 'recommend': 1.0, 'love': 3.0, 'basket': 1.0, 'the': 5.0, 'more': 1.0, 'color': 1.0, 'it': 2.0, 'durable': 1.0, 'money': 1.0, 'height': 1.0, 'highly': 1.0, 'and': 2.0, 'well': 1.0, 'makes': 1.0, 'does': 1.0, 'even': 1.0, 'useable': 1.0, 'others': 1.0, 'portability': 1.0, 'would': 2.0, 'i': 2.0, 'buy': 1.0, 'again': 1.0}
Word element => {'nursery': 1.0, 'daughter': 1.0, 'addition': 1.0, 'beautuful': 1.0, 'quality': 1.0, 'up': 1.0, 'spit': 1.0, 'reduces': 1.0, 'elevated': 1.0, 'head': 1.0, 'higher': 1.0, 'one': 1.0, 'make': 1.0, '2': 1.0, 'most': 1.0, 'pregnant': 1.0, 'but': 2.0, 'color': 1.0, 'wood': 2.0, 'dark': 2.0, 'beautiful': 1.0, 'was': 2.0, 'screwdriver': 1.0, 'isn': 1.0, 'dig': 1.0, 'didn': 1.0, 'even': 1.0, 'who': 1.0, 'for': 3.0, 'product': 2.0, 'than': 1.0, 'assemble': 1.0, 'great': 1.0, 'find': 1.0, 'since': 1.0, '1': 1.0, 'can': 1.0, 'so': 2.0, 'basket': 3.0, 'that': 2.0, 'through': 1.0, 'far': 1.0, 'design': 1.0, 'our': 3.0, 'as': 1.0, 'other': 1.0, 'matching': 1.0, 'do': 1.0, 'only': 1.0, 'perfectly': 1.0, 'range': 1.0, 'stand': 1.0, 'down': 1.0, 'and': 5.0, 'a': 8.0, 'sides': 1.0, 's': 3.0, 'want': 1.0, 'sits': 1.0, 'is': 4.0, 'recommendations': 1.0, 'around': 1.0, 'it': 5.0, 'this': 2.0, 'with': 2.0, 'junk': 1.0, 'little': 1.0, 'nice': 1.0, 'two': 1.0, 'i': 1.0, 'light': 1.0, 'large': 1.0, 'came': 1.0, 'of': 4.0, 'the': 9.0, 'slightly': 1.0, 'without': 2.0, 'her': 2.0, 'tools': 1.0, 'easy': 2.0, 'get': 1.0, 'fasteners': 1.0, 'sleeper': 1.0, 'needed': 1.0, 'modern': 1.0, 'furniture': 1.0, 'on': 1.0, 'weight': 1.0, 'move': 1.0, 'house': 1.0, 'improvement': 1.0, 'or': 1.0, 'motion': 1.0, 'baby': 3.0, 'fit': 1.0, 't': 2.0, 'rocker': 1.0, 'mom': 1.0, 'probably': 1.0, 'safer': 1.0, 'closet': 1.0, 'in': 1.0, 'bedside': 1.0, 'my': 1.0, 'would': 1.0, 'taller': 2.0, 'be': 2.0, 'offer': 1.0, 'today': 1.0, 'act': 1.0, 'beds': 1.0, 'have': 1.0, 'lean': 1.0, 'to': 9.0, 'pretty': 1.0, 'moses': 2.0, 'out': 1.0}
Word element => {'purchse': 1.0, 'these': 1.0, 'the': 2.0, 'that': 1.0, 'parts': 1.0, 'were': 1.0, 'see': 1.0, 'compress': 1.0, 'output': 1.0, 'a': 1.0, 'was': 2.0, 'had': 1.0, 'so': 1.0, 'correctly': 1.0, 'original': 1.0, 'i': 2.0, 'one': 1.0, 'replacement': 1.0, 'very': 1.0, 'to': 1.0, 'as': 1.0, 'my': 1.0, 'became': 1.0, 'immediate': 1.0, 'result': 1.0, 'worth': 1.0, 'diaphragms': 1.0, 'creased': 1.0, 'longer': 1.0, 'thankful': 1.0, 'would': 1.0, 'new': 1.0, 'of': 1.0, 'and': 2.0, 'sold': 1.0, 'much': 1.0, 'no': 1.0, 'separately': 1.0, 'in': 1.0, 'noticed': 1.0, 'increase': 1.0, 'an': 1.0, 'suction': 1.0, 'diaphragm': 1.0, 'with': 1.0, 'this': 1.0, 'better': 1.0, 'definitely': 1.0}
Word element => {'recommend': 1.0, 'as': 1.0, 'sometimes': 1.0, 'to': 1.0, 'slow': 1.0, 'supply': 1.0, 'malfunctions': 1.0, 'milk': 1.0, 'up': 1.0, 'for': 1.0, 'anyone': 1.0, 'in': 1.0, 'not': 3.0, 'finally': 1.0, 'would': 2.0, 'i': 3.0, 'it': 3.0, 'this': 3.0, 'your': 1.0, 'pump': 2.0, 'fine': 1.0, 'broke': 1.0, 'but': 1.0, 'work': 1.0, 'medela': 1.0, 'extremely': 1.0, 'while': 1.0, 'exclusively': 1.0, 'me': 1.0, 'and': 3.0, 'does': 2.0, 'down': 1.0, 'well': 1.0, 'a': 2.0, 'product': 1.0, 'bought': 1.0, 'be': 1.0, 'once': 1.0, 'keep': 1.0, 'if': 1.0, 's': 1.0, 'you': 1.0}
Word element => {'with': 1.0, 'communicate': 1.0, 'upside': 1.0, 'receive': 1.0, 'did': 1.0, 'send': 1.0, 'order': 1.0, 'provided': 1.0, 'warranty': 1.0, 'year': 1.0, '1': 1.0, 'under': 1.0, 'stating': 1.0, 'reply': 1.0, 'though': 1.0, 'problem': 1.0, 'them': 2.0, 'wrote': 1.0, 'saw': 1.0, 'came': 1.0, 'webpage': 1.0, 'son': 1.0, 'suction': 4.0, 'in': 1.0, 'if': 1.0, 'still': 3.0, 'turn': 1.0, 'seller': 2.0, 'air': 1.0, 'my': 2.0, 'no': 1.0, 'extended': 1.0, 'less': 1.0, 'new': 2.0, 'time': 1.0, 'so': 3.0, 'hospital': 1.0, 'grade': 1.0, 'after': 3.0, 'even': 2.0, 'got': 3.0, 'value': 1.0, 'great': 3.0, 'have': 2.0, 'loved': 1.0, 'pump': 4.0, 'but': 3.0, 'when': 1.0, 'weak': 1.0, 'work': 1.0, 'response': 1.0, 'pumps': 1.0, 'medela': 1.0, 'week': 3.0, 'for': 4.0, 'including': 1.0, 'using': 3.0, 'emailed': 1.0, 'a': 11.0, 'could': 2.0, 'maybe': 1.0, 's': 3.0, 'company': 1.0, 'comparable': 1.0, 'mother': 2.0, 'days': 2.0, 'day': 1.0, 'pumping': 1.0, 'about': 3.0, 'spectra': 1.0, '5': 2.0, 'little': 1.0, 'very': 2.0, 'that': 4.0, 'get': 3.0, 'months': 2.0, 'cups': 1.0, '4': 2.0, 'fast': 1.0, 'i': 10.0, 'once': 1.0, 'the': 16.0, 'of': 2.0, 'really': 1.0, 'weekend': 1.0, 'describing': 1.0, 'this': 2.0, 'release': 1.0, 'thought': 2.0, 'it': 11.0, 'annoying': 1.0, 'done': 1.0, 'amazon': 1.0, 'been': 1.0, 'forth': 1.0, '9pm': 1.0, 'powerful': 1.0, 'was': 7.0, 'nicu': 1.0, 'minutes': 1.0, 'anymore': 1.0, 'take': 1.0, 'reviews': 1.0, 'then': 1.0, 'fine': 2.0, 'easy': 1.0, 'however': 1.0, 'use': 1.0, 'started': 1.0, 'and': 9.0, 'disconnect': 1.0, 'completely': 1.0, 'each': 1.0, 'would': 6.0, 'motor': 1.0, 'downside': 1.0, 'number': 1.0, 'run': 1.0, 'they': 2.0, 'not': 1.0, 'back': 3.0, 'good': 1.0, 'become': 1.0, 'move': 1.0, 'used': 1.0, 'couple': 1.0, 'off': 1.0, 'on': 5.0, 'or': 1.0, 'milk': 2.0, 'just': 2.0, 'tube': 1.0, 'while': 1.0, 'is': 1.0, 'yeah': 1.0, 'job': 1.0, 'to': 7.0, 'pretty': 1.0}
Word element => {'bags': 1.0, 'compatible': 1.0, 'are': 1.0, 'parts': 2.0, 'quite': 1.0, 'car': 1.0, 'have': 2.0, 'charging': 1.0, 'so': 1.0, 'noise': 1.0, 'making': 1.0, 'well': 1.0, 'its': 1.0, 'works': 1.0, 'pumped': 1.0, 'still': 2.0, 'update': 1.0, 'neither': 1.0, 'funny': 1.0, 'isn': 1.0, 'at': 1.0, 'me': 1.0, 'they': 1.0, 'bottles': 2.0, 'was': 2.0, 'bra': 1.0, 'free': 1.0, 'simple': 1.0, 'leak': 1.0, 'how': 1.0, 'hands': 1.0, 'the': 11.0, 'great': 3.0, 'in': 2.0, 'medela': 4.0, 'but': 3.0, 'with': 3.0, 'it': 8.0, 'this': 4.0, 'i': 8.0, 'clear': 1.0, 'even': 1.0, 'didn': 1.0, 'got': 1.0, 'after': 1.0, 'production': 2.0, 'adapters': 1.0, 'hospital': 2.0, 'offers': 1.0, 'symphony': 2.0, 'used': 2.0, 'don': 1.0, 'pumping': 2.0, 'days': 1.0, 'going': 1.0, 's': 1.0, 't': 3.0, 'a': 4.0, 'gift': 1.0, 'using': 1.0, 'like': 1.0, 'know': 1.0, 'started': 3.0, 'as': 1.0, 'milk': 1.0, 'and': 4.0, 'including': 1.0, 'quiet': 1.0, 'several': 2.0, 'often': 1.0, 'fits': 1.0, 'my': 1.0, 've': 1.0, 'would': 1.0, 'rather': 1.0, 'little': 1.0, 'had': 1.0, 'portable': 1.0, 'strong': 1.0, 'on': 3.0, 'more': 1.0, 'is': 2.0, 'learned': 1.0, 'pump': 2.0, 'wishes': 1.0, 'valve': 1.0, 'gave': 1.0, 'been': 1.0, 'that': 2.0, 'value': 1.0, 'for': 1.0, 'actually': 1.0, 'occasions': 1.0, 'apparatus': 1.0, 'than': 1.0, 'membrane': 1.0}
Word element => {'with': 1.0, 'definitely': 1.0, 'products': 1.0, 'happy': 1.0, 'satisfied': 1.0, 'made': 1.0, 'timely': 1.0, 'answered': 1.0, 'were': 2.0, 'emails': 1.0, 'outstanding': 1.0, 'and': 3.0, 'milk': 3.0, 'we': 1.0, 'a': 2.0, 's': 3.0, 'order': 1.0, 'mother': 3.0, 'service': 1.0, 'lives': 1.0, 'my': 4.0, 'of': 1.0, 'months': 1.0, 'to': 5.0, 'was': 4.0, 'switch': 1.0, 'had': 1.0, 'in': 1.0, 'itself': 1.0, 'spectra': 2.0, 'ordered': 1.0, 'customer': 2.0, 'stronger': 2.0, 'dew': 1.0, 'needed': 1.0, 'two': 1.0, 'i': 9.0, 'again': 1.0, 'am': 1.0, 'twins': 2.0, 'when': 1.0, 'it': 1.0, 'first': 1.0, 'fine': 1.0, 'is': 1.0, 'sure': 1.0, 'pump': 5.0, 'would': 2.0, 'something': 1.0, 'initially': 1.0, 'that': 2.0, 'make': 1.0, 'fashion': 1.0, 'on': 1.0, 'use': 1.0, 'breast': 1.0, 'the': 7.0, 'but': 1.0, '2': 1.0, 'way': 1.0, 'shop': 1.0, 'double': 1.0, '350': 1.0, 'suit': 1.0, 'hospital': 2.0, 'needs': 1.0, 'grade': 2.0, 'medela': 1.0, 'worked': 1.0, 'advanced': 1.0, 'able': 2.0, 'electric': 1.0, 'using': 1.0, 'which': 2.0, 'works': 1.0, 'changes': 1.0, 'wonders': 1.0, 'not': 1.0, 'me': 1.0, 'for': 4.0, 'actually': 1.0, 'than': 1.0, 'symphony': 1.0, 'hesitate': 1.0, 'this': 2.0, '0': 1.0}
Word element => {'has': 1.0, 'service': 1.0, 'take': 1.0, 'such': 1.0, 'disassemble': 1.0, 'the': 1.0, 'i': 1.0, 'powerful': 1.0, 'and': 5.0, 'machine': 1.0, 'to': 3.0, 'this': 1.0, 'it': 2.0, 'quick': 1.0, 'with': 1.0, 'pump': 3.0, 'both': 1.0, 'is': 1.0, 'in': 1.0, 'quite': 1.0, 'single': 1.0, 'very': 2.0, 'day': 1.0, 'great': 1.0, 'modes': 1.0, 'wonderful': 1.0, 'breast': 1.0, 'portable': 1.0, 'dual': 1.0, 'clean': 1.0, 'work': 1.0, 'customer': 1.0, 'every': 1.0, 'lightweight': 1.0, 'purchase': 1.0, 'a': 3.0, 's': 1.0, 'fantastic': 1.0, 'you': 1.0, 'for': 1.0, 'assemble': 1.0, 'flanges': 1.0, 'there': 1.0, 'are': 1.0, 'spectra': 1.0, 'no': 1.0, 'parts': 1.0, 'small': 3.0, 'have': 1.0, 'fuss': 1.0, 'usa': 1.0, 'baby': 1.0}
Word element => {'charge': 1.0, 'send': 1.0, 'offered': 1.0, 'refund': 1.0, 's': 1.0, 'mother': 1.0, 'customer': 1.0, 'though': 1.0, 'give': 1.0, 'comment': 1.0, 'dew': 2.0, 'don': 2.0, 'power': 1.0, 'enough': 1.0, 'provide': 1.0, 'brands': 1.0, 'common': 1.0, 'consider': 1.0, 'company': 1.0, 'function': 2.0, 'down': 2.0, 'need': 2.0, 'service': 1.0, 'if': 2.0, 'frankly': 1.0, 'performance': 1.0, 'satisfied': 1.0, 'not': 2.0, 'late': 1.0, 'any': 1.0, 'downs': 1.0, 'people': 1.0, 'than': 1.0, 'more': 2.0, 'do': 2.0, 'much': 1.0, 'will': 1.0, 'could': 1.0, 'let': 4.0, 'no': 2.0, 'multiple': 1.0, 'cycle': 1.0, 'adjusted': 1.0, 'think': 1.0, 'usual': 1.0, 'pumping': 1.0, 'points': 1.0, 'quite': 1.0, 'express': 1.0, 'hand': 1.0, 'got': 1.0, 'ounces': 1.0, 'just': 3.0, 'milk': 2.0, 'output': 1.0, 'being': 1.0, 'cannot': 1.0, 'very': 2.0, 'initial': 1.0, 'while': 1.0, 'crucial': 1.0, 'out': 2.0, 'but': 4.0, 'to': 9.0, 'stars': 1.0, 'wanted': 1.0, '15': 1.0, 'excellent': 1.0, 'battery': 1.0, 'really': 1.0, 'january': 1.0, 'breasts': 2.0, 'reading': 1.0, 'typical': 1.0, 'good': 1.0, 'which': 1.0, 'time': 1.0, 'new': 1.0, 'would': 1.0, 'extra': 1.0, 'private': 1.0, 'until': 1.0, 'great': 1.0, 'return': 1.0, 'seemed': 1.0, 'comfortable': 1.0, 'pumped': 1.0, 'children': 1.0, 'hands': 3.0, 'a': 5.0, 'after': 3.0, 'can': 1.0, 'sensitive': 1.0, 'comparison': 1.0, 'so': 3.0, 'walls': 1.0, 'some': 1.0, 'little': 1.0, 'two': 2.0, 'fast': 1.0, 'i': 17.0, 'pump': 6.0, 'recently': 1.0, 'insurance': 1.0, 'want': 1.0, 'avail': 1.0, 'free': 3.0, 'most': 2.0, 'pay': 1.0, 'exclusively': 1.0, 'far': 1.0, 'with': 4.0, 'won': 1.0, 'months': 1.0, 'try': 1.0, 'one': 2.0, 'amount': 1.0, 'on': 3.0, 'lastly': 1.0, 'have': 3.0, 'for': 5.0, 'couple': 1.0, 'share': 1.0, 'then': 1.0, 'reviews': 1.0, 'died': 1.0, 'other': 2.0, 'dream': 1.0, 'may': 2.0, 'my': 5.0, 'me': 2.0, 'and': 9.0, '9': 2.0, 'thought': 1.0, 'it': 4.0, 'came': 1.0, 'awesome': 1.0, 'ended': 1.0, 'extras': 1.0, 'compared': 1.0, 'work': 1.0, 'hard': 1.0, 'spectra': 2.0, 'massagers': 2.0, 'flanges': 1.0, 'she': 1.0, 'unfortunately': 1.0, 'vacuum': 1.0, 'was': 6.0, 'this': 1.0, 'built': 1.0, 'be': 3.0, 'coworkers': 1.0, 'extremely': 2.0, 'you': 5.0, 'able': 2.0, 'loud': 2.0, 'because': 3.0, 'that': 5.0, 'even': 2.0, 'in': 2.0, 'last': 1.0, 'also': 2.0, 'the': 21.0, 'of': 7.0, 'bit': 1.0, 'found': 1.0, 'office': 1.0, 'causing': 1.0, 'self': 1.0, 'marks': 1.0, 'separate': 1.0, 't': 4.0, 'conscious': 1.0, 'convenience': 1.0, 'sound': 1.0, 'up': 1.0, 'full': 1.0, 'were': 1.0, 'is': 3.0, 'at': 4.0, 'are': 1.0, 'first': 2.0, 'like': 1.0, 'rather': 1.0, 'burn': 1.0}
Word element => {'debating': 1.0, 'if': 2.0, 'year': 1.0, 'now': 1.0, 'well': 1.0, 'as': 1.0, 'll': 1.0, 'make': 1.0, 'pink': 1.0, 'breastpump': 1.0, 'free': 2.0, 'hands': 2.0, 'thesimple': 1.0, 'far': 1.0, 'job': 1.0, 'does': 1.0, 'bra': 1.0, 'hesitation': 1.0, 'without': 1.0, 'came': 1.0, 'bottle': 1.0, 'instead': 1.0, 'run': 1.0, 'home': 1.0, 'bottles': 1.0, 'double': 2.0, 'battery': 1.0, 'spectra': 3.0, 'second': 1.0, 'cycle': 2.0, 've': 1.0, 'office': 1.0, 'found': 1.0, 'easy': 2.0, 'tied': 1.0, 'ouch': 1.0, 'when': 1.0, 'swing': 3.0, 'stuck': 1.0, 'breastfed': 1.0, 'feel': 1.0, 'mwith': 1.0, 'xs': 1.0, 'portable': 3.0, 'before': 3.0, 'electric': 1.0, 'real': 1.0, 'has': 3.0, 'baby': 3.0, 'be': 2.0, 'it': 15.0, 'sweet': 3.0, 'like': 2.0, 'which': 3.0, 'also': 1.0, 'rellief': 1.0, 'old': 2.0, 'of': 6.0, 'usually': 1.0, 'that': 3.0, 'still': 1.0, 'or': 2.0, 'milk': 3.0, 'trip': 1.0, 'using': 1.0, 'with': 5.0, 'explanatory': 1.0, 'buying': 1.0, 'brand': 1.0, 'was': 5.0, 'vacuum': 2.0, 'increased': 1.0, '3': 2.0, 'had': 2.0, 'drastically': 1.0, 'on': 1.0, 'after': 5.0, 'bought': 2.0, 'happy': 1.0, 'mimic': 1.0, 'freeze': 1.0, 'plugged': 1.0, 'i': 27.0, 'but': 1.0, 'mode': 2.0, 'work': 3.0, 'efficient': 2.0, 'returning': 3.0, 'ask': 1.0, 'so': 5.0, 'speed': 2.0, 'month': 4.0, 'this': 9.0, 'took': 2.0, 'adjust': 2.0, 'pump': 12.0, 'later': 1.0, 'being': 2.0, 'never': 1.0, 'usage': 1.0, 'gentle': 1.0, 'supply': 1.0, 'are': 1.0, 'hour': 1.0, 'my': 13.0, 'me': 1.0, 'realized': 1.0, 'stress': 1.0, 'everything': 1.0, 'spot': 2.0, 'medela': 3.0, '1': 2.0, 'until': 1.0, 'july': 1.0, 'just': 1.0, 'and': 13.0, 'tried': 1.0, 'warranty': 1.0, 'in': 9.0, 't': 1.0, 'a': 11.0, 'would': 1.0, 'comparable': 1.0, 'sitiation': 1.0, 'throughout': 1.0, 'love': 2.0, 'for': 6.0, 'building': 1.0, 'your': 2.0, 'many': 2.0, 'where': 2.0, 'say': 3.0, 'freezer': 2.0, 'rhythm': 1.0, 'single': 2.0, 'traffic': 1.0, 'other': 1.0, 'm': 4.0, 's': 6.0, 'ever': 1.0, 'all': 1.0, 'rocks': 1.0, 'an': 1.0, 'can': 4.0, 'is': 7.0, 'pumps': 2.0, 'car': 2.0, 'into': 1.0, 'd': 1.0, 'wall': 1.0, 'strap': 1.0, 'you': 3.0, 'hang': 1.0, 'how': 1.0, '3rd': 1.0, 'from': 3.0, 'wishes': 1.0, 'freestyle': 3.0, 'much': 1.0, 'more': 3.0, 'affordable': 1.0, 'price': 1.0, 'yielded': 1.0, 'only': 1.0, 'minute': 1.0, 'then': 1.0, 'did': 1.0, 'nor': 1.0, 'kinds': 1.0, 'the': 17.0, 'oz': 2.0, 'hand': 1.0, 'along': 1.0, 'lansinoh': 1.0, 'evenflo': 1.0, 'etc': 1.0, 'day': 2.0, '9': 3.0, 'am': 2.0, 'down': 3.0, 'last': 2.0, 'impressed': 1.0, 'neck': 1.0, 'going': 1.0, 'very': 2.0, 'ways': 1.0, 'to': 15.0, 'right': 1.0, 'excited': 1.0, 'business': 1.0, 'massage': 1.0, 'won': 1.0, 'locked': 1.0, 'two': 1.0, 'little': 1.0, 'stash': 1.0, 'minutes': 1.0, 'next': 1.0, 'extra': 1.0, 'able': 1.0, 'get': 4.0, 'let': 2.0, 'session': 2.0, 'could': 1.0, 'will': 1.0, 'actually': 1.0, 'encouraging': 1.0, 'display': 1.0, 'update': 2.0, 'otherwise': 1.0, 'read': 1.0, 'yesterday': 1.0, 'son': 3.0, 'self': 1.0, 'worth': 2.0, '4': 1.0, 'absolutely': 1.0, 'one': 7.0, 'got': 1.0, '5': 1.0, '5oz': 1.0, 'use': 3.0, 'pumping': 1.0, 'exclusively': 1.0, 'nursing': 4.0, 'half': 1.0, 'awesome': 1.0, 'about': 2.0, 'picky': 1.0}
Word element => {'review': 1.0, 'will': 1.0, 'older': 1.0, 'speak': 1.0, 'up': 1.0, 'giving': 1.0, 'seriously': 1.0, 'drop': 1.0, 'had': 1.0, 'some': 1.0, 'also': 1.0, 'negatives': 1.0, 'only': 2.0, 'cute': 1.0, 'appealing': 1.0, 'design': 1.0, 'makes': 1.0, 'wider': 1.0, 'much': 1.0, 'easy': 1.0, 'fit': 1.0, 'could': 1.0, 'say': 1.0, 'portable': 1.0, 'lightweight': 1.0, 'while': 1.0, 'aspects': 1.0, 'ounces': 1.0, '7': 1.0, 'an': 2.0, 'wasn': 1.0, 'no': 2.0, 'tote': 1.0, 'same': 1.0, 'speed': 1.0, 'or': 2.0, 'experience': 1.0, 'the': 35.0, 'remains': 2.0, 'than': 2.0, 'all': 2.0, 'way': 2.0, 'almost': 1.0, 'figure': 2.0, 'at': 4.0, 'notice': 1.0, 'look': 2.0, 'bars': 1.0, 'far': 2.0, 'first': 2.0, 'these': 1.0, 'pleased': 1.0, 'relief': 1.0, 'chance': 1.0, 'reviews': 1.0, 'uk': 1.0, 'hours': 1.0, 'few': 1.0, 'times': 1.0, 'several': 3.0, 'last': 1.0, 'down': 2.0, 'searching': 1.0, 'for': 5.0, '10': 1.0, 'opinion': 1.0, 'another': 2.0, 'extra': 1.0, 'minutes': 2.0, 'start': 1.0, 'difference': 1.0, 'valve': 2.0, 'accessories': 1.0, 'decided': 2.0, 'used': 4.0, 'quickly': 2.0, 'take': 1.0, '15': 2.0, 'ability': 1.0, 'stored': 1.0, 'of': 4.0, 'old': 1.0, 'that': 6.0, 'breast': 1.0, 'because': 1.0, 'nipples': 1.0, 'silicone': 1.0, 'seems': 1.0, 'weeks': 1.0, 'back': 1.0, 'on': 3.0, '3': 2.0, 'was': 8.0, 'literally': 1.0, 'unclear': 1.0, 'vacuum': 1.0, 'to': 19.0, 'timing': 1.0, 'refused': 2.0, 'when': 3.0, 'sister': 1.0, 'what': 1.0, 'daughter': 1.0, 'i': 29.0, 'well': 1.0, 'night': 1.0, 'spectra': 2.0, 'diminishing': 1.0, 'starts': 1.0, 'you': 2.0, 'this': 4.0, 'wouldn': 1.0, 'more': 1.0, 'perfect': 1.0, 'looked': 1.0, 'necessary': 1.0, 'pocket': 1.0, 'milk': 2.0, 'massaging': 1.0, 'extremely': 1.0, '6': 1.0, 'bloody': 1.0, 'received': 1.0, 'apprx': 1.0, 'pump': 6.0, 'just': 1.0, 'and': 13.0, 'impossible': 1.0, 'came': 2.0, 'formula': 1.0, 'by': 1.0, 'decrease': 2.0, 'after': 3.0, 'limited': 1.0, 'yesterday': 1.0, 'it': 12.0, 'be': 3.0, 'me': 2.0, 'are': 5.0, 'my': 6.0, 'may': 1.0, 'day': 1.0, 'medela': 5.0, 'went': 1.0, 'get': 1.0, 'able': 2.0, 'however': 2.0, 'law': 1.0, '150': 1.0, 'brand': 2.0, 'packaging': 1.0, 'so': 5.0, 'comparison': 2.0, 'is': 12.0, 'can': 2.0, 'levels': 2.0, 'pumping': 2.0, 'use': 1.0, 'rechargeable': 1.0, 'amazon': 1.0, 'instruction': 1.0, 'style': 1.0, 'give': 1.0, 'supply': 1.0, 'nursing': 1.0, 'hopefully': 1.0, 'intimidated': 1.0, 'grateful': 1.0, 'across': 1.0, 'along': 1.0, 't': 3.0, 'a': 12.0, 'hand': 1.0, 'but': 5.0, 'upon': 1.0, 'one': 2.0, 'product': 1.0, 'year': 1.0, 'together': 1.0, 'in': 12.0, 'warranty': 1.0, 'against': 1.0, 'comes': 1.0, 'seemed': 1.0, 'instructions': 1.0, 'sure': 2.0, 'as': 3.0, 'work': 2.0, 'opening': 1.0, 'her': 1.0, 'little': 2.0, 'ago': 1.0, 'two': 1.0, 'due': 1.0, 'soon': 1.0, 'digital': 1.0, 'comfort': 1.0, 'available': 1.0, 'realized': 1.0, 'operated': 1.0, 'very': 4.0, 'exclusively': 1.0, 'parts': 4.0, 'similar': 2.0, 'protector': 1.0, 'closed': 1.0, 'worth': 1.0, '4': 2.0, 'actually': 1.0, 'breastfeeding': 1.0, 'manual': 1.0, 'outdated': 1.0, 'battery': 1.0, 'website': 1.0, 'were': 1.0, 'piece': 1.0, 'different': 2.0, 'not': 4.0, 'match': 1.0, 'system': 1.0, 'do': 1.0, '9': 1.0, 'am': 4.0, 'membrane': 1.0, 'years': 1.0, 'replaced': 1.0, 'picture': 1.0, 'using': 1.0, 'with': 5.0, 'screw': 1.0, 'option': 2.0, 'although': 2.0, 'notable': 1.0, 'confusing': 1.0, 'during': 1.0, 'out': 3.0, 'enough': 2.0, 'overall': 1.0, 'issue': 1.0, 'let': 1.0, 'they': 1.0, 'nothing': 1.0, 'interchangibly': 1.0, 'feature': 1.0, 'its': 1.0, 'considering': 1.0, 'meter': 1.0, 'display': 1.0, 'found': 1.0, 'have': 4.0, 'still': 3.0, 'there': 4.0, 'remaining': 1.0, 'describe': 2.0, 'update': 1.0, 'months': 2.0, 'felt': 1.0, 'incredibly': 1.0, 'looking': 1.0, 'pulsing': 1.0, 'suction': 2.0, 'encourage': 1.0, 'observations': 1.0, 'regular': 1.0, 'any': 1.0, 'did': 4.0, 'time': 2.0, 'change': 2.0, 'comfortable': 1.0, 'cycle': 2.0, 'increase': 2.0, 'quite': 1.0}
IOPub data rate exceeded. The notebook server will temporarily stop sending output to the client in order to avoid crashing it. To change this limit, set the config variable `--NotebookApp.iopub_data_rate_limit`. Current values: NotebookApp.iopub_data_rate_limit=1000000.0 (bytes/sec) NotebookApp.rate_limit_window=3.0 (secs)
Word element => {'alone': 1.0, 'sprayers': 1.0, 'name': 1.0, 'most': 1.0, 'amazon': 1.0, 'manufactured': 1.0, 'who': 2.0, 'also': 2.0, 'item': 1.0, 'and': 7.0, 'spray': 2.0, 'at': 1.0, 'look': 1.0, 'about': 1.0, 'no': 2.0, 'designed': 1.0, 'saw': 2.0, 'from': 1.0, 'it': 4.0, 'real': 1.0, 'generic': 1.0, 'after': 1.0, 'was': 5.0, 'diapering': 1.0, 'itself': 1.0, 'time': 1.0, 'networking': 1.0, 'brand': 1.0, 'staining': 1.0, 'social': 1.0, 'almost': 1.0, 'on': 1.0, 'months': 1.0, 'less': 1.0, 'major': 1.0, 'up': 1.0, '6': 1.0, 'by': 1.0, 'just': 2.0, 'gave': 1.0, 'post': 1.0, 'made': 1.0, 'came': 1.0, 'easier': 1.0, 'sprayer': 3.0, 'site': 1.0, 'has': 1.0, 'but': 1.0, 'hassle': 1.0, 'past': 1.0, 'than': 2.0, 'poop': 1.0, 'gross': 1.0, 'mess': 2.0, 'well': 1.0, 'i': 5.0, 'of': 3.0, 'the': 6.0, 'diaper': 1.0, 'pal': 2.0, 'a': 10.0, 'then': 2.0, 'bidet': 1.0, 'cloth': 1.0, 'everyday': 1.0, 'cleaning': 1.0, 'family': 4.0, 'out': 1.0, 'this': 3.0, 'found': 1.0, 'able': 1.0, 'regarding': 1.0, 'to': 2.0, 'price': 2.0, 'tag': 1.0, 'paid': 2.0, 'more': 1.0, 'for': 3.0, 'have': 1.0, 'virtually': 1.0, 'nice': 1.0, 'great': 1.0, 'that': 3.0, 'because': 2.0, 'problems': 1.0, 'makes': 1.0, 'fulfill': 1.0, 'these': 1.0, 'diapers': 1.0, 'are': 2.0, 'very': 1.0, 'offer': 1.0, 'their': 2.0, 'customer': 1.0, 'service': 1.0, 'house': 1.0, 'people': 1.0, 'they': 1.0, 'created': 1.0, 'need': 1.0, 'off': 1.0, 'own': 1.0, 'there': 1.0, 'market': 1.0, 'purchased': 1.0}
Word element => {'not': 1.0, 'hate': 1.0, 'and': 1.0, 'also': 1.0, 'really': 1.0, 'collapse': 1.0, 'just': 1.0, 'a': 2.0, 'them': 1.0, 'spraying': 1.0, 'is': 1.0, 'more': 2.0, 'i': 4.0, 'mess': 1.0, 'wanted': 1.0, 'to': 2.0, 'it': 5.0, 'pain': 1.0, 'this': 2.0, 'purchase': 1.0, 'often': 1.0, 'product': 2.0, 'love': 1.0, 'the': 1.0, 'without': 2.0, 'myself': 1.0, 'would': 1.0, 'each': 1.0, 'can': 1.0, 'but': 1.0, 'after': 1.0, 'use': 1.0, 'then': 1.0, 'set': 1.0, 'up': 1.0, 'of': 1.0, 'incorrectly': 1.0, 'overall': 1.0, 'next': 1.0, 'time': 1.0, 'cause': 1.0, 'having': 1.0, 'because': 1.0, 'find': 1.0, 'than': 1.0, 'if': 1.0, 'again': 2.0, 'you': 1.0, 'have': 1.0, 'angled': 1.0}
Word element => {'buy': 1.0, 'sure': 1.0, 'have': 1.0, 'on': 1.0, 'toilet': 3.0, 'in': 1.0, 'diaper': 1.0, 'a': 1.0, 't': 1.0, 'needs': 1.0, 'bit': 1.0, 'yes': 1.0, 'then': 1.0, 'feel': 1.0, 'spraying': 1.0, 'that': 1.0, 'this': 1.0, 'it': 3.0, 'now': 1.0, 'for': 1.0, 'product': 1.0, 'the': 6.0, 'prevents': 1.0, 'splattering': 1.0, 'again': 1.0, 'when': 1.0, 'balance': 1.0, 'off': 1.0, 'cloth': 1.0, 'i': 5.0, 'diapers': 1.0, 'but': 2.0, 'will': 2.0, 'dry': 1.0, 'd': 1.0, 'm': 1.0, 'onto': 1.0, 'submerging': 1.0, 'drip': 1.0, 'and': 1.0, 'spray': 2.0, 'pal': 2.0, 'stay': 1.0, 'not': 2.0, 'to': 2.0, 'seat': 1.0, 'because': 1.0, 'over': 1.0, 'don': 1.0, 'really': 1.0, 'like': 1.0, 'yuck': 1.0, 'hang': 1.0}
Word element => {'water': 1.0, 'high': 1.0, 'my': 1.0, 'powered': 1.0, 'use': 1.0, 'problems': 1.0, 'list': 1.0, 'check': 1.0, 'created': 1.0, 'make': 1.0, 'the': 5.0, 'like': 1.0, 'watch': 1.0, 'sure': 1.0, 'and': 2.0, 'getting': 1.0, 'with': 1.0, 'it': 4.0, 'way': 1.0, 'no': 1.0, 'once': 1.0, 'some': 1.0, 'mental': 1.0, 'spraying': 1.0, 'sprayer': 1.0, 'i': 3.0, 'took': 1.0, 'keeps': 1.0, 'actually': 1.0, 'shield': 1.0, 'had': 1.0, 'to': 1.0, 'was': 1.0, 'all': 2.0, 'inside': 1.0, 'but': 1.0, 've': 1.0, 'in': 1.0, 'toilet': 1.0, 'used': 1.0, 'before': 1.0}
Word element => {'recommended': 1.0, 'spraying': 1.0, 'since': 1.0, 'highly': 1.0, 'day': 1.0, 'diapers': 1.0, 'been': 1.0, 'keeping': 1.0, 'every': 1.0, 'worth': 1.0, 'have': 1.0, 'toilet': 1.0, 'we': 1.0, 'penny': 1.0, '1': 1.0, 'and': 1.0, 'spray': 1.0, 'at': 1.0, 'pal': 1.0, 'is': 1.0, 'the': 3.0, 'great': 1.0, 'mess': 1.0, 'in': 1.0}
Word element => {'floor': 1.0, 'getting': 1.0, 'out': 1.0, 'w': 1.0, 'dry': 1.0, 'drip': 1.0, 'it': 1.0, 'that': 1.0, 'next': 1.0, 'large': 1.0, 'great': 1.0, 'while': 1.0, 'diapers': 2.0, 'training': 1.0, 'so': 1.0, 'potty': 1.0, 'useful': 1.0, 'minimum': 1.0, 'tip': 1.0, 'or': 1.0, 'on': 1.0, 'think': 1.0, 'your': 1.0, 'this': 3.0, 'keep': 2.0, 'if': 1.0, 'really': 2.0, 'is': 2.0, 'like': 1.0, 't': 1.0, 'a': 4.0, 'you': 1.0, 'spray': 2.0, 'accidents': 1.0, 'gotten': 1.0, 'toilet': 1.0, 'an': 1.0, 'bailed': 1.0, 'mess': 2.0, 'i': 4.0, 'cloth': 1.0, 'old': 1.0, 'over': 2.0, 'don': 1.0, 'all': 1.0, 'to': 5.0, 'any': 1.0, 'would': 3.0, 'bucket': 2.0, 'have': 2.0, 'can': 1.0, 'work': 1.0, 'past': 1.0, 'transition': 1.0, 'solids': 1.0, 'the': 3.0, 'without': 1.0, 'design': 1.0, 'mine': 1.0, 'in': 1.0, 'litter': 1.0, 'kitty': 1.0}
Word element => {'dry': 1.0, 'keep': 1.0, 'back': 1.0, 'bathroom': 1.0, 'my': 1.0, 'splash': 1.0, 'about': 1.0, 'worry': 1.0, 'full': 1.0, 'use': 1.0, 'can': 1.0, 'and': 2.0, 'made': 1.0, 'sprayer': 1.0, 'well': 1.0, 'just': 1.0, 'of': 1.0, 'fantastic': 1.0, 'you': 1.0, 'sturdy': 1.0, 'awkward': 1.0, 'spray': 1.0, 'get': 1.0, 'kind': 1.0, 'to': 5.0, 'very': 1.0, 'little': 2.0, 'not': 1.0, 'me': 1.0, 'give': 1.0, 's': 1.0, 'a': 2.0, 'middle': 1.0, 'is': 1.0, 'really': 3.0, 'reasons': 1.0, 'snap': 2.0, 'it': 4.0, 'the': 9.0, 'pal': 1.0, 'items': 1.0, 'i': 3.0, '4': 1.0, 'have': 1.0, 'inside': 1.0, 'snaps': 1.0, 'above': 1.0, 'on': 1.0, 'put': 1.0, 'your': 1.0, 'arm': 1.0, 'order': 1.0, 'through': 1.0, 'like': 1.0, 'using': 1.0, 'hold': 1.0, 'in': 1.0, 'following': 1.0, 'would': 1.0, 'force': 1.0, 'be': 1.0, 'picky': 1.0, 'love': 1.0, 'for': 1.0, 'stars': 1.0, 'product': 1.0, 'nice': 1.0, 'opened': 1.0, 'being': 1.0, 'if': 1.0, 'clip': 1.0, 'wideri': 1.0, 'though': 1.0, 'are': 2.0}
Word element => {'diapering': 1.0, 'makes': 1.0, 'weeks': 1.0, '3': 1.0, 'bathroom': 1.0, 'roughly': 1.0, 'poop': 1.0, 'it': 1.0, 'this': 1.0, 'have': 1.0, 'love': 1.0, 'for': 1.0, 'manageable': 1.0, 'had': 1.0, 'cloth': 1.0, 'i': 2.0, 'or': 1.0, 'no': 1.0, 'around': 1.0, 'more': 2.0, 'the': 1.0, 'water': 1.0, 'and': 1.0, 'flying': 1.0, 'product': 1.0, 'laundry': 2.0, 'much': 1.0, 'room': 1.0}
Word element => {'product': 1.0, 'purchase': 1.0, 'like': 1.0, 'my': 1.0, 'always': 1.0, 'but': 1.0, 'she': 1.0, 'needed': 1.0, 'sold': 1.0, 'it': 1.0, 'this': 2.0, 'first': 1.0, 'good': 1.0, 'at': 1.0, 'normal': 1.0, 'to': 2.0, 'was': 2.0, 'not': 1.0, 'diaper': 1.0, 'the': 1.0, 'make': 1.0, 'wife': 1.0, 'you': 1.0, 'if': 1.0, 'wise': 1.0, 'is': 1.0, 'on': 1.0, 'a': 1.0, 'trust': 1.0, 'very': 1.0, 'why': 1.0, 'must': 1.0, 'cloth': 1.0, 'decision': 1.0, 'i': 2.0, 'we': 1.0}
Word element => {'especially': 1.0, 'likes': 1.0, 'silky': 1.0, 'his': 2.0, 'between': 1.0, 'hug': 1.0, 'fingers': 1.0, 'to': 2.0, 'sleep': 1.0, 'loves': 1.0, 'washed': 1.0, 'the': 2.0, 't': 1.0, 'i': 1.0, 'tags': 2.0, 'rub': 1.0, 'blanket': 1.0, 'can': 1.0, 'month': 1.0, 'wrong': 1.0, 'go': 1.0, 'falling': 1.0, 'in': 1.0, 've': 1.0, 'rubbing': 1.0, 'he': 2.0, 'this': 1.0, 'it': 4.0, 'with': 1.0, 'you': 1.0, 'is': 2.0, 'many': 1.0, 'face': 1.0, 'times': 1.0, 'and': 4.0, 'still': 1.0, 'soft': 2.0, 'plush': 1.0, 'my': 1.0, 'very': 1.0, 'as': 2.0, '11': 1.0, 'nephew': 1.0}
Word element => {'penny': 1.0, 'every': 1.0, 'complaints': 1.0, 'face': 1.0, 'getting': 1.0, 'worth': 1.0, 'or': 1.0, 'should': 1.0, 'your': 1.0, 'for': 1.0, 'comfortable': 2.0, 'shirt': 1.0, 'light': 1.0, 'off': 1.0, 'cover': 1.0, 'fashionable': 1.0, 'very': 2.0, 'wonderful': 1.0, 'like': 1.0, 'compliments': 1.0, 'worry': 1.0, 'and': 2.0, 'colors': 1.0, 'don': 2.0, 'no': 1.0, 'about': 1.0, 'good': 1.0, 'fabric': 1.0, 'nursing': 1.0, 'have': 2.0, 've': 1.0, 'regular': 1.0, 'in': 2.0, 'falling': 1.0, 'i': 3.0, 'looks': 1.0, 'it': 2.0, 'this': 2.0, 'weight': 1.0, 'babies': 1.0, 'that': 1.0, 'so': 1.0, 'hot': 1.0, 'a': 2.0, 't': 2.0, 'with': 1.0, 'mind': 1.0, 'out': 1.0, 'gotten': 1.0, 'days': 1.0, 'unlike': 1.0, 'if': 1.0, 'to': 2.0, 'makes': 1.0, 'public': 1.0, 'but': 1.0, 'blankets': 1.0, 'you': 1.0}
Word element => {'it': 1.0, 'and': 1.0, 'my': 1.0, 'signing': 1.0, 'with': 2.0, 'son': 1.0, 'along': 1.0, 'this': 1.0, 'loves': 2.0, 'music': 1.0, 'dolls': 1.0, 'so': 1.0, 'instead': 1.0, 'cars': 1.0, 'really': 1.0, 'of': 1.0, 'he': 1.0, 'playing': 1.0}
Word element => {'money': 1.0, 'a': 1.0, 'of': 1.0, 'waste': 1.0, 'no': 1.0, 'wool': 1.0, 'what': 1.0, 'cover': 1.0, 'lanolize': 1.0, 'avail': 1.0, 'this': 1.0, 'to': 2.0, 'product': 1.0, 'sucks': 1.0, 've': 1.0, 'used': 1.0, 'trying': 1.0, 'half': 1.0, 'my': 1.0, 'nearly': 1.0, 'the': 1.0, 'i': 1.0, 'bottle': 1.0}
Word element => {'cover': 1.0, 'wool': 1.0, 's': 1.0, 'my': 1.0, 'on': 1.0, 'mornings': 1.0, 'a': 1.0, 'between': 1.0, 'overnight': 1.0, 'baby': 1.0, 'few': 1.0, 'every': 1.0, 'to': 1.0, 'relanolize': 1.0, 'washing': 1.0, 'use': 1.0, 'i': 1.0, 'great': 1.0, 'way': 1.0, 'it': 1.0}
Word element => {'loose': 1.0, 'too': 1.0, 'weak': 1.0, 'in': 1.0, 'liquid': 1.0, 'always': 1.0, 'dont': 1.0, 'i': 1.0, 'and': 1.0, 'quality': 1.0, 'like': 1.0, 'the': 3.0, 'are': 2.0, 'keep': 1.0, 'of': 1.0, 'all': 1.0, 'but': 1.0, 'they': 1.0, 'these': 1.0, 'tops': 2.0, 'at': 1.0, 'idea': 1.0, 'low': 1.0}
Word element => {'and': 1.0, 'nice': 1.0, 'picture': 1.0, 'from': 1.0, 'solid': 1.0, 'no': 1.0, 'it': 1.0, 'mentioning': 1.0, 'are': 2.0, 'your': 1.0, 'they': 2.0, 'order': 1.0, 'small': 2.0, 'how': 1.0, 'for': 1.0, 'daughter': 1.0, 'favors': 1.0, 'them': 1.0, 'way': 1.0, 's': 1.0, 'attention': 2.0, 'tell': 1.0, 'we': 1.0, 'birthday': 1.0, 'upcoming': 1.0, 'ordered': 1.0, 'pay': 2.0, 'loves': 1.0, 'party': 1.0, 'the': 2.0, 'these': 1.0, 't': 1.0, 'my': 1.0, 'to': 4.0, 'be': 1.0, 'before': 1.0, 'listed': 1.0, 'dimensions': 1.0, 'her': 2.0, 'part': 1.0, 'there': 1.0, 'of': 1.0, 'i': 1.0, 'because': 1.0, 'just': 3.0, 'didn': 1.0}
Word element => {'them': 1.0, 'asking': 1.0, 'others': 1.0, 'my': 1.0, 'cake': 1.0, 'were': 1.0, 'where': 1.0, 'daughter': 1.0, 'for': 1.0, 'it': 1.0, 'first': 1.0, 'the': 1.0, 'these': 1.0, 'they': 1.0, 'bought': 1.0, 'i': 3.0, 'had': 1.0, 'was': 1.0, 's': 1.0, 'you': 1.0, 'guessed': 1.0, 'owls': 1.0, 'so': 1.0, 'found': 1.0, 'birthday': 1.0, 'theme': 1.0, 'cute': 1.0, 'me': 1.0, 'and': 1.0}
Word element => {'set': 1.0, 'third': 1.0, 'a': 1.0, 'order': 1.0, 'would': 1.0, 'i': 4.0, 'love': 1.0, 'room': 1.0, 'these': 1.0, 'lol': 1.0, 'jars': 1.0, 'if': 1.0, 'had': 1.0, 'orded': 1.0, 'two': 1.0, 'little': 1.0, 'sets': 1.0}
Word element => {'need': 1.0, 'what': 1.0, 'i': 2.0, 'again': 1.0, 'quickly': 1.0, 'came': 1.0, 'amazon': 1.0, 'use': 1.0, 'once': 2.0, 'more': 1.0, 'brought': 1.0, 'just': 1.0, 'and': 2.0, 'perfectly': 1.0, 'went': 1.0, 'new': 1.0, 'zealand': 1.0, 'friend': 1.0, 'received': 1.0, 'sand': 3.0, 'on': 1.0, '3': 1.0, 'shadow': 1.0, 'have': 2.0, 'we': 4.0, 'a': 3.0, 'expected': 1.0, 'well': 1.0, 'the': 2.0, 'some': 1.0, 'these': 2.0, 'but': 1.0, 'will': 1.0, 'over': 1.0, 'back': 2.0, 'collection': 2.0, 'from': 3.0, 'world': 1.0, 'made': 1.0, 'places': 1.0, 'they': 2.0, 'were': 1.0, 'very': 1.0, 'little': 1.0, 'who': 1.0, 'bigger': 1.0, 'find': 1.0, 'than': 1.0, 'great': 1.0, 'nice': 1.0, 'size': 1.0, 'all': 1.0, 'to': 1.0, 'our': 1.0, 'constructed': 1.0, 'in': 1.0, 'boxes': 1.0, 'fit': 1.0, 'for': 2.0, 'be': 1.0}
Word element => {'them': 1.0, 'love': 1.0, 'good': 1.0, 'so': 1.0, 'house': 1.0, 'exactly': 1.0, 've': 1.0, 'just': 1.0, 'spicerack': 1.0, 'perfect': 1.0, 'but': 1.0, 'what': 1.0, 'looking': 1.0, 'i': 2.0, 'been': 1.0, 'look': 1.0, 'for': 2.0, 'they': 2.0, 'make': 1.0, 'my': 2.0, 'small': 1.0, 'are': 1.0}
Word element => {'wanted': 1.0, 'and': 1.0, 'together': 1.0, 'them': 1.0, 'putting': 1.0, 'they': 1.0, 'are': 1.0, 'than': 1.0, 'but': 1.0, 'time': 1.0, 'with': 1.0, 'smaller': 1.0, 'came': 1.0, 'no': 1.0, 'i': 1.0, 'beautiful': 1.0, 'directions': 1.0, 'so': 1.0, 'hard': 1.0, 'had': 1.0}
Word element => {'candy': 1.0, 'we': 1.0, 'opening': 1.0, 'the': 1.0, 'these': 1.0, 'because': 1.0, 'boxes': 1.0, 'were': 1.0, 'very': 1.0, 'when': 1.0, 'i': 1.0, 'put': 1.0, 'fragile': 1.0, 'was': 1.0, 'inside': 1.0, 'bottoms': 1.0, 'use': 1.0, 'unable': 1.0, 'to': 1.0, 'a': 1.0, 'kept': 1.0, 'them': 1.0}
Word element => {'baby': 1.0, 'little': 1.0, 'my': 1.0, 'recommend': 1.0, 'easy': 1.0, 'just': 1.0, 'huge': 1.0, 'these': 1.0, 'a': 2.0, 'sisters': 1.0, 'at': 1.0, 'would': 1.0, 'hit': 1.0, 'were': 2.0, 'shower': 1.0, 'it': 1.0, 'to': 1.0, 'put': 1.0, 'they': 1.0, 'time': 1.0, 'took': 1.0, 'i': 1.0, 'together': 1.0, 'definitely': 1.0}
Word element => {}
Word element => {'wood': 1.0, 'real': 1.0, 'of': 1.0, 'however': 1.0, 'wedding': 1.0, 'they': 3.0, 'made': 1.0, 'are': 2.0, 'the': 1.0, 'were': 1.0, 'light': 1.0, 'cute': 1.0, 'little': 1.0, 'as': 1.0, 'very': 1.0, 'and': 1.0, 'perfect': 1.0, 'outdoor': 1.0, 'touch': 1.0, 'an': 1.0, 'to': 1.0}
Word element => {'reuse': 1.0, 'that': 1.0, 'so': 1.0, 'cards': 1.0, 'your': 1.0, 'unique': 1.0, 'or': 1.0, 'themed': 1.0, 'if': 1.0, 'i': 1.0, 'buy': 1.0, 'must': 1.0, 'adorable': 1.0, 'to': 1.0, 'are': 1.0, 'the': 1.0, 'more': 1.0, 'these': 2.0, 'logs': 1.0, 'love': 4.0, 'rustic': 1.0, 'mini': 1.0, 'a': 1.0, 'having': 1.0, 'can': 1.0, 'event': 1.0, 'would': 1.0, 'doing': 1.0, 'purchase': 1.0, 'of': 1.0}
Word element => {'well': 1.0, 'quick': 1.0, 'was': 1.0, 'put': 1.0, 'we': 1.0, 'as': 1.0, 'beans': 1.0, 'and': 1.0, 'them': 2.0, 'shipping': 1.0, 'they': 1.0, 'jelly': 1.0, 'were': 1.0, 'perfect': 1.0, 'everyone': 1.0, 'favor': 1.0, 'in': 1.0, 'for': 1.0, 'box': 1.0, 'the': 3.0, 'my': 1.0, 'loved': 1.0, 'wedding': 1.0}
Word element => {'done': 1.0, 'well': 1.0, 'parties': 1.0, 'engagement': 1.0, 'these': 1.0, 'or': 1.0, 'wedding': 1.0, 'beautiful': 1.0, 'favor': 1.0, 'boxes': 1.0, 'yea': 1.0, 'great': 1.0, 'love': 1.0, 'craftsmanship': 1.0, 'are': 1.0, 'the': 1.0, 'really': 1.0, 'quality': 1.0, 'for': 1.0, 'design': 1.0}
Word element => {'card': 1.0, 'a': 1.0, 'fit': 1.0, 'too': 1.0, 'they': 1.0, 'please': 1.0, 'much': 1.0, 'to': 2.0, 'than': 1.0, 'prob': 1.0, 'i': 2.0, 'weight': 2.0, 'really': 1.0, 'of': 1.0, 'light': 1.0, 'did': 1.0, 'are': 2.0, 'smaller': 1.0, 'my': 1.0, 'the': 1.0, 'these': 1.0, 'pay': 1.0, 'tiny': 2.0, 'attention': 1.0, 'size': 1.0, 'business': 1.0, 'this': 1.0, 'thought': 1.0, 'fault': 1.0, 'very': 2.0, 'as': 1.0, 'not': 1.0}
Word element => {'my': 1.0, 'of': 1.0, 'then': 1.0, 'freeze': 1.0, 'product': 1.0, 'all': 1.0, 'able': 1.0, 'to': 1.0, 'was': 1.0, 'i': 2.0, 'it': 1.0, 'this': 1.0, 'love': 1.0, 'the': 1.0, 'great': 1.0, 'food': 2.0, 'wash': 1.0, 'in': 1.0, 'a': 1.0, 'can': 1.0, 'size': 1.0, 'pops': 1.0, 'out': 1.0, 'easily': 2.0, 'sons': 1.0, 'and': 1.0}
Word element => {'out': 1.0, 'actually': 1.0, 'same': 1.0, 'even': 1.0, 'option': 1.0, 'than': 1.0, 'is': 1.0, 'tray': 1.0, 'very': 1.0, 'it': 1.0, 'this': 1.0, 'to': 1.0, 'happier': 1.0, 'happy': 1.0, 'too': 1.0, 'pop': 1.0, 'm': 2.0, 'do': 1.0, 'searched': 1.0, 'purchased': 1.0, 'thing': 1.0, 'name': 1.0, 'i': 4.0, 'easy': 1.0, 'cheaper': 1.0, 'exact': 1.0, 'for': 1.0, 'a': 1.0, 'popular': 1.0, 'brand': 1.0, 'more': 1.0, 'the': 2.0, 'ones': 1.0, 'that': 1.0}
Word element => {'paid': 1.0, 'the': 2.0, 'last': 1.0, 'today': 1.0, 'unsatisfied': 1.0, 'time': 1.0, 'ripped': 1.0, 'for': 2.0, 'one': 1.0, 'rubber': 1.0, 'first': 1.0, 'it': 1.0, 'what': 1.0, 'used': 1.0, 'popping': 1.0, 'serving': 1.0, 'out': 1.0, 'very': 1.0, 'night': 1.0, 'tried': 1.0, 'i': 2.0, 'guess': 1.0, 'you': 2.0, 'and': 1.0, 'get': 1.0}
Word element => {'safe': 1.0, '34': 2.0, 'really': 1.0, 'itself': 1.0, 'wonder': 1.0, 'makes': 1.0, 'attach': 1.0, 'industrial': 1.0, 'an': 1.0, 'right': 1.0, 'sticker': 3.0, 'next': 1.0, 'into': 1.0, 'fact': 1.0, 'lid': 3.0, 'for': 3.0, 'product': 3.0, 'supposed': 1.0, 'glue': 1.0, 'reason': 1.0, 'flexible': 1.0, 'huge': 1.0, 'than': 2.0, 'and': 4.0, 'wouldn': 1.0, 'didn': 1.0, 'on': 2.0, 'haven': 1.0, 'same': 1.0, 'if': 2.0, 'want': 1.0, 'everything': 1.0, 'much': 1.0, 'used': 1.0, 'functionality': 1.0, 'strength': 1.0, 'so': 2.0, 'am': 1.0, 'that': 1.0, 'silicone': 1.0, 'easily': 1.0, 'paper': 1.0, 'comes': 2.0, 'is': 7.0, 'babies': 1.0, 'more': 1.0, 'to': 6.0, 'as': 2.0, 'was': 2.0, 'stars': 1.0, 'wanted': 1.0, 'top': 2.0, 'yet': 1.0, 'far': 1.0, 'with': 2.0, 'this': 4.0, 'it': 7.0, 'like': 1.0, 'covers': 1.0, 'remove': 1.0, 'problem': 1.0, 'goes': 1.0, 'information': 2.0, 'i': 7.0, 'adhesive': 1.0, 'cheaper': 1.0, 'normally': 1.0, '2': 1.0, 'but': 3.0, 'nicely': 1.0, 't': 3.0, 'a': 3.0, 'wont': 1.0, 'try': 1.0, 'ones': 1.0, 'of': 1.0, 'the': 16.0, 'since': 1.0, 'assuming': 1.0, 'half': 1.0, 'be': 2.0, 'came': 1.0, 'contact': 1.0, 'tried': 1.0, 'off': 2.0, 'soaped': 1.0, 'scrubbed': 1.0, 'especially': 1.0, 'come': 1.0, 'would': 1.0, 'goo': 1.0, 'gone': 1.0, 'baby': 2.0, 'use': 1.0, 'harsher': 1.0, 'able': 1.0, 'portion': 1.0, 'now': 1.0, 'stuff': 1.0, 'just': 1.0, 'left': 1.0, 'sticky': 1.0, 'food': 1.0, 'concerns': 1.0, 'sticks': 1.0, 'my': 1.0, 'beaba': 1.0, 'me': 2.0, 'they': 1.0}
Word element => {'oz': 1.0, 'about': 1.0, 'portions': 1.0, 'brownish': 1.0, 'of': 1.0, 'photo': 1.0, 'actually': 1.0, 'it': 3.0, 'this': 2.0, 'attractive': 1.0, 'on': 1.0, 'is': 4.0, 'deceiving': 1.0, 'which': 1.0, 'color': 2.0, 'not': 1.0, 'at': 1.0, '2': 1.0, 'the': 1.0, 'all': 1.0, 'but': 1.0, 'does': 1.0, 'what': 1.0, 'each': 1.0, 'meant': 1.0, 'to': 1.0, 'do': 1.0, '7': 1.0, 'freeze': 1.0}
Word element => {'ideal': 1.0, 'later': 1.0, 'bag': 1.0, 'freezer': 1.0, 'recommend': 1.0, 'store': 1.0, 'flexible': 1.0, 'with': 1.0, 'so': 1.0, 'after': 1.0, 'veggies': 1.0, 'the': 5.0, 'or': 1.0, 'into': 2.0, 'i': 5.0, 'old': 1.0, 'out': 2.0, 'them': 2.0, 'trying': 1.0, 'you': 1.0, 'ordered': 1.0, 'second': 1.0, 'one': 2.0, 'tray': 1.0, 'is': 1.0, 'first': 1.0, 'it': 3.0, 'month': 2.0, 's': 2.0, 'a': 4.0, 'love': 1.0, 'for': 4.0, 'product': 1.0, 'highly': 1.0, 'material': 1.0, 'portion': 1.0, 'in': 2.0, 'this': 2.0, 'perfect': 1.0, 'just': 3.0, 'absolutely': 1.0, 'steam': 1.0, 'size': 1.0, 'fact': 1.0, 'my': 1.0, '6': 1.0, 'son': 1.0, 'blend': 1.0, 'drop': 1.0, 'puree': 2.0, 'and': 2.0, 'freezing': 1.0, 'then': 2.0, 'pop': 1.0, 'portions': 1.0, 'which': 1.0, 'snap': 1.0}
Word element => {'couple': 1.0, 'buy': 1.0, 'think': 1.0, 'i': 2.0, 'this': 1.0, 'is': 1.0, 'a': 2.0, 'food': 1.0, 'great': 1.0, 'will': 1.0, 'baby': 1.0, 'product': 1.0, 'to': 1.0, 'of': 1.0, 'really': 1.0, 'keep': 1.0, 'more': 1.0, 'homemade': 1.0}
Word element => {'on': 1.0, 'chick': 1.0, 'touch': 1.0, 'made': 1.0, 'were': 1.0, 'parts': 1.0, 'colors': 1.0, 'bright': 1.0, 'did': 1.0, '7': 1.0, 'much': 1.0, 'bit': 1.0, 'dotty': 1.0, 'of': 2.0, 'spotty': 1.0, 'slug': 1.0, 'or': 2.0, 'snail': 1.0, 'big': 1.0, 'are': 3.0, 'months': 1.0, 'bought': 1.0, 'the': 7.0, 'weren': 1.0, 'this': 1.0, 'it': 2.0, 'animals': 1.0, 'mainly': 1.0, 'books': 2.0, 'there': 2.0, 'set': 1.0, 'that': 5.0, 'and': 3.0, 'too': 2.0, 'sheep': 1.0, 'purpose': 1.0, 'as': 2.0, 'any': 1.0, 'to': 2.0, 'i': 3.0, 'two': 1.0, 'teether': 1.0, 'have': 1.0, 'an': 1.0, 'for': 3.0, 'fluffy': 1.0, 'teething': 1.0, 'example': 1.0, 'features': 1.0, 'like': 5.0, 'age': 1.0, 'in': 1.0, 'ladybug': 1.0, '34': 4.0, 'street': 1.0, 'book': 1.0, 'other': 2.0, 'sesmae': 1.0, 'wool': 1.0, '6': 1.0, 'lines': 2.0, 'plastic': 1.0, 'ends': 1.0, 'they': 1.0, 'pages': 1.0, 'not': 1.0, 'stories': 1.0, 'find': 1.0, 'ant': 1.0, 't': 1.0, 'go': 1.0, 's': 2.0, 'a': 2.0}
Word element => {'baby': 1.0, 'designed': 1.0, 'well': 1.0, 'to': 2.0, 'wants': 1.0, 'he': 1.0, 'books': 1.0, 'all': 1.0, 'grandson': 1.0, 'my': 1.0, 'the': 3.0, 'are': 1.0, 'read': 1.0, 'them': 1.0, 'for': 2.0, 'love': 1.0, 'material': 1.0, 'me': 1.0, 'and': 1.0, 'day': 1.0, 'best': 1.0, 'very': 1.0, 'him': 1.0, 'pictures': 1.0, 'cute': 1.0, 'too': 1.0}
Word element => {'thank': 1.0, 'improved': 1.0, 'have': 1.0, 'scratches': 1.0, 'longer': 1.0, 'areas': 1.0, 'getting': 1.0, 'twice': 1.0, 'hydrating': 1.0, 'us': 1.0, 'ups': 1.0, 'this': 1.0, 'michaderm': 1.0, 'calming': 1.0, 'teacher': 1.0, 'you': 1.0, 'am': 1.0, 'drug': 1.0, 'works': 1.0, 'guilty': 1.0, 'i': 2.0, 'lucky': 1.0, 'parent': 1.0, 'well': 1.0, 'recommended': 1.0, 'won': 1.0, 'basis': 1.0, 'significantly': 1.0, 'every': 2.0, 'natural': 1.0, 'eczema': 3.0, 'since': 1.0, 'if': 1.0, 'apply': 1.0, 'no': 2.0, 'recommendations': 2.0, 'still': 1.0, 'giving': 1.0, 'pediatrician': 2.0, 'so': 3.0, 'erk': 1.0, 'after': 1.0, 'good': 1.0, 'her': 4.0, 'even': 1.0, '5': 1.0, 'before': 1.0, 'on': 1.0, '3': 1.0, 'daughter': 3.0, 'yo': 1.0, 'day': 3.0, 'almost': 1.0, 'year': 1.0, 'bye': 2.0, 'to': 1.0, 'as': 1.0, 'hydrocordizone': 1.0, 'are': 1.0, 'use': 1.0, 'flare': 4.0, 'cream': 2.0, 'my': 3.0, 'up': 3.0, 'results': 1.0, 'there': 1.0, 'felt': 1.0, 'she': 3.0, 'daily': 1.0, 'was': 2.0, 'sleeps': 1.0, 'is': 3.0, 'and': 6.0, 'benadryl': 2.0, 'defense': 1.0, 'we': 1.0, 'a': 3.0, 's': 3.0, 'flared': 1.0, 't': 1.0, 'scratch': 1.0, 'the': 4.0, 'following': 1.0, 'product': 1.0, 'steroids': 2.0, 'for': 2.0, 'give': 1.0, 'poorly': 1.0, 'controlled': 1.0}
Word element => {'back': 1.0, 'up': 1.0, 'interesting': 1.0, 'very': 1.0, 'not': 1.0, 'ended': 1.0, 'toy': 1.0, 'make': 1.0, 'engaging': 1.0, 'when': 1.0, 'reality': 1.0, 'than': 1.0, 'all': 1.0, 'pictures': 1.0, 'filling': 1.0, 'the': 1.0, 'i': 2.0, 'cheap': 1.0, 'also': 1.0, 'in': 2.0, 'better': 1.0, 'used': 1.0, 'looks': 1.0, 'really': 1.0, 'received': 1.0, 'this': 2.0, 'it': 3.0, 'looked': 1.0, 'lumpy': 1.0, 'like': 1.0, 'sending': 1.0, 'or': 1.0, 'someone': 1.0, 'pillow': 1.0, 'its': 1.0, 'to': 1.0}
Word element => {'out': 1.0, 'got': 1.0, 'stands': 1.0, 'easy': 1.0, 'all': 1.0, 'well': 1.0, 'compliments': 1.0, 'works': 1.0, 'reasonable': 1.0, 'get': 1.0, 'and': 3.0, 'know': 1.0, 'cute': 1.0, 'hand': 1.0, 'wanna': 1.0, 'people': 1.0, 'is': 2.0, 'on': 1.0, 'time': 1.0, 'this': 1.0, 'pticed': 1.0, 'very': 2.0, 'ok': 1.0, 'the': 2.0, 'where': 1.0, 'i': 1.0}
Word element => {'you': 1.0, 'super': 1.0, 'phone': 1.0, 'perfect': 1.0, 'are': 2.0, 'handles': 1.0, 'wallet': 1.0, 'smooth': 1.0, 'holer': 1.0, 'i': 1.0, 'am': 1.0, 'thank': 1.0, 'ever': 1.0, 'stroller': 1.0, 'nicest': 1.0, 'a': 1.0, 'the': 5.0, 'high': 1.0, 'my': 1.0, 'run': 1.0, 'is': 2.0, 'this': 1.0, 'loves': 1.0, 'grandmother': 1.0, 'max': 1.0, 'bottle': 1.0, 'wheels': 1.0, 'and': 3.0, 'colors': 1.0, 'deere': 1.0, 'we': 1.0, 'who': 1.0, 'grandson': 1.0, 'john': 1.0, 'both': 1.0, 'love': 1.0}
Word element => {'that': 1.0, 'ok': 1.0, 'm': 1.0, 'i': 1.0, 'so': 1.0, 'percentile': 1.0, '90th': 1.0, 'though': 1.0, 'in': 1.0, 'stay': 1.0, 'with': 1.0, 'is': 1.0, 'on': 1.0, 'well': 1.0, 'huge': 1.0, 'they': 2.0, 'pretty': 1.0, 'but': 1.0, 'the': 1.0, 'are': 1.0, 'my': 1.0, 'baby': 1.0}
Word element => {'fitting': 1.0, 'close': 1.0, 'these': 1.0, 'even': 1.0, 'but': 1.0, 'seem': 1.0, 'well': 1.0, 'very': 1.0, 'and': 1.0, 'old': 1.0, 'to': 1.0, 'designs': 1.0, 'month': 1.0, '9': 1.0, 'love': 1.0, 'yet': 1.0, 'my': 1.0, 'made': 1.0, 'the': 1.0, 'not': 1.0}
Word element => {'bought': 1.0, 'similar': 1.0, 'other': 1.0, 'than': 1.0, 'better': 1.0, 'few': 1.0, 'on': 2.0, 'skid': 1.0, 'and': 1.0, 'cute': 1.0, 'well': 1.0, 'a': 1.0, 'them': 2.0, 'stay': 1.0, '34': 2.0, 'of': 1.0, 'skulls': 1.0, 'they': 1.0, 'these': 1.0, 'socks': 2.0, 'not': 1.0, 'have': 1.0, 'which': 1.0, 'in': 1.0, 'i': 2.0, 'am': 1.0, 'to': 1.0, 'but': 1.0, 'are': 1.0, 'overall': 1.0}
Word element => {'recommend': 1.0, 'would': 1.0, 'leaky': 1.0, 'this': 1.0, 'it': 1.0, 'got': 1.0, 'turn': 1.0, 'in': 1.0, 'went': 1.0, 'diapers': 1.0, 'not': 2.0, 'super': 1.0, 'at': 1.0, 'baby': 1.0, 'for': 2.0, 'good': 1.0, 'of': 1.0, 'a': 3.0, 'paid': 1.0, 'are': 1.0, 'diaper': 1.0, 'the': 1.0, 'these': 1.0, 'brand': 2.0, 'chubby': 1.0, 'fit': 1.0, 'new': 1.0, 'was': 1.0, 'to': 1.0, 'name': 1.0, 'cheap': 1.0, 'i': 4.0, 'cloth': 1.0, 'and': 2.0, 'what': 1.0, 'diapering': 1.0, 'overwhelmed': 1.0, 'prices': 1.0}
Word element => {'kerrbear': 1.0, 'stars': 1.0, 'got': 1.0, 'pattern': 1.0, 'one': 1.0, 'tooth': 1.0, 'husband': 1.0, 'be': 1.0, 'seems': 1.0, 'brand': 1.0, 'kerrbearkids': 1.0, 'nice': 1.0, 'doublers': 1.0, 'came': 2.0, 'relatively': 1.0, 'night': 1.0, 'used': 1.0, 'helpful': 1.0, 'or': 2.0, 'week': 1.0, 'insert': 1.0, 'perfect': 1.0, 'this': 3.0, 'so': 1.0, 'doubler': 1.0, 'also': 1.0, 'because': 1.0, 'that': 3.0, 'thinner': 1.0, '4': 1.0, 'case': 1.0, 'reliable': 1.0, 'been': 1.0, 'add': 1.0, 'these': 1.0, 'about': 2.0, 'thing': 1.0, 'blowout': 1.0, '5': 2.0, 'we': 1.0, 'a': 3.0, 'extra': 2.0, 'them': 4.0, 'has': 1.0, 'since': 1.0, 'is': 2.0, 'at': 1.0, 'my': 2.0, 'of': 1.0, 'the': 11.0, 'deal': 1.0, 'prevent': 1.0, 've': 1.0, 'would': 2.0, 'new': 1.0, 'for': 3.0, 'likes': 1.0, 'fit': 1.0, 'with': 4.0, 'wings': 1.0, 'hip': 1.0, 'diaper': 1.0, 'heavy': 1.0, 'love': 1.0, 'he': 2.0, 'well': 1.0, 'i': 7.0, 'overlap': 1.0, 'instead': 1.0, 'even': 1.0, 'cloth': 2.0, '9': 1.0, 'lbs': 1.0, 'was': 1.0, 'were': 1.0, 'recommend': 1.0, 'pretty': 1.0, 'to': 5.0, 'any': 1.0, 'other': 1.0, 'all': 2.0, 'nail': 1.0, 'son': 1.0, 'snaps': 3.0, 'from': 1.0, 'wetter': 1.0, 'thick': 1.0, 'though': 1.0, 'issues': 1.0, 'inserts': 1.0, 'do': 1.0, 'simply': 1.0, 'only': 1.0, 'just': 1.0, 'in': 2.0, 'diapering': 2.0, 'using': 1.0, 'like': 3.0, 'super': 2.0, 'month': 1.0, 'now': 1.0, 'bunching': 1.0, 'have': 2.0, 'not': 1.0, 'had': 1.0, 'leakage': 1.0, 'really': 2.0, 'make': 1.0, 'definitely': 1.0, 'better': 1.0, 'if': 1.0, 'they': 1.0, 'pocket': 1.0, 'and': 5.0, 'anyone': 1.0, 'first': 1.0, 'diapers': 2.0, 'are': 1.0, 'fought': 1.0, 'easy': 1.0}
Word element => {'polyurethane': 1.0, 'before': 1.0, 'resistant': 1.0, 'water': 1.0, 'maybe': 1.0, 'fabrics': 1.0, 'waterproof': 1.0, 'kerrbear': 1.0, 'stars': 1.0, 'got': 1.0, 'pattern': 1.0, 'one': 1.0, 'tooth': 1.0, 'more': 1.0, 'husband': 1.0, 'be': 2.0, 'seems': 2.0, 'brand': 1.0, 'kerrbearkids': 1.0, 'little': 1.0, 'nice': 1.0, 'doublers': 1.0, 'came': 2.0, 'than': 1.0, 'relatively': 1.0, 'night': 1.0, 'used': 1.0, 'helpful': 1.0, 'or': 2.0, 'camo': 1.0, 'week': 1.0, 'insert': 1.0, 'perfect': 1.0, 'this': 3.0, 'so': 1.0, 'doubler': 1.0, 'also': 2.0, 'because': 1.0, 'that': 3.0, 'thinner': 1.0, '4': 1.0, 'case': 1.0, 'reliable': 1.0, 'been': 1.0, 'add': 1.0, 'these': 1.0, 'about': 2.0, 'thing': 1.0, 'blowout': 1.0, '5': 2.0, 'we': 1.0, 'a': 4.0, 'extra': 2.0, 'laminated': 1.0, 'them': 4.0, 'has': 1.0, 'since': 1.0, 'is': 2.0, 'at': 1.0, 'my': 2.0, 'of': 1.0, 'the': 14.0, 'deal': 1.0, 'prevent': 1.0, 've': 1.0, 'would': 2.0, 'new': 1.0, 'fabric': 1.0, 'for': 3.0, 'likes': 1.0, 'fit': 1.0, 'with': 5.0, 'wings': 1.0, 'hip': 1.0, 'diaper': 1.0, 'heavy': 1.0, 'love': 1.0, 'he': 2.0, 'well': 1.0, 'i': 7.0, 'overlap': 1.0, 'instead': 1.0, 'even': 1.0, 'cloth': 2.0, 'it': 2.0, '9': 1.0, 'lbs': 1.0, 'was': 3.0, 'were': 1.0, 'recommend': 1.0, 'pretty': 1.0, 'to': 6.0, 'any': 1.0, 'other': 2.0, 'all': 2.0, 'nail': 1.0, 'son': 1.0, 'snaps': 3.0, 'from': 1.0, 'wetter': 1.0, 'thick': 1.0, 'though': 1.0, 'issues': 1.0, 'inserts': 1.0, 'do': 1.0, 'simply': 1.0, 'only': 1.0, 'just': 1.0, 'in': 2.0, 'diapering': 2.0, 'using': 1.0, 'like': 4.0, 'super': 2.0, 'month': 1.0, 'now': 1.0, 'bunching': 1.0, 'have': 2.0, 'not': 1.0, 'had': 1.0, 'leakage': 1.0, 'really': 2.0, 'make': 1.0, 'definitely': 1.0, 'better': 1.0, 'if': 1.0, 'they': 1.0, 'pocket': 1.0, 'and': 5.0, 'anyone': 1.0, 'first': 1.0, 'diapers': 2.0, 'are': 1.0, 'fought': 1.0, 'easy': 1.0}
Word element => {'so': 1.0, 'issues': 1.0, 'no': 1.0, 'leaking': 1.0, 'many': 1.0, 'any': 1.0, 'and': 1.0, 'to': 1.0, 'designs': 1.0, 'what': 1.0, 'diapering': 1.0, 'are': 2.0, 'ever': 1.0, 'they': 1.0, 'brand': 1.0, 'recommend': 1.0, 'big': 1.0, 'cloth': 1.0, 'i': 1.0, 'one': 1.0, 'cute': 1.0, 'parent': 1.0, 'this': 1.0, 'come': 1.0, 'in': 2.0, 'different': 1.0, 'affordable': 1.0, 'a': 1.0, 'package': 1.0}
Word element => {'diapers': 1.0, 'kids': 1.0, 'kerrbear': 1.0, 'you': 1.0, 'thank': 1.0, 'that': 1.0, 'could': 1.0, 'for': 1.0, 'one': 1.0, 'or': 1.0, 'i': 1.0, 'and': 1.0, 'get': 1.0, 'beat': 1.0, 'to': 1.0, 'whether': 1.0, 'who': 1.0, 'glad': 1.0, 'great': 1.0, 'the': 1.0, 't': 1.0, 'affordable': 1.0, 'not': 1.0, 'know': 1.0, 'didn': 1.0, 'did': 1.0, 'soft': 1.0, 'this': 1.0, 'it': 1.0, 'cuter': 1.0, 'so': 1.0, 'in': 1.0, 'much': 1.0, 'person': 1.0, 'no': 1.0, 'is': 1.0, 'leaking': 1.0}
Word element => {'my': 1.0, 'to': 2.0, 'continue': 1.0, 'will': 1.0, 'as': 1.0, 'and': 1.0, 'love': 1.0, 'this': 1.0, 'is': 1.0, 'go': 1.0, 'them': 1.0, 'a': 1.0, 'cute': 1.0, 'looks': 1.0, 'use': 1.0, 'diapers': 1.0, 'even': 1.0, 'these': 1.0, 'such': 1.0, 'better': 1.0, 'person': 1.0, 'diaper': 2.0, 'in': 1.0}
Word element => {'grand': 1.0, 'will': 1.0, 'far': 1.0, 'so': 1.0, 'daughter': 1.0, 'diaper': 1.0, 'is': 3.0, 'everything': 1.0, 'love': 1.0, 'it': 2.0, 'update': 1.0, 'says': 1.0, 'born': 1.0, 'large': 1.0, 'goes': 1.0, 'small': 1.0, 'once': 1.0, 'to': 1.0, 'them': 1.0}
Word element => {'isn': 1.0, 'underneath': 1.0, 'and': 2.0, 'enough': 1.0, 'top': 1.0, 'on': 1.0, 'use': 1.0, 'reviewer': 1.0, 'previous': 1.0, 'as': 1.0, 'not': 1.0, 'comes': 1.0, 'job': 1.0, 'came': 2.0, 'that': 2.0, 'bamboo': 1.0, 'kids': 1.0, 'kerrbear': 1.0, 'alva': 1.0, 'a': 4.0, 'alone': 1.0, 'don': 1.0, 'hemp': 1.0, 'said': 1.0, 'is': 3.0, 'ladybug': 1.0, 'i': 2.0, 'works': 1.0, 'microfiber': 3.0, 'does': 1.0, 'with': 2.0, 'advertised': 1.0, 'it': 6.0, 'but': 2.0, 'an': 1.0, 'insert': 2.0, 'are': 1.0, 'care': 1.0, 'still': 1.0, 'great': 1.0, 'thirties': 1.0, 'diaper': 2.0, 'the': 3.0, 'these': 1.0, 't': 2.0, 's': 1.0}
Word element => {'8': 1.0, 'ended': 1.0, 'extras': 1.0, 'far': 1.0, 'order': 1.0, 'so': 2.0, '1': 1.0, 'insert': 1.0, 'diaper': 1.0, 'that': 1.0, 'love': 1.0, 'stars': 1.0, '5': 1.0, 'it': 1.0, 'amazon': 1.0, 'comes': 1.0, 'is': 2.0, 'disappointed': 1.0, 'cheapest': 1.0, 'the': 4.0, 'of': 1.0, 'these': 2.0, 'some': 1.0, 'at': 1.0, 'was': 1.0, 'would': 1.0, 'new': 1.0, 't': 1.0, 'a': 1.0, 'well': 1.0, 'being': 2.0, 'in': 1.0, 'diapering': 1.0, 'cloth': 1.0, 'i': 9.0, 'and': 3.0, 'on': 2.0, 'up': 1.0, 'wash': 1.0, 'budget': 1.0, 'when': 1.0, 'm': 1.0, 'had': 1.0, 'vibrant': 1.0, 'thought': 1.0, 'thing': 1.0, 'received': 1.0, 'them': 2.0, 'they': 1.0, 'are': 2.0, 'very': 3.0, 'why': 1.0, 'soft': 1.0, 'colors': 1.0, 'to': 2.0, 'all': 3.0, 'patterns': 1.0, 'which': 1.0, 'happy': 1.0, 'buying': 1.0, 'with': 2.0, 'try': 1.0, 'only': 2.0, 'didn': 1.0, 'not': 1.0, 'give': 1.0}
Word element => {'on': 1.0, 'saving': 1.0, 'friendly': 1.0, 'eco': 1.0, 'i': 1.0, 'also': 1.0, 'money': 1.0, 'love': 2.0, 'the': 1.0, 'them': 1.0, 'being': 1.0, 'designs': 1.0, 'all': 1.0, 'diapers': 2.0, 'of': 1.0, 'these': 1.0, 'and': 1.0, 'cloth': 1.0}
Word element => {'them': 1.0, 'buy': 1.0, 'bought': 1.0, 'i': 1.0, 'loose': 1.0, 'these': 1.0, 'neck': 1.0, 'each': 1.0, 'is': 1.0, 'more': 1.0, 'around': 1.0, 'bit': 1.0, 'so': 3.0, 'drooler': 1.0, 'his': 1.0, 'cute': 1.0, 'and': 2.0, 'matter': 1.0, 'my': 1.0, 'waaaaay': 1.0, 'little': 1.0, 'recommended': 1.0, 'perfect': 1.0, 'choke': 1.0, 'him': 1.0, 'it': 2.0, 'snaps': 1.0, 'first': 1.0, 'at': 1.0, 'no': 1.0, 'carter': 1.0, 't': 1.0, 'a': 2.0, 's': 1.0, 'seem': 1.0, 'easily': 1.0, 'you': 1.0, 'doesn': 1.0, 'store': 1.0, 'cheaper': 1.0, '3': 1.0, '50': 1.0, 'try': 1.0, 'there': 1.0, 'as': 1.0, 'pricey': 1.0, 'highly': 1.0, 'for': 2.0, 'where': 1.0}
Word element => {'lasted': 1.0, 'to': 1.0, 'when': 1.0, 'quickly': 1.0, 'washing': 1.0, 'while': 1.0, 'spare': 1.0, 'have': 2.0, 'd': 1.0, 'so': 1.0, 'bought': 1.0, 'other': 1.0, 'we': 3.0, 'but': 1.0, 'made': 1.0, 'babybjorn': 1.0, 'hung': 1.0, 'soft': 1.0, 'nice': 1.0, 'and': 3.0, 'dry': 2.0, 'cradle': 1.0, 'they': 2.0, 'drier': 1.0, 'for': 1.0, 'in': 1.0, 'fit': 1.0, '2': 1.0, 'the': 2.0, 'these': 1.0, 't': 1.0, 'got': 1.0, 'kind': 1.0, 'of': 1.0, 'well': 3.0, 'a': 2.0, 'go': 1.0, 'pain': 1.0, 'were': 1.0, 'our': 1.0, 'that': 1.0, 'can': 1.0}
Word element => {'well': 1.0, 'wash': 1.0, 'not': 1.0, 'that': 1.0, 'pretty': 1.0, 'these': 2.0, 'some': 1.0, 'waterproof': 1.0, 'others': 1.0, 'are': 2.0, 'bigger': 1.0, 'but': 1.0, 'than': 1.0, 'which': 1.0, 'i': 2.0, 'like': 1.0, 'hate': 1.0}
Word element => {'have': 1.0, 'us': 1.0, 'stars': 1.0, '5': 1.0, 'definite': 1.0, 'go': 1.0, 'drawbacks': 1.0, 'letting': 1.0, 'feeling': 1.0, 'belongs': 1.0, 'output': 1.0, 'other': 1.0, 'all': 2.0, 'keeping': 1.0, 'huge': 1.0, 'making': 1.0, 'overall': 2.0, 'secure': 2.0, 'be': 1.0, 'place': 1.0, 'holding': 1.0, 'tongue': 1.0, 'challenges': 1.0, 'kids': 1.0, 'couldn': 1.0, 'sometimes': 1.0, 'more': 1.0, 'with': 2.0, 'allows': 1.0, 'do': 1.0, 'floor': 1.0, 'end': 2.0, 'flexibility': 1.0, 'allow': 1.0, 'think': 2.0, 'intentional': 1.0, 'together': 1.0, 'this': 5.0, 'hurt': 1.0, 'when': 1.0, 'sit': 1.0, 'on': 10.0, 'getting': 1.0, 'so': 3.0, 'potty': 4.0, 'boy': 2.0, 'found': 4.0, 'bit': 2.0, 'his': 1.0, 'stand': 1.0, 've': 2.0, 'down': 1.0, 'extras': 1.0, 'where': 2.0, 're': 1.0, 'enough': 1.0, 'legs': 3.0, 'thumbs': 3.0, 'a': 11.0, 'we': 5.0, 't': 3.0, 's': 3.0, 'intimidating': 1.0, 'buying': 2.0, 'don': 2.0, 'major': 1.0, 'up': 6.0, 'afraid': 3.0, 'products': 1.0, 'product': 1.0, 'child': 2.0, 'potties': 1.0, 'bottom': 1.0, 'he': 2.0, 'our': 3.0, 'to': 5.0, 'because': 1.0, 'detailed': 1.0, 'that': 3.0, 'him': 1.0, 'it': 9.0, 'like': 1.0, 'toilet': 4.0, 'feel': 2.0, 'himself': 1.0, 'wobbly': 1.0, 'very': 4.0, 'little': 4.0, 'figure': 1.0, 'settle': 1.0, 'son': 1.0, 'gets': 2.0, 'them': 1.0, 'has': 3.0, 'sturdy': 1.0, 'comfort': 1.0, 'plastic': 1.0, '34': 2.0, 'once': 1.0, 'been': 2.0, 'flush': 1.0, 'of': 7.0, 'the': 21.0, 'quite': 1.0, 'training': 2.0, 'will': 2.0, 'still': 1.0, 'stay': 1.0, 'not': 1.0, 'took': 1.0, 'out': 2.0, 'under': 1.0, 'loose': 1.0, 'exactly': 1.0, 'set': 1.0, 'and': 7.0, 'lot': 1.0, 'happy': 1.0, 'one': 4.0, 'too': 1.0, 'second': 2.0, 'immediately': 1.0, 'climbed': 1.0, 'complains': 1.0, 'for': 3.0, '10': 1.0, 'right': 1.0, 'screw': 1.0, 'made': 1.0, 'or': 1.0, 'need': 1.0, 'big': 3.0, 'confusing': 1.0, 'coin': 1.0, 'm': 2.0, 'seat': 2.0, 'in': 4.0, 'met': 1.0, 'needs': 2.0, 'parts': 1.0, 'well': 1.0, 'i': 6.0, 'instructions': 1.0, 'but': 4.0, 'was': 1.0, 'minutes': 1.0, 'you': 1.0, 'able': 1.0, 'about': 1.0, 'no': 2.0, 'issues': 1.0, 'there': 1.0, 'look': 1.0, 'is': 2.0, 'at': 1.0, 'top': 2.0}
Word element => {'little': 1.0, 'a': 1.0, 'life': 1.0, 'makes': 1.0, 's': 1.0, 'for': 2.0, 'her': 2.0, 'and': 3.0, 'pull': 1.0, 'pulling': 1.0, 'my': 1.0, 'are': 1.0, 'daughter': 1.0, 'to': 1.0, 'had': 1.0, 'easier': 1.0, 'playing': 1.0, 'daddy': 1.0, 'of': 1.0, 'constantly': 1.0, 'problem': 1.0, 'i': 1.0, 'mommy': 1.0, 'off': 2.0, 'or': 1.0, 'binkies': 1.0, 'dropping': 1.0, 'them': 2.0, 'floor': 1.0, 'it': 1.0, 'hard': 1.0, 'durable': 1.0, 'with': 1.0, 'more': 1.0, 'the': 2.0, 'these': 1.0, 'on': 1.0, 'clips': 1.0}
Word element => {'ankles': 1.0, 'thy': 1.0, 'that': 1.0, 'cover': 1.0, 'up': 2.0, 'don': 1.0, 'move': 1.0, 'they': 3.0, 'it': 1.0, 'he': 1.0, 'around': 1.0, 'in': 1.0, 'crawl': 1.0, 'on': 3.0, 'my': 1.0, 'starts': 1.0, 't': 1.0, 'wont': 1.0, 'at': 1.0, 'keep': 1.0, 'sons': 1.0, 'soon': 1.0, 'and': 2.0, 'knees': 3.0, 'them': 1.0, 'all': 2.0, 'to': 1.0, 'as': 2.0, 'hard': 1.0, 'from': 1.0, 'his': 3.0, 'just': 1.0, 'stay': 1.0, 'not': 1.0, 'place': 1.0, 'without': 1.0, 'but': 2.0, 'work': 1.0, 'worse': 1.0, 'bunched': 1.0, 'i': 1.0, 'thought': 1.0, 'would': 1.0, 'crawling': 1.0, 'bad': 1.0, 'covered': 1.0, 'protected': 1.0, 'floors': 1.0, 'wood': 1.0, 'or': 2.0, 'carpet': 1.0, 'end': 1.0, 'dose': 1.0, 'for': 1.0}
Word element => {'toddler': 1.0, 'overall': 1.0, 'convert': 1.0, 'my': 1.0, 'be': 1.0, 'rest': 1.0, 'wouldn': 1.0, 'so': 2.0, 'attached': 1.0, 'also': 1.0, 'of': 1.0, 'bottom': 1.0, 'much': 1.0, 'only': 1.0, 'foot': 1.0, 'off': 1.0, 'cover': 1.0, 'dishwasher': 1.0, 'in': 1.0, 'easier': 1.0, 'if': 1.0, 'for': 1.0, 'fit': 1.0, 'love': 2.0, 'would': 2.0, 'no': 1.0, 'some': 1.0, 'assembly': 1.0, 'had': 1.0, 'wanted': 1.0, 'to': 8.0, 'baby': 1.0, 'wipe': 1.0, 'shipping': 1.0, 'best': 1.0, 'the': 11.0, 'replace': 1.0, 'slide': 1.0, 'hard': 1.0, 'first': 1.0, 'wish': 1.0, 'this': 1.0, 'looks': 1.0, 'secures': 1.0, 'it': 8.0, 'clean': 3.0, 'tray': 1.0, 'one': 1.0, 'i': 8.0, 'looking': 1.0, 'high': 2.0, 'really': 2.0, 'although': 1.0, 'affordable': 1.0, 'me': 1.0, 'an': 1.0, 'can': 1.0, 'but': 2.0, 'backrest': 1.0, 'at': 1.0, 'option': 1.0, 'compact': 1.0, 'easy': 3.0, 'antilop': 1.0, 'was': 5.0, 'store': 1.0, 'more': 1.0, 'is': 3.0, 'ikea': 2.0, 'chair': 5.0, 'there': 1.0, 'comfortable': 1.0, 'big': 1.0, 'near': 1.0, 'and': 6.0, 'too': 1.0, 'that': 2.0, 'next': 1.0, 'a': 2.0, 't': 1.0, 'could': 1.0, 'concept': 1.0, 'use': 1.0, 'table': 1.0, 'like': 3.0, 'improvements': 1.0}
Word element => {'was': 1.0, 'snug': 1.0, 'bit': 1.0, 'than': 1.0, 'sliding': 1.0, 'is': 1.0, 'off': 1.0, 'been': 1.0, 'keeps': 1.0, 'material': 1.0, 'but': 1.0, 'moves': 1.0, 'nice': 1.0, 'more': 1.0, 'the': 1.0, 'my': 1.0, 'made': 1.0, 'cover': 1.0, 'highchair': 1.0, 'have': 1.0, 'when': 1.0, 'very': 1.0, 'active': 1.0, 'about': 1.0, 'this': 1.0, 'it': 2.0, 'should': 1.0, 'a': 1.0}
Word element => {'market': 1.0, 'on': 1.0, 'is': 1.0, 'why': 1.0, '2012': 1.0, 'in': 1.0, 'the': 1.0, 'recalled': 1.0, 'been': 1.0, 'to': 1.0, 'bought': 1.0, 'stop': 1.0, 'buy': 1.0, 'you': 1.0, 'that': 1.0, 'due': 1.0, 'my': 1.0, 'item': 3.0, 'before': 1.0, 'read': 1.0, 'some': 1.0, 'further': 1.0, 'almost': 1.0, 'good': 1.0, 'has': 1.0, 'reviews': 1.0, 'but': 1.0, 'doing': 1.0, 'this': 4.0, 'research': 1.0, 'info': 1.0, 'still': 1.0, 'found': 1.0}
Word element => {'money': 1.0, 'spend': 1.0, 'want': 1.0, 'did': 1.0, 'grandchildren': 1.0, 'of': 1.0, 'up': 1.0, 'folds': 1.0, 'but': 1.0, 'house': 1.0, 'grandma': 1.0, 'for': 2.0, 'in': 1.0, 'chair': 2.0, 'this': 1.0, 'it': 1.0, 'nicely': 1.0, 'great': 2.0, 's': 1.0, 'was': 1.0, 'wanted': 1.0, 'to': 2.0, 'lot': 1.0, 'store': 1.0, 'away': 1.0, 'when': 1.0, 'i': 1.0, 'not': 2.0, 'a': 3.0, 'purchase': 1.0, 'use': 1.0, 'sturdy': 1.0, 'high': 2.0, 'my': 1.0}
Word element => {'are': 1.0, 'you': 1.0, 'if': 1.0, 'especially': 1.0, 'click': 1.0, 'all': 1.0, 'hurry': 1.0, 'very': 1.0, 'best': 1.0, 'a': 2.0, 'for': 1.0, 'daughter': 1.0, 'massive': 1.0, 'except': 1.0, 'printed': 1.0, 'of': 1.0, 'appears': 1.0, 'sticker': 1.0, 'seat': 1.0, 'my': 1.0, 'car': 1.0, 'warning': 1.0, 'the': 1.0, 'great': 2.0, 'it': 3.0, 'on': 1.0, 'looks': 1.0, 'is': 2.0, 'comfy': 1.0, 'and': 1.0, 'like': 1.0, 'super': 2.0, 'lot': 1.0, 'easy': 2.0, 'to': 3.0, 'install': 1.0, 'in': 2.0, 'seems': 1.0}
Word element => {'reason': 1.0, 'think': 1.0, 'ashamed': 1.0, 'ought': 1.0, 'manufacturer': 1.0, 'attach': 1.0, '1': 1.0, 'stars': 1.0, 'give': 1.0, 'd': 1.0, 'seems': 1.0, 'adjustable': 1.0, 'more': 1.0, 'hoping': 1.0, 'love': 1.0, 'hunk': 1.0, 'padded': 1.0, 'road': 1.0, 'comfortable': 1.0, 'child': 1.0, 'doubt': 1.0, 'baby': 1.0, 'its': 1.0, 'later': 1.0, 'rather': 1.0, 'sooner': 1.0, 'new': 1.0, 'shopping': 1.0, 'paid': 1.0, 'as': 2.0, 'once': 1.0, 'formula': 1.0, 'milk': 1.0, 'overall': 1.0, 'deal': 1.0, 'big': 1.0, 'arrives': 1.0, 'leaky': 1.0, 'protect': 1.0, 'put': 1.0, 'broke': 1.0, 'removable': 2.0, 'game': 1.0, 'see': 1.0, 'pulled': 1.0, 'gently': 1.0, 'when': 1.0, 'around': 1.0, 'lip': 2.0, 'off': 1.0, 'come': 1.0, 'because': 2.0, 'solid': 1.0, 'he': 1.0, 'safe': 2.0, 'sooooo': 1.0, 'tight': 1.0, 'fur': 1.0, 'would': 4.0, 'went': 1.0, 'intermittently': 1.0, 'else': 1.0, 'manual': 2.0, 'absolutely': 1.0, '5': 1.0, 'one': 2.0, 'locking': 1.0, 'outgrows': 1.0, 'back': 2.0, 'did': 2.0, 'stickers': 1.0, 'although': 1.0, 'double': 1.0, 'level': 1.0, 'basically': 1.0, 'tilting': 1.0, 'shell': 2.0, 'themselves': 1.0, 'uk': 2.0, 'from': 4.0, 'keeping': 1.0, 'edge': 1.0, 'hard': 1.0, 'over': 3.0, 'unacceptable': 1.0, 'google': 1.0, 'installed': 1.0, 'floor': 1.0, 'hunch': 1.0, 'likes': 1.0, 't': 6.0, 'dog': 2.0, 'diapers': 1.0, 'but': 4.0, 'use': 2.0, 'ironically': 1.0, 'us': 1.0, 'barely': 1.0, 'point': 1.0, 'base': 5.0, 'on': 8.0, 'stuff': 1.0, 'and': 19.0, 'just': 1.0, 'that': 3.0, 'o': 2.0, 'there': 5.0, 'with': 6.0, 'easily': 1.0, 'looks': 1.0, 'my': 4.0, 'this': 7.0, 'the': 32.0, 'heavy': 1.0, 'insert': 1.0, 'product': 1.0, 'price': 3.0, 'digging': 1.0, 'again': 1.0, 'which': 1.0, 'good': 1.0, 'side': 2.0, 'll': 1.0, 'cab': 1.0, 'it': 17.0, 'be': 6.0, 'lambskin': 2.0, 'tug': 1.0, 'was': 7.0, 'in': 5.0, 'our': 2.0, 'disappointed': 1.0, 'to': 16.0, 'air': 2.0, 'now': 1.0, 'cushy': 1.0, 'afterwards': 1.0, 'than': 1.0, 'bit': 1.0, 'hot': 1.0, 'have': 6.0, 'found': 1.0, 'i': 26.0, 'instead': 1.0, 'steel': 1.0, 'coming': 1.0, 'decided': 1.0, 'used': 1.0, 'feel': 1.0, 'quickly': 1.0, 'secure': 1.0, 'directions': 1.0, 'adjusted': 1.0, 'so': 3.0, 'conditioned': 1.0, 'seat': 7.0, 'push': 1.0, 'start': 1.0, 'button': 1.0, 'whatsoever': 1.0, 'yet': 1.0, 'car': 4.0, 'construction': 1.0, 'pick': 1.0, 'little': 2.0, 'something': 1.0, 'like': 2.0, 'wasn': 1.0, 'housing': 1.0, 'couldn': 1.0, 'fortunately': 1.0, 'spill': 1.0, 'race': 1.0, 'out': 2.0, 'a': 18.0, 'tiny': 1.0, 'don': 1.0, 'super': 3.0, 'still': 2.0, 'great': 1.0, 'if': 2.0, 'very': 1.0, 'enjoy': 1.0, 'adding': 1.0, 'section': 1.0, 'seem': 1.0, 'didn': 1.0, 'mind': 1.0, 'oddly': 1.0, 'first': 1.0, 'newborn': 2.0, 'padding': 3.0, 'last': 1.0, 'star': 1.0, 'everything': 1.0, 'regular': 1.0, 'trips': 1.0, 'panic': 1.0, 'arm': 1.0, 'behind': 1.0, 'minimal': 1.0, 'up': 1.0, 'install': 1.0, 'impact': 2.0, 'cheap': 1.0, 'then': 1.0, 'styrofoam': 4.0, 'an': 1.0, 'we': 1.0, 'bad': 1.0, 'cushion': 3.0, 'gonna': 1.0, 'sides': 1.0, 'latex': 1.0, 'appreciate': 1.0, 'nothing': 2.0, 'foam': 2.0, 'etc': 1.0, 'blasted': 1.0, 'lay': 1.0, 'any': 2.0, 'really': 1.0, 'expected': 1.0, 'keep': 2.0, 'stricken': 1.0, 'indicator': 1.0, 'box': 1.0, 'some': 1.0, 'never': 1.0, 'end': 1.0, 'seatbelt': 1.0, 'at': 1.0, 'compact': 2.0, 'can': 3.0, 'is': 2.0, 'synthetic': 1.0, 'fabric': 1.0, 'guess': 1.0, 'for': 6.0, 'much': 1.0, 'scratchy': 1.0, 'plastic': 2.0, 'feeling': 1.0, 'since': 1.0, 'harness': 3.0, 'also': 1.0, 'sitting': 1.0, 'their': 2.0, 'add': 1.0, 'should': 1.0, 'itself': 3.0, 'not': 4.0, 'piece': 1.0, 'website': 1.0, 'frame': 1.0, 'were': 1.0, 'pickup': 1.0, 'high': 1.0, 'thin': 1.0, 'came': 1.0, 'of': 8.0, 'protection': 1.0, 'covered': 1.0, 'having': 1.0, 'advertising': 1.0, 'no': 3.0, 'aside': 1.0, 'anything': 1.0, 'illustrations': 1.0, 'carrier': 1.0, 'while': 1.0, 'teeth': 2.0, 've': 1.0, 'probably': 1.0, 'before': 1.0, 'hold': 1.0, 'incredibly': 1.0, 'do': 1.0, 'confused': 1.0, 'where': 1.0, 'okay': 1.0, 'instruction': 1.0, 'clicked': 1.0, 'complaint': 1.0, 'will': 2.0, 'attaches': 1.0, 'cover': 2.0, 'm': 3.0, 's': 7.0, 'doesn': 1.0}
Word element => {'too': 1.0, 'pretty': 1.0, 's': 1.0, 'make': 1.0, 'safe': 1.0, 'things': 1.0, 'fill': 1.0, 'all': 1.0, 'able': 1.0, 'unfolds': 1.0, '34': 2.0, 'one': 1.0, 'the': 1.0, 'replace': 1.0, 'previously': 1.0, 'and': 4.0, 'like': 1.0, 'box': 3.0, 'many': 1.0, 'unsafe': 1.0, 'that': 4.0, 'baby': 1.0, 'simply': 1.0, 'toy': 2.0, 'sturdy': 1.0, 'purchased': 2.0, 'will': 1.0, 'surprised': 1.0, 'an': 1.0, 'a': 3.0, 'wood': 1.0, 'so': 2.0, 'kept': 1.0, 'was': 3.0, 'to': 2.0, 'had': 2.0, 'i': 5.0, 'slamming': 1.0, 'issues': 1.0, 'closed': 1.0, 'this': 1.0, 'with': 2.0, 'it': 6.0, 'into': 1.0, 'lid': 2.0, 'ordered': 1.0}
Word element => {'without': 1.0, 'box': 1.0, 'in': 1.0, '79lbs': 1.0, '36kg': 1.0, 'play': 1.0, 'push': 1.0, 'unusable': 1.0, 'five': 1.0, 'straps': 3.0, 'shoulder': 1.0, 'harness': 3.0, 'kids': 1.0, 'safety': 1.0, 'fresco': 1.0, 'for': 2.0, 'up': 1.0, 'says': 1.0, 'padded': 1.0, 'it': 1.0, 'quick': 1.0, 'with': 1.0, 'not': 1.0, 'seat': 1.0, 'description': 1.0, 'conversion': 1.0, 'collection': 2.0, 'point': 1.0, 'button': 1.0, 'allow': 1.0, 'release': 1.0, 'effortless': 1.0, 'removable': 1.0, 'height': 1.0, 'adjustment': 1.0, 'a': 1.0, 'to': 2.0}
Word element => {'colorful': 1.0, 'mat': 1.0, 'to': 2.0, 'very': 1.0, 'and': 1.0, 'quality': 1.0, 'make': 1.0, 'the': 1.0, 'different': 1.0, 'that': 1.0, 'colors': 1.0, 'fabrics': 1.0, 'great': 1.0, 'love': 1.0, 'were': 1.0, 'used': 1.0}
Word element => {'several': 1.0, 'sure': 1.0, 'babies': 1.0, 'last': 1.0, 'm': 1.0, 'i': 1.0, 'baby': 1.0, 'and': 1.0, 'going': 1.0, 'diapers': 1.0, 'a': 1.0, 'fabulous': 1.0, 're': 1.0, 'll': 1.0, 'are': 1.0, 'these': 1.0, 'they': 2.0, 'for': 3.0, 'newborn': 1.0, 'reusable': 1.0, 'green': 1.0, 'cute': 1.0, 'soft': 1.0}
Word element => {'good': 1.0, 'overall': 1.0, 'ready': 1.0, 'bike': 1.0, 'down': 1.0, 'away': 1.0, 'gets': 1.0, '34': 2.0, 'case': 1.0, 'just': 1.0, 'hill': 1.0, 'had': 1.0, 'other': 1.0, 'my': 2.0, 'strap': 1.0, 'on': 2.0, 'do': 2.0, 'together': 1.0, 'removed': 1.0, 'simply': 1.0, 'while': 1.0, 'from': 1.0, 'fix': 1.0, 'would': 3.0, 'switch': 1.0, 'fixed': 1.0, 'the': 3.0, 'plan': 1.0, 'is': 1.0, 'in': 1.0, 'regular': 1.0, 'with': 1.0, 'attempt': 1.0, 'this': 2.0, 'it': 6.0, 'go': 1.0, 'going': 1.0, 't': 2.0, 'a': 3.0, 'since': 1.0, 'happy': 1.0, 'front': 1.0, 'mode': 1.0, 'of': 1.0, 'gladly': 1.0, 'wouldn': 1.0, 'got': 1.0, 'haven': 1.0, 'prefer': 1.0, 'no': 1.0, 'all': 1.0, 'to': 3.0, 'our': 1.0, 'and': 3.0, 'wrist': 1.0, 'break': 1.0, 'probably': 1.0, 'if': 1.0, 'did': 1.0, 'stroller': 3.0, 'work': 1.0, 'but': 2.0, 'for': 3.0, 'one': 2.0, 'tire': 1.0, 'adding': 1.0, 'i': 7.0, 'rid': 1.0, 'swivel': 1.0, 'like': 2.0, 'me': 1.0, 'not': 1.0, 'have': 2.0, 'set': 1.0, 'used': 2.0, 'up': 1.0, 'anyway': 1.0, 'again': 1.0, 'am': 2.0, 'idea': 1.0, 'yet': 1.0, 'or': 1.0, 'buy': 1.0, 'jogging': 3.0, 'desire': 1.0}
Word element => {'would': 1.0, 'far': 1.0, 'so': 1.0, 'love': 1.0, 'my': 1.0, 'tools': 1.0, 'took': 1.0, '15': 1.0, 'to': 3.0, 'definitely': 1.0, 'together': 1.0, 'all': 1.0, 'recommend': 1.0, 'easy': 2.0, 'put': 1.0, 'stroller': 1.0, 'about': 1.0, 'any': 1.0, 'and': 2.0, 'change': 1.0, 'by': 1.0, 'myself': 1.0, 'minutes': 1.0, 'without': 1.0, 'very': 2.0, 'from': 1.0, 'it': 1.0, 'quick': 1.0, 'bike': 1.0, 'trailer': 1.0}
Word element => {'anyway': 1.0, 'knees': 1.0, 'the': 6.0, 'my': 1.0, 'attachment': 1.0, 'step': 1.0, 'wrong': 1.0, 'useless': 1.0, 'it': 4.0, 'with': 1.0, 'only': 1.0, 'really': 1.0, 'that': 1.0, 'loves': 1.0, 'extremely': 1.0, 'has': 1.0, 'isn': 1.0, 'easy': 2.0, 'an': 1.0, 'but': 1.0, 'to': 2.0, 'be': 1.0, 'distribution': 1.0, 'thing': 1.0, 'bad': 1.0, 'together': 1.0, 'and': 1.0, 'break': 2.0, 'bike': 1.0, 'girl': 1.0, 'two': 1.0, 'weight': 2.0, 'from': 1.0, 'way': 1.0, 't': 1.0, 's': 1.0, 'built': 1.0, 'there': 1.0, 'is': 4.0, 'completely': 1.0, 'enough': 1.0, 'your': 1.0, 'put': 1.0, 'on': 1.0, 'front': 1.0, 'tire': 1.0, 'for': 2.0, 'effective': 1.0, 'jogging': 3.0}
Word element => {'his': 1.0, 'sitting': 1.0, 'mind': 1.0, 'doesn': 1.0, '24': 1.0, 'until': 1.0, 'shed': 1.0, 'kid': 1.0, 'asap': 1.0, 'return': 1.0, 'again': 1.0, 'times': 1.0, 'out': 4.0, 'wasn': 1.0, 'months': 1.0, 'get': 2.0, 'couldn': 1.0, 'which': 1.0, 'like': 2.0, 'hold': 1.0, 'together': 1.0, 'up': 2.0, 'after': 1.0, 'easy': 1.0, 'bit': 1.0, 'needed': 1.0, 'scraped': 1.0, 'was': 3.0, 'if': 2.0, 'seat': 1.0, 'in': 6.0, 'sit': 1.0, 'what': 1.0, 'had': 2.0, 'then': 1.0, 'take': 1.0, 'came': 1.0, 'that': 1.0, 'box': 1.0, 'backwards': 2.0, 'next': 1.0, 'he': 1.0, 'boxed': 1.0, 'different': 1.0, 'strap': 1.0, 'about': 1.0, 'blemishes': 1.0, 'how': 1.0, 'item': 2.0, 'a': 7.0, 'fairly': 1.0, 't': 4.0, 's': 1.0, 'will': 2.0, 'could': 1.0, 'the': 5.0, 'putting': 1.0, 'i': 10.0, 'stated': 1.0, 'outside': 1.0, 'straight': 1.0, 'to': 5.0, 'all': 1.0, 'over': 1.0, 'labeled': 1.0, 'decided': 1.0, 'apart': 1.0, 'huge': 1.0, 'one': 1.0, 'him': 1.0, 'it': 8.0, 'looked': 1.0, 'shipped': 2.0, 'hand': 1.0, 'straps': 1.0, 'put': 1.0, 'on': 3.0, 'my': 3.0, 'would': 3.0, 'tight': 1.0, 'returned': 1.0, 'son': 1.0, 'jog': 1.0, 'didn': 1.0, 'safety': 1.0, 'tip': 2.0, 'door': 1.0, 'puzzle': 1.0, 'not': 2.0, 'very': 1.0, 'now': 1.0, 'figure': 1.0, 'sturdy': 1.0, 'have': 4.0, 'is': 1.0, 'handle': 1.0, 'look': 1.0, 'at': 1.0, 'or': 1.0, 'figuring': 2.0, 'strollers': 1.0, 'many': 1.0, 'baby': 1.0, 'seats': 1.0, 'and': 2.0, 'so': 1.0, 'can': 1.0, 'back': 1.0, 'most': 2.0, 'child': 2.0, 'products': 1.0, 'for': 2.0, 'such': 1.0, 'this': 2.0, 'pain': 1.0}
Word element => {'be': 1.0, 'heaven': 1.0, 'old': 1.0, 'in': 1.0, 'are': 1.0, 'man': 1.0, 'points': 1.0, 'price': 1.0, 'attachment': 1.0, 'fall': 1.0, 'more': 1.0, 'around': 1.0, 'five': 1.0, 'drum': 1.0, 'them': 1.0, 'might': 1.0, 'a': 3.0, 'bit': 1.0, 'seemed': 1.0, 'feel': 1.0, 'bumpers': 1.0, 'haulling': 1.0, 'minimal': 1.0, 'remove': 1.0, 'it': 8.0, 'is': 2.0, 'configuration': 1.0, 'than': 1.0, 'income': 1.0, 'versus': 1.0, 'bicycling': 1.0, 'wheel': 1.0, 'functionality': 1.0, 'very': 1.0, 'removal': 1.0, 'star': 1.0, 'easier': 1.0, 'deal': 1.0, 'for': 6.0, 'practical': 1.0, 'took': 1.0, 'i': 5.0, 'as': 1.0, 'to': 4.0, 'brake': 1.0, 'not': 1.0, 'give': 1.0, 'stroller': 1.0, 'item': 1.0, 'will': 2.0, 'folding': 1.0, 'plan': 1.0, 'side': 1.0, 'good': 1.0, 'off': 2.0, 'they': 1.0, 'makes': 1.0, 'tested': 1.0, 'was': 3.0, 'this': 2.0, 'with': 1.0, 'yellow': 1.0, 'spd': 1.0, 'front': 1.0, 'use': 1.0, 'secureness': 1.0, 'testy': 1.0, 'much': 1.0, 'put': 1.0, 'on': 1.0, 'together': 1.0, 'but': 1.0, 'so': 2.0, 'can': 1.0, 'like': 1.0, 'back': 1.0, 'washer': 1.0, 'and': 3.0, 'rating': 1.0, 'model': 1.0, 'cheaper': 1.0, '7': 1.0, 'up': 1.0, 'visibility': 1.0, 'looks': 1.0, 'me': 1.0, 'my': 2.0, 'better': 2.0, 'out': 1.0, 'the': 9.0, 'of': 1.0, 'iped': 1.0, 'bike': 1.0, 'harly': 1.0, 'difference': 1.0, 'towing': 1.0, 'pressure': 1.0, 'before': 1.0, 'electric': 1.0, 'husky': 1.0, 'little': 1.0, 'neighborhood': 1.0}
Word element => {'break': 1.0, 'could': 1.0, 's': 1.0, 'used': 1.0, 'expensive': 1.0, 'beside': 1.0, 'i': 1.0, 'bike': 1.0, 'it': 3.0, 'love': 1.0, 'be': 1.0, 'especialy': 1.0, 'soon': 1.0, 'my': 2.0, 'less': 1.0, 'the': 2.0, 'a': 1.0, 'little': 1.0, 'because': 1.0, 'bit': 1.0, 'quality': 1.0, 'quite': 1.0, 'is': 1.0, 'regular': 1.0}
Word element => {'her': 1.0, 'with': 1.0, 'out': 1.0, 'use': 1.0, 'of': 2.0, 'a': 1.0, 'lot': 1.0, 'get': 1.0, 'my': 1.0, 'bought': 1.0, 'christmas': 1.0, 'children': 1.0, 'for': 2.0, 'daughter': 1.0, 'in': 1.0, 'law': 1.0, 'i': 1.0, 'm': 1.0, 'it': 1.0, 'sure': 1.0, 'will': 1.0, 'she': 1.0}
Word element => {'she': 1.0, 'ride': 1.0, 'it': 1.0, 'in': 1.0, 'daughter': 1.0, 'year': 1.0, 'easy': 1.0, 'grand': 1.0, 'put': 1.0, 'together': 1.0, 'loves': 1.0, 'along': 1.0, 'and': 1.0, 'the': 1.0, 'my': 1.0, 'rolls': 1.0, 'old': 1.0, 'to': 1.0, 'right': 1.0, '2': 1.0, 'with': 1.0, '1': 2.0}
Word element => {'s': 1.0, 'otherwise': 1.0, 'bent': 1.0, 'or': 1.0, 'would': 1.0, 'thing': 1.0, 'i': 1.0, 'when': 1.0, 'shipping': 1.0, 'fast': 1.0, 'trailer': 1.0, 'is': 1.0, 'change': 1.0, 'it': 1.0, 'only': 1.0, 'to': 1.0, 'product': 1.0, 'be': 1.0, 'great': 2.0, 'the': 2.0, 'more': 1.0, 'bar': 1.0, 'a': 1.0, 'converts': 1.0, 'jogging': 1.0, 'lowered': 1.0, 'stroller': 1.0, 'that': 1.0, 'handle': 1.0}
Word element => {'shopper': 1.0, 'very': 1.0, 'business': 1.0, 'here': 1.0, 'be': 1.0, 'guess': 1.0, 'i': 9.0, 'momma': 1.0, 'up': 1.0, 'materials': 1.0, 'have': 3.0, 'in': 1.0, 'seat': 2.0, 'and': 5.0, 'he': 1.0, 'flag': 1.0, 'one': 1.0, 'happy': 2.0, 'actual': 1.0, 'try': 1.0, 'iron': 1.0, 'plastic': 1.0, 'helmets': 1.0, 'loved': 1.0, 'this': 5.0, 'no': 1.0, 'am': 1.0, 'the': 3.0, 'careful': 1.0, 'days': 1.0, 'without': 1.0, 'tools': 1.0, 'old': 3.0, 'flimsy': 1.0, 'your': 1.0, 'put': 1.0, 'make': 2.0, '3': 3.0, 'until': 1.0, 'nice': 1.0, '1': 2.0, 'bike': 2.0, 'year': 2.0, 'together': 1.0, 'not': 2.0, 'attach': 1.0, 'oh': 1.0, 'extra': 1.0, 'day': 1.0, 'needed': 1.0, 'wants': 1.0, 'kids': 2.0, 'shipping': 2.0, 'still': 1.0, 'to': 7.0, 'high': 1.0, 'will': 1.0, 'all': 1.0, 'an': 2.0, 'rolled': 1.0, 'but': 2.0, '2': 3.0, 'quality': 1.0, 'dimensions': 1.0, 'so': 2.0, 'tall': 1.0, 'time': 1.0, 'a': 3.0, 'is': 4.0, 'padding': 1.0, 'critics': 1.0, 'sling': 1.0, 'available': 1.0, '18': 1.0, 'they': 1.0, 'both': 1.0, 'helmet': 1.0, 'fit': 1.0, 'for': 2.0, 'fine': 2.0, 'easy': 1.0, 'bit': 1.0, 'however': 1.0, 'my': 2.0, 'it': 5.0, 'wear': 1.0, 'inside': 1.0, 'has': 1.0, 'slouch': 1.0, 'safety': 1.0, 'got': 2.0, 'are': 1.0, 'first': 1.0, 'had': 1.0, 'ordered': 1.0, 'expedited': 1.0, 'some': 1.0, 'you': 1.0, 'things': 1.0, 'super': 2.0, 'month': 1.0, 'same': 1.0, 'bought': 1.0, 'was': 1.0}
Word element => {'bios': 1.0, 'no': 1.0, 'immensely': 1.0, 'raids': 1.0, 'wow': 1.0, 'remian': 1.0, 'teens': 1.0, 'for': 1.0, 'in': 2.0, 'larger': 1.0, 'adults': 1.0, 'more': 1.0, 'the': 1.0, 'my': 1.0, 'ability': 1.0, 'please': 1.0, 'make': 1.0, 'through': 1.0, 'you': 1.0, 'size': 1.0, 'can': 1.0, 'this': 2.0, 'with': 1.0, 'a': 2.0, 'capability': 1.0, 'of': 1.0, 'holding': 1.0, 'to': 1.0, 'laptop': 1.0, 'would': 1.0, 'improve': 1.0}
Word element => {'product': 1.0, 'thought': 1.0, 'i': 1.0, 'adjectives': 1.0, 'lazy': 1.0, 'horrible': 1.0, 'rediculious': 1.0, 'few': 1.0, 'silly': 1.0, 'important': 1.0, 'lessons': 1.0, 'other': 1.0, 'any': 1.0, 'or': 1.0, 'read': 1.0, 'ways': 1.0, 'on': 1.0, 'is': 1.0, 'ice': 1.0, 'describe': 1.0, 'of': 2.0, 'let': 1.0, 'with': 1.0, 'this': 2.0, 'life': 1.0, 'teach': 1.0, 'not': 1.0, 'just': 2.0, 'interact': 1.0, 'game': 1.0, 'berg': 1.0, 'your': 2.0, 'sad': 1.0, 'child': 2.0, 'a': 2.0, 'to': 3.0, 'machine': 1.0, 'the': 2.0, 'pee': 1.0, 'tip': 1.0, 'talk': 1.0}
Word element => {'thanks': 1.0, 'kid': 1.0, 'popular': 1.0, 'most': 1.0, 'be': 1.0, 'll': 1.0, 'jeans': 1.0, 'acid': 1.0, 'and': 1.0, 'glasses': 1.0, 'fake': 1.0, 'rimmed': 1.0, 'thick': 1.0, 'going': 1.0, 'is': 1.0, 'really': 2.0, 'she': 3.0, 'posture': 1.0, 'my': 2.0, 'the': 2.0, 'improved': 1.0, 'kindergarten': 1.0, 'fit': 1.0, 's': 2.0, 'eyes': 1.0, 'hipster': 1.0, 'child': 1.0, 'crowd': 1.0, 'found': 1.0, 'old': 1.0, 'i': 1.0, 'wash': 1.0, 'needs': 1.0, 'in': 2.0, 'to': 1.0, 'sulky': 1.0, 'downcast': 1.0, 'it': 1.0, 'hunched': 1.0, 'back': 1.0, 'ipotty': 1.0, 'all': 1.0}
Word element => {'ipotty': 1.0, 'parent': 1.0, 'even': 1.0, 'one': 1.0, 'for': 1.0, 'alone': 1.0, 'sit': 1.0, 'along': 1.0, 'gem': 1.0, 'little': 1.0, 'this': 1.0, 'until': 1.0, 'my': 2.0, 'of': 1.0, 'end': 1.0, 'was': 1.0, 'in': 1.0, 'strap': 1.0, 'at': 1.0, 'who': 1.0, 'mean': 1.0, 'bust': 1.0, 'came': 1.0, 'services': 1.0, 'right': 1.0, 'toilet': 2.0, 'to': 5.0, 'damn': 1.0, 'toddler': 1.0, 'rope': 1.0, 'will': 2.0, 'can': 1.0, 'work': 1.0, 'but': 1.0, 'i': 5.0, 'potty': 1.0, 'or': 1.0, 'thanks': 1.0, 'you': 5.0, 'protective': 1.0, 'thing': 1.0, 'no': 1.0, 'tie': 1.0, 'park': 1.0, 'says': 1.0, 'just': 1.0, 'amazing': 1.0, 'lock': 1.0, 'kid': 1.0, 'tape': 1.0, 'things': 1.0, 'how': 1.0, 'don': 1.0, 'up': 1.0, 'child': 3.0, 'if': 2.0, 'hours': 1.0, 'compel': 1.0, 'better': 1.0, 'on': 1.0, 'bummer': 1.0, 'your': 1.0, 'hell': 1.0, 'wants': 1.0, 'help': 1.0, 't': 1.0, 's': 2.0, 'a': 2.0, 'far': 1.0, 'through': 1.0, 'like': 2.0, 'know': 2.0, 'using': 1.0, 'it': 2.0, 'the': 7.0, 'kiddo': 1.0, 'and': 2.0, 'have': 1.0, 'leave': 1.0, 'those': 1.0, 'now': 1.0, 'bureaucrats': 1.0}
Word element => {'underwear': 1.0, 'all': 1.0, 'throwing': 1.0, 'just': 1.0, 'wife': 1.0, 'my': 2.0, 'next': 1.0, 'the': 1.0, 'out': 1.0, 'cleaning': 1.0, 'jets': 1.0, 'install': 1.0, 'please': 1.0, 'dispenser': 1.0, 'paper': 1.0, 'toilet': 1.0, 'some': 1.0, 'no': 1.0, 'bum': 1.0, 'quite': 1.0, 'impressed': 1.0, 'and': 1.0, 'model': 1.0, 'for': 1.0, 'myself': 1.0, 'there': 1.0, 'originally': 1.0, 'reduced': 1.0, 'now': 1.0, 'was': 1.0, 'to': 2.0, 'as': 1.0, 'decided': 1.0, 'buy': 1.0, 'i': 2.0, 'on': 1.0, '4': 1.0, 'when': 1.0, 'gave': 1.0, 'this': 1.0, 'it': 2.0, '5': 1.0, 'stars': 2.0, 'but': 1.0, 'realized': 1.0, 'is': 2.0}
Word element => {'time': 1.0, 'against': 1.0, 'victorious': 1.0, 'reign': 1.0, 'step': 1.0, 'people': 1.0, 'propose': 1.0, 'for': 1.0, 'it': 1.0, 'taco': 1.0, 'their': 1.0, 'holding': 1.0, 'hour': 1.0, 'an': 1.0, 'half': 2.0, 'due': 1.0, 'nearly': 1.0, 'regretted': 1.0, 'budget': 1.0, 'toddler': 1.0, 'same': 1.0, 'if': 1.0, 'see': 1.0, 'thing': 1.0, 'therefore': 1.0, 'on': 1.0, 'bell': 1.0, 'defecating': 1.0, 'birds': 1.0, 'angry': 1.0, 'adult': 1.0, 'sure': 1.0, 'demand': 1.0, 'work': 1.0, 'food': 1.0, 'can': 1.0, 'bestowed': 1.0, 'hassle': 1.0, 'hasn': 1.0, 'in': 3.0, 'cry': 2.0, 'unsettling': 1.0, 'proposal': 1.0, 'playing': 1.0, 'the': 8.0, 'this': 2.0, 'laugh': 2.0, 'business': 2.0, 'fight': 1.0, 'with': 2.0, 'am': 1.0, 'me': 1.0, 'not': 1.0, 'been': 1.0, 'that': 3.0, 'upon': 1.0, 'comments': 1.0, 'whether': 1.0, 'actual': 1.0, 'to': 3.0, 'procrastinated': 1.0, 'now': 1.0, 'impossible': 1.0, 'bustle': 1.0, 'us': 1.0, 'lunch': 1.0, 'adulthood': 1.0, 'let': 2.0, 'or': 2.0, 'while': 2.0, 'from': 1.0, 'aside': 1.0, 'sized': 1.0, 'write': 1.0, 'multitasking': 1.0, 'ipotties': 1.0, 'have': 2.0, 'only': 1.0, 'much': 2.0, 'do': 2.0, 'too': 1.0, 'and': 3.0, 'adults': 3.0, 'basement': 1.0, 'imagine': 1.0, 'earlier': 1.0, 'of': 2.0, 'i': 3.0, 'becomes': 1.0, 's': 3.0, 't': 1.0, 'a': 3.0, 'hustle': 1.0, 'who': 1.0, 'at': 1.0, 'toddlers': 2.0, 'is': 2.0}
Word element => {'solution': 1.0, 'ipads': 1.0, 'the': 1.0, 'take': 1.0, 'came': 1.0, 'still': 1.0, 'with': 2.0, 'truly': 1.0, 'it': 1.0, 'only': 1.0, 'is': 1.0, 'thing': 1.0, 'have': 1.0, 'us': 1.0, '2': 1.0, 'can': 1.0, 'size': 1.0, 'just': 1.0, 'grave': 1.0, 'stand': 1.0, 'pedestal': 1.0, 'larger': 1.0, '3': 1.0, 'wish': 1.0, 'in': 1.0, 'we': 3.0, 'a': 3.0, 'thanks': 1.0, 'our': 1.0, 'grow': 1.0, 'as': 1.0, 'to': 2.0, 'thecta': 1.0, 'good': 1.0, 'cradle': 1.0, 'digital': 1.0, 'for': 2.0, 'coffin': 1.0, 'ipad': 2.0, 'i': 1.0, '4': 1.0, 'holder': 1.0, 'would': 1.0, 'if': 1.0, 'roll': 1.0, 'somebody': 1.0, 'made': 1.0, 'an': 1.0, 'mount': 1.0}
Word element => {'this': 1.0, 'for': 1.0, 'thank': 1.0, 'nap': 1.0, 'power': 1.0, 'access': 1.0, 'have': 1.0, 'thing': 1.0, 'will': 1.0, 'day': 1.0, 'still': 1.0, 'all': 1.0, 'to': 2.0, 'now': 1.0, 'i': 2.0, 'know': 1.0, 'management': 1.0, 'old': 1.0, 'meetings': 1.0, 'throughout': 1.0, 'he': 2.0, 'skype': 1.0, 'my': 1.0, 'business': 1.0, 'first': 1.0, 'too': 1.0, 'and': 2.0, 'the': 1.0, 'reach': 1.0, 'in': 1.0, 'is': 1.0, 'endless': 1.0, 'those': 1.0, 'you': 1.0, 'when': 1.0, 'data': 1.0, 'teachers': 1.0, 'that': 1.0, 'report': 1.0, 'year': 1.0, 'his': 2.0, 'kindergarten': 1.0, 'on': 2.0, 'make': 1.0, '1': 1.0, 'desk': 1.0, 'got': 1.0, 'monday': 1.0, 'able': 1.0, 'morning': 1.0, 'can': 1.0, 'be': 1.0, 'him': 1.0, 'programs': 1.0, 'sure': 1.0}
Word element => {'this': 1.0, 'will': 1.0, 'it': 1.0, 'cannons': 1.0, 'photon': 1.0, 'and': 1.0, 'mount': 1.0, 'villain': 1.0, 'at': 1.0, 'of': 2.0, 'completely': 1.0, 'kid': 1.0, 'toilet': 1.0, 'super': 1.0, 'something': 1.0, 'birds': 2.0, 'warp': 1.0, 'after': 1.0, 'rewrote': 1.0, 'paper': 1.0, 'sticking': 1.0, 'void': 1.0, 'or': 1.0, 'angry': 2.0, 'into': 1.0, 'either': 1.0, 'rds': 1.0, 'instead': 1.0, 'warranty': 1.0, 'then': 1.0, 'engines': 1.0, 'with': 1.0, 'her': 1.0, 'accomplished': 1.0, 'wads': 1.0, 'on': 1.0, 'business': 1.0, 'my': 2.0, 'launching': 1.0, 'a': 2.0, 't': 1.0, 'potty': 2.0, 'genius': 1.0, 'poo': 1.0, 'to': 3.0, 'now': 1.0, 'get': 2.0, 'done': 1.0, 'laughing': 1.0, 'game': 1.0, 'you': 1.0, 'launch': 1.0, 'soaked': 1.0, 'daughter': 1.0, 'the': 3.0, 'flush': 1.0, 'success': 1.0, 'decided': 1.0}
Word element => {'intent': 1.0, 'take': 1.0, 'something': 1.0, 'understand': 1.0, 'stars': 1.0, 'three': 1.0, 'rating': 1.0, 'middle': 1.0, 'give': 1.0, 'bound': 1.0, 'item': 1.0, 'consider': 1.0, 'many': 1.0, 'certainly': 1.0, 'usage': 1.0, 'creative': 1.0, 'either': 1.0, 'ipads': 1.0, 'happen': 2.0, 'could': 2.0, 'anything': 3.0, 'suppose': 1.0, 'type': 1.0, 'accidents': 1.0, 'from': 2.0, 'safe': 1.0, 'screen': 1.0, 'keep': 1.0, 'small': 1.0, 'space': 1.0, 'storage': 1.0, 'nice': 1.0, 'made': 1.0, 'protect': 1.0, 'underneath': 1.0, 'no': 2.0, 'desire': 1.0, 'had': 1.0, 'since': 1.0, 'lower': 1.0, 'angles': 1.0, 'not': 1.0, 'different': 1.0, 'at': 1.0, 'twisted': 1.0, 'youngster': 1.0, 'possession': 1.0, 'usually': 1.0, 'endless': 1.0, 'only': 1.0, 'prized': 1.0, 'regardless': 1.0, 'have': 4.0, 'ridiculousness': 1.0, 'won': 1.0, 'while': 2.0, 'entertainment': 2.0, 'manufacturer': 1.0, 'novelty': 1.0, 'silly': 3.0, 'holder': 1.0, 'an': 2.0, 'relief': 1.0, 'seriously': 1.0, 'knowing': 1.0, 'learning': 1.0, 'some': 3.0, 'turned': 1.0, 'sits': 1.0, 'bringing': 1.0, 'look': 1.0, 'john': 1.0, 'chuckles': 1.0, 'for': 11.0, 'works': 1.0, 'without': 1.0, 'matter': 1.0, 'ipad': 11.0, 'down': 1.0, 'ipotty': 2.0, 'jane': 1.0, '1': 2.0, 'seat': 1.0, 'does': 2.0, 'games': 1.0, 'longer': 1.0, 'has': 3.0, 'them': 2.0, 'magazine': 1.0, 'm': 1.0, 's': 5.0, 'sense': 1.0, 'a': 18.0, 'cta': 1.0, 'bright': 1.0, 'after': 1.0, 'by': 2.0, 'home': 1.0, 'along': 1.0, 'rate': 1.0, 'fun': 4.0, 't': 1.0, 'rest': 1.0, 'difficult': 1.0, 'possible': 1.0, 'anxious': 1.0, 'thought': 1.0, 'serious': 1.0, 'items': 1.0, 'on': 2.0, 'playing': 1.0, 'extend': 1.0, 'much': 2.0, 'put': 1.0, 'happened': 1.0, 'release': 1.0, 'bring': 1.0, 'this': 9.0, 'actually': 1.0, 'throne': 2.0, 'trainer': 1.0, 'bathroom': 1.0, 'partaking': 1.0, 'exactly': 1.0, 'and': 20.0, 'commode': 1.0, 'double': 2.0, 'dad': 1.0, 'reading': 1.0, 'sounds': 1.0, 'like': 3.0, 'little': 4.0, 'mom': 1.0, 'children': 1.0, 'idea': 3.0, 'any': 1.0, 'the': 23.0, 'online': 1.0, 'places': 1.0, 'appreciate': 1.0, 'head': 1.0, 'than': 3.0, 'quick': 2.0, 'invention': 1.0, 'heard': 1.0, 'with': 4.0, 'occupy': 1.0, 'in': 7.0, 'potty': 6.0, 'entertained': 1.0, 'overall': 1.0, 'they': 9.0, 'created': 1.0, 'makes': 2.0, 'time': 1.0, 'did': 1.0, 'accomplish': 1.0, 'love': 2.0, 'that': 14.0, 'young': 1.0, 'going': 1.0, '2': 2.0, 'slowly': 1.0, 'is': 7.0, 'can': 6.0, 'so': 5.0, 'to': 17.0, 'high': 1.0, 'as': 3.0, 'because': 2.0, 'quiet': 1.0, 'place': 1.0, 'activity': 1.0, 'junior': 1.0, 'somewhere': 1.0, 'would': 3.0, 'convenience': 1.0, 'when': 3.0, 'someone': 1.0, 'fuss': 1.0, 'tool': 1.0, 'about': 2.0, 'touchscreen': 1.0, 'toilet': 2.0, 'holds': 1.0, 'training': 3.0, 'forward': 1.0, 'what': 1.0, 'fact': 2.0, 'whiz': 1.0, 'might': 2.0, 'or': 4.0, 'popular': 2.0, 'their': 3.0, 'fully': 1.0, 'it': 19.0, 'be': 6.0, 'own': 1.0, 'see': 1.0, 'plastic': 1.0, 'why': 1.0, 'find': 1.0, 'enjoy': 1.0, 'if': 1.0, 'simple': 1.0, 'i': 9.0, 'atop': 1.0, 'well': 2.0, 'product': 2.0, 'was': 7.0, 'joke': 1.0, 'but': 4.0, 'check': 1.0, 'out': 1.0, 'book': 1.0, 'perfectly': 1.0, 'there': 1.0, 'sporting': 1.0, 'legitimate': 1.0, 'past': 1.0, 'disbelief': 1.0, 'its': 1.0, 'urine': 1.0, 'device': 3.0, 'often': 1.0, 'get': 1.0, 'fecal': 1.0, 'even': 1.0, 'of': 6.0, 'prove': 1.0, 'snickers': 1.0, 'display': 1.0, 'cup': 2.0, 'pressure': 1.0, 'ready': 1.0, 'kids': 2.0, 'given': 1.0, 'arrived': 1.0, 'expected': 1.0, 'use': 4.0, 'seeing': 1.0, 'officially': 1.0, 'believing': 1.0, 'how': 4.0, 'girls': 1.0, 'elements': 1.0, 'work': 1.0, 'chair': 1.0, 'adults': 2.0, 'must': 1.0, 'confess': 1.0, 'my': 6.0, 'are': 2.0, 'stage': 1.0, 'will': 3.0, 'cover': 2.0, 'used': 2.0, 'waiting': 1.0, 'taking': 1.0, 'paper': 1.0, 'household': 1.0, 'meant': 1.0, 'educational': 1.0, 'practical': 2.0, 'more': 3.0, 'received': 1.0, 'all': 2.0, 'way': 3.0, 'ones': 1.0, 'produce': 1.0, 'reason': 2.0, 'enough': 1.0, 'liked': 1.0, 'accident': 1.0, 'part': 1.0}
Word element => {'whenever': 1.0, 'outlandish': 1.0, 'product': 1.0, 'an': 1.0, 'isn': 1.0, 'i': 3.0, 'think': 3.0, 'these': 1.0, 'excrement': 1.0, 'some': 1.0, 'of': 3.0, 'reviews': 1.0, 'are': 1.0, 'apple': 1.0, 'afterall': 1.0, 'bit': 1.0, 'a': 1.0, 'harsh': 1.0, 't': 1.0, 'this': 1.0}
Word element => {'side': 1.0, 'out': 1.0, 'it': 1.0, 'take': 1.0, 'boy': 1.0, 'hose': 1.0, 'so': 1.0, 'week': 1.0, 'once': 1.0, 'where': 1.0, 'right': 1.0, 'sitting': 1.0, 'can': 1.0, 'and': 2.0, 'are': 2.0, 'cat': 1.0, 'been': 1.0, 'stop': 1.0, 'working': 1.0, 'videos': 1.0, 'on': 1.0, 'is': 1.0, 'down': 1.0, 'longer': 1.0, 'such': 2.0, 'great': 1.0, 'idea': 1.0, 'there': 1.0, 'bathroom': 1.0, 'came': 2.0, 'latest': 1.0, 'something': 1.0, 'the': 2.0, 'playing': 1.0, 'birds': 1.0, 'this': 4.0, 'wish': 1.0, 'in': 2.0, 'bad': 1.0, 'sizes': 2.0, 'adult': 2.0, 'before': 1.0, 'calls': 1.0, 'if': 1.0, 'problem': 1.0, 'have': 1.0, 'small': 1.0, 'i': 1.0, 'watching': 1.0, 'from': 1.0, 'go': 1.0, 'we': 5.0, 'a': 3.0, 'going': 1.0, 'nature': 1.0, 'us': 1.0, 'all': 1.0, 'as': 1.0, 'to': 3.0, 'no': 1.0, 'has': 1.0, 'angry': 1.0, 'or': 2.0}
Word element => {'laughing': 1.0, 'while': 1.0, 'further': 1.0, 'these': 1.0, 'after': 1.0, 'reviews': 1.0, 'reading': 1.0, 'prevent': 1.0, 'the': 1.0, 'myself': 1.0, 'other': 1.0, 'had': 1.0, 'one': 1.0, 'i': 1.0, 'to': 2.0, '34': 2.0, 'buy': 1.0, 'accidents': 1.0, 'of': 1.0}
Word element => {'mishaps': 1.0, 'about': 1.0, 'worrying': 1.0, 'comfort': 1.0, 'greater': 1.0, 'favorite': 1.0, 'watch': 1.0, 'soaps': 1.0, 'meetings': 1.0, 'in': 2.0, 'now': 1.0, 'dropping': 1.0, 'phone': 1.0, 'attend': 1.0, 'tank': 1.0, 'probably': 1.0, 'style': 1.0, 'me': 1.0, 'and': 6.0, 'are': 2.0, 'again': 1.0, 'you': 2.0, 'board': 1.0, 'awkward': 1.0, 'tablet': 1.0, 'toilet': 1.0, 'tired': 1.0, 'if': 1.0, 'my': 1.0, 'skype': 1.0, 'contours': 1.0, 'or': 1.0, 'into': 1.0, 'webinars': 1.0, 'your': 1.0, 'costly': 1.0, 'i': 3.0, 'tried': 1.0, 'for': 1.0, 'of': 3.0, 'these': 1.0, 'great': 1.0, 'without': 1.0, 'the': 5.0, 'myself': 1.0, 'it': 1.0, 'with': 1.0, 'works': 1.0, 'both': 1.0, 'over': 2.0, 'have': 2.0, 'ipotty': 1.0, 'reverse': 1.0, 'a': 1.0, 'like': 1.0, 'using': 1.0, 'table': 1.0, 'can': 1.0, 'sitting': 1.0, 'but': 1.0, 'bought': 1.0, 'one': 1.0, 'uncomfortable': 1.0, 'found': 1.0, 'any': 1.0, 'as': 1.0, 'seat': 1.0}
Word element => {'out': 1.0, 'ahem': 1.0, 'have': 1.0, 'far': 1.0, 'thought': 1.0, 'but': 1.0, 'no': 1.0, 'cup': 1.0, 'seems': 1.0, 'understand': 1.0, 'one': 1.0, 'thus': 1.0, 'i': 3.0, 'how': 1.0, 'call': 1.0, 'spell': 1.0, 'don': 2.0, 'a': 1.0, 'shouldn': 1.0, 'this': 1.0, 'it': 3.0, 'icup': 1.0, 'literally': 1.0, 'to': 3.0, 'title': 1.0, 't': 3.0, 'the': 1.0, 'mean': 1.0}
Word element => {'me': 1.0, 'ing': 1.0, 's': 1.0, 'to': 1.0, 'be': 1.0, 'got': 1.0, 'have': 1.0, 'you': 1.0}
Word element => {'good': 1.0, 'you': 1.0, 'in': 1.0, 'bless': 1.0, 'i': 1.0, 'was': 2.0, 'humanity': 1.0, 'not': 1.0, 'product': 2.0, 'this': 2.0, 'disheartened': 1.0, 'have': 1.0, 'a': 1.0, 'realizing': 1.0, 'reviews': 1.0, 'joke': 1.0, 'upon': 1.0, 'the': 2.0, 'yet': 1.0, 'my': 1.0, 'by': 1.0, 'state': 1.0, 'of': 2.0, 'that': 1.0, 'our': 1.0, 'society': 1.0, 'restored': 1.0, 'reviewers': 1.0, 'faith': 1.0}
Word element => {'with': 1.0, 'ever': 2.0, 'again': 1.0, 'won': 1.0, 'strap': 1.0, 'interact': 1.0, 'buckle': 1.0, 'and': 1.0, 'tube': 1.0, 'i': 2.0, 'have': 1.0, 't': 2.0, 'can': 1.0, 'wait': 1.0, 'to': 3.0, 'see': 1.0, 'child': 1.0, 'feeding': 1.0, 'my': 1.0, 'the': 2.0, 'new': 1.0, 'model': 1.0, 'include': 1.0}
Word element => {'much': 1.0, 'so': 1.0, 'but': 1.0, 'shut': 1.0, 'worse': 1.0, 'i': 1.0, 'bad': 2.0, 'your': 1.0, 'up': 1.0, 'of': 2.0, 'kind': 1.0, 'to': 2.0, 'does': 1.0, 'tossing': 1.0, 'what': 1.0, 'totally': 1.0, 'is': 3.0, 'ridiculous': 1.0, 'parent': 1.0, 'this': 3.0, 'mean': 1.0, 'kid': 1.0, 'in': 1.0, 'the': 1.0, 'front': 1.0, 'tv': 1.0, 'just': 1.0, 'get': 1.0, 'them': 1.0}
Word element => {'sweet': 1.0, 'includes': 1.0, 'product': 1.0, 'to': 1.0, 'that': 1.0, 'upgrade': 1.0, 'this': 1.0, 'chat': 1.0, 'function': 1.0, 'hear': 1.0, 'facetime': 1.0, 'app': 1.0, 'seat': 1.0, 'flush': 1.0, 'i': 1.0, 'feature': 1.0, 'the': 1.0, 'controls': 1.0, 'a': 3.0, 'an': 1.0, 'video': 1.0, 'warmer': 1.0, 'and': 1.0, 'like': 1.0}
Word element => {'will': 1.0, 'see': 1.0, 'had': 2.0, 'i': 3.0, 'cover': 1.0, 'spout': 1.0, 'through': 1.0, 'ipad': 1.0, 'the': 5.0, 'grandson': 1.0, 'sterilize': 1.0, 'tray': 1.0, 'is': 1.0, 'and': 6.0, 'work': 1.0, 'with': 2.0, 'grandchild': 1.0, 'he': 1.0, 'it': 4.0, 'this': 1.0, 'make': 1.0, '3': 1.0, 'a': 3.0, 't': 1.0, 'pot': 1.0, 'snugly': 1.0, 'his': 1.0, 'clean': 1.0, 'save': 1.0, 'my': 1.0, 'fits': 1.0, 'often': 1.0, 'love': 1.0, 'for': 2.0, 'handle': 1.0, 'much': 1.0, 'up': 1.0, 'to': 1.0, 'all': 1.0, 'didn': 1.0, 'in': 1.0, 'not': 1.0, 'problem': 1.0, 'well': 1.0, 'has': 1.0, 'pour': 1.0, 'like': 1.0, 'smaller': 1.0, 'potty': 3.0, 'so': 1.0, 'next': 1.0, 'that': 1.0}
Word element => {'done': 1.0, 'youtube': 1.0, 'show': 1.0, 'i': 1.0, 'better': 2.0, 'out': 2.0, 'child': 1.0, 'vids': 1.0, 'err': 1.0, 'to': 2.0, 'wipe': 1.0, 'll': 1.0, 'the': 1.0, 'business': 1.0, 'fact': 1.0, 'my': 2.0, 'he': 1.0, 'how': 2.0, 'while': 1.0, 'log': 2.0, 'umm': 1.0, 'wiping': 1.0, 'even': 1.0, 'his': 2.0, 'kid': 1.0, 'can': 1.0, 'in': 1.0, 'one': 1.0, 'learning': 1.0, 'of': 1.0, 'rear': 1.0, 'looks': 1.0, 'rorschach': 1.0, 'this': 1.0, 'than': 1.0, 'love': 1.0, 'for': 1.0, 'actually': 1.0, 'works': 1.0, 'much': 1.0, 'backside': 1.0, 'after': 1.0, 'him': 1.0, 'which': 1.0, 'like': 1.0, 'that': 1.0, 'grotesque': 1.0, 's': 2.0, 'a': 1.0, 'test': 1.0}
Word element => {'computer': 1.0, 'screens': 1.0, 'workers': 1.0, 'co': 1.0, 'a': 1.0, 'steal': 1.0, 'chattering': 1.0, 'heading': 1.0, 'employees': 1.0, 'ipotty': 1.0, 'all': 1.0, 'for': 2.0, 'ipottys': 1.0, 'so': 1.0, 'via': 1.0, 'my': 1.0, 'company': 1.0, 'fu': 2.0, 'much': 1.0, 'email': 1.0, 'being': 1.0, 'break': 1.0, 'and': 4.0, 'tethered': 1.0, 'to': 3.0, 'now': 1.0, 'into': 1.0, 'job': 1.0, 'if': 1.0, 'smartphone': 1.0, 'nights': 1.0, 'these': 1.0, 'the': 2.0, 't': 1.0, 'bathroom': 1.0, 'of': 1.0, 'gone': 1.0, 'glaring': 1.0, 'weren': 1.0, 'enough': 1.0, 'bought': 1.0, 'us': 1.0, 'ruin': 1.0, 'from': 1.0, 'as': 1.0, 'weekends': 1.0, 's': 1.0}
Word element => {'consumer': 1.0, 'concerned': 1.0, 'minds': 1.0, 'and': 1.0, 'read': 1.0, 'at': 1.0, 'task': 1.0, 'while': 1.0, 'games': 1.0, 'educational': 1.0, 'with': 1.0, 'them': 1.0, 'presented': 1.0, 'being': 1.0, 'entertaining': 1.0, 'or': 2.0, 'accomplish': 1.0, 'the': 5.0, 'apps': 1.0, 'help': 1.0, 'distracting': 1.0, 'of': 2.0, 'always': 1.0, 'produtive': 1.0, 'article': 1.0, 'training': 1.0, 'toilet': 1.0, 'an': 1.0, 'but': 1.0, 'intentionally': 1.0, 'used': 1.0, 'multitask': 2.0, 'are': 1.0, 'take': 1.0, 'many': 1.0, 'attached': 1.0, 'ipad': 1.0, 'open': 1.0, 'please': 2.0, 'should': 2.0, 'not': 4.0, 'research': 1.0, 'children': 2.0, 'it': 1.0, 'overexposed': 1.0, 'is': 5.0, 'shouldn': 1.0, 're': 1.0, 'parent': 1.0, 'as': 1.0, 'to': 8.0, 'use': 2.0, 'what': 1.0, 'purchased': 1.0, 'thanks': 1.0, 'when': 1.0, 'great': 1.0, 'a': 4.0, 's': 1.0, 't': 1.0, 'adults': 1.0, 'chid': 1.0, 'thing': 1.0, 'us': 1.0, 'able': 1.0, 'hand': 1.0, 'technology': 2.0, 'which': 1.0, 'good': 1.0, 'learning': 1.0, 'products': 1.0, 'that': 2.0, 'encourage': 1.0, 'moment': 1.0, 'quickly': 1.0, 'trying': 1.0, 'be': 2.0, 'potty': 1.0, 'so': 1.0, 'focus': 1.0, 'your': 1.0, 'on': 1.0, 'productive': 1.0, 'counter': 1.0, 'they': 1.0}
Word element => {'phew': 1.0, 'pee': 1.0, 'they': 1.0, 'face': 1.0, 'olds': 1.0, '2': 1.0, 'utter': 1.0, 'year': 1.0, 'thank': 1.0, 'monotony': 1.0, 'god': 1.0, 'seconds': 1.0, 'the': 1.0, 'a': 1.0, '30': 1.0, 'while': 1.0, 'solution': 1.0, 'oh': 1.0, 'to': 1.0, 'of': 1.0}
Word element => {'addiction': 1.0, 'horrors': 1.0, 'from': 1.0, 'll': 1.0, 'thankfully': 1.0, 'amazing': 1.0, 'existence': 1.0, 'seems': 1.0, 'schedule': 1.0, 'private': 1.0, 'his': 3.0, 'off': 1.0, 'run': 1.0, 'so': 2.0, 'just': 1.0, 'meal': 1.0, 'finishes': 1.0, 'laxatives': 1.0, 'accompanies': 1.0, 'raising': 1.0, 'and': 4.0, 'trepidation': 1.0, 'me': 1.0, 'did': 1.0, 'stress': 1.0, 'no': 1.0, 'invention': 1.0, 'with': 1.0, 'it': 2.0, 'pack': 3.0, 'only': 1.0, 'he': 6.0, 'can': 2.0, 'place': 1.0, 'the': 6.0, 'child': 1.0, 'legalisation': 1.0, 'was': 1.0, 'to': 4.0, 'now': 2.0, 'minute': 1.0, 'this': 2.0, 'recent': 1.0, 'i': 2.0, 'of': 2.0, 'daddy': 1.0, 'be': 1.0, 'headlines': 1.0, 'very': 1.0, 'little': 1.0, 'that': 3.0, 'marijuana': 1.0, 'been': 1.0, 'small': 1.0, 'relief': 1.0, 'when': 1.0, 'my': 1.0, 'fact': 1.0, 'predictable': 1.0, 'in': 2.0, 'said': 1.0, 'around': 1.0, 'plan': 1.0, 'fear': 1.0, 'is': 2.0, 'spared': 1.0, 'want': 1.0, 'bowl': 2.0, 'a': 3.0, 't': 1.0, 's': 1.0, 'turned': 1.0, 'lad': 1.0, 'taking': 1.0}
Word element => {'re': 1.0, 'extraordinary': 1.0, 'making': 1.0, 'coach': 1.0, 'nanny': 1.0, 'find': 1.0, 'get': 1.0, 'hurry': 1.0, 'toilet': 1.0, 'own': 1.0, 'never': 1.0, 'item': 1.0, 'surely': 1.0, 'would': 1.0, 'why': 1.0, 'tycoon': 1.0, 'minus': 1.0, 'getting': 1.0, 'urine': 1.0, 'fecal': 1.0, 'count': 1.0, 'be': 1.0, 'way': 1.0, 'no': 1.0, 'behind': 1.0, 'disdain': 1.0, 'driving': 1.0, 'use': 1.0, 'every': 2.0, 'little': 1.0, 'crush': 1.0, 'candy': 1.0, 'the': 3.0, 'without': 1.0, 'i': 2.0, 'expecting': 1.0, 'doesn': 1.0, 'train': 1.0, 'training': 1.0, 'baby': 1.0, 'them': 2.0, 'dependent': 1.0, 'play': 1.0, 'and': 4.0, 'yourself': 1.0, 'wheel': 1.0, 'risk': 1.0, 'do': 1.0, 'willing': 1.0, 'device': 2.0, 'know': 1.0, 'darling': 1.0, 'how': 2.0, 'matter': 1.0, 'while': 3.0, 'could': 1.0, 's': 1.0, 't': 2.0, 'a': 3.0, 'my': 1.0, '8': 1.0, 'this': 3.0, 'kids': 1.0, 'smart': 1.0, 'electronics': 1.0, 'of': 2.0, 'there': 1.0, 'deserve': 1.0, 'course': 1.0, 'else': 1.0, 'potty': 1.0, 'so': 1.0, 'unless': 1.0, 'you': 6.0, 'raise': 1.0, 'expect': 1.0, 'to': 5.0, 'grow': 1.0, 'your': 4.0, 'on': 3.0, 'into': 1.0, 'that': 1.0, 'successful': 1.0, 'saga': 1.0, 'loss': 1.0, 'they': 1.0, 'managed': 1.0, 'are': 1.0, 'before': 1.0, 'innocent': 1.0, 'don': 1.0, 'up': 1.0, 'lives': 1.0}
Word element => {'going': 1.0, 'while': 1.0, 'ipad': 1.0, 'the': 1.0, 'teach': 1.0, 'b': 1.0, 'trained': 1.0, 'just': 1.0, 'electronics': 1.0, 'help': 1.0, 'this': 1.0, 'using': 1.0, 'for': 1.0, 'hooked': 1.0, 'i': 1.0, 'potty': 2.0, 'was': 1.0, 'to': 1.0, 'sanitary': 1.0, 'looking': 1.0, 'child': 2.0, 'before': 1.0, 'what': 1.0, 'that': 2.0, 'a': 1.0, 'will': 1.0, 'ensure': 1.0, 'my': 2.0, 'is': 2.0, 'on': 1.0, 'perfectly': 1.0, 'and': 1.0, 'me': 1.0, 'getting': 1.0}
Word element => {'ridiculous': 1.0, 'plain': 1.0, 'nonsense': 1.0, 'american': 1.0, 'another': 1.0, 'just': 1.0}
Word element => {'cta': 1.0, 'returning': 1.0, 'definitely': 1.0, 'thanks': 1.0, 'am': 1.0, 'most': 1.0, 'but': 1.0, 'cover': 1.0, 'does': 1.0, 'insurance': 1.0, 'magnet': 1.0, 'to': 1.0, 'alot': 1.0, 'late': 1.0, 'it': 1.0, 'ipad': 2.0, 'not': 1.0, 'me': 1.0, 'floor': 1.0, 'everything': 1.0, 'distracted': 1.0, 'fit': 1.0, 'media': 1.0, 'pottying': 1.0, 'technological': 1.0, 'until': 1.0, 'toddler': 2.0, 'pee': 1.0, 'the': 5.0, 'ipads': 1.0, 'my': 5.0, 'trainer': 1.0, 'joys': 1.0, 'wonderfully': 2.0, 'bought': 1.0, 'old': 1.0, 'so': 1.0, 'walls': 1.0, 'potty': 1.0, 'just': 1.0, 'by': 2.0, 'every': 1.0, 'this': 2.0, 'with': 1.0, 'teaching': 1.0, 'fully': 1.0, 'while': 1.0, 'intention': 1.0, 'of': 3.0, 'unfortunately': 1.0, 'was': 2.0, 'excitement': 1.0, 'in': 1.0, 'screen': 1.0, 'going': 1.0, 'a': 1.0, 'too': 1.0, 'and': 3.0, 'hand': 1.0, 'return': 1.0, 'waving': 1.0, 'urination': 1.0, 'over': 1.0, 'on': 1.0, 'graphics': 1.0, 'hd': 1.0, 'i': 2.0, 'two': 1.0, 'detailed': 1.0, 'year': 1.0, 'sprayed': 1.0}
Word element => {'equipped': 1.0, 'better': 1.0, 'be': 1.0, 'model': 1.0, 'accommodate': 1.0, 'future': 1.0, 'since': 1.0, 'use': 1.0, 'need': 1.0, 'will': 2.0, 'however': 1.0, 'if': 1.0, 'selfie': 1.0, 'even': 1.0, 'bears': 2.0, 'toddler': 2.0, 'training': 1.0, 'in': 2.0, 'child': 1.0, 'sound': 1.0, 'doing': 1.0, 'this': 2.0, 'it': 1.0, 'dare': 1.0, 'suggest': 1.0, 'for': 2.0, 'with': 1.0, 'buying': 1.0, 'mommies': 1.0, 'to': 3.0, 'dramatic': 1.0, 'maybe': 1.0, 'does': 1.0, 'find': 1.0, 'hands': 1.0, 'the': 6.0, 'great': 1.0, 'haribo': 1.0, 'is': 2.0, 'instagram': 1.0, 'that': 1.0, 'experience': 1.0, 'i': 2.0, 'sugarless': 1.0, 'potty': 3.0, 'toileting': 1.0, 'sit': 1.0, 'thrilling': 1.0, 'conjunction': 1.0, 'before': 1.0, 'surround': 1.0, 'could': 1.0, 'a': 3.0, 's': 1.0, 'you': 5.0, 'angle': 1.0, 'well': 1.0, 'recommended': 1.0, 'your': 4.0, 'on': 2.0, 'offering': 1.0, 'how': 1.0, 'addition': 1.0, 'bound': 1.0, 'gummy': 2.0, 'ipotty': 2.0, 're': 1.0, 'snap': 2.0, 'few': 1.0, 'not': 1.0, 'photos': 1.0, 'show': 1.0, 'other': 1.0}
Word element => {'offering': 1.0, 'creating': 1.0, 'thank': 1.0, 'hikes': 1.0, 'footage': 1.0, 'missing': 1.0, 'incentive': 1.0, 'built': 1.0, 'find': 1.0, 'delivers': 1.0, 'grown': 1.0, 'happier': 1.0, 'reason': 1.0, 'absolutely': 1.0, 'stress': 1.0, 'likely': 1.0, 'realize': 1.0, 'becoming': 1.0, 'stop': 1.0, 'slowly': 1.0, 'taking': 1.0, 'sooner': 1.0, 'recognize': 1.0, 'less': 3.0, 'been': 1.0, 'persuading': 1.0, 'pleading': 1.0, 'agrees': 1.0, 'difficult': 2.0, 'lot': 1.0, 'battery': 1.0, 'lost': 1.0, 'review': 1.0, 'convinced': 1.0, 'without': 1.0, 'gets': 2.0, 'stickers': 1.0, 'mean': 1.0, 'thanks': 1.0, 'amazing': 1.0, 'business': 3.0, 'needing': 1.0, 'till': 1.0, 'lid': 1.0, 'activity': 2.0, 'confusing': 1.0, 'easy': 1.0, 'seriously': 1.0, 'minute': 1.0, 'reassemble': 1.0, 'probably': 1.0, 'required': 1.0, 'possibly': 1.0, 'where': 1.0, 'mention': 2.0, 'almost': 1.0, 'such': 1.0, 'yeah': 1.0, 'sure': 1.0, 'couldn': 2.0, 'often': 1.0, 'haven': 1.0, 'kept': 1.0, 'actual': 1.0, 'assembled': 1.0, 'house': 1.0, 'slide': 1.0, 'already': 2.0, 'running': 1.0, 're': 1.0, 'issue': 1.0, 'free': 1.0, 'suppose': 1.0, 'ankles': 3.0, 'note': 1.0, 'loose': 1.0, 'arguing': 1.0, 'complaints': 1.0, 'fit': 1.0, 'assembly': 1.0, 'good': 1.0, 'directly': 1.0, 'also': 2.0, 'made': 3.0, 'protected': 1.0, 'still': 4.0, 'wraps': 1.0, 'solved': 1.0, 'undone': 1.0, 'snaps': 2.0, 'left': 1.0, 'smarty': 1.0, 'might': 1.0, 'hands': 1.0, 'trips': 1.0, 'weak': 1.0, 'home': 3.0, 'activate': 1.0, 'protective': 3.0, 'plastic': 2.0, 'push': 2.0, 'troubles': 1.0, 'screen': 1.0, 'touch': 1.0, 'unsnapped': 1.0, 'navigate': 1.0, 'finding': 1.0, 'cake': 2.0, 'piece': 2.0, 'green': 1.0, 'pin': 2.0, 'easily': 1.0, 'pop': 1.0, 'happened': 1.0, 'yet': 2.0, 'accessible': 1.0, 'told': 2.0, 'door': 1.0, 'out': 11.0, 'from': 3.0, 'suggesting': 1.0, 'who': 1.0, 'tell': 1.0, 'asked': 1.0, '1': 2.0, 'would': 9.0, 'since': 1.0, 'negative': 1.0, 'straddle': 1.0, 'everything': 1.0, 'long': 1.0, 'tray': 1.0, 'reward': 4.0, 'girls': 1.0, 'miserable': 2.0, 'pops': 1.0, 'aren': 1.0, 'wear': 1.0, 'fairly': 1.0, 'bribe': 2.0, 'oldest': 1.0, 'buy': 1.0, 'sanitary': 1.0, 'respond': 1.0, 'promises': 1.0, 'tried': 2.0, 'those': 1.0, 'and': 65.0, 'work': 1.0, 'speaking': 2.0, 'both': 2.0, 'son': 5.0, 'making': 1.0, 'seep': 1.0, 'again': 3.0, 'which': 2.0, 'aside': 1.0, 'second': 1.0, 'use': 5.0, 'see': 2.0, 'mom': 1.0, 'therapist': 1.0, 'little': 13.0, 'sticker': 1.0, 'done': 3.0, 'practical': 1.0, 'simply': 1.0, 'quickly': 2.0, 'day': 1.0, 'as': 8.0, 'detail': 1.0, 'bingo': 1.0, 'wait': 1.0, 'everyone': 1.0, 'am': 1.0, 'while': 2.0, 'makes': 2.0, 'we': 10.0, 'middle': 2.0, 'over': 1.0, 'then': 3.0, 'legs': 4.0, 'sat': 1.0, 'only': 2.0, 'purchase': 1.0, 'edge': 1.0, 'has': 6.0, 'deciding': 1.0, 'biggest': 1.0, 'goes': 1.0, 'course': 2.0, 'mommy': 3.0, 'if': 6.0, 'every': 5.0, 'play': 2.0, 'go': 5.0, 'e': 2.0, 'box': 1.0, 'high': 2.0, 'different': 2.0, 'not': 10.0, 'forcing': 2.0, 'train': 2.0, 'sixth': 1.0, 'avoid': 1.0, 'pushy': 1.0, 'wasn': 1.0, 'like': 5.0, 'two': 2.0, 'never': 1.0, 'won': 2.0, 'sitting': 1.0, 'or': 7.0, 'angle': 1.0, 'really': 2.0, 'things': 2.0, 'you': 14.0, 'rarely': 1.0, 'diapers': 1.0, 'very': 1.0, 'but': 10.0, 'are': 2.0, 'my': 19.0, 'serves': 1.0, 'coming': 1.0, 'learned': 1.0, 'room': 1.0, 'first': 3.0, 'n': 2.0, 'boys': 4.0, 'minutes': 2.0, 'time': 6.0, 'hide': 1.0, 'any': 2.0, 'actually': 2.0, 'before': 1.0, 'no': 15.0, 'they': 4.0, 'our': 2.0, 'period': 1.0, 'decided': 1.0, 'guilty': 1.0, 'used': 6.0, 'square': 1.0, 'own': 1.0, 'it': 31.0, 'be': 11.0, 'interest': 1.0, 'across': 1.0, 'offered': 3.0, 'above': 1.0, 'travel': 1.0, 'a': 37.0, 'leaning': 2.0, 'him': 14.0, 'this': 18.0, 'cta': 1.0, 'whenever': 1.0, 'zero': 3.0, 'crotch': 1.0, 'with': 21.0, 'way': 5.0, 'beginning': 1.0, 'yr': 1.0, 'playing': 3.0, 'button': 4.0, 'year': 2.0, 'product': 1.0, 'child': 5.0, 'lift': 1.0, 'electronic': 1.0, 'said': 1.0, 'for': 25.0, 'deliberately': 1.0, 'guess': 1.0, 'side': 3.0, 'fact': 2.0, 'what': 10.0, 'front': 3.0, 'experiences': 1.0, 'hasn': 1.0, 'moving': 1.0, 'into': 4.0, 's': 25.0, 'm': 1.0, 'doesn': 5.0, 'ago': 1.0, 'whom': 1.0, 't': 24.0, 'me': 6.0, 'wiggle': 1.0, 'slightly': 1.0, 'aim': 3.0, 've': 4.0, 'foremost': 1.0, 'wrong': 1.0, '30': 1.0, 'say': 3.0, 'uncertain': 1.0, 'honest': 1.0, 'worth': 1.0, 'fast': 1.0, 'at': 8.0, 'is': 26.0, 'convince': 1.0, 'down': 3.0, 'can': 7.0, 'mute': 1.0, 'fault': 1.0, 'chart': 2.0, 'five': 1.0, 'depleted': 1.0, 'real': 2.0, 'spending': 1.0, '2yrs': 1.0, 'though': 1.0, 'haters': 1.0, 'babysitter': 1.0, 'do': 3.0, 'going': 1.0, '2': 3.0, 'kid': 8.0, 'youngest': 2.0, 'aimed': 1.0, 'great': 1.0, 'so': 9.0, 'should': 1.0, 'judge': 1.0, 'bathroom': 2.0, 'assume': 1.0, 'were': 2.0, 'feel': 1.0, 'picture': 1.0, 'them': 3.0, 'matter': 3.0, 'maybe': 1.0, 'proportionate': 1.0, 'well': 3.0, 'forgot': 1.0, 'simple': 1.0, 'myself': 1.0, 'cover': 6.0, 'problem': 8.0, 'tv': 1.0, '34': 24.0, 'toothbrush': 1.0, 'doing': 5.0, 'ample': 1.0, 'just': 16.0, 'absentmindedly': 1.0, 'experience': 1.0, 'of': 35.0, 'even': 5.0, 'sit': 7.0, 'right': 2.0, 'preventing': 1.0, 'aesthetically': 1.0, 'want': 3.0, 'that': 34.0, 'o': 1.0, 'convert': 2.0, 'loves': 1.0, 'their': 2.0, 'isn': 1.0, 'possible': 1.0, 'help': 2.0, 'online': 1.0, 'birds': 2.0, 'went': 1.0, 'games': 1.0, 'on': 20.0, 'cynch': 1.0, '3': 4.0, 'too': 3.0, 'eventually': 1.0, 'weight': 1.0, 'ipad': 18.0, 'shoe': 1.0, 'some': 1.0, 'potentially': 1.0, 'recommended': 1.0, 'let': 2.0, 'all': 4.0, 'his': 17.0, 'using': 3.0, 'in': 24.0, 'potty': 27.0, 'urges': 1.0, 'believe': 1.0, 'public': 1.0, 'btw': 2.0, 'thing': 6.0, 'anything': 5.0, 'around': 4.0, 'the': 126.0, 'works': 2.0, 'missed': 1.0, 'preschool': 1.0, 'area': 1.0, '6': 1.0, 'asleep': 1.0, 'back': 3.0, 'himself': 2.0, 'level': 1.0, 'average': 1.0, 'features': 1.0, 'have': 14.0, 'found': 1.0, 'how': 1.0, 'one': 9.0, 'decision': 1.0, 'knows': 1.0, 'articulation': 1.0, 'get': 3.0, 'was': 15.0, '5': 1.0, 'finger': 1.0, 'training': 2.0, 'seem': 1.0, 'terms': 1.0, 'frankly': 1.0, 'part': 3.0, 'privileges': 1.0, 'however': 4.0, 'pointed': 1.0, 'could': 7.0, 'give': 2.0, 'try': 4.0, 'until': 1.0, 'along': 1.0, 'whim': 1.0, 'ipotty': 2.0, 'once': 2.0, 'figured': 4.0, 'her': 2.0, 'perfectly': 1.0, 'happy': 1.0, 'except': 1.0, 'eager': 1.0, 'place': 2.0, 'foot': 1.0, 'daddy': 2.0, 'design': 2.0, 'about': 11.0, 'having': 2.0, 'instructions': 1.0, 'he': 36.0, 'near': 1.0, 'feature': 1.0, 'whole': 1.0, 'other': 5.0, 'minor': 2.0, 'big': 3.0, 'toilet': 3.0, 'thrilled': 1.0, 'squatting': 2.0, 'holding': 1.0, 'literally': 1.0, 'avg': 1.0, 'height': 2.0, 'wanted': 1.0, 'new': 1.0, 'fully': 1.0, 'brothers': 2.0, 'point': 2.0, 'falling': 1.0, 'problems': 1.0, 'road': 1.0, 'had': 4.0, 'ever': 1.0, 'busted': 1.0, 'least': 1.0, 'transition': 2.0, 'need': 5.0, 'instead': 2.0, 'week': 1.0, 'places': 1.0, 'when': 8.0, 'nanny': 2.0, 'stumbled': 1.0, 'protecting': 1.0, 'educational': 1.0, 'relieving': 1.0, 'pants': 3.0, 'replace': 1.0, 'physical': 1.0, 'squat': 1.0, 'angry': 2.0, 'potties': 3.0, 'human': 1.0, 'much': 1.0, 'advance': 1.0, 'to': 56.0, 'because': 4.0, 'fits': 1.0, 'us': 2.0, 'butt': 1.0, 'tyke': 1.0, 'likes': 2.0, 'itself': 2.0, 'size': 5.0, '4': 1.0, 'extra': 2.0, 'seat': 7.0, 'don': 3.0, 'there': 8.0, 'think': 1.0, 'another': 2.0, 'didn': 4.0, 'fall': 1.0, 'separate': 1.0, 'promised': 1.0, 'promise': 1.0, 'times': 3.0, 'knee': 1.0, 'few': 2.0, 'plenty': 1.0, 'i': 39.0, 'between': 1.0, 'knees': 1.0, 'nasties': 1.0, 'usually': 2.0, 'words': 1.0, 'bucket': 2.0, 'against': 2.0, 'shoes': 2.0, 'poor': 1.0, 'years': 2.0, 'an': 5.0, 'wall': 1.0, 'stand': 10.0, 'escapes': 1.0, 'anyway': 1.0, 'toothpick': 1.0, 'sprawling': 1.0, 'will': 1.0, 'although': 3.0, 'comfortable': 1.0, 'tired': 1.0, 'getting': 3.0, 'keep': 3.0, 'either': 3.0, 'worries': 2.0, 'easier': 2.0, 'clear': 1.0, 'partly': 1.0, 'gain': 1.0, 'leans': 2.0, 'up': 6.0, 'pee': 12.0, 'complain': 1.0, 'guard': 6.0, 'obtrusive': 1.0, 'bother': 1.0, 'digital': 1.0, 'll': 1.0, 'its': 2.0, 'old': 4.0, 'forward': 2.0, 'sale': 1.0, 'lap': 1.0, 'leaking': 1.0, '9': 1.0, '10': 2.0, 'starting': 1.0, 'winds': 1.0, 'dig': 1.0, 'placement': 2.0, 'shape': 1.0, 'oh': 2.0, 'ready': 2.0, 'catch': 1.0, 'tools': 1.0, 'firmly': 1.0, 'older': 1.0, 'last': 1.0, 'by': 4.0, 'popping': 1.0, 'speech': 1.0, 'fiddling': 1.0, 'enough': 2.0, 'reach': 1.0, 'fiddle': 1.0, 'nervous': 1.0, 'none': 2.0, '7': 1.0, 'imo': 1.0, 'besides': 1.0, 'disassemble': 1.0, 'leak': 2.0, 'far': 1.0, 'disappointment': 1.0, 'easiest': 1.0, 'through': 2.0, 'clean': 3.0, 'does': 2.0, 'under': 5.0, 'many': 1.0, 'models': 1.0, 'got': 2.0, 'floor': 1.0, 'smooth': 1.0, 'now': 6.0, 'crevices': 2.0, 'off': 3.0, 'abandon': 1.0, 'clorox': 2.0, 'wipe': 6.0, 'leave': 1.0, 'gone': 1.0, 'hard': 2.0, 'small': 1.0, 'stool': 2.0, 'sleek': 1.0, 'kids': 2.0, 'more': 6.0, 'than': 1.0, 'working': 1.0, 'appealing': 1.0, 'somehow': 1.0, 'magically': 1.0, 'look': 1.0, 'base': 2.0, 'something': 2.0}
Word element => {'producing': 1.0, 'excrement': 1.0, 'ease': 1.0, 'there': 1.0, 'sat': 1.0, 'use': 1.0, 'contemplate': 1.0, 'school': 1.0, 'about': 1.0, 'eyes': 1.0, 'we': 3.0, 'then': 1.0, 'was': 1.0, 'roll': 1.0, 'when': 1.0, 'kids': 1.0, 'without': 1.0, 'tell': 1.0, 'our': 2.0, 'how': 2.0, 'item': 1.0, 'another': 1.0, 'just': 1.0, 'messy': 1.0, 'quite': 1.0, 'imagination': 1.0, 'be': 1.0, 'using': 1.0, 'having': 1.0, 'colors': 1.0, 'bright': 1.0, 'activities': 1.0, 'or': 2.0, 'flashing': 1.0, 'utilize': 1.0, 'lights': 1.0, 'apps': 1.0, 'no': 1.0, 'pray': 1.0, 'bowls': 1.0, 'these': 1.0, 'one': 1.0, 'quietly': 1.0, 'here': 1.0, 'next': 1.0, 'see': 1.0, 'corporate': 1.0, 'who': 1.0, 'is': 2.0, 'at': 2.0, 'future': 1.0, 's': 2.0, 'a': 4.0, 'fit': 1.0, 't': 2.0, 'prey': 1.0, 'already': 1.0, 'it': 2.0, 'on': 2.0, 'before': 1.0, 'market': 2.0, 'snow': 1.0, 'jump': 1.0, 'didn': 1.0, 'perhaps': 1.0, 'alas': 1.0, 'although': 1.0, 'in': 5.0, 'age': 2.0, 'old': 1.0, 'stages': 1.0, 'similar': 1.0, 'and': 6.0, 'do': 1.0, 'relentless': 1.0, 'adult': 1.0, 'your': 1.0, 'idea': 2.0, 'talk': 1.0, 'into': 1.0, 'me': 1.0, 'my': 3.0, 'may': 2.0, 'concept': 2.0, 'cta': 1.0, 'iplop': 1.0, 'trainer': 1.0, 'to': 6.0, 'suffer': 1.0, 'ensuring': 1.0, 'had': 4.0, 'buy': 1.0, 'idump': 1.0, 'retinal': 1.0, 'while': 2.0, 'piddlers': 1.0, 'fell': 1.0, 'possible': 1.0, 'order': 1.0, 'preliminarily': 1.0, 'actually': 2.0, 'i': 11.0, 'potty': 1.0, 'can': 1.0, 'so': 1.0, 'life': 1.0, 'ipiddle': 1.0, 'straining': 1.0, 'only': 1.0, 'patented': 1.0, 'for': 1.0, 'suspicions': 1.0, 'they': 2.0, 'display': 1.0, 'named': 1.0, 'of': 3.0, 'the': 9.0, 'ever': 1.0, 'an': 2.0, 'bowel': 2.0, 'cannot': 1.0, 'know': 1.0, 'tightening': 1.0, 'this': 4.0, 'movement': 2.0, 'grip': 1.0, 'bottom': 1.0, 'yet': 1.0, 'with': 1.0, 'federal': 1.0, 'trade': 1.0, 'commission': 1.0, 'have': 1.0, '2': 1.0, 'thing': 1.0, 'machine': 1.0, 'indoctrinated': 1.0, 'funded': 1.0, 'prove': 1.0, 'secure': 1.0, 'their': 2.0, 'could': 1.0, 'will': 1.0, 'tablet': 1.0, 'that': 5.0, 'ploppers': 1.0, 'first': 1.0, 'are': 1.0, 'indeed': 1.0, 'line': 1.0, 'where': 1.0, 'earliest': 1.0, 'more': 1.0, 'year': 1.0, 'product': 3.0, 'toddler': 1.0, 'products': 1.0, 'samsung': 1.0, 'enter': 1.0, 'epileptic': 1.0, 'but': 1.0, 'don': 1.0, 'if': 2.0, 'apple': 3.0, 'want': 1.0}
Word element => {'screens': 1.0, 'front': 1.0, 'in': 1.0, 'stop': 1.0, 'serious': 1.0, 'from': 1.0, 'can': 1.0, 'on': 1.0, 'are': 1.0, 'while': 1.0, 'need': 1.0, 'thinks': 1.0, 'who': 1.0, 'signs': 1.0, 'of': 3.0, 'time': 1.0, 'your': 1.0, 'they': 1.0, 'has': 1.0, 'to': 2.0, 'be': 2.0, 'product': 1.0, 'one': 1.0, 'is': 2.0, 'enough': 1.0, 'their': 1.0, 'that': 1.0, 'diverted': 1.0, 'kids': 3.0, 'it': 1.0, 'this': 1.0, 'parent': 1.0, 'parenting': 1.0, 'the': 4.0, 'ipads': 1.0, 'placing': 1.0, 'some': 1.0, 'suffering': 1.0, 'at': 1.0, 'bad': 1.0, 'have': 1.0, 'all': 2.0, 'deficits': 1.0, 'apocalypse': 1.0, 'but': 1.0, 'any': 1.0}
Word element => {'described': 1.0, 'as': 1.0}
Word element => {}
Word element => {'for': 1.0, 'are': 1.0, 'we': 1.0, 'hoping': 1.0, 'to': 1.0, 'old': 1.0, 'little': 1.0, 'loves': 1.0, 'sit': 1.0, 'have': 1.0, 'boy': 1.0, 'that': 1.0, 'there': 1.0, '3': 1.0, 'a': 1.0, 'between': 1.0, 'best': 1.0, 'year': 1.0, 'is': 1.0, 'his': 1.0, 'ipad': 2.0, 'with': 1.0, 'he': 1.0, 'seat': 1.0, 'autistic': 1.0, 'and': 2.0, 'the': 3.0, 'potty': 1.0}
Word element => {'so': 1.0, 'you': 1.0, 'in': 1.0, 'excrement': 1.0, 'top': 1.0, 'this': 1.0, 'thing': 1.0, 'why': 1.0, 'with': 1.0, 'is': 1.0, 'too': 1.0, 'make': 1.0, 'seconds': 1.0, 'the': 1.0, 'small': 2.0, 'filled': 1.0, 'i': 1.0, 'way': 1.0, 'it': 2.0, 'to': 1.0}
Word element => {'pad': 1.0, 'toilet': 1.0, 'also': 1.0, 'paper': 1.0, 'it': 1.0, 'out': 1.0, 'kidding': 1.0, 'the': 1.0, 'not': 1.0, 'digital': 1.0, 'and': 1.0, 'cta': 1.0, 'im': 1.0, 'i': 1.0, 'check': 1.0, 'your': 2.0, 'stand': 1.0, 'pedestal': 1.0, 'holds': 1.0}
Word element => {'and': 1.0, 'as': 1.0, 'little': 1.0, 'both': 1.0, 'out': 1.0, 'desk': 1.0, 'uses': 1.0, 'potty': 2.0, 'my': 1.0, 'grandson': 1.0, 'chair': 1.0, 'is': 2.0, 'a': 3.0, 'lot': 1.0, 'so': 1.0, 'cute': 1.0, 'of': 2.0, 'it': 1.0, 'getting': 1.0}
Word element => {'training': 1.0, 'starts': 1.0, 'be': 1.0, 'will': 1.0, 'so': 1.0, 'thought': 1.0, 'parents': 1.0, 'too': 1.0, 'his': 1.0, 'brought': 1.0, 'this': 1.0, 'he': 1.0, 'nephew': 1.0, 'when': 1.0, 'i': 1.0, 'potty': 2.0, 'my': 1.0, 'it': 2.0, 'great': 3.0, 'and': 1.0, 'for': 1.0, 'is': 1.0}
Word element => {'case': 1.0, 'parents': 1.0, 'not': 1.0, 'own': 1.0, 'words': 1.0, 'read': 1.0, 'beyond': 1.0, '100': 1.0, 'with': 1.0, 'play': 1.0, '34': 2.0, 'age': 1.0, 'same': 1.0, 'alphabet': 2.0, 'use': 1.0, 'small': 1.0, 'a': 3.0, 'we': 1.0, 'rest': 1.0, 't': 5.0, 'up': 1.0, 'child': 1.0, 'if': 1.0, 'want': 1.0, 'comment': 1.0, 'like': 1.0, 'on': 2.0, 'make': 1.0, 'stuff': 1.0, 'd': 1.0, 'someone': 1.0, 'when': 1.0, 'one': 2.0, 's': 1.0, 'hardly': 1.0, 'advice': 1.0, 'count': 2.0, 'such': 1.0, '10': 1.0, 'for': 1.0, 'this': 4.0, 'posted': 1.0, 'in': 2.0, 'learning': 1.0, 'my': 3.0, 'more': 1.0, 'people': 1.0, 'really': 1.0, 'whatever': 1.0, 'company': 1.0, 'amazing': 1.0, 'joke': 1.0, 'their': 1.0, 'never': 1.0, 'anime': 1.0, 'would': 2.0, 'evil': 1.0, 'was': 3.0, 'pretty': 1.0, 'to': 4.0, 'our': 1.0, 'fancied': 1.0, 'devices': 2.0, 'shows': 1.0, '8d': 1.0, 'size': 1.0, 'get': 2.0, 'came': 1.0, 'although': 1.0, 'facebook': 1.0, 'desires': 1.0, 'i': 5.0, 'watching': 1.0, 'that': 1.0, 'sad': 1.0, 'buy': 2.0, 'mimicking': 1.0, 'and': 5.0, 'anyone': 1.0, 'it': 5.0, 'speak': 1.0, 'thought': 1.0, 'him': 1.0, 'of': 1.0, 'the': 6.0, 'without': 1.0, 'ipad': 1.0, 'now': 1.0, 'babysit': 1.0, 'children': 1.0, 'have': 1.0, 'who': 2.0, 'is': 1.0, 'at': 1.0, 'didn': 3.0, 'even': 1.0, 'heed': 1.0, 'or': 1.0, 'much': 1.0, 'characters': 1.0, 'addition': 1.0, 'grown': 1.0, 'from': 1.0, 'pacify': 1.0, 'birth': 1.0, 'did': 1.0, 'give': 1.0, 'seriously': 1.0, 'edutainment': 1.0, 'he': 3.0, 'kid': 1.0, '2': 2.0, 'can': 5.0, 'past': 1.0, 'friend': 2.0, '1': 1.0, 'yelling': 1.0, 'recite': 2.0, 'his': 4.0}
Word element => {'ve': 1.0, 'going': 1.0, 'know': 1.0, 'likes': 1.0, 'all': 1.0, 'let': 1.0, 'followers': 1.0, 'family': 1.0, 'instagram': 1.0, 'to': 2.0, 'poos': 1.0, 'best': 1.0, 'upload': 1.0, 'twitter': 1.0, 'fb': 1.0, 'on': 2.0, 'info': 1.0, 'can': 2.0, 'telling': 1.0, 'around': 1.0, 'download': 1.0, 'i': 4.0, '5': 1.0, 'health': 1.0, 'while': 1.0, 'great': 2.0, 'the': 2.0, 'my': 3.0, 'is': 3.0, 'friends': 1.0, 'product': 2.0, 'this': 1.0, 'ipoo': 1.0, 'gotten': 1.0, 'me': 1.0, 'and': 3.0, 'app': 1.0, 'already': 1.0, 'then': 1.0, 'wrap': 1.0, 'a': 1.0, 'see': 1.0, 'poo': 2.0, 'what': 2.0, 'about': 1.0, '378': 1.0, 'share': 1.0}
Word element => {'minutes': 1.0, '20': 1.0, 'for': 1.0, 'he': 1.0, 'this': 1.0, 'a': 1.0, 'using': 2.0, 'days': 1.0, 'potty': 1.0, 'as': 1.0, 'and': 1.0, 'my': 1.0, 'time': 1.0, 'on': 1.0, 'sits': 1.0, '2': 1.0, 'son': 1.0, 'at': 1.0, 'after': 1.0, 'was': 1.0, 'it': 2.0}
Word element => {'potty': 1.0, 'that': 1.0, 'anyone': 1.0, 'very': 1.0, 'cta': 1.0, 'training': 1.0, 'train': 1.0, 'helped': 1.0, 'out': 1.0, 'child': 1.0, 'great': 1.0, 'my': 1.0, 'defentley': 1.0, 'me': 1.0, 'is': 2.0, 'product': 1.0, 'to': 2.0, 'recommened': 1.0, 'it': 2.0, 'with': 1.0, 'this': 1.0, 'a': 2.0, 'well': 1.0, 'struggle': 1.0, 'i': 1.0, 'thanks': 1.0, 'would': 1.0}
Word element => {'small': 1.0, 'very': 1.0, 'is': 1.0, 'size': 1.0}
Word element => {'on': 1.0, 'apple': 2.0, 'so': 1.0, 'leaving': 1.0, 'quite': 1.0, 'nothing': 1.0, 'there': 1.0, 'just': 1.0, 'squat': 1.0, 'and': 1.0, 'ipad': 1.0, 'around': 1.0, 'satisfying': 1.0, 'turn': 1.0, 'when': 1.0, 'prompting': 1.0, 's': 2.0, 'about': 1.0, 'at': 1.0, 'was': 1.0, 'thing': 1.0, 'horse': 1.0, 'item': 1.0, 'bowel': 1.0, 'is': 1.0, 'i': 2.0, 'movement': 1.0, 'above': 1.0, 'but': 1.0, 'this': 1.0, 'it': 3.0, 'results': 1.0, 'works': 1.0, 'effectiveness': 1.0, 'the': 4.0, 'a': 2.0, 'sceptical': 1.0, 'funny': 1.0, 'that': 1.0, 'as': 1.0, 'best': 1.0, 'has': 1.0}
Word element => {'highly': 1.0, 'for': 1.0, 'set': 1.0, 'controlled': 1.0, 'be': 2.0, 'it': 2.0, 'limits': 1.0, 'use': 1.0, 'why': 1.0, 'in': 2.0, 'available': 1.0, 'is': 1.0, 'kind': 1.0, 'day': 2.0, 'buy': 1.0, 'even': 1.0, 'didn': 1.0, 'dare': 1.0, 'life': 1.0, 'few': 1.0, 'nonsense': 1.0, 'take': 1.0, 'describe': 1.0, 'of': 3.0, 'products': 1.0, 'saved': 1.0, 'i': 3.0, 'today': 1.0, 'gone': 1.0, 'about': 2.0, 'reviews': 2.0, 'how': 1.0, 'and': 4.0, 'do': 1.0, 's': 1.0, 't': 1.0, 'a': 3.0, 'the': 5.0, 'decided': 1.0, 'busy': 1.0, 'have': 2.0, 'me': 1.0, 'not': 2.0, 'technology': 1.0, 'reading': 1.0, 'know': 1.0, 'mom': 1.0, 'write': 1.0, 'remarks': 1.0, 'any': 1.0, 'to': 2.0, 'usually': 1.0, 'recommend': 1.0, 'minutes': 1.0, 'surely': 1.0, 'item': 2.0, 'toilet': 1.0, 'this': 5.0, 'time': 1.0, 'potty': 1.0, 'everything': 1.0, 'if': 2.0, 'easily': 1.0, 'am': 1.0, 'you': 4.0, 'never': 1.0, 'through': 1.0, 'can': 2.0, 'process': 1.0, 'training': 2.0, 'toddler': 1.0, 'with': 1.0, 'knock': 1.0, 'negative': 1.0, 'nothing': 1.0, 'hardships': 1.0}
Word element => {'messy': 1.0, 'with': 2.0, 'it': 1.0, 'long': 1.0, 'even': 1.0, 'being': 1.0, 'occasional': 1.0, 'the': 4.0, 'parenting': 1.0, 'android': 2.0, 'so': 1.0, 'not': 1.0, 'washing': 1.0, 'a': 1.0, 'since': 1.0, 'been': 1.0, 'tv': 1.0, 'from': 1.0, 'have': 1.0, 'bad': 1.0, 'bag': 1.0, 'apple': 1.0, 'colostomy': 1.0, 'of': 1.0, 'catheter': 1.0, 'effort': 1.0, 'but': 1.0, 'can': 1.0, 'i': 2.0, 'crash': 1.0, 'my': 2.0, 'household': 1.0, 'appliances': 1.0, 'desktop': 1.0, 'or': 1.0, 'use': 1.0, 'using': 1.0, 'computer': 1.0, 'course': 1.0, 'is': 1.0, 'machine': 1.0, 'all': 1.0, 'to': 1.0, 'only': 1.0, 'works': 1.0, 'do': 1.0, 'no': 1.0, 'interruptions': 1.0, 'problem': 1.0}
Word element => {'types': 1.0, 'by': 2.0, 'less': 1.0, 'your': 1.0, 'are': 1.0, 'think': 1.0, 'take': 1.0, 'on': 1.0, 'of': 1.0, 'bathroom': 1.0, 'these': 1.0, 'intelligent': 1.0, 'the': 2.0, 'to': 3.0, 'be': 2.0, 'products': 1.0, 'minute': 2.0, 'step': 1.0, 'old': 1.0, 'back': 1.0, 'an': 1.0, 'making': 1.0, 'not': 1.0, 'a': 3.0, 'them': 1.0, 'ipad': 1.0, 'should': 1.0, 'three': 1.0, 'begin': 1.0, 'year': 1.0, 'why': 1.0, 'people': 1.0, 'is': 1.0, 'children': 1.0, 'come': 1.0, 'with': 1.0, 'it': 1.0, 'and': 1.0, 'necessary': 1.0, 'using': 3.0, 'for': 2.0, 'one': 1.0, 'while': 1.0, 'use': 1.0, 'you': 1.0, 'trying': 1.0}
Word element => {'read': 1.0, 'years': 1.0, 'one': 1.0, 'been': 1.0, 'products': 1.0, 'these': 2.0, 'remind': 1.0, 'the': 1.0, 'people': 1.0, 'if': 1.0, 'of': 1.0, 'trying': 1.0, 'amazing': 1.0, 'seriously': 1.0, 'have': 1.0, 'this': 1.0, 'children': 1.0, 'to': 3.0, 'for': 1.0, 'product': 1.0, 'considering': 1.0, 'you': 3.0, 'entertain': 1.0, 'when': 1.0, 'me': 1.0, 'too': 1.0, 'and': 1.0, 'better': 1.0, 'their': 1.0, 'using': 1.0, 'hold': 1.0, 'on': 2.0, 'your': 1.0, 'they': 2.0, 'pants': 1.0, 're': 2.0, 'help': 1.0, 'them': 2.0, 'child': 1.0, 'learn': 1.0, 'are': 2.0, 'called': 1.0, 'there': 1.0, 'books': 1.0, 'yet': 1.0, 'let': 1.0, 'or': 1.0, 'handing': 1.0, 'potty': 1.0}
Word element => {'socks': 1.0, 'my': 1.0, 'always': 1.0, 'm': 1.0, 'and': 1.0, 'ninja': 1.0, 'fruit': 1.0, 'get': 1.0, 'protection': 1.0, 'some': 1.0, 'design': 1.0, 'models': 1.0, 'on': 1.0, 'tm': 1.0, 'appreciate': 1.0, 'would': 1.0, 'something': 1.0, 'or': 1.0, 'you': 2.0, 'almost': 1.0, 'swear': 1.0, 'night': 1.0, 'anti': 1.0, 'small': 1.0, 'lacking': 1.0, 'so': 1.0, 'bit': 1.0, 'pinch': 1.0, 'expected': 1.0, 'well': 1.0, 'definitely': 2.0, 'it': 3.0, 'kids': 1.0, 'this': 3.0, 'while': 1.0, 'from': 1.0, 'change': 1.0, 'but': 2.0, 'sort': 1.0, 'guess': 1.0, 'was': 1.0, 'as': 3.0, 'to': 3.0, 'had': 1.0, 'little': 2.0, 'capacity': 1.0, 'thing': 2.0, 'about': 1.0, 'sloshing': 1.0, 'could': 1.0, 'a': 6.0, 's': 2.0, 't': 1.0, 'playing': 1.0, 'the': 3.0, 'that': 2.0, 'gastrointestinal': 1.0, 'll': 1.0, 'wasn': 1.0, 'after': 1.0, 'holding': 1.0, 'also': 1.0, 'serve': 1.0, 'bush': 2.0, 'if': 2.0, 'in': 1.0, 'said': 1.0, 'is': 2.0, 'buffet': 1.0, 'i': 6.0, 'conveniently': 1.0, 'future': 1.0, 'at': 1.0, 'shaped': 1.0, 'suitable': 1.0, 'for': 2.0, 'ipad': 1.0, 'having': 1.0, 'find': 1.0, 'aside': 1.0, 'accomplishments': 1.0, 'man': 1.0, 'not': 1.0, 'grown': 1.0, 'disappointed': 1.0, 'made': 2.0, 'enthusiastic': 1.0, 'like': 1.0, 'branches': 1.0, 'hold': 1.0, 'of': 2.0}
Word element => {'surveys': 1.0, 'related': 1.0, 'surf': 1.0, 'the': 1.0, 'aligned': 1.0, 'him': 1.0, 'insists': 1.0, 'my': 1.0, 'be': 1.0, 'an': 1.0, 'to': 2.0, 'dog': 2.0, 'is': 1.0, 'east': 1.0, 'problem': 1.0, 'it': 1.0, 'only': 1.0, 'west': 1.0, 'axis': 1.0, 'for': 2.0, 'use': 2.0, 'i': 1.0, 'should': 1.0, 'not': 1.0, 'ipod': 1.0, 'have': 1.0, 'on': 1.0, 'allowed': 1.0}
Word element => {'us': 1.0, 'both': 1.0, 'experience': 1.0, 'pleasant': 1.0, 'more': 1.0, 'making': 1.0, 'entertaining': 1.0, 'life': 1.0, 'just': 1.0, 'by': 1.0, 'and': 8.0, 'moms': 1.0, 'loads': 3.0, 'didn': 1.0, 'we': 2.0, 's': 2.0, 'a': 5.0, 'ago': 1.0, 't': 1.0, 'digest': 1.0, 'to': 4.0, 'our': 3.0, 'negatively': 1.0, 'any': 1.0, 'them': 1.0, 'for': 2.0, 'chores': 1.0, 'did': 1.0, 'therefore': 1.0, 'accepting': 1.0, 'time': 1.0, 'bit': 2.0, 'today': 3.0, 'elderly': 1.0, 'process': 1.0, 'mock': 1.0, 'kids': 2.0, 'many': 1.0, 'distracting': 1.0, 'that': 3.0, 'were': 1.0, 'their': 1.0, 'of': 5.0, 'the': 8.0, 'raising': 1.0, 'helped': 1.0, 'decade': 1.0, 'or': 1.0, 'two': 1.0, 'i': 3.0, 'technology': 1.0, 'ideas': 2.0, 've': 1.0, 'past': 1.0, 'basic': 1.0, 'in': 1.0, 'having': 1.0, 'find': 1.0, 'does': 1.0, 'very': 1.0, 'got': 1.0, 'train': 1.0, 'devices': 1.0, 'daily': 1.0, 'hard': 2.0, 'skills': 1.0, 'they': 1.0, 'critic': 1.0, 'easier': 1.0, 'ways': 1.0, 'raise': 1.0, 'used': 1.0, 'ipotty': 2.0, 'ipad': 1.0, 'make': 1.0, 'help': 1.0, 'who': 1.0, 'loving': 1.0, 'not': 2.0, 'my': 2.0, 'me': 1.0, 'mean': 1.0, 'tell': 1.0, 'interact': 1.0, 'stories': 1.0, 'it': 3.0, 'him': 3.0, 'talking': 1.0, 'surely': 1.0, 'generation': 1.0, 'do': 1.0, 'fact': 2.0, 'teach': 1.0, 'through': 2.0, 'with': 3.0, 'singing': 1.0, 'laughing': 1.0, 'are': 1.0, 'hinder': 1.0, 'remark': 1.0, 'communication': 1.0, 'dear': 1.0, 'toddler': 1.0, 'child': 1.0}
Word element => {'its': 1.0, 'looking': 1.0, 'one': 2.0, 'new': 1.0, 'now': 2.0, 'across': 1.0, 'right': 1.0, 'log': 1.0, 'tapered': 1.0, 'double': 1.0, 'morning': 1.0, 'next': 1.0, 'in': 2.0, 'proceeded': 1.0, 'toilet': 1.0, 'with': 1.0, 'problem': 1.0, 'any': 1.0, 'never': 1.0, 'horrible': 1.0, 'sounded': 1.0, 'wow': 1.0, '34': 2.0, 'said': 1.0, 'out': 1.0, 'walk': 1.0, 'up': 1.0, 'after': 1.0, 'logs': 1.0, 'four': 1.0, 'but': 2.0, 'be': 1.0, 'talking': 1.0, 'embarrassing': 1.0, 'short': 1.0, 'clean': 1.0, 'include': 1.0, 'laugh': 1.0, 'order': 1.0, 'came': 1.0, 'might': 1.0, 'a': 3.0, 'then': 1.0, 'we': 2.0, 'kids': 3.0, 'office': 1.0, 'found': 1.0, 'this': 5.0, 'they': 1.0, 'wanted': 1.0, 'bathroom': 1.0, 'his': 1.0, 'business': 1.0, 'shopping': 1.0, 'our': 1.0, 'to': 7.0, 'can': 1.0, 'so': 5.0, 'these': 2.0, 'for': 5.0, 'building': 1.0, 'healthy': 1.0, 'than': 1.0, 'that': 2.0, 'because': 1.0, 'sucker': 1.0, 'tell': 1.0, 'see': 1.0, 'browsing': 1.0, 'my': 7.0, 'me': 4.0, 'not': 2.0, 'and': 13.0, 'freakishly': 1.0, 'i': 12.0, 'little': 1.0, 'two': 1.0, 'at': 1.0, 'is': 5.0, 'more': 1.0, 'are': 2.0, 'other': 1.0, 'was': 3.0, 'love': 1.0, 'he': 7.0, '6': 1.0, 'co': 1.0, 'instantly': 1.0, 'let': 1.0, 'remodel': 2.0, 'appealing': 1.0, 'on': 3.0, 'make': 1.0, 'buy': 1.0, 'mess': 1.0, 'hand': 1.0, 'laid': 1.0, 'am': 2.0, 'you': 1.0, 'front': 1.0, 'miss': 1.0, '5': 1.0, 'before': 2.0, 'foot': 1.0, 'why': 1.0, 'just': 1.0, 'will': 1.0, 'wireless': 1.0, 'ignored': 1.0, 'sounds': 1.0, 'dandy': 1.0, 'would': 1.0, 'weeks': 1.0, 'complete': 1.0, 'keyboard': 1.0, 'have': 2.0, 'amazon': 2.0, 'aim': 1.0, 'doing': 1.0, 'delighted': 1.0, 'the': 5.0, 'of': 3.0, 'workers': 1.0, 'it': 2.0, 'while': 1.0, 'boss': 2.0, 'gems': 1.0, 'squat': 1.0, 'work': 3.0, 'hard': 1.0, 'over': 1.0, 'nearly': 1.0, 'thing': 1.0, 'floor': 1.0, 'explained': 1.0, 'do': 2.0, 'only': 1.0, 'good': 1.0, 'grunt': 1.0, 'later': 1.0, 'lay': 1.0, 'shuffle': 1.0, 'still': 1.0, 'impossible': 1.0}
Word element => {'everything': 1.0, 'get': 1.0, 'probable': 1.0, 'its': 1.0, 'star': 1.0, 'one': 1.0, 'of': 1.0, 'audacity': 1.0, 'sheer': 1.0, 'ty': 1.0, 'fart': 1.0, 'thing': 1.0, 'whole': 1.0, 'or': 1.0, 'toilet': 1.0, 'separate': 1.0, 'why': 1.0, 'after': 1.0, 'chairs': 1.0, 'great': 1.0, 'part': 1.0, 'although': 1.0, 'screen': 1.0, 'available': 1.0, 'right': 2.0, 'fine': 1.0, 'that': 1.0, 'and': 4.0, 'looks': 1.0, 'it': 1.0, 'this': 2.0, 'impracticality': 1.0, 'saddens': 1.0, 'opportunity': 1.0, 'piss': 3.0, 'there': 1.0, 'sh': 3.0, 'can': 1.0, 'most': 1.0, 'four': 1.0, 'but': 2.0, 'stinking': 1.0, 'the': 5.0, 'training': 1.0, 'during': 1.0, 'like': 1.0, 'wasn': 1.0, 'you': 1.0, 'lose': 1.0, 'office': 2.0, 'idea': 2.0, 'fantastic': 1.0, 'could': 1.0, 't': 2.0, 'a': 3.0, 'me': 2.0, 'not': 1.0, 'i': 1.0, 'm': 1.0, 'stars': 1.0, 'for': 5.0, 'product': 2.0, 'be': 3.0, 'taking': 1.0, 'computers': 1.0, 'pissing': 1.0, 'ting': 1.0, 'bowl': 1.0, 'on': 1.0, 'hey': 1.0, 'anyway': 1.0, 'over': 1.0, 'oh': 1.0, 'what': 1.0, 'may': 1.0, 'joy': 1.0, 'my': 1.0, 'every': 1.0, 'girl': 1.0, 'potty': 1.0, 'boy': 1.0, 'some': 1.0, 'days': 1.0, 'seems': 1.0, 'to': 2.0, 'all': 2.0}
Word element => {'idea': 1.0, 'invented': 1.0, 'him': 1.0, 'never': 1.0, 'mission': 1.0, 'all': 1.0, 'was': 1.0, 'to': 1.0, 's': 1.0, 'addicted': 1.0, 'at': 1.0, 'no': 1.0, 'over': 1.0, 'process': 1.0, 'negative': 1.0, 'i': 2.0, 'again': 1.0, 'reviews': 1.0, 'gave': 1.0, 'when': 1.0, 'gets': 1.0, 'not': 2.0, 'whoever': 1.0, 'really': 2.0, 'is': 2.0, 'soon': 1.0, 'addictedit': 1.0, 'child': 2.0, 'and': 1.0, 'me': 2.0, 'my': 4.0, 'great': 1.0, 'these': 1.0, 'the': 3.0, 'a': 1.0, 'upset': 1.0, 'see': 1.0, 'as': 2.0, 'from': 1.0, 'personal': 1.0, 'experience': 1.0, 'this': 1.0, 'it': 2.0, 'ipad': 2.0, 'through': 1.0, 'helped': 1.0, 'training': 1.0}
Word element => {'paws': 1.0, 'keeps': 1.0, 'dog': 1.0, 'walking': 1.0, 'when': 1.0, 'are': 1.0, 'riding': 1.0, 'safe': 1.0, 'cumbersome': 1.0, 'kinda': 1.0, 'stroller': 3.0, 'switch': 1.0, 'is': 1.0, 'unpaved': 1.0, 'smooth': 1.0, 'his': 1.0, 'provides': 1.0, 'really': 1.0, 'have': 1.0, 'using': 1.0, 'which': 1.0, 'shocks': 1.0, 'offer': 1.0, 'wheel': 2.0, 'benefits': 1.0, 'extra': 1.0, 'others': 1.0, 'some': 1.0, 'up': 1.0, 'best': 1.0, 'the': 5.0, 'them': 1.0, 'out': 1.0, 'at': 2.0, 'veer': 1.0, 'hundreds': 1.0, 'for': 3.0, 'great': 2.0, 'comfortable': 1.0, 'test': 1.0, 'trailer': 3.0, 'look': 1.0, 'our': 1.0, 'as': 1.0, 'to': 7.0, 'had': 3.0, 'was': 1.0, 'other': 1.0, 'stores': 1.0, 'easy': 2.0, 'flag': 1.0, 'of': 1.0, 'set': 1.0, 'several': 1.0, 'they': 1.0, 'between': 1.0, 'reviews': 1.0, 'make': 1.0, 'put': 1.0, 'guards': 2.0, 'on': 2.0, 'guy': 1.0, 'found': 1.0, 'this': 4.0, 'looked': 1.0, 'hard': 1.0, 'surfaces': 1.0, 'and': 5.0, 'be': 1.0, 'money': 1.0, 'most': 1.0, 'into': 1.0, 'that': 3.0, 'he': 1.0, 'plastic': 1.0, 'wheels': 1.0, 'read': 1.0, 'little': 1.0, 'it': 2.0, 'felt': 1.0, 'wear': 1.0, 'however': 1.0, 'went': 1.0, 'ride': 2.0, 'well': 1.0, 't': 2.0, 'we': 5.0, 'a': 3.0, 'tends': 1.0, 'or': 1.0, 'even': 1.0, 'didn': 1.0, 'safety': 1.0, 'wouldn': 1.0, 'trailers': 2.0, 'provide': 1.0}
Word element => {'sooner': 1.0, 'lacks': 1.0, 'hydrocephalus': 1.0, 'he': 2.0, 'one': 1.0, 'kit': 1.0, 'for': 2.0, 'transitioned': 1.0, 'a': 2.0, 'to': 1.0, 'carseat': 1.0, 'works': 1.0, 'infant': 1.0, 'from': 1.0, 'his': 2.0, 'year': 1.0, 'is': 1.0, 'boy': 1.0, 'needs': 1.0, 'in': 1.0, 'child': 1.0, 'my': 1.0, 'special': 1.0, 'head': 1.0, 'has': 2.0, 'trunk': 1.0, 'stroller': 2.0, 'additional': 1.0, 'control': 1.0, 'the': 1.0, 'still': 1.0, 'lot': 1.0, 'at': 1.0, 'big': 1.0, 'great': 1.0, '1': 1.0, 'and': 1.0, 'old': 1.0, 'i': 1.0, 'these': 1.0, 'support': 1.0, 'this': 2.0, 'perfect': 1.0, 'wish': 1.0, 've': 1.0, 'would': 1.0, 'tortacolis': 1.0, 'known': 1.0, 'about': 1.0}
Word element => {'mealtiime': 1.0, 'looking': 1.0, 'and': 1.0, 'nice': 1.0, 'yet': 1.0, 'my': 1.0, 'haven': 1.0, 'seems': 1.0, 't': 1.0, 'but': 1.0, 'will': 1.0, 'remain': 1.0, 'clean': 1.0, 'it': 2.0, 'i': 1.0, 'its': 1.0, 'to': 1.0, 'be': 1.0, 'used': 1.0, 'what': 1.0, 'is': 1.0, 'exactly': 1.0, 'floors': 1.0, 'at': 1.0}
Word element => {'sheet': 1.0, 'thin': 1.0, 'wafer': 1.0, 'i': 1.0, 'rip': 1.0, 'would': 1.0, 'plastic': 1.0, 'priced': 1.0, 'at': 1.0, 'was': 1.0, 'have': 1.0, 'thing': 1.0, '99': 2.0, '0': 1.0, 'this': 2.0, 'it': 1.0, 'if': 1.0, '9': 1.0, '5': 1.0, 'star': 1.0, 'but': 1.0, 'given': 1.0, 'for': 1.0, 'complete': 1.0, 'is': 1.0, 'a': 2.0, 'off': 1.0}
Word element => {'their': 1.0, 'loves': 1.0, 'mam': 1.0, 'about': 1.0, 'finally': 1.0, 'trying': 1.0, 'were': 1.0, 'pieces': 1.0, 'silicon': 1.0, 'sort': 1.0, 'or': 1.0, 'bottles': 1.0, 'figured': 1.0, 'go': 1.0, 'a': 7.0, 's': 4.0, 't': 1.0, 'but': 1.0, 'bits': 1.0, 'design': 1.0, 'since': 2.0, 'warped': 1.0, 'him': 1.0, 'it': 4.0, 'month': 2.0, 'felt': 1.0, 'to': 7.0, 'cup': 3.0, 'cups': 2.0, 'kind': 1.0, 'get': 1.0, 'an': 1.0, 'help': 1.0, 'spout': 4.0, 'luckily': 1.0, 'with': 1.0, 'this': 1.0, 'soft': 1.0, 'my': 2.0, '15': 1.0, 'nipple': 1.0, 'traditional': 1.0, 'idea': 1.0, 'you': 1.0, 'more': 1.0, 'say': 1.0, 'of': 6.0, 'the': 9.0, 'bought': 1.0, 'encourage': 1.0, 'we': 1.0, 'then': 1.0, 'loved': 1.0, 'took': 1.0, '34': 2.0, 'i': 5.0, 'son': 2.0, 'complicated': 1.0, 'away': 1.0, 'used': 2.0, 'using': 1.0, 'like': 1.0, 'where': 1.0, 'actually': 1.0, 'from': 1.0, 'overly': 1.0, 'later': 1.0, 'have': 1.0, 'was': 1.0, 'how': 1.0, 'disappointed': 1.0, 'gush': 1.0, 'shame': 1.0, 'odd': 1.0, 'he': 4.0, 'chewing': 1.0, 'on': 1.0, 'wouldn': 1.0, 'drink': 2.0, 'out': 4.0, 'can': 1.0, 'constantly': 1.0, 'so': 1.0, 'bit': 1.0, 'sippy': 1.0, 'water': 1.0, 'either': 1.0, 'would': 1.0, 'pacifiers': 1.0, 'just': 1.0, 'mouth': 1.0, 'also': 1.0, 'after': 2.0, 'old': 1.0, 'run': 1.0, 'in': 1.0, 'his': 1.0, 'dishwasher': 1.0, 'and': 2.0, 'too': 2.0, 'that': 1.0, 'leaked': 1.0, 'advent': 1.0, 'many': 1.0, 'little': 1.0, 'wash': 1.0}
Word element => {'won': 1.0, 'now': 1.0, 'normal': 1.0, 'just': 1.0, 'we': 1.0, 'since': 1.0, 'a': 2.0, 'well': 1.0, 'around': 1.0, 'handles': 1.0, 'bottle': 1.0, 'little': 1.0, 'leaks': 1.0, 'move': 1.0, 'constantly': 2.0, '9': 1.0, 'month': 1.0, 'use': 2.0, 'sippy': 2.0, 'of': 1.0, 'cup': 2.0, 'my': 1.0, 'can': 1.0, 'size': 1.0, 'it': 4.0, 'this': 1.0, 'like': 1.0, 'the': 3.0, 't': 3.0, 'stopper': 1.0, 'and': 1.0, 'i': 1.0, 'old': 1.0, 'as': 3.0, 'son': 1.0, 'pour': 1.0, 'but': 1.0, 'doesn': 1.0, 'work': 2.0}
Word element => {'s': 1.0, 'dried': 1.0, 'my': 1.0, 'and': 2.0, 'quality': 1.0, 'i': 2.0, 'prefect': 2.0, 'still': 1.0, 'purchased': 1.0, 'great': 1.0, 'it': 3.0, 'machine': 1.0, 'condition': 1.0, 'washed': 1.0, 'in': 1.0, 'for': 1.0, 'crib': 1.0}
Word element => {'been': 1.0, 'have': 1.0, 'couldn': 1.0, 'work': 1.0, 'they': 1.0, 'cute': 1.0, 'wearing': 1.0, 'there': 1.0, 'baby': 1.0, 'another': 1.0, 'even': 1.0, 'or': 1.0, 'during': 1.0, 'with': 3.0, 'were': 1.0, 'and': 5.0, 'by': 1.0, 'these': 3.0, 'playing': 1.0, 'the': 6.0, 'fireworks': 1.0, 'series': 1.0, 'day': 2.0, 'ducks': 1.0, 'shipping': 1.0, 'well': 1.0, 'happier': 1.0, 'sooo': 1.0, 'game': 1.0, 'had': 1.0, 'our': 2.0, 'to': 2.0, 'tickets': 1.0, 'worked': 1.0, 'incredibly': 1.0, 'canceled': 1.0, 'i': 2.0, 'old': 1.0, 't': 1.0, 'we': 1.0, 'a': 1.0, 'go': 1.0, 'kings': 1.0, 'kiss': 1.0, 'product': 1.0, 'where': 1.0, 'for': 1.0, 'one': 1.0, 'fighting': 1.0, 'sitter': 1.0, 'enjoyed': 1.0, 'five': 1.0, 'before': 1.0, 'hockey': 1.0, 'concert': 1.0, 'so': 1.0, 'flinched': 1.0, 'jumped': 1.0, 'on': 1.0, 'amazon': 1.0, 'ordered': 1.0, 'concerts': 1.0, 'month': 1.0, '7': 1.0, 'show': 1.0, 'saw': 1.0, 'stadium': 1.0, 'never': 1.0}
Word element => {'new': 1.0, 'be': 1.0, 'not': 1.0, 'him': 1.0, 'would': 1.0, 'they': 1.0, 'so': 1.0, 'home': 1.0, 'practiced': 1.0, 'we': 1.0, 'on': 2.0, 'them': 2.0, 'having': 2.0, 'first': 1.0, 'he': 3.0, 'game': 1.0, 'to': 4.0, 'month': 1.0, 'noise': 1.0, 'distracting': 1.0, 'tho': 1.0, '3': 1.0, 'get': 1.0, 'and': 2.0, 'any': 1.0, 'something': 1.0, 'our': 1.0, 'used': 1.0, 'a': 1.0, 'wasn': 1.0, 'hockey': 1.0, 't': 1.0, 'old': 1.0, 'took': 1.0, 'bothered': 1.0, 'by': 1.0, 'at': 2.0, 'have': 1.0, 'all': 1.0, 'did': 1.0}
Word element => {'him': 1.0, 'fit': 1.0, 'same': 1.0, 'at': 1.0, 'old': 1.0, 'weeks': 1.0, '7': 1.0, 'newborns': 1.0, 'good': 1.0, 'description': 1.0, 'note': 1.0, 'is': 1.0, 'months': 1.0, 'was': 1.0, 'to': 2.0, 'in': 1.0, 'newborn': 1.0, 'that': 1.0, 'although': 1.0, 'game': 1.0, 'muffs': 1.0, 're': 1.0, 'my': 2.0, 'wear': 1.0, 'cute': 1.0, 'one': 1.0, 'for': 2.0, 'aged': 1.0, 'little': 2.0, 'bought': 1.0, 'ear': 1.0, 'soccer': 1.0, 'a': 2.0, 'perfectly': 1.0, 'and': 3.0, 'they': 3.0, 'worked': 1.0, 'the': 2.0, 'great': 1.0, 'this': 1.0, 'it': 1.0, 'up': 1.0, 'there': 1.0, 'says': 2.0, '3': 1.0}
Word element => {'while': 1.0, 'get': 1.0, 'helped': 1.0, 'about': 1.0, 'were': 1.0, 'to': 1.0, 'noises': 1.0, 'loud': 1.0, 'awake': 1.0, 'getting': 1.0, 'eliminates': 1.0, 'them': 1.0, 'baby': 2.0, 'because': 1.0, 'us': 1.0, 'sleeper': 1.0, 'this': 3.0, 'muffled': 1.0, 'so': 4.0, 'kept': 1.0, 'months': 1.0, '5': 1.0, 'her': 1.0, 'for': 2.0, 'love': 1.0, 'on': 3.0, 'your': 1.0, 'they': 1.0, 'if': 1.0, 'hear': 1.0, 'first': 1.0, 'with': 1.0, 'will': 1.0, 'the': 2.0, 'is': 1.0, 'more': 1.0, 'great': 2.0, 'my': 2.0, 'of': 2.0, 'by': 1.0, 'light': 1.0, 'life': 1.0, 'not': 1.0, 'would': 1.0, 'never': 1.0, 'sudden': 1.0, 'even': 2.0, 'got': 1.0, 'second': 1.0, 'frightened': 1.0, 'doesn': 1.0, 'was': 2.0, 'use': 1.0, 'content': 1.0, 'we': 2.0, 't': 2.0, 'a': 3.0, 'keep': 2.0, 'at': 1.0, 'lot': 2.0, 'it': 6.0, 'she': 1.0, 'naps': 1.0, 'anything': 2.0, 'and': 4.0, 'worked': 2.0, 'child': 3.0, 'sound': 2.0, 'out': 3.0, 'proof': 1.0, 'that': 2.0, '2': 1.0, 'but': 1.0, 'can': 1.0}
Word element => {'in': 1.0, 'cute': 1.0, 'are': 1.0, 'people': 1.0, 'ears': 1.0, 'they': 1.0, 'has': 1.0, 'complimenting': 1.0, 'big': 1.0, 'how': 1.0, 'adjust': 1.0, 'he': 2.0, 'this': 1.0, 'also': 1.0, 'will': 1.0, 'banz': 1.0, 'first': 1.0, 'nicely': 1.0, 'head': 1.0, 'makes': 1.0, 'old': 1.0, 'i': 2.0, 'guess': 1.0, 'worrying': 1.0, 'would': 1.0, 'be': 1.0, 'him': 1.0, 'sons': 1.0, 'at': 1.0, 'to': 2.0, 'that': 1.0, 'little': 1.0, 'worried': 1.0, 'every': 1.0, 'small': 1.0, 'was': 1.0, 'listen': 1.0, 'my': 2.0, 'looks': 1.0, 'month': 1.0, 'fit': 2.0, 'too': 1.0, 'and': 2.0, 'me': 1.0, 'later': 1.0, 'constantly': 1.0, 'on': 1.0, 'friday': 1.0, 'a': 2.0, 'we': 1.0, 'live': 1.0, 'but': 1.0, '2': 1.0, 'music': 1.0, 'them': 1.0, 'baby': 1.0, 'about': 1.0, 'possible': 1.0, 'without': 1.0}
Word element => {'ears': 1.0, 'protecting': 1.0, 'were': 1.0, 'that': 1.0, 'confident': 1.0, 'felt': 1.0, 'his': 1.0, 'speakers': 1.0, 'loud': 1.0, 'with': 1.0, 'transportation': 1.0, 'sleep': 1.0, 'use': 1.0, 'month': 1.0, 'on': 1.0, '5': 1.0, 'they': 1.0, 'public': 1.0, 'perfecthelped': 1.0, 'poppinfit': 1.0, 'majorly': 1.0, 'bbq': 1.0, 'and': 2.0, 'my': 1.0, 'color': 1.0, 'bart': 1.0, 'old': 1.0, 'i': 1.0, 'to': 1.0, 'was': 1.0, 'able': 1.0, 'at': 1.0, 'them': 1.0, 'a': 1.0, 'park': 1.0}
Word element => {'seem': 1.0, 'they': 2.0, 'to': 2.0, 'seems': 1.0, 'like': 1.0, 'head': 1.0, 'of': 1.0, 'goes': 1.0, 'which': 1.0, 'when': 1.0, 'round': 1.0, 'block': 1.0, 'grow': 1.0, 'pull': 1.0, 'my': 1.0, 'are': 3.0, 'so': 2.0, 't': 1.0, 'the': 4.0, 'adjustable': 1.0, 'these': 1.0, 'kiddo': 1.0, 'he': 1.0, 'it': 1.0, 'with': 1.0, 'sounds': 1.0, 'on': 3.0, 'them': 1.0, 'appreciate': 1.0, 'soft': 1.0, 'i': 1.0, 'earmuffs': 1.0, 'top': 1.0, 'around': 1.0, 'doesn': 1.0, 'will': 1.0, 'inside': 1.0, 'and': 2.0, 'padded': 1.0, 'hair': 1.0, 'his': 2.0, 'part': 1.0, 'that': 1.0}
Word element => {'in': 1.0, 'cute': 1.0, 'darn': 1.0, 'looked': 1.0, 'plus': 1.0, 'all': 1.0, 'through': 1.0, 'slept': 1.0, 'quite': 1.0, 'shots': 1.0, 'apparently': 1.0, 'did': 1.0, 'pretty': 1.0, 'very': 1.0, 'day': 1.0, 'he': 4.0, 'gun': 1.0, 'with': 1.0, 'since': 1.0, 'sons': 1.0, 'perfectly': 1.0, 'shoot': 1.0, 'didn': 1.0, 'clay': 1.0, 'him': 2.0, 'would': 1.0, 'my': 1.0, 'get': 1.0, 'shot': 1.0, 'just': 1.0, 'not': 1.0, 'muffled': 1.0, 'pigeon': 1.0, 'on': 1.0, 'was': 3.0, 'it': 2.0, 'arrive': 1.0, 'only': 1.0, 'much': 1.0, 'purchased': 1.0, 'old': 1.0, 'i': 2.0, 'when': 1.0, 'and': 3.0, 'too': 1.0, 'they': 3.0, '2mo': 1.0, 'these': 1.0, 'the': 2.0, 'quickly': 1.0, 'well': 1.0, 'hot': 1.0, 't': 1.0, 'a': 1.0, 'we': 1.0, 'for': 2.0, 'fit': 1.0, 'afraid': 1.0, 'sweaty': 1.0, 'them': 2.0, 'so': 2.0, 'but': 1.0, 'really': 1.0}
Word element => {'bright': 1.0, 'by': 1.0, 'totally': 1.0, 'anything': 1.0, 'assuming': 1.0, 'am': 1.0, 'i': 1.0, 'old': 1.0, 'love': 1.0, 'for': 2.0, 'them': 1.0, 'mesmerized': 1.0, 'fireworks': 1.0, 'colors': 1.0, 'baby': 1.0, 'she': 3.0, 'our': 1.0, 'the': 1.0, 't': 1.0, '2': 1.0, 'these': 1.0, 'bought': 1.0, 'was': 1.0, '4th': 1.0, 'month': 1.0, 'girl': 1.0, 'of': 1.0, 'or': 1.0, 'july': 1.0, 'every': 1.0, 'loved': 1.0, 'second': 1.0, 'exploding': 1.0, 'never': 1.0, 'couldn': 1.0, 'and': 1.0, 'hear': 1.0, 'flinched': 1.0, 'so': 1.0}
Word element => {'hurt': 1.0, 'get': 1.0, 'ears': 1.0, 'little': 1.0, 'option': 1.0, 'great': 1.0, 'don': 1.0, 'a': 1.0, 'and': 1.0, 'mowing': 1.0, 'daughter': 1.0, 't': 1.0, 'this': 1.0, 'loves': 2.0, 'my': 1.0, 'the': 1.0, 'outdoors': 1.0, 'her': 2.0, 'so': 2.0, 'is': 1.0, 'with': 1.0, 'dad': 1.0}
Word element => {'size': 1.0, 'for': 1.0, 'search': 1.0, 'about': 1.0, 'm': 1.0, 'food': 1.0, 'their': 1.0, 'cooking': 1.0, 'prefer': 1.0, 'still': 1.0, 'results': 1.0, 'happier': 1.0, 'couldn': 1.0, 'them': 1.0, 'using': 1.0, 'really': 1.0, 'first': 1.0, 'stayed': 1.0, 'too': 1.0, 'and': 2.0, 'old': 1.0, 'she': 1.0, 'month': 1.0, '8': 1.0, 'an': 1.0, 'week': 1.0, 'or': 1.0, 'off': 2.0, 'stairwells': 1.0, 'though': 1.0, 'twice': 1.0, 'chamber': 1.0, 'morning': 1.0, 'be': 1.0, 'within': 1.0, 'entire': 1.0, 'bought': 1.0, 'pitch': 1.0, 'echoing': 1.0, 'at': 1.0, 'with': 1.0, '230': 1.0, 'that': 1.0, 'asleep': 1.0, 'the': 5.0, 'stop': 1.0, 'after': 1.0, 'time': 2.0, 'so': 1.0, 'expose': 1.0, 'went': 2.0, 'neighbors': 1.0, 'high': 1.0, 'my': 4.0, 'in': 2.0, 'fire': 1.0, 'would': 2.0, 'alarm': 2.0, 'building': 1.0, 'apt': 1.0, 'a': 2.0, 't': 2.0, 'we': 1.0, 'pair': 1.0, 'of': 1.0, 'these': 2.0, 'ridiculously': 1.0, 'loud': 1.0, 'this': 1.0, 'become': 1.0, 'i': 4.0, 'didn': 1.0, 'if': 1.0, 'want': 1.0, 'our': 1.0, 'to': 3.0, 'daughter': 1.0, 'over': 1.0, 'anyway': 1.0, 'screeching': 1.0, 'just': 1.0, 'slipped': 1.0, 'on': 1.0}
Word element => {'activities': 1.0, 'pre': 1.0, 'looking': 1.0, 'pacifier': 1.0, 'mesmerized': 1.0, 'is': 1.0, 'completely': 1.0, 'one': 1.0, 'little': 1.0, 'loud': 1.0, 'being': 1.0, 'viewing': 1.0, 'for': 1.0, 'july': 1.0, 'fourth': 1.0, 'used': 1.0, 'startled': 1.0, 'even': 1.0, 'padded': 1.0, 'well': 1.0, 'parent': 1.0, 'booms': 1.0, 're': 2.0, 'about': 1.0, 'concerned': 1.0, 'earmuffs': 1.0, 'i': 4.0, 'continue': 2.0, 'point': 1.0, 'noticed': 1.0, 'makes': 1.0, 'new': 1.0, 'would': 1.0, 'allow': 1.0, 'born': 1.0, 'firework': 1.0, 'hearing': 2.0, 'recommend': 1.0, 'doesn': 1.0, 'was': 2.0, 'wanted': 1.0, 'husband': 1.0, 'kiddo': 1.0, 'the': 7.0, 'some': 1.0, 'these': 2.0, 'such': 1.0, 'and': 4.0, 'us': 1.0, 'm': 1.0, 'my': 2.0, 'forgetting': 1.0, 'frequent': 1.0, 'concerts': 1.0, 'on': 2.0, 'put': 1.0, 'fests': 1.0, 'think': 1.0, 't': 1.0, 's': 1.0, 'a': 2.0, 'we': 3.0, 'lot': 1.0, 'music': 1.0, 'suck': 1.0, 'they': 2.0, 'loss': 2.0, 'mind': 1.0, 'with': 2.0, 'this': 2.0, 'them': 3.0, 'baby': 3.0, 'in': 2.0, 'way': 1.0, 'me': 1.0, 'not': 2.0, 'by': 1.0, 'just': 1.0, 'that': 2.0, 'stressing': 1.0, 'child': 2.0, 'over': 1.0, 'once': 2.0, 'of': 4.0, 'instead': 1.0, 'course': 1.0, 'their': 1.0, 'should': 1.0, 'be': 1.0, 'any': 1.0, 'to': 6.0, 'our': 1.0, 'tow': 1.0, 'as': 2.0}
Word element => {'hearing': 1.0, 'son': 1.0, 'us': 1.0, 'come': 1.0, 'man': 1.0, 'had': 1.0, 'well': 1.0, 'pretty': 1.0, 'they': 1.0, 'for': 1.0, 'national': 1.0, 'them': 2.0, 'up': 1.0, 'outdoor': 1.0, 'having': 1.0, 'by': 1.0, 'bothered': 1.0, 'old': 1.0, 'i': 2.0, 'took': 1.0, 'he': 2.0, 'this': 1.0, 'wasn': 1.0, 'so': 1.0, 'concert': 1.0, 'big': 1.0, 'bought': 1.0, 'an': 2.0, 'work': 1.0, 'but': 1.0, 'protecting': 1.0, 'house': 1.0, 'as': 1.0, 'our': 2.0, 'to': 2.0, 'the': 5.0, 'asleep': 1.0, 'identified': 1.0, 'use': 1.0, 'who': 1.0, 'outing': 1.0, 'audiologist': 1.0, 'during': 1.0, 'himself': 1.0, 'did': 1.0, 'also': 1.0, 'slept': 1.0, 'must': 1.0, 'have': 1.0, 'him': 1.0, 'wear': 1.0, 'around': 1.0, 's': 1.0, 't': 1.0, 'we': 2.0, 'a': 2.0, 'when': 1.0, 'local': 1.0, 'thanked': 1.0, 'little': 1.0, '5': 1.0, 'before': 1.0, 'opening': 1.0, 'fell': 1.0, 'month': 1.0, 'band': 1.0, 'on': 1.0, 'natives': 1.0, 'and': 2.0, 'though': 1.0, 'closer': 1.0}
Word element => {'forgets': 1.0, 'they': 2.0, 'on': 1.0, 'think': 1.0, 'taken': 1.0, 'ever': 1.0, 'hasn': 1.0, 'her': 2.0, 'take': 1.0, 'live': 1.0, 'now': 1.0, 'comfortable': 1.0, '1': 1.0, 'that': 1.0, 'loves': 1.0, 'enough': 1.0, 'off': 2.0, 're': 3.0, 'these': 2.0, 'we': 3.0, 't': 2.0, 'although': 1.0, 'glad': 1.0, 'time': 1.0, 'so': 2.0, 'got': 1.0, 'worried': 1.0, 'for': 1.0, 'one': 1.0, 'shows': 1.0, 'little': 1.0, 'about': 2.0, 'hearing': 1.0, 'to': 2.0, 'our': 1.0, 'all': 1.0, 'i': 2.0, 'she': 4.0, 'it': 2.0, 'worrying': 1.0, 'would': 1.0, 'out': 1.0, 'block': 1.0, 'and': 2.0, 'too': 1.0, 'much': 1.0, 'noise': 2.0, 'without': 1.0, 'the': 2.0, 'muffle': 1.0, 'can': 1.0, 'music': 1.0, '2': 1.0, 'but': 1.0, 'doesn': 1.0, 'seems': 1.0, 'takes': 1.0, 'hats': 1.0}
Word element => {'plus': 1.0, 'is': 1.0, 'growing': 1.0, 'adjustability': 1.0, 'also': 1.0, 'their': 2.0, 'wear': 1.0, 'but': 1.0, 'looked': 1.0, 'with': 2.0, 'loud': 1.0, 'baby': 1.0, 'wore': 1.0, 'them': 3.0, 'july': 1.0, 'irritability': 1.0, 'of': 1.0, 'these': 1.0, 'actually': 1.0, 'for': 1.0, 'did': 2.0, 'effective': 1.0, 'huge': 1.0, 'bought': 1.0, 'be': 1.0, 'term': 1.0, '4th': 1.0, 'noises': 1.0, 'any': 1.0, 'our': 1.0, 'to': 1.0, 'or': 1.0, 'flinch': 1.0, 'a': 2.0, 't': 2.0, 'we': 1.0, 'on': 2.0, '3': 1.0, 'job': 1.0, 'the': 2.0, 'without': 1.0, 'she': 4.0, 'month': 1.0, 'old': 1.0, 'i': 1.0, 'at': 1.0, 'me': 1.0, 'do': 1.0, 'like': 1.0, 'fussiness': 1.0, 'what': 1.0, 'her': 1.0, 'long': 1.0, 'when': 1.0, 'you': 1.0, 'want': 1.0, 'they': 2.0, 'seemed': 1.0, 'because': 1.0, 'didn': 2.0, 'have': 1.0}
Word element => {'cute': 1.0, 'soft': 1.0, 'safely': 1.0, 'use': 1.0, 'arrive': 1.0, 'product': 1.0, 'long': 1.0, 'so': 2.0, 'that': 1.0, 'grown': 1.0, 'i': 1.0, 'took': 1.0, 'to': 1.0, 'had': 2.0, 'could': 1.0, 'forgotten': 1.0, 'and': 2.0, 'my': 1.0, 'about': 1.0, 'baby': 1.0, 'big': 1.0, 'it': 4.0, 'he': 1.0, 'no': 1.0, 'fine': 1.0, 'is': 2.0, 'longer': 1.0}
Word element => {'not': 1.0, 'worth': 1.0, 'otherwise': 1.0, 'infant': 1.0, 'for': 1.0, 'ok': 1.0}
Word element => {'not': 1.0, 'will': 1.0, 'it': 1.0, 'on': 1.0, 'with': 1.0, 'play': 1.0, 'toy': 1.0, 'to': 1.0, 'cute': 1.0, 'sleep': 1.0, 'but': 2.0, 'couple': 1.0, 'my': 1.0, 'used': 1.0, 'a': 2.0, 'times': 1.0, 'twins': 1.0, 'actually': 1.0, 'only': 1.0, 'like': 2.0}
Word element => {'at': 1.0, 'used': 1.0, 'being': 1.0, 'not': 1.0, 'just': 1.0, 'right': 1.0, 'there': 1.0, 'of': 1.0, 'as': 1.0, 'now': 1.0, 'to': 1.0, 't': 1.0, 'sits': 1.0, 'more': 1.0, 'cost': 1.0, 'would': 1.0, 'for': 1.0, 'like': 1.0, 'could': 1.0, 'all': 1.0, 'suitable': 1.0, 'avg': 1.0, 'toddler': 1.0, 'probably': 1.0, 'and': 1.0, 'pillow': 1.0, 'so': 1.0, 'small': 2.0, 'nb': 1.0, 'return': 1.0, 'a': 2.0, 'is': 1.0, 'really': 3.0, 'fit': 1.0, 'forget': 1.0, 's': 1.0, 'don': 1.0, 'about': 1.0, 'only': 2.0, 'this': 1.0, 'it': 6.0, 'hard': 1.0, 'infant': 1.0, 'smaller': 1.0, 'than': 1.0}
Word element => {'would': 1.0, 'look': 1.0, 'kid': 1.0, 'it': 1.0, 'great': 1.0, 'basket': 1.0, 'this': 2.0, 'item': 2.0, 'is': 1.0, 'an': 1.0, 'super': 1.0, 'gift': 1.0, 'cute': 1.0, 'makes': 1.0, 'excellent': 1.0, 'any': 1.0, 'and': 1.0, 'easter': 1.0}
Word element => {'knees': 1.0, 'over': 1.0, 'can': 1.0, 'protection': 1.0, 'bonus': 1.0, 'leg': 1.0, 'to': 1.0, 'be': 2.0, 'arrives': 1.0, 'the': 1.0, 'these': 1.0, 'mother': 1.0, 'sure': 1.0, 'when': 1.0, 'warmers': 1.0, 'or': 1.0, 'new': 1.0, 'dye': 1.0, 'cute': 1.0, 'gift': 1.0, 'smell': 1.0, 'of': 2.0, 'they': 1.0, 'has': 1.0, 'strong': 1.0, 'pulled': 1.0, 'a': 2.0, 'using': 1.0, 'air': 1.0, 'before': 1.0, 'crawlers': 1.0, 'loved': 1.0, 'as': 3.0, 'giving': 1.0, 'and': 1.0, 'bother': 1.0, 'baby': 1.0}
Word element => {'ordering': 1.0, 'will': 1.0, 'helps': 1.0, 'read': 1.0, 'hand': 1.0, 'with': 1.0, 'proper': 1.0, 'sense': 1.0, 'who': 1.0, 'more': 1.0, 'husband': 1.0, 'laundry': 2.0, 'great': 1.0, 'times': 1.0, 'several': 1.0, 'washed': 1.0, 'zero': 1.0, 'washing': 1.0, 'also': 1.0, 'were': 1.0, 'hope': 1.0, 'toilet': 1.0, 'out': 2.0, 'wrang': 1.0, 'written': 1.0, 'there': 1.0, 'other': 1.0, 'bottom': 1.0, 'away': 1.0, 'smell': 3.0, 'help': 1.0, 'top': 1.0, 'liner': 2.0, 'fleece': 1.0, 'thin': 1.0, 'lay': 1.0, 'not': 1.0, 'saturated': 1.0, 'dry': 1.0, 'work': 1.0, 'over': 1.0, 'happen': 1.0, 'would': 1.0, 'what': 1.0, 'see': 2.0, 'follow': 1.0, 'waited': 1.0, '2': 1.0, 'still': 2.0, 'expecting': 1.0, 'shouldn': 1.0, 'then': 1.0, 'booty': 1.0, 'moisture': 1.0, 'a': 7.0, 't': 2.0, 'wasn': 1.0, 'using': 1.0, 'looked': 2.0, 'mama': 1.0, 'from': 2.0, 'just': 5.0, 'this': 2.0, 'few': 1.0, 'her': 4.0, 'different': 1.0, 'problems': 1.0, 'that': 6.0, 'thinner': 1.0, 'ordered': 1.0, 'time': 1.0, 'so': 1.0, 'got': 1.0, 'daughter': 1.0, 'absorbency': 2.0, 'and': 9.0, 'now': 2.0, 'almost': 1.0, 'about': 1.0, 'awesome': 1.0, 'lo': 1.0, 'me': 1.0, 'my': 2.0, 'in': 8.0, 'did': 1.0, 'keep': 1.0, '9': 1.0, 'research': 1.0, 'months': 1.0, 'wetter': 1.0, 'like': 2.0, 'rather': 1.0, 'skeptical': 1.0, 'as': 2.0, 'diaper': 3.0, 'heavy': 1.0, 'are': 1.0, 'first': 1.0, 'sight': 1.0, 'these': 3.0, 'become': 1.0, 'slept': 1.0, 'i': 14.0, 'do': 1.0, 'put': 3.0, 'long': 1.0, 'liners': 1.0, 'on': 2.0, 'you': 2.0, 'night': 2.0, 'had': 2.0, 'was': 5.0, 'which': 1.0, 'leaking': 1.0, 'boil': 1.0, 'after': 2.0, 'at': 1.0, 'is': 3.0, 'she': 3.0, 'many': 1.0, 'to': 9.0, 'pretty': 1.0, 'right': 1.0, 'comment': 1.0, 'lasting': 1.0, 'having': 1.0, 'morning': 2.0, 'resorted': 1.0, 'be': 1.0, 'disposable': 1.0, 'came': 2.0, 'clean': 1.0, 'leaks': 1.0, 'inserts': 2.0, 'super': 3.0, 'totally': 2.0, 'under': 1.0, 'even': 3.0, 'cloth': 3.0, '10': 2.0, 'for': 1.0, 'extra': 1.0, 'but': 3.0, 'only': 1.0, 'amazing': 1.0, 'quickly': 1.0, 'impressed': 1.0, 'finally': 1.0, 'of': 4.0, 'the': 11.0, 'doing': 1.0, 'materials': 1.0, 'quite': 1.0, 'scheduled': 1.0, 'j': 1.0, 'their': 1.0, 'pricey': 1.0, 'capacity': 1.0, 'little': 1.0, 'they': 5.0, 'no': 1.0, 'mail': 2.0, 'before': 1.0, 'rules': 1.0, 'delivery': 1.0, 'problem': 1.0, 'thick': 1.0, 'date': 1.0, 'them': 2.0, 'has': 2.0, 'always': 1.0, 'difficulty': 1.0, 'than': 1.0, 'way': 1.0, 'have': 3.0, 'note': 1.0, 'wick': 1.0, 'til': 2.0, 'admit': 1.0}
Word element => {'20': 1.0, '1': 1.0, 'misled': 1.0, 'was': 2.0, 'its': 1.0, 'the': 1.0, 'these': 1.0, 'purchased': 1.0, '3': 2.0, 'paid': 1.0, 'op': 1.0, 'gladly': 1.0, 'picture': 1.0, 'thinking': 1.0, 'i': 7.0, 'buy': 1.0, 'amazingly': 1.0, 'but': 1.0, 'stars': 1.0, 'love': 1.0, 'purchasing': 1.0, 'item': 1.0, 'this': 3.0, 'insert': 1.0, 'when': 2.0, 'again': 1.0, 'however': 1.0, 'off': 1.0, 'because': 1.0, 'not': 1.0, 'just': 1.0, 'them': 1.0, 'gave': 1.0, 'that': 1.0, 'going': 1.0, 'a': 2.0, 'sat': 1.0, 'of': 1.0, 'inserts': 1.0, 'absorbs': 1.0, 'plus': 1.0, 'each': 1.0, 'would': 1.0, 'at': 1.0, 'price': 1.0, '35': 1.0, 'shipping': 1.0, 'from': 1.0, 'ordered': 1.0, 'co': 1.0, 'and': 1.0}
Word element => {'that': 1.0, 'beat': 1.0, 'priced': 1.0, 'the': 1.0, 'touch': 1.0, 'cloth': 1.0, 'still': 1.0, 'dry': 2.0, '10': 1.0, 'no': 1.0, 'hours': 1.0, 'just': 1.0, 'used': 1.0, 'had': 2.0, 'leaks': 1.0, 'can': 1.0, 'change': 1.0, 'is': 2.0, 'doubler': 1.0, 'this': 4.0, 'felt': 1.0, 'it': 1.0, 'last': 1.0, 'after': 2.0, 'so': 1.0, 'hemp': 1.0, 'see': 1.0, 'diaper': 1.0, 'to': 4.0, 'poo': 1.0, 'as': 1.0, 'best': 2.0, 'and': 4.0, 'due': 1.0, 'would': 1.0, 'night': 1.0, 'gdiaper': 1.0, 'love': 1.0, 'how': 1.0, 'much': 1.0, 'further': 1.0, 't': 1.0, 'thirsties': 1.0, 'go': 1.0, 'a': 1.0, 'could': 1.0, 'far': 1.0, 'wow': 1.0, 'stay': 1.0, 'my': 1.0, 'liner': 2.0, 'trying': 1.0, 'bestbottoms': 1.0}
Word element => {'definitely': 1.0, 'they': 1.0, 'difference': 1.0, 'tremendous': 1.0, 'if': 1.0, 'not': 1.0, 'notice': 1.0, 'sure': 1.0, 'far': 1.0, 'reasonable': 1.0, 't': 1.0, 'the': 1.0, 'due': 1.0, 'them': 1.0, 'ordered': 1.0, 'inserts': 1.0, 'for': 1.0, 'good': 2.0, 'things': 1.0, 'ways': 1.0, 'lot': 1.0, 'a': 2.0, 'increase': 1.0, 'heard': 1.0, 'don': 1.0, 'price': 1.0, 'about': 1.0, 'bamboo': 1.0, 'm': 2.0, 'leak': 1.0, 'of': 3.0, 'always': 1.0, '7': 1.0, 'looking': 1.0, 'to': 2.0, 'absorbancy': 1.0, 'my': 1.0, 'i': 5.0, 'cloth': 1.0, 'but': 1.0, 'charcoal': 1.0, 'diapers': 1.0, 'so': 3.0}
Word element => {'disposables': 1.0, 'buy': 1.0, 'just': 1.0, 'could': 1.0, 'rash': 1.0, 'baby': 1.0, 'yard': 1.0, 'up': 1.0, 'build': 1.0, 'enough': 1.0, 'would': 1.0, 'super': 1.0, 'smelled': 2.0, 'they': 1.0, 'have': 1.0, 'vigorous': 1.0, 'so': 2.0, 'time': 1.0, 'but': 2.0, 'naps': 1.0, 'daughter': 1.0, 'absorbency': 1.0, 'together': 1.0, 'for': 4.0, 'barn': 1.0, 'way': 1.0, 'a': 3.0, 'wife': 1.0, 'from': 1.0, 'terrible': 2.0, 'that': 1.0, 'next': 1.0, 'our': 1.0, 'to': 2.0, 'pretty': 1.0, 'and': 5.0, 'wash': 1.0, 'use': 1.0, 'nights': 1.0, 'thought': 1.0, 'it': 1.0, 'i': 2.0, 'my': 1.0, 'used': 1.0, 'with': 2.0, 'no': 2.0, 'good': 2.0, 'like': 1.0, 'staining': 1.0, 'figured': 1.0, 'longer': 1.0, 'the': 2.0, 'these': 2.0, 'great': 1.0, 'hold': 1.0, 'spend': 1.0, 'washing': 2.0, 'more': 1.0, 'detergent': 2.0, 'money': 1.0, 'bought': 1.0, 'utilities': 1.0, 'rinse': 1.0, 'needed': 1.0, 'vinegar': 1.0, 'nope': 1.0, 'taken': 1.0, 'finally': 1.0, 'still': 1.0, 'pay': 1.0, 'soak': 1.0, 'smelling': 1.0, 'getting': 1.0, 'sure': 1.0, 'washed': 1.0, 'on': 2.0, 'regularly': 1.0, 'leaks': 1.0, 'again': 1.0, 'after': 1.0, 'somewhere': 1.0, 'unless': 1.0, 'you': 3.0, 'diaper': 1.0, 'leak': 1.0, 'want': 1.0, 'free': 1.0, 'nap': 1.0, 'its': 1.0, 'not': 1.0, 'stink': 1.0, 'very': 1.0, 'over': 1.0, 'efficient': 1.0, 'extra': 2.0, 'trying': 1.0, 'maybe': 1.0, 's': 1.0, 'giving': 1.0, 'keep': 1.0, 'first': 1.0, 'boys': 1.0, 'bad': 1.0}
Word element => {'leg': 1.0, 'baby': 1.0, 'their': 1.0, 'up': 1.0, 'dudding': 1.0, 'anyone': 1.0, 'recommend': 1.0, 'would': 1.0, 'cute': 1.0, 'are': 1.0, 'because': 1.0, 'son': 1.0, 'on': 1.0, 'use': 1.0, 'little': 2.0, 'didn': 1.0, 'but': 1.0, 'to': 1.0, 'these': 2.0, 't': 1.0, 'warmers': 1.0, 'fat': 1.0, 'my': 1.0, 'i': 2.0, 'thighs': 1.0, 'with': 1.0, 'he': 1.0, 'they': 2.0, 'has': 1.0, 'get': 1.0, 'and': 2.0, 'seemed': 1.0, 'a': 1.0, 'too': 1.0, 'tight': 1.0}
Word element => {'too': 1.0, 'me': 1.0, 'her': 1.0, 'happy': 1.0, 'i': 1.0, 'buy': 1.0, 'this': 1.0, 'with': 1.0, 'leg': 2.0, 'warmers': 2.0, 'my': 1.0, 'and': 2.0, 'product': 1.0, 'to': 1.0, 'she': 2.0, 'daughter': 1.0, 'great': 1.0, 'it': 1.0, 'love': 1.0}
Word element => {'an': 1.0, 'not': 1.0, 'was': 1.0, 'but': 1.0, 'perfect': 1.0, 'loves': 1.0, 'issue': 1.0, 'it': 2.0, 'wrong': 1.0, 'size': 1.0, 'cant': 1.0, 'and': 1.0, 'off': 1.0, 'she': 1.0, 'turn': 1.0, 'if': 1.0, 'you': 1.0, 'that': 2.0, 'there': 1.0, 'is': 2.0, 'anything': 1.0}
Word element => {'house': 1.0, 'in': 1.0, 'soft': 1.0, 'the': 1.0, 'my': 1.0, 'its': 1.0, 'because': 1.0, 'every': 1.0, 'loves': 1.0, 'can': 1.0, 'it': 4.0, 'i': 1.0, 'he': 2.0, 'plays': 1.0, 'throw': 1.0, 'son': 1.0, 'with': 1.0, 'day': 1.0, 'and': 1.0, 'like': 1.0}
Word element => {'time': 1.0, 'of': 1.0, 'short': 1.0, 'laughing': 1.0, 'on': 1.0, 'no': 1.0, 'their': 1.0, 'stars': 1.0, '5': 1.0, 'is': 3.0, 'him': 1.0, 'everything': 1.0, 'in': 1.0, 'reason': 1.0, 'will': 1.0, 'but': 3.0, 'give': 1.0, 'didn': 1.0, 'very': 2.0, 'with': 1.0, 'it': 3.0, 'only': 1.0, 'off': 1.0, 'loves': 2.0, 'elmo': 1.0, 'daughter': 1.0, 'my': 1.0, 't': 1.0, 'the': 1.0, 'amount': 1.0, 'expensive': 1.0, 'switch': 1.0, 'associated': 1.0, 'its': 1.0, 'relatively': 1.0, 'she': 1.0, 'a': 2.0, 'stop': 1.0, 'simple': 1.0, 'toy': 1.0, 'i': 1.0}
Word element => {'very': 1.0, 'sound': 1.0, 'small': 1.0, 'and': 1.0, 'little': 1.0, 'is': 1.0, 'the': 1.0, 'a': 1.0, 'low': 1.0, 'its': 1.0}
Word element => {'wash': 1.0, 'pull': 1.0, 'pulling': 1.0, 'off': 1.0, 'pay': 1.0, 'dont': 1.0, 'complaint': 1.0, 'if': 1.0, 'apart': 1.0, 'the': 3.0, 'can': 1.0, 'work': 1.0, 'so': 1.0, 'after': 2.0, 'well': 1.0, 'side': 1.0, 'on': 1.0, 'when': 2.0, 'you': 4.0, 'attention': 1.0, 'zip': 1.0, 'are': 2.0, 'them': 1.0, 'throw': 1.0, 'is': 1.0, 'say': 1.0, 'only': 2.0, 'it': 1.0, 'one': 3.0, 'of': 1.0, 'lock': 1.0, 'have': 1.0, 'had': 2.0, 'to': 1.0, 'now': 1.0, 'away': 2.0, 'these': 2.0, 'already': 1.0, 'even': 1.0, 'though': 1.0, 'they': 1.0, 'go': 1.0, 'dish': 1.0, 'washer': 1.0, 'safe': 1.0, 'throwing': 1.0, 'washing': 1.0, 'i': 1.0}
Word element => {'go': 1.0, 'on': 1.0, 'am': 1.0, 'her': 1.0, 'feed': 1.0, 'use': 1.0, 'also': 1.0, 'the': 1.0, 'my': 1.0, 'and': 1.0, 'it': 1.0, 'month': 1.0, 'when': 1.0, '4': 1.0, 'i': 2.0, 'in': 1.0, 'playing': 1.0, 'loves': 1.0, 'this': 1.0, 'to': 1.0, 'old': 1.0, 'toy': 1.0}
Word element => {'entertainment': 1.0, 'nice': 1.0, 'very': 1.0, 'ease': 1.0, 'booster': 1.0, 'the': 1.0, 'into': 1.0, 'growing': 1.0, 'see': 1.0, 'there': 1.0, 'leave': 1.0, 'don': 1.0, 'just': 2.0, 'this': 3.0, 'with': 2.0, 'seat': 3.0, 'to': 3.0, 'old': 1.0, 'i': 6.0, 'my': 2.0, 'enough': 1.0, 're': 1.0, 'needed': 1.0, 'home': 1.0, 'month': 1.0, 'she': 1.0, 'know': 1.0, 'table': 1.0, 'and': 5.0, 'granddaughter': 1.0, 'do': 1.0, 'has': 1.0, 'time': 1.0, 'not': 1.0, 'stay': 1.0, 'face': 2.0, 'at': 1.0, 'nana': 1.0, 'her': 5.0, 'secure': 2.0, 'short': 1.0, 'be': 1.0, 'for': 2.0, 'supposed': 1.0, 't': 1.0, 'a': 3.0, 's': 1.0, 'entertain': 1.0, 'am': 1.0, 'you': 1.0, 'started': 1.0, 'baby': 1.0, 'but': 1.0, 'food': 1.0, 'can': 2.0, 'sit': 1.0, 'on': 1.0, '6': 1.0, 'dining': 1.0, 'room': 1.0, 'in': 1.0}
Word element => {'of': 1.0, 'stage': 1.0, '3': 1.0, 'and': 1.0, 'growth': 1.0, 'reasonable': 1.0, 'feature': 1.0, 'i': 2.0, 'price': 1.0, 'chose': 1.0, 'loved': 1.0, 'this': 1.0, 'grand': 1.0, 'for': 1.0, 'daughter': 1.0, 'because': 1.0, 'my': 1.0, 'the': 2.0, 'was': 1.0}
Word element => {'be': 1.0, 'claims': 1.0, 'toddler': 1.0, 'hopeful': 1.0, 'no': 1.0, 'there': 1.0, 'use': 1.0, 'front': 1.0, '8230': 1.0, 'in': 2.0, 'infant': 1.0, 'an': 1.0, 'built': 1.0, 'till': 1.0, 'more': 1.0, 'is': 1.0, 'say': 1.0, 'have': 1.0, 'would': 1.0, 'i': 2.0, 'compared': 1.0, 'better': 2.0, 'much': 2.0, 'grabbing': 1.0, 'weeks': 1.0, 'slumping': 1.0, 'kept': 1.0, 'sit': 3.0, 'over': 2.0, 'support': 1.0, 'already': 1.0, 'purchased': 1.0, 'on': 1.0, '3': 1.0, 'was': 2.0, 'overall': 1.0, 'get': 1.0, 'this': 2.0, 'she': 5.0, 'it': 3.0, 'really': 2.0, 'months': 1.0, 'tray': 2.0, 'old': 1.0, 'my': 1.0, 'for': 2.0, 'daughter': 1.0, 'when': 1.0, 'and': 4.0, 'too': 2.0, 'wanting': 1.0, 'the': 7.0, 'manufacturer': 1.0, 'like': 1.0, 'which': 1.0, 'since': 1.0, 'inflexible': 1.0, 'at': 1.0, 'that': 1.0, 'high': 1.0, 'were': 1.0, 'time': 2.0, 'good': 1.0, 'her': 1.0, 'm': 1.0, 'arms': 1.0, 'just': 1.0, 'few': 1.0, 'toys': 2.0, 'short': 1.0, 'didn': 1.0, 'to': 7.0, 'seat': 3.0, 'as': 1.0, 'well': 1.0, 's': 2.0, 't': 1.0, 'a': 3.0, 'can': 1.0, 'bumbo': 2.0, 'sitting': 1.0, 'but': 2.0}
Word element => {'1': 1.0, 'psc': 1.0, 'i01': 1.0, 's00': 1.0, 'o03': 1.0, 'details': 1.0, 'take': 1.0, 'item': 1.0, 'will': 1.0, 'cheap': 1.0, 'expensive': 1.0, 'for': 1.0, 's': 2.0, 'a': 3.0, 'you': 1.0, 'am': 1.0, 'as': 1.0, 'to': 3.0, 'an': 1.0, 'all': 1.0, 'operation': 1.0, 'b000jvxzf2': 1.0, 'are': 1.0, 'first': 1.0, 'fair': 1.0, 'distinctly': 1.0, 'hair': 1.0, 'situations': 1.0, 'that': 2.0, 'would': 1.0, 'following': 1.0, 'daughter': 1.0, 'seat': 3.0, 'in': 4.0, 'wiggling': 1.0, 'fun': 1.0, 'it': 8.0, 'assemble': 1.0, 'fond': 1.0, 'this': 2.0, 'my': 2.0, 'so': 3.0, 'not': 3.0, 'something': 1.0, 'straps': 1.0, 'worth': 1.0, 'ordered': 1.0, 'i': 4.0, 'did': 1.0, 'while': 1.0, 'sit': 1.0, 'what': 1.0, 'the': 5.0, 'of': 3.0, 'bathroom': 1.0, 'located': 1.0, 'ref': 1.0, 'is': 2.0, 'around': 1.0, 'very': 1.0, 'challenging': 1.0, 'get': 1.0, 'has': 1.0, 'them': 1.0, 'secured': 1.0, 'feel': 1.0, 'your': 1.0, 'ie': 1.0, 'lastly': 1.0, 'product': 1.0, 'child': 1.0, 'although': 1.0, 'chair': 1.0, 'circular': 1.0, 'tray': 1.0, 'does': 1.0, 'move': 1.0, 'utf8': 1.0, 'up': 1.0, 'takes': 1.0, 'ridiculously': 1.0, 'amount': 1.0, 'ended': 1.0, 'force': 1.0, 'secondly': 1.0, 'multiple': 1.0, 'and': 1.0, 'remotely': 1.0, 'ordering': 1.0, 'better': 1.0, 'by': 1.0, 'same': 1.0, 'brand': 1.0, 'com': 1.0, 'but': 1.0, 'work': 1.0, 'significantly': 1.0, 'design': 1.0, 'http': 1.0, 'www': 1.0, 'amazon': 1.0, 'have': 1.0, 'gp': 1.0, 'smooth': 1.0, 'oh': 1.0}
Word element => {'versatile': 1.0, 'young': 1.0, 'overwhelming': 1.0, 'provide': 1.0, 'enough': 2.0, 'has': 1.0, 'summer': 1.0, 'generally': 1.0, 'was': 1.0, 'oldest': 1.0, 'had': 1.0, 'did': 1.0, 'picked': 1.0, 'easy': 1.0, 'quite': 1.0, 'really': 1.0, 'for': 2.0, 'where': 1.0, 'am': 1.0, 'you': 1.0, 'line': 1.0, 'bit': 1.0, 'look': 1.0, 'fine': 1.0, 'access': 1.0, 'own': 1.0, 'different': 1.0, 'her': 1.0, 'problem': 1.0, 'pretty': 1.0, 'mad': 1.0, 'chair': 4.0, 'toys': 3.0, 'found': 1.0, 'this': 3.0, 'with': 1.0, 'girl': 1.0, 'sitting': 1.0, 'bumbo': 2.0, 'but': 2.0, 'particularly': 1.0, 'expect': 1.0, 'big': 1.0, 'the': 9.0, 'fits': 1.0, 'my': 2.0, 'and': 4.0, 'more': 1.0, 'is': 2.0, 'on': 1.0, '3': 1.0, 'turning': 1.0, 'in': 2.0, 'turn': 1.0, 'entertainment': 1.0, 'tray': 2.0, 'months': 1.0, '16lbs': 1.0, 'baby': 3.0, 'over': 1.0, 'up': 1.0, 'don': 1.0, 'going': 1.0, 't': 1.0, 'a': 3.0, 's': 2.0, 'it': 2.0, 'she': 4.0, 'glad': 1.0, 'insert': 1.0, 'just': 1.0, 'butterfly': 1.0, 'no': 1.0, 'about': 2.0, 'several': 1.0, 'reviewers': 1.0, 'mentioned': 1.0, 'if': 1.0, 'being': 1.0, 'still': 1.0, 'difficult': 2.0, 'not': 2.0, 'to': 6.0, 'much': 1.0, 'its': 4.0, 'loves': 1.0, 'that': 3.0, 'bad': 1.0, 'i': 5.0, 'ever': 1.0, 'be': 2.0}
Word element => {'it': 1.0, 'loves': 1.0, 'said': 1.0, 'for': 1.0, 'she': 1.0, 'gift': 1.0, 'granddaughter': 1.0, 'a': 1.0, 'nuff': 1.0, 'as': 1.0, 'got': 1.0}
Word element => {'hoped': 1.0, 'yells': 1.0, 'hates': 1.0, 'now': 1.0, 'away': 1.0, 'keep': 2.0, 'some': 1.0, 'but': 1.0, 'it': 7.0, 'when': 1.0, 'bumblebee': 1.0, 'tries': 1.0, 'for': 1.0, 'product': 1.0, 'comfortable': 1.0, 'feel': 1.0, 'reason': 1.0, 'using': 1.0, 'frustrated': 1.0, 'like': 1.0, 'she': 4.0, 'baby': 2.0, 'to': 7.0, 'all': 1.0, 'as': 2.0, 'into': 1.0, 'that': 2.0, 'difficult': 1.0, 'gets': 1.0, 'seem': 1.0, 'slides': 1.0, 'in': 1.0, 'months': 2.0, 'looks': 1.0, 'my': 2.0, 'entire': 1.0, 'tray': 2.0, 'one': 1.0, 'piece': 1.0, 'agree': 1.0, 'close': 2.0, 'buy': 1.0, 'hit': 1.0, 'even': 1.0, 'part': 1.0, 'also': 1.0, 'front': 1.0, 'old': 1.0, 'i': 5.0, 'cups': 1.0, '4': 1.0, 'rotate': 1.0, 'up': 1.0, 'hard': 1.0, 'over': 1.0, 'don': 2.0, 'lose': 1.0, 'and': 4.0, 'at': 2.0, 'is': 2.0, 'more': 1.0, 'really': 1.0, 'was': 1.0, 'grippers': 1.0, 'every': 1.0, '3': 1.0, 'on': 1.0, 'line': 1.0, 'started': 1.0, 'toys': 1.0, 'falling': 1.0, 'not': 1.0, 'track': 1.0, 'sure': 1.0, 'easy': 1.0, 'come': 1.0, 'toy': 1.0, 'move': 1.0, 'out': 1.0, 'the': 9.0, 'of': 2.0, 'snack': 1.0, 'they': 1.0, 'are': 1.0, 'thing': 1.0, 'far': 1.0, 'bottom': 1.0, 'off': 1.0, 'time': 1.0, 'have': 2.0, 't': 2.0, 'regret': 1.0, 'this': 1.0, 'why': 1.0, 'just': 1.0, 'liked': 1.0, 'much': 1.0, 'would': 1.0}
Word element => {'girl': 1.0, 'for': 2.0, 'colors': 2.0, 'have': 1.0, 'they': 1.0, 'enjoys': 2.0, 'bored': 1.0, 'girls': 1.0, 'has': 2.0, 'boy': 1.0, 'so': 1.0, 'coffee': 1.0, 'chair': 1.0, 'toys': 1.0, 'little': 1.0, 'she': 4.0, 'it': 1.0, 'this': 1.0, 'with': 1.0, 'on': 1.0, 'a': 1.0, 'we': 2.0, 'direct': 1.0, 'of': 1.0, 'sponge': 1.0, 'view': 1.0, 'her': 3.0, 'my': 2.0, 'pants': 1.0, 'tv': 1.0, 'loves': 1.0, 'bob': 1.0, 'set': 1.0, 'square': 1.0, 'daughter': 1.0, 'watching': 1.0, 'giggles': 2.0, 'grandaughter': 1.0, 'to': 1.0, 'and': 4.0, 'get': 1.0, 'laughs': 1.0, 'also': 2.0, 'the': 3.0, 'playing': 1.0, 'table': 1.0, 'like': 1.0, 'boys': 1.0, 'entertain': 1.0, 'not': 1.0, 'let': 1.0, 'keep': 1.0, 'at': 1.0, 'one': 1.0, 'house': 1.0}
Word element => {'activity': 1.0, 'supportive': 1.0, 'and': 1.0, 'stable': 1.0, 'in': 1.0, 'available': 1.0, 'chair': 1.0, 'there': 1.0, 'up': 1.0, 'since': 1.0, 'see': 1.0, 'with': 2.0, 'this': 2.0, 'only': 1.0, 'growing': 1.0, 'which': 1.0, 'very': 1.0, 'little': 1.0, 'variety': 1.0, 'just': 1.0, 'sure': 1.0, 'adores': 1.0, 'unknowingly': 1.0, 'i': 3.0, 'are': 1.0, 'my': 2.0, 'wasn': 1.0, 'a': 1.0, 'go': 1.0, 't': 1.0, 'the': 2.0, 'to': 3.0, 'seat': 1.0, 'all': 1.0, 'sit': 1.0, 'have': 1.0, 'one': 3.0, 'entertainment': 1.0, 'baby': 1.0, 'needed': 1.0, 'she': 1.0, 'while': 1.0, 'how': 1.0, 'comes': 1.0, 'is': 3.0, 'learning': 1.0, 'admit': 1.0, 'on': 1.0, 'her': 3.0, 'own': 2.0, 'downfall': 1.0, 'when': 1.0, 'but': 1.0, 'sitting': 1.0}
Word element => {'is': 1.0, 'with': 1.0, 'recommend': 1.0, 'your': 1.0, 'i': 1.0, 'baby': 1.0, 'grows': 1.0, 'and': 1.0, 'girl': 1.0, 'loves': 1.0, 'great': 2.0, 'it': 4.0, 'also': 1.0, 's': 1.0, 'price': 1.0, 'which': 1.0, 'kid': 1.0, 'd': 1.0, 'for': 1.0, 'my': 1.0, 'the': 1.0}
Word element => {'regarding': 1.0, 'no': 1.0, 'file': 1.0, 'up': 1.0, 'bag': 1.0, 'diaper': 1.0, 'meaning': 1.0, 'partly': 1.0, 'of': 1.0, 'or': 1.0, 'one': 1.0, 'ones': 1.0, 'sized': 1.0, 'by': 1.0, 'large': 1.0, 'filling': 1.0, 'trouble': 1.0, 'everything': 1.0, 'items': 1.0, 'see': 1.0, 'a': 1.0, 'that': 1.0, '34': 2.0, 'there': 1.0, 'taken': 1.0, 'set': 1.0, 'snap': 1.0, 'two': 1.0, 'i': 6.0, 'but': 1.0, 'can': 1.0, 'size': 1.0, 'sturdy': 1.0, 'use': 1.0, 'empty': 1.0, 'only': 1.0, 'wasted': 1.0, 'it': 1.0, 'between': 1.0, 'they': 1.0, 'regrets': 1.0, 'some': 1.0, 'these': 1.0, 'organization': 1.0, 'the': 6.0, 'all': 1.0, 'to': 1.0, 'was': 1.0, 'easy': 1.0, 'are': 1.0, 'make': 1.0, 'through': 1.0, 'bags': 1.0, 'and': 2.0, 'giving': 1.0, 'mesh': 1.0, 'purchase': 1.0, 'another': 1.0, 'my': 2.0, 'so': 1.0, 'smaller': 1.0, 'moving': 1.0, 'reason': 1.0, 'itself': 1.0, 'in': 2.0, 'stay': 1.0, 'not': 1.0, 'five': 1.0, '5': 1.0, 'wish': 1.0, 'love': 2.0, 'for': 1.0, 'stars': 1.0, 'is': 1.0, 'even': 1.0, 'space': 1.0, 'option': 1.0, 'have': 2.0}
Word element => {'make': 1.0, 'on': 1.0, 'one': 1.0, 'the': 5.0, 'satchel': 1.0, 'with': 2.0, 'pickle': 1.0, 'them': 1.0, 'petunia': 1.0, 'this': 1.0, 'organize': 1.0, 'french': 1.0, 'from': 1.0, 'in': 3.0, 'duo': 1.0, 'due': 1.0, 'skip': 1.0, 'both': 1.0, 'use': 1.0, 'price': 1.0, 'manageable': 1.0, 'were': 1.0, 'black': 1.0, 'pricey': 1.0, 'a': 3.0, 's': 2.0, 't': 1.0, 'files': 1.0, 'but': 4.0, 'they': 1.0, 'holes': 1.0, 'much': 1.0, 'can': 1.0, 'so': 1.0, 'yes': 1.0, 've': 1.0, 'sashay': 1.0, 'things': 2.0, 'bottom': 1.0, 'love': 1.0, 'super': 1.0, 'month': 1.0, 'well': 1.0, 'i': 8.0, 'etc': 1.0, 'idea': 1.0, 'am': 2.0, 'and': 3.0, 'smart': 1.0, 'made': 1.0, 're': 1.0, 'my': 6.0, 'stripe': 1.0, 'another': 1.0, 'only': 1.0, 'purchase': 1.0, 'is': 1.0, 'for': 2.0, 'such': 1.0, 'transfer': 1.0, 'organizational': 1.0, 'glad': 1.0, 'bit': 1.0, 'easy': 2.0, 'to': 5.0, 'bags': 4.0, 'diaper': 3.0, 'as': 1.0, 'contents': 1.0, 'also': 1.0, 'makes': 1.0, 'more': 1.0, 'husband': 1.0, 'or': 1.0, 'without': 1.0, 'hop': 1.0, 'mother': 1.0, 'law': 1.0, 'find': 1.0, 'because': 1.0, 'it': 5.0, 'speak': 1.0, 'really': 2.0, 'durability': 1.0, 'been': 1.0, 'bag': 2.0, 'using': 1.0, 'colorway': 1.0, 'about': 1.0, 'very': 1.0, 'pleased': 1.0, 'was': 1.0, 'yellow': 1.0, 'fence': 1.0, 'got': 1.0, 'these': 5.0, 'gray': 1.0, 'cute': 1.0}
Word element => {'be': 1.0, 'won': 1.0, 'young': 1.0, 'were': 1.0, 'my': 1.0, 'done': 1.0, 'would': 1.0, 'had': 2.0, 'what': 1.0, 'sure': 1.0, 'it': 2.0, 'buy': 1.0, 'ever': 1.0, 'is': 1.0, 'limited': 1.0, 'can': 1.0, 'so': 1.0, 'once': 1.0, 'of': 1.0, 'm': 1.0, 'mom': 1.0, 'list': 1.0, 'testify': 1.0, 'if': 2.0, 'a': 1.0, 't': 2.0, 'without': 1.0, 'the': 2.0, 'when': 1.0, 'traveling': 1.0, 'you': 6.0, 'are': 1.0, 'bought': 1.0, 'll': 1.0, 'kids': 1.0, 'this': 3.0, 'with': 1.0, 'survived': 1.0, 'children': 2.0, 'out': 1.0, 'system': 4.0, 'two': 1.0, 'i': 5.0, 'missing': 1.0, 'mine': 1.0, 'for': 1.0, 'how': 1.0, 'wonder': 1.0, 'not': 2.0, 'just': 1.0, 'to': 1.0, 'use': 1.0, 'makeup': 1.0, 'that': 1.0, 'organizing': 1.0, 'needlepoint': 1.0, 'moms': 1.0, 'and': 1.0, 'disappointed': 1.0, 'grown': 1.0, 'haven': 1.0, 'goes': 1.0, 'on': 1.0, 'small': 1.0, 'have': 2.0}
Word element => {'month': 1.0, 'each': 1.0, 'baby': 1.0, 'she': 1.0, 'my': 1.0, 'are': 1.0, 'a': 2.0, 'using': 1.0, 'them': 1.0, 'just': 1.0, 'who': 1.0, 'and': 1.0, 'had': 1.0, 'to': 3.0, 'as': 1.0, 'adorable': 1.0, 'gift': 1.0, 'niece': 1.0, 'sent': 1.0, 'boy': 1.0, 'they': 1.0, 'forward': 1.0, 'said': 1.0, 'looks': 1.0, 'celebrate': 1.0}
Word element => {'an': 1.0, 'recommend': 1.0, 'ideal': 1.0, 'would': 1.0, 'be': 1.0, 'i': 2.0, 'picture': 1.0, 'wearing': 1.0, 'one': 2.0, 'of': 1.0, 'sticker': 1.0, 'can': 1.0, 'wonderful': 1.0, 'are': 1.0, 'received': 1.0, 'his': 2.0, 'little': 1.0, 'highly': 1.0, 'baby': 3.0, 'gift': 1.0, 'cute': 1.0, 'birthday': 1.0, 'the': 2.0, 'these': 2.0, 'boy': 1.0, 'stickers': 2.0, 'month': 2.0, 'on': 1.0, 'was': 1.0, 'priceless': 1.0, 'as': 2.0}
Word element => {'fun': 1.0, 'changes': 1.0, 'way': 1.0, 'great': 1.0, 'to': 2.0, 'easy': 1.0, 'use': 1.0, 'idea': 2.0, 'was': 1.0, 'very': 1.0, 'and': 1.0, 'how': 1.0, 'simple': 1.0, 'cute': 1.0, 'baby': 1.0, 'plus': 1.0, 'this': 1.0, 'your': 1.0, 'i': 1.0, 'see': 1.0, 'think': 1.0, 'a': 1.0}
Word element => {'thought': 1.0, 'than': 1.0, 'size': 1.0, 'nice': 1.0, 's': 1.0, 'born': 1.0, 'bigger': 1.0, 'baby': 1.0, 'very': 1.0, 'i': 2.0, 'it': 3.0, 'sticker': 2.0, 'cute': 1.0, 'plan': 1.0, 'is': 2.0, 'on': 1.0, 'a': 1.0, 'using': 1.0, 'right': 1.0, 'was': 1.0, 'after': 1.0, 'the': 1.0, 'my': 1.0}
Word element => {'little': 1.0, 'on': 1.0, 'precious': 1.0, 'be': 1.0, 'to': 1.0, 'they': 1.0, 'these': 1.0, 'monthly': 1.0, 'stickers': 1.0, 'love': 1.0, 'my': 1.0, 'are': 2.0, 'the': 3.0, 'cutest': 1.0, 'one': 1.0, 'i': 1.0, 'air': 1.0, 'design': 1.0, 'going': 1.0, 'balloons': 1.0, 'of': 1.0, 'hot': 1.0}
Word element => {'with': 1.0, 'thrilled': 1.0, 'so': 1.0, 'am': 1.0, 'quickly': 1.0, 'are': 1.0, 'my': 2.0, 'colors': 1.0, 'baby': 1.0, 'the': 2.0, 'these': 1.0, 'they': 1.0, 'have': 2.0, 'delightful': 1.0, 'perfect': 1.0, 'i': 2.0, 'unique': 1.0, 'most': 1.0, 'finally': 1.0, 'design': 1.0, 'stickers': 1.0, 'them': 1.0, 'arrived': 1.0, 'out': 1.0, 'there': 1.0, 'vivid': 1.0, 'and': 2.0, 'is': 1.0, 'shipment': 1.0, 'gift': 1.0, 'found': 1.0, 'absolutely': 1.0}
Word element => {'holidays': 1.0, 'set': 1.0, 'of': 1.0, 'the': 1.0, 'these': 1.0, 'other': 1.0, 'lifetime': 1.0, 'during': 1.0, 'audrey': 1.0, 'for': 2.0, 'having': 1.0, 'apart': 1.0, '13': 1.0, 'born': 1.0, 'that': 1.0, 'their': 1.0, 'first': 2.0, 'gift': 1.0, 'children': 1.0, 'natural': 1.0, 'bought': 1.0, 'grandbabies': 1.0, 'we': 2.0, 'a': 2.0, 'days': 1.0, 'grandson': 1.0, 'only': 1.0, 'granddaughter': 1.0, 'was': 1.0, 'our': 4.0, 'to': 1.0, 'had': 1.0, 'charlie': 1.0, 'and': 1.0, 'help': 1.0, 'you': 1.0, 'remember': 1.0, 'last': 1.0, 'create': 1.0, 'memories': 1.0, 'will': 1.0, 'two': 1.0, 'i': 1.0, 'this': 1.0, 'pictures': 1.0, 'wish': 1.0, 'stickers': 1.0, 'own': 1.0}
Word element => {'take': 1.0, 'to': 1.0, 'with': 1.0, 'time': 1.0, 'a': 1.0, 'fun': 1.0, 'that': 1.0, 'you': 1.0, 'little': 2.0, 'and': 1.0, 'very': 1.0, 'only': 1.0, 'pricy': 1.0, 'for': 1.0, 'stickers': 1.0, 'pics': 1.0, 'unique': 1.0, 'one': 2.0, 'the': 1.0, 'll': 1.0, 'but': 1.0, 'use': 1.0}
Word element => {'hopefully': 1.0, 'make': 1.0, 'back': 1.0, 'will': 1.0, 'audrey': 1.0, 'look': 1.0, 'to': 2.0, 'was': 1.0, 'granddaughter': 1.0, 'grandson': 1.0, 'days': 1.0, 'a': 1.0, 'compare': 1.0, 'pictures': 1.0, 'grandbabies': 1.0, 'two': 1.0, 'on': 1.0, 'natural': 1.0, 'come': 1.0, 'with': 1.0, 'this': 1.0, 'first': 1.0, 'and': 1.0, 'charlie': 1.0, 'our': 3.0, 'born': 1.0, '13': 1.0, 'apart': 1.0, 'having': 1.0, 'grandkids': 1.0, 'gift': 1.0, 'bought': 1.0, 'for': 3.0, 'other': 1.0, 'we': 1.0, 'more': 1.0, 'great': 1.0, 'these': 1.0, 'the': 1.0, 'set': 1.0}
Word element => {'new': 1.0, 'recommend': 1.0, 'highly': 1.0, 'through': 1.0, 'now': 1.0, 'of': 1.0, 'lots': 1.0, 'life': 1.0, 'just': 1.0, 'pleased': 1.0, 'set': 1.0, 'one': 1.0, 'him': 1.0, 'want': 1.0, 'which': 1.0, 'decide': 1.0, 'can': 2.0, 'i': 5.0, 'in': 2.0, 'due': 1.0, 'love': 1.0, 'for': 3.0, 'absolutely': 1.0, 'and': 4.0, 't': 1.0, 'we': 2.0, 'next': 1.0, 'that': 2.0, 'than': 1.0, 'choose': 1.0, 'buy': 1.0, 'grandson': 2.0, 'milestones': 1.0, 'onesie': 2.0, 'so': 3.0, 'have': 1.0, 'march': 1.0, 'stickers': 2.0, 'darling': 3.0, 'excited': 1.0, 'to': 5.0, 'excellent': 1.0, 'had': 1.0, 'purchased': 1.0, 'etsy': 1.0, 'lucy': 3.0, 'from': 3.0, 'adorable': 1.0, 'see': 1.0, 'may': 1.0, 'purchase': 2.0, 'my': 2.0, 'grandchild': 1.0, 'the': 7.0, 'more': 1.0, 'is': 2.0, 'take': 1.0, 'many': 1.0, 'options': 1.0, 'monthly': 1.0, 'child': 1.0, 'baby': 2.0, 'them': 2.0, 'quality': 1.0, 'there': 1.0, 'gifts': 1.0, 'are': 2.0, 'shop': 3.0, 'they': 2.0, 'pictures': 1.0, 'perfect': 1.0, 'also': 1.0, 'way': 1.0, 'capture': 1.0, 'or': 1.0, 'on': 1.0, 'your': 2.0, 'make': 1.0, 'amazon': 2.0, 'wonderful': 1.0}
Word element => {'those': 1.0, 'pictures': 1.0, 'capture': 1.0, 'easily': 1.0, 'you': 1.0, 'sticker': 1.0, 'month': 3.0, '1': 1.0, 'and': 1.0, 'my': 2.0, 'great': 2.0, 'the': 1.0, 'used': 1.0, 'just': 1.0, 'i': 1.0, 'on': 1.0, 'worked': 1.0, 'son': 1.0, 'is': 1.0, 'onesie': 1.0, 'for': 1.0, 'it': 1.0, 'this': 1.0, 'item': 1.0, 'a': 1.0, 'neutral': 1.0, 'to': 2.0, 'help': 1.0}
Word element => {'of': 1.0, 'so': 1.0, 'was': 1.0, 'and': 1.0, 'product': 1.0, 'exactly': 1.0, 'actual': 1.0, 'accurate': 1.0, 'shown': 1.0, 'what': 1.0, 'representations': 1.0, 'cute': 1.0, 'looking': 1.0, 'picture': 1.0, 'i': 1.0, 'in': 1.0, 'for': 1.0, 'are': 1.0, 'the': 3.0, 'colors': 1.0}
Word element => {'grows': 1.0, 'she': 1.0, 'better': 1.0, 'will': 1.0, 'but': 1.0, 'up': 1.0, 'her': 2.0, 'monthly': 1.0, 'my': 1.0, 'are': 2.0, 'baby': 1.0, 'little': 1.0, 'torso': 1.0, 'our': 1.0, 'they': 2.0, 'hopefully': 1.0, 'photos': 1.0, 'for': 2.0, 'entire': 1.0, 'patterns': 1.0, 'get': 1.0, 'and': 1.0, 'take': 1.0, 'stickers': 1.0, 'girl': 1.0, 'is': 1.0, 'the': 1.0, '2': 1.0, 'now': 1.0, 'months': 1.0, 'cute': 1.0, 'still': 1.0, 'a': 1.0, 'as': 1.0, 'very': 1.0, 'big': 1.0}
Word element => {'color': 1.0, 'dream': 1.0, 's': 1.0, 'than': 1.0, 'design': 1.0, 'or': 2.0, 'is': 2.0, 'stars': 1.0, 'gave': 1.0, 'in': 1.0, 'reason': 1.0, 'a': 2.0, 'they': 1.0, 'love': 1.0, 'paper': 1.0, 'cream': 1.0, 'and': 2.0, 'darker': 2.0, 'like': 1.0, 'baby': 1.0, 'ivory': 1.0, 'white': 1.0, 'them': 1.0, 'monthly': 1.0, 'stickers': 1.0, 'expected': 1.0, 'much': 1.0, 'received': 1.0, 'because': 1.0, 'just': 2.0, 'i': 4.0, 'look': 1.0, 'it': 1.0, 'only': 1.0, 'this': 2.0, 'are': 1.0, 'these': 1.0, 'the': 3.0, 'printed': 1.0, '4': 1.0, 'on': 1.0, 'nice': 1.0, 'sticker': 1.0}
Word element => {'of': 1.0, 'lots': 1.0, 'there': 1.0, 'was': 1.0, 'seller': 1.0, 'little': 1.0, 'thankfully': 1.0, 'she': 1.0, 'last': 1.0, 'the': 3.0, 'great': 3.0, 'and': 4.0, 'but': 1.0, 'quality': 1.0, 'stickers': 2.0, 'sports': 1.0, 'like': 1.0, 'these': 1.0, 'some': 1.0, 'when': 1.0, 'liked': 1.0, 'for': 2.0, 'first': 1.0, 'picked': 1.0, 'anything': 1.0, 'son': 1.0, 'to': 1.0, 'our': 1.0, 'this': 1.0, 'found': 1.0, 'my': 2.0, 'were': 1.0, 'high': 1.0, 'from': 1.0, 'designs': 1.0, 'wife': 2.0, 'couldn': 1.0, 'related': 1.0, 'had': 1.0, 'what': 1.0, 'searched': 2.0, 'they': 1.0, 'around': 1.0, 'lucydarlingshop': 1.0, 'i': 1.0, 'boy': 2.0, 'time': 2.0, 'so': 1.0, 'much': 1.0, 'better': 1.0, 'choose': 1.0, 'find': 1.0, 'than': 1.0, 'are': 2.0, 'really': 1.0, 'colors': 1.0, 't': 1.0, 'we': 2.0, 'a': 1.0}
Word element => {'size': 1.0, 'on': 1.0, 'come': 1.0, 'mean': 1.0, 'i': 1.0, 'sticker': 1.0, 'a': 1.0, 'they': 2.0, 'the': 2.0, 'are': 2.0, 'pattern': 1.0, 'perfect': 1.0, 'use': 1.0, 'easy': 1.0, 'to': 1.0, 'love': 1.0, 'it': 1.0, 'also': 1.0, 'super': 1.0, 's': 1.0}
Word element => {'next': 1.0, 'to': 1.0, 'my': 1.0, 'the': 2.0, 'are': 1.0, 'grow': 1.0, 'everything': 1.0, 'year': 1.0, 'daughter': 1.0, 'for': 1.0, 'i': 2.0, 'was': 1.0, 'capture': 1.0, 'so': 1.0, 'stickers': 1.0, 'excited': 1.0, 'looking': 1.0, 'over': 1.0, 'm': 1.0}
Word element => {'already': 1.0, 'recommended': 1.0, 'stickers': 1.0, 'of': 1.0, 'love': 1.0, 'great': 1.0, 'to': 1.0, 'adorable': 1.0, 'product': 1.0, 'allows': 1.0, 'have': 1.0, 'sticks': 1.0, 'friends': 1.0, 'and': 2.0, 'very': 1.0, 'i': 2.0, 'mel': 1.0, 'design': 1.0, 'for': 1.0, 'my': 1.0, 'the': 2.0, 'repositioning': 1.0}
Word element => {'next': 1.0, 'again': 1.0, 'use': 1.0, 'paper': 1.0, 'back': 1.0, 'stuck': 1.0, 'neutral': 1.0, 'gender': 1.0, 'colors': 1.0, 'whatever': 1.0, 'size': 1.0, 'sizes': 1.0, 'born': 1.0, 'guess': 1.0, 'i': 4.0, 'to': 4.0, 'was': 2.0, 'had': 1.0, 'each': 1.0, 'and': 5.0, 'me': 1.0, 'before': 1.0, 'the': 5.0, '1': 1.0, 'great': 2.0, 'onesies': 2.0, 'faster': 1.0, 'these': 2.0, 'some': 1.0, 'at': 2.0, 'are': 2.0, 'my': 2.0, 'useless': 1.0, 'made': 1.0, 'much': 1.0, 'iron': 1.0, 'wearing': 1.0, 'stick': 1.0, 'solution': 1.0, 'son': 1.0, 'months': 4.0, 'awesome': 1.0, 'were': 2.0, 'for': 4.0, 'onesie': 1.0, 'than': 1.0, '2': 1.0, 'needless': 1.0, 'is': 1.0, 'say': 1.0, 'expected': 1.0, 'well': 1.0, 'a': 1.0, 'grew': 1.0, 'in': 1.0, 'on': 3.0, '3': 1.0, 'baby': 1.0, 'them': 2.0, 'clothes': 2.0, 'he': 3.0, '6': 1.0, 'time': 1.0, 'so': 1.0}
Word element => {'again': 1.0, 'things': 1.0, 'other': 1.0, 'them': 1.0, 'monthly': 1.0, 'they': 1.0, 'these': 1.0, 'take': 1.0, 'well': 1.0, 'order': 1.0, 'adhere': 1.0, 'enough': 1.0, 'to': 3.0, 'be': 1.0, 'my': 1.0, 'for': 1.0, 'would': 1.0, 'pictures': 1.0, 'ordered': 1.0, 'do': 1.0, 'and': 2.0, 'with': 1.0, 'onesies': 1.0, 'taken': 1.0, 'then': 1.0, 'can': 1.0, 'son': 1.0, 'stick': 1.0, 'off': 1.0, 'have': 1.0, 'left': 1.0}
Word element => {'baby': 1.0, 'your': 1.0, 'record': 1.0, 'looks': 1.0, 'way': 1.0, 'great': 1.0, 'it': 1.0, 'pictures': 1.0, 'how': 1.0, 'arrived': 1.0, 'quickly': 1.0, 'in': 1.0, 'wife': 1.0, 'was': 1.0, 'and': 1.0, 'as': 1.0, 'described': 1.0, 'newborn': 1.0, 'to': 1.0, 'product': 1.0, 'thrilled': 1.0, 'is': 1.0, 'with': 1.0}
Word element => {'baby': 1.0, 'a': 1.0, 'of': 1.0, 'up': 1.0, 'quality': 1.0, 'hold': 1.0, 'nursery': 1.0, 'so': 1.0, 'am': 1.0, 'is': 1.0, 'looks': 1.0, 'been': 1.0, 'have': 1.0, 'they': 2.0, 'i': 1.0, 'month': 1.0, 'squirming': 1.0, '4': 1.0, 'on': 1.0, 'to': 1.0, 'now': 1.0, 'with': 1.0, 'and': 3.0, 'theme': 1.0, 'cute': 1.0, 'also': 1.0, 'perfect': 1.0, 'even': 1.0, 'my': 1.0, 'great': 1.0, 'these': 1.0, 'the': 3.0, 'daughter': 1.0, 'them': 1.0, 'adorable': 1.0, 'match': 1.0}
Word element => {'baby': 1.0, 'new': 1.0, 'to': 1.0, 'picture': 1.0, 'my': 1.0, 'the': 1.0, 't': 1.0, 'this': 1.0, 'really': 1.0, 'sticker': 1.0, 'on': 1.0, 'is': 1.0, 'it': 1.0, 'stick': 1.0, 'wait': 1.0, 'can': 1.0, 'great': 1.0, 'like': 1.0, 'and': 1.0, 'quality': 1.0, 'looks': 1.0, 'just': 1.0, 'in': 1.0}
Word element => {'use': 1.0, 'too': 1.0, 'this': 1.0, 'with': 1.0, 'bad': 1.0, 'i': 2.0, 'her': 2.0, 'pictures': 1.0, 'it': 1.0, 'can': 1.0, 'love': 1.0, 'the': 2.0, 'in': 1.0, 'enjoyed': 1.0, 'design': 1.0, 'only': 1.0, 'and': 2.0, 'colors': 1.0, 'life': 1.0, 'sticker': 2.0, 'of': 2.0, 'once': 1.0, 'taking': 1.0}
Word element => {'product': 1.0, 'enjoy': 1.0, 'vintage': 1.0, 'any': 1.0, 'goes': 1.0, 'chalkboard': 1.0, 'a': 1.0, 'black': 1.0, 'paper': 1.0, 'this': 1.0, 'with': 1.0, 'it': 2.0, 'because': 1.0, 'off': 1.0, 'thick': 1.0, 'high': 1.0, 'gives': 1.0, 'from': 1.0, 'are': 1.0, 'really': 1.0, 'outfit': 1.0, 'is': 1.0, 'on': 1.0, 'which': 1.0, 'the': 1.0, 'great': 2.0, 'these': 1.0, 'makes': 1.0, 'white': 1.0, 'made': 1.0, 'them': 1.0, 'and': 3.0, 'easy': 1.0, 'look': 2.0, 'to': 1.0, 'quality': 1.0, 'put': 1.0, 'stickers': 1.0, 'take': 1.0}
Word element => {'outfit': 1.0, 'any': 1.0, 'good': 1.0, 'goes': 1.0, 'nice': 1.0, 'white': 1.0, 'able': 1.0, 'scheme': 1.0, 'stick': 1.0, 'paper': 1.0, 'was': 2.0, 'to': 1.0, 'of': 1.0, 'sticker': 1.0, 'i': 2.0, 'quality': 1.0, 'and': 2.0, 'like': 1.0, 'the': 3.0, 'black': 1.0, 'remove': 1.0, 'multiple': 1.0, 'times': 1.0, 'with': 1.0, 'it': 1.0, 'this': 1.0, 'high': 1.0, 'color': 2.0, 'because': 1.0}
Word element => {'memories': 1.0, 'making': 1.0, 'for': 1.0, 'tool': 1.0, 's': 2.0, 'so': 1.0, 'is': 1.0, 'time': 1.0, 'nice': 1.0, 'show': 1.0, 'over': 1.0, 'their': 2.0, 'in': 1.0, 'year': 1.0, 'fleeting': 1.0, 'lives': 1.0, 'to': 2.0, 'it': 2.0, 'this': 1.0, 'first': 1.0, 'stickers': 1.0, 'have': 1.0, 'definitively': 1.0, 'growth': 1.0, 'great': 1.0, 'these': 1.0, 'the': 1.0, 'a': 1.0}
Word element => {'not': 1.0, 'are': 1.0, 'but': 1.0, 'clearly': 1.0, 'cutesy': 1.0, 'too': 1.0, 'number': 1.0, 'fit': 1.0, 'friend': 1.0, 'shower': 1.0, 'my': 1.0, 'for': 1.0, 'girl': 1.0, 'stickers': 2.0, 'monthly': 1.0, 'the': 1.0, 'these': 2.0, 'baby': 1.0, 'show': 1.0, 'she': 1.0, 'little': 1.0, 'bought': 1.0, 's': 1.0, 'i': 1.0, 'is': 1.0, 'class': 1.0, 'perfect': 1.0, 'having': 1.0, 'a': 2.0, 'and': 2.0, 'picky': 1.0, 'very': 1.0, 'they': 1.0, 'has': 1.0, 'taste': 1.0, 'were': 1.0}
Word element => {}
Word element => {'you': 1.0, 'thank': 1.0, 'again': 1.0, 'definitely': 1.0, 'pictures': 1.0, 'for': 1.0, 'title': 1.0, 'great': 1.0, 'a': 3.0, 'event': 1.0, 'our': 2.0, 'of': 2.0, 'purchase': 1.0, 'added': 1.0, 'we': 1.0, 'surprise': 1.0, 'also': 1.0, 'lots': 1.0, 'baby': 1.0, 'lot': 1.0, 'questions': 1.0, 'at': 1.0, 'will': 1.0, 'work': 1.0, 'had': 1.0, 'to': 1.0, 'excitement': 1.0, 'was': 1.0, 'and': 2.0, 'this': 1.0, 'shower': 1.0, 'it': 1.0, 'answered': 1.0}
Word element => {'frighten': 1.0, 'anything': 1.0, 'if': 1.0, 'are': 1.0, 'they': 1.0, 'stupid': 1.0, 'makes': 1.0, 'that': 1.0, 'and': 2.0, 'very': 1.0, 'kid': 1.0, 'toilet': 1.0, 'fit': 1.0, 'on': 1.0, 'sounds': 1.0, 'think': 1.0, 'i': 1.0, 'training': 1.0, 'secure': 2.0, 'toddler': 1.0, 'doesn': 1.0, 'a': 1.0, 'loud': 1.0, 'it': 2.0, 's': 1.0, 'important': 1.0, 'for': 1.0, 'in': 1.0, 'to': 1.0, 'feel': 1.0, 't': 1.0, 'the': 2.0}
Word element => {'weeks': 1.0, 'than': 1.0, 'in': 1.0, 'year': 1.0, 'i': 1.0, 'few': 1.0, 'by': 1.0, 'quality': 1.0, 'surprised': 1.0, 'was': 1.0, 'not': 1.0, 'them': 1.0, 'a': 2.0, 'distroyed': 1.0, 'old': 1.0, 'poor': 1.0, 'less': 1.0, 'yet': 1.0, 'the': 1.0, 'my': 1.0}
Word element => {'recommend': 1.0, 'modify': 1.0, 'because': 1.0, 'stars': 1.0, 'happy': 1.0, 'really': 1.0, 'am': 1.0, 'said': 1.0, 'being': 1.0, 'soon': 1.0, 'will': 1.0, 'sure': 1.0, 'm': 2.0, 'how': 1.0, 'learn': 1.0, 'yet': 1.0, 'son': 5.0, 'pros': 1.0, 'kid': 1.0, 'cannot': 1.0, 'himself': 4.0, 'prevent': 1.0, 'like': 1.0, 'rather': 1.0, 'look': 1.0, 'sturdydoesn': 1.0, 'comes': 1.0, 'laminate': 1.0, 'these': 1.0, 'off': 1.0, 'stable': 1.0, 'highly': 1.0, 'given': 1.0, 'used': 4.0, 'decided': 1.0, 'move': 2.0, 'pen': 1.0, 'on': 10.0, 'they': 1.0, 'sturdy': 2.0, 'reviews': 1.0, 'moving': 1.0, 'other': 1.0, 'few': 3.0, 'this': 11.0, 'yardmy': 1.0, 'advice': 1.0, 'took': 1.0, 'i': 19.0, 'feet': 1.0, 'pet': 1.0, 'everything': 2.0, 'loves': 1.0, 'position': 2.0, 'walls': 6.0, 'crawling': 1.0, 'starting': 1.0, 'any': 1.0, 'feel': 2.0, 'your': 1.0, 'as': 2.0, 'falls': 1.0, 'to': 32.0, 'stickers': 1.0, 'flimsynow': 1.0, 'keep': 2.0, 'regardless': 1.0, 'have': 1.0, 'able': 1.0, 'get': 2.0, 'legs': 1.0, 'easy': 4.0, 'setup': 1.0, 'area': 2.0, 'make': 1.0, 'was': 4.0, 'rubber': 1.0, 'help': 1.0, 'panellots': 1.0, 'a': 11.0, 'roommy': 1.0, 'think': 1.0, 'from': 3.0, 'who': 2.0, 'since': 2.0, '7': 1.0, 'up': 7.0, 'month': 1.0, 'around': 2.0, 'peel': 1.0, 'his': 1.0, 'more': 4.0, 'living': 3.0, 'the': 24.0, 'old': 1.0, 'of': 8.0, 'pull': 2.0, 'him': 4.0, 'he': 3.0, 'bottom': 3.0, 'just': 1.0, 'and': 5.0, 'listed': 2.0, 'mending': 2.0, 'play': 10.0, 'carpetdepending': 1.0, 'upwalls': 1.0, 'product': 4.0, 'purchase': 1.0, 'forego': 1.0, 'for': 5.0, '10': 1.0, 'most': 1.0, 'but': 2.0, 'not': 1.0, 'give': 3.0, 'read': 1.0, 'little': 3.0, 'two': 2.0, 'sturdier': 1.0, 'people': 1.0, 'it': 8.0, 'suctions': 1.0, 'has': 3.0, 'had': 2.0, 'screws': 1.0, 'getting': 1.0, 'standing': 2.0, 'started': 1.0, 'push': 1.0, 'you': 3.0, 'room': 4.0, 'my': 12.0, 'are': 4.0, 'use': 1.0, 'especially': 1.0, 'great': 1.0, 'if': 3.0, 'connections': 1.0, 'giving': 1.0, 'cups': 1.0, 'tadpole': 1.0, 'were': 2.0, 'non': 1.0, 'in': 14.0, 'together': 1.0, 't': 1.0, 'above': 2.0, 'enough': 1.0, 'yard': 4.0, 'some': 1.0, 'is': 3.0, 'can': 1.0, 'carpet': 1.0, 'that': 3.0, 'making': 1.0, 'easily': 2.0, 'bar': 2.0, 'morecons': 1.0, 'would': 2.0, 'left': 1.0, 'work': 1.0, 'wonderfully': 1.0, 'pads': 1.0, 'wanted': 2.0, 'flooring': 1.0, 'addition': 1.0, 'here': 1.0, 'improved': 1.0, '5': 1.0, 'upon': 1.0, 'stability': 1.0, 'liking': 2.0, 'square': 1.0, 'set': 4.0, 'shape': 2.0, 'than': 1.0, 'ones': 1.0, 'all': 3.0, 'way': 1.0, 'octogon': 1.0, 'plate': 1.0, 'place': 2.0, 'strengthen': 1.0, 'so': 3.0, 'brace': 1.0, 'plastic': 1.0, 'wall': 1.0, 'happen': 1.0, 'pop': 1.0, 'holes': 1.0, 'put': 2.0, 'very': 1.0, 'ways': 1.0, '16': 1.0, 'with': 4.0, 'playmat': 1.0, 'into': 3.0, 'through': 1.0, 'cons': 2.0, 'handles': 1.0, 'plates': 1.0, 'cushion': 1.0, 'sons': 1.0, 'shower': 1.0, 'pushes': 1.0, 'those': 2.0, 'tad': 1.0, 'slip': 1.0, 'panel': 1.0, 'furniture': 1.0, 'practice': 1.0, 'buy': 1.0, 'playpen': 2.0, 'something': 1.0, 'when': 1.0, 'down': 1.0, 'stand': 1.0, 'sq': 1.0, 'big': 1.0, 'also': 1.0, 'do': 1.0, 'walking': 1.0, 'installed': 1.0}
Word element => {'out': 1.0, 'have': 2.0, 'brain': 1.0, 'pay': 1.0, 'them': 1.0, 'totally': 2.0, 'month': 1.0, 'total': 2.0, 'that': 6.0, 'interest': 1.0, 'manufacturer': 1.0, 'few': 2.0, 'nobody': 1.0, '10': 1.0, 'for': 4.0, 'activity': 2.0, 'however': 1.0, 'creative': 1.0, 'know': 1.0, 'kind': 1.0, 'keep': 1.0, 'dead': 1.0, 'stickers': 1.0, 'something': 1.0, 'playpen': 2.0, 'designed': 2.0, 'buy': 1.0, 'advertising': 1.0, 'larger': 1.0, 'baby': 1.0, 'others': 2.0, 'fond': 1.0, 'someone': 1.0, 'his': 1.0, '23': 2.0, 'at': 1.0, 'amazon': 1.0, 'lost': 1.0, 'listed': 1.0, 'throw': 1.0, 'tall': 2.0, 'assembled': 1.0, 'inaccurate': 1.0, 'the': 15.0, 'old': 1.0, 'of': 6.0, 'attention': 1.0, 'x': 2.0, 'very': 2.0, 'couldn': 1.0, 'dimensions': 1.0, 'disregard': 1.0, 'is': 6.0, 'can': 2.0, 'so': 1.0, 'could': 1.0, 'tendency': 1.0, 't': 5.0, 'cost': 1.0, 'a': 6.0, 'picked': 1.0, 'unimaginative': 1.0, 'whoever': 1.0, 'it': 7.0, 'be': 2.0, 'look': 1.0, 'built': 1.0, 'was': 3.0, 'him': 2.0, 'he': 1.0, 'imagined': 1.0, 'fixed': 1.0, 'to': 10.0, 'all': 1.0, 'center': 2.0, 'our': 3.0, 'took': 1.0, 'than': 1.0, 'web': 1.0, 'impetus': 1.0, 'anybody': 1.0, 'in': 3.0, 'capable': 1.0, 'pretty': 1.0, 'any': 1.0, 'your': 3.0, 'delivering': 1.0, 'are': 1.0, 'don': 1.0, 'over': 1.0, 'false': 1.0, 'early': 1.0, 'sounds': 1.0, 'like': 2.0, 'minimum': 1.0, 'which': 2.0, 'asap': 1.0, 'withholding': 1.0, 'such': 1.0, 'joke': 1.0, 'add': 1.0, 'should': 1.0, 'competition': 1.0, 'i': 4.0, 'well': 2.0, 'product': 6.0, 'child': 2.0, 'commented': 1.0, 'height': 1.0, 'only': 5.0, 'growth': 1.0, 'its': 1.0, 'considering': 1.0, 'more': 2.0, 'by': 1.0, 'infant': 3.0, 'climb': 1.0, 'specifically': 1.0, 'lusty': 1.0, 'as': 1.0, 'less': 1.0, 'sure': 1.0, 'minutes': 1.0, 'blows': 1.0, 'behind': 1.0, 'pursuit': 1.0, 'play': 1.0, 'about': 1.0, 'plain': 1.0, 'design': 1.0, 'spurts': 1.0, 'collides': 1.0, 'absolute': 1.0, 'they': 2.0, 'sturdy': 1.0, 'this': 7.0, '32': 1.0, 'relatively': 1.0, 'zero': 1.0, 'prompted': 1.0, 'succeeded': 1.0, 'if': 2.0, 'want': 2.0, 'what': 1.0, 'when': 2.0, 'shaking': 1.0, 'happens': 1.0, 'we': 1.0, 'bad': 1.0, 'constant': 1.0, 'with': 2.0, 'lastly': 1.0, 'whistles': 1.0, 'needs': 2.0, 'anything': 1.0, 'parts': 1.0, 'customers': 1.0, 'one': 1.0, '73': 2.0, '3': 1.0, 'too': 1.0, 'believe': 1.0, 'bells': 1.0, 'really': 1.0, 'please': 2.0, 'make': 1.0, 'area': 1.0, 'attractive': 1.0, 'before': 1.0, 'probably': 2.0, 'frack': 1.0, 'you': 2.0, 'also': 1.0, 'inches': 3.0, 's': 6.0, 'm': 1.0, 'doesn': 1.0, 'appears': 1.0, 'liked': 1.0, 'sharp': 1.0, 'site': 1.0, 'edges': 1.0, 'or': 1.0, 'hurt': 1.0, 'me': 1.0, 'give': 1.0, 'stars': 1.0, 'secure': 1.0, 'provide': 2.0, 'little': 1.0, 'her': 1.0, 'blame': 1.0, 'large': 1.0, 'safe': 1.0, 'but': 1.0, 'advised': 1.0, 'profit': 1.0, 'would': 1.0, 'entertainment': 1.0, 'value': 1.0, 'and': 7.0, 'just': 1.0}
Word element => {'recommend': 1.0, 'highly': 1.0, 'parts': 1.0, 'we': 3.0, 'other': 2.0, 'toys': 1.0, 'little': 1.0, 'our': 2.0, 'to': 3.0, 'husband': 1.0, 'now': 1.0, 'old': 1.0, 'i': 1.0, 'girl': 1.0, 'stickers': 1.0, 'play': 2.0, 'and': 2.0, 'block': 1.0, 'for': 1.0, 'love': 2.0, 'she': 2.0, 'month': 1.0, 'it': 3.0, 'this': 1.0, 'with': 1.0, 'that': 2.0, 'loves': 1.0, 'my': 1.0, 'pen': 1.0, '10': 1.0, 'can': 1.0, 'be': 1.0, 'adjusted': 1.0, 'different': 1.0, 'sizes': 1.0, 'like': 1.0, 'reviewers': 1.0, 'left': 1.0, 'is': 1.0, 'the': 1.0, 'great': 1.0, 'even': 1.0, 'works': 1.0, 'use': 1.0, 'sections': 1.0, 'of': 2.0, 'off': 2.0, 'house': 1.0, 'crawling': 1.0}
Word element => {'sturdy': 1.0, 'parents': 1.0, 'her': 1.0, 'do': 1.0, 'i': 1.0, 'ordered': 1.0, 'it': 1.0, 'colorful': 1.0, 'loves': 1.0, 'this': 1.0, 'for': 1.0, 'my': 1.0, 'very': 1.0, 'and': 2.0, 'grandchild': 1.0, 'thanks': 1.0, 'she': 1.0, 'so': 1.0}
Word element => {'post': 1.0, 'quality': 1.0, 'shape': 1.0, 'and': 3.0, 'manipulate': 1.0, 'rarely': 1.0, 'easy': 1.0, 'move': 1.0, 'reviews': 1.0, 'family': 1.0, 'to': 1.0, 'i': 1.0, 'whole': 1.0, 'play': 1.0, 'my': 1.0, 'the': 1.0, 'great': 1.0, 'sit': 1.0, 'in': 1.0, 'of': 1.0, '6': 1.0, 'there': 1.0, 'with': 1.0, 'any': 1.0, 'money': 1.0, 'baby': 1.0, 'worth': 1.0}
Word element => {'set': 1.0, 'up': 1.0, 'and': 1.0, 'well': 1.0, 'easy': 1.0, 'perfect': 1.0, 'to': 1.0, 'old': 1.0, 'loves': 1.0, 'made': 1.0, 'my': 1.0, '8': 1.0, 'it': 1.0, 'month': 1.0, 'grand': 1.0, 'for': 1.0, 'daughter': 1.0, 'its': 1.0, 'she': 1.0, 'really': 1.0}
Word element => {'will': 1.0, 'product': 1.0, 'a': 5.0, 'packaging': 1.0, 'opening': 1.0, 'sliced': 1.0, 'box': 3.0, 'you': 2.0, 'am': 1.0, 'top': 1.0, 'on': 2.0, 'steady': 1.0, 'therefore': 1.0, 'for': 3.0, 'upon': 1.0, 'daughter': 1.0, 'recommend': 1.0, 'were': 1.0, 'together': 1.0, 'my': 2.0, 'they': 1.0, 'pen': 1.0, 'open': 1.0, 'better': 1.0, 'of': 4.0, 'the': 14.0, 'stickers': 4.0, 'and': 3.0, 'bears': 1.0, 'it': 2.0, 'this': 2.0, 'perfect': 2.0, 'pain': 1.0, 'wish': 1.0, 'also': 1.0, 'day': 1.0, 'looking': 1.0, 'so': 1.0, 'after': 1.0, 'rest': 1.0, 'just': 1.0, 'speaking': 1.0, 'started': 1.0, 'quality': 1.0, 'not': 1.0, 'weary': 1.0, 'kid': 1.0, 'sort': 1.0, 'great': 1.0, 'until': 1.0, 'off': 2.0, 'too': 1.0, 'one': 2.0, 'sure': 1.0, 'easy': 1.0, 'what': 2.0, 'was': 4.0, 'to': 3.0, 'as': 1.0, 'our': 1.0, 'living': 1.0, 'room': 1.0, 'cutter': 1.0, 'sore': 1.0, 'play': 1.0, 'about': 1.0, 'in': 3.0, 'surprisingly': 1.0, 'put': 3.0, 'do': 1.0, 'much': 1.0, 'butt': 1.0, 'fall': 1.0, 'that': 1.0, 'because': 1.0, 'be': 1.0, 'def': 1.0, 'hand': 1.0, 'like': 1.0, 'new': 1.0, 'would': 1.0, 'your': 1.0, 'mom': 1.0, 'overall': 1.0, 'i': 4.0, 'without': 1.0, 'anything': 1.0, 'but': 3.0, 'really': 1.0, 'being': 1.0, 'yet': 1.0, 'accessories': 1.0, 'an': 1.0, 'locked': 1.0, 'eye': 1.0, 'little': 1.0, 'with': 1.0, 'where': 1.0, 'doesnt': 1.0, 'is': 2.0, 'look': 1.0, 'falling': 1.0, 'need': 1.0, 'cage': 1.0}
Word element => {'disinfected': 1.0, 're': 1.0, 'moisture': 1.0, 'or': 1.0, 'drool': 1.0, 'pressed': 1.0, 'have': 1.0, 'the': 1.0, 'great': 1.0, 'see': 1.0, 'doesn': 1.0, 'style': 1.0, 'brand': 1.0, 'ton': 1.0, '34': 2.0, 'of': 1.0, 'plus': 1.0, 'are': 1.0, 'my': 1.0, 'son': 1.0, 't': 1.0, 'a': 3.0, 's': 1.0, 'you': 2.0, 'he': 1.0, 'it': 2.0, 'with': 1.0, 'favorite': 1.0, 'face': 1.0, 'air': 1.0, 'his': 1.0, 'can': 1.0, 'him': 1.0, 'smile': 1.0, 'through': 1.0, 'sanitizing': 1.0, 'where': 1.0, 'love': 1.0, 'product': 1.0, 'case': 1.0, 'completely': 1.0, 'comes': 1.0, 'against': 1.0, 'so': 1.0, 'these': 1.0, 'add': 1.0, 'little': 1.0, 'water': 1.0, 'microwave': 1.0, 'they': 1.0}
Word element => {'their': 1.0, 'use': 1.0, 'instead': 1.0, 'service': 1.0, 'highly': 1.0, 'customer': 1.0, 'it': 1.0, 'washing': 1.0, 'after': 1.0, 'does': 1.0, 'varieties': 1.0, 'why': 1.0, 'unsure': 1.0, 'you': 1.0, 'am': 1.0, 'takes': 1.0, 'one': 1.0, 'your': 1.0, 'for': 1.0, 'contact': 1.0, 'pacifiers': 3.0, 'ones': 1.0, 'these': 2.0, 'the': 5.0, 'little': 2.0, 'wash': 1.0, 'i': 7.0, 'issues': 1.0, 'binks': 2.0, 'us': 1.0, 'avoid': 1.0, 'that': 1.0, 'this': 4.0, 'drain': 1.0, 'according': 1.0, 'develop': 1.0, 'other': 3.0, 'but': 4.0, 'we': 1.0, 'a': 1.0, 'my': 2.0, 'ton': 1.0, 'silicone': 1.0, 'packaging': 1.0, 'of': 4.0, 'have': 4.0, 'mam': 4.0, 'had': 1.0, 'inside': 1.0, 'mold': 1.0, 'and': 3.0, 'only': 2.0, 'do': 2.0, 'done': 1.0, 'gunk': 1.0, 'are': 1.0, 'pacifier': 1.0, 'mine': 1.0, 'never': 1.0, 'tip': 1.0, 'all': 1.0, 'to': 1.0, 'any': 1.0, 'did': 1.0, 'caused': 1.0, 'styles': 2.0, 'air': 1.0, 'variety': 3.0, 'style': 1.0, 'not': 3.0, 'recommend': 3.0}
Word element => {'under': 1.0, 'hidden': 1.0, 'they': 1.0, 'night': 1.0, 'at': 1.0, 'find': 1.0, 'easy': 1.0, 'make': 1.0, 'dark': 1.0, 'for': 1.0, 'air': 1.0, 'in': 1.0, 'furniture': 1.0, 'purchased': 1.0, 'product': 1.0, 'are': 1.0, 'keeps': 1.0, 'of': 1.0, 'it': 3.0, 'he': 1.0, 'or': 1.0, 'glow': 1.0, 'to': 1.0, 'purpose': 1.0, 'serves': 1.0, 'ones': 1.0, 'great': 1.0, 'the': 5.0, 'we': 1.0, 'and': 1.0, 'them': 1.0, 'out': 1.0, 'our': 1.0, 'son': 1.0, 's': 1.0, 'tummy': 1.0, 'm': 1.0, 'when': 2.0, 'uses': 1.0}
Word element => {'too': 1.0, 'them': 1.0, 'out': 1.0, 'try': 1.0, 'we': 1.0, 'if': 1.0, 'my': 1.0, 'will': 1.0, 'like': 1.0, 'freaks': 1.0, 'only': 1.0, 'kid': 1.0, 'others': 1.0, 'with': 1.0, 'he': 1.0, 'has': 1.0, 'an': 1.0, 'i': 1.0, 'obsession': 1.0, 'pacifiers': 1.0, 'use': 1.0, 'mams': 1.0}
Word element => {'choice': 1.0, 'to': 1.0, 'go': 1.0, 'a': 1.0, 'definitely': 1.0, 'mouth': 1.0, 'her': 1.0, 'in': 1.0, 'keeps': 1.0, 'she': 1.0, 'that': 1.0, 'others': 1.0, 'tried': 1.0, 'the': 3.0, 'are': 1.0, 've': 1.0, 'ones': 1.0, 'we': 1.0, 'avent': 1.0, 'and': 1.0, 's': 2.0, 'mam': 1.0}
Word element => {'will': 1.0, 'of': 1.0, 'for': 1.0, 'one': 1.0, 'free': 1.0, 'as': 1.0, 'happened': 1.0, 'just': 1.0, 'could': 1.0, 'a': 3.0, 'mom': 1.0, 'buying': 1.0, 'to': 1.0, 'was': 1.0, 'be': 2.0, 'keep': 1.0, 'sleepless': 1.0, 'newborn': 1.0, 'in': 2.0, 'few': 1.0, 'her': 1.0, 'brands': 1.0, 'ha': 1.0, 'nights': 1.0, 'registries': 1.0, 'we': 2.0, 'mouth': 1.0, 'different': 1.0, 'pacifier': 1.0, 'our': 2.0, 'that': 1.0, 'thought': 1.0, 'backup': 1.0, 'i': 2.0, 'tried': 1.0, 'more': 1.0, 't': 1.0, 'the': 1.0, 'with': 1.0, 'sample': 1.0, 'it': 1.0, 'this': 1.0, 'wouldn': 1.0, 'only': 1.0, 'get': 1.0, 'and': 1.0, 'paci': 1.0}
Word element => {'free': 1.0, 'bpa': 1.0, 'us': 1.0, 'cute': 1.0, 'also': 1.0, 'these': 2.0, 'stays': 1.0, 'sleek': 1.0, 'flying': 1.0, 'and': 2.0, 'get': 1.0, 'send': 1.0, 'them': 1.0, 'handles': 1.0, 'pacifiers': 1.0, 'with': 2.0, 'their': 1.0, 'out': 1.0, 'very': 2.0, 'little': 2.0, 'for': 2.0, 'of': 2.0, 'put': 1.0, 'on': 2.0, 'much': 1.0, 'important': 1.0, 'isn': 1.0, 'there': 1.0, 'her': 1.0, 'different': 1.0, '5': 1.0, 'before': 1.0, 'had': 1.0, 'what': 2.0, 'fingers': 1.0, 'probably': 1.0, 'through': 1.0, 'first': 1.0, 'wish': 1.0, 'this': 4.0, 'kid': 1.0, 'finally': 1.0, 'tell': 1.0, 'new': 1.0, 'would': 2.0, 'are': 2.0, 'pacifier': 2.0, 'offered': 1.0, 'take': 1.0, 'to': 3.0, 'outside': 1.0, 'any': 1.0, 'our': 1.0, 'that': 3.0, 'mouth': 1.0, 'find': 1.0, 'deciding': 1.0, 'was': 1.0, 'recommended': 1.0, 'girls': 1.0, 'kinds': 1.0, 'has': 1.0, 'addition': 1.0, 'gone': 1.0, 'about': 1.0, 'no': 1.0, 'one': 2.0, 'problem': 2.0, 'winner': 1.0, 'liked': 1.0, 'always': 1.0, 'way': 1.0, 'parents': 1.0, 'hands': 1.0, 'the': 5.0, 'i': 3.0, 'going': 1.0, 'we': 1.0, 'a': 2.0, 't': 2.0, 'could': 1.0, 'yank': 1.0, 'you': 1.0, 'it': 2.0, 'she': 2.0, 'my': 1.0, 'fact': 2.0, 'can': 1.0, 'but': 1.0, 'most': 2.0, 'highly': 1.0, 'appreciate': 1.0, 'is': 3.0}
Word element => {'6': 1.0, 'it': 1.0, 'takes': 1.0, 'ans': 1.0, 'still': 1.0, 'old': 2.0, 'weeks': 2.0, 'is': 1.0, 'now': 1.0, '2': 1.0, 'he': 3.0, 'this': 1.0, 'bb': 1.0, 'by': 1.0, 'was': 2.0, 'since': 1.0, 'only': 1.0, 'the': 1.0, 'my': 1.0, 'one': 1.0, 'pacifier': 1.0, 'accepted': 1.0}
Word element => {'use': 1.0, 'month': 1.0, 'pacifiers': 1.0, 'can': 1.0, 'one': 1.0, 'sterilization': 1.0, 'carrying': 1.0, 'great': 1.0, 'ones': 1.0, 'the': 2.0, 'my': 1.0, 'will': 1.0, 'only': 1.0, 'and': 1.0, 'very': 1.0, 'as': 2.0, 'also': 1.0, 'is': 1.0, 'useful': 1.0, 'case': 2.0, 'be': 1.0, 'used': 1.0, 'well': 1.0, 'a': 1.0}
Word element => {'junk': 1.0, 'piece': 1.0, 'avoid': 1.0, 'power': 1.0, 'do': 1.0, 'jogger': 1.0, 'looking': 1.0, 'ways': 1.0, 'extreme': 1.0, 'basis': 1.0, 'regular': 1.0, 'snaps': 1.0, 'nicely': 1.0, 'time': 2.0, 'wheels': 1.0, 'pockets': 1.0, 'ripping': 1.0, 'back': 1.0, 'whole': 1.0, 'thing': 1.0, 'in': 7.0, 'everything': 1.0, 'places': 1.0, 'sun': 1.0, 'has': 1.0, 'your': 1.0, 'any': 1.0, 'capable': 1.0, 'fraying': 1.0, 'available': 1.0, 'ripped': 1.0, 'seats': 1.0, 'not': 2.0, 'because': 2.0, 'does': 1.0, 'on': 3.0, 'weight': 1.0, 'others': 1.0, 'decent': 2.0, 'earlier': 1.0, 'the': 18.0, 'of': 5.0, 'holding': 1.0, 'completely': 1.0, 'mistake': 1.0, 'big': 1.0, 'sale': 1.0, 'have': 1.0, 'shade': 1.0, 'it': 6.0, 'bottle': 1.0, 'this': 3.0, 'bought': 1.0, 'for': 3.0, 'horrible': 2.0, 'severely': 1.0, 'fit': 1.0, 'we': 4.0, 'a': 5.0, 'go': 2.0, 'storage': 1.0, 'tugged': 1.0, 'fold': 2.0, 'compared': 1.0, 'was': 1.0, 'bent': 1.0, 'stroller': 3.0, 'our': 2.0, 'price': 1.0, 'year': 1.0, 'stitching': 1.0, 'off': 1.0, 'are': 2.0, 'balance': 2.0, 're': 2.0, 'wheel': 1.0, 'left': 1.0, 'get': 1.0, 'had': 2.0, 'and': 1.0, 'but': 2.0, 'i': 2.0, 'several': 1.0, 'down': 1.0, 'if': 1.0, 'every': 2.0, 'used': 2.0, 'order': 1.0, 'job': 1.0, 'to': 9.0, 'straight': 1.0, 'van': 1.0, 'frame': 1.0, 'without': 1.0, 'slightly': 1.0, 'or': 1.0, 'they': 1.0, 'did': 1.0, 'lining': 1.0, 'end': 1.0, 'each': 1.0, 'water': 1.0, 'up': 2.0, 'push': 1.0, 'you': 2.0, 'force': 1.0, 'handle': 1.0, 'is': 2.0, 'at': 1.0, 'bars': 1.0, 'way': 1.0, 'other': 1.0}
Word element => {'not': 1.0, 'and': 1.0, 'do': 1.0, 'again': 1.0, 'are': 1.0, 'my': 1.0, 'pants': 3.0, 'cause': 1.0, 'in': 1.0, 'these': 1.0, 'bulky': 1.0, 'never': 1.0, 'training': 1.0, 'fit': 1.0, 'leak': 1.0, 'big': 1.0, 'daighter': 1.0, 'so': 1.0, 'they': 3.0, 'ever': 1.0, 'calls': 1.0, 'them': 1.0, 'balloon': 1.0, 'r': 1.0}
Word element => {'in': 1.0, 'daughter': 1.0, 'had': 1.0, 'a': 1.0, 'bit': 1.0, 'is': 1.0, 'twice': 1.0, 'been': 1.0, 'wears': 1.0, 'little': 1.0, 'and': 1.0, 'chunky': 1.0, 'my': 1.0, 'are': 1.0, 'everything': 1.0, 'else': 1.0, 'but': 1.0, '3t': 1.0, 'these': 1.0, 'they': 1.0, 'almost': 1.0, 'as': 2.0, 'big': 1.0, 'should': 1.0}
Word element => {'organized': 1.0, 'stay': 1.0, 'hurry': 1.0, 'a': 1.0, 'things': 1.0, 'love': 3.0, 'find': 1.0, 'the': 1.0, 'to': 1.0, 'product': 1.0, 'this': 1.0, 'item': 1.0, 'in': 1.0, 'for': 1.0, 'busy': 1.0, 'perfect': 1.0, 'moms': 1.0, 'who': 1.0, 'and': 1.0, 'need': 1.0}
Word element => {'friend': 1.0, 'so': 1.0, 'years': 1.0, 'this': 1.0, 'have': 1.0, 'of': 1.0, 'some': 1.0, 'glad': 1.0, 'ago': 1.0, 'should': 1.0, 'did': 1.0, 'thought': 1.0, 'i': 2.0, 'purchasing': 1.0, 'for': 1.0, 'one': 1.0, 'or': 1.0, 'you': 1.0, 'am': 1.0, 'wont': 1.0, 'them': 1.0, 'go': 1.0, 'wrong': 1.0, 'yourself': 1.0}
Word element => {'quality': 1.0, 'brands': 1.0, 'favorite': 1.0, 'of': 1.0, 'great': 1.0, 'love': 1.0, 'my': 1.0, 'the': 2.0, 'softness': 1.0, 'in': 1.0, 'bamboo': 1.0, 'collection': 1.0, 'by': 2.0, 'with': 1.0, 'anais': 1.0, 'aden': 1.0, 'far': 1.0, 'one': 1.0}
Word element => {'disagree': 1.0, 'fervently': 1.0, 'would': 1.0, 'loose': 1.0, 'marketed': 1.0, 'wash': 1.0, 'muslin': 1.0, 'but': 1.0, 'after': 1.0, 'cover': 1.0, 'looking': 1.0, 'great': 1.0, 'the': 1.0, 'a': 2.0, 's': 2.0, 'already': 1.0, 'and': 1.0, 'very': 1.0, 'pilling': 1.0, 'as': 1.0, 'has': 1.0, 'threads': 1.0, 'though': 1.0, 'first': 1.0, 'it': 2.0, 'durable': 1.0, 'i': 1.0}
Word element => {'nursery': 1.0, 'so': 1.0, 'perfectly': 1.0, 'it': 1.0, 'were': 1.0, 'was': 2.0, 'to': 1.0, 'exactly': 1.0, 'what': 1.0, 'looking': 1.0, 'matched': 1.0, 'i': 1.0, 'images': 1.0, 'for': 1.0, 'the': 3.0, 'colors': 1.0, 'this': 1.0, 'true': 1.0}
Word element => {'was': 1.0, 'in': 1.0, 'wrong': 1.0, 'me': 1.0, 'for': 1.0, 'up': 1.0, 'spending': 1.0, 'dissapointed': 1.0, 'really': 1.0, 'am': 1.0, 'well': 1.0, 'front': 1.0, 'instructions': 1.0, 'care': 1.0, 'more': 1.0, 'is': 1.0, 'this': 1.0, 'would': 2.0, 'the': 5.0, 'six': 1.0, 'brand': 1.0, 'old': 1.0, 'from': 1.0, '34': 2.0, 'of': 1.0, 'be': 1.0, 'as': 2.0, 'to': 2.0, 'thought': 2.0, 'had': 1.0, 'save': 1.0, 'purchase': 1.0, 'quality': 2.0, 'money': 1.0, 'but': 1.0, 'and': 2.0, 'pretty': 1.0, 'worth': 1.0, 'end': 2.0, 'eye': 1.0, 'after': 1.0, 'sheet': 1.0, 'so': 1.0, 'wear': 1.0, 'seams': 1.0, 'i': 8.0, 'two': 1.0, 'at': 1.0, 'washes': 1.0, 'ripped': 1.0, 'it': 4.0, 'higher': 1.0, 'month': 1.0, 'tear': 1.0, 'decided': 1.0, 'one': 1.0, 'have': 1.0, 's': 1.0, 't': 1.0, 'a': 1.0, 'reputation': 1.0, 'know': 1.0, 'isn': 1.0, 'followed': 1.0}
Word element => {'apart': 1.0, 'falling': 1.0, 'or': 1.0, 'with': 1.0, 'problems': 1.0, 'no': 1.0, 'up': 1.0, 'other': 1.0, 'bamboo': 2.0, 'm': 2.0, 'the': 4.0, 'sheets': 1.0, 'cotton': 1.0, 'it': 3.0, 'this': 1.0, 'sheet': 3.0, 'organic': 1.0, 'now': 1.0, 'aden': 1.0, 'their': 1.0, 'that': 1.0, 'day': 1.0, 'buy': 1.0, 'general': 1.0, 'beautiful': 1.0, 'actually': 1.0, 'seams': 1.0, 'i': 2.0, 'fan': 1.0, 'is': 2.0, 'washed': 1.0, 'huge': 1.0, 'by': 1.0, 'just': 1.0, 'anais': 1.0, 'crib': 2.0, 'standing': 1.0, 'purchased': 1.0, 'had': 1.0, 'in': 1.0, 'softer': 1.0, 'much': 1.0, 'wonderful': 1.0, 'and': 3.0, 'pattern': 1.0, 'of': 2.0, 'scratchiest': 1.0, 'part': 1.0, 'every': 1.0, 'plain': 1.0, 'going': 1.0, 's': 3.0, 'a': 2.0, 'we': 1.0, 'have': 1.0, 'at': 1.0, 'to': 1.0, 'least': 1.0, 'though': 1.0, '10x': 1.0}
Word element => {'be': 1.0, 'spills': 1.0, 'some': 1.0, 'won': 1.0, 'has': 1.0, 'safe': 1.0, 'plastics': 1.0, 'that': 1.0, 'learned': 1.0, 'they': 1.0, 'mostly': 1.0, 'other': 1.0, 'because': 1.0, 'both': 1.0, 'used': 1.0, 'are': 1.0, 'the': 4.0, 'kinderville': 1.0, 'bit': 1.0, 'and': 3.0, 'bowls': 2.0, 'children': 1.0, 'he': 2.0, 'for': 3.0, 'bought': 1.0, 'one': 1.0, 'we': 3.0, 't': 2.0, 'a': 2.0, 'since': 1.0, 'prevented': 1.0, 've': 1.0, 'size': 1.0, 'aren': 1.0, '2': 1.0, 'most': 1.0, 'can': 1.0, 'disappointed': 1.0, 'yr': 1.0, 'old': 1.0, 'baby': 1.0, 'them': 1.0, 'was': 1.0, 'our': 2.0, 'cups': 3.0, 'to': 1.0, 'you': 1.0, 'easily': 1.0, 'being': 1.0, 'silicone': 1.0, 'perfect': 1.0, 'grip': 1.0, 'table': 1.0, 'hold': 1.0, 'which': 1.0}
Word element => {'helpful': 1.0, 'review': 1.0, 'from': 1.0, 'more': 1.0, 'will': 1.0, 'highly': 1.0, 'customer': 1.0, 'friendly': 1.0, 'been': 1.0, 'questions': 1.0, 'open': 1.0, 'emails': 1.0, 'returning': 1.0, 'were': 1.0, 'purchasing': 2.0, 'while': 1.0, 'but': 1.0, 'package': 1.0, 'sent': 2.0, 'original': 1.0, 'hope': 1.0, 'assured': 1.0, 'damage': 1.0, 'cosmetic': 1.0, 'useable': 1.0, 'had': 2.0, 'received': 2.0, 'moment': 1.0, 'take': 1.0, 'like': 1.0, 'was': 2.0, 'rubber': 1.0, 'make': 3.0, 'thick': 1.0, 'quickly': 1.0, 'feel': 1.0, 'detergents': 1.0, 'nice': 1.0, 'company': 4.0, 'tell': 1.0, 'paste': 2.0, 'anything': 1.0, 'tasted': 1.0, 'two': 2.0, 'properties': 1.0, 'periods': 1.0, 'products': 3.0, 'over': 3.0, 'freezer': 1.0, 'replacement': 2.0, 'enough': 2.0, 'customers': 1.0, 'say': 1.0, 'all': 2.0, 'an': 1.0, 'definitely': 1.0, 'spoke': 1.0, 'me': 2.0, 'are': 2.0, 'my': 8.0, 'entire': 1.0, 'due': 1.0, 'safe': 4.0, 'emailed': 3.0, 'back': 2.0, 'added': 1.0, 'with': 4.0, 'temperatures': 1.0, 'appear': 2.0, 'kinderville': 3.0, 'doesn': 2.0, 'report': 1.0, 'cut': 1.0, 'so': 1.0, 'looked': 1.0, 'he': 2.0, 'order': 1.0, 'allowing': 1.0, 'month': 1.0, 'pinched': 1.0, 'should': 1.0, 'plastics': 1.0, 'pure': 1.0, 'variety': 1.0, 'send': 1.0, 'baking': 1.0, 'answering': 1.0, 'research': 1.0, 'knocked': 1.0, 'son': 2.0, 'safer': 1.0, '10': 1.0, 'for': 4.0, 'i': 18.0, 'well': 8.0, 'instead': 1.0, 'flavors': 1.0, 'led': 1.0, 'giving': 1.0, 'cups': 8.0, 'case': 1.0, 'constructed': 1.0, 'decision': 1.0, 'high': 3.0, 'other': 2.0, 'recently': 1.0, 'twisted': 1.0, 'purchased': 1.0, 'odors': 1.0, 'costs': 1.0, 'petroleum': 1.0, 'openness': 1.0, 'use': 2.0, 'bonus': 1.0, 'wash': 1.0, 'prompt': 1.0, 'since': 1.0, 'has': 2.0, 'them': 11.0, 'always': 1.0, 't': 4.0, 'likes': 1.0, 'set': 2.0, 'the': 22.0, 'believe': 1.0, 'that': 10.0, 'recommend': 1.0, 'silicone': 8.0, 'because': 4.0, 'companies': 1.0, 'far': 1.0, 'quality': 3.0, 'noise': 1.0, 'your': 2.0, 'many': 1.0, 'others': 1.0, 'happen': 1.0, 'alternative': 1.0, 'at': 1.0, 'durable': 1.0, 'fillers': 1.0, 'noticed': 1.0, 'on': 1.0, 'long': 1.0, 'rinse': 1.0, 'function': 1.0, 'consistently': 1.0, 'dried': 1.0, 'prevented': 1.0, 'bowls': 2.0, 'rinsing': 1.0, 'too': 1.0, 'one': 3.0, 'sure': 1.0, 'this': 6.0, 'in': 4.0, 'based': 1.0, 'which': 2.0, 'have': 6.0, 'found': 2.0, 'bit': 1.0, 'impressed': 1.0, 'withstand': 1.0, 'full': 1.0, 'grip': 1.0, 'surface': 2.0, 'to': 20.0, 'right': 1.0, 'offered': 1.0, 'tray': 2.0, 'smelled': 1.0, 'excited': 1.0, 'material': 1.0, 'initial': 1.0, 'be': 6.0, 'it': 5.0, 'table': 1.0, 'water': 1.0, 'service': 1.0, 'likely': 1.0, 'slide': 1.0, 'his': 1.0, 'making': 1.0, 'dishwasher': 1.0, 'or': 3.0, 'though': 1.0, 'structural': 1.0, 'by': 4.0, 'find': 1.0, 'very': 3.0, 'these': 3.0, 'throw': 1.0, 'off': 1.0, 'just': 1.0, 'and': 16.0, 'tried': 1.0, 'until': 1.0, 'forth': 2.0, 'much': 2.0, 'even': 1.0, 'of': 13.0, 'old': 1.0, 'brands': 1.0, 'we': 1.0, 'then': 1.0, 'am': 1.0, 'not': 3.0, 'if': 3.0, 'still': 1.0, 'don': 2.0, 'when': 2.0, 'as': 20.0, 'less': 1.0, 'sit': 2.0, 'a': 8.0, 'hit': 1.0, 'luckily': 1.0, 'ground': 1.0, 'past': 1.0, 'wide': 1.0, 'time': 2.0, 'sterilize': 1.0, 'kitchen': 1.0, 'sometimes': 1.0, 'surprised': 1.0, 'they': 9.0, 'absorb': 1.0, 'strong': 1.0, 'can': 6.0, 'is': 7.0, 'flavored': 1.0, 'some': 2.0, 'cup': 2.0, 'spread': 1.0, 'you': 3.0, 'told': 1.0, 'out': 3.0, 'stability': 1.0, 'clean': 2.0, 'their': 1.0, 'dish': 1.0, 'little': 1.0, 'utensil': 1.0, 'allow': 1.0, 'minor': 1.0, 'before': 2.0, 'foods': 1.0, 'soda': 1.0, 'effective': 1.0, 'also': 3.0, 'dishes': 1.0, 'chalk': 1.0, 'away': 1.0, 'around': 1.0, 'least': 1.0}
Word element => {'better': 1.0, 'loves': 1.0, 'and': 5.0, 'to': 3.0, 'was': 2.0, 'used': 1.0, 'i': 3.0, 'my': 1.0, 'something': 1.0, 'thought': 2.0, 'tried': 1.0, 'mommy': 1.0, 'daughter': 1.0, 'so': 4.0, 'swaddle': 1.0, 'd': 1.0, 'is': 2.0, 'in': 1.0, 'daddy': 1.0, 'bed': 1.0, 'trouble': 1.0, 'success': 1.0, 'close': 1.0, 'crib': 1.0, 'give': 1.0, 'sheets': 2.0, 'thread': 1.0, 'near': 1.0, 'impossible': 1.0, 'count': 1.0, 'sleeping': 2.0, 'which': 1.0, 'aden': 1.0, 'are': 1.0, 's': 1.0, 'a': 3.0, 'we': 2.0, 'have': 1.0, 'the': 1.0, 'find': 1.0, 'having': 1.0, 'maybe': 1.0, 'anais': 1.0, 'blankets': 1.0, 'this': 1.0, 'she': 2.0, 'higher': 1.0, 'it': 2.0, 'much': 1.0, 'try': 1.0}
Word element => {'too': 1.0, 'cozy': 1.0, 'really': 1.0, 'cute': 1.0, 'soft': 1.0, 'light': 1.0, 'i': 1.0, 'bought': 1.0, 'the': 1.0, 'are': 2.0, 'my': 1.0, 'and': 1.0, 'blankets': 1.0, 'for': 1.0, 'designs': 1.0, 'old': 1.0, '15': 1.0, 'month': 1.0, 'love': 1.0, 'these': 2.0, 'they': 1.0}
Word element => {'anais': 1.0, 'aden': 1.0, 'great': 1.0, 'and': 3.0, 'soft': 1.0, 'sheet': 1.0, 'jewelry': 1.0, 'feels': 1.0, 'on': 1.0, 'breathable': 1.0, 'it': 4.0, 'this': 1.0, 's': 3.0, 'noticeable': 1.0, 'i': 1.0, 'does': 1.0, 'love': 2.0, 'snag': 1.0, 'easily': 1.0, 'color': 1.0, 'too': 1.0, 'but': 1.0, 'a': 1.0, 'solid': 1.0, 'because': 1.0, 'not': 1.0}
Word element => {'for': 1.0, 'my': 1.0, 'or': 1.0, 'design': 1.0, 'in': 1.0, 'pretty': 1.0, 'nice': 1.0, 'and': 1.0, 'opinion': 1.0, 'as': 1.0, 'soft': 1.0, 'sheet': 1.0, 'obnoxious': 1.0, 'not': 1.0, 'the': 1.0, 'bedsheets': 1.0, 'are': 1.0, 'it': 1.0, 'loud': 1.0, 'children': 1.0, 'this': 1.0, 'is': 3.0, 'many': 1.0, 's': 1.0, 'what': 1.0, 'expensive': 1.0, 'a': 1.0, 'though': 1.0, 'bit': 1.0}
Word element => {'about': 1.0, 'option': 1.0, 'stroller': 1.0, 'so': 1.0, 'car': 4.0, 'jogger': 1.0, 'this': 1.0, 'perfect': 1.0, 'in': 2.0, 'for': 1.0, 'arrangement': 1.0, 'has': 2.0, 'have': 1.0, 'swore': 1.0, 'make': 1.0, 'the': 5.0, 'baby': 2.0, 'combo': 1.0, 'adapters': 1.0, 'versa': 1.0, 'and': 3.0, 'much': 2.0, 'birtax': 1.0, 'safe': 1.0, 'very': 1.0, 'easy': 1.0, 'it': 1.0, 'she': 1.0, 'our': 2.0, 'seat': 4.0, 'as': 2.0, 'to': 3.0, 'had': 1.0, 'was': 1.0, 'snap': 1.0, 'newborn': 1.0, 'out': 2.0, 'when': 2.0, 'go': 1.0, 'we': 1.0, 'going': 1.0, 'become': 1.0, 'i': 3.0, 'b': 1.0, 'my': 1.0, 'riding': 1.0, '34': 2.0, 'wear': 1.0, 'her': 2.0, 'possible': 1.0, 'but': 1.0, 'that': 1.0, 'been': 1.0, 'initially': 1.0, 'loves': 1.0}
Word element => {'moving': 1.0, 'prevent': 1.0, 'down': 1.0, 'july': 1.0, 'isn': 1.0, 'weight': 1.0, 'haven': 1.0, 'better': 1.0, 'belts': 1.0, 'safety': 1.0, 'with': 2.0, 'due': 1.0, 'forth': 1.0, 'back': 1.0, 'wobbles': 1.0, 'attached': 1.0, 'from': 1.0, 'while': 1.0, 'try': 1.0, 'you': 1.0, 'if': 1.0, 'on': 3.0, 'of': 1.0, 'stable': 1.0, 'until': 1.0, 'feel': 1.0, 'car': 3.0, 'that': 1.0, 'don': 1.0, 'come': 1.0, 'move': 1.0, 'however': 1.0, 'safe': 1.0, 'told': 1.0, 'no': 1.0, 'this': 1.0, 'it': 9.0, 'chaperone': 2.0, 'the': 17.0, 'universal': 2.0, 'adaptor': 6.0, 'britax': 2.0, 'i': 4.0, 'hoping': 1.0, 'in': 2.0, 'm': 1.0, '34': 2.0, 'best': 1.0, 'spoke': 1.0, 'hold': 1.0, 'like': 2.0, 'which': 3.0, 'seat': 5.0, 'as': 2.0, 'to': 4.0, 'doesn': 2.0, 'was': 1.0, 'is': 1.0, 'jogger': 1.0, 'asked': 1.0, 'and': 6.0, 'me': 1.0, 'baby': 4.0, 'bit': 1.0, 'simply': 1.0, 'secure': 1.0, 'also': 1.0, 'will': 7.0, 'but': 1.0, 'work': 2.0, 'stroller': 3.0, 'although': 1.0, 'carseat': 1.0, 'fact': 1.0, 'my': 3.0, 'b': 1.0, 'select': 1.0, 'they': 1.0, 'cradle': 1.0, 'unlike': 1.0, 'just': 1.0, 'easy': 1.0, 'enough': 1.0, 'for': 3.0, 'assemble': 1.0, 'did': 1.0, 'tried': 1.0, 'click': 2.0, 'problem': 1.0, 'a': 2.0, 's': 1.0, 't': 5.0, 'city': 1.0}
Word element => {'adaptors': 1.0, 'highly': 1.0, 'and': 1.0, 'like': 1.0, 'as': 1.0, 'of': 1.0, 'up': 1.0, 'absolutely': 1.0, 'perfect': 1.0, 'recommend': 1.0, 'a': 1.0, 'unlike': 1.0, 'is': 1.0, 'on': 1.0, 'stroller': 1.0, 'champ': 1.0, 'it': 1.0, 'this': 1.0, 'works': 1.0, 'does': 1.0, 'not': 1.0, 'other': 1.0, 'extra': 1.0, 'take': 1.0, 'some': 1.0, 'space': 1.0, 'the': 2.0}
Word element => {'my': 1.0, 'of': 2.0, 'inside': 1.0, 'see': 1.0, 'much': 2.0, 'would': 1.0, 'but': 1.0, 'clear': 2.0, 'in': 1.0, 'together': 1.0, 'closer': 1.0, 'buttons': 1.0, 'was': 1.0, 'well': 1.0, 'wave': 1.0, 'looking': 1.0, 'than': 1.0, 'maybe': 1.0, 'what': 1.0, 'silicone': 2.0, 'even': 1.0, 'used': 1.0, 'i': 5.0, 'it': 3.0, 'with': 1.0, 'love': 2.0, 'for': 1.0, 'not': 1.0, 'clean': 1.0, 'prefer': 1.0, 'made': 1.0, 'little': 1.0, 'pouch': 1.0, 'be': 1.0, 'easy': 2.0, 'more': 1.0, 'is': 1.0, 'holds': 1.0, 'quite': 1.0, 'trust': 1.0, 'colors': 2.0, 'though': 1.0, 'the': 3.0, 'kinderville': 1.0, 'up': 1.0, 'and': 2.0, 'pattern': 1.0, 'type': 1.0, 'makes': 1.0, 'teeth': 1.0, 'hold': 1.0, 'on': 1.0, 'this': 1.0, 'wish': 1.0, 'also': 1.0, 'walled': 1.0, 'pouches': 1.0, 'thinner': 1.0, 'that': 2.0, 'could': 1.0, 'any': 1.0, 'to': 4.0, 'as': 1.0, 'are': 1.0, 'zip': 1.0, 'lock': 1.0, 'bag': 1.0, 'containers': 1.0, 'replacements': 1.0, 'smaller': 1.0}
Word element => {'show': 1.0, 'curio': 1.0, 'or': 1.0, 'later': 1.0, 'memory': 1.0, 'their': 1.0, 'in': 2.0, 'up': 1.0, 'boxes': 2.0, 'have': 1.0, 'able': 2.0, 'first': 1.0, 'it': 2.0, 'children': 1.0, 'saw': 1.0, 'but': 1.0, 'these': 1.0, 'the': 2.0, 'ones': 1.0, 'had': 1.0, 'was': 1.0, 'i': 5.0, 'two': 1.0, 'mementos': 1.0, 'one': 1.0, 'and': 3.0, 'of': 1.0, 'each': 1.0, 'new': 1.0, 'cabinet': 1.0, 'not': 1.0, 'to': 4.0, 'our': 1.0, 'that': 1.0, 'way': 1.0, 'you': 2.0, 's': 1.0, 'a': 1.0, 'this': 1.0, 'perfect': 1.0, 'love': 2.0, 'for': 4.0, 'kit': 1.0, 'lets': 1.0, 'little': 1.0, 'family': 1.0, 'my': 3.0, 'save': 1.0, 'print': 1.0, 'put': 2.0, 'make': 1.0, 'on': 2.0, 'your': 1.0, 'even': 1.0, 'them': 2.0, 'display': 1.0, 'being': 1.0, 'if': 1.0, 'want': 1.0}
Word element => {}
Word element => {'buy': 1.0, 'good': 1.0, 'soft': 1.0, 'overall': 1.0, 'are': 1.0, 'reaction': 1.0, 'his': 2.0, 'my': 1.0, 'the': 1.0, 'son': 1.0, 'on': 1.0, 'saw': 1.0, 'sheets': 1.0, 's': 1.0, 'a': 1.0, 'well': 1.0, 'birthday': 1.0, 'ordered': 1.0, 'third': 1.0, 'we': 1.0, 'when': 1.0, 'for': 1.0, 'bed': 1.0, 'this': 1.0, 'he': 1.0, 'it': 2.0, 'was': 1.0, 'priceless': 1.0, 'fits': 1.0, 'and': 1.0}
Word element => {'top': 1.0, 'away': 1.0, 'and': 1.0, 'we': 1.0, 'set': 1.0, 'when': 2.0, 'so': 1.0, 'pillowcase': 1.0, 'was': 1.0, 'a': 2.0, 'bed': 1.0, 'one': 1.0, 'for': 2.0, 'right': 1.0, 'old': 1.0, 'plush': 1.0, 'months': 1.0, 'saw': 1.0, '10': 1.0, 'is': 3.0, 'the': 3.0, 'this': 1.0, 'he': 2.0, 'excited': 1.0, 'fitted': 1.0, 'pocoyo': 1.0, 'high': 1.0, 'my': 2.0, 'sheet': 2.0, 'fits': 1.0, 'in': 2.0, 'perfect': 1.0, 'little': 1.0, 'crib': 2.0, 'his': 2.0, 'mattress': 1.0, 'comforter': 1.0, 'loves': 1.0, 'or': 1.0, 'just': 1.0, 'not': 1.0, 'son': 2.0, 'very': 1.0, 'toddler': 1.0, 'put': 1.0, 'but': 1.0, 'quality': 1.0}
Word element => {'pad': 1.0, 'memory': 1.0, 'extra': 1.0, 'mattress': 1.0, 'even': 1.0, 'bed': 1.0, 'an': 1.0, 'toddler': 1.0, 'foam': 1.0, 'easily': 1.0, 'comfortor': 1.0, 'too': 1.0, 'very': 2.0, 'and': 2.0, 'that': 1.0, 'up': 1.0, 'set': 2.0, 'sheets': 1.0, 'wash': 1.0, 'soft': 1.0, 'has': 1.0, 'with': 1.0, 'this': 1.0, 'well': 2.0, 'my': 1.0, 'is': 1.0, 'on': 2.0, 'not': 1.0, 'the': 3.0, 'heavy': 1.0, 'bedding': 1.0, 'fits': 1.0, 'grandsons': 1.0}
Word element => {'it': 1.0, 'really': 1.0, 'old': 1.0, 'yr': 1.0, '3': 1.0, 'our': 1.0, 'son': 1.0, 'is': 2.0, 'the': 3.0, 'are': 1.0, 'fabric': 1.0, 'lightweight': 1.0, 'soft': 1.0, 'comforter': 1.0, 'prints': 1.0, 'and': 2.0, 'very': 1.0, 'loves': 1.0, 'colorful': 1.0}
Word element => {'purchase': 1.0, 'each': 1.0, 'on': 1.0, 'picture': 1.0, 'different': 1.0, 'a': 1.0, 'has': 1.0, 'sides': 1.0, 'him': 1.0, 'case': 1.0, 'pillow': 1.0, 'material': 1.0, 'soft': 1.0, 'of': 1.0, 'it': 1.0, 'with': 2.0, 'fitted': 1.0, 'he': 1.0, 'great': 1.0, '2': 1.0, 'the': 5.0, 'happy': 1.0, 'my': 1.0, 'comforter': 1.0, 'very': 2.0, 'perfect': 1.0, 'sheet': 2.0, 'made': 1.0, 'bedding': 1.0, 'side': 1.0, 'is': 2.0, 'around': 1.0, 'fit': 1.0, 'other': 1.0, 'crib': 1.0, 'and': 1.0, 'sons': 1.0, 'perfectly': 1.0, 'likes': 1.0, 'to': 2.0, 'take': 1.0}
Word element => {'few': 1.0, 'a': 1.0, 'within': 1.0, 'came': 1.0, 'the': 1.0, 'nice': 1.0, 'which': 1.0, 'saw': 1.0, 'm': 1.0, 'when': 1.0, 'i': 3.0, 'so': 2.0, 'my': 1.0, 'this': 1.0, 'pocoyo': 1.0, 'it': 3.0, 'reversible': 1.0, 'comforter': 1.0, 'thought': 1.0, 'perfect': 1.0, 'grandaughter': 1.0, 'would': 1.0, 'material': 1.0, 'be': 1.0, 'very': 3.0, 'and': 2.0, 'quality': 1.0, 'she': 1.0, 'colorfull': 1.0, 'is': 4.0, 'pleased': 1.0, 'days': 1.0, 'soft': 1.0, 'loves': 2.0, 'good': 1.0}
Word element => {'out': 1.0, 'had': 1.0, 'for': 1.0, 'are': 1.0, 'animals': 1.0, 'falls': 1.0, 'totally': 1.0, 'mobile': 1.0, 'not': 1.0, 'me': 1.0, 'irritating': 1.0, 'in': 3.0, 'better': 1.0, 'slept': 1.0, 'removable': 1.0, 'music': 1.0, 'often': 1.0, 'sling': 1.0, 'off': 1.0, 'crying': 1.0, 'bed': 1.0, 'worked': 1.0, 'attention': 1.0, 'immediately': 1.0, 'of': 1.0, 'else': 1.0, 'time': 1.0, 'so': 1.0, 'washing': 1.0, 'he': 3.0, 'this': 2.0, 'it': 3.0, 'reach': 1.0, 'the': 10.0, 'grabbed': 1.0, 'easily': 1.0, 'when': 1.0, 'i': 1.0, 'feature': 1.0, 'think': 1.0, 'on': 1.0, 'nothing': 1.0, 'like': 1.0, 'vibrating': 1.0, 'toss': 1.0, 'and': 2.0, 'chair': 1.0, 'than': 1.0, 'super': 1.0, 'by': 1.0, 'light': 1.0, 'take': 1.0, 'grown': 1.0, 'weight': 1.0, 'more': 1.0, 'is': 3.0, 'could': 1.0, 's': 3.0, 'a': 3.0, 'easy': 1.0, 'seat': 2.0, 'to': 4.0, 'car': 1.0, 'silly': 1.0, 'friend': 1.0, 'them': 1.0, 'baby': 1.0, 'quality': 1.0, 'little': 1.0}
Word element => {'good': 1.0, 'recommend': 1.0, 'i': 1.0, 'purchase': 1.0, 'this': 4.0, 'blanket': 3.0, 'is': 2.0, 'granddaughter': 1.0, 'for': 1.0, 'my': 2.0, 'will': 1.0, 'quality': 1.0, 'very': 1.0, 'highly': 1.0, 'only': 1.0, 'who': 1.0, 'use': 1.0, '3rd': 1.0}
Word element => {'you': 1.0, 'cutethank': 1.0, 'very': 1.0, 'and': 1.0, 'safe': 1.0, 'falling': 1.0, 'lost': 1.0, 'no': 1.0, 'lovable': 1.0, 'of': 2.0, 'retro': 1.0, 'total': 1.0, 'win': 1.0, 'partsbaby': 1.0, 'cuddles': 1.0, 'baby': 1.0, 'out': 1.0, 'from': 1.0, 'toysoft': 1.0, 'a': 1.0}
Word element => {'will': 1.0, 'from': 1.0, 'be': 1.0, 'to': 1.0, 'animals': 1.0, 'choose': 1.0, 'so': 1.0, 'many': 1.0, 'again': 1.0, 'more': 1.0, 'the': 1.0, 'jellycat': 1.0, 'stuffed': 1.0, 'bright': 1.0, 'ordering': 1.0, 'love': 1.0, 'line': 1.0, 'of': 1.0, 'toys': 1.0, 'and': 2.0, 'colorful': 1.0}
Word element => {'s': 1.0, 'daughter': 1.0, 'for': 1.0, 'this': 1.0, 'bunny': 1.0, 'perfect': 2.0, 'than': 1.0, 'is': 1.0, 'my': 1.0, 'small': 1.0, 'the': 1.0, 'cute': 1.0, 'basket': 1.0, 'it': 1.0, 'size': 1.0, 'so': 1.0, 'looks': 1.0, 'easter': 1.0, 'softer': 1.0, 'and': 1.0}
Word element => {'jean': 1.0, 'thanks': 1.0, 'worth': 1.0, 'pricey': 1.0, 'would': 1.0, 'was': 1.0, 'not': 1.0, 'she': 1.0, 'little': 1.0, 'big': 1.0, 'for': 1.0, 'lovely': 1.0, 'new': 1.0, 'present': 1.0, 'a': 2.0, 'so': 1.0, 'it': 1.0, 'sister': 2.0, 'this': 1.0, 'left': 1.0, 'real': 1.0, 'out': 1.0, 'her': 1.0, 'when': 1.0, 'sweet': 1.0, 'arrives': 1.0, 'and': 1.0, 'albeit': 1.0}
Word element => {'baby': 1.0, 'uppa': 1.0, 'on': 1.0, 'like': 1.0, 'didn': 1.0, 'color': 1.0, 'grey': 1.0, 'out': 1.0, 'able': 1.0, 'be': 1.0, 'during': 1.0, 'nap': 1.0, 'we': 3.0, 'stroller': 1.0, 'glux': 1.0, 'shade': 1.0, 'snooze': 1.0, 't': 1.0, 'great': 1.0, 'the': 4.0, 'black': 1.0, 'well': 1.0, 'very': 1.0, 'worked': 1.0, 'day': 1.0, 'as': 2.0, 'get': 1.0, 'and': 2.0, 'seat': 1.0, 'just': 1.0, 'used': 1.0, 'works': 1.0, 'him': 1.0, 'hot': 1.0, 'car': 1.0, 'it': 3.0, 'this': 1.0, 'purchased': 1.0, 'took': 1.0, 'old': 1.0, 'wanted': 1.0, 'to': 3.0, 'when': 1.0, 'our': 2.0, '14m': 1.0, 'disney': 1.0}
Word element => {'others': 1.0, 'have': 1.0, 'love': 1.0, 'hands': 1.0, 'keeps': 1.0, 'but': 1.0, 'out': 2.0, 'sun': 1.0, 'recommended': 1.0, 'keep': 1.0, 'unwanted': 1.0, 'item': 1.0, 'so': 1.0, 'and': 2.0, 'like': 1.0, 'already': 1.0, 'peek': 1.0, 'people': 1.0, 'snoozeshade': 1.0, 'where': 1.0, 'spain': 1.0, 'it': 2.0, 'only': 1.0, 'excited': 1.0, 'this': 2.0, 'also': 1.0, 'in': 2.0, 'live': 1.0, 'touch': 1.0, 'i': 3.0, 'your': 1.0, 'does': 1.0, 'baby': 1.0, 'to': 3.0, 'was': 1.0, 'not': 1.0, 'receive': 1.0, 'the': 2.0}
Word element => {'and': 1.0, 'quality': 1.0, 'texture': 1.0, 'good': 1.0, 'toys': 1.0, 'small': 1.0, 'collect': 1.0, 'it': 1.0, 'to': 1.0, 'tiny': 1.0, 'stuffed': 1.0, 'for': 1.0, 'perfect': 1.0, 'but': 1.0, 'so': 1.0, 's': 1.0, 'someone': 1.0, 'soft': 1.0, 'cute': 1.0, 'fabric': 1.0, 'likes': 1.0, 'who': 1.0}
Word element => {'excellent': 1.0, 'pains': 1.0, 'about': 1.0, 'complaining': 1.0, 'havent': 1.0, 'her': 2.0, 'to': 1.0, 'bought': 1.0, 'my': 1.0, 'this': 1.0, 'heard': 1.0, 'niece': 1.0, 'back': 1.0, 'according': 1.0, 'and': 2.0, 'very': 1.0, 'for': 1.0, 'sister': 1.0, 'durable': 1.0, 'comfortable': 1.0}
Word element => {'point': 1.0, 'move': 1.0, 'them': 1.0, 'far': 1.0, 'mass': 1.0, 'are': 1.0, 'floor': 1.0, 'touch': 1.0, 'wood': 1.0, 'legs': 1.0, 'that': 3.0, 'problem': 1.0, 'beyond': 1.0, 'now': 1.0, 'had': 1.0, 'support': 3.0, 'over': 2.0, 'in': 3.0, 'to': 2.0, 'center': 2.0, 'is': 2.0, 'lean': 1.0, 'of': 5.0, 'arm': 2.0, 'apart': 1.0, 'if': 2.0, 'does': 1.0, 'supports': 1.0, 'thing': 1.0, 'have': 2.0, 'wide': 1.0, 'sit': 1.0, 'not': 2.0, 'ie': 1.0, 'do': 1.0, 'and': 2.0, 'couple': 1.0, 'chair': 3.0, 'fallen': 1.0, 'you': 2.0, 'times': 1.0, 'can': 2.0, 'the': 8.0, 'a': 3.0, 'topple': 1.0, 'two': 1.0, 'i': 1.0, 'which': 1.0, 'like': 1.0, 'this': 2.0, 'learned': 1.0, 'extend': 1.0, 'on': 1.0, 'your': 1.0, 'my': 1.0, 'lengths': 1.0, 'lesson': 1.0, 'parallel': 1.0, 'an': 1.0, 'firmly': 1.0, 'would': 1.0, 'scary': 1.0, 'be': 1.0, 'very': 1.0, 'infant': 1.0, 'natural': 1.0, 'arms': 1.0}
Word element => {'stable': 1.0, 'does': 1.0, 'hazard': 1.0, 'tipping': 1.0, 'idea': 1.0, 'gliding': 1.0, 'smooth': 1.0, 'in': 1.0, 'unsafe': 1.0, 'bump': 1.0, 'metal': 2.0, 'glide': 1.0, 'have': 2.0, 'flat': 1.0, 'noise': 2.0, 'didn': 1.0, 'got': 1.0, 'fancy': 1.0, 'into': 2.0, 'creaking': 2.0, '10': 1.0, 'for': 3.0, 'cheap': 1.0, 'line': 1.0, 't': 1.0, 'a': 10.0, 'chair': 4.0, 'there': 2.0, 'position': 2.0, 'certain': 1.0, 'try': 1.0, 'do': 1.0, 'and': 4.0, 'but': 2.0, 'chose': 1.0, 'hoped': 1.0, 'locked': 1.0, 'beyond': 1.0, 'now': 1.0, 'fall': 1.0, 'that': 2.0, 'because': 1.0, 'not': 4.0, 'was': 3.0, 'unfortunately': 1.0, 'if': 1.0, 'glides': 1.0, 'expecting': 2.0, 'this': 4.0, 'it': 5.0, 'quite': 1.0, 'movement': 1.0, 'reclining': 1.0, 'we': 1.0, 'then': 1.0, 'make': 1.0, 'on': 1.0, 'top': 1.0, 'scraping': 1.0, 'been': 1.0, 'smoothly': 1.0, 'product': 1.0, 'price': 1.0, 'so': 1.0, 'no': 1.0, 'the': 8.0, 'of': 1.0, 'longer': 1.0, 'also': 2.0, 'could': 1.0, 'will': 1.0, 'grating': 1.0, 'what': 1.0, 'when': 1.0, 'motion': 1.0, 'loud': 1.0, 'you': 1.0, 'to': 1.0, 'move': 1.0, 'comfortable': 1.0, 'simply': 1.0, 'quickly': 1.0, 'has': 2.0, 'days': 1.0, 'cushioning': 1.0, 'buy': 1.0, 'feeling': 1.0, 'since': 1.0, 'is': 4.0, 'handle': 1.0, 'at': 1.0, 'point': 1.0, 'started': 1.0, 'using': 1.0, 'occasionally': 1.0, 'i': 5.0, 'broke': 1.0, 'base': 1.0, 'louder': 1.0, 'please': 1.0, 'very': 1.0, 'lock': 1.0, 'first': 1.0, 'bad': 1.0}
Word element => {'offers': 1.0, 'and': 1.0, 'soft': 1.0, 'cushion': 1.0, 'no': 1.0, 'at': 1.0, 'support': 1.0, '150': 1.0, 'function': 1.0, 'locking': 1.0, 'side': 1.0, 'is': 1.0, 'product': 1.0, 't': 1.0, 'the': 2.0, 'more': 1.0, 'love': 1.0, 'with': 1.0, 'this': 1.0, 'it': 2.0, 'towards': 1.0, 'but': 1.0, 'i': 1.0, 'too': 1.0, 'when': 1.0, 'firm': 1.0, 'don': 1.0, 'like': 1.0, 's': 1.0}
Word element => {'access': 1.0, 'better': 1.0, 'and': 2.0, 'out': 1.0, 'dishwasher': 1.0, 'in': 3.0, 'prefer': 1.0, 'yr': 1.0, 'made': 1.0, 'although': 1.0, 'am': 2.0, 'little': 3.0, 'day': 1.0, 'turn': 1.0, 'every': 1.0, 'really': 1.0, 'material': 1.0, 'for': 7.0, 'snacks': 2.0, 'school': 2.0, 'daughter': 2.0, 'is': 2.0, 'containers': 1.0, 'inside': 1.0, 'especially': 1.0, 'nuts': 1.0, 'an': 1.0, 'very': 3.0, 'cannot': 1.0, 'alternative': 1.0, 'crackers': 1.0, 'to': 6.0, 'because': 3.0, 'than': 1.0, 'but': 1.0, 'plastic': 1.0, '6': 1.0, 'bought': 1.0, 'with': 1.0, 'it': 11.0, 'she': 1.0, 'choice': 1.0, 'actual': 1.0, 'happy': 1.0, 'my': 3.0, 'cookies': 1.0, 'takes': 1.0, 'easy': 1.0, 's': 3.0, 'old': 1.0, 'i': 9.0, 'well': 1.0, 'expected': 1.0, 'likes': 1.0, 'contents': 1.0, 'its': 1.0, 'put': 1.0, 'much': 1.0, 'more': 1.0, 'considering': 1.0, 'size': 1.0, 'fingers': 1.0, 'sandwich': 1.0, 'what': 1.0, 'ok': 1.0, 'since': 1.0, 'future': 1.0, 'who': 1.0, 'the': 5.0, 'of': 5.0, 'soft': 1.0, 'wash': 1.0, 'smaller': 1.0, 'use': 1.0, 'slice': 1.0, 'can': 2.0, 'so': 1.0, 'cake': 1.0, 'or': 2.0, 'a': 4.0, 'small': 1.0, 'rinse': 1.0, 'younger': 1.0, 'have': 2.0, 'ordering': 1.0, 'them': 1.0, 'different': 1.0, 'wanted': 1.0, 'colors': 1.0, 'would': 1.0, 'pouch': 1.0, 'recommend': 1.0, 'store': 1.0, 'any': 1.0, 'mom': 1.0, 'hand': 1.0, 'wants': 1.0, 'some': 1.0, 'car': 1.0, 'ages': 1.0, 'they': 2.0}
Word element => {'use': 1.0, 'to': 1.0, 'color': 1.0, 'favorite': 1.0, 'their': 1.0, 'have': 1.0, 'son': 1.0, 'these': 1.0, 'cups': 1.0, 'and': 2.0, 'are': 1.0, 'my': 1.0, 'soft': 1.0, 'daughter': 1.0, 'for': 1.0, 'children': 1.0, 'durable': 1.0, 'lightweight': 1.0, 'both': 1.0}
Word element => {'hands': 1.0, 'old': 1.0, '2': 2.0, 'year': 1.0, 'for': 1.0, 'these': 1.0, 'they': 1.0, '1': 1.0, 'sturdy': 1.0, 'my': 1.0, 'are': 3.0, 'the': 1.0, 'great': 1.0, 'and': 1.0, 'size': 1.0, 'wash': 1.0, 's': 1.0, 'well': 1.0, 'perfect': 1.0}
Word element => {'that': 1.0, 'can': 1.0, 't': 2.0, 'doesn': 1.0, 'heats': 1.0, 'auto': 1.0, 'cool': 1.0, 'control': 1.0, 'touch': 1.0, 'argue': 1.0, 'to': 1.0, 'portion': 1.0, 'dishwasher': 1.0, 'the': 2.0, 'perfect': 1.0, 'in': 1.0, 'with': 1.0, 'evenly': 1.0, 'is': 1.0, '10': 1.0, 'ounces': 1.0, 'stain': 1.0, 'like': 1.0}
Word element => {'boy': 1.0, 'month': 1.0, '16': 1.0, 'a': 1.0, 'abuse': 1.0, 'the': 1.0, 'under': 1.0, 'of': 1.0, 'worked': 1.0, 'for': 1.0, 'our': 1.0, 'claimed': 1.0, 'grandson': 1.0, 'up': 1.0, 'as': 1.0, 'and': 1.0, 'holds': 1.0, 'use': 1.0, 'easy': 2.0, 'old': 1.0, 'to': 2.0, 'clean': 1.0}
Word element => {'went': 1.0, 'trash': 1.0, 'belt': 1.0, 'slight': 1.0, 'a': 2.0, 'so': 1.0, 'kept': 1.0, 'rattle': 1.0, 'and': 1.0, 'for': 1.0, 'has': 2.0, 'okay': 1.0, 'seat': 3.0, 'is': 1.0, 'the': 4.0, 'cheap': 1.0, 'protection': 1.0, 'with': 1.0, 'rubbing': 1.0, 'it': 2.0, 'in': 1.0, 'buckle': 1.0, 'falling': 1.0, 'off': 1.0, 'pad': 1.0, 'every': 1.0, 'use': 1.0}
Word element => {'legged': 1.0, 'cross': 1.0, 'd': 1.0, 'four': 1.0, 'part': 1.0, 'base': 1.0, 'on': 1.0, 'further': 1.0, 'actual': 1.0, 'why': 1.0, 'won': 1.0, 'once': 1.0, 'hoping': 1.0, 'when': 1.0, 'than': 1.0, 'know': 2.0, 'easy': 3.0, 'didn': 1.0, 'well': 1.0, 'i': 15.0, '40': 1.0, 'daughter': 1.0, 'had': 4.0, 'facing': 1.0, 'forward': 1.0, 'not': 1.0, 'harnessed': 1.0, 'that': 3.0, 'because': 1.0, 'bad': 1.0, 'middle': 2.0, 'we': 4.0, 'until': 3.0, 'face': 2.0, 'ounces': 1.0, 'try': 2.0, '5': 4.0, 'one': 1.0, 'too': 1.0, '31': 1.0, 'wish': 1.0, 'lol': 1.0, 'leaving': 1.0, 'year': 2.0, 'almost': 2.0, 'now': 2.0, 'if': 1.0, '10': 1.0, 'for': 3.0, 'take': 1.0, '15': 1.0, 'buying': 1.0, 'bought': 1.0, 'btw': 1.0, 'di': 1.0, 'down': 1.0, 'technically': 1.0, 'or': 1.0, 'loves': 1.0, 'so': 1.0, 'she': 5.0, 'month': 1.0, '6': 2.0, 'how': 2.0, 'danyone': 1.0, 'was': 3.0, 'you': 2.0, 'get': 2.0, 'able': 2.0, 'would': 1.0, 'lbs': 4.0, 'impressed': 1.0, 'complaint': 1.0, 'seat': 4.0, 'in': 9.0, 'tried': 1.0, 'and': 8.0, 'just': 2.0, 'sapphire': 1.0, 'thing': 1.0, 'today': 1.0, 'taking': 1.0, 'blue': 1.0, 'arrived': 1.0, 'asking': 1.0, '37': 1.0, '4': 1.0, '30': 2.0, 'this': 3.0, 'awkward': 1.0, 'right': 1.0, 'to': 14.0, 'turn': 1.0, 'can': 1.0, 'is': 8.0, 'at': 2.0, 'pic': 1.0, 'say': 1.0, 'completely': 1.0, 'shoot': 1.0, 'have': 6.0, 'younger': 1.0, 'three': 1.0, 'moves': 1.0, 'knob': 1.0, 'hope': 1.0, 'caravan': 1.0, 'install': 2.0, 'up': 2.0, 'sit': 2.0, 'as': 2.0, 'less': 1.0, 'out': 3.0, 'rethread': 1.0, 'might': 1.0, 'still': 2.0, 'super': 1.0, 'don': 2.0, '19': 1.0, 'need': 1.0, 'also': 2.0, 'harness': 1.0, 'level': 3.0, 'rest': 2.0, 't': 5.0, 'replacement': 1.0, 'fairly': 1.0, 'rear': 2.0, 'nautilus': 1.0, 'age': 1.0, 'snug': 1.0, 'inches': 3.0, 'm': 2.0, 's': 4.0, 'nap': 1.0, 'a': 5.0, 'toddler': 1.0, 'head': 2.0, 'own': 1.0, 'it': 17.0, 'be': 3.0, 'but': 4.0, 'rolled': 1.0, 'wanted': 2.0, 'little': 1.0, 'her': 3.0, 'graco': 1.0, 'him': 1.0, 'he': 5.0, 'looked': 1.0, 'leg': 2.0, 'around': 1.0, 'haven': 1.0, 'his': 2.0, 'more': 4.0, 'husband': 1.0, 'before': 1.0, 'has': 1.0, 'gotten': 1.0, 'our': 1.0, 'years': 1.0, 'adjust': 1.0, 'limit': 1.0, 'clips': 1.0, 'no': 1.0, 'straps': 1.0, 'should': 1.0, 'add': 1.0, 'buckle': 2.0, 'old': 4.0, 'of': 4.0, 'even': 1.0, 'hard': 2.0, 'herself': 1.0, 'son': 1.0, '48': 1.0, '49': 1.0, 'with': 1.0, 'picture': 1.0, 'will': 1.0, 'come': 1.0, 'back': 2.0, 'update': 2.0, 'though': 1.0, 'after': 1.0, 'the': 15.0, '2006': 1.0, 'grand': 1.0, 'review': 1.0, 'ride': 1.0, 'really': 1.0, 'like': 1.0, 'liked': 1.0, 'petite': 1.0, 'new': 1.0, 'dodge': 1.0, 'time': 1.0, 'latch': 1.0, 'getting': 2.0, 'used': 1.0, 'move': 1.0, 'towel': 1.0, 'trouble': 1.0, 'behind': 1.0, 'who': 2.0, 'minivan': 1.0, 'driver': 1.0, 'matter': 1.0, 'blocks': 1.0, 'passenger': 1.0, 'll': 1.0, 'side': 1.0, 'window': 1.0, 'first': 1.0, 'then': 2.0, 'minute': 1.0, 'only': 1.0, 'there': 1.0, 'my': 10.0, 'room': 3.0, 'all': 1.0, 'liking': 1.0, 'having': 1.0}
Word element => {'happy': 1.0, 'be': 1.0, 'your': 1.0, 'you': 1.0, 'better': 1.0, 'looking': 1.0, 'safe': 1.0, 'toddler': 2.0, 'fine': 1.0, 'sure': 1.0, 'get': 1.0, 'researching': 1.0, 'is': 1.0, 'were': 1.0, 'but': 1.0, 'past': 1.0, 'graco': 1.0, 'the': 4.0, 'and': 5.0, 'seats': 1.0, 'car': 1.0, 'i': 1.0, '4': 1.0, 'one': 1.0, 'months': 1.0, 'bought': 2.0, 'adjusting': 2.0, 'a': 1.0, 'we': 2.0, 'those': 1.0, 'simple': 1.0, 'have': 1.0, 'able': 1.0, 'this': 3.0, 'it': 3.0, 'carseat': 1.0, 'part': 1.0, 'recaro': 1.0, 'in': 2.0, 'for': 4.0, 'install': 1.0, 'comfortable': 1.0, 'they': 1.0, 'puts': 1.0, 'will': 1.0, 'seems': 1.0, 'mins': 1.0, 'our': 1.0, 'seat': 2.0, 'to': 3.0, 'shame': 1.0, 'best': 1.0, 'very': 2.0, 'installing': 1.0, 'everything': 1.0, '10': 1.0, 'was': 2.0, 'belt': 1.0, 'head': 1.0, 'stop': 1.0, 'after': 1.0, 'rest': 1.0}
Word element => {'recommended': 1.0, 'highly': 1.0, 'that': 1.0, 'than': 1.0, 'other': 1.0, 'one': 1.0, 'easy': 1.0, 'get': 1.0, 'climb': 1.0, 'foot': 1.0, '5': 1.0, 'install': 1.0, 'big': 1.0, 'very': 1.0, 'little': 2.0, 'being': 1.0, 'i': 3.0, 'thing': 1.0, 'mirror': 1.0, 'view': 1.0, 'rear': 1.0, 'from': 1.0, 'baby': 2.0, 'infant': 1.0, 'take': 1.0, 'personally': 1.0, 'fabric': 1.0, 'have': 4.0, 'is': 2.0, 'with': 3.0, 'adjust': 1.0, 'he': 2.0, 'love': 2.0, 'overheat': 1.0, 'light': 1.0, 'just': 1.0, 'to': 3.0, 'our': 3.0, 'seat': 2.0, 'got': 1.0, 'suv': 2.0, 'in': 2.0, 'also': 1.0, 'this': 1.0, 'perfect': 1.0, 'the': 5.0, 'doesn': 1.0, 'weeks': 1.0, 'see': 1.0, 'are': 1.0, 't': 1.0, 'a': 5.0, 'ago': 1.0, 'we': 4.0, 'along': 1.0, 'out': 1.0, 'couple': 1.0, 'tall': 1.0, 'and': 5.0, 'like': 1.0, 'problem': 1.0, 'captain': 1.0, 'am': 1.0, 'easily': 1.0, 'would': 2.0, 'its': 1.0, 'only': 1.0, 'tiny': 1.0, 'it': 4.0, 'arch': 1.0, 'so': 2.0, 'some': 1.0, 'toys': 1.0, 'on': 2.0, 'purchase': 1.0, 'fits': 2.0, 'can': 1.0, 'still': 1.0}
Word element => {'i': 1.0, 'is': 3.0, 'that': 1.0, 'installation': 1.0, 'safe': 1.0, 'buckle': 1.0, 'easy': 2.0, 'comfy': 1.0, 'thinks': 1.0, 'daughter': 1.0, 'my': 1.0, 'other': 1.0, 'this': 1.0, 'drive': 1.0, 'window': 1.0, 'not': 1.0, 'sportage': 1.0, 'kia': 1.0, 'but': 1.0, 'will': 1.0, 'back': 2.0, 'probably': 1.0, 'feel': 1.0, 'great': 2.0, 's': 2.0, 't': 1.0, 'a': 5.0, 'front': 1.0, 'facing': 1.0, 'fully': 1.0, 'car': 3.0, 'if': 2.0, 'dodge': 1.0, 'sits': 1.0, 'even': 1.0, 'journey': 1.0, 'of': 3.0, 'view': 1.0, 'your': 3.0, 'the': 4.0, 'pathfinder': 1.0, 'she': 2.0, 'higher': 1.0, 'it': 6.0, 'rear': 1.0, 'fit': 2.0, 'enough': 1.0, 'to': 2.0, 'seat': 4.0, 'center': 1.0, 'in': 4.0, 'nissan': 1.0, 'very': 2.0, 'and': 4.0, 'tall': 1.0, 'right': 1.0, 'reclined': 1.0, 'so': 1.0, 'then': 2.0, 'when': 1.0, 'you': 1.0, 'has': 1.0, 'won': 1.0, 'have': 1.0, 'her': 1.0, 'shell': 1.0, 'good': 1.0, 'out': 2.0}
Word element => {'features': 1.0, 'safety': 1.0, 'has': 1.0, 'in': 1.0, 'as': 2.0, 'and': 1.0, 'sitting': 1.0, 'little': 1.0, 'toddler': 1.0, 'car': 2.0, 'our': 1.0, 'seat': 1.0, 'this': 1.0, 'he': 2.0, 'rides': 1.0, 'love': 1.0, 'higher': 1.0, 'well': 1.0, 'weeeeee': 1.0, 'a': 1.0, 'see': 1.0, '34': 2.0, 'up': 1.0, 'windows': 1.0, 'says': 1.0, 'being': 1.0, 'to': 1.0, 'through': 1.0, 'all': 1.0, 'likes': 1.0, 'able': 1.0, 'the': 3.0, 'even': 1.0}
Word element => {'seats': 1.0, 'best': 1.0, 'of': 1.0, 'one': 1.0, 'somehow': 1.0, 'rides': 1.0, 'love': 1.0, 'for': 1.0, 'while': 1.0, 'worth': 1.0, 'try': 1.0, 'pushed': 1.0, 'way': 1.0, 'you': 2.0, 'local': 1.0, 'front': 1.0, 'it': 7.0, 'big': 1.0, 's': 2.0, 'a': 1.0, 'might': 1.0, 'store': 1.0, 'still': 1.0, 'facing': 1.0, 'have': 2.0, 'if': 1.0, 'seat': 2.0, 'as': 2.0, 'all': 1.0, 'to': 4.0, 'be': 2.0, 'out': 1.0, 'this': 1.0, 'carries': 1.0, 'who': 1.0, 'sure': 1.0, 'cushioned': 1.0, 'in': 2.0, 'yes': 1.0, 'rear': 1.0, 'side': 1.0, 'fits': 2.0, 'my': 1.0, 'mazda': 1.0, 'your': 2.0, 'make': 1.0, '3': 1.0, 'manages': 1.0, 'long': 2.0, 'i': 2.0, 'the': 4.0, 'car': 3.0, 'passenger': 1.0, 'super': 1.0, 'can': 1.0, 'but': 2.0, 'buy': 1.0, 'looking': 1.0, 'extra': 1.0, 'comfy': 1.0}
Word element => {'were': 1.0, 'affordable': 1.0, 'much': 1.0, 'bonus': 1.0, 'knowledge': 1.0, 'more': 2.0, 'having': 1.0, 'design': 1.0, 'had': 1.0, 'reassemble': 1.0, 'none': 1.0, 'have': 5.0, 'quality': 1.0, 'them': 2.0, 'but': 1.0, 'can': 1.0, 'very': 4.0, 'from': 1.0, 'seats': 5.0, 'wouldn': 1.0, 'zero': 1.0, 'for': 2.0, 'numerous': 1.0, 'nut': 1.0, 'recaros': 1.0, 've': 2.0, 'each': 1.0, 'new': 1.0, 'without': 1.0, 'recaro': 6.0, '5': 2.0, 'decades': 1.0, 'my': 4.0, 'tight': 1.0, 'purchase': 1.0, 'company': 2.0, 'crash': 2.0, 'are': 2.0, 'britax': 1.0, 'a': 1.0, 'ago': 1.0, 't': 2.0, 'owned': 1.0, '3rd': 1.0, 'world': 1.0, 'm': 1.0, 'in': 2.0, 'seat': 2.0, 'any': 3.0, 'gracco': 1.0, 'to': 3.0, 'the': 5.0, 'of': 5.0, 'this': 1.0, 'kids': 2.0, '4': 1.0, 'well': 1.0, 'i': 7.0, 'about': 1.0, 'automotive': 2.0, 'family': 1.0, 'perfect': 1.0, 'professional': 1.0, 'own': 1.0, 'robust': 1.0, 'years': 2.0, 'designer': 1.0, 'and': 10.0, 'made': 1.0, 'heavy': 1.0, 'everything': 1.0, 'fabrics': 1.0, 'nice': 1.0, 'industrial': 1.0, 'easy': 1.0, 'car': 1.0, 'clean': 1.0, 'durable': 1.0, 'duty': 1.0, 'situation': 1.0, 'taken': 1.0, 'cleaning': 1.0, 'complaints': 1.0, 'able': 1.0, 'easily': 1.0, 'wash': 1.0, 'issue': 1.0, 'they': 3.0, 'is': 1.0, 'look': 1.0, 'like': 1.0, 'become': 1.0, 'trust': 1.0, 'fits': 1.0, 'other': 3.0, 'keep': 1.0, 'safe': 1.0, 'apart': 1.0, 'than': 3.0, 'real': 1.0, 'been': 1.0, 'racing': 1.0, 'experience': 2.0, 'still': 1.0, 'every': 1.0, 'imaginable': 1.0, 'fathom': 1.0}
Word element => {'gut': 1.0, 'call': 1.0, 'yet': 1.0, 'talk': 1.0, 'quite': 1.0, 'like': 1.0, 'seems': 1.0, 'daughter': 1.0, 'lesson': 1.0, 'about': 1.0, 'sorry': 1.0, 'safe': 1.0, 'more': 2.0, 'opinion': 1.0, 'quality': 1.0, 'would': 2.0, 'review': 1.0, 'has': 2.0, 'my': 4.0, 'half': 1.0, 'crash': 1.0, 'however': 1.0, 'guy': 1.0, 'or': 1.0, 'worth': 1.0, 'was': 2.0, 'finally': 1.0, 'foonf': 2.0, 'features': 1.0, 'box': 3.0, 'ready': 1.0, 't': 1.0, 'require': 1.0, 'physics': 2.0, 'price': 1.0, '34': 1.0, 'spell': 1.0, 'name': 1.0, 'feeling': 1.0, 'clec': 1.0, 'simply': 1.0, 'can': 1.0, 'so': 1.0, 'car': 1.0, 'uses': 1.0, 'that': 3.0, 'alternatives': 1.0, 'because': 3.0, 'aside': 1.0, 'wife': 1.0, 'from': 1.0, 'you': 2.0, 's': 2.0, 'a': 5.0, 'take': 1.0, 'she': 1.0, 'many': 1.0, 'also': 1.0, 'recognize': 1.0, 'what': 1.0, 'for': 1.0, 'than': 2.0, 'assemble': 1.0, 'out': 3.0, 'third': 1.0, 'been': 1.0, 'comparing': 1.0, 'it': 12.0, 'this': 2.0, 'i': 3.0, 'recaro': 3.0, 'm': 1.0, 'in': 2.0, 'suffer': 1.0, 'industry': 1.0, 'and': 4.0, 'of': 5.0, 'the': 13.0, 'be': 1.0, 'but': 2.0, 'say': 1.0, 'archaic': 1.0, 'frisbee': 1.0, 'not': 1.0, 'easier': 1.0, 'right': 2.0, 'll': 2.0, 'true': 1.0, 'think': 1.0, 'better': 1.0, 'should': 1.0, 'look': 1.0, 'is': 3.0, 'at': 1.0, 'all': 1.0, 'against': 1.0, 'to': 3.0, 'put': 1.0, 'much': 2.0, 'materials': 1.0, 'interia': 1.0, 'competition': 1.0, 'makes': 1.0, 'secondly': 1.0, 'have': 1.0, 'leave': 1.0, 'statement': 1.0, 'some': 1.0, 'go': 1.0, 'lighter': 1.0, 'biring': 1.0, 'just': 1.0, 'catch': 1.0, 'shot': 1.0, 'less': 2.0, 'weight': 1.0}
Word element => {'purchase': 1.0, 'happy': 1.0, 'very': 1.0, 'herself': 1.0, 'that': 1.0, 'find': 1.0, 'able': 1.0, 'older': 1.0, 'gets': 1.0, 'good': 1.0, 'which': 1.0, 'button': 2.0, 'accessing': 1.0, 'is': 2.0, 'seats': 1.0, 'of': 1.0, '1': 1.0, 'straps': 2.0, 'unmanageable': 1.0, 'strap': 1.0, 'britax': 1.0, 'would': 1.0, 'twisted': 1.0, 'had': 1.0, 'the': 8.0, 'just': 1.0, 'me': 1.0, 'not': 1.0, 'how': 1.0, 'drove': 1.0, 'i': 1.0, 'recaro': 1.0, 'with': 3.0, 'she': 1.0, 'it': 4.0, 'only': 1.0, 'twist': 1.0, 'infant': 1.0, 'car': 1.0, 'baby': 1.0, 'up': 1.0, 'don': 1.0, 'was': 1.0, 'crazy': 1.0, 'get': 1.0, 'easy': 1.0, 't': 1.0, 'a': 2.0, 's': 3.0, 'problem': 1.0, 'tighten': 1.0, 'probably': 1.0, 'bad': 1.0, 'about': 1.0, 'thing': 2.0, 'as': 1.0, 'to': 3.0, 'seat': 1.0, 'our': 1.0, 'all': 1.0, 'on': 1.0, 'this': 1.0, 'release': 1.0, 'eyes': 1.0, 'and': 5.0, 'tough': 2.0, 'but': 1.0, 'seems': 1.0, 'be': 1.0}
Word element => {'make': 1.0, 'design': 1.0, 'recommend': 1.0, 'facing': 1.0, 'child': 1.0, 'of': 1.0, 'offers': 1.0, 'for': 1.0, 'one': 1.0, 'that': 1.0, 'protection': 1.0, 'impact': 1.0, 'lack': 1.0, 'seats': 1.0, 'product': 1.0, 'on': 1.0, 'longer': 1.0, 'rear': 1.0, 'side': 1.0, 'many': 1.0, 'is': 1.0, 'touches': 1.0, 'option': 1.0, 'quality': 1.0, 'leaving': 1.0, 'combined': 1.0, 'end': 1.0, 'high': 1.0, 'highly': 1.0, 'price': 1.0, 'still': 1.0, 'build': 1.0, 'only': 1.0, 'this': 4.0, 'with': 2.0, 'it': 1.0, 'to': 1.0, 'beat': 1.0, 'flexibility': 1.0, 'the': 6.0, 'impress': 1.0, 'and': 2.0, 'me': 2.0, 'would': 1.0, 'sales': 1.0, 'tough': 1.0, 'so': 1.0}
Word element => {'safe': 1.0, 'super': 1.0, 'we': 1.0, 'year': 1.0, 'love': 1.0, 'does': 1.0, 'seat': 1.0, '1': 1.0, 'our': 1.0, 'and': 1.0, 'my': 1.0, 'recaro': 1.0, 'so': 1.0, 'old': 1.0}
Word element => {'what': 1.0, 'past': 1.0, 'walking': 1.0, 'positioned': 1.0, 'nicely': 1.0, 'logo': 1.0, 'those': 1.0, 'race': 1.0, 'will': 1.0, 'doors': 1.0, 'four': 1.0, 'probably': 1.0, 'name': 1.0, 'your': 1.0, 'there': 1.0, 'seems': 1.0, 'etc': 1.0, 'polish': 1.0, 'like': 1.0, 'really': 1.0, 'although': 2.0, 'overall': 1.0, 'no': 1.0, 'offers': 1.0, 'version': 1.0, 'but': 1.0, 'toddler': 1.0, 'great': 1.0, 's': 2.0, 'either': 1.0, 'into': 1.0, 'better': 1.0, 'think': 1.0, 'hook': 1.0, 'model': 1.0, 'thing': 1.0, 'adjustment': 2.0, 'wheel': 1.0, 'step': 1.0, 'adjust': 1.0, 'technically': 1.0, 'inch': 1.0, 'stops': 1.0, 'they': 1.0, 'gives': 1.0, 'out': 1.0, 'take': 1.0, 'infinite': 2.0, 'having': 1.0, 'method': 1.0, 'have': 1.0, 'most': 1.0, 'finicky': 1.0, 'be': 7.0, 'seem': 1.0, 'adjusting': 1.0, 'quality': 1.0, 'sport': 1.0, 'are': 4.0, 'britax': 7.0, 'colors': 1.0, 'frame': 1.0, 'to': 9.0, 'comparable': 1.0, 'minivan': 1.0, 'boulevards': 2.0, 'apart': 1.0, 'than': 1.0, 'can': 2.0, 'so': 4.0, 'it': 6.0, 'this': 6.0, 'pain': 1.0, 'make': 1.0, 'restraints': 1.0, 'car': 6.0, 'not': 2.0, 'itself': 1.0, 'fuller': 1.0, 'and': 7.0, 'or': 2.0, 'greatly': 1.0, 'me': 1.0, 'used': 2.0, 'different': 1.0, 'mostly': 3.0, 'might': 2.0, 'thick': 1.0, 'very': 1.0, 'being': 1.0, 'every': 1.0, 'if': 2.0, 'same': 1.0, 'fabrics': 1.0, 'a': 10.0, 'slight': 1.0, 'flailing': 1.0, 'good': 2.0, 'side': 3.0, 'sports': 1.0, 'is': 7.0, 'more': 2.0, 'love': 1.0, 'steel': 1.0, 'appears': 2.0, 'bulkier': 2.0, 'takes': 1.0, 'change': 1.0, 'up': 2.0, 'such': 1.0, 'for': 5.0, 'as': 1.0, 'heavy': 1.0, 'doing': 1.0, 'of': 5.0, 'the': 25.0, 'larger': 2.0, 'strapped': 1.0, 'plastic': 1.0, 'removed': 1.0, 'facing': 1.0, 'while': 1.0, 'also': 2.0, 'tell': 1.0, 'without': 1.0, 'recaro': 7.0, 'slightly': 2.0, 'putting': 1.0, 'cupholder': 2.0, 'i': 7.0, 'well': 1.0, 'installation': 3.0, 'easily': 1.0, 'that': 4.0, 'each': 1.0, 'prefer': 2.0, 'straps': 2.0, 'know': 1.0, 'bit': 1.0, 'easy': 1.0, 'sure': 1.0, 'get': 2.0, 'even': 2.0, 'safety': 1.0, 'you': 7.0, 'one': 2.0, 'rear': 1.0, 're': 1.0, 'do': 1.0, 'general': 1.0, 'put': 1.0, 'noticed': 1.0, 'near': 1.0, 'on': 2.0, 'further': 1.0, 'belt': 1.0, 'through': 1.0, 'rarely': 1.0, 'has': 4.0, 'location': 1.0, 'seat': 5.0, 'in': 3.0, 'm': 1.0, 'people': 1.0, 'both': 1.0, 'hey': 1.0, 'why': 1.0, 'seats': 2.0, 'just': 2.0, 've': 1.0, 'down': 2.0, 'attachment': 1.0, 'tightly': 1.0, 'install': 1.0, 'thankfully': 1.0, 'features': 1.0, 'newer': 1.0}
Word element => {'comfortable': 1.0, 'outstanding': 1.0, 'loves': 1.0, 'my': 1.0, 'install': 1.0, 'safe': 1.0, 'easy': 1.0, 'old': 1.0, '15': 1.0, 'to': 1.0, 'looks': 1.0, 'it': 1.0, 'month': 1.0, 'great': 1.0, 'quality': 1.0, 'highly': 1.0, 'cool': 1.0, 'would': 1.0, 'features': 1.0, 'recommend': 1.0}
Word element => {'didn': 1.0, 'that': 1.0, 'were': 1.0, 'things': 1.0, 'at': 1.0, 'problems': 1.0, 'wife': 1.0, 'know': 1.0, 'and': 3.0, 'five': 1.0, 'shoulder': 1.0, 'or': 1.0, 'i': 3.0, 'recaro': 1.0, 'cupholder': 1.0, 'buy': 1.0, 'also': 1.0, 'just': 1.0, 'few': 1.0, 'pro': 1.0, 'the': 3.0, 'great': 1.0, 'have': 1.0, 'are': 1.0, 'care': 1.0, 'my': 1.0, 'so': 1.0, 's': 2.0, 't': 3.0, 'a': 3.0, 'fixed': 1.0, 'now': 2.0, 'least': 1.0, 'pads': 1.0, 'as': 2.0, 'seat': 1.0, 'to': 1.0, 'affixed': 1.0, 'back': 1.0, 'they': 1.0, 'has': 1.0, 'don': 2.0, 'ride': 1.0, 'move': 1.0, 'around': 1.0, 'it': 3.0, 'one': 2.0, 'long': 1.0}
Word element => {'addition': 1.0, 'for': 1.0, 'one': 1.0, 'another': 1.0, 'are': 1.0, 'we': 1.0, 'latest': 1.0, 'install': 1.0, 'in': 1.0, 'definetly': 1.0, 'adjust': 1.0, 'out': 1.0, 'clean': 1.0, 'buying': 1.0, 'to': 4.0, 'relatively': 1.0, 'easy': 4.0, 'so': 1.0, 'is': 4.0, 'as': 1.0, 'very': 1.0, 'son': 1.0, 'seat': 1.0, 'of': 1.0, 'this': 1.0, 'well': 1.0, 'super': 1.0, 'the': 1.0, 'material': 1.0, 'and': 3.0, 'get': 1.0, 'our': 2.0}
Word element => {'time': 1.0, 'recommend': 1.0, 'suv': 1.0, 'there': 1.0, 'face': 1.0, 'forward': 1.0, 'solution': 1.0, 'seam': 1.0, 'recaro': 1.0, 'seats': 1.0, 'line': 1.0, 'pictures': 1.0, 'good': 1.0, 'leg': 1.0, 'each': 1.0, 'had': 1.0, 'kick': 1.0, 'which': 1.0, 'baby': 1.0, 'she': 5.0, 'sideways': 1.0, 'ability': 1.0, 'tell': 1.0, '1': 3.0, 'legged': 1.0, 't': 1.0, '5': 1.0, 'compared': 1.0, 'wife': 2.0, 'manual': 2.0, 'everything': 1.0, '6ft1': 1.0, 'the': 32.0, 'mirror': 1.0, 'large': 1.0, 'tricky': 1.0, 'towel': 2.0, 'instead': 1.0, 'hindered': 1.0, 'base': 1.0, 'move': 5.0, 'used': 1.0, 'sides': 1.0, 'on': 5.0, 'that': 6.0, 'next': 1.0, 'has': 2.0, 'straps': 3.0, 'when': 5.0, 'what': 1.0, 'thing': 1.0, 'but': 4.0, 'mode': 1.0, 'independent': 1.0, 'so': 6.0, 'its': 2.0, 'tall': 2.0, 'just': 1.0, 'and': 8.0, 'recommended': 1.0, 'her': 6.0, 'little': 6.0, 'very': 2.0, 'being': 1.0, 'doubt': 1.0, '8': 1.0, 'have': 6.0, 'cool': 1.0, 'car': 2.0, '2009': 1.0, 'at': 4.0, 'look': 2.0, 'can': 5.0, 'is': 13.0, 'not': 3.0, 'facing': 4.0, 'now': 2.0, 'legally': 1.0, 'an': 2.0, 'seems': 1.0, 'slacken': 1.0, 'seat': 12.0, 'in': 7.0, 'long': 2.0, 'buckled': 1.0, 'per': 2.0, 'to': 21.0, 'length': 1.0, 'piece': 1.0, 'mind': 1.0, 'with': 4.0, 'pockets': 1.0, 'civic': 1.0, 'unless': 1.0, 'am': 3.0, 'makes': 1.0, 'keep': 1.0, 'allowed': 1.0, 'of': 2.0, 'old': 2.0, 'suppose': 1.0, 'overall': 1.0, 'issue': 2.0, 'already': 1.0, 'review': 1.0, 'rear': 4.0, 'too': 1.0, 'i': 13.0, 'view': 1.0, 'putting': 1.0, 'feet': 3.0, 'belt': 1.0, 'fan': 1.0, 'does': 1.0, 'looking': 2.0, 'awesome': 2.0, 'tight': 1.0, 'would': 1.0, 'muscle': 1.0, 'looks': 1.0, 'nova': 1.0, 'protouring': 1.0, 'a': 10.0, '2': 3.0, 'going': 1.0, 'kid': 3.0, '1970': 1.0, 'middle': 1.0, 'we': 4.0, 'take': 2.0, 'from': 2.0, 'looped': 1.0, 'feels': 1.0, 'still': 2.0, 'wonder': 1.0, 'bolted': 1.0, 'this': 3.0, 'insecure': 1.0, 'till': 1.0, 'lift': 1.0, 'bend': 1.0, 'level': 1.0, 'design': 1.0, 'no': 4.0, 'inch': 1.0, 'you': 4.0, 'do': 3.0, 'strap': 1.0, 'put': 3.0, 'much': 1.0, 'some': 1.0, 'energy': 1.0, 'getting': 2.0, 'sit': 1.0, 'as': 10.0, 'less': 1.0, 'chair': 1.0, 'adults': 1.0, 'change': 1.0, 'crossover': 1.0, 'says': 1.0, 'up': 2.0, 'than': 1.0, 'all': 7.0, 'way': 1.0, 'belts': 1.0, 'their': 1.0, 'acceptable': 1.0, 'could': 1.0, 'will': 6.0, 'it': 12.0, 'be': 4.0, 'room': 1.0, 'issues': 1.0, 'my': 1.0, 'are': 2.0, 'if': 2.0, 'isnt': 2.0, 'great': 1.0, 'work': 1.0, 'side': 2.0, 'buckles': 1.0, 'isn': 1.0, 'out': 2.0, 'fit': 1.0, 'easy': 2.0, 'back': 3.0, 'adjust': 1.0, 'for': 4.0, 'tilt': 1.0, 'head': 1.0, 'adjuster': 2.0, 'think': 2.0, 'touch': 2.0, 'tilted': 1.0, 'goes': 1.0, 'button': 1.0, 'get': 1.0, 'legs': 1.0, 'or': 1.0, 'destroyed': 1.0, 'angle': 1.0, 'like': 5.0, 'whilst': 1.0, 'years': 1.0, 'our': 1.0, 'girl': 1.0, 'honda': 1.0, '80': 1.0, 'through': 1.0, 'into': 2.0, 'towards': 2.0, 'your': 1.0, 'after': 1.0, 'though': 1.0, 'by': 1.0, 'month': 1.0, 'kids': 3.0, 'see': 1.0, 'need': 1.0, 'anchor': 3.0, 'sitting': 2.0, 'soon': 1.0, 'might': 1.0, 'far': 1.0}
Word element => {'and': 1.0, 'best': 1.0, 'adjustable': 1.0, 'worst': 1.0, 'designed': 1.0, 'then': 1.0, 'seeking': 1.0, 'are': 1.0, 'they': 1.0, 'now': 1.0, 'leveling': 1.0, 'up': 1.0, 'tacky': 1.0, 'self': 1.0, 'to': 2.0, 'seat': 2.0, 'base': 3.0, 'installed': 1.0, 'exactly': 1.0, 'negative': 1.0, 'see': 1.0, 'it': 2.0, 'with': 2.0, 'a': 4.0, 's': 2.0, 'you': 1.0, 'an': 1.0, 'pool': 1.0, 'achieve': 1.0, 'unsafe': 1.0, 'right': 1.0, 'be': 3.0, 'tool': 1.0, 'been': 1.0, 'case': 1.0, 'that': 3.0, 'had': 1.0, 'what': 1.0, 'the': 6.0, 'in': 2.0, 'is': 1.0, 'level': 1.0, 'adding': 1.0, 'i': 2.0, 'picture': 1.0, 'seemingly': 1.0, 'should': 2.0, 'if': 2.0, 'car': 1.0, 'rear': 1.0, 'already': 1.0, 'add': 1.0, 'at': 3.0, 'would': 1.0, 'position': 1.0, 'however': 1.0, 'facing': 1.0, 'rolled': 1.0, 'must': 1.0, 'have': 2.0, 'towel': 2.0, 'or': 1.0, 'my': 1.0, 'vehicle': 1.0, 'levelness': 1.0}
Word element => {'practicality': 1.0, 'compared': 1.0, 'now': 1.0, 'but': 1.0, 'son': 1.0, 'front': 1.0, 's': 1.0, 'once': 1.0, 'issue': 1.0, 'higher': 1.0, 'it': 2.0, 'used': 1.0, 'barely': 1.0, 'when': 2.0, 'would': 1.0, 'row': 1.0, 'facing': 2.0, 'vehicles': 1.0, 'seem': 2.0, 'our': 2.0, 'that': 2.0, 'point': 1.0, 'is': 3.0, 'level': 1.0, 'lacking': 1.0, '1': 1.0, 'big': 3.0, 'nice': 1.0, 'due': 1.0, 'bubble': 1.0, 'great': 1.0, 'though': 1.0, 'constructed': 1.0, 'size': 3.0, 'complaints': 1.0, 'baby': 2.0, 'position': 2.0, 'difficult': 1.0, 'materials': 1.0, 'bigger': 1.0, 'if': 1.0, 'few': 1.0, 'this': 4.0, 'an': 1.0, 'fits': 2.0, 'seems': 3.0, 'may': 1.0, 'keyfit': 2.0, 'place': 1.0, 'of': 1.0, 'the': 10.0, 'very': 2.0, 'from': 1.0, '30': 1.0, 'easier': 1.0, 'vehicle': 1.0, 'won': 1.0, 'a': 6.0, 'were': 1.0, 'smaller': 1.0, 'suv': 1.0, '2': 1.0, 'quality': 1.0, 'sitting': 1.0, 'nicely': 1.0, 'to': 6.0, 'high': 1.0, 'chico': 1.0, 'quite': 1.0, 'get': 1.0, 'sure': 1.0, 'and': 3.0, 'rear': 1.0, 'too': 1.0, '3': 1.0, 'make': 1.0, 'definitely': 1.0, 'think': 1.0, 'be': 2.0, 'car': 1.0, 'had': 1.0, 'leveling': 2.0, 'expensive': 1.0, 'doesn': 1.0, 'much': 1.0, 'only': 1.0, 'ask': 1.0, 'positions': 1.0, 'about': 1.0, 't': 2.0, 'fairly': 1.0, 'back': 1.0, 'limited': 1.0, 'enough': 1.0, 'coming': 1.0, 'well': 1.0, 'i': 2.0, 'into': 1.0, 'three': 1.0, 'which': 1.0, 'like': 1.0, 'some': 1.0, 'for': 4.0, 'such': 1.0, 'not': 1.0, 'everything': 2.0, 'else': 1.0, 'seat': 7.0, 'in': 6.0, 'm': 1.0}
Word element => {'cars': 1.0, 'similar': 1.0, 'or': 1.0, 'great': 1.0, 'due': 1.0, 'ride': 2.0, 'performance': 2.0, 'vehicles': 2.0, 'adaptable': 1.0, 'five': 1.0, 'able': 1.0, 'which': 2.0, 'nextfit': 1.0, 'chicco': 1.0, 'keeping': 1.0, 'buying': 1.0, 'between': 1.0, 'its': 1.0, 'largely': 1.0, 'might': 2.0, 'issue': 1.0, 'room': 1.0, 'living': 1.0, 'comfortable': 1.0, 'they': 1.0, 'latch': 1.0, 'recommend': 1.0, 'compatibility': 1.0, 'tighten': 1.0, 'tried': 1.0, 'a': 5.0, 't': 3.0, 'recaro': 1.0, 'ford': 2.0, 'be': 2.0, 'attachments': 1.0, 'facing': 1.0, 'range': 1.0, 'ended': 1.0, 'fiesta': 2.0, 'still': 2.0, 'son': 1.0, 'car': 2.0, 'sufficiently': 1.0, 'minutes': 1.0, 'trying': 1.0, 's': 1.0, 'giving': 1.0, 'just': 2.0, 'didn': 1.0, 'many': 2.0, 'my': 2.0, 'underneath': 1.0, 'was': 2.0, 'to': 9.0, 'in': 4.0, 'seat': 4.0, 'our': 2.0, 'husband': 1.0, 'positive': 1.0, 'wider': 1.0, 'securely': 1.0, 'after': 1.0, 'rolled': 1.0, 'but': 2.0, 'reading': 1.0, 'about': 1.0, 'of': 2.0, 'the': 14.0, 'decided': 1.0, 'this': 1.0, 'recline': 1.0, 'him': 1.0, 'it': 9.0, 'seatbelt': 1.0, 'i': 8.0, 'two': 1.0, 'us': 1.0, 'for': 3.0, 'stars': 1.0, 'get': 2.0, 'towel': 1.0, 'install': 2.0, 'couldn': 1.0, 'according': 1.0, 'and': 9.0, 'than': 1.0, 'tipped': 1.0, 'spent': 1.0, 'stuck': 1.0, 'when': 2.0, 'am': 1.0, 'installing': 1.0, 'with': 1.0, 'manual': 1.0, 'problem': 1.0, 'slid': 1.0, 'around': 2.0, 'adjustable': 1.0, 'wedged': 1.0, 'up': 2.0, 'work': 1.0, 'over': 1.0, 'rear': 1.0, 'one': 2.0, 'try': 1.0, 'level': 1.0, 'harness': 1.0, 'bought': 1.0, 'instructions': 1.0, 'reviews': 1.0, 'we': 5.0, 'then': 1.0, 'looked': 1.0, 'wouldn': 1.0, 'secure': 1.0, 'easy': 1.0, 'however': 1.0, 'hours': 1.0, 'drove': 1.0, 'adjust': 1.0, 'corner': 1.0, 'is': 1.0, 'at': 1.0, 'into': 1.0, 'three': 1.0, 'point': 1.0, 'would': 1.0, 'seemed': 2.0, 'return': 1.0, 'that': 2.0, 'because': 1.0, 'headrest': 1.0, 'strapped': 1.0, 'are': 1.0, 'very': 1.0}
Word element => {'baby': 1.0, 'will': 1.0, 'user': 1.0, 'feel': 1.0, 'i': 1.0, 'very': 2.0, 'and': 2.0, 'that': 1.0, 'seat': 1.0, 'my': 1.0, 'great': 2.0, 'grows': 1.0, 'he': 1.0, 'it': 1.0, 'is': 1.0, 'safe': 1.0, 'while': 1.0, 'forwar': 1.0, 'friendly': 1.0, 'be': 1.0, 'to': 1.0, 'have': 1.0, 'facing': 1.0, 'becomes': 1.0}
Word element => {'messing': 1.0, 'we': 1.0, 'a': 6.0, 't': 3.0, 'weight': 1.0, 'time': 1.0, 'so': 1.0, 'comfortably': 1.0, 'easier': 1.0, 'expected': 1.0, 'sad': 1.0, 'stars': 1.0, 'have': 3.0, 'since': 1.0, 'be': 5.0, 'an': 1.0, 'weeks': 1.0, 'now': 1.0, 'will': 3.0, 'also': 1.0, 'seems': 1.0, 'for': 2.0, 'such': 2.0, 'safety': 2.0, 'didn': 2.0, 'car': 2.0, 'vertical': 1.0, 'happy': 1.0, 'visibility': 1.0, 'while': 1.0, 'range': 1.0, 'sooner': 1.0, 'very': 1.0, 'little': 1.0, 'and': 5.0, 'i': 9.0, 'he': 1.0, 'with': 2.0, 'this': 4.0, 'him': 1.0, 'it': 6.0, 'my': 2.0, 'looks': 1.0, 'smaller': 1.0, 'use': 1.0, 'any': 1.0, 'feel': 1.0, 'big': 1.0, 'hieght': 1.0, 'about': 2.0, 'seat': 4.0, 'in': 1.0, 'had': 1.0, 'its': 2.0, 'only': 1.0, 'do': 1.0, '3': 1.0, 'make': 1.0, 'on': 2.0, 'think': 1.0, 'pleased': 1.0, 'that': 3.0, 'able': 1.0, 'you': 1.0, 'buckling': 1.0, 'switch': 1.0, 'sits': 1.0, 'is': 3.0, 'to': 2.0, 'pretty': 1.0, 'unbuckling': 1.0, 'but': 1.0, 'if': 1.0, 'just': 2.0, 'aware': 1.0, 'the': 5.0, 'of': 1.0, 'likely': 1.0, 'am': 4.0, 'becuase': 1.0, 'good': 2.0, 'which': 1.0, 'like': 1.0, 'issue': 1.0, 'reason': 1.0, 'give': 1.0, 'not': 1.0, '5': 1.0, 'plastic': 1.0, 'backing': 1.0, 'has': 2.0, 'always': 2.0, 'way': 1.0, 'son': 1.0, 'height': 1.0, 'askew': 1.0, 'implications': 1.0, 'don': 1.0}
Word element => {'scream': 1.0, 't': 1.0, 'doesn': 1.0, 'out': 1.0, 'she': 1.0, 'the': 12.0, 'made': 2.0, 'toxic': 1.0, 'long': 1.0, 'on': 1.0, 'grows': 1.0, 'your': 1.0, 'material': 1.0, 'was': 1.0, 'anymore': 1.0, 'formaldehyde': 1.0, 'can': 2.0, 'shoulder': 1.0, 'but': 1.0, 'primo': 1.0, 'wanted': 1.0, 'girl': 1.0, 'her': 1.0, 'breathable': 1.0, 'because': 1.0, 'find': 1.0, 'china': 3.0, 'fabric': 2.0, 'for': 1.0, 'expensive': 1.0, 'parts': 2.0, 'something': 1.0, 'diono': 3.0, 'sweat': 1.0, 'recaro': 3.0, 'carseat': 1.0, 'vs': 1.0, 'in': 7.0, 'seat': 1.0, 'to': 3.0, 'not': 2.0, 'other': 1.0, 'manufactured': 1.0, 'chinabritax': 1.0, 'radian': 1.0, 'best': 1.0, 'me': 1.0, 'my': 2.0, 'bubs': 1.0, 'models': 1.0, 'with': 2.0, 'naps': 1.0, 'drawback': 1.0, 'comfy': 1.0, 'research': 1.0, 'did': 1.0, 'trying': 1.0, 'by': 2.0, 'also': 1.0, 'us': 1.0, 'extensive': 1.0, 'i': 2.0, 'yay': 1.0, 'little': 1.0, 'and': 3.0, 'found': 1.0, 'sold': 1.0, 'safe': 1.0, 'from': 2.0, 'maxi': 1.0, 'cosi': 1.0, 'ew': 1.0, 'down': 1.0, 'assembled': 2.0, 'usa': 1.0, 'see': 1.0, 'chinai': 1.0, 'ended': 1.0, 'rethread': 1.0, 'proper': 1.0, 'washable': 1.0, 'child': 1.0, 'it': 2.0, 'rxt': 1.0, 'chaperone': 1.0, 'performance': 1.0, 'ride': 1.0, 'what': 1.0, 'chicco': 1.0, 'no': 1.0, 'viaggio': 1.0, 'harness': 1.0, 'level': 1.0, 'is': 3.0, 'more': 1.0, 'indicator': 1.0, 'ensure': 1.0, 'installation': 1.0, 'strap': 1.0, 'loves': 1.0, 'car': 1.0, 'window': 1.0, 'cool': 1.0, 'takes': 1.0, 'up': 1.0, 'mesh': 1.0, 'parkway': 1.0, 'a': 1.0, 'narrowing': 1.0, 'machine': 1.0, 'daughter': 1.0}
Word element => {'get': 1.0, 'considering': 1.0, 'am': 1.0, 'stars': 1.0, 'only': 1.0, 'annoyance': 1.0, 'pulling': 1.0, 'difficulty': 1.0, 'compared': 1.0, 'thing': 1.0, 'another': 1.0, 'lemon': 1.0, 'bought': 1.0, 'workaround': 1.0, 'as': 1.0, 'carseat': 1.0, 'decided': 1.0, 'hard': 2.0, 'can': 1.0, 'so': 3.0, 'its': 1.0, 'straps': 12.0, 'design': 2.0, 'never': 1.0, 'once': 1.0, 'installed': 1.0, 'does': 1.0, 'problem': 1.0, 'tighten': 2.0, 'good': 1.0, 'when': 2.0, 'vw': 1.0, 'things': 1.0, 'you': 1.0, 'head': 1.0, 'comfortably': 1.0, 'angle': 1.0, 'fit': 1.0, 'such': 1.0, 'for': 2.0, 'where': 1.0, 'secure': 1.0, 'm3': 1.0, 'use': 1.0, 'ride': 2.0, 'same': 1.0, 'month': 1.0, 'thought': 1.0, 'it': 5.0, 'performance': 2.0, 'returning': 1.0, 'suspect': 1.0, 'easy': 1.0, 'them': 1.0, 'facing': 2.0, 'returned': 1.0, 'son': 2.0, 'cushion': 1.0, 'bmw': 1.0, 'again': 2.0, 'car': 2.0, 'and': 4.0, 'this': 2.0, 'proride': 5.0, 'tight': 1.0, 'great': 1.0, 'install': 1.0, 'of': 5.0, 'the': 30.0, 'hands': 1.0, 'currently': 1.0, 'both': 2.0, 'an': 1.0, 'all': 1.0, 'our': 2.0, 'to': 11.0, 'have': 2.0, 'shoulder': 1.0, 'but': 1.0, 'hide': 1.0, 'level': 1.0, 'rear': 2.0, 'one': 2.0, 'seat': 2.0, 'in': 5.0, 'recaro': 2.0, 'i': 10.0, 'two': 2.0, 'fact': 1.0, 'old': 1.0, 'point': 1.0, 'they': 2.0, 'sleeping': 1.0, 'now': 3.0, 'permanently': 1.0, 'new': 1.0, 'sits': 1.0, 'is': 4.0, 'at': 1.0, 'not': 2.0, 'my': 2.0, 'me': 1.0, 'yet': 1.0, 'behind': 3.0, 'affixed': 1.0, 'lays': 1.0, 'change': 1.0, 'takes': 1.0, 'pull': 4.0, 'from': 1.0, 'are': 2.0, 'first': 1.0, 'gti': 1.0, 'then': 1.0, 'had': 1.0, 'do': 1.0, 'with': 3.0, 'a': 4.0, 'expose': 2.0, 'give': 1.0, 'there': 1.0, 'plastic': 1.0, 'cover': 1.0, 'because': 2.0, '20': 1.0, 'that': 3.0}
Word element => {'of': 1.0, 'either': 1.0, 'on': 1.0, 'sitting': 1.0, 'room': 1.0, 'gives': 1.0, 'more': 1.0, 'is': 2.0, 'bigger': 1.0, 'forward': 1.0, 'tiguan': 1.0, 'much': 1.0, 'side': 1.0, 'nissan': 1.0, 'i': 1.0, 'not': 1.0, 'lower': 1.0, 'than': 1.0, 'installed': 1.0, 'seats': 1.0, 'base': 1.0, 'this': 3.0, 'it': 5.0, 'versa': 1.0, 'standards': 1.0, 'car': 4.0, 'both': 1.0, 'facing': 1.0, 'middle': 1.0, 'in': 2.0, 'also': 1.0, 'the': 4.0, 'crash': 1.0, 'my': 1.0, 'and': 2.0, 'into': 1.0, 'that': 3.0, 'easier': 1.0, 'volkswagen': 1.0, 'safety': 1.0, 'other': 2.0, 'good': 1.0, 'about': 1.0, 'thing': 1.0, 'have': 1.0, 'a': 1.0, 's': 1.0, 'very': 1.0, 'people': 1.0, 'safe': 1.0, 'compared': 1.0, 'seat': 6.0, 'any': 1.0, 'to': 3.0, 'elevates': 1.0, 'so': 1.0, 'makes': 1.0, 'fit': 1.0}
Word element => {'really': 1.0, 'loli': 1.0, 'happen': 1.0, 'does': 1.0, 'amazed': 1.0, 'baby': 2.0, 'marathon': 1.0, 'not': 1.0, 'stay': 1.0, 'see': 1.0, 'recommend': 1.0, 'was': 2.0, 'son': 2.0, 'from': 1.0, 'this': 4.0, 'older': 1.0, 'wouldn': 1.0, 'love': 1.0, 'for': 1.0, 'our': 2.0, 'outside': 1.0, 'as': 2.0, 'seat': 3.0, 'should': 1.0, 'car': 3.0, 'britax': 2.0, 'he': 3.0, '6': 1.0, 'when': 1.0, 'i': 3.0, 'have': 1.0, 'bought': 2.0, 'my': 2.0, 'low': 1.0, 'what': 1.0, 'soon': 1.0, 'and': 2.0, 'camry': 1.0, 'can': 1.0, 's': 1.0, 'we': 1.0, 'a': 2.0, 't': 2.0, 'asleep': 1.0, 'the': 3.0, 'so': 2.0, 'fell': 1.0, 'it': 1.0, 'month': 1.0, 'recaro': 1.0, 'cry': 3.0, 'in': 2.0, 'ever': 1.0, 'would': 2.0, 'window': 1.0, 'him': 1.0, 'put': 1.0}
Word element => {'when': 1.0, 'review': 1.0, 'update': 1.0, 'long': 1.0, 'facing': 1.0, 'able': 1.0, 'control': 1.0, 'head': 1.0, 'without': 1.0, 'baby': 1.0, 'like': 1.0, 'angle': 1.0, 'towels': 1.0, 'couple': 1.0, 'even': 1.0, 'very': 1.0, 'right': 1.0, 'know': 1.0, 'easy': 1.0, 'rated': 1.0, 'complicated': 1.0, 'he': 3.0, 'checker': 1.0, 'carseat': 1.0, 'got': 1.0, 'more': 1.0, 'husband': 2.0, 'little': 1.0, 'installed': 1.0, 'installation': 1.0, 'reviewers': 1.0, 's': 2.0, 'each': 1.0, 'they': 1.0, 'used': 1.0, 'contorted': 1.0, 'are': 2.0, 'some': 1.0, 'shoulders': 1.0, 're': 1.0, 'where': 1.0, 'average': 1.0, '3': 1.0, 'same': 1.0, 'dmv': 1.0, 'as': 5.0, 'd': 2.0, 'carrier': 1.0, 'inside': 1.0, 'were': 1.0, 'larger': 1.0, 'reclined': 1.0, 'getting': 1.0, 'inch': 1.0, 'for': 1.0, 'time': 1.0, 'worried': 1.0, 'honda': 1.0, 'adjust': 1.0, 'noted': 1.0, 'sized': 1.0, 'late': 1.0, 'most': 1.0, 'back': 4.0, 'into': 1.0, 'that': 5.0, 'mo': 1.0, 'car': 2.0, 'nervous': 1.0, 'his': 1.0, 'view': 1.0, 'rate': 1.0, 'infant': 3.0, '6': 1.0, 'sacrifice': 1.0, 'which': 2.0, 'space': 3.0, 'no': 1.0, '90s': 1.0, 'our': 2.0, 'hoping': 1.0, 'pretty': 2.0, 'to': 10.0, 'according': 1.0, 'any': 1.0, 'other': 1.0, 'fits': 1.0, 'all': 2.0, '35': 1.0, 'old': 1.0, 'putting': 1.0, 'i': 9.0, 'graco': 1.0, 'install': 1.0, 'squeezed': 1.0, 'order': 1.0, 'hung': 1.0, 'last': 1.0, 'blind': 1.0, 'we': 6.0, 'fit': 1.0, 't': 2.0, 'go': 1.0, 'will': 2.0, 'could': 1.0, 'convert': 1.0, 'of': 4.0, 'longer': 1.0, 'the': 17.0, 'snugride': 1.0, 'upgraded': 1.0, 'was': 5.0, 'definitely': 1.0, 'backseat': 1.0, 'it': 7.0, 'civic': 1.0, 'this': 2.0, 'complained': 1.0, 'front': 2.0, 'middle': 1.0, 'had': 2.0, 'convertible': 2.0, 'in': 7.0, 'seat': 13.0, 'terribly': 1.0, 'at': 1.0, 'is': 3.0, 'look': 1.0, 'over': 3.0, 'takes': 1.0, 'up': 1.0, 'less': 1.0, 'arms': 1.0, 'and': 6.0, 'possible': 1.0, 'though': 1.0, 'much': 1.0, 'so': 3.0, 'can': 3.0, 'don': 1.0, 'shoulder': 2.0, 'personal': 1.0, 'but': 4.0, 'their': 2.0, 'sitting': 1.0, 'see': 2.0, 'about': 2.0, 'behind': 2.0, 'my': 5.0, 'me': 2.0, 'not': 1.0, 'rear': 2.0, 'mirror': 1.0, 'correctly': 1.0, '34': 2.0, 'people': 2.0, 'both': 2.0, 'spot': 1.0, 'comfortable': 1.0, 'stay': 1.0, 'still': 1.0, 'if': 2.0, 'stupid': 1.0, 'would': 1.0, 'have': 1.0, 'confident': 1.0, 'a': 7.0, 'small': 3.0, 'with': 1.0, 'seats': 1.0, 'upright': 2.0, 'now': 1.0, 'than': 2.0, 'way': 1.0, 'really': 1.0, 'taller': 1.0, 'be': 3.0, 'done': 1.0}
Word element => {'bubs': 1.0, 'my': 1.0, 'pillows': 1.0, 'cleverhe': 1.0, 'means': 1.0, 'very': 1.0, 'crank': 1.0, 'are': 1.0, 'adjustments': 1.0, 'done': 1.0, 'and': 3.0, 'its': 1.0, 'to': 1.0, 'name': 1.0, 'via': 1.0, 'so': 2.0, 'for': 2.0, 'just': 1.0, 'seat': 1.0, 'padding': 1.0, 'is': 2.0, 'many': 1.0, 'cleaningsoft': 1.0, 'car': 1.0, 'this': 1.0, 'adore': 1.0, 'a': 1.0, 'few': 1.0, 'height': 1.0, 'removable': 1.0, 'i': 1.0, 'cupholder': 1.0, 'safe': 2.0, 'padded': 1.0, 'reasons': 1.0, 'throughoutthe': 1.0, 'stylish': 1.0, 's': 1.0, 'way': 1.0, 'the': 3.0}
Word element => {'space': 1.0, 'ample': 1.0, 'you': 1.0, 'door': 1.0, 'is': 1.0, 'will': 2.0, 'the': 1.0, 'rubicon': 1.0, 'but': 1.0, '2': 1.0, 'honda': 2.0, 'not': 1.0, 'jeep': 1.0, 'it': 1.0, 'very': 1.0, 'best': 1.0, 'expected': 1.0, 'primarily': 1.0, 'only': 1.0, 'much': 1.0, 'nice': 1.0, 'spend': 1.0, 'great': 1.0, 'investment': 1.0, 'middle': 1.0, 'a': 1.0, 'recaro': 1.0, 'in': 4.0, '2007': 1.0, 'i': 1.0, 'accord': 1.0, 'fit': 2.0, 'for': 1.0, '2011': 1.0, 'my': 2.0, 'vehicle': 1.0, 'fits': 1.0, 'that': 1.0, 'was': 1.0, 'seat': 4.0, 'as': 1.0, 'to': 1.0, 'hesitant': 1.0, 'civic': 1.0, 'so': 1.0, 'on': 1.0, 'have': 1.0, 'none': 1.0, 'other': 1.0, 'compare': 1.0, 'if': 1.0}
Word element => {'in': 1.0, 'comfortable': 1.0, 'adjust': 1.0, 'easy': 1.0, 'super': 1.0, 'we': 1.0, 'purchase': 1.0, 'be': 1.0, 'recaro': 1.0, 't': 1.0, 's': 2.0, 'our': 1.0, 'second': 1.0, 'is': 2.0, 'very': 1.0, 'son': 1.0, 'to': 1.0, 'now': 1.0, 'happier': 1.0, 'my': 1.0, 'who': 1.0, 'loves': 1.0, 'almost': 1.0, 'couldn': 1.0, 'and': 2.0, '1': 1.0, 'seat': 1.0, 'his': 1.0, 'he': 1.0, 'this': 1.0, 'it': 2.0}
Word element => {'definitely': 1.0, 'for': 1.0, 'height': 1.0, '97th': 1.0, 'even': 1.0, 'really': 1.0, 'daughter': 1.0, 'the': 4.0, 'more': 1.0, 'are': 1.0, 'cars': 1.0, 'loves': 1.0, 'this': 1.0, 'with': 2.0, 'happy': 1.0, 'recommend': 1.0, 'was': 1.0, 'deciding': 1.0, 'than': 1.0, 'chevy': 1.0, 'but': 1.0, 'on': 1.0, 'months': 1.0, 'percentile': 1.0, 'well': 2.0, 'decision': 1.0, 'santa': 1.0, 'carseat': 1.0, 'both': 1.0, 'her': 1.0, 'after': 1.0, 'few': 1.0, 'our': 2.0, 'seat': 4.0, 'to': 1.0, 'as': 1.0, 'own': 1.0, 'fe': 1.0, '2012': 1.0, 'great': 1.0, 'equinox': 1.0, 'tough': 1.0, 'and': 4.0, 'hyundai': 1.0, 'we': 2.0, 'a': 4.0, 's': 1.0, '2011': 1.0, 'fits': 2.0, 'out': 1.0, 'in': 4.0, 'get': 1.0, 'easy': 1.0, 'it': 1.0, 'she': 1.0}
Word element => {'enough': 1.0, 'good': 1.0, 'rigorous': 1.0, 'met': 1.0, 'cant': 1.0, 'bought': 1.0, 'rear': 1.0, 'exists': 1.0, 'issue': 1.0, 'if': 1.0, 'same': 1.0, 'difficulties': 1.0, 'these': 1.0, 'anyone': 1.0, 'happy': 1.0, 'still': 1.0, 'back': 1.0, 'shoulder': 1.0, 'with': 3.0, '20': 1.0, 'those': 1.0, 'not': 1.0, 'me': 1.0, 'took': 1.0, 'it': 4.0, 'do': 1.0, 'much': 1.0, 'takes': 1.0, 'getting': 1.0, 'get': 3.0, 'and': 3.0, 'tough': 1.0, 'you': 2.0, 'when': 1.0, 'durango': 1.0, 'have': 1.0, 'a': 2.0, 'i': 4.0, 'european': 1.0, '34': 2.0, 'im': 2.0, 'impossible': 1.0, 'of': 2.0, 'imagine': 1.0, 'the': 12.0, 'however': 1.0, 'manage': 1.0, 'very': 5.0, 'any': 1.0, 'to': 6.0, 'seat': 5.0, 'features': 1.0, 'more': 1.0, 'is': 2.0, 'longer': 1.0, '100lb': 1.0, 'guy': 1.0, 'on': 1.0, 'car': 2.0, 'restraints': 1.0, 'install': 1.0, 'big': 1.0, 'nice': 1.0, 'time': 1.0, 'installation': 1.0, 'next': 1.0, 'dont': 1.0, 'this': 2.0, 'because': 2.0, 'installed': 1.0, 'cannot': 2.0, 'recaro': 1.0, 'in': 2.0, 'how': 1.0, 'tight': 4.0, 'my': 3.0, 'compared': 1.0, 'hard': 2.0, 'properly': 1.0, 'wife': 1.0, 'standards': 2.0, 'would': 1.0, 'straps': 1.0, 'latch': 1.0, 'strap': 2.0, 'are': 2.0, 'britax': 2.0, 'installs': 1.0, 'recommend': 1.0, 'minutes': 2.0}
Word element => {'little': 1.0, 'provides': 1.0, 'protection': 1.0, 'are': 2.0, 'we': 1.0, 'benz': 1.0, '16': 1.0, 'happy': 1.0, 'my': 1.0, 'in': 2.0, 'old': 1.0, 'month': 1.0, 'seats': 2.0, 'and': 3.0, 'very': 2.0, 'the': 1.0, 'great': 1.0, 'these': 2.0, 'our': 2.0, 'with': 2.0, 'it': 4.0, 'he': 1.0, 'confident': 1.0, 'of': 1.0, 'two': 1.0, 'loves': 1.0, 'is': 1.0, 'one': 1.0, 'for': 1.0, 'comfortable': 1.0, 'e350': 1.0, 'fits': 1.0, 'got': 1.0, 'suv': 1.0}
Word element => {'and': 1.0, 'daughter': 1.0, 'safety': 1.0, 'my': 1.0, 'the': 1.0, 'all': 1.0, 'so': 1.0, 'too': 1.0, 'glad': 1.0, 'features': 1.0, 'seat': 1.0, 'it': 1.0, 'love': 1.0, 'decided': 1.0, 'i': 2.0, 'to': 1.0, 'go': 1.0, 'with': 1.0, 'loves': 1.0, 'this': 1.0, 'car': 1.0}
Word element => {'wrapped': 1.0, 'carrier': 1.0, 'backpack': 1.0, 'childress': 1.0, 'split': 1.0, 'big': 1.0, 'plane': 1.0, 'on': 2.0, 'took': 1.0, 'airport': 1.0, 'seem': 1.0, 'doesn': 1.0, 'backwards': 1.0, 'due': 1.0, 'legged': 1.0, 'does': 1.0, 'being': 1.0, 'very': 1.0, 'now': 1.0, 'are': 1.0, 'reservations': 1.0, 'just': 1.0, 'estimation': 1.0, 'baby': 1.0, 'ok': 1.0, 'was': 2.0, 'installation': 2.0, 'black': 1.0, 'year': 1.0, 'child': 1.0, 'cross': 1.0, 'straps': 1.0, 'sit': 2.0, 'saran': 1.0, 'don': 2.0, 'shoulder': 1.0, 'but': 3.0, 'and': 5.0, 'entertains': 1.0, 'mentioned': 1.0, 'mo': 1.0, 'out': 1.0, 'chair': 5.0, 'to': 3.0, 'which': 1.0, 'asleep': 1.0, 'routinely': 1.0, 'him': 2.0, 'it': 5.0, 'month': 1.0, 'love': 3.0, 'he': 8.0, 'infant': 2.0, '6': 1.0, 'this': 7.0, 'soft': 1.0, 'time': 1.0, 'viaggio': 1.0, 'backward': 1.0, 'facing': 1.0, 't': 3.0, 'we': 3.0, 'a': 5.0, 's': 2.0, 'another': 1.0, 'reviewer': 1.0, 'as': 1.0, 'falls': 1.0, 'bend': 1.0, 'strap': 1.0, 'easy': 2.0, 'wrap': 1.0, 'three': 1.0, 'is': 5.0, 'at': 2.0, 'seems': 1.0, 'see': 1.0, 'acts': 1.0, 'zipper': 1.0, 'peg': 1.0, 'spend': 1.0, 'comfortable': 2.0, 'can': 1.0, 'so': 1.0, 'constantly': 1.0, 'cozy': 1.0, 'his': 2.0, 'no': 2.0, 'windows': 1.0, 'the': 8.0, 'of': 1.0, 'cried': 1.0, 'twisted': 1.0, 'nine': 1.0, 'old': 2.0, 'been': 1.0, 'that': 1.0, 'for': 1.0, 'legs': 2.0, 'get': 1.0, 'months': 1.0, 'car': 1.0, 'cool': 1.0, 'jl': 1.0, 'feels': 1.0, 'outgrew': 1.0, 'by': 1.0, 'stayed': 1.0, 'son': 2.0, 'height': 1.0, 'other': 1.0, 'mind': 1.0, 'people': 1.0, 'review': 1.0, 'their': 1.0, 'sturdy': 2.0, 'they': 1.0, 'put': 1.0, 'do': 1.0, 'i': 2.0, 'indian': 1.0, 'style': 2.0, 'looks': 1.0, 'my': 4.0, 'me': 1.0, 'bent': 1.0, 'bother': 1.0, 'too': 2.0, 'lot': 2.0, 'happy': 2.0, 'seat': 7.0, 'in': 8.0, 'm': 1.0, 'despite': 1.0, 'also': 1.0, 'us': 1.0, 'buying': 1.0}
Word element => {'does': 1.0, 'reviews': 1.0, 'other': 1.0, 'safe': 1.0, 'child': 1.0, 'keep': 1.0, 'would': 1.0, 'accident': 1.0, 'an': 1.0, 'through': 1.0, 'if': 1.0, 'window': 1.0, 'out': 1.0, 'see': 1.0, 'able': 1.0, 'still': 1.0, 'side': 1.0, 'bottom': 1.0, 'and': 3.0, 'your': 1.0, 'impressed': 1.0, 'substantial': 1.0, 'well': 2.0, 'has': 1.0, 'this': 1.0, 'first': 1.0, 'it': 6.0, 'he': 2.0, 'inspected': 1.0, 'was': 2.0, 'i': 3.0, 'old': 2.0, 'adjustments': 1.0, 'had': 1.0, 'thought': 1.0, 'to': 3.0, 'seat': 3.0, 'top': 1.0, 'felling': 1.0, 'from': 2.0, 'year': 2.0, 'box': 1.0, 's': 1.0, 'go': 1.0, 'could': 1.0, 'bolsters': 1.0, 'weight': 1.0, 'made': 2.0, 'job': 1.0, 'the': 5.0, 'can': 1.0, '2': 2.0, 'is': 1.0, 'more': 1.0, 'wow': 1.0, 'for': 1.0, 'pulled': 1.0, 'big': 1.0, 'comfortable': 1.0, 'my': 2.0, 'by': 1.0, 'build': 1.0, 'quality': 1.0, 'instantly': 1.0, 'once': 1.0, 'even': 2.0, 'got': 1.0, 'in': 1.0, 'you': 2.0, 'tell': 2.0, 'though': 1.0}
Word element => {'drinks': 1.0, 'but': 1.0, 'gadgets': 1.0, 'kid': 1.0, 'holding': 1.0, 'dig': 1.0, 'like': 1.0, 'foam': 1.0, 'kids': 1.0, 'graco': 1.0, 'wobbly': 1.0, 'only': 1.0, 'not': 2.0, 'excellent': 1.0, 'would': 1.0, 'level': 1.0, 'in': 1.0, 'piece': 1.0, 'sturdy': 1.0, 'of': 1.0, 'cake': 1.0, 'seat': 2.0, 'our': 2.0, 'to': 3.0, 'on': 1.0, 'recommendation': 1.0, 'car': 1.0, 'very': 1.0, 'construction': 1.0, 'the': 1.0, 'install': 1.0, 'great': 1.0, 'them': 1.0, 'a': 1.0, 'colors': 1.0, 'mesh': 1.0, 'and': 1.0, 'comfy': 1.0, 'seats': 2.0, 'bright': 1.0, 'ride': 1.0, 'due': 1.0, 'include': 1.0, 'memory': 1.0, 'are': 1.0, 'padding': 1.0, 'be': 1.0, 'cupholder': 1.0, 'previous': 1.0, 'sits': 1.0, 'pockets': 1.0, 'for': 2.0}
Word element => {'don': 1.0, 'that': 1.0, 'really': 1.0, 'we': 1.0, 'it': 1.0, 'to': 1.0, 'install': 1.0, 'tangle': 1.0, 'straps': 1.0, 'easy': 1.0, 'safe': 1.0, 'the': 1.0, 'my': 1.0, 'like': 1.0, 'and': 2.0, 'very': 2.0, 't': 1.0, 'comfy': 1.0, 'loves': 1.0, 'seems': 1.0, 'son': 1.0}
Word element => {'install': 1.0, 'rock': 1.0, 'am': 1.0, 'solid': 2.0, 'go': 1.0, 's': 1.0, 'a': 2.0, 'rogue': 1.0, 'nissan': 1.0, 'and': 2.0, 'use': 1.0, 'instructions': 2.0, 'facing': 1.0, 'foreword': 1.0, 'able': 2.0, 'get': 1.0, 'area': 1.0, 'easy': 1.0, 'something': 2.0, 'super': 1.0, 'installing': 1.0, 'hard': 1.0, 'space': 1.0, 'more': 1.0, 'headrest': 2.0, 'there': 1.0, 'so': 1.0, 'buckle': 1.0, 'was': 3.0, 'crotch': 1.0, 'evenflo': 2.0, 'i': 8.0, 'indicated': 2.0, 'old': 1.0, 'has': 1.0, 'trunk': 1.0, 'freeway': 1.0, 'easier': 1.0, 'buckles': 1.0, 'latch': 2.0, 'worth': 1.0, 'price': 1.0, 'after': 1.0, 'ended': 2.0, 'being': 1.0, 'our': 1.0, 'seat': 5.0, 'to': 8.0, 'had': 2.0, 'purchased': 1.0, 'rear': 2.0, 'this': 1.0, 'with': 4.0, 'connect': 1.0, 'replace': 1.0, 'the': 13.0, 'car': 4.0, 'together': 1.0, 'looks': 1.0, 'it': 3.0, 'remove': 1.0, 'year': 1.0, 'for': 2.0, 'momentum': 3.0, '2011': 1.0, 'my': 5.0, 'came': 1.0, '2': 1.0, 'but': 2.0, 'in': 2.0, 'secure': 1.0, 'will': 1.0, 'also': 3.0, 'that': 2.0, 'box': 1.0, 'over': 1.0, 'up': 1.0, 'do': 2.0, 'assistance': 1.0, 'funny': 1.0, 'right': 1.0, 'practice': 1.0, 'never': 2.0, 'taller': 1.0, 'on': 1.0, 'put': 1.0, 'husbands': 1.0, 'make': 1.0, 'think': 1.0, 'be': 1.0, 'needing': 1.0, 'me': 1.0}
Word element => {'purchases': 1.0, 'future': 1.0, 'once': 2.0, 'but': 2.0, 'car': 3.0, 'have': 2.0, 'been': 1.0, 'that': 1.0, 'to': 4.0, 'myride': 1.0, '34': 2.0, 'her': 2.0, 'it': 7.0, 'she': 6.0, 'sure': 1.0, 'easy': 2.0, 'porch': 1.0, 'seat': 3.0, 'in': 3.0, 'said': 1.0, 'recaro': 1.0, 'bye': 2.0, 'transitions': 1.0, 'one': 1.0, 'rear': 1.0, 'happy': 1.0, 'quite': 1.0, 'my': 1.0, 'and': 6.0, 'tough': 1.0, 'be': 1.0, 'had': 1.0, 'was': 3.0, 'would': 1.0, 'new': 3.0, 'install': 2.0, 'comfortable': 1.0, 'great': 1.0, 'the': 10.0, 'a': 2.0, 's': 1.0, 'graco': 2.0, 'daughter': 1.0, 'this': 1.0, 'our': 1.0, 'how': 1.0, 'happily': 1.0, 'plan': 1.0, 'is': 3.0, 'more': 3.0, 'well': 1.0, 'seats': 1.0, 'we': 3.0, 'take': 1.0, 'facing': 2.0, 'loves': 1.0, 'replacing': 1.0, 'sat': 1.0, 't': 2.0, 'fit': 1.0, 'love': 1.0, 'for': 3.0, 'straps': 1.0, 'old': 1.0, 'carseat': 2.0, 'can': 2.0, 'so': 1.0, 'only': 1.0, 'pink': 1.0, 'sturdy': 2.0, 'until': 1.0, 'seems': 1.0, 'also': 1.0, 'than': 2.0, '65': 1.0, 'britax': 1.0, 'are': 1.0, 'all': 1.0, 'other': 1.0, 'complaint': 1.0, 'll': 1.0, 'front': 1.0, 'with': 3.0, 'weren': 1.0, 'pockets': 1.0, 'picture': 1.0, 'not': 1.0, 'both': 1.0, 'holding': 1.0, 'bottles': 1.0, 'much': 3.0, 'put': 1.0, 'back': 1.0, 'water': 1.0, 'favorite': 1.0, 'takes': 1.0, 'out': 1.0, 'prettier': 1.0, 'really': 1.0, 'stick': 1.0}
Word element => {'a': 1.0, 'subaru': 1.0, 'in': 1.0, 'matching': 1.0, 'and': 1.0, 'thus': 1.0, 'flaws': 1.0, 'no': 1.0, 'find': 1.0, 'are': 1.0, 'sturdy': 1.0, 'as': 1.0, 'nothing': 1.0, 'lol': 1.0, 'comparison': 1.0, 'may': 1.0, 'construction': 1.0, 'great': 2.0, 'the': 1.0, 'toddler': 1.0, 'but': 1.0, 'review': 1.0, 'for': 1.0, 'now': 1.0, 'to': 2.0, 'be': 1.0, 'r': 1.0, 'loves': 1.0, 'it': 1.0, 'my': 2.0, 'went': 1.0, 'seat': 1.0, 'wrx': 1.0, 'far': 1.0, 'soon': 1.0, 'toys': 1.0, 'want': 1.0, 'looks': 1.0, 'features': 1.0, 'felt': 1.0, 'is': 1.0, 'amazing': 1.0, 'recaro': 1.0, 'i': 3.0, 'too': 1.0, 'when': 1.0, 'us': 1.0}
Word element => {'cherokee': 1.0, 'grand': 1.0, 'in': 1.0, 'great': 1.0, 'it': 1.0, 'my': 2.0, 'jeep': 1.0, 'and': 1.0, 'very': 2.0, 'price': 1.0, 'happy': 1.0, 'was': 1.0, 'son': 1.0, 'with': 1.0, 'loves': 1.0, 'this': 1.0, 'purchase': 1.0, 'fits': 1.0, 'easy': 1.0, 'right': 1.0, 'to': 1.0, 'install': 1.0}
Word element => {'pair': 2.0, 'have': 1.0, 'we': 1.0, 'i': 1.0, 'of': 2.0, 'rest': 1.0, 'easy': 1.0, 'proride': 1.0, 'my': 1.0, 'and': 1.0, 'seats': 1.0, 'travel': 1.0, 'in': 1.0, 'performance': 1.0, 'a': 2.0, 'recaro': 1.0, 'sport': 1.0, 'sons': 1.0, 'knowing': 1.0, 'car': 1.0}
Word element => {'thanks': 1.0, 'pointed': 1.0, '5': 1.0, 'again': 1.0, 'are': 1.0, 'protection': 1.0, 'you': 1.0, 'in': 2.0, 'her': 1.0, 'see': 1.0, 'when': 1.0, 'nascar': 1.0, 'think': 1.0, 'toddler': 1.0, 'your': 1.0, 'the': 3.0, 'have': 1.0, 'thing': 1.0, 'all': 2.0, 'car': 1.0, 'my': 2.0, 'world': 1.0, 'child': 1.0, 'amazon': 1.0, 'is': 3.0, 'seat': 3.0, 'new': 1.0, 'says': 1.0, 'always': 1.0, '34': 2.0, 'and': 3.0, 'knew': 1.0, 'seats': 1.0, 'this': 3.0, 'certainly': 1.0, 'pretty': 1.0, 'i': 4.0, 'fancy': 1.0, 'recaro': 1.0, 'love': 1.0, 'for': 2.0, 'most': 1.0, 'race': 2.0}
Word element => {'say': 1.0, 'i': 1.0, 'can': 1.0, 'kid': 1.0, 'in': 2.0, 'and': 1.0, 'made': 1.0, 'usa': 1.0, 'it': 3.0, 'but': 1.0, 'likes': 1.0, 'all': 1.0, 'safe': 1.0, 'solid': 1.0, 'more': 1.0, 'the': 1.0, 'heavy': 2.0, 'car': 1.0, 's': 2.0, 'its': 1.0, 'a': 1.0, 'riding': 1.0, 're': 1.0, 'convertible': 1.0, 'seat': 1.0, 'they': 1.0, 'what': 1.0}
Word element => {'belt': 1.0, 'easy': 1.0, 'still': 1.0, 'that': 1.0, 'didn': 1.0, 'vehicle': 1.0, 'put': 1.0, 'was': 1.0, 'to': 2.0, 'have': 2.0, 'using': 1.0, 'love': 1.0, 'i': 3.0, 'recaro': 1.0, 's': 1.0, 'a': 3.0, 'well': 1.0, 'and': 3.0, 'latch': 2.0, 'my': 1.0, 'trust': 1.0, 't': 1.0, 'the': 3.0, 'in': 1.0, 'company': 1.0, 'seat': 2.0, 'really': 1.0, 'second': 1.0, 'is': 2.0, 'install': 1.0, 'constructed': 1.0, 'plus': 1.0, 'system': 2.0, 'it': 4.0, 'this': 1.0, 'major': 1.0, 'did': 1.0, 'too': 1.0}
Word element => {'provide': 1.0, 'safety': 1.0, 'children': 2.0, 'for': 1.0, 'comfortable': 1.0, 'would': 1.0, 'the': 1.0, 'are': 1.0, 'this': 1.0, 'recommend': 1.0, 'seat': 1.0, 'really': 1.0, 'deserve': 1.0, 'to': 1.0, 'definitely': 1.0, 'anyone': 1.0, 'these': 1.0, 'and': 1.0, 'seats': 1.0}
Word element => {'get': 1.0, 'as': 1.0, 'count': 1.0, 'not': 1.0, 'do': 1.0, 'cup': 1.0, 'cups': 1.0, 'drink': 1.0, 'doesn': 1.0, 'herself': 1.0, 'drawback': 1.0, 'think': 1.0, 'does': 1.0, 'twisting': 1.0, 'had': 1.0, 'never': 1.0, 'any': 2.0, 'name': 1.0, 'their': 1.0, 'mesh': 1.0, 'sippy': 1.0, 'up': 1.0, 'straps': 1.0, 'anti': 1.0, 'height': 1.0, 'time': 1.0, 'tall': 1.0, 'across': 1.0, '3': 1.0, 'allow': 1.0, 'enough': 1.0, 'even': 1.0, 'room': 1.0, 'hip': 1.0, 'padded': 1.0, 'pads': 1.0, 'evenflo': 1.0, 'have': 7.0, 'holders': 1.0, 'through': 1.0, 'love': 2.0, 'far': 1.0, 'order': 1.0, 'her': 4.0, 'would': 1.0, 'after': 1.0, 't': 1.0, 'rest': 1.0, 'there': 2.0, 'owned': 3.0, 'for': 4.0, 'in': 2.0, 'seat': 9.0, 'besides': 1.0, 'our': 3.0, 'back': 1.0, 'sleep': 1.0, 'bought': 1.0, 'one': 1.0, 'adjusts': 1.0, 'decided': 1.0, 'best': 1.0, '34': 2.0, 'car': 3.0, 'on': 1.0, 'over': 1.0, 'looked': 1.0, 'research': 1.0, 'cant': 1.0, 'this': 7.0, 'a': 1.0, 'are': 1.0, 'britax': 1.0, 'strap': 2.0, 'we': 9.0, 'take': 1.0, 'she': 1.0, 'many': 1.0, 'seats': 2.0, 'varying': 1.0, 'ever': 1.0, 'manufacturer': 1.0, 'years': 2.0, '13': 1.0, 'let': 1.0, 'soft': 1.0, 'flopping': 1.0, 'days': 1.0, 'without': 1.0, 'and': 9.0, 'tough': 1.0, 'may': 1.0, 'my': 1.0, 'me': 1.0, 'graco': 1.0, 'daughter': 3.0, 'by': 3.0, 'issues': 1.0, 'past': 1.0, 'lived': 1.0, 'shoulder': 2.0, 'at': 1.0, 'is': 8.0, 'diono': 1.0, 'etc': 1.0, 'ratings': 1.0, 'i': 4.0, 'was': 1.0, 'really': 2.0, 'saying': 1.0, 'appealing': 1.0, 'padding': 1.0, 'pockets': 1.0, 'plenty': 1.0, 'allows': 1.0, 'with': 1.0, 'pretty': 1.0, 'to': 4.0, 'high': 1.0, 'were': 1.0, 'harness': 1.0, 'narrow': 1.0, 'only': 2.0, 'weight': 1.0, 'good': 1.0, 'side': 3.0, 'start': 1.0, 'protection': 2.0, 'so': 3.0, 'it': 4.0, 'am': 1.0, 'glad': 1.0, 'did': 1.0, 'sturdy': 1.0, 'comfortable': 1.0, 'price': 1.0, 'toddler': 1.0, 'though': 1.0, 'thick': 1.0, 'head': 1.0, 'easily': 1.0, 'that': 4.0, 'deep': 1.0, 'down': 1.0, 'of': 4.0, 'the': 16.0, 'longer': 1.0, 'due': 1.0, 'also': 4.0, 'twist': 1.0, 'being': 1.0, 'very': 1.0, 'cushioned': 1.0, 'rides': 1.0}
Word element => {'be': 1.0, 'cannot': 1.0, 'other': 1.0, 'than': 1.0, 'into': 1.0, 'her': 1.0, 'easier': 1.0, 'that': 2.0, 'a': 1.0, 'get': 1.0, 'difference': 1.0, 'yr': 1.0, 'is': 1.0, 'regular': 1.0, 'to': 2.0, 'granddaughter': 1.0, 'purpose': 1.0, '3': 1.0, 'my': 1.0, 'booster': 2.0, 'the': 2.0, 'using': 1.0, 'for': 3.0, 'as': 2.0, 'style': 1.0, 'm': 1.0, 'car': 1.0, 'old': 1.0, 'i': 1.0, 'converted': 1.0, 'not': 1.0, 'seat': 1.0, 'it': 1.0, 'only': 1.0, 'this': 1.0, 'so': 1.0, 'far': 1.0}
Word element => {'happy': 1.0, 'are': 1.0, 'children': 1.0, 'at': 1.0, 'budge': 1.0, 'quick': 1.0, 'it': 3.0, 'grandchildren': 1.0, 'recaro': 1.0, 'they': 2.0, 'old': 2.0, 'factors': 1.0, 'the': 4.0, 'four': 1.0, '2': 1.0, 'heavy': 1.0, 'researched': 1.0, 'don': 1.0, 'cheaper': 1.0, 'my': 2.0, 'recaros': 1.0, 'bought': 1.0, 'too': 1.0, 'and': 4.0, 'install': 2.0, '1': 1.0, 'get': 1.0, 'i': 3.0, 'two': 1.0, 'safety': 1.0, 'when': 1.0, 'for': 1.0, '5': 2.0, 'son': 1.0, 'from': 1.0, 'had': 1.0, 'was': 1.0, 'seats': 2.0, 'move': 1.0, 'around': 1.0, 'snap': 1.0, 'into': 1.0, 'have': 1.0, 'small': 1.0, 'mercedes': 1.0, 'all': 1.0, 'to': 4.0, 'seat': 1.0, 'although': 1.0, 'slipped': 1.0, 't': 1.0, 's': 3.0, 'a': 2.0, 'pain': 1.0, 'always': 1.0, 'little': 1.0, 'ages': 1.0, 'side': 2.0}
Word element => {'otherwise': 1.0, 'seat': 1.0, 'amazing': 1.0, 's': 1.0, 'cup': 2.0, 'holder': 1.0, 'it': 2.0, 'only': 1.0, 'hard': 1.0, 'change': 1.0, 'is': 1.0, 'thing': 1.0, 'hold': 1.0, 'd': 1.0, 'an': 1.0, 'but': 1.0, 'toddler': 1.0, 'a': 2.0, 'maneuver': 1.0, 'in': 1.0, 'cannot': 1.0, 'to': 1.0, 'their': 2.0, 'hands': 1.0, 'as': 1.0, 'open': 1.0, 'the': 1.0, 'while': 1.0, 'pockets': 1.0, 'i': 1.0, 'putting': 1.0}
Word element => {'the': 1.0, 'worth': 1.0, 'its': 1.0, 'so': 1.0, 'years': 1.0, 'for': 1.0, 'seat': 1.0, 'from': 1.0, 'britax': 1.0, 'use': 1.0, 'even': 1.0, 'simply': 1.0, 'this': 2.0, 'coming': 1.0, 'is': 1.0, 'many': 1.0, 'stuff': 1.0, 'you': 1.0, 'better': 1.0, 'it': 1.0, 'love': 1.0, 'money': 1.0, 'can': 1.0}
Word element => {'owned': 1.0, 'of': 1.0, 'is': 1.0, 'and': 1.0, 'my': 1.0, 'years': 1.0, 'past': 1.0, 'the': 2.0, 'expensive': 1.0, 'materials': 1.0, 'ten': 1.0, 'construction': 1.0, 'best': 1.0, 'from': 1.0, 'very': 1.0, 'most': 1.0, 'use': 1.0, 'solid': 1.0, 'safe': 1.0, 'least': 1.0, 'easy': 2.0, 'to': 3.0, 'quality': 1.0, 'will': 1.0, 'been': 1.0, 'seats': 1.0, 'install': 1.0, 'grow': 1.0, 'this': 1.0, 'children': 1.0, 'with': 2.0, 'child': 1.0, 'good': 1.0, 'car': 1.0, 'value': 1.0, 'i': 2.0, 'four': 1.0, 'have': 2.0, 'one': 1.0, 'for': 1.0, 'comfortable': 1.0, 'using': 1.0}
Word element => {'buy': 1.0, 'know': 1.0, 'never': 1.0, 'likes': 1.0, 'daughter': 1.0, 'is': 2.0, 'this': 1.0, 'pain': 1.0, 'about': 1.0, 'strap': 1.0, 'loosen': 1.0, 'car': 2.0, 'of': 1.0, 'out': 1.0, 'she': 3.0, 'it': 2.0, 'so': 1.0, 'time': 1.0, 'one': 1.0, 'stuck': 2.0, 'getting': 1.0, 've': 1.0, 'then': 2.0, 'since': 1.0, 'her': 1.0, 'last': 1.0, 'sufficient': 1.0, 'pdf': 1.0, 'less': 1.0, 'housing': 1.0, 'charge': 1.0, 'what': 1.0, 'had': 4.0, 'wanted': 1.0, 'doesn': 1.0, 'talk': 1.0, 'belt': 2.0, 'was': 3.0, 'recaro': 1.0, 'beyond': 1.0, 'and': 4.0, 'me': 1.0, 'husband': 1.0, 'degree': 1.0, 'overall': 1.0, 'i': 2.0, 'conversation': 1.0, 'safe': 1.0, 'take': 1.0, 'service': 1.0, 'think': 1.0, 'manual': 2.0, 'with': 5.0, 'come': 1.0, 're': 1.0, 'customer': 1.0, 'csr': 1.0, 'pleased': 1.0, 'that': 2.0, 'didn': 1.0, 'pleasant': 1.0, 'to': 5.0, 'our': 1.0, 'seat': 5.0, 'missing': 1.0, 'cupholders': 1.0, 'also': 1.0, 's': 2.0, 'we': 3.0, 'a': 6.0, 't': 2.0, 'tightening': 1.0, 'the': 8.0, 'reinstall': 1.0, 'rude': 1.0, 'they': 1.0, 'seriously': 1.0, 'than': 1.0, '14': 1.0, 'for': 2.0, 'but': 2.0, 'issued': 1.0, 'an': 1.0, 'absolutely': 1.0, 'should': 2.0, 'included': 1.0, 'be': 2.0, 'hopefully': 1.0, 'my': 2.0, 'purchase': 1.0, 'feel': 1.0, 'seemed': 1.0, 'email': 1.0}
Word element => {'quick': 1.0, 'now': 1.0, 'them': 2.0, 'tighten': 1.0, 'easy': 2.0, 'so': 2.0, 'straps': 1.0, 'pockets': 1.0, 'side': 1.0, 'work': 1.0, 'but': 2.0, 'or': 1.0, 'cup': 1.0, 'true': 1.0, 'few': 1.0, 'worried': 1.0, 'minutes': 1.0, 'was': 1.0, 'blue': 1.0, 'take': 1.0, 'pretty': 1.0, 'is': 3.0, 'sapphire': 1.0, 'i': 3.0, 'car': 1.0, 'did': 2.0, 'moving': 1.0, 'never': 1.0, 'color': 1.0, 'bought': 1.0, 'one': 1.0, 'it': 4.0, 'holders': 1.0, 'wish': 1.0, 'this': 3.0, 'how': 1.0, 'adjust': 1.0, 'he': 5.0, 'know': 1.0, 'flop': 1.0, '34': 2.0, 'royal': 1.0, 'britax': 1.0, 'once': 1.0, 'of': 1.0, 'grows': 1.0, '3': 1.0, 'his': 2.0, 'having': 1.0, 'does': 1.0, 'yr': 1.0, 'lot': 1.0, 'last': 1.0, 'much': 1.0, 'its': 1.0, 'the': 3.0, 'asleep': 1.0, 'old': 1.0, 'very': 2.0, 'and': 2.0, 'that': 1.0, 'loves': 1.0, 'to': 2.0, 'as': 2.0, 'seat': 3.0, 'not': 2.0, 'in': 3.0, 'said': 1.0, 'loosen': 1.0, 'sooner': 1.0, 'longer': 1.0, 'head': 1.0, 'up': 1.0, 'over': 1.0, 'had': 1.0, 'either': 1.0, 'has': 1.0, 'comfy': 1.0, 'growing': 1.0, 'room': 1.0, 'will': 1.0, 'a': 3.0, 'we': 1.0, 'about': 1.0, 'no': 1.0, 'done': 1.0, 'need': 1.0, 'often': 1.0, 'my': 2.0, 'fits': 1.0, 'until': 1.0, 'great': 2.0, 'falls': 1.0, 'small': 1.0}
Word element => {'looks': 1.0, 'well': 1.0, 'is': 1.0, 'how': 1.0, 'we': 1.0, 'it': 1.0, 'love': 1.0, 'seat': 2.0, '34': 2.0, 'you': 3.0, 'something': 1.0, 'look': 1.0, 'this': 2.0, 'car': 2.0, 'and': 1.0, 'know': 2.0, 'at': 1.0, 'when': 1.0, 'safe': 2.0, 'just': 2.0}
Word element => {'car': 1.0, 'for': 1.0, 'one': 1.0, 'bought': 1.0, '35': 1.0, 'and': 1.0, 'facing': 1.0, 'compact': 1.0, 'we': 1.0, 'younger': 1.0, 'more': 1.0, 'the': 1.0, 'my': 3.0, 'seat': 1.0, 'good': 2.0, 'then': 1.0, 's': 1.0, 'wife': 1.0, 'yrs': 1.0, 'weighs': 1.0, 'recaro': 1.0, 'i': 1.0, 'lbs': 1.0, '4': 1.0, 'a': 1.0, 'front': 1.0, 'very': 1.0, 'when': 1.0, 'daughter': 2.0, 'before': 1.0, 'had': 1.0, 'was': 1.0, 'it': 1.0, 'fits': 1.0, 'second': 1.0, 'is': 1.0}
Word element => {'bottle': 1.0, 'her': 1.0, 'old': 1.0, 'year': 1.0, 'our': 1.0, 'for': 1.0, 'it': 1.0, 'and': 1.0, 'short': 1.0, 'into': 1.0, 'to': 2.0, 'too': 1.0, 'attached': 1.0, 'in': 1.0, 'buckle': 1.0, 'is': 2.0, 'difficult': 1.0, 'seat': 1.0, 'cup': 1.0, 'holder': 1.0, 's': 1.0, '2': 1.0, 'the': 2.0, 'juts': 1.0, 'baby': 1.0, 'piece': 1.0, 'outward': 1.0, 'put': 1.0, 'inside': 1.0, 'if': 1.0, 'legs': 1.0, 'netted': 1.0}
Word element => {'be': 1.0, 'to': 1.0, 'child': 1.0, 'safe': 1.0, 'but': 1.0, 'it': 1.0, 'because': 2.0, 'matched': 1.0, 'i': 3.0, 'want': 1.0, 'recaro': 1.0, 'in': 1.0, 'am': 1.0, 'got': 1.0, 'my': 2.0, 'as': 2.0, 'seats': 1.0, 'and': 1.0, 'car': 1.0, 'have': 1.0, 'this': 1.0, 'not': 1.0}
Word element => {'expectations': 1.0, 'our': 1.0, 'meets': 1.0, 'hot': 1.0, 'very': 1.0, 'as': 2.0, 'built': 1.0, 'solid': 1.0, 'cause': 1.0, 'is': 1.0, 'and': 3.0, 'chose': 1.0, 'place': 1.0, 'live': 1.0, 'it': 1.0, 'this': 2.0, 'a': 1.0, 'rating': 1.0, 'well': 1.0, 'we': 2.0, 'easy': 1.0, 'to': 2.0, 'install': 1.0, 'the': 1.0, 'be': 1.0, 'material': 1.0, 'expected': 1.0, 'in': 1.0, 'seems': 1.0, 'cool': 1.0}
Word element => {'move': 1.0, 'probably': 1.0, 'so': 1.0, 'heavy': 1.0, 'is': 2.0, 'only': 1.0, 'car': 1.0, 'installed': 1.0, 'recomend': 1.0, 'alternate': 1.0, 'construction': 1.0, 'll': 1.0, 'especially': 1.0, 'cost': 1.0, 'want': 1.0, 'if': 1.0, 'just': 1.0, 'once': 1.0, 'of': 2.0, 'seat': 2.0, 'to': 2.0, 'an': 1.0, 'quality': 1.0, 'be': 1.0, 'enthusiast': 1.0, 'bought': 1.0, 'reputation': 1.0, 'happier': 1.0, 'tou': 1.0, 'that': 1.0, 'case': 1.0, 'and': 2.0, 'couldn': 1.0, 'get': 1.0, 'based': 1.0, 'this': 2.0, 'on': 1.0, 'the': 4.0, 'great': 1.0, 'have': 1.0, 'half': 1.0, 'price': 1.0, 'you': 4.0, 'definitely': 2.0, 'what': 1.0, 'pay': 1.0, 'for': 1.0, 'not': 1.0, 'give': 1.0, 'drawback': 1.0, 'with': 1.0, 'piece': 1.0, 'mind': 1.0, 'recaro': 1.0, 'in': 1.0, 'it': 3.0, 'looks': 1.0, 're': 1.0, 'we': 2.0, 't': 1.0, 'a': 1.0}
Word element => {'how': 1.0, 'our': 7.0, 'shopping': 1.0, 'disappointed': 1.0, 'relieved': 1.0, 'the': 33.0, 'amount': 1.0, 'on': 3.0, 'same': 4.0, 'always': 1.0, 'people': 1.0, 'britax': 3.0, 'sport': 4.0, 'you': 4.0, 'buckling': 1.0, 'relatively': 1.0, 'this': 6.0, 'look': 1.0, 'sports': 1.0, 'because': 1.0, 'that': 5.0, 'deep': 1.0, 'secure': 2.0, 'padding': 2.0, 'particularly': 1.0, 'side': 1.0, 'which': 1.0, 'picture': 2.0, 'with': 2.0, 'well': 2.0, 'i': 11.0, 'daughters': 1.0, 'so': 6.0, 'comparison': 2.0, 'is': 9.0, 'can': 2.0, 'beautifully': 1.0, 'like': 2.0, 'tell': 1.0, 'days': 1.0, 'recaro': 3.0, 'soft': 1.0, 'advanced': 1.0, 'me': 2.0, 'looks': 1.0, 'are': 5.0, 'my': 2.0, 'not': 5.0, 'car': 6.0, 'since': 1.0, 'factors': 1.0, 'beautiful': 1.0, 'getting': 1.0, 'was': 6.0, 't': 3.0, 'a': 5.0, 'go': 1.0, 'we': 5.0, 'difference': 1.0, 'color': 2.0, 'happy': 2.0, 'bought': 1.0, 'convertible': 1.0, 'there': 1.0, 'life': 1.0, 'worried': 2.0, 'time': 1.0, 'in': 9.0, 'push': 1.0, 'seat': 5.0, 'year': 2.0, 'basically': 1.0, 'purchase': 1.0, 'for': 9.0, '5': 2.0, 'one': 3.0, 'got': 1.0, 'she': 5.0, 'part': 1.0, 'baby': 1.0, 'turns': 1.0, 'would': 2.0, 'also': 3.0, 'of': 7.0, 'protection': 2.0, 'old': 4.0, 'but': 6.0, 'chose': 1.0, 'tight': 1.0, 'enough': 1.0, 'does': 1.0, 'removable': 1.0, 'see': 2.0, 'real': 1.0, 'booster': 3.0, 'set': 1.0, 'as': 6.0, 'pads': 1.0, 'to': 11.0, 'conforms': 2.0, 'other': 1.0, 'mommy': 1.0, 'brains': 1.0, 'get': 3.0, 'protected': 2.0, 'performance': 1.0, 'aspect': 1.0, 'sewn': 1.0, 'big': 1.0, 'nice': 2.0, 'her': 3.0, 'little': 1.0, 'purple': 2.0, 'had': 1.0, 'thick': 2.0, 'previously': 1.0, 'higher': 1.0, 'ones': 1.0, 'all': 1.0, 'yr': 1.0, 'proride': 5.0, '6': 1.0, 'straps': 2.0, 'or': 4.0, '3': 1.0, 'too': 1.0, 'loosening': 1.0, 'impact': 1.0, 'up': 1.0, 'plus': 2.0, 'major': 1.0, 'down': 2.0, 'lever': 1.0, 'button': 1.0, 'them': 2.0, 'spot': 1.0, 'month': 1.0, 'kids': 1.0, 'front': 1.0, 'and': 11.0, 'just': 2.0, 'hot': 1.0, 'have': 2.0, 'say': 1.0, 'daughter': 2.0, 'feels': 2.0, 'move': 1.0, 'virtually': 1.0, 'long': 1.0, 'buckled': 1.0, 'both': 2.0, 'seats': 2.0, 'easier': 1.0, 'very': 3.0, 'ways': 1.0, 'pulling': 1.0, 'smoother': 1.0, 'do': 1.0, 'then': 1.0, 'only': 1.0, 'factor': 1.0, 'strap': 1.0, 'piece': 1.0, '2': 5.0, 'neck': 1.0, 'through': 1.0, 'into': 2.0, 'they': 2.0, 'let': 1.0, 'overall': 1.0, 'trying': 1.0, 'debate': 1.0, 'may': 1.0, 'whether': 1.0, '9': 1.0, 'am': 2.0, 'wouldn': 1.0, 'perfect': 1.0, 'snug': 1.0, 's': 1.0, 'grow': 1.0, '90th': 1.0, 'by': 2.0, 'out': 1.0, 'two': 1.0, 'won': 2.0, 'comfortable': 1.0, 'road': 1.0, '80': 1.0, 'love': 1.0, 'these': 1.0, 'pink': 3.0, 'short': 1.0, 'purchased': 1.0, 'husband': 1.0, 'been': 1.0, 'be': 5.0, 'it': 9.0, 'percentile': 1.0, 'height': 1.0}
Word element => {'brand': 1.0, 'pegperego': 1.0, 'having': 1.0, 'by': 1.0, 'installing': 1.0, 'wanting': 1.0, 'keeps': 1.0, 'recaro': 1.0, 'remove': 1.0, 'up': 1.0, 'favorite': 1.0, 'less': 1.0, 'britaxs': 1.0, 'their': 1.0, 'them': 3.0, 'rarely': 1.0, 'has': 1.0, 'we': 1.0, 'then': 1.0, 'back': 1.0, 'go': 1.0, 'frequently': 2.0, 'from': 2.0, 'transferring': 1.0, 'be': 2.0, 'going': 2.0, 'think': 1.0, 'parent': 1.0, 'if': 1.0, 'really': 1.0, 'say': 1.0, 'd': 2.0, 'cons': 1.0, 'mind': 1.0, 'doesn': 1.0, 'she': 1.0, 'how': 1.0, 'out': 1.0, 'now': 1.0, 'figure': 1.0, 'weeks': 1.0, 'weight': 1.0, 'couple': 1.0, 'year': 1.0, 'who': 1.0, 'vehicle': 1.0, 'car': 4.0, 'clean': 1.0, 'to': 11.0, 'heavy': 1.0, 'as': 4.0, 'don': 1.0, 'her': 1.0, 'wash': 1.0, 'flying': 1.0, 'safety': 1.0, 'gives': 1.0, 'marathon': 1.0, 'britax': 2.0, 'are': 2.0, 's': 1.0, 'a': 4.0, 't': 2.0, 'is': 7.0, 'husband': 1.0, 'more': 2.0, 'his': 1.0, 'around': 2.0, 'not': 2.0, 'time': 1.0, 'heard': 1.0, 'also': 1.0, 'perfect': 1.0, 'this': 1.0, 'holders': 1.0, 'but': 3.0, '5': 1.0, 'room': 1.0, 'than': 1.0, 'with': 3.0, 'no': 1.0, 'about': 1.0, 'all': 1.0, 'an': 3.0, 'when': 1.0, 'what': 1.0, 'had': 1.0, 'reassemble': 1.0, 'carseat': 1.0, 'pinch': 1.0, 'do': 1.0, 'much': 1.0, 'coming': 1.0, 'daughters': 1.0, 'well': 1.0, 'i': 11.0, 'me': 2.0, 'my': 7.0, 'ride': 1.0, 'thighs': 1.0, 'stars': 1.0, 'however': 1.0, 'easy': 1.0, 'yr': 1.0, 'says': 1.0, '2': 2.0, 'machine': 1.0, 'recently': 1.0, 'after': 2.0, 'accident': 1.0, 'episode': 1.0, 'even': 1.0, 'took': 2.0, 'the': 5.0, 'of': 6.0, 'you': 2.0, 'motion': 1.0, 'sickness': 1.0, '3': 2.0, 'catch': 1.0, 'so': 5.0, 'clips': 1.0, 'can': 1.0, 'drift': 1.0, 'for': 3.0, '10': 1.0, 'and': 5.0, 'another': 1.0, 'minutes': 1.0, 'was': 1.0, 'old': 3.0, 'intended': 1.0, 'give': 1.0, 'perfectly': 1.0, 'slide': 1.0, 'overall': 2.0, 'big': 1.0, 'though': 1.0, 'problem': 1.0, 'anticipated': 1.0, 'side': 1.0, 'projectiles': 1.0, 'prevent': 1.0, 'seat': 2.0, 'in': 4.0, 'accidents': 1.0, 'cups': 1.0, 'cup': 1.0, 'case': 1.0, 'because': 1.0, 'that': 1.0, 'like': 2.0, 'roomy': 1.0, 'have': 2.0, 'him': 1.0, 'it': 11.0, 'horror': 1.0, 'stories': 1.0, 'far': 1.0, 'solid': 1.0, 'motor': 1.0, 'sippee': 1.0}
Word element => {'is': 1.0, 'color': 1.0, 'move': 1.0, 'to': 1.0, 'perfect': 1.0, 'easy': 1.0, 'but': 1.0, 'heavy': 1.0, 'seat': 1.0, 'does': 1.0, 'a': 1.0, 'this': 1.0, 'and': 2.0, 'the': 1.0, 'my': 1.0, 'bit': 1.0, 'so': 1.0, 'daughter': 1.0, 'love': 1.0, 'it': 2.0, 's': 2.0}
Word element => {'safety': 1.0, 'mode': 1.0, 'in': 1.0, 'britax': 1.0, 'for': 2.0, 'one': 1.0, 'have': 1.0, 'pick': 1.0, 'easiest': 1.0, 'tests': 1.0, 'car': 1.0, 'of': 1.0, 'up': 1.0, 'the': 7.0, 'repeat': 1.0, 'i': 3.0, 'old': 1.0, 'here': 1.0, '2014': 1.0, 'far': 1.0, 'grandson': 1.0, 'take': 1.0, 'seats': 1.0, '5': 1.0, 'negative': 1.0, 'star': 1.0, 'safest': 1.0, 'by': 1.0, 'when': 1.0, 'reviews': 2.0, 'and': 2.0, 'me': 1.0, 'purchased': 1.0, 'all': 1.0, 'to': 3.0, 'comments': 1.0, 'subaru': 1.0, 'outback': 1.0, 'thank': 1.0, 'which': 1.0, 'highway': 1.0, 'seatbelt': 1.0, 'it': 1.0, 'with': 1.0, 'reviewer': 1.0, 'my': 2.0, 'fits': 1.0, 'no': 1.0, 'problem': 1.0, 'on': 1.0, '3': 1.0, 'educated': 1.0, 'year': 1.0, 'want': 1.0, 'that': 1.0}
Word element => {'time': 1.0, 'long': 1.0, 'a': 1.0, 'car': 1.0, 'and': 2.0, 'very': 1.0, 'big': 1.0, 'seat': 1.0, 'is': 3.0, 'yes': 1.0, 'for': 1.0, 'love': 1.0, 'this': 1.0, 'it': 2.0, 'i': 2.0, 'safe': 1.0, 'feel': 1.0, 'that': 2.0, 'my': 1.0, 'heavy': 1.0, 'the': 1.0, 'daughter': 1.0, 'in': 1.0, 'plus': 1.0, 'she': 1.0, 'but': 1.0, 'will': 1.0, 'be': 1.0}
Word element => {'pads': 1.0, 'our': 1.0, 'too': 1.0, 'instead': 1.0, 'booster': 1.0, 'than': 1.0, '90': 1.0, 'steer': 1.0, 'have': 1.0, 'you': 1.0, 'clear': 1.0, 'if': 1.0, 'yourself': 1.0, 'get': 1.0, 'gap': 1.0, 'about': 1.0, 'making': 1.0, 'through': 1.0, 'feel': 1.0, 'when': 1.0, 'secure': 2.0, 'up': 1.0, 'used': 3.0, 'only': 2.0, 'again': 2.0, 'mode': 1.0, 'but': 2.0, 'great': 1.0, 'latch': 1.0, 'do': 2.0, 'stains': 1.0, 'performance': 1.0, 'weird': 1.0, 'holds': 1.0, 'yes': 1.0, 'washed': 1.0, 'as': 2.0, 'an': 2.0, 'padding': 1.0, 'issue': 1.0, 'head': 1.0, 'half': 1.0, 'must': 1.0, 'setting': 1.0, 'difference': 1.0, 'then': 1.0, 'we': 3.0, 'a': 8.0, 'using': 1.0, 'harness': 5.0, 'its': 2.0, 'daughter': 1.0, 'before': 2.0, 'that': 1.0, '20': 1.0, 'come': 1.0, '50lb': 2.0, 'same': 1.0, 'been': 1.0, 'and': 4.0, 'add': 1.0, 'straps': 1.0, 'sand': 1.0, 'recaro': 1.0, 'system': 1.0, 'color': 1.0, 'looks': 1.0, 'my': 1.0, '3yr': 1.0, 'meaning': 1.0, 'differences': 1.0, 'needs': 1.0, 'met': 1.0, '50lbs': 1.0, 'in': 6.0, 'seat': 10.0, 'length': 1.0, 'to': 5.0, 'grow': 1.0, 'favor': 1.0, 'was': 1.0, '34': 3.0, 'completely': 1.0, 'at': 1.0, 'is': 6.0, 'old': 1.0, 'i': 4.0, 'isn': 1.0, 'replaced': 1.0, 'wide': 1.0, 'tall': 1.0, 'time': 1.0, 'had': 2.0, 'prosport': 2.0, 'almost': 1.0, 'now': 2.0, 'this': 7.0, 'it': 5.0, 'width': 1.0, 'with': 2.0, 'love': 2.0, 'for': 3.0, 'over': 1.0, 'year': 1.0, 'child': 3.0, 'might': 1.0, 'via': 1.0, 've': 1.0, 'down': 1.0, 'riley': 1.0, 'short': 4.0, 'go': 1.0, '14': 1.0, '3': 1.0, 'make': 1.0, 'on': 2.0, 'can': 4.0, 'be': 4.0, 'just': 1.0, 'placed': 1.0, 'cover': 1.0, 'rowthe': 1.0, 'wings': 1.0, '41': 1.0, 'nice': 1.0, 'belt': 3.0, 't': 1.0, 'rest': 1.0, 'which': 2.0, 'childrenthe': 1.0, 'britax': 1.0, 'bad': 2.0, 'are': 2.0, 'sleeping': 1.0, 'they': 2.0, 'tallest': 1.0, 'their': 1.0, 'very': 1.0, 'last': 2.0, 'inch': 2.0, 'longer': 1.0, 'the': 18.0, 'massive': 1.0, 'of': 3.0, 'adjustment': 1.0, 'will': 2.0, 'basics': 1.0, 'out': 2.0, 'hate': 1.0, 'height': 1.0, 'while': 1.0, 'removed': 1.0, 'hero': 1.0, 'not': 2.0}
Word element => {'remove': 1.0, 'install': 1.0, 'and': 2.0, 'clean': 1.0, 'to': 1.0, 'sit': 1.0, 'is': 1.0, 'easy': 1.0, 'just': 1.0, 'it': 1.0, 'great': 1.0, 'my': 1.0, 'must': 1.0, 'loves': 1.0, 'this': 1.0, 'have': 1.0, 'kids': 1.0, 'daughter': 1.0, 'for': 1.0, 'your': 1.0}
Word element => {'enough': 1.0, 'recommend': 1.0, 'well': 1.0, 'sippy': 1.0, 'pockets': 1.0, 'side': 1.0, 'washes': 1.0, 'fabric': 1.0, 'forgot': 1.0, 'on': 2.0, 'now': 1.0, 'from': 1.0, 'easily': 1.0, 'am': 1.0, 'should': 1.0, 'far': 1.0, 'and': 5.0, 'seats': 2.0, 'car': 4.0, 'is': 4.0, 'really': 2.0, 'padding': 1.0, 'going': 1.0, 'a': 3.0, 'it': 4.0, 'durable': 1.0, 'only': 2.0, 'the': 9.0, 'superior': 1.0, 'adjustable': 1.0, 'one': 1.0, 'for': 2.0, 'britax': 1.0, 'of': 1.0, 'i': 7.0, 'extremely': 1.0, 'have': 2.0, 'this': 3.0, 'kids': 2.0, 'be': 2.0, 'very': 1.0, 'cups': 1.0, 'to': 2.0, 'seat': 7.0, 'as': 1.0, 'many': 1.0, 'safe': 1.0, 'booster': 1.0, 'recaro': 1.0, 'in': 2.0, 'also': 2.0, 'cannot': 1.0, 'like': 2.0, 'buy': 1.0, 'extra': 1.0, 'fact': 1.0, 'that': 4.0, 'had': 1.0, 'purchased': 1.0, 'convertible': 1.0, 'mention': 1.0, 'great': 1.0, 'comfortable': 2.0, 'seemed': 1.0, 'straps': 1.0, 'versatility': 1.0, 'work': 1.0, 'can': 1.0, 'used': 1.0}
Word element => {'does': 1.0, 'happy': 1.0, 'us': 1.0, 'exactly': 1.0, 'came': 1.0, 'made': 1.0, 'home': 1.0, 'left': 1.0, 'vacation': 1.0, 'so': 3.0, 'many': 1.0, 'when': 2.0, 'traveling': 1.0, 'babies': 1.0, 'that': 2.0, 'their': 2.0, 'i': 1.0, 'which': 1.0, 'like': 1.0, 'sleeping': 1.0, 'our': 2.0, 'as': 2.0, 'to': 2.0, 'was': 1.0, 'destination': 1.0, 'had': 1.0, 'is': 1.0, 'fall': 1.0, 'cuddled': 1.0, 'it': 4.0, 'very': 1.0, 'little': 1.0, 'don': 1.0, 'cradle': 4.0, 'makes': 1.0, 'we': 4.0, 't': 1.0, 'a': 1.0, 'well': 2.0, 'this': 3.0, 'perfect': 2.0, 'promised': 1.0, 'asleep': 1.0, 'the': 2.0, 'place': 1.0, 'love': 1.0, 'disassembled': 1.0, 'for': 2.0, 'think': 1.0, 'on': 2.0, 'back': 2.0, 'and': 5.0, 'baby': 1.0, 'them': 1.0, 'comfortable': 1.0, 'feel': 1.0, 'cozy': 1.0, 'forget': 1.0, 'are': 1.0, 'not': 1.0, 'tummies': 1.0, 'grandson': 1.0, 'sent': 2.0, 'they': 2.0, 'directly': 1.0}
Word element => {'would': 1.0, 'recommend': 1.0, 'no': 1.0, 'camera': 1.0, 'in': 1.0, 'also': 1.0, 'to': 2.0, 'clothes': 1.0, 'easy': 2.0, 'use': 1.0, 'focus': 1.0, 'and': 2.0, 'size': 1.0, 'complaints': 1.0, 'a': 1.0, 'the': 2.0, 'decent': 1.0, 'put': 1.0, 'with': 1.0, 'on': 2.0}
Word element => {'too': 1.0, 'right': 1.0, 'is': 1.0, 'well': 1.0, 'show': 1.0, 'size': 1.0, 'for': 1.0, 'the': 1.0, 'are': 2.0, 'these': 1.0, 'they': 1.0, 'a': 1.0, 'up': 1.0, 'and': 1.0, 'very': 1.0, 'price': 1.0, 'stickers': 1.0, 'pictures': 1.0, 'cute': 1.0, 'monthly': 1.0, 'great': 1.0}
Word element => {'room': 1.0, 'of': 1.0, 'to': 1.0, 'look': 1.0, 'baby': 1.0, 'special': 1.0, 'a': 1.0, 'order': 1.0, 'just': 1.0, 'the': 3.0, 'it': 2.0, 'gave': 1.0, 'picture': 1.0, 'theme': 1.0, 'we': 1.0, 'was': 1.0, 'expected': 1.0, 'like': 1.0, 'and': 1.0}
Word element => {'nice': 1.0, 'sounds': 1.0, 'typical': 1.0, 'music': 1.0, 'the': 2.0, 'to': 1.0, 'easy': 1.0, 'just': 2.0, 'and': 2.0, 'beautiful': 1.0, 'i': 4.0, 'is': 2.0, 'time': 1.0, 'this': 1.0, 'it': 5.0, 'assemble': 1.0, 'mobile': 1.0, 'expected': 1.0, 'installed': 1.0, 'sleeping': 1.0, 'very': 1.0, 'ok': 1.0, 'hope': 1.0, 'tones': 1.0, 'love': 1.0, 'for': 1.0, 'a': 1.0, 'works': 2.0, 'what': 1.0, 'long': 1.0}
Word element => {'reviews': 1.0, 'no': 2.0, 'clue': 1.0, 'out': 1.0, 'before': 1.0, 'pricey': 1.0, 'are': 1.0, 'things': 1.0, 'same': 1.0, 'don': 1.0, 'hope': 1.0, 'very': 2.0, 'longer': 1.0, 'last': 1.0, 'should': 1.0, 'only': 1.0, 'piece': 1.0, 'think': 2.0, 'batty': 1.0, 'what': 1.0, 'had': 2.0, 'purchased': 1.0, 'drives': 1.0, 'difference': 1.0, 'surprised': 1.0, 'than': 2.0, 'of': 2.0, 'rather': 1.0, 'knit': 1.0, 'for': 1.0, 'stars': 1.0, 'and': 5.0, 'knows': 1.0, 'notes': 2.0, 'ps': 1.0, 'the': 8.0, 'this': 2.0, 'disappointing': 1.0, 'plush': 1.0, 'first': 1.0, 'so': 2.0, 'bit': 1.0, 'months': 1.0, 'mobile': 2.0, 'received': 1.0, 'is': 5.0, 'really': 2.0, 't': 1.0, 'a': 3.0, 'twice': 1.0, 'elephants': 1.0, 'adorable': 1.0, 'when': 2.0, 'm': 1.0, 'junk': 1.0, 'i': 8.0, 'makes': 1.0, 'old': 2.0, 'experience': 1.0, 'cute': 1.0, 'was': 2.0, 'unfortunately': 1.0, 'have': 2.0, 'it': 6.0, 'month': 1.0, 'shelling': 1.0, 'but': 2.0, '2': 2.0, 'music': 1.0, 'written': 1.0, 'been': 1.0, 'that': 3.0, 'box': 1.0, 'mean': 1.0, 'breaking': 1.0, 'plays': 1.0, 'these': 1.0, 'others': 1.0, 'already': 1.0, 'some': 2.0, 'has': 1.0, 'skipping': 1.0, 'me': 2.0, 'wrong': 1.0, 'not': 1.0, 'while': 1.0, 'kind': 1.0, 'sure': 1.0, 'quality': 1.0, 'started': 1.0, 'baby': 2.0}
Word element => {'definitely': 1.0, 'quality': 1.0, 'me': 1.0, 'not': 1.0, 'purchased': 1.0, 've': 1.0, 'sets': 1.0, 'other': 1.0, 'than': 1.0, 'thin': 1.0, 'is': 1.0, 'material': 1.0, 'cycle': 1.0, 'dry': 1.0, 'low': 1.0, 'wash': 1.0, 'water': 1.0, 'warm': 1.0, 'nicely': 1.0, '52': 1.0, '34': 2.0, '27': 1.0, 'even': 1.0, 'giant': 1.0, 'crib': 1.0, 'accents': 1.0, 'with': 2.0, 'it': 2.0, 'recommend': 1.0, 'yellow': 1.0, 'enough': 1.0, 'grey': 1.0, 'mattress': 1.0, 'soft': 1.0, 'heat': 1.0, 'large': 1.0, 'painted': 1.0, 'roommates': 1.0, 'little': 2.0, 'nursery': 1.0, 'here': 1.0, 'these': 1.0, 'the': 5.0, 'fit': 1.0, 'for': 2.0, 'flowers': 1.0, 'mrs': 1.0, 'my': 2.0, 'after': 1.0, 'cute': 1.0, 'depicting': 1.0, 'decal': 1.0, 's': 3.0, 't': 1.0, 'a': 4.0, 'that': 1.0, 'thinner': 1.0, 'owls': 1.0, 'birds': 1.0, 'colors': 1.0, 'and': 1.0, 'design': 1.0, 'no': 1.0, 'x': 1.0, 'wall': 1.0, 'boyer': 1.0, 'tie': 1.0, 'i': 3.0, 'in': 1.0, 'issue': 1.0, 'tree': 1.0, 'overall': 2.0, 'sheet': 1.0, 'so': 2.0, 'sheets': 2.0, 'ordered': 1.0, 'seriously': 1.0, 'but': 1.0, 'can': 1.0, 'girl': 1.0, 'almost': 1.0, 'perfectly': 1.0, 'stand': 1.0}
Word element => {'pay': 1.0, 'you': 1.0, 'especially': 1.0, 'one': 1.0, 'nursery': 1.0, 'out': 1.0, 'for': 2.0, 'stars': 1.0, 'soft': 1.0, 'took': 1.0, 'i': 6.0, 'before': 1.0, '5': 1.0, 'if': 1.0, 'mine': 1.0, 'it': 5.0, 'get': 3.0, 'and': 3.0, 'ready': 1.0, 'will': 2.0, 'money': 1.0, 'music': 1.0, 'can': 2.0, 'but': 2.0, 'work': 1.0, 'shower': 1.0, 'of': 2.0, 'up': 1.0, 'replaced': 2.0, 'the': 6.0, 'seller': 1.0, 'to': 2.0, 'our': 1.0, 'birds': 1.0, 'baby': 1.0, 'today': 1.0, 'about': 1.0, 'coming': 1.0, 'm': 1.0, 'give': 1.0, 'not': 1.0, 'waiting': 1.0, 'here': 1.0, 'part': 1.0, 'from': 1.0, 'very': 2.0, 'is': 1.0, 'amount': 1.0, 'cute': 1.0, 'box': 2.0, 'that': 1.0, 'owls': 1.0, 'are': 1.0, 'just': 1.0, 'hope': 1.0}
Word element => {'sessions': 1.0, 'feeding': 1.0, 's': 1.0, 'well': 1.0, 'those': 1.0, 'my': 1.0, 'daughter': 1.0, 'fits': 1.0, 'all': 1.0, 'item': 1.0, 'this': 1.0, 'room': 1.0, 'for': 1.0, 'love': 1.0, 'great': 1.0, 'very': 1.0, 'cute': 1.0, 'light': 1.0, 'nice': 1.0, 'works': 1.0, 'low': 1.0, 'newborn': 1.0, 'in': 1.0, 'level': 1.0, 'nighttime': 1.0}
Word element => {'room': 1.0, 'in': 1.0, 'granddaughters': 1.0, 'it': 1.0, 'loves': 1.0, 'daughter': 1.0}
Word element => {'looking': 1.0, 'by': 1.0, 'but': 1.0, 'feelings': 1.0, 'nice': 1.0, 'also': 1.0, 'top': 1.0, 'on': 1.0, 'little': 1.0, 'it': 1.0, 'this': 1.0, 'would': 1.0, 'then': 1.0, 'me': 1.0, 'do': 1.0, 'i': 1.0, 'just': 3.0, 'bird': 1.0, 'lamp': 2.0, 'at': 2.0, 'like': 1.0, 'is': 1.0, 'looks': 1.0, 'owl': 3.0, 'absolutely': 1.0, 'cute': 2.0, 'if': 1.0, 'the': 7.0, 'my': 1.0, 'totoro': 2.0, 'gives': 1.0, 'very': 1.0, 'as': 2.0, 'pink': 1.0, 'from': 1.0, 'bottom': 1.0, 'of': 2.0, 'movie': 2.0, '34': 2.0, 'you': 2.0, 'that': 1.0, 'neighbor': 1.0, 'love': 2.0, 'warm': 1.0, 'much': 1.0}
Word element => {'guys': 1.0, 'perfect': 1.0, 'room': 1.0, 'is': 1.0, 'this': 1.0, 'and': 1.0, 'great': 1.0, 'little': 1.0, 'will': 1.0, 'soon': 1.0, 'for': 1.0, 'in': 1.0, 'airplanes': 1.0, 'be': 2.0, 'to': 1.0, 'the': 1.0, 'my': 1.0, 'nephews': 1.0, 'nursery': 1.0, 'done': 1.0}
Word element => {'room': 1.0, 'boys': 1.0, 'our': 1.0, 'to': 1.0, 'great': 1.0, 'edges': 1.0, 'the': 1.0, 'addition': 1.0, 'around': 1.0, 'very': 2.0, 'quality': 1.0, 'frame': 1.0, 'but': 1.0, 'super': 1.0, 'red': 1.0, 'not': 1.0, 'material': 1.0, 'high': 1.0, 'cute': 1.0, 'bright': 1.0}
Word element => {'match': 1.0, 'along': 1.0, 'child': 1.0, 'when': 1.0, 'have': 1.0, 'purchase': 1.0, 'next': 1.0, 'that': 1.0, 'it': 3.0, 'heavy': 1.0, 'first': 2.0, 'with': 1.0, 'and': 3.0, 'life': 1.0, 'of': 1.0, 'frame': 3.0, 'our': 1.0, 'to': 2.0, 'comes': 1.0, 'more': 1.0, 'is': 2.0, 'the': 8.0, 'this': 3.0, 'perfect': 1.0, 'in': 1.0, 'grandson': 1.0, 'will': 1.0, 'item': 1.0, 'plastic': 1.0, 'for': 2.0, 'parents': 1.0, 'hand': 1.0, 'using': 1.0, 'purchased': 1.0, 'loved': 1.0, 'built': 1.0, 'months': 1.0, 'put': 1.0, 'on': 2.0, 'his': 1.0, 'birthday': 1.0, 'gift': 1.0, 'spacious': 1.0, '34': 2.0, 'protect': 1.0, 'presented': 1.0, 'we': 3.0, 's': 1.0, 'a': 1.0, 'well': 1.0, 'display': 1.0, 'they': 2.0, 'openings': 1.0, 'so': 2.0, 'sheet': 1.0, 'are': 1.0, 'those': 1.0, 'photos': 4.0, 'not': 2.0, 'liked': 1.0, 'glass': 1.0}
Word element => {'price': 1.0, 'the': 1.0, 'in': 1.0, 'gift': 1.0, 'bought': 1.0, 'a': 2.0, 'and': 2.0, 'wonderful': 1.0, 'my': 1.0, 'person': 1.0, 'think': 1.0, 'i': 2.0, 'as': 1.0, 'son': 1.0, 'his': 1.0, 'they': 1.0, 'is': 1.0, 'really': 1.0, 'for': 2.0, 'liked': 1.0, 'this': 2.0, 'nicer': 1.0, 'it': 1.0, 'girlfriend': 1.0, 'present': 1.0}
Word element => {'better': 1.0, 'much': 1.0, 'of': 1.0, 'price': 1.0, 'given': 1.0, 'cute': 1.0, 'hold': 1.0, 'not': 1.0, 'that': 1.0, 'in': 1.0, 'time': 1.0, 'so': 2.0, 'butterfly': 1.0, 'however': 1.0, 'it': 2.0, 'this': 2.0, 'excited': 1.0, 'first': 1.0, 'but': 3.0, 'quality': 2.0, 'room': 1.0, 'received': 1.0, 'was': 2.0, 'daughter': 1.0, 'one': 2.0, 'receiving': 1.0, 'get': 1.0, 'and': 4.0, 'i': 2.0, 'for': 1.0, 'cheap': 1.0, 'chart': 1.0, 'the': 5.0, 'design': 1.0, 'upon': 1.0, 'broken': 1.0, 'my': 1.0, 's': 1.0, 'we': 1.0, 'item': 1.0, 'will': 1.0, 'scratched': 2.0, 'expected': 1.0, 'well': 1.0, 'over': 1.0, 'materials': 1.0, 'up': 2.0, 'clearly': 1.0, 'amazon': 1.0, 'second': 1.0, 'is': 2.0, 'am': 1.0, 'growth': 1.0, 'easily': 1.0, 'replaced': 1.0, 'quickly': 1.0, 'arrived': 1.0, 'disappointed': 2.0, 'made': 1.0, 'dirty': 1.0, 'to': 1.0, 'as': 1.0, 'from': 1.0}
Word element => {'apart': 1.0, 'falls': 1.0, 'until': 1.0, 'continue': 1.0, 'will': 1.0, 'however': 1.0, 'minimal': 1.0, 'about': 1.0, 'tearing': 1.0, 'am': 1.0, 'but': 1.0, 'forever': 1.0, 'last': 1.0, 'this': 2.0, 'expect': 1.0, 'didn': 1.0, 'pockets': 1.0, 'top': 1.0, 'compartment': 1.0, 'compartments': 1.0, 'disappointed': 1.0, 'less': 1.0, 'an': 1.0, 'additionally': 1.0, 'useful': 1.0, 'received': 1.0, 'spacious': 1.0, 'bags': 1.0, 'gift': 1.0, 'with': 1.0, 'wet': 1.0, 'wallet': 1.0, 'front': 1.0, 'use': 3.0, 'bottle': 2.0, 'i': 4.0, 'insulated': 1.0, 'one': 2.0, 'for': 2.0, 'holder': 1.0, 'of': 7.0, 'bottom': 1.0, 'there': 2.0, 'the': 7.0, 'and': 3.0, 'very': 1.0, 'to': 2.0, 'as': 2.0, 't': 1.0, 'a': 5.0, 'rating': 1.0, 'is': 4.0, 'side': 1.0, 'clothes': 1.0, 'plenty': 1.0, 'on': 3.0, 'bag': 4.0, 'it': 2.0, 'month': 1.0, 'space': 1.0, 'my': 1.0, 'sunglasses': 1.0, 'water': 1.0, 'already': 1.0, 'such': 1.0, 'these': 1.0, 'lower': 1.0, 'tear': 1.0, 'than': 1.0, 'because': 1.0, 'after': 2.0}
Word element => {'cute': 1.0, 'still': 1.0, 'but': 1.0, 'can': 1.0, 'you': 1.0, 'which': 1.0, 'and': 1.0, 'to': 1.0, 'was': 1.0, 'wanted': 1.0, 'very': 1.0, 'as': 1.0, 'little': 1.0, 'bag': 1.0, 'see': 1.0, 'a': 2.0, 'love': 2.0, 'i': 3.0, 'is': 1.0, 'really': 1.0, 'said': 1.0, 'just': 1.0, 'perfect': 1.0, 'it': 2.0, 'this': 2.0, 'background': 1.0, 't': 1.0, 'the': 2.0, 'colors': 1.0, 'different': 1.0, 'tone': 1.0, 'something': 1.0, 'although': 1.0, 'someone': 1.0, 'has': 1.0, 'peach': 1.0}
Word element => {'picture': 1.0, 'see': 1.0, 'you': 1.0, 'bachground': 1.0, 'cant': 1.0, 'color': 1.0, 'planning': 1.0, 'though': 1.0, 'mind': 1.0, 'over': 1.0, 'a': 4.0, 'came': 1.0, 'bag': 2.0, 'it': 3.0, 'wasnt': 1.0, 'faster': 1.0, 'china': 1.0, 'this': 1.0, 'dont': 1.0, 'from': 1.0, 'shipping': 1.0, 'day': 1.0, 'the': 7.0, 'didnt': 1.0, 'really': 2.0, 'is': 2.0, 'on': 2.0, 'put': 1.0, 'week': 1.0, 'an': 1.0, 'quality': 1.0, 'but': 2.0, 'in': 4.0, 'and': 3.0, 'little': 1.0, 'not': 1.0, 'by': 1.0, 'described': 1.0, 'off': 1.0, 'item': 1.0, 'fyi': 1.0, 'ordered': 1.0, 'be': 1.0, 'here': 1.0, 'diaper': 1.0, 'states': 1.0, 'peach': 1.0, 'same': 1.0, 'actually': 1.0, 'nice': 1.0, 'because': 2.0, 'than': 1.0, 'does': 1.0, 'have': 1.0, 'i': 4.0, 'organizer': 1.0, 'that': 3.0, 'was': 1.0, 'using': 1.0, 'like': 1.0, 'listing': 1.0}
Word element => {'one': 1.0, 'polka': 1.0, 'ship': 1.0, 'takes': 1.0, 'how': 1.0, 'by': 1.0, 'off': 1.0, 'be': 1.0, 'don': 1.0, 'arrived': 1.0, 'out': 1.0, 'shipped': 1.0, 'is': 1.0, 'long': 1.0, 'padding': 1.0, 'it': 5.0, 'only': 1.0, 'stoked': 1.0, 'with': 1.0, 'from': 1.0, 'shipping': 1.0, 'my': 2.0, 'deal': 1.0, 'the': 5.0, '28': 1.0, 'brown': 1.0, 'in': 1.0, 'estimate': 1.0, 'then': 1.0, 'this': 1.0, 'found': 1.0, 'i': 5.0, 'dot': 1.0, 'got': 1.0, 'pockets': 1.0, 'cute': 1.0, 'after': 1.0, 'so': 2.0, 'made': 1.0, 'china': 1.0, 'days': 2.0, 'extra': 1.0, 'outrageous': 1.0, 'like': 1.0, 'but': 1.0, 'back': 1.0, 'about': 1.0, 'highly': 1.0, 'bag': 3.0, '15': 1.0, 'well': 1.0, 'super': 2.0, 'appears': 1.0, 'and': 3.0, 'opinion': 1.0, 'love': 1.0, 'great': 1.0, 'comfortable': 1.0, 'to': 1.0, 'all': 1.0, 'different': 1.0, 'a': 1.0, 't': 1.0, 's': 3.0, 'put': 1.0, 'on': 1.0, 'your': 1.0, 'was': 2.0, 'recommend': 1.0}
Word element => {'how': 1.0, 'only': 1.0, 'if': 1.0, 'work': 1.0, 'but': 1.0, 'all': 1.0, 'concept': 1.0, 'knew': 1.0, 'bag': 1.0, 'loved': 1.0, 'feel': 1.0, 'the': 3.0, 'my': 1.0, 'of': 1.0, 'up': 1.0, 'like': 1.0, 'apart': 1.0, 'zippers': 2.0, 'having': 1.0, 'to': 2.0, 'get': 1.0, 'one': 1.0, 'i': 3.0, 'wasted': 1.0, 'ended': 1.0, 'broke': 1.0, 'another': 1.0, 'money': 1.0}
Word element => {'use': 1.0, 'cute': 1.0, 'to': 4.0, 'buying': 1.0, 'carrying': 1.0, 'ditch': 1.0, 'carry': 2.0, 'of': 1.0, 'lack': 1.0, 'i': 4.0, 'it': 2.0, 'love': 2.0, 'for': 3.0, 'diaper': 1.0, 'organization': 2.0, 'traditional': 1.0, 'the': 1.0, 'great': 1.0, 'and': 3.0, 'was': 1.0, 'recommend': 1.0, 'this': 3.0, 'perfect': 1.0, 'wanted': 1.0, 'bag': 2.0, 'due': 1.0, 'absolute': 1.0, 'my': 2.0, 'especially': 1.0, 'around': 1.0, 'food': 1.0, 'packing': 1.0, 'so': 1.0, 'space': 1.0, 'toddlers': 1.0, 'that': 1.0, 'easier': 1.0, 'a': 1.0, 'easy': 1.0, 'backpack': 1.0, 'solution': 1.0, 'while': 2.0, 'makes': 1.0, 'its': 2.0, 'much': 1.0, 'chasing': 1.0, 'toddler': 1.0, 'out': 1.0, 'highly': 1.0, 'very': 1.0}
Word element => {'important': 1.0, 'backpack': 1.0, 'recommend': 1.0, 'also': 1.0, 'shipping': 1.0, 'price': 1.0, 'not': 1.0, 'you': 3.0, 'minor': 1.0, 's': 1.0, 'absolutely': 1.0, 'out': 2.0, 'take': 1.0, 'someone': 1.0, 'know': 1.0, 'easy': 1.0, 'very': 3.0, 'there': 2.0, 'nervous': 1.0, 'but': 2.0, 'keys': 1.0, 'perfect': 1.0, 'velcro': 1.0, 'closure': 1.0, 'zip': 1.0, 'or': 1.0, 'magnetic': 1.0, 'had': 1.0, 'pocket': 2.0, 'front': 1.0, 'wish': 1.0, 'because': 1.0, 'that': 4.0, 'complaint': 1.0, 'only': 1.0, 'has': 1.0, 'them': 2.0, 'son': 1.0, 'me': 2.0, 'my': 9.0, 'small': 1.0, 'a': 6.0, 'beat': 1.0, 'realizing': 1.0, 't': 2.0, 'won': 1.0, 'who': 1.0, 'did': 1.0, 'keep': 1.0, 'glad': 1.0, 'how': 1.0, 'disappointed': 1.0, 'stroller': 1.0, 'am': 3.0, 'when': 2.0, 'can': 1.0, 'so': 6.0, 'notice': 1.0, 'is': 7.0, 'amazon': 1.0, 'across': 1.0, 'and': 11.0, 'functional': 1.0, 'highly': 1.0, 'this': 7.0, 'lot': 1.0, 'one': 1.0, 'moms': 1.0, 'phone': 1.0, 'come': 1.0, 'where': 1.0, 'of': 5.0, 'the': 8.0, '2': 1.0, 'for': 6.0, 'searching': 1.0, 'large': 1.0, 'between': 1.0, 'pack': 2.0, 'to': 9.0, 'diaper': 2.0, 'as': 1.0, 'was': 5.0, 'six': 1.0, 'about': 1.0, 'happened': 1.0, 'purse': 1.0, 'spend': 1.0, 'little': 1.0, 'two': 2.0, 'nice': 1.0, 'comfortable': 1.0, 'great': 1.0, 'long': 2.0, 'on': 5.0, 'just': 2.0, 'stuff': 1.0, 'much': 1.0, 'put': 2.0, 'would': 1.0, 'either': 1.0, 'boy': 1.0, 'weeks': 1.0, 'back': 3.0, 'daughter': 1.0, 'any': 1.0, 'mom': 2.0, 'style': 3.0, 'own': 1.0, 'have': 2.0, 'jumbled': 1.0, 'before': 1.0, 'purchasing': 1.0, 'looking': 1.0, 'light': 1.0, 'bag': 7.0, 'using': 1.0, 'made': 1.0, 'which': 1.0, 'tote': 1.0, 'left': 1.0, 'everything': 2.0, 'in': 3.0, 'it': 8.0, 'hard': 1.0, 'while': 1.0, 'another': 1.0, 'organized': 1.0, 'trying': 1.0, 'kiddos': 1.0, 'triple': 1.0, 'carry': 1.0, 'whieght': 1.0, 'deal': 1.0, 'many': 1.0, 'with': 3.0, 'pockets': 1.0, 'instead': 1.0, 'even': 2.0, 'easier': 1.0, 'right': 2.0, 'shoulder': 1.0, 'don': 1.0, 'life': 1.0, 'periods': 1.0, 'plus': 1.0, 'are': 1.0, 'be': 2.0, 'stays': 2.0, 'built': 1.0, 'mess': 1.0, 'something': 1.0, 'straps': 1.0, 'fast': 1.0, 'i': 14.0, 'well': 1.0}
Word element => {'for': 1.0, 'in': 1.0, 'spaces': 1.0, 'price': 1.0, 'storage': 1.0, 'different': 1.0, 'buy': 1.0, 'so': 1.0, 'and': 2.0, 'outside': 1.0, 'very': 1.0, 'the': 3.0, 'great': 1.0, 'helpful': 1.0, 'this': 1.0, 'style': 1.0, 'pack': 1.0, 'quality': 1.0, 'back': 1.0, 'an': 1.0, 'many': 1.0, 'is': 1.0, 'was': 1.0, 'bag': 1.0, 'amazing': 1.0}
Word element => {'repaired': 1.0, 'not': 1.0, 'could': 1.0, 'and': 1.0, 'fall': 1.0, 'be': 1.0, 'to': 1.0, 'liner': 1.0, 'on': 1.0, 'ripped': 1.0, 'out': 2.0, 'both': 1.0, 'sides': 1.0, 'of': 1.0, 'strap': 1.0, 'inside': 1.0, 'causing': 1.0, 'foam': 1.0, 'shoulder': 1.0}
Word element => {'glad': 1.0, 'am': 1.0, 'options': 1.0, 'organizational': 1.0, 'things': 1.0, 'to': 1.0, 'access': 1.0, 'like': 1.0, 'ask': 1.0, 'baby': 1.0, 'my': 1.0, 'go': 1.0, 'bag': 2.0, 'everywhere': 1.0, 'great': 1.0, 'the': 1.0, 'diaper': 1.0, 'love': 1.0, 'with': 2.0, 'this': 2.0, 'it': 2.0, 'pockets': 1.0, 'i': 6.0, 'many': 1.0, 'people': 1.0, 'did': 1.0, 'ordered': 1.0, 'spacious': 1.0, 'cute': 1.0, 'where': 1.0, 'and': 3.0, 'comfy': 1.0, 'me': 1.0, 'get': 1.0, 'sturdy': 1.0}
Word element => {'them': 1.0, 'during': 1.0, 'of': 1.0, 'up': 1.0, 'banana': 1.0, 'use': 1.0, 'wetness': 1.0, 'diapers': 2.0, 'as': 1.0, 'day': 1.0, 'night': 2.0, 'i': 1.0, 'time': 1.0, 'and': 1.0, 'charlie': 1.0, 'to': 1.0, 'for': 1.0, 'love': 1.0, '2': 1.0, 'these': 2.0, 'great': 1.0, 'the': 1.0, 'fit': 1.0, 'have': 1.0, 'stand': 1.0, 'nighttime': 1.0}
Word element => {'two': 1.0, 'does': 1.0, 'extra': 1.0, 'even': 1.0, 'a': 1.0, 'doesn': 1.0, 'hour': 1.0, 'old': 1.0, 'nap': 1.0, 'this': 1.0, 't': 1.0, 'adding': 1.0, 'my': 1.0, 'overnight': 1.0, 'inserts': 1.0, 'diaper': 1.0, 'for': 1.0, 'last': 2.0, '19': 1.0, 'it': 1.0, 'month': 1.0}
Word element => {'many': 1.0, 'are': 1.0, 'because': 1.0, 'cloth': 1.0, 'kind': 1.0, 'used': 1.0, 'hand': 1.0, 'manufacturer': 1.0, 'making': 1.0, 'there': 1.0, 'instead': 1.0, 'move': 1.0, 'come': 1.0, 'stitching': 1.0, 'stink': 1.0, 'leg': 1.0, 'of': 3.0, 'some': 1.0, 'wash': 1.0, 'with': 2.0, 'away': 2.0, 'right': 2.0, 'washed': 1.0, 'received': 1.0, 'though': 1.0, 'to': 5.0, 'had': 1.0, 'it': 8.0, 'lady': 1.0, 'this': 3.0, 'use': 2.0, 'just': 2.0, 'by': 2.0, 'am': 1.0, 'when': 3.0, 'the': 5.0, 'diapers': 1.0, 'didn': 1.0, 'far': 1.0, 'repaired': 1.0, 'diaper': 3.0, 'glad': 1.0, 'too': 1.0, 'and': 4.0, 'tall': 1.0, 'comes': 1.0, 'around': 1.0, 'say': 1.0, 'is': 2.0, 'own': 1.0, 'next': 1.0, 'that': 5.0, 'biggest': 1.0, 'my': 1.0, 'size': 1.0, 'or': 1.0, 'good': 1.0, 'i': 11.0, 'started': 1.0, 'night': 1.0, 'one': 3.0, 'for': 3.0, 'out': 2.0, 'newborn': 1.0, 'toddler': 1.0, 'can': 1.0, '27lbs': 1.0, 'but': 1.0, 'about': 2.0, 'm': 1.0, '32': 1.0, '34': 1.0, 'brand': 1.0, 'makes': 1.0, 'so': 2.0, 'time': 2.0, 'chance': 1.0, 'him': 1.0, 'could': 1.0, 't': 1.0, 'a': 4.0, 's': 1.0, 'only': 1.0, 'try': 3.0, 'much': 1.0, 'bulk': 1.0, 'day': 1.0, 'have': 1.0, 'must': 1.0}
Word element => {'wash': 1.0, 'cycles': 1.0, 'through': 1.0, 'buy': 1.0, 'to': 1.0, 'old': 1.0, 'lb': 1.0, '24': 2.0, 'charlie': 1.0, 'and': 4.0, 'use': 1.0, 'allowing': 1.0, 'this': 2.0, 'month': 1.0, 'it': 1.0, 'have': 2.0, 'so': 1.0, 'time': 1.0, 'night': 1.0, 'still': 1.0, 'i': 3.0, 'two': 1.0, 'about': 1.0, 'no': 1.0, 'hemp': 1.0, 'petite': 1.0, 'since': 1.0, 'we': 1.0, 'thirsties': 1.0, 'a': 2.0, 'mostly': 1.0, 'using': 1.0, 'for': 2.0, 'microfiber': 1.0, 'even': 1.0, 'diaper': 2.0, 'the': 2.0, 'is': 1.0, 'more': 1.0, 'leaks': 1.0, 'had': 1.0, 'leaking': 1.0, 'was': 2.0, 'tight': 2.0, 'my': 2.0, 'banana': 1.0, 'daughter': 1.0, 'third': 1.0, 'out': 2.0, 'of': 2.0, 'top': 1.0, 'inserts': 2.0, 'though': 1.0, 'snapped': 1.0, 'sometimes': 1.0, 'larger': 1.0, 'enough': 1.0, 'legs': 1.0, 'but': 1.0, 'snaps': 1.0, 'stuff': 1.0, 'on': 1.0}
Word element => {'find': 1.0, 'sturdy': 1.0, 'that': 1.0, 'solution': 1.0, 'budget': 1.0, 'up': 1.0, 'good': 1.0, 'expect': 1.0, 'or': 1.0, 'something': 1.0, 'looking': 1.0, 'if': 2.0, 'tell': 1.0, 'crack': 1.0, 'even': 2.0, 'scratches': 1.0, 'putting': 1.0, 'problem': 1.0, 'have': 2.0, 'should': 2.0, 'somewhat': 1.0, 'are': 1.0, 'long': 2.0, 'as': 2.0, 'quality': 1.0, 'probably': 1.0, 'bad': 1.0, 'steal': 1.0, 'was': 1.0, 'an': 1.0, 'looks': 1.0, 'it': 6.0, 'this': 2.0, 'tiny': 1.0, 'only': 1.0, 'handy': 2.0, 'pretty': 1.0, 'people': 1.0, 'he': 1.0, 'door': 1.0, 'hubby': 1.0, 'my': 1.0, 'the': 3.0, 'nice': 1.0, 'great': 2.0, 'price': 1.0, 'no': 1.0, 'about': 1.0, 'receiving': 1.0, 'for': 7.0, 'product': 1.0, 'otherwise': 1.0, 'i': 1.0, 'little': 1.0, 'very': 2.0, 'shipping': 1.0, 'after': 1.0, 'like': 1.0, 'fast': 1.0, 'term': 1.0, 'so': 2.0, 'time': 1.0, 'together': 2.0, 'hour': 1.0, 'am': 1.0, 'complained': 1.0, 'you': 6.0, 'and': 4.0, 'but': 1.0, '80': 1.0, 'did': 1.0, 'temporary': 2.0, 'drawer': 1.0, 'short': 1.0, 'need': 2.0, 'me': 1.0, 'not': 3.0, 'is': 5.0, '00': 1.0, 'couple': 1.0, 'out': 1.0, 'could': 1.0, 'a': 9.0, 'piece': 3.0, 'suprised': 1.0, 'of': 4.0, 'your': 2.0, 'put': 1.0, 'furniture': 3.0}
Word element => {'her': 1.0, 'addition': 1.0, 'changer': 1.0, 'kalani': 1.0, 'davinci': 1.0, 'for': 1.0, 'daughter': 1.0, 'all': 1.0, 'product': 1.0, 'to': 2.0, 'we': 1.0, 'a': 2.0, 'our': 2.0, 'is': 1.0, 'room': 2.0, 'son': 1.0, 'the': 1.0, 'such': 1.0, 'great': 2.0, 'it': 1.0, 'delta': 2.0, 'been': 2.0, 'collection': 1.0, 's': 2.0, 'super': 1.0, 'and': 1.0, 'has': 2.0, 'furniture': 1.0, 'purchased': 1.0, 'sturdy': 1.0, 'compared': 1.0}
Word element => {'plus': 1.0, 'drawer': 1.0, 'the': 1.0, 'and': 1.0, 'of': 1.0, 'was': 1.0, 'but': 1.0, 'easy': 1.0, 'cover': 1.0, 'came': 1.0, 'to': 1.0, 'kind': 1.0, 'assemble': 1.0, 'it': 2.0, 'changing': 1.0, 'is': 1.0, 'require': 1.0, 'with': 1.0, 'doesn': 1.0, 'thin': 1.0, 'a': 3.0, 't': 1.0, 'pad': 1.0}
Word element => {'different': 1.0, 'kind': 1.0, 'or': 1.0, 'w': 1.0, 'out': 2.0, 'for': 1.0, 'stopping': 1.0, 'don': 1.0, 'not': 1.0, 'minor': 1.0, 'ones': 1.0, 'contoured': 1.0, 'basic': 1.0, 'come': 1.0, 'they': 1.0, 'enough': 1.0, 'pad': 1.0, 'changing': 1.0, 'better': 2.0, 'buy': 2.0, 'all': 1.0, 'to': 3.0, 'want': 1.0, 'probably': 1.0, 'both': 1.0, '34': 2.0, 'of': 3.0, '8': 1.0, 'stops': 1.0, '5': 1.0, 'mechanism': 1.0, 'one': 1.0, 'months': 1.0, 'helpful': 1.0, 'annoying': 2.0, 'it': 5.0, 'with': 3.0, 'only': 2.0, 'pull': 1.0, 'together': 1.0, 'was': 1.0, 'sturdiness': 1.0, '1': 1.0, 'and': 4.0, 'hands': 1.0, 'the': 7.0, 'i': 4.0, 'old': 1.0, 'inches': 1.0, 'very': 2.0, 'year': 1.0, 'pregnant': 1.0, '2': 2.0, 'but': 2.0, 'will': 1.0, 'like': 2.0, 'table': 2.0, 'drawer': 2.0, 'is': 3.0, 'on': 1.0, '3': 1.0, 'impressed': 1.0, 'put': 1.0, 'stuff': 1.0, 'fine': 1.0, 'have': 2.0, 'small': 2.0, 'quality': 1.0, 'baby': 1.0, 'storage': 1.0, 'few': 2.0, 'things': 1.0, 'in': 1.0, 't': 1.0, 'a': 5.0, 's': 1.0, 'plenty': 1.0, 'boys': 1.0, 'you': 2.0, 'thing': 1.0, 'shelves': 1.0, 'below': 1.0}
Word element => {'ones': 1.0, 'that': 1.0, 'be': 1.0, 'one': 1.0, 'buying': 1.0, 'at': 1.0, 'not': 1.0, 'very': 1.0, 'table': 1.0, 'however': 1.0, 'issue': 1.0, 'update': 1.0, 'back': 1.0, 'send': 1.0, 'now': 1.0, 'unscrew': 1.0, 'offer': 1.0, 'but': 1.0, 'can': 1.0, 'what': 1.0, 'see': 1.0, 'together': 1.0, 'all': 1.0, 'to': 2.0, 'its': 1.0, 'is': 2.0, 'm': 1.0, 'front': 1.0, 'impossible': 1.0, 't': 1.0, 'a': 1.0, 'we': 1.0, 'have': 1.0, 'just': 1.0, 'holiday': 1.0, 'will': 2.0, 'looks': 3.0, 'it': 4.0, 'and': 5.0, 'parts': 1.0, 'recommend': 1.0, 'unfortunately': 1.0, 'they': 1.0, 'cause': 1.0, 'defective': 1.0, 'the': 5.0, 'are': 1.0, 'keeper': 1.0, 'from': 1.0, 'drawer': 2.0, 'nice': 2.0, 'i': 2.0, 'otherwise': 1.0, 'call': 1.0, 'cheap': 1.0, 'product': 1.0, 'unglued': 1.0, 'board': 1.0, 'sturdy': 1.0, 'happen': 1.0, 'already': 1.0, 'want': 1.0, 'everything': 2.0, 'yesterday': 1.0, 'after': 1.0, 'set': 1.0, 'don': 1.0, 'up': 1.0, 'received': 1.0, 'tomorrow': 1.0, 'on': 1.0, 'put': 1.0, 'bummed': 1.0, 'except': 1.0, 'no': 1.0, 'aware': 1.0, 'really': 1.0, 'customer': 1.0, 'itself': 1.0, 'in': 1.0, 'service': 1.0}
Word element => {'at': 1.0, 'though': 1.0, 'overall': 1.0, 'a': 1.0, 'no': 1.0, 'labeled': 1.0, 'all': 1.0, 'to': 2.0, 'as': 2.0, 'changing': 2.0, 'very': 1.0, 'the': 4.0, 'were': 2.0, 'parts': 1.0, 'pieces': 2.0, 'missing': 1.0, 'also': 1.0, 'is': 3.0, 'not': 5.0, 'difficult': 1.0, 'bad': 2.0, 'have': 1.0, 'price': 1.0, 'clearly': 1.0, 'downside': 1.0, 'table': 2.0, 'quality': 1.0, 'this': 1.0, 'with': 1.0, 'some': 1.0, 'decent': 1.0, 'pad': 2.0, 'cut': 1.0, 'perfectly': 1.0, 'too': 1.0, 'and': 2.0, 'purchase': 1.0, 'flawlessly': 1.0, 'so': 1.0, 'they': 2.0, 'did': 1.0, 'better': 1.0, 'should': 1.0, 'included': 1.0, 'on': 1.0, 'make': 1.0, 'together': 1.0, 'thin': 1.0, 'for': 1.0, 'assemble': 1.0, 'fit': 1.0, 'cheap': 1.0, 'sure': 1.0}
Word element => {'separating': 1.0, 'wood': 1.0, 'without': 1.0, 'together': 1.0, 'pieces': 1.0, 'far': 1.0, 'thinner': 1.0, 'not': 1.0, 'does': 1.0, 'the': 3.0, 'but': 1.0, 'work': 1.0, 'put': 1.0, 'will': 1.0, 'and': 1.0, 'very': 1.0, 'nice': 1.0, 'drawer': 1.0, 'out': 1.0, 'fine': 1.0, 'looks': 1.0, 'pull': 1.0, 'hard': 1.0, 'it': 1.0, 'was': 1.0, 'to': 1.0, 'some': 1.0, 'of': 1.0}
Word element => {'amazon': 1.0, 'size': 1.0, 'same': 1.0, 'thicker': 1.0, 'contoured': 1.0, 'replacement': 1.0, 'purchasing': 1.0, 'would': 1.0, 'thin': 1.0, 'is': 4.0, 'looks': 1.0, 'i': 2.0, 'two': 2.0, 'over': 1.0, 'handy': 1.0, 'diapers': 1.0, 'pad': 2.0, 'house': 1.0, 'on': 2.0, 'put': 1.0, 'fits': 1.0, 'together': 1.0, 'grandchildren': 1.0, 'a': 1.0, 'we': 1.0, 'at': 1.0, 'keep': 1.0, 'this': 1.0, 'with': 1.0, 'unit': 1.0, 'that': 2.0, 'changing': 3.0, 'very': 3.0, 'dozen': 1.0, 'quality': 1.0, 'baby': 2.0, 'lots': 1.0, 'storage': 2.0, 'easy': 1.0, 'table': 1.0, 'which': 1.0, 'drawer': 1.0, 'for': 2.0, 'purchased': 2.0, 'our': 1.0, 'to': 2.0, 'recommend': 1.0, 'was': 1.0, 'the': 8.0, 'there': 1.0, 'of': 2.0, 'room': 2.0, 'below': 1.0, 'shelves': 1.0, 'plenty': 1.0, 'baskets': 1.0, 'wood': 1.0, 'when': 1.0, 'finish': 1.0, 'high': 1.0, 'and': 2.0, 'quite': 1.0}
Word element => {'available': 1.0, 'if': 1.0, 'color': 1.0, 'other': 1.0, 'in': 1.0, 'again': 1.0, 'buy': 1.0, 'would': 1.0, 'i': 1.0, 'match': 1.0, 'useful': 1.0, 'dishwasher': 1.0, 'and': 1.0, 'fork': 1.0, 'it': 1.0, 'great': 1.0, 'perfect': 1.0, 'safe': 1.0, 'the': 1.0, 'mocoweve': 1.0, 'is': 1.0}
Word element => {'best': 1.0, 'works': 2.0, 'on': 1.0, 'is': 1.0, 'supposed': 1.0, 'bowl': 3.0, 'it': 2.0, 'with': 3.0, 'this': 2.0, 'we': 1.0, 'other': 1.0, 'well': 1.0, 'suction': 1.0, 'that': 1.0, 'the': 3.0, 'in': 1.0, 'flat': 1.0, 'to': 1.0, 'set': 1.0, 'up': 1.0, 'bottom': 1.0, 'plastic': 1.0, 'work': 1.0, 'but': 1.0, 'bowls': 1.0, 'found': 1.0}
Word element => {'it': 1.0, 'why': 1.0, 't': 2.0, 'doesn': 1.0, 'don': 1.0, 'and': 1.0, 'instructions': 1.0, 'better': 1.0, 'read': 1.0, 'i': 1.0, 'one': 1.0, 'year': 1.0, 'old': 1.0, 'easily': 1.0, 'moved': 1.0, 'my': 1.0, 'the': 3.0, 'get': 1.0, 'bowl': 1.0, 'off': 1.0, 'cup': 1.0, 'of': 1.0, 'suction': 2.0}
Word element => {'a': 1.0, 's': 1.0, 'herself': 1.0, 'over': 1.0, 'all': 1.0, 'food': 1.0, 'but': 1.0, 'chair': 1.0, 'it': 1.0, 'wouldn': 1.0, 'spilled': 1.0, 'how': 1.0, 'stick': 1.0, 'to': 3.0, 'stuck': 1.0, 'suction': 1.0, 'high': 1.0, 'pull': 1.0, 'cup': 1.0, 'my': 1.0, 'bowl': 2.0, 'daughter': 1.0, 'mess': 1.0, 'great': 1.0, 't': 1.0, 'the': 4.0, 'figured': 1.0, 'off': 1.0, 'out': 1.0, 'within': 1.0, 'maker': 1.0, '5': 1.0, 'minutes': 1.0, 'and': 1.0}
Word element => {'easily': 1.0, 'fairly': 1.0, 'his': 1.0, 'curious': 1.0, 'thing': 1.0, 'to': 1.0, 'was': 1.0, 'when': 1.0, 'i': 1.0, 'rip': 1.0, 'bowl': 2.0, 'my': 1.0, 'first': 1.0, 'it': 1.0, 'thought': 1.0, 'tray': 1.0, 'is': 1.0, 'best': 1.0, 'son': 1.0, 'very': 1.0, 'and': 1.0, 'the': 3.0, 'figured': 1.0, 'off': 1.0, 'arrived': 1.0, 'out': 1.0, 'how': 1.0}
Word element => {'try': 1.0, 'on': 1.0, 'it': 1.0, 'works': 1.0, 'out': 1.0, 'found': 1.0, 'bowls': 1.0, 'and': 2.0, 'are': 1.0, 'the': 4.0, 'second': 1.0, 'really': 1.0, 'there': 1.0, 'of': 1.0, 'cup': 1.0, 'i': 3.0, 'one': 1.0, 'cups': 1.0, 'wish': 1.0, 'in': 1.0, 'suction': 2.0, 'lids': 1.0, 'came': 1.0, 'that': 2.0, 'handy': 1.0, 'they': 1.0, 'other': 1.0, 'colors': 1.0, 'am': 1.0, 'work': 1.0, 'but': 1.0, 'grateful': 1.0}
Word element => {'bottom': 1.0, 'smooth': 1.0, 'base': 1.0, '9': 1.0, 'sticks': 1.0, 'market': 1.0, 'reviews': 1.0, 'dd': 1.0, 'that': 2.0, 'i': 1.0, 'tries': 1.0, 'suction': 1.0, 'many': 1.0, 'tray': 1.0, 'is': 1.0, 'given': 1.0, 'of': 1.0, 'surprised': 1.0, 'but': 1.0, 'was': 1.0, 'doesn': 1.0, 'my': 1.0, 'pull': 1.0, 'high': 1.0, 'the': 4.0, 'budge': 1.0, 'on': 1.0, 'bowl': 1.0, 'bowls': 1.0, 'other': 1.0, 'this': 1.0, 'month': 1.0, 'it': 2.0, 'with': 1.0, 'poor': 1.0, 'well': 1.0, 'has': 1.0, 'her': 2.0, 'works': 1.0, 'best': 1.0, 'off': 1.0, 'chair': 1.0, 'bonus': 1.0, 'to': 1.0, 'any': 1.0, 'how': 1.0, 'plastic': 1.0, 'a': 1.0, 't': 1.0, 'dish': 1.0}
Word element => {'him': 1.0, 'mad': 1.0, 'and': 1.0, 'off': 1.0, 'made': 1.0, 'tried': 1.0, 'again': 1.0, 'couldn': 1.0, 'would': 1.0, 'get': 1.0, 'purchase': 1.0, 'i': 1.0, 'to': 1.0, 'old': 1.0, 'our': 1.0, 't': 1.0, 'stuck': 1.0, 'grandson': 1.0, 'really': 1.0, '1': 1.0, 'year': 1.0}
Word element => {'at': 1.0, 'pocket': 1.0, 'these': 1.0, 'i': 1.0, 'keeps': 1.0, 'works': 1.0, 'great': 1.0, 'grandson': 1.0, 'like': 1.0, 'and': 2.0, 'well': 1.0, 's': 1.0, 'bottom': 1.0, 'off': 1.0, 'clean': 1.0, 'bibs': 1.0, 'clothes': 1.0, 'floor': 1.0, 'the': 4.0, 'do': 1.0, 'food': 1.0}
Word element => {'to': 1.0, 'easy': 1.0, 'proof': 1.0, 'are': 1.0, 'i': 2.0, 'have': 1.0, 'clean': 1.0, 'been': 1.0, 'wet': 1.0, 'bibs': 1.0, 'using': 1.0, 'them': 1.0, 'pretty': 1.0, 'these': 1.0, 'they': 1.0, 'bought': 1.0, 'since': 1.0, 'and': 2.0}
Word element => {'grandma': 1.0, 'some': 1.0, 'hint': 2.0, 'would': 1.0, 'clean': 1.0, 'love': 2.0, 'this': 1.0, 'to': 1.0, 'designs': 1.0, 'like': 1.0, 'and': 2.0, 'more': 1.0, 'my': 1.0, 'lol': 1.0, 'eater': 1.0, 'bibs': 1.0, 'cute': 1.0, 'bright': 1.0, 'colors': 1.0, 'easy': 1.0, 'perfect': 1.0, 'messy': 1.0, 'for': 1.0}
Word element => {'on': 1.0, 'diaper': 1.0, 'the': 6.0, 'these': 1.0, 'in': 1.0, 'also': 1.0, 'clean': 1.0, 'things': 1.0, 'keep': 1.0, 'better': 1.0, 'to': 5.0, 'when': 1.0, 'i': 3.0, 'handle': 1.0, 'love': 2.0, 'for': 1.0, 'one': 1.0, 'however': 1.0, 'harder': 1.0, 'cover': 2.0, 'bag': 1.0, 'that': 2.0, 'a': 1.0, 'they': 1.0, 'makes': 1.0, 'sort': 1.0, 'flopping': 1.0, 'have': 1.0, 'locks': 1.0, 'and': 2.0, 'because': 1.0, 'just': 1.0, 'flips': 1.0, 'bottom': 2.0, 'up': 1.0, 'of': 1.0, 'around': 3.0, 'is': 1.0, 'wish': 1.0, 'it': 3.0, 'secured': 1.0, 'ends': 1.0, 'lid': 1.0, 'my': 1.0, 'little': 1.0, 'rolling': 1.0, 'which': 1.0, 'hold': 1.0}
Word element => {'their': 1.0, 'off': 1.0, 'than': 1.0, 'rather': 1.0, 'like': 1.0, 'handy': 1.0, 'also': 1.0, 'is': 1.0, 'it': 1.0, 'car': 1.0, 'have': 1.0, 'must': 1.0, 'easy': 1.0, 'are': 2.0, 'they': 1.0, 'definitely': 1.0, 'close': 1.0, 'now': 1.0, 'had': 1.0, 'these': 2.0, 'diaper': 2.0, 'happy': 1.0, 'cup': 1.0, 'a': 1.0, 'we': 2.0, 'other': 1.0, 'put': 1.0, 'wash': 1.0, 'discover': 1.0, 'home': 1.0, 'recommend': 1.0, 'store': 1.0, 'who': 1.0, 'toddlers': 1.0, 'trips': 1.0, 'at': 1.0, 'them': 2.0, 'wed': 1.0, 'dishwasher': 1.0, 'in': 2.0, 'would': 1.0, 'munchkin': 1.0, 'were': 1.0, 'enjoyed': 1.0, 'the': 6.0, 'without': 1.0, 'but': 1.0, 'can': 1.0, 'save': 1.0, 'my': 1.0, 'lid': 2.0, 'snack': 5.0, 'to': 5.0, 'cups': 1.0, 'and': 4.0, 'really': 1.0, 'herself': 1.0, 'bag': 1.0, 'leftover': 1.0, 'graze': 1.0, 'for': 4.0, 'one': 1.0, 'little': 1.0, 'feeding': 1.0, 'enjoys': 1.0, 'bags': 1.0, 'later': 2.0, 'from': 1.0, 'this': 1.0, 'thrilled': 1.0, 'i': 2.0, 'finish': 1.0, 'easily': 1.0, 'am': 1.0, 'be': 1.0, 'able': 1.0}
Word element => {'functions': 1.0, 'still': 1.0, 'unsuccessful': 1.0, 'were': 1.0, 'through': 1.0, 'worry': 1.0, 'to': 2.0, 'eat': 1.0, 'attempted': 1.0, 'and': 5.0, 'as': 1.0, 'take': 1.0, 's': 1.0, 'also': 1.0, 'can': 1.0, 'not': 1.0, 'have': 2.0, 'we': 1.0, 'my': 2.0, 'out': 1.0, 'child': 1.0, 'works': 1.0, 'both': 1.0, 'it': 5.0, 'durable': 1.0, 'dumping': 1.0, 'fairly': 1.0, 'of': 1.0, 'about': 2.0, 'dogs': 1.0}
Word element => {'mode': 1.0, 'moves': 1.0, 'set': 1.0, 'certainly': 1.0, 'bottom': 1.0, 'at': 1.0, 'attached': 1.0, 'is': 1.0, 'into': 1.0, 'that': 1.0, 'love': 1.0, 'will': 1.0, 'also': 1.0, 'contents': 3.0, 'and': 2.0, 'get': 2.0, 'had': 1.0, 'mo': 1.0, 'snacking': 1.0, 'was': 1.0, 'would': 1.0, 'ones': 1.0, 'the': 9.0, 'these': 1.0, 'pulling': 1.0, 'i': 2.0, 'old': 1.0, 'end': 1.0, 'lids': 1.0, 'still': 2.0, 'catchers': 1.0, 'tried': 1.0, '22': 1.0, 'it': 1.0, 'cover': 1.0, 'off': 1.0, 'another': 1.0, 'lid': 2.0, 'stays': 1.0, 'sister': 1.0, 'because': 2.0, 'just': 1.0, 'n': 1.0, 'not': 1.0, 'our': 1.0, 'twist': 1.0, 'snack': 1.0, 'kept': 1.0, 'up': 1.0, 'of': 1.0, 'floor': 1.0, 'we': 1.0, 'a': 1.0, 'slip': 1.0, 'portable': 1.0, 'on': 2.0, 'toddler': 1.0, 'can': 1.0, 'but': 1.0, 'her': 2.0, 'hand': 1.0, 'when': 1.0, 'easily': 1.0, 'proof': 1.0, 'out': 1.0, 'in': 1.0}
Word element => {'decision': 1.0, 'someone': 1.0, 'hope': 1.0, 'bat': 1.0, 'speak': 1.0, 'something': 1.0, 'choose': 1.0, 'might': 1.0, 'hard': 1.0, 'work': 1.0, 'how': 3.0, 'don': 3.0, 'use': 3.0, 'meanwhile': 1.0, 'up': 1.0, 'put': 1.0, 'messes': 1.0, 'do': 1.0, 'they': 3.0, 'stacking': 1.0, 'or': 2.0, 'down': 1.0, 'several': 1.0, 'great': 1.0, 'if': 2.0, 'section': 1.0, 'pop': 1.0, 'will': 1.0, 'could': 2.0, 'sturdy': 1.0, 'graduate': 1.0, 'be': 2.0, 'it': 17.0, 'thought': 1.0, 'thrown': 1.0, 'customer': 1.0, 'their': 2.0, 'soft': 1.0, 'slightly': 1.0, 'works': 1.0, 'other': 5.0, 'flatter': 1.0, 'an': 1.0, 'should': 1.0, 'address': 1.0, 'store': 1.0, 'market': 1.0, 'now': 1.0, 'problem': 1.0, 'take': 1.0, 'see': 3.0, 'yes': 2.0, 'off': 5.0, 'outgrow': 2.0, 'couldn': 1.0, 'older': 2.0, 'doing': 1.0, 'process': 1.0, 'the': 18.0, 'writing': 1.0, 'easy': 2.0, 'this': 4.0, 'then': 2.0, 'only': 4.0, 'company': 1.0, 'quickly': 1.0, 'with': 3.0, 'snack': 2.0, 'break': 1.0, 'one': 3.0, 'too': 2.0, 'yet': 1.0, 'love': 1.0, 'he': 1.0, 'product': 1.0, 'stars': 1.0, 'five': 1.0, 'container': 2.0, 're': 1.0, 'didn': 2.0, 'themselves': 1.0, 'right': 1.0, 'to': 12.0, 'write': 1.0, 'but': 3.0, 'doesn': 1.0, 'm': 1.0, 's': 11.0, 't': 8.0, 'ago': 1.0, 'a': 11.0, 'small': 3.0, 'and': 7.0, 'just': 2.0, 'on': 2.0, 'serious': 1.0, 'variety': 1.0, 'does': 1.0, 'single': 1.0, 'made': 2.0, 'which': 4.0, 'caveat': 1.0, 'that': 12.0, 'making': 1.0, 'easily': 2.0, 'because': 1.0, 'problems': 1.0, 'had': 2.0, 'i': 13.0, 'you': 8.0, 'when': 3.0, 'need': 2.0, 'also': 1.0, 'found': 1.0, 'have': 8.0, 'version': 1.0, 'enough': 1.0, 'pick': 1.0, 'anything': 1.0, 'parts': 1.0, 'all': 1.0, 'ones': 2.0, 'saw': 1.0, 'ages': 2.0, 'these': 2.0, 'some': 1.0, 'already': 1.0, 'those': 1.0, 'throw': 1.0, 'including': 1.0, 'issues': 2.0, 'my': 3.0, 'back': 2.0, 'son': 2.0, 'needed': 1.0, 'same': 1.0, 'else': 1.0, 'kids': 3.0, 'month': 2.0, 'rubber': 1.0, 'keeps': 1.0, 'pretty': 1.0, 'any': 1.0, 'snacks': 1.0, 'them': 2.0, 'anyway': 1.0, 'has': 1.0, 'about': 1.0, 'feed': 1.0, 'personally': 1.0, 'as': 2.0, 'design': 3.0, 'been': 1.0, 'lot': 1.0, 'his': 1.0, 'around': 1.0, '1': 2.0, 'bought': 1.0, 'months': 2.0, 'able': 1.0, 'get': 1.0, 'd': 1.0, 'moms': 1.0, 'for': 5.0, 'guess': 1.0, '14': 1.0, 'of': 6.0, 'old': 2.0, 'lets': 1.0, 'say': 1.0, 'solves': 1.0, '8': 1.0, 'having': 1.0, '12': 1.0, 'first': 2.0, 'helps': 1.0, 'lid': 6.0, 'balance': 1.0, 'since': 1.0, 'early': 1.0, 'figure': 1.0, 'out': 2.0, 'size': 2.0, 'large': 1.0, 'between': 1.0, 'containers': 3.0, 'not': 1.0, 'deal': 1.0, 'than': 1.0, 'there': 2.0, 'larger': 1.0, 'case': 1.0, 'big': 1.0, '16': 1.0, 'find': 1.0, 'very': 2.0, 'pops': 1.0, 'thing': 1.0, 'going': 1.0, '2': 1.0, 'clean': 1.0, 'keep': 1.0, 'in': 4.0, 'together': 1.0, 'aware': 1.0, 'like': 1.0, 'review': 1.0, 'currently': 1.0, 'would': 1.0, 'is': 4.0, 'can': 2.0, 'munchkin': 1.0, 'perfect': 1.0}
Word element => {'older': 1.0, 'little': 1.0, 'is': 1.0, 'when': 1.0, 'again': 1.0, 'try': 1.0, 'and': 1.0, 'his': 1.0, 'he': 3.0, 'it': 1.0, 'toddler': 1.0, 'but': 1.0, 'for': 1.0, 'love': 1.0, 'size': 1.0, 'opening': 1.0, 'sticking': 1.0, 'didn': 1.0, 'also': 1.0, 'i': 3.0, 'not': 1.0, 'just': 1.0, 'they': 1.0, 'has': 1.0, 'however': 1.0, 'folds': 1.0, 'did': 1.0, 'like': 1.0, 'hand': 1.0, 'keep': 2.0, 'the': 3.0, 'snack': 2.0, 'are': 1.0, 'fresh': 1.0, 'maybe': 1.0, 'flexible': 1.0, 'loved': 1.0, 'use': 1.0, 'into': 1.0, 'that': 2.0, 't': 1.0, 'a': 2.0, 'catcher': 2.0, 'resealable': 1.0, 'my': 2.0, 'cap': 1.0, 'son': 1.0, 'under': 1.0, 'this': 1.0, 'perfect': 1.0, 'wish': 1.0, 'to': 1.0, 'would': 1.0, 'them': 2.0}
Word element => {'entertainment': 1.0, 'feature': 1.0, 'play': 1.0, 'likes': 1.0, 'provides': 1.0, 'smart': 1.0, 'which': 1.0, 'a': 1.0, 'act': 1.0, 'flip': 1.0, 'up': 1.0, 'bottom': 2.0, 'previous': 1.0, 'preserve': 1.0, 'top': 3.0, 'some': 1.0, 'c': 1.0, 'my': 2.0, 'food': 1.0, 'so': 2.0, 'locks': 1.0, 'can': 2.0, 'also': 2.0, 'teeth': 1.0, 'b': 1.0, 'is': 2.0, 'version': 2.0, 'the': 4.0, 'great': 1.0, 't': 1.0, 'use': 1.0, 'pop': 1.0, 'his': 1.0, 'to': 4.0, 'as': 1.0, 'son': 2.0, 'open': 1.0, 'did': 1.0, 'like': 1.0, 'it': 1.0, 'with': 2.0, 'this': 2.0, 'he': 1.0}
Word element => {'than': 1.0, 'reason': 1.0, 'no': 1.0, 'if': 1.0, 'handle': 1.0, 'also': 1.0, 'in': 2.0, 'pleased': 1.0, 'built': 1.0, 'like': 1.0, 'then': 1.0, 'perpendicular': 1.0, 'mechanism': 2.0, 'hasn': 1.0, 'locking': 2.0, 'first': 1.0, 'at': 1.0, 'get': 1.0, 'have': 2.0, 'sippy': 1.0, 'doubles': 1.0, 'lock': 1.0, 'click': 1.0, 'has': 1.0, 'they': 1.0, 'while': 1.0, 'just': 1.0, 'that': 3.0, 'twist': 1.0, 'awesome': 1.0, 'tricky': 1.0, 'worked': 1.0, 'yet': 1.0, 'cup': 3.0, 'until': 2.0, 'my': 2.0, 'lid': 6.0, 'on': 6.0, 'of': 1.0, 'slips': 1.0, 'place': 1.0, 'the': 14.0, 'ones': 1.0, 'figured': 2.0, 'is': 1.0, 'more': 2.0, 'other': 2.0, 'share': 1.0, 'for': 2.0, 'had': 1.0, 'was': 1.0, 'all': 2.0, 'as': 1.0, 'cups': 1.0, 'our': 1.0, 'to': 4.0, 'spiller': 1.0, 'this': 2.0, 'with': 2.0, 'snack': 3.0, 'youngest': 1.0, 'pull': 1.0, 'daughter': 1.0, 'out': 2.0, '34': 4.0, 'fun': 1.0, 'clicks': 1.0, 'and': 2.0, 'dump': 1.0, 'contents': 1.0, 'presume': 1.0, 'floor': 1.0, 'bit': 1.0, 'so': 1.0, 'it': 4.0, 'she': 1.0, 't': 1.0, 's': 1.0, 'a': 3.0, 'we': 1.0, 'could': 1.0, 'you': 1.0, 'easily': 1.0, 'oh': 1.0, 'dog': 1.0, 'feature': 1.0, 'i': 2.0}
Word element => {'car': 1.0, 's': 1.0, 'in': 1.0, 'mom': 1.0, 'less': 1.0, 'design': 1.0, 'brilliant': 1.0, 'place': 1.0, 'crackers': 1.0, 'loves': 1.0, 'eating': 1.0, 'this': 1.0, 'back': 1.0, 'toddler': 1.0, 'over': 1.0, 'my': 1.0, 'are': 1.0, 'genius': 1.0, 'absolutely': 1.0, 'her': 1.0, 'cheerios': 1.0, 'of': 2.0, 'things': 1.0, 'mess': 1.0, 'the': 2.0, 't': 1.0, 'these': 1.0, 'they': 1.0, 'cheese': 1.0, 'out': 1.0, 'don': 1.0, 'and': 2.0, 'get': 1.0, 'all': 1.0}
Word element => {'could': 1.0, 'say': 1.0, 'would': 1.0, 'off': 1.0, 'lid': 1.0, 'can': 1.0, 'is': 1.0, 'when': 1.0, 'snack': 1.0, 'because': 1.0, 'use': 3.0, 'to': 3.0, 'i': 1.0, 'old': 1.0, 'no': 1.0, 'once': 1.0, 'refuses': 1.0, 'month': 1.0, 'with': 2.0, 'older': 2.0, 'he': 2.0, 'hard': 1.0, 'it': 2.0, '11': 1.0, 'get': 2.0, 'grandson': 1.0, 'my': 1.0, 'are': 1.0, 'these': 2.0, 'the': 2.0, 'problem': 1.0, 'hand': 1.0, 'out': 1.0, 'you': 1.0, 'toddler': 1.0, 'an': 1.0, 'put': 1.0, 'in': 1.0, 'they': 1.0, 'your': 1.0}
Word element => {'town': 1.0, 'on': 1.0, 'we': 1.0, 'of': 1.0, 'in': 1.0, 'handle': 1.0, 'for': 2.0, 'while': 2.0, 'bag': 1.0, 'snacks': 1.0, 'lid': 1.0, 'keeping': 2.0, 'diaper': 1.0, 'great': 1.0, 'the': 4.0, 'are': 2.0, 'dry': 1.0, 'they': 1.0, 'to': 1.0, 'out': 1.0, 'them': 1.0, 'fresh': 1.0, 'her': 1.0, 'down': 1.0, 'part': 1.0, 'with': 1.0, 'that': 1.0, 'still': 1.0, 'flips': 1.0, 'become': 1.0}
Word element => {'recommend': 1.0, 'less': 1.0, 'there': 1.0, 'open': 1.0, 'also': 1.0, 'because': 1.0, 'so': 3.0, 'base': 1.0, 'comes': 1.0, 'use': 1.0, 'highly': 1.0, 'really': 1.0, 'don': 1.0, 'perfect': 1.0, 'absolutely': 1.0, 'that': 1.0, 'been': 1.0, 'almost': 1.0, 'off': 2.0, 'snacks': 1.0, 'handle': 1.0, 'attachment': 1.0, 'needed': 2.0, 'solution': 1.0, 'came': 1.0, 'daughter': 1.0, 'easily': 1.0, 'when': 1.0, 'cups': 1.0, 'cup': 1.0, 'everywhere': 1.0, 'annoying': 1.0, 'it': 3.0, 'she': 4.0, 'remove': 1.0, 'mess': 1.0, '4': 1.0, 'i': 5.0, 'always': 1.0, 'much': 1.0, 'its': 1.0, 'lids': 2.0, 'dumping': 1.0, 'would': 1.0, 'munchkin': 1.0, 'something': 1.0, 'catchers': 1.0, 'with': 2.0, 'can': 1.0, 'but': 2.0, '2': 1.0, 'the': 4.0, 'knew': 1.0, 'these': 3.0, 'now': 2.0, 'son': 1.0, 'used': 1.0, 'her': 1.0, 'along': 1.0, 'those': 1.0, 'other': 1.0, 'have': 2.0, 'far': 1.0, 'loved': 1.0, 'lid': 2.0, 'my': 2.0, 'another': 1.0, 'snack': 2.0, 'kept': 1.0, 'of': 3.0, 'peeling': 1.0, 'right': 1.0, 'and': 2.0, 'couldn': 1.0, 'we': 1.0, 's': 4.0, 't': 3.0, 'a': 2.0}
Word element => {'them': 1.0, 'only': 1.0, 'super': 1.0, 'her': 1.0, 'soft': 1.0, 'soles': 1.0, 'able': 1.0, 'love': 1.0, 'for': 3.0, 'my': 1.0, 'are': 4.0, 'perfect': 1.0, '99': 1.0, 'great': 1.0, 'the': 1.0, 'these': 1.0, 'they': 1.0, 'to': 2.0, 'be': 1.0, 'practice': 1.0, 'daughter': 1.0, 'when': 1.0, 'walking': 1.0, '1': 1.0, 'and': 1.0, 'up': 1.0, 'we': 1.0, 'outside': 1.0, 'holding': 1.0}
Word element => {'winner': 1.0, 'one': 1.0, 'from': 1.0, 'if': 1.0, 'need': 1.0, 'bag': 1.0, 'perfectly': 1.0, 'also': 1.0, 'well': 1.0, 'nicely': 1.0, 'spoon': 1.0, 'are': 1.0, 'fork': 1.0, 'help': 1.0, 'having': 2.0, 'easily': 1.0, 'on': 1.0, 'back': 1.0, 'baby': 1.0, 'them': 1.0, 'snap': 2.0, 'off': 1.0, 'he': 1.0, 'school': 1.0, 'and': 6.0, 'his': 4.0, 'reduce': 1.0, 'whenever': 1.0, 'ability': 1.0, 'without': 1.0, 'the': 3.0, 'ask': 1.0, 'able': 1.0, 'juicy': 1.0, 'reuse': 1.0, 't': 2.0, 'we': 3.0, 'it': 2.0, 'with': 1.0, 'particular': 1.0, 'as': 1.0, 'to': 5.0, 'our': 1.0, 'food': 2.0, 'box': 2.0, 'take': 1.0, 'many': 1.0, 'like': 1.0, 'lunch': 2.0, 'containers': 1.0, 'is': 3.0, 'meets': 1.0, 'of': 1.0, 'diaper': 1.0, 'leak': 1.0, 'simply': 1.0, 'time': 1.0, 'sandwich': 1.0, 'so': 1.0, 'needs': 1.0, 'in': 3.0, 'this': 3.0, 'perfect': 1.0, 'love': 2.0, 'for': 3.0, 'fruit': 2.0, 'crackers': 1.0, 'touch': 1.0, 'separate': 2.0, 'lids': 2.0, 'doesn': 2.0, 'family': 1.0, 'fits': 2.0, 'my': 2.0, 'possible': 1.0, 'son': 1.0, 'little': 2.0, 'very': 1.0, 'keep': 1.0, 'three': 1.0, 'at': 1.0}
Word element => {'something': 1.0, 'space': 1.0, 'larger': 1.0, 'containers': 2.0, 'is': 1.0, 'container': 2.0, 'that': 1.0, 'gave': 1.0, 'what': 1.0, 'obsolete': 1.0, 'veggie': 2.0, 'made': 1.0, 'sleek': 1.0, 'great': 1.0, 'the': 3.0, 'lunch': 1.0, 'like': 1.0, 'snap': 1.0, 'and': 6.0, 'for': 2.0, 'product': 2.0, 'with': 2.0, 'looks': 1.0, 'it': 2.0, 'its': 1.0, 'poor': 1.0, 'design': 1.0, 'a': 3.0, 'we': 1.0, 'extremely': 1.0, 'difficult': 1.0, 'by': 1.0, 'just': 1.0, 'to': 1.0, 'outside': 1.0, 'another': 1.0, 'lid': 1.0, 'whole': 1.0, 'makes': 1.0, 'old': 1.0, 'after': 1.0, 'week': 1.0, 'dealing': 1.0, 'own': 1.0, 'an': 1.0, 'up': 1.0, 'fruit': 2.0, 'use': 1.0}
Word element => {'sometimes': 1.0, 'if': 1.0, 'in': 3.0, 'out': 1.0, 'do': 1.0, 'great': 1.0, 'the': 3.0, 'it': 3.0, 'doing': 1.0, 'perfect': 1.0, 'this': 1.0, 'box': 2.0, 'snap': 1.0, 'lunch': 2.0, 'is': 1.0, 'containers': 1.0, 'figure': 1.0, 'i': 2.0, 'old': 1.0, 'looms': 1.0, '5': 1.0, 'bought': 1.0, 'his': 2.0, 'even': 1.0, 'yr': 1.0, 'for': 1.0, 'yet': 1.0, 'to': 3.0, 'take': 1.0, 'and': 1.0, 'closed': 1.0, 'have': 2.0, 'small': 1.0, 'problem': 2.0, 'correctly': 1.0, 'are': 1.0, 'not': 2.0, 'just': 1.0, 'put': 1.0, 'will': 1.0, 'right': 1.0, 'fits': 1.0, 'my': 1.0, 'lid': 1.0, 'has': 1.0, 'he': 1.0, 'how': 1.0, 'we': 1.0, 'a': 1.0}
Word element => {'lock': 1.0, 'i': 1.0, '4': 1.0, 'while': 1.0, 'easy': 1.0, 'broken': 1.0, 'the': 2.0, 'already': 1.0, 'ounce': 1.0, 'twice': 1.0, 'is': 2.0, 'containers': 1.0, 'lid': 1.0, 'of': 1.0, 'used': 1.0, 'only': 1.0, 'it': 1.0, 'one': 1.0, 'for': 1.0, 'large': 1.0, 'food': 1.0, 'compartment': 1.0, 'not': 1.0, 'to': 1.0}
Word element => {'buying': 1.0, 'even': 1.0, 'own': 1.0, 'comandeering': 1.0, 'up': 1.0, 'end': 1.0, 'back': 1.0, 'go': 2.0, 'on': 1.0, 'meal': 1.0, 'only': 1.0, 'safe': 1.0, 'dishwasher': 1.0, 'while': 1.0, 'disappointed': 1.0, 'help': 1.0, 'hope': 1.0, 'taking': 1.0, 'older': 1.0, 'daycare': 1.0, 'school': 1.0, 'you': 2.0, 'flying': 1.0, 'send': 2.0, 'pop': 1.0, 't': 1.0, 'more': 1.0, 'manages': 1.0, 'little': 1.0, 'stated': 1.0, 'smushed': 1.0, 'never': 1.0, 'as': 1.0, 'diaper': 1.0, 'cooler': 1.0, 'totally': 1.0, 'container': 1.0, 'in': 3.0, 'very': 1.0, 'being': 3.0, 'an': 1.0, 'all': 1.0, 'that': 6.0, 'been': 1.0, 'box': 2.0, 'admit': 1.0, 'have': 1.0, 'went': 1.0, 'clean': 2.0, 'big': 1.0, 'great': 4.0, 'items': 1.0, 'currently': 1.0, 'can': 3.0, 'so': 1.0, 'sandwich': 1.0, 'organized': 1.0, 'and': 11.0, 'closed': 1.0, 'states': 1.0, 'him': 1.0, 'it': 11.0, 'latches': 1.0, 'this': 9.0, 'with': 1.0, 'allows': 1.0, 'eyeing': 1.0, 'is': 1.0, 'at': 1.0, 'washed': 1.0, 'since': 1.0, 'lunch': 3.0, 'looking': 1.0, 'bag': 2.0, 'using': 2.0, 'would': 1.0, 'style': 1.0, 'hand': 1.0, 'bento': 1.0, 'now': 1.0, 'had': 1.0, 'purchased': 1.0, 'when': 1.0, 'what': 1.0, 'similar': 1.0, 'recently': 1.0, 'work': 1.0, 'hard': 1.0, 'open': 3.0, 'fish': 1.0, 'they': 2.0, 'deal': 1.0, 'of': 2.0, 'the': 5.0, 'without': 2.0, 'for': 7.0, 'he': 3.0, 'love': 1.0, 'one': 2.0, 'i': 13.0, 'use': 4.0, 'fruit': 1.0, 'however': 1.0, 'easy': 3.0, 'seemed': 1.0, 'store': 1.0, 'like': 1.0, 'boxes': 1.0, 'about': 2.0, 'coupon': 1.0, 'a': 8.0, 's': 6.0, 'we': 1.0, 'local': 1.0, 'am': 1.0, 'these': 1.0, 'online': 1.0, 'probably': 1.0, 'provided': 1.0, 'difficult': 2.0, 'son': 1.0, 'product': 2.0, 'balanced': 1.0, 'child': 3.0, 'keep': 2.0, 'makes': 1.0, 'old': 1.0, 'may': 2.0, 'me': 2.0, 'my': 5.0, '18': 1.0, 'or': 3.0, 'food': 1.0, 'still': 1.0, 'if': 3.0, 'everything': 2.0, 're': 2.0, 'out': 2.0, 'proof': 1.0, 'leak': 1.0, 'think': 1.0, 'pack': 2.0, 'are': 1.0, 'completely': 1.0, 'months': 1.0, 'lids': 1.0, 'snapped': 1.0, 've': 2.0, 'down': 1.0, 'to': 13.0, 'veggies': 1.0, '1000': 1.0, 'be': 3.0, 'disposable': 1.0, 'baggies': 1.0, 'compact': 1.0, 'also': 1.0}
Word element => {'easier': 1.0, 'much': 1.0, 'things': 1.0, 'out': 1.0, 'makes': 1.0, 'we': 1.0, 'pouches': 1.0, 'food': 1.0, 'these': 1.0, 'with': 1.0, 'are': 2.0, 'the': 1.0, 'when': 1.0, 'i': 1.0, 'some': 1.0, 'keep': 1.0, 'them': 1.0, 'soooooo': 1.0, 'bag': 1.0, 'for': 1.0, 'diaper': 1.0, 'awesome': 1.0, 'in': 1.0}
Word element => {'in': 1.0, 'doesn': 1.0, 'item': 1.0, 'i': 1.0, 'whole': 1.0, 'out': 1.0, 'sitting': 1.0, 'bag': 1.0, 'came': 1.0, 'they': 1.0, 'glad': 1.0, 'eat': 1.0, 'so': 1.0, 'one': 1.0, 'using': 1.0, 'love': 1.0, 'for': 1.0, 'my': 1.0, 't': 1.0, 'the': 1.0, 'baby': 1.0, 'since': 1.0, 'with': 1.0, 'this': 1.0, 'it': 1.0, 'he': 1.0, 'always': 1.0}
Word element => {'get': 1.0, 'difficult': 1.0, 'and': 1.0, 'turn': 1.0, 'to': 2.0, 'it': 1.0, 'does': 1.0, 'is': 2.0, 'food': 1.0, 'the': 1.0, 'what': 1.0, 'needed': 1.0, 'where': 1.0, 'gets': 1.0, 'stuck': 1.0, 'in': 1.0, 'out': 1.0, 'connects': 1.0, 'space': 1.0}
Word element => {'getting': 1.0, 'have': 1.0, 'stuck': 1.0, 'wait': 1.0, 'however': 1.0, 'get': 2.0, 'could': 1.0, 'a': 2.0, 'through': 1.0, 'it': 1.0, 'pushing': 1.0, 'and': 2.0, 'harder': 1.0, 'water': 1.0, 'warm': 1.0, 'pouch': 1.0, 'much': 1.0, 'empty': 1.0, 'few': 1.0, 'by': 1.0, 'time': 1.0, 'so': 1.0, 'after': 1.0, 'pouches': 1.0, 'of': 2.0, 'mentioned': 1.0, 'immediately': 1.0, 'attach': 1.0, 'the': 4.0, 'great': 1.0, 'these': 1.0, 'ones': 1.0, 'several': 2.0, 'all': 1.0, 'to': 3.0, 'spoons': 1.0, 'they': 1.0, 'you': 2.0, 'times': 1.0, 'easily': 2.0, 'road': 1.0, 'traveling': 1.0, 'when': 1.0, 'or': 1.0, 'will': 1.0, 'homemade': 1.0, 'does': 1.0, 'brands': 1.0, 'even': 1.0, 'leftover': 1.0, 'with': 1.0, 'convenient': 1.0, 'that': 2.0, 'i': 4.0, 'on': 1.0, 'put': 1.0, 'food': 4.0, 'but': 1.0, 'my': 1.0, 'rinse': 1.0, 'filling': 1.0, 'own': 1.0, 'in': 1.0, 'are': 1.0, 'reviewers': 1.0, 'baby': 2.0, 'them': 5.0, 'different': 1.0, 'clean': 2.0, 'refillable': 1.0, 'out': 2.0, 'rinsed': 1.0, 'if': 2.0, 'being': 1.0, 'hard': 1.0, 'found': 1.0, 'using': 1.0}
Word element => {'but': 1.0, 'like': 1.0, 'pouched': 1.0, 'baby': 1.0, 'nourish': 1.0, 'remove': 1.0, 'you': 1.0, 'if': 1.0, 'even': 1.0, 'out': 1.0, 'not': 1.0, 'difficult': 1.0, 'very': 1.0, 'canal': 1.0, 'cap': 1.0, 'immediately': 1.0, 'of': 1.0, 'is': 1.0, 'really': 2.0, 'with': 2.0, 'in': 1.0, 'stuck': 1.0, 'having': 1.0, 'compatible': 1.0, 'which': 1.0, 'idea': 1.0, 'a': 2.0, 'close': 1.0, 'these': 1.0, 'the': 4.0, 'using': 1.0, 'liked': 1.0, 'to': 2.0, 'store': 1.0, 'i': 3.0, 'when': 1.0, 'get': 1.0, 'and': 2.0, 'spoon': 3.0, 'lock': 1.0, 'bought': 1.0, 'pouches': 2.0, 'however': 1.0, 'food': 2.0, 'purchased': 1.0, 'got': 1.0}
Word element => {'ok': 1.0, 'just': 1.0, 'anything': 1.0, 'is': 1.0, 'for': 1.0, 'hole': 1.0, 'the': 2.0, 'out': 1.0, 'foods': 1.0, 'up': 1.0, 'too': 1.0, 'where': 1.0, 'comes': 1.0, 'chunks': 1.0, 'smoothly': 1.0, 's': 1.0, 'tiny': 1.0, 'pureed': 1.0, 'small': 1.0, 'food': 1.0, 'else': 1.0, 'so': 1.0, 'except': 1.0, 'even': 1.0, 'it': 1.0, 'clog': 1.0, 'spoon': 1.0}
Word element => {'out': 1.0, 'extensive': 1.0, 'know': 1.0, 'recent': 1.0, 'appreciate': 1.0, 'we': 1.0, 'our': 1.0, 'important': 1.0, 'very': 1.0, 'free': 1.0, 'bpa': 1.0, 'plastics': 1.0, 'opinion': 1.0, 'will': 3.0, 'plus': 1.0, 'are': 4.0, 'individual': 1.0, 'biggest': 1.0, 'that': 3.0, 'combination': 1.0, 'used': 2.0, 'shower': 2.0, 'have': 1.0, 'not': 1.0, 'quite': 1.0, 'my': 5.0, 'own': 1.0, 'product': 1.0, 'products': 2.0, 'well': 1.0, 'i': 3.0, 'etc': 1.0, 'in': 3.0, 'regular': 1.0, 'family': 2.0, 'perfect': 1.0, 'this': 6.0, 'full': 1.0, 'gift': 1.0, 'am': 1.0, 'staples': 1.0, 'and': 3.0, 't': 1.0, 'extensively': 1.0, 'a': 7.0, 'attention': 1.0, 'of': 5.0, 'the': 11.0, 'great': 3.0, 's': 1.0, 'chopping': 1.0, 'is': 5.0, 'dishwasher': 1.0, 'processor': 1.0, 'it': 1.0, 'one': 1.0, 'yet': 1.0, 'for': 5.0, 'daughter': 2.0, 'any': 1.0, 'all': 1.0, 'as': 2.0, 'to': 4.0, 'many': 1.0, 'she': 3.0, 'baby': 5.0, 'does': 1.0, 'sized': 1.0, 'having': 2.0, 'matter': 1.0, 'than': 1.0, 'time': 1.0, 'use': 1.0, 'her': 3.0, 'smaller': 1.0, 'saving': 2.0, 'food': 5.0, 'four': 2.0, 'so': 1.0, 'can': 1.0, 'speed': 1.0, 'especially': 1.0, 'things': 2.0, 'faster': 1.0, 'spent': 1.0, 'chopper': 2.0, 'with': 1.0, 'knife': 1.0, 'get': 1.0, 'mill': 1.0, 'easier': 1.0, 'carrots': 1.0, 'has': 1.0, 'always': 2.0, 'babies': 2.0, 'cube': 1.0, 'pan': 1.0, 'wants': 1.0, 'on': 1.0, 'make': 1.0, 'stove': 1.0, 'up': 1.0, 'less': 1.0, 'space': 1.0, 'designed': 1.0, 'three': 1.0, 'isn': 1.0, 'testify': 1.0, 'its': 1.0, 'usefulness': 1.0, 'size': 1.0, 'eat': 1.0, 'set': 2.0, 'exactly': 1.0, 'when': 1.0, 'what': 1.0, 'makes': 2.0, 'did': 1.0, 'trays': 2.0}
Word element => {'recommend': 1.0, 't': 1.0, 'well': 1.0, 'that': 1.0, 'work': 1.0, 'not': 1.0, 'i': 1.0, 'does': 1.0, 'is': 1.0, 'tray': 1.0, 'and': 2.0, 'the': 2.0, 'are': 1.0, 'cheap': 1.0, 'chopper': 1.0, 'food': 1.0, 'ok': 1.0, 'wouldn': 1.0, 'grinder': 1.0, 'but': 1.0}
Word element => {'necessary': 1.0, 'nice': 1.0, 'people': 1.0, 'sure': 1.0, 'puree': 1.0, 'this': 1.0, 'without': 1.0, 'estate': 1.0, 'taking': 1.0, 'large': 1.0, 're': 1.0, 'they': 1.0, 'as': 3.0, 'gave': 1.0, 'recently': 1.0, 'laws': 1.0, 'actually': 1.0, 'which': 1.0, 'good': 1.0, 'appropriate': 1.0, 'whereas': 1.0, 'receives': 1.0, 'baby': 2.0, 'them': 2.0, 'on': 1.0, 'make': 1.0, 'bananas': 1.0, 'peas': 1.0, 'organic': 1.0, 'food': 4.0, 'but': 3.0, 'can': 2.0, 'daughter': 2.0, 'infant': 1.0, 'settings': 1.0, 'more': 1.0, 'is': 5.0, 'my': 2.0, 'pretty': 1.0, 'to': 5.0, 'our': 7.0, 'probably': 1.0, 'any': 2.0, 'ourselves': 1.0, 'buying': 1.0, 'addition': 1.0, 'from': 2.0, 'wife': 1.0, 'decided': 2.0, 'buy': 1.0, 'i': 2.0, 'cheaper': 1.0, 'don': 1.0, 'freezer': 1.0, 'over': 1.0, 'age': 1.0, 'm': 1.0, 'in': 5.0, 'easier': 1.0, 've': 1.0, 'us': 1.0, 'also': 1.0, 'than': 1.0, 'less': 1.0, 'up': 1.0, 'ice': 4.0, 'get': 2.0, 'and': 5.0, 'jars': 1.0, 'trays': 4.0, 'though': 2.0, 'wallets': 1.0, 'healthful': 1.0, 'not': 3.0, 'unadulterated': 1.0, 'those': 1.0, 'only': 2.0, 'raw': 1.0, 'do': 2.0, 'much': 2.0, 'already': 1.0, 'it': 1.0, 'pure': 1.0, 'take': 2.0, 'we': 5.0, 'a': 6.0, 't': 1.0, 'been': 1.0, 'that': 1.0, 'using': 1.0, 'like': 1.0, 'blender': 3.0, 'for': 3.0, 'masher': 1.0, 'munchkin': 1.0, 'tool': 1.0, 'real': 1.0, 'set': 3.0, 'dedicated': 2.0, 'most': 2.0, 'making': 1.0, 'other': 2.0, 'overall': 1.0, 'okay': 1.0, 'standard': 1.0, 'think': 1.0, 'better': 1.0, 'if': 2.0, 'steamer': 3.0, 'you': 3.0, 'have': 2.0, 'the': 9.0, 'of': 1.0, 'items': 3.0, 'own': 2.0, 'see': 1.0, 'will': 1.0, 'could': 1.0, 'preferring': 1.0, 'original': 1.0, 'products': 1.0, 'with': 1.0, 'chopper': 1.0, 'are': 1.0, 'use': 1.0, 'her': 1.0, 'smaller': 1.0, 'bits': 1.0, 'size': 1.0, 'great': 1.0}
Word element => {'too': 1.0, 'fantastic': 1.0, 'great': 1.0, 'are': 3.0, 'the': 2.0, 'that': 1.0, 'and': 1.0, 'only': 1.0, 'they': 1.0, 'used': 1.0, 'these': 1.0, 'nipples': 1.0, 'our': 1.0, 'ever': 1.0, 'bottles': 2.0, 'son': 1.0, 'has': 1.0}
Word element => {'we': 1.0, 'use': 1.0, 'all': 1.0, 'is': 1.0, 'and': 1.0, 'loves': 1.0, 'are': 1.0, 'them': 1.0, 'a': 2.0, 'three': 1.0, 'great': 1.0, 'baby': 2.0, 'these': 1.0, 'our': 2.0, 'that': 1.0, 'flow': 1.0, 'daughter': 1.0, 'for': 2.0, 'after': 1.0, 'months': 1.0}
Word element => {'product': 1.0, 'great': 1.0, 'shipping': 1.0, 'fast': 1.0}
Word element => {'never': 1.0, 'sometimes': 1.0, 'have': 1.0, 'bottles': 1.0, 'useful': 1.0, 'found': 1.0, 'nipples': 1.0, 'different': 1.0, 'via': 1.0, 'juice': 1.0, 'pulp': 1.0, 'doesn': 1.0, 'to': 3.0, 'it': 1.0, 'only': 1.0, 'tippee': 1.0, 'know': 1.0, 'really': 1.0, 'change': 1.0, 'other': 1.0, 'offer': 1.0, 'leaked': 1.0, 'are': 1.0, 'the': 1.0, 'great': 1.0, 'these': 1.0, 't': 1.0, 'also': 1.0, 've': 1.0, 'stuck': 1.0, 'and': 2.0, 'me': 1.0, 'get': 1.0, 'allow': 1.0, 'bottle': 1.0, 'i': 2.0, 'that': 1.0, 'be': 1.0, 'flow': 1.0, 'allows': 1.0, 'tommee': 1.0, 'fruit': 1.0, 'you': 1.0}
Word element => {'comfortable': 1.0, 'very': 2.0, 'good': 1.0, 'easy': 1.0, 'simulates': 1.0, 'a': 2.0, 'nipple': 1.0, 'for': 1.0, 'valve': 1.0, 'real': 1.0, 'have': 1.0, 'clean': 1.0, 'baby': 1.0, 'colic': 1.0, 'to': 2.0, 'the': 1.0, 'prevent': 1.0}
Word element => {'nice': 1.0, 'uses': 1.0, 'in': 1.0, 'baby': 1.0, 'firsts': 1.0, 'careful': 1.0, 'to': 1.0, 'little': 1.0, 'bottle': 1.0, 'tommee': 1.0, 'i': 2.0, 'bit': 1.0, 'feel': 1.0, 'have': 1.0, 'it': 1.0, 'this': 1.0, 'that': 1.0, 'product': 1.0, 'be': 1.0, 'bought': 1.0, 'flow': 1.0, 'is': 1.0, 'check': 1.0, 'a': 1.0, 'just': 1.0, 'because': 1.0, 'tippee': 1.0, 'difficult': 1.0, 'for': 2.0, 'handle': 1.0, 'the': 2.0}
Word element => {'money': 1.0, 'their': 1.0, 'want': 1.0, 't': 1.0, 'don': 1.0, 'part': 1.0, 'from': 1.0, 'except': 1.0, 'on': 3.0, 'research': 1.0, 'nipple': 2.0, 'else': 1.0, 'everything': 1.0, 'if': 4.0, 'or': 1.0, 'gets': 1.0, 'when': 1.0, 'choice': 1.0, 'you': 2.0, 'most': 1.0, 'hard': 1.0, 'work': 2.0, 'but': 3.0, 'collapse': 1.0, 'feeding': 3.0, 'system': 1.0, 'probably': 1.0, 'like': 3.0, 'just': 3.0, 'bottles': 2.0, 'pushed': 1.0, 'by': 1.0, 'hope': 1.0, 'friends': 1.0, 'marketing': 1.0, 'occasionally': 1.0, 'trinkets': 1.0, 'and': 3.0, 'done': 1.0, 'they': 3.0, 'has': 1.0, 'review': 1.0, 'stuck': 1.0, 'pros': 1.0, 'in': 1.0, 'air': 1.0, 'nipples': 1.0, 'company': 1.0, 'my': 1.0, 'family': 1.0, 'sucked': 1.0, 'one': 1.0, 'are': 5.0, 'with': 2.0, 'it': 3.0, 'few': 1.0, 'bottle': 4.0, 'this': 6.0, 's': 3.0, 'a': 3.0, 'go': 1.0, 'overhyped': 1.0, 'these': 1.0, 'formula': 2.0, 'market': 1.0, 'more': 1.0, 'good': 2.0, 'as': 1.0, 'to': 3.0, 'an': 1.0, 'all': 1.0, 'other': 1.0, 'also': 1.0, 'choices': 1.0, 'swear': 1.0, 'pumping': 1.0, 'breastfeeding': 2.0, 'imho': 1.0, 'breastmilk': 2.0, 'likely': 1.0, 'than': 1.0, 'not': 2.0, 'best': 1.0, 'is': 2.0, 'at': 1.0, 'regular': 1.0, 'who': 2.0, 'medela': 2.0, 'will': 1.0, 'genius': 1.0, 'vent': 2.0, 'the': 4.0, 'of': 1.0, 'including': 1.0, 'everyone': 1.0, 'had': 1.0, 'waste': 1.0, 'given': 1.0, 'up': 1.0, 'product': 1.0, 'bottlefeeding': 1.0, 'those': 2.0, 'went': 1.0, 'feed': 1.0, 'helps': 1.0}
Word element => {'work': 1.0, 'condition': 1.0, 'and': 1.0, 'great': 2.0, 'in': 1.0, 'arrived': 1.0, 'nipples': 1.0}
Word element => {'nipples': 1.0, 'bottles': 1.0, 'recommend': 1.0, 'spillage': 1.0, 'leaks': 1.0, 'been': 1.0, 'all': 1.0, 'have': 3.0, 'we': 2.0, 'different': 1.0, 'tommee': 2.0, 'i': 2.0, 'form': 1.0, 'product': 1.0, 'through': 1.0, 'the': 1.0, 'nipple': 1.0, 'great': 1.0, 'complaints': 1.0, '34': 2.0, 'of': 1.0, 'or': 1.0, 'flows': 1.0, 'and': 2.0, 'highly': 1.0, 'another': 1.0, 'any': 1.0, 'tippee': 2.0, 'not': 1.0, 'had': 1.0, 'never': 1.0}
Word element => {'the': 1.0, 'quality': 1.0, 's': 1.0, 'soooo': 1.0, 'just': 1.0, 'is': 2.0, 'and': 1.0, 'animals': 1.0, 'one': 1.0, 'for': 1.0, 'awesome': 1.0, 'stuffed': 1.0, 'well': 1.0, 'daughter': 1.0, 'bear': 1.0, 'i': 1.0, 'cute': 1.0, 'provides': 1.0, 'my': 2.0, 'cat': 2.0, 'so': 1.0, 'this': 2.0, 'it': 1.0, 'jelly': 2.0, 'ended': 1.0, 'best': 1.0, 'ok': 1.0, 'as': 1.0, 'oops': 1.0, 'secondary': 1.0, 'bought': 1.0, 'pillow': 1.0, 'up': 1.0, 'always': 1.0}
Word element => {'the': 1.0, 'a': 1.0, 'teddy': 1.0, 'in': 1.0, 'bag': 1.0, 'this': 1.0, 'bear': 2.0, 'pictured': 1.0, 'is': 1.0, 'super': 1.0, 'came': 1.0, 'he': 1.0, 'soft': 1.0, 'sealed': 1.0, 'perfect': 1.0, 'plastic': 1.0, 'just': 1.0, 'as': 1.0}
Word element => {'highly': 1.0, 'would': 1.0, 'very': 3.0, 'and': 2.0, 'quite': 1.0, 'expression': 1.0, 'wonderful': 1.0, 'have': 1.0, 'has': 1.0, 'bear': 2.0, 'i': 2.0, 'purchase': 1.0, 'find': 1.0, 'cute': 1.0, 'soft': 1.0, 'the': 1.0, 'a': 3.0, 'durable': 1.0, 'this': 2.0, 'it': 3.0, 'is': 1.0, 'recommend': 1.0, 'snuggly': 1.0, 'was': 1.0, 'had': 1.0, 'purchasing': 1.0, 'for': 1.0, 'few': 1.0, 'months': 1.0}
Word element => {'work': 1.0, 'extra': 1.0, 'that': 1.0, 'came': 1.0, 'added': 1.0, 'for': 1.0, 'recently': 1.0, 'in': 1.0, 'cute': 1.0, 'did': 1.0, 'really': 1.0, 't': 1.0, 'bonus': 1.0, 'shower': 1.0, 'this': 1.0, 'it': 1.0, 'i': 3.0, 'packaging': 1.0, 'and': 1.0, 'need': 1.0, 'any': 1.0, 'didn': 1.0, 'was': 1.0, 'its': 1.0, 'to': 2.0}
Word element => {}
Word element => {'hold': 1.0, 'will': 1.0, 'up': 1.0, 'and': 1.0, 'quality': 1.0, 'nice': 1.0, 'it': 1.0, 'set': 1.0, 'certainly': 1.0, 'this': 1.0, 'my': 1.0, 'three': 1.0, 'year': 1.0, 'going': 1.0, 'is': 2.0, 'with': 1.0, 'son': 1.0, 'thrilled': 1.0, 'old': 1.0, 'to': 1.0, 'be': 1.0}
Word element => {'too': 1.0, 'clean': 1.0, 'easy': 1.0, 'food': 1.0, 'under': 1.0, 'hiding': 1.0, 'truck': 1.0, 'looking': 1.0, 'loves': 1.0, 'about': 1.0, 'all': 1.0, 'bowl': 1.0, 'to': 2.0, 'he': 1.0, 'it': 1.0, 'this': 1.0, 'my': 1.0, 'love': 1.0, 'for': 3.0, 'year': 1.0, 'plus': 1.0, 'set': 1.0, 'there': 1.0, 'care': 1.0, 'are': 1.0, 'dinnerware': 1.0, 'the': 3.0, '2': 1.0, 's': 2.0, 'his': 2.0, 'trucks': 1.0, 'grandson': 1.0, 'favorite': 1.0, 'sections': 1.0, 'plate': 1.0, 'and': 3.0, 'like': 1.0, 'old': 1.0, 'i': 1.0, 'how': 1.0, 'three': 1.0}
Word element => {'penny': 1.0, 'worth': 1.0, 'school': 1.0, 'wallet': 1.0, 'naks': 1.0, 'still': 1.0, 'end': 1.0, 'high': 1.0, 'my': 2.0, 'and': 3.0, 'very': 3.0, 'is': 2.0, 'spare': 1.0, 'can': 1.0, 'looks': 1.0, 'it': 3.0, 'this': 2.0, 'satchel': 1.0, 'with': 1.0, 'bag': 1.0, 'price': 1.0, 'was': 3.0, 'to': 1.0, 'everything': 1.0, 'agenda': 1.0, 'the': 1.0, 'i': 4.0, 'definitely': 1.0, 'looking': 1.0, 'buy': 1.0, 'in': 1.0, 'for': 3.0, 'fit': 1.0, 'ipad': 1.0, 'water': 1.0, 'bottle': 1.0, 'pencil': 1.0, 'use': 1.0, 'phone': 1.0, 'other': 1.0, 'every': 1.0, 'plenty': 1.0, 'of': 2.0, 'spacious': 1.0, 'room': 1.0, 'case': 1.0, 'that': 1.0, 'am': 1.0, 'a': 4.0, 'nick': 1.0, 'proud': 1.0}
Word element => {'wedding': 1.0, 'a': 1.0, 'to': 1.0, 'dinner': 1.0, 'spacious': 1.0, 'elegant': 1.0, 'and': 2.0, 'simple': 1.0, 'cm': 1.0, 'bag': 1.0, 'would': 1.0, 'classy': 1.0, 'is': 1.0, 'or': 1.0, 'service': 1.0, 'bulky': 1.0, 'the': 1.0, 'not': 1.0, 'excellent': 1.0, 'very': 2.0, 'from': 1.0, 'definitely': 1.0, 'out': 1.0, 'star': 1.0, 'recommend': 1.0, 'going': 1.0, 'when': 1.0, 'for': 1.0}
Word element => {'on': 1.0, 'chew': 1.0, 'to': 1.0, 'something': 1.0, 'need': 1.0, 'they': 1.0, 'but': 1.0, 'mouth': 1.0, 'didn': 1.0, 'all': 1.0, 't': 1.0, 'loves': 1.0, 'this': 1.0, 'his': 1.0, 'in': 2.0, 'firmer': 1.0, 'son': 1.0, 'my': 1.0, 'stuff': 1.0, 'really': 1.0, 'thini': 1.0, 's': 1.0, 'take': 1.0, 'teething': 1.0, 'at': 1.0, 'putting': 1.0, 'i': 1.0, 'interest': 1.0, 'when': 1.0, 'baby': 1.0}
Word element => {'went': 1.0, 'forethought': 1.0, 'design': 1.0, 'some': 1.0, 'tell': 1.0, 'first': 1.0, 'buy': 1.0, 'so': 2.0, 'daughter': 1.0, 'into': 1.0, 'that': 2.0, 'gave': 1.0, 'instantly': 1.0, 'gift': 1.0, 'about': 1.0, 'things': 1.0, 'attention': 1.0, 'get': 1.0, 'which': 1.0, 'little': 1.0, 'also': 1.0, 'you': 1.0, 'when': 2.0, 'miss': 1.0, 'toys': 1.0, 'think': 1.0, 'nice': 1.0, 'spot': 1.0, 'back': 1.0, 'and': 5.0, 'in': 3.0, 've': 1.0, 'enough': 3.0, 'actually': 1.0, 'for': 1.0, 'fit': 2.0, 'say': 1.0, 'is': 1.0, 'small': 1.0, 'reach': 1.0, 'the': 11.0, 'another': 1.0, 'my': 2.0, 'lightweight': 1.0, 'teething': 2.0, 'it': 8.0, 'month': 1.0, 'was': 4.0, 'old': 1.0, 'had': 1.0, 'massage': 1.0, 'as': 1.0, 'to': 7.0, 'any': 1.0, 'rattle': 1.0, 'i': 6.0, '4': 1.0, 'one': 1.0, 'months': 1.0, 'perfect': 1.0, 'lost': 1.0, 'this': 2.0, 'found': 1.0, 'middle': 1.0, 'still': 1.0, 'good': 1.0, 'her': 2.0, 'much': 1.0, 'works': 1.0, 'part': 1.0, 'grasp': 1.0, 'long': 1.0, 'mouth': 2.0, 'has': 1.0, 'toy': 4.0, 'well': 1.0, 'at': 2.0, 'received': 1.0, '6': 1.0, 'of': 3.0, 'best': 1.0, '34': 2.0, 'favorite': 1.0, 'bottom': 1.0, 't': 1.0, 'a': 4.0, 's': 2.0, 'almost': 1.0, 'most': 1.0, 'but': 1.0, 'can': 3.0, 'feet': 1.0, 'gums': 2.0, 'are': 1.0}
Word element => {'winner': 1.0, 'wherever': 1.0, 'bring': 1.0, 'clip': 1.0, 'pacifier': 1.0, 'tie': 1.0, 'bag': 1.0, 'or': 1.0, 'toss': 1.0, 'loved': 1.0, 'by': 1.0, 'your': 1.0, 'surprised': 1.0, 'definitely': 1.0, 'incredibly': 1.0, 'think': 2.0, 'like': 1.0, 'overall': 1.0, 'through': 1.0, 'again': 1.0, 'clean': 1.0, 'easy': 2.0, 's': 3.0, 'great': 1.0, 'away': 1.0, 'taken': 1.0, 'back': 1.0, 'brains': 1.0, 'are': 1.0, 'cute': 1.0, 'will': 1.0, 'could': 1.0, 'you': 3.0, 'purse': 1.0, 'hands': 1.0, 'mouths': 1.0, 'grab': 1.0, 'literally': 1.0, 'd': 1.0, 'they': 1.0, 'were': 1.0, 'weeks': 1.0, 'couple': 1.0, 'how': 2.0, 'our': 1.0, 'toy': 1.0, 'just': 2.0, 'over': 2.0, 'special': 2.0, 'didn': 1.0, 'okay': 1.0, 'from': 2.0, 'anything': 1.0, 'days': 1.0, 'soft': 1.0, 'few': 1.0, 'this': 4.0, 'wouldn': 1.0, 'prove': 1.0, 'son': 1.0, 'wrong': 2.0, 'may': 1.0, 'my': 2.0, 'me': 2.0, 'later': 2.0, 'very': 2.0, 'heartedly': 1.0, 'for': 2.0, 'about': 2.0, 'many': 1.0, 'others': 1.0, 'baby': 2.0, 'goes': 1.0, 'sound': 1.0, 'don': 1.0, 'in': 2.0, '8': 3.0, 'teether': 2.0, 'clearly': 1.0, 'also': 1.0, 'passed': 1.0, 'received': 1.0, 'he': 2.0, 't': 3.0, 'fighting': 1.0, 'we': 2.0, 'go': 1.0, 'leaf': 1.0, 'especially': 1.0, 'package': 1.0, 'house': 1.0, 'half': 1.0, 'holding': 1.0, 'dismissed': 1.0, 'box': 2.0, 'loves': 1.0, 'well': 1.0, 'i': 5.0, 'little': 1.0, 'nice': 1.0, '1': 1.0, 'lightweight': 2.0, 'so': 2.0, 'old': 2.0, 'perk': 1.0, 'makes': 1.0, 'month': 2.0, 'green': 1.0, 'and': 8.0, 'nothing': 1.0, 'understand': 1.0, 'out': 2.0, 'after': 1.0, 'utter': 1.0, 'calculating': 1.0, 'the': 11.0, 'of': 4.0, 'immediately': 1.0, 'pulled': 2.0, 'to': 8.0, 'diaper': 1.0, 'as': 2.0, 'was': 3.0, 'surprise': 1.0, 'enjoys': 1.0, 'babies': 2.0, 'grabbed': 1.0, 'let': 1.0, 'onto': 1.0, 'at': 1.0, 'is': 4.0, 'handle': 1.0, 'see': 2.0, 'gnawing': 1.0, 'long': 1.0, 'on': 1.0, 'their': 1.0, 'noise': 1.0, 'all': 1.0, 'an': 1.0, 'a': 7.0, 'rattle': 2.0, 'slight': 1.0, 'added': 1.0, 'be': 2.0, 'bonus': 1.0, 'it': 13.0, 'him': 1.0, 'when': 1.0, 'what': 1.0, 'offered': 1.0, 'had': 1.0, 'side': 1.0, 'good': 1.0, 'silicone': 1.0, 'that': 1.0, 'because': 2.0, 'one': 1.0, 'get': 1.0, 'months': 1.0, 'shipment': 1.0, 'if': 2.0, 'really': 1.0, 'ranging': 1.0, 'product': 1.0, 'year': 1.0}
Word element => {'here': 1.0, 'complaints': 1.0, 'go': 1.0, 'everywhere': 1.0, 'enough': 1.0, 'we': 2.0, 'get': 1.0, 'my': 1.0, 'baby': 1.0, 'take': 1.0, '5': 1.0, 'old': 1.0, 'teether': 1.0, 'no': 1.0, 'of': 1.0, 'he': 1.0, 'loves': 1.0, 'this': 1.0, 't': 1.0, 'it': 2.0, 'month': 1.0, 'can': 1.0}
Word element => {'we': 1.0, 'one': 1.0, 'best': 1.0, 'enough': 1.0, 'soft': 1.0, 'and': 1.0, 'teether': 1.0, 'chew': 1.0, 'easy': 1.0, 'to': 2.0, 'on': 1.0, 'is': 2.0, 'had': 1.0, 'awesome': 1.0, 'our': 1.0, 'baby': 1.0, 'this': 1.0, 'loves': 1.0, 'it': 2.0, 'hold': 1.0}
Word element => {'holding': 1.0, 'do': 1.0, 'and': 2.0, 'i': 1.0, 'of': 1.0, 'seem': 1.0, 'still': 1.0, 'hands': 1.0, 'without': 1.0, 'durable': 1.0, 'was': 1.0, 'is': 3.0, 'herself': 1.0, 'grasp': 1.0, 'hurting': 1.0, 'a': 1.0, 'since': 1.0, 'to': 3.0, 'any': 2.0, 'difficulties': 1.0, 'about': 1.0, 'very': 1.0, 'this': 1.0, 'soft': 2.0, 'enjoy': 1.0, 'daughter': 2.0, 'teether': 1.0, 'able': 1.0, 'have': 1.0, 'made': 1.0, 'my': 2.0, 'not': 3.0, 'material': 2.0, 'worries': 1.0, 'her': 3.0, 'accidentally': 1.0, 'in': 2.0, 'that': 1.0, 'seems': 1.0, 'will': 1.0, 'but': 1.0, 'rip': 1.0, 'beginning': 1.0, 'need': 1.0, 'teething': 1.0, 'does': 2.0, 'chew': 1.0, 'on': 1.0, 'constantly': 1.0, 'it': 6.0, 'she': 1.0}
Word element => {'out': 1.0, 'need': 1.0, 'how': 1.0, 'decide': 1.0, 'they': 1.0, 'will': 1.0, 'but': 1.0, 'when': 1.0, 'compartments': 1.0, 'go': 1.0, '5': 1.0, 'versatility': 1.0, 'didn': 1.0, 'apart': 1.0, 'perfect': 1.0, 'and': 1.0, 'dispenser': 1.0, 'formula': 1.0, 'comes': 1.0, 'was': 2.0, 'that': 1.0, 'since': 1.0, 'a': 2.0, 'love': 1.0, 'for': 1.0, 'can': 1.0, 'looking': 1.0, 'practical': 1.0, 't': 1.0, 'i': 5.0, 'whole': 1.0, 'come': 1.0, 'with': 1.0, 'it': 1.0, 'this': 2.0, 'take': 1.0, 'lot': 1.0, 'up': 1.0, 'of': 1.0, 'room': 1.0, 'many': 1.0, 'is': 1.0}
Word element => {'pretty': 1.0, 'are': 1.0, 'overall': 1.0, 'but': 1.0, 'not': 1.0, 'complaint': 1.0, 'we': 1.0, 'simple': 1.0, 'how': 1.0, 'black': 1.0, 'bright': 1.0, 'and': 1.0, 'blend': 1.0, 'happy': 1.0, 'my': 1.0, 'the': 1.0, 'legs': 1.0, 'would': 1.0, 'with': 1.0, 'only': 1.0, 'it': 2.0, 'love': 1.0, 'stick': 1.0, 'they': 2.0, 'is': 2.0, 'out': 1.0, 'so': 1.0, 'appropriate': 1.0, 'far': 1.0, 'in': 1.0, 'orange': 1.0, 'be': 1.0}
Word element => {'could': 1.0, 'price': 1.0, 'around': 1.0, 'while': 1.0, 'happily': 1.0, 'what': 1.0, 'her': 1.0, 'keeps': 1.0, 'bouncers': 1.0, 'of': 1.0, 'music': 1.0, 'crazy': 1.0, 'you': 1.0, 's': 2.0, 'daughter': 1.0, 'love': 1.0, 'for': 1.0, 'toys': 1.0, 'chair': 1.0, 'little': 1.0, 'a': 2.0, 'house': 1.0, 'secure': 1.0, 'doesn': 1.0, 'want': 1.0, 'is': 1.0, 'it': 4.0, 'this': 1.0, 'have': 1.0, 'things': 1.0, 'some': 1.0, 'safe': 1.0, 'do': 1.0, 'and': 3.0, 'other': 1.0, 'simple': 1.0, 'i': 2.0, 'our': 1.0, 'that': 1.0, 'more': 1.0, 'great': 2.0, 't': 1.0, 'the': 2.0, 'seated': 1.0, 'blinking': 1.0}
Word element => {'love': 1.0, 'free': 1.0, 'bit': 1.0, 'brief': 1.0, 'while': 2.0, 'minute': 1.0, 'her': 2.0, 'place': 1.0, 'for': 3.0, 'they': 1.0, 'wish': 1.0, 'adults': 1.0, 'kind': 1.0, 'meantime': 1.0, 'attractive': 1.0, 'months': 1.0, 'hands': 1.0, '20lbs': 1.0, 'about': 1.0, 'made': 1.0, 'good': 1.0, 'only': 1.0, 's': 3.0, 'replaced': 1.0, 'be': 1.0, 'dust': 1.0, 'keep': 2.0, 'hand': 1.0, 'move': 2.0, 'chair': 4.0, 'needed': 1.0, 'respirators': 1.0, 'back': 1.0, 'daddy': 1.0, 'we': 1.0, 'a': 9.0, 'stewart': 1.0, 'martha': 1.0, 'as': 1.0, 'even': 2.0, 'got': 1.0, 'not': 2.0, 'lounger': 1.0, 'that': 5.0, 'floor': 1.0, 'on': 2.0, 'strong': 1.0, 'distant': 1.0, 'and': 11.0, 'ones': 1.0, 'one': 2.0, 'too': 2.0, 'animals': 1.0, '34': 4.0, 'mommy': 1.0, 'fussy': 1.0, 'live': 1.0, 'under': 1.0, 'an': 2.0, 'would': 1.0, 'in': 8.0, 'child': 1.0, 'year': 1.0, 'old': 1.0, 'i': 8.0, 'where': 1.0, 'or': 2.0, 'world': 1.0, 'my': 1.0, 'sight': 1.0, 'without': 1.0, 'called': 1.0, 'to': 4.0, 'high': 1.0, 'drought': 1.0, 'desert': 1.0, 'some': 1.0, 'with': 3.0, 'experiencing': 1.0, 'of': 4.0, 'the': 10.0, 'person': 1.0, 'dirt': 1.0, 'up': 2.0, 'renovation': 1.0, 'mind': 1.0, 'house': 3.0, 'people': 1.0, 'safe': 2.0, 'clean': 2.0, 'enjoy': 2.0, 'battle': 1.0, 'coveralls': 1.0, 'plus': 1.0, 'are': 1.0, 'working': 1.0, 'this': 2.0, 'floors': 1.0, 'is': 5.0, '6': 1.0, 'infant': 2.0, 'everyone': 1.0, 'lightweight': 2.0, 'can': 1.0, 'hardwood': 1.0, 'but': 1.0, 'position': 2.0, 'scoop': 1.0, 'it': 9.0, 'baby': 1.0, 'many': 1.0, 'she': 1.0, 'exactly': 1.0, 'set': 2.0, 've': 1.0, 'down': 2.0, 'assistance': 1.0, 'little': 1.0, 'yay': 1.0, 'yes': 1.0, 'very': 1.0, 'have': 2.0, 'flimsy': 1.0, 'feel': 1.0, 'arm': 1.0, 'big': 2.0, 'when': 1.0, 'could': 2.0, 'will': 1.0}
Word element => {'disappointed': 1.0, 'seriously': 1.0, 'back': 1.0, 'money': 1.0, 'over': 1.0, 'a': 1.0, 'them': 1.0, 'for': 1.0, 'these': 1.0, 'they': 1.0, 'leak': 1.0, 'of': 1.0, 'two': 1.0, 'grandson': 1.0, 'my': 3.0, 'bought': 1.0, 'daughter': 1.0, 'cups': 1.0, 'buy': 1.0, 'i': 2.0, 'rip': 1.0, 'off': 1.0, 'ugh': 1.0, 'not': 2.0, 'what': 1.0, 'does': 1.0, 'even': 1.0, 'use': 1.0, 'all': 2.0, 'do': 2.0, 'want': 1.0, 'is': 1.0}
Word element => {'frazzled': 1.0, 'need': 1.0, 'already': 1.0, 'these': 1.0, 'selling': 1.0, 'one': 1.0, 'break': 1.0, 'parents': 1.0, 'way': 1.0, 'off': 1.0, 'snaps': 1.0, 'top': 1.0, 'squirt': 1.0, 'is': 1.0, 'execution': 1.0, 'know': 1.0, 'which': 1.0, 'plastic': 1.0, 'down': 1.0, 'outer': 1.0, 'too': 1.0, 'and': 1.0, 'nail': 1.0, 'they': 1.0, 'between': 1.0, 'throws': 1.0, '8230': 1.0, 'orange': 1.0, 'the': 7.0, 'steel': 1.0, 'of': 3.0, 'really': 1.0, 'flip': 1.0, 'every': 1.0, 'purchase': 1.0, 'but': 1.0, '2': 1.0, 'leakproof': 1.0, 'gonna': 1.0, 'be': 1.0, 'great': 1.0, '1': 1.0, 'get': 1.0, 'ounce': 1.0, 'will': 1.0, 'also': 1.0, 'criteria': 1.0, 'i': 5.0, 'actual': 1.0, 'to': 4.0, 'cups': 1.0, 'for': 2.0, 'straw': 4.0, 'researched': 1.0, 'last': 1.0, 'weighted': 1.0, 'have': 1.0, '20': 1.0, 'before': 2.0, 'days': 2.0, '3': 2.0, 'idea': 1.0, 'easily': 1.0, 'when': 1.0, 'hurt': 1.0, 'making': 1.0, 'annnnddddd': 1.0, 'out': 3.0, 'so': 1.0, 'literally': 1.0, 'however': 1.0, 'it': 5.0, 'was': 1.0, 'doesn': 2.0, 'lo': 2.0, 'cup': 3.0, 't': 2.0, 'a': 5.0, 's': 2.0, 'stainless': 1.0, 'seem': 1.0, 'does': 1.0, 'mouth': 1.0, 'had': 1.0, 'thought': 1.0, 'finally': 1.0, 'pain': 1.0, 'soft': 1.0, 'this': 3.0, 'found': 1.0, 'in': 1.0, 'while': 1.0, 'leak': 2.0, 'little': 1.0, 'very': 1.0, 'much': 1.0}
Word element => {'size': 1.0, 'to': 1.0, 'true': 1.0, 'seem': 1.0, 'well': 1.0, 'and': 1.0, 'cute': 1.0, 'i': 1.0, 'bought': 1.0, 'great': 1.0, 'little': 1.0, 'for': 1.0, 'these': 1.0, 'they': 2.0, 'made': 1.0, 'my': 1.0, 'are': 1.0, 'granddaughter': 1.0, 'socks': 1.0}
Word element => {'my': 1.0, 'mind': 1.0, 'winter': 1.0, 'bought': 1.0, 'in': 2.0, 'hope': 1.0, 'by': 1.0, 'burberry': 1.0, 'fall': 1.0, 'esque': 1.0, 'with': 1.0, 'them': 2.0, 'and': 1.0, 'very': 1.0, 'i': 1.0, 'they': 1.0, 'fit': 1.0, 'the': 1.0, 't': 1.0, 'then': 1.0, 'can': 1.0, 'wait': 1.0, 'granddaughter': 1.0, 'to': 1.0, 'see': 1.0}
Word element => {'us': 1.0, 'love': 2.0, 'it': 4.0, 'noise': 1.0, 'better': 1.0, 'that': 1.0, 'our': 1.0, 'before': 1.0, 'even': 1.0, 'out': 1.0, 'we': 2.0, 'expected': 1.0, 'has': 1.0, 'then': 1.0, 'is': 1.0, 'worked': 1.0, 'son': 1.0, 'until': 1.0, 'wakes': 1.0, 'up': 1.0, 'and': 1.0, 'alerts': 1.0, 'starts': 1.0, 'to': 1.0, 'quiet': 1.0, 'make': 1.0}
Word element => {'recommend': 1.0, 'highly': 1.0, 'would': 1.0, 'know': 1.0, 'let': 1.0, 'product': 1.0, 'allows': 1.0, 'hear': 1.0, 'or': 1.0, 'up': 1.0, 'clearly': 1.0, 'able': 1.0, 'coming': 1.0, 'when': 1.0, 'm': 2.0, 'great': 1.0, 'night': 1.0, 'i': 4.0, 'get': 1.0, 'me': 1.0, 'and': 3.0, 'talk': 1.0, 'room': 1.0, 'see': 1.0, 'a': 1.0, 'boys': 1.0, 're': 1.0, 'wake': 1.0, 'in': 1.0, 'share': 1.0, 'something': 1.0, 'could': 1.0, 'them': 6.0, 'out': 1.0, 'wanted': 1.0, 'to': 6.0, 'we': 2.0, 'use': 1.0, 'while': 1.0, 'watch': 1.0, 'they': 2.0, 'day': 1.0, 'sleeping': 1.0, 'it': 1.0, 'moved': 1.0, 'this': 2.0, 'works': 1.0}
Word element => {'that': 1.0, 'you': 1.0, 'camera': 1.0, 'very': 2.0, 'set': 1.0, 'up': 2.0, 'quality': 1.0, 'to': 2.0, 'recommend': 1.0, 'easy': 1.0, 'the': 2.0, 'great': 1.0, 'love': 1.0, 'can': 1.0, 'and': 3.0, 'monitor': 1.0, 'this': 1.0, 'nice': 1.0, 'i': 2.0, 'pan': 1.0, 'is': 1.0, 'side': 2.0, 'works': 1.0, 'down': 1.0}
Word element => {'high': 1.0, 'our': 1.0, 'will': 1.0, 'know': 1.0, 'lasting': 1.0, 'packaged': 1.0, 'environment': 1.0, 'designed': 1.0, 'friendly': 2.0, 'overall': 1.0, 'we': 1.0, 'which': 1.0, 'varies': 1.0, 'household': 2.0, 'slightly': 1.0, 'me': 1.0, 'essential': 1.0, 'some': 1.0, 'current': 1.0, 'wish': 1.0, 'do': 2.0, 'excellent': 1.0, 'wonderful': 1.0, 'leds': 1.0, 'eeek': 2.0, 'no': 2.0, 'from': 1.0, 'notice': 1.0, 'quick': 1.0, 'panning': 2.0, 'because': 1.0, 'quiet': 1.0, 'video': 2.0, 'child': 3.0, 'toddler': 1.0, 'product': 3.0, 'year': 1.0, 'camera': 1.0, 'temperature': 2.0, 'in': 9.0, 'what': 1.0, 'identify': 1.0, 'how': 2.0, 'was': 2.0, 'realized': 1.0, 'didn': 3.0, 'may': 1.0, 'same': 1.0, 'has': 4.0, 'always': 1.0, 'first': 1.0, 'last': 1.0, 'down': 1.0, 'things': 1.0, 'night': 4.0, 'monitors': 4.0, 'you': 1.0, 'there': 3.0, 'tiny': 1.0, 'a': 13.0, 'only': 1.0, 'long': 2.0, 'although': 2.0, 'music': 1.0, 'huge': 1.0, 'going': 1.0, 'kid': 2.0, 'talking': 1.0, 's': 5.0, 'battery': 2.0, 'stand': 1.0, 'closed': 1.0, 'mentioning': 1.0, 'etc': 1.0, 'two': 1.0, 'simple': 1.0, 'i': 17.0, 'well': 2.0, 'when': 1.0, 'bed': 1.0, 'range': 5.0, 'vision': 3.0, 'at': 3.0, 'times': 2.0, 'few': 1.0, 'offer': 1.0, 'cord': 1.0, 'unit': 1.0, 've': 1.0, 'while': 1.0, 'compared': 1.0, 'charge': 1.0, 'accurate': 1.0, 'that': 4.0, 'looks': 1.0, 'easily': 1.0, 'problems': 1.0, 'box': 1.0, 'ready': 1.0, 'perfect': 1.0, 'encounter': 1.0, 'floor': 1.0, 'straight': 1.0, 'displayed': 1.0, 'like': 2.0, 'signal': 2.0, 'out': 3.0, 'tilting': 2.0, 'playing': 1.0, 'other': 6.0, 'an': 1.0, 'way': 1.0, 'all': 2.0, 'the': 30.0, 'even': 1.0, 'old': 1.0, 'of': 7.0, 'longer': 1.0, 'couple': 1.0, 'feature': 3.0, 'stella': 1.0, 'lying': 1.0, 'price': 1.0, 'try': 1.0, 'easy': 2.0, 'model': 2.0, 'user': 1.0, 'his': 1.0, 'buttons': 1.0, 'whatsoever': 1.0, 'wise': 1.0, 'once': 1.0, 'baby': 9.0, 'many': 1.0, 'and': 16.0, 'just': 2.0, 'not': 2.0, 'forward': 1.0, 'especially': 1.0, 'use': 4.0, 'nice': 1.0, 'big': 2.0, 'feel': 1.0, 'any': 3.0, 'feed': 2.0, 'about': 2.0, '3': 1.0, 'older': 1.0, 'distractions': 1.0, 'on': 6.0, 'realize': 1.0, 'basic': 1.0, 'invisible': 1.0, 'reposition': 2.0, 'my': 6.0, 'are': 6.0, 'room': 2.0, 'issues': 1.0, 'observing': 1.0, 'function': 1.0, 'monitor': 15.0, 'best': 1.0, 'time': 3.0, 'did': 1.0, 'awesome': 1.0, 'models': 1.0, 'yet': 2.0, 'manual': 1.0, 'plug': 1.0, 'functionality': 1.0, 'read': 1.0, 'find': 2.0, 'very': 4.0, 'couldn': 1.0, 't': 5.0, 'clearly': 1.0, 'see': 1.0, 'until': 1.0, 'this': 15.0, 'eyes': 1.0, 'were': 1.0, 'opened': 1.0, 'with': 5.0, 'have': 3.0, 'or': 3.0, 'appreciated': 1.0, 'clearer': 1.0, 'scene': 1.0, 'devices': 1.0, 'now': 1.0, '4': 1.0, 'worth': 2.0, 'to': 14.0, 'antenna': 2.0, 'noise': 2.0, 'offers': 2.0, 'colors': 1.0, 'lcd': 1.0, 'purchase': 1.0, 'for': 6.0, 'tilt': 1.0, 'need': 1.0, 'also': 2.0, 'bright': 1.0, 'home': 1.0, 'pull': 1.0, 'without': 2.0, 'works': 1.0, 'power': 1.0, 'light': 1.0, 'reason': 1.0, 'if': 3.0, 'great': 1.0, 'as': 4.0, 'experienced': 1.0, 'mode': 1.0, 'tempted': 1.0, 'but': 3.0, 'depending': 1.0, 'quality': 1.0, 'worked': 1.0, 'having': 1.0, 'accurately': 1.0, 'secondly': 1.0, 'pan': 1.0, 'features': 3.0, 'one': 3.0, 'got': 1.0, 'simplest': 1.0, 'limited': 1.0, 'son': 1.0, 'grabs': 1.0, 'is': 13.0, 'can': 1.0, 'often': 1.0, 'however': 2.0, 'get': 2.0, 'up': 2.0, 'favorite': 1.0, 'considering': 1.0, 'it': 10.0, 'be': 1.0, 'touch': 1.0, 'don': 1.0, 'worry': 1.0, 'happens': 1.0, 'liked': 1.0, 'good': 2.0, 'screen': 6.0, 'wireless': 3.0}
Word element => {'2': 1.0, 'buy': 1.0, 'gripes': 1.0, 'large': 1.0, 'tends': 1.0, 'lens': 1.0, 'true': 1.0, 'vs': 1.0, 'digital': 1.0, 'pixelated': 1.0, 'resolution': 1.0, 'low': 1.0, 'an': 1.0, 'just': 1.0, 'so': 1.0, 'underwhelming': 1.0, 'charge': 1.0, 'bare': 1.0, 'convenience': 1.0, 'zoom': 2.0, 'lacks': 1.0, 'instructions': 1.0, 'frustration': 1.0, 'd': 1.0, 'was': 1.0, 'functions': 1.0, 'items': 1.0, 'charging': 1.0, 'unlabeled': 1.0, 'this': 1.0, 'few': 1.0, 'there': 1.0, 'nightstand': 1.0, 'work': 1.0, 'controls': 1.0, 'directional': 1.0, 'before': 1.0, 'control': 1.0, 'how': 1.0, 'knowing': 1.0, 'confusing': 1.0, 'image': 1.0, 'ergonomics': 1.0, 'since': 1.0, 'lacking': 1.0, 'slightly': 1.0, 'wanting': 1.0, 'while': 1.0, 'found': 1.0, 'however': 2.0, 'bit': 4.0, 'handy': 1.0, 'could': 1.0, 'used': 1.0, 'screen': 2.0, 'biggest': 1.0, 'lack': 1.0, 'room': 1.0, 'who': 2.0, 'kids': 2.0, 'enlargement': 1.0, 'button': 1.0, 'multiple': 1.0, 'be': 3.0, 'small': 1.0, 'a': 18.0, 'going': 2.0, 's': 4.0, 'levana': 1.0, 'what': 1.0, 'when': 3.0, 'being': 2.0, 'coming': 1.0, 'i': 9.0, 'from': 1.0, 'wonder': 1.0, 'love': 1.0, 'supposed': 1.0, 'it': 7.0, 'with': 2.0, 'around': 1.0, 'at': 1.0, 'look': 2.0, 'is': 2.0, 'cradle': 1.0, 'chores': 1.0, 'benefit': 1.0, 'new': 1.0, 'whose': 1.0, 've': 2.0, 'position': 2.0, 'benefits': 1.0, 'use': 3.0, 'perspective': 1.0, 'hot': 1.0, 'menu': 1.0, 'half': 1.0, 't': 3.0, 'likes': 1.0, 'mischief': 1.0, 'fixed': 1.0, 'to': 18.0, 'had': 1.0, 'also': 2.0, 'about': 2.0, 'causing': 1.0, 'dozen': 1.0, 'say': 2.0, 'gain': 1.0, 'baby': 3.0, 'always': 1.0, 'has': 1.0, 'them': 1.0, 'have': 5.0, 'tilt': 3.0, 'on': 2.0, 'any': 1.0, 'your': 1.0, 'doing': 1.0, 'of': 9.0, 'the': 16.0, 'and': 9.0, 'kitchen': 1.0, 'ease': 2.0, 'off': 1.0, 'see': 2.0, 'pleasure': 1.0, 'seems': 1.0, 'cameras': 1.0, 'features': 1.0, 'pan': 3.0, 'like': 1.0, 'communication': 3.0, 'great': 1.0, 'toddler': 1.0, 'video': 1.0, 'camera': 2.0, 'in': 5.0, 'don': 1.0, 'isn': 2.0, 'where': 1.0, 're': 1.0, 'especially': 2.0, 'fall': 1.0, 'that': 1.0, 'because': 2.0, 'for': 2.0, 'such': 1.0, 'cords': 1.0, 'get': 1.0, 'away': 1.0, 'bumped': 1.0, 'trend': 1.0, 'sleep': 1.0, 'most': 1.0, 'understand': 1.0, 'out': 1.0, 'or': 1.0, 'feature': 1.0, 'need': 1.0, 'push': 1.0, 'you': 5.0, 'monitors': 3.0, 'able': 1.0, 'tend': 2.0, 'talk': 1.0, 'via': 1.0, 'huge': 1.0, 'way': 3.0, 'monitoring': 1.0, 'two': 2.0, 'nice': 1.0, 'little': 2.0, 'monitor': 3.0, 'one': 1.0, 'ones': 1.0, 'stella': 1.0, 'bad': 1.0, 'are': 3.0, 'instead': 1.0, 'its': 1.0, 'part': 1.0, 'still': 1.0, 'if': 2.0, 'certainly': 1.0}
Word element => {'today': 1.0, 'be': 1.0, 'work': 1.0, 'would': 1.0, 'if': 1.0, 'size': 1.0, 'screen': 1.0, 'not': 3.0, 'note': 1.0, 'they': 1.0, 'mentioned': 1.0, 'removed': 1.0, 'like': 1.0, 'but': 1.0, 'several': 1.0, 'no': 1.0, 'two': 2.0, 'online': 1.0, 'unit': 2.0, 'before': 1.0, 'you': 1.0, 'reviewed': 1.0, 'provided': 1.0, 'minute': 1.0, 'reviewer': 1.0, 'another': 1.0, 'me': 1.0, 'my': 1.0, 'missing': 1.0, 'thing': 1.0, 'ten': 1.0, 'removing': 1.0, 'apart': 1.0, 'them': 1.0, 'deal': 1.0, 'baby': 1.0, 'arrived': 1.0, 'monitor': 3.0, 'being': 1.0, 'very': 1.0, 'our': 2.0, 'to': 2.0, 'as': 1.0, 'all': 2.0, 'friday': 1.0, 'instructions': 1.0, 'noticed': 1.0, 'on': 2.0, 'was': 4.0, 'anymore': 1.0, 'a': 4.0, 's': 1.0, 'will': 1.0, 'could': 1.0, 'we': 1.0, 'wont': 1.0, 'give': 1.0, 'black': 1.0, 'big': 1.0, 'until': 1.0, 'pleased': 1.0, 'used': 1.0, 'first': 4.0, 'with': 1.0, 'quick': 1.0, 'battery': 2.0, 'sale': 1.0, 'have': 1.0, 'it': 6.0, 'within': 1.0, 'for': 3.0, 'returning': 1.0, 'found': 1.0, 'however': 1.0, 'find': 1.0, 'since': 1.0, 'look': 1.0, 'at': 1.0, 'wife': 1.0, 'one': 1.0, 'happy': 1.0, 'charged': 1.0, 'per': 1.0, 'love': 1.0, 'far': 1.0, 'setup': 1.0, 'sheet': 1.0, 'so': 1.0, 'time': 2.0, 'connect': 2.0, 'camera': 1.0, 'or': 1.0, 'now': 1.0, 'only': 2.0, 'days': 2.0, 'works': 1.0, 'connects': 1.0, 'and': 3.0, '50': 1.0, 'even': 1.0, 'this': 4.0, 'few': 1.0, 'i': 8.0, 'feet': 1.0, 'the': 10.0, 'of': 1.0, 'longer': 1.0}
Word element => {'investment': 1.0, 'be': 1.0, 'suck': 1.0, 'discover': 1.0, 'purchased': 1.0, 'have': 1.0, 'approved': 1.0, 'spouse': 1.0, 'want': 1.0, 'sometimes': 1.0, 'app': 1.0, 'foscam': 1.0, 'like': 1.0, 'something': 2.0, 'buying': 1.0, 'all': 1.0, 'ever': 1.0, 'other': 1.0, 'downside': 1.0, 'intended': 1.0, 'pun': 1.0, 'light': 1.0, 'powerful': 1.0, 'led': 1.0, 'ir': 1.0, 'room': 2.0, 'from': 1.0, 'around': 1.0, 'colored': 1.0, 'only': 2.0, 'quickly': 1.0, 'hang': 1.0, 'outshine': 1.0, 'get': 1.0, 'work': 1.0, 'to': 10.0, 'color': 1.0, 'actually': 2.0, 'for': 2.0, 'so': 1.0, 'time': 1.0, 'just': 2.0, 'thing': 1.0, 'cam': 1.0, 'battery': 1.0, 'your': 3.0, 'make': 1.0, 'definitely': 2.0, 'exception': 1.0, 'most': 2.0, 'reach': 1.0, 'powered': 1.0, 'department': 1.0, 'that': 4.0, 'frankly': 1.0, 'gave': 1.0, 'awesome': 1.0, 'baby': 5.0, 'noise': 1.0, 'quality': 2.0, 'up': 2.0, 'the': 16.0, 'of': 4.0, 'at': 1.0, 'vision': 1.0, 'ring': 1.0, 'is': 6.0, 'great': 1.0, 'levanda': 1.0, 'works': 2.0, 'tell': 1.0, 'lot': 1.0, 'image': 1.0, 'on': 2.0, 'long': 1.0, 'came': 1.0, 'cameras': 2.0, 'see': 1.0, 'unit': 1.0, 's': 2.0, 'tested': 1.0, 'and': 6.0, 'd': 2.0, 'in': 4.0, 'product': 1.0, '260': 1.0, 'price': 1.0, 'camera': 3.0, 'would': 2.0, 'trying': 1.0, 'i': 2.0, 'this': 2.0, 'with': 1.0, 'range': 2.0, 'walking': 1.0, 'list': 1.0, 'far': 1.0, 'stella': 1.0, 'whether': 1.0, 'lacked': 1.0, 'how': 1.0, 'changes': 1.0, 'door': 1.0, 'it': 2.0, 'they': 1.0, 'ptz': 2.0, 'based': 1.0, 'good': 3.0, 'street': 1.0, 'not': 2.0, 'down': 1.0, 've': 1.0, 'hdtv': 1.0, 'enough': 3.0, 'house': 1.0, 'nerd': 1.0, 'pad': 2.0, 'display': 1.0, 'quite': 1.0, 'pocket': 1.0, 'a': 8.0, 'small': 2.0, 'pop': 1.0, 'certainly': 1.0, 'if': 2.0, 'night': 1.0, 'you': 7.0, 'are': 4.0, 'multiple': 1.0, 'awake': 1.0, 'heading': 1.0, 'neighbors': 1.0, 'next': 1.0, 'them': 1.0, 'has': 1.0, 'may': 1.0, 'me': 1.0, 'my': 1.0, 'controls': 2.0, 'smartphone': 1.0, 'audio': 1.0, 'features': 1.0, 'pan': 1.0, 'tilt': 1.0, 'crazy': 2.0, 'zoom': 1.0, 'but': 4.0, 'multi': 1.0, 'mode': 2.0, 'recommend': 1.0, 'fidgety': 1.0, 'little': 1.0, 'or': 1.0, 'need': 1.0, 'switch': 1.0}
Word element => {'have': 1.0, 'pill': 1.0, 'just': 1.0, 'though': 1.0, 'monitor': 2.0, 'anything': 1.0, 'other': 1.0, 'no': 1.0, 'attractive': 1.0, 'offers': 1.0, 'terribly': 1.0, 'isn': 1.0, 'receiver': 1.0, 'egg': 1.0, 'that': 2.0, 'you': 1.0, 'critique': 1.0, 'only': 1.0, 'like': 1.0, 'additional': 1.0, 'used': 1.0, 'haven': 1.0, 'sound': 1.0, 'up': 1.0, 'camera': 1.0, 'turn': 1.0, 'better': 2.0, 'any': 1.0, 'to': 7.0, 'shaped': 1.0, 'option': 1.0, 'image': 1.0, 'expected': 1.0, 'talk': 1.0, 'than': 1.0, 'love': 2.0, 'bed': 1.0, 'ability': 1.0, 'myself': 1.0, 'the': 11.0, 'or': 1.0, 'feature': 1.0, 'i': 6.0, 'screen': 1.0, 'on': 4.0, 'add': 1.0, 'handset': 1.0, 'is': 3.0, 'features': 1.0, 'of': 2.0, 'doing': 1.0, 'this': 1.0, 'it': 2.0, 'night': 1.0, 'quality': 1.0, 'huge': 1.0, 'and': 2.0, 'get': 1.0, 'my': 2.0, 'rousing': 1.0, 'daughter': 1.0, 'far': 1.0, 'through': 1.0, 't': 2.0, 'going': 1.0, 's': 3.0, 'depending': 1.0, 'so': 3.0, 'with': 1.0, 'convenient': 1.0, 'see': 1.0, 'what': 2.0, 'before': 1.0, 'her': 1.0, 'cameras': 1.0, 'day': 1.0, 'swallow': 1.0, 'but': 1.0, 'music': 1.0, 'change': 1.0, 'can': 1.0, 'sensitivity': 1.0, 'picks': 1.0}
Word element => {'should': 1.0, 'damage': 1.0, 'minimize': 1.0, 'carry': 1.0, 'foam': 1.0, 'constructed': 1.0, 'lieu': 1.0, 'around': 1.0, 'carrying': 1.0, 'ease': 1.0, 'better': 1.0, 'means': 1.0, 'had': 1.0, 'would': 1.0, 'phone': 1.0, 'drop': 1.0, 'laptops': 1.0, 'two': 1.0, 'that': 1.0, 'problems': 1.0, 'maximum': 1.0, 'some': 1.0, 'talk': 1.0, 'unit': 2.0, 'ailing': 1.0, 'adjusted': 1.0, 'frequency': 1.0, 'outdoors': 1.0, 'i': 6.0, 'feature': 1.0, 'or': 2.0, 'house': 1.0, 'parts': 1.0, 'all': 1.0, 'other': 1.0, 'sound': 1.0, 'freedom': 1.0, 'ghz': 1.0, 'detect': 1.0, 'in': 5.0, 'camera': 1.0, 'be': 3.0, 'of': 5.0, 'the': 17.0, 'without': 1.0, 'see': 2.0, 'own': 2.0, 'and': 4.0, 'case': 1.0, '4': 1.0, 'surroundings': 1.0, 'across': 1.0, 'interference': 1.0, 'monitor': 5.0, 'router': 2.0, 'to': 11.0, 'as': 1.0, 'any': 1.0, 'purchased': 1.0, 'me': 3.0, 'my': 6.0, 'ago': 1.0, 'a': 3.0, 'caring': 1.0, 'this': 3.0, 'volume': 1.0, 'with': 2.0, 'allows': 1.0, 'cordless': 1.0, '7': 1.0, 'very': 1.0, 'being': 2.0, 'hear': 2.0, 'same': 1.0, 'bedridden': 1.0, 'facing': 1.0, 'attaching': 1.0, 'at': 4.0, 'is': 1.0, 'months': 1.0, 'allowing': 1.0, 'color': 1.0, 'operates': 1.0, 'wife': 1.0, 'for': 2.0, 'gives': 1.0, 'lanyard': 1.0, 'her': 6.0, 'good': 1.0, '24': 1.0, 'wireless': 2.0, 'can': 1.0, '2': 1.0, 'but': 1.0, 'needed': 1.0, 'call': 1.0, 'even': 1.0, 'on': 2.0, 'near': 1.0, 'mounted': 1.0, 'committed': 1.0, 'wall': 1.0, 'infrared': 1.0, 'it': 5.0, 'if': 1.0, 'still': 1.0, 'clarity': 1.0, 'lighted': 1.0, 'room': 2.0, 'happen': 1.0, 'work': 1.0, 'provides': 1.0, 'additionally': 1.0, 'able': 1.0, 'night': 1.0, 'convenient': 1.0, 'darkened': 1.0, 'clearly': 1.0, 'perfect': 1.0, 'bed': 1.0, 'range': 1.0, 'not': 1.0, 'street': 1.0, 'signal': 1.0, 'network': 1.0, 'do': 1.0}
Word element => {'daily': 1.0, 'build': 1.0, 'particular': 1.0, 'down': 1.0, 'had': 2.0, 'good': 1.0, 'angle': 2.0, 'viewing': 1.0, 'few': 1.0, 'are': 1.0, 'laid': 1.0, 'there': 1.0, 'another': 1.0, 'not': 3.0, 'anywhere': 1.0, 'from': 1.0, 'watch': 1.0, 'can': 1.0, 'advantage': 1.0, 'keep': 1.0, 'at': 1.0, 'be': 1.0, 'with': 2.0, 'features': 1.0, 'using': 1.0, 'table': 1.0, 'device': 1.0, 'optics': 2.0, 'is': 6.0, 'depends': 1.0, 'view': 2.0, 'of': 3.0, 'and': 9.0, 'monitor': 1.0, 'baby': 1.0, 'disadvantage': 1.0, 'quality': 2.0, 'issues': 1.0, 'call': 1.0, 'video': 1.0, 'zoom': 1.0, 'liking': 1.0, 'carry': 1.0, 'terms': 1.0, 'in': 1.0, 'camera': 3.0, 'basis': 1.0, 'infant': 2.0, 'the': 16.0, 'so': 1.0, 'installed': 1.0, 'than': 2.0, 'i': 6.0, 'between': 1.0, 'display': 1.0, 'this': 7.0, 'first': 1.0, 'it': 5.0, 'do': 1.0, 'only': 1.0, 'have': 6.0, 'that': 3.0, 'been': 1.0, 'loving': 1.0, 'better': 2.0, '2nd': 1.0, 'being': 1.0, 'same': 1.0, 'if': 3.0, 'way': 1.0, 'am': 1.0, 'you': 6.0, 'pan': 1.0, 'tilt': 1.0, 'on': 7.0, 'floor': 2.0, 'could': 1.0, 'a': 8.0, 'crib': 1.0, 'wifi': 4.0, 'to': 4.0, 'overall': 1.0, 'decide': 1.0, 'one': 2.0, 'motorola': 1.0, 'far': 1.0, 'then': 1.0, 'until': 1.0, '1': 1.0, 'smart': 1.0, 'phone': 1.0}
Word element => {'my': 1.0, 'good': 1.0, 'pretty': 1.0, 'book': 1.0, 'but': 1.0, 'months': 1.0, 'last': 1.0, 'sponges': 1.0, 'easier': 1.0, 'much': 1.0, 'makes': 1.0, 'spinning': 1.0, 'rotor': 1.0, 'there': 1.0, 'from': 1.0, 'best': 1.0, 'use': 1.0, 'every': 1.0, 'by': 1.0, 'bottes': 1.0, 'just': 1.0, 'far': 1.0, 'cleaning': 1.0, 'out': 1.0, 'fits': 1.0, 'bottle': 1.0, 'brush': 1.0, 'one': 1.0, 'i': 1.0, 'tried': 1.0, '2': 1.0, 'the': 4.0, 'have': 1.0, 'about': 2.0, 'features': 1.0, 'is': 2.0, 'daily': 1.0, 'only': 1.0, 'this': 2.0, 'it': 1.0, 'and': 2.0, 'perfectly': 1.0, 'in': 2.0}
Word element => {'little': 1.0, 'a': 1.0, 'asked': 1.0, 'can': 1.0, 'sponge': 1.0, 'what': 1.0, 'these': 1.0, 'they': 2.0, 'do': 2.0, 'more': 1.0, 'are': 2.0, 'the': 1.0, 'as': 1.0, 'and': 1.0, 'intended': 1.0, 'of': 1.0, 'advertised': 1.0, 'job': 1.0, 'be': 1.0, 'to': 1.0}
Word element => {'12': 1.0, 'than': 1.0, '8': 1.0, 'new': 1.0, 'just': 1.0, 'cheaper': 1.0, 'is': 1.0, 'and': 1.0, '1': 3.0, 'ordered': 1.0, 'buy': 1.0, 'i': 2.0, 'bottle': 2.0, 'picture': 1.0, '2': 1.0, 'nipple': 2.0, '00': 1.0, 'rather': 1.0, 'rotary': 1.0, 'spongy': 1.0, 'though': 1.0, 'for': 2.0, 'brush': 5.0, 'using': 1.0, 'a': 1.0, 'after': 1.0, 'to': 1.0, 'was': 1.0, 'replacement': 2.0, 'simba': 1.0, 'set': 3.0, 'came': 1.0, 'like': 1.0, 'with': 2.0, 'it': 3.0, 'only': 1.0, 'but': 1.0}
Word element => {'use': 1.0, 'symphony': 1.0, 'this': 1.0, 'does': 1.0, 'not': 1.0, 'the': 2.0, 'inclue': 1.0, 'you': 1.0, 'actual': 1.0, 'beware': 1.0, 'need': 1.0, 'membranes': 1.0, 'to': 2.0, 'attach': 1.0}
Word element => {'everyone': 1.0, 'than': 1.0, 'other': 1.0, 'revolt': 1.0, 'result': 1.0, 'fed': 1.0, 'previous': 1.0, 'same': 1.0, 'contains': 1.0, 'thinks': 1.0, 'he': 1.0, 'packet': 2.0, 'son': 1.0, 'my': 1.0, 'give': 1.0, 'when': 1.0, 'colors': 1.0, 'assorted': 1.0, 'in': 2.0, 'them': 1.0, 'with': 1.0, 'did': 1.0, 'this': 3.0, 'wish': 1.0, 'only': 1.0, 'problem': 1.0, 'had': 1.0, 'recommend': 1.0, 'was': 1.0, 'leaking': 1.0, 'thing': 1.0, 'about': 1.0, 'make': 1.0, 'guy': 1.0, 'day': 1.0, 'use': 2.0, 'contents': 1.0, 'are': 1.0, 'everyday': 1.0, 'two': 1.0, 'i': 6.0, 'would': 1.0, 've': 2.0, 'awesome': 1.0, 'reviews': 1.0, 'they': 2.0, 'isn': 1.0, 'some': 1.0, 'these': 1.0, 'the': 6.0, 'clean': 2.0, 'little': 1.0, 'that': 2.0, 'been': 1.0, 'product': 2.0, 'for': 2.0, 'know': 1.0, 'using': 1.0, 'packs': 1.0, 'could': 1.0, 'we': 2.0, 't': 1.0, 'a': 7.0, 'since': 1.0, 'it': 1.0, 'month': 1.0, 'sticks': 1.0, 'half': 1.0, 'up': 1.0, 'of': 1.0, 'is': 1.0, 'really': 1.0, 'as': 1.0, 'our': 1.0, 'to': 4.0, 'have': 1.0, 'never': 1.0, 'pick': 1.0, 'nothing': 1.0, 'bad': 1.0, 'inside': 1.0, 'but': 2.0, 'bags': 2.0, 'caps': 1.0, 'and': 3.0, 'too': 1.0, 'easy': 1.0, 'talked': 1.0}
Word element => {'are': 1.0, 'they': 1.0, 'and': 1.0, 'times': 1.0, 'many': 1.0, 'them': 1.0, 'we': 1.0, 'perfect': 1.0, 'me': 1.0, 'easy': 1.0, 'still': 1.0, 'product': 1.0, 'to': 1.0, 'great': 1.0, 'money': 1.0, 'reused': 1.0, 'have': 1.0, 'saved': 1.0, 'buying': 1.0, 'endless': 1.0, 'clean': 1.0, 'pouches': 1.0}
Word element => {'nice': 1.0, 'very': 1.0, 'install': 1.0, 'easy': 1.0, 'awesome': 1.0, 'ability': 1.0, 'close': 1.0, 'this': 1.0, 'other': 1.0, 'fit': 1.0, 'gates': 1.0, 'after': 1.0, 'trying': 1.0, 'gate': 2.0, 'months': 1.0, 'for': 1.0, 'looks': 1.0, 'is': 1.0, 'many': 1.0, 'off': 1.0, 'stairs': 1.0, 'and': 3.0, 'shape': 2.0, 'searching': 1.0, 'was': 1.0, 'configure': 1.0, 'wanted': 1.0, 'to': 3.0, 'requirements': 1.0, 'the': 4.0, 'odd': 1.0, 'size': 1.0, 'of': 1.0, 'i': 1.0}
Word element => {'work': 1.0, 'how': 1.0, 'love': 1.0, 'it': 1.0, 'my': 2.0, 'and': 1.0, 'have': 1.0, 'i': 1.0, 'one': 1.0, 'fast': 1.0, 'daughter': 1.0, 'for': 1.0, 'sister': 1.0, 'in': 1.0, 'law': 1.0, 'had': 1.0, 'to': 1.0, 'use': 1.0}
Word element => {'day': 1.0, 'item': 1.0, 'baby': 1.0, 'a': 2.0, 's': 2.0, 'luckily': 1.0, 'did': 1.0, 'flashlight': 1.0, 'push': 1.0, 'there': 2.0, 'reading': 1.0, 'of': 1.0, 'and': 4.0, 'get': 1.0, 'was': 3.0, 'wanted': 1.0, '90': 1.0, 'so': 2.0, 'returned': 1.0, 'return': 1.0, 'way': 1.0, 'you': 1.0, 'often': 1.0, 'policy': 1.0, 'work': 1.0, 'can': 1.0, 'mixed': 1.0, 'it': 4.0, 'this': 1.0, 'hard': 2.0, 'or': 1.0, 'good': 1.0, 'i': 2.0, 'sucked': 1.0, 'one': 1.0, 'decided': 1.0, 'be': 1.0, 'do': 2.0, 'try': 1.0, 'were': 1.0, 'thermometer': 2.0, 'other': 1.0, 'the': 4.0, 'myself': 1.0, 'because': 1.0, 'wrong': 1.0, 'not': 2.0, 'accurate': 1.0, 'an': 1.0, 'equal': 1.0, 'after': 1.0, 'amount': 1.0, 'buttons': 1.0, 'what': 1.0, 'bad': 1.0, 'to': 5.0, 'all': 2.0, 'at': 2.0, 'really': 1.0, 'reviews': 2.0, 'they': 1.0, 'stuck': 1.0}
Word element => {'too': 1.0, 'girl': 1.0, 'it': 2.0, 'a': 1.0, 'for': 1.0, 'present': 1.0, 'perfect': 1.0, 'aweson': 1.0, 'i': 2.0, 'and': 1.0, 'like': 2.0, 'very': 1.0, 'loved': 1.0, 'size': 1.0, 'my': 1.0, 'the': 1.0, 'are': 1.0, 'is': 1.0, 'colors': 1.0, 'bright': 1.0, 'really': 2.0, 'good': 1.0}
Word element => {'food': 1.0, 'is': 1.0, 'old': 1.0, 'son': 1.0, 'for': 2.0, 'great': 1.0, 'comfortable': 1.0, 'it': 1.0, 'catching': 1.0, 'he': 1.0, 'absolutely': 1.0, 'and': 5.0, 'on': 1.0, 'while': 1.0, 'are': 4.0, 'trip': 1.0, 'these': 1.0, 'the': 3.0, 'crocodile': 1.0, 'wear': 1.0, 'my': 2.0, 'well': 1.0, 'falling': 1.0, 'loved': 1.0, 'one': 2.0, 'creek': 1.0, 'bought': 1.0, 'use': 1.0, 'wonderful': 1.0, 'pouch': 1.0, 'i': 1.0, 'two': 1.0, 'now': 1.0, 'to': 2.0, 'year': 1.0, 'almost': 1.0, 'loves': 1.0, 'a': 2.0, 'we': 1.0, 'boutique': 1.0, 'have': 1.0, 'at': 2.0, 'three': 1.0, 'in': 1.0, 'collection': 1.0, 'they': 3.0, 'favorite': 1.0, 'pictures': 1.0, 'bibs': 2.0, 'really': 1.0, 'easy': 1.0, 'clean': 1.0}
Word element => {'would': 1.0, 'looking': 1.0, 'modern': 1.0, 'very': 1.0, 'pattern': 1.0, 'made': 1.0, 'babyish': 1.0, 'real': 1.0, 'not': 1.0, 'that': 1.0, 'the': 2.0, 'my': 1.0, 'daughter': 1.0, 'for': 1.0, 'baby': 1.0, 'recommend': 1.0, 'she': 2.0, 'go': 1.0, 'well': 1.0, 'a': 1.0, 'bag': 2.0, 'loves': 1.0, 'got': 1.0, 'i': 2.0, 'and': 3.0, 'was': 1.0, 'to': 1.0, 'wanted': 1.0, 'with': 1.0, 'this': 3.0, 'it': 3.0, 'her': 1.0, 'is': 2.0, 'second': 1.0, 'makes': 1.0, 'time': 1.0, 'boy': 1.0, 'set': 1.0}
Word element => {'fine': 1.0, 'and': 1.0, 'alternative': 1.0, 'a': 1.0, 'cold': 2.0, 'works': 1.0, 'love': 1.0, 'it': 2.0, 'i': 1.0, 'wish': 1.0, 'had': 1.0, 'better': 1.0, 'an': 1.0, 'pack': 2.0, 'instead': 1.0, 'but': 1.0, 'use': 1.0}
Word element => {'else': 1.0, 'than': 1.0, 'me': 1.0, 'to': 1.0, 'anything': 1.0, 'is': 1.0, 'service': 1.0, 'i': 1.0, 'does': 1.0, 'item': 1.0, 'and': 2.0, 'more': 1.0, 'the': 1.0, 'my': 1.0, 'worth': 1.0, 'baby': 1.0, 'love': 1.0, 'great': 1.0, 'so': 1.0, 'that': 1.0, 'customer': 1.0}
Word element => {'this': 1.0, 'with': 1.0, 'and': 1.0, 'nice': 1.0, 'are': 1.0, 'bit': 1.0, 'bright': 1.0, 'a': 1.0, 'padded': 1.0, 'so': 1.0, 'entertaining': 1.0, 'floor': 1.0, 'be': 2.0, 'intimidating': 1.0, 'to': 2.0, 'but': 1.0, 'ready': 1.0, 'of': 2.0, 'niece': 1.0, 'colors': 1.0, 'baby': 1.0, 'assembled': 1.0, 'purchase': 1.0, 'tunnel': 2.0, 'one': 1.0, 'for': 3.0, 'playtime': 1.0, 'happy': 1.0, 'my': 1.0, 'the': 5.0, 'cute': 1.0, 'old': 1.0, 'right': 1.0, 'as': 1.0, 'year': 1.0, 'very': 2.0, 'almost': 1.0, 'out': 1.0, 'easily': 1.0, 'box': 1.0, 'is': 2.0, 'not': 1.0, 'just': 1.0, 'long': 2.0, 'enough': 1.0}
Word element => {'uses': 1.0, 'barely': 1.0, 'girl': 1.0, 'little': 1.0, 'my': 1.0, 'i': 2.0, 'tunnel': 1.0, 'better': 1.0, 'more': 1.0, 'lot': 1.0, 'anticipated': 1.0, 'is': 1.0, 'than': 1.0, 'thought': 1.0, 'flimsy': 1.0, 'item': 1.0, 'disappointed': 1.0, 'in': 1.0, 'this': 3.0, 'it': 2.0, 'would': 1.0, 'was': 1.0, 'be': 1.0, 'a': 1.0, 'since': 1.0, '34': 2.0, 'einstein': 1.0, 'baby': 1.0}
Word element => {'though': 1.0, 'pretty': 1.0, 'stays': 1.0, 'round': 2.0, 'flips': 1.0, 'just': 1.0, 'old': 1.0, 'month': 1.0, 'lots': 1.0, 'my': 1.0, 'issue': 1.0, 'and': 3.0, 'very': 1.0, 'son': 1.0, 'for': 1.0, 'in': 1.0, 'no': 1.0, 'at': 1.0, 'it': 1.0, 'he': 1.0, 'cool': 1.0, 'around': 1.0, 'rigid': 1.0, 'but': 1.0, 'a': 1.0, 'little': 1.0, '7': 1.0, 'flimsy': 1.0, 'to': 1.0, 'look': 1.0, 'grab': 1.0, 'rolls': 1.0}
Word element => {'three': 1.0, 'having': 1.0, 'only': 1.0, 'rid': 1.0, 'getting': 1.0, 'without': 1.0, 'storage': 1.0, 'break': 1.0, 'room': 1.0, 'big': 1.0, 'irritates': 1.0, 'joy': 1.0, 'brought': 1.0, 'something': 1.0, 'sad': 1.0, 'kind': 1.0, 'whatsoever': 1.0, 'm': 1.0, 'in': 1.0, 'interest': 1.0, 'really': 1.0, 'now': 1.0, 'that': 5.0, 'has': 1.0, 'next': 1.0, 'to': 4.0, 'as': 1.0, 'other': 1.0, 'all': 1.0, 'so': 2.0, 'after': 1.0, 'unless': 1.0, 'you': 1.0, 'again': 1.0, 'disassemble': 1.0, 's': 1.0, 'we': 4.0, 'a': 1.0, 'huge': 1.0, 'mobile': 2.0, 'storing': 1.0, 'discontinued': 1.0, 'what': 1.0, 'when': 1.0, 'roll': 1.0, 'doesn': 2.0, 'was': 4.0, 'sick': 1.0, 'and': 9.0, 'got': 2.0, 'tunnel': 8.0, 'personally': 2.0, 'different': 1.0, 'from': 1.0, 'disassembling': 1.0, 'while': 1.0, 'seven': 1.0, 'loooved': 1.0, 'eventually': 1.0, 'my': 4.0, 'child': 1.0, 'missed': 1.0, 'takes': 1.0, 'up': 2.0, 'love': 1.0, 'he': 5.0, '4': 2.0, 'old': 5.0, 'much': 2.0, 'unfortunately': 1.0, 'she': 2.0, 'baby': 5.0, 'well': 1.0, 'fast': 1.0, 'i': 5.0, 'broke': 1.0, 'no': 1.0, 'years': 1.0, 'used': 2.0, 'down': 2.0, 'inside': 1.0, 'this': 3.0, 'found': 1.0, 'are': 1.0, 'first': 2.0, 'with': 1.0, 'had': 1.0, 'twisted': 1.0, 'our': 2.0, 'how': 1.0, 'disappointed': 1.0, 'find': 1.0, 'did': 1.0, 't': 2.0, 'along': 1.0, 'forward': 1.0, 'not': 2.0, 'use': 1.0, 'of': 3.0, 'the': 7.0, 'eagerly': 1.0, 'time': 1.0, 'assembled': 1.0, 'for': 2.0, 'thing': 1.0, '2': 1.0, 'but': 3.0, '3': 1.0, 'on': 1.0, 'came': 1.0, 'store': 1.0, 'market': 1.0, 'mostly': 1.0, 'gave': 1.0, 'month': 1.0, 'same': 1.0, 'liked': 1.0, 'more': 1.0, 'at': 1.0, 'is': 4.0, 'two': 1.0, 'little': 1.0, 'frustrated': 1.0, 'it': 17.0, 'him': 1.0, 'would': 2.0, 'months': 3.0, 'get': 1.0}
Word element => {'nuts': 1.0, 'they': 1.0, 'and': 1.0, '3': 1.0, 'for': 2.0, 'the': 2.0, 'at': 1.0, 'baby': 1.0, 'bought': 1.0, 'likes': 1.0, 'house': 1.0, 'but': 1.0, 'just': 1.0, 'it': 2.0, 'year': 1.0, 'big': 1.0, 'as': 1.0, 'our': 1.0, 'hit': 1.0, 'tent': 1.0, 'go': 1.0, 'throw': 1.0, 'well': 1.0, 'a': 2.0, 'blanket': 1.0, 'over': 1.0, '34': 2.0}
Word element => {'what': 1.0, 'just': 1.0, 'all': 1.0, 'the': 2.0, 'now': 1.0, 'is': 1.0, 'little': 1.0, 'needed': 1.0, 'he': 1.0, 'guy': 1.0, 'over': 1.0, 'place': 1.0}
Word element => {'dry': 1.0, 'line': 1.0, 'then': 1.0, 'cycle': 1.0, 'delicate': 1.0, 'use': 1.0, 'washes': 1.0, 'really': 1.0, 'been': 1.0, 'old': 1.0, 'reach': 1.0, 'out': 2.0, 'is': 3.0, 'how': 1.0, '6': 1.0, 'know': 1.0, 'have': 2.0, 'my': 3.0, 'another': 1.0, 'to': 2.0, 'bend': 1.0, 'as': 2.0, 'had': 1.0, 'children': 1.0, 'the': 4.0, 'of': 3.0, 'small': 1.0, 'a': 2.0, 'might': 1.0, 's': 1.0, 't': 1.0, 'son': 2.0, 'shape': 1.0, 'and': 6.0, 'always': 1.0, 'them': 3.0, 'has': 2.0, 'jumping': 1.0, 'all': 3.0, 'ever': 1.0, 'feature': 1.0, 'on': 1.0, 'months': 1.0, 'one': 1.0, 'tent': 1.0, 'kids': 1.0, 'this': 2.0, 'you': 3.0, 'times': 1.0, 'when': 1.0, 'support': 2.0, 'again': 1.0, 'for': 1.0, 'love': 1.0, 'with': 2.0, 'mind': 1.0, 'turning': 1.0, 'stood': 1.0, 'in': 1.0, 'it': 12.0, 'if': 2.0, 'crushed': 1.0, 'rods': 1.0, '1': 1.0, 'great': 2.0, 'by': 1.0, 'his': 1.0, 'sister': 1.0, 'who': 1.0, 'but': 1.0, 'let': 1.0, 'years': 1.0, 'washable': 1.0, 'don': 1.0, 'through': 1.0, 'sometimes': 1.0, 'collapse': 1.0, 'they': 1.0, 'are': 2.0, 'very': 1.0, 'rough': 1.0, 'do': 1.0, 'down': 1.0, 'pop': 1.0, 'back': 2.0, 'upright': 1.0, 'gift': 1.0, 'good': 1.0, 'time': 1.0, 'new': 1.0, '2': 2.0, 'machine': 1.0, 'tunnel': 1.0, 'cover': 1.0, 'countless': 1.0, 'older': 1.0, 'taking': 1.0, 'got': 1.0, 'pieces': 1.0, 'there': 1.0, 'play': 1.0, 'about': 1.0, 'takes': 1.0, 'up': 2.0, '7': 1.0, 'i': 3.0, 'putting': 1.0}
Word element => {'christmas': 1.0, 'hit': 1.0, 'was': 1.0, 'it': 1.0, 'tunnel': 1.0, '1': 1.0, 'a': 2.0, 'old': 1.0, 'peak': 1.0, 'boo': 1.0, 'for': 1.0, 'year': 1.0, 'playing': 1.0, 'in': 1.0, 'grandson': 1.0, 'loved': 1.0, 'this': 1.0}
Word element => {'tunnel': 1.0, 'mesh': 1.0, 'baby': 1.0, 'is': 3.0, 'a': 1.0, 'the': 3.0, 'it': 3.0, 'great': 2.0, 'quality': 1.0, 'and': 2.0, 'toy': 1.0, 'loves': 1.0, 'colorful': 1.0, 'of': 1.0, 'big': 1.0, 'good': 1.0}
Word element => {'won': 1.0, 'coming': 1.0, 'that': 1.0, 'parts': 1.0, 'having': 1.0, 'kept': 2.0, 'kid': 1.0, 'active': 2.0, 'time': 1.0, 'of': 1.0, 'test': 1.0, 't': 1.0, 'the': 1.0, 'but': 1.0, 'an': 2.0, 'will': 1.0, 'and': 1.0, 'fun': 2.0, 'last': 1.0, 'mount': 1.0, 'she': 1.0, 'few': 1.0, 'off': 2.0, 'month': 2.0, 'its': 1.0, 'to': 1.0, 'had': 1.0, 'for': 2.0, '20': 1.0, 'before': 1.0, 'my': 1.0, 'child': 1.0, 'made': 1.0, 'bought': 1.0, 'old': 1.0, 'i': 2.0, 'it': 3.0, 'this': 1.0, 'with': 3.0, 'knocking': 1.0, 'days': 1.0, 's': 1.0, 'a': 2.0, 'well': 1.0, 'stand': 1.0, 'not': 2.0}
Word element => {'other': 1.0, 'hung': 1.0, 'nice': 1.0, 'toys': 2.0, 'are': 2.0, 'fun': 1.0, 'be': 1.0, 'to': 1.0, 'still': 1.0, 'but': 1.0, 'recommend': 1.0, 'she': 1.0, 'so': 1.0, 'our': 1.0, 'that': 2.0, 'tunnel': 1.0, 'like': 1.0, 'scared': 1.0, 'and': 3.0, 'loves': 1.0, 'gets': 1.0, 'daughter': 1.0, 'i': 3.0, 'old': 1.0, 'enough': 1.0, 'through': 1.0, 'month': 1.0, 'own': 1.0, '9': 1.0, 'wonderful': 1.0, 'can': 1.0, 'this': 1.0, 'it': 1.0, 'end': 1.0, 'my': 1.0, 'the': 5.0, 'see': 1.0, 'long': 2.0, 'her': 1.0, 'pictures': 1.0, 'sides': 1.0, 'highly': 1.0, 'colors': 1.0, 'mesh': 1.0, 'on': 2.0, 'is': 1.0, 'not': 1.0}
Word element => {'s': 1.0, 'she': 1.0, 'while': 1.0, 'a': 1.0, 'allows': 1.0, 'nice': 1.0, 'to': 3.0, 'slowly': 1.0, 'fun': 1.0, 'my': 1.0, 'the': 2.0, 'me': 1.0, 'and': 3.0, 'boo': 1.0, 'very': 1.0, 'too': 1.0, 'daughter': 1.0, 'in': 2.0, 'cute': 1.0, 'loves': 1.0, 'play': 2.0, 'peek': 1.0, 'tunnel': 1.0, 'love': 1.0, 'this': 1.0, 'it': 3.0, 'through': 1.0, 'learning': 1.0, 'crawl': 1.0, 'on': 1.0, 'mesh': 1.0, 'is': 2.0, 'side': 1.0}
Word element => {'item': 1.0, 'hangers': 1.0, 'but': 1.0, 'no': 1.0, 'there': 1.0, 'satisfied': 1.0, 'other': 1.0, 'perhaps': 1.0, 'on': 1.0, 'haning': 1.0, 'overall': 1.0, 'are': 2.0, 'toys': 2.0, 'say': 1.0, 'i': 2.0, 'that': 1.0, 'thing': 1.0, 'this': 1.0, 'only': 2.0, 'he': 1.0, 'with': 2.0, 'side': 2.0, 'want': 1.0, 'is': 2.0, 'the': 5.0, 'my': 2.0, 'son': 2.0, 'cushionable': 1.0, 'fell': 1.0, 'crawling': 1.0, 'started': 1.0, 'just': 2.0, 'tunnel': 1.0, 'for': 1.0, 'love': 1.0, 'one': 2.0, 'in': 1.0, '7months': 1.0, 'and': 1.0, 'enough': 1.0, 'to': 2.0, 'mat': 1.0, 'protect': 1.0, 'his': 1.0, 'knees': 1.0}
Word element => {'opinions': 1.0, 'review': 1.0, 'sample': 1.0, 'disclosure': 1.0, 'piece': 1.0, 'enjoying': 1.0, 'have': 1.0, 'closer': 1.0, 'view': 1.0, 'screen': 1.0, '4': 1.0, 'use': 1.0, 'another': 1.0, 'extra': 1.0, 'each': 1.0, 'on': 1.0, 'going': 1.0, 's': 1.0, 'between': 1.0, 'hear': 1.0, 'same': 1.0, 'watch': 1.0, 'great': 1.0, 'liked': 2.0, 'white': 1.0, 'also': 2.0, 'automatic': 1.0, 'gives': 1.0, 'montior': 1.0, 'needed': 1.0, 'hazard': 1.0, 'hanging': 1.0, 'even': 1.0, 'instead': 1.0, 'secure': 1.0, 'wall': 2.0, 'out': 1.0, 'enjoyed': 1.0, 'really': 4.0, 'setting': 1.0, 'though': 1.0, 'problem': 1.0, 'no': 2.0, 'follow': 1.0, 'however': 1.0, 'easy': 1.0, 'are': 2.0, 'believe': 1.0, 'instructions': 1.0, 'fact': 1.0, 'living': 1.0, 'one': 5.0, 'color': 1.0, 'how': 1.0, 'our': 2.0, 'to': 9.0, 'zoom': 1.0, 'as': 3.0, 'in': 5.0, 'son': 2.0, 'sons': 1.0, 'been': 1.0, 'into': 1.0, 'problems': 1.0, 'because': 1.0, 'that': 7.0, 'two': 1.0, 'little': 1.0, 'monitor': 5.0, 'wherever': 1.0, 'for': 3.0, 'taking': 1.0, 'had': 5.0, 'and': 11.0, 'get': 2.0, 'cords': 1.0, 'months': 1.0, 'moved': 1.0, 'ease': 2.0, 'a': 12.0, 'we': 6.0, 'ago': 1.0, 't': 3.0, 'his': 1.0, 'turned': 1.0, 'down': 2.0, 'still': 1.0, 'if': 2.0, 'free': 1.0, 'want': 1.0, 'youngest': 1.0, 'what': 1.0, 'when': 1.0, 'am': 2.0, 'your': 3.0, 'light': 1.0, 'looking': 1.0, 'using': 1.0, 'being': 1.0, 'very': 2.0, 'interferrance': 1.0, 'cheap': 1.0, 'like': 1.0, 'both': 1.0, 'mind': 2.0, 'with': 4.0, 'look': 1.0, 'at': 1.0, 'vision': 1.0, 'is': 5.0, 'room': 5.0, 'comes': 1.0, 'nap': 1.0, 'far': 1.0, 'he': 1.0, 'few': 1.0, 'this': 6.0, 'feature': 2.0, 'or': 1.0, 'carries': 1.0, 'doing': 1.0, 'of': 3.0, 'the': 14.0, 'place': 1.0, 'you': 6.0, 'night': 2.0, 'has': 2.0, 'them': 2.0, 'worries': 1.0, 'was': 7.0, 'not': 1.0, 'those': 1.0, 'my': 6.0, 'me': 2.0, 'product': 5.0, 'video': 3.0, 'toggle': 1.0, 'summer': 1.0, 'black': 1.0, 'written': 1.0, 'soon': 1.0, 'owned': 1.0, 'there': 1.0, 'much': 1.0, 'ridiculous': 1.0, 'biggest': 1.0, 'time': 1.0, 'new': 1.0, 'well': 1.0, 'slept': 1.0, 'i': 9.0, 'didn': 1.0, 'got': 1.0, 'couldn': 2.0, 'cameras': 4.0, 'own': 2.0, 'until': 1.0, 'see': 2.0, 'thought': 1.0, 'it': 6.0, 'him': 1.0, 'came': 1.0, 'glad': 1.0, 'infant': 1.0, 'multiview': 1.0, 'digital': 2.0, 'never': 1.0, 'given': 2.0, 'set': 3.0, 'husband': 2.0, 'up': 2.0, 'split': 1.0, 'thing': 1.0, '2': 2.0, 'clips': 1.0, 'so': 4.0, 'can': 6.0, 'just': 2.0, 'placed': 1.0}
Word element => {'my': 2.0, 'review': 1.0, 'sample': 1.0, 'free': 1.0, 'disclosure': 1.0, 'wait': 1.0, 'minute': 1.0, 'fusses': 1.0, 'comfortable': 1.0, 'more': 1.0, 'okay': 1.0, 'am': 1.0, 'regular': 1.0, 'just': 1.0, 'old': 1.0, '18': 1.0, 'bedroom': 1.0, 'whole': 1.0, 'opinions': 1.0, 'illuminates': 1.0, 'dimmest': 1.0, 'several': 1.0, 'dimmer': 1.0, 'even': 1.0, 'had': 2.0, 'wish': 2.0, 'select': 1.0, '1': 1.0, 'cons': 1.0, 'wall': 1.0, 'mount': 1.0, 'safety': 1.0, 'played': 1.0, 'some': 1.0, 'much': 1.0, 'hum': 1.0, 'static': 1.0, 'picks': 1.0, 'operating': 1.0, 'chest': 1.0, 'her': 2.0, 'different': 1.0, 'test': 1.0, 'so': 1.0, 'levels': 1.0, 'clips': 1.0, 'can': 3.0, 'but': 2.0, 'monitor': 7.0, 'ceiling': 1.0, 'and': 4.0, 'play': 1.0, 's': 4.0, 'we': 5.0, 'a': 9.0, 'daughter': 2.0, 'our': 3.0, 'an': 1.0, 'other': 1.0, 'all': 1.0, 'to': 9.0, 'way': 1.0, 'fall': 1.0, 'at': 1.0, 'is': 5.0, 'in': 3.0, 'system': 1.0, 'probably': 1.0, 'rise': 1.0, 'using': 1.0, 'light': 1.0, 'eliminates': 1.0, 'mostly': 1.0, 'noise': 1.0, 'good': 2.0, 'eliminate': 1.0, 'mounted': 1.0, 'monitoring': 1.0, 'audio': 5.0, 'like': 2.0, 'love': 1.0, 'only': 4.0, 'it': 5.0, 'with': 4.0, 'this': 2.0, 'noisy': 1.0, 'up': 4.0, 'product': 1.0, 'camera': 5.0, 'video': 4.0, 'child': 1.0, 'however': 1.0, 'bit': 1.0, 'easy': 3.0, 'overall': 2.0, 'of': 3.0, 'the': 22.0, 'was': 2.0, 'you': 2.0, 'monitors': 1.0, 'night': 3.0, 'she': 2.0, 'baby': 2.0, 'if': 3.0, 'still': 2.0, 'clear': 1.0, 'instructions': 1.0, 'make': 1.0, 'sounds': 1.0, 'will': 1.0, 'comes': 3.0, 'room': 1.0, 'household': 1.0, 'given': 1.0, 'herself': 1.0, 'set': 4.0, 'rooms': 1.0, 'right': 1.0, 'have': 3.0, 'one': 1.0, 'now': 1.0, 'time': 2.0, 'new': 2.0, 'screen': 1.0, 'first': 1.0, 'background': 1.0, 'are': 2.0, 'been': 1.0, 'saver': 1.0, 'for': 2.0, 'anxious': 1.0, 'out': 1.0, 'both': 1.0, 'own': 1.0, 'see': 2.0, 'cameras': 1.0, 'nice': 1.0, 'two': 1.0, 'i': 7.0, 'or': 1.0, 'feature': 1.0, '2': 1.0, 'split': 1.0, 'sinch': 1.0, 'dim': 1.0, 'although': 1.0, 'near': 1.0, 'on': 6.0, 'long': 3.0, 'when': 1.0, 'settle': 1.0, 'pros': 1.0, 'scan': 1.0, 'great': 2.0, 'option': 2.0, 'months': 1.0, 'cords': 2.0, 'installation': 1.0, 'battery': 2.0, 'no': 2.0, 'life': 2.0}
Word element => {'money': 1.0, 'worth': 1.0, 'do': 1.0, 'overall': 1.0, 'could': 1.0, 'are': 2.0, 'with': 1.0, 'figured': 1.0, 'once': 1.0, 'weird': 2.0, 'was': 2.0, 'crooked': 1.0, 'shows': 1.0, 'where': 1.0, 'mount': 1.0, 'from': 1.0, 'tilt': 2.0, 'pan': 1.0, 'get': 1.0, 'bit': 3.0, 'little': 2.0, 'up': 3.0, 'takes': 1.0, 'piece': 1.0, 'together': 1.0, 'its': 1.0, 'split': 3.0, 'screen': 3.0, 'in': 3.0, 'like': 5.0, 'good': 2.0, 'which': 2.0, 'audio': 1.0, 'handheld': 1.0, 'hours': 1.0, 'they': 3.0, 'part': 1.0, 'while': 1.0, 'be': 2.0, 'set': 2.0, 'settled': 1.0, 'not': 3.0, 'buttons': 1.0, 'if': 1.0, 'still': 1.0, 'stay': 1.0, 'a': 9.0, 'we': 4.0, 'after': 1.0, 'dont': 3.0, 'few': 2.0, 'this': 7.0, 'kids': 1.0, 'finally': 1.0, 'second': 2.0, 'i': 5.0, 'broke': 1.0, 'as': 1.0, 'zoom': 1.0, 'to': 7.0, 'our': 2.0, 'all': 1.0, 'happened': 1.0, 'seperately': 1.0, 'when': 1.0, 'on': 3.0, 'son': 1.0, 'beds': 1.0, 'for': 2.0, 'one': 2.0, 'motorola': 2.0, 'and': 9.0, 'but': 5.0, 'awesome': 2.0, 'about': 1.0, 'researching': 1.0, 'welcomed': 1.0, 'only': 2.0, 'unit': 2.0, 'see': 1.0, 'very': 1.0, 'plays': 1.0, 'being': 1.0, 'things': 2.0, 'you': 4.0, 'monitors': 2.0, 'able': 1.0, 'both': 1.0, 'the': 22.0, 'of': 4.0, 'view': 1.0, 'them': 2.0, 'is': 10.0, 'at': 2.0, 'toddlers': 1.0, 'who': 1.0, 'time': 2.0, 'cake': 1.0, 'can': 3.0, 'so': 1.0, 'had': 1.0, 'offered': 1.0, 'many': 1.0, 'also': 6.0, 'it': 6.0, 'blocks': 1.0, 'out': 2.0, 'limited': 1.0, 'back': 1.0, 'think': 1.0, 'sell': 1.0, 'parent': 2.0, 'ground': 1.0, 'same': 1.0, 'hear': 1.0, 'quality': 2.0, 'noise': 1.0, 'even': 1.0, 'monitor': 4.0, 'picture': 4.0, 'static': 1.0, 'used': 2.0, 'smooshed': 1.0, 'move': 2.0, 'great': 1.0, 'child': 1.0, 'camera': 4.0, 'year': 1.0, 'video': 2.0, 'toddler': 1.0, 'bed': 2.0, 'range': 1.0, 'because': 2.0, 'that': 1.0, 'does': 2.0, 'have': 1.0, 'show': 1.0}
Word element => {'few': 1.0, 'forth': 1.0, 'back': 1.0, 'pressing': 1.0, 'switch': 1.0, 'cumbersome': 1.0, 'problem': 1.0, 'alleviate': 1.0, 'just': 2.0, 'might': 1.0, 'i': 1.0, 'newborn': 1.0, 'hard': 1.0, 'over': 1.0, 'helpful': 1.0, 'static': 1.0, 'has': 1.0, 'table': 1.0, 'angle': 1.0, 'like': 1.0, 'quite': 4.0, 'almost': 1.0, 'or': 2.0, 'on': 5.0, 'dual': 2.0, 'make': 1.0, 'kickstand': 1.0, 'but': 2.0, 'night': 2.0, 'you': 4.0, 'can': 3.0, 'so': 2.0, 'friends': 1.0, 'time': 1.0, 'adjust': 1.0, 'blessed': 1.0, 'were': 1.0, 'one': 2.0, 'move': 1.0, 'decided': 1.0, 'and': 8.0, 'single': 2.0, 'go': 1.0, 'we': 6.0, 'going': 1.0, 'your': 1.0, 'any': 2.0, 'as': 2.0, 'another': 1.0, 'select': 1.0, 'set': 1.0, 'rooms': 1.0, 'is': 8.0, 'comes': 1.0, 'summer': 2.0, 'it': 10.0, 'with': 4.0, 'had': 2.0, 'when': 1.0, 'what': 2.0, 'screen': 2.0, 'camera': 1.0, 'stand': 1.0, 'because': 1.0, 'prosyou': 1.0, 'option': 2.0, 'buttons': 1.0, 'clear': 1.0, 'bigger': 1.0, 'makes': 1.0, 'keep': 1.0, 'will': 1.0, 'also': 1.0, 'daytime': 1.0, 'adjustable': 1.0, 'conswhen': 1.0, 'easy': 1.0, 'check': 1.0, 'the': 13.0, 'of': 2.0, 'want': 1.0, 'listen': 1.0, 'interference': 1.0, 'monitor': 3.0, 'picture': 2.0, 'have': 3.0, 'not': 3.0, 'picked': 1.0, 'blurry': 1.0, 'takes': 1.0, 'up': 2.0, 'nice': 2.0, 'little': 2.0, 'two': 1.0, 'a': 7.0, 'story': 1.0, 'both': 1.0, 'house': 2.0, 'are': 1.0, 'which': 1.0, 'good': 2.0, 'side': 1.0, 'no': 1.0, 'wall': 1.0, 'other': 2.0, 'ever': 1.0, 'close': 1.0, 'cord': 2.0, 'wranglers': 1.0, 'against': 1.0, 'to': 9.0, 'straight': 1.0, 'far': 1.0, 'closer': 1.0, 'away': 1.0, 'cameras': 1.0, 'see': 1.0}
Word element => {'about': 1.0, 'cords': 1.0, 'charging': 1.0, 'all': 1.0, 'other': 1.0, 'for': 1.0, 'one': 1.0, 'power': 1.0, 'adapters': 1.0, '3': 1.0, 'convenient': 1.0, 'sacrifice': 1.0, 'places': 1.0, 'stable': 1.0, 'pieces': 2.0, 'with': 2.0, 'once': 1.0, 'comes': 2.0, 'plugged': 1.0, 'also': 2.0, 'aware': 1.0, 'quiet': 1.0, 'many': 1.0, 'she': 1.0, 'baby': 1.0, 'like': 2.0, 'sound': 2.0, 'home': 1.0, 'our': 2.0, 'most': 1.0, 'match': 1.0, 't': 5.0, 'a': 5.0, 'glad': 2.0, 'great': 1.0, 'decision': 1.0, 'am': 1.0, 'when': 2.0, 'you': 4.0, 'say': 1.0, 'hopes': 1.0, 'use': 2.0, 'necessarily': 1.0, 'front': 1.0, 'in': 4.0, 'views': 1.0, 'spend': 2.0, 'wasn': 2.0, 'didn': 1.0, 'even': 2.0, 'completely': 1.0, 'at': 1.0, 'is': 5.0, 'love': 1.0, 'my': 3.0, 'comments': 1.0, 'makes': 2.0, 'did': 2.0, 'better': 1.0, 'off': 1.0, 'cameras': 1.0, 'own': 1.0, 'but': 3.0, 'money': 2.0, 'clips': 1.0, 'sensitive': 1.0, 'so': 3.0, 'can': 3.0, 'sleeper': 1.0, 'operate': 1.0, 'had': 1.0, 'rooms': 1.0, 'given': 1.0, 'as': 1.0, 'to': 7.0, 'very': 5.0, 'picture': 1.0, 'monitor': 4.0, 'read': 1.0, 'because': 1.0, 'that': 3.0, 'every': 1.0, 'clear': 1.0, 'putting': 1.0, 'i': 7.0, 'the': 17.0, 'of': 5.0, 'said': 1.0, 'view': 1.0, 'more': 1.0, 'husband': 1.0, 'was': 4.0, 'and': 5.0, 'states': 1.0, 'thought': 1.0, 'it': 4.0, 'sample': 1.0, 'this': 5.0, 'easy': 2.0, 'found': 1.0, 'hard': 1.0, 'need': 2.0, 'directions': 1.0, 'privacy': 2.0, 'made': 1.0, 'which': 4.0, 'using': 1.0, 'both': 1.0, 'absolutely': 1.0, 'huge': 1.0, 'color': 1.0, 'are': 2.0, 'plus': 1.0, 'don': 1.0, 'product': 2.0, 'video': 1.0, 'child': 1.0, 'enough': 1.0, 'dual': 1.0, 'long': 1.0, 'on': 2.0, 'll': 1.0, 'right': 1.0, 'now': 1.0, 'be': 4.0, 'second': 1.0, 'same': 1.0, 'safe': 1.0, 'screen': 1.0, 'never': 1.0, 'some': 1.0, 'we': 8.0, 'opposite': 1.0, 'reviews': 1.0, 'there': 1.0, 'have': 2.0, 'exact': 1.0, 'digital': 1.0, 'has': 1.0, 'extra': 1.0, 'opinion': 1.0, 'another': 2.0, '100': 1.0, 'white': 1.0, '2': 1.0, 'happens': 1.0}
Word element => {'realize': 1.0, 'middle': 1.0, 'during': 1.0, 'died': 1.0, 'first': 1.0, 'low': 1.0, 'or': 1.0, 'beep': 1.0, 'g': 1.0, 'audible': 1.0, 'an': 1.0, 'warning': 2.0, 'give': 1.0, 'die': 1.0, 'will': 1.0, 'night': 2.0, 'baby': 1.0, 'had': 1.0, 'temperature': 1.0, 'monitor': 2.0, 'room': 3.0, 'something': 1.0, 'each': 1.0, 'battery': 1.0, 'no': 1.0, 'told': 1.0, 'you': 5.0, 'gave': 1.0, 'that': 4.0, 'to': 2.0, 'our': 1.0, 'in': 3.0, 'sound': 1.0, 'so': 1.0, 'and': 4.0, 'plugged': 1.0, 'far': 1.0, 'it': 7.0, 'do': 1.0, 'works': 1.0, 'the': 8.0, 'are': 2.0, 'speak': 1.0, 'features': 1.0, 'is': 2.0, 'good': 1.0, 'didn': 1.0, 'picture': 1.0, 'previous': 1.0, 'non': 1.0, 'e': 1.0, 'video': 2.0, 'morning': 1.0, 'able': 1.0, 'one': 1.0, 'of': 2.0, 'wish': 2.0, 'kids': 1.0, 'which': 1.0, 'until': 1.0, 'great': 1.0, 'nice': 1.0, 't': 1.0, 's': 1.0, 'could': 1.0, 'we': 3.0, 'a': 2.0, 'have': 2.0, 'must': 1.0, 'used': 1.0, 'overnight': 1.0, 'i': 2.0, 'feature': 1.0, 'otherwise': 1.0}
Word element => {'than': 1.0, 'less': 1.0, 'for': 1.0, 'plays': 2.0, 'cheaply': 1.0, 'made': 1.0, 'not': 1.0, 'rotate': 1.0, 'product': 1.0, 'music': 2.0, 'the': 2.0, 't': 2.0, 'recommend': 1.0, '1': 1.0, 'and': 1.0, 'do': 1.0, 'nice': 1.0, 'doesn': 1.0, 'this': 1.0, 'it': 5.0, 'minute': 1.0, 'i': 1.0, 'picture': 1.0, 'was': 1.0, 'look': 1.0, 'as': 3.0, 'catches': 1.0, 'so': 1.0, 'that': 1.0, 'won': 1.0}
Word element => {'think': 1.0, 'will': 1.0, 'under': 1.0, 'very': 1.0, 'what': 1.0, 'her': 1.0, 'content': 1.0, 'beat': 1.0, 'a': 1.0, 'too': 1.0, 'us': 1.0, 'looking': 1.0, 'without': 1.0, 'nurses': 1.0, 'so': 2.0, 'is': 2.0, 'on': 1.0, 'it': 2.0, 'there': 1.0, 'of': 2.0, 'next': 1.0, 'they': 1.0, 'has': 1.0, 'missing': 1.0, 'one': 1.0, 'stylish': 1.0, 'niece': 1.0, 'and': 2.0, 'mixed': 1.0, 'my': 1.0, 'these': 1.0, 'the': 2.0, 'she': 1.0, 'baby': 2.0, 'just': 1.0, 'while': 1.0, 'cute': 1.0, 'whips': 1.0, 'still': 1.0, 'company': 1.0, 'in': 2.0, 'conversation': 1.0}
Word element => {'and': 1.0, 'as': 2.0, 'promised': 1.0, 'will': 1.0, 'thanks': 1.0, 'worth': 1.0, 'condition': 1.0, 'good': 1.0, 'arrived': 1.0, 'made': 1.0, 'purchasing': 1.0, 'for': 2.0, 'price': 1.0, 'needs': 1.0, 'in': 1.0, 'perfect': 1.0, 'more': 1.0, 'great': 1.0, 'order': 1.0, 'needed': 1.0, 'being': 1.0, 'product': 1.0, 'well': 1.0, 'a': 1.0}
Word element => {'making': 1.0, 'amazon': 1.0, 'ones': 1.0, 'stability': 1.0, 'important': 1.0, 'little': 2.0, 'very': 1.0, 'has': 1.0, 'daddy': 1.0, 'their': 1.0, 'nearly': 1.0, 'deposit': 1.0, 'safe': 1.0, 'in': 3.0, 'intends': 1.0, 'worth': 1.0, 'money': 1.0, 'but': 1.0, 'original': 1.0, 'extra': 1.0, 'susie': 1.0, 'more': 1.0, 'is': 4.0, 'was': 1.0, 'dolls': 1.0, 'months': 1.0, 'one': 1.0, 'bought': 1.0, 'the': 5.0, 'currently': 1.0, 'doll': 1.0, 'baby': 1.0, 'name': 1.0, 'old': 3.0, 'backup': 1.0, 'my': 2.0, 'anywhere': 1.0, 'accident': 1.0, 'apparent': 1.0, 'and': 3.0, 'year': 2.0, 'a': 2.0, 'thanks': 1.0, 'insure': 1.0, 'suzie': 2.0, 'coming': 1.0, 'sale': 1.0, 'she': 1.0, 'it': 2.0, 'expensive': 1.0, 'for': 5.0, 'her': 1.0, 'than': 1.0, 'does': 1.0, 'even': 1.0, 'availability': 1.0, 'life': 3.0, 'available': 1.0, 'this': 4.0, 'based': 1.0, '9': 1.0, 'else': 1.0, 'so': 2.0, 'had': 1.0, 'settled': 1.0, 'not': 1.0, 'minor': 1.0, 'through': 1.0, 'niece': 2.0, 'became': 1.0, 'been': 1.0, 'box': 1.0, 'that': 1.0, 'as': 1.0, 'to': 3.0, 'our': 1.0, 'happen': 1.0, 'favorite': 1.0, 'afghanistan': 1.0, 'things': 1.0, 'put': 1.0, '3': 2.0, 'on': 1.0}
Word element => {'equipment': 1.0, 'on': 1.0, 'slip': 1.0, 'the': 1.0, 't': 2.0, 'fit': 1.0, 'loves': 1.0, 'don': 1.0, 'doesn': 1.0, 'sizes': 1.0, 'bad': 1.0, 'i': 1.0, 'they': 2.0, 'to': 2.0, 'granddaughter': 1.0, 'my': 1.0, 'them': 2.0, 'jamtime': 1.0, 'come': 1.0, 'when': 1.0, 'm': 1.0, 'she': 3.0, 'wears': 1.0, 'play': 1.0, 'other': 1.0, 'goes': 1.0, 'perfectly': 1.0, 'and': 1.0}
Word element => {'100': 1.0, 'safer': 1.0, 'makes': 1.0, 'really': 1.0, 'appreciate': 1.0, 'non': 1.0, 'colors': 1.0, 'price': 1.0, 'baby': 2.0, 'of': 1.0, 'bottom': 1.0, 'because': 1.0, 'and': 3.0, 'pleased': 1.0, 'are': 1.0, 'the': 4.0, 'these': 1.0, 'on': 1.0, 'we': 3.0, 'skids': 1.0, 'socks': 1.0, 'have': 1.0, 'with': 1.0, 'this': 1.0, 'tile': 1.0, 'floors': 1.0}
Word element => {'including': 1.0, 'not': 1.0, 'response': 1.0, 'hrs': 1.0, '24': 1.0, 'slipped': 1.0, 'slipping': 1.0, 'hardwood': 1.0, 'o': 1.0, 'house': 1.0, 'around': 1.0, 'actually': 1.0, 'are': 1.0, 'have': 1.0, 'able': 1.0, 'loved': 1.0, 'that': 3.0, 'i': 1.0, 'was': 2.0, 'to': 1.0, 'had': 2.0, 'weekends': 1.0, 'socks': 2.0, 'much': 1.0, 'the': 4.0, 'ones': 1.0, 'these': 1.0, 'my': 2.0, 'lo': 2.0, 'because': 1.0, 'w': 3.0, 'find': 1.0, 'nonskid': 2.0, 'time': 1.0, 'so': 1.0, 'floors': 1.0, 'we': 2.0, 'could': 1.0, 'a': 2.0, 'few': 2.0, 'times': 1.0, 'at': 1.0, 'customer': 1.0, 'bottom': 1.0, 'of': 1.0, 'wear': 1.0, 'better': 1.0, 'writing': 1.0, 'and': 1.0, 'via': 1.0, 'service': 1.0, 'great': 1.0, 'emails': 1.0, 'in': 1.0}
Word element => {'morning': 1.0, 'up': 1.0, 'comfort': 1.0, 'fur': 1.0, 'soft': 1.0, 'eats': 1.0, 'when': 2.0, 'her': 2.0, 'carry': 1.0, 'will': 1.0, 'and': 2.0, 'sees': 1.0, 'on': 1.0, 'months': 1.0, 'seven': 1.0, 'one': 1.0, 'just': 1.0, 's': 1.0, 'you': 1.0, 'came': 1.0, 'a': 2.0, 'the': 1.0, 'replace': 1.0, 'head': 1.0, 'lay': 1.0, 'blanket': 1.0, 'lights': 1.0, 'to': 2.0, 'newborn': 1.0, 'loves': 1.0, 'monkey': 1.0, 'every': 1.0, 'loved': 1.0, 'elephant': 1.0, 'that': 2.0, 'rattle': 1.0, 'our': 1.0, 'bought': 1.0, 'we': 1.0, 'first': 1.0, 'it': 2.0, 'this': 2.0, 'with': 2.0, 'paired': 1.0, 'equally': 1.0, 'she': 6.0}
Word element => {'recommend': 1.0, 'highly': 1.0, 'earaches': 1.0, 'can': 1.0, 'be': 1.0, 'toby': 1.0, 'loves': 1.0, 'used': 1.0, 'does': 1.0, 'hat': 1.0, 'and': 1.0, 'me': 2.0, 'also': 1.0, 'in': 1.0, 'convenient': 1.0, 'cap': 3.0, 'no': 1.0, 'for': 3.0, 'love': 3.0, 'this': 2.0, 'it': 4.0, 's': 1.0, 'i': 3.0, 'my': 2.0, 'the': 4.0, 'daughter': 1.0, 'kids': 1.0, 'longer': 1.0, 'character': 1.0, 'to': 1.0, 'all': 1.0, 'have': 1.0, 'pack': 1.0, 'place': 1.0, 'hold': 1.0, 'so': 1.0, 'ice': 1.0}
Word element => {'it': 2.0, 'but': 1.0, 'use': 1.0, 'once': 1.0, 'to': 1.0, 'our': 1.0, 'had': 1.0, 'daughter': 1.0, 'thinks': 1.0, 'is': 1.0, 'the': 1.0, 'only': 1.0, 'coolest': 1.0, 'was': 1.0, 'thing': 1.0, 'we': 1.0, 'wonderful': 1.0, 'this': 1.0, 'have': 1.0, 'thankfully': 1.0}
Word element => {'sports': 1.0, 'the': 1.0, 'blanket': 1.0, 'for': 1.0, 'boyish': 1.0, 'great': 1.0, 'love': 1.0, 'it': 1.0, 'lovers': 1.0, 'i': 1.0, 'better': 1.0, 'size': 1.0, 'very': 1.0, 'and': 2.0, 'perfect': 1.0, 'than': 1.0, 'weight': 1.0, 'expected': 1.0, 'soft': 1.0}
Word element => {'faint': 1.0, 'has': 1.0, 'still': 1.0, 'but': 1.0, 'detergents': 1.0, 'and': 1.0, 'have': 2.0, 'is': 1.0, 'when': 1.0, 'smell': 2.0, 'problem': 1.0, 'wash': 1.0, 'this': 2.0, 'with': 2.0, 'it': 2.0, 'only': 1.0, 'that': 2.0, 'you': 1.0, 'the': 2.0, 'i': 2.0, 'tried': 1.0, 'even': 1.0, 'to': 1.0, 'clean': 1.0, 'several': 1.0, 'hold': 1.0, 'times': 1.0, 'different': 1.0, 'soaps': 1.0}
Word element => {'bay': 1.0, 'at': 2.0, 'great': 1.0, 'on': 1.0, 'dirty': 1.0, 'go': 1.0, 'a': 1.0, 'nappy': 1.0, 'change': 1.0, 'need': 1.0, 'bought': 1.0, 'to': 2.0, 'odors': 1.0, 'this': 1.0, 'bag': 1.0, 'keeping': 1.0, 'keep': 1.0, 'the': 2.0, 'in': 1.0, 'diaper': 1.0, 'for': 1.0, 'when': 1.0, 'we': 1.0}
Word element => {'definitely': 1.0, 'would': 1.0, 'pic': 1.0, 'still': 1.0, 'quality': 1.0, 'twice': 1.0, 'washed': 1.0, 've': 1.0, 'wash': 1.0, 'to': 1.0, 'recommend': 1.0, 'table': 1.0, 'and': 4.0, 'changing': 2.0, 'mine': 1.0, 'for': 1.0, 'cover': 1.0, 'boy': 1.0, 'it': 2.0, 'this': 2.0, 'pad': 1.0, 'baby': 1.0, 'my': 1.0, 'product': 1.0, 'bought': 1.0, 's': 1.0, 'i': 2.0, 'is': 2.0, 'really': 1.0, 'great': 1.0, 'slips': 1.0, 'the': 2.0, 'removes': 1.0, 'nice': 1.0, 'over': 1.0, 'soft': 1.0, 'easily': 2.0}
Word element => {'new': 1.0, 'my': 1.0, 'on': 1.0, 'see': 1.0, 'granddaughter': 1.0, 'to': 1.0, 'wait': 1.0, 'so': 1.0, 'it': 2.0, 'this': 1.0, 'band': 1.0, 'i': 2.0, 'ever': 1.0, 'shoes': 1.0, 'bib': 1.0, 'matching': 1.0, 'and': 2.0, 'cutest': 1.0, 'cute': 1.0, 'absolutely': 1.0, 'hair': 1.0, 't': 1.0, 'the': 2.0, '2': 1.0, 'bought': 1.0, 'can': 1.0, 'seen': 1.0, 'mud': 1.0, 'rosette': 1.0, 'all': 2.0, 'have': 1.0, 'pie': 1.0, 'also': 1.0, 'pc': 1.0, 'is': 2.0, 'gown': 1.0, 'outfit': 1.0}
Word element => {'last': 1.0, 'will': 1.0, 'been': 1.0, 'has': 1.0, 'loves': 1.0, 'nose': 1.0, 'the': 1.0, 'soft': 1.0, 'and': 3.0, 'so': 1.0, 'care': 1.0, 'newborn': 1.0, 'lifetime': 1.0, 'we': 2.0, 'my': 1.0, 'cute': 1.0, 'gift': 1.0, 'take': 1.0, 'a': 3.0, 'now': 1.0, 'to': 3.0, 'was': 1.0, 'long': 1.0, 'select': 1.0, 'very': 2.0, 'son': 1.0, 'as': 2.0, 'is': 2.0, 'many': 1.0, 'months': 1.0, 'on': 1.0, 'natural': 1.0, 'favorite': 1.0, 'toys': 1.0, 'of': 1.0, 'can': 1.0, 'for': 2.0, 'durable': 1.0, 'it': 1.0, 'he': 1.0, 'this': 2.0, 'children': 1.0, '8': 1.0, 'all': 1.0, 'our': 1.0, 'chew': 1.0, 'elephant': 1.0}
Word element => {'i': 1.0, 'recommend': 1.0, 'minutes': 1.0, 'every': 1.0, 'to': 1.0, 'running': 1.0, 'the': 4.0, '1': 1.0, 'staring': 1.0, 'short': 1.0, 'or': 1.0, 'baby': 2.0, 'attention': 1.0, 's': 1.0, 'a': 3.0, 'mobile': 1.0, 'half': 1.0, 'has': 1.0, 'flower': 1.0, 'plan': 1.0, 'is': 2.0, 'that': 1.0, 'back': 1.0, 'boring': 1.0, 'this': 1.0, 'period': 1.0, 'no': 1.0, 'at': 1.0, 'aspects': 1.0, 'plays': 1.0, 'very': 1.0, 'pink': 1.0, 'and': 1.0, 'nursery': 1.0, 'do': 2.0, 'draw': 1.0, 'would': 1.0, 'sides': 1.0, 'because': 1.0, 'not': 2.0, 'both': 1.0, 'have': 1.0, 'picture': 1.0, '2': 1.0, 'music': 1.0, 'also': 1.0, 'you': 1.0, 'unless': 1.0, 'for': 1.0, 'solid': 1.0, 'an': 1.0, 'extremely': 1.0, 'of': 1.0, 'interest': 1.0, 'time': 2.0, 'so': 1.0, 'on': 1.0}
Word element => {'intake': 1.0, 'equals': 1.0, 'container': 1.0, 'volume': 1.0, 'cup': 1.0, 'because': 1.0, 'choices': 1.0, 'carry': 1.0, 'will': 1.0, 'the': 5.0, 'fits': 1.0, 'tote': 1.0, 'this': 2.0, 'greater': 1.0, 'light': 1.0, 'virtually': 1.0, 'matches': 1.0, 'can': 1.0, 'clip': 1.0, 'if': 1.0, 'future': 1.0, 'keep': 1.0, 'color': 1.0, 'one': 2.0, 'for': 1.0, 'bottle': 2.0, 'little': 1.0, 'a': 4.0, 'house': 1.0, 're': 1.0, 'hoping': 1.0, 'in': 4.0, 'new': 1.0, 'sipping': 1.0, 'baby': 1.0, 'bag': 1.0, 'need': 1.0, 'which': 1.0, 'of': 2.0, 'that': 1.0, 'to': 2.0, 'any': 1.0, 'our': 2.0, 'although': 1.0, 'you': 1.0, 'weight': 1.0, 'visible': 1.0, 'bill': 1.0, 'other': 1.0, 'design': 1.0, 'keeps': 1.0, 'provides': 1.0, 'reminder': 1.0, 'items': 1.0, 'h2o': 1.0, 'fresh': 1.0, 'water': 1.0, 'line': 1.0, 'feature': 1.0, 'i': 1.0, 'fun': 1.0, 'm': 1.0, 'amazon': 1.0}
Word element => {'product': 1.0, 'you': 1.0, 'what': 1.0, 'pay': 1.0, 'good': 1.0, 'unusable': 1.0, 'an': 1.0, 'doesn': 1.0, 'a': 2.0, 'this': 2.0, 'it': 1.0, 'not': 1.0, 'trip': 1.0, 'much': 1.0, 'to': 1.0, 'hold': 1.0, 'plane': 1.0, 'got': 1.0, 'bottles': 1.0, 'deal': 1.0, 'over': 1.0, 'bused': 1.0, '8': 1.0, 'oz': 1.0, 't': 1.0, 'the': 2.0, 'cap': 1.0, 'of': 1.0, 'for': 3.0, 'one': 1.0, 'actually': 1.0, 'arrived': 1.0}
Word element => {'exactly': 1.0, 'is': 1.0, 'them': 1.0, 'loves': 1.0, 'pictured': 1.0, 'soft': 1.0, 'light': 1.0, 'sweet': 1.0, 'cotton': 1.0, 'on': 1.0, 'warmth': 1.0, 'and': 2.0, 'precious': 1.0, 'so': 1.0, 'provide': 1.0, 'a': 1.0, 'are': 1.0, 'my': 1.0, 'these': 1.0, 'that': 1.0, 'does': 1.0, 'extra': 1.0, 'bought': 1.0, 'for': 1.0, 'as': 1.0, 'pink': 1.0, 'year': 1.0, '5': 1.0, 'old': 1.0, 'she': 1.0}
Word element => {'supply': 1.0, 'good': 1.0, 'will': 1.0, 'grandchild': 1.0, 'when': 1.0, 'so': 1.0, 'up': 1.0, 'remember': 1.0, 'grandchildren': 1.0, 'colic': 1.0, 'm': 1.0, 'both': 1.0, 'arrives': 1.0, 'in': 1.0, 'excess': 1.0, 'them': 1.0, 'which': 1.0, 'using': 1.0, 'well': 1.0, 'my': 2.0, 'the': 7.0, 'these': 1.0, 'is': 1.0, 'more': 1.0, 'work': 1.0, 'real': 2.0, 'stocking': 1.0, 'helped': 1.0, 'are': 1.0, 'nipples': 1.0, 'shame': 1.0, 'only': 1.0, 'nipple': 1.0, 'children': 1.0, 'own': 1.0, 'they': 3.0, 'just': 3.0, 'right': 2.0, 'size': 1.0, 'i': 3.0, 'texture': 1.0, 'have': 2.0, 'next': 1.0, 'case': 1.0, 'that': 2.0, 'avoid': 1.0, 'babies': 1.0, 'gas': 1.0, 'a': 2.0, 'hole': 1.0, 'and': 3.0, 'shape': 1.0, 'comfortable': 1.0, 'feel': 1.0, 'were': 1.0, 'softness': 1.0, 'of': 1.0, 'with': 2.0, 'buying': 1.0}
Word element => {'cute': 1.0, 'is': 1.0, 'and': 1.0, 'pattern': 1.0, 'soft': 1.0, 'she': 1.0, 'baby': 1.0, 'loves': 1.0, 'blanket': 1.0, 'law': 1.0, 'in': 2.0, 'this': 1.0, 'it': 2.0, 'sister': 1.0, 'for': 1.0, 'my': 2.0, 'the': 4.0, 'all': 1.0, 'stroller': 1.0, 'time': 1.0, 'uses': 1.0, 'on': 1.0, 'new': 1.0, 'nephew': 1.0, 'floor': 1.0, 'etc': 1.0, 's': 1.0, 'retro': 1.0, 'so': 1.0}
Word element => {'or': 1.0, 'boy': 1.0, 'buy': 1.0, 'beautiful': 1.0, 'not': 1.0, 'but': 1.0, 'knew': 1.0, 'hit': 1.0, 'will': 1.0, 'guests': 1.0, 'a': 2.0, 't': 1.0, '40': 1.0, 'to': 5.0, 'easily': 1.0, 'that': 2.0, 'party': 3.0, 'down': 3.0, 'hands': 1.0, 'for': 2.0, 'girl': 1.0, 'where': 1.0, 'see': 1.0, 'until': 1.0, 'great': 1.0, 'cute': 1.0, 'made': 1.0, 'gift': 5.0, 'plush': 1.0, 'bought': 1.0, 'me': 1.0, 'entire': 1.0, 'and': 5.0, 'when': 1.0, 'any': 1.0, 'feel': 1.0, 'idea': 1.0, 'bear': 2.0, 'by': 1.0, 'passed': 1.0, 'popular': 1.0, 'compliments': 1.0, 'guilty': 1.0, 'shower': 2.0, 'the': 12.0, 'of': 1.0, 'this': 3.0, 'it': 12.0, 'precious': 1.0, 'had': 2.0, 'sweetest': 1.0, 'everyone': 2.0, 'wanted': 2.0, 'was': 5.0, 'expecting': 1.0, 'far': 1.0, 'day': 2.0, 'lay': 1.0, 'all': 1.0, 'ever': 1.0, 'hear': 1.0, 'felt': 1.0, 'super': 1.0, 'only': 2.0, 'biggest': 1.0, 'adorable': 1.0, 'is': 2.0, 'at': 1.0, 'you': 1.0, 'recites': 1.0, 'knees': 1.0, 'now': 1.0, 'in': 1.0, 'recently': 1.0, 'cutest': 1.0, 'no': 1.0, 'calming': 1.0, 'from': 2.0, 'voice': 1.0, 'little': 3.0, 'on': 2.0, 'around': 1.0, 'his': 2.0, 'with': 1.0, 'paws': 1.0, 'got': 2.0, 'ordered': 1.0, 'didn': 1.0, 'can': 1.0, 'so': 2.0, 'payer': 1.0, 'baby': 3.0, 'many': 1.0, 'praying': 1.0, 'know': 2.0, 'item': 2.0, 'how': 1.0, 'shipped': 1.0, '34': 2.0, 'mommy': 1.0, 'most': 2.0, 'sleep': 1.0, 'directly': 1.0, 'amazon': 1.0, 'be': 1.0, 'i': 10.0, 'well': 1.0}
Word element => {'recommend': 1.0, 'definitely': 1.0, 'would': 1.0, 'softly': 1.0, 'plays': 1.0, 'soft': 1.0, 'and': 2.0, 'cuddly': 1.0, 'my': 1.0, 'so': 2.0, 'loved': 1.0, 'grandson': 1.0, 'this': 1.0, 'loves': 1.0, 'absolutely': 1.0, 'it': 3.0}
Word element => {'others': 1.0, 'some': 1.0, 'not': 1.0, 'seen': 1.0, 'muffled': 1.0, 'understand': 1.0, 'my': 1.0, 'like': 1.0, 'and': 1.0, 'i': 1.0, 'one': 1.0, 'year': 1.0, 'to': 1.0, 'old': 1.0, 'it': 2.0, 's': 2.0, 'have': 1.0, 'loves': 1.0, 'this': 1.0, 'soft': 1.0, 'easy': 1.0}
Word element => {'off': 1.0, 'slides': 1.0, 'ripped': 1.0, '4': 1.0, 'one': 1.0, 'my': 1.0, 'the': 1.0, 'always': 1.0, 'of': 1.0, 'much': 1.0, 'dreamed': 1.0, 'was': 1.0, 'old': 1.0, 'night': 1.0, 'a': 1.0, 'she': 1.0, 'yr': 1.0, 'bear': 2.0, 'by': 1.0, 'daughter': 1.0, 'slept': 1.0, 'this': 1.0, 'it': 1.0, 'with': 1.0, 'is': 1.0, 'and': 2.0, 'hat': 1.0}
Word element => {'prayers': 1.0, 'can': 1.0, 'learn': 1.0, 'she': 1.0, 'so': 1.0, 'my': 1.0, 'granddaughter': 1.0, 'to': 2.0, 'time': 1.0, 'coming': 1.0, 'i': 2.0, 'since': 1.0, 'in': 1.0, 'having': 1.0, 'apart': 1.0, 'exchange': 1.0, 'not': 1.0, 'seam': 1.0, 'do': 1.0, 'me': 1.0, 'give': 1.0, 'have': 1.0, '2': 1.0, 'damaged': 1.0, 'am': 1.0, 'someone': 1.0, 'sew': 1.0, 'want': 1.0, 'this': 2.0, 'it': 1.0, 'english': 1.0, 'for': 1.0}
Word element => {'this': 1.0, 'is': 1.0, 'the': 1.0, '5th': 1.0, 'for': 1.0, 'one': 1.0, 'i': 1.0, 've': 1.0, 'purchased': 1.0, 'christening': 1.0, 'great': 1.0, 'gift': 1.0}
Word element => {'buz': 1.0, 'his': 2.0, 'is': 1.0, 'on': 1.0, 'looked': 1.0, 'toy': 1.0, 'story': 1.0, 'favorite': 1.0, 'bed': 2.0, 'setit': 1.0, 'and': 3.0, 'my': 1.0, 'colorful': 1.0, 'grandson': 1.0, 'loved': 1.0, 'was': 1.0, 'great': 1.0, 'it': 2.0}
Word element => {'together': 1.0, 'the': 1.0, 'my': 1.0, 'loves': 1.0, 'material': 1.0, 'son': 1.0, 'come': 1.0, 'it': 2.0, 'with': 1.0, 'set': 1.0, 'fun': 1.0, 'comfortable': 1.0, 'bed': 1.0, 'is': 1.0, 'really': 2.0, 'nice': 1.0, 'its': 1.0, 'soft': 1.0, 'and': 1.0, 'toy': 1.0, 'story': 1.0, 'all': 1.0, 'characters': 1.0, 'printed': 1.0, 'makes': 1.0}
Word element => {'recommend': 1.0, 'would': 1.0, 'and': 1.0, 'excellent': 1.0, 'product': 1.0, 'make': 1.0, 'can': 1.0, 'shown': 1.0, 'trees': 1.0, 'two': 1.0, 'of': 1.0, 'big': 1.0, 'as': 2.0, 'main': 1.0, 'way': 1.0, 'you': 1.0, 'wall': 1.0, 'thing': 1.0, 'to': 2.0, 'didn': 1.0, 'either': 1.0, 'instead': 1.0, 'is': 3.0, 'anyone': 1.0, 'pieces': 1.0, 'when': 1.0, 'time': 1.0, 'your': 1.0, 'tree': 2.0, 'one': 2.0, 'i': 2.0, 'take': 1.0, 'it': 2.0, 'applying': 1.0, 'several': 1.0, 'the': 3.0, 't': 1.0, 'that': 1.0, 'realize': 1.0}
Word element => {'chain': 1.0, 'by': 1.0, 'weighed': 1.0, 'get': 1.0, 'down': 1.0, 'doesn': 1.0, 'so': 1.0, 'and': 1.0, 'works': 1.0, 'easy': 1.0, 'to': 2.0, 'fine': 2.0, 'is': 3.0, 'pacifier': 1.0, 'light': 1.0, 'clip': 1.0, 'aren': 1.0, 'attach': 1.0, 'some': 1.0, 't': 2.0}
Word element => {'gift': 1.0, 'also': 1.0, 'was': 1.0, 'and': 1.0, 'a': 3.0, 'complement': 1.0, 'shower': 1.0, 'the': 1.0, 'perfect': 1.0, 'pacifier': 1.0, 'to': 1.0, 'great': 1.0, 'yankess': 1.0, 'buy': 1.0, 'set': 1.0, 'for': 1.0, 'durable': 1.0, 'which': 1.0}
Word element => {'much': 1.0, 'too': 1.0, 'view': 1.0, 'block': 1.0, 'son': 1.0, 'my': 2.0, 'doesn': 1.0, 'but': 2.0, 'just': 1.0, 'than': 1.0, 'didn': 1.0, 'perfect': 1.0, 'mirror': 1.0, 'see': 1.0, 'a': 2.0, 'that': 1.0, 'something': 2.0, 'for': 1.0, 'size': 1.0, 'looking': 1.0, 'great': 1.0, 'more': 1.0, 't': 2.0, 'to': 1.0, 'was': 2.0, 'lights': 1.0, 'sounds': 1.0, 'this': 1.0, 'with': 1.0, 'want': 1.0, 'is': 1.0, 'easy': 1.0, 'lot': 1.0, 'of': 1.0, 'and': 1.0}
Word element => {'while': 1.0, 'mind': 1.0, 'of': 1.0, 'peace': 1.0, 'gave': 1.0, 'easily': 1.0, 'driving': 1.0, 'adjusts': 1.0, 'on': 1.0, 'absolutely': 1.0, 'purchasing': 1.0, 'me': 1.0, 'and': 3.0, 'the': 2.0, 'my': 3.0, 'regret': 1.0, 'not': 1.0, 'to': 1.0, 'was': 1.0, 'able': 1.0, 'very': 1.0, 'adorable': 1.0, 'son': 1.0, 'birds': 1.0, 'mirror': 2.0, 'it': 3.0, 'only': 1.0, 'this': 1.0, 'loved': 1.0, 'is': 2.0, 'sooner': 1.0, 'i': 1.0, 'see': 1.0, 'baby': 1.0}
Word element => {'car': 1.0, 'a': 1.0, 'we': 1.0, 'once': 1.0, 'my': 1.0, 'in': 1.0, 'rest': 1.0, 'head': 1.0, 'nissan': 1.0, 'to': 1.0, 'it': 2.0, 'xterra': 1.0, 'new': 1.0, 'fit': 1.0, 'the': 1.0, 't': 1.0, 'have': 1.0, 'cute': 1.0, 'get': 1.0, 'probably': 1.0, 'ways': 1.0, 'on': 1.0, 'side': 1.0, 'doesn': 1.0, 'but': 1.0, 'put': 1.0, 'will': 1.0, 'work': 1.0, 'better': 1.0}
Word element => {'great': 1.0, 'saving': 1.0, 'are': 1.0, 'not': 1.0, 'grey': 1.0, 'be': 1.0, 'they': 1.0, 'new': 1.0, 'would': 1.0, 'color': 1.0, 'seats': 1.0, 'certainly': 1.0, 'bright': 1.0, 'personal': 1.0, 'really': 1.0, 'only': 1.0, 'present': 1.0, 'is': 2.0, 'x': 1.0, 'thing': 1.0, 'no': 1.0, 'i': 3.0, 'car': 1.0, 'nautilus': 1.0, 'right': 1.0, 'just': 3.0, 'on': 1.0, '34': 2.0, 'both': 1.0, 'got': 1.0, 'silicone': 2.0, 'even': 1.0, 'graco': 1.0, 'when': 1.0, 'protector': 2.0, 'due': 1.0, 'the': 4.0, 'lower': 1.0, 'these': 2.0, 'care': 1.0, 'adjustable': 1.0, 'this': 2.0, 'it': 2.0, 'product': 1.0, 'for': 3.0, 'fit': 1.0, 'rather': 1.0, 'of': 3.0, 'don': 1.0, 'up': 1.0, 'totally': 1.0, 'that': 1.0, 'and': 3.0, 'perfectly': 1.0, 'padding': 2.0, 'summer': 1.0, 'but': 1.0, 'top': 1.0, 'back': 1.0, 'upright': 1.0, 'vehicles': 1.0, 'ordered': 1.0, 't': 1.0, 'lined': 1.0, 'a': 2.0, 'review': 1.0, 'well': 2.0, 'blue': 2.0, 'sent': 1.0, 'my': 1.0, 'vehicle': 1.0, 'another': 1.0, 'any': 1.0, 'preference': 1.0, 'seat': 2.0, 'our': 2.0, 'as': 2.0, 'to': 1.0, 'does': 1.0, 'having': 1.0, 'loop': 1.0, 'warrant': 1.0, 'belt': 1.0, 'keeps': 1.0}
Word element => {'of': 1.0, 'brica': 1.0, 'still': 1.0, 'rest': 1.0, 'head': 1.0, 'high': 1.0, 'cuts': 1.0, 'so': 1.0, 'that': 3.0, 'is': 2.0, 'bummer': 1.0, 'to': 1.0, 'has': 1.0, 'seat': 2.0, 'if': 1.0, 'prevented': 1.0, 'keeps': 1.0, 'protected': 1.0, 'as': 1.0, 'from': 1.0, 'car': 1.0, 'compression': 1.0, 'only': 1.0, 'it': 4.0, 'into': 1.0, 'checked': 1.0, 'i': 1.0, 'doesn': 1.0, 'but': 2.0, 'them': 1.0, 'marks': 1.0, 'fits': 1.0, 'none': 1.0, 'shoes': 1.0, 't': 2.0, 'the': 5.0, 'see': 1.0, 'well': 1.0, 'do': 1.0, 'reach': 1.0, 'and': 1.0, 'tall': 1.0, 'haven': 1.0, 'dirty': 1.0}
Word element => {'for': 1.0, 'price': 1.0, 'protection': 1.0, 'absolutely': 1.0, 'car': 1.0, 'with': 1.0, 'have': 1.0, 'the': 1.0, 'are': 1.0, 'worth': 1.0, 'currently': 1.0, 'leasing': 1.0, 'of': 1.0, 'these': 1.0, 'our': 1.0, 'seats': 1.0, 'and': 1.0, 'vehicle': 1.0, 'ideal': 1.0, 'we': 1.0, '3': 1.0}
Word element => {'wrong': 1.0, 'go': 1.0, 'between': 1.0, 'bucks': 1.0, 'you': 1.0, 'or': 1.0, 'marks': 1.0, 'there': 1.0, 'that': 1.0, 'a': 7.0, 'we': 2.0, 'on': 4.0, 'were': 1.0, 'rubbery': 1.0, 'little': 1.0, 'like': 1.0, 'gray': 2.0, 'prince': 3.0, 'is': 3.0, 'more': 4.0, 'our': 1.0, 'one': 4.0, 'seatsaver': 1.0, 'seat': 3.0, 'in': 4.0, 'was': 2.0, 'protector': 1.0, 'have': 1.0, 'as': 1.0, 'leave': 1.0, 'car': 1.0, 'bmw': 1.0, 'infant': 1.0, '30': 1.0, 'much': 2.0, 'pictures': 1.0, 'and': 5.0, 'stage': 1.0, 'the': 11.0, 'debating': 1.0, '2': 1.0, 'but': 2.0, 'place': 1.0, 'currently': 1.0, 'see': 1.0, 'lionheart': 4.0, 'are': 2.0, 'nicer': 1.0, 'material': 1.0, 'strips': 1.0, 'it': 8.0, 'with': 3.0, 'other': 1.0, 'an': 1.0, 'than': 1.0, '5': 1.0, 'series': 1.0, 'theprince': 1.0, 'looks': 2.0, 'keyfit': 1.0, 'carrier': 2.0, 'back': 1.0, 'sturdy': 1.0, 'provides': 1.0, 'has': 1.0, 'chicco': 1.0, 'no': 2.0, 'slip': 1.0, 'both': 2.0, 's': 3.0, 'sides': 1.0, 'definitely': 1.0, 'better': 3.0, 'hours': 1.0, 'coverage': 1.0, 'bottom': 1.0, 'when': 1.0, 'using': 1.0, 'light': 1.0, 'thicker': 1.0, 'this': 5.0, 'few': 2.0, 'worried': 1.0, 'here': 1.0, 'actually': 1.0, 'for': 4.0, 'if': 1.0, 'charcoal': 1.0, 'yesterday': 1.0, 'cloth': 1.0, 'base': 1.0, 'after': 1.0, 'well': 1.0, 'i': 3.0, 'to': 1.0, 'pulled': 1.0, 'nothing': 1.0, 'out': 1.0, '07': 1.0, 'checked': 1.0, 'leaving': 1.0, 'being': 1.0, 'indentations': 1.0, 'box': 1.0, 'blackin': 1.0, 'just': 2.0, 'seats': 1.0, 'month': 1.0, 'dent': 1.0, 'can': 1.0, 'so': 1.0, 'pleased': 1.0}
Word element => {'get': 1.0, 'please': 1.0, 'it': 1.0, 'love': 2.0, 'this': 2.0, 'car': 2.0, 'thing': 1.0, 'protects': 1.0, 'truly': 1.0, 'the': 1.0, 'you': 2.0, 'leather': 1.0, 'of': 1.0, 'i': 1.0, 'your': 1.0, 'if': 1.0}
Word element => {'under': 1.0, 'a': 1.0, 'towel': 1.0, 'put': 1.0, 'to': 1.0, 'have': 1.0, 'not': 1.0, 'seat': 2.0, 'protector': 1.0, 'guardian': 1.0, 'do': 1.0, 'car': 2.0, 'the': 2.0, 'offers': 1.0, 'now': 1.0, 'great': 1.0, 'coverage': 1.0, 'we': 1.0}
Word element => {'slide': 1.0, 'doesn': 1.0, 'fits': 1.0, 'after': 1.0, 'cheaper': 1.0, 'around': 1.0, 'new': 1.0, 'vehicle': 1.0, 'gmc': 1.0, 'a': 2.0, 'matches': 1.0, 'to': 1.0, 'one': 1.0, 'purchasing': 1.0, 'bought': 1.0, 'this': 1.0, 'with': 1.0, 'it': 2.0, 'and': 1.0, 'perfectly': 1.0, 'color': 1.0, 'leather': 1.0, 'my': 1.0, 't': 1.0, 'great': 1.0, 'replace': 1.0, 'the': 1.0, 'terrain': 1.0, 'also': 1.0}
Word element => {'problem': 1.0, 'but': 1.0, 'enough': 1.0, 'long': 1.0, 'straps': 1.0, 'that': 1.0, 'specific': 1.0, 'decide': 1.0, 'cents': 1.0, 'of': 1.0, 'couple': 1.0, 'have': 2.0, 'else': 1.0, 'dog': 1.0, 'bought': 1.0, 'i': 1.0, 'making': 1.0, 'an': 1.0, 'in': 1.0, 'bmw': 1.0, 'car': 3.0, 'addition': 1.0, 'same': 1.0, 'choice': 1.0, 'the': 6.0, 'others': 1.0, 'such': 1.0, 'even': 1.0, 'safety': 1.0, 'by': 1.0, 'around': 1.0, 'more': 1.0, 'is': 3.0, 'x6': 1.0, 'brica': 1.0, 'on': 2.0, 'won': 1.0, 'short': 2.0, 'are': 1.0, 'strap': 2.0, 'skimp': 1.0, 'this': 2.0, 'covers': 1.0, 'it': 3.0, 'since': 1.0, 'might': 1.0, 's': 1.0, 't': 1.0, 'a': 5.0, 'too': 1.0, 'and': 1.0, '1': 1.0, 'poor': 1.0, 'makes': 1.0, 'design': 1.0, 'headrest': 1.0, 'impossible': 1.0, 'fit': 1.0, 'product': 1.0, 'for': 3.0, 'longer': 1.0, 'consciousness': 1.0, 'to': 2.0, 'seat': 2.0, 'all': 1.0, 'not': 1.0, 'me': 1.0, 'give': 1.0, 'than': 1.0, 'back': 1.0, 'top': 1.0, 'star': 1.0, 'what': 2.0, 'did': 2.0, 'my': 2.0, 'save': 1.0}
Word element => {'messes': 1.0, 'enough': 1.0, 'hold': 1.0, 'explorer': 1.0, 'is': 1.0, 'protector': 1.0, 'seat': 1.0, 'like': 1.0, 'seats': 1.0, 'this': 1.0, 'it': 1.0, 'i': 1.0, 'to': 2.0, 'its': 1.0, 'and': 2.0, 'shape': 1.0, 's': 1.0, 'baby': 1.0, 'firm': 1.0, 'helps': 1.0, 'leather': 1.0, 'my': 1.0, 'protect': 1.0, 'from': 1.0, 'dents': 1.0}
Word element => {'matches': 1.0, 'grey': 1.0, 'love': 1.0, 'also': 1.0, 'in': 2.0, 'install': 2.0, 'easy': 2.0, 'tell': 1.0, 'winner': 1.0, 'problem': 1.0, 'use': 1.0, 'sturdy': 1.0, 'years': 1.0, 'place': 1.0, 'job': 1.0, 'the': 3.0, 'melt': 2.0, 'other': 1.0, 'can': 3.0, 'each': 1.0, 'i': 4.0, 'ordered': 1.0, 'car': 4.0, 'which': 1.0, 'reading': 1.0, 'once': 1.0, 'of': 1.0, 'clearly': 1.0, 'our': 1.0, 'any': 1.0, 'to': 5.0, 'seat': 5.0, 'not': 1.0, 'protector': 2.0, 'have': 2.0, 'that': 4.0, 'after': 2.0, 'reviews': 1.0, 'doing': 1.0, 'this': 3.0, 'with': 1.0, 'it': 6.0, 'causing': 1.0, 'when': 1.0, 'you': 2.0, 'a': 2.0, 'go': 1.0, 'uninstall': 1.0, 'heat': 1.0, 'protectors': 1.0, 'them': 1.0, 'out': 1.0, 'does': 1.0, 'down': 1.0, 'really': 1.0, 'material': 1.0, 'comes': 1.0, 'is': 4.0, 'very': 3.0, 'and': 2.0, 'time': 1.0, 'take': 1.0, 'seats': 2.0, 'your': 1.0, 'put': 1.0}
Word element => {'my': 1.0, 'up': 1.0, 'holding': 1.0, 'in': 2.0, 've': 1.0, 'with': 1.0, 'this': 2.0, 'abuse': 1.0, 'durable': 1.0, 'car': 1.0, 'get': 1.0, 'and': 3.0, 'was': 1.0, 'now': 1.0, 'little': 1.0, 'been': 1.0, 'bit': 1.0, 'so': 2.0, 'it': 4.0, 'month': 1.0, 'far': 2.0, 'struggle': 1.0, 'of': 1.0, 'i': 3.0, 'is': 2.0, 'our': 1.0, 'to': 3.0, 'seat': 3.0, 'installed': 1.0, 'because': 1.0, 'reaching': 1.0, 'difficult': 1.0, 'protector': 1.0, 'properly': 1.0, 's': 1.0, 'a': 4.0, 'bars': 1.0, 'toddler': 1.0, 'thick': 1.0, 'made': 1.0, 'place': 1.0, 'the': 5.0, 'attach': 1.0, 'latch': 1.0, 'really': 1.0, 'material': 1.0, 'clips': 1.0, 'colors': 1.0, 'about': 1.0, 'lot': 1.0, 'like': 2.0, 'using': 1.0, 'for': 1.0}
Word element => {'next': 1.0, 'son': 1.0, 'one': 1.0, 'the': 4.0, 's': 1.0, 't': 1.0, 'plan': 1.0, 'is': 1.0, 'leather': 1.0, 'with': 1.0, 'this': 2.0, 'it': 2.0, 'thick': 1.0, 'uses': 1.0, 'i': 5.0, 'given': 1.0, 'for': 1.0, 'love': 1.0, 'product': 1.0, 'booster': 1.0, 'daughter': 1.0, 'purchase': 1.0, 'my': 4.0, 'fits': 1.0, 'perfectly': 1.0, 'and': 3.0, 'getting': 1.0, 'very': 2.0, 'protects': 1.0, 'don': 1.0, 'about': 1.0, 'seat': 5.0, 'to': 3.0, 'any': 1.0, 'have': 1.0, 'protector': 1.0, 'worry': 1.0, 'guardian': 1.0, 'of': 1.0, 'upholstery': 1.0, 'car': 3.0, 'definitely': 1.0, 'dirty': 1.0, 'or': 1.0, 'leaving': 1.0, 'carseat': 1.0, 'durable': 1.0, 'indents': 1.0, 'review': 1.0, 'well': 1.0, 'would': 1.0, 'was': 1.0, 'recommend': 1.0, 'brica': 1.0}
Word element => {'two': 1.0, 'destruction': 1.0, 'my': 1.0, 'keep': 1.0, 'will': 1.0, 'system': 1.0, 'latch': 1.0, 'use': 1.0, 'and': 1.0, 'apart': 1.0, 'like': 1.0, 'other': 1.0, 'hopefully': 1.0, 'wish': 1.0, 'i': 3.0, 'seats': 1.0, 'cover': 3.0, 'were': 1.0, 'that': 2.0, 'car': 1.0, 'with': 1.0, 'only': 1.0, 'it': 2.0, 'this': 2.0, 'a': 1.0, 'seat': 2.0, 'little': 2.0, 'easy': 1.0, 'might': 1.0, 'bigger': 1.0, 'comes': 1.0, 'to': 2.0, 'ones': 1.0, 'more': 1.0, 'the': 3.0, 'is': 1.0, 'people': 1.0, 'course': 1.0, 'from': 1.0, 'why': 1.0, 'love': 1.0, 'annoy': 1.0, 'of': 3.0, 'understand': 1.0}
Word element => {'trashed': 1.0, 'keep': 1.0, 'way': 1.0, 'only': 1.0, 'its': 1.0, 'chair': 1.0, 'back': 1.0, 'into': 1.0, 'tucked': 1.0, 'left': 1.0, 'around': 1.0, 'snap': 1.0, 'buckle': 1.0, 'head': 1.0, 'unfolded': 1.0, 'rest': 1.0, 't': 1.0, 'don': 1.0, 'right': 1.0, 'screw': 1.0, 'meet': 1.0, 'up': 2.0, 'time': 2.0, 'so': 1.0, 'bit': 1.0, 'hook': 2.0, 'had': 2.0, 'hooked': 1.0, 'to': 8.0, 'as': 1.0, 'went': 1.0, 'and': 5.0, 'getting': 2.0, 'get': 1.0, 'sure': 1.0, 'could': 1.0, 'fine': 1.0, 'we': 3.0, 'a': 6.0, 's': 1.0, 'leather': 1.0, '4': 1.0, 'seats': 1.0, 'just': 4.0, 'by': 1.0, 'hope': 1.0, 'all': 1.0, 'other': 1.0, 'car': 5.0, 'hell': 1.0, 'on': 2.0, 'cover': 3.0, 'enough': 1.0, 'does': 2.0, 'inspection': 1.0, 'one': 2.0, 'raised': 1.0, 'what': 1.0, 'when': 1.0, 'kids': 1.0, 'latches': 1.0, 'this': 1.0, 'behind': 1.0, 'each': 1.0, 'would': 1.0, 'hooks': 1.0, 'it': 7.0, 'lip': 1.0, 'eventually': 1.0, 'my': 1.0, 'side': 2.0, 'door': 1.0, 'shoes': 1.0, 'littlest': 1.0, 'have': 2.0, 'veritable': 1.0, 'spills': 2.0, 'says': 1.0, 'gone': 1.0, 'of': 5.0, 'the': 18.0, 'place': 1.0, '2': 1.0, 'but': 1.0, 'carseat': 1.0, 'that': 1.0, 'top': 1.0, 'installation': 1.0, 'keeps': 1.0, 'sedan': 1.0, 'was': 1.0, 'alignment': 1.0, 'i': 8.0, 'putting': 1.0, 'strap': 1.0, 'challenge': 1.0, 'got': 1.0, 'latch': 1.0, 'safety': 1.0, 'if': 1.0, 'for': 2.0, 'product': 1.0, 'seat': 4.0, 'in': 6.0, 'm': 1.0, 'they': 1.0, 'dirty': 1.0, 'tell': 1.0, 'us': 1.0, 'not': 1.0, 'use': 1.0, 'kind': 1.0, 'overall': 1.0, 'like': 1.0, 'protects': 1.0, 'from': 2.0, 'lo': 1.0, 'kicking': 1.0, 'make': 1.0, 'goes': 1.0}
Word element => {'live': 1.0, 'suspect': 1.0, 'grows': 1.0, 'its': 1.0, 'do': 1.0, 'he': 2.0, 'limited': 1.0, 'there': 1.0, 'of': 1.0, 'so': 1.0, 'time': 1.0, 'at': 2.0, 'point': 1.0, 'old': 1.0, 'can': 1.0, 'but': 2.0, 'decent': 1.0, 'silicone': 1.0, 'the': 5.0, 'deal': 1.0, 'cost': 1.0, 'had': 1.0, 'what': 1.0, 'lightning': 1.0, 'that': 1.0, 'month': 1.0, 'it': 1.0, 'duty': 1.0, 'this': 4.0, 'moving': 1.0, 'liked': 1.0, 'durable': 1.0, '7': 1.0, 'i': 4.0, 'when': 1.0, 'damage': 1.0, 'up': 2.0, 'amazon': 1.0, 'appears': 1.0, 'from': 1.0, 'very': 1.0, 'a': 2.0, 'prevent': 1.0, 'to': 1.0, 'pads': 1.0, 'as': 2.0, 'seat': 2.0, 'not': 1.0, 'were': 1.0, 'protector': 2.0, 'have': 2.0, 'fabric': 1.0, 'is': 1.0, 'around': 1.0, 'feels': 1.0, 'writing': 1.0, 'and': 2.0, 'will': 1.0, 'item': 1.0, 'also': 1.0, 'in': 1.0, 'picked': 1.0, 'discolored': 1.0, 'was': 1.0, 'yellow': 1.0, 'seats': 1.0, 'my': 1.0, 'vehicle': 1.0, 'portion': 1.0}
Word element => {'thing': 1.0, 'thats': 1.0, 'clean': 1.0, 'remove': 1.0, 'car': 2.0, 'protects': 1.0, 'you': 2.0, 'down': 1.0, 'what': 2.0, 'cheap': 1.0, 'buy': 1.0, 'there': 1.0, 'that': 1.0, 'only': 1.0, 'this': 1.0, 'much': 1.0, 'say': 1.0, 'personal': 1.0, 'another': 1.0, 'about': 1.0, 'guardian': 1.0, 'your': 2.0, 'isn': 1.0, 'side': 1.0, 'is': 3.0, 'and': 1.0, 'get': 1.0, 't': 2.0, 'the': 1.0, 'just': 1.0, 'seat': 2.0, 'a': 2.0, 'but': 1.0, 'doesn': 1.0, 'nice': 1.0, 'solid': 1.0, 'item': 1.0, 'plastic': 1.0, 'to': 3.0, 'look': 1.0}
Word element => {'of': 1.0, 'if': 1.0, 'give': 1.0, 'definitely': 1.0, 'would': 2.0, 'designed': 1.0, 'only': 1.0, 'do': 2.0, 'other': 1.0, 'so': 3.0, 'be': 1.0, 'appear': 1.0, 'but': 1.0, 'bigger': 1.0, 'at': 1.0, 'talented': 1.0, 'just': 1.0, 'than': 1.0, 'does': 2.0, 'maybe': 1.0, 'they': 1.0, 'more': 1.0, 'is': 3.0, 'outback': 1.0, 'fine': 1.0, 'child': 1.0, 'her': 2.0, 'protect': 1.0, 'years': 1.0, 'both': 1.0, 'i': 2.0, 'old': 1.0, 'even': 1.0, 'got': 1.0, 'use': 1.0, 'have': 1.0, 'were': 1.0, 'protector': 3.0, 'this': 2.0, 'he': 2.0, 'it': 6.0, 'with': 1.0, 'car': 5.0, 'fits': 1.0, 'my': 2.0, 'daughter': 2.0, 'smile': 1.0, 'seat': 5.0, 'to': 3.0, 'husband': 1.0, 'subaru': 1.0, 'and': 2.0, 'cover': 1.0, 'enough': 1.0, 'what': 1.0, 'commented': 1.0, '3': 1.0, 'stuff': 1.0, 'on': 1.0, 'that': 3.0, 'their': 2.0, 'under': 1.0, 'son': 1.0, 's': 3.0, 'a': 1.0, 'could': 1.0, 'for': 1.0, 'actually': 1.0, 'spill': 1.0, 'place': 1.0, 'the': 4.0, '8217': 3.0, 'surprisingly': 1.0, 'in': 1.0}
Word element => {'tell': 1.0, 'will': 1.0, 'time': 1.0, 'product': 1.0, 'about': 1.0, 'think': 1.0, 'can': 1.0, 'i': 1.0, 'shortest': 1.0, 'of': 2.0, 'yet': 1.0, 'one': 1.0, 'reviews': 2.0, 'on': 1.0, 'and': 2.0, 'anything': 1.0, 'nice': 1.0, 'car': 1.0, 'our': 1.0, 'say': 1.0, 'chevy': 1.0, 'if': 1.0, 'since': 1.0, 'well': 1.0, 'is': 1.0, 'looks': 1.0, 'works': 2.0, 'only': 1.0, 'this': 2.0, 'with': 1.0, 'it': 3.0, 'bad': 1.0, 'volt': 1.0, 't': 1.0, 'the': 1.0, 'my': 2.0, 'straps': 1.0, 'base': 1.0, 'seat': 1.0, 'you': 1.0, 'to': 1.0, 'look': 1.0, 'at': 1.0, 'graco': 1.0, 'past': 1.0}
Word element => {'perfect': 1.0, 's': 1.0, 'things': 1.0, 'enough': 1.0, 'son': 1.0, 'big': 1.0, 'still': 1.0, 'drops': 1.0, 'is': 1.0, 'the': 1.0, 't': 1.0, 'item': 1.0, 'have': 1.0, 'i': 2.0, 'stays': 1.0, 'clean': 1.0, 'and': 2.0, 'my': 4.0, 'myride': 1.0, 'car': 1.0, 'love': 1.0, 'collect': 1.0, 'to': 2.0, 'worry': 1.0, 'don': 1.0, 'about': 1.0, 'stains': 1.0, '65': 1.0, 'on': 1.0, 'this': 1.0, 'it': 3.0, 'with': 1.0, 'seat': 1.0, 'use': 1.0, 'grace': 1.0}
Word element => {'hooked': 1.0, 'unless': 1.0, 'kick': 1.0, 'getting': 1.0, 'and': 1.0, 'is': 2.0, 'dirty': 1.0, 'who': 1.0, 'can': 2.0, 'we': 1.0, 'baby': 1.0, 'rest': 1.0, 'head': 1.0, 'up': 1.0, 'of': 1.0, 'fold': 1.0, 'there': 1.0, 'all': 1.0, 'have': 1.0, 'protector': 1.0, 'that': 2.0, 'wish': 1.0, 'i': 2.0, 'piece': 1.0, 'part': 3.0, 'works': 1.0, 'way': 1.0, 'see': 1.0, 'well': 1.0, 'a': 4.0, 'just': 2.0, 'seat': 4.0, 'older': 1.0, 'this': 1.0, 'had': 1.0, 'was': 1.0, 'to': 2.0, 'hook': 1.0, 't': 1.0, 'the': 6.0, 'top': 1.0, 'vertical': 3.0, 'onto': 1.0, 'doesn': 1.0, 'back': 2.0}
Word element => {'in': 1.0, 'clips': 1.0, 'our': 1.0, 'explorer': 1.0, 'the': 2.0, 'recommend': 1.0, 'seat': 1.0, 'ford': 1.0, 'perfectly': 1.0, 'fits': 1.0, '2014': 1.0, 'easy': 1.0, 'to': 1.0, 'access': 1.0, 'latch': 1.0}
Word element => {'in': 1.0, 'dents': 1.0, 'if': 1.0, 'recommend': 1.0, 'leaving': 1.0, 'or': 1.0, 'wonderful': 1.0, 'car': 2.0, 'is': 1.0, 'have': 1.0, 'protector': 1.0, 'not': 1.0, 'seat': 3.0, 'no': 1.0, 'scratches': 1.0, 'new': 1.0, 'a': 1.0, 'removed': 1.0, 'and': 2.0, 'leather': 1.0, 'base': 1.0, 'seats': 1.0, 'product': 1.0, 'bought': 1.0, 'i': 4.0, 'when': 1.0, 'recently': 1.0, 'they': 1.0, 'therefore': 1.0, 'hard': 1.0, 'this': 2.0, 'looked': 1.0, 'the': 3.0, 'great': 1.0, 'scars': 1.0}
Word element => {'sports': 1.0, 'bucket': 1.0, 'for': 1.0, 'not': 1.0, 'wide': 1.0, 'mention': 1.0, 'want': 1.0, 'do': 1.0, 'like': 1.0, 'using': 1.0, 'be': 1.0, 'expectations': 1.0, 'after': 1.0, 'didn': 2.0, 'work': 1.0, 'but': 2.0, 'will': 2.0, 'use': 2.0, 'it': 7.0, 'this': 4.0, 'durable': 1.0, 'althought': 1.0, 'with': 2.0, 'moving': 1.0, 'car': 7.0, 'any': 1.0, 'our': 1.0, 'to': 2.0, 'constructed': 1.0, 'seat': 11.0, 'indentions': 1.0, 'protector': 3.0, 'that': 4.0, 'mighty': 4.0, 'is': 3.0, 'i': 3.0, 'meet': 1.0, 'up': 3.0, 'very': 1.0, 'from': 1.0, 'and': 2.0, 'a': 3.0, 'could': 1.0, 't': 2.0, 'we': 2.0, 'along': 1.0, 'tightens': 2.0, 'was': 2.0, 'belt': 1.0, 'tightening': 1.0, 'basically': 1.0, 'the': 10.0, 'prevents': 1.0, 'stand': 1.0, 'down': 1.0, 'so': 1.0, 'make': 1.0, 'hoping': 2.0, 'in': 1.0, 'would': 2.0, 'help': 1.0, 'well': 1.0, 'has': 1.0, 'curled': 1.0, 'my': 1.0, 'tight': 4.0, 'underneath': 1.0}
Word element => {'protectors': 1.0, 'carseat': 1.0, 'other': 1.0, 'on': 1.0, 'your': 1.0, 'addition': 1.0, 'family': 1.0, 'purchase': 1.0, 'another': 1.0, 'made': 1.0, 'purchasing': 1.0, 'after': 1.0, 'gray': 1.0, 'neutral': 1.0, 'nice': 1.0, 'very': 1.0, 'blended': 1.0, 'worth': 2.0, 'protect': 1.0, 'totally': 2.0, 'for': 3.0, 'about': 1.0, 'don': 2.0, 'honda': 1.0, 'built': 1.0, 'purchased': 1.0, 'sturdy': 1.0, 'waste': 1.0, 'write': 1.0, 'wouldn': 1.0, 'even': 1.0, 'odyssey': 1.0, 'something': 1.0, 'new': 2.0, 'reviews': 1.0, 'a': 1.0, 's': 2.0, 't': 3.0, 'the': 6.0, 'always': 1.0, 'of': 1.0, 'money': 1.0, 'but': 2.0, 'i': 3.0, 'when': 1.0, 'only': 1.0, 'do': 1.0, 'and': 1.0, 'perfectly': 1.0, 'with': 1.0, 'leather': 2.0, 'seats': 2.0, 'our': 3.0, 'to': 2.0, 'seat': 1.0, 'is': 2.0, 'well': 1.0, 'it': 6.0, 'covers': 1.0, 'one': 1.0, 'color': 3.0, 'entire': 1.0, 'raving': 1.0, 'not': 1.0, 'blends': 1.0, 'itself': 1.0, 'in': 2.0, 'if': 1.0, 'have': 1.0}
Word element => {'anyway': 1.0, '5': 1.0, 'job': 1.0, 'place': 1.0, 'the': 7.0, 'go': 1.0, 't': 1.0, 'type': 1.0, 'upper': 1.0, 'of': 2.0, 'good': 1.0, 'every': 1.0, 'use': 1.0, 'because': 1.0, 'does': 2.0, 'speakers': 1.0, 'i': 2.0, 'it': 6.0, 'can': 1.0, 'simply': 1.0, 'not': 2.0, 'give': 1.0, 'panel': 1.0, 'holds': 1.0, 'is': 1.0, 'around': 1.0, 'construction': 1.0, 'back': 2.0, 'will': 1.0, 'headrest': 2.0, 'in': 2.0, 'like': 1.0, 'due': 1.0, 'seat': 1.0, 'all': 1.0, 'to': 2.0, 'infiniti': 1.0, 'should': 1.0, 'g37x': 1.0, '2011': 1.0, 'vehicle': 1.0, 'extended': 1.0, 'way': 1.0, 'for': 1.0, 'product': 2.0, 'stars': 1.0, 'where': 1.0, 'strap': 1.0, 'are': 1.0, 'still': 1.0, 'cause': 1.0, 'car': 1.0}
Word element => {'worth': 1.0, 'in': 1.0, 'makes': 1.0, 'which': 1.0, 'belt': 2.0, 'difficult': 1.0, 'tad': 1.0, 'seat': 2.0, 'have': 1.0, 'covers': 1.0, 'well': 1.0, 'a': 2.0, 'go': 1.0, 'it': 4.0, 'slip': 1.0, 'good': 1.0, 'far': 1.0, 'clip': 2.0, 'if': 1.0, 'so': 2.0, 's': 1.0, 'you': 1.0, 'smaller': 1.0, 'car': 1.0, 't': 1.0, 'the': 4.0, 'of': 1.0, 'up': 1.0, 'bottom': 1.0, 'but': 1.0, 'doesn': 1.0, 'will': 1.0, 'and': 1.0, 'probably': 1.0, 'to': 2.0}
Word element => {'their': 1.0, 'one': 1.0, 'son': 1.0, 'and': 1.0, 'very': 1.0, 'leather': 1.0, 'seats': 1.0, 'good': 1.0, 'cover': 1.0, 'law': 1.0, 'daughter': 1.0, 'in': 2.0, 'for': 2.0, 'too': 1.0, 'new': 1.0, 'are': 1.0, 'the': 1.0, 'my': 2.0, 'buying': 1.0, 'car': 2.0}
Word element => {'creasing': 1.0, 'from': 1.0, 'keep': 1.0, 'material': 1.0, 'a': 1.0, 'are': 1.0, 'crap': 1.0, 'catch': 1.0, 'i': 1.0, 'into': 1.0, 'britex': 1.0, 'drop': 1.0, 'seats': 3.0, 'leather': 2.0, 'my': 3.0, 'in': 1.0, 'hard': 1.0, 'children': 1.0, 'with': 1.0, 'the': 4.0, 'these': 1.0, 'altima': 1.0, 'overlap': 1.0, 'they': 3.0, 'sturdy': 1.0, 'use': 1.0, 'car': 2.0, 'new': 1.0, 'fit': 1.0, 'and': 2.0, 'perfectly': 1.0, 'them': 1.0, 'sides': 1.0, 'of': 2.0, 'seat': 1.0}
Word element => {'recommend': 1.0, 'would': 1.0, 'velcro': 1.0, 'previous': 1.0, 'than': 1.0, 'way': 1.0, 'much': 2.0, 'works': 1.0, 'depending': 1.0, 'product': 1.0, 'fit': 2.0, 'their': 1.0, 'better': 1.0, 'custom': 1.0, 'which': 1.0, 'buckle': 1.0, 'strap': 2.0, 'headrest': 1.0, 'adjustable': 1.0, 'update': 1.0, 'great': 1.0, 'done': 1.0, 'thick': 1.0, 'eliminate': 1.0, 'more': 1.0, 'is': 3.0, 'material': 1.0, 'definitely': 2.0, 'protector': 1.0, 'thing': 1.0, 'have': 2.0, 'must': 1.0, 'from': 1.0, 'it': 6.0, 'gives': 1.0, 'you': 2.0, 's': 1.0, 'a': 4.0, 'to': 1.0, 'all': 1.0, 'seat': 2.0, 'not': 1.0, 'mat': 1.0, 'too': 1.0, 'and': 3.0, 'clever': 1.0, 'thank': 1.0, 'secure': 1.0, 'will': 2.0, 'slipping': 1.0, 'in': 1.0, 'one': 1.0, 'kick': 1.0, 'sturdy': 1.0, 'pad': 1.0, 'i': 1.0, 'the': 5.0, 'believe': 1.0, 'brica': 1.0, 'your': 3.0, 'on': 3.0, 'plus': 1.0, 'help': 1.0, 'marks': 1.0, 'seats': 1.0, 'preventing': 1.0, 'models': 1.0, 'with': 1.0, 'leather': 1.0, 'serves': 1.0, 'or': 1.0, 'allows': 1.0, 'this': 2.0, 'grip': 1.0, 'design': 1.0, 'car': 1.0, 'purpose': 1.0, 'surface': 1.0, 'vehicle': 1.0, 'another': 1.0, 'that': 1.0}
Word element => {'recommend': 1.0, 'wrinkles': 1.0, 'definitely': 1.0, 'from': 1.0, 'excellent': 1.0, 'with': 1.0, 'product': 1.0, 'stains': 1.0, 'tough': 1.0, 'design': 1.0, 'nice': 1.0, 'materials': 1.0, 'it': 2.0, 'saves': 1.0, 'and': 1.0, 'seats': 1.0, 'leather': 1.0, 'your': 1.0}
Word element => {'definitely': 1.0, 'by': 1.0, 'it': 1.0, 'taken': 1.0, 'of': 2.0, 'both': 1.0, '11month': 1.0, 'recommend': 1.0, 'facing': 1.0, 'them': 1.0, 'marks': 1.0, 'sturdy': 1.0, 'seat': 1.0, 'ensures': 1.0, 'and': 3.0, 'care': 1.0, 'are': 2.0, 'the': 3.0, 'no': 1.0, 'booster': 1.0, 'my': 2.0, 'rear': 1.0, 'left': 1.0, 'is': 1.0, 'on': 1.0, 'have': 1.0, 'protector': 2.0, 'below': 1.0, 'well': 1.0, 'a': 1.0, 'for': 2.0, 'very': 1.0, 'year': 1.0, 'i': 1.0, 'six': 1.0, 'old': 2.0}
Word element => {'milk': 1.0, '3': 1.0, 'like': 1.0, 'look': 1.0, 'clean': 1.0, 'of': 1.0, 'year': 1.0, 'best': 1.0, 'seat': 3.0, 'car': 2.0, 'when': 1.0, 'past': 1.0, 'makes': 1.0, 'removed': 1.0, 'robust': 1.0, 'a': 2.0, 'sized': 1.0, 'doesn': 1.0, 'quality': 1.0, 'and': 2.0, 'it': 1.0, 'generously': 1.0, 'edge': 1.0, 'are': 1.0, 'is': 1.0, 'lip': 1.0, 't': 1.0, 'these': 2.0, 'the': 4.0, 'things': 1.0, 'glad': 1.0, 'crud': 1.0, 'am': 1.0, 'old': 1.0, 'i': 3.0, 'nice': 1.0, 'stain': 1.0, 'so': 1.0, 'food': 1.0, 'on': 1.0, 'that': 3.0, 'have': 3.0, 'catches': 1.0, 'all': 2.0}
Word element => {'way': 1.0, 'twins': 1.0, 'a': 1.0, 'for': 1.0, 'time': 1.0, 'its': 1.0, 'to': 2.0, 'worried': 1.0, 'couple': 1.0, 'get': 1.0, 'me': 1.0, 'and': 1.0, 'leather': 1.0, 'my': 1.0, 'protects': 1.0, 'year': 1.0, 'from': 1.0, 'with': 1.0, 'it': 2.0, 'on': 1.0, 'asked': 1.0, 'car': 1.0, 'about': 1.0, 'seat': 2.0, 'impressions': 1.0, 'than': 1.0, '2': 1.0, 'the': 2.0, 'more': 2.0, 'mess': 1.0, 'guess': 1.0, 'old': 1.0, 'i': 2.0, 'his': 2.0, 'does': 1.0, 'what': 1.0}
Word element => {'sturdy': 1.0, 'well': 1.0, 'construction': 1.0, 'very': 1.0, 'working': 1.0}
Word element => {'absolutely': 1.0, 'well': 1.0, 'cleaning': 1.0, 'easy': 1.0, 'or': 1.0, 'recommend': 1.0, 'spill': 1.0, 'catch': 1.0, 'will': 1.0, 'forester': 1.0, 'subaru': 1.0, 'in': 1.0, 'protecting': 1.0, 'perfectly': 1.0, 'rear': 1.0, 'leather': 1.0, 'with': 1.0, 'use': 1.0, 'back': 1.0, 'specific': 1.0, 'too': 1.0, 'and': 1.0, 'do': 1.0, 'crumbs': 1.0, 'material': 1.0, 'platinum': 1.0, 'be': 3.0, 'quality': 1.0, 'an': 1.0, 'designed': 1.0, 'forward': 1.0, 'tell': 1.0, 'it': 4.0, 'this': 2.0, 'for': 2.0, 'love': 1.0, 'but': 1.0, 'can': 3.0, 'right': 2.0, 'car': 4.0, 'out': 1.0, 'more': 1.0, 'is': 5.0, 'of': 1.0, 'not': 1.0, 'because': 1.0, 'the': 6.0, 'excellent': 1.0, 'thought': 1.0, 'folded': 1.0, 'easily': 1.0, 'you': 1.0, 'protector': 2.0, 'that': 2.0, 'box': 1.0, 'shape': 1.0, 'head': 1.0, 'strapped': 1.0, 'any': 1.0, 'seat': 5.0, 'to': 2.0, 'now': 1.0, 'rest': 1.0, 'even': 1.0, 'used': 1.0, 'feature': 1.0, 'i': 1.0, 'need': 1.0, 'being': 1.0, 'a': 2.0, 'under': 1.0, 'facing': 2.0, 'graco': 1.0, 'my': 3.0, 'accommodates': 1.0, 'ride': 1.0, 'made': 1.0, '65': 1.0}
Word element => {'them': 1.0, 'remove': 1.0, 'suggest': 1.0, 'yesterday': 1.0, 'car': 1.0, 'checked': 1.0, 'who': 1.0, 'my': 2.0, 'carseat': 1.0, 'even': 1.0, 'though': 1.0, 'protectors': 1.0, 'were': 1.0, 'their': 2.0, 'warranty': 1.0, 'carseats': 3.0, 'if': 2.0, 'protector': 1.0, 'have': 1.0, 'event': 1.0, 'with': 2.0, 'this': 2.0, 'voids': 1.0, 'other': 1.0, 'inspectors': 1.0, 'you': 2.0, 'i': 1.0, 'buy': 1.0, 'highly': 1.0, 'don': 1.0, 'a': 1.0, 'in': 1.0, 'installed': 1.0, 'crash': 1.0, 't': 1.0, 'the': 2.0, 'britax': 2.0, 'of': 1.0, 'use': 1.0, 'correctly': 1.0, 'after': 1.0, 'and': 1.0, 'market': 1.0}
Word element => {'again': 1.0, 'definitely': 1.0, 'buy': 1.0, 'i': 1.0, 'feet': 1.0, 'seats': 1.0, 'forward': 1.0, 'of': 1.0, 'limit': 1.0, 'would': 1.0, 'weight': 1.0, 'daughter': 1.0, 'for': 1.0, 'my': 2.0, 'saver': 1.0, 'a': 1.0, 'is': 1.0, 'to': 1.0, 'now': 1.0, 'the': 1.0, '2': 2.0, '22lbs': 1.0, 'has': 2.0, '1': 1.0, 'been': 1.0, 'she': 1.0, 'dirty': 1.0, 'face': 1.0, 'sure': 1.0, 'this': 2.0, 'from': 1.0, 'very': 1.0, 'small': 1.0, 'so': 2.0, 'even': 1.0, 'saved': 1.0, 'seat': 1.0, 'just': 1.0, 'at': 1.0, 's': 1.0, 'meeting': 1.0}
Word element => {'whose': 1.0, '2': 1.0, '1': 1.0, 'those': 1.0, 'absolutely': 1.0, 'seats': 2.0, 'all': 1.0, 'under': 1.0, 'outside': 1.0, 'leave': 1.0, 'where': 1.0, 'line': 1.0, 'or': 2.0, 'particularly': 1.0, 'works': 1.0, 'another': 1.0, 'have': 1.0, 'if': 1.0, 'place': 1.0, 'want': 1.0, 'definitely': 1.0, 'will': 1.0, 'we': 3.0, 'wish': 1.0, 'dirtiness': 1.0, 'keep': 1.0, 'who': 1.0, 'our': 3.0, 'children': 1.0, 'least': 1.0, 'was': 4.0, 'recommendation': 2.0, 'previously': 1.0, 'had': 2.0, 'kick': 2.0, 'while': 1.0, 'facing': 10.0, 'son': 2.0, 'safety': 1.0, 'even': 1.0, 'didn': 1.0, 'indentations': 1.0, 'kids': 5.0, 'this': 3.0, 'booster': 1.0, 'wreck': 1.0, 'are': 2.0, 'prevent': 1.0, 'later': 1.0, 'leaving': 1.0, 'to': 3.0, 'job': 1.0, 'reach': 2.0, 'protecting': 1.0, 'front': 1.0, 'younger': 1.0, 'their': 2.0, 'should': 1.0, 'mode': 6.0, 'but': 4.0, 'four': 1.0, 'can': 2.0, 'really': 2.0, 'great': 3.0, 'until': 1.0, 'storm': 1.0, 'a': 3.0, 's': 2.0, 'ago': 1.0, 't': 1.0, 'on': 1.0, 'long': 1.0, 'does': 1.0, 'protected': 1.0, 'protector': 1.0, 'updated': 1.0, 'directly': 1.0, 'back': 4.0, 'clean': 1.0, 'upholstery': 6.0, 'car': 2.0, 'gear': 1.0, 'stubborn': 1.0, 'it': 2.0, 'from': 1.0, 'recommended': 1.0, 'and': 5.0, 'essential': 2.0, 'be': 1.0, 'remains': 1.0, 'spills': 2.0, 'seat': 7.0, 'per': 1.0, 'in': 11.0, 'mark': 1.0, 'guidelines': 1.0, 'crumbs': 2.0, 'also': 1.0, 'for': 5.0, 'parents': 1.0, 'too': 1.0, 'one': 3.0, 'rear': 7.0, 'at': 2.0, 'is': 3.0, 'say': 1.0, 'little': 1.0, 'two': 2.0, 'extended': 1.0, 'years': 2.0, 'protect': 1.0, 'some': 2.0, 'they': 1.0, 'dirty': 2.0, 'countries': 1.0, 'i': 1.0, 'feet': 1.0, 'the': 17.0, 'longer': 1.0, 'of': 6.0, 'when': 2.0, 'he': 3.0, 'scandinavian': 1.0, 'shoes': 2.0, 'old': 1.0, 'up': 2.0, 'year': 1.0, 'products': 1.0, 'child': 2.0, 'with': 3.0, 'like': 1.0, 'thebritax': 1.0, 'mat': 2.0, 'not': 1.0, 'forward': 3.0, 'older': 2.0, 'now': 1.0, 'fixing': 1.0, 'that': 1.0, 'part': 1.0, 'problem': 1.0}
Word element => {'this': 1.0, 'highly': 1.0, 'there': 1.0, 'from': 1.0, 'good': 1.0, 'surprised': 1.0, 'an': 1.0, 'sick': 1.0, 'but': 1.0, 'happens': 1.0, 'recommend': 1.0, 'was': 4.0, 'had': 1.0, 'obviously': 1.0, 'that': 1.0, 'something': 1.0, 'it': 4.0, 'hosed': 1.0, 'got': 1.0, 'daughter': 1.0, 'when': 1.0, 'find': 1.0, 'the': 5.0, 'incident': 1.0, 'i': 3.0, 'in': 2.0, 'out': 1.0, 'made': 1.0, 'how': 1.0, 'my': 2.0, 'porous': 1.0, 'to': 2.0, 'seat': 4.0, 'go': 1.0, 's': 1.0, 'we': 1.0, 'a': 2.0, 'dry': 1.0, 'car': 4.0, 'removed': 2.0, 'simply': 1.0, 'product': 1.0, 'where': 1.0, 'significant': 1.0, 'surfaces': 1.0, 'and': 2.0, 'amount': 1.0, 'of': 1.0, 'left': 1.0, 'stuff': 1.0, 'on': 1.0, 'protector': 2.0, 'nothing': 1.0, 'onto': 1.0, 'off': 1.0, 'let': 1.0}
Word element => {'other': 1.0, '2013': 1.0, 'my': 1.0, 'headrests': 1.0, 'short': 1.0, 'goes': 1.0, 'strap': 1.0, '5': 1.0, 'of': 1.0, 'that': 3.0, 'gave': 1.0, 'reason': 1.0, 'camry': 1.0, 'various': 1.0, 'so': 1.0, 'available': 1.0, 'at': 1.0, 'iinstead': 1.0, 'looked': 1.0, 'it': 2.0, 'durable': 1.0, 'only': 1.0, 'stores': 1.0, 'with': 2.0, '4': 1.0, 'i': 6.0, 'reasonable': 1.0, 'low': 1.0, 'headrest': 1.0, 'results': 1.0, 'price': 1.0, 'about': 2.0, 'seems': 1.0, 'in': 2.0, 've': 1.0, 'a': 2.0, 'department': 1.0, 'the': 8.0, 'around': 1.0, 'is': 3.0, 'too': 1.0, 'and': 3.0, 'happy': 2.0, 'quite': 1.0, 'hybrid': 1.0, 'this': 2.0, 'found': 1.0, 'protectors': 2.0, 'quality': 1.0, 'like': 1.0, 'which': 1.0, 'week': 1.0, 'ran': 1.0, 'same': 1.0, 'prices': 1.0, 'to': 1.0, 'seat': 2.0, 'as': 1.0, 'very': 2.0, 'one': 1.0, 'fit': 1.0, 'stars': 1.0, 'product': 2.0, 'for': 1.0, 'had': 1.0, 'now': 1.0, 'than': 1.0, 'installed': 1.0, 'am': 2.0, 'far': 1.0}
Word element => {'indentations': 1.0, 'or': 1.0, 'creases': 1.0, 'creating': 1.0, 'base': 1.0, 'from': 1.0, 'against': 1.0, 'shoes': 1.0, 'will': 2.0, 'back': 3.0, 'put': 1.0, 'with': 1.0, 'older': 1.0, 'it': 1.0, 'great': 2.0, 'these': 1.0, 'the': 10.0, 'since': 1.0, 'front': 2.0, 'seats': 2.0, 'infant': 2.0, 'a': 1.0, 'we': 1.0, 'have': 1.0, 'protector': 1.0, 'this': 1.0, 'kids': 1.0, 'gets': 1.0, 'facing': 3.0, 'protectors': 1.0, 'lionheart': 1.0, 'need': 1.0, 'hold': 2.0, 'which': 1.0, 'two': 1.0, 'in': 1.0, 'for': 2.0, 'one': 1.0, 'their': 1.0, 'are': 1.0, 'of': 2.0, 'rear': 1.0, 'you': 1.0, 'll': 1.0, 'hook': 1.0, 'does': 1.0, 'protects': 1.0, 'any': 1.0, 'seat': 6.0, 'our': 1.0, 'to': 1.0, 'as': 1.0, 'up': 2.0, 'child': 1.0, 'holder': 1.0, 'and': 2.0}
Word element => {'however': 1.0, 'good': 2.0, 'works': 1.0, 'probably': 1.0, 'and': 1.0, 'for': 3.0, 'my': 1.0, 't': 1.0, 'the': 2.0, 'of': 1.0, 'over': 1.0, 'seats': 1.0, 'infant': 1.0, 'base': 1.0, 'acadia': 1.0, 'use': 1.0, 'seat': 3.0, 'okay': 1.0, 'is': 1.0, 'have': 1.0, 'bucket': 1.0, 'by': 1.0, 'few': 1.0, 'a': 1.0, 'that': 1.0, 'inches': 1.0, 'i': 1.0, 'toddler': 1.0, 'work': 1.0, 'but': 1.0, 'an': 2.0, 'hangs': 1.0, 'we': 1.0, 'wouldn': 1.0, 'this': 1.0, 'it': 2.0}
Word element => {'clean': 1.0, 'easy': 1.0, 'could': 1.0, 'so': 2.0, 'find': 1.0, 'worth': 1.0, 'wonderful': 1.0, 'item': 2.0, 'this': 1.0, 'my': 1.0, 'great': 1.0, 'the': 2.0, 'cost': 1.0, 'own': 1.0, 'and': 3.0, 'is': 2.0, 'mths': 1.0, 'on': 1.0, '5': 1.0, 'already': 1.0, 'we': 1.0, 'sitting': 1.0, 'works': 1.0, 'his': 1.0, 'to': 1.0, 'was': 1.0, 'son': 1.0, 'best': 1.0}
Word element => {'definitely': 1.0, 'would': 1.0, 'if': 1.0, 'of': 1.0, 'a': 1.0, 'see': 1.0, 'how': 2.0, 'product': 1.0, 'be': 1.0, 'to': 3.0, 'was': 2.0, 'liked': 1.0, 'given': 1.0, 'i': 4.0, 'this': 1.0, 'it': 5.0, 'great': 1.0, 'and': 2.0, 'getting': 1.0, 'recommend': 1.0, 'lot': 1.0, 'easy': 1.0, 'try': 1.0, 'loved': 1.0, 'use': 2.0, 'is': 1.0, 'son': 1.0, 'out': 1.0, 'clean': 1.0, 'will': 1.0, 'my': 1.0}
Word element => {'cute': 1.0, 'straps': 1.0, 'the': 1.0, 'very': 1.0, 'and': 2.0, 'i': 1.0, 'it': 1.0, 'love': 1.0, 'this': 1.0, 'cover': 1.0, 'front': 1.0, 'nice': 1.0, 'rings': 1.0, 'useful': 1.0, 'to': 2.0, 'toys': 1.0, 'attach': 1.0, 's': 1.0, 'teething': 1.0}
Word element => {'needed': 1.0, 'the': 1.0, 'in': 1.0, 'thrown': 1.0, 'easily': 1.0, 'stores': 1.0, 'down': 1.0, 'washer': 1.0, 'little': 1.0, 'your': 1.0, 'sitting': 1.0, 'better': 1.0, 'feel': 1.0, 'and': 2.0, 'on': 1.0, 'about': 1.0, 'simply': 1.0, 'have': 1.0, 'this': 2.0, 'or': 1.0, 'when': 1.0, 'one': 1.0, 'restaurant': 1.0, 'for': 1.0, 'gross': 1.0, 'as': 1.0, 'must': 1.0, 'you': 2.0, 'a': 1.0, 'go': 1.0, 'is': 1.0, 'out': 1.0, 'to': 1.0, 'travel': 1.0, 'be': 2.0, 'highchairs': 1.0, 'can': 3.0, 'eat': 1.0, 'so': 1.0, 'just': 1.0, 'put': 1.0}
Word element => {'if': 1.0, 'short': 1.0, 'be': 1.0, 'belt': 1.0, 'bigger': 1.0, 'gets': 1.0, 'son': 1.0, 'my': 1.0, 'when': 1.0, 'lap': 3.0, 'in': 1.0, 'so': 1.0, 'too': 1.0, 'and': 2.0, 'puerto': 1.0, 'york': 1.0, 'on': 1.0, 'new': 2.0, 'through': 1.0, 'far': 1.0, 'chair': 1.0, 'have': 5.0, 'of': 4.0, 'bottom': 1.0, 'jersey': 1.0, 'high': 2.0, 'the': 12.0, 'they': 1.0, 'means': 1.0, 'holes': 2.0, 'that': 3.0, 'encountered': 1.0, 'panels': 1.0, 'belts': 1.0, 'cover': 1.0, 'cut': 1.0, 'chairs': 1.0, 'go': 1.0, 'rico': 1.0, 's': 1.0, 'we': 1.0, 'this': 2.0, 'however': 1.0, 'come': 1.0, 'straps': 1.0, 'out': 1.0, 'over': 2.0, 'up': 2.0, 'child': 1.0, 'side': 2.0, 'because': 1.0, 'has': 1.0, 'strap': 1.0, 'back': 2.0, 'will': 2.0, 'panel': 1.0, 'i': 2.0, 'all': 2.0, 'seat': 1.0, 'to': 2.0}
Word element => {'too': 1.0, 'this': 1.0, 'loops': 1.0, 'restaurant': 1.0, 'gives': 1.0, 'nasty': 2.0, 'usually': 1.0, 'to': 1.0, 'tiny': 1.0, 'you': 1.0, 'gross': 1.0, 'are': 2.0, 'great': 1.0, 'the': 2.0, 'chairs': 1.0, 'toddler': 1.0, 'a': 1.0, 'between': 1.0, 'packs': 1.0, 'down': 1.0, 'dirty': 1.0, 'barrier': 1.0, 'and': 1.0, 'toy': 1.0, 'height': 1.0, 'baby': 1.0}
Word element => {'had': 1.0, 'every': 1.0, 'met': 1.0, 'there': 1.0, 'getting': 1.0, 'problem': 1.0, 'have': 1.0, 'will': 1.0, 'you': 1.0, 'that': 1.0, 'little': 1.0, 'right': 1.0, 'look': 1.0, 'just': 1.0, 'pouch': 1.0, 'back': 2.0, 'off': 1.0, 'take': 1.0, 'no': 1.0, 'whole': 1.0, 'held': 1.0, 'everyone': 1.0, 'her': 2.0, 'manual': 1.0, 'with': 2.0, 'has': 1.0, 'well': 1.0, 'how': 1.0, 'though': 1.0, 'one': 1.0, 'its': 1.0, 'works': 1.0, 'do': 1.0, 'not': 1.0, 'but': 1.0, 'can': 1.0, 'afterwards': 1.0, 'expectation': 1.0, 'was': 3.0, 'and': 3.0, 'day': 1.0, 'shipping': 1.0, 'it': 11.0, 'this': 1.0, 'i': 6.0, 'ordered': 1.0, 'for': 1.0, 'would': 2.0, 'so': 1.0, 'friends': 1.0, 'wedding': 1.0, 'time': 2.0, 'hoping': 1.0, 'in': 5.0, 'put': 1.0, 'make': 1.0, 'far': 1.0, 'through': 1.0, 'maneuver': 1.0, 'my': 2.0, 'a': 2.0, 'going': 1.0, 'we': 1.0, 't': 2.0, 'the': 3.0, 'great': 1.0, 'want': 1.0, 'be': 2.0, 'trying': 1.0, 'car': 1.0, 'to': 5.0, 'as': 2.0, 'seat': 1.0, 'comes': 1.0, 'crowded': 1.0, 'at': 1.0, 'handed': 1.0, 'thankfully': 1.0, 'left': 1.0, 'easy': 2.0, 'didn': 1.0, 'got': 1.0, 'restaurant': 1.0, 'room': 1.0, 'before': 1.0, 'know': 1.0, 'which': 1.0, 'daughters': 1.0, 'fast': 1.0, 'built': 1.0, 'set': 1.0, 'don': 1.0, 'up': 1.0}
Word element => {'chair': 1.0, 'easier': 1.0, 'much': 1.0, 'than': 1.0, 'go': 1.0, 'we': 1.0, 'chairs': 1.0, 'restaurant': 1.0, 'have': 1.0, 'cleaning': 1.0, 'out': 1.0, 'fits': 1.0, 'straps': 1.0, 'toy': 1.0, 'to': 2.0, 'and': 1.0, 'eat': 1.0, 'folds': 1.0, 'up': 1.0, 'very': 1.0, 'every': 1.0, 'most': 1.0, 'time': 1.0, 'designed': 1.0, 'well': 1.0, 's': 2.0, 'this': 1.0, 'with': 2.0, 'it': 2.0, 'the': 2.0, 'nicely': 1.0, 'great': 1.0, 'us': 1.0, 'when': 1.0}
Word element => {'recommend': 1.0, 'would': 1.0, 'uses': 1.0, 'few': 1.0, 'll': 1.0, 'sure': 1.0, 'm': 1.0, 'confusing': 1.0, 'is': 1.0, 'bit': 1.0, 'state': 1.0, 'but': 1.0, 'back': 1.0, 'after': 2.0, 'original': 1.0, 'the': 1.0, 'a': 2.0, 'well': 1.0, 'fold': 1.0, 's': 1.0, 'down': 1.0, 'works': 1.0, 'wooden': 1.0, 'restaraunts': 1.0, 'get': 1.0, 'getting': 1.0, 'item': 1.0, 'with': 1.0, 'it': 3.0, 'this': 1.0, 'like': 1.0, 'high': 1.0, 'i': 3.0, 'found': 1.0, 'in': 1.0, 'use': 1.0, 'most': 1.0, 'to': 1.0, 'chairs': 1.0, 'into': 1.0}
Word element => {'bring': 1.0, 'practical': 1.0, 'use': 1.0, 'itself': 1.0, 'cover': 1.0, 'bag': 1.0, 'small': 1.0, 'i': 1.0, 'of': 1.0, 'some': 1.0, 'along': 1.0, 'other': 1.0, 'saw': 1.0, 'than': 1.0, 'just': 1.0, 'cheaper': 1.0, 'easy': 2.0, 'much': 1.0, 'to': 3.0, 'the': 3.0, 'form': 1.0, 'is': 1.0, 'and': 2.0, 'as': 1.0, 'this': 1.0, 'folding': 1.0, 'it': 1.0, 'brands': 1.0, 'works': 1.0, 'for': 1.0, 'love': 1.0, 'convenient': 1.0, 'a': 1.0, 'well': 1.0}
Word element => {'baby': 1.0, 'insert': 1.0, 'over': 1.0, 'right': 1.0, 'just': 1.0, 'highchair': 1.0, 'restaurants': 1.0, 'wiping': 1.0, 'of': 1.0, 'go': 1.0, 'when': 1.0, 'together': 1.0, 'cover': 1.0, 'slips': 1.0, 'the': 2.0, 'my': 1.0, 'awesome': 1.0, 'grandson': 1.0, 'it': 2.0, 'out': 1.0, 'clean': 2.0, 'put': 1.0, 'two': 1.0, 'was': 1.0, 'to': 3.0, 'easy': 3.0, 'instead': 1.0, 'loved': 1.0, 'use': 1.0, 'as': 1.0, 'and': 2.0, 'well': 1.0, 'bought': 1.0, 'for': 2.0, 'one': 2.0, 'down': 1.0, 'grandma': 1.0, 'they': 2.0}
Word element => {'seats': 1.0, 'thick': 1.0, 'go': 1.0, 'already': 1.0, 'everything': 1.0, 'makes': 1.0, 'has': 1.0, 'van': 1.0, 'busted': 1.0, 'a': 1.0, 'mini': 1.0, 'but': 2.0, 'stow': 1.0, 'car': 1.0, 'in': 1.0, 'for': 1.0, 'works': 1.0, 'n': 1.0, 'it': 1.0, 'bottom': 1.0, 'off': 1.0, 'strap': 1.0, 'the': 2.0, 'great': 2.0, 'adjustable': 1.0, 'maybe': 1.0, 'not': 1.0}
Word element => {'great': 1.0, 'are': 1.0, 'down': 1.0, 'clean': 1.0, 'car': 1.0, 'keep': 1.0, 'hands': 1.0, 'if': 2.0, 'your': 1.0, 'or': 1.0, 'have': 1.0, 'kid': 1.0, 'you': 3.0, 'kids': 1.0, 'get': 1.0, 'they': 1.0, 'these': 1.0, 'must': 1.0, 'like': 1.0, 'to': 1.0}
Word element => {'of': 1.0, 'bag': 1.0, 'some': 1.0, 'instead': 1.0, 'use': 1.0, 'better': 1.0, 'that': 1.0, 'than': 1.0, 'plastic': 1.0, 'dollor': 1.0, 'a': 1.0, 'even': 1.0, 'not': 1.0, 'worth': 1.0, 'when': 1.0, 'i': 1.0, 'shown': 1.0, 'in': 1.0, 'good': 1.0, 'actually': 1.0, 'surprise': 1.0, 'per': 1.0, 'pictures': 1.0, 'as': 1.0, 'very': 1.0, 'quality': 2.0, 'and': 2.0, 'it': 5.0, '10': 1.0, 'maximum': 1.0, 'opened': 1.0, 'its': 1.0, 'to': 1.0, 'has': 1.0, 'poor': 1.0, 'my': 1.0, 'more': 1.0, 'these': 1.0, 'the': 1.0, 'looks': 1.0, 'is': 2.0, 'on': 1.0, 'scratches': 1.0}
Word element => {'themselves': 1.0, 'car': 1.0, 'actually': 1.0, 'seem': 1.0, 'feet': 1.0, 'much': 1.0, 'room': 1.0, 'in': 1.0, 'fit': 1.0, 'repel': 1.0, 'side': 1.0, 'basket': 1.0, 'suv': 1.0, 'games': 1.0, 'our': 1.0, 'snacks': 1.0, 'seats': 2.0, 'cover': 1.0, 'allow': 1.0, 'messy': 1.0, 'toys': 1.0, 'chair': 1.0, 'activity': 1.0, 'and': 3.0, 'trick': 1.0, 'does': 1.0, 'i': 1.0, 'kids': 1.0, 'too': 1.0, 'an': 1.0, 'back': 2.0, 'put': 1.0, 'showed': 1.0, 'more': 2.0, 'great': 1.0, 'these': 1.0, 'the': 3.0, 'bulky': 1.0, 'between': 1.0, 'so': 1.0, 'whereas': 1.0, 'for': 3.0, 'switched': 1.0, 'dirt': 2.0, 'a': 1.0, 'was': 1.0, 'to': 2.0}
Word element => {'money': 1.0, 'worth': 1.0, 'down': 1.0, 'passenger': 1.0, 'definitely': 1.0, 'have': 1.0, 'fit': 1.0, 'i': 1.0, 'ive': 1.0, 'seat': 1.0, 'sturdiest': 1.0, 'the': 2.0, 'too': 1.0, 'crossover': 1.0, 'my': 1.0, '7': 1.0, 'over': 1.0, 'front': 1.0, 'a': 1.0, 'wipe': 1.0, 'to': 1.0, 'had': 1.0, 'suv': 1.0, 'easy': 1.0, 'seats': 1.0, 'ever': 1.0, 'they': 1.0, 'and': 1.0, 'perfectly': 1.0}
Word element => {'point': 1.0, 'seat': 1.0, 'affordable': 1.0, 'fabric': 1.0, 'and': 1.0, 'is': 1.0, 'price': 1.0, 'washable': 1.0, 'with': 1.0, 'children': 1.0, 'install': 1.0, 'in': 1.0, 'anyone': 1.0, 'to': 2.0, 'was': 1.0, 'would': 1.0, 'i': 1.0, 'easy': 1.0, 'recommend': 1.0, 'great': 1.0, 'these': 1.0, 'the': 1.0, 'quality': 1.0, 'back': 1.0}
Word element => {'recommend': 1.0, 'in': 1.0, 'look': 1.0, 'design': 1.0, 'our': 1.0, 'they': 2.0, 'van': 1.0, 'nice': 1.0, 'materials': 1.0, 'durable': 1.0, 'this': 1.0, 'mats': 1.0, 'love': 1.0, 'great': 1.0, 'very': 1.0, 'and': 1.0, 'quality': 1.0, 'highly': 1.0, 'i': 1.0, 'are': 1.0, 'made': 1.0, 'of': 1.0, 'good': 1.0, 'would': 1.0}
Word element => {'interior': 1.0, 'nice': 1.0, 'looks': 1.0, 'to': 1.0, 'gray': 1.0, 'perfect': 1.0, 'i': 1.0, 'perfectly': 1.0, 'love': 2.0, 'they': 1.0, 'them': 1.0, 'bought': 1.0, 'the': 1.0, 'my': 2.0, 'with': 1.0, 'is': 1.0, '2': 1.0, 'for': 1.0, 'highlander': 1.0, 'color': 1.0, '2013': 1.0, 'fit': 1.0}
Word element => {'my': 1.0, 'that': 1.0, 'of': 1.0, 'have': 1.0, 'to': 1.0, 'them': 1.0, 'would': 1.0, 'buy': 1.0, 'i': 1.0, 'year': 1.0, 'last': 1.0, 'only': 1.0, 'peace': 1.0, 'even': 1.0, 'just': 1.0, 'seconds': 1.0, 'snap': 1.0, 'like': 1.0, 'and': 2.0, 'take': 1.0, 'seats': 2.0, 'will': 1.0, 'or': 1.0, 'off': 1.0, 'they': 1.0, 'your': 2.0, 'mine': 1.0, 'mud': 1.0, 'little': 1.0, 'kicks': 1.0, 'life': 1.0, 'then': 1.0, 'if': 2.0, 'saver': 1.0, 'keep': 1.0, 'protected': 1.0, 'mind': 1.0, 'again': 1.0, 'are': 2.0, 'two': 1.0, 'things': 1.0, 'the': 2.0, 'these': 2.0, 'a': 3.0, 'dirt': 1.0, 'installation': 1.0, 'is': 1.0}
Word element => {'though': 1.0, 'good': 1.0, 'so': 2.0, 'were': 1.0, 'straps': 1.0, 'wish': 1.0, 'i': 1.0, 'backs': 1.0, 'longer': 1.0, 'the': 1.0, 'more': 1.0, 'll': 1.0, 'seat': 1.0, 'lower': 1.0, 'break': 1.0, 'and': 1.0, 'like': 1.0, 'no': 1.0, 'sturdier': 1.0, 'seem': 1.0, 'far': 1.0, 'dirty': 1.0, 'soon': 1.0, 'they': 2.0, 'time': 1.0, 'will': 1.0, 'tell': 1.0}
Word element => {'cover': 1.0, 'to': 1.0, 'enough': 1.0, 'on': 1.0, 'buckle': 1.0, 'entire': 1.0, 'which': 1.0, 'found': 1.0, 'i': 1.0, 'best': 1.0, 'kickmats': 1.0, 'are': 2.0, 'these': 1.0, 'the': 5.0, 'more': 1.0, 'wide': 1.0, 'have': 1.0, 'bottom': 1.0, 'of': 2.0, 'seat': 2.0, 'car': 1.0, 'back': 1.0, 'secure': 1.0, 'rather': 1.0, 'than': 1.0, 'stretching': 1.0, 'it': 1.0, 'they': 2.0, 'makes': 1.0}
Word element => {'job': 1.0, 'does': 1.0, 'it': 1.0, 'snug': 1.0, 'the': 1.0, 'more': 1.0, 'fit': 1.0, 'durable': 1.0, 'better': 1.0, 'pretty': 1.0, 'if': 1.0, 'perfect': 1.0, 'but': 2.0, 'fits': 1.0, 'well': 1.0, 'not': 1.0, 'would': 1.0, 'be': 1.0, 'overall': 1.0, 'nice': 1.0}
Word element => {'nice': 1.0, 'very': 1.0}
Word element => {'well': 1.0, 'is': 1.0, 'wait': 1.0, 'as': 1.0, 'to': 2.0, 'shipping': 1.0, 'in': 2.0, 'there': 1.0, 'a': 3.0, 'and': 2.0, 'only': 1.0, 'it': 1.0, '4': 1.0, 'i': 5.0, 'star': 1.0, 'delay': 1.0, 'bit': 1.0, 'so': 2.0, 'the': 2.0, 'perserve': 1.0, 'than': 1.0, 'because': 1.0, 'anticipating': 1.0, 'purchasing': 1.0, 'themselves': 1.0, 'my': 1.0, 'car': 1.0, 'longer': 1.0, 'perfectly': 1.0, 'thankful': 1.0, 'gave': 1.0, 'that': 1.0, 'had': 1.0, 'thought': 1.0, 'reason': 1.0, 'design': 1.0, 'them': 2.0, 'highly': 1.0, 'was': 2.0, 'mats': 1.0, 'recommend': 1.0, 'someone': 1.0, 'am': 1.0, 'you': 1.0, 'work': 1.0, 'can': 1.0, 'your': 1.0, 'however': 1.0, 'seats': 1.0}
Word element => {'highly': 1.0, 'would': 1.0, 'great': 1.0, 'solid': 1.0, 'this': 2.0, 'with': 1.0, 'glad': 1.0, 'soo': 1.0, 'toys': 1.0, 'held': 1.0, 'cover': 2.0, 'originally': 1.0, 'went': 1.0, 'seats': 1.0, 'front': 1.0, 'see': 1.0, 'fits': 1.0, 'straps': 1.0, 'mat': 1.0, 'about': 1.0, 'don': 1.0, 'rest': 1.0, 'a': 1.0, 't': 2.0, 'the': 5.0, 'these': 1.0, 'product': 1.0, 'for': 1.0, 'fit': 1.0, 'top': 1.0, 'honda': 1.0, 'but': 1.0, 'can': 1.0, 'looking': 2.0, '2013': 1.0, 'worried': 1.0, 'in': 3.0, 'they': 1.0, 'tucked': 1.0, 'and': 3.0, 'pilot': 1.0, 'that': 2.0, 'into': 1.0, 'i': 6.0, 'at': 2.0, 'recommend': 1.0, 'mats': 1.0, 'was': 2.0, 'strap': 2.0, 'snugly': 1.0, 'under': 1.0, 'head': 1.0, 'perfectly': 1.0, 'bottom': 1.0, 'our': 3.0, 'all': 2.0, 'seat': 2.0, 'am': 1.0, 'you': 1.0, 'showing': 1.0, 'it': 2.0, 'durable': 1.0, 'general': 1.0, 'is': 2.0, 'very': 1.0, 'sharp': 1.0}
Word element => {'highly': 1.0, 'embroidered': 1.0, 'design': 1.0, 'wavy': 1.0, 'cover': 1.0, 'suv': 1.0, 'another': 1.0, 'my': 2.0, 'quality': 1.0, 'them': 1.0, 'just': 2.0, 'installed': 1.0, 'sized': 1.0, 'generously': 1.0, 'folded': 1.0, 'this': 1.0, '6': 1.0, '10': 1.0, 'lists': 1.0, 'amazon': 1.0, 'box': 2.0, 'brica': 2.0, 'on': 2.0, 'listed': 1.0, '23in': 1.0, 'x': 2.0, 'opinion': 1.0, 'product': 1.0, 'actually': 1.0, 'is': 2.0, 'new': 1.0, 'each': 1.0, 'note': 1.0, 'their': 2.0, '18in': 1.0, 'with': 1.0, 'guess': 1.0, 'velcro': 1.0, 'instead': 1.0, 'or': 1.0, 'worth': 1.0, 'size': 3.0, 'mat': 3.0, 'i': 4.0, 'must': 1.0, 'have': 1.0, 'able': 1.0, 'curled': 1.0, 'these': 2.0, 'the': 18.0, 'ones': 1.0, 'snaps': 1.0, 'recommend': 1.0, 'yellow': 1.0, 'mats': 3.0, 'in': 3.0, 'are': 2.0, 'install': 1.0, 'but': 1.0, 'money': 1.0, 'past': 1.0, 'definitely': 1.0, 'of': 4.0, 'stamped': 1.0, 'perfectly': 1.0, 'bottom': 2.0, 'up': 1.0, '8in': 2.0, 'and': 3.0, 'sturdy': 1.0, 'kick': 2.0, 'edges': 1.0, 'easy': 1.0, 'get': 1.0, 'reinforcing': 1.0, 'purchased': 1.0, 'bar': 1.0, 'at': 2.0, 'slip': 1.0, 'dirty': 1.0, 'they': 2.0, 'means': 1.0, 'little': 1.0, 'will': 1.0, 'not': 3.0, 'as': 2.0, 'to': 2.0, 'seat': 2.0, 'be': 2.0, 'sign': 1.0, 'feet': 1.0, 'seem': 1.0, 'still': 1.0, 'under': 1.0}
Word element => {'buy': 1.0, 'well': 1.0, 'end': 1.0, '8': 1.0, 'who': 1.0, 'someone': 1.0, 'worked': 1.0, 'split': 1.0, 'one': 2.0, 'i': 1.0, 'two': 1.0, 'cost': 1.0, 'new': 1.0, 'needed': 2.0, 'back': 1.0, 'work': 1.0, 'but': 1.0, 'great': 3.0, 'the': 6.0, 'these': 2.0, 'a': 1.0, 't': 1.0, 'we': 2.0, 'even': 1.0, 'her': 1.0, 'clean': 1.0, 'them': 1.0, 'daughter': 1.0, 'else': 1.0, 'children': 1.0, 'with': 3.0, 'it': 2.0, 'fit': 1.0, 'for': 3.0, 'of': 2.0, 'don': 1.0, 'child': 1.0, 'up': 2.0, 'worth': 1.0, 'let': 1.0, 'or': 1.0, 'they': 2.0, 'hard': 1.0, 'while': 2.0, 'driving': 1.0, 'in': 3.0, 'out': 1.0, 'keeping': 1.0, 'feet': 1.0, 'put': 2.0, 'your': 2.0, 'on': 2.0, 'me': 2.0, 'not': 1.0, 'costing': 1.0, 'just': 1.0, 'comes': 1.0, 'around': 1.0, 'is': 1.0, 'our': 1.0, 'seat': 1.0, 'to': 1.0, 'ended': 1.0, 'package': 1.0, 'sometimes': 2.0, 'getting': 1.0, 'and': 5.0, 'car': 2.0, 'seats': 1.0, 'forget': 1.0, 'have': 1.0}
Word element => {'smooth': 1.0, 'they': 1.0, 'no': 1.0, 'of': 1.0, 'seats': 1.0, 'cover': 1.0, 'mats': 1.0, 'back': 1.0, 'inside': 1.0, 'pockets': 1.0, 'products': 1.0, 'without': 1.0, 'even': 1.0, 'lay': 1.0, 'pocket': 1.0, 'highlander': 1.0, 'these': 1.0, 'the': 3.0, 'protectors': 1.0, 'just': 1.0, 'started': 1.0, 'seat': 1.0, 'we': 1.0, 'other': 1.0, 'flat': 1.0, 'stuck': 1.0, 'munchkin': 1.0, 'with': 1.0, 'storage': 2.0, 'mesh': 1.0, 'had': 1.0, 'to': 1.0, '2013': 1.0, 'rip': 1.0, 'perfectly': 1.0, 'couple': 1.0, 'and': 2.0, 'eddie': 1.0, 'a': 1.0, 'bauer': 1.0, 'out': 1.0, 'too': 1.0, 'far': 1.0}
Word element => {'is': 1.0, 'way': 1.0, 'hidden': 1.0, 'between': 1.0, 'holds': 1.0, 'into': 1.0, 'i': 1.0, 'truck': 1.0, 'my': 1.0, 'tight': 1.0, 'for': 1.0, 'very': 1.0, 'crack': 1.0, 'elastic': 2.0, 'back': 2.0, 'that': 1.0, 'our': 1.0, 'they': 1.0, 'bottom': 2.0, 'of': 3.0, 'ford': 1.0, 'both': 1.0, 'fit': 1.0, 'to': 1.0, 'say': 1.0, 'review': 1.0, 'tucked': 1.0, 'a': 3.0, 'seat': 1.0, 'just': 2.0, 'vehicles': 1.0, '2010': 1.0, 'it': 1.0, 'quick': 1.0, 'with': 1.0, 'f150': 1.0, 'and': 3.0, '2012': 1.0, 'cover': 2.0, 'seats': 2.0, 'nicely': 1.0, 'these': 1.0, 'the': 10.0, 'escape': 1.0, 'captains': 1.0}
Word element => {'pleased': 1.0, 'two': 1.0, 'you': 1.0, 'remove': 1.0, 'easy': 1.0, 'plus': 1.0, 'of': 1.0, 'the': 2.0, 'nice': 1.0, 'lays': 1.0, 'snug': 1.0, 'i': 1.0, 'very': 2.0, 'get': 1.0, 'and': 3.0, 'have': 1.0, 'pad': 1.0, 'fit': 1.0, 'back': 1.0, 'but': 1.0, 'thin': 1.0, 'front': 1.0, 'a': 1.0, 'is': 2.0, 'small': 1.0, 'car': 1.0, 'to': 3.0, 'was': 1.0, 'kick': 1.0, 'would': 1.0, 'seat': 1.0, 'not': 1.0, 'clean': 1.0, 'concerned': 1.0, 'right': 1.0, 'that': 1.0, 'this': 1.0, 'durable': 1.0, 'it': 2.0, 'actually': 1.0}
Word element => {'tag': 1.0, 'price': 1.0, 'lower': 1.0, 'much': 1.0, 'be': 1.0, 'prince': 1.0, 'durable': 1.0, 'thick': 1.0, 'nowhere': 1.0, 'while': 1.0, 'prone': 1.0, 'king': 1.0, 'sag': 1.0, 'make': 1.0, 'they': 1.0, 'personally': 1.0, 'but': 1.0, 'three': 1.0, 'passes': 1.0, 'kit': 1.0, 'routine': 1.0, 'tiresome': 1.0, 'kick': 4.0, 'may': 1.0, 'my': 3.0, 'prefer': 1.0, 'each': 3.0, 'absolute': 1.0, 'sanity': 1.0, 'ungainly': 1.0, 'their': 1.0, 'tear': 1.0, 'unfastening': 1.0, 'mat': 9.0, 'size': 1.0, 's': 3.0, 'a': 3.0, '3': 1.0, '1': 1.0, 'completely': 1.0, 'install': 2.0, 'and': 7.0, 'garbage': 1.0, 'important': 1.0, 'stain': 1.0, 'identical': 1.0, 'tests': 1.0, 'car': 2.0, 'cleaning': 1.0, 'stains': 1.0, 'chore': 1.0, 'to': 8.0, 'brica': 2.0, 'as': 4.0, 'wear': 1.0, 'it': 3.0, 'remove': 2.0, 'enough': 1.0, 'cover': 1.0, 'seems': 1.0, 'dislike': 1.0, 'areas': 1.0, 'weekly': 2.0, 'lionheart': 1.0, 'boys': 1.0, 'are': 1.0, 'britax': 2.0, 'some': 2.0, 'deluxe': 1.0, 'two': 2.0, 'mess': 1.0, 'i': 2.0, 'very': 2.0, 'surrounding': 1.0, 'carseats': 1.0, 'near': 1.0, 'on': 2.0, 'footprints': 1.0, 'at': 1.0, 'is': 4.0, 'more': 1.0, 'easy': 1.0, 'requiring': 1.0, 'black': 2.0, 'milk': 1.0, 'just': 1.0, 'large': 1.0, 'few': 1.0, 'fastening': 1.0, 'food': 1.0, 'or': 1.0, 'brings': 1.0, 'juice': 1.0, 'velcros': 1.0, 'will': 1.0, 'take': 1.0, 'functional': 1.0, 'people': 1.0, 'no': 1.0, 'than': 1.0, 'installed': 1.0, 'that': 1.0, 'young': 1.0, '20': 1.0, 'seconds': 1.0, 'resistent': 1.0, 'front': 1.0, '2': 2.0, 'machine': 1.0, 'washable': 1.0, 'become': 1.0, 'nearly': 1.0, 'back': 1.0, 'the': 5.0, 'of': 2.0, 'wife': 1.0, 'minivan': 1.0, 'seat': 1.0, 'in': 1.0, 'have': 1.0, 'other': 1.0, 'backseat': 1.0, 'parent': 1.0, 'pack': 1.0, 'has': 2.0, 'mats': 1.0, 'pockets': 2.0}
Word element => {'made': 1.0, 'well': 1.0, 'seem': 1.0, 'seats': 1.0, 'cab': 1.0, 'them': 2.0, 'crew': 1.0, 'so': 1.0, 'i': 4.0, 'amazon': 1.0, 'fine': 1.0, 'strap': 1.0, 'are': 1.0, 'they': 3.0, 'reviews': 1.0, 'the': 6.0, 'adjustable': 1.0, 'before': 1.0, 'kick': 2.0, 'silverado': 1.0, 'using': 1.0, 'mats': 2.0, 'for': 1.0, 'available': 1.0, 'bought': 1.0, 'attachment': 1.0, 'far': 1.0, 'my': 1.0, 'only': 1.0, 'longer': 1.0, 'bottom': 2.0, 'complaint': 1.0, 'is': 1.0, 'around': 1.0, 'should': 1.0, 'on': 3.0, 'brica': 1.0, 'make': 2.0, 'a': 2.0, 'could': 1.0, 'just': 1.0, 'seat': 1.0, 'am': 1.0, 'barely': 1.0, 'get': 1.0, 'straps': 1.0, 'read': 1.0, 'little': 1.0, 'or': 1.0, 'different': 1.0, 'size': 1.0}
Word element => {'product': 1.0, 'a': 1.0, 'is': 1.0, 'seriously': 1.0, 'kidding': 1.0, 'beating': 1.0, 'non': 1.0, 'seats': 2.0, 'this': 1.0, 'children': 1.0, 'only': 1.0, 'stop': 1.0, 'but': 1.0, 'crap': 1.0, 'back': 2.0, 'of': 3.0, 'keep': 1.0, 'my': 4.0, 'are': 1.0, 'prevent': 1.0, 'kick': 1.0, 'great': 1.0, 'the': 4.0, 'these': 1.0, 'they': 2.0, 'kids': 1.0, 'mats': 1.0, 's': 1.0, 'just': 1.0, 'not': 1.0, 'out': 1.0, 'clean': 1.0, 'and': 1.0, 'do': 1.0, 'me': 1.0, 'from': 1.0}
Word element => {'cars': 1.0, 'saved': 1.0, 'have': 1.0, 'my': 2.0, 'kicking': 1.0, 'of': 1.0, 'keeps': 1.0, 'no': 2.0, 'seats': 2.0, 'and': 2.0, 'year': 1.0, '3': 1.0, 'back': 1.0, 'the': 2.0, 'snow': 1.0, 'these': 1.0, 'they': 1.0, 'with': 1.0, 'this': 1.0, 'was': 1.0, 'a': 1.0, 'mats': 1.0, 'old': 1.0, 'i': 1.0, 'bought': 1.0, 'kick': 1.0}
Word element => {'absoluted': 1.0, 'beautifully': 1.0, 'fit': 1.0, 'great': 1.0, 'and': 1.0, 'protectors': 1.0, 'the': 2.0, 'are': 1.0, 'price': 1.0, 'these': 1.0, 'back': 1.0, 'recommend': 1.0, 'seat': 2.0, 'of': 1.0, 'strong': 1.0, 'look': 1.0, 'for': 1.0, 'durable': 1.0}
Word element => {'upholstery': 1.0, 'of': 1.0, 'off': 1.0, 'stains': 1.0, 'keep': 1.0, 'to': 1.0, 'helping': 1.0, 'really': 1.0, 'seat': 1.0, 'coverage': 1.0, 'has': 1.0, 'passenger': 1.0, 'entire': 1.0, 'mercury': 1.0, 'don': 1.0, 'mariner': 1.0, 'great': 3.0, 'the': 1.0, 't': 1.0, 'have': 1.0, 'this': 1.0, 'for': 3.0, 'size': 1.0, 'surface': 1.0, 'so': 1.0, 'back': 1.0, 'i': 1.0, 'my': 2.0, 'leather': 1.0, 'seats': 1.0, 'been': 1.0}
Word element => {'satisfied': 1.0, 'm': 1.0, 'somewhere': 1.0, 'have': 1.0, 'over': 2.0, 'which': 1.0, 'tighten': 1.0, 'pull': 1.0, 'clasp': 1.0, 'plastic': 1.0, 'uses': 1.0, 'top': 1.0, 'leaves': 1.0, 'thin': 1.0, 'little': 1.0, 'quality': 1.0, 'impede': 1.0, 'enough': 1.0, 'seats': 1.0, 'car': 1.0, 'good': 1.0, 'different': 1.0, 'so': 1.0, 'curves': 1.0, 'are': 1.0, 'real': 1.0, 'styles': 1.0, 'angles': 1.0, 'design': 1.0, 'occurs': 1.0, 'attach': 1.0, 'bend': 1.0, 'not': 1.0, 'me': 1.0, 'kinds': 1.0, 'many': 1.0, 'there': 2.0, 'of': 4.0, 'is': 5.0, 'completely': 1.0, 'occupant': 1.0, 'that': 3.0, 'this': 1.0, 'only': 1.0, 'left': 1.0, 'kind': 1.0, 'where': 1.0, 'product': 1.0, 'fold': 1.0, 'difficult': 1.0, 'all': 1.0, 'to': 5.0, 'seat': 1.0, 'i': 2.0, 'etc': 1.0, 'the': 7.0, 'some': 1.0, 'these': 1.0, 'a': 2.0, 'go': 1.0, 't': 1.0, 'affect': 1.0, 'way': 1.0, 'you': 3.0, 'one': 1.0, 'but': 3.0, 'can': 1.0, 'loop': 1.0, 'an': 1.0, 'elastic': 1.0, 'doesn': 1.0, 'it': 2.0, 'band': 2.0, 'and': 1.0, 'tuck': 2.0, 'in': 2.0, 'front': 2.0}
Word element => {'phone': 1.0, 'glass': 1.0, 'protects': 1.0, 'protector': 1.0, 'satisfactory': 1.0, 'overall': 1.0, 'kicking': 1.0, 'dampen': 1.0, 'better': 1.0, 'yet': 1.0, 'or': 2.0, 'out': 2.0, 'things': 1.0, 'needs': 1.0, 'screen': 1.0, 'would': 1.0, 'does': 1.0, 'than': 1.0, 'kick': 1.0, 'entices': 1.0, 'desk': 1.0, 'feel': 1.0, 'noise': 2.0, 'makes': 1.0, 'normally': 1.0, 'she': 1.0, 'it': 3.0, 'of': 5.0, 'in': 3.0, 'like': 1.0, 'toyota': 1.0, 'loud': 1.0, 'mercedes': 1.0, 'weird': 1.0, 'nicely': 1.0, 'the': 15.0, '350': 1.0, 'strap': 2.0, 'uncomfortably': 1.0, 'foot': 1.0, 'cover': 1.0, 'seats': 1.0, 'these': 2.0, 'lower': 1.0, 'not': 1.0, 'get': 1.0, 'a': 5.0, 't': 1.0, 's': 2.0, 'way': 2.0, 'trick': 1.0, 'ml': 1.0, 'mousepad': 1.0, 'thing': 1.0, 'well': 2.0, 'mb': 1.0, 'make': 1.0, 'on': 3.0, 'cruiser': 1.0, 'blotter': 1.0, 'my': 2.0, 'suv': 1.0, 'more': 1.0, 'scrape': 1.0, 'is': 4.0, 'hidden': 1.0, 'fabric': 1.0, 'good': 1.0, 'swvish': 1.0, 'her': 2.0, 'visible': 1.0, 'but': 1.0, 'doesn': 1.0, 'blows': 1.0, 'i': 1.0, 'two': 1.0, 'hits': 1.0, 'kids': 1.0, 'this': 2.0, 'material': 3.0, 'seat': 1.0, 'to': 3.0, 'as': 2.0, '34': 2.0, 'best': 1.0, 'and': 2.0, 'pattern': 1.0, 'looking': 1.0, 'fj': 2.0, 'kid': 1.0, 'world': 1.0, 'actually': 1.0, 'cheap': 2.0, 'someone': 1.0, 'when': 1.0}
Word element => {'get': 1.0, 'parents': 1.0, 'for': 2.0, 'awesome': 1.0, 'is': 1.0, 'have': 2.0, 'with': 2.0, 'this': 1.0, 'perfect': 1.0, 'fits': 1.0, 'but': 1.0, 'must': 1.0, 'a': 2.0, 'complaints': 1.0, 'bit': 1.0, 'luxury': 1.0, 'cars': 2.0, 'pay': 1.0, 'or': 1.0, 'i': 1.0, 'leather': 1.0, 'what': 1.0, 'expensive': 1.0, 'etc': 2.0, 'no': 1.0, 'you': 2.0}
Word element => {'anymore': 1.0, 'to': 1.0, 'have': 1.0, 'don': 1.0, 'and': 1.0, 'tan': 1.0, 'idea': 1.0, 'there': 1.0, 'up': 1.0, 'of': 2.0, 'love': 1.0, 'for': 1.0, 'wash': 1.0, 'in': 1.0, 'put': 1.0, 'back': 2.0, 'car': 1.0, 'bought': 1.0, 'seats': 2.0, 'my': 4.0, 'leather': 1.0, 'i': 3.0, 'new': 1.0, 'her': 1.0, 'what': 1.0, 'that': 2.0, 'a': 1.0, 't': 1.0, 'the': 2.0, 'these': 1.0, 'great': 1.0, 'feet': 1.0, 'kid': 1.0, 'can': 1.0, 'loves': 1.0, 'she': 1.0}
Word element => {'dirty': 1.0, 'it': 1.0, 'her': 1.0, 't': 1.0, 'these': 1.0, 'our': 1.0, 'solved': 1.0, 'back': 1.0, 'get': 1.0, 'we': 2.0, 'bought': 1.0, 'likes': 1.0, 'to': 2.0, 'problem': 1.0, 'so': 1.0, 'munchkin': 1.0, 'kick': 1.0, 'the': 2.0, 'of': 1.0, 'seat': 1.0, 'want': 1.0, 'don': 1.0}
Word element => {'front': 1.0, 'for': 1.0, 'facing': 2.0, 'them': 1.0, 'using': 1.0, 'are': 1.0, 'we': 1.0, 'feet': 1.0, 'product': 1.0, 'rear': 1.0, 'sandy': 1.0, 'works': 1.0, 'keeping': 1.0, 'well': 1.0, 'our': 1.0, 'and': 2.0, 'seats': 2.0, 'both': 1.0, 'clean': 1.0, 'from': 1.0, 'muddy': 1.0}
Word element => {'workout': 1.0, 'last': 1.0, 'car': 1.0, 'for': 1.0, 'great': 1.0, 'a': 1.0, 're': 1.0, 'fit': 1.0, 'range': 1.0, 'with': 1.0, 'on': 1.0, 'already': 1.0, 'rover': 1.0, 'storm': 1.0, 'my': 2.0, 'made': 1.0, 'got': 1.0, 'looks': 1.0, 'like': 1.0, 'snow': 1.0, 'our': 1.0, 'they': 1.0}
Word element => {'years': 1.0, 'for': 1.0, 'using': 1.0, 'think': 1.0, 'i': 1.0, 'use': 1.0, 'easy': 1.0, 'to': 4.0, 'trip': 1.0, 'our': 1.0, 'road': 1.0, 'a': 2.0, 'covers': 1.0, 'before': 1.0, 'except': 1.0, 'have': 1.0, 'come': 1.0, 'durable': 1.0, 'with': 1.0, 'will': 1.0, 'toddler': 1.0, 'install': 1.0, 'everything': 1.0, 'we': 2.0, 'these': 2.0, 'the': 2.0, 'seems': 1.0, 'headrest': 1.0, 'sedan': 1.0, 'and': 1.0, 'be': 2.0, 'bought': 1.0, 'material': 1.0}
Word element => {'near': 1.0, 'entire': 1.0, 'adjust': 1.0, 'with': 1.0, 'up': 1.0, 'don': 1.0, 'where': 1.0, 'bottom': 1.0, 'need': 1.0, 'really': 1.0, 'attach': 1.0, 'me': 1.0, 'of': 3.0, 'enough': 1.0, 'cover': 2.0, 'didn': 2.0, 'velcro': 1.0, 'because': 1.0, 'than': 1.0, 'other': 2.0, 'adjustable': 1.0, 'weren': 1.0, 'allow': 1.0, 'new': 1.0, 'and': 3.0, 'get': 2.0, 'my': 3.0, 'very': 1.0, 'thebrica': 1.0, 'reach': 1.0, 'the': 15.0, 'can': 1.0, '2': 1.0, 'these': 3.0, 'were': 1.0, 'that': 1.0, 'old': 1.0, 'used': 1.0, 'her': 2.0, 'muddy': 1.0, 'sides': 1.0, 'blackbut': 1.0, 'portions': 1.0, 'higher': 1.0, 'backs': 1.0, 'pack': 1.0, 'have': 2.0, 'mat': 1.0, 'covered': 1.0, 'on': 7.0, 'i': 3.0, '4': 1.0, 'mats': 4.0, 'way': 1.0, 'always': 1.0, 'all': 1.0, 'to': 5.0, 'seat': 4.0, 'there': 1.0, 'somehow': 1.0, 'kick': 3.0, 'year': 1.0, 't': 4.0, 'a': 1.0, 'feet': 2.0, 'top': 4.0, 'back': 2.0, 'exposed': 1.0, 'sections': 1.0, 'dirty': 1.0, 'lot': 1.0, 'managed': 1.0, 'strap': 3.0, 'coverage': 2.0, 'more': 2.0, 'is': 1.0}
Word element => {'def': 1.0, 'cords': 1.0, 'of': 2.0, 'is': 3.0, 'around': 1.0, 'slip': 1.0, 'protects': 1.0, 'sturdier': 1.0, 'you': 1.0, 'bonus': 1.0, 'these': 2.0, 'the': 3.0, '2': 1.0, 'must': 1.0, 'have': 3.0, 'are': 2.0, 's': 1.0, 'a': 3.0, 'seats': 2.0, 'flip': 1.0, 'and': 3.0, 'soon': 1.0, 'your': 3.0, 'back': 2.0, 'toddler': 1.0, 'car': 3.0, 'easy': 2.0, 'as': 2.0, 'seat': 2.0, 'to': 2.0, 'clean': 1.0, 'over': 1.0, 'that': 3.0, 'attach': 1.0, 'it': 2.0, 'pack': 1.0, 'much': 1.0, 'super': 1.0, 'each': 1.0, 'my': 1.0, 'another': 1.0, 'brand': 1.0, 'saved': 1.0, 'two': 1.0, 'i': 1.0, 'tried': 1.0, 'also': 1.0, 'for': 2.0, 'one': 2.0, 'or': 1.0}
Word element => {'small': 1.0, 'too': 1.0, 'were': 1.0, 'got': 1.0, 'other': 1.0, 'easy': 1.0, 'seat': 1.0, 'passenger': 1.0, 'and': 2.0, 'back': 1.0, 'cover': 1.0, 'my': 1.0, 'the': 4.0, 'on': 1.0, 'lexus': 1.0, 'kick': 3.0, 'three': 1.0, 'rx': 1.0, 'mats': 3.0, 'really': 1.0, 'big': 1.0, 'driver': 1.0, 'sets': 1.0, 'fasten': 1.0, 'tried': 1.0, 'i': 2.0, 'of': 2.0, '350': 1.0, 'brica': 1.0, 'well': 1.0, 'way': 1.0, 's': 2.0, 'it': 2.0, 'new': 1.0, 'fit': 1.0, 'enough': 1.0, 'to': 2.0}
Word element => {'got': 1.0, 'until': 1.0, 'now': 1.0, 'car': 2.0, 'like': 1.0, 'i': 1.0, 'time': 1.0, 'boy': 1.0, 'rides': 1.0, 'didn': 1.0, 'baby': 1.0, 'my': 1.0, 't': 1.0, 'the': 1.0, 'this': 1.0, 'he': 1.0, 'keeps': 1.0, 'our': 1.0, 'them': 1.0, 'enjoy': 1.0, 'him': 1.0, 'during': 1.0, 'mirror': 2.0, 'entertained': 1.0}
Word element => {'disappointed': 1.0, 'still': 1.0, 'and': 1.0, 'even': 1.0, 'all': 1.0, 'at': 1.0, 'batteries': 1.0, 'didn': 1.0, 'say': 1.0, 'needless': 1.0, 'bottom': 1.0, 'top': 1.0, 'month': 1.0, 'my': 1.0, 'because': 1.0, 'item': 3.0, 'the': 3.0, 't': 2.0, '4': 1.0, 'when': 1.0, 'tried': 1.0, 'i': 4.0, 'old': 1.0, 'cracked': 1.0, 'this': 1.0, 'excited': 1.0, 'rides': 1.0, 'to': 3.0, 'was': 3.0, 'work': 1.0, 'doesn': 1.0, 'nothing': 1.0, 'like': 1.0, 'receive': 1.0, 'car': 1.0, 'received': 1.0, 'mirror': 1.0, 'very': 1.0, 'fresh': 1.0, 'from': 1.0}
Word element => {'well': 1.0, 'nice': 1.0, 'is': 2.0, 'as': 1.0, 'very': 1.0, 'and': 2.0, 'kids': 1.0, 'good': 1.0, 'recommend': 1.0, 'my': 1.0, 'the': 2.0, 'love': 1.0, 'it': 1.0, 'i': 1.0, 'this': 1.0, 'mirror': 2.0, 'music': 1.0}
Word element => {'must': 1.0, 'but': 1.0, 'seats': 1.0, 'facing': 1.0, 'product': 1.0, 'extra': 1.0, 'not': 2.0, 'weeks': 1.0, 'after': 1.0, 'replace': 1.0, 'quickly': 1.0, 'through': 1.0, 'goes': 1.0, 'also': 1.0, 'away': 1.0, 'use': 3.0, 'couldn': 1.0, 'store': 1.0, 'within': 1.0, 'be': 2.0, 'catch': 1.0, 'adjusted': 1.0, 'batteries': 3.0, 'in': 3.0, 'modified': 1.0, 'have': 2.0, 'opener': 1.0, 'opposed': 1.0, 'from': 1.0, 'isn': 1.0, 'view': 1.0, 'volume': 1.0, 'that': 6.0, 'into': 1.0, 'of': 1.0, 'the': 9.0, 'attention': 1.0, 'point': 1.0, 'a': 6.0, 'we': 3.0, 'few': 1.0, 'this': 3.0, 'mirror': 3.0, 'attach': 1.0, 'to': 10.0, 'pretty': 3.0, 'want': 1.0, 's': 1.0, 'visor': 1.0, 'pros': 1.0, 'at': 1.0, 'look': 1.0, 'is': 2.0, 'rear': 2.0, 'ones': 1.0, 'come': 1.0, 'you': 3.0, 'direction': 1.0, 'kids': 4.0, 'soothing': 1.0, 'models': 1.0, 'it': 9.0, 'as': 3.0, 'annoying': 1.0, 'cheaper': 1.0, 'up': 1.0, 'however': 1.0, 'easy': 1.0, 'lights': 1.0, 'and': 6.0, 'constantly': 1.0, 'can': 3.0, 'so': 5.0, 'see': 1.0, 'next': 1.0, 'has': 3.0, 'right': 2.0, 'easier': 1.0, 'they': 2.0, 'adjust': 1.0, 'more': 1.0, 'door': 1.0, 'your': 5.0, 'on': 3.0, 'neither': 1.0, 'are': 2.0, 'remote': 2.0, 'works': 1.0, 'little': 1.0, 'clip': 1.0, 'over': 2.0, 'special': 1.0, 'did': 1.0, 'makes': 1.0, 'keep': 2.0, 'garage': 1.0, 'well': 2.0, 'i': 2.0, 'upbeat': 1.0, 'initial': 1.0, 'like': 1.0, 'good': 2.0, 'which': 1.0, 'keeping': 1.0, 'other': 1.0, 'all': 2.0, 'an': 2.0, 'eye': 2.0, 'my': 1.0, 'cons': 1.0, 'provide': 1.0, 'terrible': 1.0, 'does': 1.0, 't': 2.0, 'require': 1.0, 'really': 1.0, 'battery': 1.0, 'songs': 1.0, 'had': 2.0, 'pick': 1.0}
Word element => {'backseats': 1.0, 'design': 1.0, 'mirror': 2.0, 'every': 1.0, 'neighboring': 1.0, 'are': 1.0, 'from': 1.0, 'awkwardly': 1.0, 'already': 1.0, 'somebody': 1.0, 'remote': 1.0, 'switch': 1.0, 'headrests': 2.0, 'an': 1.0, 'have': 2.0, 'not': 1.0, 'on': 2.0, 'your': 1.0, 'ever': 1.0, 'angle': 1.0, 'has': 2.0, 'in': 2.0, 'anyone': 1.0, 'don': 1.0, 'child': 1.0, 'soothe': 2.0, 'backseat': 2.0, 'out': 1.0, 'product': 2.0, 'the': 5.0, 'driven': 1.0, 'mind': 1.0, 'with': 3.0, 'this': 2.0, 'it': 2.0, 'who': 1.0, 'that': 4.0, 'backwards': 1.0, 'knows': 1.0, 'godsend': 1.0, 'light': 1.0, 'off': 1.0, 'crying': 2.0, 't': 1.0, 'a': 3.0, 'cars': 1.0, 'middle': 2.0, 'facing': 1.0, 'show': 1.0, 'as': 1.0, 'to': 1.0, 'any': 1.0, 'of': 2.0, 'how': 1.0, '6': 1.0, 'one': 1.0, 'hysterical': 1.0, 'unrelenting': 1.0, 'most': 2.0, 'can': 2.0, 'music': 1.0, 'does': 3.0, 'down': 1.0, 'fact': 1.0, 'fits': 1.0, 'my': 1.0, 'infant': 2.0, 'week': 1.0, 'old': 1.0, 'daughter': 1.0, 'only': 1.0, 'its': 1.0, 'and': 3.0, 'combination': 1.0, 'is': 2.0, 'fall': 1.0}
Word element => {'decides': 1.0, 'someone': 1.0, 'mirrors': 1.0, 'just': 1.0, 'after': 1.0, 'almost': 1.0, 'was': 1.0, 'nonetheless': 1.0, 'tech': 1.0, 'great': 1.0, 'ready': 1.0, 'keeping': 1.0, 'solar': 1.0, 'star': 1.0, 'only': 1.0, 'as': 1.0, 'begin': 1.0, 'sounds': 1.0, 'charged': 1.0, 'tabs': 1.0, 'they': 1.0, 'ole': 1.0, 'many': 1.0, 'baby': 4.0, 'keep': 2.0, 'certain': 1.0, 'store': 1.0, 'make': 1.0, 'chargers': 1.0, 's': 2.0, 'use': 1.0, 'mirror': 1.0, 'base': 1.0, 'without': 1.0, 'view': 1.0, 'so': 2.0, 'can': 3.0, 'their': 4.0, 'each': 1.0, 'boggling': 1.0, 'little': 2.0, 'gym': 1.0, 'reviews': 1.0, 'up': 2.0, 'needs': 1.0, 'pick': 1.0, 'which': 1.0, 'an': 1.0, 'top': 1.0, 'a': 14.0, 'go': 3.0, 'ingenious': 1.0, 'might': 1.0, 'have': 2.0, 'things': 1.0, 'meant': 1.0, 'you': 12.0, 'am': 1.0, 'type': 1.0, 'designed': 1.0, 'into': 1.0, 'non': 1.0, 'any': 1.0, 'to': 11.0, 'has': 2.0, 'product': 2.0, 'for': 8.0, 'least': 1.0, 'aa': 1.0, 'know': 1.0, 'like': 1.0, 'not': 2.0, 'me': 1.0, 'add': 1.0, 'something': 1.0, 'buy': 2.0, 'cr2032': 1.0, 'extra': 2.0, 'knock': 2.0, 'i': 9.0, 'by': 1.0, 'mind': 1.0, '18650': 1.0, 'battery': 4.0, 'really': 2.0, 'tuners': 1.0, 'plain': 2.0, 'distract': 1.0, 'need': 3.0, 'feature': 2.0, 'or': 2.0, 'years': 1.0, 'let': 1.0, 'own': 1.0, 'off': 1.0, 'wanted': 1.0, 'start': 1.0, 'some': 4.0, 'gripes': 1.0, 'remote': 3.0, 'trip': 2.0, 'and': 12.0, 'get': 2.0, 'new': 1.0, 'model': 1.0, 'having': 4.0, 'parent': 1.0, 'think': 1.0, 'standard': 1.0, 'that': 4.0, 'because': 2.0, 'looked': 1.0, 'thought': 1.0, 'it': 15.0, 'working': 1.0, 'are': 1.0, 'first': 1.0, 'with': 2.0, 'reviewers': 1.0, 'slammed': 1.0, 'batteries': 2.0, 'item': 4.0, 'everyone': 1.0, 'bought': 1.0, 'order': 1.0, 'color': 2.0, 'of': 6.0, 'the': 11.0, 'this': 9.0, 'look': 1.0, 'at': 3.0, 'is': 4.0, 'these': 2.0, 'once': 1.0, 'comes': 1.0, 'when': 3.0, 'what': 4.0, 'needed': 1.0, 'call': 1.0, 'reviewer': 1.0, 'turned': 1.0, 'features': 3.0, 'negative': 4.0, 'isn': 1.0, 'don': 3.0, 'there': 1.0, 'give': 1.0, 'black': 1.0, 'white': 1.0, 'televisions': 1.0, 't': 6.0, 'along': 1.0, 'remotes': 1.0, 'television': 1.0, 'given': 1.0, 'one': 1.0, 'happy': 1.0, 'rating': 2.0, 'chose': 2.0, 'but': 5.0, 'items': 1.0, 'deduct': 1.0, 'picked': 1.0, 'functionality': 1.0, 'turn': 2.0, 'covering': 1.0, 'still': 1.0, 'gets': 1.0, 'on': 6.0, 'come': 1.0, 'understand': 1.0, 'out': 1.0, 'built': 2.0, 'in': 3.0}
Word element => {'much': 1.0, 'paid': 1.0, 'use': 1.0, 'remove': 1.0, 'have': 1.0, 'fact': 1.0, 'will': 1.0, 'removed': 1.0, 'could': 1.0, 'actual': 1.0, 'around': 1.0, 'than': 1.0, 'hazard': 1.0, 'be': 1.0, 'product': 1.0, 'for': 1.0, 'mine': 1.0, 'liked': 1.0, 'to': 2.0, 'had': 1.0, 'so': 1.0, 'after': 1.0, 'else': 1.0, 'however': 1.0, 'a': 2.0, 'the': 5.0, 'more': 1.0, 'it': 2.0, 'that': 1.0, 'choose': 1.0, 'i': 4.0, 'fluff': 1.0, 'anything': 1.0, 'idea': 1.0, 'extra': 1.0, 'mirror': 3.0, 'too': 1.0, 'is': 1.0, 'because': 1.0, 'just': 1.0, 'big': 1.0, 'remote': 1.0, 'of': 1.0, 'and': 1.0, 'in': 1.0, 'poses': 1.0, 'driving': 1.0}
Word element => {'designed': 1.0, 'well': 1.0, 'not': 1.0, 'of': 1.0, 'front': 1.0, 'is': 2.0, 'herself': 1.0, 'with': 1.0, 'this': 3.0, 'first': 1.0, 'on': 5.0, 'problem': 1.0, 'turned': 2.0, 'for': 1.0, 'lights': 1.0, 'to': 3.0, 'plays': 1.0, 'look': 1.0, 'button': 2.0, 'car': 2.0, 'my': 2.0, 'biggest': 1.0, 'and': 2.0, 'get': 1.0, 'child': 1.0, 'item': 1.0, 'music': 1.0, 'can': 1.0, 'at': 1.0, 'm': 1.0, 'mirror': 2.0, 'it': 3.0, 'she': 1.0, 'hit': 2.0, 'when': 1.0, 'you': 1.0, 'a': 1.0, 'the': 5.0, 'from': 1.0, 'while': 3.0, 'driving': 3.0, 'loves': 1.0, 'into': 1.0, 'that': 1.0, 'next': 1.0, 'impossible': 1.0, 'so': 1.0, 'i': 2.0, 'must': 1.0, 'have': 1.0, 'load': 1.0, 'her': 1.0, 'then': 1.0, 'turning': 1.0, 'turn': 1.0}
Word element => {'house': 1.0, 'my': 1.0, 'want': 1.0, 'you': 1.0, 'thank': 1.0, 'driving': 1.0, 'hours': 1.0, 'of': 2.0, 'drove': 1.0, 'hang': 1.0, 'one': 1.0, 'because': 3.0, 'not': 1.0, 'this': 2.0, 'with': 1.0, 'only': 1.0, 'buy': 1.0, 'steer': 1.0, 'mirror': 1.0, 'love': 1.0, 'for': 1.0, 'sad': 1.0, 'nearest': 1.0, 'old': 1.0, 'toy': 1.0, 'long': 2.0, 'write': 1.0, 'certainly': 1.0, 'them': 1.0, 'letter': 1.0, 'we': 2.0, 'a': 3.0, 't': 1.0, 'the': 2.0, 'have': 1.0, 'just': 1.0, 'passionate': 1.0, 'thing': 1.0, 'time': 1.0, 'to': 4.0, 'did': 1.0, 'from': 1.0, 'twenty': 1.0, 'i': 1.0, '4': 1.0, 'don': 1.0, 'over': 1.0, 'it': 1.0, 'month': 1.0, 'virginia': 1.0, 'and': 2.0, 'reason': 1.0, 'cliff': 1.0, 'around': 1.0, 'more': 1.0, 'deserves': 1.0, 'is': 1.0, 'california': 1.0, 'kept': 1.0, 'enthralled': 1.0, 'him': 1.0, 'week': 1.0}
Word element => {'say': 1.0, 'they': 1.0, 'its': 1.0, 'only': 1.0, 'sure': 1.0, 'not': 1.0, 'stands': 1.0, 'frequent': 1.0, 'batteries': 1.0, 'many': 1.0, 'pull': 1.0, 'had': 1.0, 'would': 1.0, 've': 1.0, 'remote': 2.0, 'power': 3.0, 'times': 1.0, 'you': 4.0, 'outweigh': 1.0, 'positioncons': 1.0, 'in': 1.0, 'stays': 1.0, 'driver': 1.0, 'replacing': 1.0, 'over': 1.0, 'child': 1.0, 'immediately': 1.0, 'from': 3.0, 'calms': 1.0, 'have': 2.0, 'able': 1.0, 'basically': 1.0, 'the': 8.0, 'could': 1.0, 's': 2.0, 't': 1.0, 'well': 1.0, 'mood': 1.0, 'm': 1.0, 'mirror': 3.0, 'i': 3.0, 'feature': 1.0, 'may': 1.0, 'my': 1.0, 'and': 1.0, 'adjust': 1.0, 'on': 4.0, 'your': 1.0, 'isn': 1.0, 'pros': 2.0, 'if': 1.0, 'want': 1.0, 'money': 1.0, 'can': 1.0, 'let': 1.0, 'worth': 2.0, 'stupid': 1.0, 'volume': 1.0, 'totally': 1.0, 'that': 1.0, 'every': 1.0, 'use': 1.0, 'it': 6.0, 'this': 1.0, 'time': 1.0, 'so': 3.0, 'need': 2.0, 'be': 1.0, 'as': 2.0, 'to': 6.0, 'seat': 1.0, 'any': 1.0, 'them': 1.0, 'baby': 1.0, 'predict': 1.0, 'meltdowns': 1.0}
Word element => {'with': 1.0, 'use': 1.0, 'once': 1.0, 'review': 1.0, 'better': 1.0, 'do': 1.0, 'able': 1.0, 'll': 1.0, 'way': 1.0, 'car': 1.0, 'see': 2.0, 's': 3.0, 'a': 3.0, 'mirror': 1.0, 'after': 1.0, 'so': 2.0, 'was': 1.0, 'image': 1.0, 'safety': 1.0, 'by': 1.0, 'old': 2.0, 'to': 3.0, 'all': 1.0, 'daughter': 2.0, 'name': 1.0, 'bad': 1.0, 'have': 2.0, 'thought': 1.0, 'it': 4.0, 'she': 1.0, 'product': 1.0, 'be': 2.0, 'the': 4.0, 'sight': 1.0, 'baby': 3.0, 'my': 2.0, 'another': 1.0, 'itself': 1.0, 'in': 2.0, 'mistakenly': 1.0, 'watching': 1.0, 'i': 5.0, 'two': 1.0, 'year': 1.0, 'would': 1.0, 'been': 1.0, 'read': 1.0, 'little': 1.0, 'nice': 1.0, 'can': 2.0, 'but': 1.0, 'when': 1.0, 'mesmerized': 1.0, 'her': 2.0, 'own': 1.0, 'on': 1.0}
Word element => {'frustrating': 1.0, 'unlikely': 1.0, 'in': 1.0, 'kid': 1.0, 'turned': 1.0, 'hope': 1.0, 'find': 1.0, 'crying': 1.0, 'baby': 1.0, 'button': 1.0, 'worse': 1.0, 'what': 1.0, 'dawn': 1.0, 'do': 1.0, 'won': 1.0, 'press': 1.0, 'need': 1.0, 'so': 2.0, 'if': 1.0, 'visor': 1.0, 'doesn': 1.0, 'decisionsupdate': 1.0, 'hate': 1.0, 'unusable': 1.0, 'oh': 1.0, 'purpose': 1.0, 'defeats': 1.0, 'i': 2.0, 'battery': 3.0, 'buy': 1.0, 'our': 1.0, 'to': 7.0, 'very': 1.0, 'little': 1.0, 'kinda': 1.0, 'not': 1.0, 'give': 1.0, 'me': 1.0, 'break': 1.0, 'get': 2.0, 'and': 5.0, 'this': 2.0, 'drive': 1.0, 'have': 4.0, 'is': 3.0, 'required': 1.0, 'skips': 1.0, 'b': 1.0, 'starts': 1.0, 'company': 1.0, 'without': 2.0, 'the': 13.0, 'fit': 1.0, 'product': 2.0, 'for': 2.0, 'device': 2.0, 'hand': 1.0, 'both': 1.0, 'mirror': 1.0, 'random': 2.0, 'cost': 1.0, 'savings': 1.0, 'stupid': 1.0, 'worth': 1.0, 'home': 1.0, 'aa': 1.0, 'online': 1.0, 'lose': 1.0, 'when': 3.0, 'cell': 2.0, 'you': 5.0, 'remote': 4.0, 'assuming': 1.0, 'some': 1.0, 'corporate': 1.0, 'at': 1.0, 'really': 1.0, 'customer': 1.0, 'it': 6.0, 'annoying': 1.0, 'work': 1.0, 'but': 2.0, 'ok': 1.0, 'require': 1.0, 'put': 1.0, 'your': 1.0, 'on': 4.0, 'we': 2.0, 't': 2.0, 'a': 7.0, 'cr2032': 1.0, 'please': 1.0, 'include': 1.0, 'then': 1.0, 'anything': 1.0, 'target': 1.0}
Word element => {'manageable': 1.0, 'does': 1.0, 'entertained': 1.0, 'genuinely': 1.0, 'head': 1.0, 'bops': 1.0, 'getting': 1.0, 'as': 1.0, 'goodbye': 1.0, 'care': 1.0, 'day': 1.0, 'morning': 1.0, 'says': 1.0, 'wants': 1.0, 'more': 2.0, 'husband': 1.0, 'really': 1.0, 'has': 1.0, 'say': 1.0, 'about': 1.0, 'for': 1.0, 'while': 1.0, 'issues': 1.0, 'which': 1.0, 'than': 1.0, 'way': 1.0, 'inner': 1.0, 'due': 1.0, 'weight': 1.0, 'happens': 2.0, 'surprise': 1.0, 'cuteness': 1.0, 'keep': 1.0, 'did': 1.0, 'never': 1.0, 'carseat': 1.0, 'returned': 1.0, 'son': 3.0, 'me': 1.0, 'may': 2.0, 'my': 4.0, 'seems': 1.0, 'see': 1.0, 'couldn': 1.0, 'wish': 1.0, 'meaning': 1.0, 'll': 2.0, 'right': 1.0, 'or': 1.0, 'left': 1.0, 'sliding': 1.0, 'would': 2.0, 'corner': 1.0, 'sharp': 1.0, 'went': 1.0, 'our': 2.0, 'draw': 1.0, 'they': 1.0, 'issue': 1.0, 'daylight': 1.0, 'regularly': 1.0, 'during': 1.0, 'since': 1.0, 'one': 2.0, 'didn': 4.0, 'last': 1.0, 'okay': 1.0, 'that': 6.0, 'any': 2.0, 'surprised': 1.0, 'loud': 1.0, 'was': 3.0, 'deal': 1.0, 'unfortunately': 1.0, 'isn': 1.0, 'grates': 1.0, '3': 1.0, 'much': 1.0, 'only': 2.0, 'out': 2.0, 're': 1.0, 'fully': 1.0, 'plain': 1.0, 'slide': 2.0, 'traveled': 1.0, 'irritating': 1.0, 'batteries': 1.0, 'who': 1.0, 'to': 7.0, 'pretty': 1.0, 'month': 2.0, 'him': 1.0, 'it': 12.0, 'change': 1.0, 'his': 1.0, 'around': 3.0, 'music': 6.0, 'enjoys': 1.0, 'but': 6.0, 'look': 1.0, 'is': 5.0, 'fan': 1.0, 'i': 6.0, 's': 2.0, 'a': 14.0, 'likes': 1.0, 't': 6.0, 'then': 2.0, 'take': 1.0, 'we': 7.0, 'discovered': 1.0, 'tinny': 1.0, 'just': 4.0, 'not': 1.0, 'black': 1.0, 'factor': 1.0, 'low': 1.0, 'editing': 1.0, 'full': 1.0, 'were': 1.0, 'once': 2.0, 'have': 2.0, 'he': 6.0, 'this': 5.0, 'note': 1.0, 'recent': 1.0, 'entertaining': 1.0, 'old': 4.0, 'longer': 1.0, 'attention': 1.0, 'of': 4.0, 'the': 22.0, 'despite': 1.0, 'from': 1.0, 'big': 2.0, 'later': 1.0, 'being': 1.0, 'very': 1.0, 'are': 1.0, 'first': 1.0, 'cute': 2.0, 'mirror': 7.0, 'both': 1.0, 'decided': 1.0, 'used': 1.0, 'soothing': 2.0, 'turned': 2.0, 'down': 2.0, '14': 1.0, 'hour': 1.0, 'sounds': 1.0, 'us': 1.0, 'also': 2.0, 'on': 5.0, 'long': 1.0, 'and': 11.0, 'trip': 1.0, 'drawback': 2.0, 'when': 1.0, 'results': 1.0, 'found': 1.0, 'bit': 4.0, 'can': 1.0, 'so': 3.0, 'metallic': 1.0, 'with': 1.0, 'volume': 1.0, 'adjustable': 1.0, 'm': 1.0, 'in': 3.0, 'be': 3.0, 'turn': 1.0, 'every': 1.0, 'if': 2.0, 'still': 3.0, 'energetic': 1.0, 'help': 1.0, 'varying': 1.0, 'sound': 1.0, 'quality': 1.0, 'car': 2.0, 'again': 1.0, 'sick': 1.0, 'adorable': 1.0, 'uninterested': 1.0, 'components': 1.0, 'even': 1.0, 'lights': 1.0}
Word element => {'baby': 1.0, 'week': 1.0, 'us': 1.0, 'i': 1.0, 'for': 2.0, 'worked': 1.0, 'around': 1.0, 'is': 1.0, 'really': 1.0, 'the': 3.0, 't': 2.0, 'didn': 1.0, 'can': 1.0, 'to': 1.0, 'and': 1.0, 'small': 1.0, 'after': 1.0, 'it': 1.0, 'moving': 1.0, 'think': 1.0, 'almost': 1.0, 'see': 1.0, 'a': 1.0, 'mirror': 2.0, 'we': 1.0}
Word element => {'a': 1.0, 'love': 1.0, 'the': 2.0, 'things': 1.0, 's': 1.0, 'attention': 1.0, 'my': 1.0, 're': 1.0, 'pay': 1.0, 'just': 2.0, 'while': 1.0, 'so': 1.0, 'daughter': 1.0, 'in': 1.0, 'to': 2.0, 'was': 1.0, 'lights': 1.0, 'it': 2.0, 'this': 1.0, 'starting': 1.0, 'on': 1.0, 'really': 1.0, 'keep': 1.0, 'her': 1.0, 'occupied': 1.0, 'lifesaver': 1.0, 'we': 1.0, 'car': 1.0}
Word element => {'roadtrips': 1.0, 'required': 1.0, 'there': 1.0, 'time': 1.0, 'short': 1.0, 'con': 1.0, 'other': 1.0, 'gets': 1.0, 'activate': 1.0, 'when': 1.0, 'if': 1.0, 'turn': 2.0, 'mirror': 2.0, 'long': 1.0, 'amount': 1.0, 'on': 4.0, 'button': 1.0, 'make': 1.0, '3': 1.0, 'off': 1.0, 'from': 1.0, 'and': 6.0, 'ride': 2.0, 'hour': 1.0, 'also': 1.0, 'times': 1.0, 'manually': 1.0, 'pull': 1.0, 'would': 2.0, '5': 1.0, 'calmly': 1.0, 'car': 2.0, 'plays': 1.0, 'cannot': 1.0, 'being': 1.0, 'remote': 1.0, 'four': 1.0, 'music': 2.0, 'work': 1.0, 'woes': 1.0, 'sight': 1.0, 'just': 1.0, 'life': 1.0, 'started': 1.0, 'she': 1.0, 'baby': 2.0, 'you': 2.0, 'night': 1.0, 'was': 1.0, 'press': 1.0, 'to': 7.0, 'our': 6.0, 'interstate': 1.0, 'as': 1.0, 'lights': 2.0, 'for': 2.0, 'meltdown': 1.0, 'last': 1.0, 'in': 3.0, 'have': 2.0, 'is': 2.0, 'at': 2.0, 'months': 1.0, 'unbearable': 1.0, 'soothe': 1.0, 'glow': 1.0, 'first': 1.0, 'britax': 1.0, 'are': 1.0, 'the': 18.0, 'of': 5.0, 'bsafe': 1.0, 'hometown': 1.0, 'effort': 1.0, 'then': 1.0, 'carseat': 1.0, 'mid': 1.0, 'me': 1.0, 'decide': 1.0, 'wow': 1.0, 'so': 3.0, 'two': 1.0, 'upset': 2.0, 'ordered': 1.0, 'this': 2.0, 'a': 3.0, 'ditch': 1.0, 'cartime': 1.0, 'did': 1.0, 'put': 2.0, 'do': 1.0, 'clicking': 1.0, 'only': 3.0, 'rode': 1.0, 'month': 1.0, '2': 1.0, 'trick': 1.0, 'normally': 1.0, 'girl': 1.0, 'loves': 1.0, 'that': 2.0, 'show': 1.0, 'up': 1.0, 'i': 5.0, 'well': 2.0, '4': 1.0, 'daytime': 1.0, 'really': 1.0, 'modes': 1.0, 'lot': 1.0, 'crying': 1.0, 'happy': 1.0, 'sleepy': 2.0, 'during': 2.0, 'though': 1.0, 'her': 3.0, 'use': 1.0, 'but': 1.0, 'mode': 1.0, 'cons': 1.0, 'old': 1.0, 'fact': 1.0, 'power': 2.0}
Word element => {'worth': 1.0, 'looking': 1.0, 'liked': 1.0, 'think': 2.0, 'some': 1.0, 'things': 1.0, 'at': 2.0, 'has': 1.0, 'this': 1.0, 'with': 1.0, 'loud': 1.0, 'see': 1.0, 'that': 1.0, 'entirely': 1.0, 'and': 2.0, 'old': 1.0, 'i': 5.0, 'bought': 1.0, 'my': 1.0, 'lights': 1.0, 'for': 3.0, 'like': 1.0, 'trip': 2.0, 'interesting': 1.0, 'interested': 1.0, 'he': 3.0, '6': 1.0, 'mode': 1.0, 'long': 2.0, 'him': 1.0, 'it': 2.0, 'month': 1.0, 'right': 1.0, 'look': 1.0, 'now': 1.0, 'was': 2.0, 'a': 2.0, 's': 1.0, 'in': 2.0, 'the': 5.0, 'mirror': 1.0, 'is': 1.0, 'not': 1.0, 'kinda': 1.0, 'all': 2.0, 'to': 1.0, 'sleep': 1.0, 'money': 1.0, 'can': 1.0, 'music': 1.0, 'but': 1.0, 'when': 1.0, 'dark': 1.0, 'out': 1.0}
Word element => {'are': 1.0, 'mirrors': 1.0, 'overall': 1.0, 'daughter': 1.0, 'feel': 1.0, 'like': 1.0, 'which': 1.0, 'with': 1.0, 'side': 1.0, 'plus': 1.0, 'not': 1.0, 'one': 1.0, 'control': 2.0, 'want': 1.0, 'can': 1.0, 'but': 1.0, 'music': 3.0, 'shower': 1.0, 'of': 2.0, 'kind': 1.0, 'or': 2.0, 'volume': 3.0, 'listens': 1.0, 'other': 1.0, 'controls': 1.0, 'both': 1.0, 'mirror': 4.0, 't': 1.0, 'a': 1.0, 'we': 3.0, 'i': 6.0, 'old': 1.0, 'given': 1.0, 'she': 3.0, 'month': 1.0, 'it': 7.0, 'this': 1.0, 'much': 1.0, 'only': 2.0, 'at': 3.0, 'doesn': 1.0, 'was': 1.0, 'look': 2.0, 'another': 1.0, 'my': 3.0, 'the': 16.0, 'herself': 1.0, 'is': 3.0, 'has': 2.0, 'half': 1.0, 'review': 1.0, 'love': 1.0, 'for': 1.0, 'product': 1.0, 'play': 1.0, 'and': 6.0, 'loved': 1.0, 'keeping': 1.0, 'helpful': 2.0, 'used': 1.0, 'remember': 1.0, '5': 1.0, 'before': 1.0, 'got': 1.0, 'even': 1.0, 'cry': 1.0, 'turn': 1.0, 'in': 6.0, 'as': 1.0, 'smile': 1.0, 'to': 7.0, 'our': 3.0, 'loves': 3.0, 'that': 3.0, 'grey': 2.0, 'house': 1.0, 'car': 5.0, 'light': 1.0, 'just': 1.0, 'does': 1.0, 'because': 3.0, 'complaint': 1.0, 'have': 3.0, 'think': 1.0, 'brica': 3.0, 'put': 3.0, 'on': 2.0, 'someone': 1.0, 'you': 4.0, 'when': 1.0, 'baby': 2.0, 'remote': 2.0}
Word element => {'greater': 1.0, 'buy': 1.0, 'to': 1.0, 'doesn': 1.0, 'right': 1.0, 'verdict': 1.0, 'not': 1.0, 'unfortunately': 1.0, 'rests': 2.0, 'front': 1.0, 'have': 3.0, 'all': 2.0, 'yes': 1.0, 'head': 3.0, 'need': 1.0, 'time': 1.0, 'only': 1.0, 'case': 1.0, 'back': 1.0, 'most': 2.0, 'who': 1.0, 'looking': 1.0, 'thing': 1.0, 'visibility': 2.0, 'often': 1.0, 'gives': 1.0, 'you': 6.0, 'when': 1.0, 'that': 1.0, 'tell': 1.0, 'anything': 2.0, 'product': 3.0, 'for': 2.0, 'actually': 1.0, 'built': 1.0, 'used': 1.0, 'a': 5.0, 'rest': 1.0, 'cost': 1.0, 't': 4.0, 's': 2.0, 'feels': 2.0, 'its': 1.0, 'parents': 2.0, 'hate': 1.0, 'hurt': 1.0, 'latch': 1.0, 'like': 2.0, 'pictures': 1.0, 'this': 4.0, 'kids': 1.0, 'more': 1.0, 'at': 1.0, 'is': 2.0, 'of': 5.0, 'the': 10.0, 'great': 2.0, 'install': 2.0, 'seats': 1.0, 'just': 1.0, 'will': 3.0, 'secure': 1.0, 'also': 2.0, 'but': 3.0, 'music': 1.0, 'looks': 2.0, 'it': 11.0, 'solidly': 1.0, 'can': 1.0, 'so': 1.0, 'friends': 1.0, 'good': 1.0, 'within': 1.0, 'children': 2.0, 'with': 4.0, 'durable': 1.0, 'design': 1.0, 'mirror': 2.0, 'yet': 1.0, 'far': 1.0, 'haven': 2.0, 'lights': 1.0, 'even': 2.0, 'eventually': 1.0, 'didn': 1.0, 'we': 3.0, 'trapped': 1.0, 'long': 2.0, 'were': 1.0, 'assuming': 1.0, 'remote': 2.0, 'properly': 1.0, 'and': 1.0, 'use': 2.0, 'given': 1.0, 'plastic': 1.0, 'control': 3.0, 'cars': 2.0, 'has': 1.0, 'very': 1.0, 'bad': 1.0, 'really': 1.0, 'their': 2.0, 'repetitive': 1.0, 'our': 2.0, 'as': 4.0, 'your': 1.0, 'tire': 1.0, 'probably': 1.0, 'any': 1.0, 'well': 2.0, 'i': 1.0, 'stay': 1.0, 'enjoy': 1.0, 'kid': 2.0, 'sounds': 1.0, 'toys': 1.0, 'goes': 1.0, 'sound': 2.0, 'make': 1.0, 'met': 1.0, 'worse': 1.0, 'where': 2.0, 're': 1.0, 'seat': 1.0, 'lies': 1.0, 'in': 3.0, 'car': 2.0}
Word element => {'buy': 1.0, 'a': 1.0, 'what': 1.0, 'loves': 1.0, 'mirror': 1.0, 'himself': 1.0, 'watch': 1.0, 'music': 1.0, 'can': 1.0, 'just': 1.0, 'not': 1.0, 'immediately': 1.0, 'of': 2.0, 'very': 1.0, 'from': 1.0, 'his': 2.0, 'does': 1.0, 'visual': 1.0, 'car': 1.0, 'to': 1.0, 'comes': 1.0, 'falls': 1.0, 'asleep': 1.0, 'the': 4.0, 'my': 1.0, 'great': 1.0, 'twin': 1.0, 'stimulation': 1.0, 'grandsons': 1.0, 'brother': 1.0, 'for': 1.0, 'and': 7.0, 'perfectly': 2.0, 'like': 1.0, 'works': 2.0, 'much': 1.0, 'cried': 1.0, 'ride': 1.0, 'picu': 1.0, 'fireflies': 1.0, 'needs': 1.0, 'this': 2.0, 'it': 1.0, 'he': 2.0, 'first': 1.0, 'him': 1.0, 'aiden': 1.0, 'lots': 1.0, 'in': 3.0, 'auditory': 1.0, 'at': 1.0, 'times': 1.0, 'spending': 1.0, 'nicu': 1.0, '3': 1.0, 'bought': 1.0, 'one': 1.0, 'months': 1.0}
Word element => {'baby': 1.0, 'keep': 1.0, 'the': 3.0, 'music': 1.0, 'to': 2.0, 'easy': 1.0, 'use': 1.0, 'modes': 1.0, 'and': 1.0, 'nice': 1.0, 'car': 1.0, 'for': 1.0, 'in': 1.0, 'lights': 1.0, 'have': 1.0, 'put': 1.0, 'two': 1.0, 'entertained': 1.0, 'different': 1.0}
Word element => {'features': 1.0, 'more': 1.0, 'purchased': 1.0, 'bother': 1.0, 'doesn': 1.0, 'size': 1.0, 'superior': 1.0, 'far': 1.0, 'simply': 1.0, 'used': 1.0, 'as': 1.0, 'britax': 2.0, 'thing': 1.0, 'last': 1.0, 'oh': 1.0, 'than': 1.0, 'way': 1.0, 'give': 1.0, 'switch': 1.0, 'off': 1.0, 'would': 2.0, 'drive': 2.0, 'one': 1.0, 'try': 1.0, 'much': 1.0, 'it': 4.0, 'useless': 1.0, 'this': 3.0, 'our': 1.0, 'to': 7.0, 'have': 2.0, 'mirror': 7.0, '34': 2.0, 'a': 8.0, 't': 4.0, 'will': 3.0, 'but': 3.0, 'can': 1.0, 'music': 1.0, 'else': 1.0, 'everything': 1.0, 'now': 1.0, 'bought': 1.0, 'hates': 1.0, 'hands': 1.0, 'store': 1.0, 'add': 1.0, 'buy': 1.0, 'minutes': 2.0, 'extra': 1.0, 'car': 2.0, '7': 1.0, 'they': 1.0, 'remedy': 1.0, 'valuable': 1.0, 'on': 7.0, 'definitely': 1.0, 'think': 2.0, 'sometimes': 1.0, 'trip': 1.0, 'and': 7.0, 'well': 1.0, 'i': 8.0, 'she': 3.0, 'baby': 3.0, 'don': 2.0, 'has': 1.0, 'didn': 1.0, 'repeat': 1.0, 'anything': 1.0, 'napped': 1.0, 'good': 1.0, 'use': 1.0, 'her': 1.0, 'in': 5.0, 'clarity': 1.0, 'if': 2.0, 'turn': 1.0, 'lights': 1.0, 'the': 16.0, 'longer': 1.0, 'button': 2.0, 'fix': 1.0, 'while': 1.0, 'does': 1.0, 'having': 2.0, 'old': 1.0, 'power': 1.0, 'help': 1.0, 'during': 1.0, 'problem': 1.0, 'though': 1.0, 'my': 3.0, 'me': 2.0, 'not': 1.0, 'eye': 1.0, '5': 2.0, 'is': 7.0, 'at': 1.0, 'times': 1.0, 'remote': 3.0, '10': 2.0, 'meltdown': 1.0, 'for': 3.0, 'such': 1.0, 'entertainment': 1.0, 'day': 1.0, 'control': 1.0, 'life': 1.0, 'just': 2.0, 'saver': 1.0, 'reviewers': 1.0, 'distract': 1.0, 'all': 1.0, 'an': 2.0, 'other': 1.0, 'daughter': 1.0, 'enough': 1.0, 'months': 2.0, 'get': 1.0, 'us': 1.0, 'home': 1.0, 'saying': 1.0, 'that': 2.0, 'given': 1.0, 'real': 1.0, 'we': 2.0, 'fine': 1.0, 'then': 2.0, 'design': 1.0, 'keeping': 1.0, 'flaw': 1.0, 'starts': 1.0, 'push': 1.0, 'buckling': 1.0}
Word element => {'little': 1.0, 'or': 1.0, 'turned': 1.0, 'soon': 1.0, 'just': 1.0, 'older': 1.0, 'up': 2.0, 'interest': 1.0, 'the': 7.0, 'got': 1.0, 'didn': 1.0, 'but': 2.0, 'great': 1.0, 'nice': 1.0, 'as': 2.0, 'our': 3.0, 'hard': 1.0, 'extras': 1.0, 'rigged': 1.0, 'for': 1.0, 'one': 1.0, 'really': 2.0, 'is': 2.0, 'others': 1.0, 'some': 1.0, 'necessary': 1.0, 'issue': 1.0, 'are': 1.0, 'mirror': 4.0, 'other': 3.0, 'baby': 1.0, 'viewing': 1.0, 'that': 1.0, 'backwards': 1.0, 'not': 2.0, 'stay': 1.0, 't': 1.0, 'we': 2.0, 'a': 2.0, 'facing': 1.0, 'with': 1.0, 'only': 1.0, 'this': 1.0, 'bench': 1.0, '5': 1.0, 'fell': 1.0, 'stopped': 1.0, 'it': 1.0, 'month': 1.0, 'old': 1.0, 'i': 2.0, 'seating': 1.0, 'mirrors': 1.0, 'tried': 1.0, 'anymore': 1.0, 'have': 2.0, 'regular': 1.0, 'in': 2.0, 'also': 1.0, 've': 1.0, 'car': 3.0, 'like': 2.0, 'than': 1.0, 'does': 1.0}
Word element => {'loves': 1.0, 'still': 1.0, '6': 1.0, 'small': 1.0, 'my': 2.0, 'mirror': 2.0, 'originally': 1.0, 'plain': 1.0, 'clear': 1.0, 'i': 2.0, 'daughter': 2.0, 'when': 1.0, 'big': 1.0, 'decided': 1.0, 'one': 1.0, 'boring': 1.0, 'it': 3.0, 'this': 1.0, 'great': 1.0, 'the': 2.0, '2': 1.0, 'regular': 1.0, 'is': 3.0, 'months': 2.0, 'was': 2.0, 'had': 1.0, 'to': 1.0, 'and': 3.0, 'get': 1.0}
Word element => {'out': 1.0, 'else': 1.0, 'someone': 1.0, 'helps': 1.0, 'hope': 1.0, 'all': 1.0, 'alotthat': 1.0, 'forth': 1.0, 'a': 2.0, 'we': 1.0, 't': 4.0, 'go': 1.0, 'wont': 1.0, 'going': 1.0, 'learned': 1.0, 'get': 1.0, 'i': 3.0, 'stuffed': 1.0, 'here': 1.0, 'be': 2.0, 'crapy': 1.0, 'hook': 1.0, 'couple': 1.0, 'and': 4.0, 'lot': 1.0, 'is': 3.0, 'at': 1.0, 'keep': 1.0, 'store': 1.0, 'was': 1.0, 'remote': 2.0, 'screw': 2.0, 'up': 3.0, 'takes': 1.0, 'don': 2.0, 'isn': 1.0, 'turning': 1.0, 'pick': 1.0, 'stripped': 1.0, 'but': 2.0, 'work': 1.0, 'on': 3.0, 'put': 3.0, 'review': 1.0, 'like': 1.0, 'it': 7.0, 'annoying': 1.0, 'this': 2.0, 'know': 1.0, 'found': 1.0, 'bought': 1.0, 'quality': 1.0, 'parking': 1.0, 'yet': 1.0, 'or': 1.0, 'the': 16.0, 'careful': 1.0, 'myself': 1.0, 'expect': 1.0, 'knowledge': 1.0, 'just': 1.0, 'not': 1.0, 'turns': 2.0, 'after': 1.0, 'plate': 1.0, 'installation': 1.0, 'that': 1.0, 'to': 4.0, 'in': 6.0, 'seat': 1.0, 'also': 1.0, 'animal': 1.0, 'batteries': 2.0, 'many': 1.0, 'what': 1.0, 'when': 1.0, 'you': 2.0, 'doubt': 1.0, 'if': 1.0, 'clear': 1.0, 'how': 1.0, 'adjust': 1.0, 'really': 1.0, 'battery': 1.0, 'about': 1.0, 'should': 1.0, 's': 2.0, 'maybe': 1.0, 'common': 1.0, 'didn': 1.0, 'even': 1.0, 'supposed': 1.0, 'facing': 1.0, 'mirror': 4.0, 'with': 1.0, 'off': 1.0, 'until': 2.0, 'new': 2.0, 'fret': 1.0, 'getting': 1.0, 'attached': 1.0, 'can': 1.0, 'so': 3.0, 'headrest': 1.0, 'back': 1.0}
Word element => {'trip': 1.0, 'distracted': 1.0, 'at': 1.0, 'least': 1.0, 'so': 1.0, 'minutes': 1.0, 'takes': 1.0, 'guy': 1.0, '30': 1.0, 'the': 2.0, 'in': 1.0, 'live': 1.0, 'to': 1.0, 'anywhere': 1.0, 'it': 1.0, 'this': 1.0, 'during': 1.0, 'we': 1.0, 'entertained': 1.0, 'mirror': 1.0, 'keeps': 1.0, 'country': 1.0, 'our': 1.0, 'little': 1.0, 'get': 1.0, 'and': 1.0}
Word element => {'sleep': 1.0, 'baby': 1.0, 'on': 1.0, 'even': 1.0, 'way': 1.0, 's': 1.0, 'lowest': 1.0, 'but': 1.0, 'noise': 1.0, 'too': 1.0, 'considering': 1.0, 'to': 2.0, 'was': 1.0, 'not': 1.0, 'at': 2.0, 'volume': 1.0, 'wish': 1.0, 'like': 1.0, 'could': 1.0, 'soothe': 1.0, 'in': 1.0, 'setting': 1.0, 'do': 1.0, 'car': 1.0, 'as': 1.0, 'ok': 1.0, 'mirror': 1.0, 'we': 2.0, 'it': 3.0, 'this': 1.0, 'loud': 2.0, 'however': 1.0, 'so': 1.0, 'use': 1.0, 'home': 2.0, 'the': 4.0, 'is': 1.0}
Word element => {'traveling': 1.0, 'worry': 1.0, 'who': 1.0, 'strapped': 1.0, 'being': 1.0, 'toddlers': 1.0, 'too': 1.0, 'toy': 1.0, 'attach': 1.0, 'pocket': 1.0, 'mesh': 1.0, 'makes': 1.0, 'loop': 1.0, 'little': 2.0, 'there': 1.0, 'herself': 1.0, 'proud': 1.0, 'it': 1.0, 'wouldn': 1.0, 'obviously': 1.0, 'more': 1.0, 'changes': 1.0, 'heavy': 1.0, 'diaper': 1.0, 'made': 2.0, 'which': 2.0, 'wipes': 1.0, 'diapers': 2.0, 'couple': 1.0, 'much': 1.0, 'put': 2.0, 'all': 2.0, 't': 2.0, 'didn': 1.0, 'mommy': 1.0, 'in': 6.0, 'bag': 1.0, 'platform': 1.0, 'this': 5.0, 'daughter': 2.0, 'train': 1.0, 'since': 1.0, 'peace': 2.0, 'security': 1.0, 'myself': 1.0, '23': 1.0, 'bought': 1.0, 'the': 11.0, 'of': 7.0, 'small': 2.0, 'a': 9.0, 'might': 1.0, 'on': 3.0, 'flight': 1.0, 'over': 2.0, 'mind': 2.0, 'with': 1.0, 'taking': 1.0, 'backpack': 2.0, 'through': 2.0, 'loved': 1.0, 'well': 1.0, 'i': 6.0, 'about': 1.0, 'busy': 2.0, 'out': 1.0, 'while': 1.0, 'tie': 1.0, 'public': 1.0, 'stand': 1.0, 'chicago': 1.0, 'transportation': 1.0, 'she': 3.0, 'leash': 2.0, 'can': 1.0, 'constantly': 1.0, 'so': 2.0, 'to': 6.0, 'was': 2.0, 'had': 2.0, 'positioning': 1.0, 'take': 1.0, 'my': 3.0, 'me': 1.0, 'not': 1.0, 'and': 5.0, 'children': 1.0, 'fight': 1.0, 'airport': 4.0, 'that': 3.0, 'when': 4.0, 'caregivers': 1.0, 'you': 6.0, 'by': 1.0, 'darts': 1.0, 'worried': 1.0, 'faster': 1.0, 'just': 1.0, 'would': 1.0, 'felt': 1.0, 'month': 1.0, 'gave': 1.0, 'super': 1.0, 'wander': 1.0, 'away': 2.0, 'if': 2.0, 'want': 2.0, 'have': 1.0, 'line': 1.0, 'active': 1.0, 'your': 1.0, 'probably': 1.0, 'product': 1.0, 'toddler': 2.0, 'travel': 1.0, 'will': 1.0, 'also': 2.0, 'them': 2.0, 'they': 1.0, 'old': 1.0, 'run': 2.0, 'yank': 1.0, 'for': 4.0, 'shoe': 1.0, 'different': 1.0, 'her': 3.0, 'harness': 2.0, 'however': 1.0, 'generally': 1.0, 'listens': 1.0, 'anything': 1.0, 'tell': 1.0, 'at': 2.0, 'look': 1.0, 'is': 3.0, 'carrying': 1.0, 'spring': 1.0, 'great': 2.0, 'big': 1.0, 's': 1.0, 'giving': 1.0, 'amenable': 1.0, 'extra': 1.0, 'places': 1.0, 'having': 1.0, 'own': 1.0, 'package': 1.0, 'girl': 1.0, 'like': 1.0}
Word element => {'option': 1.0, 'better': 1.0, 'a': 1.0, 't': 1.0, 'can': 1.0, 'month': 1.0, 'carry': 1.0, 'around': 1.0, 'vacation': 1.0, 'our': 2.0, 'and': 2.0, 'him': 1.0, 'letting': 1.0, 'walk': 1.0, 'pack': 1.0, 'to': 1.0, 'old': 1.0, 'much': 1.0, 'compact': 1.0, 'easy': 1.0, 'imagine': 1.0, '18': 1.0, 'with': 1.0, 'it': 2.0, 'this': 1.0, 'loves': 1.0, 'during': 1.0, 'we': 1.0, 'is': 1.0, 'felt': 1.0, 'son': 1.0, 'safer': 1.0}
Word element => {'one': 1.0, 'bought': 1.0, 'walk': 1.0, 'general': 1.0, 'in': 2.0, 'sippy': 1.0, 'space': 1.0, 'pocket': 1.0, 'like': 1.0, 'we': 1.0, 'a': 3.0, 'toy': 1.0, 'removed': 1.0, 'street': 1.0, 'both': 2.0, 'years': 1.0, 'be': 4.0, 'for': 4.0, 'love': 1.0, 'fit': 1.0, 'adjusted': 1.0, 'kids': 1.0, 'this': 1.0, 'corral': 1.0, 'it': 3.0, 'come': 1.0, 'cup': 1.0, 'my': 1.0, 'backpack': 2.0, 'i': 4.0, 'is': 3.0, 'many': 1.0, 'great': 1.0, 'just': 1.0, 'not': 1.0, 'described': 1.0, 'and': 1.0, 'do': 1.0, 'down': 1.0, 'direction': 1.0, 'inside': 1.0, 'hook': 1.0, 'toddler': 1.0, 'can': 3.0, 'but': 1.0, 'that': 2.0, 'size': 1.0, 'cord': 1.0, 'so': 1.0, 'the': 9.0, 'careful': 1.0, 'used': 1.0, 'tether': 1.0, 'outside': 1.0, 'as': 2.0, 'to': 4.0, 'have': 1.0, 'twins': 1.0, 'yank': 1.0, 'colors': 1.0, 'help': 1.0}
Word element => {'tired': 1.0, 'doesn': 1.0, 'i': 1.0, 'me': 1.0, 'something': 1.0, 'gives': 1.0, 'happy': 1.0, 'whatever': 1.0, 'arm': 2.0, 'one': 1.0, 'straps': 1.0, 'sometimes': 1.0, 'of': 2.0, 'so': 1.0, 'unbuckle': 1.0, 'then': 1.0, 'buckle': 1.0, 'how': 1.0, 'bounce': 1.0, 'sashay': 1.0, 'front': 1.0, 'buckled': 1.0, 'have': 1.0, 'for': 2.0, 'right': 1.0, 'or': 1.0, 'which': 1.0, 'like': 1.0, 'drag': 1.0, 'do': 1.0, 'pack': 2.0, 'leaves': 1.0, 'now': 2.0, 'dance': 1.0, 'to': 5.0, 'her': 9.0, 'my': 3.0, 'ever': 1.0, 'likes': 1.0, 'has': 2.0, '18': 1.0, 'purse': 2.0, 'fanny': 2.0, 'great': 1.0, '1': 1.0, 'soon': 1.0, 'too': 1.0, 'raises': 1.0, 'and': 5.0, 'makes': 1.0, 'old': 3.0, 'it': 5.0, 'month': 1.0, 'she': 10.0, 'that': 2.0, 'loves': 1.0, 'been': 1.0, 't': 1.0, 'walks': 1.0, 'proud': 1.0, 's': 1.0, 'could': 1.0, 'a': 2.0, 'since': 1.0, 'goes': 1.0, 'little': 1.0, 'wherever': 1.0, 'crawl': 1.0, 'with': 1.0, 'doing': 1.0, 'lady': 1.0, 'this': 2.0, 'boring': 1.0, 'shoulder': 1.0, '2': 1.0, 'distraction': 1.0, 'the': 4.0, 'alone': 1.0, 'year': 1.0, 'puts': 2.0, 'air': 1.0, 'in': 4.0, 'get': 1.0, 'learned': 1.0, 'backpack': 1.0, 'finally': 1.0, 'own': 1.0, 'on': 1.0, '3': 1.0, 'put': 1.0, 'bag': 3.0, 'toys': 1.0, 'size': 1.0, 'around': 3.0, 'is': 2.0, 'hope': 1.0, 'just': 3.0}
Word element => {'older': 1.0, 'be': 1.0, 'room': 1.0, '34': 1.0, 'of': 1.0, 'places': 1.0, 'off': 1.0, 'darting': 1.0, 'still': 1.0, 'people': 1.0, 'better': 1.0, 'whereas': 1.0, 'you': 1.0, 'with': 3.0, 'almost': 1.0, 'they': 1.0, 'walk': 1.0, 'stage': 1.0, 'bigger': 1.0, 'at': 1.0, 'kid': 3.0, 'your': 1.0, 'if': 1.0, 'would': 2.0, 'i': 1.0, 'two': 1.0, 'have': 1.0, 'tug': 1.0, 'chest': 2.0, 'really': 1.0, 'this': 3.0, 'it': 3.0, 'end': 1.0, 'only': 1.0, 'harness': 2.0, 'fits': 1.0, 'often': 1.0, 'my': 1.0, 'backpack': 6.0, 'good': 2.0, 'furry': 1.0, 'to': 1.0, 'as': 2.0, 'very': 1.0, 'little': 3.0, 'so': 1.0, 'leash': 1.0, 'boy': 2.0, 'bottle': 1.0, 'one': 3.0, '25': 1.0, 'us': 2.0, 'spare': 1.0, 'less': 1.0, 'not': 1.0, 'can': 1.0, 'work': 1.0, 'well': 1.0, 'might': 1.0, 's': 1.0, 'a': 7.0, 'suggest': 1.0, 'animal': 2.0, 'stuffed': 1.0, 'is': 5.0, 'more': 2.0, 'reach': 1.0, 'the': 9.0, 'like': 3.0, 'does': 1.0, 'than': 2.0, 'water': 1.0, 'where': 3.0, 'for': 3.0, 'actually': 1.0, 'carry': 1.0, 'some': 1.0, 'animals': 2.0, 'things': 1.0, 'feel': 1.0, 'padded': 1.0, 'across': 1.0, 'and': 5.0, 'always': 1.0, 'straps': 2.0, 'proper': 1.0, 'books': 1.0, 'there': 1.0, 'are': 2.0, 'strap': 2.0}
Word element => {'use': 1.0, 'continue': 1.0, 'we': 1.0, 'monitor': 1.0, 'will': 1.0, 'up': 1.0, 'months': 1.0, '18': 1.0, 'age': 1.0, 'younger': 1.0, 'might': 1.0, 'causes': 1.0, 'taut': 1.0, 'careful': 1.0, 'very': 1.0, 'unless': 1.0, 'complaint': 1.0, 'only': 1.0, 'by': 1.0, 'just': 2.0, 'leash': 3.0, 'have': 1.0, 'group': 1.0, 'pounds': 1.0, 'than': 1.0, 'way': 1.0, 'straps': 1.0, 'stop': 1.0, 'i': 6.0, 'well': 1.0, 'idea': 1.0, 'fall': 1.0, 'because': 2.0, 'that': 1.0, 'easily': 1.0, 'didn': 1.0, 'got': 1.0, 'needed': 1.0, 'hands': 1.0, 'of': 6.0, 'the': 13.0, 'like': 2.0, 'hold': 1.0, '1': 1.0, 'month': 1.0, 'small': 2.0, 'a': 8.0, 's': 1.0, 'walk': 1.0, 'harness': 3.0, 'this': 3.0, 'functional': 1.0, 'loves': 1.0, 'roaming': 1.0, 'situation': 1.0, '2': 1.0, 'but': 3.0, 'can': 1.0, 'as': 3.0, 'how': 1.0, 'our': 2.0, 'freedom': 1.0, 'grow': 1.0, 'son': 7.0, 'let': 1.0, '13': 1.0, 'won': 1.0, 'animal': 1.0, 'who': 1.0, 'm': 1.0, 'in': 2.0, 'my': 6.0, 'old': 1.0, 'was': 1.0, 'doesn': 1.0, 'he': 1.0, 'yet': 1.0, 'far': 1.0, 'pack': 2.0, 'better': 1.0, 'it': 3.0, 'him': 2.0, 'wear': 1.0, 'were': 1.0, 'to': 9.0, 'high': 1.0, 'good': 1.0, 'size': 2.0, 'thegoldbug': 1.0, 'with': 2.0, 'plenty': 1.0, 'room': 1.0, 'for': 2.0, 't': 3.0, 'fit': 1.0, 'is': 4.0, 'currently': 1.0, 'recommended': 1.0, 'and': 6.0, '27': 1.0, 'although': 1.0, 'chest': 2.0, 'buckle': 1.0, 'rides': 1.0, 'two': 1.0, 'little': 1.0, 'on': 2.0, 'put': 1.0, 'backpack': 3.0, 'bit': 1.0, 'easy': 1.0, 'enough': 1.0, 'right': 1.0, 'lionfor': 1.0, 'couple': 1.0, 'his': 2.0, 'toys': 1.0, 'be': 3.0, 'drink': 1.0, 'they': 1.0, 'perfectly': 1.0, 'removed': 1.0, 'fits': 1.0, 'an': 1.0, 'clip': 1.0, 'converts': 1.0, 'depending': 1.0}
Word element => {'child': 1.0, 's': 1.0, 'i': 1.0, 'old': 1.0, 'year': 1.0, 'for': 2.0, 'not': 1.0, 'excellent': 1.0, 'para': 2.0, 'o': 4.0, 'ideal': 2.0, 'tama': 1.0, 'de': 2.0, 'del': 1.0, 'years': 1.0, 'un': 2.0, 'excelente': 1.0, 'a': 5.0, 'su': 1.0, 'no': 1.0, 'ni': 3.0, 'size': 1.0, 'quiero': 1.0, 'is': 2.0, 'material': 2.0, 'os': 2.0, 'mean': 1.0, 'decir': 1.0, 'it': 2.0, 'ntilde': 6.0, 'que': 1.0, 'es': 3.0, '5': 2.0, '2': 2.0, 'the': 2.0}
Word element => {'enough': 1.0, 'diapers': 1.0, 'drinks': 1.0, 'his': 1.0, 'just': 1.0, 'at': 1.0, 'able': 2.0, 'basically': 1.0, 'job': 1.0, 'the': 4.0, 'use': 1.0, 'but': 1.0, 'i': 4.0, 'guess': 1.0, 'for': 1.0, 'actually': 1.0, 'and': 3.0, 'away': 1.0, 'looking': 1.0, 'like': 1.0, 'wasn': 1.0, 'it': 6.0, 'he': 1.0, 'with': 1.0, 'used': 1.0, 'factor': 1.0, 'on': 1.0, 'backpack': 2.0, 'usage': 1.0, 'fast': 1.0, 'good': 2.0, 'you': 1.0, 'yank': 1.0, 'if': 1.0, 'home': 1.0, 'my': 1.0, 'best': 1.0, 'runs': 1.0, 'we': 1.0, 't': 1.0, 's': 2.0, 'a': 2.0, 'going': 1.0, 'son': 1.0, 'gets': 1.0, 'down': 1.0, 'does': 1.0, 'that': 1.0, 'fall': 1.0, 'is': 1.0, 'tested': 1.0, 'type': 1.0, 'as': 1.0, 'to': 2.0, 'any': 1.0, 'of': 1.0, 'leash': 2.0, 'so': 1.0}
Word element => {'far': 1.0, 'to': 1.0, 'goes': 1.0, 'does': 1.0, 'used': 1.0, 'sudden': 1.0, 'even': 1.0, 'down': 1.0, 'wearing': 1.0, 'so': 1.0, 'keeping': 1.0, 'of': 1.0, 'knock': 1.0, 'no': 1.0, 'jolt': 1.0, 'at': 1.0, 'has': 1.0, 'months': 1.0, 'on': 1.0, 'problem': 1.0, '22': 1.0, 'only': 1.0, 'it': 7.0, 'he': 2.0, 'have': 1.0, 'but': 1.0, 'doesn': 1.0, 'stretches': 1.0, 'and': 1.0, 'my': 1.0, 'pulling': 1.0, 'slightly': 1.0, 'cord': 1.0, 'job': 1.0, 'the': 2.0, 'we': 1.0, 't': 2.0, 'a': 3.0, 'check': 1.0, 'son': 1.0, 'him': 2.0, 'in': 1.0, 'also': 1.0, 'times': 1.0, 'when': 2.0, 'attached': 1.0, 'is': 2.0, 'few': 1.0, 'just': 1.0, 'isn': 1.0, 'right': 1.0, 'great': 1.0, 'spot': 1.0}
Word element => {'bag': 1.0, 'the': 1.0, 'in': 1.0, 'wipes': 1.0, 'and': 1.0, 'put': 1.0, 'definitely': 1.0, 'nice': 1.0, 'going': 1.0, 'diapers': 1.0, 'but': 1.0, 'thought': 1.0, 'it': 1.0, 'able': 1.0, 'not': 1.0, 'was': 1.0, 'to': 2.0, 'be': 2.0, 'a': 1.0, 'lot': 1.0, 'will': 1.0, 'bigger': 1.0}
Word element => {'above': 1.0, 'had': 1.0, 'who': 1.0, 'caregiver': 1.0, '2': 1.0, 'using': 1.0, 'been': 1.0, 'not': 1.0, 'chest': 1.0, 'conventional': 1.0, 'over': 1.0, 'on': 2.0, 'exclaimed': 1.0, 'said': 1.0, 'backpa': 1.0, 'mah': 1.0, 'saw': 1.0, 'once': 1.0, 'willing': 1.0, 'be': 1.0, 'backpack': 3.0, 'pacifier': 1.0, 'fruit': 1.0, 'cup': 1.0, 'put': 2.0, 'all': 2.0, 'limit': 1.0, 'even': 1.0, 'ability': 2.0, 'walking': 1.0, 'product': 3.0, 'this': 4.0, 'carry': 1.0, 'prefer': 1.0, 'bulky': 1.0, 'would': 3.0, 'onto': 1.0, 'sunglasses': 1.0, '34': 4.0, 'have': 3.0, 'if': 3.0, 'being': 1.0, 'better': 1.0, 'their': 1.0, 'bring': 1.0, 'temperament': 1.0, 'flexibility': 1.0, 'haven': 1.0, 'hold': 1.0, 'like': 2.0, 'know': 1.0, 'tether': 1.0, 'to': 14.0, 'as': 1.0, 'hands': 1.0, 't': 5.0, 'a': 10.0, 'we': 5.0, 'go': 2.0, 's': 1.0, 'fan': 1.0, 'doesn': 2.0, 'was': 3.0, 'but': 4.0, 'allows': 1.0, 'with': 1.0, 'dash': 1.0, 'hate': 1.0, 'time': 3.0, 'decided': 1.0, 'used': 1.0, 'before': 1.0, 'market': 2.0, 'explore': 1.0, 'some': 3.0, 'grab': 1.0, 'crowds': 1.0, 'now': 2.0, 'situations': 1.0, 'yet': 1.0, 'for': 5.0, 'am': 1.0, 'dense': 1.0, 'deciding': 1.0, 'hesitated': 1.0, 'old': 1.0, 'makes': 1.0, 'unsure': 1.0, 'me': 2.0, 'my': 1.0, 'sippy': 1.0, 'up': 1.0, 'knowing': 1.0, 'neighborhood': 1.0, 'little': 1.0, 'leash': 1.0, 'she': 7.0, 'wear': 1.0, 'it': 9.0, 'danger': 1.0, 'strap': 1.0, 'scoop': 1.0, 'loves': 1.0, 'because': 3.0, 'that': 3.0, 'illusions': 1.0, '23': 1.0, 'get': 1.0, 'months': 2.0, 'wants': 1.0, 'dogs': 2.0, 'something': 2.0, 'or': 1.0, 'need': 1.0, 'mad': 1.0, 'toward': 1.0, 'just': 2.0, 'also': 2.0, 'when': 2.0, 'local': 1.0, 'allow': 1.0, 'lead': 1.0, 'farmer': 1.0, 'first': 1.0, 'hated': 1.0, 'in': 4.0, 'our': 3.0, 'stroller': 2.0, 'couldn': 1.0, 'off': 1.0, 'see': 1.0, 'anything': 1.0, 'and': 5.0, 'nervous': 1.0, 'feel': 1.0, 'keeps': 1.0, 'use': 1.0, 'her': 7.0, 'is': 1.0, 'at': 2.0, 'outlined': 1.0, 'too': 1.0, 'overload': 1.0, 'lot': 1.0, 'arises': 1.0, 'helps': 1.0, 'eye': 1.0, 'level': 1.0, 'the': 13.0, 'of': 2.0, 'confidence': 1.0, 'people': 2.0, 'i': 13.0, 'well': 1.0, 'don': 1.0, 'play': 1.0, 'about': 3.0, 'has': 1.0, 'trips': 1.0, 'always': 1.0, 'pets': 1.0, 'girl': 1.0, 'especially': 1.0, 'recommend': 1.0, 'pouch': 1.0, 'park': 1.0, 'sensory': 1.0}
Word element => {'our': 1.0, 'for': 1.0, 'a': 1.0, 'like': 1.0, 'on': 1.0, 'are': 1.0, 'we': 1.0, 'snack': 1.0, 'everyday': 1.0, 't': 1.0, 'can': 2.0, 'she': 1.0, 'small': 2.0, 'so': 2.0, 'pack': 2.0, 'walks': 1.0, 'book': 1.0, 'put': 3.0, 'an': 1.0, 'to': 4.0, 'safe': 1.0, 'me': 1.0, 'and': 2.0, 'not': 1.0, 'know': 1.0, 'would': 1.0, 'ideal': 1.0, 'be': 1.0, 'bought': 1.0, 'though': 1.0, 'wait': 1.0, 'much': 1.0, 'thinking': 1.0, 'it': 6.0, 's': 1.0, 'way': 1.0, 'i': 3.0, 'anywhere': 1.0, 'my': 3.0, 'child': 1.0, 'keep': 1.0, 'did': 1.0, 'close': 1.0, 'little': 1.0, 'going': 1.0, 'daughter': 2.0, 'loves': 1.0}
Word element => {'line': 1.0, 'an': 1.0, 'run': 1.0, 'can': 1.0, 'they': 1.0, 'who': 1.0, 'for': 1.0, 'mostly': 1.0, 'recommend': 1.0, 'would': 1.0, 'get': 1.0, 'string': 1.0, 'let': 1.0, 'very': 1.0, 'one': 1.0, 'is': 1.0, '6mths': 1.0, 'anything': 1.0, 'other': 1.0, 'walking': 1.0, 'boys': 1.0, 'when': 1.0, 'while': 1.0, 'like': 1.0, 'hand': 1.0, 'hold': 1.0, 'to': 6.0, 'attached': 1.0, 'now': 1.0, 'old': 1.0, 'i': 7.0, 'offensive': 1.0, 'liked': 1.0, 'be': 1.0, 'him': 2.0, 'month': 1.0, 'it': 3.0, 'with': 2.0, '22': 1.0, 'he': 2.0, 'find': 1.0, 'because': 1.0, 'just': 2.0, 'not': 2.0, 'encourage': 1.0, 'running': 1.0, 'my': 3.0, 'has': 1.0, 'well': 1.0, 'a': 1.0, 'seem': 1.0, 'still': 1.0, 'son': 2.0, 'busy': 1.0, 'have': 2.0, 'back': 3.0, 'his': 1.0, 'careful': 1.0, 'the': 2.0, '1': 1.0, 'drawbacks': 1.0, 'feel': 1.0, 'use': 1.0, 'then': 1.0, 'in': 1.0, 'that': 1.0, 'loves': 1.0, 'case': 1.0, 'decides': 1.0, 'worked': 1.0, 'split': 1.0, 'literally': 1.0, 'especially': 1.0, 'on': 1.0, 'leash': 1.0, 'only': 1.0, 'do': 1.0, 'and': 1.0, 'always': 1.0}
Word element => {'can': 1.0, 'kids': 1.0, 'around': 1.0, 'keeping': 1.0, 'are': 1.0, 'play': 1.0, 'we': 1.0, 'almost': 1.0, 'is': 1.0, 'side': 1.0, 'didn': 1.0, 'backpack': 1.0, 'while': 1.0, 'smaller': 1.0, 'end': 1.0, 'my': 1.0, 'son': 1.0, '4': 1.0, 'on': 1.0, 'for': 3.0, 'world': 1.0, 'ordered': 1.0, 'i': 1.0, 'so': 1.0, 'wearing': 1.0, 'disney': 1.0, 'up': 1.0, 'and': 1.0, 'house': 1.0, 'quality': 1.0, 'with': 1.0, 'this': 1.0, 'he': 2.0, 'it': 5.0, 'the': 3.0, 't': 1.0, 'great': 1.0, 's': 2.0, 'a': 1.0}
Word element => {'though': 1.0, 'need': 1.0, 'does': 1.0, 'cord': 1.0, 'minds': 1.0, 'year': 1.0, 'this': 2.0, 'we': 1.0, 'to': 1.0, '2': 1.0, 'longer': 1.0, 'is': 1.0, 'a': 2.0, 'old': 1.0, 'i': 1.0, 'when': 1.0, 'love': 1.0, 'one': 1.0, 'our': 1.0, 'that': 1.0, 'have': 1.0, 'pack': 2.0, 'likes': 1.0, 'take': 1.0, 'wild': 1.0, 'off': 1.0, 'no': 1.0, 'has': 1.0, 'eased': 1.0, 'looking': 1.0, 'and': 1.0}
Word element => {'grandson': 1.0, 'my': 1.0, 'refreshments': 1.0, 'pack': 1.0, 'to': 1.0, 'room': 1.0, 'enough': 1.0, 'it': 3.0, 'i': 1.0, 'what': 1.0, 'just': 1.0, 'all': 1.0, 'bulky': 1.0, 'was': 1.0, 'expected': 1.0, 'not': 1.0, 'at': 1.0, 'for': 1.0, 'in': 1.0, 'had': 1.0}
Word element => {'great': 1.0, 'falling': 1.0, 'about': 1.0, 'worry': 1.0, 'okay': 1.0, 'better': 1.0, 'accommodate': 1.0, 'taller': 1.0, 'mesh': 1.0, 'works': 1.0, 'only': 1.0, 'off': 1.0, 'front': 1.0, 'cup': 1.0, 'neck': 1.0, 'negative': 1.0, 'her': 3.0, 'and': 1.0, 'be': 1.0, 'giving': 1.0, 'walk': 1.0, 'bit': 1.0, 'so': 2.0, 'enjoys': 1.0, 'sometimes': 1.0, 'grandbaby': 1.0, 'like': 2.0, 'fastens': 1.0, 'she': 2.0, 'it': 6.0, 'this': 1.0, 'product': 1.0, 'love': 1.0, 'for': 1.0, 'but': 1.0, 'can': 1.0, '2': 1.0, 'the': 7.0, 'clip': 1.0, 'get': 1.0, 'backpack': 1.0, 'wearing': 1.0, 'while': 1.0, 'wrapped': 1.0, 'just': 2.0, 'old': 1.0, 'i': 3.0, 'right': 1.0, 'size': 1.0, 'helps': 1.0, 'my': 1.0, 'year': 1.0, 'take': 1.0, 'safe': 1.0, 'keep': 1.0, 'at': 2.0, 'easily': 1.0, 'when': 1.0, 'are': 1.0, 'out': 2.0, 'in': 2.0, 'could': 1.0, 't': 2.0, 'we': 1.0, 'a': 4.0, 'crowd': 1.0, 'still': 1.0, 'nearly': 1.0, 'freedom': 1.0, 'all': 2.0, 'tether': 1.0, 'to': 2.0, 'that': 3.0, 'around': 2.0, 'is': 2.0, 'bottom': 1.0, 'won': 1.0}
Word element => {'about': 1.0, 's': 1.0, 'that': 1.0, 'wipes': 1.0, 'few': 1.0, 'but': 1.0, 'diapers': 1.0, 'and': 1.0, 'couple': 1.0, 'rather': 1.0, 'cute': 1.0, 'small': 1.0, 'my': 1.0, 'just': 1.0, 'even': 1.0, 'is': 2.0, 'room': 1.0, 'this': 1.0, 'it': 3.0, 'bag': 1.0, 'month': 1.0, 'son': 1.0, 'very': 1.0, 'think': 1.0, 'for': 1.0, 'a': 2.0, '15': 1.0, 'i': 1.0, 'old': 1.0, 'to': 1.0, 'has': 1.0, 'fit': 1.0, 'enough': 1.0}
Word element => {'fantastic': 1.0, 'when': 1.0, 'bladder': 1.0, 'dry': 1.0, 've': 1.0, 'new': 1.0, 'cold': 1.0, 'long': 1.0, 'quite': 1.0, 'last': 1.0, 'made': 1.0, 'works': 1.0, 'harness': 1.0, 'safety': 1.0, 'better': 1.0, 'ask': 1.0, 'couldn': 1.0, 'washes': 1.0, 'son': 2.0, 'nice': 2.0, 'walk': 1.0, 'really': 3.0, 'side': 1.0, 'wash': 1.0, 'child': 1.0, 'update': 2.0, 'out': 2.0, 'dual': 1.0, 'on': 3.0, 'well': 3.0, 'overall': 1.0, 'keys': 1.0, 't': 1.0, 'a': 11.0, 's': 2.0, 'we': 2.0, 'just': 1.0, 'mostly': 1.0, 'bento': 1.0, 'small': 2.0, 'have': 1.0, 'this': 3.0, 'camelback': 2.0, 'looks': 2.0, 'it': 6.0, 'like': 1.0, 'trip': 1.0, 'lunch': 1.0, 'using': 2.0, 'fit': 1.0, 'for': 4.0, 'hike': 1.0, 'backpack': 4.0, 'perfectly': 1.0, 'and': 5.0, 'sons': 1.0, 'style': 1.0, 'been': 2.0, 'box': 1.0, 'sippy': 1.0, 'expect': 2.0, 'or': 1.0, 'cup': 1.0, 'fits': 3.0, 'my': 3.0, 'air': 1.0, 'in': 2.0, 'the': 4.0, 'is': 1.0, 'holds': 1.0, 'more': 1.0, 'back': 1.0, 'but': 1.0, 'time': 1.0, 'bit': 1.0, 'i': 2.0, 'our': 1.0, 'as': 2.0, 'to': 2.0, 'wonderful': 1.0, 'use': 1.0, 'bag': 1.0, 'toys': 1.0}
Word element => {'anything': 1.0, 'breaking': 1.0, 'get': 1.0, 'sufficiently': 1.0, 'run': 1.0, 'old': 1.0, 'year': 1.0, 'my': 1.0, 'after': 1.0, 'durable': 1.0, 'be': 2.0, 'to': 1.0, 'on': 2.0, 'safe': 1.0, 'buckle': 1.0, 'he': 1.0, 'plastic': 1.0, 'that': 2.0, 'was': 1.0, 'two': 1.0, 'i': 2.0, 'first': 1.0, 'at': 1.0, 'jolt': 1.0, 'well': 1.0, 'won': 1.0, 'from': 1.0, 'away': 2.0, 'of': 2.0, 'ripping': 1.0, 'back': 1.0, 'an': 1.0, 'pocket': 1.0, 'kiddo': 1.0, 'the': 9.0, 'sudden': 1.0, 'frills': 1.0, 'diaper': 1.0, 'want': 1.0, 'price': 1.0, 'm': 1.0, 'd': 2.0, 'this': 1.0, 'elastic': 2.0, 'with': 3.0, 'it': 2.0, 'so': 1.0, 'leash': 2.0, 'but': 2.0, 'change': 2.0, 'can': 1.0, 'wasn': 1.0, 'feet': 1.0, 'you': 2.0, 'going': 1.0, 't': 3.0, 'a': 4.0, 's': 1.0, 'what': 1.0, 'long': 1.0, 'around': 1.0, 'is': 2.0, 'comes': 1.0, 'bottom': 1.0, 'kiddie': 1.0, 'by': 1.0, 'worried': 1.0, 'few': 1.0, 'end': 1.0, 'bolts': 1.0, 'pack': 4.0, 'in': 3.0, 'itself': 1.0, 'exactly': 1.0, 'comfortable': 1.0, 'big': 2.0, 'clothes': 1.0, 'sippy': 1.0, 'hold': 1.0, 'letting': 1.0, 'basic': 1.0, 'worth': 1.0, 'cup': 1.0, 'supplies': 1.0, 'or': 2.0, 'for': 2.0, 'snacks': 1.0, 'enough': 1.0, 'section': 1.0, 'and': 2.0, 'about': 1.0, 'couldn': 1.0, 'six': 1.0}
Word element => {'strap': 1.0, 'used': 1.0, 'is': 1.0, 'well': 1.0, 'actually': 1.0, 'be': 1.0, 'pack': 1.0, 'and': 2.0, 'the': 1.0, 'made': 1.0, 'my': 1.0, 'back': 1.0, 'safety': 1.0, 'kid': 1.0, 'likes': 1.0, 'wearing': 1.0, 'without': 1.0, 'can': 1.0, 'works': 1.0, 'great': 1.0, 'it': 1.0}
Word element => {'year': 1.0, 'works': 1.0, 'now': 1.0, 'two': 1.0, 'quickly': 1.0, 'out': 1.0, 'growing': 1.0, 'fairly': 1.0, 'of': 2.0, 'anticipate': 1.0, 'backpack': 2.0, 'extra': 1.0, 'for': 3.0, 'harness': 1.0, 'security': 1.0, 'nice': 1.0, 'but': 1.0, 'an': 1.0, 'well': 1.0, 'a': 1.0, 'it': 1.0, 'this': 1.0, 'with': 1.0, 'on': 1.0, 'old': 1.0, 'i': 1.0, 'when': 1.0, 'walking': 1.0, 'measure': 1.0, 'little': 1.0, 'ones': 1.0, 'the': 2.0, 'my': 1.0, 'smaller': 1.0, 'is': 2.0, 'side': 1.0, 'so': 1.0}
Word element => {'tsa': 1.0, 'can': 1.0, 'it': 1.0, 'york': 1.0, 'keep': 1.0, 'of': 1.0, '34': 2.0, 'stuff': 1.0, 'great': 1.0, 'the': 1.0, 'king': 1.0, 'alex': 1.0, 'paraphrase': 1.0, 'still': 1.0, 'your': 1.0, 'going': 1.0, 'tough': 1.0, 'when': 1.0, 'and': 1.0, 'to': 1.0, 'look': 1.0, 'you': 1.0, 's': 1.0, 'through': 1.0, 'new': 1.0, 'especially': 1.0}
Word element => {'stroller': 1.0, 'in': 1.0, 'extra': 1.0, 'couple': 2.0, 'and': 2.0, 'bigger': 1.0, 'needed': 1.0, 'sunscreen': 1.0, 'wish': 1.0, 'i': 5.0, 'cute': 1.0, 'the': 2.0, 'is': 1.0, 'diapers': 1.0, 'a': 6.0, 's': 1.0, 'but': 1.0, 'can': 1.0, 'throw': 1.0, 'were': 1.0, 'looks': 1.0, 'it': 2.0, 'like': 1.0, 'little': 1.0, 'very': 1.0, 'small': 1.0, 'items': 2.0, 'travel': 1.0, 'of': 1.0, 'up': 1.0, 'wipes': 1.0, 'bag': 2.0, 'toys': 1.0, 'just': 2.0, 'pictured': 1.0, 'few': 1.0, 'comfortably': 1.0, 'fit': 1.0, 'snacks': 1.0, 'want': 1.0, 'if': 1.0, 'bring': 1.0, 'to': 1.0, 'sippy': 1.0, 'or': 2.0, 'cup': 1.0, 'pack': 1.0, 'end': 1.0, 'other': 1.0, 'my': 1.0, 'another': 1.0}
Word element => {'trying': 1.0, 'still': 1.0, 'games': 1.0, 'sister': 1.0, 'big': 1.0, 'or': 1.0, 'zoo': 1.0, 'on': 1.0, 'guy': 1.0, 'think': 1.0, 'when': 1.0, 'too': 1.0, 'and': 2.0, 'more': 1.0, 's': 1.0, 'messing': 1.0, 'out': 1.0, 'couple': 2.0, 'type': 1.0, 'old': 1.0, 'park': 1.0, 'guys': 1.0, 'because': 1.0, 'that': 1.0, 'backwards': 1.0, 'quite': 1.0, 'thats': 1.0, 'though': 1.0, 'fell': 1.0, 'cup': 1.0, 'let': 1.0, 't': 1.0, 'separate': 1.0, 'carry': 1.0, 'walking': 1.0, 'bit': 1.0, 'so': 1.0, 'put': 2.0, 'much': 2.0, 'now': 2.0, 'to': 7.0, 'actually': 2.0, 'product': 1.0, 'for': 1.0, 'little': 2.0, 'did': 1.0, 'in': 5.0, 'it': 6.0, 'him': 1.0, 'be': 1.0, 'putting': 1.0, 'i': 5.0, 'brothers': 1.0, 'imagine': 1.0, 'a': 6.0, 'small': 5.0, 'have': 1.0, 'manage': 1.0, 'bag': 2.0, 'toys': 1.0, 'wipes': 1.0, 'load': 1.0, 'but': 1.0, 'hat': 1.0, 'couldn': 1.0, 'ball': 1.0, 'back': 1.0, 'with': 2.0, 'everything': 1.0, 'lol': 1.0, 'he': 3.0, 'over': 1.0, 'sippy': 1.0, 'up': 1.0, 'used': 1.0, 'decided': 1.0, 'just': 1.0, 'there': 1.0, 'we': 2.0, 'take': 1.0, 'not': 1.0, 'my': 1.0, 'me': 1.0, 'of': 4.0, 'the': 2.0, 'backpack': 1.0, '14months': 1.0, 'anything': 1.0, 'without': 1.0, 'down': 1.0, 'has': 1.0, 'sunscreen': 1.0, 'enough': 1.0, 'are': 2.0, 'diapers': 1.0, 'balance': 1.0, 'get': 2.0, 'trouble': 1.0, 'right': 1.0, 'his': 1.0, 'as': 1.0, 'backpacks': 1.0, 'diaper': 1.0, 'heavy': 1.0, 'this': 1.0, 'will': 1.0, 'great': 1.0, 'outings': 1.0}
Word element => {'ask': 1.0, 'purchased': 1.0, 'had': 1.0, 'even': 1.0, 'safety': 1.0, 'but': 1.0, 'safe': 1.0, 'he': 2.0, 'happy': 2.0, 'look': 1.0, 'that': 1.0, 'hand': 1.0, 'held': 1.0, 'or': 1.0, 'strollers': 1.0, 'being': 2.0, 'children': 1.0, 'small': 1.0, 'other': 1.0, 'brica': 1.0, 'carried': 1.0, 'put': 1.0, 'an': 1.0, 'world': 1.0, 'great': 1.0, 'the': 5.0, 'it': 1.0, 'went': 2.0, 'my': 7.0, 'someone': 1.0, 'when': 1.0, 'daughter': 1.0, 'side': 2.0, 'disney': 1.0, 'needed': 1.0, 'little': 1.0, 'old': 1.0, 'i': 3.0, 'was': 3.0, 'worked': 1.0, 'did': 2.0, 'nathan': 1.0, 'item': 2.0, 'grandson': 4.0, 'by': 3.0, 'few': 1.0, 'tail': 1.0, 'several': 1.0, 'where': 1.0, 'snacks': 1.0, 'off': 1.0, 'said': 1.0, 'in': 2.0, 'a': 1.0, 'we': 2.0, 's': 1.0, 'backpack': 3.0, 'and': 2.0, 'only': 1.0, 'harness': 3.0, 'year': 1.0, 'his': 1.0, 'me': 1.0, 'not': 3.0, 'mind': 1.0, 'three': 1.0, 'keep': 1.0, 'at': 1.0, 'as': 2.0, 'to': 2.0, 'all': 1.0, 'wearing': 2.0, 'saw': 1.0}
Word element => {'child': 1.0, 'it': 1.0, 'that': 1.0, 'safe': 1.0, 'no': 1.0, 'i': 1.0, 'fray': 1.0, 'was': 1.0, 'to': 2.0, 'started': 1.0, 'sides': 1.0, 'both': 1.0, 'for': 2.0, 'day': 1.0, 'use': 2.0, 'off': 1.0, 'almost': 1.0, 'my': 2.0, 'size': 1.0, 'o': 1.0, 'straps': 1.0, 'cute': 1.0, 'bag': 1.0, 'a': 1.0, 'felt': 1.0, 'longer': 1.0, 'is': 1.0, 'the': 2.0, '2': 1.0, 'on': 1.0, 'y': 1.0, 'wear': 1.0, 'so': 1.0, 'after': 1.0, 'however': 1.0, 'break': 1.0, 'and': 2.0, '1': 1.0, 'of': 1.0, 'perfect': 1.0, 'moderate': 1.0}
Word element => {'same': 1.0, 'happy': 1.0, 'safe': 1.0, 'him': 1.0, 'at': 1.0, 'keep': 1.0, 'helps': 1.0, 'near': 1.0, 'darting': 1.0, 'ahead': 1.0, 'this': 1.0, 'found': 1.0, 'second': 1.0, 'pregnant': 1.0, '9': 1.0, 'after': 1.0, 'fun': 1.0, 'runner': 1.0, 'fast': 1.0, 'wanderer': 1.0, 'back': 1.0, 'book': 1.0, 'toy': 1.0, 'about': 1.0, 'in': 2.0, 'just': 1.0, 'his': 2.0, 'snacks': 1.0, 'loves': 2.0, 'into': 1.0, 'load': 1.0, 'wipes': 1.0, 'backpack': 1.0, 'sport': 1.0, 'i': 2.0, 'even': 2.0, 'pockets': 1.0, 'it': 3.0, 'pullups': 1.0, 'stores': 1.0, 'with': 2.0, 'he': 4.0, 'my': 3.0, 'soon': 1.0, 'and': 6.0, 'tuck': 1.0, 'lead': 1.0, 'run': 1.0, 'side': 1.0, 'months': 1.0, 'one': 1.0, 'of': 4.0, 'to': 3.0, 'me': 2.0, 'explore': 1.0, 'is': 1.0, 'backyard': 1.0, 'when': 1.0, 'a': 5.0, 's': 1.0, 'we': 1.0, 'are': 1.0, 'out': 2.0, 'much': 1.0, 'the': 6.0, 'hands': 1.0, 'time': 1.0, 'bottle': 1.0, 'so': 1.0, 'leash': 1.0, 'cars': 1.0, 'son': 1.0}
Word element => {'entanglement': 1.0, 'too': 1.0, 'prevents': 1.0, 'as': 1.0, 'swivel': 1.0, 'claims': 1.0, 'harness': 1.0, 'it': 3.0, 'this': 1.0, 'to': 1.0, 'pack': 1.0, 'be': 1.0, 'and': 3.0, 'wipes': 1.0, 'keys': 1.0, 'like': 1.0, 'everything': 1.0, 'a': 2.0, 'much': 1.0, 'room': 1.0, 'has': 1.0, 'is': 2.0, 'really': 1.0, 'enough': 1.0, 'for': 1.0, 'the': 1.0, 'great': 1.0, 'diaper': 1.0, 'water': 1.0, 'i': 1.0}
Word element => {'unaware': 1.0, 'unafraid': 1.0, 'proof': 1.0, 'car': 1.0, 'recommend': 1.0, 'guys': 1.0, 'independent': 1.0, 'adventurous': 1.0, 'this': 1.0, 'outside': 1.0, 'go': 1.0, 'himself': 1.0, 'loves': 1.0, 'areas': 1.0, 'danger': 1.0, 'dangerous': 1.0, 'in': 1.0, 'excitedly': 1.0, 're': 1.0, 'also': 1.0, 'us': 1.0, '36': 1.0, 'within': 1.0, 'now': 1.0, 'son': 2.0, 'saver': 1.0, 'literally': 1.0, 'safety': 1.0, 'side': 1.0, 'as': 1.0, 'brica': 1.0, 'buying': 1.0, 'gals': 1.0, 'or': 2.0, 'world': 1.0, 'bonus': 1.0, 'stays': 1.0, 'be': 1.0, 'needs': 1.0, 'amazing': 1.0, 'simply': 1.0, 'father': 1.0, 'more': 2.0, 'reached': 1.0, 'traffic': 1.0, 'comes': 1.0, 'a': 5.0, 'then': 1.0, 'we': 3.0, 'dragging': 1.0, 'publicly': 1.0, 'fourth': 1.0, 'kid': 2.0, 'like': 1.0, 'life': 1.0, 'harness': 1.0, 'discipline': 1.0, 'climbing': 1.0, 'great': 3.0, 'teddy': 1.0, 'foolish': 1.0, 'by': 3.0, 's': 4.0, 'lashed': 1.0, 'for': 3.0, 'is': 3.0, 'at': 2.0, 'on': 2.0, 'joined': 1.0, 'otherwise': 1.0, 'd': 3.0, 'my': 7.0, 'with': 3.0, 'parent': 2.0, 'older': 1.0, 'children': 1.0, 'bear': 1.0, 'scoff': 1.0, 'anyone': 1.0, 'and': 4.0, 'across': 2.0, 'around': 1.0, 'his': 4.0, 'product': 1.0, 'child': 4.0, 'year': 1.0, 'their': 1.0, 'that': 1.0, 'busy': 1.0, 'bolting': 1.0, 'three': 1.0, 'into': 1.0, 'spiderman': 1.0, 'wear': 1.0, 'it': 3.0, 'thought': 2.0, 'backpack': 4.0, 'while': 1.0, 'wrist': 1.0, 'little': 1.0, 'two': 1.0, 'walking': 1.0, '34': 5.0, 'age': 1.0, 'when': 1.0, 'daringly': 1.0, 'embarrassed': 1.0, 'turn': 1.0, 'every': 1.0, 'so': 2.0, 'speed': 1.0, 'whose': 1.0, 'down': 1.0, 'the': 8.0, 'of': 5.0, 'olympic': 1.0, 'sprinter': 1.0, 'fish': 1.0, 'anything': 1.0, 'raising': 1.0, 'an': 1.0, 'other': 1.0, 'slipping': 1.0, 'peter': 1.0, 'out': 1.0, 'grip': 1.0, 'never': 1.0, 'some': 1.0, 'than': 1.0, 'stealthy': 1.0, 'before': 1.0, 'ranks': 1.0, 'he': 2.0, 'veritable': 1.0, 'to': 3.0, 'parker': 1.0, 'not': 2.0, 'old': 1.0, 'after': 1.0, 'too': 2.0, 'one': 1.0, 'leash': 1.0, 'dad': 1.0, 'many': 1.0, 'close': 1.0, 'putting': 1.0, 'i': 5.0, 'calls': 1.0, 'broke': 1.0, 'parents': 2.0}
Word element => {'on': 1.0, 'regular': 1.0, 'used': 1.0, 'be': 1.0, 'can': 1.0, 'as': 1.0, 'and': 1.0, 'later': 1.0, 'wild': 1.0, 'buy': 1.0, 'you': 1.0, 'a': 2.0, 'tough': 1.0, 'simple': 1.0, 'if': 1.0, 'light': 1.0, 'child': 1.0, 'bag': 1.0, 'have': 1.0, 'this': 1.0, 'harness': 1.0}
Word element => {'evenly': 1.0, 'but': 1.0, 'one': 1.0, 'for': 1.0, 'backpack': 1.0, 'little': 2.0, 'been': 1.0, 'north': 1.0, 'the': 1.0, 'more': 1.0, 'great': 1.0, 'a': 2.0, 'is': 1.0, 'this': 1.0, 'have': 1.0, 'my': 1.0, 'pull': 1.0, 'leash': 1.0, 'should': 1.0, 'attached': 1.0, 'further': 1.0, 'so': 1.0, 'as': 1.0, 'to': 1.0}
Word element => {'them': 1.0, 'find': 1.0, 'they': 1.0, 'outfit': 1.0, 'knickers': 1.0, 'son': 1.0, 'these': 1.0, 'the': 1.0, 's': 1.0, 'expensive': 1.0, 'in': 1.0, 'perfect': 1.0, 'socks': 2.0, 'was': 1.0, 'not': 1.0, 'with': 2.0, 'looked': 1.0, 'seemed': 1.0, 'for': 1.0, 'could': 1.0, 'i': 1.0, 'stores': 1.0, 'my': 1.0, 'happy': 1.0, 'but': 1.0, 'quality': 1.0, 'and': 1.0}
Word element => {'pay': 1.0, 'what': 1.0, 'pricey': 1.0, 'quality': 1.0, 'on': 1.0, 'arrived': 1.0, 'they': 1.0, 'yr': 1.0, 'because': 1.0, 'some': 1.0, 'a': 1.0, 'could': 1.0, 'appear': 1.0, 'olds': 1.0, 'okay': 1.0, 'picture': 1.0, 'misleading': 1.0, 'only': 2.0, 'that': 1.0, 'were': 1.0, 'it': 2.0, 'looks': 1.0, 'suit': 1.0, 'course': 1.0, 'bit': 1.0, 'time': 1.0, 'so': 1.0, 'the': 4.0, 'but': 1.0, '2': 1.0, 'to': 1.0, 'as': 1.0, 'all': 1.0, 'knicker': 1.0, 'pick': 1.0, 'i': 1.0, 'no': 1.0, 'thing': 1.0, 'about': 1.0, 'wanna': 1.0, 'is': 1.0, 'say': 1.0, 'good': 1.0, 'different': 1.0, 'issues': 1.0, 'though': 1.0, 'socks': 3.0, 'you': 5.0, 're': 1.0, 'color': 1.0, 'my': 1.0, 'getting': 1.0, '11088': 5.0, 'get': 2.0, '1': 2.0, 'and': 2.0, 'those': 1.0, 'colored': 1.0, 'in': 1.0, 'this': 1.0, 'perfect': 1.0, 'of': 2.0, 'pair': 2.0, 'product': 1.0, 'for': 3.0}
Word element => {'cute': 1.0, 'i': 1.0, 'monkey': 1.0, 'myself': 1.0, 'love': 1.0, 'sizes': 1.0, 'adult': 1.0, 'came': 1.0, 'sock': 1.0, 'purchaed': 1.0, 'but': 1.0, 'very': 1.0, 'leggings': 1.0, 'adorable': 1.0, 'are': 1.0, 'a': 1.0, 'friend': 1.0, 'these': 1.0, 'they': 1.0, 'in': 1.0, 'wish': 1.0, 'for': 2.0}
Word element => {'outfits': 1.0, 'and': 1.0, 'for': 1.0, 'ones': 1.0, 'them': 1.0, 'expecting': 1.0, 'am': 1.0, 'my': 2.0, 'dresses': 1.0, 'little': 1.0, 'will': 1.0, 'baby': 2.0, 'i': 2.0, 'completely': 1.0, 'those': 1.0, 'still': 1.0, 'love': 1.0, 'sure': 1.0, 'use': 1.0, 'but': 1.0}
Word element => {'over': 1.0, 'get': 1.0, 'to': 2.0, 't': 1.0, 'them': 1.0, 'want': 1.0, 'don': 1.0, 'pants': 1.0, 'cute': 1.0, 'pattern': 1.0, 'work': 1.0, 'struggle': 1.0, 'when': 1.0, 'really': 1.0, 'well': 1.0, 'on': 1.0, 'with': 1.0, 'very': 1.0, 'cloth': 1.0, 'diapers': 1.0, 'you': 1.0}
Word element => {'try': 1.0, 'a': 1.0, 'cute': 1.0, 's': 1.0, 'also': 1.0, 'on': 1.0, 'it': 2.0, 'we': 1.0, 'difference': 1.0, 'girl': 1.0, 'very': 1.0, 'huge': 1.0, 'has': 1.0, 'in': 1.0, 'our': 1.0, 'noticeda': 1.0, 'when': 1.0, 'worth': 1.0, 'its': 1.0, 'little': 1.0, 'she': 1.0}
Word element => {'wear': 1.0, 'her': 1.0, 'cute': 1.0, 'is': 1.0, 'with': 1.0, 'some': 1.0, 'help': 1.0, 'to': 2.0, 'seems': 1.0, 'bought': 1.0, 'pain': 1.0, 'baby': 1.0, 'for': 3.0, 'teething': 2.0, 'fit': 1.0, 'remove': 1.0, 'we': 1.0, 'night': 1.0, 'was': 1.0, 'just': 1.0, 'but': 1.0, 'perfect': 1.0, 'sleep': 1.0}
Word element => {'small': 1.0, 'pretty': 1.0, 'thank': 1.0, 'in': 1.0, 'apart': 1.0, 'two': 1.0, 'quickly': 1.0, 'all': 1.0, 'fix': 1.0, 'threading': 1.0, 'came': 3.0, 's': 1.0, 'you': 1.0, 'smaller': 1.0, 'with': 2.0, 'it': 4.0, 'love': 1.0, 'can': 1.0, 'ready': 1.0, 'but': 1.0, 'weeks': 1.0, 'making': 1.0, 'loose': 1.0, 'from': 1.0, 'out': 1.0, 'clamp': 1.0, 'and': 1.0, 't': 1.0}
Word element => {'just': 1.0, 'think': 1.0, 'somewhere': 1.0, 'if': 1.0, 'out': 1.0, 'don': 1.0, 'anyway': 1.0, 'production': 1.0, 'reason': 1.0, 'some': 1.0, 'for': 1.0, 'cute': 1.0, 'many': 1.0, 'were': 1.0, 'there': 1.0, 'series': 1.0, 'designs': 1.0, 'from': 1.0, 'find': 2.0, 'the': 2.0, 'those': 2.0, 'my': 1.0, 'cup': 5.0, 'babies': 2.0, 'have': 2.0, 'years': 2.0, 'them': 1.0, 'sippy': 1.0, 'baby': 1.0, 'in': 1.0, 'r': 1.0, 'at': 1.0, 'three': 3.0, 'this': 4.0, 'stopped': 1.0, 'it': 3.0, 'was': 2.0, 'only': 1.0, 'its': 1.0, 'oldest': 1.0, 'so': 3.0, 'pay': 1.0, 'son': 1.0, 't': 1.0, 'could': 1.0, 'we': 2.0, 'ago': 2.0, 's': 1.0, 'you': 1.0, 'twins': 1.0, 'when': 1.0, 'us': 1.0, 'two': 2.0, 'i': 5.0, 'buy': 2.0, 'of': 3.0, 'favorite': 1.0, 'got': 1.0, 'loved': 2.0, 'used': 1.0, 'bought': 1.0, 'decided': 1.0, 'one': 1.0, 'get': 1.0, 'left': 1.0, 'and': 2.0, 'double': 1.0, 'they': 2.0, 'ones': 1.0, 'cups': 1.0, 'all': 1.0, 'to': 2.0, 'our': 1.0, 'least': 1.0, 'would': 1.0, 'new': 1.0, 'each': 1.0, 'can': 2.0, 'own': 1.0}
Word element => {'into': 1.0, 'newborn': 1.0, 'her': 4.0, 'down': 1.0, 'in': 2.0, 'slides': 1.0, 'about': 1.0, 'wise': 1.0, 'is': 1.0, 'really': 1.0, 'this': 2.0, 'it': 3.0, 'with': 1.0, 'however': 1.0, 'time': 1.0, 'so': 2.0, 'chair': 1.0, 'getting': 1.0, 'and': 1.0, 'way': 1.0, 'tangled': 1.0, 'legs': 1.0, 'under': 1.0, 'hands': 1.0, 'the': 3.0, 'my': 1.0, 'all': 1.0, 'to': 1.0, 'now': 1.0, 'buckles': 1.0, 'i': 3.0, 'arms': 1.0, 'price': 1.0, 'm': 2.0, 'pits': 1.0, 'sad': 1.0, 'because': 1.0, 'just': 1.0, 'put': 1.0, 'doesn': 1.0, 'go': 1.0, 't': 1.0, 'a': 1.0, 'blanket': 1.0, 'stuck': 1.0, 'dig': 1.0, 'over': 1.0, 'arm': 1.0}
Word element => {}
Word element => {'works': 1.0, 'and': 1.0, 'cute': 1.0, 'very': 2.0, 'affordable': 1.0, 'love': 1.0, 'expected': 1.0, 'durable': 1.0, 'it': 2.0, 'this': 1.0, 'the': 2.0, 'i': 1.0, 'cheap': 1.0, 'so': 2.0, 'bouncer': 1.0, 'we': 1.0, 'was': 2.0, 'to': 1.0, 'be': 1.0, 'well': 1.0, 'a': 1.0, 'little': 1.0, 'on': 1.0, 'is': 1.0, 'side': 1.0, 'price': 1.0, 'pleasantly': 1.0, 'but': 1.0, 'surprised': 1.0}
Word element => {'problem': 1.0, 'very': 1.0, 'from': 1.0, 'does': 1.0, 'lion': 1.0, 'little': 1.0, 'is': 1.0, 'really': 1.0, '7week': 1.0, 'my': 1.0, 'come': 1.0, 'only': 1.0, 'this': 1.0, 'fit': 1.0, 'that': 2.0, 'bouncer': 2.0, 'bar': 2.0, 'a': 1.0, 'liked': 1.0, 'for': 1.0, 'looking': 1.0, 'too': 2.0, 'easily': 1.0, 'hanging': 1.0, 'wasn': 1.0, 't': 1.0, 'the': 5.0, 'old': 1.0, 'fancy': 1.0, 'i': 1.0, 'off': 1.0, 'or': 1.0, 'description': 1.0, 'and': 1.0, 'padded': 1.0, 'super': 1.0, 'easy': 1.0, 'was': 1.0, 'to': 1.0, 'assemble': 1.0, 'plus': 1.0}
Word element => {'received': 1.0, 'that': 1.0, 'one': 1.0, 'i': 1.0, 'it': 3.0, 'purchased': 1.0, 'for': 1.0, 'a': 1.0, 'shower': 1.0, 'the': 2.0, 'she': 1.0, 'baby': 1.0, 'only': 1.0, 'and': 1.0, 'loved': 1.0, 'was': 1.0, 'mom': 1.0}
Word element => {'screws': 1.0, 'there': 1.0, 'snap': 2.0, 'easy': 1.0, 'super': 1.0, 'was': 1.0, 'just': 1.0, 'z': 1.0, 'y': 1.0, 'no': 1.0, 'x': 1.0, 'through': 1.0, 'have': 1.0, 'where': 1.0, 'some': 1.0, 'out': 1.0, 'bouncers': 1.0, 'moving': 1.0, 'after': 1.0, 'tug': 1.0, 'remove': 1.0, 'it': 2.0, 'this': 1.0, 'come': 1.0, 'with': 1.0, 'so': 1.0, 'away': 1.0, 'toy': 2.0, 'removed': 1.0, 'the': 7.0, 'my': 2.0, 'pull': 1.0, 'here': 1.0, 'incline': 1.0, 'are': 1.0, 'much': 2.0, 'one': 1.0, 'but': 2.0, 'use': 1.0, 'better': 2.0, 'in': 2.0, 'u': 1.0, 'vibration': 1.0, 'like': 2.0, 'assembly': 1.0, 'don': 2.0, 'up': 3.0, 'musical': 1.0, 'i': 2.0, 'feature': 1.0, 'handy': 1.0, 'little': 1.0, 'twins': 1.0, 'easily': 1.0, 'boys': 1.0, 'and': 5.0, 'play': 1.0, 'too': 1.0, 'to': 3.0, 'bar': 3.0, 'go': 1.0, 's': 1.0, 't': 2.0, 'a': 3.0, 'is': 1.0, 'than': 2.0, 'does': 1.0, 'installed': 1.0, 'bouncer': 1.0, 'toys': 1.0, 'slight': 1.0, 'yet': 1.0, 'or': 1.0}
Word element => {'big': 1.0, 'for': 2.0, 'think': 1.0, 'this': 2.0, 'did': 3.0, 'things': 1.0, 'not': 3.0, 'i': 2.0, 'use': 2.0, '3': 1.0, 'small': 1.0, 'my': 1.0, 'baby': 3.0, 'months': 1.0, 'to': 1.0}
Word element => {'with': 1.0, 'got': 1.0, 'butterflies': 1.0, 'and': 2.0, 'dye': 1.0, 'tye': 1.0, 'be': 1.0, 'to': 1.0, 'suppose': 1.0, 'but': 1.0, 'what': 2.0, 'one': 1.0, 'i': 3.0, 'ordered': 1.0, 'dots': 1.0, 'great': 1.0, 'pacifiers': 1.0, 'it': 1.0, 'received': 1.0, 'had': 1.0, 'was': 2.0, 'not': 1.0}
Word element => {'mind': 1.0, 'then': 1.0, 'my': 1.0, 'not': 1.0, 'part': 1.0, 'handle': 1.0, 'will': 1.0, 'nipple': 2.0, 'daughter': 1.0, 'water': 2.0, 'get': 1.0, 'don': 1.0, 'up': 1.0, 'wash': 1.0, 'you': 1.0, 'when': 1.0, 'spits': 1.0, 'turn': 1.0, 'in': 2.0, 'still': 1.0, 'deal': 1.0, 'the': 2.0, 'now': 1.0, 'sleep': 1.0, 'to': 3.0, 'is': 2.0, 'months': 2.0, 'have': 2.0, 'out': 2.0, 'doing': 1.0, '0': 1.0, 'big': 1.0, '1': 1.0, 'conform': 1.0, 'and': 5.0, 'size': 3.0, 'probably': 1.0, '6': 1.0, '13': 1.0, 'since': 2.0, 'if': 1.0, 'same': 1.0, 'gum': 1.0, 'that': 1.0, 'been': 1.0, 'mouth': 2.0, 'because': 1.0, 'she': 3.0, 'it': 4.0, 'a': 1.0, 't': 2.0, 'we': 2.0, 's': 1.0, 'significantly': 1.0, 'helps': 1.0, 'larger': 1.0, 'used': 1.0, 'her': 1.0, 'use': 1.0, '2': 1.0, 'but': 1.0, 'was': 1.0, 'doesn': 1.0, '4': 1.0, 'i': 2.0, 'drop': 1.0, 'would': 1.0, 'come': 1.0, 'literally': 1.0, 'squeeze': 1.0, 'using': 2.0, 'hold': 1.0, 'mo': 1.0, 'rounded': 1.0}
Word element => {'soothies': 1.0, 'or': 1.0, 'avents': 1.0, 'spit': 1.0, 'll': 1.0, 'in': 1.0, 'water': 2.0, 'pacis': 1.0, 'that': 2.0, 'i': 2.0, 'use': 1.0, 'then': 1.0, 'with': 2.0, 'she': 1.0, 'it': 3.0, 'great': 1.0, 'the': 3.0, 'nipple': 1.0, 'these': 1.0, 'soapy': 1.0, 'do': 1.0, 'get': 1.0, 'and': 3.0, 'gets': 1.0, 'not': 1.0, 'just': 1.0, 'well': 1.0, 'squeeze': 1.0, 'hold': 1.0, 'like': 1.0, 'don': 1.0, 'up': 2.0, '34': 2.0, 'but': 1.0, 'back': 1.0, 'underwater': 1.0, 'paci': 1.0, 'to': 1.0, 'clean': 1.0, 'sticky': 1.0, 'out': 2.0, 'they': 1.0, 'suck': 1.0, 'put': 1.0, 'on': 1.0, 'part': 1.0, 'shoot': 1.0, 'are': 1.0, 'my': 1.0, 'kid': 1.0, 't': 1.0, 's': 1.0, 'preferred': 1.0}
Word element => {'girl': 1.0, 'baby': 1.0, 'gift': 1.0, 'a': 1.0, 'her': 1.0, 'to': 1.0, 'sent': 1.0, 'we': 1.0, 'so': 1.0, 'i': 1.0, 'chose': 1.0, 'this': 2.0, 'rating': 1.0, 'what': 1.0, 'my': 1.0, 'for': 1.0, 'law': 1.0, 'daughter': 1.0, 'in': 1.0, 'and': 1.0, 'as': 2.0, 'wanted': 1.0}
Word element => {'and': 1.0, 'years': 1.0, 'ago': 1.0, '27': 1.0, 'on': 1.0, 'what': 1.0, 'i': 1.0, 'sure': 1.0, 'oldest': 1.0, 'can': 1.0, 'it': 3.0, 's': 1.0, 'used': 1.0, 'nuk': 1.0, 'loves': 1.0, 'beats': 1.0, 'say': 1.0, 'thumb': 1.0, 'a': 1.0, 'he': 1.0, 'the': 1.0, 'my': 1.0}
Word element => {'self': 1.0, 'and': 1.0, 'at': 1.0, 'it': 1.0, 'look': 1.0, 'weren': 1.0, 'so': 2.0, 'bulk': 1.0, 'looking': 1.0, 'can': 1.0, 'constantly': 1.0, 'soothe': 1.0, 'in': 2.0, 'for': 2.0, 'daughter': 1.0, 'crib': 1.0, 'we': 1.0, '3': 1.0, 'pacifier': 1.0, 'bought': 1.0, 'night': 1.0, 'i': 2.0, 'or': 1.0, 'put': 1.0, 't': 1.0, 'these': 1.0, 'the': 1.0, '2': 1.0, 's': 1.0, 'she': 1.0}
Word element => {'better': 1.0, 'avents': 1.0, 'or': 1.0, 'like': 1.0, 'tipee': 1.0, 'curvy': 1.0, 'too': 1.0, 'are': 1.0, 'our': 1.0, 'they': 1.0, 'bag': 1.0, 'of': 2.0, 'part': 1.0, 'a': 2.0, 'goodie': 1.0, 'from': 1.0, 'as': 1.0, 'we': 2.0, 'obgyn': 1.0, 'tommie': 1.0, 'marks': 1.0, 'got': 1.0, 'either': 1.0, 'on': 1.0, 'leave': 1.0, 'side': 1.0, 'these': 1.0, 'the': 2.0, 'baby': 1.0, 's': 1.0, 'mouth': 1.0, 'edges': 1.0}
Word element => {'one': 1.0, 'without': 1.0, 'home': 1.0, 'are': 1.0, 'the': 1.0, 'that': 1.0, 'only': 1.0, 'will': 1.0, 'wont': 1.0, 'these': 1.0, 'leave': 1.0, 'pacifier': 1.0, 'he': 1.0, 'use': 1.0}
Word element => {'she': 1.0, 'or': 1.0, 'whether': 1.0, 'up': 1.0, 's': 1.0, 'for': 1.0, 'your': 1.0, 'has': 1.0, 'pacifier': 1.0, 'newborn': 1.0, 'determine': 1.0, 'product': 1.0, 'hates': 1.0, 'brand': 2.0, 'like': 1.0, 'nuk': 1.0, 'newborns': 1.0, 'pacifiers': 2.0, 'nipple': 1.0, 'the': 2.0, 'great': 1.0, 'and': 1.0, 'loved': 2.0, 'he': 1.0, 'it': 2.0, 'first': 1.0, 'only': 1.0, 'this': 2.0, 'highly': 1.0, 'baby': 2.0, 'impossible': 1.0, 'will': 2.0, 'which': 2.0, 'i': 2.0, 'thought': 1.0, 'to': 2.0, 'was': 1.0, 'type': 1.0, 'second': 1.0, 'is': 2.0, 'a': 2.0, 'so': 1.0, 'unfortunately': 1.0, 'smaller': 1.0, 'my': 2.0, 'rate': 1.0}
Word element => {'just': 1.0, 'for': 1.0, 'well': 1.0, 'work': 1.0, 'would': 1.0, 'shape': 1.0, 'and': 3.0, 'gagging': 2.0, 'very': 1.0, 'of': 1.0, 'he': 3.0, 'with': 1.0, 'it': 1.0, 'full': 1.0, 'this': 1.0, 'brand': 1.0, 'the': 5.0, 'bought': 1.0, 'short': 1.0, 'lo': 2.0, 'my': 1.0, 'these': 1.0, 'others': 1.0, 'are': 1.0, 'pacifier': 1.0, 'on': 1.0, 'tongue': 2.0, 'was': 3.0, 'had': 1.0, 'our': 1.0, 'as': 2.0, 'to': 1.0, 'term': 1.0, 'so': 1.0, 'revision': 1.0, 'different': 1.0, 'mouth': 1.0, 'tied': 2.0, 'though': 1.0, 'problem': 1.0, 'who': 1.0, 'keep': 1.0, 'not': 3.0, 'small': 1.0, 'have': 1.0, 'did': 1.0, 'nuk': 1.0, 'newborn': 1.0, 'also': 1.0, 'after': 1.0, 'ortho': 1.0, 'a': 1.0, 'we': 2.0, 's': 1.0, 'unable': 1.0, 'babies': 1.0, 'into': 1.0, 'his': 1.0, 'is': 1.0}
Word element => {'are': 1.0, 'feeding': 1.0, 'they': 1.0, 'latex': 1.0, 'standard': 1.0, 've': 1.0, 'if': 1.0, 'get': 1.0, 'right': 1.0, 'll': 1.0, 'hopefully': 1.0, 'now': 1.0, 'more': 1.0, 'some': 1.0, 'experiment': 1.0, 'going': 1.0, 'am': 1.0, 'so': 1.0, 'know': 1.0, 'don': 1.0, 'mark': 1.0, 'will': 1.0, 'pacifiers': 1.0, 'even': 2.0, 'after': 1.0, 'for': 3.0, '34': 4.0, 'there': 2.0, 'larger': 3.0, 'seemed': 2.0, 'your': 1.0, 'sizes': 1.0, 'idea': 1.0, 'someone': 1.0, 'when': 1.0, 'and': 7.0, 'day': 1.0, 'days': 1.0, 'to': 6.0, 'our': 1.0, 'these': 3.0, 'got': 1.0, 'daughter': 1.0, 'gave': 2.0, 'with': 1.0, 'it': 5.0, 'useless': 1.0, 'baby': 1.0, 'she': 2.0, 'in': 1.0, 'tried': 1.0, 'you': 1.0, 'things': 1.0, 'nice': 1.0, 'two': 1.0, 'old': 1.0, 'small': 1.0, 'a': 10.0, 'discovered': 1.0, 'we': 2.0, 't': 2.0, '15': 1.0, 'size': 2.0, 'latch': 1.0, 'or': 1.0, 'gotten': 1.0, 'no': 1.0, 'about': 1.0, 'notice': 1.0, 'at': 3.0, 'since': 1.0, 'had': 3.0, 'thinks': 1.0, 'was': 2.0, 'doesn': 1.0, 'pacifier': 1.0, 'gift': 2.0, 'were': 2.0, '8212': 1.0, 'not': 2.0, 'time': 1.0, 'nap': 1.0, 'work': 2.0, 'but': 1.0, 'i': 7.0, 'well': 1.0, 'has': 1.0, 'her': 3.0, 'used': 1.0, 'decided': 1.0, 'too': 1.0, 'one': 3.0, 'come': 1.0, 'here': 1.0, 'amazon': 1.0, 'order': 2.0, 'this': 1.0, 'nuk': 1.0, 'few': 1.0, 'newborn': 2.0, 'out': 1.0, 'all': 1.0, 'other': 1.0, 'nipples': 1.0, 'options': 1.0, 'mouth': 1.0, 'than': 1.0, 'long': 1.0, 'on': 2.0, 'previously': 1.0, 'immediately': 1.0, 'would': 2.0, 'something': 1.0, 'seemingly': 1.0, 'suck': 1.0, 'that': 2.0, 'because': 3.0, 'fall': 1.0, 'the': 5.0, 'of': 1.0, 'cover': 1.0, 'closes': 1.0, 'leave': 1.0, 'as': 3.0, 'falls': 1.0, 'may': 1.0, 'my': 1.0, 'wife': 1.0, 'like': 1.0}
Word element => {'so': 1.0, 'on': 1.0, 'sucked': 1.0, 'slid': 1.0, 'would': 1.0, 'could': 1.0, 'in': 2.0, 'love': 1.0, 'one': 1.0, 'little': 1.0, 'not': 1.0, 'because': 1.0, 'keep': 1.0, 'as': 1.0, 'big': 1.0, 'he': 3.0, 'ordered': 1.0, 'other': 2.0, 'we': 2.0, 'gag': 1.0, 'them': 2.0, 'out': 1.0, 'pacifiers': 2.0, 'our': 1.0, 'were': 1.0, 'does': 1.0, 'his': 2.0, 'mouth': 2.0, 'these': 1.0, 'the': 1.0, 'to': 1.0, 'and': 2.0}
Word element => {'a': 1.0, 'like': 1.0, 'wasn': 1.0, 'though': 1.0, 'design': 1.0, 'same': 1.0, 'all': 1.0, 'pack': 2.0, 'be': 1.0, 'variety': 1.0, 'suck': 1.0, 'had': 1.0, 'to': 1.0, 'also': 1.0, 'on': 2.0, 'spit': 1.0, 'think': 1.0, 'out': 1.0, 'pacifiers': 1.0, 'month': 1.0, 'got': 1.0, 'use': 1.0, 'curved': 1.0, 'it': 5.0, 'only': 1.0, 'any': 1.0, 'will': 2.0, 'my': 1.0, 't': 1.0, 'these': 1.0, 'the': 3.0, 'would': 1.0, 'others': 1.0, 'old': 1.0, 'i': 3.0, '1': 1.0, 'and': 1.0, 'shape': 1.0, 'thought': 1.0, 'easier': 1.0, 'orthodontic': 1.0, 'that': 1.0, '34': 2.0, 'makes': 2.0}
Word element => {'purchase': 1.0, 'choose': 1.0, 'able': 1.0, 'size': 1.0, 'with': 3.0, 'to': 4.0, '18': 1.0, 'and': 3.0, 'soap': 1.0, 'frequent': 1.0, 'time': 1.0, 'so': 1.0, 'free': 1.0, 'sterilizing': 1.0, 'month': 1.0, 'she': 2.0, 'it': 1.0, 'gentle': 1.0, 'a': 3.0, 's': 1.0, 'switched': 2.0, 'for': 2.0, 'daughter': 1.0, 'all': 1.0, 'other': 2.0, 'fragrance': 1.0, 'these': 1.0, 'used': 1.0, 'caused': 1.0, 'did': 1.0, 'orthodontics': 1.0, 'pacifiers': 4.0, 'out': 1.0, 'i': 4.0, 'old': 1.0, '17': 1.0, 'we': 1.0, 'coincide': 1.0, 'using': 1.0, 'like': 1.0, 'months': 3.0, 'rating': 1.0, 'one': 2.0, 'packet': 1.0, 'air': 2.0, 'several': 2.0, 'my': 1.0, 'washing': 1.0, '6': 1.0, 'started': 1.0, 'cleared': 1.0, 'until': 1.0, 'having': 1.0, 'mouth': 1.0, 'disappearance': 1.0, 'up': 1.0, 'despite': 1.0, 'packaged': 1.0, 'around': 2.0, 'her': 4.0, 'good': 1.0, 'in': 2.0, 'm': 1.0, 'not': 1.0, 'claiming': 1.0, 'color': 1.0, 'rash': 1.0, 'but': 2.0, 'the': 5.0, 'of': 2.0, 'them': 2.0, 'has': 1.0, 'been': 1.0, 'that': 1.0, 'what': 1.0, 'when': 1.0, 'results': 1.0, 'instead': 1.0, 'far': 1.0, 'would': 3.0, 'blues': 1.0, 'persistent': 1.0, 'each': 1.0, 'shields': 2.0, 'have': 1.0, 'given': 1.0, '5': 1.0, 'star': 1.0, 'pink': 1.0, 'they': 1.0, 'are': 1.0, 'teal': 1.0, 'two': 2.0, 'little': 1.0, 'pinks': 1.0, 'strange': 1.0, 'package': 1.0, 'nuk': 3.0, 'this': 1.0, 'way': 1.0, 'irritation': 3.0, 'be': 1.0}
Word element => {'better': 1.0, 'nose': 1.0, 'in': 1.0, 'nicer': 1.0, 'look': 1.0, 'her': 2.0, 'down': 1.0, 'lay': 1.0, 'like': 2.0, 'this': 1.0, 'plat': 1.0, 'the': 2.0, 'these': 1.0, 'but': 1.0, 'daughter': 1.0, 'when': 1.0, 'so': 1.0, 'handle': 1.0, 'fit': 1.0, 'love': 1.0, 'for': 1.0, 'that': 1.0, 'my': 1.0, 'flat': 1.0, 'grocery': 1.0, 'bink': 1.0, 'really': 1.0, 'around': 1.0, 'is': 1.0, 'lies': 1.0, 'with': 1.0, 'buying': 1.0, 'our': 1.0, 'to': 1.0, 'sleep': 2.0, 'think': 1.0, 'bundle': 1.0, 'cheaper': 1.0, 'doesn': 1.0, 'store': 1.0, 'it': 1.0, 'she': 1.0, 'mouth': 1.0, 'than': 1.0, 't': 1.0, 's': 1.0, 'a': 1.0, 'i': 3.0, 'two': 1.0, 'at': 1.0, 'only': 1.0, 'pack': 1.0, 'uses': 1.0, 'them': 1.0, 'they': 2.0}
Word element => {'what': 1.0, 'not': 1.0, 'quick': 1.0, 'came': 1.0, 'myself': 1.0, 'thinking': 1.0, 'they': 2.0, 'mostly': 1.0, 'bought': 1.0, 'and': 1.0, 'price': 1.0, 'any': 1.0, 'rings': 1.0, 'on': 1.0, 'without': 1.0, 'them': 1.0, 'pacifiers': 1.0, 'prefer': 1.0, 'i': 4.0, 'didn': 1.0, 'but': 2.0, 'great': 1.0, 'these': 1.0, 'the': 2.0, 't': 1.0, 'have': 1.0, 'so': 1.0, 'wanted': 1.0, 'was': 1.0, 'disappointed': 1.0, 'in': 1.0}
Word element => {'lost': 1.0, 'all': 1.0, 'they': 1.0, 'once': 1.0, 'order': 1.0, 'totally': 1.0, 'would': 1.0, 'nuk': 1.0, 'pacifiers': 2.0, 'absolutely': 1.0, 'i': 2.0, 'get': 1.0, 'to': 1.0, 'was': 1.0, 'not': 1.0, 'again': 2.0, 'paid': 1.0, 'son': 1.0, 'price': 1.0, 're': 1.0, 'my': 1.0, 'for': 1.0, 'awesome': 1.0, '4': 2.0, 'expecting': 1.0, 'deal': 1.0, 'the': 2.0, 'these': 2.0, 'packs': 1.0, 'better': 1.0, 'loves': 1.0, 'than': 1.0, 'regular': 1.0}
Word element => {'us': 1.0, 'enough': 1.0, 'good': 1.0, 'kid': 1.0, 'when': 1.0, 'fingernail': 1.0, 'run': 1.0, 'i': 1.0, 'silicon': 1.0, 'between': 1.0, 'get': 2.0, 'but': 1.0, 'can': 1.0, 'around': 1.0, 'caught': 1.0, 'is': 1.0, 'drawback': 1.0, 'time': 1.0, 'was': 1.0, 'look': 1.0, 'old': 2.0, 'hair': 2.0, 'well': 1.0, 'for': 3.0, 's': 1.0, 'a': 2.0, 'we': 1.0, 'finally': 1.0, 'younger': 1.0, 've': 1.0, 'nuks': 1.0, 'the': 7.0, 'great': 1.0, 'these': 2.0, 'ones': 1.0, 'since': 1.0, 'binkies': 1.0, 'just': 1.0, 'few': 1.0, 'same': 1.0, 'it': 1.0, 'she': 3.0, 'cleaning': 1.0, 'nuk': 2.0, 'to': 2.0, 'as': 1.0, 'throw': 1.0, 'weeks': 1.0, 'away': 1.0, 'and': 4.0, 'are': 2.0, 'suitable': 1.0, 'plastic': 1.0, '6': 1.0, 'up': 1.0, 'months': 1.0, 'spit': 1.0, 'using': 1.0, 'hold': 1.0, 'been': 1.0, 'that': 3.0, 'loves': 2.0, 'or': 1.0, 'quality': 1.0, 'them': 1.0, 'out': 2.0, 'll': 1.0, 'soothie': 1.0, 'my': 2.0, 'avent': 1.0, 'only': 1.0}
Word element => {'complains': 1.0, 'no': 1.0, 'to': 1.0, 'supposed': 1.0, 'doing': 1.0, 'still': 1.0, 'it': 1.0, 'what': 1.0, 'works': 1.0, 'one': 2.0, 'get': 1.0, 'of': 2.0, 'covering': 1.0, '8': 1.0, 'have': 1.0, 'odors': 1.0, 'don': 1.0, 'you': 1.0, 'dirty': 1.0, 'if': 1.0, 'usage': 1.0, 'these': 1.0, 't': 1.0, 'the': 1.0, 'from': 1.0, 'diapers': 1.0, 'after': 1.0, 'months': 1.0, 'really': 1.0, 'is': 2.0}
Word element => {'smell': 1.0, 'down': 1.0, 'it': 1.0, 'this': 3.0, 'he': 1.0, 'with': 1.0, 'opted': 1.0, 'genie': 1.0, 'i': 2.0, 'wonderful': 1.0, 'right': 1.0, 'small': 1.0, 'have': 4.0, 'bad': 1.0, 'babies': 1.0, 'about': 1.0, 'no': 1.0, 'some': 1.0, 'once': 1.0, 'pretty': 1.0, 'one': 1.0, 'for': 1.0, 'the': 1.0, 'diaper': 1.0, 'house': 1.0, 'and': 2.0, 'our': 3.0, 'works': 1.0, 'nursery': 1.0, 'is': 2.0, 'a': 2.0, 'we': 3.0, 'stairs': 1.0, 'now': 1.0, 'had': 1.0, 'things': 1.0, 'problem': 1.0, 'odor': 1.0, 'from': 1.0, 'while': 1.0, 'still': 1.0, 'sleeping': 1.0, 'in': 2.0, 'room': 2.0, 'so': 2.0, 'upstairs': 1.0, 'heard': 1.0, 'not': 1.0}
Word element => {'nice': 1.0, 'hand': 1.0, 'his': 1.0, 'practical': 1.0, 'inches': 1.0, 'still': 1.0, 'if': 1.0, 'since': 1.0, 'eliminating': 1.0, 'height': 1.0, 'issue': 1.0, 'only': 1.0, 'folding': 1.0, 'don': 1.0, 'requiring': 1.0, 'asset': 1.0, 'removing': 1.0, 'locks': 1.0, 'bag': 3.0, 'wonderful': 1.0, 'fact': 2.0, 'closes': 1.0, 'closed': 1.0, 'been': 1.0, 'should': 1.0, 'gap': 1.0, 'hinges': 1.0, 'latch': 2.0, 'no': 1.0, 'there': 4.0, 'minor': 1.0, 'eventually': 1.0, 'didn': 1.0, 'smelled': 1.0, 'always': 2.0, 'close': 2.0, 'wouldn': 1.0, 'just': 3.0, 'product': 1.0, 'child': 1.0, 'each': 2.0, 'time': 1.0, 'new': 1.0, 'than': 1.0, 'way': 1.0, 'genies': 1.0, 'had': 1.0, 'problem': 1.0, 'actual': 1.0, 'one': 2.0, 'odors': 1.0, 'unlatch': 1.0, 'keeping': 1.0, 'door': 4.0, 'more': 2.0, 'shame': 1.0, 'far': 3.0, 'lid': 3.0, 'really': 1.0, 't': 4.0, 'both': 1.0, 'half': 2.0, 'in': 5.0, 'not': 1.0, 'itself': 2.0, 'stumble': 1.0, 'down': 1.0, 'where': 1.0, 'especially': 2.0, 'came': 1.0, 'step': 1.0, 'taking': 1.0, 'also': 1.0, 'us': 2.0, 'which': 1.0, 'side': 1.0, 'gift': 1.0, 'like': 1.0, 'rather': 1.0, 'but': 1.0, 'process': 1.0, 'loading': 2.0, 'am': 1.0, 'poop': 1.0, 'complained': 1.0, 'unloading': 1.0, 'user': 1.0, 'while': 4.0, 'did': 1.0, 'here': 2.0, 'nursery': 1.0, 'contest': 1.0, 'from': 1.0, 'addition': 1.0, 'weak': 1.0, 'when': 4.0, 'splitting': 1.0, 'slight': 1.0, 'a': 19.0, 'we': 2.0, 'could': 1.0, 'complain': 1.0, 'lifesaver': 1.0, 'thing': 3.0, 'whole': 1.0, 'gross': 1.0, 'told': 1.0, 'newer': 1.0, 'about': 2.0, 'born': 1.0, 'touches': 1.0, 'sealed': 1.0, 'genie': 5.0, 'editions': 1.0, 'major': 1.0, 'tad': 1.0, 'bend': 1.0, 'as': 1.0, 'bags': 1.0, 'diaper': 9.0, 'smells': 1.0, 'given': 1.0, 'you': 2.0, 'things': 1.0, 'for': 5.0, 'gigantic': 1.0, 'sorry': 1.0, 'actually': 1.0, 'it': 12.0, 'are': 1.0, 'diapers': 3.0, 'first': 1.0, 'above': 1.0, 'taller': 1.0, 'bonus': 1.0, 'stays': 1.0, 'be': 3.0, 'because': 1.0, 'that': 8.0, 'into': 1.0, 'floor': 2.0, 'do': 1.0, 'changing': 1.0, 'how': 1.0, 'our': 2.0, 'an': 1.0, 'all': 4.0, 'was': 7.0, 'can': 1.0, 'so': 5.0, 'baby': 1.0, 'save': 1.0, 'and': 14.0, 'got': 2.0, 'daughter': 1.0, 'out': 2.0, 'of': 7.0, 'the': 25.0, 'massive': 1.0, 'were': 2.0, 'recommend': 1.0, 'dirty': 3.0, 'my': 2.0, 'me': 1.0, 'munchkin': 1.0, 'would': 3.0, 'to': 10.0, 'pail': 2.0, 'is': 11.0, 'say': 2.0, 'use': 2.0, 'convenient': 1.0, 'with': 6.0, 'well': 2.0, 'i': 7.0, 'have': 6.0, 'wholly': 1.0, 'complaint': 1.0, 'going': 1.0, 'impressed': 1.0, 'make': 1.0, 'few': 2.0, 'this': 5.0, 'heavily': 1.0, 'work': 1.0, 'efficient': 1.0, 'over': 5.0, 'some': 1.0, 'shut': 1.0, 'room': 1.0, 'lack': 1.0, 'great': 3.0, 'foot': 2.0, 'easier': 2.0, 'pedal': 3.0}
Word element => {'unpleasant': 1.0, 'anything': 1.0, 'as': 1.0, 'custom': 1.0, 'gladly': 1.0, 'will': 1.0, 'help': 1.0, 'didn': 1.0, 'blocking': 1.0, 'now': 1.0, 'odor': 1.0, 'used': 1.0, 'my': 1.0, 't': 1.0, 'the': 2.0, 'diaper': 1.0, 'pail': 2.0, 'with': 1.0, 'first': 1.0, 'this': 2.0, 'never': 1.0, 'previously': 1.0, 'own': 1.0, 'overwhelmed': 1.0, 'child': 1.0, 'i': 4.0, 'for': 3.0, 'love': 1.0, 'one': 1.0, 'your': 1.0, 'that': 1.0, 'allowed': 1.0, 'garbage': 1.0, 'me': 1.0, 'bags': 3.0, 'almost': 1.0, 'pay': 1.0, 'until': 1.0, 'smell': 2.0}
Word element => {'will': 1.0, 'arm': 1.0, 'on': 1.0, 'shame': 1.0, 'use': 1.0, 'and': 2.0, 'cut': 1.0, 'scheme': 1.0, 'making': 1.0, 'hold': 1.0, 'which': 1.0, 'from': 2.0, 'bags': 1.0, 'want': 1.0, 'instead': 1.0, 'wasteful': 1.0, 'reusable': 1.0, 'regular': 1.0, 'in': 1.0, 'keep': 1.0, 'smell': 2.0, 'garbage': 1.0, 'fine': 1.0, 'it': 2.0, 'boot': 1.0, 'makes': 1.0, 'point': 1.0, 'see': 1.0, 'money': 2.0, 'but': 2.0, 'you': 3.0, 'dealing': 1.0, 'environment': 1.0, 'buy': 1.0, 'blue': 2.0, 'me': 1.0, 'get': 2.0, 'to': 4.0, 'poo': 1.0, 'i': 2.0, 'straight': 1.0, 'nothing': 1.0, '100': 1.0, 'these': 1.0, 'the': 9.0, 'lengthy': 1.0, 'let': 1.0, 'with': 2.0, 'mind': 1.0, 'so': 3.0, 'star': 1.0, 'product': 2.0, 'be': 1.0, 'them': 1.0, 'baby': 1.0, 'a': 3.0, 'could': 1.0, 'going': 1.0, 'totally': 1.0, 'that': 5.0, 'gave': 1.0, 'free': 1.0, 'reviews': 1.0, 'they': 2.0, 'one': 1.0, 'does': 1.0, 'because': 1.0, 'have': 1.0, 'reduce': 1.0, 'made': 1.0, 'hammer': 1.0, 'ring': 2.0, 'more': 1.0, 'comes': 1.0, 'is': 3.0, 'holds': 1.0, 'bag': 3.0}
Word element => {'cant': 1.0, 'it': 2.0, 'in': 1.0, 'get': 1.0, 'daughter': 1.0, 'usually': 1.0, 'price': 1.0, 'baby': 1.0, 'are': 1.0, 'dont': 1.0, 'i': 1.0, 'target': 1.0, 'they': 2.0, 'handy': 1.0, 'level': 1.0, 'the': 4.0, 'these': 1.0, 'replacement': 1.0, 'day': 1.0, 'from': 1.0, 'bags': 1.0, 'super': 1.0, 'each': 1.0, 'of': 4.0, 'for': 2.0, 'smell': 1.0, 'own': 2.0, 'weeks': 1.0, 'we': 2.0, 'a': 2.0, 'mind': 1.0, 'with': 1.0, 'hold': 1.0, 'house': 1.0, 'enough': 1.0, 'us': 1.0, 'open': 1.0, 'container': 1.0, 'as': 1.0, 'to': 2.0, 'empty': 1.0, 'that': 1.0, 'before': 1.0, 'garbage': 1.0, 'course': 1.0, 'but': 1.0, '2': 2.0, 'change': 1.0, 'my': 1.0, 'may': 1.0, 'tries': 1.0, 'never': 1.0, 'sale': 1.0, 'coming': 1.0, 'have': 1.0, 'either': 1.0}
Word element => {'is': 1.0, 'live': 1.0, 'certainly': 1.0, 'way': 1.0, 'always': 1.0, 'didn': 1.0, 'so': 1.0, 'top': 1.0, 'bottom': 1.0, 'has': 1.0, 'be': 2.0, 'foot': 1.0, 'improvement': 1.0, 'test': 1.0, 'i': 2.0, 'problems': 1.0, 'old': 1.0, 'odor': 1.0, 'had': 1.0, 'to': 3.0, 'no': 1.0, 'open': 1.0, 'true': 1.0, 'guess': 1.0, 'pail': 1.0, 'start': 1.0, 'have': 1.0, 'in': 1.0, 'will': 1.0, 'can': 1.0, 'four': 1.0, 'but': 2.0, 'an': 2.0, 'your': 1.0, 'on': 1.0, 'put': 1.0, 'been': 1.0, 'using': 1.0, 'months': 1.0, 'one': 1.0, 'hands': 1.0, 'the': 5.0, 'diaper': 1.0, 'you': 2.0, 'when': 1.0, 'solids': 1.0, 'lever': 1.0, 'pull': 1.0, 'it': 6.0, 'with': 1.0, 'quick': 1.0, 'easy': 1.0, 'supposed': 1.0, 'for': 1.0, 'assemble': 1.0, 'and': 2.0, 'out': 1.0, 'need': 1.0, 'bag': 1.0, 't': 1.0, 'we': 3.0, 's': 2.0, 'a': 2.0, 've': 1.0, 'munchkin': 1.0, 'new': 1.0, 'would': 1.0, 'if': 1.0}
Word element => {'worth': 1.0, 'who': 1.0, 'adults': 1.0, 'buy': 1.0, 'have': 1.0, 'had': 2.0, 'wish': 1.0, 'ago': 1.0, '4': 1.0, 'these': 1.0, 'made': 1.0, 'even': 1.0, 'they': 1.0, 'sure': 1.0, 'fumes': 1.0, 'toxic': 1.0, 'control': 1.0, 'outside': 1.0, 'were': 1.0, 'full': 1.0, 'this': 1.0, 'near': 1.0, '1': 2.0, 'before': 2.0, 'bag': 1.0, 'simple': 1.0, 'did': 1.0, 'getting': 1.0, 'however': 2.0, 'born': 1.0, 'opening': 1.0, 'served': 1.0, 'changed': 1.0, 'decision': 1.0, 'really': 1.0, 'right': 1.0, 'worked': 1.0, 'champ': 1.0, 'and': 6.0, 'that': 1.0, 'not': 4.0, 'those': 1.0, 'from': 1.0, 'purpose': 1.0, 'car': 2.0, 'figured': 1.0, 'just': 1.0, 'why': 1.0, 'was': 6.0, 'it': 11.0, 'first': 1.0, 'you': 3.0, 'i': 10.0, 'purchase': 1.0, 'insisted': 1.0, 'one': 2.0, 'my': 4.0, 'entire': 2.0, 'up': 1.0, 'pails': 1.0, '34': 4.0, 'both': 1.0, 'of': 2.0, 'the': 9.0, 'special': 1.0, 'used': 1.0, 'diaper': 4.0, 'bags': 3.0, 'totally': 1.0, 'often': 1.0, 'period': 1.0, 'smell': 2.0, 'confident': 1.0, 'a': 2.0, 'got': 1.0, 'anywhere': 1.0, 'though': 1.0, 'for': 1.0, 'love': 4.0, 'with': 2.0, 'child': 3.0, 'year': 1.0, '2': 2.0, 'but': 3.0, 'recently': 1.0, 'needed': 1.0, 'new': 1.0, 'm': 1.0, 'in': 1.0, 'seat': 2.0, 'free': 1.0, 'at': 1.0, 'r': 1.0, 'yes': 1.0, 'tried': 1.0, 'us': 1.0, 'taking': 1.0, 'can': 1.0, 'so': 1.0, 'to': 3.0, 'pail': 2.0, 'against': 2.0, 'its': 2.0, 'anyway': 1.0, 'use': 1.0, 'completely': 1.0, 'babies': 1.0, 'husband': 1.0, 'more': 1.0, 'contain': 1.0, 'contains': 1.0, 'fine': 1.0, 'we': 2.0, 'take': 2.0, 'out': 1.0, 'when': 2.0, 'seal': 1.0, 'always': 1.0, 'has': 1.0, 'them': 1.0, 'there': 1.0, 'years': 1.0, 'no': 1.0}
Word element => {'without': 1.0, 'effective': 1.0, 'control': 1.0, 'means': 1.0, 'off': 1.0, 'sticker': 1.0, 'peeled': 1.0, 'never': 1.0, 'recently': 1.0, 'realized': 1.0, 'just': 1.0, 'holding': 1.0, 'same': 1.0, 'open': 1.0, 'so': 1.0, 'can': 1.0, 'then': 1.0, 'lift': 1.0, 'unload': 1.0, 'squeeze': 2.0, 'hand': 3.0, 'were': 1.0, 'vitually': 1.0, 'kid': 1.0, 'clean': 1.0, 'muchkin': 1.0, 'my': 2.0, 'lid': 2.0, 'up': 1.0, 'poopy': 1.0, 'factory': 1.0, 'dispenser': 1.0, 'gripe': 1.0, 'offensive': 1.0, 'portion': 1.0, 'a': 5.0, 'ago': 1.0, 's': 2.0, 'using': 1.0, 'bag': 1.0, 'cleanish': 1.0, 'need': 1.0, 'cut': 1.0, 'of': 3.0, 'the': 19.0, 'hands': 1.0, 'tie': 1.0, 'pee': 2.0, 'stinky': 1.0, 'no': 1.0, 'years': 1.0, 'automatically': 1.0, 'have': 5.0, 'required': 1.0, 'from': 2.0, '5': 1.0, 'genie': 1.0, 'i': 4.0, 'with': 1.0, 'diapers': 1.0, 'first': 1.0, 'it': 3.0, 'diaper': 6.0, 'even': 1.0, 'practical': 1.0, '2': 1.0, 'but': 2.0, 'easy': 1.0, 'operate': 1.0, 'had': 1.0, 'pail': 2.0, 'job': 1.0, 'to': 7.0, 'was': 1.0, 'load': 2.0, 'away': 1.0, 'and': 4.0, 'extremely': 1.0, 'odor': 2.0, 'time': 1.0, 'you': 7.0, 'original': 2.0, 'close': 1.0, 'munchkin': 1.0, 'liner': 1.0, 'very': 1.0, 'twist': 1.0, 'sprinkles': 1.0, 'w': 2.0, 'baking': 5.0, 'refillable': 1.0, 'couple': 1.0, 'soda': 5.0, 'think': 1.0, 'your': 1.0, 'update': 1.0, 'liners': 1.0, 'on': 1.0, 'squimy': 1.0, 'after': 1.0, 'months': 1.0, 'one': 1.0, 'dispose': 1.0, 'only': 1.0, 'that': 7.0, 'changing': 1.0, 'is': 3.0, 'handle': 2.0, 'every': 1.0, 'still': 1.0, 'if': 3.0, 'messy': 1.0, 'in': 1.0, 'table': 1.0, 'll': 1.0, 'an': 1.0, 'other': 1.0, 'not': 1.0, 'baby': 1.0, 'relatively': 1.0}
Word element => {'convenient': 1.0, 'make': 1.0, 'tweaks': 1.0, 'some': 1.0, 'could': 1.0, 'but': 1.0, 'odor': 1.0, 'terms': 1.0, 'very': 1.0, 'overall': 1.0, 'without': 1.0, '15': 1.0, 'here': 1.0, 'diapers': 1.0, '25': 1.0, 'get': 1.0, 'that': 1.0, 'close': 1.0, 'closed': 1.0, 'reducing': 1.0, 'also': 1.0, 'up': 1.0, 'little': 3.0, 'dispenser': 1.0, 'have': 3.0, 'off': 1.0, 'foot': 2.0, 'says': 1.0, 'hand': 2.0, 'hold': 1.0, 'bag': 1.0, 'using': 1.0, 'eliminate': 1.0, 'which': 1.0, 'while': 2.0, 'inherent': 1.0, 'use': 3.0, 'order': 2.0, 'then': 1.0, 'having': 1.0, 'height': 1.0, 'had': 1.0, 'and': 6.0, 'a': 7.0, 'fit': 1.0, 'twists': 1.0, 't': 1.0, 's': 1.0, 'since': 1.0, 'solution': 1.0, 'next': 1.0, 'my': 3.0, 'to': 8.0, 'dance': 1.0, 'shoving': 1.0, 'opening': 1.0, 'isn': 1.0, 'free': 1.0, 'at': 1.0, 'is': 4.0, 'experience': 1.0, 'say': 1.0, 'unit': 5.0, 'it': 7.0, 'this': 6.0, 'i': 6.0, 'half': 1.0, 'wriggling': 1.0, 'baby': 2.0, 'about': 2.0, 'no': 1.0, 'set': 2.0, 'there': 1.0, 'the': 16.0, 'of': 5.0, 'bending': 2.0, 'diaper': 4.0, 'over': 1.0, 'open': 3.0, 'cramming': 1.0, 'table': 3.0, 'pedal': 2.0, 'containing': 1.0, 'with': 2.0, 'can': 1.0, 'releases': 1.0, 'same': 1.0, 'or': 1.0, 'down': 1.0, 'only': 1.0, 'grab': 1.0, 'do': 3.0, 'changing': 2.0, 'put': 1.0, 'in': 10.0, 'm': 1.0, 'not': 2.0, 'really': 1.0, 'still': 1.0, 'if': 1.0, 'every': 2.0, 'one': 1.0, 'try': 1.0, 'lot': 1.0, 'happy': 1.0, 'simple': 1.0, 'whiff': 1.0, 'was': 1.0, 'ensure': 1.0, 'taller': 1.0, 'design': 2.0, 'either': 1.0, 'would': 1.0, 'awkwardness': 1.0, 'particular': 1.0, 'effective': 2.0, 'however': 1.0, 'extremely': 1.0, 'odors': 1.0, 'does': 1.0, 'baking': 2.0, 'soda': 2.0, 'top': 2.0, 'time': 2.0, 'you': 3.0}
Word element => {'this': 1.0, 'in': 1.0, 'disappointed': 1.0, 'will': 1.0, 'they': 1.0, 'the': 3.0, 'these': 1.0, 'of': 1.0, 'then': 1.0, 'two': 1.0, 'and': 2.0, 'very': 1.0, 'bought': 1.0, 'have': 1.0, 'bag': 1.0, 'working': 1.0, 'i': 1.0, 'both': 1.0, 'part': 1.0, 'not': 1.0, 'that': 1.0, 'broke': 1.0, 'twists': 1.0, 'close': 1.0, 'stops': 1.0, 'top': 1.0}
Word element => {'pails': 1.0, 'unlike': 1.0, 'use': 1.0, 'don': 1.0, 'especially': 1.0, 'through': 1.0, 'baby': 1.0, 'week': 1.0, 'ton': 1.0, 'holds': 1.0, 'un': 1.0, 'when': 1.0, 'jam': 2.0, 'top': 2.0, 'plastic': 1.0, 'a': 7.0, 't': 4.0, 's': 4.0, 'hard': 1.0, 'while': 2.0, 'you': 4.0, 'goes': 1.0, 'smell': 2.0, 'design': 1.0, 'other': 1.0, 'all': 1.0, 'our': 1.0, 'best': 1.0, 'in': 3.0, 'm': 2.0, 'glad': 1.0, 'bags': 4.0, 'as': 2.0, 'diaper': 2.0, 'but': 4.0, 'got': 1.0, 'to': 5.0, 'pail': 2.0, 'aren': 1.0, 'they': 1.0, 'easy': 1.0, 'know': 1.0, 'it': 12.0, 'with': 2.0, 'perfect': 1.0, 'diapers': 3.0, 'bad': 2.0, 'have': 4.0, 'impressed': 1.0, 'definitely': 1.0, 'twice': 1.0, 'think': 1.0, 'and': 7.0, 'really': 7.0, 'which': 1.0, 'good': 1.0, 'keeping': 1.0, 'out': 4.0, 'does': 1.0, 'baking': 1.0, 'took': 1.0, 'ok': 1.0, 'unclip': 1.0, 'for': 2.0, 'lot': 1.0, 'too': 1.0, 'one': 3.0, 'mechanism': 1.0, 'without': 1.0, 'choose': 1.0, 'has': 1.0, 'recommend': 1.0, 'full': 1.0, 'together': 1.0, 'clips': 1.0, 'can': 2.0, 'so': 2.0, 'time': 1.0, 'just': 2.0, 'this': 3.0, 'few': 1.0, 'only': 1.0, 'usually': 1.0, 'quickly': 1.0, 'method': 1.0, 'soda': 1.0, 'never': 1.0, 'haul': 1.0, 'worked': 1.0, 'clip': 2.0, 'reviews': 2.0, 'then': 2.0, 'take': 2.0, 'letting': 1.0, 'sometimes': 2.0, 'if': 1.0, 'want': 1.0, 'll': 1.0, 'tons': 1.0, 'get': 1.0, 'empty': 1.0, 'whiff': 1.0, 'sausage': 1.0, 'didn': 2.0, 'seconds': 1.0, 'home': 1.0, 'taking': 1.0, 'smelled': 1.0, 'expensive': 1.0, 'obviously': 1.0, 'i': 10.0, 'putting': 1.0, 'lid': 1.0, 'easily': 1.0, 'that': 1.0, 'because': 2.0, 'lasts': 1.0, 'long': 1.0, 'went': 1.0, 'holiday': 1.0, 'whole': 1.0, 'the': 13.0, 'of': 5.0, 'my': 1.0, 'me': 1.0, 'yes': 1.0, 'very': 1.0, 'twist': 1.0}
Word element => {'replace': 1.0, 'remove': 1.0, 'to': 1.0, 's': 1.0, 'full': 1.0, 'gets': 1.0, 'when': 1.0, 'bag': 2.0, 'this': 1.0, 'is': 1.0, 'the': 5.0, 'smells': 1.0, 'easy': 1.0, 'perfect': 1.0, 'it': 2.0, 'pail': 2.0, 'diaper': 1.0, 'in': 1.0, 'keeps': 1.0, 'and': 2.0}
Word element => {'recommended': 1.0, 'highly': 1.0, 'use': 1.0, 'enough': 1.0, 'liked': 1.0, 'fast': 1.0, 'larger': 1.0, 'full': 1.0, 'wish': 1.0, 'otherwise': 1.0, 'i': 1.0, 'downstairs': 1.0, 'bag': 1.0, 'at': 1.0, 'room': 1.0, 'contains': 1.0, 'fantastic': 1.0, 'you': 2.0, 'daughter': 1.0, 'give': 1.0, 'just': 1.0, 'smell': 2.0, 'soda': 1.0, 'were': 4.0, 'these': 1.0, 'the': 6.0, 'until': 1.0, 'great': 1.0, 'it': 7.0, 'of': 2.0, 'stink': 1.0, 'totally': 1.0, 'that': 3.0, 'initially': 1.0, 'because': 2.0, 'find': 1.0, 'would': 1.0, 'hesitant': 1.0, 'up': 1.0, 'anyway': 1.0, 'all': 1.0, 'our': 1.0, 'to': 6.0, 'very': 2.0, 'decided': 1.0, 'one': 2.0, 'get': 2.0, 'and': 1.0, 't': 1.0, 's': 2.0, 'we': 5.0, 'a': 1.0, 'try': 1.0, 'pleasantly': 1.0, 'surprised': 1.0, 'got': 1.0, 'diapers': 2.0, 'but': 1.0, 'change': 1.0, 'can': 1.0, 'work': 1.0, 'baking': 1.0, 'out': 1.0, 'smelly': 1.0, 'in': 1.0, 'seems': 2.0, 'nervous': 1.0, 'pail': 1.0, 'another': 1.0, 'lid': 1.0}
Word element => {'much': 1.0, 'a': 1.0, 'gross': 1.0, 'down': 1.0, 'your': 1.0, 'put': 2.0, 'have': 1.0, 'soiled': 1.0, 'in': 2.0, 'also': 1.0, 'than': 1.0, 'less': 1.0, 'to': 2.0, 'was': 1.0, 'smell': 2.0, 'hold': 1.0, 'told': 1.0, 'is': 1.0, 'not': 1.0, 'because': 1.0, 'diaper': 4.0, 'the': 5.0, 'over': 1.0, 'pail': 2.0, 'true': 1.0, 'bought': 2.0, 'genie': 3.0, 'i': 3.0, 'that': 1.0, 'this': 2.0, 'it': 4.0, 'controlled': 1.0, 's': 2.0, 'you': 1.0, 'way': 1.0, 'hand': 1.0, 'better': 2.0, 'horrible': 1.0, 'and': 3.0}
Word element => {'market': 1.0, 'pails': 1.0, 'other': 1.0, 'speak': 1.0, 'close': 1.0, 'even': 1.0, 'gets': 1.0, 'much': 1.0, 'bags': 1.0, 'on': 1.0, 'lastly': 1.0, 'holding': 1.0, 'are': 1.0, 'when': 1.0, 'you': 2.0, 'if': 1.0, 'nearly': 1.0, 'don': 1.0, 'child': 1.0, 'over': 2.0, 'challenge': 1.0, 'short': 1.0, 'pretty': 1.0, 'but': 1.0, 'can': 2.0, '2': 1.0, 'and': 2.0, 'open': 2.0, 'both': 1.0, 'use': 1.0, 'generally': 1.0, '1': 1.0, 'have': 3.0, 'future': 1.0, 'since': 1.0, 'has': 1.0, 'been': 1.0, 'that': 2.0, 'hands': 1.0, 'the': 10.0, 'diaper': 6.0, 'a': 3.0, 't': 4.0, 'odor': 1.0, 'problem': 1.0, 'so': 2.0, 'arm': 1.0, 'control': 2.0, 'smell': 1.0, 'real': 1.0, 'curious': 1.0, 'becomes': 1.0, 'i': 7.0, 'genie': 4.0, 'hammer': 1.0, 'purchase': 1.0, 'lid': 1.0, 'bend': 1.0, 'my': 1.0, 'in': 3.0, 'said': 1.0, 'more': 2.0, 'is': 2.0, 'one': 1.0, 'it': 5.0, 'with': 1.0, 'full': 1.0, 'this': 3.0, 'number': 1.0, 'product': 2.0, 'be': 1.0, 'was': 2.0, 'unfortunately': 1.0, 'doesn': 1.0, 'thought': 1.0, 'pedal': 1.0, 'as': 2.0, 'to': 7.0, 'any': 1.0, 'addition': 1.0, 'there': 1.0, 'no': 1.0, 'pail': 1.0, 'inconvenient': 1.0, 'foot': 1.0, 'hold': 1.0, 'which': 1.0, 'because': 2.0, 'than': 1.0, 'find': 1.0, 'munchkin': 1.0, 'would': 2.0}
Word element => {'another': 1.0, 'buy': 1.0, 'or': 1.0, 'like': 1.0, 'you': 2.0, 'i': 3.0, 'empty': 1.0, 'how': 1.0, 'plastic': 1.0, 'on': 2.0, 'tying': 1.0, 'much': 3.0, 'put': 1.0, 'used': 1.0, 'not': 3.0, 'product': 1.0, 'video': 1.0, 'but': 2.0, 'change': 1.0, 'didn': 1.0, 'when': 1.0, 'seal': 1.0, 'more': 2.0, 'is': 4.0, 'deal': 1.0, 'out': 3.0, 'watched': 1.0, 'genie': 1.0, 'to': 6.0, 'would': 1.0, 'me': 2.0, 'looks': 1.0, 'it': 8.0, 'without': 1.0, 'remove': 1.0, 'smelling': 1.0, 'second': 1.0, 'since': 1.0, 'space': 1.0, 'a': 5.0, 'take': 1.0, 'we': 4.0, 's': 1.0, 't': 1.0, 'taking': 2.0, 'shades': 1.0, 'can': 1.0, 'so': 3.0, 'upstairs': 1.0, 'before': 1.0, 'wait': 1.0, 'bag': 4.0, 'bought': 1.0, 'one': 4.0, 'have': 3.0, 'and': 6.0, 'complicated': 1.0, 'hate': 1.0, 'dirty': 1.0, 'full': 1.0, 'downstairs': 1.0, 'with': 3.0, 'they': 1.0, 'cut': 1.0, 'removed': 1.0, 'tie': 1.0, 'no': 2.0, '2': 2.0, 'thing': 1.0, 'diaper': 1.0, 'bags': 2.0, 'there': 3.0, 'the': 9.0, 'longer': 1.0, 'of': 3.0, 'top': 1.0, 'trash': 2.0, 'bother': 2.0, 'nicely': 1.0, 'snaps': 1.0, 'room': 1.0, 'once': 1.0, 'shut': 1.0, 'still': 2.0, 'little': 1.0, 'left': 1.0, 'in': 2.0, 'this': 2.0, 'few': 1.0, 'them': 1.0, 'that': 3.0, 'day': 1.0, 'does': 1.0, 'diapers': 2.0, 'are': 2.0, 'different': 2.0, 'types': 1.0, 'loved': 1.0, 'enough': 1.0, 'which': 1.0, 'big': 1.0, 'white': 1.0}
Word element => {'recommended': 1.0, 'not': 1.0, 'diapers': 1.0, 'hold': 1.0, 'since': 1.0, 'fast': 1.0, 'use': 1.0, 'we': 1.0, 'seems': 1.0, 'they': 2.0, 'for': 1.0, 'what': 1.0, 'expensive': 1.0, 'so': 2.0, 'bags': 1.0, 'way': 1.0, 'close': 1.0, 'to': 2.0, '4': 1.0, 'when': 1.0, 'too': 1.0, 'box': 1.0, 'like': 1.0, 'pail': 1.0, 'many': 1.0, 'is': 1.0, 't': 1.0, 'the': 2.0, 'diaper': 1.0, 'refill': 1.0, 'starts': 1.0, '3': 1.0, 'are': 2.0, 'full': 1.0, 'fill': 1.0, 'get': 1.0, 'and': 3.0, 'it': 3.0, 'hard': 1.0, 'this': 1.0, 'only': 1.0, 'up': 2.0, 'll': 1.0, 'don': 1.0, 'about': 1.0, 'wasteful': 1.0}
Word element => {'space': 1.0, 'waste': 1.0, 'like': 1.0, 'seems': 1.0, 'there': 1.0, 'in': 1.0, '7': 1.0, 'can': 2.0, 'take': 1.0, 'top': 1.0, 'if': 1.0, 'being': 1.0, 'and': 1.0, 'diapers': 2.0, 'twisting': 1.0, 'of': 4.0, 'close': 2.0, 'out': 2.0, 'clean': 1.0, 'great': 1.0, 'diaper': 1.0, 'the': 9.0, 'it': 5.0, 'only': 1.0, 'to': 4.0, 'had': 2.0, 'step': 1.0, 'because': 2.0, 'really': 1.0, 'a': 2.0, 'have': 3.0, '5': 1.0, 'before': 1.0, 'on': 1.0, 'constantly': 1.0, 'problem': 1.0, 'up': 1.0, 'more': 1.0, 'is': 3.0, 'trash': 1.0, 'pail': 1.0, 'smell': 1.0, 'other': 1.0, 'would': 3.0, 'fit': 1.0, 'for': 1.0, 'lid': 2.0, 'my': 1.0, 'i': 7.0, '4': 1.0, 'two': 1.0, 'when': 1.0, '5ths': 1.0, 'still': 1.0, 'gets': 1.0, 'part': 1.0, 'hard': 1.0, 'bags': 1.0, 'are': 1.0, 'this': 1.0, 'wish': 1.0, 'kids': 1.0, 'full': 1.0, 'so': 3.0, 'kind': 1.0, 'easy': 1.0, 'use': 1.0, 'that': 1.0, 'bag': 2.0, 'about': 1.0}
Word element => {'way': 1.0, 'money': 1.0, 'lots': 1.0, 'save': 1.0, 'with': 1.0, 'dont': 1.0, 'get': 2.0, 'recomendation': 1.0, 'my': 1.0, 'gross': 1.0, 'really': 1.0, 'good': 1.0, 'which': 1.0, 'only': 1.0, 'for': 1.0, 'times': 1.0, 'most': 1.0, '4': 1.0, 'munchkin': 1.0, 'position': 1.0, 'give': 1.0, 'not': 1.0, 'full': 2.0, 'this': 3.0, 'product': 1.0, 'be': 2.0, 'about': 1.0, 'when': 4.0, 'push': 1.0, 'you': 2.0, 'everytime': 2.0, 'several': 1.0, 'down': 1.0, 'stand': 1.0, 'and': 6.0, 'up': 2.0, 'poopy': 1.0, 'stank': 1.0, 'did': 1.0, 'almost': 1.0, 'to': 7.0, 'bakingsoda': 1.0, 'it': 10.0, 'fit': 1.0, 't': 1.0, 'a': 5.0, 'of': 6.0, 'the': 13.0, 'coudn': 1.0, 'i': 3.0, 'does': 1.0, 'anymore': 1.0, 'smell': 1.0, 'all': 3.0, 'stinks': 2.0, 'also': 1.0, 'will': 1.0, 'got': 1.0, 'even': 3.0, 'one': 3.0, 'try': 1.0, 'use': 1.0, 'per': 1.0, 'in': 6.0, 'regular': 2.0, 'room': 1.0, 'before': 1.0, 'rip': 1.0, 'bedroom': 1.0, 'trashbags': 1.0, 'decided': 1.0, 'mechanism': 1.0, 'used': 1.0, 'we': 4.0, 'trashcan': 3.0, 'close': 1.0, 'just': 2.0, 'says': 1.0, 'size': 1.0, 'because': 1.0, '20': 2.0, 'that': 3.0, 'our': 1.0, 'besides': 2.0, 'sprinkle': 1.0, 'out': 2.0, 'order': 1.0, 'open': 1.0, 'work': 1.0, 'so': 2.0, 'can': 1.0, 'is': 3.0, 'at': 2.0, 'has': 1.0, 'trashbag': 1.0, 'have': 1.0, 'exact': 1.0, 'worse': 1.0, 'stinky': 1.0, 'sometimes': 1.0, 'especially': 1.0, 'package': 1.0, 'as': 2.0, 'falls': 1.0, 'opened': 1.0, 'lid': 2.0, 'old': 1.0, 'fact': 1.0, 'was': 1.0, 'opens': 1.0, 'first': 1.0, 'diapers': 4.0, 'bad': 1.0, 'are': 1.0, 'right': 1.0, 'closing': 1.0, 'sort': 1.0, 'off': 1.0, 'bag': 3.0, 'hold': 1.0, '25': 1.0}
Word element => {'maybe': 1.0, 'say': 1.0, 'either': 1.0, 'dogs': 3.0, 'yourself': 1.0, 'good': 1.0, 'well': 1.0, 'access': 1.0, 'seems': 1.0, 'front': 2.0, 'something': 2.0, 'containing': 2.0, 'll': 1.0, 'spins': 1.0, 'over': 1.0, 'hard': 1.0, '7': 2.0, 'change': 4.0, 'noisy': 1.0, 'item': 1.0, 'will': 1.0, 'could': 1.0, 'in': 9.0, 'nosy': 1.0, 'wanted': 1.0, 'sprinkles': 1.0, 'soda': 5.0, 'breaking': 2.0, 'consmunchkinpros': 1.0, 'shut': 2.0, 'cutter': 1.0, 'pros': 1.0, 'hate': 1.0, 'some': 1.0, 'list': 1.0, 'don': 1.0, 'pets': 2.0, 'compare': 1.0, 'unlike': 1.0, 'easy': 1.0, 'leaves': 1.0, 'get': 3.0, 'months': 2.0, 'they': 2.0, 'refill': 1.0, 's': 4.0, 'preferred': 1.0, 'job': 1.0, 'to': 10.0, 'the': 18.0, 'of': 3.0, 'things': 2.0, 'push': 2.0, 'loud': 1.0, 'you': 4.0, 'there': 2.0, 'from': 2.0, 'while': 1.0, 'now': 1.0, 'was': 3.0, 'opens': 2.0, 'need': 1.0, 'or': 6.0, 'with': 6.0, 'using': 1.0, 'done': 1.0, 'two': 3.0, 'nice': 1.0, 'little': 1.0, 'i': 10.0, 'residue': 1.0, 'so': 6.0, 'up': 1.0, 'diaper': 8.0, 'bags': 3.0, 'falls': 1.0, 'carring': 1.0, 'but': 1.0, 'thing': 1.0, 'it': 16.0, 'tipping': 1.0, 'middle': 2.0, 'this': 3.0, 'shower': 1.0, 'locking': 2.0, 'got': 1.0, 'one': 3.0, 'bought': 1.0, 'baby': 1.0, 'no': 2.0, 'pail': 1.0, 'about': 4.0, 'bust': 1.0, 'for': 3.0, 'love': 1.0, 'he': 1.0, 'bottom': 1.0, 'trained': 1.0, 'dispenser': 2.0, 'actually': 1.0, 'open': 1.0, 'another': 2.0, 'opinion': 1.0, 'room': 1.0, 'are': 2.0, 'my': 9.0, 'determined': 1.0, 'me': 1.0, 'after': 2.0, 'unnecessary': 1.0, 'bag': 5.0, 'a': 3.0, 'mostly': 1.0, 'important': 1.0, '1': 2.0, 'contain': 1.0, 'that': 6.0, 'everywhere': 3.0, 'smell': 5.0, 'does': 1.0, 'baking': 5.0, 'needed': 1.0, 'both': 2.0, 'half': 1.0, 'locks': 2.0, 'out': 6.0, 'fear': 1.0, 'can': 3.0, 'is': 3.0, 'handle': 1.0, 'at': 2.0, 'really': 1.0, 'lid': 5.0, 'button': 1.0, 'which': 2.0, 'again': 2.0, 'middlenow': 1.0, 'foot': 2.0, 'keep': 1.0, 'have': 5.0, '2': 2.0, 'end': 2.0, 'spindle': 1.0, 'only': 3.0, 'options': 1.0, 'opening': 1.0, 'left': 2.0, 'cons': 2.0, 'hope': 1.0, 'great': 1.0, 'if': 2.0, 'genie': 4.0, 'not': 2.0, 'correctly': 1.0, 'gets': 3.0, 'top': 1.0, 'instead': 1.0, 'would': 1.0, 'pails': 1.0, 'and': 15.0, 'just': 3.0, 'like': 1.0, 'dog': 2.0, 'way': 1.0, 'inner': 1.0, 'help': 2.0, 'full': 1.0, 'jammed': 1.0, 'last': 1.0, 'down': 1.0, 'defeats': 1.0, 't': 2.0, 'never': 1.0, 'take': 2.0, 'dang': 1.0, 'use': 1.0, 'purpos': 1.0, 'buy': 1.0, 'having': 1.0, 'clip': 1.0, 'worry': 1.0, 'lock': 2.0, 'getting': 1.0, 'through': 1.0, 'garbage': 1.0, 'into': 2.0, 'genieprosquiet': 1.0, 'shutting': 1.0, 'upstairs': 1.0, 'haven': 1.0, 'finish': 1.0, 'keeps': 2.0, 'pain': 1.0, 'away': 1.0, 'walls': 1.0, 'dressers': 1.0, 'sometimes': 2.0, 'spilling': 1.0, 'enough': 1.0, 'move': 1.0, 'flake': 1.0, 'when': 1.0, 'bin': 1.0, 'kinda': 1.0, 'snapsno': 1.0, 'had': 1.0}
Word element => {'re': 1.0, 'all': 2.0, 'pack': 1.0, 'got': 1.0, 'glad': 1.0, 'about': 2.0, 'been': 1.0, 've': 1.0, 'hesitant': 1.0, 'refill': 1.0, 's': 4.0, 'a': 8.0, 'we': 5.0, 'along': 1.0, 't': 2.0, 'smell': 2.0, 'on': 2.0, 'recommendation': 1.0, 'except': 1.0, 'duty': 1.0, 'perfect': 1.0, 'full': 2.0, 'went': 2.0, 'but': 3.0, 'can': 1.0, 'change': 1.0, 'special': 2.0, 'stainless': 1.0, 'friend': 1.0, 'required': 1.0, 'upgrade': 1.0, 'bag': 3.0, 'using': 1.0, 'for': 4.0, 'the': 10.0, 'just': 1.0, 'that': 2.0, 'thrilled': 1.0, 'started': 1.0, 'ahead': 2.0, 'was': 3.0, 'deeper': 2.0, 'any': 1.0, 'it': 6.0, 'month': 1.0, 'first': 2.0, 'enticing': 1.0, 'something': 1.0, 'hand': 1.0, 'buy': 1.0, 'well': 1.0, 'i': 5.0, 'step': 1.0, 'although': 1.0, 'permeate': 2.0, 'based': 1.0, 'good': 1.0, 'and': 5.0, 'time': 1.0, 'tall': 1.0, 'used': 2.0, 'decided': 1.0, 'happy': 1.0, 'too': 1.0, 'one': 1.0, 'definite': 1.0, 'size': 1.0, 'improvement': 1.0, 'not': 2.0, 'pail': 1.0, 'to': 6.0, 'pretty': 1.0, 'bit': 1.0, 'easy': 2.0, 'anyway': 1.0, 'use': 1.0, 'front': 1.0, 'with': 4.0, 'buying': 1.0, 'height': 1.0, 'year': 1.0, 'toddler': 1.0, 'bin': 1.0, 'sometimes': 1.0, 'does': 1.0, 'purchase': 1.0, 'usually': 1.0, 'even': 1.0, 'still': 1.0, 'if': 1.0, 'isn': 1.0, 'very': 2.0, 'at': 2.0, 'is': 1.0, 'containing': 1.0, 'odors': 1.0, 'door': 1.0, 'until': 1.0, 'seems': 1.0, 'fingers': 1.0, 'haven': 1.0, 'had': 1.0, 'issues': 1.0, 'yet': 1.0, 'in': 1.0, 'm': 1.0, 'diaper': 1.0, 'bags': 1.0, 'am': 1.0}
Word element => {'nursery': 1.0, 'what': 1.0, 'stars': 1.0, '5': 1.0, 'give': 1.0, 'overall': 1.0, 'price': 2.0, 'enough': 1.0, 'aren': 1.0, 'sturdy': 1.0, 'solid': 1.0, 'fair': 1.0, 'needed': 1.0, 'last': 1.0, 'expect': 1.0, 'seems': 1.0, 'long': 1.0, 'noticed': 1.0, 'plastic': 1.0, 'even': 1.0, 'thing': 1.0, 'retain': 2.0, 'seem': 1.0, 'odor': 1.0, 'control': 1.0, 'feels': 1.0, 'addition': 1.0, 'soda': 1.0, 'contained': 1.0, 'removed': 1.0, 'room': 1.0, 'baby': 1.0, 'draw': 1.0, 'costly': 1.0, 'doesn': 1.0, 'current': 1.0, 'picky': 1.0, 'very': 1.0, 'being': 2.0, 'set': 1.0, 'its': 1.0, 'supposed': 1.0, 'refills': 1.0, 'taking': 1.0, 'like': 3.0, 'much': 2.0, 'do': 1.0, 'changing': 2.0, 'up': 2.0, 'over': 1.0, 'in': 7.0, 'space': 1.0, 'tuck': 1.0, 'and': 8.0, 'eyesore': 1.0, 'away': 1.0, 'nice': 1.0, 'without': 2.0, 'attention': 1.0, 'of': 1.0, 'the': 16.0, 'but': 4.0, 'size': 3.0, 'compare': 1.0, 'well': 1.0, 'i': 9.0, 'can': 5.0, 'so': 1.0, 'arm': 1.0, 'corner': 1.0, 'trash': 3.0, 'more': 2.0, 'munchkin': 1.0, 'would': 2.0, 'experience': 1.0, 'as': 2.0, 'bags': 1.0, 'slim': 1.0, 'diaper': 3.0, 'an': 1.0, 'fits': 1.0, 'cans': 1.0, 'all': 1.0, 'feel': 1.0, 'any': 2.0, 'a': 10.0, 'fit': 1.0, 't': 3.0, 's': 2.0, 'have': 2.0, 'to': 11.0, 'pail': 6.0, 'with': 2.0, 'nicely': 1.0, 'this': 4.0, 'sets': 1.0, 'it': 15.0, 'or': 2.0, 'think': 1.0, 'made': 1.0, 'which': 1.0, 'side': 2.0, 'good': 3.0, 'though': 1.0, 'lid': 2.0, 'choice': 1.0, 'want': 1.0, 'back': 1.0, 'correlation': 1.0, 'design': 1.0, 'kitchen': 1.0, 'baking': 1.0, 'does': 4.0, 'that': 3.0, 'easily': 3.0, 'because': 2.0, 'itself': 2.0, 'not': 3.0, 'kinda': 1.0, 'my': 1.0, 'me': 1.0, 'lot': 1.0, 'too': 2.0, 'scream': 1.0, 'hammer': 1.0, 'for': 2.0, 'nothing': 1.0, 'out': 1.0, 'help': 1.0, 'convenience': 1.0, 'bit': 2.0, 'easy': 2.0, 'use': 1.0, 'closes': 1.0, 'after': 1.0, 'securely': 1.0, 'are': 2.0, 'first': 1.0, 'lock': 1.0, 'really': 2.0, 'odors': 4.0, 'foot': 1.0, 'table': 2.0, 'pedal': 1.0, 'something': 1.0, 'add': 1.0, 'low': 1.0, 'at': 2.0, 'is': 10.0, 'look': 2.0, 'wouldn': 1.0, 'larger': 1.0, 'then': 1.0, 'awhile': 1.0, 'tacky': 1.0, 'just': 1.0}
Word element => {'pail': 1.0, 'wrong': 1.0, 'go': 1.0, 'can': 1.0, 'remove': 1.0, 'easy': 1.0, 'are': 1.0, 'bags': 1.0, 'smells': 1.0, 'contains': 1.0, 'our': 1.0, 'got': 1.0, 'we': 1.0, 'things': 1.0, 'month': 1.0, 'his': 1.0, 'have': 1.0, 'born': 1.0, 'about': 1.0, 'to': 1.0, 'was': 1.0, 'child': 1.0, 'with': 1.0, 'this': 2.0, 'first': 1.0, 'probably': 1.0, 'and': 3.0, 'a': 1.0, 'since': 1.0, 'ago': 1.0, 'my': 1.0, 'diaper': 1.0, 't': 1.0, 'the': 2.0, 'been': 1.0, 'for': 1.0, 'using': 1.0, 'one': 2.0, 'change': 1.0, 'is': 1.0, 'of': 1.0, 'son': 1.0, 'day': 1.0, 'best': 1.0}
Word element => {'awesome': 1.0, 'away': 1.0, 'the': 1.0, 'also': 1.0, 'hand': 1.0, 'one': 1.0, 'even': 1.0, 'use': 1.0, 'assembly': 1.0, 'smell': 1.0, 'thing': 1.0, 'with': 1.0, 'is': 3.0, 'and': 1.0, 'buy': 1.0, 'there': 1.0, 'keeps': 1.0, 'no': 1.0, 'to': 1.0, 'great': 1.0, 'it': 2.0, 'this': 1.0, 'simply': 1.0}
Word element => {'manner': 1.0, 'designed': 1.0, 'fight': 1.0, 'messed': 1.0, 'gears': 1.0, 'you': 1.0, 'later': 1.0, 'very': 1.0, 'new': 1.0, 'time': 2.0, 'each': 1.0, 'weeks': 1.0, 'would': 1.0, 'two': 1.0, 'i': 6.0, 'placing': 1.0, 'to': 5.0, 'all': 1.0, 'had': 2.0, 'was': 4.0, 'when': 4.0, 'soda': 1.0, 'did': 1.0, 'getting': 1.0, 'that': 4.0, 'over': 1.0, 'and': 4.0, 'too': 1.0, 'fewer': 2.0, '4': 1.0, 'closed': 1.0, 'baking': 1.0, 'issue': 1.0, 'positive': 1.0, 'y': 1.0, 'product': 2.0, 'for': 1.0, 'in': 5.0, 'complete': 2.0, 'break': 1.0, 'wouldn': 1.0, 'twisting': 1.0, 'enough': 1.0, 'loved': 1.0, 'diapers': 3.0, 'first': 1.0, 'it': 9.0, 'release': 1.0, 'perfect': 1.0, 'were': 1.0, 'crap': 2.0, 'full': 1.0, '2': 1.0, 'but': 1.0, 'myself': 1.0, 'container': 1.0, 'my': 1.0, 'lid': 4.0, 'often': 1.0, 'put': 1.0, 'make': 1.0, 'months': 2.0, 'then': 1.0, 'reviews': 1.0, 'holes': 1.0, 'not': 2.0, 'just': 2.0, 'this': 3.0, 'few': 2.0, 'have': 2.0, 'like': 1.0, 'the': 11.0, 'of': 2.0, 'is': 5.0, 'many': 2.0, 'extra': 1.0, 'mi': 1.0, 'close': 2.0, 'found': 1.0, 'however': 1.0, 'course': 1.0, 'puting': 1.0, 'on': 1.0, 'noticed': 1.0, 'holding': 2.0, 'after': 1.0, 'before': 2.0, '5': 1.0, 'noise': 1.0, 'small': 1.0, 'a': 4.0, 'could': 1.0, 's': 1.0, 'since': 1.0, 'fit': 1.0, 't': 1.0, 'twists': 1.0, 'weird': 1.0, 'bag': 3.0, 'diaper': 1.0, 'with': 1.0, 'no': 1.0, 'twins': 2.0, 'warning': 1.0, 'or': 1.0, 'up': 1.0, 'nowhere': 1.0, 'less': 1.0, 'only': 1.0, 'poke': 1.0, 'closing': 1.0}
Word element => {'i': 1.0, 'one': 1.0, 'find': 1.0, 'so': 1.0, 'searched': 1.0, 'long': 1.0, 'could': 1.0, 'piggy': 1.0, 'for': 2.0, 'collector': 1.0, 'birth': 1.0, 'afford': 1.0, 'on': 1.0, 'time': 1.0, 'info': 1.0, 'happy': 1.0, 'bank': 2.0, 'like': 1.0, 'this': 1.0, 'put': 1.0, 'to': 2.0}
Word element => {'looks': 1.0, 'colors': 1.0, 'look': 1.0, 'in': 1.0, 'my': 1.0, 'love': 1.0, 'the': 1.0, 'great': 3.0, 'i': 2.0, 'looking': 1.0, 'and': 2.0, 'son': 1.0, 'it': 1.0, 'this': 2.0, 'with': 1.0, 'brushed': 1.0, 's': 1.0, 'nursery': 1.0, 'lamp': 3.0, 'paired': 1.0, 'will': 1.0, 'shade': 1.0, 'a': 1.0, 'nickle': 1.0, 'base': 1.0}
Word element => {'carryable': 1.0, 'definitely': 1.0, 'duo': 1.0, 'leslie': 1.0, 'jessica': 1.0, 'pickle': 1.0, 'petunia': 1.0, 'be': 1.0, 'ju': 2.0, 'more': 1.0, 'said': 1.0, 'pocket': 1.0, 'were': 1.0, 'chapstick': 1.0, 'wish': 1.0, 'receipts': 1.0, 'currently': 1.0, 'wallet': 1.0, 'shallow': 1.0, '5': 1.0, 'into': 1.0, 'worry': 1.0, 'bigger': 1.0, 'won': 1.0, 'bottles': 2.0, 'brown': 1.0, 'enough': 2.0, '4oz': 1.0, 'big': 1.0, 'bumble': 1.0, 'hidden': 1.0, '4': 1.0, 'order': 1.0, 'prettier': 1.0, 'hands': 1.0, 'probably': 1.0, 'your': 1.0, 'somehow': 1.0, 'not': 1.0, 'itself': 1.0, 'clasp': 2.0, 'use': 2.0, 'two': 1.0, 'little': 2.0, 'charlie': 1.0, 'aesthetically': 1.0, 'stroller': 1.0, 'boxy': 1.0, '3': 1.0, 'these': 1.0, 'packabe': 1.0, 'top': 2.0, 'wipeable': 1.0, 'for': 2.0, 'fabric': 1.0, 'easy': 1.0, 'sanitizer': 1.0, 'touches': 1.0, 'dr': 1.0, 'details': 1.0, 'my': 4.0, 'backpack': 2.0, 'material': 1.0, 'handles': 1.0, 'need': 2.0, 'using': 2.0, 'bag': 10.0, 'so': 2.0, 'clips': 1.0, 'lightweight': 1.0, 'can': 1.0, 'gold': 1.0, 'zipper2': 1.0, 've': 1.0, 'would': 1.0, 'love': 4.0, 'closure': 1.0, 'i': 12.0, 'everything': 1.0, 'anything': 1.0, 'hop': 3.0, 'same': 1.0, 'messenger': 1.0, 'finding': 1.0, 'resistant': 1.0, 'underneath': 1.0, 'design': 1.0, 'lot': 2.0, 'too': 1.0, 'one': 1.0, 'pattern': 1.0, 'pleasing': 1.0, 'and': 8.0, 'skip': 3.0, 'timi': 1.0, 'looked': 1.0, 'hard': 2.0, 'but': 6.0, 'rolled': 1.0, 'lift': 1.0, 'also': 3.0, 'magnetic': 1.0, 'is': 11.0, 'at': 1.0, 'wide': 1.0, 'time': 1.0, 'main': 1.0, 'ton': 1.0, 'gorgeous': 1.0, 'pretty': 1.0, 'to': 6.0, 'other': 3.0, 'all': 1.0, 'fit': 1.0, 't': 4.0, 'they': 1.0, 'metal': 1.0, 'makes': 1.0, 'red': 1.0, 'great': 2.0, '1': 2.0, 'of': 4.0, 'the': 20.0, 'as': 5.0, 'bags': 3.0, 'diaper': 2.0, 'was': 2.0, 'had': 1.0, 'it': 9.0, 'bottle': 1.0, 'this': 7.0, 'lost': 1.0, 'up': 1.0, 'water': 2.0, 'repellent': 1.0, 'when': 2.0, 'empty': 1.0, 'only': 1.0, 'leaking': 1.0, 'which': 1.0, 'young': 1.0, 'deep': 1.0, 'fall': 1.0, 'that': 2.0, 'because': 1.0, 'isn': 1.0, 'don': 2.0, 'something': 1.0, 'add': 1.0, 'weight': 1.0, 'goes': 1.0, 'just': 4.0, 'stuff': 2.0, 'while': 1.0, 'lotions': 1.0, 'holds': 1.0, 'carry': 1.0, 'inside': 2.0, 'you': 1.0, 'things': 2.0, 'about': 2.0, 'first': 1.0, 'are': 3.0, '2': 1.0, 'compartment': 1.0, 'has': 1.0, 'access': 1.0, 'a': 9.0, 'small': 2.0, 'have': 2.0, 'out': 1.0, 'hold': 1.0, 'keeping': 1.0, 's': 1.0, 'preferred': 1.0, 'there': 1.0, 'front': 1.0, 'with': 1.0, 'pockets': 3.0, 'seat': 1.0, 'in': 4.0, 'than': 2.0, 'tipped': 1.0, 'car': 1.0}
Word element => {'price': 1.0, 'either': 1.0, 'for': 1.0, 'size': 1.0, 'overall': 1.0, 'would': 1.0, 'convenience': 1.0, 'add': 1.0, 'compartments': 1.0, 'perfect': 1.0, 'soiled': 1.0, 'if': 1.0, 'cleaned': 1.0, 'easily': 1.0, 'well': 1.0, 'the': 3.0, 'downside': 1.0, 'my': 2.0, 'design': 1.0, 'wife': 2.0, 'bag': 1.0, 'constructed': 1.0, 'or': 1.0, 'loves': 1.0, 'only': 1.0, 'this': 2.0, 'it': 1.0, 'synthetic': 1.0, 'wiped': 1.0, 'and': 2.0, 'i': 1.0, 'cloth': 1.0, 'is': 4.0, 'type': 1.0, 'outside': 1.0, 'its': 1.0, 'to': 1.0, 'material': 2.0, 'be': 2.0, 'but': 1.0, 'some': 1.0, 'appears': 1.0, 'of': 2.0, 'that': 1.0}
Word element => {'bc': 1.0, 'purchase': 1.0, 'either': 1.0, 'not': 1.0, 'carrying': 1.0, 'mind': 1.0, 'won': 1.0, 'husband': 1.0, 'happy': 1.0, 'my': 1.0, 'quality': 1.0, 'so': 3.0, 'size': 1.0, 'has': 2.0, 'of': 1.0, 'and': 4.0, 'i': 1.0, 'pockets': 1.0, 'perfect': 2.0, 'bag': 1.0, 'with': 1.0, 'it': 5.0, 'this': 2.0, 't': 1.0, 'great': 1.0, 'the': 1.0, 'diaper': 1.0, 'for': 1.0, 'is': 3.0, 'many': 1.0, 'stuff': 1.0, 'convenient': 1.0, 'cute': 1.0, 'girly': 1.0, 's': 1.0, 'plenty': 1.0, 'space': 1.0, 'baby': 1.0, 'm': 1.0, 'mom': 1.0, 'classy': 1.0}
Word element => {'recommend': 1.0, 'fit': 1.0, 'can': 1.0, 'but': 1.0, 'be': 1.0, 'would': 2.0, 'thought': 1.0, 'very': 1.0, 'big': 1.0, 'as': 2.0, 'quite': 1.0, 'not': 1.0, 'need': 1.0, 'stylish': 1.0, 's': 1.0, 'you': 1.0, 'hold': 1.0, 'all': 1.0, 'born': 1.0, 'to': 1.0, 'was': 1.0, 'and': 3.0, 'baby': 1.0, 'my': 1.0, 'the': 2.0, 'bag': 1.0, 'got': 1.0, 'essentials': 1.0, 'everything': 1.0, 'after': 1.0, 'so': 1.0, 'pockets': 1.0, 'i': 4.0, 'has': 1.0, 'of': 1.0, 'love': 1.0, 'this': 1.0, 'it': 6.0, 'pattern': 1.0, 'second': 1.0, 'really': 1.0, 'is': 2.0, 'cute': 1.0, 'tons': 1.0}
Word element => {'just': 1.0, 'one': 1.0, 'of': 1.0, 'out': 1.0, 'stands': 1.0, 'falling': 2.0, 'with': 1.0, 'things': 1.0, 'problem': 1.0, 'over': 1.0, 'up': 1.0, 'don': 1.0, 'reason': 1.0, 'mail': 1.0, 'realize': 1.0, 'opening': 1.0, 'main': 1.0, 'keys': 1.0, 'fine': 1.0, 'wallet': 1.0, 'compartments': 1.0, 'have': 1.0, 'zipper': 2.0, 'bag': 3.0, 'still': 1.0, 'padding': 1.0, 'top': 1.0, 'needed': 1.0, 'everything': 2.0, 'get': 2.0, 'purse': 2.0, 'good': 1.0, 'but': 3.0, 'will': 1.0, 'didn': 2.0, 'stripes': 1.0, 'two': 1.0, 'i': 9.0, 'heavy': 1.0, 'diaper': 2.0, 'think': 1.0, 'make': 1.0, 'perfect': 1.0, 'this': 2.0, 'it': 3.0, 'a': 5.0, 't': 4.0, 'could': 1.0, 'use': 1.0, 'for': 3.0, 'love': 2.0, 'would': 1.0, 'some': 2.0, 'others': 1.0, 'strap': 1.0, 'normal': 1.0, 'camera': 1.0, 'in': 2.0, 'did': 1.0, 'couldn': 1.0, 'andmore': 1.0, 'without': 1.0, 'the': 7.0, 'believe': 1.0, 'received': 1.0, 'how': 1.0, 'its': 1.0, 'much': 1.0, 'like': 2.0, 'which': 2.0, 'hold': 1.0, 'not': 2.0, 'to': 1.0, 'as': 2.0, 'great': 2.0, 'feel': 1.0, 'big': 1.0, 'french': 1.0, 'compared': 1.0, 'bags': 1.0, 'till': 1.0, 'is': 2.0, 'and': 4.0, 'too': 1.0}
Word element => {'get': 1.0, 'able': 1.0, 'how': 1.0, 'am': 1.0, 'you': 1.0, 'tell': 1.0, 'works': 1.0, 'wide': 1.0, 'that': 2.0, 'me': 1.0, 'not': 1.0, 'deep': 1.0, 'very': 1.0, 'it': 1.0, 'person': 1.0, 'well': 1.0, 'fast': 1.0, 'super': 1.0, 'shipping': 1.0, 'happy': 1.0, 'immediately': 1.0, 'ordered': 1.0, 'pb': 1.0, 'cancelled': 1.0, 'everywhere': 1.0, 'low': 1.0, 'high': 1.0, 'placed': 1.0, 'finally': 1.0, 'an': 1.0, 'back': 1.0, 'months': 1.0, 'one': 2.0, 'i': 9.0, 'this': 6.0, 'have': 2.0, 'stock': 1.0, 'the': 5.0, 'researched': 1.0, 'last': 1.0, 'is': 3.0, 'pottery': 1.0, 'can': 1.0, 'but': 3.0, '2': 1.0, 'most': 1.0, 'others': 1.0, 'already': 1.0, 'had': 1.0, 'bag': 2.0, 'wanted': 1.0, 'was': 4.0, 'bags': 1.0, 'print': 1.0, 'duo': 1.0, 'searched': 1.0, 'diaper': 1.0, 'chevron': 1.0, 'and': 5.0, 'sold': 1.0, 'out': 1.0, 'barn': 1.0, 'for': 4.0, 'actually': 1.0, 'order': 2.0, 'at': 1.0, 'once': 1.0, 'skip': 1.0, 'hop': 1.0, 'in': 3.0, 'to': 1.0, 'gorgeous': 1.0, 'as': 2.0, 't': 1.0, 'a': 1.0, 'alternative': 1.0, 'saw': 1.0}
Word element => {'awesome': 1.0, 'even': 1.0, 'cross': 1.0, 'where': 1.0, 'every': 1.0, 'leak': 1.0, 'bag': 3.0, 'good': 1.0, 'in': 1.0, 'trendy': 1.0, 'more': 1.0, 'the': 2.0, 'quality': 1.0, 'and': 3.0, 'like': 1.0, 'i': 1.0, 'pockets': 1.0, 'very': 2.0, 'as': 1.0, 'this': 1.0, 'it': 2.0, 'helpful': 1.0, 'is': 5.0, 'side': 1.0, 'love': 3.0, 'for': 1.0, 'which': 2.0, 'milk': 2.0, 'bottles': 1.0, 'sometime': 1.0, 'they': 1.0}
Word element => {'compartments': 1.0, 'cuteness': 1.0, 'of': 1.0, 'again': 1.0, 'and': 1.0, 'closed': 1.0, 'overflowing': 1.0, 'my': 1.0, 'enough': 1.0, 'magnets': 1.0, 'open': 1.0, 'hangs': 1.0, 'because': 2.0, 'usually': 1.0, 'top': 1.0, 'strong': 1.0, 'on': 1.0, 'zipped': 1.0, 'would': 2.0, 'larger': 1.0, 'slightly': 1.0, 'that': 1.0, 'wipe': 1.0, 'now': 1.0, 'haul': 1.0, 'i': 6.0, 'definitely': 1.0, 'buy': 2.0, 'means': 1.0, 'keep': 1.0, 'adorable': 1.0, 'why': 1.0, 'big': 1.0, 'overall': 1.0, 'mom': 1.0, 'diaper': 3.0, 'the': 3.0, 'if': 1.0, 'downable': 1.0, 'is': 2.0, 'people': 1.0, 'this': 1.0, 'it': 4.0, 'with': 1.0, 'first': 1.0, 'wanted': 1.0, 'bag': 4.0, 'aren': 1.0, 'but': 2.0, 'plastic': 1.0, 'huge': 1.0, 'to': 2.0, 'as': 2.0, 'any': 1.0, 'by': 1.0, 'just': 1.0, 'pictured': 1.0, 'material': 2.0, 'love': 2.0, 'time': 1.0, 'smaller': 1.0, 'so': 1.0, 'didn': 1.0, 'have': 1.0, 'not': 1.0, 'me': 1.0, 'understand': 1.0, 'bags': 1.0, 'a': 4.0, 's': 1.0, 't': 2.0, 'could': 1.0, 'use': 1.0}
Word element => {'bigger': 1.0, 'out': 1.0, 'bags': 1.0, 'reason': 1.0, 'are': 1.0, 'i': 1.0, 'spring': 1.0, 'summer': 1.0, 'is': 1.0, 'for': 1.0, 'only': 1.0, 'it': 1.0, 'bag': 1.0, 'the': 1.0, 'diaper': 1.0, 'great': 1.0, 't': 1.0, 'other': 1.0, 'why': 1.0, 'adorable': 1.0, 'didn': 1.0, 'give': 1.0, '5': 1.0, 'stars': 1.0, 'because': 1.0, 'there': 2.0}
Word element => {'list': 1.0, 'off': 1.0, 'when': 1.0, 'day': 1.0, 'finding': 1.0, 'before': 1.0, 'weeks': 1.0, 'watched': 1.0, 'item': 1.0, 'on': 1.0, 'over': 2.0, 'loosen': 1.0, 'these': 1.0, 'handed': 1.0, 'hard': 1.0, 'they': 1.0, 'zippers': 1.0, 'although': 1.0, 'bottles': 1.0, 'for': 1.0, 'fit': 1.0, 'pockets': 1.0, 'side': 1.0, 'dollars': 1.0, 'much': 1.0, 'hope': 1.0, 'by': 1.0, 'not': 1.0, 'than': 1.0, 'was': 3.0, 'that': 2.0, 'to': 2.0, 'our': 1.0, 'like': 2.0, 'regular': 1.0, 'in': 1.0, 'husband': 1.0, 'deluxe': 1.0, 'use': 1.0, 'time': 1.0, 'smaller': 1.0, 'so': 1.0, 'price': 2.0, 'both': 1.0, 'fun': 1.0, 'first': 1.0, 'with': 1.0, 'this': 2.0, 'phillips': 1.0, 'and': 2.0, 'get': 1.0, 'earlier': 1.0, 'of': 2.0, 'avent': 1.0, 'my': 2.0, 'watch': 1.0, 'black': 1.0, 'the': 5.0, 'but': 1.0, '2': 1.0, 'diaper': 1.0, 'hop': 2.0, 'could': 1.0, 'a': 3.0, 'we': 1.0, 'are': 1.0, 'zip': 2.0, 'reviewers': 1.0, 'twenty': 1.0, 'two': 1.0, 'i': 6.0, 'one': 2.0, 'bought': 1.0, 'baby': 1.0, 'it': 3.0, 'felt': 1.0, 'more': 1.0, 'is': 1.0, 'something': 1.0, 'each': 1.0, 'unzip': 1.0, 'needed': 1.0, 'own': 1.0, 'bag': 2.0, 'duo': 2.0, 'ready': 1.0, 'little': 1.0, 'skip': 2.0, 'slightly': 1.0}
Word element => {'months': 1.0, 'in': 1.0, 'a': 1.0, 'see': 1.0, 'lets': 1.0, 'wear': 1.0, 'stand': 1.0, 'can': 1.0, 'like': 1.0, 'material': 1.0, 'the': 4.0, 'my': 1.0, 'necessities': 1.0, 'that': 1.0, 'up': 1.0, 'appears': 1.0, 'there': 1.0, 'she': 1.0, 'tear': 1.0, 'bag': 2.0, 'it': 1.0, 'this': 1.0, 'loves': 1.0, 'against': 1.0, 'stated': 1.0, 'pictures': 1.0, 'you': 1.0, 'wife': 1.0, 'for': 1.0, 'if': 1.0, 'justice': 1.0, 'ask': 1.0, 'is': 1.0, 'couple': 1.0, 'and': 2.0, 'do': 1.0, 'me': 1.0, 'feels': 1.0, 'enough': 1.0, 'some': 1.0, 'no': 1.0, 'space': 1.0}
Word element => {'weather': 1.0, 'warmer': 1.0, 'great': 1.0, 'is': 1.0, 'like': 1.0, 'look': 1.0, 'makes': 1.0, 'style': 1.0, 'pockets': 1.0, 'thanks': 1.0, 'organized': 1.0, 'items': 1.0, 'tons': 1.0, 'day': 1.0, 'other': 1.0, 'with': 1.0, 'keeps': 1.0, 'saw': 1.0, 'favorite': 1.0, 'fabric': 1.0, 'her': 2.0, 'said': 1.0, 'it': 5.0, 'few': 1.0, 'friend': 1.0, 'fits': 1.0, 'my': 1.0, 'long': 1.0, 'only': 1.0, 'come': 2.0, 'this': 3.0, 'very': 1.0, 'who': 1.0, 'since': 1.0, 's': 1.0, 'ago': 1.0, 'a': 8.0, 'from': 1.0, 'bags': 1.0, 'children': 1.0, 'gift': 2.0, 'was': 2.0, 'had': 1.0, 'high': 1.0, 'were': 1.0, 'way': 1.0, 'gave': 1.0, 'mom': 1.0, 'the': 6.0, 'i': 4.0, 'small': 1.0, 'have': 2.0, 'years': 1.0, 'lovely': 1.0, 'nothing': 1.0, 'sizes': 1.0, 'skip': 3.0, 'hop': 3.0, 'for': 2.0, 'one': 1.0, 'but': 1.0, 'baby': 1.0, 'them': 2.0, 'quality': 1.0, 'all': 1.0, 'to': 4.0, 'patterns': 1.0, 'pattern': 1.0, 'and': 5.0, 'done': 1.0, 'short': 1.0, 'bag': 3.0, 'diaper': 2.0, 'changed': 1.0, 'clearly': 1.0, 'of': 2.0, 'well': 1.0, 'has': 1.0, 'gifted': 1.0, 'expect': 1.0}
Word element => {'wish': 1.0, 'clean': 1.0, 'wipe': 1.0, 'canvas': 1.0, 'chic': 1.0, 'feminine': 1.0, 'needs': 1.0, 'mommy': 1.0, 'baby': 1.0, 'poly': 1.0, 'fit': 1.0, 'several': 1.0, 'constructed': 1.0, 'size': 1.0, 'good': 1.0, 'side': 1.0, 'back': 1.0, 'review': 1.0, 'will': 1.0, 'reply': 1.0, 'receive': 1.0, 'yet': 1.0, 'luxe': 1.0, 'something': 1.0, 'address': 1.0, 'need': 1.0, 'experience': 1.0, 'after': 1.0, 'company': 1.0, 'wrote': 1.0, 'even': 1.0, 'so': 1.0, 'more': 1.0, 'considering': 1.0, 'sells': 1.0, 'would': 1.0, 'in': 1.0, 'item': 3.0, 'see': 1.0, 'seems': 1.0, 'for': 4.0, 'like': 2.0, 'cheap': 1.0, 'just': 4.0, 'as': 2.0, 'hurry': 1.0, 'when': 3.0, 'depth': 1.0, 'am': 1.0, 'you': 1.0, 'hanging': 1.0, 'threads': 1.0, 'well': 1.0, 'i': 10.0, 'material': 1.0, 'handles': 1.0, 'original': 1.0, 'aghast': 1.0, 'than': 1.0, 'lose': 1.0, 'and': 11.0, 'all': 2.0, 'an': 2.0, 'started': 1.0, 'leather': 1.0, 'with': 1.0, 'another': 1.0, 'place': 1.0, 'uneven': 1.0, 'not': 1.0, 'purchased': 1.0, 'pretty': 1.0, 'to': 8.0, 'hoping': 1.0, 'was': 4.0, 'fan': 1.0, 'must': 1.0, 'roomy': 1.0, 'have': 2.0, 'decided': 1.0, 'range': 1.0, 'very': 2.0, 'from': 3.0, 'collection': 1.0, 'looked': 1.0, 'initially': 1.0, 'compartments': 1.0, 'because': 2.0, 'that': 2.0, 'over': 1.0, 'up': 1.0, 'update': 1.0, 'on': 2.0, 'there': 2.0, 'the': 13.0, 'of': 4.0, 'return': 1.0, 'stitching': 1.0, 'received': 2.0, 'this': 6.0, 'it': 14.0, 'my': 1.0, 'looks': 2.0, 'inspect': 1.0, 'together': 1.0, 'were': 1.0, 'trims': 1.0, 'a': 7.0, 'skip': 1.0, 'amazon': 1.0, 'never': 1.0, 'disappoints': 1.0, 'ordered': 1.0, 'here': 1.0, 'be': 1.0, 'they': 3.0, 'carrying': 1.0, 'decent': 1.0, 'price': 2.0, 'products': 1.0, 'got': 2.0, 'their': 1.0, 'quality': 3.0, 'previous': 1.0, 'today': 1.0, 'problem': 1.0, 'though': 2.0, 'lovely': 1.0, 'issues': 1.0, 'is': 7.0, 'do': 1.0, 'put': 1.0, 'much': 3.0, 'better': 3.0, 'bag': 2.0, 'looking': 1.0, 'easy': 1.0, 'leaves': 1.0, 'pattern': 1.0, 'one': 2.0, 'lot': 1.0, 'hop': 1.0, 'still': 1.0, 'if': 2.0, 'holding': 1.0, 'online': 1.0, 'name': 1.0, 'brand': 1.0, 'nice': 1.0, 'distance': 1.0, 'write': 1.0, 'desired': 1.0, 'but': 1.0, 'closely': 1.0, 'plus': 1.0, 'bad': 1.0, 'are': 1.0, 'has': 1.0, 'workmanship': 1.0}
Word element => {'one': 1.0, 'mommy': 1.0, 'things': 1.0, 's': 1.0, 'my': 1.0, 'be': 1.0, 'will': 1.0, 'price': 1.0, 'roomy': 1.0, 'stylish': 1.0, 'and': 4.0, '27th': 1.0, 'arrived': 1.0, 'should': 1.0, '23rd': 1.0, 'is': 2.0, 'around': 2.0, 'which': 1.0, 'saw': 1.0, 'this': 3.0, 'with': 1.0, 'come': 1.0, 'it': 1.0, 've': 2.0, 'in': 3.0, 'after': 1.0, 'so': 1.0, 'son': 1.0, 'shipping': 1.0, 'day': 2.0, 'great': 1.0, '24th': 1.0, 'back': 1.0, 'weeks': 1.0, 'i': 4.0, 'the': 5.0, 'but': 1.0, '2': 1.0, 'reasonable': 1.0, 'christmas': 1.0, 'surprised': 1.0, 'ordered': 2.0, 'offer': 1.0, '1pm': 2.0, 'daddy': 1.0, 'of': 1.0, 'put': 1.0, 'on': 2.0, 'instead': 1.0, 'came': 1.0, 'bag': 2.0, 'right': 2.0, 'to': 2.0, 'happy': 2.0, 'next': 1.0, 'been': 1.0, 'for': 2.0, 'waiting': 1.0, 'stock': 2.0, 'when': 1.0, 'was': 1.0, 'beautiful': 1.0}
Word element => {'worth': 1.0, 'but': 1.0, 'little': 1.0, 'handle': 1.0, 'love': 1.0, 'looking': 1.0, 'neutral': 1.0, 'clean': 1.0, 'everything': 1.0, 'pricey': 1.0, 'that': 1.0, 'pleased': 1.0, 'well': 1.0, 'a': 2.0, 'is': 1.0, 'constructed': 1.0, 'bag': 1.0, 'the': 1.0, 'great': 1.0, 'with': 2.0, 'it': 2.0, 'and': 2.0, 'very': 1.0, 'wipe': 1.0, 'goes': 1.0, 'requested': 1.0, 'fabric': 1.0, 'color': 1.0, 'my': 1.0, 'daughter': 1.0}
Word element => {'5': 1.0, 'of': 1.0, 'reviews': 1.0, 'out': 1.0, 'amazing': 1.0, 'what': 1.0, 'on': 2.0, 'glides': 1.0, 'ride': 1.0, 'goes': 1.0, 'smooth': 1.0, 'enjoy': 1.0, 'in': 1.0, 'them': 1.0, 'scheck': 1.0, 'baby': 1.0, 'so': 1.0, 'wood': 1.0, 'handles': 1.0, 'right': 1.0, 'deal': 1.0, 'the': 2.0, 'just': 3.0, 'storage': 1.0, 'such': 2.0, 'nice': 1.0, 'great': 2.0, 'it': 2.0, 'research': 1.0, 'expected': 1.0, 'has': 1.0, 'this': 4.0, 'keeper': 1.0, 'stroller': 3.0, 'more': 1.0, 'is': 4.0, 'everything': 1.0, 'small': 1.0, 'stars': 1.0, 'love': 1.0, 'chips': 1.0, 'for': 3.0, 'know': 1.0, 'not': 1.0, 'very': 3.0, 'canopy': 1.0, 'extensive': 1.0, 'low': 1.0, 'rare': 2.0, 'was': 1.0, 'one': 1.0, 'selling': 1.0, 'how': 1.0, 'did': 1.0, 'looking': 2.0, 'size': 2.0, 'most': 1.0, 'but': 1.0, 'can': 1.0, 'price': 1.0, 'to': 1.0, 'all': 1.0, 'adjustable': 1.0, 'other': 2.0, 'i': 5.0, 'feature': 2.0, 'sites': 2.0, 'starting': 1.0, 'over': 1.0, 'up': 1.0, 'are': 2.0, 'fairly': 1.0, 'a': 2.0, 'pavement': 1.0, 'convenient': 1.0, 'amazon': 1.0, 'front': 1.0, 'do': 1.0, '250': 1.0, 'wheel': 1.0, 'gravel': 1.0, 'form': 1.0, 'be': 2.0, 'also': 1.0, 'adjusted': 1.0}
Word element => {'again': 1.0, 'them': 1.0, 'will': 1.0, 'shop': 1.0, 'recommend': 1.0, 'definitely': 2.0, 'would': 1.0, 'i': 2.0, 'her': 1.0, 'girl': 1.0, 'birthday': 1.0, 'my': 1.0, 'the': 1.0, 'be': 1.0, 'product': 1.0, 'from': 1.0, 'adorable': 1.0, 'for': 1.0, 'bows': 1.0, 's': 1.0, 'anyone': 1.0, 'perfect': 1.0, 'just': 1.0, 'buying': 1.0, 'to': 1.0, 'was': 1.0, 'fit': 1.0, 'baby': 1.0, 'cupcake': 1.0, 'were': 1.0, 'first': 1.0, 'this': 2.0, 'it': 1.0, 'frilly': 1.0, 'and': 2.0, 'perfectly': 1.0, 'on': 1.0}
Word element => {'recommend': 1.0, 'for': 1.0, 'great': 1.0, 'my': 1.0, 'made': 1.0, 'fits': 1.0, '5': 1.0, 'old': 1.0, 'to': 1.0, 'any': 1.0, 'highly': 1.0, 'looking': 1.0, 'with': 1.0, 'room': 1.0, 'some': 1.0, 'grow': 1.0, 'well': 1.0, 'a': 1.0, 'princess': 1.0, 'year': 1.0, 'adorable': 1.0, 'very': 1.0, 'must': 1.0, 'have': 1.0}
Word element => {'pink': 1.0, 'baby': 1.0, 'pretty': 1.0, 'very': 1.0, 'picture': 1.0, 'the': 1.0, 'just': 1.0, 'color': 1.0, 'looks': 1.0}
Word element => {'purchase': 1.0, 'fun': 1.0, 'a': 1.0, 'of': 1.0, 'really': 1.0, 'just': 1.0, 'diapers': 1.0, 'i': 1.0, 'legwarmers': 1.0, 'easier': 1.0, 'enjoy': 1.0, 'they': 2.0, 'are': 1.0, 'make': 2.0, 'so': 1.0, 'changing': 1.0, 'to': 1.0, 'kind': 1.0, 'much': 1.0}
Word element => {'person': 1.0, 'right': 1.0, 'for': 1.0, 'perfect': 1.0, 'be': 1.0, 'but': 1.0, 'disappointed': 1.0, 'd': 1.0, 'm': 1.0, 'stomach': 1.0, 'or': 1.0, 'side': 1.0, 'her': 1.0, 'loved': 1.0, 'every': 1.0, 'added': 1.0, 'she': 6.0, 'it': 3.0, 'first': 1.0, 'with': 1.0, 'great': 1.0, 'the': 4.0, 'tried': 1.0, 'wearing': 1.0, 'soaked': 2.0, 'i': 3.0, 'they': 2.0, 'time': 1.0, 'leak': 1.0, 'up': 1.0, 'is': 2.0, 'my': 1.0, 'five': 1.0, 'them': 1.0, 'night': 2.0, 'wore': 1.0, 'no': 1.0, 'about': 1.0, 'other': 1.0, 'year': 1.0, 'old': 1.0, 'problems': 1.0, 'sleeping': 1.0, 'daughter': 1.0, 'at': 1.0, 'who': 1.0, 'still': 1.0, 'position': 1.0, 'wets': 1.0, 've': 1.0, 'in': 2.0, 'we': 1.0, 's': 4.0, 'design': 1.0, 'woken': 1.0, 'even': 1.0, 'layers': 1.0, 'on': 2.0, 'think': 2.0, 'all': 1.0, 'if': 1.0}
Word element => {'again': 1.0, 'ever': 1.0, 'continue': 1.0, 'will': 1.0, 'bedwetting': 1.0, 'potty': 1.0, 'at': 1.0, 'still': 1.0, 'children': 1.0, '3': 1.0, 'styles': 1.0, 'have': 1.0, 'wonderful': 1.0, 'use': 2.0, 'them': 1.0, 'not': 1.0, 'bleach': 1.0, 'sun': 1.0, 'out': 1.0, 'best': 1.0, 'dry': 1.0, 'odors': 1.0, 'overnight': 1.0, 'multiple': 1.0, 'neutralize': 1.0, 'vinegar': 1.0, 'of': 2.0, 'cup': 1.0, 'buying': 1.0, 'with': 2.0, 'enjoy': 1.0, 'water': 1.0, 'this': 2.0, 'soft': 1.0, 'product': 2.0, 'love': 2.0, 'for': 4.0, 'solution': 1.0, 'recommend': 1.0, 'measuring': 1.0, 'old': 1.0, '5': 1.0, 'outdoors': 1.0, '4': 1.0, 'i': 4.0, 'disposables': 1.0, 'undies': 1.0, 'inside': 1.0, 'especially': 1.0, 'hang': 1.0, 'bought': 1.0, 'borax': 1.0, 'yr': 1.0, 'made': 1.0, 'are': 1.0, 'my': 2.0, 'is': 1.0, 'reccomend': 1.0, 'they': 1.0, 'these': 3.0, 'the': 3.0, 'as': 1.0, 'to': 5.0, 'purchased': 1.0, 'had': 1.0, 'leaks': 1.0, 'thighs': 1.0, 'durable': 1.0, 'and': 7.0, 'we': 2.0, 'a': 3.0, 'go': 1.0, 'accurately': 1.0, 'super': 1.0, 've': 1.0, 'in': 2.0, 'no': 1.0, 'really': 1.0, 'highly': 1.0, 'stages': 1.0, 'training': 1.0, 'daughters': 1.0, 'sizing': 1.0, 'if': 1.0, 'unsure': 1.0, 'sizes': 1.0, 'urine': 1.0, 'size': 1.0, 'pullups': 1.0, 'child': 1.0, 'nighttime': 1.0, 'up': 1.0, 'washing': 1.0, 'well': 1.0, 'hot': 1.0}
Word element => {'choose': 1.0, 'have': 1.0, 'one': 1.0, 'getting': 1.0, 'made': 1.0, 'defects': 1.0, 'to': 1.0, 'waist': 1.0, 'i': 3.0, 'buy': 2.0, 'money': 2.0, 'and': 2.0, 'don': 1.0, 'up': 1.0, 'very': 1.0, 'big': 1.0, 'would': 1.0, 'not': 2.0, 'sad': 1.0, 'smeared': 1.0, 'stitching': 1.0, 'messed': 1.0, 'cosmetic': 1.0, 'numerous': 1.0, 'free': 1.0, 'your': 1.0, 'on': 1.0, 'it': 1.0, 'missing': 1.0, 'item': 1.0, 'mark': 1.0, 'cheaply': 1.0, 'print': 1.0, 'worth': 1.0, 'bcuz': 2.0, 'only': 1.0, 'its': 2.0, 'pretty': 1.0, 'if': 1.0, 'design': 1.0, 'this': 2.0, 'dont': 1.0, 'bag': 2.0, 'luckly': 1.0, 'a': 1.0, 't': 1.0, 'my': 2.0, 'star': 1.0, 'back': 1.0, 'words': 1.0, 'got': 2.0, 'even': 1.0, 'using': 1.0, 'u': 1.0}
Word element => {'too': 1.0, 's': 1.0, '10': 1.0, 'him': 1.0, 'weight': 1.0, 'his': 1.0, 'and': 1.0, '8m': 1.0, 'have': 1.0, 'thigh': 1.0, 'around': 1.0, 'should': 1.0, 'normally': 1.0, 'loose': 1.0, 'tight': 1.0, 'for': 2.0, 'one': 1.0, 'but': 1.0, 'side': 1.0, 'is': 4.0, 'big': 1.0, 'it': 1.0, 'this': 1.0, 'only': 1.0, 'he': 1.0, 'small': 1.0, 'my': 1.0, 'size': 1.0, 'baby': 2.0, 'has': 1.0, 'boy': 1.0, 'not': 1.0, 'percentile': 1.0, 'a': 1.0, 'almost': 1.0}
Word element => {'one': 1.0, 'a': 1.0, 'do': 1.0, 'too': 1.0, 'it': 1.0, 'loves': 1.0, 'perfect': 1.0, 'yourself': 1.0, 'support': 1.0, 'more': 1.0, 'nursing': 1.0, 'and': 2.0, 'baby': 1.0, 'for': 1.0, 'get': 1.0, 'makes': 1.0, 'everything': 1.0, 'comfortable': 1.0, 'favor': 1.0, 'enjoyable': 1.0}
Word element => {'belt': 1.0, 'if': 1.0, 'out': 1.0, 'd': 1.0, 'so': 1.0, 'bad': 1.0, 'seat': 1.0, 'not': 1.0, 's': 1.0, 'our': 1.0, 'son': 1.0, 'looks': 1.0, 'side': 1.0, 'left': 1.0, 'is': 1.0, 'for': 2.0, 'wasn': 1.0, 'like': 1.0, 'loweron': 1.0, 'got': 1.0, 'swing': 1.0, 'fall': 1.0, 'we': 1.0, 't': 1.0, 'the': 4.0, 'baby': 1.0, 'price': 1.0, 'but': 1.0, 'holds': 1.0, 'there': 1.0, 'up': 1.0, 'lbs': 1.0, 'and': 1.0, 'to': 1.0, 'he': 1.0, 'it': 3.0, 'this': 1.0, 'only': 1.0, '19': 1.0}
Word element => {'green': 1.0, 'just': 1.0, 'vanilla': 1.0, 'with': 1.0, 'and': 1.0, 'only': 1.0, 'came': 1.0, 'kids': 1.0, 'these': 1.0, 'love': 1.0, 'my': 1.0, 'colored': 1.0, 'the': 3.0, 'not': 1.0, 'ones': 2.0, 'paci': 1.0, 'scent': 1.0, 's': 1.0, 'wish': 1.0}
Word element => {'nipple': 1.0, 'ever': 1.0, 'have': 2.0, 'baby': 1.0, 'so': 2.0, 'far': 1.0, '3': 2.0, '0': 2.0, '30': 1.0, 'paid': 1.0, 'these': 3.0, 'ones': 1.0, 'and': 2.0, 'each': 1.0, 'likes': 1.0, 'expected': 1.0, 'version': 1.0, 'month': 1.0, 'base': 1.0, 'another': 1.0, 'my': 1.0, 'for': 2.0, 'the': 2.0, 'nuks': 1.0, 'of': 1.0, 'better': 1.0, 'i': 2.0, 'than': 1.0, '2': 1.0, 'but': 2.0, 'will': 1.0, 'that': 1.0, 'is': 1.0, 'as': 3.0, 'he': 1.0, 'those': 1.0, 'not': 1.0, 'be': 1.0, 'months': 1.0, 'seem': 1.0, 'exactly': 1.0, 'same': 1.0, 'they': 1.0, 'slightly': 2.0, 'a': 1.0, 'mo': 1.0, 'week': 1.0, 'thicker': 2.0, 'round': 1.0}
Word element => {'getting': 1.0, 'babies': 1.0, 'safer': 1.0, 'though': 1.0, 'great': 1.0, 'will': 1.0, 'over': 1.0, 'her': 1.0, 'switch': 1.0, 'trying': 1.0, 'of': 1.0, 'months': 1.0, 'about': 1.0, 'she': 1.0, 'month': 1.0, '0': 1.0, 'from': 1.0, 'they': 1.0, 'are': 2.0, 'just': 1.0, 'because': 1.0, 'but': 1.0, 'you': 3.0, 'ones': 1.0, 'switching': 1.0, 'these': 2.0, 'reliable': 1.0, 'baby': 2.0, 'them': 5.0, 'in': 2.0, 'as': 1.0, 'to': 7.0, 'buying': 1.0, 'now': 1.0, 'store': 1.0, 'your': 1.0, 'strong': 1.0, '3': 2.0, 'teeth': 1.0, 'refused': 1.0, 'and': 3.0, 'get': 1.0, 'thicker': 1.0, 'might': 1.0, 'a': 2.0, 'harder': 1.0, 'after': 1.0, 'same': 1.0, 'if': 2.0, 'want': 1.0, 'use': 2.0, 'used': 1.0, 'before': 1.0, 'long': 1.0, 'time': 1.0, 'smaller': 1.0, 'my': 1.0, 'much': 1.0, 'try': 1.0, 'pack': 1.0, 'buy': 1.0, 'bulk': 1.0, 'product': 1.0, 'for': 2.0}
Word element => {'her': 1.0, 'loves': 1.0, 'daughter': 1.0, 'to': 2.0, 'hard': 1.0, 's': 2.0, 'my': 1.0, 'avent': 1.0, 'we': 2.0, 'philips': 1.0, 'love': 1.0, 'are': 2.0, 'find': 1.0, 'binky': 2.0, 'they': 1.0, 'great': 1.0, 'the': 1.0, 'these': 1.0, 'and': 1.0, 'as': 1.0, 'around': 1.0, 'keep': 1.0, 'them': 1.0, 'have': 1.0, 'all': 1.0, 'over': 1.0, 'house': 1.0}
Word element => {'suck': 1.0, 'of': 1.0, 'not': 1.0, 'because': 1.0, 'and': 1.0, 'on': 1.0, 'months': 1.0, '3': 1.0, 'in': 1.0, 'soothie': 1.0, 'than': 1.0, 'my': 1.0, 'are': 1.0, 'son': 1.0, 'he': 1.0, 'it': 1.0, 'this': 1.0, 'only': 1.0, 'but': 1.0, 'will': 2.0, 'all': 1.0, 'have': 1.0, 'pack': 1.0, 'use': 1.0, 'purchased': 1.0, 'much': 1.0, 'stiff': 1.0, 'the': 3.0, 'more': 1.0, 'ones': 1.0, 'that': 1.0, 'we': 1.0, 'them': 1.0, 'pacifiers': 2.0, 'locally': 1.0}
Word element => {'nostrils': 1.0, 'his': 1.0, 'they': 1.0, 'with': 1.0, 'to': 1.0, 'kind': 1.0, 'my': 1.0, 'brocking': 1.0, 'not': 1.0, 'able': 1.0, 'seemed': 1.0, 'breath': 1.0, 'baby': 1.0, 'oversized': 1.0, 'pacifiers': 1.0, 'where': 1.0, 'when': 1.0, 'and': 1.0, 'be': 1.0, 'bought': 1.0, 'a': 1.0, 'different': 1.0, 'weren': 1.0, 'these': 1.0, 'the': 1.0, 't': 1.0}
Word element => {'not': 1.0, 'will': 1.0, 'does': 1.0, 'maybe': 1.0, 'so': 1.0, 'weight': 1.0, 'percentile': 1.0, 'tenth': 1.0, 'in': 1.0, '6': 1.0, 'born': 1.0, 'though': 1.0, 'with': 1.0, '0': 1.0, 'still': 1.0, '7': 1.0, 'weeks': 1.0, 'now': 2.0, 'early': 1.0, 'uses': 1.0, 'prefers': 1.0, 'but': 4.0, 'soothie': 1.0, 'of': 1.0, 'up': 2.0, 'sleeping': 1.0, 'which': 1.0, 'version': 2.0, 'take': 1.0, 'at': 1.0, 'since': 1.0, 'newborn': 1.0, 'old': 1.0, 'even': 1.0, 'got': 1.0, 'would': 1.0, 'rubber': 2.0, 'never': 1.0, 'lower': 1.0, 'these': 1.0, 'the': 6.0, 'liking': 2.0, 'breastfeed': 1.0, 'for': 4.0, 'when': 2.0, 'months': 3.0, 'was': 2.0, 'paci': 1.0, 'to': 1.0, 'month': 1.0, 'she': 8.0, 'a': 2.0, 'we': 1.0, 'were': 1.0, 'down': 1.0, 'i': 1.0, '4': 1.0, 'two': 1.0, 'preemie': 1.0, 'is': 5.0, 'really': 1.0, 'end': 1.0, 'only': 3.0, 'much': 1.0, 'daughter': 2.0, 'harder': 1.0, 'why': 1.0, 'they': 1.0, 'pacifier': 1.0, 'are': 1.0, 'babies': 1.0, '3': 2.0, 'ended': 1.0, 'softer': 1.0, 'them': 2.0, 'eventually': 1.0, 'my': 2.0, 'exclusively': 1.0, 'and': 2.0}
Word element => {'buy': 1.0, 'baby': 1.0, 'everyone': 1.0, 'think': 1.0, 'and': 1.0, 'a': 1.0, 'them': 2.0, 'they': 1.0, 'these': 1.0, 'we': 1.0, 'new': 1.0, 'love': 1.0, 'so': 1.0, 'should': 1.0, 'cute': 2.0, 'with': 1.0, 'on': 1.0, 'are': 2.0, 'my': 1.0, 'i': 1.0, 'niece': 1.0, 'all': 1.0}
Word element => {'different': 1.0, 'is': 1.0, 'child': 1.0, 'each': 1.0, 'after': 1.0, 'work': 1.0, 'him': 1.0, 'for': 2.0, 'taking': 1.0, 'right': 1.0, 'great': 1.0, 't': 1.0, 'have': 1.0, 'with': 1.0, 'it': 3.0, 'he': 2.0, 'this': 1.0, 'didn': 1.0, 'i': 1.0, 'a': 1.0, 'friend': 1.0, 'who': 1.0, 'brand': 1.0, 'used': 1.0, 'her': 1.0, 'did': 1.0, 'vomited': 1.0, 'son': 1.0, 'and': 1.0}
Word element => {'cute': 1.0, 'super': 1.0, 'in': 1.0, 'pocket': 1.0, 'clear': 1.0, 'and': 2.0, 'large': 1.0, 'great': 1.0, 'bring': 1.0, 'want': 1.0, 'don': 1.0, 'personal': 1.0, 'when': 1.0, 'am': 1.0, 'front': 1.0, 'phone': 1.0, 'use': 1.0, 'wallet': 1.0, 'bag': 2.0, 'diaper': 2.0, '2': 1.0, 'place': 1.0, 'the': 1.0, 'full': 1.0, 'this': 1.0, 'it': 3.0, 'fit': 1.0, 'where': 1.0, 'for': 1.0, 'long': 1.0, 'i': 3.0, 'etc': 1.0, 's': 1.0, 'a': 2.0, 'going': 1.0, 't': 1.0, 'walks': 1.0, 'pockets': 1.0, 'diapers': 1.0, 'or': 1.0, 'bottles': 2.0, 'wipes': 1.0, 'small': 1.0, 'tube': 1.0, 'also': 1.0, 'of': 1.0, 'plus': 1.0, 'my': 2.0, 'fits': 1.0, 'cream': 1.0, 'things': 1.0, 'has': 1.0, '3': 1.0, 'on': 1.0, 'any': 1.0, 'to': 1.0, 'outside': 1.0, 'that': 1.0}
Word element => {'makes': 1.0, 'adjustable': 1.0, 'fit': 1.0, 'to': 1.0, 'under': 1.0, 'size': 1.0, 'go': 1.0, 'great': 1.0, 'for': 1.0, 'on': 1.0, 'the': 1.0, 'neutral': 1.0, 'carrying': 1.0, 'palette': 1.0, 'color': 1.0, 'straps': 1.0, 'stroller': 1.0, 'perfect': 1.0, 'easy': 2.0}
Word element => {'only': 1.0, 'but': 1.0, 'the': 1.0, '16': 1.0, 'pack': 1.0, 'descriptions': 1.0, 'for': 2.0, 'says': 1.0, 'i': 1.0, '4': 2.0, 'a': 2.0, 'packs': 1.0, 'got': 1.0, 'total': 2.0, '1': 1.0, 'of': 2.0, 'pins': 2.0}
Word element => {'sleeps': 1.0, 'strong': 1.0, 'when': 1.0, 'stays': 1.0, 'our': 1.0, 'it': 1.0, 'great': 1.0, 'very': 1.0, 'and': 1.0, '2': 1.0, 'for': 1.0, 'year': 1.0, 'sturdy': 1.0, 'he': 1.0, 'bed': 1.0, 'old': 1.0, 'against': 1.0, 'fits': 1.0, 'his': 1.0, 'twin': 1.0}
Word element => {'would': 1.0, 'each': 1.0, 'keeps': 1.0, 'moving': 1.0, 'snug': 1.0, 'recommend': 1.0, 'was': 1.0, 'in': 1.0, 'staying': 1.0, 'night': 1.0, 'them': 1.0, 'imagine': 1.0, 'couldn': 1.0, 'nice': 1.0, 'seemed': 1.0, 'how': 1.0, 'flimsy': 1.0, 'at': 1.0, 'definitely': 1.0, 'looking': 1.0, 'no': 2.0, 'about': 2.0, 'researched': 1.0, 'remember': 1.0, 'safe': 1.0, 'many': 1.0, 'so': 1.0, 'with': 1.0, 'children': 1.0, 'horrible': 1.0, 'and': 5.0, 'fit': 1.0, 'for': 1.0, 'bed': 5.0, 'reviews': 2.0, 'are': 2.0, 't': 1.0, 'we': 5.0, 'finally': 1.0, 'involved': 1.0, 'i': 4.0, 'placed': 1.0, 'our': 1.0, 'to': 3.0, 'sturdy': 1.0, 'ready': 1.0, 'danger': 1.0, 'child': 1.0, 'up': 1.0, 'wrong': 1.0, 'give': 1.0, 'way': 1.0, 'rails': 8.0, 'were': 2.0, 'get': 1.0, 'talked': 1.0, 'these': 1.0, 'such': 1.0, 'trapped': 1.0, 'decided': 1.0, 'read': 1.0, 'very': 2.0, 'try': 1.0, 'brand': 1.0, 'the': 9.0, 'place': 2.0, 'happy': 1.0, 'did': 1.0, 'spring': 1.0, 'this': 1.0, 'mattress': 1.0, 'perfect': 1.0, 'when': 1.0, 'gaps': 1.0, 'on': 2.0, 'box': 1.0, 'top': 1.0}
Word element => {'expensive': 1.0, 'side': 1.0, 'don': 1.0, 'cheaper': 1.0, 'say': 1.0, 'sleeps': 1.0, 'easy': 1.0, 'read': 1.0, 'little': 1.0, 'before': 2.0, 'his': 1.0, 'searched': 1.0, 'in': 2.0, 'place': 1.0, 'of': 4.0, 'the': 11.0, 'myself': 1.0, 'on': 3.0, 'think': 1.0, 'have': 1.0, 'our': 1.0, 'as': 1.0, 'tons': 1.0, 'crib': 1.0, 'when': 1.0, 'transitioning': 1.0, 'size': 1.0, 'it': 4.0, 'this': 3.0, 'he': 2.0, 'extremely': 1.0, 'a': 5.0, 't': 1.0, 'and': 5.0, 'my': 2.0, 'may': 1.0, 'ones': 1.0, 'try': 1.0, 'too': 1.0, 'one': 3.0, 'bed': 5.0, 'needs': 1.0, 'to': 5.0, 'straight': 1.0, 'against': 1.0, 'so': 1.0, 'for': 3.0, 'worried': 1.0, 'by': 1.0, 'between': 1.0, 'son': 2.0, 'more': 1.0, 'husband': 1.0, 'was': 3.0, 'because': 1.0, 'you': 1.0, 'able': 1.0, 'do': 1.0, 'risk': 1.0, 'its': 1.0, 'only': 1.0, 'necessarily': 1.0, 'box': 1.0, 'great': 1.0, 'spring': 1.0, 'over': 1.0, 'work': 2.0, 'but': 1.0, 'will': 1.0, 'sleigh': 1.0, 'twin': 1.0, 'stuck': 1.0, 'positioning': 1.0, 'reviews': 1.0, 'take': 1.0, 'effort': 1.0, 'straps': 1.0, 'assembly': 1.0, 'than': 1.0, 'way': 1.0, 'rails': 4.0, 'are': 1.0, 'give': 1.0, 'there': 1.0, 'no': 1.0, 'forego': 1.0, 'getting': 1.0, 'decided': 2.0, 'friendly': 1.0, 'go': 1.0, 'wallet': 1.0, 'i': 8.0, 'well': 1.0, 'some': 1.0, 'all': 1.0, 'other': 1.0, 'looked': 1.0, 'is': 3.0, 'snug': 1.0, 'at': 1.0, 'went': 1.0, 'those': 1.0, 'full': 1.0, 'were': 1.0}
Word element => {'are': 1.0, 'out': 1.0, 'who': 1.0, 'little': 1.0, 'crib': 1.0, 'for': 1.0, 'security': 1.0, 'easy': 1.0, 'into': 1.0, 'put': 1.0, 'ones': 1.0, 'together': 1.0, 'since': 1.0, 'and': 2.0, 'better': 1.0, 'those': 1.0, 'to': 1.0, 'place': 1.0, 'on': 1.0, 'of': 2.0, 'bed': 2.0, 'affords': 1.0, 'a': 3.0}
Word element => {'great': 1.0, 'after': 1.0, 'offer': 1.0, 'worked': 1.0, 'but': 1.0, 'since': 2.0, 'return': 1.0, 'disappointing': 1.0, 'between': 1.0, 'little': 1.0, 'being': 1.0, 'very': 2.0, 'soon': 1.0, 'there': 1.0, 'rails': 2.0, 'guard': 1.0, 'top': 3.0, 'work': 1.0, 'over': 2.0, 'off': 1.0, 'roll': 1.0, 'could': 1.0, 'many': 1.0, 'unfortunately': 1.0, 'she': 1.0, 'that': 1.0, 'exceeded': 1.0, 'her': 3.0, 'attached': 1.0, 'short': 1.0, 'thinking': 1.0, 'set': 1.0, 'actually': 1.0, 'order': 1.0, 'ordering': 1.0, 'requiring': 1.0, 'walls': 1.0, 'so': 2.0, 'about': 1.0, 'beds': 1.0, 'limit': 1.0, 'no': 1.0, 'years': 1.0, 'both': 2.0, 'house': 1.0, 'cover': 1.0, 'new': 1.0, 've': 3.0, 'summer': 2.0, 'would': 1.0, 'second': 1.0, 'these': 3.0, 'clearance': 1.0, 'of': 8.0, 'longer': 1.0, 'the': 16.0, 'place': 1.0, 'me': 1.0, 'my': 3.0, 'mattress': 4.0, 'enough': 1.0, 'constant': 1.0, 'we': 4.0, 'a': 6.0, 'and': 3.0, 'joint': 1.0, 'replacement': 1.0, 't': 1.0, 'against': 1.0, 'to': 6.0, 'as': 4.0, 'had': 2.0, 'purchased': 1.0, 'us': 1.0, 's': 1.0, 'sides': 1.0, 'siginifanctly': 1.0, 'where': 1.0, 'product': 5.0, 'daughter': 1.0, 'under': 1.0, 'same': 2.0, 'pink': 1.0, 'were': 1.0, 'piece': 1.0, 'nearly': 1.0, 'up': 1.0, 'for': 4.0, 'shorter': 1.0, '5': 1.0, 'double': 3.0, 'bed': 5.0, 'infant': 2.0, 'tightening': 1.0, 'this': 4.0, 'rail': 2.0, 'bought': 1.0, 'moved': 1.0, 'months': 2.0, 'into': 1.0, 'case': 1.0, 'amazon': 3.0, 'been': 2.0, 'already': 1.0, 'it': 4.0, 'be': 1.0, 'quality': 2.0, 'window': 1.0, '2009': 1.0, 'not': 1.0, 'stay': 1.0, 'is': 3.0, 'thanks': 1.0, 'cheaply': 1.0, 'made': 1.0, 'company': 1.0, 'only': 1.0, 'its': 3.0, 'disappointment': 1.0, 'much': 1.0, 'using': 1.0, 'with': 3.0, 'width': 1.0, 'older': 1.0, '3': 2.0, 'on': 1.0, 'plastic': 1.0, 'in': 3.0, 'connector': 1.0, 'broken': 1.0, 'from': 1.0, 'straps': 1.0, 'doesn': 1.0, 'big': 1.0, 'has': 1.0, 'broke': 1.0, 'i': 3.0, 'daughters': 1.0, 'well': 1.0, 'diminshed': 1.0, 'height': 1.0}
Word element => {'safe': 1.0, 'mom': 1.0, 'end': 1.0, 'rail': 1.0, 'in': 1.0, 'turn': 1.0, 'down': 1.0, 'inside': 1.0, 'certainly': 1.0, 'naturally': 1.0, 'item': 1.0, 'or': 1.0, 'is': 4.0, 'box': 2.0, 'foam': 2.0, 'w': 4.0, 'wood': 1.0, 'spring': 1.0, 'better': 1.0, 'difficult': 1.0, 'doable': 1.0, 'seem': 1.0, 'my': 1.0, 'from': 1.0, 'hard': 1.0, 'mother': 1.0, 'job': 1.0, 'defective': 1.0, 'the': 8.0, 'a': 2.0, 't': 2.0, 'traditional': 1.0, 'keeping': 1.0, 'rails': 1.0, 'out': 1.0, 'for': 1.0, 'bed': 2.0, 'doing': 1.0, 'mattress': 2.0, 'this': 1.0, 'platform': 1.0, 'it': 2.0, 'she': 1.0, 'rolls': 1.0, 'supports': 1.0, 'no': 1.0, 'well': 1.0, 'has': 1.0, 'of': 2.0, 'bought': 1.0, 'be': 1.0, 'twin': 1.0, 'little': 1.0, 'doesn': 1.0, 'guide': 1.0, 'but': 2.0, 'work': 1.0, 'don': 1.0, 'know': 1.0, 'how': 1.0, 'would': 1.0, 'size': 2.0, 'probably': 1.0, 'to': 2.0, 'as': 1.0}
Word element => {'same': 1.0, 'with': 1.0, 'safe': 1.0, 'that': 1.0, 'off': 1.0, 'from': 1.0, 'keep': 1.0, 'buy': 1.0, 'definitely': 1.0, 'would': 2.0, 'rails': 2.0, 'extent': 1.0, 'sides': 1.0, 'and': 1.0, 'get': 1.0, 'it': 4.0, 'comfortable': 1.0, 'feel': 1.0, 'great': 1.0, 'place': 1.0, 'the': 6.0, 'are': 1.0, 'this': 3.0, 'full': 1.0, 'fits': 1.0, 'my': 1.0, 'size': 2.0, 'is': 4.0, 'again': 1.0, 'folded': 1.0, 'we': 1.0, 'a': 1.0, 's': 1.0, 'way': 1.0, 'bed': 5.0, 'product': 1.0, 'for': 2.0, 'these': 2.0, 'some': 1.0, 'connected': 1.0, 'different': 1.0, 'can': 1.0, 'but': 2.0, 'adjusts': 1.0, 'regular': 1.0, 'in': 2.0, 'still': 1.0, 'son': 1.0, 'under': 1.0, 'beds': 1.0, 'two': 1.0, 'i': 2.0, 'rolling': 1.0, 'like': 1.0, 'very': 1.0, 'access': 1.0, 'he': 1.0, 'how': 1.0, 'rail': 1.0, 'him': 1.0, 'be': 1.0, 'perfectly': 1.0, 'down': 1.0, 'does': 1.0, 'of': 2.0, 'adjustable': 1.0, 'making': 1.0, 'any': 1.0, 'as': 1.0, 'to': 1.0}
Word element => {'much': 1.0, 'too': 1.0, 'sheets': 1.0, 'change': 1.0, 'still': 1.0, 'assemble': 1.0, 'make': 1.0, 'fit': 1.0, 'to': 1.0, 'was': 1.0, 'brands': 1.0, 'of': 1.0, 'sturdy': 1.0, 'different': 1.0, 'we': 1.0, 'the': 1.0, 'tried': 1.0, 'a': 2.0, 'trouble': 1.0, 'but': 1.0, 'easy': 1.0, 'this': 1.0, 'only': 1.0, 'couple': 1.0, 'and': 2.0, 'bed': 1.0, 'model': 1.0, 'beds': 1.0, 'platform': 1.0, 'that': 1.0, 'box': 1.0, 'can': 1.0, 'without': 2.0, 'recommended': 1.0, 'spring': 1.0}
Word element => {'before': 1.0, 'research': 1.0, 'amount': 1.0, 'small': 1.0, 'do': 1.0, 'please': 1.0, 'recommend': 1.0, 'highly': 1.0, 'common': 1.0, 'down': 2.0, 'falling': 1.0, 'simplistic': 1.0, 'or': 1.0, 'from': 2.0, 'weight': 1.0, 'enough': 1.0, 'has': 1.0, 'them': 1.0, 'always': 1.0, 'will': 1.0, 'i': 7.0, 'with': 2.0, 'rails': 3.0, 'stock': 1.0, 'these': 2.0, 'he': 2.0, 'him': 2.0, 'it': 3.0, 'be': 2.0, 'nature': 1.0, 'here': 1.0, 'mattress': 3.0, 'solid': 3.0, 'uprights': 1.0, 'give': 1.0, 'decided': 1.0, 'used': 1.0, 'replacing': 1.0, 'position': 1.0, 'assembling': 1.0, 'would': 1.0, 'weeks': 1.0, 'level': 1.0, 'case': 1.0, 'seen': 1.0, 'that': 1.0, 'son': 1.0, 'needed': 1.0, 'was': 2.0, 'size': 2.0, 'were': 1.0, 'at': 1.0, 'dual': 1.0, 'say': 1.0, 'is': 9.0, 'can': 2.0, 'comparison': 1.0, 'depending': 1.0, 'needless': 1.0, 'on': 2.0, 'pinch': 1.0, 'set': 2.0, 'market': 1.0, 'and': 17.0, 'formation': 1.0, 'branch': 1.0, 'easy': 1.0, 'point': 1.0, 'environment': 1.0, 'rail': 3.0, 'few': 2.0, 'this': 6.0, 'children': 1.0, 'between': 1.0, 'large': 1.0, 'they': 1.0, 'reviews': 2.0, 'take': 1.0, 'we': 3.0, 'very': 1.0, 'required': 1.0, 'have': 1.0, 'item': 1.0, 'struggling': 1.0, 'had': 1.0, 'now': 2.0, 'upright': 1.0, 'you': 2.0, 'night': 1.0, 'bed': 9.0, 'removed': 1.0, 'our': 1.0, 'years': 2.0, 'no': 1.0, 'in': 12.0, '8217': 5.0, 'nursery': 1.0, 'age': 1.0, 'old': 1.0, 'of': 7.0, 'experience': 1.0, 'the': 22.0, 'rather': 3.0, 'like': 1.0, 'many': 1.0, 'where': 2.0, 'for': 11.0, 'reviewers': 1.0, 'width': 1.0, 'require': 1.0, 't': 1.0, 'salt': 1.0, 'his': 2.0, 'queen': 2.0, 'construction': 3.0, 'price': 2.0, 'try': 1.0, 'one': 2.0, 'installation': 1.0, 'might': 1.0, 'defend': 1.0, 'a': 17.0, 'm': 2.0, 'expensive': 1.0, 's': 3.0, 'sides': 1.0, 'sense': 2.0, 'stay': 1.0, 'buy': 1.0, 'record': 1.0, 'assurance': 1.0, 'soundly': 1.0, 'backed': 1.0, '8220': 1.0, 'although': 2.0, 'being': 1.0, 'low': 1.0, 'platform': 2.0, 'my': 3.0, 'are': 2.0, 'their': 1.0, '25': 1.0, 'deepest': 1.0, 'setup': 2.0, 'left': 1.0, 'reading': 1.0, 'side': 4.0, 'good': 2.0, 'designed': 1.0, 'permanently': 1.0, 'evidence': 1.0, 'other': 1.0, 'to': 13.0, 'right': 1.0, 'hand': 1.0, 'prevents': 1.0, 'photo': 1.0, 'attest': 1.0, 'out': 1.0, 'outward': 1.0, 'want': 1.0, 'vertically': 1.0, 'downwards': 1.0, 'cloth': 1.0, 'assembly': 1.0, 'read': 1.0, 'wood': 1.0, 'assemble': 1.0, 'instructions': 1.0, 'height': 1.0, 'unusual': 1.0, 'purchasing': 1.0, 'time': 1.0, 'keep': 1.0, 'stop': 1.0, 'without': 1.0, 'watch': 1.0, 'sound': 2.0, 'opinion': 1.0, 'pushing': 1.0, 'barrier': 1.0, 'as': 3.0, 'whole': 1.0, 'approximately': 1.0, 'some': 1.0, 'minutes': 1.0, 'single': 1.0, 'off': 1.0, 'see': 1.0, 'fact': 1.0, 'folds': 1.0, 'sleeps': 1.0, 'what': 3.0, 'little': 1.0, 'ago': 1.0, 'two': 1.0, 'clear': 1.0, 'over': 1.0, 'after': 1.0, 'by': 1.0, 'prevent': 1.0, 'cribs': 1.0, 'saying': 1.0, 'example': 1.0, 'spend': 1.0, 'think': 1.0, 'useless': 1.0, 'sided': 3.0, 'unsafe': 1.0, '8221': 1.0, 'bigger': 1.0, 'support': 1.0, 'don': 1.0, 'product': 3.0, 'but': 2.0}
Word element => {'year': 1.0, 'for': 1.0, 'our': 2.0, 'perfect': 1.0, 'is': 1.0, 'stool': 1.0, 'old': 1.0, 'step': 1.0, 'move': 1.0, 'around': 1.0, 'of': 1.0, 'house': 1.0, 'purchase': 1.0, 'instead': 1.0, 'dining': 1.0, 'to': 1.0, 'was': 1.0, 'chairs': 1.0, 'this': 1.0, 'it': 1.0, '2': 1.0, 'the': 1.0, 'great': 1.0, 'a': 1.0}
Word element => {'needed': 1.0, 'add': 1.0, 'house': 1.0, 'from': 1.0, 'move': 1.0, 'easy': 1.0, 'very': 1.0, 'height': 1.0, 'in': 1.0, 'for': 1.0, 'sink': 1.0, 'child': 1.0, 'great': 1.0, 'it': 1.0, 'also': 1.0, 's': 1.0, 'place': 2.0, 'to': 3.0, 'reach': 1.0, 'my': 1.0, 'the': 2.0}
Word element => {'doing': 1.0, 'fun': 1.0, 'has': 1.0, 'it': 1.0, 'teeth': 1.0, 'brushes': 1.0, 'more': 1.0, 'the': 1.0, 'she': 2.0, 'little': 1.0, 'girl': 1.0, 'just': 1.0, 'sf': 1.0, 'loves': 1.0, 'her': 2.0, 'when': 1.0, 'so': 1.0, 'giants': 1.0, 'now': 1.0}
Word element => {'win': 2.0, 'logo': 1.0, 'situation': 1.0, 'yankee': 1.0, 'has': 1.0, 'and': 1.0, 'the': 1.0, 'my': 1.0, 'more': 1.0, 'it': 1.0, 'can': 1.0, 'son': 1.0, 'ask': 1.0, 'we': 1.0, 'what': 1.0, 'you': 1.0, 'a': 1.0, 'for': 2.0, 'step': 1.0, 'stool': 1.0, 'needed': 1.0}
Word element => {'fan': 1.0, 'lol': 1.0, 'coming': 1.0, 'dad': 1.0, 'money': 1.0, 'worth': 1.0, 'not': 1.0, 'thank': 1.0, 'time': 1.0, 'me': 1.0, 'and': 2.0, '1': 1.0, 'days': 1.0, 'be': 1.0, 'was': 1.0, 'now': 1.0, 'to': 2.0, 'receiving': 1.0, 'good': 1.0, 'of': 1.0, 'would': 1.0, 'trained': 1.0, 'thing': 1.0, 'you': 1.0, 's': 2.0, 'way': 1.0, 'even': 1.0, 'used': 1.0, 'works': 1.0, 'miracles': 1.0, 'we': 2.0, 'cards': 1.0, 'he': 2.0, 'it': 2.0, 'this': 2.0, 'learn': 1.0, 'using': 1.0, 'for': 1.0, 'thought': 1.0, 'our': 1.0, 'from': 2.0, 'son': 1.0, 'the': 1.0, '2': 1.0, 'a': 3.0, 'well': 1.0, 'within': 1.0}
Word element => {'training': 1.0, 'the': 1.0, 'anyone': 1.0, 'great': 1.0, 'beginning': 1.0, 'and': 1.0, 'this': 1.0, 'product': 1.0, 'to': 3.0, 'chapter': 1.0, 'easy': 2.0, 'use': 1.0, 'clean': 1.0, 'potty': 1.0, 'i': 1.0, 'would': 1.0, 'recommended': 1.0}
Word element => {'product': 1.0, 'a': 1.0, 'and': 1.0, 'our': 2.0, 'baby': 3.0, 'years': 1.0, 'wife': 1.0, 'purchased': 1.0, '4': 1.0, 'we': 2.0, 'are': 1.0, 'great': 1.0, 'the': 1.0, 'for': 2.0, 'one': 1.0, 'using': 1.0, 'durable': 1.0, 'first': 1.0, 'it': 1.0, 'still': 1.0, 'absolutely': 1.0, 'now': 1.0, '3rd': 1.0, 'loves': 1.0, 'ago': 1.0, 'my': 1.0, 'pak': 1.0}
Word element => {'bag': 1.0, 'into': 1.0, 'went': 1.0, 'thought': 1.0, 'diaper': 1.0, 'the': 2.0, 'great': 1.0, 'not': 1.0, 'diapers': 1.0, 'pack': 1.0, 'formula': 1.0, 'this': 1.0, 'perfect': 2.0, 'bags': 1.0, 'like': 1.0, 'one': 1.0, 'for': 2.0, 'mini': 1.0, 'have': 1.0, 'small': 2.0, 'so': 1.0, 'is': 1.0, '2': 1.0, 'most': 1.0, 'but': 1.0, 'change': 1.0, 'it': 3.0, 'quick': 1.0, 'size': 1.0, 'outings': 1.0, 'pretty': 1.0, 'always': 1.0, 'of': 2.0, 'purple': 1.0, 'i': 2.0, '4': 1.0, 'bottles': 1.0, 'lot': 1.0, 'bib': 1.0, 'too': 1.0, 'and': 2.0, 'toy': 1.0, 'quality': 1.0, 'clothes': 1.0, 'baby': 1.0, 'my': 1.0, 'very': 1.0, 's': 2.0, 'a': 4.0, 'we': 1.0, 'll': 1.0, 'made': 1.0}
Word element => {'investment': 1.0, 'the': 1.0, 'well': 1.0, 'were': 1.0, 'brand': 1.0, 'how': 1.0, 'loosely': 1.0, 'to': 1.0, 'i': 2.0, 'tag': 1.0, 'safety': 2.0, 'quality': 1.0, 'them': 2.0, 'out': 2.0, 't': 1.0, 'a': 4.0, 'in': 1.0, 'matter': 1.0, 'and': 1.0, 'put': 2.0, 'on': 1.0, 'more': 1.0, 'is': 1.0, 'you': 1.0, 'by': 1.0, 'just': 1.0, 'reminder': 1.0, 'no': 1.0, 'price': 1.0, 'replaced': 1.0, 'tight': 1.0, 'bought': 1.0, 'one': 1.0, 'but': 1.0, 'money': 1.0, 'can': 1.0, 'fit': 1.0, 'touching': 1.0, 'lets': 1.0, 'barley': 1.0, 'they': 3.0, 'very': 1.0, 'fell': 1.0, 'it': 1.0, 'with': 1.0, 'better': 1.0, 'new': 1.0, 'cost': 1.0, 'outlet': 2.0, 'worth': 1.0, 'plug': 2.0, '1st': 1.0, 'so': 1.0, 'bit': 1.0}
Word element => {'dryer': 1.0, 'in': 1.0, 'go': 1.0, 'can': 1.0, 'third': 1.0, 'which': 1.0, 'layers': 1.0, 'two': 1.0, 'bother': 1.0, 'toddler': 1.0, 'doesn': 1.0, 'so': 1.0, 'other': 1.0, 'tight': 1.0, 'looks': 1.0, 'really': 1.0, 'second': 1.0, 'drool': 2.0, 'is': 2.0, 'and': 1.0, 'get': 1.0, 'clothes': 1.0, 's': 1.0, 'teething': 1.0, 'soaked': 1.0, 'helps': 1.0, 'baby': 1.0, 'shirts': 1.0, 'dry': 1.0, 'has': 1.0, 'your': 2.0, 'keep': 1.0, 'if': 1.0, 'bib': 1.0, 'bibs': 1.0, 'like': 1.0, 't': 1.0, 'the': 2.0, 'fashionable': 1.0, 'very': 1.0, 'best': 1.0, 'this': 1.0, 'with': 1.0, 'first': 1.0, 'it': 4.0, 'not': 1.0, 'too': 2.0}
Word element => {'then': 1.0, 'on': 1.0, 'helping': 1.0, 'and': 2.0, 'my': 1.0, 'more': 1.0, 'looks': 1.0, 'good': 1.0, 'just': 1.0, 'boy': 1.0, 's': 1.0, 'well': 1.0, 'with': 1.0, 'it': 2.0, 'his': 1.0, 'drull': 1.0, 'absorb': 1.0, 'soft': 1.0, 'wish': 1.0, 'was': 1.0, 'would': 1.0, 'cheaper': 1.0, 'buy': 1.0, 'i': 1.0}
Word element => {'wear': 1.0, 'hot': 1.0, 'to': 2.0, 'seem': 1.0, 'and': 2.0, 'of': 1.0, 'few': 1.0, 'they': 2.0, 'well': 1.0, 'a': 2.0, 'have': 1.0, 'i': 1.0, 'made': 1.0, 'are': 1.0, 'effective': 1.0, 'for': 2.0, 'though': 1.0, 'be': 1.0, 'droolers': 1.0, 'option': 1.0, 'not': 1.0, 'these': 1.0, 'great': 1.0, 'really': 1.0, 'summer': 1.0}
Word element => {'choice': 1.0, 'happy': 1.0, 'very': 1.0, 'are': 1.0, 'benefit': 1.0, 'months': 1.0, 'a': 1.0, 'been': 1.0, 's': 1.0, 'brands': 1.0, 'different': 1.0, 'time': 1.0, 'took': 1.0, 'so': 1.0, 'another': 1.0, 'be': 1.0, 'would': 1.0, 'hindsight': 1.0, 'light': 1.0, 'looking': 1.0, 'pick': 1.0, 'for': 1.0, 'in': 1.0, 'now': 1.0, 'to': 3.0, 'had': 1.0, 'our': 2.0, 'that': 1.0, 'were': 1.0, 'stroller': 2.0, 'store': 1.0, 'easy': 2.0, 'we': 3.0, 'already': 1.0, 'of': 1.0, 'up': 1.0, 'couple': 1.0, 'and': 3.0, 'the': 2.0, 'car': 1.0, 'trunk': 1.0, 'with': 2.0, 'it': 1.0, 'models': 1.0, 'comparing': 1.0, 'steer': 1.0, 'foldwe': 1.0}
Word element => {'purchase': 1.0, 'people': 1.0, 'recommend': 1.0, 'would': 1.0, 'i': 1.0, 'loves': 1.0, 'this': 2.0, 'son': 1.0, 'is': 1.0, 'it': 1.0, 'love': 1.0, 'great': 1.0, 'fold': 1.0, 'the': 1.0, 'my': 1.0, 'colors': 1.0, 'stroller': 2.0, 'easy': 1.0, 'to': 2.0}
Word element => {'should': 1.0, 'garbage': 1.0, 'but': 1.0, 'foot': 1.0, 'was': 1.0, 'not': 1.0, 'down': 1.0, 'has': 1.0, 'of': 2.0, 'less': 1.0, 'never': 1.0, 'would': 1.0, 'broken': 1.0, 'the': 2.0, 'sold': 1.0, 'received': 1.0, 'ranges': 1.0, 'sucked': 1.0, '20': 1.0, 'a': 1.0, 'return': 1.0, 'then': 1.0, 'smooth': 1.0, 'be': 1.0, 'product': 2.0, 'signal': 1.0, 'seller': 1.0, 'easy': 1.0, 'and': 2.0}
Word element => {'existing': 1.0, 'exchanged': 1.0, 'their': 1.0, 'that': 1.0, 'better': 1.0, 'so': 1.0, 'offered': 1.0, 'seat': 2.0, 'whose': 1.0, 'much': 1.0, 'investment': 1.0, 'is': 4.0, 'feels': 1.0, 'for': 1.0, 'one': 3.0, 'parents': 2.0, 'model': 1.0, 'baby': 1.0, 'padded': 1.0, 'the': 3.0, 'a': 3.0, 'but': 1.0, 'secure': 1.0, 'stability': 1.0, 'it': 2.0, 'this': 4.0, 'play': 1.0, 'and': 2.0, 'bath': 1.0, 'already': 1.0, 'sturdy': 1.0, 'able': 1.0, 'had': 1.0, 'was': 1.0, 'to': 2.0, 'worth': 1.0, 'pricier': 1.0, 'gift': 1.0, 'safely': 1.0, 'twin': 1.0}
Word element => {'bath': 1.0, 'baby': 1.0, 'now': 1.0, 'own': 1.0, 'his': 2.0, 'easier': 1.0, 'one': 1.0, 'he': 1.0, 'this': 1.0, 'makes': 1.0, 'so': 2.0, 'my': 3.0, 'happy': 1.0, 'back': 1.0, 'much': 1.0, 'son': 2.0, 'is': 1.0, 'on': 1.0, 'and': 1.0, 'relief': 1.0, 'bathing': 2.0, 'alot': 1.0, 'up': 1.0, 'of': 1.0, 'loves': 1.0, 'mommy': 1.0, 'off': 1.0, 'in': 1.0, 'also': 1.0, 'seat': 1.0, 'just': 1.0, 'sitting': 1.0}
Word element => {'wonderful': 1.0, 'guess': 1.0, 'mothers': 1.0, 'new': 1.0, 'some': 1.0, 'know': 1.0, 'which': 1.0, 'sense': 1.0, 'water': 1.0, 'second': 1.0, 'even': 1.0, 'leave': 1.0, 'never': 1.0, 'was': 1.0, 'placing': 1.0, 'before': 1.0, 'i': 2.0, 'help': 1.0, 'little': 1.0, 'with': 1.0, 'or': 2.0, 'baby': 2.0, 'in': 5.0, 'his': 2.0, 'months': 1.0, '7': 1.0, 'giggled': 1.0, 'without': 1.0, 'the': 3.0, 'purchase': 1.0, 'my': 1.0, 'wow': 1.0, 'definitely': 1.0, 'ever': 1.0, 'grandson': 1.0, 'it': 5.0, 'he': 2.0, 'loved': 1.0, 'every': 1.0, 'more': 1.0, 'is': 5.0, 'being': 1.0, 'everything': 1.0, 'present': 1.0, 'towel': 1.0, 'splashed': 1.0, 'tub': 2.0, 'hated': 1.0, 'common': 1.0, 'type': 1.0, 'old': 2.0, 'any': 1.0, 'seat': 3.0, 'to': 2.0, 'and': 5.0, 'advertised': 1.0, 'but': 2.0, 'constantly': 1.0, 'on': 1.0, 'bath': 4.0, 'put': 2.0, 'be': 1.0, 'him': 2.0, 'perfect': 1.0, 'this': 2.0, 'minute': 2.0, 'kids': 1.0, 't': 1.0, 'a': 5.0, 'we': 1.0, 'could': 1.0, 'sit': 2.0, 'don': 1.0, 'up': 2.0, 'of': 2.0, 'where': 1.0, 'for': 2.0, 'enough': 1.0, 'pretty': 2.0, 'own': 1.0, 'only': 1.0, 'much': 2.0, 'their': 1.0}
Word element => {'jjb': 1.0, 'awesome': 1.0, 'at': 1.0, 'has': 1.0, 'isn': 1.0, 'job': 1.0, 'the': 4.0, 'called': 1.0, 'love': 3.0, 'i': 3.0, 'pockets': 1.0, 'it': 1.0, 'this': 3.0, 'bc': 2.0, 't': 2.0, 'a': 2.0, 'ju': 2.0, 'inside': 1.0, 'bags': 1.0, 'be': 3.0, 'top': 1.0, 'enough': 1.0, 'super': 1.0, 'new': 1.0, 'you': 1.0, 'bag': 2.0, 'zipper': 1.0, 'have': 1.0, 'including': 1.0, 'several': 1.0, 'organized': 1.0, 'mesh': 1.0, 'on': 1.0, 'to': 1.0, 'stay': 1.0, 'can': 1.0, 'mighty': 1.0, 'that': 1.0, 'big': 1.0, 'there': 1.0, 'of': 1.0, 'say': 1.0, 'is': 1.0, 'tons': 1.0, 'room': 1.0, 'one': 1.0, 'color': 1.0, 'similar': 1.0, 'and': 1.0, 'too': 1.0}
Word element => {'zipper': 1.0, 'inside': 1.0, 'mesh': 1.0, 'of': 1.0, 'her': 1.0, 'mighty': 1.0, 'pack': 1.0, 'need': 1.0, 'and': 2.0, 'much': 1.0, 'to': 4.0, 'use': 1.0, 'fits': 2.0, 'everything': 1.0, 'so': 1.0, 'pockets': 1.0, 'whole': 1.0, 'i': 3.0, 'extra': 1.0, 'daughters': 1.0, 'awesome': 1.0, 'one': 1.0, 'for': 3.0, 'is': 1.0, 'stuff': 1.0, 'bag': 3.0, 'it': 3.0, 'this': 2.0, 'than': 1.0, 'go': 1.0, 'like': 1.0, 'park': 1.0, 'great': 1.0, 'more': 1.0, 'the': 6.0, 'my': 1.0, 'be': 1.0, 'beach': 1.0, 'as': 1.0, 'closure': 1.0, 'a': 1.0, 'weekend': 3.0, 'because': 1.0, 'trip': 1.0}
Word element => {'be': 1.0, 'bought': 1.0, 'also': 1.0, 'straps': 1.0, 'large': 1.0, 'of': 1.0, 'carry': 1.0, 'clean': 1.0, 'looking': 1.0, 'what': 1.0, 'silver': 1.0, 'combination': 1.0, 'easy': 2.0, 'beautiful': 1.0, 'i': 2.0, 'and': 2.0, 'because': 1.0, 'just': 1.0, 'huge': 1.0, 'from': 1.0, 'very': 1.0, 'for': 1.0, 'is': 1.0, 'with': 1.0, 'it': 2.0, 's': 1.0, 'the': 1.0, 'red': 1.0, 'which': 1.0, 'nice': 1.0, 'makes': 1.0, 'ju': 2.0, 'hangers': 1.0, 'a': 1.0, 'its': 1.0, 'was': 1.0, 'to': 2.0}
Word element => {'pockets': 1.0, 'mesh': 1.0, 'of': 1.0, 'house': 1.0, 'my': 1.0, 'want': 1.0, 'more': 1.0, 'around': 1.0, 'are': 1.0, 'toting': 1.0, 'different': 1.0, 'they': 1.0, 'between': 1.0, 'car': 1.0, 'rent': 1.0, 'there': 1.0, 'in': 1.0, 'them': 2.0, 'both': 1.0, 'taking': 1.0, 'with': 1.0, 'mighty': 3.0, 'anything': 1.0, 'secured': 1.0, 'organized': 1.0, 'transportation': 1.0, 'so': 2.0, 'cousins': 1.0, 'items': 1.0, 'top': 1.0, 'on': 2.0, 'your': 1.0, 'won': 1.0, 'has': 2.0, 'i': 4.0, 'it': 7.0, 'daily': 1.0, 'the': 7.0, 'diaper': 1.0, 'ease': 1.0, 'unlike': 1.0, 'inside': 1.0, 'tote': 1.0, 'luggage': 2.0, 'will': 2.0, 'europe': 1.0, 'also': 2.0, 'kids': 2.0, 'perfect': 2.0, 'super': 2.0, 'be': 8.0, 'really': 1.0, 'trip': 1.0, 'like': 1.0, 'leave': 1.0, 'zipper': 1.0, 'an': 1.0, '2': 1.0, 'can': 2.0, 'but': 1.0, 'little': 2.0, 'at': 1.0, 'main': 1.0, 'since': 1.0, 'keep': 2.0, 'three': 1.0, 'bigger': 1.0, 'because': 1.0, 'than': 1.0, 'going': 1.0, 'we': 4.0, 't': 1.0, 'a': 5.0, 's': 3.0, 'go': 1.0, 'our': 2.0, 'to': 3.0, 'all': 1.0, 'as': 1.0, 'big': 1.0, 'carry': 1.0, 'everyday': 1.0, 'or': 1.0, 'bag': 1.0, 'countries': 1.0, 'and': 3.0, 'too': 1.0, 'folded': 1.0, 'when': 2.0, 'for': 5.0, 'travel': 1.0, 'use': 2.0}
Word element => {'august': 1.0, 'use': 1.0, 'wait': 1.0, 'can': 1.0, 'seems': 1.0, 'mickey': 1.0, 'come': 1.0, 'this': 1.0, 'it': 3.0, 'to': 3.0, 'test': 1.0, 'adorable': 1.0, 'haven': 1.0, 'so': 2.0, 'fan': 1.0, 'looks': 1.0, 'am': 1.0, 'yet': 1.0, 'my': 1.0, 'made': 1.0, 'i': 1.0, 't': 3.0, 'isn': 1.0, 'baby': 1.0, 'fully': 1.0, 'fit': 1.0, 'here': 1.0, 'feels': 1.0, 'perfectly': 1.0, 'me': 1.0, 'gotten': 1.0, 'and': 1.0, 'huge': 1.0, 'well': 1.0, 'a': 1.0}
Word element => {'stronger': 1.0, 'wish': 1.0, 'just': 1.0, 'nice': 1.0, 'and': 1.0, 'lovers': 1.0, 'mouse': 1.0, 'mickey': 1.0, 'for': 1.0, 'adorable': 1.0, 'very': 1.0, 'items': 1.0, 'stores': 1.0, 'of': 1.0, 'bag': 2.0, 'it': 1.0, 'this': 1.0, 'size': 1.0, 'flimsy': 1.0, 'lot': 1.0, 'cute': 1.0, 'print': 1.0, 'a': 4.0, 'is': 2.0, 'your': 1.0, 'babies': 1.0, 'but': 2.0, 'doesn': 1.0, 'secure': 1.0, 'feel': 1.0, 'was': 1.0, 'to': 1.0, 'hold': 1.0, 't': 1.0, 'diaper': 1.0, 'the': 2.0}
Word element => {'were': 1.0, 'a': 1.0, 'trike': 1.0, 'i': 2.0, 'yellow': 1.0, 'gray': 1.0, 'and': 2.0, 'some': 1.0, 'bids': 1.0, 'really': 1.0, 'fantastic': 1.0, 'needed': 1.0, 'just': 1.0, 'making': 1.0, 's': 1.0, 'looked': 1.0, 'this': 1.0, 'it': 1.0, 'hard': 1.0, 'was': 1.0, 'to': 1.0, 'find': 1.0, 'for': 1.0, 'solor': 1.0, 'combination': 1.0, 'great': 1.0, 'diaper': 1.0, 'these': 1.0}
Word element => {'reasonable': 1.0, 'up': 1.0, 'guarantee': 1.0, 'time': 2.0, 'product': 2.0, 'buy': 1.0, 'more': 1.0, 'even': 1.0, 'back': 1.0, 'money': 1.0, 'wish': 2.0, 'chewing': 1.0, 'should': 1.0, 'chewed': 1.0, 'by': 1.0, 'please': 1.0, 'point': 1.0, 'how': 1.0, '98': 1.0, 'hands': 1.0, 'tube': 1.0, 'squeeze': 1.0, 'are': 2.0, 'food': 2.0, 'be': 2.0, 'can': 3.0, 'out': 2.0, 'your': 2.0, 'pressure': 1.0, 'some': 2.0, 'you': 5.0, 'state': 1.0, 'materials': 2.0, 'printed': 1.0, 'come': 2.0, 'anymore': 1.0, 'said': 1.0, 'chew': 1.0, 'see': 1.0, 'off': 1.0, 'a': 6.0, 't': 3.0, 'discovered': 1.0, 'means': 1.0, 'could': 3.0, 'isn': 2.0, 'valve': 1.0, 'start': 1.0, 'doesn': 1.0, 'was': 2.0, 'but': 6.0, 'did': 1.0, 'on': 6.0, 'consider': 1.0, 'again': 2.0, 'when': 2.0, 'self': 1.0, 'son': 3.0, 'feeding': 2.0, 'work': 1.0, 'hard': 1.0, 'daily': 1.0, 'smoothie': 1.0, 'certainly': 1.0, 'if': 4.0, 'at': 1.0, 'exert': 1.0, 'is': 3.0, 'enough': 1.0, 'loved': 1.0, 'hold': 1.0, 'spoon': 1.0, 'with': 6.0, 'received': 1.0, 'this': 6.0, 'withstand': 1.0, 'know': 1.0, 'bit': 1.0, 'found': 2.0, 'usually': 1.0, 'only': 2.0, 'anything': 1.0, 'works': 1.0, 'do': 3.0, 'end': 1.0, 'him': 2.0, 'it': 21.0, 'before': 1.0, 'broke': 1.0, 'i': 16.0, 'many': 1.0, 'becomes': 1.0, 'record': 1.0, 'two': 1.0, 'frustrated': 1.0, 'using': 1.0, 'made': 1.0, 'good': 1.0, 'which': 1.0, 'designed': 1.0, 'into': 1.0, 'been': 1.0, 'for': 3.0, 'have': 4.0, 'unsafe': 1.0, 'thing': 2.0, 'about': 1.0, 'hungry': 1.0, 'today': 1.0, 'all': 3.0, 'veggies': 1.0, 'became': 1.0, 'to': 8.0, 'get': 4.0, 'and': 5.0, 'brief': 1.0, 'suck': 1.0, 'delivery': 1.0, 'my': 4.0, 'me': 1.0, 'not': 2.0, 'he': 4.0, 'yet': 1.0, 'consistencies': 1.0, 'while': 1.0, 'insists': 1.0, 'bite': 3.0, 'fruits': 1.0, 'enabled': 1.0, 'would': 1.0, 'sucking': 1.0, 'weeks': 1.0, 'away': 1.0, 'around': 1.0, 'his': 1.0, 'now': 2.0, 'almost': 1.0, 'mouth': 2.0, 'since': 1.0, 'after': 1.0, 'doing': 1.0, 'the': 11.0, 'device': 1.0, 'of': 4.0, 'anyway': 1.0, 'use': 2.0, 'easily': 1.0, 'that': 8.0, 'silicone': 1.0, 'yellow': 1.0, 'nipple': 1.0, 'discolored': 1.0, 'care': 1.0, 'week': 1.0, 'being': 1.0, 'later': 1.0, 'fabulous': 1.0, 'from': 2.0, 'as': 2.0, 'cracked': 1.0, 'both': 1.0, 'half': 1.0, 'than': 1.0, 'way': 2.0, 'desperately': 1.0, 'had': 3.0, 'choked': 1.0, 'managed': 1.0, 'we': 1.0, 'reviews': 1.0, 'then': 1.0, 'take': 1.0}
Word element => {'too': 1.0, 'food': 1.0, 'of': 1.0, 'a': 1.0, 'hold': 1.0, 'they': 1.0, 'all': 1.0, 'lot': 1.0, 'easy': 1.0, 'that': 2.0, 'you': 1.0, 'the': 3.0, 'great': 1.0, 'can': 1.0, 'i': 1.0, 'and': 1.0, 'dishwasher': 1.0, 'like': 1.0, 'he': 1.0, 'come': 1.0, 'quality': 1.0, 'fact': 2.0, 'put': 1.0, 'love': 1.0, 'for': 1.0, 'just': 1.0, 'washing': 1.0, 'in': 1.0, 'pieces': 1.0, 'apart': 1.0, 'also': 1.0, 'them': 1.0}
Word element => {'foods': 1.0, 'packed': 1.0, 'squeeze': 1.0, 'using': 1.0, 'than': 1.0, 'cheaper': 1.0, 'much': 1.0, 'about': 1.0, 'out': 2.0, 'recently': 1.0, 'them': 1.0, 'stuff': 1.0, 'herself': 1.0, 'so': 1.0, 'too': 1.0, 'green': 1.0, 'and': 5.0, 'see': 1.0, 'couldn': 1.0, 'gotten': 1.0, 'smoothies': 1.0, 'bought': 1.0, 'the': 3.0, 't': 1.0, '1': 2.0, 'great': 2.0, 'these': 1.0, 'i': 2.0, 'mess': 1.0, 'my': 2.0, 'this': 1.0, 'in': 1.0, 'also': 1.0, 'for': 4.0, 'daughter': 1.0, 'was': 1.0, 'to': 1.0, 'she': 2.0, 'yr': 1.0, '2': 2.0, 'work': 1.0, 'rave': 1.0, 'purchased': 1.0, 'niece': 1.0, 'contain': 1.0, 'when': 2.0, 'you': 1.0, 'who': 1.0, 'likes': 1.0, 'have': 1.0, 'mama': 1.0, 'feed': 1.0, 'they': 2.0, 'reviews': 1.0, 'are': 2.0, 'while': 1.0, 'from': 1.0, 'her': 2.0}
Word element => {'enough': 1.0, 'can': 1.0, 'so': 1.0, 'entertained': 1.0, 'old': 1.0, 'year': 1.0, 'keeps': 1.0, 'shopping': 1.0, 'for': 1.0, 'it': 3.0, 'he': 1.0, 'first': 1.0, 'rack': 1.0, 'take': 1.0, 'set': 2.0, 'at': 1.0, 'really': 1.0, 'is': 1.0, 'get': 2.0, 'left': 1.0, 'one': 3.0, 'i': 4.0, 'and': 1.0, 'green': 1.0, 'ordered': 2.0, 'red': 1.0, 'the': 6.0, 'of': 1.0, 'warped': 2.0, 'to': 4.0, 'groceries': 1.0, 'away': 1.0, 'now': 1.0, 'had': 1.0, 'its': 1.0, 'son': 2.0, 'my': 4.0, 'didn': 1.0, 'gave': 1.0, 'nephew': 1.0, 'loves': 1.0, 'caps': 1.0, 'was': 1.0, 'sum': 1.0, 'perfect': 1.0, 'said': 1.0, 'in': 2.0, 'dishwasher': 1.0, 'top': 1.0, 'on': 1.0, 'because': 1.0, 'them': 1.0, 'btch': 1.0, 'started': 1.0, 'taking': 1.0, 't': 1.0, 'a': 1.0, 'we': 1.0}
Word element => {'what': 1.0, 'you': 1.0, 's': 1.0, 'that': 1.0, 'if': 1.0, 'wood': 1.0, 'booster': 1.0, 'scratch': 1.0, 't': 1.0, 'the': 1.0, 'is': 1.0, 'seat': 1.0, 'place': 1.0, 'tipping': 1.0, 'everything': 1.0, 'get': 1.0, 'comfortable': 1.0, 'for': 1.0, 'love': 1.0, 'durable': 1.0, 'this': 1.0, 'it': 3.0, 'without': 1.0, 'about': 1.0, 'i': 1.0, 'easy': 1.0, 'a': 1.0, 'toddler': 1.0, 'on': 1.0, 'won': 1.0, 'over': 1.0, 'to': 1.0, 'chairs': 1.0, 'into': 1.0, 'material': 1.0}
Word element => {'the': 1.0, 'level': 1.0, 'else': 1.0, 'and': 1.0, 'highchair': 1.0, 'not': 1.0, 'loves': 1.0, 'table': 1.0, 'she': 1.0, 'birthday': 1.0, 'her': 2.0, 'on': 2.0, 'at': 1.0, 'suggestion': 1.0, '2nd': 1.0, 'my': 2.0, 'be': 1.0, 'bought': 1.0, 'it': 1.0, 'i': 1.0, 'for': 2.0, 'one': 1.0, 's': 2.0, 'they': 2.0, 'a': 1.0, 'different': 1.0, 'needing': 1.0, 'that': 1.0, 'daughter': 1.0, 'borrowed': 1.0, 'back': 1.0, 'but': 1.0, 'give': 1.0, 'everyone': 1.0, 'had': 2.0, 'granddaughter': 1.0, 'to': 1.0}
Word element => {'must': 1.0, 'a': 1.0, 'packaged': 1.0, 'solid': 1.0, 'of': 1.0, 'in': 1.0, 'made': 1.0, 'out': 1.0, 'snot': 1.0, 'have': 1.0, 'itself': 1.0, 'all': 1.0, 'issues': 1.0, 'baby': 1.0, 'my': 1.0, 'nicely': 1.0, 'the': 4.0, 'runny': 1.0, 'material': 1.0, 'product': 2.0, 'comes': 1.0, 'to': 1.0, 'had': 1.0, 'sucks': 1.0, 'definitely': 1.0, 'nose': 1.0, 'solved': 1.0, 'nice': 1.0, 'is': 1.0, 'really': 1.0, 'during': 1.0, 'weather': 1.0, 'and': 3.0, 'real': 1.0, 'cold': 1.0, 's': 1.0, 'this': 1.0, 'it': 1.0, 'easy': 1.0, 'try': 1.0, 'use': 1.0, 'one': 1.0, 'comfortable': 1.0}
Word element => {'purchase': 1.0, 'be': 1.0, 't': 1.0, 'thick': 1.0, 'strong': 1.0, 'so': 1.0, 'floors': 1.0, 'wooden': 1.0, 'have': 1.0, 'up': 1.0, 'back': 1.0, 'right': 1.0, 'on': 1.0, 'times': 1.0, 'several': 1.0, '9': 1.0, 'for': 1.0, 'love': 1.0, 'we': 4.0, 'mat': 2.0, 'awesome': 1.0, 'our': 2.0, 'a': 2.0, 'is': 1.0, 'with': 1.0, 'durable': 1.0, 'it': 3.0, 'this': 1.0, 'happier': 1.0, 'colorful': 1.0, 'old': 1.0, 'little': 1.0, 'needed': 1.0, 'she': 1.0, 'month': 1.0, 'girl': 1.0, 'unharmed': 1.0, 'fallen': 1.0, 's': 1.0, 'couldn': 1.0, 'gotten': 1.0, 'and': 3.0, 'very': 1.0, 'as': 1.0}
Word element => {'got': 1.0, 'where': 1.0, 'friends': 1.0, 'my': 1.0, 'of': 1.0, 'few': 1.0, 'a': 1.0, 'room': 1.0, 'asking': 1.0, 'activity': 1.0, 'fits': 1.0, 'size': 1.0, 'large': 1.0, 'all': 1.0, 'foam': 1.0, 'for': 1.0, 'one': 3.0, 'btw': 1.0, 'are': 1.0, 'the': 2.0, 'debating': 1.0, 'were': 2.0, 'but': 1.0, 'so': 1.0, 'glad': 1.0, 'vibrant': 1.0, 'perfectly': 1.0, 'and': 2.0, 'chose': 1.0, 'is': 1.0, 'thick': 1.0, 'it': 2.0, 'this': 2.0, 'durable': 1.0, 'colors': 1.0, 'at': 1.0, 'super': 1.0, 'no': 1.0, 'we': 4.0, 'smell': 1.0}
Word element => {'on': 1.0, 'to': 1.0, 'play': 1.0, 'loves': 1.0, 'color': 1.0, 'vibrant': 1.0, 'we': 1.0, 'my': 1.0, 'the': 2.0, 'baby': 1.0, 'playmat': 1.0, 'large': 1.0, 'like': 1.0, 'and': 2.0, 'smell': 1.0, 'extra': 1.0, 'size': 1.0, 'thickness': 1.0, 'no': 1.0, 'has': 1.0, 'of': 1.0, 'it': 2.0}
Word element => {'they': 1.0, 'stylish': 1.0, 'and': 2.0, 'quality': 1.0, 'this': 1.0, 'are': 1.0, 'the': 2.0, 'love': 1.0, 'super': 1.0, 'shoes': 1.0, 'baby': 1.0, 'how': 1.0, 'cute': 2.0, 'look': 1.0, 'for': 1.0, 'duper': 1.0, 'i': 1.0}
Word element => {'too': 1.0, 'sometimes': 1.0, 'loves': 1.0, 'mommy': 1.0, 'daughter': 1.0, 'what': 1.0, 'it': 2.0, 'can': 1.0, 'uses': 1.0, 'i': 1.0, 'say': 1.0, 'is': 1.0, 'exactly': 1.0, 'product': 1.0, 'and': 1.0, 'as': 1.0, 'described': 1.0, 'the': 1.0, 'my': 1.0}
Word element => {'my': 1.0, 'and': 1.0, 'little': 1.0, 'handy': 1.0, 'would': 1.0, 'not': 1.0, 'have': 1.0, 'priced': 1.0, 'seen': 1.0, 'loves': 1.0, 'pay': 1.0, 'the': 1.0, 'at': 1.0, 'super': 1.0, 'cheap': 1.0, 'i': 2.0, 'this': 1.0, 'it': 2.0, '10': 1.0, 'which': 1.0, 'one': 1.0, 'for': 1.0, 'that': 1.0, 'much': 1.0, 'especially': 1.0, 'but': 1.0, 'quality': 1.0, 'was': 1.0, 'its': 1.0}
Word element => {'refill': 1.0, 'inseparable': 1.0, 'neigh': 1.0, 'together': 1.0, 'always': 1.0, 'we': 1.0, 'just': 1.0, 'because': 1.0, 'okay': 1.0, 's': 1.0, 'as': 2.0, 'hold': 1.0, 't': 1.0, 'but': 1.0, 'doesn': 1.0, 'tighter': 1.0, 'never': 1.0, 'wanted': 1.0, 'to': 2.0, 'much': 2.0, 'pegasister': 1.0, 're': 1.0, 'my': 2.0, 'mane': 1.0, 'been': 1.0, 'bottle': 1.0, 'i': 4.0, 'water': 1.0, 'girl': 1.0, 'loves': 1.0, 'got': 1.0, 'how': 1.0, 'liquid': 1.0, 'her': 2.0, 'for': 2.0, 'love': 1.0, 'this': 1.0, 'it': 4.0, 'bond': 1.0, 'show': 1.0, 'she': 1.0, 'and': 2.0, 'that': 1.0, 'our': 1.0, 'has': 1.0}
Word element => {'plus': 1.0, 'which': 1.0, 'fall': 1.0, 'she': 1.0, 'old': 1.0, 'to': 1.0, 'year': 1.0, 'four': 1.0, 'little': 1.0, 'bottle': 1.0, 'drinking': 1.0, 'is': 2.0, 'my': 2.0, 'for': 1.0, 'yet': 1.0, 'the': 1.0, 'great': 1.0, 'it': 1.0, 'pony': 1.0, 'and': 1.0, 'a': 2.0, 'off': 1.0, 'loves': 1.0, 'lid': 1.0, 'good': 1.0, 'has': 1.0, 'price': 1.0}
Word element => {'game': 1.0, 'enough': 1.0, 'holds': 1.0, 'gift': 1.0, 'was': 1.0, 'pony': 1.0, 'little': 1.0, 'niece': 1.0, 'games': 1.0, 'use': 1.0, 'most': 1.0, 'last': 1.0, 'her': 6.0, 'soccer': 2.0, 'during': 1.0, 'year': 2.0, 'big': 1.0, 'it': 3.0, 'she': 2.0, 'bottles': 1.0, 'add': 1.0, 'old': 2.0, 'entire': 1.0, 'bought': 1.0, 'be': 1.0, 'the': 4.0, 'water': 4.0, 'for': 5.0, 'so': 1.0, 'bottle': 2.0, 'i': 1.0, '4': 2.0, 'on': 1.0, 'this': 1.0, 'perfect': 2.0, 'in': 1.0, 'size': 1.0, 'because': 1.0, 'just': 1.0, 'market': 1.0, 'are': 1.0, 'made': 1.0, 'as': 1.0, 'to': 2.0, 'adults': 1.0, 'would': 1.0, 'teens': 1.0, 'and': 2.0, 'too': 1.0, 's': 1.0, 'could': 1.0, 'a': 1.0, 'my': 2.0, 'fact': 1.0, 'that': 1.0, 'loves': 1.0}
Word element => {'to': 1.0, 'when': 1.0, 'in': 1.0, 'plastic': 1.0, 'tried': 1.0, 'caved': 1.0, 'the': 1.0, 'and': 1.0, 'seal': 1.0, 'after': 1.0, 'close': 1.0, 'using': 1.0, 'a': 1.0, 'we': 1.0, 'couple': 1.0, 'of': 1.0, 'won': 1.0, 'this': 1.0, 't': 1.0, 'times': 1.0, 'now': 1.0, 'it': 2.0}
Word element => {'easily': 1.0, 'that': 1.0, 'will': 1.0, 'but': 1.0, 'off': 2.0, 'scratched': 1.0, 'hasnt': 1.0, 'on': 1.0, 'design': 1.0, 'is': 1.0, 'fear': 1.0, 'concern': 1.0, 'to': 1.0, 'so': 1.0, 'order': 1.0, 'got': 1.0, 'happy': 1.0, 'my': 2.0, 'the': 3.0, 'made': 1.0, 'earlier': 1.0, 'hesitate': 1.0, 'expected': 1.0, 'mine': 1.0, 'love': 1.0, 'come': 1.0, 'only': 1.0, 'this': 1.0, 'it': 2.0, 'i': 4.0, 'didnt': 1.0, 'little': 1.0, 'bottle': 2.0, 'water': 1.0, 'than': 1.0, 'day': 1.0, 'pony': 1.0, 'me': 1.0, 'which': 1.0}
Word element => {'though': 1.0, 'buy': 1.0, 'a': 1.0, 'overall': 1.0, 'wash': 1.0, 'and': 1.0, 'bad': 1.0, 'nothing': 1.0, 'hand': 1.0, 'like': 1.0, 'fine': 1.0, 'there': 1.0, 'that': 1.0, 'had': 1.0, 'thought': 1.0, 'this': 1.0, 'did': 1.0, 'it': 5.0, 'she': 2.0, 'my': 1.0, 'is': 1.0, 'more': 1.0, 'the': 4.0, 'when': 2.0, 'gets': 1.0, 'just': 1.0, 'would': 1.0, 'daughter': 1.0, 'water': 1.0, 'not': 2.0, 'wrong': 1.0, 'than': 1.0, 'does': 1.0, 'much': 1.0, 'works': 1.0, 'down': 1.0, 'i': 2.0, 'so': 1.0, 'bottle': 1.0, 'but': 1.0, 'use': 1.0, 'sometimes': 1.0, 'dishwasher': 2.0, 'in': 2.0, 'stuck': 1.0, 'upside': 1.0, 'to': 2.0, 'clean': 1.0, 'with': 1.0, 'leftover': 1.0, 'dirt': 1.0, 'part': 1.0, 'from': 1.0, 'put': 1.0, 'on': 1.0, 'top': 1.0, 'narrows': 1.0}
Word element => {'father': 1.0, 'don': 1.0, 'a': 1.0, 'judge': 1.0, 'it': 1.0, 'bought': 1.0, 'make': 1.0, 'my': 1.0, 't': 1.0, 'this': 2.0, 'for': 1.0, 'daughter': 1.0, 'me': 2.0, 'but': 1.0, 'bad': 1.0, 'does': 1.0, 'i': 1.0, 'decided': 1.0, 'to': 1.0, 'keep': 1.0}
Word element => {'top': 1.0, 'the': 1.0, 'close': 1.0, 'open': 1.0, 'her': 1.0, 'holder': 1.0, 'has': 1.0, 'seat': 1.0, 'delighted': 1.0, 'who': 1.0, 'a': 1.0, 'to': 1.0, 'granddaughter': 1.0, 'was': 1.0, 'for': 2.0, 'in': 1.0, 'cup': 1.0, 'my': 2.0, 'booster': 1.0, 'bought': 1.0, 'car': 1.0, 'this': 1.0, 'with': 1.0, 'it': 2.0, 'and': 2.0, 'found': 1.0, 'she': 1.0, 'easy': 1.0}
Word element => {'thrilled': 1.0, 'hooray': 1.0, 'was': 1.0, 'for': 1.0, 'daughter': 1.0, 'it': 2.0, 'with': 1.0, 'is': 1.0, 'a': 1.0, 'bottle': 1.0, 'little': 1.0, 'cheap': 1.0, 'my': 1.0, 'mlp': 1.0, 'ponies': 1.0, 'hip': 2.0, 'water': 1.0, 'but': 1.0, 'loving': 1.0}
Word element => {'and': 1.0, 'happy': 1.0, 'am': 1.0, 'really': 1.0, 'i': 2.0, 'bought': 1.0, 'sending': 1.0, 'it': 3.0, 'this': 2.0, 'loves': 1.0, 'granddaughter': 1.0, 'you': 2.0, 'fantastic': 1.0, 'to': 1.0, 'my': 1.0, 'just': 1.0, 'is': 1.0, 'kudos': 1.0, 'had': 1.0, 'for': 1.0}
Word element => {'classroom': 1.0, 'the': 1.0, 'she': 1.0, 'girl': 1.0, 'several': 1.0, 'water': 1.0, 'my': 1.0, 'a': 1.0, 'for': 2.0, 'using': 1.0, 'who': 1.0, 'present': 1.0, 'in': 1.0, 'perfect': 1.0, 'loves': 1.0, 'this': 1.0, 's': 1.0, 'months': 1.0, 'pony': 1.0, 'later': 1.0, 'is': 1.0, 'birthday': 1.0, 'still': 1.0, 'her': 1.0, 'little': 2.0, 'bottle': 1.0}
Word element => {'cold': 1.0, 'things': 1.0, 'keep': 1.0, 'plastic': 1.0, 'nothing': 1.0, 'water': 1.0, 'insulated': 1.0, 'loved': 1.0, 'a': 1.0, 'bottle': 2.0, 'little': 1.0, 'my': 1.0, 'made': 1.0, 'fancy': 1.0, 'cheap': 1.0, 'simple': 1.0, 'this': 1.0, 'sister': 1.0, 'it': 1.0, 's': 1.0, 'of': 1.0, 'and': 1.0, 'is': 1.0, 'just': 1.0, 'not': 1.0, 'to': 1.0}
Word element => {'all': 1.0, 's': 1.0, 'them': 1.0, 'child': 1.0, 'material': 1.0, 'excited': 1.0, 'the': 2.0, 'these': 2.0, 't': 1.0, '5': 1.0, 'i': 2.0, 'age': 1.0, 'counts': 1.0, 'tutu': 1.0, 'at': 1.0, 'fashionisa': 1.0, 'blooming': 1.0, 'loved': 2.0, 'purchased': 1.0, 'but': 1.0, 'purple': 2.0, 'to': 1.0, 'a': 4.0, 'texture': 1.0, 'cardigan': 1.0, 'by': 1.0, 'daughter': 1.0, 'grand': 1.0, 'and': 1.0, 'match': 1.0, 'very': 1.0, 'that': 2.0, 'were': 1.0, 'hit': 1.0, 'wasn': 1.0}
Word element => {'sigh': 1.0, 'keep': 1.0, 'really': 2.0, 'get': 1.0, 'legs': 1.0, 'him': 2.0, 'taking': 2.0, 'his': 1.0, 'awkward': 1.0, 'so': 1.0, '2': 1.0, '1': 1.0, '5': 1.0, 'baby': 1.0, 'my': 1.0, 'out': 3.0, 'little': 1.0, 'your': 1.0, 'put': 1.0, 'difficult': 1.0, 'makes': 1.0, 'which': 1.0, 'attached': 1.0, 'permanently': 1.0, 'onto': 1.0, 'and': 3.0, 'adjustable': 1.0, 'the': 10.0, 'wooden': 1.0, 'height': 1.0, 'a': 2.0, 'return': 1.0, 'wanted': 2.0, 'damn': 1.0, 'it': 3.0, 'this': 3.0, 'snaps': 1.0, 'first': 1.0, 'only': 1.0, 'beautiful': 2.0, 'uncomfortable': 1.0, 'months': 1.0, 'tray': 5.0, 'one': 2.0, 'just': 1.0, 'to': 5.0, 'all': 1.0, 'that': 3.0, 'reclining': 1.0, 'caught': 1.0, 'is': 4.0, 'say': 1.0, 'fall': 1.0, 'top': 1.0, 'back': 1.0, 'me': 1.0, 'those': 1.0, 'track': 1.0, 'everything': 1.0, 'have': 2.0, 'small': 2.0, 'when': 2.0, 'you': 1.0, 'in': 2.0, 'of': 4.0, 'larger': 1.0, 'chair': 5.0, 'there': 1.0, 'lines': 1.0, 'plastic': 1.0, 'high': 1.0, 'trays': 1.0, 'chairs': 1.0, 'pains': 1.0, 'down': 1.0, 'curves': 1.0, 'are': 1.0, 'i': 3.0, 'two': 1.0, 'snack': 3.0}
Word element => {'slippery': 1.0, 'can': 1.0, 'you': 1.0, 'of': 1.0, 'cumbersome': 1.0, 'fit': 1.0, 'fixed': 1.0, 'had': 1.0, 'great': 2.0, 'however': 1.0, 'uncomfortable': 1.0, 'tray': 1.0, 'more': 1.0, 'is': 3.0, 'this': 1.0, 'with': 1.0, 'make': 1.0, 'grows': 1.0, 'chair': 1.0, 'stay': 1.0, 'has': 1.0, 'cushions': 1.0, 'held': 1.0, 'to': 2.0, 'as': 2.0, 'up': 1.0, 'set': 1.0, 'becoming': 1.0, 'cushion': 1.0, '17': 1.0, 'old': 1.0, 'i': 1.0, 'looks': 1.0, 'it': 3.0, 'month': 1.0, 'daughter': 1.0, 'go': 1.0, 't': 2.0, 'a': 2.0, 's': 1.0, 'my': 2.0, 'tight': 1.0, 'get': 1.0, 'her': 1.0, 'legs': 1.0, 'in': 2.0, 'also': 1.0, 'out': 1.0, 'and': 3.0, 'wimpy': 1.0, 'doesn': 1.0, 'without': 1.0, 'the': 2.0, 'place': 1.0, 'own': 1.0}
Word element => {'amazon': 1.0, 'buy': 1.0, 'here': 1.0, 'my': 1.0, 'better': 1.0, 'his': 1.0, 'sitting': 1.0, 'happy': 1.0, 'not': 1.0, 'back': 1.0, 'over': 1.0, 'snaps': 1.0, 'toddler': 1.0, 'into': 1.0, 'in': 2.0, 'turn': 1.0, 'unscrew': 1.0, 'am': 1.0, 'when': 1.0, 'you': 2.0, 'snack': 1.0, 'little': 2.0, 'is': 2.0, 'reviews': 1.0, 'function': 1.0, 'a': 4.0, 'also': 1.0, 'part': 1.0, 'from': 1.0, 'later': 1.0, 'hidden': 1.0, 'looked': 1.0, 'found': 1.0, 'this': 4.0, 'look': 1.0, 'with': 1.0, 'buying': 1.0, 'wanted': 1.0, 'using': 1.0, 'which': 3.0, 'big': 2.0, 'until': 1.0, 'stays': 1.0, 'nice': 1.0, 'high': 1.0, 'something': 1.0, 'would': 1.0, 'at': 1.0, 'no': 1.0, 'guy': 1.0, 'hooks': 1.0, 'on': 1.0, 'furniture': 1.0, 'things': 1.0, 'nooks': 1.0, 'many': 1.0, 'before': 1.0, 'usually': 1.0, 'because': 2.0, 'does': 1.0, 'price': 1.0, 'onto': 1.0, 'both': 2.0, 'chairs': 1.0, 'i': 5.0, 'tray': 3.0, 'one': 2.0, 'highchair': 1.0, 'for': 3.0, 'writing': 1.0, 'and': 3.0, 'review': 1.0, 'well': 1.0, 'has': 2.0, 'note': 1.0, 'an': 1.0, 'infant': 1.0, 'cushion': 2.0, 'thin': 1.0, 'elsewhere': 1.0, 'our': 2.0, 'to': 2.0, 'seat': 1.0, 'of': 2.0, 'are': 2.0, 'gross': 1.0, 'easy': 1.0, 'it': 3.0, 'remove': 1.0, 'cleaning': 1.0, 'the': 6.0, 'there': 1.0, 'chair': 4.0, 'accumulating': 1.0}
Word element => {'it': 1.0, 'wouldn': 1.0, 'clear': 1.0, 'even': 1.0, 'match': 1.0, 'doesn': 1.0, 'have': 1.0, 'other': 2.0, 't': 2.0, 'this': 1.0, 'i': 2.0, 'infantino': 1.0, 'is': 1.0, 'squeeze': 1.0, 'bought': 2.0, 'an': 1.0, 'the': 3.0, 'station': 1.0, 'extra': 1.0, 'and': 1.0, 'wanted': 1.0, 'press': 4.0}
Word element => {'have': 1.0, 'handy': 1.0, 's': 1.0, 'types': 1.0, 'lot': 1.0, 'of': 4.0, 'one': 2.0, 'i': 2.0, 'time': 1.0, 'to': 1.0, 'comes': 1.0, 'it': 1.0, 'with': 1.0, 'only': 1.0, 'need': 1.0, 'foods': 1.0, 'kit': 1.0, 'squeezed': 1.0, 'fresh': 1.0, 'these': 1.0, 't': 1.0, 'the': 2.0, 'more': 1.0, 'don': 1.0, 'most': 1.0, 'doing': 1.0, 'a': 1.0, 'different': 1.0, 'than': 1.0, 'but': 1.0, 'when': 1.0, 'm': 1.0}
Word element => {'than': 1.0, 'to': 1.0, 'pack': 1.0, 'have': 1.0, 'day': 1.0, 'entire': 1.0, 'baby': 1.0, 'will': 1.0, 'back': 1.0, 'food': 1.0, 'front': 1.0, 'in': 2.0, 'your': 2.0, 'for': 1.0, 'one': 2.0, 'place': 1.0, 'be': 1.0, 'can': 1.0, 'it': 1.0, 'more': 1.0, 'the': 3.0, 's': 1.0, 'you': 2.0, 'lunch': 1.0, 'is': 1.0, 'especially': 1.0, 'meal': 1.0, 'handy': 1.0, 'if': 1.0, 'and': 2.0, 'away': 1.0}
Word element => {'and': 1.0, 'me': 1.0, 'told': 1.0, 'rewiews': 1.0, 'because': 1.0, 'bought': 1.0, 'i': 1.0, 'if': 1.0, 'they': 1.0, 'mess': 1.0, 'buy': 2.0, 'you': 1.0, 'the': 1.0, 'infantino': 1.0, 'right': 1.0, 'to': 1.0, 'system': 1.0, 'other': 1.0, 'this': 1.0, 'guaranteed': 1.0, 'were': 1.0, 'it': 2.0, 'without': 1.0}
Word element => {'one': 1.0, 'a': 2.0, 'prefer': 1.0, 'you': 1.0, 'if': 1.0, 'however': 1.0, 'purchased': 1.0, 'have': 1.0, 'is': 1.0, 'really': 1.0, 'good': 1.0, 'job': 1.0, 'mixture': 1.0, 'but': 1.0, 'just': 1.0, 'easy': 1.0, 'that': 1.0, 't': 2.0, 'the': 2.0, 'wasn': 1.0, 'does': 1.0, 'find': 1.0, 'found': 1.0, 'i': 3.0, 'this': 1.0, 'shouldn': 1.0, 'it': 4.0, 'as': 1.0, 'funnel': 1.0, 'to': 1.0, 'hindsight': 1.0, 'spoon': 1.0, 'in': 2.0, 'necessary': 1.0, 'probably': 1.0}
Word element => {'think': 1.0, 'does': 1.0, 'one': 1.0, 'life': 1.0, 'in': 1.0, 'little': 1.0, 'ahhh': 1.0, 'posh': 1.0, 'oh': 1.0, 'was': 1.0, 'first': 1.0, 'this': 2.0, 'the': 1.0, 'phish': 1.0, 't': 1.0, 'have': 1.0, 'idea': 1.0, 'need': 2.0, 'since': 1.0, 'and': 1.0, 'don': 1.0, 'i': 3.0, 'my': 1.0, 'less': 1.0, 'waste': 1.0, 'bought': 1.0, 'easier': 1.0, 'they': 1.0, 'makes': 1.0, 'things': 2.0, 'not': 1.0, 'tad': 1.0, 'bit': 1.0}
Word element => {'minimizing': 1.0, 'go': 1.0, 'to': 1.0, 'and': 1.0, 'need': 1.0, 'you': 1.0, 'where': 1.0, 'this': 1.0, 'waste': 1.0, 'spillage': 1.0, 'really': 1.0, 'is': 1.0, 'helps': 1.0, 'the': 1.0, 'food': 1.0, 'worth': 1.0, 'every': 1.0, 'penny': 1.0, 'it': 2.0, 'get': 1.0}
Word element => {'without': 1.0, 'difficult': 1.0, '3': 1.0, 'makes': 1.0, 'different': 1.0, 'made': 1.0, 'station': 2.0, 'more': 1.0, 'the': 1.0, 'easier': 1.0, 'much': 2.0, 'be': 1.0, 'infantino': 1.0, 'using': 2.0, 'have': 1.0, 'foods': 1.0, 'do': 1.0, 'squeeze': 2.0, 'and': 1.0, 'to': 2.0, 'funnel': 2.0, 'put': 1.0, 'into': 1.0, 'food': 1.0, 'this': 1.0, 'it': 1.0, 'would': 1.0}
Word element => {'t': 1.0, 'i': 1.0, 'a': 1.0, 'her': 1.0, 'mess': 1.0, 'terrible': 1.0, 'fill': 1.0, 'friend': 1.0, 's': 1.0, 'expensive': 1.0, 'pouches': 1.0, 'funnel': 1.0, 'without': 1.0, 'can': 2.0, 'it': 2.0, 'perfectly': 1.0, 'an': 1.0, 'exactly': 1.0, 'just': 1.0, 'but': 1.0, 'fits': 1.0, 'my': 1.0}
Word element => {'easy': 1.0, 'is': 1.0, 'clean': 1.0, 'up': 1.0, 'and': 1.0, 'spilling': 1.0, 'about': 1.0, 'have': 1.0, 't': 1.0, 'this': 1.0, 'makes': 1.0, 'food': 1.0, 'filling': 1.0, 'station': 1.0, 'to': 1.0, 'much': 1.0, 'worry': 1.0, 'so': 1.0, 'easier': 1.0, 'using': 1.0, 'don': 1.0, 'i': 1.0}
Word element => {'little': 1.0, 'very': 1.0, 'and': 1.0, 'mess': 1.0, 'a': 1.0, 'lot': 1.0, 'makes': 2.0, 'waste': 1.0, 'life': 1.0, 'easier': 1.0, 'this': 1.0, 'fresh': 1.0, 'works': 1.0, 'great': 1.0, 'less': 1.0, 'station': 1.0, 'the': 1.0, 'with': 1.0, 'squeeze': 1.0}
Word element => {'holds': 1.0, 'works': 1.0, 'no': 1.0, 'pouches': 1.0, 'reuseable': 1.0, 'brand': 1.0, 'mess': 1.0, 'great': 1.0, 'the': 3.0, 'it': 1.0, 'with': 2.0, 'this': 1.0, 'resqueeze': 1.0, 'a': 1.0, 'use': 2.0, 'i': 2.0, 'open': 1.0, 'big': 1.0, 'cup': 1.0, 'stand': 1.0, 'funnel': 1.0, 'to': 1.0, 'tall': 1.0, 'hold': 1.0, 'pouch': 1.0, '34': 2.0, 'up': 1.0, 'perfectly': 1.0, 'and': 1.0}
Word element => {'i': 1.0, 'bought': 1.0, 'purchases': 1.0, '2': 1.0, 'with': 1.0, 'pleased': 1.0, 'material': 1.0, 's': 1.0, 'pretty': 1.0, 'brightens': 1.0, 'very': 1.0, 'and': 1.0, 'up': 1.0, 'it': 2.0, 'dull': 1.0, 'my': 2.0, 'black': 1.0, 'of': 1.0, 'good': 1.0, 'stroller': 1.0}
Word element => {'a': 1.0, 'rather': 1.0, 'much': 1.0, 'would': 1.0, 'work': 1.0, 't': 1.0, 'regular': 1.0, 'put': 1.0, 'the': 2.0, 'they': 1.0, 'bags': 1.0, 'and': 2.0, 'bowl': 1.0, 'spoon': 2.0, 'attachment': 1.0, 'on': 1.0, 'well': 1.0, 'infantino': 1.0, 'use': 1.0, 'didn': 1.0, 'just': 1.0}
Word element => {'organics': 1.0, 'plum': 1.0, 'spoons': 1.0, 'boon': 1.0, 'fit': 3.0, 'other': 1.0, 'shape': 1.0, 'infantino': 2.0, 'pouches': 3.0, 'i': 2.0, 'for': 1.0, 'love': 1.0, 'one': 1.0, 't': 3.0, 'great': 1.0, 'the': 3.0, 'these': 2.0, 'they': 1.0, 'because': 1.0, 'just': 1.0, 'but': 1.0, 'work': 1.0, 'fine': 1.0, 'note': 1.0, 'think': 1.0, 'don': 3.0, 'any': 1.0, 'food': 1.0}
Word element => {'expects': 1.0, 'down': 1.0, 'suck': 1.0, 'straight': 1.0, 'them': 2.0, 'feed': 1.0, 'never': 1.0, 'better': 1.0, 'mad': 1.0, 'harder': 1.0, 'made': 2.0, 'love': 1.0, 'knows': 1.0, 'wanted': 1.0, 'off': 1.0, 'eating': 1.0, 'fast': 1.0, 'training': 1.0, 'additional': 1.0, 'get': 1.0, 'doesn': 1.0, 'way': 1.0, 'that': 1.0, 'old': 1.0, 'makes': 1.0, 'if': 1.0, 'being': 2.0, 'giving': 1.0, 'table': 1.0, 'like': 1.0, 'd': 1.0, 'can': 1.0, 'work': 1.0, 'but': 2.0, 'food': 3.0, 'the': 5.0, 'make': 1.0, 'out': 2.0, 'bags': 1.0, 'from': 3.0, 'and': 4.0, 'too': 1.0, 'gets': 1.0, 'mess': 2.0, 'i': 3.0, 'thought': 1.0, 'month': 1.0, 'she': 2.0, 'it': 6.0, 'this': 2.0, 'with': 1.0, 'at': 1.0, '11': 1.0, 'you': 1.0, 'when': 1.0, 'idea': 1.0, 'feeding': 2.0, 'spoon': 2.0, 'loved': 1.0, 'really': 1.0, 'every': 1.0, 'no': 2.0, 'about': 1.0, 'ended': 1.0, 'sadly': 1.0, 'are': 1.0, 'push': 1.0, 'went': 1.0, 'up': 1.0, 'might': 1.0, 't': 1.0, 'we': 3.0, 'a': 3.0, 'so': 1.0, 'time': 1.0, 'more': 1.0, 'is': 1.0, 'slow': 1.0, 'our': 1.0, 'any': 1.0, 'to': 3.0, 'everywhere': 1.0, 'back': 1.0, 'just': 2.0, 'her': 4.0, 'use': 1.0, 'pouch': 3.0}
Word element => {'good': 1.0, 'batches': 1.0, 'make': 1.0, 'buy': 1.0, 'or': 1.0, 'anything': 1.0, 'home': 1.0, 'haven': 1.0, 'm': 1.0, 'onto': 1.0, 'found': 1.0, 'this': 2.0, 'have': 2.0, 'am': 1.0, 'road': 1.0, 'easily': 1.0, 'also': 1.0, 'into': 2.0, 'hold': 1.0, 'here': 1.0, 'be': 3.0, 'bought': 1.0, 'spoon': 1.0, 'base': 2.0, 'issues': 1.0, 'of': 2.0, 'his': 1.0, 'awesome': 1.0, 'needs': 1.0, 'friends': 1.0, 'so': 3.0, 'items': 1.0, 'and': 3.0, 'too': 2.0, 'as': 1.0, 'all': 1.0, 'to': 3.0, 'spoons': 2.0, 'i': 7.0, 'from': 1.0, 'fresh': 1.0, 'line': 3.0, 'larger': 1.0, 'many': 1.0, 'more': 2.0, 'squeezed': 1.0, 'is': 2.0, 'useful': 1.0, 'are': 1.0, 'the': 6.0, 'some': 2.0, 'these': 2.0, 'was': 1.0, 'innovative': 1.0, 'hooked': 1.0, 'had': 1.0, 'food': 2.0, 'but': 2.0, 'it': 2.0, 'he': 1.0, 'works': 1.0, 'actually': 1.0, 'love': 3.0, 'for': 5.0, 'fact': 1.0, 'my': 4.0, 'them': 2.0, 'baby': 2.0, 't': 1.0, 'might': 1.0, 's': 1.0, 'has': 1.0, 'about': 2.0, 'told': 1.0, 'infantino': 1.0, 'no': 1.0, 'in': 1.0, 'excited': 1.0, 'pulled': 1.0, 'big': 1.0, 'great': 1.0, 'nice': 1.0, 'mouth': 2.0, 'because': 1.0, 'worried': 1.0, 'just': 1.0, 'depth': 1.0, 'enough': 1.0}
Word element => {'soft': 1.0, 'n': 1.0, 'sip': 1.0, 'or': 1.0, 'pop': 1.0, 'switch': 1.0, 'tried': 1.0, '7': 1.0, 'for': 3.0, 'month': 1.0, 'spoon': 1.0, 'great': 1.0, 'the': 4.0, 'these': 3.0, 'can': 1.0, 'work': 1.0, 'option': 1.0, 'will': 2.0, 'and': 2.0, 'like': 1.0, 'brought': 1.0, 'self': 1.0, 'they': 1.0, 'refillable': 1.0, 'old': 1.0, 'brand': 2.0, 'topper': 1.0, 'have': 1.0, 'pack': 1.0, 'my': 1.0, 'silicone': 1.0, 'even': 1.0, 'daycare': 1.0, 'attachments': 1.0, 'disposable': 1.0, 'on': 2.0, 'by': 2.0, 'pouches': 2.0, 'i': 3.0, 'two': 1.0, 'toppers': 1.0, 'no': 1.0, 'same': 2.0, 'a': 1.0, 'once': 1.0, 'of': 1.0, 'spoons': 1.0, 'to': 2.0, 'their': 1.0, 'pouch': 1.0, 'use': 3.0, 'with': 1.0, 'he': 1.0, 'home': 1.0, 'top': 1.0, 'needed': 1.0, 'feed': 1.0, 'longer': 1.0, 'be': 1.0}
Word element => {'trying': 1.0, 'are': 1.0, 'and': 2.0, 'squeeze': 2.0, 'handy': 1.0, 'chair': 1.0, 'stay': 1.0, 'have': 2.0, 'able': 1.0, 'these': 1.0, 'the': 2.0, 'well': 1.0, 'don': 2.0, 'attached': 1.0, 'easily': 1.0, 'you': 2.0, 'when': 1.0, 'container': 1.0, 'pouches': 1.0, 'neat': 1.0, 'spoons': 1.0, 'to': 4.0, 'on': 1.0, 'your': 1.0, 'infantino': 1.0, 'from': 1.0, 'very': 1.0, 'really': 1.0, 'try': 1.0, 'use': 1.0, 'keep': 1.0, 'work': 1.0, 'but': 1.0, 'food': 1.0, 'rather': 1.0, 'just': 1.0, 'out': 1.0, 'bit': 1.0, 'spoon': 2.0, 'through': 1.0, 't': 2.0, 'a': 3.0, 'we': 1.0, 'high': 1.0, 'were': 1.0, 'it': 1.0, 'in': 1.0, 'church': 1.0}
Word element => {'again': 1.0, 'buy': 1.0, 'babies': 1.0, 'for': 1.0, 'i': 1.0, 'size': 1.0, 'so': 1.0, 'them': 1.0, 'mouth': 1.0, 'perfect': 1.0, 'use': 2.0, 'easy': 1.0, 'to': 1.0, 'pouch': 1.0, 'would': 1.0, 'daily': 1.0, 'they': 1.0, 'the': 1.0, 'with': 1.0}
Word element => {'is': 1.0, 'all': 1.0, 'things': 1.0, 'for': 1.0, 'missing': 1.0, 'to': 2.0, 'had': 1.0, 'was': 2.0, 'but': 1.0, 'well': 1.0, 'recipient': 1.0, 'card': 1.0, 'item': 1.0, 'loved': 1.0, 'heads': 1.0, 'the': 5.0, 'out': 1.0, 'made': 1.0, 'and': 2.0, 'up': 1.0, 'who': 1.0, 'from': 1.0, 'it': 1.0, 'thanks': 1.0, 'guess': 1.0, 'i': 1.0, 'call': 1.0, 'straighten': 1.0}
Word element => {'price': 1.0, 'album': 1.0, 'have': 1.0, 'they': 1.0, 'each': 2.0, 'i': 1.0, 'like': 1.0, 'granddaughters': 1.0, 'into': 1.0, 'of': 2.0, 'pepper': 1.0, 'look': 1.0, 'to': 2.0, 'for': 2.0, 'book': 2.0, 'own': 1.0, 'an': 1.0, 'my': 1.0, 'family': 1.0, 'their': 1.0, 'photos': 1.0, 'different': 1.0, 'was': 1.0, 'brag': 1.0, 'girls': 1.0, 'at': 1.0, 'carry': 1.0, 'and': 1.0, 'around': 1.0, 'with': 1.0, 'quality': 1.0, 'them': 2.0, 'a': 2.0, 'pot': 1.0, 'features': 1.0, 'cute': 1.0, 'animal': 1.0, 'can': 1.0, 'put': 1.0, 'on': 1.0, 'the': 4.0, 'cover': 1.0, 'so': 1.0, 'tell': 1.0, 'apart': 1.0, 'very': 1.0, 'assortment': 1.0, 'nice': 1.0}
Word element => {'different': 1.0, 'with': 1.0, 'foods': 1.0, 'and': 1.0, 'easily': 1.0, 'i': 2.0, 'well': 1.0, 's': 1.0, 'tried': 1.0, 'the': 1.0, 'have': 1.0, 'this': 1.0, 'many': 1.0, 'best': 1.0, 'invention': 1.0, 'cleans': 1.0, 'it': 3.0, 'love': 1.0, 'works': 1.0, 'ever': 1.0, 'so': 1.0}
Word element => {'genius': 1.0, 'no': 1.0, 'shape': 1.0, 'into': 1.0, 'enough': 1.0, 'giving': 1.0, 'me': 1.0, 'and': 3.0, 'squeeze': 2.0, 'spoon': 2.0, 'refuses': 1.0, 'to': 2.0, 'was': 1.0, 'mess': 2.0, 'become': 1.0, 'i': 1.0, 'bought': 1.0, 'floor': 1.0, 'the': 4.0, 'let': 1.0, 'my': 1.0, 'feed': 1.0, 'neice': 1.0, 'end': 1.0, 'her': 4.0, 'feeding': 1.0, 'allows': 1.0, 'this': 2.0, 'with': 1.0, 'mouth': 1.0, 'because': 2.0, 'interested': 1.0, 'just': 1.0, 'is': 1.0, 'back': 1.0, 'squeezies': 1.0, 'herself': 1.0, 'realized': 1.0, 'in': 1.0, 'waste': 1.0, 'on': 1.0, 'of': 1.0, 'original': 1.0, 'always': 1.0, 'up': 1.0, 'time': 1.0, 'would': 2.0, 'prepackaged': 1.0, 'were': 1.0, 'great': 1.0, 'until': 1.0, 'it': 3.0, 'she': 2.0, 's': 1.0, 'go': 1.0, 'a': 3.0, 'could': 1.0, 'food': 1.0, 'out': 1.0}
Word element => {'they': 1.0, 'infantino': 1.0, 'other': 1.0, 'lid': 1.0, 'from': 1.0, 'while': 1.0, 'managed': 1.0, 'will': 1.0, 'also': 1.0, 'bypass': 1.0, 'fill': 1.0, 'one': 1.0, 'lying': 1.0, 'smooth': 1.0, 'syringe': 1.0, 'tip': 1.0, 'catheter': 1.0, 'have': 1.0, 'to': 3.0, 'these': 1.0, 'happen': 1.0, 'cc': 1.0, 'very': 1.0, 'daily': 1.0, 'it': 6.0, 'this': 2.0, 'lids': 1.0, 'happens': 1.0, 'only': 1.0, 'entirely': 1.0, 'come': 1.0, 'with': 2.0, 'great': 1.0, 'orange': 1.0, 'the': 5.0, 'ours': 1.0, 'on': 1.0, '60': 1.0, 'ton': 1.0, 'that': 1.0, 'filled': 1.0, 'basis': 1.0, 'use': 4.0, 's': 1.0, 'we': 2.0, 't': 1.0, 'a': 5.0, 'up': 1.0, 'of': 2.0, 'and': 3.0, 'me': 1.0, 'i': 2.0, 'saved': 1.0, 'station': 1.0, 'pouches': 2.0, 'holding': 1.0, 'well': 1.0, 'has': 1.0, 'fit': 1.0, 'product': 1.0, 'for': 2.0, 'applesauce': 2.0, 'so': 1.0, 'sure': 1.0, 'how': 1.0, 'clean': 2.0, 'if': 4.0, 'lose': 1.0, 'easily': 1.0, 'fantastic': 1.0, 'you': 4.0, 'puree': 1.0, 'would': 1.0, 'something': 1.0, 'fattier': 1.0, 'squeeze': 1.0, 'like': 1.0, 'yogurt': 1.0, 'money': 1.0, 'can': 3.0, 'but': 1.0, 'around': 1.0, 'is': 2.0, 'say': 1.0, 'comes': 1.0}
Word element => {'silicone': 1.0, 'in': 1.0, 'baby': 1.0, 'about': 3.0, 'don': 2.0, 'now': 2.0, 'to': 1.0, 'plastic': 1.0, '6': 2.0, 'leak': 1.0, 'purchase': 1.0, 'my': 1.0, 'went': 1.0, 'is': 1.0, 'more': 2.0, 'great': 1.0, 'the': 3.0, 'i': 3.0, 'tried': 1.0, 'months': 1.0, 'bought': 2.0, 'amazon': 1.0, 'pouch': 1.0, 'and': 3.0, 'attachment': 1.0, 'back': 1.0, 'some': 1.0, 'at': 1.0, 'after': 1.0, 'sitting': 1.0, 'food': 1.0, 'store': 1.0, 'it': 1.0, 'she': 1.0, 't': 2.0, 'a': 1.0, 'for': 2.0, 'used': 1.0, 'because': 1.0, 'brands': 1.0, 'then': 1.0, 'spoon': 1.0, 'just': 1.0, 'toddler': 1.0, 'sucks': 1.0, 'they': 1.0, 'on': 1.0, 'your': 1.0, 'like': 1.0, 'worry': 1.0, 'other': 1.0, 'you': 1.0, 'have': 1.0, 'kids': 1.0}
Word element => {'daughter': 1.0, 'my': 1.0, 'wish': 1.0, 'a': 1.0, 'used': 1.0, 'simply': 1.0, 'but': 1.0, 'had': 1.0, 'funnel': 1.0, 'to': 3.0, 'station': 1.0, 'glad': 1.0, 'am': 1.0, 'pouches': 1.0, 'reviewing': 1.0, 'clean': 1.0, 'other': 1.0, 'the': 2.0, 't': 1.0, 'order': 1.0, 'after': 1.0, 'decided': 1.0, 'infantino': 1.0, 'first': 1.0, 'with': 1.0, 'this': 1.0, 'it': 2.0, 'has': 1.0, 'easy': 1.0, 'been': 1.0, 'didn': 1.0, 'wonderful': 1.0, 'fill': 3.0, 'i': 4.0, 'buy': 1.0}
Word element => {'for': 2.0, 'great': 1.0, 'the': 2.0, 'small': 1.0, 'is': 1.0, 'can': 1.0, 'because': 1.0, 'have': 1.0, 'children': 1.0, 'with': 1.0, 'it': 2.0, 'this': 1.0, 'easy': 1.0, 'use': 2.0, 'to': 3.0, 'was': 1.0, 'nice': 2.0, 'idea': 1.0, 'child': 1.0, 'also': 1.0, 'you': 1.0, 'buy': 1.0, 'spoons': 1.0, 'worked': 1.0}
Word element => {'just': 1.0, 'whole': 1.0, 'beside': 1.0, 'that': 1.0, 'monitor': 1.0, 'have': 2.0, 'stay': 1.0, 'not': 1.0, 'constantly': 1.0, 'on': 1.0, 'are': 1.0, 'when': 1.0, 'able': 1.0, 'was': 1.0, 'reasons': 1.0, 'one': 1.0, 'everywhere': 1.0, 'son': 1.0, 'gets': 1.0, 'and': 2.0, 'now': 1.0, 'has': 2.0, 'so': 1.0, 'time': 2.0, 'squeezes': 1.0, 'i': 7.0, 'old': 1.0, 'taught': 1.0, 'don': 1.0, 'disposable': 2.0, 'wanted': 2.0, 'to': 11.0, 'the': 12.0, 'backfired': 1.0, 'this': 4.0, 'bags': 1.0, 'hard': 1.0, 'with': 2.0, 'month': 1.0, 'it': 2.0, 'love': 2.0, 'product': 3.0, 'suck': 1.0, 'pouch': 1.0, 'pouches': 1.0, 'station': 1.0, 'hand': 1.0, '17': 1.0, 'squeeze': 2.0, 'get': 3.0, 'creating': 1.0, 'runs': 1.0, 'enough': 1.0, 'my': 2.0, 'starts': 1.0, 'go': 1.0, 'we': 1.0, 'a': 1.0, 't': 1.0, 'breath': 1.0, 'out': 5.0, 'of': 3.0, 'before': 2.0, 'but': 3.0, 'food': 5.0, 'can': 2.0, 'be': 1.0, 'suction': 1.0, 'him': 3.0, 'his': 1.0, 'puts': 1.0, 'he': 5.0, 'how': 1.0, 'air': 1.0, 'find': 1.0, 'because': 2.0, 'mouth': 1.0}
Word element => {'issues': 1.0, 'big': 1.0, 'no': 1.0, 'far': 1.0, 'so': 1.0, 'easy': 1.0, 'up': 1.0, 'holding': 1.0, 'holds': 1.0, 'or': 1.0, 'fill': 1.0, 'clean': 1.0, 'unlike': 1.0, 'out': 1.0, 'feeding': 2.0, 'when': 2.0, 'use': 1.0, 'then': 2.0, 'has': 1.0, 'you': 2.0, 'more': 1.0, 'the': 4.0, 'ones': 3.0, 'are': 1.0, 'disposable': 3.0, 'different': 1.0, 'bit': 1.0, 'repeated': 1.0, 'well': 1.0, 'a': 2.0, 'because': 1.0, 'squeeze': 1.0, 'and': 3.0, 'shape': 1.0, 'filled': 1.0, 'is': 2.0, 'it': 1.0, 'with': 2.0, 'filling': 1.0, 'air': 2.0, 'have': 1.0, 'to': 3.0}
Word element => {'makes': 1.0, 'best': 1.0, 'whole': 1.0, 'use': 1.0, 't': 1.0, 'don': 1.0, 'filled': 1.0, 'breast': 2.0, 'that': 2.0, 'must': 1.0, 'refillable': 1.0, 'but': 1.0, 'large': 1.0, 'pump': 1.0, 'freezing': 1.0, 'go': 1.0, 'we': 1.0, 'take': 2.0, 'bag': 1.0, 'into': 2.0, 'loves': 1.0, 'were': 1.0, 'they': 3.0, 'time': 1.0, 'started': 1.0, 'them': 4.0, 'to': 6.0, 'thing': 2.0, 'about': 1.0, 'bought': 1.0, 'greatest': 1.0, 'one': 1.0, 'and': 9.0, 'day': 2.0, 'stop': 1.0, 'my': 5.0, '4': 1.0, 'i': 7.0, 'nice': 1.0, 'two': 1.0, 'third': 2.0, 'out': 2.0, 'sits': 1.0, 'is': 3.0, 'total': 1.0, 'stuff': 1.0, 'just': 1.0, 'home': 1.0, 'by': 1.0, 'spoon': 2.0, 'child': 2.0, 'feeding': 1.0, 'diaper': 1.0, 'of': 3.0, 'the': 9.0, 'baby': 2.0, 'necessisity': 1.0, 'tightly': 1.0, 'these': 4.0, 'seal': 1.0, 'when': 3.0, 'someone': 2.0, 'so': 1.0, 'can': 2.0, 'ask': 1.0, 'eating': 1.0, 'for': 5.0, 'it': 1.0, 'him': 2.0, 'come': 1.0, 'funnel': 2.0, 'with': 7.0, 'this': 1.0, 'wish': 1.0, 'more': 1.0, 'sees': 1.0, 'a': 7.0, 'small': 1.0, 'shields': 1.0, 'have': 2.0, 'want': 1.0, 'every': 1.0, 'if': 1.0, 'get': 1.0, 'their': 1.0, 'own': 1.0, 'batches': 1.0, 'an': 1.0, 'filling': 3.0, 'know': 1.0, 'made': 1.0, 'which': 1.0, 'son': 1.0, 'gets': 1.0, 'from': 2.0, 'pouches': 6.0, 'station': 2.0, 'attached': 1.0, 'now': 1.0, 'older': 1.0, 'food': 2.0, 'or': 1.0, 'mad': 1.0, 'instead': 1.0, 'on': 1.0, 'long': 1.0, 'be': 1.0, 'disposable': 1.0, 'solids': 1.0, 'getting': 1.0, 'far': 1.0, 'he': 1.0, 'eats': 1.0, 'are': 2.0, 'top': 1.0, 'ordinary': 1.0, 'bowl': 1.0, 'available': 1.0, 'us': 1.0, 'also': 2.0, 'throw': 1.0, 'great': 2.0, 'making': 1.0}
Word element => {'them': 1.0, 'just': 1.0, 'is': 1.0, 'one': 2.0, 'reusable': 1.0, 'are': 1.0, 'it': 5.0, 'this': 1.0, 'i': 3.0, 'out': 3.0, 'good': 1.0, 'clean': 3.0, 'and': 2.0, 'hate': 1.0, 'after': 1.0, 'so': 1.0, 'at': 1.0, 'not': 5.0, 'idea': 1.0, 'loved': 1.0, 'use': 3.0, 'tried': 1.0, 'nooks': 1.0, 'very': 1.0, 'rinse': 1.0, 'did': 1.0, 'we': 1.0, 'ran': 1.0, 'they': 1.0, 'some': 1.0, 'these': 1.0, 'the': 2.0, 'had': 1.0, 'was': 1.0, 'do': 2.0, 'much': 1.0, 'has': 1.0, 'well': 1.0, 'came': 1.0, 'back': 1.0, 'put': 1.0, 'will': 1.0, 'dishes': 1.0, 'still': 1.0, 'nothing': 1.0, 'fit': 1.0, 'dishwasher': 1.0, 'in': 2.0, 'as': 1.0, 'all': 1.0, 'to': 2.0, 'any': 1.0, 'of': 2.0, 'there': 2.0, 'twice': 1.0}
Word element => {'attachments': 1.0, 'for': 1.0, 'my': 1.0, 'very': 1.0, 'best': 1.0, 'be': 1.0, 'to': 1.0, 'going': 1.0, 'a': 1.0, 'friend': 1.0, 'is': 2.0, 'time': 1.0, 'and': 1.0, 'get': 1.0, 'spoon': 1.0, 'haha': 1.0, 'this': 1.0, 'it': 1.0, 'long': 1.0, 'works': 1.0, 'the': 1.0, 'great': 1.0, 'so': 1.0, 'cool': 1.0}
Word element => {'others': 1.0, 'of': 1.0, 'sea': 1.0, 'a': 1.0, 'keep': 1.0, 'help': 1.0, 'cute': 1.0, 'super': 1.0, 'and': 3.0, 'are': 1.0, 'the': 1.0, 'these': 1.0, 'clean': 1.0, 'covers': 1.0, 'back': 1.0, 'stroller': 2.0, 'easy': 2.0, 'pop': 1.0, 'so': 1.0, 'in': 1.0, 'also': 1.0, 'wash': 1.0, 'on': 1.0, 'your': 1.0, 'they': 1.0, 'makes': 1.0, 'it': 1.0, 'to': 2.0, 'spot': 1.0}
Word element => {'boy': 1.0, 'good': 1.0, 'was': 1.0, 'girly': 1.0, 'girl': 1.0, 'too': 1.0, 'or': 1.0, 'i': 2.0, 'bought': 1.0, 'my': 1.0, 'perfect': 1.0, 'didn': 1.0, 'for': 2.0, 'something': 1.0, 'daughter': 1.0, 'this': 2.0, 't': 1.0, 'because': 1.0, 'want': 1.0}
Word element => {'being': 1.0, 'may': 1.0, 'anyway': 1.0, 'pretty': 1.0, 'is': 1.0, 'often': 1.0, 'use': 1.0, 'and': 1.0, 'very': 1.0, 'as': 1.0, 'up': 1.0, 'louder': 1.0, '3': 1.0, 'sound': 1.0, 'to': 1.0, 'it': 4.0, 'keepsake': 1.0, 'old': 1.0, 'i': 1.0, 'does': 1.0, 'much': 1.0, 'expected': 1.0, 'not': 1.0, 'rattle': 2.0, 'a': 2.0, 'near': 1.0, 'month': 1.0, 'take': 1.0, 'effort': 1.0, 't': 1.0, 'doesn': 1.0, 'but': 2.0, 'end': 1.0, 'my': 1.0}
Word element => {'be': 1.0, 'else': 1.0, 'finding': 1.0, 'small': 1.0, 'each': 1.0, 'for': 1.0, 'plain': 1.0, 'day': 1.0, 'very': 1.0, 'and': 3.0, 'cream': 1.0, 'in': 1.0, 'calendar': 1.0, 'will': 1.0, 'squares': 1.0, 'blue': 1.0, 'i': 1.0, 'layout': 1.0, 'something': 1.0, 'returning': 1.0, 'dots': 1.0, 'can': 1.0, 'pages': 1.0, 'are': 2.0, 'due': 1.0, 'stripes': 1.0, 'plaids': 1.0, 'of': 2.0, 'rest': 1.0, 'you': 1.0, 'the': 5.0, 't': 1.0, 'even': 1.0, 'simple': 1.0, 'tell': 1.0, 'giraffe': 1.0, 'print': 1.0, 'its': 2.0, 'to': 1.0}
Word element => {'little': 1.0, 'lids': 1.0, 'had': 1.0, 'wish': 1.0, 'have': 1.0, 'something': 1.0, 'that': 1.0, 'is': 1.0, 'it': 1.0, 'them': 1.0, 'they': 3.0, 'has': 1.0, 'one': 1.0, 'at': 1.0, 'no': 1.0, 'chewed': 1.0, 'also': 1.0, 'in': 1.0, 'online': 1.0, 'find': 1.0, 'care': 1.0, 'are': 1.0, 'my': 1.0, 'toddler': 1.0, 'loves': 1.0, 'i': 2.0, 'cups': 2.0, 'great': 1.0, 'the': 3.0, 'more': 1.0, 't': 1.0, 'these': 2.0, 'store': 1.0, 'classic': 1.0, 'spending': 1.0, 'get': 1.0, 'couldn': 1.0, 'and': 2.0, 'bought': 1.0, 'a': 2.0, 'valves': 1.0, 'monsters': 1.0, 'bit': 1.0, 'as': 1.0, 'replacement': 2.0, 'day': 1.0, 'son': 1.0}
Word element => {'characters': 1.0, 'cups': 2.0, 'ever': 1.0, '9': 1.0, 'monsters': 1.0, 'insulator': 1.0, 'cup': 1.0, 'ouncebest': 1.0, 'spout': 1.0, 'count': 1.0, 'and': 1.0, 'playtex': 1.0, 'have': 1.0, 'i': 1.0, 'tried': 1.0, 'are': 2.0, '98': 1.0, 'adorable': 1.0, 'very': 1.0, 'best': 1.0, '245': 1.0, 'sippy': 1.0, '2': 1.0, 'the': 1.0, 'these': 1.0}
Word element => {'will': 1.0, 'you': 1.0, 'chances': 1.0, 'this': 1.0, 'highly': 1.0, 'would': 1.0, 'easy': 1.0, 'use': 1.0, 'like': 1.0, 'parts': 1.0, 'inside': 1.0, 'instead': 1.0, 'there': 1.0, 'arm': 1.0, 'combine': 1.0, 'multiple': 1.0, 'throwing': 1.0, 'one': 2.0, 'assemble': 1.0, 'for': 2.0, 'of': 2.0, 'plus': 1.0, 'has': 1.0, 'tippees': 1.0, 'many': 1.0, 'daughter': 1.0, 'by': 1.0, 'sippy': 2.0, 'have': 1.0, 'to': 3.0, 'cups': 1.0, 'all': 1.0, 'these': 1.0, 'deal': 1.0, 'heck': 1.0, 'the': 3.0, 's': 2.0, 'we': 2.0, 'a': 2.0, 't': 1.0, 'my': 2.0, 'clumsiness': 1.0, 'are': 2.0, 'overall': 1.0, 'it': 1.0, 'she': 2.0, 'used': 1.0, 'sets': 1.0, 'far': 1.0, 'too': 1.0, 'and': 4.0, 'only': 1.0, 'do': 1.0, 'favourite': 1.0, 'piece': 1.0, 'with': 2.0, 'clean': 1.0, 'her': 1.0, 'provides': 1.0, 'cup': 1.0, 'insulator': 1.0, 'dropped': 1.0, 'but': 1.0, 'recommend': 1.0, 'doesn': 1.0, 'spill': 1.0, 'playtex': 1.0, 'tommee': 1.0, 'that': 1.0, 'loves': 1.0, 'designs': 1.0, 'so': 2.0, 'two': 1.0, 'i': 2.0}
Word element => {'summer': 1.0, 'for': 1.0, 'light': 1.0, 'size': 1.0, 'just': 1.0, 'perfect': 2.0, 'the': 2.0, 'i': 1.0, 's': 1.0, 'it': 2.0, 'love': 1.0, 'a': 1.0, 'this': 1.0, 'very': 1.0, 'and': 1.0, 'nursing': 1.0, 'nice': 1.0, 'cover': 1.0, 'has': 1.0, 'color': 1.0}
Word element => {'will': 1.0, 'be': 1.0, 'absorbent': 1.0, 'more': 1.0, 'are': 1.0, 'was': 1.0, 'very': 1.0, 'and': 1.0, 'quality': 1.0, 'i': 2.0, 'with': 1.0, 'ordering': 1.0, 'great': 1.0, 'love': 1.0, 'they': 1.0, 'well': 1.0, 'super': 1.0, 'a': 1.0, 'them': 1.0, 'cute': 1.0, 'design': 1.0}
Word element => {'too': 1.0, 'hold': 1.0, 'are': 1.0, 'my': 1.0, 'have': 1.0, 'all': 1.0, 'i': 2.0, 'cloths': 1.0, 'loves': 1.0, 'burp': 1.0, 'them': 1.0, 'thick': 1.0, 'of': 1.0, 'always': 1.0, 'reach': 1.0, 'and': 1.0, 'nice': 1.0, 'ones': 2.0, 'the': 2.0, 'these': 1.0, 'for': 1.0, 'baby': 1.0, 'to': 2.0, 'on': 1.0}
Word element => {'washes': 1.0, 'tuck': 1.0, 'to': 1.0, 'awesome': 1.0, 'is': 1.0, 'easy': 1.0, 'plastic': 1.0, 'while': 1.0, 'inside': 1.0, 'baby': 1.0, 'which': 1.0, 'liner': 1.0, 'has': 2.0, 'up': 1.0, 'shield': 1.0, 'of': 1.0, 'for': 1.0, 'love': 1.0, 'viewing': 1.0, 'cover': 3.0, 'hard': 1.0, 'it': 2.0, 'this': 1.0, 'great': 1.0, 'the': 4.0, 'my': 2.0, 'nursing': 1.0, 'in': 1.0, 'also': 2.0, 'a': 1.0, 'pocket': 1.0, 'breast': 1.0, 'on': 1.0}
Word element => {'just': 1.0, 'quality': 1.0, 'regret': 1.0, 'worth': 1.0, 'floor': 1.0, 'out': 2.0, 'dry': 1.0, 'end': 1.0, 'only': 1.0, 'they': 2.0, 'making': 1.0, 'not': 2.0, 'stay': 1.0, 'point': 1.0, 'opening': 1.0, 'what': 1.0, 'matter': 1.0, 'this': 2.0, 'flaws': 1.0, 'size': 1.0, 'fall': 1.0, 'is': 2.0, 'tray': 1.0, 'kept': 1.0, 'isn': 1.0, 'cheaply': 1.0, 'garbage': 2.0, 'i': 3.0, 'purchasing': 1.0, 'made': 1.0, 'are': 1.0, 'the': 12.0, 'a': 2.0, 'we': 1.0, 's': 3.0, 't': 3.0, 'won': 1.0, 'has': 1.0, 'next': 1.0, 'as': 2.0, 'all': 2.0, 'to': 1.0, 'seat': 2.0, 'back': 4.0, 'money': 1.0, 'but': 2.0, 'will': 2.0, 'my': 1.0, 'product': 1.0, 'love': 1.0, 'for': 3.0, 'where': 2.0, 'stays': 1.0, 'think': 1.0, 'and': 6.0, 'closed': 2.0, 'useless': 1.0, 'it': 8.0, 'month': 1.0, 've': 1.0, 'in': 1.0, 'used': 1.0, 'at': 1.0, 'three': 1.0, 'days': 1.0, 'over': 1.0, 'up': 2.0, 'don': 1.0, 'wipes': 2.0, 'last': 1.0, 'of': 1.0, 'once': 1.0, 'whole': 1.0, 'no': 1.0, 'serious': 1.0, 'son': 1.0, 'open': 1.0, 'moves': 1.0, 'keeps': 1.0, 'design': 1.0, 'never': 1.0, 'pops': 1.0}
Word element => {'table': 1.0, 'pushed': 1.0, 'booster': 1.0, 'as': 1.0, 'tried': 1.0, 'attached': 1.0, 'without': 1.0, 'remove': 1.0, 'flap': 1.0, 'open': 1.0, 'supposed': 1.0, 'tray': 5.0, 'bought': 2.0, 'caveats': 1.0, 'one': 4.0, 'planning': 1.0, 'larger': 1.0, 'chair': 2.0, 'has': 1.0, 'about': 1.0, 'despite': 1.0, 'no': 1.0, 't': 4.0, 's': 1.0, 'we': 1.0, 'deluxe': 1.0, 'care': 2.0, 'back': 1.0, 'making': 1.0, 'description': 1.0, 'and': 3.0, 'to': 7.0, 'was': 1.0, 'tummy': 1.0, 'stock': 1.0, 'month': 1.0, 'same': 1.0, '18': 1.0, 'average': 1.0, 'helpful': 1.0, 'two': 1.0, 'i': 8.0, 'a': 5.0, 'small': 1.0, 'have': 2.0, 'my': 1.0, 'for': 3.0, 'price': 1.0, 'product': 1.0, 'wasn': 1.0, 'up': 1.0, 'less': 1.0, 'm': 1.0, 'seat': 3.0, 'in': 2.0, 'be': 1.0, 'slides': 1.0, 'only': 1.0, 'notches': 1.0, 'much': 1.0, 'this': 4.0, 'place': 1.0, 'old': 1.0, 'what': 1.0, 'when': 4.0, 'folded': 1.0, 'review': 1.0, 'originally': 1.0, 'arrived': 1.0, 'it': 4.0, 'states': 1.0, 'the': 18.0, 'of': 3.0, 'also': 1.0, 'snaps': 1.0, 'more': 1.0, 'around': 1.0, 'onto': 1.0, 'wanted': 1.0, 'portable': 1.0, 'on': 1.0, 'weren': 1.0, 'with': 3.0, 'just': 1.0, 'couldn': 1.0, 'traction': 1.0, 'get': 1.0, 'store': 2.0, 'sure': 1.0, 'straps': 1.0, 'hold': 1.0, 'using': 2.0, 'some': 1.0, 'features': 1.0, 'example': 1.0, 'are': 1.0, 'useful': 1.0, 'healthy': 2.0, 'than': 1.0, 'slide': 1.0, 'at': 2.0, 'discount': 1.0, 'is': 2.0, 'ring': 1.0, 'didn': 1.0, 'enough': 1.0, 'wipe': 1.0, 'holder': 1.0, 'but': 1.0, 'not': 2.0, 'disappointed': 1.0, 'how': 1.0}
Word element => {'money': 1.0, 'waste': 1.0, 'good': 1.0, 'pay': 1.0, 'lasting': 1.0, 'better': 1.0, 'total': 1.0, 'who': 1.0, 'bigger': 1.0, 'something': 3.0, 'buy': 1.0, 'will': 1.0, 'be': 2.0, 'wouldn': 1.0, 'hoping': 1.0, 'o': 1.0, 'and': 3.0, 'whistles': 1.0, 'no': 2.0, 'low': 1.0, 'used': 1.0, 'more': 1.0, 'is': 4.0, 'price': 1.0, 'don': 1.0, 'part': 2.0, 'grands': 1.0, 'town': 1.0, 'small': 1.0, 'bought': 1.0, 'roll': 1.0, 'through': 1.0, 'this': 2.0, 'it': 4.0, 'first': 1.0, 'bells': 1.0, 'for': 3.0, 'occasional': 1.0, 'being': 1.0, 'almost': 1.0, 'doesn': 1.0, 'was': 2.0, 'k': 1.0, 'use': 1.0, 'i': 5.0, 'when': 1.0, 'deal': 1.0, 'the': 6.0, 'willing': 1.0, 'which': 1.0, 'like': 2.0, 'very': 2.0, 'cheaply': 1.0, 'made': 1.0, 'to': 2.0, 'of': 2.0, 'disposable': 1.0, 'a': 2.0, 't': 3.0, 'we': 1.0, 'hope': 1.0, 'just': 1.0, 'time': 2.0, 'point': 1.0, 'makes': 1.0, 'that': 3.0, 'into': 1.0, 'next': 1.0, 'week': 1.0}
Word element => {'very': 1.0, 'totally': 1.0, 'felt': 1.0, 'of': 1.0, 'without': 1.0, 'move': 1.0, 'room': 1.0, 'she': 2.0, 'strapping': 1.0, 'out': 2.0, 'it': 2.0, 'this': 1.0, 'for': 2.0, 'visit': 1.0, 'threat': 1.0, 'coming': 1.0, 'on': 1.0, 'after': 1.0, 'a': 2.0, 'and': 4.0, 'happy': 1.0, 'my': 1.0, 'the': 2.0, 'booster': 1.0, 'had': 1.0, 'turned': 1.0, 'was': 3.0, 'granddaughter': 1.0, 'to': 2.0, 'be': 1.0, 'falling': 1.0, 'in': 1.0, 'perfect': 2.0, 'her': 1.0, 'we': 2.0, 'secure': 1.0, 'placed': 1.0, 'seat': 1.0, 'chair': 1.0}
Word element => {'additional': 1.0, 'dome': 1.0, 'animal': 1.0, 'your': 1.0, 'child': 1.0, 'developing': 1.0, 'is': 2.0, 'mobile': 2.0, 'help': 1.0, 'though': 1.0, 'item': 1.0, 'come': 1.0, 'it': 1.0, 'included': 1.0, 'us': 1.0, 'my': 1.0, 'often': 1.0, 'quite': 1.0, 'example': 1.0, 'almost': 1.0, 'visual': 1.0, 'fisher': 1.0, 'of': 1.0, 'always': 1.0, 'makes': 1.0, 'this': 1.0, 'perfect': 1.0, 'but': 2.0, 'how': 1.0, 'addition': 1.0, 'mirror': 1.0, 'price': 1.0, 'products': 1.0, 'baby': 3.0, 'night': 1.0, 'stimulation': 1.0, 'motorized': 1.0, 'illuminated': 1.0, 'that': 1.0, 'the': 7.0, 'are': 1.0, 'style': 1.0, 'petals': 1.0, 'not': 2.0, 'likes': 1.0, 'in': 2.0, 'itself': 1.0, 's': 1.0, 'a': 1.0, 'facilitates': 1.0, 'opinion': 1.0, 'plushes': 1.0, 'for': 3.0, 'product': 2.0, 'least': 1.0, 'as': 1.0, 'all': 2.0, 'to': 2.0, 'associate': 1.0, 'fine': 1.0, 'look': 1.0, 'at': 2.0, 'lends': 1.0, 'and': 3.0, 'light': 1.0, 'welcome': 1.0, 'design': 1.0}
Word element => {'purple': 1.0, 'and': 1.0, 'valuable': 1.0, 'monkey': 1.0, 'extremely': 1.0, 'feature': 1.0, 'multi': 1.0, 'best': 1.0, 'featured': 1.0, 'plush': 1.0, 'touch': 1.0, 'mobile': 1.0, 'is': 2.0, 'animals': 1.0, 'with': 1.0, 'nice': 1.0, 'white': 1.0, 'cute': 1.0, 'the': 3.0, 'noise': 1.0}
Word element => {'glad': 1.0, 'life': 1.0, 'included': 1.0, 'batteries': 1.0, 'c': 1.0, 'three': 1.0, 'had': 1.0, 'wish': 1.0, 'kangaroo': 1.0, 'hold': 1.0, 'enough': 1.0, 'above': 1.0, 'nightlight': 2.0, 'spinning': 1.0, 'hanging': 1.0, 's': 5.0, 'a': 4.0, 'fastens': 1.0, 'it': 7.0, 'elephant': 1.0, 'grab': 1.0, 'like': 1.0, 'lion': 1.0, 'to': 5.0, 'heavy': 1.0, 'as': 1.0, 'our': 1.0, 'then': 1.0, 'big': 1.0, 'nice': 1.0, 'very': 3.0, 'substantial': 1.0, 'white': 3.0, 'has': 1.0, 'plastic': 1.0, 'brightly': 1.0, 'fisher': 1.0, 'left': 1.0, 'easy': 1.0, 'the': 9.0, 'of': 4.0, 'features': 1.0, 'crib': 1.0, 'mobile': 4.0, 'ones': 1.0, 'actual': 1.0, 'one': 2.0, 'control': 1.0, 'short': 1.0, 'mirrors': 1.0, 'entertainment': 1.0, 'playing': 1.0, 'all': 2.0, 'rainforest': 1.0, 'detaches': 1.0, 'out': 1.0, 'duty': 1.0, 'this': 1.0, 'baby': 4.0, 'intuitive': 1.0, 'musical': 2.0, 'price': 1.0, 'serving': 1.0, 'colored': 1.0, 'friends': 1.0, 'and': 9.0, 'volume': 1.0, 'with': 3.0, 'whistles': 1.0, 'demo': 1.0, 'feel': 1.0, 'name': 1.0, 'figures': 1.0, 'together': 2.0, 'bells': 1.0, 'side': 1.0, 'made': 1.0, 'music': 3.0, 'there': 1.0, 'monkey': 1.0, 'or': 1.0, 'noise': 3.0, 'are': 2.0, 'cute': 1.0, 'negative': 1.0, 'i': 3.0, 'caregiver': 1.0, 'never': 1.0, 'did': 1.0, 'until': 1.0, 'see': 1.0, 'use': 1.0, 'm': 1.0, 'in': 1.0, 'funhouse': 1.0, 'do': 1.0, 'much': 1.0, 'put': 2.0, 'on': 1.0, 'think': 1.0, 'least': 1.0, 'children': 2.0, 'toys': 1.0, 'supposed': 1.0, 'for': 3.0, 'that': 1.0, 'what': 1.0, 'they': 1.0, 'at': 1.0, 'is': 6.0, 'look': 1.0, 'light': 1.0, 'movement': 1.0, 'come': 2.0, 'help': 1.0, 'was': 1.0}
Word element => {'turns': 1.0, 'few': 1.0, 'a': 1.0, 'after': 1.0, 'stop': 1.0, 'just': 1.0, 'then': 1.0, 'it': 3.0, 'crib': 1.0, 'get': 1.0, 'and': 2.0, 'like': 1.0, 'to': 3.0, 'music': 1.0, 'light': 1.0, 'up': 1.0, 'always': 1.0, 'push': 2.0, 'portion': 1.0, 'i': 3.0, 'going': 1.0, 'attached': 1.0, 'when': 1.0, 'mobile': 1.0, 'will': 1.0, 'but': 1.0, 'doesn': 1.0, 'the': 5.0, 't': 1.0, 'have': 1.0, 'button': 1.0, 'turn': 1.0, 'sometimes': 1.0, 'on': 1.0}
Word element => {'highly': 1.0, 'consider': 1.0, 'definitely': 1.0, 'this': 1.0, 'market': 1.0, 'that': 1.0, 'cribs': 1.0, 're': 1.0, 'types': 1.0, 'some': 1.0, 'on': 1.0, 'tricky': 1.0, 'be': 1.0, 'fastener': 1.0, 'crib': 1.0, 'with': 1.0, 'for': 2.0, 'loops': 1.0, 'look': 1.0, 'essentials': 1.0, 'yet': 2.0, 'relaxing': 1.0, 'built': 1.0, 'the': 4.0, 'to': 2.0, 'all': 1.0, 'thing': 1.0, 'which': 1.0, 'audio': 1.0, 'fisher': 1.0, 'design': 1.0, 'd': 1.0, 'price': 1.0, 'baby': 2.0, 'pleasant': 1.0, 'you': 2.0, 'signature': 1.0, 'even': 1.0, 'got': 1.0, 'it': 4.0, 'only': 1.0, 'of': 2.0, 'understated': 1.0, 'style': 1.0, 'engaging': 1.0, 'soothing': 1.0, 'one': 1.0, 'mobile': 4.0, 'terrific': 1.0, 'is': 4.0, 'could': 1.0, 's': 3.0, 'a': 5.0, 'recommended': 1.0, 'has': 1.0, 'well': 1.0, 'said': 1.0, 'in': 2.0, 'visuals': 1.0, 'and': 2.0, 'install': 1.0, 'nice': 1.0, 'if': 1.0, 'being': 1.0, 'choice': 1.0, 'dynamic': 1.0, 'issue': 1.0, 'overall': 1.0, 'very': 1.0, 'i': 1.0, 'take': 1.0, 'simple': 1.0, 'slight': 1.0}
Word element => {'remote': 1.0, 'can': 1.0, 'improvement': 1.0, 'only': 1.0, 'super': 1.0, 'which': 1.0, 'mobiles': 1.0, 'run': 1.0, 'seem': 1.0, 'doesn': 1.0, 'reposition': 1.0, 'decide': 1.0, 'if': 1.0, 'move': 1.0, 'than': 1.0, 'choose': 1.0, 'and': 3.0, 'play': 1.0, 'similar': 2.0, 'sleeper': 1.0, 'any': 1.0, 'compared': 1.0, 'while': 1.0, 'from': 1.0, 'there': 1.0, 'are': 2.0, 'simplicity': 1.0, 'overall': 1.0, 'like': 2.0, 'mobile': 1.0, 'bought': 1.0, 'on': 1.0, 'pictures': 1.0, 'put': 1.0, '3': 1.0, 'simple': 1.0, 'other': 3.0, 'a': 7.0, 'might': 1.0, 's': 2.0, 'friend': 1.0, 'we': 1.0, 'fine': 1.0, 'bright': 1.0, 'some': 2.0, 'played': 1.0, 'for': 3.0, 'graphics': 1.0, 'before': 1.0, '5': 1.0, 'i': 4.0, 'putting': 1.0, 'but': 1.0, 'music': 1.0, 'models': 1.0, 'manual': 1.0, 'it': 8.0, 'with': 2.0, 'volume': 1.0, 'need': 2.0, 'or': 1.0, 'missing': 1.0, 'will': 1.0, 'animal': 1.0, 'batteries': 2.0, 'more': 1.0, 'is': 3.0, 'babes': 1.0, 'of': 2.0, 'the': 6.0, 'light': 1.0, '4': 1.0, 'melodies': 1.0, 'not': 2.0, 'n': 1.0, 'something': 1.0, 'either': 1.0, 'would': 1.0, 'you': 5.0, '20': 1.0, 'easily': 1.0, 'have': 1.0, 'read': 1.0, 'very': 1.0, 'through': 2.0, 'this': 2.0, 'page': 1.0, 'be': 1.0, 'ensure': 1.0, 're': 1.0, 'crib': 2.0, 'features': 1.0, 't': 3.0, 'require': 1.0, 'to': 9.0, 'pretty': 1.0, 'intuitive': 1.0, 'together': 1.0, 'c': 1.0, 'didn': 1.0, 'work': 1.0, 'special': 1.0, 'tools': 1.0, 'attaches': 1.0, 'though': 1.0, 'don': 1.0, 'seems': 1.0, 'see': 1.0, 'how': 1.0, 'think': 1.0, 'pack': 1.0, 'bit': 1.0, 'easy': 1.0}
Word element => {'crib': 1.0, 'keep': 1.0, 'occupied': 1.0, 'great': 1.0, 'really': 1.0, 'noise': 1.0, 'white': 1.0, 'or': 1.0, 'plays': 1.0, 'attention': 1.0, 'baby': 1.0, 'far': 1.0, 'favorite': 1.0, 'ornate': 1.0, 'its': 1.0, 'too': 1.0, 'and': 4.0, 'break': 1.0, 'your': 1.0, 'portable': 1.0, 'in': 2.0, 'item': 1.0, 'also': 1.0, 'out': 1.0, 'made': 1.0, 'of': 1.0, 'fairly': 1.0, 'up': 1.0, 'have': 3.0, 'this': 2.0, 'colorful': 1.0, 'it': 3.0, 'mobiles': 2.0, 'admit': 1.0, 'is': 2.0, 'more': 1.0, 'the': 3.0, 'tried': 2.0, 'i': 2.0, 'one': 2.0, 'to': 4.0, 'our': 1.0, 'should': 1.0, 'better': 1.0, 'we': 1.0, 's': 3.0, 'you': 1.0, 'sturdy': 1.0, 'so': 1.0, 'not': 1.0, 'likely': 1.0, 've': 1.0, 'drop': 1.0, 'by': 1.0, 'light': 1.0, 'transport': 1.0, 'little': 1.0, 'very': 1.0, 'music': 1.0, 'can': 1.0, 'which': 1.0, 'keeps': 1.0}
Word element => {'visit': 1.0, 'use': 1.0, 'picking': 1.0, 'sleeping': 1.0, 'adjust': 1.0, 'helping': 1.0, 'loves': 1.0, 'excellent': 1.0, 'second': 1.0, 'falling': 1.0, 'heavy': 1.0, 'pretty': 1.0, 'saftey': 1.0, 'your': 1.0, 'here': 1.0, 'follow': 1.0, 'secure': 1.0, 'wrap': 1.0, 'slatted': 1.0, 'needs': 1.0, 'grab': 1.0, 'up': 3.0, 'stand': 1.0, 'safe': 1.0, 'anything': 1.0, 'done': 1.0, 'gets': 1.0, 'sturdier': 1.0, 'could': 1.0, 'crib': 3.0, 'band': 2.0, 'mind': 1.0, 'drowns': 1.0, 'bit': 2.0, 'makes': 1.0, 'turning': 1.0, 'instructions': 3.0, 'swing': 2.0, 'snugabunny': 1.0, 'stimulating': 1.0, 'plug': 1.0, 'doesn': 2.0, 's': 4.0, 'adapter': 1.0, 'adaptor': 1.0, 'run': 2.0, 'out': 4.0, 'husband': 1.0, 'more': 1.0, 'settings': 1.0, 'me': 1.0, 'ask': 2.0, 'so': 4.0, 'you': 7.0, 'home': 1.0, 'though': 1.0, 'by': 1.0, 'don': 4.0, 'list': 1.0, 'pitched': 1.0, 'first': 1.0, 'my': 6.0, 'are': 6.0, 'mess': 1.0, 'disappointing': 1.0, 'familiar': 1.0, 'come': 2.0, 'opnion': 1.0, 'know': 1.0, 're': 2.0, 'not': 5.0, 'unit': 1.0, 'had': 1.0, 'songs': 2.0, 'an': 3.0, 'operate': 1.0, 'c': 2.0, 'swaddle': 1.0, 'coming': 1.0, 'packaging': 2.0, 'easy': 1.0, 'fit': 1.0, 't': 8.0, 'assemble': 2.0, 'using': 1.0, 'with': 8.0, '2': 2.0, 'thing': 1.0, 'advertised': 1.0, 'this': 2.0, 'all': 2.0, 'ac': 2.0, 'but': 5.0, '7': 1.0, 'takes': 1.0, 'was': 2.0, 'selection': 1.0, 'chopin': 1.0, 'minutes': 1.0, 'block': 1.0, 'functional': 1.0, 'works': 1.0, 'without': 3.0, 'solid': 1.0, 'definitely': 3.0, 'we': 2.0, 'a': 15.0, 'small': 1.0, 'who': 2.0, 'at': 4.0, 'keep': 1.0, 'hitting': 1.0, 'his': 1.0, 'philips': 1.0, '4': 1.0, 'heck': 1.0, 'i': 17.0, 'pachelel': 1.0, 'cute': 3.0, 'assembled': 2.0, 'kind': 1.0, 'did': 3.0, 'time': 2.0, 'the': 35.0, 'doing': 1.0, 'even': 2.0, 'of': 5.0, 'attention': 1.0, 'mobile': 13.0, 'dome': 1.0, 'bells': 1.0, 'able': 1.0, 'includes': 1.0, 'batteries': 5.0, 'get': 1.0, 'to': 20.0, 'high': 1.0, 'as': 2.0, 'think': 2.0, 'open': 1.0, 'just': 4.0, 'and': 16.0, 'in': 4.0, 'about': 2.0, 'play': 2.0, 'on': 9.0, 'fp': 1.0, 'try': 1.0, 'such': 2.0, 'that': 7.0, 'because': 1.0, 'usualy': 1.0, 'which': 4.0, 'want': 2.0, 'quote': 1.0, 'or': 4.0, 'find': 1.0, 'very': 3.0, 'low': 2.0, 'being': 1.0, 'two': 1.0, 'classical': 1.0, 'nice': 1.0, 'lean': 1.0, 'well': 1.0, 'wants': 1.0, 'difficult': 1.0, 'her': 2.0, 'mom': 1.0, 'little': 5.0, 'white': 2.0, 'for': 5.0, 'pieces': 1.0, 'does': 2.0, 'schubert': 1.0, 'when': 3.0, 'what': 1.0, 'attaches': 1.0, 'will': 3.0, 'screwdriver': 1.0, 'digress': 1.0, 'exposed': 1.0, 'if': 2.0, 'need': 1.0, 'handy': 1.0, 'option': 2.0, 'standard': 1.0, 'noise': 5.0, 'plush': 1.0, 'music': 5.0, 'whistles': 1.0, 'nature': 1.0, 'head': 1.0, 'volumes': 1.0, 'it': 11.0, 'be': 4.0, 'like': 1.0, 'arts': 1.0, 'sounds': 2.0, 'around': 2.0, 'soothing': 1.0, 'job': 1.0, 'delightful': 1.0, 'some': 1.0, 'nusery': 1.0, 'they': 1.0, 'brahms': 1.0, 'etc': 1.0, 'confirm': 1.0, 'only': 2.0, 'research': 1.0, 'turn': 1.0, 'can': 3.0, 'is': 11.0, 'culture': 1.0, 'its': 1.0, 'something': 1.0, 'lovely': 1.0, 'am': 2.0, 'them': 1.0, 'grandma': 1.0, 'most': 1.0, 'always': 1.0, 'ears': 1.0, 'glad': 1.0, 'might': 1.0, 'classic': 1.0, 'baby': 8.0, 'since': 2.0, 'early': 1.0, 'age': 1.0, 'thw': 1.0, 'light': 3.0, 'medium': 2.0, 'piano': 1.0, 'either': 1.0, 'have': 2.0, 'louder': 1.0, 'he': 1.0, 'lights': 3.0, 'enough': 1.0, 'house': 2.0, '3': 4.0, 'too': 1.0, '5': 1.0, 'got': 1.0, 'one': 2.0, 'volume': 1.0, 'didn': 2.0, 'sound': 5.0, 'sharp': 1.0, 'pleasant': 1.0, 'there': 2.0, 'setting': 1.0, 'animals': 1.0, 'mirror': 1.0, 'attracts': 1.0}
Word element => {'laugh': 1.0, 'himself': 1.0, 'at': 1.0, 'in': 1.0, 'look': 1.0, 'he': 1.0, 'of': 1.0, 'enjoy': 1.0, 'mobile': 1.0, 'vivid': 1.0, 'month': 1.0, 'starts': 1.0, 'to': 1.0, 'and': 2.0, 'the': 3.0, 'my': 1.0, 'will': 1.0, 'baby': 1.0, 'mirror': 2.0, 'color': 1.0, 'gentle': 1.0, 'sound': 1.0, '2': 1.0}
Word element => {'keeps': 1.0, 'and': 1.0, 'animals': 1.0, 'her': 1.0, 'bright': 1.0, 'the': 2.0, 'my': 1.0, 'gazes': 1.0, 'entertained': 1.0, '3': 1.0, 'music': 1.0, 'old': 1.0, 'thrilled': 1.0, 'month': 1.0, 'absolutely': 1.0, 'she': 1.0, 'was': 1.0, 'granddaughter': 1.0, 'at': 1.0}
Word element => {'excellent': 1.0, 'all': 1.0, 'quality': 1.0, 'size': 1.0, 'bib': 1.0, 'soft': 1.0, 'perfectly': 1.0, 'and': 2.0, 'as': 2.0, 'pretty': 1.0, 'they': 2.0, 'so': 1.0, 'are': 3.0, 'these': 1.0, 'the': 2.0, 'them': 1.0, 'a': 1.0, 'fit': 1.0, 'on': 1.0, 'service': 1.0, 'burp': 1.0, 'shoulder': 1.0, 'when': 1.0, 'i': 1.0, 'burping': 1.0, 'use': 1.0, 'price': 1.0, 'baby': 1.0, 'perfect': 1.0, 'cloths': 1.0, 'also': 1.0}
Word element => {'then': 1.0, 'wanted': 1.0, 'had': 1.0, 'to': 1.0, 'they': 1.0, 'has': 1.0, 'an': 1.0, 'are': 1.0, 'a': 1.0, 'lullabies': 1.0, 'bought': 1.0, 'originally': 1.0, 'were': 1.0, 'that': 3.0, 'product': 1.0, 'love': 2.0, 'shut': 1.0, 'the': 6.0, 'great': 1.0, 'this': 2.0, 'it': 1.0, 'first': 1.0, 'still': 2.0, 'on': 1.0, 'realized': 1.0, 'rotate': 1.0, 'something': 1.0, 'songs': 2.0, 'wall': 1.0, 'but': 1.0, 'rotates': 1.0, 'so': 1.0, 'met': 1.0, 'projector': 1.0, 'of': 1.0, 'sounds': 1.0, 'criteria': 1.0, 'variation': 1.0, 'white': 1.0, 'noise': 1.0, 'i': 1.0, 'auto': 1.0, 'images': 3.0, 'off': 1.0, 'from': 1.0, 'while': 1.0, 'and': 1.0, 'play': 1.0}
Word element => {'content': 1.0, 'be': 1.0, 'receive': 1.0, 'not': 1.0, 'likely': 2.0, 'most': 1.0, 'will': 2.0, 'since': 2.0, 'background': 1.0, 'have': 1.0, 'tolerable': 1.0, 'quite': 2.0, 'got': 1.0, 'school': 1.0, 'old': 1.0, 'plays': 1.0, 'obnoxious': 1.0, 'thing': 1.0, 'animals': 1.0, 'stuffed': 1.0, 'playing': 1.0, 'up': 1.0, 'my': 1.0, 'but': 2.0, 'easy': 1.0, 'okay': 1.0, 'didn': 1.0, 'we': 4.0, 'a': 3.0, 't': 2.0, 'go': 1.0, 's': 4.0, 'going': 1.0, 'and': 5.0, 'except': 1.0, 'put': 1.0, 'some': 2.0, 'though': 1.0, 'version': 2.0, 'like': 2.0, '5': 2.0, 'before': 1.0, 'looked': 1.0, 'annoying': 1.0, 'this': 4.0, 'assemble': 2.0, 'stars': 1.0, 'sad': 1.0, 'for': 2.0, 'on': 2.0, 'unwrapped': 1.0, 'original': 1.0, 'us': 1.0, 'quiets': 1.0, 'i': 3.0, 'watching': 1.0, 'new': 1.0, 'demo': 2.0, 'box': 1.0, 'amazon': 1.0, 'been': 1.0, 'often': 1.0, 'totally': 1.0, 'because': 1.0, 'that': 3.0, 'so': 1.0, 'of': 4.0, 'the': 10.0, 'watched': 1.0, 'to': 3.0, 'our': 2.0, 'was': 2.0, 'minutes': 1.0, 'had': 1.0, 'obsessed': 1.0, 'parts': 1.0, 'wrapping': 1.0, 'give': 1.0, 'those': 1.0, 'midi': 1.0, 'swing': 6.0, 'sent': 1.0, 'obviously': 1.0, 'opened': 1.0, 'pouty': 1.0, 'sounding': 1.0, 'husband': 1.0, 'were': 1.0, 'together': 1.0, 'in': 2.0, 'play': 1.0, 'about': 1.0, 'son': 2.0, 'gets': 1.0, 'is': 2.0, 'music': 4.0, 'around': 1.0, 'with': 2.0, 'mobile': 1.0, 'one': 3.0, 'bought': 1.0, 'it': 7.0, 'him': 3.0, 'down': 2.0, 'you': 2.0, 'upside': 1.0, 'direction': 2.0, 'll': 1.0, 'quickly': 1.0, 'turn': 1.0, 'if': 2.0, 'he': 2.0, 'nice': 1.0, 'switch': 2.0, 'sometimes': 1.0, 'experience': 1.0, 'directions': 1.0, 'would': 1.0, 'frown': 1.0, 'apparently': 1.0, 'isn': 1.0, 'cuddly': 1.0, 'light': 1.0}
Word element => {'time': 1.0, 'his': 2.0, 'help': 1.0, 'to': 2.0, 'music': 1.0, 'colic': 1.0, 'upright': 1.0, 's': 2.0, 'grandson': 1.0, 'my': 1.0, 'sits': 1.0, 'the': 1.0, 'while': 1.0, 'with': 1.0, 'it': 1.0, 'comfy': 1.0, 'and': 2.0, 'gives': 1.0, 'mom': 1.0, 'swinging': 1.0, 'safe': 1.0, 'some': 1.0, 'enough': 1.0, 'quiet': 1.0}
Word element => {'opinnion': 1.0, 'ac': 1.0, 'use': 1.0, 'dont': 1.0, 'free': 1.0, 'days': 1.0, 'and': 2.0, 'my': 2.0, 'the': 4.0, 'shiping': 1.0, 'swing': 1.0, 'a': 2.0, 'in': 1.0, 'about': 1.0, 'baby': 1.0, 'price': 1.0, 'its': 1.0, 'was': 1.0, 'two': 1.0, 'at': 1.0, 'this': 1.0, 'only': 1.0, 'it': 2.0, 'for': 3.0, 'love': 1.0, 'found': 1.0, 'battery': 1.0, 'i': 5.0, 'here': 1.0, 'is': 1.0, 'amazon': 1.0, 'really': 1.0, 'good': 1.0, 'looking': 1.0, 'item': 2.0, 'recived': 1.0}
Word element => {'must': 1.0, 'tv': 1.0, 'buy': 1.0, 'watch': 1.0, 'swing': 1.0, 'product': 1.0, 'to': 1.0, 'i': 1.0, 'great': 1.0, 'it': 2.0, 'haven': 1.0, 'and': 1.0, 'any': 1.0, 'loves': 1.0, 't': 1.0, 'in': 1.0, 'problems': 1.0, 'had': 1.0, 'with': 1.0, 'the': 1.0, 'baby': 1.0}
Word element => {'one': 1.0, 'toe': 1.0, 'big': 1.0, 'is': 1.0, 'legs': 1.0, 'enough': 2.0, 'easy': 1.0, 'mine': 1.0, 'sadly': 1.0, 'hour': 1.0, 'stubbing': 1.0, 'now': 1.0, 'had': 1.0, 'room': 1.0, 'fp': 1.0, 'have': 1.0, 'it': 5.0, 'she': 1.0, 'and': 2.0, 'not': 3.0, 'me': 1.0, 'did': 1.0, 'assembly': 1.0, 'child': 2.0, 'we': 3.0, 'naps': 1.0, 'other': 1.0, 'for': 2.0, 'opportunity': 1.0, 'without': 1.0, 'the': 5.0, 'but': 1.0, '2': 1.0, 'babies': 1.0, 'that': 1.0, 'to': 1.0, 'all': 1.0, 'our': 2.0, 'know': 1.0, 'like': 1.0, 'version': 1.0, 'take': 1.0, 'of': 5.0, 'papasan': 1.0, 'time': 1.0, 'footprint': 1.0, 'second': 1.0, 'having': 1.0, 'in': 4.0, 'third': 1.0, 'nursery': 1.0, 'living': 1.0, 'much': 1.0, 'buys': 1.0, 'this': 2.0, '30': 1.0, 'about': 1.0, '15': 1.0, 'was': 1.0, 'minutes': 1.0, 'when': 1.0, 'i': 2.0, 'her': 1.0, 'space': 1.0, 'keep': 1.0, 'who': 1.0, 'would': 1.0, 'on': 1.0, 'your': 1.0, 'put': 1.0, '3': 1.0}
Word element => {'like': 1.0, 'mistake': 1.0, 'be': 1.0, 'manufactured': 1.0, 'would': 2.0, 'down': 1.0, 'grinder': 1.0, 'luckily': 1.0, 'enough': 1.0, 'wasn': 1.0, 'after': 1.0, 'over': 1.0, 'work': 1.0, 'wouldn': 1.0, 'just': 1.0, 'constructed': 1.0, 'latch': 1.0, 'minutes': 1.0, 'some': 1.0, 'spent': 1.0, 'so': 3.0, 'right': 1.0, 'correctly': 2.0, 'certain': 1.0, 'sure': 1.0, 'great': 1.0, 'went': 2.0, 'inside': 1.0, 'shaped': 1.0, 'cut': 2.0, 'each': 1.0, 'go': 1.0, 'didn': 1.0, 'other': 1.0, 'all': 1.0, 'worst': 1.0, 'bumped': 1.0, 'when': 1.0, 'rock': 1.0, 'piece': 1.0, 'together': 3.0, 'with': 1.0, 'haven': 1.0, 'pushed': 1.0, 'by': 1.0, 'place': 1.0, 'manufacturing': 1.0, 'dremel': 1.0, 'try': 1.0, 'one': 1.0, 'held': 1.0, 'are': 1.0, 'said': 1.0, 'any': 1.0, 'flimsy': 1.0, 'holds': 1.0, 'cons': 1.0, 'poorly': 1.0, 'us': 1.0, 'important': 1.0, 'options': 1.0, 'once': 1.0, 'walking': 1.0, 'necessary': 1.0, 'nice': 1.0, 'unacceptable': 1.0, 'padded': 2.0, 'comfortable': 1.0, 'them': 1.0, 'has': 2.0, 'fit': 2.0, 't': 4.0, 'likes': 1.0, 'overall': 2.0, 'fix': 1.0, 'slot': 1.0, 'feels': 1.0, 'from': 1.0, 'part': 2.0, 'have': 3.0, 'as': 4.0, 'our': 1.0, 'not': 4.0, 'goes': 1.0, 'make': 2.0, 'on': 3.0, 'buttons': 1.0, 'still': 1.0, 'before': 1.0, 'heavily': 1.0, 's': 8.0, 'a': 13.0, 'pros': 1.0, 'is': 7.0, 'swing': 3.0, 'assembled': 1.0, 'of': 3.0, 'the': 15.0, 'product': 1.0, 'child': 2.0, 'rod': 2.0, 'up': 1.0, 'well': 1.0, 'i': 4.0, '4': 1.0, 'old': 2.0, 'separately': 1.0, 'set': 1.0, 'bouncy': 1.0, 'had': 2.0, 'connector': 1.0, 'seat': 2.0, 'in': 5.0, 'm': 1.0, 'large': 1.0, 'mirror': 1.0, 'troubles': 1.0, 'ground': 1.0, 'better': 1.0, 'this': 2.0, 'it': 16.0, 'month': 1.0, 'others': 1.0, 'many': 1.0, 'she': 2.0, 'front': 1.0, 'will': 1.0, 'pushing': 1.0, 'spit': 1.0, 'quality': 2.0, 'recommended': 1.0, 'and': 14.0, 'push': 1.0, 'loud': 1.0, 'assemble': 1.0, 'way': 1.0, 'assembly': 1.0, 'than': 1.0, 'keep': 1.0, 'odd': 1.0, 'since': 1.0, 'pulling': 1.0, 'interested': 1.0, 'including': 1.0, 'mobile': 1.0, 'around': 1.0, 'music': 2.0, 'back': 1.0, 'most': 1.0, 'but': 3.0, 'enjoys': 1.0, 'leg': 3.0, 'fine': 1.0, 'we': 2.0, 'swinging': 1.0, 'or': 2.0, 'error': 1.0, 'almost': 1.0, 'put': 1.0, 'much': 2.0, 'u': 1.0, 'tools': 1.0, 'her': 1.0, 'decent': 3.0, 'soothing': 1.0, 'there': 1.0, 'quite': 1.0, 'bit': 2.0, 'investigation': 1.0, 'does': 1.0, 'variety': 1.0, 'sounding': 1.0, 'jarring': 1.0, 'which': 2.0, 'get': 1.0, 'trouble': 1.0, 'legs': 1.0, 'radical': 1.0, 'torn': 1.0, 'departure': 1.0, 'prodding': 1.0, 'toys': 1.0, 'to': 9.0, 'removes': 1.0, '10': 1.0, 'for': 2.0, 'style': 1.0, 'washing': 1.0, 'cleaning': 1.0, '2': 1.0, 'machine': 1.0, 'easily': 1.0, 'that': 4.0, 'prevent': 1.0, 'very': 1.0}
Word element => {'those': 1.0, 'during': 1.0, 'in': 1.0, 'worth': 1.0, 'and': 1.0, 'weight': 1.0, 'him': 1.0, 'the': 1.0, 'that': 2.0, 'times': 2.0, 'are': 1.0, 'there': 1.0, 'item': 1.0, 'thing': 1.0, 'have': 1.0, 'calm': 1.0, 'baby': 1.0, 'usually': 1.0, 'rock': 1.0, 'is': 3.0, 'must': 1.0, 'son': 1.0, 'on': 1.0, 'a': 2.0, 'i': 2.0, 'my': 1.0, 'swing': 1.0, 'falls': 1.0, 'gold': 1.0, 'own': 1.0, 'think': 1.0, 'or': 1.0, 'sleep': 1.0, 'will': 1.0, 'but': 1.0, 'it': 1.0, 'only': 1.0, 'this': 1.0, 'he': 1.0, 'its': 1.0, 'to': 1.0, 'asleep': 1.0, 'down': 1.0, 'his': 1.0}
Word element => {'experience': 1.0, 'stay': 1.0, 'line': 1.0, 'next': 1.0, 'boy': 1.0, 'stuff': 1.0, 'buy': 1.0, 'go': 1.0, 'pink': 1.0, 'swimming': 1.0, 'gear': 2.0, 'gender': 2.0, 'nest': 1.0, 'boppy': 1.0, 'didn': 1.0, 'spots': 1.0, 'flat': 1.0, 'prevent': 1.0, 'help': 1.0, 'thin': 1.0, 'differing': 1.0, 'only': 3.0, 'legs': 4.0, 'if': 3.0, 'fully': 1.0, 'could': 4.0, 'before': 3.0, 'husband': 1.0, 'both': 1.0, 'needed': 1.0, 'align': 1.0, 'design': 3.0, 'nut': 2.0, 'not': 7.0, 'package': 1.0, 'encased': 1.0, 'attach': 1.0, 'asked': 1.0, 'it': 36.0, 'came': 2.0, 'more': 1.0, 'together': 5.0, 'screwed': 2.0, 'they': 6.0, 'surprised': 1.0, 'overall': 1.0, 'ease': 1.0, 'baby': 9.0, 'relative': 1.0, 'previous': 2.0, 'when': 4.0, 'time': 3.0, 'did': 1.0, 'roughly': 1.0, 'price': 6.0, 'tubing': 1.0, 'cute': 1.0, 'felt': 1.0, 'themselves': 1.0, 'ten': 2.0, 'bit': 2.0, 'faded': 1.0, 'steady': 1.0, 'keeping': 1.0, 'grind': 1.0, 'about': 6.0, 'expedited': 1.0, 'great': 1.0, 'so': 12.0, 'different': 3.0, 'family': 1.0, 'old': 1.0, 'of': 20.0, 'covered': 1.0, 'meant': 1.0, 'connection': 1.0, 'which': 1.0, 'again': 3.0, 'picked': 1.0, 'lots': 1.0, 'off': 2.0, 'do': 1.0, 'nonsense': 1.0, 'snapped': 1.0, 'room': 2.0, 'serves': 1.0, 'bottom': 1.0, 'living': 1.0, 'colors': 1.0, 'neutral': 3.0, 'customer': 3.0, 'easy': 1.0, 'defect': 1.0, 'however': 2.0, 'batteries': 1.0, 'shipping': 1.0, 'bolt': 2.0, 'days': 2.0, 'people': 1.0, 'now': 2.0, 'original': 3.0, 'reason': 1.0, 'as': 4.0, 'less': 3.0, 'find': 1.0, 'sounds': 2.0, 'decor': 1.0, 'my': 10.0, 'friends': 1.0, 'fun': 1.0, 'hanging': 1.0, 'brought': 1.0, 'with': 11.0, 'whistles': 1.0, 'nature': 1.0, 'would': 4.0, 'results': 1.0, 'star': 1.0, 'back': 3.0, 'found': 2.0, 'dome': 2.0, 'or': 3.0, 'going': 2.0, 'accomodate': 1.0, 'reassembled': 1.0, 'basic': 1.0, 'speeds': 1.0, 'ago': 1.0, 'two': 7.0, 'a': 33.0, 'excitement': 1.0, 'white': 1.0, 'little': 2.0, 'had': 15.0, 'get': 2.0, 'was': 18.0, 'assemble': 3.0, 'her': 1.0, 'perfectly': 1.0, 'issue': 1.0, 'owned': 1.0, 'minutes': 1.0, 'control': 1.0, 'another': 2.0, 'really': 3.0, 'ninety': 1.0, 'aquarium': 2.0, 'seat': 4.0, 'nightmare': 1.0, 'animals': 1.0, 'm': 1.0, 's': 10.0, 'repeated': 1.0, 'noise': 1.0, 'ton': 1.0, 'noggin': 1.0, 'best': 3.0, 'heights': 1.0, 'nephew': 1.0, 'collar': 1.0, 'forsee': 1.0, 'yes': 1.0, 'other': 1.0, 'frustration': 2.0, 'our': 3.0, 'hand': 2.0, 'gone': 1.0, 'giving': 1.0, 't': 9.0, 'me': 5.0, 'thirteen': 1.0, 'i': 39.0, 'annoying': 1.0, 'rather': 1.0, 'fourth': 2.0, 'real': 1.0, 'five': 1.0, 'ones': 1.0, 'arrived': 2.0, 'has': 6.0, 'swings': 4.0, 'got': 3.0, 'for': 16.0, 'no': 2.0, 'seconds': 2.0, 'pieces': 1.0, 'have': 11.0, 'mintues': 1.0, 'who': 2.0, 'from': 5.0, 'moved': 1.0, 'been': 2.0, 'fair': 1.0, 'review': 4.0, 'department': 1.0, 'fancy': 1.0, 'motor': 16.0, 'models': 2.0, 'awesome': 1.0, 'swing': 32.0, 'four': 1.0, 'first': 4.0, 'up': 7.0, 'you': 5.0, 'major': 2.0, 'this': 19.0, 'zero': 1.0, 'just': 2.0, 'ridge': 1.0, 'at': 4.0, 'is': 10.0, 'but': 11.0, 'very': 3.0, 'move': 2.0, 'used': 4.0, 'children': 2.0, 'we': 3.0, 'called': 2.0, 'be': 7.0, 'bad': 3.0, 'one': 14.0, 'fighting': 1.0, 'amount': 1.0, 'rotates': 1.0, 'on': 13.0, 'motorized': 1.0, 'say': 1.0, 'scratches': 1.0, 'right': 1.0, 'need': 1.0, 'instead': 2.0, 'three': 6.0, 'towards': 1.0, 'friend': 3.0, 'struggle': 1.0, 'rest': 4.0, 'let': 2.0, 'all': 5.0, 'rainforest': 1.0, 'years': 1.0, 'an': 2.0, 'opportunity': 1.0, 'second': 3.0, 'worry': 1.0, 'papasan': 2.0, 'prefer': 2.0, 'supply': 1.0, 'dirty': 2.0, 'started': 2.0, 'yard': 2.0, 'that': 24.0, 'much': 3.0, 'to': 46.0, 'because': 2.0, 'cracked': 1.0, 'third': 5.0, 'twice': 1.0, 'looking': 1.0, 'child': 1.0, 'perfer': 1.0, 'already': 1.0, 'use': 2.0, 'passed': 3.0, 'yourself': 1.0, 'us': 3.0, 'in': 12.0, 'using': 1.0, 'adaptor': 2.0, 'run': 1.0, 'gave': 1.0, 'construction': 3.0, 'might': 1.0, 'function': 1.0, 'annoyed': 1.0, 'd': 4.0, 'problem': 2.0, 'rear': 1.0, '34': 2.0, 'excited': 1.0, 'times': 1.0, 'send': 3.0, 'many': 1.0, 'where': 1.0, 'your': 2.0, 'ask': 1.0, 'well': 1.0, 'number': 2.0, 'included': 1.0, 'stop': 1.0, 'thirty': 1.0, 'start': 1.0, 'swinging': 1.0, 'sale': 2.0, 'leaking': 1.0, 'stopped': 1.0, 'service': 2.0, 'depress': 1.0, 'were': 1.0, 'helpful': 1.0, 'offered': 2.0, 'replacement': 3.0, 'several': 2.0, 'later': 2.0, 'poorly': 1.0, 'packaged': 1.0, 'scratched': 1.0, '3': 1.0, 'walk': 2.0, 'source': 1.0, 'banged': 1.0, 'fisher': 6.0, 'connects': 1.0, 'box': 1.0, 'sure': 1.0, 'like': 7.0, 'row': 1.0, 'realize': 1.0, 'and': 41.0, 'come': 1.0, 'panel': 1.0, 'decided': 2.0, 'test': 1.0, 'assembled': 2.0, 'house': 1.0, 'pretty': 3.0, 'grinding': 1.0, 'serivce': 1.0, 'explained': 1.0, 'noticed': 1.0, 'excellent': 1.0, 'sent': 2.0, 'does': 1.0, 'concern': 1.0, 'turned': 1.0, 'preferable': 1.0, 'ups': 1.0, 'assembly': 3.0, 'good': 1.0, 'oozing': 1.0, 'what': 1.0, 'c': 2.0, 'want': 1.0, 'then': 7.0, 'grease': 3.0, 'over': 2.0, 'than': 1.0, 'rep': 1.0, 'spoke': 1.0, 'write': 1.0, 'she': 3.0, 'call': 2.0, 'make': 1.0, 'points': 1.0, 'escalate': 1.0, 'mobile': 4.0, 'through': 1.0, 'motors': 2.0, 'style': 1.0, 'pick': 1.0, 'addressed': 2.0, 'anything': 1.0, 'bells': 1.0, 'shouldn': 1.0, 'outside': 1.0, 'level': 1.0, 'spectacular': 1.0, 'features': 1.0, 'housing': 2.0, 'the': 88.0, 'works': 1.0, 'think': 1.0, 'why': 2.0, 'there': 1.0, 'metal': 1.0, 'leg': 5.0, 'secure': 1.0, 'each': 1.0, 'makes': 2.0, 'getting': 1.0, 'blend': 1.0, 'stable': 1.0, 'once': 3.0, 'task': 1.0, 'requires': 1.0, 'took': 1.0, 'put': 1.0, 'new': 4.0, 'wanted': 2.0, 'pull': 3.0, 'confirmed': 1.0, 'button': 1.0, 'away': 2.0, 'holds': 1.0, 'wouldn': 2.0, 'don': 3.0, 'know': 1.0, 'suggest': 1.0, 'plastic': 1.0, 'past': 1.0, 'out': 7.0, 'pad': 3.0, 'quality': 1.0, 'mirrored': 1.0, 'looks': 1.0, 'seems': 1.0, 'flimsy': 1.0, 'compared': 1.0, 'every': 1.0, 've': 1.0, 'fight': 1.0, 'hold': 1.0, 'cradle': 5.0, 'against': 1.0, 'briefly': 1.0, 'better': 1.0, 'requiring': 1.0, 'steel': 1.0, 'construct': 1.0, 'look': 2.0, 'base': 1.0, 'gradual': 1.0, 'some': 1.0, 'overly': 1.0, 'pain': 1.0, 'becomes': 1.0, 'music': 2.0, 'ok': 1.0, 'badly': 1.0, 'something': 1.0, 'leaves': 1.0, 'add': 1.0, 'can': 1.0, 'same': 2.0, 'after': 1.0, 'down': 2.0, 'distorted': 1.0, 'will': 2.0, 'loud': 2.0, 'interest': 1.0, 'babies': 2.0, 'dislike': 1.0, 'give': 1.0, 'issues': 3.0, 'view': 1.0, 'him': 1.0, 'herself': 1.0, 'isn': 2.0, 'head': 4.0}
Word element => {'grows': 1.0, 'when': 1.0, 'see': 1.0, 'will': 1.0, 'perfectly': 1.0, 'but': 1.0, '2': 1.0, 'small': 1.0, 'so': 1.0, 'bit': 1.0, 'takes': 1.0, 'there': 1.0, 'her': 2.0, 'what': 1.0, 'makes': 1.0, 'sawying': 1.0, 'sleepy': 1.0, 'nappys': 1.0, 'baby': 2.0, 'stares': 1.0, 'and': 3.0, 'mobile': 1.0, 'we': 1.0, 'a': 2.0, 'just': 1.0, 'not': 1.0, 'blessing': 1.0, 'at': 2.0, 'some': 1.0, 'the': 2.0, 'fits': 1.0, 'my': 3.0, 'easy': 1.0, 'month': 1.0, 'looks': 1.0, 'she': 3.0, 'it': 3.0, 'loud': 1.0, 'its': 2.0, 'only': 1.0, 'to': 1.0, 'as': 2.0, 'more': 1.0, 'is': 1.0, 'say': 2.0, 'self': 1.0, 'did': 1.0, 'people': 1.0, 'pretty': 1.0, 'ensamble': 1.0, 'far': 1.0, 'then': 1.0, 'i': 2.0, 'in': 1.0, 'less': 1.0, '20': 1.0, 'was': 1.0, 'minutes': 1.0, 'thing': 1.0, 'would': 1.0, 'loves': 1.0, 'that': 1.0}
Word element => {'see': 1.0, 'shall': 1.0, 'say': 1.0, 'have': 1.0, 'did': 2.0, 'legs': 1.0, 'sway': 1.0, 'sturdier': 1.0, 'so': 1.0, 'bit': 1.0, 'also': 1.0, 'seems': 1.0, 'went': 1.0, 'hex': 2.0, 'metal': 1.0, 'old': 1.0, 'the': 4.0, 'pieces': 1.0, 'attach': 1.0, 'used': 1.0, 'sleeves': 1.0, 'improved': 1.0, 'screws': 1.0, 'of': 1.0, 'system': 1.0, 'new': 1.0, '15': 1.0, 'and': 3.0, 'issues': 1.0, 'flying': 1.0, 'this': 5.0, 'with': 2.0, 'on': 1.0, 'one': 2.0, 'mobile': 1.0, 'received': 1.0, 'quieter': 1.0, 'rock': 1.0, 'took': 2.0, 'i': 5.0, 'hope': 1.0, 'just': 2.0, 'me': 2.0, 'not': 2.0, 'okay': 1.0, 'today': 1.0, 'last': 1.0, 'difficult': 1.0, 'seem': 1.0, 'cutout': 1.0, 'head': 1.0, 'deep': 1.0, 'luv': 2.0, 'ones': 1.0, 'we': 1.0, 'a': 7.0, 't': 3.0, 'after': 1.0, 'my': 2.0, 'than': 2.0, 'because': 1.0, 'zoo': 2.0, 'motor': 4.0, 'don': 1.0, 'assembly': 1.0, 'leap': 1.0, 'swing': 3.0, 'but': 1.0, 'aren': 1.0, 'its': 2.0, 'doesn': 1.0, 'minutes': 1.0, 'was': 1.0, 'it': 2.0, 'truly': 1.0, 'less': 1.0, 'prefer': 2.0, 'papasan': 1.0, 'they': 1.0, 'like': 1.0, 'u': 2.0, 'which': 1.0, 'm': 1.0, 'to': 1.0, 'seat': 1.0, 'as': 2.0, 'in': 2.0, 'into': 1.0, 'that': 3.0}
Word element => {'fantastic': 1.0, 'will': 1.0, 'anything': 1.0, 'if': 1.0, 'wake': 1.0, 'was': 1.0, 'when': 1.0, 'noise': 1.0, 'creaking': 1.0, 'help': 1.0, 'make': 1.0, 'first': 1.0, 'are': 1.0, 'they': 3.0, 'swings': 2.0, 'had': 1.0, 've': 1.0, 'complaint': 1.0, 'not': 2.0, 'adapter': 1.0, 'won': 1.0, 'batteries': 1.0, 'tuck': 1.0, 'these': 1.0, 'room': 1.0, 'use': 2.0, 'didn': 1.0, 'storage': 1.0, 'fold': 1.0, 'became': 1.0, 'length': 1.0, 'to': 8.0, 'our': 1.0, 'annoying': 1.0, 'silent': 1.0, 'as': 1.0, 'toys': 1.0, 'times': 1.0, 'motion': 1.0, 'you': 4.0, 'mobil': 1.0, 'ac': 1.0, 'but': 3.0, 'used': 2.0, 'would': 1.0, 'never': 1.0, 'removed': 1.0, 'price': 1.0, 'all': 1.0, 'rainforest': 1.0, 'a': 5.0, 't': 5.0, 'difference': 1.0, 'we': 3.0, 'son': 2.0, 'difficult': 1.0, 'open': 3.0, 'top': 3.0, 'sleep': 1.0, 'back': 2.0, 'tilt': 1.0, 'nice': 3.0, 'padded': 1.0, 'them': 1.0, 'has': 3.0, 'cradle': 4.0, 'tray': 3.0, 'at': 2.0, 'is': 6.0, 'rock': 1.0, 'forth': 1.0, 'been': 1.0, 'because': 1.0, 'that': 1.0, 'swing': 7.0, 'i': 2.0, 'wasn': 2.0, 'like': 1.0, 'and': 7.0, 'thefisher': 1.0, 'play': 1.0, 'place': 2.0, 'this': 2.0, 'placement': 1.0, 'takes': 1.0, 'rotate': 1.0, 'up': 2.0, 'soon': 1.0, 'there': 2.0, 'the': 22.0, 'of': 4.0, 'find': 1.0, 'upgrade': 1.0, 'from': 1.0, 'addition': 1.0, 'washing': 1.0, 'tunes': 1.0, 'adjust': 2.0, 'for': 2.0, 'overall': 1.0, 'deluxe': 1.0, 'part': 1.0, 'anywhere': 1.0, 'though': 2.0, 'really': 2.0, 'it': 6.0, 'only': 2.0, 'good': 1.0, 'made': 1.0, 'seat': 3.0, 'in': 1.0, 'straps': 1.0, 'secure': 1.0, 'also': 1.0, 'any': 1.0, 'your': 2.0, 'baby': 2.0, 'liner': 1.0, 'same': 1.0, 'removing': 1.0, 'padding': 1.0, 'much': 2.0, 'put': 2.0, '16': 1.0, 'easy': 1.0, 'left': 2.0, 'switch': 1.0, 'mirror': 1.0, 'between': 1.0, 'my': 1.0, 'musical': 1.0, 'with': 3.0, 'volume': 1.0, 'or': 2.0, 'included': 1.0, 'so': 1.0, 'can': 4.0, 'speed': 1.0, '30': 1.0, 'right': 2.0, 'together': 2.0, 'took': 1.0, 'another': 1.0, 'minutes': 1.0, 'legs': 1.0}
Word element => {'lifesaver': 1.0, 'a': 1.0, 'been': 1.0, 's': 1.0, 'items': 1.0, 'line': 1.0, 'friends': 1.0, 'addition': 1.0, 'wonderful': 1.0, 'recommend': 1.0, 'whole': 1.0, 'infant': 1.0, 'hold': 1.0, 'done': 1.0, 'housework': 1.0, 'get': 1.0, 'same': 1.0, 'happily': 1.0, 'swings': 1.0, 'upon': 1.0, 'used': 1.0, 'set': 1.0, 'be': 1.0, 'time': 2.0, 'immediately': 1.0, 'sit': 1.0, 'cord': 1.0, 'always': 1.0, 'has': 2.0, 'that': 2.0, 'loves': 1.0, 'like': 1.0, 'impossible': 1.0, 'it': 9.0, 'colorful': 1.0, 'highly': 1.0, 'this': 2.0, '30': 1.0, 'handy': 1.0, 'batteries': 1.0, 'seems': 1.0, 'swing': 3.0, 'and': 3.0, 'too': 1.0, 'as': 1.0, 'adorable': 1.0, 'ac': 1.0, 'but': 1.0, 'schoolwork': 1.0, '2': 1.0, 'most': 2.0, 'so': 2.0, 'can': 2.0, 'i': 7.0, 'took': 1.0, 'don': 1.0, 'up': 3.0, 'baby': 6.0, 'about': 1.0, 'bulky': 1.0, 'able': 1.0, 'have': 1.0, 'adults': 1.0, 'is': 5.0, 'likes': 1.0, 't': 2.0, 'of': 1.0, 'the': 13.0, 'hands': 1.0, 'extra': 1.0, 'minutes': 1.0, 'step': 1.0, 'doesn': 1.0, 'developed': 1.0, 'assemble': 1.0, 'last': 1.0, 'clean': 1.0, 'not': 3.0, 'tricky': 1.0, 'fisher': 1.0, 'easy': 1.0, 'price': 1.0, 'mirror': 1.0, 'efficient': 1.0, 'keep': 1.0, 'decors': 1.0, 'attractive': 1.0, 'appreciate': 1.0, 'while': 3.0, 'rainforest': 1.0, 'ever': 1.0, 'an': 4.0, 'matching': 1.0, 'free': 1.0, 'home': 2.0, 'mood': 1.0, 'love': 1.0, 'he': 2.0, 'down': 1.0, 'think': 1.0, 'on': 1.0, 'first': 1.0, 'had': 1.0, 'adjustable': 1.0, 'seen': 1.0, 'being': 1.0, 'himself': 1.0, 'take': 1.0, 'much': 1.0, 'room': 2.0, 'seat': 1.0, 'in': 2.0, 'my': 3.0, 'to': 6.0, 'lie': 1.0, 'or': 2.0, 'especially': 1.0, 'depending': 1.0, 'his': 1.0, 'having': 2.0}
Word element => {'friends': 1.0, 'recommending': 1.0, 'especially': 1.0, 'solely': 1.0, 'more': 1.0, 'spend': 1.0, 'else': 1.0, 'something': 1.0, 'happy': 1.0, 'justify': 1.0, 'spent': 1.0, 'on': 1.0, 'amount': 1.0, 'if': 1.0, 'every': 1.0, 'plug': 1.0, 'purchase': 1.0, 'quickly': 1.0, 'first': 1.0, 'wrong': 1.0, 'get': 1.0, 'legs': 1.0, 'assemble': 1.0, 'wait': 1.0, 'buying': 1.0, '15': 1.0, 't': 2.0, 'a': 5.0, 'go': 1.0, 'in': 6.0, 'for': 3.0, 'fp': 1.0, 'around': 2.0, 'at': 1.0, 'is': 2.0, 'few': 1.0, 'this': 2.0, 'walked': 1.0, 'she': 2.0, 'rocked': 1.0, 'swings': 1.0, 'money': 1.0, 'bought': 2.0, 'be': 1.0, 'it': 8.0, 'him': 2.0, 'or': 2.0, 'month': 2.0, 'gave': 1.0, 'hate': 1.0, 'son': 3.0, 'like': 1.0, 'did': 2.0, 'getting': 1.0, 'can': 3.0, 'so': 3.0, 'easily': 1.0, 'that': 2.0, 'because': 1.0, 'just': 1.0, 'not': 1.0, 'think': 1.0, 'exhausting': 1.0, 'prime': 1.0, 'dryer': 1.0, '3': 1.0, 'do': 1.0, 'put': 1.0, 'mistake': 1.0, 'couldn': 1.0, 'am': 2.0, 'presto': 1.0, '1': 1.0, 'and': 6.0, 'mins': 1.0, 'away': 1.0, 'now': 1.0, 'to': 10.0, 'was': 5.0, 'store': 1.0, 'batteries': 2.0, 'who': 1.0, 'flimsy': 1.0, 'my': 8.0, 'together': 1.0, 'when': 3.0, 'you': 2.0, 'swing': 5.0, 'about': 3.0, 'i': 14.0, 'adapter': 1.0, 'old': 2.0, 'metal': 1.0, 'time': 3.0, 'assembled': 1.0, 'good': 1.0, 'which': 1.0, 'asleep': 1.0, 'cardboard': 1.0, 'remove': 1.0, 'days': 2.0, 'took': 2.0, 'use': 1.0, 'her': 2.0, 'wash': 1.0, 'seating': 2.0, 'far': 1.0, 'love': 1.0, 'he': 2.0, 'nursed': 1.0, 'while': 2.0, 'box': 1.0, 'shipping': 1.0, 'ready': 1.0, 'sleep': 2.0, 'back': 1.0, 'corrected': 1.0, 'directions': 1.0, 'found': 1.0, 'easy': 1.0, 'follow': 1.0, 'replacing': 1.0, 'loves': 1.0, 'assembling': 1.0, 'brother': 1.0, 'packaging': 1.0, 'the': 16.0, 'of': 3.0, 'two': 1.0, 'little': 1.0, 'adjusts': 1.0, 'move': 1.0, 'daughter': 2.0, 'pieces': 1.0, 'clinked': 1.0, 'ac': 1.0, 'but': 2.0, 'had': 1.0, 'with': 3.0, 'parts': 1.0, 'ends': 1.0, 'tape': 1.0, 'wasn': 1.0, 'hassle': 1.0}
Word element => {'eye': 1.0, 'on': 1.0, 'design': 1.0, 'colors': 1.0, 'stains': 1.0, 'washing': 1.0, 'throw': 1.0, 'clean': 1.0, 'material': 1.0, 'positive': 1.0, 'attached': 1.0, 'bar': 1.0, 'very': 1.0, 'off': 1.0, 'cleans': 1.0, 'comes': 1.0, 'hanging': 1.0, 'detachable': 1.0, 'like': 1.0, 'one': 2.0, 'another': 1.0, 'get': 3.0, 'both': 1.0, 'if': 1.0, 'able': 2.0, 'am': 1.0, 'might': 1.0, 'glad': 1.0, 'even': 1.0, 'sitting': 1.0, 'ow': 1.0, 'i': 18.0, 'store': 1.0, 'was': 2.0, 'laws': 1.0, 'need': 2.0, 'would': 1.0, 'position': 2.0, 'around': 1.0, 'more': 2.0, 'sits': 1.0, 'is': 9.0, 'laying': 1.0, 'find': 1.0, 'spot': 1.0, 'kids': 1.0, 'rocking': 1.0, 'this': 2.0, 'sleeper': 1.0, 'have': 3.0, 'don': 1.0, 'counts': 1.0, 'grow': 1.0, 'as': 2.0, 'third': 1.0, 'out': 3.0, 'baby': 5.0, 'toys': 1.0, 'started': 1.0, 'of': 1.0, 'the': 14.0, 'place': 1.0, 'use': 3.0, 'means': 1.0, 'travel': 1.0, 'just': 1.0, 'stuff': 1.0, 'purchased': 1.0, 'chair': 3.0, 'shallow': 1.0, 'for': 6.0, 'way': 1.0, 'a': 2.0, 'story': 1.0, 'right': 1.0, 'so': 1.0, 'can': 2.0, 'machine': 1.0, '2': 1.0, 'old': 2.0, 'furniture': 1.0, 'buy': 1.0, 'lefts': 1.0, 'snack': 1.0, 'with': 6.0, 'all': 1.0, 'other': 4.0, 'dissatisfied': 1.0, 'bouncers': 2.0, 'completely': 1.0, 'stationary': 1.0, 'what': 1.0, 'when': 1.0, 'flipped': 1.0, 'far': 1.0, 'love': 2.0, 'moths': 1.0, 'he': 2.0, 'comfortable': 1.0, 'little': 1.0, 'two': 1.0, 'nice': 1.0, 'bring': 1.0, 'my': 10.0, 'me': 3.0, 'pleasant': 1.0, 'convertible': 1.0, 'give': 1.0, 'not': 1.0, 'easily': 2.0, 'because': 1.0, 'that': 4.0, 'deep': 1.0, 'while': 3.0, 'boys': 1.0, 'are': 2.0, 'quite': 2.0, 'it': 8.0, 'daytime': 1.0, 'occasionally': 1.0, 'also': 2.0, 'its': 1.0, 'to': 9.0, 'pretty': 1.0, 'easy': 2.0, 'visiting': 1.0, 'm': 1.0, 'seat': 2.0, 'in': 6.0, 't': 1.0, 'rest': 1.0, 'and': 11.0, 'arms': 1.0, 'years': 1.0, 'using': 1.0, 'child': 2.0, 'toddler': 1.0, 'setting': 1.0, 'who': 1.0, 'time': 2.0, 'really': 2.0, 'enjoys': 1.0}
Word element => {'falling': 1.0, 'her': 1.0, 'of': 1.0, 'possibility': 1.0, 'secure': 1.0, 'comfortable': 1.0, 'we': 1.0, 'the': 2.0, 'this': 1.0, 'off': 1.0, 'because': 1.0, 'without': 1.0, 'love': 1.0, 'portable': 1.0, 'rocker': 1.0, 'it': 1.0, 's': 1.0, 'floor': 1.0, 'close': 1.0, 'to': 1.0}
Word element => {'looking': 1.0, 'we': 1.0, 'is': 1.0, 'naps': 1.0, 'even': 1.0, 'and': 1.0, 'my': 1.0, 'this': 1.0, 'loved': 1.0, 'take': 1.0, '5': 1.0, 'old': 1.0, 'hours': 1.0, 'for': 2.0, 'daughter': 1.0, 'she': 1.0, 'were': 1.0, 'month': 1.0, 'it': 1.0, 'can': 1.0, 'stay': 1.0, 'what': 1.0, 'there': 1.0}
Word element => {'amazon': 1.0, 'thanks': 1.0, 'so': 1.0, 'baby': 2.0, 'my': 1.0, 'the': 1.0, 'more': 1.0, 'much': 1.0, 'to': 1.0, 'chair': 2.0, 'do': 1.0, 'a': 1.0, 'good': 1.0, 'loves': 1.0, 'other': 1.0, 'very': 1.0, 's': 1.0, 'it': 2.0, 'can': 1.0, 'i': 1.0, 'when': 1.0, 'time': 1.0, 'have': 1.0, 'thing': 1.0, 'sit': 1.0, 'in': 1.0}
Word element => {'hang': 1.0, 'that': 1.0, 'wish': 1.0, 'though': 1.0, 'on': 1.0, 'in': 1.0, 'or': 1.0, 'toys': 3.0, 'put': 1.0, 'but': 1.0, 'too': 2.0, 'dangle': 1.0, 'just': 1.0, 'hitting': 1.0, 'rocker': 2.0, 'without': 1.0, 'can': 1.0, 'him': 2.0, 'his': 1.0, 'lift': 1.0, 'nice': 2.0, 'have': 1.0, 'babies': 1.0, 'my': 1.0, 'a': 3.0, 'didn': 1.0, 'little': 1.0, 'close': 2.0, 'is': 2.0, 'it': 2.0, 'this': 1.0, 'the': 3.0, 't': 2.0, 'to': 1.0, 'head': 2.0, 'and': 1.0, 'i': 2.0, 'out': 1.0}
Word element => {'there': 1.0, 'kid': 1.0, 'around': 1.0, 'like': 1.0, 'and': 2.0, 'super': 1.0, 'a': 1.0, 'to': 1.0, 'its': 1.0, 'little': 1.0, 'big': 2.0, 'pull': 1.0, 'my': 1.0, 'tried': 1.0, 'small': 1.0, 'for': 2.0, 'one': 4.0, 'perfect': 2.0, 'but': 1.0, 'easy': 1.0, 'we': 1.0, 'others': 1.0, 'is': 2.0, 'were': 1.0, 'when': 1.0, 'kids': 1.0, 'too': 2.0, 'this': 1.0, 'light': 1.0}
Word element => {'purchase': 1.0, 'with': 1.0, 'overall': 1.0, 'naps': 1.0, 'use': 1.0, 'toys': 1.0, 'and': 3.0, 'similar': 1.0, 'bassinet': 1.0, 'to': 3.0, 'as': 1.0, 'm': 1.0, 'seat': 6.0, 'our': 1.0, 'colorful': 1.0, 'it': 1.0, 'able': 1.0, 'inclined': 1.0, 'position': 1.0, 'middle': 1.0, 'semi': 1.0, 'like': 1.0, 'features': 1.0, 'his': 1.0, 'almost': 1.0, 's': 1.0, 'a': 2.0, 'could': 1.0, 'we': 1.0, 'for': 2.0, 'i': 4.0, 'description': 1.0, 'sitting': 1.0, 'but': 2.0, 'identical': 1.0, 'baby': 2.0, 'says': 1.0, 'by': 2.0, 'through': 1.0, 'does': 1.0, 'find': 1.0, 'than': 1.0, 'love': 1.0, 'far': 1.0, 'he': 1.0, 'of': 2.0, 'the': 16.0, 'my': 1.0, 'particularly': 1.0, 'attached': 1.0, 'soothing': 1.0, 'setting': 1.0, 'lower': 1.0, 'didn': 1.0, 'forward': 2.0, 'not': 1.0, 'self': 1.0, 'years': 1.0, 'product': 1.0, 'toddler': 1.0, 'price': 2.0, 'bought': 1.0, 'months': 1.0, 't': 1.0, 'rest': 1.0, 'rocker': 2.0, 'instead': 1.0, 'also': 1.0, 'made': 1.0, 'front': 1.0, 'fisher': 2.0, 'has': 1.0, 'stoppers': 1.0, 'borrowing': 1.0, 'on': 1.0, 'end': 1.0, 'because': 1.0, 'that': 3.0, 'few': 1.0, 'this': 5.0, 'rocking': 1.0, 'rock': 1.0, 'been': 1.0, 'being': 1.0, 'prevent': 1.0, 'vibrations': 1.0, 'so': 1.0, 'bit': 1.0, 'tip': 1.0, 'used': 1.0, 'out': 1.0, 'look': 1.0, 'is': 2.0, 'quite': 2.0, 'had': 1.0, 'vibrates': 1.0, 'first': 1.0, 'happy': 1.0, 'pattern': 1.0, 'one': 2.0, 'ones': 1.0, 'from': 1.0, 'daycare': 1.0}
Word element => {'toddler': 1.0, 'very': 2.0, 'i': 1.0, 'money': 1.0, 'slept': 1.0, 'it': 1.0, 'use': 1.0, 'bot': 1.0, 'full': 1.0, 'in': 1.0, 'for': 1.0, 'the': 1.0, 'my': 1.0, 'worth': 1.0, 'she': 1.0, 'baby': 1.0, 'new': 1.0, 'well': 1.0, 'born': 1.0}
Word element => {'extremely': 1.0, 'charger': 1.0, 'universal': 1.0, 'buy': 1.0, 'so': 1.0, 'out': 2.0, 'they': 1.0, 'since': 1.0, 'worked': 1.0, 'specially': 1.0, 'which': 2.0, 'is': 2.0, 'uses': 1.0, 'rechargeable': 1.0, 'did': 1.0, 'inch': 1.0, 'ones': 1.0, 'run': 1.0, 'diameter': 1.0, 'in': 1.0, 'on': 1.0, '3': 1.0, 'are': 2.0, 'thickness': 1.0, 'others': 2.0, 'happy': 1.0, 'max': 1.0, 'weight': 1.0, 'and': 4.0, 'me': 1.0, 'difference': 1.0, 'right': 1.0, 'hours': 1.0, 'lbs': 1.0, 'it': 2.0, 'looked': 1.0, 'quick': 1.0, 'with': 1.0, 'choice': 1.0, 'were': 2.0, 'that': 1.0, 'was': 2.0, 'what': 1.0, 'had': 1.0, '25': 1.0, 'the': 5.0, 'trust': 1.0, 'd': 1.0, 'best': 1.0, 'great': 1.0, '1': 2.0, 'big': 1.0, 'why': 1.0, 'there': 1.0, 'of': 3.0, 'this': 3.0, 'found': 1.0, 'one': 2.0, 'expensive': 1.0, 'for': 2.0, 'two': 1.0, 'i': 3.0, 'slightly': 1.0, 'has': 1.0, 'over': 1.0, 'cheaper': 1.0, '2': 1.0, 'can': 1.0, 'but': 1.0, 'a': 2.0, 'rocker': 2.0, 'see': 1.0, 'capacity': 2.0, 'battery': 2.0, 'rockers': 1.0, 'about': 3.0, '5': 1.0, '20': 1.0, '40': 1.0, 'legs': 1.0, 'other': 1.0}
Word element => {'new': 1.0, 'all': 1.0, 'recommend': 1.0, 'i': 1.0, 'parents': 2.0, 'her': 1.0, 'bought': 1.0, 'my': 1.0, 'for': 2.0, 'would': 1.0, 'granddaughter': 1.0, 'do': 1.0, 'she': 1.0, 'this': 1.0, 'loves': 1.0, 'it': 2.0, 'and': 1.0, 'as': 1.0}
Word element => {'with': 1.0, 'vibration': 1.0, 'calm': 1.0, 'stay': 1.0, 'i': 1.0, 'very': 1.0, 'like': 1.0, 'the': 2.0, 'its': 1.0, 'love': 1.0, 'it': 2.0, 'helpful': 1.0, 'great': 1.0, 'for': 1.0, 'nice': 1.0, 'babies': 1.0}
Word element => {'would': 1.0, 'they': 1.0, 'you': 1.0, 'son': 1.0, 'like': 1.0, 'little': 1.0, 'kicks': 1.0, 'heals': 1.0, 'cushion': 1.0, 'the': 2.0, 'great': 1.0, 'gripe': 1.0, 'controls': 1.0, 'my': 2.0, 'fact': 1.0, '3': 1.0, 'be': 1.0, 'constant': 1.0, 'old': 1.0, 'i': 2.0, 'that': 2.0, 'loves': 1.0, 'feet': 1.0, 'month': 1.0, 'it': 5.0, 'only': 1.0, 'adjust': 1.0, 'he': 1.0, 'with': 1.0, 'soft': 1.0, 'perfect': 1.0, 'is': 1.0, 'but': 1.0, 'can': 1.0, 'music': 1.0, 'blanket': 1.0, 'are': 1.0, 'by': 1.0, 'his': 2.0, 'and': 1.0, 'against': 1.0, 'so': 1.0, 'have': 1.0, 'as': 1.0, 'seat': 1.0, 'grow': 1.0, 'to': 1.0, 'a': 1.0}
Word element => {'but': 1.0, 'difficult': 1.0, 'damage': 1.0, 'it': 3.0, 'i': 2.0, 'look': 1.0, 'return': 1.0, 'strong': 1.0, 'like': 1.0, 'cloth': 1.0, 'and': 2.0, 'good': 1.0, 'small': 1.0, 'the': 1.0, 'unfortunately': 1.0, 'got': 1.0, 'still': 1.0, 'to': 1.0, 'product': 1.0, 'now': 1.0, 'on': 1.0, 'with': 1.0}
Word element => {'as': 1.0, 'will': 1.0, 'grows': 1.0, 'he': 1.0, 'it': 1.0, 'how': 1.0, 'don': 1.0, 'yet': 1.0, 'comfortable': 1.0, 'in': 1.0, 'seems': 1.0, 'rocking': 1.0, 'him': 1.0, 'would': 1.0, 'batteries': 1.0, 'thinking': 1.0, 'they': 1.0, 'of': 1.0, 'really': 1.0, 'produce': 1.0, 'mistake': 1.0, 'accommodate': 1.0, 'provide': 1.0, 'well': 1.0, 'a': 2.0, 't': 1.0, 'great': 1.0, 'the': 3.0, 'made': 1.0, 'my': 1.0, 'i': 1.0, 'nephew': 1.0, 'motion': 1.0, 'know': 1.0, 'seat': 1.0, 'just': 1.0, 'vibration': 1.0, 'me': 1.0, 'somewhat': 1.0, 'irritating': 1.0, 'to': 1.0, 'infant': 1.0}
Word element => {'ok': 1.0, 'product': 1.0, 'broken': 1.0, 'but': 1.0, 'box': 1.0, 'the': 1.0}
Word element => {'and': 1.0, 'her': 1.0, 'sleeping': 1.0, 'of': 1.0, 'my': 1.0, 'spending': 1.0, 'being': 1.0, 'time': 1.0, 'is': 2.0, 'playing': 1.0, 'most': 1.0, 'kid': 1.0, 'in': 2.0, 'njoying': 1.0, 'this': 1.0, 'it': 1.0, 'rocker': 1.0, 'by': 1.0, 'she': 1.0}
Word element => {'yea': 1.0, 'nice': 1.0, 'oh': 1.0}
Word element => {'fisher': 1.0, 'thank': 1.0, 'all': 1.0, 'recommend': 1.0, 'would': 1.0, 'worth': 1.0, 'to': 2.0, 'newborn': 1.0, 'can': 1.0, 'you': 2.0, 'solid': 1.0, 'and': 1.0, 'price': 1.0, 'money': 1.0, 'baby': 1.0, '2': 1.0, 'the': 3.0, 'parents': 1.0, 'for': 1.0, 'month': 1.0, 'he': 1.0, 'it': 4.0, 'use': 1.0, 'got': 1.0, 'really': 2.0, 'is': 1.0, 'looks': 1.0, 'loves': 1.0, 'much': 1.0, 'product': 1.0, 'old': 1.0, 'i': 3.0, 'from': 1.0, 'very': 2.0, 'like': 1.0, 'toddler': 1.0, 'quality': 1.0, 'fact': 1.0, 'strong': 1.0, 'that': 1.0, 'my': 1.0, 'high': 1.0}
Word element => {'after': 1.0, 'lie': 1.0, 'to': 1.0, 'baby': 1.0, 'it': 1.0, 'paperboard': 1.0, 'fed': 1.0, 'somewhat': 1.0, 'of': 1.0, 'made': 1.0, 'the': 1.0, 'support': 1.0, 'my': 1.0, 'back': 2.0, 'not': 1.0, 'his': 1.0, 'does': 1.0, 'i': 1.0, 'is': 1.0, 'give': 1.0, 'decent': 1.0, 'got': 1.0, 'tinylove': 1.0, 'replacement': 1.0, 'as': 1.0, 'a': 1.0, 'weak': 1.0, 'napper': 1.0, 'for': 1.0}
Word element => {'sleep': 1.0, 'himself': 1.0, 'sometimes': 1.0, 'loves': 1.0, 'inclining': 1.0, '3': 1.0, 'he': 1.0, 'has': 1.0, 'month': 1.0, 'it': 4.0, 'to': 1.0, 'rocks': 1.0, 'old': 1.0, 'positionshe': 1.0, 'got': 2.0, 'earlier': 1.0, 'my': 1.0, 'i': 1.0, '4': 1.0, 'for': 1.0, 'had': 1.0, 'wish': 1.0}
Word element => {'price': 1.0, 'and': 2.0, 'it': 2.0, 'this': 1.0, 'complain': 1.0, 'with': 1.0, 'was': 1.0, 'fact': 1.0, 'easily': 1.0, 'vibration': 1.0, 'like': 1.0, 'together': 1.0, 'able': 1.0, 'fabric': 1.0, 'have': 1.0, 'to': 1.0, 'all': 2.0, 'months': 1.0, 'wished': 1.0, 't': 1.0, 'could': 1.0, 'a': 1.0, 'i': 6.0, 'the': 4.0, 'loved': 1.0, 'use': 1.0, 'feel': 1.0, 'longer': 1.0, 'is': 1.0, 'than': 1.0, 'few': 1.0, 'just': 2.0, 'not': 1.0, 'put': 1.0, 'strong': 1.0, 'jungle': 1.0, 'love': 1.0, 'for': 1.0, 'themed': 1.0, 'there': 1.0, 'would': 1.0, 'that': 3.0, 'been': 1.0, 'can': 1.0, 'but': 1.0, 'music': 1.0, 'very': 1.0, 'some': 1.0, 'other': 1.0, 'bouncers': 1.0, 'in': 1.0}
Word element => {'on': 1.0, 'from': 1.0, 'baby': 1.0, 'a': 1.0, 'prevent': 1.0, 'or': 1.0, 'part': 2.0, 'at': 2.0, 'quickly': 1.0, 'then': 1.0, 'and': 1.0, 'first': 1.0, 'foam': 1.0, 'head': 2.0, 'be': 1.0, 'the': 5.0, 'of': 1.0, 'metal': 2.0, 'realized': 1.0, 'fine': 1.0, 'babies': 1.0, 'seemed': 1.0, 'in': 1.0, 'hitting': 1.0, 'rocker': 2.0, 'can': 1.0, 'their': 1.0, 'something': 1.0, 'hit': 1.0, 'to': 1.0, 'frame': 1.0, 'covered': 1.0, 'top': 1.0, 'should': 1.0}
Word element => {'inexpensive': 1.0, 'good': 1.0, 'recommend': 1.0, 'overall': 1.0, 'used': 1.0, 'others': 1.0, 'bad': 1.0, 'glitchy': 1.0, 'fairly': 1.0, 'are': 2.0, 'in': 2.0, 'tabs': 1.0, 'or': 2.0, 'because': 1.0, 'does': 1.0, 'and': 2.0, 'out': 2.0, 'looking': 1.0, 'definitely': 1.0, 'lay': 2.0, 'from': 1.0, 'also': 1.0, 'baby': 1.0, 'wipe': 1.0, 'for': 2.0, 'protrusion': 1.0, 'pull': 1.0, 'together': 1.0, 'on': 1.0, 'put': 1.0, 'work': 1.0, 'but': 2.0, 'it': 5.0, 'with': 1.0, 'is': 4.0, 'pros': 1.0, 'tray': 5.0, 'works': 1.0, 'we': 4.0, 'a': 4.0, 'place': 1.0, 'the': 12.0, 'comfortable': 1.0, 'great': 1.0, 'price': 1.0, 'were': 1.0, 'high': 3.0, 'cost': 2.0, 'getting': 1.0, 'did': 1.0, 'over': 1.0, 'chair': 2.0, 'get': 1.0, 'easy': 4.0, 'hold': 1.0, 'like': 1.0, 'table': 3.0, 'flat': 1.0, 'have': 2.0, 'bottom': 1.0, 'down': 2.0, 'especially': 1.0, 'snap': 1.0, 'off': 1.0, 'sticking': 1.0, 'when': 2.0, 'easily': 1.0, 'kitchen': 1.0, 'they': 1.0, 'directly': 1.0, 'to': 6.0, 'all': 1.0, 'as': 3.0, 'very': 1.0, 'stool': 1.0, 'at': 2.0, 'cons': 1.0, 'few': 1.0, 'divider': 1.0, 'i': 1.0, 'this': 3.0, 'wish': 1.0, 'of': 1.0, 'leg': 1.0, 'not': 4.0}
Word element => {'was': 1.0, 'price': 1.0, 'a': 1.0, 'use': 1.0, 'grandchildren': 1.0, 'i': 1.0, 'two': 1.0, 'into': 2.0, 'can': 3.0, 'the': 6.0, 'great': 3.0, 'it': 1.0, 'have': 1.0, 'both': 1.0, 'win': 2.0, 'same': 1.0, 'product': 1.0, 'be': 2.0, 'and': 3.0, 'tray': 1.0, 'chair': 1.0, 'dishwasher': 1.0, 'seat': 1.0, 'put': 2.0, 'backing': 1.0, 'washer': 1.0, 's': 1.0}
Word element => {'a': 1.0, 'around': 1.0, 'be': 1.0, 'will': 1.0, 'years': 1.0, 'price': 1.0, 'reasonable': 1.0, 'few': 1.0, 'paying': 1.0, 'super': 1.0, 'my': 1.0, 'perfect': 1.0, 'easy': 1.0, 'have': 1.0, 'all': 1.0, 'for': 2.0, 'fast': 1.0, 'son': 1.0, 'shipping': 1.0, 'mind': 1.0, 'assemble': 1.0, 'to': 1.0, 'over': 1.0, 't': 1.0, 'more': 1.0, 'great': 1.0, 'wouldn': 1.0, 'it': 1.0, 'by': 1.0}
Word element => {'this': 1.0, 'im': 1.0, 'as': 1.0, 'and': 1.0, '16lbs': 1.0, 'is': 1.0, 'seeing': 1.0, 'my': 1.0, 'high': 1.0, '4mo': 1.0, 'great': 1.0, 'it': 1.0, 'toddler': 1.0, 'chair': 2.0, 'for': 1.0, 'wish': 1.0, 'not': 1.0, 'was': 1.0, 'a': 2.0, 'she': 1.0, 'baby': 1.0, 'bigger': 1.0, 'lil': 1.0}
Word element => {'flawless': 1.0, 'and': 1.0, 'quality': 1.0, 'him': 1.0, 'awe': 1.0, 'nurses': 1.0, 's': 1.0, 'easter': 1.0, 'stitching': 1.0, 'a': 1.0, 'top': 1.0, 'new': 1.0, 'arrived': 1.0, 'carrots': 1.0, 'grandson': 1.0, 'he': 2.0, 'this': 2.0, 'of': 1.0, 'notch': 1.0, 'hospital': 1.0, 'were': 1.0, 'our': 1.0, 'parents': 1.0, 'for': 2.0, 'in': 3.0, 'purchased': 1.0, 'dressed': 1.0, 'still': 1.0, 'other': 1.0, 'we': 2.0, 'is': 2.0, 'outfit': 2.0, 'preemie': 1.0, 'all': 1.0, 'so': 1.0, 'was': 1.0, 'the': 6.0, 'when': 2.0}
Word element => {'toddlers': 1.0, 'also': 1.0, 'would': 1.0, 'that': 1.0, 'think': 1.0, 'get': 1.0, 'then': 1.0, '11': 1.0, 'son': 1.0, 'around': 1.0, 'with': 1.0, 'he': 1.0, 'this': 2.0, 'a': 1.0, 'try': 1.0, 'use': 1.0, 'c': 1.0, 'no': 1.0, 'help': 1.0, 'e': 1.0, 'months': 1.0, 'decided': 1.0, 'toilets': 1.0, 'bought': 1.0, 'give': 1.0, 'while': 1.0, 'little': 1.0, 'read': 1.0, 'my': 1.0, 'the': 1.0, 'diaper': 1.0, 'i': 3.0, 'old': 1.0, 'step': 1.0, 'baby': 1.0, 'and': 4.0, 'all': 1.0, 'to': 3.0, 'free': 1.0, 'now': 1.0, 'down': 1.0, 'longer': 1.0, 'regular': 1.0, 'potty': 1.0, 'done': 1.0, 'wanted': 1.0, 'wait': 1.0, 'great': 1.0, 'seemed': 1.0, 'his': 1.0, 'awkward': 1.0, 'be': 1.0, 'him': 3.0, 'pregnant': 1.0, 'can': 1.0, 'sign': 1.0, 'back': 1.0, 'for': 2.0}
Word element => {'anyone': 1.0, 'to': 1.0, 'definitely': 1.0, 'great': 1.0, 'works': 1.0, 'buying': 1.0, 'not': 2.0, 'did': 1.0, 'problem': 1.0, 'purchased': 1.0, 'worried': 1.0, 'got': 1.0, 'it': 8.0, 'mail': 1.0, 'this': 2.0, 'toilets': 1.0, 'too': 1.0, 'and': 3.0, 'recommend': 1.0, 'was': 2.0, 'apprehensive': 1.0, 'setting': 1.0, 'perfectly': 1.0, 'toilet': 1.0, 'average': 1.0, 'is': 1.0, 'my': 1.0, 'pee': 1.0, 'the': 5.0, 'previously': 1.0, 'guard': 1.0, 'would': 2.0, 'that': 3.0, 'than': 1.0, 'has': 1.0, 'well': 1.0, 'a': 3.0, 'mine': 1.0, 'product': 1.0, 'fit': 5.0, 'love': 1.0, 'i': 5.0, 'training': 1.0, 'most': 1.0, 'but': 1.0, 'little': 2.0, 'smaller': 1.0, 'potty': 3.0, 'boy': 1.0, 'about': 1.0, 'pourty': 1.0, 'smallest': 1.0, 'flex': 1.0, 'said': 1.0, 'in': 1.0, 'once': 1.0, 'put': 1.0, 'on': 2.0}
Word element => {'potty': 1.0, 'a': 1.0, 'for': 1.0, 'recommend': 1.0, 'i': 1.0, 'comfortably': 1.0, '5': 1.0, 'to': 1.0, 'hoping': 1.0, 'on': 2.0, 'would': 2.0, 'week': 1.0, 'sits': 1.0, '2': 1.0, 'the': 1.0, 'my': 1.0, 'earlier': 1.0, 'got': 1.0, 'it': 3.0, 'this': 2.0, 'fit': 1.0, 'daughter': 1.0, 'we': 1.0, 'looking': 1.0, 'item': 2.0, 'toilet': 1.0, 'our': 1.0, 'seat': 2.0, 'oblong': 1.0, 'and': 1.0, 'fits': 1.0, 'anyone': 1.0, 'in': 1.0, 'perfect': 1.0}
Word element => {'use': 1.0, 'my': 1.0, 'better': 1.0, 'pretty': 1.0, 'its': 1.0, 'to': 3.0, 'potty': 1.0, 'much': 1.0, 'child': 2.0, 'fits': 1.0, 'other': 1.0, 'than': 2.0, 'say': 1.0, 'a': 1.0, 'not': 1.0, 'took': 1.0, 'seem': 1.0, 'it': 1.0, 'quickly': 1.0, 'hesitation': 1.0, 'without': 1.0, 'toilet': 1.0, 'easily': 1.0, 'comfortable': 1.0, 'for': 1.0}
Word element => {'free': 1.0, 'ticket': 1.0, 'going': 1.0, 'this': 1.0, 'after': 1.0, 'simple': 1.0, 'its': 1.0, 'secure': 1.0, 'size': 1.0, 'wiggle': 1.0, 'won': 1.0, 'back': 1.0, 'need': 1.0, 'out': 1.0, 'you': 3.0, 'hold': 1.0, 'lid': 2.0, 'move': 3.0, 'easy': 1.0, 'attach': 2.0, 'got': 1.0, 'pieces': 1.0, 'covers': 1.0, 'shape': 1.0, 'nice': 1.0, 'secondly': 1.0, 'diaper': 1.0, 'as': 1.0, 'loose': 1.0, 'same': 1.0, 'time': 1.0, 'wide': 1.0, 'roughly': 1.0, 'be': 2.0, 'll': 2.0, 'right': 3.0, 'amount': 1.0, 'on': 5.0, '3': 1.0, 'your': 2.0, 'longest': 1.0, 'flipped': 1.0, 'yet': 1.0, 'love': 1.0, 'far': 1.0, 'bottom': 1.0, 'he': 2.0, 'tabs': 1.0, 'door': 1.0, 'blends': 1.0, 'have': 1.0, 'put': 1.0, 'floor': 1.0, 'couldn': 2.0, 'onto': 1.0, 'adjusted': 1.0, 'bought': 2.0, 'raised': 1.0, 'how': 1.0, 'our': 3.0, 'for': 2.0, 'land': 1.0, 'to': 10.0, 'high': 1.0, 'sat': 2.0, 'that': 8.0, 'into': 1.0, 'training': 3.0, 'potty': 3.0, 'interest': 1.0, 'can': 1.0, 'so': 2.0, 'thus': 1.0, 'second': 1.0, 'way': 1.0, 'place': 1.0, 'search': 1.0, 'began': 1.0, 'adjustable': 3.0, 'lay': 1.0, 'prevent': 1.0, 'are': 1.0, 'first': 1.0, 'working': 1.0, 'loved': 1.0, 'was': 4.0, 'doesn': 1.0, 'see': 1.0, 'tried': 1.0, 'off': 2.0, 'realized': 1.0, 'point': 1.0, 'we': 3.0, 'small': 1.0, 'a': 7.0, 'fit': 1.0, 't': 4.0, 's': 2.0, 'when': 1.0, 'again': 1.0, 'design': 1.0, 'thanks': 1.0, 'try': 1.0, 'one': 1.0, 'too': 3.0, 'and': 10.0, 'flat': 1.0, 'height': 1.0, 'son': 3.0, 'has': 3.0, 'also': 1.0, 'lift': 1.0, 'gradually': 1.0, 'unstable': 1.0, 'no': 1.0, 've': 1.0, 'seat': 7.0, 'in': 3.0, 'chair': 1.0, 'my': 4.0, 'fact': 1.0, 'padded': 1.0, 'it': 11.0, 'him': 1.0, 'profile': 1.0, 'inches': 1.0, 'the': 23.0, 'of': 4.0, 'toilet': 4.0, 'well': 1.0, 'i': 4.0, 'feet': 1.0, 'hopped': 1.0, 'within': 1.0, 'touch': 1.0, 'stool': 1.0, 'relax': 1.0, 'pourty': 1.0, 'good': 1.0, 'based': 1.0, 'rubber': 1.0, 'his': 1.0, 'around': 1.0, 'base': 1.0, 'glory': 1.0, 'tight': 1.0, 'sliding': 1.0, 'prime': 1.0, 'been': 1.0, 'amazon': 1.0, 'amazing': 1.0, 'stay': 1.0, 'if': 2.0, 'service': 1.0, 'is': 2.0, 'ring': 1.0, 'at': 2.0, '2': 1.0, 'days': 1.0, 'ordering': 1.0, 'away': 1.0, 'toddler': 1.0, 'will': 1.0}
Word element => {'you': 1.0, 'bothers': 1.0, 'it': 1.0, 'high': 1.0, 'is': 2.0, 'splashguard': 1.0, 'the': 1.0, 'woosh': 1.0, 'securely': 1.0, 'poor': 1.0, 'also': 1.0, 'slipping': 1.0, 'solid': 1.0, 'an': 2.0, 'standing': 1.0, 'had': 2.0, 'recommend': 1.0, 'was': 1.0, 'like': 2.0, 'overall': 1.0, 'elongated': 1.0, 'snap': 1.0, 'fit': 1.0, 'soft': 1.0, 'this': 3.0, 'hard': 1.0, 'with': 2.0, 'one': 1.0, 'finding': 1.0, 'popular': 1.0, 'time': 1.0, 'potty': 2.0, 'highly': 1.0, 'really': 1.0, 'to': 2.0, 'seat': 6.0, 'such': 1.0, 'snaps': 1.0, 'we': 1.0, 't': 1.0, 'a': 3.0, 'in': 3.0, 'son': 1.0, 'on': 1.0, 'my': 1.0, 'another': 1.0, 'not': 2.0, 'style': 1.0, 'handles': 1.0, 'case': 1.0, 'next': 1.0, 'that': 3.0, 'didn': 1.0, 'too': 1.0, 'and': 2.0, 'incident': 1.0, 'i': 1.0, 'right': 1.0, 'him': 1.0, 'weight': 1.0, 'tiny': 1.0, 'shift': 1.0, 'of': 1.0, 'his': 1.0}
Word element => {'seat': 1.0, 'toilet': 1.0, 'elongated': 1.0, 'our': 1.0, 'be': 1.0, 'my': 1.0, 'perfectly': 1.0, 'and': 2.0, 'get': 1.0, 'actually': 1.0, 'to': 4.0, 'twin': 1.0, 'been': 1.0, 'pee': 1.0, 't': 1.0, 'them': 1.0, 'boys': 1.0, 'haven': 1.0, 'adjusts': 1.0, 'seems': 1.0, 'but': 1.0, 'comfortable': 1.0, 'one': 1.0, 'does': 1.0, 'of': 1.0, 'able': 1.0, 'sit': 1.0, 'on': 1.0, 'never': 1.0, 'shifts': 1.0, 'it': 3.0}
Word element => {'every': 1.0, 'top': 1.0, 'slip': 1.0, 'you': 2.0, 'for': 1.0, 'does': 1.0, 'because': 1.0, 'find': 1.0, 'mother': 1.0, 'through': 2.0, 'pumping': 1.0, 'rummage': 1.0, 'bag': 1.0, 'latest': 1.0, 'need': 1.0, 'no': 1.0, 'there': 1.0, 'automatically': 1.0, 'flat': 1.0, 'them': 1.0, 'ozs': 1.0, 'what': 1.0, 'bags': 1.0, 'part': 1.0, 'freeze': 3.0, 'mamas': 1.0, 'mommy': 1.0, 'or': 1.0, 'i': 3.0, 'deep': 1.0, 'me': 1.0, 'soon': 1.0, 'milk': 1.0, 'and': 4.0, 'that': 2.0, 'into': 1.0, 'breastfeeding': 3.0, 'the': 8.0, 't': 1.0, 'a': 2.0, 'holds': 1.0, 'former': 1.0, 'is': 3.0, 'ask': 1.0, 'needs': 1.0, 'advocate': 1.0, 'world': 1.0, 'as': 2.0, 'to': 4.0, 'way': 1.0, 'bagged': 1.0, 'breastmilk': 1.0, 'take': 1.0, 'recommend': 1.0, 'store': 1.0, 'doesn': 1.0, 'milkies': 3.0, 'up': 1.0, 'of': 1.0, 'try': 1.0, 'much': 1.0, 'room': 1.0, 'in': 2.0, 'your': 1.0, 'freezer': 1.0, 'their': 1.0, 'fridge': 1.0, 'it': 4.0, 'best': 2.0, 'm': 2.0, '60': 1.0, 'date': 1.0, 'stores': 1.0}
Word element => {'stay': 1.0, 'as': 1.0, 'stack': 1.0, 'don': 1.0, 'not': 1.0, 'just': 1.0, 'top': 1.0, 'place': 1.0, 'a': 1.0, 'may': 1.0, 'easy': 1.0, 'i': 1.0, 'one': 2.0, 'search': 1.0, 'flat': 1.0, 'also': 1.0, 'in': 1.0, 'fridge': 1.0, 'on': 1.0, 'over': 1.0, 'more': 1.0, 't': 1.0, 'the': 3.0, 'my': 1.0, 'find': 1.0, 'all': 1.0, 'had': 1.0, 'to': 3.0, 'was': 1.0, 'than': 1.0, 'milk': 2.0, 'and': 1.0, 'freeze': 1.0, 'every': 1.0, 'it': 1.0, 'first': 2.0, 'this': 1.0, 'they': 1.0, 'has': 1.0, 'time': 1.0, 'next': 1.0, 'makes': 1.0, 'out': 1.0, 'really': 1.0}
Word element => {'10': 1.0, 'might': 1.0, '5oz': 1.0, 'full': 1.0, 'enough': 1.0, 'hold': 2.0, 'useless': 1.0, 'with': 1.0, 'it': 3.0, 'quickly': 1.0, 'bags': 2.0, 'became': 1.0, 'build': 1.0, 'found': 1.0, 'i': 1.0, 'stash': 1.0, 'doesn': 1.0, 'but': 1.0, 'me': 1.0, 'just': 1.0, 'worked': 1.0, 'of': 1.0, 'item': 1.0, 't': 1.0, 'great': 1.0, 'the': 1.0, 'if': 1.0, 'like': 1.0, 'you': 1.0, 'to': 1.0, 'plan': 1.0, 'a': 1.0, 'milk': 1.0}
Word element => {'else': 1.0, 'anything': 1.0, 'and': 2.0, 'hours': 1.0, '12': 1.0, 'want': 1.0, '10': 1.0, 'to': 3.0, 'buying': 1.0, 'now': 1.0, 'through': 1.0, 'slept': 1.0, 'love': 1.0, 'for': 1.0, 'bumgenius': 1.0, 'they': 1.0, 'night': 1.0, 'them': 1.0, 'the': 1.0, 'more': 1.0, 'these': 1.0, 'have': 2.0, 'leaked': 1.0, 'few': 1.0, 'my': 1.0, 'lo': 1.0, 'freetime': 1.0, 'her': 1.0, 'didn': 1.0, 'even': 1.0, 'wake': 1.0, 'of': 1.0, 'change': 1.0, 'very': 2.0, 'easy': 1.0, 'laundry': 1.0, 'cute': 1.0, 'times': 1.0, 'when': 1.0, 'am': 1.0, 'i': 2.0, 'thinking': 1.0, 'about': 1.0, 'up': 1.0, 'don': 1.0, 'right': 1.0, 'a': 1.0, 't': 2.0, 'we': 2.0, 'try': 1.0, 'only': 1.0}
Word element => {'work': 1.0, 'style': 1.0, 'snap': 1.0, 'both': 1.0, 'to': 1.0, 'great': 2.0, 'the': 1.0, 'are': 2.0, 'these': 1.0, 'they': 1.0, 'loop': 1.0, 'hook': 1.0, 'everything': 1.0, 'keep': 1.0, 'in': 1.0, 'and': 3.0, 'very': 1.0, 'use': 1.0, 'diapers': 1.0, 'easy': 1.0}
Word element => {'issue': 1.0, 'minor': 1.0, 's': 1.0, 'a': 2.0, 'so': 1.0, 'after': 1.0, 'is': 2.0, 'side': 1.0, 'money': 1.0, 'about': 1.0, 'it': 3.0, 'flop': 1.0, 'amazing': 1.0, 'the': 5.0, 'sewn': 1.0, 'saver': 1.0, 'are': 1.0, 'such': 1.0, 'these': 1.0, 'some': 1.0, 'and': 1.0, 'easy': 1.0, 'get': 1.0, 'cloth': 1.0, 'i': 1.0, 'hang': 1.0, 'decided': 1.0, 'overlapping': 1.0, 'to': 4.0, 'down': 1.0, 'freetime': 1.0, 'diapering': 1.0, 'in': 1.0, 'tend': 1.0, 'hesitation': 1.0, '34': 2.0, 'once': 1.0, 'of': 1.0, 'while': 1.0, 'trying': 1.0, 'you': 1.0, 'only': 1.0, 'try': 1.0, 'empty': 1.0, 'stool': 1.0, 'into': 1.0, 'finally': 1.0, 'toilet': 1.0, 'inserts': 1.0, 'though': 1.0}
Word element => {'penny': 1.0, 'off': 1.0, 'tags': 1.0, 'hate': 1.0, 'tagless': 1.0, 'it': 1.0, 'super': 1.0, 'would': 1.0, 'only': 1.0, 'pain': 1.0, 'huge': 1.0, 'which': 1.0, 'diaper': 1.0, 'additional': 1.0, 'need': 1.0, 'brands': 1.0, 'othe': 1.0, 'other': 1.0, 'time': 2.0, 'amount': 1.0, 'same': 1.0, 'worth': 1.0, 'or': 1.0, 'sun': 1.0, 'in': 2.0, 'change': 1.0, 'but': 2.0, 'mean': 1.0, 'a': 2.0, 'well': 1.0, 'cut': 1.0, 'dry': 1.0, 'thicker': 1.0, 'see': 1.0, 'made': 1.0, 'wash': 1.0, 'long': 1.0, 'drying': 1.0, 'what': 1.0, 'get': 1.0, 'and': 4.0, 'light': 1.0, 'absorbable': 3.0, 'thing': 1.0, 'fo': 1.0, 'they': 2.0, 'the': 6.0, 'dryer': 1.0, 'have': 2.0, 'are': 3.0, 'pics': 1.0, 'tried': 1.0, 'cloth': 1.0, 'i': 5.0, 'these': 3.0, 'some': 2.0, 'at': 1.0, 'of': 3.0, 'you': 1.0, 'best': 1.0, 'to': 1.0, 'as': 2.0, 'flaps': 1.0, 'very': 1.0, 'diapers': 2.0, 'crucial': 1.0, 'inside': 1.0, 'thinner': 1.0, 'clothes': 1.0, 'them': 2.0, 'quality': 1.0, 'baby': 1.0, 'him': 1.0, 'more': 1.0, 'is': 3.0, 'nice': 1.0, 'for': 1.0, 'fit': 1.0, 'product': 1.0, 'every': 1.0, 'really': 1.0, 'material': 1.0, 'make': 1.0, 'on': 1.0, 'with': 1.0, 'look': 1.0}
Word element => {'again': 1.0, 'from': 1.0, 'i': 4.0, 'cloth': 1.0, 'to': 1.0, 'hoping': 1.0, 'well': 1.0, 'review': 2.0, 'these': 1.0, 'recommend': 1.0, 'easy': 1.0, 'of': 3.0, 'up': 1.0, 'use': 1.0, 'got': 1.0, 'diapers': 3.0, 'them': 1.0, 'quality': 1.0, 'definitely': 1.0, 'blue': 1.0, 're': 1.0, 'love': 1.0, 'for': 1.0, 'they': 1.0, 'vendor': 2.0, '3': 2.0, 'ordered': 1.0, 'this': 2.0, 'great': 1.0, 'assortment': 1.0, 'pack': 2.0, 'variety': 2.0, 'colors': 1.0, 'hold': 1.0, 'which': 1.0, 'is': 1.0, 'what': 1.0, 'green': 1.0, 'and': 2.0, 'description': 1.0, 'not': 1.0, 'the': 2.0, 'promised': 1.0, 'however': 1.0, 'order': 1.0, 'a': 2.0, 'we': 1.0, 'hardly': 1.0, 'would': 1.0}
Word element => {'shipping': 1.0, 'hassle': 1.0, 'first': 1.0, 'return': 2.0, 'clean': 1.0, 'before': 1.0, 'couple': 1.0, 'able': 1.0, 'you': 2.0, 'know': 1.0, 'shot': 1.0, 'worth': 1.0, 'problem': 1.0, 'have': 1.0, 'shields': 2.0, 'using': 1.0, 'getting': 1.0, 'any': 1.0, 'had': 1.0, 'fit': 1.0, 't': 1.0, 'haven': 1.0, 'house': 1.0, 'around': 1.0, 'move': 1.0, 'baby': 1.0, 'am': 2.0, 'take': 1.0, 'can': 1.0, 'slipped': 1.0, 'might': 1.0, 'came': 1.0, 'actual': 1.0, 'one': 8.0, 'stiff': 1.0, 'reluctantly': 1.0, 'an': 1.0, 'all': 3.0, 'to': 5.0, 'as': 1.0, 'and': 6.0, 'through': 1.0, 'crusted': 1.0, 'milk': 4.0, 'just': 2.0, 'filter': 1.0, 'dried': 1.0, 'obviously': 1.0, 'order': 1.0, 'health': 1.0, 'inspecting': 1.0, 'over': 1.0, 'up': 1.0, 'began': 1.0, 'in': 2.0, 'telling': 1.0, 'gross': 1.0, 'a': 6.0, 'of': 1.0, 'the': 13.0, 'myself': 1.0, 'appalled': 1.0, 'replace': 1.0, 'pump': 2.0, 'get': 2.0, 'ordered': 2.0, 'out': 3.0, 'battery': 2.0, 'wall': 1.0, 'old': 3.0, 'i': 14.0, 'when': 3.0, 'breast': 1.0, 'problems': 1.0, 'easily': 1.0, 'because': 1.0, 'that': 4.0, 'into': 2.0, 'opened': 1.0, 'cover': 1.0, 'was': 8.0, 'inside': 1.0, 'tubing': 1.0, 'down': 1.0, 'medela': 1.0, 'with': 5.0, 'unit': 2.0, 'starting': 1.0, '9': 1.0, 'it': 9.0, 'this': 6.0, 'crap': 1.0, 'full': 1.0, 'unless': 1.0, 'excited': 1.0, 'modes': 1.0, 'two': 1.0, 'plugs': 1.0, 'nice': 1.0, 'use': 1.0, 'returned': 1.0, 'is': 4.0, 'more': 1.0, 'not': 2.0, 'disgusting': 1.0, 'reconditioned': 1.0, 'there': 1.0, 'give': 1.0, 'without': 1.0, 'cracks': 1.0, 'works': 1.0, 'do': 1.0, 'personal': 1.0, 'but': 2.0, 'another': 1.0, 'paid': 1.0, 'only': 1.0, 'company': 2.0, 'looks': 1.0, 'my': 1.0, 'from': 1.0, 'if': 1.0, 'boy': 1.0, 'would': 1.0, 'new': 2.0, 'pay': 1.0, 'year': 1.0, 'price': 1.0, 'hazard': 1.0, 'luckily': 1.0, 'like': 1.0, 'which': 1.0, 'charm': 1.0, 'love': 1.0, 'stimulation': 1.0, 'has': 1.0, 'no': 1.0, 'let': 1.0, 'or': 3.0, 'than': 1.0, 'runs': 1.0, 'on': 1.0}
Word element => {'excellent': 1.0, 'an': 1.0, 'month': 1.0, 'been': 1.0, 's': 1.0, 'definitely': 1.0, 'now': 1.0, 'was': 1.0, 'it': 1.0, 'this': 1.0, 'far': 1.0, 'reconditioned': 1.0, 'anything': 1.0, 'is': 1.0, 'and': 2.0, 'bought': 1.0, 'never': 1.0, 'a': 2.0, 'well': 1.0, 'i': 1.0, 'good': 1.0, 'choice': 1.0, 'the': 1.0, 'pump': 1.0, 'deal': 1.0, 'condition': 1.0, 've': 1.0, 'in': 1.0, 'perfect': 1.0, 'before': 1.0, 'works': 1.0, 'so': 1.0}
Word element => {'penny': 1.0, 'worth': 1.0, 'honestly': 1.0, 'pricey': 1.0, 'wear': 1.0, 'definitely': 1.0, 'so': 1.0, 'of': 1.0, 'thick': 1.0, 'layer': 1.0, 'top': 1.0, 'soft': 1.0, 'is': 3.0, 'good': 1.0, 'a': 5.0, 'does': 1.0, 'old': 1.0, 'every': 1.0, 'bibs': 1.0, 'great': 2.0, 'drooler': 1.0, 'these': 3.0, 'tad': 1.0, 'job': 1.0, 'the': 5.0, 'month': 1.0, 'love': 2.0, 'bib': 1.0, 'at': 1.0, 'i': 2.0, 'two': 2.0, 'n': 1.0, 'not': 1.0, 'my': 1.0, 'are': 4.0, 'they': 7.0, 'but': 3.0, 'on': 1.0, 'absorbent': 1.0, 'put': 1.0, 'very': 2.0, 'only': 2.0, 'extremely': 1.0, '5': 1.0, 'with': 1.0, 'fight': 1.0, 'cotton': 1.0, 'trying': 1.0, 'grow': 1.0, 'as': 1.0, 'to': 2.0, 'soak': 1.0, 'downfall': 1.0, 'far': 1.0, 'through': 1.0, 'wash': 1.0, 'up': 1.0, 'catch': 1.0, 'and': 3.0, 'absorb': 1.0, 'cute': 1.0, 'drool': 1.0, 'also': 1.0, 'spit': 1.0, 'that': 2.0, 'have': 2.0, 'snaps': 1.0, 'backing': 1.0, 'baby': 1.0}
Word element => {'new': 1.0, 'same': 1.0, 'the': 1.0, 'than': 1.0, 'much': 1.0, 'model': 1.0, 'for': 2.0, 'had': 1.0, 'cheaper': 1.0, 'she': 1.0, 'been': 1.0, 'every': 1.0, 'worth': 1.0, 'gift': 1.0, 'bought': 2.0, 'a': 1.0, 'problems': 1.0, 'as': 1.0, 'and': 2.0, 'my': 1.0, 'i': 1.0, 'has': 2.0, 'no': 1.0, 'sister': 1.0, 'this': 2.0, 'it': 1.0, 'penny': 1.0, 'continuously': 1.0, 'used': 1.0, 'months': 1.0, 'is': 1.0}
Word element => {'satisfied': 1.0, 'am': 1.0, 'i': 1.0, 'one': 1.0, 'brand': 1.0, 'a': 1.0, 'price': 1.0, 'this': 1.0, 'new': 1.0, 'pump': 1.0, 'for': 1.0, 'been': 1.0, 'amazing': 1.0, 'very': 2.0, 'and': 1.0, 'the': 1.0, '3': 1.0, 'has': 1.0, '1': 1.0, 'of': 2.0}
Word element => {'ordering': 1.0, 'could': 1.0, 'a': 2.0, 't': 4.0, 'others': 2.0, 'said': 1.0, 'in': 1.0, 'really': 1.0, 'almost': 1.0, 'return': 2.0, 'bc': 1.0, 'would': 1.0, 'little': 1.0, 'very': 1.0, 'since': 1.0, 'adaptor': 1.0, 'bought': 1.0, 'as': 3.0, 'to': 2.0, 'all': 1.0, 'were': 2.0, 'also': 1.0, 'missing': 1.0, 'i': 9.0, 'buying': 1.0, 'with': 2.0, 'was': 1.0, 'go': 1.0, 'opted': 1.0, 'pump': 6.0, 'always': 1.0, 'has': 3.0, 'but': 4.0, 'work': 1.0, 'policy': 1.0, 'this': 3.0, 'already': 2.0, 'it': 5.0, 'same': 2.0, 'felt': 1.0, 'hesitant': 1.0, 'have': 2.0, 'of': 1.0, 'the': 14.0, 'parts': 2.0, 'defective': 1.0, 'including': 1.0, 'power': 1.0, 'maybe': 1.0, 'having': 1.0, 'though': 1.0, 'deter': 1.0, 'great': 2.0, 'so': 1.0, 'first': 2.0, 'bad': 2.0, 'working': 1.0, 'reconditioned': 1.0, 'there': 1.0, 'amazon': 1.0, 'been': 1.0, 'that': 2.0, 'case': 1.0, 'times': 1.0, 'you': 2.0, 'love': 1.0, 'suction': 1.0, 'be': 1.0, 'wasn': 2.0, 'strong': 1.0, 'enough': 1.0, 'where': 2.0, 're': 1.0, 'at': 2.0, 'rhythm': 1.0, 'is': 2.0, 'handle': 1.0, 'set': 1.0, 'keep': 1.0, 'did': 2.0, 'just': 1.0, 'reviews': 2.0, 'fine': 1.0, 'don': 2.0, 'up': 1.0, 'know': 1.0, 'sent': 1.0, 'me': 1.0, 'and': 1.0, 'price': 1.0, 'unbeatable': 1.0, 'let': 1.0, 'negative': 1.0, '2nd': 1.0, 'happy': 1.0, 'if': 3.0, 'still': 1.0, 'ended': 1.0}
Word element => {'came': 1.0, 'bag': 1.0, 'her': 1.0, 'at': 1.0, 'use': 1.0, 'hospital': 1.0, 'good': 1.0, 'in': 2.0, 'built': 1.0, 'love': 1.0, 'for': 1.0, 'had': 1.0, 'wish': 1.0, 'crib': 1.0, 'timer': 1.0, 'a': 1.0, 'nice': 1.0, 'nicu': 1.0, 'as': 1.0, 'very': 1.0, 'and': 2.0, 'those': 1.0, 'late': 1.0, 'with': 1.0, 'it': 2.0, 'this': 1.0, 'i': 3.0, 'night': 1.0, 'pumpings': 1.0, 'my': 1.0, 'the': 3.0, 'about': 1.0, 'baby': 1.0, 'side': 1.0, 'is': 2.0, 'pump': 2.0}
Word element => {'at': 1.0, 'probably': 1.0, 'sent': 1.0, 'hooked': 1.0, 'company': 1.0, 'was': 2.0, 'machine': 1.0, 'when': 1.0, 'm': 1.0, 'i': 5.0, 'before': 1.0, 'even': 1.0, 'buyer': 1.0, 'this': 2.0, 'it': 3.0, 'product': 2.0, 'reconditioned': 1.0, 've': 1.0, 'dead': 1.0, 'up': 1.0, 'beware': 1.0, 'owed': 1.0, 'like': 1.0, 'model': 1.0, 'because': 1.0, 'great': 1.0, 'seemed': 1.0, 'a': 2.0, 'defective': 1.0, 'the': 5.0, 'deal': 1.0, 'instructions': 1.0, 'on': 1.0, 'and': 2.0, 'not': 1.0, 'me': 2.0, 'followed': 1.0, 'quite': 1.0, 'familiar': 1.0, 'help': 1.0, 'motor': 1.0, 'all': 2.0, 'ordered': 1.0, 'troubleshooting': 2.0, 'red': 1.0, 'with': 1.0, 'manual': 1.0, 'flashing': 1.0, 'called': 1.0, 'so': 1.0, 'that': 1.0, 'they': 2.0, 'process': 1.0, 'guide': 1.0, 'can': 1.0, 'through': 1.0}
Word element => {'other': 1.0, 'correct': 1.0, 'in': 1.0, 'nice': 1.0, 'been': 1.0, 'pack': 1.0, 'have': 1.0, 'would': 1.0, 'proofing': 1.0, 'my': 1.0, 'finish': 1.0, 'enough': 1.0, '12': 3.0, 'of': 3.0, 'receive': 2.0, 'baby': 1.0, 'boxes': 1.0, 'had': 1.0, 'to': 3.0, 'was': 1.0, 'me': 1.0, '1': 1.0, 'and': 2.0, 'send': 1.0, 'ordered': 3.0, 'i': 4.0, 'not': 1.0, 'plugs': 2.0, 'please': 1.0, 'instead': 1.0, 'each': 1.0, 'received': 1.0, 'box': 1.0, 'amount': 1.0, 'what': 2.0, 'the': 2.0, '2': 1.0, 't': 1.0, 'suppose': 1.0, 'isn': 1.0, 'with': 1.0, 'this': 1.0, 'it': 1.0}
Word element => {'deluxe': 2.0, 'covers': 1.0, 'it': 1.0, 'this': 1.0, 'can': 1.0, 'at': 1.0, '1st': 2.0, 'off': 1.0, 'pd': 1.0, 'baby': 1.0, 'all': 1.0, 'our': 2.0, 'take': 1.0, 'apartment': 1.0, '9mo': 1.0, 'safety': 2.0, 'too': 1.0, 'is': 2.0, 'use': 2.0, 'amazon': 1.0, 'are': 1.0, 'some': 1.0, 'loose': 1.0, 'type': 1.0, 'old': 1.0, 'ref': 1.0, 'don': 1.0, 'outlets': 1.0, 'easily': 1.0, 'www': 1.0, 'for': 1.0, 'com': 1.0, 'fit': 1.0, 'betterhttp': 1.0, '1m3dkhhaa9q4xp1g9sh7or': 1.0, '8': 1.0, 'one': 1.0, 'count': 1.0, 'utf8': 1.0, '7': 1.0, 'dp': 1.0, 'sbs': 1.0, 'ba': 1.0, 'ie': 1.0, 'b00005u8t5': 1.0, 'outlet': 2.0, 'refrid': 1.0, 't': 1.0, 'the': 1.0, 'plug': 1.0}
Word element => {'yellowing': 1.0, 'no': 1.0, 'these': 1.0, 'aware': 1.0, 'also': 1.0, 've': 1.0, 'my': 1.0, 'fingers': 1.0, 'to': 4.0, 'had': 1.0, 'they': 1.0, 'don': 1.0, 't': 1.0, 'a': 2.0, 'annoying': 1.0, 'remove': 2.0, 'covers': 1.0, 'them': 2.0, 'adults': 1.0, 'are': 2.0, 'you': 1.0, 'way': 1.0, 'yrs': 1.0, 'if': 1.0, 'outlet': 2.0, 'impossible': 1.0, 'little': 3.0, 'sure': 1.0, 'though': 1.0, 'bit': 1.0, 'for': 3.0, 'right': 1.0, 'of': 2.0, 'is': 2.0, 'the': 3.0, 'whoever': 1.0, 'replaces': 1.0, 'favorite': 1.0, 'touchable': 1.0, 'need': 1.0, 'cover': 1.0, 'next': 1.0, 'that': 1.0, 'i': 1.0, 'on': 1.0, 'put': 1.0, 'make': 1.0, '3': 1.0, 'and': 1.0}
Word element => {'thanks': 1.0, 'new': 1.0, 'almost': 1.0, 'happy': 1.0, 'are': 1.0, 'they': 1.0, 'like': 1.0, 'very': 1.0, 'and': 1.0, 'bought': 1.0, 'this': 1.0, 'out': 1.0, 'someone': 1.0, 'that': 1.0, 'for': 1.0, 'desperately': 1.0, 'needed': 1.0, 'great': 1.0, 'it': 1.0, 'worked': 1.0}
Word element => {'mind': 1.0, 'are': 1.0, 'operate': 1.0, 'yes': 1.0, 'from': 1.0, 'locks': 1.0, 'door': 1.0, 'he': 1.0, 'is': 1.0, 'annoying': 1.0, 'it': 1.0, 'at': 1.0, 'since': 1.0, 'leaves': 1.0, 'my': 1.0, 'anything': 1.0, 'sets': 1.0, 'set': 1.0, 're': 1.0, 'up': 1.0, 'don': 1.0, 'also': 1.0, 'try': 1.0, 'husband': 1.0, 'alone': 1.0, 'worth': 1.0, 'let': 1.0, 'yet': 1.0, 'of': 5.0, 'open': 2.0, 'peace': 1.0, 'couldn': 1.0, 'and': 3.0, 'perfectly': 1.0, 'get': 1.0, 'sure': 1.0, 'wanted': 1.0, 'so': 2.0, 'be': 1.0, 'window': 1.0, 'yard': 1.0, 'which': 1.0, 'reach': 1.0, 'the': 4.0, 'automatically': 1.0, 'have': 3.0, 'totally': 1.0, 'that': 3.0, 'koi': 1.0, 'toddler': 2.0, 'back': 1.0, 'pond': 1.0, 'they': 3.0, 'for': 1.0, 'love': 1.0, 'fit': 1.0, 'lake': 1.0, 'we': 3.0, 't': 3.0, 'a': 2.0, 'outside': 2.0, 'to': 5.0, 'all': 1.0, 'our': 4.0, 'any': 1.0, 'doors': 2.0, 'happy': 1.0, 'lead': 1.0, 'type': 1.0, '4': 1.0, 'i': 3.0, 'times': 1.0, 'when': 2.0, 'am': 1.0, 'found': 1.0, 'make': 1.0, 'on': 1.0, '3': 1.0, 'these': 1.0, 'some': 1.0, 'itself': 1.0, 'borders': 1.0, 'in': 1.0, 'them': 3.0, 'but': 1.0, 'work': 1.0, 'can': 2.0, 'even': 1.0}
Word element => {'master': 1.0, 'learning': 1.0, 'package': 1.0, '3': 1.0, 'easy': 1.0, 'minutes': 1.0, 'opening': 1.0, 'grandson': 1.0, 'using': 1.0, 'kept': 1.0, 'door': 2.0, 'the': 3.0, 'three': 1.0, 'a': 1.0, 'well': 1.0, 'it': 3.0, 'bit': 1.0, 'though': 1.0, 'from': 2.0, 'year': 1.0, 'was': 1.0, 'to': 6.0, 'used': 1.0, 'works': 1.0, 'even': 1.0, 'old': 1.0, 'took': 1.0, 'device': 2.0, 'our': 2.0, 'unlock': 1.0, 'get': 1.0, 'and': 2.0, 'install': 1.0, 'lock': 1.0, 'has': 1.0}
Word element => {'product': 1.0, 'going': 1.0, 'mind': 1.0, 'keep': 1.0, 'handy': 1.0, 'say': 1.0, 'd': 1.0, '5': 1.0, 'take': 1.0, 'should': 1.0, 'installation': 1.0, 'minutes': 2.0, '30': 1.0, 'about': 1.0, 'took': 1.0, 'locks': 1.0, 'out': 1.0, 'types': 1.0, 'enough': 3.0, 'trim': 1.0, 'where': 1.0, 're': 2.0, 'adults': 1.0, 'exterior': 2.0, 'also': 1.0, 'ability': 1.0, 'chains': 1.0, 'best': 1.0, 'a': 7.0, 't': 1.0, 'which': 1.0, 'for': 3.0, 'use': 1.0, 'easy': 1.0, 'have': 2.0, 'an': 1.0, 'other': 1.0, 'all': 3.0, 'great': 1.0, 'install': 2.0, 'works': 1.0, 'only': 1.0, 'much': 1.0, 'do': 1.0, 'wouldn': 1.0, 'major': 1.0, 'this': 5.0, 'try': 1.0, 'ones': 1.0, 'rear': 1.0, 'drilling': 1.0, 'not': 3.0, 'structurally': 1.0, 'from': 2.0, 'allow': 1.0, 'little': 1.0, 'the': 10.0, 'of': 4.0, 'there': 3.0, 'double': 1.0, 'will': 1.0, 'means': 1.0, 'door': 3.0, 'tape': 1.0, 'no': 1.0, 'or': 1.0, 'but': 1.0, 'so': 2.0, 'can': 1.0, 'normally': 1.0, '2': 1.0, 'and': 5.0, 'sided': 1.0, 'it': 5.0, 'that': 4.0, 'i': 6.0, 'on': 1.0, 'your': 1.0, 'material': 1.0, 'excellent': 1.0, 'really': 1.0, 'guy': 1.0, 'issue': 1.0, 'screws': 1.0, 'had': 1.0, 'others': 1.0, 'diagonal': 1.0, 'unlock': 1.0, 'still': 2.0, 'every': 1.0, 'certainly': 1.0, 'if': 2.0, 'has': 1.0, 'angle': 1.0, 'window': 1.0, 'be': 1.0, 'm': 1.0, 'in': 3.0, 'me': 1.0, 'may': 1.0, 'space': 1.0, 'is': 4.0, 'at': 1.0, 'with': 2.0, 'modification': 2.0, 'was': 2.0, 'you': 3.0, 'able': 3.0, '1': 1.0, 'edge': 2.0, 'unit': 2.0, 'see': 1.0, 'hack': 1.0, 'plus': 1.0, 'are': 1.0, 'mounting': 1.0, 'sound': 1.0, 'saw': 1.0, 'pretty': 1.0, 'to': 8.0, 'straight': 1.0}
Word element => {'safe': 1.0, 'help': 1.0, 'to': 1.0, 'him': 1.0, 'it': 2.0, 'needed': 1.0, 'i': 2.0, 's': 1.0, 'bought': 1.0, 'my': 1.0, 'the': 1.0, 'and': 1.0, 'lock': 1.0, 'fine': 1.0, 'husband': 1.0, 'worked': 1.0, 'keep': 1.0, 'has': 2.0, 'because': 1.0, 'alzheimer': 1.0}
Word element => {'let': 1.0, 'more': 1.0, 'the': 2.0, 'works': 1.0, 'it': 3.0, 'come': 1.0, 'lock': 1.0, 'great': 1.0, 'install': 1.0, 'proof': 1.0, 'and': 2.0, 'he': 1.0, 'door': 2.0, 'my': 2.0, 'that': 1.0, 'to': 4.0, 'husband': 1.0, 'this': 2.0, 'pain': 1.0, 'so': 1.0, 'bit': 1.0, 'unfortunately': 1.0, 'was': 1.0, 'attribute': 1.0, 'deadbolt': 1.0, 'of': 1.0, 'product': 1.0, 'than': 1.0, 'i': 1.0, 'old': 1.0, '3': 1.0, 'year': 1.0, 'unlock': 1.0, 'from': 2.0, 'opening': 1.0, 'but': 1.0, 'work': 1.0, 'can': 1.0, 'also': 1.0, 'inside': 1.0, 'especially': 1.0, 'when': 1.0, 't': 1.0, 'a': 2.0, 's': 1.0, 'him': 1.0, 'be': 1.0, 'trying': 1.0, 'keep': 1.0, 'at': 1.0, 'won': 1.0, '3am': 1.0}
Word element => {'use': 1.0, 'did': 1.0, 'do': 1.0, 'a': 1.0, 'to': 1.0, 'this': 1.0, 'get': 1.0, 'bolt': 1.0, 'in': 1.0, 'dead': 1.0, 'ordered': 1.0, 'by': 1.0, 'refund': 1.0, 'i': 1.0, 'it': 2.0, 'returned': 1.0, 'lock': 1.0, 'not': 1.0, 'was': 1.0, 'order': 1.0, 'so': 1.0, 'mistake': 1.0}
Word element => {'side': 1.0, 'appears': 1.0, 'using': 1.0, 'wary': 1.0, 'be': 1.0, 'example': 1.0, 'shows': 1.0, 'installed': 1.0, 'closeup': 1.0, 'showing': 1.0, 'item': 1.0, 'image': 1.0, 'ironically': 1.0, 'yourself': 1.0, 'out': 1.0, 'find': 1.0, 'fits': 2.0, 'another': 2.0, 'my': 1.0, 'may': 1.0, 'great': 1.0, 'option': 1.0, 'have': 1.0, 'or': 4.0, 'latch': 4.0, 'work': 2.0, '2': 1.0, 'but': 1.0, 'three': 2.0, 'houses': 1.0, 'say': 1.0, 'different': 1.0, 'originally': 1.0, 'likely': 1.0, 'at': 2.0, 'is': 3.0, 'look': 2.0, 'to': 6.0, 'as': 2.0, 'rub': 1.0, 'now': 1.0, 'had': 1.0, 'either': 1.0, 'can': 1.0, 'so': 1.0, 'just': 1.0, 'by': 2.0, 'not': 3.0, 'after': 1.0, 'multiple': 1.0, 've': 1.0, 'saying': 1.0, 'own': 1.0, 'did': 1.0, 'reading': 1.0, '3': 1.0, 'your': 2.0, 'and': 7.0, 'with': 1.0, 'schlage': 4.0, 'of': 6.0, 'the': 6.0, 'you': 3.0, 'deadbolts': 3.0, 'that': 3.0, 'because': 1.0, 'bought': 1.0, 'it': 4.0, 'this': 7.0, 'simply': 3.0, 'only': 2.0, 'one': 3.0, 'try': 2.0, 'll': 1.0, 'perfectly': 2.0, 'for': 3.0, 'cheap': 1.0, 'intended': 1.0, 'was': 1.0, 'a': 5.0, 's': 1.0, 't': 1.0, 'might': 1.0, 'dexter': 1.0, 'house': 2.0, 'i': 5.0, 'well': 2.0, 'reviewer': 1.0, 'didn': 1.0, 'unbranded': 1.0, 'instead': 1.0, 'even': 1.0, 'deadbolt': 4.0, 'has': 2.0, 'them': 1.0, 'on': 2.0, 'noticed': 1.0, 'mentioned': 1.0, 'lever': 1.0, 'get': 2.0, 'in': 1.0, 'way': 1.0, 'compared': 1.0, 'stuck': 1.0, 'if': 2.0, 'centered': 2.0, 'symmetrical': 1.0, 'very': 1.0, 'branded': 1.0, 'want': 1.0, 'asymmetrical': 2.0, 'reviews': 1.0, 'then': 1.0, 'product': 5.0, 'price': 1.0, 'buy': 1.0}
Word element => {'when': 1.0, 'times': 1.0, 'several': 1.0, 'on': 1.0, 'install': 1.0, 'issues': 1.0, 'does': 1.0, 'position': 1.0, 'expect': 1.0, 'couple': 1.0, 'there': 1.0, 'job': 1.0, 'first': 1.0, 'with': 1.0, 'it': 3.0, 'you': 1.0, 's': 1.0, 'deadbolts': 1.0, 'the': 1.0, 'a': 1.0, 'are': 1.0, 'overall': 1.0, 'design': 1.0, 'most': 1.0, 'adjust': 1.0, 'but': 1.0, 'will': 1.0, 'work': 1.0, 'its': 1.0, 'to': 1.0}
Word element => {'product': 1.0, 'great': 1.0, 'hazard': 1.0, 'even': 2.0, 'can': 2.0, 'it': 1.0, 'this': 2.0, 'use': 2.0, 'then': 1.0, 'be': 1.0, 'to': 3.0, 'its': 1.0, 'is': 1.0, 'people': 1.0, 'good': 3.0, 'someone': 1.0, 'fire': 1.0, 'really': 2.0, 'lock': 1.0, 'little': 1.0, 'too': 1.0, 'i': 2.0, 'old': 1.0, 'if': 2.0, 'door': 1.0, 'how': 2.0, '6': 1.0, 'teach': 1.0, 'have': 2.0, 'doesn': 1.0, 'house': 1.0, 'a': 5.0, 't': 2.0, 'the': 1.0, 'u': 2.0, 'know': 1.0, 'get': 1.0, 'out': 2.0, 'don': 1.0, 'figuring': 1.0, 'that': 1.0, 'often': 1.0, 'theres': 1.0, 'no': 1.0, 'always': 1.0, 'way': 1.0, 'of': 1.0, 'imagine': 1.0, 'year': 1.0}
Word element => {'brand': 1.0, 'quite': 1.0, 'testing': 1.0, 'with': 1.0, 'minor': 1.0, 'also': 1.0, 'noticed': 1.0, 'additional': 2.0, 'safe': 1.0, 'disassemble': 1.0, 'where': 1.0, 'point': 1.0, 'jam': 1.0, 'managed': 1.0, 'gently': 1.0, 'door': 1.0, 'another': 1.0, 'think': 1.0, 'latch': 1.0, 'treating': 1.0, 'from': 2.0, 'away': 2.0, 'far': 1.0, 'appear': 1.0, 'push': 1.0, 'intended': 1.0, 'arms': 1.0, 'sweeper': 1.0, 'not': 3.0, 'tabs': 1.0, 'use': 2.0, 'between': 1.0, 'degree': 1.0, 'advised': 1.0, 'don': 2.0, 'isn': 1.0, 'that': 5.0, 'fire': 1.0, 'easily': 1.0, 'result': 1.0, 'because': 2.0, 'lock': 6.0, 'plus': 1.0, 'down': 1.0, 'tiny': 1.0, 'a': 10.0, 'rattle': 2.0, 'fiddling': 1.0, 'screw': 1.0, 'on': 7.0, '1': 1.0, 'we': 4.0, 'for': 2.0, 'some': 2.0, 'settled': 1.0, 'centered': 1.0, 'has': 1.0, 'them': 2.0, 'all': 1.0, 'deadbolt': 5.0, 'well': 1.0, 'redesign': 1.0, 'i': 12.0, 'this': 4.0, 'you': 2.0, 'about': 1.0, 'no': 1.0, 'handle': 5.0, 'at': 2.0, 'lightly': 2.0, 'tighten': 2.0, 'were': 1.0, 'user': 1.0, 'hitting': 1.0, 'must': 1.0, 'apply': 1.0, 'unmovable': 1.0, 'screws': 1.0, 'below': 1.0, 'cover': 4.0, 'if': 8.0, 're': 1.0, 'know': 1.0, 'part': 1.0, 'now': 1.0, 'slide': 1.0, 'problem': 1.0, 'full': 1.0, 'help': 1.0, 'even': 1.0, 'of': 10.0, 'the': 34.0, 'securing': 1.0, 'these': 2.0, 'is': 5.0, 'turn': 2.0, 'schlage': 2.0, '90': 1.0, 'bit': 2.0, 'than': 1.0, 'so': 2.0, 'extended': 1.0, 'plate': 2.0, 'pull': 2.0, 'name': 1.0, 'comments': 1.0, 'up': 2.0, 'dropping': 2.0, 'was': 3.0, 'perhaps': 1.0, 'reader': 1.0, 'installed': 1.0, 'click': 1.0, 'deadbolts': 2.0, 'simply': 4.0, 'inside': 1.0, 'installation': 1.0, 'might': 3.0, '4': 1.0, 'two': 2.0, 'situation': 1.0, 'adjust': 1.0, 'slightly': 2.0, 'related': 1.0, 'enough': 1.0, 'off': 4.0, 'risk': 1.0, 'less': 1.0, 'as': 4.0, 'received': 1.0, 'unable': 2.0, 'annoying': 1.0, 'pushed': 1.0, 'to': 25.0, 'high': 1.0, 'our': 2.0, 'back': 4.0, 'required': 1.0, 'very': 1.0, 'rubbing': 1.0, 'turning': 1.0, 'lower': 1.0, 'when': 2.0, 'bolt': 1.0, 'needs': 1.0, 'wife': 2.0, 'everyone': 1.0, 've': 1.0, 'while': 1.0, 'did': 1.0, 'top': 3.0, 'mechanism': 2.0, 'disengagement': 1.0, 'stars': 2.0, 'engagement': 1.0, 'been': 1.0, 'throw': 1.0, 'including': 1.0, 'final': 1.0, 'properly': 2.0, 'would': 1.0, 'secured': 1.0, 'laws': 1.0, 'bottom': 1.0, 'placement': 1.0, 'it': 15.0, 'be': 3.0, 'fully': 1.0, 'engage': 1.0, 'follow': 1.0, 'their': 2.0, 'several': 1.0, 'believe': 1.0, 'have': 5.0, 'release': 2.0, 'squeeze': 2.0, 'grip': 1.0, 'trial': 1.0, 'jams': 2.0, 'one': 2.0, 'close': 1.0, 'post': 1.0, 'had': 2.0, 'reasons': 1.0, 'just': 2.0, 'and': 9.0, 'runs': 1.0, 'truly': 1.0, 'jamming': 1.0, 'which': 2.0, 'arm': 1.0, 'requires': 1.0, 'then': 1.0, 'minute': 1.0, 'device': 1.0, 'able': 2.0, 'get': 3.0, 'cannot': 1.0, 'thing': 1.0, 'unstuck': 1.0, 'given': 1.0, 'admittedly': 1.0, 'elderly': 1.0, 'in': 2.0, 'doesn': 1.0, 's': 3.0, 'm': 2.0, 'work': 3.0, 'though': 1.0, 'after': 2.0, 'times': 1.0, 'grips': 1.0, 'jammed': 1.0, 'stuck': 1.0, 'since': 3.0, 'unusable': 1.0, 'but': 2.0, 'popular': 1.0, 'or': 2.0, 'both': 2.0, 'other': 2.0, 'an': 3.0, 'are': 1.0, 'my': 2.0, 'issues': 1.0, 'center': 4.0, 'going': 2.0, 'longer': 2.0, 'ship': 1.0, 'safety': 1.0, 'there': 1.0, 'someone': 1.0, 'd': 1.0, 'out': 1.0, 't': 4.0, 'rate': 1.0, 'too': 2.0, '3': 1.0, 'trying': 1.0, 'edit': 1.0, 'like': 2.0, 'clever': 1.0, 'clean': 1.0, 'design': 1.0, 'instructions': 1.0, 'sure': 1.0, 'issue': 1.0, 'they': 2.0, 'around': 1.0, 'least': 1.0}
Word element => {'keep': 1.0, 'better': 1.0, 'uninstall': 1.0, 'too': 1.0, 'and': 3.0, 'easily': 1.0, 'fast': 1.0, 'would': 1.0, 'something': 2.0, 'that': 3.0, 'unlock': 1.0, 'toddler': 1.0, 'sneak': 1.0, 'her': 1.0, 'learned': 1.0, 'apartment': 1.0, 'how': 1.0, 'door': 1.0, 'is': 2.0, 'figure': 1.0, 'to': 1.0, 'was': 1.0, 'my': 3.0, 'needed': 1.0, 'i': 3.0, 'in': 1.0, 'so': 1.0, 'needs': 1.0, 'perfect': 1.0, 'this': 1.0, 'she': 3.0, 'it': 2.0, 'for': 1.0, '2': 1.0, 'can': 2.0, 'the': 1.0, 'without': 1.0, 'out': 2.0, 'install': 1.0, 'great': 1.0, 'feel': 1.0, 'much': 1.0, 'knowing': 1.0, 'knowledge': 1.0, 'could': 1.0, 't': 2.0, 'a': 1.0, 'price': 1.0}
Word element => {'use': 1.0, 'easier': 1.0, 'look': 1.0, 'better': 1.0, 'install': 1.0, 'this': 2.0, 'liked': 1.0, 'for': 1.0, 'deadbolts': 1.0, 'turn': 2.0, 'plate': 1.0, 'do': 1.0, 'and': 3.0, 'i': 3.0, 'device': 1.0, 'handle': 3.0, 'back': 1.0, 'work': 1.0, 'but': 2.0, 'really': 1.0, 'more': 1.0, 'is': 1.0, 'over': 2.0, 'would': 4.0, 'not': 3.0, 'you': 2.0, 'when': 1.0, 'idea': 1.0, 'turned': 1.0, 'able': 1.0, 'design': 1.0, 'cause': 2.0, 'to': 5.0, 'all': 1.0, 'any': 1.0, 'removed': 1.0, 'reach': 1.0, 'the': 9.0, 'believe': 1.0, 'tightening': 1.0, 'entire': 1.0, 'bought': 1.0, 'gray': 1.0, 'grab': 1.0, 'be': 1.0, 'knobs': 1.0, 'deadbolt': 1.0, 'that': 1.0, 'far': 1.0, 'enough': 1.0, 'rotate': 1.0, 'a': 2.0, 'move': 1.0, 'guardian': 1.0}
Word element => {'need': 1.0, 's': 1.0, 'way': 2.0, 'two': 1.0, 'i': 2.0, 'up': 2.0, 'hold': 1.0, 'which': 2.0, 'never': 1.0, 'deck': 1.0, 'would': 1.0, 'new': 2.0, 'something': 1.0, 'that': 1.0, 'into': 1.0, 'baby': 3.0, 'a': 4.0, 'go': 1.0, 'adhesive': 1.0, 'and': 2.0, 'drilling': 2.0, 'too': 1.0, 'find': 2.0, 'installed': 2.0, 'not': 2.0, 'for': 2.0, 'attaches': 1.0, 'stood': 1.0, 'in': 3.0, 'without': 1.0, 'place': 1.0, 'install': 1.0, 'you': 2.0, 'dining': 1.0, 'door': 2.0, 'floor': 1.0, 'securely': 1.0, 'french': 1.0, 'from': 1.0, 'hard': 1.0, 'me': 1.0, 'my': 3.0, 'genius': 1.0, 'doors': 1.0, 'hoping': 1.0, 'to': 8.0, 'old': 1.0, 'proofing': 3.0, 'point': 1.0, 'area': 1.0, 'second': 1.0, 'had': 1.0, 'was': 2.0, 'it': 6.0, 'test': 1.0, 'son': 1.0, 'possible': 1.0, 'fit': 1.0, 'require': 1.0, 'very': 1.0, 'figure': 1.0, 'important': 1.0, 'if': 2.0, 'safety': 2.0, '1st': 2.0, 'secure': 1.0, 'also': 1.0, 'holes': 1.0, 'mount': 1.0, 'solution': 1.0, 'deadbolt': 4.0, 'the': 14.0, 'of': 2.0, 'slips': 1.0, 'lock': 6.0, 'existing': 1.0, 'both': 1.0, 'bills': 1.0, 'only': 1.0, 'at': 1.0, 'is': 5.0, 'holds': 1.0, 'product': 1.0, 'products': 1.0, 'year': 1.0, 'toddler': 1.0, 'nothing': 1.0, 'out': 1.0, 'but': 1.0, 'did': 1.0, 'this': 3.0, 'home': 1.0, 'by': 1.0, 'loosening': 1.0, 'collar': 2.0, 'short': 1.0, 'plate': 2.0, 'behind': 1.0, 'then': 2.0, 'tighten': 1.0, 're': 1.0, 'fully': 1.0, 'encased': 1.0}
Word element => {'this': 1.0, 'with': 1.0, 'to': 1.0, 'able': 1.0, 'be': 1.0, 'deadbolt': 1.0, 'attached': 1.0, 'unlocking': 1.0, 'unlock': 1.0, 'that': 1.0, 'door': 1.0, 'is': 1.0, 'outside': 1.0, 'son': 1.0, 'year': 1.0, 'from': 2.0, 'half': 1.0, 'downside': 1.0, 'think': 1.0, 'see': 1.0, 'a': 1.0, 'don': 1.0, 'and': 1.0, 'two': 1.0, 'keeps': 1.0, 'one': 1.0, 'old': 1.0, 'i': 2.0, 'the': 3.0, 't': 1.0, 'we': 1.0, 'will': 1.0}
Word element => {'of': 1.0, 'fit': 1.0, 'doesn': 1.0, 'but': 1.0, 'what': 1.0, 'know': 1.0, '30': 1.0, 'any': 1.0, 'don': 1.0, 'mine': 1.0, 'for': 1.0, 'in': 1.0, 'we': 1.0, 'do': 1.0, 'get': 1.0, 'big': 1.0, 'thing': 1.0, 'was': 1.0, 'to': 3.0, 'lock': 1.0, 'almost': 1.0, 'spent': 1.0, 'deadbolt': 1.0, 't': 2.0, 'the': 2.0, 'minutes': 1.0, 'trying': 1.0, 'with': 1.0, 'it': 3.0, 'this': 1.0, 'on': 1.0, 'my': 1.0, 'end': 1.0, 'i': 1.0}
Word element => {'playing': 1.0, 'daughter': 1.0, 'our': 1.0, 'loves': 1.0, 'it': 1.0, 'today': 1.0, 'love': 1.0, 'these': 1.0, 'with': 1.0, 'we': 1.0}
Word element => {'very': 2.0, 'rattle': 1.0, 'in': 1.0, 'had': 1.0, 'would': 1.0, 'stay': 1.0, 'loud': 1.0, 'he': 2.0, 'it': 1.0, 'more': 1.0, 'the': 1.0, 'on': 1.0, 'they': 1.0, 'circler': 1.0, 'after': 1.0, 'items': 1.0, 'if': 1.0, 'there': 1.0, 'much': 1.0, 'is': 2.0, 'longer': 1.0, 'but': 1.0, 'about': 1.0, '5': 1.0, 'minutes': 1.0, 'done': 1.0}
Word element => {'or': 1.0, 'effect': 1.0, 'cause': 1.0, 'are': 1.0, 'something': 1.0, 'that': 1.0, 'to': 2.0, 'should': 1.0, 'through': 1.0, 'be': 1.0, 'much': 1.0, 'have': 2.0, 'more': 1.0, 't': 2.0, 'go': 1.0, 'doesn': 1.0, 'you': 1.0, 'attention': 1.0, 'didn': 1.0, 'if': 1.0, 'better': 1.0, 'toys': 1.0, 'hold': 1.0, 'so': 1.0, 'and': 1.0, 'get': 1.0, 'would': 1.0, 'him': 1.0, 'it': 1.0, 'out': 1.0, 'plus': 1.0, 'long': 1.0, 'his': 1.0}
Word element => {'secured': 1.0, 'very': 1.0, 'and': 1.0, 'well': 1.0, 'is': 1.0, 'i': 1.0, 'it': 1.0, 'just': 1.0, 'looks': 1.0, 'got': 1.0, 'loves': 1.0, 'this': 1.0, 'chair': 2.0, 'the': 1.0, 'made': 1.0, 'my': 1.0, 'in': 1.0, 'for': 1.0, 'daughter': 1.0, 'she': 2.0}
Word element => {'purchase': 1.0, 'my': 1.0, 'with': 1.0, 'happy': 1.0, 'besides': 1.0, 'folding': 1.0, 'keeps': 1.0, 'fun': 1.0, 'tried': 1.0, 'little': 1.0, 'because': 1.0, 'boring': 1.0, 'star': 1.0, '1': 1.0, 'away': 1.0, 'a': 2.0, 'off': 1.0, 'pretty': 1.0, 'take': 2.0, 'are': 1.0, 'that': 1.0, 'tv': 1.0, 'parts': 1.0, 'watch': 1.0, 'just': 3.0, 'am': 1.0, 'you': 2.0, 'side': 3.0, 'hang': 1.0, 'one': 2.0, 'yet': 1.0, 'for': 1.0, 'is': 2.0, 'around': 1.0, 'perfect': 1.0, 'switching': 1.0, 'time': 1.0, 'he': 3.0, 'arch': 2.0, 'it': 5.0, 'his': 1.0, 'even': 1.0, '2': 1.0, 'weak': 1.0, 'removable': 1.0, 'can': 4.0, 'but': 2.0, 'in': 2.0, 'turn': 1.0, 'feed': 1.0, 'toys': 3.0, 'simple': 1.0, 'other': 1.0, 'and': 7.0, 'play': 1.0, 'way': 1.0, 'sit': 4.0, 'has': 2.0, 'likes': 1.0, 'on': 3.0, 'over': 2.0, 'the': 8.0, 'own': 1.0, 'easy': 1.0, 'cannot': 1.0, 'table': 2.0, 'empty': 1.0, 'from': 1.0, 'seat': 1.0, 'all': 3.0, 'to': 5.0, 'switch': 1.0, 'feeding': 1.0, 'purple': 2.0, 'i': 4.0, 'floor': 1.0, 'no': 1.0, 'be': 1.0, 'here': 1.0, 'him': 1.0}
Word element => {'much': 1.0, 'play': 1.0, 'didn': 1.0, 'flimsy': 1.0, 's': 1.0, 'above': 1.0, 'hanging': 1.0, 'out': 1.0, 'one': 1.0, 'd': 1.0, 'again': 1.0, 'if': 1.0, 'toy': 1.0, 'baby': 3.0, 'active': 1.0, 'time': 1.0, 'have': 1.0, 'really': 2.0, 'were': 1.0, 'that': 1.0, 'bar': 1.0, 'a': 1.0, 'decreased': 1.0, 'got': 1.0, 'enjoyed': 2.0, 'buy': 2.0, 'i': 3.0, 'of': 1.0, '6': 1.0, 'months': 1.0, 't': 1.0, '2': 1.0, 'the': 3.0, 'my': 2.0, 'amount': 1.0, 'with': 2.0, 'older': 1.0, 'this': 2.0, 'it': 3.0, 'significantly': 1.0, 'to': 1.0, 'was': 1.0, 'from': 1.0, 'as': 1.0}
Word element => {'slightly': 1.0, 'something': 1.0, 'going': 1.0, 'kid': 1.0, 'each': 1.0, 'trays': 1.0, 'out': 1.0, 'put': 1.0, 'strong': 1.0, 's': 2.0, 'shoddy': 1.0, 'with': 1.0, 'issues': 1.0, 'any': 1.0, 'had': 1.0, 't': 1.0, 'haven': 1.0, 'reinforcement': 1.0, 'thus': 1.0, 'given': 1.0, 'herself': 1.0, 'them': 1.0, 'else': 1.0, 'to': 2.0, 'our': 1.0, 'time': 1.0, 'some': 1.0, 'someone': 1.0, 'you': 1.0, 'because': 1.0, 'that': 3.0, '5': 2.0, 'said': 1.0, 'seat': 2.0, 'in': 2.0, 'more': 2.0, 'spending': 1.0, 'she': 4.0, 'it': 2.0, 'own': 1.0, 'her': 3.0, 'different': 2.0, 'when': 1.0, 'sit': 1.0, 'wanting': 1.0, 'practice': 1.0, 'old': 1.0, 'on': 2.0, 'months': 2.0, 'one': 2.0, '4': 1.0, 'i': 3.0, 'way': 1.0, 'ball': 1.0, 'and': 5.0, 'stage': 1.0, 'a': 4.0, 'regularly': 1.0, 'though': 1.0, 'for': 3.0, 'this': 2.0, 'of': 1.0, 'the': 9.0, 'hanging': 2.0, 'place': 1.0, 'great': 2.0, 'figure': 1.0, 'now': 1.0, 'construction': 1.0, 'overhead': 1.0, 'free': 1.0, 'was': 3.0, 'only': 1.0, 'purchase': 1.0, 'got': 1.0, 'little': 1.0, 're': 1.0, 'girl': 1.0, 'around': 2.0, 'his': 1.0, 'through': 1.0, 'favorite': 1.0, 'here': 1.0, 'giraffe': 1.0, 'toward': 1.0, 'close': 1.0, 'second': 1.0, 'can': 3.0, 'far': 1.0, 'motor': 1.0, 'getting': 2.0, 'angles': 1.0, 'did': 1.0, 'fingers': 1.0, 'as': 3.0, 'body': 1.0, 'like': 2.0, 'toys': 2.0, 'were': 1.0, 'us': 1.0, 'also': 2.0, 'promoting': 1.0, 'reaching': 1.0, 'bar': 1.0, 'is': 4.0, 'ring': 1.0, 'at': 1.0, 'thing': 1.0, 'not': 1.0, 'animals': 1.0, 'loves': 1.0, 'position': 1.0, 'loops': 1.0, 'suggested': 1.0, 'skills': 1.0, 'they': 1.0, 'first': 1.0, 'are': 1.0, 'rolly': 1.0, 'fine': 1.0, 'we': 4.0, 'moving': 1.0, 'by': 2.0, 'pull': 1.0}
Word element => {'his': 1.0, 'grandson': 1.0, 'my': 1.0, 'worries': 1.0, 'birth': 1.0, 'before': 1.0, 'so': 1.0, 'neutral': 1.0, 'gear': 1.0, 'gender': 1.0, 'gifts': 1.0, 'love': 1.0, 'for': 2.0, 'product': 1.0, 'nice': 1.0, 'with': 1.0, 'while': 1.0, 'giving': 1.0, 'be': 1.0, 'just': 1.0, 'tents': 1.0, 'no': 1.0, 'thing': 1.0, 'looks': 1.0, 'it': 5.0, 'travel': 1.0, 'can': 2.0, 'traveling': 1.0, 'you': 1.0, 'easily': 1.0, 'not': 2.0, 'choppy': 1.0, 'helpful': 1.0, 'camper': 1.0, 'happier': 1.0, 'as': 2.0, 'any': 1.0, 'to': 3.0, 't': 1.0, 'a': 1.0, 'makes': 1.0, 'without': 1.0, 'the': 6.0, 'peaceful': 1.0, 'side': 1.0, 'call': 1.0, 'summer': 2.0, 'more': 1.0, 'is': 3.0, 'infant': 1.0, 'etc': 1.0, 'i': 2.0, 'seams': 1.0, 'up': 2.0, 'camping': 2.0, 'of': 2.0, 'which': 1.0, 'in': 1.0, 'air': 1.0, 'if': 1.0, 'being': 1.0, 'much': 1.0, 'through': 1.0, 'baby': 2.0, 'destinations': 1.0, 'napper': 2.0, 'color': 2.0, 'one': 2.0, 'flow': 1.0, 'hot': 1.0, 'sway': 1.0, 'gentle': 1.0, 'course': 1.0, 'sweaty': 1.0, 'chair': 2.0, 'motion': 1.0, 'or': 1.0, 'into': 1.0, 'and': 2.0, 'too': 1.0, 'soothing': 1.0, 'portable': 1.0, 'aids': 1.0, 'harsh': 1.0, 'little': 1.0, 'slumber': 1.0, 'folds': 1.0, 'resting': 1.0, 'easy': 1.0, 'manage': 1.0, 'allows': 1.0, 'soft': 1.0, 'this': 1.0}
Word element => {'would': 1.0, 'girl': 1.0, 'or': 1.0, 'child': 1.0, 'lovely': 1.0, 'quite': 1.0, 'not': 1.0, 'accents': 1.0, 'bright': 1.0, 'fp': 1.0, 'gender': 1.0, 'soothing': 1.0, 'keep': 1.0, 'at': 2.0, 'have': 2.0, 'neutral': 1.0, 'now': 1.0, 'bulkier': 1.0, 'next': 1.0, 'that': 1.0, 'gift': 1.0, 'to': 2.0, 'as': 2.0, 'fisher': 1.0, 'color': 1.0, 'one': 5.0, 'price': 1.0, 'm': 1.0, 'i': 4.0, 'brown': 1.0, 'in': 2.0, 'also': 1.0, 'napper': 3.0, 'comforatble': 1.0, 'handy': 1.0, 'first': 1.0, 'it': 4.0, 'pink': 1.0, 'with': 2.0, 'little': 1.0, 'very': 3.0, 'similar': 1.0, 'and': 8.0, 'baby': 5.0, 'boy': 1.0, 'so': 2.0, 'between': 1.0, 'but': 1.0, 'can': 2.0, 'sit': 1.0, 'doing': 1.0, 'this': 5.0, 'soft': 1.0, 'more': 1.0, 'say': 1.0, 'is': 4.0, 'around': 1.0, 'dark': 1.0, 'sleepy': 1.0, 'house': 2.0, 'back': 1.0, 'for': 2.0, 'actually': 1.0, 'comfortably': 1.0, 'on': 1.0, 'stuff': 1.0, 'portable': 1.0, 'my': 2.0, 'along': 1.0, 'a': 2.0, 's': 4.0, 'we': 2.0, 'forth': 1.0, 'goes': 1.0, 'home': 2.0, 'scheme': 1.0, 'grandma': 2.0, 'recommend': 1.0, 'was': 1.0, 'the': 5.0, 'travelling': 1.0, 'when': 1.0, 'easily': 1.0, 'hope': 1.0, 'light': 1.0, 'just': 2.0, 'pleasant': 1.0, 'received': 1.0}
Word element => {'transport': 1.0, 'higher': 1.0, 'less': 1.0, 'here': 1.0, 'grandbaby': 1.0, 'itemi': 1.0, '5': 1.0, 'features': 1.0, 'lacks': 1.0, 'functional': 1.0, 'storing': 1.0, 'napper': 1.0, 'traveling': 1.0, 'make': 1.0, 'help': 1.0, 'together': 1.0, 'caution': 1.0, 'where': 1.0, 'snap': 1.0, 'velcro': 1.0, 'will': 1.0, 'could': 1.0, 'also': 1.0, 'making': 1.0, 'be': 2.0, 'profile': 2.0, 'awake': 1.0, 'slightly': 2.0, 'in': 4.0, 'use': 3.0, 'her': 2.0, 'is': 3.0, 'around': 1.0, 'nice': 2.0, 'great': 1.0, 'feel': 1.0, 'comfortable': 1.0, 'which': 2.0, 'like': 1.0, 'easier': 1.0, 'star': 1.0, 'ways': 1.0, 'table': 1.0, 'this': 1.0, 'few': 2.0, 'just': 2.0, 'a': 10.0, 'off': 1.0, 'after': 1.0, 'turns': 1.0, 'the': 10.0, 'vibrating': 1.0, 'upright': 1.0, 'now': 1.0, 'difficult': 1.0, 'position': 1.0, 'new': 1.0, 'would': 3.0, 'strip': 1.0, 'unit': 2.0, 'got': 1.0, 'even': 2.0, 'my': 1.0, 'often': 1.0, 'closely': 1.0, 'minutes': 1.0, 'was': 2.0, 'but': 2.0, 'tripped': 1.0, 'item': 1.0, 'moving': 1.0, 'it': 14.0, 'visits': 1.0, 'wish': 2.0, 'liked': 1.0, 'old': 1.0, 'non': 2.0, 'that': 1.0, 'easily': 1.0, 'to': 9.0, 'more': 2.0, 'granddaughter': 1.0, 'only': 1.0, 'put': 1.0, 'fear': 1.0, 'floor': 1.0, 'do': 1.0, '2': 1.0, 'legs': 4.0, 'months': 1.0, 'along': 1.0, 'fairly': 1.0, 'are': 1.0, 'arms': 1.0, 'and': 3.0, 'surfaces': 1.0, 'easy': 1.0, 'bit': 1.0, 'i': 5.0, 'feet': 3.0, 'cradles': 1.0, 'had': 3.0, 'collapse': 1.0, 'some': 1.0, 'for': 2.0, 'such': 1.0, 'push': 1.0, 'skid': 2.0, 'many': 1.0, 'baby': 1.0, 'height': 1.0, 'when': 4.0, 'sit': 1.0, 'couch': 1.0, 'near': 1.0, 'on': 3.0, 'or': 3.0, 'while': 1.0, 'hard': 1.0, 'attended': 1.0, 'allows': 1.0, 'smooth': 1.0, 'with': 3.0, 'move': 1.0, 'assemblethe': 1.0, 'them': 1.0, 'has': 1.0, 'low': 1.0, 'itself': 1.0, 'not': 1.0, 'leaving': 1.0, 'if': 1.0, 'still': 1.0, 'stay': 1.0, 'buttons': 1.0, 'fold': 2.0}
Word element => {'not': 1.0, 'infant': 1.0, 'withstands': 1.0, 'still': 1.0, 'climbs': 1.0, 'year': 1.0, 'recommend': 1.0, 'were': 1.0, 'each': 1.0, 'over': 2.0, 'had': 1.0, 'flipped': 1.0, 'hit': 1.0, 'that': 3.0, 'unsafe': 1.0, 'thing': 1.0, 'only': 1.0, 'was': 1.0, 'fortunately': 1.0, 'collapsed': 1.0, '3': 1.0, 'portable': 1.0, 'have': 1.0, 'joints': 1.0, 'the': 11.0, 'place': 1.0, 'entire': 1.0, 'my': 6.0, 'and': 6.0, 'play': 1.0, 'son': 4.0, 'same': 1.0, 'under': 1.0, 'from': 2.0, 'while': 1.0, 'carry': 1.0, 'to': 7.0, 'our': 2.0, 'as': 1.0, 'any': 1.0, 'found': 1.0, 'easy': 1.0, 'continues': 1.0, 'months': 1.0, 'get': 1.0, 'a': 4.0, 'has': 1.0, 'sleeper': 1.0, 'this': 4.0, 'seemed': 1.0, 'bouncy': 2.0, 'old': 2.0, 'on': 4.0, 'noticed': 1.0, 'at': 1.0, 'is': 1.0, 'minimal': 1.0, 'anything': 1.0, 'when': 1.0, 'received': 1.0, 'plastic': 4.0, 's': 1.0, 'narrower': 1.0, 'tush': 1.0, 'couldn': 1.0, 'broke': 1.0, 'i': 5.0, 'room': 2.0, 'design': 1.0, 'mostly': 1.0, 'abuse': 1.0, 'supporting': 1.0, 'chairs': 2.0, 't': 2.0, 'ago': 2.0, 'fit': 2.0, 'for': 1.0, 'than': 3.0, 'find': 1.0, 'loved': 1.0, 'cooked': 1.0, 'leg': 1.0, 'we': 3.0, 'then': 1.0, 'most': 1.0, 'but': 1.0, 'in': 3.0, 'so': 3.0, 'definitely': 1.0, 'leaned': 1.0, 'better': 2.0, 'yet': 2.0, 'or': 1.0, 'bed': 1.0, 'cosleeping': 1.0, 'struggle': 1.0, 'his': 1.0, 'with': 2.0, 'sleeping': 1.0, 'swing': 1.0, 'napper': 2.0, 'realized': 1.0, 'didn': 1.0, 'floor': 2.0, 'much': 1.0, 'her': 1.0, 'use': 2.0, 'it': 4.0, 'him': 2.0, 'chair': 8.0, 'couple': 2.0, 'would': 1.0, 'summer': 1.0, 'sleepers': 1.0, 'weeks': 2.0, 'some': 1.0, 'simple': 1.0, 'broken': 3.0, 'pieces': 1.0, 'figured': 1.0, 'attractive': 1.0, 'came': 1.0, 'something': 1.0, 'else': 1.0, 'morning': 1.0, 'husband': 1.0, 'convenient': 1.0, 'goodbye': 1.0, 'lightly': 1.0, 'three': 1.0, 'into': 1.0, 'all': 1.0, 'other': 2.0, 'kiss': 1.0}
Word element => {'much': 1.0, 'as': 1.0, 'recommend': 1.0, 'product': 1.0, 'opinion': 1.0, 'sure': 1.0, 'size': 2.0, 'its': 1.0, 'would': 1.0, 'been': 2.0, 't': 1.0, 'if': 1.0, 'most': 1.0, 'perhaps': 1.0, 'thing': 1.0, 'stands': 1.0, 'using': 1.0, '15': 1.0, 'like': 1.0, 'more': 2.0, 's': 2.0, '34': 3.0, '11': 1.0, 'position': 1.0, 'breastfeeding': 2.0, 'hadn': 1.0, 'in': 2.0, 'm': 6.0, 'out': 2.0, 'just': 2.0, 'receptive': 1.0, 'by': 1.0, 'lip': 2.0, 'lap': 1.0, 'edge': 1.0, 'month': 1.0, 'popular': 1.0, 'ingenious': 1.0, 'stand': 1.0, 'down': 1.0, 'boppy': 5.0, 'used': 2.0, 'nearly': 2.0, 'already': 1.0, 'boost': 1.0, 'it': 8.0, 'starting': 1.0, 'and': 7.0, 'tall': 3.0, 'height': 1.0, 'son': 1.0, 'flat': 1.0, 'have': 2.0, 'made': 1.0, 'which': 2.0, 'two': 1.0, 'well': 1.0, 'i': 12.0, 'over': 1.0, 'concept': 1.0, 'mat': 1.0, 'basically': 1.0, 'for': 3.0, 'how': 1.0, '6': 2.0, 'with': 4.0, 'this': 4.0, 'is': 9.0, 'really': 3.0, 'has': 2.0, 'always': 1.0, 'sinks': 1.0, 'old': 1.0, 'user': 1.0, 'small': 1.0, 'a': 10.0, 'could': 1.0, 'design': 1.0, '3': 1.0, 'torso': 1.0, 'figure': 1.0, 'now': 1.0, 'to': 9.0, 'was': 1.0, 'what': 1.0, 'roll': 3.0, 'some': 1.0, 'top': 1.0, 'primarily': 1.0, 'saying': 1.0, 'alone': 1.0, 'nervous': 1.0, 'about': 3.0, 'possibility': 1.0, 'thrilled': 1.0, 'layer': 1.0, 'that': 4.0, 'an': 1.0, 'potentially': 1.0, 'pillow': 7.0, 'right': 2.0, 'stars': 1.0, 'wanted': 1.0, 'start': 1.0, 'woman': 1.0, 'outer': 1.0, 'off': 2.0, 'enough': 1.0, 'comparison': 1.0, 'so': 3.0, 'potential': 1.0, 'idea': 1.0, 'give': 1.0, 'there': 3.0, 'help': 1.0, 'cannot': 1.0, 'being': 3.0, 'prevent': 1.0, 'shame': 1.0, 'love': 1.0, 'he': 1.0, 'accidental': 1.0, 'deal': 1.0, 'unfortunately': 1.0, 'baby': 1.0, 'had': 1.0, 'my': 3.0, 'me': 4.0, 'not': 3.0, 'excited': 1.0, 'comfortable': 1.0, 'breaker': 1.0, 'left': 1.0, 'lot': 1.0, 'granted': 1.0, 'be': 1.0, 'let': 1.0, 'on': 1.0, 'long': 1.0, 'said': 1.0, 'the': 16.0, 'of': 4.0, 'massive': 2.0, 'weight': 1.0, 'desired': 1.0, 'but': 3.0}
Word element => {'off': 1.0, 'easy': 2.0, 's': 1.0, 'perfect': 1.0, 'mean': 1.0, 'ties': 1.0, 'and': 2.0, 'getting': 1.0, 'are': 1.0, 'isn': 1.0, 'coverage': 1.0, 'soften': 1.0, 'all': 1.0, 'on': 2.0, 'warmer': 1.0, 'crisp': 1.0, 'as': 2.0, 'humid': 1.0, 'little': 1.0, 'but': 2.0, 'quality': 1.0, 'will': 2.0, 'up': 2.0, 'of': 1.0, 'nights': 1.0, 'a': 2.0, 'side': 1.0, 'is': 3.0, 'it': 3.0, 'cotton': 2.0, 'with': 2.0, 't': 1.0, 'more': 1.0, 'the': 5.0, 'washings': 1.0, 'absorbent': 1.0, 'be': 1.0, 'nice': 1.0, 'which': 1.0, 'wonderful': 1.0}
Word element => {'point': 1.0, 'this': 1.0, 'intend': 1.0, 'it': 2.0, 'the': 8.0, 'didn': 1.0, 'at': 1.0, 'three': 1.0, 'places': 1.0, 'if': 1.0, 'll': 1.0, 'bottom': 1.0, 'slips': 1.0, 'of': 3.0, 'and': 4.0, 'soften': 1.0, 'top': 1.0, 'i': 4.0, 'reviewed': 1.0, 'find': 1.0, 'onto': 1.0, 'pillow': 2.0, 'cotton': 1.0, 'be': 1.0, 'then': 1.0, 'ties': 1.0, 'bed': 1.0, 'review': 2.0, 'made': 1.0, 'update': 1.0, 'out': 1.0, 'up': 1.0, 'wash': 1.0, 'cover': 3.0, 'another': 1.0, 'to': 3.0, 'was': 1.0, 'very': 2.0, 'secure': 1.0, 'will': 1.0, 'although': 1.0, 'in': 2.0, 'itself': 1.0, 'attractive': 1.0, '100': 1.0, 'that': 1.0, 'box': 1.0, 'is': 1.0, 'stiff': 1.0, 't': 1.0, 'a': 1.0, 'see': 1.0, 'few': 1.0, 'times': 1.0}
Word element => {'job': 1.0, 'does': 1.0, 'i': 1.0, 'the': 2.0, 'there': 1.0, 'a': 1.0, 'expected': 1.0, 'was': 1.0, 'not': 1.0, 'few': 1.0, 'although': 1.0, 'loose': 1.0, 'threads': 1.0, 'were': 1.0, 'it': 2.0, 'quality': 1.0, 'and': 1.0, 'quite': 1.0}
Word element => {'nursing': 1.0, 'born': 1.0, 'baby': 1.0, 'many': 1.0, 'wrangle': 1.0, 'sometimes': 1.0, 'uses': 2.0, 'things': 1.0, 'bump': 1.0, 'him': 1.0, 'of': 1.0, 'his': 1.0, 'have': 1.0, 'who': 1.0, 'middle': 1.0, 'son': 1.0, 'away': 1.0, 'put': 1.0, 'ball': 1.0, 'up': 1.0, 'he': 3.0, 'coil': 1.0, 'not': 1.0, 'into': 2.0, 'that': 1.0, 'than': 1.0, 'other': 1.0, 'wrapped': 1.0, 'by': 1.0, 'area': 1.0, 'turn': 1.0, 'in': 2.0, 'pillow': 6.0, 'it': 13.0, 'with': 1.0, 'first': 1.0, 'about': 1.0, 'belly': 2.0, 'only': 1.0, 'really': 3.0, 'using': 1.0, 'like': 2.0, 'body': 3.0, 'sleeping': 1.0, 'while': 1.0, 'being': 1.0, 'helps': 1.0, 'support': 2.0, 'months': 1.0, '5': 1.0, 'this': 4.0, 'wish': 2.0, 'legs': 2.0, 'i': 10.0, 'or': 1.0, 'neck': 1.0, 'little': 2.0, 'had': 1.0, 'snake': 1.0, 'as': 5.0, 'to': 4.0, 'was': 2.0, 'play': 1.0, 'starting': 1.0, 'and': 8.0, 'need': 1.0, 'a': 6.0, 'has': 1.0, 'likes': 3.0, 'well': 3.0, 'thicker': 1.0, 'am': 2.0, 'when': 3.0, 'my': 9.0, 'wrap': 1.0, 'the': 3.0, 'wraps': 2.0, 'more': 1.0, 'is': 2.0, 'around': 5.0, 'bit': 1.0, 'so': 2.0, 'between': 1.0, 'sitting': 1.0, '2': 1.0, 'but': 1.0, 'pregnant': 2.0, 'can': 3.0, 'use': 2.0, 'then': 1.0, 'for': 3.0, 'shape': 1.0, 'head': 1.0, 'curls': 1.0}
Word element => {'moldable': 1.0, 'soft': 1.0, 'old': 1.0, 'plain': 1.0, 'sticking': 1.0, 'waste': 1.0, 'going': 1.0, 'cats': 1.0, 'about': 1.0, 'be': 1.0, 'tightly': 1.0, 'wrap': 1.0, 'seems': 1.0, 'ncjar': 1.0, 'child': 1.0, 'toddler': 1.0, 'as': 1.0, 'use': 1.0, 'think': 1.0, 'nursing': 1.0, 'reasonable': 1.0, 'make': 1.0, 'all': 1.0, 'position': 1.0, 'over': 1.0, 'want': 1.0, 'down': 1.0, 'pushed': 1.0, 'chest': 1.0, 'sitting': 1.0, 'poking': 1.0, 'neck': 1.0, 'under': 1.0, 'change': 1.0, 'up': 1.0, 'love': 1.0, 'bottom': 1.0, 'far': 1.0, 'been': 1.0, 'concerned': 1.0, 'because': 1.0, 'that': 3.0, 'breaker': 1.0, 'top': 2.0, 'born': 1.0, 'arm': 2.0, 'having': 1.0, '17': 1.0, 'using': 1.0, 'side': 1.0, 'which': 1.0, 'sleep': 1.0, 'to': 7.0, 'son': 1.0, 'extended': 1.0, 'years': 1.0, 'curve': 1.0, 'bended': 1.0, 'nearly': 1.0, 'more': 1.0, 'around': 2.0, 'time': 1.0, 'pillow': 7.0, 'on': 4.0, 'long': 1.0, 'a': 9.0, 'discovered': 1.0, 'further': 1.0, 'rest': 1.0, 'ago': 1.0, 't': 3.0, 'and': 6.0, 'would': 5.0, 'curliness': 1.0, 'comfortable': 1.0, 'have': 2.0, 'pregnant': 1.0, 'so': 3.0, 'can': 1.0, 'but': 2.0, 'particularly': 1.0, 'firm': 1.0, 'floor': 1.0, 'much': 1.0, 'too': 3.0, 'try': 1.0, 'box': 1.0, 'kids': 1.0, 'this': 5.0, 'when': 1.0, 'you': 4.0, 'now': 1.0, 'knee': 1.0, 'was': 4.0, 'is': 5.0, 'at': 3.0, 'plus': 1.0, 'first': 2.0, 'with': 5.0, 'like': 2.0, 'covers': 1.0, 'i': 15.0, 'slept': 1.0, 'also': 1.0, 'turn': 1.0, 'still': 1.0, 'if': 3.0, 'king': 2.0, 'or': 3.0, 'safety': 1.0, 'constraining': 1.0, 'size': 2.0, 'just': 2.0, 'smidge': 1.0, 'short': 1.0, 'it': 8.0, 'thought': 1.0, 'deal': 1.0, 'cover': 1.0, 'very': 3.0, 'coarse': 1.0, 'scratchy': 1.0, 'something': 1.0, 'buy': 1.0, 'out': 1.0, 'the': 13.0, 'of': 2.0, 'leg': 1.0, 'don': 1.0, 'isn': 2.0, 'inviting': 1.0, 'skinny': 1.0, 'really': 1.0, 'support': 2.0, 'm': 1.0, 'in': 2.0, 'way': 1.0, 'for': 2.0, 'my': 9.0, 'presumably': 1.0, 'me': 2.0, 'point': 1.0, 'intense': 1.0, 'associated': 1.0, 'after': 1.0, 'mold': 2.0, 'instead': 1.0, 'should': 1.0}
Word element => {'toddler': 1.0, 'baby': 1.0, 'mommy': 1.0, '12': 1.0, 'one': 1.0, 'buying': 1.0, 'super': 1.0, 'use': 1.0, 'of': 1.0, 'after': 1.0, 'stiff': 1.0, 'be': 2.0, 'should': 1.0, 'major': 1.0, 'even': 1.0, 'complaints': 1.0, 'by': 1.0, 'few': 1.0, 'washing': 1.0, 'house': 1.0, 'cover': 2.0, 'back': 1.0, 'heavy': 1.0, 'investment': 1.0, 'great': 4.0, 'the': 3.0, 'our': 1.0, 'as': 1.0, 'very': 3.0, 'year': 1.0, 'and': 5.0, 'not': 3.0, 'me': 1.0, 'overall': 1.0, 'shape': 1.0, 'for': 6.0, 'i': 2.0, 'old': 1.0, 'side': 1.0, 'really': 1.0, 'remedied': 1.0, 'do': 1.0, 'works': 1.0, 'fabric': 1.0, 'her': 1.0, 'nursing': 2.0, 'down': 1.0, 'support': 2.0, 'soft': 1.0, 'this': 1.0, 'sleeper': 1.0, 'easily': 1.0, 'you': 1.0, 'am': 1.0, 'hard': 1.0, 'while': 4.0, 'bit': 1.0, 'seam': 1.0, 'so': 3.0, 'pillow': 2.0, 'also': 1.0, 'in': 2.0, 'could': 1.0, 'a': 9.0, 's': 4.0, 'comfy': 1.0, 'enjoys': 1.0, 'another': 1.0, 'my': 1.0, '3': 1.0, 'but': 2.0, 'can': 1.0, 'sitting': 1.0, 'noted': 1.0, 'is': 4.0, 'around': 1.0, 'remove': 1.0, 'it': 7.0, 'she': 1.0, 'snuggling': 1.0, 'or': 1.0, 'like': 1.0, 'sleeping': 1.0, 'which': 2.0, 'body': 1.0, 'reading': 1.0, 'wrapping': 1.0, 'useful': 2.0, 'has': 1.0, 'have': 1.0, 'zipper': 1.0, 'that': 1.0, 'goes': 1.0}
Word element => {'ways': 1.0, 'can': 1.0, 'perfect': 1.0, 'loved': 1.0, 'use': 1.0, 'a': 2.0, 'get': 1.0, 'and': 2.0, 'so': 1.0, 'there': 1.0, 'it': 1.0, 'first': 1.0, 'this': 2.0, 'band': 1.0, 'choose': 1.0, 'were': 1.0, 'from': 1.0, 'absolutely': 1.0, 'gift': 1.0, 'comfortable': 1.0, 'one': 1.0, 'for': 1.0, 'daughter': 1.0, 'now': 1.0, 'to': 1.0, 'was': 1.0, 'had': 1.0, 'my': 1.0, 'her': 2.0, 'is': 1.0, 'many': 2.0, 'second': 1.0, 'let': 1.0, 'pregnancy': 1.0, 'she': 3.0, 'friend': 1.0}
Word element => {'do': 1.0, 'your': 1.0, 'cruz': 1.0, 'keep': 1.0, 'strongif': 1.0, 'uppababy': 1.0, 'very': 1.0, 'sun': 1.0, 'you': 1.0, 'beautifull': 1.0, 'is': 1.0, 'compare': 1.0, 'stroller': 1.0, 'extended': 1.0, 'the': 2.0, 'it': 1.0, 'can': 1.0, 'sunshade': 1.0, 'comfortablealthough': 1.0, 'to': 1.0, 'other': 1.0, 'light': 2.0, 'brands': 1.0}
Word element => {'works': 1.0, 'that': 1.0, 'than': 1.0, 'other': 1.0, 'looking': 1.0, 'without': 1.0, 'time': 1.0, 'quite': 1.0, 'get': 1.0, 'me': 1.0, 'and': 3.0, '1': 1.0, 'crooked': 1.0, 'some': 1.0, 'parker': 1.0, 'very': 1.0, 'thing': 1.0, 'have': 1.0, 'cute': 2.0, 'took': 1.0, 'i': 2.0, '4': 1.0, 'love': 1.0, 'only': 1.0, 'this': 1.0, 'it': 6.0, 's': 1.0, 'way': 1.0, 't': 1.0, 'the': 4.0, 'is': 1.0, 'about': 1.0, 'connected': 1.0, 'was': 1.0, 'to': 3.0, 'wonky': 1.0, 'didn': 1.0, 'crib': 2.0, 'connect': 1.0, 'in': 1.0, 'davinci': 1.0}
Word element => {'button': 1.0, 'adroable': 1.0, 'as': 2.0, 'just': 1.0, 'are': 1.0, 'off': 1.0, 'havent': 1.0, 'stick': 1.0, 'on': 1.0, 'them': 1.0, 'more': 1.0, 'these': 1.0, 'the': 2.0, 'don': 1.0, 'lovely': 1.0, 'walk': 1.0, 'so': 1.0, 'little': 1.0, 'too': 1.0, 'and': 2.0, 'i': 4.0, 'about': 1.0, 'wall': 1.0, 'in': 1.0, 'be': 1.0, 'own': 1.0, 'my': 1.0, 'out': 1.0, 'closet': 1.0, 'happier': 1.0, 'beautiful': 1.0, 'was': 1.0, 'decals': 2.0, 'painting': 1.0, 'with': 1.0, 'they': 3.0, 'made': 1.0, 'home': 1.0, 'of': 1.0, 'sons': 1.0, 'option': 1.0, 'but': 1.0, 'fallen': 1.0, 'someone': 1.0, 'when': 1.0, 'nursery': 1.0, 'try': 1.0, 'thought': 1.0, 'wonderfully': 1.0, 'why': 1.0, 'give': 1.0, 'heard': 1.0, 'not': 1.0, 't': 1.0, 'a': 2.0, 'it': 3.0, 'looks': 1.0, 'cannot': 1.0, 'like': 1.0, 'painted': 1.0}
Word element => {'don': 1.0, 'they': 1.0, 'and': 1.0, 'after': 1.0, 'was': 1.0, 'even': 1.0, 'something': 1.0, 'really': 1.0, 'but': 1.0, 'surprised': 1.0, 'blankets': 2.0, 'cute': 1.0, 'very': 1.0, 'fierce': 1.0, 'times': 1.0, 'are': 1.0, 't': 1.0, 'these': 1.0, 'tried': 1.0, 'i': 3.0, 'washing': 1.0, 'because': 1.0, 'multiple': 1.0, 'by': 1.0, 'pie': 1.0, 'shed': 2.0, 'have': 1.0, 'cutie': 1.0, 'other': 1.0}
Word element => {'yet': 1.0, 'free': 1.0, 'will': 1.0, '9': 1.0, 'if': 1.0, 'or': 1.0, 'no': 1.0, 'not': 1.0, 'i': 2.0, 'item': 1.0, 'born': 1.0, 'have': 1.0, 'would': 1.0, 'others': 1.0, 'problems': 1.0, 'to': 2.0, 'hold': 1.0, 'sure': 1.0, 'load': 1.0, 'it': 3.0, 'this': 1.0, 'with': 2.0, 'only': 1.0, 'used': 1.0, '5': 1.0, 'oz': 2.0, 'recommend': 1.0, 'easy': 1.0, 'bottles': 2.0, 'so': 1.0, 'how': 1.0}
Word element => {'good': 1.0, 'born': 1.0, 'have': 1.0, 'so': 2.0, 'else': 1.0, 'it': 2.0, 'this': 1.0, 'perfectly': 1.0, 'and': 2.0, 'does': 1.0, 'all': 2.0, 'as': 1.0, 'to': 2.0, 'do': 1.0, 'works': 1.0, 'much': 1.0, 'though': 1.0, 'i': 1.0, 'microwave': 2.0, 'lot': 1.0, 'bottles': 2.0, 'of': 1.0, 'those': 1.0, 'not': 1.0, 'steam': 1.0, 'free': 1.0, 'has': 1.0, 'got': 2.0, 'sturdy': 1.0, 'for': 1.0, 'should': 1.0, 'is': 2.0, 'hold': 1.0, 'haven': 1.0, 'some': 1.0, 'water': 1.0, 'put': 1.0, 'sterlizer': 1.0, 'but': 1.0, 'place': 1.0, 'the': 4.0, 'a': 2.0, 't': 1.0, 'in': 1.0, 'rest': 1.0, 'handles': 1.0, 'been': 1.0, 'burnt': 1.0}
Word element => {'s': 1.0, 'daughter': 1.0, 'my': 1.0, 'room': 1.0, 'is': 1.0, 'returned': 1.0, 'it': 2.0, 'color': 1.0, 'washed': 1.0, 'very': 1.0, 'as': 1.0, 'out': 1.0, 'match': 1.0, 'didn': 1.0, 't': 1.0}
Word element => {'to': 1.0, 'so': 1.0, 'fabric': 1.0, 'minky': 1.0, 'morning': 1.0, 'wet': 1.0, 'never': 1.0, 'shell': 1.0, 'protection': 1.0, 'better': 1.0, 'pocket': 1.0, 'in': 2.0, 'inserts': 1.0, 'soft': 1.0, 'pattern': 1.0, 'for': 2.0, 'my': 1.0, 'are': 1.0, 'because': 1.0, 'put': 1.0, 'diaper': 1.0, 'the': 6.0, 'these': 1.0, 'they': 1.0, 'touch': 1.0, 'old': 1.0, 'i': 2.0, 'two': 1.0, 'super': 1.0, 'ordered': 1.0, 'cute': 1.0, 'both': 1.0, 'used': 1.0, 'her': 1.0, 'year': 1.0, 'as': 1.0, 'and': 2.0, 'is': 3.0, 'nighttime': 1.0}
Word element => {'sure': 1.0, 'make': 1.0, 'just': 1.0, 'hemp': 1.0, 'of': 1.0, 'insert': 1.0, 'third': 1.0, 'also': 1.0, 'pretty': 1.0, 'fits': 1.0, 'my': 1.0, 'time': 2.0, 'to': 1.0, 'now': 1.0, 'the': 2.0, 'diaper': 2.0, 'a': 1.0, 'well': 1.0, 'since': 1.0, 'need': 1.0, '2year': 1.0, 'only': 1.0, 'this': 1.0, 'her': 1.0, 'used': 1.0, 'right': 1.0, 'night': 1.0, 'old': 1.0, 'i': 2.0, 'for': 2.0, 'one': 1.0, 'that': 1.0, 's': 2.0, 'about': 1.0, 'add': 1.0, 'she': 2.0, 'and': 1.0, '36lbs': 1.0}
Word element => {'available': 1.0, 'safest': 1.0, 'i': 1.0, 'feel': 1.0, 'install': 1.0, 'have': 1.0, 'this': 1.0, 'is': 2.0, 'a': 1.0, 'well': 2.0, 'the': 1.0, 'make': 1.0, 'made': 1.0, 'that': 1.0, 'rated': 1.0, 'and': 2.0, 'it': 1.0, 'me': 1.0, 'easy': 1.0, 'product': 2.0, 'to': 1.0}
Word element => {'in': 1.0, 'luck': 1.0, 'good': 1.0, 'had': 1.0, 'have': 1.0, 'again': 1.0, 'carter': 1.0, 'not': 1.0, 'would': 1.0, 'prompt': 1.0, 'back': 1.0, 'buy': 1.0, 'sent': 1.0, 'apart': 1.0, 'refund': 1.0, 'was': 1.0, 'edge': 1.0, 'were': 1.0, 'comforter': 3.0, 'there': 1.0, 'of': 1.0, 'up': 1.0, 'past': 1.0, 'but': 2.0, 'time': 1.0, 'places': 1.0, 'on': 1.0, 'arrived': 1.0, 'and': 4.0, 'away': 1.0, 'pulled': 1.0, 'nice': 1.0, 'seemed': 1.0, 'opened': 1.0, 'really': 1.0, 'loose': 2.0, 'noticed': 1.0, 'old': 1.0, 'threads': 2.0, '4': 1.0, 'i': 5.0, 'hesitate': 1.0, 'full': 1.0, 'this': 1.0, 'first': 1.0, 'numerous': 1.0, 'my': 1.0, 'completely': 1.0, 'more': 2.0, 'ordered': 1.0, 'sheets': 1.0, 'year': 1.0, 'decided': 1.0, 'daughter': 1.0, 'for': 2.0, 'where': 1.0, 'along': 1.0, 'at': 1.0, 'products': 1.0, 'these': 1.0, 'some': 1.0, 'as': 2.0, 'to': 2.0, 'cut': 1.0, 'we': 1.0, 's': 1.0, 'a': 2.0, 'just': 1.0, 'few': 1.0, 'the': 6.0, 'hanging': 1.0, 'even': 1.0}
Word element => {'of': 1.0, 'wish': 1.0, 'was': 2.0, 'be': 1.0, 'thought': 1.0, 'would': 1.0, 'lighter': 1.0, 'additionally': 1.0, 'little': 1.0, 'very': 1.0, 'an': 1.0, 'comforter': 1.0, 'pillow': 1.0, 'don': 1.0, 'bedroom': 1.0, 'theme': 1.0, 'already': 1.0, 'good': 1.0, 'her': 2.0, 'with': 2.0, 'll': 1.0, 'especially': 1.0, 'affordable': 1.0, 'better': 1.0, 'carter': 1.0, 'they': 2.0, 'daughter': 2.0, 'i': 8.0, 'extra': 1.0, 'buy': 1.0, 'well': 3.0, 'we': 1.0, 't': 1.0, 'a': 3.0, 's': 1.0, 'quality': 1.0, 'clothes': 1.0, 'when': 1.0, 'you': 1.0, 'existing': 1.0, 'really': 1.0, 'is': 2.0, 'and': 5.0, 'like': 1.0, 'adorable': 2.0, 'to': 2.0, 'case': 1.0, 'that': 1.0, 'made': 2.0, 'blanket': 1.0, 'are': 2.0, 'overall': 1.0, 'than': 1.0, 'find': 1.0, 'my': 2.0, 'fit': 1.0, 'for': 3.0, 'bed': 1.0, 'but': 2.0, 'can': 1.0, 'wait': 1.0, 'until': 1.0, 'make': 1.0, 'think': 3.0, 'off': 2.0, '40': 1.0, 'have': 2.0, 'sale': 1.0, 'it': 3.0, '20': 1.0, 'though': 1.0, 'coupon': 1.0, 'sheet': 1.0, 'so': 1.0, 'price': 1.0, 'd': 1.0, 'figured': 1.0, 'the': 4.0, 'do': 1.0, 'try': 1.0, 'toddler': 1.0, 'set': 1.0, 'design': 1.0}
Word element => {'purchase': 1.0, 'read': 1.0, 'd': 1.0, 'you': 1.0, 'simplicity': 1.0, 'flat': 2.0, 'sheet': 5.0, 'time': 1.0, 'so': 1.0, 'case': 2.0, 'into': 1.0, 'pillow': 2.0, '2': 1.0, 'added': 1.0, 'a': 3.0, 't': 3.0, 'and': 8.0, 'colors': 1.0, 'summer': 1.0, 'transition': 1.0, 'are': 3.0, 'cute': 1.0, 'flawless': 1.0, 'super': 1.0, 'my': 3.0, 'changed': 1.0, 'bed': 4.0, 'comforter': 2.0, 'set': 1.0, 'the': 10.0, 'of': 3.0, 'cotton': 1.0, 'him': 1.0, 'be': 1.0, 'expect': 1.0, 'fitted': 2.0, 'this': 2.0, 'ish': 1.0, 'soft': 2.0, 'design': 1.0, 'kind': 1.0, 'left': 1.0, 'adorable': 1.0, 'since': 1.0, 'toddler': 2.0, 'year': 2.0, 'almost': 1.0, 'his': 2.0, 'is': 1.0, 'at': 2.0, 'look': 1.0, 'had': 1.0, 'crib': 4.0, '3': 1.0, 'on': 1.0, 'think': 1.0, 'i': 6.0, 'old': 3.0, 'point': 1.0, 'not': 1.0, 'those': 1.0, 'heat': 1.0, 'then': 1.0, 'we': 1.0, 'reviews': 1.0, 'didn': 3.0, 'like': 1.0, 'care': 1.0, 'white': 1.0, 'but': 2.0, 'entering': 1.0, 'use': 2.0, 'any': 1.0, 'helped': 1.0, 'all': 1.0, 'to': 1.0, 'do': 1.0, 'love': 1.0, 'he': 2.0, 'will': 1.0, 'some': 1.0, 'need': 1.0, 'anyhow': 1.0, 'really': 1.0, 'scratchy': 1.0, '8': 1.0, 'made': 1.0, 'from': 1.0, 'just': 1.0, 'hey': 1.0, 'if': 1.0, 'being': 1.0, 'excited': 1.0, 'about': 1.0, 'm': 1.0, 'in': 1.0, 'happy': 1.0, 'with': 1.0}
Word element => {'for': 1.0, 's': 1.0, 'toddler': 1.0, 'overall': 1.0, 'but': 1.0, 'bedding': 1.0, 'couple': 1.0, 'after': 1.0, 'little': 1.0, 'my': 1.0, 'washes': 1.0, 'dinosaur': 1.0, 'son': 1.0, 'loves': 1.0, 'great': 1.0, 'it': 2.0, 'his': 1.0, 'set': 1.0, '34': 2.0, 'a': 4.0, 'bed': 1.0, 'did': 1.0, 'fade': 1.0}
Word element => {'warm': 1.0, 'but': 1.0, 'cute': 1.0, 'light': 1.0, 'of': 1.0, 'bed': 1.0, 'are': 1.0, 'the': 3.0, 'my': 2.0, 'they': 1.0, 'matches': 1.0, 'i': 1.0, 'whole': 1.0, 'loves': 1.0, 'it': 2.0, 'and': 1.0, 'perfectly': 1.0, 'bedding': 1.0, 'fits': 1.0, 'on': 1.0, 'really': 2.0, 'is': 1.0, 'baby': 1.0, 'like': 1.0, 'blanket': 1.0}
Word element => {'being': 1.0, 'that': 1.0, 'than': 1.0, 'on': 1.0, 'didn': 1.0, 'just': 1.0, 'not': 1.0, 'were': 1.0, 'they': 1.0, 'this': 1.0, 'it': 3.0, 'looked': 1.0, 'designs': 1.0, 'the': 3.0, 'more': 1.0, 'really': 2.0, 'there': 1.0, 'set': 2.0, 'of': 1.0, 'thin': 1.0, 'like': 1.0, 'was': 2.0, 'worth': 2.0, 'price': 1.0, 'stamped': 1.0, 'and': 3.0, 'very': 1.0, 'have': 1.0, 'to': 1.0, 'any': 1.0, 'as': 1.0, 'all': 1.0, 'sort': 1.0, 'depth': 1.0, 'them': 1.0, 'at': 1.0, 'i': 1.0, 't': 1.0, 'might': 1.0, 've': 1.0, 'emergency': 1.0, 'paid': 1.0, 'stops': 1.0, '20': 1.0, 'comforter': 1.0, 'an': 1.0, 'but': 1.0, 'extra': 1.0, 'anything': 1.0, 'for': 1.0, 'expensive': 1.0}
Word element => {'about': 1.0, 'don': 1.0, '99': 1.0, 'with': 1.0, 'perfectly': 1.0, 'matched': 1.0, 'that': 1.0, 'rug': 1.0, '29': 1.0, 'dino': 1.0, 'matching': 1.0, 'close': 1.0, 'find': 1.0, 'walmart': 1.0, 'did': 1.0, 'around': 1.0, 'they': 2.0, 't': 1.0, 'a': 5.0, 'their': 1.0, 'lint': 1.0, 'twins': 1.0, 'i': 2.0, 'room': 2.0, 'boy': 1.0, 'bit': 1.0, 'at': 2.0, 'who': 1.0, 'toddlers': 1.0, 'think': 1.0, '3': 3.0, 'big': 1.0, 'of': 1.0, 'sets': 1.0, 'set': 1.0, 'takes': 1.0, 'these': 2.0, 'the': 2.0, 'share': 1.0, 'for': 1.0, 'love': 2.0, 'yet': 1.0, '19': 1.0, 'children': 1.0, 'my': 1.0, 'and': 3.0, 'do': 1.0, 'absolutely': 1.0, 'it': 3.0, 'month': 1.0, 'colors': 2.0, 'are': 1.0, 'deep': 1.0, 'purchased': 1.0, 'vibrant': 1.0, 'whimsical': 1.0, 'adults': 1.0, 'catch': 1.0, 'quickly': 1.0, 'also': 1.0, 'bu': 1.0, 'simple': 1.0, 'brushing': 1.0, 'to': 2.0, 'out': 1.0, 'easy': 1.0, 'old': 1.0, 'decorate': 1.0}
Word element => {'worth': 1.0, 'definitely': 1.0, 'bed': 1.0, 'his': 1.0, 'loves': 1.0, 'perfectly': 1.0, 'it': 2.0, 'absolutely': 1.0, 'son': 1.0, 'did': 1.0, 'fade': 1.0, 'after': 1.0, 'still': 1.0, 'first': 1.0, 'wash': 1.0, 'fits': 1.0, 'but': 1.0, 'very': 1.0, 'nice': 1.0, 'the': 1.0, 'my': 1.0}
Word element => {'this': 1.0, 'loved': 1.0, 'grandson': 1.0, 'described': 1.0, 'as': 1.0, 'exactly': 1.0}
Word element => {'purchase': 1.0, 'am': 1.0, 'pleased': 1.0, 'soft': 1.0, 'so': 1.0, 'are': 1.0, 'the': 2.0, 'my': 1.0, 'to': 2.0, 'transition': 1.0, 'daughter': 1.0, 'help': 1.0, 'her': 2.0, 'before': 1.0, 'loves': 1.0, 'bought': 1.0, 'i': 2.0, 'for': 1.0, 'bed': 1.0, 'girl': 1.0, 'arrived': 1.0, 'little': 1.0, 'she': 1.0, 'very': 1.0, 'big': 1.0, 'brother': 1.0, 'with': 1.0, 'this': 2.0, 'it': 1.0, 'and': 1.0, 'sheets': 1.0}
Word element => {'soft': 1.0, 'bedtime': 1.0, 'super': 1.0, 'at': 1.0, 'him': 1.0, 'on': 1.0, 'a': 1.0, 'put': 1.0, 'sure': 1.0, 'colder': 1.0, 'grey': 1.0, 'make': 1.0, 'complaint': 1.0, 'in': 1.0, 'my': 1.0, 'the': 2.0, 'great': 1.0, 'toddlers': 1.0, 'second': 1.0, 'looks': 1.0, 'is': 3.0, 'though': 1.0, 'room': 1.0, 'to': 1.0, 'now': 1.0, 'adorable': 1.0, 'set': 1.0, 'that': 2.0, 'have': 2.0, 'firetruck': 1.0, 'it': 3.0, 'this': 1.0, 'only': 1.0, 'i': 3.0, 'blanket': 2.0, 'thin': 1.0, 's': 2.0}
Word element => {'his': 1.0, 'weight': 1.0, 'all': 2.0, 'to': 5.0, 'start': 1.0, 't': 2.0, 'a': 4.0, 'bedding': 2.0, 'light': 1.0, 'just': 1.0, 'worried': 1.0, 'time': 2.0, 'so': 2.0, 'am': 1.0, 'place': 1.0, 'move': 1.0, 'kiddo': 1.0, 'hold': 1.0, 'cotton': 2.0, 'be': 1.0, 'it': 3.0, 'over': 2.0, 'more': 3.0, 'stitching': 2.0, 'finding': 1.0, 'sheets': 3.0, 'three': 1.0, 'is': 2.0, 'at': 1.0, 'polyester': 2.0, 'pillow': 2.0, 'case': 1.0, 'that': 2.0, 'batting': 1.0, 'quality': 1.0, 'night': 1.0, 'i': 4.0, 'old': 1.0, 'had': 3.0, 'son': 1.0, 'seem': 1.0, 'loves': 2.0, 'difficult': 1.0, 'still': 1.0, 'year': 1.0, 'wish': 3.0, 'perfect': 2.0, 'few': 1.0, 'this': 2.0, 'my': 3.0, 'and': 2.0, 'although': 1.0, 'graphics': 1.0, 'crowd': 1.0, 'might': 1.0, 'came': 1.0, 'were': 1.0, 'in': 1.0, 'print': 1.0, 'but': 2.0, 'four': 1.0, 'not': 2.0, 'annoying': 1.0, 'heavy': 1.0, 'doesn': 1.0, 'was': 2.0, 'mind': 1.0, 'with': 2.0, 'seems': 1.0, 'great': 1.0, 'wasn': 1.0, 'on': 1.0, 'update': 1.0, 'for': 2.0, 'nursery': 1.0, 'blend': 2.0, 'the': 11.0, 'of': 3.0, 'preschool': 1.0, 'seam': 1.0, 'after': 2.0, 'months': 2.0, 'too': 1.0, 'one': 1.0, 'cases': 1.0, 'than': 2.0, 'apart': 1.0, 'top': 1.0, 'comforter': 3.0, 'set': 1.0, 'really': 1.0, 'instead': 1.0, 'firetruck': 2.0, 'sweaty': 1.0, 'has': 1.0, 'these': 1.0, 'far': 1.0, 'he': 1.0}
Word element => {'would': 1.0, 'buy': 1.0, 'definitely': 1.0, 'exact': 1.0, 'cheapest': 1.0, 'was': 1.0, 'house': 1.0, 'of': 1.0, 'than': 1.0, 'amazon': 1.0, 'warmer': 1.0, 'this': 1.0, 'found': 1.0, 'kids': 1.0, 'were': 1.0, 'comforter': 3.0, 'that': 3.0, 'they': 1.0, 'few': 1.0, 'rest': 1.0, 'truck': 1.0, 'a': 1.0, 'well': 1.0, 'them': 2.0, 'fits': 1.0, 'concerned': 1.0, 'washed': 2.0, 'up': 1.0, 'bedrooms': 1.0, 'set': 2.0, 'loved': 1.0, 'got': 1.0, 'again': 1.0, 'times': 1.0, 'when': 3.0, 'softened': 1.0, 'i': 6.0, 'place': 1.0, 'the': 10.0, 'and': 2.0, 'not': 3.0, 'me': 1.0, 'really': 2.0, 'is': 1.0, 'bed': 2.0, 'stiff': 1.0, 'it': 1.0, 'red': 1.0, 'with': 1.0, 'did': 1.0, 'bleed': 1.0, 'sheets': 2.0, 'thick': 1.0, 'or': 1.0, 'fade': 1.0, 'since': 1.0, 'keep': 1.0, 'at': 1.0, 'all': 1.0, 'fire': 1.0, 'in': 1.0, 'very': 1.0, 'but': 1.0, 'which': 1.0, 'like': 1.0}
Word element => {'it': 1.0, 'be': 1.0, 'to': 1.0, 'seems': 1.0, 'grandson': 1.0, 'vibrant': 1.0, 'colors': 1.0, 'well': 1.0, 'very': 1.0, 'cute': 1.0, 'fits': 1.0, 'set': 1.0, 'lightweight': 1.0, 'comforter': 1.0, 'with': 1.0, 'is': 1.0, 'my': 1.0, 'are': 1.0, 'the': 1.0, 'though': 1.0, 'crib': 1.0, 'happy': 1.0, 'mattress': 1.0}
Word element => {'this': 1.0, 'for': 1.0, 'bed': 1.0, 'in': 1.0, 'fortunately': 1.0, 'long': 1.0, 'came': 1.0, 'others': 1.0, 'definitely': 1.0, 'unlike': 1.0, 'simple': 1.0, 'neat': 1.0, 'cause': 1.0, 'one': 1.0, 'pick': 1.0, 've': 1.0, 'would': 1.0, 'do': 1.0, 'if': 1.0, 'set': 1.0, 'thin': 1.0, 'carter': 1.0, 'me': 1.0, 'not': 2.0, 'from': 1.0, 'very': 1.0, 'coming': 1.0, 'm': 2.0, 'is': 3.0, 'amazon': 1.0, 'pretty': 1.0, 'many': 1.0, 'won': 1.0, 'expected': 1.0, 'all': 1.0, 'to': 2.0, 'thank': 1.0, 'fast': 1.0, 'he': 1.0, 'how': 1.0, 'looks': 1.0, 'it': 6.0, 'with': 1.0, 'quality': 1.0, 'but': 1.0, 'so': 2.0, 'got': 1.0, 'comforter': 1.0, 'i': 7.0, 'through': 1.0, 'had': 3.0, 'what': 1.0, 'before': 1.0, 'toddler': 1.0, 'sheets': 1.0, 'the': 4.0, 'too': 1.0, 'across': 1.0, 'and': 2.0, 'are': 1.0, 'concerned': 1.0, 'bummer': 1.0, 'put': 1.0, 'on': 1.0, 'again': 1.0, 'you': 1.0, 'times': 1.0, 'down': 1.0, 'll': 1.0, 'here': 1.0, 'be': 2.0, 'able': 1.0, 'over': 1.0, 'replacing': 1.0, 'wash': 1.0, 't': 1.0, 's': 1.0, 'a': 4.0, 'eh': 1.0, 'good': 1.0, 'different': 2.0}
Word element => {'soft': 1.0, 'and': 1.0, 'quality': 1.0, 'fire': 1.0, 'his': 1.0, 'great': 1.0, 'it': 2.0, 'loves': 1.0, 'is': 1.0, 'on': 1.0, 'son': 1.0, 'i': 2.0, 'found': 1.0, 'my': 1.0, 'am': 1.0, 'so': 1.0, 'truck': 1.0, 'happy': 1.0, 'finally': 1.0, 'bed': 2.0, 'set': 1.0, 'a': 1.0, 'firetruck': 1.0}
Word element => {'looks': 1.0, 'colors': 1.0, 'bright': 1.0, 'dry': 1.0, 'easy': 1.0, 'toddler': 1.0, 'on': 1.0, 'have': 1.0, 'my': 1.0, 'great': 1.0, 'the': 1.0, 'bedding': 1.0, '3': 1.0, 'fire': 1.0, 'truck': 1.0, 's': 2.0, 'so': 1.0, 'babyish': 1.0, 'grandson': 1.0, 'his': 1.0, 'does': 1.0, 'it': 2.0, 'year': 1.0, 'bed': 1.0, 'love': 1.0, 'for': 1.0, 'i': 1.0, 'old': 1.0, 'wash': 1.0, 'perfect': 1.0, 'and': 2.0, 'florida': 1.0, 'carter': 1.0, 'not': 1.0, 'too': 1.0}
Word element => {'recommend': 1.0, 'highly': 1.0, 'set': 1.0, 'have': 1.0, 'able': 1.0, 'to': 2.0, 'would': 2.0, 'i': 2.0, 'sold': 1.0, 'aren': 1.0, 'that': 1.0, 'complaint': 1.0, 'separately': 1.0, 'in': 1.0, 'son': 1.0, 'spare': 1.0, 'is': 3.0, 'birthday': 1.0, 'carter': 1.0, 'december': 1.0, 'my': 2.0, 'be': 1.0, 'bought': 1.0, '3rd': 1.0, 'amazing': 1.0, 'design': 1.0, 'we': 1.0, 'and': 2.0, 'like': 2.0, 'quality': 1.0, 'for': 1.0, 'love': 1.0, 'only': 1.0, 'this': 2.0, 'it': 1.0, 't': 1.0, 'the': 2.0, 'great': 1.0, 'sheets': 1.0, 's': 2.0, 'clothes': 1.0}
Word element => {'teeth': 1.0, 'my': 1.0, 'small': 1.0, 'year': 1.0, 'his': 1.0, 'even': 1.0, 'but': 1.0, 'too': 1.0, 'enough': 1.0, 'is': 1.0, '2': 1.0, 'soft': 1.0, 'hand': 1.0, 'for': 2.0, 'brush': 1.0, 'old': 1.0, 's': 2.0, 'little': 1.0, 'this': 1.0, 'hard': 1.0, 'it': 2.0, 'him': 1.0, 'to': 2.0, 'grab': 1.0, 'aim': 1.0, 'and': 2.0}
Word element => {'down': 1.0, 'minimal': 1.0, 'there': 1.0, 'how': 1.0, 'dropped': 1.0, 'after': 1.0, 'grossly': 1.0, 'now': 1.0, 'are': 1.0, 'minimization': 1.0, 'areas': 1.0, 'near': 1.0, 'paint': 2.0, 'some': 1.0, 'tried': 1.0, 'thumbs': 1.0, 'so': 1.0, 'time': 1.0, 'second': 1.0, 'well': 1.0, 'has': 1.0, 'also': 1.0, 'herself': 1.0, 'by': 1.0, 'teeth': 1.0, 'hold': 1.0, '10': 1.0, 'if': 1.0, 'see': 2.0, 'decal': 1.0, 'we': 1.0, 'a': 2.0, 'go': 1.0, 'of': 5.0, 'off': 2.0, 'enough': 1.0, 'interested': 1.0, 'weight': 1.0, 'seconds': 2.0, 'uses': 1.0, 'incident': 1.0, 'two': 1.0, 'i': 4.0, 'old': 1.0, 'very': 1.0, 'when': 1.0, '11': 1.0, 'from': 1.0, 'huge': 1.0, 'bought': 1.0, 'drinking': 2.0, 'orange': 1.0, 'the': 13.0, 'rim': 1.0, 'suckage': 1.0, '2': 1.0, 'my': 2.0, 'let': 1.0, 'cup': 3.0, 'this': 2.0, 'in': 3.0, 'dump': 1.0, 'intentionally': 1.0, 'product': 1.0, 'for': 1.0, 'were': 1.0, 'that': 1.0, 'she': 3.0, 'it': 2.0, 'month': 1.0, 'lot': 1.0, 'who': 1.0, 'around': 1.0, 'is': 2.0, 'spill': 1.0, 'scraped': 2.0, 'was': 2.0, 'minimized': 1.0, 'overall': 1.0, 'opening': 1.0, 'and': 2.0, 'able': 1.0, 'cups': 1.0, 'to': 4.0, 'all': 2.0, 'daughter': 1.0, 'water': 1.0, '34': 2.0, 'confirm': 1.0, 'd': 2.0, 'put': 1.0, 'sticky': 1.0, 'out': 1.0, 'rims': 1.0, 'about': 2.0}
Word element => {'size': 1.0, 'baby': 1.0, '34': 1.0, 's': 1.0, 'to': 1.0, 'bag': 2.0, 'hard': 1.0, 'it': 2.0, 'this': 1.0, 'the': 1.0, 'on': 1.0, 'is': 1.0, 'design': 2.0, 'for': 1.0, 'in': 1.0, 'find': 1.0, 'cute': 2.0, 'boys': 1.0, 'a': 1.0, 'stores': 1.0, 'i': 1.0, 'would': 1.0, 'say': 1.0, 'medium': 1.0}
Word element => {'expected': 1.0, 'were': 1.0, 'exactly': 1.0, 'details': 1.0, 'this': 1.0, 'is': 1.0, 'the': 2.0, 'just': 1.0, 'nice': 1.0, 'person': 1.0, 'size': 1.0, 'as': 3.0, 'and': 1.0, 'in': 2.0, 'i': 1.0, 'picture': 1.0}
Word element => {'be': 1.0, 'mom': 1.0, 'giving': 1.0, 'hinder': 1.0, 'shipped': 1.0, 'little': 1.0, 'gift': 2.0, 'the': 4.0, 'fast': 1.0, 'got': 1.0, 'to': 3.0, 'purpose': 1.0, 'frame': 1.0, 'looking': 1.0, 'item': 1.0, 'a': 1.0, 'for': 1.0, 'love': 1.0, 'shower': 1.0, 'this': 1.0, 'it': 3.0, 'were': 1.0, 'i': 2.0, 'of': 1.0, 'there': 1.0, 'two': 1.0, 'cracks': 1.0, 'on': 1.0, 'forward': 1.0, 'will': 1.0, 'but': 1.0, 'not': 1.0}
Word element => {'thanks': 1.0, 'gift': 1.0, 'baby': 1.0, 'dena': 1.0, 'for': 1.0, 'tree': 1.0, 'set': 1.0, '34': 2.0, 'happi': 1.0, 'on': 1.0, 'the': 1.0, 'my': 1.0, 'hit': 1.0, 'our': 1.0, '2nd': 1.0, 'to': 1.0, 'granddaughter': 1.0, 's': 1.0, 'nursery': 1.0, 'daughter': 1.0, 'by': 1.0, 'gave': 1.0, 'shower': 1.0, 'this': 1.0, 'her': 1.0, 'big': 1.0, 'decided': 1.0, 'as': 1.0, 'a': 1.0}
Word element => {'rooms': 1.0, 'in': 1.0, 'be': 1.0, 'can': 1.0, 'it': 1.0, 'the': 3.0, 'next': 1.0, 'is': 1.0, 'that': 1.0, 'clock': 1.0, '2nd': 1.0, 'heard': 1.0, 'beautiful': 1.0, 'enough': 1.0, 'hand': 1.0, 'but': 1.0, 'ticks': 1.0, 'loudly': 1.0}
Word element => {'nursery': 1.0, 'white': 1.0, 'nice': 1.0, 'in': 1.0, 'which': 1.0, 'sound': 1.0, 'ticking': 1.0, 'cute': 1.0, 'and': 1.0, 'the': 1.0, 'my': 1.0, 'baby': 1.0, 'girl': 1.0, 'makes': 2.0, 'loves': 1.0, 'noise': 1.0, 'it': 2.0, 'also': 1.0, 'clock': 1.0, 'a': 1.0}
Word element => {'that': 1.0, 'piece': 1.0, 'decorative': 1.0, 'many': 1.0, 'issue': 1.0, 'an': 1.0, 'got': 1.0, 'even': 1.0, 'however': 1.0, 'night': 1.0, 'dimly': 1.0, 'are': 1.0, 'at': 2.0, 'who': 1.0, 'probably': 1.0, 'look': 1.0, 'important': 2.0, 'also': 1.0, 'not': 4.0, 'in': 2.0, 'was': 2.0, '25': 1.0, 'other': 2.0, 'hang': 1.0, 'advertised': 1.0, 'but': 3.0, 'cute': 1.0, 'it': 8.0, 'have': 1.0, 'small': 5.0, 'may': 2.0, 'my': 3.0, 'backlit': 1.0, 'very': 2.0, 'and': 6.0, 'nightstand': 1.0, '1': 1.0, 'as': 1.0, 'actual': 1.0, 'to': 7.0, 'our': 1.0, 'i': 3.0, 'what': 1.0, 'purchased': 2.0, 'a': 4.0, 'we': 4.0, 'going': 2.0, 'wife': 3.0, 'clock': 2.0, 'you': 1.0, 'x': 1.0, 'wall': 1.0, 'lit': 1.0, 'for': 1.0, 'trying': 1.0, 'be': 3.0, 'this': 7.0, 'based': 1.0, 'think': 1.0, 'on': 3.0, 'the': 3.0, 'reviews': 2.0, 'others': 2.0, 'knew': 2.0, 'some': 1.0, 'portion': 1.0, 'really': 1.0, 'customer': 1.0, 'direct': 1.0, 'thick': 1.0, '5': 2.0, 'more': 1.0, 'responses': 1.0, 'is': 6.0, 'say': 1.0, 'cannot': 1.0, 'like': 1.0, 'happens': 1.0, 'nursery': 2.0, 'works': 1.0, 'expected': 1.0, '75': 2.0, 'likes': 1.0, 'well': 1.0}
Word element => {'child': 1.0, 'grand': 1.0, '1st': 1.0, 'my': 3.0, 'daughter': 1.0, 'for': 2.0, 'miles': 1.0, '000': 1.0, 'online': 1.0, '2': 1.0, 'very': 1.0, 'and': 2.0, 'away': 1.0, 'delivered': 1.0, 'purchase': 1.0, 'it': 1.0, 'with': 1.0, 'this': 2.0, 'first': 1.0, 'bought': 1.0, 'product': 1.0, 'she': 1.0, 'had': 1.0, 'was': 1.0, 'pleased': 1.0, 'perfect': 1.0}
Word element => {'shipping': 1.0, 'of': 1.0, 'beware': 1.0, 'fine': 1.0, 'out': 1.0, 'dry': 1.0, 'good': 1.0, 'but': 1.0, 'work': 1.0, 'home': 1.0, 'colors': 1.0, 'perfectly': 1.0, 'went': 1.0, 'deck': 1.0, 'for': 1.0, 'in': 2.0, 'had': 1.0, 'unfortunately': 1.0, 'was': 4.0, 'torrential': 1.0, 'i': 3.0, 'from': 1.0, 'soaked': 1.0, 'very': 1.0, 'expected': 1.0, 'nice': 1.0, 'yard': 2.0, 'nursery': 1.0, 'with': 1.0, 'this': 1.0, 'fedex': 1.0, 'happy': 1.0, 'owl': 1.0, 'is': 1.0, 'left': 1.0, 'and': 3.0, 'play': 2.0, 'the': 8.0, 'theme': 1.0, 'my': 1.0, 'purchase': 2.0, 'everything': 1.0, 'a': 4.0, 'boy': 1.0, 'time': 1.0, 'safety': 1.0, 'by': 1.0, '1st': 1.0, 'brand': 1.0, 'always': 1.0, 'safe': 1.0, 'after': 1.0, 'package': 1.0, 'box': 1.0, 'on': 1.0, 'uncovered': 1.0, 'downpour': 1.0, 'through': 1.0, 'arrived': 1.0}
Word element => {'enough': 1.0, 'angles': 1.0, 'lay': 1.0, 'for': 1.0, 'flat': 1.0, 'in': 1.0, 'ok': 1.0, 'very': 1.0, 'combo': 1.0, 'my': 1.0, 'nice': 1.0, 'car': 1.0, 'the': 4.0, 'great': 1.0, 'way': 2.0, 'can': 1.0, 'back': 1.0, 'but': 1.0, 'stroller': 2.0, 'all': 2.0, 'is': 1.0, 'it': 1.0, 'this': 1.0, 'its': 1.0, 'granddaughter': 1.0, 'seat': 2.0, 'not': 1.0, 'recline': 1.0, 'does': 1.0, 'down': 1.0, 'so': 1.0, 'she': 1.0}
Word element => {'room': 1.0, 'pretty': 1.0, 'and': 1.0, 'in': 1.0, 'shower': 1.0, 'got': 1.0, 'cards': 1.0, 'compartments': 1.0, 'so': 1.0, 'it': 1.0, 'with': 2.0, 'this': 1.0, 'first': 1.0, 'put': 1.0, '3': 1.0, 'on': 1.0, 'but': 2.0, 'book': 1.0, 'i': 4.0, 'one': 2.0, 'bought': 1.0, 'the': 7.0, 'these': 1.0, 'my': 3.0, 'bottom': 2.0, 'memory': 1.0, 'opens': 1.0, 'are': 1.0, 'box': 1.0, 'that': 3.0, 'daughter': 3.0, 'just': 1.0, 'pea': 1.0, 'cute': 1.0, 'was': 1.0, 'wanted': 1.0, 'all': 1.0, 'to': 2.0, 'match': 1.0, 'little': 2.0, 'very': 1.0, 'second': 1.0, 'they': 1.0, 'baby': 2.0, 'like': 1.0, 'hold': 1.0, 'much': 2.0, 'top': 1.0, 'for': 3.0, 'fit': 1.0, 'don': 1.0, 'up': 2.0, 'there': 1.0, 'matching': 1.0, 'took': 1.0, 'then': 2.0, 't': 1.0, 'a': 2.0, 's': 2.0, 'drawer': 2.0}
Word element => {}
Word element => {'not': 1.0, 'awful': 1.0, 'of': 1.0, 'because': 1.0, 'up': 1.0, 'picking': 1.0, 'week': 1.0, 'pound': 1.0, 'delivering': 1.0, 'and': 4.0, '89': 1.0, 'do': 2.0, 'parts': 1.0, 'that': 2.0, 'great': 1.0, 'us': 2.0, 'graco': 1.0, 'send': 1.0, 'them': 2.0, 'was': 4.0, 'amazon': 2.0, 'is': 1.0, 'seriously': 1.0, 'due': 1.0, 'have': 2.0, 'replacement': 2.0, 'all': 1.0, 'to': 3.0, 'as': 1.0, 'for': 1.0, 'product': 3.0, 'had': 1.0, 'purchased': 1.0, 'first': 1.0, 'buy': 1.0, 'ever': 1.0, 'they': 2.0, 'poor': 1.0, 'guy': 1.0, 'on': 1.0, 'allowed': 1.0, 'worse': 1.0, 'called': 1.0, 'everything': 1.0, 'defective': 1.0, 'the': 3.0, 'basically': 1.0, 'boxes': 1.0, 'told': 1.0, 'my': 1.0, 'wife': 1.0, 'there': 1.0, 'return': 2.0, 'always': 1.0, 'worst': 1.0, 'nothing': 1.0, 'a': 2.0, 'we': 3.0, 'could': 1.0, 'this': 2.0, 'ups': 1.0, 'but': 1.0}
Word element => {'save': 1.0, 'claiming': 1.0, 'seller': 1.0, 'from': 1.0, 'half': 1.0, 'at': 1.0, 'generic': 1.0, 'can': 1.0, 'elsewhere': 1.0, 'you': 1.0, 'money': 1.0, 'price': 1.0, 'baby': 2.0, 'like': 1.0, 'and': 1.0, 'stroller': 1.0, 'will': 1.0, 'quality': 1.0, 'it': 1.0, 'inner': 2.0, 'be': 2.0, 'something': 1.0, 'that': 1.0, 'although': 1.0, 'valco': 2.0, 'same': 1.0, 'picture': 1.0, 'selling': 1.0, 'to': 1.0, 'look': 1.0, 't': 1.0, 'the': 5.0, 'are': 3.0, 'buy': 2.0, 'cheap': 1.0, 'brand': 1.0, 'your': 1.0, 'isn': 1.0, 'tubes': 3.0, 'makes': 1.0, 'they': 3.0, 'not': 2.0, 'tube': 1.0, 'fit': 1.0, 'a': 2.0}
Word element => {'real': 1.0, 'doll': 1.0, 'for': 1.0, 'more': 1.0, 'baby': 2.0, 'its': 1.0, 'i': 1.0, 'it': 1.0, 's': 1.0, 'then': 1.0, 'really': 1.0, 'cute': 1.0, 'shipping': 1.0, 'expected': 1.0, 'was': 1.0, 'wat': 1.0, 'excellent': 1.0, 'than': 1.0, 'but': 1.0, 'a': 3.0, 'bit': 1.0, 'smaller': 1.0}
Word element => {'it': 1.0, 'rather': 1.0, 'others': 1.0, 'than': 1.0, 'much': 1.0, 'so': 1.0, 'likes': 1.0, 'she': 1.0, 'her': 1.0, 'even': 1.0, 'daughter': 1.0, 'job': 1.0, 'they': 2.0, 'pricey': 1.0, 'were': 1.0, 'that': 2.0, 'grandson': 1.0, 'but': 1.0, 'gifts': 1.0, 'ad': 1.0, 'my': 2.0, 'more': 1.0, 'these': 2.0, 'the': 2.0, 'yes': 1.0, 'are': 1.0, 'given': 1.0, 'for': 1.0, 'worth': 1.0, 'found': 1.0, 'i': 1.0, 'said': 2.0, 'as': 3.0, 'very': 2.0, 'do': 1.0, 'and': 1.0, 'soft': 2.0, 'thick': 1.0, 'indeed': 1.0, 'definitely': 1.0, 'enough': 1.0, 'hoping': 1.0, 'to': 2.0}
Word element => {'upper': 1.0, 'spitter': 1.0, 'major': 1.0, 'excellent': 1.0, 'still': 1.0, 'about': 2.0, 'a': 1.0, 'well': 1.0, 'condition': 1.0, 'months': 1.0, 'have': 1.0, 'thing': 1.0, 'them': 2.0, 'favorite': 1.0, 'in': 1.0, 've': 1.0, 'wash': 1.0, 'really': 1.0, 'is': 1.0, '2': 1.0, 'they': 3.0, 'absorbant': 1.0, 'my': 1.0, 'are': 2.0, 'that': 1.0, 'very': 1.0, 'and': 2.0, 'soft': 1.0, 'i': 2.0, 'now': 1.0, 'had': 1.0, 'for': 1.0}
Word element => {'they': 1.0, 'problem': 1.0, 'time': 1.0, 'waiting': 1.0, 'm': 1.0, 'otherwise': 1.0, 'i': 1.0, 'way': 1.0, 'replacement': 1.0, 'out': 1.0, 'especially': 1.0, 'quality': 1.0, 'baby': 1.0, 'anything': 1.0, 'ordering': 1.0, 'wants': 1.0, 'one': 2.0, 'thing': 1.0, '1': 1.0, 'and': 2.0, 'find': 1.0, 'because': 2.0, 'is': 1.0, 'obvious': 1.0, 'your': 1.0, 'putting': 1.0, 'clear': 1.0, 'cloth': 1.0, 'review': 1.0, 'arrived': 1.0, 'for': 3.0, 'size': 1.0, 'right': 1.0, 'my': 1.0, 'the': 8.0, 'going': 1.0, 'a': 3.0, 't': 1.0, 'are': 2.0, 'products': 1.0, 'these': 1.0, 'cloths': 2.0, 'hoping': 1.0, 'in': 1.0, '8212': 1.0, 'thick': 1.0, 'high': 1.0, 'low': 1.0, 'really': 1.0, 'material': 1.0, 'immediately': 1.0, 'over': 1.0, 'up': 1.0, 'package': 1.0, 'with': 1.0, 'dirt': 1.0, 'stains': 1.0, 'this': 1.0, 'perfect': 2.0, 'soft': 1.0, 'weren': 1.0, 'organic': 1.0, 'shoulder': 1.0, 'but': 1.0, 'very': 1.0, 'when': 3.0, 'was': 2.0, 'to': 2.0, 'held': 1.0, 'just': 1.0, 'light': 1.0, 'of': 2.0, 'yuck': 1.0, 'last': 1.0}
Word element => {'buying': 1.0, 'will': 1.0, 'any': 1.0, 'they': 2.0, 'babies': 1.0, 'nice': 1.0, 'over': 1.0, 'were': 1.0, 'more': 1.0, 'these': 3.0, 'great': 1.0, 'who': 1.0, 'two': 1.0, 'for': 1.0, 'other': 1.0, 'daughters': 1.0, 'cloth': 1.0, 'i': 1.0, 'my': 1.0, 'are': 1.0, 'be': 1.0, 'bought': 1.0, 'absorbent': 1.0, 'size': 1.0, 'having': 1.0, 'wash': 1.0, 'and': 1.0, 'of': 1.0, 'up': 1.0, 'would': 1.0, 'recommend': 1.0}
Word element => {'absolutely': 1.0, 'cloths': 1.0, 'these': 1.0, 'highly': 1.0, 'result': 1.0, 'occasions': 1.0, 'through': 1.0, 'soak': 1.0, 'allowing': 1.0, 'not': 1.0, 'terms': 1.0, 'burp': 1.0, 'helps': 1.0, 'construction': 1.0, 'recommend': 1.0, 'was': 1.0, 'ply': 1.0, 'i': 2.0, 'mess': 1.0, 'catches': 1.0, 'on': 1.0, 'your': 1.0, 'them': 1.0, 'baby': 1.0, 'great': 1.0, 'which': 3.0, 'like': 1.0, 'long': 1.0, 'the': 2.0, 'definitely': 1.0, 'is': 3.0, 'many': 1.0, 'people': 1.0, 'durable': 1.0, 'it': 3.0, '7': 1.0, 'cotton': 1.0, 'be': 2.0, 'would': 2.0, 'their': 1.0, 'better': 1.0, 'they': 4.0, 'has': 1.0, 'and': 3.0, 'towel': 2.0, 'kitchen': 1.0, 'easily': 1.0, 'when': 1.0, 'you': 1.0, 'dish': 1.0, 'a': 6.0, 'repeated': 1.0, 'since': 1.0, 'lot': 1.0, 'of': 2.0, 'over': 1.0, 'up': 2.0, 'also': 2.0, 'will': 1.0, 'tell': 1.0, 'while': 1.0, 'use': 1.0, 'life': 1.0, 'just': 1.0, 'in': 2.0, 'resistant': 1.0, '2': 1.0, 'distance': 1.0, 'shoulder': 1.0, 'can': 1.0, 'organic': 1.0, 'this': 1.0, 'soft': 1.0, 'held': 1.0, 'months': 1.0, 'under': 1.0, 'washings': 1.0, 'had': 1.0, 'fabulously': 1.0, 'now': 1.0, 'as': 1.0, 'to': 2.0, 'mine': 1.0, 'love': 1.0, 'for': 2.0, 'somewhat': 1.0, 'appear': 1.0, 'right': 1.0, 'stain': 1.0, 'saver': 1.0, 'spits': 1.0, 'are': 2.0}
Word element => {'them': 1.0, 'without': 1.0, 'and': 1.0, 'very': 1.0, 'always': 1.0, 'high': 1.0, 'soft': 1.0, 'only': 1.0, 'wouldn': 1.0, 'cotton': 1.0, 'this': 1.0, 'brand': 1.0, 't': 1.0, 'the': 3.0, 'these': 1.0, 'used': 1.0, 'is': 1.0, 'leave': 1.0, 'love': 1.0, 'were': 1.0, 'i': 3.0, 'burp': 1.0, 'cloths': 1.0, 'quality': 1.0, 'house': 1.0}
Word element => {'ordering': 1.0, 'definitely': 1.0, 'as': 1.0, 'baby': 1.0, 'be': 1.0, 'onto': 1.0, 'through': 1.0, 'seep': 1.0, 'will': 1.0, 'doesn': 1.0, 'use': 1.0, 'too': 1.0, 'when': 1.0, 'she': 1.0, 'my': 1.0, 'mind': 1.0, 'are': 2.0, 'more': 1.0, 't': 1.0, 'mess': 1.0, 'the': 1.0, 'these': 2.0, 'your': 1.0, 'they': 2.0, 'absolutely': 1.0, 'soft': 1.0, 'cloths': 1.0, 'burp': 1.0, 'thicker': 1.0, 'a': 1.0, 'i': 3.0, 'love': 1.0, 'one': 1.0, 'her': 1.0, 'does': 2.0, 'feeding': 1.0, 'little': 1.0, 'not': 2.0, 'so': 2.0, 'after': 1.0, 'easily': 1.0, 'like': 1.0, 'wiped': 1.0, 'and': 1.0, 'face': 1.0}
Word element => {'size': 1.0, 'dryed': 1.0, 'well': 1.0, 'and': 2.0, 'very': 1.0, 'they': 1.0, 'these': 1.0, 'the': 2.0, 'were': 1.0, 'handy': 1.0, 'ups': 1.0, 'appreciated': 1.0, 'burp': 1.0, 'came': 1.0, 'wash': 1.0, 'perfect': 1.0, 'greatly': 1.0, 'cloths': 1.0, 'in': 1.0, 'for': 1.0, 'those': 1.0, 'spit': 1.0, 'softness': 1.0, 'was': 1.0}
Word element => {'delicate': 1.0, 'many': 1.0, 'especially': 1.0, 'had': 1.0, 'comparison': 1.0, 'no': 1.0, 'is': 1.0, 'rid': 1.0, 'have': 1.0, 're': 1.0, 'next': 1.0, 'that': 1.0, 'now': 1.0, 'another': 1.0, 'wound': 1.0, 'for': 1.0, 'day': 1.0, 'gotten': 1.0, 'looking': 1.0, 'clean': 1.0, 'through': 1.0, 'even': 1.0, 'other': 3.0, 'were': 1.0, 'pile': 1.0, 'nile': 4.0, 'the': 10.0, 'brands': 1.0, 'than': 1.0, 'from': 2.0, 'face': 1.0, 'born': 1.0, 'considering': 1.0, 'pack': 2.0, 'expecting': 1.0, 'was': 2.0, 'ourselves': 1.0, 'our': 4.0, 'all': 2.0, 'to': 2.0, 'how': 1.0, 'received': 1.0, 'each': 1.0, 'first': 1.0, 'buying': 1.0, 'with': 1.0, 'lot': 1.0, 'of': 5.0, 'immediately': 1.0, 's': 1.0, 'we': 6.0, 'a': 3.0, 'there': 1.0, 'burp': 4.0, 'up': 1.0, 'cheaper': 1.0, 'wash': 1.0, 'one': 2.0, 'times': 1.0, 'when': 1.0, 'under': 4.0, 'washes': 1.0, 'digging': 1.0, 'non': 1.0, 'organic': 1.0, 'seemed': 1.0, 'really': 1.0, 'pilling': 1.0, 'material': 1.0, 'felt': 1.0, 'cloths': 5.0, 'others': 1.0, 'and': 2.0, 'get': 1.0, 'rest': 1.0, 'after': 1.0, 'few': 1.0, 'wipe': 1.0, 'baby': 3.0, 'softer': 2.0, 'started': 1.0, 'soft': 1.0, 'found': 1.0}
Word element => {'again': 1.0, 'worthless': 1.0, 'with': 1.0, 'stuck': 1.0, 'now': 1.0, 'ordered': 1.0, 'spill': 1.0, 'everywhere': 1.0, 'that': 2.0, 'order': 1.0, 'kleenex': 1.0, 'yourself': 1.0, 'reaching': 1.0, 'find': 1.0, 'll': 1.0, 'down': 1.0, 'two': 1.0, 'finally': 1.0, 'confused': 1.0, 'you': 4.0, 'respond': 1.0, 'rougher': 1.0, 'much': 1.0, 'are': 2.0, 'manufacturer': 1.0, 'like': 2.0, 'soft': 1.0, 'this': 1.0, 'not': 1.0, 'layers': 1.0, 'rough': 1.0, 'and': 5.0, 'items': 1.0, 'slopes': 1.0, 'somewhat': 1.0, 'customer': 1.0, 'their': 2.0, 'silky': 1.0, 'silk': 1.0, 'seem': 1.0, 'under': 1.0, 'egyptian': 1.0, 'from': 1.0, 'feels': 1.0, 'cotton': 4.0, 'pima': 2.0, 'it': 3.0, 'tissue': 1.0, 'but': 1.0, 'doesn': 3.0, 't': 3.0, 'products': 1.0, 'cloths': 3.0, 'never': 1.0, 'knew': 1.0, 'some': 1.0, 'hand': 1.0, 'buy': 1.0, 'nile': 1.0, 'smearing': 1.0, 'about': 1.0, 'baby': 1.0, 'or': 3.0, 'cup': 1.0, 'should': 1.0, 'burp': 3.0, 'also': 1.0, 'spit': 2.0, 'rude': 1.0, 'the': 11.0, 'of': 3.0, 'muslin': 2.0, 'absorbed': 1.0, 'when': 1.0, 'what': 1.0, 'appears': 1.0, 'became': 1.0, 'to': 5.0, 'as': 1.0, 'called': 1.0, 'knitted': 1.0, 'sewn': 1.0, 'together': 1.0, 'pita': 1.0, 'absorb': 2.0, 'other': 1.0, 'knits': 1.0, 'prevent': 1.0, 'i': 4.0, 'well': 1.0, 'saliva': 2.0, 'be': 2.0, 'slides': 1.0, 'm': 1.0, 'in': 2.0, 'off': 1.0, 'so': 3.0, 'time': 2.0, 'they': 1.0, 'interlock': 1.0, 'absorbing': 1.0, 'service': 1.0, 'if': 1.0, 'have': 3.0, 'large': 1.0, 'water': 1.0, 'up': 3.0, 'takes': 1.0, 'on': 1.0, 'long': 1.0, 'fabric': 1.0, 'for': 3.0, 'a': 3.0, 'moisture': 1.0, 'instead': 1.0, 'cloth': 3.0, 'your': 1.0, 'oozing': 1.0, 'end': 1.0, 'liquid': 2.0}
Word element => {'gift': 1.0, 'baby': 1.0, 'for': 1.0, 'well': 1.0, 'wash': 1.0, 'shower': 1.0, 'the': 1.0, 'make': 1.0, 'my': 1.0, 'very': 1.0, 'and': 1.0, 'perfect': 1.0, 'all': 1.0, 'burp': 1.0, 'cloths': 1.0, 'favorite': 1.0, 'of': 1.0, 'soft': 1.0, 'time': 1.0, 'absorbent': 1.0, 'these': 1.0, 'they': 1.0}
Word element => {'them': 1.0, 'if': 1.0, 'or': 1.0, 'of': 1.0, 'you': 2.0, 'chair': 1.0, 'over': 1.0, 'recommend': 1.0, 'was': 1.0, 'after': 1.0, 'poo': 1.0, 'as': 1.0, 'to': 4.0, 'seat': 3.0, 'just': 1.0, 'not': 1.0, 'have': 2.0, 'this': 5.0, 'he': 1.0, 'with': 2.0, 'been': 1.0, 'struggling': 1.0, 'wont': 1.0, 'a': 4.0, 'getting': 1.0, 'and': 1.0, 'i': 3.0, 'adding': 1.0, 'street': 1.0, 'pee': 1.0, 'the': 4.0, 'my': 1.0, 'bowl': 1.0, 'on': 3.0, 'way': 1.0, 'dump': 1.0, 'sit': 2.0, 'suggestion': 1.0, 'ticket': 1.0, 'from': 1.0, 'while': 1.0, 'is': 2.0, 'people': 1.0, 'ready': 1.0, 'it': 2.0, 'train': 2.0, 'friend': 1.0, 'toilet': 1.0, 'comfy': 1.0, 'doesnt': 1.0, 'son': 1.0, 'still': 1.0, 'seem': 1.0, 'potty': 4.0, 'scary': 1.0, 'him': 1.0, 'has': 1.0, 'highly': 1.0, 'seasame': 1.0, 'actually': 1.0, 'even': 1.0, 'got': 1.0}
Word element => {'their': 1.0, 'keep': 1.0, 'shape': 1.0, 'well': 1.0, 'wash': 1.0, 'you': 1.0, 'at': 1.0, 'shoot': 1.0, 't': 1.0, 'cute': 1.0, 'if': 1.0, 'they': 2.0, 'and': 1.0, 'up': 1.0, 'pee': 1.0, 'it': 1.0, 'down': 1.0, 'doesn': 1.0, 'sooo': 1.0, 'drizzles': 1.0, 'but': 1.0}
Word element => {'great': 1.0, 'quality': 1.0, 'and': 1.0, 'carrying': 1.0, 'cute': 1.0, 'in': 1.0, 'come': 1.0, 'this': 1.0, 'is': 1.0, 'are': 1.0, 'the': 1.0, 'a': 2.0, 'they': 1.0, 'perfect': 1.0, 'sack': 1.0, 'little': 2.0, 'baby': 1.0, 'addition': 1.0, 'to': 1.0, 'gift': 1.0}
Word element => {'keep': 1.0, 'hard': 1.0, 's': 1.0, 'while': 1.0, 'but': 1.0, 'to': 1.0, 'place': 2.0, 'diaper': 1.0, 'in': 2.0, 'are': 1.0, 'the': 2.0, 'is': 1.0, 'concept': 1.0, 'they': 1.0, 'you': 2.0, 'changing': 1.0, 'it': 1.0, 'great': 1.0, 'and': 1.0, 'if': 1.0, 'work': 1.0, 'hold': 1.0, 'them': 2.0}
Word element => {'item': 1.0, 'in': 1.0, 'does': 1.0, 'and': 2.0, 'quality': 1.0, 'color': 1.0, 'state': 1.0, 'received': 1.0, 'love': 1.0, 'the': 4.0, 'great': 1.0, 'it': 2.0, 'this': 2.0, 'along': 1.0, 'bumper': 3.0, 'i': 2.0, 'however': 1.0, 'looks': 1.0, 'is': 1.0, 'a': 2.0, 'bassinet': 1.0, 'description': 1.0, 'because': 1.0, 'just': 2.0, 'not': 2.0, 'crib': 1.0, 'wanted': 1.0, 'to': 1.0, 'info': 1.0, 'pass': 1.0}
Word element => {'them': 1.0, 'kept': 1.0, 'pad': 1.0, 'also': 1.0, 'those': 1.0, 'has': 1.0, 'too': 1.0, 'us': 1.0, 'r': 1.0, 'bought': 1.0, '9': 1.0, '00': 1.0, 'my': 2.0, 'curtain': 2.0, 'matches': 1.0, 'had': 1.0, 'one': 1.0, 'for': 2.0, 'snug': 1.0, 'cheap': 2.0, 'i': 2.0, 'changing': 1.0, 'from': 2.0, 'as': 1.0, 'because': 1.0, 'comment': 1.0, 'it': 3.0, 'with': 1.0, 'same': 1.0, 'baby': 1.0, 'doesn': 1.0, 'the': 4.0, 't': 1.0, 'have': 1.0, 'slits': 1.0, 'straps': 1.0, 'that': 1.0, 'toys': 1.0, 'hold': 1.0}
Word element => {'fine': 1.0, 'just': 1.0, 'came': 1.0, 'once': 1.0, 'boy': 1.0, 'they': 1.0, 'baby': 1.0, 'incredibly': 1.0, 'side': 1.0, 'really': 1.0, 'standard': 1.0, 'not': 2.0, 'know': 1.0, 'bright': 1.0, 'blue': 2.0, 'put': 1.0, 're': 1.0, 'my': 1.0, 'i': 6.0, 'and': 5.0, 'green': 1.0, 'got': 1.0, 'already': 1.0, 'out': 1.0, 'bold': 1.0, 'addition': 1.0, 'wash': 1.0, 'newest': 1.0, 'for': 1.0, 'love': 1.0, 'the': 7.0, 'this': 2.0, 'soft': 3.0, 'quite': 1.0, 'both': 1.0, 'expected': 1.0, 'what': 1.0, 'thought': 1.0, 'was': 1.0, 'pretty': 1.0, 'is': 2.0, 'swirl': 1.0, 'it': 2.0, 'minky': 2.0, 'bump': 1.0, 'colors': 2.0, 'though': 1.0, 'sides': 1.0, 'blanket': 2.0, 'are': 1.0, 've': 1.0, 'super': 1.0, 'through': 1.0}
Word element => {'be': 1.0, 'if': 1.0, 'wait': 1.0, 'october': 1.0, 'will': 2.0, 'who': 1.0, 'grandbaby': 1.0, 'great': 1.0, 'how': 1.0, 'favorite': 2.0, '34': 2.0, 'pretty': 1.0, 'in': 2.0, 'tosses': 1.0, 'thing': 1.0, 'such': 1.0, 'some': 1.0, 'held': 1.0, 'or': 1.0, 'hand': 1.0, 'instructions': 1.0, 'baby': 1.0, 'blanky': 2.0, 'them': 1.0, 'loved': 2.0, 'can': 1.0, 'but': 1.0, 'blankets': 1.0, 'friend': 1.0, 'own': 1.0, 'with': 2.0, 'her': 4.0, 'first': 2.0, 'year': 1.0, 'silk': 1.0, 'from': 1.0, 'all': 1.0, 'to': 4.0, 'as': 2.0, 'too': 1.0, 'and': 6.0, 'see': 1.0, 'couldn': 1.0, 'get': 1.0, 'away': 1.0, 'say': 1.0, 'is': 3.0, 'second': 2.0, 'has': 1.0, 'well': 2.0, 'princess': 1.0, 'dryer': 1.0, 'have': 1.0, 'that': 1.0, 'loves': 3.0, 'babies': 1.0, 'sooo': 1.0, 'blanket': 2.0, 'the': 8.0, 'a': 1.0, 't': 2.0, 'arrive': 1.0, 'it': 6.0, 'minky': 1.0, 'she': 1.0, 'cool': 1.0, 'bought': 2.0, 'one': 2.0, 'parents': 1.0, 'sliky': 1.0, 'for': 4.0, 'i': 4.0, 'old': 1.0, 'much': 2.0, 'had': 2.0, 'purchased': 1.0, 'up': 1.0, 'wash': 3.0, 'soothe': 1.0, 'friends': 1.0, 'so': 3.0, 'my': 3.0, 'another': 2.0, 'children': 1.0, 'birthday': 1.0, 'this': 3.0, 'perfect': 1.0, 'soft': 1.0, 'just': 2.0, 'large': 1.0, 'themselves': 1.0, 'trim': 2.0}
Word element => {'and': 1.0, 'anyway': 1.0, 'works': 1.0, 'it': 1.0, 'bought': 1.0, 'but': 1.0, 'mirror': 1.0, 'i': 2.0, 'actually': 1.0, 'fall': 1.0, 'constant': 1.0, 'this': 1.0, 'cheap': 1.0, 'the': 2.0, 'figured': 1.0, 'off': 1.0, 'little': 1.0, 'stupid': 1.0, 'thing': 2.0, 'would': 1.0}
Word element => {'actually': 1.0, 'that': 1.0, 'for': 1.0, 'bought': 1.0, 'feel': 1.0, 'ridiculous': 1.0, 'people': 1.0, 'price': 1.0, 'do': 1.0, 'not': 1.0, 'is': 1.0, 'the': 1.0, 'sorry': 1.0, 'own': 1.0, 'item': 1.0, 'this': 2.0, 'i': 2.0, 'one': 1.0, 'of': 1.0, 'these': 1.0, 'but': 1.0}
Word element => {'thanks': 1.0, 'purchase': 1.0, 'incredibly': 1.0, 'turnstyle': 1.0, 'through': 1.0, 'test': 1.0, 'exhibits': 1.0, 'parents': 1.0, 'ins': 1.0, 'no': 1.0, 'radius': 1.0, 'turning': 1.0, 'out': 1.0, 'asking': 1.0, 'people': 1.0, 'about': 1.0, 'play': 1.0, 'or': 1.0, 'table': 1.0, 'doubled': 1.0, 'perfectly': 2.0, 'stopped': 1.0, 'toddlers': 1.0, 'gear': 2.0, 'when': 2.0, 'on': 3.0, '3': 1.0, 'recent': 1.0, 'perfect': 2.0, 'kids': 1.0, 'it': 1.0, 'recline': 1.0, 'back': 1.0, 'most': 2.0, 'but': 1.0, 'bump': 1.0, '2': 1.0, 'stroller': 2.0, 'our': 6.0, 'to': 9.0, 'outside': 1.0, 'awkward': 1.0, 'as': 3.0, 'us': 1.0, 'for': 6.0, 'wagon': 6.0, 'way': 2.0, 'a': 3.0, 'we': 6.0, 'doors': 1.0, 'could': 1.0, 'be': 2.0, 'washington': 1.0, 'who': 1.0, 'area': 1.0, 'adventure': 1.0, 'folding': 1.0, 'babyz': 2.0, 'is': 2.0, 'and': 9.0, 'month': 1.0, 'tight': 1.0, 'summer': 1.0, 'riding': 1.0, '7': 2.0, 'have': 1.0, 'loves': 1.0, 'state': 1.0, 'changing': 1.0, 'much': 1.0, 'do': 1.0, 'old': 2.0, 'i': 1.0, 'go': 4.0, 'outdoors': 1.0, '4': 1.0, 'was': 6.0, 'had': 2.0, 'husband': 1.0, 'able': 1.0, 'choice': 1.0, 'very': 1.0, 'being': 1.0, 'my': 1.0, 'turns': 2.0, 'active': 1.0, 'during': 1.0, 'recently': 1.0, 'get': 1.0, 'moved': 1.0, 'months': 1.0, 'the': 28.0, 'of': 6.0, 'plus': 1.0, 'first': 1.0, 'little': 1.0, 'nice': 1.0, 'comfortable': 1.0, 'days': 1.0, 'plans': 1.0, 'seat': 1.0, 'in': 5.0, 'ultimate': 1.0, 'pacific': 1.0, 'were': 2.0, 'fit': 4.0, 'along': 2.0, 'northwest': 1.0, 'year': 3.0, 'packed': 1.0, 'ride': 2.0, 'so': 2.0, 'one': 2.0, 'happy': 2.0, 'lunch': 1.0, 'happily': 1.0, 'compliments': 1.0, 'just': 1.0, 'he': 3.0, 'car': 1.0, 'zoo': 3.0, 'support': 1.0, 'wanted': 2.0, 'closer': 1.0, 'all': 2.0, 'other': 2.0, 'going': 1.0, 'traveling': 1.0, 'with': 4.0, 'needed': 1.0, 'olds': 1.0, 'has': 1.0, 'them': 1.0, 'many': 3.0, 'baby': 2.0, 'took': 1.0, 'strapped': 1.0, 'infant': 2.0, '5': 1.0, 'nap': 1.0}
Word element => {'right': 1.0, 'returned': 1.0, 'being': 1.0, 'between': 1.0, 'say': 1.0, 'amazon': 1.0, 'issue': 1.0, 'oversized': 1.0, 'manufacturer': 1.0, 'around': 1.0, 'foam': 1.0, 'dents': 1.0, 'dings': 1.0, 'poorly': 1.0, 'came': 1.0, 'problem': 1.0, 'would': 1.0, 'pull': 1.0, 'does': 1.0, 'than': 2.0, 'all': 2.0, 'as': 2.0, 'francisco': 1.0, 'humongous': 1.0, 'you': 1.0, 'when': 3.0, 'folded': 1.0, 'a': 4.0, 'go': 1.0, 'item': 1.0, 'stroller': 2.0, 'fact': 1.0, 'product': 2.0, 'for': 1.0, 'was': 3.0, 'great': 1.0, 'idea': 1.0, 'feel': 1.0, 'it': 7.0, 'into': 1.0, 'were': 3.0, 'conceptually': 1.0, 'but': 1.0, 'pointless': 1.0, 'lot': 2.0, 'space': 1.0, 'still': 2.0, 'if': 3.0, 'bigger': 1.0, 'think': 2.0, 'several': 2.0, 'thing': 1.0, 'i': 7.0, 'curved': 1.0, 'handle': 3.0, 'is': 3.0, 'more': 1.0, 'maybe': 2.0, 's': 5.0, 'awkwardly': 1.0, 'making': 1.0, 'so': 2.0, 'smaller': 1.0, 'folds': 1.0, 'damaged': 1.0, 'however': 1.0, 'up': 2.0, 'there': 2.0, 'away': 1.0, 'san': 1.0, 'out': 2.0, 'sticks': 1.0, 'wagon': 4.0, 'narrow': 1.0, 'arrived': 1.0, 'that': 3.0, 'problems': 1.0, 'overall': 1.0, 'expected': 1.0, 'cuts': 1.0, 'like': 1.0, 'version': 1.0, 'far': 2.0, 'excited': 1.0, 'wider': 1.0, 'and': 4.0, 'about': 2.0, 'hog': 1.0, 'the': 16.0, 'of': 2.0, 'longer': 1.0, 'be': 1.0, 'need': 1.0, 'or': 2.0, 'wrapping': 1.0, 'needs': 1.0, 'urban': 1.0, 'needless': 1.0, 'really': 2.0, 'families': 1.0, 'm': 1.0, 'in': 3.0, 'they': 1.0, 'should': 1.0, 'packaged': 1.0, 'trim': 1.0, 'we': 1.0, 'take': 1.0, 'to': 5.0, 'pretty': 1.0, 'details': 1.0, 'd': 1.0, 'not': 1.0, 'street': 1.0, 'much': 1.0, 'sure': 1.0, 'store': 1.0, 'certain': 1.0, 'sidewalk': 1.0, 'even': 1.0, 'have': 1.0, 'this': 3.0, 'sidewalks': 1.0, 'some': 1.0, 'areas': 1.0, 'second': 1.0}
Word element => {'thinner': 1.0, 'are': 1.0, 'since': 1.0, 'a': 1.0, 'difficult': 1.0, 'very': 1.0, 'lock': 1.0, 'it': 2.0, 'they': 1.0, 'makes': 1.0, 'prevent': 1.0, 'the': 1.0, 'my': 1.0, 'to': 2.0, 'place': 1.0, 'guard': 1.0, 'entrapment': 1.0, 'might': 1.0, 'safety': 1.0, 'in': 1.0, 'gate': 1.0, 'on': 2.0, 'head': 1.0, 'king': 1.0, 'better': 1.0, 'size': 1.0, 'mattress': 2.0, 'toddler': 1.0, 'work': 1.0}
Word element => {'or': 1.0, 'mean': 1.0, 'onto': 1.0, 'overlap': 1.0, 'panel': 1.0, 'mesh': 1.0, 'secure': 1.0, 'newborn': 1.0, 'surprisingly': 1.0, 'in': 2.0, 'suffocate': 1.0, 'down': 1.0, 'even': 1.0, 'it': 4.0, 'perfect': 1.0, 'mattress': 2.0, 'this': 1.0, 'was': 1.0, 'baby': 1.0, 'night': 1.0, 'without': 1.0, 'the': 6.0, 'breastfeed': 1.0, 'up': 1.0, 'of': 1.0, 'and': 7.0, 'to': 1.0, 'our': 2.0, 'that': 1.0, 'although': 1.0, 'being': 1.0, 'purchased': 1.0, 'so': 1.0, 'middle': 1.0, 'wont': 1.0, 'a': 1.0, 'could': 1.0, 'pocket': 1.0, 'fit': 2.0, 'top': 1.0, 'constantly': 1.0, 'on': 2.0, 'extra': 1.0, 'pillow': 1.0, 'be': 1.0, 'my': 2.0, 'requires': 1.0, 'muscle': 1.0, 'husband': 2.0, 'deep': 1.0, 'thick': 1.0, 'sheets': 1.0, 'fall': 1.0, 'is': 2.0, 'very': 1.0, 'snug': 1.0, 'must': 1.0, 'one': 1.0, 'off': 1.0}
Word element => {'for': 1.0, 'end': 1.0, 'excellent': 1.0, 'needless': 1.0, 'money': 1.0, 'instructions': 1.0, 'front': 5.0, 'in': 1.0, 'said': 1.0, 'tell': 1.0, 'bed': 1.0, 'comes': 2.0, 'is': 5.0, 'say': 1.0, 'to': 8.0, 'gorgeous': 1.0, 'bit': 1.0, 'can': 1.0, 'so': 2.0, 'appropriately': 1.0, 'and': 3.0, 'drilled': 1.0, 'too': 1.0, 'aligned': 1.0, 'sure': 1.0, 'make': 3.0, 'think': 1.0, 'on': 2.0, 'together': 1.0, 'curved': 3.0, 'be': 1.0, 'putting': 1.0, 'i': 3.0, 'beautiful': 1.0, 'picture': 2.0, 'crib': 5.0, 'like': 2.0, 'note': 1.0, 'a': 4.0, 'go': 1.0, 't': 1.0, 'we': 1.0, 'you': 3.0, 'happened': 1.0, 'when': 1.0, 'which': 1.0, 'side': 2.0, 'before': 1.0, 'll': 2.0, 'down': 1.0, 'please': 1.0, 'hard': 1.0, 'fabulous': 1.0, 'from': 2.0, 'with': 3.0, 'this': 2.0, 'putty': 1.0, 'but': 1.0, 'print': 1.0, 'very': 1.0, 'big': 1.0, 'mistake': 1.0, 'pleased': 1.0, 'up': 1.0, 'the': 20.0, 'of': 2.0, 'those': 1.0, 'way': 2.0, 'my': 2.0, 'husband': 2.0, 'that': 2.0, 'because': 2.0, 'don': 1.0, 'backpanel': 1.0, 'buy': 1.0, 'aligning': 1.0, 'he': 2.0, 'top': 2.0, 'lines': 2.0, 'it': 5.0, 'thought': 1.0, 'had': 2.0, 'also': 1.0, 'put': 2.0, 'match': 1.0, 'toddler': 1.0, 'actually': 1.0, 'facing': 1.0, 'trying': 1.0, 'extra': 2.0, 'holes': 3.0, 'wasnt': 1.0, 'panel': 6.0, 'realized': 1.0, 'd': 1.0, 'quality': 1.0, 'fill': 1.0, 'white': 1.0, 'sturdy': 1.0, 'wrong': 2.0, 'eveyrthing': 1.0, 'need': 1.0}
Word element => {'similar': 1.0, 'or': 1.0, 'waterpik': 1.0, 'using': 1.0, 'and': 1.0, 'less': 1.0, 'process': 1.0, 'sinus': 1.0, 'pushes': 1.0, 'noisy': 1.0, 'escape': 1.0, 'just': 1.0, 'not': 1.0, 'highly': 1.0, 'ever': 1.0, 'so': 1.0, 'have': 1.0, 'it': 1.0, 'this': 1.0, 'messy': 1.0, 'edge': 1.0, 'device': 1.0, 'whole': 1.0, 'i': 1.0, 'used': 1.0, 'nasal': 1.0, 'does': 1.0, 'irrigator': 1.0, 'best': 1.0, 'the': 6.0, 'creates': 1.0, 'is': 2.0, 'recommended': 1.0, 'cavity': 1.0, 'seal': 1.0, 'much': 1.0, 'tip': 1.0, 'a': 2.0, 'through': 1.0, 'around': 1.0, 'of': 1.0, 'nose': 1.0, 'than': 1.0, 'water': 1.0}
Word element => {'my': 1.0, 'on': 1.0, 'wear': 1.0, 'actually': 1.0, 'make': 1.0, 'please': 1.0, 'be': 1.0, 'would': 1.0, 'this': 2.0, 'bag': 2.0, 'back': 1.0, 'but': 1.0, 'petite': 2.0, 'enormous': 1.0, 'a': 2.0, 'oslo': 1.0, 'm': 1.0, 'diaper': 1.0, 'heavy': 1.0, 'the': 1.0, 'love': 1.0, 'i': 4.0, 'backpack': 1.0, 'can': 1.0, 'size': 1.0, '5': 1.0, 'pattern': 1.0, '3': 1.0, 'and': 2.0, 'is': 1.0, 'that': 1.0, 'thought': 1.0, 'empty': 1.0}
Word element => {'accessible': 1.0, 'of': 1.0, 'clean': 1.0, 'wiped': 1.0, 'easily': 2.0, 'can': 1.0, 'compartments': 1.0, 'material': 1.0, 'is': 2.0, 'are': 1.0, 'the': 3.0, 'be': 1.0, 'exactly': 1.0, 'all': 1.0, 'but': 1.0, 'what': 1.0, 'this': 1.0, 'bag': 1.0, 'colorful': 1.0, 'i': 1.0, 'and': 1.0, 'wanted': 1.0, 'durable': 1.0}
Word element => {'now': 1.0, 'in': 1.0, 'which': 1.0, 'need': 1.0, 'everything': 1.0, 'fit': 1.0, 'pad': 1.0, 'out': 1.0, 'i': 3.0, 's': 1.0, 'super': 2.0, 'there': 1.0, 'fold': 1.0, 'love': 2.0, 'right': 1.0, 'can': 2.0, 'cute': 1.0, 'bag': 1.0, 'it': 3.0, 'this': 1.0, 'only': 1.0, 'changing': 1.0, 'as': 1.0, 'and': 1.0, 'functional': 1.0, 'a': 1.0, 'is': 3.0, 'not': 1.0, 'awesome': 1.0, 'that': 1.0, 'be': 1.0, 'worn': 1.0, 'pack': 1.0, 'back': 1.0, 'great': 1.0, 'the': 1.0}
Word element => {'love': 1.0, 'adorable': 1.0, 'found': 1.0, 'i': 4.0, 'picture': 1.0, 'everything': 1.0, 'however': 1.0, 'that': 1.0, 'trendy': 1.0, 'in': 2.0, 'than': 1.0, 'instead': 1.0, 'bigger': 1.0, 'it': 1.0, 'this': 1.0, 'looked': 1.0, 'space': 1.0, 'bag': 3.0, 'diaper': 2.0, 'the': 3.0, 'appreciated': 1.0, 'of': 1.0, 'carrying': 1.0, 'a': 1.0, 'can': 1.0, 'additional': 1.0, 'consolidate': 1.0, 'purse': 1.0, 'and': 2.0}
Word element => {'know': 1.0, 'extra': 1.0, 'long': 1.0, 'embroidery': 1.0, 'does': 1.0, 'last': 1.0, 'clean': 1.0, 'wipes': 1.0, 'time': 1.0, 'friends': 1.0, 'so': 1.0, 'pad': 1.0, 'is': 1.0, 'best': 1.0, 'in': 1.0, 'some': 1.0, 'decent': 1.0, 'fit': 1.0, 'always': 2.0, 'just': 1.0, 'or': 1.0, 'the': 3.0, 'hanging': 1.0, 'great': 1.0, 'comfortable': 1.0, 'feel': 1.0, 'it': 7.0, 'with': 3.0, 'down': 1.0, 'tote': 2.0, 'from': 1.0, 'part': 1.0, 'bags': 3.0, 'had': 1.0, 'husband': 1.0, 'diaper': 1.0, 'messenger': 2.0, 'give': 1.0, 'not': 1.0, 'me': 1.0, 'my': 1.0, 'can': 1.0, 'but': 2.0, 'exterior': 1.0, 'will': 2.0, 'speaking': 1.0, 'through': 1.0, 'teases': 1.0, 'and': 1.0, 'soon': 1.0, 'something': 1.0, 've': 2.0, 'changing': 1.0, 'that': 2.0, 'been': 1.0, 'plenty': 1.0, 'of': 2.0, 'out': 1.0, 'third': 1.0, 'choice': 1.0, 'detail': 1.0, 'being': 1.0, 'folds': 1.0, 'backpack': 1.0, 'bag': 2.0, 'wanted': 1.0, 'due': 1.0, 'have': 3.0, 'true': 1.0, 'wear': 1.0, 'amount': 1.0, 'after': 1.0, 'to': 2.0, 'our': 1.0, 'as': 2.0, 'we': 1.0, 'could': 1.0, 's': 3.0, 'a': 6.0, 'you': 5.0, 'when': 1.0, 'this': 1.0, 'kids': 1.0, 'strap': 1.0, 'are': 1.0, 'chasing': 1.0, 'etc': 1.0, 'i': 7.0, 'two': 1.0, 'think': 2.0, 'stuff': 1.0, 'on': 2.0, 'inevitably': 1.0, 'one': 1.0}
Word element => {'stars': 1.0, '3': 1.0, 'now': 1.0, 'discomfort': 1.0, 'around': 1.0, 'way': 1.0, 'finding': 1.0, 'aid': 1.0, 'full': 1.0, 'review': 1.0, 'revise': 1.0, 'll': 1.0, 'back': 1.0, 'into': 1.0, 'dig': 1.0, 'strap': 1.0, 'attach': 1.0, 'metal': 1.0, 'when': 2.0, 'stage': 1.0, 'use': 2.0, 'are': 2.0, 'and': 4.0, 'online': 1.0, 'couldn': 1.0, 'designs': 1.0, 's': 2.0, 'a': 5.0, 'will': 1.0, 'could': 1.0, 't': 2.0, 'reviewed': 1.0, 'actually': 1.0, 'for': 4.0, 'conversion': 1.0, 'mode': 1.0, 'but': 1.0, 'past': 1.0, 'removable': 1.0, 'kind': 1.0, 'backpack': 2.0, 'freaking': 1.0, 'regular': 1.0, 'who': 1.0, 'daydreaming': 1.0, 'bag': 8.0, 'due': 1.0, 'alone': 1.0, 'on': 4.0, 'pre': 1.0, 'resist': 1.0, 'ppb': 2.0, 'their': 1.0, 'date': 1.0, 'fell': 1.0, 'at': 1.0, 'is': 3.0, 'more': 1.0, 'me': 1.0, 'looks': 1.0, 'my': 4.0, 'rate': 1.0, 'm': 1.0, 'in': 5.0, 'said': 1.0, 'so': 3.0, 'products': 1.0, 'well': 1.0, 'i': 12.0, 'feature': 1.0, 'beautiful': 1.0, 'refund': 1.0, 'intended': 1.0, 'be': 3.0, 'dax': 1.0, 'this': 5.0, 'charts': 1.0, 'hopes': 1.0, 'd': 2.0, 'otherwise': 1.0, 'someone': 1.0, 'off': 1.0, 'pad': 1.0, 'as': 1.0, 'diaper': 4.0, 'of': 2.0, 'the': 9.0, 'if': 1.0, 'later': 1.0, 'being': 1.0, 'numerous': 1.0, 'variations': 1.0, 'weeks': 1.0, 'would': 1.0, 'never': 1.0, 'it': 1.0, 'thought': 1.0, 'candid': 1.0, 'tax': 1.0, 'that': 4.0, 'put': 1.0, 'changing': 1.0, 'just': 2.0, 'have': 4.0, 'not': 1.0, 'used': 1.0, 'far': 1.0, 'love': 2.0, 'yet': 1.0, 'its': 1.0, 'clasps': 1.0, 'only': 1.0, 'function': 1.0, 'baby': 1.0, 'shoulder': 1.0, 'isn': 1.0, 'several': 1.0, 'hoping': 1.0, 'to': 4.0, 'high': 1.0, 'creation': 1.0, 'given': 1.0, 'spend': 1.0, 'experiences': 1.0, 'other': 1.0, 'there': 1.0, 'bunch': 1.0, 'clever': 1.0, 'with': 2.0, 'pockets': 1.0, 'elasticized': 1.0, 'complaint': 1.0}
Word element => {'boooo': 1.0, 'cup': 1.0, 'sippy': 1.0, 'child': 1.0, 'a': 1.0, 'like': 1.0, 'instead': 1.0, 'would': 1.0, 'thought': 1.0, 'over': 1.0, 's': 1.0, 'way': 1.0, 'was': 1.0, 'price': 1.0, 'picture': 2.0, 'does': 1.0, 'newer': 1.0, 'be': 1.0, 'product': 3.0, 'i': 3.0, 'old': 1.0, 'of': 1.0, 'has': 1.0, 'better': 1.0, 'represent': 1.0, 'soon': 1.0, 'new': 1.0, 'looks': 1.0, 'is': 1.0, 'not': 1.0, 'the': 7.0, 'symbol': 3.0, 'm': 1.0, 'back': 1.0, 'superman': 1.0, 'or': 1.0, 'sending': 1.0, 'this': 2.0, 'it': 2.0, 'priced': 1.0, 'can': 1.0, 'as': 2.0}
Word element => {'after': 1.0, 'even': 1.0, 'soft': 1.0, 'dry': 1.0, 'and': 1.0, 'very': 1.0, 's': 1.0, 'can': 1.0, 'it': 2.0, 'the': 1.0, 'my': 1.0, 'bought': 1.0, 'wash': 1.0, 'so': 1.0, 'theme': 2.0, 'is': 1.0, 'mouse': 1.0, 'match': 1.0, 'mickey': 1.0, 'i': 1.0, 'nursery': 1.0, 'blanket': 1.0, 'this': 1.0}
Word element => {'part': 1.0, 'tiny': 1.0, 'find': 1.0, 'then': 1.0, 'time': 1.0, 'frustrating': 1.0, 'consuming': 1.0, 'made': 1.0, 'which': 1.0, 'things': 1.0, 'plastic': 1.0, 'in': 1.0, 'came': 1.0, 'it': 2.0, 'to': 4.0, 'toy': 1.0, 'fastened': 1.0, 'four': 2.0, 'have': 2.0, 'squeaks': 1.0, 'my': 1.0, 'the': 12.0, 'grand': 1.0, 'great': 1.0, 'aware': 1.0, 'toys': 3.0, 'wanted': 1.0, 'fingers': 1.0, 'and': 3.0, 'two': 1.0, 'i': 2.0, 'buy': 1.0, 'triangle': 1.0, 'bought': 1.0, 'be': 1.0, '20': 1.0, 'by': 1.0, 'just': 2.0, 'on': 1.0, 'strong': 1.0, 'other': 1.0, 'target': 1.0, 'wiht': 1.0, 'for': 2.0, 'a': 1.0, 'what': 1.0, 'set': 1.0, 'ball': 1.0, 'items': 1.0, 'release': 1.0, 'this': 1.0, 'soft': 1.0, 'many': 4.0, 'is': 2.0, 'different': 1.0, 'dog': 2.0, 'at': 1.0, 'adorable': 1.0, 'colors': 1.0, 'rattles': 1.0, 'if': 1.0, 'you': 2.0, 'search': 1.0, 'jingles': 1.0, 'are': 3.0, 'blanket': 1.0, 'cute': 1.0, 'box': 1.0, 'babies': 1.0, 'that': 1.0}
Word element => {'recommend': 1.0, 'teeth': 1.0, 'getting': 1.0, 'were': 1.0, 'they': 1.0, 'known': 1.0, 'never': 1.0, '2': 1.0, 'have': 1.0, 'wear': 1.0, 'a': 1.0, 'kids': 1.0, 'you': 1.0, 'amber': 1.0, 'highly': 1.0, 'any': 1.0, 'and': 1.0, 'had': 1.0, 'nechlace': 1.0, 'would': 1.0}
Word element => {'time': 1.0, 'good': 1.0, 'daughter': 1.0, 'and': 1.0, 'expected': 1.0, 'i': 1.0, 'than': 1.0, 'strings': 1.0, 'does': 1.0, 'colors': 1.0, 'my': 1.0, 'pulling': 1.0, 'a': 1.0, 'well': 1.0, 'better': 1.0, 'pretty': 1.0, 'worked': 2.0, 'stay': 1.0, 'nice': 1.0, 'inflate': 1.0, 'side': 1.0, 'want': 1.0, 'with': 1.0, 'it': 5.0, 'like': 1.0, 'completely': 1.0, '34': 2.0, 'says': 1.0, 'doesn': 1.0, 'but': 1.0, 'the': 1.0, 't': 1.0, 'had': 1.0, 'to': 1.0, 'still': 1.0}
Word element => {'eacute': 1.0, 'd': 1.0, 'for': 1.0, 'get': 1.0, 'and': 1.0, 'very': 1.0, 'good': 1.0, 'really': 1.0, 'of': 2.0, 'some': 2.0, 'were': 1.0, 'my': 2.0, 'went': 1.0, 'lollipops': 1.0, 'more': 1.0, 'the': 2.0, 'these': 1.0, 'cor': 1.0, 'party': 1.0, 'grandson': 1.0, 'kids': 1.0, 'matched': 1.0, 'even': 1.0, 'back': 1.0, 'to': 1.0}
Word element => {'month': 1.0, '3': 2.0, 'beyond': 1.0, 'well': 1.0, 'preferred': 1.0, 'was': 1.0, 'to': 1.0, 'use': 1.0, 'would': 1.0, 'mark': 1.0, 'on': 1.0, 'them': 1.0, 'pacifiers': 1.0, 'point': 1.0, 'my': 1.0, 'nipple': 1.0, 'these': 1.0, 'the': 4.0, 'and': 1.0, 'they': 1.0, 'gave': 1.0, 'us': 1.0, 'hooked': 1.0, 'in': 1.0, '6': 1.0, 'hospital': 1.0, 'we': 1.0, 'as': 1.0, 'son': 1.0, 'from': 1.0, 'stiffer': 1.0, 'were': 1.0, 'that': 1.0, 'only': 1.0, 'he': 1.0}
Word element => {'place': 1.0, 'hair': 1.0, 'doesn': 1.0, 'she': 1.0, 'over': 1.0, 'on': 1.0, 'leans': 1.0, 'when': 1.0, 'to': 1.0, 'bought': 1.0, 'and': 1.0, 'cute': 1.0, 'soft': 1.0, 'so': 2.0, 'leave': 1.0, 'is': 1.0, 'i': 3.0, 'blanket': 1.0, 'car': 1.0, 'match': 1.0, 'all': 1.0, 'have': 1.0, 't': 1.0, 'the': 5.0, 'my': 2.0, 'dog': 4.0, 'seat': 2.0, 'love': 1.0, 'bed': 1.0, 'for': 2.0, 'in': 1.0, 'use': 1.0, 'with': 1.0, 'this': 2.0, 'it': 2.0}
Word element => {'suspension': 1.0, 'wheels': 1.0, 'large': 1.0, 'the': 1.0, 'are': 1.0, 'children': 1.0, 'roomy': 1.0, 'land': 1.0, 'of': 1.0, 'all': 1.0, 'quality': 1.0, 'cobblestone': 1.0, 'good': 1.0, 'very': 3.0, 'los': 1.0, 'pavers': 1.0, 'empedrados': 1.0, 'para': 1.0, 'creo': 1.0, 'types': 1.0, 'bueno': 1.0, 'espacioso': 1.0, 'terrenos': 2.0, 'que': 1.0, 'ntilde': 1.0, 'uneven': 1.0, 'n': 1.0, 'it': 2.0, 'iacute': 1.0, 'make': 1.0, 'think': 1.0, 'irregulares': 1.0, 'etc': 2.0, 'i': 1.0, 'producto': 1.0, 'terrain': 1.0, 'la': 2.0, 'y': 2.0, 'magn': 1.0, 'fico': 1.0, 'modos': 1.0, 'and': 2.0, 'un': 1.0, 'calidad': 1.0, 'grandecitos': 1.0, 'ni': 1.0, 'os': 1.0, 'for': 1.0, 'product': 1.0, 'es': 1.0, 'van': 1.0, 'c': 1.0, 'oacute': 2.0, 'grandes': 1.0, 'todo': 1.0, 'tipo': 1.0, 'suspensi': 1.0, 'muy': 3.0, 'hacen': 1.0, 'de': 2.0, 'ruedas': 1.0, 'lo': 1.0, 'adoquinados': 1.0, 'a': 1.0, 'confortable': 1.0, 's': 1.0, 'comfortable': 2.0, 'big': 1.0, 'great': 1.0}
Word element => {'of': 1.0, 'having': 1.0, 'without': 1.0, 'one': 1.0, 'little': 1.0, 'my': 1.0, 'eye': 1.0, 'stroller': 1.0, 'an': 1.0, 'keep': 1.0, 'rather': 1.0, 'material': 1.0, 'used': 1.0, 'walk': 1.0, 'window': 1.0, 'upper': 1.0, 'summit': 1.0, 'x3': 1.0, 'on': 2.0, 'is': 2.0, 'front': 1.0, 'black': 1.0, 'well': 1.0, 'about': 1.0, 'fits': 1.0, 'easy': 1.0, 'could': 1.0, 'like': 1.0, 'install': 1.0, 'had': 1.0, 'to': 3.0, 'than': 1.0, 'canopy': 1.0, 'they': 2.0, 'the': 8.0, 'fabric': 1.0, 'thing': 1.0, 'not': 1.0, 'clear': 1.0, 'i': 2.0, 'and': 1.0, 'do': 1.0, 'only': 1.0, 'it': 1.0, 'that': 1.0, 'covered': 1.0}
Word element => {'not': 1.0, 'old': 1.0, 'unless': 1.0, 'so': 1.0, 'enough': 1.0, 'younger': 1.0, 'other': 1.0, 'neck': 1.0, 'doesn': 1.0, 'it': 1.0, 'control': 1.0, 't': 2.0, 'great': 1.0, 'use': 1.0, 'construct': 1.0, 'don': 1.0, 'baby': 1.0, 'has': 1.0, 'good': 2.0, 'is': 1.0, 'for': 1.0, 'than': 1.0, '5': 1.0, 'tilt': 1.0, '4': 1.0, 'months': 1.0}
Word element => {'trail': 1.0, 'and': 1.0, 'sidewalk': 1.0, 'daily': 1.0, 'expected': 1.0, 'get': 1.0, 'on': 1.0, 'with': 1.0, 'what': 1.0, 'exactly': 1.0, 'to': 1.0, 'it': 1.0, 'works': 1.0, 'i': 2.0, 'use': 1.0, 'stroller': 1.0, 'elite': 1.0, 'well': 1.0, 'city': 1.0}
Word element => {'recommend': 1.0, 'highly': 1.0, 'and': 1.0, 'market': 1.0, 'on': 1.0, 'turns': 1.0, 'is': 1.0, 'versatile': 1.0, 'stroller': 3.0, 'than': 1.0, 'jogging': 1.0, 'a': 1.0, 'for': 1.0, 'this': 2.0, 'it': 1.0, 'found': 1.0, 'i': 2.0, 'adaptor': 1.0, 'happy': 1.0, 'so': 1.0, 'ones': 1.0, 'the': 3.0, 'more': 1.0, 'into': 1.0, 'travel': 1.0, 'system': 1.0, 'much': 1.0, 'our': 1.0, 'that': 1.0, 'normal': 1.0}
Word element => {'trunk': 1.0, 'cooper': 1.0, 'in': 1.0, 'fit': 1.0, 'possible': 1.0, 'still': 1.0, 'makes': 1.0, 'which': 1.0, 'out': 1.0, 'chicco': 1.0, 'baby': 1.0, 'our': 1.0, 'pretty': 1.0, 'it': 1.0, 'with': 1.0, 'mini': 1.0, 'a': 1.0, 'well': 1.0, 'to': 2.0, 'easy': 1.0, 'difficult': 1.0, 'seat': 1.0, 'just': 1.0, 'but': 2.0, 'high': 1.0, 'up': 1.0, 'folds': 1.0, 'works': 1.0, 'down': 1.0, 'fine': 1.0, 'sits': 1.0, 'the': 2.0, 'bit': 1.0, 'bracket': 1.0, 'infant': 1.0, 'install': 1.0, 'sticks': 1.0}
Word element => {'price': 1.0, 'think': 1.0, 'properly': 1.0, 'have': 1.0, 'worth': 1.0, 'now': 1.0, 'but': 1.0, 'for': 2.0, 'supposed': 1.0, 'system': 2.0, 'used': 2.0, 'set': 1.0, 'be': 1.0, 'multiple': 1.0, 'word': 1.0, 'go': 1.0, 'a': 4.0, 'we': 1.0, 't': 2.0, 'notice': 1.0, 'is': 3.0, 'x3': 1.0, 'jogger': 1.0, 'husband': 1.0, 'instead': 1.0, '34': 2.0, 'use': 1.0, 'travel': 2.0, 'able': 1.0, 'stroller': 2.0, 'bought': 2.0, 'warning': 1.0, 'when': 1.0, 'that': 3.0, 'easily': 1.0, 'of': 7.0, 'the': 11.0, 'googled': 1.0, 'eventually': 1.0, 'another': 1.0, 'baby': 1.0, 'magic': 1.0, 'strollers': 1.0, 'and': 6.0, 'once': 1.0, 'clicks': 1.0, 'traditional': 1.0, 'chicco': 3.0, 'as': 1.0, 'crazy': 1.0, 'my': 2.0, 'keyfit': 2.0, 'graco': 1.0, 'infant': 1.0, 'car': 4.0, 'mentioned': 1.0, '30': 1.0, 'clunky': 1.0, 'this': 3.0, 'found': 1.0, 'with': 1.0, 'adapter': 4.0, 'brackets': 1.0, 'different': 1.0, 'brands': 2.0, 'seats': 1.0, 'are': 1.0, 'summit': 2.0, 'first': 1.0, 'install': 1.0, 'to': 6.0, 'became': 1.0, 'very': 1.0, 'little': 1.0, 'frustrated': 1.0, 'like': 1.0, 'which': 1.0, 'directions': 3.0, 'wouldn': 1.0, 'installed': 1.0, 'adapters': 1.0, 'click': 1.0, 'seat': 4.0, 'hadn': 1.0, 'in': 3.0, 'originally': 1.0, 'review': 1.0, 'same': 1.0, 'thing': 1.0, 'correct': 1.0, 'i': 6.0, 'involved': 1.0, 'removing': 1.0, 'couple': 1.0, 'from': 1.0, 'compared': 1.0, 'there': 1.0, 'perfectly': 1.0, 'every': 1.0, 'time': 1.0, 'sets': 1.0, 'it': 3.0, 'pricey': 1.0, 'fits': 1.0, 'other': 1.0}
Word element => {'yet': 1.0, 'haven': 1.0, 'there': 1.0, 'stroller': 1.0, 'fold': 1.0, 'have': 1.0, 'unless': 1.0, 'you': 1.0, 'remove': 1.0, 'it': 3.0, 'but': 1.0, 'discovered': 1.0, 't': 1.0, 'we': 1.0, 'a': 1.0, 'city': 1.0, 'baby': 2.0, 'into': 1.0, 'keyfit': 1.0, 'for': 1.0, 'chance': 1.0, 'is': 2.0, 'jogger': 2.0, 'in': 1.0, 'reviews': 1.0, 'reading': 1.0, 'photo': 1.0, 'i': 3.0, 'needed': 1.0, 'after': 1.0, 'store': 1.0, 'chicco': 1.0, 'was': 2.0, 'bar': 1.0, 'had': 1.0, 'this': 1.0, 'perfect': 1.0, '30': 1.0, 'together': 1.0, 'car': 1.0, 'of': 1.0, 'skeptical': 1.0, 'took': 1.0, 'whether': 1.0, 'con': 1.0, 'mini': 1.0, 'my': 1.0, 'way': 1.0, 'adaptor': 3.0, 'entire': 1.0, 'matched': 1.0, 'only': 1.0, 'works': 1.0, 'hubby': 1.0, 'put': 1.0, 'on': 1.0, 'site': 1.0, 'so': 1.0, 'time': 1.0, 'no': 1.0, 'to': 2.0, 'seat': 1.0, 'and': 2.0, 'clicks': 1.0, 'right': 1.0, 'the': 8.0, 'place': 1.0}
Word element => {'mini': 1.0, 'do': 1.0, 'strollers': 1.0, 'seats': 1.0, 'what': 1.0, 'does': 2.0, 'clicking': 1.0, 'it': 6.0, 'this': 1.0, 'up': 1.0, 'of': 3.0, 'like': 1.0, 'secure': 1.0, 'stroller': 2.0, 'adaptor': 4.0, 'on': 3.0, 'the': 6.0, 'without': 1.0, 'graco': 2.0, 'have': 2.0, 'coming': 1.0, 'snugride': 1.0, 'car': 5.0, 'keep': 1.0, 'did': 1.0, 'seat': 4.0, 'not': 4.0, 'i': 4.0, 'well': 1.0, 'a': 1.0, 'from': 1.0, 'work': 1.0, 'but': 1.0, 'can': 2.0, 'delodging': 1.0, 'anything': 2.0, 'so': 1.0, 'walk': 1.0, 'bumps': 1.0, 'use': 1.0, 'citi': 1.0, 'description': 1.0, 'and': 3.0, 'you': 2.0, 'when': 1.0, 'am': 1.0, 'little': 1.0, 'fit': 1.0, 'afraid': 1.0, 'lift': 1.0, 'about': 1.0, 'out': 1.0, 'say': 1.0, 'or': 1.0}
Word element => {'of': 1.0, 'additional': 1.0, 'some': 2.0, 'so': 1.0, 'home': 1.0, 'remember': 1.0, 'came': 1.0, 'they': 2.0, 'thinking': 1.0, 'i': 2.0, 'get': 1.0, 'and': 1.0, 'little': 1.0, 'give': 1.0, 'took': 1.0, 'loved': 1.0, 'would': 1.0, 'ones': 1.0, 'son': 1.0, 'every': 1.0, 'min': 1.0, '10': 1.0, 'obviously': 1.0, 'first': 1.0, 'mind': 1.0, 'with': 1.0, 'this': 2.0, 'it': 3.0, '15': 1.0, 'a': 1.0, 'well': 1.0, 'sleep': 1.0, 'checking': 1.0, 'chance': 1.0, 'works': 1.0, 'does': 1.0, 'peace': 1.0, 'when': 1.0, 'you': 1.0, 'device': 1.0, 'cannot': 1.0, 'my': 2.0, 'depend': 1.0, 'is': 1.0, 'solely': 1.0, 'on': 1.0, 'can': 1.0, 'but': 1.0, 'extra': 1.0}
Word element => {'on': 1.0, 'debating': 1.0, 'please': 1.0, 'with': 1.0, 'actually': 1.0, 'amazing': 1.0, 'again': 1.0, 'could': 1.0, 'his': 2.0, 'onto': 1.0, 'when': 2.0, 'know': 1.0, 'crib': 1.0, 'transition': 1.0, 'size': 1.0, 'is': 3.0, 'at': 1.0, 'no': 1.0, 'rather': 1.0, 'rolled': 2.0, 'but': 1.0, 'false': 2.0, 'adjust': 2.0, 'so': 2.0, 'can': 1.0, 'all': 1.0, 'other': 1.0, 'than': 2.0, 'twice': 1.0, 'blue': 1.0, 'tell': 1.0, 'days': 1.0, 'in': 2.0, 'worth': 1.0, 'air': 2.0, 'breathing': 4.0, 'those': 1.0, 'not': 2.0, 'stop': 1.0, 'baby': 9.0, 'everytime': 1.0, 'you': 2.0, 'able': 2.0, 'night': 2.0, 'me': 3.0, 'my': 9.0, 'being': 1.0, 'because': 2.0, 'that': 3.0, 'while': 1.0, 'safe': 2.0, 'back': 1.0, 'sleep': 2.0, 'bassinet': 1.0, 'to': 9.0, 'as': 2.0, 'for': 3.0, 'where': 1.0, 'product': 2.0, 'was': 6.0, 'had': 1.0, '12': 1.0, 'mat': 2.0, 'knowning': 1.0, 'lets': 1.0, 'have': 5.0, 'hard': 1.0, 'over': 1.0, 'penny': 1.0, 'up': 1.0, 'months': 1.0, 'called': 1.0, 'bought': 1.0, 'and': 9.0, 'perfectly': 1.0, 'there': 1.0, 'give': 1.0, 'soon': 1.0, 'decent': 1.0, 'some': 1.0, 'enjoyed': 1.0, 'before': 1.0, 'service': 1.0, 'if': 2.0, 'every': 2.0, 'one': 1.0, 'stating': 1.0, 'minute': 1.0, 'alarms': 1.0, 'few': 1.0, 'this': 2.0, 'a': 4.0, 'alarm': 3.0, 'going': 1.0, 'then': 1.0, 'we': 1.0, 'doctor': 1.0, 's': 1.0, 'turned': 1.0, 'gasp': 2.0, '6': 1.0, 'love': 3.0, 'he': 2.0, 'stomach': 1.0, 'apnea': 1.0, 'the': 11.0, 'of': 2.0, 'customer': 1.0, 'breaths': 1.0, 'stopped': 2.0, 'him': 1.0, 'it': 12.0, 'nights': 2.0, 'are': 2.0, 'first': 3.0, 'fit': 1.0, 'worrying': 1.0, 'would': 4.0, 'settings': 1.0, 'time': 1.0, 'your': 2.0, 'mom': 1.0, 'came': 1.0, 'home': 2.0, 'also': 2.0, 'i': 15.0, 'slept': 1.0, 'life': 1.0, 'periods': 1.0, 'normal': 1.0, 'choke': 1.0, 'buy': 1.0, 'saved': 1.0, 'gone': 1.0, 'refused': 1.0, 'vibration': 1.0, 'founders': 1.0, 'told': 1.0, 'monitor': 1.0, 'saw': 1.0, 'has': 2.0, 'off': 2.0, '3': 1.0, 'times': 2.0, 'talk': 1.0, 'shallower': 1.0, 'hospital': 1.0, 'three': 1.0, 'since': 1.0, 'alarming': 1.0, 'caused': 1.0, 'continue': 1.0, 'minutes': 1.0, 'sensitivity': 1.0}
Word element => {'completely': 1.0, 'wish': 1.0, 'appreciate': 1.0, 'starts': 1.0, 'louder': 1.0, 'gets': 1.0, 'simultaneously': 1.0, 'attending': 1.0, 'responsible': 1.0, 'negative': 1.0, 'see': 2.0, 'personally': 1.0, 'connect': 1.0, 'yes': 1.0, 'stream': 1.0, 'sleep': 1.0, 'such': 1.0, 'cool': 1.0, 'app': 1.0, 'hesitate': 1.0, 'around': 1.0, 'sometimes': 2.0, 'carrying': 1.0, 'mind': 1.0, 'exclusively': 1.0, 'sound': 2.0, 'switched': 1.0, 'sleeping': 1.0, 'power': 1.0, 'picks': 1.0, 'how': 1.0, 'worry': 1.0, 'battery': 2.0, 'phone': 1.0, 'numerous': 1.0, 'alerting': 1.0, 'texting': 1.0, 'addition': 1.0, 'other': 1.0, 'side': 1.0, 'good': 1.0, 'very': 1.0, 'being': 1.0, 'some': 1.0, 'roll': 1.0, 'when': 4.0, 'a': 8.0, 'complaint': 1.0, 'small': 2.0, 'could': 3.0, 'will': 2.0, 'cry': 1.0, 'don': 3.0, 'still': 2.0, 'love': 1.0, 'safe': 1.0, 'guy': 1.0, 'got': 1.0, 'one': 6.0, 'in': 1.0, 'temperature': 1.0, 'iphone': 3.0, 'bother': 1.0, 'contacted': 1.0, 'things': 1.0, 'night': 2.0, 'you': 3.0, 'speedy': 1.0, 'response': 1.0, 'was': 9.0, 'ability': 1.0, 'swaddled': 1.0, 'these': 1.0, 'noise': 2.0, 'customer': 1.0, 'their': 1.0, 'younger': 1.0, 'mom': 1.0, 'little': 1.0, 'nice': 1.0, 'monitor': 4.0, 'wakes': 1.0, 'breath': 1.0, 'seems': 1.0, 'movement': 1.0, 'our': 3.0, 'biggest': 1.0, 'company': 1.0, 'even': 1.0, 'of': 10.0, 'the': 40.0, 'does': 2.0, 'longer': 1.0, 't': 3.0, 'friends': 1.0, 'logging': 1.0, 'rate': 1.0, 'having': 2.0, 'great': 1.0, 'speaker': 2.0, 'lightweight': 1.0, 'so': 4.0, 'sensitive': 1.0, 'or': 4.0, 'drain': 1.0, 'at': 4.0, 'can': 2.0, 'is': 12.0, 'about': 2.0, 'person': 1.0, 'play': 2.0, 'squirmy': 1.0, 'pack': 1.0, 'fussing': 1.0, 'parent': 6.0, 'much': 3.0, 'off': 1.0, 'enough': 3.0, 'activated': 2.0, 'this': 5.0, 'left': 1.0, 'alarms': 1.0, 'be': 2.0, 'it': 8.0, 'he': 10.0, 'him': 2.0, 'not': 10.0, 'first': 3.0, 'n': 1.0, 'fit': 1.0, 'product': 4.0, 'episodes': 1.0, 'family': 1.0, 'potentially': 1.0, 'right': 1.0, 'to': 18.0, 'bassinet': 1.0, 'music': 2.0, 'his': 1.0, 'diapers': 1.0, 'but': 4.0, 'threatening': 1.0, 'place': 1.0, 'from': 1.0, 'talk': 1.0, 'while': 1.0, 'anywhere': 1.0, 'during': 1.0, 'baby': 5.0, 'part': 1.0, 'though': 1.0, 'mat': 4.0, 'crib': 1.0, 'himself': 2.0, 'features': 2.0, 'just': 1.0, 'constantly': 1.0, 'and': 10.0, 'both': 1.0, 'somewhat': 1.0, 'needs': 1.0, 'traveling': 1.0, 'i': 21.0, 'they': 1.0, 'apps': 1.0, 'etc': 2.0, 'suggested': 1.0, 'miss': 1.0, 'turning': 1.0, 'born': 1.0, 'pick': 3.0, 'service': 1.0, 'lying': 1.0, 'on': 2.0, 'as': 6.0, 'until': 1.0, 'torso': 1.0, 'sideways': 2.0, 'obviously': 1.0, 'older': 1.0, 'all': 3.0, 'sorry': 1.0, 'us': 2.0, 'actually': 2.0, 'log': 1.0, 'up': 5.0, 'breathing': 4.0, 'no': 1.0, 'swaddle': 1.0, 'especially': 1.0, 'thru': 1.0, 'use': 5.0, 'had': 3.0, 'we': 2.0, 'only': 4.0, 'then': 1.0, 'false': 1.0, 'get': 1.0, 'able': 2.0, 'device': 2.0, 'however': 2.0, 'have': 10.0, 'found': 1.0, 'posted': 1.0, 'say': 1.0, 'newborn': 2.0, 'normally': 1.0, 'talking': 1.0, 's': 2.0, 'need': 1.0, 'also': 1.0, 'erratic': 1.0, 'would': 6.0, 'do': 2.0, 'system': 1.0, 'either': 1.0, 'periods': 1.0, 'life': 1.0, 'feeds': 1.0, 'where': 1.0, 'almost': 1.0, 'now': 1.0, 'like': 3.0, 'rather': 1.0, 'holding': 1.0, 'start': 1.0, 'more': 1.0, 'pretty': 1.0, 'any': 3.0, 'rapidly': 1.0, 'normal': 1.0, 'purchase': 1.0, 'for': 6.0, 'long': 1.0, 'per': 1.0, 'md': 1.0, 'me': 2.0, 'room': 1.0, 'are': 1.0, 'issues': 1.0, 'my': 4.0, 'time': 2.0, 'did': 3.0, 'couple': 1.0, 'times': 1.0, 'that': 9.0, 'sleepmat': 3.0, 'because': 1.0, 'perpendicular': 1.0, 'reason': 1.0, 'than': 2.0, 'using': 2.0, 'with': 3.0, 'apnea': 1.0, 'event': 1.0, 'flexibility': 2.0, 'gotten': 1.0, 'has': 1.0, '2': 1.0, 'months': 1.0, 'happen': 1.0, 'unit': 6.0, 'which': 1.0, 'again': 1.0, 'monitoring': 1.0, 'before': 2.0, 'draw': 1.0, 'certain': 1.0, 'want': 1.0, 'day': 1.0, 'beep': 1.0, 'since': 1.0, 'prefer': 1.0}
Word element => {'amazing': 1.0, 'have': 1.0, 'need': 1.0, 'safe': 1.0, 'sure': 1.0, 'to': 2.0, 'are': 1.0, 'detected': 1.0, 'you': 2.0, 'when': 2.0, 'immediately': 1.0, 'will': 1.0, 'breathing': 2.0, 'don': 1.0, 'other': 1.0, 'me': 1.0, 'not': 3.0, '20': 1.0, 'market': 1.0, 'room': 1.0, 'want': 1.0, 'if': 1.0, 'soundly': 1.0, 'everything': 1.0, 'from': 1.0, 'good': 1.0, 'her': 4.0, 'down': 1.0, 'rate': 1.0, 'sec': 1.0, 'which': 1.0, 'like': 2.0, 'know': 1.0, 'brought': 1.0, 'just': 2.0, 'be': 1.0, 'putting': 1.0, 'baby': 2.0, 'night': 1.0, 'this': 5.0, 'nicely': 1.0, 'love': 1.0, 'for': 2.0, 'product': 2.0, 'fits': 1.0, 'my': 1.0, 'in': 2.0, 'having': 1.0, 'daughter': 1.0, 'it': 2.0, 'she': 2.0, 'hospital': 1.0, 'products': 1.0, 'remote': 1.0, 'parent': 1.0, 'off': 1.0, 'pad': 2.0, 'more': 1.0, 'till': 1.0, 'sleeps': 3.0, 'is': 5.0, 'your': 1.0, 'on': 2.0, 'marta': 1.0, 'i': 2.0, '4': 1.0, 'one': 1.0, 'months': 1.0, 'basinet': 1.0, 'nap': 1.0, 'almost': 1.0, 'or': 2.0, 'now': 1.0, 'start': 1.0, 'look': 1.0, 'and': 5.0, 'can': 1.0, 'the': 5.0, 'without': 1.0, 'imagine': 1.0, 'go': 1.0, 't': 2.0, 'a': 3.0, 'we': 1.0, 's': 2.0, 'nice': 1.0, 'new': 1.0, 'alarm': 1.0, 'dinner': 1.0, 'since': 1.0, 'at': 1.0}
Word element => {'item': 1.0, 'costs': 1.0, 'that': 1.0, 'great': 1.0, 'the': 3.0, 'had': 1.0, 'cant': 1.0, 'up': 1.0, 'scam': 1.0, 'even': 1.0, 'happy': 1.0, 'not': 3.0, 'does': 2.0, 'because': 1.0, 'work': 1.0, 'at': 1.0, 'crappy': 1.0, 'this': 2.0, 'with': 1.0, 'it': 2.0, 'product': 2.0, 'to': 4.0, 'all': 1.0, 'on': 1.0, 'live': 1.0, 'has': 1.0, 'well': 1.0, 'going': 1.0, 'a': 2.0, 'see': 1.0, 'get': 1.0, 'refund': 1.0, 'description': 1.0, 'and': 2.0, 'hundred': 1.0, 'i': 1.0, 'open': 1.0, 'dollars': 1.0, 'its': 1.0, 'do': 1.0, 'yourself': 1.0, 'use': 1.0, 'really': 1.0, 'is': 1.0, 'how': 1.0, 'favor': 1.0, 'purchase': 1.0, 'company': 1.0, 'save': 1.0, 'just': 1.0, 'few': 1.0}
Word element => {'quite': 1.0, 'last': 1.0, 'like': 1.0, 'months': 1.0, '6': 1.0, '8211': 1.0, 'used': 1.0, 'has': 1.0, 'baby': 1.0, 'my': 1.0, 'so': 1.0, 'straps': 1.0, 'having': 1.0, 'latched': 1.0, 'snap': 1.0, 'without': 1.0, 'the': 2.0, 'bulky': 1.0, 'great': 1.0, 'outlander': 1.0, 'latch': 1.0, 'mitsubishi': 1.0, 'is': 3.0, '08': 1.0, '3': 1.0, 'on': 3.0, 'system': 1.0, 'fit': 1.0, 'an': 2.0, 'but': 2.0, 'not': 1.0, 'suv': 1.0, 'age': 1.0, 'in': 2.0, 'even': 1.0, 'awesome': 1.0, 'that': 1.0, 'though': 1.0, 'looks': 1.0, 'it': 8.0, 'perfect': 1.0, 'this': 1.0, 'quick': 1.0, 'and': 2.0, 'only': 1.0, 'do': 1.0, 'saves': 1.0, 'a': 2.0, 'lot': 1.0, 'easy': 1.0, 'once': 1.0, 'of': 2.0, 'will': 1.0, 'seems': 1.0, 'sweat': 1.0, 'far': 1.0, 'order': 1.0, 'makes': 1.0, 'move': 1.0, 'while': 1.0, 'from': 2.0, 'car': 2.0, 'tighten': 1.0, 'any': 1.0, 'seat': 2.0, 'to': 5.0, 'all': 1.0, 'have': 1.0, 'yank': 1.0, 'you': 1.0, 'press': 1.0}
Word element => {'very': 1.0, 'closer': 1.0, 'up': 1.0, 'fit': 1.0, 'better': 1.0, 'justice': 1.0, 'comfortable': 1.0, 'love': 2.0, 'this': 2.0, 'it': 5.0, 'perfect': 1.0, 'safe': 1.0, 'stylish': 1.0, 's': 2.0, 'picture': 1.0, 'trips': 1.0, 'long': 1.0, 'even': 1.0, 'does': 1.0, 'reclines': 1.0, 'do': 1.0, 'and': 2.0, 'i': 1.0, 'snug': 1.0, 'car': 2.0, 'andthe': 1.0, 'seat': 2.0, 'not': 1.0, 'looks': 1.0}
Word element => {'follow': 1.0, 'to': 1.0, 'were': 1.0, 'install': 1.0, 'easy': 1.0, 'sentra': 1.0, 'nissan': 1.0, 'my': 1.0, 'the': 1.0, 'durable': 1.0, 'it': 2.0, 'used': 1.0, 'in': 1.0, 'seems': 1.0, 'not': 1.0, 'put': 2.0, 'but': 1.0, 'fits': 1.0, 'have': 1.0, 'extremely': 1.0, 'and': 2.0, 'quite': 1.0, 'well': 1.0, 'colors': 1.0, 'yet': 1.0, 'for': 1.0, 'love': 1.0, 'directions': 1.0}
Word element => {'other': 1.0, 'like': 1.0, 'carrier': 1.0, 'as': 1.0, 'can': 2.0, 'you': 1.0, 's': 1.0, 'super': 1.0, 'absolutely': 1.0, 't': 1.0, 'the': 2.0, 'seats': 1.0, 'take': 1.0, 'amazing': 1.0, 'is': 2.0, 'seat': 1.0, 'of': 1.0, 'flexible': 1.0, 'car': 3.0, 'only': 1.0, 'it': 2.0, 'this': 1.0, 'easy': 1.0, 'to': 1.0, 'and': 2.0, 'get': 1.0, 'in': 1.0, 'out': 1.0, 'portable': 1.0, 'downside': 1.0, 'a': 1.0, 'see': 1.0, 'i': 1.0, 'that': 1.0}
Word element => {'now': 1.0, 'one': 1.0, 'our': 1.0, 'highly': 1.0, 'everything': 1.0, 'grandsons': 1.0, 'a': 1.0, 'have': 1.0, 'this': 1.0, 'offer': 1.0, 'car': 2.0, 'both': 1.0, 'of': 1.0, 'recommend': 1.0, 'seat': 2.0, 'has': 2.0, 'to': 1.0}
Word element => {'place': 1.0, 'of': 1.0, 'out': 1.0, 'slip': 1.0, 'they': 1.0, 'so': 1.0, 'carefully': 1.0, 'are': 1.0, 'make': 1.0, 'you': 1.0, 'positioned': 1.0, 'the': 1.0, 'bulky': 1.0, 'him': 1.0, 'his': 1.0, 'sure': 1.0, 'face': 1.0, 'outgrowing': 1.0, 'baby': 1.0, 'our': 1.0, 'need': 1.0, 'carrier': 1.0, 'it': 1.0, 'this': 2.0, 'not': 1.0, 'seat': 2.0, 'for': 1.0, 'comfortable': 1.0, 'love': 1.0, 'i': 1.0, 'but': 1.0, 'easy': 1.0, 'use': 1.0, 'straps': 1.0, 'still': 1.0, 'was': 1.0, 'to': 3.0, 'needs': 1.0, 'is': 4.0, 'backward': 1.0, 'install': 1.0, 'do': 1.0, 'and': 2.0, 'son': 1.0, 'very': 1.0}
Word element => {'us': 1.0, 'for': 1.0, 'second': 1.0, 'this': 1.0, 'a': 1.0, 'go': 1.0, 'works': 1.0, 'great': 2.0, 'car': 2.0, 'we': 1.0, 'respect': 1.0, 'seat': 2.0, 'grab': 1.0, 'with': 1.0, 'to': 3.0, 'easy': 2.0, 'as': 1.0, 'and': 3.0, 'quality': 1.0, 'bought': 1.0, 'assemble': 1.0}
Word element => {'returned': 1.0, 'double': 1.0, 'trip': 1.0, 'on': 1.0, 'will': 1.0, 'stroller': 2.0, 'go': 1.0, 'and': 2.0, 'a': 1.0, 'taking': 1.0, 'are': 1.0, 'of': 1.0, 'completely': 1.0, 'i': 1.0, 'it': 2.0, 'for': 1.0, 'useless': 1.0, 'is': 1.0, 'made': 1.0, 'the': 2.0, 'snap': 1.0, 'easily': 1.0, 'airport': 1.0, 'lovely': 1.0, 'removed': 1.0, 'our': 2.0, 'terrible': 1.0, 'which': 2.0, 'entire': 1.0, 'cannot': 1.0, 'reason': 1.0, 'we': 1.0, 'umbrella': 1.0, 'be': 2.0, 'travel': 1.0, 'bought': 1.0, 'adapter': 1.0, 'so': 1.0, 'instead': 2.0}
Word element => {'time': 1.0, 'of': 1.0, 'info': 1.0, 'misleading': 1.0, 'and': 2.0, 'newborn': 1.0, 'my': 1.0, 'use': 1.0, 'do': 1.0, 'waste': 1.0, 'expect': 1.0, 'would': 1.0, 'i': 3.0, '600': 1.0, 'a': 3.0, 'disappointment': 1.0, 'what': 3.0, 'work': 1.0, 'will': 1.0, 'cannot': 1.0, 'which': 1.0, 'with': 5.0, 'this': 3.0, 'not': 2.0, 'in': 1.0, 'compatibility': 1.0, 'show': 1.0, 'literature': 1.0, 'summit': 2.0, 'useless': 1.0, 'it': 3.0, 'nor': 1.0, 'that': 1.0, 'box': 3.0, 'compatible': 2.0, 'information': 1.0, 'the': 6.0, 'webpage': 2.0, 'must': 1.0, 'specific': 1.0, 'energy': 1.0, 'if': 1.0, 'being': 1.0, 'be': 1.0, 'baby': 3.0, 'strollers': 2.0, 'neither': 1.0, 'double': 3.0, 'thanks': 1.0, 'am': 1.0, 'you': 1.0, 'stroller': 4.0, 'states': 1.0, 'adaptor': 2.0, '34': 2.0, 'ugh': 1.0, 'there': 1.0, 'car': 1.0, 'supposed': 1.0, 'product': 2.0, 'for': 3.0, 'makes': 1.0, 'your': 1.0, 'on': 1.0, 'think': 1.0, 'jogger': 3.0, 'x3': 2.0, 'more': 2.0, 'is': 2.0, 'to': 1.0, 'seat': 1.0, 'all': 2.0, 'does': 1.0, 'help': 1.0, 'at': 1.0, 'about': 2.0, 'no': 1.0}
Word element => {'to': 1.0, '100': 1.0, 'that': 1.0, 'and': 1.0, 'okay': 1.0, 'not': 3.0, 'the': 1.0, 'amazing': 1.0, 'worth': 1.0, 'its': 2.0, 'baby': 1.0, 'sits': 1.0, 'attach': 1.0, 'really': 1.0, 'easy': 1.0, 'but': 1.0, 'far': 1.0, 'definitely': 1.0, 'out': 1.0}
Word element => {'suffering': 1.0, 'am': 1.0, 'they': 1.0, 'hope': 1.0, 'experience': 1.0, 'highlights': 1.0, 'any': 1.0, 'over': 1.0, 'up': 1.0, 'front': 1.0, 'tilt': 1.0, 'more': 1.0, 'no': 1.0, 'bumps': 2.0, 'talking': 1.0, 'helps': 1.0, 'bounces': 2.0, 'kind': 1.0, 'whole': 1.0, 'wheels': 1.0, 'attaches': 1.0, 'basket': 1.0, 'resting': 1.0, 'frustration': 1.0, 'someone': 1.0, 'otherwise': 1.0, 'perego': 1.0, 'out': 2.0, 'inch': 1.0, 'worst': 1.0, 'tired': 1.0, 'should': 1.0, 'perhaps': 1.0, 'case': 1.0, '4': 1.0, 'much': 2.0, 'trunk': 1.0, 'double': 1.0, 'seats': 1.0, 'just': 2.0, 'traded': 1.0, 'four': 1.0, 'have': 2.0, 'into': 1.0, '3': 1.0, 'now': 2.0, 'gravity': 1.0, 'uneven': 1.0, 'due': 2.0, 'going': 1.0, 'center': 1.0, 'feels': 1.0, 'somewhat': 1.0, 'slopes': 1.0, 'hit': 2.0, 'time': 2.0, 'every': 2.0, 'minivan': 1.0, 'walk': 1.0, '6': 1.0, 'such': 1.0, 'for': 3.0, 'where': 1.0, 'peg': 1.0, 'yr': 1.0, 'live': 1.0, 'my': 6.0, 'it': 10.0, 'higher': 1.0, 'including': 1.0, 'cumbersome': 1.0, 'would': 1.0, 'feet': 1.0, 'i': 11.0, 'without': 1.0, 'works': 1.0, 'days': 1.0, 'are': 4.0, 'those': 1.0, 'ride': 1.0, 'topple': 1.0, 'impossible': 1.0, 'problem': 2.0, 'small': 1.0, 'mall': 1.0, 'a': 7.0, 'fit': 2.0, 't': 1.0, 'go': 1.0, 'regular': 1.0, 'age': 1.0, 'help': 1.0, 'sound': 1.0, 'folks': 1.0, 'doesn': 1.0, 'was': 1.0, 'means': 1.0, 'will': 1.0, 'but': 9.0, 'bump': 1.0, 'suv': 1.0, '2': 2.0, 'like': 5.0, 'very': 1.0, 'cannot': 2.0, 'start': 1.0, 's': 1.0, 'funny': 1.0, 'these': 1.0, 'once': 1.0, 'device': 1.0, 'the': 24.0, 'of': 8.0, 'when': 1.0, 'you': 3.0, 'sure': 1.0, 'and': 5.0, '1': 1.0, 'attach': 1.0, 'forward': 2.0, 'not': 7.0, 'number': 1.0, 'petrified': 1.0, 'old': 3.0, 'adapter': 5.0, 'spot': 1.0, 'kids': 1.0, 'ready': 1.0, 'to': 13.0, 'universal': 1.0, 'leave': 1.0, 'falls': 1.0, 'flat': 1.0, 'really': 1.0, 'or': 1.0, 'need': 1.0, 'stroller': 5.0, 'she': 3.0, 'baby': 3.0, 'has': 1.0, 'be': 2.0, 'ditch': 1.0, 'her': 2.0, 'car': 5.0, 'ease': 1.0, 'does': 2.0, 'that': 1.0, 'easily': 1.0, 'because': 1.0, 'than': 2.0, 'bars': 1.0, 'is': 7.0, 'at': 1.0, 'keep': 1.0, 'spared': 1.0, 'yet': 1.0, 'month': 1.0, 'totally': 1.0, 'sometimes': 1.0, 'grabs': 1.0, 'take': 2.0, 'we': 4.0, 'fine': 2.0, 'then': 1.0, 'want': 1.0, 'handles': 1.0, 'with': 3.0, 'bulk': 1.0, 'there': 2.0, 'perfectly': 1.0, 'this': 5.0, 'sidewalks': 2.0, 'try': 1.0, 'one': 5.0, 'two': 1.0, 'neighborhood': 1.0, 'some': 2.0, 'big': 1.0, 'slope': 2.0, 'near': 1.0, 'on': 5.0, 'hills': 1.0, 'so': 7.0, 'which': 1.0, 'asleep': 1.0, 'side': 2.0, 'an': 2.0, 'other': 1.0, 'in': 9.0, 'seat': 7.0, 'bucket': 1.0, 'm': 3.0}
Word element => {'like': 1.0, 'converting': 1.0, 'double': 1.0, 'you': 2.0, 'a': 2.0, 'mini': 1.0, 'citi': 1.0, 'is': 2.0, 'for': 1.0, 'one': 1.0, 'britax': 3.0, 'do': 1.0, 'and': 2.0, 'will': 1.0, 'stroller': 1.0, 'work': 3.0, 'the': 4.0, 'if': 1.0, 'own': 2.0, 'so': 2.0, 'does': 2.0, 'works': 1.0, 'ok': 1.0, 'car': 3.0, 'need': 1.0, 'which': 1.0, 'not': 3.0, 'seat': 3.0, 'i': 3.0, 'buy': 1.0, 'adapter': 3.0, 'with': 3.0, 'only': 2.0, 'it': 3.0, 'this': 2.0, 'other': 1.0}
Word element => {'ok': 1.0, 'it': 1.0, 'bit': 1.0, 'that': 1.0, 'vehicle': 1.0, 'my': 1.0, 'of': 1.0, 'up': 1.0, 'fold': 1.0, 'into': 1.0, 'off': 1.0, 'twins': 1.0, 'select': 1.0, 'adapter': 1.0, 'to': 3.0, 'have': 4.0, 'take': 1.0, 'securely': 1.0, 'a': 2.0, 'front': 1.0, 'well': 2.0, 'fits': 1.0, 'straps': 1.0, 'fit': 1.0, 'especially': 1.0, 'don': 1.0, 'stroller': 1.0, 'but': 2.0, 'doesn': 1.0, 'in': 1.0, 'and': 3.0, 'hurt': 1.0, 'snaps': 1.0, 'if': 1.0, 'going': 1.0, 'pain': 1.0, 'on': 1.0, 'bumpier': 1.0, 'i': 1.0, 'the': 4.0, 't': 2.0, 'terrain': 1.0, 's': 2.0, 'city': 1.0}
Word element => {'i': 1.0, 'otherwise': 1.0, 'use': 1.0, 'months': 1.0, 'few': 1.0, 'a': 1.0, 'coming': 1.0, 'is': 1.0, 'negative': 1.0, 'minor': 1.0, 'recommend': 1.0, 'easy': 1.0, 'product': 1.0, 'perego': 1.0, 'highly': 1.0, 'baby': 1.0, 'just': 1.0, 'started': 1.0, 'seat': 2.0, 'top': 1.0, 'around': 2.0, 'of': 2.0, 'primo': 1.0, 'foam': 1.0, 'easily': 1.0, 'peg': 1.0, 'our': 1.0, 'off': 1.0, 'holds': 1.0, 'within': 1.0, '30': 2.0, 'car': 2.0, 'only': 1.0, 'it': 1.0, 'this': 2.0, 'makes': 1.0, 'out': 1.0, 'the': 5.0, 'o': 1.0, 'taking': 1.0, 'w': 1.0, 'her': 1.0, 'carting': 1.0, 'so': 1.0}
Word element => {'standard': 1.0, 'than': 1.0, 'stroller': 5.0, 'frame': 1.0, 'perfectly': 1.0, 'and': 2.0, 'were': 1.0, 'their': 1.0, 'to': 2.0, 'our': 1.0, 'empty': 1.0, 'easy': 1.0, 'select': 2.0, 'bought': 1.0, 'onto': 1.0, 'i': 1.0, 'two': 1.0, 'space': 1.0, 'of': 1.0, 'takes': 1.0, 'up': 1.0, 'double': 1.0, 'they': 4.0, 'shopping': 1.0, 'these': 1.0, 'the': 7.0, 'for': 2.0, 'son': 1.0, 'from': 1.0, 'install': 2.0, 'non': 1.0, 'seats': 2.0, 'take': 1.0, 'car': 4.0, 'twins': 2.0, 'when': 1.0, 'example': 1.0, 'less': 1.0, 'work': 1.0, 'can': 1.0, 'just': 1.0, 'pull': 1.0, 'baby': 1.0, 'them': 1.0, 'in': 2.0, 'house': 1.0, 'off': 1.0, 'a': 1.0, 's': 1.0, 'city': 2.0, 'go': 1.0}
Word element => {'top': 1.0, 'but': 1.0, 'terrible': 1.0, 'thing': 1.0, 'one': 1.0, 'today': 1.0, 'not': 1.0, 'lunchtime': 1.0, 'desk': 1.0, 'away': 1.0, 'supervisor': 1.0, 'finally': 1.0, 'shipping': 1.0, 'expedited': 1.0, 'reviewed': 1.0, 'your': 1.0, 'from': 2.0, 'business': 1.0, 'in': 1.0, 'would': 2.0, 'parts': 1.0, 'store': 1.0, 'jogger': 1.0, 'is': 6.0, 'last': 1.0, 'no': 1.0, 'told': 1.0, 'infant': 1.0, 'stroller': 5.0, 'weekends': 1.0, 'have': 3.0, 'could': 3.0, 'we': 1.0, 'replacement': 1.0, 't': 1.0, 'scary': 1.0, 'while': 1.0, 'part': 4.0, 'just': 3.0, 'by': 1.0, 'two': 1.0, 'with': 1.0, 'buying': 1.0, 'it': 3.0, 'assemble': 1.0, 'child': 1.0, 'product': 1.0, 'such': 1.0, 'for': 3.0, 'happened': 1.0, 'able': 1.0, 'you': 2.0, 'someone': 1.0, 'over': 2.0, 'a': 8.0, 'imagine': 1.0, 'attempting': 1.0, 'sloppy': 1.0, 'don': 1.0, 'be': 2.0, 'stepped': 1.0, 'to': 11.0, 'as': 5.0, 'when': 1.0, 'what': 1.0, 'attending': 1.0, 'had': 2.0, 'of': 2.0, 'the': 5.0, 'this': 5.0, 'weekend': 1.0, 'inattentive': 1.0, 'stranded': 2.0, 'made': 1.0, 'cheap': 1.0, 'shoneen': 1.0, 'and': 8.0, 'very': 1.0, 'can': 1.0, 'cheaply': 1.0, 'baby': 1.0, 'i': 7.0, 'well': 1.0, 'broke': 1.0, 'on': 2.0, 'adapter': 1.0, 'named': 1.0, 'an': 1.0, 'ever': 1.0, 'without': 2.0, 'days': 2.0, 'purchase': 2.0, 'me': 1.0, 'my': 1.0, 'off': 1.0, 'b': 1.0, 'unless': 1.0, 'after': 2.0, 'department': 1.0, 'working': 1.0, 'funeral': 1.0, 'are': 1.0, 'out': 1.0, 'about': 1.0, '300': 1.0, 'her': 3.0, 'use': 2.0, 'their': 1.0, 'customer': 2.0, 'sell': 1.0, 'think': 1.0, 'unavailable': 1.0, 'waiting': 1.0, 'call': 2.0, 'pay': 1.0, 'back': 2.0, 'claim': 1.0, 'or': 1.0, 'neck': 1.0, 'response': 1.0, 'email': 1.0, 'support': 1.0, 'because': 1.0, 'that': 5.0, 'was': 3.0, '60': 1.0, 'service': 2.0, 'if': 1.0, 'head': 1.0, 'harm': 1.0, '5': 2.0, '7': 2.0, 'explained': 1.0, 'arrive': 1.0, 'except': 1.0, 'get': 1.0}
Word element => {'nor': 1.0, 'their': 1.0, 'bet': 1.0, 'trust': 1.0, 'best': 1.0, 'seats': 1.0, 'car': 1.0, 'you': 1.0, 's': 2.0, 'brand': 1.0, 'other': 1.0, 'careful': 1.0, 'products': 1.0, 'most': 1.0, 'content': 1.0, 'to': 2.0, 'adapter': 1.0, 'they': 1.0, 'verify': 1.0, 'graco': 2.0, 'can': 1.0, 'click': 1.0, 'classic': 1.0, 'and': 2.0, 'baby': 2.0, 'amazon': 1.0, 'is': 1.0, 'confirm': 2.0, 'call': 2.0, 'it': 2.0, 'this': 1.0, 'only': 1.0, 'with': 4.0, 'saying': 1.0, 'jogger': 2.0, 'connect': 2.0, 't': 1.0, 'the': 1.0, 'works': 2.0, 'does': 1.0, 'not': 1.0, 'will': 1.0, 'work': 1.0, 'be': 1.0, 'despite': 1.0, 'website': 2.0}
Word element => {'infant': 1.0, 'double': 1.0, 'into': 1.0, 'and': 2.0, 'expensive': 1.0, 'wasn': 1.0, 'wish': 1.0, 'an': 1.0, 'all': 1.0, 'as': 1.0, 'second': 1.0, 'still': 1.0, 'on': 4.0, 'months': 1.0, 'for': 3.0, 't': 1.0, 'fit': 1.0, '3': 1.0, 'supposed': 1.0, 'using': 1.0, 'bit': 1.0, 'been': 1.0, 'that': 1.0, 'little': 1.0, 'read': 1.0, '30': 1.0, 'based': 1.0, 'perfect': 2.0, 'since': 1.0, 'a': 6.0, 'city': 2.0, 'use': 3.0, 'secure': 1.0, 'seems': 1.0, 'also': 1.0, 'but': 3.0, 'so': 3.0, 'can': 3.0, '2': 1.0, 'wiggle': 1.0, 'days': 1.0, 'works': 1.0, 'much': 1.0, 'was': 2.0, 'chicco': 1.0, 'now': 1.0, 'attached': 3.0, 'newborn': 1.0, 'out': 1.0, 've': 1.0, 'position': 1.0, 'seat': 3.0, 'in': 3.0, 'inclined': 1.0, 'you': 1.0, 'when': 3.0, 'keyfit': 2.0, 'my': 6.0, 'select': 2.0, 'with': 6.0, 'it': 8.0, 'the': 17.0, 'great': 1.0, 'job': 1.0, 'to': 3.0, 'pretty': 1.0, 'pulled': 1.0, 'i': 6.0, 'clicks': 1.0, 'too': 1.0, 'carseat': 5.0, 'turns': 1.0, 'securely': 1.0, 'around': 1.0, 'toddler': 1.0, 'year': 1.0, 'old': 2.0, 'lower': 2.0, 'son': 2.0, 'canopy': 1.0, 'console': 1.0, 'does': 2.0, 'stroller': 2.0, 'is': 5.0, 'handle': 1.0, 'way': 1.0, 'bought': 1.0, 'adaptor': 1.0, 'reviews': 1.0, 'about': 1.0, 'being': 1.0, 'line': 1.0, 'parent': 1.0, 'better': 1.0, 'ground': 1.0, 'be': 1.0, 'parallel': 1.0, 'incline': 1.0, 'car': 1.0, 'some': 1.0, 'never': 1.0, 'had': 1.0, 'though': 1.0, 'problem': 1.0, 'even': 1.0, 'far': 1.0, 'he': 1.0, 'just': 1.0, 'this': 3.0, 'few': 1.0}
Word element => {'anyway': 1.0, 'need': 1.0, 'have': 1.0, 'already': 1.0, 'feels': 1.0, 'll': 1.0, 'bottom': 1.0, 'bucket': 1.0, 'little': 1.0, 'itself': 1.0, 'top': 1.0, 'and': 2.0, 'incline': 1.0, 'easier': 1.0, 'save': 1.0, 'forward': 1.0, 'tip': 1.0, 'it': 6.0, 'with': 1.0, 'frame': 1.0, 'after': 1.0, 'base': 1.0, 'supposed': 1.0, 'carseat': 1.0, 'does': 1.0, 'would': 1.0, 'car': 5.0, 'keyfit': 1.0, 'found': 1.0, 'this': 2.0, '30': 1.0, 'platform': 1.0, 'hold': 1.0, 'like': 1.0, 'which': 1.0, 'since': 1.0, 'pointless': 1.0, 'more': 1.0, 'is': 1.0, 'really': 1.0, 'the': 12.0, 'kind': 1.0, 'to': 3.0, 'seat': 8.0, 'horizontally': 1.0, 'just': 2.0, 'of': 2.0, 'onto': 1.0, '34': 4.0, 'i': 1.0, 'thought': 1.0, 'that': 1.0, 'money': 1.0, 'can': 2.0, 'but': 1.0, 'item': 1.0, 'secure': 3.0, 'chicco': 1.0, 'doesn': 1.0, 'no': 1.0, 'much': 2.0, 'creates': 2.0, 'we': 3.0, 't': 1.0, 'a': 2.0, 'snap': 1.0, 'balance': 1.0, 'then': 2.0, 'put': 1.0, 'your': 1.0, 'on': 2.0, 'you': 1.0, 'are': 1.0, 'strap': 1.0, 'still': 1.0}
Word element => {'stroller': 1.0, 'see': 1.0, 'honestly': 1.0, 'flimsy': 1.0, 'does': 1.0, 'find': 1.0, 'don': 2.0, 'fine': 2.0, 'just': 2.0, 'useless': 1.0, 'it': 3.0, 'itself': 1.0, 'regarding': 1.0, 'now': 1.0, 'not': 1.0, 'sure': 1.0, 'available': 1.0, 'luckily': 1.0, 'i': 6.0, 'thing': 1.0, 'attachment': 2.0, 'needed': 1.0, 'adapters': 1.0, 'purpose': 1.0, 'car': 3.0, 'that': 2.0, 't': 2.0, 'a': 1.0, 'specific': 1.0, 'different': 1.0, 'before': 1.0, '5': 1.0, 'work': 1.0, 'money': 1.0, 'alone': 1.0, 'found': 1.0, 'this': 3.0, 'cosi': 2.0, 'seemed': 1.0, '1': 1.0, 'like': 2.0, 'belt': 1.0, 'was': 1.0, 'adapter': 4.0, 'all': 1.0, 'to': 2.0, 'seat': 4.0, 'waste': 1.0, 'of': 1.0, 'has': 1.0, 'the': 12.0, 'product': 1.0, 'for': 4.0, 'one': 1.0, 'purchasing': 1.0, 'be': 1.0, 'holds': 1.0, 'is': 2.0, 'little': 1.0, 'single': 2.0, 'and': 3.0, 'soon': 1.0, 'released': 1.0, 'so': 2.0, 'way': 1.0, 'returned': 1.0, 'works': 1.0, 'its': 1.0, 'do': 1.0, 'maxi': 2.0, 'considering': 1.0, 'what': 1.0, 'purchased': 1.0, 'same': 1.0, 'if': 1.0, 'you': 1.0, 'your': 2.0, 'make': 1.0}
Word element => {'pay': 1.0, 'i': 1.0, 'slow': 1.0, 'and': 2.0, 'works': 1.0, 'expensive': 1.0, 'charger': 1.0, 'country': 1.0, 'fine': 1.0, 'usb': 1.0, 'mp3': 1.0, 'seller': 1.0, 'read': 1.0, 'card': 2.0, 'sim': 1.0, 'quickly': 1.0, 'no': 4.0, 'player': 1.0, 'too': 3.0, 'much': 1.0, 'headphones': 1.0, 'currier': 1.0, 'bad': 1.0, 'im': 1.0, 'not': 1.0, 'only': 1.0, 'with': 1.0, 'this': 1.0, 'the': 2.0, 'happy': 1.0, 'my': 1.0, 'anyway': 1.0, 'are': 1.0, 'in': 1.0}
Word element => {'away': 1.0, 'their': 1.0, 'stay': 1.0, 'stolen': 1.0, 'immediately': 1.0, 've': 1.0, 'down': 1.0, 'shut': 1.0, 'would': 1.0, 'i': 1.0, 'to': 4.0, 'into': 1.0, 'that': 1.0, 'total': 1.0, 'no': 2.0, 'unidentifiable': 1.0, 'different': 1.0, 'design': 1.0, 'wrote': 1.0, 'not': 2.0, 'will': 1.0, 'but': 1.0, 'elderly': 1.0, 'it': 7.0, 'us': 1.0, 'card': 5.0, 'a': 6.0, 's': 7.0, 'perfectly': 1.0, 'give': 1.0, 'there': 2.0, 'finds': 1.0, 'hand': 1.0, 'like': 1.0, 'your': 2.0, 'on': 2.0, 'bother': 1.0, 'as': 2.0, 'falls': 1.0, 'none': 1.0, 'hint': 1.0, 'this': 2.0, 'deal': 1.0, 'get': 2.0, 'kind': 1.0, 'considering': 1.0, 'such': 1.0, 'for': 2.0, 't': 3.0, 'fit': 1.0, 'products': 1.0, 'product': 1.0, 'made': 1.0, 'even': 1.0, 'm': 1.0, 'in': 1.0, 'useless': 1.0, 'surprisingly': 1.0, 'apart': 1.0, 'don': 1.0, 'apple': 4.0, 'making': 1.0, 'cons': 1.0, 'sure': 1.0, 'return': 1.0, 'slot': 4.0, 'from': 1.0, 'labeled': 1.0, 'hard': 1.0, 'why': 1.0, 'shoddy': 1.0, 'money': 1.0, 'purchasing': 1.0, 'instructions': 1.0, 'use': 1.0, 'was': 1.0, 'here': 1.0, 'construction': 1.0, 'figure': 1.0, 'the': 5.0, 'of': 2.0, 'so': 3.0, 'company': 1.0, 'simply': 1.0, 'you': 2.0, 'unless': 1.0, 'what': 2.0, 'when': 2.0, 're': 2.0, 'own': 1.0, 'all': 1.0, 'an': 1.0, 'at': 1.0, 'look': 1.0, 'tell': 1.0, 'difference': 1.0, 'real': 1.0, 'exactly': 1.0, 'waste': 1.0, 'know': 1.0, 'familiar': 1.0, 'with': 1.0, 'microsd': 4.0, 'children': 1.0, 'may': 1.0, 'pros': 1.0, 'interpreter': 1.0, 'couldn': 1.0, 'chinese': 1.0, 'out': 1.0, 'wasn': 1.0, 'they': 2.0, '34': 2.0}
Word element => {'there': 1.0, 'to': 1.0, 'going': 1.0, 'parents': 1.0, 'beautiful': 1.0, 'we': 1.0, 'but': 1.0, 'haven': 1.0, 'it': 1.0, 'love': 1.0, 'absolutely': 1.0, 'daughter': 1.0, 'for': 1.0, 'had': 1.0, 'baby': 1.0, 'are': 1.0, 'shower': 1.0, 'the': 1.0, 'yet': 1.0, 't': 1.0, 'this': 1.0}
Word element => {'today': 1.0, 'way': 1.0, 'is': 1.0, 'girl': 1.0, 'baby': 1.0, 'for': 1.0, 'love': 1.0, 'on': 3.0, 'we': 2.0, 'fit': 1.0, 'cribs': 1.0, 'but': 2.0, 'doesn': 1.0, 'a': 1.0, 'nice': 1.0, 'it': 3.0, 'that': 1.0, 'our': 1.0, 'were': 1.0, 'very': 1.0, 'all': 1.0, 'able': 1.0, 'to': 3.0, 'her': 1.0, 'buttons': 1.0, 'ties': 1.0, 'still': 1.0, 'sow': 1.0, 'few': 1.0, 'snap': 1.0, 't': 1.0, 'the': 1.0, 'connect': 1.0}
Word element => {'room': 1.0, 'daughters': 1.0, 'to': 1.0, 'addition': 1.0, 'well': 1.0, 'this': 1.0, 'was': 2.0, 'a': 1.0, 'my': 1.0, 'made': 1.0, 'the': 1.0, 'great': 2.0, 'very': 1.0, 'and': 1.0, 'set': 1.0, 'for': 1.0, 'price': 1.0, 'arrived': 1.0, 'quickly': 1.0}
Word element => {'decoration': 1.0, 'i': 1.0, 'warm': 1.0, 'her': 1.0, 'keep': 1.0, 'to': 1.0, 'that': 1.0, 'be': 2.0, 'material': 1.0, 'it': 2.0, 'shiny': 1.0, 'princess': 1.0, 'a': 1.0, 'and': 2.0, 'will': 1.0, 'quality': 1.0, 'your': 1.0, 'little': 1.0, 'crib': 1.0, 'perfect': 1.0, 'arrived': 1.0, 'fits': 1.0, 'as': 1.0, 'very': 3.0, 'adorable': 1.0, 'quickly': 1.0, 'snugly': 1.0, 'using': 2.0, 'for': 1.0, 'bed': 1.0, 'won': 1.0, 'on': 1.0, 'is': 3.0, 't': 1.0, 'great': 1.0, 'the': 3.0, 'skirt': 1.0, 'cute': 1.0, 'slick': 1.0, 'blanket': 1.0}
Word element => {'looks': 1.0, 'it': 1.0, 'this': 1.0, 'feels': 1.0, 'is': 1.0, 'the': 1.0, 'little': 1.0, 'beautiful': 1.0, 'set': 1.0, 'stunning': 1.0, 'princesses': 1.0, 'lovely': 1.0, 'most': 1.0, 'for': 1.0, 'and': 1.0, 'any': 1.0, 'nursery': 1.0}
Word element => {'great': 1.0, 'and': 1.0, 'perfect': 1.0, 'be': 1.0, 'colors': 1.0, 'feels': 1.0, 'enough': 1.0, 'set': 1.0, 'simple': 1.0, 'entertained': 1.0, 'beautiful': 1.0, 'very': 1.0, 'not': 1.0, 'a': 1.0, 'is': 1.0, 'loud': 1.0, 'this': 1.0, 'to': 2.0, 'colorful': 1.0, 'grandson': 1.0, 'but': 1.0, 'bedding': 1.0, 'fits': 1.0, 'for': 1.0, 'my': 1.0, 'w': 1.0, 'sheets': 1.0}
Word element => {'worth': 1.0, 'a': 1.0, 'was': 1.0, 'adorable': 1.0, 'sticking': 1.0, 'pretty': 1.0, 'absolutely': 1.0, 'great': 1.0, 'it': 5.0, 's': 2.0, 'i': 1.0, 'so': 1.0, 'price': 1.0, 'cute': 1.0, 'bought': 1.0, 'nephews': 1.0, 'my': 1.0, 'and': 2.0, 'for': 1.0, 'room': 1.0}
Word element => {'no': 1.0, 'about': 2.0, 'whole': 1.0, 'milk': 1.0, 'and': 3.0, 's': 1.0, 'gets': 1.0, 'if': 2.0, 'take': 2.0, 'four': 1.0, 'way': 1.0, 'apart': 1.0, 'assemble': 1.0, 'for': 1.0, 'its': 1.0, 'much': 2.0, 'only': 1.0, 'to': 6.0, 'as': 4.0, 'previous': 2.0, 'bothered': 1.0, 'in': 1.0, 'pieces': 1.0, 'is': 12.0, 'very': 3.0, 'crib': 1.0, 'items': 1.0, 'it': 9.0, 'nor': 1.0, 'felt': 2.0, 'this': 3.0, 'intend': 1.0, 'soft': 1.0, 'inside': 1.0, 'purchased': 1.0, 'too': 1.0, 'one': 4.0, 'liked': 1.0, 'you': 2.0, 'a': 2.0, 'stuffing': 2.0, 'my': 3.0, 'me': 1.0, 'not': 2.0, 'something': 1.0, 'layer': 3.0, 'fall': 1.0, 'that': 3.0, 'i': 4.0, 'the': 16.0, 'of': 3.0, 'always': 1.0, 'son': 1.0, 'returned': 1.0, 'return': 1.0, 'little': 1.0, 'nice': 1.0, 'itchy': 1.0, 'any': 1.0, 'probably': 1.0, 'idea': 1.0, 'feel': 1.0, 'great': 1.0, 'easy': 1.0, 'however': 4.0, 'come': 1.0, 'made': 1.0, 'prefer': 1.0, 'feels': 1.0, 'cheap': 2.0, 'like': 2.0, 'built': 1.0, 'be': 3.0, 'cotton': 1.0, 'have': 1.0, 'item': 1.0, 'off': 3.0, 'seems': 1.0, 'could': 1.0, 'disassemble': 1.0, 'will': 1.0, 'material': 2.0, 'through': 1.0, 'work': 1.0, 'concept': 1.0, 'top': 2.0, 'holding': 1.0, 'piece': 1.0, 'together': 1.0, 'looking': 1.0, 'reason': 1.0, 'can': 2.0, 'so': 1.0, 'time': 1.0, '100': 1.0, 'bumper': 5.0, 'need': 1.0, 'or': 1.0, 'out': 1.0}
Word element => {'buccaneer': 1.0, 'little': 1.0, 'cotton': 1.0, 'that': 1.0, 'our': 1.0, 'whale': 1.0, 'baby': 1.0, 'incredibly': 1.0, 'the': 1.0, 'pirate': 2.0, 'includes': 1.0, 'set': 2.0, 'piece': 1.0, 'comforter': 2.0, 'an': 3.0, 'has': 1.0, 'and': 5.0, 'ruffle': 1.0, 'smiling': 1.0, 'for': 2.0, 'new': 1.0, '3': 1.0, 'a': 8.0, 'we': 1.0, 'theme': 1.0, 'chose': 1.0, 'cute': 1.0, 'great': 1.0, '55': 1.0, 'nautical': 1.0, 'nojo': 1.0, 'crib': 1.0, 'sheet': 1.0, 'price': 1.0, 'gem': 1.0, 'at': 1.0, 'adorable': 1.0, 'washable': 1.0, 'dust': 1.0, 'monkey': 1.0, 'is': 2.0, 'awesome': 1.0, 'features': 1.0, 'real': 1.0, 'ship': 1.0, 'cartoon': 1.0, 'perfect': 1.0, 'soft': 1.0, 'this': 1.0, 'durable': 1.0, 'machine': 1.0}
Word element => {'after': 1.0, 'clown': 1.0, 'did': 1.0, 'well': 1.0, 'on': 1.0, 'inside': 1.0, 'were': 1.0, 'if': 1.0, 'thought': 1.0, 'photo': 2.0, 'from': 1.0, 'be': 1.0, 'covered': 1.0, 'based': 1.0, 'this': 2.0, 'and': 2.0, 'is': 2.0, 'it': 4.0, 'looks': 1.0, 'there': 1.0, 'impossible': 1.0, 'course': 1.0, 'an': 1.0, 'a': 6.0, 'collapses': 1.0, 'invisible': 1.0, 'flunk': 1.0, 'since': 1.0, '34': 2.0, 'imagine': 1.0, 'of': 1.0, 'matching': 1.0, 'attached': 1.0, 'white': 1.0, 'with': 2.0, 'red': 1.0, 'the': 4.0, 'all': 1.0, 'college': 1.0, 'as': 1.0, 'to': 2.0, 'would': 4.0, 'saggy': 1.0, 'wire': 1.0, 'oh': 1.0, 'dog': 2.0, 'just': 1.0, 'wrong': 1.0, 'not': 2.0, 'blue': 1.0, 'collar': 1.0, 'harness': 6.0, 'empty': 1.0, 'much': 1.0, 'knew': 1.0, 'some': 1.0, 'look': 1.0, 'reinforcement': 1.0, 'leash': 1.0, 'so': 1.0, 'floppy': 1.0, 'sag': 1.0, 'have': 1.0, 'worked': 1.0, 'better': 1.0, 'flexible': 1.0, 'than': 1.0, 'braiding': 1.0, 'i': 3.0}
Word element => {'transport': 1.0, 'to': 1.0, 'time': 1.0, 'short': 1.0, 'playing': 1.0, 'fast': 1.0, 'bed': 1.0, 'after': 1.0, 'visiting': 1.0, 'paced': 1.0, 'between': 1.0, 'easy': 1.0, 'while': 1.0, 'side': 1.0, 'waiting': 1.0, 'grandkids': 1.0, 'loved': 1.0, 'this': 1.0, 'trips': 1.0, 'before': 2.0, 'dinner': 2.0}
Word element => {'hurting': 1.0, 'used': 1.0, 'even': 1.0, 'was': 1.0, 'that': 2.0, 'thought': 1.0, 'be': 1.0, 'one': 1.0, 'i': 5.0, 'step': 2.0, 'toddler': 1.0, 'ordered': 1.0, 'can': 2.0, 'it': 6.0, 'this': 1.0, 'maintain': 1.0, 'direction': 1.0, 't': 3.0, 'could': 1.0, 'easily': 2.0, 'available': 1.0, 'remember': 1.0, 'because': 1.0, 'won': 1.0, 'similar': 1.0, 'and': 3.0, 'place': 1.0, 'shorter': 1.0, 'up': 1.0, 'over': 2.0, 'anyway': 2.0, 'is': 1.0, 'in': 2.0, 'lopsided': 1.0, 'so': 1.0, 'pressure': 2.0, 'to': 3.0, 'any': 2.0, 'enough': 1.0, 'strong': 1.0, 'on': 1.0, 'put': 1.0, 'would': 1.0, 'not': 1.0, 'stay': 1.0, 'give': 1.0, 'way': 1.0, 'much': 1.0, 'end': 1.0}
Word element => {'its': 1.0, 'every': 1.0, 'hero': 1.0, 'not': 1.0, 'because': 1.0, 'just': 1.0, 'day': 1.0, 'son': 1.0, 'plays': 1.0, 'ever': 1.0, 'makes': 1.0, 'grand': 1.0, 'my': 1.0, 'one': 2.0, 'or': 2.0, 'super': 1.0, 'this': 1.0, 'with': 1.0, 'he': 2.0, 'up': 1.0, 'can': 1.0, 'be': 1.0, 'batman': 1.0, 'how': 1.0}
Word element => {'my': 1.0, 'good': 1.0, 'really': 1.0, 'smells': 1.0, 'old': 1.0, 'kind': 1.0, 'month': 1.0, 'since': 1.0, 'and': 2.0, 'any': 1.0, 'friends': 1.0, 'birth': 1.0, 'all': 2.0, 'natural': 1.0, 'on': 1.0, 'it': 2.0, 'this': 1.0, 'love': 1.0, 'using': 1.0, 'been': 1.0, 'recommend': 1.0, 'nine': 1.0, 'she': 1.0, 's': 2.0, 'never': 1.0, 'to': 1.0, 'had': 1.0, 'of': 1.0, 'rash': 1.0, 'our': 1.0, 'that': 1.0}
Word element => {'moisturize': 1.0, 'protect': 1.0, 'to': 1.0, 'ever': 1.0, 'at': 1.0, 'this': 1.0, 'use': 1.0, 'great': 1.0, 'nearly': 1.0, 'my': 1.0, 'baby': 1.0, 'change': 1.0, 'and': 1.0, 'diaper': 1.0, 'for': 1.0, 'has': 1.0, 'sensitive': 1.0, 'soothe': 1.0, 'skin': 1.0, 'who': 1.0, 'food': 1.0, 'we': 1.0, 'allergies': 1.0}
Word element => {'recommend': 1.0, 'laden': 1.0, 'chemical': 1.0, 'tree': 1.0, 'kinda': 2.0, 'best': 1.0, 'that': 1.0, 'tea': 1.0, 'gross': 2.0, 'definitely': 1.0, 'smells': 1.0, 'brands': 1.0, 'works': 1.0, 'like': 1.0, 'around': 1.0, 'really': 1.0, 'commercial': 1.0, 'i': 1.0, 'cream': 1.0, 'and': 2.0, 'butt': 1.0, 'hate': 1.0, 'those': 1.0, 'smell': 1.0, 'than': 1.0, 'but': 1.0, 'amazingly': 1.0, 'much': 1.0, 'it': 2.0, 'faster': 1.0}
Word element => {'buy': 1.0, 'ones': 1.0, 'will': 1.0, 'so': 1.0, 'that': 2.0, 'been': 1.0, 'is': 1.0, 'there': 1.0, 'if': 1.0, 'half': 1.0, 'for': 1.0, 'once': 1.0, 'impressed': 1.0, 'washed': 1.0, 'have': 2.0, 'he': 2.0, 'warmer': 1.0, 'week': 1.0, 'thicker': 1.0, 'a': 4.0, 'fraying': 1.0, 'available': 1.0, 'luxe': 2.0, 'i': 5.0, 'by': 1.0, 'just': 2.0, 'not': 2.0, 'the': 5.0, 'these': 3.0, 'no': 1.0, 'bulky': 1.0, 'are': 5.0, 'my': 1.0, 'and': 6.0, 'than': 1.0, 'standard': 1.0, 'still': 1.0, 'son': 1.0, 'when': 1.0, 'giraffe': 2.0, 'little': 2.0, 'softest': 1.0, 'both': 1.0, 'year': 1.0, 'his': 1.0, 'versions': 1.0, 'uses': 1.0, 'toddler': 1.0, 'blankets': 5.0, 'but': 1.0, 'condition': 1.0, 'they': 5.0, 'was': 1.0, 'now': 1.0, 'least': 1.0, 'as': 2.0, 'to': 1.0, 'only': 1.0, 'tiny': 1.0, 'would': 1.0, 'snuggle': 1.0, 'in': 3.0, 'soft': 1.0, 'perfect': 2.0, 'softer': 1.0, 'them': 1.0, 'crib': 1.0, 'size': 1.0, 'cover': 1.0, 'him': 2.0, 'be': 2.0, 'at': 1.0, 'adore': 1.0, 'overly': 1.0}
Word element => {'wardrobe': 1.0, 'kids': 1.0, 'growing': 1.0, 'absolutely': 1.0, 'perfectly': 1.0, 'and': 2.0, 'any': 1.0, 'work': 1.0, 'gizmos': 1.0, 'great': 1.0, 'these': 2.0, 'they': 1.0, 'look': 1.0, 'love': 1.0, 'for': 1.0, 'with': 1.0, 'dress': 1.0, 'pants': 1.0, 'jeans': 1.0, 'khakis': 1.0, 'well': 1.0, 'a': 1.0, 'are': 1.0, 'as': 2.0, 'must': 1.0, 'have': 1.0}
Word element => {'in': 1.0, 'are': 1.0, 'small': 1.0, 'wear': 1.0, 'previously': 1.0, 'for': 1.0, 'toddler': 1.0, 'waist': 2.0, 'big': 1.0, 'a': 1.0, 'with': 1.0, 'the': 1.0, 'great': 1.0, 'these': 1.0, 'was': 1.0, 'to': 1.0, 'able': 1.0, 'all': 1.0, 'her': 1.0, 'my': 1.0, 'lo': 1.0, 'pants': 1.0, 'were': 1.0, 'that': 1.0, 'too': 1.0}
Word element => {'decision': 1.0, 'buying': 1.0, 'helpful': 1.0, 'videos': 1.0, 'details': 1.0, 'room': 1.0, 'multiple': 1.0, 'fit': 1.0, 'easy': 1.0, 'striking': 1.0, 'they': 7.0, 'information': 1.0, 'wondering': 1.0, 'another': 2.0, 'read': 1.0, 'felt': 1.0, 'navigate': 1.0, 'helps': 1.0, 'lever': 1.0, 'white': 1.0, 'little': 4.0, 'activated': 1.0, 'quite': 1.0, 'what': 3.0, 'year': 2.0, 'stroller': 9.0, 'front': 2.0, 'uneven': 1.0, 'want': 3.0, 'half': 1.0, 'steps': 1.0, 'breaking': 1.0, 'stuck': 2.0, 'any': 1.0, 'pretty': 1.0, 'really': 3.0, 'this': 3.0, 'cracks': 1.0, 'accidentally': 1.0, 'likely': 1.0, 'service': 5.0, 'brands': 2.0, 'old': 1.0, 'different': 1.0, 'not': 11.0, 'lots': 1.0, 'anyways': 1.0, 'used': 2.0, 'had': 4.0, 'thing': 1.0, 'positions': 2.0, 'unsafe': 1.0, 'comes': 1.0, 'seemed': 1.0, 'expect': 1.0, 'hands': 1.0, 'umbrella': 4.0, 'reviewer': 1.0, 'super': 5.0, 'still': 2.0, 'don': 4.0, 'didn': 3.0, 'bit': 1.0, 'than': 2.0, 'durable': 2.0, 'could': 2.0, 'model': 2.0, 'top': 1.0, 'net': 2.0, 'folds': 2.0, 'rain': 3.0, 'system': 3.0, 'either': 3.0, 'do': 2.0, 'appreciated': 1.0, 'or': 7.0, 'have': 9.0, 'found': 1.0, 'adapters': 1.0, 'carry': 1.0, 'seats': 1.0, 'needed': 3.0, 'both': 1.0, 'son': 1.0, 'work': 1.0, 'does': 4.0, 'up': 3.0, 'compares': 1.0, 'less': 1.0, 'as': 6.0, 'seamlessly': 1.0, 'only': 2.0, 'like': 8.0, 'solution': 1.0, 'speak': 1.0, 'use': 5.0, 'especially': 1.0, 'parasol': 1.0, 'smaller': 3.0, 'hooks': 1.0, 'apartment': 2.0, 'category': 2.0, 'protection': 1.0, 'transportation': 1.0, 'cover': 2.0, 'will': 2.0, 'truly': 1.0, 'lightweight': 3.0, 'included': 1.0, 'can': 8.0, 'is': 15.0, 'compact': 1.0, 'lock': 2.0, 'dedication': 1.0, 'getting': 1.0, 'separately': 1.0, 'collapse': 2.0, 'big': 2.0, 'two': 4.0, 'on': 11.0, 'city': 5.0, 'travel': 1.0, 'a': 32.0, 'meeting': 1.0, 'over': 2.0, 'bag': 1.0, 'we': 8.0, 'm': 2.0, 'ever': 2.0, 'snug': 1.0, 'doesn': 2.0, 'beat': 1.0, 'repels': 1.0, 'my': 5.0, 'friends': 1.0, 'public': 1.0, 'also': 4.0, 'side': 1.0, 'urban': 1.0, 'll': 1.0, 'did': 1.0, '45': 1.0, 'someone': 2.0, 'news': 1.0, 'would': 2.0, 've': 6.0, 'something': 8.0, 'randomly': 1.0, 'price': 1.0, 'just': 5.0, 'bonus': 1.0, 'takes': 1.0, 'supposed': 1.0, 'calls': 1.0, 'be': 5.0, 'it': 31.0, 'shopped': 1.0, 'sold': 1.0, 'between': 1.0, 'i': 34.0, 'zip': 1.0, 'well': 3.0, 'wants': 1.0, 'gotta': 1.0, 'been': 5.0, 'went': 1.0, 'site': 1.0, 'that': 22.0, 'about': 6.0, 'driving': 1.0, 'seat': 6.0, 'push': 1.0, 'warranty': 2.0, 'but': 9.0, 'right': 1.0, 'live': 1.0, 'changing': 1.0, 'research': 1.0, 'car': 3.0, 'area': 1.0, 'often': 1.0, 'needs': 3.0, 'size': 5.0, 'premium': 2.0, 'all': 2.0, 'basket': 1.0, 'whole': 1.0, 'other': 3.0, 'ton': 3.0, 'strollers': 5.0, 'an': 3.0, 'years': 2.0, 'our': 5.0, 'time': 2.0, 'onto': 1.0, 'suits': 1.0, 'best': 4.0, 'with': 8.0, 'amazon': 1.0, 'in': 15.0, 'using': 3.0, 'direction': 1.0, 'you': 12.0, 'terrain': 1.0, 'when': 1.0, 'stokke': 14.0, 'streets': 3.0, 'shelling': 1.0, 'fast': 1.0, 'at': 4.0, 'too': 4.0, 'weight': 1.0, 'how': 4.0, 'one': 2.0, '5': 1.0, 'sure': 1.0, 'market': 1.0, 'seriously': 2.0, 'more': 6.0, 'kids': 1.0, 'tires': 1.0, 'us': 2.0, 'fine': 3.0, 'brand': 4.0, 'wheels': 5.0, 'course': 1.0, 'so': 15.0, 'great': 3.0, 'seconds': 1.0, 'no': 2.0, 'inclusions': 1.0, 'their': 3.0, 'get': 4.0, 'was': 2.0, '8211': 3.0, 'positioned': 1.0, 'were': 2.0, 'frame': 2.0, 'website': 3.0, 'isn': 2.0, 'never': 2.0, 'ways': 1.0, 'some': 2.0, 'around': 5.0, 'important': 1.0, 'the': 64.0, 'experience': 1.0, 'stride': 1.0, 'bells': 1.0, 'perfectly': 1.0, 'think': 1.0, 'there': 5.0, 'looking': 1.0, 'child': 6.0, 're': 4.0, 'need': 1.0, 'three': 1.0, 'taller': 1.0, 'looked': 1.0, 'long': 2.0, 'are': 5.0, 'center': 1.0, 'neck': 1.0, 'might': 2.0, 'design': 1.0, 'agree': 1.0, 'your': 2.0, 't': 13.0, 'me': 3.0, 'snow': 1.0, 'running': 1.0, 'sleepi': 2.0, 'errands': 2.0, 'sidewalks': 1.0, 'pushing': 1.0, 'etc': 2.0, 'awesome': 1.0, 'imagine': 1.0, 'taking': 1.0, 'exceeding': 1.0, 'safety': 3.0, 'rest': 1.0, 'regulations': 1.0, 'create': 1.0, 'making': 2.0, 'mosquito': 2.0, 'notch': 1.0, 'products': 2.0, 'facing': 1.0, 'interest': 1.0, 'entire': 1.0, 'philosophy': 1.0, 'purchase': 1.0, 'has': 3.0, 'negative': 1.0, 'd': 2.0, 'say': 1.0, 'everything': 1.0, 'newborn': 1.0, 'number': 1.0, 'recline': 1.0, 'brake': 2.0, 'representative': 1.0, 'seems': 1.0, 'them': 2.0, 'feel': 1.0, 'listening': 1.0, 'full': 4.0, 'previously': 1.0, 'baby': 3.0, 'defect': 1.0, 'terms': 1.0, 'part': 1.0, 'growing': 2.0, 'always': 3.0, 'crib': 1.0, 'paid': 1.0, 'good': 3.0, 'assembly': 1.0, 'from': 1.0, 'who': 2.0, 'ordering': 1.0, 'store': 1.0, 'having': 1.0, 'max': 1.0, 'shipped': 1.0, 'assembled': 1.0, 'know': 1.0, 'problems': 1.0, 'mom': 1.0, 'see': 1.0, 'because': 2.0, 'to': 17.0, 'much': 2.0, 'now': 1.0, 'everywhere': 1.0, 'happy': 1.0, 'if': 10.0, 'obviously': 2.0, 'care': 1.0, 'love': 2.0, 'back': 1.0, 'check': 1.0, '8230': 1.0, 'life': 1.0, 'face': 1.0, 'upright': 1.0, 'for': 14.0, 'said': 2.0, 'mine': 1.0, 'weather': 1.0, 'position': 1.0, 'comfortable': 1.0, 'earlier': 1.0, 'out': 2.0, 'cares': 1.0, 'grand': 1.0, 'roomy': 1.0, 'small': 1.0, 'recommend': 1.0, 'head': 1.0, 'appreciate': 1.0, 'of': 7.0, 'support': 1.0, 'call': 1.0, 'make': 1.0, 'here': 2.0, '1': 1.0, 'tell': 1.0, 'easily': 2.0, 'run': 1.0, 'friendly': 1.0, 'few': 1.0, 'study': 1.0, 'fabric': 1.0, 'scoot': 15.0, 's': 26.0, 'into': 1.0, 'reclining': 1.0, 'high': 1.0, 'quality': 1.0, 'treated': 1.0, 'water': 1.0, 'criteria': 1.0, 'bus': 1.0, 'light': 1.0, 'defective': 1.0, 'easier': 1.0, 'drizzle': 1.0, 'take': 2.0, 'again': 1.0, 'canopy': 1.0, 'whistles': 1.0, 'coverage': 1.0, 'sun': 2.0, 'by': 3.0, 'snap': 1.0, 'nice': 1.0, 'probably': 1.0, 'actually': 1.0, 'before': 1.0, 'knew': 2.0, 'bulky': 1.0, 'makes': 1.0, 'video': 1.0, 'shows': 1.0, 'swear': 1.0, 'and': 45.0, 'those': 3.0, 'options': 1.0, 'lift': 1.0, 'continue': 1.0, 'customer': 7.0, 'until': 1.0, 'reaches': 1.0, 'pounds': 1.0, 'beforehand': 1.0, 'throw': 1.0, 'trunk': 1.0, 'option': 1.0, 'afford': 1.0}
Word element => {'around': 1.0, 'haven': 1.0, 'coupon': 2.0, 'purchased': 1.0, 'use': 1.0, 'pleasantly': 1.0, 'further': 1.0, 'look': 1.0, 'bumbleride': 1.0, 'contemplating': 1.0, 'bland': 1.0, 'green': 1.0, 'extended': 1.0, 'manual': 1.0, 'instruction': 1.0, 'holder': 1.0, 'cup': 1.0, 'rain': 1.0, 'competitors': 1.0, 'flimsy': 1.0, 'an': 1.0, 'basket': 2.0, 'zipper': 1.0, 'fantastic': 1.0, 'canopy': 1.0, 'sweet': 1.0, 'collapses': 1.0, 'press': 1.0, 'button': 1.0, 'bottom': 1.0, 'taking': 1.0, 'sits': 1.0, 'complex': 1.0, 'easily': 1.0, 'manuverability': 1.0, 'park': 1.0, 'trunk': 1.0, 'fits': 1.0, 'awesome': 1.0, 'little': 2.0, 'into': 1.0, 'imagine': 1.0, 'neon': 1.0, 'position': 2.0, 'semi': 1.0, 'somewhere': 1.0, 'creates': 1.0, 'unhooks': 1.0, 'separately': 1.0, 'recline': 1.0, 'change': 1.0, 'size': 1.0, 'un': 1.0, 'mosquito': 1.0, 'mesh': 1.0, 'like': 2.0, 'light': 2.0, 'allowing': 1.0, 'both': 1.0, 'gotten': 1.0, 'has': 1.0, 'hallways': 1.0, 'narrow': 1.0, 'tight': 2.0, 'glides': 2.0, 'circulation': 1.0, 'degree': 1.0, '360': 1.0, 'live': 2.0, 'setting': 1.0, 'makes': 1.0, 'which': 1.0, 'narrower': 1.0, 'mobile': 1.0, 'answer': 1.0, 'fitted': 1.0, 'us': 1.0, 'march': 1.0, 'note': 1.0, 'model': 1.0, 'dust': 1.0, 'knee': 1.0, 'staring': 1.0, 'ground': 1.0, 'close': 3.0, 'child': 1.0, 'cool': 1.0, 'need': 2.0, 'also': 5.0, 'other': 2.0, 'interact': 1.0, 'cover': 1.0, 'lining': 1.0, 'will': 5.0, 'mall': 1.0, 'comfortably': 2.0, 'higher': 1.0, 'concept': 1.0, '2013': 1.0, 'than': 2.0, 'taller': 1.0, 'sturdy': 1.0, 'strollers': 2.0, 'exactly': 1.0, 'hand': 1.0, 'focus': 1.0, 'closer': 1.0, 'puts': 1.0, 'from': 1.0, 'buybuybaby': 1.0, 'that': 4.0, 'hmm': 1.0, 'open': 1.0, 'bond': 1.0, 'think': 3.0, 'don': 1.0, 'wonder': 1.0, 'still': 1.0, 'conditions': 2.0, 'this': 10.0, 'unacceptable': 2.0, 'needs': 1.0, 'new': 2.0, 'disassemble': 1.0, 'detailed': 1.0, 'few': 1.0, 'fall': 2.0, 'because': 2.0, 'being': 2.0, 'out': 4.0, 'task': 1.0, 'fit': 1.0, 'easy': 1.0, 'tested': 2.0, 'stokke': 13.0, 'baby': 7.0, 'even': 2.0, 'of': 4.0, 'living': 1.0, 'the': 55.0, 'smooth': 1.0, 't': 4.0, 'breathing': 1.0, 'no': 3.0, 'lift': 2.0, 'color': 1.0, 'suv': 1.0, 'past': 1.0, 'complete': 1.0, 'asleep': 1.0, 'back': 2.0, 'bump': 1.0, 'face': 1.0, 'uppababy': 2.0, 'parent': 1.0, 'sidewalk': 3.0, 'mean': 1.0, 'condo': 1.0, 'jogger': 1.0, 'what': 1.0, 'front': 3.0, 'excluding': 1.0, 'complained': 1.0, 'took': 1.0, 'dual': 1.0, 'say': 3.0, 'unique': 2.0, 'completely': 1.0, 'thankfully': 1.0, 'at': 4.0, 'laying': 1.0, 'floors': 1.0, 'll': 1.0, 'urban': 3.0, 'side': 2.0, 'shade': 1.0, 'be': 4.0, 'it': 23.0, 'was': 5.0, 'recommend': 1.0, 'tired': 1.0, 'average': 2.0, 's': 6.0, 'take': 2.0, 'underneath': 1.0, 'here': 1.0, 'beach': 1.0, 'lock': 2.0, 'on': 7.0, 'long': 1.0, 'soft': 2.0, 'anything': 2.0, 'as': 10.0, 'any': 2.0, 'functionality': 1.0, 'idea': 1.0, 'feel': 1.0, 'right': 3.0, 'to': 29.0, 'better': 1.0, 'comes': 1.0, 'against': 1.0, '20': 1.0, 'cranky': 1.0, 'all': 5.0, 'potentially': 1.0, 'flat': 1.0, 'small': 2.0, 'bag': 1.0, 'hit': 1.0, 'a': 28.0, 'along': 1.0, 'tiny': 3.0, 'hot': 1.0, 'have': 7.0, 'used': 1.0, 'bassinet': 1.0, 'suspension': 2.0, 'reclined': 1.0, 'selling': 1.0, 'besides': 1.0, 'dangerous': 3.0, 'point': 1.0, 'danger': 1.0, 'finger': 1.0, 'crack': 2.0, 'apartment': 1.0, 'after': 1.0, 'so': 8.0, 'turn': 2.0, 'compact': 1.0, 'is': 18.0, 'can': 7.0, 'rear': 2.0, 'delicate': 1.0, 'does': 1.0, 'looking': 2.0, 'stars': 1.0, 'wanted': 1.0, 'more': 3.0, 'perfect': 4.0, 'ended': 1.0, 'get': 3.0, 'pregnancy': 1.0, 'simple': 3.0, 'i': 20.0, 'key': 1.0, 'slow': 1.0, 'hault': 1.0, 'well': 6.0, 'spaces': 1.0, 'could': 1.0, 'off': 1.0, 'kick': 1.0, 'causing': 1.0, 'when': 1.0, 'you': 17.0, 'warranty': 1.0, 'main': 1.0, 'in': 16.0, 'too': 1.0, '3': 2.0, 'goodness': 1.0, 'walk': 3.0, 'yes': 1.0, 'wheels': 3.0, 'their': 1.0, 'customer': 1.0, 'want': 1.0, 'course': 1.0, 'caps': 1.0, 'service': 1.0, 'normal': 1.0, 'diaper': 1.0, 'up': 5.0, 'says': 1.0, 'having': 1.0, 'buy': 1.0, 'walking': 1.0, 'do': 4.0, 'match': 1.0, 'split': 1.0, 'issued': 1.0, 'or': 5.0, 'with': 12.0, 'using': 2.0, 'grass': 2.0, 'basically': 1.0, 'swindled': 1.0, 'block': 1.0, 'stylish': 1.0, 'for': 12.0, 'purchase': 1.0, 'waxed': 1.0, 'elevator': 1.0, 'store': 1.0, 'would': 2.0, 'glide': 1.0, 'cruz': 1.0, 'there': 3.0, 'fold': 1.0, 'fb': 1.0, 'ignored': 1.0, 'throughout': 1.0, 'bugaboo': 1.0, 'me': 3.0, 'are': 3.0, 'my': 8.0, 'slide': 1.0, 'now': 1.0, 'gorgeous': 1.0, 'end': 1.0, 'apart': 1.0, 'going': 1.0, 'clearly': 1.0, 'how': 6.0, 'tow': 1.0, 'surprised': 1.0, 'they': 3.0, 'sand': 1.0, 'teeny': 1.0, 'issue': 1.0, 'love': 2.0, '700': 1.0, 'people': 2.0, 'handle': 3.0, 'vista': 2.0, 'great': 1.0, 'if': 3.0, 'shame': 1.0, 'yourself': 1.0, 'poor': 2.0, 'year': 1.0, 'suburbia': 1.0, 'terrain': 1.0, 'stroller': 19.0, 'recall': 1.0, 'product': 1.0, 'update': 1.0, 'months': 2.0, 'thank': 1.0, 'stores': 1.0, 'original': 1.0, 'understand': 1.0, 'review': 1.0, 'see': 1.0, 'real': 1.0, 'life': 1.0, 'while': 2.0, 've': 1.0, 'been': 2.0, 'personality': 1.0, 'impossible': 1.0, 'came': 4.0, 'leaflet': 1.0, 'probably': 1.0, 'before': 1.0, 'style': 2.0, 'away': 2.0, 'search': 1.0, 'purchasing': 1.0, 'scoot': 5.0, 'net': 1.0, 'and': 23.0, 'tried': 1.0, 'just': 7.0, 'very': 2.0, 'find': 1.0, 'why': 2.0, 'down': 3.0, 'last': 1.0, 'heavily': 1.0, 'month': 1.0, 'develop': 1.0, 'top': 2.0, 'did': 1.0, 'seat': 4.0, 'select': 1.0, 'its': 12.0, 'page': 1.0, 'not': 12.0, 'different': 1.0, 'large': 2.0, 'indoors': 1.0, 'standard': 1.0, 'babyjogger': 1.0, 'allow': 1.0, 'american': 1.0, 'versatile': 1.0, 'absolutely': 1.0, 'one': 4.0, 'provides': 1.0, 'your': 4.0, 'where': 3.0, 'someone': 1.0}
Word element => {'premium': 1.0, 'stands': 1.0, 'nice': 1.0, 'industry': 1.0, 'unparalleled': 1.0, 'fix': 1.0, 'they': 1.0, 'contact': 1.0, 'must': 1.0, 'products': 1.0, 'product': 1.0, 'issue': 1.0, 'provides': 2.0, 'fantastic': 1.0, 'above': 1.0, 'customer': 2.0, 'their': 2.0, 'scoots': 1.0, 'purchased': 1.0, 'few': 1.0, 'highly': 1.0, 'would': 1.0, 'seconds': 1.0, 'couple': 1.0, 'company': 1.0, 'only': 1.0, 'friends': 1.0, 'folding': 1.0, 'baby': 1.0, 'she': 1.0, 'world': 1.0, 'or': 1.0, 'face': 1.0, 'if': 1.0, 'service': 1.0, 'turn': 1.0, 'breeze': 2.0, 'grow': 1.0, 'room': 1.0, 'has': 3.0, 'comfortable': 2.0, 'suv': 1.0, 'trunk': 1.0, 'into': 2.0, 'although': 1.0, 'side': 1.0, 'on': 1.0, 'satisfied': 1.0, 'can': 2.0, 'so': 2.0, 'heavier': 1.0, 'scoot': 4.0, 'know': 2.0, 'easy': 1.0, 'bit': 2.0, 'car': 2.0, 'out': 2.0, 'are': 2.0, 'errands': 1.0, 'began': 1.0, 'an': 1.0, 'ever': 1.0, 'all': 1.0, 'other': 2.0, 'a': 11.0, 'we': 8.0, 't': 2.0, 's': 8.0, 'own': 1.0, 'yes': 2.0, 'that': 8.0, 'been': 1.0, 'recommend': 1.0, 'were': 1.0, 'sacrifice': 1.0, 'me': 2.0, 'my': 5.0, 'hunt': 1.0, 'husband': 1.0, 'more': 1.0, 'of': 6.0, 'the': 19.0, 'will': 1.0, 'genius': 1.0, 'could': 1.0, 'travel': 1.0, 'stokke': 6.0, 'problem': 1.0, 'possible': 1.0, 'such': 1.0, 'for': 7.0, 'love': 1.0, 'like': 1.0, 'purchases': 1.0, 'thoroughly': 1.0, 'behind': 1.0, 'about': 1.0, 'months': 2.0, '4': 1.0, 'i': 8.0, 'when': 3.0, 'seat': 2.0, 'in': 5.0, 've': 1.0, 'was': 1.0, 'using': 1.0, 'looking': 1.0, 'definitely': 1.0, 'close': 3.0, 'takes': 1.0, '7': 1.0, 'fact': 1.0, 'old': 1.0, 'daughter': 2.0, 'got': 1.0, 'willing': 1.0, 'looked': 1.0, 'from': 1.0, 'quick': 1.0, 'it': 18.0, 'higher': 2.0, 'warranties': 1.0, 'running': 1.0, 'have': 4.0, 'hand': 1.0, 'dogs': 1.0, 'anyone': 1.0, 'and': 11.0, 'class': 1.0, 'but': 3.0, 'exhaust': 1.0, 'adore': 1.0, 'look': 1.0, 'is': 3.0, 'at': 2.0, 'one': 1.0, 'lot': 1.0, 'since': 1.0, 'switch': 1.0, 'different': 1.0, 'use': 1.0, 'her': 3.0, 'am': 1.0, 'strollers': 2.0, 'plenty': 1.0, 'xplory': 3.0, 'with': 3.0, 'weren': 1.0, 'to': 15.0, 'stroller': 3.0, 'our': 1.0, 'as': 2.0, 'fail': 1.0, 'height': 1.0, 'come': 1.0, 'padded': 1.0, 'lower': 1.0, 'than': 2.0, 'compare': 1.0, 'very': 1.0, 'important': 2.0, 'mention': 2.0, 'be': 1.0, 'lift': 1.0, 'compact': 2.0, 'us': 1.0, 'not': 1.0, 'any': 1.0, 'feel': 1.0, 'keeps': 1.0, 'away': 1.0, 'you': 2.0, 'things': 1.0, 'safe': 1.0, 'pipes': 1.0}
Word element => {'good': 1.0, 'very': 1.0, 'its': 1.0}
Word element => {'bargains': 1.0, 'street': 1.0, 'main': 1.0, 'vendor': 1.0, 'considering': 1.0, 'would': 1.0, 'new': 1.0, 'have': 1.0, 'not': 1.0, 'should': 1.0, 'but': 1.0, 'different': 1.0, 'resetting': 1.0, 'note': 1.0, 'tape': 1.0, 'some': 1.0, 'recommend': 1.0, 'was': 3.0, 'there': 1.0, 'of': 1.0, 'this': 2.0, 'buying': 1.0, 'with': 1.0, 'or': 1.0, 'are': 1.0, 'added': 1.0, 'you': 1.0, 'when': 3.0, 'list': 2.0, 'i': 4.0, 'received': 1.0, 'be': 1.0, 'giving': 1.0, 'the': 5.0, 'my': 1.0, 'baby': 1.0, 'no': 1.0, 'about': 1.0, 'to': 2.0, 'as': 2.0, 'from': 2.0, 's': 1.0, 'a': 3.0, 'gift': 1.0, 'if': 1.0, 'corrected': 1.0, 'being': 1.0, 'second': 1.0, 'arrived': 1.0, 'monitor': 4.0, 'access': 1.0, 'nothing': 1.0, 'sold': 1.0, 'closed': 1.0, 'than': 1.0, 'installed': 1.0, 'on': 1.0, 'top': 1.0, 'original': 1.0, 'it': 5.0, 'susan': 1.0, 'been': 1.0, 'box': 1.0, 'that': 1.0, 'device': 1.0, 'comment': 1.0, 'seals': 1.0, 'hand': 1.0, 'audio': 1.0, 'cannot': 1.0}
Word element => {'idea': 1.0, 'nice': 1.0, 'useless': 1.0, 'makes': 1.0, 'at': 2.0, 'app': 3.0, 'saying': 2.0, 'download': 1.0, 'start': 2.0, 'stars': 1.0, 'no': 2.0, 'was': 1.0, 'an': 1.0, 'other': 1.0, 'gave': 1.0, 'hear': 1.0, 'that': 3.0, 'ludicrously': 1.0, 'because': 2.0, 'concerned': 1.0, 'pc': 1.0, 'there': 1.0, 'mean': 1.0, 'working': 2.0, 'ipad': 4.0, 'me': 2.0, 'if': 3.0, 'paces': 1.0, 'thought': 1.0, 'with': 5.0, 'wifi': 3.0, 'least': 1.0, 'seem': 1.0, 'until': 1.0, 'seems': 1.0, 'seemed': 1.0, 'even': 1.0, 'woman': 1.0, 'product': 1.0, 'video': 1.0, 'child': 1.0, 'for': 9.0, 'our': 1.0, 'to': 15.0, 'as': 1.0, 'iphone': 2.0, 'later': 1.0, 'ways': 1.0, 'very': 1.0, 'out': 1.0, 'wife': 3.0, 'from': 1.0, 'setting': 1.0, 'quite': 1.0, 'is': 5.0, 'awhile': 1.0, 'can': 4.0, 'so': 3.0, 'work': 4.0, 'alignment': 1.0, 'but': 5.0, 'kinda': 1.0, 'different': 1.0, 'not': 5.0, 'many': 1.0, 'belkin': 2.0, 'she': 1.0, 'register': 1.0, 'additional': 1.0, 'moves': 1.0, 'simply': 3.0, 'only': 1.0, 'reviews': 2.0, 'we': 1.0, 'you': 10.0, 'cries': 1.0, 'night': 1.0, 'when': 2.0, 'communicate': 1.0, 'through': 2.0, 'into': 1.0, 'does': 2.0, 'crossed': 1.0, 'the': 20.0, 'online': 1.0, 'pretty': 1.0, 'any': 1.0, 'monitor': 10.0, 'were': 1.0, 'correct': 1.0, 'set': 2.0, 'wait': 1.0, 'given': 1.0, 'about': 1.0, 'hours': 1.0, 'baby': 3.0, 'moment': 1.0, 'despite': 3.0, 'i': 15.0, 'simple': 1.0, 'magically': 1.0, 'instructions': 1.0, 'sound': 1.0, 'biggest': 1.0, 'goes': 1.0, 'up': 4.0, 'this': 2.0, 'have': 5.0, 'found': 1.0, 'often': 1.0, 'get': 6.0, 'device': 1.0, 'however': 1.0, 'replug': 1.0, 're': 2.0, 'know': 1.0, 'discovered': 1.0, 'understand': 1.0, 'review': 1.0, 'million': 1.0, 'continued': 1.0, 'actually': 1.0, 'could': 2.0, 'features': 1.0, 'here': 1.0, 'doesn': 3.0, 's': 6.0, 'talking': 1.0, 'it': 20.0, 'own': 1.0, 'be': 1.0, 'difficulties': 2.0, 'trying': 1.0, 'another': 1.0, 'sensitivity': 1.0, 'thing': 1.0, 'tries': 1.0, 'has': 1.0, 'down': 1.0, 'plunk': 1.0, 'cash': 1.0, 'signals': 1.0, 'works': 1.0, 'good': 1.0, 'connection': 2.0, 'again': 1.0, 'which': 1.0, 'once': 2.0, 'my': 8.0, 'room': 2.0, 'worked': 1.0, 'advertising': 1.0, 'having': 1.0, 'almost': 2.0, 'now': 1.0, 'like': 1.0, 'or': 1.0, 'a': 7.0, 'faith': 2.0, 'need': 1.0, 'something': 1.0, 't': 6.0, 'let': 1.0, 'issue': 1.0, 'don': 1.0, 'really': 5.0, 'in': 4.0, 'want': 1.0, 'demonstrating': 1.0, 'terrible': 1.0, 'haven': 1.0, 'had': 1.0, 'chance': 1.0, 'reason': 1.0, 'put': 1.0, 'much': 1.0, 'daughter': 2.0, 'over': 2.0, 'sleeping': 1.0, 'her': 1.0, 'use': 2.0, 'read': 1.0, 'update': 2.0, 'used': 1.0, 'say': 1.0, 'worse': 1.0, 'than': 1.0, 'low': 1.0, 'by': 1.0, 'infant': 1.0, 'electricity': 1.0, 'back': 1.0, 'sometimes': 1.0, 'and': 10.0, 'achieve': 1.0, 'just': 1.0, 'loses': 1.0, 'more': 2.0, 'wouldn': 1.0, 'would': 1.0, 'may': 1.0, 'interference': 1.0, 'whether': 1.0}
Word element => {'giving': 1.0, 'easy': 1.0, 'setting': 1.0, 'home': 1.0, 'not': 3.0, 'matter': 1.0, 'while': 3.0, 'from': 2.0, 'allow': 1.0, 'handy': 1.0, 'need': 1.0, 'started': 1.0, 'feature': 1.0, 'or': 5.0, 'you': 7.0, 'monitors': 2.0, 'favorite': 1.0, 'them': 1.0, 'has': 1.0, 'had': 3.0, 'problem': 2.0, 'most': 1.0, 'pay': 1.0, 'so': 2.0, 'reinstalling': 1.0, 'white': 1.0, 'of': 5.0, 'the': 25.0, 'at': 2.0, 'can': 2.0, 'is': 7.0, 'lot': 1.0, 'tend': 2.0, 'in': 7.0, 'communicating': 1.0, 'intermittently': 1.0, 'every': 1.0, 'service': 1.0, 'ipads': 1.0, 'will': 1.0, 'functions': 1.0, 'was': 2.0, 'effect': 1.0, 'love': 2.0, 'for': 5.0, 'cry': 2.0, 'audio': 2.0, 'using': 3.0, 'half': 1.0, 'house': 1.0, 'both': 1.0, 'stop': 1.0, '50': 1.0, 'very': 2.0, 'cannot': 1.0, 'monitor': 8.0, 'usually': 1.0, 'be': 2.0, 'it': 14.0, 'kids': 2.0, 'month': 1.0, 'surf': 1.0, 'about': 2.0, 'have': 6.0, 't': 2.0, 'spare': 1.0, 'connection': 1.0, 'internet': 1.0, 'doesn': 2.0, 's': 1.0, 'a': 10.0, 'only': 1.0, 'then': 3.0, 'attention': 1.0, 'other': 1.0, 'years': 1.0, 'our': 6.0, 'network': 4.0, 'babysitter': 1.0, 'unable': 1.0, 'suddenly': 1.0, 'to': 23.0, 'fixed': 1.0, 'any': 1.0, 'pretty': 1.0, 'baby': 5.0, 'aware': 1.0, 'over': 1.0, 'work': 1.0, '3': 1.0, 'web': 1.0, 'put': 1.0, 'on': 8.0, 'children': 1.0, 'trouble': 1.0, 'app': 6.0, 'simultaneously': 1.0, 'annoying': 1.0, 'background': 2.0, 'are': 3.0, 'first': 2.0, 'connect': 3.0, 'working': 1.0, 'nice': 1.0, 'ipad': 2.0, 'all': 2.0, 'yr': 1.0, 'comes': 1.0, 'as': 1.0, 'shut': 1.0, 'location': 1.0, 'been': 1.0, 'that': 8.0, 'however': 2.0, 'device': 3.0, 'often': 1.0, 'includes': 1.0, 'noise': 4.0, 'rooms': 1.0, 'paying': 1.0, 'amplified': 1.0, 'us': 2.0, 'minimizing': 1.0, 'dedicating': 1.0, 'appearing': 1.0, 'time': 1.0, 'ipod': 1.0, 'want': 1.0, 'belkin': 3.0, 'free': 1.0, 'sure': 1.0, 'firmware': 1.0, 'make': 2.0, 'listen': 2.0, 'husband': 1.0, 'check': 2.0, 'well': 2.0, 'calls': 1.0, 'i': 2.0, 'allowing': 1.0, 'emails': 1.0, 'phone': 2.0, 'your': 8.0, 'where': 2.0, 'an': 2.0, 'sources': 1.0, 'day': 1.0, 'since': 1.0, 'dedicate': 1.0, 'which': 2.0, 'monitoring': 2.0, 'use': 2.0, 'iphones': 2.0, 'there': 1.0, 'wifi': 2.0, 'option': 1.0, 'if': 3.0, 'great': 2.0, 'notification': 1.0, 'by': 1.0, 'after': 2.0, 'we': 12.0, 'called': 1.0, 'works': 4.0, 'begins': 1.0, 'just': 2.0, 'and': 6.0, 'tried': 1.0, 'seems': 1.0, 'but': 1.0, 'child': 1.0, 'one': 2.0, '5': 1.0, 'upon': 1.0, 'up': 1.0, 'install': 1.0, 'listening': 1.0, 'wireless': 1.0, 'point': 1.0, 'ios': 2.0, 'unplugged': 1.0, 'cancellation': 1.0, 'unit': 1.0, 'devices': 1.0, 'wemo': 4.0, 'wall': 1.0, 'uninstalling': 1.0, 'away': 1.0, 'resetting': 1.0, 'worked': 2.0, '2': 2.0, 'update': 2.0, 'therefore': 1.0, 'months': 2.0, 'iphone': 1.0, 'fix': 1.0, 'last': 1.0, 'down': 1.0, 'reset': 1.0, 'this': 3.0, 'reconnect': 1.0, 'getting': 1.0, 'when': 1.0}
Word element => {'pointless': 1.0, 'line': 1.0, 'subdues': 1.0, 'more': 1.0, 'll': 1.0, 'anything': 1.0, 'blind': 1.0, 'technologically': 1.0, 'place': 1.0, 'they': 1.0, 'or': 1.0, 'no': 1.0, 'awesome': 1.0, 'hear': 1.0, 'you': 3.0, 'helps': 1.0, 'antiquated': 1.0, 'deliver': 1.0, 'technology': 1.0, 'using': 1.0, 'as': 1.0, 'does': 2.0, 'little': 1.0, 'how': 2.0, 'waste': 1.0, 'given': 1.0, 'smaller': 1.0, 'itself': 1.0, 'unit': 1.0, 'base': 1.0, 'compact': 1.0, 'droppingly': 1.0, 'devices': 1.0, 'were': 1.0, '1970': 1.0, 'a': 4.0, 's': 2.0, 'which': 1.0, 'like': 1.0, 'kid': 1.0, 'going': 1.0, 'impressed': 1.0, 'time': 1.0, 'new': 1.0, 'get': 1.0, 'easy': 1.0, 'money': 2.0, 'don': 1.0, 'up': 1.0, 'help': 1.0, 'sound': 1.0, 'audio': 4.0, 'jaw': 1.0, 'own': 1.0, 'ok': 1.0, 'stout': 1.0, 'i': 1.0, 'feet': 1.0, 'in': 2.0, 'for': 3.0, 'monitoring': 1.0, 'opinion': 1.0, 're': 1.0, 'where': 1.0, 'camera': 1.0, 'product': 2.0, 'app': 1.0, 'me': 1.0, 'focus': 1.0, 'my': 1.0, 'tight': 1.0, 'parental': 1.0, 'people': 1.0, 'baby': 2.0, 'many': 1.0, 't': 1.0, 'farther': 1.0, 'exclusive': 1.0, 'completely': 1.0, 'size': 1.0, 'designed': 1.0, 'mediocre': 3.0, 'soda': 1.0, 'advent': 1.0, 'thing': 2.0, 'cassette': 1.0, 'with': 1.0, 'highly': 1.0, 'this': 4.0, 'results': 1.0, 'what': 3.0, 'essentially': 1.0, 'bottom': 1.0, 'far': 1.0, 'then': 2.0, 'why': 1.0, 'just': 2.0, 'large': 1.0, 'by': 1.0, 'crying': 2.0, 'too': 1.0, 'anyone': 1.0, 'and': 5.0, 'the': 8.0, 'of': 5.0, 'should': 2.0, 'better': 1.0, 'yeah': 1.0, 'hamstrung': 1.0, 'is': 9.0, 'at': 1.0, 'cause': 1.0, 'wifi': 1.0, 'least': 1.0, 'to': 4.0, 'have': 2.0, 'fear': 1.0, 'much': 1.0, 'match': 1.0, 'can': 1.0, 'so': 3.0, 'these': 1.0, 'cuz': 1.0, 'recorders': 1.0, 'setup': 1.0, 'its': 2.0, 'only': 1.0, 'functionality': 1.0, 'wemo': 1.0, 'are': 1.0, 'first': 1.0, 'lock': 1.0, 'clue': 1.0, 'modern': 1.0, 'everything': 1.0, 'still': 1.0, 'if': 3.0, 'down': 1.0, 'that': 3.0, 'on': 1.0, 'near': 1.0, '3': 1.0, 'useless': 2.0, 'it': 6.0, 'be': 4.0, 'flawless': 1.0, 'your': 2.0, 'capable': 1.0, 'than': 2.0, 'microphone': 1.0, 'picking': 1.0, 'away': 1.0}
Word element => {'recommended': 1.0, 'unforgivable': 1.0, 'stage': 1.0, 'already': 1.0, '70': 1.0, 'point': 1.0, 'at': 1.0, 'audio': 2.0, 'just': 1.0, 'rectify': 1.0, 'something': 1.0, 'belkins': 1.0, 'hoping': 1.0, 'price': 1.0, 'm': 1.0, 'phone': 1.0, 'my': 1.0, 'up': 1.0, 'an': 2.0, 'locked': 1.0, 'before': 1.0, 'minute': 1.0, 'looking': 1.0, 'not': 1.0, 'modern': 1.0, 'soon': 1.0, 'and': 3.0, 'probably': 2.0, 'monitor': 3.0, 'compact': 1.0, 'belkin': 1.0, 'pretty': 2.0, 'works': 1.0, 'impressively': 1.0, 'taken': 1.0, 'cool': 1.0, 'a': 3.0, 's': 1.0, 't': 1.0, 'handicap': 1.0, 'iphone': 1.0, 'to': 3.0, 'wi': 1.0, 'apple': 1.0, 'fi': 1.0, 'being': 2.0, 'apart': 1.0, 'baby': 1.0, 'about': 1.0, 'expensive': 1.0, 'for': 3.0, 'it': 3.0, 'looks': 2.0, 'i': 4.0, 'hardware': 1.0, 'is': 3.0, 'say': 1.0, 'beta': 1.0, 'exceptionally': 1.0, 'wemo': 1.0, 'that': 2.0, 'with': 1.0, 'frustrating': 1.0, 'haven': 1.0, 'sleek': 1.0, 'see': 1.0, 'steep': 1.0, 'the': 6.0, 'myself': 1.0, 'app': 4.0, 'so': 1.0, 'does': 1.0, 'because': 2.0, 'installed': 2.0, 'uninstalled': 2.0, 'haha': 1.0, 'got': 1.0, 'work': 1.0, 'of': 1.0, 'once': 1.0}
Word element => {'hassle': 1.0, 'worth': 1.0, 'not': 1.0, 'network': 1.0, 'interface': 1.0, 'impossible': 1.0, 'is': 1.0, 'with': 1.0, 'it': 1.0, 'connected': 1.0, 'on': 1.0, 'together': 1.0, 'would': 1.0, 'but': 1.0, 'work': 1.0, 'act': 1.0, 'their': 3.0, 'home': 1.0, 'belkin': 1.0, 'wish': 1.0, 'to': 3.0, 'wemo': 1.0, 'look': 1.0, 'line': 1.0, 'the': 1.0, 'great': 1.0, 'can': 1.0, 'when': 1.0, 'of': 1.0, 'i': 1.0, 'products': 2.0, 'well': 1.0, 'your': 1.0, 'next': 1.0, 'they': 1.0, 'get': 3.0, 'and': 1.0, 'you': 1.0, 'them': 1.0}
Word element => {'would': 1.0, 'chewing': 1.0, 'holding': 1.0, 'for': 2.0, 'using': 1.0, 'young': 1.0, 'the': 2.0, 'his': 1.0, 'glove': 1.0, 'when': 2.0, 'was': 3.0, 'now': 1.0, 'but': 1.0, 'large': 1.0, 'teething': 2.0, 'came': 1.0, 'heavy': 1.0, 'first': 1.0, 'shower': 1.0, 'it': 2.0, 'with': 1.0, 'got': 1.0, 'too': 1.0, 'and': 2.0, 'as': 1.0, 'best': 1.0, 'ring': 2.0, 'a': 1.0, 'baby': 4.0, 'started': 1.0, 'reccommend': 1.0, 'my': 3.0, 'i': 2.0, 'gift': 1.0, 'this': 1.0, 'found': 1.0, 'still': 1.0, 'mouth': 1.0, 'aside': 1.0, 'really': 1.0, 'gummee': 1.0, 'is': 1.0, 'babies': 1.0, 'that': 2.0, 'over': 1.0, 'months': 2.0, 'he': 1.0, '6': 2.0, 'has': 1.0, 'no': 1.0, 'tried': 1.0, 'problem': 1.0}
Word element => {'themselves': 1.0, 'fill': 1.0, 'were': 1.0, 'they': 2.0, 'loves': 1.0, 'son': 1.0, 'and': 3.0, 'them': 4.0, 'a': 1.0, 'paid': 1.0, 'reviews': 1.0, 'my': 1.0, 'ago': 1.0, 'of': 1.0, 'lots': 1.0, 'the': 1.0, 'these': 1.0, 'easy': 1.0, 'read': 1.0, 'before': 1.0, 'for': 1.0, 'love': 2.0, 'i': 1.0, 'filled': 1.0, 'to': 1.0, 'buying': 1.0, 'was': 1.0, 'not': 1.0, 'after': 1.0, 'kinda': 1.0, 'week': 1.0, 'but': 1.0, 'yogurt': 1.0, 'use': 1.0, 'worried': 1.0, 'got': 1.0, 'first': 1.0, 'with': 1.0}
Word element => {'now': 1.0, 'handles': 1.0, 'know': 1.0, 'will': 1.0, 'shop': 1.0, 'me': 1.0, 'led': 1.0, 'zipper': 1.0, 'by': 1.0, 'hole': 1.0, 'large': 1.0, 'there': 2.0, 'was': 3.0, 'clothes': 2.0, 'an': 2.0, 'specifically': 1.0, 'makes': 1.0, 'so': 5.0, 'clips': 1.0, 'military': 1.0, 'sons': 1.0, 'saw': 1.0, 'all': 1.0, 'yr': 1.0, 'easy': 1.0, 'bit': 1.0, 'and': 15.0, 'other': 1.0, 'wallet': 1.0, 'to': 16.0, 'throw': 1.0, 'pocket': 5.0, 'ipad': 5.0, 'sling': 1.0, 'front': 2.0, 'first': 1.0, 'lock': 1.0, 'pockets': 3.0, 'with': 5.0, 'design': 1.0, 'left': 1.0, 'also': 3.0, 'diaper': 3.0, 'bags': 3.0, 'as': 1.0, 'threading': 1.0, 'shopping': 1.0, 'how': 3.0, 'stores': 1.0, 'car': 2.0, 'longer': 1.0, 'times': 1.0, 'are': 6.0, 'my': 12.0, 'too': 1.0, 'love': 1.0, 'guess': 1.0, 'for': 10.0, 'feet': 1.0, 'this': 3.0, 'small': 3.0, 'have': 4.0, 'clip': 4.0, 'blankie': 2.0, 'caters': 1.0, 'cart': 1.0, 'pack': 2.0, 'durability': 2.0, 'either': 1.0, 'would': 2.0, 'gone': 1.0, 'through': 2.0, 'material': 2.0, 'that': 6.0, 'because': 4.0, 'can': 8.0, 'is': 8.0, 'handle': 1.0, 'ring': 1.0, 'at': 2.0, 'favorite': 2.0, 'years': 1.0, 'in': 6.0, 'tree': 1.0, 'very': 2.0, 'find': 3.0, 'choose': 2.0, 'without': 1.0, 'lone': 1.0, 'a': 17.0, 'bag': 12.0, 'phone': 1.0, 'comfort': 1.0, 'has': 4.0, 'want': 1.0, 'spot': 3.0, 'everything': 2.0, 't': 3.0, 'ago': 1.0, 'distances': 1.0, 'had': 5.0, 'carry': 4.0, 'don': 1.0, 'shoulder': 1.0, 'over': 1.0, 'back': 4.0, 'always': 1.0, 'most': 1.0, 'looks': 1.0, 'easily': 1.0, 'making': 1.0, 'undone': 1.0, 'like': 6.0, 'different': 2.0, 'not': 1.0, 'those': 2.0, 'bunch': 1.0, 'or': 1.0, 'diapers': 1.0, 'but': 4.0, 'chose': 1.0, '2': 2.0, 'tablet': 3.0, 'thing': 1.0, 'many': 1.0, 'where': 1.0, 'your': 1.0, 'any': 1.0, 'the': 34.0, 'online': 1.0, 'which': 3.0, 'made': 1.0, 'good': 1.0, 'you': 3.0, 'boy': 1.0, 'move': 1.0, 'images': 1.0, 'best': 1.0, 'clutch': 1.0, 'larger': 1.0, 'purchased': 1.0, 'grocery': 1.0, 'one': 2.0, 'absolutely': 1.0, 'out': 1.0, 'awesome': 1.0, 'wipes': 1.0, 'neutral': 1.0, 'only': 2.0, 'separate': 1.0, 'then': 1.0, 'blankies': 1.0, 'keys': 3.0, 'changing': 1.0, 'pad': 1.0, 'located': 1.0, 'new': 1.0, 'liked': 1.0, 'of': 7.0, 'old': 1.0, 'snacks': 1.0, 'bulky': 1.0, 'must': 1.0, 'when': 1.0, 'previous': 1.0, 'columbia': 1.0, 'sold': 1.0, 'shorter': 1.0, 'it': 15.0, 'be': 1.0, 'stuffed': 1.0, 'uncomfortable': 1.0, 'comfortably': 1.0, 'came': 1.0, 'another': 2.0, 'let': 1.0, 'they': 2.0, 'surprised': 1.0, 'issue': 1.0, 'gender': 1.0, 'having': 3.0, 'accessible': 1.0, 'on': 5.0, 'unlock': 1.0, 'scramble': 1.0, 'dig': 1.0, 'its': 1.0, 'actually': 1.0, 'big': 3.0, 'spare': 2.0, 'see': 1.0, 'really': 1.0, 'didn': 1.0, 'hate': 1.0, 'protector': 1.0, 'features': 1.0, 'designs': 2.0, 'from': 3.0, 'feels': 1.0, 'comes': 1.0, 'unique': 1.0, 'grade': 1.0, 'hopes': 1.0, 'i': 28.0, 'simple': 1.0, 'mainly': 1.0, 'price': 1.0, 'specific': 1.0, 'stroller': 2.0, 'year': 2.0, 'top': 2.0, 'kind': 1.0, 'time': 1.0, 'test': 1.0, 'strong': 1.0}
Word element => {'into': 1.0, 'tugged': 1.0, 'get': 1.0, 'size': 2.0, 'adult': 1.0, 'probably': 1.0, 'has': 1.0, 'head': 1.0, 'little': 2.0, 'adorable': 1.0, 'expression': 1.0, 'quite': 1.0, 'lost': 1.0, 'soft': 1.0, 's': 4.0, 't': 2.0, 'handkerchief': 1.0, 'and': 3.0, 'green': 1.0, 'soon': 1.0, 'so': 1.0, 'toys': 1.0, 'kaloo': 1.0, 'that': 3.0, 'when': 2.0, 'perfect': 1.0, 'barely': 1.0, 'sweet': 2.0, 'possible': 1.0, 'gets': 1.0, 'plus': 1.0, 'are': 1.0, 'my': 1.0, 'eventually': 1.0, 'it': 7.0, 'lovie': 1.0, 'bite': 1.0, 'i': 4.0, 'love': 1.0, 'lovies': 1.0, 'doudou': 2.0, 'few': 1.0, 'just': 1.0, 'producing': 1.0, 'its': 1.0, 'oblivion': 1.0, 'a': 3.0, 'imagine': 1.0, 'tiny': 1.0, 'company': 2.0, 'only': 1.0, 'production': 1.0, 'stuffed': 2.0, 'had': 1.0, 'will': 4.0, 'also': 1.0, 'doesn': 1.0, 'leaf': 1.0, 'to': 2.0, 'as': 3.0, 'of': 3.0, 'the': 12.0, 'person': 1.0, 'is': 4.0, 'look': 1.0, 'isn': 1.0, 'teeny': 1.0, 'up': 1.0, 'replace': 1.0, 'dust': 1.0, 'all': 1.0, 'an': 1.0, 'hoped': 1.0, 'but': 2.0, 'one': 1.0, 'held': 1.0, 'or': 1.0, 'washings': 1.0, 'baby': 2.0, 'toddler': 1.0, 'rabbit': 2.0, 'quibble': 1.0, 'china': 1.0, 'for': 1.0, 'fabric': 2.0, 'not': 2.0, 'scratchy': 1.0, 'tender': 1.0, 'in': 1.0, 'm': 1.0, 'repeated': 1.0, 'have': 1.0, 'soften': 1.0, 'hopeful': 1.0, 'sewn': 1.0, 'zen': 1.0, 'on': 1.0, 'really': 1.0, 'older': 1.0, 'right': 1.0, 'll': 1.0}
Word element => {'price': 1.0, 'for': 1.0, 'can': 1.0, 'really': 1.0, 'diaper': 1.0, 'great': 1.0, 'the': 3.0, 'thin': 1.0, 'snapped': 1.0, 'old': 1.0, 'i': 3.0, '9': 1.0, 'my': 2.0, 'fits': 1.0, 'child': 1.0, 'like': 1.0, 'favorites': 1.0, 'and': 3.0, 'different': 1.0, 'more': 1.0, 'is': 3.0, 'second': 1.0, 'than': 1.0, 'brands': 1.0, 'diapers': 2.0, 'even': 1.0, 'of': 2.0, 'have': 1.0, 'velcro': 1.0, 'with': 1.0, 'it': 3.0, 'months': 1.0, 'one': 1.0, 'to': 1.0, 'leaks': 1.0, 'had': 1.0, 'rise': 1.0, 'several': 1.0, 'no': 1.0, 'sticky': 1.0, 'super': 1.0, 've': 1.0, 'also': 1.0, 'beat': 1.0, 'issues': 1.0, 't': 1.0, 's': 1.0, 'when': 1.0, 'you': 1.0, 'very': 1.0, 'this': 2.0, 'soft': 1.0, '30': 1.0}
Word element => {'them': 1.0, 'on': 1.0, 'baseball': 1.0, 'all': 1.0, 'much': 1.0, 'old': 1.0, 'purpose': 1.0, 'too': 1.0, 'yr': 1.0, 'not': 1.0, 'part': 1.0, 'my': 1.0, 'solves': 1.0, 'loves': 1.0, 'good': 1.0, 'but': 1.0, 'work': 1.0, 'quality': 1.0, 'and': 1.0, 'fantastically': 1.0, 'really': 2.0, 'looks': 1.0, 'cute': 1.0, 'the': 3.0, 'frills': 1.0, '2': 1.0, 'son': 1.0}
Word element => {'directions': 1.0, 'from': 1.0, 'block': 1.0, 'on': 2.0, 'many': 1.0, 'is': 2.0, 'really': 1.0, 'to': 1.0, 'small': 1.0, 'a': 2.0, 'it': 2.0, 'adjustable': 1.0, 'the': 3.0, 'great': 1.0, 'sun': 2.0, 'fit': 1.0, 'enough': 1.0, 'especially': 1.0, 'bus': 1.0, 'because': 1.0, 'and': 2.0, 'overhead': 1.0, 'will': 1.0, 'stroller': 1.0, 'shade': 1.0, 'bin': 1.0, 'plane': 1.0, 'nice': 1.0, 's': 1.0}
Word element => {'world': 1.0, 'angle': 1.0, 'different': 1.0, 'love': 1.0, 'month': 1.0, 'ride': 1.0, 'him': 1.0, 'old': 1.0, 'to': 3.0, 'my': 1.0, 'use': 1.0, 'easy': 1.0, 'even': 1.0, '4': 1.0, 'the': 2.0, 'lightweight': 1.0, 'inside': 1.0, 'house': 1.0, 'it': 1.0, 'this': 1.0, 'some': 1.0, 'mobility': 1.0, 'gives': 1.0, 'as': 2.0, 'see': 1.0, 'well': 1.0, 'a': 1.0}
Word element => {'30': 1.0, 'lightweight': 1.0, 'the': 4.0, 'these': 1.0, 'itself': 1.0, 'stroller': 3.0, 'giants': 1.0, '20': 1.0, 'compliments': 1.0, 'or': 1.0, 'them': 1.0, 'loves': 1.0, 'fancy': 1.0, 'everyone': 1.0, 'to': 2.0, 'bought': 1.0, 'be': 1.0, 'couple': 1.0, 'i': 2.0, 'two': 1.0, 'expect': 1.0, 'of': 3.0, 'didn': 1.0, 'print': 1.0, 't': 1.0, 'a': 3.0, 'we': 1.0, 'standard': 1.0, 'is': 1.0, 'get': 1.0, 'left': 1.0, 'on': 1.0, 'nothing': 1.0, 'tons': 1.0, 'special': 1.0, 'which': 1.0, 'about': 1.0, 'it': 1.0, 'are': 1.0, 'wheels': 1.0, 'pull': 1.0, 'but': 1.0, 'can': 1.0, 'frustrating': 1.0, 'and': 1.0, 'starting': 1.0, 'too': 1.0, 'much': 1.0, 'from': 1.0}
Word element => {'their': 1.0, 'show': 1.0, 'a': 1.0, 'great': 1.0, 't': 1.0, 'seen': 1.0, 'they': 1.0, 'pride': 1.0, 'sure': 1.0, 'haven': 1.0, 'yankee': 2.0, 'love': 1.0, 'for': 1.0, 'wish': 1.0, 'team': 1.0, 'to': 1.0, 'had': 1.0, 'it': 2.0, 'with': 1.0, 'stroller': 2.0, 'anyone': 1.0, 'fans': 3.0, 'and': 1.0, 'i': 2.0, 'or': 1.0, 'know': 1.0, 'not': 1.0, 'm': 1.0, 'people': 1.0}
Word element => {'price': 1.0, 'great': 1.0, 'the': 2.0, 'loves': 1.0, 'little': 1.0, 'but': 1.0, 'will': 1.0, 'we': 1.0, 'works': 1.0, 'post': 1.0, 'a': 1.0, 'local': 1.0, 'while': 1.0, 'how': 1.0, 'cannot': 1.0, 'he': 1.0, 'this': 1.0, 'it': 4.0, 'of': 1.0, 'transferred': 1.0, 'my': 1.0, 'bad': 1.0, 'seeing': 1.0, 'not': 2.0, 'later': 1.0, 'as': 2.0, 'shipping': 1.0, 'office': 1.0, 'be': 1.0, 'bought': 1.0, 'using': 1.0, 'for': 3.0, 'review': 1.0, 'look': 1.0, 'to': 2.0, 'was': 2.0, 'husband': 1.0, 'use': 1.0, 'on': 1.0}
Word element => {'adorable': 1.0, 'my': 1.0, 'than': 1.0, 'baby': 1.0, 'money': 1.0, 'needed': 1.0, 'lot': 1.0, 'spending': 1.0, 'without': 1.0, 'decent': 1.0, 'better': 1.0, 'like': 1.0, 'more': 1.0, 'dollars': 1.0, 'in': 2.0, 'quality': 1.0, 'stroller': 2.0, 'but': 1.0, 'bought': 1.0, 'for': 2.0, 'lucky': 1.0, 'nicer': 1.0, 'this': 1.0, 'it': 2.0, 'i': 4.0, 'person': 2.0, 'was': 2.0, 'buying': 1.0, 'a': 3.0, 'cheapie': 1.0, 'upcoming': 1.0, 'thought': 1.0, 'our': 1.0, 'trip': 1.0, '24': 1.0, 'is': 1.0, 'looks': 2.0}
Word element => {'stuff': 1.0, 'his': 1.0, 'of': 1.0, 'started': 1.0, 'my': 1.0, 'a': 1.0, 'and': 2.0, 'loves': 1.0, 'got': 1.0, 'as': 1.0, 'son': 1.0, 'gift': 1.0, 'absolutely': 1.0, 'using': 1.0, 'love': 1.0, 'around': 1.0, 'christmas': 1.0, 'this': 1.0, 'it': 3.0, 'he': 1.0, '5': 1.0, 'months': 1.0, 'i': 1.0, 'matches': 1.0, 'that': 1.0, 'all': 1.0}
Word element => {'surely': 1.0, 'have': 1.0, 'grandson': 1.0, 'loves': 1.0, 'to': 3.0, 'my': 3.0, 'for': 1.0, 'recommend': 1.0, 'home': 1.0, 'at': 1.0, 'got': 1.0, 'daughter': 1.0, 'when': 1.0, 'us': 1.0, 'others': 1.0, 'would': 1.0, 'him': 1.0, 'and': 1.0, 'is': 1.0, 'he': 1.0, 'this': 2.0, 'it': 2.0, 'with': 1.0, 'time': 1.0, 'allows': 1.0, 'i': 1.0, 'visit': 1.0}
Word element => {'components': 1.0, 'engaging': 1.0, 'many': 1.0, 'small': 1.0, 'my': 1.0, 'only': 1.0, 'in': 1.0, 'it': 3.0, 'enjoys': 1.0, 'briefly': 1.0, 'baby': 1.0, 'because': 1.0, 'has': 1.0, 'he': 2.0, 'sits': 1.0, 'is': 1.0, 'still': 1.0}
Word element => {'this': 1.0, 'be': 1.0, 'item': 1.0, 'will': 1.0, 'moving': 1.0, 'he': 1.0, 'fast': 1.0, 'move': 1.0, 'mode': 1.0, 'returning': 1.0, 'high': 1.0, 'in': 1.0, 'even': 2.0, 'stop': 2.0, 'the': 5.0, 'doesn': 2.0, 'is': 2.0, 'work': 2.0, 'music': 1.0, 'if': 1.0, 'has': 1.0, 'does': 1.0, 'for': 3.0, 'vibrate': 1.0, 'that': 1.0, 'sway': 3.0, 'almost': 1.0, 'chair': 1.0, 'thing': 1.0, 'about': 1.0, 'baby': 2.0, 'it': 6.0, 'only': 1.0, 'and': 4.0, 'awful': 4.0, 'very': 1.0, 'not': 1.0, 'strong': 1.0, 'enough': 2.0, 'as': 1.0, 'to': 2.0, '25': 1.0, 'my': 2.0, '12': 1.0, 'again': 1.0, 'times': 1.0, 'lbs': 1.0, 'limit': 1.0, 'seconds': 1.0, 'weight': 1.0, 'lb': 1.0, 'll': 1.0, 'few': 2.0, 'jerkily': 1.0, 'feature': 1.0, 'i': 1.0, 'notice': 1.0, 'hardly': 1.0, 't': 2.0, 'going': 1.0, 's': 4.0, 'a': 2.0, 'might': 1.0, 'add': 1.0, 'then': 3.0}
Word element => {}
Word element => {'s': 1.0, 'son': 1.0, 'my': 1.0, 'cute': 1.0, 'but': 1.0, 'i': 1.0, 'what': 1.0, 'its': 1.0, 'for': 1.0, 'in': 1.0, 'ok': 1.0, 'comparison': 1.0, 'tiny': 1.0, 'to': 1.0, 'expected': 1.0, 'not': 1.0, 'belt': 1.0, 'backpack': 1.0, 'seat': 1.0, 'really': 1.0, 'pets': 1.0}
Word element => {'carrying': 1.0, 'a': 1.0, 'right': 1.0, 'strap': 1.0, 'easy': 2.0, 'super': 1.0, 'to': 1.0, 'was': 1.0, 'together': 1.0, 'the': 1.0, 't': 1.0, 'used': 1.0, 'haven': 1.0, 'but': 1.0, 'stroller': 1.0, 'put': 1.0, 'out': 1.0, 'of': 1.0, 'makes': 1.0, 'has': 1.0, 'box': 1.0, 'that': 2.0, 'i': 1.0, 'for': 1.0, 'yet': 1.0, 'love': 1.0, 'this': 1.0, 'it': 1.0}
Word element => {'am': 1.0, 'days': 1.0, 'duty': 1.0, 'more': 1.0, 'feel': 1.0, 'there': 1.0, 'breeze': 1.0, 'nice': 1.0, 'happening': 1.0, 'hand': 1.0, 'do': 1.0, 'easy': 1.0, 'umbrella': 1.0, 'need': 1.0, 'or': 2.0, 'taking': 1.0, 'an': 1.0, 'dream': 1.0, 'most': 1.0, 'bus': 1.0, 'out': 2.0, 'just': 2.0, 'slope': 1.0, 'reason': 1.0, 's': 7.0, 'city': 2.0, 'a': 5.0, 't': 3.0, 'we': 1.0, 'season': 1.0, 'another': 2.0, 'mini': 2.0, 'my': 4.0, 'me': 2.0, 'and': 10.0, 'happy': 1.0, 'one': 2.0, 'too': 2.0, 'park': 2.0, 'like': 3.0, 'hold': 1.0, 'which': 1.0, 'of': 5.0, 'the': 14.0, 'subway': 1.0, 'car': 1.0, 'brooklyn': 1.0, 'great': 1.0, 'option': 1.0, 'roomy': 1.0, 'have': 4.0, 'live': 1.0, 'i': 14.0, 'what': 1.0, 'when': 3.0, 'cooler': 1.0, 'got': 3.0, 'long': 1.0, 'on': 4.0, 'get': 1.0, 'months': 1.0, 'was': 1.0, 'to': 3.0, 'in': 5.0, 'seat': 2.0, 'shoulder': 1.0, 'don': 1.0, 'open': 1.0, 'over': 1.0, 'baby': 3.0, 'grownup': 1.0, 'how': 1.0, 'stroller': 5.0, 'hit': 1.0, 'bulky': 1.0, 'summer': 2.0, 'roading': 1.0, 'help': 1.0, 'realized': 1.0, 'heavy': 2.0, 'manageable': 1.0, 'g': 2.0, 'luxe': 2.0, 'can': 5.0, 'so': 4.0, 'transportation': 1.0, 'basket': 1.0, 'cooling': 1.0, 'is': 4.0, 'see': 1.0, 'off': 2.0, 'somewhere': 1.0, 'quite': 1.0, 'else': 1.0, 'with': 2.0, 'c': 1.0, 'but': 5.0, 'midst': 1.0, 'people': 1.0, 'holding': 1.0, 'about': 2.0, 'busy': 1.0, 'totally': 1.0, 'under': 1.0, 'etc': 1.0, 'day': 1.0, 'public': 1.0, 'while': 2.0, 'folding': 1.0, 'also': 2.0, 'easily': 1.0, 'that': 5.0, 'unfolding': 1.0, 'carry': 1.0, 'recline': 1.0, 'wear': 1.0, 'it': 10.0, 'him': 1.0, 'still': 1.0, 'course': 1.0, 'easiest': 1.0, 'for': 3.0, 'love': 1.0, 'biggest': 1.0, 'this': 1.0}
Word element => {'very': 1.0, 'before': 1.0, 'help': 1.0, 'will': 1.0, 'hope': 1.0, 'vibrating': 1.0, 'and': 3.0, 'wheels': 1.0, 'review': 1.0, 'unstable': 1.0, '2013': 1.0, 'have': 2.0, 'others': 2.0, 'looks': 2.0, 'it': 1.0, 'functional': 1.0, 'this': 3.0, 'good': 2.0, 'pay': 1.0, 'shipping': 1.0, 'i': 5.0, 'waiting': 1.0, 'outside': 1.0, 'as': 3.0, 'to': 3.0, 'its': 1.0, 'but': 2.0, 'are': 1.0, 'the': 4.0, 'not': 3.0, 'get': 1.0, 'model': 1.0, 'safe': 1.0, 'take': 1.0, 'baby': 1.0, 'around': 1.0, 'rd': 1.0, 'said': 1.0, 'in': 1.0, 'was': 2.0, 'unfortunately': 1.0, 'dint': 1.0, 'on': 1.0, 'make': 1.0, '3': 1.0, 'that': 1.0, 'being': 1.0, 'soldby': 1.0, 'purchase': 1.0, 'party': 1.0, 'a': 2.0, 'realise': 1.0, 'return': 1.0, 'seller': 1.0, 'they': 1.0, 'restocking': 1.0, 'when': 1.0, 'stroller': 3.0, 'fee': 1.0}
Word element => {'for': 1.0, 'reclines': 1.0, 'it': 1.0, 'that': 1.0, 'love': 1.0, 'stroller': 1.0, 'umbrella': 1.0, 'naps': 1.0, 'fully': 1.0, 'best': 1.0}
Word element => {'the': 1.0, 'hand': 1.0, 'with': 1.0, 'fold': 1.0, 'to': 1.0, 'easier': 1.0, 'bit': 1.0, 'excellent': 1.0, 'stroller': 1.0, 'carrying': 1.0, 'overall': 1.0, 'when': 1.0, 'one': 1.0, 'i': 1.0, 'it': 1.0, 'only': 1.0, 'baby': 1.0, 'lightweight': 1.0, 'little': 1.0, 'wish': 1.0, 'was': 1.0, 'a': 1.0}
Word element => {'forward': 1.0, 'click': 1.0, '34': 2.0, 'one': 1.0, 'really': 1.0, 'just': 1.0, 'shade': 1.0, 'too': 1.0, 'the': 2.0, 'great': 2.0, 'that': 2.0, 'about': 1.0, 'height': 1.0, 'everything': 1.0, 'i': 2.0, 'old': 1.0, 'coverage': 1.0, 'tries': 1.0, 'it': 4.0, 'tremendous': 1.0, 'wish': 1.0, 'this': 1.0, 'research': 1.0, 'love': 1.0, 'except': 1.0, 'before': 1.0, 'amount': 1.0, 'even': 1.0, 'back': 2.0, 'stroller': 1.0, 'buying': 1.0, 'its': 1.0, 'to': 2.0, 'seat': 2.0, 'of': 1.0, 'up': 1.0, 'more': 2.0, 'is': 1.0, 'reclined': 1.0, 'option': 1.0, 'at': 1.0, 'besides': 1.0, 'position': 1.0, 'a': 2.0, 's': 1.0, 'had': 1.0, 'continually': 1.0, 'most': 1.0, 'upright': 1.0, 'my': 1.0, 'pull': 1.0, '2yr': 1.0, 'sterdy': 1.0, 'did': 1.0, 'himself': 1.0, 'in': 1.0, 'little': 1.0, 'very': 1.0, 'fantastic': 1.0}
Word element => {'far': 1.0, 'so': 1.0, 'our': 1.0, 'with': 1.0, 'happy': 1.0, 'ere': 1.0, 'i': 1.0, 'it': 1.0, 's': 1.0, 'the': 1.0, 'convenient': 1.0, 'light': 1.0, 'purchase': 1.0, 'we': 1.0, 'fact': 1.0, 'very': 2.0, 'like': 1.0, 'and': 1.0, 'that': 1.0, 'weight': 1.0}
Word element => {'could': 1.0, 'over': 1.0, 'except': 1.0, 'always': 1.0, 'light': 1.0, 'constantly': 1.0, 'if': 1.0, 'stroller': 1.0, 'this': 1.0, 'it': 4.0, 'tips': 2.0, 'love': 1.0, 'about': 1.0, 'that': 1.0, 'i': 1.0, 'buy': 1.0, 'again': 1.0, 'so': 1.0, 'everything': 1.0, 'return': 1.0, 'is': 1.0, 'weight': 1.0, 'would': 2.0, 'because': 2.0, 'not': 1.0, 'and': 1.0}
Word element => {'this': 1.0, 'buy': 1.0, 'would': 1.0, 'i': 1.0, 'another': 1.0, 'a': 2.0, 'sturdy': 1.0, 'great': 2.0, 'like': 1.0, 'and': 1.0, 'quite': 1.0, 'stroller': 2.0, 'easy': 1.0, 'to': 1.0, 'assemble': 1.0, 'also': 1.0, 'price': 1.0}
Word element => {'carrying': 1.0, 't': 1.0, 'isn': 1.0, 'very': 1.0, 'only': 1.0, 'enjoyed': 1.0, 'great': 1.0, 'it': 2.0, 'stroller': 1.0, 'while': 1.0, 'shoulder': 1.0, 'traveling': 1.0, 'the': 2.0, 'with': 1.0, 'is': 1.0, 'strap': 1.0, 'comfortable': 1.0, 'that': 1.0, 'negative': 1.0}
Word element => {'strollers': 1.0, 'umbrella': 1.0, 'with': 1.0, 'of': 1.0, 'defnitely': 1.0, 'is': 1.0, 'but': 1.0, 'recommend': 1.0, 'was': 1.0, 'wish': 1.0, 'push': 1.0, 'expected': 1.0, 'easier': 1.0, 'although': 1.0, 'clean': 1.0, 'bigger': 1.0, 'keep': 1.0, 'nap': 1.0, 'originally': 1.0, 'would': 3.0, 'super': 1.0, 'had': 1.0, 'wanted': 1.0, 'black': 2.0, 'we': 2.0, 'a': 3.0, 'the': 6.0, 'lightweight': 1.0, 'liked': 1.0, 'one': 2.0, 'basket': 1.0, 'that': 2.0, 'case': 1.0, 'and': 6.0, 'be': 2.0, 'giving': 1.0, 'version': 1.0, 'take': 1.0, 'i': 3.0, 'bit': 2.0, 'blue': 2.0, 'darker': 1.0, 'lay': 1.0, 'in': 1.0, 'flat': 1.0, 'it': 1.0, 'felt': 1.0, 'she': 1.0, 'for': 1.0, 'grandparents': 1.0, 'kind': 1.0, 'easy': 1.0, 'cute': 1.0, 'ended': 1.0, 'up': 1.0, 'keeping': 1.0, 'use': 1.0, 'smooth': 1.0, 'to': 5.0, 'ourselves': 1.0, 'very': 1.0, 'extrememly': 1.0}
Word element => {'needs': 1.0, 'just': 1.0, 'most': 1.0, 'while': 1.0, 'lock': 1.0, 'that': 1.0, 'opening': 1.0, 'pedals': 1.0, 'pedal': 1.0, 'stroller': 1.0, 'back': 1.0, 'of': 1.0, 'up': 1.0, 'folding': 1.0, 'only': 1.0, 'it': 2.0, 'one': 1.0, 'love': 1.0, 'canopy': 1.0, 'large': 1.0, 'and': 2.0, 'ease': 1.0, 'the': 4.0, 'con': 1.0, 'have': 2.0, 'is': 1.0, 'on': 2.0, 'to': 3.0, 'i': 2.0, 'step': 2.0, 'two': 1.0}
Word element => {'holding': 1.0, 'done': 1.0, 'very': 1.0, 'close': 1.0, 'this': 1.0, 'while': 1.0, 'stick': 1.0, 'triggers': 1.0, 'does': 1.0, 'than': 1.0, 'be': 1.0, 'multiple': 1.0, 'being': 1.0, 'position': 1.0, 'making': 1.0, 'gets': 1.0, 'difficult': 1.0, 'not': 2.0, 'of': 1.0, 'pushed': 1.0, 'closure': 1.0, 'love': 1.0, 'for': 1.0, 'more': 1.0, 'is': 1.0, 'people': 1.0, 'that': 1.0, 'easily': 1.0, 'when': 1.0, 'you': 3.0, 'thie': 1.0, 'stroller': 3.0, 'also': 1.0, 'will': 1.0, 'the': 6.0, 'are': 1.0, 'my': 1.0, 'wheels': 2.0, 'pull': 1.0, 'only': 1.0, 'it': 2.0, 'with': 1.0, 'down': 1.0, 'complaint': 1.0, 'so': 1.0, 'really': 1.0, 'lock': 1.0, 'brakes': 1.0, 'to': 1.0, 'nyc': 1.0, 'think': 1.0, 'on': 1.0, 'your': 2.0, 'up': 3.0, 'child': 2.0, 'surprisingly': 1.0, 'in': 2.0, 'problem': 1.0, 'can': 1.0, 'but': 1.0, 'most': 1.0, 't': 1.0, 'going': 1.0, 'steps': 3.0, 'a': 1.0, 'go': 1.0, 'and': 2.0}
Word element => {'old': 1.0, 'to': 1.0, 'through': 1.0, 'my': 1.0, 'stroller': 1.0, 'for': 2.0, 'travel': 1.0, 'and': 1.0, 'highly': 1.0, '16': 1.0, 'is': 2.0, 'upright': 1.0, 'this': 1.0, 'got': 1.0, 'month': 1.0, 'light': 1.0, 'recommend': 1.0, 'stands': 1.0, 'easy': 1.0, 'strap': 1.0, 'carrying': 1.0, 'a': 1.0, 'maneuver': 1.0, 'crowds': 1.0}
Word element => {'a': 1.0, 'stroller': 1.0, 'but': 1.0, 'easy': 1.0, 'strollers': 1.0, 'umbrella': 1.0, 'plush': 1.0, 'sturdy': 1.0, 'lightweight': 2.0, 'the': 1.0, 'is': 1.0, 'very': 1.0, 'ulitmate': 1.0, 'in': 2.0, 'screen': 1.0, 'i': 1.0, 'this': 1.0, 'nice': 1.0, 'recline': 1.0, 'sun': 1.0, 'excellent': 1.0, 'wanted': 1.0, 'to': 1.0, 'up': 1.0, 'fold': 1.0, 'everything': 1.0}
Word element => {'happy': 1.0, 'm': 1.0, 'in': 1.0, 'strollers': 1.0, 'name': 1.0, 'other': 1.0, 'lot': 1.0, 'compared': 1.0, 'foot': 1.0, 'on': 3.0, 'can': 1.0, 'but': 2.0, 'will': 2.0, 'brand': 2.0, 'how': 1.0, 'the': 4.0, 'this': 2.0, 'first': 1.0, 'truly': 1.0, 'it': 1.0, 'with': 2.0, 'luxe': 1.0, 'selection': 1.0, 'market': 1.0, 'opening': 1.0, 'i': 7.0, 'by': 1.0, 'mom': 1.0, 'am': 1.0, 'when': 1.0, 'more': 1.0, 'say': 2.0, 'of': 2.0, 'meets': 1.0, 'practicality': 1.0, 'that': 2.0, 'closing': 1.0, 'easy': 1.0, 'go': 2.0, 'proud': 1.0, 'a': 3.0, 'to': 2.0, 'as': 1.0, 'tend': 1.0, 'time': 1.0, 'so': 1.0, 'comfortable': 1.0, 'one': 1.0, 'love': 1.0, 'lightweight': 1.0, 'my': 1.0, 'little': 1.0, 'mommy': 1.0, 'commuting': 1.0, 'feels': 1.0, 'especially': 1.0, 'and': 4.0, 'not': 1.0, 'me': 1.0, 'uppababy': 1.0, 'provides': 1.0, 'g': 1.0, 'standards': 1.0}
Word element => {'extremely': 1.0, 'this': 1.0, 'designer': 1.0, 'so': 1.0, 'email': 1.0, 'will': 1.0, 'could': 2.0, 'yet': 1.0, 'any': 1.0, 'had': 1.0, 'haven': 1.0, 's': 2.0, 'since': 1.0, 'said': 1.0, 'issue': 2.0, 'have': 1.0, 'vista': 1.0, 'happened': 1.0, 'available': 1.0, 'video': 2.0, 'soon': 1.0, 'and': 6.0, 'annoying': 1.0, 'as': 3.0, 'a': 3.0, 'replacement': 2.0, 't': 5.0, 'going': 1.0, 'fixed': 2.0, 'to': 3.0, 'became': 1.0, 'through': 1.0, 'them': 2.0, 'didn': 1.0, 'designed': 1.0, 'they': 8.0, 'we': 1.0, 'reviews': 1.0, 'about': 2.0, 'sent': 2.0, 'anymore': 1.0, 'you': 1.0, 'severe': 1.0, 'came': 1.0, 'g': 1.0, 'although': 1.0, 'actually': 1.0, 'for': 1.0, 'which': 2.0, 'returning': 1.0, 'know': 1.0, 'like': 1.0, 'need': 1.0, 'forth': 1.0, 'nice': 1.0, 'headquarters': 1.0, 'back': 2.0, 'if': 2.0, 'asked': 1.0, 'service': 2.0, 'thing': 1.0, 'uppababy': 2.0, 'it': 4.0, 'speak': 1.0, 'really': 1.0, 'quality': 1.0, 'wheels': 3.0, 'their': 2.0, 'customer': 2.0, 'at': 1.0, 'called': 2.0, 'newly': 1.0, 'stringent': 1.0, 'after': 1.0, 'send': 1.0, 'below': 1.0, 'me': 2.0, 'forward': 1.0, 'not': 1.0, 'massachusetts': 1.0, 'but': 1.0, 'seeing': 1.0, 'other': 1.0, 'solved': 1.0, 'problem': 1.0, 'very': 1.0, 'too': 1.0, 'happy': 1.0, 'immediately': 1.0, 'sort': 1.0, 'cart': 1.0, 'now': 1.0, 'shopping': 1.0, 'stroller': 2.0, 'isn': 1.0, 'don': 2.0, 'do': 1.0, 'wheel': 3.0, 'more': 1.0, 'control': 1.0, 'initially': 1.0, 'that': 4.0, 'with': 3.0, 'oh': 1.0, 'calls': 1.0, 'i': 5.0, 'well': 1.0, 'vibration': 3.0, 'review': 1.0, '2013': 1.0, 'see': 1.0, 'original': 1.0, 'why': 1.0, 'just': 1.0, 'also': 1.0, 'received': 1.0, 'new': 1.0, 'luxe': 1.0, 'spins': 1.0, 'noticed': 1.0, 'front': 4.0, 'people': 1.0, 'both': 1.0, 'the': 9.0, 'of': 1.0, 'be': 1.0, 'randomly': 1.0, 'same': 1.0}
Word element => {'in': 1.0, 'viewed': 1.0, 'have': 1.0, 'others': 1.0, 'compared': 1.0, 'it': 1.0, 'pad': 1.0, 'with': 1.0, 'unimpressed': 1.0, 'being': 1.0, '5': 1.0, 'receive': 1.0, 'not': 1.0, 'did': 1.0, 'reason': 1.0, 'motion': 1.0, 'combinations': 1.0, 'e': 1.0, 'very': 1.0, 'adorable': 1.0, 'scheme': 1.0, 'color': 1.0, 'thin': 1.0, 'friendly': 1.0, 'neutral': 1.0, 'the': 6.0, 'gender': 1.0, 'only': 1.0, 'nursery': 1.0, 'prefect': 1.0, 'wipes': 1.0, 'mattress': 1.0, 'this': 2.0, 'sweet': 1.0, 'is': 4.0, 'many': 1.0, 'fine': 1.0, 'a': 4.0, 'of': 1.0, 'great': 1.0, 'unisex': 1.0, 'due': 1.0, 'bassinet': 1.0, 'stars': 1.0, 'themed': 1.0, 'lamb': 1.0, 'for': 3.0, 'sway': 1.0, 'and': 1.0, 'sounds': 1.0, 'to': 2.0, 'store': 1.0, 'was': 1.0, 'soothe': 1.0, 'fussy': 1.0, 'underneath': 1.0, 'baby': 1.0, 'storage': 1.0, 'wheels': 1.0, 'allow': 1.0, 'easily': 1.0, 'mobility': 1.0, 'are': 1.0, 'blanket': 1.0, 'few': 1.0, 'light': 1.0, 'items': 1.0, 'i': 2.0, 'diapers': 1.0}
Word element => {'at': 1.0, 'in': 1.0, 'i': 2.0, 'anything': 1.0, 'other': 1.0, 'diapers': 1.0, 'container': 1.0, 'of': 2.0, 'top': 1.0, 'large': 1.0, 'soothed': 1.0, 'with': 1.0, 'timer': 1.0, 'lulling': 1.0, 'sleep': 2.0, 'to': 2.0, 'timed': 1.0, 'into': 1.0, 'that': 4.0, 'rocking': 1.0, 'stored': 1.0, 'music': 1.0, 'can': 6.0, 'or': 1.0, 'motion': 1.0, 'first': 3.0, 'sounds': 2.0, 'think': 1.0, 'on': 3.0, 'beautiful': 2.0, 'has': 3.0, 'infant': 1.0, 'bed': 1.0, 'love': 1.0, 'where': 1.0, 'for': 2.0, 'one': 1.0, 'parents': 1.0, 'bassinet': 2.0, 'mother': 1.0, 'this': 2.0, 'perfect': 2.0, 'be': 5.0, 't': 1.0, 'necessities': 1.0, 'a': 3.0, 's': 2.0, 'depending': 1.0, 'heartbeat': 1.0, 'baby': 3.0, 'underneath': 1.0, 'another': 1.0, 'moved': 1.0, 'and': 4.0, 'fell': 1.0, 'it': 5.0, 'looks': 1.0, 'more': 1.0, 'is': 1.0, 'makes': 1.0, 'boot': 1.0, 'like': 1.0, 'rolling': 1.0, 'sight': 1.0, 'the': 2.0, 'casters': 1.0, 'an': 1.0, 'locked': 1.0, 'needs': 1.0, 'so': 2.0, 'from': 1.0, 'room': 1.0, 'plays': 1.0}
Word element => {'to': 1.0, 'for': 1.0, 'use': 1.0, 'easy': 1.0, 'him': 1.0, 'it': 1.0, 'make': 1.0, 'handles': 1.0, 'loved': 1.0, 'and': 2.0, 'baby': 1.0, 'by': 1.0, 'from': 1.0, 'bottle': 1.0, 'is': 1.0, 'himself': 1.0, 'nice': 1.0, 'transitioning': 1.0, 'spout': 1.0, 'soft': 1.0}
Word element => {'use': 1.0, 'learn': 1.0, 'trying': 1.0, 'for': 1.0, 'recommend': 1.0, 'leaks': 1.0, 'back': 1.0, 'liquid': 1.0, 'help': 1.0, 'transition': 1.0, 'seemed': 1.0, 'great': 1.0, 'sip': 1.0, 'than': 1.0, 'one': 2.0, 'bought': 1.0, 'months': 1.0, 'after': 1.0, 'sometimes': 1.0, 'so': 2.0, 'what': 1.0, 'had': 2.0, 'from': 5.0, 'part': 1.0, 'while': 1.0, 'hard': 1.0, 'as': 2.0, 'all': 1.0, 'however': 1.0, 'know': 2.0, 'like': 1.0, 'sippy': 2.0, 'baby': 3.0, 'on': 2.0, 'playtex': 1.0, 'that': 1.0, 'because': 1.0, 'silicone': 1.0, 'didn': 1.0, 'a': 5.0, 't': 1.0, 's': 1.0, 'take': 1.0, 'to': 6.0, 'pretty': 1.0, 'spout': 4.0, 'once': 1.0, 'the': 10.0, 'of': 1.0, 'do': 2.0, 'much': 1.0, 'took': 1.0, 'putting': 1.0, 'well': 1.0, 'i': 3.0, 'cup': 8.0, 'my': 1.0, 'drink': 3.0, 'he': 5.0, 'how': 2.0, 'first': 3.0, 'with': 1.0, 'began': 1.0, 'would': 1.0, 'either': 1.0, 'sucking': 1.0, 'without': 1.0, 'soft': 1.0, 'anything': 1.0, 'liked': 1.0, 'better': 1.0, 'any': 1.0, 'sipster': 3.0, 'probably': 1.0, 'at': 2.0, 'is': 6.0, 'him': 2.0, 'it': 5.0, 'seems': 1.0, 'could': 1.0, 'will': 3.0, '8': 1.0, 'down': 1.0, '5': 1.0, 'and': 1.0, 'banging': 1.0, 'but': 2.0, 'now': 1.0, 'almost': 1.0, 'always': 1.0, 'spill': 1.0, 'proof': 1.0, 'in': 1.0, 'highly': 1.0, 'bottle': 1.0, 'nuk': 3.0, 'this': 8.0, 'few': 1.0, 'drops': 1.0, 'if': 1.0, 'leak': 1.0, 'upside': 1.0, 'really': 1.0, 'barely': 1.0, 'impressive': 1.0, 'little': 1.0}
Word element => {'just': 1.0, 'cheaper': 1.0, 'bottle': 1.0, 'i': 2.0, 'cups': 1.0, 'a': 3.0, 'they': 1.0, 'these': 1.0, 'work': 1.0, 'were': 1.0, 'love': 1.0, 'great': 1.0, 'wish': 1.0, 'kid': 1.0, 'for': 1.0, 'weaning': 1.0, 'little': 1.0, 'off': 1.0}
Word element => {'nuk': 1.0, '10': 1.0, 've': 1.0, 'love': 1.0, 'one': 1.0, 'except': 1.0, 'any': 1.0, 'purchased': 1.0, 'use': 1.0, 'would': 1.0, 'now': 1.0, 'was': 1.0, '12': 1.0, 'of': 3.0, 'sippy': 1.0, 'from': 1.0, 'must': 1.0, 'cup': 1.0, 'my': 1.0, 'i': 1.0, 'tried': 1.0, 'and': 2.0, 'drink': 1.0, 'them': 3.0, 'child': 1.0, 'out': 1.0, 'wouldn': 1.0, 'only': 1.0, 'this': 2.0, 'have': 2.0, 'ones': 1.0, 'the': 2.0, 't': 1.0, 'we': 2.0, 'oz': 1.0, '5': 1.0, 'different': 1.0, 'too': 1.0, 'cups': 1.0, 'she': 1.0}
Word element => {'superb': 1.0, 'now': 1.0, 'one': 1.0, 'years': 1.0, 'us': 1.0, 'll': 1.0, 'second': 1.0, 'expect': 1.0, 'come': 1.0, 'ride': 1.0, 'new': 1.0, 'his': 1.0, 'itself': 1.0, 'installs': 1.0, 'big': 1.0, 'install': 1.0, 'easy': 1.0, 'car': 2.0, 'this': 1.0, 'yes': 1.0, 'last': 1.0, 'wrote': 1.0, 'what': 1.0, 'of': 1.0, 'dream': 1.0, 'only': 1.0, 'from': 1.0, 'very': 1.0, 'those': 1.0, 'other': 2.0, 'except': 1.0, 'impressed': 1.0, 't': 1.0, 'could': 1.0, 'we': 3.0, 'a': 3.0, 'you': 1.0, 'am': 1.0, 'getting': 1.0, 'graduated': 1.0, 'loves': 1.0, 'that': 2.0, 'is': 1.0, 'say': 1.0, 'more': 1.0, 'the': 4.0, 're': 2.0, 'another': 1.0, 'my': 2.0, 'goodness': 1.0, 'manufacturers': 1.0, 'experience': 1.0, 'after': 1.0, 'reading': 1.0, 'britax': 3.0, 'thank': 1.0, 'takes': 1.0, 'for': 3.0, 'product': 2.0, 'oh': 1.0, 'and': 3.0, 'stellar': 1.0, 'notch': 1.0, 'reviews': 1.0, 'but': 1.0, 'quality': 1.0, 'our': 1.0, 'seat': 1.0, 'to': 3.0, 'all': 1.0, 'wonderful': 1.0, 'i': 4.0, 'expecting': 1.0, 'was': 1.0, 'boy': 1.0, 'practically': 1.0, 'so': 2.0, 'advocate': 1.0, 'familiar': 1.0, 'others': 1.0, 'already': 2.0, 'with': 1.0, 'pinnacle': 1.0, 'it': 3.0, 'truly': 1.0, 'many': 1.0, 'further': 1.0, 'delivers': 1.0, 'even': 1.0, 'safety': 1.0, 'repeat': 1.0, 'won': 1.0, 'comfort': 1.0, 'convenience': 1.0}
Word element => {'made': 1.0, 'well': 1.0, 'seat': 1.0, 'car': 1.0, 'loves': 1.0, '38lbs': 1.0, 'my': 1.0, 'this': 1.0, 'it': 1.0, 'comfortable': 1.0, 'years': 1.0, '4': 1.0, 'to': 1.0, 'was': 1.0, 'safe': 1.0, 'super': 1.0, 'old': 1.0, 'took': 1.0, '5': 1.0, 'easy': 1.0, 'and': 1.0, 'me': 1.0, 'all': 1.0, 'install': 1.0, 'minutes': 1.0, 'looks': 1.0, 'very': 2.0}
Word element => {'thru': 1.0, 'jump': 1.0, 'car': 1.0, 'when': 1.0, 'than': 1.0, 'ladders': 1.0, 'breeze': 1.0, 'is': 1.0, 'of': 2.0, 'version': 1.0, 'like': 1.0, 'they': 1.0, 'think': 1.0, 'on': 2.0, 'me': 1.0, 'hoops': 1.0, 'advocate': 5.0, 'did': 1.0, 'driver': 1.0, 'britax': 2.0, 'her': 5.0, 'carseat': 1.0, 'move': 1.0, 'legs': 1.0, 'just': 1.0, 'pockets': 1.0, 'got': 1.0, 'able': 1.0, 'convertible': 1.0, 'easier': 1.0, 'stoplight': 1.0, 'another': 1.0, 'my': 1.0, 'accident': 1.0, 'much': 2.0, 'end': 1.0, 'install': 2.0, 'drunk': 1.0, 'sold': 1.0, 'and': 5.0, 'air': 1.0, 'in': 3.0, 'for': 2.0, 'booster': 1.0, 'daughter': 1.0, 'freely': 1.0, 'this': 3.0, 'she': 1.0, 'it': 2.0, 'into': 1.0, 'loves': 2.0, 'had': 3.0, 'injuries': 1.0, 'wanted': 1.0, 'being': 1.0, 'saved': 1.0, 'i': 4.0, 'unlike': 1.0, 'ever': 1.0, 'buy': 1.0, 'the': 8.0, '40mph': 1.0, 'from': 1.0, 'one': 1.0, 'decided': 1.0, 'our': 1.0, 'as': 2.0, 'to': 5.0, 'any': 1.0, 'going': 1.0, 'a': 2.0, 'we': 2.0, 'were': 1.0, 'rear': 1.0, 'since': 1.0, 'at': 1.0}
Word element => {'of': 1.0, 'out': 1.0, 'can': 1.0, 'loves': 1.0, 'easy': 1.0, 'she': 1.0, 'to': 1.0, 'get': 1.0, 'and': 3.0, 'so': 1.0, 'in': 2.0, 'daughter': 1.0, 'car': 1.0, 'holders': 1.0, 'secure': 1.0, 'buckles': 1.0, 'boulevard': 1.0, 'seat': 1.0, 'tight': 1.0, 'love': 1.0, 'this': 2.0, 'it': 2.0, 'money': 1.0, 'i': 1.0, 'feels': 1.0, 'well': 1.0, 'worth': 1.0, 'upgraded': 1.0, 'the': 3.0, 'cup': 1.0, 'my': 1.0, 'very': 1.0, 'from': 1.0}
Word element => {'recommend': 1.0, 'though': 1.0, 'by': 1.0, 'how': 1.0, 'sure': 1.0, 'recommending': 1.0, 'buying': 1.0, 'sticking': 1.0, 'acceptable': 1.0, 'she': 1.0, 'with': 2.0, 'tall': 2.0, 'questionable': 1.0, 'daughter': 1.0, 'wrong': 1.0, 'overall': 1.0, 'they': 2.0, 'fish': 1.0, 'pros': 1.0, 'straps': 5.0, 'cons': 1.0, 't': 3.0, 'belt': 4.0, 'reference': 1.0, 'get': 3.0, 'will': 8.0, 'niece': 1.0, 'clek': 4.0, 'could': 2.0, 'ness': 1.0, 'for': 3.0, 'such': 1.0, 'bubble': 1.0, 'former': 1.0, 'seat': 15.0, 'britaxy': 1.0, 'minutes': 1.0, 'love': 1.0, 'sienna': 1.0, 'unfortunately': 1.0, 'was': 3.0, 'that': 6.0, 'installation': 1.0, 'specifically': 1.0, 'spend': 1.0, 'likes': 1.0, 'himself': 1.0, 'he': 2.0, 'him': 2.0, '40': 1.0, 'thought': 1.0, 'very': 3.0, 'find': 1.0, 'lap': 2.0, 'darn': 1.0, 'behind': 1.0, 'market': 1.0, 'from': 3.0, 'p': 1.0, 'attached': 1.0, 'center': 1.0, 'the': 32.0, 'on': 5.0, 'near': 1.0, 'child': 2.0, 'year': 5.0, 'up': 2.0, 'simple': 1.0, 'i': 17.0, 'you': 2.0, 'buckling': 1.0, '9': 2.0, 'am': 1.0, 'in': 6.0, 'non': 1.0, 'three': 1.0, 'even': 1.0, 'of': 9.0, 'old': 6.0, 'brand': 1.0, 'really': 2.0, 'every': 1.0, 'if': 2.0, 'decent': 1.0, 'a': 12.0, 'much': 1.0, 'do': 1.0, 'butt': 2.0, '34': 4.0, 'runner': 1.0, 'almost': 2.0, 'an': 3.0, 'buckle': 3.0, 'about': 1.0, 'feed': 1.0, 'twisty': 2.0, 'car': 1.0, 'again': 2.0, 'cpst': 1.0, 'children': 1.0, 'expect': 1.0, 've': 1.0, 'adjuster': 3.0, 'dorel': 1.0, 'it': 9.0, 'be': 5.0, 'graco': 1.0, 'used': 1.0, 'right': 1.0, 'to': 17.0, 'high': 1.0, 'prefer': 1.0, 'each': 1.0, 'wait': 1.0, 'cushioned': 2.0, 'should': 2.0, 'previous': 1.0, 'but': 4.0, 'soft': 1.0, 'lbs': 1.0, 'flopping': 1.0, 'this': 6.0, 'tightening': 2.0, 'say': 1.0, 'heavy': 1.0, 'completely': 1.0, 'is': 5.0, 'side': 1.0, 'good': 1.0, 'sort': 1.0, 'across': 1.0, 'cushions': 1.0, 'parents': 1.0, 'compared': 1.0, 'britax': 3.0, 'room': 1.0, 'my': 13.0, 'are': 5.0, 'passing': 1.0, 'large': 1.0, 'so': 3.0, 'have': 7.0, 'cpsts': 1.0, 'situation': 1.0, 'cannot': 1.0, 'thing': 1.0, 'son': 3.0, 'seats': 1.0, 'and': 9.0, 'just': 2.0, 'reasonably': 1.0, 'forget': 1.0, '5': 2.0, 'one': 1.0, '3': 1.0, 'too': 1.0, 'some': 1.0, 'not': 6.0, 'twisted': 1.0, 'supposed': 1.0, 'stop': 1.0, 'backwards': 1.0, 'crack': 1.0, 'ends': 1.0, 'out': 1.0, 'loose': 1.0, 'still': 5.0, 'super': 1.0, 'his': 1.0, 'unless': 1.0, 'dedicated': 1.0, 'couple': 2.0, 'chair': 1.0, 'did': 1.0, 'top': 1.0, 'time': 1.0, 'under': 1.0, 'gets': 1.0, 'versa': 1.0, 'tether': 2.0, 'now': 1.0, 'slide': 1.0, 'outweigh': 1.0, 'off': 1.0, 'expensive': 1.0, 'doesn': 1.0, 's': 3.0, 'pushing': 1.0, 'closer': 1.0, 'fabric': 1.0, 'towards': 2.0, 'way': 1.0, 'quick': 1.0, 'than': 2.0, 'reach': 1.0, 'shouldn': 2.0, 'only': 1.0, 'then': 2.0, 'inch': 1.0, 'slack': 1.0, 'or': 2.0, 'grown': 1.0, 'less': 1.0, 'as': 3.0, 'enough': 1.0, 'tight': 1.0, 'wins': 1.0, 'properly': 1.0, 'latch': 1.0, 'sitting': 1.0, 'need': 1.0, 'harness': 3.0, 'fit': 4.0, 'easy': 2.0, 'fix': 1.0, 'tighten': 2.0, 'down': 2.0, 'captain': 1.0, 'vehicle': 1.0, 'strap': 2.0, 'more': 2.0, 'fair': 1.0, 'booster': 2.0, 'encloses': 1.0, 'foonf': 2.0, 'place': 1.0, 'years': 1.0, 'back': 1.0, 'check': 2.0, 'realized': 1.0, 'had': 1.0}
Word element => {'cover': 1.0, 'remove': 1.0, 'clean': 1.0, 'heavier': 1.0, 'significantly': 1.0, 'far': 1.0, 'by': 1.0, 'seen': 1.0, 'bulky': 1.0, 'itcons': 1.0, 'sitting': 1.0, 'liked': 1.0, 'kid': 2.0, 'tightly': 1.0, 'installed': 1.0, 've': 1.0, 'seatbelt': 1.0, 'done': 1.0, 'until': 1.0, 'between': 1.0, 'extremely': 1.0, 'dragging': 1.0, 'much': 2.0, 'put': 2.0, 'do': 2.0, 'adds': 1.0, 'convinced': 1.0, 'luckily': 1.0, 'back': 4.0, 'seats': 2.0, 'install': 1.0, 'up': 1.0, 'wide': 1.0, 'extra': 2.0, 'trying': 1.0, 'assembly': 1.0, 'latch': 3.0, 'safety': 2.0, 'am': 1.0, 'testing': 1.0, 'that': 7.0, 'fall': 1.0, 'to': 6.0, 'mechanism': 1.0, 'freeway': 1.0, 'click': 2.0, 'insurance': 1.0, 'installs': 1.0, 'this': 7.0, 'since': 2.0, '1': 2.0, 'he': 1.0, 'fold': 1.0, 'solid': 1.0, 'upgrade': 1.0, 'so': 5.0, 'would': 2.0, 'an': 3.0, 'combo': 1.0, 'other': 1.0, 'way': 1.0, 'all': 1.0, 'but': 3.0, 'gets': 1.0, 'hose': 1.0, 'cars': 2.0, 'no': 1.0, 'boulevard': 3.0, 'not': 8.0, 'dry': 1.0, 'two': 1.0, 'iihs': 1.0, '4': 1.0, 'let': 1.0, 'they': 2.0, 'replace': 2.0, 'booster': 1.0, 'i': 7.0, 'law': 1.0, 'real': 2.0, 'classification': 1.0, 'middle': 1.0, 'we': 2.0, 'go': 1.0, 'a': 11.0, 'small': 1.0, 'parkway': 1.0, 't': 6.0, 'belt': 2.0, 'big': 1.0, 'automatically': 1.0, 'the': 36.0, 'sunshine': 2.0, 'crash': 1.0, 'people': 2.0, 'large': 1.0, 'bmw': 1.0, 'best': 2.0, 'significant': 1.0, 'car': 6.0, 'have': 2.0, 'can': 4.0, 'is': 14.0, 'fit': 2.0, 'easy': 1.0, 'safeeasy': 1.0, 'accident': 4.0, 'width': 1.0, 'with': 6.0, 'using': 3.0, 'which': 1.0, 'good': 1.0, 'had': 5.0, 'just': 1.0, 'and': 18.0, 'warm': 1.0, 'was': 4.0, 'together': 1.0, 'in': 13.0, 'seat': 20.0, 'wasn': 1.0, 'mini': 1.0, 'rear': 1.0, 'douse': 1.0, 'lot': 1.0, 'widest': 1.0, 'x3': 1.0, 'hard': 5.0, 'over': 1.0, 'ended': 1.0, 'on': 1.0, 'snug': 1.0, 's': 1.0, 'our': 2.0, 'delta': 1.0, 'recommend': 1.0, '10mph': 1.0, 'damage': 1.0, 'easily': 1.0, 'looks': 1.0, 'freedom': 1.0, 'child': 3.0, 'year': 1.0, 'visible': 1.0, 'buckles': 1.0, 'll': 1.0, 'side': 1.0, 'alone': 1.0, 'loved': 1.0, 'fact': 1.0, 'thought': 2.0, 'institute': 1.0, 'bet': 2.0, 'for': 1.0, 'means': 2.0, 'bucket': 2.0, 'highway': 1.0, 'my': 2.0, 'are': 2.0, 'does': 4.0, 'tests': 1.0, 'brtiax': 1.0, 'give': 1.0, 'there': 2.0, 'pinnacle': 1.0, 'frontier': 1.0, 'three': 1.0, 'old': 1.0, 'protection': 3.0, 'of': 2.0, 'brands': 1.0, 'get': 3.0, 'category': 1.0, 'each': 1.0, 'around': 1.0, 'isn': 2.0, 'squished': 1.0, 'don': 1.0, 'great': 1.0, 'if': 1.0, 'very': 3.0, 'thing': 1.0, 'cannot': 1.0, 'padding': 1.0, 'foam': 1.0, 'got': 1.0, 'mildew': 1.0, 'as': 3.0, 'heaviest': 1.0, 'plastic': 1.0, 'you': 11.0, 'use': 2.0, 'anyway': 1.0, 'pros': 1.0, 'takes': 1.0, 'wash': 1.0, 'down': 1.0, 'well': 2.0, 'cooper': 1.0, 'wet': 1.0, '3': 1.0, 'addition': 1.0, 'cleaning': 1.0, 'insanely': 1.0, 'getting': 2.0, 'problem': 1.0, 'pads': 1.0, 'off': 1.0, 'maybe': 1.0, 'complicated': 1.0, 'panels': 1.0, 'out': 2.0, 'when': 1.0, 'impossible': 1.0, 'base': 1.0, 'spray': 1.0, 'somewhere': 1.0, 'confirmation': 1.0, 'pretty': 2.0, 'any': 1.0, 'then': 2.0, 'challenge': 1.0, 'lastly': 1.0, 'really': 1.0, '2': 1.0, 'going': 1.0, 'fully': 1.0, 'it': 18.0, 'be': 1.0, 'heavy': 2.0, 'completely': 1.0}
Word element => {'have': 1.0, 'seats': 1.0, 'much': 1.0, 's': 1.0, 'one': 1.0, 'bought': 1.0, 've': 1.0, 'she': 1.0, 'baby': 1.0, 'upgrade': 1.0, 'the': 3.0, 'my': 1.0, 'seat': 2.0, 'car': 3.0, 'it': 1.0, 'this': 2.0, 'thinner': 1.0, 'loves': 2.0, '3': 1.0, 'other': 1.0, 'we': 2.0, 'daughter': 1.0, 'beginning': 1.0, 'which': 1.0, 'than': 1.0, 'wish': 1.0, 'her': 2.0, 'britax': 2.0, 'uses': 1.0, 'old': 1.0, 'i': 1.0, 'very': 1.0, 'from': 2.0, 'brother': 1.0, 'now': 1.0, 'would': 1.0}
Word element => {'right': 1.0, 'trust': 1.0, 'used': 1.0, 'disappointed': 1.0, 'very': 1.0, 'until': 1.0, 'this': 1.0, 'be': 1.0, 'should': 1.0, 'fix': 2.0, 'few': 1.0, 'last': 1.0, 'working': 1.0, 'in': 1.0, 'said': 1.0, 'aware': 2.0, 'returning': 1.0, 'engineers': 1.0, 'were': 1.0, 'again': 1.0, 'back': 1.0, 'it': 2.0, 'will': 1.0, 'sure': 1.0, 'get': 1.0, 'and': 4.0, 'is': 1.0, 'issue': 2.0, 'flaw': 1.0, 'course': 1.0, 'concern': 1.0, 'replacement': 1.0, 'including': 1.0, 'sent': 1.0, 'company': 1.0, 'my': 1.0, 'son': 1.0, 'recalled': 1.0, 'selling': 1.0, 'months': 1.0, 'one': 1.0, 'where': 1.0, 'love': 1.0, 'straps': 1.0, 'stuck': 1.0, 'certain': 1.0, 'harness': 1.0, 'have': 1.0, 'contacted': 1.0, 'make': 1.0, 'except': 1.0, 'away': 1.0, 'major': 2.0, 'pinnacle': 2.0, 'design': 2.0, 'not': 2.0, 'to': 3.0, 'seat': 3.0, 'safety': 1.0, 'heights': 1.0, 'problem': 3.0, 'tighten': 1.0, 'i': 2.0, 'can': 1.0, 'the': 11.0, 'believe': 1.0, 'are': 1.0, 'called': 1.0, 'britax': 2.0, 'of': 3.0, 'hasn': 1.0, 'them': 1.0, 'they': 5.0, 's': 2.0, 't': 2.0, 'we': 2.0, 'a': 3.0, 'at': 2.0, 'since': 2.0, 'car': 3.0, 'that': 1.0, 'had': 2.0, 'same': 1.0}
Word element => {'install': 1.0, 'to': 1.0, 'was': 1.0, 'it': 1.0, 'easy': 1.0, 'how': 1.0, 'i': 1.0, 'with': 2.0, 'the': 1.0, 'my': 1.0, 'quality': 1.0, 'very': 1.0, 'seats': 1.0, 'and': 2.0, 'am': 1.0, 'happy': 1.0, 'car': 2.0, 'other': 1.0, 'this': 1.0, 'replaced': 1.0, 'seat': 1.0}
Word element => {'5': 1.0, 'd': 1.0, 'in': 1.0, 'stars': 1.0, 'otherwise': 1.0, 'unused': 1.0, 'but': 2.0, 'instead': 1.0, 'for': 1.0, 'one': 2.0, 'i': 2.0, '34': 2.0, 'that': 1.0, 'box': 1.0, 'opened': 1.0, 'ordered': 1.0, 'it': 2.0, 'was': 3.0, 'to': 1.0, 'supposed': 1.0, 'be': 1.0, 'the': 4.0, 'manhattan': 1.0, 'my': 1.0, 'color': 1.0, 'son': 1.0, 'pink': 1.0, 'give': 1.0, 'shipped': 1.0}
Word element => {'now': 1.0, 'their': 1.0, 'about': 1.0, 'course': 1.0, 'thank': 1.0, 'britax': 2.0, 'fail': 1.0, 'never': 1.0, 'leading': 1.0, 'both': 1.0, 'use': 1.0, 'also': 1.0, 'grand': 1.0, 'install': 1.0, 'cinch': 1.0, 'need': 1.0, 'but': 1.0, 'rigs': 1.0, 'seats': 2.0, 'trading': 1.0, 'on': 2.0, 'is': 1.0, 'plan': 1.0, 'don': 1.0, 'spent': 1.0, 'awesome': 1.0, 'super': 1.0, 'it': 1.0, 'car': 3.0, 'suspicious': 1.0, 'guru': 1.0, 'and': 3.0, 'wow': 1.0, 'me': 1.0, 'you': 1.0, 'am': 1.0, 'safety': 2.0, 'in': 6.0, 'click': 4.0, 'i': 10.0, 'belt': 1.0, 'was': 4.0, 'its': 4.0, 'had': 1.0, 'always': 1.0, 'of': 2.0, 'want': 1.0, 'if': 2.0, 'every': 1.0, 'little': 2.0, 'have': 2.0, 'cause': 1.0, 'between': 1.0, 'usual': 1.0, 'this': 3.0, 'with': 1.0, 'for': 1.0, 'love': 1.0, 'actually': 1.0, 'one': 2.0, 'huge': 1.0, 'sucked': 1.0, 'boy': 1.0, 'so': 4.0, 'order': 1.0, 'tightly': 1.0, 'tight': 4.0, 'like': 1.0, 'designs': 1.0, 'hard': 1.0, 'part': 1.0, 'the': 4.0, 'van': 1.0, 'surprised': 1.0, 'pulling': 1.0, 'seat': 3.0, 'to': 7.0, 'actual': 1.0, 'as': 1.0, 'that': 1.0, 'latch': 1.0, 'let': 1.0, 't': 1.0, 'going': 1.0, 'a': 6.0, 'go': 1.0, 'pressure': 1.0}
Word element => {'how': 1.0, 'strap': 1.0, 'where': 1.0, 'through': 1.0, 'try': 1.0, 'its': 1.0, 'some': 1.0, 'time': 1.0, 'out': 1.0, 'unable': 1.0, 'crotch': 1.0, 'was': 1.0, 'my': 1.0, 'smells': 1.0, 'when': 1.0, 'recently': 1.0, 'if': 1.0, 'area': 1.0, 'get': 2.0, 'and': 6.0, 'clean': 2.0, 'well': 1.0, 'review': 1.0, 'child': 1.0, 'matter': 1.0, 'hard': 1.0, 'this': 3.0, 'it': 2.0, 'carseat': 2.0, 'write': 1.0, 'of': 2.0, 'there': 2.0, 'bottom': 1.0, 'no': 1.0, 'about': 1.0, 'i': 2.0, 'touch': 1.0, 'wanted': 1.0, 'way': 1.0, 'machine': 1.0, 'read': 1.0, 'attaches': 1.0, 'made': 1.0, 'haven': 1.0, 'is': 2.0, 'washed': 1.0, 'on': 1.0, 'something': 1.0, 'into': 1.0, 'that': 1.0, 'anything': 1.0, 'other': 1.0, 'smell': 1.0, 'we': 1.0, 'a': 2.0, 't': 1.0, 'the': 6.0, 'now': 1.0, 'free': 1.0, 'reviews': 1.0, 'between': 1.0, 'son': 1.0, 'gets': 3.0, 'sick': 2.0, 'cover': 1.0, 'after': 1.0, 'base': 1.0, 'can': 2.0, 'not': 2.0, 'our': 1.0, 'debris': 1.0, 'to': 4.0, 'seat': 2.0, 'be': 2.0, 'in': 4.0, 'air': 1.0, 'who': 1.0, 'space': 2.0, 'car': 2.0, 'cleaned': 1.0}
Word element => {'features': 1.0, 'please': 1.0, 'swaying': 1.0, 'pinnacle': 1.0, 'issue': 1.0, 'pleased': 1.0, 'quite': 1.0, 'looked': 1.0, 'from': 1.0, 'falling': 1.0, 'continuously': 1.0, 'comes': 1.0, 'thing': 1.0, 'pad': 2.0, 'if': 1.0, 'tighter': 1.0, 'cover': 2.0, 'buckle': 2.0, 'changed': 1.0, 'they': 3.0, 'will': 1.0, 'since': 1.0, 'say': 1.0, 'comfortable': 1.0, 'buy': 1.0, 'says': 1.0, 'she': 1.0, 'loves': 1.0, 'safe': 1.0, 'sure': 1.0, 'making': 1.0, 'said': 1.0, 'go': 1.0, 'out': 3.0, 'when': 1.0, 'pain': 1.0, 'made': 2.0, 'which': 1.0, 'model': 1.0, 'time': 1.0, 'new': 1.0, 'so': 6.0, 'enough': 1.0, 'down': 3.0, 'it': 13.0, 'would': 2.0, 'tight': 1.0, 'my': 5.0, 'reconsider': 1.0, 'but': 2.0, 'didn': 1.0, 'daughter': 2.0, 'got': 1.0, 't': 2.0, 'tightened': 2.0, 'one': 2.0, 'try': 1.0, 'do': 2.0, 'much': 1.0, 'a': 8.0, 'tiny': 1.0, 'and': 10.0, 'car': 10.0, 'this': 5.0, 'savvy': 1.0, 'britax': 3.0, 'ahead': 1.0, 'have': 7.0, 'fact': 1.0, 'suppose': 1.0, 'cars': 1.0, 'some': 1.0, 'invest': 1.0, 'well': 1.0, 'i': 10.0, 'another': 1.0, 'fiancee': 2.0, 'needed': 1.0, 'just': 1.0, 'in': 1.0, 'seat': 12.0, 'fixed': 1.0, 'to': 14.0, 'all': 2.0, 'not': 2.0, 'were': 1.0, 'tighten': 1.0, 'off': 2.0, 'tried': 1.0, 'who': 1.0, 'at': 1.0, 'is': 7.0, 'around': 1.0, 'our': 4.0, 'how': 3.0, 'bottom': 1.0, 'love': 2.0, 'he': 2.0, 'switch': 1.0, 'was': 9.0, 'doesn': 1.0, 'than': 2.0, 'be': 1.0, 'know': 1.0, 'easy': 2.0, 'get': 3.0, 'sict': 2.0, 'also': 2.0, 'definitely': 1.0, 'second': 1.0, 'with': 3.0, 'the': 10.0, 'of': 2.0, 'very': 2.0, 'later': 1.0, 'being': 1.0, 'same': 1.0, 'had': 1.0, 'came': 1.0, 'altima': 1.0, 'read': 1.0, 'nice': 2.0, 'little': 2.0, 'negative': 1.0, 'we': 7.0, 'reviews': 1.0, 'on': 5.0, 'because': 2.0, 'that': 7.0, 'problems': 2.0, 'anxious': 1.0, 'easier': 1.0, 'afraid': 1.0, 'into': 1.0, 'frontier': 3.0, 'booster': 1.0, '2000': 1.0, 'nissan': 1.0, 'show': 1.0, 'advise': 1.0, 'decided': 1.0, 'move': 1.0, 'excited': 1.0, 'you': 2.0, 'able': 1.0, 'now': 1.0, 'no': 1.0}
Word element => {'front': 1.0, 'slit': 1.0, 'fingers': 1.0, 'buy': 1.0, 'old': 1.0, 'wouldnt': 1.0, 'money': 1.0, 'but': 1.0, 'a': 1.0, 'fire': 1.0, 'in': 3.0, 'great': 1.0, 'comfortable': 1.0, 'it': 3.0, 'release': 1.0, 'holders': 1.0, 'lost': 1.0, 'this': 1.0, 'first': 1.0, 'just': 1.0, 'the': 6.0, 'other': 1.0, 'car': 3.0, 'so': 1.0, 'much': 1.0, 'one': 4.0, 'bought': 1.0, 'is': 1.0, 'twice': 1.0, 'very': 1.0, 'my': 1.0, 'cup': 1.0, 'has': 1.0, 'adjust': 1.0, 'your': 1.0, 'i': 4.0, 'two': 1.0, 'slip': 1.0, 'product': 1.0, 'love': 1.0, 'for': 4.0, 'snacks': 1.0, 'and': 1.0, 'year': 1.0, 'his': 1.0, 'drink': 1.0, 'straps': 2.0, 'are': 1.0, 'easy': 1.0, 'any': 1.0, 'seat': 2.0, 'to': 3.0, 'you': 1.0, 'have': 1.0}
Word element => {'me': 1.0, 'for': 1.0, 'didn': 1.0, 'else': 1.0, 'sell': 1.0, 'about': 1.0, 'closed': 1.0, 'even': 1.0, 'could': 1.0, 'a': 4.0, 'loved': 1.0, 'loosen': 2.0, 'inside': 1.0, 'button': 2.0, 'right': 1.0, 'harness': 1.0, 'loosening': 2.0, 'britax': 2.0, 'push': 1.0, 'out': 1.0, 'nothing': 1.0, 'reputation': 1.0, 'know': 1.0, 'safe': 1.0, 'the': 17.0, 'extremely': 1.0, 'review': 1.0, 'half': 1.0, 'and': 7.0, 'get': 1.0, 'moved': 1.0, 'trust': 1.0, 'far': 1.0, 'love': 1.0, 'struggled': 1.0, 'not': 1.0, 'to': 7.0, 'all': 3.0, 'more': 1.0, 'shifted': 1.0, 'up': 1.0, 'lived': 1.0, 'don': 1.0, 'because': 1.0, 'that': 2.0, 'into': 2.0, 'their': 1.0, 'called': 1.0, 'bought': 2.0, 'pinnacle': 1.0, 'tightening': 1.0, 'this': 3.0, 'with': 3.0, 'work': 1.0, 'hard': 1.0, 'seat': 7.0, 'm': 2.0, 'in': 1.0, 'disappointed': 2.0, 'down': 1.0, 've': 1.0, 'buy': 1.0, 'straps': 4.0, 'something': 3.0, 'new': 2.0, 'have': 2.0, 'write': 1.0, 'but': 3.0, 'so': 4.0, 'can': 2.0, 'i': 14.0, 'products': 1.0, 'knew': 1.0, 'barely': 1.0, 'recline': 1.0, 'it': 4.0, 'tighten': 2.0, 'installation': 2.0, 'click': 1.0, 'reach': 1.0, 'than': 1.0, 'position': 1.0, 'inch': 1.0, 'wasn': 1.0, 'has': 3.0, 'them': 1.0, 'was': 1.0, 't': 7.0, 'belt': 1.0, 'told': 1.0, 'put': 1.0, 'last': 1.0, 'changed': 1.0, 'week': 1.0, 'car': 1.0, 'vehicle': 1.0, 'tight': 1.0, 'if': 1.0, 'or': 1.0, 'what': 1.0, 'had': 1.0, 'now': 1.0, 'is': 2.0, 'at': 2.0, 'july': 1.0, 'male': 1.0, 'find': 1.0, 'friend': 1.0, 'couldn': 2.0, 'install': 1.0}
Word element => {'loves': 1.0, 'daughter': 1.0, 'adjustable': 1.0, 'easily': 1.0, 'built': 1.0, 'have': 1.0, 'able': 1.0, 'this': 1.0, 'get': 1.0, 'and': 2.0, 'now': 1.0, 'easiest': 1.0, 'in': 1.0, 'anyone': 1.0, 'for': 1.0, 'over': 1.0, 'best': 1.0, 'ton': 1.0, 'car': 2.0, 'are': 1.0, 'the': 2.0, 'ones': 1.0, 'tight': 1.0, 'my': 3.0, 'not': 1.0, 'does': 1.0, 'installed': 1.0, 'install': 1.0, 'a': 1.0, 'has': 1.0, 'well': 1.0, 'ever': 2.0, 'days': 1.0, 'kneeling': 1.0, 'of': 2.0, 'hand': 1.0, 'wife': 1.0, 'properly': 1.0, 'i': 2.0, 'strength': 1.0, 'never': 1.0, 'to': 2.0, 'seat': 4.0, 'our': 1.0, 'it': 2.0, 'she': 1.0, 'was': 1.0, 'recommend': 1.0, 'no': 1.0, 'old': 1.0, 'problems': 1.0, 'very': 1.0, 'highly': 1.0}
Word element => {'him': 1.0, 'as': 2.0, 'do': 2.0, 'keep': 1.0, 'did': 1.0, 'if': 1.0, 'much': 1.0, 'myself': 1.0, 'am': 1.0, 'live': 1.0, 'could': 1.0, 'lives': 1.0, 'our': 1.0, 'important': 1.0, 'kid': 1.0, 'able': 1.0, 'all': 1.0, 'by': 1.0, 'where': 1.0, 'safe': 1.0, 'at': 1.0, 'to': 2.0, 'was': 1.0, 'my': 1.0, 'the': 2.0, 'more': 1.0, 'is': 1.0, 'point': 1.0, 'law': 1.0, 'a': 1.0, 'belt': 1.0, 'not': 2.0, 'seat': 1.0, 'believe': 1.0, 'of': 2.0, 'i': 4.0, 'one': 1.0, 'with': 1.0, 'it': 1.0, 'this': 1.0, 'required': 1.0, 'purchase': 1.0}
Word element => {'check': 1.0, 'use': 1.0, 'that': 1.0, 'bags': 1.0, 'carseat': 1.0, 'for': 1.0, 'fit': 1.0, 'warning': 1.0, 'standard': 1.0, 'installed': 1.0, 'move': 1.0, 'don': 1.0, 'trust': 1.0, 'budge': 1.0, 'me': 1.0, 'not': 1.0, 'plane': 1.0, 'in': 5.0, 'kid': 1.0, 'you': 3.0, 't': 2.0, 'a': 2.0, 's': 1.0, 'doesn': 1.0, 'cow': 1.0, 'will': 1.0, 'fasten': 1.0, 'want': 1.0, 'moon': 1.0, 'got': 1.0, 'it': 8.0, 'moving': 1.0, 'i': 1.0, 'ratings': 1.0, 'car': 2.0, 'send': 1.0, 'solely': 1.0, 'the': 7.0, 'can': 1.0, '2': 1.0, 'this': 3.0, 'based': 1.0, 'takes': 1.0, 'is': 1.0, 'many': 1.0, 'really': 2.0, 'on': 1.0, 'seat': 1.0, 'as': 1.0, 'latches': 1.0, 'to': 5.0, 'holy': 1.0, 'once': 2.0, 'directions': 1.0, 'huge': 1.0, 'one': 2.0, 'are': 1.0, 'so': 1.0, 'bit': 1.0, 'bag': 1.0, 'confusing': 1.0, 'has': 1.0, 'little': 1.0, 'parts': 1.0, 'adults': 1.0, 'sit': 1.0, 'install': 1.0, 'and': 1.0}
Word element => {'love': 1.0, 'that': 1.0, 'other': 1.0, 'heavy': 1.0, 'how': 1.0, 'on': 1.0, 'hubby': 1.0, 'fed': 1.0, 'in': 1.0, 'out': 1.0, 'with': 1.0, 'driving': 1.0, 'was': 1.0, 'if': 1.0, 'be': 1.0, 'anyway': 1.0, 'reviews': 1.0, '39': 1.0, 'it': 6.0, 'this': 2.0, 'loud': 1.0, 'ordered': 1.0, 'always': 1.0, 'of': 1.0, 'daughter': 3.0, 'i': 6.0, 'buy': 1.0, 'snug': 1.0, 'so': 2.0, 'order': 1.0, 'else': 1.0, 'car': 1.0, 'almost': 1.0, 'didn': 1.0, 'the': 4.0, 'm': 1.0, '32': 1.0, 'has': 1.0, 'seat': 3.0, 'than': 1.0, 'because': 1.0, 'man': 1.0, 'not': 1.0, 'my': 4.0, 'commented': 1.0, 'had': 2.0, 'what': 1.0, 'would': 1.0, 'harness': 1.0, 'ex': 1.0, 'glad': 1.0, 'and': 2.0, 'moved': 1.0, 'tall': 1.0, 'problem': 2.0, 'no': 2.0, 'did': 1.0, 'getting': 1.0, 'installing': 1.0, 'under': 1.0, 'buckle': 1.0, 'around': 1.0, 'is': 3.0, 'when': 1.0, 'lbs': 1.0, 'little': 1.0, 'britaxusa': 1.0, 'inches': 1.0, 'but': 2.0, 'we': 1.0, 'a': 2.0, 't': 1.0, 'could': 1.0}
Word element => {'reclined': 1.0, 'out': 1.0, 'we': 1.0, 'but': 1.0, 'old': 1.0, 'to': 2.0, 'be': 1.0, 'car': 1.0, 'wasn': 1.0, 'like': 1.0, 'so': 1.0, 'seat': 1.0, 'really': 1.0, 'at': 1.0, 'able': 1.0, 'far': 1.0, 'didn': 1.0, 'sleep': 1.0, 'it': 2.0, 'first': 1.0, 'this': 1.0, 'figured': 1.0, 'heavy': 1.0, 't': 2.0, 'our': 1.0, '4': 1.0, 'very': 1.0, 'year': 1.0, 'in': 1.0, 'seem': 1.0}
Word element => {'use': 1.0, 'expect': 1.0, 'attach': 1.0, 'measurements': 1.0, 'then': 1.0, 'go': 1.0, 'marks': 1.0, 'who': 1.0, 'regular': 1.0, 'thread': 1.0, 'portion': 1.0, 'what': 1.0, 'up': 1.0, 'flips': 1.0, 'squeeze': 1.0, 'you': 2.0, 'slick': 1.0, 'would': 1.0, 'tight': 1.0, 'click': 1.0, 'was': 1.0, 'installing': 1.0, 'recommending': 1.0, '38': 1.0, 'over': 1.0, 'out': 1.0, 'guidelines': 1.0, 'have': 1.0, 'does': 1.0, 'back': 3.0, 'i': 2.0, 'coming': 1.0, 'well': 1.0, 'setting': 1.0, 'acts': 1.0, 'large': 1.0, 'are': 3.0, 'information': 1.0, 'until': 1.0, 'tried': 1.0, 'review': 1.0, 'them': 1.0, 'has': 1.0, 'easier': 1.0, 'read': 1.0, 'very': 1.0, 'latch': 3.0, 'size': 1.0, 'lumbar': 1.0, 'and': 8.0, 'tether': 1.0, 'pinnacle': 2.0, 'height': 2.0, 'with': 4.0, 'harness': 3.0, 'but': 4.0, 'children': 1.0, 'g3': 2.0, '70': 1.0, 'new': 2.0, 'limiting': 1.0, 'old': 1.0, 'type': 2.0, 'point': 1.0, 'years': 2.0, 'booster': 1.0, '4': 1.0, '90': 1.0, 'these': 1.0, 'clicks': 1.0, 'advocate': 3.0, 'adjustments': 1.0, 'seats': 5.0, '6': 1.0, 'my': 1.0, 'a': 12.0, 'fit': 1.0, 'belt': 2.0, 'fairly': 1.0, 'separate': 1.0, 'ago': 1.0, 't': 1.0, 's': 2.0, 'colored': 1.0, 'upgrade': 1.0, 'recommend': 1.0, 'tighten': 1.0, 'were': 1.0, 'that': 5.0, 'our': 2.0, 'pretty': 1.0, 'high': 1.0, 'to': 8.0, 'as': 5.0, 'in': 5.0, 'seat': 7.0, 'their': 1.0, 'wanted': 1.0, 'product': 1.0, 'year': 1.0, 'close': 1.0, 'current': 1.0, 'features': 2.0, 'they': 1.0, 'aren': 1.0, 'sturdy': 1.0, 'addition': 1.0, 'from': 2.0, 'pounds': 1.0, 'compared': 1.0, 'is': 3.0, 'tabs': 2.0, 'impressive': 1.0, 'more': 2.0, 'cs': 1.0, 'too': 1.0, 'lot': 2.0, 'three': 1.0, 'the': 28.0, 'of': 5.0, 'available': 1.0, 'slack': 1.0, 'feature': 1.0, 'vinyl': 1.0, 'thought': 1.0, 'recline': 1.0, 'it': 8.0, 'green': 1.0, 'under': 1.0, 'felt': 1.0, 'same': 1.0, 'covering': 2.0, 'including': 1.0, 'easy': 1.0, 'nice': 1.0, 'on': 3.0, 'cover': 1.0, 'convenient': 1.0, 'connect': 1.0, 'buckle': 1.0, 'instead': 1.0, 'base': 1.0, 'show': 1.0, 'through': 1.0, 'material': 1.0, 'came': 1.0, 'attractive': 1.0, 'which': 2.0, 'will': 1.0, 'come': 1.0, 'where': 1.0, 'selections': 1.0, 'be': 2.0, 'car': 1.0, 'clean': 1.0, 'convertible': 1.0, 'system': 1.0, 'color': 1.0, 'panel': 2.0, 'minor': 1.0, 'for': 7.0, 'such': 1.0, 'solid': 1.0, 'weight': 1.0, 'ranges': 1.0, 'highly': 1.0, 'few': 1.0, 'this': 1.0}
Word element => {'little': 1.0, '5': 1.0, '34': 2.0, 'bro': 1.0, 'gave': 1.0, 'and': 1.0, 'new': 1.0, 'his': 3.0, 'one': 1.0, 'britax': 1.0, 'brand': 1.0, 'my': 2.0, 'go': 1.0, 'is': 1.0, '2': 1.0, '1': 1.0, 'seat': 1.0, 'nephew': 1.0, 'years': 1.0, 'year': 1.0, 'to': 2.0, 'old': 3.0, 'loves': 1.0}
Word element => {'carrying': 1.0, 'think': 1.0, 'don': 1.0, 'though': 1.0, 'heavy': 1.0, 'up': 1.0, 'belong': 1.0, 'proud': 1.0, 'using': 1.0, 'engineering': 1.0, 'often': 1.0, 'or': 1.0, 'another': 1.0, 'vehicle': 1.0, 'one': 1.0, 'transfer': 1.0, 'expensive': 1.0, 'videos': 1.0, 'easy': 1.0, 'manual': 1.0, 'thunk': 1.0, 'but': 2.0, 'diagrams': 1.0, 'instructions': 1.0, 'with': 1.0, 'sleep': 1.0, 'when': 1.0, 'badly': 1.0, 'flopping': 1.0, 'their': 1.0, 'different': 2.0, 'her': 1.0, 'accommodate': 1.0, 'absolutely': 1.0, 'understand': 1.0, 'out': 2.0, 'seats': 3.0, 'man': 1.0, 'men': 1.0, 'car': 6.0, 'half': 2.0, 'forester': 1.0, 'any': 1.0, 'sizes': 2.0, 'grammy': 1.0, 'worth': 1.0, 'almost': 2.0, 'year': 3.0, 'place': 1.0, 'myself': 1.0, 'fit': 2.0, 'beat': 1.0, 't': 3.0, 'so': 1.0, 'can': 4.0, 'helpful': 1.0, 'four': 1.0, 'meant': 1.0, 'you': 3.0, 'that': 1.0, 'heads': 1.0, 'easily': 1.0, 'ages': 1.0, 'which': 2.0, 'side': 1.0, 'age': 1.0, 'booster': 1.0, 'i': 7.0, 'distance': 1.0, 'two': 1.0, 'strong': 2.0, 'make': 1.0, 'the': 5.0, 'of': 4.0, 'not': 1.0, 'ranging': 1.0, 'woman': 1.0, 'finding': 1.0, 'wings': 1.0, 'a': 9.0, 'small': 1.0, 'have': 4.0, 'grandchildren': 1.0, 'drive': 1.0, 'this': 3.0, 'kids': 2.0, 'and': 11.0, 'safety': 1.0, 'even': 2.0, 'means': 1.0, 'they': 2.0, 'very': 4.0, 'from': 3.0, 'seven': 3.0, 'utube': 1.0, 'secure': 3.0, 'species': 1.0, 'three': 1.0, 'sons': 1.0, 'makes': 1.0, 'keep': 1.0, 'trouble': 1.0, 'months': 1.0, 'pretty': 1.0, 'to': 12.0, 'in': 3.0, 'm': 1.0, 'seat': 3.0, 'britax': 2.0, 'are': 2.0, 'first': 1.0, 'written': 1.0, 'there': 2.0, 'swapping': 1.0, 'incredible': 1.0, 'has': 2.0, 'always': 1.0, 'them': 2.0, 'course': 1.0, 'if': 2.0, 'enough': 1.0, 'safely': 1.0, 'installed': 1.0, 'yet': 1.0, 'is': 6.0, 'meet': 1.0, 'it': 9.0, 'by': 1.0, 'wrestle': 1.0, 'my': 1.0, 'subaru': 1.0, 'big': 1.0, 'comfortable': 1.0, 'budge': 1.0, 'after': 2.0, 'amazing': 1.0, 'quickly': 1.0, 'adjust': 2.0, 'old': 3.0, 'harness': 1.0, 'an': 1.0, 'hours': 1.0, 'about': 1.0, 'driving': 1.0}
Word element => {'you': 1.0, 'protection': 1.0, 'safety': 1.0, 'before': 1.0, 'months': 1.0, 'about': 1.0, 'researched': 1.0, 'well': 1.0, 'best': 1.0, 'ratings': 1.0, 'as': 1.0, 'seats': 1.0, 'my': 1.0, 'that': 1.0, 'cannot': 1.0, 'honestly': 1.0, 'wrong': 1.0, 'go': 1.0, 'say': 1.0, 'the': 3.0, '2': 1.0, 'are': 1.0, 'protected': 1.0, 'child': 1.0, 'can': 1.0, 'this': 1.0, 'children': 1.0, 'with': 1.0, 'pinnacle': 1.0, 'i': 4.0, '6': 1.0, '34': 2.0, 'britax': 1.0, 'purchasing': 1.0, 'love': 1.0, 'for': 2.0, 'one': 2.0, 'feel': 1.0, 'purchased': 1.0, 'each': 1.0, 'and': 3.0, 'highest': 1.0, 'has': 1.0, 'they': 1.0}
Word element => {'take': 1.0, 'or': 1.0, 'not': 1.0, 'so': 1.0, 'up': 1.0, 'would': 1.0, 'when': 2.0, 'head': 1.0, 'some': 1.0, 'support': 1.0, 'transport': 1.0, 'sides': 1.0, 'large': 1.0, 'excellent': 1.0, 'protection': 1.0, 'side': 1.0, 'safety': 1.0, 'best': 1.0, 'probably': 1.0, 'on': 2.0, 'think': 1.0, 'seats': 1.0, 'booster': 2.0, 'that': 1.0, 'although': 1.0, 'comfy': 1.0, 'very': 2.0, 'fold': 1.0, 'son': 3.0, 'trunk': 1.0, 'easier': 1.0, 'well': 1.0, 'has': 1.0, 'december': 1.0, 'to': 3.0, 'seat': 3.0, 'i': 4.0, 'impact': 1.0, 'opinion': 1.0, 'love': 1.0, 'for': 2.0, 'the': 8.0, 'it': 8.0, 'wish': 1.0, 'this': 2.0, 'he': 2.0, 'point': 1.0, 'bought': 1.0, 'my': 4.0, 'car': 2.0, 'last': 1.0, 'easy': 1.0, 'use': 2.0, 'we': 1.0, 's': 4.0, 'a': 4.0, 'market': 1.0, '5': 1.0, 'than': 1.0, 'never': 1.0, 'seems': 1.0, 'will': 1.0, 'and': 4.0, 'soon': 1.0, 'need': 2.0, 'more': 1.0, 'is': 2.0, 'naps': 1.0, 'complains': 1.0, 'plane': 1.0, 'outgrow': 1.0, 'in': 5.0, 'about': 1.0, 'if': 1.0, 'being': 1.0, 'harness': 1.0, 'much': 1.0, 'better': 1.0, 'install': 1.0, 'comfortable': 1.0, 'great': 1.0, 'padded': 1.0, 'wise': 1.0, 'graco': 1.0}
Word element => {'child': 1.0, 'any': 1.0, 'about': 1.0, 'worry': 1.0, 'won': 1.0, 'find': 1.0, 'her': 1.0, 'used': 1.0, 'in': 1.0, 've': 1.0, 'putting': 1.0, 'i': 3.0, 'seat': 3.0, 'looks': 1.0, 'side': 1.0, 'is': 1.0, 'car': 1.0, 'when': 1.0, 'safety': 1.0, 'daughter': 1.0, 'm': 1.0, 'my': 2.0, 'happy': 1.0, 'more': 1.0, 't': 1.0, 'great': 1.0, 'the': 2.0, 'heavy': 1.0, 'loves': 1.0, 'this': 3.0, 'it': 2.0, 'so': 2.0, 'much': 1.0, 'to': 1.0, 'protection': 1.0, 's': 2.0, 'best': 1.0, 'very': 1.0, 'and': 1.0}
Word element => {'stores': 1.0, 'seen': 1.0, 'of': 1.0, 'any': 1.0, 'than': 1.0, 'sturdier': 1.0, 'far': 1.0, 'is': 2.0, 'support': 1.0, 'son': 1.0, 'shoulders': 1.0, 'this': 1.0, 'itself': 1.0, 'have': 2.0, 'and': 2.0, 'seats': 2.0, 'to': 1.0, 'head': 2.0, 'purchased': 1.0, 'proved': 1.0, 'has': 1.0, 'seat': 2.0, 'a': 2.0, 'car': 1.0, 'be': 1.0, 'improvement': 1.0, 'above': 1.0, 'feature': 1.0, 'other': 2.0, 'we': 2.0, 'great': 1.0, 'the': 6.0, 'in': 2.0, 'for': 1.0, 'past': 1.0, 'our': 1.0}
Word element => {'due': 1.0, 'older': 1.0, 'be': 1.0, 'expected': 1.0, 'had': 1.0, 'before': 1.0, 'only': 1.0, 'is': 2.0, 'especially': 1.0, 'longer': 1.0, 'this': 1.0, 'price': 2.0, 'date': 1.0, 'with': 1.0, 'pink': 1.0, 'very': 2.0, 'month': 1.0, 'it': 4.0, 'she': 3.0, 'easy': 1.0, 'last': 1.0, 'i': 5.0, 'old': 1.0, 'like': 1.0, 'comfy': 1.0, 'got': 1.0, 'that': 1.0, 'loves': 2.0, 'find': 1.0, 'because': 1.0, 'and': 3.0, 'tall': 1.0, 'the': 5.0, 'my': 1.0, 'everything': 1.0, '3': 1.0, 'for': 2.0, 'super': 1.0, 'about': 2.0, 'no': 1.0, 'booster': 1.0, 'seat': 3.0, 'to': 4.0, 'was': 3.0, 'until': 1.0, 'install': 1.0, 'ordered': 1.0, 'surprised': 1.0, 'needs': 1.0, 'will': 1.0, 'also': 1.0, 'you': 1.0, 'cant': 1.0, 'britax': 1.0, 'a': 2.0, 'go': 1.0, 'wrong': 1.0, 'manufacture': 1.0, 'year': 1.0, 'awesome': 1.0}
Word element => {'confident': 1.0, 'failed': 1.0, 'have': 1.0, 'engineer': 1.0, 'able': 1.0, 'us': 1.0, 'by': 1.0, 'led': 1.0, 'granddaughter': 1.0, 'now': 1.0, 'car': 1.0, 'seats': 1.0, 'on': 1.0, 'recommendation': 1.0, 'and': 3.0, 'it': 2.0, 'she': 2.0, 'reviews': 1.0, 'going': 1.0, 'we': 2.0, 'a': 1.0, 'see': 1.0, 'an': 1.0, 'but': 1.0, 'thankfully': 1.0, 'who': 1.0, 'protected': 1.0, 'easy': 1.0, 'model': 1.0, 'feel': 1.0, 'comfortable': 1.0, 'about': 1.0, 'my': 1.0, 'high': 1.0, 'not': 1.0, 'this': 1.0, 'testifies': 1.0, 'test': 1.0, 'is': 5.0, 'herself': 1.0, 'year': 1.0, 'sturdy': 1.0, 'adjust': 1.0, 'to': 5.0, 'our': 1.0, 'unbuckle': 1.0, '5': 1.0, 'old': 1.0, 'buckle': 1.0, 'enough': 1.0, 'had': 1.0, 'what': 1.0}
Word element => {'cuter': 1.0, 'ok': 1.0, 'but': 2.0, 'side': 1.0, 'down': 1.0, 'pattern': 1.0, 'one': 1.0, 'on': 1.0, 'wings': 1.0, 'head': 1.0, 'larger': 1.0, 'liking': 1.0, 'am': 2.0, 'seats': 1.0, 'like': 1.0, 'sturdy': 1.0, 'height': 1.0, 'higher': 1.0, 'alone': 1.0, 'penny': 1.0, 'worth': 1.0, 'myself': 1.0, 'by': 1.0, 'between': 1.0, 'school': 1.0, 'a': 4.0, 's': 2.0, 'could': 2.0, 'drop': 1.0, 'precious': 1.0, 'kneel': 1.0, 'making': 1.0, 'come': 1.0, 'package': 1.0, 'harness': 2.0, 'do': 1.0, 'choice': 1.0, 'able': 1.0, 'middle': 1.0, 'reinstall': 1.0, 'super': 1.0, 'month': 1.0, 'under': 1.0, 'and': 5.0, 'unbelivabley': 1.0, 'within': 1.0, 'bonus': 1.0, 'be': 2.0, 'car': 2.0, 'began': 1.0, 'place': 1.0, 'without': 1.0, 'is': 4.0, 'auntie': 1.0, 'booster': 1.0, 'tightly': 1.0, 'tight': 1.0, 'ability': 1.0, 'believe': 1.0, 'bought': 1.0, 'solely': 1.0, 'it': 9.0, 'gramma': 1.0, 'the': 7.0, 'of': 2.0, 'read': 1.0, 'i': 8.0, 'to': 4.0, 'heavy': 1.0, 'as': 3.0, 'forewarned': 1.0, 'in': 9.0, 'seat': 3.0, 'belt': 1.0, 'girls': 1.0, 'minutes': 2.0, 'this': 4.0, 'carseats': 1.0, '30': 1.0, 'off': 1.0, 'safest': 1.0, 'when': 1.0, 'mom': 1.0, 'husband': 1.0, 'had': 1.0, 'britax': 1.0, 'first': 1.0, 'honda': 1.0, 'time': 3.0, 'other': 1.0, 'all': 2.0, 'ever': 1.0, '5': 1.0, 'years': 1.0, 'switch': 1.0, 'with': 3.0, 'previous': 1.0, 'adjusting': 1.0, 'can': 2.0, '2': 1.0, 'not': 1.0, 'my': 4.0, 'me': 1.0, 'our': 2.0, 'how': 1.0, 'dreaded': 1.0, 'bit': 1.0, 'easy': 1.0, 'have': 1.0, 'has': 1.0, 'cars': 1.0, 'them': 2.0, 'always': 1.0, 'seriously': 1.0, 'removing': 1.0, 'or': 1.0, 'cleaning': 1.0, 'that': 6.0, 'because': 1.0, 'reviews': 1.0, 'we': 1.0, 'take': 1.0, 'for': 5.0, '10': 1.0, 'alternating': 1.0, 'want': 1.0, 'pilot': 1.0, 'locks': 1.0, 'perfectly': 1.0, 'still': 1.0, 'every': 2.0}
Word element => {'start': 1.0, 'bought': 1.0, 'have': 1.0, 'should': 1.0, 'issues': 1.0, 'such': 1.0, 'with': 1.0, 'amazon': 2.0, 'unused': 1.0, 'returned': 1.0, 'service': 1.0, 'customer': 1.0, 'an': 1.0, 'eye': 1.0, 'tilted': 1.0, 'it': 4.0, 'i': 4.0, 'no': 1.0, 'about': 1.0, 'baby': 1.0, 'head': 1.0, 'position': 1.0, 'car': 1.0, 'originally': 1.0, 'everything': 1.0, 'experience': 1.0, 'after': 1.0, 'of': 1.0, 'keep': 1.0, 'seat': 4.0, 'on': 1.0, 'except': 1.0, 'horrendously': 1.0, 'limited': 1.0, 'more': 1.0, 'is': 2.0, 'this': 1.0, 'wish': 1.0, 'occasionally': 1.0, 'for': 1.0, 'comfortable': 1.0, 'child': 3.0, 'rake': 1.0, 's': 1.0, 'like': 1.0, 'which': 1.0, 'can': 1.0, 'when': 1.0, 'albee': 1.0, 'the': 8.0, 'asleep': 1.0, 'loves': 1.0, 'tilt': 1.0, 'back': 2.0, 'saying': 1.0, 'very': 1.0, 'from': 4.0, 'purchased': 2.0, 'and': 2.0, 'forward': 1.0, 'bad': 1.0}
Word element => {'sleep': 1.0, 'falls': 1.0, 'she': 1.0, 'very': 1.0, 'down': 1.0, 'doesn': 2.0, 'go': 1.0, 'comfy': 1.0, 'and': 1.0, 'recline': 1.0, 'booster': 1.0, 'side': 1.0, 'is': 2.0, 'just': 1.0, 'seat': 2.0, 'car': 1.0, 'only': 1.0, 'it': 1.0, 'this': 1.0, 'great': 1.0, 'the': 2.0, 't': 2.0, 'that': 1.0, 'you': 1.0, 'when': 2.0, 'too': 1.0, 'much': 1.0, 'look': 1.0}
Word element => {'design': 1.0, 'excellent': 1.0, 'said': 1.0, 'what': 1.0, 'cannot': 1.0, 'saver': 1.0, 'spending': 1.0, 'deal': 1.0, 'instead': 1.0, 'run': 1.0, 'able': 1.0, 'you': 2.0, 'therefore': 1.0, 'connections': 1.0, 'middle': 1.0, 'vehicle': 1.0, 'actual': 1.0, 'quite': 1.0, 'challenge': 1.0, 'strap': 3.0, 'headrest': 2.0, 'so': 1.0, 'head': 2.0, 'between': 1.0, 'ache': 1.0, 'space': 1.0, 'second': 1.0, 'like': 1.0, 'feature': 1.0, 'gmc': 1.0, 'another': 1.0, 'secure': 1.0, 'done': 1.0, 'down': 1.0, 'acadia': 1.0, 'portion': 1.0, 'anchor': 1.0, 'obligatory': 1.0, 'lap': 1.0, 'some': 2.0, 'if': 1.0, 'section': 2.0, 'up': 1.0, 'fold': 1.0, 'under': 2.0, 'path': 1.0, '85': 1.0, 'went': 1.0, 'recommend': 1.0, 'tighten': 1.0, 'planning': 1.0, 'i': 8.0, 'two': 3.0, 'britax': 2.0, 'limit': 3.0, 'headrests': 1.0, 'children': 1.0, 'slight': 1.0, 'a': 6.0, 'transitioned': 1.0, 'then': 1.0, 'we': 2.0, 's': 3.0, 'could': 1.0, 'only': 1.0, 'purchase': 1.0, 'me': 1.0, 'may': 1.0, 'my': 3.0, 'would': 1.0, 'either': 1.0, 'tight': 3.0, 'perfectly': 1.0, 'convertible': 1.0, 'son': 1.0, '50': 1.0, 'and': 11.0, 'money': 1.0, 'spots': 1.0, 'pinnacle': 1.0, 'originally': 1.0, 'highly': 1.0, 'this': 5.0, 'with': 8.0, 'slightest': 1.0, 'sister': 1.0, 'snapped': 1.0, 'moved': 1.0, 'get': 1.0, 'for': 4.0, 're': 1.0, 'where': 1.0, 'car': 8.0, '35': 1.0, 'her': 1.0, 'his': 1.0, 'about': 1.0, 'adjustments': 1.0, 'awesome': 1.0, 'impeccable': 1.0, 'through': 2.0, 'nightmare': 1.0, 'difficulty': 1.0, 'row': 1.0, '90': 2.0, 'weight': 4.0, 'youngest': 1.0, 'have': 4.0, 'was': 4.0, 'rest': 1.0, 'belt': 2.0, 'fixed': 1.0, 'to': 10.0, 'our': 1.0, 'as': 1.0, 'just': 1.0, 'from': 2.0, 'facing': 1.0, 'while': 1.0, 'hard': 1.0, 'max': 1.0, 'big': 2.0, 'climbing': 1.0, 'graco': 1.0, 'not': 1.0, 'forward': 1.0, 'but': 3.0, 'previous': 1.0, 'sitting': 1.0, 'after': 1.0, 'tell': 1.0, 'fed': 1.0, 'reading': 1.0, 'technology': 1.0, 'young': 1.0, 'that': 1.0, 'into': 1.0, 'time': 1.0, 'model': 1.0, 'new': 2.0, 'harness': 4.0, 'ahead': 1.0, 'feeding': 2.0, 'waited': 1.0, 'already': 1.0, 'it': 7.0, 'got': 1.0, 'truly': 1.0, 'normally': 1.0, 'be': 2.0, 'purchased': 1.0, 'released': 1.0, '34': 4.0, 'top': 3.0, 'click': 2.0, 'seat': 17.0, 'in': 4.0, 'sits': 1.0, 'is': 4.0, 'connect': 1.0, 'existing': 2.0, 'an': 3.0, 'other': 1.0, 'made': 1.0, 'side': 2.0, 'the': 38.0, 'of': 11.0, 'connects': 1.0, 'back': 5.0, 'usual': 1.0, 'pound': 3.0, 'on': 5.0, 'infant': 1.0, 'pulling': 1.0, 'latch': 2.0, 'straps': 2.0, 'centered': 1.0}
Word element => {'loosen': 1.0, 'an': 1.0, 'they': 1.0, 'compares': 1.0, 'many': 1.0, 'like': 1.0, 'mention': 1.0, 'too': 1.0, 'really': 1.0, 'advocate': 3.0, 'room': 1.0, 'more': 1.0, 'no': 1.0, 'big': 2.0, 'friendly': 1.0, 'using': 1.0, 'grandparent': 1.0, '34': 2.0, 'mean': 1.0, 'what': 1.0, 'own': 1.0, 'couldn': 1.0, 'install': 1.0, 'although': 1.0, 'frequently': 1.0, 'expect': 1.0, 'not': 3.0, 'how': 3.0, 'out': 3.0, 'moving': 1.0, 'take': 1.0, 'safe': 1.0, 'to': 6.0, 'in': 2.0, 'seat': 5.0, 'latch': 2.0, 'cup': 2.0, 'system': 1.0, 'guess': 1.0, 'holder': 1.0, 'weight': 1.0, 'installing': 1.0, 'easier': 2.0, 'has': 1.0, 'over': 1.0, 'shoulder': 1.0, 'don': 2.0, 'very': 2.0, 'tight': 1.0, 'know': 1.0, 'easy': 3.0, 'get': 1.0, 'about': 2.0, 'set': 1.0, 'figure': 1.0, 'frame': 1.0, '5': 1.0, 'great': 1.0, 'excited': 1.0, 'nice': 1.0, 'life': 1.0, 'for': 2.0, 'steel': 1.0, 'love': 2.0, 'i': 9.0, 'took': 1.0, 'son': 3.0, 'pros': 1.0, 'heavy': 2.0, 'at': 1.0, 'look': 1.0, 'is': 16.0, 'impact': 1.0, 'time': 1.0, 'so': 1.0, 'do': 2.0, 'much': 1.0, 'oh': 1.0, 'with': 1.0, 'shocked': 1.0, 'date': 1.0, 'people': 1.0, 'mind': 1.0, 'this': 4.0, 'holders': 1.0, 'click': 1.0, 'installation': 1.0, 'because': 1.0, 'that': 3.0, 'comfy': 1.0, 'recommended': 1.0, 'and': 5.0, 'feature': 2.0, 'quote': 1.0, 'my': 5.0, 'me': 4.0, 'give': 1.0, 'usually': 1.0, 'than': 3.0, 'does': 1.0, 's': 1.0, 'think': 1.0, 'on': 5.0, 'minutes': 1.0, 'expiration': 1.0, 'of': 3.0, 'the': 13.0, 'longer': 1.0, 'takes': 1.0, 'favorite': 1.0, 'most': 1.0, 'but': 2.0, 'pinnacle': 1.0, 'believe': 1.0, 'money': 1.0, 'already': 1.0, 'it': 12.0, 'genius': 1.0, 'will': 3.0, 'your': 2.0, 'probably': 2.0, 'be': 3.0, 'securing': 1.0, 'last': 1.0, 'straps': 1.0, 'cushioning': 1.0, 'buy': 1.0, 'expensive': 1.0, 'obviously': 1.0, 'are': 1.0, 'first': 1.0, 'britax': 2.0, 'car': 2.0, 'seats': 1.0, 'if': 3.0, 'you': 4.0, 'have': 3.0, 'space': 1.0, 'belt': 2.0, 't': 3.0, 'opt': 1.0, 'which': 2.0, 'side': 1.0, 'peace': 1.0, 'cons': 1.0}
Word element => {'thoughts': 1.0, 'mart': 1.0, 'move': 1.0, 'while': 1.0, 'stretch': 1.0, 'try': 1.0, 'does': 1.0, 'everything': 1.0, 'place': 1.0, 'space': 1.0, 'storage': 1.0, 'holders': 2.0, 'cup': 2.0, 'he': 3.0, 'love': 1.0, 'regardless': 1.0, 'wants': 1.0, 'younder': 1.0, 'review': 1.0, 'rides': 1.0, 'those': 1.0, 'great': 1.0, 'little': 1.0, 'front': 1.0, 'from': 1.0, 'can': 1.0, 'head': 1.0, 'shoulder': 1.0, 'adjusting': 1.0, 'adjust': 2.0, 'all': 1.0, 'an': 1.0, 'rethread': 2.0, 'we': 1.0, 'take': 1.0, 'have': 2.0, 'do': 1.0, 'easily': 1.0, 'that': 2.0, 'like': 1.0, 'sufficient': 1.0, 'restraint': 1.0, 'makes': 2.0, 'trouble': 1.0, 'no': 2.0, 'height': 1.0, 'self': 1.0, 'son': 4.0, 'point': 1.0, 'given': 1.0, 'five': 1.0, 'free': 2.0, 'quick': 1.0, 'buckled': 1.0, 'very': 1.0, 'himself': 1.0, 'buckle': 1.0, 'on': 2.0, 's': 1.0, 'hugs': 1.0, 'breeze': 1.0, 'compares': 1.0, 'how': 1.0, 'located': 1.0, 'belt': 1.0, 'was': 3.0, 'secure': 2.0, 'also': 1.0, 'own': 1.0, 'see': 1.0, 'peace': 1.0, 'a': 10.0, 'car': 7.0, 'using': 1.0, 'tight': 2.0, 'my': 9.0, 'more': 2.0, 'at': 1.0, 'is': 6.0, 'longer': 1.0, 'of': 4.0, 'the': 17.0, 'hands': 1.0, 'minivan': 2.0, 'really': 3.0, 'stay': 1.0, 'if': 1.0, 'every': 2.0, 'system': 2.0, 'has': 4.0, 'cars': 1.0, 'provided': 1.0, 'inch': 1.0, 'difficult': 1.0, 'feature': 1.0, 'i': 8.0, 'fan': 1.0, 'in': 4.0, 'seat': 6.0, 'to': 8.0, 'tangle': 2.0, 'as': 1.0, 'correctly': 3.0, 'game': 1.0, 'easy': 2.0, 'visual': 1.0, 'him': 3.0, 'it': 6.0, 'truly': 1.0, 'with': 3.0, 'both': 1.0, 'confidence': 1.0, 'crash': 1.0, 'mind': 1.0, 'effort': 1.0, 'pinnacle': 2.0, 'installation': 4.0, 'click': 1.0, 'installed': 1.0, 'install': 2.0, 'sample': 1.0, 'big': 1.0, 'reach': 1.0, '90': 2.0, 'time': 2.0, 'fingertips': 1.0, 'couple': 1.0, 'and': 16.0, 'each': 2.0, 'guard': 1.0, 'this': 6.0, 'down': 1.0, 'changer': 1.0, 'for': 3.0, 'depending': 1.0, 'where': 1.0, 'older': 1.0, 'supposed': 1.0, 'seats': 1.0, 'making': 1.0, 'chest': 1.0, 'providing': 1.0, 'by': 3.0, 'up': 3.0, 'less': 1.0, 'favorite': 1.0, 'knowing': 1.0, 'buckling': 1.0, 'able': 1.0, 'you': 1.0, 'am': 1.0, 'britax': 2.0, 'are': 3.0, 'getting': 2.0, 'safe': 1.0, 'harness': 3.0, 'quickly': 1.0, 'only': 1.0, 'forward': 1.0, 'not': 3.0, 'mom': 1.0, 'feel': 1.0, 'any': 1.0, 'keeps': 1.0, 'child': 3.0, 'different': 1.0, 'safer': 1.0, 'needs': 1.0, 'steal': 1.0, 'minimizing': 1.0, 'opinions': 1.0, 'blog': 1.0, 'movement': 1.0, 'during': 1.0, 'but': 1.0, 'helps': 2.0, 'out': 1.0, 'understand': 1.0, 'his': 3.0, 'brother': 1.0, 'ultra': 1.0, 'clip': 1.0, 'built': 1.0, 'be': 1.0, 'grows': 1.0, 'aid': 1.0}
Word element => {'get': 1.0, '3rd': 1.0, 'purchase': 1.0, 'better': 1.0, 'think': 1.0, 'read': 1.0, 'comfortable': 1.0, 'something': 1.0, 'says': 1.0, 'material': 1.0, 'booster': 1.0, 'sitting': 1.0, 'her': 1.0, 'up': 1.0, 'less': 1.0, 'safety': 1.0, 'about': 2.0, 'unlike': 1.0, 'color': 1.0, 'girl': 1.0, 'arrived': 1.0, 'a': 6.0, 'likes': 1.0, 't': 3.0, 'fit': 1.0, 'around': 3.0, 'at': 2.0, 'is': 6.0, 'don': 2.0, 'was': 3.0, 'switch': 1.0, 'to': 9.0, 'in': 7.0, 'seat': 8.0, 'any': 1.0, 'down': 1.0, 'install': 1.0, 'installed': 2.0, 'it': 7.0, 'covers': 1.0, 'she': 3.0, 'happy': 1.0, 'too': 1.0, 'and': 8.0, 'more': 1.0, 'considering': 1.0, 'do': 1.0, 'much': 1.0, 'not': 1.0, 'be': 2.0, 'clipped': 1.0, 'yesterday': 1.0, 'as': 1.0, 'heavy': 1.0, 'me': 1.0, 'my': 5.0, 'fact': 1.0, 'vehicle': 1.0, 'technology': 1.0, 'easy': 3.0, 'sict': 2.0, 'the': 13.0, 'remove': 1.0, 'without': 1.0, 'today': 1.0, 'no': 1.0, 'but': 4.0, 'how': 1.0, 'clicktight': 1.0, 'will': 1.0, 'easiest': 1.0, 'seems': 1.0, 'until': 1.0, 'see': 1.0, 'unless': 1.0, 'securely': 1.0, 'concerned': 2.0, 'that': 7.0, 'loves': 1.0, 'time': 1.0, 'model': 1.0, 'wide': 1.0, 'have': 3.0, 'i': 13.0, 'coming': 1.0, 'all': 2.0, 'ever': 1.0, 'close': 1.0, 'terrific': 1.0, 'problem': 3.0, 'wasn': 1.0, 'understand': 1.0, 'out': 2.0, 'very': 2.0, 'seem': 1.0, 'hands': 1.0, 'ordering': 1.0, 'frontier': 3.0, 'moving': 1.0, 'manual': 1.0, '85': 2.0, 'realized': 1.0, 'comes': 1.0, 'these': 1.0, 'were': 1.0, 'week': 1.0, 'or': 1.0, 'unexpected': 1.0, 'so': 2.0, 'came': 2.0, 'glad': 1.0, 'although': 1.0, 'waited': 1.0, 'with': 3.0, 'reported': 1.0, 'sturdy': 1.0, 'they': 2.0, 'britax': 1.0, 'are': 1.0, 'on': 1.0, 'every': 1.0, 'if': 1.0, 'still': 1.0, 'gets': 1.0, 'hindrance': 1.0, 'daughter': 2.0, 'cover': 2.0, 'would': 1.0, 'sliding': 1.0, 'has': 1.0, 'am': 1.0, 'securing': 1.0, 'herself': 1.0, 'arguing': 1.0, 'also': 1.0, 'this': 2.0}
Word element => {'again': 1.0, 'child': 1.0, 'concerned': 1.0, 'will': 1.0, 'but': 1.0, 'it': 2.0, 'this': 1.0, 'fast': 1.0, 'being': 1.0, 'and': 1.0, 'five': 1.0, 'car': 2.0, 'a': 2.0, 'ever': 1.0, 'installing': 1.0, 'keep': 1.0, '9': 1.0, 'not': 1.0, 'technology': 1.0, 'the': 2.0, 'so': 1.0, 'easy': 2.0, 'seat': 3.0, 'to': 2.0, 'magic': 1.0, 'really': 1.0, 'amazing': 1.0, 'foot': 1.0, 'people': 1.0, 'take': 1.0, 'my': 2.0, 'tight': 1.0, 'click': 1.0, 'in': 2.0, 'makes': 1.0, 'point': 1.0, 'harness': 1.0, 'is': 3.0, 'till': 1.0, 'that': 1.0, 'height': 1.0, 'about': 1.0, 'install': 1.0, 'big': 1.0, '4': 1.0, 'i': 1.0, 'm': 1.0, 'able': 1.0, 'other': 1.0}
Word element => {'car': 1.0, 'from': 1.0, 'seat': 1.0, 'hers': 1.0, 'swap': 1.0, 'work': 1.0, 'much': 1.0, 'need': 1.0, 'and': 2.0, 'constantly': 1.0, 'if': 1.0, 'switch': 1.0, 'to': 3.0, 'be': 1.0, 'easy': 1.0, 'we': 1.0, 'cars': 1.0, 'our': 1.0, 'install': 1.0, 'colors': 1.0, 'sending': 1.0, 'isn': 1.0, 'between': 1.0, 'my': 1.0, 're': 1.0, 'neighbor': 1.0, 'daughter': 1.0, 'it': 1.0, 'with': 1.0, 't': 1.0, 'great': 1.0, 'the': 2.0}
Word element => {'quickly': 1.0, 'arrived': 1.0, 'amazon': 1.0, 'be': 1.0, 'daughter': 1.0, 'my': 2.0, 'shape': 1.0, 'and': 2.0, 'will': 1.0, 'quality': 1.0, 'from': 1.0, 'son': 1.0, 'as': 2.0, 'i': 1.0, 'purchasing': 1.0, 'for': 1.0, 'one': 1.0, 'britax': 1.0, 'it': 1.0, 'service': 1.0, 'loves': 1.0, 'boulevard': 1.0, 'excellent': 1.0, 'soon': 1.0, 'her': 1.0, 'she': 1.0, 'outgrows': 1.0, 'perfect': 1.0, 'in': 1.0, 'also': 1.0, 'exceptional': 1.0}
Word element => {'3': 1.0, 'over': 1.0, 'install': 1.0, 'to': 1.0, 'good': 2.0, 'my': 1.0, 'and': 2.0, 'very': 1.0, 'loves': 1.0, 'it': 2.0, 'kids': 1.0, 'comfortable': 1.0, 'years': 1.0, 'for': 1.0, 'design': 1.0, 'kid': 1.0, 'is': 1.0, 'easy': 1.0}
Word element => {'particles': 1.0, 'and': 1.0, 'food': 1.0, 'can': 1.0, 'by': 1.0, 'daughter': 1.0, 'she': 1.0, 'access': 1.0, 'places': 1.0, 'has': 1.0, 'for': 2.0, 'in': 1.0, 'her': 2.0, 'tendancy': 1.0, 'carseat': 1.0, 'stapes': 1.0, 'are': 3.0, 'tight': 1.0, 'my': 1.0, 'cup': 1.0, 'the': 7.0, 'weave': 1.0, 'big': 1.0, 'easy': 1.0, 'kind': 1.0, 'new': 1.0, 'girl': 1.0, 'herself': 1.0, 'texture': 1.0, 'i': 1.0, 'of': 1.0, 'loves': 1.0, 'that': 3.0, 'were': 1.0, 'straps': 2.0, 'same': 1.0, 'on': 2.0, 'do': 2.0, 'boulevards': 1.0, 'seat': 1.0, 'to': 1.0, 'perfect': 1.0, 'holders': 1.0, 'wish': 1.0, 'this': 1.0, 'have': 1.0, 'a': 2.0, 'coarse': 1.0, 'catch': 1.0}
Word element => {'years': 1.0, 'few': 1.0, 'could': 1.0, 'that': 1.0, 'wanted': 1.0, 'and': 1.0, 'britax': 1.0, 'for': 1.0, 'love': 1.0, 'she': 2.0, 'loves': 2.0, 'the': 1.0, 'my': 1.0, 'booster': 1.0, 'new': 1.0, 'her': 1.0, 'flowers': 1.0, 'this': 1.0, 'it': 1.0, 'daughter': 1.0, 'pink': 1.0, 'big': 1.0, 'safer': 1.0, 'is': 1.0, 'but': 1.0, 'than': 1.0, 'seat': 3.0, 'just': 1.0, 'seems': 1.0, 'since': 1.0, 'a': 3.0, 'i': 2.0, 'use': 1.0, 'got': 1.0}
Word element => {'again': 1.0, 'never': 1.0, 'will': 1.0, 'line': 1.0, 'mind': 1.0, 'or': 1.0, 'designed': 1.0, 'than': 1.0, 'more': 1.0, 'us': 1.0, 'right': 1.0, 'bc': 1.0, 'all': 1.0, 'be': 3.0, 'let': 1.0, 'them': 1.0, 'work': 2.0, 'didn': 2.0, 'someone': 1.0, 'read': 3.0, 'have': 1.0, 'couldn': 1.0, 'sometimes': 1.0, 'problem': 1.0, 'seem': 1.0, 'others': 2.0, 'many': 1.0, 'fit': 1.0, 't': 6.0, 'about': 1.0, 'there': 1.0, 'model': 1.0, '2': 1.0, 'overused': 1.0, 'likely': 1.0, 'amazon': 1.0, 'been': 1.0, 'said': 1.0, 'girl': 1.0, 'sales': 1.0, 'trying': 1.0, 'when': 1.0, 'issue': 1.0, 'loose': 1.0, 'same': 1.0, 'son': 1.0, 'sitting': 1.0, 'purchase': 2.0, 'prior': 1.0, 'times': 2.0, 'product': 1.0, 'child': 2.0, 'enough': 2.0, 'neither': 1.0, 'harness': 8.0, 'tighten': 3.0, 'correctly': 1.0, 'tried': 1.0, 'seems': 1.0, 've': 1.0, 'reviews': 2.0, 'we': 1.0, 'maybe': 1.0, 's': 3.0, 'a': 4.0, 'but': 5.0, 'don': 2.0, 'shoulder': 1.0, 'being': 1.0, 'very': 2.0, 'worked': 1.0, 'really': 1.0, 'demo': 2.0, 'feel': 1.0, 'rep': 1.0, 'nice': 1.0, 'sturdy': 1.0, 'ect': 1.0, 'his': 1.0, 'had': 4.0, 'wanted': 1.0, 'like': 2.0, 'using': 1.0, 'ridiculous': 1.0, 'hand': 1.0, 'as': 3.0, 'body': 1.0, 'not': 2.0, 'and': 8.0, 'tightening': 1.0, 'highly': 1.0, 'this': 7.0, 'found': 1.0, 'it': 8.0, 'well': 3.0, 'i': 13.0, 'definitely': 1.0, 'pulling': 1.0, 'can': 1.0, 'so': 4.0, 'to': 12.0, 'against': 1.0, 'rated': 1.0, 'lines': 1.0, 'similar': 1.0, 'click': 1.0, 'installation': 1.0, 'instructions': 1.0, 'believe': 1.0, 'called': 1.0, 'strap': 2.0, 'are': 1.0, 'britax': 4.0, 'plus': 1.0, 'either': 1.0, 'tight': 2.0, 'properly': 1.0, 'even': 1.0, 'did': 1.0, 'without': 1.0, 'for': 3.0, 'bottom': 1.0, 'solid': 1.0, 'love': 1.0, 'lot': 1.0, '2nd': 1.0, 'one': 2.0, 'my': 5.0, 'me': 5.0, 'entire': 1.0, 'why': 1.0, 'seats': 1.0, 'just': 2.0, 'by': 1.0, 'store': 2.0, 'seemed': 1.0, 'return': 1.0, 'disappointed': 1.0, 'directly': 1.0, 'looser': 2.0, 'between': 3.0, 'was': 8.0, 'handful': 1.0, 'knowledgeable': 1.0, 'puzzled': 1.0, 'told': 1.0, 'experience': 1.0, 'comfortable': 1.0, 'belly': 1.0, 'on': 1.0, 'long': 1.0, 'is': 4.0, 'at': 3.0, 'snug': 2.0, 'make': 1.0, 'area': 1.0, 'get': 1.0, 'directions': 1.0, 'secure': 1.0, 'ok': 1.0, 'still': 1.0, 'clear': 1.0, 'if': 1.0, 'with': 4.0, 'you': 1.0, 'able': 1.0, 'that': 3.0, 'easily': 1.0, 'pushing': 1.0, 'seat': 4.0, 'in': 2.0, 'm': 1.0, 'after': 1.0, 'the': 22.0, 'of': 3.0, 'force': 1.0, 'multiple': 2.0}
Word element => {'in': 1.0, 'room': 1.0, 'limits': 1.0, 'other': 1.0, 'weight': 1.0, 'latch': 3.0, 'that': 1.0, 'installation': 1.0, 'so': 1.0, 'car': 1.0, 'over': 1.0, 'i': 1.0, 'old': 1.0, 'much': 2.0, 'got': 1.0, 'this': 1.0, 'it': 3.0, 'he': 1.0, 'four': 1.0, 'have': 1.0, 'the': 3.0, 'my': 2.0, 'for': 2.0, 'comfortable': 1.0, 'year': 1.0, 'son': 2.0, 'very': 1.0, 'more': 1.0, 'is': 2.0, 'grow': 1.0, 'to': 1.0, 'our': 1.0, 'all': 1.0, 'seat': 1.0, 'not': 1.0, 'than': 2.0, 'does': 1.0, 'used': 1.0, 'who': 1.0, 'at': 1.0, 's': 1.0, 'plenty': 1.0, 'securely': 1.0, 'move': 1.0, 'seats': 1.0, 'attached': 1.0, 'and': 2.0, 'finds': 1.0, 'easier': 1.0, 'has': 1.0, 'of': 1.0}
Word element => {'part': 1.0, 'don': 2.0, 'honestly': 1.0, 'but': 1.0, 'plain': 1.0, 'looking': 2.0, 'thing': 1.0, 'plush': 1.0, 'little': 1.0, 'very': 1.0, 'a': 4.0, 't': 5.0, 'myself': 1.0, 'to': 1.0, 'car': 2.0, 'system': 2.0, 'kiddos': 1.0, 'tight': 1.0, 'seat': 4.0, 'in': 1.0, 'said': 1.0, 'strapped': 1.0, 'enough': 1.0, '40': 1.0, 'size': 2.0, 'latch': 1.0, 'install': 1.0, 'seats': 1.0, 'point': 1.0, 'can': 2.0, 'so': 2.0, 'weak': 1.0, 'when': 1.0, 'i': 6.0, 'tightening': 1.0, 'this': 4.0, 'only': 3.0, 'much': 2.0, 'its': 1.0, 'about': 1.0, 'boulevards': 1.0, 'height': 1.0, 'on': 1.0, 'quilted': 1.0, 'think': 1.0, 'trouble': 1.0, 'getting': 1.0, 'are': 1.0, 'be': 1.0, 'waterproof': 1.0, 'pinnacle': 2.0, 'bought': 1.0, 'used': 1.0, 'the': 14.0, 'of': 2.0, 'was': 2.0, 'doesn': 1.0, 'had': 1.0, 'some': 1.0, 'made': 1.0, 'it': 4.0, 'she': 1.0, 'looks': 1.0, 'sound': 1.0, 'child': 1.0, 'really': 1.0, 'tone': 1.0, 'realized': 1.0, 'didn': 1.0, 'after': 1.0, 'wider': 1.0, 'way': 1.0, 'huge': 1.0, 'than': 1.0, 'five': 1.0, 'say': 1.0, 'replaced': 1.0, 'at': 1.0, 'is': 3.0, 'look': 1.0, 'we': 2.0, 'shouldn': 1.0, 'reviews': 1.0, 'difference': 1.0, 'since': 1.0, 'friend': 1.0, 'always': 1.0, 'boulevard': 1.0, 'has': 1.0, 'time': 1.0, 'tall': 1.0, 'and': 1.0, 'with': 1.0, 'care': 1.0, 'like': 1.0, 'spend': 1.0, 'muscle': 1.0, 'hold': 1.0, 'concerned': 1.0, 'that': 2.0, 'will': 1.0, 'still': 1.0, 'her': 1.0, 'negative': 1.0, 'fabric': 2.0, 'daughter': 1.0, 'black': 3.0, 'pounds': 1.0, 'compared': 1.0}
Word element => {'on': 1.0, 'don': 1.0, 'but': 1.0, 'toys': 1.0, 'thing': 1.0, 't': 1.0, 'this': 1.0, 'safety': 1.0, 'skimp': 1.0, 'in': 1.0, 'your': 1.0, 'and': 1.0, 'every': 1.0, 'worth': 1.0, 'penny': 1.0, 'buy': 1.0, 'you': 1.0, 'less': 1.0, 'superbly': 1.0, 'made': 1.0, 'are': 1.0, 'putting': 1.0, 'child': 1.0}
Word element => {'leaks': 1.0, 'there': 1.0, 'colors': 1.0, 'vibrant': 1.0, 'with': 1.0, 'removeable': 1.0, 'handles': 1.0, 'and': 2.0, 'are': 2.0, 'my': 1.0, 'transitional': 1.0, 'no': 1.0, 'cup': 1.0, 'daughter': 1.0, 'loves': 1.0, 'either': 1.0, 'great': 1.0, 'it': 1.0, 'clean': 1.0, 'easy': 1.0, 'to': 1.0}
Word element => {'discolour': 1.0, 'started': 1.0, 'teat': 1.0, 'down': 1.0, 'after': 1.0, 'food': 1.0, 'small': 1.0, 'my': 1.0, 'are': 1.0, 'couple': 1.0, 'and': 1.0, 'very': 1.0, 'from': 1.0, 'as': 1.0, 'good': 1.0, '10': 1.0, 'side': 1.0, 'is': 2.0, 'the': 3.0, 't': 1.0, 'only': 2.0, 'this': 1.0, 'weeks': 1.0, 'doesn': 1.0, 'a': 2.0, 'cupit': 1.0, 'of': 1.0, 'leak': 1.0, 'bottom': 1.0, 'month': 1.0, 'old': 1.0, 'to': 2.0, 'likes': 1.0, 'hold': 1.0, 'at': 1.0, 'handles': 1.0, 'slightly': 1.0, 'has': 1.0, 'they': 1.0}
Word element => {'3': 1.0, 'i': 1.0, 'bought': 1.0, 'colors': 1.0, 'loved': 1.0, 'bat': 1.0, 'daughter': 1.0, 'these': 1.0, 'very': 1.0, 'easy': 1.0, 'right': 1.0, 'to': 2.0, 'off': 1.0, 'she': 1.0, 'grip': 1.0, 'took': 1.0, 'my': 1.0, 'the': 2.0}
Word element => {'thing': 1.0, 'about': 1.0, 'have': 1.0, 'don': 1.0, 'you': 2.0, 'on': 3.0, 'pop': 1.0, 'great': 1.0, 'are': 1.0, 'handles': 1.0, 'drink': 1.0, 'they': 1.0, 'suck': 1.0, 'for': 1.0, 'what': 1.0, 'do': 1.0, 'her': 2.0, 'so': 2.0, 'nursing': 1.0, 'disassembling': 1.0, 'still': 1.0, 'ones': 1.0, 'hard': 1.0, '7': 1.0, 'right': 2.0, 'was': 2.0, 'turned': 1.0, 'to': 5.0, 'comes': 1.0, 'is': 5.0, 'since': 3.0, 'too': 1.0, 'and': 5.0, 'now': 2.0, 'away': 1.0, 'born': 1.0, 'even': 1.0, 'worry': 1.0, 'before': 1.0, 'girl': 1.0, 'spout': 1.0, 'girlfriend': 1.0, 'trendline': 1.0, 'i': 1.0, 'old': 2.0, 'nuk': 1.0, 'little': 2.0, 'baby': 1.0, 'by': 1.0, 'yet': 1.0, 'cup': 2.0, 'first': 1.0, 'given': 1.0, 'which': 1.0, 'like': 1.0, 'using': 2.0, 'learner': 1.0, 'it': 3.0, 'she': 6.0, 'months': 2.0, 'natural': 2.0, 't': 1.0, 'a': 4.0, 's': 1.0, 'the': 5.0, '6': 1.0, 'took': 1.0, 'loved': 1.0, 'my': 3.0, 'fact': 1.0, 'into': 1.0, 'been': 1.0, 'that': 1.0, 'has': 1.0, 'allows': 1.0, 'this': 1.0, 'soft': 1.0, 'perfect': 1.0, 'stay': 1.0, 'not': 1.0}
Word element => {'easy': 1.0, 'friendly': 1.0, 'proof': 1.0, 'looking': 1.0, 'parent': 1.0, 'recommend': 1.0, 'added': 1.0, 'daughter': 1.0, 'but': 1.0, 'is': 5.0, 'and': 5.0, 'i': 1.0, 'it': 1.0, 'have': 1.0, 'that': 1.0, 'been': 2.0, 'hold': 1.0, 'bonus': 1.0, 'using': 1.0, 'for': 3.0, 'we': 1.0, 'a': 4.0, 'playtex': 1.0, 'valves': 1.0, 'cup': 5.0, 'had': 1.0, 'any': 1.0, 'cups': 1.0, 'to': 4.0, 'the': 4.0, 'searching': 1.0, 'cause': 1.0, 'holes': 1.0, 'airtight': 1.0, 'new': 1.0, 'would': 2.0, 'wear': 1.0, 'after': 1.0, 'use': 2.0, 'teether': 1.0, 'leak': 2.0, 'from': 1.0, 'require': 1.0, 'air': 1.0, 'not': 1.0, 'just': 1.0, 'because': 1.0, 'does': 1.0, 'valve': 1.0, 'start': 1.0, 'teething': 1.0, 'spout': 1.0, 'sippy': 2.0, 'baby': 1.0, 'my': 1.0, 'another': 1.0, 'perfect': 2.0, 'this': 3.0, 'soft': 1.0}
Word element => {'these': 1.0, 'love': 1.0, 'own': 1.0, 'his': 1.0, 'holding': 1.0, 'of': 1.0, 'capable': 1.0, 'cups': 1.0, 'when': 1.0, 'has': 1.0, 'is': 1.0, 'really': 2.0, 'at': 1.0, 'sippy': 2.0, 'son': 1.0, 'cup': 1.0, 'my': 1.0, 'started': 1.0, 'give': 1.0, 'six': 1.0, 'i': 2.0, 'old': 1.0, 'now': 1.0, 'to': 2.0, 'was': 1.0, 'about': 1.0, 'on': 1.0, 'months': 2.0, 'five': 1.0, 'and': 2.0, 'well': 1.0, 'a': 1.0, 'half': 1.0, 'he': 2.0, 'this': 1.0, 'taken': 1.0, 'it': 2.0}
Word element => {'recommend': 1.0, 'definitely': 1.0, 'side': 1.0, 'markers': 1.0, 'there': 1.0, 'also': 1.0, 'clean': 1.0, 'ounce': 1.0, 'parts': 1.0, 'all': 1.0, 'to': 2.0, 'easy': 2.0, 'very': 1.0, 'attach': 1.0, 'nipple': 1.0, 'we': 2.0, 'a': 2.0, 'had': 1.0, 'spout': 1.0, 'ready': 1.0, 'plastic': 1.0, 'this': 2.0, 'with': 2.0, 'first': 1.0, 'she': 2.0, 'it': 1.0, 'and': 4.0, 'straw': 1.0, 'for': 2.0, 'love': 2.0, 'those': 2.0, 'not': 1.0, 'ones': 1.0, 'without': 1.0, 'the': 6.0, 'great': 2.0, 'tried': 2.0, 'i': 1.0, 'my': 1.0, 'yet': 1.0, 'cup': 1.0, 'them': 1.0, 'sippy': 2.0, 'favorite': 1.0, 'time': 1.0, 'they': 1.0, 'works': 1.0, 'introducing': 1.0, 'is': 3.0, 'around': 1.0, '5': 1.0, 'one': 1.0, 'months': 1.0, 'on': 3.0, 'handles': 1.0, 'are': 4.0, 'that': 2.0, 'but': 1.0, 'work': 1.0, 'can': 1.0, 'removable': 1.0, 'hard': 2.0, 'later': 1.0, 'holding': 1.0}
Word element => {'out': 1.0, 'dripping': 1.0, 'water': 1.0, 'seen': 1.0, 'little': 1.0, 'a': 1.0, 'playing': 1.0, 'be': 1.0, 'might': 1.0, 'she': 1.0, 'sippy': 2.0, 'are': 1.0, 'too': 1.0, 'daughter': 1.0, 'cups': 1.0, 'best': 1.0, 'giving': 1.0, 'they': 1.0, 'the': 3.0, 'these': 1.0, 'but': 2.0, 'leak': 1.0, 'my': 1.0, 'cup': 1.0, 'much': 1.0, 'to': 1.0, 'i': 2.0, 'likes': 1.0, 'have': 2.0, 'change': 1.0, 'her': 2.0, 'clothes': 1.0, 'so': 1.0, 'after': 1.0}
Word element => {'these': 1.0, 'loved': 1.0, 'daughter': 1.0, 'son': 1.0, 'both': 1.0, 'a': 1.0, 'great': 2.0, 'and': 2.0, 'first': 1.0, 'sippy': 1.0, 'does': 1.0, 'not': 1.0, 'my': 1.0, 'assest': 1.0, 'the': 1.0, 'are': 1.0, 'leak': 1.0, 'removeable': 1.0, 'cups': 1.0, 'handles': 1.0}
Word element => {'definitely': 1.0, 'would': 1.0, 'long': 1.0, 'day': 1.0, 'all': 1.0, 'needed': 1.0, 'a': 1.0, 'is': 1.0, 'training': 1.0, 'recommend': 1.0, 'cup': 1.0, 'and': 1.0, 'it': 2.0, 'great': 1.0, 'my': 1.0, 'baby': 1.0, 'loves': 1.0, 'this': 1.0, 'uses': 1.0, 'one': 1.0}
Word element => {'baby': 1.0, 'best': 1.0, 'my': 1.0, 'the': 1.0, 'is': 1.0, 'this': 1.0, 'material': 1.0, 'soft': 1.0, 'spout': 1.0, 'it': 2.0, 'like': 1.0, 'very': 1.0, 'and': 3.0, 'easy': 1.0, 'to': 1.0, 'shape': 1.0, 's': 1.0, 'prety': 1.0, 'take': 1.0, 'apart': 1.0, 'good': 1.0, 'wash': 1.0}
Word element => {'others': 1.0, 'more': 1.0, 'than': 1.0, 'does': 1.0, 'but': 1.0, 'drinker': 1.0, 'difference': 1.0, 'him': 1.0, 'when': 1.0, 'different': 1.0, 'several': 1.0, 'i': 4.0, 'tried': 1.0, 'sippy': 1.0, 'at': 1.0, 'cup': 3.0, 'went': 1.0, 'seem': 1.0, 'still': 1.0, 'son': 1.0, 've': 1.0, 'of': 3.0, 'like': 1.0, 'nuk': 1.0, 'picked': 2.0, 'he': 2.0, 'it': 2.0, 'this': 2.0, 'out': 4.0, 'up': 2.0, 'child': 1.0, 'cups': 1.0, 'to': 2.0, 'drink': 2.0, 'well': 1.0, 'was': 1.0, 'doesn': 1.0, 'daycare': 1.0, 'that': 1.0, 'd': 1.0, 'my': 1.0, 'another': 1.0, 't': 2.0, 'a': 3.0, 's': 1.0, 'learner': 1.0, 'milk': 2.0, 'and': 3.0, 'drinking': 1.0, 'huge': 1.0, 'one': 1.0, 'bought': 1.0, 'isn': 1.0, 'right': 1.0, 'day': 1.0, 'definitely': 1.0, 'noticed': 1.0, 'makes': 1.0}
Word element => {'her': 1.0, 'now': 1.0, 'frustrated': 1.0, 've': 1.0, 'other': 1.0, 'than': 1.0, 'fluid': 1.0, 'get': 2.0, 'my': 1.0, 'milk': 1.0, 'and': 5.0, 'prefers': 1.0, 'removable': 1.0, 'work': 1.0, 'doesn': 1.0, 'spill': 1.0, 'old': 1.0, 'tried': 2.0, 'i': 1.0, 'base': 1.0, 'water': 1.0, 'daughter': 2.0, 'actually': 1.0, 'for': 4.0, 'design': 1.0, 'landing': 1.0, 'we': 2.0, 't': 2.0, 'these': 3.0, 'the': 5.0, 'before': 1.0, 'works': 1.0, 'both': 1.0, 'many': 1.0, 'is': 3.0, 'of': 2.0, 'they': 1.0, 'to': 2.0, 'cups': 3.0, 'our': 1.0, 'that': 1.0, 'nuk': 1.0, '10': 1.0, 'nice': 1.0, 'varieties': 1.0, 'out': 2.0, 'don': 1.0, 'child': 1.0, 'appreciate': 1.0, 'top': 1.0, 'with': 2.0, 'on': 1.0, 'grows': 1.0, 'she': 1.0, 'month': 1.0, 'it': 1.0, 'handles': 1.0, 'bottle': 1.0, 'so': 1.0, 'cup': 1.0, 'boys': 1.0, 'easier': 1.0, 'well': 1.0, 'girls': 1.0, 'also': 1.0}
Word element => {'prefers': 1.0, 'idea': 1.0, 'use': 1.0, 'anything': 1.0, 'll': 1.0, 'now': 1.0, 'are': 1.0, 'otherwise': 1.0, 'resistance': 1.0, 'till': 1.0, 'needs': 1.0, 'helped': 1.0, 'work': 1.0, 'with': 1.0, 'get': 2.0, 'seem': 1.0, 'out': 2.0, 'these': 1.0, 'comes': 1.0, 'liquid': 1.0, 'gets': 1.0, 'so': 1.0, 'suction': 2.0, 'a': 1.0, 'create': 1.0, 'will': 1.0, 'thirsty': 1.0, 'frustrated': 1.0, 'crushed': 1.0, 'little': 1.0, 'or': 1.0, 'screwed': 1.0, 'bottles': 1.0, 'instantly': 1.0, 'still': 3.0, 'if': 2.0, 'want': 1.0, 'time': 1.0, 'loved': 2.0, 'for': 2.0, 'fine': 1.0, 'we': 2.0, 's': 3.0, 't': 4.0, 'likely': 1.0, 'mainly': 1.0, 'seems': 1.0, 'tried': 1.0, 'and': 5.0, 'different': 2.0, 'sure': 1.0, 'transition': 1.0, 'problem': 1.0, 'though': 2.0, 'more': 2.0, 'was': 3.0, 'doesn': 2.0, 'to': 10.0, 'daycare': 1.0, 'from': 2.0, 'best': 1.0, 'been': 1.0, 'tommee': 1.0, 'breastfed': 1.0, 'finicky': 1.0, 'since': 1.0, 'meet': 1.0, 'is': 3.0, 'at': 1.0, 'be': 1.0, 'drink': 3.0, 'my': 2.0, 'lid': 1.0, 'he': 10.0, 'found': 2.0, 'gotten': 1.0, 'no': 1.0, 'begin': 1.0, '2': 1.0, 'of': 2.0, 'the': 10.0, 'lot': 1.0, 'one': 3.0, 'ones': 1.0, 'zippy': 1.0, 'sippy': 1.0, 'but': 2.0, '8230': 1.0, 'milk': 2.0, 'just': 2.0, 'not': 1.0, 'tightening': 1.0, 'bottle': 1.0, 'this': 4.0, 'nuk': 1.0, 'getting': 1.0, 'in': 2.0, 'longest': 1.0, 'had': 2.0, 'would': 1.0, 'weeks': 1.0, 'downside': 1.0, 'old': 1.0, 'that': 3.0, 'because': 4.0, 'tippees': 1.0, 'problems': 1.0, 'only': 2.0, 'hasn': 1.0, 'there': 1.0, 'really': 2.0, 'didn': 1.0, 'got': 1.0, 'even': 2.0, 'move': 1.0, 'on': 3.0, 'has': 1.0, 'always': 1.0, 'recommendation': 1.0, 'much': 1.0, 'put': 1.0, 'his': 1.0, 'teachers': 1.0, 'it': 11.0, 'him': 1.0, 'also': 1.0, 'great': 1.0, 'car': 2.0, 'rides': 1.0, 'i': 4.0, 'never': 1.0, 'leak': 1.0, '12': 1.0, 'pressure': 1.0, 'you': 2.0, 'upside': 1.0, 'nipple': 2.0, 'leaked': 1.0, 'when': 1.0, 've': 2.0, 'several': 1.0, 'down': 1.0}
Word element => {'will': 1.0, 'to': 1.0, 'bottleneck': 1.0, 'and': 1.0, 'very': 1.0, 'cute': 1.0, 'soft': 1.0, 'because': 1.0, 'recommend': 1.0, 'add': 1.0, 'bottles': 1.0, 'powder': 1.0, 'outlook': 1.0, 'they': 1.0, 'nuk': 1.0, 'choose': 1.0, 'besides': 1.0, 'nipple': 1.0, 'the': 6.0, 'i': 2.0, 'is': 2.0, 'it': 2.0, 's': 1.0, 'enough': 1.0, 'especially': 1.0, 'for': 1.0, 'wide': 1.0, 'have': 1.0, 'babies': 1.0, 'in': 1.0, 'perfect': 1.0, 'newborn': 1.0}
Word element => {'was': 1.0, 'got': 1.0, 'bottle': 1.0, 'see': 1.0, 'nuk': 1.0, 'package': 1.0, 'we': 3.0, 'were': 1.0, 'that': 2.0, 'visiting': 1.0, 'items': 1.0, 'the': 5.0, 'clinic': 1.0, 'are': 1.0, 'made': 1.0, 'for': 1.0, '5oz': 1.0, 'received': 1.0, 'much': 1.0, 'from': 1.0, 'as': 3.0, 'gotten': 1.0, 'and': 1.0, 'in': 1.0, 'disappointed': 1.0, 'with': 1.0, 'only': 1.0, 'this': 3.0, 'bad': 1.0, 'have': 1.0, 'product': 1.0, 'poorly': 1.0, 'sticks': 1.0, 'baby': 1.0, 'never': 1.0, 'nipples': 1.0, 'together': 1.0, 'not': 2.0, 'i': 2.0, 'am': 1.0, 'sure': 1.0, 'problem': 1.0, 'did': 1.0, 'if': 1.0}
Word element => {'more': 1.0, 'ordering': 1.0, 'm': 1.0, 'on': 1.0, 'put': 1.0, 'seems': 1.0, 'whole': 1.0, 'teeth': 1.0, 'incoming': 1.0, 'weeks': 1.0, '8': 1.0, 'last': 1.0, 'the': 1.0, 'but': 1.0, 'top': 1.0, 'hadn': 1.0, 'had': 1.0, 'was': 1.0, 'to': 2.0, 'happier': 1.0, 'given': 1.0, 'i': 3.0, 'evenflo': 1.0, 'took': 1.0, 'lot': 1.0, 'at': 1.0, 'of': 2.0, 'shower': 1.0, 'it': 4.0, 'slow': 1.0, 'he': 2.0, 'this': 1.0, 'my': 2.0, 'refusing': 1.0, 'his': 3.0, 'used': 1.0, 'yet': 1.0, 'bottles': 2.0, 'been': 2.0, 'give': 1.0, 'so': 2.0, 'bottle': 1.0, 'baby': 2.0, 'because': 1.0, 'just': 1.0, 'gums': 2.0, 'these': 1.0, 'hurt': 1.0, 'and': 2.0, 'one': 1.0, 'decided': 1.0, 'very': 1.0, 's': 1.0, 't': 1.0, 'a': 3.0, 'much': 3.0, 'try': 1.0, 'fine': 1.0, 'seemed': 1.0, 'teether': 1.0, 'easier': 1.0, 'has': 1.0, 'pressure': 1.0, 'less': 1.0, 'made': 1.0}
Word element => {'their': 1.0, 'leak': 1.0, 'didn': 1.0, 'oz': 1.0, 'lot': 1.0, 'bottles': 2.0, 'my': 1.0, 'feedings': 1.0, 'in': 1.0, 'liquid': 1.0, 'of': 2.0, '10': 1.0, 'almost': 1.0, 'drinks': 1.0, 'helpful': 1.0, 'put': 1.0, 'that': 3.0, 'you': 1.0, 'these': 1.0, 'without': 1.0, 'the': 3.0, 'so': 1.0, 'love': 1.0, 'but': 1.0, 'can': 1.0, 'it': 4.0, 'was': 1.0, 'to': 2.0, 't': 1.0, 'a': 3.0, 's': 1.0, 'could': 1.0, 'like': 1.0, 'hold': 1.0, 'oldest': 1.0, 'prevent': 1.0, 'do': 1.0, 'much': 1.0, 'otherwise': 1.0, 'i': 1.0, 'plus': 1.0, 'inserts': 2.0, 'leaks': 1.0, 'is': 1.0, 'perfect': 1.0, 'wish': 1.0, 'pain': 1.0, 'milk': 1.0, 'and': 2.0, 'starting': 1.0, 'take': 1.0, 'them': 1.0, 'out': 1.0, 'then': 1.0}
Word element => {'recognise': 1.0, 'can': 1.0, 'now': 1.0, 'son': 1.0, 'fun': 1.0, 'these': 1.0, 'have': 1.0, 'colours': 1.0, 'bottles': 1.0, 'reduced': 1.0, 'burping': 1.0, 'and': 1.0, 'wind': 1.0, 'of': 1.0, 'are': 1.0, 'the': 2.0, 'my': 2.0, 'baby': 1.0, 'which': 1.0, 'design': 1.0}
Word element => {'glass': 1.0, 'use': 1.0, 'have': 1.0, 'you': 1.0, 'if': 1.0, 'many': 1.0, 'company': 1.0, 'too': 1.0, 'by': 1.0, 'a': 1.0, 'since': 1.0, 'not': 1.0, 'okay': 1.0, 'are': 1.0, 'were': 1.0, 'that': 1.0, 'to': 1.0, 'had': 1.0, 'i': 2.0, 'bottles': 3.0, 'am': 2.0, 'flow': 1.0, 'medium': 1.0, 'nipples': 1.0, 'they': 2.0, 're': 2.0, 'options': 1.0, 'made': 1.0, 'them': 1.0, 'hopeful': 1.0, 'heavy': 1.0, 'ones': 1.0, 'german': 1.0, 'these': 1.0, 'the': 2.0, 'five': 1.0, 'ounce': 1.0, 'and': 1.0, 'for': 1.0, 'using': 1.0, 'liked': 1.0, 'nervous': 1.0, 'plastic': 1.0, 'but': 1.0, 'about': 1.0, 'baby': 1.0}
Word element => {'bottles': 1.0, 'favorite': 1.0, 'my': 1.0}
Word element => {'purchase': 1.0, 'to': 1.0, 'snack': 1.0, 'note': 1.0, 'her': 1.0, 'snacks': 1.0, 'off': 1.0, 'right': 1.0, 'them': 1.0, 'she': 1.0, 'onto': 1.0, 'with': 1.0, 'only': 1.0, 'fitted': 1.0, 'they': 1.0, 'dumped': 1.0, 'tops': 2.0, 'so': 1.0, 'month': 1.0, 'screw': 1.0, 'cute': 1.0, 'containers': 2.0, 'but': 1.0, 'twist': 1.0, 'were': 2.0, 'thought': 1.0, 'self': 1.0, 'not': 2.0, 'just': 1.0, 'practical': 1.0, 'for': 1.0, 'daughter': 1.0, 'cup': 1.0, 'my': 1.0, 'these': 1.0, 'the': 1.0, '14': 1.0, 'took': 1.0, 'i': 1.0, 'old': 1.0, 'and': 1.0, 'do': 1.0, 'everywhere': 1.0, 'on': 2.0}
Word element => {'waste': 1.0, 'don': 1.0, 'those': 1.0, 'cabinet': 1.0, 'sit': 1.0, 'just': 1.0, 'now': 1.0, 'exclusively': 1.0, 'use': 1.0, 'handles': 1.0, 'two': 1.0, 'with': 1.0, 'come': 1.0, 'they': 1.0, 'your': 1.0, 'on': 3.0, 'almost': 2.0, 'fingers': 2.0, 'ones': 1.0, 'others': 1.0, 'these': 3.0, 'munchkin': 1.0, 'are': 5.0, 't': 1.0, 'we': 2.0, 'different': 1.0, 'makes': 1.0, 'brand': 3.0, 'little': 2.0, 'very': 1.0, 'and': 5.0, 'get': 1.0, 'hands': 1.0, 'the': 11.0, 'slits': 1.0, 'for': 1.0, 'snacks': 1.0, 'oxo': 2.0, 'especially': 1.0, 'favorite': 1.0, 'have': 1.0, 'due': 1.0, 'snack': 2.0, 'bc': 1.0, 'nice': 1.0, 'to': 3.0, 'our': 2.0, 'cups': 1.0, 'difficult': 1.0, 'trap': 1.0, 'making': 1.0, 'out': 1.0, 'them': 2.0, 'of': 2.0, 'cup': 1.0, 'easier': 1.0, 'angle': 1.0, 'kinds': 1.0, 'well': 1.0, 'money': 1.0, 'but': 1.0, 'hold': 1.0, 'which': 1.0, 'favorites': 1.0, 'in': 2.0, 'top': 1.0, 'smooth': 1.0, 'many': 1.0, 'gentle': 1.0, 'sharp': 1.0, 'works': 1.0, 'tiny': 1.0}
Word element => {'off': 1.0, 'quickly': 1.0, 'also': 1.0, 'she': 1.0, 'flimsy': 1.0, 'is': 3.0, 'top': 2.0, 'while': 1.0, 'use': 1.0, 'take': 1.0, 'month': 1.0, '16': 1.0, 'love': 1.0, 'it': 1.0, 'first': 1.0, 'this': 1.0, 'of': 2.0, 'my': 1.0, 'the': 5.0, 'snack': 1.0, 'idea': 1.0, 'to': 2.0, 'was': 1.0, 'minute': 1.0, 'old': 1.0, 'i': 1.0, 'spill': 1.0, 'her': 1.0, 'so': 1.0, 'however': 1.0, 'food': 1.0, 'on': 1.0, 'over': 1.0, 'able': 2.0, 'all': 1.0, 'product': 1.0, 'floor': 1.0, 'within': 1.0}
Word element => {'design': 1.0, 'take': 1.0, 'just': 1.0, 'solvant': 1.0, 'around': 1.0, 'together': 1.0, 'then': 1.0, 'looked': 1.0, 'his': 2.0, 'black': 1.0, 'blue': 1.0, 'day': 1.0, 'at': 2.0, 'work': 1.0, 'sitting': 1.0, 'was': 2.0, 'toddler': 1.0, 'my': 1.0, 'when': 1.0, 'out': 2.0, 'it': 2.0, 'why': 1.0, 'figured': 1.0, 'off': 2.0, 'paint': 1.0, 'and': 8.0, 'use': 2.0, 'every': 1.0, 'had': 2.0, 'purchased': 1.0, 'to': 1.0, 'our': 1.0, 'outside': 2.0, 'put': 1.0, 'on': 2.0, 'of': 3.0, 'leak': 1.0, 'cup': 2.0, '4': 1.0, 'i': 3.0, 'outer': 1.0, 'love': 2.0, 'one': 2.0, 'ink': 1.0, 'products': 1.0, 'these': 1.0, 'hands': 1.0, 'without': 1.0, 'the': 11.0, 'great': 2.0, 'marks': 1.0, 'nuk': 1.0, 'brand': 1.0, 'couldn': 1.0, 'print': 1.0, 'a': 1.0, 't': 2.0, 'we': 3.0, 'have': 1.0, 'layer': 2.0, 'same': 2.0, 'style': 1.0, 'them': 1.0, 'sippy': 1.0, 'are': 1.0, 'so': 1.0, 'face': 1.0, 'come': 1.0, 'insulation': 1.0, 'however': 1.0, 'that': 1.0, 'seal': 1.0, 'they': 1.0, 'don': 1.0, 'with': 1.0, 'only': 1.0, 'this': 1.0, 'regular': 1.0, 'figure': 1.0, 'single': 1.0, 'table': 1.0, 'like': 1.0, 'hand': 1.0, 'he': 1.0, 'plastic': 1.0, 'washing': 1.0}
Word element => {'wrong': 1.0, 'go': 1.0, 'you': 1.0, 'insulated': 1.0, 'they': 1.0, 'is': 1.0, 'clean': 1.0, 'easy': 1.0, 'love': 1.0, 'with': 1.0, 'first': 1.0, 'and': 1.0, 'searching': 1.0, 'cannot': 2.0, 'to': 2.0, 'much': 1.0, 'plus': 1.0, 'there': 1.0, '34': 2.0, 'of': 1.0, 'leak': 1.0, 'another': 1.0, 'years': 1.0, 'great': 1.0, 'these': 3.0, 'the': 1.0, 'are': 3.0, 'actual': 1.0, 'three': 1.0, 'that': 1.0, 'express': 1.0, 'after': 1.0, 'proof': 1.0, 'too': 1.0, 'cups': 3.0, 'i': 3.0, 'found': 1.0, 'have': 1.0, 'begin': 1.0, 'how': 1.0}
Word element => {'be': 1.0, 'clear': 1.0, 'cover': 1.0, 'off': 1.0, 'daughter': 1.0, 'when': 1.0, 'paint': 2.0, 'butter': 1.0, 'a': 2.0, 'peanut': 1.0, 'jelly': 1.0, 'love': 1.0, 'just': 1.0, 'cup': 2.0, 'can': 1.0, 'but': 2.0, 'and': 2.0, 'my': 1.0, 'another': 2.0, 'perfect': 1.0, 'buyer': 2.0, 'sandwich': 1.0, 'so': 1.0, 'had': 2.0, 'to': 1.0, 'i': 2.0, 'tried': 1.0, 'said': 2.0, 'on': 1.0, 'her': 1.0, 'the': 5.0, 'hands': 1.0, 'like': 2.0, 'table': 1.0, 'started': 1.0, 'clothes': 1.0, 'designs': 1.0, 'chair': 1.0, 'take': 1.0, 'inside': 1.0, 'outer': 1.0, 'of': 1.0, 'it': 2.0, 'taken': 1.0, 'would': 2.0, 'coming': 1.0, 'have': 1.0, 'hours': 1.0, 'if': 1.0, 'keep': 1.0, 'they': 1.0}
Word element => {'buy': 1.0, 'not': 1.0, 'them': 2.0, 'using': 1.0, 'ceased': 1.0, 've': 1.0, 'from': 1.0, 'black': 1.0, 'of': 1.0, 'lot': 1.0, 'off': 3.0, 'and': 3.0, 'her': 1.0, 'wipes': 1.0, 'purchasing': 1.0, 'design': 2.0, 'other': 1.0, 'little': 1.0, 'read': 1.0, 'again': 1.0, 'when': 2.0, 'cups': 2.0, 'daughter': 1.0, 'these': 3.0, 'the': 6.0, 'red': 1.0, 'but': 1.0, 'on': 1.0, 'put': 1.0, 'will': 2.0, 'before': 1.0, 'tipped': 1.0, 'don': 2.0, 'over': 1.0, 'reviews': 1.0, 'i': 3.0, 'fingers': 1.0, 'smearing': 1.0, 'paint': 3.0, 'been': 1.0, 'that': 1.0, 'said': 1.0, 'in': 1.0, 'dishwasher': 1.0, 'handwashing': 1.0, 'because': 1.0, 'rocketship': 1.0, 'it': 1.0, 'take': 1.0, 'have': 1.0, 'gets': 1.0, 'still': 1.0, 'comes': 1.0, 'spill': 1.0, 'was': 1.0, 'my': 1.0, 'everywhere': 1.0, 'cup': 1.0, 'holding': 1.0, 'yesterday': 1.0, 'noticed': 1.0, 'we': 1.0, 't': 2.0, 'a': 1.0}
Word element => {'before': 1.0, 'their': 1.0, 'happened': 1.0, 'has': 1.0, 'it': 1.0, 'nuk': 1.0, 'usually': 1.0, 'idk': 1.0, 'batch': 1.0, 'was': 1.0, 'there': 1.0, 'if': 1.0, 'wonder': 1.0, 'a': 1.0, 't': 1.0, 'products': 2.0, 'these': 1.0, 'came': 1.0, 'gerber': 1.0, 'cup': 1.0, 'my': 1.0, 'and': 3.0, 'away': 1.0, 'me': 1.0, 'i': 7.0, 'bad': 2.0, 'paint': 2.0, 'actually': 1.0, 'love': 2.0, 'never': 1.0, 'mine': 1.0, 'using': 1.0, 'soap': 1.0, 'on': 1.0, 'off': 2.0, '1st': 2.0, 'no': 1.0, 'day': 2.0, 'why': 1.0, 'very': 1.0, 'don': 1.0, 'them': 3.0, 'designs': 2.0, 'understand': 1.0, 'other': 1.0, 'people': 1.0, 'touched': 1.0, 'have': 1.0, 'with': 3.0, 'had': 1.0, 'cups': 1.0, 'to': 1.0, 'were': 1.0, 'throw': 1.0, 'bought': 1.0, 'wet': 1.0, 'butterfly': 1.0, 'rubbed': 1.0, 'right': 1.0, 'the': 6.0, 'hands': 1.0, 'without': 1.0, 'got': 1.0, 'even': 1.0, 'problems': 1.0, 'makes': 1.0}
Word element => {'rack': 1.0, 'top': 1.0, 'safe': 1.0, 'dishwasher': 1.0, 'this': 1.0, 'it': 1.0, 'only': 1.0, 'rid': 1.0, 'is': 4.0, 'leave': 1.0, 'on': 1.0, 'piece': 1.0, 'proof': 1.0, 'chew': 1.0, 'use': 1.0, 'and': 2.0, '1': 1.0, 'since': 1.0, 'i': 1.0, 'old': 1.0, 'marks': 1.0, 'nuk': 1.0, 'daughter': 1.0, 'had': 1.0, 'all': 1.0, 'cups': 1.0, 'to': 2.0, 'bite': 1.0, 'good': 1.0, 'of': 1.0, 'plus': 1.0, 'there': 1.0, 'my': 2.0, 'cup': 1.0, 'the': 1.0, 'a': 1.0, 't': 1.0, 'silicone': 1.0, 'mimicks': 1.0, '2': 1.0, 'would': 1.0, 'them': 1.0, 'sippy': 1.0, 'doesn': 1.0, 'drinking': 1.0, 'from': 1.0, 'year': 1.0, 'teeth': 1.0, 'which': 2.0, 'for': 1.0, 'get': 1.0, 'easy': 1.0}
Word element => {'chew': 1.0, 'show': 1.0, 'leak': 1.0, 'don': 2.0, '15mos': 1.0, 'kids': 1.0, 'tumbler': 1.0, 'coolster': 1.0, 'market': 1.0, 'take': 1.0, 'single': 1.0, 'every': 1.0, 'playtex': 1.0, 'on': 2.0, 'cracked': 1.0, 'my': 1.0, 'lid': 1.0, 'importantly': 1.0, 'gone': 1.0, 'of': 2.0, 'has': 2.0, 'they': 3.0, 'inside': 1.0, 'down': 1.0, 'best': 1.0, 'both': 1.0, 'version': 2.0, 'advice': 1.0, 'insulated': 1.0, 'use': 1.0, 'happy': 1.0, 'by': 1.0, 'junk': 1.0, 'i': 2.0, 'for': 1.0, 'where': 2.0, 'cheap': 1.0, 'marks': 1.0, 'nuk': 1.0, 'sports': 1.0, 'was': 1.0, 'cups': 1.0, 'to': 2.0, 'now': 1.0, 'swear': 1.0, 'finally': 1.0, 'an': 1.0, 'quality': 1.0, 'so': 1.0, 'leaks': 1.0, 'had': 1.0, 'hill': 1.0, 'goes': 1.0, 'made': 1.0, 'the': 13.0, 'valve': 1.0, 'these': 1.0, 'and': 6.0, 'point': 1.0, 'more': 1.0, 'is': 2.0, 'not': 1.0, 'cup': 3.0, 'worth': 1.0, 'money': 1.0, 'have': 1.0, 'causing': 1.0, 'when': 1.0, 'boys': 1.0, 'are': 1.0, 't': 2.0, 'rubs': 1.0, 'a': 1.0, 'piece': 1.0, 'paint': 1.0, 'off': 1.0}
Word element => {'last': 1.0, 'that': 1.0, 'and': 1.0, 'comfortable': 1.0, 'very': 1.0, 'year': 1.0, 'my': 1.0, 'expensive': 1.0, 'used': 1.0, 'britax': 2.0, 'thinks': 1.0, 'old': 1.0, 'i': 1.0, 'two': 1.0, 'differently': 1.0, '5': 1.0, 'than': 2.0, 'seats': 1.0, 'installed': 1.0, 've': 2.0, 'the': 2.0, 'more': 1.0, 'is': 2.0, 'seat': 2.0, 'car': 3.0, 'owned': 1.0, 'quality': 1.0, 'but': 2.0, 'secure': 1.0, 'other': 2.0, 'we': 1.0, 'ever': 1.0, 'makes': 2.0, 's': 1.0, 'way': 2.0, 'durable': 1.0, 'this': 1.0, 'it': 3.0, 'anchored': 1.0, 'any': 1.0}
Word element => {'material': 1.0, 'black': 1.0, 'hot': 1.0, 'won': 1.0, 'hair': 1.0, 'installation': 2.0, 'trips': 1.0, 'long': 1.0, 'does': 2.0, 'on': 2.0, 'con': 1.0, 'easy': 1.0, 'uncomfortably': 1.0, 'stick': 1.0, 'while': 1.0, 'forward': 1.0, 'will': 1.0, 'secure': 1.0, 'holders': 1.0, 'not': 1.0, 'pro': 1.0, 'the': 3.0, 'things': 1.0, 'another': 1.0, 'my': 2.0, 'cup': 1.0, 'sleeping': 1.0, 'head': 1.0, 'might': 1.0, 't': 1.0, 'could': 1.0, 'about': 1.0, 'child': 1.0, 'most': 1.0, 'in': 2.0, 'great': 2.0, 'feel': 2.0, 'comfortable': 1.0, 'have': 1.0, 'ever': 1.0, 'experienced': 1.0, 'cactus': 1.0, 'are': 1.0, 'bottom': 1.0, 'of': 1.0, 'cover': 2.0, 'flower': 1.0, 'securely': 1.0, 'fit': 1.0, 'patterned': 1.0, 'it': 3.0, 'more': 2.0, 'fall': 1.0, 'is': 3.0, 'sit': 1.0, 'somewhat': 1.0, 'i': 1.0, 'velvety': 1.0, 'as': 2.0, 'seat': 2.0, 'to': 3.0}
Word element => {'seem': 1.0, 'doesn': 1.0, 'chunky': 1.0, 'after': 1.0, 'but': 2.0, '85': 2.0, 'little': 1.0, 'needed': 1.0, 'harnesses': 1.0, 'narrow': 1.0, 't': 1.0, 'a': 3.0, 'since': 1.0, 'bit': 1.0, 'boy': 2.0, 'i': 2.0, 'old': 1.0, 'being': 1.0, 'these': 1.0, 'the': 3.0, 'he': 2.0, 'this': 2.0, 'it': 1.0, 'only': 1.0, 'accident': 1.0, 'my': 3.0, 'in': 1.0, 'seems': 1.0, 'purchased': 1.0, 'had': 1.0, 'giant': 1.0, 'seat': 3.0, 'to': 3.0, 'year': 1.0, 'for': 1.0, 'motor': 1.0, 'wings': 1.0, '3': 1.0, 'be': 3.0, 'replaced': 1.0, 'uncomfortable': 1.0, 'one': 1.0, 'bought': 1.0, 'more': 1.0, 'is': 1.0, 'then': 1.0, 'real': 1.0, 'longer': 1.0, 'complaint': 1.0, 'version': 1.0, 'frontier': 1.0, 'torso': 1.0, 'smoosh': 1.0}
Word element => {'after': 1.0, 'clean': 1.0, 'granddaughter': 1.0, 'install': 1.0, 'she': 1.0, 'it': 1.0, 'brand': 1.0, 'old': 1.0, 'not': 1.0, 'just': 1.0, 'car': 2.0, 'we': 1.0, 'a': 1.0, 'specified': 1.0, 'particular': 1.0, 'researched': 1.0, 'our': 1.0, 'to': 3.0, 'seat': 2.0, 'least': 1.0, 'but': 1.0, 'bought': 1.0, 'family': 1.0, 'my': 1.0, 'found': 1.0, 'this': 3.0, 'he': 2.0, 'resides': 1.0, 'on': 1.0, 'instructions': 1.0, 'visiting': 1.0, 'son': 1.0, 'while': 1.0, 'from': 1.0, 'his': 2.0, 'year': 1.0, 'sweden': 1.0, 'britax': 1.0, 'are': 1.0, 'three': 1.0, 'who': 2.0, 'expensive': 1.0, 'for': 1.0, 'left': 1.0, 'easy': 3.0, 'model': 1.0, 'in': 4.0, 'determined': 1.0, 'the': 5.0, 'relatively': 1.0, 'usa': 2.0, 'apparently': 1.0, 'stricter': 1.0, 'seats': 1.0, 'needed': 1.0, 'swedish': 1.0, 'extensively': 1.0, 'and': 2.0, 'that': 2.0, 'belt': 1.0, 'was': 1.0, 'standards': 3.0, 'would': 1.0, 'meet': 1.0}
Word element => {'found': 1.0, 'and': 1.0, 'years': 1.0, 'over': 1.0, 'different': 1.0, 'tons': 1.0, 'have': 1.0, 'finally': 1.0, 'we': 1.0, 'car': 1.0, 'undo': 1.0, 'had': 1.0, 'to': 1.0, 'last': 1.0, 'easy': 1.0, 'so': 1.0, 'are': 1.0, 'buckles': 1.0, 'loves': 1.0, 'daughter': 1.0, 'warehouse': 1.0, 'my': 1.0, 'happy': 1.0, 'am': 1.0, 'got': 1.0, 'is': 2.0, 'amazon': 1.0, 'very': 1.0, 'i': 2.0, 'seats': 1.0, 'amazing': 1.0, 'of': 2.0, 'it': 2.0, 'with': 1.0, 'this': 3.0, '300': 1.0, 'for': 1.0, 'seat': 2.0, 'because': 1.0, 'a': 1.0, 'the': 3.0, 'damaged': 1.0, '189': 1.0, 'box': 1.0, '100': 1.0, 'also': 1.0, 'perfect': 1.0}
Word element => {'his': 1.0, 'loves': 1.0, 'is': 1.0, 'very': 1.0, 'son': 1.0, 'cup': 1.0, 'my': 1.0, 'when': 1.0, 'i': 2.0, 'that': 1.0, 'much': 1.0, 'holders': 1.0, 'but': 1.0, 'in': 2.0, 'comfortable': 1.0, 'for': 1.0, 'love': 1.0, 'a': 1.0, 'around': 1.0, 'haven': 1.0, 'far': 1.0, 'fits': 1.0, 'needed': 1.0, 'easy': 1.0, 'all': 1.0, 'have': 1.0, 'moved': 1.0, 'it': 5.0, 'this': 1.0, 'we': 2.0, 'so': 3.0, 'and': 2.0, 'jetta': 1.0, 's': 2.0, 'to': 2.0, 'install': 1.0, 'the': 1.0, 't': 1.0, 'great': 1.0, 'heavy': 1.0, 'not': 1.0, 'seat': 2.0, 'carrying': 1.0}
Word element => {'product': 1.0, 'another': 1.0, 'but': 1.0, 'deal': 1.0, 'a': 1.0, 'old': 1.0, 'to': 1.0, 'can': 1.0, 'from': 1.0, 'very': 1.0, 'big': 1.0, 'year': 1.0, 'in': 1.0, 'three': 1.0, 'my': 1.0, 'great': 1.0, 'heavy': 1.0, 't': 1.0, 'the': 1.0, 'install': 1.0, 'out': 1.0, 'easy': 1.0, 'booster': 1.0, 'super': 1.0, 'get': 1.0, 'and': 2.0, 'this': 1.0, 'it': 1.0, 'only': 1.0, 'britax': 1.0, 'of': 1.0, 'is': 1.0, 'really': 1.0, 'chair': 1.0, 'easily': 1.0, 'one': 1.0, 'complaint': 1.0, 'isn': 1.0}
Word element => {'car': 1.0, 'second': 1.0, 'himself': 1.0, 'get': 1.0, 'easy': 1.0, 'it': 3.0, 'install': 1.0, 'seemed': 1.0, 'one': 2.0, 'booster': 1.0, 'harness': 1.0, 'every': 1.0, 'ease': 1.0, 'looking': 1.0, 'after': 1.0, 'had': 1.0, 'in': 1.0, 'said': 1.0, 'other': 2.0, 'buckle': 1.0, 'many': 1.0, 'he': 1.0, 'like': 1.0, 'width': 1.0, 'kids': 1.0, 'this': 1.0, 'drive': 1.0, 'for': 3.0, 'love': 2.0, 'fit': 3.0, 'tall': 1.0, 'and': 4.0, 'across': 2.0, 'five': 1.0, 'boulevard': 1.0, 'have': 2.0, 'can': 2.0, 'work': 1.0, 'four': 1.0, 'pregnant': 1.0, 'seats': 3.0, 'also': 1.0, 'pilot': 1.0, 'two': 2.0, 'i': 6.0, 'point': 1.0, 'stride': 1.0, 'old': 1.0, 'of': 2.0, 'was': 2.0, 'advocates': 1.0, 'both': 1.0, 'my': 2.0, 'son': 1.0, 'cars': 1.0, 'going': 1.0, 'a': 6.0, 'we': 1.0, 'britax': 2.0, 'are': 2.0, 'eats': 1.0, 'while': 1.0, 'into': 1.0, 'that': 2.0, 'year': 1.0, 'with': 2.0, 'third': 1.0, 'child': 2.0, 'short': 1.0, 'wanted': 2.0, 'all': 1.0, 'seat': 5.0, 'our': 2.0, 'to': 4.0, 'w': 1.0, 'does': 1.0, 'find': 2.0, 'something': 1.0, 'new': 1.0, 'would': 3.0, 'they': 1.0, 'reviews': 1.0, 'searching': 1.0, 'between': 1.0, 'the': 7.0, 'so': 1.0, 'advocate': 1.0, 'started': 1.0, 'baby': 1.0, 'at': 1.0, 'three': 2.0, 'back': 2.0, 'key': 1.0}
Word element => {'often': 1.0, 'between': 1.0, 'move': 1.0, 'you': 1.0, 'want': 1.0, 'if': 1.0, 'cumbersome': 1.0, 'though': 1.0, 'good': 1.0, 'in': 1.0, 'stil': 1.0, 'up': 1.0, 'harder': 1.0, 'it': 2.0, 'about': 1.0, 'how': 1.0, 'cars': 1.0, 'still': 1.0, 'm': 1.0, 'side': 1.0, 'think': 1.0, 'on': 1.0, 'getting': 1.0, 'feel': 1.0, 'nice': 1.0, 'larger': 1.0, 'such': 1.0, 'had': 2.0, 'a': 7.0, 'improvements': 1.0, 'models': 1.0, 'older': 2.0, 'heavy': 1.0, 'first': 1.0, 'this': 2.0, 'its': 1.0, 'tightened': 1.0, 'do': 1.0, 'only': 1.0, 'really': 1.0, 'is': 2.0, 'holder': 1.0, 'previous': 1.0, 'latch': 3.0, 'cup': 1.0, 'of': 2.0, 'each': 1.0, 've': 1.0, 'chore': 1.0, 'system': 2.0, 'couple': 1.0, 'out': 1.0, 'unlike': 1.0, 'actually': 1.0, 'for': 2.0, 'get': 1.0, 'sure': 1.0, 'area': 1.0, 'model': 1.0, 'has': 1.0, 'time': 1.0, 'bit': 3.0, 'but': 1.0, 'minor': 1.0, 'not': 2.0, 'one': 3.0, 'huge': 1.0, 'to': 2.0, 'as': 1.0, 'seat': 2.0, 'the': 9.0, 'deal': 1.0, 'are': 1.0, 'strap': 1.0, 'i': 4.0, 'two': 1.0, 'short': 1.0, 'straps': 1.0}
Word element => {'row': 1.0, 'in': 1.0, 'fit': 1.0, 'not': 1.0, 'carseat': 1.0, '3': 1.0, 'for': 1.0, 'by': 1.0, 'safety': 1.0, 'of': 4.0, '5': 2.0, 'the': 2.0, 'a': 1.0, 'side': 2.0, 'people': 1.0, 'is': 1.0, 'product': 1.0, 'back': 1.0, 'will': 1.0, 'an': 1.0, 'suv': 1.0, 'have': 1.0, 'all': 1.0, 'sizes': 1.0, 'i': 1.0, 'star': 1.0, 'however': 1.0, 'that': 1.0, 'three': 1.0, 'and': 1.0, 'children': 2.0, 'this': 2.0, 'only': 1.0, 'seats': 2.0}
Word element => {'over': 1.0, 'moves': 1.0, 'highback': 1.0, 'better': 1.0, 'so': 1.0, 'locks': 1.0, 'yet': 1.0, 'him': 1.0, 'this': 3.0, 'buy': 1.0, 'old': 2.0, 'enough': 1.0, 'became': 1.0, 'suburban': 1.0, 'into': 1.0, 'gave': 1.0, 'booster': 1.0, 'daughter': 1.0, 'when': 1.0, 'but': 2.0, 'back': 1.0, 'doesn': 1.0, 'love': 1.0, 'for': 2.0, 'son': 2.0, 'one': 1.0, 'decided': 1.0, 'standard': 1.0, 'than': 2.0, 'because': 1.0, 'britax': 1.0, 'of': 1.0, '6': 1.0, 'convertible': 1.0, 'car': 2.0, 'all': 1.0, 'to': 2.0, 'seat': 5.0, 'our': 1.0, 'has': 1.0, 'place': 2.0, 'the': 7.0, 'we': 3.0, 'a': 1.0, 't': 1.0, 'on': 2.0, 'side': 1.0, 'fall': 1.0, 'is': 1.0, 'much': 1.0, 'only': 1.0, 'works': 1.0, 'perfectly': 1.0, 'years': 1.0, 'it': 3.0, 'she': 1.0, 'seatbelt': 1.0, 'in': 2.0, 'my': 3.0, 'anchors': 1.0, 'vehicle': 1.0, 'had': 1.0, 'correct': 1.0}
Word element => {'glad': 1.0, 'so': 1.0, 'bit': 1.0, 'way': 1.0, 'more': 1.0, 'is': 1.0, 'safe': 1.0, 'car': 5.0, 'keeps': 1.0, 'but': 1.0, 'bought': 2.0, 'be': 1.0, 'was': 1.0, 'its': 1.0, 'old': 1.0, 'i': 3.0, 'into': 1.0, 'stains': 1.0, 'going': 1.0, 'a': 3.0, 'the': 2.0, 'my': 2.0, 'this': 2.0, 'it': 3.0, 'his': 1.0, 'ready': 1.0, 'year': 1.0, 'move': 1.0, 'if': 1.0, '3': 1.0, 'am': 1.0, 'when': 1.0, 'love': 1.0, 'for': 1.0, 'youngest': 1.0, 'installed': 1.0, 'away': 1.0, 'and': 2.0, 'easy': 1.0, 'adjust': 1.0, 'thats': 1.0, 'ever': 1.0, 'easiest': 1.0, 'ive': 1.0, 'in': 1.0, 'super': 1.0, 'would': 1.0, 'nice': 1.0, 'were': 1.0, 'little': 1.0, 'son': 1.0, 'lighter': 1.0, 'seat': 4.0, 'to': 3.0, 'any': 1.0, 'material': 1.0, 'really': 1.0}
Word element => {'love': 1.0, 'model': 1.0, 'seats': 1.0, 'britax': 1.0, 'my': 1.0, 'so': 1.0, 'obviously': 1.0, 'were': 1.0, 'fault': 1.0, 'in': 1.0, 'driving': 1.0, 'and': 3.0, 'very': 1.0, 'but': 1.0, 'his': 1.0, 'expensive': 1.0, 'upgraded': 1.0, 'more': 1.0, 'car': 1.0, 'spent': 1.0, 'money': 1.0, 'ended': 1.0, 'it': 2.0, 'this': 2.0, 'rear': 1.0, 'is': 2.0, 'seat': 1.0, 'yes': 1.0, 'i': 3.0, 'to': 1.0, 'texting': 1.0, 'was': 3.0, 'driver': 1.0, 'recently': 1.0, 'kids': 1.0, 'by': 1.0, 'well': 1.0, 'a': 1.0, 'glad': 1.0, 'who': 1.0}
Word element => {'comfortable': 1.0, 'not': 1.0, 'but': 1.0, 'complains': 1.0, 'old': 1.0, 'we': 1.0, '3': 1.0, 'year': 1.0, 'daughter': 1.0, 'keeps': 1.0, 'of': 1.0, 'my': 1.0, 'carseat': 1.0, 'safe': 1.0, 'spent': 1.0, 'a': 1.0, 'money': 1.0, 'this': 1.0, 'it': 2.0, 'on': 1.0, 'is': 1.0, 'and': 1.0, 'lot': 1.0, 'she': 1.0, 'that': 1.0}
Word element => {'adjust': 1.0, 'can': 1.0, 'sometime': 1.0, 'another': 1.0, 'and': 1.0, 'crash': 1.0, 'in': 1.0, 'suv': 1.0, 'a': 1.0, 'before': 1.0, 'hard': 1.0, 'this': 1.0, 'with': 1.0, 'other': 1.0, 'we': 1.0, 'rollover': 1.0, 'seat': 1.0, 'for': 1.0, 'one': 2.0, 'i': 1.0, 'kids': 1.0, 'car': 3.0, 'straps': 1.0, 'held': 1.0, 'of': 1.0, 'up': 1.0, 'replace': 1.0, 'these': 1.0, 'the': 4.0, 'great': 1.0, 'be': 1.0, 'bought': 1.0, 'had': 2.0, 'to': 2.0}
Word element => {'benefit': 1.0, 'shopper': 1.0, 'future': 1.0, 'rating': 1.0, 'one': 1.0, 'posting': 1.0, 'be': 1.0, 'love': 1.0, 'came': 1.0, 'less': 1.0, 'wish': 1.0, 'aggravation': 1.0, 'have': 2.0, 'hopes': 1.0, 'experience': 2.0, 'say': 1.0, 'weeks': 1.0, 'for': 1.0, 've': 1.0, 'those': 1.0, 'were': 1.0, 'opened': 1.0, 'immediately': 1.0, 'tell': 1.0, 'money': 1.0, 'extra': 1.0, 'prior': 1.0, 'i': 20.0, 'somehow': 1.0, 'a': 9.0, 'we': 4.0, 's': 1.0, 'will': 1.0, 'could': 2.0, 'daughter': 4.0, '4': 1.0, 'booster': 3.0, 'as': 1.0, 'move': 1.0, 'seats': 4.0, 'com': 2.0, 'package': 1.0, 'where': 1.0, 'teeth': 1.0, 'year': 1.0, 'twist': 1.0, 'from': 3.0, 'fix': 1.0, 'larger': 1.0, 'purchased': 1.0, 'twisted': 1.0, 'had': 3.0, 'huge': 1.0, 'than': 1.0, 'matter': 1.0, '90': 4.0, 'can': 2.0, 'deeply': 1.0, 'so': 1.0, 'grit': 1.0, 'recently': 1.0, 'know': 1.0, 'using': 2.0, 'two': 2.0, 'frustrated': 1.0, 'because': 1.0, 'that': 8.0, 'buckle': 1.0, 'is': 3.0, 'into': 1.0, 'frontier': 4.0, 'never': 1.0, 'are': 1.0, 'britax': 2.0, 'old': 1.0, 'email': 1.0, 'these': 1.0, 'was': 5.0, 'start': 1.0, 'wanted': 1.0, 'you': 1.0, 'am': 1.0, 'what': 1.0, 'when': 2.0, 'expensive': 1.0, 'inferior': 2.0, 'sent': 1.0, 'of': 2.0, 'the': 21.0, 'quality': 2.0, 'customer': 1.0, 'hindsight': 1.0, 'service': 1.0, 'every': 3.0, 'it': 5.0, 'this': 3.0, 'seat': 4.0, 'in': 12.0, 'our': 1.0, 'disappointed': 1.0, 'how': 1.0, 'extremely': 1.0, 'car': 5.0, 'me': 1.0, 'my': 7.0, 'been': 1.0, 'amazon': 2.0, 'marathon': 4.0, 'and': 8.0, 'graco': 2.0, 'husband': 1.0, 'truck': 1.0, 'put': 3.0, 'on': 2.0, 'by': 1.0, 'gone': 1.0, 'hand': 1.0, 'straps': 5.0, 'seemed': 1.0, 'spend': 1.0, 'let': 1.0, 'no': 1.0, 'they': 1.0, 'to': 10.0, 'became': 1.0, 'loved': 1.0, 'now': 1.0, 'figure': 1.0, 'out': 2.0, 'started': 1.0, 'before': 1.0, 'her': 3.0, 'other': 1.0, 'missing': 1.0, 'breeze': 1.0, 'time': 5.0, 'new': 1.0, 'get': 3.0, 'problem': 3.0, 'with': 5.0, 'twisting': 2.0, 'couple': 1.0, 'insisted': 1.0}
Word element => {'her': 1.0, 'keep': 1.0, 'us': 1.0, 'from': 1.0, 'so': 1.0, 'was': 1.0, 'law': 1.0, 'third': 1.0, 'shopping': 1.0, 'attention': 1.0, 'paying': 1.0, 'truck': 1.0, 'back': 1.0, 'came': 1.0, 'mother': 1.0, 'then': 1.0, 'one': 2.0, 'bought': 3.0, 'worth': 1.0, 'but': 1.0, 'pricey': 1.0, 'little': 1.0, 'old': 1.0, 'well': 1.0, 'just': 1.0, 'lower': 1.0, 'car': 2.0, 'cart': 1.0, 'happy': 1.0, 'another': 1.0, 'my': 5.0, 'son': 1.0, 'best': 1.0, 'to': 3.0, 'seat': 4.0, 'as': 2.0, 'with': 6.0, 'she': 1.0, 'it': 2.0, 'more': 1.0, 'is': 2.0, 'extremely': 1.0, 'have': 1.0, 'two': 1.0, 'i': 3.0, '4': 1.0, 'this': 4.0, 'found': 1.0, 'way': 1.0, 'straps': 1.0, 'find': 1.0, 'are': 1.0, 'the': 6.0, 'adjustment': 1.0, 'booster': 1.0, 'and': 2.0, 'impressed': 2.0, 'buy': 1.0, 'ease': 1.0, 'easy': 1.0, 'husband': 2.0, 's': 1.0, 'a': 2.0, 'we': 4.0, 'were': 2.0, 'highly': 1.0, 'of': 2.0, 'yr': 1.0, 'installing': 1.0, 'not': 1.0, 'wrong': 1.0, 'also': 1.0, 'in': 3.0, 'for': 1.0, 'actually': 2.0, 'love': 1.0, 'raise': 1.0, 'harness': 1.0, 'them': 1.0, 'click': 1.0, 'nothing': 1.0}
Word element => {'solid': 1.0, 'get': 1.0, 'minute': 1.0, 'a': 2.0, 'less': 1.0, 'i': 1.0, 'it': 1.0, 'love': 1.0, 'seat': 1.0, 'rock': 1.0, 'is': 1.0, 'this': 1.0, 'super': 1.0, 'than': 1.0, 'easy': 1.0, 'to': 2.0, 'install': 2.0, 'takes': 1.0}
Word element => {'system': 1.0, 'installed': 1.0, 'have': 1.0, 'latch': 1.0, 'damp': 1.0, 'wipe': 1.0, 'super': 1.0, 'material': 1.0, 'just': 1.0, 'loves': 1.0, 'the': 4.0, 'roundabout': 1.0, '2': 1.0, 'can': 1.0, 'britax': 1.0, 'of': 4.0, 'was': 2.0, 'seat': 2.0, 'to': 3.0, 'my': 1.0, 'running': 1.0, 'and': 5.0, 'do': 1.0, 'ease': 1.0, 'me': 1.0, 'he': 4.0, 'this': 1.0, 'with': 3.0, 'over': 1.0, 'years': 1.0, 'love': 1.0, 'for': 1.0, 'in': 2.0, 'secure': 1.0, 'seems': 1.0, 'year': 1.0, 'very': 2.0, 'towel': 1.0, 'easy': 1.0, 'kind': 1.0, 's': 1.0, 'a': 3.0, 'we': 2.0, 'type': 1.0, 'old': 1.0, 'so': 1.0, 'until': 1.0, 'great': 1.0, 'comfortable': 1.0, 'seemed': 1.0, 'like': 2.0, 'out': 2.0, 'room': 1.0, 'three': 1.0, 'climb': 1.0, 'paper': 1.0, 'frontier': 1.0, 'raincoat': 1.0, 'it': 3.0, 'looks': 1.0, 'is': 1.0, 'be': 1.0, 'fabric': 1.0}
Word element => {'the': 1.0, 'into': 1.0, 'seat': 1.0, 'excellent': 1.0, 'year': 1.0, 'it': 2.0, 'protection': 1.0, 'trouble': 1.0, 'have': 1.0, 'we': 1.0, 'our': 1.0, 'installation': 1.0, 'old': 1.0, 'granddaughter': 1.0, 'who': 1.0, '6': 1.0, 'says': 1.0, 'herself': 1.0, 'is': 1.0, 'for': 1.0, 'comfortable': 1.0, 'easy': 1.0, 'she': 1.0, 'has': 1.0, 'no': 1.0, 'and': 1.0, 'buckling': 1.0}
Word element => {'seat': 1.0, 'solid': 1.0, 'easy': 1.0, 'can': 1.0, 'love': 2.0, 'maneuver': 1.0, 'well': 1.0, 'button': 1.0, 'also': 1.0, 'my': 1.0, 'the': 2.0, 'and': 2.0, 'designed': 1.0, 'feels': 1.0, 'is': 1.0, 'them': 1.0, 'child': 1.0, 'i': 1.0, 'britax': 1.0, 'straps': 1.0, 'print': 1.0, 'it': 1.0, 'this': 1.0, 'our': 1.0, '3rd': 1.0}
Word element => {}
Word element => {'62': 1.0, '45': 1.0, '120': 1.0, '40': 1.0, 'booster': 1.0, 'age': 1.0, 'years': 1.0, 'inches': 2.0, '58': 1.0, '30': 1.0, 'height': 2.0, 'lbs': 2.0, '90': 1.0, 'between': 4.0, 'children': 2.0, 'be': 3.0, 'trying': 2.0, 'for': 5.0, 'grandparents': 1.0, 'your': 2.0, 'on': 1.0, 'comfort': 1.0, 'around': 2.0, 'is': 5.0, 'suggest': 1.0, 'had': 1.0, 'get': 1.0, 'home': 1.0, 'a': 6.0, 's': 1.0, 'there': 1.0, 'will': 1.0, 'house': 1.0, 'best': 1.0, 'install': 3.0, 'climbing': 1.0, 'wrangle': 1.0, 'great': 1.0, '25': 1.0, 'sitting': 1.0, 'over': 1.0, 'work': 1.0, 'can': 1.0, 'i': 1.0, 'fancy': 1.0, 'into': 1.0, 'super': 1.0, 'you': 4.0, 'with': 7.0, 'it': 10.0, 'weighing': 1.0, 'this': 3.0, 'before': 2.0, 'room': 1.0, 'wise': 1.0, 'kept': 1.0, 'mess': 1.0, 'outings': 1.0, 'easy': 3.0, 'bit': 1.0, 'in': 4.0, 'seat': 6.0, 'to': 5.0, 'as': 2.0, 'tether': 1.0, 'style': 1.0, 'squirming': 1.0, 'of': 2.0, 'the': 9.0, 'dining': 1.0, 'and': 6.0, 'baby': 1.0, 'two': 3.0, 'frustrated': 1.0, 'if': 2.0, 'figure': 1.0, 'out': 1.0, 'won': 1.0, 'vehicle': 1.0, 'anchors': 1.0, 'while': 2.0, 'from': 1.0, 'going': 1.0, 'kid': 1.0, 'late': 1.0, 'we': 2.0, 'moving': 1.0, 'clicktight': 1.0, 'are': 1.0, 'plus': 1.0, 'actually': 1.0, 'system': 1.0, 'simple': 1.0, 'swap': 1.0, 'works': 1.0, 'only': 1.0, 'harness': 1.0, 'also': 1.0, 'us': 1.0, 'have': 1.0, 'has': 1.0, 'cars': 1.0, 'lot': 1.0, 'one': 1.0, 'since': 1.0, 'anchor': 1.0, 'car': 5.0, 'makes': 1.0, 't': 1.0, 'bearable': 1.0, 'bottom': 1.0, 'installation': 2.0, 'top': 1.0, 'mode': 2.0, 'use': 1.0}
Word element => {'independence': 1.0, 'towards': 1.0, 'your': 1.0, 'unless': 1.0, '6': 1.0, 'recommend': 1.0, 'would': 1.0, 'by': 1.0, 'title': 1.0, 'getting': 1.0, 'want': 1.0, 'dont': 1.0, 'no': 1.0, 'havent': 1.0, 'even': 1.0, 'break': 1.0, 'going': 1.0, 'am': 1.0, 'scares': 1.0, 'range': 1.0, 'necessary': 1.0, 'brute': 1.0, 'other': 2.0, 'so': 1.0, 'can': 2.0, 'she': 3.0, 'it': 5.0, 'does': 2.0, 'that': 3.0, 'because': 4.0, 'having': 1.0, 'works': 2.0, 'harness': 2.0, 'carseat': 1.0, 'great': 1.0, 'spite': 1.0, 'fastening': 1.0, 'out': 5.0, 'lean': 1.0, 'space': 1.0, 'fasten': 1.0, 'who': 1.0, 'regular': 1.0, 'child': 2.0, 'year': 4.0, 'working': 1.0, 'are': 1.0, 'britax': 1.0, 'booster': 1.0, '4': 2.0, 'attempted': 1.0, 'two': 1.0, 'for': 3.0, 'yet': 2.0, 'far': 1.0, 'love': 1.0, 'fit': 1.0, 'point': 2.0, 'old': 3.0, 'herself': 4.0, 'back': 1.0, 'really': 1.0, 'with': 2.0, 'this': 4.0, 'not': 6.0, 'in': 5.0, 'seat': 2.0, 'to': 5.0, 'difficulty': 1.0, 'purchased': 1.0, 'had': 1.0, 'car': 4.0, 'figured': 1.0, 'originally': 1.0, 'and': 11.0, 'across': 1.0, 'too': 1.0, 'wanted': 1.0, 'problem': 1.0, 'though': 1.0, 'anywhere': 1.0, '15': 1.0, 'a': 2.0, '5': 2.0, 'learning': 1.0, 'me': 1.0, 'my': 5.0, 'often': 1.0, 'himself': 1.0, 'cannot': 1.0, 'which': 3.0, 'however': 1.0, 'easy': 1.0, 'the': 8.0, 'of': 2.0, 'get': 2.0, 'months': 1.0, 'is': 3.0, 'frustrating': 1.0, 'have': 2.0, 'force': 1.0, '3': 2.0, 'do': 3.0, 'much': 1.0, 'general': 1.0, 'put': 1.0, 'sedan': 1.0, '7': 1.0, 'up': 1.0, 'takes': 1.0, 'be': 1.0, 'you': 2.0, 'able': 1.0, 'means': 1.0, 'between': 1.0, 'take': 2.0, 'switch': 1.0, 'graco': 1.0, 'hence': 1.0, 'i': 9.0, 'well': 1.0, 'always': 2.0, 'has': 2.0, 'how': 1.0, 'fun': 1.0, 'heavy': 1.0, 'installation': 1.0, 'click': 3.0, 'seats': 2.0, '45': 1.0, 'minutes': 1.0, 'highbackbooster': 1.0, 'if': 1.0}
Word element => {'car': 1.0, 'seat': 1.0, 'excellent': 1.0, 'just': 1.0, 'skipped': 1.0, 'd': 1.0, 'wish': 1.0, 'i': 1.0, 'fit': 1.0, 'better': 1.0, 'much': 1.0, 'crotch': 1.0, 'bought': 1.0, 'short': 1.0, '90': 1.0, 'and': 4.0, 'in': 2.0, 'nautilus': 2.0, 'the': 4.0, 'is': 2.0, 'year': 1.0, 'son': 1.0, 'our': 1.0, 'height': 1.0, 'for': 2.0, 'using': 1.0, 'a': 2.0, 'percentile': 1.0, 'who': 1.0, 'purchased': 2.0, 'weight': 1.0, 'we': 2.0, 'ago': 1.0, 'graco': 1.0, 'too': 1.0, 'this': 2.0, 'he': 1.0, 'buying': 1.0, 'was': 2.0}
Word element => {'bus': 1.0, 'neenee': 1.0, 'making': 1.0, 'size': 1.0, 'larger': 1.0, 'up': 1.0, 'on': 1.0, 'right': 1.0, 'ones': 1.0, 'older': 1.0, 'seats': 1.0, '90': 1.0, 'latest': 1.0, 'only': 1.0, 'this': 1.0, 'it': 1.0, 'is': 2.0, 'britax': 3.0, 'of': 2.0, 'worth': 1.0, 'grandchild': 1.0, 'types': 1.0, 'the': 6.0, 'll': 1.0, 'car': 2.0, 'money': 1.0, 'safer': 1.0, 'ages': 1.0, 'love': 1.0, 'for': 3.0, 'we': 1.0, 's': 2.0, 'easy': 1.0, 'moving': 1.0, 'frontier': 1.0, 'booster': 1.0, 'grandchildren': 1.0, 'will': 1.0, 'ever': 1.0, 'by': 1.0, 'thanks': 1.0, 'again': 1.0, 'have': 1.0, 'seat': 2.0, 'to': 2.0, 'all': 1.0, 'that': 1.0, 'babies': 1.0, 'i': 3.0, '4': 1.0, 'different': 2.0, 'my': 3.0, 'purchase': 1.0, 'keep': 2.0, 'because': 1.0, 'having': 1.0, 'new': 1.0, 'install': 1.0, 'comfortable': 1.0, 'grand': 1.0, 'and': 1.0}
Word element => {'happier': 1.0, 'everyone': 1.0, 'sure': 1.0, 'limits': 1.0, 'was': 1.0, 'heavy': 1.0, 'mention': 1.0, 'even': 1.0, 'would': 1.0, 'only': 1.0, 'car': 1.0, 'naps': 1.0, 'often': 1.0, '5': 1.0, '4': 1.0, 'who': 1.0, 'daughter': 1.0, 'more': 1.0, 'makes': 1.0, 'vehicles': 1.0, 'various': 1.0, 'paths': 1.0, 'alternate': 1.0, 'clips': 1.0, 'can': 1.0, 'but': 4.0, 'pulling': 1.0, 'pushing': 1.0, 'comfy': 2.0, 'tugging': 1.0, 'hard': 1.0, 'love': 3.0, 'once': 1.0, 'install': 2.0, 'locking': 1.0, 'forgiving': 1.0, 'realized': 1.0, 'because': 1.0, 'that': 1.0, 'problems': 1.0, 'go': 1.0, 'we': 5.0, 'belt': 1.0, 't': 1.0, 'and': 4.0, 'similar': 1.0, 'don': 1.0, 'rethread': 1.0, 'is': 6.0, 'expecting': 1.0, 'still': 1.0, 'course': 1.0, 'thing': 1.0, 'adjustment': 1.0, 'many': 1.0, 'really': 1.0, 'not': 3.0, 'wrong': 1.0, 'to': 6.0, 'or': 1.0, 'latch': 1.0, 'think': 1.0, 'hugs': 1.0, 'on': 1.0, 'little': 1.0, 'nice': 1.0, 'two': 1.0, 'attempted': 1.0, 'have': 4.0, 'i': 5.0, 'roundabout': 1.0, 'you': 1.0, 'complaints': 1.0, 'this': 4.0, 'weight': 1.0, 'carseats': 1.0, 'kids': 1.0, 'with': 1.0, 'owned': 1.0, 'now': 1.0, 'boulevards': 1.0, 'harness': 2.0, 'of': 2.0, 'the': 10.0, 'currently': 1.0, 'see': 1.0, 'no': 7.0, 'which': 1.0, 'like': 1.0, 'honestly': 1.0, 'using': 1.0, 'reason': 1.0, 'higher': 1.0, 'bother': 1.0, 'other': 2.0, 'a': 3.0, 'added': 1.0, 'britax': 2.0, 'are': 1.0, 'seats': 2.0, 'accidentally': 1.0, 'twist': 1.0, 'seat': 3.0, 'in': 3.0, 'absolutely': 1.0, 'out': 1.0, 'die': 1.0, 'protection': 1.0, 'for': 5.0, 'fabric': 1.0, 'different': 1.0, 'looks': 1.0, 'recline': 1.0, 'it': 4.0, 'could': 1.0, 'will': 2.0, 'be': 2.0, 'front': 1.0, 'easy': 2.0, 'bit': 1.0, 'than': 1.0, 'having': 1.0, 'our': 3.0, 'how': 1.0, 'adjust': 1.0}
Word element => {'lemon': 1.0, 'just': 1.0, 'tried': 1.0, 'would': 1.0, 'amazon': 1.0, 'i': 2.0, 'if': 1.0, 'from': 1.0, 'understand': 1.0, 'don': 1.0, 'easy': 1.0, 'construction': 1.0, 'access': 1.0, 'very': 1.0, 'great': 1.0, 'makes': 1.0, 'unfortunately': 1.0, 'adjustment': 1.0, 'liked': 1.0, 'for': 2.0, 'love': 1.0, 'another': 1.0, 'my': 1.0, 'tight': 1.0, 'maybe': 1.0, 'because': 1.0, 'youngest': 1.0, 'the': 7.0, 'reach': 1.0, 'color': 1.0, 'one': 3.0, 'bought': 3.0, 'release': 2.0, 'this': 2.0, 'it': 6.0, 'bottom': 1.0, 'got': 1.0, '2nd': 1.0, 'harder': 1.0, 'sense': 1.0, 'lever': 2.0, 'hand': 1.0, '85': 2.0, 'frontier': 1.0, 'has': 1.0, 'he': 1.0, 'adjust': 1.0, 'your': 1.0, 'making': 1.0, 'oldest': 1.0, 't': 2.0, 's': 1.0, 'we': 4.0, 'a': 2.0, 'returned': 1.0, 'return': 1.0, 'straps': 1.0, 'britax': 1.0, 'are': 1.0, 'and': 5.0, 'too': 1.0, 'least': 1.0, 'our': 3.0, 'to': 5.0, 'at': 2.0, 'is': 3.0, 'ridiculously': 1.0, 'far': 1.0, 'hadn': 1.0, 'back': 1.0, 'you': 1.0, 'have': 2.0, 'fabric': 1.0, 'no': 1.0, 'whole': 1.0, 'difficult': 1.0, 'son': 2.0, 'under': 1.0}
Word element => {'frustrating': 1.0, 'help': 1.0, 'guy': 1.0, 'needed': 1.0, 'by': 1.0, 'solid': 1.0, 'a': 2.0, 'was': 2.0, 'it': 1.0, 'part': 1.0, 'look': 1.0, 'important': 1.0, 'compartments': 1.0, 'and': 2.0, 'me': 1.0, 'is': 2.0, 'thing': 1.0, 'ones': 1.0, 'myself': 1.0, 'the': 7.0, 'these': 1.0, 'cool': 1.0, 'should': 1.0, 'often': 1.0, 'tight': 2.0, 'love': 2.0, 'for': 1.0, 'easier': 1.0, 'were': 1.0, 'i': 2.0, 'tighten': 1.0, 'click': 1.0, 'they': 5.0, 'that': 1.0, 'next': 1.0, 'previous': 2.0, 'provide': 1.0, 'them': 1.0, 'relatively': 1.0, 'certainly': 1.0, 'get': 1.0, 'easy': 3.0, 'than': 1.0, 'to': 4.0, 'nice': 1.0, 'comfortable': 1.0, 'install': 2.0, 'cup': 1.0, 'kids': 2.0, 'carseats': 2.0, 'holders': 1.0, 'other': 1.0, 'tell': 1.0, 'cupholders': 1.0, 'toys': 1.0, 'both': 1.0, 'little': 1.0, 'very': 2.0, 'are': 2.0, 'britax': 1.0, 'so': 1.0, 'good': 1.0, 'protection': 1.0, 'which': 2.0, 'most': 1.0}
Word element => {'well': 1.0, 'are': 1.0, 'cup': 1.0, 'in': 1.0, 'built': 1.0, 'very': 1.0, 'enjoys': 1.0, 'relatively': 1.0, 'still': 1.0, 'however': 1.0, 'reclined': 1.0, 'moving': 1.0, 'highlights': 1.0, 'what': 1.0, 'with': 3.0, 'holders': 1.0, 'this': 3.0, 'it': 3.0, 'torn': 1.0, 'really': 2.0, 'is': 3.0, 'i': 4.0, 'old': 1.0, 'was': 3.0, 'upgraded': 1.0, 'the': 5.0, 'comfortable': 1.0, 'padded': 1.0, 'great': 2.0, 'booster': 1.0, 'purchase': 1.0, 'my': 1.0, 'and': 3.0, 'on': 1.0, '3': 1.0, 'from': 2.0, 'his': 1.0, 'year': 1.0, 'decided': 1.0, 'recently': 1.0, 'much': 1.0, 'continue': 1.0, 'marathon': 1.0, 'get': 1.0, 'sure': 1.0, 'new': 1.0, 'choices': 1.0, 'love': 1.0, 'for': 1.0, 'price': 1.0, 'like': 2.0, 'wasn': 1.0, 'versatility': 1.0, 'wonderful': 1.0, '2': 1.0, 'squishy': 1.0, 'can': 1.0, 'as': 1.0, 'all': 1.0, 'to': 5.0, 'seat': 6.0, 'grow': 1.0, 'him': 1.0, 'he': 2.0, 'how': 1.0, 'go': 1.0, 't': 1.0, 'a': 3.0, 'we': 1.0, 'going': 1.0}
Word element => {'daughter': 1.0, 'my': 1.0, 'am': 1.0, 'spent': 1.0, 'and': 2.0, 'very': 2.0, 'glad': 1.0, 'seat': 1.0, 'so': 1.0, 'everything': 1.0, 'this': 1.0, 'it': 2.0, 'money': 1.0, 'about': 1.0, 'i': 3.0, 'a': 1.0, 'little': 1.0, 'extra': 1.0, 'on': 1.0, 'is': 1.0, 'easy': 1.0, 'to': 1.0, 'install': 1.0, 'for': 1.0, 'love': 1.0, 'comfortable': 1.0}
Word element => {'4th': 1.0, 'my': 1.0, 'carseats': 1.0, 'britax': 2.0, 'have': 1.0, 'about': 1.0, 'any': 1.0, 'don': 1.0, 'is': 1.0, 'really': 1.0, 'makes': 2.0, 'installation': 1.0, 'nice': 2.0, 'clicktight': 1.0, 'great': 1.0, 't': 1.0, 'the': 2.0, 'a': 1.0, 'new': 1.0, 'very': 2.0, 'and': 1.0, 'i': 2.0, 'for': 1.0, 'love': 1.0, 'tight': 1.0, 'install': 1.0, 'this': 2.0, 'it': 2.0, 'moved': 1.0, 'seat': 2.0, 'barely': 1.0, 'be': 1.0, 'once': 1.0, 'you': 1.0, 'complaints': 1.0, 'can': 1.0, 'click': 1.0}
Word element => {'car': 1.0, 'best': 1.0, 'how': 1.0, 'were': 1.0, 'for': 1.0, 'who': 1.0, 'or': 1.0, 'airport': 1.0, 'be': 1.0, 'trying': 1.0, 'an': 1.0, 'consider': 1.0, 'large': 1.0, 'heavy': 1.0, 'is': 2.0, 'plenty': 1.0, 'gave': 1.0, 'securely': 1.0, 'see': 1.0, 'they': 2.0, 'so': 1.0, 'harness': 1.0, 'granddaughter': 2.0, 'was': 1.0, 'wanted': 1.0, 'year': 1.0, 'very': 3.0, 'decided': 1.0, 'would': 1.0, 'position': 1.0, 'state': 1.0, 'out': 1.0, 'carry': 1.0, 'whenever': 2.0, 'can': 1.0, 'four': 1.0, 'use': 2.0, 'my': 1.0, 'purchase': 1.0, 'loved': 1.0, 'room': 1.0, 'enjoyed': 1.0, 'of': 5.0, 'photo': 1.0, 'as': 2.0, 'all': 1.0, 'to': 6.0, 'our': 2.0, 'seat': 4.0, 'trip': 1.0, 'visits': 2.0, 'feel': 1.0, 'comfortable': 1.0, 'parents': 1.0, 'with': 3.0, 'firemen': 1.0, 'i': 4.0, 'old': 1.0, 'buy': 1.0, 'the': 8.0, 'used': 1.0, 'pleased': 1.0, 'it': 8.0, 'she': 7.0, 'am': 1.0, 'when': 1.0, 'us': 1.0, 'went': 1.0, 'impressed': 1.0, 'on': 2.0, 'we': 1.0, 'could': 1.0, 'a': 3.0, 'plane': 1.0, 'in': 2.0, 'itself': 1.0, 'said': 2.0, 'and': 4.0, 'not': 1.0, 'me': 2.0, 'installed': 2.0, 'having': 1.0, 'drink': 1.0, 'this': 1.0, 'holders': 1.0, 'safe': 1.0, 'take': 1.0, 'quality': 1.0, 'send': 1.0, 'her': 2.0}
Word element => {'love': 1.0, 'grandkids': 1.0, 'riding': 1.0, 'my': 1.0, 'is': 1.0, 'cool': 1.0, 'system': 1.0, 'click': 1.0, 'easy': 1.0, 'removal': 1.0, 'several': 1.0, 'are': 1.0, 'reviews': 1.0, 'a': 2.0, 'that': 1.0, 'the': 6.0, 'after': 1.0, 'installation': 2.0, 'agree': 1.0, 'gramma': 1.0, 'of': 3.0, 'super': 1.0, 'some': 1.0, 'seat': 1.0, 'with': 2.0, 'i': 1.0, 'bit': 1.0, 'times': 1.0, 'challenge': 1.0, 'having': 1.0, 'in': 2.0, 'beginning': 1.0, 'and': 3.0, 'now': 1.0, 'was': 1.0, 'to': 1.0, 'pretty': 1.0, 'move': 1.0, 'out': 1.0, 'vehicle': 1.0}
Word element => {'uneven': 1.0, 'that': 1.0, 'talking': 1.0, 'am': 1.0, 'sell': 1.0, 'york': 1.0, 'here': 1.0, 'should': 1.0, 'new': 1.0, 'withstand': 1.0, 'can': 1.0, 'stroller': 1.0, 'sidewalk': 2.0, 'for': 1.0, 'when': 1.0, 'i': 2.0, 'britax': 1.0, 'of': 1.0, 'sidewalks': 1.0, 'not': 2.0, 'hitting': 1.0, '125': 1.0, 'about': 1.0, 'broke': 1.0, '00': 1.0, 'a': 3.0, 'wheel': 1.0, 'front': 1.0, 'was': 1.0, 'to': 1.0, 'those': 1.0, 'complained': 1.0, 'they': 2.0, 'pay': 1.0, 'them': 1.0, 'made': 1.0, 'from': 1.0, 'replacement': 1.0, 'me': 1.0, 'if': 1.0}
Word element => {'anywhere': 1.0, 'than': 1.0, 'family': 1.0, '3': 1.0, 'friends': 1.0, 'make': 1.0, 'by': 1.0, 'cheaper': 1.0, 'correct': 1.0, 'all': 1.0, 'wrong': 1.0, 'fix': 1.0, 'thigh': 1.0, 'upper': 1.0, 'belly': 1.0, 'has': 1.0, 'recommendation': 1.0, 'them': 2.0, 'cars': 1.0, 'some': 1.0, 'on': 2.0, 'only': 2.0, 'happen': 2.0, 'likely': 1.0, 'not': 2.0, 'said': 1.0, 'just': 1.0, 'seats': 2.0, 'with': 1.0, 'until': 1.0, 'will': 5.0, 'weight': 1.0, 'height': 1.0, 'instead': 1.0, 'hit': 2.0, 'as': 4.0, 'daughter': 1.0, 'inquire': 1.0, 'send': 1.0, 'appropriate': 1.0, 'if': 3.0, 'about': 2.0, 'like': 2.0, 'fighter': 1.0, 'have': 1.0, 'done': 1.0, '39': 1.0, 'her': 1.0, '4': 1.0, 'pounds': 1.0, 'ratings': 2.0, 'i': 15.0, 'amazon': 1.0, 'marathon': 1.0, 'and': 9.0, 'who': 1.0, 'but': 2.0, '2': 2.0, 'loud': 1.0, '5': 2.0, 'a': 8.0, 'belt': 1.0, 't': 2.0, 'call': 1.0, 'needed': 1.0, 'which': 1.0, 'made': 1.0, 'issue': 1.0, 'instillation': 2.0, '34': 1.0, 'best': 1.0, 'of': 5.0, 'the': 20.0, 'requirements': 1.0, 's': 2.0, 'phenomenal': 1.0, 'makes': 1.0, '001cm': 1.0, 'my': 7.0, 'tight': 1.0, 'she': 2.0, 'many': 1.0, 'safe': 2.0, 'is': 8.0, 'car': 6.0, 'safety': 3.0, 'from': 1.0, 'purchases': 1.0, 'his': 1.0, 'far': 1.0, 'models': 1.0, 'he': 1.0, 'love': 1.0, 'for': 6.0, 'to': 4.0, 'laughed': 1.0, 'called': 1.0, 'bought': 2.0, '36': 1.0, 'weighs': 1.0, 'jet': 1.0, 'old': 3.0, 'this': 2.0, 'month': 1.0, 'put': 3.0, 'do': 1.0, 'does': 2.0, 'ease': 1.0, 'couldn': 1.0, 've': 2.0, 'stand': 1.0, 'seat': 5.0, 'in': 4.0, 'bucket': 1.0, 'move': 1.0, 'feel': 1.0, 'option': 1.0, 'great': 3.0, 'last': 1.0, 'am': 1.0, 'when': 3.0, 'unless': 1.0, 'strapping': 1.0, 'actually': 1.0, 'system': 2.0, 'region': 1.0, 'toddler': 1.0, 'year': 3.0, 'child': 2.0, 'into': 1.0, 'because': 1.0, 'that': 1.0, 'ask': 1.0, 'so': 2.0, 'doesn': 1.0, 'was': 5.0, 'honestly': 1.0, 'tugged': 1.0, 'installed': 1.0, 'click': 1.0, 'easy': 1.0, 'out': 2.0, 'also': 1.0, 'beige': 1.0, 'stained': 1.0, 'it': 11.0, 'already': 2.0, 'plus': 1.0, 'britax': 1.0, 'are': 1.0, 'black': 1.0, 'there': 2.0, 'whole': 1.0, 'they': 2.0, 'sturdy': 1.0, 'iihs': 3.0, 'one': 1.0, 'rating': 1.0, 'tall': 1.0, 'worried': 1.0}
Word element => {'recommend': 1.0, 'highly': 1.0, 'would': 1.0, 'i': 1.0, 'while': 1.0, 'knowing': 1.0, 'of': 1.0, 'peace': 1.0, 'me': 1.0, 'and': 2.0, 'safe': 1.0, 'solid': 1.0, 'built': 1.0, 'in': 2.0, 'heavy': 1.0, 'the': 3.0, 'mind': 1.0, 'are': 1.0, 'made': 1.0, 'gives': 1.0, 'son': 1.0, 'is': 3.0, 'for': 1.0, 'comfortable': 1.0, 'so': 3.0, 'seat': 2.0, 're': 1.0, 'my': 1.0, 'cup': 1.0, 'car': 3.0, 'loves': 1.0, 'secure': 1.0, 'rests': 1.0, 'holders': 1.0, 'we': 1.0, 'arm': 1.0, 'he': 2.0, 'this': 2.0, 'it': 2.0, 'convenient': 1.0, 'well': 1.0}
Word element => {'times': 1.0, 'nerve': 1.0, 'little': 1.0, 'across': 1.0, '5': 1.0, 'urban': 1.0, 'living': 1.0, 'right': 1.0, 'navigate': 1.0, 'back': 1.0, 'v': 1.0, 'cr': 1.0, 'honda': 1.0, 'work': 1.0, 'drive': 1.0, 'mentioning': 1.0, 'worth': 1.0, 'issue': 2.0, 'more': 1.0, 'spot': 1.0, 'make': 1.0, 'area': 1.0, 'significant': 1.0, 'criticism': 1.0, 'minor': 1.0, 'purchase': 1.0, 'our': 1.0, 'will': 1.0, 'rated': 1.0, 'toys': 1.0, 'around': 1.0, 'his': 1.0, 'cupholders': 1.0, 'possible': 1.0, 'safe': 1.0, 'son': 1.0, 'think': 1.0, 'better': 1.0, 'wracking': 1.0, 'go': 1.0, 'finally': 1.0, 'spills': 1.0, 'wipe': 1.0, 'off': 1.0, 'seems': 1.0, 'have': 4.0, 'compared': 1.0, 'from': 1.0, 'addition': 1.0, 'safety': 1.0, 'us': 1.0, 'taking': 1.0, 'able': 1.0, 'things': 2.0, 'for': 4.0, 'opinion': 1.0, 'one': 2.0, 'frontier': 1.0, 'marathon': 1.0, 'a': 8.0, 's': 3.0, 'this': 3.0, 'minute': 1.0, 'at': 1.0, 'is': 6.0, 'many': 2.0, 'brands': 1.0, 'installed': 1.0, 'furthermore': 1.0, 'second': 1.0, 'seat': 7.0, 'in': 7.0, 'ease': 1.0, 'insanely': 1.0, 'and': 6.0, 'do': 2.0, 'driving': 1.0, 'about': 2.0, 'years': 1.0, 'no': 1.0, 'several': 1.0, 'thing': 1.0, 'smaller': 1.0, 'use': 1.0, 'feel': 2.0, 'completely': 1.0, 'thankfully': 1.0, 'install': 2.0, 'i': 12.0, 'creates': 1.0, 'not': 2.0, 'looks': 1.0, 'my': 4.0, '7': 1.0, 'knowing': 1.0, 'less': 1.0, 'moving': 1.0, 'we': 1.0, 'reviews': 1.0, 'reviewers': 1.0, 'the': 8.0, 'of': 4.0, 'view': 1.0, 'has': 1.0, 'always': 1.0, 'write': 1.0, 'but': 4.0, 'pregnant': 1.0, 'quality': 2.0, 'just': 2.0, 'seats': 2.0, 'an': 1.0, 'other': 2.0, 'used': 2.0, 'there': 2.0, 'really': 1.0, 'material': 1.0, 'strongly': 1.0, 'had': 1.0, 'that': 3.0, 'blocks': 1.0, 'huge': 1.0, 'than': 2.0, 'particular': 1.0, 'so': 1.0, 'can': 3.0, 'comparison': 1.0, 'solidly': 1.0, 'plus': 1.0, 'are': 3.0, 'britax': 1.0, 'first': 1.0, 'as': 6.0, 'heavy': 1.0, '2007': 1.0, 'mentioned': 1.0, 'week': 1.0, 'removed': 1.0, '9': 1.0, 'it': 12.0, 'easy': 2.0, 'blind': 1.0, 'last': 1.0, 'am': 1.0, 'currently': 1.0, 'lanes': 1.0, '35': 1.0, 'was': 1.0, 'made': 1.0, 'which': 1.0, 'good': 2.0, 'window': 1.0, 'car': 3.0, 'clean': 1.0, 'loves': 1.0, 'materials': 1.0, 'pretty': 2.0, 'to': 10.0, 'high': 1.0, 'luckily': 1.0, 'he': 1.0, 'far': 2.0, 'love': 1.0, 'yet': 1.0, 'cover': 1.0, 'built': 1.0, 'be': 4.0, 'with': 2.0, 'out': 2.0}
Word element => {'frontier': 1.0, 'other': 1.0, '90': 1.0, 'grade': 1.0, 'i': 1.0, 'straps': 1.0, 're': 1.0, 'days': 1.0, 'gone': 1.0, 'up': 2.0, 'pull': 1.0, 'of': 2.0, 'at': 1.0, 'britax': 1.0, 'are': 1.0, 'strap': 1.0, 'adjusting': 1.0, 'little': 1.0, 'button': 1.0, 'adjustment': 1.0, 'not': 1.0, 'old': 1.0, 'took': 1.0, 'an': 1.0, 'forward': 1.0, 'tall': 1.0, 'and': 3.0, 'difficult': 1.0, 'son': 2.0, 'do': 1.0, 'harness': 1.0, 'only': 1.0, 'wish': 1.0, 'release': 1.0, 'this': 3.0, '3': 1.0, 'could': 1.0, 'a': 6.0, 'we': 5.0, 'height': 1.0, 'ordered': 1.0, 'for': 1.0, 'click': 1.0, 'but': 4.0, '2': 1.0, 'heavy': 1.0, 'is': 2.0, 'that': 1.0, 'installation': 1.0, 'tight': 1.0, 'my': 1.0, 'had': 2.0, 'was': 4.0, 'weekend': 1.0, 'the': 8.0, 'asleep': 1.0, 'graco': 1.0, 'seemed': 1.0, 'squeeze': 1.0, 'trip': 1.0, 'like': 1.0, 'head': 1.0, 'threading': 1.0, 'upgrade': 1.0, 'top': 1.0, 'needed': 1.0, 'car': 2.0, 'all': 1.0, 'to': 3.0, 'as': 2.0, 'seat': 5.0, 'our': 2.0, 'it': 2.0, 'fell': 1.0, 'find': 1.0, 'usually': 1.0, 'in': 2.0, 'year': 1.0, 'his': 1.0, 'breeze': 1.0, 'new': 1.0, 'would': 1.0, 'slump': 1.0, 'did': 1.0}
Word element => {'recommend': 1.0, 'ever': 1.0, 'before': 1.0, 'child': 1.0, 'my': 1.0, 'seat': 1.0, 'the': 4.0, 'much': 1.0, 'still': 1.0, 'had': 1.0, 'to': 1.0, 'was': 1.0, 'seats': 1.0, 'install': 1.0, 'easier': 1.0, 'how': 1.0, 'loved': 1.0, 'this': 1.0, 'durable': 1.0, 'it': 3.0, 'i': 2.0, 'car': 3.0, 'and': 2.0, 'best': 1.0, 'as': 1.0, 'option': 1.0, 'safe': 1.0, 'britax': 1.0, 'of': 1.0, 'using': 1.0, 'belt': 1.0, 'in': 1.0, 'lap': 1.0, 'feels': 1.0}
Word element => {'than': 1.0, 'of': 1.0, 'out': 1.0, 'in': 1.0, 'him': 1.0, 'easier': 1.0, 'lot': 1.0, 'its': 1.0, 'new': 1.0, 'was': 1.0, 'okay': 1.0, 'just': 2.0, 'thats': 1.0, 'heavy': 1.0, 'the': 5.0, 'so': 1.0, 'bit': 1.0, 'a': 3.0, 'get': 1.0, 'easy': 2.0, '2': 1.0, 'but': 1.0, 'bought': 1.0, 'my': 2.0, 're': 1.0, 'this': 1.0, 'it': 2.0, 'is': 2.0, '3': 1.0, 'install': 1.0, '1': 1.0, 'and': 4.0, 'for': 2.0, 'love': 1.0, 'son': 1.0, 'old': 1.0, 'whole': 1.0, 'up': 1.0, 'beat': 1.0, 'clicktight': 1.0, 'plus': 1.0, 'car': 3.0, 'set': 1.0, 'clip': 1.0, 'toddler': 1.0, 'hook': 1.0, 'thread': 1.0, 'through': 1.0, 'system': 1.0, 'which': 1.0, 'made': 1.0, 'due': 1.0, 'to': 4.0, 'seat': 5.0, 'all': 1.0, 'you': 1.0, 'year': 1.0, 'his': 1.0}
Word element => {'kid': 1.0, 'functionality': 1.0, 'and': 1.0, 'very': 1.0, 'lock': 1.0, 'click': 1.0, 'my': 1.0, 'the': 1.0, 'this': 1.0, 'thing': 1.0, 'but': 1.0, 'some': 1.0, 'has': 1.0, 'comfortable': 1.0, 'weight': 1.0, 'is': 1.0, 'feels': 1.0, 'on': 1.0, 'i': 1.0, 'secure': 1.0, 'do': 1.0, 'it': 2.0, 'love': 1.0}
Word element => {'harder': 1.0, 'ever': 1.0, 'couldn': 1.0, 'and': 1.0, 'bad': 1.0, 'friends': 1.0, 'cuz': 1.0, 'mentioning': 1.0, 'm': 1.0, 'i': 2.0, 'muscles': 1.0, 'need': 1.0, 'just': 1.0, 'concept': 1.0, 'comfy': 1.0, 'installed': 1.0, 'w': 1.0, 'than': 1.0, 'other': 1.0, 'haha': 1.0, 'me': 1.0, 'once': 1.0, 'of': 1.0, 'look': 1.0, 'makes': 1.0, 'mode': 1.0, 'do': 1.0, 'only': 1.0, 'harness': 1.0, 'finger': 1.0, 'great': 3.0, 'install': 1.0, 'it': 6.0, 'come': 1.0, 'doing': 1.0, 'this': 3.0, 'but': 2.0, 'seen': 1.0, 'you': 2.0, 'idea': 1.0, 'cool': 1.0, 'some': 2.0, 'sucker': 1.0, 'know': 1.0, 'elbow': 1.0, 'that': 3.0, 'take': 1.0, 'flips': 1.0, 'understandably': 1.0, 'is': 3.0, 'seat': 3.0, 'to': 7.0, 's': 2.0, 't': 3.0, 'a': 1.0, 'belt': 2.0, 'hands': 1.0, 'the': 3.0, 'grease': 1.0, 'very': 1.0, 'should': 1.0, 'please': 1.0, 'open': 2.0, 'video': 1.0, 'transport': 1.0, 'don': 2.0, 'up': 2.0, 'child': 1.0, 'want': 1.0, 'being': 1.0, 'undone': 1.0, 'while': 1.0, 'able': 1.0, 'have': 3.0, 'undo': 1.0, 'car': 2.0, 'or': 1.0, 'your': 1.0, 'think': 1.0, 'gonna': 2.0, 'be': 1.0, 'easy': 2.0, 'in': 1.0}
Word element => {'car': 1.0, 'possible': 1.0, 'as': 2.0, 'is': 1.0, 'one': 1.0, 'little': 1.0, 'the': 1.0, 'my': 1.0, 'safe': 1.0, 'easy': 1.0, 'install': 1.0, 'great': 1.0, 'in': 1.0, 'for': 1.0, 'tall': 1.0, 'to': 1.0, 'peace': 1.0, 'that': 1.0, 'kids': 1.0, 'seat': 1.0, 'of': 1.0, 'mind': 1.0}
Word element => {'issue': 1.0, 'fixes': 1.0, 'hope': 1.0, 'not': 1.0, 'of': 2.0, 'difficult': 2.0, 'middle': 1.0, 'in': 2.0, 'also': 1.0, 'next': 1.0, 'that': 1.0, 'is': 2.0, 'seats': 3.0, 'seat': 1.0, 'to': 5.0, 'course': 1.0, 'adjustment': 1.0, 'install': 1.0, 'great': 1.0, 'its': 1.0, 'only': 1.0, 'it': 2.0, 'this': 1.0, 'kids': 2.0, 'version': 1.0, 'technology': 1.0, 'my': 1.0, 'britax': 1.0, 'are': 3.0, 'idea': 1.0, 'again': 1.0, 'on': 1.0, 'make': 1.0, 'far': 1.0, 'problem': 1.0, 'click': 1.0, 'tighten': 1.0, 'back': 2.0, 'very': 2.0, 'for': 1.0, 'wife': 1.0, 'the': 11.0, 'reach': 1.0, 'too': 1.0, 'and': 2.0, 'easy': 1.0, 'get': 1.0, 'able': 1.0, 'have': 1.0, 'either': 1.0, 'so': 1.0, 'i': 2.0, 'a': 1.0, 'go': 1.0, 'help': 1.0}
Word element => {'quality': 1.0, 'affects': 1.0, 'as': 1.0, 'pay': 1.0, 'back': 1.0, 'between': 1.0, 'washcloth': 1.0, 'black': 1.0, 'drapping': 1.0, 'empty': 1.0, '47': 1.0, 'price': 1.0, 'child': 1.0, 'be': 1.0, 'taller': 1.0, 'raised': 1.0, 'can': 2.0, 'headrest': 2.0, 'complaint': 1.0, 'breeze': 1.0, 's': 2.0, 'car': 1.0, 'administer': 1.0, 'able': 1.0, 'taking': 1.0, 'used': 1.0, 'just': 1.0, 'by': 3.0, 't': 1.0, 'belt': 1.0, 'on': 1.0, 'durability': 1.0, 'think': 1.0, 'was': 2.0, 'knelt': 1.0, 'minutes': 1.0, 'extra': 1.0, 'tugs': 1.0, 'tug': 1.0, 'quest': 1.0, '2013': 1.0, 'these': 2.0, 'installed': 1.0, 'than': 1.0, 'quiet': 1.0, 'really': 1.0, '41': 1.0, 'two': 2.0, 'i': 5.0, 'find': 1.0, 'since': 1.0, 'clicktight': 4.0, 'believed': 1.0, 'my': 4.0, 'shot': 1.0, 'get': 1.0, 'omg': 1.0, 'we': 5.0, 'small': 1.0, 'imagine': 1.0, 'a': 9.0, 'have': 3.0, 'to': 6.0, 'any': 2.0, 'hands': 1.0, 'least': 1.0, 'in': 2.0, 'seat': 4.0, 'husband': 1.0, 'had': 1.0, 'about': 1.0, 'would': 1.0, 'frontier': 1.0, 'the': 16.0, 'of': 4.0, 'britax': 3.0, 'are': 2.0, 'seatbelt': 1.0, 'from': 1.0, 'solved': 2.0, 'read': 1.0, 'never': 1.0, 'fraction': 1.0, 'releasing': 1.0, 'gave': 2.0, 'been': 1.0, 'that': 4.0, 'fasten': 1.0, 'it': 8.0, '9': 1.0, 'down': 1.0, '34': 2.0, '8': 1.0, 'panel': 1.0, 'and': 9.0, 'at': 1.0, 'is': 8.0, 'numbers': 1.0, 'for': 2.0, 'fabric': 1.0, 'ever': 1.0, 'other': 2.0, 'an': 2.0, 'safety': 2.0, 'improvement': 1.0, 'tighter': 1.0, 'if': 1.0, 'section': 1.0, 'hard': 1.0, 'over': 1.0, '85': 1.0, 'cup': 1.0, 'holders': 1.0, 'kids': 2.0, 'release': 2.0, 'rattles': 1.0, 'this': 2.0, 'now': 1.0, 'great': 1.0, 'seemed': 1.0, 'only': 1.0, 'amazing': 1.0, 'company': 1.0, 'whatever': 1.0, 'them': 1.0, 'happy': 1.0, 'makes': 1.0, 'did': 1.0, 'tension': 1.0, 'when': 2.0, 'but': 1.0, 'unbuckling': 1.0, 'out': 1.0}
Word element => {'out': 1.0, 'seat': 1.0, 'on': 1.0, 'that': 1.0, 'is': 1.0, 'car': 1.0, 's': 1.0, 'cannot': 1.0, 'in': 1.0, 'problem': 1.0, '9': 1.0, 'much': 1.0, 'son': 1.0, 'year': 1.0, 'love': 1.0, 'for': 2.0, 'one': 2.0, 'old': 1.0, 'i': 1.0, 'the': 2.0, 'sits': 1.0, 'mother': 1.0, '2': 1.0, 'feels': 1.0, 'he': 1.0, 'only': 1.0, 'it': 2.0, 'this': 1.0, 'loved': 1.0, 'and': 1.0, 'like': 1.0, 'my': 3.0, 'bought': 1.0, 'see': 1.0, 'law': 1.0, 'a': 1.0, 'royce': 1.0, 'another': 1.0, 'rolls': 1.0, 'window': 1.0, 'so': 2.0, 'ordered': 1.0}
Word element => {'though': 1.0, 'heavy': 1.0, 'a': 1.0, 'install': 1.0, 'to': 1.0, 'easy': 1.0, 'very': 1.0, 'was': 1.0, 'i': 1.0, 'seat': 1.0, 'the': 1.0, 'is': 2.0, 'this': 1.0, 'color': 1.0, 'it': 2.0, 'love': 1.0, 'great': 1.0, 'we': 1.0, 'bit': 1.0, 'got': 1.0, 'congo': 1.0}
Word element => {'owned': 1.0, 'have': 1.0, 'i': 1.0, 'to': 2.0, 'your': 1.0, 'unique': 1.0, 'attaching': 1.0, 'for': 1.0, 's': 1.0, 'seat': 3.0, 'other': 1.0, 'design': 1.0, 'cars': 1.0, 'car': 2.0, 'really': 1.0, 'tighter': 1.0, 'is': 1.0, 'this': 1.0, 'it': 1.0, 'quick': 1.0, 'and': 2.0, 'any': 1.0, 'easy': 1.0, 'holds': 1.0, 'than': 1.0, 'great': 1.0, 'the': 1.0}
Word element => {'necessary1': 1.0, 'if': 1.0, 'car': 1.0, 'take': 1.0, 'easier': 1.0, 'is': 1.0, 'the': 1.0, 'are': 1.0, 'it': 1.0, 'great': 1.0, 'and': 2.0, 'in': 1.0, 'safety': 1.0, 'most': 1.0, 'much': 1.0, 'to': 2.0, 'easy': 1.0, 'all': 1.0, 'out': 1.0, 'install': 1.0, 'features': 1.0, 'of': 2.0}
Word element => {'ages': 1.0, 'at': 1.0, 'size': 1.0, 'in': 1.0, 'considerable': 1.0, '3': 1.0, 'accommodated': 1.0, 'has': 1.0, 'i': 1.0, 'are': 1.0, 'change': 1.0, 'figure': 1.0, 'grandparent': 1.0, 'read': 1.0, 'where': 1.0, 'newby': 1.0, 'a': 1.0, 'as': 1.0, '2': 1.0, 'the': 2.0, 'adjustment': 1.0, 'great': 2.0, 'works': 2.0, 'it': 1.0, 'had': 1.0, 'to': 2.0, 'releases': 1.0, 'instructions': 1.0, 'out': 1.0, 'hidden': 1.0, 'but': 1.0, 'that': 1.0, 'and': 1.0, 'done': 1.0}
Word element => {'need': 1.0, 'no': 1.0, 'last': 1.0, 'will': 1.0, 'quality': 1.0, 'good': 1.0, 'looking': 1.0, 'line': 1.0, 'pounds': 1.0, 'harness': 1.0, 'can': 1.0, 'several': 1.0, 'about': 1.0, 'newer': 1.0, 'though': 1.0, 'possible': 1.0, 'even': 1.0, 'daughter': 1.0, 'keeping': 1.0, 'out': 2.0, 'wasn': 1.0, 'locks': 1.0, 'this': 2.0, 'soft': 1.0, 'back': 2.0, 'fabrics': 1.0, 'really': 1.0, 'felt': 1.0, 'it': 3.0, 'booster': 1.0, 'replace': 1.0, 'car': 1.0, 'hours': 1.0, 'year': 1.0, 'sturdy': 1.0, 'tried': 1.0, 'old': 1.0, 'as': 3.0, 'your': 1.0, 'any': 2.0, 'researching': 1.0, 'different': 1.0, 'for': 3.0, 'fabric': 1.0, 'growing': 1.0, 'feels': 1.0, 'britax': 3.0, 'five': 1.0, 'in': 1.0, 'seat': 6.0, 'tru': 1.0, 'harnessed': 1.0, 'that': 3.0, 'bought': 1.0, 'marathon': 1.0, 'boosters': 2.0, 'we': 2.0, 'a': 2.0, 'to': 4.0, 'high': 2.0, 'my': 2.0, 'and': 4.0, 'strongly': 1.0, 'had': 1.0, 'was': 3.0, 'further': 1.0, 't': 1.0, 'belt': 1.0, 'happy': 1.0, 'with': 4.0, 'them': 1.0, 'when': 1.0, 'you': 2.0, 'read': 1.0, 'i': 4.0, 'coming': 1.0, 'of': 2.0, 'the': 8.0, 'place': 1.0, 'new': 1.0, 'into': 1.0, 'frontier': 1.0, 'than': 1.0, '90': 2.0, 'our': 2.0, 'clicktight': 1.0, 'technology': 1.0, 'purposes': 1.0, 'spent': 1.0, 'knew': 1.0, 'us': 1.0, 'look': 1.0, 'is': 3.0, 'more': 1.0, 'silky': 1.0, 'bottom': 1.0, 'yet': 1.0, 'safety': 1.0, 'latch': 1.0, 'durable': 1.0, 'countless': 1.0, 'older': 1.0, 'long': 1.0, 'on': 1.0, 'seats': 1.0, 'perfectly': 1.0, 'there': 1.0, 'other': 1.0, 'an': 1.0, 'option': 1.0, 'use': 1.0, 'if': 2.0, 'want': 1.0}
Word element => {'sit': 1.0, 'it': 4.0, 'saft': 1.0, 'is': 2.0, 'carseat': 1.0, 'my': 1.0, 'very': 2.0, 'som': 1.0, 'like': 1.0, 'to': 1.0, 'much': 1.0, 'wide': 1.0, 'easy': 1.0}
Word element => {'happy': 1.0, 'safe': 1.0, 'comfy': 1.0, 'grandson': 1.0, 'ride': 1.0, 'no': 1.0, 'install': 1.0, 'is': 1.0, 'with': 1.0, 'the': 3.0, 'watch': 1.0, 'problems': 1.0, 'buckle': 1.0, 'video': 1.0, 'up': 1.0, 'and': 2.0, 'enjoy': 1.0}
Word element => {'child': 1.0, 'my': 1.0, 'in': 1.0, 'for': 1.0, 'months': 1.0, 'second': 1.0, 'buying': 1.0, 'carseat': 1.0, 'and': 1.0, 'am': 1.0, 'a': 2.0, 're': 1.0, 'planning': 1.0, 'on': 1.0, 'other': 1.0, 'this': 1.0, 'here': 1.0, 'i': 1.0, 'couple': 1.0, 'we': 1.0, 'loving': 1.0, 'already': 1.0}
Word element => {'simple': 1.0, 'other': 1.0, 'install': 1.0, 'not': 1.0, 'weight': 1.0, 'because': 1.0, 'than': 1.0, '5': 1.0, 'car': 1.0, 'heavy': 1.0, 'the': 6.0, 'booster': 1.0, 'space': 1.0, 'is': 6.0, 'we': 1.0, 'a': 2.0, 'and': 2.0, 'getting': 1.0, 'chose': 1.0, 'very': 1.0, 'cars': 1.0, 'son': 1.0, 'only': 1.0, 'it': 2.0, 'reason': 1.0, 'wonderful': 1.0, 'easy': 1.0, 'seat': 2.0, 'to': 3.0, 'move': 1.0, 'between': 1.0, 'my': 1.0, 'cup': 1.0, 'print': 1.0, 'this': 2.0, 'holders': 1.0, 'put': 1.0, 'snacks': 1.0, 'for': 1.0, 'his': 2.0, 'i': 1.0, 'am': 1.0, 'pleased': 1.0, 'next': 1.0, 'loves': 2.0, 'that': 1.0, 'him': 1.0, 'be': 1.0}
Word element => {'rating': 1.0, 'safety': 1.0, 'be': 1.0, 'guess': 1.0, 'wasn': 1.0, 'carseat': 1.0, 'move': 1.0, 'much': 1.0, 'harness': 1.0, 'purchase': 1.0, 'only': 1.0, 'such': 1.0, 'for': 1.0, 'easy': 1.0, 'install': 1.0, 'great': 2.0, 'really': 3.0, 'point': 1.0, 'old': 1.0, '5': 1.0, 'idiot': 1.0, 'son': 1.0, 'height': 1.0, 'shoulder': 1.0, '2': 1.0, 'but': 2.0, 'higher': 1.0, 'it': 4.0, 'a': 3.0, 'pretty': 1.0, 'to': 5.0, 'in': 4.0, 'seat': 7.0, 'had': 2.0, 'torso': 1.0, '3': 1.0, '1': 1.0, 'find': 1.0, 'the': 14.0, 'deal': 1.0, 'place': 1.0, 'again': 2.0, 'car': 2.0, 'with': 3.0, 'this': 4.0, 'release': 2.0, 'holders': 1.0, 'my': 5.0, 'bought': 1.0, 'i': 5.0, 'outgrown': 1.0, 'long': 1.0, 'his': 1.0, 'sitting': 1.0, 'previous': 1.0, 'very': 1.0, 'little': 2.0, 'and': 8.0, 'tall': 1.0, 'moved': 1.0, 'play': 1.0, 'proof': 1.0, 'click': 1.0, 'installation': 1.0, 'difficult': 1.0, 'loves': 1.0, 'tighten': 1.0, 'recommend': 1.0, 'alone': 1.0, 'because': 1.0, 'that': 3.0, 'deep': 1.0, 'complaint': 1.0, 'down': 2.0, 'straps': 2.0, 'once': 1.0, 'year': 1.0, 'child': 1.0, 'up': 2.0, 'button': 1.0, 'constantly': 1.0, 'so': 2.0, 'bulky': 1.0, 'would': 3.0, 'boy': 2.0, 'hard': 1.0, 'cup': 1.0, 'rests': 1.0, 'big': 1.0, 'arm': 2.0, 't': 1.0, 'fit': 1.0, 'rest': 1.0, 'is': 9.0, 'snug': 1.0, 'at': 1.0, 'lock': 1.0, 'britax': 1.0, 'first': 1.0, 'expected': 1.0, 'wished': 2.0, 'no': 1.0, 'gives': 1.0, 'they': 2.0, 'probably': 1.0, 'them': 1.0, 'still': 1.0, 'stay': 1.0, 'if': 1.0, 'did': 1.0}
Word element => {'one': 1.0, 'getting': 1.0, 'he': 1.0, 'enough': 1.0, 'youngest': 1.0, 'or': 1.0, 'love': 1.0, 'for': 1.0, 'it': 2.0, 'spent': 1.0, 'solid': 1.0, 'safe': 1.0, 'glad': 1.0, 'and': 3.0, 'soon': 1.0, 'money': 1.0, 'but': 1.0, 'bandwagon': 1.0, 'its': 1.0, 'so': 1.0, 'time': 1.0, 'old': 1.0, 'jump': 1.0, 'long': 1.0, 'grandma': 1.0, 'her': 1.0, 'on': 1.0, 'daughter': 1.0, 'my': 3.0, 'the': 3.0, 'a': 2.0, 'i': 4.0, 'britax': 1.0, 'very': 1.0, 'easy': 1.0, 'loves': 1.0, 'that': 1.0, 'would': 1.0, 'letting': 1.0, 'comfortable': 1.0, 'install': 3.0, 'nice': 1.0, 'feel': 1.0, 'babysitter': 1.0, 'refused': 1.0, 'know': 1.0, 'to': 2.0, 'as': 2.0, 'seat': 1.0, 'child': 1.0, 'is': 3.0, 'in': 1.0, 'properly': 1.0}
Word element => {'sides': 1.0, 'seat': 1.0, 'to': 2.0, 'had': 1.0, 'wanted': 1.0, 'brand': 1.0, 'with': 2.0, 'it': 3.0, 'he': 1.0, 'familiar': 1.0, 'while': 1.0, 'stick': 1.0, 'son': 1.0, 'very': 1.0, 'were': 1.0, 'in': 2.0, 'having': 1.0, 'for': 2.0, 'the': 4.0, 'marathon': 1.0, 'we': 2.0, 'a': 1.0, 'britax': 1.0, 'up': 1.0, 'size': 1.0, 'click': 1.0, 'so': 1.0, 'next': 1.0, 'installation': 1.0, 've': 1.0, 'new': 1.0, 'especially': 1.0, 'is': 2.0, 'easy': 1.0, 'use': 1.0, 'went': 1.0, 'tight': 1.0, 'my': 1.0, 'happy': 1.0, 'cup': 1.0, 'smoothly': 1.0, 'and': 3.0, 'too': 1.0, 'likes': 1.0, 'holders': 1.0, 'on': 1.0, '34': 2.0, 'both': 1.0}
Word element => {'rock': 1.0, 'very': 1.0, 'remove': 1.0, 'to': 1.0, 'easy': 1.0, 'solid': 1.0, 'safe': 1.0, 'well': 1.0, 'extremely': 1.0, 'this': 1.0, 'car': 1.0, 'seat': 2.0, 'excellent': 1.0, 'made': 1.0, 'my': 1.0, 'i': 1.0, 'feel': 1.0, 'that': 1.0, 'daughter': 1.0, 'in': 1.0, 'is': 1.0, 'and': 1.0, 'perfectly': 1.0, 'install': 1.0, 'sitting': 1.0}
Word element => {'safe': 1.0, 'means': 1.0, 'also': 1.0, 'which': 1.0, 'click': 1.0, 'aside': 1.0, 'just': 1.0, 'unbelievably': 1.0, 'new': 1.0, 'literally': 1.0, 'system': 1.0, 'this': 1.0, 'it': 4.0, 'only': 1.0, 'regular': 1.0, 'in': 3.0, 'for': 1.0, 'tight': 1.0, 'so': 1.0, 's': 2.0, 'installation': 1.0, 'been': 1.0, 'car': 4.0, 'the': 10.0, 'first': 1.0, 'heavy': 1.0, 'easy': 2.0, 'far': 1.0, 'day': 1.0, 'seat': 4.0, 'as': 2.0, 'very': 3.0, 'from': 1.0, 'but': 1.0, 'back': 1.0, 'and': 1.0, 'is': 1.0, 'holds': 1.0, 'latch': 1.0, 'with': 1.0, 'adjusting': 1.0, 'height': 1.0, 'of': 2.0, 'belt': 1.0, 'was': 1.0, 'britax': 1.0, 'normal': 1.0, 'extremely': 1.0, 'ness': 1.0, 'overall': 1.0, 'happy': 1.0}
Word element => {'car': 1.0, 'boulevard': 1.0, 'also': 2.0, 'britax': 2.0, 'second': 1.0, 'up': 1.0, 'done': 1.0, 'service': 1.0, 'buckle': 2.0, 'him': 2.0, 'old': 1.0, 'years': 1.0, 'is': 2.0, 'move': 1.0, 'seats': 1.0, 'chest': 1.0, 'other': 2.0, 'than': 1.0, 'lot': 1.0, 'help': 2.0, 'himself': 1.0, 'by': 1.0, 'in': 2.0, 'cup': 1.0, 'armrest': 1.0, 'easier': 1.0, 'likes': 1.0, 's': 1.0, 'we': 2.0, 'a': 1.0, 'go': 1.0, 'love': 2.0, 'for': 3.0, 'like': 1.0, 'using': 1.0, 'click': 1.0, 'without': 1.0, 'the': 8.0, 'can': 1.0, '2': 1.0, 'was': 2.0, 'had': 2.0, 'sure': 1.0, 'get': 1.0, 'easy': 2.0, 'very': 3.0, 'properly': 1.0, 'from': 1.0, 'son': 1.0, 'i': 7.0, 'great': 1.0, 'comfortable': 1.0, 'install': 1.0, 'make': 1.0, '3': 1.0, 'think': 1.0, 'almost': 1.0, 'holders': 1.0, 'this': 2.0, 'red': 1.0, 'with': 2.0, 'he': 3.0, 'decide': 1.0, 'being': 1.0, 'have': 4.0, 'our': 2.0, 'any': 1.0, 'all': 2.0, 'to': 4.0, 'seat': 2.0, 'lower': 1.0, 'so': 1.0, 'loves': 1.0, 'installation': 1.0, 'that': 3.0, 'beginning': 1.0, 'instead': 1.0, 'of': 1.0, 'one': 2.0, 'months': 1.0, 'color': 1.0, 'tight': 1.0, 'anchors': 1.0, 'my': 1.0, 'only': 1.0, 'much': 2.0, 'and': 5.0, 'too': 2.0, 'it': 6.0, 'looks': 1.0, 'customer': 1.0, 'really': 1.0}
Word element => {'helpful': 1.0, 'hope': 1.0, 'much': 1.0, 'hands': 1.0, 'try': 1.0, 'tighter': 1.0, 'still': 1.0, 'if': 1.0, 'reinforced': 1.0, 'quality': 1.0, 'good': 1.0, 'and': 2.0, 'debating': 1.0, 'compartment': 2.0, 'you': 2.0, 'when': 1.0, 'am': 1.0, 'for': 2.0, 'afraid': 1.0, 'close': 1.0, 'looking': 1.0, 'thats': 1.0, 'little': 1.0, 'anything': 1.0, 'on': 2.0, 'think': 2.0, 't': 1.0, 'belt': 2.0, 'was': 7.0, 'addresses': 1.0, 'have': 2.0, 'seatbelt': 4.0, 'it': 10.0, 'used': 1.0, 'just': 1.0, 'budge': 1.0, 'worried': 1.0, 'go': 1.0, 'route': 1.0, 'having': 1.0, 'does': 1.0, 'than': 1.0, 'reclined': 1.0, 'or': 1.0, 'latch': 2.0, 'me': 1.0, 'unsure': 1.0, 'my': 2.0, 'steel': 1.0, 'solid': 1.0, 'ever': 1.0, 'fits': 1.0, 'an': 1.0, 'tight': 1.0, 'would': 1.0, 'weight': 1.0, 'less': 1.0, 'about': 2.0, 'let': 1.0, 'no': 2.0, 'limit': 1.0, 'carrolla': 1.0, 'fasten': 1.0, 'thunk': 1.0, 'but': 4.0, 'over': 1.0, 'open': 1.0, 'son': 1.0, 'to': 1.0, 'literally': 1.0, 'actually': 1.0, 'system': 1.0, 'the': 10.0, 'of': 1.0, 'a': 7.0, 'small': 1.0, 'imagine': 1.0, '2007': 1.0, 'purchase': 1.0, 'only': 2.0, 'wiggle': 1.0, 'be': 1.0, 'down': 2.0, 'install': 3.0, 'couldn': 1.0, 'online': 1.0, 'are': 1.0, 'britax': 1.0, 'with': 3.0, 'peticular': 1.0, 'some': 1.0, 'room': 1.0, 'this': 3.0, 'minute': 1.0, 'not': 1.0, 'milimeter': 1.0, 'nautilus': 1.0, 'is': 6.0, 'rock': 1.0, 'seat': 3.0, 'in': 3.0, 'there': 1.0, 'requires': 1.0, 'leery': 1.0, 'head': 1.0, 'slump': 1.0, 'clips': 1.0, 'so': 1.0, 'has': 1.0, 'i': 13.0, 'well': 1.0, 'because': 2.0, 'that': 1.0, 'everything': 1.0, 'heavy': 1.0}
Word element => {'small': 1.0, 'or': 1.0, 'toy': 1.0, 'about': 1.0, 'and': 3.0, 'snack': 1.0, 'nice': 1.0, 'nothing': 1.0, 'sturdy': 1.0, 'seat': 1.0, 'cup': 2.0, 'holder': 1.0, 'made': 1.0, 'this': 1.0, 'flimsy': 1.0, 'love': 1.0, 'holders': 1.0, 'little': 1.0, 'extra': 1.0, 'hold': 1.0, 'booster': 1.0, 'space': 1.0, 'the': 3.0, 'behind': 1.0, 'to': 1.0, 'well': 1.0, 'a': 1.0}
Word element => {'recommend': 1.0, 'frequently': 1.0, 'move': 1.0, 'need': 1.0, 'or': 1.0, 'could': 1.0, 'a': 5.0, 'box': 1.0, 'to': 4.0, 'con': 2.0, 'protected': 1.0, '3': 1.0, 'juice': 1.0, 'husband': 1.0, 'overall': 2.0, 'lift': 2.0, 'carseat': 2.0, 'on': 1.0, 'long': 4.0, 'trips': 2.0, 'sturdy': 1.0, 'but': 2.0, 'can': 1.0, 'so': 3.0, 'holders': 1.0, 'this': 6.0, 'ease': 1.0, 'looking': 1.0, 'buy': 1.0, 'very': 1.0, 'installing': 1.0, 'not': 3.0, 'heavy': 2.0, 'of': 2.0, 'the': 10.0, 'cup': 1.0, 'another': 1.0, 'for': 3.0, 'plastic': 1.0, 'it': 9.0, 'me': 1.0, 'my': 5.0, 'looks': 1.0, 'tried': 1.0, 'i': 6.0, 'feel': 1.0, 'great': 1.0, 'comfortable': 1.0, 'seat': 3.0, 'in': 2.0, 'side': 1.0, 'at': 1.0, 'is': 9.0, 'his': 2.0, 'around': 1.0, 'bonus': 1.0, 'and': 5.0, 'trip': 1.0, 'out': 1.0, 'product': 1.0, 'child': 1.0, 'was': 3.0, 'had': 2.0, 'distance': 1.0, 'nice': 1.0, 'neighborhood': 1.0, 'drives': 1.0, 'help': 1.0, 'exposing': 1.0, 'twice': 1.0, 'after': 2.0, 'hour': 1.0, 'adjusted': 1.0, 'son': 2.0, 'complaining': 1.0, 'love': 1.0, 'he': 1.0, 'bottom': 1.0, 'down': 1.0, 'car': 1.0, 'again': 1.0, 'complained': 1.0, 'you': 1.0, 'cover': 2.0, 'drive': 2.0, 'hard': 1.0, 'put': 1.0, 'do': 1.0, 'only': 1.0, 'short': 1.0, 'sliding': 1.0, 'would': 2.0, 'that': 2.0, 'traveler': 1.0, 'because': 1.0, 'hurt': 1.0, 'safety': 1.0, 'best': 1.0, 'during': 1.0, 'however': 1.0, 'if': 1.0, 'are': 1.0}
Word element => {'drink': 1.0, 'the': 1.0, 'especially': 1.0, 'so': 1.0, 's': 2.0, 'loves': 1.0, 'think': 1.0, 'again': 1.0, 'a': 1.0, 'was': 1.0, 'two': 1.0, 'at': 1.0, 'when': 2.0, 'for': 2.0, 'comfortable': 1.0, 'one': 3.0, 'toy': 1.0, 'age': 1.0, 'carseat': 1.0, 'his': 3.0, 'in': 1.0, 'sleeping': 1.0, 'son': 1.0, 'few': 1.0, 'my': 1.0, 'because': 1.0, 'started': 1.0, 'months': 1.0, 'i': 1.0, 'old': 1.0, 'but': 1.0, 'cars': 1.0, 'we': 1.0, '3': 1.0, 'got': 1.0, 'cupholders': 1.0, 'it': 2.0, 'he': 3.0, 'stopped': 1.0, 'this': 1.0}
Word element => {'to': 1.0, 'kids': 1.0, 'it': 1.0, 'so': 1.0, 'other': 1.0, 'some': 1.0, 'far': 1.0, 'out': 2.0, 'seat': 3.0, 'for': 1.0, 'comfortable': 1.0, 's': 1.0, 'easiest': 1.0, 'easier': 1.0, 'our': 1.0, 'and': 1.0, 'get': 1.0, 'done': 1.0, 'has': 1.0, 'ever': 1.0, 'in': 1.0, 'seems': 1.0, 've': 1.0, 'i': 1.0, 'of': 1.0, 'britax': 1.0, 'seats': 1.0, 'install': 1.0, 'belt': 1.0, 'padding': 1.0, 'on': 1.0, 'than': 1.0, 'previous': 1.0, 'don': 1.0, 'armrests': 1.0, 'more': 1.0, 'the': 4.0, 't': 1.0, 'as': 2.0, 'stick': 1.0}
Word element => {'keeps': 1.0, 'pink': 2.0, 'bright': 1.0, 'are': 1.0, 'flower': 1.0, 'cactus': 1.0, 'got': 1.0, 'each': 1.0, 'seats': 1.0, 'a': 2.0, 'pretty': 1.0, 'to': 8.0, 'annoying': 1.0, 'as': 3.0, 'sure': 1.0, 'son': 3.0, 'still': 1.0, 'his': 1.0, 'does': 1.0, 'installed': 1.0, 'for': 2.0, 'their': 1.0, 'not': 3.0, 'on': 1.0, '3': 2.0, 'them': 1.0, 'next': 1.0, 'has': 2.0, 'out': 4.0, 'other': 1.0, 'fits': 1.0, 'family': 1.0, 'easy': 1.0, 'know': 1.0, 'up': 1.0, 'infant': 1.0, 'print': 2.0, 'but': 5.0, 'anytime': 1.0, 'back': 1.0, 'easily': 2.0, 'am': 1.0, 'when': 1.0, 'saying': 1.0, 'flowers': 2.0, 'twins': 1.0, 'into': 2.0, 'can': 1.0, 'so': 3.0, 'buckling': 1.0, 'love': 1.0, 'he': 2.0, 'our': 1.0, 'how': 1.0, 'this': 1.0, 'kids': 1.0, 'with': 1.0, 'my': 7.0, 'looks': 1.0, 'own': 1.0, 'tried': 1.0, 'fast': 1.0, 'i': 6.0, 'of': 1.0, 'the': 6.0, 'happy': 1.0, 'is': 3.0, 'yeah': 2.0, 'camaro': 1.0, 'won': 1.0, 'who': 1.0, 'and': 8.0, 'give': 1.0, 'soon': 1.0, 'across': 1.0, 'eventually': 1.0, 'didn': 1.0, 'want': 2.0, 'had': 1.0, 'we': 5.0, 'take': 1.0, 'buckle': 1.0, 'it': 8.0, 'him': 3.0, 'profile': 1.0, 'ride': 1.0, 'help': 1.0, 'cannot': 1.0, 'himself': 2.0, 'have': 4.0, 'no': 1.0, 'get': 5.0, 'trouble': 1.0, 'think': 1.0, 'definitely': 1.0, 'put': 1.0, 'do': 1.0, 'learn': 1.0, 'husband': 1.0, 'sporty': 1.0, 'nice': 1.0, 'hubby': 1.0, 'doesn': 1.0, 'car': 6.0, 'cool': 1.0, 'radian': 1.0, 'likes': 1.0, 't': 3.0, 'fairly': 1.0, 'quickly': 1.0, 'narrow': 2.0, 'per': 1.0, 'seat': 2.0, 'in': 4.0, 'm': 1.0, 'enough': 1.0, 'also': 1.0, 'will': 1.0}
Word element => {'pleased': 1.0, 'couldn': 1.0, 'bought': 1.0, 'little': 1.0, 'glad': 1.0, 'sides': 1.0, 'cup': 1.0, 'extra': 2.0, 'straps': 1.0, 'extras': 1.0, 'lots': 1.0, 'has': 1.0, 'attached': 1.0, 'before': 1.0, 'that': 1.0, 'after': 1.0, 'at': 1.0, 'move': 1.0, 'can': 1.0, 'child': 2.0, 'knowing': 1.0, 'longer': 1.0, 'takes': 1.0, 'strap': 1.0, 'britax': 1.0, 'm': 1.0, 'both': 1.0, '34': 2.0, 'of': 2.0, 'such': 1.0, 'the': 7.0, 'is': 4.0, 'more': 2.0, 'be': 2.0, 'breeze': 1.0, 'so': 5.0, 'i': 7.0, 'you': 1.0, 'am': 1.0, 'padding': 1.0, 'wide': 1.0, 'carseat': 5.0, 'didn': 1.0, 's': 3.0, 't': 3.0, 'a': 4.0, 'could': 1.0, 'in': 3.0, 'it': 4.0, 'with': 1.0, 'holders': 1.0, 'carseats': 1.0, 'this': 3.0, 'snacks': 1.0, 'love': 1.0, 'tightly': 1.0, 'my': 3.0, 'tight': 1.0, 'like': 1.0, 'technology': 1.0, 'know': 1.0, 'pads': 1.0, 'tether': 1.0, 'all': 1.0, 'to': 3.0, 'seat': 5.0, 'harness': 2.0, 'installing': 1.0, 'installed': 2.0, 'than': 1.0, 'kid': 1.0, 'correctly': 1.0, 'click': 1.0, 'puts': 1.0, 'awesome': 1.0, 'their': 1.0, 'hope': 1.0, 'on': 4.0, 'easy': 1.0, 'and': 7.0, 'use': 1.0, 'spend': 1.0, 'comfortable': 2.0, 'install': 2.0, 'feel': 1.0}
Word element => {'fits': 1.0, 'when': 1.0, 'which': 1.0, 'jeep': 1.0, 'highly': 1.0, 'another': 1.0, 'bought': 1.0, 'much': 1.0, 'so': 1.0, 'like': 1.0, 'just': 1.0, 'seat': 2.0, 'secure': 1.0, 'safe': 1.0, 'grandson': 2.0, 'have': 1.0, 'my': 3.0, 'i': 4.0, 'safely': 1.0, 'vehicle': 1.0, 'recommend': 1.0, 'easy': 1.0, 'most': 1.0, 'is': 1.0, 'really': 1.0, 'the': 2.0, 'these': 1.0, 'in': 4.0, 've': 1.0, 'of': 1.0, 'always': 1.0, 'for': 1.0, 'one': 2.0, 'liked': 1.0, 'to': 1.0, 'snows': 1.0, 'this': 2.0, 'with': 1.0, 'he': 1.0, 'it': 5.0, 'him': 2.0, 's': 1.0, 'perfectly': 1.0, 'drive': 2.0, 'and': 4.0, 'get': 1.0}
Word element => {'pink': 1.0, 's': 1.0, 'flower': 1.0, 'really': 1.0, 'also': 1.0, 'one': 1.0, 'another': 1.0, 'his': 1.0, 'outgrows': 1.0, 'months': 1.0, 'girl': 1.0, '34': 2.0, 'daughter': 1.0, 'tight': 1.0, 'click': 1.0, 'easy': 1.0, 'overall': 1.0, 'long': 1.0, 'want': 1.0, 'sitting': 1.0, '2': 2.0, 'can': 1.0, 'enjoys': 1.0, 'but': 2.0, 'possible': 2.0, 'middle': 1.0, 'side': 1.0, 'super': 1.0, 'felt': 1.0, 'it': 4.0, 'door': 1.0, 'a': 6.0, 'we': 6.0, 'will': 1.0, 'could': 1.0, 'went': 1.0, 'loves': 1.0, 'position': 2.0, 'two': 2.0, 'well': 1.0, 'i': 7.0, 'and': 7.0, 'finally': 1.0, 'that': 7.0, 'our': 1.0, 'as': 5.0, 'pretty': 1.0, 'to': 7.0, 'bought': 1.0, 'carseat': 3.0, 'came': 1.0, 'when': 1.0, 'beside': 1.0, 'chair': 1.0, 'weight': 1.0, 'm': 1.0, 'seat': 1.0, 'in': 9.0, 'husbands': 2.0, 'much': 1.0, 'put': 3.0, 'without': 1.0, 'mother': 1.0, '70': 1.0, 'few': 1.0, 'this': 5.0, 'for': 2.0, 'love': 3.0, 'best': 1.0, 'from': 1.0, 'while': 1.0, 'year': 3.0, 'being': 1.0, 'very': 3.0, 'buy': 1.0, '2012': 1.0, 'number': 1.0, 'old': 3.0, 'protection': 2.0, 'wanted': 1.0, 'until': 2.0, 'big': 2.0, 'camry': 1.0, 'ensure': 1.0, 'my': 6.0, 'sure': 1.0, 'equipped': 1.0, 'deal': 1.0, 'she': 5.0, 'baby': 2.0, 'britax': 2.0, 'riding': 1.0, 'frontier': 1.0, 'using': 1.0, 'reason': 1.0, '90': 1.0, 'needs': 2.0, 'had': 4.0, 'offered': 1.0, 'have': 2.0, 'move': 2.0, 'used': 1.0, '1': 1.0, 'since': 1.0, 'out': 1.0, 'infant': 2.0, 'car': 3.0, 'before': 1.0, 'them': 1.0, 'boulevard': 1.0, 'minivan': 1.0, 'cactus': 1.0, '90lbs': 1.0, 'her': 2.0, 'use': 1.0, 'was': 3.0, 'lbs': 1.0, 'or': 1.0, 'marathon': 1.0, 'these': 1.0, 'wise': 1.0, 'stayed': 1.0, 'design': 1.0, 'ave': 1.0, 'up': 2.0, 'the': 14.0, 'of': 2.0, 'longer': 1.0, 'new': 2.0, 'tall': 1.0, 'impact': 1.0, 'model': 2.0, 'is': 2.0, 'not': 1.0, 'with': 2.0, 'fits': 1.0, 'all': 1.0, 'other': 1.0, 'ability': 1.0, 'harness': 2.0}
Word element => {'shows': 1.0, 'definitely': 1.0, 'quality': 1.0, 'from': 1.0, 'harness': 1.0, 'fitting': 1.0, 'lot': 1.0, 'buckle': 1.0, 'britax': 1.0, 'of': 2.0, 'seat': 2.0, 'is': 1.0, 'vehicles': 1.0, 'i': 1.0, 'us': 1.0, 'easier': 1.0, 'that': 1.0, 'allows': 1.0, 'bought': 1.0, 'these': 1.0, '2': 1.0, 'the': 4.0, 'great': 2.0, 'so': 1.0, 'new': 1.0, 'system': 1.0, 'genius': 1.0, 'to': 2.0, 'and': 2.0, 'move': 1.0, 'other': 1.0, 'a': 1.0}
Word element => {'love': 1.0, 'but': 1.0, 'by': 1.0, 'tighten': 1.0, 'correctly': 1.0, 'to': 5.0, 'car': 2.0, 'mentioned': 1.0, 'very': 2.0, 'read': 2.0, 'a': 2.0, 's': 4.0, 'another': 1.0, 'my': 3.0, 'don': 4.0, 'what': 1.0, 'daughter': 2.0, 'one': 2.0, 'pounds': 1.0, 'comfortable': 1.0, 'i': 17.0, 'roundabout': 2.0, 'smooth': 1.0, 'weight': 1.0, 'harness': 3.0, 'much': 1.0, 'do': 1.0, 'also': 2.0, 've': 1.0, 'tight': 2.0, 'anchors': 1.0, 'would': 1.0, '5': 1.0, 'before': 1.0, 'as': 1.0, 'heavy': 1.0, 'britax': 2.0, 'are': 1.0, 'first': 1.0, 'second': 1.0, 'is': 6.0, 'and': 7.0, '50': 2.0, 'not': 1.0, 'why': 1.0, 'just': 2.0, 'like': 9.0, 'know': 1.0, 'technology': 1.0, '90': 1.0, 'time': 1.0, 'that': 4.0, 'hard': 2.0, 'this': 4.0, 'it': 8.0, 'point': 1.0, 'old': 1.0, 'have': 2.0, 'really': 1.0, 'getting': 1.0, 'loved': 1.0, 'enough': 2.0, 're': 1.0, 'make': 1.0, 'use': 1.0, 'bought': 1.0, 'instructions': 1.0, 'latch': 1.0, 'color': 1.0, 'system': 1.0, 't': 5.0, 'belt': 1.0, 'thinks': 1.0, 'was': 1.0, 'barely': 1.0, 'things': 1.0, 'you': 1.0, 'am': 1.0, 'on': 1.0, 'long': 1.0, 'connect': 1.0, 'seat': 3.0, 'in': 1.0, 'they': 1.0, 'reviewer': 1.0, 'didn': 1.0, 'the': 13.0, 'longer': 2.0, 'access': 1.0, 'until': 1.0, 'yes': 1.0, 'sure': 1.0, 'click': 1.0, 'installed': 1.0, 'easier': 2.0, 'ask': 1.0, 'headrest': 1.0, 'adjust': 1.0, 'overall': 1.0, 'still': 1.0}
Word element => {'out': 1.0, 'your': 1.0, 'll': 1.0, 'years': 1.0, 'worth': 1.0, 'rests': 1.0, 'money': 1.0, 'but': 1.0, 'quality': 1.0, 'loves': 1.0, 'good': 1.0, 'arm': 1.0, '7': 1.0, 'car': 1.0, 'in': 1.0, 'mount': 1.0, 'yr': 1.0, 'get': 1.0, 'easy': 1.0, 'to': 1.0, 'it': 4.0, 'holders': 1.0, 'this': 1.0, 'daily': 1.0, 'and': 3.0, 'probably': 1.0, 'from': 1.0, 'you': 2.0, 'gets': 1.0, 'reviews': 1.0, 'my': 1.0, 'the': 5.0, 're': 1.0, 'testing': 1.0, 'magazines': 1.0, 'drink': 1.0, 'very': 1.0, 'little': 1.0, 'cost': 1.0, 'might': 1.0, 's': 2.0, 'a': 2.0, 'some': 1.0, 'of': 2.0, 'there': 1.0, 'old': 1.0, 'common': 1.0, 'than': 1.0, 'brands': 1.0, 'more': 2.0, 'is': 1.0, 'using': 1.0, 'for': 1.0, 'few': 1.0}
Word element => {'amazon': 1.0, 'other': 1.0, 'possitive': 1.0, 'don': 1.0, 'and': 1.0, 'too': 2.0, 'was': 1.0, 'trips': 1.0, 'what': 2.0, 'purchased': 1.0, 'where': 1.0, 'for': 3.0, 'worthless': 1.0, 'point': 2.0, 'old': 1.0, 'low': 1.0, 'brand': 1.0, 'harness': 1.0, 'of': 1.0, 'the': 9.0, 'will': 3.0, 'you': 2.0, 'years': 1.0, 'immagine': 1.0, 'seat': 4.0, 'to': 4.0, 'as': 1.0, 'meet': 1.0, 'at': 2.0, 'is': 7.0, 'more': 1.0, 'features': 1.0, 'that': 3.0, 'shoulders': 1.0, 'it': 3.0, 'based': 1.0, 'out': 1.0, 'since': 1.0, 'find': 3.0, 'very': 1.0, 'little': 1.0, 'like': 2.0, 'i': 5.0, 'issue': 1.0, 'guy': 1.0, 'mine': 1.0, 'be': 1.0, 'taller': 1.0, 'foam': 1.0, 'metal': 1.0, 'comfort': 1.0, 'moment': 1.0, 'this': 6.0, 'few': 2.0, 'just': 1.0, 'if': 1.0, 'a': 3.0, 's': 1.0, 'kid': 3.0, 'going': 2.0, 'belt': 1.0, 't': 1.0, 'important': 2.0, '5': 2.0, 'joke': 1.0, 'hours': 1.0, 'right': 1.0, 'true': 1.0, 'can': 2.0, 'but': 2.0, 'plastic': 1.0, 'seating': 1.0, 'through': 1.0, 'on': 2.0, 'long': 1.0, 'lucking': 1.0, 'not': 2.0, 'dissapointed': 1.0, 'hard': 1.0, 'happen': 1.0, 'these': 1.0, 'reviews': 1.0, 'new': 1.0, 'model': 1.0, 'sure': 1.0, 'your': 2.0, 'feel': 1.0, 'possitvie': 1.0, 'product': 1.0, 'feedbacks': 1.0, 'are': 1.0, 'else': 1.0, 'know': 1.0, 'patience': 1.0, 'bit': 1.0, 'back': 1.0, 'by': 1.0, 'home': 1.0}
Word element => {'200': 1.0, 'this': 1.0, 'price': 1.0, 'i': 1.0, 'is': 1.0, 'a': 1.0, 'of': 1.0, 'seat': 2.0, 'the': 2.0, 'it': 1.0, 'great': 1.0, 'car': 3.0, 'easy': 1.0, 'be': 1.0, 'to': 1.0, 'install': 1.0, 'could': 1.0, 'wish': 1.0, 'in': 1.0}
Word element => {'just': 1.0, 'properly': 1.0, 'installed': 1.0, 'knowing': 1.0, 'about': 1.0, 'have': 1.0, 'much': 1.0, 'life': 1.0, 'makes': 1.0, 'click': 1.0, 'but': 1.0, 'little': 1.0, 'this': 1.0, 'it': 5.0, 's': 5.0, '4': 1.0, 'i': 3.0, 'old': 1.0, 'carseat': 1.0, 'and': 4.0, 'to': 1.0, 'wanted': 1.0, 'worry': 1.0, 'like': 1.0, 'year': 1.0, 'very': 1.0, 'technology': 1.0, 'my': 2.0, 'heavy': 1.0, 'more': 1.0, 'so': 1.0, 'everything': 1.0, 'dont': 1.0, 'we': 1.0, 'easier': 1.0, 'installs': 1.0, 'that': 2.0, 'tight': 1.0, 'love': 2.0, 'comfortable': 1.0, 'a': 2.0, 'dream': 1.0, 'she': 1.0}
Word element => {'fixes': 1.0, 'realizes': 1.0, 'altogether': 1.0, 'yourself': 1.0, 'do': 1.0, 'graco': 2.0, 'selling': 1.0, 'disappointing': 1.0, 'positive': 1.0, 'mistake': 1.0, 'discounts': 1.0, 'enough': 1.0, 'as': 2.0, 'annoying': 1.0, 'get': 1.0, 'legs': 1.0, 'folded': 1.0, 'happens': 1.0, 'until': 1.0, 'yes': 1.0, '4': 1.0, 'her': 2.0, 'around': 1.0, 'she': 2.0, 'be': 3.0, 'would': 1.0, 'flopping': 1.0, 's': 1.0, 't': 1.0, 'knees': 1.0, 'child': 2.0, 'brainer': 1.0, 'don': 1.0, 'cover': 4.0, 'lot': 1.0, 'one': 1.0, 'but': 2.0, 'their': 1.0, 'attaches': 1.0, 'sitting': 1.0, 'this': 5.0, 'under': 2.0, 'bunched': 1.0, 'gets': 2.0, 'wrong': 1.0, 'favor': 1.0, 'was': 2.0, 'first': 1.0, 'britax': 3.0, 'are': 2.0, 'marathon': 1.0, 'have': 2.0, 'a': 6.0, 'small': 2.0, 'saying': 1.0, 'where': 1.0, 'meant': 1.0, 'traits': 1.0, 'expensive': 1.0, 'by': 1.0, 'right': 1.0, 'whole': 1.0, 'great': 1.0, 'big': 2.0, 'to': 3.0, 'pulled': 1.0, 'moves': 1.0, 'of': 2.0, 'the': 14.0, 'what': 1.0, 'hooked': 1.0, 'that': 3.0, 'very': 4.0, 'best': 1.0, 'no': 1.0, 'let': 1.0, 'years': 1.0, 'start': 1.0, 'onto': 1.0, 'flaw': 3.0, 'frontier': 1.0, 'up': 1.0, '7': 1.0, 'car': 4.0, 'soon': 1.0, 'there': 2.0, 'owned': 1.0, 'i': 5.0, 'two': 2.0, 'intended': 1.0, 'old': 1.0, 'and': 12.0, 'seat': 8.0, 'in': 5.0, 'me': 1.0, 'my': 1.0, 'looks': 1.0, 'with': 1.0, 'front': 1.0, 'elastic': 1.0, 'like': 1.0, 'plan': 1.0, 'which': 1.0, 'were': 1.0, 'thought': 1.0, 'it': 5.0, 'hooks': 1.0, 'on': 3.0, 'can': 1.0, 'so': 1.0, 'constantly': 1.0, 'loops': 1.0, 'left': 1.0, 'them': 1.0, 'problem': 1.0, 'they': 1.0, 'for': 1.0, 'such': 1.0, 'other': 1.0, 'all': 1.0, 'an': 1.0, 'down': 2.0, 'getting': 2.0, 'yanks': 1.0, 'stay': 1.0, 'if': 2.0, 'turn': 1.0, 'every': 1.0, 'time': 2.0, 'avoid': 1.0, 'daughter': 1.0, 'is': 9.0, 'sits': 1.0, 'out': 1.0, 'addition': 1.0}
Word element => {'them': 1.0, 'they': 1.0, 'these': 1.0, 'in': 1.0, 'year': 2.0, '5': 1.0, 'riding': 1.0, 'summer': 1.0, 'old': 2.0, 'buckets': 1.0, 'from': 1.0, 'click': 1.0, 'right': 1.0, 'have': 1.0, 'snug': 1.0, '4': 1.0, 'i': 3.0, 'the': 6.0, 'adjustment': 1.0, 'too': 1.0, 'and': 4.0, 'done': 1.0, 'protected': 1.0, 'get': 1.0, 'easy': 1.0, 'with': 1.0, 'it': 4.0, 'kids': 1.0, 'this': 1.0, 'more': 1.0, 'is': 3.0, 'was': 1.0, 'did': 1.0, 'are': 1.0, 'strap': 1.0, 'britax': 1.0, 'for': 1.0, 'love': 2.0, 'tight': 1.0, 'car': 2.0, 'portion': 1.0, 'every': 1.0, 'so': 1.0, 'penny': 1.0, 'system': 1.0, 'fireman': 1.0, 'then': 1.0, 'far': 1.0, 'secure': 1.0, 'to': 1.0, 'seat': 3.0, 'any': 1.0, 'worth': 1.0, 'latch': 1.0, 'or': 2.0, '2': 1.0, 'shoulder': 1.0, 'install': 1.0, 'legs': 1.0, 'cover': 1.0, 'a': 3.0, 'hot': 1.0, 'has': 2.0, 'days': 1.0, 'ever': 1.0, 'pinching': 1.0, 'even': 1.0, 'genius': 1.0, 'protective': 1.0, 'on': 2.0, 'buckle': 1.0}
Word element => {'he': 1.0, 'comfy': 1.0, 'very': 1.0, 'says': 1.0, 'old': 1.0, 'year': 1.0, 'well': 1.0, 'regret': 1.0, 'only': 1.0, 'enough': 1.0, 'sit': 1.0, 'husband': 1.0, 'of': 1.0, 'glad': 1.0, 'so': 1.0, 'am': 1.0, 'i': 1.0, 'at': 1.0, 'loves': 1.0, 'that': 1.0, 'from': 1.0, 'movement': 1.0, 'there': 1.0, 'solid': 1.0, 'and': 4.0, 'rx350': 1.0, 'are': 1.0, 'britax': 1.0, 'convertible': 1.0, 'get': 3.0, 'thing': 1.0, 'heavy': 1.0, 'the': 6.0, 'car': 3.0, 'booster': 1.0, 'twice': 1.0, 'click': 1.0, 'is': 6.0, 'sooner': 1.0, 'longer': 1.0, 'big': 1.0, 'install': 1.0, 'over': 1.0, 'don': 1.0, 'holders': 1.0, 'this': 3.0, 'it': 7.0, 'buying': 1.0, 'with': 1.0, 'me': 3.0, 'not': 3.0, 'wrong': 1.0, 'having': 1.0, 'than': 1.0, 'probably': 1.0, 'system': 1.0, 'cup': 1.0, 'worth': 2.0, 't': 1.0, 'a': 1.0, 's': 2.0, 'weight': 1.0, 'in': 3.0, 'days': 1.0, 'gold': 1.0, 'did': 1.0, 'rock': 1.0, 'took': 1.0, 'all': 1.0, 'any': 1.0, 'our': 2.0, 'as': 2.0, 'seat': 5.0, 'to': 4.0, 'other': 1.0, 'out': 1.0, 'money': 1.0, 'but': 1.0, 'shoulder': 1.0, 'amazing': 1.0, '2008': 1.0, 'beast': 1.0, 'belt': 1.0, 'tight': 2.0, 'my': 4.0, 'dual': 1.0, '3': 1.0, 'lexus': 1.0}
Word element => {'are': 1.0, 'smaller': 1.0, 'his': 1.0, 'after': 1.0, 'other': 1.0, 'we': 2.0, 'pleased': 1.0, '3': 1.0, 'larger': 1.0, 'for': 2.0, 'got': 1.0, 'use': 1.0, 'might': 1.0, 'outgrew': 1.0, '5': 1.0, 'growing': 1.0, 'of': 1.0, 'has': 1.0, 'lots': 1.0, 'nice': 1.0, 'room': 1.0, 'is': 1.0, 'the': 1.0, '2': 2.0, 'that': 1.0, 'harness': 1.0, 'would': 2.0, 'seat': 3.0, 'not': 2.0, 'face': 1.0, 'very': 1.0, 'year': 4.0, 'in': 2.0, 'i': 3.0, 'old': 4.0, 'he': 1.0, 'this': 2.0, 'it': 1.0, 'a': 6.0, 'since': 1.0, 'put': 1.0, 'forward': 1.0}
Word element => {'a': 1.0, 'him': 1.0, 'having': 1.0, 'ease': 1.0, 'at': 1.0, 'feel': 1.0, 'britax': 1.0, 'i': 1.0, 'excellent': 1.0, 'car': 1.0, 'seat': 1.0, 'easy': 1.0, 'to': 1.0, 'install': 1.0, 'and': 1.0, 'my': 1.0, 'seems': 1.0, 'boy': 1.0, 'comfortable': 1.0, 'in': 1.0, 'for': 1.0}
Word element => {'graco': 1.0, 'getting': 1.0, 'marathon': 1.0, 'had': 1.0, 'what': 1.0, 'out': 1.0, 'cannot': 1.0, 'with': 1.0, 'forth': 1.0, 'back': 1.0, 'gone': 1.0, 've': 1.0, 'section': 1.0, 'questions': 1.0, 'see': 1.0, 'people': 1.0, 'other': 1.0, 'child': 1.0, 'my': 1.0, 'while': 1.0, 'straps': 1.0, 'instead': 1.0, 'impossible': 1.0, 'even': 1.0, 'now': 1.0, 'this': 2.0, 'recline': 1.0, 'doesn': 1.0, 'backseat': 1.0, 'mailed': 1.0, 'e': 1.0, 'that': 2.0, 'i': 2.0, 'daughter': 1.0, 'suggested': 1.0, 'm': 1.0, 'for': 1.0, 'where': 1.0, 'difficult': 1.0, 'having': 1.0, 'because': 1.0, 'wrong': 1.0, 'not': 1.0, 'they': 2.0, 'slightly': 1.0, 'are': 2.0, 'strap': 2.0, 'britax': 3.0, 'called': 1.0, 'more': 1.0, 'is': 6.0, 'the': 11.0, 'in': 2.0, 'it': 3.0, 'and': 5.0, 'empty': 1.0, 'do': 1.0, 'tightens': 1.0, 'figure': 1.0, 'very': 1.0, 'problem': 1.0, 'tried': 1.0, 'tighten': 2.0, 'our': 1.0, 'seat': 7.0, 'to': 2.0, 'loved': 1.0, 'reclining': 1.0, 'before': 2.0, 'installing': 1.0, 'car': 3.0, 'have': 2.0, 't': 1.0, 'could': 1.0, 'we': 5.0, 'a': 3.0, 'sure': 1.0, 'mini': 1.0, 'van': 1.0, 'sitting': 1.0, 'but': 1.0, 'how': 1.0, 'when': 2.0, 'easily': 1.0, 'you': 2.0, 'same': 1.0, 'if': 1.0}
Word element => {'other': 1.0, 'their': 1.0, 'for': 1.0, 'one': 1.0, 'britax': 1.0, 'i': 1.0, 'have': 1.0, 'car': 1.0, 'and': 3.0, 'sons': 1.0, 'is': 2.0, 'many': 1.0, 'toys': 1.0, 'favorite': 1.0, 'my': 2.0, 'cup': 1.0, 'this': 1.0, 'it': 2.0, 'easy': 1.0, 'holders': 1.0, 'use': 1.0, 'collect': 1.0, 'to': 2.0, 'seats': 1.0, 'install': 1.0, 'they': 1.0, 'has': 1.0, 'adjust': 1.0, 'treasures': 1.0, 'which': 1.0}
Word element => {'snap': 1.0, 'with': 1.0, 'issues': 1.0, 'has': 1.0, 'there': 1.0, 'person': 1.0, 'must': 1.0, 'just': 1.0, 'but': 1.0, 'ect': 1.0, 'look': 1.0, 'that': 1.0, 'love': 1.0, 'an': 1.0, 'move': 1.0, 'be': 1.0, 'trying': 2.0, 'way': 2.0, 'and': 2.0, 'inch': 1.0, 'getting': 2.0, 'tube': 1.0, 'in': 2.0, 'of': 2.0, 'figure': 1.0, 'searching': 1.0, 'reviews': 2.0, 'i': 8.0, 'so': 1.0, 'after': 2.0, 'it': 3.0, 'moving': 1.0, 'was': 2.0, 'get': 1.0, 'easy': 1.0, 'able': 1.0, 'still': 1.0, 'test': 1.0, 'feel': 1.0, 'excited': 1.0, 'install': 1.0, 'out': 3.0, 'them': 1.0, 'the': 7.0, 'what': 1.0, 'does': 1.0, 'this': 1.0, 'doing': 1.0, 'latch': 1.0, 'aspect': 1.0, 'anchors': 1.0, 'lower': 2.0, 'latches': 1.0, 'to': 6.0, 'all': 1.0, 'seat': 1.0, 'style': 1.0, 'wrong': 1.0, 'not': 2.0, 'who': 1.0, 'keep': 1.0, 'you': 1.0, 'am': 2.0, 'when': 1.0, 'shut': 2.0, 'only': 1.0, 'try': 1.0, 'much': 1.0, 'around': 1.0, 'click': 1.0}
Word element => {'sure': 1.0, 'easier': 1.0, 'else': 1.0, 'something': 1.0, 'but': 1.0, 'preschool': 1.0, 'take': 1.0, 'one': 1.0, 'getting': 1.0, 'will': 1.0, 'don': 1.0, 'great': 1.0, 'better': 1.0, 'that': 2.0, 'friendly': 1.0, 'now': 1.0, 'took': 1.0, 'straps': 1.0, 'with': 1.0, 'happy': 1.0, 'directions': 2.0, 'after': 2.0, 'and': 3.0, 'the': 4.0, 'grandparent': 1.0, '32': 1.0, 'graco': 1.0, 'out': 2.0, 'not': 3.0, 'installed': 1.0, 'because': 1.0, 'just': 1.0, 'was': 3.0, 'twisted': 1.0, 'had': 1.0, 'our': 1.0, 'all': 1.0, 'seat': 2.0, 'to': 4.0, 'husband': 1.0, 'might': 1.0, 't': 1.0, 'a': 4.0, 'we': 3.0, 'got': 1.0, 'this': 2.0, 'he': 3.0, 'works': 1.0, 'only': 1.0, 'it': 5.0, 'first': 1.0, 'reading': 2.0, 'which': 2.0, 'for': 2.0, 'yet': 1.0, 'son': 1.0, 'belted': 1.0, 'my': 2.0, 'were': 2.0, 'high': 1.0, 'of': 1.0, 'growing': 1.0, 'sitter': 1.0, 'hurry': 1.0, 'his': 2.0, 'ready': 1.0, 'think': 1.0, 'put': 2.0, 'redid': 1.0, 'back': 1.0, 'be': 2.0, 'him': 2.0, 'weight': 1.0, 'in': 4.0, 'booster': 1.0, 'at': 1.0, 'due': 1.0, 'is': 3.0, 'am': 1.0, 'again': 1.0, 'lbs': 1.0, 'i': 2.0, 'sport': 1.0, '4': 1.0, 'bit': 1.0, 'time': 1.0}
Word element => {'project': 1.0, 'making': 1.0, 'liking': 1.0, 'sowed': 1.0, 'was': 1.0, 'thinks': 1.0, 'wife': 1.0, 'fingers': 1.0, 'loosen': 1.0, 'button': 1.0, 'reviewer': 1.0, 'easier': 1.0, 'up': 1.0, 'set': 1.0, 'usa': 1.0, 'looking': 1.0, 'models': 1.0, 'compromise': 1.0, 'like': 2.0, 'get': 1.0, 'difficult': 3.0, 'make': 2.0, 'reach': 1.0, 'than': 2.0, 'long': 1.0, 'on': 2.0, 'should': 1.0, 'speculating': 1.0, 'shut': 1.0, 'these': 1.0, 'each': 1.0, 'going': 1.0, 'it': 10.0, 'can': 1.0, 'so': 2.0, 'between': 1.0, 'large': 2.0, 'those': 1.0, 'works': 1.0, 'agree': 1.0, 'option': 1.0, 'company': 1.0, 'only': 1.0, 'facing': 1.0, 'work': 2.0, 'thing': 2.0, 'same': 1.0, 'fact': 1.0, 'number': 2.0, 'space': 1.0, 'straps': 1.0, 'add': 1.0, 'looks': 1.0, 'my': 1.0, 'may': 3.0, 'for': 1.0, 'they': 1.0, 'sowing': 1.0, 'larger': 1.0, 'there': 3.0, 'with': 3.0, 'kids': 2.0, 'easy': 3.0, 'found': 1.0, 'holders': 1.0, 'this': 3.0, 'little': 1.0, 'nice': 2.0, 'two': 5.0, 'pointed': 1.0, 'i': 8.0, 'you': 2.0, 'am': 2.0, 'if': 2.0, 'very': 2.0, 'being': 3.0, 'have': 11.0, 'just': 4.0, 'seats': 5.0, 'or': 1.0, '29': 1.0, 'and': 5.0, 'not': 9.0, 'to': 14.0, 'as': 4.0, 'even': 2.0, 'brands': 1.0, '1': 1.0, 'find': 1.0, 'cup': 1.0, 'but': 7.0, 'child': 1.0, 'toddler': 4.0, 'height': 1.0, 'again': 1.0, 'car': 5.0, 'several': 1.0, 'x': 6.0, 'tried': 2.0, 'of': 6.0, 'the': 27.0, 'more': 4.0, 'look': 1.0, 'is': 14.0, 'say': 2.0, 'fit': 1.0, 't': 3.0, 'we': 4.0, 'small': 1.0, 'a': 11.0, 'will': 2.0, 'could': 1.0, 'arm': 2.0, 'out': 4.0, 'her': 1.0, 'smaller': 2.0, 'she': 1.0, 'baby': 5.0, 'has': 1.0, 'next': 3.0, 'them': 2.0, 'isn': 2.0, 'don': 1.0, 'size': 3.0, 'compare': 1.0, 'moderate': 1.0, 'desirable': 1.0, 'made': 1.0, 'good': 1.0, 'which': 2.0, '17': 1.0, 'numbers': 1.0, 'flap': 1.0, 'any': 2.0, 'armrests': 2.0, 'probably': 1.0, 'your': 2.0, 'would': 2.0, 'plans': 1.0, 'seat': 11.0, 'in': 5.0, 'diono': 3.0, 'largest': 2.0, 'does': 1.0, 'nor': 1.0, 'release': 1.0, 'smallest': 2.0, 'britax': 6.0, 'are': 4.0, 'described': 3.0, 'rests': 2.0, 'here': 1.0, 'be': 3.0, 'our': 1.0, 'how': 1.0, '36': 1.0, 'too': 1.0, 'rear': 1.0, 'lot': 1.0, 'ones': 2.0, 'one': 1.0, 'selling': 1.0, 'graco': 5.0, 'that': 8.0, '20': 1.0, '28': 2.0, '5': 1.0, 'do': 2.0, '16': 1.0, '21': 1.0, '19': 1.0, 'sure': 1.0, 'all': 1.0, 'other': 5.0, 'referring': 1.0}
Word element => {'comfortable': 1.0, 'more': 1.0, 'high': 1.0, 'before': 1.0, 'daughter': 1.0, 'for': 1.0, 'had': 1.0, 'in': 1.0, 'size': 1.0, 'quality': 1.0, 'very': 1.0, 'seats': 1.0, 'and': 1.0, 'way': 1.0, 'our': 1.0, 'better': 1.0, 'functionality': 1.0, 'we': 1.0, 'perfect': 1.0, 'than': 1.0, 'cheaper': 1.0}
Word element => {'this': 1.0, 'though': 1.0, 'returns': 1.0, 'was': 2.0, 'free': 1.0, 'for': 1.0, 'love': 1.0, 'it': 2.0, 'currently': 1.0, 'next': 1.0, 'that': 2.0, 'i': 6.0, 'britax': 1.0, 'up': 1.0, '6': 1.0, 'because': 1.0, 'to': 2.0, 'seat': 2.0, 'one': 1.0, 'huge': 1.0, 'have': 2.0, 'fingers': 1.0, 'size': 1.0, 'bad': 1.0, 'stupid': 1.0, 'latch': 1.0, 'the': 5.0, 'reach': 1.0, 'ready': 1.0, 'loosen': 1.0, 'inside': 1.0, 'but': 1.0, 'harness': 1.0, 'is': 1.0, 'amazon': 1.0, 'return': 1.0, 'way': 1.0, 'and': 2.0, 'too': 2.0, 'far': 1.0, 'glad': 1.0, 'am': 1.0, 'on': 1.0, '3': 1.0, 'a': 1.0, 'could': 1.0, 'hardly': 1.0, 'had': 2.0, 'what': 1.0, 'design': 1.0}
Word element => {'quickly': 1.0, 'so': 1.0, 'good': 1.0, 'a': 1.0, 'makes': 1.0, 'love': 1.0, 'can': 1.0, 'this': 1.0, 'it': 2.0, 'moving': 1.0, 'to': 1.0, 'easy': 2.0, 'how': 1.0, 'seat': 1.0, 'around': 1.0, 'of': 1.0, 'is': 1.0, 'car': 1.0, 'knowing': 1.0, 'install': 2.0, 'seats': 1.0, 'get': 1.0, 'and': 1.0, 's': 1.0, 'piece': 1.0, 'mind': 1.0, 'i': 1.0}
Word element => {'safest': 1.0, 'in': 1.0, 'knowing': 1.0, 'feel': 1.0, 'i': 1.0, 'technology': 1.0, 'click': 1.0, 'easy': 1.0, 'and': 1.0, 'the': 3.0, 'seat': 1.0, 'boys': 2.0, 'amazin': 1.0, 'a': 1.0, 'to': 2.0, 'now': 1.0, 'is': 3.0, 'tight': 1.0, 'for': 2.0, 'used': 1.0, 'extremely': 1.0, 'exclusively': 1.0, 'install': 1.0, 'seats': 2.0, 'up': 1.0, 'britax': 3.0, 'name': 1.0, 'have': 1.0, 'with': 1.0, 'this': 1.0, 'lives': 1.0, 'we': 2.0, 'possible': 1.0, 'are': 1.0, 'continued': 1.0, 'our': 4.0, 'that': 2.0, 'oldest': 1.0, 'very': 1.0, 'big': 1.0, 'new': 1.0, 'tradition': 1.0, 'enough': 1.0, 'safe': 1.0, 'two': 1.0, 'booster': 1.0, 'naturaly': 1.0}
Word element => {'compete': 1.0, 'special': 1.0, 'height': 2.0, 'another': 1.0, 'doesn': 1.0, 'it': 2.0, 'with': 2.0, 'do': 1.0, 'and': 1.0, 'show': 1.0, 'easy': 1.0, 'you': 1.0, 'that': 3.0, 'thing': 1.0, 'have': 1.0, 't': 2.0, 'the': 5.0, 'require': 1.0, 'is': 2.0, 'many': 1.0, 'videos': 1.0, 'they': 1.0, 'how': 1.0, 'adjust': 1.0, 'install': 2.0, 'installed': 1.0, 'seats': 1.0, 'easiest': 1.0, 'online': 1.0, 'knowledge': 1.0, 'by': 1.0, 'i': 3.0, 'super': 1.0, 've': 1.0, 'car': 1.0, 'far': 1.0, 'haven': 1.0, 'love': 1.0, 'of': 2.0, 'can': 1.0, 'but': 1.0, 'shoulder': 1.0, 'straps': 1.0, 'this': 3.0, 'found': 1.0, 'backrest': 1.0, 'any': 1.0, 'to': 3.0, 'seat': 1.0}
Word element => {'boulevard': 1.0, 'britax': 1.0, 'daughter': 1.0, 'installation': 1.0, 'secure': 1.0, 'heavy': 1.0, 'my': 1.0, 'very': 1.0, 'easy': 1.0, 'than': 1.0, 'loves': 1.0, 'seat': 1.0, 'love': 1.0, 'this': 1.0, 'it': 3.0, 'i': 1.0, 'our': 1.0, 'that': 1.0, 'said': 1.0, 'is': 2.0, 'and': 3.0, 'deceptively': 1.0, 'large': 1.0, 'both': 1.0, 'wider': 1.0, 'heavier': 1.0}
Word element => {'5': 1.0, 'be': 1.0, 'star': 1.0, 'if': 1.0, 'piece': 1.0, 'with': 1.0, 'happy': 1.0, 'd': 1.0, 'm': 1.0, 'than': 1.0, 'really': 1.0, 'have': 2.0, 'soo': 1.0, 'release': 1.0, 'button': 3.0, 'beef': 1.0, 'convertible': 1.0, 'only': 2.0, 'do': 2.0, 'fingers': 1.0, 'forward': 1.0, 'straps': 1.0, 'way': 1.0, 'far': 3.0, 'falling': 1.0, 'seat': 1.0, 'all': 1.0, 'to': 7.0, 'was': 1.0, 'from': 1.0, 'hard': 1.0, 'get': 1.0, 'easy': 1.0, 'he': 4.0, 'how': 1.0, '50th': 1.0, 'is': 3.0, 'think': 1.0, 'on': 1.0, 'reach': 1.0, 'asleep': 1.0, 'the': 8.0, 'so': 2.0, 'old': 1.0, 'one': 1.0, 'product': 1.0, 'for': 2.0, 'my': 3.0, 'who': 1.0, 'average': 1.0, 'used': 1.0, 'set': 1.0, 'up': 2.0, 'can': 1.0, 'like': 1.0, 'comment': 1.0, 'length': 1.0, 'in': 7.0, 'cupholders': 1.0, 'also': 1.0, 'car': 2.0, 'a': 1.0, 'could': 1.0, 't': 1.0, 's': 2.0, 'that': 4.0, 'loves': 1.0, 'half': 1.0, 'roomy': 1.0, 'percentile': 1.0, 'height': 1.0, 'rest': 1.0, 'other': 1.0, '40th': 1.0, 'weight': 1.0, 'it': 5.0, 'fell': 1.0, 'and': 2.0, 'husband': 1.0, 'head': 2.0, 'install': 1.0, 'seemed': 1.0, '4': 2.0, 'i': 6.0, 'prop': 1.0, 'almost': 1.0, 'year': 1.0, 'his': 2.0}
Word element => {'would': 1.0, 'but': 1.0, 'star': 1.0, '5': 1.0, 'preventing': 1.0, 'issues': 1.0, 'minor': 1.0, 'use': 1.0, 'hard': 1.0, 'straps': 1.0, 'cord': 1.0, 'rating': 1.0, 'other': 1.0, 'after': 1.0, 'out': 1.0, 'figured': 1.0, 'enough': 1.0, 'think': 1.0, 'and': 3.0, 'issue': 2.0, 'get': 2.0, 'cup': 1.0, 'awhile': 1.0, 'difficult': 1.0, 'of': 1.0, 'daughter': 1.0, 'comfort': 1.0, 'great': 1.0, 'holders': 1.0, 'this': 1.0, 'only': 1.0, 'with': 1.0, 'first': 1.0, 'product': 1.0, 'previously': 1.0, 'is': 4.0, 'second': 1.0, 'advocate': 1.0, 'i': 2.0, 'a': 3.0, 'we': 3.0, 'used': 1.0, 'both': 1.0, 'britax': 2.0, 'are': 1.0, 'had': 1.0, 'recommend': 1.0, 'was': 2.0, 'seat': 2.0, 'our': 1.0, 'to': 5.0, 'loves': 1.0, 'installation': 1.0, 'at': 1.0, 'seatblet': 1.0, 'in': 1.0, 'right': 1.0, 'tighten': 1.0, 'click': 1.0, 'it': 3.0, 'seatbelt': 1.0, 'the': 11.0, 'place': 1.0, 'able': 1.0, 'definitely': 1.0, 'close': 1.0, 'my': 1.0, 'tight': 2.0}
Word element => {'britax': 1.0, 'loves': 1.0, 'sitting': 1.0, 'install': 1.0, 'easy': 1.0, 'some': 1.0, 'than': 1.0, 'heavier': 1.0, 'is': 3.0, 'although': 1.0, 'best': 1.0, 'day': 2.0, 'ordered': 1.0, 'find': 1.0, 't': 1.0, 'the': 3.0, 'because': 1.0, '1st': 1.0, 'chair': 2.0, 'delivery': 1.0, 'and': 2.0, 'couldn': 1.0, 'granddaughter': 1.0, 'to': 1.0, 'was': 1.0, 'i': 4.0, 'any': 1.0, 'a': 1.0, 'local': 1.0, 'my': 1.0, 'stores': 1.0, 'so': 1.0, 'in': 2.0, 'disappointed': 1.0, 'next': 2.0, 'graco': 2.0, 'returned': 1.0, 'this': 2.0, 'bouthgt': 1.0, 'with': 2.0, 'it': 4.0}
Word element => {'issue': 1.0, 'no': 1.0, 'of': 1.0, 'them': 1.0, 'sides': 1.0, 'way': 1.0, 'straps': 1.0, 'keep': 2.0, 'make': 1.0, 'others': 1.0, 'with': 1.0, 'booster': 1.0, 'cargo': 1.0, 'out': 1.0, 'keeping': 1.0, 'limit': 1.0, 'height': 1.0, 'like': 1.0, 'forward': 1.0, 'boosters': 1.0, 'than': 3.0, 'weight': 1.0, 'goes': 1.0, 'headrest': 1.0, 'over': 2.0, 'sturdy': 1.0, 'a': 1.0, 's': 2.0, 'diono': 1.0, 'recaro': 1.0, 'outgrow': 1.0, 'in': 2.0, 'its': 1.0, 'grow': 1.0, 'to': 6.0, 'so': 1.0, 'car': 1.0, 'll': 1.0, 'longer': 1.0, 'grandmas': 1.0, 'and': 5.0, 'the': 6.0, 'heavy': 1.0, 'new': 1.0, 'weeds': 1.0, 'enough': 1.0, 'more': 1.0, 'is': 3.0, 'want': 1.0, 'faster': 1.0, 'click': 2.0, 'important': 1.0, 'right': 1.0, 'often': 1.0, 'my': 3.0, 'tight': 2.0, 'love': 1.0, 'for': 2.0, 'one': 1.0, 'closing': 1.0, 'easy': 1.0, 'get': 1.0, 'sure': 2.0, 'i': 1.0, 'small': 1.0, 'have': 2.0, 'other': 1.0, 'making': 1.0, 'not': 1.0, 'move': 1.0, 'use': 2.0, 'secure': 1.0, 'shoulder': 1.0, 'but': 1.0, 'work': 1.0, 'latch': 1.0, 'you': 3.0, 'when': 2.0, 'between': 1.0, 'they': 2.0, 'install': 1.0, 'great': 2.0, 'big': 1.0, 'full': 1.0, 'kids': 1.0, 'this': 3.0, 'precious': 1.0, 'higher': 1.0, 'seatbelt': 1.0, 'it': 2.0, 'yes': 2.0, 'are': 1.0, 'carseat': 1.0, 'armrests': 2.0, 'little': 1.0}
Word element => {'would': 1.0, 'i': 1.0, 'the': 1.0, 'only': 1.0, 'very': 2.0, 'easy': 1.0, 'to': 1.0, 'heavy': 1.0, 'downside': 1.0, 'install': 1.0, 'recommend': 1.0, 'has': 1.0, 'height': 1.0, 'it': 3.0, 'great': 1.0, 'harness': 1.0, 'is': 2.0}
Word element => {'otherwise': 1.0, 'but': 1.0, 'issue': 1.0, 'competitor': 1.0, 'close': 1.0, 'extra': 1.0, 'worth': 1.0, 'graco': 1.0, 'if': 2.0, 'price': 1.0, 'amazon': 1.0, 'with': 1.0, 'adore': 1.0, 'inside': 1.0, 'enough': 1.0, 'barely': 1.0, 'hands': 1.0, 'hard': 1.0, 'strap': 1.0, 'kind': 1.0, 'loosen': 1.0, 'hole': 1.0, 'ready': 1.0, 'me': 1.0, 'my': 3.0, 'last': 2.0, 'should': 1.0, 'really': 1.0, 'facing': 1.0, 'happier': 1.0, 'business': 1.0, 'under': 1.0, 'saying': 1.0, 'out': 1.0, 'leading': 1.0, 'that': 3.0, 'adjustment': 1.0, 'debating': 1.0, '2': 2.0, 'age': 1.0, 'else': 1.0, 'everything': 1.0, 'manual': 1.0, 'guessing': 1.0, 'lever': 1.0, 're': 2.0, 'tests': 1.0, 'although': 2.0, 'protection': 1.0, 'impact': 1.0, 'likely': 1.0, 'getting': 2.0, 'long': 1.0, 'on': 2.0, 'doesn': 2.0, 'we': 1.0, 'then': 4.0, 'would': 1.0, 'tight': 3.0, 'need': 1.0, 'or': 2.0, 'frontier': 1.0, 'into': 2.0, 'have': 5.0, 'once': 1.0, 'easy': 2.0, 'do': 2.0, 'harness': 5.0, 'and': 11.0, 'simple': 2.0, 'done': 1.0, 'be': 4.0, 'sticking': 1.0, 'will': 1.0, 'could': 2.0, 'small': 1.0, 'a': 6.0, 's': 2.0, 'engineering': 1.0, 'does': 1.0, '90': 1.0, 'reach': 1.0, 'way': 1.0, 'than': 1.0, 'forward': 2.0, 'not': 2.0, 'pretty': 1.0, 'to': 13.0, 'tether': 1.0, 'better': 1.0, 'example': 1.0, 'sturdy': 1.0, 'crotch': 1.0, 'seriously': 1.0, 'son': 1.0, 'flat': 1.0, 'height': 2.0, 'thick': 1.0, 'alonewhat': 1.0, 'him': 1.0, 'it': 11.0, 'this': 7.0, 'you': 5.0, 'push': 1.0, 'britax': 2.0, 'are': 2.0, 'up': 1.0, 'less': 1.0, 'takes': 1.0, 'nautilus': 3.0, 'at': 1.0, 'is': 12.0, 'more': 1.0, 'acceptable': 1.0, 'adjuster': 1.0, 'down': 1.0, 'prefer': 1.0, 'read': 1.0, 'very': 2.0, 'argos': 2.0, 'rethread': 2.0, 'moment': 1.0, 'about': 4.0, 'no': 5.0, 'actually': 2.0, 'for': 5.0, 'solid': 1.0, 'he': 1.0, 'love': 3.0, 'extremely': 2.0, 'how': 1.0, 'install': 2.0, 'option': 1.0, 'great': 3.0, 'padded': 1.0, 'little': 3.0, 'nice': 2.0, 'finger': 2.0, 'of': 2.0, 'longer': 1.0, 'the': 25.0, 'complete': 1.0, 'buy': 1.0, 'says': 1.0, 'flips': 1.0, 'straps': 1.0, 'tighten': 2.0, 'seat': 9.0, 'in': 4.0, 'doubt': 1.0, 'fiddle': 1.0, 'hope': 1.0, 'just': 3.0, 'between': 1.0, 'large': 1.0, 'all': 1.0, 'an': 2.0, 'buckle': 1.0, 'even': 1.0, 'feed': 1.0, 't': 5.0, 'belt': 2.0, 'fasten': 1.0, 'installation': 6.0, 'installed': 1.0, 'click': 2.0, 'top': 1.0, 'when': 2.0, 'sit': 2.0, 'what': 1.0, 'i': 8.0, 'well': 1.0, 'cover': 2.0, 'until': 1.0, 'seems': 1.0, 'climb': 2.0, 'off': 1.0, 'get': 1.0, 'cupholders': 1.0, 'through': 1.0, 'material': 1.0, 'feels': 1.0, 'wipe': 1.0, 'clean': 1.0, 'isn': 1.0, 'don': 2.0, 'substantial': 1.0, 'flop': 1.0, 'side': 2.0, 'solidly': 1.0, 'so': 3.0, 'your': 3.0, 'too': 2.0, 'ones': 1.0, 'one': 3.0}
Word element => {'rate': 1.0, 'carseats': 1.0, 'test': 1.0, 'ratings': 1.0, 'fan': 1.0, 'car': 1.0, 'purchased': 2.0, 'had': 1.0, '5': 2.0, 'give': 1.0, 'not': 1.0, 'lap': 2.0, 'said': 1.0, 'reason': 1.0, 'design': 1.0, 'frontier': 1.0, 'a': 6.0, 's': 2.0, 'we': 2.0, 'read': 1.0, 'she': 1.0, 'it': 6.0, 'rank': 1.0, 'after': 1.0, 'however': 2.0, 'went': 1.0, '85': 1.0, 'carseat': 1.0, 'i': 6.0, 'professionally': 1.0, 'boosters': 2.0, 'install': 1.0, 'great': 1.0, 'feel': 1.0, 'have': 2.0, 'sells': 1.0, 'stars': 1.0, 'actually': 1.0, 'love': 1.0, 'for': 3.0, 'was': 3.0, 'belt': 1.0, 'in': 4.0, 'seat': 4.0, 'as': 3.0, 'technology': 1.0, 'and': 2.0, 'too': 1.0, 'technician': 1.0, 'website': 1.0, 'easiest': 1.0, 'all': 1.0, 'ever': 1.0, 'institute': 1.0, 'this': 3.0, 'with': 1.0, 'tight': 1.0, 'of': 1.0, 'the': 12.0, 'convert': 1.0, 'booster': 3.0, 'still': 1.0, 'point': 1.0, 'did': 1.0, 'makes': 1.0, 'harness': 1.0, 'yourself': 1.0, 'change': 1.0, 'dropped': 1.0, 'armrest': 1.0, 'safety': 1.0, 'from': 1.0, 'to': 5.0, 'high': 1.0, 'on': 2.0, 'child': 1.0, 'anyway': 1.0, 'highway': 1.0, 'britax': 1.0, 'that': 1.0, 'because': 1.0, 'segureguard': 1.0, 'is': 1.0, 'clip': 2.0, 'sit': 1.0, 'when': 1.0, 'you': 1.0, 'something': 1.0, 'fix': 1.0, 'should': 1.0, 'please': 1.0, 'prevent': 1.0, 'which': 1.0, 'submarining': 1.0, 'check': 1.0, 'installation': 1.0, 'installed': 1.0, 'click': 1.0, 'insurance': 1.0, 'iihs': 1.0, 'they': 1.0}
Word element => {'fortune': 1.0, 'disappointed': 1.0, 'am': 1.0, 'adjust': 1.0, 'buckle': 1.0, 'did': 1.0, 'her': 1.0, 'easy': 1.0, 'get': 1.0, 'longer': 1.0, 'takes': 1.0, 'not': 1.0, 'me': 1.0, 'issue': 2.0, 'better': 1.0, 'much': 2.0, 'expected': 1.0, 'have': 2.0, 'would': 1.0, 'price': 1.0, 'out': 2.0, 'straightened': 1.0, 'them': 1.0, 'impossible': 1.0, 'constantly': 1.0, 'since': 2.0, 'keep': 1.0, 'flimsy': 1.0, 'they': 1.0, 'straps': 1.0, 'related': 1.0, 'problem': 1.0, 'very': 2.0, 'twist': 1.0, 'year': 2.0, 'second': 1.0, 'is': 7.0, 'now': 1.0, 'was': 2.0, 'that': 1.0, 'torso': 1.0, 'my': 3.0, 'cup': 1.0, 'old': 2.0, 'i': 5.0, '4': 2.0, 'for': 6.0, 'big': 1.0, 'feel': 1.0, 'comfortable': 1.0, 'used': 2.0, 'long': 1.0, 'being': 1.0, 'use': 1.0, 'radian': 2.0, 'costs': 1.0, 'harnessed': 1.0, 'she': 2.0, 'it': 4.0, 'and': 5.0, 'tall': 1.0, 'with': 2.0, 'convenient': 1.0, 'car': 4.0, 'looking': 1.0, 'daughter': 2.0, 'booster': 1.0, 'in': 2.0, 'which': 2.0, 'a': 6.0, 'could': 2.0, 'be': 1.0, 'time': 1.0, 'the': 7.0, 'height': 1.0, 'of': 3.0, 'to': 5.0, 'seat': 6.0, 'tallest': 1.0, 'are': 1.0, 'find': 1.0, 'this': 5.0, 'holders': 1.0, 'belts': 1.0, 'quite': 2.0}
Word element => {'of': 1.0, 'tightness': 1.0, 'long': 1.0, 'front': 1.0, 'metal': 1.0, 'point': 2.0, 'opening': 1.0, 'five': 2.0, 'inside': 1.0, 'loosen': 1.0, 'complaint': 1.0, 'harness': 1.0, 'only': 1.0, 'barely': 1.0, 'you': 1.0, 'easily': 1.0, 'for': 1.0, 'removes': 1.0, 'fingers': 1.0, 'bad': 1.0, 'not': 1.0, 'but': 1.0, 'close': 1.0, 'very': 1.0, 'little': 1.0, 'difficult': 2.0, 'under': 1.0, 'adjust': 1.0, 'washing': 1.0, 'flap': 2.0, 'adjustment': 1.0, 'there': 1.0, 'piece': 1.0, 'quick': 1.0, 'this': 1.0, 'it': 6.0, 'depress': 1.0, 'older': 1.0, 'breeze': 1.0, 'car': 2.0, 'a': 5.0, 'between': 1.0, 'connectors': 1.0, 'goes': 1.0, 'made': 1.0, 'reach': 1.0, 'the': 17.0, 'making': 1.0, 'adjustable': 1.0, 'in': 3.0, 'secure': 1.0, 'also': 3.0, 'are': 1.0, 'britax': 2.0, 'has': 1.0, 'vehicles': 1.0, 'is': 9.0, 'able': 1.0, 'have': 2.0, 'being': 1.0, 'hidden': 1.0, 'while': 1.0, 'seat': 5.0, 'to': 6.0, 'great': 1.0, 'install': 1.0, 'installed': 1.0, 'head': 1.0, 'rest': 1.0, 'height': 1.0, 'version': 1.0, 'using': 1.0, 'which': 2.0, 'bonus': 1.0, 'way': 1.0, 'i': 1.0, 'moving': 1.0, 'frontier': 1.0, '85': 1.0, 'my': 2.0, 'tightly': 1.0, 'another': 1.0, 'vehicle': 1.0, 'moved': 1.0, 'too': 1.0, 'and': 2.0, 'that': 4.0, 'belt': 4.0, 'routes': 1.0, 'an': 2.0, 'enough': 1.0, 'cover': 2.0, 'improvement': 1.0, 'over': 2.0}
Word element => {'out': 1.0, 'recline': 1.0, 'downside': 1.0, 'in': 2.0, 'so': 1.0, 'and': 3.0, '4': 1.0, 'i': 2.0, 'old': 1.0, 'figure': 1.0, 'is': 4.0, 'son': 1.0, 'weight': 1.0, 'years': 1.0, 'height': 1.0, 'comfortable': 1.0, 'love': 1.0, 'difficult': 1.0, 'seat': 1.0, 'only': 1.0, 'it': 2.0, 'this': 1.0, 'he': 1.0, 'to': 2.0, 'was': 1.0, 'easy': 1.0, 'install': 1.0, '99': 1.0, 'the': 2.0}
Word element => {'warranty': 1.0, 'under': 1.0, 'one': 1.0, 'send': 1.0, 'should': 1.0, 'they': 2.0, 'that': 1.0, 'but': 1.0, 'charges': 1.0, 'britax': 3.0, 'with': 1.0, 'fixed': 1.0, 'thighs': 1.0, 'hips': 1.0, 'his': 2.0, 'mode': 3.0, 'tummy': 1.0, 'takes': 1.0, 'up': 1.0, 'tell': 1.0, 'incredibly': 1.0, 'about': 1.0, 'thing': 1.0, '8': 1.0, 'give': 1.0, 'not': 3.0, 'only': 2.0, 'free': 1.0, 'older': 1.0, 'it': 3.0, 'and': 3.0, 'probably': 1.0, 'simple': 1.0, 'is': 6.0, 'in': 2.0, 'lap': 1.0, 'few': 1.0, 'bigger': 1.0, 'seconds': 1.0, 'yr': 1.0, 'booster': 3.0, 'the': 6.0, 'this': 3.0, 'perfect': 2.0, 'kids': 2.0, 'a': 1.0, 'going': 1.0, 'very': 1.0, 'install': 1.0, 'big': 1.0, 'against': 1.0, 'so': 1.0, 'problem': 1.0, 'correctly': 1.0, 'secureguard': 2.0, 'if': 2.0, 'you': 4.0, 'will': 2.0, 'put': 1.0, 'your': 1.0, '20': 1.0, '5': 1.0, 'old': 1.0, 'belt': 1.0, 'seat': 2.0, 'to': 2.0, 'for': 3.0, 'fit': 1.0, 'him': 1.0, 'be': 1.0}
Word element => {'sunglasses': 1.0, 'great': 1.0, 'install': 1.0, 'knew': 1.0, 'disappointed': 1.0, 'having': 1.0, 'with': 1.0, 'it': 1.0, 'he': 1.0, 'easy': 1.0, 'just': 1.0, 'would': 1.0, 'has': 2.0, 'expected': 1.0, 'like': 1.0, 'videos': 1.0, 'one': 1.0, 'and': 3.0, 'to': 2.0, 'as': 1.0, 'son': 1.0, 'watch': 1.0, 'if': 1.0, 'loves': 1.0, 'installation': 1.0, 'you': 1.0, 'britax': 1.0, 'are': 1.0, 'trouble': 1.0, 'this': 1.0, 'weren': 1.0, 'carseats': 1.0, 'holders': 2.0, 'on': 1.0, 'put': 1.0, 'my': 1.0, 'cup': 1.0, 'snack': 1.0, 'previous': 1.0, 'even': 1.0, 'his': 1.0, 't': 1.0, 'we': 4.0, 'a': 1.0, 'the': 2.0, 'website': 1.0, 'place': 1.0, 'can': 1.0}
Word element => {'ease': 1.0, 'did': 1.0, 'happy': 1.0, 'still': 1.0, 'm': 1.0, 'and': 1.0, 'with': 1.0, 'convertible': 1.0, 'car': 1.0, 'infant': 1.0, 'britax': 1.0, 'a': 1.0, 'installation': 1.0, 'that': 2.0, 'there': 1.0, 'up': 1.0, 'of': 2.0, 'so': 2.0, 'base': 1.0, 'loved': 1.0, 'far': 1.0, 'tighten': 1.0, 'straps': 2.0, 'in': 1.0, 've': 1.0, 'love': 1.0, 'for': 2.0, 'latch': 1.0, 'is': 3.0, 'really': 2.0, '2': 2.0, 'found': 1.0, 'release': 1.0, 'this': 2.0, 'it': 1.0, 'hard': 1.0, 'because': 1.0, 'just': 1.0, 'the': 8.0, 'reach': 1.0, 'finger': 1.0, '1': 1.0, 'drawbacks': 1.0, 'seat': 5.0, 'to': 5.0, 'had': 1.0, 'i': 9.0, 'old': 1.0, 'have': 2.0, 'stayed': 1.0, 'stretch': 1.0, 'my': 2.0, 'pull': 1.0, 'year': 1.0, 'at': 1.0, 'start': 1.0, 'carrier': 1.0, 'allowed': 1.0, '3': 1.0, 'on': 2.0, 'height': 1.0, 'weight': 1.0, 'them': 2.0, 'enough': 1.0}
Word element => {'better': 1.0, 'a': 1.0, 'others': 1.0, 'and': 1.0, 'ratings': 1.0, 'yet': 1.0, 'for': 1.0, 'safety': 1.0, 'high': 1.0, 'the': 3.0, 'have': 2.0, 'it': 1.0, 'this': 1.0, 'we': 2.0, 'always': 1.0, 'britax': 1.0, 'of': 1.0, 'making': 1.0, 'seat': 1.0, 'then': 1.0, 'is': 1.0, 'chosen': 1.0, 'so': 1.0, 'much': 1.0, 'had': 1.0, 'to': 1.0, 'easier': 1.0, 'seats': 1.0, 'crash': 1.0, 'install': 1.0}
Word element => {'when': 1.0, 'one': 1.0, 'she': 1.0, 'narrow': 1.0, 'this': 2.0, 'we': 1.0, 'other': 1.0, '34': 2.0, 'easiest': 1.0, 'because': 1.0, 'is': 3.0, 'almost': 1.0, 'car': 1.0, 'but': 1.0, 'will': 1.0, 'need': 1.0, '31lbs': 1.0, 'since': 1.0, 'install': 2.0, 'base': 1.0, 'got': 1.0, 'so': 2.0, 'ever': 1.0, 'in': 1.0, 'diono': 1.0, 'another': 1.0, 'my': 2.0, 'seat': 1.0, 'to': 2.0, 'as': 1.0, 'and': 1.0, 'booster': 1.0, 'daughter': 1.0, '5': 1.0, 'son': 1.0, 'still': 1.0, 'uses': 1.0, 'the': 2.0, 'two': 1.0, 'i': 3.0, 'an': 2.0, 'own': 1.0, 'of': 1.0, 'radians': 1.0, 'which': 1.0, 'love': 1.0, 'purchasing': 1.0, 'harness': 1.0, 'much': 1.0, 'easier': 1.0, 'that': 1.0, 'operate': 1.0, 'be': 1.0}
Word element => {'so': 1.0, 'product': 1.0, 'loves': 1.0, 'sips': 1.0, 'i': 2.0, 'old': 1.0, 'purchased': 1.0, 'to': 1.0, 'threw': 1.0, 'years': 1.0, 'simply': 1.0, 'my': 1.0, 'these': 1.0, 'the': 2.0, 'do': 1.0, 'tot': 1.0, 'and': 3.0, 'out': 1.0, 'bottles': 1.0, 'this': 1.0, 'it': 1.0, 'he': 3.0, 'two': 1.0, 'no': 1.0, 'is': 1.0, 'longer': 1.0, 'lays': 1.0, 'milk': 1.0, 'down': 1.0, 'drink': 1.0}
Word element => {'dishwasher': 1.0, 'intact': 1.0, 'spout': 1.0, 'replacements': 1.0, 'of': 1.0, 'set': 1.0, 'is': 1.0, 'leaks': 1.0, 'second': 1.0, 'ordered': 1.0, 'just': 1.0, 'i': 1.0, 'my': 2.0, 'as': 2.0, 'chews': 1.0, 'hold': 1.0, 'handles': 1.0, 'long': 1.0, 'even': 1.0, 'but': 1.0, 'to': 1.0, 'through': 1.0, 'and': 2.0, 'without': 1.0, 'size': 1.0, 'washes': 1.0, 'daughter': 1.0, 'in': 2.0, 'loves': 1.0, 'the': 3.0, 'great': 2.0, 'these': 1.0, 'spouts': 1.0, 'them': 1.0, 'easy': 1.0, 'she': 1.0, 'no': 2.0, 'time': 1.0}
Word element => {'bit': 1.0, 'makes': 1.0, 'like': 1.0, 'up': 1.0, 'a': 4.0, 'child': 1.0, 'if': 1.0, 'transition': 1.0, 'feels': 1.0, 'have': 1.0, 'and': 2.0, 'giving': 1.0, 'easier': 1.0, 'that': 1.0, 's': 1.0, 'you': 1.0, 'little': 1.0, 'struggling': 1.0, 'bottle': 2.0, 'adjustment': 1.0, 'the': 2.0, 'great': 1.0, 'with': 1.0, 'this': 1.0, 'it': 1.0, 'container': 1.0, 'is': 1.0, 'looks': 1.0, 'almost': 1.0}
Word element => {'long': 1.0, 'cleaning': 1.0, '1': 1.0, 'and': 2.0, 'my': 1.0, 'the': 1.0, 'after': 1.0, 'seems': 1.0, 'last': 1.0, 'easy': 1.0, 'she': 2.0, 'daughter': 1.0, 'by': 1.0, 'be': 2.0, 'to': 2.0, 'turned': 1.0, 'removed': 1.0, 'just': 1.0, 'but': 1.0, 'loves': 1.0, 'it': 2.0, 'can': 1.0, 'bothered': 1.0, 'switched': 1.0, 'handle': 1.0, 'nuk': 1.0, 'easily': 1.0}
Word element => {'convenient': 1.0, 'are': 1.0, 'handles': 1.0, 'ever': 1.0, 'the': 1.0, 't': 1.0, 'be': 1.0, 'right': 1.0, 'to': 1.0, 'was': 1.0, 'thought': 1.0, 'i': 1.0, 'daughters': 1.0, 'loves': 1.0, 'too': 2.0, 'going': 1.0, 'leak': 1.0, 'of': 1.0, 'my': 1.0, 'very': 1.0, 'picky': 1.0, 'it': 3.0, 'with': 1.0, 'different': 1.0, 'and': 1.0, 'away': 1.0, 'kinds': 1.0, 'she': 2.0, 'bottles': 1.0, 'likes': 1.0, 'but': 1.0, 'doesn': 1.0}
Word element => {'loves': 1.0, 'which': 1.0, 'water': 1.0, 'use': 1.0, 'we': 1.0, 'this': 2.0, 'on': 1.0, 'juice': 1.0, 'sippy': 2.0, 'bottles': 1.0, 'and': 2.0, 'pacifiers': 1.0, 'for': 2.0, 'love': 1.0, 'brand': 1.0, 'nuk': 2.0, 'since': 1.0, 'a': 3.0, 'son': 2.0, 'cups': 1.0, 'is': 1.0, 'fan': 1.0, 'handles': 1.0, 'been': 1.0, 'of': 1.0, 'cup': 1.0, 'my': 2.0, 'great': 1.0, 'such': 1.0, 'the': 1.0, 'was': 1.0, 'newborn': 1.0}
Word element => {'tried': 1.0, 'have': 1.0, 'that': 2.0, 'clean': 2.0, 'hassle': 1.0, 'we': 1.0, 'a': 1.0, 'do': 1.0, 'and': 1.0, 'was': 1.0, 'like': 1.0, 'which': 1.0, 'easy': 1.0, 'i': 2.0, 'the': 2.0, 'my': 2.0, 'bottles': 1.0, 'cup': 3.0, 'this': 3.0, 'it': 3.0, 'be': 1.0, 'bought': 1.0, 'transition': 1.0, 'son': 2.0, 'from': 1.0, 'very': 1.0, 'dr': 1.0, 'leaked': 1.0, 'has': 3.0, 'many': 1.0, 'is': 1.0, 'measure': 1.0, 'three': 1.0, 'formula': 1.0, 'tummy': 1.0, 'not': 2.0, 'getting': 1.0, 'caused': 1.0, 'markings': 1.0, 'prefers': 1.0, 'to': 5.0, 'as': 1.0, 'cups': 2.0, 'any': 1.0, 'aches': 1.0, 'never': 1.0, 'browns': 1.0, 'over': 1.0, 'other': 1.0, 'sippy': 1.0}
Word element => {'a': 1.0, 'there': 1.0, 'i': 1.0, 'is': 1.0, 'until': 1.0, 'coming': 1.0, 'hole': 1.0, 'my': 1.0, 'only': 1.0, 'comes': 1.0, 'and': 2.0, 'was': 1.0, 'grandaughter': 1.0, 'tiny': 1.0, 'to': 1.0, 'looked': 1.0, 'out': 2.0, 'trying': 1.0, 'nothing': 2.0, 'drink': 1.0}
Word element => {'this': 1.0, 'loved': 1.0, 'suggested': 1.0, 'bottle': 1.0, 'i': 1.0, 'decided': 1.0, 'although': 1.0, 'to': 1.0, 'ped': 1.0, 'the': 1.0, 'my': 1.0, 'son': 1.0, 'as': 1.0, 'straw': 1.0, 'really': 1.0, 'he': 1.0, 'cup': 1.0, 'but': 1.0, 'give': 1.0, 'instead': 1.0}
Word element => {'cute': 1.0, 'super': 1.0, 'frog': 1.0, 'after': 1.0, 'on': 1.0, 'over': 1.0, 'cloud': 1.0, 'can': 1.0, 'and': 2.0, 'washes': 1.0, 'removable': 1.0, 'also': 1.0, 's': 1.0, 'well': 1.0, 'spout': 1.0, 'love': 1.0, 'straw': 1.0, 'handle': 1.0, 'side': 1.0, 'is': 2.0, 'washing': 1.0, 'converted': 1.0, 'that': 1.0, 'i': 1.0, 'be': 1.0, 'to': 1.0, 'nuk': 1.0, 'cup': 1.0, 'accessory': 1.0, 'didn': 1.0, 'the': 4.0, 't': 1.0}
Word element => {'amazon': 1.0, 'on': 1.0, 'found': 1.0, 'little': 1.0, 'every': 1.0, 'better': 1.0, 's': 1.0, '5': 1.0, 'than': 1.0, 'much': 1.0, 'store': 1.0, 'the': 1.0, 'my': 1.0, 'only': 1.0, 'it': 3.0, 'i': 3.0, 'and': 1.0, 'ounce': 2.0, 'son': 1.0, '10': 1.0, 'love': 1.0, 'one': 1.0, 'for': 2.0, 'in': 1.0, 'so': 1.0, 'kept': 1.0, 'a': 1.0, 'looking': 1.0}
Word element => {'leak': 1.0, 'don': 1.0, 'and': 1.0, 'months': 1.0, 'cups': 1.0, 's': 1.0, 'handles': 1.0, 'she': 1.0, 'bigger': 1.0, 'favorite': 1.0, 'at': 1.0, 'no': 1.0, 'holding': 1.0, 'my': 1.0, 'are': 2.0, '9': 1.0, 't': 1.0, 'the': 2.0, 'these': 1.0, 'they': 1.0, 'granddaughter': 1.0, 'had': 1.0, 'i': 1.0, 'like': 1.0, 'trouble': 1.0, 'fact': 1.0, 'that': 1.0}
Word element => {'take': 1.0, 'need': 1.0, 'still': 1.0, 'are': 1.0, 'like': 1.0, 'through': 1.0, 'go': 1.0, 'they': 2.0, 'twins': 1.0, 'bottle': 1.0, 'feeding': 1.0, 'were': 1.0, 'formula': 2.0, 'couple': 1.0, 'and': 2.0, 'my': 1.0, 'using': 1.0, 'for': 1.0, 'out': 1.0, 'it': 1.0, 'this': 1.0, 'grandsons': 1.0, 'used': 1.0, 'these': 2.0, 'worked': 1.0, 'really': 1.0, 'up': 1.0, 'of': 2.0, 'nap': 1.0, 'we': 3.0, 'a': 3.0, 'since': 1.0, 'well': 1.0, 'i': 1.0, 'whenever': 1.0, 'ended': 1.0, 'to': 1.0, 'buying': 1.0, 'several': 1.0, 'crazy': 1.0, 'bottles': 1.0}
Word element => {'less': 1.0, 'cost': 1.0, 'to': 2.0, 'bottle': 1.0, 'from': 1.0, 'wish': 1.0, 'grip': 1.0, 'spout': 1.0, 'bpa': 1.0, 'for': 1.0, 'dishwasher': 1.0, 'it': 1.0, 'transitioning': 1.0, 'this': 1.0, 'loves': 1.0, 'in': 1.0, 'perfect': 1.0, 'easy': 1.0, 'just': 1.0, 'baby': 1.0, 'cup': 2.0, 'my': 1.0, 'the': 1.0, 'sippy': 1.0, 'soft': 1.0, 'goes': 1.0, 'free': 1.0}
Word element => {'spill': 1.0, 'with': 1.0, 'maybe': 1.0, 'then': 1.0, 'faster': 1.0, 'in': 1.0, 'sell': 1.0, 'they': 1.0, 'to': 2.0, 'manages': 1.0, 'nipple': 2.0, 'but': 1.0, '2': 1.0, 'size': 1.0, 'uses': 1.0, 'daughter': 1.0, 'fast': 1.0, 'don': 1.0, 'bottles': 1.0, 'cup': 1.0, 'for': 1.0, 'love': 1.0, 'nice': 1.0, 'if': 1.0, '10': 1.0, 'and': 4.0, 'issue': 1.0, 'do': 2.0, 'however': 1.0, 'collapse': 1.0, 'handles': 4.0, 'get': 1.0, 'sure': 1.0, 'issues': 1.0, 'them': 2.0, 'sippy': 2.0, 'tippee': 1.0, 'old': 1.0, 'flows': 1.0, 'i': 6.0, 'you': 1.0, 'when': 1.0, 'detachable': 1.0, 'found': 1.0, 'this': 3.0, 'she': 1.0, 'month': 1.0, 'it': 5.0, 'using': 1.0, 'like': 1.0, 'on': 2.0, 'think': 1.0, 'make': 1.0, 'avent': 1.0, 'tight': 2.0, 'lid': 1.0, 'my': 2.0, 'flow': 1.0, 'thought': 1.0, 'had': 2.0, 'enough': 2.0, 'leaked': 1.0, 'proof': 1.0, 'keeping': 1.0, 'out': 1.0, 'no': 1.0, 'spilling': 1.0, 'still': 1.0, 'under': 1.0, 'the': 5.0, 'without': 1.0, 'has': 2.0, 'not': 2.0, 'tommee': 1.0, 'that': 2.0, 'loves': 1.0, 'been': 1.0, 'an': 1.0, 'a': 2.0, 't': 1.0, 'we': 1.0, 'also': 1.0, 'have': 2.0, 'from': 1.0, 'while': 1.0}
Word element => {'sun': 1.0, 'wind': 1.0, 'depending': 1.0, 'position': 1.0, 'strollers': 1.0, 'convertible': 1.0, 'seat': 1.0, 'to': 2.0, 'bar': 1.0, 'had': 1.0, 'was': 2.0, 'double': 2.0, 'that': 3.0, 'one': 1.0, 'love': 3.0, 'for': 1.0, 'it': 4.0, 'daily': 1.0, 'only': 1.0, 'on': 1.0, 'extend': 1.0, 'with': 1.0, 'day': 1.0, 'very': 1.0, 'stroller': 1.0, 'a': 3.0, 'city': 1.0, 'we': 1.0, 'walks': 1.0, 'change': 1.0, 'can': 3.0, 'but': 1.0, 'use': 1.0, 'convert': 1.0, 'purchase': 1.0, 'several': 1.0, 'thing': 1.0, 'and': 3.0, 'wished': 1.0, 'needed': 1.0, 'handle': 1.0, 'tilt': 1.0, 'like': 2.0, 'this': 2.0, 'wish': 1.0, 'the': 3.0, 'bit': 1.0, 'longer': 1.0, 'mini': 1.0, 'researching': 1.0, 'i': 7.0, 'otherwise': 1.0, 'when': 1.0, 'am': 1.0, 'canopy': 1.0, 'happy': 1.0, 'after': 1.0}
Word element => {'product': 1.0, 'recommend': 1.0, 'dim': 1.0, 'too': 1.0, 'to': 1.0, 'not': 2.0, 'is': 1.0, 'quality': 1.0, 'my': 1.0, 'great': 1.0, 'the': 2.0, 'are': 1.0, 'for': 1.0, 'gift': 1.0, 'bright': 1.0, 'a': 2.0, 'light': 2.0, 'sticker': 1.0, 'nephew': 1.0, 'has': 1.0, 'loves': 1.0, 'as': 1.0, 'and': 3.0, 'purchased': 1.0, 'i': 2.0, 'themed': 1.0, 'that': 1.0, 'car': 1.0, 'materials': 1.0, 'bedroom': 1.0, 'he': 1.0, 'this': 2.0, 'it': 1.0}
Word element => {'patrick': 1.0, 'on': 1.0, 's': 1.0, 'born': 1.0, 'sweet': 1.0, 'my': 1.0, 'for': 1.0, 'so': 1.0, 'slightly': 1.0, 'expected': 1.0, 'smaller': 1.0, 'niece': 1.0, 'beautiful': 1.0, 'i': 1.0, 'day': 1.0, 'saint': 1.0, 'just': 1.0, 'but': 1.0, 'than': 1.0, 'perfect': 1.0, 'still': 1.0}
Word element => {'child': 1.0, 'second': 1.0, 'others': 1.0, 'were': 2.0, 'ones': 1.0, 'their': 3.0, 'worth': 1.0, 'cute': 1.0, 'bags': 2.0, 'around': 1.0, 'the': 5.0, 'diaper': 2.0, 'price': 1.0, 'years': 1.0, 'baby': 2.0, 'used': 1.0, 'purchased': 1.0, 'use': 1.0, 'first': 2.0, 'with': 1.0, 'of': 2.0, 'shower': 1.0, 'for': 7.0, 'love': 1.0, 'year': 1.0, 'way': 1.0, 'have': 1.0, 'any': 1.0, 'all': 1.0, 'petunia': 1.0, 'that': 1.0, 'box': 1.0, 'in': 1.0, 'five': 1.0, 'i': 2.0, '4': 1.0, 'two': 2.0, 'my': 2.0, 'own': 1.0, 'new': 1.0, 've': 1.0, 'reused': 2.0, 'one': 1.0, 'bought': 2.0, 'past': 1.0, 'but': 1.0, 'gifts': 1.0, 'bag': 1.0, 'wanted': 1.0, 'could': 1.0, 'a': 1.0, 'and': 1.0, 'pattern': 1.0}
Word element => {'luck': 1.0, 'out': 1.0, 'android': 1.0, 'user': 1.0, 'an': 1.0, 'print': 1.0, 'doesn': 1.0, 'my': 1.0, 'users': 1.0, 'worth': 1.0, 'have': 1.0, 'samsung': 1.0, 'only': 1.0, 'it': 6.0, 'this': 2.0, 'iphones': 1.0, 'phone': 3.0, 'm': 1.0, 'the': 4.0, 'and': 2.0, 'hate': 1.0, 'owns': 1.0, 'protective': 2.0, 'i': 6.0, 'think': 1.0, 're': 2.0, 'off': 2.0, 'using': 1.0, 'customer': 1.0, 'cute': 2.0, 'base': 1.0, 'take': 2.0, 'their': 1.0, 'ppb': 1.0, 'apparently': 1.0, 'if': 2.0, 'want': 1.0, 'but': 1.0, 'they': 1.0, 'entire': 1.0, 'galaxy': 1.0, 'part': 1.0, 'not': 3.0, 's4': 1.0, 'does': 1.0, 'because': 1.0, 'for': 2.0, 'love': 1.0, 'fit': 2.0, 'in': 2.0, 'you': 1.0, 'idea': 1.0, 'unless': 1.0, 'of': 2.0, 'iphone': 1.0, 'wallet': 2.0, 'that': 2.0, 'case': 2.0, 'don': 1.0, 'to': 1.0, 'now': 1.0, 'so': 2.0, 'we': 2.0, 'go': 1.0, 'a': 2.0, 't': 2.0, 's': 2.0}
Word element => {'hook': 1.0, 'key': 1.0, 'getting': 1.0, 've': 1.0, 'either': 1.0, 'like': 1.0, 'lobster': 1.0, 'full': 1.0, 'being': 1.0, 'information': 1.0, 'about': 2.0, 'are': 1.0, 'picture': 1.0, 'license': 1.0, 'driver': 1.0, 'dislike': 1.0, 'outside': 1.0, 'on': 1.0, 'id': 1.0, 'has': 2.0, 'more': 1.0, 'be': 1.0, 'built': 1.0, 'had': 1.0, 'metal': 1.0, 'they': 1.0, 'wish': 2.0, 'way': 1.0, 'extra': 1.0, 'pockets': 3.0, 'with': 2.0, 'middle': 1.0, 'does': 2.0, 'view': 1.0, 'coin': 1.0, 'corner': 1.0, 'quarters': 1.0, 'half': 1.0, 'cash': 1.0, 'd': 1.0, 'bill': 1.0, 'there': 2.0, 'and': 4.0, 'i': 7.0, 'something': 1.0, 'straps': 2.0, 'from': 1.0, 'galaxy': 1.0, 'glazed': 1.0, 'canvas': 1.0, 'finally': 1.0, 'connection': 1.0, 'made': 1.0, 'cons': 1.0, 'holds': 1.0, 'ring': 2.0, 'at': 1.0, 'is': 6.0, 'magnetic': 1.0, 'will': 1.0, 'but': 3.0, 'wanderlust': 2.0, 'shoulder': 1.0, 'to': 11.0, 'wallet': 5.0, 'iphone': 1.0, 'super': 1.0, 'same': 1.0, 'clear': 1.0, 'if': 3.0, 'bags': 1.0, 'as': 1.0, 'diaper': 2.0, 'keys': 1.0, 'place': 2.0, 'attach': 1.0, 'released': 1.0, 'one': 5.0, 'far': 1.0, 'fold': 1.0, 'love': 1.0, 'closure': 1.0, 'fit': 1.0, 'of': 4.0, 'the': 16.0, 'longer': 1.0, 'pros': 1.0, 'really': 3.0, 'end': 1.0, 'petunia': 1.0, 'this': 3.0, 'when': 1.0, 'meant': 1.0, 'you': 4.0, 'barely': 1.0, 'for': 1.0, 'fabric': 1.0, 'yank': 1.0, 'card': 2.0, 'a': 7.0, 'two': 2.0, 'ppb': 1.0, 'little': 1.0, 'may': 1.0, 'my': 3.0, 'other': 1.0, 'all': 1.0, 'fits': 1.0, 'can': 1.0, 'included': 1.0, 'so': 2.0, 'concerned': 1.0, 'that': 1.0, 'wanted': 1.0, 'bag': 2.0, 'was': 3.0, 'durable': 1.0, 'also': 1.0, 'compact': 1.0, 'whereabouts': 1.0, 'excited': 1.0, 'loops': 1.0, 'difficult': 1.0, 'technically': 1.0, 'strap': 2.0, 'over': 1.0, 'wristlet': 1.0, 'less': 1.0, 'takes': 1.0, 'up': 1.0, 'size': 1.0, 'three': 1.0, 'designed': 1.0, 'space': 1.0, 'did': 1.0, 'loop': 1.0, 'keep': 2.0, 'in': 9.0, 'flap': 1.0, 'your': 7.0, 'feature': 1.0, 'or': 3.0, 'purse': 1.0, 'whole': 1.0, 'points': 2.0, 'pocket': 5.0, 'convenient': 1.0, 'essentials': 1.0, 'phone': 5.0, 're': 1.0, 'limiting': 1.0, 'not': 4.0, 'carrying': 1.0, 'samsung': 1.0, 'have': 4.0, 'juuuuust': 1.0, 'get': 3.0, 'close': 1.0, 's': 1.0, 'maybe': 2.0, 'thought': 1.0, 'it': 6.0, 'smaller': 3.0, 'nexus': 1.0, 'stretch': 1.0, 'out': 1.0}
Word element => {'needed': 1.0, 'just': 1.0, 'secure': 1.0, 'i': 1.0, 'stays': 1.0, 'easily': 1.0, 'is': 1.0, 'the': 1.0, 'used': 1.0, 'attaches': 1.0, 'to': 1.0, 'what': 1.0, 'kids': 1.0, 'this': 1.0, 'bunk': 1.0, 'ladder': 1.0, 'keep': 1.0, 'bed': 1.0, 'little': 1.0, 'off': 1.0}
Word element => {'a': 1.0, 'have': 1.0, 'i': 1.0, 'to': 1.0, 'poor': 1.0, 'last': 1.0, 'long': 1.0, 'would': 1.0, 'at': 1.0, 'all': 1.0, 'battery': 2.0, 'didnt': 1.0, 'sound': 2.0, 'and': 1.0, 'like': 1.0, 'quality': 2.0, 'sounded': 1.0, 'better': 1.0, 'muffled': 1.0}
Word element => {'them': 1.0, 'get': 1.0, 's': 1.0, 'complimented': 1.0, 'girl': 1.0, 'wears': 1.0, 'every': 1.0, 'she': 2.0, 'dresses': 1.0, 'little': 1.0, 'leggings': 1.0, 'adorable': 1.0, 'they': 1.0, 'look': 1.0, 'so': 1.0, 'great': 1.0, 'are': 1.0, 'my': 1.0, 'time': 1.0, 'with': 1.0, 'theses': 1.0, 'all': 1.0}
Word element => {'shipping': 1.0, 'great': 1.0, 'it': 1.0, 'love': 1.0, 'quality': 1.0, 'and': 2.0, 'bedding': 1.0, 'august': 1.0, 'i': 3.0, 'bought': 1.0, 'this': 1.0, 'the': 1.0, 'my': 1.0, 'due': 1.0, 'received': 1.0, 'grand': 1.0, 'baby': 1.0, 'she': 1.0, 'is': 1.0, 'fast': 1.0, 'for': 1.0, 'in': 1.0}
Word element => {'spent': 1.0, 'every': 1.0, 'worth': 1.0, 'made': 1.0, 'well': 1.0, 'is': 1.0, 'product': 1.0, 'great': 1.0, 'very': 1.0, 'and': 2.0, 'excellent': 1.0, 'price': 1.0, 'dollar': 1.0, 'a': 1.0, 'lot': 1.0, 'cheaper': 1.0, 'this': 1.0, 'than': 1.0, 'value': 1.0, 'stores': 1.0}
Word element => {'much': 1.0, 'guess': 1.0, 'bumper': 1.0, 'crib': 1.0, 'monkeys': 1.0, 'son': 1.0, 'my': 1.0, 'cute': 1.0, 'really': 1.0, 'comforter': 1.0, 'other': 1.0, 'it': 1.0, 'when': 1.0, 'items': 2.0, 'look': 1.0, 'right': 1.0, 'item': 1.0, 'can': 2.0, '80': 1.0, 'too': 1.0, 'and': 2.0, 'shredded': 1.0, 'i': 5.0, 'thought': 1.0, 'awesome': 1.0, 'price': 2.0, 'less': 1.0, 'pulled': 1.0, 'great': 1.0, 'the': 10.0, 'pee': 1.0, 'of': 3.0, 'this': 1.0, 'complain': 1.0, 'with': 1.0, 'was': 3.0, 'beat': 1.0, 'to': 2.0, 'for': 1.0, 'at': 1.0, 'who': 2.0, '13': 1.0, 'wash': 1.0, 'than': 2.0, 'because': 1.0, 'baby': 1.0, 'quality': 1.0, 'out': 1.0, 'wasn': 1.0, 'that': 3.0, 'changing': 1.0, 'must': 1.0, 'pad': 1.0, 'through': 1.0, 'went': 1.0, 'literally': 1.0, 'washer': 1.0, 'which': 1.0, 'is': 2.0, 't': 2.0, 'a': 2.0, 'so': 2.0, 'boy': 1.0, 'likes': 2.0, 'think': 1.0, 'on': 2.0, 'things': 1.0}
Word element => {'is': 1.0, 'online': 1.0, 'would': 1.0, 'never': 1.0, 'birthday': 1.0, 'ordered': 1.0, 'to': 2.0, 'first': 1.0, 'it': 1.0, 'pictures': 2.0, 'this': 1.0, 's': 1.0, 'son': 1.0, 'from': 1.0, 'the': 1.0, 'these': 1.0, 'red': 1.0, 'my': 1.0, 'for': 2.0, 'were': 1.0, 'i': 5.0, 'back': 1.0, 'will': 1.0, 'put': 1.0, 'but': 1.0, 'change': 1.0, 'apparently': 1.0, 'and': 4.0, 'they': 1.0, 'time': 2.0, 'site': 1.0, 'blue': 2.0, 'ever': 1.0, 'came': 1.0, 'white': 2.0, 'send': 1.0, 'them': 3.0, 'color': 1.0, 'entire': 1.0, 'not': 1.0, 'have': 2.0, 'had': 2.0, 'thought': 1.0, 'scheme': 1.0, 'correct': 1.0, 'in': 1.0, 'his': 1.0, 'blind': 1.0, 'order': 1.0, 'again': 1.0, 'who': 1.0}
Word element => {'128512': 1.0, 'well': 1.0, 'wise': 1.0, 'as': 1.0, 'and': 1.0, 'up': 1.0, 'stay': 1.0, 'snugly': 1.0, 'length': 1.0, 'these': 1.0, 'fit': 1.0, 'great': 1.0, 'were': 1.0, 'birthday': 1.0, 'outfit': 1.0, 'perfect': 1.0, 'for': 1.0, 'product': 1.0, 'to': 1.0, 'first': 1.0, 'sons': 1.0, 'my': 1.0, 'the': 1.0}
Word element => {'other': 1.0, 'ones': 1.0, 'bulky': 1.0, 'the': 1.0, 'like': 1.0, 'not': 1.0, 'easy': 1.0, 'make': 1.0, 'do': 1.0, 'and': 2.0, 'any': 1.0, 'month': 1.0, 'one': 1.0, 'love': 1.0, 'it': 1.0, 'an': 1.0, 'i': 3.0, 'old': 1.0, 'big': 1.0, 'day': 1.0, '11': 1.0, 'due': 1.0, 'have': 1.0, 'is': 1.0, 'how': 1.0, 'convenient': 1.0, 'to': 1.0, 'now': 1.0, 'its': 1.0, 'going': 1.0, 'so': 1.0, 'small': 1.0, 'myblife': 1.0}
Word element => {'tray': 1.0, 'holder': 1.0, 'cup': 1.0, 'person': 1.0, 'definitely': 2.0, 'carrying': 1.0, 'options': 2.0, 'high': 1.0, 're': 1.0, 'covers': 1.0, 'position': 1.0, 'stable': 2.0, 'put': 1.0, 'bar': 1.0, 'collapsed': 1.0, 'stand': 1.0, 'around': 2.0, 'worse': 1.0, 'light': 1.0, 'phase': 1.0, 'until': 1.0, 'then': 3.0, 'only': 1.0, 'butt': 1.0, 'setting': 1.0, 'yourself': 1.0, 'make': 1.0, 'red': 1.0, 'straps': 1.0, 'zips': 1.0, 'instructions': 1.0, 'isn': 2.0, 'problem': 2.0, 'hoping': 1.0, 'option': 1.0, 'probably': 1.0, 'its': 1.0, 'allowance': 1.0, 'control': 1.0, 'number': 1.0, 'recline': 1.0, 'has': 1.0, 'con': 1.0, 'stow': 1.0, 'disappears': 1.0, 'completely': 2.0, 'cons': 1.0, 'preemies': 1.0, 'germs': 1.0, 'because': 1.0, 'nervous': 1.0, 'makes': 1.0, 'however': 1.0, 'get': 2.0, 'tend': 1.0, 'since': 3.0, 'won': 1.0, 'two': 1.0, 'notice': 1.0, 'years': 1.0, 'couple': 2.0, 'us': 1.0, 'reclines': 1.0, 'last': 1.0, 'will': 1.0, 'worried': 1.0, 'confident': 1.0, 'basket': 2.0, 'an': 2.0, 'collapsing': 1.0, 'want': 2.0, 'bottom': 2.0, '50th': 1.0, 'learned': 1.0, 'most': 1.0, 'space': 1.0, 'snack': 1.0, 'much': 4.0, 'look': 1.0, 'plastic': 1.0, 'materials': 1.0, 'people': 1.0, 'handle': 1.0, 'same': 1.0, 'them': 1.0, 'small': 2.0, 'thing': 1.0, 'type': 3.0, 'hard': 2.0, 'twin': 2.0, 'over': 2.0, 'wanted': 1.0, 'mini': 1.0, 'like': 4.0, 'wasn': 2.0, 'jogger': 2.0, 'actual': 1.0, 'their': 1.0, 'britax': 3.0, 'adjustable': 1.0, 'b': 1.0, 'better': 1.0, 'open': 1.0, 'think': 2.0, 'large': 1.0, 'standard': 1.0, 'needs': 1.0, 'sale': 1.0, 'maneuverability': 1.0, 'zipping': 1.0, 'patrons': 1.0, 'suck': 1.0, 'hope': 1.0, 'way': 1.0, 'saw': 1.0, 'kind': 1.0, 'time': 1.0, 'top': 1.0, 'did': 1.0, 'happy': 2.0, 'playground': 1.0, 'no': 2.0, 'crawl': 1.0, 'double': 5.0, 'long': 1.0, 'although': 4.0, 'they': 4.0, 'great': 2.0, 'if': 3.0, 'glides': 1.0, 'out': 6.0, 'loathe': 1.0, 'calling': 1.0, 'who': 1.0, 'from': 1.0, 'was': 3.0, 'city': 3.0, 't': 15.0, 'bag': 2.0, 'a': 21.0, 'one': 5.0, '5': 1.0, 'when': 6.0, 'fact': 1.0, 'what': 1.0, 'head': 1.0, 'twins': 5.0, 'mulch': 1.0, 'so': 12.0, 'could': 2.0, 'spaces': 1.0, 'boy': 2.0, 'enough': 2.0, 'tight': 1.0, 'prior': 1.0, 'i': 24.0, 'designers': 1.0, 'well': 1.0, 'tandem': 2.0, 'canopy': 2.0, 'tried': 1.0, 'and': 29.0, 'just': 3.0, 'means': 1.0, 'kids': 1.0, 'month': 1.0, 'fit': 2.0, 'easy': 4.0, 'this': 12.0, 'sidewalks': 1.0, 'fat': 2.0, 'take': 4.0, 'reviews': 1.0, 'pretty': 5.0, 'to': 19.0, 'job': 1.0, 'at': 4.0, 'major': 1.0, 'sits': 1.0, 'can': 4.0, 'is': 12.0, 'in': 12.0, 'main': 5.0, 'best': 4.0, 'hour': 1.0, 'are': 5.0, 'my': 10.0, 'me': 3.0, 'baby': 4.0, 'moment': 1.0, 'about': 2.0, 'purchasing': 1.0, 'kid': 1.0, 'stocked': 1.0, 'pros': 1.0, 'coffee': 1.0, 'but': 13.0, 'impressed': 1.0, 'brake': 2.0, 'walk': 1.0, 'too': 2.0, 'weight': 2.0, '3': 5.0, 'on': 7.0, 'holding': 1.0, 'exactly': 2.0, 'him': 1.0, 'ready': 1.0, 'terrain': 1.0, 'stroller': 17.0, 'year': 5.0, 'lot': 1.0, 'haven': 1.0, 'his': 1.0, 'couldn': 1.0, 'the': 55.0, 'online': 1.0, 'feel': 3.0, 'many': 1.0, 'where': 1.0, 'your': 5.0, 'foot': 2.0, 'chance': 1.0, 'looking': 2.0, 'distribution': 1.0, 'grows': 1.0, 'doesn': 3.0, 'm': 4.0, 's': 7.0, 'squeaky': 1.0, 'stores': 1.0, 'smooth': 1.0, 'pockets': 1.0, 'mind': 2.0, 'for': 13.0, 'figure': 1.0, 'wish': 1.0, 'freeride': 1.0, 'go': 1.0, 'bob': 1.0, 'place': 1.0, 'neighborhood': 2.0, 'little': 2.0, 'loves': 1.0, 'been': 1.0, 'select': 2.0, 'seat': 12.0, 'push': 1.0, 'you': 10.0, 'someone': 1.0, 'footplate': 1.0, 'good': 4.0, 'again': 1.0, 'which': 4.0, 'bumper': 1.0, 'infant': 1.0, 'by': 3.0, 'sturdy': 1.0, 'strollers': 3.0, 'had': 2.0, 'tested': 1.0, 'frame': 2.0, 'were': 3.0, 'maneuver': 1.0, 'buckles': 1.0, 'side': 5.0, 'll': 1.0, 'found': 2.0, 'have': 7.0, 'running': 1.0, 'bright': 1.0, 'off': 3.0, 'lots': 3.0, 'pain': 1.0, 'seating': 3.0, 'read': 1.0, 'newborn': 1.0, 'say': 1.0, 'that': 7.0, 'easily': 1.0, 'car': 1.0, 'equal': 1.0, 'yet': 1.0, 'love': 1.0, 'chic': 1.0, 'don': 3.0, 'requesting': 1.0, 'exists': 1.0, 'concur': 1.0, 'find': 1.0, 'very': 1.0, 'both': 2.0, 'son': 1.0, 'seats': 3.0, 'dire': 1.0, 'really': 9.0, 'ride': 1.0, 'of': 15.0, 'old': 6.0, 'even': 1.0, 'own': 1.0, 'shade': 1.0, 'be': 2.0, 'percentile': 1.0, 'it': 21.0, 'fully': 2.0, 'advantage': 1.0, 'loaded': 1.0, 'kit': 1.0, 'maneuvers': 1.0, 'bassinet': 1.0, 'important': 1.0, 'picture': 1.0, 'with': 11.0, 'grass': 1.0, 'goes': 1.0, 'bumpy': 1.0, 'wouldn': 1.0, 'perfect': 2.0, 'doorways': 1.0, 'use': 3.0, 'shop': 1.0, 'stick': 1.0, 'quality': 3.0, 'smug': 1.0, 'once': 3.0, 'local': 1.0, 'without': 2.0, 'help': 1.0, 'adjustments': 1.0, 'or': 2.0, '25lbs': 1.0, 'nice': 1.0, 'big': 1.0, 'huge': 2.0, 'do': 2.0, 'mustard': 1.0, 'yellow': 2.0, 'walks': 1.0, 'wide': 1.0, 'color': 1.0, 'not': 14.0, 'different': 1.0, 'attention': 1.0, 'other': 1.0, 'there': 7.0, 'set': 2.0, 'collapse': 2.0, 'quite': 1.0, 'toys': 1.0, 'handed': 1.0, 'shows': 1.0, 'diaper': 2.0, 'up': 3.0, 'second': 9.0, 'decided': 1.0, 'turns': 1.0, 'through': 1.0, 'into': 3.0}
Word element => {'others': 1.0, 'any': 1.0, 'product': 1.0, 'recommend': 1.0, 'my': 1.0, 'of': 1.0, 'fun': 1.0, 'and': 3.0, 'room': 1.0, 'expected': 1.0, 'was': 1.0, 's': 1.0, 'wall': 1.0, 'his': 1.0, 'light': 2.0, 'from': 1.0, 'as': 1.0, 'shipping': 1.0, 'everything': 1.0, 'the': 4.0, 'great': 1.0, 'love': 1.0, 'on': 1.0, 'this': 2.0, 'quick': 1.0, 'it': 1.0, 'with': 1.0, 'night': 1.0, 'i': 2.0, 'looks': 1.0, 'really': 1.0, 'child': 1.0, 'decor': 1.0, 'arrived': 1.0, 'fits': 1.0, 'company': 1.0, 'in': 1.0}
Word element => {'anyway': 1.0, 'into': 1.0, 'be': 1.0, 'will': 1.0, 'full': 1.0, 'size': 2.0, 'good': 1.0, 'after': 1.0, 'going': 2.0, 'since': 1.0, 'also': 1.0, 'convertable': 1.0, 'just': 1.0, 'she': 1.0, 'baby': 3.0, 'so': 3.0, 'co': 8.0, 'all': 1.0, 'convertible': 1.0, 'you': 2.0, 'even': 1.0, 'didn': 1.0, 'not': 1.0, 'n': 1.0, 'reach': 2.0, 'and': 7.0, 'kind': 1.0, 'model': 2.0, 'get': 1.0, 'with': 4.0, 'models': 3.0, 'this': 3.0, 'converting': 1.0, 'sleeper': 8.0, 'right': 3.0, 'i': 7.0, 'buy': 1.0, 's': 2.0, 't': 4.0, 'awaiting': 1.0, 'a': 3.0, 'go': 2.0, 'to': 4.0, 'high': 1.0, '34': 10.0, 'company': 2.0, 'confirm': 1.0, 'convert': 1.0, 'the': 16.0, 'doing': 1.0, 'of': 3.0, 'we': 2.0, 'then': 1.0, 'leg': 1.0, 'have': 2.0, 'play': 2.0, 'about': 1.0, 'newer': 1.0, 'no': 1.0, 'ours': 1.0, 'isn': 1.0, 'don': 2.0, 'those': 1.0, '26': 1.0, 'overwhelmed': 1.0, 'arc': 1.0, 'mini': 4.0, 'inches': 1.0, 'big': 3.0, 'arm': 2.0, 'pack': 1.0, 'euro': 1.0, 'standard': 2.0, 'that': 3.0, 'because': 1.0, 'is': 5.0, 'yards': 1.0, 'say': 2.0, 'using': 1.0, 'know': 1.0, 'bed': 1.0, 'extensions': 1.0, 'american': 1.0, 'height': 1.0, 'returned': 1.0, 'regular': 2.0, 'in': 1.0, 'bought': 1.0, 'was': 2.0, 'different': 2.0, 'choices': 1.0, 'when': 2.0, 'what': 1.0, 'cust': 1.0, 'e': 2.0, 'if': 2.0, 'service': 1.0, 'some': 2.0, 'once': 2.0, 'these': 1.0, 'it': 1.0, 'already': 1.0, 'questions': 1.0, 'did': 1.0, 'clarification': 1.0, 'from': 1.0, 'on': 1.0, 'how': 1.0, 'are': 5.0, 'too': 3.0, 'ones': 2.0, 'mailed': 2.0, 'name': 1.0, 'for': 6.0, 'need': 2.0, 'or': 3.0, 'compatible': 1.0, 'bassinets': 1.0, 'crib': 3.0}
Word element => {'correct': 1.0, 'please': 1.0, 'standing': 1.0, 'free': 1.0, 'and': 1.0, 'to': 1.0, 'yard': 1.0, 'play': 1.0, 'description': 1.0, 'not': 1.0, 'model': 1.0, 'states': 1.0, 'can': 1.0, 'convert': 1.0, 'bassinet': 2.0, 'top': 1.0, 'on': 1.0, 'is': 2.0, 'into': 1.0, 'playard': 1.0, 'descriptions': 1.0, 'supposed': 1.0, 'be': 2.0, 'listing': 1.0, 'only': 1.0, 'it': 3.0, 'this': 1.0, '34': 2.0, 'inaccurate': 1.0, 'that': 1.0, 'however': 1.0, 'the': 3.0, 'does': 1.0, 'used': 2.0, 'as': 2.0, 'a': 3.0, 'co': 2.0, 'sleeper': 2.0, 'particular': 1.0}
Word element => {'pieces': 1.0, 'isn': 1.0, 'noteworthy': 1.0, 'purchase': 1.0, 'with': 2.0, 'come': 1.0, 'does': 1.0, 'one': 1.0, 'attach': 1.0, 'holes': 1.0, 'button': 1.0, 'loops': 1.0, 'velcro': 1.0, 'underside': 1.0, 'on': 1.0, 'quite': 1.0, 'seamstress': 1.0, 'properly': 1.0, 'either': 1.0, 'not': 1.0, 'extra': 1.0, 'important': 1.0, 'but': 2.0, 'enough': 1.0, 'additional': 2.0, 'require': 1.0, 't': 2.0, 'they': 1.0, 'purposely': 1.0, 'and': 5.0, 'mattress': 3.0, 'sleeper': 3.0, 'fits': 1.0, 'fact': 1.0, 'without': 2.0, 'bed': 3.0, 'standard': 1.0, 'incredibly': 1.0, 'love': 1.0, 'life': 1.0, 'by': 1.0, 'just': 1.0, 'screaming': 1.0, 'been': 1.0, 'have': 1.0, 'like': 1.0, 'cannot': 1.0, 'nothing': 1.0, 'could': 2.0, 'buy': 1.0, 'hand': 1.0, 'something': 1.0, 'our': 3.0, 'high': 1.0, 'to': 7.0, 'easier': 1.0, 'between': 4.0, 'sheet': 2.0, 'co': 3.0, 'detail': 1.0, 'liner': 1.0, 'shove': 1.0, 'admit': 1.0, 'getting': 1.0, 'now': 1.0, 'problem': 1.0, 'delivered': 1.0, 'already': 1.0, 'it': 8.0, 'bit': 1.0, 'however': 1.0, 'easy': 1.0, 'ok': 1.0, 'pick': 1.0, 'i': 6.0, 'took': 1.0, 'sheets': 4.0, 'there': 1.0, 'change': 1.0, 'up': 4.0, 'over': 1.0, 'the': 11.0, 'of': 3.0, 'a': 6.0, 'imagine': 1.0, 'extension': 1.0, 'securely': 1.0, 'unless': 1.0, 'that': 3.0, 'easily': 1.0, 'in': 3.0, 'baby': 3.0, 's': 3.0, 'soothe': 1.0, 'setting': 1.0, 'doesn': 1.0, 'use': 1.0, 'her': 6.0, 'need': 1.0, 'or': 1.0, 'nurse': 1.0, 'crib': 2.0, 'slip': 1.0, 'us': 1.0, 'also': 2.0, 'reaching': 1.0, 'stroking': 1.0, 'two': 1.0, 'nice': 1.0, 'little': 1.0, 'head': 1.0, 'when': 1.0, 'sit': 1.0, '34': 2.0, 'chuck': 1.0, 'diaper': 1.0, 'my': 2.0, 'looks': 1.0, 'calm': 1.0, 'me': 1.0, 'sew': 1.0, 'pains': 1.0, 'having': 3.0, 'talented': 1.0, 'are': 1.0, 'still': 1.0, 'your': 2.0, 'can': 3.0, 'so': 1.0, 'constantly': 1.0, 'get': 1.0, 'legs': 1.0, 'ability': 1.0, 'attend': 1.0, 'is': 2.0, 'waterproof': 2.0, 'believe': 1.0, 'essential': 1.0}
Word element => {'complaints': 1.0, 'no': 1.0, 'far': 1.0, 'newborns': 1.0, 'enough': 1.0, 'big': 1.0, 'comfortably': 1.0, 'well': 1.0, 'size': 1.0, 'the': 2.0, 'them': 1.0, 'can': 1.0, 'see': 1.0, 'peace': 1.0, 'or': 1.0, 'at': 2.0, 'lot': 1.0, 'of': 3.0, 'up': 1.0, 'over': 1.0, 'now': 1.0, 'all': 2.0, 'as': 2.0, 'sleep': 2.0, 'to': 4.0, 'have': 3.0, 'two': 1.0, 'i': 4.0, 'their': 3.0, 'times': 1.0, 'twins': 1.0, 'both': 1.0, 'babies': 1.0, 'been': 1.0, 'a': 2.0, 'mind': 1.0, 'convenient': 1.0, 'using': 1.0, 'love': 1.0, 'for': 2.0, 'bed': 1.0, 'month': 1.0, 'it': 2.0, 'in': 2.0, 'having': 1.0, 'spit': 1.0, 'also': 1.0, 'my': 1.0, 'and': 1.0, 'get': 1.0, 'do': 1.0, 'me': 1.0, 'not': 1.0, 'large': 1.0, 'just': 1.0, 'newborn': 1.0, 'out': 1.0, 'pacifiers': 1.0, 'each': 1.0, 'co': 2.0, 'so': 2.0, 'time': 1.0, 'they': 1.0, 'back': 1.0, 'put': 1.0, 'mouths': 1.0, 'is': 2.0, 'sleeper': 2.0, 'this': 1.0, 'allows': 1.0}
Word element => {'nursing': 1.0, 'especially': 1.0, 'concerned': 1.0, 'm': 1.0, 'i': 1.0, 'out': 1.0, 'husband': 1.0, 'good': 1.0, 'me': 1.0, 'moms': 1.0, 'and': 1.0, 'requirement': 1.0, 'my': 1.0, 'made': 1.0, 'has': 1.0, 'it': 5.0, 'this': 2.0, 'only': 1.0, 'herself': 1.0, 'here': 1.0, 'possible': 2.0, 'is': 4.0, 'sleeps': 1.0, 'sleeping': 1.0, 'night': 2.0, 'baby': 3.0, 'every': 1.0, 'for': 5.0, 'crib': 1.0, 'in': 1.0, 'also': 1.0, 'planned': 1.0, 'together': 1.0, 'making': 1.0, 'by': 1.0, 'just': 1.0, 'start': 1.0, 'training': 1.0, 'doesn': 1.0, 'so': 3.0, 'but': 1.0, 'work': 1.0, 'can': 1.0, 'transition': 1.0, 'far': 2.0, 'to': 5.0, 'sleep': 4.0, 'our': 1.0, 'as': 5.0, 'all': 1.0, 'lot': 1.0, 'of': 1.0, 'us': 2.0, 'gear': 1.0, 'unnecessary': 1.0, 'a': 2.0, 't': 1.0}
Word element => {'also': 1.0, 'bed': 1.0, 'our': 1.0, 'snug': 1.0, 'service': 1.0, 'is': 2.0, 'together': 1.0, 'we': 1.0, 'does': 1.0, 'the': 2.0, 'great': 1.0, 'love': 1.0, 'it': 2.0, 'and': 2.0, 'baby': 1.0, 'so': 1.0, 'against': 1.0, 'easy': 1.0, 'to': 1.0, 'put': 1.0}
Word element => {'it': 1.0, 'said': 1.0, 'gift': 1.0, 'lot': 1.0, 'they': 2.0, 'a': 2.0, 'as': 1.0, 'like': 1.0, 'this': 1.0, 'and': 1.0, 'give': 1.0}
Word element => {'heavy': 1.0, 'pretty': 1.0, 'it': 1.0, 'but': 1.0, 'traveling': 1.0, 'was': 1.0, 'nest': 1.0, 'snuggle': 1.0, 'my': 1.0, 'purchasing': 1.0, 'bed': 3.0, 'for': 1.0, 'ended': 1.0, 'baby': 1.0, 'there': 1.0, 'sore': 1.0, 'get': 1.0, 'and': 2.0, 'play': 1.0, 'have': 1.0, 'pack': 1.0, 'of': 1.0, 'gap': 1.0, 'side': 1.0, 'is': 2.0, 'the': 5.0, 'thought': 1.0, 'co': 2.0, 'so': 2.0, 'double': 1.0, 'between': 1.0, 'up': 1.0, 'over': 1.0, 'we': 2.0, 't': 1.0, 'a': 3.0, 'on': 2.0, 'put': 1.0, 'back': 1.0, 'because': 1.0, 'from': 1.0, 'to': 3.0, 'our': 1.0, 'as': 1.0, 'rails': 1.0, 'reaching': 1.0, 'out': 1.0, 'sleeper': 2.0, 'this': 1.0, 'would': 1.0, 'be': 1.0, 'nice': 1.0}
Word element => {'and': 1.0, 'in': 1.0, 'especially': 1.0, 'very': 1.0, 'is': 3.0, 'becomes': 1.0, 'cosleeper': 1.0, 'add': 1.0, 'early': 1.0, 'convenient': 1.0, 'a': 1.0, 'great': 1.0, 'the': 2.0, 'months': 1.0, 'baby': 1.0, 'downfall': 1.0, 'compromised': 1.0, 'once': 1.0, 'wobbly': 1.0, 'only': 1.0, 'with': 1.0, 'it': 1.0, 'this': 1.0, 'stability': 1.0, 's': 1.0, 'you': 1.0, 'risers': 1.0}
Word element => {'more': 1.0, 'might': 1.0, 'ordered': 1.0, 'had': 1.0, 'car': 1.0, 'emphatically': 1.0, 'out': 1.0, 'use': 1.0, 'done': 1.0, 'going': 1.0, 'guess': 1.0, 'roll': 2.0, 'once': 2.0, 'keep': 1.0, 'base': 1.0, 'inches': 1.0, 'two': 1.0, 'mesh': 1.0, 'up': 1.0, 'costs': 1.0, 'steering': 1.0, 'pad': 2.0, '99': 2.0, '119': 1.0, 'replacement': 1.0, 'covered': 1.0, 'organic': 1.0, 'in': 1.0, 'extra': 1.0, 'grooves': 1.0, 'solution': 1.0, 'has': 1.0, '315': 1.0, 'as': 1.0, 'inside': 1.0, 'mattress': 4.0, 'only': 2.0, 'company': 1.0, 'different': 1.0, 'bought': 3.0, 'unsafe': 1.0, 'with': 1.0, 'ikea': 1.0, 'at': 1.0, 'look': 1.0, 'is': 5.0, 'lumps': 1.0, 'say': 1.0, 'then': 1.0, 'leg': 1.0, 'a': 11.0, 'discover': 2.0, 'could': 1.0, 'and': 12.0, 'extenders': 2.0, 'together': 1.0, 'dresser': 1.0, 'put': 1.0, 'on': 3.0, 'feel': 1.0, 'flimsy': 1.0, 'your': 2.0, 'latex': 1.0, 'they': 1.0, 'sleeping': 1.0, 'like': 5.0, 'good': 1.0, 'which': 2.0, 'all': 1.0, 'dissatisfied': 1.0, 'an': 1.0, 'other': 1.0, 'of': 3.0, 'the': 18.0, 'co': 3.0, 'can': 2.0, 'so': 1.0, 'baby': 4.0, 'about': 2.0, 'including': 1.0, 'talk': 1.0, 'was': 1.0, 'reach': 2.0, 'relatively': 1.0, 'assembly': 1.0, 'let': 1.0, 'directions': 1.0, 'ok': 1.0, 'this': 3.0, 'it': 5.0, 'pretty': 1.0, 'to': 14.0, 'multiple': 1.0, 'word': 2.0, 'be': 2.0, 'projects': 1.0, 'built': 1.0, 'said': 1.0, '18': 1.0, 'things': 2.0, 'you': 5.0, 'am': 4.0, 'times': 1.0, 'after': 1.0, 'unless': 1.0, 'until': 1.0, 'access': 1.0, 'from': 3.0, 'allow': 1.0, 'b008vvwp8a': 1.0, 'super': 1.0, 'new': 3.0, 'would': 2.0, 'hand': 1.0, 'buy': 1.0, 'theirs': 1.0, 'parade': 1.0, 'wheel': 1.0, 'some': 1.0, 'veritable': 1.0, 'have': 5.0, 'rock': 1.0, 'been': 1.0, 'there': 1.0, 'written': 1.0, 'too': 1.0, 'lot': 1.0, 'cosleeper': 2.0, 'over': 4.0, 'hard': 2.0, 'clearer': 1.0, 'warning': 1.0, 'arm': 2.0, 'labels': 1.0, 'cute': 1.0, 'are': 2.0, 'll': 1.0, 'printed': 1.0, 'bed': 4.0, 'directly': 1.0, 'figure': 1.0, 'death': 2.0, 'i': 10.0, 'not': 1.0, 'seats': 1.0, 'superstitious': 1.0, 'but': 2.0, 'neither': 1.0, 'that': 2.0, 'thrilled': 1.0, 'seven': 1.0, '175': 1.0, 'my': 2.0, 'sleeper': 3.0, 'newborn': 1.0, 'low': 2.0, 'sell': 2.0, 'ground': 1.0, 'really': 2.0, 'close': 1.0, 'lying': 1.0, 'pram': 1.0, 'futon': 1.0, 's': 5.0, 'maybe': 1.0, 'suffocating': 1.0, 'for': 3.0}
Word element => {'a': 1.0, 'made': 1.0, 'had': 1.0, 'purposes': 1.0, 'not': 1.0, 'cumbersome': 1.0, 'has': 1.0, 'intensive': 1.0, 'care': 1.0, 'aspect': 1.0, 'velcro': 2.0, 'install': 2.0, 'put': 1.0, 'avoid': 1.0, 'area': 1.0, 'different': 1.0, 'fabric': 1.0, 'is': 3.0, 'the': 9.0, 'bassinet': 1.0, 'done': 1.0, 'and': 1.0, 'with': 1.0, 'frustrating': 1.0, 'instruct': 1.0, 'so': 1.0, 'liner': 1.0, 'be': 1.0, 'for': 1.0, 'product': 2.0, 'to': 6.0, 'process': 1.0, 'everyday': 1.0, 'user': 2.0, 'then': 1.0, 'convertible': 2.0, 'loose': 1.0, 'in': 2.0, 'choice': 1.0, 'everything': 1.0, 'apart': 1.0, 'instructions': 1.0, 'instructs': 1.0, 'together': 1.0, 'pull': 1.0, 'including': 1.0, 'thing': 2.0, 'whole': 1.0, 'i': 3.0, 'wish': 1.0, 'this': 3.0, 'mattress': 1.0, 'part': 1.0, 'which': 1.0, 'sleeping': 1.0, 'selected': 1.0, 'large': 1.0, 'because': 2.0, 'of': 1.0}
Word element => {'store': 1.0, 'up': 1.0, 'be': 1.0, 'can': 1.0, 'a': 2.0, 'travelling': 1.0, 'when': 1.0, 'into': 2.0, 'champ': 1.0, 'but': 1.0, 'back': 1.0, 'everything': 2.0, 'reassembling': 1.0, 'collapsing': 1.0, 'to': 2.0, 'time': 1.0, 'oct': 1.0, 've': 1.0, 'we': 1.0, 'for': 1.0, '2013': 1.0, 'just': 1.0, '3': 1.0, 'stars': 1.0, 'purchased': 1.0, '5': 1.0, 'block': 1.0, 'take': 1.0, 'getting': 1.0, 'and': 2.0, 'like': 2.0, 'single': 1.0, 'folded': 1.0, 'really': 1.0, 'carry': 1.0, 'position': 1.0, 'some': 1.0, 'with': 1.0, 'unit': 1.0, 'this': 1.0, 'it': 5.0, 'over': 1.0, 'months': 1.0, '4': 1.0, 'works': 1.0, 'used': 2.0, 'does': 1.0}
Word element => {'have': 2.0, 'now': 1.0, 'same': 1.0, 'converts': 1.0, 'one': 2.0, 'right': 2.0, 'here': 1.0, 'be': 2.0, 'dot': 1.0, 'the': 7.0, 'pictured': 1.0, 'says': 1.0, 'item': 1.0, 'typo': 1.0, 'like': 1.0, 'willing': 1.0, 'it': 3.0, 'do': 1.0, 'only': 1.0, 'with': 1.0, 'describes': 1.0, 'amazon': 3.0, 'is': 2.0, 'what': 1.0, 'used': 2.0, 'took': 1.0, 'sleepers': 1.0, 'this': 2.0, 'sleeper': 1.0, 'product': 1.0, 'actually': 1.0, 'stars': 1.0, '3': 1.0, 'toffee': 1.0, 'a': 3.0, 'play': 3.0, 'finally': 1.0, 'because': 1.0, 'yard': 3.0, 'can': 2.0, 'but': 2.0, 'work': 1.0, 'convertible': 1.0, 'that': 4.0, 'although': 1.0, 'co': 2.0, 'needs': 1.0, 'as': 3.0, 'to': 4.0, 'was': 1.0, 'fix': 1.0, 'seller': 1.0, 'give': 1.0, 'not': 3.0, 'me': 1.0, 'model': 1.0, 'get': 1.0, 'i': 4.0, '4': 1.0}
Word element => {'really': 1.0, 'should': 1.0, 'product': 1.0, 'this': 2.0, 'sell': 1.0, 'still': 1.0, 'surprised': 1.0, 'am': 1.0, 'design': 1.0, 'failed': 1.0, 'other': 1.0, 'can': 1.0, 'gave': 1.0, 'to': 1.0, 'products': 1.0, 'i': 3.0, 'responded': 1.0, 'replacement': 1.0, 'very': 2.0, 'use': 1.0, 'frustrating': 1.0, 'cubes': 1.0, 're': 1.0, 'trays': 1.0, 'for': 1.0, 'freezer': 1.0, 'such': 1.0, 'the': 2.0, 'company': 2.0, 'would': 1.0, 'never': 1.0, 'a': 1.0, 'well': 1.0, 'and': 1.0, 'me': 1.0, 'worst': 1.0, 'get': 1.0, 'out': 1.0, 'good': 1.0, 'emailed': 1.0, 'free': 1.0, 'ever': 1.0, 'they': 2.0}
Word element => {'this': 1.0, 'water': 1.0, 'out': 2.0, 'food': 1.0, 'small': 1.0, 'or': 1.0, 'good': 1.0, 'pick': 1.0, 'frozen': 1.0, 'get': 1.0, 'shape': 1.0, 'and': 1.0, 'getting': 1.0, 'with': 1.0, 'it': 1.0, 'next': 2.0, 'all': 1.0, 'to': 6.0, 'purpose': 1.0, 'sorry': 1.0, 'impossible': 2.0, 'cubes': 1.0, 'pry': 1.0, 'pounding': 1.0, 'the': 4.0, 'make': 1.0, 'use': 2.0, 'plastic': 1.0, 'hot': 1.0, 'type': 1.0, 'one': 1.0, 'tray': 1.0, 'fall': 1.0, 'short': 1.0, 'ice': 2.0, 'usually': 1.0, 'in': 2.0, 'of': 1.0, 'may': 1.0, 'intended': 1.0, 'store': 1.0, 'parts': 1.0, 'munchkin': 1.0, 'no': 1.0, 'for': 1.0, 'love': 1.0, 'i': 1.0, 'products': 1.0, 'not': 1.0}
Word element => {'pointless': 1.0, 'totally': 1.0, 'work': 1.0, 'would': 1.0, 'with': 1.0, 'it': 1.0, 'to': 2.0, 'had': 1.0, 'a': 2.0, 'pureed': 1.0, 'baby': 1.0, 'technique': 1.0, 'and': 1.0, 'probably': 1.0, 'worst': 1.0, 'banana': 1.0, 'after': 1.0, 'so': 1.0, 'bananas': 1.0, 'product': 2.0, 'for': 3.0, 'the': 3.0, 'more': 1.0, 'stabbing': 2.0, 'used': 2.0, 'times': 1.0, 'i': 3.0, 'about': 1.0, 'whole': 1.0, 'have': 1.0, 'able': 1.0, 'cube': 1.0, 'sit': 1.0, 'metal': 1.0, 'far': 1.0, 'spoon': 1.0, 'multiple': 1.0, 'finally': 1.0, 'loosen': 1.0, 'difficult': 1.0, 'let': 1.0, 'one': 1.0, 'tray': 1.0, 'ridiculous': 1.0, 'broccoli': 2.0, 'out': 1.0, 'before': 1.0, '5': 1.0, 'was': 2.0, 'minutes': 1.0, 'another': 1.0, 'my': 1.0}
Word element => {'this': 1.0, 'on': 1.0, 'your': 1.0, 'after': 1.0, 'slamming': 1.0, 'these': 1.0, 'hands': 1.0, 'the': 7.0, 'from': 1.0, 'fresh': 1.0, 'of': 1.0, 'completely': 1.0, 'don': 1.0, 'up': 1.0, 'to': 3.0, 'product': 1.0, 'love': 1.0, 'for': 1.0, 'one': 1.0, 'cubes': 1.0, 'wasted': 1.0, 'remove': 1.0, 'making': 1.0, 'my': 2.0, 'baby': 2.0, 'little': 1.0, 'i': 3.0, 'until': 1.0, 'almost': 1.0, 'have': 2.0, 'against': 1.0, 'room': 1.0, 'defrost': 1.0, 'and': 2.0, 'freezer': 1.0, 'get': 1.0, 'use': 1.0, 't': 1.0, 'a': 2.0, 'order': 1.0, 'spoon': 1.0, 'take': 1.0, 'in': 2.0, 'out': 1.0, 'money': 1.0, 'food': 4.0, 'work': 1.0, 'trays': 3.0, 'thousand': 1.0, 'hurt': 1.0, 'times': 1.0, 'better': 1.0, 'counter': 1.0, 'they': 1.0, 'less': 1.0}
Word element => {'complained': 1.0, 'because': 1.0, 'spend': 1.0, '99': 1.0, '6': 1.0, 'customer': 1.0, 'about': 1.0, 'thing': 1.0, 'don': 1.0, 'they': 3.0, 'twist': 1.0, 'munchkin': 2.0, 'gave': 1.0, 'that': 1.0, 'out': 3.0, 'them': 2.0, 'say': 1.0, 'is': 3.0, 'website': 1.0, 'the': 5.0, 'getting': 1.0, 'issue': 1.0, 'and': 2.0, 'product': 1.0, 'love': 1.0, 'one': 2.0, 'cube': 1.0, 'main': 1.0, 'their': 2.0, 'better': 1.0, 'just': 1.0, 'me': 1.0, 'not': 1.0, 'have': 1.0, 'of': 1.0, 'products': 1.0, 'i': 5.0, 'on': 2.0, 'except': 1.0, 'cubes': 1.0, 'service': 1.0, 'pop': 1.0, 'excellent': 1.0, 'had': 1.0, 'any': 1.0, 'all': 1.0, 'to': 5.0, 'use': 1.0, 's': 1.0, 't': 1.0, 'a': 1.0, 'knife': 1.0, 'silicone': 1.0, 'pry': 1.0, 'much': 1.0, 'item': 1.0, 'also': 1.0, 'are': 1.0, 'easy': 1.0, 'fill': 1.0, 'this': 2.0, 'found': 1.0, 'trays': 1.0, 'can': 1.0, 'food': 1.0, 'work': 1.0, 'good': 1.0}
Word element => {'thanks': 1.0, 'water': 1.0, 'owl': 1.0, 'bright': 1.0, 'cute': 1.0, 'great': 2.0, 'item': 1.0, 'for': 1.0, 'the': 1.0, 'bath': 2.0, 'and': 1.0, 'very': 1.0, 'fits': 1.0, 'of': 1.0, 'toys': 1.0, 'colors': 1.0, 'gift': 1.0, 'lots': 1.0}
Word element => {'well': 1.0, 'as': 1.0, 'family': 1.0, 'it': 2.0, 'then': 1.0, 'bought': 2.0, 'my': 2.0, 'sis': 1.0, 'other': 1.0, 'loved': 1.0, 'for': 2.0, 'members': 1.0, 'i': 1.0, 'one': 1.0, 'bday': 1.0, 'she': 1.0}
Word element => {'decoration': 1.0, 'story': 1.0, 'got': 1.0, 'everybody': 1.0, 'manner': 1.0, 'with': 2.0, 'party': 1.0, 'bright': 1.0, 'a': 1.0, 'in': 1.0, 'for': 1.0, 'impressed': 1.0, 'and': 2.0, 'timely': 1.0, 'son': 1.0, 'very': 1.0, 'items': 1.0, 'i': 2.0, 'what': 1.0, 'exactly': 1.0, 'toy': 1.0, 'colors': 1.0, 'bought': 1.0, 'more': 1.0, 'the': 2.0, 'than': 1.0, 'my': 1.0, 'happy': 1.0, 'ordered': 1.0, 'birthday': 1.0}
Word element => {'party': 1.0, 'all': 1.0, 'i': 1.0, 'afterwards': 1.0, 'away': 1.0, 'the': 2.0, 'made': 1.0, 'so': 1.0, 'had': 1.0, 'lovely': 1.0, 'table': 2.0, 'food': 1.0, 'nice': 1.0, 'decoratons': 1.0, 'its': 1.0, 'them': 2.0, 'a': 1.0, 'cake': 1.0, 'shame': 1.0, 'with': 1.0, 'on': 1.0, 'throw': 1.0, 'to': 1.0}
Word element => {'crib': 1.0, 'her': 1.0, 'co': 1.0, 's': 1.0, 'bed': 1.0, 'for': 1.0, 'in': 1.0, 'and': 1.0, 'bought': 1.0, 'this': 1.0, 'it': 2.0, 'i': 2.0, 'when': 1.0, 'she': 1.0, 'sturdy': 1.0, 'use': 1.0, 'moves': 1.0, 'on': 1.0, 'the': 1.0, 'will': 1.0, 'toddler': 1.0, 'there': 1.0, 'sleeping': 1.0, 'very': 1.0, 'from': 1.0}
Word element => {'little': 1.0, 'mind': 1.0, 'fits': 1.0, 'even': 1.0, 'easy': 1.0, 'install': 1.0, 'definitely': 1.0, 'to': 1.0, 'product': 1.0, 'very': 1.0, 'and': 2.0, 'their': 1.0, 'needing': 1.0, 'some': 1.0, 'of': 1.0, 'nice': 1.0, 'my': 1.0, 'eastern': 1.0, 'protection': 1.0, 'package': 1.0, 'king': 1.0, 'recommended': 1.0, 'one': 1.0, 'for': 2.0, 'good': 1.0, 'someone': 1.0, 'piece': 1.0}
Word element => {'cup': 1.0, 'my': 1.0, 'bought': 1.0, 'i': 2.0, 'bottle': 1.0, 'drink': 1.0, 'water': 2.0, 'works': 1.0, 'this': 3.0, 'it': 2.0, 'he': 1.0, 'with': 1.0, 'seep': 1.0, 'have': 1.0, 'own': 1.0, 'problem': 1.0, 'did': 1.0, 'from': 1.0, 'is': 1.0, 'isn': 1.0, 'fine': 1.0, 'deal': 1.0, 'the': 3.0, 'and': 3.0, 'why': 1.0, 'straw': 2.0, 'wanted': 1.0, 'had': 1.0, 'his': 1.0, 'year': 1.0, 'almost': 1.0, 't': 2.0, 'a': 2.0, 'old': 1.0, 'hasn': 1.0, 'to': 2.0, 'any': 1.0, 'me': 1.0, 'not': 1.0, 'breaker': 1.0, 'that': 1.0, 'some': 1.0, 'pressure': 1.0, 'out': 1.0, 'in': 1.0, '2': 1.0, 'can': 2.0, 'build': 1.0, 'up': 1.0, 'of': 1.0, 'top': 1.0}
Word element => {'asked': 1.0, 'for': 1.0, 'could': 1.0, 'everything': 1.0, 'put': 1.0, 'stay': 1.0, 'but': 1.0, 'i': 1.0, 'or': 1.0, 'slide': 1.0, 'they': 2.0, 'the': 1.0, 'wash': 1.0, 'up': 2.0, 'and': 1.0, 'have': 1.0, 't': 1.0, 'carrier': 1.0, 'well': 1.0, 'also': 1.0, 'down': 1.0, 'protect': 1.0, 'don': 1.0}
Word element => {'inexpensive': 1.0, 'enough': 1.0, 'but': 1.0, 'would': 1.0, 'probably': 1.0, 'should': 1.0, 'frayed': 1.0, 'caught': 1.0, 'velcro': 1.0, 'that': 1.0, 'complaint': 1.0, 'use': 1.0, '2': 1.0, 'almost': 1.0, 'after': 1.0, 'insulation': 1.0, 'providing': 1.0, 'completely': 1.0, 'fine': 1.0, 'opposite': 1.0, 'into': 1.0, 'having': 1.0, 'even': 1.0, 'wipe': 1.0, 'only': 1.0, 'grab': 1.0, 'far': 1.0, 'love': 1.0, 'great': 2.0, 'off': 1.0, 'own': 1.0, 'its': 1.0, 'in': 1.0, 'pop': 1.0, 'months': 1.0, '64': 1.0, 'better': 1.0, 'pack': 1.0, 'partially': 1.0, 'just': 2.0, 'used': 2.0, 'have': 2.0, 'inside': 3.0, 'up': 1.0, 'favorite': 1.0, 'lining': 1.0, 'end': 2.0, 'each': 1.0, 'at': 1.0, 'is': 5.0, 'holds': 1.0, 'reach': 1.0, 'huge': 1.0, 'like': 1.0, 'works': 1.0, 'without': 2.0, 'actually': 1.0, 'trim': 1.0, 'brother': 1.0, 'fabric': 1.0, 'for': 4.0, 'share': 1.0, 'shut': 1.0, 'room': 1.0, 'opening': 2.0, 'about': 2.0, 'loaded': 1.0, 'double': 1.0, 'pocket': 3.0, 'lime': 1.0, 'be': 2.0, 'out': 1.0, 'keeping': 1.0, 'put': 1.0, '16': 1.0, 'wide': 1.0, 'has': 3.0, 'looks': 1.0, 'my': 3.0, 'a': 10.0, 'so': 1.0, 'lightweight': 1.0, 'zips': 2.0, 'being': 1.0, 'very': 2.0, 'high': 1.0, 'to': 5.0, 'outside': 1.0, 'looking': 1.0, 'bag': 7.0, 'received': 1.0, 'held': 1.0, 'one': 1.0, 'lot': 1.0, 'too': 1.0, 'green': 1.0, 'and': 7.0, 'i': 8.0, 'nice': 2.0, 'two': 2.0, '4': 1.0, 'x7': 1.0, 'are': 2.0, 'reviewers': 1.0, 'highly': 1.0, 'bottle': 1.0, 'this': 2.0, 'recommend': 1.0, 'full': 1.0, 'strap': 1.0, 'provided': 1.0, 'choice': 1.0, 'able': 1.0, 'girly': 1.0, 'four': 1.0, 'turned': 1.0, 'husband': 1.0, 'had': 1.0, 'it': 8.0, 'thought': 1.0, 'was': 1.0, 'making': 1.0, 'bit': 1.0, 'however': 1.0, 'easy': 1.0, 'fisher': 1.0, 'find': 1.0, 'items': 2.0, 'there': 1.0, 'open': 3.0, 'x11': 1.0, 'on': 4.0, 'web': 1.0, '3': 1.0, 'gift': 1.0, 'side': 2.0, 'the': 19.0, 'of': 4.0, 'approx': 1.0, 'pockets': 2.0, 'plenty': 1.0, 'with': 4.0, 'complain': 1.0, 'features': 1.0, 'top': 3.0, 'measures': 1.0, 'other': 1.0, 'an': 2.0, 'strip': 1.0, 'zipper': 1.0, 'wipes': 4.0, 'nylon': 1.0, 'never': 1.0, 'some': 1.0, 'box': 2.0, 'price': 1.0, 'as': 1.0, 'bags': 1.0, 'itself': 1.0, 'not': 2.0, 'asked': 1.0, 'still': 1.0, 'moist': 1.0}
Word element => {'diaper': 1.0, 'an': 1.0, 'issues': 1.0, 'well': 1.0, 'stick': 1.0, 'those': 1.0, 'not': 1.0, 'velcro': 2.0, 'zipper': 1.0, 'cover': 1.0, 'top': 1.0, 'wipes': 1.0, 'doesn': 1.0, 'put': 2.0, 'too': 1.0, 'and': 2.0, 'other': 1.0, 'wiped': 1.0, 'so': 2.0, 'wear': 1.0, 'however': 1.0, 'after': 1.0, 'happened': 1.0, 'six': 1.0, 'about': 1.0, 'okay': 2.0, 'just': 1.0, 'it': 3.0, 'this': 2.0, 'first': 1.0, 'great': 1.0, 'the': 4.0, 'bag': 3.0, 'i': 2.0, 'junk': 1.0, 'loved': 1.0, 'there': 2.0, 'instead': 1.0, 'loo': 1.0, 'normal': 1.0, 'wipe': 1.0, 'is': 4.0, 'more': 1.0, 'comes': 1.0, 'at': 1.0, 'of': 2.0, 'once': 1.0, 'case': 1.0, 'that': 2.0, 'included': 1.0, 'in': 2.0, 'dried': 1.0, 'out': 1.0, 'months': 1.0, 'one': 1.0, 'day': 1.0, 'does': 1.0, 'tear': 1.0, 'than': 2.0, 't': 1.0, 'we': 2.0, 'a': 2.0}
Word element => {'color': 1.0, 'excellent': 1.0, 'ride': 1.0, 'baby': 1.0, 'a': 2.0, 'perfect': 1.0, 'bag': 1.0, 'combination': 1.0, 'comfortable': 1.0, 'many': 1.0, 'good': 1.0, 'has': 1.0, 'for': 1.0, 'quality': 1.0, 'pockets': 1.0, 'and': 1.0, 'looks': 1.0, 'size': 1.0, 'right': 1.0, 'your': 1.0}
Word element => {'stars': 1.0, 'five': 1.0, 'and': 1.0, 'strap': 1.0, 'given': 1.0, 'love': 1.0, 'would': 1.0, 'the': 4.0, 'have': 1.0, 'bag': 1.0, 'design': 1.0, 'we': 1.0, 'use': 1.0, 'already': 1.0, 'problem': 1.0, 'is': 1.0, 'only': 1.0, 'it': 2.0, 'with': 1.0, 'shoulder': 1.0, 'tore': 1.0, 'out': 1.0, 'of': 1.0, 'moderate': 1.0}
Word element => {'charm': 1.0, 'like': 1.0, 'by': 1.0, 'wipes': 1.0, 'parent': 1.0, '40': 1.0, 'works': 1.0, 'only': 1.0, 'it': 6.0, 'improvised': 1.0, 'this': 1.0, 'i': 1.0, 'or': 1.0, 'us': 1.0, 'less': 1.0, 'daughter': 1.0, 'pop': 1.0, 'and': 1.0, 'too': 1.0, 'r': 1.0, 'ct': 1.0, 'dispenser': 1.0, 'stay': 2.0, 'burlington': 1.0, 'at': 1.0, 'to': 1.0, 'totally': 1.0, 'choice': 1.0, 'shut': 2.0, 'short': 1.0, 'toys': 1.0, 'bag': 1.0, 'the': 4.0, 'my': 1.0, 'wipe': 1.0, 'baby': 1.0, 'thing': 1.0, 'about': 1.0, 'where': 1.0, 'love': 1.0, 'for': 1.0, 'expensive': 1.0, 'part': 1.0, 'will': 2.0, 'but': 2.0, 'was': 1.0, 'doesn': 1.0, 'with': 1.0, 'complain': 1.0, 'is': 2.0, 'shuts': 1.0, 'open': 1.0, 'than': 1.0, 'because': 1.0, 'snaps': 1.0, 'randomly': 1.0, 'in': 1.0, 'a': 1.0, 's': 1.0, 't': 1.0, 'we': 1.0}
Word element => {'impressed': 1.0, 'm': 1.0, 'easy': 1.0, 'color': 1.0, 'neutral': 1.0, 'this': 1.0, 'bag': 1.0, 'what': 1.0, 'with': 1.0, 'is': 2.0, 'a': 1.0, 'to': 1.0, 'exactly': 1.0, 'i': 2.0, 'organize': 1.0, 'it': 3.0, 's': 2.0, 'and': 1.0, 'very': 1.0, 'wanted': 1.0, 'really': 2.0, 'sturdy': 1.0, 'good': 1.0}
Word element => {'definitely': 1.0, 'would': 1.0, 'i': 1.0, 'also': 1.0, 'you': 1.0, 'easy': 1.0, 'three': 1.0, 'nipples': 1.0, 'makes': 1.0, 'munshkin': 1.0, 'free': 1.0, 'parts': 1.0, 'top': 1.0, 'and': 2.0, 'not': 1.0, 'me': 1.0, 'loading': 1.0, 'like': 1.0, 'in': 2.0, 'dishwasher': 1.0, 'other': 1.0, 'this': 2.0, 'it': 3.0, 'really': 1.0, 'longer': 1.0, 'that': 1.0, 'basket': 2.0, 'recommend': 1.0, 'was': 1.0, 's': 1.0, 'a': 2.0, 'the': 2.0, 'ones': 1.0, 'more': 1.0, 'slit': 1.0, 'than': 1.0, 'important': 1.0, 'bottle': 1.0, 'so': 1.0, 'fits': 1.0, 'to': 1.0, 'as': 1.0, 'mom': 1.0, 'of': 1.0, 'size': 1.0, 'convenience': 1.0, 'are': 1.0, 'wether': 1.0, 'have': 1.0, 'born': 1.0, 'bottles': 1.0, 'or': 1.0}
Word element => {'situation': 1.0, 'look': 1.0, 'beware': 1.0, 'is': 1.0, 'little': 1.0, 'be': 1.0, 'to': 1.0, 'seems': 1.0, 'or': 1.0, 'should': 1.0, 'did': 1.0, 'problem': 1.0, 'for': 1.0, 'one': 2.0, 'top': 1.0, 'stretch': 1.0, 'easy': 1.0, 'the': 8.0, 'package': 2.0, 'like': 1.0, 'i': 7.0, 'loading': 1.0, 'then': 1.0, 'born': 2.0, 'have': 1.0, 'not': 1.0, 'than': 1.0, 'because': 1.0, 'into': 1.0, 'basket': 4.0, 'just': 2.0, 'silicone': 1.0, 'on': 1.0, 'free': 2.0, 'time': 1.0, 'a': 3.0, 'outer': 1.0, 'showed': 1.0, 'return': 2.0, 'returned': 1.0, 'again': 1.0, 'am': 1.0, 'when': 1.0, 'it': 3.0, 'carefully': 1.0, 'this': 2.0, 'and': 4.0, 'wondering': 1.0, 'done': 1.0, 'amazon': 1.0, 'apologized': 1.0, 'second': 1.0, 'called': 1.0, 'was': 2.0, 'thought': 1.0, 'purchased': 2.0, 'had': 1.0, 'my': 1.0, 'another': 1.0, 'person': 1.0, 'shown': 1.0, 'arrived': 1.0, 'if': 1.0, 'same': 1.0, 'bigger': 1.0, 'keep': 1.0, 'at': 1.0}
Word element => {'how': 1.0, 'room': 1.0, 'guests': 1.0, 'living': 1.0, 'in': 1.0, 'station': 1.0, 'have': 1.0, 'are': 1.0, 'actually': 1.0, 'we': 1.0, 'is': 1.0, 'second': 1.0, 'looks': 1.0, 'our': 2.0, 'that': 1.0, 'large': 1.0, 'love': 1.0, 'and': 2.0, 'table': 1.0, 'changing': 3.0, 'as': 3.0, 'easily': 1.0, 'glides': 1.0, 'commenting': 1.0, 'drawer': 1.0, 'it': 3.0, 'this': 2.0, 'deep': 1.0, 'great': 1.0, 'the': 2.0, 'top': 1.0, 'enough': 1.0, 'to': 1.0, 'on': 2.0, 'story': 1.0, 'middle': 1.0, 'well': 1.0, 'a': 1.0, 'amount': 1.0, 'always': 1.0, 'of': 3.0, 'toys': 1.0, 'stylish': 1.0, 's': 1.0, 'equipment': 1.0}
Word element => {'ikea': 1.0, 'from': 1.0, 'crib': 1.0, 'our': 1.0, 'looks': 1.0, 'color': 1.0, 'in': 1.0, 'dent': 1.0, 'they': 1.0, 'black': 1.0, 'a': 2.0, 'but': 1.0, 'immediately': 1.0, 'new': 1.0, 'top': 2.0, 'it': 1.0, 'with': 2.0, 'service': 1.0, 'sent': 1.0, 'came': 1.0, 'what': 1.0, 'exactly': 1.0, 'great': 2.0, 'the': 2.0, 'replace': 1.0, 'and': 1.0, 'to': 1.0, 'wanted': 1.0, 'we': 1.0, 'brown': 1.0, 'expected': 1.0}
Word element => {'highly': 1.0, 'with': 1.0, 'disappointed': 1.0, 'm': 1.0, 'used': 1.0, 'likely': 1.0, 'than': 1.0, 'as': 1.0, 'to': 2.0, 'was': 1.0, 'walk': 1.0, 'however': 1.0, 'not': 2.0, 'just': 2.0, 'very': 1.0, 'trust': 1.0, 'dresser': 1.0, 'together': 2.0, 'the': 2.0, 'great': 1.0, 'more': 1.0, 'is': 2.0, 'sturdy': 2.0, 'of': 1.0, 'aren': 1.0, 'but': 2.0, 'i': 3.0, 'took': 1.0, 'you': 1.0, 'when': 1.0, 'product': 1.0, 'for': 1.0, 'supposed': 1.0, 'it': 5.0, 'picture': 1.0, 'wouldn': 1.0, 'this': 2.0, 'away': 1.0, 'rated': 1.0, 'baby': 1.0, 'put': 1.0, 'on': 1.0, 'get': 1.0, 'easy': 1.0, 'came': 2.0, 'item': 1.0, 'will': 1.0, 'missing': 1.0, 't': 2.0, 's': 3.0, 'a': 2.0, 'while': 1.0, 'part': 1.0, 'know': 1.0, 'table': 1.0, 'which': 1.0, 'forever': 1.0, 'be': 1.0, 'putting': 1.0, 'here': 1.0}
Word element => {'expensive': 1.0, 'll': 1.0, 'though': 1.0, 'complete': 1.0, 'once': 1.0, 'plain': 1.0, 'sometimes': 1.0, 'ambiguous': 1.0, 'directions': 1.0, 'was': 1.0, 'hours': 1.0, '5': 1.0, 'literally': 1.0, 'spend': 1.0, 'prepare': 1.0, 'say': 1.0, 'just': 1.0, 'well': 1.0, 'i': 1.0, 'that': 1.0, 'important': 1.0, 'depends': 1.0, 'thought': 1.0, 'it': 6.0, 'but': 2.0, 'terribly': 1.0, 'mismatching': 1.0, 'avoid': 1.0, 'shore': 1.0, 'south': 1.0, '6': 1.0, 'drawer': 1.0, 'on': 3.0, 'make': 1.0, 'furniture': 1.0, 'having': 1.0, 'assembly': 1.0, 'than': 2.0, 'also': 1.0, 'clothing': 1.0, 'about': 1.0, 'without': 1.0, 'place': 1.0, 'offer': 1.0, 'compartment': 1.0, 'other': 1.0, 'are': 2.0, 'diapers': 1.0, 'sticking': 1.0, 'wipes': 1.0, 'last': 1.0, 'personally': 1.0, 'baby': 2.0, 'don': 1.0, 'pad': 1.0, 'top': 2.0, 'collection': 1.0, 'and': 6.0, 'end': 1.0, 'more': 1.0, 'considering': 1.0, 'its': 1.0, 'color': 1.0, 'one': 1.0, 'to': 8.0, 'any': 1.0, 'outside': 1.0, 'least': 1.0, 'for': 3.0, 'over': 2.0, 'open': 1.0, 'put': 1.0, 'match': 1.0, 'much': 2.0, 'changing': 2.0, 'how': 2.0, 'parts': 1.0, 'ample': 1.0, 'steal': 1.0, 'with': 2.0, 'convenient': 1.0, 'tables': 1.0, 'side': 1.0, 'joke': 1.0, 'lastly': 1.0, 'left': 1.0, 'worth': 1.0, 'almost': 1.0, 'go': 1.0, 'a': 2.0, 't': 1.0, 'this': 4.0, 'sen': 1.0, 'we': 2.0, 'wrong': 1.0, 'style': 1.0, 'shelves': 1.0, 'changer': 1.0, 'super': 1.0, 'would': 3.0, 'some': 1.0, 'look': 1.0, 'is': 5.0, 'at': 2.0, 'space': 2.0, 'three': 1.0, 'extras': 1.0, 'from': 1.0, 'hide': 1.0, 'what': 1.0, 'you': 2.0, 'finish': 1.0, 'want': 1.0, 'weary': 1.0, 'finally': 1.0, 'drawers': 1.0, 'great': 1.0, 'two': 1.0, 'nice': 1.0, 'very': 1.0, 'constantly': 1.0, 'so': 2.0, 'quite': 1.0, 'darker': 1.0, 'looks': 2.0, 'there': 1.0, 'black': 1.0, 'expected': 1.0, 'be': 2.0, '100': 1.0, 'another': 1.0, 'trying': 1.0, '34': 2.0, 'the': 8.0, 'of': 1.0, 'recommend': 1.0, 'features': 1.0, 'crib': 1.0, 'set': 2.0, 'or': 1.0}
Word element => {'fair': 1.0, 'if': 1.0, 'quality': 1.0, 'paid': 1.0, 'price': 1.0, 'consider': 1.0, 'of': 1.0, 'to': 2.0, 'had': 1.0, 'thing': 1.0, 'and': 3.0, 'took': 1.0, 'i': 4.0, 'me': 1.0, 'man': 1.0, 'ever': 1.0, 'time': 1.0, 'it': 4.0, 'he': 1.0, 'changing': 1.0, 'very': 1.0, 'read': 1.0, 'is': 2.0, 'fine': 1.0, 'the': 8.0, 'hours': 1.0, 'four': 1.0, 'most': 2.0, 'dents': 1.0, 'consuming': 1.0, 'out': 1.0, 'together': 2.0, 'handy': 1.0, 'draw': 1.0, 'table': 1.0, 'dad': 2.0, 'know': 1.0, 'just': 1.0, 'my': 2.0, 'owned': 1.0, 'shop': 1.0, 'a': 1.0, 'front': 1.0, 'instruction': 1.0, 'this': 1.0, 'mechanic': 1.0, 'carefully': 1.0, 'you': 1.0, 'think': 1.0, 'put': 2.0, 'on': 1.0, 'top': 1.0, 'have': 2.0, 'small': 1.0, 'enough': 1.0, 'chip': 1.0}
Word element => {'getting': 1.0, 'your': 1.0, 'ensure': 1.0, 'read': 1.0, 'at': 1.0, 'or': 1.0, 'sheet': 3.0, 'everything': 2.0, '8': 2.0, 'but': 2.0, 'an': 2.0, 'store': 1.0, 'recommend': 1.0, 'in': 1.0, 'this': 1.0, 'looks': 1.0, 'it': 1.0, 'the': 5.0, 'great': 1.0, 'with': 3.0, 'piece': 4.0, 'extra': 2.0, 'not': 2.0, '9': 2.0, 'know': 1.0, 'listing': 2.0, '34': 4.0, 'set': 4.0, 'you': 2.0, 'crib': 1.0, 'to': 1.0, 'least': 1.0, 'actual': 1.0, 'as': 1.0, 'a': 2.0, 'titles': 1.0, 'different': 2.0, 'find': 1.0, 'than': 1.0, 'carters': 2.0, 'would': 3.0, 'dishonest': 1.0, 'color': 1.0, 'what': 2.0, 'is': 4.0, 'more': 1.0, 'comes': 1.0, 'and': 1.0, 'brand': 1.0, 'them': 1.0, 'baby': 1.0, 'their': 1.0, 'within': 1.0, 'supermall': 1.0, 'be': 1.0, 'appropriate': 1.0, 'i': 1.0}
Word element => {'recommended': 1.0, 'etc': 1.0, 'books': 1.0, 'wipes': 1.0, 'highly': 1.0, 'baby': 1.0, 'several': 1.0, 'on': 1.0, 'for': 2.0, 'bought': 1.0, 'enough': 1.0, 'bit': 1.0, 'size': 1.0, 'a': 2.0, 'wife': 1.0, 's': 1.0, 'it': 3.0, 'my': 1.0, 'the': 1.0, 'bottles': 1.0, 'bigger': 1.0, 'she': 1.0, 'diapers': 1.0, 'but': 1.0, 'thought': 1.0, 'was': 1.0, 'really': 1.0, 'as': 1.0, 'big': 1.0, 'gift': 1.0, 'still': 1.0, 'cute': 1.0}
Word element => {'excellent': 1.0, 'backpack': 1.0, 'quality': 1.0, 'inside': 1.0, 'the': 4.0, 'everything': 1.0, 'fit': 1.0, 'it': 1.0, 'this': 1.0, 'bag': 1.0, 'use': 1.0, 'pad': 1.0, 'baby': 1.0, 'and': 2.0, 'as': 1.0, 'changing': 1.0, 'very': 1.0, 'for': 1.0, 'comfortable': 1.0, 'i': 2.0, 'lot': 1.0, 'compact': 1.0, 'is': 2.0, 'in': 1.0, 'perfect': 1.0, 'can': 2.0, 'size': 1.0, 'a': 2.0, 'of': 1.0, 'compartments': 1.0}
Word element => {'at': 1.0, 'ruffles': 2.0, 'did': 1.0, 'have': 1.0, 'a': 1.0, 'work': 1.0, 'doesn': 1.0, 'will': 2.0, 'but': 2.0, 't': 1.0, 'the': 1.0, 'these': 1.0, 'i': 1.0, 'matched': 1.0, 'specific': 1.0, 'bottom': 1.0, 'search': 1.0, 'for': 1.0, 'leggings': 1.0, 'do': 1.0, 'and': 1.0, 'with': 1.0, 'it': 1.0, 'still': 1.0}
Word element => {'pleased': 1.0, 'm': 1.0, 'vibrant': 1.0, 'colors': 1.0, 'is': 1.0, 'very': 1.0, 'construction': 1.0, 'the': 2.0, 'herself': 1.0, 'confiscated': 1.0, 'anticipated': 1.0, 'using': 1.0, 'daughter': 1.0, 'when': 1.0, 'older': 1.0, 'advertised': 1.0, 'but': 1.0, 'crawling': 1.0, 'were': 1.0, 'these': 1.0, 'tight': 1.0, 'my': 1.0, 'starts': 1.0, 'has': 1.0, 'they': 1.0, 'year': 1.0, 'leggings': 1.0, 'knee': 1.0, 'we': 1.0, 'she': 1.0, 'mid': 1.0, 'baby': 2.0, 'them': 4.0, 'out': 1.0, 'i': 3.0, 'old': 1.0, 'guess': 1.0, 'wears': 1.0, 'calf': 1.0, 'her': 2.0, 'long': 1.0, 'our': 1.0, 'as': 1.0, 'to': 1.0, 'over': 1.0, 'and': 2.0, 'getting': 1.0, 'for': 1.0, 'fit': 1.0, '7': 1.0, 'legs': 1.0, 'll': 1.0, 'be': 1.0, 'plenty': 1.0, 'of': 2.0, 'use': 1.0}
Word element => {'what': 1.0, 'anything': 1.0, 'contain': 1.0, 'whole': 1.0, 'won': 1.0, 'britax': 1.0, 'of': 3.0, 'them': 1.0, '70': 1.0, 'covers': 1.0, 'it': 4.0, 'with': 1.0, 'bottom': 1.0, 'perfectly': 1.0, 'do': 1.0, 'in': 1.0, 'the': 4.0, 't': 1.0, 'these': 1.0, 'currently': 1.0, 'great': 1.0, 'for': 1.0, 'fit': 1.0, 'rear': 2.0, 'really': 1.0, 'is': 3.0, '07': 1.0, 'but': 1.0, 'back': 1.0, 'suburban': 1.0, 'seat': 4.0, 'our': 3.0, 'spilled': 1.0, 'none': 1.0, 'designed': 1.0, 'covered': 1.0, 'anyway': 1.0, 'perfect': 1.0, 'full': 1.0, 'so': 1.0, 'under': 1.0, 'facing': 1.0, 'very': 1.0, 'pleased': 1.0, 'g3': 1.0, 'value': 1.0, 'and': 1.0, 'too': 1.0, 'does': 1.0, 'exactly': 1.0}
Word element => {'enough': 1.0, 'the': 1.0, 'down': 1.0, 'tighten': 1.0, 'difficult': 1.0, 'good': 1.0, 'while': 1.0, 'took': 1.0, 'keyfit': 1.0, 'using': 1.0, 'm': 1.0, 'now': 2.0, 'right': 2.0, 'cr': 1.0, 'honda': 1.0, 'really': 1.0, 'on': 1.0, 'put': 1.0, 'ready': 1.0, 'have': 1.0, 'seats': 1.0, 'install': 2.0, 'with': 1.0, 'leather': 1.0, 'crash': 1.0, 'my': 3.0, 'damage': 1.0, 'chicco': 1.0, 'was': 4.0, 'taking': 1.0, 'hesitant': 1.0, 'out': 2.0, 'car': 1.0, 'happening': 1.0, 'how': 1.0, 'to': 7.0, 'seat': 1.0, 'because': 2.0, 'in': 2.0, 'i': 6.0, 'base': 1.0, 'after': 1.0, 'tested': 1.0, 'realized': 1.0, 'want': 1.0, 'a': 4.0, 'mat': 4.0, 'cleaning': 1.0, 'did': 1.0, 'compromise': 1.0, '30': 1.0, 'found': 1.0, 'this': 3.0, 'it': 4.0, 'safety': 1.0, 'when': 1.0, 'been': 2.0, 'that': 1.0, 'well': 1.0, 'has': 1.0, 'not': 1.0, 'approved': 1.0, 'v': 1.0, 'and': 1.0, 'much': 1.0, 'try': 1.0, 'very': 1.0, 'get': 1.0, 'easy': 1.0, 'for': 1.0, 'fit': 1.0}
Word element => {'slide': 1.0, 'won': 1.0, 'i': 1.0, 'odyssey': 1.0, 'color': 1.0, 'honda': 1.0, 't': 1.0, 'great': 1.0, 'the': 1.0, '2014': 1.0, 'fits': 1.0, 'than': 1.0, 'loving': 1.0, 'well': 1.0, 'think': 1.0, 'its': 1.0, 'bottom': 1.0, 'better': 1.0, 'it': 2.0, 'this': 1.0, 'grey': 1.0, 'product': 1.0, 'material': 1.0, 'in': 1.0, 'key': 1.0, 'is': 1.0}
Word element => {'wonderfully': 1.0, 'cars': 1.0, 'new': 1.0, 'its': 1.0, 'seats': 1.0, 'and': 1.0, 'so': 1.0, 'far': 1.0, 'this': 1.0, 'is': 1.0, 'a': 1.0, 'protecting': 1.0, 'seat': 1.0, 'my': 1.0, 'are': 1.0, 'it': 1.0, 'great': 1.0, 'cover': 1.0, 'we': 1.0, 'loving': 1.0}
Word element => {'safety': 1.0, 'child': 1.0, 'of': 1.0, 'edges': 1.0, 'the': 2.0, 'from': 1.0, 'nice': 1.0, 'our': 1.0, 'protective': 1.0, 'expected': 1.0, 'matt': 1.0, 'product': 1.0, 'is': 1.0, 'protects': 1.0, 'seats': 2.0, 'and': 1.0, 'leather': 1.0, 'as': 1.0}
Word element => {'cars': 1.0, 'whenever': 1.0, 'are': 1.0, 'dents': 2.0, 'vacuum': 1.0, 'to': 1.0, 'had': 1.0, 'in': 1.0, 'check': 1.0, 'see': 1.0, 'can': 1.0, 'love': 1.0, 'huge': 1.0, 'seats': 3.0, 'and': 1.0, 'remove': 1.0, 'on': 2.0, 'i': 5.0, 'product': 1.0, 'this': 2.0, 'before': 1.0, 'our': 1.0, 'car': 2.0, 'cause': 1.0, 'gone': 1.0, 'britax': 1.0, 'of': 1.0, 'these': 1.0, 'the': 3.0, 'monster': 1.0, 'put': 1.0}
Word element => {'my': 1.0, 'the': 1.0, 'full': 1.0, 'have': 1.0, 'size': 1.0, 'great': 1.0, 'seats': 1.0, 'and': 1.0, 'protect': 1.0, 'mats': 1.0, 'been': 1.0, 'easy': 1.0, 'to': 1.0, 'install': 1.0}
Word element => {'car': 1.0, 'barely': 1.0, 'little': 1.0, 'was': 1.0, 'wish': 1.0, 'too': 1.0, 'just': 1.0, 'seat': 3.0, 'wider': 1.0, 'have': 1.0, 'a': 2.0, 'i': 2.0, 'this': 1.0, 'it': 4.0, 'covers': 1.0, 'marks': 1.0, 'does': 1.0, 'what': 1.0, 'lot': 1.0, 'says': 1.0, 'of': 1.0, 'keep': 1.0, 'in': 1.0, 'don': 1.0, 'helps': 1.0, 'behind': 1.0, 't': 1.0, 'the': 4.0, 'my': 1.0, 'leather': 1.0, 'and': 2.0, 'crumbs': 1.0, 'spills': 1.0, 'off': 1.0}
Word element => {'history': 1.0, 's': 1.0, 'ugly': 1.0, 'but': 1.0, 'anything': 1.0, 'not': 1.0, 'could': 1.0, 'and': 1.0, 'rug': 3.0, 'that': 1.0, 'backed': 1.0, 'rubber': 1.0, 'my': 1.0, 'town': 1.0, 'small': 1.0, 'of': 1.0, 'rid': 1.0, 'am': 1.0, 'live': 1.0, 'using': 1.0, 'find': 1.0, 'protect': 1.0, 'a': 1.0, 'was': 1.0, 'now': 1.0, 'to': 1.0, 'i': 2.0, 'cloth': 1.0, 'seats': 1.0, 'works': 1.0, 'the': 3.0, 'great': 1.0, 'in': 1.0}
Word element => {'stick': 1.0, 'best': 1.0, 'bench': 1.0, 'they': 1.0, 'and': 1.0, 'too': 1.0, 'were': 1.0, 'dionos': 2.0, 'my': 2.0, 'use': 1.0, 'i': 2.0, 'entirety': 1.0, 'protect': 1.0, 'protectors': 1.0, 'but': 1.0, 'will': 1.0, 'with': 1.0, 'only': 1.0, 'seat': 2.0, 'of': 1.0, 'are': 1.0, 'damaged': 1.0, 'heavy': 1.0, 'the': 5.0, 'these': 1.0, 'without': 1.0, 'limiting': 1.0, 'access': 1.0, 'a': 1.0, 'bauer': 1.0, 'car': 2.0, 'latches': 1.0, 'originally': 1.0, 'to': 2.0, 'had': 1.0, 'eddie': 1.0}
Word element => {'clean': 1.0, 'child': 1.0, 'damage': 1.0, 'looks': 1.0, 'normal': 1.0, 'great': 3.0, 'does': 2.0, 'a': 3.0, 'my': 1.0, 'the': 1.0, 'seat': 1.0, 'of': 1.0, 'protecting': 1.0, 'job': 2.0, 'from': 1.0, 'and': 1.0, 'very': 1.0, 'seats': 1.0}
Word element => {'car': 1.0, 'on': 1.0, 'leather': 1.0, 'color': 1.0, 'any': 1.0, 'bleed': 1.0, 'seats': 1.0, 'of': 1.0, 'and': 2.0, '1': 1.0, 'britax2': 1.0, 'not': 1.0, 'seat': 1.0, 'we': 1.0, 'majority': 1.0, 'hold': 1.0, 'to': 2.0, 'have': 1.0, 'able': 1.0, 'wide': 1.0, 'a': 1.0, 'scratches': 1.0, 'large': 1.0, 'most': 1.0, 'dents': 1.0, 'it': 1.0, 'importantly': 1.0, 'from': 1.0, 'protects': 1.0, 'expensive': 1.0, 'does': 1.0}
Word element => {'time': 1.0, 'all': 1.0, 'there': 1.0, 'grand': 1.0, 'for': 1.0, 'in': 1.0, 'my': 1.0, 'wanting': 1.0, 'i': 3.0, 'was': 1.0, 'the': 1.0, 't': 1.0, 'like': 2.0, 'seats': 1.0, 'and': 1.0, 'as': 1.0, 'children': 1.0, 'this': 1.0, 'it': 3.0, 's': 1.0, 'car': 1.0, 'that': 1.0, 'won': 1.0, 'really': 1.0, 'is': 1.0, 'easy': 2.0, 'out': 1.0}
Word element => {'in': 1.0, 'and': 1.0, 'however': 1.0, 'quality': 1.0, 'good': 1.0, 'cover': 1.0, 'front': 1.0, 'a': 1.0, 'hangs': 1.0, 'car': 1.0, 'slightly': 1.0, 'seat': 2.0, 'of': 1.0, 's': 1.0, '5': 1.0, 'pockets': 1.0, 'i': 1.0, 'old': 1.0, 'be': 1.0, 'year': 1.0, 'entire': 1.0, 'which': 1.0, 'like': 1.0, 'could': 1.0, 'over': 1.0, '4': 1.0, 'my': 1.0, 'the': 5.0, 'side': 1.0, 'little': 1.0, 'edge': 1.0, 'wider': 1.0, 'protector': 1.0, 'defeats': 1.0, 'to': 1.0, 'purpose': 1.0, 'this': 1.0, 'it': 1.0}
Word element => {'have': 1.0, 'if': 1.0, 'seats': 1.0, 'black': 1.0, 'well': 1.0, 'or': 1.0, 'no': 1.0, 'been': 1.0, 'has': 1.0, 'there': 1.0, 'as': 1.0, 'indentions': 1.0, 'seat': 1.0, 'the': 1.0, 'more': 1.0, 'matches': 1.0, 'to': 2.0, 'product': 1.0, 'markings': 1.0, 'below': 1.0, 'protect': 1.0, 'what': 1.0, 'rare': 1.0, 'with': 1.0, 'advertised': 1.0, 'this': 1.0, 'it': 2.0, 'you': 1.0, 's': 2.0, 'that': 2.0, 'child': 1.0, 'rides': 1.0, 'leather': 2.0, 'my': 2.0, 'date': 1.0, 'seems': 1.0, 'in': 1.0, 'truck': 1.0, 'but': 1.0}
Word element => {'protection': 1.0, 'it': 2.0, 'with': 1.0, 'taken': 1.0, 'where': 1.0, 'by': 1.0, 'just': 1.0, 'not': 2.0, 'i': 5.0, 'did': 2.0, 'at': 1.0, 'and': 3.0, 'the': 10.0, 't': 1.0, 'fall': 1.0, 'is': 1.0, 'fine': 1.0, 'naturally': 1.0, 'let': 1.0, 'yet': 1.0, 'what': 1.0, 'seat': 3.0, 'to': 1.0, 'of': 2.0, 'installed': 1.0, 'seats': 1.0, 'quite': 1.0, 'kid': 1.0, 'junction': 1.0, 'can': 1.0, 'car': 2.0, 'carried': 1.0, 'on': 1.0, 'mud': 1.0, 'judge': 1.0, 'back': 1.0, 'top': 1.0, 'worked': 1.0, 'protects': 1.0, 'from': 1.0, 'do': 1.0, 'sand': 1.0, 'little': 1.0, 'flap': 1.0, 'shoes': 1.0, 'effectiveness': 1.0, 'have': 1.0, 'out': 1.0, 'so': 1.0}
Word element => {'better': 1.0, 'for': 1.0, 'both': 1.0, 'her': 1.0, 'of': 2.0, 'not': 1.0, 'car': 2.0, 'seat': 3.0, 'our': 2.0, 'inches': 1.0, 'than': 1.0, '5': 1.0, 'wide': 1.0, 'were': 1.0, 'protector': 1.0, 'wider': 1.0, 'narrower': 1.0, 'the': 2.0, 'edges': 1.0, 'granddaughter': 1.0, 'enough': 1.0, 're': 1.0, 'so': 1.0, 'problem': 1.0, 'if': 1.0, 'is': 1.0, 'with': 1.0, 'it': 6.0, 'sides': 1.0, 'something': 1.0, 'biggest': 1.0, 'would': 1.0, 'dig': 1.0, 'that': 1.0, 'into': 1.0, 'or': 1.0, 'underneath': 1.0, '4': 1.0, 'be': 1.0, 'this': 1.0, 'perfect': 1.0, 'in': 1.0, 's': 4.0, 'we': 1.0, 'using': 1.0, 'temporarily': 1.0, 'but': 1.0, 'are': 1.0, 'looking': 1.0, 'earnest': 1.0}
Word element => {'anyone': 1.0, 'keep': 1.0, 'recommend': 1.0, 'booster': 1.0, 'our': 2.0, 'the': 1.0, 'these': 1.0, 'seats': 1.0, 'they': 1.0, 'diono': 1.0, 'and': 1.0, 'perfectly': 1.0, 'getting': 1.0, 'with': 1.0, 'on': 1.0, 'fit': 1.0, 'spilled': 1.0, 'food': 1.0, 'car': 1.0, 'drinks': 1.0, 'from': 1.0, 'i': 1.0, 'would': 1.0, 'to': 1.0}
Word element => {'recommend': 1.0, 'seat': 1.0, 'car': 1.0, 'diono': 1.0, 'our': 1.0, 'with': 1.0, 'perfect': 1.0, 'slide': 1.0, 'would': 1.0, 'not': 1.0, 'or': 1.0, 'does': 2.0, 'protects': 1.0, 'what': 1.0, 'product': 1.0, 'to': 1.0, 'slip': 1.0, 'great': 1.0, 'supposed': 1.0, 'it': 1.0, 's': 1.0, 'and': 1.0, 'seats': 1.0}
Word element => {'others': 1.0, 'would': 1.0, 'i': 1.0, 'does': 1.0, 'type': 1.0, 'as': 1.0, 'to': 1.0, 'product': 2.0, 'purposedoesn': 1.0, 'recommend': 1.0, 'of': 1.0, 'good': 1.0, 'some': 1.0, 'its': 1.0, 'serves': 1.0, 'reviews': 1.0, 'this': 1.0, 't': 1.0, 'slide': 1.0, 'say': 1.0}
Word element => {'definitely': 1.0, 'these': 1.0, 'have': 1.0, 'were': 1.0, 'there': 1.0, 'while': 1.0, 'of': 2.0, 'bunch': 1.0, 'against': 1.0, 'hardly': 1.0, 'a': 2.0, 'the': 2.0, 'indentations': 1.0, 'on': 2.0, 'just': 1.0, 'trip': 1.0, 'left': 1.0, 'this': 2.0, 'it': 2.0, 'for': 1.0, 'van': 1.0, 'well': 1.0, 'has': 2.0, 'worked': 1.0, 'that': 1.0, 'long': 1.0, 'would': 1.0, 'new': 1.0, 'and': 4.0, 'seat': 1.0, 'as': 1.0, 'our': 1.0, 'any': 2.0, 'with': 1.0, 'leather': 2.0, 'seats': 1.0, 'protects': 1.0, 'take': 1.0, 'not': 3.0, 'minor': 1.0, 'spills': 2.0, 'will': 1.0, 'crumbs': 2.0, 'but': 1.0, 'two': 1.0, 'i': 2.0, 'is': 1.0, 'completely': 1.0, 'residue': 1.0, 'its': 1.0, 'recommend': 1.0, 'intended': 1.0, 'function': 1.0, 'after': 1.0, 'did': 1.0, 'out': 2.0, 'contain': 1.0, 'road': 1.0, 'great': 1.0, 'shook': 1.0}
Word element => {'and': 1.0, 'booster': 1.0, 'exactly': 1.0, 'we': 1.0, 'what': 1.0, 'looking': 1.0, 'i': 1.0, 'perfectly': 1.0, 'works': 1.0, 'it': 2.0, 'was': 1.0, 'vehicle': 1.0, 'use': 1.0, 'in': 1.0, 'for': 2.0, 'our': 2.0, 'backless': 1.0}
Word element => {'buy': 1.0, 'baby': 1.0, 'gets': 1.0, 'when': 1.0, 'stuff': 1.0, 'hold': 1.0, 'at': 1.0, 'pocket': 1.0, 'handy': 1.0, 'has': 1.0, 'bottom': 1.0, 'up': 1.0, 'messing': 1.0, 'from': 1.0, 'also': 1.0, 'in': 1.0, 'and': 2.0, 'skid': 1.0, 'leather': 2.0, 'my': 2.0, 'mat': 1.0, 'to': 1.0, 'matches': 1.0, 'car': 2.0, 'great': 2.0, 'the': 4.0, 'red': 1.0, 'older': 1.0, 'it': 2.0, 'this': 1.0, 'with': 1.0, 'a': 1.0, 'black': 1.0, 'stitching': 1.0, 'seat': 1.0, 's': 1.0, 'base': 1.0, 'seats': 1.0, 'non': 1.0, 'works': 1.0, 'even': 1.0, 'prevents': 1.0}
Word element => {'protector': 1.0, 'would': 1.0, 'is': 1.0, 'but': 1.0, 'items': 1.0, 'other': 1.0, 'toys': 1.0, 'putting': 1.0, 'for': 1.0, 'the': 2.0, 'as': 2.0, 'to': 2.0, 'be': 1.0, 'much': 1.0, 'nice': 1.0, 'a': 1.0, 'front': 1.0, 'seats': 1.0, 'installed': 1.0, 'seat': 1.0, 'know': 1.0, 'not': 2.0, 'that': 1.0, 'our': 2.0, 'pocket': 1.0, 'under': 1.0, 'and': 1.0, 'perfectly': 1.0, 'this': 2.0, 'going': 1.0, 'are': 1.0, 'protected': 1.0, 'deal': 1.0, 'on': 1.0, 'miscellaneous': 1.0, 'carseat': 1.0, 'does': 1.0, 'recommend': 1.0, 'breaker': 1.0, 'needed': 1.0, 'stretch': 1.0}
Word element => {'front': 1.0, 'bit': 1.0, 'a': 1.0, 'the': 1.0, 'roomy': 1.0, 'pockets': 1.0, 'wish': 1.0, 'were': 1.0, 'product': 1.0, 'more': 1.0, 'great': 1.0}
Word element => {'all': 1.0, 'at': 1.0, 'around': 1.0, 'mat': 1.0, 'thick': 1.0, 'nice': 1.0, 'the': 2.0, 'that': 1.0, 'leather': 1.0, 'and': 2.0, 'up': 1.0, 's': 1.0, 'it': 1.0, 'protects': 1.0, 'from': 1.0, 'a': 1.0, 'well': 1.0, 'dirt': 1.0, 'slide': 1.0, 'indentations': 1.0, 'seat': 1.0, 'not': 1.0, 'holds': 1.0, 'in': 1.0, 'heat': 1.0, 'does': 1.0}
Word element => {'far': 1.0, 'hopes': 1.0, 'much': 1.0, 'cover': 1.0, 'high': 1.0, 'protector': 1.0, 'brand': 1.0, 'have': 2.0, 'though': 1.0, 'how': 1.0, 'another': 1.0, 'owned': 1.0, 'thick': 1.0, 'about': 1.0, 'talk': 1.0, 'it': 8.0, 'this': 4.0, 'with': 1.0, 'up': 2.0, 'of': 3.0, 'bottom': 1.0, 'like': 2.0, 'chose': 1.0, 'and': 2.0, 'rating': 1.0, 'since': 1.0, 'has': 1.0, 'really': 2.0, 'said': 1.0, 'i': 9.0, '4': 1.0, 'held': 1.0, 'just': 1.0, 'not': 2.0, 'as': 2.0, 'seat': 3.0, 'can': 1.0, 'but': 1.0, 'will': 1.0, 'got': 1.0, 'a': 2.0, 't': 2.0, 'the': 2.0, 'bought': 1.0, 'haven': 1.0, 'product': 1.0, 'for': 2.0, 'very': 1.0, 'long': 1.0, 'because': 2.0, 'does': 3.0, 'reviews': 1.0, 'had': 1.0, 'so': 2.0, 'that': 1.0, 'interfere': 1.0, 'thicker': 1.0, 'car': 1.0}
Word element => {'with': 1.0, 'if': 1.0, 'sorry': 1.0, 'on': 3.0, 'put': 2.0, '3': 1.0, 'slots': 1.0, 'different': 1.0, 'her': 2.0, 'has': 1.0, 'bedrail': 1.0, 'enough': 2.0, 'up': 1.0, 'set': 1.0, 'just': 3.0, 'product': 1.0, 'toddler': 1.0, 'm': 1.0, 'in': 1.0, 'would': 4.0, 'super': 1.0, 'for': 2.0, 'decided': 1.0, 'very': 2.0, 'read': 1.0, 'inches': 1.0, 'and': 8.0, 'strap': 1.0, 'queen': 1.0, 'without': 1.0, 'fit': 7.0, 't': 4.0, 'we': 10.0, 'a': 8.0, 'closely': 1.0, 'get': 1.0, 'daughter': 1.0, 'got': 2.0, 'repeat': 1.0, 'didn': 2.0, 'wouldn': 2.0, 'instead': 1.0, 'purchased': 2.0, 'had': 1.0, 'length': 1.0, 'to': 8.0, 'bed': 6.0, 'at': 1.0, 'too': 1.0, 'lot': 1.0, 'twin': 3.0, 'frustrated': 1.0, 'nice': 1.0, 'because': 2.0, 'that': 3.0, 'been': 2.0, 'it': 12.0, 'wasted': 1.0, 'this': 3.0, 'together': 2.0, 'were': 1.0, 'full': 2.0, 'mattress': 2.0, 'first': 1.0, 'adjusting': 1.0, 'plush': 1.0, 'sized': 1.0, 'adjust': 2.0, 'disappointed': 1.0, 'our': 2.0, 'how': 1.0, 'see': 1.0, 'tried': 3.0, 'was': 1.0, 'about': 1.0, 'says': 1.0, 'something': 1.0, 'straps': 1.0, 'itself': 1.0, 'not': 3.0, 'getting': 1.0, 'new': 1.0, 'wide': 1.0, 'accordingly': 1.0, 'must': 1.0, 'have': 4.0, 'gotten': 1.0, 'or': 1.0, 'everything': 1.0, 'know': 1.0, 'went': 1.0, 'narrow': 1.0, 'only': 1.0, 'seemed': 1.0, 'certain': 1.0, 'sizes': 1.0, 'before': 2.0, 'now': 1.0, 'the': 6.0, 'of': 1.0, 'purchasing': 1.0, 'money': 1.0, 'trying': 1.0, 'safe': 1.0, 'daughters': 1.0, 'i': 2.0}
Word element => {'weight': 1.0, 'plastic': 1.0, 'on': 3.0, 'clips': 1.0, 'accidently': 1.0, 'she': 1.0, 'and': 3.0, 'get': 1.0, 'went': 1.0, 'my': 1.0, 'pull': 1.0, 'of': 1.0, 'the': 3.0, 'one': 2.0, 'bed': 3.0, 'for': 2.0, 'daughters': 1.0, 'pulled': 1.0, 'assume': 1.0, 'a': 1.0, 'in': 1.0, 'year': 1.0, 'three': 1.0, 'to': 1.0, 'old': 1.0, 'i': 1.0, 'set': 1.0, 'clip': 1.0, 'if': 1.0, 'broke': 1.0, 'easily': 1.0, 'not': 1.0, 'this': 1.0, 'is': 1.0, 'purchased': 1.0, 'what': 1.0, 'push': 1.0, 'are': 1.0, 'designed': 1.0, 'but': 1.0, 'toddler': 1.0, 'would': 2.0, 'or': 1.0, 'should': 1.0, 'know': 1.0, 'hold': 1.0, 'these': 3.0, 'some': 1.0}
Word element => {'highly': 1.0, 'toddler': 1.0, 'a': 1.0, 'not': 1.0, 'beds': 1.0, 'size': 1.0, 'queen': 1.0, 'is': 1.0, 'sturdy': 1.0, 'twin': 2.0, 'olds': 1.0, 'bed': 2.0, 'for': 3.0, 'fast': 1.0, 'color': 1.0, 'my': 1.0, 'only': 1.0, 'this': 1.0, 'it': 2.0, 'great': 1.0, 'i': 1.0, 's': 1.0, 'pink': 1.0, 'year': 1.0, 'very': 2.0, 'and': 2.0, 'recommend': 1.0, 'easy': 1.0, 'to': 1.0, 'install': 1.0, '3': 1.0, 'soft': 1.0, 'cute': 1.0, 'bought': 1.0, 'material': 1.0}
Word element => {'print': 1.0, 'fine': 1.0, 'read': 1.0, 'a': 1.0, 'with': 1.0, 'bed': 1.0, 'really': 1.0, 'like': 1.0, 'to': 1.0, 'product': 1.0, 'make': 1.0, 'the': 2.0, 'but': 1.0, 'didn': 1.0, 't': 1.0, 'toddler': 1.0, 'realize': 1.0, 'work': 1.0, 'not': 1.0, 'would': 1.0, 'sure': 1.0, 'it': 1.0}
Word element => {'secure': 1.0, 'and': 1.0, 'sturdy': 1.0, 'is': 1.0, 'bedrail': 1.0, 'storage': 1.0, 'in': 1.0, 'old': 1.0, 'frame': 1.0, 'to': 1.0, '3': 1.0, 'we': 2.0, '5': 1.0, 'year': 1.0, 'this': 1.0, 'have': 1.0, 'our': 1.0, 'south': 1.0, 'bought': 1.0, 'twin': 1.0, 'just': 1.0, 'because': 1.0, 'not': 1.0, 'a': 2.0, 'shore': 1.0, 'for': 1.0, 'transitioned': 1.0, 'bed': 4.0, 'sits': 1.0, 'the': 4.0, 'mattress': 1.0, 'her': 1.0, 'does': 1.0, 'box': 1.0, 'spring': 1.0}
Word element => {'really': 2.0, 'purchase': 1.0, 'use': 1.0, 'in': 1.0, 'not': 1.0, 'down': 1.0, 'and': 2.0, 'were': 1.0, 'they': 4.0, 'when': 1.0, 'daughter': 1.0, 'for': 1.0, 'bed': 1.0, 'up': 2.0, 'set': 1.0, 'of': 1.0, 'job': 1.0, 'once': 1.0, 'two': 2.0, 'happy': 1.0, 'my': 1.0, 'bought': 1.0, 's': 1.0, 'i': 1.0, 'weren': 1.0, 'nicely': 1.0, 'great': 1.0, 'these': 1.0, 't': 1.0, 'worked': 1.0, 'very': 1.0, 'store': 1.0, 'easy': 2.0, 'install': 1.0, 'put': 1.0, 'but': 1.0, 'man': 1.0, 'this': 1.0, 'with': 1.0, 'it': 1.0, 'to': 2.0, 'was': 1.0, 'a': 1.0}
Word element => {'top': 1.0, 'elephant': 1.0, 'not': 1.0, 'because': 1.0, 'her': 1.0, 'working': 1.0, 'color': 1.0, 'my': 1.0, 'great': 1.0, 'the': 3.0, 'out': 1.0, 'made': 1.0, 'love': 1.0, 'one': 1.0, 'for': 2.0, 'too': 1.0, 'when': 1.0, 'daughter': 1.0, 'girly': 1.0, 's': 2.0, 'bedrail': 1.0, 'install': 1.0, 'installed': 1.0, 'to': 1.0, 'turned': 1.0, 'was': 1.0, 'we': 1.0, 'finished': 1.0, 'and': 1.0, 'reading': 1.0, 'on': 1.0, 'instructions': 1.0, 'with': 1.0, 'this': 1.0, 'it': 3.0, 'after': 1.0, 'installation': 1.0, 'sense': 1.0, 'she': 1.0, 'easy': 1.0}
Word element => {'heartbeat': 1.0, 'again': 1.0, 'certainly': 1.0, 'would': 1.0, 'point': 1.0, 'fantastic': 1.0, '5': 1.0, '4': 1.0, 'giving': 1.0, 'am': 1.0, 'why': 1.0, 'so': 1.0, 'she': 1.0, 'unhappy': 1.0, 'event': 1.0, 'quite': 1.0, 'covers': 1.0, 'stop': 1.0, 'able': 2.0, 'came': 1.0, 'rails': 1.0, 'difficult': 1.0, 'scrape': 1.0, 'not': 1.0, 'style': 1.0, 'nice': 1.0, 'easily': 2.0, 'that': 5.0, 'been': 1.0, 'looking': 1.0, 'finish': 2.0, 'around': 1.0, 'more': 2.0, 'myself': 1.0, 'too': 1.0, 'tone': 1.0, 'shopped': 1.0, 'and': 9.0, 'across': 1.0, 'daughter': 2.0, 'crib': 7.0, 'pay': 1.0, 'most': 2.0, 'but': 3.0, 'was': 8.0, 'beautiful': 1.0, 'seemed': 1.0, 'store': 1.0, 'stars': 1.0, 'wanted': 2.0, 'color': 1.0, 'part': 1.0, 'rail': 1.0, 'this': 6.0, 'out': 2.0, 'absolutely': 1.0, 'instantly': 1.0, 'drawn': 1.0, 'for': 5.0, 'solid': 1.0, 'yet': 1.0, 'love': 1.0, 'expensive': 2.0, 'thought': 1.0, 'it': 7.0, 'a': 4.0, 'could': 1.0, 'cribs': 2.0, 'made': 1.0, 'assemble': 2.0, 'than': 1.0, 'while': 1.0, 'wood': 3.0, 'exactly': 1.0, 'my': 3.0, 'another': 1.0, 'written': 1.0, 'there': 1.0, 'the': 12.0, 'of': 5.0, 'they': 2.0, 'were': 4.0, 'all': 2.0, 'to': 6.0, 'as': 1.0, 'very': 5.0, 'willing': 1.0, 'price': 2.0, 'teeth': 1.0, 'cheaply': 1.0, 'unsturdy': 1.0, 'range': 1.0, 'ended': 1.0, 'up': 2.0, 'have': 1.0, 'is': 5.0, 'at': 1.0, 'found': 1.0, 'easy': 2.0, 'did': 1.0, 'by': 2.0, 'purchasing': 1.0, 'bought': 1.0, 'instructions': 1.0, 'i': 14.0, 'coming': 2.0, 'well': 1.0, 'plenty': 1.0, 'with': 1.0, 'any': 1.0, 'your': 1.0, 'furniture': 1.0, 'on': 2.0, 'enough': 1.0, 'follow': 1.0, 'purchase': 1.0, 'only': 2.0, 'off': 1.0, 'own': 1.0, 'dislike': 1.0, 'in': 5.0, 'burgundy': 1.0, 'gnawed': 1.0, 'what': 1.0, 'when': 1.0, 'her': 1.0}
Word element => {'would': 1.0, 'i': 1.0, 'it': 2.0, 'time': 1.0, 'finished': 1.0, 'very': 2.0, 'and': 2.0, 'will': 1.0, 'nice': 1.0, 'last': 1.0, 'well': 1.0, 's': 1.0, 'piece': 1.0, 'recommend': 1.0, 'sturdy': 1.0, 'some': 1.0, 'of': 1.0, 'furniture': 1.0, 'seems': 1.0, 'durable': 1.0, 'for': 1.0}
Word element => {'of': 1.0, 'good': 1.0, 'he': 1.0, 'have': 1.0, 't': 1.0, 'i': 1.0, 'yet': 1.0, 'bed': 1.0, 'one': 1.0, 'install': 1.0, 'out': 1.0, 'them': 1.0, 'to': 1.0, 'product': 1.0, 'easy': 1.0, 'and': 1.0, 'each': 1.0, 'two': 1.0, 'on': 2.0, 'son': 1.0, 'my': 1.0, 's': 1.0, 'side': 1.0, 'fallen': 1.0, 'hasn': 1.0}
Word element => {'girl': 1.0, 'walk': 1.0, 'when': 1.0, 'see': 1.0, 'not': 1.0, 'rail': 1.0, 'of': 1.0, 'on': 1.0, 'lettering': 1.0, 'bold': 1.0, 'bedrail': 1.0, 'child': 1.0, 'my': 2.0, 'purchase': 1.0, 'purchased': 1.0, 'pleased': 1.0, 'significantly': 1.0, 'and': 1.0, 'for': 1.0, 'bed': 1.0, 'one': 1.0, 'decided': 1.0, 'i': 4.0, 'night': 1.0, 'summer': 1.0, 'changed': 1.0, 'is': 1.0, 'was': 1.0, 'outside': 1.0, 'to': 2.0, 'something': 1.0, 've': 1.0, 'in': 3.0, 'also': 1.0, 'few': 1.0, 'blue': 1.0, 'middle': 1.0, 'black': 1.0, 'daughter': 1.0, 'room': 2.0, 'construction': 1.0, 'has': 1.0, 'the': 5.0, 'warning': 1.0, 'pole': 1.0, 'years': 1.0, 'onto': 1.0, 'hit': 1.0, 's': 2.0, 'ago': 1.0, 'a': 2.0, 'could': 1.0, 'it': 1.0, 'white': 1.0, 'during': 1.0, 'want': 1.0, 'message': 1.0, 'into': 1.0, 'protrudes': 1.0, 'that': 1.0, 'written': 1.0}
Word element => {'bed': 1.0, 'big': 1.0, 'needed': 1.0, 'boy': 1.0, 'what': 1.0, 'it': 3.0, 'baby': 1.0, 'pain': 1.0, 'a': 1.0, 'i': 1.0, 'does': 1.0, 'still': 1.0, 'to': 1.0, 'but': 1.0, 'all': 1.0, 'put': 1.0, 'not': 1.0, 'was': 1.0, 'work': 1.0, 'together': 1.0, 'in': 1.0, 'for': 2.0, 'though': 1.0}
Word element => {'a': 1.0, 'overall': 1.0, 'good': 1.0, 'job': 1.0, 'its': 2.0, 'not': 1.0, 'the': 3.0, 'product': 1.0, 'much': 1.0, 'price': 1.0, 'it': 1.0, 'but': 1.0, 'does': 1.0, 'matches': 1.0, 'for': 1.0, 'crib': 1.0, 'and': 1.0}
Word element => {'well': 1.0, 'cream': 1.0, 'diaper': 1.0, 'last': 1.0, 'also': 2.0, 'seems': 1.0, 'smell': 1.0, 'other': 2.0, 'it': 1.0, 'this': 2.0, 'suggest': 1.0, 'love': 1.0, 'for': 1.0, 'parents': 1.0, 'tried': 1.0, 'buy': 1.0, 'cloth': 1.0, 'but': 1.0, 'gifts': 1.0, 'haven': 1.0, 'don': 1.0, 'wipe': 1.0, 'baby': 2.0, 'the': 1.0, 'have': 1.0, 'including': 1.0, 'sprays': 1.0, 'forever': 1.0, 'their': 1.0, 'and': 2.0, 'to': 2.0, 'any': 1.0, 'as': 2.0, 'part': 1.0, 'in': 1.0, 'diapering': 1.0, 'shower': 1.0, 'of': 1.0, 'new': 1.0, 'am': 1.0, 'thirstiest': 1.0, 'general': 1.0, 'we': 3.0, 't': 2.0, 'a': 1.0, 'one': 1.0, 'huge': 1.0, 'i': 2.0, 'fan': 1.0, 'rash': 1.0, 'use': 1.0}
Word element => {'it': 1.0, 'love': 1.0, 'disappeared': 1.0, 'has': 1.0, 'rash': 1.0, 'diaper': 1.0, 's': 1.0, 'my': 1.0, 'disposable': 1.0, 'ever': 1.0, 'son': 1.0, 'with': 1.0, 'switched': 1.0, 'spray': 1.0, 'to': 1.0, 'this': 1.0, 'we': 1.0, 'cotton': 1.0, 'since': 1.0, 'wipes': 2.0, 'from': 1.0}
Word element => {'good': 1.0, 's': 1.0, 'it': 1.0, 'and': 1.0, 'bought': 1.0, 'used': 1.0, 'because': 1.0, 'by': 1.0, 'i': 2.0, 'far': 1.0, 'is': 1.0, 'the': 1.0, 'that': 1.0, 'again': 2.0, 'best': 1.0, 'spray': 1.0, 'this': 1.0, 'have': 2.0, 'wipe': 1.0, 'ever': 1.0}
Word element => {'too': 1.0, 'because': 1.0, 'bag': 1.0, 'wet': 1.0, 'for': 1.0, 'lasts': 1.0, 'so': 1.0, 'this': 1.0, 'it': 1.0, 'scent': 1.0, 'good': 1.0, 'anymore': 1.0, 'smells': 1.0, 'of': 1.0, 'bottom': 1.0, 'spray': 1.0, 'and': 1.0, 'need': 1.0, 'essential': 1.0, 'a': 1.0, 'don': 1.0, 'oils': 1.0, 'long': 1.0, 'time': 1.0, 'great': 1.0, 'the': 2.0, 't': 1.0, 'to': 1.0, 'i': 1.0, 'buy': 1.0}
Word element => {'has': 1.0, 'child': 1.0, 'already': 1.0, 'buy': 1.0, 'what': 1.0, 'everything': 1.0, 'that': 1.0, 'a': 1.0, 'you': 1.0, 'is': 1.0, 'this': 1.0}
Word element => {'what': 1.0, 'send': 1.0, 'address': 1.0, 'return': 1.0, 'or': 1.0, 'and': 2.0, 'very': 1.0, 'only': 1.0, 'it': 3.0, 'blanket': 2.0, 'trim': 2.0, 'said': 1.0, 'for': 3.0, 'purchasing': 1.0, 'satin': 3.0, 'not': 1.0, 'because': 1.0, 'description': 1.0, 'packing': 1.0, 'the': 4.0, 'wanted': 1.0, 'to': 1.0, 'was': 4.0, 'back': 1.0, 'but': 1.0, 'backing': 2.0, 'disappointing': 1.0, 'i': 1.0, 'whole': 1.0, 'reason': 1.0, 'that': 1.0, 'there': 1.0, 'slip': 1.0, 'no': 1.0}
Word element => {'apparently': 1.0, 'sheep': 1.0, 'better': 1.0, 'kitties': 1.0, 'counts': 1.0, 've': 1.0, 'cutest': 1.0, 'one': 1.0, 'seen': 1.0, 'am': 1.0, 'i': 3.0, 'than': 1.0, 'does': 1.0, 'this': 2.0, 'quality': 1.0, 'granddaughter': 2.0, 'was': 1.0, 'now': 1.0, 'but': 1.0, 'firm': 1.0, 'both': 1.0, 'years': 1.0, 'transferring': 1.0, 'are': 1.0, 'is': 2.0, 'it': 1.0, 'she': 1.0, 'last': 1.0, 'my': 2.0, 'assume': 1.0, 'need': 1.0, 'bed': 1.0, 'for': 2.0, 'of': 2.0, 'sheet': 3.0, 'crib': 1.0, 'been': 1.0, 'in': 4.0, 'winter': 2.0, 'flannel': 2.0, 'going': 1.0, 'a': 4.0, 's': 1.0, 'toddler': 1.0, 'sheets': 1.0, 'not': 1.0, 'sleep': 1.0, 'to': 2.0, 'all': 1.0, 'as': 1.0, 'such': 1.0, 'the': 4.0, 'have': 1.0, 'none': 1.0, 'before': 1.0, 'believer': 1.0, '5': 1.0, 'they': 1.0, 'made': 1.0, 'china': 1.0}
Word element => {'yellow': 1.0, 'dissappointed': 1.0, 'for': 1.0, 'way': 1.0, 'worked': 1.0, 'which': 1.0, 'problem': 1.0, 'me': 1.0, 'and': 2.0, 'wanting': 1.0, 'price': 1.0, 'great': 2.0, 'the': 1.0, 'a': 3.0, 'is': 2.0, 'set': 2.0, 'that': 1.0, 'bedding': 1.0, 'but': 1.0, 'quality': 1.0, 'fact': 1.0, 'it': 1.0, 'this': 1.0, 'green': 1.0, 'i': 3.0, 'still': 1.0, 'found': 1.0, 'because': 1.0, 'not': 1.0, 'at': 1.0, 'either': 1.0, 'gray': 2.0, 'all': 1.0, 'in': 1.0, 'was': 3.0, 'its': 1.0}
Word element => {'son': 1.0, 'our': 1.0, 'for': 1.0, 'beautiful': 1.0, 'out': 1.0, 'actually': 1.0, 'greens': 1.0, 'grays': 1.0, 'together': 1.0, 'nursery': 1.0, 'light': 1.0, 'room': 1.0, 'yellow': 3.0, 'four': 1.0, 'color': 1.0, 'turned': 1.0, 'to': 1.0, 'was': 1.0, 'dye': 1.0, 'stars': 1.0, 'after': 1.0, 'mustard': 1.0, 'and': 2.0, 'giving': 1.0, 'm': 1.0, 'sage': 1.0, 'but': 1.0, 'back': 1.0, 'putting': 1.0, 'i': 2.0, 'with': 1.0, 'this': 1.0, 'it': 2.0, 'painting': 1.0, 'almost': 1.0, 'off': 1.0, 'more': 1.0, 'of': 1.0, 'a': 1.0, 'way': 1.0, 'sent': 1.0}
Word element => {'use': 1.0, 'to': 1.0, 'son': 1.0, 'bedding': 1.0, 'goes': 1.0, 'cute': 1.0, 'sooo': 1.0, 'are': 1.0, 'my': 2.0, 's': 1.0, 'owl': 2.0, 'hoo': 1.0, 'little': 1.0, 'by': 1.0, 'and': 1.0, 'cant': 1.0, 'baby': 1.0, 'colors': 1.0, 'the': 2.0, 'great': 1.0, 'it': 1.0, 'with': 1.0, 'musical': 1.0, 'wait': 1.0, 'mobile': 1.0, 'for': 1.0, 'dk': 1.0, 'leigh': 1.0, 'i': 1.0}
Word element => {'recommend': 1.0, 'would': 1.0, 'nursery': 1.0, 'definitely': 1.0, 'neutrality': 1.0, 'doesn': 1.0, 'to': 1.0, 'colorful': 1.0, 's': 1.0, 'although': 1.0, 'subtle': 1.0, 'baby': 1.0, 'colors': 1.0, 'better': 1.0, 'set': 1.0, 'bedding': 1.0, 'and': 2.0, 'nice': 1.0, 'happy': 1.0, 'owls': 1.0, 'looks': 1.0, 'is': 1.0, 'friend': 1.0, 'embroider': 1.0, 't': 1.0, 'more': 1.0, 'the': 5.0, 'are': 2.0, 'since': 1.0, 'a': 3.0, 'very': 2.0, 'adorable': 1.0, 'i': 3.0, 'does': 1.0, 'bit': 1.0, 'person': 1.0, 'received': 1.0, 'mail': 1.0, 'with': 2.0, 'this': 2.0, 'it': 5.0, 'in': 3.0, 'interfere': 1.0, 'yesterday': 1.0, 'am': 1.0}
Word element => {'it': 1.0, 'love': 1.0}
Word element => {'to': 1.0, 'on': 1.0, 'about': 1.0, 'spent': 1.0, 'person': 1.0, 'this': 1.0, 'looked': 1.0, 'tell': 1.0, 'those': 1.0, 'as': 1.0, 'very': 1.0, '2': 1.0, 'the': 1.0, 'homemade': 1.0, 'them': 2.0, 'made': 1.0, 'they': 1.0, 'looking': 1.0, 'product': 1.0, 'poorly': 1.0, 'in': 1.0, 'general': 1.0, 'others': 1.0, 'would': 1.0, 'making': 1.0, 'not': 1.0, 'buy': 1.0, 'mintues': 1.0, 'i': 1.0}
Word element => {'though': 1.0, 'them': 1.0, 'from': 1.0, 'me': 1.0, 'had': 2.0, 'switched': 1.0, 'one': 1.0, 'for': 1.0, 'with': 1.0, 'would': 2.0, 'previously': 1.0, 'struggle': 1.0, 'of': 2.0, 'little': 2.0, 'and': 2.0, 'other': 2.0, 'afterwards': 1.0, 'easier': 1.0, 'parts': 1.0, 'these': 2.0, 'great': 1.0, 'the': 3.0, 'she': 1.0, 'my': 1.0, 'are': 1.0, 'tried': 1.0, 'i': 1.0, 'gassy': 1.0, 'this': 1.0, 'wish': 1.0, '5': 1.0, 'babies': 1.0, 'to': 1.0, 'all': 1.0, 'we': 2.0, 'gas': 1.0, 'a': 1.0, 'only': 1.0, 'much': 1.0, 'time': 1.0, 'they': 1.0, 'is': 1.0, 'many': 1.0, 'also': 1.0, 'bottles': 3.0, 'held': 1.0, 'stop': 1.0, 'ounces': 1.0, 'using': 1.0, 'downside': 1.0, 'like': 1.0, 'small': 1.0, 'none': 1.0}
Word element => {'for': 1.0, 'metal': 1.0, 'have': 1.0, 'should': 1.0, 'nervous': 1.0, 'm': 1.0, 'bit': 1.0, 'so': 1.0, 'appealing': 1.0, 'well': 1.0, 'is': 3.0, 'with': 1.0, 'hit': 1.0, 'luckily': 1.0, 'wasn': 1.0, 'out': 1.0, 'straight': 1.0, 'was': 1.0, 'months': 1.0, 'one': 1.0, 'older': 1.0, 'thin': 1.0, 'very': 1.0, 'sometimes': 1.0, 'holding': 1.0, 'after': 1.0, 'visually': 1.0, 'them': 1.0, 'made': 1.0, 'strength': 1.0, 'i': 3.0, 'only': 1.0, 'remedied': 1.0, 'and': 6.0, '7': 1.0, 'side': 1.0, 'everyone': 1.0, 'husband': 2.0, 'about': 2.0, 'climb': 1.0, 'main': 1.0, 'who': 1.0, 'when': 1.0, 'tossing': 1.0, 'times': 1.0, 'been': 1.0, 'box': 1.0, 'that': 1.0, 'talks': 1.0, 'right': 1.0, 'latched': 1.0, 'looking': 1.0, 'instructions': 1.0, 'up': 1.0, 'over': 1.0, 'on': 1.0, 'starts': 1.0, 'my': 2.0, 'added': 1.0, 'are': 2.0, 'if': 1.0, 'everything': 1.0, 'being': 1.0, 'wonder': 1.0, 'he': 1.0, 'plastic': 2.0, 'how': 1.0, 'gets': 1.0, 'son': 1.0, 'difficult': 1.0, 'broken': 1.0, 'follow': 1.0, 'glue': 1.0, 'to': 4.0, 'our': 3.0, 'all': 1.0, 'able': 1.0, 'of': 3.0, 'gate': 2.0, 'the': 9.0, 'hinges': 2.0, 'were': 1.0, 'pieces': 2.0, 'by': 1.0, 'few': 1.0, 't': 1.0, 'a': 3.0, 'we': 1.0, 'mounted': 1.0, 'it': 4.0, 'own': 1.0, 'latch': 3.0, 'understand': 1.0, 'from': 1.0}
Word element => {'complaints': 1.0, 'no': 1.0, 'have': 1.0, 'all': 2.0, 'looks': 1.0, 'babies': 1.0, 'how': 1.0, 'beautiful': 1.0, 'i': 2.0, 'it': 2.0, 'at': 1.0, 'together': 1.0, 'was': 1.0, 'pleased': 3.0, 'very': 2.0, 'and': 1.0, 'the': 2.0, 'took': 1.0, 'room': 1.0, 'with': 3.0, 'time': 1.0, 'to': 1.0, 'arrive': 1.0}
Word element => {'is': 1.0, 'refund': 1.0, 'battle': 1.0, 'time': 1.0, 'mom': 1.0, 'single': 1.0, 'new': 1.0, 'appeared': 1.0, 'colors': 1.0, 'always': 1.0, 'me': 1.0, 'and': 2.0, 'really': 1.0, 'appealed': 1.0, 'the': 3.0, 'sock': 1.0, 'holes': 1.0, 'buy': 1.0, 'blue': 1.0, 'monkeys': 1.0, 'i': 6.0, 'product': 1.0, 'for': 1.0, 'cheap': 2.0, 'with': 3.0, 'this': 2.0, 'it': 2.0, 'bought': 1.0, 'be': 1.0, 'excitement': 1.0, 'to': 3.0, 'loved': 1.0, 'feel': 1.0, 'have': 2.0, 'fabric': 2.0, 'much': 1.0, 'stain': 1.0, 'on': 1.0, 'thought': 1.0, 't': 2.0, 'a': 4.0, 'might': 1.0, 'defeated': 1.0, 'just': 1.0, 'rinse': 1.0, 'hand': 1.0, 'out': 1.0, 'such': 1.0, 'some': 1.0, 'no': 1.0, 'gentle': 1.0, 'there': 1.0, 'onside': 1.0, 'mean': 1.0, 'dreft': 1.0, 'even': 1.0, 'don': 2.0, 'wash': 1.0, 'in': 1.0}
Word element => {'quality': 1.0, 'better': 1.0, 'clearer': 1.0, 'expected': 1.0, 'both': 1.0, 'nephew': 1.0, 'and': 2.0, 'beads': 1.0, 'immediately': 1.0, 'guessing': 1.0, 'old': 2.0, 'two': 1.0, 'i': 3.0, '20': 1.0, '8': 1.0, 'a': 4.0, 'month': 2.0, 'necklace': 2.0, 'one': 3.0, 'of': 1.0, 'rather': 1.0, 'was': 1.0, 'are': 2.0, 'my': 3.0, 'the': 6.0, 'dollars': 1.0, 'stone': 1.0, 'small': 1.0, 'than': 1.0, 'but': 1.0, 'perfect': 1.0, 'in': 1.0, 'benefit': 1.0, 'more': 1.0, 'is': 1.0, 'fit': 1.0, 'for': 4.0, 'cloudy': 1.0, 'ordered': 1.0, 'gift': 1.0, 'looked': 1.0, 'clasp': 1.0, 'daughter': 1.0, 'broke': 1.0, 'am': 1.0, 'which': 1.0, 'cost': 1.0, 'necklaces': 2.0, 'few': 1.0}
Word element => {'smooth': 1.0, 'that': 1.0, 'to': 1.0, 'not': 2.0, 'do': 1.0, 'i': 2.0, 'are': 1.0, 'the': 1.0, 'they': 1.0, 'these': 1.0, 'walls': 1.0, 'stick': 1.0, 'love': 1.0, 'issue': 1.0, 'have': 1.0, 'is': 1.0, 'with': 1.0, 'decals': 1.0, 'only': 1.0, 'them': 1.0}
Word element => {'somewhere': 1.0, 'another': 1.0, 'hope': 1.0, 'sold': 1.0, 'has': 1.0, 'see': 1.0, 'out': 1.0, 'sad': 1.0, 'm': 1.0, 'when': 1.0, '18': 1.0, 'happy': 1.0, 'my': 1.0, 'this': 1.0, 'it': 2.0, 'found': 1.0, 'find': 2.0, 'tog': 1.0, 'month': 1.0, 'cover': 1.0, 'light': 1.0, 'can': 1.0, 'looking': 1.0, 'that': 1.0, 'something': 1.0, 'one': 1.0, 'for': 1.0, 'now': 1.0, 'was': 2.0, 'to': 3.0, 'old': 1.0, 'i': 6.0, 'warmer': 1.0, 'on': 1.0, 'nights': 1.0, 's': 1.0, '5': 1.0, 'difficult': 1.0, '0': 1.0, 'and': 1.0}
Word element => {'anyway': 1.0, 'originals': 1.0, 'choice': 1.0, 'they': 1.0, 'honest': 1.0, 'than': 1.0, 'stroller': 1.0, 'but': 1.0, 'be': 1.0, 'buggy': 1.0, 'to': 1.0, 'shorter': 1.0, 'pushchair': 1.0, 'handle': 1.0, 'grips': 1.0, 'good': 2.0, 'the': 1.0, 'replacement': 1.0, 'are': 2.0, 'quality': 1.0}
Word element => {'child': 1.0, 'size': 1.0, 'perfect': 1.0, 'lunch': 1.0, 'of': 1.0, 'go': 1.0, '2': 1.0, 'yr': 1.0, 'old': 1.0, 'bag': 1.0, 't': 1.0, 'loves': 1.0, 'for': 1.0, 'in': 1.0, 'daughter': 1.0, 'small': 1.0, 'let': 1.0, 'my': 1.0, 'cat': 1.0, 'the': 2.0, 'won': 1.0, 'hat': 1.0}
Word element => {'hands': 1.0, 'little': 1.0, 'his': 1.0, 'to': 1.0, 'size': 1.0, 'not': 1.0, 'just': 2.0, 'lunchbox': 1.0, 'am': 1.0, 'hat': 1.0, 'perfect': 2.0, 'in': 1.0, 'cat': 1.0, 'the': 3.0, 'is': 3.0, 'big': 1.0, 'son': 1.0, 'on': 1.0, 'this': 1.0, 'he': 1.0, 'with': 2.0, 'for': 1.0, 'love': 1.0, 'so': 1.0, 'kindergarte': 1.0, 'design': 1.0, 'we': 1.0, 'and': 2.0, 'my': 1.0, 'happy': 2.0, 'i': 1.0}
Word element => {'quickly': 1.0, 'dry': 1.0, 'up': 1.0, 'right': 1.0, 'wash': 1.0, 'snack': 1.0, 'a': 1.0, 'make': 1.0, 'would': 1.0, 'extra': 1.0, 'bonus': 1.0, 'and': 2.0, 'travel': 1.0, 'bib': 1.0, 'an': 1.0, 'to': 1.0, 'store': 1.0, 'is': 1.0, 'are': 1.0, 'my': 1.0, 'amazing': 1.0, 'bag': 2.0, 'bibs': 2.0, 'great': 1.0, 'the': 1.0, 'these': 1.0, 'i': 2.0, 'mine': 1.0, 'use': 1.0, 'however': 1.0, 'm': 1.0, 'sure': 1.0, 'it': 1.0}
Word element => {'throw': 1.0, 'am': 1.0, 'instantly': 1.0, 'work': 1.0, 'at': 1.0, 'so': 1.0, 'wal': 2.0, 'saw': 1.0, 'they': 1.0, 'same': 1.0, 'nanny': 1.0, 'knock': 1.0, 'a': 1.0, 'bought': 1.0, 'i': 3.0, 'ones': 1.0, 'more': 1.0, '2dollars': 1.0, 'great': 1.0, 'these': 2.0, 'the': 3.0, 'are': 1.0, 'offs': 1.0, 'from': 1.0, 'then': 1.0, 'mart': 2.0, 'away': 1.0, 'and': 3.0, 'horrible': 1.0, 'were': 1.0, 'had': 1.0, 'to': 2.0, 'them': 1.0, 'clean': 1.0}
Word element => {'provide': 1.0, 'old': 1.0, 'protection': 1.0, 'great': 1.0, 'perfectly': 1.0, 'month': 1.0, '5': 1.0, 'fit': 1.0, 'big': 1.0, 'perfect': 1.0, 'solid': 1.0, 'for': 1.0, 'starting': 1.0, 'and': 1.0, 'foods': 1.0, 'they': 2.0, 'these': 1.0, 'because': 1.0, 'bibs': 1.0, 'my': 1.0, 'are': 1.0, 'not': 1.0, 'too': 1.0}
Word element => {'with': 1.0, 'impressed': 1.0, 'and': 1.0, 'projects': 1.0, 'our': 1.0, 'use': 1.0, 'bibs': 1.0, 'large': 1.0, 'old': 1.0, '7': 1.0, 'art': 1.0, 'for': 2.0, 'work': 1.0, 'easy': 1.0, '34': 2.0, 'up': 1.0, 'grandbaby': 1.0, 'bib': 1.0, 'clean': 1.0, 'cute': 2.0, 'cover': 1.0, 'month': 1.0, 'light': 1.0, 'designs': 2.0, '8': 1.0, 'likes': 1.0, 'sizes': 1.0, 'are': 1.0, 'everything': 1.0, 'small': 1.0, 'ones': 1.0, 'great': 2.0, 'the': 5.0, 'these': 2.0, 'to': 1.0, 'look': 1.0, 'we': 1.0, 'design': 1.0, 'down': 1.0, 'at': 1.0, 'on': 1.0, 'really': 2.0, 'multiple': 1.0}
Word element => {'super': 1.0, 'bibs': 2.0, 'bumkins': 1.0, 'should': 1.0, 'of': 1.0, 'set': 1.0, 'them': 2.0, 'a': 1.0, 'law': 1.0, 'in': 1.0, 'so': 1.0, 'and': 2.0, 'my': 1.0, 'are': 1.0, 'i': 3.0, 'instead': 1.0, 'got': 1.0, 'loved': 1.0, 'have': 1.0, 'ordered': 2.0, 'the': 1.0, 'mother': 1.0, 'these': 2.0, 'tiny': 1.0, 'sent': 1.0, 'back': 1.0}
Word element => {'clean': 1.0, 'it': 1.0, 'light': 1.0, 'bumkins': 1.0, 'for': 1.0, 'starter': 1.0, 'and': 1.0, 'bib': 1.0, 'small': 1.0, 'my': 1.0, 'waterproof': 1.0, 'is': 2.0, 'fasten': 1.0, '7': 1.0, 'easy': 2.0, 'perfect': 1.0, 'to': 2.0, 'old': 1.0, 'months': 1.0}
Word element => {'love': 1.0, 'washing': 1.0, 'in': 1.0, 'daughter': 1.0, 'easy': 1.0, 'toss': 1.0, 'all': 1.0, 'bibs': 2.0, 'these': 1.0, 'the': 1.0, 'my': 1.0, 'll': 1.0, 'cloth': 1.0, 'i': 2.0, 'stays': 1.0, 'clean': 1.0, 'and': 1.0, 'dry': 1.0, 'never': 1.0, 'go': 1.0, 'back': 1.0, 'machine': 1.0, 'to': 2.0, 'normal': 1.0}
Word element => {'off': 1.0, 'product': 1.0, 'right': 1.0, 'soap': 1.0, 'with': 1.0, 'my': 1.0, 'it': 1.0, 'great': 2.0, 'catches': 1.0, 'babyganics': 1.0, 'everything': 1.0, 'bib': 1.0, 'and': 2.0, 'comes': 2.0, 'was': 1.0, 'in': 1.0, 'colors': 1.0, 'bibs': 1.0, 'cute': 1.0, 'i': 1.0}
Word element => {'cute': 1.0, 'waterproof': 1.0, 'washable': 1.0, 'design': 1.0, 'machine': 1.0, 'product': 1.0, 'great': 1.0}
Word element => {'not': 1.0, 'or': 1.0, 'haven': 1.0, 'they': 1.0, 'received': 1.0, 'new': 1.0, 'were': 2.0, 'and': 1.0, 'as': 1.0, 'baby': 1.0, 'it': 2.0, 'this': 1.0, 'defective': 1.0, 't': 1.0, 'gift': 1.0, 'parents': 1.0, 'sent': 1.0, 'trying': 1.0, 'was': 1.0, 'to': 1.0, 'a': 1.0, 'return': 1.0, 'heard': 1.0, 'if': 1.0, 'successful': 1.0}
Word element => {'fabric': 1.0, 'of': 1.0, 'look': 1.0, 'leads': 1.0, 'chunks': 1.0, 'stem': 1.0, 'not': 1.0, 'cheap': 2.0, 'the': 2.0, 'like': 1.0, 'quality': 1.0, 'as': 2.0, 'nice': 1.0, 'falling': 1.0, 'looking': 1.0, 'picture': 1.0, 'kept': 1.0, 'off': 1.0}
Word element => {'doggie': 1.0, 'says': 1.0, 'for': 2.0, 'toddler': 1.0, 'most': 1.0, 'got': 1.0, 'a': 2.0, 'the': 1.0, 'are': 1.0, 'puts': 1.0, 'small': 1.0, 'xmas': 1.0, 'mama': 1.0, 'it': 2.0, 'this': 1.0, 'loves': 1.0, 'its': 1.0, 'i': 2.0, 'proudly': 1.0, 'perfect': 1.0, 've': 1.0, 'size': 1.0, 'seen': 1.0, 'm': 1.0, 'too': 1.0, 'son': 1.0, 'on': 1.0, 'and': 1.0}
Word element => {'can': 1.0, 'get': 1.0, 'and': 1.0, 'me': 1.0, 'pool': 1.0, 'hood': 1.0, 'because': 1.0, 'stays': 1.0, 'mostly': 1.0, 'to': 1.0, 'dry': 1.0, 'time': 1.0, 'that': 1.0, 'takes': 1.0, 'drawback': 1.0, 'long': 1.0, 'works': 1.0, 'i': 1.0, 'old': 1.0, 'absorbent': 1.0, 'for': 3.0, '3': 1.0, 'is': 5.0, 'my': 3.0, 'great': 2.0, '2': 1.0, 'the': 3.0, 'a': 2.0, 'myself': 1.0, 'warm': 1.0, 'bit': 1.0, 'short': 1.0, 'so': 1.0, 'ready': 1.0, 'but': 1.0, 'little': 1.0, 'guy': 1.0, 'year': 1.0, 'son': 2.0, 'very': 1.0, 'it': 4.0, 'this': 1.0, 'only': 1.0}
Word element => {'disappointed': 1.0, 'useful': 1.0, 'worth': 1.0, 'since': 1.0, 'last': 1.0, 'do': 1.0, 'grown': 1.0, 'think': 1.0, 'better': 1.0, 'issues': 1.0, 'did': 1.0, 'warm': 1.0, 'knit': 1.0, 'color': 1.0, 'green': 1.0, 'about': 1.0, 'very': 3.0, '24': 1.0, 'will': 3.0, 'size': 1.0, 'should': 1.0, 'threadbare': 1.0, 'big': 2.0, 'just': 2.0, 's': 3.0, 'playing': 1.0, 'blocking': 1.0, 'things': 1.0, 'able': 1.0, 'price': 1.0, 'year': 1.0, 'toddler': 1.0, 'chilly': 1.0, 'wet': 1.0, 'believe': 1.0, 'bought': 1.0, 'impression': 1.0, 'dozen': 1.0, 'more': 1.0, 'cute': 1.0, 'are': 2.0, 'first': 1.0, 'least': 1.0, 'new': 1.0, 'have': 2.0, 'simple': 1.0, 'off': 1.0, 'has': 1.0, 'next': 2.0, 'them': 1.0, 'cut': 1.0, '30': 1.0, 'sand': 1.0, 'remove': 1.0, 'soft': 3.0, 'this': 7.0, 'sized': 1.0, '14': 1.0, 'packaging': 2.0, 'which': 1.0, 'bit': 2.0, 'forward': 1.0, 'not': 3.0, 'itself': 1.0, 'm': 1.0, 'in': 7.0, 'poncho': 3.0, 'regular': 1.0, 'extensively': 1.0, 'a': 9.0, 'percentile': 1.0, 'after': 4.0, 'half': 1.0, 'holding': 1.0, 'aids': 1.0, 'bath': 2.0, 'over': 1.0, 'months': 2.0, 'my': 6.0, 'looks': 2.0, 'already': 1.0, 'lined': 2.0, 'him': 1.0, 'wear': 2.0, 'it': 11.0, 'vision': 1.0, 'at': 2.0, 'is': 9.0, '95th': 1.0, 'falling': 1.0, 'or': 1.0, 'treat': 1.0, 'yet': 1.0, 'fabric': 1.0, 'for': 3.0, 'and': 9.0, 'one': 2.0, 'too': 2.0, 'sizing': 1.0, 'son': 4.0, 'height': 1.0, 'though': 1.0, 'thick': 1.0, 'thing': 1.0, 'quality': 2.0, 'but': 4.0, 'becoming': 1.0, 'shoulder': 1.0, 'hood': 4.0, 'bright': 1.0, 'min': 1.0, 'still': 1.0, 'every': 1.0, 'extremely': 1.0, 'beach': 4.0, 'while': 3.0, 'be': 3.0, 'generously': 1.0, 'probably': 1.0, 'any': 2.0, 'favorite': 1.0, 'change': 1.0, 'up': 1.0, 'less': 1.0, 'perfect': 1.0, 'walking': 1.0, 'on': 4.0, 'long': 2.0, 'came': 1.0, 'there': 1.0, 'manicured': 1.0, 'contact': 1.0, 'use': 3.0, 'two': 1.0, 'little': 2.0, 'that': 3.0, 'with': 2.0, 'towel': 2.0, 'fit': 1.0, 't': 1.0, 'snagged': 2.0, 'toys': 1.0, 'looking': 1.0, 'bag': 1.0, 'blow': 1.0, 'when': 1.0, 'tags': 2.0, 'kept': 1.0, 'valve': 1.0, 'way': 2.0, 'than': 3.0, 'ball': 1.0, 'of': 2.0, 'the': 20.0, 'finger': 1.0, 'hoping': 1.0, 'to': 5.0, 'pulled': 1.0, 'nails': 1.0, 'function': 1.0, 'paid': 1.0, 'only': 1.0, 'strap': 1.0, 'snags': 1.0, 'day': 1.0, 'etc': 1.0, 'putting': 1.0, 'i': 8.0, 'threads': 1.0, 'attempted': 1.0, 'didn': 1.0, 'even': 2.0, 'ratty': 1.0, 'rougher': 1.0, 'summer': 1.0, 'would': 3.0, 'old': 2.0, 'plastic': 1.0, 'together': 1.0, 'piling': 1.0, 'before': 1.0}
Word element => {'recomend': 1.0, 'special': 1.0, 'nothing': 1.0, 'but': 1.0, 'it': 1.0, 'goog': 1.0, 'they': 1.0, 'are': 1.0, 'my': 1.0, 'i': 2.0, 's': 1.0, 'grandson': 1.0, 'this': 1.0, 'still': 1.0, 'brown': 1.0, 'bottles': 1.0, 'bought': 1.0, 'dr': 1.0, 'gift': 1.0, 'setas': 1.0, 'a': 1.0, 'for': 1.0}
Word element => {'moments': 1.0, 'moonlit': 1.0, 'in': 1.0, 'weekender': 1.0, 'bottom': 1.0, 'goes': 1.0, 'great': 1.0, 'it': 1.0, 'love': 1.0, 'my': 1.0, 'the': 1.0, 'this': 1.0, 'petunia': 1.0, 'shiny': 1.0, 'with': 1.0, 'is': 1.0, 'wallet': 1.0, 'brocade': 1.0, 'i': 1.0, 'beautiful': 1.0, 'pickle': 1.0, 'material': 1.0}
Word element => {'cute': 1.0, 's': 1.0, 'snaps': 1.0, 'of': 2.0, 'has': 2.0, 'ton': 1.0, 'closed': 1.0, 'perfect': 1.0, 'inside': 1.0, 'wallet': 1.0, 'instead': 1.0, 'a': 2.0, 'zips': 1.0, 'the': 1.0, 'seriously': 1.0, 'it': 4.0, 'this': 1.0, 'card': 1.0, 'so': 1.0, 'slots': 1.0, 'i': 1.0, 'which': 1.0, 'need': 1.0, 'is': 1.0, 'change': 1.0, 'and': 1.0, 'zippered': 1.0, 'pouch': 1.0}
Word element => {'better': 1.0, 'much': 1.0, 'him': 2.0, 'into': 1.0, 'perfectly': 1.0, 'adjusting': 1.0, 'son': 1.0, 'if': 1.0, 'an': 1.0, 'moments': 1.0, 'for': 1.0, 'in': 3.0, 'took': 1.0, 'it': 6.0, 'this': 3.0, 'he': 2.0, 'from': 1.0, 'looked': 1.0, 'and': 3.0, 'would': 1.0, 'was': 3.0, 'had': 1.0, 'now': 1.0, 'having': 1.0, 'installed': 1.0, 'infant': 1.0, 'some': 1.0, 'out': 1.0, 'to': 1.0, 'seat': 5.0, 'just': 1.0, 'target': 1.0, 'a': 1.0, 'safety': 1.0, 'when': 1.0, 'at': 1.0, '1st': 1.0, 'convertable': 1.0, 'fits': 1.0, 'my': 1.0, 'surrounds': 1.0, 'today': 1.0, 'about': 1.0, 'i': 4.0, '4': 1.0, 'bought': 1.0, 'months': 1.0, '5': 1.0, 'although': 1.0, 'require': 1.0, 'his': 1.0, 'feel': 1.0, 'big': 1.0, 'great': 1.0, 'so': 1.0}
Word element => {'need': 1.0, 'well': 1.0, 'convertible': 1.0, 'be': 1.0, 'anyone': 1.0, 'highly': 1.0, 'would': 1.0, 'compare': 1.0, 'don': 1.0, 'at': 1.0, 'looked': 1.0, 'have': 1.0, 'other': 1.0, 'size4me': 1.0, 'second': 1.0, 'ever': 1.0, 'looking': 1.0, 'buy': 1.0, 'very': 2.0, 'son': 2.0, 'car': 5.0, 'you': 1.0, 'am': 1.0, 'recommend': 1.0, 'chicco': 1.0, 'i': 5.0, 'old': 1.0, 'worth': 1.0, 'outgrew': 1.0, 'bought': 1.0, 'my': 3.0, 'this': 4.0, 'with': 1.0, 'in': 2.0, 'key': 1.0, 'will': 2.0, 'also': 2.0, 'seems': 1.0, 'husbands': 1.0, 'fit': 1.0, 'for': 3.0, 'love': 1.0, '16': 1.0, 'he': 1.0, 'adjust': 1.0, 'recently': 1.0, 'it': 3.0, 'month': 1.0, 'comfortable': 1.0, 'install': 1.0, 'after': 1.0, 'seats': 1.0, 'ride': 2.0, 'easy': 2.0, 'seat': 4.0, 'to': 4.0, 'only': 1.0, 'harness': 1.0, 'likely': 1.0, 'height': 1.0, 'and': 4.0, 'an': 1.0, 'his': 1.0, 'ready': 2.0, 'most': 1.0, 'money': 1.0, 'but': 1.0, 'purchased': 1.0, 'the': 4.0, 'graco': 1.0, 'm': 1.0, 's': 1.0, 't': 1.0, 'a': 2.0, 'we': 1.0, 'going': 1.0, 'return': 1.0}
Word element => {'for': 2.0, 'so': 1.0, 'others': 1.0, 'some': 1.0, 'texas': 1.0, 'between': 1.0, 'day': 1.0, 'over': 1.0, 'great': 1.0, 'comfortable': 1.0, 'also': 1.0, 'was': 1.0, 'seats': 1.0, 'rear': 1.0, 'did': 1.0, 'really': 2.0, 'it': 1.0, 'far': 1.0, 'date': 1.0, 'creative': 1.0, 'is': 2.0, 'escaped': 1.0, 'has': 1.0, 'he': 2.0, 'first': 1.0, 'straps': 1.0, 'longer': 1.0, 'loosen': 1.0, 'while': 1.0, 'properly': 1.0, 'if': 1.0, 'lever': 1.0, 'california': 1.0, 'graco': 1.0, 'toddler': 1.0, 'safe': 1.0, 'keep': 1.0, 'option': 1.0, 'at': 1.0, 'would': 1.0, 'position': 1.0, 'isn': 3.0, 'not': 2.0, 'than': 1.0, 'because': 2.0, 'installed': 1.0, 'moment': 1.0, 'kick': 1.0, 'the': 10.0, 'in': 1.0, 'as': 2.0, 'seat': 4.0, 'to': 2.0, 'of': 2.0, 'returning': 1.0, 'kids': 1.0, 'drive': 1.0, 'this': 5.0, 'car': 3.0, 'my': 3.0, '2': 1.0, 'most': 2.0, 'shoulder': 1.0, 'but': 1.0, 'process': 1.0, 'can': 2.0, 'escape': 2.0, 'get': 1.0, 'and': 2.0, 'out': 1.0, 'when': 1.0, 'loosens': 1.0, 'you': 1.0, 'have': 1.0, 'an': 2.0, 'artist': 1.0, 'we': 1.0, 't': 3.0, 'a': 2.0, 'build': 1.0, 'viable': 1.0, 'are': 1.0, 'strap': 1.0, 'facing': 1.0, 'son': 2.0, 'open': 1.0, 'that': 1.0, 'into': 1.0}
Word element => {'made': 1.0, 'whomever': 1.0, 'kudos': 1.0, 'great': 1.0, 'is': 1.0, 'dropped': 1.0, 'actually': 1.0, 'product': 1.0, 'for': 1.0, 'in': 1.0, 'try': 1.0, 'with': 1.0, 'helps': 1.0, 'attach': 1.0, 'can': 1.0, 'while': 1.0, 'having': 2.0, 'by': 1.0, 'someone': 1.0, 'you': 1.0, 'when': 1.0, 'also': 2.0, 'reducing': 1.0, 'bend': 1.0, 'my': 1.0, 'bottles': 1.0, 'cup': 2.0, 'i': 3.0, 'saved': 1.0, 'has': 1.0, 'needed': 1.0, 'back': 2.0, 'stroller': 1.0, 'carseat': 1.0, 'came': 1.0, 'knew': 1.0, 'these': 5.0, 'reach': 1.0, 'the': 4.0, 'seat': 1.0, 'cups': 2.0, 'to': 7.0, 'attached': 1.0, 'now': 1.0, 'exactly': 1.0, 'what': 1.0, 'that': 2.0, 'were': 1.0, 'straps': 1.0, 'sure': 1.0, 'it': 1.0, 'pick': 1.0, 'have': 2.0, 'sippy': 2.0, 'every': 1.0, 'out': 1.0, 'couple': 1.0, 'across': 1.0, 'and': 6.0, 'minutes': 1.0, 't': 1.0, 'a': 2.0, 'we': 2.0, 'simply': 1.0, 'over': 1.0, 'up': 1.0, 'don': 1.0, 'about': 2.0, 'worry': 1.0, 'this': 1.0, 'lost': 1.0}
Word element => {'great': 1.0, 'battery': 1.0, 'you': 1.0, 'with': 1.0, 'ac': 1.0, 'effects': 1.0, 'sound': 1.0, 'option': 1.0, 'brightness': 1.0, 'in': 1.0, 'condition': 1.0, 'adjust': 1.0, 'time': 1.0, 'lullabies': 1.0, 'has': 2.0, 'well': 1.0, 'different': 2.0, 'plays': 1.0, 'i': 3.0, 'ordered': 1.0, 'absolutely': 1.0, 'had': 1.0, 'that': 2.0, 'loves': 1.0, 'perfect': 1.0, 'wish': 1.0, 'this': 1.0, 'granddaughter': 1.0, 'only': 1.0, 'product': 1.0, 'lights': 1.0, 'for': 1.0, 'my': 1.0, 'and': 3.0, 'strobing': 1.0, 'it': 4.0, 'she': 1.0, 'can': 1.0, 'as': 2.0, 'ceiling': 1.0, 'projector': 1.0, 'arrived': 1.0, 'the': 1.0, 'suggestion': 1.0, 'a': 2.0, 'could': 1.0, 'on': 1.0, 'make': 1.0, 'is': 1.0, 'an': 1.0, 'cord': 1.0, 'along': 1.0}
Word element => {'sooth': 1.0, 'help': 1.0, 'tool': 1.0, 'its': 1.0, 'since': 1.0, 'out': 1.0, 'wouldn': 1.0, 'it': 3.0, 'this': 2.0, 'shower': 1.0, 'sister': 1.0, 'should': 1.0, 'kinda': 1.0, 'batteries': 1.0, 'some': 2.0, 'so': 2.0, 'friends': 1.0, 'and': 3.0, 'baby': 2.0, 'have': 1.0, 'the': 4.0, 'in': 1.0, 't': 1.0, 'go': 1.0, 'a': 2.0, 'see': 1.0, 'etc': 1.0, 'i': 3.0, 'buy': 1.0, 'cool': 1.0, 'bought': 1.0, 'decided': 1.0, 'sleep': 1.0, 'to': 6.0, 'wanted': 1.0, 'was': 1.0, 'for': 1.0, 'lit': 1.0, 'images': 1.0, 'clear': 2.0, 'show': 1.0, 'sound': 1.0, 'up': 2.0, 'is': 2.0, 'light': 1.0, 'soothing': 1.0, 'put': 2.0, 'on': 2.0, 'very': 1.0, 'ceiling': 1.0, 'recommended': 1.0, 'neat': 1.0, 'my': 1.0, 'her': 1.0, 'registry': 1.0}
Word element => {'nice': 1.0, 'would': 1.0, 'flat': 1.0, 'comforter': 1.0, 'use': 1.0, 'enough': 1.0, 'old': 1.0, 'child': 1.0, 'when': 1.0, 'but': 1.0, 'fitted': 1.0, 'it': 1.0, 'goes': 1.0, 'to': 1.0, 'as': 2.0, 'together': 1.0, 'extra': 1.0, 'definitely': 1.0, 'having': 1.0, 'lamp': 1.0, 'purchased': 1.0, 'perfect': 1.0, 'sheet': 3.0, 'so': 1.0, 'look': 1.0, 'looked': 1.0, 'with': 1.0, 'mobile': 1.0, 'room': 1.0, 'the': 9.0, 'make': 1.0, 'blanket': 1.0, 'and': 4.0, 'perfectly': 1.0, 'also': 1.0, 'will': 1.0, 'decors': 1.0, 'certainly': 1.0, 'only': 1.0, 'nursery': 1.0, 'works': 1.0, 'we': 1.0, 'could': 1.0, 'a': 4.0, 'has': 1.0, 'well': 1.0, 'gender': 1.0, 'neutral': 1.0, 'which': 1.0, 'i': 1.0, 'love': 1.0, 'wall': 1.0, 'thing': 1.0, 'that': 1.0, 'be': 2.0, 'better': 1.0, 'everything': 2.0, 'coordinated': 1.0, 'if': 1.0, 'is': 2.0, 'set': 1.0, 'came': 1.0}
Word element => {'recommend': 1.0, 'highly': 1.0, 'design': 1.0, 'as': 1.0, 'is': 2.0, 'material': 1.0, 'room': 1.0, 's': 1.0, 'guy': 1.0, 'my': 1.0, 'for': 1.0, 'everything': 1.0, 'and': 2.0, 'bedding': 1.0, 'stumbled': 1.0, 'not': 1.0, 'little': 1.0, 'crib': 1.0, 'wanted': 2.0, 'was': 2.0, 'had': 2.0, 'that': 1.0, 'fun': 1.0, 'set': 1.0, 'bright': 1.0, 'a': 1.0, 'snoopy': 1.0, 'before': 1.0, 'it': 1.0, 'this': 1.0, 'pastel': 1.0, 'i': 4.0, 'great': 1.0, 'the': 2.0, 'colored': 1.0, 'upon': 1.0, 'sets': 1.0, 'seen': 1.0}
Word element => {'this': 1.0, 'be': 1.0, 'collection': 1.0, 'bff': 1.0, 'in': 1.0, 'other': 1.0, 'better': 1.0, 'expected': 1.0, 'i': 2.0, 'style': 1.0, 'attach': 1.0, 'returning': 1.0, 'pieces': 1.0, 'were': 1.0, 'it': 2.0, 'and': 2.0, 'mobile': 3.0, 'cute': 1.0, 'hook': 1.0, 'just': 1.0, 'doesn': 3.0, 'but': 2.0, 'work': 1.0, 'is': 1.0, 'properly': 1.0, 'main': 1.0, 'move': 1.0, 'going': 1.0, 'we': 3.0, 't': 3.0, 'a': 2.0, 'sleigh': 1.0, 'crib': 2.0, 'have': 1.0, 'falls': 1.0, 'all': 1.0, 'our': 1.0, 'to': 2.0, 'try': 1.0, 'use': 1.0, 'either': 1.0, 'wall': 1.0, 'mount': 1.0, 'look': 1.0, 'right': 1.0, 'there': 1.0, 'will': 1.0, 'also': 1.0, 'with': 2.0, 'piece': 1.0, 'snoopy': 2.0, 'the': 8.0, 'woodstock': 1.0, 'off': 1.0, 'very': 1.0, 'when': 1.0, 'you': 1.0, 'easily': 1.0, 'love': 1.0, 'product': 1.0, 'for': 1.0, 'price': 1.0}
Word element => {'a': 1.0, 'well': 1.0, 'but': 1.0, 'the': 2.0, 'because': 1.0, 'theme': 1.0, 'worth': 1.0, 'snoopy': 1.0, 'hesitant': 1.0, 'nursery': 2.0, 'if': 1.0, 'price': 1.0, 'was': 2.0, 'i': 2.0, 'do': 1.0, 'perfectly': 1.0, 'and': 1.0, 'very': 1.0, 'adorable': 1.0, 'fit': 1.0, 'it': 2.0, 'this': 1.0, 'recommend': 1.0, 'for': 1.0, 'anyone': 1.0, 'doing': 1.0}
Word element => {'walls': 1.0, 'on': 1.0, 'back': 1.0, 'press': 1.0, 'them': 1.0, 're': 1.0, 'they': 2.0, 'the': 1.0, 'are': 1.0, 'really': 1.0, 'curling': 1.0, 'cute': 1.0, 'but': 1.0, 'have': 2.0, 'we': 1.0, 'been': 1.0, 'constantly': 1.0, 'and': 1.0, 'to': 1.0}
Word element => {'cute': 1.0, 'a': 1.0, 'having': 1.0, 'who': 1.0, 'too': 1.0, 'friend': 1.0, 'item': 1.0, 'you': 1.0, 'boy': 1.0, 'came': 1.0, 'best': 1.0, 'and': 1.0, 'the': 1.0, 'my': 1.0, 'it': 1.0, 'perfect': 1.0, 'was': 2.0, 'thank': 1.0, 'in': 1.0, 'for': 1.0}
Word element => {'workmanship': 1.0, 'material': 1.0, 'quality': 1.0, 'happy': 1.0, 're': 1.0, 'in': 1.0, 'd': 1.0, 'wonderful': 1.0, 'snoopy': 1.0, 'and': 2.0, 'very': 2.0, 'nice': 1.0, 'nursery': 1.0, 'sheet': 1.0, 'a': 1.0, 'looks': 1.0, 'is': 1.0, 'this': 1.0, 'fitted': 1.0, 'with': 2.0, 'cor': 1.0, 'our': 2.0, 'the': 3.0, 'of': 2.0, 'eacute': 1.0, 'we': 1.0, 'rest': 1.0, '8217': 1.0}
Word element => {'beautiful': 1.0, 'very': 1.0, 'though': 1.0, '2': 1.0, 'fly': 1.0, 'little': 1.0, 'crib': 1.0, 'least': 1.0, 'easy': 1.0, 'flutter': 1.0, 'people': 1.0, 'is': 3.0, 'a': 1.0, 'gorgeous': 1.0, 'perfect': 1.0, 'having': 1.0, 'it': 3.0, 'this': 1.0, 'my': 1.0, 'color': 1.0, 'put': 2.0, 'and': 1.0, 'to': 2.0, 'together': 2.0, 'at': 1.0, 'i': 1.0, 'for': 1.0, 'suggest': 1.0}
Word element => {'happier': 1.0, 'be': 1.0, 'blends': 1.0, '2009': 1.0, 'set': 1.0, 'from': 1.0, 'boo': 1.0, 'peek': 1.0, 'snoopy': 2.0, 'have': 1.0, 'themed': 1.0, 'nursery': 2.0, 'baby': 1.0, 'our': 2.0, 'is': 1.0, 'it': 1.0, 'older': 1.0, 'this': 4.0, 'with': 3.0, 'love': 1.0, 'absolutely': 1.0, 'other': 1.0, 'we': 2.0, 'couldn': 1.0, 'perfectly': 1.0, 'and': 2.0, 'lamp': 2.0, 'fits': 1.0, 'ivy': 1.0, 'in': 2.0, 'so': 1.0, 'a': 1.0, 'well': 1.0, 'products': 1.0, 'lambs': 1.0, 't': 1.0, 'the': 1.0}
Word element => {'same': 1.0, 'be': 1.0, 'should': 1.0, 'assume': 1.0, 'and': 1.0, 'by': 1.0, 'because': 1.0, 'bad': 1.0, 'feel': 1.0, 'turtles': 1.0, 'is': 2.0, 'they': 1.0, 'recently': 1.0, 'say': 1.0, 'b': 2.0, 'different': 1.0, 'made': 1.0, '2': 1.0, 'the': 5.0, 'an': 2.0, 'cloud': 2.0, 'quality': 1.0, 'however': 1.0, 'order': 1.0, 'between': 1.0, 'for': 1.0, 'imitation': 1.0, 'two': 2.0, 'i': 3.0, 'products': 1.0, 'very': 2.0, 'pink': 1.0, 'turtle': 1.0, 'seems': 1.0}
Word element => {'new': 1.0, 'or': 1.0, 'gifts': 2.0, 'baby': 2.0, 'some': 1.0, 'were': 1.0, 'i': 2.0, 'they': 1.0, 'have': 1.0, 'these': 1.0, 't': 1.0, 'colorful': 1.0, 'shower': 1.0, 'children': 1.0, 'for': 1.0, 'my': 2.0, 'didn': 1.0, 'as': 1.0, '6i': 1.0, 'why': 1.0, 'away': 1.0, 'giving': 1.0, 'and': 3.0, 'since': 1.0, 'soft': 1.0, 'purchased': 1.0, 'grand': 1.0, 'received': 1.0, 'when': 1.0, 'kids': 1.0, 'daughter': 1.0, 'm': 1.0}
Word element => {'enjoy': 1.0, 'purchase': 1.0, 'expected': 1.0, 'i': 1.0, 'than': 1.0, 'bigger': 1.0, 'much': 1.0, 'my': 1.0, 'had': 1.0, 'daughter': 1.0, 'soft': 1.0, 'loved': 1.0, 'this': 1.0, 'monkey': 1.0, 'great': 1.0, 'absolutely': 1.0, 'it': 1.0, 'and': 1.0, 'very': 1.0, 'is': 1.0}
Word element => {'what': 1.0, 'exactly': 1.0, 'new': 1.0, 'sending': 1.0, 'at': 1.0, 'excellent': 1.0, 'company': 1.0, 'but': 1.0, 'times': 1.0, 'out': 1.0, 'made': 1.0, 'hand': 1.0, 'bobby': 1.0, 'along': 1.0, 'delivery': 1.0, 'and': 3.0, 'table': 1.0, 'my': 1.0, 'are': 1.0, 'for': 1.0, 'was': 2.0, 'had': 1.0, 'with': 2.0, 'is': 1.0, 'the': 2.0, 'these': 1.0, 'they': 1.0, 'cute': 1.0, 'priority': 1.0, 'ordered': 1.0, 'after': 1.0, 'order': 1.0, 'items': 1.0, 'twins': 1.0, 'everything': 1.0, 'very': 1.0, 'changing': 1.0, 'adorable': 1.0, 'a': 2.0, 'few': 1.0, 'minor': 1.0, 'cover': 2.0, 'issues': 1.0, 'i': 1.0, 'replacing': 1.0, 'products': 1.0}
Word element => {'fell': 1.0, 'cover': 1.0, 'the': 1.0, 'of': 1.0, 'a': 1.0, 'off': 1.0, 'lasted': 1.0, 'only': 1.0, 'couple': 1.0, 'we': 1.0, 'bought': 1.0, 'night': 1.0, 'our': 1.0, 'before': 1.0, 'this': 1.0, 'light': 1.0, 'for': 2.0, 'son': 1.0, 'months': 1.0, 's': 1.0, 'it': 1.0, 'nursery': 1.0}
Word element => {'guilt': 1.0, 'bedtime': 1.0, 's': 1.0, 'when': 1.0, 'on': 2.0, 'animals': 1.0, 'little': 1.0, 'doesn': 1.0, 'listen': 1.0, 'option': 1.0, 'which': 2.0, 'each': 1.0, 'etc': 1.0, 'i': 2.0, 'sounds': 1.0, 'batteries': 1.0, 'top': 1.0, 'gives': 1.0, 'means': 2.0, '4': 1.0, 'melodies': 1.0, 'it': 7.0, 'month': 1.0, 'don': 2.0, 'bottom': 2.0, 'she': 2.0, 'baby': 2.0, 'has': 2.0, 'watching': 1.0, 'them': 1.0, 'to': 4.0, 'lights': 3.0, 'different': 2.0, 'u': 1.0, 'her': 2.0, 'classical': 1.0, 'get': 1.0, 'lighted': 1.0, 'optional': 1.0, 'and': 4.0, '1': 2.0, 'genre': 1.0, 'at': 2.0, 'is': 2.0, 't': 3.0, 'the': 9.0, 'kiddo': 1.0, 'without': 1.0, '2': 1.0, 'constantly': 1.0, 'so': 4.0, 'monotonous': 1.0, 'can': 2.0, 'music': 1.0, 'nature': 1.0, 'captivated': 1.0, 'songs': 1.0, 'shuffle': 1.0, 'kick': 1.0, 'lay': 1.0, 'plays': 2.0, 'picture': 1.0, 'down': 2.0, 'several': 2.0, 'fun': 1.0, 'minutes': 1.0, 'trying': 1.0, '3': 1.0, 'lullabies': 1.0, 'catch': 1.0, 'one': 1.0, '5': 2.0, 'off': 1.0, '40': 1.0, 'by': 1.0, 'itself': 1.0, 'turns': 1.0, 'after': 1.0, 'up': 1.0, 'rotate': 1.0, '7': 2.0, '6': 1.0, 'that': 1.0, 'jazz': 1.0, 'loves': 1.0, 'button': 1.0, 'are': 1.0, 'buttons': 1.0, 'turn': 1.0, 'if': 1.0, 'disturb': 1.0, 'there': 1.0, 'why': 1.0, 'reasons': 1.0, 'my': 1.0, 'run': 1.0, 'old': 1.0, 'reason': 1.0, 'do': 1.0, 'entertained': 1.0, 'free': 1.0, 'want': 1.0, 'fussiness': 1.0}
Word element => {'postage': 1.0, 'instead': 1.0, 'me': 1.0, 'and': 2.0, 'very': 2.0, 'cost': 1.0, 'installed': 1.0, 'was': 2.0, 'angle': 1.0, 'it': 1.0, 'on': 1.0, 'upright': 1.0, 'mobile': 1.0, 'back': 1.0, 'an': 1.0, 'heavy': 1.0, 'the': 1.0, 'more': 1.0, 'of': 1.0, 'i': 1.0, 'sent': 1.0, 'which': 1.0, 'disappointed': 1.0, 'in': 1.0}
Word element => {'needed': 1.0, 'use': 1.0, 'instructions': 1.0, 'does': 1.0, 'got': 1.0, 'that': 1.0, 'say': 2.0, 'bassinet': 1.0, 'need': 1.0, 'if': 2.0, 'half': 1.0, 'a': 4.0, 'she': 1.0, 'month': 1.0, 'it': 6.0, 'not': 1.0, 'n': 1.0, 'this': 4.0, 'bout': 1.0, 'also': 2.0, 'will': 1.0, 'batteries': 1.0, 'was': 2.0, 'bought': 1.0, 'easy': 1.0, 'gather': 1.0, 'the': 2.0, 'takes': 1.0, 'vehicle': 1.0, 'my': 2.0, 'daughter': 1.0, 'l': 1.0, 'by': 1.0, 'only': 1.0, 'pack': 1.0, 'buy': 1.0, 'ever': 1.0, 'looking': 1.0, 'loved': 1.0, 'and': 1.0, 'play': 1.0, 'in': 2.0, 'fit': 1.0, 'for': 1.0, 'music': 1.0, 'three': 1.0, 'at': 1.0, 'keep': 1.0, 'helped': 1.0, 'good': 1.0, 'her': 1.0, 'sleeping': 1.0, 'i': 6.0, 'tried': 1.0, 'moving': 1.0, 'never': 1.0, 'would': 2.0, 'put': 1.0, 'on': 2.0, 'car': 1.0, 'to': 6.0, 'seat': 1.0, 'tho': 1.0, 'aa': 1.0, 'when': 1.0, 'again': 2.0}
Word element => {'good': 1.0, 'are': 1.0, 'owl': 1.0, 'they': 1.0, 'hop': 1.0, 'also': 2.0, 'purchased': 1.0, 'adorable': 1.0, 'purchase': 1.0, 'larger': 1.0, 'than': 1.0, 'i': 1.0, 'quality': 1.0, 'items': 1.0, 'skip': 1.0, 'and': 2.0, 'very': 1.0, 'expected': 1.0, 'with': 1.0, 'happy': 1.0, 'matching': 1.0, 'other': 1.0, 'this': 1.0}
Word element => {'reimburse': 1.0, 'did': 1.0, 'company': 1.0, 'note': 1.0, 'finally': 1.0, 'i': 1.0, 'after': 1.0, 'order': 1.0, 'of': 2.0, 'no': 1.0, 'the': 3.0, 'was': 2.0, 'to': 1.0, 'me': 1.0, 'and': 1.0, 'it': 1.0, 'stock': 1.0, 'out': 1.0, 'promptly': 1.0, 'attempts': 1.0, 'status': 1.0, 'informed': 1.0, 'longer': 1.0, 'on': 1.0, 'check': 1.0, 'a': 1.0, 'manufactured': 1.0, 'several': 1.0, 'positive': 1.0}
Word element => {'cute': 1.0, 'babies': 1.0, 'all': 1.0, 'sound': 1.0, 'it': 1.0, 'that': 2.0, 'dingy': 1.0, 'makes': 1.0, 'little': 1.0, 'and': 2.0, 'cake': 2.0, 'as': 1.0, 'adorable': 1.0, 'i': 1.0, 'used': 1.0, 'a': 2.0, 'love': 1.0, 'topper': 1.0, 'for': 1.0, 'diaper': 1.0, 'soft': 1.0, 'large': 1.0, 'was': 1.0, 'really': 1.0}
Word element => {'recomended': 1.0, 'and': 1.0, 'soft': 1.0, 'beautiful': 1.0, 'says': 1.0, 'description': 1.0, 'safe': 1.0, 'perfect': 1.0, 'for': 1.0, 'a': 1.0, 'the': 1.0, 'its': 1.0, 'baby': 1.0, 'get': 1.0, 'you': 1.0, 'what': 1.0, 'toy': 1.0, 'exactly': 1.0, 'product': 1.0}
Word element => {'babies': 1.0, 'safe': 1.0, 'recommend': 1.0, 'we': 1.0, 'ability': 1.0, 'blankets': 1.0, 'that': 2.0, 'changing': 1.0, 'sleep': 2.0, 'all': 1.0, 'to': 3.0, 'her': 6.0, 'is': 5.0, 'cable': 3.0, 'around': 1.0, 'who': 1.0, 's': 1.0, 'gorgeous': 1.0, 'could': 1.0, 'since': 1.0, 'friend': 2.0, 'she': 4.0, 'wear': 1.0, 'it': 2.0, 'best': 1.0, 'absolutely': 1.0, 'very': 2.0, 'sleepsack': 5.0, 'little': 2.0, 'easy': 1.0, 'and': 9.0, 'pull': 1.0, 'in': 1.0, 'turn': 1.0, 'have': 1.0, 'small': 1.0, '8': 1.0, 'perfectly': 1.0, 'this': 2.0, 'perfect': 1.0, 'soft': 1.0, 'old': 1.0, 'i': 3.0, 'legroom': 1.0, 'for': 6.0, 'bottom': 1.0, 'love': 1.0, 'fit': 1.0, 'using': 1.0, 'zips': 1.0, 'so': 1.0, 'worried': 1.0, 'perfected': 1.0, 'daughter': 3.0, 'got': 1.0, 'reach': 1.0, 'crib': 1.0, 'size': 1.0, 'knit': 3.0, 'over': 3.0, 'get': 1.0, 'months': 1.0, 'pattern': 1.0, 'one': 1.0, 'twisted': 1.0, 'or': 1.0, 'would': 2.0, 'medium': 1.0, 'been': 1.0, 'halo': 1.0, 'the': 12.0, 'tangled': 1.0, 'of': 3.0, 'has': 1.0, 'them': 1.0, 'sleepsacks': 1.0, 'solution': 1.0, 'from': 1.0, 'my': 5.0, 'me': 1.0, 'roll': 1.0, 'when': 1.0, 'was': 3.0, 'lbs': 1.0, 'about': 1.0, '18': 1.0, 'up': 1.0, 'pleased': 1.0, 'blanket': 1.0, '5': 1.0, 'with': 3.0, 'plenty': 1.0, 'had': 1.0, 'offered': 1.0, 'kick': 1.0, 'safely': 1.0, 'double': 1.0, 'layering': 1.0, 'cotton': 1.0, 'thick': 1.0, 'make': 1.0, 'as': 1.0, 'diaper': 1.0}
Word element => {'ups': 1.0, 'box': 1.0, 'have': 1.0, 'should': 1.0, 'bags': 1.0, 'appropriate': 1.0, 'not': 1.0, 'were': 1.0, 'up': 1.0, 'of': 1.0, 'perfect': 1.0, 'in': 1.0, 'pieces': 1.0, '750': 1.0, 'bent': 1.0, 'apparently': 1.0, 'take': 1.0, 'came': 1.0, 'but': 1.0, 'stroller': 3.0, 'tn': 1.0, 'for': 1.0, 'love': 1.0, 'this': 1.0, 'it': 4.0, 'tire': 1.0, 'returned': 1.0, 'i': 2.0, 'been': 2.0, 'shipped': 1.0, 'was': 1.0, 'frame': 1.0, 'had': 2.0, 'to': 4.0, 'me': 1.0, 'and': 3.0, 'damage': 1.0, 'sent': 1.0, 'already': 1.0, 'then': 1.0, 'damaged': 1.0, 'the': 4.0, 'a': 1.0, 'front': 1.0}
Word element => {'worth': 1.0, 'expensive': 1.0, 'more': 1.0, 'little': 1.0, 'might': 1.0, 'most': 1.0, 'indie': 4.0, 'pregnant': 1.0, 'but': 3.0, 'each': 1.0, 'new': 1.0, 'independent': 1.0, 'normal': 1.0, 'fade': 1.0, 'called': 1.0, 'ride': 1.0, 'through': 1.0, 'loved': 1.0, 'list': 1.0, 'love': 1.0, 'had': 2.0, 'excellent': 1.0, 'in': 2.0, 'and': 5.0, 'can': 1.0, 'so': 2.0, 'doors': 1.0, 'became': 1.0, 'to': 2.0, 'must': 1.0, 'ourselves': 1.0, 'my': 5.0, 'other': 1.0, 'fits': 1.0, 'great': 1.0, 'of': 1.0, 'the': 7.0, 'on': 1.0, 'are': 1.0, 'first': 1.0, 'as': 2.0, 'heavy': 1.0, 'recline': 1.0, 'it': 5.0, 'son': 1.0, 'second': 1.0, 'child': 1.0, 'penny': 1.0, 'up': 1.0, 'wash': 1.0, 'blew': 1.0, 'was': 1.0, 'buy': 1.0, 'style': 1.0, 'daughter': 2.0, 'what': 1.0, 'when': 1.0, 'shrink': 1.0, 'same': 2.0, 'while': 1.0, 'is': 3.0, 'sits': 1.0, 'didn': 1.0, 'issue': 1.0, 'independence': 1.0, 'twin': 2.0, 'applies': 1.0, 'canopies': 1.0, 'always': 1.0, 'fabrics': 1.0, 'i': 4.0, 'well': 1.0, 'shipping': 1.0, 'expected': 1.0, 'they': 2.0, 'cost': 1.0, 't': 1.0, 's': 2.0, 'bumbleride': 2.0, 'we': 2.0, 'a': 3.0, 'or': 1.0, 'incredibly': 1.0, 'with': 2.0, 'smooth': 1.0, 'stroller': 1.0, 'that': 1.0, 'be': 2.0, 'quality': 1.0, 'customer': 2.0, 'every': 1.0, 'still': 1.0, 'service': 2.0, 'tire': 1.0, 'also': 1.0, 'happening': 1.0, 'out': 2.0, 'replaced': 2.0, 'kept': 1.0, 'seats': 1.0, 'just': 1.0, 'shipped': 1.0, 'problem': 1.0, 'one': 1.0, 'no': 4.0}
Word element => {'age': 1.0, 'different': 1.0, 'kids': 1.0, 'very': 1.0, 'will': 1.0, 'premieit': 1.0, 'twin': 1.0, 'family': 1.0, 'my': 1.0, 'since': 1.0, 'happen': 1.0, 'gone': 1.0, 'that': 2.0, 'car': 3.0, 'be': 2.0, 'says': 1.0, 'twins': 2.0, 'so': 1.0, '8': 1.0, 'have': 2.0, 'able': 1.0, 'new': 1.0, 'fit': 1.0, 'for': 3.0, 'one': 1.0, 'are': 1.0, 'useful': 2.0, 'wait': 1.0, 'not': 2.0, 'because': 1.0, 'the': 2.0, 'might': 1.0, 'greco': 1.0, 't': 2.0, 'with': 2.0, 'only': 1.0, 'explain': 1.0, 'is': 4.0, 'many': 1.0, 'reason': 1.0, 'i': 2.0, 'six': 1.0, 'clearly': 1.0, 'stroller': 1.0, 'doesn': 1.0, 'bumble': 1.0, 'weeks': 1.0, 'even': 1.0, 'didn': 1.0, 'like': 1.0, 'ride': 1.0, 'born': 1.0, 'seats': 1.0, 'it': 6.0, 'month': 1.0, 'what': 1.0, 'how': 1.0, 'but': 1.0, 'can': 1.0, 'seat': 2.0, 'comparable': 1.0, 'to': 3.0, 'use': 1.0}
Word element => {'she': 1.0, 'and': 1.0, 'a': 1.0, 'was': 1.0, 'my': 1.0, 'this': 2.0, 't': 1.0, 'loves': 2.0, 'it': 3.0, 'hasn': 1.0, 'her': 1.0, 'but': 1.0, 'use': 1.0, 'rained': 1.0, 'gift': 1.0, 'enough': 1.0, 'daughter': 1.0, 'for': 1.0, 'to': 1.0}
Word element => {'bigger': 1.0, 'looks': 1.0, 'nice': 1.0, 'snuggled': 1.0, 'quality': 1.0, 'as': 1.0, 'additional': 1.0, 'jacana': 1.0, 'and': 2.0, 'get': 1.0, 'the': 2.0, 'll': 1.0, 'cute': 1.0, 'touch': 1.0, 'i': 1.0, 'good': 1.0, 'nursery': 1.0, 'themed': 1.0, 'sure': 1.0, 'with': 2.0, 'it': 1.0, 'baby': 1.0, 'm': 1.0, 'gets': 1.0}
Word element => {'presents': 1.0, 'she': 1.0, 'and': 1.0, 'my': 1.0, 'purchased': 1.0, 'for': 1.0, 'in': 1.0, 'loves': 1.0, 's': 1.0, 'niece': 1.0, 'we': 1.0, 'first': 1.0, 'this': 1.0, 'it': 3.0, 'to': 1.0, 'was': 1.0, 'watching': 1.0, 'so': 1.0, 'birthday': 1.0, 'cute': 1.0, 'her': 1.0, 'sit': 1.0, 'open': 1.0, '34': 2.0}
Word element => {'back': 1.0, 'as': 1.0, 'another': 1.0, 'll': 1.0, 'flaw': 1.0, 'even': 1.0, 'junky': 1.0, 'ends': 1.0, 'then': 1.0, 'get': 1.0, 'exterior': 1.0, 'think': 1.0, 'can': 2.0, 'con': 1.0, 'mechanism': 1.0, 'frustrated': 1.0, 'be': 2.0, 'younger': 1.0, 'just': 2.0, 've': 1.0, 'painted': 1.0, 'munchkin': 1.0, 'would': 1.0, 'originally': 1.0, 'different': 1.0, 'clean': 1.0, 'than': 1.0, 'brands': 1.0, 'push': 2.0, 'being': 1.0, 'up': 3.0, 'ended': 1.0, 'buying': 1.0, 'thermos': 4.0, 'more': 1.0, 'time': 1.0, 'is': 3.0, 'at': 3.0, 'keep': 1.0, 'gave': 1.0, 'box': 1.0, 'loves': 1.0, 'had': 2.0, 'passing': 1.0, 'infant': 1.0, 'onto': 1.0, 'straw': 3.0, 'but': 2.0, '2': 1.0, 'now': 1.0, 'pretty': 1.0, 'to': 3.0, 'cups': 2.0, 'an': 1.0, 'all': 2.0, 'was': 3.0, 'useful': 1.0, 'doesn': 1.0, 'recommend': 1.0, 'might': 1.0, 'formula': 1.0, 'design': 1.0, 'mostly': 1.0, 'drinks': 1.0, 'i': 8.0, 'son': 4.0, 'off': 1.0, 'tried': 1.0, 'b': 1.0, 'bought': 1.0, 'around': 1.0, 'his': 2.0, 'cold': 2.0, 'during': 1.0, 'outings': 1.0, 'few': 1.0, 'this': 4.0, 'only': 2.0, 'scratched': 1.0, 'when': 1.0, 'a': 4.0, 't': 1.0, 'the': 11.0, 'of': 2.0, 'looking': 1.0, 'using': 1.0, 'including': 1.0, 'and': 7.0, 'one': 1.0, 'too': 1.0, 'they': 2.0, 'many': 1.0, 'easily': 1.0, 'that': 2.0, 'problems': 1.0, 'with': 4.0, 'leakage': 1.0, 'fun': 1.0, 'beats': 1.0, 'has': 1.0, 'them': 1.0, 'leak': 1.0, 'any': 1.0, 'keeps': 1.0, 'stainless': 1.0, 'zoli': 1.0, 'durable': 1.0, 'easy': 1.0, 'cap': 1.0, 'button': 2.0, 'mark': 1.0, 'for': 2.0, 'toddler': 1.0, 'year': 1.0, 'product': 2.0, 'thought': 2.0, 'it': 4.0, 'him': 1.0, 'hard': 1.0, 'open': 1.0, 'close': 1.0, 'cute': 1.0, 'first': 1.0, 'love': 1.0, 'steel': 1.0, 'he': 1.0, 'my': 4.0, 'learning': 1.0, 'least': 1.0, 'children': 1.0}
Word element => {'our': 1.0, 'time': 1.0, 'remainder': 1.0, 'us': 1.0, 'these': 1.0, 'likely': 1.0, 'work': 1.0, 'will': 2.0, 'they': 1.0, 'any': 1.0, 'another': 2.0, 'market': 1.0, 'in': 2.0, 'now': 1.0, 'diapers': 1.0, 'are': 1.0, 'waste': 1.0, 'doesn': 1.0, 'was': 3.0, 'unfortunately': 1.0, 'like': 2.0, 'on': 2.0, 'slip': 1.0, 'but': 1.0, 'stuff': 1.0, 'just': 1.0, 'style': 1.0, 'not': 2.0, 'across': 1.0, 'and': 10.0, 'tough': 1.0, 'sling': 2.0, 'love': 1.0, 'for': 3.0, 'get': 1.0, 'months': 1.0, 'liked': 1.0, 'broke': 1.0, 'i': 12.0, 'two': 1.0, 'off': 1.0, 'until': 1.0, 'stays': 1.0, 'or': 1.0, 'came': 2.0, 't': 4.0, 'a': 4.0, 's': 3.0, 'of': 6.0, 'the': 12.0, 'went': 1.0, 'me': 1.0, 'my': 2.0, 'found': 2.0, 'few': 1.0, 'this': 4.0, 'find': 2.0, 'tend': 1.0, '4th': 1.0, 'needs': 1.0, 'can': 2.0, 'so': 2.0, 'it': 8.0, 'useless': 1.0, 'with': 3.0, 'fall': 1.0, 'easily': 1.0, 'that': 4.0, 'too': 1.0, 'one': 4.0, 'try': 2.0, 'do': 1.0, 'much': 1.0, 'couldn': 1.0, 'son': 2.0, 'worked': 1.0, 'diaper': 1.0, 'bags': 3.0, 'as': 2.0, 'bag': 5.0, 'cumbersome': 1.0, 'people': 1.0, 'to': 3.0, 'pretty': 1.0, 'through': 2.0, 'backpack': 1.0, 'straps': 1.0, 'always': 1.0, 'way': 1.0, 'things': 1.0, 'other': 2.0, 'out': 3.0, 'purchase': 1.0, 'hitting': 1.0, 'biggest': 1.0, '3rd': 1.0, 'there': 1.0, 'then': 1.0, 'we': 3.0, 'fine': 1.0, 'carry': 1.0, 'strap': 1.0, 'unsewn': 1.0, 'rendering': 1.0, 'is': 1.0, 'look': 1.0, 'at': 1.0, 'recently': 1.0, 'top': 1.0, 'zipper': 1.0, 'got': 1.0, 'good': 1.0, '6': 1.0, 'use': 1.0, 'were': 1.0, 'shoulder': 1.0, 'don': 1.0, 'consider': 1.0}
Word element => {'submission': 1.0, 'amount': 1.0, 'to': 1.0, 'the': 1.0, 'words': 1.0, 'my': 1.0, 'enough': 1.0, 'gift': 1.0, 'i': 1.0, 'great': 1.0, 'it': 1.0, 've': 1.0, 'don': 1.0, 'kept': 1.0, 'fit': 1.0, 'have': 1.0, 't': 1.0, 'self': 1.0, 'required': 1.0, 'wish': 1.0, 'could': 1.0, 'for': 2.0}
Word element => {'do': 1.0, 'forward': 1.0, 'old': 1.0, '5': 1.0, 'mo': 2.0, '14': 1.0, 'with': 1.0, 'multiple': 1.0, 'every': 1.0, 'use': 1.0, 'are': 1.0, 'well': 1.0, 'ones': 1.0, 'enough': 1.0, 'seats': 1.0, 'send': 1.0, 'order': 1.0, 'up': 1.0, 'hold': 1.0, 'right': 1.0, 'sending': 1.0, 'away': 1.0, 'now': 1.0, 'black': 1.0, 'were': 3.0, 'in': 1.0, 'said': 1.0, 'an': 1.0, 'a': 2.0, 'we': 5.0, 'so': 3.0, 'times': 1.0, 'when': 1.0, 'am': 1.0, 'of': 2.0, 'email': 1.0, 'some': 1.0, 'though': 1.0, 'i': 3.0, 'out': 1.0, 'concern': 1.0, 'single': 1.0, 'very': 1.0, 'read': 1.0, 'sure': 1.0, 'easy': 1.0, 'the': 11.0, 'got': 1.0, 'even': 2.0, 'used': 1.0, 'have': 1.0, 'that': 1.0, 'configuration': 1.0, 'they': 4.0, 'cause': 1.0, 'reviews': 2.0, 'on': 2.0, 'this': 2.0, 'it': 4.0, 'as': 1.0, 'all': 1.0, 'to': 3.0, 'was': 1.0, 'love': 1.0, 'for': 1.0, 'product': 1.0, 'bought': 1.0, 'too': 1.0, 'and': 11.0, 'great': 1.0, 'grass': 1.0, 'tandem': 2.0, 'glad': 1.0, 'stroller': 2.0, 'would': 1.0, 'charcoal': 4.0, 'but': 1.0, 'both': 1.0, 'best': 1.0, 'convinced': 1.0, 'open': 1.0, 'switch': 1.0, 'handles': 1.0, 'or': 3.0, 'not': 1.0, 'shipper': 1.0, 'uneven': 1.0, 'dirt': 1.0, 'backward': 1.0, 'day': 1.0, 'sent': 1.0, 'buy': 1.0, 'ever': 1.0, 'close': 1.0, 'is': 2.0, 'around': 1.0, 'ordered': 1.0}
Word element => {'go': 1.0, 'boat': 1.0, 'same': 1.0, 'someone': 1.0, 'yourself': 1.0, 'you': 2.0, 'easier': 1.0, 'give': 1.0, 'definitely': 2.0, 'out': 1.0, 'came': 1.0, 'children': 1.0, 'accidents': 1.0, 'been': 1.0, 'who': 1.0, 'about': 1.0, 'sites': 1.0, 'read': 1.0, 'their': 2.0, 'adjusting': 1.0, 'find': 2.0, 'much': 1.0, 'after': 1.0, 'unstuck': 1.0, 'these': 1.0, 'once': 1.0, 'some': 1.0, 'stuck': 1.0, 'they': 2.0, 'loosen': 1.0, 'help': 1.0, 'when': 1.0, 'seats': 2.0, 'larger': 1.0, 'reason': 1.0, 'common': 1.0, 'manual': 1.0, 'mentioned': 1.0, 's': 1.0, 'front': 1.0, 'underneath': 1.0, 'tilting': 1.0, 'from': 1.0, 'looks': 2.0, 'my': 2.0, 'me': 2.0, 'concern': 1.0, '5': 1.0, 'eye': 1.0, 'mirror': 1.0, 'before': 1.0, 'where': 1.0, 'kids': 2.0, 'spot': 1.0, 'middle': 1.0, 'back': 1.0, 'car': 9.0, 'infant': 1.0, 'use': 1.0, 'her': 6.0, 'outgrowing': 1.0, 'and': 5.0, 'v': 1.0, 'our': 1.0, 'in': 6.0, 'seat': 8.0, 'to': 16.0, 'passenger': 1.0, 'ourselves': 1.0, 'other': 1.0, 'an': 1.0, 'all': 1.0, 'would': 2.0, 'properly': 2.0, 'more': 2.0, 'people': 2.0, 'heck': 1.0, 'sale': 1.0, 'year': 1.0, 'current': 1.0, 'move': 1.0, 'decided': 3.0, 'bought': 1.0, 'very': 3.0, 'being': 1.0, 'rolled': 1.0, 'but': 2.0, 'on': 6.0, 'them': 1.0, 'recommendation': 1.0, 'for': 6.0, 'be': 1.0, 'yesterday': 1.0, 'towels': 1.0, 'ended': 1.0, 'got': 1.0, 'daughter': 3.0, '169': 1.0, 'not': 2.0, 'is': 6.0, 'at': 2.0, 'keep': 3.0, 'a': 10.0, 'reviews': 1.0, 'fine': 1.0, 'we': 5.0, 'seemed': 2.0, 'store': 2.0, 'was': 2.0, 'strange': 1.0, 't': 1.0, 'belt': 2.0, 'stars': 1.0, 'wanted': 1.0, 'here': 1.0, 'headrest': 1.0, 'so': 4.0, 'easy': 1.0, 'bit': 1.0, 'initially': 1.0, 'few': 1.0, 'tightening': 1.0, 'this': 4.0, 'unharmed': 1.0, 'it': 15.0, 'she': 2.0, 'us': 1.0, 'also': 4.0, 'old': 1.0, 'involved': 1.0, 'putting': 1.0, 'i': 13.0, 'little': 2.0, 'two': 1.0, 'have': 4.0, 'overpriced': 1.0, 'completely': 1.0, 'couldn': 1.0, 'install': 4.0, 'say': 1.0, 'cr': 1.0, 'comfortable': 4.0, 'said': 1.0, 'mention': 1.0, 'big': 1.0, 'see': 1.0, 'seems': 1.0, 'tried': 2.0, 'until': 1.0, 'now': 1.0, 'paranoid': 1.0, 'latch': 2.0, 'were': 4.0, 'straps': 2.0, 'something': 2.0, '2012': 1.0, 'having': 3.0, 'that': 5.0, 'because': 3.0, 'installation': 1.0, 'installed': 2.0, 'get': 1.0, 'trouble': 1.0, 'installing': 2.0, 'with': 4.0, 'actually': 1.0, 'system': 1.0, 'if': 2.0, 'still': 1.0, 'facing': 3.0, 'quite': 2.0, 'way': 1.0, 'had': 7.0, 'the': 22.0, 'person': 2.0, 'of': 2.0, 'getting': 1.0, 'he': 3.0, 'suggested': 1.0, 'time': 1.0, 'budge': 2.0, 'honda': 1.0, 'even': 2.0, 'instead': 1.0, 'should': 2.0, 'rear': 3.0, 'good': 1.0, 'side': 1.0, 'which': 3.0, 'up': 2.0}
Word element => {'made': 1.0, 'buy': 1.0, 'waterproof': 1.0, 'pad': 1.0, 'changing': 1.0, 'use': 1.0, 'an': 1.0, 'finally': 1.0, 'gets': 1.0, 'board': 1.0, 'card': 1.0, 'worst': 1.0, 'bad': 1.0, 'bottom': 1.0, 'at': 1.0, 'insert': 1.0, 'plus': 1.0, 'accident': 1.0, 'get': 1.0, 'a': 1.0, 'you': 2.0, 'so': 1.0, 'soak': 1.0, 'proof': 1.0, 'water': 1.0, 'is': 3.0, 'of': 2.0, 'once': 3.0, 'addition': 1.0, 'with': 1.0, 'it': 4.0, 'shoulders': 1.0, 'have': 1.0, 'coming': 1.0, 'wet': 1.0, 'by': 1.0, 'were': 1.0, 'born': 1.0, 'june': 1.0, 'hate': 1.0, 'straps': 1.0, 'sit': 1.0, 'if': 2.0, 'apart': 1.0, 'through': 1.0, 'falling': 1.0, 'in': 2.0, 'will': 2.0, 'also': 1.0, 'loaded': 1.0, '2': 1.0, 'heavy': 1.0, 'bulky': 1.0, 'my': 1.0, 'lo': 2.0, 'has': 1.0, '2013': 1.0, 'spill': 1.0, 'was': 2.0, 'straight': 1.0, 'compartment': 1.0, 'cardboard': 1.0, 'the': 9.0, 'unraveled': 1.0, 'feb': 1.0, 'comfortable': 1.0, 'stabilizing': 1.0, 'for': 1.0, 'bag': 4.0, 'everywhere': 1.0, 'or': 2.0, 'bottles': 2.0, 'clothes': 1.0, 'even': 1.0, 'diapers': 1.0, 'i': 2.0, 'becomes': 1.0, 'etc': 1.0, 'because': 1.0, 'does': 1.0, 'part': 1.0, 'too': 1.0, 'and': 3.0, 'not': 3.0, 'absorbent': 1.0, 'your': 1.0, 'on': 1.0, 'this': 3.0, 'full': 1.0, 'all': 1.0, 'any': 1.0, 'other': 1.0}
Word element => {'delight': 1.0, 'saw': 1.0, 'when': 1.0, 'don': 2.0, 'up': 2.0, 'lovely': 1.0, 'though': 1.0, 'daughter': 2.0, 's': 3.0, 't': 2.0, 'a': 1.0, 'way': 2.0, 'some': 1.0, 'she': 2.0, 'others': 1.0, 'prefer': 1.0, 'installing': 1.0, 'are': 2.0, 'actually': 1.0, 'stars': 1.0, 'cheap': 1.0, 'for': 2.0, 'chandelier': 1.0, 'her': 1.0, 'lit': 1.0, 'shrieked': 1.0, 'and': 2.0, 'getting': 1.0, 'after': 1.0, 'fixture': 1.0, 'crystals': 1.0, 'my': 2.0, 'looks': 2.0, 'it': 8.0, 'x12': 1.0, 'picture': 1.0, 'even': 1.0, 'too': 1.0, 'one': 2.0, 'give': 2.0, '5': 1.0, 'room': 2.0, 'hung': 1.0, 'all': 2.0, 'to': 3.0, 'have': 1.0, 'as': 1.0, 'leave': 1.0, 'mentioned': 1.0, 'with': 2.0, 'this': 3.0, 'received': 1.0, 'wire': 1.0, 'how': 1.0, 'was': 2.0, 'walls': 1.0, 'think': 2.0, 'make': 1.0, 'off': 3.0, 'enough': 2.0, 'cut': 1.0, 'pink': 2.0, 'gives': 1.0, 'you': 3.0, '11': 1.0, 'white': 1.0, 'is': 4.0, 'at': 1.0, 'just': 1.0, 'contrast': 1.0, 'wiring': 1.0, 'light': 1.0, 'by': 1.0, 'right': 1.0, 'little': 1.0, 'ceiling': 1.0, 'girl': 1.0, 'price': 1.0, 'great': 1.0, 'still': 1.0, 'if': 1.0, 'short': 1.0, 'sure': 1.0, 'thread': 1.0, 'your': 1.0, 'surprised': 1.0, 'through': 1.0, 'nipple': 1.0, 'the': 9.0, 'of': 1.0, 'need': 1.0, 'hubby': 1.0, 'because': 1.0, 'that': 1.0, 'misleading': 1.0, 'hard': 1.0, 'learned': 1.0, 'bedroom': 1.0, 'bulbs': 1.0, 'about': 1.0, 'four': 1.0, 'i': 6.0, 'well': 1.0}
Word element => {'both': 1.0, 'pleased': 1.0, 'so': 1.0, 'kids': 1.0, 'm': 1.0, 'as': 1.0, 'for': 1.0, 'one': 2.0, 'just': 1.0, 'pedal': 1.0, 'free': 1.0, 'i': 1.0, 'step': 1.0, 'hands': 1.0, 'pets': 1.0, 'great': 1.0, 'the': 3.0, 'that': 1.0, 'is': 2.0, 'on': 1.0, 'gate': 1.0, 'floor': 1.0, 'and': 2.0, 'opens': 1.0, 'truly': 1.0, 'automatically': 1.0, 'with': 1.0, 'first': 2.0, 'this': 1.0, 'it': 1.0, 'ordering': 1.0, 'also': 1.0, 'a': 1.0, 'closes': 1.0, '2nd': 1.0}
Word element => {'sleep': 1.0, 'intend': 1.0, 'little': 1.0, 'setting': 1.0, 'pad': 1.0, 'since': 1.0, '1': 1.0, 'add': 1.0, 'buy': 1.0, 'did': 1.0, 'he': 1.0, 'baby': 2.0, 'next': 1.0, 'half': 1.0, 'minutes': 1.0, 'took': 1.0, 'packing': 1.0, 'separate': 1.0, 't': 1.0, 'don': 1.0, 'bedroom': 1.0, 'anticipate': 1.0, 'handed': 1.0, 'need': 2.0, 'or': 1.0, 'up': 1.0, 'mesh': 1.0, 'flat': 1.0, 'out': 2.0, 're': 1.0, 'grabbing': 1.0, 'time': 3.0, 'harder': 1.0, 'would': 2.0, '179': 1.0, 'what': 1.0, 'yards': 1.0, 'se': 5.0, 'master': 1.0, 'does': 3.0, 'yard': 3.0, 'differences': 1.0, 'assemble': 2.0, 'than': 2.0, 'and': 10.0, 'cut': 1.0, 'sturdy': 1.0, 'lx': 4.0, 'us': 2.0, 'things': 1.0, 'versions': 4.0, 'colors': 1.0, 'regularly': 1.0, 'thick': 1.0, 'anywhere': 1.0, 'though': 1.0, 'like': 2.0, 'table': 1.0, 'version': 1.0, 'i': 9.0, 'on': 1.0, 'chicco': 2.0, 'was': 1.0, '23': 1.0, 'try': 1.0, 'ones': 1.0, 'one': 3.0, 'bought': 1.0, 'born': 1.0, 'mobile': 3.0, 's': 4.0, 'preferred': 1.0, 'have': 1.0, 'exact': 1.0, 'for': 6.0, 'taking': 1.0, 'supposed': 1.0, 'my': 1.0, 'may': 1.0, '20': 1.0, 'because': 3.0, 'that': 4.0, 'from': 2.0, 'local': 1.0, '199': 2.0, 'now': 2.0, 'almost': 1.0, 'frame': 2.0, 'of': 3.0, 'the': 23.0, '99': 4.0, 'plastic': 1.0, 'really': 2.0, 'sale': 1.0, 'this': 4.0, 'soft': 1.0, 'as': 2.0, 'just': 3.0, 'by': 2.0, 'forward': 1.0, 'not': 2.0, 'xl': 1.0, 'completely': 1.0, 'babies': 2.0, 'more': 2.0, 'bassinet': 2.0, 'to': 9.0, 'removes': 1.0, 'using': 2.0, 'swings': 1.0, '2013': 1.0, 'off': 1.0, 'side': 2.0, 'read': 1.0, 'so': 1.0, 'can': 2.0, 'yesterday': 1.0, 'be': 3.0, 'hassle': 1.0, 'whole': 1.0, 'double': 1.0, 'although': 1.0, 'padding': 2.0, 'changing': 1.0, 'r': 2.0, 'floor': 1.0, 'price': 1.0, 'in': 4.0, 'm': 2.0, 'look': 1.0, 'is': 2.0, 'at': 1.0, 'were': 1.0, 'about': 1.0, 'play': 4.0, '189': 1.0, 'a': 8.0, 'tiny': 1.0, 'bit': 1.0, 'it': 14.0, 'negligible': 1.0, 'over': 2.0, 'open': 1.0, 'we': 6.0, 'reviews': 1.0, 'gym': 1.0, 'difference': 1.0, 'pockets': 1.0, 'are': 1.0, 'stretches': 1.0, 'magic': 1.0, 'sure': 2.0}
Word element => {'on': 1.0, 'sheets': 1.0, 'problem': 1.0, 'had': 1.0, 'grandma': 1.0, 'oh': 1.0, 'with': 1.0, 'house': 1.0, 'going': 1.0, 'mainly': 1.0, 'around': 1.0, 'carrying': 1.0, 'buy': 1.0, 'weight': 1.0, '5': 1.0, 'a': 3.0, 'now': 1.0, 'adjust': 1.0, 'road': 1.0, 'my': 1.0, 'looks': 1.0, 'everything': 1.0, 'because': 1.0, 'problems': 1.0, 'easily': 1.0, 'assembled': 1.0, 'our': 1.0, 'hurting': 1.0, 'without': 1.0, 'diapers': 1.0, 'are': 1.0, 'fine': 1.0, 'we': 1.0, 'measured': 1.0, 'lot': 1.0, 'rating': 1.0, 'one': 1.0, 'over': 2.0, '34': 1.0, 'come': 1.0, 're': 3.0, 'pad': 2.0, 'off': 1.0, '40': 1.0, 'star': 1.0, 'll': 3.0, 'down': 2.0, 'assembling': 1.0, 'although': 1.0, 'change': 1.0, 'comments': 1.0, '150': 1.0, 'got': 1.0, 'just': 2.0, 'large': 1.0, 'putting': 1.0, 'i': 8.0, '4': 1.0, 'read': 1.0, 'very': 2.0, 'store': 3.0, 's': 8.0, 'of': 1.0, 'the': 18.0, 'heavier': 1.0, 'through': 1.0, 'tallest': 1.0, '25': 1.0, 'gear': 1.0, 'us': 1.0, 'ask': 1.0, 'someone': 1.0, 'choice': 1.0, 'able': 1.0, 'you': 6.0, 'when': 1.0, 'lbs': 1.0, 'babies': 1.0, 'as': 3.0, 'backs': 1.0, 'for': 3.0, 'this': 4.0, 'your': 1.0, 'any': 1.0, 'online': 1.0, 'install': 1.0, 'trip': 1.0, 'and': 4.0, '27': 1.0, 'occasional': 1.0, 'in': 9.0, 'no': 1.0, 'evenly': 1.0, 'chicco': 1.0, '13': 1.0, 'it': 9.0, 'if': 5.0, 'same': 1.0, 'don': 1.0, 'has': 1.0, 'than': 2.0, 'higher': 1.0, 'honor': 1.0, 'directed': 1.0, 'portion': 1.0, 'planning': 1.0, 'use': 2.0, 'to': 9.0, 'bassinet': 2.0, 'bag': 1.0, 'have': 2.0, 'by': 1.0, 'pull': 1.0, 'back': 2.0, 'attachment': 1.0, 'out': 1.0, 'fit': 1.0, 't': 2.0, 'further': 1.0, 'wouldn': 1.0, 'secure': 1.0, '11': 1.0, 'directions': 1.0, 'sits': 1.0, 'is': 4.0, 'quilted': 1.0, 'think': 1.0, 'definitely': 1.0, 'graco': 4.0, 'but': 3.0, 'they': 2.0, 'sturdy': 1.0, 'all': 2.0, 'fits': 1.0, 'mattress': 3.0, 'nicely': 1.0, 'carry': 1.0, 'listing': 1.0, 'not': 1.0, 'good': 1.0, 'plan': 1.0, 'which': 1.0, 'side': 1.0, 'yard': 2.0, 'some': 1.0, 'leaning': 1.0, 'bottom': 1.0, 'love': 1.0, 'models': 1.0, 'be': 2.0, 'attachments': 1.0, 'changing': 3.0, 'r': 1.0, 'put': 1.0, 'do': 1.0, 'much': 1.0, 'area': 1.0, 'play': 2.0, 'about': 1.0}
Word element => {'germs': 1.0, 'from': 1.0, 'baby': 1.0, 'protecting': 1.0, 'm': 1.0, 'still': 1.0, 'so': 1.0, 'parts': 1.0, 'of': 3.0, 'exposed': 1.0, 'covers': 1.0, 'but': 1.0, 'feel': 1.0, 'most': 1.0, 'either': 1.0, 'several': 1.0, 'a': 1.0, 'many': 1.0, 'chair': 1.0, 'on': 1.0, 'the': 2.0, 't': 1.0, 'both': 1.0, 'used': 1.0, 've': 1.0, 'my': 1.0, 'high': 1.0, 'like': 1.0, 'snapped': 1.0, 'i': 3.0, 'seem': 1.0, 'some': 1.0, 'carts': 1.0, 'can': 1.0, 'hard': 1.0, 'this': 1.0, 'it': 3.0, 'makes': 1.0, 'shopping': 1.0, 'ever': 1.0, 'now': 1.0, 'to': 1.0, 'edges': 1.0, 'me': 1.0, 'and': 2.0, 'get': 1.0, 'around': 1.0}
Word element => {'person': 1.0, 'pretty': 1.0, 'is': 1.0, 'but': 1.0, 'came': 1.0, 'market': 1.0, 'wish': 1.0, 'this': 2.0, 'it': 3.0, 'easy': 1.0, 'recommend': 1.0, 'store': 1.0, 'would': 1.0, 'on': 2.0, 'another': 1.0, 'my': 2.0, 'clean': 1.0, 'color': 1.0, 'one': 2.0, 'comfortable': 1.0, 'sit': 1.0, 'parents': 1.0, 'design': 1.0, 'touch': 1.0, 'neoprene': 1.0, 'so': 1.0, 'while': 1.0, 'love': 1.0, 'for': 2.0, 'product': 1.0, 'all': 1.0, 'to': 3.0, 'grab': 1.0, 'highly': 1.0, 'little': 2.0, 'very': 2.0, 'and': 3.0, 'those': 2.0, 'into': 1.0, 'that': 1.0, 'their': 1.0, 'go': 1.0, 'we': 1.0, 't': 1.0, 'the': 2.0, 'want': 1.0, 'i': 5.0, 'muffins': 1.0, 'gross': 1.0, 'grocery': 1.0, 'in': 3.0, 'shop': 1.0, 'carts': 1.0, 'keep': 1.0, 'don': 1.0, 'up': 1.0, 'back': 1.0, 'car': 1.0, 'folded': 1.0, 'when': 1.0}
Word element => {'my': 1.0, 'soft': 1.0, 'attention': 1.0, 'with': 1.0, 'was': 2.0, 'its': 1.0, 'out': 1.0, 'it': 4.0, 'covers': 1.0, 'the': 7.0, 'cover': 2.0, 'horrible': 1.0, 'pattern': 1.0, 'and': 2.0, 'is': 1.0, 'very': 1.0, 'faded': 1.0, 'foam': 1.0, 'money': 1.0, 'but': 1.0, 'pillow': 1.0, 'serves': 1.0, 'happy': 1.0, 'reasonably': 1.0, 'of': 2.0, 'washed': 1.0, 'purpose': 1.0, 'mentioned': 1.0, 'i': 3.0, 'itself': 1.0, 'elsewhere': 1.0, 'as': 1.0, 'to': 2.0, 'all': 1.0, 'have': 2.0, 'nice': 1.0, 'package': 1.0, 'after': 1.0, 'totally': 1.0, 'nearly': 1.0, 'story': 1.0, 'other': 2.0, 'reviewers': 2.0, 'where': 1.0, 'unrecognizable': 1.0, 'should': 1.0, 'different': 1.0, 'paid': 1.0, 'almost': 1.0, 'spent': 1.0}
Word element => {'is': 1.0, 'instructions': 1.0, 'on': 1.0, 'before': 1.0, 'except': 1.0, 'the': 1.0, 'cover': 1.0, 'this': 2.0, 'it': 1.0, 'i': 2.0, 'product': 1.0, 'faded': 1.0, 'panel': 1.0, 'using': 1.0, 'one': 1.0, 'every': 1.0, 'washed': 1.0, 'completely': 1.0, 'of': 1.0, 'recommend': 1.0, 'fabric': 1.0, 'per': 1.0, 'would': 1.0, 'not': 1.0}
Word element => {'mix': 1.0, 'can': 1.0, 'cups': 1.0, 'the': 1.0, 'all': 1.0, 'and': 2.0, 'spill': 1.0, 'i': 1.0, 'wish': 1.0, 'playtex': 1.0, 'did': 1.0, 't': 1.0, 'this': 1.0, 'not': 1.0, 'they': 1.0, 'making': 1.0, 'stop': 1.0, 'style': 1.0, 'match': 1.0, 'don': 1.0}
Word element => {'messy': 1.0, 'get': 1.0, 'of': 1.0, 'for': 1.0, 'again': 1.0, 'buy': 1.0, 'never': 1.0, 'would': 1.0, 'that': 1.0, 'make': 1.0, 'try': 1.0, 'attachment': 1.0, 'upholstery': 1.0, 'an': 1.0, 'with': 1.0, 'cleaner': 1.0, 'stream': 1.0, 'rent': 1.0, 'now': 1.0, 'take': 1.0, 'great': 1.0, 'one': 1.0, 'huge': 1.0, 'to': 7.0, 'seat': 4.0, 'and': 3.0, 'safety': 1.0, 'wise': 1.0, 'is': 2.0, 'flaw': 1.0, 'some': 1.0, 'kids': 1.0, 'this': 4.0, 'car': 3.0, 'work': 1.0, 'but': 1.0, 'way': 2.0, 'trying': 1.0, 'going': 1.0, 'a': 1.0, 'go': 1.0, 's': 3.0, 'absolutely': 1.0, 'find': 1.0, 'cover': 2.0, 'off': 1.0, 'have': 1.0, 'in': 1.0, 'my': 1.0, 'son': 1.0, 'it': 5.0, 'remove': 1.0, 'no': 1.0, 'thing': 1.0, 'today': 1.0, 'after': 1.0, 'i': 3.0, 'up': 1.0, 'wash': 1.0, 'threw': 1.0, 'discover': 1.0, 'comfort': 1.0, 'has': 1.0, 'well': 1.0, 'the': 3.0, 'desperately': 1.0, 'without': 1.0, 'course': 1.0, 'mean': 1.0, 'there': 1.0, 'impossible': 1.0, 'breaking': 1.0}
Word element => {'would': 1.0, 'out': 1.0, 'get': 1.0, 'and': 1.0, 'had': 1.0, 'was': 1.0, 'easier': 1.0, 'that': 1.0, 'my': 2.0, 'pull': 1.0, 'push': 2.0, 'the': 3.0, 'than': 1.0, 'just': 3.0, 'to': 3.0, 'seat': 5.0, 'not': 1.0, 'picture': 1.0, 'i': 3.0, 'this': 3.0, 'frustrating': 1.0, 'with': 2.0, 'hard': 1.0, 'like': 2.0, 'it': 3.0, 'remove': 1.0, 'other': 2.0, 'simple': 1.0, 'really': 2.0, 'say': 1.0, 'is': 2.0, 'a': 4.0, 'car': 4.0, 'button': 1.0, 'nice': 1.0, 'off': 1.0, 'good': 1.0, 'of': 1.0, 'you': 1.0, 'color': 1.0, 'one': 1.0, 'love': 1.0, 'for': 1.0, 'clips': 1.0, 'though': 1.0, 'so': 2.0, 'if': 1.0, 'your': 1.0, 'looking': 1.0}
Word element => {'take': 1.0, 'larger': 1.0, 'your': 1.0, 'child': 1.0, 'fits': 1.0, 'name': 1.0, 'his': 1.0, 'you': 1.0, 's': 1.0, 'that': 1.0, 'sumo': 1.0, 'little': 1.0, 'been': 1.0, 'overall': 1.0, 'a': 2.0, 'fine': 1.0, 'side': 2.0, 'is': 3.0, 'on': 2.0, 'seat': 1.0, 'it': 2.0, 'with': 1.0, 'this': 1.0, 'pass': 1.0, 'grandson': 1.0, 'better': 1.0, 'if': 1.0, 'nick': 1.0, 'pretty': 1.0, 'seems': 1.0, 'but': 1.0, 'forward': 1.0, 'at': 1.0, 'the': 3.0, 'head': 2.0, 'granddaughter': 1.0, 'to': 1.0, 'happy': 1.0, 'my': 2.0, 'push': 1.0, 'cramped': 1.0, 'snug': 1.0}
Word element => {'price': 1.0, 'no': 1.0, 'seats': 1.0, 'first': 1.0, 'definitely': 1.0, 'will': 1.0, 'don': 1.0, 'couldn': 1.0, 'and': 5.0, '1st': 1.0, 'by': 1.0, 'safety': 2.0, 'the': 3.0, 't': 2.0, 'comparison': 1.0, 'purchased': 2.0, 'loved': 1.0, '2': 1.0, 'most': 1.0, 'is': 2.0, 'have': 1.0, 'this': 2.0, 'looks': 1.0, 'it': 2.0, 'with': 1.0, 'i': 4.0, 'infant': 1.0, 'why': 1.0, 'car': 4.0, 'feel': 1.0, 'install': 1.0, 'great': 2.0, 'nice': 2.0, 'which': 1.0, 'one': 2.0, 'built': 1.0, 'be': 1.0, 'happier': 1.0, 'seat': 2.0, 'to': 2.0, 'look': 1.0, 'are': 1.0, 'purchase': 2.0, 'my': 2.0, 'husbands': 1.0, 'in': 1.0, 'they': 2.0, 'cheap': 1.0, 'love': 1.0, 'for': 3.0, 'actually': 1.0, 'fit': 1.0, 'easy': 1.0, 'so': 1.0, 'continue': 1.0, 'much': 1.0, 'sturdier': 1.0, 'than': 1.0}
Word element => {'gift': 1.0, 'a': 1.0, 'shower': 1.0, 'it': 4.0, 'dirty': 1.0, 'stained': 1.0, 'sides': 1.0, 'embarrassing': 1.0, 'baby': 1.0, 'price': 1.0, 'box': 2.0, 'however': 1.0, 'that': 1.0, 'what': 1.0, 'of': 1.0, 'fisher': 1.0, 'and': 2.0, 'horrible': 1.0, 'is': 1.0, 'seller': 1.0, 'bent': 1.0, 'condition': 1.0, 'on': 1.0, 'because': 1.0, 'rocker': 1.0, 'product': 1.0, 'holes': 1.0, 'great': 1.0, 'the': 7.0, 'had': 1.0, 'was': 7.0, 'comes': 1.0, 'in': 3.0, 'shipped': 1.0, 'shipping': 1.0, 'from': 1.0, 'itself': 1.0, 'all': 1.0}
Word element => {'all': 1.0, 'now': 1.0, 'product': 1.0, 'best': 1.0, 'honestly': 1.0, 's': 1.0, 'friends': 1.0, 'folded': 1.0, 'washed': 1.0, 'time': 1.0, 'gift': 1.0, 'asleep': 1.0, 'falls': 1.0, 'as': 2.0, 'fussy': 1.0, 'be': 1.0, 're': 1.0, 'little': 1.0, 'laundry': 1.0, 'up': 1.0, 'will': 1.0, 'go': 1.0, 'alot': 1.0, 'just': 3.0, 'insert': 1.0, 'get': 1.0, 'months': 1.0, '3': 1.0, 'on': 2.0, 'put': 2.0, 'your': 2.0, 'soooo': 1.0, 'keep': 1.0, 'set': 1.0, 'given': 1.0, 'using': 1.0, 'like': 1.0, 'her': 1.0, 'wks': 1.0, 'infant': 1.0, '6': 1.0, 'purchased': 2.0, 'obsessed': 1.0, 'and': 7.0, 'errands': 1.0, 'single': 1.0, 'discovered': 1.0, 'a': 3.0, 'but': 4.0, 'nuroo': 2.0, 'super': 2.0, 'ergo': 1.0, 'hot': 1.0, 'regret': 1.0, 'my': 5.0, 'can': 2.0, 'so': 4.0, 'lightweight': 1.0, 'pocket': 5.0, 'carrier': 1.0, 'at': 2.0, 'is': 3.0, 'more': 1.0, 'comes': 1.0, 'around': 1.0, 'seriously': 1.0, 'am': 2.0, 'when': 2.0, 'push': 1.0, 'you': 3.0, 'our': 1.0, 'to': 3.0, 'that': 4.0, 'been': 1.0, 'old': 1.0, 'i': 10.0, 'complicated': 1.0, 'something': 2.0, 'buy': 1.0, 'didn': 1.0, 'the': 16.0, 'was': 4.0, 't': 1.0, 'belt': 2.0, 'shower': 2.0, 'with': 3.0, 'only': 2.0, 'cooler': 1.0, 'its': 1.0, 'born': 1.0, 'went': 1.0, 'for': 3.0, 'bulky': 1.0, 'summer': 1.0, 'hunt': 1.0, 'soon': 1.0, 'there': 3.0, 'helps': 1.0, 'first': 1.0, 'are': 1.0, 'dishes': 1.0, 'wraps': 1.0, 'out': 1.0, 'she': 2.0, 'baby': 7.0, 'many': 1.0, 'others': 1.0, 'again': 1.0, 'support': 1.0, 'seemed': 1.0, 'wanted': 1.0, 'really': 1.0, 'found': 1.0, 'easy': 2.0, 'it': 5.0, 'wear': 2.0, 'done': 1.0, 'shirt': 3.0, 'slip': 2.0, 'in': 2.0, 'then': 1.0, 'velcro': 1.0, 'tighten': 1.0, 'together': 1.0, 'also': 1.0, 'slipping': 1.0, 'from': 1.0, 've': 2.0, 'down': 2.0, 'every': 1.0, 'still': 1.0, 'if': 1.0, 'walking': 1.0}
Word element => {'imagine': 1.0, 'couldn': 1.0, 'or': 1.0, 'fussy': 1.0, 'with': 2.0, 'anyone': 1.0, 'snugly': 1.0, 'large': 1.0, 'extra': 1.0, 'pregnancy': 1.0, 'before': 1.0, '12': 1.0, 'between': 1.0, 'i': 4.0, 'would': 1.0, 'accurate': 1.0, 'pretty': 1.0, 'sizing': 1.0, 'chest': 1.0, 'better': 1.0, 'so': 1.0, 'chores': 1.0, 'much': 1.0, 'do': 1.0, 'possible': 1.0, 'skin': 2.0, 'this': 2.0, 'received': 1.0, 'he': 4.0, 'it': 3.0, 'needed': 1.0, 'made': 1.0, 'nuroo': 1.0, 'home': 1.0, 'and': 4.0, 'but': 1.0, 'born': 1.0, 'recommend': 1.0, 'was': 3.0, 'to': 4.0, '25': 1.0, 'baby': 6.0, 'the': 4.0, 'comfortable': 1.0, 'great': 1.0, 'fits': 2.0, 'my': 2.0, 'for': 1.0, 'product': 2.0, 'oxygen': 1.0, 'early': 1.0, 't': 1.0, 'a': 7.0, 's': 2.0, '9': 1.0, 'being': 1.0, '10': 1.0, 'if': 1.0, 'also': 1.0, 'item': 1.0, 'perfectly': 1.0, 'especially': 1.0, 'sleeps': 1.0, 'preemie': 1.0, 'is': 2.0, 'around': 1.0, 'you': 1.0, 'when': 2.0, 'weeks': 1.0, 'attached': 1.0, 'an': 1.0, 'finally': 1.0, 'contact': 1.0, 'came': 1.0, 'enough': 1.0, 'foot': 1.0, 'hard': 1.0, 'from': 1.0, 'larger': 1.0, 'hospital': 1.0, 'on': 2.0, 'everyday': 1.0, 'carry': 1.0, 'have': 1.0, 'small': 2.0, 'harder': 1.0, 'even': 1.0, 'size': 1.0, 'cord': 1.0}
Word element => {'inside': 1.0, 'daily': 1.0, 'nuroo': 1.0, 'insert': 1.0, 'an': 1.0, 'with': 1.0, 'ergo': 1.0, 'on': 1.0, 'put': 1.0, 'highly': 1.0, 'really': 1.0, 'used': 3.0, 'shot': 1.0, 'my': 2.0, 'd': 1.0, 'soon': 1.0, 'and': 2.0, 'do': 1.0, 'infant': 1.0, 'figured': 1.0, 'asleep': 1.0, 'the': 4.0, 'baby': 2.0, 'about': 1.0, 'shower': 1.0, 'this': 3.0, 'first': 1.0, 'skin': 2.0, 'he': 1.0, 'etc': 1.0, 'i': 6.0, 'old': 1.0, 'give': 1.0, 'thought': 1.0, 'at': 2.0, 'recommend': 1.0, 'was': 3.0, 'outside': 1.0, 'as': 2.0, 'to': 2.0, 'liked': 2.0, 'product': 2.0, 'it': 6.0, 'fell': 1.0, 'able': 1.0, 'strange': 1.0, 'got': 1.0, 'shirt': 1.0, 'until': 1.0, 'months': 1.0, 'usually': 1.0, 'because': 1.0, 'sung': 1.0, 'but': 1.0, '2': 1.0, 'work': 1.0, 'house': 2.0, 'we': 4.0, 'a': 2.0, 'could': 1.0, 'while': 3.0, 'secure': 1.0, 'also': 1.0, 'around': 1.0}
Word element => {'out': 1.0, 'would': 1.0, 'make': 1.0, 'on': 1.0, 'velcro': 1.0, 'extra': 1.0, 'sewing': 1.0, 'ended': 1.0, 'nice': 1.0, 'big': 1.0, 'is': 1.0, 'start': 1.0, 't': 1.0, 'from': 1.0, 'order': 1.0, 'be': 1.0, 'regret': 1.0, 'my': 1.0, 'too': 1.0, 'and': 3.0, 'get': 1.0, 'the': 5.0, 'hands': 1.0, 'twins': 1.0, 'fantastic': 1.0, 'idea': 1.0, 'snugly': 1.0, 'size': 1.0, 'it': 3.0, 'this': 1.0, 'only': 1.0, 'registered': 1.0, 'didn': 1.0, 'having': 1.0, 'because': 1.0, 'safely': 1.0, 'work': 1.0, 'can': 1.0, 'but': 3.0, 'for': 2.0, 'one': 2.0, 'i': 4.0, 'have': 3.0, 'pick': 1.0, 'wrapped': 1.0, 'up': 3.0, 'of': 2.0, 'box': 1.0, 'been': 1.0, 'next': 1.0, 'free': 1.0, 'to': 5.0, 'had': 1.0, 'leaving': 1.0, 'other': 1.0, 'down': 1.0, 'me': 1.0, 'not': 1.0, 'xl': 1.0, 'side': 1.0, 'bust': 1.0, 'belt': 1.0}
Word element => {'comfortable': 1.0, 'very': 1.0, 'supportive': 1.0, 'stretchy': 1.0, 'like': 1.0, 'feels': 1.0, 'lululemon': 1.0, 'material': 1.0, 'try': 1.0, 'a': 1.0, 'gave': 1.0, 'i': 1.0, 'it': 2.0, 'other': 1.0, 'loves': 1.0, 'off': 1.0, 'due': 1.0, 'the': 2.0, 'on': 1.0, 'and': 3.0, 'get': 1.0, 'nervous': 1.0, 'easy': 1.0, 'but': 1.0, 'so': 2.0, 'baby': 1.0, 'about': 1.0, 'to': 2.0, 'was': 1.0, 'buying': 1.0, 'my': 1.0, 'happy': 1.0, 'some': 1.0, 'of': 1.0, 'reviews': 1.0}
Word element => {'have': 1.0, 'i': 1.0, 'if': 1.0, 'my': 1.0, 'of': 1.0, 'top': 1.0, 'at': 1.0, 'list': 1.0, 'mom': 2.0, 'gift': 1.0, 'is': 3.0, 'feedback': 1.0, 'that': 1.0, 'a': 2.0, 'from': 1.0, 'as': 1.0, 'and': 3.0, 'loves': 1.0, 'baby': 2.0, 'skin': 2.0, 'this': 2.0, 'it': 1.0, 'love': 1.0, 'ever': 1.0, 'free': 1.0, 'time': 1.0, 'they': 1.0, 'great': 1.0, 'the': 2.0, 'to': 2.0, 'bought': 1.0, 'be': 1.0, 'hands': 1.0}
Word element => {'put': 1.0, 'might': 1.0, 'then': 1.0, 'hour': 1.0, '1': 1.0, 'pay': 1.0, 'parents': 1.0, 'time': 1.0, 'value': 1.0, 'be': 4.0, 'security': 1.0, 'babies': 1.0, 'totally': 3.0, 'but': 1.0, 'can': 4.0, 'so': 4.0, 'you': 4.0, 'am': 2.0, 'that': 2.0, 'easily': 1.0, 'when': 1.0, 'lbs': 1.0, 'makes': 1.0, 'rest': 1.0, 'cost': 1.0, 'belt': 1.0, 'of': 5.0, 'the': 4.0, 'waist': 1.0, 'shirt': 2.0, 'done': 1.0, '15': 1.0, 'get': 3.0, 'bit': 2.0, 'easy': 2.0, 'and': 6.0, 'your': 1.0, 'any': 1.0, 'feel': 3.0, 'basis': 1.0, 'in': 4.0, 'love': 2.0, 'for': 4.0, 'stuff': 1.0, 'on': 2.0, 'doula': 1.0, 'pros': 1.0, 'newborns': 1.0, 'work': 1.0, 'daily': 1.0, 'with': 3.0, 'this': 4.0, 'business': 1.0, 'around': 1.0, 'is': 2.0, 'to': 5.0, 'preemie': 1.0, 'top': 1.0, 'many': 1.0, 'baby': 4.0, 'next': 1.0, 'them': 2.0, 'confident': 1.0, 'a': 6.0, 'could': 1.0, 'i': 6.0, 'quiets': 1.0, 'well': 1.0, 'consider': 1.0, 'window': 1.0, 'support': 1.0, 'right': 1.0, 'pricey': 1.0, 'down': 1.0, 'inside': 1.0, 'does': 1.0, 'having': 1.0, 'not': 1.0, 'may': 1.0, 'me': 3.0, 'like': 2.0, 'sleeping': 1.0, 'thing': 2.0, 'wraps': 1.0, 'it': 10.0, 'wear': 1.0, 'day': 1.0, 'best': 1.0, 'if': 2.0, 'still': 1.0, 'firm': 1.0, 'seem': 1.0, 'cons': 1.0, 'velcro': 1.0, 'taking': 1.0, 'out': 2.0, 'only': 1.0, 'move': 2.0, 'used': 1.0, 'noisy': 1.0, 'up': 1.0, 'stretch': 1.0, 'use': 1.0, 'carries': 1.0, 'or': 1.0, 'worth': 3.0, 'all': 1.0, 'fits': 1.0, 'other': 1.0, 'professional': 1.0, 'parent': 1.0, 'bulky': 1.0, 'would': 1.0}
Word element => {'section': 1.0, 'month': 1.0, '18': 1.0, 'very': 2.0, 'get': 1.0, 'and': 2.0, 'joints': 1.0, 'can': 1.0, 'use': 1.0, 'around': 1.0, 'of': 1.0, 'with': 1.0, 'it': 2.0, 'this': 1.0, 'we': 1.0, 'all': 2.0, 'thing': 1.0, 'door': 1.0, 'is': 1.0, 'you': 1.0, 'old': 1.0, 'areas': 1.0, 'kinds': 1.0, 'forgiving': 1.0, 'the': 2.0, 'well': 1.0, 'move': 2.0, 'if': 1.0, 'for': 2.0, 'our': 1.0}
Word element => {'area': 1.0, 'a': 1.0, 'than': 1.0, 'kitchen': 1.0, 'of': 1.0, 'out': 1.0, 'my': 1.0, 'keep': 1.0, 'rather': 1.0, 'puts': 1.0, 'the': 5.0, 'are': 1.0, 'good': 1.0, 'alone': 1.0, 'play': 1.0, 'extra': 1.0, 'we': 1.0, 'long': 1.0, 'wonderful': 1.0, 'is': 1.0, 'twins': 1.0, 'superyard': 2.0, 'using': 1.0, 'this': 1.0, 'it': 1.0, 'gate': 2.0, 'over': 1.0, 'top': 1.0, 'as': 3.0, 'but': 1.0, 'an': 1.0, 'was': 1.0, 'to': 1.0, 'barrier': 1.0}
Word element => {'however': 1.0, 'child': 1.0, 'would': 1.0, 'excellent': 1.0, 'yard': 1.0, 'play': 1.0, 'the': 1.0, 'and': 1.0, 'added': 1.0, 'i': 1.0, 'it': 4.0, 'works': 1.0, 'be': 1.0, 'to': 2.0, 'ok': 1.0, 'm': 1.0, 'keep': 1.0, 'using': 1.0, 'a': 2.0, 'dog': 1.0, 'for': 1.0, 'in': 1.0}
Word element => {'get': 1.0, 'closing': 1.0, 'over': 1.0, 'stepping': 1.0, 'standard': 1.0, 'than': 1.0, 'find': 1.0, 'instead': 2.0, 'that': 1.0, 'd': 1.0, 'figured': 1.0, 'and': 1.0, 'set': 1.0, 'extend': 1.0, 'extra': 1.0, 'an': 1.0, 'needed': 1.0, 'existing': 1.0, 'really': 1.0, 'locking': 1.0, 'position': 1.0, 'correct': 1.0, 'sturdy': 1.0, 'little': 1.0, 'gates': 2.0, 'often': 1.0, 'my': 1.0, 'superyard': 3.0, 'was': 1.0, 'ourselves': 1.0, 'to': 2.0, 'all': 1.0, 'i': 4.0, 'noticeable': 1.0, 'pieces': 1.0, 'say': 1.0, 'more': 4.0, 'is': 1.0, 'plastic': 3.0, 'door': 6.0, 'in': 1.0, 'regular': 1.0, 'the': 13.0, 'gate': 2.0, 'we': 1.0, 'go': 1.0, 't': 2.0, 'a': 4.0, 'flimsy': 3.0, 'since': 2.0, 'so': 2.0, 'bit': 1.0, 'like': 1.0, 'wish': 1.0, 'extension': 2.0, 'money': 1.0, 'can': 1.0, 'but': 2.0, 'especially': 1.0, 'it': 2.0, 'piece': 1.0, 'with': 2.0, 'swings': 1.0, 'wasn': 1.0, 'out': 1.0, 'worth': 1.0, 'tends': 1.0, 'be': 1.0, 'wouldn': 1.0, 'sits': 1.0, 'even': 1.0, 'its': 2.0, 'much': 2.0, 'works': 1.0, 'opening': 1.0, 'before': 1.0, 'mechanism': 1.0, 'tries': 1.0, 'ok': 1.0, 'being': 1.0, 'take': 1.0, 'just': 2.0, 'few': 1.0, 'expensive': 1.0, 'for': 3.0, 'actually': 1.0}
Word element => {'for': 1.0, 'i': 1.0, 'as': 1.0, 'from': 1.0, 'her': 1.0, 'used': 1.0, 'prevents': 1.0, 'space': 1.0, 'in': 1.0, 'falling': 1.0, 'and': 1.0, 'panels': 1.0, 'me': 1.0, 'just': 1.0, 'the': 3.0, 'to': 2.0, 'climb': 1.0, 'helps': 1.0, 'baby': 1.0, 'crawl': 1.0, 'gate': 1.0, 'over': 1.0, '34': 2.0, 'jail': 1.0, '8': 1.0, 'is': 1.0, 'around': 1.0, 'enough': 1.0}
Word element => {'fine': 1.0, 'that': 1.0, 'just': 1.0, 'than': 1.0, 'other': 1.0, 'one': 1.0, 'to': 1.0, 'release': 1.0, 'somewhat': 1.0, 'with': 1.0, 'on': 1.0, 'is': 1.0, 'a': 1.0, 'little': 1.0, 'lock': 1.0, 'and': 1.0, 'door': 1.0, 'cumbersome': 1.0, 'hand': 1.0, 'sticky': 1.0}
Word element => {'satisfied': 1.0, 'quite': 1.0, 'up': 1.0, 'pick': 1.0, 'much': 1.0, 'isn': 1.0, 'need': 1.0, 'you': 1.0, 'if': 1.0, 'so': 1.0, 'base': 2.0, 'loc': 1.0, 'flex': 1.0, 'sturdy': 1.0, 'purchased': 1.0, 'is': 2.0, 'stroller': 1.0, 'book': 1.0, 'well': 1.0, 'front': 1.0, 't': 1.0, 'a': 2.0, 'products': 1.0, 'i': 2.0, 'fun': 1.0, 'comfortable': 1.0, 'padded': 1.0, 'at': 1.0, 'one': 1.0, 'color': 1.0, 'pull': 1.0, 'fits': 1.0, 'my': 1.0, 'made': 1.0, 'are': 2.0, 'the': 7.0, 'nicely': 1.0, 'it': 3.0, 'this': 2.0, 'us': 1.0, 'from': 1.0, 'babies': 1.0, 'must': 1.0, 'have': 1.0, 'extra': 1.0, 'combos': 1.0, 'and': 4.0, 'r': 1.0, 'adjusting': 1.0, 'like': 1.0, 'fold': 1.0, 'easy': 1.0, 'tab': 1.0, 'rather': 1.0, 'of': 1.0, 'all': 2.0, 'to': 2.0, 'seat': 3.0, 'straps': 1.0, 'breeze': 1.0, 'in': 2.0, 'an': 1.0, 'ez': 1.0, 'baby': 1.0, 'makes': 1.0, 'trend': 1.0}
Word element => {'simple': 1.0, 'safely': 1.0, 'transport': 1.0, 'to': 1.0, 'as': 1.0, 'need': 1.0, 'that': 1.0, 'what': 1.0, 'i': 2.0, 'so': 1.0, 'needed': 1.0, 'a': 1.0, 'granddaughter': 2.0, 'new': 1.0, 'base': 1.0, 'she': 1.0, 'had': 1.0, 'for': 1.0, 'the': 1.0, 'my': 2.0, 'have': 1.0, 'this': 1.0, 'carrier': 1.0}
Word element => {'manual': 1.0, 'you': 1.0, 'once': 1.0, 'get': 1.0, 'and': 2.0, 'assured': 1.0, 'product': 1.0, 'works': 1.0, 'before': 1.0, 'carseat': 1.0, 'part': 1.0, 'graco': 1.0, 'base': 1.0, 'also': 1.0, 'connect': 2.0, 'the': 4.0, 'contacting': 1.0, 'shows': 1.0, 'box': 1.0, 'says': 2.0, 'up': 2.0, '34': 4.0, 'that': 3.0, 'opening': 1.0, 'right': 1.0, 'click': 2.0, 'without': 1.0, 'with': 1.0, 'it': 5.0, '30': 2.0, 'i': 1.0, 'rest': 1.0, '35': 2.0, 'ended': 1.0, 'was': 1.0, 'to': 2.0, 'is': 1.0, 'confirm': 1.0}
Word element => {'install': 1.0, 'to': 1.0, 'easy': 1.0, 'carseat': 1.0, 'our': 1.0, 'the': 1.0, 'with': 2.0, 'came': 1.0, 'in': 1.0, 'new': 1.0, 'should': 1.0, 'works': 2.0, 'it': 1.0, 'i': 1.0, 'like': 1.0, 'very': 1.0, 'am': 1.0, 'unit': 1.0, 'happy': 1.0}
Word element => {'would': 1.0, 'said': 1.0, 'seat': 1.0, 'the': 1.0, 'fits': 1.0, 'and': 1.0, 'easier': 1.0, 'so': 1.0, 'if': 1.0, 'you': 1.0, 'afford': 1.0, 'much': 1.0, 'being': 1.0, 'can': 1.0, 'it': 5.0, 'two': 1.0, 'car': 2.0, 'get': 1.0, 'makes': 1.0, 'family': 1.0}
Word element => {'again': 1.0, 'use': 1.0, 'our': 1.0, 'fits': 1.0, 'and': 1.0, 'received': 1.0, 'base': 1.0, 'would': 1.0, 'grand': 1.0, 'time': 1.0, 'car': 3.0, 'seat': 2.0, 'nicely': 1.0, 'the': 2.0, 'my': 1.0, 'i': 1.0, 'wrong': 1.0, 'ordering': 1.0, 'works': 1.0, 'after': 1.0, 'first': 1.0, 'it': 1.0, 'this': 2.0, 'very': 1.0, 'quickly': 1.0, 'company': 1.0, 'in': 1.0, 'perfect': 1.0, 'one': 1.0, 'for': 1.0, 'baby': 1.0, 's': 1.0}
Word element => {'base': 1.0, 'you': 1.0, 'double': 1.0, 'check': 2.0, 'to': 1.0, 'is': 1.0, 'recommendations': 1.0, 'need': 1.0, 'and': 1.0, 'only': 1.0, 'this': 1.0, 'car': 1.0, 'works': 1.0, 'great': 1.0, 'which': 1.0, 'for': 1.0, 'our': 1.0, 'click': 1.0, 'graco': 1.0, 'my': 1.0, 'connect': 1.0, '35': 1.0, 'seat': 1.0}
Word element => {'buckles': 1.0, 'messing': 1.0, 'instead': 1.0, 'vehicle': 1.0, 'into': 1.0, 'my': 1.0, 'the': 5.0, 'and': 1.0, 'described': 1.0, 'as': 2.0, 'fits': 1.0, 'track': 1.0, 'but': 1.0, 'just': 1.0, 'seat': 2.0, 'convenience': 1.0, 'of': 2.0, 'is': 2.0, 'car': 1.0, 'product': 1.0, 'in': 1.0, 'husbands': 1.0, 'well': 1.0, 'expensive': 1.0, 'worth': 1.0, 'baby': 1.0, 'with': 1.0, 'it': 1.0, 'clicking': 1.0}
Word element => {'super': 1.0, 'save': 1.0, 'and': 1.0, 'buy': 1.0, 'good': 1.0, 'transaction': 1.0, 'money': 1.0, 'very': 1.0}
Word element => {'and': 1.0, 'both': 1.0, 'reasonable': 1.0, 'be': 1.0, 'will': 1.0, 'an': 1.0, 'bases': 1.0, 'price': 1.0, 'save': 1.0, 'found': 1.0, 'i': 1.0, 'time': 1.0, 'having': 2.0, 'idea': 1.0, 'vehicles': 1.0, 'great': 1.0, 'the': 1.0, '2': 1.0, 'it': 1.0, 'eatra': 1.0, 'to': 1.0, 'was': 1.0, 'base': 1.0, 'for': 1.0, 'a': 1.0}
Word element => {'august': 1.0, 'in': 1.0, 'little': 1.0, 'use': 1.0, 'and': 1.0, 'man': 1.0, 'install': 1.0, 'to': 1.0, 'with': 2.0, 'connect': 1.0, 'it': 2.0, 'wait': 1.0, 'works': 1.0, 'perfectly': 1.0, 'can': 1.0, 'click': 1.0, 'our': 2.0, 'snugride': 1.0, 'graco': 1.0, 't': 1.0, '35': 1.0}
Word element => {'grandmother': 1.0, 'm': 1.0, 'that': 1.0, 'i': 2.0, 'out': 1.0, 'it': 2.0, 'is': 1.0, 'the': 2.0, 'seat': 1.0, 'easy': 1.0, 'use': 1.0, 'to': 1.0, 'taking': 1.0, 'putting': 1.0, 'in': 1.0, 'since': 1.0, 'need': 1.0, 'and': 1.0}
Word element => {'great': 1.0, 'works': 1.0}
Word element => {'costs': 1.0, 'misleading': 1.0, 'very': 1.0, 'bases': 1.0, 'car': 2.0, 'extra': 1.0, 'buy': 1.0, 'either': 1.0, 'grandma': 1.0, 'versions': 1.0, 'my': 1.0, 'changes': 1.0, 'buying': 1.0, 'with': 1.0, 'and': 6.0, 'version': 1.0, 'numbers': 1.0, 'brief': 1.0, 'fine': 1.0, 'led': 2.0, 'interchangeable': 1.0, 'daughters': 1.0, 'graco': 1.0, 'uses': 1.0, 'frustration': 1.0, 'me': 1.0, 'buyers': 1.0, 'summary': 1.0, 'two': 2.0, 'i': 1.0, 'products': 2.0, 'different': 1.0, 'wrote': 1.0, 'this': 2.0, 'will': 1.0, 'same': 2.0, 'none': 1.0, 'itself': 1.0, 'in': 2.0, 'connect': 2.0, 'for': 1.0, 'one': 1.0, 'review': 1.0, 'words': 1.0, 'the': 4.0, 'classic': 2.0, 'click': 1.0, 'base': 2.0, 'provide': 1.0, 'so': 2.0, 'describing': 1.0, '34': 4.0, 'of': 2.0, 'that': 2.0, 'is': 1.0, 'pregnant': 1.0, 'but': 1.0, 'change': 1.0, 's': 1.0, 'a': 1.0, 'total': 1.0, 'design': 1.0, 'gear': 1.0, 'are': 2.0, 'baby': 1.0, 'unfamiliar': 1.0, 'having': 1.0, 'tend': 1.0, 'seat': 2.0, 'all': 1.0, 'word': 1.0, 'to': 4.0, 'here': 1.0, 'be': 1.0}
Word element => {'seat': 1.0, 'car': 1.0, 'in': 1.0, 'already': 1.0, 'lot': 1.0, 'as': 1.0, 'johnny': 1.0, 'of': 1.0, 'carry': 1.0, 'a': 2.0, 'don': 1.0, 'we': 1.0, 'saves': 1.0, 't': 1.0, 'has': 1.0, 'time': 1.0, 'perfectly': 1.0, 'works': 1.0, 'him': 1.0, 'have': 1.0, 'thing': 1.0, 'so': 1.0, 'to': 2.0, 'take': 1.0, 'out': 1.0, 'put': 1.0}
Word element => {'graco': 1.0, 's': 1.0, 'from': 1.0, 'this': 1.0, 'we': 1.0, 'move': 1.0, 'has': 1.0, 'made': 1.0, 'so': 1.0, 'love': 1.0, 'it': 3.0, 'all': 1.0, 'vehicle': 2.0, 'easy': 1.0, 'to': 3.0, 'base': 1.0, 'after': 1.0, 'not': 1.0, 'need': 1.0}
Word element => {'is': 1.0, 'wanted': 1.0, 'and': 1.0, 'vehicle': 1.0, 'just': 2.0, 'what': 2.0, 'spare': 1.0, 'we': 3.0, 'great': 2.0, 'needed': 2.0, 'packaging': 1.0, 'this': 1.0, 'item': 1.0, 'another': 1.0, 'a': 1.0, 'for': 1.0}
Word element => {'great': 1.0, 'works': 1.0, '2': 1.0, 'days': 1.0, 'in': 1.0, 'arrived': 1.0}
Word element => {'out': 1.0, 'easy': 1.0, 'and': 2.0, 'very': 1.0, 'works': 1.0, 'to': 4.0, 'say': 1.0, 'really': 1.0, 'just': 1.0, 'seat': 1.0, 'not': 2.0, 'extremely': 1.0, 'have': 1.0, 'well': 1.0, 'convenient': 1.0, 'buckle': 1.0, 'in': 2.0, 'the': 1.0, 'car': 1.0, 'use': 1.0, 'every': 1.0, 'much': 1.0, 'pops': 2.0, 'time': 1.0}
Word element => {'up': 1.0, 'set': 1.0, 'buying': 1.0, 'suggest': 1.0, 'not': 1.0, 'would': 1.0, 'base': 1.0, 'price': 1.0, 'graco': 1.0, 'click': 2.0, 'good': 2.0, 'has': 1.0, 'the': 1.0, 'connect': 2.0, 'i': 1.0, 'issues': 1.0, 'its': 1.0}
Word element => {'of': 1.0, 'out': 1.0, 'pops': 1.0, 'snugride': 1.0, 'so': 1.0, 'back': 1.0, 'stroller': 2.0, 'it': 1.0, 'quick': 1.0, 'simple': 1.0, 'love': 1.0, 'for': 1.0, 'in': 1.0, 'car': 2.0, 'shipping': 1.0, 'match': 1.0, 'a': 1.0, 'base': 2.0, 'and': 4.0, 'my': 1.0, 'the': 1.0, 'great': 1.0, 'transaction': 1.0, 'seat': 2.0, 'just': 1.0, 'easy': 1.0, 'smooth': 1.0, 'use': 1.0, 'snap': 1.0, 'your': 1.0, 'i': 1.0, 'carrier': 1.0, 'into': 2.0, 'off': 1.0}
Word element => {'product': 1.0, 'secure': 1.0, 'system': 1.0, 'good': 1.0, 'latch': 1.0, 'i': 1.0, 'device': 1.0, 'out': 1.0, 'in': 1.0, 'love': 1.0, 'for': 1.0, 'one': 1.0, 'great': 1.0, 'the': 3.0, 'little': 1.0, 'do': 1.0, 'and': 2.0, 'vehicles': 1.0, 'is': 3.0, 'two': 1.0, 'base': 1.0, 'to': 2.0, 'have': 1.0, 'it': 3.0, 'moving': 1.0, 'with': 1.0, 'this': 1.0, 'another': 1.0, 'a': 2.0, 'car': 1.0, 'other': 1.0, 'simple': 1.0}
Word element => {'move': 1.0, 'and': 1.0, 'tight': 1.0, 'doesn': 1.0, 'belt': 1.0, 'to': 1.0, 'it': 1.0, 'love': 1.0, 'the': 2.0, 'has': 1.0, 'seat': 2.0, 'is': 2.0, 'handy': 1.0, 'car': 1.0, 't': 1.0, 'this': 1.0, 'ensure': 1.0, 'base': 1.0, 'snap': 1.0, 'one': 1.0, 'extra': 1.0, 'because': 1.0}
Word element => {'just': 1.0, 'system': 1.0, 'our': 2.0, '2nd': 1.0, 'needed': 1.0, 'what': 2.0, 'we': 1.0, 'exactly': 1.0, 'to': 1.0, 'was': 2.0, 'with': 1.0, 'it': 2.0, 'this': 1.0, 'car': 1.0, 'breeze': 1.0, 'black': 1.0, 'a': 1.0, 'since': 1.0, 'as': 1.0, 'travel': 1.0, 'is': 1.0, 'the': 1.0, 'for': 1.0, 'exact': 1.0, 'same': 1.0, 'came': 1.0, 'install': 1.0, 'base': 1.0}
Word element => {'fine': 1.0, 'works': 1.0, 'inch': 1.0, 'security': 1.0, 'didnt': 1.0, 'so': 1.0, 'prefer': 1.0, 'base': 1.0, 'seats': 1.0, 'install': 1.0, 'another': 1.0, 'different': 1.0, 't': 1.0, 'we': 3.0, 'attach': 1.0, 'have': 2.0, 'the': 6.0, 'interior': 1.0, 'that': 1.0, 'graco': 1.0, 'this': 1.0, 'an': 1.0, 'monroe': 1.0, 'and': 4.0, 'car': 5.0, 'with': 1.0, 'quick': 1.0, 'fight': 1.0, 'in': 1.0, 'just': 1.0, 'physically': 1.0, 'budge': 1.0, 'looking': 1.0, 'for': 3.0, 'using': 1.0, 'bases': 1.0, '2nd': 1.0, 'got': 1.0, 'added': 1.0, 'were': 1.0, 'black': 1.0, 'well': 1.0, 'match': 1.0, 'to': 3.0, 'seat': 4.0, 'our': 1.0, 'as': 2.0, 'of': 1.0, 'painless': 1.0, 'two': 2.0, 'i': 1.0, 'straps': 1.0, 'back': 1.0, 'doesn': 1.0, 'was': 1.0, 'belt': 1.0}
Word element => {'new': 1.0, 'works': 1.0, 'seat': 1.0, 'any': 1.0, '35': 1.0, 'moms': 1.0, 'recommend': 1.0, 'is': 1.0, 'def': 1.0, 'my': 1.0, 'great': 1.0, 'the': 1.0, 'car': 1.0, 'it': 3.0, 'with': 2.0, 'this': 1.0, 'to': 1.0, 'like': 1.0, 'one': 1.0, 'i': 1.0, 'that': 1.0, 'infant': 1.0, 'base': 1.0, 'came': 1.0, 'exactly': 1.0, 'would': 1.0}
Word element => {'install': 1.0, 'to': 1.0, 'easy': 1.0, 'design': 1.0, 'nice': 1.0, 'i': 1.0, 'with': 1.0, '2': 1.0, 'carrier': 1.0, 'have': 1.0, 'other': 1.0, 'very': 2.0, 'and': 2.0, 'great': 1.0, 'they': 1.0, 'bases': 1.0, 'the': 1.0, 'work': 1.0}
Word element => {'vehicle': 1.0, 'that': 1.0, 'perfect': 1.0, 'having': 1.0, 'in': 1.0, 'for': 1.0, 'one': 1.0, 'just': 1.0, 'seat': 1.0, 'no': 1.0, 'the': 2.0, 'car': 1.0, 'like': 1.0, 'and': 1.0, 'another': 1.0, 'complaints': 1.0, 'without': 1.0, 'with': 1.0, 'it': 1.0, 'always': 1.0, 'to': 1.0, 'came': 1.0, 'take': 1.0, 'out': 1.0}
Word element => {'car': 1.0, 'great': 1.0, 'it': 1.0, 'box': 1.0, 'the': 1.0, 'seat': 1.0, 'worked': 1.0, 'of': 1.0, 'out': 1.0, 'connected': 1.0, 'we': 1.0, 'bought': 1.0, 'this': 1.0, 'and': 1.0, 'as': 1.0, 'a': 1.0, 'second': 1.0, 'base': 1.0, 'for': 1.0, 'our': 2.0, 'cars': 1.0, 'to': 1.0, 'right': 1.0}
Word element => {'know': 1.0, 'two': 1.0, 'tight': 2.0, 'done': 1.0, 'stays': 1.0, 'ensure': 1.0, 'help': 1.0, 'does': 2.0, 'he': 2.0, 'or': 3.0, 'feature': 1.0, 'dig': 1.0, 'attach': 1.0, 'not': 2.0, 'itself': 1.0, 'if': 3.0, 'back': 4.0, 'your': 4.0, 'any': 1.0, 'feel': 1.0, 'on': 4.0, 'noticed': 1.0, 'remember': 1.0, 'clicks': 1.0, 'have': 5.0, 'lets': 1.0, 'practice': 1.0, 'lever': 3.0, 'little': 1.0, 'loosen': 1.0, 'pop': 1.0, 'unevenly': 1.0, 'overall': 1.0, 'so': 4.0, 'harness': 2.0, 'town': 1.0, 'leave': 1.0, 'months': 1.0, 'however': 2.0, 'get': 1.0, 'child': 2.0, 'hard': 1.0, 'for': 6.0, 'base': 12.0, 'from': 2.0, 'make': 1.0, 'she': 1.0, 'unfortunately': 1.0, 'without': 1.0, 'works': 1.0, 'be': 1.0, 'it': 17.0, 'month': 1.0, 'super': 2.0, 'holds': 1.0, 'once': 1.0, 'around': 1.0, 'his': 1.0, 'door': 1.0, 'can': 4.0, 'is': 12.0, 'seatbelt': 2.0, 'at': 2.0, 'this': 4.0, 'bit': 1.0, 'quick': 1.0, 'pilot': 1.0, 'coupe': 1.0, 'carseat': 11.0, 'findings': 1.0, 'trips': 1.0, 'has': 2.0, 'along': 1.0, 't': 1.0, 'easy': 3.0, 'fit': 2.0, 'require': 1.0, 'simple': 2.0, 'i': 6.0, 'feet': 1.0, 'four': 2.0, 'take': 1.0, 'we': 7.0, 'left': 1.0, 'just': 1.0, 'and': 13.0, 'tighten': 5.0, 'were': 1.0, 'snugride': 2.0, 'makes': 2.0, 'actual': 1.0, 'in': 3.0, 'to': 24.0, 'straight': 1.0, 'an': 1.0, 'remove': 3.0, 'how': 1.0, 'awesome': 1.0, 'about': 1.0, 'that': 8.0, 'easily': 2.0, 'because': 1.0, 'been': 1.0, 'a': 10.0, 'out': 9.0, 'understand': 2.0, 'car': 10.0, 'with': 3.0, 'using': 2.0, 'which': 1.0, 'wench': 3.0, 'of': 10.0, 'old': 1.0, 'some': 2.0, 'here': 1.0, 'strap': 4.0, 'challenge': 1.0, 'first': 1.0, 'when': 1.0, 'you': 5.0, 'grip': 1.0, 'all': 2.0, 'way': 1.0, 'more': 2.0, 'wouldn': 1.0, 'directions': 1.0, 'want': 1.0, 'use': 2.0, 'altogether': 1.0, 'over': 1.0, 'challenging': 1.0, 'me': 1.0, 'are': 3.0, 'my': 3.0, 'had': 2.0, 'learn': 1.0, 'latch': 1.0, 'figure': 1.0, 'whether': 1.0, 'honda': 1.0, 'model': 1.0, 'the': 52.0, 'process': 1.0, 'comes': 1.0, 'against': 1.0, 'better': 1.0, 'was': 1.0, 'between': 2.0, 'adept': 1.0, 'confusing': 1.0, 'basically': 1.0, 'but': 4.0, 'top': 2.0, 'understood': 1.0, 'reading': 1.0, 'directly': 1.0, 'into': 4.0, 'through': 1.0, 'manual': 2.0, 'versatile': 1.0, 'safely': 1.0, 'figuring': 1.0, 'installation': 1.0, 'might': 1.0, 'breaking': 1.0, 'pull': 2.0, 'up': 4.0, 'takes': 1.0, 'release': 1.0, 'snug': 1.0, 's': 5.0, 'hold': 2.0, 've': 1.0, 'while': 1.0, 'what': 1.0, 'front': 1.0, 'lift': 1.0, 'us': 1.0, 'wiggle': 1.0, 'bmw': 1.0, 'there': 1.0, 'no': 1.0, 'getting': 2.0, 'seat': 12.0, 'drop': 1.0, 'pain': 1.0, 'our': 2.0, 'onto': 1.0, 'snap': 1.0, 'place': 2.0, 'after': 2.0, 'though': 1.0, 'crawl': 1.0, 'either': 1.0, 'system': 1.0, 'pulling': 2.0, 'do': 1.0, 'very': 1.0, 'daughter': 1.0, 'safe': 1.0, 'purchased': 1.0, 'husband': 1.0, 'listen': 1.0}
Word element => {'buy': 1.0, 'original': 1.0, 'sending': 1.0, 'called': 1.0, 'effective': 1.0, 'more': 1.0, 'than': 1.0, 'does': 1.0, 'much': 2.0, 'struggled': 1.0, 'is': 2.0, 'these': 1.0, 'comes': 1.0, 'but': 1.0, 'patrol': 1.0, 'had': 1.0, 'discovered': 1.0, 'a': 5.0, 's': 6.0, 'we': 5.0, 'and': 10.0, 'metal': 2.0, 'back': 1.0, 'locking': 1.0, 'connect': 1.0, 'fyi': 1.0, 'tight': 2.0, 'your': 1.0, 'strong': 1.0, 'hook': 1.0, 'better': 2.0, 'can': 2.0, 'so': 3.0, 'after': 1.0, 'car': 4.0, 'with': 6.0, 'red': 2.0, 'this': 3.0, 'pain': 1.0, 'it': 9.0, 'are': 1.0, 'lock': 1.0, 'highway': 1.0, 'seatbelt': 3.0, '35': 1.0, 'by': 1.0, 'seats': 1.0, 'just': 2.0, 'graco': 2.0, 'california': 1.0, 'click': 1.0, 'tried': 1.0, 'piece': 3.0, 'tighten': 1.0, 'one': 4.0, 'model': 1.0, 'get': 1.0, 'our': 2.0, 'in': 1.0, 'seat': 4.0, 'fits': 1.0, 'all': 2.0, 'refund': 1.0, 'lx': 1.0, 'you': 4.0, 'what': 1.0, 'when': 1.0, 'times': 1.0, 'that': 8.0, 'easily': 1.0, 'need': 1.0, 'hold': 2.0, 'know': 1.0, 'inspected': 1.0, 'officer': 2.0, 'have': 1.0, 'really': 1.0, 'might': 1.0, 'came': 1.0, 'there': 3.0, 'base': 7.0, 'instead': 1.0, 'don': 1.0, 'use': 2.0, 'latch': 2.0, 'actually': 1.0, 'system': 1.0, 'easier': 1.0, 'royal': 1.0, 'sizable': 1.0, 'on': 2.0, 'chp': 1.0, 'three': 1.0, 'getting': 1.0, 'sat': 1.0, 'to': 5.0, 'pulled': 1.0, 'his': 1.0, 'another': 1.0, 'trying': 1.0, 'he': 1.0, 'if': 2.0, 'still': 1.0, 'couldn': 1.0, 'enough': 1.0, 'above': 1.0, 'knob': 1.0, 'locks': 1.0, 'the': 16.0, 'of': 2.0, 't': 2.0, 'belt': 1.0}
Word element => {'so': 1.0, 'life': 1.0, 'make': 1.0, 'one': 1.0, 'my': 1.0, 'get': 1.0, 'and': 1.0, 'grandparents': 1.0, 'of': 1.0, 'much': 1.0, 'each': 1.0, 'cars': 1.0, 'easier': 1.0, 'were': 1.0, 'that': 1.0, 'able': 1.0, 'have': 1.0, 'it': 1.0, 'this': 1.0, 'way': 1.0, 'you': 2.0, 'transfer': 1.0, 'every': 1.0, 'is': 1.0, 'time': 1.0, 'affordable': 1.0, 'difficult': 1.0, 'base': 1.0, 'multiple': 1.0, 'when': 1.0, 'the': 2.0, 'need': 1.0, 'go': 1.0, 'somewhere': 1.0, 'husband': 1.0, 'to': 4.0, 'was': 1.0, 'enought': 1.0}
Word element => {'great': 1.0, 'because': 1.0, 'they': 1.0, 'cars': 1.0, 'simply': 1.0, 'other': 1.0, 'two': 1.0, 'we': 1.0, 'to': 3.0, 'came': 1.0, 'install': 1.0, 'added': 1.0, 'one': 1.0, 'with': 1.0, 'easy': 2.0, 'use': 1.0, 'but': 1.0, 'are': 1.0, 'more': 1.0, 'the': 1.0, 'seat': 1.0, 'car': 1.0}
Word element => {'car': 2.0, 'fit': 1.0, 'expectations': 1.0, 'our': 3.0, 'use': 1.0, 'all': 1.0, 'easy': 1.0, 'in': 1.0, 'perfect': 1.0, 'met': 1.0, 'house': 1.0, 'to': 2.0, 'fashion': 1.0, 'base': 1.0, 'came': 1.0, 'on': 1.0, 'very': 1.0, 'timely': 1.0, 'with': 1.0, 'a': 1.0, 'seat': 1.0, 'works': 1.0, 'nicely': 1.0, 'the': 1.0}
Word element => {'or': 1.0, 'forth': 1.0, 'back': 1.0, '2': 1.0, 't': 1.0, 'needed': 1.0, 'so': 2.0, 'am': 1.0, 'cars': 1.0, 'extra': 1.0, 'not': 1.0, 'seat': 2.0, 'no': 1.0, 'babysitters': 1.0, 'car': 2.0, 'return': 1.0, 'to': 2.0, 'had': 1.0, 'for': 1.0, 'use': 1.0, 'with': 1.0, 'it': 1.0, 'sure': 1.0, 'and': 1.0, 'getting': 1.0, 'if': 1.0, 'base': 2.0, 'infant': 1.0, 'transfer': 1.0, 'you': 2.0, 'need': 2.0, 'second': 1.0, 'don': 1.0}
Word element => {'captioned': 1.0, 'see': 1.0, 'places': 1.0, 'other': 1.0, 'expensive': 1.0, 'point': 1.0, 'there': 1.0, 's': 1.0, 'even': 1.0, 'while': 1.0, 'please': 1.0, 'their': 1.0, 'onyx': 1.0, 'via': 1.0, 'click': 1.0, 'r': 1.0, 'image': 1.0, 'at': 2.0, 'this': 2.0, 'bought': 1.0, 'not': 1.0, 'me': 1.0, 'facing': 1.0, 'sale': 2.0, 'have': 1.0, 'us': 1.0, 'able': 1.0, 'be': 1.0, 'will': 1.0, 'weeks': 1.0, 'modes': 2.0, 'excited': 1.0, '1': 1.0, 'and': 5.0, '250': 1.0, 'sharp': 1.0, 'm': 2.0, 'fifteen': 1.0, 'graco': 2.0, 'more': 1.0, 'is': 2.0, 'was': 1.0, 'minutes': 1.0, 'classic': 1.0, 'when': 1.0, 'seen': 1.0, 'my': 3.0, '39': 1.0, 'customer': 1.0, 'existing': 1.0, 'toys': 1.0, 'bassinet': 2.0, 'uploaded': 1.0, 'arrived': 1.0, 'quickly': 1.0, 'precious': 1.0, 'looks': 1.0, 'it': 4.0, 'with': 1.0, 'thing': 1.0, 'today': 1.0, 'about': 1.0, 'website': 1.0, 'the': 7.0, 'assembled': 1.0, 'i': 8.0, 'in': 3.0, 'stroller': 4.0, 'connect': 1.0, 've': 1.0, 'car': 1.0, 'as': 1.0, 'to': 3.0, 'seat': 2.0, 'after': 1.0, 'assembling': 1.0, 'immediately': 1.0, 'set': 1.0, 'child': 1.0, 'up': 1.0, 'mode': 2.0, 'which': 1.0, 'on': 2.0, 'grows': 1.0, 'think': 1.0, 'change': 1.0, 'work': 1.0, 'pregnant': 1.0, '2': 1.0, 'most': 1.0, 'ever': 1.0}
Word element => {'not': 1.0, 'up': 1.0, 'order': 1.0, 'fold': 1.0, 'facing': 1.0, 'forward': 1.0, 'have': 1.0, 'that': 1.0, 'trunk': 1.0, 'another': 1.0, 'my': 1.0, 'out': 1.0, 'in': 2.0, 'baby': 1.0, 'rough': 1.0, 'recommend': 1.0, 'was': 1.0, 'seat': 1.0, 'to': 5.0, 'locking': 1.0, 'move': 1.0, 'ride': 1.0, 'walk': 1.0, 'after': 1.0, 'this': 2.0, 'it': 5.0, 'stopped': 1.0, 'okay': 1.0, 'stroller': 1.0, 'you': 2.0, 'negative': 1.0, 'bump': 1.0, 'are': 1.0, 'the': 3.0, 'heavy': 1.0, 'and': 6.0, 'walking': 1.0, 'a': 2.0, 'going': 1.0, 'i': 1.0, 'would': 1.0, 'mall': 1.0, 'groaned': 1.0, 'shake': 1.0, 'feels': 1.0, 'cumbersome': 1.0, 'is': 4.0, 'every': 1.0, 'really': 1.0, 'on': 1.0, 'sidewalks': 1.0, 'months': 2.0, 'lot': 1.0, 'lift': 1.0, 'several': 1.0, 'parks': 1.0, 'of': 2.0, 'frame': 1.0, 'owning': 1.0, 'creaked': 1.0, 'like': 1.0, 'if': 1.0, 'apart': 1.0, 'folding': 1.0, 'also': 2.0, '8': 1.0}
Word element => {'be': 1.0, 'no': 1.0, 'thing': 1.0, 'about': 1.0, 'purse': 1.0, 'never': 1.0, 'ok': 2.0, 'in': 2.0, 'm': 1.0, 'carrying': 1.0, 'to': 2.0, 'strap': 1.0, 'easy': 1.0, 'get': 1.0, 'sure': 1.0, 'by': 1.0, 'is': 4.0, 'say': 1.0, 'that': 2.0, 'been': 1.0, 'one': 1.0, 'all': 2.0, 'other': 1.0, 'adjustable': 1.0, 'flip': 1.0, 'wheels': 2.0, 'where': 1.0, 'best': 1.0, 'combi': 1.0, 'for': 1.0, 'diaper': 1.0, 'storage': 1.0, 'of': 3.0, 'the': 7.0, 'a': 5.0, 'has': 1.0, 'them': 1.0, 'strollers': 1.0, 'my': 1.0, 'umbrella': 1.0, 'hang': 1.0, 'owned': 1.0, 'there': 1.0, 'tried': 1.0, 'i': 4.0, 'matter': 1.0, 'variety': 1.0, 'ease': 1.0, 'and': 2.0, 'have': 1.0, 'stuck': 1.0, 've': 2.0, 'stroller': 1.0, 'disappointed': 1.0, 'it': 7.0, 'this': 1.0, 'kids': 1.0, 'with': 2.0, 'pushing': 1.0, '5': 1.0, 'point': 1.0, 'harness': 1.0, 'anything': 1.0, 'without': 1.0, 'works': 1.0, 'though': 2.0, 'lap': 1.0, 'belt': 1.0, 'only': 1.0, 'usually': 2.0, 'something': 1.0, 'straps': 1.0, 'surpasses': 1.0, 'make': 1.0, 'put': 2.0, 'on': 1.0, 'they': 1.0, 'are': 1.0, 'bad': 1.0, 'can': 2.0, 'so': 1.0, 'you': 2.0, 'kid': 1.0, 'or': 2.0, 'will': 1.0, 'll': 1.0, 'right': 1.0, 'over': 1.0, 'turn': 1.0, 'every': 1.0, 'stay': 1.0, 'if': 1.0, 'like': 1.0, 'including': 1.0, 'light': 2.0, 'bag': 1.0, 'far': 1.0, 'fold': 1.0, 'bottom': 1.0}
Word element => {'definitely': 1.0, 'bru': 1.0, 'sale': 1.0, 'got': 1.0, 'investment': 1.0, 'seriously': 1.0, 'carry': 1.0, 'quickly': 1.0, 'should': 1.0, 'rip': 1.0, 'don': 1.0, 'your': 1.0, 'rough': 1.0, 'going': 1.0, 'finally': 1.0, '40': 1.0, 'suitcase': 1.0, 's': 1.0, 'hang': 1.0, 'airport': 1.0, 'niece': 1.0, 'seven': 1.0, 'also': 1.0, 'pounds': 1.0, '65': 1.0, 'lap': 1.0, 'one': 1.0, 'held': 2.0, 'lot': 1.0, 'inside': 1.0, 'ride': 1.0, 'wanting': 1.0, '4': 2.0, 'shuttle': 1.0, 'hold': 1.0, 'fold': 2.0, 'taking': 1.0, 'park': 2.0, 'were': 1.0, 'caboose': 1.0, 'ultralight': 1.0, 'her': 2.0, 'smaller': 1.0, 'use': 1.0, 'so': 1.0, 'can': 2.0, 'work': 1.0, 'thing': 1.0, '2': 2.0, 'push': 1.0, 'able': 2.0, 'you': 4.0, 'am': 1.0, 'although': 1.0, 'knew': 1.0, 'etc': 1.0, 'two': 1.0, 'this': 4.0, 'kids': 1.0, 'joovy': 1.0, 'through': 1.0, 'buckle': 1.0, 'took': 2.0, 'baby': 1.0, 'paris': 1.0, 'pound': 1.0, 'on': 5.0, 'years': 3.0, 'fabric': 1.0, 'combined': 1.0, 'for': 2.0, 'recline': 1.0, 'it': 15.0, 'obviously': 1.0, 'which': 1.0, 'using': 1.0, 'like': 1.0, 'saw': 1.0, 'doesn': 1.0, 'was': 4.0, 'glad': 1.0, 'would': 1.0, 'disney': 1.0, 'want': 2.0, 'nyc': 1.0, 'to': 15.0, 'as': 2.0, 'in': 5.0, 'seat': 1.0, 'stroller': 6.0, 'our': 2.0, 'had': 3.0, 'and': 9.0, 'bit': 1.0, 'sold': 1.0, 'up': 3.0, 'mine': 1.0, '6': 1.0, 'four': 2.0, 'stage': 1.0, 'them': 1.0, 'always': 1.0, 'hand': 1.0, 'says': 1.0, 'straps': 2.0, 'when': 1.0, 'sit': 1.0, 'a': 6.0, 'ago': 1.0, 't': 3.0, 'then': 1.0, 'fine': 1.0, 'we': 5.0, 'from': 3.0, 're': 1.0, 'confused': 1.0, 'volo': 1.0, 'just': 2.0, 'why': 2.0, 'consider': 1.0, 'car': 1.0, 'wound': 1.0, 'sort': 1.0, 'indestructible': 1.0, 'the': 11.0, 'of': 2.0, 'i': 10.0, 'slumps': 1.0, 've': 1.0, 'down': 2.0, 'easily': 1.0, 'because': 1.0, 'everywhere': 1.0, 'that': 1.0, 'be': 3.0, 'bought': 1.0, 'adjusted': 1.0, 'considering': 1.0, 'more': 1.0, 'buses': 1.0, 'tightly': 1.0, 'my': 4.0, 'help': 1.0, 'tie': 1.0, 'knot': 1.0, 'with': 4.0, 'months': 1.0, 'get': 2.0, 'is': 1.0, 'handle': 1.0, 'at': 2.0, 'if': 1.0, 'bigger': 1.0, 'an': 1.0, 'early': 1.0, 'worth': 1.0, 'frame': 1.0, 'almost': 1.0, 'now': 1.0, 'occasionally': 1.0, 'after': 1.0, 'or': 1.0, 'world': 1.0, 'child': 1.0, 'year': 5.0, 'old': 5.0, 'didn': 1.0, 'bring': 1.0}
Word element => {'car': 1.0, 'way': 1.0, 's': 2.0, 'detail': 1.0, 'that': 1.0, 'minor': 1.0, 'than': 2.0, 'support': 1.0, 'was': 1.0, 'there': 1.0, 'other': 1.0, 'attractive': 1.0, 'son': 2.0, 'very': 1.0, 'use': 2.0, 'decent': 1.0, 'a': 1.0, 've': 1.0, 'seat': 1.0, 'just': 1.0, 'not': 1.0, 'for': 3.0, 'priced': 1.0, 'looking': 1.0, 'been': 1.0, 'great': 1.0, 'more': 2.0, 'lightweight': 1.0, 'quite': 1.0, 'and': 1.0, 'back': 1.0, 'stroller': 2.0, 'i': 4.0, 'does': 1.0, 'some': 1.0, 'time': 1.0, 'is': 1.0, 'fit': 1.0, 'my': 3.0, 'criteria': 1.0, 'with': 2.0, 'only': 1.0, 'this': 1.0, 'it': 3.0}
Word element => {'us': 1.0, 'buy': 1.0, 'definitely': 1.0, 'much': 1.0, 'use': 1.0, 'of': 1.0, 'out': 1.0, 'well': 1.0, 'since': 1.0, 'swing': 1.0, 'as': 1.0, 'from': 1.0, 'and': 2.0, 'great': 1.0, '1': 1.0, 'everyday': 1.0, 'i': 3.0, 'she': 3.0, 'it': 7.0, 'this': 1.0, 'love': 1.0, 'for': 2.0, 'been': 1.0, 'loves': 1.0, 'in': 1.0, 'daughter': 1.0, 'absolutely': 1.0, 'm': 1.0, 'was': 1.0, 'had': 1.0, 'purchased': 1.0, 'my': 1.0, 'we': 1.0, 's': 2.0, 'a': 2.0, 'ago': 1.0, 'born': 1.0, 'the': 1.0, 'piece': 1.0, 'because': 1.0, 'does': 2.0, 'her': 1.0, 'have': 1.0, 'small': 1.0, 'squeaky': 1.0, 'noise': 1.0, 'one': 1.0, 'months': 1.0, 'mobile': 1.0, 'so': 1.0, 'bit': 1.0, '2': 2.0, 'but': 1.0, 'not': 1.0, 'bother': 1.0, 'sure': 1.0}
Word element => {'great': 1.0, 'was': 1.0, 'with': 1.0, 'thought': 1.0, 'either': 1.0, 'had': 1.0, 'never': 1.0, 'i': 2.0, 'issues': 1.0, 'ring': 1.0, 'hitting': 1.0, 'caused': 1.0, 'stops': 1.0, 'back': 1.0, 'do': 1.0, 'have': 1.0, 'you': 1.0, 'put': 1.0, 'on': 2.0, 'accidentally': 1.0, 'swinging': 1.0, 'or': 1.0, 'one': 1.0, 'little': 1.0, 'if': 1.0, 'off': 1.0, 'get': 1.0, 'so': 1.0, 'removed': 1.0, 'be': 1.0, 'can': 2.0, 'animals': 2.0, 'and': 2.0, 'rotating': 2.0, 'by': 1.0, 'butterfly': 1.0, 'else': 1.0, 'lot': 1.0, 'quite': 1.0, 'rocked': 1.0, 'this': 2.0, 'wouldn': 1.0, 'clicking': 3.0, 'she': 1.0, 'it': 3.0, 'asleep': 1.0, 'the': 15.0, 'pull': 1.0, 'daughter': 1.0, 'is': 2.0, 'around': 1.0, 'fall': 1.0, 'anywhere': 1.0, 'simple': 1.0, 'attaches': 1.0, 'goes': 1.0, 'swing': 4.0, 'her': 1.0, 'parents': 1.0, 'always': 1.0, 'of': 1.0, 'all': 3.0, 'to': 4.0, 'sleep': 1.0, 'as': 1.0, 'which': 1.0, 'people': 1.0, 'are': 1.0, 'lights': 1.0, 'for': 1.0, 'actually': 1.0, 'complaining': 1.0, 'in': 2.0, 'about': 1.0, 't': 1.0, 'a': 2.0, 's': 2.0, 'fix': 1.0, 'track': 2.0, 'not': 1.0, 'broken': 1.0, 'purchase': 1.0, 'my': 1.0, 'fact': 1.0, 'net': 4.0, 'loves': 1.0, 'that': 2.0}
Word element => {'good': 1.0, 'space': 1.0, 'much': 1.0, 'isn': 1.0, 'don': 1.0, 'various': 1.0, 'money': 2.0, 'has': 3.0, 'as': 2.0, 'to': 8.0, 'elsewhere': 1.0, 'all': 1.0, 'back': 1.0, 'allowed': 1.0, 'or': 4.0, 'worth': 1.0, 'is': 3.0, 'completely': 1.0, 'music': 1.0, 'around': 1.0, 'left': 1.0, 'rotated': 1.0, 'right': 1.0, 'get': 1.0, 'speeds': 1.0, 'vibration': 1.0, 'and': 2.0, 'less': 1.0, 'adjustable': 1.0, 'plugged': 1.0, 'also': 2.0, 'sounds': 1.0, 'batteries': 2.0, 'swings': 1.0, 'for': 3.0, 'reviewer': 1.0, 'another': 1.0, 'can': 3.0, 'so': 1.0, 'speed': 1.0, 'purchased': 1.0, 'it': 4.0, 'remove': 1.0, 'this': 4.0, 'swing': 4.0, 'been': 1.0, 'probably': 1.0, 'any': 1.0, 'your': 2.0, 'spent': 1.0, 'two': 2.0, 'well': 1.0, 'i': 3.0, 'be': 2.0, 'nature': 1.0, 'things': 1.0, 'you': 5.0, 'able': 1.0, 'reclining': 1.0, 'positions': 1.0, 'play': 1.0, 'about': 1.0, 'baby': 2.0, 'have': 2.0, 'option': 1.0, 'the': 10.0, 'of': 1.0, 'like': 2.0, 'rather': 1.0, 'forward': 1.0, 'not': 2.0, 'my': 1.0, 'me': 2.0, 'having': 1.0, 'find': 1.0, 'tend': 1.0, 'sound': 1.0, 'that': 3.0, 'combination': 1.0, 'used': 1.0, 'ability': 1.0, 't': 2.0, 'likes': 1.0, 'rocker': 1.0, 'very': 1.0, 'handy': 1.0, 'take': 1.0, 'son': 1.0, 'house': 1.0, 'allows': 1.0, 'with': 2.0, 'was': 1.0, 'done': 1.0, 'seat': 2.0, 'in': 2.0, 'last': 1.0, 'negative': 1.0, 'on': 2.0, 'long': 1.0, 'only': 1.0, 'a': 2.0, 'large': 1.0, 'footprint': 1.0, 'if': 1.0}
Word element => {'do': 1.0, 'held': 1.0, 'fabric': 1.0, 'paid': 1.0, 'motor': 1.0, 'm': 1.0, 'even': 2.0, 'baby': 1.0, 'blanket': 2.0, 'getting': 1.0, 'my': 1.0, 'yes': 1.0, 'gotten': 1.0, 'well': 1.0, 'has': 2.0, 'light': 1.0, 'by': 1.0, 'disappointed': 1.0, 'made': 1.0, 'noticed': 1.0, 'week': 2.0, 'first': 1.0, 'beautifully': 1.0, 'worked': 1.0, 'clicking': 1.0, 'after': 1.0, 'stop': 1.0, 'slows': 1.0, 'compartment': 1.0, 'noise': 2.0, 'worry': 1.0, 'peice': 1.0, 'smaller': 2.0, 'so': 1.0, 'not': 1.0, 'listening': 1.0, 'because': 1.0, 'see': 1.0, 'floor': 1.0, 'rocker': 1.0, 'in': 4.0, 'months': 1.0, 'one': 1.0, 'love': 1.0, 'for': 3.0, 'i': 9.0, 'and': 5.0, 'know': 1.0, 'vibration': 1.0, 'have': 3.0, 'as': 1.0, 'to': 2.0, 'seat': 2.0, 'all': 2.0, 'this': 3.0, 'picked': 1.0, 'it': 6.0, 'keeping': 1.0, 'out': 1.0, 'next': 1.0, 'plugs': 1.0, 'that': 3.0, 'drags': 1.0, 'swing': 9.0, 'will': 1.0, 'batteries': 1.0, 'up': 1.0, 'child': 2.0, 'arc': 1.0, 'don': 2.0, 'gone': 1.0, 'battery': 1.0, 'about': 1.0, 't': 2.0, 'a': 8.0, 'part': 1.0, 'if': 2.0, 'is': 3.0, 'was': 1.0, 'beautiful': 1.0, 'mind': 1.0, 'lot': 1.0, 'at': 2.0, 'construction': 1.0, 'very': 2.0, 'though': 1.0, 'noisy': 1.0, 'music': 1.0, 'but': 3.0, 'on': 3.0, 'put': 1.0, 'you': 2.0, 'of': 2.0, 'myself': 1.0, 'heavier': 1.0, 'the': 18.0, 'cardboard': 1.0}
Word element => {'purchase': 1.0, 'about': 1.0, 'happy': 1.0, 'in': 1.0, 'i': 1.0, 'swing': 1.0, 'that': 1.0, 'the': 3.0, 'is': 2.0, 'love': 2.0, 'it': 1.0, 'this': 1.0, 'comfy': 1.0, 'fabric': 1.0, 'very': 2.0, 'and': 1.0, 'snuggly': 1.0, 'all': 1.0, 'features': 1.0}
Word element => {'had': 1.0, 'faded': 1.0, 'not': 1.0, 'washes': 1.0, 'last': 1.0, 'them': 2.0, 'well': 1.0, 'a': 1.0, 'love': 1.0, 'changing': 1.0, 'five': 1.0, 'and': 4.0, 'colors': 1.0, 'bold': 1.0, 'in': 2.0, 'magenta': 1.0, 'of': 1.0, 'after': 1.0, 'various': 1.0, 'has': 1.0, 'they': 2.0, 'four': 1.0, 'have': 2.0, 'fit': 1.0, 'pad': 1.0, 'i': 3.0, 'months': 1.0, 'on': 1.0, 'standard': 1.0, 'many': 1.0, 'is': 1.0, 'great': 2.0, 'these': 1.0, 'the': 3.0, 'color': 2.0}
Word element => {'in': 1.0, 'got': 1.0, 'so': 1.0, 'i': 2.0, 'this': 2.0, 'brown': 1.0, 'much': 1.0, 'liked': 1.0, 'rich': 1.0, 'cover': 1.0, 'is': 1.0, 'very': 1.0, 'soft': 1.0, 'too': 1.0, 'color': 1.0, 'launders': 1.0, 'well': 1.0, 'it': 1.0, 'without': 1.0, 'pilling': 1.0}
Word element => {'can': 1.0, 'like': 1.0, 'touch': 1.0, 'rough': 1.0, 'problem': 1.0, 'not': 2.0, 'will': 1.0, 'some': 1.0, 'these': 1.0, 'softness': 1.0, 'with': 2.0, 'if': 2.0, 'machine': 1.0, 'likely': 1.0, 'straight': 1.0, 'waste': 1.0, 'toilet': 1.0, 'solids': 1.0, 'shake': 1.0, 'need': 1.0, 'occurs': 1.0, 'messy': 1.0, 'baby': 1.0, 'washed': 1.0, 'put': 1.0, 'on': 1.0, 'back': 1.0, 'a': 5.0, 'insert': 1.0, 'diaper': 4.0, 'out': 1.0, 'inside': 1.0, 'diapers': 1.0, 're': 1.0, 'off': 1.0, 'good': 1.0, 'take': 1.0, '12': 1.0, 'one': 2.0, 'count': 1.0, 'x': 1.0, 'very': 1.0, 'review': 1.0, 'place': 1.0, 'the': 14.0, 'there': 1.0, '34': 2.0, 'of': 6.0, 'basket': 1.0, 'into': 3.0, 'that': 2.0, 'or': 2.0, 'liners': 3.0, 'be': 2.0, 'liner': 4.0, 'washing': 1.0, '100': 1.0, 'received': 3.0, 'new': 1.0, 'each': 1.0, '5': 1.0, 'have': 3.0, 'rolls': 2.0, 'any': 1.0, 'as': 2.0, 'all': 3.0, 'to': 4.0, '4': 1.0, 'i': 3.0, 'cloth': 1.0, 'are': 1.0, '600': 1.0, 'at': 1.0, 'total': 1.0, 'in': 2.0, 'choose': 1.0, 'tear': 1.0, 'having': 1.0, 'stash': 1.0, 'rash': 1.0, 'use': 1.0, 'wet': 1.0, 'toss': 1.0, 'and': 5.0, 'much': 1.0, 'pack': 1.0, 'do': 2.0, 'come': 1.0, 'for': 1.0, 'when': 1.0, 'you': 4.0, 'is': 2.0, 'they': 1.0, 'dirty': 1.0}
Word element => {'much': 1.0, 'so': 1.0, 'thanks': 1.0, 'works': 1.0, 'car': 4.0, 'trend': 1.0, 'seat': 1.0, 'has': 1.0, 'great': 1.0, 'the': 2.0, 'my': 2.0, 'prevent': 1.0, 'daughter': 1.0, 'and': 2.0, 'baby': 1.0, 'base': 1.0, 'stroller': 1.0, 'put': 1.0, 'wanted': 1.0, 'to': 4.0, 'in': 1.0, 'having': 1.0, 'move': 1.0, 'from': 1.0, 'it': 1.0, 'this': 1.0, 'i': 1.0, 'products': 1.0}
Word element => {'quickly': 1.0, 'dries': 1.0, 'do': 1.0, 'layer': 1.0, 'wet': 1.0, 'to': 2.0, 'soak': 1.0, 'had': 1.0, 'through': 1.0, 'not': 1.0, 'did': 1.0, 'leaked': 1.0, 'bassinet': 1.0, 'on': 1.0, 'the': 2.0, 'i': 1.0, 'night': 1.0, 'bought': 1.0, 'and': 3.0, 'perfectly': 1.0, 'probably': 1.0, 'it': 7.0, 'for': 2.0, 't': 1.0, 'a': 1.0, 'son': 1.0, 'middle': 1.0, 'graco': 1.0, 'you': 1.0, 'when': 1.0, 'my': 1.0, 'fits': 1.0, 'of': 2.0, 'cushioning': 1.0, 'even': 1.0, 'though': 1.0, 'next': 1.0, 'changing': 1.0, 'been': 1.0, 'this': 1.0, '30': 1.0, 'or': 1.0, 'time': 1.0, 'so': 1.0, 'easy': 1.0, 'wash': 2.0, 'fuzz': 1.0, 'was': 2.0, 'minutes': 1.0, 'doesn': 1.0, 'shed': 1.0}
Word element => {'pilled': 1.0, 'once': 1.0, 'can': 1.0, 'and': 2.0, '100': 1.0, 'label': 1.0, 's': 1.0, 'out': 1.0, 'made': 1.0, 'them': 1.0, 'don': 1.0, 'to': 1.0, 'use': 1.0, 'but': 1.0, 'work': 1.0, 'will': 1.0, 'dry': 1.0, 'makes': 1.0, 'they': 1.0, 'washed': 1.0, '34': 2.0, 'understand': 1.0, 'sure': 1.0, 'cotton': 1.0, 'it': 4.0, 'going': 1.0, 'm': 2.0, 'i': 5.0, 'in': 1.0, 'co': 1.0, 'sleeper': 1.0, 'what': 2.0, 'the': 1.0, 't': 2.0, 'something': 1.0, 'our': 1.0, 'entirely': 1.0, 'figure': 1.0, 'fine': 1.0, 'is': 2.0, 'how': 1.0}
Word element => {'in': 1.0, 'i': 1.0, 'bassinet': 1.0, 'has': 2.0, 'am': 1.0, 'the': 2.0, 'great': 1.0, 'changing': 1.0, 'fits': 1.0, 'pad': 2.0, 'this': 1.0, 'for': 1.0, 'using': 1.0, 'well': 1.0, 'a': 2.0, 'area': 1.0, 'been': 1.0, 'few': 1.0, 'held': 1.0, 'times': 1.0, 'now': 1.0, 'and': 1.0, 'washed': 1.0, 'up': 1.0}
Word element => {'and': 1.0, 'size': 1.0, 'good': 1.0, 're': 1.0, 'floor': 1.0, 'on': 1.0, 'work': 1.0, 'for': 1.0, 'bed': 1.0, 'keep': 1.0, 'bassinet': 1.0, 'he': 1.0, 'we': 1.0, 'lot': 1.0, 'all': 1.0, 'well': 2.0, 'a': 2.0, 'leaks': 1.0, 'so': 1.0, 'under': 2.0, 'from': 1.0, 'out': 1.0, 'baby': 1.0, 'our': 2.0, 'the': 1.0, 'these': 1.0, 'sides': 1.0, 'him': 2.0, 'wash': 1.0, 'in': 2.0, 'etc': 1.0, 'his': 1.0, 'they': 2.0, 'cradle': 1.0, 'too': 1.0, 'when': 1.0, 's': 1.0, 'hanging': 1.0}
Word element => {'old': 1.0, 'year': 1.0, '4': 1.0, 'petite': 1.0, 'really': 1.0, 'could': 1.0, 'in': 1.0, 'child': 2.0, 'filling': 1.0, 'sit': 1.0, 'not': 1.0, 'mess': 1.0, 'the': 3.0, 'much': 1.0, 'had': 1.0, 'was': 3.0, 'to': 1.0, 'of': 1.0, 'there': 1.0, 'beads': 1.0, 'so': 1.0, 'it': 2.0, 'girl': 1.0, 'take': 1.0, 'a': 3.0, 'lot': 1.0, 'that': 1.0, 'our': 1.0, 'and': 1.0}
Word element => {'fit': 1.0, 'so': 1.0, 'in': 1.0, 'fanatic': 1.0, 'mouse': 1.0, 'is': 1.0, 'she': 1.0, 'chair': 2.0, 'like': 1.0, 'dots': 1.0, 'granddaughter': 1.0, 'to': 1.0, 'for': 1.0, 'birthday': 1.0, 'pink': 1.0, 'it': 1.0, 'first': 1.0, 'beanbag': 1.0, 'this': 1.0, 'the': 1.0, 't': 1.0, 'have': 1.0, 'minnie': 1.0, 'my': 1.0, 'bought': 1.0, 'fits': 1.0, 'her': 2.0, 'a': 2.0, 'well': 2.0, 'and': 1.0, 'i': 1.0, 'don': 1.0, 'fear': 1.0, 'over': 1.0, 'tipping': 1.0}
Word element => {'pad': 1.0, 'a': 1.0, 'fits': 1.0, 'the': 2.0, 'standard': 1.0, 'is': 1.0, 'material': 1.0, 'perfectly': 1.0, 'changing': 1.0, 'it': 1.0, 'love': 1.0, 'great': 1.0, 'and': 2.0, 'absorbent': 1.0, 'soft': 1.0, 'enough': 1.0, 'i': 1.0, 'design': 1.0}
Word element => {'else': 1.0, 'something': 1.0, 'out': 1.0, 'able': 1.0, 'being': 1.0, 'he': 1.0, 'need': 2.0, 'what': 1.0, 'purpose': 1.0, 'its': 1.0, 'overall': 1.0, 'down': 1.0, 'way': 1.0, 'no': 1.0, 'and': 1.0, 'germs': 1.0, 'with': 1.0, 'concerned': 1.0, 'cart': 2.0, 'can': 1.0, 'when': 1.0, 'you': 2.0, 'climb': 1.0, 'since': 1.0, 'keep': 1.0, 'serves': 1.0, 'an': 2.0, 'old': 1.0, 'use': 3.0, 'this': 1.0, 'cover': 1.0, 'it': 3.0, 'month': 1.0, 'into': 1.0, 'basket': 1.0, 'not': 2.0, 'whenever': 1.0, 'baby': 1.0, 'clear': 1.0, 'everyone': 1.0, '7': 1.0, 'in': 1.0, 'also': 1.0, 'from': 1.0, 'galaxy': 1.0, 'to': 6.0, 'seat': 3.0, 'our': 1.0, 'put': 1.0, 'your': 1.0, 'has': 1.0, 'look': 1.0, 'iphone': 2.0, 'isn': 1.0, 'busy': 1.0, 'however': 1.0, 'pocket': 1.0, 'function': 1.0, 'for': 3.0, 'fit': 1.0, 'starts': 1.0, 'neat': 1.0, 'my': 1.0, 'there': 2.0, 'larger': 1.0, 'anymore': 1.0, 'belt': 2.0, 'does': 1.0, 's4': 1.0, 'the': 5.0, 'might': 1.0, 's': 2.0, 'we': 4.0, 'a': 2.0, 't': 2.0, 'really': 1.0, 'strap': 1.0, 'are': 1.0, 'useful': 1.0}
Word element => {'side': 1.0, 'right': 1.0, 'world': 1.0, 'baby': 1.0, 'seeing': 1.0, 'the': 2.0, 'my': 2.0, 'up': 1.0, 'and': 2.0, 'for': 1.0, 'daughter': 1.0, 'he': 1.0, 'seat': 1.0, 'is': 1.0, 'love': 1.0, 'it': 1.0, 'loves': 1.0, 'grandson': 1.0, 'attractive': 1.0, 'cover': 1.0, 'comfortable': 1.0}
Word element => {'room': 1.0, 's': 1.0, 'child': 1.0, 'for': 1.0, 'recommend': 1.0, 'nice': 1.0, 'it': 2.0, 'any': 1.0, 'and': 1.0, 'very': 1.0, 'bigger': 1.0, 'than': 1.0, 'would': 1.0, 'was': 1.0, 'expected': 1.0, 'i': 2.0, 'beautiful': 1.0, 'male': 1.0, 'colors': 1.0}
Word element => {'thx': 1.0, 'little': 1.0, 'my': 1.0, 'needed': 1.0, 'exactly': 1.0, 'this': 1.0, 'boy': 1.0, 'what': 1.0, 'trainer': 1.0, 'oz': 1.0, 'it': 1.0, 'great': 1.0, 'philips': 1.0, 'cup': 1.0, 'avent': 1.0, 'blue': 1.0, 'i': 1.0, '4': 1.0, 'bottle': 1.0, 'is': 2.0, 'for': 1.0, 'in': 1.0}
Word element => {'3': 1.0, 'single': 1.0, 'wouldn': 1.0, 'seriously': 1.0, 'they': 1.0, 'size': 1.0, 'next': 1.0, 'dollars': 1.0, 'want': 2.0, 'dd': 1.0, 'flanges': 1.0, 'light': 1.0, 'room': 1.0, 'baby': 1.0, 'without': 2.0, 'time': 1.0, 'used': 1.0, 'or': 1.0, 'hubby': 1.0, 'feature': 1.0, 'best': 1.0, 'don': 1.0, 'setting': 1.0, 'even': 1.0, 'as': 2.0, 'use': 1.0, 'just': 1.0, 'milk': 1.0, 'had': 1.0, 'incredible': 1.0, 'this': 1.0, 'lt': 1.0, 'regret': 1.0, 'reviewers': 1.0, 'strength': 1.0, 'so': 1.0, 'decision': 1.0, 'immediate': 1.0, 'nothing': 1.0, 'out': 2.0, 'wore': 1.0, 'went': 1.0, 'those': 1.0, 'disastrous': 1.0, 'waking': 1.0, 'not': 3.0, 'months': 2.0, 'bought': 1.0, 'are': 1.0, 'first': 2.0, 'hear': 1.0, 'month': 1.0, 'the': 19.0, 'of': 3.0, 'breasts': 1.0, 'sister': 1.0, 'vacation': 1.0, 'than': 1.0, 'brands': 1.0, 'pump': 5.0, 'owned': 1.0, 'exclusively': 1.0, 'me': 3.0, 'my': 5.0, 'in': 3.0, 'overhead': 1.0, 'shower': 1.0, 'turning': 2.0, 'terrific': 1.0, 'affinity': 1.0, 'to': 5.0, 'worked': 1.0, 'two': 2.0, 'one': 2.0, 'lot': 1.0, 'son': 1.0, 'for': 4.0, 'every': 1.0, 'still': 1.0, 'turn': 1.0, 'if': 1.0, 'i': 18.0, 'well': 1.0, 'settled': 1.0, 'law': 1.0, 'small': 1.0, 'a': 5.0, 'fork': 1.0, 'would': 1.0, 'worth': 1.0, 'attempt': 1.0, 'it': 10.0, 'him': 1.0, 'giving': 1.0, 'prevelant': 1.0, 'because': 1.0, 'that': 2.0, 'american': 1.0, 'avoid': 1.0, 'but': 4.0, 'nursing': 1.0, 'formula': 1.0, 'mucho': 1.0, 'market': 1.0, 'hesitant': 1.0, 'have': 2.0, 'motor': 1.0, 'from': 1.0, 'pumping': 1.0, 'expression': 1.0, 'day': 2.0, 'newborn': 1.0, 'lansinoh': 1.0, 'needed': 2.0, 'hospital': 2.0, 'tv': 2.0, 'bit': 2.0, 'realized': 1.0, 'didn': 2.0, 't': 4.0, 'require': 1.0, 'penny': 1.0, 'affordable': 1.0, 'up': 3.0, 'work': 1.0, 'over': 2.0, 'volume': 1.0, 'on': 7.0, 'wanted': 1.0, 'portable': 1.0, 'did': 1.0, 'research': 1.0, 'and': 7.0, 'reading': 1.0, 'based': 1.0, 'which': 1.0, 'cannot': 1.0, 'after': 5.0, 'grade': 2.0, 'glowing': 1.0, 'fine': 1.0, 'reviews': 1.0, 'nightlight': 1.0, 'advertised': 1.0, 'cheaper': 1.0, 'spectra': 2.0, 'quiet': 2.0, 'was': 4.0, 'quickly': 1.0, 'only': 1.0, 'helped': 1.0, 'all': 1.0, 'ever': 2.0, 'an': 3.0, 'other': 3.0, 'any': 1.0, 'probably': 1.0, 'name': 1.0, 'at': 3.0, 'is': 4.0, 'run': 1.0, '12': 1.0, 'batteries': 1.0}
Word element => {'feeding': 1.0, 'breaks': 1.0, 'low': 1.0, 'ounces': 1.0, 'amount': 1.0, 'to': 3.0, 'ability': 1.0, 'be': 1.0, 'definitely': 1.0, 'pumping': 1.0, 'able': 2.0, '8': 1.0, 'breast': 4.0, '4': 1.0, 'i': 6.0, 'noise': 1.0, 'it': 1.0, 'minute': 1.0, 'this': 2.0, 'for': 1.0, 'love': 1.0, 'output': 1.0, 'a': 3.0, 'return': 1.0, 'wanted': 1.0, '15': 1.0, 'is': 2.0, 'on': 1.0, '3': 1.0, 'everything': 1.0, 'must': 1.0, 'have': 2.0, 'small': 1.0, 'excellent': 1.0, 'pump': 4.0, 'in': 2.0, 'mothers': 1.0, 'from': 1.0, 'each': 1.0, 'less': 1.0, 'when': 1.0, 'than': 1.0, 'milk': 1.0, 'was': 1.0, 'minutes': 1.0, 'knowing': 1.0, 'that': 1.0, 'work': 1.0, 'will': 1.0, 'confidence': 1.0, 'decent': 1.0, 'of': 1.0, 'my': 1.0}
Word element => {'of': 1.0, 'thinking': 1.0, 'am': 1.0, 'both': 1.0, 'from': 1.0, 'breasts': 1.0, 'arm': 1.0, 'spent': 1.0, 'pump': 1.0, 'it': 1.0, 'only': 1.0, 'this': 1.0, 'have': 1.0, 'love': 1.0, 'total': 1.0, 'because': 1.0, 'would': 1.0, 'returning': 1.0, 'thought': 1.0, 'week': 1.0, 'an': 1.0, 'but': 1.0, 'i': 6.0, 'a': 3.0, 'half': 1.0, 'leg': 1.0, 'on': 1.0, 'after': 1.0, 'everything': 1.0, 'ounce': 1.0, 'and': 2.0, 'get': 1.0, 'full': 1.0, 'about': 1.0, 'blast': 1.0}
Word element => {'to': 1.0, 'measure': 1.0, 'they': 1.0, 'crib': 1.0, 'of': 1.0, 'short': 1.0, 'the': 2.0, 'properly': 1.0, 'a': 2.0, 'standard': 1.0, 'pieces': 2.0, 'was': 1.0, 'little': 1.0, 'need': 1.0, 'and': 1.0, 'one': 1.0, 'i': 1.0, 'have': 1.0}
Word element => {'really': 1.0, 'a': 1.0, 'tho': 1.0, 'side': 1.0, 'on': 1.0, 'tear': 1.0, 'still': 1.0, 'to': 1.0, 'ok': 1.0, 'quality': 1.0, 'cute': 1.0, 'price': 1.0, 'i': 1.0, 'starting': 1.0, 'for': 1.0, 'the': 2.0, 'it': 1.0, 'often': 1.0, 'overstuff': 1.0, 'so': 1.0, 'little': 1.0, 'its': 1.0}
Word element => {'them': 1.0, 'clean': 1.0, 'was': 1.0, 'is': 1.0, 'really': 1.0, 'there': 1.0, 'of': 1.0, 'seperate': 1.0, 'and': 2.0, 'out': 3.0, 'butt': 1.0, 'no': 1.0, 'it': 5.0, 'part': 1.0, 'hard': 1.0, 'way': 1.0, 'absolutely': 1.0, 'love': 1.0, 'locking': 1.0, 'the': 3.0, 'these': 1.0, 'to': 3.0, 'spoons': 1.0, 'pain': 1.0, 'gets': 1.0, 'by': 1.0, 'a': 2.0, 'going': 1.0, 'food': 1.0, 'but': 2.0, 'inside': 1.0, 'stuck': 1.0, 'in': 1.0, 'i': 2.0, 'did': 1.0, 'keep': 1.0, 'pulling': 1.0, 'sides': 1.0, 'little': 1.0, 'bit': 1.0, 'blowing': 1.0, 'into': 1.0, 'quite': 1.0, 'not': 1.0, '100': 1.0, 'get': 1.0, 'sure': 1.0, 'am': 1.0}
Word element => {'him': 1.0, 'feed': 1.0, 'husbands': 1.0, 'my': 1.0, 'old': 1.0, 'month': 1.0, '6': 1.0, 'it': 1.0, 'with': 1.0, 'dripping': 1.0, 'about': 1.0, 'these': 1.0, 'the': 2.0, 'are': 1.0, 'way': 1.0, 'easiest': 1.0, 'you': 2.0, 'on': 1.0, 'is': 2.0, 'convient': 1.0, 'when': 1.0, 'so': 1.0, 'ever': 1.0, 'worry': 1.0, 'go': 1.0, 'close': 1.0, 'and': 4.0, 'invention': 1.0, 'easy': 1.0, 'use': 2.0, 'to': 3.0, 'best': 1.0, 'open': 1.0, 'our': 1.0, 'awesome': 1.0, 'we': 1.0, 'feature': 1.0, 'dont': 1.0, 'have': 1.0}
Word element => {'did': 1.0, 'off': 1.0, 'get': 1.0, 'better': 1.0, 'feel': 1.0, 'lost': 1.0, 'never': 2.0, 'wrote': 1.0, 'with': 2.0, 'it': 4.0, 'on': 2.0, '4': 1.0, 'made': 1.0, 'stayed': 1.0, 'child': 1.0, 'the': 2.0, 'pool': 1.0, 'back': 1.0, 'but': 1.0, 'and': 2.0, 'me': 1.0, 'sharpie': 1.0, 'got': 2.0, 'even': 1.0, 'his': 1.0, 'day': 1.0, 'have': 1.0, 'thought': 1.0, 'although': 1.0, 'they': 1.0, 'd': 1.0, 'my': 2.0, 'cellphone': 1.0, 'pricey': 1.0, 'number': 1.0, 'that': 1.0, 'case': 1.0, 'was': 1.0, 'all': 2.0, 'to': 1.0, 'bit': 1.0, 'though': 1.0, 'one': 1.0, 'in': 2.0, 'age': 1.0, 'tried': 1.0, 'a': 2.0, 'we': 1.0, 'separated': 1.0, 'might': 1.0}
Word element => {'problems': 1.0, 'we': 1.0, 'without': 1.0, 'put': 2.0, 'cute': 1.0, 'them': 1.0, 'a': 1.0, 'able': 1.0, 'up': 2.0, 'and': 1.0, 'any': 1.0, 'to': 2.0, 'mins': 1.0, 'were': 1.0, 'rearranged': 1.0, 'easy': 1.0, 'super': 1.0, 'under': 1.0, '10': 1.0, 'in': 1.0, 've': 1.0, 'pieces': 1.0, 'i': 1.0, 'few': 1.0}
Word element => {'product': 1.0, 'this': 1.0, 'recommend': 1.0, 'definitely': 1.0, 'super': 1.0, 'are': 1.0, 'more': 1.0, 'the': 2.0, 'decals': 1.0, 'nursery': 2.0, 'was': 1.0, 'expected': 1.0, 'than': 1.0, 'on': 1.0, 'adorable': 1.0, 'shipping': 1.0, 'your': 1.0, 'time': 1.0, 'they': 1.0, 'what': 1.0, 'trying': 1.0, 'you': 2.0, 'i': 2.0, 're': 2.0, 'cute': 1.0, 'absolutely': 1.0, 'if': 1.0, 'right': 1.0, 'looking': 1.0, 'for': 2.0, 'something': 1.0}
Word element => {'would': 1.0, 'decals': 1.0, 'choose': 1.0, 'we': 1.0, 'paint': 1.0, 'them': 1.0, 'out': 1.0, 'recommend': 1.0, 'stands': 1.0, 'easy': 1.0, 'and': 3.0, 'cute': 1.0, 'how': 1.0, 'bright': 1.0, 'really': 1.0, 'is': 1.0, 'set': 1.0, 'pretty': 1.0, 'to': 2.0, 'was': 1.0, 'wall': 1.0, 'so': 1.0, 'decal': 1.0, 'apply': 1.0, 'it': 1.0, 'with': 1.0, 'this': 1.0, 'the': 4.0, 'are': 1.0, 'highly': 1.0, 'colors': 1.0, 'another': 1.0, 'brown': 1.0, 'against': 1.0, 'person': 1.0, 'i': 1.0, 'love': 2.0}
Word element => {'and': 1.0, 'teens': 1.0, 'suited': 1.0, 'kids': 1.0, 'young': 1.0, 'above': 1.0, 'uncomfortable': 1.0, '7': 1.0, 'is': 1.0, 'not': 1.0, 'straps': 1.0, 'more': 1.0, 'my': 1.0, 'old': 1.0, 'bag': 1.0, 'for': 3.0, 'year': 1.0, 'built': 1.0}
Word element => {'appreciate': 1.0, 'have': 1.0, 'says': 1.0, 'everything': 1.0, 'nice': 1.0, 'product': 1.0, 'compartments': 1.0, 'would': 1.0, 'expected': 1.0, 'a': 1.0, 'bit': 1.0, 'more': 1.0, 'small': 1.0, 'but': 2.0, 'than': 1.0, 'has': 1.0, 'i': 2.0, 'it': 2.0}
Word element => {'back': 1.0, 'lower': 1.0, 'of': 1.0, 'has': 1.0, 'padding': 1.0, 'many': 1.0, 'bag': 1.0, 'baby': 1.0, 'colors': 1.0, 'lots': 1.0, 'and': 2.0, 'need': 1.0, 'very': 1.0, 'the': 3.0, 'comfortable': 1.0, 'for': 3.0, 'love': 1.0, 'pouches': 1.0, 'space': 1.0, 'i': 1.0, 'to': 1.0, 'everything': 1.0, 'wear': 1.0, 'with': 1.0, 'design': 1.0, 'extra': 1.0}
Word element => {'family': 1.0, 'recommend': 1.0, 'definitely': 1.0, 'would': 1.0, 'your': 1.0, 'on': 1.0, 'so': 1.0, 'feels': 1.0, 'bubble': 1.0, 'soft': 1.0, '3': 1.0, 'shampoo': 1.0, 'smooth': 1.0, 'bath': 1.0, 'is': 1.0, 'mantra': 1.0, 'baby': 1.0, 'loves': 1.0, 'love': 2.0, 'skin': 1.0, 'this': 1.0, 'it': 1.0, 'i': 2.0, '1': 1.0, 'and': 4.0, 'in': 1.0, 'wash': 1.0, 'my': 2.0, 't': 1.0, 'the': 2.0, 'kids': 1.0, 'friends': 1.0, 'product': 1.0, 'all': 1.0, 'organic': 1.0, 'scent': 1.0}
Word element => {'worth': 1.0, 'definitely': 1.0, 'trying': 1.0, 's': 1.0, 'fact': 1.0, 'love': 1.0, 'possible': 1.0, 'think': 1.0, 'didn': 1.0, 'organic': 1.0, 'which': 1.0, 'bath': 1.0, 'and': 2.0, 'softer': 1.0, 'days': 1.0, 'a': 1.0, 'few': 1.0, 'on': 1.0, 'out': 2.0, 'ago': 1.0, 't': 1.0, 'great': 1.0, 'the': 3.0, 'i': 1.0, 'tried': 1.0, 'pretty': 1.0, 'too': 1.0, 'kids': 1.0, 'sweet': 1.0, 'was': 2.0, 'smelled': 1.0, 'left': 1.0, 'even': 1.0, 'before': 1.0, 'that': 1.0, 'their': 1.0, 'it': 3.0, 'skin': 1.0, 'feeling': 1.0, 'than': 1.0}
Word element => {'smells': 1.0, 'less': 1.0, 'product': 1.0, 'i': 1.0, 'complicated': 1.0, 'in': 1.0, 'of': 1.0, 'three': 1.0, 'great': 1.0, 'the': 3.0, 'more': 1.0, 'one': 1.0, 'effective': 1.0, 'yet': 1.0, 'love': 1.0, 'it': 3.0, 's': 1.0, 'ease': 1.0, 'and': 4.0, 'very': 1.0, 'same': 1.0, 'bath': 1.0, 'time': 2.0, 'makes': 1.0, 'gentle': 1.0, 'at': 1.0, 'fun': 1.0}
Word element => {'order': 1.0, 'll': 1.0, 'that': 1.0, 'around': 1.0, 'all': 1.0, 'just': 1.0, 'while': 1.0, 'long': 1.0, 'and': 1.0, 'me': 1.0, 'do': 1.0, 'children': 1.0, 'with': 2.0, 'skin': 2.0, 'it': 4.0, 'she': 1.0, 'm': 1.0, 'an': 2.0, 'but': 1.0, 'doesn': 1.0, 'herself': 1.0, 'saying': 1.0, 'lasts': 1.0, 'adult': 1.0, 'have': 1.0, 'told': 1.0, 'about': 1.0, 'chemical': 1.0, 'sensitive': 1.0, 'uses': 1.0, 'i': 3.0, 'young': 1.0, 'product': 2.0, 'for': 1.0, 'excellent': 1.0, 'would': 1.0, 'definitely': 2.0, 'again': 1.0, 'fantastic': 1.0, 'someone': 1.0, 'smells': 1.0, 'agree': 1.0, 'so': 1.0, 'her': 1.0, 'great': 2.0, 'a': 1.0, 's': 1.0, 't': 1.0, 'ones': 1.0, 'concentrated': 1.0, 'my': 1.0, 'dry': 1.0, 'out': 1.0, 'like': 1.0, 'normal': 1.0, 'this': 1.0, 'based': 1.0}
Word element => {'used': 1.0, 'product': 1.0, 'be': 1.0, 'can': 1.0, 'kids': 1.0, 'adults': 1.0, 'babies': 1.0, 'is': 1.0, 'that': 1.0, 'in': 1.0, 'thanks': 1.0, 'note': 1.0, '3': 1.0, 'but': 1.0, 'fact': 1.0, 'thank': 1.0, 'your': 1.0, 'i': 2.0, 'say': 1.0, 'bubble': 1.0, 'to': 1.0, 'you': 1.0, 'well': 1.0, 'a': 3.0, 'not': 1.0, 'just': 1.0, 'bath': 1.0, 'received': 1.0, 'only': 1.0, 'it': 4.0, 'for': 4.0, 'love': 2.0, 'as': 2.0, '1': 1.0, 'and': 2.0, 'gift': 1.0, 'great': 1.0, 'the': 1.0}
Word element => {'good': 1.0, 'dedicated': 1.0, 'are': 1.0, 'who': 1.0, 'bubble': 1.0, 'smooth': 1.0, 'wonders': 1.0, 'son': 1.0, 'chemicals': 1.0, 'tried': 1.0, 'i': 6.0, 'my': 2.0, 'gonna': 1.0, 'giving': 1.0, 'and': 6.0, 'don': 1.0, 'pleasant': 1.0, 'baby': 1.0, 'as': 1.0, 'to': 4.0, 'worry': 2.0, 'so': 3.0, 'something': 1.0, 'natural': 2.0, 'bath': 1.0, 'on': 1.0, 'buy': 1.0, 'looking': 2.0, 'organic': 2.0, 'have': 2.0, 'it': 2.0, 'skin': 2.0, 'for': 1.0, 'product': 3.0, 'works': 1.0, 'aromatic': 1.0, 'really': 2.0, 'this': 3.0, 'soft': 1.0, 't': 1.0, 'moisturizing': 1.0, 's': 1.0, 'about': 2.0, 'no': 1.0, 'harsh': 1.0, 'am': 2.0, 'when': 1.0, 'again': 2.0, 'was': 2.0, 'recommend': 1.0, 'others': 1.0}
Word element => {'either': 1.0, 'large': 1.0, 'they': 1.0, 'these': 1.0, 'socks': 1.0, 'was': 1.0, 'not': 1.0, 'were': 1.0, 'up': 1.0, 'as': 1.0, 'and': 1.0, 'only': 2.0, 'baby': 1.0, 'ended': 1.0, 'never': 1.0, 'months': 1.0, 'my': 2.0, 'wearing': 1.0, 'small': 1.0, 'daughter': 2.0, 'too': 1.0, 'she': 1.0, 'three': 1.0, 'old': 1.0, 'is': 2.0, 'a': 1.0}
Word element => {'enemy': 1.0, 'not': 1.0, 'would': 1.0, 'one': 1.0, 'for': 1.0, 'so': 1.0, 'small': 1.0, 'big': 1.0, 'dissappointed': 1.0, 'm': 1.0, 'too': 2.0, 'some': 1.0, 'on': 1.0, 'is': 2.0, 'base': 1.0, 'and': 1.0, 'worst': 1.0, 'muffs': 1.0, 'reccomend': 1.0, 'my': 2.0, 'the': 2.0, 'ear': 1.0, '6lbs': 1.0, 'reviews': 1.0, 'are': 1.0, 'worse': 1.0, 'i': 5.0, 'buy': 1.0, 'had': 1.0, 'to': 1.0, 'was': 1.0, 'this': 4.0, 'read': 1.0, 'bought': 1.0, 'product': 2.0, 'a': 2.0, 'band': 1.0, 'baby': 2.0, 'scull': 1.0, 'if': 1.0, 'crusher': 1.0, 'way': 2.0}
Word element => {'cute': 1.0, 'is': 1.0, 'polka': 1.0, 'pink': 1.0, 'plus': 1.0, 'work': 1.0, 'so': 1.0, 'loud': 1.0, 'through': 1.0, 'way': 1.0, 'i': 1.0, 'old': 1.0, 'stadium': 1.0, 'months': 1.0, 'large': 1.0, 'strap': 1.0, 'she': 2.0, 'soccer': 1.0, 'was': 1.0, 'super': 1.0, 'at': 1.0, 'when': 1.0, 'moments': 1.0, 'games': 1.0, 'they': 2.0, 'using': 1.0, 'a': 1.0, 'know': 1.0, 'started': 1.0, 'sleeps': 1.0, 'are': 1.0, 'in': 1.0, 'dot': 1.0, 'these': 1.0, '2': 1.0, 'the': 2.0, 'great': 1.0, 'and': 1.0, 'all': 1.0}
Word element => {'happier': 1.0, 'couldn': 1.0, 'before': 1.0, 'curtains': 1.0, 'so': 1.0, 'time': 1.0, 'wrinkle': 1.0, 'did': 1.0, 'use': 1.0, 'easy': 1.0, 'really': 1.0, 'summer': 1.0, 'cover': 1.0, 'pad': 2.0, 'when': 1.0, 'am': 1.0, 'needed': 1.0, 'back': 1.0, 'well': 1.0, 'has': 1.0, 'blanket': 1.0, 'large': 2.0, 'everything': 1.0, 'be': 1.0, 'window': 2.0, 'price': 1.0, 'them': 1.0, 'baby': 1.0, 'about': 1.0, 'otherwise': 1.0, '4': 1.0, 'i': 6.0, 'purchased': 1.0, 'have': 2.0, 'soft': 1.0, 'this': 1.0, 'with': 4.0, 'minky': 1.0, 'it': 1.0, 'changing': 2.0, 'that': 3.0, 'sided': 1.0, 'coupled': 1.0, 'infant': 1.0, 'wonderfully': 1.0, 'pleased': 1.0, 'set': 3.0, 'in': 3.0, 'one': 1.0, 'included': 1.0, 'love': 1.0, 'for': 1.0, 'fit': 4.0, 'skirt': 1.0, 'washed': 1.0, 'on': 1.0, 'great': 1.0, 'the': 12.0, 'way': 1.0, 'was': 3.0, 'all': 1.0, 'our': 2.0, 'to': 2.0, 'crib': 2.0, 'horribly': 1.0, 'from': 1.0, 'too': 1.0, 'and': 4.0, 'first': 1.0, 'concerned': 1.0, 't': 1.0, 'a': 2.0, 'we': 2.0, 'bedding': 1.0, 'how': 1.0, 'would': 1.0, 'but': 3.0, 'valances': 1.0, 'came': 1.0, 'using': 1.0, 'which': 1.0, 'ikea': 1.0, 'is': 4.0, 'iron': 1.0, 'only': 1.0, 'nursery': 1.0, 'quite': 2.0}
Word element => {}
Word element => {'with': 1.0, 'companies': 1.0, 'they': 1.0, 'ever': 1.0, 'since': 1.0, '2': 1.0, 'the': 3.0, 'such': 1.0, 'products': 1.0, 'these': 1.0, 'champ': 1.0, 'training': 1.0, 'diapers': 1.0, 'an': 1.0, 'i': 3.0, 'birth': 1.0, 'just': 1.0, 'through': 1.0, 'fit': 1.0, 'all': 1.0, 'to': 1.0, 'excellent': 2.0, 'had': 2.0, 'was': 1.0, 'from': 1.0, '2009': 1.0, 'within': 1.0, 'wish': 1.0, '0': 1.0, 'kids': 1.0, 'my': 2.0, 'been': 1.0, 'that': 1.0, 'babies': 1.0, 'want': 1.0, 'say': 1.0, 'is': 1.0, 'affordable': 1.0, '24': 1.0, 'when': 1.0, 'resolved': 1.0, 'using': 1.0, 'potty': 1.0, 'are': 1.0, 'absolutely': 1.0, 'and': 2.0, 'issue': 2.0, 'amazing': 1.0, 'customer': 2.0, 'hours': 1.0, 'service': 2.0, 'have': 1.0, 'contacted': 1.0, 'them': 1.0}
Word element => {'before': 1.0, 'morning': 1.0, 'off': 1.0, 'on': 1.0, 'get': 2.0, 'both': 1.0, 'quicker': 1.0, 'has': 1.0, 'easier': 1.0, 'prepared': 1.0, 'have': 2.0, 'having': 1.0, 'but': 1.0, 'system': 1.0, 'other': 1.0, 'compared': 1.0, 'gross': 1.0, 'pretty': 1.0, 'not': 1.0, 'poops': 1.0, 'bm': 1.0, 'if': 1.0, 'my': 1.0, 'in': 2.0, 'something': 1.0, 'night': 2.0, 'cloth': 2.0, 'i': 2.0, 'heavy': 1.0, 'the': 3.0, 'do': 1.0, 'try': 1.0, 'use': 2.0, 'just': 1.0, 'wet': 1.0, 'wanted': 1.0, 'different': 1.0, 'a': 2.0, 's': 1.0, 't': 2.0, 'we': 3.0, 'extra': 1.0, 'day': 1.0, 'diapers': 1.0, 'an': 1.0, 'inside': 1.0, 'fold': 1.0, 'wetter': 1.0, 'of': 1.0, 'and': 7.0, 'opinion': 1.0, 'for': 2.0, 'daytime': 1.0, 'yet': 1.0, 'like': 1.0, 'which': 1.0, 'hasn': 1.0, 'our': 2.0, 'to': 6.0, 'ourselves': 1.0, 'white': 1.0, 'at': 2.0, 'since': 1.0, 'with': 1.0, 'this': 3.0, 'throughout': 1.0, 'he': 3.0, 'covers': 1.0, 'it': 2.0, 'catch': 1.0, 'practical': 1.0, 'diaper': 2.0, 'insert': 1.0, 'add': 1.0, 'him': 1.0, 'fleece': 1.0, 'liner': 1.0, 'isn': 1.0, 'through': 1.0, 'completely': 2.0, 'is': 2.0}
Word element => {'up': 1.0, 'how': 1.0, 'see': 1.0, 'to': 1.0, 'cannot': 1.0, 'is': 1.0, 'holds': 1.0, 'but': 1.0, 'not': 1.0, 'used': 1.0, 'have': 1.0, 'this': 1.0, 'made': 1.0, 'the': 1.0, 'yet': 1.0, 'i': 1.0, 'wait': 1.0, 'love': 1.0, 'it': 2.0, 'way': 1.0}
Word element => {'wanting': 1.0, 'would': 1.0, 'soaker': 1.0, 'proof': 1.0, 'leak': 1.0, 'make': 1.0, 'gusset': 1.0, 'inserts': 1.0, 'super': 1.0, 'favorite': 1.0, 'stinkies': 1.0, 'adorable': 1.0, 'colors': 1.0, 'range': 1.0, 'toddler': 1.0, 'size': 1.0, 'any': 1.0, 'baby': 1.0, 'defeated': 1.0, 'off': 1.0, 'ripping': 1.0, 'kids': 1.0, 'keep': 1.0, 'double': 1.0, 'backwards': 1.0, '34': 2.0, 'how': 1.0, 'figured': 1.0, 'bamboo': 1.0, 'daughter': 1.0, 'blend': 1.0, 'ok': 1.0, 'or': 1.0, 'if': 1.0, 'because': 1.0, 'that': 2.0, 's': 2.0, 'am': 1.0, 'folded': 1.0, 'you': 2.0, 'incredible': 1.0, 'hunt': 1.0, 'easy': 1.0, 'know': 1.0, 'found': 1.0, 'overnight': 1.0, 'endangered': 1.0, 'were': 3.0, 'some': 2.0, 'these': 3.0, 'g': 1.0, '21': 1.0, 'girl': 1.0, 'out': 4.0, 'customize': 1.0, 'couple': 1.0, 'has': 1.0, 'them': 4.0, 'mostly': 1.0, 'as': 1.0, 'all': 1.0, 'now': 2.0, 'but': 4.0, 'are': 3.0, 'diapers': 4.0, 'didn': 1.0, 'previous': 1.0, 'just': 2.0, 've': 1.0, 'for': 7.0, 'love': 2.0, 'virtually': 1.0, 'using': 1.0, 'anyone': 1.0, 'and': 10.0, 'toss': 1.0, 'nice': 1.0, 'little': 1.0, 'reliable': 1.0, 'been': 1.0, 'reccomend': 1.0, 'years': 1.0, 'about': 1.0, 'even': 3.0, 'cloth': 2.0, 'i': 13.0, '4': 2.0, 'ratings': 1.0, 'on': 3.0, 'think': 1.0, 'brutal': 1.0, 'legs': 2.0, 'months': 1.0, 'bought': 2.0, 'try': 1.0, 'ones': 1.0, 'prints': 1.0, 'of': 1.0, 'the': 19.0, 'went': 1.0, 'my': 5.0, 'so': 4.0, 'it': 3.0, 'starting': 1.0, 'wear': 2.0, 'current': 1.0, 'original': 1.0, 'machine': 1.0, 'absorbant': 1.0, 'rush': 1.0, 'forget': 1.0, 'skeptical': 1.0, 'son': 1.0, 'is': 3.0, 'claimed': 1.0, 'won': 1.0, 'who': 1.0, 'fit': 2.0, 't': 4.0, 'could': 1.0, 'a': 4.0, 'they': 3.0, 'nature': 1.0, 'be': 4.0, 'good': 1.0, 'waist': 1.0, 'everyone': 1.0, 'sale': 1.0, 'have': 1.0, 'disapointed': 1.0, 'm': 1.0, 'in': 3.0, 'velcro': 4.0, 'to': 12.0, 'closures': 1.0, 'was': 1.0, 'with': 2.0, 'from': 1.0, 'snaps': 2.0, 'alter': 1.0, 'lengthwise': 1.0, 'had': 1.0, 'over': 1.0, 'her': 1.0, 'use': 2.0, 'wash': 1.0, 'undo': 1.0, 'don': 2.0, 'washing': 1.0, 'around': 2.0, 'tear': 1.0, 'strips': 1.0, 'gogreen': 1.0, 'snap': 1.0, 'continued': 1.0, 'system': 1.0, 'unbeatable': 1.0, 'll': 1.0, 'easier': 1.0, 'by': 1.0, 'pull': 1.0, 'insert': 1.0, 'do': 1.0, 'fell': 1.0, 'though': 1.0}
Word element => {'made': 1.0, 't': 1.0, 'item': 1.0, 'i': 3.0, 'expected': 1.0, 'was': 1.0, 'as': 1.0, 'and': 1.0, 'time': 1.0, 'is': 1.0, 'haven': 1.0, 'used': 1.0, 'delivered': 1.0, 'yet': 1.0, 'on': 1.0, 'believe': 1.0, 'but': 1.0, 'will': 1.0, 'be': 1.0, 'happy': 1.0, 'this': 1.0, 'with': 1.0, 'it': 2.0, 'well': 1.0}
Word element => {'lot': 1.0, 'a': 1.0, 'will': 1.0, 'dryer': 1.0, 'the': 1.0, 'shrink': 1.0, 'in': 1.0, 'put': 1.0, 'i': 1.0, 'do': 1.0, 'they': 1.0, 'these': 1.0, 'but': 1.0, 'diapers': 1.0, 'love': 1.0, 'great': 1.0, 'not': 1.0, 'work': 1.0, 'super': 1.0, 'cute': 1.0}
Word element => {'s': 1.0, 'perfect': 1.0, 'be': 1.0, '4': 1.0, 'were': 1.0, 'waterproof': 2.0, 'actually': 1.0, 'cover': 1.0, 'will': 1.0, 'want': 1.0, 'if': 2.0, 'wasn': 1.0, 'apparently': 1.0, 'gogreen': 1.0, 'double': 1.0, 'essence': 1.0, 'before': 1.0, 'have': 2.0, 'any': 1.0, 'has': 2.0, 'through': 1.0, 'soaked': 1.0, 'completely': 1.0, 'outside': 1.0, 'legs': 1.0, 'use': 1.0, 'her': 1.0, 'down': 1.0, 'dripping': 1.0, 'pee': 1.0, 'up': 1.0, 'later': 1.0, 'minutes': 1.0, 'not': 2.0, 'for': 1.0, 'product': 1.0, 'how': 1.0, 'this': 5.0, 'a': 5.0, 'gussets': 1.0, 'like': 1.0, 'on': 3.0, 'put': 4.0, 'top': 1.0, 'three': 1.0, 'snaps': 1.0, 'off': 1.0, 'right': 1.0, 'is': 2.0, 'at': 1.0, 'look': 2.0, 'and': 7.0, 'had': 2.0, '20': 1.0, 'that': 6.0, 'washed': 1.0, 'colored': 1.0, 'super': 1.0, 'felt': 2.0, 'thought': 1.0, 'it': 12.0, 'as': 2.0, 'diaper': 9.0, 'insert': 2.0, 'of': 3.0, 'the': 15.0, 'happened': 1.0, 'hands': 1.0, 'but': 2.0, 'write': 1.0, 'babykicks': 1.0, 'purchase': 1.0, 'usually': 1.0, 'to': 5.0, 'all': 1.0, 'bat': 1.0, 'never': 2.0, 'ok': 1.0, 'saw': 1.0, 'premium': 1.0, 'about': 1.0, 'today': 1.0, 'so': 6.0, 'sturdy': 1.0, 'dual': 1.0, 'loved': 5.0, 'we': 1.0, 'reviews': 2.0, 'then': 1.0, 'diapers': 1.0, 'i': 19.0, 'different': 1.0, 'good': 1.0, 'say': 1.0, 'mail': 1.0, 'air': 1.0, 'now': 1.0, 'definitely': 1.0, 'something': 1.0, 'buy': 1.0, 'sure': 1.0, 'great': 3.0, 'excited': 1.0, 'website': 1.0, 'my': 6.0, 'in': 4.0, 'm': 1.0, 'reader': 1.0, 'lining': 1.0, 'hybrid': 1.0, 'review': 1.0, 'did': 1.0, 't': 1.0, 'fit': 1.0, 'ago': 1.0, 'along': 1.0, 'its': 1.0, 'research': 1.0, 'read': 2.0, 'mainly': 1.0, 'over': 2.0, 'bumgenius': 1.0, 'their': 1.0, '0': 1.0, 'liked': 1.0, 'used': 1.0, 'decided': 1.0, 'one': 1.0, 'comes': 1.0, 'these': 1.0, 'what': 1.0, 'when': 1.0, 'again': 2.0, 'came': 1.0, 'with': 5.0, 'would': 1.0, 'medium': 1.0, 'days': 1.0, 'joeybunz': 1.0, 'yet': 1.0, 'got': 3.0, 'dried': 1.0, 'daughter': 2.0, 'pul': 1.0, 'was': 1.0}
Word element => {'pul': 1.0, 'through': 1.0, 'makes': 1.0, 'poor': 1.0, 'time': 2.0, 'they': 5.0, 'snapping': 1.0, 'stash': 1.0, 'bulkiest': 1.0, 'that': 1.0, 'also': 3.0, 'itself': 1.0, 'in': 3.0, 'her': 1.0, 'which': 1.0, 'these': 1.0, 'the': 6.0, 'fit': 1.0, 'for': 1.0, 'daughter': 1.0, 're': 1.0, 'are': 3.0, 'leaks': 1.0, 'every': 1.0, 'really': 1.0, 'a': 3.0, 'even': 1.0, 'diapers': 1.0, 'my': 2.0, 'fact': 1.0, 'middle': 1.0, 'difficult': 1.0, 'not': 1.0, 'diaper': 1.0, 'leak': 2.0, 'of': 1.0, 'worse': 1.0, 'i': 1.0, 'have': 1.0, 'hard': 1.0, 'hercules': 1.0, 'with': 1.0, 'snaps': 1.0, 'unless': 1.0, 'you': 1.0, 'fun': 1.0, 'just': 1.0, 'screaming': 1.0, 'night': 1.0, 'baby': 1.0}
Word element => {'i': 1.0, 'leaking': 1.0, 'no': 1.0, 'snaps': 1.0, 'this': 1.0, 'gussets': 1.0, 'could': 1.0, 'wish': 1.0, 'diaper': 1.0, 'awesome': 2.0, 'fits': 1.0, 'helpful': 1.0, 'it': 1.0, 'perfectly': 1.0, 'afford': 1.0, 'is': 1.0, 'dual': 1.0, 'more': 1.0, 'are': 2.0, 'colored': 1.0}
Word element => {'regret': 1.0, 'bought': 1.0, 'i': 1.0, 'stitching': 1.0, 'moist': 1.0, 'layer': 1.0, 'pul': 1.0, 'as': 1.0, 'times': 1.0, 'of': 1.0, 'takes': 1.0, 'gussets': 2.0, 'also': 1.0, 'in': 1.0, 'for': 1.0, 'double': 2.0, 'because': 2.0, 'poop': 1.0, 'they': 1.0, 'gets': 2.0, 'underneath': 1.0, 'is': 1.0, '2': 1.0, 'diaper': 1.0, 'the': 5.0, 'are': 1.0, '3': 2.0, 'different': 1.0, 'fabrics': 1.0, 'long': 1.0, 'hell': 1.0, 'part': 1.0, 'main': 1.0, 'and': 3.0, 'this': 1.0, 'rinsing': 1.0, 'it': 2.0}
Word element => {'new': 1.0, 'several': 1.0, 'after': 1.0, 'fine': 1.0, 'just': 1.0, 'did': 1.0, 'works': 1.0, 'that': 1.0, 'setting': 1.0, 'don': 1.0, 'lot': 1.0, 'brand': 2.0, 'old': 1.0, 'year': 1.0, '2': 1.0, 'sewn': 1.0, 'the': 4.0, 'still': 1.0, 'washes': 1.0, 'under': 1.0, 'different': 1.0, 'snap': 1.0, 'legs': 1.0, 'leaks': 1.0, 'my': 2.0, 'one': 3.0, 'in': 2.0, 'diaper': 1.0, 'insert': 1.0, 't': 2.0, 'a': 3.0, 'might': 1.0, 'this': 3.0, 'looks': 1.0, 'it': 2.0, 'have': 2.0, 'average': 1.0, 'tons': 1.0, 'little': 1.0, 'favorite': 1.0, 'other': 1.0, 'prevent': 1.0, 'of': 4.0, 'diapers': 2.0, 'doesn': 1.0, 'an': 1.0, 'snapped': 1.0, 'brands': 1.0, 'i': 1.0, 'him': 1.0, 'be': 1.0, 'liner': 1.0, 'wiggly': 1.0, 'gussets': 1.0, 'which': 1.0, 'budge': 1.0, 'means': 1.0, 'double': 1.0, 'is': 3.0, 'around': 1.0, 'for': 1.0, 'love': 1.0, 'fit': 1.0, 'baby': 1.0, 'and': 3.0, 'pretty': 1.0, 'spot': 1.0, 'on': 1.0, 'guy': 1.0, 'size': 2.0}
Word element => {'prints': 1.0, 'are': 3.0, 'my': 3.0, 'they': 2.0, 'in': 2.0, 'had': 1.0, 'haven': 1.0, 'favorite': 1.0, 'good': 1.0, 'diapers': 2.0, 'but': 2.0, 'stash': 1.0, 'issues': 1.0, 'a': 1.0, 'aren': 1.0, 'little': 1.0, 'the': 1.0, 'these': 1.0, 't': 2.0, 'bulky': 1.0, 'adorable': 1.0, 'opinion': 1.0, 'any': 1.0, 'and': 1.0, 'leakage': 1.0}
Word element => {'too': 1.0, 'a': 1.0, 'well': 1.0, 'also': 1.0, 'i': 1.0, 'wearing': 1.0, 'fit': 1.0, 'ten': 1.0, 'my': 1.0, 'months': 1.0, 'been': 1.0, 'gogreen': 1.0, 'shipping': 1.0, 'very': 1.0, 'son': 1.0, 'they': 1.0, 'has': 1.0, 'for': 2.0, 'love': 2.0, 'them': 1.0, 'don': 1.0, 'fast': 1.0, 'while': 1.0, 'unstuff': 1.0, 'how': 1.0, 'easy': 1.0, 'now': 1.0, 'to': 2.0, 'stuff': 1.0, 'that': 1.0, 'you': 1.0, 'and': 2.0, 't': 1.0, 'have': 1.0}
Word element => {'colorsnap': 1.0, 'champs': 1.0, 'show': 1.0, 'if': 1.0, 'photos': 1.0, 'post': 1.0, 'll': 1.0, 'absolutely': 1.0, 'legs': 2.0, 'snap': 1.0, 'very': 1.0, 'specifically': 1.0, 'lb': 1.0, '6': 1.0, 'tiny': 1.0, 'a': 4.0, 'difference': 1.0, 'we': 3.0, 's': 1.0, 't': 1.0, 'fit': 2.0, 'for': 3.0, 'ridiculous': 2.0, 'good': 1.0, 'her': 2.0, 'but': 2.0, 'so': 1.0, 'can': 2.0, 'thick': 1.0, 'own': 1.0, 'it': 3.0, 'baby': 2.0, 'she': 2.0, 'with': 1.0, 'on': 2.0, 'do': 1.0, 'put': 1.0, 'think': 1.0, 'bulky': 1.0, 'insert': 1.0, 'the': 9.0, 'they': 3.0, 'got': 1.0, 'bamboo': 1.0, 'diaper': 2.0, 'as': 1.0, '2': 1.0, 'bulkiest': 1.0, 'that': 2.0, 'really': 3.0, 'alvas': 1.0, 'gogreen': 1.0, 'said': 1.0, 'in': 3.0, '1': 1.0, 'say': 1.0, 'comfortable': 1.0, 'great': 1.0, 'probably': 1.0, 'and': 5.0, 'also': 2.0, 'down': 1.0, 've': 1.0, 'alva': 1.0, 'not': 2.0, 'some': 2.0, 'never': 1.0, 'diapers': 3.0, 'are': 5.0, 'colour': 1.0, 'these': 7.0, 'once': 1.0, 'looking': 1.0, 'when': 1.0, '11': 1.0, 'was': 1.0, 'pul': 1.0, 'lbs': 1.0, 'you': 1.0, 'nap': 1.0, 'recommend': 1.0, 'were': 1.0, 'looked': 1.0, 'our': 1.0, 'bulkiness': 1.0, 'leaked': 1.0, 'isn': 1.0, 'around': 1.0, 'obvious': 1.0, 'i': 4.0, 'air': 1.0, 'now': 1.0, 'sub': 1.0, 'price': 1.0, 'd': 1.0, '34': 2.0, 'always': 1.0, 'like': 1.0, 'or': 1.0, 'thinner': 1.0, 'hemp': 1.0, 'seemed': 1.0, 'sure': 1.0, 'people': 1.0, 'just': 1.0, 'snug': 1.0, 'is': 1.0, 'rebranded': 1.0}
Word element => {'part': 1.0, 'packn': 1.0, 'about': 1.0, 'so': 1.0, 'not': 1.0, 'still': 1.0, 'features': 1.0, 'best': 1.0, 'of': 1.0, 'out': 1.0, 'the': 3.0, 'thought': 1.0, 'use': 1.0, 'over': 1.0, 'nothing': 1.0, 'was': 1.0, 'comes': 1.0, 'when': 1.0, 'sure': 1.0, 'grandson': 1.0, 'he': 1.0, 'first': 1.0, 'one': 1.0, 'for': 2.0, 'we': 1.0, 'would': 1.0, 'turns': 1.0, 'a': 1.0, 'top': 1.0, 'new': 1.0, 'thing': 1.0, 'born': 1.0, 'thats': 1.0}
Word element => {'bummer': 1.0, 'for': 1.0, 'ordered': 1.0, 'describe': 1.0, 'these': 1.0, 'great': 1.0, 'the': 2.0, 'specifically': 1.0, 'warmers': 1.0, 'really': 1.0, 'land': 1.0, 'than': 1.0, 'leg': 1.0, 'as': 1.0, 's': 1.0, 'i': 3.0, 'like': 1.0, 'royal': 1.0, 'but': 2.0, 'blue': 1.0, 'color': 2.0, 're': 1.0, 'would': 1.0, 'rather': 1.0, 'bambino': 1.0, 'navy': 1.0, 'that': 1.0, 'besides': 1.0, 'they': 1.0}
Word element => {'pairs': 1.0, '3': 1.0, 'we': 1.0, 'house': 1.0, 'these': 1.0, 'more': 1.0, 'the': 1.0, 'are': 1.0, 'in': 1.0, 'for': 1.0, 'purchased': 1.0, 'much': 1.0, 'especially': 1.0, 'just': 1.0, 'perfect': 1.0, 'than': 1.0, 'newborns': 1.0, 'so': 1.0, 'easier': 1.0, 'pants': 1.0}
Word element => {'second': 1.0, 'shes': 1.0, 'says': 1.0, 'doctor': 1.0, 'her': 2.0, 'peeling': 1.0, 'if': 1.0, 'be': 1.0, 't': 1.0, 'month': 1.0, 'grow': 1.0, 'normal': 1.0, 'to': 2.0, 'room': 1.0, 'it': 1.0, 'skin': 1.0, 'with': 1.0, 'or': 1.0, 'until': 2.0, 'cause': 1.0, 'my': 1.0, 'probably': 1.0, 'perfectly': 1.0, 'and': 1.0, 'will': 1.0, '6lb': 1.0, 'she': 1.0, 'fit': 3.0, 'seem': 1.0, 's': 2.0, 'in': 1.0, 'also': 1.0, 'lbs': 1.0, '12': 1.0, 'they': 2.0, 'snugly': 1.0, 'alarmed': 1.0, 'so': 2.0, 'baby': 1.0, 'about': 1.0, 'don': 1.0}
Word element => {'and': 1.0, 'perfectly': 1.0, 'diapers': 1.0, 'comfortable': 1.0, 'them': 1.0, 'finds': 1.0, 'different': 1.0, 'purchased': 1.0, 'her': 1.0, 'long': 1.0, 'recommend': 1.0, 'last': 1.0, 'did': 1.0, 'nor': 1.0, 'strongly': 1.0, 'tightly': 1.0, 'hold': 2.0, 'would': 1.0, 'so': 1.0, 'complaining': 1.0, 's': 1.0, 'are': 1.0, 'my': 2.0, 'much': 1.0, 'why': 1.0, 'these': 2.0, 't': 1.0, 'highly': 1.0, 'about': 1.0, 'don': 1.0, 'completely': 1.0, 'understand': 1.0, 'they': 3.0, 'i': 4.0, 'product': 1.0, 'bought': 1.0, 'this': 1.0, 'skin': 1.0, 'snappis': 1.0, 'people': 1.0, 'type': 1.0, 'into': 1.0, 'when': 2.0, 'daughter': 2.0}
Word element => {'returning': 1.0, 'be': 1.0, 'to': 1.0, 'happen': 1.0, 'wont': 1.0, 'once': 1.0, 'and': 1.0, 'me': 2.0, 'fool': 1.0, 'for': 1.0, 'in': 1.0, 'my': 1.0, 'the': 1.0, 'again': 1.0, 'pic': 1.0, 'search': 1.0, 'up': 1.0, 'cant': 1.0, 'came': 1.0, 'you': 1.0, 'this': 1.0, 'it': 2.0, 'ordered': 1.0, 'i': 2.0, 'snappy': 1.0, 'small': 1.0, 'so': 1.0, 'tell': 1.0, 'is': 2.0, 'really': 1.0, 'will': 1.0, 'but': 1.0, 'because': 1.0, 'not': 1.0}
Word element => {'attach': 1.0, 'wrangling': 1.0, 'quite': 1.0, 'makes': 1.0, 'together': 1.0, 'diaper': 2.0, 'difficult': 1.0, 'son': 1.0, 'while': 1.0, 'from': 1.0, 'very': 1.0, 'so': 1.0, 'smell': 1.0, 'get': 2.0, 'put': 1.0, 'impressed': 1.0, 'and': 2.0, 'then': 1.0, 'of': 4.0, 'had': 1.0, 'smelled': 2.0, 'rid': 1.0, 'couple': 1.0, 'out': 1.0, 'baby': 1.0, 'them': 2.0, 'when': 2.0, 'm': 1.0, 'mothballs': 2.0, 'i': 3.0, 'removed': 1.0, 'my': 1.0, 'the': 5.0, 'leave': 1.0, 'is': 1.0, 'they': 2.0, 'attached': 1.0, 'fasteners': 2.0, 'package': 2.0, 'like': 1.0, 'trying': 2.0, 'room': 1.0, 'for': 1.0, 'one': 1.0, 's': 1.0, 'a': 4.0, 'since': 1.0, 'days': 1.0, 'not': 2.0, 'it': 2.0, 'are': 1.0, 'separately': 1.0, 'to': 4.0, 'all': 1.0, 'with': 1.0, 'piece': 1.0, 'detach': 1.0}
Word element => {'else': 1.0, 'for': 1.0, 'gift': 1.0, 'attracted': 1.0, 'a': 1.0, 'bright': 1.0, 'definitely': 1.0, 'high': 1.0, 'my': 1.0, 'and': 2.0, 'quality': 1.0, 'similar': 1.0, 'as': 1.0, 'is': 1.0, 'colorful': 1.0, 'this': 1.0, 'baby': 1.0, 'toy': 1.0, '6': 1.0, 'month': 1.0, 'someone': 1.0, 'or': 1.0, 'niece': 1.0, 's': 2.0, 'attention': 1.0, 'would': 1.0, 'old': 1.0, 'buy': 1.0, 'again': 1.0}
Word element => {'like': 1.0, 'faded': 1.0, 'pictured': 1.0, 'white': 1.0, 'lighter': 1.0, 'stored': 1.0, 'up': 1.0, 'extremely': 1.0, 'plastic': 1.0, 'day': 1.0, 'gross': 2.0, 'their': 1.0, 'bag': 1.0, 'mold': 1.0, 'inside': 2.0, 'point': 1.0, 'noticed': 1.0, 'used': 2.0, 'only': 2.0, 'anyone': 1.0, 'trying': 1.0, 'rough': 1.0, 'in': 2.0, 'recommend': 1.0, 'yellow': 2.0, 'was': 9.0, 'heavy': 1.0, 'and': 5.0, 'too': 1.0, 'nothing': 1.0, 'second': 3.0, 'broke': 1.0, 'been': 1.0, 'that': 2.0, 'damp': 1.0, 'theme': 1.0, 'month': 1.0, 'it': 10.0, 'choosing': 1.0, 'this': 4.0, 'fix': 1.0, 'while': 1.0, 'bags': 2.0, 'looked': 1.0, 'period': 1.0, 'my': 1.0, 'place': 1.0, 'the': 14.0, 'diaper': 1.0, 'got': 1.0, 'amazon': 1.0, 'use': 2.0, 'opening': 1.0, 'before': 2.0, 'online': 1.0, 'absolutely': 1.0, 'both': 1.0, 'for': 2.0, 'at': 1.0, 'to': 2.0, 'our': 1.0, 'as': 3.0, 'good': 1.0, 'cosmetically': 1.0, 'remained': 1.0, 'near': 1.0, 'until': 2.0, 'packaging': 1.0, 'of': 3.0, 'a': 5.0, 'we': 1.0, 'daughter': 2.0, 'return': 1.0, 'returned': 1.0, 'color': 3.0, 'matched': 1.0, 'one': 2.0, 'bought': 1.0, 'had': 4.0, 'normal': 1.0, 'time': 1.0, 'so': 1.0, 'amount': 1.0, 'chose': 1.0, 'after': 1.0, 'did': 1.0, 'not': 5.0, 'purple': 3.0, 'i': 12.0, 'otherwise': 1.0, 'would': 2.0, 'zipper': 1.0, 'have': 1.0, 'zippers': 1.0, 'on': 5.0}
Word element => {'to': 2.0, 'him': 1.0, 'helped': 1.0, 'has': 1.0, 'floor': 1.0, 'potty': 3.0, 'i': 2.0, 'the': 5.0, 'other': 1.0, 'so': 1.0, 'after': 1.0, 'at': 1.0, 'got': 1.0, 'sitting': 1.0, 'seats': 1.0, 'get': 1.0, 'getting': 1.0, 'and': 2.0, 'used': 1.0, 'low': 1.0, 'daycare': 1.0, 'were': 1.0, 'thought': 1.0, 'with': 1.0, 'it': 1.0, 'this': 1.0, 'he': 1.0, 'big': 2.0, 'on': 2.0, 'sees': 1.0, 'us': 1.0, 'too': 1.0, 'kids': 1.0}
Word element => {'hold': 1.0, 'cord': 1.0, 'a': 1.0, 'would': 1.0, 'bungee': 1.0, 'in': 1.0, 'or': 1.0, 'off': 1.0, 'use': 1.0, 'try': 1.0, 'toilet': 1.0, 'fall': 1.0, 'we': 1.0, 'an': 1.0, 'i': 1.0, 'thinks': 1.0, 'old': 1.0, 'elongated': 1.0, 'on': 2.0, 'to': 4.0, 'granddaughter': 1.0, 'now': 1.0, 'for': 1.0, 'my': 1.0, 'bought': 1.0, 'scared': 1.0, 'and': 1.0, 'because': 1.0, '3yr': 1.0, 'seat': 1.0, 'around': 1.0, 'slid': 1.0, 'have': 2.0, 'all': 1.0, 'this': 1.0, 'it': 3.0, 'she': 3.0, 's': 2.0, 'going': 1.0, 'too': 1.0}
Word element => {'before': 1.0, 'noting': 1.0, 'worth': 1.0, 'but': 1.0, 'used': 1.0, 'does': 1.0, 'will': 1.0, 'back': 1.0, 'price': 1.0, 'i': 2.0, 'this': 1.0, 'he': 1.0, 'very': 1.0, 'big': 1.0, 'and': 2.0, 'purchase': 1.0, 'my': 1.0, 'so': 2.0, 'more': 1.0, 'is': 2.0, '10': 1.0, 'only': 2.0, 'do': 1.0, 'considering': 1.0, 'gets': 1.0, 'affordable': 1.0, 'not': 2.0, 'old': 1.0, 'point': 1.0, 'love': 1.0, 'for': 1.0, 'it': 2.0, 'month': 1.0, 's': 1.0, 'a': 2.0, 'few': 1.0, 'help': 1.0, 'months': 1.0, 'the': 3.0, 'deal': 1.0, 'problem': 1.0, 'that': 1.0, 'wheels': 1.0, 'turn': 1.0, 'walker': 1.0, 'stuck': 1.0, 'you': 1.0, 'easily': 1.0, 'have': 1.0, 'to': 1.0, 'be': 1.0, 'him': 1.0, 'out': 1.0}
Word element => {'move': 1.0, 'easy': 1.0, 'carpet': 1.0, 'so': 1.0, 'my': 1.0, 'and': 2.0, 'son': 1.0, 'very': 1.0, 'took': 1.0, 'while': 1.0, 'walker': 1.0, 'does': 1.0, 'love': 1.0, 'floors': 1.0, 'him': 1.0, 'across': 1.0, 'a': 1.0, 'realize': 1.0, 'it': 1.0, 'this': 1.0, 'he': 1.0, 'stand': 1.0, 'rolls': 1.0, 'to': 3.0, 'had': 1.0}
Word element => {'satisfactory': 1.0, 'future': 1.0, 'in': 1.0, 'better': 1.0, 'it': 1.0, 'hope': 1.0, 'usable': 1.0, 'adjustment': 1.0, 'is': 1.0, 'would': 1.0, 'not': 1.0, 'you': 1.0, 'good': 1.0, 'enough': 1.0, 'got': 1.0, 'be': 4.0, 'to': 3.0, 'the': 1.0, 'adjusted': 1.0, 'more': 3.0}
Word element => {'carpet': 1.0, 'on': 1.0, 'sure': 1.0, 'not': 1.0, 'to': 1.0, 'the': 1.0, 'my': 2.0, 'while': 1.0, 'safe': 1.0, 'i': 1.0, 'm': 1.0, 'when': 1.0, 'daughter': 1.0, 'gives': 1.0, 'keeps': 1.0, 'around': 1.0, 'works': 1.0, 'occupied': 1.0, 'her': 1.0, 'if': 1.0, 'move': 1.0, 'is': 1.0, 'hardwood': 1.0, 'it': 1.0, 'first': 1.0, 'only': 1.0, 'product': 1.0, 'ability': 1.0, 'floor': 1.0, 'hence': 1.0}
Word element => {'lower': 1.0, 'a': 1.0, 'go': 1.0, 'could': 1.0, 'if': 1.0, 'helpful': 1.0, 'would': 1.0, 'be': 2.0, 'able': 1.0, 'to': 2.0, 'granddaughter': 1.0, 'for': 1.0, 'also': 1.0, 'in': 1.0, 'take': 1.0, 'down': 1.0, 'long': 1.0, 't': 1.0, 'my': 1.0, 'unfortunately': 1.0, 'little': 1.0, 'didn': 1.0, 'it': 7.0, 'walk': 1.0, 'when': 2.0, 'folded': 1.0, 'pops': 1.0, 'back': 2.0, 'open': 1.0, 's': 1.0, 'you': 1.0, 'up': 1.0, 'set': 1.0}
Word element => {'trying': 1.0, 'collapse': 1.0, 'make': 1.0, 'in': 1.0, 'though': 1.0, 'assmble': 1.0, 'toys': 1.0, 'struggle': 1.0, 'i': 4.0, 'when': 1.0, 'am': 1.0, 'walker': 1.0, 's': 1.0, 'a': 3.0, 'bit': 1.0, 'time': 1.0, 'it': 3.0, 'this': 1.0, 'loud': 1.0, 'giver': 1.0, 'seeking': 1.0, 'not': 1.0, 'part': 1.0, 'upgraded': 1.0, 'was': 1.0, 'to': 3.0, 'model': 1.0, 'easy': 2.0, 'care': 1.0, 'are': 1.0, 'use': 1.0, 'more': 1.0, 'is': 1.0, 'limited': 1.0, 'clean': 1.0, 'child': 1.0, 'the': 2.0, 'pretty': 1.0, 'removable': 1.0, 'music': 1.0, 'if': 1.0, 'an': 1.0, 'own': 1.0, 'and': 2.0, 'probably': 1.0, 'obnoxious': 1.0, 'were': 1.0, 'for': 2.0, 'my': 1.0, 'would': 1.0, 'spend': 1.0}
Word element => {'is': 1.0, 'other': 1.0, 'normal': 1.0, 'are': 1.0, 'options': 1.0, 'see': 1.0, 'morning': 1.0, 'in': 1.0, 'calling': 1.0, 'be': 1.0, 'allow': 1.0, 'that': 2.0, 'toy': 1.0, 'months': 1.0, 'will': 1.0, 'batteries': 1.0, 'sounds': 1.0, 'out': 1.0, 'of': 2.0, 'the': 7.0, 'replace': 1.0, 'only': 1.0, 'n': 1.0, 'this': 1.0, 'it': 1.0, 'stopped': 1.0, 'over': 1.0, 'child': 1.0, 'sound': 1.0, 'others': 1.0, 'i': 2.0, 'battery': 1.0, 'after': 1.0, 'for': 1.0, 'lights': 2.0, 'walker': 2.0, 'what': 1.0, 'purchased': 1.0, 'use': 2.0, 'than': 1.0, 'find': 1.0, 'because': 1.0, 'and': 3.0, 'replaceable': 1.0, 'light': 1.0, 'to': 3.0, 'as': 1.0, 'f': 1.0, 'company': 1.0, 'my': 2.0, 'daughter': 1.0, '34': 2.0, 'm': 1.0, 'reason': 1.0, 'wold': 1.0, 'goes': 1.0, 'doesn': 1.0, 'was': 1.0, 'daycare': 1.0, 'working': 1.0, 'you': 1.0, '2': 1.0, 'can': 1.0, 'main': 1.0, 'who': 1.0, 'make': 1.0, 't': 2.0, 's': 1.0, 'a': 2.0}
Word element => {'is': 1.0, 'made': 1.0, 'well': 1.0, 'seems': 1.0, 'am': 1.0, 'around': 2.0, 'running': 1.0, 'color': 1.0, 'his': 1.0, 'the': 2.0, 'comfortable': 1.0, 'yet': 1.0, 'be': 1.0, 'll': 1.0, 'variety': 1.0, 'look': 1.0, 'to': 1.0, 'month': 1.0, '5': 1.0, 'quite': 1.0, 'up': 1.0, 'like': 1.0, 'soon': 1.0, 'sure': 1.0, 'grandson': 1.0, 'our': 1.0, 'feet': 1.0, 'and': 3.0, 'do': 1.0, 'not': 1.0, 'old': 1.0, 'touch': 1.0, 'but': 1.0, 'he': 3.0, 'adults': 1.0, 'likes': 2.0, 'sit': 1.0}
Word element => {'u': 1.0, 'up': 2.0, 'pops': 1.0, 'folds': 1.0, 'how': 1.0, 'love': 1.0, 'i': 1.0, 'toe': 1.0, 'back': 1.0, 'tippy': 1.0, 'down': 1.0, 'her': 1.0, 'runs': 1.0, 'decent': 1.0, 'carpet': 1.0, 'easily': 1.0, 'thin': 1.0, 'baby': 2.0, 'when': 1.0, 'by': 1.0, 'and': 3.0, 'in': 2.0, 'floors': 1.0, 'well': 1.0, 'good': 1.0, 'has': 1.0, 'some': 1.0, 'is': 1.0, 'looks': 1.0, 'it': 4.0, 'to': 1.0, 'lights': 1.0, 'pick': 1.0, 'likes': 1.0, 'able': 1.0, 'music': 1.0, 'move': 1.0, 'stepping': 1.0}
Word element => {'o': 1.0, 'than': 1.0, 'better': 1.0, 'holds': 1.0, 'hope': 1.0, 'do': 1.0, 'as': 2.0, 'last': 1.0, 'more': 1.0, 'bit': 1.0, 'activity': 1.0, '1': 1.0, '3': 1.0, 'playstation': 1.0, 'buying': 1.0, 'ended': 1.0, 'walkers': 1.0, 'their': 1.0, 'most': 1.0, 'apparently': 1.0, '1st': 1.0, 'safety': 1.0, 'note': 1.0, 'loved': 1.0, 'daughter': 1.0, 'my': 2.0, 'and': 2.0, 'long': 1.0, 'on': 3.0, 'your': 1.0, 'this': 7.0, 'out': 1.0, 'lasted': 1.0, 'you': 2.0, 'least': 1.0, 'children': 1.0, 'happened': 1.0, 'three': 1.0, 'who': 1.0, 'batteries': 1.0, 'item': 1.0, 'sounds': 1.0, 'p': 1.0, 'center': 1.0, 'allow': 1.0, 'like': 1.0, 'cannot': 1.0, 'up': 2.0, 'change': 1.0, 'music': 1.0, 'lil': 1.0, 'felt': 1.0, 'just': 4.0, 'light': 1.0, 'doesn': 1.0, 'refund': 1.0, 'cost': 1.0, 't': 3.0, 'a': 6.0, 's': 5.0, 'will': 1.0, 'could': 1.0, 'for': 1.0, 'bought': 1.0, 'usually': 1.0, 'its': 1.0, 'to': 5.0, 'raving': 1.0, 'wrong': 1.0, 'needed': 1.0, 'i': 8.0, 'feature': 2.0, 'at': 1.0, 'is': 2.0, 'that': 3.0, 'makes': 1.0, 'about': 1.0, 'battery': 2.0, 'let': 1.0, 'no': 3.0, 'don': 2.0, 'products': 1.0, 'product': 2.0, 'child': 2.0, 'baby': 1.0, 'dies': 1.0, 'walker': 2.0, 'ii': 1.0, 'with': 1.0, 'manual': 1.0, 'does': 1.0, 'ren': 2.0, 'weeks': 1.0, '34': 6.0, 'problem': 1.0, 'it': 8.0, 'thought': 1.0, 'when': 1.0, 'what': 1.0, 'user': 1.0, 'm': 1.0, 'in': 3.0, 'reviews': 3.0, 'died': 1.0, 'fine': 1.0, 'seriously': 1.0, 'say': 1.0, 'replaced': 1.0, 'but': 3.0, 'write': 1.0, 'print': 1.0, 'once': 1.0, 'be': 1.0, 'glad': 1.0, 'before': 1.0, 'rip': 1.0, 'of': 1.0, 'the': 7.0, 'longer': 2.0, 'return': 1.0, 'delta': 1.0, 'amazon': 1.0, 'great': 1.0, 'functions': 1.0, 'enjoy': 1.0, 'if': 1.0, 'want': 1.0, 'something': 1.0, 'buy': 1.0, 'lights': 1.0, 'even': 1.0, 'marketed': 1.0, 'until': 1.0, 'off': 1.0, 'based': 1.0, 'side': 1.0}
Word element => {'and': 1.0, 'together': 1.0, 'put': 1.0, 'railing': 1.0, 'of': 1.0, 'out': 1.0, 'to': 1.0, 'comes': 1.0, 'leg': 1.0, 'on': 1.0, 'having': 1.0, 'is': 1.0, 'when': 1.0, 'daughter': 1.0, 'walking': 1.0, 'open': 1.0, 'very': 2.0, 'only': 1.0, 'can': 1.0, 'my': 1.0, 'great': 1.0, 'the': 2.0, 'so': 1.0, 'problem': 1.0, 'am': 1.0, 'focus': 1.0, 'simple': 2.0, 'both': 1.0, 'boys': 1.0, 'or': 1.0, 'i': 1.0, 'for': 1.0, 'one': 1.0, 'needed': 1.0, 'girls': 1.0}
Word element => {'do': 1.0, 's': 1.0, 'on': 1.0, 'to': 1.0, 'music': 1.0, 'most': 1.0, 'which': 1.0, 'in': 1.0, 'after': 1.0, 'my': 1.0, 'due': 1.0, 'the': 1.0, 'it': 1.0, 'wheel': 1.0, 'days': 1.0, 'a': 1.0, 'steering': 1.0, 'drooling': 1.0, 'working': 1.0, 'will': 1.0, 'baby': 2.0, 'stopped': 1.0, 'few': 1.0}
Word element => {'there': 1.0, 'hang': 1.0, 'getting': 1.0, 'us': 1.0, 'works': 1.0, 'purchaselove': 1.0, 'week': 1.0, 'quality': 1.0, 'snap': 1.0, '5': 1.0, 'mins': 1.0, 'away': 1.0, 'store': 1.0, 'more': 2.0, 'is': 4.0, 'baby': 5.0, 'floor': 3.0, 'couldn': 1.0, 'move': 1.0, 'or': 1.0, '29': 1.0, 'goes': 1.0, 's': 4.0, 'added': 1.0, 'a': 8.0, 't': 1.0, 'easy': 3.0, 'bit': 1.0, 'and': 11.0, 'on': 5.0, '3': 1.0, 'better': 1.0, 'think': 2.0, 'seems': 1.0, 'yes': 1.0, 'moving': 1.0, 'we': 1.0, 'reviews': 1.0, 'use': 2.0, 'front': 1.0, 'are': 1.0, 'working': 1.0, 'thin': 2.0, 'now': 3.0, 'boy': 1.0, 'weeks': 1.0, 'quite': 1.0, 'that': 4.0, 'looking': 1.0, 'backward': 1.0, 'so': 1.0, 'can': 3.0, 'hardwood': 1.0, 'but': 2.0, 'tile': 2.0, '2': 1.0, 'note': 1.0, 'saying': 1.0, 'tall': 1.0, 'walker': 2.0, 'for': 4.0, 'happy': 2.0, 'too': 3.0, 'one': 1.0, 'months': 1.0, 'how': 1.0, 'our': 1.0, 'all': 1.0, 'carpet': 4.0, 'both': 2.0, 'kicking': 1.0, 'house': 2.0, 'seats': 1.0, 'faster': 1.0, 'it': 8.0, 'with': 3.0, 'saw': 1.0, 'touch': 1.0, 'of': 2.0, 'the': 8.0, 'big': 1.0, 'basically': 1.0, 'only': 2.0, 'issue': 1.0, 'good': 3.0, 'which': 1.0, 'temporary': 1.0, 'me': 1.0, 'my': 2.0, 'may': 1.0, 'true': 1.0, 'right': 2.0, '7': 1.0, 'inches': 1.0, 'very': 2.0, 'around': 3.0, 'his': 1.0, 'out': 1.0, 'toe': 1.0, 'well': 1.0, 'i': 5.0, 'feet': 1.0, 'assemble': 1.0, 'than': 1.0, 'way': 1.0, 've': 1.0, 'down': 1.0, 'base': 1.0, 'took': 1.0, 'even': 2.0, 'shows': 1.0, 'in': 3.0, 'been': 1.0, 'instruction': 1.0, 'love': 1.0, 'fold': 1.0, 'yet': 1.0, 'he': 2.0, 'about': 1.0, 'walk': 1.0, 'tip': 1.0, 'as': 1.0, 'lowest': 1.0, 'be': 2.0, 'setting': 1.0, 'tray': 1.0, 'after': 2.0, 'this': 2.0, 'few': 1.0, 'able': 1.0, 'to': 7.0, 'high': 1.0, 'straight': 1.0}
Word element => {'even': 1.0, 'have': 1.0, 'can': 1.0, 'but': 2.0, 'put': 1.0, 'c': 1.0, 'likes': 1.0, 'percentile': 1.0, 'baby': 1.0, 'too': 1.0, 'tall': 1.0, 'at': 1.0, 'who': 1.0, 'lights': 1.0, 'for': 2.0, 'model': 1.0, 'no': 1.0, 'faces': 1.0, 't': 1.0, 'a': 1.0, 's': 1.0, 'see': 1.0, '80th': 1.0, 'this': 2.0, 'light': 1.0, 'to': 2.0, '4': 1.0, 'i': 1.0, 'height': 2.0, 'shortest': 1.0, 'is': 1.0, 'pillow': 1.0, 'one': 1.0, 'bought': 1.0, 'still': 1.0, 'under': 1.0, 'my': 1.0, 'b': 1.0, 'her': 1.0, 'feet': 1.0, 'adjusted': 1.0, 'also': 1.0, 'the': 2.0, 'away': 1.0, 'me': 1.0, 'from': 1.0, 'which': 1.0, 'old': 1.0, 'makes': 1.0, 'sense': 1.0, 'it': 1.0, 'month': 1.0, 'she': 2.0}
Word element => {'quickly': 1.0, 'too': 1.0, 'but': 1.0, 'in': 1.0, 'walk': 1.0, 'a': 1.0, 'around': 1.0, 'seat': 1.0, 'the': 2.0, 'is': 1.0, 'box': 1.0, '34': 2.0, 'it': 1.0, 'great': 1.0, 'broke': 1.0, 'little': 1.0, 'baby': 1.0, 'because': 1.0, 'able': 1.0, 'music': 1.0, 'to': 1.0}
Word element => {'item': 1.0, 'well': 1.0, 'as': 2.0, 'brother': 1.0, 'her': 1.0, 'eat': 1.0, 'after': 1.0, 'freedom': 1.0, 'great': 1.0, 'the': 1.0, 'one': 1.0, 'little': 1.0, 'has': 1.0, 'time': 1.0, 'on': 2.0, 'activity': 1.0, 'and': 3.0, 'in': 1.0, 'jumpers': 1.0, 'saved': 1.0, 'interested': 1.0, 'not': 1.0, 'swings': 1.0, 'to': 1.0, 'was': 1.0, 'walker': 2.0, 'loves': 1.0, 'or': 2.0, 'device': 1.0, 'found': 1.0, 'roam': 1.0, 'any': 1.0, 'baby': 1.0, 'our': 3.0, 'of': 1.0, 'helping': 1.0, 'play': 1.0, 'lives': 1.0, 'we': 1.0, 'amazon': 1.0, 'sister': 1.0, 'this': 2.0, 'it': 1.0}
Word element => {'loves': 1.0, 'baby': 1.0, 'my': 1.0, 'if': 1.0, 'minutes': 1.0, '5': 1.0, 'took': 1.0, 'it': 2.0, 'is': 1.0, 'that': 1.0, 'what': 1.0, 'easy': 1.0, 'exactly': 1.0, 'to': 1.0, 'like': 1.0, 'only': 1.0, 'very': 1.0, 'described': 1.0, 'put': 1.0, 'was': 1.0, 'together': 1.0}
Word element => {'mine': 1.0, 'babies': 1.0, 'neither': 1.0, 'sound': 1.0, 'but': 3.0, 'can': 1.0, 'chair': 1.0, 'instead': 1.0, 'use': 1.0, 'her': 3.0, 'returning': 1.0, 'assume': 1.0, 'height': 1.0, 'for': 2.0, 'age': 1.0, '50': 1.0, 'and': 4.0, 'muffle': 1.0, 'adhesive': 1.0, 'months': 1.0, 'used': 1.0, 'decided': 1.0, 'one': 1.0, 'side': 1.0, 'my': 2.0, 'of': 1.0, 'the': 14.0, 'place': 2.0, 'food': 1.0, 'possibly': 1.0, 'not': 1.0, 'settled': 1.0, 'she': 2.0, '9': 1.0, 'it': 4.0, 'frustrated': 1.0, 'received': 1.0, 'as': 1.0, 'to': 2.0, 'very': 1.0, 'this': 1.0, 'bothered': 1.0, 'first': 1.0, 'walker': 1.0, 'leaned': 1.0, 'ground': 2.0, 'only': 1.0, 'was': 2.0, 'would': 1.0, 'in': 3.0, 'seat': 1.0, 'm': 1.0, 'toes': 1.0, 'happened': 1.0, 'loud': 1.0, 'you': 2.0, 'daughter': 2.0, 'does': 1.0, 'kitchen': 1.0, 'making': 1.0, 'concidered': 1.0, 's': 3.0, 't': 1.0, 'hole': 1.0, 'touch': 2.0, 'if': 2.0, 'same': 1.0, 'glad': 1.0, 'kept': 1.0, 'after': 1.0, 'about': 2.0, 'three': 1.0, 'who': 1.0, 'days': 1.0, 'because': 2.0, 'that': 2.0, 'loves': 1.0, 'when': 2.0, 'what': 1.0, 'stretched': 1.0, 'attached': 1.0, 'i': 7.0, 'feet': 1.0, 'now': 1.0, 'obnoxiously': 1.0, 'isn': 1.0, 'particular': 1.0, 'with': 2.0, 'prepping': 1.0, 'toys': 2.0, 'is': 1.0, 'noise': 1.0, 'amused': 1.0, 'produce': 1.0, 'an': 1.0, 'tune': 1.0, 'strong': 1.0, 'cousin': 1.0, 'on': 1.0, 'tape': 2.0, 'over': 1.0, 'have': 1.0, 'speaker': 1.0, 'a': 2.0, 'small': 1.0, 'bottom': 1.0}
Word element => {'replaced': 1.0, 'be': 1.0, 'can': 1.0, 'of': 1.0, 'top': 1.0, 'oh': 1.0, 'work': 1.0, 'and': 4.0, 'big': 1.0, 'very': 1.0, 'received': 1.0, 'until': 1.0, 'on': 2.0, 'walker': 1.0, 'disappointment': 1.0, 'left': 1.0, 'realized': 1.0, 'this': 1.0, 'excited': 1.0, 'it': 1.0, 'about': 1.0, 'battery': 1.0, 'i': 2.0, 'that': 2.0, 't': 2.0, 'the': 3.0, 'lights': 1.0, 'was': 1.0, 'switch': 1.0, 'had': 1.0, 'sound': 1.0, 'in': 1.0, 'didn': 1.0, 'been': 1.0, 'position': 1.0}
Word element => {'it': 1.0, 'my': 1.0, 'entertainment': 1.0, 'daughter': 1.0, 'for': 2.0, 'to': 1.0, 'much': 1.0, 'its': 2.0, 'didnt': 1.0, 'colors': 1.0, 'a': 1.0, 'do': 1.0, 'babies': 1.0, 'nice': 1.0, 'not': 1.0, 'walker': 1.0, 'like': 1.0, 'and': 1.0, 'very': 1.0, 'pretty': 1.0, 'so': 1.0, 'just': 1.0, 'basic': 1.0}
Word element => {'making': 1.0, 'in': 1.0, '00': 1.0, 'at': 1.0, 'annoying': 1.0, 'for': 1.0, 'which': 1.0, 'use': 1.0, 'm': 1.0, 'when': 1.0, 'yogurt': 1.0, 'but': 1.0, 'i': 3.0, 'struggle': 1.0, 'them': 1.0, 'morning': 1.0, '7': 1.0, 'leakproof': 1.0, 'cute': 1.0, 'are': 1.0, 'lids': 1.0, 'totally': 1.0, 'on': 1.0, 'the': 2.0, 'these': 1.0, 'applesauce': 1.0, 'sometimes': 1.0, 'lunch': 1.0, 'is': 1.0, 'really': 1.0, 'have': 1.0, 'to': 2.0, 'and': 2.0, 'get': 1.0}
Word element => {'bin': 1.0, 'labs': 1.0, 'in': 1.0, 'scenario': 1.0, 'into': 1.0, 'that': 1.0, 'tried': 1.0, 'stuck': 1.0, 'it': 1.0, 'irreparably': 1.0, 'containers': 1.0, 'move': 1.0, 'during': 1.0, 'couldn': 1.0, 'riddance': 1.0, 'know': 1.0, 'got': 1.0, 'wouldn': 1.0, 'other': 2.0, 'but': 2.0, 'quality': 1.0, 'an': 1.0, 'high': 1.0, 'test': 1.0, 'seem': 1.0, 'designs': 1.0, 'you': 1.0, 'the': 8.0, 'darn': 1.0, 'are': 2.0, 'bought': 1.0, 'be': 1.0, 'dolls': 1.0, 'sugarbooger': 1.0, 'since': 1.0, 'adorable': 1.0, 'and': 3.0, 'get': 2.0, 'all': 1.0, 'any': 1.0, 'actual': 1.0, 'as': 1.0, 'to': 2.0, 'your': 1.0, 'put': 1.0, 'on': 3.0, 'container': 1.0, 'inside': 1.0, 'marushka': 1.0, 'large': 1.0, 'just': 1.0, 'not': 2.0, 'a': 1.0, 't': 4.0, 'we': 1.0, 'could': 2.0, 'off': 1.0, 'they': 2.0, 'weren': 1.0, 'lids': 3.0, 'much': 1.0, 'each': 2.0, 'easier': 1.0, 'threw': 1.0, 'materials': 1.0, 'don': 1.0, 'nest': 1.0, 'interchangeable': 1.0, 'adult': 1.0, 'sizes': 1.0, 'maybe': 1.0, 'use': 1.0, 'i': 4.0, '4': 1.0, 'two': 2.0, 'good': 1.0, 'recycling': 1.0, 'different': 1.0}
Word element => {'recommend': 1.0, 'would': 1.0, 'lovely': 1.0, 'help': 1.0, 'to': 1.0, 'pricey': 1.0, 'designs': 1.0, 'with': 1.0, 'packing': 1.0, '40': 1.0, 'lunches': 1.0, 'they': 2.0, 'while': 1.0, 'whimsical': 1.0, 'portion': 1.0, 'bought': 1.0, 'buy': 1.0, 'i': 1.0, 'im': 1.0, 'when': 1.0, 'again': 1.0, 'are': 3.0, 'made': 1.0, 'control': 1.0, 'these': 1.0, 'the': 1.0, 'well': 1.0, 'me': 1.0, 'and': 2.0}
Word element => {'great': 1.0, 'they': 1.0, 'months': 1.0, 'few': 1.0, 'a': 1.0, 'them': 1.0, 'her': 1.0, 'with': 1.0, 'to': 1.0, 'there': 1.0, 'had': 1.0, 'for': 2.0, 'are': 2.0, 'my': 1.0, 'i': 1.0, 'daughters': 1.0, 'daycare': 1.0, 'and': 2.0, 'foods': 1.0, 'finger': 1.0, 'send': 1.0, 'perfect': 1.0, 'snacks': 1.0}
Word element => {'overall': 1.0, 'is': 1.0, 'between': 1.0, 'switching': 1.0, 'ordered': 1.0, 'other': 1.0, 'the': 2.0, 'off': 1.0, 'until': 1.0, 'very': 1.0, 'day': 1.0, 'product': 1.0, 'be': 3.0, 'expected': 1.0, 'to': 1.0, 'was': 3.0, 'than': 1.0, 'all': 1.0, 'an': 1.0, 'will': 2.0, 'least': 1.0, 'bigger': 1.0, 'lot': 1.0, 'well': 1.0, 'a': 2.0, 'one': 1.0, 'using': 1.0, 'it': 4.0, 'this': 1.0, 'that': 1.0, 'nice': 2.0, 'two': 1.0, 'at': 2.0, 'solid': 1.0, 'suprise': 1.0, 'get': 1.0, 'and': 1.0, 'didnt': 1.0, 'then': 1.0, 'every': 1.0, 'feel': 1.0, 'i': 5.0, 'cheap': 1.0}
Word element => {'highly': 1.0, 'again': 1.0, 'would': 2.0, 'problem': 1.0, 'be': 1.0, 'moisture': 1.0, 'little': 1.0, 'so': 1.0, 'drops': 1.0, 'lunches': 1.0, 'few': 1.0, 'a': 3.0, 'food': 1.0, 'but': 1.0, 'that': 1.0, 'although': 1.0, 'water': 2.0, 'half': 1.0, 'vigorously': 1.0, 'buy': 1.0, 'close': 1.0, 'the': 2.0, 'older': 1.0, 'only': 2.0, 'it': 5.0, 'children': 1.0, 'not': 3.0, 'three': 1.0, 'toddlers': 1.0, 'school': 1.0, 'shook': 1.0, 'noted': 1.0, 'is': 4.0, 'and': 4.0, 'cute': 1.0, 'easy': 1.0, 'young': 1.0, 'snacks': 1.0, 'product': 1.0, 'for': 3.0, 'directions': 1.0, 'should': 1.0, 'open': 1.0, 'container': 2.0, 'recommend': 1.0, 'intended': 1.0, 'sections': 1.0, 'then': 1.0, 'liquids': 1.0, 'i': 3.0, 'on': 1.0, 'put': 1.0, 'turning': 1.0, 'in': 3.0, 'to': 1.0, 'all': 2.0, 'about': 1.0, 'this': 3.0, 'full': 1.0, 'secured': 1.0, 'lid': 1.0, 'while': 1.0, 'some': 1.0, 'did': 1.0, 'leak': 1.0, 'out': 1.0}
Word element => {'a': 1.0, 'about': 1.0, 'be': 1.0, 'washing': 1.0, 'just': 1.0, 'design': 1.0, 'smell': 1.0, 'no': 1.0, 'that': 1.0, 'do': 1.0, 'and': 1.0, 'need': 1.0, 'foods': 1.0, 'to': 1.0, 'runny': 1.0, 'using': 1.0, 'love': 1.0, 'i': 1.0, 'it': 3.0, 'this': 1.0, 'scratch': 1.0, 'the': 2.0, 'containers': 1.0, 'is': 1.0, 'perfect': 1.0, 'plastic': 1.0, 'size': 1.0, 'but': 1.0, 'will': 3.0, 'leak': 1.0, 'careful': 1.0, 'everything': 1.0, 'between': 1.0, 'when': 1.0, 'scrubby': 1.0, 'compartments': 1.0, 'if': 1.0, 'does': 1.0, 'tipped': 1.0, 'most': 1.0}
Word element => {'picnics': 1.0, 'kept': 1.0, 'lunches': 1.0, 've': 1.0, 'would': 1.0, 'were': 1.0, 'if': 1.0, 'or': 1.0, 'waterbottle': 1.0, 'room': 1.0, 'no': 1.0, 'there': 1.0, 'lunch': 2.0, 'is': 6.0, 'old': 1.0, 'school': 1.0, 'big': 2.0, 'when': 1.0, 'container': 1.0, 'inside': 2.0, 'placed': 1.0, 'cute': 1.0, 'too': 1.0, 'and': 3.0, 'perfect': 1.0, 'this': 2.0, 'it': 5.0, 'design': 1.0, 'for': 5.0, 'smaller': 1.0, '4th': 1.0, 'divided': 1.0, 'a': 2.0, 's': 1.0, 'else': 1.0, '9': 1.0, 'the': 5.0, 'but': 2.0, '2': 1.0, 'my': 1.0, 'standard': 1.0, 'sized': 1.0, 'yr': 1.0, 'made': 1.0, 'lunchbag': 1.0, 'partitions': 1.0, '3': 1.0, 'compartment': 1.0, 'well': 1.0, 'has': 1.0, 'half': 2.0, 'of': 1.0, 'anyway': 1.0, 'lunchbox': 2.0, 'up': 1.0, 'further': 1.0, 'been': 1.0, 'into': 1.0, 'grader': 1.0, 'her': 1.0, 'anything': 1.0, 'other': 1.0, 'fills': 1.0, 'bought': 1.0, 'entire': 1.0, 'bag': 1.0}
Word element => {'received': 1.0, 'back': 1.0, 'sent': 1.0, 'rectangle': 1.0, 'best': 1.0, 'quality': 1.0, 'trays': 1.0, 'makes': 1.0, 'gerber': 1.0, 'that': 1.0, 'box': 1.0, 'are': 1.0, 'zip': 1.0, 'rectangular': 1.0, 'soon': 1.0, 'bet': 1.0, 'and': 2.0, 'gap': 1.0, 'containers': 1.0, 'there': 1.0, 'large': 1.0, 'a': 4.0, 's': 1.0, 'wall': 1.0, 'you': 1.0, 'fruit': 3.0, 'with': 2.0, 'drippings': 1.0, 'it': 3.0, 'ziploc': 1.0, 'be': 2.0, 'dividing': 1.0, 'picture': 1.0, 'is': 3.0, 'seals': 1.0, 'lunch': 3.0, 'son': 1.0, 'between': 1.0, 'means': 1.0, 'assumed': 1.0, 'the': 6.0, 'lid': 3.0, 'my': 1.0, 'much': 1.0, 'end': 1.0, 'divided': 2.0, 'sandwich': 1.0, 'smaller': 1.0, 'individual': 1.0, 'each': 1.0, 'would': 2.0, 'inside': 1.0, 'but': 1.0, 'crumbs': 1.0, 'thought': 1.0, 'this': 3.0, 'perfect': 2.0, 'secure': 1.0, 'also': 1.0, 'conveys': 1.0, 'better': 1.0, 'container': 1.0, 'section': 2.0, 'chip': 1.0, 'as': 3.0, 'all': 2.0, 'up': 2.0, 'over': 2.0, 'your': 3.0, 'than': 1.0, 'i': 2.0, 'where': 1.0, 'for': 3.0, 'fit': 1.0}
Word element => {'herself': 1.0, 'by': 1.0, 'use': 1.0, 'easy': 1.0, 'from': 1.0, 'quickly': 1.0, 'pretty': 1.0, 'dividers': 1.0, 'much': 1.0, 'room': 1.0, 'leave': 2.0, 'is': 1.0, 'lead': 1.0, 'segments': 1.0, 'doesn': 1.0, 'she': 1.0, 'annoying': 1.0, 'it': 4.0, 'this': 1.0, 'the': 4.0, 'soggy': 1.0, 'cute': 1.0, 'my': 1.0, 'fits': 1.0, 'and': 2.0, 'me': 1.0, 'daughter': 1.0, 'water': 1.0, 'or': 1.0, 'little': 1.0, 'sack': 1.0, 'a': 3.0, 't': 1.0, 's': 2.0, 'for': 3.0, 'loves': 1.0, 'into': 1.0, 'that': 3.0, 'gap': 1.0, 'at': 1.0, 'bottom': 1.0, 'so': 1.0, 'apart': 1.0, 'everything': 1.0, 'goes': 1.0, 'object': 1.0, 'in': 2.0, 'well': 1.0, 'has': 1.0, 'dry': 1.0, 'to': 3.0, 'be': 1.0, 'lovely': 1.0, 'though': 1.0, 'mandarin': 1.0, 'bag': 1.0, 'sandwiches': 1.0, 'lunch': 1.0, 'which': 1.0, 'defeats': 1.0}
Word element => {'her': 1.0, 'doesn': 1.0, 'it': 1.0, 'section': 1.0, 'over': 1.0, 'press': 1.0, 'some': 1.0, 'sealed': 1.0, 'that': 2.0, 'something': 1.0, 'to': 1.0, 'sandwich': 1.0, 'so': 3.0, 'seal': 1.0, 'between': 1.0, 'problem': 1.0, 'if': 1.0, 'this': 1.0, 'only': 1.0, 'works': 1.0, 'wrap': 1.0, 'the': 2.0, 'orange': 1.0, 'plenty': 1.0, 't': 2.0, 's': 1.0, 'well': 1.0, 'and': 3.0, 'get': 2.0, 'is': 1.0, 'holds': 1.0, 'for': 1.0, 'of': 1.0, 'compartments': 2.0, 'daughter': 1.0, 'move': 1.0, 'went': 2.0, 'my': 1.0, 'will': 1.0, 'aren': 1.0, 'slices': 1.0, 'food': 4.0, 'can': 1.0, 'but': 1.0, 'put': 1.0, 'dry': 1.0, 'me': 1.0, 'not': 1.0, 'wet': 2.0, 'just': 1.0, 'ideal': 1.0, 'i': 2.0, 'small': 1.0, 'have': 1.0, 'in': 1.0, 'lunch': 2.0, 'like': 1.0}
Word element => {'fridge': 1.0, 'always': 1.0, 'there': 1.0, 'but': 1.0, 'chalkboard': 1.0, 'his': 1.0, 'is': 1.0, 'want': 1.0, 'to': 3.0, 's': 1.0, 'seem': 1.0, 'my': 1.0, 'hold': 1.0, 'weight': 1.0, 'would': 1.0, 'they': 3.0, 'the': 1.0, 't': 1.0, 'more': 1.0, 'these': 1.0, 'in': 1.0, 'for': 1.0, 'because': 1.0, 'just': 1.0, 'that': 1.0, 'playing': 1.0, 'thought': 1.0, 'got': 2.0, 'then': 1.0, 'i': 3.0, 'them': 2.0, 'don': 1.0, 'ok': 1.0, 'stick': 1.0, 'son': 1.0, 'he': 1.0, 'with': 1.0, 'do': 1.0, 'and': 1.0, 'loves': 1.0}
Word element => {'on': 1.0, 'are': 1.0, 'use': 1.0, 'to': 1.0, 'so': 1.0, 'top': 1.0, 'well': 1.0, 'too': 1.0, 'but': 1.0, 'zipper': 1.0, 'work': 1.0, 'really': 1.0, 'broke': 1.0, 'don': 1.0, 'functional': 1.0, 'papers': 1.0, 'they': 2.0, 'very': 1.0, 'like': 1.0, 'bags': 1.0, 'cute': 2.0, 'tried': 1.0, 'i': 1.0, 'clear': 1.0, 'with': 1.0, 'these': 1.0, 't': 1.0, 'the': 6.0, 'and': 1.0, 'reusable': 1.0, 'in': 1.0, 'one': 2.0, 'for': 2.0, 'of': 1.0, 'set': 1.0, '34': 2.0, 'refrigerator': 1.0, 'slide': 1.0}
Word element => {'will': 1.0, 'magnet': 1.0, 'strong': 1.0, 'needs': 1.0, 's': 1.0, 'wall': 1.0, 'calendar': 2.0, 'though': 1.0, 'could': 1.0, 'most': 1.0, 'a': 3.0, 'order': 1.0, 'fridge': 1.0, 'probably': 1.0, 'and': 1.0, 'do': 1.0, 'on': 2.0, 'hold': 1.0, 'to': 1.0, 'my': 1.0, 'more': 1.0, 'heavy': 1.0, '2': 1.0, 'the': 1.0, 'am': 1.0, 'i': 2.0, 'using': 1.0, 'one': 1.0, 'it': 2.0, 'of': 1.0, 'that': 1.0, 'type': 1.0, 'people': 1.0, 'hang': 1.0}
Word element => {'problem': 1.0, 'this': 1.0, 'have': 1.0, 'never': 1.0, 'supply': 1.0, 'get': 1.0, '100': 2.0, 'for': 2.0, 'amazon': 1.0, 'here': 1.0, 'add': 1.0, 'replace': 1.0, 'may': 2.0, 'the': 4.0, 'of': 2.0, 'packaging': 1.0, 'manufacturing': 1.0, 'sold': 1.0, 'and': 1.0, 'during': 1.0, 'around': 1.0, 'former': 1.0, 'well': 1.0, 'return': 1.0, 'a': 4.0, 'again': 1.0, 'you': 2.0, 'lose': 1.0, 'times': 2.0, 'someone': 1.0, 'or': 5.0, 'even': 1.0, 'rare': 2.0, 'does': 1.0, 'four': 1.0, 'improve': 1.0, 'bangs': 1.0, 'direction': 1.0, 'together': 1.0, 'close': 1.0, 'them': 3.0, 'about': 1.0, 'several': 1.0, 'strength': 2.0, 'neodymium': 2.0, 'few': 1.0, '10': 1.0, 'drops': 1.0, 'if': 3.0, 'same': 1.0, 'that': 1.0, 'magnetic': 1.0, 'magnets': 3.0, 'its': 1.0, 'not': 1.0, 'to': 3.0, 'magnet': 4.0, 'rub': 1.0, 'packages': 1.0, 'their': 1.0, 'earth': 2.0, 'attraction': 1.0, 'in': 1.0, 'on': 1.0, 'strong': 1.0, 'your': 1.0}
Word element => {'fridge': 1.0, 'on': 1.0, 'hold': 1.0, 'to': 2.0, 'about': 1.0, 'each': 1.0, 'as': 2.0, 'inch': 1.0, 'spring': 1.0, 'pictured': 1.0, 'of': 1.0, 'and': 1.0, '1': 1.0, 'cute': 1.0, 'is': 3.0, 'they': 1.0, 'size': 1.0, 'magnet': 1.0, 'are': 1.0, 'these': 1.0, 'the': 3.0, 'square': 1.0, 'too': 1.0, 'tight': 1.0, 'enough': 1.0, 'not': 1.0, 'strong': 1.0}
Word element => {'still': 1.0, 'too': 1.0, 'not': 1.0, 'works': 1.0, 'it': 2.0, 'what': 1.0, 'and': 2.0, 'sharp': 1.0, 'fork': 1.0, 'well': 1.0, 'likes': 1.0, 'want': 1.0, 'them': 2.0, 'i': 1.0, 'uses': 1.0, 'my': 1.0, 'the': 1.0, 'son': 1.0, 'is': 2.0, 'just': 1.0}
Word element => {'lock': 1.0, 'magnetic': 1.0, 'had': 1.0, 'with': 1.0, 'container': 1.0, 'fine': 1.0, 'out': 1.0, 'come': 1.0, 'sugarbooger': 2.0, 'like': 1.0, 'which': 1.0, 'hand': 1.0, 'other': 2.0, 'to': 2.0, 'but': 1.0, 'toddler': 2.0, 'is': 1.0, 'great': 1.0, 'the': 10.0, 'these': 2.0, 'compared': 1.0, 'from': 1.0, 'year': 1.0, 'silverware': 2.0, 'and': 2.0, 'size': 2.0, 'deeper': 1.0, 'fork': 1.0, 'sets': 2.0, 'set': 1.0, 'utensil': 1.0, 'of': 3.0, 'says': 1.0, 'smaller': 1.0, 'spoon': 1.0, 'i': 2.0, 'old': 1.0, 'thrown': 1.0, 'prefer': 1.0, 'it': 1.0, 'do': 1.0, 'only': 1.0, 'we': 1.0, 's': 1.0, 'wish': 1.0, 'perfect': 1.0, 'my': 1.0, 'company': 1.0, 'wash': 1.0, 've': 2.0, 'actually': 1.0, 'for': 1.0, 'bowl': 1.0, '3': 1.0, 'daughter': 1.0, 'came': 1.0, 'although': 1.0, 'in': 1.0, 'dishwasher': 1.0, 'they': 2.0}
Word element => {'doesn': 1.0, 'a': 1.0, 'off': 1.0, 'great': 1.0, 'shape': 1.0, 'that': 1.0, 'comfortable': 1.0, 'too': 1.0, 'bother': 1.0, 'lettering': 1.0, 'the': 2.0, 'is': 1.0, 'hold': 1.0, 'not': 1.0, 'bit': 1.0, 'size': 1.0, 'curve': 1.0, 't': 1.0, 'deep': 1.0, 'me': 1.0, 'but': 1.0, 'chips': 1.0, 'perfect': 1.0}
Word element => {'friendly': 1.0, 'be': 1.0, 'should': 1.0, 'stands': 1.0, 'lunchbox': 1.0, 'her': 1.0, 'primarily': 1.0, 'since': 1.0, '4': 1.0, 'in': 1.0, 'reason': 2.0, 'design': 1.0, 'open': 1.0, 'year': 1.0, 'going': 1.0, 'gave': 1.0, 'love': 1.0, 'fact': 1.0, 'trouble': 1.0, 'the': 2.0, 'my': 1.0, 'only': 1.0, 'it': 4.0, 'this': 2.0, 'is': 1.0, 'really': 1.0, 'stars': 1.0, 'to': 2.0, 'had': 1.0, 'was': 1.0, 'that': 2.0, 'kid': 1.0, 'opening': 1.0, '5': 1.0, 'i': 2.0, 'old': 1.0}
Word element => {'alot': 1.0, 'carrying': 1.0, 'feel': 1.0, 'don': 1.0, 'you': 1.0, 'when': 1.0, 'snacks': 1.0, 'well': 1.0, 'for': 2.0, 'like': 1.0, 'and': 2.0, 'size': 1.0, 'made': 1.0, 'my': 1.0, 'little': 1.0, 'absolutely': 1.0, 'adorable': 1.0, 'good': 1.0, 't': 1.0, 'bag': 1.0}
Word element => {'helpful': 1.0, 'hope': 1.0, 'has': 1.0, 'eventually': 1.0, 'opening': 1.0, 'am': 1.0, 'since': 1.0, 'issue': 1.0, 'now': 1.0, 'right': 1.0, 'difficult': 1.0, 'mess': 1.0, 'off': 1.0, 'pull': 1.0, 'seal': 1.0, 'press': 1.0, 'really': 2.0, 'can': 1.0, 'so': 1.0, 'tricky': 1.0, 'narrow': 1.0, 'only': 1.0, 'robot': 1.0, 'you': 2.0, 'things': 2.0, 'trail': 1.0, 'problem': 1.0, 'lip': 1.0, 'though': 1.0, 'blueberries': 1.0, 'tested': 1.0, 'size': 3.0, 'probably': 1.0, 'vegetables': 1.0, 'was': 2.0, 'better': 1.0, 'yogurt': 1.0, 'crackers': 1.0, 'i': 10.0, 'are': 4.0, 'an': 1.0, 'other': 2.0, 'design': 2.0, 'yet': 1.0, 'love': 2.0, 'for': 8.0, 'have': 2.0, 'but': 2.0, 'retro': 1.0, 'not': 4.0, 'deep': 1.0, 'that': 3.0, 'because': 1.0, 'of': 5.0, 'the': 12.0, 'these': 3.0, 'use': 1.0, 'smaller': 1.0, 'great': 2.0, 'stacking': 1.0, 'snack': 1.0, 'with': 2.0, 'bought': 1.0, 'actually': 1.0, 'color': 1.0, 'containers': 1.0, 'also': 1.0, 'disappointed': 1.0, 'haven': 2.0, 'perfect': 2.0, 'this': 3.0, 'found': 1.0, 'want': 1.0, 'if': 2.0, 'is': 4.0, 'more': 1.0, 'tall': 1.0, 'sandwich': 1.0, 'mix': 1.0, 'imagine': 1.0, 'small': 5.0, 'a': 10.0, 'go': 1.0, 'fit': 1.0, 't': 2.0, 'child': 1.0, 'serving': 1.0, 'toddler': 1.0, 'get': 1.0, 'lids': 1.0, 'cookies': 1.0, 'me': 1.0, 'my': 2.0, 'larger': 3.0, 's': 2.0, 'preferred': 1.0, 'prefers': 1.0, 'fruit': 1.0, 'or': 1.0, 'berries': 1.0, 'container': 2.0, 'set': 1.0, 'to': 5.0, 'as': 1.0, 'slices': 1.0, 'large': 1.0, 'kind': 1.0, 'and': 9.0, 'pleasing': 1.0, 'etc': 1.0, 'proportions': 1.0, 'short': 1.0, 'fat': 1.0, 'made': 1.0, 'good': 2.0, 'lunch': 1.0, 'skinny': 1.0, 'they': 2.0, 'reviews': 1.0, 'son': 2.0, 'on': 1.0, 'amount': 1.0, 'one': 1.0, 'pattern': 1.0, 'lot': 1.0, 'would': 3.0, 'it': 8.0, 'might': 1.0, 'came': 1.0, 'out': 1.0, 'micro': 1.0, 'be': 3.0, 'himself': 1.0, 'very': 1.0, 'dips': 1.0, 'dressings': 1.0, 'mentioned': 1.0}
Word element => {'my': 1.0, 'refrigerator': 2.0, 'package': 1.0, 'opening': 1.0, 'adhesive': 1.0, 'worth': 1.0, 'convenience': 1.0, 'would': 1.0, 'did': 1.0, 'cost': 1.0, 'be': 1.0, 'bought': 1.0, 'buy': 1.0, 'i': 2.0, 'stay': 1.0, 'cardboard': 1.0, 'backing': 1.0, 'on': 2.0, 'piece': 1.0, 'additional': 1.0, 'tin': 1.0, '14': 1.0, 'a': 1.0, 'for': 1.0, 'magnets': 1.0, 'with': 1.0, 'it': 3.0, 'not': 1.0, 'self': 1.0, 'because': 1.0, 'to': 3.0, 'had': 1.0, 'was': 1.0, 'extra': 1.0, 'part': 1.0, 'listed': 1.0, 'the': 5.0, 'as': 1.0, 'break': 1.0, 'get': 1.0, 'and': 2.0, 'of': 2.0, '34': 2.0, 'slapping': 1.0, 'magnetic': 1.0, 'that': 2.0, 'thought': 1.0}
Word element => {'different': 1.0, 'yet': 1.0, 'but': 2.0, 'this': 1.0, 'the': 4.0, 't': 2.0, 'part': 1.0, 'used': 1.0, 'haven': 1.0, 'mind': 1.0, 'picture': 1.0, 'pink': 1.0, 'from': 1.0, 'colors': 1.0, 'don': 1.0, 'd': 1.0, 'thought': 1.0, 'were': 1.0, 'share': 1.0, 'base': 1.0, 'is': 2.0, 'i': 3.0, 'green': 1.0, 'and': 1.0, 'bather': 1.0}
Word element => {'sliding': 1.0, 'start': 1.0, 'mi': 1.0, 'they': 2.0, 'used': 1.0, 'both': 1.0, 'same': 1.0, 'iv': 1.0, 'newborns': 1.0, 'one': 1.0, 'for': 2.0, 'great': 1.0, 'and': 1.0, 'cheap': 1.0, 'are': 1.0, 'girls': 1.0, 'big': 1.0, 'but': 1.0, 'hit': 1.0, 'to': 1.0, 'bout': 1.0, 'once': 1.0, 'two': 1.0, 'months': 1.0, 'enough': 1.0}
Word element => {'easier': 1.0, 'much': 1.0, 'home': 1.0, 'frozen': 1.0, 'once': 1.0, 'easily': 1.0, '34': 2.0, 'in': 1.0, 'adventures': 1.0, 'also': 1.0, 'very': 2.0, 'simple': 1.0, 'measuring': 1.0, 'baby': 2.0, 'slide': 1.0, 'cubes': 1.0, 'few': 1.0, 'these': 1.0, 'the': 3.0, 'and': 1.0, 'tot': 1.0, 'trays': 2.0, 'my': 2.0, 'make': 1.0, 'different': 1.0, 'a': 1.0, 'have': 2.0, 'tried': 1.0, 'i': 1.0, 'oxo': 1.0, 'favorite': 1.0, 'cube': 1.0, 'is': 1.0, 'shapes': 1.0, 'made': 2.0, 'out': 2.0, 'so': 1.0, 'food': 2.0, 'meals': 1.0}
Word element => {'though': 1.0, 'milk': 1.0, 'up': 1.0, 'keep': 1.0, 'help': 1.0, 'breastmilk': 1.0, 'doesn': 1.0, 'it': 3.0, 'can': 1.0, 'i': 1.0, 'taste': 1.0, 'drink': 1.0, 'phase': 1.0, 't': 1.0, 'the': 2.0, 'passed': 1.0, 'hates': 1.0, 'now': 1.0, 'to': 1.0, 'be': 1.0, 'through': 1.0, 'and': 1.0, 'as': 1.0, 'baby': 1.0, 'seem': 1.0, 'does': 1.0, 'her': 1.0, 'they': 1.0, 'claim': 1.0, 'supply': 1.0, 'effects': 1.0}
Word element => {'night': 1.0, 'through': 1.0, 'comfortably': 1.0, 'the': 1.0, 'more': 1.0, 'sleeps': 1.0, 'or': 1.0, 'son': 1.0, 'gas': 2.0, 'tea': 1.0, 'and': 1.0, 'my': 1.0, 'highly': 1.0, 'helps': 1.0, 'now': 1.0, 'magic': 1.0, 'rubs': 1.0, 'tummy': 2.0, 'babies': 1.0, 'product': 1.0, 'no': 1.0, 'it': 1.0, 'with': 1.0, 'he': 1.0, 'issues': 1.0, 'amazing': 1.0, 'drops': 1.0, 'recommend': 1.0, 'burping': 1.0, 'helped': 1.0, 'him': 1.0, 'except': 1.0, 'for': 1.0}
Word element => {'drink': 1.0, 'to': 1.0, 'or': 1.0, 'may': 2.0, 'baby': 1.0, 'not': 1.0, 'drank': 1.0, 'and': 1.0, 'helped': 1.0, 'quality': 1.0, 'wife': 1.0, 'for': 1.0, 'my': 1.0, 'the': 1.0, 'product': 1.0, 'surprisingly': 1.0, 'it': 5.0, 'with': 1.0, 'want': 1.0, 'pros': 1.0, 'is': 1.0, 'quantity': 1.0, 'milk': 1.0, 'production': 1.0, 'cons': 1.0, 'even': 1.0, 'works': 1.0, 'her': 1.0, 'expensive': 1.0, 'your': 1.0}
Word element => {'on': 1.0, 'little': 1.0, 'effect': 1.0, 'had': 1.0, 'notice': 1.0, 'didn': 1.0, 'it': 1.0, 'miracle': 1.0, 'my': 1.0, 'wasn': 1.0, 'think': 1.0, 'one': 1.0, 'i': 1.0, 'this': 1.0, 't': 2.0, 'a': 1.0, 'that': 1.0, 'honestly': 1.0, 'you': 1.0, 'tea': 1.0, 'any': 1.0, 'as': 1.0}
Word element => {'did': 1.0, 'sleeping': 1.0, 'my': 1.0, 'patern': 1.0, 'any': 1.0, 'fussiness': 1.0, 'in': 1.0, 'not': 1.0, 'notice': 1.0, 'difference': 1.0, 'daughters': 1.0, 'or': 1.0}
Word element => {'again': 1.0, 'buy': 1.0, 'probably': 1.0, 'good': 1.0, 'haven': 1.0, 'noticed': 1.0, 't': 1.0, 'or': 1.0, 'bad': 1.0, 'when': 1.0, 'a': 1.0, 'using': 1.0, 'would': 1.0, 'not': 2.0, 'difference': 1.0, 'at': 1.0, 'it': 3.0, 's': 1.0, 'all': 1.0}
Word element => {'sleep': 1.0, 'baby': 1.0, 'the': 1.0, 'of': 1.0, 'waste': 1.0, 'recommend': 1.0, 'not': 2.0, 'would': 2.0, 'so': 1.0, 'tea': 1.0, 'nothing': 1.0, 'many': 1.0, 'praises': 1.0, 'and': 1.0, 'on': 1.0, 'this': 1.0, 'did': 1.0, 'money': 1.0, 'it': 1.0, 'absolutely': 1.0}
Word element => {'site': 1.0, 'its': 1.0, 'to': 1.0, 'be': 1.0, 'product': 1.0, 'this': 1.0, 'allow': 1.0, 'sold': 1.0, 'neck': 1.0, 's': 1.0, 'infant': 1.0, 'can': 1.0, 'should': 1.0, 'necklace': 1.0, 'around': 1.0, 'choke': 1.0, 'that': 1.0, 'beads': 1.0, 'a': 1.0, 'put': 1.0, 'an': 1.0, 'dangerous': 1.0, 'do': 1.0, 'itself': 1.0, 'amazon': 1.0, 'is': 1.0, 'on': 2.0, 'the': 2.0, 'baby': 1.0, 'or': 1.0, 'not': 2.0, 'strangle': 1.0}
Word element => {'is': 1.0, 'of': 1.0, 'there': 1.0, 'fold': 1.0, 'you': 1.0, 'washings': 1.0, 'bit': 2.0, 'few': 1.0, 'so': 1.0, 'after': 1.0, 'a': 3.0, 'cute': 1.0, 'also': 1.0, 'very': 1.0, 'could': 1.0, 'faded': 1.0, 'be': 1.0, 'color': 1.0, 'my': 1.0, 'are': 1.0, 'not': 1.0, 'ocd': 1.0, 'overlap': 1.0, 'has': 1.0, 'they': 1.0, 'an': 1.0, 'but': 1.0, 'perfectly': 1.0, 'when': 1.0, 'square': 1.0}
Word element => {'dry': 1.0, 'hung': 1.0, 'and': 1.0, 'water': 1.0, 'each': 1.0, 'soapy': 1.0, 'washed': 1.0, 'food': 1.0, 'catch': 1.0, 'position': 1.0, 'dish': 1.0, 'flexible': 1.0, 'the': 4.0, 'yet': 1.0, 'bib': 1.0, 'very': 1.0, 'is': 1.0, 'conforming': 1.0, 'be': 2.0, 'happier': 1.0, 'to': 5.0, 'not': 1.0, 'in': 2.0, 'with': 1.0, 'this': 1.0, 'it': 1.0, 'night': 1.0, 'i': 1.0, 'enough': 2.0, 'child': 1.0, 'sturdy': 1.0, 'keep': 1.0, 'easily': 1.0, 'could': 1.0, 'pocket': 1.0, 'a': 1.0}
Word element => {'will': 1.0, 'car': 1.0, 'holdinga': 1.0, 'when': 1.0, 'especially': 1.0, 'gift': 1.0, 'bags': 1.0, 'like': 1.0, 'dont': 1.0, 'i': 1.0, 'fits': 1.0, 'in': 1.0, 'newborn': 1.0, 'perfect': 1.0, 'size': 1.0, 'you': 1.0, 'everything': 1.0, 'is': 1.0, 'bag': 1.0, 'shower': 1.0, 'this': 1.0, 'quick': 1.0, 'whenon': 1.0, 'seat': 1.0, 'carrying': 1.0, 'not': 1.0, 'get': 1.0, 'me': 1.0, 'delivery': 1.0, 'im': 1.0, 'for': 2.0, 'need': 1.0, 'which': 1.0, 'baby': 2.0, 'was': 2.0, 'its': 1.0, 'the': 1.0, 'defintley': 1.0, 'go': 1.0, 'a': 3.0, 'as': 1.0, 'big': 3.0, 'concern': 1.0}
Word element => {'was': 1.0, 'perfect': 1.0, 'just': 1.0, 'but': 1.0, 'this': 1.0, 'bag': 1.0, 'different': 1.0, 'one': 1.0, 'beautiful': 1.0, 'chosen': 1.0, 'gift': 1.0, 'she': 1.0, 'actually': 1.0, 'diaper': 1.0, 'for': 1.0, 'had': 1.0, 'to': 1.0, 'mother': 1.0, 'be': 1.0, 'a': 1.0}
Word element => {'horrible': 1.0, 'advised': 1.0, 'how': 1.0, 'not': 1.0, 'have': 1.0, 'minded': 1.0, 'it': 2.0, 'near': 1.0, 'shocking': 1.0, 'in': 1.0, 'baby': 1.0, 'sick': 1.0, 'to': 4.0, 'selling': 1.0, 'being': 1.0, 'if': 1.0, 'want': 2.0, 'side': 1.0, 'worrying': 1.0, 'would': 2.0, 'open': 1.0, 'their': 1.0, 'joke': 1.0, 'looked': 1.0, 'understand': 1.0, 'of': 1.0, 'can': 1.0, 'why': 1.0, 'this': 3.0, 'shocked': 1.0, 'sort': 1.0, 'or': 1.0, 'some': 1.0, 'i': 2.0, 'more': 1.0, 'is': 2.0, 'fear': 1.0, 'and': 3.0, 'the': 2.0, 'dread': 1.0, 'start': 1.0, 'what': 1.0, 'ever': 1.0, 'into': 1.0, 'box': 1.0, 'next': 1.0, 't': 1.0, 'a': 2.0, 'going': 1.0, 'water': 1.0, 'are': 1.0, 'strap': 1.0, 'put': 1.0, 'on': 1.0, 'you': 1.0, 'am': 2.0, 'haven': 1.0, 'brought': 1.0, 'for': 1.0, 'product': 1.0, 'anyone': 1.0, 'beaker': 1.0, 'be': 1.0, 'anywhere': 1.0}
Word element => {'off': 1.0, 'product': 1.0, 'useless': 1.0, 'child': 1.0, 'to': 1.0, 'your': 1.0, 'this': 1.0, 'with': 1.0, 'room': 1.0, 'dread': 2.0, 'make': 1.0, 'market': 1.0, 'horrible': 1.0, 'get': 1.0, 'and': 1.0, 'fear': 1.0, 'a': 1.0, 'close': 1.0, 'sharing': 1.0, 'of': 1.0, 'sleeping': 1.0, 'doesn': 1.0, 'avoid': 1.0, 'baby': 1.0, 'their': 1.0, 'that': 1.0, 'honestly': 1.0, 'the': 2.0, 't': 1.0, 'what': 1.0, 'even': 1.0, 'sense': 1.0, 'who': 1.0, 'would': 1.0}
Word element => {'carry': 1.0, 'to': 1.0, 'husband': 1.0, 'my': 1.0, 'perfect': 1.0, 'be': 1.0, 'bag': 2.0, 'typical': 1.0, 'durability': 1.0, 'love': 1.0, 'for': 2.0, 'great': 1.0, 'diaper': 1.0, 'the': 2.0, 'not': 1.0, 'insulted': 1.0, 'canvas': 1.0, 'price': 1.0, 'pad': 1.0, 'wet': 1.0, 'and': 3.0, 'cheap': 1.0, 'pockets': 1.0, 'includes': 1.0, 'bottles': 1.0, 'changing': 1.0, 'kind': 1.0, 'of': 1.0, 'will': 1.0}
Word element => {'mom': 1.0, 'just': 1.0, 'not': 1.0, 'also': 1.0, 'over': 1.0, 'on': 1.0, 'for': 1.0, 'one': 1.0, 'usage': 1.0, 'out': 1.0, 'too': 1.0, 'tough': 1.0, 'green': 1.0, 'i': 2.0, 'buy': 1.0, 'old': 1.0, 'side': 2.0, 'second': 1.0, 'is': 2.0, 'the': 7.0, 'first': 1.0, 'this': 2.0, 'looks': 1.0, 'it': 2.0, 'time': 1.0, 'after': 1.0, 'finally': 1.0, 'other': 1.0, 'was': 1.0, 'as': 1.0, 'to': 1.0, 'constant': 1.0, 'bag': 6.0, 'pockets': 1.0, 'previous': 1.0, 'years': 1.0, 'fact': 1.0, 'than': 1.0, 'empty': 1.0, 'bags': 1.0, 'still': 1.0, 'seem': 1.0, 'gave': 1.0, 'that': 3.0, 'into': 1.0, 'useable': 1.0, 's': 3.0, 'a': 3.0, '2': 1.0, 'but': 1.0, 'can': 1.0, 'like': 2.0, 'dad': 2.0, 'hold': 1.0, 'main': 1.0, 'lot': 1.0}
Word element => {'far': 1.0, 'have': 1.0, 'durable': 1.0, 'are': 1.0, 'cinch': 1.0, 'a': 2.0, 'prefolds': 1.0, 'they': 2.0, 'longevity': 1.0, 'love': 1.0, 'without': 1.0, 'know': 1.0, 'and': 2.0, 'would': 1.0, 'cloth': 1.0, 'i': 1.0, 'how': 1.0, 'great': 1.0, 'these': 1.0, 'diaper': 1.0, 't': 1.0, 'incredibly': 1.0, 'don': 1.0, 'them': 1.0, 'so': 2.0, 'address': 1.0, 'much': 1.0, 'to': 1.0, 'newborn': 1.0, 'easy': 1.0, 'use': 1.0, 'make': 1.0}
Word element => {'girl': 1.0, 'since': 1.0, 'in': 1.0, 'perfectly': 1.0, 'stays': 1.0, 'don': 1.0, 'over': 1.0, 'like': 1.0, 'cd': 1.0, 'first': 1.0, 'with': 1.0, 'bought': 1.0, 'unnecessary': 1.0, 'because': 1.0, 'it': 2.0, 'truly': 1.0, 'found': 1.0, 'are': 1.0, 'ing': 1.0, 'but': 2.0, 'back': 1.0, 'put': 1.0, 'wrong': 1.0, 'give': 1.0, 'didn': 1.0, 'these': 1.0, 'thirsties': 1.0, 's': 1.0, 't': 2.0, 'they': 1.0, 'stars': 1.0, 'started': 1.0, 'them': 5.0, 'out': 1.0, 'when': 1.0, 'there': 1.0, 'nothing': 1.0, 'quickly': 1.0, 'that': 2.0, 'need': 1.0, 'trifold': 1.0, 'my': 2.0, 'sold': 1.0, 'and': 3.0, 'place': 1.0, 'the': 3.0, 'reach': 1.0, 'i': 8.0, '4': 1.0, 'fan': 1.0, 'use': 1.0, 'front': 1.0, 'prefold': 1.0, 'so': 1.0, 'though': 1.0, 'colors': 1.0, 'sides': 1.0, 'each': 1.0, 'other': 1.0, 'then': 1.0, 'cover': 1.0}
Word element => {'larger': 1.0, 'size': 1.0, 'order': 1.0, 'use': 1.0, 'll': 1.0, 'picking': 1.0, 'one': 1.0, 'teeth': 1.0, 'the': 2.0, 'punctured': 1.0, 'and': 4.0, 'couple': 1.0, 'toddler': 1.0, 'ordered': 1.0, 'found': 1.0, 'even': 1.0, 'got': 1.0, 'me': 1.0, 'heard': 1.0, 'continue': 1.0, 'do': 2.0, 'try': 1.0, 'simply': 1.0, 'so': 1.0, 'd': 1.0, 'take': 1.0, 'to': 4.0, 'had': 1.0, 'introduced': 1.0, 'they': 2.0, 'never': 1.0, 'them': 4.0, 'well': 1.0, 'week': 1.0, 'work': 1.0, 'a': 5.0, 'ago': 1.0, 'my': 2.0, 'friend': 1.0, 'or': 1.0, 'finger': 1.0, 'until': 1.0, 'i': 5.0, 'imagine': 1.0, 'of': 2.0, 'child': 1.0, 'up': 2.0, 'seen': 1.0, 'these': 1.0, 'while': 1.0, 'later': 1.0, 'quicker': 1.0, 'month': 1.0, 'nor': 1.0, 'it': 2.0, 'than': 1.0, 'sister': 1.0, 'pins': 1.0, 'catch': 1.0, 'anything': 1.0, 'on': 2.0, 'would': 1.0, 've': 1.0, 'for': 1.0, 'actually': 1.0}
Word element => {'diapers': 1.0, 'before': 1.0, 'back': 1.0, 'killed': 1.0, 'day': 1.0, 'grandparents': 1.0, 'parents': 1.0, 'around': 1.0, 'sealed': 1.0, 'firmly': 1.0, 'bottom': 1.0, 'enough': 1.0, 'babies': 2.0, 'between': 1.0, 'part': 1.0, 'typically': 1.0, 'now': 1.0, 'up': 1.0, 'preparing': 1.0, 'ultimately': 1.0, 'not': 3.0, 'give': 1.0, 'did': 2.0, 'covers': 1.0, 'review': 1.0, 'of': 4.0, 'the': 17.0, 'place': 2.0, 'glad': 1.0, 'shot': 1.0, 'snappi': 2.0, 'with': 5.0, 'said': 1.0, 'diapering': 1.0, 'in': 4.0, 'hold': 2.0, 'packet': 1.0, 'excrement': 1.0, 'prefolds': 3.0, 'which': 2.0, 'one': 1.0, 'legs': 2.0, 'months': 1.0, 'decided': 1.0, 'bought': 1.0, 'for': 3.0, 's': 1.0, 'we': 4.0, 'confident': 1.0, 'a': 2.0, 'city': 1.0, 'wife': 1.0, 'conclusion': 1.0, 'while': 1.0, 'snappis': 5.0, 'and': 5.0, 'various': 1.0, 'born': 1.0, 'cloth': 1.0, 'i': 8.0, 'diaper': 4.0, 'as': 1.0, 'our': 2.0, 'to': 4.0, 'each': 1.0, 'read': 1.0, 'end': 1.0, 'only': 1.0, 'do': 1.0, 'my': 1.0, 'because': 2.0, 'that': 2.0, 'initially': 1.0, 'into': 1.0, 'tighten': 1.0, 'were': 2.0, 'she': 1.0, 'folds': 1.0, 'many': 1.0, 'baby': 1.0, 'rarely': 1.0, 'them': 2.0, 'girl': 1.0, 'had': 3.0, 'purchased': 2.0, 'disposable': 1.0, 'be': 2.0, 'cover': 2.0, 'prefold': 2.0, 'so': 2.0, 'would': 5.0, 'boy': 1.0, 'redundant': 1.0, 'this': 2.0, 'escaping': 1.0, 'keeps': 1.0, 'idea': 1.0, 'am': 2.0, 'you': 2.0, 'pre': 1.0, 'work': 1.0, 'anytime': 1.0, 'it': 2.0, 'already': 2.0, 'go': 1.0, 'figured': 1.0, 'debated': 1.0, 'theoretically': 1.0, '34': 6.0, 'using': 3.0, 'looking': 1.0, 'blow': 1.0, 'out': 1.0, 'if': 1.0, 'but': 1.0, 'chose': 1.0, 'have': 2.0, 'issue': 1.0, 'at': 1.0, 'is': 2.0, 't': 1.0, 'along': 1.0, 'fairly': 1.0}
Word element => {'this': 1.0, 'with': 1.0, 'them': 1.0, '34': 2.0, 'accidentally': 1.0, 'prick': 1.0, 'that': 1.0, 'don': 1.0, 'baby': 1.0, 'squirmy': 1.0, 'on': 1.0, 'they': 1.0, 'haven': 1.0, 'careful': 1.0, 'day': 1.0, 'just': 1.0, 'failed': 1.0, 'diaper': 1.0, 'the': 1.0, 'these': 1.0, 't': 2.0, 'all': 1.0, 'have': 1.0, 'yet': 1.0, 'tight': 1.0, 'me': 1.0, 'and': 1.0, 'night': 1.0, 'be': 1.0, 'keep': 1.0, 'if': 1.0, 'you': 2.0, 'a': 1.0}
Word element => {'snappi': 1.0, 'pull': 1.0, 'fabric': 1.0, 'projections': 1.0, 'like': 1.0, 'they': 1.0, 'the': 2.0, 'place': 1.0, 'in': 1.0, 'twins': 1.0, 'of': 1.0, 'small': 1.0, 'have': 3.0, 'tabs': 1.0, 'mother': 1.0, 'diaper': 1.0, 'these': 2.0, 'about': 1.0, 'super': 1.0, 'quickly': 1.0, 'easy': 1.0, 'use': 2.0, 'while': 1.0, 'mess': 1.0, 'i': 4.0, 'wrestling': 2.0, 'that': 1.0, 'been': 1.0, 'to': 5.0, 'as': 1.0, 'and': 4.0, 'with': 4.0, 'fitted': 1.0, 'it': 1.0, 'grab': 1.0, 'anyone': 1.0, 'infant': 2.0, 'off': 1.0, 'cover': 1.0, 'or': 2.0, 'primarily': 1.0, 'squirmy': 1.0, 'worry': 1.0, 'before': 1.0, 'around': 1.0, 'pins': 1.0, 'don': 2.0, 'over': 1.0, 'put': 1.0, 'on': 3.0, 'time': 1.0, 'prefold': 2.0, 't': 2.0, 'a': 4.0, 's': 1.0, 'secured': 1.0, 'silicone': 1.0, 'claw': 1.0, 'sticking': 1.0, 'diapers': 1.0, 'secure': 1.0, 'can': 1.0, 'throw': 1.0, 'one': 1.0}
Word element => {'not': 1.0, 'beneficial': 1.0, 'business': 1.0, 'a': 1.0, 'vacation': 1.0, 'home': 1.0, 'their': 1.0, 'worthless': 1.0, 'impossible': 1.0, 'plug': 1.0, 's': 1.0, 'will': 1.0, 'know': 2.0, 'don': 1.0, 'since': 1.0, 'lorex': 1.0, 'bought': 1.0, 'been': 1.0, 'months': 2.0, 'except': 1.0, 'keep': 1.0, 'into': 1.0, 'three': 1.0, 'able': 1.0, 'you': 2.0, 'when': 4.0, 'times': 1.0, 'day': 1.0, 'our': 3.0, 'to': 7.0, 'playing': 1.0, 'all': 5.0, 'then': 1.0, 'we': 2.0, 'ago': 1.0, 't': 3.0, 'nearly': 2.0, 'situation': 1.0, 'thing': 1.0, 'have': 2.0, 'with': 1.0, 'him': 1.0, 'it': 11.0, 'highly': 1.0, 'this': 4.0, 'perfect': 1.0, 'one': 2.0, 'happy': 1.0, 'for': 11.0, 'using': 2.0, 'like': 1.0, 'they': 1.0, 'sleeping': 1.0, 'cannot': 1.0, 'parents': 1.0, 'monitor': 3.0, 'and': 4.0, 'at': 3.0, 'is': 7.0, 'would': 1.0, 'recommend': 1.0, 'must': 1.0, 'doesn': 2.0, 'now': 1.0, 'away': 3.0, 'else': 1.0, 'everything': 1.0, 'computer': 1.0, 'hop': 1.0, 'time': 1.0, 'on': 1.0, 'update': 1.0, 're': 2.0, 'your': 2.0, 'viewing': 2.0, 'purpose': 1.0, 'from': 1.0, 'while': 1.0, 'call': 2.0, 'skype': 3.0, 'work': 2.0, 'so': 2.0, 'can': 2.0, 'but': 2.0, 'the': 5.0, 'of': 1.0, 'view': 2.0, 'got': 1.0, 'she': 1.0, 'military': 1.0, 'baby': 2.0, 'that': 1.0, 'because': 2.0, 'husband': 2.0, 'love': 1.0, 'he': 4.0, 'in': 7.0, 'completely': 1.0, 'whenever': 1.0, 'someone': 1.0, 'd': 1.0, 'see': 1.0, 'or': 2.0, 'use': 1.0, 'her': 1.0, 'crib': 1.0, 'order': 1.0, 'be': 3.0, 'takes': 1.0, 'may': 1.0, 'entire': 1.0, 'reasons': 1.0, 'my': 2.0, 'me': 2.0, 'if': 2.0, 'every': 1.0, 'still': 1.0, 'stay': 1.0, 'via': 1.0, 'i': 2.0, 'plugged': 3.0, 'us': 2.0, 'also': 1.0, 'during': 1.0}
Word element => {'yard': 1.0, 'house': 1.0, 'around': 1.0, 'useful': 1.0, 's': 1.0, 'handy': 1.0, 'beach': 1.0, 'the': 2.0, 'family': 1.0, 'and': 4.0, 'seems': 1.0, 'bring': 1.0, 'my': 1.0, 'portable': 1.0, 'very': 3.0, 'son': 1.0, 'is': 1.0, 'comfortable': 1.0, 'for': 1.0, 'vacation': 1.0, 'extremely': 1.0, 'we': 1.0, 'got': 1.0, 'too': 1.0, 'going': 1.0, 'when': 1.0, 'it': 2.0, 'this': 2.0, 'he': 1.0, 'however': 1.0, 'visiting': 1.0, '6': 1.0, 'on': 1.0, 'months': 1.0, 'was': 2.0, 'to': 2.0}
Word element => {'years': 1.0, 'hotels': 1.0, 'just': 2.0, 'it': 5.0, 'but': 1.0, 'back': 1.0, 'beach': 1.0, 'case': 1.0, 'bought': 1.0, 'sisters': 2.0, 'and': 1.0, 'take': 2.0, 'i': 6.0, 'the': 2.0, 'my': 4.0, 'happy': 1.0, 'am': 1.0, 'so': 2.0, 'folds': 1.0, 'everywhere': 1.0, 'her': 1.0, 'to': 3.0, 'had': 1.0, 'purchased': 1.0, 'for': 3.0, 'daughter': 1.0, 'up': 1.0, 'camping': 1.0, 'of': 1.0, 'like': 1.0, 'ago': 1.0, 'we': 1.0, 'discovered': 1.0, 's': 1.0, 'a': 2.0, 'chair': 1.0, 'has': 1.0, 'they': 1.0, 'nana': 1.0, 'storage': 1.0, 'keep': 1.0, 'in': 2.0, 'car': 1.0, 'have': 1.0, 'bag': 1.0, 'need': 1.0, 'this': 3.0, 'wish': 1.0, '3': 1.0}
Word element => {'open': 1.0, 'figures': 1.0, 'needing': 1.0, 'me': 1.0, 'be': 1.0, 'him': 1.0, 'don': 1.0, 'fill': 1.0, 'now': 1.0, 'bottom': 1.0, 'unscrew': 1.0, 'will': 2.0, 'figure': 1.0, 'very': 1.0, 'to': 3.0, 'first': 1.0, 'this': 1.0, 'how': 2.0, 'he': 6.0, 'old': 1.0, 'i': 3.0, '20': 1.0, 'the': 9.0, 'great': 1.0, 'stainless': 1.0, 'son': 2.0, 'is': 3.0, 'shirt': 1.0, 'hopefully': 1.0, 'my': 3.0, 'let': 1.0, 'cup': 3.0, 'and': 2.0, 'clever': 2.0, 'his': 1.0, 'only': 1.0, 'works': 1.0, 'used': 1.0, 'am': 1.0, 'times': 1.0, 'cool': 1.0, 'training': 2.0, 'past': 1.0, '2': 1.0, 'most': 1.0, 'but': 1.0, 'it': 5.0, 'month': 1.0, 'version': 1.0, 'worried': 1.0, 'by': 2.0, 'time': 2.0, 'mastered': 1.0, 'flow': 1.0, 'would': 1.0, 'for': 1.0, 'love': 1.0, 'see': 2.0, 't': 1.0, 'a': 1.0, 'of': 1.0, 'steel': 1.0, 'in': 1.0, 'future': 1.0, 'out': 2.0, 'soak': 1.0, 'third': 1.0, 'concern': 1.0, 'loves': 1.0, 'that': 1.0}
Word element => {'product': 1.0, 'a': 1.0, 'thanks': 1.0, 'spills': 1.0, 'eliminated': 1.0, 'almost': 1.0, 'and': 1.0, 'lived': 1.0, 'this': 1.0, 'loved': 1.0, 'cups': 1.0, 'to': 1.0, 'its': 1.0, 'sippy': 1.0, 'for': 1.0, 'one': 1.0, 'unlike': 1.0, 'messy': 1.0, 'totally': 1.0, 'expectations': 1.0, 'those': 1.0, 'other': 1.0, 'we': 1.0, 'great': 1.0, 'the': 1.0, 'toddler': 1.0, 'my': 1.0, 'cup': 1.0, 'completely': 1.0, 'up': 1.0, 'of': 1.0, 'best': 1.0, 'have': 1.0, 'all': 2.0}
Word element => {'way': 1.0, 'proof': 1.0, 'month': 1.0, 'came': 1.0, 'liquid': 1.0, 'out': 1.0, 'wasn': 1.0, 'my': 1.0, 'the': 1.0, 't': 2.0, 'it': 1.0, 'this': 1.0, 'with': 1.0, 'too': 1.0, 'spill': 1.0, 'fast': 1.0, 'for': 1.0, '11': 1.0, 'i': 1.0, 'old': 1.0, 'impressed': 1.0, 'and': 1.0, 'isn': 1.0, 'remotely': 1.0}
Word element => {'enough': 1.0, 'small': 1.0, 'be': 1.0, 'to': 1.0, 'nice': 1.0, 'is': 1.0, 'one': 1.0, 'or': 1.0, 'you': 1.0, 'a': 2.0, 'travel': 1.0, 'need': 2.0, 'if': 2.0, 'otherwise': 1.0, 'available': 1.0, 'cot': 1.0, 'for': 2.0, 'visiting': 1.0, 'have': 1.0, 'grandkids': 1.0, 'this': 1.0}
Word element => {'be': 1.0, 'would': 1.0, '2': 1.0, 'or': 2.0, 'another': 1.0, 'considering': 1.0, 'trips': 1.0, 'since': 1.0, 'at': 1.0, 'them': 1.0, 'great': 1.0, 'feel': 1.0, 'don': 1.0, 'you': 1.0, 'and': 1.0, 'even': 1.0, 'camping': 1.0, 'of': 2.0, 'size': 1.0, 'right': 1.0, 'with': 2.0, 'this': 2.0, 'it': 4.0, 'terribly': 1.0, 'happy': 1.0, 'smaller': 1.0, 'were': 1.0, 'that': 2.0, 'the': 8.0, 'grandparents': 1.0, 'for': 3.0, '8': 1.0, 'cot': 4.0, 'criss': 1.0, 'design': 1.0, 't': 1.0, 'we': 4.0, 'a': 3.0, 'middle': 1.0, 'trip': 1.0, 'old': 2.0, 'all': 1.0, 'our': 2.0, 'to': 3.0, 'purchased': 1.0, 'had': 2.0, 'was': 1.0, '3': 1.0, 'on': 2.0, 'room': 1.0, 'below': 1.0, 'sleeps': 1.0, 'completely': 1.0, 'is': 1.0, 'year': 2.0, 'previously': 1.0, 'very': 1.0, 'cabin': 1.0, 'awful': 1.0, 'are': 1.0, 'strap': 1.0, 'purchasing': 1.0, 'spare': 1.0, 'made': 1.0, 'one': 1.0, 'uncomfortable': 1.0, 'different': 1.0, 'straps': 1.0, 'cross': 1.0}
Word element => {'fine': 1.0, 'just': 1.0, 'sleeps': 1.0, 'in': 1.0, 'for': 1.0, 'my': 1.0, 'this': 1.0, 'loved': 1.0, 'our': 1.0, 'up': 1.0, 'and': 2.0, 'him': 1.0, 'it': 2.0, 'i': 1.0, 'he': 2.0, 'shares': 1.0, 'son': 1.0, 'room': 1.0, 'set': 1.0}
Word element => {'bag': 1.0, 'storage': 1.0, 'sheet': 1.0, 'there': 1.0, 'ground': 1.0, 'low': 1.0, 'they': 1.0, 'that': 1.0, 'like': 1.0, 'own': 2.0, 'of': 1.0, 'out': 1.0, 'kicked': 1.0, 'getting': 1.0, 'the': 1.0, 'without': 1.0, 'by': 1.0, 'them': 1.0, 'can': 1.0, 'over': 1.0, 'stay': 1.0, 'longer': 1.0, 'very': 1.0, 'inches': 1.0, 'their': 1.0, 'model': 1.0, 'bed': 2.0, 'one': 1.0, 'sisters': 1.0, 'and': 3.0, 'sturdy': 1.0, 'his': 1.0, 'size': 1.0, 'with': 2.0, '6': 1.0, 'he': 1.0, 'cot': 2.0, 'close': 1.0, 'grandson': 1.0, 'purchased': 1.0, 'my': 3.0, 'small': 2.0, 'after': 1.0, 'fell': 1.0, 'regular': 1.0, 'in': 1.0, 'was': 1.0, 'to': 2.0, 'now': 1.0, 'than': 1.0, 'i': 2.0, '4': 1.0, 'won': 1.0, 'when': 2.0, 'this': 2.0, 'kids': 1.0, 'on': 1.0, 'your': 1.0, 'keep': 1.0, 'toddlers': 1.0, 'space': 1.0, 'these': 1.0, 'are': 3.0, 'limited': 1.0, 'foot': 1.0, 'enough': 1.0, 'love': 1.0, 'for': 1.0, 'where': 1.0, 'fit': 1.0, 't': 1.0, 'a': 1.0, 'grand': 1.0}
Word element => {'us': 1.0, 'buy': 1.0, 'use': 1.0, 'comfy': 1.0, 'watch': 1.0, 'room': 1.0, 'a': 1.0, 'tv': 1.0, 'front': 1.0, 'great': 1.0, 'the': 1.0, 'lay': 1.0, 'up': 1.0, 'opens': 1.0, 'super': 2.0, 'at': 1.0, 'was': 1.0, 'to': 3.0, '4': 1.0, 'on': 2.0, 'everyday': 1.0, 'which': 1.0, 'in': 2.0, 'is': 1.0, 'herself': 1.0, 'sleep': 1.0, 'my': 1.0, 'bought': 1.0, 'this': 1.0, 'it': 3.0, 'parent': 1.0, 'we': 1.0, 's': 2.0, 'but': 1.0, 'house': 1.0, 'out': 1.0, 'easy': 1.0, 'she': 3.0, 'her': 1.0, 'does': 1.0, 'between': 1.0, 'for': 2.0, 'visits': 1.0, 'brings': 1.0}
Word element => {'babe': 1.0, 'pricey': 1.0, 'they': 2.0, 'price': 2.0, 'friendly': 1.0, 'user': 1.0, 'is': 1.0, 'more': 1.0, 'clean': 1.0, 'easier': 1.0, 'than': 1.0, 'find': 1.0, 'but': 2.0, 'parts': 1.0, 'multiple': 1.0, 'design': 1.0, 'have': 3.0, 'tippees': 1.0, 'are': 2.0, 'feedings': 1.0, 'after': 1.0, 'internal': 1.0, 'fussy': 1.0, 'less': 1.0, 'was': 1.0, 'immediately': 1.0, 'downfall': 1.0, 'took': 1.0, 'sensitive': 1.0, 'tommee': 2.0, 'across': 1.0, 'and': 5.0, 'really': 2.0, 'second': 2.0, 'dr': 4.0, 'liked': 1.0, 'picky': 1.0, 'for': 2.0, 'brown': 4.0, 'first': 1.0, 'with': 2.0, 'it': 1.0, 'he': 1.0, 'planned': 1.0, 'used': 1.0, 'these': 3.0, 'the': 8.0, 'swear': 1.0, 'worth': 1.0, 'bottles': 4.0, 'my': 4.0, 'exclusively': 1.0, 'by': 1.0, 'you': 1.0, 'idea': 1.0, 'when': 1.0, 'them': 1.0, 'baby': 2.0, 'breastfed': 1.0, 'use': 1.0, 'only': 1.0, 'do': 2.0, 'much': 2.0, 'try': 1.0, 'as': 1.0, 'to': 6.0, 'our': 1.0, 'however': 1.0, 'opted': 1.0, 'came': 2.0, 'i': 4.0, 'introduce': 1.0, 'bottle': 2.0, 'time': 1.0, 'son': 2.0, 'did': 2.0, 'same': 1.0, 'if': 2.0, 'better': 1.0, 'those': 1.0, 'not': 1.0, 'which': 1.0, 'like': 2.0, 's': 4.0, 'we': 3.0, 'a': 2.0, 'see': 1.0, 'tippee': 1.0, 'wideneck': 1.0}
Word element => {'for': 1.0, 'great': 1.0, 'different': 1.0, 'been': 1.0, 'that': 1.0, 'll': 1.0, 'like': 1.0, 'has': 1.0, 'well': 1.0, 'oh': 1.0, 'forth': 1.0, 'back': 1.0, 'elec': 1.0, 'double': 1.0, 'in': 1.0, 'used': 1.0, 'about': 1.0, 'say': 1.0, '3': 1.0, 'to': 1.0, 'better': 1.0, 'should': 1.0, 'job': 1.0, 'the': 3.0, 'i': 5.0, 'be': 1.0, 'gonna': 1.0, 'getting': 2.0, 'yourself': 1.0, 'do': 1.0, 'lansinoh': 2.0, 'and': 6.0, 'looks': 1.0, 'it': 5.0, 'with': 1.0, 'doing': 1.0, 'this': 1.0, 'money': 1.0, 'anyways': 1.0, 'work': 2.0, 'but': 1.0, 'm': 1.0, 'frustration': 1.0, 'me': 2.0, 'not': 3.0, 'by': 1.0, 'just': 1.0, '10': 1.0, 'doesn': 2.0, 'minutes': 2.0, 'save': 1.0, 'my': 2.0, 'pump': 4.0, 'each': 1.0, 'breast': 1.0, 'barely': 1.0, 'am': 1.0, 'gives': 1.0, 'haul': 1.0, '2oz': 1.0, 'ounces': 1.0, 'after': 1.0, 'time': 1.0, 'so': 1.0, '5': 1.0, '20': 1.0, 'efficient': 1.0, 'one': 1.0, 'bought': 1.0, 'a': 2.0, 't': 2.0, 'could': 1.0, 'leave': 1.0, 'at': 1.0}
Word element => {'machine': 1.0, 'damage': 1.0, 'out': 1.0, 'reck': 1.0, 'longer': 1.0, 'down': 1.0, 'motor': 1.0, 'moisture': 1.0, 'let': 1.0, '10': 1.0, 'if': 2.0, 'of': 3.0, 'warmth': 1.0, 'from': 1.0, 'off': 1.0, 'me': 1.0, 'even': 2.0, 'can': 1.0, 'but': 2.0, 'work': 1.0, 'others': 1.0, 'for': 3.0, 'still': 1.0, 'seem': 1.0, 'well': 1.0, 'a': 2.0, 'so': 1.0, 'bit': 2.0, 'the': 7.0, 'is': 1.0, 'more': 1.0, 'tried': 1.0, 'i': 5.0, 'cant': 2.0, 'it': 3.0, 'ever': 1.0, 'get': 2.0, 'talked': 1.0, 'pump': 1.0, 'coming': 1.0, 'have': 2.0, 'disappointed': 1.0, 'mins': 1.0, 'seems': 1.0, 'also': 1.0, 'tube': 2.0, 'to': 7.0, 'risk': 1.0, 'do': 1.0, 'much': 1.0, 'only': 1.0, 'its': 1.0, 'and': 1.0, 'freezing': 1.0, 'milk': 4.0, 'you': 1.0, 'when': 1.0, 'starts': 1.0, 'my': 1.0, 'breasts': 1.0, 'condensating': 1.0, 'are': 1.0, 'because': 1.0, 'than': 1.0, 'maybe': 1.0, 'just': 1.0, 'was': 2.0, 'expecting': 1.0, 'express': 1.0, 'after': 1.0, 'expressing': 1.0, '10mins': 1.0, 'full': 1.0, 'found': 1.0, 'air': 2.0}
Word element => {'looks': 1.0, 'it': 1.0, 'works': 1.0, 'regrets': 1.0, 'no': 1.0, 'she': 2.0, 'i': 1.0, 'bougt': 1.0, 'my': 1.0, 'the': 2.0, 'pump': 1.0, 'friend': 1.0, 'highly': 1.0, 'and': 2.0, 'breast': 1.0, 'had': 1.0, 'pumpnfoe': 1.0, 'who': 1.0, 'perfect': 2.0, 'just': 1.0, 'recommends': 1.0, 'bhas': 1.0, 'delivered': 1.0}
Word element => {'choice': 1.0, 'best': 1.0, 'good': 1.0, 'very': 1.0}
Word element => {'money': 1.0, 'your': 1.0, 'waste': 1.0, 'don': 1.0, 'and': 2.0, 'shows': 1.0, 'new': 1.0, 'of': 5.0, 't': 1.0, 'a': 4.0, 'have': 2.0, 'bad': 1.0, 'no': 1.0, 'carry': 1.0, 'or': 1.0, 'one': 1.0, 'products': 3.0, 'improved': 1.0, 'idea': 1.0, 'picture': 1.0, 'got': 2.0, 'an': 1.0, 'first': 2.0, 'with': 1.0, 'this': 1.0, 'what': 2.0, 'the': 1.0, 'orange': 1.0, 'was': 1.0, 'everyone': 1.0, 'any': 1.0, 'all': 1.0, 'to': 1.0, 'else': 1.0, 'seems': 1.0, 'their': 2.0, 'if': 1.0, 'being': 1.0, 'i': 5.0, 'purple': 1.0, 'fan': 1.0, 'is': 1.0, '34': 4.0, 'm': 1.0, 'box': 2.0, 'that': 1.0, 'tommee': 1.0, 'old': 1.0, 'tippee': 1.0, 'said': 1.0, 'majority': 1.0, 'my': 1.0, 'review': 1.0}
Word element => {'s': 1.0, 'care': 1.0, 'different': 1.0, 'about': 1.0, 'money': 1.0, 'invest': 1.0, 'nightmare': 1.0, 'is': 2.0, 'service': 1.0, 'customer': 1.0, 'their': 1.0, 'doesn': 1.0, 'dealing': 1.0, 'because': 1.0, 'a': 3.0, 'within': 2.0, 'product': 1.0, 'bought': 1.0, 'one': 1.0, 'model': 1.0, 'died': 1.0, 'amount': 1.0, 'to': 1.0, 'had': 1.0, 'your': 1.0, 'time': 1.0, 'pump': 1.0, 'with': 1.0, 'it': 3.0, 'this': 2.0, 'and': 2.0, 'months': 1.0, 'company': 1.0, 'in': 1.0, 'also': 1.0, 'few': 1.0, 'same': 2.0, 'lost': 1.0, 'suction': 1.0, 't': 1.0, 'replace': 1.0, 'the': 3.0, 'lousy': 1.0, 'customers': 1.0, 'replacement': 1.0, 'of': 1.0}
Word element => {'getting': 1.0, 'double': 1.0, 'invest': 1.0, 'clean': 1.0, 'less': 1.0, 'is': 2.0, 'on': 1.0, 'instead': 1.0, 'ameda': 2.0, 'well': 1.0, 'work': 1.0, 'than': 1.0, 'does': 1.0, 'areas': 1.0, 'few': 1.0, 'quick': 1.0, 'was': 1.0, 'tell': 1.0, 'i': 2.0, 'suction': 1.0, 'be': 2.0, 'son': 1.0, 'feeding': 1.0, 'not': 2.0, 'me': 1.0, 'give': 1.0, 'what': 1.0, 'thought': 3.0, 'had': 1.0, 'as': 3.0, 'our': 2.0, 'to': 4.0, 'that': 1.0, 'been': 2.0, 'tommee': 2.0, 'the': 6.0, 'my': 3.0, 'when': 2.0, 'other': 1.0, 'would': 4.0, 'saw': 1.0, 'purely': 1.0, 'electric': 1.0, 'she': 3.0, 'it': 2.0, 'we': 5.0, 'a': 6.0, 'lot': 1.0, 'since': 1.0, 'and': 3.0, 'breast': 2.0, 'try': 2.0, 'in': 3.0, 'person': 1.0, 'out': 2.0, 'yours': 1.0, 'have': 1.0, 'fans': 1.0, 'of': 2.0, 'point': 1.0, 'tippee': 2.0, 'products': 1.0, 'where': 1.0, 'product': 1.0, 'for': 2.0, 'wife': 2.0, 'while': 1.0, 'same': 1.0, 'quality': 1.0, 'this': 3.0, 'perfect': 1.0, 'found': 2.0, 'items': 1.0, 'single': 2.0, 'easy': 1.0, 'sure': 1.0, 'pump': 4.0}
Word element => {'about': 1.0, '12mo': 1.0, '6': 1.0, '6mo': 1.0, '3mo': 1.0, '0': 1.0, 'stages': 1.0, 'attention': 1.0, 'second': 1.0, 'with': 1.0, 'off': 1.0, 'rinses': 1.0, 'calling': 1.0, 'older': 1.0, 'formula': 1.0, 'extra': 2.0, 'right': 2.0, 'look': 1.0, 'reduce': 1.0, 'just': 4.0, 'seem': 1.0, 'son': 1.0, 'a': 1.0, 'we': 1.0, 'other': 1.0, 'design': 2.0, 'the': 6.0, 'more': 1.0, 'tried': 1.0, 'every': 1.0, 'bar': 1.0, 'well': 2.0, 'like': 2.0, 'and': 3.0, 'none': 1.0, 'have': 2.0, 'of': 1.0, 'there': 1.0, 'they': 3.0, 'designed': 1.0, 'in': 2.0, 'will': 1.0, 'seems': 1.0, 'also': 1.0, 'as': 1.0, 'to': 6.0, 'our': 1.0, 'bit': 1.0, 'vent': 1.0, 'would': 1.0, 'these': 1.0, 'others': 1.0, 'out': 1.0, 'pacifier': 1.0, 'are': 1.0, 'comfortable': 1.0, 'little': 1.0, 'ridge': 2.0, 'it': 3.0, 'than': 1.0, 'does': 1.0, 'but': 1.0, 'food': 1.0, 'most': 1.0, 'work': 1.0, 'be': 2.0, 'suction': 1.0, 'when': 1.0, 'you': 1.0, '3': 1.0, 'make': 1.0, 'get': 2.0, 'sure': 1.0, 'an': 1.0, 'rinse': 1.0}
Word element => {'free': 1.0, 'bpa': 1.0, 'being': 1.0, 'and': 1.0, 'pressure': 1.0, 'having': 1.0, 'suction': 1.0, 'idea': 1.0, 'low': 1.0, 'brands': 1.0, 'my': 1.0, 'he': 2.0, 'plus': 1.0, 'of': 2.0, 'but': 1.0, 'the': 1.0, 'these': 3.0, 'prefers': 1.0, 's': 2.0, 'loves': 1.0, 'design': 1.0, 'other': 1.0, 'stem': 1.0, 'son': 1.0, 'others': 1.0, 'dr': 1.0, 'their': 1.0, 'pacificiers': 1.0, 'brown': 1.0, 'over': 1.0, 'tried': 1.0, 'i': 2.0, 'thin': 1.0, 'like': 2.0, 'too': 1.0, 'because': 1.0}
Word element => {'take': 1.0, 'that': 1.0, 'bad': 1.0, 'teethes': 1.0, 'it': 1.0, 'he': 1.0, 'but': 1.0, 'its': 1.0, 'they': 1.0, 'dr': 1.0, 'off': 1.0, 'good': 1.0, 'loves': 1.0, 'i': 3.0, 'son': 2.0, 'browns': 1.0, 'said': 1.0, 'is': 1.0, 'away': 1.0, 'and': 1.0, 'just': 1.0, 'know': 1.0, 'cant': 1.0, 'plus': 1.0, 'binkeys': 1.0, 'my': 2.0, 'for': 1.0, 'should': 1.0, '12': 1.0, 'months': 2.0, '18': 1.0, 'so': 1.0, 'ween': 1.0, 'him': 1.0}
Word element => {'brand': 1.0, 'this': 2.0, 'loves': 1.0, 'baby': 2.0, 'in': 1.0, 'dr': 1.0, 'has': 1.0, 'why': 1.0, 'like': 1.0, 'quality': 1.0, 'items': 1.0, 'mouth': 1.0, 'use': 1.0, 'brands': 1.0, 'i': 1.0, 'cheaper': 1.0, 'put': 1.0, 'product': 1.0, 'brown': 1.0, 'to': 1.0}
Word element => {'spit': 1.0, 'definitely': 1.0, 'it': 1.0, 'acid': 1.0, 'dr': 1.0, 'always': 1.0, 'reduce': 1.0, 'with': 1.0, 'is': 1.0, 'brand': 1.0, 'up': 1.0, 'and': 1.0, 'helps': 1.0, 'reflux': 1.0, 'my': 1.0, 'will': 1.0, 'baby': 1.0, 'be': 1.0, 'browns': 1.0, 'favorite': 1.0}
Word element => {'likes': 1.0, 'he': 1.0, 'than': 1.0, 'but': 1.0, 'them': 2.0, 'love': 1.0, 'pacifiers': 1.0, 'other': 1.0, 't': 1.0, 'any': 1.0, 'taken': 1.0, 'my': 1.0, 'i': 1.0, 'completely': 1.0, 'son': 1.0, 'brand': 1.0, 'better': 1.0, 'these': 1.0, 'hasn': 1.0, 'to': 1.0}
Word element => {'her': 1.0, 'of': 1.0, 'to': 1.0, 'i': 1.0, 'get': 1.0, 'and': 1.0, 'like': 1.0, 'timely': 1.0, 'in': 1.0, 'came': 1.0, 'a': 1.0, 'love': 1.0, 'it': 2.0, 'really': 1.0, 'manner': 1.0, 'they': 1.0, 'hollowed': 1.0, 'has': 1.0, 'portion': 1.0, 'how': 1.0, 'make': 1.0, 'these': 1.0, 'the': 2.0, 'nipple': 1.0, 'pacifiers': 1.0, 'rid': 1.0, 'out': 1.0, 'may': 1.0, 'easier': 1.0}
Word element => {'well': 1.0, 'nice': 2.0, 'rest': 1.0, 'above': 1.0, 'i': 1.0, 'always': 1.0, 'colors': 1.0, 'dr': 1.0, 'brown': 1.0, 'love': 1.0, 'too': 1.0, 'things': 1.0, 'they': 1.0, 'made': 1.0, 'the': 1.0, 'are': 1.0, 'a': 1.0, 'and': 1.0, 'very': 1.0, 'as': 1.0, 'step': 1.0}
Word element => {'somehow': 1.0, 'covered': 1.0, 'so': 1.0, 'part': 1.0, 'chewy': 1.0, 'eat': 1.0, 'bag': 1.0, 'and': 1.0, 'toss': 1.0, 'both': 1.0, 'when': 1.0, 'hurt': 1.0, 'avoiding': 1.0, 'figure': 1.0, 'not': 1.0, 'be': 1.0, 'suction': 2.0, 'have': 1.0, 'anti': 1.0, 'with': 2.0, 'chose': 1.0, 'cover': 1.0, 'knowing': 1.0, 'better': 1.0, 'nice': 1.0, 'big': 1.0, 'feel': 1.0, 'i': 5.0, 'for': 2.0, 'finally': 1.0, 'other': 2.0, 'goes': 1.0, 'refused': 1.0, 'keep': 1.0, 'three': 1.0, 'allow': 1.0, 'her': 3.0, 'before': 1.0, 'dr': 2.0, 'first': 1.0, 'do': 1.0, 'only': 2.0, 'wish': 1.0, 'accepted': 1.0, 'brown': 2.0, 'zone': 1.0, 'one': 2.0, 'months': 1.0, 'cat': 1.0, 'uses': 1.0, 'came': 1.0, 'pacifiers': 5.0, 'out': 1.0, 'deal': 1.0, 'the': 6.0, 'cap': 1.0, 'my': 2.0, 'it': 4.0, 'she': 7.0, 'baby': 1.0, 'will': 1.0, 'can': 1.0, 'but': 3.0, 'day': 1.0, 'use': 1.0, 'still': 2.0, 'brand': 1.0, 'into': 2.0, 'mouth': 1.0, 'are': 1.0, 'pacifier': 5.0, 'spits': 1.0, 'likes': 1.0, 'won': 1.0, 'kinds': 1.0, 'of': 2.0, 'right': 1.0, 'minutes': 1.0, 'might': 1.0, 's': 3.0, 't': 2.0, 'a': 4.0, 'few': 1.0, 'any': 1.0, 'all': 1.0, 'sleep': 1.0, 'to': 4.0}
Word element => {'think': 1.0, 'is': 1.0, 'i': 1.0, 'took': 1.0, 'easily': 1.0, 'quickly': 1.0, 'dr': 1.0, 'this': 1.0, 'to': 1.0, 'key': 1.0, 'newborn': 1.0, 'still': 1.0, 'brown': 1.0, 'and': 1.0, 'any': 1.0, 'ebf': 1.0, 'later': 1.0, 's': 1.0, 'prefers': 1.0, 'months': 1.0, '4': 1.0, 'over': 1.0, 'pacifier': 1.0, 'others': 1.0, 'small': 1.0, 'the': 1.0, 'nipple': 1.0, 'size': 1.0}
Word element => {'reuse': 1.0, 'cover': 2.0, 'since': 1.0, 'popping': 1.0, 'no': 1.0, 'instantly': 1.0, 'instead': 1.0, 'try': 2.0, 'brown': 2.0, 'dr': 2.0, 'like': 2.0, 'nuk': 2.0, 'luckily': 1.0, 'her': 2.0, '3': 1.0, 'bought': 1.0, 'till': 1.0, 'i': 4.0, 'decided': 1.0, 'pacifier': 2.0, 'been': 1.0, 'baby': 1.0, 'she': 3.0, 'have': 3.0, '1': 1.0, 'and': 3.0, 'change': 1.0, 'avent': 3.0, 'my': 1.0, '2': 1.0, 'more': 1.0, 'the': 3.0, 'comes': 1.0, 'to': 5.0, 'with': 1.0, 'only': 1.0, 'it': 5.0, 'of': 1.0, 'always': 1.0, 'months': 1.0, 'spit': 1.0, 'fits': 1.0, 'out': 2.0, 'hold': 1.0, 'yet': 1.0, 'using': 1.0, 'for': 2.0}
Word element => {'feel': 1.0, 'chemicals': 1.0, 'bad': 1.0, 'made': 1.0, 'responsibly': 1.0, 'are': 1.0, 'confident': 1.0, 'settles': 1.0, 'sucks': 1.0, 'actively': 1.0, 'take': 1.0, 'so': 1.0, 'time': 1.0, 'during': 1.0, 'down': 2.0, 'settle': 1.0, 'to': 1.0, 'need': 1.0, 'general': 1.0, 'pacifiers': 2.0, 'out': 1.0, 'would': 1.0, 'them': 2.0, 'baby': 2.0, 'but': 2.0, 'one': 1.0, 'which': 1.0, 'using': 2.0, 'for': 1.0, 'love': 1.0, 'fussy': 1.0, 'tried': 2.0, 'took': 1.0, 'nuk': 1.0, 'my': 1.0, 'avent': 1.0, 'the': 1.0, 'products': 1.0, 'these': 3.0, 'several': 1.0, 'gag': 1.0, 'of': 2.0, 'hospital': 1.0, 'her': 3.0, 'different': 1.0, 'and': 5.0, 'away': 1.0, 'brands': 1.0, 'does': 2.0, 'either': 1.0, 'spit': 1.0, 'mam': 1.0, 'right': 2.0, 'finally': 1.0, 'since': 2.0, 't': 1.0, 's': 1.0, 'a': 1.0, 'contain': 1.0, 'when': 1.0, 'am': 1.0, 'i': 5.0, 'fan': 1.0, 'don': 1.0, 'browns': 1.0, 'really': 1.0, 'on': 1.0, 'dr': 2.0, 'or': 1.0, 'bottles': 1.0, 'she': 3.0, 'it': 2.0, 'has': 1.0, 'ever': 1.0, 'been': 1.0, 'not': 1.0, 'brown': 1.0, 'in': 2.0}
Word element => {'to': 1.0, 'prefers': 1.0, 'and': 1.0, 'this': 2.0, 'buying': 1.0, 'my': 1.0, 'the': 2.0, 'flat': 1.0, 'shape': 1.0, 'second': 1.0, 'others': 1.0, 'son': 1.0, 'is': 2.0, 'time': 1.0, 'i': 2.0, 'can': 1.0, 'it': 1.0, 'tell': 1.0, 'am': 1.0, 'teat': 1.0}
Word element => {'love': 1.0, 'who': 1.0, 'friends': 1.0, 'gave': 1.0, 'so': 1.0, 'and': 1.0, 'better': 1.0, 'own': 1.0, 'likes': 1.0, 'pacifier': 1.0, 'like': 1.0, 'my': 2.0, '7': 1.0, 'is': 1.0, 'son': 2.0, 'his': 1.0, 'what': 1.0, 'hands': 1.0, 'bottles': 1.0, 'brown': 1.0, 'dr': 1.0, 'because': 1.0, 'month': 1.0, 'ordered': 1.0, 'old': 1.0, 'i': 2.0, 'since': 1.0, 'it': 3.0, 'he': 3.0, 'to': 1.0, 'fingers': 1.0, 'was': 1.0, 'uses': 1.0, 'months': 1.0, 'but': 1.0, 'doesn': 1.0, '2': 1.0, 't': 1.0}
Word element => {'toddler': 1.0, 'for': 1.0, 'fit': 1.0, 'them': 1.0, 'a': 2.0, 'have': 1.0, 'likes': 1.0, 'colors': 1.0, 'daughter': 1.0, 'my': 1.0, 'are': 1.0, 'tried': 1.0, 'as': 1.0, 'just': 1.0, 'mouth': 1.0, 'than': 1.0, 'they': 1.0, 'better': 1.0, 'pacifier': 1.0, 'pictured': 1.0, 'great': 1.0, 'her': 1.0, 'brands': 1.0, 'other': 1.0, 'we': 1.0}
Word element => {'return': 1.0, 'to': 1.0, 'my': 1.0, 'worth': 1.0, 'even': 1.0, 'frankly': 1.0, 'quite': 1.0, 'entire': 1.0, 'time': 1.0, 'they': 1.0, 'smh': 1.0, 'stickers': 1.0, 't': 1.0, 'these': 1.0, 'the': 1.0, 'are': 1.0, 'things': 1.0, 'of': 1.0, 'set': 1.0, 'tiny': 1.0, 'you': 1.0, 'door': 1.0, 'disappointment': 1.0, 'and': 1.0, 'horrible': 1.0, 'would': 1.0, 'fit': 1.0, 'one': 1.0, 'aren': 1.0, 'rip': 1.0, 'when': 1.0, 'cupboard': 1.0, 'them': 2.0, 'on': 1.0, 'peel': 1.0}
Word element => {'see': 1.0, 'others': 1.0, 'grandchildren': 1.0, 'for': 1.0, 'size': 1.0, 'to': 1.0, 'still': 1.0, 'right': 1.0, 'bought': 1.0, 'pink': 1.0, 'like': 1.0, 'and': 2.0, 'they': 2.0, 'let': 1.0, 'my': 1.0, 'the': 1.0, 'kids': 1.0, 'blue': 1.0, 'a': 2.0, 'them': 2.0, 'love': 1.0, 'were': 1.0}
Word element => {'timely': 1.0, 'polish': 1.0, 'just': 1.0, 'than': 1.0, 'on': 1.0, 'nails': 1.0, 'a': 1.0, 'but': 1.0, 'put': 1.0, 'arrived': 1.0, 'to': 1.0, 'the': 1.0, 'it': 1.0, 'fingernail': 1.0, 'tried': 1.0, 'i': 1.0, 'smeared': 1.0, 'other': 1.0, 'were': 1.0, 'that': 1.0, 'manner': 1.0, 'they': 1.0, 'and': 1.0, 'perfect': 1.0, 'in': 1.0}
Word element => {'not': 1.0, 'stickers': 1.0, 'crossword': 1.0, 'rings': 1.0, 'key': 1.0, 'thin': 1.0, 'will': 1.0, 'chains': 1.0, 'but': 1.0, 'small': 1.0, 'items': 1.0, 'bags': 2.0, 'very': 1.0, 'pinatas': 1.0, 'puzzle': 1.0, 'this': 2.0, 'have': 1.0, 'for': 1.0, 'which': 1.0, 'nice': 1.0, 'the': 1.0, 'buy': 1.0, 'cheap': 1.0, 'again': 1.0, 'are': 1.0, 'is': 1.0, 'party': 2.0, 'a': 1.0, 'them': 1.0, 'look': 1.0, 'to': 1.0, 'you': 1.0, 'and': 3.0, 'get': 1.0, 'wands': 1.0}
Word element => {'texture': 1.0, 'colors': 1.0, 'nice': 1.0, 'very': 1.0, 'mat': 1.0, 'order': 1.0, 'to': 2.0, 'package': 1.0, 'just': 1.0, 'the': 2.0, 'more': 1.0, 'my': 1.0, 'a': 1.0, 'results': 1.0, 'room': 1.0, 'try': 1.0, 'loved': 1.0, 'bought': 1.0, 'i': 2.0, 'it': 1.0, 'and': 2.0, 'two': 1.0, 'complete': 1.0, 'in': 1.0, 'daughter': 1.0, 'area': 1.0, 's': 1.0}
Word element => {'and': 1.0, 'colours': 1.0, 'but': 1.0, 'choke': 1.0, 'pattern': 1.0, 'could': 1.0, 'love': 1.0, 'a': 1.0, 'this': 1.0, 'that': 1.0, 'however': 1.0, 'there': 1.0, 'the': 1.0, 'are': 2.0, 'small': 1.0, 'gorgeous': 1.0, 'on': 1.0, 'pieces': 1.0, 'young': 1.0, 'child': 1.0}
Word element => {'clean': 1.0, 'find': 1.0, 'you': 1.0, 'the': 2.0, 'of': 1.0, 'most': 1.0, 'like': 1.0, 'other': 1.0, 'smell': 1.0, 'chemical': 1.0, 'in': 1.0, 'apart': 1.0, 'taking': 1.0, 'and': 3.0, 'walking': 1.0, 'baby': 1.0, 'stores': 1.0, 'my': 1.0, 'roll': 1.0, 'enough': 1.0, 'big': 1.0, 'stay': 1.0, 'mats': 1.0, 'for': 1.0, 'that': 1.0, 'something': 1.0, 'have': 1.0, 'thing': 1.0, 'together': 1.0, 'it': 2.0, 'this': 2.0, 'easy': 1.0, 'she': 2.0, 'learn': 1.0, 'crawl': 1.0, 'on': 1.0, 'to': 3.0, 'was': 1.0, 'now': 1.0, 'is': 1.0, 'dosent': 2.0, 'loves': 1.0, 'thats': 1.0}
Word element => {'worth': 1.0, 'very': 1.0, 'be': 1.0, 'vibrant': 1.0, 'right': 1.0, 'her': 1.0, 'definitely': 1.0, 'together': 1.0, 'back': 1.0, 'and': 1.0, 'my': 1.0, 'the': 2.0, 'set': 1.0, 'up': 2.0, 'taking': 1.0, 'today': 1.0, 'just': 1.0, 'it': 1.0, 'with': 1.0, 'this': 1.0, 'to': 2.0, 'had': 1.0, 'sturdy': 1.0, 'got': 1.0, 'colors': 1.0, 'blast': 1.0, 'putting': 1.0, 'old': 1.0, 'i': 1.0, 'month': 1.0, 'brighten': 1.0, 's': 1.0, 'room': 2.0, 'seems': 1.0, 'in': 2.0, 'pieces': 1.0, 'we': 1.0, '15': 1.0, 'a': 1.0, 'made': 1.0, 'them': 1.0, 'out': 1.0}
Word element => {'will': 1.0, 'good': 1.0, 'square': 1.0, '16': 1.0, 'it': 4.0, 'covers': 1.0, 'a': 1.0, 'ago': 1.0, 'very': 1.0, 'while': 1.0, 'bought': 1.0, 'feet': 1.0, 'buy': 1.0, 'you': 1.0, 'so': 1.0, 'pretty': 1.0, 'nice': 1.0, 'space': 1.0, 'love': 1.0, 'for': 1.0, 'the': 1.0, 'price': 1.0, 'baby': 1.0, 'to': 1.0, 'play': 1.0}
Word element => {'coverage': 1.0, 'for': 1.0, 'set': 1.0, 'rooms': 1.0, 'another': 1.0, 'buying': 1.0, 'planning': 1.0, 'things': 1.0, 'two': 2.0, 'i': 2.0, 'buy': 1.0, 'up': 1.0, 'kid': 1.0, 'cement': 1.0, 'great': 1.0, 'on': 4.0, 'now': 1.0, 'was': 1.0, 'chew': 1.0, 'either': 1.0, 'but': 2.0, 'this': 1.0, 'it': 2.0, 'stopped': 1.0, 've': 1.0, 'after': 1.0, 'floor': 1.0, 'addition': 1.0, 'possibly': 1.0, 'the': 2.0, 'kiddo': 2.0, 'about': 1.0, 'pulls': 1.0, 'bedroom': 1.0, 'wait': 1.0, 'to': 4.0, 'our': 1.0, 'that': 1.0, 'hardwood': 1.0, 'in': 1.0, 'mused': 1.0, 'some': 1.0, 'has': 1.0, 'peva': 1.0, 'edges': 1.0, 'get': 1.0, 'and': 1.0, 'using': 1.0, 'which': 1.0, 'a': 1.0, 's': 1.0, 'might': 1.0, 'more': 2.0, 'around': 1.0, 'or': 2.0, 'teething': 1.0, 'random': 1.0, 'chewing': 1.0}
Word element => {'later': 1.0, 'again': 1.0, 'it': 1.0, 'using': 1.0, 'stop': 1.0, 'i': 1.0, 'use': 1.0, 'already': 1.0, 'inside': 1.0, 'corners': 1.0, 'hoping': 1.0, 'had': 1.0, 'to': 3.0, 'the': 2.0, 'how': 1.0, 'and': 2.0, 'my': 1.0, 'pull': 1.0, 'baby': 1.0, 'figures': 1.0, 'she': 1.0, 'at': 1.0, 'animal': 1.0, '7': 1.0, 'few': 1.0, 'sharp': 1.0, 'months': 1.0, 'learned': 1.0, 'has': 1.0, 'since': 1.0, 'a': 1.0, 'teeth': 1.0}
Word element => {'crib': 1.0, 'other': 1.0, 'let': 1.0, 'room': 2.0, 'days': 1.0, 'those': 1.0, 'needed': 1.0, 'back': 1.0, 'disturb': 1.0, 'to': 3.0, 'have': 1.0, 'got': 1.0, 'didn': 1.0, 'walking': 1.0, 'was': 1.0, 'space': 1.0, 'seeming': 1.0, 'enclosed': 1.0, 'wheeled': 1.0, 'an': 1.0, 'they': 2.0, 'them': 2.0, 'taking': 1.0, 'newborns': 1.0, 'were': 3.0, 'that': 1.0, 'babies': 2.0, 'twins': 1.0, 'when': 3.0, 'easily': 1.0, 'folds': 1.0, 'still': 1.0, 'lighter': 1.0, 'well': 1.0, 'bought': 1.0, 'i': 4.0, 'are': 1.0, 'out': 3.0, 'strolling': 1.0, 'place': 1.0, 'asleep': 1.0, 'the': 8.0, 'these': 1.0, 'my': 3.0, 'stroller': 3.0, 'use': 1.0, 'once': 1.0, 'pair': 1.0, 'of': 2.0, 'around': 2.0, 'more': 3.0, 'is': 1.0, 'with': 2.0, 'fell': 1.0, 'felt': 1.0, 'it': 2.0, 'product': 1.0, 'for': 2.0, 'great': 1.0, 'comfortable': 2.0, 'twin': 1.0, 'little': 1.0, 'also': 2.0, 'secure': 1.0, 'elegant': 1.0, 'in': 6.0, 'their': 1.0, 'rest': 1.0, 'carrycot': 1.0, 'house': 1.0, 'unfolds': 1.0, 're': 1.0, 'bassinets': 2.0, 'suspect': 1.0, 'from': 1.0, 'while': 2.0, 'about': 1.0, 'much': 1.0, 'home': 1.0, 'made': 1.0, 'weight': 1.0, 'because': 1.0, 'than': 2.0, 'carseat': 1.0, 'early': 2.0, 't': 1.0, 'a': 2.0, 'we': 5.0, 's': 1.0, 'and': 5.0, 'too': 1.0}
Word element => {'declined': 1.0, 'he': 1.0, 'and': 1.0, 'the': 1.0, 'my': 1.0, 'it': 2.0, 'offer': 1.0, 'offered': 1.0, 'impressed': 1.0, 'outdoorsman': 1.0, 'not': 1.0, 'son': 1.0, 'with': 1.0, 'this': 1.0, 'to': 1.0, 'product': 1.0, 'i': 2.0, 'doubt': 1.0, 'will': 1.0, 'mistake': 1.0, 'ever': 1.0, 'use': 1.0}
Word element => {'fun': 1.0, 'and': 1.0, 'makes': 1.0, 'my': 1.0, 'now': 1.0, '2': 1.0, 'for': 2.0, 'herself': 1.0, 'year': 1.0, 'it': 1.0, 'can': 1.0, 'old': 1.0, 'by': 1.0, 'wash': 1.0, 'hands': 1.0, 'her': 2.0, 'me': 1.0, 'easy': 1.0, 'all': 1.0}
Word element => {'not': 1.0, 'cheap': 1.0, 'probably': 1.0, 's': 2.0, 'unscrewed': 1.0, 'gets': 1.0, 'fault': 1.0, 'that': 2.0, 'time': 2.0, 'little': 1.0, 'product': 1.0, 'short': 1.0, 'handle': 1.0, 'for': 1.0, 'my': 2.0, 'armed': 1.0, 'the': 4.0, 'ones': 1.0, 'all': 1.0, 'able': 1.0, 'helpful': 1.0, 'faucet': 2.0, 'is': 2.0, 'aside': 1.0, 'over': 1.0, 'on': 1.0, 'only': 1.0, 'this': 2.0, 'drawback': 1.0, 'but': 1.0, 'toddler': 1.0, 'very': 1.0, 'from': 1.0, 'being': 1.0, 'now': 1.0, 'to': 1.0, 'gadget': 1.0, 'turn': 1.0, 'water': 1.0}
Word element => {'easliy': 1.0, 'just': 1.0, 'pretty': 1.0, 'pulling': 1.0, 'at': 1.0, 'little': 1.0, 'of': 1.0, '34': 2.0, 'boy': 1.0, 'adjustable': 1.0, 'the': 1.0, 'leverage': 1.0, 'now': 1.0, 'big': 1.0, 'son': 1.0, 'type': 1.0, 'is': 3.0, 'handle': 1.0, 'for': 1.0, 'loves': 1.0, 'durable': 1.0, 'first': 1.0, 'hard': 2.0, 'he': 2.0, 'it': 2.0, 'maybe': 1.0, 'without': 1.0, 'can': 1.0, 'idea': 1.0, 'that': 1.0, 'our': 2.0, 'bought': 1.0, 'a': 2.0, 'and': 2.0, 'seems': 1.0, 'wash': 1.0, 'his': 1.0, 'hands': 1.0, 'himself': 1.0}
Word element => {'was': 1.0, 'like': 1.0, 'one': 1.0, 'not': 1.0, 'knob': 1.0, 'spoke': 1.0, 'with': 1.0, '2': 1.0, 'but': 1.0, 'waste': 1.0, 'want': 1.0, 'way': 1.0, 'has': 1.0, 'think': 1.0, '3': 1.0, 'in': 1.0, 'turn': 1.0, 'long': 1.0, 'stool': 1.0, 'what': 2.0, 'her': 1.0, 'old': 1.0, 'faucets': 1.0, 'this': 2.0, 'just': 1.0, 'independent': 1.0, 'washing': 1.0, 'installed': 1.0, 'because': 2.0, 'perfectly': 1.0, 'and': 1.0, 'for': 3.0, 'check': 1.0, 'handle': 2.0, 'it': 2.0, 'she': 2.0, 'water': 1.0, 'lever': 1.0, '4': 1.0, 'i': 3.0, 'two': 1.0, 'works': 1.0, 'its': 1.0, 'my': 1.0, 'yr': 1.0, 'made': 2.0, 'still': 1.0, 'that': 1.0, 'been': 1.0, 'initially': 1.0, 'when': 1.0, 'wouldn': 1.0, 'got': 1.0, 's': 2.0, 'a': 3.0, 'we': 2.0, 't': 2.0, 'hands': 1.0, 'the': 2.0, 'off': 1.0, 'faucet': 2.0, 'our': 1.0, 'to': 1.0, 'as': 2.0, 'all': 1.0, 'anyway': 1.0, 'don': 1.0}
Word element => {'herself': 1.0, 'everything': 1.0, 'lean': 1.0, 'on': 2.0, 'wash': 2.0, 'needs': 1.0, 'her': 2.0, 'having': 1.0, 'does': 1.0, 'toddler': 1.0, 'work': 1.0, 'but': 1.0, 'help': 1.0, 'i': 1.0, 'have': 1.0, 'able': 1.0, 'perfect': 1.0, 'this': 1.0, 'first': 1.0, 'turning': 1.0, 'she': 3.0, 'it': 1.0, 'extender': 1.0, 'get': 1.0, 'do': 1.0, 'great': 1.0, 'hands': 2.0, 'without': 1.0, 'the': 4.0, 'my': 2.0, 'faucet': 1.0, 'they': 1.0, 'be': 1.0, 'to': 6.0, 'now': 1.0, 'sink': 1.0, 'wants': 1.0, 'days': 1.0, 'kept': 1.0, 'water': 1.0, 'and': 3.0, 'play': 1.0, 'few': 1.0, 'wet': 1.0, 'just': 1.0, 'when': 1.0, 'for': 2.0, 'girl': 1.0, 'who': 1.0}
Word element => {'him': 1.0, 'for': 1.0, 'the': 1.0, 'turn': 1.0, 'son': 1.0, 'faucet': 1.0, 'is': 1.0, 'on': 2.0, 'lifesaver': 1.0, 'own': 1.0, 'baby': 1.0, 'my': 1.0, 'running': 1.0, 'new': 1.0, 'his': 2.0, 'a': 2.0, 'can': 1.0, 'without': 1.0, 'all': 1.0, 'do': 1.0, 'me': 1.0, 'pottying': 1.0, 's': 1.0, 'with': 1.0, 'this': 1.0, 'duty': 1.0, 'in': 1.0, 'to': 1.0}
Word element => {'sufficient': 1.0, 'self': 1.0, 'pretty': 1.0, 'old': 1.0, 'year': 1.0, '5': 1.0, 'now': 1.0, 'combination': 1.0, 'in': 2.0, 'bought': 1.0, 'break': 1.0, 'tighten': 1.0, 'want': 1.0, 'off': 1.0, 'is': 1.0, 'fall': 1.0, 'didn': 1.0, 'wouldn': 1.0, 'like': 1.0, 'only': 1.0, 'tightened': 1.0, 'so': 1.0, 'flimsy': 1.0, 'little': 1.0, 'and': 3.0, 'couldn': 1.0, 'extender': 2.0, 'enabled': 1.0, 'to': 3.0, 'over': 1.0, 'basin': 1.0, 'stool': 1.0, 'material': 1.0, 'step': 1.0, 'them': 1.0, 'arrived': 1.0, 'having': 1.0, 'until': 1.0, 'clamps': 1.0, 'kiddos': 1.0, 'sink': 2.0, 'next': 1.0, 'that': 1.0, 'perfect': 1.0, 'kids': 1.0, 'this': 2.0, 'felt': 2.0, 'it': 5.0, 'for': 1.0, 'love': 1.0, 'handle': 1.0, 'yesterday': 1.0, 'bathroom': 1.0, 'fits': 1.0, 'tight': 1.0, 'my': 2.0, 'reach': 2.0, 'the': 10.0, 'a': 4.0, 't': 3.0, '2': 1.0, 'squishy': 1.0, 'but': 1.0, 'still': 1.0, 'or': 1.0, 'they': 1.0, 'faucet': 2.0, 'sponge': 1.0, 'grips': 1.0, 'screw': 2.0, 'with': 2.0, 'piece': 2.0, 'i': 3.0, 'two': 1.0, 'sides': 1.0, 'water': 1.0, 'together': 1.0}
Word element => {'for': 1.0, 'wash': 1.0, 'what': 1.0, 'her': 2.0, 'watch': 1.0, 'time': 1.0, 'every': 1.0, 'reminds': 1.0, 'who': 1.0, 'ask': 1.0, '8217': 1.0, 'anything': 1.0, 'is': 1.0, 'petite': 1.0, 'a': 1.0, 'can': 2.0, 'more': 1.0, '2': 1.0, 't': 1.0, 'to': 3.0, 'be': 1.0, 'year': 1.0, 'very': 1.0, 'old': 1.0, 'i': 2.0, 'me': 1.0, 'reach': 2.0, 'have': 1.0, 'able': 1.0, 'happy': 1.0, 'hands': 1.0, 'she': 2.0, 'after': 1.0, 'installation': 1.0, 'so': 1.0}
Word element => {'other': 1.0, 'for': 1.0, 'problem': 1.0, 'fix': 1.0, 'i': 2.0, 'job': 1.0, 'the': 4.0, 'does': 1.0, 'find': 1.0, 'own': 1.0, 'tap': 1.0, 'it': 4.0, 'this': 1.0, 'purpose': 1.0, 'learnt': 1.0, 'has': 2.0, 'well': 3.0, 'plastic': 1.0, 'but': 1.0, '2': 1.0, 'can': 1.0, 'use': 1.0, 'be': 1.0, 'served': 1.0, 'or': 1.0, 'to': 3.0, 'our': 4.0, 'ordering': 1.0, 'better': 1.0, '5yrs': 1.0, 'that': 2.0, 'almost': 1.0, 'twist': 1.0, 'on': 2.0, 'is': 2.0, 'her': 1.0, 'even': 1.0, 'attachment': 1.0, 'handle': 3.0, 'made': 1.0, 'contemplating': 1.0, 'so': 1.0, 'doesn': 1.0, 'am': 1.0, 'when': 1.0, 'you': 1.0, 'seem': 1.0, 'daughter': 1.0, 'pull': 1.0, 'push': 1.0, 'bathroom': 1.0, 'another': 1.0, 'tight': 1.0, 'extended': 1.0, 'though': 1.0, 'very': 1.0, 't': 2.0, 'could': 1.0, 'we': 1.0}
Word element => {'buy': 1.0, 'good': 1.0, 'grandchildren': 1.0, 'was': 1.0, 'plumbing': 1.0, 'handles': 1.0, 'researching': 1.0, 'fine': 1.0, 'took': 1.0, 'reach': 1.0, 'the': 1.0, 'currently': 1.0, 'sites': 1.0, 'in': 1.0, 'on': 2.0, 'wheelchair': 1.0, 'it': 3.0, 'this': 2.0, 'my': 1.0, 'bathroom': 1.0, 'making': 1.0, 'difficult': 1.0, 'and': 1.0, 'extenders': 1.0, 'extender': 1.0, 'wife': 1.0, 'chance': 1.0, 'one': 1.0, 'faucet': 2.0, 'they': 1.0, 'has': 1.0, 'were': 1.0, 'that': 1.0, 'i': 2.0, 'two': 1.0, 'is': 2.0, 'benefit': 1.0, 'or': 1.0, 'three': 1.0, 'times': 1.0, 'to': 1.0, 'our': 1.0, 'as': 2.0, 'worked': 1.0, 'love': 1.0, 'for': 1.0, 'expensive': 1.0, 'a': 1.0, 'out': 1.0, 'an': 1.0, 'added': 1.0}
Word element => {'ducks': 1.0, 'no': 1.0, 'colors': 1.0, 'versions': 1.0, 'adult': 1.0, 'came': 1.0, 'if': 1.0, 'stars': 1.0, '5': 1.0, 'them': 1.0, 'give': 1.0, 'i': 1.0, 'work': 1.0, 'they': 2.0, 'room': 1.0, 'nursing': 1.0, 'her': 1.0, 'sink': 1.0, 'muted': 1.0, 'd': 1.0, 'extenders': 1.0, 'handle': 1.0, 'for': 2.0, 'in': 4.0, 'my': 1.0, 'is': 1.0, 'faucet': 1.0, 'bought': 1.0, 'we': 1.0, 'home': 1.0, 'she': 1.0, 'law': 1.0, 'a': 1.0, 'wheelchair': 1.0, 'great': 1.0, '2': 1.0, 'the': 2.0, 'mother': 1.0, 't': 1.0, 'extender': 1.0, '1': 1.0, 'and': 3.0, 'couldn': 1.0, 'reach': 1.0, 'handles': 1.0}
Word element => {'than': 1.0, 'use': 1.0, 'style': 1.0, 'it': 4.0, 'children': 1.0, 'this': 3.0, 'and': 5.0, 'few': 1.0, 'plus': 1.0, 'essentials': 1.0, 'change': 1.0, '2': 1.0, 'the': 6.0, 'things': 1.0, 'one': 2.0, 'i': 3.0, 'hold': 1.0, 'needed': 1.0, 'backpack': 4.0, 'easy': 2.0, 'was': 1.0, 'as': 1.0, 'to': 8.0, 'looking': 1.0, 'size': 1.0, 'a': 6.0, 'love': 1.0, 'for': 3.0, 'fit': 2.0, 'very': 5.0, 'or': 1.0, 'more': 1.0, 'is': 3.0, 'holds': 1.0, 'diaper': 2.0, 'stroller': 1.0, 'secure': 1.0, 'quality': 1.0, 'good': 2.0, 'clean': 1.0, 'onto': 1.0, 'price': 1.0, 'expandable': 1.0, 'strap': 1.0, 'are': 3.0, 'straps': 1.0, 'bags': 1.0, 'compared': 1.0, 'toys': 1.0, 'bag': 2.0, 'need': 1.0, 'other': 1.0, 'what': 1.0}
Word element => {'perfectly': 1.0, 'pump': 1.0, 'existing': 1.0, 'my': 1.0, 'fit': 1.0, 'these': 1.0}
Word element => {'satisfied': 1.0, 'if': 1.0, 'see': 1.0, 'followed': 1.0, 'never': 1.0, 'another': 1.0, 'sending': 1.0, 'responsive': 1.0, 'packing': 1.0, 'slip': 1.0, 'no': 1.0, '3': 1.0, 'but': 1.0, 'medela': 1.0, 'tubing': 3.0, 'reasons': 1.0, 'picture': 1.0, 'when': 1.0, 'is': 2.0, 'me': 1.0, '1': 1.0, 'up': 1.0, 'there': 1.0, 'of': 1.0, 'three': 1.0, 'i': 2.0, 'packaging': 1.0, 'for': 2.0, 'in': 1.0, 'company': 1.0, 'disappointed': 1.0, 'with': 1.0, 'it': 1.0, 'misleading': 1.0, 'this': 1.0, 'because': 1.0, 'not': 1.0, 'to': 1.0, 'productthe': 1.0, 'was': 4.0, 'product': 1.0, '2': 1.0, 'the': 1.0, 'open': 1.0, 'received': 1.0}
Word element => {'style': 1.0, 'pump': 1.0, 'with': 1.0, 'perfectly': 1.0, 'works': 1.0, 'medela': 1.0, 'by': 1.0, 'same': 1.0, 'as': 1.0, 'ones': 1.0, 'sold': 1.0, 'online': 1.0, 'in': 2.0, 'easier': 1.0, 'but': 1.0, 'much': 1.0, 'store': 1.0, 'to': 1.0, 'order': 1.0}
Word element => {'bumgenius': 1.0, 'would': 1.0, 'wish': 1.0, '8': 1.0, 'snaps': 1.0, 'adjustable': 1.0, 'they': 1.0, 'the': 3.0, 'great': 2.0, 'such': 1.0, 'these': 1.0, 'is': 2.0, 'disposable': 1.0, 'are': 3.0, 'from': 1.0, '11': 1.0, 'very': 1.0, 'old': 1.0, 'problems': 1.0, 'year': 1.0, 'free': 1.0, 'in': 1.0, 'children': 2.0, 'with': 1.0, 'that': 2.0, 'i': 7.0, 'worth': 1.0, '2': 1.0, 'money': 1.0, 'love': 2.0, 'my': 3.0, 'child': 1.0, 'to': 1.0, 'had': 1.0, 'so': 1.0, 'and': 3.0, 'using': 2.0, 'know': 1.0, 'them': 2.0, 'started': 2.0, 'not': 1.0, 'ago': 2.0, 'a': 2.0, 'feeling': 1.0, 'month': 1.0, 'months': 1.0, 'on': 1.0, 'chemicals': 1.0, 'active': 1.0, 'have': 3.0, 'years': 1.0, 'absolutely': 1.0, 'leakage': 1.0, 'diapers': 1.0, 'even': 1.0, 'use': 1.0}
Word element => {'wonderful': 1.0, 'absolutely': 1.0, 'make': 1.0, 'or': 1.0, 'detergents': 1.0, 'of': 1.0, 'the': 1.0, 'all': 1.0, 'soaps': 1.0, 'bar': 1.0, 'even': 1.0, 'soothing': 1.0, 'started': 1.0, 'my': 2.0, 'oils': 1.0, 'nourishing': 1.0, 'face': 1.0, 'absence': 1.0, 'so': 2.0, 'that': 2.0, 'is': 1.0, 'natural': 1.0, 'on': 1.0, 'soap': 2.0, 'for': 1.0, 'using': 1.0, 'and': 2.0, 'handmade': 1.0, 'skin': 1.0, 'this': 2.0, 'it': 1.0, 'never': 1.0, 'knew': 1.0, 'was': 1.0, 'i': 2.0, 'commercial': 1.0, 'different': 1.0, 'chemicals': 1.0, 'from': 1.0}
Word element => {'valves': 1.0, 'old': 1.0, 'ate': 1.0, 'track': 1.0, 'my': 1.0, 'store': 1.0, 'of': 2.0, 'saved': 2.0, 'trying': 1.0, 'from': 1.0, 'amazon': 1.0, 'cups': 1.0, 'hassle': 1.0, 'to': 1.0, 'buying': 2.0, 'the': 3.0, 'these': 1.0, 'down': 1.0, 'a': 1.0, 'in': 1.0, 'me': 2.0, 'and': 1.0, 'money': 1.0, 'new': 1.0, 'after': 1.0, 'disposal': 1.0}
Word element => {'cups': 1.0, 'sippy': 1.0, 'happy': 1.0, 'is': 1.0, 'son': 1.0, 'to': 1.0, 'hours': 1.0, 'for': 1.0, 'search': 1.0, 'more': 1.0, 'my': 1.0, 'retail': 1.0, 'like': 1.0, 'has': 1.0, 'he': 1.0, 'stores': 1.0, 'around': 1.0, 'a': 1.0, 'works': 1.0, 'charm': 1.0, 'didn': 1.0, 't': 1.0, 'have': 1.0}
Word element => {'source': 1.0, 'from': 1.0, 'buying': 1.0, 'number': 1.0, 'prices': 1.0, 'are': 1.0, 'there': 1.0, 'of': 2.0, 'total': 1.0, 'better': 1.0, 'packs': 2.0, 'a': 1.0, '4': 2.0, 'reality': 1.0, 'think': 1.0, 'deceiving': 1.0, 'for': 2.0, 'is': 2.0, 'recommend': 1.0, 'add': 1.0, 'might': 1.0, 'you': 4.0, 'were': 1.0, 'that': 1.0, 't': 1.0, '2': 2.0, 'the': 3.0, 'two': 1.0, 'valves': 3.0, 'each': 2.0, 'this': 1.0, 'wouldn': 1.0, 'with': 2.0, 'only': 1.0, 'but': 1.0, 'getting': 1.0, 'get': 2.0}
Word element => {'happier': 1.0, 'plugs': 1.0, 'replacement': 1.0, 'for': 2.0, 'over': 1.0, 'and': 2.0, 'couldn': 2.0, 'searching': 1.0, 'be': 1.0, 'been': 1.0, 'all': 1.0, 'have': 1.0, 'finally': 1.0, 'we': 1.0, 'them': 2.0, 'a': 1.0, 'anywhere': 1.0, 'find': 1.0, 'found': 1.0, 'here': 1.0, 't': 2.0, 'great': 1.0, 'any': 1.0, 'price': 1.0}
Word element => {'playtex': 1.0, 'must': 1.0, 'hide': 1.0, 'kids': 1.0, 'when': 1.0, 'extra': 1.0, 'leaves': 1.0, 'dead': 1.0, 'in': 1.0, 'for': 4.0, 'one': 3.0, 'ya': 1.0, 'me': 1.0, 'and': 2.0, 'left': 1.0, 'grew': 1.0, 'disposal': 1.0, 'was': 1.0, 'garbage': 1.0, 'all': 1.0, 'pack': 1.0, 'four': 1.0, 'down': 1.0, 'a': 3.0, 'the': 3.0, 'cup': 1.0, 'went': 1.0, 'it': 1.0, 'week': 1.0, 'owners': 1.0, 'car': 1.0, 'sippy': 1.0, 'two': 1.0, 'some': 1.0, 'ungodly': 1.0, 'mildew': 1.0, 'on': 2.0}
Word element => {'new': 1.0, 'instead': 1.0, 'these': 1.0, 'bought': 1.0, 'lot': 1.0, 'saved': 1.0, 'have': 2.0, 'would': 2.0, 'money': 1.0, 'love': 1.0, 'a': 1.0, 'them': 1.0, 'i': 1.0, 'cups': 1.0, 'known': 1.0, 'of': 2.0, 'valves': 1.0, 'wish': 1.0, 'had': 1.0, 'could': 1.0, 'you': 1.0, 'buy': 1.0, 'replacement': 1.0}
Word element => {'know': 1.0, 'how': 1.0, 'etc': 1.0, 'bpa': 1.0, 'cadmium': 1.0, 'contain': 1.0, 'if': 1.0, 'what': 1.0, 'not': 2.0, 'problem': 1.0, 'manual': 1.0, 'buying': 1.0, 'poorly': 1.0, 'written': 1.0, 'box': 1.0, 'been': 1.0, 'on': 1.0, 'to': 3.0, 'as': 2.0, 'copy': 1.0, 'bothered': 1.0, 'came': 1.0, 'mechanism': 1.0, 'one': 1.0, 'check': 1.0, 'a': 3.0, 't': 1.0, 'no': 1.0, 'about': 1.0, 'huge': 1.0, 'assembly': 1.0, 'attached': 1.0, 'apparently': 1.0, 'anything': 1.0, 'inches': 1.0, 'handle': 1.0, 'at': 2.0, 'is': 1.0, 'factory': 1.0, 'out': 1.0, 'lead': 1.0, 'from': 4.0, 'so': 2.0, 'checking': 3.0, '2': 1.0, 'distance': 1.0, 'identical': 1.0, 'food': 1.0, 'of': 1.0, 'the': 5.0, 'defective': 1.0, 'missed': 1.0, 'pasted': 1.0, 're': 2.0, 'where': 1.0, 'product': 3.0, 'such': 1.0, 'for': 1.0, 'fault': 1.0, 'this': 3.0, 'it': 4.0, 'pthalates': 1.0, 'looks': 1.0, 'fix': 1.0, 'should': 1.0, 'their': 1.0, 'have': 1.0, 'sells': 1.0, 'obviously': 2.0, 'cannot': 1.0, 'latch': 1.0, 'was': 2.0, 'existing': 2.0, 'lines': 2.0, 'well': 1.0, 'i': 3.0, 'in': 2.0, 'm': 1.0, 'avoid': 1.0, 'cobbled': 1.0, 'together': 1.0, 'that': 2.0, 'because': 1.0, 'had': 1.0, 'defect': 1.0, 'away': 1.0, 'kidco': 1.0, 'guessing': 1.0, 'manuals': 1.0, 'them': 2.0, 'send': 1.0, 'items': 2.0, 'single': 1.0, 'preparation': 1.0, 'would': 2.0, 'order': 1.0, 'all': 1.0, 'other': 5.0, 'an': 2.0, 'engage': 1.0, 'economic': 1.0, 'operations': 1.0, 'boxes': 1.0, 'like': 2.0, 'signal': 1.0, 'and': 2.0, 'obvious': 2.0, 'business': 1.0, 'processes': 1.0, 'aren': 1.0, 'they': 4.0}
Word element => {'nice': 1.0}
Word element => {'on': 1.0, 'pulling': 1.0, 'mounting': 1.0, 'how': 2.0, 'would': 1.0, 'it': 3.0, 'only': 2.0, 'good': 1.0, 'last': 1.0, 'my': 2.0, 'is': 1.0, 'start': 1.0, 'fine': 1.0, 'the': 6.0, 'gate': 3.0, 'months': 1.0, 'concern': 1.0, 'i': 2.0, 'whole': 1.0, 'old': 2.0, 'be': 2.0, 'll': 1.0, 'to': 2.0, 'easy': 1.0, 'area': 1.0, 'moves': 1.0, 'install': 1.0, 'very': 1.0, 'open': 1.0, 'and': 2.0, 'for': 1.0, 'fit': 1.0, 'enough': 1.0, 'sturdy': 1.0, 'brackets': 1.0, 'are': 2.0, 'long': 1.0, 'they': 1.0, 'will': 1.0, 'but': 1.0, 'might': 1.0, 'a': 1.0, 'needed': 1.0, 'back': 1.0, 'check': 1.0, 'bit': 1.0, 'kids': 1.0, 'when': 2.0, 'you': 1.0, '7': 1.0}
Word element => {'connector': 1.0, 'no': 2.0, 'of': 1.0, 'or': 1.0, 'too': 1.0, 'going': 1.0, 'when': 1.0, 'utility': 1.0, 'membranes': 1.0, 'valve': 2.0, 'a': 1.0, 'down': 1.0, 'the': 3.0, 'tight': 1.0, 'one': 1.0, 'love': 1.0, 'literally': 1.0, 'getting': 1.0, 'drain': 1.0, 'cracked': 1.0, 'hard': 1.0, 'plastic': 1.0, 'to': 1.0, 'dropped': 1.0, 'stuck': 1.0, 'piece': 1.0, 'on': 1.0}
Word element => {'receipt': 1.0, 'be': 1.0, 'back': 1.0, 'send': 1.0, 'one': 1.0, 'decided': 1.0, 'have': 1.0, 'connected': 1.0, 'was': 2.0, 'had': 1.0, 'base': 1.0, 'issues': 3.0, 'of': 1.0, 'there': 1.0, 'return': 1.0, 'order': 1.0, 'seller': 1.0, 'it': 3.0, 'unit': 4.0, 'this': 3.0, 'for': 1.0, 'stars': 1.0, 'with': 2.0, 'piece': 3.0, '5': 1.0, 'functions': 1.0, 'parts': 1.0, 'defects': 1.0, 'that': 3.0, 'like': 1.0, 'should': 1.0, 'fearful': 1.0, 'the': 13.0, 'are': 1.0, 'i': 2.0, 'but': 1.0, 'stay': 1.0, 'not': 2.0, 'give': 1.0, 'broken': 1.0, 'upon': 2.0, 'would': 2.0, 'quickly': 1.0, 'assembly': 1.0, 'received': 2.0, 'shipping': 1.0, 'third': 1.0, 'replacement': 1.0, 'first': 1.0, 'above': 1.0, 'label': 1.0, 'and': 1.0, 'a': 1.0, 'discovered': 1.0, 'prepared': 1.0, 'second': 1.0, 'also': 2.0, 'time': 1.0, 'dangles': 1.0, 'toys': 1.0, 'to': 3.0, 'seat': 2.0}
Word element => {'looking': 1.0, 'piece': 2.0, 'instructions': 1.0, 'was': 1.0, 'you': 1.0, 'are': 2.0, 'the': 2.0, '2': 1.0, 'foam': 1.0, 'reasons': 1.0, 'i': 1.0, 'bounce': 1.0, 'returned': 1.0, 'remove': 1.0, 'it': 5.0, 'this': 1.0, 'item': 1.0, 'click': 1.0, 'include': 1.0, 'per': 1.0, 'did': 4.0, 'several': 1.0, 'to': 1.0, 'as': 1.0, 'match': 1.0, 'very': 1.0, '1': 1.0, 'not': 6.0, 'bottom': 1.0, 'metal': 1.0, 'of': 1.0, 'for': 2.0, 'fit': 1.0, 'that': 1.0, 'into': 1.0, 'in': 1.0, 'vibration': 1.0, 'which': 2.0, 'made': 1.0, 'unsafe': 1.0, 'therefore': 1.0, '3': 1.0, 'its': 1.0, 'much': 1.0, 'we': 1.0, 'a': 1.0, 'more': 1.0, 'is': 1.0, 'what': 1.0}
Word element => {'pleased': 1.0, 'my': 1.0, 'child': 1.0, 'loves': 1.0, 'it': 2.0, 'seems': 1.0, 'very': 1.0, 'and': 1.0, 'up': 1.0, 'to': 1.0, 'be': 1.0, 'holding': 1.0, 'well': 1.0}
Word element => {'with': 1.0, 'were': 1.0, 'mood': 1.0, 'just': 1.0, 'guess': 1.0, 'do': 1.0, 'frog': 1.0, 'duck': 1.0, 'why': 1.0, 'explain': 1.0, 'have': 1.0, 'there': 1.0, 'minutes': 1.0, 'water': 1.0, 'on': 2.0, 'refunded': 1.0, 'in': 2.0, 'turn': 2.0, '5': 2.0, 'kids': 1.0, 'this': 1.0, 'while': 1.0, 'from': 1.0, 'worked': 1.0, 'every': 1.0, 'tonight': 1.0, 'sets': 1.0, 'again': 1.0, 'times': 1.0, 'toys': 2.0, 'longer': 2.0, 'seller': 2.0, 'or': 5.0, '4': 1.0, 'i': 6.0, 'and': 2.0, 'like': 2.0, 'then': 1.0, 'working': 1.0, 'money': 1.0, 'but': 3.0, 'work': 2.0, 'would': 3.0, 'quality': 1.0, 'them': 2.0, 'want': 1.0, 'if': 1.0, 'better': 1.0, 'these': 2.0, 'great': 1.0, 'deal': 1.0, 'the': 6.0, 'they': 7.0, 'easy': 1.0, 'poor': 1.0, 'snail': 1.0, 'had': 1.0, 'always': 1.0, 'return': 1.0, 'a': 3.0, 'for': 3.0, 'bought': 1.0, 'one': 1.0, 'month': 1.0, 'little': 2.0, 'time': 1.0, 'bit': 1.0, 'as': 1.0, 'to': 4.0, 'all': 1.0, 'stop': 1.0, 'after': 2.0, 'my': 2.0, 'another': 1.0, 'are': 2.0, 'flashing': 1.0, 'not': 3.0}
Word element => {'days': 1.0, 'a': 1.0, 'install': 1.0, 'car': 1.0, 'to': 1.0, 'buying': 1.0, 'difficult': 1.0, 'seat': 1.0, 'works': 1.0, 'isn': 1.0, 'i': 2.0, 'couple': 1.0, 'and': 1.0, 'love': 1.0, 'one': 1.0, 'uppababy': 1.0, 'of': 1.0, 'beautifully': 1.0, 'stroller': 1.0, 'this': 1.0, 'it': 1.0, 'with': 1.0, 't': 1.0, 'the': 1.0, 'am': 1.0, 'another': 1.0, 'in': 1.0}
Word element => {'money': 1.0, 'spent': 1.0, 'buying': 1.0, 'drive': 1.0, 'if': 1.0, 'quick': 1.0, 'was': 6.0, 'lbs': 1.0, 'daughter': 1.0, 'down': 1.0, 'turned': 1.0, 'so': 2.0, 'handed': 1.0, 'how': 2.0, '34': 6.0, 'able': 1.0, 'however': 2.0, 'did': 1.0, 'keep': 1.0, 'wks': 1.0, 'use': 1.0, 'her': 2.0, 'wet': 1.0, '11': 1.0, 'when': 2.0, 'you': 1.0, 'weak': 1.0, 'what': 1.0, '170': 1.0, 'hospital': 1.0, 'into': 3.0, 'work': 1.0, 'over': 1.0, 'trouble': 1.0, 'enough': 1.0, 'sunshade': 1.0, 'out': 6.0, 'but': 2.0, 'write': 1.0, 'cons': 2.0, 'hand': 1.0, 'release': 1.0, 'pain': 1.0, 'this': 8.0, 'customer': 1.0, 'me': 1.0, 'judgment': 1.0, 'which': 1.0, 'good': 1.0, 'with': 3.0, 'using': 1.0, 'chance': 1.0, 'does': 1.0, 'latching': 1.0, 'for': 3.0, '10': 1.0, 'it': 10.0, 'shorter': 1.0, 'sleek': 1.0, 'only': 1.0, 'passing': 1.0, 'because': 4.0, 'that': 4.0, 'i': 16.0, 'a': 3.0, 'has': 1.0, 'them': 2.0, 'review': 1.0, 'push': 1.0, 'seat': 13.0, 'in': 2.0, 'pulled': 1.0, 'waited': 1.0, 'weigh': 1.0, 'wasnt': 1.0, 'wanted': 1.0, 'appearance': 1.0, 'now': 3.0, 'latches': 1.0, 'look': 1.0, 'can': 1.0, 'is': 9.0, 'at': 2.0, 'probably': 1.0, 'before': 2.0, 'stains': 1.0, 'been': 1.0, 'although': 1.0, 'rock': 1.0, 'not': 6.0, 'give': 1.0, 'from': 3.0, 'test': 1.0, 'difficult': 1.0, 'stroller': 1.0, 'worst': 1.0, 'gets': 1.0, 'hook': 1.0, 'and': 17.0, 'here': 1.0, 'silver': 1.0, 'features': 1.0, 'live': 1.0, 'wash': 1.0, 'pros': 2.0, '5': 1.0, 'one': 4.0, 'better': 1.0, 'bought': 1.0, 'adjusted': 1.0, 'reason': 1.0, 'spots': 1.0, 'of': 9.0, 'the': 30.0, 'am': 2.0, 'provide': 1.0, 'safety': 1.0, 'some': 2.0, 'simplicity': 1.0, 'my': 4.0, 'are': 6.0, 'called': 1.0, 'we': 3.0, 'brought': 1.0, 'home': 1.0, 'comfortable': 2.0, 'fits': 1.0, 'no': 2.0, 'matter': 1.0, 'all': 2.0, 'way': 1.0, 'officially': 1.0, 'reach': 1.0, '11lbs': 1.0, 'getting': 1.0, 'much': 1.0, 'put': 1.0, 'wouldn': 1.0, 'more': 1.0, 'size': 1.0, 'advertised': 1.0, 'place': 1.0, 'side': 3.0, 'buckles': 1.0, 'don': 2.0, 'supposed': 1.0, 'adjusting': 1.0, 'useless': 1.0, 'have': 4.0, 'staying': 1.0, 'hot': 1.0, 'hold': 1.0, 't': 3.0, 'fit': 1.0, 'slots': 1.0, '7lbs': 1.0, 'send': 1.0, 'helpful': 1.0, 'see': 1.0, 'once': 1.0, 'bigger': 1.0, 'service': 1.0, 'harness': 1.0, 'overall': 1.0, 'let': 1.0, 'they': 6.0, 'will': 1.0, 'could': 1.0, 'to': 12.0, 'right': 2.0, 'ease': 2.0, 'baby': 1.0, 'part': 1.0, 'really': 1.0, 'please': 1.0, 'read': 1.0, 'recently': 1.0, 'on': 1.0, 'base': 4.0, 'took': 1.0, 'decided': 1.0, 'she': 3.0, 'make': 1.0, 'sure': 1.0, 'while': 1.0, 'clipped': 1.0, 'coverage': 1.0, 'button': 1.0, 'surprise': 1.0, 'uppababy': 1.0, 'stuck': 1.0, 'install': 1.0, 'up': 1.0, 'straps': 2.0, '7': 1.0, 'come': 1.0, 'away': 1.0, 'whatever': 1.0, 'stated': 1.0, 'would': 3.0, 'open': 1.0, 'think': 1.0, 'another': 1.0, 'days': 1.0, 'its': 1.0, 'later': 1.0, 'car': 3.0, 'yet': 1.0, 'were': 1.0}
Word element => {'have': 1.0, 'if': 1.0, 'were': 1.0, 'a': 2.0, 'i': 3.0, 'adapters': 2.0, 'putting': 1.0, 'within': 1.0, 'sold': 1.0, 'and': 4.0, 'in': 1.0, 'that': 1.0, 'it': 2.0, 'with': 1.0, 'great': 2.0, 'the': 10.0, 'quality': 1.0, 'but': 2.0, 'car': 2.0, 'week': 1.0, 'service': 2.0, 'of': 3.0, 'to': 1.0, 'seat': 3.0, 'broken': 1.0, 'came': 1.0, 'ease': 1.0, 'sent': 1.0, 'customer': 2.0, 'fence': 1.0, 'worth': 2.0, 'committed': 1.0, 'price': 2.0, 'no': 1.0, 'about': 1.0, 'you': 2.0, 'when': 1.0, 'charge': 1.0, 'product': 1.0, 'for': 1.0, 'called': 1.0, 'they': 2.0, 'free': 1.0, 'new': 1.0, 'experience': 1.0, 'after': 1.0, 'questions': 1.0, 'vista': 2.0, 'before': 1.0, 'was': 2.0, 'on': 2.0, 'saw': 1.0, 'how': 1.0}
Word element => {'syndrome': 1.0, 'flat': 1.0, 'solution': 1.0, 'looking': 1.0, 'is': 1.0, 'at': 1.0, 'who': 1.0, 'anyone': 1.0, 'back': 1.0, 'will': 3.0, 'weeks': 1.0, 'started': 1.0, 'baby': 2.0, 'head': 3.0, 'highly': 1.0, 'directed': 1.0, 'products': 1.0, 'sure': 1.0, 'in': 3.0, 'about': 1.0, 'several': 1.0, 'the': 2.0, 'researched': 1.0, 'was': 1.0, 'recommend': 1.0, 'my': 1.0, 'how': 1.0, 'old': 1.0, 'noticed': 1.0, 'flattening': 1.0, 'of': 1.0, 'noticing': 1.0, 'when': 1.0, 'i': 7.0, '4': 1.0, 'this': 2.0, 'month': 1.0, 'it': 2.0, 'for': 2.0, 'product': 2.0, 'pillow': 1.0, 'had': 1.0, 'thought': 1.0, 'not': 1.0, 'give': 1.0, 's': 2.0, 'a': 2.0, 'works': 1.0, 'try': 1.0, 'used': 1.0, 'to': 1.0, 'as': 1.0, 'and': 1.0, 'work': 1.0, 'but': 1.0, '2': 1.0, 'change': 1.0}
Word element => {'ask': 1.0, 'us': 1.0, 'product': 1.0, 'for': 1.0, 'her': 3.0, 'what': 1.0, 'longer': 1.0, 'neck': 1.0, 'this': 1.0, 'nack': 1.0, 'with': 1.0, 'help': 2.0, 'out': 1.0, 'few': 1.0, 'just': 1.0, 'to': 4.0, 'was': 2.0, 'works': 1.0, 'granddaughter': 1.0, 'left': 1.0, 'get': 1.0, 'and': 2.0, 'doctor': 1.0, 'a': 4.0, 'we': 1.0, '15': 1.0, 'need': 1.0, 'the': 3.0, 'more': 1.0, 'great': 1.0, 'my': 1.0, 'happy': 1.0, 'pillow': 1.0, 'after': 1.0, 'wear': 1.0, 'months': 1.0, 'of': 1.0, '3': 1.0, 'day': 1.0, 'little': 1.0, 'very': 1.0, 'min': 1.0, 'at': 1.0, 'no': 1.0, 'it': 3.0, 'she': 1.0, 'time': 2.0, 'needs': 1.0}
Word element => {'helmet': 1.0, 'needing': 1.0, 'not': 1.0, 'will': 1.0, 'neck': 1.0, 'used': 1.0, 'later': 1.0, '2': 1.0, 'can': 1.0, 'that': 1.0, 'is': 2.0, 'nicely': 1.0, 'very': 1.0, 'out': 1.0, 'took': 1.0, 'chair': 1.0, 'bouncer': 1.0, 'another': 1.0, 'much': 1.0, 'helmets': 1.0, '6': 1.0, 'cradles': 1.0, 'born': 1.0, 'pressure': 1.0, 'drastic': 1.0, 'be': 2.0, 'talking': 1.0, 'love': 2.0, 'for': 4.0, 'head': 2.0, 'her': 6.0, '1': 1.0, 'comfortable': 1.0, 'spot': 1.0, 'was': 3.0, 'just': 1.0, 'flat': 1.0, 'as': 3.0, 'sleep': 1.0, 'to': 2.0, 'our': 2.0, 'thought': 1.0, 'fitted': 1.0, 'with': 1.0, 'soft': 1.0, 'this': 2.0, 'started': 1.0, 'baby': 1.0, 'pillows': 1.0, 'about': 1.0, 'on': 2.0, 'support': 1.0, 'therapy': 1.0, 'developed': 1.0, 'use': 1.0, 'torticollis': 1.0, 'it': 3.0, 'she': 3.0, 'doctor': 1.0, 'a': 3.0, 'quickly': 1.0, 'when': 1.0, 'now': 1.0, 'weeks': 1.0, 'old': 2.0, '4': 1.0, 'i': 3.0, 'and': 9.0, 'too': 2.0, 'soon': 1.0, 'needs': 1.0, 'so': 1.0, 'girl': 1.0, 'opted': 1.0, 'skull': 1.0, 'pushed': 1.0, 'off': 2.0, 'the': 3.0, 'appointments': 1.0, 'months': 1.0, 'evened': 1.0, 'bought': 1.0, 'pillow': 3.0, 'physical': 1.0}
Word element => {'with': 1.0, 'towel': 1.0, 'plush': 1.0, 'little': 1.0, 'would': 1.0, 'thought': 1.0, 'just': 1.0, 'that': 2.0, 'i': 3.0, 'does': 1.0, 'of': 1.0, 'up': 1.0, 'alone': 1.0, 'chest': 1.0, 'price': 1.0, 'peaceful': 1.0, 'great': 2.0, 'much': 1.0, 'shivering': 1.0, 'now': 1.0, 'more': 2.0, 'is': 1.0, 'function': 1.0, 'so': 2.0, 'he': 1.0, 'this': 1.0, 'it': 4.0, 'hard': 1.0, 'bathtime': 1.0, 'makes': 1.0, 'wrap': 1.0, 'the': 3.0, 'without': 1.0, 'can': 1.0, 'buttons': 1.0, 'scratchy': 1.0, 'pull': 1.0, 'my': 1.0, 'straight': 1.0, 'and': 1.0, 'did': 1.0, 'expect': 1.0, 'since': 1.0, 'at': 1.0, 'material': 1.0, 'him': 2.0, 'be': 2.0, 'baby': 1.0, 'softer': 1.0, 'expensive': 1.0, 'for': 2.0, 'not': 1.0, 'a': 3.0, 's': 2.0, 'or': 1.0, 'to': 2.0, 'all': 1.0}
Word element => {'amazon': 1.0, 'now': 1.0, 'to': 1.0, 'glad': 1.0, 'on': 2.0, 'in': 1.0, 'find': 1.0, 't': 1.0, 'about': 1.0, 'heard': 1.0, 'when': 1.0, 'bathtime': 1.0, 'love': 1.0, 'for': 1.0, 'what': 1.0, 'so': 1.0, 'or': 3.0, 'i': 4.0, 'month': 1.0, 'towel': 1.0, 'see': 1.0, 'a': 2.0, 'exactly': 1.0, 'stores': 1.0, 'ago': 1.0, 're': 1.0, 'my': 2.0, 'kozybaby': 2.0, 'needed': 1.0, 'grandparent': 1.0, 'line': 1.0, 'large': 1.0, 'awesome': 1.0, 'if': 1.0, 's': 2.0, 'you': 1.0, 'sooooo': 1.0, 'it': 5.0, 'first': 2.0, 'parent': 1.0, 'couldn': 1.0, 'and': 2.0, 'bought': 1.0, 'plush': 1.0}
Word element => {'currently': 1.0, 'old': 1.0, 'months': 1.0, '5': 1.0, 'towel': 1.0, 'baby': 2.0, 'of': 2.0, 'up': 1.0, 'my': 1.0, 'the': 5.0, 'great': 1.0, 'disappointed': 1.0, 'is': 2.0, 'want': 1.0, 'a': 2.0, 'in': 2.0, 'length': 2.0, 'hood': 1.0, 'and': 3.0, 'only': 1.0, 'do': 1.0, 'reaches': 1.0, 'i': 4.0, 'pick': 1.0, 'this': 1.0, 'soft': 1.0, 'am': 1.0, 'when': 1.0, 'barely': 1.0, 'large': 1.0, 'bath': 1.0, 'use': 1.0, 'either': 1.0, 'her': 2.0, 'very': 1.0, 'little': 1.0, 'out': 1.0, 'feet': 1.0, 'but': 1.0, 'can': 1.0, 'to': 2.0, 'be': 1.0, 'covered': 1.0, 'concept': 1.0, 'order': 1.0, 'so': 2.0, 'remaining': 1.0, 'head': 1.0, 'that': 1.0, 'she': 1.0, 'not': 1.0}
Word element => {'it': 1.0, 'in': 1.0, 'quickly': 1.0, 'my': 1.0, 'never': 1.0, 'was': 1.0, 'would': 1.0, 'this': 1.0, 'i': 1.0, 'think': 1.0, 'baby': 1.0, 'she': 1.0, 'too': 1.0, 'into': 1.0, 'overheat': 1.0}
Word element => {'makes': 1.0, 'hot': 1.0, 'too': 1.0, 'floppy': 1.0, 'is': 1.0, 'be': 1.0, 'to': 1.0, 'uncomfortable': 1.0, 'an': 1.0, 'insert': 2.0, 'for': 1.0, 'this': 1.0, 'found': 1.0, 'i': 1.0, 'and': 2.0, 'me': 1.0, 'far': 1.0, 'superior': 1.0, 'my': 1.0, 'baby': 1.0, 'tula': 1.0, 'girl': 1.0, 'infant': 1.0, 'that': 1.0}
Word element => {'purchased': 1.0, 'me': 1.0, 'move': 1.0, 'room': 1.0, 'still': 1.0, 'over': 1.0, 'be': 1.0, 'plenty': 1.0, 'really': 1.0, 'look': 1.0, 'isn': 1.0, 'of': 3.0, 'once': 1.0, 'sit': 1.0, 'help': 1.0, 'use': 1.0, 'folded': 1.0, 'you': 1.0, 'also': 1.0, 'perfectly': 1.0, 'see': 1.0, 'that': 2.0, 'back': 1.0, 'top': 1.0, 'needed': 1.0, 'carrier': 4.0, 'in': 3.0, 'makes': 1.0, 'old': 1.0, 'i': 5.0, 'tried': 1.0, 'on': 1.0, 'make': 1.0, '3': 1.0, 'removable': 1.0, 'can': 3.0, '2': 1.0, 'comfortable': 1.0, '1': 1.0, 'great': 1.0, 'pillow': 1.0, 'control': 1.0, 'without': 1.0, 'the': 11.0, 'sits': 1.0, 'around': 1.0, 'more': 2.0, 'is': 2.0, 'girl': 1.0, 'them': 1.0, 'baby': 1.0, 'my': 1.0, 'ordered': 2.0, 'this': 2.0, 'small': 1.0, 'being': 1.0, 'if': 1.0, 'months': 1.0, '14lbs': 1.0, 'need': 1.0, 'head': 2.0, 'neck': 1.0, 'against': 1.0, 'so': 2.0, 'bit': 1.0, 'out': 4.0, 'd': 1.0, 'm': 1.0, 'insert': 6.0, 'glad': 2.0, 'higher': 1.0, 'it': 5.0, 'she': 3.0, 't': 2.0, 'we': 1.0, 'a': 2.0, 'as': 1.0, 'to': 5.0, 'her': 3.0, 'w': 2.0, 'unsure': 1.0, 'low': 1.0, 'squished': 1.0, 'enough': 1.0, 'legs': 1.0, 'actually': 1.0, 'for': 1.0, 'fit': 2.0, 'has': 3.0, 'comfortably': 2.0, 'just': 1.0}
Word element => {'than': 1.0, 'with': 1.0, 'up': 1.0, 'able': 1.0, 'be': 1.0, 'they': 1.0, 'by': 1.0, 'disappointed': 1.0, 'was': 1.0, 'love': 3.0, 'either': 1.0, 'if': 1.0, 'even': 1.0, 'used': 1.0, 'this': 4.0, 'it': 5.0, 'she': 3.0, 'strap': 1.0, 'clean': 1.0, 'out': 1.0, 'in': 4.0, 'daughter': 1.0, 'when': 1.0, 'insert': 2.0, 'summer': 1.0, 'house': 1.0, 'snap': 1.0, 'ergo': 1.0, 'miserable': 1.0, 'hot': 3.0, 'something': 1.0, 'onsie': 1.0, 'would': 1.0, 'so': 2.0, 'better': 1.0, 'should': 1.0, 'wear': 1.0, 'the': 5.0, 'i': 3.0, 'mess': 1.0, 'my': 1.0, 's': 1.0, 't': 1.0, 'a': 2.0, 'that': 1.0, 'have': 1.0, 'to': 3.0, 'outside': 1.0, 'around': 1.0, 'is': 4.0, 'comes': 1.0, 'fall': 1.0, 'and': 4.0, 'great': 1.0, 'nice': 1.0, 'warm': 1.0, 'come': 1.0, 'forget': 1.0, 'about': 1.0, 'like': 1.0, 'using': 1.0, 'on': 1.0, 'but': 2.0, 'aren': 1.0}
Word element => {'product': 1.0, 'recommend': 1.0, 'not': 1.0, 'would': 1.0, 'she': 1.0, 'than': 1.0, 'this': 2.0, 'carrier': 2.0, 'insert': 1.0, 'awkward': 1.0, 'infant': 1.0, 'and': 1.0, 'felt': 1.0, 'the': 1.0, 'my': 1.0, 'disliked': 2.0, 'more': 1.0}
Word element => {'it': 1.0, 'used': 1.0, 'never': 1.0, 'yet': 1.0, 'straddle': 1.0, 'until': 1.0, 'big': 2.0, 'not': 1.0, 'tiny': 1.0, 'their': 1.0, 'side': 1.0, 'had': 1.0, 'either': 1.0, 'through': 1.0, 'slip': 1.0, 'because': 2.0, 'in': 1.0, 'on': 1.0, 'put': 2.0, 'can': 2.0, 'holes': 1.0, 'they': 3.0, 'seal': 1.0, 'were': 1.0, 'still': 1.0, 'son': 2.0, 'require': 1.0, 'outside': 1.0, 'our': 2.0, 'to': 3.0, 'doesn': 1.0, 'was': 2.0, 'watching': 1.0, 'after': 1.0, 'so': 2.0, 'basically': 1.0, 'the': 11.0, 'baby': 1.0, 'videos': 1.0, 'feet': 2.0, 'newborn': 1.0, 'out': 1.0, 'this': 1.0, 'how': 1.0, 'he': 2.0, 'supposed': 1.0, 'fit': 1.0, 'enough': 2.0, 're': 2.0, 'legs': 1.0, 'online': 1.0, 'couldn': 1.0, 'and': 3.0, 'that': 2.0, 'into': 1.0, 's': 2.0, 't': 6.0, 'we': 4.0, 'a': 3.0, 'few': 1.0, 'weeks': 1.0, 'tried': 1.0, 'when': 1.0, 'you': 3.0, 'again': 1.0, 'insert': 3.0, 'booster': 1.0, 'figure': 1.0, 'little': 1.0, 'even': 1.0, 'didn': 2.0, 'cushion': 1.0, 'bigger': 1.0, 'strap': 2.0, 'bottom': 3.0, 'once': 1.0, 'of': 3.0, 'has': 1.0, 'need': 1.0, 'wait': 1.0, 'waited': 1.0, 'confusing': 1.0}
Word element => {'just': 1.0, 'uncomfortable': 1.0, 'secure': 1.0, 'make': 1.0, 'did': 1.0, 'like': 1.0, 'didn': 1.0, 'much': 2.0, 'bit': 1.0, 'a': 1.0, 'birth': 1.0, 'at': 1.0, 'her': 3.0, 'even': 1.0, '10': 1.0, 'to': 1.0, 'was': 2.0, 'smaller': 1.0, 'ergo': 1.0, 'any': 1.0, 'babies': 1.0, 'fabric': 1.0, 'pros': 1.0, 'is': 2.0, 'more': 2.0, 't': 1.0, 'great': 2.0, 'the': 2.0, 'also': 1.0, 'made': 1.0, 'cons': 1.0, 'i': 2.0, 'soft': 1.0, 'pattern': 1.0, 'feel': 1.0, 'sturdy': 1.0, 'most': 1.0, 'mine': 1.0, 'love': 1.0, 'for': 2.0, 'would': 1.0, 'go': 1.0, 'it': 3.0, 'with': 1.0, 'this': 1.0, 'and': 4.0, 'probably': 1.0}
Word element => {'small': 1.0, 'too': 1.0, 'cuz': 1.0, 'well': 1.0, 'go': 1.0, 'didn': 1.0, 'and': 1.0, 'piece': 1.0, 'swaddled': 1.0, 'she': 2.0, 'was': 1.0, 'to': 2.0, 'use': 1.0, 'just': 1.0, 'without': 1.0, 'even': 1.0, 'her': 1.0, 'we': 2.0, 'really': 1.0, 'good': 1.0, 'loves': 1.0, 'carrier': 1.0, 'would': 1.0, 'first': 1.0, 'it': 3.0, 'this': 1.0, 'defiantly': 1.0, 'i': 1.0, 'tried': 1.0, 't': 1.0, 'the': 1.0, 'suggest': 1.0, 'using': 1.0}
Word element => {'overall': 1.0, 'on': 1.0, 'light': 1.0, 'cut': 1.0, 'the': 6.0, 'suitable': 1.0, 'active': 1.0, 'humid': 1.0, 'and': 4.0, 'is': 5.0, 'highly': 1.0, 'material': 1.0, 'really': 1.0, 'stuck': 1.0, 'pros': 1.0, 'a': 1.0, 'stitching': 2.0, 'recommended': 1.0, 'hot': 1.0, 'well': 1.0, 'comfortable': 1.0, 'for': 2.0, 'con': 1.0, 'they': 1.0, 'tidied': 1.0, 'should': 1.0, 'who': 1.0, 'it': 2.0, 'durable': 1.0, 'made': 1.0, 'out': 1.0, 'baby': 1.0, 'especially': 1.0, 'inside': 1.0, 'climates': 1.0, 'will': 1.0, 'hoodie': 2.0, 'of': 3.0, 'sweaty': 1.0, 'there': 1.0, 'up': 2.0, 'carrier': 1.0, 'fluff': 3.0, 'need': 1.0, 'not': 1.0, 'zipper': 1.0, 'have': 1.0, 'coming': 1.0, 'you': 2.0, 'to': 1.0, 'or': 1.0, 'end': 1.0, 'having': 1.0}
Word element => {'any': 1.0, 'recommendation': 1.0, 'carriers': 1.0, 'people': 1.0, 'visually': 1.0, 'faster': 1.0, 'helpful': 1.0, 'didn': 1.0, 'use': 1.0, 'properly': 1.0, 'how': 1.0, 'good': 1.0, 'some': 1.0, 'ergobaby': 1.0, 'watching': 1.0, 'highly': 1.0, 'two': 1.0, 'pack': 1.0, 'camping': 1.0, 'similar': 1.0, 'distributes': 1.0, 'strap': 1.0, 'waist': 1.0, 'thick': 1.0, 'weight': 1.0, 'too': 1.0, 'appropriate': 1.0, 'you': 2.0, 'things': 1.0, 'so': 2.0, 'see': 3.0, 'carry': 3.0, 'side': 1.0, 'which': 2.0, 'position': 1.0, 'several': 1.0, 'comfortable': 3.0, 'quickly': 1.0, 'feel': 1.0, 'options': 1.0, 'fatigue': 1.0, 'hated': 1.0, 'ring': 1.0, 'at': 2.0, 'gives': 1.0, 'when': 1.0, 'front': 2.0, 'what': 3.0, 'used': 1.0, 'advise': 1.0, 'house': 2.0, 'babybjorn': 1.0, 'but': 4.0, 'personal': 1.0, 'youtube': 1.0, 'slings': 1.0, 'also': 5.0, 'don': 1.0, 'moby': 1.0, 'practice': 1.0, 'going': 3.0, 'rest': 1.0, 'hips': 1.0, 'small': 1.0, 'we': 5.0, 'only': 2.0, 'then': 1.0, 'hell': 1.0, 'realize': 1.0, 'carrying': 2.0, 'others': 2.0, 'baby': 11.0, 'she': 7.0, 'your': 1.0, 'many': 2.0, 'this': 3.0, 'few': 1.0, 'for': 8.0, '10': 1.0, 'considering': 1.0, 'fabric': 1.0, 'market': 1.0, 'instructions': 1.0, 'sure': 1.0, 'probably': 1.0, 'before': 3.0, 'ergo': 5.0, 'transported': 1.0, 'just': 1.0, 'tried': 1.0, 'and': 17.0, 'comfy': 1.0, 'thing': 1.0, 'positions': 1.0, 'infant': 2.0, 'chest': 1.0, 'insert': 2.0, 'they': 1.0, 'overall': 1.0, 'facing': 1.0, 'while': 1.0, 'straps': 2.0, 'can': 2.0, 'is': 10.0, 'awhile': 1.0, 'although': 1.0, 'hour': 1.0, 'my': 7.0, 'much': 1.0, 'try': 2.0, 'outward': 1.0, 'the': 29.0, 'even': 3.0, 'of': 4.0, 'started': 2.0, 'back': 2.0, 'carrier': 5.0, 'pocket': 1.0, 'reached': 1.0, 'parents': 1.0, 'compared': 1.0, 'pounds': 1.0, 'not': 5.0, 'written': 1.0, 'tend': 1.0, 'longer': 2.0, 'does': 1.0, 'because': 2.0, 'that': 2.0, 'was': 7.0, 'to': 17.0, 'face': 1.0, 'overheat': 1.0, 'born': 1.0, 'weeks': 1.0, 'would': 6.0, 'once': 3.0, 'seemed': 1.0, 'bought': 1.0, 'comes': 1.0, 'wear': 2.0, 'stopped': 1.0, 'show': 1.0, 'first': 2.0, '12': 2.0, 'who': 1.0, 'tolerate': 1.0, 'i': 15.0, 'really': 3.0, 'more': 3.0, 'least': 1.0, 'around': 4.0, 'practicing': 1.0, 'care': 2.0, 'like': 6.0, 'keys': 1.0, 'with': 3.0, 'using': 4.0, 'light': 1.0, 'original': 1.0, 'patient': 2.0, 'than': 1.0, 'an': 1.0, 'adult': 1.0, 'confidently': 1.0, 'head': 2.0, 'will': 3.0, 'could': 1.0, 'gnawing': 1.0, 'a': 10.0, 'nap': 1.0, 'one': 3.0, '5': 1.0, 'big': 1.0, 'enough': 1.0, 'yet': 1.0, 'other': 2.0, 'ones': 1.0, 'way': 2.0, 'all': 2.0, 'large': 1.0, 'feeling': 1.0, 'them': 2.0, 'always': 1.0, 'has': 2.0, 'give': 1.0, 'breathable': 1.0, 'there': 2.0, 'ability': 1.0, 'buying': 1.0, 'age': 1.0, 'chew': 1.0, 'degrees': 1.0, 'hood': 1.0, 'recommend': 3.0, 'enjoying': 1.0, 'as': 4.0, 'in': 1.0, 'her': 3.0, 'little': 1.0, 'phone': 1.0, 'or': 2.0, 'on': 9.0, 'items': 1.0, 'being': 1.0, 'find': 1.0, 'very': 1.0, 'out': 2.0, 'about': 1.0, 'slightly': 1.0, 's': 1.0, 'm': 1.0, 'doesn': 1.0, 'did': 1.0, 'began': 1.0, 'time': 2.0, 'model': 1.0, 'short': 1.0, 'both': 3.0, 'somewhat': 1.0, 'periods': 1.0, 'minutes': 1.0, 'move': 1.0, 'within': 1.0, 'hold': 1.0, 'sessions': 1.0, 'willing': 1.0, 't': 3.0, 'above': 1.0, 'fun': 1.0, 'it': 7.0, 'be': 4.0, 'videos': 1.0, 'have': 5.0, 'hot': 2.0, 'fussy': 1.0, 'found': 1.0, 'able': 1.0, 'however': 1.0, 'performance': 1.0, 'weather': 3.0, 'wants': 1.0, 'babywearing': 2.0, 'view': 1.0, '85': 1.0, 'definitely': 2.0}
Word element => {'the': 2.0, 'like': 1.0, 'wears': 1.0, 'unfortunately': 1.0, 'ergo': 1.0, 'good': 1.0, 'cooler': 1.0, 'then': 1.0, 'not': 1.0, 'standard': 1.0, 'a': 2.0, 's': 3.0, 'only': 1.0, 'it': 2.0, 'much': 1.0, 'really': 1.0, 'regular': 1.0, 'their': 1.0, 'that': 1.0, 'reason': 1.0, 'stars': 1.0, '3': 1.0, 'one': 1.0, 'for': 1.0}
Word element => {'legs': 1.0, 'their': 1.0, 'tends': 1.0, 'of': 1.0, 'one': 1.0, 'using': 1.0, 'hates': 1.0, 'to': 2.0, '8230': 1.0, 'until': 1.0, 'really': 1.0, 'is': 1.0, 'my': 1.0, 'insert': 2.0, 'are': 1.0, 'though': 1.0, 'wait': 1.0, 'infant': 2.0, 'cramp': 1.0, 'the': 2.0, 'great': 1.0, 'these': 2.0, 'son': 1.0, 'best': 1.0, 'your': 1.0, 'simply': 1.0, 'baby': 1.0, 'probably': 1.0, '12lbs': 1.0, 'before': 1.0, 'even': 1.0}
Word element => {'recommend': 1.0, 'can': 1.0, 'nothing': 1.0, 'before': 1.0, 'carriers': 1.0, 'had': 1.0, 'different': 1.0, 'wish': 1.0, 'too': 1.0, 'for': 1.0, 'love': 1.0, 'highly': 1.0, 'baby': 1.0, 'my': 2.0, 'carrier': 1.0, 'it': 5.0, 'this': 2.0, 'great': 1.0, 't': 1.0, 'and': 1.0, 'comfy': 1.0, 'i': 3.0, 'loves': 1.0, 'or': 1.0, 'shoulder': 1.0, 'would': 1.0, 'compare': 1.0, 'travelling': 1.0, 'hurt': 1.0, 'doesn': 1.0, 'back': 1.0, 'sooner': 1.0, 'is': 1.0, 'so': 1.0, 'bought': 1.0}
Word element => {'over': 1.0, 'settling': 1.0, 'before': 1.0, 'your': 1.0, 'you': 1.0, 'run': 1.0, 'test': 1.0, 'suggestion': 1.0, 'preference': 1.0, 'all': 1.0, 'like': 2.0, 'us': 1.0, 'being': 1.0, 'don': 1.0, 'another': 1.0, 'minutes': 1.0, 'since': 1.0, 'personal': 1.0, 'but': 1.0, 'store': 1.0, 'quick': 1.0, 'ok': 1.0, 'might': 1.0, 'myself': 1.0, 's': 1.0, 'give': 1.0, 'there': 1.0, 'outing': 1.0, 'side': 1.0, 'once': 1.0, 'load': 1.0, 'yet': 1.0, 'loaded': 1.0, 'having': 1.0, 'without': 1.0, 'while': 1.0, 'how': 2.0, 'longer': 1.0, 'of': 3.0, 'the': 19.0, 'particularly': 1.0, 'airy': 1.0, 'so': 1.0, 'have': 3.0, 'more': 1.0, 'babies': 3.0, 'been': 1.0, 'box': 1.0, 'into': 2.0, 'three': 1.0, 'loading': 1.0, 'last': 1.0, 'carriers': 2.0, 'with': 4.0, 'carrier': 11.0, '18lb': 1.0, 'back': 1.0, 'a': 6.0, 't': 2.0, 'used': 1.0, 'be': 7.0, 'me': 1.0, 'rave': 1.0, 'my': 7.0, 'ergo': 2.0, 'if': 1.0, 'use': 2.0, 'heard': 1.0, 'putting': 1.0, 'i': 12.0, 'complicated': 1.0, 'down': 1.0, 've': 2.0, 'bjorn': 4.0, 'in': 3.0, 'wearing': 1.0, 'thing': 1.0, 'no': 1.0, 'years': 1.0, 'fabric': 1.0, 'for': 6.0, 'to': 12.0, 'as': 2.0, 'now': 1.0, 'does': 1.0, 'ease': 1.0, 'trip': 1.0, 'lumbar': 1.0, 'and': 10.0, 'one': 1.0, 'happy': 2.0, 'too': 1.0, 'they': 1.0, 'regards': 1.0, 'should': 1.0, 'about': 1.0, 'awesome': 1.0, 'were': 1.0, 'both': 2.0, 'people': 2.0, 'really': 1.0, 'make': 1.0, 'out': 2.0, 'newborn': 2.0, 'their': 1.0, 'quality': 1.0, 'many': 1.0, 'baby': 7.0, 'that': 1.0, 'problems': 1.0, 'long': 1.0, 'on': 6.0, 'noticed': 1.0, 'type': 1.0, 'had': 1.0, 'warm': 1.0, 'them': 1.0, 'always': 1.0, 'than': 2.0, 'way': 2.0, 'found': 3.0, 'few': 1.0, 'this': 5.0, 'provided': 1.0, 'comfortable': 2.0, 'see': 3.0, 'until': 1.0, 'nice': 2.0, 'put': 2.0, '16': 1.0, 'range': 1.0, 'when': 1.0, 'practical': 1.0, 'even': 1.0, 'hit': 1.0, 'took': 1.0, 'are': 1.0, 'first': 1.0, 'was': 1.0, 'doesn': 1.0, 'is': 2.0, 'boils': 1.0, 'think': 1.0, 'parent': 1.0, 'during': 1.0, 'summer': 1.0, 'months': 1.0, 'wondered': 1.0, 'uncomfortable': 2.0, 'need': 1.0, 'insert': 2.0, 'could': 1.0, 'will': 1.0, 'just': 3.0, 'it': 13.0, 'up': 1.0, 'mesh': 1.0, 'takes': 2.0}
Word element => {'professional': 1.0, 'endorsed': 1.0, 'research': 1.0, 'medical': 2.0, 'any': 2.0, 'founded': 1.0, 'natural': 1.0, 'providing': 1.0, 'claims': 1.0, 'company': 1.0, 'running': 1.0, 'thanks': 1.0, 'them': 1.0, 'price': 1.0, 'same': 1.0, 'ergos': 1.0, 'both': 1.0, 'sell': 1.0, 'happy': 1.0, 'impossible': 1.0, 'an': 3.0, 'ever': 1.0, 'summer': 1.0, 'hype': 1.0, 'properly': 1.0, 'danger': 1.0, 'real': 2.0, '6': 1.0, 'carriers': 2.0, 'poses': 1.0, 'held': 1.0, 'already': 1.0, 'think': 1.0, 'months': 1.0, 'first': 1.0, 'sport': 1.0, 'who': 2.0, 'or': 2.0, 'will': 2.0, '34': 4.0, 'would': 2.0, 'raving': 1.0, 'all': 3.0, 'way': 1.0, 'than': 4.0, 'putting': 1.0, 'it': 12.0, 'be': 4.0, 'babies': 1.0, 'that': 3.0, 'because': 1.0, 'drawbacks': 1.0, 'get': 1.0, 'able': 2.0, 'however': 4.0, 'reality': 1.0, 'use': 1.0, 'was': 8.0, 'clothes': 1.0, 'overwhelming': 1.0, 'else': 2.0, 'overheating': 1.0, 'only': 2.0, 'quickly': 1.0, 'usually': 1.0, 'do': 2.0, 'put': 1.0, 'sum': 1.0, 'up': 4.0, 'made': 2.0, 'which': 1.0, 'campaign': 1.0, 'inside': 1.0, '15': 1.0, 'never': 2.0, 'they': 1.0, 'successful': 1.0, 'reviews': 1.0, 'for': 9.0, 'significant': 1.0, 'help': 1.0, 'stroller': 1.0, 'insert': 2.0, 'product': 1.0, 'trying': 1.0, 'minutes': 1.0, 'little': 2.0, 'two': 1.0, 'very': 2.0, 'backpacking': 1.0, 'the': 27.0, 'person': 3.0, 'hurriedly': 1.0, 'longer': 1.0, 'these': 2.0, 'this': 5.0, 'bottle': 1.0, 'few': 1.0, 'with': 4.0, 'models': 1.0, 'he': 2.0, 'smoldering': 1.0, 'gets': 1.0, 'bunched': 1.0, 'can': 1.0, 'is': 8.0, 'hikes': 2.0, 'really': 2.0, 'a': 11.0, 'popularity': 1.0, 'city': 1.0, 'have': 1.0, 'hot': 3.0, 'ergo': 2.0, 'has': 3.0, 'wasn': 3.0, 'like': 2.0, 'value': 1.0, 'carrier': 9.0, 'add': 1.0, 'itself': 1.0, 'enthusiastic': 1.0, 'not': 4.0, 'begin': 1.0, 'thing': 2.0, 'to': 19.0, 'better': 1.0, 'bought': 1.0, 'against': 1.0, 'business': 1.0, 'you': 3.0, 'owned': 1.0, 'marketing': 1.0, 'how': 1.0, 'performance': 1.0, 'here': 1.0, 'no': 2.0, 'about': 4.0, 'baby': 11.0, 'worry': 1.0, 'comfortable': 3.0, 'customers': 1.0, 'honestly': 1.0, 'when': 3.0, 'body': 1.0, 'less': 1.0, 'as': 2.0, 'house': 1.0, 'switched': 1.0, 'result': 1.0, 'bjorn': 4.0, 'diapers': 1.0, 'but': 2.0, 'old': 1.0, 'of': 6.0, 'even': 3.0, 'complicated': 1.0, 'without': 2.0, 'anything': 3.0, 'institution': 1.0, 'sweat': 1.0, 'definitely': 1.0, 'sweaty': 1.0, 'many': 1.0, 'your': 3.0, 'hotter': 1.0, '70': 1.0, 'useless': 2.0, 'degrees': 1.0, 'i': 13.0, 'rendered': 1.0, 'carry': 5.0, 'accompanied': 1.0, 'leave': 1.0, 'end': 2.0, 'aluminium': 2.0, 'something': 1.0, 'drenched': 1.0, 'in': 10.0, 'main': 1.0, 'just': 1.0, 'unused': 1.0, 'and': 10.0, 'tried': 2.0, 'achieve': 1.0, 'problem': 1.0, 'following': 1.0, 'used': 2.0, 'on': 3.0, 'long': 1.0, 'back': 3.0, 'fact': 1.0, 'front': 1.0, 'advantage': 1.0, 'over': 1.0, 'almost': 3.0, 'were': 1.0, 'frame': 2.0, 'outside': 1.0, 'position': 2.0, 'alternatives': 1.0, 'opposed': 2.0, 'most': 1.0, 'learned': 1.0, 'more': 1.0, 'fair': 1.0, 'if': 2.0, 'opinion': 1.0, 'tucked': 1.0, 'infant': 2.0, 'by': 3.0, 'noted': 1.0, 'second': 2.0, 'style': 1.0, 'uncomfortable': 1.0, 'wallet': 1.0, 'are': 2.0, 'my': 7.0, 'hour': 1.0, 'basically': 1.0, 't': 4.0, 'fit': 2.0, 'sitting': 1.0, 'need': 2.0, 'also': 1.0, 'since': 1.0, 'wearing': 1.0, 'carrying': 1.0, 'couldn': 1.0, 'got': 1.0, 'everyday': 1.0, 'am': 1.0}
Word element => {'next': 1.0, 'even': 1.0, 'out': 2.0, 'until': 2.0, 'summer': 1.0, 'is': 3.0, 'fine': 1.0, 'since': 1.0, 'should': 1.0, 'feels': 1.0, 'probably': 2.0, 'than': 1.0, 'earlier': 1.0, 'like': 1.0, 'using': 1.0, 'love': 1.0, 'started': 1.0, 'just': 1.0, 'way': 1.0, 'this': 1.0, 'she': 1.0, 'it': 6.0, 'serve': 1.0, 'item': 1.0, 'grows': 2.0, 'think': 1.0, 'a': 2.0, 'we': 2.0, 's': 2.0, 'going': 2.0, 'us': 1.0, 'and': 1.0, 'too': 1.0, 'daughter': 1.0, 'i': 2.0, 'to': 2.0, 'our': 3.0, 'moby': 1.0, 'in': 1.0, 'well': 2.0, 'hot': 1.0, 'have': 1.0, 'small': 2.0, 'but': 1.0, 'rolled': 1.0, 'child': 1.0, 'up': 2.0, 'bottom': 1.0, 'blanket': 1.0, 'props': 1.0, 'the': 1.0, 'last': 2.0, 'her': 1.0, 'little': 1.0, 'very': 1.0, 'made': 1.0}
Word element => {'great': 1.0, 'comfort': 1.0, 'child': 1.0, 'parent': 1.0, 'both': 1.0, 'mind': 1.0, 'with': 1.0, 'designed': 1.0, 'obviously': 1.0, 'hips': 1.0, 'shoulders': 1.0, 'far': 1.0, 'because': 2.0, 'not': 1.0, 'by': 2.0, 'when': 2.0, 'she': 1.0, 'easy': 1.0, 'brand': 1.0, 'one': 2.0, 'product': 2.0, 'for': 1.0, 'i': 6.0, 'got': 1.0, 'have': 2.0, 'this': 5.0, 'the': 5.0, 'my': 1.0, 'wife': 1.0, 'which': 1.0, 'like': 1.0, 's': 2.0, 'we': 1.0, 'a': 2.0, 'chicco': 2.0, 'was': 2.0, 'carry': 1.0, 'super': 2.0, 'as': 1.0, 'to': 2.0, 'our': 1.0, 'distribution': 1.0, 'him': 1.0, 'prefer': 1.0, 'weight': 2.0, 'out': 1.0, 'is': 2.0, 'facing': 1.0, 'son': 1.0, 'possible': 1.0, 'in': 2.0, 'prefers': 1.0, 'alternate': 1.0, 'but': 1.0, 'carrier': 3.0, 'back': 1.0, 'used': 1.0, 'and': 2.0, 'your': 1.0, 'impressed': 1.0, 'on': 2.0}
Word element => {'immediately': 1.0, 'almost': 1.0, 'falls': 1.0, 'comfortable': 1.0, 'can': 1.0, 'way': 2.0, 'a': 2.0, 'in': 3.0, 'thin': 1.0, 'where': 1.0, 'm': 2.0, 'around': 1.0, '5': 1.0, 'but': 1.0, 'house': 1.0, 'week': 1.0, 'because': 1.0, 'baby': 2.0, 'straps': 1.0, 'held': 1.0, 'carrier': 1.0, 'it': 2.0, 'this': 1.0, 'my': 1.0, 'the': 3.0, 'bought': 1.0, 'be': 1.0, 'old': 1.0, 'i': 5.0, 'adjust': 1.0, 'time': 1.0, 'asleep': 1.0, 'to': 3.0, 'now': 1.0, 'am': 1.0, 'likes': 1.0, 'all': 1.0, 'able': 2.0, 'done': 1.0, 'get': 1.0, 'carry': 1.0, 'things': 1.0, 'some': 1.0}
Word element => {'tie': 1.0, 'times': 1.0, 'detach': 1.0, 'does': 1.0, 'while': 1.0, 'napping': 1.0, 'don': 1.0, 'love': 2.0, 'myself': 2.0, 'betteri': 1.0, 'strap': 3.0, 'hood': 1.0, 'easily': 1.0, 'making': 1.0, 'lower': 1.0, 'down': 1.0, 'face': 1.0, 'smaller': 1.0, 'straight': 1.0, 'to': 10.0, 'when': 3.0, 'spontaneously': 1.0, 'carrier': 8.0, 'off': 3.0, 'until': 1.0, 'b': 1.0, 'see': 1.0, 'older': 1.0, 'extend': 1.0, 'much': 4.0, 'on': 4.0, 'long': 2.0, 'very': 3.0, 'being': 1.0, 'far': 2.0, 'bottom': 1.0, 'by': 3.0, 'close': 1.0, 'original': 1.0, 'wiggles': 1.0, 'same': 1.0, 'months': 4.0, 'felt': 1.0, 'ergo': 4.0, 'under': 1.0, 'gets': 1.0, 'adjust': 1.0, 'legs': 1.0, 'only': 1.0, '8': 1.0, 'out': 2.0, 'best': 1.0, 'over': 1.0, 'hard': 1.0, 'wear': 1.0, 'he': 1.0, 'him': 1.0, 'wider': 1.0, 'starting': 1.0, 'could': 3.0, 's': 4.0, '4': 3.0, 'i': 11.0, 'than': 6.0, 'k': 3.0, 'compelled': 1.0, 'straps': 2.0, 'get': 4.0, 'however': 1.0, 'performance': 4.0, 'other': 2.0, 'adaptations': 1.0, 'benefit': 1.0, 'can': 1.0, 'is': 16.0, 'at': 1.0, 'newborn': 1.0, 'say': 1.0, 'comfortable': 2.0, 'using': 1.0, '3g': 2.0, 'a': 9.0, 'bag': 1.0, 'here': 1.0, 'snuggled': 1.0, 'which': 1.0, 'that': 5.0, 'because': 1.0, 'most': 2.0, 'back': 2.0, 'but': 6.0, 'write': 1.0, '2': 3.0, 'me': 1.0, 'had': 2.0, 'reasons': 1.0, 'have': 6.0, 'this': 9.0, 'first': 2.0, 'my': 8.0, 'are': 2.0, 'second': 1.0, 'for': 10.0, 'softer': 1.0, 'product': 1.0, 'weeks': 2.0, 'would': 1.0, 'following': 2.0, 'tried': 1.0, 'and': 15.0, 'just': 2.0, 'tan': 3.0, 'baby': 8.0, 'in': 2.0, 'bjorn': 2.0, 'unhook': 1.0, 'wrap': 3.0, 'the': 32.0, 'carriers': 5.0, 'arms': 1.0, '6': 4.0, 'c': 1.0, 'moby': 1.0, 'waist': 2.0, 'beco': 4.0, '30': 1.0, 'review': 1.0, 'stirrups': 1.0, 'discovered': 1.0, 'gemini': 2.0, 'recommendations': 1.0, 'as': 3.0, 'up': 3.0, 'diaper': 1.0, 'position': 1.0, 'world': 1.0, 'or': 1.0, 'started': 1.0, 'feature': 1.0, 'roll': 1.0, 'bag4': 1.0, 'some': 1.0, 'not': 3.0, 'more': 2.0, 'cook': 1.0, 'control': 1.0, 'minutes': 1.0, 'was': 1.0, 'useful': 1.0, 'entertaining': 1.0, 'distributes': 1.0, 'now': 1.0, 'easier': 2.0, 'son': 2.0, 'of': 5.0, 'old': 1.0, 'we': 1.0, 'each': 1.0, 'around': 2.0, 'soothing': 1.0, 'leg': 1.0, 'used': 2.0, 'all': 3.0, 'evaluation': 1.0, 'these': 3.0, 'comes': 1.0, 'younger': 1.0, 'attaches': 1.0, 'let': 1.0, 'they': 1.0, 'aren': 1.0, 'easy': 3.0, 'attractive': 1.0, 'fit': 1.0, 'babies': 1.0, 'soft': 2.0, 'been': 1.0, 'essential': 1.0, 'so': 5.0, 'clips': 1.0, 'top': 1.0, 'nightmare': 1.0, 'head': 1.0, 'material': 1.0, 'safety': 1.0, 'weight': 1.0, '3': 3.0, 'too': 1.0, 'like': 2.0, 'wasn': 1.0, 'really': 3.0, 'follows': 1.0, 'nice': 2.0, 'has': 2.0, 'recommendation': 1.0, 'foot': 1.0, 'great': 1.0, 'carry': 1.0, 'uncomfortable': 1.0, 'probably': 1.0, 'your': 1.0, 'alone': 1.0, 'wants': 1.0, 'boba': 4.0, 'line': 1.0, 'good': 2.0, 'term': 1.0, 'children': 1.0, 'hands': 1.0, '1': 2.0, 'use': 1.0, 'especially': 1.0, 'holes': 1.0, 't': 3.0, 'softest': 1.0, 'from': 1.0, 'dinner': 1.0, 'accessory': 1.0, 'you': 2.0, 'allows': 1.0, 'it': 11.0, 'be': 1.0, 'free5': 1.0, 'padding': 1.0}
Word element => {'highly': 1.0, 'loved': 1.0, 'feature': 1.0, 'also': 1.0, 'or': 1.0, 'cellphone': 1.0, 'pockets': 1.0, 'small': 1.0, 'seriously': 1.0, 'good': 1.0, 'sturdy': 1.0, 'design': 1.0, 'breathable': 1.0, 'change': 1.0, 'airy': 1.0, 'open': 1.0, 'is': 2.0, 'however': 1.0, 'it': 5.0, 'taken': 1.0, 'with': 2.0, 'of': 1.0, 'the': 10.0, 'both': 1.0, '34': 2.0, 'ergobaby': 2.0, 'nice': 1.0, 'comfortable': 1.0, 'spot': 1.0, '1': 1.0, 'and': 4.0, 'from': 1.0, 'very': 3.0, 'all': 1.0, 'to': 1.0, 'as': 1.0, 'our': 1.0, 'number': 2.0, 'gets': 1.0, 'performance': 1.0, 'baby': 5.0, 'about': 2.0, 'mesh': 2.0, 'carrier': 2.0, 'so': 1.0, 'bit': 1.0, 'stuffy': 1.0, 'for': 3.0, 'bjorn': 3.0, 'in': 2.0, 'parent': 1.0, 'house': 1.0, 'complaint': 1.0, 'that': 1.0, 'been': 1.0, 'recommended': 1.0, 'has': 2.0, 'hot': 1.0, 'after': 1.0, 's': 3.0, 'go': 1.0, 'walks': 1.0, 'a': 2.0, 'use': 1.0, 'summer': 1.0, 'one': 2.0, 'months': 1.0, 'long': 1.0, 'are': 1.0, 'cut': 1.0, 'short': 1.0}
Word element => {'not': 1.0, 'does': 1.0, 'around': 1.0, 'freedom': 1.0, 'give': 1.0, 'mot': 1.0, 'a': 3.0, 'could': 1.0, 'tropical': 1.0, 'claimed': 1.0, 'mentioned': 1.0, 'perfect': 1.0, 'seven': 1.0, 'my': 6.0, 'in': 3.0, 'regular': 1.0, 'be': 3.0, 'd': 1.0, 'ergobaby': 1.0, 'functional': 1.0, 'both': 1.0, 'one': 2.0, 'situations': 1.0, 'hot': 1.0, 'easy': 1.0, 'get': 1.0, 'performance': 1.0, 'poor': 1.0, 'researched': 1.0, 'masters': 1.0, 'baby': 4.0, 'this': 2.0, 'highly': 1.0, 'as': 4.0, 'to': 3.0, 'line': 1.0, 'month': 1.0, 'the': 6.0, 'great': 1.0, 'it': 7.0, 'thought': 1.0, 'vacation': 1.0, 'their': 1.0, 'sweaty': 1.0, 'came': 1.0, 'recommended': 1.0, 'and': 5.0, 'carrier': 3.0, 'snugly': 1.0, 'back': 1.0, 'old': 1.0, 'putting': 1.0, 'i': 5.0, 'futile': 1.0, 'reviews': 1.0, 'was': 2.0, 'breathable': 1.0, 's': 2.0, 'maybe': 1.0, 'for': 2.0, 't': 1.0, 'rest': 1.0, 'fit': 1.0, 'meant': 1.0, 'out': 1.0, 'fits': 2.0, 'other': 1.0, 'chest': 1.0, 'degree': 1.0, 'can': 4.0, 'chose': 1.0, 'but': 2.0, 'only': 2.0, 'assistance': 1.0, 'us': 1.0, 'pictures': 1.0, 'put': 1.0, 'on': 4.0, 'jiffy': 1.0, 'have': 1.0, 'with': 2.0, 'no': 1.0, 'tricky': 1.0, 'done': 1.0, 'problem': 1.0, 'see': 1.0, 'over': 2.0, 'child': 1.0, 'nearly': 1.0, 'straps': 1.0, 'bigger': 1.0, 'husband': 1.0, 'babies': 1.0, 'her': 2.0, 'attempts': 1.0, 'planning': 1.0, 'were': 1.0, 'is': 3.0, 'look': 2.0, 'strap': 1.0, 'requires': 1.0, 'head': 1.0, 'appears': 1.0, 'from': 1.0}
Word element => {'every': 1.0, 'worth': 1.0, 'but': 1.0, 'others': 1.0, 'than': 1.0, 'bit': 1.0, 'costs': 1.0, 'ups': 1.0, 'to': 2.0, 'penny': 1.0, 'those': 1.0, 'carrier': 1.0, 'wonderful': 1.0, 'baby': 2.0, 'clean': 1.0, 'a': 2.0, 'very': 1.0, 'and': 2.0, 's': 2.0, 'inevitable': 1.0, 'it': 3.0, 'comfortable': 2.0, 'for': 1.0, 'more': 1.0, 'the': 3.0, 'too': 1.0, 'wearable': 1.0, 'material': 1.0, 'wear': 1.0, 'after': 1.0, 'is': 1.0, 'easy': 1.0, 'spit': 1.0}
Word element => {'are': 1.0, 'son': 1.0, 'both': 1.0, 'her': 1.0, 'for': 1.0, 'brought': 1.0, 'have': 1.0, 'asleep': 1.0, 'thankful': 1.0, 'this': 1.0, 'he': 2.0, 'it': 2.0, 'can': 1.0, 'loves': 1.0, 'i': 1.0, 'old': 1.0, 'mummy': 1.0, 'being': 1.0, 'months': 1.0, 'fall': 1.0, '6': 1.0, 'is': 2.0, 'and': 2.0, 'main': 1.0, 'simply': 1.0, 'baby': 1.0, 'user': 1.0, 'happy': 1.0, 'my': 2.0, 'great': 1.0, 'the': 1.0, 'in': 2.0, 'wife': 1.0, 'fact': 1.0, 'that': 2.0}
Word element => {'similar': 1.0, 'aesthetic': 1.0, 'crunchy': 1.0, 'classic': 1.0, 'etc': 1.0, '34': 2.0, 'sweat': 1.0, 'comfrotable': 1.0, 'skip': 1.0, 'enough': 1.0, 'he': 2.0, 'hot': 1.0, 'bulky': 1.0, 'insert': 2.0, 'soaking': 1.0, 'infant': 1.0, 'prettty': 1.0, 'with': 1.0, 'looking': 2.0, 'using': 2.0, 'like': 1.0, 'will': 1.0, 'current': 1.0, 'son': 1.0, 'now': 1.0, '28': 1.0, 'carry': 1.0, 'back': 2.0, 'until': 1.0, 'see': 1.0, 'tried': 1.0, 'haven': 1.0, 'carried': 1.0, 'front': 2.0, 'instructions': 1.0, 'written': 1.0, 'easier': 1.0, 'sum': 1.0, 'much': 2.0, 'use': 3.0, 'learn': 1.0, 'achiness': 1.0, 'youtube': 1.0, 'videos': 1.0, 'recommend': 1.0, 'his': 1.0, 'business': 1.0, 'tend': 1.0, 'while': 1.0, 'place': 1.0, 'comfortably': 1.0, 'baby': 1.0, 'keeping': 1.0, 'awesome': 2.0, 'both': 2.0, 'how': 2.0, 'shopping': 1.0, 'ergos': 2.0, 'not': 5.0, 'am': 1.0, 'you': 4.0, 'don': 1.0, 'cotton': 2.0, 'me': 2.0, 'may': 2.0, 'my': 3.0, 'their': 1.0, 'still': 1.0, 'if': 2.0, 'everything': 1.0, 'found': 1.0, 'easy': 1.0, 'bit': 1.0, 'personally': 1.0, 'shoulders': 1.0, 'ended': 1.0, 'range': 1.0, 'down': 2.0, 'small': 1.0, 'a': 12.0, 'us': 1.0, 'also': 3.0, 'better': 1.0, 'parent': 1.0, 'him': 1.0, 'it': 11.0, 'this': 3.0, 'ups': 1.0, 'than': 4.0, 'big': 1.0, 'breathable': 1.0, 'straps': 2.0, 'say': 1.0, 'comfortable': 3.0, 'surprised': 1.0, 'your': 2.0, 'downs': 1.0, 'feel': 1.0, 'tech': 1.0, 'carrying': 1.0, 'great': 2.0, 'performance': 6.0, 'more': 7.0, 'at': 2.0, 'is': 8.0, 'of': 2.0, 'the': 16.0, 'are': 7.0, 'sport': 5.0, 'i': 14.0, 'usually': 1.0, 'narrow': 1.0, 'sleeker': 1.0, 'choices': 1.0, 'smoother': 1.0, 'used': 1.0, 'felt': 1.0, 'ergo': 5.0, 'them': 1.0, 'watching': 1.0, 'trips': 1.0, 'has': 3.0, 'and': 8.0, 'try': 1.0, 'too': 1.0, 'prefer': 1.0, 'each': 1.0, 'pick': 2.0, 'be': 1.0, 'taller': 1.0, 'on': 3.0, 'ventilated': 1.0, 'welcome': 1.0, 'tall': 1.0, 'model': 6.0, 'wide': 1.0, 'have': 3.0, 'unless': 1.0, 'wider': 1.0, 'they': 2.0, 'carrier': 1.0, 'pocket': 1.0, 'side': 2.0, 'which': 3.0, 'heights': 1.0, 'litle': 1.0, 'all': 1.0, 'potentially': 1.0, 'fabric': 2.0, 'for': 4.0, 'lbs': 1.0, 'was': 7.0, 'babybjorn': 1.0, 'but': 5.0, 'so': 3.0, 'can': 1.0, 'walks': 1.0, 'little': 2.0, 'very': 4.0, 'eaten': 1.0, 'accommodates': 1.0, 'by': 1.0, 'somehow': 1.0, 'to': 11.0, 'usable': 1.0, 'need': 1.0, 'did': 2.0, 'keep': 2.0, 'come': 1.0, 're': 1.0, 'phone': 1.0, 'storage': 1.0, 'handy': 1.0, 'clearly': 1.0, 'white': 1.0, 'up': 2.0, 'mesh': 3.0, 't': 2.0, 'poly': 1.0, 'blend': 1.0, 'living': 1.0, 'in': 4.0, 'awkward': 1.0, 'texas': 1.0, 'that': 2.0, 'preferred': 1.0, 's': 3.0, 'temperatures': 1.0}
Word element => {'off': 1.0, 'on': 1.0, 'well': 1.0, 'wish': 1.0, 'recommend': 1.0, 'would': 1.0, 'hot': 1.0, 'too': 1.0, 'all': 1.0, 'thing': 1.0, 'nice': 1.0, 'highly': 1.0, 'another': 1.0, 'baby': 2.0, 'use': 1.0, 'while': 1.0, 'to': 2.0, 'were': 1.0, 'that': 1.0, 'easier': 2.0, 'brands': 1.0, 'both': 1.0, 'used': 1.0, 'not': 1.0, 've': 1.0, 'complicated': 1.0, 'i': 4.0, 'carriers': 1.0, 'are': 1.0, 't': 1.0, 'the': 3.0, 'more': 1.0, 'put': 1.0, 'doesn': 1.0, 'but': 2.0, 'advantage': 1.0, 'of': 1.0, 'models': 1.0, 'it': 3.0, 'this': 1.0, 'is': 2.0, 'get': 1.0, 'and': 2.0, 'one': 1.0, 'comfortable': 1.0}
Word element => {'diapering': 1.0, 'would': 1.0, 'think': 1.0, 't': 1.0, 'but': 1.0, 'didn': 1.0, 'great': 1.0, 'love': 2.0, 'i': 3.0, 'how': 1.0, 'well': 1.0, 'these': 3.0, 'adjustable': 1.0, 'cloth': 1.0, 'like': 1.0, 'very': 1.0, 'and': 1.0, 'durable': 1.0, 'are': 2.0, 'made': 1.0}
Word element => {'chunk': 1.0, 'thanks': 1.0, 'kind': 1.0, 'very': 1.0, 'ready': 1.0, 'beautifully': 1.0, 'come': 1.0, 'delivery': 1.0, 'really': 1.0, 'haha': 1.0, 'abuse': 1.0, 'up': 1.0, 'stand': 1.0, 'enough': 1.0, 'work': 1.0, 'linerswhich': 1.0, 'cotton': 1.0, 'prefer': 1.0, 'although': 1.0, 'more': 1.0, 'see': 2.0, 'solid': 1.0, 'love': 1.0, 'improvement': 1.0, 'been': 1.0, 'thoughts': 1.0, 'colors': 1.0, 'protection': 1.0, 'much': 1.0, 'how': 2.0, 'these': 2.0, 'add': 1.0, 'wetter': 1.0, 'than': 1.0, 'thinner': 1.0, 'seemed': 1.0, 'great': 3.0, 'to': 7.0, 'that': 1.0, 'concerned': 1.0, 'was': 3.0, 'is': 1.0, 'at': 1.0, 'take': 1.0, 'leg': 1.0, 'themselves': 1.0, 'discomfort': 1.0, 'it': 2.0, 'will': 1.0, 'alternative': 1.0, 'cute': 1.0, 'are': 2.0, 'first': 1.0, 'diapers': 3.0, 'bulk': 1.0, 'extra': 1.0, 'microfiber': 1.0, 'my': 3.0, 'third': 1.0, 'went': 1.0, 'sadly': 1.0, 'also': 1.0, 'old': 1.0, 'brand': 1.0, 'all': 1.0, 'an': 3.0, 'them': 3.0, 'and': 7.0, 'toss': 1.0, 'tuck': 1.0, 'known': 1.0, 'expensive': 1.0, 'china': 1.0, 'for': 5.0, 'fit': 1.0, 'surprise': 1.0, 'only': 1.0, 'paid': 1.0, 'time': 1.0, 'they': 5.0, 'pocket': 1.0, 'i': 10.0, 'well': 4.0, 'a': 9.0, 'giving': 1.0, 's': 1.0, 'chance': 1.0, 'looking': 1.0, 'using': 3.0, 'gift': 1.0, 'made': 1.0, 'which': 1.0, 'after': 1.0, 'changed': 1.0, 'as': 4.0, 'diaper': 1.0, 'gave': 1.0, 'same': 1.0, 'service': 1.0, 'if': 2.0, 'customer': 1.0, 'quality': 1.0, 'their': 2.0, 'choice': 1.0, 'you': 7.0, 'pride': 1.0, 'smells': 1.0, 'lower': 1.0, 'of': 2.0, 'the': 5.0, 'tell': 1.0, 'saving': 1.0, 'soft': 1.0, 'without': 1.0, 'wrapped': 1.0, 'be': 1.0, 'irritation': 1.0, 'about': 2.0, 'would': 2.0, 'bulky': 1.0, 'no': 1.0, 'product': 3.0, 'price': 2.0, 'just': 4.0, 'serious': 2.0, 'but': 3.0, 'back': 1.0, 'most': 1.0, 'thedesigns': 1.0, 'so': 3.0, 'can': 2.0, 'adjustable': 1.0, 'not': 2.0, 'elastic': 1.0, 'red': 1.0, 'oh': 1.0, 'with': 3.0, 'containment': 1.0, 'importantly': 1.0, 'need': 1.0, 'or': 2.0, 'on': 2.0, 'long': 2.0, 'liners': 1.0, 'marks': 1.0, 'support': 1.0, 'leaks': 1.0, 'used': 2.0, 'in': 6.0, 'lot': 1.0, 'too': 1.0, 'one': 1.0, 'liner': 2.0, 'needed': 1.0, 'have': 6.0, 'hesitant': 1.0, 'simple': 1.0, 'disappointing': 1.0, 'found': 1.0, 'easy': 2.0, 'wash': 1.0}
Word element => {'absorbancy': 1.0, 'some': 1.0, 'with': 1.0, 'flour': 1.0, 'padding': 1.0, 'up': 1.0, 'extra': 1.0, 'bulk': 1.0, 'hours': 1.0, 'every': 1.0, 'you': 1.0, 'just': 1.0, 'than': 1.0, 'very': 1.0, 'your': 1.0, 'make': 1.0, 'on': 3.0, 'months': 1.0, 'other': 1.0, 'or': 1.0, 'damp': 1.0, '95th': 1.0, 'this': 2.0, 'diaper': 2.0, 'pul': 1.0, 'more': 1.0, 'the': 3.0, 'well': 2.0, 'percentile': 1.0, 'has': 1.0, 'fits': 2.0, 'my': 2.0, 'lo': 1.0, 'it': 3.0, 'covers': 1.0, 'minky': 1.0, 'she': 1.0, 'recommend': 1.0, 'outside': 1.0, 'to': 1.0, 'quickly': 1.0, 'bigger': 1.0, 'at': 1.0, 'fabric': 1.0, 'sure': 1.0, 'get': 1.0, 'and': 3.0, 'pockets': 1.0, 'i': 1.0, 'sack': 1.0, 'seems': 1.0, '2': 1.0, 'change': 1.0, 'but': 2.0, 'a': 1.0, 's': 1.0, 'size': 1.0, 'for': 2.0, 'would': 1.0, 'height': 1.0, 'towels': 1.0, '9': 1.0, 'still': 1.0, 'second': 1.0, 'weight': 1.0, 'riser': 1.0, 'snap': 1.0}
Word element => {'right': 1.0, 'test': 1.0, 'way': 1.0, 'fair': 1.0, 'out': 1.0, 'them': 2.0, 'diapers': 1.0, 'got': 1.0, 'try': 1.0, 'every': 1.0, 'just': 1.0, 'her': 1.0, 'results': 2.0, 'anything': 1.0, 'drive': 1.0, 'and': 2.0, 'is': 1.0, 'leaking': 1.0, 'cheaper': 2.0, 'are': 1.0, 'ones': 1.0, 'pee': 1.0, 'the': 4.0, 'my': 1.0, 'brand': 2.0, 'seems': 1.0, 'one': 1.0, 'for': 1.0, 'same': 2.0, 'baby': 1.0, 'of': 2.0, 'alva': 1.0, 'to': 4.0, 'bought': 1.0, 'll': 1.0, 'be': 1.0, 'literally': 1.0, 'through': 1.0, 'all': 1.0, 'able': 1.0, 'so': 1.0, 'cloth': 1.0, 'buy': 1.0, 'i': 3.0, 'guess': 1.0}
Word element => {'corner': 1.0, 'around': 1.0, 'can': 1.0, 'big': 1.0, 'summer': 1.0, 'is': 2.0, 'grow': 1.0, 'won': 1.0, 'legs': 1.0, 'shirt': 1.0, 'into': 1.0, 'or': 2.0, 'fat': 1.0, 'form': 1.0, 'my': 3.0, 'oh': 2.0, 'to': 5.0, 'be': 1.0, 'and': 4.0, 'flexable': 1.0, 'need': 1.0, 'fits': 1.0, 'days': 1.0, 'soft': 1.0, 'how': 1.0, 'are': 1.0, 't': 1.0, 'the': 3.0, 'for': 1.0, 'love': 1.0, 'with': 1.0, 'grows': 1.0, 'it': 5.0, 'stylish': 1.0, 'way': 2.0, 'i': 1.0, 'needs': 1.0, 'they': 1.0, 'your': 3.0, 'has': 2.0, 'no': 2.0, 'worry': 1.0, 'baby': 6.0, 'about': 1.0}
Word element => {'use': 1.0, 'get': 1.0, 'arrives': 1.0, 'final': 1.0, 'attractive': 1.0, 'has': 1.0, 'cheaper': 1.0, 'bulkychunk': 1.0, 'swaddlebees': 1.0, 'good': 1.0, 'side': 1.0, 'held': 1.0, 'same': 1.0, 'know': 1.0, 'didn': 1.0, 'costly': 1.0, 'cheaperchunk': 2.0, 'would': 1.0, 'bulky': 1.0, 'vs': 6.0, 'chunk': 7.0, 'gotten': 1.0, 'compared': 1.0, 'longhorn': 1.0, 'sidechunk': 1.0, 'spiderbaby': 1.0, 'girly': 1.0, 'fuzzibunz': 1.0, 'tend': 1.0, 'other': 2.0, 'seems': 1.0, 'male': 1.0, 'available': 1.0, 'variety': 1.0, 'put': 1.0, 'much': 1.0, 'general': 1.0, 'diapering': 1.0, 'important': 1.0, 'hugely': 1.0, 'minky': 1.0, 'waterproof': 1.0, 'better': 1.0, 'definitely': 1.0, 'plenty': 1.0, 'smooth': 1.0, 'purchased': 1.0, 'in': 3.0, 'edit': 1.0, 'chunks': 1.0, 'cutest': 1.0, 'material': 1.0, 'print': 1.0, 'but': 3.0, 'photo': 1.0, 'less': 4.0, 'up': 2.0, 'holds': 1.0, 'say': 2.0, 'is': 10.0, 'more': 4.0, 'son': 2.0, 'if': 1.0, 'costlychunk': 1.0, 'still': 1.0, 'isn': 1.0, 'time': 1.0, 'can': 1.0, 'so': 3.0, 'absorbent': 1.0, 'before': 1.0, 'that': 4.0, '20': 1.0, 'focus': 1.0, 'looks': 2.0, 'my': 2.0, 'll': 1.0, 'go': 1.0, 'a': 2.0, 't': 2.0, 's': 1.0, 'to': 9.0, 'options': 1.0, 'comparable': 3.0, 'some': 1.0, 'once': 1.0, 'comes': 1.0, 'these': 2.0, 'add': 1.0, 'cloth': 2.0, 'have': 4.0, 'as': 1.0, 'diaper': 1.0, 'leave': 2.0, 'born': 1.0, 're': 1.0, 'especially': 2.0, 'come': 1.0, 'i': 11.0, 'well': 1.0, 'printswill': 1.0, 'review': 2.0, 'when': 2.0, '2013after': 1.0, 'unisex': 1.0, 'this': 1.0, 'soft': 1.0, 'complete': 1.0, 'most': 1.0, 'back': 1.0, 'and': 17.0, 'brand': 1.0, 'how': 1.0, 'feels': 1.0, 'heros': 1.0, 'alva': 1.0, 'hero': 1.0, 'not': 1.0, 'product': 3.0, 'price': 1.0, 'fantastic': 1.0, 'will': 1.0, 'be': 1.0, 'getting': 1.0, 'different': 2.0, 'the': 15.0, 'of': 4.0, 'prints': 5.0, 'it': 7.0, '9': 1.0, 'having': 1.0, 'brands': 3.0, 'camo': 1.0, 'alvas': 1.0, 'acquired': 1.0, 've': 2.0, 'several': 1.0, 'colors': 4.0, 'wanted': 1.0, 'kawaii': 1.0, 'bright': 1.0, 'by': 2.0, 'just': 1.0, 'economical': 1.0, 'for': 1.0, 'bumgenius': 1.0, 'quality': 1.0, 'on': 2.0, 'liners': 1.0, 'diapers': 1.0, 'are': 5.0, 'cute': 2.0, 'love': 1.0, 'far': 2.0, 'solid': 1.0, 'bold': 1.0, 'they': 3.0, 'feel': 1.0, 'durable': 1.0, 'while': 1.0}
Word element => {'potty': 1.0, 'are': 1.0, 'hour': 1.0, 'child': 1.0, 'any': 1.0, 'for': 2.0, 'training': 1.0, 'an': 1.0, 'work': 1.0, 'would': 1.0, 'how': 1.0, 'leakage': 1.0, 'we': 1.0, 'so': 1.0, 'experience': 1.0, 'no': 1.0, 'they': 1.0, 'has': 2.0, 'around': 1.0, 'in': 1.0, 'unless': 1.0, 'also': 1.0, 'more': 1.0, 'diaper': 1.0, 'the': 2.0, 'it': 1.0, 'this': 2.0, 'than': 1.0, 'legs': 1.0, 'material': 1.0, 'not': 1.0, 'very': 1.0, 'thin': 1.0, 'i': 1.0, 'stage': 1.0, 'shape': 1.0, 'and': 1.0, 'do': 1.0, 'throughout': 1.0, 'see': 1.0}
Word element => {'choose': 1.0, 'designs': 1.0, 'there': 1.0, 'little': 1.0, 'cute': 1.0, 'worth': 1.0, 'my': 1.0, 'in': 2.0, 'to': 2.0, 'from': 1.0, 'adorable': 1.0, 'price': 1.0, 'so': 1.0, 'many': 1.0, 'looks': 1.0, 'guy': 1.0, 'this': 1.0, 'mail': 1.0, 'excited': 1.0, 'it': 1.0, 'works': 1.0, 'the': 3.0, 'diaper': 2.0, 'great': 1.0, 'get': 1.0, 'and': 2.0, 'well': 1.0, 'i': 1.0, 'are': 1.0, 'paid': 1.0}
Word element => {'brands': 1.0, 'prefer': 1.0, 'had': 1.0, 'few': 1.0, 'okay': 1.0, 'just': 2.0, 'elastic': 1.0, 'diapers': 1.0, 'especially': 1.0, 'leaks': 1.0, 'snaps': 1.0, 'are': 2.0, 'diaper': 1.0, 'these': 1.0, 'the': 3.0, 've': 1.0, 'other': 1.0, 'we': 2.0, 'leg': 2.0, 'with': 1.0, 'this': 1.0, 'of': 1.0, '34': 2.0, 'up': 1.0, 'adjustments': 2.0, 'a': 1.0, 'since': 1.0, 'front': 1.0}
Word element => {'forward': 1.0, 'money': 1.0, 'waste': 1.0, 'bumgenius': 1.0, 'pretty': 1.0, 'otherwise': 1.0, 'fan': 1.0, 'big': 1.0, 'uncle': 1.0, 'definitely': 1.0, 'sent': 1.0, 'sticking': 1.0, 'picture': 1.0, 'looked': 1.0, 'that': 1.0, 'or': 1.0, 'legs': 1.0, 'just': 1.0, 'not': 1.0, 'be': 1.0, 'bum': 1.0, 'awesome': 1.0, 'his': 2.0, 'over': 1.0, 'adorable': 1.0, 'at': 1.0, 'since': 2.0, 'follow': 1.0, 'with': 2.0, 'comic': 1.0, 'this': 2.0, 'much': 1.0, 'only': 2.0, 'useless': 1.0, 'it': 1.0, 'john': 1.0, 'regimen': 1.0, 'stash': 1.0, 'every': 1.0, 'out': 1.0, 'the': 7.0, 'clearly': 1.0, 'diaper': 2.0, 'are': 1.0, 'if': 1.0, 'will': 1.0, 'fleshed': 1.0, 'problem': 1.0, 'in': 1.0, 'said': 1.0, 'chunks': 1.0, 'waist': 1.0, 'all': 1.0, 'our': 1.0, 'patterns': 1.0, 'to': 2.0, 'of': 3.0, 'cute': 1.0, 'rest': 1.0, 'worked': 1.0, 'going': 1.0, 'thirsties': 1.0, 'a': 4.0, 'we': 4.0, 'strict': 1.0, 'he': 1.0, 'washing': 1.0, 'because': 1.0, 'pattern': 1.0, 'and': 3.0, 'used': 2.0, 'sun': 1.0, 'dry': 1.0, 'so': 1.0, 'time': 1.0, 'particular': 1.0, 'have': 1.0, 'handful': 1.0, 'leaks': 1.0, 'book': 1.0, 'apparently': 1.0, 'through': 2.0, 'is': 2.0, 'pul': 1.0, 'would': 1.0, 'wets': 1.0, 'times': 1.0, 'when': 1.0}
Word element => {'best': 1.0, 'are': 1.0, 'plus': 1.0, 'diapers': 1.0, 'prints': 1.0, 'tried': 1.0, 'service': 1.0, 'really': 1.0, 'customer': 1.0, 'great': 2.0, 'with': 1.0, 'more': 1.0, 'had': 1.0, 'different': 1.0, 'last': 1.0, 'them': 2.0, 'like': 1.0, 'using': 1.0, 'been': 1.0, 'no': 2.0, 'lot': 1.0, 'at': 1.0, 'replacements': 1.0, '4th': 1.0, 'my': 1.0, 'fits': 1.0, 'another': 1.0, 'to': 1.0, 'any': 1.0, 'snaps': 2.0, 'the': 7.0, 'diaper': 3.0, 'of': 3.0, 'immediately': 1.0, 'how': 2.0, 'types': 1.0, 'off': 2.0, 'snap': 1.0, 'i': 6.0, 'cloth': 2.0, 'bought': 1.0, 'one': 2.0, 'uses': 1.0, 'happened': 1.0, 'loved': 1.0, 'use': 2.0, 'this': 4.0, 'month': 1.0, 'fell': 2.0, 'it': 1.0, 'product': 1.0, 'love': 1.0, 'for': 1.0, 'fit': 1.0, '2': 1.0, 'but': 1.0, 'after': 3.0, 'update': 1.0, 'a': 1.0, 'could': 1.0, 'we': 1.0, 'other': 2.0, '3': 1.0, 'me': 2.0, 'not': 2.0, 'longer': 1.0, 'little': 1.0, 'very': 1.0, 'from': 1.0, 'disappointed': 1.0, 'cost': 1.0, 've': 3.0, 'problems': 1.0, 'companies': 1.0, 'and': 6.0, 'writing': 1.0, 'extra': 1.0, 'sent': 1.0, 'has': 1.0, 'review': 1.0, 'seller': 1.0, 'have': 1.0, 'contacted': 1.0}
Word element => {'you': 1.0, 'if': 1.0, 'would': 1.0, 'do': 1.0, 'pretty': 1.0, 'which': 1.0, 'really': 1.0, 'price': 1.0, 'm': 2.0, 'her': 1.0, 'respond': 1.0, 'pleased': 1.0, 'helpful': 1.0, 'so': 1.0, 'definitely': 1.0, 'extra': 1.0, 'wraps': 1.0, 'questions': 1.0, 'cute': 1.0, 'of': 2.0, 'plus': 1.0, 'because': 1.0, 'brands': 1.0, 'before': 1.0, 'out': 2.0, 'with': 1.0, 'quick': 1.0, 'hip': 1.0, 'fitting': 1.0, 'danielle': 1.0, 'i': 5.0, 'cloth': 2.0, 'is': 2.0, 'around': 1.0, 'kissaluvs': 1.0, 'very': 3.0, 'about': 1.0, 'several': 1.0, 'girl': 1.0, 'snug': 1.0, 'have': 1.0, 'legs': 1.0, 'snap': 1.0, 'testing': 1.0, 'to': 3.0, 'as': 2.0, 'all': 1.0, 'thirsties': 1.0, 'a': 1.0, 'your': 1.0, 'make': 1.0, 'on': 1.0, 'picky': 1.0, 'love': 1.0, 'for': 1.0, 'making': 1.0, 'one': 1.0, 'huge': 1.0, 'not': 1.0, 'diapers': 5.0, 'purchase': 1.0, 'my': 2.0, 'been': 1.0, 'genius': 1.0, 'quality': 1.0, 'sprout': 1.0, 'baby': 2.0, 'bum': 1.0, 'change': 1.0, 'recommend': 1.0, 'chunk': 1.0, 'leaking': 1.0, 'diapering': 1.0, 'in': 1.0, 'and': 4.0, 'stand': 1.0, 'perfectly': 1.0, 'prefolds': 1.0, 'the': 6.0, 'these': 3.0, 'far': 1.0, 'hard': 1.0, 'designs': 1.0, 'are': 3.0}
Word element => {'person': 1.0, 'so': 1.0, 'is': 1.0, 'which': 1.0, 'bug': 1.0, 'lady': 1.0, 'in': 1.0, 'also': 1.0, 'material': 1.0, 'and': 2.0, 'amazing': 1.0, 'of': 1.0, 'quality': 1.0, 'surprised': 1.0, 'because': 1.0, 'was': 1.0, 'its': 1.0, 'pleasantly': 1.0, 'price': 1.0, 'cute': 1.0, 'ordered': 2.0, 'i': 3.0, 'this': 1.0, 'it': 1.0, 'the': 1.0, 'diaper': 1.0, 'great': 1.0, 'a': 1.0, 'fits': 1.0, 'on': 1.0, 'my': 1.0, 'lo': 1.0}
Word element => {'stroller': 1.0, 'bought': 1.0, 'unique': 1.0, 'law': 1.0, 'in': 2.0, 'apart': 1.0, 'mother': 1.0, 'great': 3.0, 'my': 1.0, 'happy': 1.0, 'fortune': 1.0, 'i': 3.0, 'was': 1.0, 'shower': 1.0, 'with': 1.0, 'a': 3.0, 's': 2.0, 'product': 1.0, 'love': 1.0, 'for': 1.0, 'perfect': 1.0, 'this': 2.0, 'found': 1.0, 'gift': 1.0, 'and': 4.0, 'like': 1.0, 'so': 1.0, 'it': 6.0, 'looks': 1.0, 'cost': 1.0, 'better': 1.0, 'us': 1.0, 'm': 1.0, 'to': 1.0, 'as': 1.0, 'very': 1.0, 'baby': 1.0, 'even': 1.0, 'buy': 1.0, 'person': 1.0, 'overall': 1.0, 'strolls': 1.0, 'is': 1.0, 'around': 1.0, 'simple': 1.0, 'take': 1.0, 'fold': 1.0, 'up': 1.0}
Word element => {'above': 1.0, 'noted': 1.0, 'improvements': 1.0, 'use': 1.0, 'could': 1.0, 'made': 1.0, 'has': 3.0, 'instruction': 1.0, 'sides': 1.0, 's': 1.0, 'rolled': 1.0, 'but': 6.0, 'was': 1.0, 'problem': 1.0, 'brake': 1.0, 'strapped': 1.0, 'propping': 1.0, 'resolved': 1.0, 'when': 2.0, 'practical': 1.0, 'operated': 2.0, 'jogging': 3.0, 'weighs': 1.0, 'setup': 1.0, 'grandson': 1.0, 'however': 1.0, 'easy': 1.0, '6': 1.0, 'comes': 2.0, 'once': 1.0, 'arranged': 1.0, 'entire': 1.0, 'in': 3.0, 'seat': 4.0, 'infant': 2.0, 'by': 2.0, 'being': 1.0, 'very': 1.0, 'on': 3.0, 'rear': 1.0, 'her': 1.0, 'that': 7.0, 'his': 2.0, 'around': 1.0, 'since': 1.0, 'according': 1.0, 'smoothly': 3.0, 'quality': 2.0, 'wheels': 1.0, 'their': 1.0, 'head': 1.0, 'toddler': 2.0, 'back': 1.0, 'added': 1.0, 'devices': 1.0, 'over': 1.0, 'work': 1.0, 'bassinet': 3.0, 'pushed': 1.0, 'to': 6.0, 'straight': 1.0, 'took': 1.0, 'interchangeable': 1.0, 'this': 6.0, 'holding': 1.0, 'bottle': 1.0, 'manual': 1.0, 'slouched': 1.0, 'constructed': 1.0, 'safety': 1.0, 'with': 3.0, 'plenty': 1.0, 'month': 1.0, 'rode': 1.0, 'under': 1.0, 'him': 1.0, 'its': 1.0, 'only': 4.0, 'my': 1.0, 'are': 2.0, 'even': 1.0, 'old': 1.0, 'of': 3.0, '50': 1.0, 'tools': 1.0, 'while': 1.0, 'removed': 1.0, 'matter': 1.0, 'assembly': 1.0, 'for': 7.0, 'design': 2.0, 'thoughtfully': 1.0, 'up': 6.0, 'hold': 2.0, '17': 2.0, '5': 1.0, 'i': 2.0, 'line': 1.0, 'well': 2.0, 'job': 1.0, 'lying': 1.0, 'storage': 2.0, 'months': 1.0, 'side': 2.0, 'which': 2.0, 'as': 2.0, 'blankets': 1.0, 'it': 5.0, 'be': 4.0, 'used': 1.0, 'large': 3.0, 'life': 1.0, 'no': 4.0, 'were': 2.0, 'instructions': 1.0, 'handbrake': 1.0, 'needed': 1.0, 'the': 21.0, 'process': 1.0, 'been': 1.0, 'went': 1.0, 'minutes': 1.0, 'into': 1.0, 'is': 10.0, 'can': 5.0, 'compact': 1.0, 'also': 2.0, 'package': 1.0, 'or': 1.0, 'feature': 3.0, 'minor': 1.0, 'probably': 1.0, 'before': 1.0, 'fairly': 1.0, 'collapse': 1.0, 'wheel': 1.0, 'pushing': 1.0, 'mosquito': 2.0, 'turning': 1.0, 'rough': 1.0, 'position': 1.0, 'provided': 2.0, 'strap': 1.0, 'few': 3.0, 'brakes': 1.0, 'did': 1.0, 'keep': 1.0, 'they': 1.0, 'pedal': 1.0, 'phone': 1.0, 'stability': 1.0, 'available': 1.0, 'detachable': 1.0, 'folds': 1.0, 'front': 1.0, 'stroller': 8.0, 'terrain': 1.0, 'swivels': 1.0, 'doubt': 1.0, 'two': 2.0, 'locked': 1.0, 'other': 1.0, 'wallet': 1.0, 'ahead': 1.0, 'there': 2.0, 'pounds': 3.0, 'saddle': 1.0, 'detailed': 1.0, 'literature': 1.0, 'space': 1.0, 'cup': 1.0, 'foot': 1.0, 'holders': 1.0, 'zippered': 1.0, 'child': 4.0, 'compartment': 1.0, 'keys': 1.0, 'high': 1.0, 'cell': 1.0, 'a': 21.0, 'bag': 1.0, 'am': 1.0, 'strollers': 1.0, 'tightly': 1.0, 'aware': 1.0, 'have': 3.0, 'flat': 1.0, 'running': 1.0, 'wrist': 1.0, 'away': 1.0, 'arm': 1.0, 'an': 2.0, 'adult': 1.0, 'who': 1.0, 'from': 1.0, 'does': 1.0, 'not': 1.0, 'first': 1.0, 'rain': 1.0, 'will': 2.0, 'attaches': 1.0, 'cover': 1.0, 'and': 11.0, 'net': 2.0, 'would': 1.0, 'happy': 1.0, 'useful': 1.0, 'bottom': 1.0}
Word element => {'here': 1.0, 'snow': 1.0, 'stuff': 1.0, 'storage': 1.0, 'handy': 1.0, 'side': 1.0, 'console': 1.0, 'important': 1.0, 'keeping': 2.0, 'also': 2.0, 'case': 1.0, 'not': 1.0, 'get': 1.0, 'months': 2.0, 'inflated': 1.0, '6': 1.0, 't': 1.0, 'beat': 1.0, 'gets': 2.0, 'paved': 1.0, 'where': 1.0, 'area': 1.0, 'poor': 1.0, 'rural': 1.0, 'all': 2.0, 'as': 2.0, 'purpose': 1.0, 'about': 1.0, 'awesome': 1.0, 'one': 1.0, 'smooth': 1.0, 'with': 3.0, 'jog': 1.0, 'like': 2.0, 'stable': 1.0, 'peaceful': 1.0, 'condition': 1.0, 'your': 2.0, 'bounce': 1.0, 'little': 2.0, 'saddle': 1.0, 'there': 1.0, 'you': 2.0, 'versions': 1.0, 'terrain': 1.0, 'priced': 1.0, 'parent': 1.0, 'better': 1.0, '2': 1.0, 'but': 1.0, 'wrong': 1.0, 'claims': 1.0, 'company': 1.0, 'live': 1.0, 'family': 1.0, 'my': 1.0, 'age': 1.0, 'plane': 1.0, 'm': 1.0, 'in': 5.0, 'outgrow': 1.0, 'doing': 1.0, 'of': 5.0, 'the': 15.0, 'daily': 1.0, 'provides': 1.0, 'infants': 1.0, 'take': 1.0, 'we': 1.0, 'fine': 1.0, 'more': 1.0, 'used': 1.0, 's': 5.0, 'confident': 1.0, 'a': 8.0, 'going': 2.0, 'pump': 1.0, 'go': 2.0, 'lower': 1.0, 'construction': 1.0, 'being': 1.0, 'very': 4.0, 'trips': 1.0, 'has': 1.0, 'yr': 1.0, 'last': 1.0, 'found': 1.0, 'easy': 1.0, 'durable': 1.0, 'highly': 1.0, 'few': 1.0, 'this': 6.0, 'kids': 1.0, 'it': 8.0, 'train': 1.0, 'built': 1.0, 'be': 3.0, 'use': 3.0, 'weather': 1.0, 'ride': 3.0, 'everything': 2.0, 'child': 1.0, 'toddler': 1.0, 'much': 1.0, 'put': 1.0, 'strong': 1.0, 'when': 1.0, 'what': 1.0, 'comfortable': 1.0, 'for': 9.0, 'pretty': 1.0, 'to': 7.0, 'grow': 1.0, 'stroller': 7.0, 'our': 1.0, 'scheduled': 1.0, 'accessories': 1.0, 'fold': 1.0, 'still': 1.0, 'by': 2.0, 'together': 1.0, 'amazingly': 1.0, 'quality': 2.0, 'wheels': 1.0, 'bumpy': 1.0, 'lake': 1.0, 'car': 2.0, 'hand': 1.0, 'toddlers': 1.0, 'since': 1.0, 'claim': 1.0, 'or': 1.0, 'feature': 1.0, 'properly': 1.0, 'would': 1.0, 'recommended': 2.0, 'and': 10.0, '50': 1.0, 'shock': 1.0, 'importantly': 1.0, 'children': 1.0, 'limit': 1.0, 'well': 3.0, 'roads': 2.0, 'i': 3.0, 'fast': 1.0, 'is': 2.0, 'unpaved': 1.0, 'than': 1.0, 'way': 1.0, 'before': 1.0, 'they': 1.0, 'bad': 1.0, 'are': 2.0, 'can': 3.0, 'so': 1.0, 'travel': 1.0, 'will': 2.0, 'on': 1.0, 'pound': 1.0, 'long': 1.0, 'after': 2.0, 'fact': 1.0, 'old': 1.0, 'intended': 1.0, 'was': 1.0, 'up': 3.0, 'favorite': 1.0, 'that': 4.0, 'really': 2.0, 'absorbed': 1.0, 'bag': 1.0, 'fulfills': 1.0, 'using': 1.0, 'instead': 1.0, 'even': 3.0, 'jogging': 1.0, 'tires': 1.0, 'path': 1.0}
Word element => {'if': 1.0, 'disabilities': 1.0, 'by': 1.0, 'them': 1.0, 'find': 1.0, 'than': 1.0, 'having': 1.0, 'easier': 1.0, 'kinds': 1.0, 'are': 1.0, 'you': 6.0, 'push': 1.0, 'so': 2.0, 'included': 1.0, 'suitable': 1.0, 'need': 4.0, 'with': 4.0, 'don': 1.0, 'up': 1.0, 'boogie': 1.0, 'stroller': 2.0, 'wheels': 1.0, 'piece': 2.0, 'together': 2.0, 'inch': 1.0, 'surfaces': 1.0, 'very': 3.0, 'read': 1.0, 'little': 1.0, 'fits': 1.0, 'all': 3.0, 'to': 8.0, 'your': 1.0, 'any': 1.0, 'indoor': 1.0, 'as': 2.0, 'limit': 1.0, 'twelve': 1.0, 'a': 3.0, 'going': 1.0, 'was': 1.0, 'receive': 1.0, 'will': 1.0, 'much': 1.0, 'do': 1.0, 'put': 1.0, '3': 1.0, 'might': 1.0, 'attractive': 1.0, 'really': 1.0, 'goes': 1.0, 'weight': 1.0, 'quickly': 1.0, 'is': 6.0, 'noted': 1.0, 'it': 6.0, 'this': 3.0, 'observe': 1.0, 'steer': 1.0, 'jogging': 1.0, 'person': 1.0, 'of': 2.0, 'the': 8.0, 't': 1.0, 'fit': 1.0, 'for': 2.0, 'set': 2.0, 'tip': 1.0, 'over': 2.0, 'open': 1.0, 'box': 1.0, 'easily': 1.0, 'that': 2.0, 'instructions': 1.0, 'use': 1.0, 'tools': 1.0, 'about': 1.0, 'easy': 1.0, 'know': 1.0, 'feet': 2.0, 'long': 1.0, 'assembled': 1.0, 'wide': 1.0, 'situation': 1.0, 'thing': 1.0, '2': 1.0, 'but': 1.0, 'not': 2.0, 'while': 1.0, 're': 1.0, 'consider': 1.0, 'size': 1.0, 'accessories': 1.0, 'far': 1.0, 'recommended': 1.0, 'and': 7.0, '50': 1.0, 'pounds': 1.0, 'one': 1.0, 'ones': 1.0, 'would': 1.0, 'delight': 1.0, 'be': 1.0, 'larger': 1.0}
Word element => {'taking': 1.0, 'one': 1.0, 'day': 2.0, 'them': 1.0, 'has': 1.0, 'should': 1.0, 'couple': 1.0, 'only': 1.0, 'your': 1.0, 'nice': 1.0, 'water': 1.0, 'adult': 1.0, 'cup': 2.0, 'hurry': 1.0, 'or': 2.0, 'disney': 1.0, 'often': 1.0, 'are': 4.0, 'and': 3.0, 'born': 1.0, 'ride': 1.0, 'brother': 1.0, 'for': 4.0, 'she': 2.0, 'baby': 1.0, 'here': 1.0, 'be': 2.0, 'tall': 1.0, 'new': 1.0, 'would': 1.0, 'ocean': 1.0, 'support': 1.0, 'consthe': 1.0, 'assemble': 1.0, 'assembly': 1.0, 'who': 1.0, 'aware': 1.0, 'middle': 1.0, 'difficult': 1.0, 'but': 3.0, 'holder': 2.0, 'order': 1.0, 'small': 2.0, 'a': 7.0, 'will': 2.0, 'could': 1.0, 'take': 1.0, 'having': 2.0, 'sister': 2.0, 'live': 1.0, 'which': 1.0, 'good': 2.0, 'made': 1.0, 'beach': 3.0, 'my': 6.0, 'fits': 1.0, 'playing': 1.0, 'whole': 1.0, 'cardboard': 1.0, 'stroller': 5.0, 'excellent': 1.0, 'smooth': 1.0, 'with': 1.0, 'bottle': 1.0, 'this': 5.0, 'pain': 1.0, 'her': 5.0, 'use': 3.0, 'instructions': 1.0, 'got': 1.0, 'after': 2.0, 'can': 1.0, 'so': 4.0, 'i': 2.0, 'pros': 1.0, 'original': 1.0, 'current': 1.0, 'at': 1.0, 'is': 11.0, 'comes': 1.0, 'say': 1.0, '38': 1.0, 'second': 1.0, 'continue': 1.0, 'niece': 4.0, 'much': 1.0, 'do': 2.0, 'they': 1.0, 'on': 1.0, 'near': 1.0, 'easy': 2.0, 'to': 13.0, 'bassinet': 1.0, 'child': 2.0, 'toddler': 2.0, 'very': 4.0, 'inches': 1.0, 'maneuverabilitythe': 1.0, 'not': 4.0, 'uncomfortable': 1.0, 'back': 2.0, 'allow': 1.0, 'from': 2.0, 'feels': 1.0, 'some': 1.0, 'collapse': 1.0, 'like': 1.0, 'thought': 1.0, 'it': 5.0, 'swap': 1.0, 'remove': 1.0, 'the': 17.0, 'of': 5.0, 'stiff': 1.0, 'there': 3.0, 'head': 2.0, 'seat': 3.0, 'in': 2.0, 'things': 1.0, 'you': 4.0, 'that': 1.0, 'easily': 1.0, 'have': 1.0, 'now': 1.0, 'still': 2.0, 'if': 3.0}
Word element => {'great': 1.0, 'overall': 1.0, 'check': 1.0, 'came': 1.0, 'airport': 1.0, 'unfolding': 1.0, 'vacation': 1.0, 'recently': 1.0, 'well': 1.0, 'travels': 1.0, 'like': 1.0, 'shop': 1.0, 'time': 2.0, 'little': 1.0, 'product': 1.0, 'for': 1.0, 'issues': 1.0, 'plus': 1.0, 'is': 1.0, 'folding': 1.0, 'also': 1.0, 'will': 1.0, 'includes': 1.0, 'add': 1.0, 'purchase': 1.0, 'initial': 1.0, 'dimed': 1.0, 'moms': 1.0, 'and': 3.0, 'had': 1.0, 'nickel': 1.0, 'settle': 1.0, 'no': 1.0, 'about': 1.0, 'years': 2.0, 'took': 1.0, 'loved': 1.0, 'bob': 1.0, 'that': 1.0, 'of': 1.0, 'gate': 1.0, 'the': 6.0, 'were': 1.0, 'upgrade': 1.0, 'after': 3.0, 'ride': 1.0, 'accessories': 1.0, 'everything': 2.0, 'year': 2.0, 'huge': 1.0, 'decided': 1.0, 'on': 2.0, '4': 1.0, 'research': 1.0, 'with': 2.0, 'nicely': 1.0, 'first': 2.0, 'only': 1.0, 'it': 5.0, 'from': 1.0, 'looked': 1.0, 'a': 4.0, 'we': 8.0, 'other': 1.0, 'our': 1.0, 'to': 6.0, 'all': 2.0, 'stroller': 3.0, 'weeks': 1.0, 'terrain': 1.0, 'but': 1.0, 'easily': 1.0, 'you': 3.0, 'when': 2.0, 'this': 3.0, 'found': 1.0, 'me': 1.0, 'wow': 1.0, 'not': 1.0, 'standard': 1.0, 'does': 1.0, 'brands': 1.0, 'included': 1.0, 'would': 2.0, 'need': 3.0, 'at': 2.0}
Word element => {'order': 1.0, 'everyone': 1.0, 'for': 1.0, 'item': 1.0, 'this': 1.0, 'recommend': 1.0, 'happy': 1.0, 'with': 1.0, 'what': 1.0, 'it': 2.0, 'highly': 1.0, 'very': 1.0, 'said': 1.0, 'socks': 1.0, 'was': 1.0, 'would': 1.0, 'to': 1.0, 'exactly': 1.0, 'be': 1.0, 'the': 1.0}
Word element => {'materials': 1.0, 'recycled': 1.0, 'that': 1.0, 'i': 1.0, 'sounds': 1.0, 'animal': 1.0, 'starter': 1.0, 'a': 1.0, 'machine': 1.0, 's': 2.0, 'teaching': 1.0, 'blanket': 1.0, 'love': 1.0, 'for': 1.0, 'from': 1.0, 'open': 1.0, 'starts': 1.0, 'house': 1.0, 'made': 1.0, 'washable': 1.0, 'out': 1.0, '34': 2.0, 'fun': 1.0, 'krauss': 1.0, 'too': 1.0, 'when': 1.0, 'gets': 1.0, 'ruth': 1.0, 'butterflies': 1.0, 'and': 2.0, 'conversation': 1.0, 'along': 1.0, 'more': 1.0, 'the': 2.0, 'useful': 1.0, 'baby': 1.0, 'grows': 1.0, 'with': 1.0, 'this': 1.0, 'older': 1.0, 'it': 2.0}
Word element => {'uses': 1.0, 'few': 1.0, 'after': 1.0, 'those': 1.0, 'work': 1.0, 'milk': 1.0, 'y': 1.0, 'ripped': 1.0, 'cut': 1.0, 'get': 1.0, 'seems': 1.0, 'nipples': 1.0, 'baby': 1.0, 'a': 1.0, 'well': 1.0, 'less': 1.0, 'ones': 1.0, 'the': 3.0, 'to': 2.0, 'works': 1.0, 'out': 1.0, 'of': 2.0, 'bottle': 1.0, 'i': 1.0, 'flow': 1.0, 'bought': 1.0, 'additional': 1.0, 'instead': 1.0, 'as': 1.0}
Word element => {'use': 1.0, 'really': 1.0, 'intended': 1.0, 'this': 1.0, 'not': 1.0, 'say': 1.0, 'for': 1.0, 'product': 1.0, 'much': 1.0, 'to': 1.0, 'you': 1.0, 'buy': 1.0, 'its': 1.0}
Word element => {'bedding': 1.0, 'baby': 1.0, 'of': 1.0, 'the': 1.0, 'about': 1.0, 'surprise': 1.0, 'size': 2.0, 'soft': 1.0, 'thick': 1.0, 'very': 1.0, 'perfect': 1.0, 'satisfied': 1.0, 'which': 1.0, 'for': 1.0, 'a': 3.0, 'quilt': 1.0, 'was': 1.0, 'pirate': 1.0, 'nice': 2.0, 'nursery': 1.0, 'larger': 1.0}
Word element => {'pressure': 1.0, 'on': 1.0, 'needed': 1.0, 'brain': 1.0, 'have': 1.0, 'kitchen': 1.0, 'one': 1.0, 'for': 1.0, 'love': 1.0, 'out': 2.0, 'can': 1.0, 'but': 1.0, 'really': 1.0, 'mounts': 1.0, 're': 1.0, 'doing': 1.0, 'this': 1.0, 'it': 1.0, 'our': 1.0, 'to': 2.0, 'now': 1.0, 'and': 1.0, 'things': 1.0, '34': 2.0, 'there': 1.0, 'of': 1.0, 'a': 1.0, 'we': 2.0, 't': 1.0, 'adjustments': 1.0, 'so': 1.0, 'loves': 1.0, 'into': 1.0, 'installation': 1.0, 'figure': 1.0, 'little': 1.0, 'mix': 1.0, 'us': 1.0, 'you': 2.0, 'cook': 1.0, 'when': 1.0, 'get': 1.0, 'area': 1.0, 'ease': 1.0, 'plays': 1.0, 'he': 1.0, 'prep': 1.0, 'brings': 1.0, 'his': 1.0, 'toys': 1.0, 'over': 1.0, 'the': 7.0, 'gate': 1.0, 'while': 1.0, 'isn': 1.0, 'helped': 1.0, 'clearest': 1.0, 'if': 1.0}
Word element => {'solved': 1.0, 'problems': 1.0, 'pay': 1.0, 'yet': 1.0, 'value': 1.0, 'recommend': 1.0, 'impressed': 1.0, 'satisfied': 1.0, 'completely': 1.0, 'conclusion': 1.0, 'these': 1.0, 'sectioned': 1.0, 'keep': 2.0, 'than': 1.0, 'rather': 1.0, 'were': 1.0, 'anywhere': 1.0, 'about': 2.0, 'modern': 1.0, 'perfectly': 1.0, 'perpetually': 1.0, 'having': 1.0, 'silver': 1.0, 'there': 1.0, 'here': 1.0, 'run': 1.0, 'suppose': 1.0, 'opener': 1.0, 'then': 1.0, 'reviews': 1.0, 'we': 4.0, 'paws': 1.0, 'with': 4.0, 'stoppers': 1.0, 'edge': 1.0, '1': 2.0, 'would': 3.0, 'handful': 1.0, 'medium': 1.0, 'mine': 1.0, 'stand': 1.0, 'doubt': 1.0, 'best': 1.0, 'but': 6.0, 'large': 1.0, 'questions': 1.0, 'its': 2.0, 'have': 5.0, 'small': 2.0, 'work': 1.0, 'amount': 1.0, 'possible': 2.0, 'are': 1.0, 'my': 3.0, 'me': 3.0, 'from': 4.0, 'allow': 1.0, 'feels': 1.0, 'this': 8.0, 'amazing': 1.0, 'look': 2.0, 'step': 2.0, 'foot': 1.0, 'screw': 1.0, 'off': 3.0, 'yes': 1.0, 'until': 1.0, 'first': 1.0, 'also': 3.0, 'will': 2.0, 'days': 1.0, 'dog': 5.0, 'answered': 1.0, 'used': 1.0, 'feature': 1.0, 'i': 13.0, 'putting': 1.0, 'couldn': 1.0, 'anyone': 1.0, 'spent': 1.0, 'some': 2.0, 'fine': 1.0, 'like': 1.0, 'avoid': 1.0, 'extensions': 1.0, 'that': 4.0, 'looks': 1.0, 'easily': 1.0, 'wanted': 1.0, 'any': 1.0, 'way': 1.0, 'all': 2.0, 'other': 1.0, 'an': 2.0, 'could': 1.0, 'guiding': 1.0, 'to': 19.0, 'high': 1.0, 'was': 2.0, 'pedal': 3.0, 'front': 1.0, 'what': 1.0, 'major': 1.0, 'be': 2.0, 'it': 18.0, 'sets': 1.0, 'in': 6.0, 'review': 1.0, 'depot': 1.0, 'little': 1.0, 'white': 1.0, 'pair': 1.0, 'for': 9.0, 'highly': 2.0, 'given': 1.0, 'however': 1.0, 'get': 2.0, 'others': 2.0, 'researching': 1.0, 'situation': 1.0, 'great': 1.0, 'if': 1.0, 'want': 3.0, 'temporary': 1.0, 'choice': 1.0, 'you': 2.0, 'didn': 3.0, 's': 1.0, 't': 4.0, 'fit': 2.0, 'the': 20.0, 'old': 1.0, 'of': 5.0, 'gate': 9.0, 'factor': 1.0, 'furniture': 1.0, 'buying': 1.0, '100': 1.0, 'answer': 1.0, 'thinking': 1.0, '34': 8.0, '8': 1.0, 'year': 1.0, 'different': 1.0, 'not': 2.0, 'write': 1.0, 'slams': 1.0, 'is': 2.0, 'can': 3.0, 'shut': 2.0, 'personally': 1.0, 'once': 1.0, 'comes': 1.0, 'stay': 1.0, 'again': 1.0, 'possibility': 1.0, 'include': 1.0, 'newborn': 1.0, 'say': 1.0, 'originally': 1.0, 'larger': 1.0, 'smart': 1.0, 'ikea': 1.0, 'dogs': 1.0, 'figure': 1.0, 'out': 2.0, 'though': 1.0, 'by': 3.0, 'home': 1.0, 'no': 1.0, 'door': 2.0, 'operation': 1.0, 'automatic': 1.0, 'gates': 2.0, 'each': 1.0, 'going': 1.0, 'apart': 2.0, 'end': 1.0, 'corresponds': 1.0, 'price': 3.0, 'force': 1.0, 'a': 12.0, 'applied': 1.0, 'does': 4.0, 'tries': 1.0, 'has': 2.0, 'them': 1.0, 'solution': 1.0, 'caged': 1.0, 'slam': 1.0, 'close': 1.0, 'backed': 1.0, 'gently': 1.0, '5': 1.0, 'barely': 1.0, 'rid': 1.0, 'enough': 1.0, '3': 2.0, 'weight': 1.0, 'him': 2.0, 'ties': 1.0, 'he': 1.0, 'do': 1.0, 'extend': 1.0, '4': 3.0, 'extension': 2.0, 'on': 4.0, 'adjusters': 1.0, 'find': 1.0, 'very': 1.0, 'thankfully': 1.0, 'additional': 2.0, 'max': 1.0, 'side': 1.0, 'good': 1.0, 'actually': 1.0, 'plastic': 1.0, 'managed': 1.0, 'through': 1.0, 'directly': 1.0, 'into': 1.0, '48': 1.0, 'before': 1.0, 'hallway': 1.0, 'adhesive': 1.0, 'ends': 1.0, 'now': 1.0, 'pads': 1.0, 'give': 1.0, 'they': 1.0, 'let': 1.0, 'overall': 1.0, 'both': 1.0, 'needed': 1.0, 'and': 13.0, 'just': 2.0, 'means': 1.0, 'else': 1.0, 'similar': 1.0, 'open': 4.0, 'spend': 1.0, 'think': 2.0}
Word element => {'recommend': 1.0, 'honestly': 1.0, 'proof': 1.0, 'definitely': 2.0, 'strong': 1.0, 'or': 1.0, 'down': 1.0, 'both': 1.0, 'just': 1.0, 'nothing': 1.0, 'out': 1.0, 'ages': 1.0, 'aren': 1.0, 'they': 2.0, 'nor': 1.0, '4': 1.0, '7': 1.0, 'older': 1.0, 't': 2.0, 'fit': 1.0, 'stars': 1.0, 'love': 3.0, 'for': 1.0, 'where': 1.0, 'extra': 1.0, 'attach': 1.0, 'and': 6.0, 'tall': 1.0, 'setting': 1.0, 'toddlers': 1.0, 'add': 1.0, 'do': 1.0, 'you': 4.0, 'have': 2.0, 'to': 10.0, 'heavy': 1.0, 'as': 3.0, 'needed': 1.0, 'easy': 1.0, 'gate': 3.0, 'children': 1.0, 'hands': 2.0, 'from': 2.0, 'frame': 1.0, 'extension': 1.0, 'pedal': 2.0, 'standing': 1.0, 'keeps': 1.0, 'your': 2.0, 'enough': 2.0, 'dual': 1.0, 'on': 2.0, 'adjust': 1.0, 'door': 1.0, 'free': 2.0, 'a': 3.0, 's': 1.0, 'the': 11.0, 'of': 2.0, 'recieved': 1.0, '5': 1.0, 'foot': 2.0, 'install': 1.0, 'amazing': 1.0, 'really': 1.0, 'review': 1.0, 'has': 1.0, 'if': 1.0, 'pedals': 1.0, 'feet': 1.0, 'i': 8.0, 'well': 1.0, 'who': 1.0, 'rated': 1.0, 'latches': 1.0, 'this': 3.0, 'grip': 2.0, 'sample': 1.0, '9': 1.0, 'it': 14.0, 'although': 1.0, 'brands': 1.0, 'would': 1.0, 'summer': 1.0, 'handle': 2.0, 'is': 8.0, 'ready': 1.0, 'child': 1.0, 'product': 4.0, 'year': 1.0, 'because': 1.0, 'that': 4.0, 'my': 2.0, '2': 1.0, 'can': 4.0, 'fact': 1.0, 'old': 2.0, 'truly': 1.0, 'daughter': 1.0, 'press': 1.0, 'years': 1.0, 'no': 1.0, 'way': 2.0, 'use': 2.0, 'her': 1.0, 'dislike': 1.0, 'tried': 1.0, 'climb': 2.0, 'like': 1.0, 'all': 2.0, 'an': 1.0, 'other': 1.0, 'used': 2.0, 'be': 1.0, 'with': 3.0, 'each': 1.0, 'which': 1.0, 'side': 1.0, 'in': 1.0, 'not': 1.0, 'itself': 1.0, 'using': 1.0, 'swings': 1.0, 'also': 1.0, 'boys': 2.0, 'are': 2.0, 'opposite': 1.0, 'then': 1.0, 'closes': 1.0, 'about': 1.0, 'behind': 1.0, 'there': 2.0, 'infants': 2.0, 'over': 2.0, 'open': 4.0, 'even': 3.0}
Word element => {'does': 1.0, 'one': 1.0, 'screwed': 1.0, 'sturdy': 1.0, 'be': 1.0, 'without': 1.0, 'damage': 1.0, 'cause': 1.0, 'they': 1.0, 'move': 1.0, 'do': 1.0, 'and': 1.0, 'being': 1.0, 'how': 1.0, 'concerned': 1.0, 'didn': 1.0, 'little': 1.0, 'to': 1.0, 'was': 1.0, 'nor': 1.0, 'easily': 1.0, 'any': 1.0, 'don': 1.0, 'about': 1.0, 'a': 1.0, 'well': 1.0, 'i': 1.0, 'installs': 1.0, 'would': 2.0, 'rubber': 1.0, 'very': 1.0, 'up': 1.0, 'this': 2.0, 'it': 4.0, 'have': 1.0, 'screw': 1.0, 'into': 1.0, 'think': 1.0, 'walls': 2.0, 'against': 1.0, 'but': 2.0, 't': 2.0, 'great': 1.0, 'the': 3.0, 'possible': 1.0, 'are': 1.0, 'pads': 1.0}
Word element => {'off': 1.0, 'on': 1.0, 'and': 1.0, 'get': 1.0, 'be': 1.0, 'issues': 1.0, 'with': 1.0, 'major': 1.0, 'no': 1.0, 'shipping': 1.0, 'opting': 1.0, 'company': 1.0, 'to': 3.0, 'can': 1.0, 'right': 1.0, 'changed': 1.0, 'due': 1.0, 'have': 1.0, 'i': 2.0, 'last': 1.0, 'review': 2.0, 'for': 1.0, 'posted': 1.0, 'exchange': 1.0, 'they': 1.0, 'tough': 1.0, 'cups': 2.0, 'the': 3.0, 'ones': 1.0, 'after': 1.0, 'except': 1.0, 'even': 1.0, 'handles': 1.0, 'covered': 1.0, 'since': 1.0, 'rating': 1.0, 'return': 1.0}
Word element => {'or': 1.0, 'great': 1.0, 'get': 1.0, 'trying': 1.0, 'not': 1.0, 'just': 1.0, 'if': 1.0, 'problem': 1.0, 'picture': 1.0, 'didn': 1.0, 'at': 1.0, 'fixed': 1.0, 'adjust': 1.0, 'movie': 1.0, 'setting': 1.0, 'looked': 1.0, 'front': 1.0, 'as': 1.0, 'least': 1.0, 'to': 5.0, 'look': 1.0, 'but': 2.0, 'can': 1.0, 'it': 8.0, 'wish': 1.0, 'vision': 1.0, 'this': 2.0, 'only': 1.0, 'skin': 1.0, 'using': 1.0, 'like': 1.0, 'purple': 1.0, 'i': 6.0, 'night': 1.0, 'baby': 1.0, 'temperature': 1.0, 'well': 2.0, 'see': 2.0, 'have': 2.0, 'about': 1.0, 'thing': 1.0, 'is': 4.0, 'the': 9.0, 'cute': 1.0, 'still': 1.0, 'that': 6.0, 'totally': 1.0, 'brown': 1.0, 'camera': 2.0, 'stood': 1.0, 'turn': 1.0, 'in': 1.0, 'little': 1.0, 'monitor': 2.0, 'and': 3.0, 're': 1.0, 'off': 1.0, 'seems': 1.0, 'will': 1.0, 'had': 1.0, 'complexion': 1.0, 'what': 1.0, 't': 1.0, 'a': 6.0, 's': 2.0, 'going': 1.0, 'you': 1.0, 'when': 1.0, 'example': 1.0, 'make': 1.0, 'on': 3.0, 'drawback': 1.0, 'of': 2.0, 'are': 1.0, 'makes': 1.0, 'cool': 1.0, 'one': 1.0, 'color': 3.0, 'different': 1.0, 'lights': 2.0, 'for': 1.0}
Word element => {'on': 1.0, 'spent': 1.0, 'well': 1.0, 'was': 1.0, 'money': 1.0, 'it': 2.0, 'product': 1.0, 'bought': 1.0, 'our': 1.0, 'worth': 1.0, 'baby': 1.0, 'this': 1.0, 'for': 1.0, 'the': 1.0, 'shower': 1.0, 'i': 1.0, 'daughters': 1.0, 'what': 1.0, 'fantastic': 1.0, 'a': 1.0}
Word element => {'returned': 1.0, 'item': 1.0, 'all': 1.0, 'not': 1.0, 'either': 1.0, 'times': 1.0, 'change': 1.0, 'i': 1.0, 'satisfied': 1.0, 'fuzzy': 1.0, 'had': 1.0, 'was': 2.0, 'at': 2.0, 'camera': 1.0, 'that': 1.0, 'on': 2.0, 'called': 1.0, 'reception': 1.0, 'end': 1.0, 'my': 1.0, 'they': 1.0, 'and': 2.0, 'me': 1.0, 'work': 1.0, 'but': 1.0, 'didn': 1.0, 'frequency': 1.0, 'blurred': 1.0, 'the': 3.0, 't': 1.0}
Word element => {'voice': 1.0, 'or': 1.0, 'price': 1.0, 'picture': 1.0, 'feature': 1.0, 'wifi': 1.0, 'need': 1.0, 'not': 2.0, 'did': 1.0, 'used': 1.0, 'works': 1.0, 'vision': 1.0, 'on': 1.0, 'video': 1.0, 'but': 1.0, 'weeks': 1.0, 'loved': 1.0, 'have': 2.0, 'and': 3.0, 'monitor': 2.0, 'yet': 1.0, 'for': 1.0, 'had': 1.0, 'camera': 1.0, 've': 1.0, 'night': 2.0, 'i': 6.0, 'lullabies': 1.0, 'a': 1.0, 'front': 1.0, 'since': 1.0, 'like': 2.0, 'this': 1.0, 'it': 2.0, 'first': 1.0, 'especially': 1.0, 'that': 2.0, 'takes': 1.0, 'of': 1.0, 'there': 1.0, 'is': 1.0, 'two': 1.0, 'no': 1.0, 'great': 2.0, 'the': 3.0, 'red': 1.0, 'light': 1.0}
Word element => {'initially': 1.0, 'only': 1.0, 'week': 1.0, 'read': 1.0, 'which': 1.0, 'charge': 1.0, 'extras': 1.0, 'offers': 1.0, 'also': 1.0, 'time': 1.0, 'first': 1.0, 'holds': 1.0, 'caught': 1.0, 'somehow': 1.0, 'once': 1.0, 'of': 2.0, 'out': 1.0, 'for': 1.0, 'product': 1.0, 'afraid': 1.0, 'was': 2.0, 'under': 1.0, 'because': 1.0, 'sister': 1.0, 'good': 1.0, 'hid': 1.0, 'her': 1.0, 'with': 1.0, 'video': 1.0, 'back': 1.0, 'monitors': 1.0, 'none': 1.0, 'have': 1.0, 'home': 1.0, 'child': 1.0, 'other': 1.0, 'stop': 1.0, 'this': 2.0, 'camera': 3.0, 'in': 4.0, 've': 2.0, 'got': 1.0, 'can': 1.0, 'but': 1.0, 'most': 1.0, 'be': 1.0, 'ability': 1.0, 'laughed': 1.0, 'had': 3.0, 'husband': 1.0, 'the': 7.0, 'it': 2.0, 'covers': 1.0, 'she': 2.0, 'hysterically': 1.0, '3': 1.0, 'offered': 1.0, 'side': 2.0, 'speak': 1.0, 'motion': 1.0, 'told': 1.0, 'our': 2.0, 'to': 5.0, 'as': 2.0, 'awesome': 1.0, 'year': 1.0, 'has': 1.0, 'well': 1.0, 'through': 1.0, 'my': 1.0, 'plugged': 1.0, 'description': 1.0, 'and': 4.0, 'get': 2.0, 'i': 1.0, 'old': 1.0, 'you': 1.0, 'again': 1.0, 'when': 1.0, 'lot': 1.0, 'three': 1.0, 'bed': 2.0, 'a': 3.0, 'we': 3.0, 'messing': 1.0}
Word element => {'stars': 1.0, '4': 1.0, 'say': 1.0, 'rating': 1.0, 'adjust': 1.0, 'annoying': 1.0, 'inconsistency': 1.0, 'usually': 1.0, 'foot': 1.0, 'moving': 1.0, 'shouldn': 1.0, 'icon': 1.0, 'no': 1.0, 'periodically': 1.0, 'turns': 1.0, 'biggest': 1.0, '2014': 1.0, 'buy': 1.0, 'good': 2.0, 'product': 1.0, 'price': 1.0, 'now': 1.0, 'for': 1.0, 'especially': 1.0, 'use': 1.0, 'further': 1.0, 'review': 1.0, 'months': 1.0, 'update': 2.0, 'probably': 1.0, 'will': 1.0, 'solid': 1.0, 'w': 1.0, 'email': 1.0, 'about': 2.0, 'service': 1.0, 'customer': 1.0, 'emailed': 1.0, 'available': 1.0, 'point': 1.0, 'entire': 1.0, 'sound': 1.0, 'pick': 1.0, 'ability': 1.0, 'its': 1.0, 'low': 1.0, 'far': 1.0, 'quality': 1.0, 'pdf': 1.0, 'impressed': 1.0, 'aware': 1.0, 'rather': 1.0, 'something': 1.0, 'other': 1.0, 'attention': 1.0, 'familiar': 1.0, 'gets': 1.0, '12': 1.0, 'first': 2.0, 'want': 2.0, 'sure': 1.0, 'there': 2.0, 'so': 4.0, 'rotates': 1.0, 'also': 3.0, 'capable': 1.0, 'isn': 1.0, 'that': 6.0, 'because': 1.0, 'making': 1.0, 'easily': 1.0, 'within': 2.0, 'touch': 1.0, 'does': 1.0, 'light': 1.0, 'power': 2.0, 'out': 3.0, 'keeping': 1.0, 'i': 16.0, 'even': 1.0, 'of': 16.0, 'online': 1.0, 'the': 45.0, 'position': 1.0, 'held': 1.0, '5': 1.0, 'one': 3.0, 'limits': 1.0, 'lot': 1.0, 'too': 1.0, 'or': 5.0, 'couple': 1.0, 'feature': 2.0, 'world': 1.0, 'mount': 1.0, 'finding': 1.0, 'side': 4.0, 'hand': 2.0, 'table': 1.0, 'audio': 1.0, 'website': 1.0, 'were': 2.0, 'went': 1.0, 'downloading': 1.0, 'used': 1.0, 'have': 2.0, 'than': 1.0, 'middling': 1.0, 'wall': 1.0, 'd': 2.0, 'playing': 1.0, 'sensitive': 1.0, 'an': 6.0, 'fixes': 1.0, 'reach': 2.0, 'call': 1.0, 'way': 1.0, 'place': 1.0, 'great': 1.0, 'if': 2.0, 'zoom': 1.0, 'things': 2.0, 'you': 6.0, 'device': 1.0, 'able': 2.0, '6': 1.0, 'c': 1.0, 'checking': 1.0, 'remote': 6.0, 'fairly': 1.0, 'levana': 1.0, 'we': 1.0, 'take': 2.0, 'a': 12.0, 'today': 1.0, 'monitors': 1.0, 'certainly': 2.0, 'crib': 1.0, 'albeit': 1.0, 'don': 1.0, 'still': 1.0, 'down': 2.0, 'last': 1.0, 'hours': 1.0, 'baby': 7.0, 'where': 2.0, 'your': 3.0, 'many': 1.0, 'either': 1.0, 'up': 3.0, 'adequate': 2.0, 'had': 1.0, 'photos': 1.0, 'right': 1.0, 'to': 21.0, 'ago': 1.0, 'two': 2.0, 'little': 3.0, 'nice': 3.0, 'back': 2.0, 'note': 2.0, 'outlet': 1.0, 'changed': 1.0, 'can': 5.0, 'is': 7.0, 'lullabies': 3.0, 'look': 2.0, 'flashes': 1.0, 'at': 2.0, 'very': 2.0, 'challenge': 1.0, 'then': 1.0, 'only': 2.0, 'amazing': 1.0, 'quickly': 2.0, 'this': 9.0, 'needed': 2.0, 'somewhat': 1.0, 'since': 1.0, 'day': 1.0, 'when': 2.0, 'poked': 1.0, 'came': 1.0, 'determining': 1.0, 'keera': 2.0, 'not': 5.0, 'distances': 1.0, 'whether': 1.0, 'on': 8.0, 'camera': 9.0, 'elsewhere': 1.0, 'deceptive': 1.0, 'has': 3.0, 'smartphones': 1.0, 'around': 3.0, 'videogames': 1.0, 'elements': 1.0, 'in': 4.0, 'expensive': 1.0, 's': 6.0, 'm': 3.0, 'icons': 2.0, 'wasn': 1.0, 'like': 1.0, 'signal': 4.0, 'see': 2.0, 'just': 3.0, 'and': 12.0, 'tried': 1.0, '2': 1.0, 'attached': 1.0, 'cameras': 1.0, 'ipad': 1.0, 'but': 4.0, 'issue': 1.0, 'they': 3.0, 'my': 1.0, 'lens': 1.0, 'are': 4.0, 'be': 4.0, 'initial': 1.0, 'it': 14.0, 'quietly': 1.0, 'fully': 1.0, 'responded': 1.0, 'controlled': 1.0, 'disconnected': 1.0, 'security': 1.0, 'directional': 1.0, 'go': 1.0, 'from': 2.0, 'improvement': 1.0, 'dial': 1.0, 'lower': 1.0, 'remember': 1.0, 'screen': 1.0, 'corner': 2.0, 're': 1.0, 'know': 1.0, 'how': 1.0, 'years': 1.0, 'our': 1.0, 'drag': 2.0, 'comfortable': 2.0, 'thing': 1.0, 'mounted': 2.0, 'though': 2.0, 'by': 1.0, 'after': 2.0, 'image': 1.0, 'manual': 3.0, 'reviewing': 1.0, 'transmitting': 1.0, 'was': 2.0, 'features': 2.0, 'specs': 1.0, 'once': 1.0, 'charged': 1.0, 'fair': 1.0, 'more': 2.0, 'carried': 1.0, 'discovered': 1.0, 'snap': 1.0, 'voice': 2.0, 'times': 1.0, 'surveillance': 3.0, 'range': 3.0, 'front': 1.0, 't': 5.0, 'contraption': 1.0, 'navigate': 1.0, 'porch': 1.0, 'cord': 2.0, 'unit': 2.0, 'really': 1.0, 'essential': 1.0, 'again': 1.0, 'which': 1.0, 'monitoring': 1.0, 'tell': 1.0, 've': 2.0, 'talk': 1.0, 'through': 1.0, 'video': 1.0, 'play': 1.0, 'make': 1.0, 'me': 3.0, 'think': 1.0, 'with': 6.0, 'although': 2.0, 'filling': 1.0}
Word element => {'clip': 1.0, 'say': 1.0, 'drawbacks': 1.0, 'only': 1.0, 'use': 1.0, 'display': 1.0, 'panel': 1.0, 'could': 1.0, 'will': 1.0, 'detects': 1.0, 'once': 1.0, 'activate': 1.0, 'have': 1.0, 'are': 2.0, 'detected': 1.0, 'there': 1.0, 'navigate': 1.0, 'sleep': 1.0, 'basically': 1.0, 'peep': 1.0, 'especially': 1.0, 'life': 1.0, 'quiet': 1.0, 'excellent': 1.0, 'battery': 1.0, 'smallest': 1.0, 'pick': 1.0, 'very': 2.0, 'also': 1.0, 'sound': 4.0, 'done': 1.0, 'adjust': 1.0, 'gets': 1.0, 'purposes': 1.0, 'mode': 1.0, 'but': 2.0, 's': 1.0, 'in': 1.0, 'decent': 1.0, 'lucky': 1.0, 'hd': 1.0, 'quality': 3.0, 'beneficial': 1.0, 'house': 1.0, 'sounds': 1.0, 'throughout': 1.0, 'not': 1.0, 'reception': 1.0, 'issues': 1.0, 'no': 2.0, 'had': 3.0, 'one': 1.0, 'touch': 1.0, 'during': 1.0, 'they': 1.0, 'what': 1.0, 'view': 2.0, 'got': 1.0, 'day': 1.0, 'kind': 2.0, 'trouble': 1.0, 'get': 2.0, 'into': 1.0, 'wish': 2.0, 'security': 1.0, 'thing': 1.0, 'nanny': 1.0, 'see': 1.0, 'a': 7.0, 'like': 1.0, 'unit': 2.0, 'typical': 1.0, 'be': 3.0, 'that': 4.0, 'because': 1.0, 'more': 2.0, 'of': 6.0, 'device': 2.0, 'the': 17.0, 'without': 1.0, 'good': 1.0, 'made': 1.0, 'and': 8.0, 'getting': 1.0, 'this': 7.0, 'full': 1.0, 'thought': 2.0, 'it': 9.0, 'for': 5.0, 'even': 1.0, 'lights': 2.0, 'my': 2.0, 'sensitivity': 1.0, 'monitoring': 1.0, 'another': 2.0, 'wifi': 2.0, 'honest': 1.0, 'from': 1.0, 'allow': 1.0, 'was': 2.0, 'baby': 1.0, 'unfortunately': 1.0, 'job': 1.0, 'to': 12.0, 'through': 1.0, 'mistake': 1.0, 'great': 2.0, 'little': 1.0, 'nice': 2.0, 'hook': 1.0, 'up': 2.0, 'dogs': 1.0, 'i': 11.0, 'attract': 1.0, 'actually': 1.0, 'guess': 1.0, 'ir': 1.0, 'mistaken': 1.0, 'easy': 1.0, 'however': 1.0, 'packed': 2.0, 'turn': 2.0, 'if': 3.0, 'clear': 1.0, 'still': 1.0, 'capabilities': 1.0, 'camera': 7.0, 'toddler': 1.0, 'price': 3.0, 'economical': 1.0, 'picture': 1.0, 'monitor': 5.0, 'with': 3.0, 'red': 1.0, 'distracting': 1.0, 'pan': 1.0, 'features': 2.0, 'puts': 1.0, 'has': 1.0, 'belt': 1.0, 'likes': 1.0, 'obviously': 1.0, 'tilt': 1.0, 'its': 1.0, 'did': 1.0, 'cam': 1.0, 'keep': 1.0, 'is': 12.0, 'at': 1.0, 'other': 1.0, 'an': 1.0, 'would': 1.0, 'wandering': 1.0, 'eye': 1.0, 'on': 3.0, 'out': 1.0, 'range': 1.0, 'perfect': 1.0, 'bed': 1.0, 'zoom': 1.0, 'invisible': 1.0, 'any': 1.0, 'your': 2.0, 'viewing': 1.0, 'you': 3.0, 'able': 1.0, 'night': 1.0, 'led': 1.0, 'so': 2.0, 'can': 4.0, 'feature': 1.0, 'or': 1.0}
Word element => {'easy': 1.0, 'deal': 1.0, 'big': 1.0, 'line': 1.0, 'off': 1.0, 'get': 1.0, 'instruction': 1.0, 'use': 1.0, 'stand': 3.0, 'are1': 1.0, 'keep': 1.0, 'since': 1.0, 'three': 2.0, 'im': 1.0, 'immediately': 1.0, 'does': 1.0, 'usually': 1.0, 'because': 1.0, 'last': 1.0, 'good': 1.0, 'different': 1.0, '3': 2.0, 'think': 2.0, 'lastly': 1.0, 'life': 1.0, 'just': 2.0, 'by': 1.0, 'it': 13.0, 'says': 1.0, 'hrs': 2.0, 'after': 1.0, 'a': 5.0, 't': 1.0, 'over': 1.0, 'overall': 1.0, 'do': 2.0, 'best': 1.0, 'monitor': 7.0, 'this': 4.0, 'wish': 1.0, 'in': 1.0, 'camera': 1.0, 'at': 2.0, 'is': 5.0, 'sleeps': 1.0, 'around': 1.0, 'for': 2.0, 'now': 1.0, 'weird': 1.0, 'you': 1.0, 'night': 2.0, 'battery': 1.0, 'about': 1.0, 'wall': 1.0, 'i': 12.0, '4': 1.0, 'on': 5.0, 'long': 1.0, 'mounted': 1.0, 'charger': 1.0, 'view': 1.0, 'everything': 2.0, 'must': 1.0, 'doesn': 1.0, 'will': 1.0, 'of': 4.0, 'the': 12.0, 'have': 5.0, 'remember': 1.0, 'to': 3.0, 'bugged': 1.0, 'maybe': 1.0, 'plug': 1.0, '5': 1.0, 'nap': 1.0, 'cons': 1.0, 'carry': 1.0, 'time': 2.0, 'hate': 1.0, 'son': 1.0, 'month': 1.0, 'under': 1.0, '2': 2.0, 'but': 2.0, 'when': 2.0, 'always': 1.0, 'puts': 1.0, 'bugs': 1.0, 'angle': 1.0, 'some': 1.0, 'had': 3.0, 'type': 1.0, 'most': 1.0, 'back': 1.0, 'table': 1.0, 'alot': 1.0, 'friendly': 1.0, 'inconvenient': 1.0, 'move': 1.0, 'and': 2.0, 'chores': 1.0, 'booklet': 1.0, 'my': 2.0, 'me': 1.0, 'itself': 1.0, 'not': 4.0, 'deliverd': 1.0, 'with': 1.0}
Word element => {'right': 1.0, 'situation': 1.0, 'us': 1.0, 'they': 1.0, 'experience': 1.0, 'make': 2.0, 'above': 2.0, 'went': 2.0, 'shoptronics': 1.0, 'beyond': 2.0, 'friendly': 1.0, 'user': 1.0, 'overall': 1.0, 'touch': 1.0, 'quickly': 2.0, 'charges': 1.0, 'time': 1.0, 'long': 1.0, 'battery': 1.0, 'sensitive': 1.0, 'mode': 1.0, 'doesn': 1.0, 'for': 3.0, 'like': 1.0, 'which': 1.0, 'reading': 1.0, 'expected': 1.0, 'temperature': 1.0, 'our': 1.0, 'to': 3.0, 'be': 1.0, 'peep': 1.0, 'also': 1.0, 'one': 1.0, 'model': 1.0, 'very': 1.0, 'monitor': 2.0, 'dysfunctional': 1.0, 'and': 8.0, 'sent': 1.0, 'fuzzy': 1.0, 'ordered': 1.0, 'were': 1.0, 'returned': 1.0, 'when': 1.0, 'less': 1.0, 'it': 5.0, 'with': 1.0, 'that': 2.0, 'been': 1.0, 'had': 1.0, 'another': 1.0, 'have': 4.0, 'we': 5.0, 'a': 2.0, 't': 2.0, 'place': 1.0, 'the': 10.0, 'responds': 1.0, 'nice': 1.0, 'great': 1.0, 'but': 1.0, '2': 1.0, 'work': 1.0, 'in': 1.0, 'camera': 1.0, 'pleased': 1.0, 'feet': 1.0, 'from': 1.0, 'baby': 1.0, 'night': 1.0, 'lasts': 1.0, 'clear': 1.0, 'this': 2.0, 'vision': 1.0, 'more': 1.0, 'is': 3.0, 'further': 1.0, 'than': 2.0, 'didn': 1.0, 'picture': 1.0, 'i': 1.0, 'feature': 1.0, 'becomes': 1.0, 'nursery': 1.0, 'its': 1.0, 'works': 1.0, 'much': 1.0, 'screen': 1.0, 'would': 1.0}
Word element => {'up': 1.0, 'set': 1.0, 'easy': 1.0, 'works': 1.0, 'fidelity': 1.0, 'although': 1.0, 'does': 1.0, 'quite': 1.0, 'quality': 1.0, 'performance': 1.0, 'should': 1.0, 'which': 1.0, 'like': 1.0, 'looks': 1.0, 'light': 2.0, 'just': 1.0, 'by': 1.0, 'in': 2.0, 'bluish': 1.0, 'tends': 1.0, 'only': 1.0, 'purchase': 1.0, 'color': 4.0, 'one': 1.0, 'even': 2.0, 'making': 1.0, 'perhaps': 1.0, 'low': 1.0, 'her': 2.0, 'time': 1.0, 'once': 1.0, 'very': 1.0, 'monitor': 4.0, 'as': 3.0, 'job': 2.0, 'to': 8.0, 'of': 3.0, 'the': 10.0, 'doing': 1.0, 'this': 2.0, 'despite': 1.0, 'camera': 1.0, 'product': 1.0, 'for': 3.0, 'be': 4.0, 'image': 1.0, 'it': 3.0, 'tint': 1.0, 'him': 2.0, 'speak': 2.0, 'fine': 1.0, 'important': 1.0, 'at': 2.0, 'is': 10.0, 'more': 1.0, 'far': 1.0, 'baby': 5.0, 'muffled': 1.0, 'them': 1.0, 'all': 4.0, 'an': 1.0, 'will': 1.0, 'also': 2.0, 'and': 5.0, 'play': 1.0, 'you': 5.0, 'able': 2.0, 'your': 5.0, 'on': 1.0, 'white': 1.0, 'remotely': 1.0, 'than': 1.0, 'aside': 1.0, 'that': 3.0, 'into': 1.0, 'if': 1.0, 'under': 1.0, 'hear': 1.0, 'same': 1.0, 'monitoring': 1.0, 'not': 3.0, 'a': 4.0, 'small': 1.0, 'selection': 1.0, 'lullabies': 1.0, 'warmer': 1.0, 'pale': 1.0, 'so': 3.0, 'can': 4.0, 'trigger': 1.0, 'said': 1.0, 'poorer': 1.0, 'view': 1.0, 'additional': 1.0, 'see': 2.0, 'cameras': 1.0, 'incandescent': 1.0, 'link': 1.0, 'viewer': 1.0, 'split': 1.0, 'screen': 1.0, 'are': 1.0, 'available': 1.0, 'black': 1.0, 'there': 1.0, 'speaing': 1.0, 'sound': 2.0, 'or': 2.0, 'feature': 1.0, 'great': 1.0}
Word element => {'holders': 1.0, 'cup': 1.0, 'contain': 1.0, 'handlebar': 1.0, 'caddy': 1.0, 'as': 2.0, 'amazon': 1.0, 'purchased': 1.0, 'basket': 1.0, 'fits': 1.0, 'options': 1.0, 'company': 1.0, 'purchase': 1.0, 'want': 1.0, 'off': 1.0, 'snap': 1.0, 'take': 1.0, 'need': 2.0, 'car': 1.0, 'play': 1.0, 'and': 4.0, 'two': 1.0, 'little': 1.0, 'very': 4.0, 'have': 4.0, 'seating': 1.0, 'must': 1.0, 'contacted': 1.0, 'flat': 1.0, 'if': 1.0, 'every': 2.0, 'didnt': 1.0, 'popular': 1.0, 'chassis': 1.0, 'before': 1.0, 'distributor': 1.0, 'mesh': 1.0, 'takes': 1.0, 'maxi': 1.0, 'its': 1.0, 'be': 1.0, 'seat': 1.0, 'bassinet': 1.0, 'imprint': 1.0, 'to': 5.0, 'any': 1.0, 'not': 4.0, 'my': 1.0, 'me': 2.0, 'there': 2.0, 'bottom': 1.0, 'fold': 2.0, 'shipping': 1.0, 'adapter': 2.0, 'had': 1.0, 'back': 3.0, 'put': 1.0, 'on': 5.0, 'stroller': 6.0, 'is': 3.0, 'completely': 1.0, 'choice': 1.0, 'you': 1.0, 'folded': 1.0, 'backorder': 1.0, 'stuffing': 1.0, 'a': 5.0, 'go': 1.0, 'with': 4.0, 'cosi': 1.0, 'few': 1.0, 'this': 4.0, 'it': 5.0, 'i': 4.0, 'well': 2.0, 'lays': 1.0, 'good': 1.0, 'fabric': 3.0, 'for': 4.0, 'does': 1.0, 'bag': 1.0, 'light': 1.0, 'heard': 1.0, 'time': 1.0, 'so': 1.0, 'however': 1.0, 'leaves': 1.0, 'problems': 1.0, 'because': 1.0, 'that': 4.0, 'was': 1.0, 'filled': 1.0, 'original': 1.0, 'storage': 1.0, 'shape': 1.0, 'manufacturer': 1.0, 'like': 1.0, 'said': 1.0, 'air': 1.0, 'they': 1.0, 'never': 1.0, 'the': 13.0, 'of': 4.0, 'are': 2.0, 'out': 1.0, 'replacement': 1.0, 'set': 1.0, 'wheels': 3.0, 'sitting': 1.0, 'problem': 2.0, 'part': 2.0, 'feels': 1.0, 'canbe': 1.0, 'kind': 1.0}
Word element => {'real': 1.0, 'material': 1.0, 'not': 1.0, 'great': 1.0, 'love': 1.0, 'super': 1.0, 'thick': 1.0, 'soft': 1.0, 'quality': 1.0, 'and': 1.0, 'size': 1.0, 'will': 1.0, 'baby': 2.0, 'the': 1.0, 'a': 1.0, 'perfect': 1.0, 'boy': 1.0, 'for': 1.0, 'your': 1.0}
Word element => {'pattern': 1.0, 'like': 1.0, 'happen': 1.0, 'and': 1.0, 'just': 1.0, 'up': 1.0, 'sets': 1.0, 'easy': 1.0, 'home': 1.0, 'second': 1.0, 'also': 1.0, 'in': 1.0, 'infant': 1.0, 'crib': 1.0, 'use': 1.0, 'other': 1.0, 'play': 2.0, 'yard': 2.0, 'my': 1.0, 'happy': 1.0, 'am': 1.0, 'as': 3.0, 'very': 1.0, 'i': 3.0, 'any': 1.0, 'price': 1.0, 'looking': 1.0, 'frills': 1.0, 'the': 2.0, 'this': 1.0, 'with': 1.0, 'it': 2.0, 's': 2.0, 'a': 2.0, 'no': 1.0, 'for': 3.0, 'model': 1.0, 'but': 1.0, 'our': 1.0, 'that': 1.0, 'what': 1.0, 'was': 1.0, 'to': 2.0}
Word element => {'yard': 1.0, 'is': 1.0, 'quality': 1.0, 'no': 1.0, 'up': 1.0, 'of': 1.0, 'and': 2.0, 'setting': 1.0, 'i': 1.0, 'problems': 1.0, 'best': 1.0, 'you': 1.0, 'with': 1.0, 'this': 2.0, 'play': 1.0, 'taking': 1.0, 'down': 1.0, 'can': 1.0, 'had': 1.0, 'beat': 1.0, 'the': 2.0, 't': 1.0, 'great': 1.0, 'price': 1.0}
Word element => {'any': 1.0, 'have': 1.0, 'in': 1.0, 'problem': 1.0, 'slept': 2.0, 'when': 1.0, 'guess': 1.0, 'i': 1.0, 'old': 1.0, '3': 1.0, 'my': 1.0, 'couple': 1.0, 'down': 1.0, 'laid': 1.0, 'we': 1.0, 'so': 2.0, 'blankets': 1.0, 'padded': 1.0, 'very': 1.0, 'carrying': 1.0, 'she': 3.0, 'easy': 1.0, 'but': 1.0, 'didn': 1.0, 'little': 1.0, 'set': 1.0, 'up': 1.0, 'bottom': 1.0, 'a': 4.0, 'folded': 1.0, 'traveling': 1.0, 'is': 1.0, 'on': 1.0, 'it': 4.0, 'with': 2.0, 'this': 1.0, 'month': 1.0, 'bag': 1.0, 'for': 2.0, 'handle': 1.0, 'heavy': 1.0, 'great': 2.0, 't': 2.0, 'the': 1.0, 'has': 1.0, 'isn': 1.0}
Word element => {'to': 1.0, 'difficult': 1.0, 'are': 1.0, 'latches': 1.0, 'depress': 1.0, 'rail': 1.0, 'sometimes': 1.0, 'stars': 1.0, 'seems': 1.0, '5': 1.0, 'yard': 1.0, 'have': 2.0, 'would': 1.0, 'given': 1.0, 'that': 1.0, 'i': 2.0, 'sturdy': 1.0, 'has': 1.0, 'and': 1.0, 'this': 1.0, 'it': 1.0, 'only': 1.0, 'a': 1.0, 'down': 1.0, 'cute': 1.0, 'fall': 1.0, 'play': 1.0, 'design': 1.0, 'the': 2.0, 'is': 1.0}
Word element => {'in': 1.0, 'sleep': 1.0, 'loves': 1.0, 'and': 1.0, 'week': 1.0, 'to': 1.0, 'old': 1.0, 'am': 1.0, 'she': 1.0, 'baby': 1.0, 'my': 1.0, 'i': 1.0, '4': 1.0, '3': 1.0, 'it': 1.0, 'month': 1.0, 'a': 1.0, 'sitting': 1.0, 'days': 1.0, 'granddaughter': 1.0}
Word element => {'needs': 1.0, 'both': 1.0, 'works': 1.0, 'what': 1.0, 'exactly': 1.0, 'wanted': 1.0, 'was': 1.0, 'play': 1.0, 'special': 1.0, 'yard': 1.0, 'too': 1.0, 'with': 1.0, 'this': 1.0, 'it': 1.0, 'month': 1.0, 'old': 2.0, 'i': 3.0, '4': 1.0, 'cute': 1.0, 'bought': 1.0, 'great': 1.0, '2': 2.0, 'and': 2.0, '1': 2.0, 'love': 1.0, 'for': 3.0, 'very': 1.0, 'year': 1.0, 'my': 2.0}
Word element => {'is': 1.0, 'and': 1.0, 'buy': 1.0, 'to': 1.0, 'this': 1.0, 't': 1.0, 'bought': 1.0, 'didn': 1.0, 'i': 1.0, 'alternate': 1.0, 'great': 2.0, 'it': 2.0, 'love': 1.0, 'want': 1.0, 'a': 3.0, 'mattress': 1.0, 'crib': 1.0, 'for': 2.0, 'more': 1.0, 'comfort': 1.0}
Word element => {'move': 1.0, 'sturdy': 1.0, 'it': 1.0, 'toot': 1.0, 'little': 1.0, 'good': 1.0, 'their': 1.0, 'light': 1.0, 'by': 1.0, 'over': 1.0, 'from': 2.0, 'together': 1.0, 'value': 1.0, 'room': 1.0, '20': 1.0, 'put': 1.0, 'video': 1.0, 'will': 1.0, 'instructions': 1.0, 'amazon': 1.0, 'a': 4.0, 'website': 1.0, 'the': 5.0, 'is': 5.0, 'more': 1.0, 'for': 1.0, 'expensive': 1.0, 'this': 1.0, 'provided': 1.0, 'mattress': 2.0, 'to': 6.0, 'only': 1.0, 'dollars': 1.0, 'pack': 1.0, 'easy': 2.0, 'mini': 2.0, 'con': 1.0, 'you': 1.0, 'thin': 1.0, 'need': 1.0, 'which': 1.0, '10': 1.0, 'purchase': 1.0, 'pad': 1.0, 'crib': 2.0, 'play': 2.0, 'and': 4.0, 'mattess': 1.0, 'sheet': 1.0, '6': 1.0, 'of': 1.0, 'way': 1.0, 'complete': 1.0, 'setup': 1.0, 'lots': 1.0}
Word element => {'in': 1.0, 'complaint': 1.0, 'easily': 1.0, 'folds': 1.0, 't': 1.0, 'great': 1.0, 'lock': 1.0, 'month': 1.0, 'have': 1.0, 'disagree': 1.0, 'completely': 1.0, 'my': 2.0, 'cost': 1.0, 'chair': 1.0, 'reviews': 1.0, 'using': 1.0, 'for': 2.0, 'purchasing': 1.0, 'read': 1.0, '7': 1.0, 'flimsy': 1.0, 'doesn': 1.0, 'an': 1.0, 'said': 1.0, 'is': 2.0, 'her': 1.0, 'works': 1.0, 'before': 1.0, 'and': 4.0, 'position': 1.0, 'chances': 1.0, 'some': 1.0, 'folding': 1.0, 'only': 1.0, 'this': 1.0, 'it': 4.0, 'now': 1.0, 'its': 1.0, 'was': 1.0, 'excellent': 1.0, 'not': 1.0, 'well': 1.0, 'old': 1.0, 'i': 4.0, 'took': 1.0, 'made': 1.0}
Word element => {'put': 1.0, 'or': 1.0, 'big': 1.0, 'and': 2.0, 'very': 2.0, 'easy': 1.0, 'satisfied': 1.0, 'perfect': 1.0, 'it': 1.0, 'for': 1.0, 's': 1.0, 'apartment': 1.0, 'a': 1.0, 'together': 1.0, 'not': 1.0, 'cheap': 1.0, 'small': 2.0, 'to': 3.0}
Word element => {'purchase': 1.0, 'my': 1.0, 'am': 1.0, 'value': 1.0, 'good': 1.0, 'this': 1.0, 'with': 1.0, 'is': 2.0, 'a': 1.0, 'product': 1.0, 'exactly': 1.0, 'pleased': 1.0, 'what': 1.0, 'looking': 1.0, 'i': 2.0, 'was': 1.0, 'for': 1.0, 'very': 2.0, 'and': 1.0}
Word element => {'find': 1.0, 'maybe': 1.0, 'so': 1.0, 'tho': 1.0, 'reviews': 1.0, 'other': 1.0, 'in': 1.0, 'see': 1.0, 'didn': 1.0, 'te': 1.0, 'out': 1.0, 'come': 1.0, 'won': 1.0, 'avacado': 1.0, 'daughter': 1.0, 'crumble': 1.0, 'foods': 1.0, 'about': 1.0, 'what': 1.0, 'fairly': 1.0, 'not': 1.0, 'baby': 1.0, 'once': 1.0, 'back': 1.0, 'angled': 1.0, 'easy': 1.0, 'con': 1.0, 'i': 5.0, 'their': 1.0, 'into': 1.0, 'gave': 1.0, 'that': 2.0, 'bought': 1.0, 'and': 6.0, 'this': 3.0, 'it': 7.0, 'only': 1.0, 'design': 1.0, 'but': 2.0, 'can': 3.0, 'smeared': 1.0, 'highchair': 1.0, 'love': 1.0, 'own': 1.0, 'problem': 1.0, 'the': 7.0, 'your': 1.0, 'on': 1.0, 'is': 5.0, 't': 5.0, 'we': 1.0, 'a': 1.0, 'high': 1.0, 'my': 2.0, 'chair': 1.0, 'clean': 1.0, 'fabric': 2.0, 'wipes': 1.0, 'sturdy': 1.0, 'just': 1.0, 'light': 1.0, 'take': 2.0, 'cute': 1.0, 'sit': 1.0, 'straps': 1.0, 'any': 1.0, 'seat': 2.0, 'to': 3.0, 'you': 1.0, 'ya': 1.0, 'cannot': 1.0, 'don': 1.0, 'up': 1.0, 'wash': 2.0, 'or': 2.0, 'off': 2.0}
Word element => {'in': 1.0, 'ok': 1.0, '38': 1.0, 'paid': 1.0, 'good': 1.0, 'additionally': 1.0, 'used': 1.0, 'will': 1.0, 'cleanable': 1.0, 'fortune': 1.0, 'un': 1.0, 'pretty': 1.0, 'stained': 1.0, 'have': 2.0, 'now': 1.0, 'practically': 1.0, 'so': 1.0, 'longer': 1.0, 'down': 1.0, 'swimming': 1.0, '34': 2.0, 'much': 1.0, 'only': 1.0, 'instructions': 1.0, 'cleaning': 1.0, 'leaky': 1.0, 'out': 2.0, 'wipe': 1.0, 'baby': 1.0, 'and': 3.0, 'money': 1.0, 'but': 1.0, '2': 1.0, 'diaper': 1.0, 'the': 7.0, 'tools': 1.0, 'already': 1.0, 's': 2.0, 'a': 3.0, 'we': 5.0, 'new': 1.0, 'permanently': 1.0, 've': 1.0, 'on': 1.0, 'stuff': 1.0, 'say': 1.0, 'is': 2.0, 'that': 2.0, 'box': 1.0, 'hours': 1.0, 'no': 3.0, 'had': 2.0, 'for': 3.0, 'high': 2.0, 'parent': 1.0, 're': 2.0, 'they': 1.0, 'necessary': 1.0, 'of': 3.0, 'chair': 2.0, 'there': 1.0, 'remove': 1.0, 'it': 3.0, 'with': 1.0, 'problem': 1.0, 'infants': 1.0, 'right': 1.0, 'are': 1.0, 'has': 1.0, 'expected': 1.0, 'be': 3.0, 'short': 1.0, 'little': 1.0, 'messy': 1.0, 'not': 2.0, 'as': 2.0, 'spilled': 1.0, 'to': 4.0, 'all': 1.0, 'seat': 1.0, 'cosco': 1.0, 'way': 1.0, 'power': 1.0}
Word element => {'put': 1.0, 'to': 1.0, 'has': 1.0, 'nothing': 1.0, 'so': 1.0, 'together': 1.0, 'not': 1.0, 'a': 1.0, 'cheap': 1.0, 'for': 1.0, 'what': 1.0, 'bad': 1.0, 'i': 1.0, 'paid': 1.0, 'seems': 1.0, 'broke': 1.0, 'little': 1.0, 'easy': 1.0, 'far': 1.0, 'but': 1.0}
Word element => {'my': 1.0, 'pillow': 1.0, 'tried': 1.0, 'i': 1.0, 'seat': 1.0, 'out': 2.0, 'sit': 1.0, 'right': 1.0, 'can': 1.0, 'pulled': 1.0, 'a': 2.0, 'year': 1.0, 'granddaughter': 1.0, 'to': 1.0, 'but': 1.0, 'forward': 1.0, 'an': 1.0, 'those': 1.0, 'like': 1.0, 'and': 1.0, 'dine': 1.0, 'little': 2.0, 'baby': 1.0, 'your': 1.0, 'does': 1.0, 'for': 1.0, 'mine': 1.0, 'one': 1.0, 'are': 1.0, 'the': 2.0, 'ones': 1.0, 'it': 1.0, 'with': 1.0, 'older': 1.0, 'this': 1.0, 'chair': 1.0, 'recline': 1.0, 'creates': 1.0, 'position': 1.0, 'awkward': 1.0}
Word element => {'either': 1.0, 'don': 1.0, 'so': 1.0, 'eat': 1.0, 'and': 1.0, 'recline': 1.0, 'own': 1.0, 'on': 1.0, 'like': 1.0, 'straight': 1.0, 't': 2.0, 'sits': 1.0, 'unless': 1.0, 'reclined': 1.0, 'always': 1.0, 'up': 3.0, 'sat': 2.0, 'doesn': 1.0, 'an': 1.0, 'straighter': 2.0, 'inexpensive': 1.0, 'chair': 1.0, 'grandbaby': 1.0, 'when': 1.0, 'looking': 1.0, 'my': 2.0, 'high': 1.0, 'to': 2.0, 'was': 1.0, 'she': 4.0, 'came': 1.0, 'that': 2.0, 'her': 1.0, 'what': 1.0, 'i': 2.0, 'visit': 1.0, 'is': 4.0, 'it': 2.0, 'only': 1.0, 'this': 1.0, 'highchair': 1.0, 'a': 1.0, 'wish': 2.0, 'temporary': 1.0, 'for': 3.0, 'visits': 1.0}
Word element => {'better': 1.0, 'would': 1.0, 'adjust': 1.0, 'if': 1.0, 'i': 1.0, 'could': 1.0, 'wish': 1.0, 'you': 1.0, 'that': 1.0, 'the': 2.0, 'back': 2.0, 'didn': 1.0, 't': 1.0, 'it': 1.0, 'angle': 1.0, 'be': 1.0, 'much': 1.0, 'quite': 1.0, 'so': 1.0}
Word element => {'up': 1.0, 'sums': 1.0, 'that': 1.0, 'guess': 1.0, 'doll': 1.0, 'slouch': 1.0, 'the': 2.0, 'my': 1.0, 'ever': 1.0, 'poor': 1.0, 'dinner': 1.0, 'worst': 1.0, 'baby': 2.0, 'day': 1.0, 'during': 1.0, 'play': 1.0, 'we': 1.0, 'received': 1.0, 'to': 1.0, 'had': 1.0, 'now': 1.0, 'older': 1.0, 'first': 1.0, 'sister': 1.0, 'it': 3.0, 'with': 1.0, 'her': 2.0, 'uses': 1.0}
Word element => {'it': 1.0, 'love': 1.0, 'my': 1.0, 'well': 1.0, 'this': 1.0, 'child': 1.0, 'feeding': 1.0, 'high': 1.0, 'i': 2.0, 'chair': 1.0, 'for': 2.0, 'time': 1.0, 'is': 1.0, 'really': 1.0, 'outs': 1.0, 'good': 1.0, 'used': 1.0, 'as': 2.0}
Word element => {'bought': 1.0, 'i': 1.0, 'glad': 1.0, 'store': 1.0, 'to': 1.0, 'we': 1.0, 'a': 1.0, 'is': 1.0, 'small': 1.0, 'apartment': 1.0, 'and': 2.0, 'have': 1.0, 'this': 1.0, 'was': 1.0, 'easy': 1.0, 'perfect': 1.0, 'great': 1.0, 'works': 1.0, 'it': 2.0}
Word element => {'is': 1.0, 'bulky': 1.0, 'not': 1.0, 'thin': 1.0, 'pattern': 1.0, 'for': 1.0, 'the': 2.0, 'chair': 1.0, 'do': 1.0, 'cute': 1.0, 'looking': 1.0, 'price': 1.0, 'it': 1.0, 'will': 1.0, 'to': 1.0, 'exactly': 1.0, 'we': 1.0, '34': 2.0, 'what': 1.0, 'very': 2.0, 'need': 1.0}
Word element => {'baby': 1.0, 'the': 1.0, 'find': 1.0, 'it': 1.0, 'years': 1.0, 'several': 1.0, 'have': 1.0, 'will': 1.0, 'adjustable': 1.0, 'that': 1.0, 'chair': 2.0, 'saver': 1.0, 'better': 2.0, 'togetherspace': 1.0, 'has': 1.0, 'all': 1.0, 'to': 6.0, 'seating': 3.0, 'greateasy': 1.0, 'high': 3.0, 'my': 1.0, 'designconsvery': 1.0, 'be': 1.0, 'pricelooks': 1.0, 'put': 1.0, 'hasbetter': 1.0, 'back': 2.0, 'one': 2.0, 'bought': 1.0, 'uncomfortable': 1.0, 'with': 1.0, 'positionmy': 1.0, 'of': 1.0, 'i': 1.0, 'two': 1.0, 'prosgreat': 1.0, 'support': 1.0, 'these': 1.0, 'chairs': 1.0, 'positionit': 1.0, 'look': 1.0, 'reclined': 2.0, 'far': 1.0, 'backbabies': 1.0, 'and': 1.0, 'poor': 1.0, 'get': 1.0, 'seem': 1.0, 'very': 1.0, 'you': 1.0, 'positionsafter': 1.0, 'twins': 1.0, 'when': 1.0, 'for': 3.0, 'seated': 1.0, 'supportonly': 1.0, 'in': 1.0, 'personal': 1.0, 'money': 1.0, 'conclusion': 1.0, 'more': 1.0, 'is': 2.0, 'comfortable': 1.0, 'spend': 1.0, 'a': 2.0}
Word element => {'otherwise': 1.0, 'holds': 1.0, 'rest': 1.0, 'foot': 1.0, 'that': 1.0, 'is': 1.0, 'on': 1.0, 'sturdy': 1.0, 'away': 1.0, 'and': 1.0, 'my': 1.0, 'flat': 1.0, 'stable': 1.0, 'from': 1.0, 'very': 1.0, 'ok': 1.0, 'complaint': 1.0, 'works': 1.0, 'only': 1.0, 'it': 4.0, 'doesn': 1.0, 'great': 1.0, 'the': 3.0, 't': 1.0, 'fold': 1.0, 'so': 1.0, 'when': 1.0, 'i': 1.0, 'hang': 1.0, 's': 1.0, 'wall': 2.0}
Word element => {'smoothly': 1.0, 'rides': 1.0, 'great': 1.0, 'out': 1.0, 'taking': 1.0, 'baby': 2.0, 'secured': 1.0, 'base': 1.0, 'minutes': 1.0, 's': 2.0, 'were': 1.0, 'looks': 1.0, 'it': 6.0, 'the': 16.0, 'easy': 6.0, 'stands': 1.0, 'stroller': 4.0, 'inside': 2.0, 'secure': 1.0, 'but': 1.0, 'box': 1.0, 'arrived': 1.0, 'simple': 1.0, 'instructions': 1.0, 'put': 2.0, 'on': 1.0, 'date': 1.0, 'together': 1.0, 'car': 5.0, 'at': 2.0, 'of': 2.0, 'once': 2.0, 'had': 1.0, 'its': 1.0, 'i': 1.0, 'follow': 1.0, 'opened': 1.0, 'fifteen': 1.0, 'and': 7.0, 'in': 2.0, 'is': 3.0, 'when': 1.0, 'folded': 1.0, 'release': 2.0, 'estimated': 1.0, 'light': 1.0, 'very': 3.0, 'fold': 1.0, 'one': 1.0, 'using': 1.0, 'hand': 1.0, 'own': 1.0, 'move': 1.0, 'to': 6.0, 'seat': 2.0, 'feels': 1.0, 'same': 1.0, 'time': 1.0}
Word element => {'beautiful': 1.0, 'princess': 1.0, 'a': 1.0, 'assemble': 1.0, 'right': 1.0, 'to': 1.0, 'is': 1.0, 'light': 1.0, 'for': 1.0, 'lovely': 1.0, 'and': 1.0, 'its': 2.0, 'this': 1.0, 'comfy': 1.0, 'pretty': 1.0, 'weight': 1.0, 'just': 1.0, 'stroller': 1.0, 'easy': 1.0}
Word element => {'from': 1.0, 'used': 1.0, 'havent': 1.0, 'appears': 1.0, 'received': 1.0, 'floral': 1.0, 'not': 1.0, 'would': 1.0, 'minnie': 1.0, 'the': 4.0, 'yet': 1.0, 'it': 1.0, 'woosales': 1.0, 'ordering': 1.0, 'pattern': 1.0, 'winne': 1.0, 'ordered': 1.0, 'pooh': 1.0, 'sturdy': 1.0, 'receive': 1.0, 'recommend': 1.0, 'but': 1.0, 'did': 1.0, 'right': 1.0, 'order': 1.0}
Word element => {'could': 1.0, '3': 1.0, 'give': 1.0, 'd': 1.0, '1': 1.0, 'since': 1.0, 'cracks': 1.0, 'some': 1.0, 'on': 1.0, 'noticed': 1.0, 'super': 1.0, 'plastic': 1.0, 'easy': 1.0, 'bit': 1.0, 'buckle': 1.0, 'point': 1.0, 'maybe': 1.0, 's': 2.0, 'small': 1.0, 'a': 5.0, 'review': 1.0, 'discovered': 1.0, 'adjusted': 1.0, 'also': 1.0, 'uncomfortable': 1.0, '4': 1.0, 'i': 7.0, 'two': 1.0, 'how': 1.0, 'stroller': 3.0, 'but': 2.0, 'removable': 1.0, 'wheels': 1.0, 'sitting': 1.0, '2': 2.0, 'have': 2.0, 'already': 1.0, 'wear': 1.0, 'it': 6.0, 'she': 4.0, 'this': 1.0, 'and': 4.0, 'we': 1.0, 'maximum': 1.0, 'beginning': 1.0, 've': 1.0, 'gets': 1.0, 'difficult': 1.0, 'if': 2.0, 'still': 1.0, 'where': 1.0, 'fold': 1.0, 'love': 1.0, 'daughter': 1.0, 'beautiful': 1.0, 'alice': 1.0, 'snug': 1.0, 'is': 4.0, 'around': 1.0, 'more': 1.0, 'great': 1.0, 'careful': 1.0, 'my': 1.0, 'belts': 1.0, 'infant': 1.0, 'week': 1.0, 'just': 1.0, 'flail': 1.0, 'says': 1.0, 'headroom': 1.0, 'itself': 1.0, 'not': 2.0, 'in': 4.0, 'seat': 1.0, 'lot': 1.0, 'actual': 1.0, '22': 1.0, 'now': 1.0, 'that': 1.0, 'overlap': 1.0, 'which': 1.0, 'pretty': 1.0, 'to': 11.0, 'became': 1.0, 'once': 1.0, 'the': 10.0, 'of': 1.0, 'fun': 1.0, 'use': 1.0, 'her': 2.0, 'months': 1.0, 'legs': 1.0, 'wonderland': 1.0, 'be': 2.0, 'pinch': 1.0, 'while': 1.0, 'takes': 1.0, 'up': 2.0, 'star': 1.0, 'maneuver': 1.0, 'right': 1.0, 'll': 1.0, 'clasps': 1.0, 'clicking': 1.0, 'only': 2.0, 'lb': 1.0, '14': 1.0, 'was': 2.0, 'lbs': 1.0, 'them': 1.0, 'has': 1.0, 'about': 1.0, 'inches': 1.0, 'left': 1.0, 'able': 1.0, 'transition': 1.0, 'part': 1.0, 'though': 2.0, 'probably': 1.0, 'need': 1.0, 'or': 1.0}
Word element => {'love': 1.0, 'monday': 1.0, 'following': 1.0, 'received': 1.0, 'thursday': 1.0, 'on': 2.0, 'ordered': 1.0, 'fast': 1.0, 'very': 1.0, 'was': 1.0, 'anyone': 1.0, 'stroller': 1.0, 'it': 7.0, '27th': 1.0, 'i': 5.0, 'night': 1.0, 'set': 2.0, 'and': 4.0, 'not': 2.0, 'me': 1.0, 'since': 1.0, 'car': 1.0, 'may': 1.0, 'last': 1.0, 'excited': 1.0, 'until': 1.0, 'mention': 1.0, 'opened': 1.0, 'finally': 1.0, 'the': 3.0, 'a': 2.0, 't': 1.0, 'due': 1.0, 'perfect': 1.0, 'this': 1.0, 'soft': 1.0, 'has': 1.0, 'makes': 1.0, 'with': 1.0, 'cushioning': 1.0, 'haven': 1.0, 'colors': 1.0, 'lovely': 1.0, 'are': 1.0, 'so': 2.0, 'seat': 1.0, 'gorgeous': 1.0, 'to': 2.0, 'use': 1.0, 'am': 2.0, 'seen': 1.0, 'is': 3.0, 'locally': 1.0, 'box': 1.0, 'that': 1.0, 'happy': 1.0, 'shipping': 1.0}
Word element => {'as': 1.0, 'almost': 1.0, 'got': 1.0, 'doll': 1.0, 'she': 1.0, 'take': 1.0, 'would': 1.0, 'the': 1.0, 'under': 1.0, 'little': 1.0, 'chubby': 1.0, 'her': 3.0, 'barely': 1.0, 'could': 2.0, 'kegs': 1.0, 'grandaughter': 1.0, 'at': 2.0, 'stuck': 1.0, 'in': 2.0, 'for': 1.0, 'my': 2.0, 'out': 1.0, 'made': 1.0, 'feet': 1.0, 'size': 1.0, 'tiny': 1.0, 'way': 1.0, 'when': 1.0, 'too': 1.0, 'tray': 1.0, 'is': 2.0, 'looked': 1.0, 'it': 2.0, 'this': 1.0, '22': 1.0, 'months': 1.0, 'get': 1.0, 'and': 2.0, 'up': 1.0, 'old': 1.0, 'i': 3.0, 'be': 1.0, 'bought': 1.0, 'a': 2.0, 'house': 1.0, 'stroller': 3.0, 'back': 1.0}
Word element => {'storage': 1.0, 'has': 1.0, 'mall': 1.0, 'small': 1.0, 'the': 1.0, 'to': 2.0, 'trips': 1.0, 'for': 1.0, 'space': 1.0, 'below': 1.0, 'a': 1.0, 'that': 1.0, 'great': 1.0, 'little': 1.0, 'use': 1.0, 'easy': 1.0, 'handy': 1.0, 'stroller': 1.0, 'and': 2.0, 'folds': 1.0, 'up': 2.0, 'easily': 1.0, 'takes': 1.0}
Word element => {'small': 1.0, 'down': 1.0, 'maneuver': 1.0, 'a': 1.0, 'and': 1.0, 'compact': 1.0, 'easy': 2.0, 'pillow': 1.0, 'up': 1.0, 'set': 1.0, 'lightweight': 1.0, 'love': 3.0, 'with': 1.0, 'this': 1.0, 'it': 1.0, 'stroller': 1.0, 'an': 1.0, 'tear': 1.0, 'month': 1.0, 'infant': 1.0, 'old': 1.0, 'i': 1.0, 'to': 1.0, 'had': 1.0, 'daughter': 1.0, 'in': 1.0, 'my': 1.0, 'around': 1.0}
Word element => {'to': 1.0, 'recommend': 1.0, 'easy': 1.0, 'tray': 1.0, 'stick': 1.0, 'very': 1.0, 'up': 1.0, 'fold': 1.0, 'handles': 1.0, 'underneath': 1.0, 'price': 1.0, 'highly': 1.0, 'storage': 1.0, 'the': 2.0, 'for': 1.0, 'love': 1.0, 'were': 1.0, 'but': 1.0, 'put': 1.0, 'also': 1.0, 'in': 1.0, 'occasionally': 1.0, 'canopy': 1.0, 'wish': 1.0, 'trunk': 1.0, 'and': 3.0, 'do': 1.0, 'a': 1.0, 'wheels': 1.0, 'little': 1.0, 'higher': 1.0}
Word element => {'together': 1.0, 'grandma': 1.0, 'wheels': 1.0, 'keep': 1.0, 'sturdy': 1.0, 'perfect': 1.0, 'all': 1.0, 'pop': 1.0, 's': 1.0, 'put': 1.0, 'stroller': 1.0, 'house': 1.0, 'the': 2.0, 'handsome': 1.0, 'is': 2.0, 'on': 1.0, 'at': 1.0, 'this': 1.0, 'it': 2.0, 'i': 1.0, 'to': 3.0, 'was': 1.0, 'had': 1.0, 'and': 1.0, 'do': 1.0}
Word element => {'chair': 1.0, 'regular': 1.0, 'a': 1.0, 'like': 1.0, 'in': 1.0, 'will': 1.0, 'sit': 1.0, 'it': 2.0, 'loves': 1.0, 'she': 2.0}
Word element => {'extra': 1.0, 'clean': 1.0, 'keep': 1.0, 'wash': 1.0, 'easy': 1.0, 'fresh': 1.0, 'very': 1.0, 'are': 1.0, 'removable': 1.0, 'functionality': 1.0, 'but': 1.0, 'vintage': 1.0, 'not': 1.0, 'to': 1.0, 'comes': 1.0, 'look': 1.0, 's': 1.0, 'liners': 1.0, 'typical': 1.0, 'organization': 1.0, 'the': 1.0, 'great': 1.0, 'accessories': 1.0, 'vinyl': 1.0, 'and': 5.0, 'bag': 3.0, 'has': 1.0, 'your': 1.0, 'or': 1.0, 'polyester': 1.0, 'unique': 1.0, 'plastic': 1.0, 'all': 1.0, 'feel': 1.0, 'instead': 1.0, 'it': 2.0, 'this': 1.0, 'with': 3.0, 'is': 1.0, 'help': 1.0, 'aesthetic': 1.0, 'characters': 1.0}
Word element => {'styled': 1.0, 'type': 1.0, 'limoge': 1.0, 'pass': 1.0, 'would': 1.0, 'tooth': 1.0, 'lock': 1.0, 'fitted': 1.0, 'it': 1.0, 'well': 1.0, 'hinged': 1.0, 'these': 2.0, 'first': 1.0, 'nicely': 1.0, 'myself': 1.0, 'the': 1.0, 'accidentally': 1.0, 'they': 1.0, 'little': 1.0, 'presentation': 1.0, 'don': 1.0, 'packaged': 1.0, 'however': 1.0, 'so': 1.0, 'or': 3.0, 'i': 2.0, 'and': 2.0, 'lids': 1.0, 'are': 1.0, 'disappointed': 1.0, 'gift': 1.0, 'that': 2.0, 'just': 1.0, 'sit': 1.0, 'make': 1.0, 'on': 3.0, 'a': 4.0, 't': 2.0, 's': 1.0, 'you': 1.0, 'look': 1.0, 'fine': 1.0, 'more': 1.0, 'is': 1.0, 'for': 3.0, 'keeping': 1.0, 'spill': 1.0, 'was': 1.0, 'handsome': 1.0, 'intended': 1.0, 'high': 1.0, 'care': 1.0, 'shelf': 1.0, 'aren': 1.0, 'but': 1.0, 'if': 1.0, 'set': 1.0, 'used': 1.0, 'as': 1.0, 'extra': 1.0, 'top': 1.0, 'needed': 1.0}
Word element => {'at': 1.0, 'not': 1.0, 'than': 1.0, 'much': 1.0, 'so': 2.0, 'they': 1.0, 'clip': 1.0, 'better': 1.0, 'snaps': 1.0, 'and': 1.0, 'cute': 1.0, 'are': 1.0, 'bulky': 1.0, 'the': 3.0, 'loops': 1.0, 'to': 1.0, 'look': 1.0, 'easier': 1.0, 'put': 1.0, 'on': 1.0, 'take': 1.0, 's': 1.0, 'also': 1.0, 'off': 1.0, 'when': 1.0, 'he': 1.0, 'sleeping': 1.0}
Word element => {'son': 1.0, 'its': 1.0, 'what': 1.0, 'exactually': 1.0, 'was': 1.0, 'i': 2.0, 'it': 1.0, 'pacifier': 1.0, 'brought': 1.0, 'a': 1.0, 'wanted': 1.0, 'as': 1.0, 'brothers': 1.0, 'gift': 1.0, 'for': 2.0, 'the': 1.0, 'my': 2.0, 'grandson': 1.0}
Word element => {'go': 1.0, 'you': 1.0, 'nursery': 1.0, 'our': 1.0, 'perfect': 1.0, 'looks': 1.0, 'brown': 1.0, 'the': 1.0, 't': 1.0, 'this': 1.0, 's': 1.0, 'in': 1.0, 'washable': 1.0, 'wrong': 1.0, 'can': 1.0, 'love': 1.0, 'it': 1.0, 'chocolate': 1.0, 'soft': 1.0, 'and': 2.0, 'new': 1.0, 'easily': 1.0, 'color': 1.0}
Word element => {'got': 1.0, 'glad': 1.0, 'cute': 1.0, 'very': 1.0, 'ordering': 1.0, 'm': 1.0, 'when': 1.0, 's': 1.0, 'attention': 1.0, 'but': 1.0, 'not': 1.0, 'regardless': 1.0, 'at': 1.0, 'white': 2.0, 'opened': 1.0, 'brown': 1.0, 'until': 1.0, 'it': 3.0, 'the': 3.0, 't': 2.0, 'and': 3.0, 'didn': 1.0, 'guess': 1.0, 'i': 8.0, 'paying': 1.0, 'picture': 1.0, 'wasn': 1.0, 'box': 1.0, 'realize': 1.0, 'that': 1.0, 'was': 2.0, 'now': 1.0, 'look': 1.0, 'amazon': 1.0, 'black': 1.0, 'see': 1.0, 'color': 1.0}
Word element => {'great': 1.0, 'any': 1.0, 'that': 2.0, 'where': 1.0, 'read': 1.0, 'than': 1.0, 'but': 1.0, 'didn': 1.0, 'don': 1.0, 'zebra': 1.0, 'other': 1.0, 't': 2.0, 'fooled': 1.0, 'its': 2.0, 'disappointing': 1.0, 'i': 1.0, 'be': 1.0, 'brown': 1.0, 'not': 1.0, 'black': 1.0}
Word element => {'and': 1.0, 'most': 1.0, 'each': 1.0, 'dad': 1.0, 'about': 1.0, 'new': 1.0, 'through': 1.0, 'likely': 1.0, '5': 1.0, 'go': 1.0, 'table': 1.0, 'of': 1.0, 'up': 1.0, 'day': 1.0, 'as': 1.0, 'changing': 1.0, 'waterproof': 1.0, 'for': 2.0, 'this': 1.0, 'item': 2.0, 'way': 1.0, 's': 3.0, 'used': 1.0, 'these': 1.0, 'great': 2.0, 'the': 2.0, 'such': 1.0, 'i': 2.0, 'mom': 1.0, 'when': 1.0, 'a': 2.0, 'went': 1.0, 'smaller': 1.0, '4': 1.0, 'on': 1.0, 'months': 1.0, 'spit': 1.0, 'clean': 1.0, 'occurred': 1.0, 'to': 2.0, 'was': 1.0}
Word element => {'later': 1.0, 'months': 1.0, '4': 1.0, 'born': 1.0, 'after': 1.0, 'ordering': 1.0, 'baby': 1.0, 'ended': 1.0, 'changing': 1.0, 'love': 1.0, 'still': 1.0, 'protect': 1.0, 'them': 3.0, 'a': 1.0, 'at': 1.0, 'was': 1.0, 'to': 1.0, 'use': 2.0, 'i': 3.0, 'they': 1.0, 'more': 1.0, 'diaper': 1.0, 'these': 1.0, 'the': 2.0, 'home': 1.0, 'table': 1.0, 'perfectly': 1.0, 'me': 1.0, 'and': 2.0, 'also': 1.0, 'bag': 1.0, 'take': 1.0, 'up': 1.0, 'fold': 1.0, 'with': 1.0, 'which': 1.0, 'fit': 1.0, 'into': 1.0}
Word element => {'in': 1.0, 'time': 1.0, 'them': 1.0, 'arrived': 1.0, 'color': 1.0, 'event': 1.0, 'item': 1.0, 'and': 3.0, 'for': 2.0, 'appearance': 1.0, 'like': 1.0, 'very': 1.0, 'i': 2.0, 'was': 2.0, 'that': 1.0, 'the': 4.0, 'needed': 1.0, 'beautiful': 1.0, 'am': 1.0, 'with': 1.0, 'it': 1.0, 'just': 1.0, 'satisfied': 1.0, 'photo': 1.0}
Word element => {'get': 1.0, 'to': 1.0, 'not': 1.0, 'on': 1.0, 'is': 1.0, 'so': 1.0, 'difficult': 1.0, 'great': 1.0, 'and': 1.0, 'sheet': 1.0, 'runs': 1.0, 'bed': 1.0, 'really': 2.0, 'the': 2.0, 'small': 1.0}
Word element => {'great': 1.0, 'was': 1.0, 'this': 1.0, 'heavy': 1.0, 'in': 1.0, '6': 1.0, 'accident': 1.0, 'own': 1.0, 'an': 1.0, 'every': 1.0, 'the': 2.0, 'these': 2.0, 'on': 2.0, 'all': 1.0, 'to': 2.0, 'need': 1.0, 'entire': 1.0, 'and': 2.0, 'do': 1.0, 'quick': 1.0, 'home': 1.0, 'i': 5.0, 'm': 1.0, 'they': 2.0, 'just': 1.0, 'not': 1.0, 'use': 3.0, 'there': 1.0, 'instead': 1.0, 'of': 2.0, 'leak': 1.0, 'floor': 1.0, 's': 1.0, 't': 1.0, 'a': 3.0, 'changing': 2.0, 'at': 1.0, 'are': 1.0, 'buy': 1.0, 'waterproof': 1.0, 'change': 1.0, 'but': 1.0, 'if': 1.0, 'when': 1.0, 'you': 1.0, 'pick': 1.0, 'have': 1.0, 'thing': 1.0, 'them': 2.0, 'fast': 1.0, 're': 1.0, 'pad': 2.0, 'enough': 1.0, 'through': 1.0, 'nothing': 1.0, 'will': 1.0, 'also': 1.0, 'my': 1.0, 'time': 1.0, 'so': 1.0, 'up': 1.0, 'wash': 1.0, 'don': 1.0}
Word element => {'baby': 1.0, 'table': 1.0, 'like': 1.0, 'feel': 1.0, 't': 1.0, 'don': 1.0, 'just': 1.0, 'but': 1.0, 'small': 1.0, 'the': 3.0, 'to': 1.0, 'taking': 1.0, 'right': 1.0, 'size': 1.0, 'upstairs': 1.0, 'diaper': 1.0, 'for': 1.0, 'changing': 2.0, 'when': 1.0, 'i': 1.0}
Word element => {'things': 1.0, 'changing': 1.0, 'my': 1.0, 'top': 1.0, 'on': 1.0, 'absorbant': 1.0, 'gifts': 1.0, 'for': 1.0, 'two': 1.0, 'i': 3.0, 'one': 1.0, 'bought': 1.0, 'and': 2.0, 'get': 1.0, 'packs': 1.0, 'at': 1.0, 'keep': 1.0, 'a': 2.0, 'well': 1.0, 'washings': 1.0, 'additional': 1.0, 'do': 1.0, 'pack': 1.0, 'have': 1.0, 'of': 4.0, 'these': 2.0, 'repeated': 1.0, 'cover': 1.0, 'pad': 2.0, 'instead': 1.0, 'myself': 1.0, 'hold': 1.0, 'so': 1.0, 'everything': 1.0, 'after': 1.0, 'times': 1.0, 'when': 1.0, 'very': 1.0, 'little': 1.0, 'messy': 1.0, 'as': 1.0, 'all': 2.0, 'to': 2.0, 'is': 1.0, 'change': 1.0, 'having': 1.0, 'up': 1.0, 'wash': 1.0, 'they': 1.0}
Word element => {'comfort': 1.0, 'highly': 1.0, 'at': 1.0, 'cart': 1.0, 'also': 1.0, 'yard': 1.0, 'hikes': 1.0, 'long': 1.0, 'used': 2.0, 'him': 1.0, 'he': 1.0, 'loves': 1.0, 'newborn': 1.0, 'by': 1.0, 'are': 1.0, 'easy': 1.0, 'comfortable': 1.0, 'so': 1.0, 'around': 1.0, 'is': 1.0, 'puts': 1.0, 'awkward': 1.0, 'magazine': 1.0, 'carriers': 1.0, 'seem': 1.0, 'in': 2.0, 'weddings': 1.0, 'work': 1.0, 'but': 1.0, 'with': 1.0, 'this': 4.0, 'on': 2.0, 'use': 1.0, 'front': 1.0, 'about': 1.0, 'baby': 3.0, 'price': 2.0, 'saw': 1.0, 'compared': 1.0, 'recommend': 1.0, 'was': 2.0, 'old': 1.0, 'i': 6.0, 'had': 1.0, 'purchased': 1.0, 'my': 3.0, 'you': 1.0, 'when': 3.0, 'for': 2.0, 'summer': 1.0, 'especcially': 1.0, 'sling': 1.0, 'listed': 1.0, 'wrap': 1.0, 'the': 4.0, 's': 1.0, 'walks': 2.0, 'a': 4.0, 'go': 2.0, 't': 1.0, 'carrier': 1.0, 'top': 1.0, 'one': 2.0, 'ten': 1.0, 'and': 7.0, 'do': 1.0, 'yourself': 1.0, 'pack': 1.0, 'much': 1.0, 'cheaper': 1.0, 'others': 1.0, 'they': 1.0, 'didn': 1.0, 'little': 2.0, 'all': 1.0, 'sleep': 1.0, 'to': 6.0, 'as': 1.0, 'fussy': 1.0, 'supportive': 1.0, 'it': 4.0, 'month': 1.0, 'felt': 1.0}
Word element => {'recommend': 1.0, 'definitely': 1.0, 'would': 1.0, 'baby': 1.0, 'excellent': 1.0, 'secure': 1.0, 'and': 2.0, 'product': 1.0, 'to': 2.0, 'safe': 1.0, 'easy': 1.0, 'use': 1.0, 'parent': 1.0, 'comfortable': 1.0, 'wear': 1.0, 'for': 1.0}
Word element => {'a': 1.0, 'i': 1.0, 'out': 1.0, 'recommend': 1.0, 'easy': 1.0, 'price': 1.0, 'highly': 1.0, 'baby': 1.0, 'backs': 1.0, 'one': 1.0, 'for': 3.0, 'comfortable': 2.0, 'be': 1.0, 'to': 2.0, 'our': 2.0, 'in': 1.0, 'seems': 1.0, 'perfect': 1.0, 'straps': 1.0, 'great': 1.0, 'the': 1.0, 'are': 1.0, 'is': 1.0, 'clips': 1.0, 'support': 1.0, 'on': 1.0, 'carrier': 1.0, 'it': 3.0, 'this': 2.0, 'little': 1.0, 'girl': 1.0, 'get': 1.0, 'and': 2.0, 's': 2.0, 'too': 1.0, 'us': 1.0, 'wide': 1.0, 'enough': 1.0}
Word element => {'recommend': 1.0, 'i': 1.0, 'eight': 1.0, 'are': 1.0, 'however': 1.0, 'settled': 1.0, 'of': 2.0, 'has': 2.0, 'well': 1.0, 'front': 1.0, 'carrier': 1.0, 'get': 1.0, 'and': 2.0, 'alteres': 1.0, 'getting': 1.0, 'we': 2.0, 'is': 2.0, 'people': 1.0, 'with': 1.0, 'only': 1.0, 'dislike': 1.0, 'versatile': 1.0, 'position': 1.0, 'happy': 1.0, 'product': 1.0, 'very': 1.0, 'she': 1.0, 'baby': 3.0, 'another': 2.0, 'climatic': 1.0, 'the': 5.0, 'adjustment': 1.0, 'ergonomic': 1.0, 'months': 1.0, 'that': 1.0, 'loves': 1.0, 'jeep': 1.0, 'in': 2.0, 'have': 1.0, 'tested': 1.0, 'size': 1.0, 'fabriante': 1.0, 'excellent': 1.0, 'to': 1.0, 'meet': 1.0, 'here': 1.0, 'conditions': 1.0, 'which': 1.0, 'brazil': 1.0}
Word element => {'stroll': 1.0, 'on': 1.0, 'out': 1.0, 'do': 1.0, 'to': 1.0, 'everything': 1.0, 'are': 1.0, 'when': 1.0, 'going': 1.0, 'where': 1.0, 'a': 1.0, 'see': 1.0, 'can': 1.0, 'legs': 1.0, 'arms': 1.0, 'her': 1.0, 'of': 1.0, 'movement': 1.0, 'the': 1.0, 'carrier': 2.0, 'loves': 3.0, 'my': 1.0, 'riding': 1.0, 'ergo': 1.0, 'we': 2.0, 'girl': 1.0, 'baby': 1.0, 'little': 1.0, 'she': 4.0, 'an': 4.0, 'hated': 1.0, 'being': 1.0, 'in': 2.0, 'this': 2.0, 'it': 2.0, 'tried': 1.0, 'i': 1.0, 'one': 1.0, 'got': 1.0, 'has': 1.0, 'free': 1.0}
Word element => {'no': 1.0, 'difference': 1.0, 'notice': 1.0, 'and': 1.0, 'on': 1.0, 'directions': 1.0, 'i': 1.0, 'about': 1.0, 'have': 1.0, 'been': 1.0, 'date': 1.0, 'per': 1.0, 'to': 1.0, 'taking': 1.0, 'for': 1.0, 'a': 1.0, 'label': 1.0, 'the': 2.0, 'it': 1.0, 'month': 1.0}
Word element => {'disapointed': 1.0, 'completely': 1.0, 'purchase': 1.0, 'torn': 1.0, 'is': 1.0, 'made': 1.0, 'the': 1.0, 'option': 1.0, 'mouse': 1.0, 'skip': 1.0, 'for': 1.0, 'original': 1.0, 'searched': 1.0, 'not': 1.0, 'all': 1.0, 'off': 1.0, 'mu': 1.0, 'send': 1.0, 'boas': 1.0, 'and': 2.0, 'me': 1.0, 'desapointed': 1.0, 'material': 1.0, 'os': 2.0, 'be': 1.0, 'bought': 1.0, 'am': 1.0, 'backpack': 2.0, 'from': 1.0, 'very': 1.0, 'i': 5.0, 'appear': 1.0, 'friend': 1.0, 's': 1.0, 'hop': 1.0, 'surprise': 1.0, 'hotel': 1.0, 'when': 1.0, 'gave': 1.0, 'first': 1.0, 'this': 3.0, 'he': 1.0, 'it': 2.0, 'to': 3.0, 'had': 1.0, 'bar': 1.0, 'a': 2.0}
Word element => {'soon': 1.0, 'new': 1.0, 'to': 1.0, 'have': 1.0, 'll': 1.0, 'cute': 1.0, 'because': 1.0, 'little': 1.0, 'bigger': 2.0, 'the': 2.0, 'and': 2.0, 'getting': 1.0, 'but': 1.0, 's': 1.0, 'backpack': 1.0, 'keeps': 1.0, 'buy': 1.0, 'guess': 1.0, 'i': 3.0, 'one': 1.0, 'love': 1.0, 'mine': 1.0, 'size': 1.0, 'came': 1.0, 'that': 1.0, 'it': 2.0, 'with': 1.0, 'a': 2.0, 'hole': 1.0, 'perfect': 1.0, 'in': 1.0}
Word element => {'baby': 1.0, 'with': 1.0, 'recommend': 1.0, 'table': 1.0, 'or': 1.0, 'dresser': 1.0, 'sturdy': 1.0, 'stylish': 1.0, 'from': 1.0, 'permanently': 1.0, 'super': 1.0, 'thin': 1.0, 'just': 1.0, 'then': 1.0, 'it': 3.0, 'top': 1.0, 'cloth': 1.0, 'always': 1.0, 'comfortable': 1.0, 'feel': 1.0, 'nice': 1.0, 'enough': 1.0, 'pad': 1.0, 'included': 1.0, 'onesie': 1.0, 'to': 4.0, 'as': 1.0, 'all': 1.0, 'leave': 1.0, 'small': 1.0, 'have': 1.0, 'lay': 1.0, 'waterproof': 1.0, 'day': 2.0, 'very': 1.0, 'used': 1.0, 'highly': 1.0, 'every': 1.0, 'caddy': 1.0, 'what': 1.0, 'but': 2.0, 'can': 2.0, 'also': 1.0, 'item': 1.0, 'size': 1.0, 'infant': 2.0, 'anyone': 1.0, 'be': 1.0, 'because': 1.0, 'usually': 1.0, 'an': 3.0, 'pockets': 1.0, 'diapers': 1.0, 'changing': 2.0, 'that': 1.0, 'depending': 1.0, 'diaper': 1.0, 'the': 5.0, 'more': 1.0, 'is': 5.0, 'side': 1.0, 'spare': 1.0, 'made': 1.0, 'tub': 1.0, 'layer': 1.0, 'if': 1.0, 'keep': 1.0, 'well': 2.0, 'a': 6.0, 'plastic': 1.0, 'addition': 1.0, 'extremely': 1.0, 'and': 4.0, 'you': 2.0, 'easily': 1.0, 'for': 1.0, 'fit': 1.0, 'room': 2.0, '20': 1.0, 'functional': 1.0, 'this': 3.0, '30': 1.0, 'portable': 1.0, 'put': 1.0, 'lotions': 1.0, 'on': 5.0, 'one': 2.0, 'they': 1.0, 'blanket': 1.0, 'are': 1.0, 'rather': 1.0, 'of': 4.0, 'wipes': 1.0, 'in': 3.0, 'other': 2.0, 'i': 4.0}
Word element => {'need': 1.0, 'is': 1.0, 'have': 1.0, 'right': 1.0, 'can': 1.0, 'love': 1.0, 'get': 2.0, 'and': 1.0, 'then': 1.0, 'writings': 1.0, 'of': 1.0, 'price': 1.0, 'baby': 1.0, 'to': 1.0, 'now': 1.0, 'had': 1.0, 'know': 1.0, 'just': 1.0, 'a': 1.0, 'them': 1.0, 'you': 3.0, 'if': 1.0, 'bibs': 1.0, 'enough': 1.0, 'i': 2.0, 'more': 1.0, 't': 1.0, 'the': 2.0, 'they': 1.0, 'on': 1.0}
Word element => {'bibs': 1.0, 'as': 1.0, 'and': 3.0, 'bib': 3.0, 'third': 1.0, 'it': 1.0, 'first': 1.0, 'velcro': 1.0, 'minnie': 3.0, 'second': 1.0, 'is': 4.0, 'the': 4.0, 'size': 1.0, 'can': 1.0, 'daisy': 1.0, 'duck': 1.0, 'baby': 1.0, 'you': 1.0, 'mickey': 1.0, 'see': 1.0, 'closure': 1.0, 'a': 1.0, 'in': 1.0, 'back': 1.0, 'good': 1.0}
Word element => {'them': 1.0, 'baby': 1.0, 'grandson': 1.0, 't': 1.0, 'wait': 1.0, 'can': 2.0, 'purchase': 1.0, 'these': 1.0, 'with': 1.0, 'wear': 1.0, 'so': 1.0, 'bibs': 1.0, 'cute': 1.0, 'till': 1.0, 'i': 1.0, 'very': 1.0, 'happy': 1.0, 'm': 1.0, 'are': 1.0, 'my': 2.0}
Word element => {'multiple': 1.0, 'last': 1.0, 'through': 1.0, 'should': 1.0, 'a': 1.0, 'but': 1.0, 'after': 1.0, 'survive': 1.0, 'not': 1.0, 'would': 1.0, 'him': 1.0, 'pictures': 1.0, 'cute': 1.0, 'some': 1.0, 'in': 1.0, 'tux': 1.0, 'saint': 1.0, 's': 1.0, 'tie': 1.0, 'my': 1.0, 'year': 1.0, 'day': 4.0, 'son': 1.0, 'is': 1.0, 'one': 1.0, 'for': 3.0, 'which': 1.0, '8217': 1.0, 'children': 1.0, 'it': 3.0, 'with': 1.0, 'patrick': 1.0, 'this': 1.0, 'use': 1.0, 'got': 2.0, 'we': 2.0, 'on': 1.0, 'bow': 1.0, 'the': 2.0, 'sewn': 1.0, 'out': 1.0, 'probably': 1.0, 'and': 1.0, 'pops': 1.0, 'adds': 1.0, 'look': 1.0, 'to': 1.0}
Word element => {'washing': 1.0, 'hopefully': 1.0, 'comforter': 1.0, 'that': 2.0, 'complaint': 1.0, 'my': 1.0, 'little': 2.0, 'the': 4.0, 'a': 3.0, 'at': 1.0, 'was': 1.0, 'together': 1.0, 'in': 1.0, 'disappointed': 1.0, 'cute': 1.0, 'after': 1.0, 'so': 1.0, 'is': 2.0, 'really': 1.0, 'of': 1.0, 'set': 1.0, 'will': 1.0, 'quality': 1.0, 'but': 2.0, 'lessen': 1.0, 'i': 1.0, 'putting': 1.0, 'all': 1.0, 'enhances': 1.0, 'with': 1.0, 'only': 1.0, 'first': 1.0, 'it': 2.0, 'stiff': 1.0, 'room': 1.0}
Word element => {'old': 1.0, 'year': 1.0, 'this': 1.0, 'use': 1.0, 'for': 2.0, 'in': 1.0, 'they': 1.0, 'logo': 1.0, 'cups': 1.0, 'hello': 1.0, 'loves': 1.0, 'are': 1.0, 'my': 1.0, 'kitty': 1.0, 'granddaughter': 1.0, 'these': 1.0, 'the': 3.0, 'great': 1.0, 'and': 2.0, 'car': 1.0, '4': 1.0, 'on': 1.0, 'is': 1.0, 'motivator': 1.0, 'go': 1.0, 'a': 1.0, 'always': 1.0}
Word element => {'plus': 1.0, 'tot': 1.0, 'busy': 1.0, 'no': 1.0, 'and': 1.0, 'price': 1.0, 'great': 2.0, 'monkey': 1.0, 'design': 2.0, 'could': 1.0, 'who': 1.0, 'resist': 1.0, 'me': 1.0, 'diapers': 1.0, 'not': 1.0, 'with': 2.0, 'on': 1.0, 'leaks': 1.0, 'a': 3.0, 'them': 1.0}
Word element => {'sizes': 1.0, 'pretty': 1.0, 'thought': 1.0, 'birds': 1.0, 'was': 2.0, 'to': 1.0, 'be': 2.0, 'husband': 1.0, 'tree': 1.0, 'bought': 1.0, 'one': 1.0, 'on': 1.0, 'condition': 1.0, 'my': 1.0, 'the': 4.0, 'big': 1.0, 'great': 2.0, 'old': 1.0, 'i': 2.0, 'loves': 2.0, 'have': 1.0, 'likes': 1.0, 'year': 1.0, 'when': 2.0, 'a': 3.0, 'going': 1.0, 'too': 2.0, 'and': 4.0, 'it': 4.0, 'she': 2.0, 'looking': 1.0, 'item': 1.0, 'wall': 1.0, 'at': 1.0, 'first': 1.0, 'wast': 1.0, 'of': 1.0, 'price': 1.0, '2': 1.0, 'can': 1.0, 'money': 1.0, 'but': 1.0, 'saw': 1.0, 'squirrels': 1.0, 'he': 2.0, 'how': 1.0, 'its': 1.0, 'much': 1.0, 'delivered': 1.0, 'in': 2.0, 'appropriate': 1.0, 'time': 1.0}
Word element => {'outdoors': 1.0, 'much': 1.0, 'as': 2.0, 'house': 1.0, 'the': 1.0, 'around': 1.0, 'it': 1.0, 'wear': 1.0, 'penny': 1.0, 'everything': 1.0, 'that': 1.0, 'i': 3.0, 'doesn': 1.0, 'do': 1.0, 'warm': 1.0, 'expected': 1.0, 'material': 1.0, 't': 1.0, 'every': 1.0, 'worth': 1.0, 'super': 1.0, 'pill': 1.0}
Word element => {'purchase': 1.0, 'happy': 1.0, 'am': 1.0, 'i': 1.0, 'out': 1.0, 'well': 1.0, 'this': 2.0, 'towel': 1.0, 'with': 1.0, 'is': 1.0, 'the': 1.0, 'soft': 1.0, 'washer': 1.0, 'and': 3.0, 'absorbent': 1.0, 'through': 1.0, 'went': 1.0, 'it': 1.0, 'came': 1.0, 'dryer': 1.0}
Word element => {'bag': 1.0, 'gift': 1.0, 'each': 1.0, 'individual': 1.0, 'with': 1.0, 'time': 1.0, 'arrived': 1.0, 'like': 1.0, 'anything': 1.0, 'have': 1.0, 'preschooler': 1.0, 'itself': 1.0, 'practical': 1.0, 'safe': 1.0, 'at': 1.0, 'are': 2.0, 'purchased': 1.0, 'but': 1.0, '2': 1.0, 'the': 6.0, 'of': 5.0, 'for': 4.0, 'lovely': 1.0, 'quality': 1.0, 'baby': 1.0, 'they': 4.0, 'to': 1.0, 'our': 2.0, 'only': 1.0, 'amber': 1.0, 'it': 1.0, 'and': 5.0, 'chose': 1.0, 'style': 1.0, 'not': 1.0, 'because': 2.0, 'beautiful': 1.0, 'healing': 1.0, 'properties': 1.0, 'one': 2.0, 'reasons': 1.0, 'don': 1.0, 'over': 1.0, 'on': 2.0, 'these': 3.0, 'others': 2.0, 't': 1.0, 'a': 1.0, 'look': 2.0, 'number': 1.0, 'safety': 1.0, 'when': 1.0, 'guarantee': 2.0, 'will': 1.0, 'origin': 1.0, 'i': 2.0, 'feature': 1.0, 'undo': 1.0, 'still': 1.0, 'tugged': 1.0}
Word element => {'it': 1.0, 'hubby': 1.0, 'my': 2.0, 'pretty': 1.0, 'son': 1.0, 'pink': 1.0, 'got': 1.0, 'fuschia': 1.0, 'get': 1.0, 'allow': 1.0, 'didn': 1.0, 'to': 2.0, 'wish': 1.0, 'were': 1.0, 'absolutely': 1.0, 'wear': 1.0, 'however': 2.0, 'will': 1.0, 'but': 1.0, 'diapers': 1.0, 'we': 1.0, 'i': 5.0, 'when': 1.0, 'doubt': 1.0, 'one': 2.0, 'love': 3.0, 'mine': 1.0, 'picture': 1.0, 'able': 1.0, 'pick': 1.0, 't': 1.0, 'these': 1.0, 'the': 2.0, 'colors': 1.0, 'because': 1.0, 'shows': 1.0, 'received': 1.0, 'black': 2.0, 'a': 3.0, 'dipe': 1.0}
Word element => {'you': 1.0, 'deal': 1.0, 'big': 1.0, 'up': 1.0, 'ended': 1.0, 'cheap': 1.0, 'comes': 1.0, 'bottles': 2.0, 'mentioned': 1.0, 'have': 2.0, 'people': 1.0, 'works': 1.0, 'enough': 1.0, 'stay': 1.0, 'taking': 1.0, 'purely': 1.0, 'detrimental': 1.0, 'normal': 1.0, 'believe': 1.0, 'before': 1.0, 'ameda': 2.0, 'helps': 2.0, 'tubing': 1.0, 'also': 3.0, 'or': 1.0, 'feel': 1.0, 'milk': 3.0, 'closed': 2.0, 'using': 2.0, 'which': 2.0, 'vibration': 1.0, 'ones': 2.0, 'too': 1.0, 'one': 2.0, 'i': 8.0, 'so': 4.0, 'bit': 1.0, 'motor': 1.0, 'far': 1.0, 'pump': 4.0, 'kind': 1.0, 'the': 11.0, 'of': 3.0, 'impressed': 1.0, 'in': 1.0, 'm': 1.0, 'very': 3.0, 'little': 1.0, 'replacement': 1.0, 't': 4.0, 'session': 1.0, 's': 2.0, 'a': 9.0, 'this': 3.0, 'wish': 1.0, 'with': 3.0, 'it': 12.0, 'pretty': 1.0, 'to': 5.0, 'yours': 1.0, 'as': 5.0, 'was': 7.0, 'unlike': 1.0, 'pumping': 2.0, 'system': 2.0, 'fits': 1.0, 'other': 1.0, 'an': 1.0, 'pumps': 1.0, 'medela': 2.0, 'near': 1.0, 'long': 4.0, 'for': 4.0, 'happen': 1.0, 'doesn': 3.0, 'setting': 1.0, 'supply': 1.0, 'letdown': 2.0, 'some': 1.0, 'function': 2.0, 'only': 1.0, 'had': 2.0, '34': 2.0, 'massage': 1.0, 'suction': 1.0, 'has': 3.0, 'that': 1.0, 'and': 7.0, 'godsend': 1.0, 'even': 1.0, 'charged': 1.0, 'more': 2.0, 'there': 1.0, 'pleasant': 1.0, 'my': 1.0, 'reasons': 1.0, 'booklet': 1.0, 'me': 3.0, 'not': 2.0, 'get': 1.0, 'negatives': 1.0, 'advertised': 1.0, 'chose': 1.0, 'but': 2.0, 'guide': 1.0, 'quiet': 1.0, 'battery': 1.0, 'really': 1.0, 'matter': 1.0, 'been': 1.0, 'instruction': 2.0, 'thorough': 1.0, 'wasn': 1.0, 'confused': 1.0, 'is': 1.0, 'at': 1.0, 'are': 1.0, 'vibrates': 1.0, 'first': 1.0}
Word element => {'reasonably': 1.0, 'strong': 1.0, 'out': 1.0, 'when': 1.0, 'adapter': 1.0, 'need': 1.0, 'an': 1.0, 'all': 1.0, 'volts': 1.0, 'not': 1.0, 'did': 1.0, 'that': 1.0, 'traveling': 1.0, 'complaint': 1.0, 'down': 2.0, 'priced': 1.0, 'nursing': 1.0, 'adjust': 1.0, 'reccomend': 1.0, 'let': 2.0, 'pisa': 2.0, 'medela': 2.0, 'anyone': 1.0, 'and': 5.0, 'a': 7.0, 'would': 1.0, '350': 1.0, 'dew': 3.0, 'everything': 1.0, 'great': 1.0, 'of': 1.0, 'the': 10.0, 'who': 2.0, 'lot': 1.0, 'favor': 1.0, 'was': 1.0, 'had': 2.0, 'my': 4.0, 'before': 1.0, 'only': 1.0, 'its': 1.0, 'much': 1.0, 'this': 5.0, 'right': 1.0, 'has': 2.0, 'pump': 8.0, 'am': 1.0, 'times': 1.0, 'bio': 1.0, 'about': 1.0, 'quiet': 2.0, 'i': 10.0, 'two': 1.0, 'looking': 1.0, 'using': 1.0, 'efficient': 1.0, 'over': 1.0, 'special': 1.0, 'age': 1.0, 'in': 1.0, 'baby': 1.0, 'needs': 1.0, 'time': 1.0, 'daughter': 2.0, 'got': 1.0, 'it': 5.0, 'already': 2.0, 'as': 2.0, 'to': 4.0, 'have': 1.0, 'almost': 1.0, 'mode': 2.0, 'use': 1.0, 's2': 1.0, 'multiple': 1.0, 'built': 1.0, 'be': 1.0, 'plus': 2.0, 'country': 1.0, 'ability': 1.0, 'independently': 1.0, 'cycle': 1.0, 'also': 1.0, 'spectra': 2.0, 'nightlight': 1.0, 'for': 2.0, 'love': 2.0, 'pumping': 1.0, 'day': 1.0, 'same': 1.0, 'super': 1.0, 'way': 1.0, 'than': 1.0, 'loved': 1.0, '240': 1.0, '120': 1.0, 'speed': 1.0, 'strength': 1.0, 'so': 2.0, 'can': 1.0, 'milk': 3.0, 'faster': 1.0, 'with': 2.0, 'after': 1.0, 'quieter': 1.0, 'months': 1.0, 'still': 1.0, 'which': 1.0, 'made': 1.0, 'you': 1.0, 'night': 1.0, 'able': 1.0, 'adopting': 1.0, 'is': 3.0, 'vaccum': 1.0, 'handle': 1.0}
Word element => {'loved': 1.0, '3': 1.0, '2': 1.0, 'every': 1.0, 'regularly': 1.0, 'highly': 1.0, 'improvement': 1.0, 'loves': 1.0, 'proven': 1.0, 'positive': 1.0, 'them': 1.0, 'lack': 1.0, 'pleased': 1.0, 'know': 2.0, 'don': 1.0, 'powerful': 1.0, 'recommended': 1.0, 'ability': 1.0, 'stronger': 4.0, 'month': 1.0, 'else': 1.0, 'shields': 4.0, 'expensive': 1.0, 'standard': 1.0, 'noise': 1.0, 'controlling': 1.0, 'they': 4.0, 'overall': 4.0, 'hesitant': 1.0, 'days': 2.0, '40': 1.0, 'having': 1.0, 'stopping': 1.0, 'has': 11.0, 'noticeable': 1.0, 'anyone': 1.0, 'manual': 1.0, 'asia': 1.0, 'smoother': 2.0, 'used': 2.0, 'action': 3.0, 'decided': 1.0, 'followed': 1.0, 'basic': 1.0, 'finally': 1.0, 'i': 6.0, 'simple': 1.0, 'more': 5.0, 'considering': 1.0, 's': 8.0, 'into': 2.0, 'matters': 1.0, 'short': 1.0, 'should': 1.0, 'of': 16.0, 'sure': 1.0, 'really': 4.0, 'not': 12.0, 'opened': 1.0, 'review': 2.0, 'offer': 1.0, 'fact': 2.0, 'hosipal': 1.0, 'that': 13.0, 'did': 4.0, 'two': 2.0, 'about': 4.0, 'purchasing': 1.0, 'most': 2.0, 'always': 1.0, 'features': 3.0, 'opinions': 1.0, 'outside': 2.0, 'differences': 1.0, '30': 1.0, 'table': 1.0, 'loud': 1.0, 'left': 2.0, 'work': 1.0, 'suctions': 2.0, 'cycles': 2.0, 'technology': 1.0, 'quickly': 1.0, 'returning': 1.0, 'huge': 3.0, 'pointed': 1.0, 'however': 3.0, 'seem': 5.0, '400': 1.0, 'hospitals': 1.0, 'buy': 1.0, 'researching': 1.0, 'have': 7.0, 'list': 1.0, 'freestyle': 3.0, 'style': 4.0, 'like': 7.0, 'sounds': 1.0, 'reading': 1.0, 'side': 1.0, 'pricing': 1.0, 'many': 2.0, 'where': 2.0, 'go': 1.0, 'oil': 1.0, 'designed': 1.0, 'out': 3.0, 'door': 1.0, 'pump': 28.0, 'grade': 8.0, 'upwards': 1.0, 'backpack': 1.0, 'rental': 1.0, 'wife': 8.0, 'needs': 1.0, 'as': 7.0, 'our': 2.0, 'just': 1.0, 'talk': 1.0, 'non': 2.0, 'based': 2.0, 'hospital': 10.0, 'monthly': 1.0, 'tag': 1.0, 'very': 7.0, 'but': 11.0, 'modes': 1.0, 'experience': 1.0, 'seriously': 1.0, 's2': 8.0, 'quieter': 1.0, 'pictures': 1.0, 'user': 1.0, 'lot': 3.0, 'who': 3.0, 'from': 3.0, 'got': 1.0, 'since': 1.0, 'your': 1.0, 'aids': 1.0, 'already': 1.0, 'best': 2.0, 'we': 16.0, 'be': 9.0, 'bad': 2.0, 'reviews': 5.0, 'first': 3.0, 'are': 9.0, 'my': 8.0, 'issues': 1.0, 'added': 1.0, 'fairly': 1.0, 'ran': 1.0, 'or': 5.0, 'typical': 1.0, 'is': 26.0, 'inflated': 1.0, 'slowly': 1.0, 'will': 3.0, 'adjust': 2.0, '250': 1.0, 'medela': 24.0, 'only': 3.0, 'separate': 1.0, 'it': 24.0, 'came': 1.0, 'fine': 1.0, 'valve': 1.0, 'spectra': 11.0, 'well': 5.0, 'wants': 1.0, 'this': 19.0, 'supports': 1.0, 'back': 1.0, 'compare': 1.0, 'do': 3.0, 'bright': 2.0, 'leading': 1.0, 'good': 3.0, 'track': 1.0, 'able': 1.0, 'a': 26.0, 'travel': 1.0, 'easier': 1.0, 'thing': 2.0, 'rented': 3.0, 'were': 4.0, 'any': 1.0, 'much': 12.0, 'advance': 4.0, 'to': 25.0, 's1': 1.0, 'high': 1.0, 'which': 9.0, 'up': 1.0, 'over': 4.0, 'operation': 1.0, 'read': 2.0, 'lactina': 11.0, 'honest': 1.0, 'cheaper': 2.0, 'than': 5.0, 'quick': 1.0, 'bit': 1.0, 'way': 1.0, 'let': 2.0, 'all': 7.0, 'spend': 1.0, 'another': 2.0, 'get': 1.0, 'was': 6.0, 'with': 13.0, 'beyond': 1.0, '60': 1.0, 'in': 17.0, 'using': 1.0, 'miniature': 1.0, '1500': 1.0, 'symphony': 13.0, 'breast': 4.0, 'overseas': 1.0, 'noticed': 2.0, 'long': 2.0, 'on': 9.0, 'spent': 1.0, 'documented': 2.0, 'these': 2.0, 'video': 1.0, 'price': 5.0, 'mixed': 1.0, 'such': 1.0, 'products': 1.0, 'for': 14.0, 'popular': 1.0, '231': 1.0, 'also': 3.0, 'post': 1.0, 'sizing': 1.0, 'would': 2.0, 'functionality': 1.0, 'pretty': 2.0, 'idea': 1.0, 'started': 1.0, 'worth': 1.0, 'at': 5.0, 'look': 1.0, 'hand': 2.0, 'built': 1.0, 'feature': 4.0, 'other': 2.0, 'one': 4.0, 'how': 4.0, 'stops': 1.0, 'range': 1.0, 'options': 2.0, 'offers': 1.0, 'behind': 1.0, 'once': 1.0, 'total': 1.0, 'does': 2.0, 'what': 2.0, 'variables': 1.0, 'looking': 1.0, 'suction': 3.0, 'pumps': 19.0, 'control': 3.0, 'you': 10.0, 'priced': 1.0, 'weak': 1.0, 'renting': 1.0, 'choose': 1.0, 'advice': 1.0, 'variety': 1.0, 'vacuum': 1.0, 'both': 8.0, 'pumping': 3.0, 'use': 2.0, 'there': 5.0, 'think': 1.0, 'rate': 1.0, 'spells': 1.0, 'though': 2.0, 'thought': 1.0, 'therefore': 1.0, 'cycle': 2.0, 'popularity': 1.0, 'makes': 1.0, 'knew': 1.0, 'bulky': 1.0, 'settings': 2.0, 'aided': 1.0, 'her': 4.0, 'versus': 2.0, 'produces': 1.0, 'hours': 1.0, 'cons': 1.0, 'modification': 1.0, 'information': 1.0, 'promotes': 1.0, 'milk': 4.0, 'supply': 2.0, 'output': 1.0, 'been': 2.0, 'better': 5.0, 'comes': 1.0, 'timer': 1.0, 'might': 1.0, 'switching': 1.0, '00': 2.0, 'easy': 1.0, 'fit': 1.0, 'loose': 1.0, 'design': 3.0, 'displays': 1.0, 'duration': 1.0, 'session': 2.0, 'nightlight': 1.0, 'learning': 1.0, 'small': 2.0, 'quite': 2.0, 'benefit': 1.0, 'reach': 1.0, 'efficiently': 1.0, 'when': 2.0, 'amazingly': 1.0, 'creates': 1.0, 'night': 2.0, 'without': 1.0, 'turning': 1.0, 'lights': 1.0, 'disturbing': 1.0, 'year': 1.0, 'being': 1.0, 'see': 2.0, 'lighter': 1.0, 'wise': 2.0, 'if': 3.0, 'light': 2.0, 'great': 1.0, 'so': 6.0, 'upgrade': 1.0, 'coupled': 1.0, 'looks': 2.0, 'drill': 1.0, 'turned': 1.0, 'its': 1.0, 'bother': 1.0, 'prices': 1.0, 'strong': 1.0, 'unsightly': 1.0, 'uses': 1.0, 'smaller': 1.0, 'operate': 1.0, 'earth': 1.0, 'collecting': 1.0, 'charge': 1.0, 't': 2.0, 'me': 1.0, 'still': 3.0, 'super': 1.0, 'beats': 1.0, 'reviewer': 1.0, 'interested': 1.0, 'big': 1.0, 'even': 2.0, 'functionally': 1.0, 'technical': 1.0, 'advantage': 1.0, 'extremely': 1.0, 'late': 1.0, 'didn': 1.0, 'sound': 1.0, 'tote': 3.0, 'after': 1.0, 'can': 9.0, 'down': 1.0, 'same': 1.0, 'hated': 1.0, 'she': 3.0, 'visually': 1.0, 'make': 1.0, 'again': 2.0, 'take': 1.0, 'us': 3.0, 'home': 1.0, 'closed': 1.0, 'million': 1.0, 'bags': 1.0, 'mode': 1.0, 'nice': 1.0, 'plus': 1.0, 'ugly': 1.0, 'some': 1.0, 'quiet': 1.0, 'need': 2.0, 'draining': 1.0, 'cat': 1.0, 'worked': 1.0, 'time': 2.0, 'valves': 4.0, 'purring': 1.0, 'clue': 1.0, 'tad': 1.0, 'nasty': 1.0, 'clean': 1.0, 'flow': 1.0, 'condensation': 2.0, 'had': 1.0, 'sometimes': 1.0, 'diaphragm': 1.0, 'several': 3.0, 'prevents': 1.0, 'everything': 1.0, 'occurring': 1.0, 'now': 1.0, 'too': 1.0, 'posted': 1.0, 'department': 1.0, 'problematic': 1.0, 'downgrade': 1.0, 'directions': 2.0, 'mostly': 1.0, 'basics': 1.0, 'the': 89.0, 'important': 1.0, 'none': 1.0, 'and': 39.0, 'those': 1.0, 'come': 1.0, 'each': 1.0, 'widely': 1.0, 'btw': 1.0}
Word element => {'obtain': 1.0, 'also': 1.0, 'equipment': 1.0, 'expensive': 1.0, 'are': 1.0, 'needed': 1.0, 'lot': 1.0, 'bigger': 1.0, 'of': 2.0, 'hospital': 1.0, 'easier': 1.0, 'has': 1.0, 'so': 1.0, 'time': 1.0, 'pump': 1.0, 'to': 4.0, 'was': 1.0, 'the': 5.0, 'a': 1.0, 'go': 1.0, 't': 1.0, 'medela': 3.0, 'work': 2.0, 'more': 1.0, 'is': 2.0, 'want': 1.0, 'milk': 1.0, 'and': 3.0, 'only': 1.0, 'with': 1.0, 'used': 1.0, 'amount': 1.0, 'symphony': 2.0, 'i': 5.0, 'buy': 1.0, 'when': 2.0, 'less': 1.0, 'have': 1.0, 've': 1.0, 'in': 2.0, 'this': 2.0, 'expresses': 1.0, 'converted': 1.0, 'power': 1.0, 'than': 1.0, 'because': 1.0, 'my': 1.0, 'they': 1.0, 'tubing': 1.0, 'flanges': 1.0, 'didn': 1.0, 'thing': 1.0, 'spectra': 1.0, 'one': 1.0}
Word element => {'any': 1.0, 'prefer': 1.0, 'market': 1.0, 'before': 1.0, 'down': 1.0, 'hands': 1.0, 'said': 1.0, 'lactina': 1.0, 'smaller': 1.0, 'some': 1.0, 'truecons': 1.0, 'good': 1.0, 'timerbargain': 1.0, 'lcd': 1.0, 'two': 1.0, 'handle': 1.0, 'power': 1.0, 'light': 1.0, 'preventionnight': 1.0, 'electricbackflow': 1.0, 'single': 1.0, 'or': 1.0, 'useddouble': 1.0, 'brightness': 1.0, 'evenflo': 1.0, 'lansinoh': 1.0, 'comfortable': 1.0, 'portable': 3.0, 'production': 1.0, 'impressed': 1.0, 'price': 2.0, 'after': 1.0, 'by': 1.0, 'away': 1.0, 'blown': 1.0, 'consultant': 1.0, 'nightlight': 2.0, 'spectra': 5.0, 'on': 4.0, 'amount': 1.0, 'long': 2.0, 'nursing': 1.0, 'pumped': 1.0, 'used': 2.0, 'other': 3.0, 'an': 3.0, 'quietness': 1.0, 'than': 4.0, '1': 1.0, 'medela': 2.0, 'surprisingly': 1.0, 'too': 1.0, 'boost': 1.0, '3': 1.0, 'home': 1.0, 'min': 3.0, 'up': 1.0, 'not': 1.0, 'milk': 4.0, 'filter': 1.0, 'design': 1.0, 'comfort': 1.0, 'clean': 1.0, 'the': 26.0, 'in': 9.0, 'would': 2.0, 'seems': 1.0, 'weeks': 1.0, 'cute': 1.0, 'tubing': 1.0, 'new': 1.0, 'dew': 2.0, 'easy': 1.0, 'mothers': 1.0, 'know': 1.0, 'this': 8.0, 'battery': 1.0, 'highly': 1.0, 'screen': 1.0, 'break': 1.0, '11': 1.0, 'more': 3.0, 'wouldn': 1.0, 'was': 6.0, 'store': 1.0, 'just': 2.0, 'and': 12.0, 'anyone': 1.0, 'run': 1.0, 'one': 3.0, 'otherwise': 1.0, 'months': 1.0, 've': 4.0, 'while': 1.0, 'idea': 1.0, 'your': 1.0, 'when': 2.0, 'whisper': 1.0, 'then': 1.0, 'only': 1.0, 'sending': 1.0, 'sustainable': 1.0, 'third': 1.0, 'almost': 1.0, 'aspect': 1.0, '1st': 1.0, 'able': 1.0, 'however': 1.0, '350': 1.0, 'often': 1.0, 'same': 1.0, 'still': 1.0, 'super': 2.0, 'exclusively': 1.0, 'landfill': 1.0, 'say': 1.0, 'at': 3.0, 'now': 2.0, 'less': 4.0, 'as': 6.0, 'to': 11.0, '20': 1.0, 'that': 6.0, 'are': 1.0, 'my': 10.0, 'room': 2.0, 'cubicle': 1.0, 'back': 2.0, 'breastfed': 1.0, 'three': 1.0, 'so': 2.0, 'efficient': 2.0, 'work': 2.0, 'office': 1.0, 'babies': 1.0, 'backflow': 1.0, 'quiet': 1.0, 'really': 1.0, 'but': 2.0, 'multi': 2.0, 'side': 1.0, 'which': 1.0, 'during': 1.0, 'm': 1.0, 's': 3.0, 'a': 12.0, 'i': 24.0, 'simple': 1.0, 'take': 1.0, '15': 1.0, 'birthday': 1.0, 'definitely': 1.0, 'extra': 1.0, 'another': 1.0, 'use': 1.0, 'pumping': 3.0, '10': 1.0, 'moms': 1.0, 'for': 3.0, 'feature': 2.0, 'started': 1.0, 'users': 1.0, 'over': 2.0, 'sleeping': 1.0, 'into': 1.0, 'through': 1.0, 'option': 1.0, 'express': 2.0, 'loan': 1.0, 'night': 1.0, 'loved': 1.0, 'having': 1.0, 'prevents': 1.0, 'gone': 1.0, 'nearing': 1.0, 'pump': 10.0, 'getting': 1.0, 'bottles': 1.0, 'motor': 1.0, 'love': 1.0, 'day': 1.0, 'since': 2.0, 'their': 1.0, 'it': 8.0, 'be': 2.0, 'own': 1.0, 'lactation': 1.0, 'shields': 1.0, 'hospitals': 1.0, 'found': 1.0, 'have': 2.0, 's2': 3.0, 'session': 1.0, 'could': 1.0, 'if': 2.0, 'great': 1.0, 'situation': 1.0, '2': 1.0, 'brands': 1.0, 'of': 5.0, 'old': 2.0, 'even': 2.0, 'user': 3.0, 'his': 1.0, 'also': 1.0, 'bought': 1.0, 'pros': 1.0, 'bonus': 1.0, 'essential': 1.0, 'what': 1.0, 'sister': 2.0, 'week': 3.0, 'wasn': 1.0, 't': 4.0, 'multiple': 1.0, 'is': 8.0, 'can': 1.0, 'pumps': 4.0, 'couldn': 1.0, 'few': 1.0, 'send': 1.0, 'ordeal': 1.0, 'lame': 1.0, 'settings': 1.0, 'increase': 1.0, 'view': 1.0, 'year': 1.0, 'product': 1.0, 'interruptive': 2.0, 'much': 2.0, 'stressful': 1.0, 'recommend': 1.0, 'from': 2.0, 'who': 1.0, 'looking': 2.0, 'with': 4.0, 'using': 2.0, 'supply': 1.0, 'test': 1.0, 'thought': 1.0, '40': 1.0, 'baby': 5.0, 'hours': 1.0, 'city': 2.0, 'days': 2.0, 'didn': 1.0, 'missing': 1.0, 'provide': 1.0, 'am': 1.0, 'there': 1.0, 'no': 2.0, 'germany': 1.0, 'purchased': 1.0}
Word element => {'up': 1.0, 'keeps': 1.0, 'hope': 1.0, 'let': 1.0, 'recommending': 1.0, 'started': 1.0, 'overall': 1.0, 's': 1.0, 'sense': 1.0, 'by': 1.0, 'out': 1.0, 'figure': 1.0, 'manage': 1.0, 'you': 1.0, 'vague': 1.0, 'are': 1.0, 'issue': 1.0, 'people': 1.0, 'gfs': 1.0, 'piece': 1.0, 'pamphlet': 1.0, 'shows': 1.0, 'with': 2.0, 'problem': 1.0, 'minor': 1.0, 'had': 1.0, 'questions': 1.0, 'am': 1.0, 'can': 1.0, 'included': 1.0, 'so': 2.0, 'grade': 1.0, 'this': 1.0, 'eyes': 1.0, 'reviews': 1.0, 'would': 1.0, 'originally': 1.0, 'past': 1.0, 'but': 4.0, 'work': 1.0, 'or': 1.0, 'product': 1.0, 'year': 1.0, 'atleast': 1.0, 'breastfeeding': 1.0, 'been': 1.0, 'because': 2.0, 'that': 5.0, 'instructions': 1.0, 'money': 1.0, 'purchasing': 1.0, 'months': 1.0, 'than': 2.0, 'huge': 1.0, 'for': 2.0, 'package': 1.0, 'where': 1.0, 'heidi': 1.0, 'bit': 1.0, 'easy': 1.0, 'rating': 1.0, 'one': 1.0, 'happy': 1.0, 'own': 1.0, 'more': 1.0, 'is': 4.0, 'around': 1.0, 'there': 2.0, 'hospital': 1.0, 'answering': 1.0, 'hesitant': 1.0, 'have': 2.0, 'pump': 5.0, 'dinosaur': 1.0, 'little': 2.0, 'very': 1.0, 'just': 2.0, 'common': 1.0, 'using': 1.0, 'light': 1.0, 'on': 3.0, 'carried': 1.0, 'needed': 1.0, 'was': 7.0, 'buying': 1.0, 'quick': 1.0, 'to': 5.0, 'other': 1.0, 'an': 1.0, 'all': 1.0, 'i': 12.0, 'buy': 1.0, 'my': 4.0, 'me': 1.0, 'not': 2.0, 'do': 1.0, 'works': 1.0, 'did': 1.0, 'a': 7.0, 'bone': 1.0, 'already': 1.0, 'it': 10.0, 'same': 1.0, 'felt': 1.0, 'only': 1.0, 'amazing': 1.0, 'customer': 1.0, 'plan': 1.0, 'good': 1.0, 'lol': 1.0, 'think': 1.0, 'better': 1.0, 'and': 4.0, 'compared': 1.0, 'from': 1.0, 'big': 1.0, 'experienced': 1.0, 'as': 1.0, 'heavy': 1.0, 'the': 9.0, 'of': 2.0, 'great': 1.0, 'carrying': 1.0, 'renting': 3.0, 'movie': 1.0, 'like': 1.0, 'will': 1.0, 'connector': 1.0, 'in': 4.0, 'pursuit': 1.0, 'cost': 1.0, 'happiness': 1.0, 'love': 1.0, 'he': 1.0, 'thing': 1.0, '2': 2.0, 'density': 1.0, 'smith': 1.0, 'scanner': 1.0, 'still': 1.0, 'if': 1.0, 'service': 1.0, 'helpful': 1.0}
Word element => {'gift': 1.0, 'or': 1.0, 'baby': 1.0, 'any': 1.0, 'for': 1.0, 'as': 2.0, 'items': 1.0, 'fast': 1.0, 'here': 1.0, 'i': 1.0, 'them': 1.0, 'got': 2.0, 'we': 1.0, 'quality': 1.0, 'materiallots': 1.0, 'amazon': 2.0, 'pros': 1.0, 'mother': 1.0, 'showed': 1.0, 'great': 1.0, 'pricegood': 1.0, 'always': 1.0, 'of': 1.0, 'recommend': 1.0, 'and': 1.0, 'matching': 1.0, 'shower': 1.0, 'this': 1.0, 'exactly': 1.0, 'would': 1.0}
Word element => {'always': 1.0, 'free': 1.0, 'quick': 1.0, 'as': 5.0, 'first': 1.0, 'this': 2.0, 'she': 2.0, 'it': 2.0, 'only': 1.0, 'child': 1.0, 'was': 1.0, 'expecting': 1.0, 'her': 2.0, 'april': 1.0, 'just': 1.0, 'is': 4.0, 'fan': 1.0, 'i': 1.0, 'christmas': 1.0, 'ordered': 1.0, 'gift': 1.0, '34': 2.0, '60': 1.0, 'absolutely': 1.0, 'who': 1.0, 's': 1.0, 'a': 5.0, 'my': 1.0, 'in': 2.0, 'for': 2.0, 'daughter': 1.0, 'described': 1.0, 'and': 3.0, 'far': 1.0, 'loved': 1.0, 'bag': 3.0, 'how': 1.0, 'will': 2.0, 'but': 1.0, 'function': 1.0, 'diaper': 1.0, 'the': 1.0, 'big': 1.0, 'great': 1.0, 'needs': 1.0, 'time': 1.0, 'tell': 1.0, 'bonus': 1.0, 'which': 1.0, 'listing': 1.0, 'should': 1.0, 'be': 1.0, 'deliver': 1.0}
Word element => {'rash': 1.0, 'diaper': 1.0, 'had': 1.0, 'has': 1.0, 'old': 1.0, 'never': 1.0, '5': 1.0, 'reason': 1.0, 'convinced': 1.0, 'best': 1.0, 'stuff': 1.0, 'ever': 1.0, 'natural': 1.0, 'month': 1.0, 'great': 1.0, 'and': 1.0, 'my': 1.0, 'the': 1.0, 'smells': 1.0, 'is': 1.0, 'i': 1.0, 'm': 1.0}
Word element => {'girls': 1.0, 'baby': 1.0, 'outfit': 1.0, 'for': 1.0, 'lovely': 1.0, 'nice': 1.0, 'material': 1.0, 'color': 1.0, 'i': 1.0, 'it': 1.0, 'are': 1.0, 'the': 2.0, 'my': 1.0, 'loved': 1.0, 'this': 1.0, 'very': 1.0, 'and': 2.0, 'as': 1.0, 'a': 1.0, 'bought': 1.0, 'gift': 1.0, 'cousin': 1.0}
Word element => {'well': 1.0, 'good': 1.0, 'overall': 1.0, 'entertaining': 1.0, 'but': 1.0, 'educational': 1.0, 'use': 1.0, 'enough': 1.0, 'online': 1.0, 'ones': 1.0, 'companion': 1.0, 'they': 2.0, 'free': 1.0, 'apps': 1.0, 'worth': 1.0, 'or': 1.0, 'drool': 1.0, 'damage': 1.0, 'water': 1.0, 'of': 1.0, 'in': 1.0, 'electronics': 1.0, 'opportunity': 1.0, 'one': 2.0, 'it': 3.0, 'kids': 1.0, 'this': 2.0, 'and': 4.0, 'gotten': 1.0, 'have': 2.0, 'feel': 1.0, 'ipod': 1.0, 'get': 1.0, 'fisher': 1.0, 'never': 1.0, 'the': 6.0, 'even': 1.0, 'storybook': 2.0, 'more': 2.0, 'is': 2.0, 'iphone': 2.0, 'our': 1.0, 'to': 3.0, 'had': 1.0, 'old': 2.0, 'loved': 1.0, 'took': 1.0, 'etc': 1.0, 'i': 1.0, 'fun': 1.0, 'price': 1.0, 'childlike': 1.0, 'danger': 1.0, 'previously': 1.0, 'year': 1.0, 'when': 1.0, 'an': 1.0, 'sturdier': 1.0, 'entertainer': 1.0, 'product': 1.0, 'for': 2.0, 'actually': 1.0, 'are': 3.0, 'useful': 1.0, 'than': 1.0, 'because': 1.0, 'also': 2.0, 'seems': 1.0, 'chance': 1.0, 'be': 1.0, 'we': 3.0, 'a': 3.0, 'breakage': 1.0, 'lot': 1.0, 'protective': 1.0, 'computer': 1.0, 'like': 1.0, 'my': 1.0}
Word element => {'getting': 1.0, 'expressed': 1.0, 'have': 1.0, 'themselves': 1.0, 'parent': 1.0, 'protect': 1.0, 'interest': 1.0, 'friends': 1.0, 'so': 1.0, 'one': 2.0, 'letting': 1.0, 'hard': 1.0, 'handy': 1.0, 'in': 2.0, 'come': 1.0, 'phone': 2.0, 'use': 1.0, 'also': 1.0, 'download': 1.0, 'music': 1.0, 'can': 3.0, 'there': 1.0, 'really': 2.0, 'looks': 1.0, 'it': 9.0, 'this': 1.0, 'you': 4.0, 'because': 1.0, 'does': 1.0, 'bad': 1.0, 'avoid': 1.0, 'babies': 2.0, 'disagree': 1.0, 'ipod': 1.0, 'i': 1.0, 'touch': 1.0, 'movie': 1.0, 'products': 1.0, 'your': 2.0, 'on': 1.0, 'think': 1.0, 'the': 4.0, 'job': 1.0, 'or': 2.0, 'other': 3.0, 'simple': 1.0, 'for': 3.0, 'expensive': 1.0, 'product': 1.0, 'as': 1.0, 'to': 3.0, 'is': 1.0, 'comes': 1.0, 'premise': 1.0, 'not': 1.0, 'give': 1.0, 'don': 1.0, 'might': 1.0, 't': 1.0, 's': 3.0, 'a': 2.0, 'review': 1.0, 'well': 2.0, 'fair': 1.0, 'protects': 1.0, 'little': 1.0, 'very': 2.0, 'an': 1.0, 'fine': 1.0, 'iphone': 1.0, 'sometimes': 1.0, 'cute': 1.0, 'play': 2.0, 'and': 4.0, 'too': 2.0, 'with': 3.0, 'comparatively': 1.0, 'apps': 2.0, 'are': 2.0, 'appropriate': 1.0}
Word element => {'ll': 1.0, 'you': 8.0, 's': 2.0, 'a': 8.0, 'zombie': 1.0, 'like': 3.0, 'okay': 1.0, 'your': 5.0, 'think': 2.0, 'else': 1.0, 'attach': 1.0, 'after': 1.0, 'however': 1.0, 'work': 1.0, 'can': 2.0, 'but': 1.0, 'on': 1.0, 'long': 1.0, 'does': 1.0, 'when': 1.0, 'what': 1.0, 'skeptical': 1.0, 'has': 1.0, 'toy': 1.0, 'little': 1.0, 'baby': 4.0, 'really': 1.0, 'as': 2.0, 'to': 4.0, 'protects': 1.0, 'people': 1.0, 'just': 1.0, 'why': 1.0, 'worries': 1.0, 'was': 1.0, 'would': 1.0, 'buy': 1.0, 'something': 2.0, 'each': 1.0, 'well': 1.0, 'i': 5.0, 'product': 2.0, 't': 1.0, 'fit': 1.0, 'it': 8.0, 'anything': 1.0, 'remove': 1.0, 'and': 2.0, 'otter': 1.0, 'this': 5.0, 'have': 4.0, 'is': 6.0, 'at': 1.0, 'snug': 1.0, 'for': 2.0, 'such': 1.0, 'should': 1.0, 'most': 1.0, 'pay': 1.0, 'of': 5.0, 'the': 6.0, 'phone': 3.0, 'use': 1.0, 'time': 2.0, 'with': 1.0, 'obviously': 1.0, 'don': 1.0, 'damage': 1.0, 'want': 1.0, 'no': 1.0, 'limit': 1.0, 'let': 2.0, 'or': 1.0, 'if': 2.0, 'turn': 1.0, 'afraid': 1.0, 'into': 2.0, 'because': 1.0, 'that': 1.0, 'box': 1.0, 'case': 1.0, 'stroller': 1.0, 'all': 1.0, 'an': 2.0, 'insert': 1.0, 'overall': 1.0, 'receiving': 1.0, 'design': 1.0, 'only': 1.0, 'con': 1.0, 'great': 2.0, 'tech': 1.0, 'sort': 1.0, 'which': 1.0, 'good': 1.0, 'thing': 1.0, 'first': 1.0, 'are': 2.0, 'looking': 1.0, 'way': 1.0, 'apps': 1.0}
Word element => {'great': 1.0, 'however': 1.0, 'overall': 1.0, 'suited': 1.0, 'screen': 1.0, 'button': 1.0, 'definitely': 1.0, 'home': 1.0, 'easy': 1.0, 'you': 1.0, 'and': 2.0, 'navigate': 1.0, 'the': 10.0, 'protects': 1.0, 'from': 1.0, 'this': 1.0, 'only': 1.0, 'it': 2.0, 'with': 1.0, 'phone': 2.0, 'use': 3.0, 'to': 2.0, 'more': 1.0, 'is': 4.0, 'really': 1.0, 'good': 1.0, 'for': 1.0, 'orientation': 2.0, 'access': 1.0, 'very': 1.0, 'little': 1.0, 'on': 4.0, 'reason': 1.0, 'having': 1.0, 'i': 1.0, 'kept': 1.0, 's': 1.0, 't': 1.0, 'a': 2.0, '5': 1.0, 'portrait': 1.0, 'toy': 1.0, 'well': 1.0, 'review': 1.0, 'case': 1.0, 'babies': 1.0, 'that': 3.0, 'perfectly': 1.0, 'stand': 2.0, 'star': 1.0, 'back': 2.0, 'doesn': 1.0, 'can': 1.0, 'work': 1.0, 'landscape': 1.0, 'apps': 2.0}
Word element => {'hands': 1.0, 'tiny': 1.0, 'for': 1.0, 'cumbersome': 1.0, 'little': 1.0, 'a': 1.0, 'job': 1.0, 'it': 2.0, 'this': 1.0, 'is': 1.0, 'the': 3.0, 'that': 1.0, 's': 1.0, 'case': 1.0, 'but': 1.0, 'fits': 1.0, 'only': 1.0, 'gen': 1.0, 'does': 1.0, 'ipod': 1.0, '5th': 1.0, 'touch': 1.0}
Word element => {'overall': 1.0, 'proof': 1.0, 'in': 1.0, 'since': 1.0, 'tablet': 1.0, 'rarely': 1.0, 'anymore': 1.0, 'drool': 1.0, 'phones': 1.0, 'with': 1.0, 'uses': 1.0, 'christmas': 1.0, 'she': 1.0, 'it': 4.0, 'etc': 1.0, 'his': 1.0, 'and': 3.0, 'play': 1.0, 'thought': 1.0, 'product': 1.0, 'for': 4.0, 'love': 2.0, 'tech': 1.0, 'bought': 1.0, 'be': 1.0, 'baby': 1.0, 'savvy': 1.0, 'to': 2.0, 'our': 2.0, 'outside': 1.0, 'case': 1.0, 'that': 2.0, 'loves': 1.0, 'her': 1.0, 'good': 1.0, 'great': 1.0, 'comfortable': 1.0, 'ipod': 1.0, 'a': 2.0, 's': 2.0, 'we': 4.0, 'could': 1.0, 'on': 1.0, 'put': 1.0, 'use': 1.0, 'daddy': 2.0, 'once': 1.0, 'the': 2.0, 'more': 1.0, 'is': 1.0, 'this': 2.0, 'soft': 1.0, 'comfort': 1.0, 'safety': 2.0, 'contains': 1.0, 'device': 1.0}
Word element => {'generation': 1.0, 'previous': 1.0, 'easily': 1.0, 'soil': 1.0, 'would': 1.0, 'like': 1.0, 'clean': 1.0, 'fabric': 1.0, 'concern': 1.0, 'only': 1.0, 'plastic': 1.0, 'how': 1.0, 'with': 1.0, 'or': 1.0, 'not': 1.0, 'really': 1.0, 'realistically': 1.0, 'us': 1.0, 'on': 1.0, 'easier': 1.0, 'it': 2.0, 'touches': 1.0, 'hook': 1.0, 'but': 1.0, 'kickstand': 1.0, 'hard': 1.0, 'from': 1.0, 'very': 1.0, 'big': 1.0, 'stroller': 1.0, 'commands': 1.0, 'inadvertent': 1.0, 'drool': 1.0, 'drops': 1.0, 'soft': 1.0, 'this': 3.0, 's': 1.0, 'could': 1.0, 'a': 3.0, 'seems': 1.0, 'will': 1.0, 'encourages': 1.0, 'are': 1.0, 'for': 3.0, 'thoughtful': 1.0, 'phone': 2.0, 'parent': 1.0, 'protecting': 1.0, 'anything': 1.0, 'the': 9.0, 'job': 1.0, 'play': 1.0, 'and': 6.0, 'baby': 2.0, 'be': 2.0, 'help': 1.0, 'fine': 1.0, 'iphone': 1.0, 'tummy': 1.0, 'who': 1.0, 'edges': 2.0, 'struggle': 1.0, 'whether': 1.0, 'through': 1.0, 'more': 1.0, 'is': 3.0, 'around': 2.0, 'time': 1.0, 'makes': 1.0, 'my': 2.0, 'to': 1.0, 'magnet': 1.0, 'babies': 2.0, 'that': 1.0, 'crawling': 1.0, 'should': 1.0, 'better': 1.0, 'question': 1.0, 'does': 1.0, 'than': 2.0, 'trouble': 1.0, 'else': 1.0}
Word element => {'shower': 1.0, 'for': 1.0, 'nemo': 1.0, 'clacker': 1.0, 'turtle': 1.0, 'gift': 1.0, 'cute': 1.0, 'bought': 1.0, 'short': 1.0, 'designed': 1.0, 'not': 1.0, 'are': 1.0, 'of': 1.0, 'music': 1.0, 'accurately': 1.0, 'and': 5.0, 'ok': 1.0, 'adorable': 1.0, 'very': 1.0, 'sounds': 1.0, 'was': 1.0, 'colorful': 1.0, 'a': 1.0, 'impressive': 1.0, 'ocean': 1.0, 'nor': 1.0, 'is': 2.0, 'disappointed': 1.0, 'in': 1.0, 'that': 1.0, 'so': 1.0, 'however': 1.0, 'the': 2.0, 'great': 1.0, 'mirror': 1.0}
Word element => {'live': 1.0, 'without': 1.0, 'can': 1.0, 'i': 1.0, 'lifestyle': 1.0, 'outdoorsy': 1.0, 'works': 1.0, 'him': 1.0, 'shield': 1.0, 'our': 1.0, 'that': 1.0, 'has': 1.0, 'we': 1.0, 'move': 1.0, 'family': 1.0, 'any': 1.0, 'baby': 2.0, 't': 1.0, 'the': 4.0, 'on': 1.0, 'really': 1.0, 'is': 2.0, 'farm': 1.0, 'from': 1.0, 'best': 1.0, 'to': 4.0, 'it': 3.0, 'this': 2.0, 'flies': 1.0, 'my': 3.0, 'shelter': 1.0, 'for': 3.0, 'comfortable': 1.0, 'love': 1.0, 'go': 2.0, 'park': 1.0, 'and': 3.0, 'product': 1.0, 'travel': 1.0, 's': 1.0, 'screen': 1.0, 'perfect': 1.0}
Word element => {'another': 1.0, 'in': 1.0, 'batteries': 1.0, 'without': 1.0, 'al': 1.0, 'lit': 1.0, 'will': 1.0, 'put': 1.0, 'but': 1.0, 'nightlight': 1.0, 'thinking': 1.0, 'where': 1.0, 'a': 1.0, 'one': 1.0, 'costly': 1.0, 'have': 1.0, 'bought': 1.0, 'duty': 1.0, 'this': 2.0, 'it': 4.0, 'buy': 1.0, 'putting': 1.0, 'night': 1.0, 'i': 4.0, 'stays': 2.0, 'after': 1.0, 'is': 2.0, 'really': 1.0, 'changed': 1.0, 'my': 1.0, 'even': 1.0, 'view': 1.0, 'very': 1.0, 'getting': 1.0, 'and': 1.0, 'heavy': 1.0}
Word element => {'back': 1.0, 'shipping': 1.0, 'll': 1.0, 'long': 1.0, 'works': 1.0, 'be': 1.0, 'anyone': 1.0, 'made': 1.0, 'last': 2.0, 'good': 1.0, 'is': 2.0, 'idea': 1.0, 'unusable': 1.0, 'very': 1.0, 'malfunction': 1.0, 'not': 1.0, 'poorly': 1.0, 'wires': 1.0, 'battery': 1.0, 'movement': 1.0, 'just': 1.0, 'are': 1.0, 'it': 5.0, 'recommend': 1.0, 'was': 1.0, 'tomorrow': 1.0, 'extremely': 1.0, 'wire': 1.0, 'if': 2.0, 'unit': 2.0, 'see': 1.0, 'of': 2.0, 'mode': 1.0, 'i': 1.0, 'two': 1.0, 'turns': 1.0, 'the': 7.0, 'took': 1.0, 'mother': 1.0, 'my': 1.0, 'running': 1.0, 'and': 2.0, 'get': 1.0, 'at': 1.0, 'sons': 1.0, 't': 1.0, 'causes': 1.0, 'a': 1.0, 'we': 5.0, 'arm': 1.0, 'were': 1.0, 'each': 1.0, 'besides': 1.0, 'rendering': 1.0, 'first': 3.0, 'children': 1.0, 'birthday': 1.0, 'time': 1.0, 'so': 2.0, 'kept': 1.0, 'any': 1.0, 'our': 2.0, 'to': 5.0, 'cheap': 1.0, 'for': 3.0, 'one': 1.0, 'had': 1.0, 'purchased': 1.0, 'used': 2.0, 'both': 1.0, 'wouldn': 1.0, 'even': 1.0, 'night': 3.0, 'them': 4.0, 'they': 3.0, 'excited': 1.0, 'seemed': 1.0, 'this': 2.0, 'hybrid': 1.0, 'but': 2.0, 'work': 1.0, 'ok': 1.0, 'coming': 1.0, 'out': 1.0, 'loose': 2.0, 'on': 2.0, 'thus': 1.0, 'second': 1.0, 'shutting': 1.0, 'will': 1.0, 'batteries': 1.0, 'off': 3.0, 'cover': 1.0}
Word element => {'happy': 1.0, 'wait': 1.0, 'now': 1.0, 'work': 1.0, 'shipping': 1.0, 'overnight': 1.0, 'paid': 1.0, 'really': 1.0, 'time': 1.0, 'second': 1.0, 'received': 1.0, 'how': 1.0, 'replacement': 2.0, 'ordered': 1.0, 'given': 1.0, 've': 1.0, 'i': 3.0, 'dark': 1.0, 'of': 1.0, 'that': 3.0, 'active': 1.0, 'hyper': 1.0, 'have': 2.0, 'put': 1.0, 'on': 4.0, 'than': 1.0, 'not': 1.0, 'stay': 2.0, 'know': 1.0, 'hold': 1.0, 'an': 1.0, 'back': 1.0, 'was': 1.0, 'will': 2.0, 'hour': 1.0, 'failed': 1.0, 'days': 1.0, 'extra': 1.0, 'am': 1.0, 'you': 1.0, 'when': 2.0, 'goes': 1.0, 'less': 1.0, 'charge': 1.0, 'later': 1.0, 'three': 1.0, 'at': 2.0, 'trying': 1.0, 'hearted': 1.0, 'either': 1.0, 'loved': 1.0, 'it': 7.0, 'this': 1.0, 'with': 1.0, 'however': 1.0, 'come': 1.0, 'product': 1.0, 'for': 2.0, 'afraid': 1.0, 'lit': 1.0, 'light': 1.0, 'wiring': 1.0, 'more': 1.0, 'around': 1.0, 'is': 1.0, 'dusk': 1.0, 'broken': 1.0, 's': 1.0, 't': 2.0, 'a': 4.0, 'let': 1.0, 'or': 1.0, 'off': 2.0, 'won': 2.0, 'has': 1.0, 'child': 1.0, 'up': 2.0, 'faulty': 1.0, 'all': 1.0, 'to': 4.0, 'as': 1.0, 'and': 4.0, 'get': 1.0, 'battery': 1.0, 'in': 1.0, 'after': 1.0, 'turns': 1.0, 'the': 3.0, 'place': 1.0, 'desperately': 1.0}
Word element => {'made': 1.0, 'cheaply': 1.0, 'just': 1.0, 'general': 1.0, 'loose': 1.0, 'have': 1.0, 't': 1.0, 'may': 1.0, 'two': 1.0, 'purchased': 1.0, 'first': 1.0, 'it': 1.0, 'were': 1.0, 'thinking': 1.0, 'wire': 1.0, 'your': 1.0, 'waste': 1.0, 'cup': 1.0, 'money': 1.0, 'don': 1.0, 'a': 1.0, 'been': 1.0, 'both': 1.0, 'in': 1.0, 'fluke': 1.0, 'but': 1.0, 'broken': 2.0, 'had': 2.0, 'suction': 1.0, 'second': 1.0}
Word element => {'again': 1.0, 'buy': 1.0, 'likely': 1.0, 'would': 1.0, 'so': 1.0, 'toxins': 1.0, 'wood': 1.0, 'less': 1.0, 'made': 1.0, 'that': 2.0, 'ready': 1.0, 'but': 2.0, 'read': 1.0, 'in': 1.0, 'even': 1.0, 'needed': 1.0, 'dimensions': 1.0, 'for': 2.0, 'love': 1.0, 'mobth': 1.0, 'i': 5.0, 'old': 1.0, 'amused': 1.0, 'it': 9.0, 'this': 2.0, 'out': 1.0, 'wasn': 1.0, 'my': 2.0, 'hands': 1.0, 'the': 2.0, 'buying': 1.0, 'to': 2.0, 'on': 1.0, 'about': 1.0, 'baby': 1.0, 'sized': 1.0, 'and': 3.0, 'ball': 1.0, 'he': 1.0, 'how': 1.0, 'small': 1.0, 'if': 1.0, 'eat': 1.0, 'is': 2.0, 'tiny': 1.0, 'size': 1.0, 'of': 2.0, 't': 1.0, 's': 4.0, 'a': 1.0, 'lacrosse': 1.0, 'cute': 1.0, '9': 1.0, 'just': 1.0, 'by': 1.0, 'before': 1.0, 'mostly': 1.0, 'toy': 2.0, 'likes': 1.0}
Word element => {'to': 1.0, 'enjoy': 1.0, 'seems': 1.0, 'baby': 1.0, 'it': 3.0, 'i': 2.0, 'smaller': 1.0, 'is': 1.0, 'twice': 1.0, 'but': 1.0, 'than': 1.0, 'expected': 1.0, 'wish': 1.0, 'as': 2.0, 'about': 1.0, 'large': 1.0}
Word element => {'anymore': 1.0, 'don': 1.0, 'pretty': 1.0, 'them': 1.0, 'pulls': 1.0, 'in': 3.0, 'under': 1.0, 'throw': 1.0, 'out': 1.0, 'pockets': 3.0, 'm': 1.0, 'by': 1.0, 'caught': 1.0, 'because': 1.0, 'it': 2.0, 'much': 1.0, 'only': 1.0, 'velcro': 1.0, 'pulling': 1.0, 'irritates': 1.0, 'me': 1.0, 'get': 1.0, 'stroller': 1.0, 'down': 1.0, 'inside': 1.0, 'the': 4.0, 'curved': 1.0, 'side': 1.0, 't': 1.0, 's': 1.0, 'when': 3.0, 'you': 2.0, 'ends': 1.0, 'on': 1.0, 'long': 1.0, 'really': 1.0, 'irritating': 1.0, 'of': 1.0, 'there': 3.0, 'so': 2.0, 'have': 1.0, 'small': 1.0, 'impatient': 1.0, 'need': 1.0, 'to': 1.0, 'putting': 1.0, 'grab': 1.0, 'something': 2.0, 'basket': 1.0, 'that': 1.0, 'are': 3.0, 'i': 2.0, 'two': 1.0, 'too': 1.0, 'and': 4.0, 'closed': 1.0}
Word element => {'perfect': 1.0, 'expectations': 1.0, 'bought': 1.0, 'bag': 2.0, 'heavy': 1.0, 'the': 1.0, 'diaper': 1.0, 'for': 1.0, 'when': 1.0, 'found': 1.0, 'beyond': 1.0, 'i': 4.0, 'my': 1.0, 'happy': 1.0, 'within': 1.0, 'car': 1.0, 'so': 1.0, 'was': 3.0, 'stroller': 1.0, 'matching': 1.0, 'and': 4.0, 'seat': 1.0, 'looking': 1.0, 'received': 1.0, 'duty': 1.0, 'this': 1.0, 'it': 2.0, '5': 1.0, 'days': 1.0}
Word element => {'wearing': 1.0, 'for': 1.0, 'this': 1.0, 'will': 1.0, 'through': 1.0, 'are': 1.0, 'the': 1.0, 'my': 1.0, 'extended': 1.0, 'not': 1.0, 'hold': 1.0, 'very': 1.0, 'up': 1.0, 'straps': 1.0, 'all': 1.0, 'career': 1.0, 'sons': 1.0, 'elementary': 1.0, 'comfortable': 1.0, 'set': 1.0, 'school': 1.0}
Word element => {'take': 2.0, 'had': 1.0, 'him': 2.0, 'it': 2.0, 'this': 1.0, 'he': 1.0, 'bought': 1.0, 'i': 1.0, 'design': 1.0, 'is': 2.0, 'using': 1.0, 'lunch': 1.0, 'but': 2.0, 'doesn': 1.0, 'however': 1.0, 'small': 1.0, 'boy': 1.0, 'papers': 1.0, 'school': 1.0, 'set': 2.0, 'of': 2.0, 'get': 1.0, 'backpack': 2.0, 'lunchbox': 1.0, 'good': 1.0, 'the': 5.0, 'another': 1.0, 'sends': 1.0, 'my': 1.0, 'little': 1.0, 'loved': 1.0, 'preschool': 2.0, 'for': 2.0, 'fit': 1.0, 'his': 1.0, 'quality': 1.0, 'clothes': 1.0, 'we': 1.0, 't': 1.0, 'a': 1.0, 's': 1.0, 'too': 2.0, 'and': 1.0, 'to': 5.0, 'any': 1.0, 'that': 1.0, 'spare': 1.0, 'home': 1.0, 'still': 1.0}
Word element => {'great': 1.0, 'august': 1.0, 'this': 1.0, 'us': 1.0, 'first': 1.0, 'down': 1.0, 'trip': 1.0, 'which': 1.0, 'figure': 1.0, 'after': 1.0, 'simple': 1.0, 'is': 1.0, 'you': 1.0, 'again': 1.0, 'closing': 1.0, 'second': 1.0, 'open': 1.0, 'carrying': 1.0, 'back': 1.0, 'can': 1.0, 'market': 1.0, 'and': 4.0, 'on': 3.0, 'sling': 2.0, 'bed': 1.0, 'i': 6.0, 'tried': 1.0, 'm': 1.0, 'three': 1.0, 'crib': 1.0, 'totally': 1.0, 'the': 3.0, 'mother': 1.0, 'our': 1.0, 'to': 2.0, 'seat': 1.0, 'hotels': 1.0, 'of': 1.0, 'in': 3.0, 've': 1.0, 'children': 1.0, 'it': 8.0, 'travel': 2.0, 'out': 1.0, 'equally': 1.0, 'journeybee': 1.0, 'coming': 1.0, 'flat': 1.0, 'have': 1.0, 'baby': 1.0, 'every': 1.0, 'pops': 1.0, 'saw': 1.0, 'highchair': 1.0, 'side': 1.0, 'magazine': 1.0, 'a': 3.0, 's': 4.0, 'different': 1.0, 'cribs': 1.0, 'while': 1.0, 'looked': 1.0, 'from': 1.0, 'fold': 1.0, 'under': 1.0, 'son': 2.0, 'france': 1.0, 'other': 1.0, 'or': 1.0, 'used': 1.0, 'was': 1.0, 'right': 1.0, 'so': 2.0, 'with': 1.0, 'stores': 1.0, 'purchase': 1.0, 'lightweight': 1.0, 'owned': 1.0, 'my': 3.0, 'toddler': 1.0}
Word element => {'very': 1.0, 'backpack': 1.0, 'smaller': 1.0, 'packs': 1.0, 'want': 2.0, 'play': 1.0, 's': 1.0, 'a': 4.0, 't': 1.0, 'carrying': 1.0, 'in': 3.0, 'itself': 1.0, 'disappointed': 1.0, 'weight': 1.0, 'home': 1.0, 'so': 6.0, 'big': 1.0, 'nice': 2.0, 'opening': 1.0, 'size': 4.0, 'crib': 8.0, 'carry': 2.0, 'is': 6.0, 'at': 1.0, 'trips': 1.0, 'travel': 3.0, 'it': 6.0, 'train': 1.0, 'shocked': 1.0, 'take': 3.0, 'via': 1.0, 'this': 5.0, 'shipping': 1.0, 'box': 2.0, 'into': 2.0, 'totally': 1.0, 'much': 2.0, 'overseas': 1.0, 'for': 1.0, 'actually': 1.0, 'near': 1.0, 'on': 2.0, 'actual': 1.0, 'to': 7.0, 'seconds': 1.0, 'ordered': 2.0, 'when': 1.0, 'you': 2.0, 'traveling': 1.0, 'portable': 1.0, 'wanted': 1.0, 'journey': 1.0, 'up': 4.0, 'set': 3.0, 'easy': 4.0, 'would': 4.0, 'bulky': 1.0, 'of': 2.0, 'the': 11.0, 'arrived': 1.0, 'was': 3.0, 'wide': 1.0, 'i': 9.0, 'knock': 1.0, 'metro': 1.0, 'be': 1.0, '8230': 1.0, 'around': 1.0, 'europe': 1.0, 'or': 2.0, 'impossible': 1.0, 'wouldn': 1.0, 'even': 1.0, 'and': 6.0, 'anyone': 1.0, 'trip': 1.0, 'buying': 1.0, 'unfortunate': 1.0, 'that': 2.0, 'because': 2.0, 'never': 1.0, 'yard': 1.0, 'really': 1.0, 'its': 1.0, 'literally': 1.0, 'move': 1.0, 'sturdy': 1.0, 'bag': 2.0, 'light': 1.0, 'looking': 1.0, 'car': 1.0, 'consider': 1.0, 'my': 1.0, 'down': 1.0, 'returned': 1.0, 'immediately': 1.0, 'lotus': 2.0, 'while': 1.0, 'liked': 1.0, 'bee': 1.0, 'setup': 1.0, 'better': 1.0}
Word element => {'inch': 1.0, 'would': 1.0, 'especially': 1.0, 'find': 1.0, 'with': 1.0, 'hard': 1.0, 'crib': 1.0, 'my': 1.0, '5': 1.0, 'cribs': 1.0, 'go': 1.0, 'to': 3.0, 'mattress': 2.0, 'recommend': 1.0, 'read': 1.0, 'i': 3.0, 'priced': 2.0, 'extremely': 1.0, 'and': 1.0, 'bought': 1.0, 'davince': 1.0, 'super': 1.0, 'are': 2.0, 'ones': 1.0, 'these': 2.0, 'the': 3.0, 'reasonably': 1.0, 'sheets': 2.0, 'based': 1.0, 'on': 3.0, 'anyone': 1.0, 'sites': 1.0, 'soft': 1.0, '50': 1.0, 'mini': 2.0, 'coil': 1.0, 'feedback': 1.0, 'decently': 1.0, 'that': 1.0, 'multiple': 1.0, 'for': 2.0}
Word element => {'use': 2.0, 'plans': 1.0, 'who': 1.0, 'recommend': 1.0, 'would': 1.0, 'staple': 1.0, 'consider': 1.0, 'sooner': 1.0, 'boba3g': 1.0, 'with': 1.0, 'this': 1.0, 'it': 2.0, 'so': 1.0, 'days': 1.0, 'a': 4.0, 'much': 1.0, 'useful': 1.0, 'to': 3.0, 'cool': 1.0, 'product': 1.0, 'bought': 1.0, 'for': 1.0, 'anyone': 1.0, 'in': 1.0, 'very': 1.0, 'and': 2.0, 'up': 1.0, 'better': 1.0, 'the': 1.0, 'great': 1.0, 'wish': 1.0, 'than': 1.0, 'trying': 1.0, 'bundle': 1.0, 'baby': 2.0, 'carrier': 3.0, 'i': 4.0}
Word element => {'go': 1.0, 'say': 1.0, 'carry': 1.0, 'if': 1.0, 'very': 1.0, 'quality': 1.0, 'drawstring': 1.0, 'with': 1.0, 'comes': 1.0, 'perfect': 2.0, 'size': 1.0, 'got': 1.0, '34': 1.0, '5': 1.0, 'extra': 1.0, 'here': 1.0, 'be': 3.0, 'bag': 2.0, 'chance': 1.0, 'has': 2.0, 'weather': 2.0, 'cooler': 1.0, 'medium': 1.0, 'would': 2.0, 'that': 2.0, 'loves': 1.0, 'and': 5.0, 'carried': 1.0, 'think': 3.0, 'guy': 1.0, 'love': 1.0, 'yet': 1.0, 'or': 1.0, 'for': 5.0, 'picture': 1.0, 'effective': 1.0, 'one': 2.0, 'anything': 1.0, 'quite': 1.0, 'carrier': 1.0, 'this': 2.0, 'also': 2.0, 'but': 3.0, 'fortune': 1.0, 'purchase': 1.0, 'my': 3.0, 't': 3.0, 'hole': 1.0, 'might': 1.0, 'spending': 1.0, 'deal': 1.0, 'stuffing': 1.0, 'a': 11.0, 'small': 1.0, 'hesitant': 1.0, 'have': 1.0, 'zipper': 2.0, 'after': 1.0, 'turned': 1.0, 'length': 1.0, 'to': 4.0, 'diaper': 1.0, 'as': 5.0, 'was': 1.0, 'the': 12.0, 'of': 1.0, 'since': 1.0, 'feeling': 1.0, 'little': 7.0, 'about': 1.0, 'price': 1.0, 'haven': 1.0, 'had': 1.0, 'officially': 1.0, 'tag': 1.0, 'use': 1.0, 'so': 1.0, 'can': 2.0, 'warmer': 1.0, 'seems': 1.0, 'off': 1.0, 'tried': 1.0, 'it': 2.0, 'month': 1.0, 'worn': 1.0, 'not': 1.0, 'forward': 1.0, 'covered': 1.0, 'boba': 1.0, 'backward': 2.0, 'shown': 1.0, 'm': 1.0, 'in': 2.0, 'there': 2.0, '7': 2.0, 'however': 1.0, 'easy': 1.0, 'arm': 1.0, 'big': 1.0, 'your': 1.0, 'mom': 1.0, 'head': 1.0, 'good': 1.0, 'side': 1.0, 'which': 1.0, 'like': 1.0, 'is': 4.0, 'look': 1.0, 'transporting': 1.0, 's': 2.0, 'funny': 1.0, 'when': 1.0, 'wearing': 1.0, 'don': 1.0, 'on': 3.0, 'vest': 5.0, 'near': 1.0, 'long': 1.0, 'old': 1.0, 'his': 1.0, 'well': 1.0, 'i': 9.0, 'feet': 1.0, 'are': 1.0}
Word element => {'lectures': 1.0, 'class': 1.0, 'listening': 1.0, 'my': 1.0, 'meetings': 1.0, 'focused': 1.0, 'to': 1.0, 'exactly': 1.0, 'fidgets': 1.0, 'stay': 1.0, 'advertised': 1.0, 'they': 1.0, 'therapy': 1.0, 'during': 1.0, 'as': 1.0, 'and': 2.0, 'while': 1.0, 'me': 1.0, 'great': 1.0, 'pictured': 1.0, 'tactile': 1.0, 'help': 1.0}
Word element => {'surprise': 1.0, 'china': 1.0, 'made': 1.0, 'distributed': 1.0, 'see': 1.0, 'recommending': 1.0, 'won': 1.0, 'time': 1.0, 'contact': 1.0, 'long': 1.0, 'product': 1.0, 'for': 1.0, 'but': 1.0, 'work': 1.0, 'should': 1.0, 'that': 1.0, 'here': 1.0, 'anyone': 1.0, 'be': 2.0, 'throwing': 1.0, 'hate': 1.0, 'dryer': 1.0, '5': 1.0, 'diaper': 1.0, 'in': 3.0, 'company': 1.0, 'my': 1.0, 'item': 1.0, 'bag': 1.0, 'concept': 1.0, 'loved': 1.0, 'being': 1.0, 'if': 1.0, 'layer': 1.0, 'this': 2.0, 'only': 3.0, 'looks': 1.0, 'it': 2.0, 'me': 1.0, 'and': 4.0, 'away': 2.0, 'unusable': 1.0, 'after': 1.0, 'was': 1.0, 'tried': 1.0, 'things': 1.0, 'terrible': 1.0, 'given': 1.0, 'hand': 1.0, 'using': 1.0, 'i': 6.0, 'gift': 1.0, 'keep': 1.0, 'bib': 1.0, 'to': 5.0, 'as': 1.0, 'from': 2.0, 'could': 1.0, 't': 1.0, 's': 1.0, 'a': 2.0, 'the': 7.0, 'disgusted': 1.0, 'times': 1.0, 'looking': 1.0, 'waterproof': 1.0, 'ripping': 1.0, 'back': 1.0, 'fabric': 1.0, 'is': 2.0, 'completely': 1.0, 'on': 1.0, 'washed': 1.0, 'no': 1.0, 'gone': 1.0, 'm': 1.0, 'maybe': 1.0, 'because': 1.0, 'once': 1.0, 'never': 1.0}
Word element => {'ordering': 1.0, 'a': 1.0, 'would': 1.0, 'messy': 1.0, 'inside': 1.0, 'thin': 1.0, 'being': 1.0, 'got': 1.0, 'saving': 1.0, '7': 1.0, 'about': 1.0, 'after': 1.0, 'be': 4.0, 'within': 2.0, 'thought': 1.0, 'inverts': 1.0, 'bib': 1.0, 'laying': 1.0, 'fiddling': 1.0, 'these': 1.0, 'diaper': 1.0, 'basically': 1.0, 'the': 6.0, 'not': 2.0, 'difficult': 1.0, 'ju': 2.0, 'really': 1.0, 'is': 2.0, 'it': 5.0, 'looks': 2.0, 'so': 1.0, 'bottle': 1.0, 'little': 1.0, 'ordered': 1.0, 'on': 2.0, 'product': 2.0, 'crumpled': 1.0, 'for': 3.0, 'actually': 2.0, 'minutes': 1.0, 'unfortunately': 1.0, 'neat': 1.0, 'another': 1.0, 'my': 2.0, 'this': 1.0, 'and': 3.0, 'get': 1.0, 'itself': 1.0, 'in': 1.0, 'will': 1.0, 'item': 1.0, 'due': 1.0, 'bag': 2.0, 'i': 5.0, 'planned': 2.0, 'massive': 1.0, 'money': 1.0, 'but': 1.0, 'back': 2.0, 'they': 1.0, 'as': 1.0, 'comparable': 1.0, 'actual': 1.0, 'to': 3.0, 'only': 1.0, 'its': 2.0, 'envelope': 1.0, 'are': 2.0, 'sleeve': 2.0, 'part': 2.0, 'of': 3.0, 'baby': 1.0, 'them': 1.0, 'pouch': 2.0, 'case': 1.0, 'into': 1.0, 'that': 2.0, 'lunch': 1.0, 'using': 1.0, 'which': 1.0, 'like': 1.0}
Word element => {'friendly': 1.0, 'bow': 1.0, 'but': 1.0, 'eco': 1.0, 'barely': 1.0, 'needs': 1.0, 'in': 2.0, 'for': 1.0, 'so': 1.0, 'window': 1.0, 'd': 1.0, 'sf': 1.0, 'a': 3.0, 'anything': 1.0, 'saw': 1.0, 'just': 1.0, 'packaging': 1.0, 'i': 2.0, 'and': 2.0, 'get': 1.0, 'this': 1.0, 'it': 1.0, 'friend': 1.0, 'amazon': 1.0, 's': 1.0, 'price': 1.0, 'to': 1.0, 'had': 1.0, 'was': 1.0, 'the': 2.0, 'best': 1.0, 'seen': 1.0}
Word element => {'extras': 1.0, 'i': 1.0, 'when': 1.0, 'again': 1.0, 'buy': 1.0, 'definitely': 1.0, 'will': 1.0, 'to': 1.0, 'all': 1.0, 'ups': 1.0, 'the': 1.0, 'these': 1.0, 'brand': 1.0, 'new': 1.0, 'need': 1.0, 'parts': 1.0, 'were': 1.0, 'nice': 1.0, 'back': 1.0, 'have': 1.0}
Word element => {'affordable': 1.0, 'this': 1.0, 'well': 1.0, 'good': 1.0, 'making': 1.0, 'everything': 1.0, 'the': 2.0, 'was': 3.0, 'fast': 1.0, 'in': 1.0, 'kit': 1.0, 'very': 1.0, 'as': 2.0, 'described': 1.0, 'and': 1.0, 'shipping': 1.0, 'price': 1.0}
Word element => {'replaced': 1.0, 'be': 1.0, 'needed': 1.0, 'they': 1.0, 'of': 1.0, 'then': 1.0, 'replacement': 1.0, 'ones': 1.0, 'the': 3.0, 'because': 1.0, 'same': 1.0, 'is': 1.0, 'a': 2.0, 'using': 1.0, 'five': 1.0, 's': 1.0, 'rated': 1.0, 'star': 1.0, 'older': 1.0, 'it': 3.0, 'i': 2.0, 'job': 1.0, 'or': 1.0, 'to': 1.0, 'was': 1.0, 'what': 1.0, 'does': 1.0, 'even': 1.0, 'did': 1.0, 'better': 1.0}
Word element => {'cover': 1.0, 'nursing': 1.0, 'good': 1.0, 'also': 1.0, 'is': 1.0, 'blanket': 1.0, 'this': 1.0, 'blankets': 1.0, 'and': 1.0, 'they': 1.0, 'pattern': 1.0, 'most': 1.0, 'are': 3.0, 'these': 2.0, 'the': 2.0, 'love': 1.0, 'i': 1.0, 'as': 1.0, 'very': 1.0, 'from': 1.0, 'out': 1.0, 'that': 1.0, 'of': 2.0, 'there': 1.0, 'lot': 1.0, 'bigger': 1.0, 'different': 1.0, 'than': 1.0, 'aden': 1.0, 'a': 2.0, 'anais': 1.0}
Word element => {'happy': 1.0, 'well': 1.0, 'and': 2.0, 'bright': 1.0, 'soft': 1.0, 'bought': 1.0, 'fit': 1.0, 'grandson': 1.0, 'this': 1.0, 'for': 1.0, 'i': 1.0, 'said': 1.0, 'material': 1.0, 'really': 1.0, 'he': 2.0, 'my': 1.0, 'the': 1.0, 'is': 2.0}
Word element => {'right': 1.0, 'crib': 1.0, 'just': 1.0, 'fits': 1.0, 'material': 1.0, 'my': 1.0, 'price': 1.0, 'and': 2.0, 'quality': 2.0, 'room': 1.0, 'is': 1.0, 'mattress': 1.0, 'science': 1.0, 'matched': 1.0, 'themed': 1.0, 'great': 2.0, 'perfectly': 1.0}
Word element => {'sheets': 1.0, 'not': 1.0, 'and': 1.0, 'sheet': 2.0, 'should': 1.0, 'for': 1.0, 'crib': 1.0, 'so': 1.0, 'small': 2.0, 'are': 1.0, 'gerber': 1.0, 'too': 3.0, 'a': 2.0, 'why': 1.0, 'as': 1.0, 'big': 1.0, 'n': 1.0, 'i': 2.0, 'guess': 1.0, 'these': 1.0, 'figured': 1.0, 'pack': 1.0, 'have': 1.0, 'all': 1.0, 'clothing': 1.0, 'play': 1.0, 'runs': 1.0}
Word element => {'money': 1.0, 'your': 1.0, 'waste': 1.0, 'returning': 1.0, 'they': 2.0, 'not': 3.0, 'them': 1.0, 'a': 1.0, 'standard': 1.0, 'are': 1.0, 'fit': 1.0, 'crib': 1.0, 'do': 2.0, 'mattress': 1.0, 'and': 1.0, 'soft': 1.0}
Word element => {'top': 1.0, 'tree': 1.0, 'cover': 1.0, 'them': 1.0, 'using': 1.0, 'now': 1.0, 'we': 1.0, 'they': 2.0, 'are': 1.0, 'the': 4.0, 'after': 1.0, 'christmas': 1.0, 'longer': 1.0, 'to': 1.0, 'first': 1.0, 'shrunk': 1.0, 'mattress': 1.0, 'washing': 1.0, 'so': 1.0, 'of': 1.0, 'no': 1.0, 'fit': 1.0}
Word element => {'fit': 1.0, 'very': 1.0, 'i': 1.0, 'normal': 1.0, 'was': 1.0, 'would': 1.0, 'a': 2.0, 'for': 1.0, 'small': 1.0, 'my': 1.0, 'too': 1.0, 'mattress': 1.0, 'what': 1.0, 'waste': 1.0, 'of': 1.0, 'money': 1.0, 'it': 1.0, 'have': 1.0, 'crib': 1.0, 'been': 1.0, 'disappointed': 1.0, 'perfect': 1.0, 'if': 1.0, 'actually': 1.0}
Word element => {'these': 1.0, 'on': 1.0, 'up': 1.0, 'stock': 1.0, 'would': 1.0, 'prints': 1.0, 'the': 1.0, 'are': 2.0, 'different': 1.0, 'so': 1.0, 'sheets': 1.0, 'super': 1.0, 'soft': 1.0, 'types': 1.0, 'of': 1.0, 'i': 2.0, 'wish': 1.0, 'that': 1.0, 'there': 1.0}
Word element => {'buy': 1.0, 'don': 1.0, 'popping': 1.0, 'it': 1.0, '1': 1.0, 'get': 1.0, 'stage': 1.0, 'now': 1.0, 'to': 2.0, 'had': 1.0, 'finally': 1.0, 'elastic': 1.0, 'but': 1.0, 'have': 1.0, 't': 1.0, 'ago': 1.0, 'my': 2.0, 'needed': 1.0, 'recommend': 1.0, 'sheets': 2.0, 'their': 1.0, 'bought': 1.0, 'without': 1.0, 'the': 5.0, 'these': 2.0, 'old': 1.0, 'i': 4.0, '4': 1.0, 'onto': 1.0, 'years': 1.0, 'for': 1.0, 'oldest': 1.0, '5': 1.0, 'year': 1.0, 'through': 1.0, 'of': 1.0, 'crib': 1.0, 'something': 1.0, 'would': 1.0, 'not': 1.0, 'and': 2.0, 'pattern': 1.0, 'barely': 1.0, 'is': 1.0, 'rest': 1.0, 'cute': 1.0, 'wrestle': 1.0, 'quality': 1.0, 'them': 1.0, 'lost': 1.0, 'mattress': 1.0, 'they': 1.0, 'off': 1.0, 'cover': 1.0}
Word element => {'thicker': 1.0, 'were': 1.0, 'preferred': 1.0, 'i': 2.0, 'and': 1.0, 'them': 1.0, 'they': 2.0, 'are': 1.0, 'although': 1.0, 'if': 1.0, 'soft': 1.0, 'comfortable': 1.0, 'would': 1.0, 'loved': 1.0, 'have': 1.0}
Word element => {'don': 1.0, 'realized': 1.0, 'threw': 1.0, 'away': 1.0, 'and': 1.0, 'them': 1.0, 'washed': 1.0, 'that': 1.0, 'know': 1.0, 'to': 1.0, 'nice': 1.0, 'sheets': 1.0, 'size': 1.0, 't': 1.0, 'the': 1.0, 'these': 1.0, 'thinking': 1.0, 'they': 3.0, 'bought': 1.0, 'packaging': 1.0, 'i': 3.0, 'reviewer': 1.0, 'would': 2.0, 'previous': 1.0, 'too': 1.0, 'a': 2.0, 'like': 1.0, 'fit': 2.0, 'have': 1.0, 'standard': 1.0, 'been': 1.0, 'crib': 1.0, 'before': 1.0, 'beforehand': 1.0, 'mattress': 1.0, 'are': 1.0, 'small': 1.0, 'cute': 1.0, 'but': 1.0, 'it': 1.0}
Word element => {'price': 1.0, 'cute': 1.0, 'soft': 1.0, 'good': 2.0, 'and': 1.0, 'very': 3.0, 'gerber': 1.0, 'is': 1.0, '2': 1.0, 'daisy': 1.0, 'pack': 1.0, 'cotton': 1.0, 'knit': 1.0, 'fitted': 1.0, 'pink': 1.0, 'design': 1.0, 'crib': 1.0, 'sheets': 1.0, 'white': 1.0}
Word element => {'same': 1.0, 'price': 1.0, 'about': 1.0, 'for': 1.0, 'one': 1.0, 'includes': 1.0, 'majority': 1.0, 'i': 1.0, 'and': 1.0, 'perfectly': 1.0, 'only': 1.0, 'it': 1.0, 'lullabye': 1.0, 'crib': 2.0, 'mcdonald': 1.0, 'breeze': 1.0, 'jill': 1.0, 'a': 1.0, 'the': 3.0, 'find': 1.0, 'verses': 1.0, 'twins': 1.0, 'so': 1.0, 'sheets': 1.0, 'is': 1.0, 'which': 1.0, 'nice': 1.0, 'matches': 1.0, 'to': 1.0, 'have': 1.0, 'pack': 1.0, 'set': 1.0, 'of': 1.0}
Word element => {'eat': 1.0, 'to': 1.0, 'up': 1.0, 'tear': 1.0, 'these': 1.0, 't': 1.0, 'even': 1.0, 'them': 1.0, 'fits': 1.0, 'is': 2.0, 'on': 1.0, 'terror': 1.0, 'well': 1.0, 'stays': 1.0, 'your': 1.0, 'sheets': 1.0, 'if': 1.0, 'crib': 2.0, 'awesome': 1.0, 'sister': 1.0, 'wrecker': 1.0, 'like': 1.0, 'baby': 1.0, 'she': 1.0, 'an': 1.0, 'evil': 1.0, 'my': 1.0, 'queen': 1.0, 'and': 2.0, 'couldn': 1.0}
Word element => {'would': 1.0, 'or': 1.0, 'with': 1.0, 'washing': 1.0, 'soft': 1.0, 'months': 1.0, 'recommend': 1.0, 'no': 1.0, 'of': 1.0, 'good': 1.0, 'has': 1.0, 'fading': 1.0, 'held': 1.0, 'very': 1.0, 'quality': 1.0, 'up': 2.0, 'balling': 1.0, 'to': 1.0, 'several': 1.0}
Word element => {'future': 1.0, 'in': 1.0, 'carter': 1.0, 'will': 1.0, 'there': 1.0, 'pad': 1.0, 'a': 1.0, 'challenging': 1.0, 'much': 1.0, 'at': 1.0, 'especially': 1.0, 'was': 1.0, 'to': 3.0, 'more': 1.0, 'these': 1.0, 'the': 3.0, 'price': 1.0, 'buy': 1.0, 'i': 3.0, 'however': 1.0, 'probably': 1.0, 'get': 1.0, 'edges': 1.0, 'really': 1.0, 'have': 1.0, 'pull': 1.0, 'them': 2.0, 'stretch': 1.0, 'on': 2.0, 'over': 1.0, 'mattress': 2.0, 'with': 1.0, 'thrilled': 1.0, 'it': 1.0, 'sheets': 2.0, 's': 2.0}
Word element => {'not': 1.0, 'them': 1.0, 'worth': 1.0, 'drying': 1.0, 'when': 1.0, 'purchase': 1.0, 'use': 1.0, 'a': 1.0, 'about': 1.0, 'of': 1.0, 'shrunk': 1.0, 'setting': 1.0, 'month': 1.0, 'after': 1.0, 'sheets': 1.0, 'three': 1.0, 'while': 1.0, 'being': 1.0, 'interchanged': 1.0, 'with': 1.0, 'on': 1.0, 'these': 1.0, 'the': 4.0, 'other': 1.0, 'i': 2.0, 'machine': 1.0, 'had': 1.0, 'lowest': 1.0, 'used': 1.0, 'dryer': 1.0}
Word element => {'snug': 1.0, 'keeps': 1.0, 'regular': 2.0, 'measured': 1.0, 'being': 1.0, 'despite': 1.0, 'around': 1.0, 'snugly': 1.0, 'fitted': 1.0, 'not': 1.0, 'big': 1.0, 'min': 1.0, 'really': 1.0, 'fine': 1.0, 'side': 1.0, 'reasonably': 1.0, 'it': 1.0, 'elastic': 1.0, 'with': 1.0, 'sheet': 1.0, 'them': 2.0, 'and': 2.0, 'protector': 1.0, 'enough': 1.0, 'cover': 1.0, 'mattress': 6.0, 'but': 2.0, 'on': 1.0, 'these': 1.0, 'wrap': 1.0, 'deal': 1.0, 'the': 4.0, 'they': 4.0, 'are': 5.0, 's': 1.0, 'a': 4.0, 'mini': 2.0, 'coil': 1.0, 'thin': 1.0, 'sheets': 3.0, 'priced': 1.0, 'meet': 1.0, 'for': 2.0, 'fit': 2.0, 'safely': 1.0, 'sized': 2.0, 'because': 1.0, 'expectations': 1.0, 'crib': 3.0, 'i': 1.0, 'bought': 1.0, 'as': 1.0, 'to': 2.0, '5': 1.0, '34': 1.0, 'crescent': 1.0, 'davinci': 1.0, '50': 1.0, 'suggested': 1.0, 'by': 1.0, 'my': 3.0, 'another': 1.0, 'reviewer': 1.0}
Word element => {'purchase': 1.0, 'them': 1.0, 'recommend': 1.0, 'would': 1.0, 'i': 1.0, 'excellent': 1.0, 'fit': 1.0, 'for': 1.0, 'durable': 1.0, 'crib': 1.0, 'sheets': 1.0, 'were': 2.0, 'an': 1.0, 'these': 1.0, 'they': 1.0, 'laundered': 1.0, 'highly': 1.0, 'and': 1.0, 'well': 1.0}
Word element => {'that': 1.0, 'depending': 1.0, 'further': 1.0, 'down': 1.0, 'rating': 1.0, 'of': 1.0, 'do': 1.0, 'goes': 1.0, 'haven': 1.0, 'how': 1.0, 'washing': 1.0, 'after': 1.0, 'way': 2.0, 'get': 1.0, 'bands': 1.0, 'enough': 1.0, 'middle': 1.0, 'still': 2.0, 'seem': 1.0, 'trying': 1.0, 'sheets': 3.0, 'print': 1.0, 'had': 1.0, 'animal': 1.0, 'loved': 1.0, 'change': 1.0, 'but': 1.0, 'elastic': 1.0, 'gender': 1.0, 'the': 8.0, 'more': 1.0, 'these': 1.0, 'i': 9.0, 'picked': 1.0, 'they': 5.0, 'neutral': 1.0, 'little': 2.0, 'because': 3.0, 'just': 1.0, 'was': 2.0, 'well': 1.0, 'all': 1.0, 'to': 4.0, 'as': 1.0, 'm': 1.0, 'am': 1.0, 'when': 1.0, 'could': 1.0, 't': 1.0, 'go': 2.0, 'a': 4.0, 'going': 1.0, 'yet': 1.0, 'paranoid': 1.0, 'this': 2.0, 'soft': 1.0, 'mattress': 2.0, 'before': 1.0, 'even': 2.0, 'put': 1.0, 'on': 5.0, 'washed': 1.0, 'night': 1.0, 'them': 2.0, 'are': 3.0, 'tight': 2.0, 'slight': 1.0, 'sheet': 1.0, 'so': 3.0, 'bit': 1.0, 'fit': 1.0, 'bows': 1.0, 'afraid': 1.0, 'break': 1.0}
Word element => {'these': 1.0, 'recommend': 1.0, 'would': 1.0, 'i': 1.0, 'other': 1.0, 'each': 1.0, 'with': 1.0, 'baby': 2.0, 'sheets': 2.0, 'colors': 1.0, 'nice': 1.0, 'coordinate': 1.0, 'for': 2.0, 'grand': 1.0, 'well': 1.0, 's': 1.0, 'bassinette': 1.0, 'the': 1.0}
Word element => {'them': 1.0, 'using': 1.0, 'forward': 1.0, 'looking': 1.0, 'soft': 1.0, 's': 1.0, 'baby': 1.0, 'i': 1.0, 'my': 1.0, 'the': 2.0, 'colors': 1.0, 'bassinet': 1.0, 'addition': 1.0, 'very': 2.0, 'and': 2.0, 'nice': 1.0, 'matching': 1.0, 'boy': 1.0, 'set': 1.0, 'liked': 1.0, 'to': 2.0}
Word element => {'loves': 1.0, 'friend': 1.0, 'bedding': 1.0, 'bassinet': 1.0, 'for': 1.0, 'them': 1.0, 'thin': 1.0, 'perfect': 1.0, 'but': 1.0, 'exactly': 1.0, 'came': 1.0, 'summer': 1.0, 'quickly': 1.0, 'soft': 1.0, 'were': 1.0, 'and': 1.0, 'as': 1.0, 'described': 1.0, 'these': 1.0, 'they': 1.0, 'my': 1.0, 'are': 1.0}
Word element => {'well': 1.0, 'holding': 1.0, 'frequently': 1.0, 'thought': 1.0, 'were': 1.0, 'it': 3.0, 'us': 1.0, 'm': 1.0, 'was': 2.0, 'finally': 1.0, 'other': 1.0, 'large': 1.0, 'this': 3.0, 'swaddling': 1.0, 'someone': 1.0, 'got': 1.0, 'far': 1.0, 'then': 1.0, 'already': 1.0, 's': 1.0, 'we': 1.0, 'a': 2.0, 'pack': 1.0, 'so': 1.0, 'smaller': 1.0, 'big': 2.0, 'trick': 1.0, 'of': 1.0, 'blanket': 2.0, 'blankets': 2.0, 'too': 1.0, 'and': 4.0, 'inch': 1.0, 'getting': 1.0, 'comical': 1.0, 'baby': 1.0, 'kept': 1.0, 'bigger': 1.0, 'the': 2.0, 'more': 1.0, '36': 1.0, 'does': 1.0, 'one': 1.0, 'huge': 1.0, 'two': 1.0, 'i': 2.0, 'joke': 1.0, 'ordering': 1.0, 'in': 1.0, 'up': 1.0, '38': 1.0, 'wash': 1.0, 'our': 1.0, 'patterns': 1.0}
Word element => {'sure': 1.0, 'for': 1.0, 'recomend': 1.0, 'awesome': 1.0, 'pretty': 1.0, 'blanket': 1.0, 'inside': 1.0, 'cryinkle': 1.0, 'textures': 1.0, 'have': 1.0, 'wings': 1.0, 'be': 1.0, 'headgehog': 1.0, 'bear': 1.0, 'paper': 1.0, 'bell': 1.0, 'hoped': 1.0, 'cute': 1.0, 'holder': 1.0, 'would': 2.0, 'as': 3.0, 'differant': 1.0, 'and': 2.0, 'just': 1.0, 'owl': 2.0, 'is': 2.0, 'set': 1.0, 'whole': 1.0, 'i': 2.0, 'fox': 1.0, 'it': 3.0, 'this': 1.0, 'diaper': 1.0, 'the': 5.0, 'are': 1.0, 'furry': 1.0, 'tail': 1.0, 'has': 2.0, 'well': 1.0, 'a': 1.0, 'in': 1.0}
Word element => {'patterns': 1.0, 'reviewed': 1.0, 'all': 1.0, 'have': 1.0, 'people': 1.0, 'other': 2.0, 'snags': 1.0, 'than': 1.0, 'better': 1.0, 'they': 1.0, 'haven': 1.0, 'them': 1.0, 'a': 2.0, 'like': 2.0, 'up': 1.0, 'and': 1.0, 'that': 1.0, 'love': 1.0, 'buy': 1.0, 'i': 3.0, 'everyone': 1.0, 'raves': 1.0, 'any': 1.0, 'about': 2.0, 'wash': 1.0, 'these': 1.0, 'nicely': 1.0, 'ones': 1.0, 'the': 2.0, 't': 1.0, 'would': 1.0, 'encountered': 1.0}
Word element => {'this': 1.0, 'with': 1.0, 'disappointed': 1.0, 'well': 1.0, 'thinner': 1.0, 'even': 1.0, 'definitely': 1.0, 'washing': 1.0, 'touch': 1.0, 'the': 2.0, 'a': 2.0, 'soft': 1.0, 'as': 3.0, 'blankets': 1.0, 'very': 1.0, 'after': 1.0, 'not': 1.0, 'rough': 1.0, 'product': 1.0, 'much': 1.0, 'to': 1.0}
Word element => {'loves': 1.0, 'hope': 1.0, 'and': 1.0, 'found': 1.0, 've': 1.0, 'pile': 1.0, 'the': 2.0, 'ones': 1.0, 'new': 2.0, 'soft': 1.0, 'quickly': 1.0, 'bought': 1.0, 'is': 1.0, 'realized': 1.0, 'second': 2.0, 'one': 1.0, 'for': 2.0, 'deepest': 1.0, 'easier': 1.0, 'our': 3.0, 'we': 3.0, 'fuzzy': 1.0, 'few': 1.0, 'a': 1.0, 'changing': 1.0, 'so': 1.0, 'i': 2.0, 'it': 1.0, 'first': 1.0, 'this': 2.0, 'with': 1.0, 'sought': 1.0, 'child': 1.0, 'covers': 1.0, 'made': 1.0, 'out': 1.0}
Word element => {'that': 1.0, 'bedding': 1.0, 'lambs': 1.0, 'the': 1.0, 'pads': 1.0, 'this': 1.0, 'with': 1.0, 'is': 1.0, 'standard': 1.0, 'an': 1.0, 'adorable': 1.0, 'design': 1.0, 'and': 1.0, 'i': 1.0, 'incredibly': 1.0, 'goes': 1.0, 'soft': 1.0, 'ivy': 1.0, 'fits': 1.0, 'love': 1.0, 'changing': 1.0, 'it': 2.0}
Word element => {'either': 1.0, 'spectacular': 1.0, 'say': 1.0, 'to': 2.0, 'else': 1.0, 'anything': 1.0, 'think': 1.0, 'can': 1.0, 'against': 1.0, 'complain': 1.0, 'enough': 1.0, 'seems': 1.0, 'hold': 1.0, 'cute': 1.0, 'wouldn': 1.0, 'it': 2.0, 'well': 1.0, 'a': 1.0, 'that': 1.0, 's': 1.0, 'yep': 1.0, 'nothing': 2.0, 'like': 1.0, 'about': 1.0, 'kiddo': 1.0, 'any': 1.0, 'keep': 1.0, 'of': 2.0, 'made': 1.0, 'lamp': 3.0, 'out': 1.0, 'reach': 1.0, 'i': 2.0, 'but': 2.0, 'the': 1.0, 't': 2.0}
Word element => {'don': 1.0, 'carry': 1.0, 'he': 1.0, 'since': 1.0, 'have': 1.0, 'honest': 1.0, 'be': 1.0, 'to': 2.0, 'both': 1.0, 'like': 2.0, 'really': 1.0, 'more': 1.0, 'the': 4.0, 'very': 2.0, 'son': 1.0, 'durable': 2.0, 'germy': 1.0, 'pull': 1.0, 'my': 1.0, 'not': 1.0, 'only': 1.0, 'do': 1.0, 'and': 5.0, 'love': 1.0, 'or': 1.0, 'i': 3.0, 'old': 1.0, 'of': 1.0, 'blankies': 2.0, 'are': 4.0, 'pill': 1.0, 'aiden': 1.0, '5': 1.0, 'each': 1.0, 'super': 1.0, 'cute': 1.0, 'well': 1.0, 'likes': 2.0, 'year': 1.0, 'his': 1.0, 'brands': 1.0, 'anais': 1.0, 'wear': 1.0, 'better': 1.0, 'if': 1.0, 'will': 1.0, 'use': 1.0, 'these': 1.0, 'others': 1.0, 'million': 1.0, 'we': 1.0, 't': 2.0, 'a': 3.0, 's': 2.0, '2': 1.0, 'organic': 1.0, 'but': 1.0, 'aren': 1.0, 'available': 1.0, 'them': 2.0, 'softer': 1.0, 'zebi': 2.0, 'especially': 1.0, 'dirty': 1.0, 'they': 3.0, 'bamboo': 1.0, 'cuter': 1.0}
Word element => {'at': 1.0, 'whales': 1.0, 'loves': 1.0, 'for': 1.0, 'many': 2.0, 'works': 1.0, 'it': 1.0, 'looking': 1.0, 'size': 1.0, 'so': 2.0, 'and': 3.0, 'are': 1.0, 'the': 3.0, 'my': 1.0, 'purposes': 1.0, 's': 1.0, 'breathable': 1.0, 'pattern': 1.0, 'soft': 1.0, 'i': 1.0, 'have': 1.0, 'complements': 1.0, 'received': 1.0, 'far': 1.0, 'lovely': 1.0, 'colors': 1.0, 'baby': 1.0}
Word element => {'matters': 1.0, 'really': 1.0, 'what': 1.0, 'down': 1.0, 'have': 1.0, 'over': 1.0, 'prints': 1.0, 'zebis': 1.0, 'prefer': 1.0, 'although': 1.0, 'already': 1.0, 'warn': 1.0, 'look': 1.0, 'new': 1.0, 'brand': 1.0, 'makes': 1.0, 'noticed': 1.0, 'am': 1.0, 'that': 2.0, 'box': 1.0, 'of': 1.0, 'out': 1.0, 'quality': 1.0, 'them': 1.0, 'white': 1.0, 'wherever': 1.0, 'size': 1.0, 'anais': 1.0, 'maybe': 1.0, 'print': 1.0, 'wins': 1.0, 'snagged': 1.0, 'gift': 1.0, 'absolutely': 1.0, 'i': 7.0, 'took': 1.0, 'but': 1.0, 'snags': 1.0, 'was': 1.0, 'doesn': 1.0, 'blue': 1.0, 'second': 1.0, 'trimmed': 1.0, 'however': 1.0, 'and': 5.0, 'to': 1.0, 'as': 1.0, 'received': 1.0, 'it': 3.0, 'this': 1.0, '30': 1.0, 'hands': 1.0, 'the': 7.0, 'say': 1.0, 'more': 1.0, 's': 1.0, 'a': 3.0, 't': 1.0, 'holes': 1.0, 'love': 1.0, 'just': 2.0, 'large': 1.0, 'even': 1.0, '40': 1.0, 'off': 1.0, 'aden': 1.0, 'now': 1.0, 'create': 2.0, 'hoping': 1.0, 'in': 2.0, 'marks': 1.0, 'swaddle': 3.0, 'did': 1.0, 'fabric': 1.0}
Word element => {'too': 1.0, 'size': 1.0, 'good': 1.0, 'soft': 1.0, 'if': 1.0, 'cute': 1.0, 'all': 1.0, 'care': 1.0, 'be': 1.0, 'the': 2.0, 't': 1.0, 'i': 2.0, 'one': 1.0, 'but': 1.0, 'doesn': 1.0, 'want': 1.0, 'probably': 1.0, 'am': 1.0, 'baby': 1.0, 'who': 1.0, 'to': 2.0, 'look': 1.0, 'at': 1.0, 'blankie': 1.0, 'it': 2.0, 'has': 1.0, 'time': 1.0, 'organic': 1.0, 'nice': 1.0}
Word element => {'baby': 1.0, 'care': 1.0, 'taking': 1.0, 'while': 1.0, 'gate': 1.0, 'airport': 1.0, 'that': 1.0, 'trying': 1.0, 'go': 1.0, 'packing': 1.0, 'things': 1.0, 'at': 2.0, 'duh': 1.0, 'good': 1.0, 'really': 2.0, 'usually': 1.0, 'm': 1.0, 'and': 1.0, 'get': 1.0, 'i': 3.0, 'tried': 1.0, 'the': 5.0, 'before': 1.0, 'it': 1.0, 'this': 1.0, 'bag': 1.0, 'trip': 2.0, 'a': 2.0, 'for': 1.0, 'needs': 1.0, 'in': 2.0, 'purchased': 1.0, 'to': 3.0, 'we': 1.0, 'back': 1.0, 'stroller': 2.0, 'put': 1.0, 'imagine': 1.0, 'impossible': 1.0, 'sets': 1.0, 'would': 1.0, 'plane': 1.0, 'need': 1.0, 'three': 1.0, 'of': 2.0, 'hands': 1.0}
Word element => {'big': 1.0, 'a': 1.0, 'as': 1.0, 'just': 1.0, 'description': 1.0, 'product': 1.0, 'the': 1.0, 'buy': 1.0, 'i': 4.0, 'it': 3.0, 'knew': 1.0, 'bag': 1.0, 't': 1.0, 'used': 1.0, 'they': 1.0, 'if': 1.0, 'wouldn': 1.0, 'wrote': 1.0, 'wish': 1.0, 'in': 1.0}
Word element => {'penny': 1.0, 'every': 1.0, 'worth': 1.0, 'i': 1.0, 'this': 1.0, 'with': 1.0, 'only': 1.0, 'wheels': 1.0, 'no': 1.0, 'southwest': 1.0, 'two': 1.0, 'removed': 1.0, 'bugaboo': 1.0, 'problems': 1.0, 'big': 1.0, 'protects': 1.0, 'but': 1.0, 'stroller': 2.0, 'put': 1.0, 'gate': 1.0, 'on': 1.0, 'is': 1.0, 'airlines': 1.0, 'really': 1.0, 'in': 2.0, 'bag': 3.0, 'youtube': 1.0, 'ones': 1.0, 'the': 5.0, 'fla': 1.0, 'great': 1.0, 'closer': 1.0, 'went': 1.0, 'had': 1.0, 'now': 1.0, 'look': 1.0, 'to': 3.0, 'and': 1.0, 'get': 1.0, 'check': 1.0, 'front': 1.0, 'a': 2.0, 'chameleon': 1.0, 'how': 1.0, 'did': 2.0, 'huge': 1.0, 'not': 1.0}
Word element => {'sure': 1.0, 'primary': 1.0, 'its': 1.0, 'end': 1.0, 'unwrapped': 1.0, 'amazement': 1.0, 'staff': 1.0, 'fast': 1.0, 'pro': 1.0, 'became': 1.0, 'last': 1.0, 'has': 1.0, 'much': 1.0, 'soooo': 1.0, 'ordeal': 1.0, 'actual': 1.0, 'security': 1.0, 'annoying': 1.0, 'fold': 1.0, 't': 1.0, 'don': 1.0, 'awkward': 2.0, 'reason': 1.0, 'flight': 1.0, 'footprint': 1.0, 'raincoat': 1.0, 'day': 1.0, 'gear': 1.0, 'safely': 1.0, 'away': 1.0, 'relieved': 1.0, 'pretty': 1.0, 'any': 1.0, 'wrapped': 1.0, 'chucking': 1.0, 'boarding': 1.0, 'being': 1.0, 'some': 1.0, 'protecting': 1.0, 'outside': 1.0, 'etc': 1.0, 'dust': 1.0, 'few': 1.0, 'looks': 2.0, 'may': 1.0, 'wheels': 2.0, 'donkey': 1.0, 'fantastic': 1.0, 'decision': 1.0, 'if': 4.0, 'bigger': 3.0, 'then': 1.0, 'only': 1.0, 'confirm': 1.0, 'really': 1.0, 'handle': 1.0, 'at': 2.0, 'look': 1.0, 'why': 1.0, 'very': 2.0, 'zipping': 1.0, 'secure': 1.0, 'off': 2.0, 'before': 2.0, 'manage': 1.0, 'attendant': 1.0, 'four': 1.0, 'job': 1.0, 'handlers': 1.0, 'reference': 1.0, 'but': 5.0, 'have': 1.0, 'suitcase': 1.0, 'that': 6.0, 'because': 3.0, 'not': 5.0, 'itself': 1.0, 'laid': 1.0, 'carry': 2.0, 'think': 4.0, 'definitely': 4.0, 'pack': 1.0, 'wonky': 1.0, 'on': 5.0, 'felt': 1.0, 'update': 1.0, 'your': 1.0, 'tucked': 1.0, 'upcoming': 1.0, 'baby': 3.0, 'big': 1.0, 'nice': 5.0, 'bad': 1.0, 'we': 5.0, 'adapter': 2.0, 'would': 2.0, 'so': 6.0, 'clips': 1.0, 'were': 1.0, 'frame': 1.0, 'now': 1.0, 'anticipated': 1.0, 'real': 1.0, 'comes': 2.0, 'wise': 1.0, 'rain': 3.0, 'd': 1.0, 'someone': 1.0, 'zipped': 1.0, 'lot': 2.0, 'walk': 1.0, 'too': 1.0, 'whole': 1.0, 'as': 4.0, 'way': 1.0, 'saw': 2.0, 'all': 11.0, 'an': 3.0, 'fits': 1.0, 'roller': 1.0, 'this': 7.0, 'with': 11.0, 'smooth': 1.0, 'recently': 1.0, 'protected': 3.0, 'along': 1.0, 'purchase': 2.0, 'for': 1.0, 'through': 1.0, 'belly': 1.0, 'into': 4.0, 'fabric': 2.0, 'plane': 3.0, 'stroller': 10.0, 'onto': 1.0, 'our': 6.0, 'take': 4.0, 'inside': 5.0, 'the': 57.0, 'bit': 1.0, 'than': 3.0, 'during': 2.0, 'out': 2.0, 'measuring': 1.0, 'huge': 2.0, 'folded': 4.0, 'you': 12.0, 'bag': 12.0, 'a': 14.0, 'giving': 1.0, 'had': 4.0, 'purchased': 1.0, 'what': 1.0, 'when': 9.0, 'exactly': 1.0, 'handling': 1.0, 'holding': 1.0, 'happy': 2.0, 'useful': 1.0, 'i': 30.0, 'zip': 1.0, 'clean': 1.0, 'put': 5.0, 'strap': 3.0, 'room': 2.0, 'my': 3.0, 'are': 4.0, 'holds': 1.0, 'size': 4.0, 'up': 13.0, 'just': 2.0, 'and': 26.0, 'trip': 4.0, 'again': 2.0, 'which': 3.0, 're': 2.0, 'know': 3.0, 'fit': 4.0, 'easy': 1.0, 'like': 5.0, 'thing': 6.0, 'retrieved': 1.0, 'tape': 1.0, 'about': 2.0, 'average': 1.0, 's': 7.0, 'm': 1.0, 'extra': 2.0, 'tad': 1.0, 'trying': 2.0, 'perfectly': 2.0, 'there': 1.0, 'both': 2.0, 'travel': 4.0, 'cover': 2.0, 'will': 6.0, 'airplane': 1.0, 'test': 2.0, 'actually': 1.0, 'especially': 1.0, 'use': 3.0, 'attachment': 1.0, 'decided': 1.0, 'get': 2.0, 'vs': 2.0, 'watched': 1.0, 'expecting': 1.0, 'wrangle': 1.0, 'got': 1.0, 'one': 1.0, 'goal': 1.0, '5': 2.0, 'is': 14.0, 'can': 3.0, 'compact': 1.0, 'need': 2.0, 'also': 3.0, 'it': 36.0, 'be': 4.0, 'lugging': 1.0, 'more': 1.0, 'was': 6.0, 'to': 14.0, 'right': 2.0, 'seems': 3.0, 'true': 2.0, 'bugaboo': 1.0, 'marks': 1.0, 'strollers': 3.0, 'am': 5.0, 'shoulder': 2.0, 'them': 1.0, 'everything': 2.0, 'leg': 1.0, 'around': 1.0, 'nicely': 1.0, 'straps': 1.0, 'ridiculous': 1.0, 'seem': 1.0, 'durable': 1.0, 'kind': 2.0, 'did': 2.0, 'time': 2.0, 'in': 11.0, 'main': 1.0, 'gate': 3.0, 'quite': 1.0, 'operation': 1.0, 'pain': 1.0, 'bee': 2.0, 'manageable': 1.0, 'traveling': 1.0, 'by': 2.0, 'happen': 1.0, 'ie': 1.0, 'packing': 1.0, 'recommend': 1.0, 'having': 1.0, 'hold': 1.0, 'ours': 1.0, 'hard': 1.0, 'keeping': 1.0, 'yourself': 1.0, 'graco': 3.0, 'garment': 1.0, 'airline': 2.0, 've': 1.0, 'while': 1.0, 'go': 1.0, '4': 1.0, 'stars': 3.0, 'of': 9.0, 'even': 3.0, 'expected': 1.0, 'back': 1.0, 'from': 1.0, 'wrote': 1.0, 'review': 1.0, 'loaded': 1.0, 'keep': 1.0}
Word element => {'charge': 1.0, 'not': 1.0, 'took': 1.0, 'trip': 1.0, 'airline': 1.0, 'the': 4.0, 'thanksgiving': 1.0, 'one': 1.0, 'able': 1.0, 'at': 1.0, 'i': 2.0, 'two': 1.0, 'things': 1.0, 'southwest': 1.0, 'was': 3.0, 'to': 1.0, 'get': 1.0, 'and': 3.0, 'couple': 1.0, 'that': 1.0, 'you': 1.0, 'is': 1.0, 'around': 1.0, 'roll': 1.0, 'for': 2.0, 'fit': 1.0, 'great': 2.0, '1': 1.0, 'big': 1.0, 'year': 1.0, 'it': 3.0, 'this': 3.0, 'with': 1.0, 'but': 1.0, 'can': 1.0, 'bag': 2.0, 'little': 1.0, '3': 1.0, 't': 1.0, 's': 1.0, 'a': 2.0, 'good': 1.0, 'my': 1.0, 'purchase': 1.0, 'bugaboo': 1.0, 'donkey': 1.0, 'of': 1.0, 'other': 1.0, 'did': 1.0}
Word element => {'came': 1.0, 'pad': 1.0, 'upon': 1.0, 'huge': 1.0, 'overall': 1.0, 'his': 2.0, 'through': 1.0, 'get': 1.0, 'construction': 1.0, 'better': 1.0, 'comfort': 1.0, 'sleeping': 1.0, 'say': 1.0, 'definately': 1.0, 'top': 2.0, 'quilt': 1.0, 'placing': 2.0, 'up': 1.0, 'woke': 1.0, 'he': 1.0, 'nights': 2.0, 'now': 2.0, 'week': 1.0, 'nearly': 1.0, 'for': 1.0, 'commenter': 1.0, 'previous': 1.0, 'm': 1.0, 'in': 6.0, 'firm': 1.0, 'it': 1.0, 'were': 1.0, 'full': 1.0, 'mattress': 12.0, 'few': 1.0, 'this': 6.0, 'there': 1.0, 'on': 4.0, 'impressed': 1.0, 'portable': 2.0, 'measured': 1.0, 'as': 2.0, 'fixed': 1.0, 'length': 1.0, 'to': 2.0, 'like': 1.0, 'with': 3.0, 'width': 1.0, 'box': 1.0, 'that': 4.0, 'tag': 1.0, 'when': 2.0, 'barely': 1.0, 'opened': 1.0, 'can': 1.0, 'dimensions': 1.0, 'however': 2.0, 'packaged': 1.0, 'not': 1.0, 'solved': 1.0, 'wrong': 1.0, 'couldn': 1.0, 'flimsy': 1.0, 'online': 1.0, 'overheating': 1.0, 'and': 9.0, 'gave': 1.0, 'green': 1.0, 'purchase': 1.0, 'quickly': 1.0, 'arrived': 2.0, 'white': 1.0, 'sized': 1.0, 'received': 1.0, 'confident': 1.0, 'a': 7.0, 'has': 2.0, 'longer': 1.0, 'of': 8.0, 'the': 25.0, 'sweat': 1.0, 'tell': 1.0, 'slightly': 1.0, 'improvement': 1.0, 'incorrect': 1.0, 'size': 1.0, 'crib': 3.0, 'gaps': 1.0, 'hieght': 1.0, 'worried': 1.0, 'by': 2.0, 'was': 4.0, 'had': 1.0, 'advertised': 1.0, 'correct': 1.0, 'either': 1.0, 'purchased': 1.0, 'our': 1.0, 'item': 1.0, 'well': 3.0, 'slept': 1.0, 'i': 12.0, 'then': 1.0, 'difference': 1.0, 'firmness': 1.0, 'both': 1.0, 's': 2.0, 'sides': 1.0, 'folded': 1.0, 'available': 1.0, 'quit': 1.0, 'first': 1.0, 'are': 2.0, 'nice': 1.0, 't': 1.0, 'fit': 2.0, 'is': 2.0, 'snug': 1.0, 'my': 6.0, 'no': 1.0, 'or': 1.0, 'sheets': 1.0, 'son': 6.0, 'height': 1.0, 'from': 1.0, 'been': 1.0, 'amazon': 1.0, 'these': 1.0, 'due': 1.0, 'own': 1.0, 'off': 1.0, 'side': 1.0, 'bulges': 1.0, 'plan': 1.0, 'bedding': 1.0, 'fixing': 1.0, 'singer': 1.0, 'issue': 3.0, 'making': 1.0, 'happy': 1.0, 'lot': 1.0, 'corners': 1.0, 'squared': 1.0, 'tutorials': 1.0}
Word element => {'months': 1.0, '3': 1.0, 'from': 1.0, 'range': 1.0, 'bought': 1.0, 'my': 1.0, 'up': 1.0, 'any': 1.0, 'and': 2.0, 'stroller': 1.0, 'great': 1.0, 'it': 2.0, 'loves': 1.0, 'awesome': 1.0, 'for': 2.0, 'age': 1.0, 'nephew': 1.0, 'he': 1.0}
Word element => {'deserved': 1.0, 'memory': 1.0, 'on': 1.0, 'joints': 1.0, 'their': 1.0, 'better': 1.0, 'comfy': 1.0, 'floors': 1.0, 'heat': 1.0, 'foam': 2.0, 'keeps': 1.0, 'it': 1.0, 'elevated': 1.0, 'cleaner': 1.0, 'were': 1.0, 'that': 2.0, 'awesome': 1.0, 'beds': 1.0, 'of': 1.0, 'was': 1.0, 'them': 1.0, 'tired': 1.0, 'wipe': 1.0, 'paying': 1.0, 'purchased': 1.0, '128522': 1.0, 'dogs': 2.0, 'dog': 1.0, 'hard': 1.0, 'with': 2.0, 'are': 1.0, 'my': 3.0, 'kids': 1.0, 'this': 3.0, 'mattress': 2.0, 'for': 3.0, 'bed': 2.0, 'two': 1.0, 'i': 3.0, 'they': 2.0, 'too': 1.0, 'and': 4.0, 'pricey': 1.0, 'spray': 1.0, 'good': 1.0, 'clean': 1.0, 'so': 1.0, 'sheet': 1.0, 'how': 1.0, 'great': 1.0, 'the': 1.0, 'is': 2.0, 'a': 2.0, 'sleep': 1.0, 'our': 1.0, 'to': 2.0, 'actual': 1.0, 'thats': 1.0, 'cover': 1.0, 'off': 3.0, 'easy': 1.0, 'radiant': 1.0, 'crib': 1.0, 'whip': 1.0, 'wash': 1.0, 'remake': 1.0, 'can': 1.0}
Word element => {'comfortably': 1.0, 'my': 1.0, 'on': 1.0, 'new': 1.0, 'likes': 1.0, 'is': 1.0, 'really': 1.0, 'son': 1.0, 'sleeping': 1.0, 'firm': 1.0, 'thought': 1.0, 'but': 1.0, 'mattress': 1.0, 'i': 2.0, 'd': 1.0, 'hate': 1.0, 'it': 3.0, 'he': 2.0, 'wouldn': 1.0, 'the': 1.0, 't': 1.0, 'sooo': 1.0, 'like': 1.0, 'sleeps': 1.0}
Word element => {'helps': 1.0, 'sheets': 1.0, 'have': 1.0, 'top': 1.0, 'problem': 1.0, 'i': 2.0, 'hope': 1.0, 'by': 2.0, 'putting': 1.0, 'lowest': 1.0, 'only': 1.0, 'its': 1.0, 'to': 3.0, 'set': 1.0, 'head': 1.0, 'at': 1.0, 'bit': 1.0, 'so': 1.0, 'penny': 1.0, 'every': 1.0, 'now': 1.0, 'thin': 1.0, 'side': 1.0, 'comfortable': 1.0, '1': 1.0, 'me': 3.0, 'and': 3.0, 'when': 2.0, 'you': 1.0, 'stationary': 1.0, 'the': 12.0, 'but': 1.0, '2': 1.0, 'their': 1.0, 'should': 1.0, 'joke': 1.0, 'that': 5.0, 'came': 1.0, 'although': 1.0, 'extremely': 1.0, 'leaving': 1.0, 'note': 1.0, 'espresso': 1.0, 'foot': 1.0, 'pad': 2.0, 'folding': 1.0, 'with': 2.0, 'mattress': 6.0, 'this': 3.0, 'solved': 1.0, 'it': 3.0, 'is': 5.0, 'more': 1.0, 'comes': 1.0, 'was': 1.0, 'gaps': 1.0, 'portable': 2.0, 'on': 4.0, 'setting': 1.0, 'support': 1.0, 'ton': 1.0, 'slightly': 1.0, 'crib': 7.0, 'itself': 1.0, 'in': 3.0, 'board': 1.0, 'provides': 1.0, 'worth': 1.0, 'no': 2.0, 'fit': 1.0, 'expensive': 1.0, 'for': 1.0, 'baby': 2.0, 'bought': 1.0, 'base': 1.0, 'after': 1.0, 'reading': 1.0, 'gap': 1.0, 'of': 4.0, 'reviews': 1.0, 'a': 4.0, 's': 2.0, 'find': 1.0, 'dream': 3.0, 'than': 1.0, 'other': 1.0, 'little': 1.0, 'mattresses': 1.0}
Word element => {'and': 1.0, 'perfectly': 1.0, 'crib': 1.0, 'mini': 1.0, 'light': 1.0, 'the': 1.0, 'fits': 1.0}
Word element => {'price': 1.0, 'cannot': 1.0, 'product': 1.0, 'we': 3.0, 'this': 1.0, 'beat': 1.0, 'it': 1.0, 'needed': 1.0, 'like': 1.0, 'and': 1.0, 'will': 1.0, 'the': 1.0, 'more': 1.0, 'you': 1.0, 'buy': 1.0, 'when': 1.0, 'recommend': 1.0}
Word element => {'sleep': 1.0, 'like': 1.0, 'not': 1.0, 'of': 1.0, 'stay': 2.0, 'would': 1.0, 'on': 1.0, 'months': 1.0, 'about': 2.0, 'for': 1.0, 'away': 1.0, 'matter': 1.0, 'do': 1.0, 'sags': 1.0, '2': 1.0, 'is': 1.0, 'to': 1.0, 'now': 1.0, 'owning': 1.0, 'child': 2.0, 'after': 1.0, 'it': 1.0, 'this': 3.0, 'only': 1.0, 'as': 1.0, '14lbs': 1.0, 'no': 1.0, 'does': 1.0, 'mattress': 2.0, 'what': 1.0, 'bs': 1.0, 'you': 1.0, 'my': 2.0, 'clear': 1.0, 'i': 1.0}
Word element => {'fitted': 1.0, 'deep': 1.0, '5': 1.0, 'actually': 1.0, 'sheets': 1.0, 'you': 1.0, 's': 1.0, 'mini': 1.0, 'my': 1.0, 'make': 1.0, 'me': 1.0, 'fits': 1.0, 'isnt': 1.0, 'on': 1.0, 'comfortable': 1.0, 'that': 1.0, 'crib': 1.0, 'perfect': 1.0, 'in': 1.0, 'sure': 1.0, 'dream': 1.0, 'its': 1.0, 'buy': 1.0, 'i': 1.0, 'bad': 1.0, 'feel': 1.0, 'toddler': 1.0, 'mattress': 1.0, 'nice': 1.0, 'as': 1.0}
Word element => {'which': 1.0, '34': 1.0, '5': 1.0, 'on': 1.0, 'dream': 1.0, 'got': 1.0, 'dangerously': 1.0, 'baby': 1.0, 'with': 1.0, 'was': 3.0, 'to': 1.0, 'sides': 1.0, 'foam': 1.0, 'never': 1.0, 'corners': 1.0, 'the': 5.0, 'against': 1.0, 'much': 2.0, 'used': 1.0, 'grayson': 1.0, 'snug': 1.0, 'two': 1.0, 'etc': 1.0, 'i': 1.0, 'hence': 1.0, 'through': 1.0, 'soft': 2.0, 'mattress': 3.0, 'this': 2.0, 'it': 5.0, 'older': 1.0, 'perfectly': 1.0, 'incredibly': 1.0, 'babyletto': 1.0, 'stars': 1.0, 'fit': 1.0, 'for': 1.0, 'bought': 1.0, 'one': 1.0, 'crib': 2.0, 'me': 1.0, 'give': 1.0, 'and': 3.0, 'too': 2.0, 'compared': 1.0, 'my': 1.0, 'springs': 1.0, 'son': 1.0, 'we': 3.0, 'a': 2.0, 's': 1.0, 'way': 1.0, 'you': 1.0, 'instead': 1.0, 'there': 1.0, 'in': 1.0, 'firm': 1.0, 'but': 1.0, 'can': 1.0, 'seemed': 1.0, 'feel': 1.0, 'coils': 1.0}
Word element => {'difference': 1.0, 'others': 1.0, 'm': 1.0, 'just': 1.0, 'sensitive': 1.0, '5': 1.0, 'firmness': 1.0, 'still': 1.0, 'vs': 1.0, 'side': 3.0, 'which': 1.0, 'tell': 1.0, 'honestly': 1.0, 'hours': 1.0, 'would': 1.0, 'he': 1.0, 'now': 1.0, 'able': 2.0, 'baby': 1.0, 'old': 1.0, 'stars': 1.0, 'supposed': 1.0, 'for': 1.0, 'product': 1.0, 'with': 2.0, 'sides': 2.0, 'month': 1.0, 'it': 4.0, 'soft': 1.0, 'mattress': 1.0, 'this': 2.0, 'in': 1.0, 'regular': 1.0, 'comes': 1.0, 'is': 1.0, 'since': 1.0, 'might': 1.0, 'a': 1.0, 'leaving': 1.0, 'on': 4.0, 'gaps': 1.0, 'graco': 2.0, 'am': 1.0, 'you': 1.0, 'when': 1.0, 'asleep': 1.0, 'without': 1.0, 'the': 11.0, 'fits': 1.0, 'my': 2.0, 'push': 1.0, 'top': 1.0, 'reaches': 1.0, 'one': 1.0, 'pack': 3.0, 'play': 3.0, 'has': 1.0, 'well': 1.0, 'expected': 1.0, 'net': 1.0, 'because': 2.0, 'sized': 1.0, 'does': 1.0, 'of': 2.0, 'there': 1.0, 'part': 1.0, 'understand': 1.0, 'will': 1.0, 'firm': 1.0, 'but': 3.0, 'be': 4.0, 'little': 1.0, 'gave': 1.0, 'been': 1.0, 'that': 3.0, '4': 1.0, 'i': 4.0, 'n': 3.0, 'xl': 1.0, 'additions': 1.0, 'give': 1.0, 'not': 4.0, 'was': 1.0, 'recommend': 1.0, 'sleep': 1.0, 'any': 2.0, 'as': 4.0, 'to': 5.0, 'mat': 2.0}
Word element => {'guys': 1.0, 'you': 1.0, 'for': 1.0, 'thank': 1.0, 'better': 1.0, 'a': 1.0, 'sleeping': 1.0, 'i': 1.0, 'also': 1.0, 'just': 1.0, 'it': 2.0, 'love': 1.0, 'is': 2.0, 'since': 1.0, 'my': 1.0, 'lot': 1.0, 'loving': 1.0, 'baby': 1.0, 'she': 1.0}
Word element => {'great': 1.0, 'fits': 1.0}
Word element => {'trick': 1.0, 'just': 1.0, 'powder': 1.0, 'baby': 1.0, 'does': 1.0, 'works': 1.0, 'kinda': 1.0, 'some': 1.0, 'this': 2.0, 'doesn': 1.0, 'but': 2.0, 'silly': 1.0, 'name': 1.0, 'i': 2.0, 'when': 1.0, 's': 1.0, 'regular': 1.0, 'stuff': 2.0, 'really': 1.0, 'amazon': 1.0, 't': 1.0, 'the': 2.0, 'find': 1.0, 'ran': 1.0, 'to': 1.0, 'was': 1.0, 'do': 1.0, 'god': 1.0, 'scrambling': 1.0, 'out': 1.0, 'thank': 1.0, 'for': 1.0}
Word element => {'efficient': 1.0, 'not': 1.0, 'powder': 1.0, 'through': 1.0, 'cloud': 1.0, 'backing': 1.0, 'instructions': 1.0, 'follow': 1.0, 'by': 1.0, 'swears': 1.0, 'was': 1.0, 'now': 1.0, 'to': 1.0, 'ride': 1.0, 'can': 1.0, 'very': 1.0, 'as': 1.0, 'for': 1.0, 'in': 2.0, 'of': 1.0, '34': 2.0, 'there': 1.0, 'motorcycles': 1.0, 'a': 3.0, 'who': 1.0, 'out': 1.0, 'though': 1.0, 'person': 1.0, 'some': 1.0, 'florida': 1.0, 'use': 1.0, 'got': 1.0, 'problem': 1.0, 'these': 1.0, 'the': 1.0, 'summer': 1.0, 'friends': 1.0, 'be': 1.0, 'it': 2.0, 'first': 1.0, 'joke': 1.0, 'turns': 1.0}
Word element => {'hottest': 1.0, 'the': 1.0, 'even': 1.0, 'chafing': 1.0, 'prevents': 1.0, 'absorbs': 1.0, 'really': 1.0, 'been': 1.0, 'days': 1.0, 'using': 1.0, 'have': 1.0, 'this': 1.0, 'product': 1.0, 'on': 1.0, '2': 1.0, 'over': 1.0, 'for': 1.0, 'years': 1.0, 'and': 3.0, 'works': 1.0, 'it': 1.0}
Word element => {'long': 1.0, 'on': 1.0, 'a': 2.0, 'ride': 1.0, 'it': 1.0, 'works': 1.0, 'great': 1.0, 'especially': 1.0, 'harley': 1.0, 'saddle': 1.0, 'when': 1.0, 'you': 1.0, 'are': 1.0, 'the': 1.0, 'in': 1.0, 'of': 1.0}
Word element => {'lasts': 1.0, 'well': 2.0, 'on': 1.0, 'too': 1.0, 'regular': 1.0, 'have': 1.0, 'loves': 1.0, 'i': 1.0, 'powder': 2.0, 'and': 2.0, 'my': 1.0, 'now': 1.0, 'husband': 1.0, 'buying': 1.0, 'this': 1.0, 'it': 1.0, 'way': 1.0, 'his': 1.0, 'friction': 1.0, 'better': 1.0, 'for': 1.0, 'than': 1.0, 'dad': 1.0, 'baby': 1.0, 'goes': 1.0}
Word element => {'the': 1.0, 'introduce': 1.0, 'sweetie': 1.0, 'never': 1.0, 'books': 1.0, 'slobbering': 1.0, 'pleasures': 1.0, 'handling': 1.0, 'readings': 1.0, 'from': 1.0, 'use': 1.0, 'of': 2.0, 'get': 1.0, 'what': 1.0, 'early': 1.0, 'just': 1.0, 'but': 1.0, 'my': 2.0, 'll': 1.0, 'bought': 1.0, 'plenty': 1.0, 's': 1.0, 'this': 1.0, 'it': 3.0, 'sure': 1.0, 'i': 3.0, 'for': 1.0, 'young': 1.0, 'she': 1.0, 'still': 1.0, 'much': 1.0, 'wanted': 1.0, 'granddaughter': 1.0, 'to': 3.0, 'is': 1.0, 'appreciate': 1.0, 'too': 2.0, 'm': 1.0}
Word element => {'keep': 1.0, 'easy': 1.0, 'while': 1.0, 'quite': 1.0, 'clean': 1.0, 'last': 1.0, 'sturdy': 1.0, 'do': 1.0, 'away': 1.0, 'push': 1.0, 'child': 1.0, 'batteries': 1.0, 'little': 1.0, 'spread': 1.0, 'they': 1.0, 'no': 1.0, 'spring': 2.0, 'keeper': 1.0, 'this': 3.0, 'it': 4.0, '8217': 1.0, 'has': 1.0, 'toy': 2.0, 'dogs': 1.0, 'all': 1.0, 'to': 3.0, 'is': 3.0, 'powered': 1.0, 'the': 5.0, 'yes': 1.0, 'ones': 1.0, 'great': 1.0, 'for': 1.0, 'love': 1.0, 'a': 3.0, 's': 2.0, 'down': 1.0, 'on': 1.0, 'back': 1.0, 'feet': 1.0, 'apart': 1.0, 'hand': 1.0, 'which': 1.0, 'loads': 1.0, 'when': 1.0, 'pretty': 1.0, 'take': 1.0, 'should': 1.0, 'their': 1.0, 'off': 1.0, 'goes': 1.0, 'i': 1.0, 'simple': 1.0, 'toys': 1.0, 'appears': 1.0, 'be': 1.0}
Word element => {'breaking': 1.0, 'before': 1.0, 'room': 1.0, 'across': 1.0, 'thrown': 1.0, 'probably': 1.0, 'thin': 1.0, 'body': 1.0, 'loosely': 1.0, 'wheel': 1.0, 'toddler': 1.0, 'work': 1.0, 'hard': 1.0, 'open': 1.0, 'force': 1.0, 'bit': 1.0, 'powered': 1.0, 'caught': 1.0, 'fingers': 1.0, 'press': 1.0, 'no': 1.0, 't': 1.0, 'fit': 2.0, 'pieces': 1.0, 'free': 1.0, 'seconds': 1.0, 'picked': 1.0, '15': 1.0, 'continue': 1.0, 'or': 2.0, 'markings': 1.0, '2': 1.0, 'can': 2.0, 'carper': 1.0, 'spots': 1.0, 'top': 1.0, 'back': 3.0, 'between': 1.0, 'tail': 1.0, 'may': 1.0, 'nose': 1.0, 'rattle': 1.0, 'object': 1.0, 'a': 8.0, 'small': 3.0, 'its': 1.0, 'eyes': 1.0, 'this': 1.0, 'protrusions': 1.0, 'many': 1.0, 'raised': 1.0, 'rear': 1.0, 'too': 2.0, 'one': 1.0, 'young': 1.0, 'that': 3.0, 'wall': 1.0, 'crafted': 1.0, 'legs': 1.0, '5': 2.0, 'ear': 1.0, 's': 3.0, 'maybe': 1.0, 'spring': 1.0, 'inches': 2.0, 'single': 1.0, 'tall': 1.0, 'surfaces': 1.0, 'and': 10.0, 'pedestal': 2.0, 'front': 5.0, 'is': 5.0, 'door': 1.0, 'more': 1.0, 'smaller': 1.0, 'simply': 1.0, 'push': 1.0, 'are': 4.0, 'takes': 1.0, 'up': 2.0, '7': 1.0, 'spreading': 1.0, 'plastic': 4.0, 'depicting': 1.0, 'shape': 1.0, '1': 1.0, 'abstract': 1.0, 'with': 2.0, 'it': 5.0, 'in': 6.0, 'other': 2.0, 'an': 1.0, 'about': 4.0, 'dog': 3.0, 'plastics': 1.0, 'wheels': 9.0, 'rubbery': 1.0, 'piece': 2.0, 'together': 2.0, 'air': 1.0, 'unloads': 1.0, 'axles': 1.0, 'hold': 1.0, 'decorated': 1.0, 'larger': 1.0, 'there': 1.0, 'times': 1.0, 'middle': 2.0, 'they': 1.0, 'hinge': 4.0, 'ground': 1.0, 'bottom': 1.0, 'down': 2.0, 'depict': 1.0, 'the': 29.0, 'of': 3.0, 'toy': 7.0, 'when': 6.0, 'causing': 1.0, 'four': 1.0, 'opened': 2.0, 'screwed': 1.0, 'by': 2.0, 'well': 2.0, 'feet': 3.0, 'than': 1.0, 'apart': 1.0, 'shag': 1.0, 'for': 3.0, '10': 1.0, 'bumped': 1.0, 'load': 1.0, 'made': 1.0, 'good': 1.0, 'against': 1.0, 'to': 4.0, 'be': 4.0, 'toys': 1.0, 'pressing': 1.0, 'spin': 3.0, 'works': 1.0, 'travel': 1.0, 'will': 3.0, 'long': 1.0, 'on': 5.0, 'linoleum': 1.0}
Word element => {'worth': 1.0, 'overall': 1.0, 'times': 1.0, 'good': 1.0, 'themselves': 1.0, 'way': 1.0, 'sharp': 1.0, 'are': 1.0, 'there': 1.0, 'one': 1.0, 'occurred': 1.0, 'no': 3.0, 'thrown': 1.0, 'durable': 1.0, 'quite': 1.0, 'hard': 1.0, 'of': 3.0, 'made': 1.0, 'although': 1.0, 'hold': 1.0, 'price': 1.0, '34': 6.0, 'top': 1.0, 'winds': 1.0, 'toddler': 2.0, 'will': 1.0, 'finer': 1.0, 'deal': 1.0, 'the': 5.0, 'great': 2.0, 'just': 1.0, 'use': 1.0, 'then': 1.0, 'easy': 3.0, 'plastic': 1.0, 'he': 1.0, 'on': 1.0, 'is': 5.0, 'down': 1.0, 'edges': 1.0, 'his': 1.0, 'press': 1.0, 'simple': 1.0, 'runs': 1.0, 'to': 3.0, 'damage': 1.0, 'up': 1.0, 'developing': 1.0, 'well': 1.0, 'has': 2.0, 'toy': 2.0, 'skills': 1.0, 'dog': 1.0, 'for': 3.0, 'a': 5.0, 's': 2.0, 'number': 1.0, 'delighted': 1.0, 'across': 1.0, 'and': 5.0, 'away': 1.0, 'little': 1.0, 'very': 1.0, 'run': 1.0, 'room': 1.0, 'each': 1.0, 'injure': 1.0, 'this': 1.0, 'perfect': 1.0, 'purchase': 1.0, 'my': 2.0, 'who': 1.0, 'son': 1.0, 'still': 1.0, 'it': 5.0, 'truly': 1.0, 'cute': 1.0, 'motor': 1.0, 'time': 2.0}
Word element => {'children': 1.0, 'way': 1.0, 'either': 1.0, 'so': 1.0, 'bright': 1.0, 'able': 1.0, 'be': 1.0, 'not': 1.0, 'may': 1.0, 'small': 1.0, 'most': 1.0, 'but': 1.0, 'then': 1.0, 'child': 2.0, 'you': 1.0, 'if': 1.0, 'will': 1.0, 'seems': 1.0, 'low': 1.0, 'action': 1.0, 'and': 3.0, 'edges': 1.0, 'get': 2.0, 'hard': 1.0, 'durable': 1.0, 'with': 2.0, 'well': 2.0, 'toy': 3.0, 'to': 3.0, 'carpet': 1.0, 'cute': 1.0, 'your': 1.0, 'on': 1.0, 'really': 2.0, 'it': 8.0, 'colorful': 2.0, 'looks': 1.0, 'wood': 1.0, 'puppy': 1.0, 'manhattan': 1.0, 'playing': 1.0, 'the': 1.0, 'are': 1.0, 'push': 3.0, 'fingers': 1.0, 'pile': 1.0, 'spring': 1.0, 'problem': 1.0, 'made': 1.0, 'no': 1.0, 'some': 1.0, 'its': 1.0, 'works': 1.0, 'only': 1.0, 'sharp': 1.0, 'or': 1.0, 'alone': 1.0, 'places': 1.0, 'love': 1.0, 'where': 1.0, 'little': 1.0, 'a': 3.0, 'go': 1.0, 'going': 1.0, 'could': 1.0, 'is': 3.0, 'caught': 1.0, 'fine': 1.0, 'takes': 1.0, 'down': 2.0, 'effort': 1.0}
Word element => {'time': 1.0, 'quite': 1.0, 'hold': 1.0, 'little': 1.0, 'great': 1.0, 'all': 2.0, 'with': 1.0, 'want': 1.0, 'granted': 1.0, 'anything': 1.0, 'motor': 1.0, 'toddlers': 1.0, 'not': 1.0, 'forward': 2.0, 'some': 1.0, 'fraction': 1.0, 'reminded': 1.0, 'skills': 1.0, 'got': 1.0, 'even': 1.0, 'go': 1.0, 'we': 2.0, 't': 2.0, 'is': 2.0, 'help': 1.0, 'make': 2.0, 'your': 2.0, 'center': 2.0, 'to': 9.0, 'as': 2.0, 'interest': 1.0, 'perfect': 1.0, 'this': 3.0, 'freely': 1.0, 'in': 2.0, 'down': 2.0, 'one': 1.0, 'for': 3.0, 'had': 1.0, 'on': 3.0, 'chewers': 1.0, 'won': 1.0, 'grandson': 1.0, 'you': 3.0, 'push': 3.0, 'fact': 1.0, 'children': 1.0, 'it': 11.0, 'doing': 1.0, 'the': 9.0, 'of': 6.0, 'larger': 1.0, 'required': 1.0, 'inch': 1.0, 'due': 1.0, 'simple': 1.0, 'rider': 1.0, 'albeit': 1.0, 'develop': 1.0, 'because': 1.0, 'young': 1.0, 'that': 4.0, 'have': 2.0, 'a': 4.0, 'small': 1.0, 'what': 1.0, 'when': 1.0, 'roll': 2.0, 'its': 2.0, 'own': 1.0, 'by': 1.0, 's': 4.0, 'giving': 1.0, 'nudge': 1.0, 'doesn': 1.0, 'toy': 5.0, 'move': 1.0, 'super': 1.0, 'retrieve': 1.0, 'my': 1.0, 'me': 1.0, 'nose': 1.0, 'well': 2.0, 'i': 1.0, 'fast': 1.0, 'can': 3.0, 'so': 2.0, 'toddler': 2.0, 'quickly': 1.0, 'crawlers': 1.0, 'cute': 1.0, 'design': 1.0, 'made': 2.0, 'riders': 1.0, 'work': 1.0, 'hard': 1.0, 'haha': 1.0, 'plastic': 1.0, 'enough': 2.0, 'and': 2.0, 'get': 1.0, 'swallowing': 1.0, 'size': 1.0, 'tired': 1.0, 'them': 2.0, 'pushing': 1.0, 'decide': 1.0, 'gnaw': 1.0, 'or': 1.0, 'wheels': 1.0, 'worry': 1.0, 'about': 1.0}
Word element => {'though': 1.0, 'made': 1.0, 'well': 1.0, 'be': 1.0, 'seems': 1.0, 'yet': 1.0, 'himself': 1.0, 'can': 1.0, 'us': 1.0, 'enjoys': 1.0, 'own': 1.0, 'old': 1.0, 'to': 2.0, 'month': 1.0, 'cute': 1.0, 'push': 1.0, 'quite': 2.0, 'but': 2.0, 'playing': 1.0, 'our': 1.0, 'with': 1.0, 'he': 2.0, 'it': 3.0, 'moving': 1.0, 'is': 1.0, '12': 1.0, 'on': 1.0, 'sturdy': 1.0, 'not': 1.0, 'strong': 1.0, 'do': 1.0, 'and': 2.0, 'get': 1.0, 'enough': 1.0, 't': 1.0, 'the': 1.0, 'action': 1.0, 'down': 1.0, 'his': 1.0}
Word element => {'option': 1.0, 'doesn': 1.0, 'eventually': 1.0, 'since': 1.0, '13': 1.0, 'keep': 1.0, 'always': 1.0, 'tries': 2.0, 'moving': 1.0, 'so': 1.0, 'and': 8.0, 'similar': 1.0, 'just': 1.0, 'not': 3.0, 'is': 4.0, 'more': 1.0, 'are': 1.0, 'effort': 1.0, '8': 1.0, 'old': 1.0, '10': 1.0, 'our': 1.0, 'keeps': 1.0, 'any': 1.0, 'him': 2.0, 'it': 7.0, 'hard': 1.0, 'this': 1.0, 'loves': 1.0, 'other': 1.0, 'reasons': 1.0, 'too': 3.0, 'one': 1.0, 'needed': 1.0, 'hands': 1.0, 'the': 3.0, 'easy': 2.0, 'months': 1.0, 'get': 1.0, 'son': 1.0, 'being': 1.0, 'very': 1.0, 'toy': 1.0, 'toys': 1.0, 'than': 1.0, 'engaged': 1.0, 'in': 5.0, 'motivation': 1.0, 'interest': 1.0, 'walking': 1.0, 'around': 1.0, 'his': 2.0, 'frictionless': 1.0, 't': 1.0, 'as': 2.0, 'leave': 1.0, 'after': 1.0, '2': 1.0, 'but': 1.0, '3': 1.0, 'make': 1.0, 'goes': 3.0, 'to': 4.0, 'pretty': 1.0, 'well': 1.0, 'fast': 2.0, 'thus': 1.0, 'generating': 1.0, 'hold': 1.0, 'like': 1.0, 'ft': 1.0, 'mind': 1.0, 'crawling': 1.0, 'colors': 1.0, 'bright': 1.0, 'there': 1.0, 'catchy': 1.0, 'encourages': 1.0, 'will': 2.0, 'a': 2.0, 'promotes': 1.0, 'able': 1.0, 'push': 4.0, 'motion': 1.0, 'or': 1.0, 'skills': 1.0, 'he': 4.0, 'far': 1.0, 'otherwise': 1.0, 'distracted': 1.0, 'something': 1.0, 'else': 1.0, 'overall': 1.0, 'gift': 1.0, 'good': 1.0, 'grip': 1.0, 'movement': 1.0, 'value': 1.0, 'little': 3.0, 'nice': 1.0}
Word element => {'fun': 1.0, 'a': 1.0, 'the': 1.0, 'spend': 1.0, 'would': 1.0, 'i': 1.0, 'said': 1.0, '10': 1.0, 'being': 1.0, 'fingers': 1.0, 'pinch': 1.0, 'area': 1.0, 'there': 1.0, 'forever': 1.0, 'works': 1.0, 'down': 1.0, '8': 1.0, 'role': 1.0, 'feet': 1.0, 'more': 1.0, 'is': 3.0, 'when': 1.0, 'daughter': 1.0, 'little': 3.0, 'he': 2.0, 'not': 1.0, 'those': 1.0, 'puppy': 1.0, 'back': 1.0, 'yeah': 1.0, 'on': 2.0, 'this': 1.0, 'activated': 1.0, 'carpet': 1.0, 'spring': 1.0, 'so': 1.0, 'to': 3.0, 'as': 1.0, 'my': 1.0, 'enjoys': 1.0, 'it': 3.0, 'she': 1.0, 'last': 1.0, 'toy': 1.0, 'well': 2.0, 'has': 1.0, 'about': 1.0, 'pressed': 1.0, 'no': 2.0, 'gone': 1.0, 'of': 1.0, 'repeatedly': 1.0, 'also': 1.0, 'batteries': 1.0, 'will': 1.0, 'seems': 1.0, 'made': 1.0, 'and': 1.0, 'should': 1.0, 'him': 2.0, 'be': 1.0, 'one': 1.0, 'simple': 2.0, 'toys': 1.0, 'that': 2.0}
Word element => {'everyone': 1.0, 'cheered': 1.0, 'push': 1.0, 'i': 2.0, 'down': 1.0, 'time': 1.0, 'for': 1.0, 'in': 3.0, 'grandson': 2.0, 'this': 2.0, 'he': 1.0, 'it': 2.0, 'laughs': 1.0, 'seems': 1.0, 'item': 2.0, 'is': 3.0, 'his': 1.0, 'sturdy': 1.0, 'every': 1.0, 'well': 1.0, 'made': 1.0, 'clean': 1.0, 'my': 2.0, 'fits': 1.0, 'out': 1.0, 'safe': 1.0, 'easy': 1.0, 'to': 2.0, 'was': 1.0, 'the': 5.0, 'puppy': 2.0, 'nicely': 1.0, 'diaper': 1.0, 'up': 1.0, 'scoots': 1.0, 'and': 5.0, 'across': 1.0, 'floor': 1.0, 'pulled': 1.0, 'nice': 1.0, 'bag': 1.0, 'need': 1.0, 'have': 1.0, 'when': 1.0, 'you': 1.0, 'waiting': 1.0, 'entertainment': 1.0, 'sick': 1.0, 'we': 1.0, 'were': 1.0, 'room': 2.0}
Word element => {'update': 1.0, 'cool': 1.0, 'overall': 1.0, 'wouldn': 1.0, 'isn': 1.0, 'age': 1.0, 'certain': 1.0, 'of': 2.0, 'needless': 1.0, 'but': 1.0, 'heavy': 1.0, 'legs': 1.0, 'very': 1.0, 'little': 1.0, 'by': 1.0, 'hall': 1.0, 'great': 1.0, 'the': 2.0, 'might': 1.0, 'abused': 1.0, 't': 3.0, 'a': 3.0, 'done': 1.0, 'need': 1.0, 'long': 1.0, 'not': 2.0, 'boy': 1.0, 'so': 2.0, 'i': 3.0, 'recommend': 1.0, 'was': 2.0, 'as': 1.0, 'to': 6.0, 'meant': 1.0, 'actually': 1.0, 'wind': 1.0, 'well': 1.0, 'toy': 3.0, 'around': 1.0, 'say': 1.0, 'caught': 1.0, 'is': 1.0, 'surprised': 1.0, 'easily': 1.0, 'you': 1.0, 'that': 2.0, 'be': 3.0, 'force': 1.0, 'course': 1.0, 'mean': 1.0, 'motive': 1.0, 'room': 1.0, 'guy': 1.0, 'strong': 1.0, 'on': 2.0, 'duty': 1.0, 'this': 3.0, 'it': 5.0, 'hard': 1.0, 'tossed': 1.0, 'really': 2.0, 'appreciate': 1.0, 'far': 1.0, 'appears': 1.0, 'travel': 1.0, 'or': 1.0, 'yet': 1.0, 'fairly': 1.0, 'push': 1.0, 'and': 2.0, '34': 2.0, 'up': 2.0, 'haven': 1.0, 'smooth': 1.0, 'classic': 1.0, 'down': 1.0, 'speed': 1.0, 'how': 1.0, 'plastic': 1.0, 'wheels': 1.0, 'will': 2.0, 'also': 1.0, 'gets': 1.0, 'quickly': 1.0}
Word element => {'held': 1.0, 'has': 1.0, 'visits': 1.0, 'time': 1.0, 'each': 1.0, 'play': 1.0, 'out': 1.0, 'get': 1.0, 'does': 1.0, 'go': 4.0, 'a': 4.0, 't': 1.0, 'we': 1.0, 'works': 1.0, 'its': 1.0, 'only': 1.0, 'solid': 1.0, 'he': 3.0, 'very': 1.0, 'being': 1.0, 'month': 1.0, 'after': 4.0, 'grandson': 4.0, 'however': 2.0, 'exciting': 2.0, 'm': 1.0, 'been': 1.0, 'with': 2.0, 'are': 1.0, 'first': 1.0, 'at': 1.0, 'since': 1.0, 'box': 1.0, 'expected': 1.0, 'toy': 3.0, 'live': 1.0, 'walking': 1.0, 'pushed': 1.0, 'when': 2.0, 'times': 1.0, 'removed': 1.0, 'goes': 1.0, 'admit': 1.0, 'more': 2.0, 'puppy': 8.0, 'was': 3.0, 'doesn': 1.0, 'my': 4.0, 'push': 5.0, 'from': 1.0, 'hard': 1.0, 'much': 2.0, 'floor': 1.0, 'to': 3.0, 'as': 2.0, 'how': 1.0, 'disappointed': 1.0, 'our': 1.0, 'dogs': 1.0, 'shown': 1.0, 'something': 2.0, 'year': 1.0, 'so': 1.0, 'can': 2.0, 'little': 1.0, 'distance': 1.0, 'old': 2.0, 'run': 1.0, 'manhattan': 1.0, 'and': 6.0, 'really': 1.0, 'down': 1.0, '34': 2.0, 'correctly': 1.0, 'winds': 1.0, 'takes': 1.0, 'up': 2.0, 'see': 1.0, 'off': 1.0, 'four': 1.0, 'cover': 1.0, 'well': 1.0, 'i': 5.0, 'fast': 1.0, 'quite': 1.0, 'on': 2.0, 's': 4.0, 'giving': 1.0, 'here': 1.0, 'it': 5.0, 'him': 1.0, 'stars': 1.0, 'for': 1.0, '20': 1.0, 'that': 1.0, 'because': 1.0, 'hold': 1.0, 'some': 1.0, 'others': 1.0, 'toys': 1.0, 'this': 1.0, 'few': 1.0, 'pushing': 1.0, 'have': 2.0, 'running': 1.0, 'delighted': 1.0, 'attention': 1.0, 'the': 9.0, 'of': 2.0, 'moves': 1.0, 'else': 1.0, 'real': 1.0}
Word element => {'highly': 1.0, 'have': 1.0, 'be': 1.0, 'will': 1.0, 'kind': 1.0, 'further': 1.0, 'faster': 1.0, 'floors': 1.0, 'tile': 1.0, 'like': 1.0, 'rolling': 1.0, 'goes': 1.0, 'smooth': 1.0, 'designed': 1.0, 'down': 2.0, 'just': 1.0, 'tech': 1.0, 'low': 1.0, 'appealing': 1.0, 'well': 1.0, 'toy': 3.0, 'gotten': 1.0, 'survive': 1.0, 'plays': 1.0, 'funny': 1.0, 'press': 1.0, 'thinks': 1.0, 'older': 1.0, 'handed': 1.0, 'lot': 1.0, 'give': 1.0, 'very': 1.0, 'exciting': 1.0, 'little': 1.0, 'puppy': 2.0, 'planned': 1.0, 'i': 4.0, 'makes': 1.0, 'old': 1.0, 'front': 1.0, 'chase': 1.0, 'needed': 1.0, 'this': 1.0, 'that': 3.0, 'loves': 1.0, 'and': 7.0, 'stage': 1.0, '9': 1.0, 'looks': 1.0, 'she': 2.0, 'it': 9.0, 'month': 1.0, 'had': 1.0, 'to': 6.0, 'much': 1.0, 'granddaughter': 1.0, 'recommend': 1.0, 'was': 1.0, 'in': 2.0, 'us': 1.0, 'determined': 1.0, 'on': 2.0, 'destroy': 1.0, 'after': 1.0, 'more': 2.0, 'is': 2.0, 'fact': 1.0, 'my': 3.0, 'crawling': 1.0, 'her': 4.0, 'peace': 1.0, 'm': 1.0, 'both': 1.0, 'brother': 1.0, 'for': 3.0, 'tree': 1.0, 'but': 1.0, 'the': 5.0, 'distraction': 1.0, 'pulled': 1.0, 's': 2.0, 'a': 3.0, 'out': 1.0, 'some': 1.0, 'than': 1.0, 'because': 1.0, 'safety': 1.0, 'earlier': 1.0, 'of': 4.0, 'carpets': 1.0, 'with': 1.0, 'mind': 1.0, 'christmas': 2.0, 'chasing': 1.0, 'happy': 1.0, 'happily': 1.0}
Word element => {'way': 1.0, 'around': 1.0, 'were': 1.0, 'there': 1.0, 'halt': 1.0, 'had': 1.0, 'then': 1.0, 'end': 1.0, 'push': 1.0, 'unable': 1.0, 'which': 1.0, 'manufacturer': 1.0, 'just': 1.0, 'by': 1.0, 'specified': 1.0, 'range': 1.0, 'age': 1.0, 'be': 1.0, 'throwing': 1.0, 'within': 1.0, 'he': 4.0, 'though': 1.0, '5': 1.0, 'even': 1.0, 'didn': 1.0, 'my': 1.0, 'month': 1.0, 'it': 8.0, 'not': 1.0, 'give': 2.0, 'old': 1.0, 'i': 4.0, 'toys': 1.0, '15': 1.0, 'was': 4.0, 'one': 1.0, 'decided': 1.0, 'hard': 1.0, 'from': 1.0, 'this': 3.0, 'program': 1.0, 'amazon': 1.0, 'we': 1.0, 'go': 1.0, 't': 1.0, 'a': 3.0, 's': 1.0, 'vine': 1.0, 'gave': 1.0, 'grandson': 1.0, 'same': 1.0, 'chasing': 1.0, 'christmas': 1.0, 'ordered': 1.0, 'children': 1.0, 'gift': 1.0, 'enough': 1.0, 'granted': 1.0, 'recommended': 1.0, 'toy': 1.0, 'dozen': 1.0, 'of': 1.0, 'so': 1.0, 'time': 3.0, 'against': 1.0, 'other': 3.0, 'and': 1.0, 'play': 1.0, 'near': 1.0, 'presents': 1.0, 'as': 1.0, 'any': 1.0, 'to': 7.0, 'all': 1.0, 'liked': 2.0, 'opened': 1.0, 'at': 1.0, 'the': 5.0, 'put': 1.0, 'make': 1.0, '3': 1.0, 'supposed': 1.0, 'for': 1.0, 'stars': 2.0, 'because': 2.0, 'did': 2.0, 'get': 1.0, 'up': 2.0, 'over': 1.0, 'distance': 1.0, 'most': 1.0}
Word element => {'s': 1.0, 'not': 1.0, 'off': 1.0, 'special': 1.0, 'option': 1.0, 'dark': 1.0, 'turn': 1.0, 'love': 1.0, 'the': 2.0, 'to': 1.0, 'aa': 1.0, 'picture': 1.0, 'even': 1.0, 'does': 1.0, 'leave': 1.0, 'monitor': 1.0, 'and': 1.0, 'only': 1.0, 'separately': 1.0, 'in': 1.0, 'sound': 1.0, 'clear': 1.0, 'battery': 1.0, 'on': 1.0, 'take': 1.0, 'sold': 1.0}
Word element => {'recommend': 1.0, 'got': 1.0, 'just': 1.0, 'large': 1.0, 'works': 1.0, 'do': 1.0, '6': 1.0, 'received': 1.0, 'months': 1.0, 'over': 1.0, 'day': 1.0, 'to': 1.0, 'sleep': 1.0, 'we': 2.0, 'ago': 1.0, 'a': 6.0, 'else': 1.0, 'wife': 1.0, 'from': 1.0, 'my': 3.0, 'been': 1.0, 'that': 4.0, 'yeah': 1.0, 'is': 3.0, 'wonderful': 1.0, 'as': 3.0, 'horrible': 1.0, 'can': 1.0, 'for': 3.0, 'this': 3.0, 'with': 4.0, 'night': 1.0, 'monitors': 1.0, 'am': 2.0, 'say': 1.0, 'experience': 2.0, 'monitoring': 1.0, 'their': 1.0, 'but': 3.0, 'personal': 1.0, 'had': 1.0, 'sorry': 1.0, 'flicker': 1.0, 'it': 4.0, 'speak': 1.0, 'thought': 1.0, 'everyone': 1.0, 'every': 1.0, 'clear': 1.0, 'has': 2.0, 'them': 1.0, 'watching': 1.0, 'monitor': 1.0, 'shortcomings': 1.0, 'up': 1.0, 'less': 1.0, '50': 1.0, 'and': 6.0, 'cannot': 1.0, 'good': 2.0, 'gift': 1.0, 'which': 1.0, 'on': 1.0, 'bummer': 1.0, 'battery': 2.0, 'about': 1.0, 'does': 1.0, 'reception': 1.0, 'not': 1.0, 'come': 1.0, 'unit': 2.0, 'was': 1.0, 'unusual': 1.0, 'i': 9.0, 'feet': 1.0, 'screen': 2.0, 'would': 1.0, 'rating': 1.0, 'overall': 1.0, 'the': 13.0, 'satisfaction': 1.0, 'of': 1.0, 'own': 1.0, 'have': 2.0, 'none': 1.0, 'enjoyed': 1.0, 'son': 1.0, 'through': 1.0, 'could': 1.0, 'zoomable': 1.0, 'feel': 1.0, 'product': 4.0, 'price': 1.0, 'they': 1.0, 'thrown': 1.0, 'occasional': 1.0, 'in': 1.0, 'decent': 1.0}
Word element => {'cant': 1.0, 'just': 1.0, 'get': 1.0, 'ok': 1.0, 'quality': 1.0, 'with': 1.0, 'come': 1.0, 'spent': 2.0, 'hundreds': 1.0, 'lot': 1.0, 'crazy': 1.0, 't': 1.0, 'a': 3.0, 'we': 2.0, 'on': 2.0, 'thing': 1.0, 'no': 1.0, 'battery': 3.0, 'of': 2.0, 'always': 1.0, 'really': 2.0, 'screen': 1.0, 'would': 1.0, 'read': 1.0, 'monitor': 1.0, 'is': 1.0, 'more': 1.0, 'reviews': 1.0, 'only': 1.0, 'wish': 1.0, 'this': 1.0, 'it': 2.0, 'have': 1.0, 'to': 2.0, 'all': 1.0, 'i': 3.0, 'saved': 1.0, 'not': 1.0, 'the': 6.0, 'myself': 1.0, 'sucks': 1.0, 'realize': 1.0, 'that': 1.0, 'after': 1.0, 'and': 1.0, 'plugged': 1.0, 'time': 1.0, 'needs': 1.0, 'in': 2.0, 'be': 1.0, 'unless': 1.0, 'you': 1.0, 'spend': 1.0, 'call': 1.0, 'us': 1.0, 'past': 1.0, 'can': 1.0, 'money': 3.0, 'but': 2.0, 'for': 1.0, 'why': 1.0, 'did': 1.0}
Word element => {'everywhere': 1.0, 'it': 1.0, 'takes': 1.0, 'hands': 1.0, 'her': 1.0, 'shape': 1.0, 'and': 1.0, 'size': 1.0, 'doll': 1.0, 'she': 1.0, 'little': 1.0, 'for': 2.0, 'year': 1.0, 'grandaughter': 1.0, 'perfect': 1.0, 'just': 1.0, 'small': 1.0, 'my': 1.0, 'the': 1.0, 'old': 1.0, 'right': 1.0}
Word element => {'cute': 1.0, 'really': 1.0, 's': 1.0, 'it': 2.0, 'christmas': 1.0, 'enjoys': 1.0, 'i': 1.0, 'purchased': 1.0, 'and': 1.0, 'as': 1.0, 'doll': 1.0, 'this': 1.0, 'little': 1.0, 'stocking': 1.0, 'stuffer': 1.0, 'my': 2.0, 'a': 1.0, 'daughter': 2.0, 'for': 2.0}
Word element => {'stars': 1.0, 'am': 1.0, '5': 1.0, 'than': 1.0, 'quiet': 1.0, 'travel': 1.0, 'to': 1.0, '20': 1.0, 'about': 1.0, 'ounces': 1.0, '9': 1.0, 'more': 1.0, 'the': 1.0, 'have': 1.0, 'with': 1.0, 'it': 2.0, 'this': 3.0, 'why': 1.0, 'from': 1.0, 'pump': 5.0, 'much': 1.0, 'insurance': 1.0, 'received': 1.0, 'too': 1.0, 'excellent': 1.0, 'in': 1.0, 'also': 2.0, 'i': 4.0, 'philips': 1.0, 'minutes': 1.0, 'can': 1.0, 'my': 2.0, 'avent': 2.0, 'double': 1.0, 'which': 1.0, 'electric': 1.0, 'at': 1.0, 'easy': 1.0, 'compact': 1.0, 'home': 1.0, 'is': 4.0, 'but': 1.0, 'an': 1.0, 'giving': 1.0, 'get': 1.0, 'and': 2.0}
Word element => {'companies': 1.0, 'insurance': 1.0, 'cheaper': 1.0, 'accessories': 1.0, 'skimped': 1.0, 'do': 1.0, 'makes': 1.0, 'clean': 1.0, 'during': 1.0, 'tupperware': 1.0, 'keep': 1.0, 'tend': 1.0, 'emergency': 1.0, '11': 1.0, 'haven': 1.0, 'pinch': 1.0, 'comes': 1.0, 'separately': 1.0, 'buy': 1.0, 'pack': 1.0, 'battery': 1.0, 'backup': 1.0, 'bra': 1.0, 'down': 1.0, 'nice': 1.0, 'handsfree': 1.0, 'although': 1.0, 'lastly': 1.0, 'things': 1.0, 'you': 6.0, 'push': 1.0, 'additional': 2.0, 'so': 2.0, 'included': 1.0, 'put': 3.0, 'on': 3.0, 'parts': 4.0, 'milk': 5.0, 'cooler': 3.0, 'with': 6.0, 'no': 1.0, 'compactcons': 1.0, 'know': 1.0, 'insulation': 1.0, 'storing': 1.0, 'really': 1.0, 'an': 3.0, 'fits': 1.0, 'all': 1.0, 'other': 1.0, 'there': 2.0, 'or': 2.0, 'unit': 1.0, 'tray': 2.0, 'button': 1.0, 'multiple': 1.0, 'might': 1.0, 'impossible': 1.0, 'sterile': 2.0, 'came': 1.0, 'stacked': 1.0, 'summary': 1.0, 'bag': 15.0, 'a': 15.0, 'expression': 1.0, 'day': 2.0, 'etc': 1.0, 'has': 3.0, 'phase': 1.0, 'side': 1.0, 'good': 1.0, 'which': 2.0, 'wouldn': 1.0, 'more': 2.0, 'at': 3.0, 'not': 4.0, 'itself': 1.0, 'women': 1.0, 'choose': 1.0, 'letdown': 1.0, 'tell': 1.0, 'medela': 2.0, 'them': 2.0, 'everything': 1.0, 'otherwise': 1.0, 'months': 1.0, 'fridge': 2.0, 'normal': 1.0, 'same': 1.0, 'can': 5.0, 'is': 11.0, 'compact': 1.0, 'sitting': 1.0, 'need': 3.0, 'also': 2.0, 'physical': 1.0, 'pis': 4.0, 'into': 1.0, 'that': 11.0, 'what': 1.0, 'when': 3.0, 's': 1.0, 'm': 1.0, 'in': 15.0, 'people': 1.0, 'capped': 1.0, 'refrigerated': 1.0, 'i': 24.0, 'be': 3.0, 'it': 12.0, 'this': 12.0, 'but': 3.0, 'just': 1.0, 'and': 12.0, 'sure': 1.0, 'return': 1.0, 'pump': 12.0, 'needing': 1.0, 'go': 1.0, 'batteries': 1.0, 'however': 2.0, 'get': 1.0, 'working': 1.0, 'differences': 1.0, 'outside': 3.0, 'bags': 2.0, 'attached': 1.0, '2': 1.0, 'leave': 1.0, 'straight': 1.0, 'try': 1.0, 'one': 1.0, 'are': 4.0, 'my': 7.0, 'another': 1.0, 'home': 3.0, 'after': 1.0, 'by': 1.0, 'have': 6.0, 'would': 3.0, 'full': 1.0, 'the': 30.0, 'of': 3.0, 'several': 1.0, 'believe': 1.0, 'from': 2.0, 'allow': 1.0, 'fit': 1.0, 't': 3.0, 'for': 5.0, 'product': 1.0, 'compartment': 1.0, 'child': 2.0, 'means': 1.0, 'could': 1.0, 'will': 1.0, 'provide': 1.0, 'find': 1.0, 'container': 2.0, 've': 1.0, 'while': 3.0, 'work': 2.0, 'both': 3.0, 'needed': 1.0, 'like': 2.0, 'to': 20.0, 'cold': 1.0, 'come': 1.0, 'great': 1.0, 'if': 3.0, 'still': 1.0, 'don': 1.0, 'picking': 1.0, 'up': 3.0, 'trainings': 1.0, 'pros': 1.0, 'takes': 1.0, 'as': 2.0, 'less': 1.0, 'eliminates': 1.0, 'carry': 2.0, 'pockets': 2.0, 'helpful': 1.0, 'minor': 1.0, 'style': 2.0, 'screaming': 1.0, 'throw': 1.0, 'quickly': 1.0, 'separate': 4.0, 'only': 1.0, 'then': 2.0, 'deal': 1.0, 'later': 1.0, 'being': 1.0, '4': 1.0, 'case': 1.0, 'likely': 1.0, '3': 1.0, 'times': 2.0, '6': 1.0, 'metro': 3.0, 'time': 1.0, 'top': 1.0, 'each': 1.0, 'prefer': 1.0, 'they': 1.0, 'does': 1.0, 'plastic': 1.0, 'used': 2.0, 'unhooked': 1.0, 'place': 1.0, 'shared': 1.0, 'scrunched': 1.0, 'useful': 1.0, 'most': 1.0, 'space': 2.0, 'make': 1.0, 'ended': 1.0, 'than': 2.0, 'theoretically': 1.0, 'meetings': 1.0, 'environment': 1.0, 'yet': 1.0, 'dripped': 1.0, 'trust': 1.0, 'onto': 1.0, 'recommend': 1.0, 'desk': 1.0, 'personally': 1.0, 'bottles': 5.0, 'motor': 3.0, 'traveled': 1.0, 'use': 4.0, 'especially': 2.0, 'pumping': 2.0, 'want': 1.0}
Word element => {'mothers': 1.0, 'would': 1.0, 'donate': 1.0, 'use': 1.0, 'unbelievable': 1.0, 'days': 1.0, 'in': 1.0, 'working': 1.0, 'through': 1.0, 'delivered': 1.0, 'free': 1.0, 'before': 1.0, 'known': 1.0, 'had': 1.0, 'cool': 1.0, 'never': 1.0, 'packs': 1.0, 'cold': 1.0, 'that': 2.0, 'parts': 1.0, 'it': 7.0, 'bank': 1.0, 'wish': 1.0, 'this': 2.0, 'faster': 1.0, 'work': 1.0, 'but': 2.0, 'think': 1.0, '3': 1.0, 'put': 1.0, 'walmart': 1.0, 'bag': 1.0, 'local': 1.0, 'could': 1.0, 's': 2.0, 'a': 3.0, 'at': 1.0, 'electric': 1.0, 'nice': 1.0, 'very': 1.0, 'single': 1.0, 'is': 3.0, 'really': 1.0, 'cheapest': 1.0, 'i': 8.0, 'be': 2.0, 'quieter': 1.0, 'replacing': 1.0, 'over': 1.0, 'enthusiastic': 1.0, 'because': 1.0, 'may': 1.0, 'my': 1.0, 'seriously': 1.0, 'insurance': 1.0, 'get': 1.0, 'pump': 3.0, 'well': 2.0, 'expected': 1.0, 'has': 1.0, 'so': 2.0, 'only': 1.0, 'much': 1.0, 'setting': 1.0, 'love': 1.0, 'for': 3.0, 'letdown': 1.0, 'milk': 2.0, 'and': 5.0, 'too': 1.0, 'awesome': 1.0, 'compartments': 1.0, 'separate': 1.0, 'even': 1.0, 'the': 4.0, 'place': 1.0, 'as': 1.0, 'all': 1.0, 'to': 4.0}
Word element => {'new': 1.0, 'good': 1.0, 'it': 1.0, 'now': 1.0, 'months': 1.0, 'cute': 1.0, 'looks': 1.0, 'wash': 1.0, 'as': 2.0, 'and': 2.0, 'easy': 1.0, 'still': 1.0, 'to': 1.0, 'comfy': 1.0, 'have': 1.0, 'the': 1.0, 'blanket': 1.0, '7': 1.0, 'for': 1.0}
Word element => {'loves': 1.0, 's': 1.0, 'lose': 1.0, 'shape': 1.0, 'and': 1.0, 'son': 1.0, 'very': 1.0, 'up': 1.0, 'washed': 1.0, 'easily': 1.0, 'a': 2.0, 'well': 1.0, 'for': 3.0, 'nice': 1.0, 'guy': 1.0, 'size': 1.0, 'cute': 1.0, 'price': 1.0, 'in': 1.0, 'also': 1.0, 'perfect': 1.0, 'stretches': 1.0, 'toddler': 1.0, 'but': 1.0, 't': 1.0, 'the': 2.0, 'my': 2.0, 'it': 3.0, 'is': 1.0, 'throw': 1.0, 'washer': 1.0, 'didn': 1.0, 'little': 1.0}
Word element => {'buy': 1.0, '6mo': 1.0, 'a': 1.0, 'using': 1.0, 'this': 2.0, 'blanket': 2.0, 'months': 1.0, 's': 1.0, 'super': 1.0, 'soft': 1.0, 'he': 1.0, '2': 1.0, 'is': 2.0, 'on': 1.0, 'must': 1.0, 'skin': 1.0, 'my': 1.0, 'baby': 1.0}
Word element => {}
Word element => {'well': 1.0, 'shape': 1.0, 'the': 1.0, 'snoozes': 1.0, 'its': 1.0, 'she': 1.0, 'while': 1.0, 'safe': 1.0, 'a': 1.0, 'sweet': 1.0, 'beautiful': 1.0, 'way': 1.0, 'our': 1.0, 'washes': 1.0, 'and': 2.0, 'to': 1.0, 'keeps': 1.0, 'keep': 1.0, 'blanket': 1.0, 'warm': 1.0, 'precious': 1.0, 'daughter': 1.0}
Word element => {'gift': 1.0, 'a': 1.0, 'velcro': 1.0, 'buy': 1.0, 'my': 1.0, 'the': 1.0, 'these': 1.0, 'would': 1.0, 'in': 1.0, 'swaddles': 1.0, 'so': 1.0, 'again': 1.0, 'sleeps': 1.0, 'baby': 1.0, 'and': 3.0, 'very': 2.0, 'as': 1.0, 'soundly': 1.0, 'is': 1.0, 'strong': 1.0, 'warm': 1.0, 'soft': 1.0, 'love': 1.0, 'or': 1.0, 'give': 1.0}
Word element => {'colors': 1.0, 'price': 1.0, 'the': 3.0, 'nice': 1.0, 'great': 1.0, 'got': 1.0, 've': 1.0, 'off': 1.0, 'i': 3.0, 'amazon': 1.0, 'is': 2.0, 'really': 1.0, 'several': 1.0, 't': 1.0, 's': 1.0, 'niece': 1.0, 'doesn': 1.0, 'baby': 2.0, 'quality': 1.0, 'it': 1.0, 'sister': 1.0, 'of': 1.0, 'shower': 1.0, 'love': 1.0, 'one': 2.0, 'like': 1.0, 'using': 1.0, 'so': 1.0, 'after': 2.0, 'this': 2.0, 'soft': 1.0, 'other': 1.0, 'at': 1.0, 'and': 5.0, 'get': 1.0, 'blanket': 2.0, 'pill': 1.0, 'are': 1.0, 'stay': 1.0, 'washings': 1.0, 'blankets': 1.0, 'sitting': 1.0, 'my': 2.0, 'her': 1.0, 'purchased': 1.0, 'vibrant': 2.0, 'had': 1.0, 'to': 1.0}
Word element => {'eczema': 1.0, 'face': 2.0, 'scratch': 1.0, 'velcro': 1.0, 'from': 1.0, 'to': 2.0, 'free': 1.0, 'able': 1.0, 'because': 2.0, 'little': 1.0, 'the': 1.0, 'these': 1.0, 'break': 1.0, 'my': 1.0, 'one': 1.0, 'love': 1.0, 'night': 2.0, 'blanket': 1.0, 'is': 2.0, 'how': 1.0, 'this': 1.0, 'soft': 1.0, 'cozy': 1.0, 'but': 1.0, 'crazy': 1.0, 'doesn': 2.0, 'like': 1.0, 'hold': 1.0, 'has': 1.0, 'well': 1.0, 'rubs': 1.0, 't': 2.0, 'a': 2.0, 'especially': 1.0, 'so': 1.0, 'or': 1.0, 'i': 3.0, 'two': 1.0, 'after': 2.0, 'ended': 1.0, 'wash': 1.0, 'up': 1.0, 'and': 2.0, 'shelfing': 1.0, 'uses': 1.0, 'just': 1.0, 'few': 1.0, 'need': 1.0, 'at': 2.0, 'keep': 1.0, 'her': 3.0, 'swaddled': 1.0, 'it': 1.0, 'she': 2.0}
Word element => {'weeks': 1.0, 'used': 1.0, 'he': 2.0, 'big': 1.0, 'months': 1.0, 'is': 2.0, 'up': 1.0, 'next': 1.0, 'hope': 1.0, 'continue': 1.0, 'only': 1.0, 'him': 1.0, 'keeps': 1.0, 'old': 2.0, 'warm': 1.0, 'summer': 1.0, 'concerned': 1.0, 'first': 1.0, 'looks': 1.0, 'it': 3.0, 'this': 2.0, 'i': 4.0, 'tried': 1.0, 'given': 1.0, 'product': 1.0, 'for': 2.0, 'day': 1.0, 'son': 2.0, 'from': 1.0, 'happy': 1.0, 'quite': 1.0, 'since': 1.0, 'at': 1.0, 'was': 3.0, 'as': 1.0, 'sleep': 2.0, 'to': 3.0, 'because': 1.0, 'every': 1.0, 'will': 1.0, 'sack': 1.0, 'thank': 1.0, 'sacks': 1.0, 'gift': 1.0, 'else': 2.0, 'everything': 1.0, 'too': 1.0, 'and': 4.0, '2': 2.0, 'work': 1.0, 'blankets': 1.0, 'but': 1.0, 'goodness': 1.0, 'my': 2.0, 'simply': 1.0, 'won': 1.0, 's': 1.0, 'a': 1.0, 't': 1.0, 'the': 2.0, 'in': 1.0, 've': 1.0, 'anything': 1.0, 'receiving': 1.0, 'blanket': 1.0, 'size': 1.0, 'nothing': 1.0, 'halo': 1.0, 'miracle': 1.0, 'infant': 1.0}
Word element => {'girl': 1.0, 'quickly': 1.0, 'are': 1.0, 'the': 2.0, 'is': 1.0, 'birds': 1.0, 'cute': 1.0, 'detail': 1.0, 'arrived': 1.0, 'product': 1.0, 'it': 1.0, 'this': 1.0, 'very': 1.0, 'and': 1.0, 'nice': 1.0, 'for': 1.0, 'so': 1.0, 'butterfly': 1.0, 'in': 1.0, 'perfect': 1.0, 'bright': 1.0, 'a': 1.0, 'colors': 1.0, 'baby': 1.0}
Word element => {'is': 1.0, 'on': 1.0, 'appears': 1.0, 'obtain': 1.0, 'to': 2.0, 'much': 1.0, 'enough': 1.0, 'fabric': 1.0, 'just': 1.0, 'than': 1.0, 'site': 1.0, 'has': 1.0, 'very': 1.0, 'but': 1.0, 'book': 1.0, 'it': 3.0, 'this': 1.0, 'loved': 1.0, 'good': 1.0, 'loves': 1.0, 'little': 2.0, 'bigger': 1.0, 'the': 3.0, 'ones': 1.0, 'attention': 1.0, 'a': 2.0, 'who': 1.0, 'buy': 1.0, 'touch': 1.0, 'what': 1.0}
Word element => {'keep': 1.0, 'to': 1.0, 'way': 1.0, 'great': 1.0, 'them': 1.0, 'a': 1.0, 'its': 1.0, 'well': 1.0, 'and': 1.0, 'very': 1.0, 'we': 1.0, 'when': 1.0, 'swaddled': 1.0, 'warm': 1.0, 'babies': 1.0, 'used': 1.0, 'our': 1.0, 'their': 1.0, 'couldn': 1.0, 'hold': 1.0, 'this': 1.0, 't': 1.0, 'temperature': 1.0}
Word element => {'tragic': 1.0, 'put': 1.0, 'bleed': 1.0, 'making': 1.0, 'again': 1.0, 'for': 1.0, 'using': 1.0, 'be': 1.0, 'use': 1.0, 'in': 1.0, 'a': 1.0, 'well': 1.0, 'down': 1.0, 'works': 1.0, 'although': 1.0, 'him': 3.0, 'has': 1.0, 'around': 1.0, 'cheek': 1.0, 'baby': 1.0, 'been': 1.0, 'and': 1.0, 'edges': 1.0, 'it': 2.0, 'velcro': 1.0, 'to': 1.0, 'rough': 1.0, 'sliced': 1.0, 'twice': 1.0, 'is': 2.0, 'won': 1.0, 'on': 1.0, 'nap': 1.0, 'patch': 1.0, 't': 1.0, 'the': 3.0, 'open': 1.0, 'trying': 1.0, 's': 1.0, 'swaddle': 1.0, 'when': 3.0, 'have': 1.0, 'bag': 1.0, 'i': 2.0, 'putting': 1.0}
Word element => {'amazon': 1.0, 'on': 1.0, 'find': 1.0, 'at': 1.0, 'would': 1.0, 'but': 1.0, 'perfect': 1.0, 'all': 1.0, 'i': 2.0, 'fit': 1.0, 'here': 1.0, 'looked': 1.0, 'wouldn': 1.0, 'it': 3.0, 'worried': 1.0, 'was': 3.0, 'had': 1.0, 't': 1.0, 'the': 1.0, 'baby': 1.0, 'stores': 1.0, 'and': 1.0, 'they': 1.0, 'covers': 1.0, 'girl': 1.0, 'knew': 1.0}
Word element => {'rack': 1.0, 'top': 1.0, 'the': 1.0, 'dishwasher': 1.0, 'and': 1.0, 'in': 1.0, 'daughter': 1.0, 'loves': 2.0, 'cups': 1.0, 'tinker': 1.0, 'bell': 1.0, 'so': 1.0, 'clean': 1.0, 'she': 1.0, 'use': 1.0, 'easy': 1.0, 'to': 1.0, 'our': 1.0, 'these': 1.0}
Word element => {'somewhere': 1.0, 'leaving': 1.0, 'accidentally': 1.0, 'washing': 1.0, 'boy': 1.0, 'for': 1.0, 'one': 1.0, 'bear': 1.0, 'as': 2.0, 'decided': 1.0, 'we': 2.0, 'and': 3.0, 'get': 1.0, 'recieved': 1.0, 'our': 1.0, 'acually': 1.0, 'her': 1.0, 'a': 3.0, 'second': 2.0, 'is': 2.0, 'it': 3.0, 'this': 2.0, 'worth': 1.0, 'gift': 1.0, 'the': 1.0, 'joy': 1.0, 'life': 1.0, 'was': 1.0, 'to': 1.0, 'of': 1.0, '34': 2.0, 'backup': 1.0}
Word element => {'as': 2.0, 'up': 1.0, 'other': 1.0, 'than': 1.0, 'cheaper': 1.0, 'and': 1.0, 'body': 1.0, 'soft': 1.0, 'fabric': 1.0, 'just': 1.0, 'because': 1.0, 'against': 1.0, 'though': 1.0, 'them': 1.0, 'on': 1.0, 'holding': 1.0, 'still': 2.0, 'to': 2.0, 'would': 1.0, 'fit': 1.0, 'more': 1.0, 'the': 2.0, 'these': 1.0, 'they': 2.0, 'thought': 1.0, 'but': 1.0, 'old': 1.0, 'i': 2.0, 'transition': 1.0, '16months': 1.0, 'too': 1.0, 'daughter': 1.0, 'my': 1.0, 'are': 3.0, 'expensive': 1.0, 'brands': 2.0, 'her': 3.0, 'help': 1.0, 'is': 2.0, 'regular': 1.0, 'well': 1.0, 'a': 1.0, 'undies': 1.0, 'little': 1.0, 'love': 1.0, 'tight': 1.0}
Word element => {'is': 1.0, 'self': 1.0, 'inking': 1.0, 'well': 1.0, 'work': 1.0, 'they': 1.0, 'the': 3.0, 'are': 1.0, 'love': 1.0, 'great': 2.0, 'and': 1.0, 'feature': 1.0, 'i': 1.0, 'stamps': 1.0, 'variety': 1.0, 'of': 1.0, 'characters': 1.0, 'colors': 1.0}
Word element => {'clear': 1.0, 'has': 1.0, 'exactly': 1.0, 'pacifier': 2.0, 'his': 2.0, 'can': 1.0, 'light': 1.0, 'if': 1.0, 'still': 1.0, 'even': 1.0, 'curtains': 1.0, 'with': 1.0, 'dark': 1.0, 'room': 1.0, 'amazing': 1.0, 'is': 5.0, 'of': 2.0, '34': 2.0, 'what': 1.0, 'blaming': 1.0, 'their': 1.0, 'see': 3.0, 'couldn': 1.0, 'he': 2.0, 'how': 1.0, 'understand': 1.0, 'interest': 1.0, 'vs': 1.0, 'and': 4.0, 'too': 1.0, 'blinds': 1.0, 'then': 1.0, 'the': 6.0, 'great': 2.0, 'my': 3.0, 'on': 3.0, 'check': 1.0, 's': 1.0, 't': 2.0, 'a': 3.0, 'i': 9.0, 'though': 1.0, 'video': 2.0, 'very': 1.0, 'monitor': 2.0, 'did': 1.0, 'wanted': 1.0, 'was': 4.0, 'try': 1.0, 'only': 1.0, 'mattress': 1.0, 'doing': 1.0, 'vision': 4.0, 'this': 2.0, 'it': 2.0, 'quality': 1.0, 'night': 7.0, 'baby': 3.0, 'about': 1.0, 'him': 1.0, 'giving': 1.0, 'be': 1.0, 'where': 1.0, 'product': 2.0, 'main': 1.0, 'at': 3.0, 'some': 2.0, 'able': 1.0, 'ended': 1.0, 'after': 1.0, 'know': 1.0, 'audio': 1.0, 'reading': 1.0, 'don': 1.0, 'up': 1.0, 'reviews': 1.0, 'not': 2.0, 'poor': 1.0, 'sure': 1.0, 'glad': 1.0, 'to': 2.0, 'as': 2.0, 'people': 2.0, 'said': 1.0, 'that': 2.0, 'when': 1.0, 'am': 1.0}
Word element => {'really': 1.0, 'in': 3.0, 'camera': 1.0, 'plug': 1.0, 'ideaother': 1.0, 'impressed': 1.0, 'on': 2.0, 'a': 2.0, 'we': 3.0, 't': 1.0, 'notes': 1.0, 'alerts': 1.0, 'keep': 1.0, 'stories': 1.0, 'use': 3.0, 'instructions': 1.0, 'as': 1.0, 'was': 1.0, 'two': 1.0, '4': 1.0, 'or': 2.0, 'need': 2.0, 'feature': 1.0, 'no': 1.0, 'about': 2.0, 'lullaby': 1.0, 'wall': 1.0, 'talking': 1.0, 'be': 1.0, 'last': 1.0, 'great': 1.0, 'down': 1.0, 'range': 1.0, 'works': 2.0, 'only': 1.0, 'this': 2.0, 'are': 2.0, 'described': 1.0, 'mount': 1.0, 'temperature': 1.0, 'happy': 1.0, 'lasted': 1.0, 'listed': 1.0, 'and': 1.0, 'plugged': 2.0, 'monitor': 1.0, 'ceiling': 1.0, 'very': 1.0, 'problems': 1.0, 'worked': 1.0, 'ok': 1.0, 'to': 3.0, 'high': 1.0, 'with': 2.0, 'features': 1.0, 'pros': 1.0, 'at': 1.0, 'vision': 1.0, 'is': 3.0, 'around': 1.0, 'the': 3.0, 'device': 1.0, 'good': 2.0, 'which': 1.0, 'through': 1.0, 'cool': 1.0, 'aaa': 1.0, 'but': 1.0, 'part': 1.0, 'were': 1.0, 'overnight': 1.0, 'batteries': 2.0, '6': 2.0, 'handheld': 1.0, 'hours': 2.0, '5': 1.0, 'useful': 1.0, 'must': 1.0, 'always': 1.0, 'just': 1.0, 'light': 1.0, 'it': 2.0, 'alloverall': 1.0, 'for': 1.0, 'cord': 1.0, 'feet': 1.0, 'can': 1.0, 'so': 1.0, 'able': 1.0, 'night': 2.0, 'you': 1.0, 'may': 1.0, 'all': 1.0, 'an': 1.0, 'extension': 1.0, 'isn': 1.0, 'not': 1.0, 'resolution': 1.0, 'bright': 1.0}
Word element => {'adjust': 1.0, 'blaring': 1.0, 'too': 1.0, 'seem': 1.0, 'they': 1.0, 'as': 1.0, 'much': 1.0, 'around': 1.0, 'more': 1.0, 'is': 3.0, 'vision': 4.0, 'wish': 1.0, 'found': 1.0, 'this': 1.0, 'curtains': 1.0, 'provides': 1.0, 'almost': 1.0, 'carry': 1.0, 'nap': 1.0, 'receiver': 2.0, 'can': 3.0, 'like': 2.0, 'listening': 1.0, 'not': 1.0, 'been': 1.0, 'that': 4.0, 'a': 4.0, 's': 2.0, 'we': 1.0, 'along': 1.0, 't': 2.0, 'lorex': 1.0, 'and': 4.0, 'closed': 1.0, 'baby': 4.0, 'loud': 1.0, 'able': 1.0, 'night': 4.0, 'was': 1.0, 'when': 3.0, 'charge': 1.0, 'picture': 1.0, 'monitor': 2.0, 'sweet': 1.0, 'love': 1.0, 'even': 1.0, 'lights': 1.0, 'little': 3.0, 'nice': 1.0, 'me': 2.0, 'my': 4.0, 'fact': 1.0, 'went': 1.0, 'played': 1.0, 'i': 11.0, 'feature': 1.0, 'had': 1.0, 'to': 7.0, 'noises': 1.0, 'our': 1.0, 'be': 2.0, 'peak': 1.0, 'house': 1.0, 'enough': 1.0, 'movements': 1.0, 'finally': 1.0, 'volume': 1.0, 'with': 4.0, 'dark': 1.0, 'only': 1.0, 'kicked': 1.0, 'day': 1.0, 'have': 2.0, 'great': 2.0, 'automatically': 1.0, 'them': 2.0, 'always': 1.0, 'but': 2.0, 'mode': 2.0, 'use': 1.0, 'during': 1.0, 'middle': 1.0, 'expecting': 1.0, 'clear': 1.0, 'still': 1.0, 'the': 13.0, 'of': 2.0, 'obviously': 1.0, 'off': 1.0, 'seems': 1.0, 'darker': 1.0, 'light': 1.0, 'it': 5.0, 'speak': 1.0, 'really': 1.0, 'product': 1.0, 'camera': 1.0, 'video': 1.0, 'child': 1.0, 'watch': 1.0, 'through': 1.0, 'in': 3.0, 'm': 1.0, 'lullabies': 1.0, 'older': 1.0, 'are': 1.0, 'haven': 1.0}
Word element => {'nifty': 1.0, 'up': 1.0, 'us': 1.0, 'll': 1.0, 'night': 1.0, 'keep': 1.0, 'at': 1.0, 'features': 1.0, 'awesome': 1.0, 'all': 1.0, 'our': 1.0, 'that': 1.0, 'cool': 1.0, 'one': 1.0, 'on': 2.0, 'because': 1.0, 'died': 1.0, 'having': 1.0, 'amazon': 1.0, 'is': 3.0, 'really': 2.0, 'have': 1.0, 'this': 2.0, 'it': 5.0, 'loud': 1.0, 'great': 2.0, 'deal': 1.0, 'the': 4.0, 'monitor': 4.0, 'only': 1.0, 'works': 1.0, 'do': 1.0, 'killer': 1.0, 'shot': 1.0, 'brand': 1.0, 'was': 1.0, 'finally': 1.0, 's': 1.0, 't': 1.0, 'a': 4.0, 'we': 1.0, 'and': 2.0, 'play': 1.0, 'different': 1.0, 'last': 1.0, 'i': 1.0, 'sometimes': 1.0, 'complain': 1.0, 'thing': 1.0, 'about': 1.0, 'lowest': 1.0, 'still': 1.0, 'so': 1.0, 'can': 1.0, 'setting': 1.0, 'lullibies': 1.0, 'volume': 1.0, 'or': 1.0, 'anything': 1.0}
Word element => {'was': 1.0, 'didn': 1.0, 'been': 1.0, 'that': 1.0, 'isn': 1.0, 'probably': 1.0, 'tech': 1.0, 'high': 1.0, 'cost': 1.0, 'something': 2.0, 'are': 1.0, 'if': 1.0, 'nice': 1.0, 'like': 1.0, 'really': 1.0, 'overall': 1.0, 'range': 1.0, 'with': 1.0, 'problems': 1.0, 'to': 1.0, 'outside': 1.0, 'any': 1.0, 'night': 1.0, 'then': 1.0, 'charger': 1.0, 'so': 1.0, 'during': 1.0, 'i': 11.0, 'battery': 1.0, 'holding': 1.0, 'still': 1.0, 'has': 1.0, 'well': 2.0, 'it': 4.0, 'perfect': 1.0, 'this': 4.0, 'now': 1.0, 'simple': 2.0, 'wanted': 2.0, 'what': 1.0, 'had': 1.0, 'have': 2.0, 'too': 1.0, 'and': 2.0, 'signal': 1.0, 'just': 2.0, 'few': 1.0, 'for': 5.0, 'best': 1.0, 'price': 1.0, 'years': 1.0, 'up': 2.0, 'don': 2.0, 'lot': 1.0, 'at': 1.0, 'keep': 2.0, 'an': 1.0, 'music': 1.0, 'but': 2.0, 'house': 1.0, 'eye': 1.0, 'my': 1.0, 'on': 3.0, 'guy': 1.0, 'mailbox': 1.0, 'monitor': 4.0, 'little': 1.0, 'go': 1.0, 'we': 1.0, 'a': 4.0, 's': 1.0, 'could': 1.0, 't': 4.0, 'the': 9.0, 'use': 1.0, 'only': 1.0, 'do': 1.0, 'much': 1.0, 'works': 1.0, 'good': 1.0, 'looking': 2.0, 'day': 1.0, 'you': 2.0, 'lose': 1.0, 'when': 3.0, 'am': 1.0, 'more': 1.0, 'is': 2.0, 'holds': 1.0, 'around': 1.0}
Word element => {'big': 1.0, 'parents': 1.0, 'are': 1.0, 'digitally': 1.0, 'house': 1.0, 'around': 1.0, 'the': 7.0, 'intercom': 1.0, 'and': 1.0, 'they': 2.0, 'nervous': 1.0, 'ir': 1.0, 'child': 2.0, 'etc': 1.0, 'i': 1.0, 'were': 1.0, 'their': 2.0, 'gave': 1.0, 'a': 3.0, 'check': 1.0, 'friend': 1.0, 'zooming': 1.0, 'vision': 2.0, 'this': 4.0, 'first': 1.0, 'only': 1.0, 'ac': 1.0, 'with': 3.0, 'was': 2.0, 'adapter': 1.0, 'monitor': 2.0, 'very': 2.0, 'to': 2.0, 'as': 1.0, 'night': 2.0, 'baby': 1.0, 'offered': 1.0, 'gift': 1.0, 'not': 1.0, 'hit': 1.0, 'these': 1.0, 'carrying': 1.0, 'want': 1.0, 'capability': 1.0, 'being': 1.0, 'things': 1.0, 'zoom': 1.0, 'built': 1.0, 'in': 5.0, 'but': 1.0, 'music': 1.0, 'it': 1.0, 'basics': 1.0, 'fell': 1.0, 'love': 1.0, 'able': 1.0, 'on': 1.0, 'dark': 1.0}
Word element => {'mount': 1.0, 'to': 1.0, 'much': 1.0, 'not': 2.0, 'up': 1.0, 'lightswivel': 1.0, 'good': 1.0, 'only': 1.0, 'with': 1.0, 'are': 1.0, 'any': 1.0, 'best': 1.0, 'range': 1.0, 'very': 2.0, 'controls': 1.0, 'in': 1.0, 'for': 1.0, 'hours': 1.0, 'greatworks': 1.0, 'on': 2.0, 'ways': 1.0, 'audio': 1.0, 'light': 1.0, 'wall': 1.0, 'including': 1.0, 'is': 2.0, 'pros': 1.0, 'single': 1.0, 'and': 3.0, 'blackworks': 1.0, 'chargecons': 1.0, 'quality': 2.0, 'video': 1.0, 'down': 1.0, 'even': 1.0, 'both': 1.0, 'low': 1.0}
Word element => {'disappointed': 1.0, 'very': 1.0, 'moderate': 1.0, 'months': 1.0, '3': 1.0, 'i': 1.0, 'after': 1.0, 'was': 1.0, 'until': 1.0, 'usage': 1.0, 'speaker': 1.0, 'monitor': 2.0, 'the': 2.0, 'of': 1.0, 'happy': 1.0, 'stop': 1.0, 'this': 1.0, 'working': 1.0}
Word element => {'bed': 1.0, 'tell': 1.0, 'so': 1.0, 'way': 1.0, 'has': 1.0, 'like': 1.0, 'still': 1.0, 'also': 1.0, 'reasonable': 2.0, 'of': 1.0, 'have': 1.0, 'night': 2.0, 'visible': 1.0, 'not': 2.0, 'picture': 3.0, 'dark': 1.0, 'range': 2.0, 'that': 2.0, 'mentioning': 1.0, 'other': 1.0, 'these': 1.0, 'some': 1.0, 'about': 1.0, 'concerned': 1.0, 'talk': 1.0, 'was': 1.0, 'do': 1.0, 'need': 2.0, 'either': 1.0, 'had': 2.0, 'what': 2.0, 'exactly': 2.0, 'with': 1.0, 'unit': 1.0, 'mode': 2.0, 'use': 1.0, 'in': 4.0, 'vision': 2.0, 'this': 2.0, 'perfect': 1.0, 'the': 6.0, 'go': 1.0, 'a': 3.0, 't': 2.0, 'we': 4.0, 'infant': 1.0, 'it': 7.0, 'month': 1.0, 'rain': 1.0, 'little': 1.0, 'monitor': 4.0, 'similar': 1.0, 'and': 3.0, 'issues': 1.0, 'summer': 3.0, 'get': 2.0, 'poor': 1.0, 'left': 1.0, 'is': 2.0, 'system': 2.0, 'feature': 1.0, 'two': 1.0, 'i': 11.0, 'old': 4.0, 'bought': 1.0, 'one': 1.0, 'liked': 1.0, 'for': 1.0, 'reviews': 1.0, 'accidentally': 1.0, 'after': 1.0, 'almost': 1.0, 'year': 2.0, 'fuzzier': 1.0, '6': 1.0, 'price': 2.0, 'don': 1.0, 'our': 5.0, 'to': 6.0, 'any': 1.0, 'general': 1.0, 'boys': 1.0, 'am': 1.0, 'happy': 1.0, 'replaced': 1.0, 'isn': 1.0, 'can': 1.0, '2': 1.0, 'but': 2.0, '3': 2.0, 'think': 1.0, 'than': 1.0, 'because': 1.0, 'does': 2.0}
Word element => {'one': 1.0, 'third': 1.0, 'a': 1.0, 'add': 1.0, 'time': 1.0, 'at': 1.0, 'same': 1.0, 'both': 1.0, 'going': 1.0, 'addition': 1.0, 'easy': 1.0, 'the': 2.0, 'to': 2.0, 'system': 1.0, 'very': 1.0, 'well': 1.0, 'kids': 1.0, 'watch': 1.0, 'great': 1.0, 'works': 1.0, 'can': 1.0}
Word element => {'rarely': 1.0, 'so': 1.0, 'want': 1.0, 'set': 2.0, 'use': 2.0, 'easy': 2.0, 'clear': 1.0, 'feature': 1.0, 'i': 3.0, 'at': 1.0, 'listen': 1.0, 'was': 1.0, 'to': 7.0, 'it': 2.0, 'first': 1.0, 'this': 1.0, 'good': 1.0, 'is': 4.0, 'the': 10.0, 'video': 3.0, 'monitor': 3.0, 'and': 2.0, 'have': 1.0, 'thing': 1.0, 'picture': 1.0, 'like': 2.0, 'that': 3.0, 'volume': 1.0, 'you': 1.0, 'can': 1.0, 'in': 1.0, 'will': 1.0, 'seems': 1.0, 'night': 1.0, 'quality': 1.0, 'baby': 1.0, 'up': 2.0, 'don': 2.0, 'noise': 1.0, 'room': 1.0, 'trigger': 2.0, 't': 2.0, 'we': 2.0, 's': 1.0, 'go': 1.0, 'bought': 1.0, 'one': 1.0, 'come': 1.0, 'lullabies': 2.0, 'they': 1.0, 'on': 2.0, 'make': 1.0}
Word element => {'grandchild': 1.0, 'my': 1.0, 'watch': 1.0, 'using': 1.0, 'i': 2.0, 'to': 1.0, 'while': 1.0, 'use': 1.0, 'easy': 1.0, 'this': 1.0, 'monitor': 1.0, 'm': 1.0, 'nice': 1.0, 'and': 1.0, 'everything': 1.0, 'about': 1.0, 'great': 1.0, 'works': 1.0, 'love': 1.0, 'it': 2.0, 'features': 1.0}
Word element => {'works': 1.0, 'but': 1.0, 'yet': 1.0, 'here': 1.0, 't': 1.0, 'isn': 1.0, 'our': 1.0, 'because': 1.0, 'picture': 1.0, 'setup': 1.0, 'easy': 1.0, 'wife': 1.0, 'tunes': 1.0, 'son': 1.0, 'range': 1.0, 'i': 2.0, 'clear': 1.0, 'good': 1.0, 'quite': 1.0, 'am': 1.0, 'nice': 1.0, 'perfectly': 1.0, 'impressed': 1.0, 'right': 1.0, 'tested': 1.0, 'item': 1.0, 'now': 1.0, 'to': 1.0, 'be': 1.0, 'have': 1.0, 'honest': 1.0, 'only': 1.0, 'with': 2.0, 'this': 1.0, 'it': 2.0, 'my': 1.0}
Word element => {'missing': 1.0, 'the': 1.0, 'star': 1.0, 'thus': 1.0, 'picture': 1.0, 'better': 1.0, 'where': 1.0, 'could': 1.0, 'which': 1.0, 'bummer': 1.0, 'be': 1.0, 'was': 1.0, 'had': 1.0, 'to': 2.0, 'range': 2.0, 'i': 1.0, 'clear': 1.0, 'go': 1.0, 'around': 1.0, 'but': 1.0, 'house': 1.0, 'a': 1.0, 'see': 1.0, 'ended': 1.0}
Word element => {'definitely': 1.0, 'most': 1.0, 'is': 1.0, 'vision': 1.0, 'great': 2.0, 'would': 1.0, 'night': 1.0, 'family': 1.0, 'purchase': 1.0, 'recommend': 1.0, 'good': 1.0, 'to': 1.0, 'exactly': 1.0, 'friends': 1.0, 'and': 2.0, 'as': 1.0, 'described': 1.0, 'very': 1.0, 'quality': 1.0, 'the': 1.0}
Word element => {'available': 1.0, 'ok': 1.0, 'trying': 1.0, 'frustration': 1.0, 'make': 1.0, 'clothes': 1.0, 'built': 1.0, 'vivid': 1.0, 'we': 1.0, 'version': 1.0, 'down': 1.0, 'along': 1.0, 'stripped': 1.0, 'star': 1.0, 'would': 1.0, 'price': 1.0, 'at': 1.0, 'key': 1.0, 'access': 2.0, 'features': 1.0, 'its': 1.0, 'about': 1.0, 'rarely': 1.0, 'replay': 1.0, 'length': 1.0, 'exact': 1.0, 'almost': 1.0, 'thinner': 1.0, 'noticeably': 1.0, 'propped': 1.0, 'hinged': 1.0, 'used': 1.0, 'base': 1.0, 'viewing': 1.0, 'hand': 2.0, 'usb': 3.0, 'product': 2.0, 'face': 1.0, 'images': 1.0, 'box': 1.0, 'anywhere': 2.0, 'appropriately': 1.0, 'connect': 1.0, 'missing': 1.0, 'were': 1.0, 'no': 2.0, 'clips': 2.0, 'screws': 1.0, 'allow': 1.0, 'music': 1.0, 'soothing': 1.0, 'display': 1.0, 'certain': 1.0, 'many': 1.0, 'where': 1.0, 'mode': 1.0, 'or': 1.0, 'activated': 1.0, 'voice': 1.0, 'set': 1.0, 'mentioned': 1.0, 'previously': 1.0, 'charged': 1.0, 'saying': 1.0, 'securely': 1.0, 'what': 1.0, 'speakers': 1.0, 'first': 1.0, 'goes': 1.0, 'button': 3.0, 'clip': 2.0, 'pans': 1.0, 'outdoor': 1.0, 'manual': 3.0, 'tilts': 1.0, 'that': 17.0, 'scan': 1.0, 'easily': 2.0, '2450': 1.0, 'priced': 1.0, 'cable': 2.0, 'minimal': 1.0, 'without': 1.0, 'use': 2.0, 'really': 1.0, 'given': 1.0, 'battery': 1.0, 'cut': 1.0, 'so': 5.0, 'frustrate': 1.0, 'included': 1.0, 'put': 1.0, 'much': 4.0, 'some': 2.0, 'from': 3.0, 'feels': 1.0, 'sweet': 10.0, 'monitor': 11.0, 'includes': 1.0, 'device': 1.0, 'batteries': 1.0, 'vision': 1.0, 'handheld': 1.0, 'peek': 10.0, 'entire': 1.0, 'spoke': 1.0, 'held': 1.0, 'aaa': 1.0, 'learn': 1.0, 'wall': 2.0, 'lithium': 1.0, 'friendly': 2.0, 'do': 2.0, 'system': 3.0, 'combined': 1.0, 'screen': 1.0, 'wireless': 1.0, 'can': 6.0, 'is': 8.0, 'completely': 1.0, 'stationary': 1.0, 'option': 1.0, 'selections': 1.0, 'him': 1.0, 'this': 14.0, 'pretty': 2.0, 'right': 1.0, 'to': 22.0, 'straight': 1.0, 'fixed': 1.0, 'sturdier': 1.0, 'hardware': 1.0, 'feel': 1.0, 'they': 1.0, 'surprised': 1.0, 'serve': 1.0, 'temperature': 1.0, 'in': 7.0, 'camera': 8.0, '4': 1.0, 'i': 12.0, 'one': 3.0, 'turns': 1.0, 'straightaway': 1.0, 'too': 1.0, 'include': 1.0, 'lorex': 6.0, 'there': 5.0, 'like': 2.0, 'covers': 1.0, 'aspects': 1.0, 'record': 1.0, 'having': 2.0, 'aside': 1.0, 'had': 2.0, 'bit': 1.0, 'than': 2.0, 'seemed': 1.0, 'against': 1.0, 'better': 2.0, 'online': 1.0, 'the': 42.0, 'even': 1.0, 'lw': 1.0, 'of': 18.0, 'good': 4.0, 'other': 5.0, 'anchors': 1.0, 'missed': 1.0, 'raising': 1.0, 'needed': 1.0, 'son': 1.0, 'both': 5.0, 'night': 3.0, 'you': 8.0, 'part': 1.0, 'baby': 4.0, 'others': 1.0, 'and': 18.0, 'port': 2.0, 'lose': 1.0, 'withstand': 1.0, 'being': 2.0, 'dropped': 1.0, 'pan': 2.0, 'gets': 1.0, 'despite': 1.0, 'mountable': 1.0, 'adjust': 1.0, 'notice': 1.0, 'electronics': 1.0, 'another': 2.0, 'menus': 1.0, 'found': 1.0, 'have': 5.0, 'speaker': 1.0, 'purpose': 1.0, 'chance': 2.0, 'light': 2.0, 'reason': 1.0, 'cameras': 1.0, 'going': 1.0, 'a': 22.0, 'could': 2.0, 'readable': 1.0, 'video': 1.0, 'play': 1.0, 'nubs': 1.0, 'manually': 1.0, 'lw2450': 4.0, 'on': 17.0, 'noticed': 2.0, 'most': 1.0, 'our': 1.0, 'noise': 1.0, 'large': 1.0, 'more': 2.0, 'bedroom': 1.0, 'talk': 2.0, 'add': 2.0, 'accidentally': 1.0, 'range': 1.0, 'indoor': 1.0, 'particularly': 1.0, 'great': 2.0, 'if': 6.0, 'zoom': 1.0, 'detail': 1.0, 'as': 3.0, 'but': 3.0, 'bb2411ac1': 1.0, 'want': 1.0, 'also': 4.0, 'us': 1.0, 'rest': 1.0, 'accompanies': 1.0, 'rechargeable': 1.0, 'amazon': 2.0, 'my': 1.0, 'room': 3.0, 'are': 5.0, 'lens': 1.0, 'those': 1.0, 'though': 2.0, 'directions': 1.0, 'off': 1.0, 'lots': 1.0, 'must': 1.0, 'talking': 1.0, 's': 6.0, 'doesn': 1.0, 'different': 2.0, 'not': 5.0, 'buttons': 1.0, 'user': 2.0, 'products': 1.0, 'may': 1.0, 'hoped': 1.0, 'functions': 2.0, 'was': 5.0, 'it': 13.0, 'own': 1.0, 'be': 5.0, 'read': 1.0, 'says': 1.0, 'up': 6.0, 'top': 1.0, 'lowering': 1.0, 'did': 2.0, 'hinge': 1.0, 'cannot': 1.0, 'aren': 1.0, 'with': 6.0, 'prop': 1.0, 'desk': 1.0, 'help': 1.0, 'sound': 1.0, 'toggle': 1.0, 'only': 1.0, 'then': 1.0, 'charging': 1.0, 'bottom': 1.0, 'has': 6.0, 'two': 1.0, 'plastic': 1.0, 'stand': 2.0, 'level': 2.0, 'surface': 1.0, 'additional': 1.0, 'bigger': 2.0, 'support': 1.0, 'somehow': 1.0, 'knocked': 1.0, 'over': 1.0, 'happen': 1.0, 'drawings': 1.0, 't': 2.0, 'see': 1.0, 'multiple': 1.0, 'real': 1.0, 'color': 1.0, 'allows': 4.0, 'careful': 1.0, 'back': 3.0, 'lag': 1.0, 'when': 3.0, 'into': 1.0, 'through': 2.0, 'mention': 1.0, 'survival': 1.0, 'same': 2.0, 'hold': 1.0, 'wirelessly': 1.0, 'couple': 1.0, 'purchase': 1.0, 'tilt': 1.0, 'for': 5.0, 'pieces': 1.0, 'seconds': 1.0, 'interactive': 1.0, 'before': 1.0}
Word element => {'vision': 1.0, 'picture': 1.0, 'gives': 1.0, 'that': 1.0, 'standard': 1.0, 'other': 1.0, 'to': 1.0, 'starts': 1.0, 'and': 2.0, 'issue': 1.0, 'part': 1.0, 'die': 1.0, 'for': 1.0, 'quickly': 1.0, 'hours': 1.0, 'night': 1.0, 'battery': 1.0, 'great': 1.0, 'the': 2.0, 'more': 1.0, 'is': 2.0, 'on': 2.0, 'real': 1.0, 'it': 4.0, 'only': 1.0, 'off': 1.0, 'stays': 1.0, 'charger': 1.0, 'quality': 1.0, 'but': 1.0, 'most': 1.0, 'use': 1.0, 'than': 2.0, 'if': 1.0, 'life': 1.0, '3': 1.0, 'in': 2.0, 'camera': 1.0}
Word element => {'system': 1.0, 'works': 1.0, 'feature': 1.0, 'how': 1.0, 'speak': 1.0, 'each': 1.0, 'scroll': 1.0, 'ability': 1.0, 'has': 1.0, 'getting': 1.0, 'thinking': 1.0, 'pretty': 1.0, 'features': 1.0, 'amount': 1.0, 'more': 1.0, 'perfect': 1.0, 'offers': 1.0, 'used': 1.0, 'additional': 1.0, 'usefulness': 1.0, 'functions': 1.0, 'will': 2.0, 'they': 1.0, 'these': 1.0, 'learns': 1.0, 'once': 1.0, 'means': 1.0, 'box': 1.0, 'music': 1.0, 'animal': 1.0, 'stuffed': 1.0, 'favorite': 1.0, 'fact': 1.0, 'introducing': 1.0, 'recommend': 1.0, 'i': 6.0, 'inch': 1.0, '1': 1.0, 'mic': 1.0, 'coming': 1.0, 'because': 2.0, 'hard': 1.0, 'don': 1.0, 'cry': 1.0, 'screen': 2.0, 'mounting': 2.0, 'very': 1.0, 'easy': 1.0, 'poor': 1.0, 'money': 1.0, 'motioninternal': 1.0, 'slightest': 1.0, 'first': 1.0, 'provide': 1.0, 'from': 3.0, 'choose': 1.0, 'soft': 1.0, 'without': 1.0, 'anything': 1.0, 'button': 1.0, 'parent': 1.0, 'light': 3.0, 'by': 3.0, 'min': 2.0, 'built': 1.0, 'lullabies': 8.0, 'design': 1.0, 'activity': 1.0, 'ft': 3.0, 'house': 1.0, 'to': 20.0, 'one': 3.0, '5': 2.0, 'camera': 5.0, 'in': 3.0, 'per': 1.0, 'depending': 1.0, 'your': 3.0, 'on': 13.0, 'wall': 2.0, 'battery': 3.0, 'mode': 1.0, 'but': 2.0, 'auto': 3.0, 'sight': 1.0, 'bend': 1.0, 'are': 3.0, 'room': 2.0, 'my': 1.0, 'musical': 1.0, 'use': 4.0, 'saves': 2.0, 'anymore': 1.0, 'problem': 1.0, 'charging': 1.0, 'activated': 1.0, 'color': 1.0, 'allows': 1.0, 'with': 1.0, 'vision': 1.0, 'at': 2.0, 'its': 2.0, 'qualityoutstanding': 1.0, 'mount': 1.0, 'due': 1.0, 'detects': 1.0, 'live': 1.0, 'fall': 2.0, 'capabilityaudio': 1.0, 'function': 1.0, 'monitor': 11.0, 'best': 2.0, 'timer': 1.0, 'night': 3.0, 'you': 12.0, 'upside': 1.0, 'baby': 2.0, 'inability': 1.0, 'full': 1.0, 'help': 3.0, 'sound': 2.0, 'second': 1.0, 'falling': 1.0, 'that': 3.0, 'inactivity': 1.0, 'while': 1.0, 'talk': 1.0, 'causes': 2.0, 'so': 2.0, 'included': 1.0, 'never': 1.0, 'take': 1.0, 'only': 5.0, 'then': 3.0, 'bad': 1.0, 'we': 2.0, 'about': 6.0, 'via': 2.0, 'illumination': 1.0, 'intercom': 1.0, 'when': 2.0, 'shutoff': 1.0, 'asleep': 2.0, 'clipbattery': 1.0, 'good': 2.0, 'side': 1.0, 'exist': 1.0, 'the': 43.0, 'even': 2.0, 'of': 6.0, 'belt': 1.0, 'fun': 1.0, 'roomthe': 1.0, 't': 6.0, 'not': 2.0, 'different': 1.0, 'm': 1.0, 'doesn': 1.0, 's': 6.0, 'a': 10.0, 'day': 1.0, 'itself': 1.0, 'short': 1.0, '90': 1.0, 'than': 1.0, 'degree': 1.0, 'or': 4.0, 'angle': 1.0, 'like': 1.0, 'tunes': 1.0, 'signal': 1.0, 'be': 2.0, 'it': 8.0, 'own': 1.0, 'see': 1.0, 'until': 1.0, 'childmusical': 1.0, 'off': 3.0, 'speaker': 1.0, 'ceiling': 1.0, 'option': 1.0, 'last': 1.0, 'down': 2.0, 'stand': 1.0, 'thin': 1.0, 'sleeping': 1.0, 'over': 1.0, 'range': 2.0, 'reduce': 2.0, 'seems': 1.0, 'movement': 1.0, 'store': 1.0, '30': 1.0, 'monitoring': 1.0, 'stay': 1.0, 'basement': 1.0, 'is': 9.0, 'can': 9.0, 'turn': 1.0, 'great': 1.0, 'zoom': 1.0, 'if': 3.0, 'them': 2.0, 'always': 1.0, 'would': 3.0, 'nice': 1.0, 'her': 1.0, 'little': 1.0, 'have': 3.0, 'child': 4.0, 'grunts': 1.0, '10': 1.0, '100': 1.0, 'think': 1.0, 'spend': 1.0, 'another': 1.0, 'well': 2.0, 'line': 1.0, 'walls': 1.0, 'expect': 2.0, 'onto': 1.0, 'our': 3.0, 'kid': 2.0, 'this': 6.0, '2nd': 1.0, 'floor': 1.0, 'much': 1.0, 'batteries': 1.0, 'get': 2.0, 'through': 4.0, 'into': 1.0, 'directly': 1.0, 'loud': 1.0, 'table': 1.0, 'sleep': 1.0, 'want': 1.0, 'below': 1.0, 'video': 4.0, 'play': 2.0, 'ugly': 1.0, 'playing': 1.0, '20': 1.0, 'way': 1.0, 'all': 3.0, 'other': 2.0, 'thing': 1.0, 'cameras': 1.0, 'going': 1.0, '2': 1.0, 'hear': 5.0, 'therefore': 1.0, 'excellent': 1.0, 'sensors': 1.0, 'during': 1.0, 'out': 3.0, 'just': 1.0, 'and': 11.0, 'constantly': 2.0, 'quicker': 1.0, 'lullaby': 2.0, 'hrs': 1.0, 'also': 1.0, 'go': 1.0, 'groans': 1.0}
Word element => {'room': 1.0, 'review': 1.0, 'great': 1.0, 'new': 1.0, 'camera': 1.0, 'in': 3.0, 'range': 1.0, 'test': 1.0, 'had': 2.0, 'to': 4.0, 'was': 1.0, 'even': 1.0, 'when': 1.0, 'one': 2.0, 'once': 1.0, 'of': 4.0, 'set': 2.0, 'up': 2.0, 'right': 2.0, '1st': 1.0, 'seems': 1.0, 'will': 1.0, 'front': 1.0, 'monitor': 1.0, 'and': 2.0, 'kept': 1.0, 'update': 1.0, 'out': 2.0, 'send': 1.0, 'baby': 2.0, 'is': 2.0, 'due': 1.0, 'have': 1.0, 'able': 1.0, 'saying': 1.0, 'back': 1.0, '3wks': 1.0, 'instead': 1.0, 'we': 2.0, 'are': 1.0, 'work': 1.0, 'process': 1.0, 'moving': 1.0, 'try': 1.0, 'only': 1.0, 'it': 2.0, 'so': 1.0, 'time': 1.0, 'being': 1.0, 'my': 1.0}
Word element => {'rested': 1.0, 'keeps': 1.0, 'you': 1.0, 'until': 1.0, 'stop': 1.0, 'play': 1.0, 'continuous': 1.0, 'variety': 1.0, 'clarity': 1.0, 'relaxed': 1.0, 'night': 1.0, 'i': 2.0, 'have': 1.0, 'it': 1.0, 'this': 1.0, 'lullaby': 1.0, 'of': 3.0, 'must': 1.0, 'sound': 1.0, 'love': 1.0, 'can': 1.0, 'well': 1.0, 'lullabies': 1.0, 'a': 1.0, 'speak': 1.0, 'is': 1.0, 'clearness': 1.0, 'vision': 1.0, 'fact': 1.0, 'choose': 1.0, 'that': 1.0, 'to': 2.0, 'through': 1.0, 'her': 2.0, 'and': 2.0, 'monitor': 1.0, 'the': 6.0, 'intercom': 1.0}
Word element => {'dud': 1.0, 'was': 1.0, 'one': 1.0, 'rooms': 1.0, 'charged': 1.0, 'can': 1.0, 'right': 1.0, 'box': 1.0, 'tried': 2.0, 'old': 1.0, 'the': 3.0, 'different': 1.0, 'get': 1.0, 'and': 2.0, 'monitor': 1.0, 'gone': 1.0, 'thing': 1.0, 'of': 3.0, 'pair': 1.0, 'through': 1.0, 'at': 1.0, 'off': 1.0, 'just': 1.0, 'hope': 1.0, 'microwave': 1.0, 'to': 2.0, 'all': 2.0, 'our': 1.0, 'baby': 1.0, 'turned': 1.0, 'ask': 1.0, 'even': 1.0, 'additional': 1.0, 'camera': 1.0, 'ours': 1.0, 'troubleshooting': 1.0, 'ordered': 1.0, 'only': 1.0, 'this': 1.0, 'are': 2.0, 'seeing': 1.0, 'more': 1.0, 'is': 1.0, 'range': 2.0, 'out': 3.0, 'replacement': 1.0, 't': 1.0, 'we': 5.0, 'a': 2.0, 'going': 1.0, 'for': 1.0}
Word element => {'one': 1.0, 'recommend': 1.0, 'definitely': 1.0, 'baby': 1.0, 'vision': 1.0, 'requires': 1.0, 'does': 1.0, 'like': 1.0, 'night': 1.0, 'battery': 1.0, 'plus': 1.0, 'up': 1.0, 'big': 1.0, 'very': 1.0, 'as': 1.0, 'quickly': 1.0, 'this': 1.0, 'it': 2.0, 'good': 2.0, 'quality': 1.0, 'video': 1.0, 'between': 1.0, 'a': 3.0, 'is': 4.0, 'the': 8.0, 'rechargeable': 1.0, 'and': 1.0, 'monitor': 3.0, 'in': 1.0, '4aaa': 1.0, 'sound': 1.0, 'camera': 3.0, 'itself': 1.0, 'which': 1.0, 'nice': 1.0, 'would': 2.0, 'be': 1.0, 'if': 1.0, 'syncs': 1.0, 'had': 1.0}
Word element => {'them': 1.0, 'and': 1.0, 'button': 1.0, 'easy': 1.0, 'sleep': 1.0, 'case': 1.0, 'product': 1.0, 'negative': 1.0, 'is': 2.0, 'awaked': 1.0, 'on': 1.0, 'only': 1.0, 'the': 3.0, 'great': 1.0, 'my': 1.0, 'went': 1.0, 'music': 1.0, 'pretty': 1.0, 'press': 1.0, 'which': 1.0, 'in': 1.0, 'to': 2.0, 'turned': 1.0, 'after': 1.0, 'too': 1.0, 'kids': 1.0}
Word element => {'use': 1.0, 'pleased': 1.0, 'camera': 1.0, 'am': 2.0, 'so': 3.0, 'and': 1.0, 'since': 1.0, 'very': 1.0, 'mine': 1.0, 'i': 3.0, '2013': 1.0, 'july': 1.0, 'to': 1.0, 'had': 1.0, 'buying': 1.0, 'have': 1.0, 'with': 1.0, 'iit': 1.0, 'far': 1.0, 'today': 1.0, 'much': 1.0, 'an': 1.0, 'considering': 1.0, 'of': 1.0, 'extra': 1.0}
Word element => {'of': 1.0, 'possibility': 1.0, 'remote': 1.0, 'alert': 1.0, 'that': 1.0, 'seconds': 1.0, 'for': 1.0, 'no': 1.0, 'alarms': 1.0, 'sounds': 1.0, 'from': 2.0, 'purchased': 1.0, 'was': 1.0, 'are': 1.0, 'enable': 1.0, 'motion': 3.0, 'care': 2.0, 'the': 4.0, 'with': 1.0, 'conjunction': 1.0, '30': 1.0, 'this': 1.0, 'optionswe': 1.0, 'programming': 1.0, 'nice': 1.0, 'drops': 1.0, 'features': 1.0, 'angle': 2.0, 'expected': 1.0, 'pros': 1.0, 'layout': 1.0, 'than': 1.0, 'power': 1.0, 'button': 1.0, 'video': 3.0, 'significantly': 1.0, 'baby': 2.0, 'night': 3.0, 'quality': 4.0, 'intuitive': 1.0, 'sound': 2.0, 'up': 1.0, 'helps': 1.0, 'there': 2.0, 'during': 1.0, 'and': 3.0, 'very': 1.0, 'monitor': 4.0, 'good': 3.0, 'compact': 1.0, 'saving': 1.0, 'automatically': 2.0, 'in': 2.0, 'kicks': 1.0, 'when': 3.0, 'us': 1.0, 'able': 1.0, 'as': 1.0, 'to': 2.0, 'amazon': 1.0, 'mode': 1.0, 'wakes': 1.0, 'use': 2.0, 'sids': 1.0, 'light': 1.0, 'just': 1.0, 'sleeping': 1.0, 'which': 4.0, 'audio': 1.0, 'rangecons': 1.0, 'we': 2.0, 'could': 1.0, 'keep': 1.0, 'at': 2.0, 'be': 1.0, 'an': 1.0, 'musical': 1.0, 'better': 1.0, 'is': 3.0, 'more': 3.0, 'tones': 1.0}
Word element => {'child': 1.0, 'half': 1.0, 'disturbing': 1.0, 'o': 1.0, 'w': 1.0, 'check': 1.0, 'parent': 1.0, 'babies': 1.0, 'have': 1.0, 'now': 1.0, 'as': 2.0, 'to': 4.0, 'had': 1.0, 'was': 1.0, 'wanted': 1.0, 'baby': 1.0, 'them': 3.0, 'get': 1.0, 'raising': 1.0, 'and': 1.0, 'glad': 1.0, 'my': 1.0, 'for': 1.0, 'they': 2.0, 'asleep': 1.0, 'the': 1.0, 'many': 2.0, 'times': 1.0, 'when': 1.0, 'so': 1.0, 'years': 1.0, 'd': 1.0, 'door': 1.0, 'how': 1.0, 'in': 2.0, 'on': 1.0, 'toddlers': 1.0, 'at': 1.0, 'peek': 1.0, 'but': 1.0, 'these': 1.0, 'knew': 1.0, 'would': 1.0, 'wonderful': 1.0, 'creak': 1.0, 'way': 1.0, 'naptime': 1.0, 'or': 2.0, 'disturb': 1.0, 'i': 3.0, 'rattle': 1.0, 'ago': 1.0, 'a': 2.0, 'wish': 1.0, 'kids': 1.0, 'this': 1.0, 'enables': 1.0}
Word element => {'loved': 1.0, 'suggest': 1.0, 'wonderful': 1.0, 'be': 1.0, 'found': 1.0, 'way': 1.0, 'stronger': 1.0, 'should': 1.0, 'if': 1.0, 'but': 1.0, 'being': 1.0, 'as': 1.0, 'don': 1.0, 'children': 1.0, 'eye': 2.0, 'general': 1.0, 'so': 2.0, 'cement': 1.0, 'walls': 1.0, 'situation': 1.0, 'earthquake': 1.0, 'issue': 2.0, 'cost': 1.0, 't': 1.0, 'further': 1.0, 'home': 1.0, 'sweet': 1.0, 'master': 1.0, 'others': 1.0, 'zone': 1.0, 'ones': 1.0, 'one': 1.0, 'either': 1.0, 'would': 2.0, 'live': 1.0, 'range': 2.0, 'what': 1.0, 'when': 1.0, 'process': 1.0, 'distance': 1.0, 'a': 8.0, 'we': 6.0, 'going': 1.0, 'notice': 1.0, 'out': 2.0, 'ready': 1.0, 'camera': 1.0, 'where': 1.0, 'for': 4.0, 'building': 4.0, 'are': 1.0, 'reviewers': 1.0, 'peek': 1.0, 'my': 1.0, 'started': 1.0, 'them': 1.0, 'of': 6.0, 'the': 17.0, 'device': 4.0, 'i': 7.0, 'feature': 1.0, 'have': 3.0, 'fiance': 1.0, 'idea': 1.0, 'ceilings': 1.0, 'our': 4.0, 'pretty': 2.0, 'to': 7.0, 'critical': 1.0, 'future': 2.0, 'image': 1.0, 'modern': 1.0, 'looking': 2.0, 'and': 6.0, 'get': 2.0, 'with': 1.0, 'in': 3.0, 'rely': 1.0, 'it': 4.0, 'sort': 2.0, 'that': 2.0, 'was': 3.0, 'time': 1.0, 'worried': 1.0, 'just': 1.0, 'most': 1.0, 'perhaps': 1.0, 'hard': 1.0, 'wonder': 1.0, 'from': 2.0, 'problem': 1.0, 'part': 1.0, 'threshold': 1.0, 'second': 1.0, 'into': 1.0, 'bedroom': 1.0, 'an': 2.0, 'other': 2.0, 'luckily': 1.0, 'see': 1.0, 'tried': 1.0, 'side': 1.0, 'connection': 2.0, 'good': 1.0, 'keep': 2.0, 'did': 1.0, 'latency': 1.0, 'receiver': 1.0, 'same': 1.0, 'on': 4.0, 'noticed': 1.0, 'lorex': 1.0, 'there': 1.0, 'noticeable': 1.0, 'between': 1.0, 'apartment': 1.0, 'used': 1.0, 'd': 1.0, 'mostly': 1.0, 'noise': 1.0, 'highly': 1.0, 'few': 1.0, 'this': 1.0}
Word element => {'continue': 1.0, 'going': 1.0, 'away': 1.0, 'maybe': 1.0, 'located': 1.0, 'receiver': 1.0, 'sleep': 1.0, 'when': 1.0, 'very': 2.0, 'be': 1.0, 'will': 2.0, 'm': 1.0, '35': 1.0, 'by': 1.0, 'accompanied': 1.0, 'message': 1.0, 'range': 1.0, 'an': 1.0, 'with': 2.0, 'numerous': 1.0, 'out': 2.0, 'cut': 1.0, 'that': 1.0, 'amazon': 1.0, 'been': 1.0, 'breaker': 1.0, 'need': 1.0, 'and': 9.0, 'having': 1.0, 're': 3.0, 'plus': 1.0, 'beep': 1.0, 'summer': 2.0, 'once': 1.0, 'like': 2.0, 'signal': 1.0, 'after': 1.0, 'so': 1.0, 'can': 1.0, 'work': 2.0, 'but': 1.0, 'using': 2.0, 'looking': 1.0, 'definitely': 1.0, 'quality': 1.0, 'night': 2.0, 'trying': 1.0, 'another': 2.0, 'peek': 1.0, 'my': 1.0, 'performed': 1.0, 'years': 1.0, 'connect': 1.0, '2010': 1.0, 'image': 1.0, 'a': 11.0, 't': 1.0, 'we': 4.0, 'of': 3.0, 'the': 8.0, 'great': 3.0, 'sure': 1.0, 'seemed': 1.0, 'couple': 2.0, 'sweet': 1.0, 'monitor': 4.0, 'returning': 1.0, '1300': 1.0, 'it': 5.0, 'few': 1.0, 'this': 2.0, 'have': 1.0, 'even': 1.0, 'was': 1.0, 'doesn': 1.0, 'baby': 1.0, 'deal': 1.0, 'unfortunately': 1.0, 'to': 7.0, 'annoying': 1.0, 'as': 2.0, 'disappointed': 1.0, 'our': 2.0, 'really': 1.0, 'infant': 2.0, 'from': 2.0, 'while': 2.0, 'did': 1.0, 'more': 2.0, 'look': 1.0, 'at': 2.0, 'vision': 1.0, 'is': 5.0, 'drops': 1.0, 'around': 1.0, 'one': 2.0, 'soon': 1.0, 'lorex': 2.0, 'video': 2.0, 'price': 2.0, 'camera': 2.0, '10': 1.0, 'for': 4.0, 'feet': 1.0, 'i': 3.0, 've': 1.0, 'error': 1.0, 'now': 2.0, 'house': 1.0, 'ft': 1.0, '40': 1.0, 'times': 1.0, 'hours': 1.0, 'sq': 1.0, 'got': 1.0, 'daughter': 1.0, 'naps': 1.0, 'solution': 1.0, 'has': 2.0, 'expected': 1.0, 'forward': 1.0, 'not': 3.0, 'than': 1.0, 'way': 1.0, 'audio': 1.0, 'daytime': 1.0, 'which': 1.0, 'good': 2.0, 'quite': 1.0, 'blurry': 1.0, 'nearly': 1.0, 'old': 1.0, 'new': 1.0, 'model': 1.0, 'importantly': 1.0, 'us': 1.0, 'only': 1.0}
Word element => {'use': 1.0, 'features': 1.0, 'cool': 1.0, 'mention': 1.0, 'stars': 1.0, 'alone': 1.0, 'peace': 1.0, 'good': 1.0, 'enough': 1.0, 'something': 1.0, 'wanting': 1.0, 'last': 1.0, 'hard': 1.0, 'anything': 1.0, 'sitting': 1.0, 'easy': 2.0, 'time': 1.0, 'down': 2.0, 'won': 2.0, 'mean': 2.0, 'sing': 1.0, 'talk': 1.0, 'll': 1.0, 'ways': 1.0, 'mind': 1.0, 'both': 1.0, 'guessing': 1.0, 'no': 1.0, 'through': 2.0, 'sounds': 1.0, 'thing': 2.0, 'want': 2.0, 'tiniest': 1.0, 'hear': 1.0, 't': 4.0, 'as': 5.0, 'or': 1.0, 'crackle': 1.0, 'more': 1.0, 'little': 1.0, 'see': 1.0, 'sight': 2.0, 'goes': 1.0, 'sound': 4.0, 'lullaby': 1.0, 'up': 6.0, 'think': 1.0, 'on': 1.0, 'while': 2.0, 'some': 4.0, 'handset': 1.0, 'switching': 1.0, 'doesn': 1.0, 'picks': 2.0, 'not': 7.0, 'that': 3.0, 'easily': 1.0, 'because': 2.0, 'ease': 2.0, 'does': 6.0, 'static': 1.0, 'thankfully': 1.0, 'this': 5.0, 'perfect': 1.0, 'odd': 2.0, 'love': 2.0, 'to': 10.0, 'our': 1.0, 'typical': 1.0, 'child': 2.0, 'product': 1.0, 'year': 1.0, 'ready': 1.0, 'we': 1.0, 'going': 1.0, 'a': 2.0, 'everything': 1.0, 'it': 22.0, 'beautifully': 1.0, 'covers': 1.0, 'night': 1.0, 'you': 6.0, 'things': 2.0, 'monitors': 2.0, 'plugging': 1.0, 'came': 1.0, 'glad': 1.0, 'have': 5.0, 'plus': 1.0, 'bad': 1.0, 'first': 1.0, 'are': 2.0, 'so': 5.0, 'can': 4.0, 'but': 3.0, 'apprehensive': 1.0, 'coming': 1.0, 'well': 1.0, 'i': 14.0, 'do': 2.0, 'only': 1.0, 'picked': 1.0, 'getting': 1.0, 'and': 14.0, 'too': 2.0, 'messing': 1.0, 'many': 3.0, 'baby': 1.0, 'allow': 2.0, 'screen': 1.0, 'would': 1.0, 'letting': 1.0, 'been': 1.0, 'the': 15.0, 'of': 4.0, 'say': 1.0, 'worry': 1.0, 'dark': 1.0, 'in': 4.0, 'm': 3.0, 'looking': 1.0, 'worth': 1.0, 'figure': 1.0, 'now': 1.0, 'five': 1.0, 'set': 2.0, 'allows': 1.0, 'with': 6.0, 'monitor': 2.0, 'picture': 1.0, 'there': 1.0, 'perfectly': 2.0, 'buttons': 1.0, 'if': 1.0, 'expecting': 1.0, 'clear': 1.0, 'all': 3.0, 'jumping': 1.0, 'playing': 1.0, 'ghostly': 1.0, 'other': 1.0, 'room': 1.0, 'shows': 1.0, 'what': 2.0, 'great': 4.0, 'idea': 1.0, 'your': 1.0, 'any': 1.0, 'feel': 1.0, 'size': 1.0, 'ir': 1.0, 'figured': 1.0, 'be': 4.0, 'at': 3.0, 'is': 8.0, 'look': 1.0, 'really': 3.0, 'about': 3.0, 'looks': 1.0, 'my': 2.0, 'understand': 2.0, 'out': 2.0}
Word element => {'you': 1.0, 'looking': 1.0, 'if': 1.0, 'great': 1.0, 'item': 1.0, 'this': 1.0, 'loved': 1.0, 'good': 1.0, 'recommend': 1.0, 'value': 2.0, 'really': 1.0, 'are': 1.0, 'my': 1.0, 'nephews': 1.0, 'the': 1.0, 'for': 1.0, 'stamps': 1.0, 'i': 1.0, 'would': 1.0, 'highly': 1.0}
Word element => {'indoors': 1.0, 'has': 1.0, 'or': 1.0, 'sun': 1.0, 'use': 1.0, 'though': 1.0, 'quickly': 1.0, 'when': 1.0, 'gets': 1.0, 'infant': 1.0, 'my': 1.0, 'options': 1.0, 'for': 1.0, 'wish': 1.0, 'insert': 3.0, 'material': 1.0, 'ac': 1.0, 'were': 1.0, 'down': 1.0, 'even': 1.0, 'works': 1.0, 'with': 1.0, 'only': 1.0, 'this': 2.0, 'it': 1.0, 'gone': 1.0, 'there': 1.0, 'but': 1.0, 'great': 1.0, 'more': 1.0, 'the': 2.0, 'we': 2.0, 'breathable': 1.0, 'live': 1.0, 'a': 1.0, 'very': 2.0, 'hot': 2.0, 'and': 1.0, 'climate': 1.0, 'in': 2.0, 'seems': 1.0}
Word element => {'washer': 1.0, 'through': 1.0, 'just': 1.0, 'best': 1.0, 'difficult': 1.0, 'definitely': 1.0, 'never': 3.0, 'like': 2.0, 'it': 6.0, 'wrap': 1.0, 'of': 3.0, 'the': 10.0, 'moby': 1.0, 'but': 1.0, 'much': 1.0, 'put': 1.0, 'on': 2.0, 'your': 1.0, 'know': 1.0, 'easy': 1.0, 'we': 2.0, 'a': 3.0, 't': 1.0, 'she': 1.0, 'baby': 4.0, 'both': 1.0, 'used': 1.0, 'multiple': 2.0, 'be': 1.0, 'putting': 1.0, 'i': 4.0, '4': 1.0, 'hang': 1.0, 'months': 1.0, 'first': 1.0, 'this': 3.0, 's': 1.0, 'preferred': 1.0, 'carrier': 1.0, 'san': 1.0, 'closer': 1.0, 'resize': 1.0, 'wrapping': 1.0, 'my': 3.0, 'for': 2.0, 'love': 2.0, '5': 1.0, 'easier': 1.0, 'how': 1.0, 'our': 1.0, 'to': 2.0, 'was': 3.0, 'running': 1.0, 'and': 6.0, 'got': 1.0, 'great': 3.0, 'errands': 1.0, 'don': 1.0, 'up': 1.0, 'when': 2.0, 'you': 2.0, 're': 1.0, 'in': 5.0, 'out': 2.0, 'car': 1.0, 'infant': 1.0, 'insert': 1.0, 'diaper': 1.0, 'is': 2.0, 'because': 1.0, 'that': 2.0, 'fall': 1.0, 'almost': 1.0, 'comforter': 1.0, 'can': 2.0, 'so': 2.0, 'would': 1.0, 'summer': 1.0, 'had': 2.0, 'worked': 1.0, 'felt': 1.0, 'same': 1.0, 'winter': 2.0, 'albeit': 1.0, 'worried': 1.0, 'part': 1.0, 'thick': 1.0, 'during': 1.0, 'cold': 1.0, 'about': 1.0, 'with': 1.0, 'bundle': 1.0, 'use': 1.0, 'diego': 1.0, 'her': 1.0, 'dead': 1.0, 'layers': 1.0, 'which': 1.0, 'made': 1.0, 'times': 1.0, 'frequent': 1.0, 'husband': 2.0, 'changes': 1.0}
Word element => {'buy': 1.0, 'planning': 1.0, 'right': 1.0, 'but': 1.0, 'place': 1.0, 'in': 1.0, 'are': 2.0, 'you': 3.0, 'if': 2.0, 'bit': 1.0, 'a': 1.0, 'months': 1.0, 'ergo': 1.0, 'my': 1.0, 'fit': 1.0, 'feels': 1.0, 'need': 1.0, 'nice': 1.0, 'carrier': 2.0, 'it': 1.0, 'with': 1.0, 'this': 2.0, 'materials': 1.0, 'cushy': 1.0, 'original': 1.0, 'hot': 2.0, 'together': 1.0, 'baby': 2.0, 'to': 1.0, 'look': 1.0, 'now': 1.0, 'its': 2.0, 'infant': 1.0, 'seats': 1.0, 'do': 1.0, 'perfectly': 1.0, 'ergobaby': 1.0, 'and': 4.0, 'very': 2.0, 'the': 2.0, '2': 1.0, 'great': 2.0, 'comfortable': 1.0, 'could': 1.0, 'winter': 1.0, 'bought': 1.0, 'be': 1.0}
Word element => {'adjusted': 1.0, 'didn': 1.0, 'fault': 1.0, 'could': 1.0, 'have': 3.0, 'off': 1.0, 'slipping': 1.0, 'while': 1.0, 'after': 1.0, 'using': 1.0, 'also': 1.0, 'factor': 1.0, 'start': 1.0, 'stars': 1.0, '4': 1.0, 'purchase': 1.0, 'only': 1.0, 'newborn': 1.0, 'as': 1.0, 'personally': 1.0, 'support': 1.0, 'again': 1.0, 'do': 1.0, 'readjust': 1.0, 'and': 1.0, 'opinion': 1.0, 'at': 1.0, 'hang': 1.0, 'got': 1.0, 'times': 2.0, 'properly': 1.0, 'would': 2.0, 'maybe': 1.0, 'w': 5.0, 'does': 2.0, 'higher': 1.0, 'in': 3.0, 'blanket': 2.0, 'bad': 1.0, 'are': 1.0, 'or': 2.0, 'towel': 2.0, 'get': 1.0, 'when': 2.0, 'roll': 1.0, 'overall': 1.0, 'kind': 1.0, 'insert': 5.0, 'folds': 1.0, 'baby': 2.0, 'don': 1.0, 'up': 3.0, 'fastened': 1.0, 'carriers': 1.0, 'buy': 2.0, 'just': 2.0, 'stuff': 1.0, 'make': 1.0, 'feel': 2.0, 'your': 1.0, 'burdensome': 1.0, 'people': 1.0, 'all': 1.0, 'an': 1.0, 'product': 1.0, 'for': 3.0, 'because': 2.0, 'that': 2.0, 'been': 3.0, 'hotter': 1.0, 'had': 4.0, 'it': 13.0, 'thought': 1.0, 'lot': 1.0, 'who': 1.0, 'since': 1.0, 'gave': 2.0, 'ergo': 1.0, 'them': 1.0, 'has': 1.0, 'i': 17.0, 'well': 1.0, 'my': 3.0, 't': 5.0, 'a': 9.0, 'liked': 1.0, 'myself': 1.0, 'to': 6.0, 'job': 1.0, 'they': 1.0, 'love': 1.0, 'bottom': 3.0, 'the': 12.0, 'of': 6.0, 'these': 1.0, 'once': 1.0, 'this': 3.0, 'carrier': 3.0, 'raise': 1.0, 'read': 1.0, 'very': 1.0, 'her': 3.0, 'use': 2.0, 'over': 1.0, 'work': 1.0, 'rolled': 1.0, 'but': 1.0, 'wouldn': 1.0, 'ok': 1.0, 'torso': 1.0, 'wasn': 2.0, 'couple': 2.0, 'experience': 2.0, 'comfortable': 2.0, 'no': 1.0, 'good': 2.0, 'which': 1.0, 'like': 1.0, 'uncomfortable': 1.0, 'still': 2.0, 'if': 3.0, 'you': 1.0, 'where': 1.0, 'especially': 1.0, 're': 1.0, 'wearing': 2.0, 'long': 1.0, 'however': 2.0, 'supporting': 1.0, 'how': 1.0, 'around': 1.0, 'can': 1.0, 'so': 1.0, '1st': 1.0, 'supported': 1.0, 'upper': 1.0, 'head': 1.0, 'was': 2.0, 'be': 1.0, 'd': 4.0, 'heat': 1.0, 'going': 1.0, 'done': 1.0}
Word element => {'small': 1.0, 'use': 1.0, 'got': 1.0, 'we': 1.0, 'for': 2.0, 'big': 1.0, 'too': 1.0, 'necessary': 1.0, 'probably': 1.0, 'and': 1.0, 'months': 2.0, '3': 1.0, 'quickly': 1.0, 'works': 1.0, 'insert': 3.0, 'ergo': 1.0, 'should': 1.0, 'did': 1.0, 'is': 4.0, 'about': 1.0, 'baby': 1.0, 'of': 1.0, 'fairly': 1.0, 'since': 1.0, 'infants': 1.0, '2': 1.0, 'great': 1.0, 'the': 4.0, 'out': 1.0, 'child': 1.0, 'made': 1.0, 'to': 2.0, 'but': 1.0, 'work': 1.0, 'this': 1.0, 'he': 1.0, 'it': 4.0, 'with': 2.0, 'outgrow': 1.0, 'which': 1.0, 'carrier': 1.0, 'our': 1.0, 'way': 1.0, 'seem': 1.0, 'infant': 2.0}
Word element => {'carrier': 1.0, 'anyone': 1.0, 'for': 1.0, 'infant': 1.0, 'with': 1.0, 'have': 1.0, 'ergobaby': 1.0, 'must': 1.0, 'an': 1.0, 'a': 1.0}
Word element => {'able': 1.0, 'were': 1.0, 'while': 1.0, 'down': 1.0, 'slowing': 1.0, 'not': 1.0, 'this': 1.0, '22': 1.0, 'husband': 1.0, 'insert': 2.0, 'wonderfully': 1.0, 'infant': 2.0, 'use': 2.0, 'but': 1.0, 'gift': 1.0, 'we': 1.0, 'a': 2.0, 'baby': 2.0, 'about': 1.0, 'received': 1.0, 'my': 1.0, 'ergo': 1.0, 'the': 4.0, 'great': 1.0, 'you': 1.0, '15': 1.0, 'need': 1.0, 'carrier': 1.0, 'and': 2.0, 'if': 1.0, 'is': 2.0, 'under': 1.0, 'legs': 1.0, 'i': 1.0, 'pounds': 1.0, 'for': 2.0, 'all': 1.0, 'to': 2.0, 'actual': 1.0, 'as': 1.0, 'our': 1.0, 'grew': 1.0, 'inches': 1.0, 'daughter': 1.0, 'it': 4.0, 'month': 1.0, 'she': 2.0, 'worked': 2.0, 'quickly': 1.0, 'at': 2.0, 'out': 1.0, 'because': 1.0, 'so': 1.0, 'long': 1.0, 'in': 1.0, 'birth': 1.0}
Word element => {'for': 1.0, 'star': 1.0, 'extra': 1.0, 'an': 1.0, 'long': 1.0, 'quite': 1.0, 'are': 1.0, 'enough': 1.0, 'legs': 1.0, 'because': 1.0, 'out': 1.0, 'feet': 1.0, 'his': 2.0, 'allows': 1.0, 'secure': 1.0, 'tuck': 1.0, 'and': 2.0, 'height': 1.0, 'itself': 1.0, 'in': 2.0, 'small': 1.0, 'months': 1.0, '12': 1.0, 'gives': 1.0, 'lbs': 1.0, 'him': 2.0, 'it': 3.0, 'moby': 1.0, 'he': 3.0, 'way': 2.0, 's': 1.0, 'a': 1.0, 't': 2.0, 'wrap': 1.0, 'the': 7.0, '2': 1.0, 'stick': 1.0, 'while': 1.0, 'didn': 1.0, 'little': 1.0, 'baby': 1.0, 'ended': 2.0, 'i': 5.0, 'don': 1.0, 'up': 3.0, '34': 2.0, 'of': 1.0, 'me': 1.0, 'not': 1.0, 'all': 1.0, 'to': 2.0, 'seat': 2.0, 'more': 2.0, 'is': 1.0, 'like': 2.0, 'using': 2.0, 'insert': 2.0, 'infant': 1.0, 'much': 1.0, 'so': 2.0, 'bit': 1.0, 'my': 2.0, 'comfortably': 1.0, 'ergo': 1.0, 'was': 1.0, 'now': 1.0, 'that': 1.0, 'larger': 1.0, 'think': 1.0, '3': 1.0, 'feel': 1.0, '1': 1.0, 'use': 1.0, 'really': 1.0, 'portion': 1.0, 'wrapped': 1.0, 'by': 1.0}
Word element => {'best': 1.0, 'had': 1.0, 'winter': 1.0, 'mostly': 1.0, 'uses': 1.0, 'sure': 1.0, 'for': 1.0, 'also': 1.0, 'in': 2.0, 'warm': 1.0, 'little': 1.0, 'she': 1.0, 'but': 1.0, 'placed': 1.0, 'price': 1.0, 'baby': 1.0, 'helps': 1.0, 'the': 3.0, 'a': 1.0, 'it': 1.0, 'this': 2.0, 'with': 1.0, 'amazon': 1.0, 'really': 1.0, 'is': 1.0, 'making': 1.0, 'securely': 1.0, 'my': 1.0, 'ergo': 1.0, 'luckily': 1.0, 'i': 1.0}
Word element => {'of': 1.0, 'use': 1.0, 'get': 1.0, 'not': 1.0, 'may': 1.0, 'longer': 1.0, 'be': 1.0, 'insert': 1.0, 'ergo': 1.0, 'in': 1.0, 'fine': 1.0, 'birth': 1.0, '9': 1.0, 'if': 3.0, 'inches': 2.0, 'had': 2.0, 'was': 3.0, 'any': 1.0, 'our': 1.0, 'to': 1.0, 's': 1.0, 'a': 2.0, 'we': 1.0, 'without': 1.0, 'the': 4.0, 'control': 1.0, '21': 1.0, 'good': 1.0, 'bigger': 1.0, 'at': 1.0, 'would': 1.0, 'about': 1.0, 'been': 1.0, '12bs': 1.0, 'you': 2.0, 'lbs': 1.0, 'baby': 3.0, 'quality': 1.0, 'now': 2.0, 'weeks': 1.0, 'but': 1.0, 'have': 2.0, 'useful': 1.0, 'by': 1.0, 'and': 2.0, 'too': 2.0, 'smaller': 1.0, 'so': 1.0, 'time': 1.0, 'enough': 1.0, 'head': 1.0, 'much': 1.0, 'try': 1.0, 'already': 1.0, 'this': 2.0, 'she': 4.0, 'it': 1.0, 'out': 2.0, '6': 1.0, 'big': 1.0, 'product': 1.0, 'for': 1.0, 'warned': 1.0, 'is': 1.0, '24': 1.0}
Word element => {'swaddled': 1.0, 'that': 1.0, 'babies': 1.0, 'son': 1.0, 'is': 1.0, 'my': 1.0, 'just': 1.0, 'old': 1.0, 'to': 2.0, 'product': 1.0, 'be': 3.0, 'good': 2.0, 'tightly': 1.0, 'a': 1.0, 'but': 1.0, 'doesn': 1.0, 'quality': 1.0, 'like': 2.0, '2': 1.0, 't': 1.0, 'it': 1.0, 'this': 1.0, 'months': 1.0, 'constrained': 1.0, 'may': 1.0, 'for': 1.0}
Word element => {'summer': 1.0, 'hot': 1.0, 'like': 1.0, 'seems': 1.0, 'his': 1.0, 'favorite': 1.0, 'is': 3.0, 'thing': 1.0, 'this': 1.0, 'now': 2.0, 'day': 1.0, 'second': 1.0, 'but': 1.0, 'wrong': 1.0, 'was': 1.0, 'as': 2.0, 'to': 4.0, 'lbs': 1.0, 'am': 1.0, 'easily': 2.0, 'put': 1.0, 'instantly': 1.0, 'only': 1.0, 'much': 1.0, 'do': 1.0, 'con': 1.0, 'get': 1.0, 'whenever': 1.0, 'started': 1.0, 'baby': 3.0, 'took': 1.0, 'tries': 2.0, 'putting': 1.0, 'him': 3.0, 'it': 11.0, 'he': 3.0, 'with': 3.0, 'in': 4.0, 'insert': 1.0, 'taking': 1.0, 'able': 1.0, 'stuck': 1.0, 'first': 4.0, 'swaddles': 1.0, 'yesterday': 1.0, 'after': 1.0, 'falls': 1.0, 'purchase': 1.0, 'my': 3.0, 'that': 1.0, 'gave': 2.0, 'and': 4.0, 'too': 1.0, 'asleep': 1.0, 'turns': 1.0, 'the': 5.0, 'myself': 1.0, 's': 1.0, 'a': 1.0, 'by': 1.0, 'just': 2.0, 'few': 1.0, '13': 1.0, 'at': 1.0, 'i': 8.0, 'two': 1.0, 'used': 1.0, 'love': 1.0, 'actually': 1.0, 'sad': 1.0, 'out': 2.0, 'story': 1.0, 'son': 1.0, 'legs': 1.0, 'crying': 1.0, 'up': 2.0, 'of': 2.0}
Word element => {'he': 3.0, 'it': 2.0, 'this': 1.0, 'his': 1.0, 'even': 1.0, 'walking': 1.0, 'fussing': 1.0, 'uncomfortable': 1.0, 'but': 1.0, 'with': 1.0, 'red': 1.0, 'put': 1.0, 'think': 1.0, 'not': 1.0, 'just': 1.0, 'baby': 1.0, 'don': 1.0, 'little': 1.0, 'falls': 1.0, 'gets': 1.0, 'when': 3.0, 'i': 1.0, 'hot': 2.0, 'the': 3.0, 'basically': 1.0, 'using': 1.0, 'insert': 3.0, 'is': 1.0, 'really': 1.0, 'second': 1.0, 'warm': 1.0, 'soon': 1.0, 'and': 2.0, 't': 1.0, 's': 2.0, 'a': 1.0, 'we': 3.0, 'take': 1.0, 'him': 4.0, 'stops': 1.0, 'out': 1.0, 'skin': 1.0, 'swaddles': 1.0, 'so': 1.0, 'tightly': 1.0, 'start': 1.0, 'right': 1.0, 'usually': 1.0, 'in': 2.0, 'as': 2.0, 'sleep': 1.0, 'outside': 1.0, 'to': 1.0}
Word element => {'is': 1.0, 's': 1.0, 'infant': 1.0, 'i': 1.0, 'easier': 1.0, 'gets': 1.0, 'this': 1.0, 'with': 1.0, 'first': 1.0, 'uses': 1.0, 'on': 1.0, 'insert': 1.0, 'tricky': 1.0, 'head': 1.0, 'easily': 1.0, 'new': 1.0, 'born': 1.0, 'in': 1.0, 'safe': 1.0, 'carry': 1.0, 'feel': 1.0, 'keeping': 1.0, 'to': 4.0, 'me': 1.0, 'and': 2.0, 'the': 1.0, 'be': 1.0, 'allows': 1.0, 'my': 4.0, 'ergo': 1.0, 'hands': 1.0, 'baby': 1.0, 'safely': 1.0, 'little': 1.0, 'free': 1.0, 'tend': 1.0, 'secure': 1.0, 'but': 1.0, 'toddler': 1.0, 'can': 1.0, 'a': 1.0}
Word element => {'years': 1.0, 'another': 1.0, 'him': 1.0, 'see': 1.0, 'loves': 1.0, 'of': 2.0, 'tub': 1.0, 'for': 1.0, 'liked': 1.0, 'the': 3.0, 'my': 1.0, 'in': 1.0, 'playing': 2.0, 'this': 2.0, 'he': 2.0, 'with': 2.0, 'is': 1.0, 'science': 1.0, 'couple': 1.0, 'and': 3.0, 'loved': 1.0, 'feel': 1.0, 'goggles': 1.0, 'son': 1.0, 'test': 1.0, 'can': 1.0, 'tubes': 1.0, 'six': 1.0, 'i': 1.0}
Word element => {'sweating': 1.0, 'without': 1.0, 'snuggle': 1.0, 'cool': 1.0, 'enough': 1.0, 'comfy': 1.0, 'and': 1.0, 'blankets': 1.0, 'baby': 1.0, 'these': 1.0, 'is': 1.0, 'for': 1.0, 'love': 1.0, 'that': 1.0, 'even': 1.0, 'when': 1.0, 'enjoys': 1.0, 's': 1.0, 'warm': 1.0, 'very': 1.0, 'outside': 1.0, 'it': 2.0, 'he': 1.0, 'absolutely': 1.0, 'still': 1.0, 'to': 1.0}
Word element => {'new': 1.0, 'any': 1.0, 'buy': 1.0, 'lot': 2.0, 'bigger': 1.0, 'a': 2.0, 's': 2.0, 'blanket': 2.0, 'not': 3.0, 'and': 2.0, 'too': 3.0, 'daughter': 1.0, 'genders': 1.0, 'than': 1.0, 'this': 2.0, 'she': 1.0, 'it': 4.0, 'with': 1.0, 'light': 1.0, 'by': 1.0, 'thrilled': 1.0, 'far': 1.0, 'favorite': 1.0, 'is': 2.0, 'heavy': 1.0, 'imagined': 1.0, 'synthetic': 1.0, 'my': 2.0, 'for': 3.0, 'neutral': 1.0, 'like': 1.0, 'which': 1.0, 'of': 1.0, 'baby': 2.0, 'about': 1.0, 'd': 1.0, 'both': 1.0, 'price': 1.0, 'blankets': 1.0, 'safe': 1.0, 'time': 1.0, 'so': 1.0, 'i': 4.0, 'great': 1.0, 'feel': 1.0, 'chewing': 1.0, 'on': 1.0, 'or': 1.0, 'falls': 1.0, 'asleep': 1.0, 'again': 1.0, 'when': 1.0, 'am': 1.0}
Word element => {'we': 1.0, 'i': 1.0, 'parents': 1.0, 'love': 1.0, 'one': 1.0, 'which': 1.0, 'bought': 2.0, 'to': 1.0, 'made': 1.0, 'weight': 1.0, 'me': 1.0, 'and': 2.0, 'but': 1.0, 'quality': 1.0, 'blankets': 1.0, 'size': 1.0, 'great': 1.0, 'the': 1.0, 'is': 3.0, 'you': 2.0, 's': 1.0, 'perfect': 2.0, 'blanket': 1.0, 'only': 1.0, 'he': 1.0, 'with': 1.0, 'it': 3.0, 'this': 2.0, 'have': 1.0, 'when': 1.0, 'a': 2.0, 'highly': 1.0, 'about': 1.0, 'ask': 1.0, 'baby': 1.0, 'end': 1.0, 'recommend': 1.0, 'store': 1.0, 'home': 1.0, 'lot': 1.0, 'always': 1.0, 'up': 1.0, 'of': 1.0, 'from': 1.0}
Word element => {'yay': 1.0, 'nursing': 1.0, 'use': 1.0, 'cover': 1.0, 'enough': 1.0, 'big': 1.0, 'said': 1.0, 'it': 1.0, 'she': 1.0, 'friend': 1.0, 'kept': 1.0, 'gift': 1.0, 's': 1.0, 'a': 2.0, 'one': 2.0, 'part': 1.0, 'same': 1.0, 'by': 1.0, 'loves': 1.0, 'gave': 1.0, 'softer': 1.0, 'baby': 1.0, 'compare': 1.0, 'on': 1.0, 'can': 1.0, 'blankets': 1.0, 'i': 3.0, '4': 1.0, 'two': 1.0, 'hers': 1.0, 'line': 1.0, 'edging': 1.0, 'super': 1.0, 'fun': 1.0, 'this': 3.0, 'as': 2.0, 'to': 3.0, 'layers': 1.0, 'buying': 1.0, 'only': 1.0, 'much': 1.0, 'pack': 1.0, 'the': 4.0, 'of': 2.0, 'stroller': 1.0, 'also': 1.0, 'will': 1.0, 'target': 1.0, 'aden': 1.0, 'are': 1.0, 'blanket': 2.0, 'like': 1.0, 'is': 2.0, 'really': 1.0, 'bigger': 1.0, 'too': 1.0, 'sold': 1.0, 'and': 4.0, 'for': 1.0, 'my': 2.0, 'regret': 1.0, 'anais': 1.0, 'chew': 1.0, 'you': 1.0, 'those': 1.0, 'not': 1.0}
Word element => {'lovely': 1.0, 'price': 1.0, 'resist': 1.0, 'baby': 1.0, 'thicker': 1.0, 'beautifully': 1.0, 'muslin': 1.0, 'of': 1.0, 'what': 1.0, 'box': 1.0, 'blanket': 2.0, 'amazon': 1.0, 'in': 1.0, 'regular': 1.0, 'is': 2.0, 'to': 1.0, 'was': 1.0, 'inches': 1.0, 'layers': 1.0, 'i': 1.0, 'open': 1.0, 'today': 1.0, 'x': 1.0, 'wrap': 1.0, 'the': 4.0, '2': 1.0, 'affordable': 1.0, 'and': 4.0, 'couldn': 1.0, 'packaged': 1.0, 'so': 2.0, 'swaddle': 1.0, '44': 2.0, 'happy': 1.0, 'cellophane': 1.0, 'with': 1.0, 'it': 1.0, 'nice': 1.0, 'hanger': 1.0, 'a': 2.0, 't': 1.0, 's': 1.0, 'than': 1.0, 'has': 1.0, 'perfect': 1.0, 'soft': 1.0, 'size': 1.0, 'for': 1.0}
Word element => {'gift': 1.0, 'great': 1.0, 'shower': 1.0, 'make': 1.0, 'to': 1.0, 'this': 1.0, 'recommend': 1.0, 'bigger': 1.0, 'i': 2.0, 'all': 1.0, 'than': 1.0, 'thought': 1.0, 'just': 1.0, 'would': 2.0, 'like': 1.0, 'a': 2.0, 'washed': 1.0, 'dream': 1.0, 'gorgeous': 1.0}
Word element => {'light': 1.0, 'knowing': 1.0, 'blanket': 1.0, 'even': 1.0, 'stroller': 1.0, 'without': 1.0, 'love': 1.0, 'one': 1.0, 'i': 3.0, 'bought': 1.0, 'it': 2.0, 'this': 2.0, 'use': 1.0, 'loved': 1.0, 'brand': 1.0, 'heavy': 1.0, 'the': 1.0, 'my': 1.0, 'and': 1.0, 'in': 1.0, 's': 1.0, 'not': 2.0, 'daughter': 1.0, 'too': 2.0}
Word element => {'recommended': 1.0, 'for': 1.0, 'size': 1.0, 'good': 1.0, 'breathable': 1.0, 'years': 1.0, 'highly': 2.0, 'and': 1.0, 'old': 1.0, 'touch': 1.0, 'soft': 1.0, 'very': 1.0, 'expectation': 1.0, 'after': 1.0, 'some': 1.0, 'no': 1.0, 'because': 1.0, 'this': 2.0, 'blankie': 1.0, 'reviews': 1.0, 'hesitant': 1.0, 'blanket': 1.0, 'exceeded': 1.0, 'bit': 1.0, 'a': 1.0, 'to': 1.0, 'buying': 2.0, 'was': 1.0, 'felt': 1.0, 'is': 1.0, 'dream': 1.0, 'far': 2.0, '5': 1.0, 'say': 1.0, 'than': 1.0, 'but': 1.0, '2': 1.0, 'more': 1.0, 'the': 1.0, 'in': 1.0, 'inferior': 1.0, 'my': 2.0, 'regret': 1.0}
Word element => {'expected': 1.0, 'than': 1.0, 'complain': 1.0, 'can': 1.0, 'so': 1.0, 'muslin': 1.0, 'and': 1.0, 'tho': 1.0, 'kind': 1.0, 'still': 2.0, 'anais': 2.0, 'which': 1.0, 'aden': 3.0, 'thought': 1.0, 'was': 2.0, 'by': 1.0, 's': 2.0, 't': 2.0, 'the': 1.0, 'it': 4.0, 'love': 1.0, 'of': 1.0, 'thinner': 1.0, 'good': 1.0, 'real': 1.0, 'a': 2.0, 'since': 1.0, 'i': 2.0, 'disappointment': 1.0, 'stuff': 1.0, 'wasn': 1.0, 'blanket': 1.0}
Word element => {'boys': 1.0, 'little': 1.0, 'both': 1.0, 'for': 1.0, 'this': 1.0, 'blanket': 1.0, 'girls': 1.0, 'then': 1.0, 'adorable': 1.0, 'designs': 1.0, 'much': 1.0, 'larger': 1.0, 'super': 1.0, 'was': 1.0, 'expected': 1.0, 'soft': 1.0, 'and': 2.0, 'are': 1.0, 'the': 1.0}
Word element => {'set': 1.0, 'jungle': 1.0, 'swaddle': 1.0, 'on': 1.0, 'jam': 1.0, 'care': 1.0, 'you': 1.0, 'washes': 1.0, 'three': 1.0, 'through': 2.0, 'that': 2.0, 'been': 1.0, 'has': 1.0, 'first': 1.0, 'with': 1.0, 'eye': 1.0, 'nicu': 1.0, 'also': 1.0, 'spit': 1.0, 'item': 1.0, 'was': 1.0, 'to': 2.0, 'in': 1.0, 'for': 3.0, 'love': 1.0, 'bought': 1.0, 'draping': 1.0, 'variety': 1.0, 'i': 4.0, 'her': 2.0, 'spoiled': 1.0, 'part': 1.0, 'pleasing': 1.0, 'while': 1.0, 'aden': 1.0, 'which': 1.0, 'the': 11.0, 'my': 1.0, 'if': 1.0, 'everything': 1.0, 'print': 2.0, 'items': 1.0, 'comes': 1.0, 'more': 1.0, 'is': 4.0, 'holding': 1.0, 'rest': 1.0, 'have': 2.0, 'fine': 1.0, 'tummy': 1.0, 's': 2.0, 'this': 1.0, 'perfect': 1.0, 'swaddling': 2.0, 'adds': 1.0, 'during': 1.0, 'colder': 1.0, 'it': 4.0, 'she': 1.0, 'nights': 1.0, 'up': 2.0, 'child': 1.0, 'over': 1.0, 'stroller': 1.0, 'and': 2.0, 'time': 1.0, 'only': 1.0, 'much': 1.0, 'mishaps': 1.0, 'thicker': 1.0, 'anais': 1.0, 'than': 2.0, 'monkey': 2.0, 'but': 1.0, 'blankets': 1.0, 'of': 2.0}
Word element => {'toddler': 1.0, 'great': 1.0, 'less': 1.0, 'worried': 1.0, 'which': 1.0, 'separating': 1.0, 'about': 1.0, 'no': 1.0, 'washes': 1.0, 'this': 2.0, 'from': 1.0, 'to': 1.0, 'patterns': 1.0, 'many': 1.0, 'not': 1.0, 'these': 1.0, 'well': 1.0, 'has': 2.0, 'it': 3.0, 'with': 2.0, 'bed': 1.0, 'for': 4.0, 'size': 4.0, 'blanket': 3.0, 'happy': 1.0, 'layers': 1.0, 'very': 1.0, 'year': 1.0, 'was': 2.0, 'couldn': 1.0, 'the': 5.0, 'my': 1.0, 'lightweight': 1.0, 'overall': 1.0, 'decide': 1.0, 'between': 1.0, 'generous': 1.0, 'so': 1.0, 'use': 1.0, 'stroller': 2.0, '2': 1.0, 'but': 4.0, 'naps': 1.0, 'i': 3.0, 'or': 1.0, 'dream': 2.0, 'bedtime': 1.0, 'plenty': 1.0, 'we': 1.0, 't': 1.0, 's': 1.0, 'a': 2.0, 'her': 2.0, '20': 1.0, 'room': 1.0, 'old': 1.0, 'warm': 1.0, 'around': 1.0, 'is': 1.0, 'heated': 1.0, 'should': 1.0, 'chooes': 1.0, 'toddlers': 1.0, 'keep': 1.0, 'in': 1.0, 'r': 1.0, 'anyway': 1.0, 'babies': 1.0, 'winter': 1.0, 'us': 1.0}
Word element => {'due': 1.0, 'frazzled': 1.0, 'thicker': 1.0, 'better': 1.0, 'not': 1.0, 'and': 2.0, 'softer': 2.0, 'washes': 1.0, 'gets': 2.0, 'wash': 1.0, 'each': 1.0, 'after': 1.0, 'seems': 1.0, 'it': 1.0, 'nights': 1.0, 'colors': 1.0, 'summer': 1.0, 'hot': 1.0, 'during': 1.0, 'think': 1.0, 'on': 1.0, 'they': 1.0, 'delicate': 1.0, 'm': 1.0, 'the': 7.0, 'sewn': 1.0, 'mom': 1.0, 'swear': 1.0, 'average': 1.0, 'products': 1.0, 'of': 2.0, 'muslin': 2.0, 'with': 2.0, 'much': 1.0, 'do': 1.0, 'its': 3.0, 'as': 1.0, 'to': 3.0, 'all': 2.0, 'i': 5.0, 'two': 1.0, 'but': 1.0, 'blankets': 1.0, 'airy': 1.0, 'addicted': 1.0, 'aden': 1.0, 'dream': 3.0, 'than': 2.0, 'anais': 1.0, 'so': 1.0, 'first': 1.0, 'swaddles': 1.0, 'this': 3.0, 'soft': 1.0, 'a': 2.0, 'have': 2.0, 'must': 1.0, 'fade': 1.0, 'are': 2.0, 'blanket': 3.0, 'like': 1.0, 'sleeps': 1.0, 'more': 1.0, 'say': 1.0, 'is': 3.0, '44x44': 1.0, 'quite': 1.0, 'together': 1.0, 'yet': 1.0, 'my': 1.0, 'layers': 1.0, 'little': 2.0, 'girl': 1.0, 'large': 2.0, 'just': 2.0}
Word element => {'my': 1.0, 'favorite': 1.0, 'far': 1.0, 'by': 1.0, 'have': 1.0, 'this': 1.0, 'spring': 1.0, 'for': 1.0, 'weight': 1.0, 'are': 1.0, 'is': 1.0, 'everyday': 1.0, 'perfect': 1.0, 'blanket': 2.0, 'of': 1.0, 'the': 1.0, 'these': 1.0, 'they': 1.0, 'and': 2.0, 'them': 1.0, 'use': 1.0, 'every': 1.0, 'i': 1.0, 'night': 1.0, 'two': 1.0, 'super': 1.0, 'soft': 1.0}
Word element => {'newborn': 1.0, 'and': 2.0, 'aden': 1.0, 'very': 1.0, 'from': 1.0, 'think': 1.0, 'purchased': 1.0, 'be': 1.0, 'have': 1.0, 'i': 2.0, 'like': 1.0, 'blanket': 1.0, 'warm': 1.0, 'the': 1.0, 'my': 1.0, 'anais': 1.0, 'is': 1.0, 'really': 1.0, 'first': 1.0, 'this': 1.0, 'it': 2.0, 'that': 1.0, 'will': 1.0, 'for': 1.0}
Word element => {'recommend': 1.0, 'thickness': 1.0, 'size': 1.0, 'larger': 1.0, 'the': 2.0, 'love': 1.0, 'blanket': 2.0, 'impressed': 1.0, 'i': 2.0, 's': 1.0, 'absolutely': 1.0, 'cute': 1.0, 'price': 1.0, 'functional': 1.0, 'well': 1.0, 'a': 1.0, 'as': 1.0, 'quality': 1.0, 'was': 1.0, 'this': 2.0, 'it': 1.0, 'with': 1.0, 'of': 2.0, 'definite': 1.0}
Word element => {'definitely': 1.0, 'being': 1.0, 'worth': 1.0, 'she': 1.0, 'and': 1.0, 'soft': 1.0, 'covered': 1.0, 'so': 1.0, 'i': 1.0, 'blanket': 1.0, 'bought': 1.0, 'the': 1.0, 'my': 1.0, 'loves': 1.0, 'this': 1.0, 'for': 1.0, 'daughter': 1.0, 'we': 1.0, 'money': 1.0, 'it': 4.0, 'love': 1.0, 'with': 1.0, 'is': 1.0}
Word element => {'for': 2.0, 'additional': 1.0, 'one': 2.0, 'bought': 1.0, 'great': 1.0, 'parent': 1.0, 'house': 2.0, 'off': 1.0, 'blanket': 2.0, 'of': 2.0, 'aden': 2.0, 'about': 2.0, 'don': 1.0, 'price': 2.0, 'is': 1.0, 'it': 5.0, 'this': 2.0, 'with': 1.0, 'otherwise': 1.0, 'i': 3.0, 'you': 2.0, 'a': 1.0, 's': 4.0, 't': 2.0, 'so': 1.0, 'softness': 1.0, 'durability': 1.0, 'the': 3.0, 'careful': 1.0, 'my': 1.0, 'company': 1.0, 'brand': 2.0, 'an': 2.0, 'will': 1.0, 'care': 2.0, 'name': 1.0, 'have': 1.0, 'and': 3.0, 'much': 2.0, 'do': 1.0, 'get': 1.0, 'what': 1.0, 'but': 1.0, 'can': 1.0, 'true': 1.0, 'better': 1.0, 'if': 1.0, 'anais': 1.0, 'than': 1.0, 'at': 1.0, 'be': 1.0, 'our': 1.0, 'to': 1.0, 'as': 1.0, 'velcro': 1.0, 'snag': 1.0, 'washed': 1.0, 'stuff': 1.0, 'on': 1.0}
Word element => {'another': 1.0, 'time': 1.0, 'will': 1.0, 'sure': 1.0, 'out': 1.0, 'soft': 1.0, 'white': 1.0, 'softer': 1.0, 'plain': 1.0, 'other': 2.0, 'stripes': 1.0, 'stars': 1.0, 'summer': 1.0, 'fl': 1.0, 'only': 1.0, 'south': 1.0, 'or': 1.0, 'thick': 1.0, 'weight': 1.0, 'now': 1.0, 'outgrown': 1.0, 'and': 10.0, 'nap': 1.0, 'blanket': 1.0, 'blankies': 1.0, 'muslin': 1.0, 'sort': 1.0, 'into': 1.0, 'been': 1.0, 'center': 1.0, 'as': 2.0, 'to': 3.0, 'using': 1.0, 'like': 3.0, 'very': 1.0, 'cannot': 1.0, 'anyway': 1.0, 'her': 2.0, 'side': 1.0, 'which': 1.0, 'made': 1.0, 'started': 1.0, 'she': 2.0, 'it': 7.0, '4': 1.0, 'threads': 1.0, 'claimed': 1.0, 'around': 1.0, 'downside': 1.0, 'old': 2.0, 'bedtime': 1.0, 'gathering': 1.0, 'right': 1.0, 'oh': 3.0, 'since': 1.0, 'is': 4.0, 'at': 2.0, 'pictured': 1.0, 'a': 10.0, 'items': 1.0, 'bunny': 1.0, 'stage': 1.0, 'losing': 1.0, 'going': 1.0, 'my': 3.0, 'swaddle': 3.0, 'nice': 2.0, 'two': 2.0, 'little': 1.0, 'pack': 2.0, 'born': 1.0, 'have': 1.0, 'm': 1.0, 'in': 3.0, 'by': 1.0, 'asked': 1.0, 'lovey': 2.0, 'ordered': 2.0, 'daughter': 3.0, 'about': 2.0, 'tie': 1.0, 'years': 1.0, 'package': 1.0, 'especially': 1.0, 'girl': 2.0, 'edges': 2.0, 'blankets': 3.0, 'bound': 1.0, 'but': 2.0, 'was': 3.0, 'get': 1.0, 'months': 2.0, '12': 1.0, 'over': 2.0, 'rotate': 1.0, 'up': 1.0, 'just': 3.0, 'tying': 1.0, 'on': 3.0, 'knot': 1.0, 'thin': 1.0, 'bwankie': 1.0, 'kind': 1.0, 'eared': 1.0, 'i': 8.0, 'well': 2.0, 'them': 1.0, 'has': 2.0, 'of': 4.0, 'the': 13.0, 'doing': 1.0, 'isn': 1.0, 'served': 1.0, 'us': 1.0, 'until': 1.0, 'when': 1.0, 'developed': 1.0, 'saw': 1.0, 'holes': 1.0, 'fraying': 1.0, 'wants': 1.0, 'buy': 1.0, 't': 1.0, 'ago': 2.0, 'replacement': 1.0, 'we': 1.0, 'then': 1.0, 'took': 1.0, 'this': 3.0, 'thicker': 1.0, 'nights': 1.0, 'away': 1.0, 'not': 3.0, 'for': 2.0, 'pattern': 1.0, 'too': 1.0, 'one': 4.0, 'ones': 1.0, 'granted': 1.0, 'before': 1.0, 'really': 2.0}
Word element => {'use': 1.0, 'mind': 1.0, 'summer': 1.0, 'it': 1.0, 'to': 1.0, 'mother': 1.0, 'breathable': 1.0, 'feels': 1.0, 'buy': 1.0, 'comfortable': 1.0, 'assured': 1.0, 'a': 1.0, 'lot': 1.0, 'rest': 1.0, 'of': 1.0, 'suitable': 1.0, 'very': 2.0, 'blankets': 1.0, 'for': 1.0}
Word element => {'existing': 1.0, 'can': 1.0, 'than': 1.0, 'equipment': 1.0, 'new': 1.0, 'more': 1.0, 'buy': 1.0, 'have': 1.0, 't': 1.0, 'didn': 1.0, 'stroller': 1.0, 'glad': 1.0, 'baby': 1.0, 'by': 1.0, 'use': 2.0, 'arrived': 1.0, 'out': 1.0, 'pleasantly': 1.0, 'and': 3.0, '1': 1.0, 'snaps': 1.0, 'between': 1.0, 'despite': 1.0, 'attachment': 1.0, 'this': 2.0, 'with': 1.0, 'it': 1.0, 'still': 1.0, 'being': 1.0, 'at': 1.0, 'expected': 1.0, 'delivery': 1.0, '1month': 1.0, 'to': 1.0, 'seat': 1.0, 'no2': 1.0, 'ordered': 1.0, 'surprised': 1.0, 'of': 2.0, '3months': 1.0, 'my': 2.0, 'on': 1.0, 'clips': 1.0, 'easy': 1.0, 'like': 1.0, 'am': 1.0, 'when': 1.0, 'easily': 1.0, 'the': 1.0, 'anywhere': 1.0, 'bassinet': 1.0, 'i': 3.0, 'already': 1.0, 'for': 2.0, 'had': 1.0, 'swift': 1.0, 'chicco': 1.0, 'keyfit': 1.0, 'car': 1.0, 'in': 1.0, 'secure': 1.0, 'seems': 1.0, 'although': 1.0, 'stock': 1.0, 'waiting': 1.0}
Word element => {'months': 1.0, 'few': 1.0, 'a': 1.0, 'see': 1.0, 'can': 1.0, 'and': 1.0, 'lasting': 1.0, 's': 1.0, 'price': 1.0, 'great': 1.0, 'the': 1.0, 'fits': 1.0, 'but': 1.0, 'of': 1.0, 'nephew': 1.0, 'course': 1.0, 'bath': 1.0, 'month': 1.0, 'him': 2.0, 'one': 1.0, 'for': 3.0, 'i': 1.0, 'old': 1.0, 'being': 1.0, 'my': 1.0, 'bought': 1.0, 'large': 1.0, 'loves': 1.0, 'he': 1.0, 'with': 1.0, 'it': 3.0, 'this': 2.0, 'bundled': 1.0, 'after': 1.0, 'his': 1.0}
Word element => {'dissatisfying': 1.0, 'broken': 1.0, 'final': 1.0, 'after': 1.0, 'wasnt': 1.0, 'dollars': 1.0, '40': 1.0, 'for': 1.0, 'main': 1.0, 'until': 1.0, 'big': 1.0, 'of': 1.0, 'machine': 1.0, 'was': 5.0, 'had': 1.0, 'bathrobe': 2.0, 'out': 1.0, 'immediately': 1.0, 'set': 1.0, 'noticed': 1.0, 'made': 1.0, 'live': 1.0, 'that': 1.0, 'i': 4.0, 'washing': 1.0, 'wash': 2.0, 'apart': 1.0, 'everything': 1.0, 'this': 5.0, 'with': 1.0, 'costs': 1.0, 'before': 1.0, 'were': 1.0, 'low': 1.0, 'upon': 1.0, 'the': 5.0, 'holes': 1.0, 'purchase': 2.0, 'my': 3.0, 'in': 2.0, 'arrives': 1.0, 'them': 3.0, 'baby': 2.0, 'all': 1.0, 'any': 1.0, 'slippers': 1.0, 'about': 1.0, 'including': 1.0, 'from': 4.0, 'shipping': 2.0, 'fabric': 1.0, 'torn': 1.0, 'taking': 1.0, 'spinning': 1.0, 'very': 2.0, 'ripped': 1.0, 'and': 6.0, 'get': 1.0, 'discovered': 1.0, 'a': 1.0, 'gentle': 1.0, 'down': 1.0, 'doubt': 1.0, 'amazon': 1.0, 'use': 1.0, 'item': 1.0, 'cycle': 1.0, 'also': 1.0, 'will': 1.0, 'europe': 1.0}
Word element => {'fast': 1.0, 'price': 1.0, 'for': 1.0, 'think': 1.0, 'were': 1.0, 'on': 1.0, 'details': 1.0, 'great': 1.0, 'the': 2.0, 'constructed': 1.0, 'satisfied': 1.0, 'we': 1.0, 'needed': 1.0, 'his': 1.0, 'new': 1.0, 'well': 2.0, 'a': 2.0, 'really': 1.0, 'felt': 1.0, 'my': 1.0, 'nephew': 1.0, 'robe': 1.0, 'little': 1.0, 'done': 1.0, 'and': 4.0, 'found': 1.0, 'it': 2.0, 'this': 1.0, 'set': 1.0, 'searched': 1.0, 'affordable': 1.0, 'shipping': 1.0, 'brother': 1.0, 'very': 3.0, 'adorable': 1.0, 'was': 2.0, 'to': 1.0, 'product': 1.0, 'be': 1.0, 'seems': 1.0, 'pretty': 1.0}
Word element => {'from': 1.0, 'would': 1.0, 'seller': 1.0, 's': 1.0, 'super': 1.0, 'scratchy': 1.0, 'rough': 1.0, 'material': 1.0, 'just': 1.0, 'kinda': 1.0, 'that': 1.0, 'came': 1.0, 'cute': 2.0, 'again': 2.0, 'are': 1.0, 'is': 2.0, 'wouldn': 1.0, 'it': 3.0, 'shower': 1.0, 'with': 1.0, 'this': 1.0, 'buy': 2.0, 'i': 2.0, 'got': 1.0, 'for': 1.0, 'a': 1.0, 'baby': 1.0, 't': 1.0, 'the': 3.0, 'booties': 1.0}
Word element => {'be': 1.0, 'times': 1.0, '3': 1.0, 'to': 3.0, 'son': 1.0, 'is': 1.0, 'with': 1.0, 'expect': 1.0, 'told': 1.0, 'other': 1.0, 'my': 2.0, 'the': 4.0, 'take': 2.0, 'swimming': 1.0, 'i': 1.0, 'us': 1.0, 'a': 1.0, 'week': 1.0, 'robe': 2.0, 'perfect': 1.0, 'baby': 1.0, 'bigger': 1.0, 'she': 1.0, 'pool': 1.0, 'wife': 1.0, 'that': 1.0}
Word element => {'dolls': 1.0, 'baby': 1.0, 'bor': 1.0, 'them': 1.0, 'cute': 1.0, 'ago': 1.0, 'years': 1.0, 'pins': 1.0, 'use': 1.0, 'diapers': 1.0, 'my': 2.0, 'are': 2.0, 'what': 1.0, 'i': 2.0, 'they': 1.0, 'these': 1.0, 'used': 1.0, 'sons': 1.0, '50': 1.0, 'on': 1.0}
Word element => {'purpose': 1.0, 'the': 1.0, 'durable': 1.0, 'very': 1.0, 'get': 1.0, 'pin': 1.0, 'and': 3.0, 'them': 2.0, 'their': 1.0, 'that': 1.0, 'have': 1.0, 'with': 1.0, 'it': 2.0, 'be': 1.0, 'laundered': 1.0, 's': 1.0, 'do': 2.0, 'tiny': 1.0, 'mate': 1.0, 'now': 1.0, 'was': 1.0, 'use': 2.0, 'are': 2.0, 'used': 1.0, 'these': 1.0, 'they': 2.0, 'old': 1.0, 'makes': 1.0, 'socks': 4.0, 'together': 1.0, 'actually': 1.0, 'for': 5.0, 'in': 1.0, 'all': 1.0, 'to': 4.0, 'college': 1.0, 'my': 1.0, 'happy': 1.0, 'ducks': 1.0, 'son': 1.0, 'year': 1.0, 'i': 5.0, '4': 1.0, 'can': 1.0, 'allows': 1.0, 'this': 1.0, 'lost': 1.0, 'find': 1.0, 'when': 1.0, 'easily': 1.0, 'someone': 1.0}
Word element => {'loved': 1.0, 'friend': 1.0, 'and': 1.0, 'gift': 1.0, 'my': 1.0, 'shower': 1.0, 'them': 1.0, 'a': 1.0, 'came': 1.0, 'no': 1.0, 'on': 1.0, 'time': 1.0, 'chose': 1.0, 'for': 1.0, 'isssues': 1.0, 'i': 1.0, 'these': 1.0, 'baby': 1.0, 'little': 1.0, 'everything': 1.0, 'pins': 1.0}
Word element => {'something': 1.0, 'in': 1.0, 'invest': 1.0, 'bucks': 1.0, 'spend': 1.0, 'newborn': 1.0, 'not': 1.0, 'of': 1.0, 'good': 1.0, 'more': 1.0, 'drying': 1.0, 'small': 1.0, 'quality': 1.0, 'very': 1.0, 'and': 2.0, 'few': 1.0, 'soaked': 1.0, 'a': 2.0, 'thin': 1.0, 'better': 1.0, 'gets': 1.0, 'when': 1.0}
Word element => {'price': 1.0, 'works': 1.0, 'used': 1.0, 'have': 1.0, 'sizes': 1.0, 'adjust': 1.0, 'insert': 1.0, 'pleased': 1.0, 'large': 1.0, 'and': 2.0, 'so': 1.0, 'small': 1.0, 'well': 1.0, 'see': 1.0, 'a': 1.0, 'came': 1.0, 'as': 2.0, 'would': 1.0, 'not': 2.0, 'to': 1.0, 'was': 1.0, 'received': 1.0, 'much': 1.0, 'am': 1.0, 'how': 3.0, 'for': 1.0, 'yet': 1.0, 'love': 1.0, 'far': 1.0, 'soon': 1.0, 'sure': 1.0, 'generic': 1.0, 'cloth': 1.0, 'i': 8.0, 'in': 1.0, 'but': 2.0, 'like': 2.0, 'package': 1.0, 'product': 1.0, 'fell': 1.0, 'this': 1.0, 'it': 5.0, 'with': 3.0, 'opened': 1.0, 'diaper': 1.0, 'the': 3.0}
Word element => {'sleeping': 1.0, 'fine': 1.0, 'baby': 1.0, 'correctly': 1.0, 'sides': 1.0, 'out': 1.0, 'options': 2.0, 'two': 1.0, '4': 1.0, 'i': 2.0, 'and': 4.0, 'the': 3.0, 'have': 1.0, 'none': 1.0, 'several': 1.0, 'on': 4.0, 'crisp': 1.0, 'color': 3.0, 'fits': 1.0, 'requirement': 1.0, 'my': 2.0, 'sheets': 2.0, 'rotation': 1.0, 'cotton': 2.0, 'mattress': 1.0, 'this': 1.0, 'it': 6.0, 'such': 1.0, 'add': 1.0, 'regular': 1.0, 'in': 2.0, 'sheet': 1.0, 'needs': 1.0, 'crib': 1.0, 'grey': 1.0, 'granted': 1.0, 'slim': 2.0, 'to': 1.0, 'as': 1.0, 'all': 1.0, 'are': 2.0, 'shelled': 1.0, 'a': 2.0, 'organic': 2.0, 'money': 1.0, 'because': 1.0, 'did': 1.0, 'pretty': 1.0, 'cheaper': 1.0, 'meet': 1.0, 'is': 3.0, 'side': 1.0, '34': 2.0, 'feeling': 1.0, 'even': 1.0, 'after': 1.0, 'washes': 1.0, 'neutral': 1.0, 'thin': 1.0, 'has': 1.0, 'with': 1.0, 'elastic': 1.0}
Word element => {'again': 1.0, 'would': 1.0, 'get': 1.0, 'purchase': 1.0, 'with': 1.0, 'happy': 1.0, 'too': 1.0, 'adorable': 1.0, 'very': 1.0, 'and': 2.0, 'nephew': 1.0, 'them': 2.0, 'this': 1.0, 'loves': 1.0, 'colorful': 1.0, 'they': 1.0, 'my': 1.0, 'are': 1.0, 'so': 1.0, 'safe': 1.0}
Word element => {}
Word element => {'well': 1.0, 'obviously': 1.0, 'of': 1.0, 'were': 1.0, 'came': 1.0, 'addition': 1.0, 'in': 2.0, 'lesson': 1.0, 'reglue': 1.0, 'some': 1.0, 'buy': 1.0, 'at': 1.0, 'would': 1.0, 'had': 1.0, 'what': 1.0, 'they': 1.0, 'double': 1.0, 'paid': 2.0, 'boxes': 1.0, 'thing': 1.0, 'same': 1.0, 'fluid': 1.0, 'with': 1.0, 'globe': 1.0, 'apparently': 1.0, 'crushed': 1.0, 'plug': 1.0, 'unglued': 2.0, 'find': 1.0, 'gift': 2.0, 'too': 1.0, 'and': 4.0, 'to': 3.0, 'intended': 1.0, 'was': 2.0, 'not': 2.0, 'so': 4.0, 'disappointed': 2.0, 'i': 8.0, 'go': 1.0, 'a': 3.0, 'just': 1.0, 'light': 2.0, 'it': 2.0, 'this': 1.0, 'one': 3.0, 'expensive': 1.0, 'discount': 1.0, 'where': 1.0, 'love': 1.0, 'for': 4.0, 'small': 1.0, 'have': 2.0, '34': 2.0, 'though': 1.0, 'exposing': 1.0, 'glitter': 2.0, 'plus': 1.0, 'up': 2.0, 'filled': 1.0, 'that': 1.0, 'kind': 1.0, 'get': 1.0, 'lava': 1.0, 'very': 1.0, 'big': 1.0, 'is': 3.0, 'sparklies': 1.0, 'but': 1.0, 'floating': 1.0, 'superglue': 1.0, 'place': 1.0, 'the': 9.0, 'disks': 1.0, 'handled': 1.0, 'even': 1.0, '2nd': 1.0, 'local': 1.0, 'am': 1.0, 'rubber': 1.0, 'glad': 1.0, 'opened': 2.0, 'before': 1.0, 'wrapping': 1.0, 'ordered': 1.0, 'giftgiving': 1.0, 'top': 2.0, 'lid': 1.0, 'bathroom': 1.0, 'my': 1.0, 'cap': 1.0}
Word element => {'which': 1.0, 'bubble': 1.0, 'glitter': 1.0, 'on': 1.0, 'type': 1.0, 'glue': 1.0, 'motion': 1.0, 'some': 2.0, 'find': 1.0, 'have': 2.0, 'but': 1.0, 'of': 1.0, 'up': 1.0, 'makes': 1.0, 'has': 1.0, 'room': 1.0, 'open': 1.0, 'son': 1.0, 'and': 2.0, 'my': 1.0, 'for': 1.0, 'the': 2.0, 't': 1.0, 'got': 1.0, 'seem': 1.0, 'way': 1.0, 's': 1.0, 'touch': 1.0, 'i': 2.0, 'now': 1.0, 'to': 4.0, 'everything': 1.0, 'cool': 1.0, 'top': 1.0, 'plastic': 1.0, 'didn': 1.0, 'does': 1.0, 'part': 1.0, 'came': 1.0, 'off': 1.0, 'he': 1.0, 'this': 1.0, 'it': 3.0}
Word element => {'bathroom': 1.0, 'another': 1.0, 'need': 1.0, 'will': 1.0, 'time': 1.0, 'all': 1.0, 'think': 1.0, 'i': 2.0, 'after': 1.0, 'hours': 1.0, 'busted': 1.0, 'few': 1.0, 'the': 5.0, 'heated': 1.0, 'was': 1.0, 'to': 1.0, 'defected': 1.0, 'and': 2.0, 'friends': 1.0, 'it': 3.0, 'works': 1.0, 'for': 1.0, 'one': 1.0, 'love': 1.0, 'just': 1.0, 'changed': 1.0, 'fine': 1.0, 'gets': 1.0, 'kids': 1.0, 'lamp': 3.0, 'showing': 1.0}
Word element => {'of': 1.0, 'look': 1.0, 'i': 2.0, 'canopy': 1.0, 'happy': 1.0, 'in': 1.0, 'appears': 1.0, 'offers': 2.0, 'mentioned': 1.0, 'up': 1.0, 'this': 2.0, 'it': 1.0, 'didn': 1.0, 'stroller': 4.0, 'sturdy': 1.0, 'smooth': 1.0, 'nice': 1.0, 'comfortable': 1.0, 'feel': 1.0, 'very': 1.0, 'and': 5.0, 'only': 1.0, 'do': 1.0, 'a': 1.0, 't': 1.0, 'baby': 1.0, 'protection': 1.0, 'ride': 1.0, 'find': 1.0, 'difficult': 1.0, 'lower': 1.0, 'to': 2.0, 'like': 1.0, 'other': 1.0, 'reviews': 1.0, 'sun': 1.0, 'overall': 1.0, 'complaint': 1.0, 'is': 1.0, 'folded': 1.0, 'my': 2.0, 'lightweight': 1.0, 'requires': 1.0, 'both': 1.0, 'the': 4.0, 'hands': 1.0, 'be': 1.0, 'love': 1.0, 'unfolded': 1.0}
Word element => {'paste': 1.0, 'wallpaper': 1.0, 'with': 1.0, 'them': 1.0, 'on': 2.0, 'walls': 1.0, 'love': 1.0, 'don': 1.0, 'a': 1.0, 'might': 1.0, 'cute': 1.0, 'stick': 2.0, 'very': 1.0, 'my': 1.0, 'great': 1.0, 't': 1.0, 'the': 1.0, 'size': 1.0, 'so': 1.0, 'though': 1.0, 'i': 2.0, 'and': 1.0, 'do': 1.0, 'try': 1.0, 'actual': 1.0, 'product': 1.0, 'to': 1.0}
Word element => {'constructed': 1.0, 'that': 1.0, 't': 3.0, 'the': 2.0, 'still': 1.0, 'its': 1.0, 'buying': 1.0, 'had': 1.0, 'it': 1.0, 'hard': 1.0, 'this': 1.0, 'really': 1.0, 'pressed': 1.0, 'of': 1.0, 'made': 1.0, 'branches': 2.0, 'leaves': 1.0, 'will': 2.0, 'missing': 1.0, 'one': 1.0, 'and': 3.0, 'get': 1.0, 'was': 1.0, 'beautiful': 1.0, 'i': 6.0, 'wasn': 1.0, 'sticky': 1.0, 'don': 1.0, 'work': 1.0, 'but': 1.0, 'aren': 1.0, 'did': 1.0, 'so': 4.0, 'they': 2.0, 'more': 1.0, 'fall': 1.0, 'enough': 2.0, 'off': 1.0, 'down': 1.0, 'hopefully': 1.0, 'poorly': 1.0, 'not': 1.0, 'stay': 1.0, 'regret': 1.0, 'wished': 1.0, 'constantly': 1.0, 'think': 1.0, 'on': 1.0, 'spent': 1.0, 've': 1.0, 'something': 1.0}
Word element => {'tricks': 1.0, 'not': 1.0, 'here': 1.0, 'especially': 1.0, 'in': 2.0, 'perchase': 1.0, 'happy': 1.0, 'buying': 1.0, 'very': 1.0, 'like': 1.0, 'the': 2.0, 'are': 1.0, 'for': 1.0, 'im': 1.0, 'beautiful': 1.0, 'picture': 2.0, 'is': 1.0, 'looks': 2.0, 'price': 1.0, 'large': 1.0, 'this': 1.0, 'with': 1.0, 'it': 2.0, 'you': 1.0, 'what': 1.0, 'that': 1.0}
Word element => {'all': 2.0, 'long': 1.0, 'however': 1.0, 'so': 1.0, 'love': 1.0, 'for': 1.0, 'position': 1.0, 'bent': 1.0, '34': 2.0, 'being': 1.0, 'from': 1.0, 'the': 2.0, 'off': 1.0, 'peal': 1.0, 'to': 1.0, 'tend': 1.0, 'a': 1.0, 'against': 1.0, 'office': 1.0, 'my': 2.0, 'in': 3.0, 'home': 1.0, 'put': 1.0, 'wall': 2.0, 'green': 1.0, 'i': 2.0, 'this': 1.0, 'only': 1.0, 'it': 2.0, 'and': 1.0, 'issue': 1.0, 'looks': 1.0, 'is': 1.0, 'awesome': 1.0, 'were': 1.0, 'that': 1.0, 'where': 1.0, 'creased': 1.0, 'they': 2.0}
Word element => {'luck': 1.0, 'good': 1.0, 'picking': 1.0, 'sucker': 1.0, 'difficult': 1.0, 'quite': 1.0, 'say': 1.0, 'peel': 1.0, 'wont': 1.0, 'down': 1.0, 'stick': 2.0, 'wiped': 1.0, 'from': 2.0, 'used': 2.0, 'easy': 1.0, 'soap': 1.0, 'water': 2.0, 'up': 5.0, 'bucket': 1.0, 'in': 4.0, 'took': 2.0, 'interfere': 1.0, 'me': 1.0, 'probably': 2.0, 'any': 1.0, 'your': 2.0, 'wax': 1.0, 'tile': 1.0, 'texture': 1.0, 'or': 2.0, 'as': 1.0, 'drying': 1.0, 'may': 1.0, 'products': 1.0, 'use': 1.0, 'made': 1.0, 'typically': 1.0, 'sure': 1.0, 'decor': 1.0, 'what': 2.0, 'when': 2.0, 'on': 7.0, 'long': 2.0, 'amount': 2.0, 'near': 1.0, 'cleaned': 2.0, 'figured': 1.0, 'thoroughly': 1.0, 'even': 2.0, 'of': 4.0, 'drench': 1.0, 'grout': 1.0, 'want': 2.0, 'if': 4.0, 'again': 1.0, 'stay': 1.0, 'still': 2.0, 'reviews': 1.0, 'study': 1.0, 'would': 3.0, 'sticker': 6.0, 'did': 2.0, 'time': 1.0, 'assembled': 1.0, 'so': 4.0, 'puzzle': 1.0, 'bit': 1.0, 'get': 2.0, 'however': 1.0, 'know': 1.0, 'my': 13.0, 'room': 2.0, 'prior': 1.0, 'amazed': 1.0, '4': 1.0, 'i': 25.0, 'apartment': 1.0, 'after': 2.0, 'not': 3.0, 'compliments': 1.0, 'once': 1.0, 'dry': 1.0, 'was': 3.0, 'now': 2.0, 'air': 1.0, 'that': 4.0, 'all': 3.0, '20': 1.0, 'sponge': 2.0, 'been': 1.0, 'no': 1.0, 'wall': 12.0, 'dish': 1.0, 'glossy': 1.0, 't': 6.0, 'a': 9.0, 'tiny': 1.0, 'moisture': 1.0, 'maybe': 1.0, 'wasn': 1.0, 'like': 3.0, 'spent': 1.0, 'large': 2.0, 'off': 2.0, 'anyways': 1.0, 'but': 2.0, 'money': 1.0, 'bought': 1.0, 'adhesive': 1.0, 'suggest': 1.0, 'and': 5.0, 'residue': 1.0, 'the': 17.0, 'living': 2.0, 'has': 3.0, 'didn': 4.0, 'matches': 1.0, 'have': 1.0, 'staying': 1.0, 'clean': 2.0, 'laying': 1.0, 'wring': 1.0, 'flat': 1.0, 'out': 2.0, 'stuck': 1.0, 'wiping': 1.0, 'piece': 3.0, 'about': 2.0, 'take': 1.0, '15': 1.0, 'minutes': 2.0, 'another': 1.0, 'hand': 1.0, 'mess': 1.0, 'months': 1.0, 'felt': 1.0, 'dryness': 1.0, 'onto': 1.0, 'try': 1.0, 'reading': 1.0, 'll': 1.0, 'to': 8.0, 'right': 1.0, 'do': 2.0, 'put': 2.0, 'messed': 1.0, 'floor': 1.0, 'review': 1.0, 'can': 3.0, 'is': 4.0, 'notes': 1.0, 'at': 3.0, 'basically': 1.0, 'big': 1.0, 'very': 1.0, 'ever': 1.0, 's': 5.0, 'subtle': 1.0, 'factors': 1.0, '1': 1.0, '30': 1.0, 'paint': 2.0, 'rollers': 1.0, 'let': 1.0, 'they': 1.0, 'for': 5.0, 'guess': 1.0, 'matte': 1.0, 'climate': 1.0, 'these': 1.0, 'finish': 1.0, 'each': 3.0, 'around': 1.0, 'stays': 1.0, 'it': 22.0, 'be': 1.0, 'peeling': 1.0, 'mostly': 1.0, '25': 1.0, '70': 1.0, 'too': 1.0, '3': 1.0, 'am': 2.0, 'here': 2.0, 'beach': 1.0, 'touch': 1.0, 'help': 2.0, 'installing': 1.0, 'you': 8.0, 'there': 1.0, 'humid': 1.0, 'contributed': 1.0, 'degrees': 1.0, 'tips': 1.0, 'with': 4.0, 'picture': 1.0, 'package': 1.0, 'will': 3.0, 'place': 1.0, 'first': 1.0, 'exactly': 1.0, 'hesitant': 1.0, 'remove': 4.0, 'how': 1.0, '2': 1.0, 'leave': 1.0, 'going': 1.0, 'this': 1.0, 'while': 1.0, 'then': 1.0, 'only': 1.0, 'twice': 1.0}
Word element => {'product': 1.0, 'wrong': 1.0, 'the': 1.0, 'receive': 1.0, 'one': 1.0, 'no': 1.0, 'off': 1.0, 'rip': 1.0, 'a': 1.0, 'back': 1.0, 'm': 1.0, 'my': 1.0, 'helps': 1.0, 'money': 1.0, 'ordered': 1.0, 'i': 4.0, 'here': 1.0, 'what': 1.0, 'again': 1.0, 'not': 2.0, 'buying': 1.0, 'wanted': 1.0, 'was': 1.0, 'else': 1.0, 'it': 1.0, 'this': 1.0, 'if': 1.0, 'did': 1.0, 'and': 1.0, 'get': 1.0, 'never': 1.0, 'you': 2.0, 's': 1.0, 'which': 1.0, 'anything': 1.0, 'on': 1.0}
Word element => {'them': 1.0, 'love': 1.0, 'we': 1.0, 'wall': 1.0, 'easy': 1.0, 're': 1.0, 'numbers': 1.0, 'were': 1.0, 'adorable': 1.0, 'stick': 1.0, 'but': 2.0, 'put': 2.0, 'up': 1.0, 'to': 2.0, 'exactly': 1.0, 'long': 1.0, 'stickers': 1.0, 'a': 1.0, 'don': 1.0, 'took': 1.0, 'together': 1.0, 'with': 1.0, 'on': 1.0, 'they': 2.0, 'great': 1.0, 'the': 2.0, 't': 1.0, 'little': 1.0, 'textured': 1.0}
Word element => {'should': 1.0, 'how': 1.0, 'decal': 1.0, 'small': 1.0, 'on': 1.0, 'goes': 1.0, 'and': 1.0, 'look': 1.0, 'comes': 1.0, 'to': 1.0, 'easy': 1.0, 'but': 1.0, 'put': 1.0, 'really': 1.0, 'no': 1.0, 'with': 1.0, 'it': 2.0, 'well': 1.0, 'a': 2.0, 'are': 1.0, 'wall': 1.0, 'in': 1.0, 'colored': 1.0, 'seamlessly': 1.0, 'up': 1.0, 'there': 1.0, 'formal': 1.0, 'love': 1.0, 'directions': 1.0}
Word element => {'have': 1.0, 'you': 1.0, 'this': 1.0, 'beware': 1.0, 'wall': 1.0, 'textured': 2.0, 'are': 1.0, 'if': 1.0, 'being': 1.0, 'how': 1.0, 'up': 1.0, 'appears': 1.0, 'only': 1.0, 'it': 1.0, 'day': 1.0, 'from': 1.0, 'but': 1.0, 'apartment': 1.0, 'sort': 1.0, 'bare': 1.0, 'really': 1.0, 'one': 1.0, 'bought': 1.0, 'be': 1.0, 'the': 2.0, 'thinking': 1.0, 'they': 1.0, 'look': 1.0, 'cute': 1.0, 'after': 1.0, 'would': 1.0, 'these': 1.0, 'already': 1.0, 'walls': 2.0, 'battling': 1.0, 'of': 4.0, 'peeling': 1.0, 'them': 1.0, 'top': 1.0, 'off': 1.0, 'enough': 1.0, 'down': 1.0, 'cheap': 1.0, 'adhesive': 1.0, 'and': 1.0, 'not': 1.0, 'on': 1.0, 'strong': 1.0, 'hold': 1.0, 'our': 2.0, 'to': 3.0, 'any': 1.0, 'we': 2.0, 'a': 1.0}
Word element => {'ruined': 1.0, 'and': 1.0, 'taking': 1.0, 'up': 1.0, 'have': 1.0, 'begin': 1.0, 'less': 1.0, 'much': 1.0, 'additionally': 1.0, 'so': 1.0, 'wall': 2.0, 'not': 1.0, 'would': 1.0, 'what': 1.0, 'down': 2.0, 'part': 1.0, 'my': 1.0, 't': 1.0, 'the': 4.0, 'now': 1.0, 'was': 2.0, 'to': 5.0, 'areas': 1.0, 'i': 1.0, 'took': 1.0, 'didn': 1.0, 'paint': 2.0, 'with': 1.0, 'it': 2.0, 'this': 1.0, 'likely': 1.0, 'off': 1.0, 'folded': 2.0, 'came': 1.0, 'that': 2.0, 'ended': 1.0, 'any': 1.0, 'fall': 1.0, 'during': 1.0, 'stick': 2.0, 'decal': 2.0, 'shipping': 1.0}
Word element => {'stickers': 1.0, 'of': 1.0, 'pieces': 1.0, 'many': 1.0, 'in': 1.0, 'because': 1.0, 'leaves': 1.0, 'wall': 1.0, 'to': 1.0, 'comes': 1.0, 'as': 1.0, 'described': 1.0, 'individual': 1.0, 'all': 1.0, 'but': 1.0, 'were': 1.0, 'it': 2.0, 'took': 1.0, 'the': 2.0, 'looks': 1.0, 'forever': 1.0, 'onto': 1.0, 'put': 1.0}
Word element => {'dry': 1.0, 'i': 2.0, 'everyday': 1.0, 'need': 1.0, 'for': 1.0, 'might': 1.0, 't': 1.0, 'hoped': 1.0, 'is': 3.0, 'at': 1.0, 'add': 1.0, 'some': 1.0, 'expected': 1.0, 'came': 1.0, 'shown': 1.0, 'clean': 1.0, 'then': 1.0, 'downfall': 1.0, 'pictures': 1.0, 'differently': 1.0, 'rub': 1.0, 'from': 1.0, 'only': 1.0, 'it': 1.0, 'first': 1.0, 'sticky': 1.0, 'to': 1.0, 'least': 1.0, 'as': 4.0, 'any': 1.0, 'aren': 1.0, 'sticker': 1.0, 'of': 2.0, 'that': 2.0, 'would': 1.0, 'something': 1.0, 'hangs': 1.0, 'off': 1.0, 'let': 1.0, 'or': 1.0, 'wall': 1.0, 'stickers': 2.0, 'have': 1.0, 'be': 1.0, 'cause': 1.0, 'dust': 1.0, 'the': 7.0, 'possibly': 1.0, 'call': 1.0, 'everything': 1.0, 'dirt': 1.0}
Word element => {'consuming': 1.0, 'worth': 1.0, 'little': 1.0, 'it': 1.0, 'love': 1.0, 'a': 1.0, 'lot': 1.0, 'this': 1.0, 'my': 1.0, 'wall': 1.0, 'but': 1.0, 'just': 1.0, 'time': 1.0, 'on': 1.0, 'pieces': 1.0, 'of': 1.0, 'separate': 1.0}
Word element => {'simply': 1.0, 'and': 1.0, 'painted': 1.0, 'conventional': 1.0, 'pattern': 1.0, 'so': 1.0, 'original': 1.0, 'was': 1.0, 'typical': 1.0, 'that': 1.0, 'one': 1.0, 'missed': 1.0, 'of': 2.0, 'sticker': 1.0, 'bunch': 1.0, 'morning': 1.0, 'when': 1.0, 'work': 1.0, 'doesn': 1.0, 'but': 1.0, 'think': 1.0, 'branches': 1.0, 'nice': 1.0, 'design': 1.0, 'see': 1.0, 'a': 4.0, 'wall': 2.0, 'you': 2.0, 'is': 4.0, 'on': 2.0, 't': 1.0, 'the': 6.0, 'very': 2.0, 'drywall': 1.0, 'next': 1.0, 'poor': 1.0, 'floor': 1.0, 'product': 1.0, 'this': 2.0, 'it': 2.0, 'also': 1.0}
Word element => {'cute': 1.0, 'too': 1.0, 'room': 1.0, 'on': 1.0, 'pieces': 1.0, 'in': 1.0, 'how': 2.0, 'so': 1.0, 'it': 2.0, 'love': 2.0, 'i': 2.0, 'extra': 1.0, 'leaves': 1.0, 'used': 1.0, 'wall': 1.0, 'you': 2.0, 'have': 1.0, 'initials': 1.0, 'these': 1.0, 'the': 1.0, 'my': 2.0, 'comes': 1.0, 'to': 2.0, 'decals': 1.0, 'arrange': 1.0, 'door': 1.0, 'want': 1.0, 'option': 1.0, 'put': 1.0}
Word element => {'off': 1.0, 'peel': 1.0, 'when': 1.0, 'entangled': 1.0, 'pretty': 1.0, 'cheaply': 1.0, 'can': 1.0, 'stick': 1.0, 'very': 3.0, 'get': 1.0, 'and': 1.0, 'is': 1.0, 'should': 1.0, 'careful': 1.0, 'paper': 1.0, 'however': 1.0, 'it': 3.0, 'this': 1.0, 'principle': 1.0, 'made': 1.0, 'the': 3.0, 'be': 1.0, 'material': 1.0, 'not': 1.0, 'you': 1.0, 'wall': 1.0, 'does': 1.0, 'look': 1.0, 'to': 1.0, 'in': 1.0, 'also': 1.0}
Word element => {'off': 1.0, 'peeling': 1.0, 'you': 1.0, 'wall': 1.0, 'like': 1.0, 'stickers': 1.0, 'stick': 1.0, 'why': 1.0, 'i': 3.0, 'just': 1.0, 'not': 2.0, 'frustrating': 1.0, 'm': 1.0, 'inadequate': 1.0, 'vinyl': 1.0, 'do': 1.0, 'so': 1.0, 'it': 3.0, 'this': 1.0, 'improvising': 1.0, 'sure': 1.0, 'would': 1.0, 'was': 2.0, 'thought': 1.0, 'had': 1.0, 'to': 1.0, 'real': 1.0, 'the': 4.0, 's': 3.0, 'decal': 1.0, 'a': 1.0, 't': 1.0, 'and': 1.0, 'adhesive': 2.0, 'match': 1.0, 'sucks': 1.0, 'on': 1.0, 'constantly': 1.0, 'some': 1.0, 'pieces': 1.0, 'didn': 1.0, 'quite': 1.0, 'assembly': 1.0, 'up': 1.0, 'love': 1.0, 'paper': 1.0, 'design': 1.0, 'but': 1.0, 'is': 1.0}
Word element => {'liberties': 1.0, 'creative': 1.0, 'some': 1.0, 'for': 1.0, 'sections': 1.0, 'wall': 1.0, 'great': 1.0, 'the': 1.0, 'allowed': 1.0, 'on': 1.0, 'small': 1.0, 'so': 2.0, 'kind': 1.0, 'challenging': 1.0, 'was': 1.0, 'to': 1.0, 'it': 3.0, 'this': 1.0, 'of': 1.0, 'up': 1.0, 'because': 1.0, 'came': 1.0, 'looks': 1.0, 'many': 1.0, 'that': 1.0, 'also': 1.0, 'in': 1.0, 'put': 1.0, 'but': 1.0}
Word element => {'happier': 1.0, 'couldn': 1.0, 'it': 1.0, 'love': 1.0, 'how': 1.0, 'be': 1.0, 'much': 1.0, 'raves': 1.0, 'we': 1.0, 'put': 1.0, 't': 1.0, 'this': 1.0, 'they': 1.0, 'our': 1.0, 'and': 1.0, 'in': 1.0, 'daughter': 1.0, 'about': 1.0, 's': 1.0, 'everyone': 1.0, 'nursery': 1.0, 'just': 1.0}
Word element => {'wall': 1.0, 'immediate': 1.0, 'my': 1.0, 'to': 4.0, 'adds': 1.0, 'great': 1.0, 'together': 1.0, 'an': 1.0, 'put': 1.0, 'black': 1.0, 'a': 1.0, 'well': 1.0, 'sticks': 1.0, 'looks': 1.0, 'spice': 1.0, 'comforting': 1.0, 'highly': 1.0, 'up': 1.0, 'spark': 1.0, 'room': 1.0, 'easy': 1.0, 'recommend': 1.0, 'anyone': 1.0, 'who': 1.0, 'dining': 1.0, 'wants': 1.0}
Word element => {'first': 1.0, 'home': 1.0, 'realized': 1.0, 'stick': 1.0, 'll': 1.0, 'they': 1.0, 'attempt': 1.0, 'this': 2.0, 'hopes': 1.0, 'in': 1.0, 'back': 1.0, 'them': 1.0, 'pressing': 1.0, 'kept': 1.0, 'wall': 1.0, 'several': 1.0, 'gone': 1.0, 'be': 1.0, 'putting': 1.0, 'i': 7.0, 'areas': 1.0, 'so': 1.0, 'time': 3.0, 'my': 3.0, 'fact': 1.0, 'but': 2.0, 'an': 1.0, 'do': 1.0, 'away': 1.0, 'had': 1.0, 'disappointment': 1.0, 'big': 1.0, 'have': 1.0, 'must': 2.0, 't': 1.0, 'a': 2.0, 'item': 1.0, 'hour': 1.0, 'that': 2.0, 'shown': 1.0, 'by': 2.0, 'just': 2.0, 'the': 5.0, 'was': 2.0, 'beautiful': 1.0, 'wouldn': 1.0, 'picture': 1.0, 'you': 1.0, 'finish': 1.0, 'wasting': 1.0, 'quarter': 1.0, 'looks': 1.0, 'it': 1.0, 'decors': 1.0, 'come': 1.0, 'up': 2.0, 'takes': 1.0, 'to': 2.0, 'as': 2.0, 'all': 2.0, 'were': 1.0, 'pieces': 1.0, 'on': 2.0, 'soon': 1.0, 'starting': 1.0, 'around': 1.0, 'more': 1.0, 'fall': 1.0, 'which': 1.0, 'add': 2.0, 'some': 1.0, 'already': 1.0, 'off': 1.0, 'or': 1.0, 'half': 1.0}
Word element => {'loves': 1.0, 'old': 1.0, 'is': 2.0, 'my': 2.0, 'for': 2.0, 'one': 2.0, 'swinging': 1.0, 'space': 1.0, 'two': 1.0, 'i': 1.0, 'am': 1.0, 'grandmas': 1.0, 'up': 2.0, 'of': 2.0, 'and': 4.0, 'easy': 1.0, 'folds': 1.0, 'get': 1.0, 'working': 1.0, 'blanket': 1.0, 'swings': 1.0, 'mom': 1.0, 'not': 2.0, 'did': 1.0, 'want': 1.0, 'drops': 1.0, 'if': 1.0, 'transport': 1.0, 'isn': 1.0, 'time': 1.0, 'does': 2.0, 'swing': 2.0, 'house': 1.0, 'off': 2.0, 'to': 2.0, 'magnet': 1.0, 'which': 1.0, 'a': 3.0, 't': 1.0, 'the': 2.0, 'bad': 1.0, 'take': 1.0, 'it': 5.0, 'month': 1.0, 'only': 1.0, 'much': 1.0, '3': 1.0, 'stops': 1.0, '5': 1.0}
Word element => {'ducks': 1.0, 'collection': 1.0, 'stuffer': 1.0, '20s': 1.0, 'the': 2.0, 'my': 1.0, 'easter': 1.0, 'a': 1.0, 'great': 1.0, 'basket': 1.0, 'love': 1.0, 'it': 1.0, 'in': 1.0, 'for': 1.0, 'daughter': 1.0, 'bath': 1.0, 'now': 1.0, 'of': 1.0, 'has': 1.0}
Word element => {'recommend': 1.0, 'very': 1.0, 'were': 1.0, 'employees': 1.0, 'happy': 1.0, 'my': 1.0, 'this': 1.0, 'with': 1.0, 'business': 1.0, 'at': 1.0, 'would': 1.0, 'application': 1.0, 'commercial': 1.0, 'in': 1.0, 'opening': 1.0, '34': 1.0, 'fits': 1.0, 'built': 1.0, 'a': 3.0, 'well': 1.0, 'and': 2.0, 'excellent': 1.0, '36': 1.0, 'pushed': 1.0, 'enough': 1.0, 'to': 1.0, 'addition': 1.0, 'being': 1.0, 'seal': 1.0, 'dramatically': 1.0, 'after': 1.0, 'cut': 1.0, 'opened': 1.0, 'the': 1.0, 'mosquito': 1.0, 'used': 1.0, 'down': 1.0, 'long': 1.0, 'works': 1.0, 'intrusion': 1.0}
Word element => {'few': 1.0, 'a': 1.0, 'this': 1.0, 'head': 1.0, 'will': 1.0, 'shade': 1.0, 'back': 1.0, 'folds': 1.0, 'that': 1.0, 'canopy': 1.0, 'car': 2.0, 'seat': 1.0, 'carry': 1.0, 'buy': 1.0, 'i': 1.0, 'sun': 1.0, 'good': 1.0, 'stays': 1.0, 'into': 1.0, 'place': 1.0, 'easy': 2.0, 'straps': 1.0, 'very': 1.0, 'and': 3.0, 'base': 1.0, 'lock': 1.0, 'for': 1.0, 'liked': 1.0, 'comfortable': 1.0, 'to': 3.0, 'was': 1.0, 'years': 1.0, 'baby': 2.0, 'cradle': 1.0, 'adjust': 1.0, 'in': 2.0, 'again': 1.0, 'are': 1.0, '2': 1.0, 'the': 2.0}
Word element => {'them': 1.0, 'loved': 1.0, 'guest': 1.0, 'our': 1.0}
Word element => {'chain': 1.0, 'my': 1.0, 'on': 1.0, 'key': 1.0, 'expected': 1.0, 'myself': 1.0, 'have': 1.0, 'were': 2.0, 'way': 1.0, 'they': 2.0, 'better': 1.0, 'and': 1.0, 'than': 1.0, 'beautiful': 1.0, 'one': 1.0, 'i': 2.0}
Word element => {'daycare': 1.0, 'size': 1.0, 'her': 1.0, 'just': 1.0, 'heaven': 1.0, 'shes': 1.0, 'granddaughter': 1.0, 'i': 1.0, 'old': 1.0, 'purchased': 1.0, 'rolling': 1.0, 'bag': 1.0, 'in': 1.0, 'book': 1.0, 'for': 2.0, 'the': 1.0, 'my': 1.0, '2': 1.0, 'yr': 1.0}
Word element => {'purchase': 1.0, 'wont': 1.0, 'good': 1.0, 'works': 1.0, 'it': 1.0, 'bag': 1.0, 'but': 1.0, 'thought': 1.0, 'my': 1.0, 'small': 1.0, 'the': 1.0, 'a': 2.0, 'back': 1.0, 'pack': 1.0, 'was': 1.0, 'little': 1.0, 'bigger': 1.0, 'daughter': 1.0, 'for': 2.0, 'again': 1.0, 'paided': 1.0, 'alot': 1.0}
Word element => {'them': 1.0, 'use': 1.0, 'wait': 1.0, 'good': 1.0, 'they': 1.0, 'is': 2.0, 'so': 1.0, 'get': 1.0, 'weeks': 1.0, 'look': 1.0, 'to': 2.0, 'durable': 1.0, 'this': 1.0, 'excited': 1.0, 'very': 1.0, 'i': 1.0, 'till': 1.0, '5': 1.0, 'have': 1.0, 'born': 1.0, 't': 1.0, 'these': 1.0, 'more': 1.0, 'my': 1.0, 'baby': 1.0, 'size': 1.0, 'can': 1.0}
Word element => {'s': 1.0, 'stokke': 1.0, 'match': 1.0, 'baby': 1.0, '6': 1.0, 'up': 1.0, 'won': 1.0, 'months': 1.0, 'fir': 1.0, 'it': 2.0, 'with': 1.0, 'may': 1.0, 'seller': 1.0, 'is': 1.0, 'contacted': 1.0, 'after': 1.0, 'basket': 1.0, 'not': 1.0, 'address': 1.0, 'i': 1.0, 'wrong': 1.0, 'item': 2.0, 'fit': 2.0, 't': 1.0, 'the': 3.0, 'ontrac': 1.0, 'staff': 1.0, 'came': 1.0, 'was': 1.0, 'to': 1.0, 'in': 1.0, 'newborn': 1.0, 'and': 1.0, 'me': 1.0, 'deliveried': 2.0, 'back': 1.0, 'stroller': 1.0, 'for': 2.0}
Word element => {'recommend': 1.0, 'highly': 1.0, 'still': 1.0, 'look': 1.0, 'daughter': 1.0, 'they': 3.0, 'them': 2.0, 'wears': 1.0, 'most': 1.0, 'every': 1.0, 'and': 2.0, 'like': 1.0, 'day': 1.0, 'match': 1.0, 'very': 1.0, 'almost': 1.0, 'my': 1.0, 'are': 1.0, 'new': 1.0, 'of': 1.0, 'her': 1.0, 'clothes': 1.0, 'pretty': 1.0, 'practical': 1.0, 'i': 1.0}
Word element => {'finish': 1.0, 'shape': 1.0, 'well': 1.0, 'wash': 1.0, 'they': 1.0, 'these': 1.0, 'attractive': 1.0, 'soft': 2.0, 'are': 1.0, 'an': 1.0, 'keep': 1.0, 'shirts': 1.0, 'value': 1.0, 'good': 2.0, 'their': 1.0, 'sizing': 1.0, 'and': 2.0, 'overall': 1.0}
Word element => {'definitely': 1.0, 'just': 1.0, 'frog': 1.0, 'guy': 1.0, 'dangerous': 1.0, 'seem': 1.0, 'recommend': 1.0, 'doesn': 1.0, 'be': 1.0, 'enough': 1.0, 'is': 1.0, 'knife': 1.0, 'spoon': 1.0, 'are': 1.0, 'useful': 1.0, 'fork': 1.0, 'portion': 1.0, 'handle': 1.0, 'old': 1.0, 'i': 3.0, 'utensils': 1.0, '22': 1.0, 'sharp': 1.0, 'only': 1.0, 'this': 1.0, 'use': 2.0, 'too': 1.0, 'and': 6.0, 'shape': 1.0, 'short': 1.0, 'the': 4.0, 'also': 1.0, 'will': 2.0, 'sets': 1.0, 'available': 1.0, 'confident': 1.0, 'month': 1.0, '2': 1.0, 'but': 2.0, 'can': 1.0, 'plastic': 1.0, 'firetruck': 1.0, 'loves': 1.0, 'have': 2.0, 'bought': 1.0, 'one': 2.0, 'for': 4.0, 'length': 1.0, 'dishwasher': 1.0, 'in': 1.0, 'would': 1.0, 've': 1.0, 'my': 2.0, 'no': 1.0, 'longer': 1.0, 'to': 1.0, 'our': 1.0, 'them': 1.0, 'baby': 1.0, 'had': 1.0, 't': 1.0, 'we': 2.0, 'a': 2.0, 'so': 1.0, 'time': 1.0, 'they': 2.0, 'm': 1.0, 'good': 2.0, 'last': 1.0, 'little': 1.0, 'very': 1.0, 'great': 1.0, 'nice': 2.0, 'darling': 1.0, 'weight': 1.0, 'finish': 1.0}
Word element => {'again': 1.0, 'buy': 1.0, 'definitely': 1.0, 'would': 1.0, 'forever': 1.0, 'last': 1.0, 'loves': 1.0, 'who': 1.0, 'design': 1.0, 'for': 3.0, 'was': 1.0, 'on': 2.0, 'is': 1.0, 'vehicles': 1.0, 'nice': 1.0, 'which': 1.0, 'like': 1.0, 'box': 1.0, 'came': 1.0, 'bottom': 1.0, 'set': 2.0, 'beautiful': 1.0, 'a': 6.0, 'gift': 2.0, 'with': 1.0, 'this': 2.0, 'it': 2.0, 's': 1.0, 'own': 1.0, 'great': 2.0, 'the': 3.0, 'before': 1.0, 'even': 1.0, 'seems': 1.0, 'in': 1.0, 'perfect': 2.0, 'will': 1.0, 'toddler': 2.0, 'flatware': 1.0, 'steel': 1.0, 'opening': 1.0, 'size': 1.0}
Word element => {'s': 1.0, 'level': 1.0, 'keeps': 1.0, 'better': 1.0, 'would': 1.0, 'upright': 1.0, 'standing': 1.0, 'folded': 1.0, 'narrow': 1.0, 'for': 1.0, 'good': 1.0, 'bumping': 1.0, 'up': 1.0, 'end': 1.0, 'them': 1.0, 'really': 2.0, 'aren': 1.0, 'they': 1.0, 'far': 1.0, 'than': 1.0, 'way': 1.0, 'out': 2.0, 'stick': 2.0, 'wheels': 2.0, 'balance': 1.0, 'are': 1.0, 'another': 1.0, 'all': 1.0, 'fits': 1.0, 'usestroller': 1.0, 'need': 1.0, 'due': 2.0, 'things': 1.0, 'you': 4.0, 'when': 2.0, 'and': 3.0, 'without': 2.0, 'place': 2.0, 'carcar': 1.0, 'but': 5.0, 'the': 12.0, 'of': 3.0, 'use': 1.0, 'straps': 1.0, 'time': 2.0, 'can': 3.0, 'so': 4.0, 'received': 1.0, 'easy': 2.0, 'get': 1.0, 'store': 1.0, 'sure': 1.0, 'folds': 1.0, 'comfortable': 1.0, 'does': 1.0, 'coming': 1.0, 'i': 4.0, 'cons': 2.0, 'sharply': 1.0, 'wish': 1.0, 'installs': 1.0, 'have': 1.0, 'this': 1.0, 'flaws': 1.0, 'release': 2.0, 'it': 9.0, 'pros': 2.0, 'system': 1.0, 'its': 1.0, 'wheel': 2.0, 'as': 1.0, 'be': 2.0, 'buckled': 1.0, 'stroller': 2.0, 'overall': 1.0, 'car': 3.0, 'most': 1.0, 'back': 2.0, 'securely': 1.0, 'sometimes': 1.0, 'like': 2.0, 'because': 1.0, 'easily': 4.0, 'that': 2.0, 'seat': 5.0, 'in': 5.0, 'if': 3.0, 'turn': 2.0, 'areas': 1.0, 'see': 1.0, 'seems': 2.0, 'travel': 1.0, 'will': 1.0, 'wobbly': 1.0, 'being': 1.0, 'very': 1.0, 'little': 1.0, 'difficult': 3.0, 'much': 1.0, 'recalled': 1.0, 'from': 1.0, 'not': 3.0, 'about': 1.0, 'used': 2.0, 'tip': 1.0, 'with': 2.0, 'take': 1.0, 'to': 12.0, 'pretty': 1.0, 'a': 4.0, 'was': 1.0, 'releasestroller': 1.0, 'too': 2.0, 'one': 1.0, 'shoulder': 1.0, 'buckles': 1.0, 'just': 3.0, 'base': 5.0, 'buckle': 1.0, 'even': 1.0, 'brakes': 1.0, 'more': 1.0, 'into': 3.0, 'three': 1.0, 'design': 1.0, 'on': 1.0, 'click': 1.0, 'dime': 1.0, 'adjust': 1.0, 'trunk': 1.0, 'clicks': 1.0, 'room': 1.0, 'unfolded': 1.0, 't': 2.0, 'rest': 1.0, 'farther': 1.0, 'replacement': 1.0, 'spare': 1.0}
Word element => {'some': 1.0, 'helps': 1.0, 'hope': 1.0, 'search': 1.0, 'luck': 1.0, 'within': 1.0, 'hopefully': 1.0, 'an': 1.0, 'riding': 2.0, 'taste': 1.0, 'realize': 1.0, 'combines': 1.0, 'kid': 2.0, 'ear': 1.0, 'hearing': 1.0, 'sight': 1.0, 'distinguish': 1.0, 'developing': 1.0, 'greatly': 1.0, 'start': 1.0, 'meaning': 1.0, 'senses': 1.0, 'mark': 1.0, 'month': 1.0, 'babies': 1.0, 'thing': 1.0, 'common': 1.0, 'add': 1.0, 'want': 1.0, 'up': 2.0, 'something': 1.0, 'happened': 1.0, 'their': 4.0, 'orientation': 1.0, 'snugride': 1.0, 'used': 1.0, 'your': 1.0, 'where': 2.0, 'alerts': 1.0, 'hates': 1.0, 'pain': 1.0, 'under': 1.0, 'who': 2.0, 'from': 1.0, 'having': 1.0, 'were': 1.0, 'didn': 1.0, 'putting': 1.0, 'velcro': 1.0, 'plushy': 1.0, 'always': 1.0, 'learned': 1.0, 'research': 1.0, '34': 2.0, 'loves': 1.0, 'note': 1.0, 'ergonomics': 1.0, 'grow': 1.0, 'former': 1.0, 'heard': 1.0, 'better': 1.0, 'chicco': 1.0, 'brand': 1.0, 'screaming': 1.0, 'probably': 2.0, 'new': 1.0, 'liked': 1.0, 'only': 1.0, 'another': 2.0, 'keep': 1.0, 'mean': 1.0, 'usefulness': 1.0, 'its': 1.0, 'has': 4.0, 'fits': 1.0, 'amount': 1.0, 'reduce': 1.0, 'leave': 1.0, 'since': 2.0, 'one': 2.0, 'improved': 1.0, '35': 1.0, 'next': 1.0, 'convertible': 2.0, 'safety': 2.0, 'acquired': 1.0, 'long': 2.0, 'on': 3.0, 'yes': 1.0, 'yet': 1.0, 'car': 20.0, 'again': 2.0, 'lasted': 1.0, 'scream': 1.0, 'take': 1.0, 'lucky': 1.0, 'at': 2.0, 'look': 3.0, 'if': 3.0, 'designers': 1.0, 'parent': 1.0, 'how': 1.0, 'our': 3.0, 'graco': 1.0, 'poor': 1.0, 'learn': 1.0, 'go': 1.0, 'days': 1.0, 'exactly': 1.0, 'me': 2.0, 'are': 1.0, 'my': 10.0, 'straps': 2.0, 'entire': 2.0, 'calm': 1.0, 'overall': 1.0, 'they': 4.0, 'enough': 1.0, 'down': 3.0, 'or': 3.0, 'fine': 1.0, 'wasn': 1.0, 'glad': 1.0, 'seat': 13.0, 'in': 16.0, 'them': 2.0, 'life': 1.0, 'questions': 1.0, 'station': 1.0, 'inner': 1.0, 'paying': 1.0, 'week': 2.0, 'guy': 1.0, 'took': 3.0, 'class': 2.0, 'tried': 1.0, 'just': 2.0, 'complaining': 1.0, 'and': 21.0, 'about': 2.0, 'awesome': 2.0, 'we': 5.0, 'cushion': 1.0, 'no': 1.0, 'child': 4.0, 'year': 1.0, 'stroller': 2.0, 'product': 2.0, 'you': 7.0, 'honestly': 2.0, 'when': 7.0, 'front': 1.0, 'what': 4.0, 'idea': 1.0, 'any': 2.0, 'belt': 1.0, 'friends': 1.0, 't': 5.0, 'set': 1.0, 'fairly': 1.0, 'was': 9.0, 'had': 3.0, 'pull': 1.0, 'free': 1.0, 'now': 4.0, 'information': 1.0, 'help': 2.0, 'make': 2.0, 'mostly': 1.0, 'convenience': 2.0, 'goes': 1.0, 'registered': 1.0, 'ask': 1.0, 'so': 3.0, 'is': 11.0, 'can': 4.0, 'this': 11.0, 'first': 3.0, 'he': 5.0, 'him': 8.0, 'thought': 2.0, 'those': 1.0, 'already': 3.0, 'showed': 1.0, 'with': 3.0, 'using': 1.0, 'much': 1.0, 'concerns': 1.0, 'put': 3.0, 'seconds': 1.0, 'for': 14.0, 'still': 1.0, 'cry': 1.0, 'have': 7.0, 'other': 1.0, 'to': 29.0, 'the': 42.0, 'old': 5.0, 'of': 7.0, 'get': 4.0, 'months': 4.0, 'suspect': 1.0, 'seats': 1.0, 'easier': 1.0, 'needed': 1.0, 'son': 7.0, 'resource': 1.0, 'i': 28.0, 'myself': 1.0, 'things': 2.0, 'fast': 1.0, '4': 3.0, 'm': 3.0, 's': 2.0, 'a': 10.0, 'do': 1.0, 'system': 1.0, 'actually': 1.0, 'that': 12.0, 'fire': 1.0, 'easily': 2.0, 'problems': 1.0, 'way': 2.0, 'all': 2.0, '20': 1.0, 'because': 2.0, 'went': 1.0, 'been': 1.0, 'pregnant': 1.0, 'but': 8.0, 'agitated': 1.0, 'use': 1.0, 'born': 1.0, 'could': 1.0, 'baby': 4.0, 'transport': 1.0, '1': 1.0, 'told': 1.0, 'out': 5.0, 'carrier': 5.0, 'britax': 2.0, 'dropped': 1.0, 'fabric': 2.0, 'into': 4.0, 've': 1.0, 'talk': 1.0, 'very': 2.0, 'being': 2.0, 'looking': 1.0, 'reservations': 1.0, 'dedicated': 1.0, 'feature': 1.0, 'started': 3.0, 'puts': 1.0, 'rightfully': 1.0, 'around': 1.0, 'haven': 1.0, 'his': 1.0, 'too': 1.0, '3': 3.0, 'good': 1.0, 'fidget': 1.0, 'might': 1.0, 'installation': 3.0, 'becoming': 1.0, 'isn': 2.0, 'd': 2.0, 'yeah': 1.0, 'eventually': 1.0, 'comfort': 1.0, 'realized': 1.0, 'would': 5.0, 'checked': 1.0, 'check': 1.0, 'back': 1.0, 'outlived': 1.0, 'own': 1.0, 'it': 14.0, 'be': 3.0, 'jealous': 1.0, 'definitely': 3.0, 'sweaty': 1.0, 'may': 1.0, 'tightened': 1.0, 'close': 1.0, '30': 2.0, 'minutes': 1.0, 'once': 1.0, 'more': 4.0, 'without': 2.0, 'watch': 1.0, 'inspect': 1.0, 're': 1.0, 'know': 1.0, 'mothers': 1.0, 'please': 1.0, 'really': 5.0, 'hard': 2.0, 'parents': 3.0, 'babe': 1.0, 'every': 1.0, 'bump': 1.0, 'movement': 1.0, 'there': 1.0, 'little': 3.0, 'cushioning': 1.0, 'eye': 1.0, 'until': 2.0, 'blanket': 1.0, 'styrofoam': 1.0, 'not': 1.0, 'cover': 1.0, 'also': 2.0, 'feel': 2.0, 'quickly': 2.0, 'easy': 1.0, 'outgrowing': 1.0, 'less': 1.0, 'as': 3.0, 'did': 1.0, 'began': 1.0, 'time': 2.0, 'recommend': 1.0, 'infant': 3.0, 'by': 1.0, 'lightning': 1.0}
Word element => {'bit': 1.0, 'a': 1.0, 'was': 1.0, 'much': 1.0, 'h': 1.0, 's': 1.0, 'speedy': 1.0, 'u': 1.0, 'i': 2.0, 'fits': 1.0, 'very': 2.0, 'need': 1.0, 'delivery': 1.0, 'where': 1.0, 'the': 2.0, 'for': 1.0, 'look': 1.0, 'is': 1.0, 'thnk': 1.0, 'it': 2.0, 'perfectly': 1.0, 'great': 1.0}
Word element => {'happy': 1.0, 'of': 1.0, 'fan': 1.0, 'customer': 1.0, 'super': 1.0, 'loved': 1.0, 'and': 1.0, 'very': 2.0, 'quality': 2.0, 'i': 3.0, 'look': 1.0, 'am': 2.0, 'fast': 1.0, 'a': 2.0, 'love': 3.0, 'packaged': 1.0, 'paper': 1.0, 'the': 1.0, 'these': 1.0, 'carefully': 1.0, 'colors': 1.0, 'pop': 1.0, 'good': 1.0, 'ship': 1.0, 'hedgehog': 1.0, 'excellent': 1.0}
Word element => {'girl': 1.0, 'small': 1.0, 'right': 1.0, 'bottom': 1.0, 'them': 1.0, 'wasn': 1.0, 'out': 1.0, 'trying': 1.0, 'had': 1.0, 'what': 1.0, 'or': 1.0, 'broken': 1.0, 'ours': 1.0, 'get': 1.0, 'sure': 1.0, 'not': 1.0, 'i': 2.0, 'but': 1.0, 'sitting': 1.0, 'only': 1.0, 'toilet': 1.0, 'normal': 1.0, 'design': 1.0, 'wipes': 1.0, 'her': 3.0, 'if': 2.0, 'just': 3.0, 'getting': 1.0, 'poke': 1.0, 'help': 2.0, 'a': 1.0, 'could': 1.0, 'we': 3.0, 't': 2.0, 'the': 6.0, 'discouraged': 1.0, 'is': 1.0, 'more': 1.0, '30': 1.0, 'this': 3.0, 'with': 1.0, 'hard': 1.0, 'she': 3.0, 'it': 3.0, 'even': 1.0, 'didn': 1.0, 'was': 3.0, 'seat': 3.0, 'to': 4.0, 'difficult': 2.0, 'still': 1.0, 'm': 1.0, 'onto': 1.0, 'absolutely': 1.0, 'tall': 1.0, 'for': 2.0, 'line': 1.0, 'daughter': 1.0, 'when': 2.0, 'needed': 2.0, 'herself': 1.0, 'lastly': 1.0, 'on': 3.0, 'would': 1.0, 'guard': 1.0, 'seconds': 1.0, 'made': 1.0, 'which': 1.0, 'tolerate': 1.0, 'my': 2.0, 'another': 1.0, 'cushion': 1.0, 'sit': 1.0, 'that': 1.0, 'has': 1.0, 'about': 1.0, 'thing': 1.0, 'no': 1.0, 'time': 1.0, 'so': 1.0, 'tried': 1.0}
Word element => {'growingupmadison': 1.0, 'blog': 1.0, 'photos': 1.0, 'full': 1.0, 'thumbs': 1.0, 'tiny': 1.0, 'two': 1.0, 'come': 1.0, 'because': 1.0, 'that': 7.0, 'easily': 1.0, 'wipes': 5.0, 'toddler': 2.0, 'which': 2.0, 'used': 3.0, 'must': 1.0, 'step': 2.0, 'tipping': 1.0, 'there': 2.0, 'daughter': 1.0, 'stool': 2.0, 'located': 1.0, 'my': 3.0, 'fact': 1.0, 'run': 1.0, 'air': 1.0, 'almost': 1.0, 'side': 1.0, 'll': 1.0, 'where': 3.0, 'your': 1.0, 'indeed': 1.0, 'on': 3.0, 'noticed': 1.0, 'toddlers': 1.0, 'long': 1.0, 'think': 1.0, 'supposed': 1.0, 'love': 4.0, 'for': 4.0, 'hammer': 1.0, 'already': 1.0, 'first': 1.0, 'with': 5.0, 'yay': 1.0, 'easy': 1.0, 'like': 2.0, 'flush': 1.0, 'the': 20.0, 'of': 1.0, 's': 2.0, 'a': 11.0, 'small': 3.0, 'added': 1.0, 'we': 6.0, 'toilet': 4.0, 'control': 1.0, 'arm': 1.0, 'nice': 2.0, 'big': 2.0, 'soda': 1.0, 'don': 3.0, 'stepped': 1.0, 'right': 1.0, 'to': 12.0, 'bathroom': 2.0, 'trainer': 1.0, 'not': 3.0, 'was': 5.0, 'turned': 1.0, 'down': 1.0, 'freshener': 1.0, 've': 1.0, 'as': 2.0, 'belongs': 1.0, 'odor': 2.0, 'wipe': 1.0, 'no': 2.0, 'leave': 1.0, '2': 1.0, 'find': 1.0, 'very': 5.0, 'recommended': 1.0, 'compared': 1.0, 're': 2.0, 'know': 1.0, 'nasty': 1.0, 'something': 1.0, 'conveniently': 1.0, 'buy': 3.0, 'you': 6.0, 'when': 4.0, 'com': 1.0, 'smells': 1.0, 'herself': 1.0, 'but': 3.0, 'so': 1.0, 'eat': 1.0, 'baking': 1.0, 'deodorizing': 1.0, 'out': 1.0, 'review': 1.0, 'opened': 2.0, 'understand': 1.0, 'it': 17.0, 'be': 7.0, 'flushable': 3.0, 'once': 1.0, 'comes': 3.0, 'these': 2.0, 'disc': 1.0, 'made': 1.0, 'eliminating': 1.0, 'fear': 1.0, 'can': 7.0, 'is': 10.0, 'baby': 1.0, 'she': 3.0, 'great': 1.0, 'about': 1.0, 'purchased': 1.0, 'contains': 1.0, 'potty': 5.0, 'in': 3.0, 'seat': 3.0, 'up': 3.0, 'install': 1.0, 'and': 9.0, 'just': 2.0, 'click': 1.0, 't': 3.0, 'above': 1.0, 'longer': 1.0, 'smell': 4.0, 'does': 1.0, 'removable': 1.0, 'enough': 1.0, 'only': 1.0, 'grab': 1.0, 'now': 1.0, 'problem': 2.0, 'touch': 1.0, 'really': 4.0, 'had': 1.0, 'refills': 1.0, 'getting': 1.0, 'i': 8.0, 'simple': 1.0, 'finally': 1.0, 'deodorizer': 2.0, 'kid': 1.0, 'how': 1.0, 'stinky': 2.0, 'our': 2.0, 'properly': 1.0, 'white': 1.0, 'sturdily': 1.0, 'use': 1.0, 'an': 1.0, 'adult': 1.0, 'green': 1.0, 'all': 2.0, 'bowl': 1.0, 'everything': 1.0, 'convenient': 1.0, 'collected': 1.0, 'complete': 1.0, 'clean': 1.0, 'this': 4.0, 'relatively': 1.0, 'some': 1.0, 'seen': 1.0, 'too': 1.0, 'one': 1.0, 'its': 1.0, 'considered': 1.0, 'unusable': 1.0, 'training': 2.0, 'do': 1.0, 'either': 1.0, 'system': 1.0, 'have': 2.0, 'need': 2.0, 'handy': 1.0, 'also': 1.0, 'needs': 1.0, 'smelling': 1.0, '36': 1.0, 'will': 2.0, 'thing': 2.0, 'clearly': 1.0, 'over': 1.0, 'clear': 1.0, 'say': 1.0, 'honest': 1.0, 'surely': 1.0, 'around': 1.0, 'each': 1.0, 'saving': 1.0, 'set': 1.0, 'separately': 1.0, 'money': 1.0, 'by': 1.0, 'buying': 1.0, 'refill': 1.0, 'they': 1.0, 'yes': 1.0, 'new': 1.0, 'recommend': 1.0, 'gets': 1.0}
Word element => {'elongated': 1.0, 'normal': 2.0, 'better': 2.0, 'devices': 1.0, 'although': 1.0, 'poorly': 1.0, 'topper': 1.0, 'toilets': 3.0, 'generic': 1.0, 'top': 1.0, 'these': 1.0, 'use': 1.0, 'expensive': 1.0, 'those': 1.0, 'nicely': 1.0, 'convenient': 1.0, 'they': 2.0, 'wipes': 2.0, 'same': 1.0, 'refills': 2.0, 'pay': 2.0, 'willing': 1.0, 'much': 2.0, 'makes': 1.0, 'knows': 1.0, 'won': 1.0, 'who': 1.0, 'out': 1.0, 'runs': 1.0, 'with': 1.0, 'after': 1.0, 'right': 1.0, 'll': 2.0, 'doubt': 1.0, 'honest': 1.0, 'very': 1.0, 'being': 1.0, 'any': 2.0, 'probably': 1.0, 'feel': 1.0, 'idea': 1.0, 'maybe': 1.0, 'refill': 1.0, 's': 1.0, 'splash': 1.0, 'you': 1.0, 'when': 3.0, 'that': 4.0, 'designed': 1.0, 'into': 1.0, 'really': 1.0, 'stool': 1.0, 'type': 1.0, 'had': 1.0, 'act': 1.0, 'about': 1.0, 'walk': 1.0, 'how': 1.0, 'considerably': 1.0, 'music': 1.0, 'sitting': 1.0, 'but': 3.0, 'all': 2.0, 'fits': 4.0, 'ever': 1.0, 'an': 2.0, 'it': 14.0, 'my': 2.0, 'looks': 2.0, 'this': 4.0, 'full': 1.0, 'potty': 5.0, 'can': 1.0, 'so': 3.0, 'would': 2.0, 'either': 1.0, 'boy': 1.0, 'i': 19.0, 'like': 4.0, 'buy': 1.0, 'hand': 1.0, 'closed': 1.0, 'and': 9.0, 'lid': 1.0, 'cover': 1.0, 'removable': 2.0, 'enough': 1.0, 'bright': 1.0, 'appreciate': 1.0, 'toys': 1.0, 'step': 1.0, 'doesn': 2.0, 'distraction': 1.0, 'of': 4.0, 'the': 19.0, 'small': 2.0, 'a': 11.0, 'fit': 2.0, 't': 7.0, 'difference': 1.0, 'we': 2.0, 'know': 1.0, 'however': 1.0, 'task': 1.0, 'isn': 1.0, 'don': 3.0, 'bathroom': 1.0, 'colors': 1.0, 'at': 1.0, 'look': 1.0, 'is': 7.0, 'as': 2.0, 'to': 2.0, 'why': 1.0, 'seats': 1.0, 'just': 2.0, 'means': 2.0, 'from': 1.0, 'while': 1.0, 'actual': 1.0, 'one': 3.0, 'scream': 1.0, 'for': 4.0, 'she': 2.0, 'many': 1.0, 'baby': 1.0, 'daughter': 1.0, 'side': 1.0, 'which': 1.0, 'made': 1.0, 'find': 1.0, '1': 1.0, 'comfortable': 1.0, 'spot': 1.0, 'cute': 1.0, 'are': 4.0, 'not': 3.0, 'on': 7.0, 'training': 1.0, 'getting': 2.0, 'used': 1.0, 'tried': 1.0, 'off': 1.0, 'seems': 1.0, 'more': 2.0, 'freshener': 1.0, 'house': 1.0, 'both': 1.0, 'mind': 1.0, 'has': 2.0, 'now': 1.0, 'air': 1.0, 'toilet': 6.0, 'guard': 1.0, 'does': 1.0, 'get': 1.0, 'sure': 2.0, 'than': 1.0, 'way': 2.0, 'little': 2.0, 'seat': 5.0, 'in': 4.0, 'm': 5.0, 'd': 1.0, 'built': 2.0, 'be': 1.0, 'came': 1.0, 'glad': 1.0, 'if': 2.0}
Word element => {'disks': 1.0, 'but': 1.0, 'nutshell': 1.0, 'everything': 1.0, 'wiping': 1.0, 'they': 1.0, 'durability': 1.0, 'far': 1.0, 'seen': 1.0, 'frequently': 1.0, 'tear': 2.0, 'pull': 1.0, 'holding': 1.0, 'while': 1.0, 'pry': 1.0, 'won': 1.0, 'button': 1.0, 'release': 1.0, 'open': 3.0, 'hard': 2.0, 'irritating': 1.0, 'side': 1.0, 'third': 1.0, 'as': 3.0, 'great': 1.0, 'foot': 1.0, 'even': 3.0, 'sometimes': 1.0, 'back': 2.0, 'clanging': 1.0, 'before': 1.0, 'stands': 2.0, 'she': 2.0, 'when': 2.0, 'my': 3.0, 'don': 2.0, 'stepping': 1.0, 'replacing': 1.0, 'worst': 1.0, 'scent': 2.0, 'use': 1.0, 'her': 1.0, 'bought': 1.0, 'adult': 1.0, 'to': 8.0, 'daughter': 2.0, 'for': 1.0, 't': 3.0, 'fit': 1.0, 'seat': 3.0, 'in': 2.0, 'also': 1.0, 'will': 1.0, 'into': 1.0, 'catch': 1.0, '3': 1.0, 'on': 3.0, 'any': 1.0, 'your': 1.0, 'bother': 1.0, 'pouring': 1.0, 'this': 3.0, 'toilets': 1.0, 'lost': 1.0, 'spout': 1.0, 'these': 1.0, 'comes': 1.0, 'really': 1.0, 'them': 1.0, 'has': 1.0, 'easier': 1.0, 'is': 5.0, 'at': 1.0, 'or': 1.0, 'feature': 1.0, 'i': 6.0, 'ever': 1.0, 'other': 1.0, 'anything': 1.0, 'a': 6.0, 's': 1.0, 'so': 2.0, 'can': 1.0, 'removable': 1.0, 'toilet': 1.0, 'control': 1.0, 'sitting': 1.0, 'rinse': 1.0, 'looking': 1.0, 'after': 2.0, 'potty': 9.0, 'stool': 1.0, 'onto': 2.0, 'like': 2.0, '1': 1.0, 'comfortable': 1.0, 'and': 8.0, 'convert': 1.0, 'of': 1.0, 'the': 21.0, 'chamber': 1.0, 'out': 4.0, 'prevent': 1.0, 'stink': 1.0, 'very': 1.0, 'little': 2.0, 'only': 1.0, 'sum': 1.0, 'put': 1.0, 'do': 1.0, 'its': 1.0, 'issues': 1.0, 'have': 3.0, 'with': 3.0, 'it': 7.0, 'are': 3.0, 'ploy': 1.0, 'first': 1.0, 'odor': 1.0, 'disk': 2.0, 'does': 1.0, 'literally': 1.0, 'package': 1.0, 'where': 1.0, 'come': 1.0, 'just': 1.0, 'still': 1.0, 'every': 1.0, 'if': 1.0, 'push': 2.0, 'you': 3.0, 'dump': 1.0, 'potties': 1.0, 'child': 1.0, 'up': 1.0, 'time': 1.0, 'uses': 1.0, 'we': 2.0, 'then': 3.0, 'itself': 1.0, 'not': 3.0, 'dry': 1.0, 'week': 1.0, 'marketing': 1.0, 'how': 1.0, 'besides': 1.0, 'second': 1.0, 'wipes': 4.0, 'tends': 1.0, 've': 1.0, 'down': 2.0, 'stick': 1.0, 'lot': 1.0, 'rear': 1.0}
Word element => {'use': 1.0, 'teach': 1.0, 'mother': 1.0, 'to': 3.0, 'it': 1.0, 'girl': 1.0, 'i': 1.0, 'part': 1.0, 'boy': 1.0, 'how': 1.0, 'did': 1.0, 'now': 1.0, 'is': 1.0, '2': 1.0, 'my': 1.0, 'their': 1.0, 'twins': 1.0, 'bought': 1.0, 'up': 1.0, 'and': 1.0, 'as': 1.0, 'nana': 1.0, 'them': 3.0}
Word element => {'problem': 1.0, 'isn': 1.0, 'upgrade': 1.0, 'be': 1.0, 'would': 1.0, 'but': 1.0, 'back': 1.0, '18': 1.0, 'daughter': 1.0, 'teeth': 1.0, 'perfect': 1.0, 't': 1.0, 'the': 2.0, 'serious': 1.0, 'my': 1.0, 'is': 1.0, 'on': 2.0, 'size': 1.0, 'useful': 1.0, 'cary': 1.0, 'potty': 2.0, 'it': 1.0, 'this': 1.0, 'she': 1.0, 'old': 1.0, 'step': 1.0, 'likes': 1.0, 'month': 1.0, 'sitting': 1.0, 'handle': 1.0, 'for': 2.0, 'using': 1.0, 'a': 4.0, 'her': 2.0, 'as': 1.0, 'brushing': 1.0}
Word element => {'kid': 1.0, 'gimmicky': 1.0, 'scent': 1.0, 'likes': 1.0, 'dish': 1.0, 'out': 1.0, 'catches': 1.0, 'works': 1.0, 'it': 3.0, 'can': 1.0, 'all': 1.0, 'of': 1.0, 'are': 1.0, 'disk': 1.0, 'the': 1.0, 'poo': 1.0, 'wipes': 1.0, 'pee': 1.0, 'and': 3.0, 'toddler': 1.0, 'your': 1.0}
Word element => {'it': 1.0, 'to': 1.0, 'star': 1.0, 'we': 1.0, 'months': 1.0, 'three': 1.0, 'baby': 1.0, 'for': 1.0, 'is': 2.0, 'my': 1.0, 'the': 1.0, 'too': 1.0, 'traveling': 1.0, 'i': 1.0, 'cute': 1.0, 'price': 1.0, 'and': 2.0, 'like': 1.0, 'good': 1.0, 'use': 1.0, 'safe': 1.0, 'easy': 1.0}
Word element => {'bebes': 1.0, 'os': 1.0, 'e': 1.0, 'um': 1.0, 'eacute': 1.0, 'bom': 1.0, 'its': 1.0, 'a': 1.0, 'adoram': 1.0, 'the': 1.0, 'nice': 1.0, 'para': 1.0, 'and': 1.0, 'babys': 1.0, 'enjoy': 1.0, 'item': 2.0, 'viagens': 1.0, 'for': 1.0, 'travels': 1.0, 'bath': 1.0}
Word element => {'tell': 1.0, 'days': 1.0, 'on': 2.0, 'indicator': 1.0, 't': 1.0, '2': 1.0, 'the': 5.0, 'awhile': 1.0, 'works': 1.0, 'solution': 1.0, 'water': 1.0, 'temporary': 1.0, 'maybe': 1.0, 'duck': 1.0, 'looking': 1.0, 'are': 1.0, 'you': 2.0, 'them': 1.0, 'tub': 3.0, 'this': 2.0, 'temperature': 2.0, 'and': 2.0, 'i': 1.0, 'us': 1.0, 'puj': 1.0, 'a': 4.0, 'which': 1.0, 'to': 3.0, 'had': 1.0, 'for': 4.0, 'transition': 1.0, 'our': 1.0, 'ok': 1.0, 'big': 1.0, 'worked': 2.0, 'loved': 1.0, 'got': 1.0, 'then': 1.0, 'of': 1.0, 'leak': 1.0, 'don': 1.0, 'sprung': 1.0, 'about': 1.0, 'month': 1.0, 'rely': 1.0, 'if': 1.0}
Word element => {'one': 1.0, 'no': 1.0, 'really': 1.0, 'regular': 1.0, 'in': 1.0, 'it': 1.0, 'i': 3.0, 'purpose': 1.0, 'now': 1.0, 'person': 1.0, 'room': 1.0, 'the': 1.0, 'more': 1.0, 'duck': 1.0, 'that': 1.0, 'besides': 1.0, 'of': 2.0, 'up': 1.0, 'should': 1.0, 'just': 1.0, 'akin': 1.0, 'bought': 1.0, 'see': 2.0, 'a': 1.0}
Word element => {'2': 1.0, 'is': 1.0, 'its': 1.0, 'baby': 1.0, 'u': 1.0, 'for': 1.0, 'most': 1.0, 'definitely': 1.0, 'son': 1.0, 'on': 2.0, 'my': 1.0, 'own': 2.0, 'like': 1.0, 'loves': 1.0, 'it': 3.0, 'i': 2.0, 'when': 1.0, 'your': 1.0, 's': 1.0, 'that': 1.0, 'up': 2.0, 'there': 2.0, 'able': 1.0, 'sit': 2.0, 'recommend': 1.0, 'get': 1.0}
Word element => {}
Word element => {'great': 1.0, 'older': 1.0, 'travel': 1.0, 'unsupported': 1.0, 'an': 1.0, 'recommend': 2.0, 'definitely': 1.0, 'just': 1.0, 'read': 1.0, 'sometimes': 1.0, 'relied': 1.0, 'hot': 2.0, 'too': 1.0, 'know': 1.0, 'you': 1.0, 'spot': 1.0, 'temperature': 1.0, 'blue': 1.0, 'herself': 1.0, 'back': 1.0, 'bumped': 1.0, 'but': 2.0, 'has': 1.0, 'always': 1.0, 'newborn': 1.0, 'wasn': 1.0, 'out': 1.0, 'a': 6.0, 'we': 3.0, 't': 1.0, 'our': 1.0, 'was': 2.0, 'tub': 1.0, '34': 2.0, 'plastic': 1.0, 'month': 1.0, 'it': 10.0, 'home': 1.0, 'since': 1.0, 'duck': 2.0, 'bath': 1.0, 'on': 4.0, 'your': 1.0, 'cushioned': 1.0, 'and': 5.0, 'across': 1.0, 'sit': 1.0, 'when': 4.0, 'times': 1.0, 'got': 3.0, 'daughter': 2.0, 'using': 1.0, 'for': 4.0, 'my': 2.0, 'began': 1.0, 'bought': 1.0, 'months': 2.0, 'squirm': 1.0, 'stayed': 1.0, 'i': 10.0, 'old': 1.0, 'would': 2.0, 'adequate': 1.0, 'put': 1.0, 'much': 1.0, 'shower': 2.0, 'traveled': 1.0, 'the': 8.0, 'of': 1.0, 'country': 1.0, 'sitter': 1.0, 'she': 2.0, 'baby': 1.0, 'ended': 1.0, 'after': 1.0, 'bad': 1.0, 'cute': 1.0, 'water': 2.0, 'up': 3.0, 'to': 6.0, 'pretty': 1.0, 'hard': 1.0, 'highly': 1.0, 'this': 4.0, 'few': 1.0, 'at': 1.0, 'is': 5.0, 'more': 1.0, 'toy': 1.0, 'inflatable': 1.0, 'retired': 1.0, 'cup': 1.0, 'maybe': 1.0, 's': 1.0, 'plug': 1.0, 'let': 2.0, 'expecting': 1.0, 'every': 1.0, 'bump': 1.0, 'loving': 1.0, '12': 1.0, 'warm': 1.0, 'had': 1.0, 'finally': 1.0, 'six': 1.0, 'drain': 1.0, 'use': 1.0, 'never': 2.0, 'now': 1.0, 'air': 1.0, 'in': 2.0, '6': 1.0, 'inflated': 1.0, 'liked': 1.0, 'because': 1.0, 'that': 2.0, 'hang': 1.0, 'there': 2.0, 'suction': 1.0, 'bottom': 3.0, 'dry': 1.0, 'also': 1.0, 'came': 1.0, 'with': 1.0}
Word element => {'long': 1.0, 'for': 1.0, 'using': 1.0, 'be': 1.0, 'will': 1.0, 'dont': 1.0, 'think': 1.0, 'def': 1.0, 'dissapointment': 1.0, 'a': 1.0, 'everyday': 1.0, 'have': 1.0, 'beak': 1.0, 'small': 1.0, 'so': 1.0, 'and': 1.0, 'inflate': 1.0, 'tub': 1.0, 'its': 1.0, 'to': 3.0, 'was': 1.0, 'only': 1.0, 'this': 1.0, 'excited': 1.0, 'it': 3.0, 'got': 1.0, 'bath': 1.0, 'live': 1.0, 'very': 1.0, 'as': 1.0, 'from': 1.0, 'i': 5.0, 'shipped': 1.0, 'singapore': 1.0, 'there': 1.0, 'ordered': 1.0, 'find': 1.0, 'such': 1.0, 'the': 1.0, 'air': 1.0, 'leaking': 1.0}
Word element => {'alone': 1.0, 'them': 1.0, 'adorable': 1.0, 'absolutely': 1.0, 'not': 1.0, 'get': 1.0, 'contained': 1.0, 'he': 1.0, 'him': 1.0, 'with': 1.0, 'there': 1.0, 'for': 4.0, 'love': 1.0, 'totally': 1.0, 'is': 2.0, 'beach': 1.0, 'see': 1.0, 'floor': 1.0, 'isn': 1.0, 'pen': 1.0, 'mention': 1.0, 'great': 3.0, 'the': 6.0, 'a': 2.0, 's': 1.0, 't': 1.0, 'it': 8.0, 'shower': 1.0, 'thing': 1.0, 'sit': 1.0, 'this': 1.0, 'perfect': 1.0, 'in': 4.0, 'complainers': 1.0, 'travel': 1.0, 'use': 1.0, 'worth': 2.0, 'yeah': 1.0, 'i': 6.0, 'lounging': 1.0, 'picture': 1.0, 'even': 1.0, 'ready': 1.0, 'his': 1.0, 'son': 1.0, 'and': 3.0, 'play': 2.0, 'put': 2.0, 'bath': 1.0, 'on': 2.0, 'bathroom': 1.0, 'my': 1.0, 'all': 2.0, 'as': 1.0, 'to': 3.0, 'while': 2.0, 'rug': 1.0, 'take': 1.0, 'but': 1.0, 'can': 2.0, '15': 1.0, 'toys': 1.0}
Word element => {'use': 1.0, 'to': 1.0, 'back': 1.0, 'my': 1.0, 'the': 5.0, 'side': 1.0, 'since': 1.0, 'in': 1.0, 'had': 1.0, 'we': 1.0, 'just': 1.0, 'those': 1.0, 'not': 1.0, 'perfect': 1.0, 'this': 2.0, 'hard': 1.0, 'plastic': 1.0, 'he': 2.0, 'it': 1.0, 'which': 2.0, 'using': 1.0, 'bought': 1.0, 'one': 1.0, 'after': 1.0, 'so': 1.0, 'of': 3.0, 'tubs': 1.0, 'easy': 1.0, 'tub': 1.0, 'i': 1.0, 'middle': 1.0, 'son': 1.0, 'very': 1.0, 'll': 1.0, 'bottom': 1.0, 'especially': 1.0, 'is': 1.0, 'around': 1.0, 'step': 1.0, 'fidgets': 1.0, 'much': 1.0, 'm': 1.0, 'afraid': 1.0, 'some': 1.0, 'hit': 1.0, 'drain': 1.0, 'on': 1.0, 'type': 1.0, 'irritated': 1.0, 'makes': 1.0}
Word element => {'tiles': 1.0, 'think': 1.0, 'us': 1.0, 'for': 1.0, 'not': 1.0, 'does': 1.0, 'quack': 1.0, 'something': 1.0, 'would': 1.0, 'ducky': 1.0, 'little': 1.0, 'first': 1.0, 'arms': 1.0, 'with': 3.0, 'just': 1.0, 'attention': 1.0, 'sensitive': 1.0, 'saves': 1.0, 'and': 2.0, 'so': 2.0, 'of': 1.0, 'don': 1.0, 'up': 1.0, 'wish': 1.0, 'this': 2.0, 'it': 5.0, 'test': 1.0, 'pay': 1.0, 'son': 1.0, 'our': 2.0, 'to': 2.0, 'outside': 1.0, 'now': 1.0, 't': 1.0, 'we': 3.0, 'a': 2.0, 'lot': 1.0, 'since': 1.0, 'months': 2.0, 'one': 1.0, 'water': 2.0, '9': 1.0, 'but': 1.0, 'work': 1.0, 'can': 1.0, 'suction': 1.0, 'be': 1.0, 'using': 1.0, 'brought': 1.0, 'in': 1.0, 'also': 1.0, 'seems': 1.0, 'pinch': 1.0, 'do': 2.0, 'much': 2.0, 'i': 3.0, 'have': 1.0, 'my': 1.0, 'another': 1.0, 'blow': 1.0, 'tub': 1.0, 'been': 1.0, 'loves': 1.0, 'that': 2.0, 'comes': 1.0, 'is': 3.0, 'quality': 1.0, 'thick': 1.0, '6': 1.0, 'he': 1.0, 'extremely': 1.0, 'hands': 1.0, 'the': 4.0, 'has': 1.0, 'hot': 1.0, 'worse': 1.0, 'button': 1.0}
Word element => {'water': 1.0, 'their': 2.0, 'rinse': 1.0, 'tub': 1.0, 'to': 4.0, 'the': 2.0, 'faces': 1.0, 'my': 1.0, 'for': 1.0, 'seems': 1.0, 'in': 2.0, 'this': 1.0, 'head': 1.0, 'like': 1.0, 'which': 1.0, 'need': 1.0, 'hair': 1.0, 'except': 1.0, 'part': 1.0, 'i': 2.0, 'when': 1.0, 'and': 1.0, 'getting': 1.0, 'get': 1.0, 'soap': 1.0, 'way': 1.0, 'babies': 1.0, 'avoid': 1.0, 'back': 1.0, 'of': 1.0, 'lean': 1.0, 'especially': 1.0}
Word element => {'please': 1.0, 'no': 1.0, 'increase': 1.0, 'reasonable': 1.0, 'same': 1.0, 'at': 1.0, 'would': 1.0, 'rider': 1.0, 'mood': 1.0, 'helps': 1.0, 'also': 1.0, 'cartoon': 1.0, 'cute': 2.0, 'oobr': 1.0, 'still': 1.0, 'in': 1.0, 'and': 1.0, 'out': 1.0, 'get': 1.0, 'cover': 1.0, 'enough': 1.0, 'they': 2.0, 'happily': 1.0, 'happy': 2.0, 'needs': 1.0, 'so': 1.0, 'more': 1.0, 'is': 1.0, 'really': 1.0, 'my': 2.0, 'price': 2.0, 'years': 1.0, 'one': 1.0, 'bought': 1.0, '4': 1.0, 'of': 3.0, 'live': 1.0, 'cartoons': 1.0, 'hatred': 1.0, 'now': 1.0, 'older': 1.0, 'wish': 1.0, 'this': 1.0, 'models': 1.0, 'with': 3.0, 'it': 2.0, 'children': 1.0, 'child': 1.0, 'elevate': 1.0, 'them': 1.0, 'boulevard': 1.0, 'loves': 1.0, 'ride': 1.0, 'seats': 3.0, 'just': 1.0, 'by': 1.0, 'old': 1.0, 'brand': 1.0, 'clek': 4.0, 'car': 1.0, 'recommend': 1.0, 'money': 1.0, 'can': 2.0, 'but': 2.0, 'back': 1.0, 'twist': 1.0, 'spent': 1.0, 'ago': 1.0, 'we': 2.0, 'our': 1.0, 'all': 1.0, 'to': 3.0, 'because': 1.0, 'the': 8.0, 'had': 1.0, 'twisted': 1.0, 'on': 1.0, '3': 1.0, 'therefore': 1.0, 'make': 2.0, 'hate': 1.0, 'straps': 1.0, 'never': 1.0, 'younger': 1.0, 'flat': 1.0, 'britax': 2.0, 'are': 2.0}
Word element => {'glow': 1.0, 'she': 1.0, 'baby': 1.0, 'continues': 1.0, 'anymore': 1.0, 'wipes': 1.0, 'those': 1.0, 'to': 1.0, 'cold': 1.0, 'not': 1.0, 'at': 1.0, 'shocked': 1.0, 'with': 2.0, 'coo': 1.0, 'nice': 1.0, 'enjoy': 1.0, 'does': 1.0, 'her': 1.0, 'the': 1.0, 'diaper': 1.0, 'lite': 1.0, 'and': 1.0, 'get': 1.0, 'changes': 1.0, 'nite': 1.0, 'too': 1.0}
Word element => {'bother': 1.0, 'out': 2.0, 'point': 1.0, 'but': 1.0, 'put': 2.0, 'never': 1.0, 'this': 1.0, 'minute': 1.0, 'mess': 1.0, 'i': 1.0, 'baby': 1.0, 'these': 1.0, 'expect': 1.0, 'skin': 1.0, 'come': 1.0, 'steam': 1.0, 'for': 1.0, 'meant': 1.0, 'clumps': 1.0, 'happens': 2.0, 'they': 3.0, 'dry': 1.0, 'are': 2.0, 'know': 1.0, 'which': 1.0, 'one': 2.0, 'cool': 1.0, 'what': 2.0, 'in': 3.0, 'or': 1.0, 'fall': 1.0, 'pull': 1.0, 'water': 3.0, 'and': 3.0, 'don': 3.0, 'up': 1.0, 'well': 1.0, 'mix': 1.0, 's': 2.0, 't': 3.0, 'a': 1.0, 'you': 3.0, 'again': 1.0, 'when': 1.0, 'kleenex': 1.0, 'apart': 1.0, 'same': 1.0, 'the': 2.0, 'deal': 1.0, 'with': 1.0, 'frustrating': 1.0}
Word element => {'little': 2.0, 'market': 1.0, 'in': 1.0, 'although': 1.0, 'cold': 2.0, 'still': 2.0, 'gets': 1.0, 'when': 1.0, 'by': 1.0, 'is': 3.0, 'more': 1.0, 'expensive': 1.0, 'for': 2.0, 'comfortable': 1.0, 'one': 3.0, 'effective': 1.0, 'your': 2.0, 'time': 1.0, 'a': 2.0, 'it': 1.0, 'warming': 2.0, 'baby': 3.0, 'wipe': 4.0, 'machine': 1.0, 'to': 1.0, 'all': 1.0, 'up': 2.0, 'of': 2.0, 'weather': 1.0, 'the': 6.0, 'without': 1.0, 'can': 1.0, 'warmer': 3.0, 'recommend': 2.0, 'i': 3.0, 'becomes': 1.0, 'mums': 2.0, 'my': 1.0, 'and': 2.0, 'get': 2.0, 'much': 1.0, 'type': 1.0, 'makes': 1.0, 'irritated': 1.0, 'warm': 1.0, 'that': 1.0, 'changing': 1.0, 'after': 1.0, 'quiet': 1.0, 'would': 1.0, 'munchkin': 1.0, 'each': 1.0, 'cost': 1.0, 'choose': 1.0, 'find': 1.0}
Word element => {'on': 2.0, 'worries': 1.0, 'to': 1.0, 'forgets': 1.0, 'thanks': 1.0, 'its': 1.0, 'off': 2.0, 'she': 2.0, 'the': 2.0, 'and': 1.0, 'love': 1.0, 'way': 1.0, 'it': 3.0, 'also': 1.0, 'warm': 1.0, 'no': 1.0, 'glow': 1.0, 'in': 1.0, 'shut': 2.0, 'dark': 1.0}
Word element => {'near': 1.0, 'else': 1.0, 'anywhere': 1.0, 'don': 1.0, 'ideal': 1.0, 'ledge': 1.0, 'sits': 1.0, 'so': 1.0, 'vinyl': 1.0, 'however': 1.0, 'pad': 1.0, 'of': 2.0, 'top': 1.0, 'sit': 1.0, 'to': 2.0, 'for': 2.0, 'one': 1.0, 'him': 2.0, 'would': 1.0, 'is': 1.0, 'second': 1.0, 'on': 3.0, 'wipe': 3.0, 'used': 1.0, 'heating': 1.0, 't': 1.0, 'a': 4.0, 'i': 6.0, 'because': 1.0, 'heat': 1.0, 'just': 2.0, 'now': 1.0, 'dries': 1.0, 'calmer': 1.0, 'changer': 2.0, 'cold': 1.0, 'long': 1.0, 'these': 1.0, 'place': 1.0, 'the': 9.0, 'purchased': 1.0, 'screamed': 1.0, 'my': 1.0, 'slot': 1.0, 'distorts': 1.0, 'pull': 1.0, 'much': 1.0, 'noticed': 1.0, 'warm': 1.0, 'in': 2.0, '34': 2.0, 'whenever': 1.0, 'not': 1.0, 'me': 1.0, 'probably': 1.0, 'use': 2.0, 'negatives': 1.0, 'newborn': 1.0, 'out': 2.0, 'unit': 1.0, 'it': 3.0, 'this': 1.0, 'and': 3.0, 'too': 1.0, 'sitting': 1.0, 'but': 2.0, 'have': 2.0, 'changing': 1.0, 'using': 1.0, 'table': 1.0}
Word element => {'about': 1.0, 'amazon': 1.0, 'to': 1.0, 'contact': 1.0, 'the': 3.0, 'had': 1.0, 'diaper': 1.0, 'a': 1.0, 'include': 1.0, 'dispenser': 1.0, 'chance': 1.0, 'bag': 1.0, 'have': 1.0, 'missing': 1.0, 'not': 3.0, 'was': 2.0, 'and': 1.0, 'adapter': 1.0, 'pieces': 1.0, 'included': 1.0}
Word element => {'blue': 1.0, 'or': 1.0, 'green': 1.0, 'is': 1.0, 'because': 1.0, 'there': 1.0, 'than': 1.0, 'give': 1.0, 'all': 1.0, 'it': 1.0, 'can': 1.0, 'either': 1.0, '50': 2.0, '3': 1.0, 'stars': 1.0, 'the': 1.0, 'more': 1.0, 't': 1.0, 'no': 1.0, 'receive': 1.0, 'choice': 1.0, 'color': 2.0, 'free': 1.0, 'chance': 1.0, 'for': 1.0, 'its': 1.0, 'to': 1.0}
Word element => {'too': 1.0, 'she': 3.0, 'will': 1.0, 'just': 2.0, 'love': 1.0, 'for': 1.0, 'loves': 2.0, 'my': 1.0, 'great': 2.0, 'the': 1.0, 'bought': 1.0, 'colors': 1.0, 'takes': 1.0, 'and': 1.0, 'this': 1.0, 'it': 5.0, 'with': 1.0, 'works': 1.0, 'her': 1.0, 'wherever': 1.0, 'goes': 1.0, 'i': 1.0, 'buy': 1.0, 'niece': 1.0, 'you': 1.0}
Word element => {'up': 1.0, 'waking': 1.0, 'your': 1.0, 'keeps': 1.0, 'changes': 1.0, 'baby': 1.0, 'night': 1.0, 'asleep': 1.0, 'the': 1.0, 'such': 1.0, 'a': 3.0, 'better': 1.0, 'alternative': 1.0, 'wipes': 2.0, 'do': 1.0, 'and': 3.0, 'freezing': 1.0, 'in': 1.0, 'stock': 1.0, 'this': 3.0, 'it': 3.0, 'come': 1.0, 'with': 1.0, 'is': 3.0, 'warm': 1.0, 'nice': 1.0, 'you': 2.0, 'plug': 1.0, 'easy': 1.0, 'recommend': 1.0, 'so': 1.0, 'warmer': 1.0, 'use': 1.0, 'cold': 1.0, 'that': 1.0, 'out': 1.0, 'of': 2.0, 'package': 1.0, 'i': 1.0, 'buy': 1.0, 'would': 1.0, 'really': 1.0, 'highly': 1.0, 'instead': 1.0, 'helps': 1.0, 'parents': 1.0, 'for': 1.0, 'newborns': 1.0, 'label': 1.0, 'all': 1.0, 'to': 3.0, 'any': 1.0, 'as': 1.0, 'have': 1.0, 'must': 1.0, 'item': 1.0}
Word element => {'your': 1.0, 'clip': 1.0, 'separately': 1.0, 'that': 1.0, 'can': 1.0, 'though': 1.0, 'onto': 1.0, 'dispenser': 1.0, 'like': 1.0, 'babies': 1.0, 'buy': 1.0, 'i': 2.0, 'when': 1.0, 'out': 1.0, 'them': 1.0, 'down': 1.0, 'don': 1.0, 'set': 1.0, 'immediately': 1.0, 'cool': 1.0, 'wipes': 1.0, 'bag': 2.0, 'take': 1.0, 'you': 2.0, 'my': 2.0, 'other': 1.0, 'remember': 1.0, 'being': 1.0, 'an': 1.0, 'diaper': 2.0, 'the': 2.0, 't': 1.0, 'such': 1.0, 'and': 1.0, 'do': 1.0, 'issue': 1.0, 'warmer': 1.0, 'this': 1.0, 'with': 2.0}
Word element => {'bad': 1.0, 'enough': 1.0, 'them': 1.0, 'return': 1.0, 'dries': 1.0, 'for': 1.0, 'after': 1.0, 'so': 1.0, 'product': 1.0, 'bought': 1.0, 'really': 1.0, 'longer': 1.0, 'several': 1.0, 'it': 4.0, 'can': 1.0, 'use': 1.0, 'either': 1.0, 'i': 3.0, 'or': 1.0, 'no': 1.0, 'burns': 1.0, 't': 2.0, 'the': 1.0, 'wipes': 1.0, 'weeks': 1.0, 'doesn': 1.0, 'didn': 1.0, 'heat': 1.0}
Word element => {'purchase': 1.0, 'a': 1.0, 'my': 1.0, 'about': 1.0, 'out': 1.0, 'i': 2.0, 'when': 1.0, 'valuable': 1.0, 'been': 1.0, 'has': 1.0, 'dispenser': 1.0, 'indeed': 1.0, 'dark': 1.0, 'and': 3.0, 'refill': 1.0, 'keeps': 1.0, 'good': 1.0, 'glow': 1.0, 'says': 1.0, 'warmer': 1.0, 'glad': 1.0, 'wipes': 1.0, 'load': 1.0, 'is': 2.0, 'what': 1.0, 'does': 1.0, 'it': 2.0, 'this': 1.0, 'easy': 1.0, 'just': 1.0, 'but': 1.0, 'had': 1.0, 'was': 1.0, 'to': 1.0, 'warm': 1.0, 'useful': 1.0, 'diaper': 2.0, 'the': 3.0, 'bag': 2.0, 'light': 1.0, 'aesthetic': 1.0, 'in': 2.0}
Word element => {'your': 1.0, 'at': 1.0, 'is': 1.0, 'since': 1.0, 'extra': 1.0, 'wipes': 3.0, 'and': 1.0, 'get': 1.0, 'in': 2.0, 'it': 1.0, 'this': 1.0, 'put': 1.0, 'water': 2.0, 't': 1.0, 'the': 5.0, 'due': 2.0, 'cold': 1.0, 'are': 1.0, 'if': 1.0, 'waste': 1.0, 'warmer': 1.0, 'dries': 1.0, 'on': 1.0, 'top': 3.0, 'you': 1.0, 'heater': 1.0, 'to': 2.0, 'money': 1.0, 'don': 1.0, 'located': 1.0, 'even': 1.0, 'low': 1.0, 'wet': 1.0, 'then': 1.0, 'last': 1.0}
Word element => {'baby': 1.0, 'your': 1.0, 'and': 1.0, 'hot': 1.0, 'be': 2.0, 'supposed': 1.0, 'warmer': 1.0, 'it': 5.0, 'know': 1.0, 'not': 1.0, 'straight': 1.0, 'could': 1.0, 'fast': 2.0, 'cold': 1.0, 'i': 1.0, 'but': 1.0, 'each': 1.0, 'warm': 1.0, 'until': 1.0, 's': 2.0, 'you': 1.0, 'pull': 2.0, 'clean': 1.0, 'out': 2.0, 'gets': 1.0, 'so': 1.0, 'to': 2.0, 'wipe': 1.0}
Word element => {'him': 1.0, 'keep': 1.0, 'pleasure': 1.0, 'will': 1.0, 'warm': 1.0, 'closed': 1.0, 'eyes': 1.0, 'night': 1.0, 'when': 1.0, 'or': 1.0, 'in': 1.0, 'of': 1.0, 'your': 1.0, 'has': 1.0, 'wonderful': 1.0, 'he': 1.0, 'this': 1.0, 'have': 1.0, 'you': 1.0, 'great': 1.0, 'the': 2.0, 'middle': 1.0, 'a': 3.0, 'be': 1.0, 'product': 1.0, 'wipe': 1.0, 'to': 2.0, 'change': 1.0, 'and': 1.0, 'calm': 1.0, 'baby': 1.0, 'she': 1.0, 'his': 1.0, 'her': 2.0}
Word element => {'still': 1.0, 'am': 1.0, 'top': 2.0, 'from': 1.0, 'as': 2.0, 'very': 1.0, 'out': 1.0, 'dried': 1.0, 'so': 2.0, 'days': 1.0, 'since': 1.0, 'a': 1.0, 'few': 1.0, 'of': 1.0, 'bottom': 2.0, 'but': 2.0, 'have': 1.0, 'had': 1.0, 'far': 2.0, 'wipes': 2.0, 'and': 1.0, 'i': 2.0, 'this': 2.0, 'only': 1.0, 'it': 2.0, 'loving': 1.0, 'works': 1.0, 'are': 3.0, 'heats': 1.0, 'warm': 2.0, 'great': 1.0, 'the': 8.0, 'ones': 1.0, 'not': 2.0, 'warmer': 2.0, 'on': 2.0}
Word element => {'his': 1.0, 'hit': 1.0, 'cold': 1.0, 'squirming': 1.0, 'soon': 1.0, 'and': 1.0, 'screaming': 1.0, 'instead': 1.0, 'change': 1.0, 'has': 1.0, 'warmer': 3.0, 'a': 4.0, 'alone': 1.0, 'no': 1.0, 'about': 1.0, 'was': 3.0, 'buying': 1.0, 'now': 1.0, 'wipe': 2.0, 'them': 1.0, 'ordered': 1.0, 'had': 1.0, 'drying': 1.0, 'this': 1.0, 'it': 1.0, 'when': 1.0, 'i': 4.0, 'cheaper': 1.0, 'set': 1.0, 'great': 2.0, 'deal': 1.0, 'the': 3.0, 'wipes': 1.0, 'than': 1.0, 'or': 1.0, 'browning': 1.0, 'off': 1.0, 'so': 2.0, 'bit': 1.0, 'of': 2.0, 'skeptical': 1.0, 'sleep': 1.0, 'as': 3.0, 'opinion': 1.0, 'gratuitous': 1.0, 'been': 1.0, 'written': 1.0, 'that': 2.0, 've': 1.0, 'butt': 1.0, 'out': 1.0, 'newborn': 1.0, 'diaper': 1.0, 'changed': 1.0, 'my': 2.0, 'will': 1.0, 'far': 1.0, 'through': 1.0}
Word element => {'feel': 1.0, 'to': 1.0, 'for': 1.0, 'warm': 2.0, 'almost': 1.0, 'baby': 1.0, 'money': 1.0, 'of': 1.0, 'waste': 1.0, 'wipes': 2.0, 'stay': 1.0, 'a': 1.0, 'is': 1.0, 'it': 3.0, 'this': 1.0, 'the': 3.0, 't': 1.0, 'doesn': 1.0, 'but': 1.0, 'instantly': 1.0, 'enough': 1.0, 'becomes': 1.0, 'keeps': 1.0, 'cold': 1.0, 'when': 1.0, 'dispense': 1.0, 'you': 1.0}
Word element => {'inside': 1.0, 'yet': 1.0, 'do': 2.0, 'also': 1.0, 'warmth': 1.0, 'sort': 1.0, 'have': 1.0, 'dryer': 1.0, 'changer': 1.0, 'came': 1.0, 'they': 1.0, 'brand': 1.0, 'feel': 1.0, 'an': 1.0, 'but': 2.0, 'was': 1.0, 'purchased': 1.0, 'had': 1.0, 'as': 1.0, 'any': 1.0, 'to': 1.0, 'other': 1.0, 'anything': 1.0, 'wipes': 2.0, 'of': 2.0, 'stable': 1.0, 'that': 1.0, 'fitting': 1.0, 'with': 3.0, 'this': 1.0, 'first': 2.0, 'it': 3.0, 'feels': 1.0, 'bru': 1.0, 'out': 2.0, 'issue': 2.0, 'one': 1.0, 'love': 1.0, 'for': 1.0, 'refills': 1.0, 'warmer': 2.0, 'on': 1.0, 'the': 5.0, 'pull': 1.0, 'my': 4.0, 'i': 8.0, 'when': 1.0, 'm': 1.0, 'more': 1.0, 'is': 1.0, 'really': 1.0, 'not': 4.0, 'light': 2.0, 'just': 2.0, 'depending': 1.0, 's': 1.0, 'up': 1.0, 'pitiful': 1.0, 'than': 1.0, 'if': 1.0, 'like': 1.0, 'which': 1.0, 'hold': 1.0, 'hand': 1.0, 'in': 1.0}
Word element => {'my': 1.0, 'happy': 1.0, 'soon': 1.0, 'eeyore': 1.0, 'hope': 1.0, 'wow': 1.0, '20': 1.0, 'expensive': 1.0, 'here': 1.0, 'because': 1.0, 'stars': 1.0, '3': 1.0, 'at': 1.0, 'tigger': 1.0, 'purchase': 1.0, 'pooh': 2.0, 'are': 2.0, 'winnie': 2.0, 'night': 1.0, 'i': 4.0, 'giving': 1.0, 'and': 2.0, 'with': 1.0, 'only': 1.0, 'each': 1.0, 'can': 1.0, 'paredes': 1.0, 'last': 1.0, 'store': 1.0, 'for': 2.0, 'fallas': 1.0, 'the': 2.0, 'dollars': 2.0, '2': 1.0, 'they': 2.0, 'so': 3.0, 'find': 1.0, 'found': 1.0, 'cute': 1.0}
Word element => {'cute': 1.0, 'its': 1.0, 'will': 1.0, 'but': 1.0, 'work': 1.0, 'water': 1.0, 'my': 1.0, 'each': 1.0, 'the': 1.0, 'for': 1.0, 'they': 1.0, 'has': 1.0, 'buy': 1.0, 'on': 1.0, 's': 1.0, 'one': 1.0, 'months': 1.0, 'bought': 1.0, 'walgreen': 1.0, 'loved': 1.0, 'this': 1.0, 'were': 1.0, 'that': 1.0, '11': 1.0, 'little': 1.0, 'very': 2.0, 'girl': 1.0, 'from': 1.0, 'understand': 1.0, 'i': 1.0, 'two': 1.0, 'and': 2.0, 'get': 2.0, 'easy': 1.0, 'it': 4.0, 'she': 3.0, 'to': 4.0, 'free': 1.0, 'now': 1.0, 'operate': 1.0, 'knows': 1.0, '99': 1.0, '6': 1.0, 'how': 1.0, 'off': 1.0, 'quite': 1.0, 'by': 1.0, 'herself': 1.0, 'does': 1.0, 'not': 1.0, 'stay': 1.0, 'turn': 1.0, 'in': 1.0}
Word element => {'to': 1.0, 'excited': 1.0, 'am': 1.0, 'i': 1.0, 'with': 1.0, 'a': 1.0, 'underwear': 1.0, 'training': 1.0, 'that': 1.0, 'start': 1.0, 'the': 1.0, 'try': 1.0, 'toddler': 1.0, 'diapers': 1.0, 'has': 1.0, 'been': 1.0, 'cloth': 2.0, 'in': 1.0, 'from': 1.0}
Word element => {'very': 1.0, 'themselves': 1.0, 'any': 1.0, 'leaks': 1.0, 'had': 1.0, 'haven': 1.0, 'urine': 1.0, 'plenty': 1.0, 'those': 1.0, 'slide': 1.0, 'or': 1.0, 'volume': 1.0, 'much': 1.0, 'great': 1.0, 'expense': 1.0, 'but': 1.0, '2': 1.0, 'place': 1.0, 'the': 4.0, 'pee': 1.0, 'these': 2.0, 'insert': 1.0, 'leak': 1.0, 'got': 1.0, 'washcloths': 1.0, 'and': 6.0, 'get': 1.0, 'them': 1.0, 'night': 2.0, 'old': 1.0, 'six': 1.0, 'since': 1.0, 'at': 1.0, 'cost': 1.0, 'super': 1.0, 'ups': 2.0, 'quickly': 1.0, 'sick': 1.0, 'for': 1.0, 'love': 1.0, 't': 3.0, 'a': 2.0, 'undies': 1.0, 'is': 1.0, 'pouch': 1.0, 'amazon': 1.0, 'that': 1.0, 'of': 8.0, 'timers': 1.0, 'were': 1.0, 'pull': 2.0, 'in': 3.0, 'year': 1.0, 'pay': 1.0, 'fold': 1.0, 'still': 1.0, 'shipping': 1.0, 'waste': 1.0, 'ton': 1.0, 'two': 1.0, 'i': 6.0, 'disposables': 1.0, 'are': 1.0, 'pairs': 1.0, 'which': 1.0, 'hold': 3.0, 'one': 1.0, 'bought': 1.0, 'because': 2.0, 'they': 4.0, 'free': 1.0, 'up': 1.0, 'don': 2.0, 'cheaper': 1.0, 'with': 2.0, 'have': 2.0, 'prime': 1.0}
Word element => {'percentiles': 1.0, 'end': 1.0, 'pushing': 1.0, 'isn': 1.0, 'or': 1.0, 'their': 1.0, 'appreciate': 1.0, 'doesn': 1.0, 'have': 1.0, 'you': 1.0, 'perfect': 1.0, 'think': 1.0, 'percentile': 1.0, '95th': 1.0, 'were': 1.0, 'hat': 3.0, 'initially': 1.0, 'ends': 1.0, 'angry': 1.0, 'face': 4.0, 'washed': 1.0, 'on': 2.0, 'your': 2.0, 'we': 3.0, 'going': 2.0, 't': 4.0, 'a': 3.0, 's': 1.0, 'during': 1.0, 'kept': 1.0, 'toddler': 3.0, 'rinsing': 1.0, 'back': 1.0, 'tilt': 1.0, 'head': 3.0, 'high': 1.0, 'to': 7.0, 'was': 3.0, 'baby': 1.0, 'she': 4.0, 'month': 1.0, 'showing': 1.0, 'wear': 1.0, 'it': 9.0, 'for': 1.0, 'would': 1.0, 'tight': 3.0, 'an': 1.0, 'fits': 1.0, 'hates': 1.0, 'this': 4.0, 'telling': 1.0, 'daughter': 1.0, 'got': 1.0, 'wouldn': 1.0, 'didn': 1.0, 'do': 1.0, 'put': 1.0, 'explained': 1.0, 'in': 5.0, 'old': 1.0, 'having': 1.0, 'that': 2.0, '20': 1.0, 'because': 1.0, 'does': 1.0, 'i': 4.0, 'well': 1.0, 'next': 1.0, 'has': 1.0, 'how': 3.0, 'water': 4.0, 'up': 1.0, 'getting': 1.0, 'and': 3.0, 'despite': 1.0, 'no': 3.0, 'get': 1.0, 'left': 1.0, 'after': 1.0, 'excited': 1.0, 'but': 3.0, 'work': 2.0, 'inevitably': 1.0, 'when': 1.0, 'circumference': 1.0, 'tried': 3.0, 'very': 1.0, 'did': 1.0, 'keep': 1.0, 'out': 1.0, 'pathetically': 1.0, 'the': 6.0, 'of': 2.0, 'us': 1.0, 'mark': 1.0, 'from': 1.0, 'new': 1.0, 'time': 2.0, 'so': 1.0, 'her': 9.0, 'use': 2.0, 'just': 1.0, 'my': 1.0, 'may': 1.0, 'entire': 1.0, 'like': 1.0, 'not': 1.0, 'if': 3.0, 'resulting': 1.0, 'red': 1.0, 'larger': 1.0, 'be': 2.0, 'hair': 1.0, 'fair': 1.0, 'is': 1.0}
Word element => {}
Word element => {'makes': 1.0, 'useful': 1.0, 'very': 1.0, 'him': 1.0, 'washing': 1.0, 'he': 1.0, 'get': 1.0, 'leak': 1.0, 'doesn': 2.0, 'the': 1.0, 'seal': 1.0, 'create': 1.0, 'so': 2.0, 'face': 1.0, 'his': 4.0, 'what': 2.0, 'down': 2.0, 'product': 1.0, 'expensive': 1.0, 'hair': 2.0, 'used': 3.0, 'water': 2.0, 'do': 1.0, 'and': 2.0, 'did': 1.0, 'getting': 2.0, 'now': 1.0, 'hates': 1.0, 'son': 1.0, 'not': 2.0, 'when': 1.0, 'to': 5.0, 'our': 2.0, 'that': 1.0, 'breeze': 1.0, 'something': 1.0, 'invention': 1.0, 'great': 1.0, 'it': 6.0, 'this': 1.0, 'suppose': 1.0, 'does': 3.0, 'having': 1.0, 'takes': 1.0, 'of': 1.0, 'care': 2.0, 'some': 1.0, 'take': 1.0, 'gentle': 1.0, 'visor': 1.0, 'if': 2.0, 'wash': 1.0, 'child': 2.0, 'pressure': 1.0, 'constricting': 1.0, 'is': 2.0, 'around': 2.0, 'head': 2.0, 'on': 1.0, 'your': 2.0, 'put': 2.0, 'baby': 1.0, 't': 2.0, 'a': 3.0, 'we': 2.0, 's': 1.0}
Word element => {'product': 1.0, 'decent': 1.0, 'fine': 1.0, 'was': 1.0, '34': 2.0, 'of': 2.0, 'i': 1.0, 'fear': 1.0, 'tried': 1.0, 'mainly': 1.0, 'the': 3.0, '2': 1.0, 'my': 1.0, 'like': 1.0, 'and': 3.0, 'me': 1.0, 'fighting': 2.0, 'in': 1.0, 'mean': 1.0, 'year': 1.0, 'shampoo': 1.0, 'time': 2.0, 'half': 1.0, 'has': 1.0, 'because': 1.0, 'just': 1.0, 'been': 1.0, 'little': 1.0, 'flight': 1.0, 'bath': 2.0, 'on': 1.0, 'rinse': 2.0, 'cringe': 1.0, 'old': 1.0, 'type': 1.0, 'go': 1.0, 'a': 2.0, 'we': 2.0, 'practiced': 1.0, 'it': 3.0, 'fight': 1.0, 'with': 1.0, 'this': 1.0, 'first': 1.0, 'how': 1.0, 'he': 1.0, 'would': 1.0, 'after': 1.0, 'ptsd': 1.0, 'or': 1.0, 'let': 1.0}
Word element => {'other': 1.0, 'at': 1.0, 'used': 1.0, 'amazon': 1.0, 'is': 1.0, 'during': 1.0, 'feeding': 1.0, 'of': 2.0, 'on': 2.0, 'found': 1.0, 'this': 2.0, 'with': 1.0, 'distracted': 1.0, 'unfortunately': 1.0, 'my': 2.0, 'end': 1.0, 'happy': 1.0, 'the': 2.0, 'mother': 1.0, 'dreams': 1.0, 'an': 1.0, 'had': 1.0, 'create': 1.0, 'we': 2.0, 'a': 2.0, 'that': 1.0, 'to': 1.0, 'our': 1.0, 'were': 1.0, 'fit': 1.0, 'product': 2.0, 'be': 1.0, 'bottle': 1.0, 'so': 1.0, 'however': 1.0, 'being': 1.0, 'toy': 1.0, 'dashed': 1.0, 'are': 1.0, 'super': 1.0, 'daughter': 1.0, 'less': 1.0, 'idea': 1.0, 'times': 2.0, 'and': 1.0, 'elephant': 1.0, 'can': 1.0, 'will': 1.0, 'millionaires': 1.0, 'also': 1.0}
Word element => {'go': 1.0, 'everywhere': 1.0, 'many': 1.0, 'we': 1.0, 'compliments': 1.0, 'get': 1.0, 'this': 2.0, 'gives': 1.0, 'something': 1.0, 'on': 2.0, 'my': 1.0, 'to': 2.0, 'baby': 1.0, 'hang': 1.0, 'eating': 1.0, 'when': 1.0, 'i': 1.0}
Word element => {'with': 1.0, 'want': 1.0, 'perfecting': 1.0, 'still': 1.0, 'impossible': 1.0, 'not': 1.0, 'won': 1.0, 'lids': 1.0, 'and': 2.0, 'floor': 1.0, 'don': 1.0, 'up': 1.0, 'ended': 1.0, 'but': 3.0, 'cup': 2.0, 'daddy': 1.0, 'of': 3.0, 'real': 1.0, 'contents': 1.0, 'are': 4.0, 'out': 1.0, 'drinking': 2.0, 'practice': 2.0, 'top': 1.0, 'mommy': 1.0, 'tried': 1.0, 'when': 2.0, 'pop': 2.0, 'at': 1.0, 'was': 2.0, 'looking': 1.0, 't': 2.0, 'a': 4.0, 'could': 2.0, 'art': 1.0, 'for': 5.0, 'honestly': 1.0, 'children': 2.0, 'remove': 1.0, 'it': 2.0, 'they': 1.0, 'bit': 1.0, 'so': 1.0, 'time': 1.0, 'without': 1.0, 'the': 9.0, 'i': 4.0, 'two': 1.0, 'mess': 1.0, 'my': 3.0, 'lid': 2.0, 'off': 2.0, 'an': 1.0, 'leaving': 1.0, 'your': 1.0, 'put': 1.0, 'on': 2.0, 'small': 2.0, 'leave': 1.0, 'table': 1.0, 'kids': 2.0, 'perfect': 1.0, 'these': 2.0, 'others': 1.0, 'dinner': 1.0, 'would': 1.0, 'insane': 1.0, 'cups': 3.0, 'to': 3.0, 'as': 1.0, 'huge': 1.0, 'entire': 1.0}
Word element => {'loves': 1.0, 'us': 1.0, 'is': 1.0, 'for': 1.0, 'which': 1.0, 'valve': 1.0, 'it': 1.0, 'great': 1.0, 'love': 1.0, 'are': 1.0, 'they': 1.0, 'these': 1.0, 'cups': 1.0, 'baby': 1.0, 'stackable': 1.0, 'and': 1.0, 'easy': 1.0, 'no': 1.0, 'to': 1.0, 'transport': 1.0}
Word element => {'size': 1.0, 'right': 1.0, 'just': 1.0, 'great': 1.0, 'ones': 1.0, 'broken': 1.0, 'get': 1.0, 'when': 1.0, 'it': 1.0, 'like': 1.0, 'kids': 1.0, 'use': 1.0, 'able': 1.0, 'are': 3.0, 'so': 1.0, 'of': 1.0, 'spout': 1.0, 'cup': 1.0, 'attach': 1.0, 'but': 1.0, 'rim': 1.0, 'split': 1.0, 'them': 2.0, 'damaging': 1.0, 'eventually': 1.0, 'on': 2.0, 'from': 1.0, 'snugly': 1.0, 'colors': 1.0, 'without': 1.0, 'the': 11.0, 'these': 1.0, 'far': 1.0, 'loved': 1.0, 'different': 1.0, 'ours': 1.0, 'toddler': 1.0, 'don': 2.0, 'up': 1.0, 'set': 1.0, 'were': 1.0, 'that': 3.0, 'spills': 1.0, 'what': 1.0, 'looking': 1.0, 'exactly': 1.0, 'our': 3.0, 'cups': 2.0, 'to': 6.0, 'where': 1.0, 'for': 4.0, 'along': 2.0, 'pastel': 1.0, 'cleaning': 1.0, 'crack': 1.0, 'keep': 1.0, 'and': 3.0, 'also': 1.0, 'one': 1.0, 'bought': 1.0, 't': 3.0, 'we': 2.0, 'a': 1.0, 'little': 2.0, 'didn': 1.0, 'girl': 1.0, 'lids': 3.0, 'was': 1.0, 'unfortunately': 1.0, 'attention': 1.0, 'still': 1.0, 'son': 1.0, 'pay': 1.0, 'seem': 1.0, 'they': 2.0, 'reviews': 1.0, 'flexibility': 1.0, 'i': 2.0, 'stated': 1.0, 'have': 1.0, 'themselves': 1.0, 'enough': 1.0, 'snap': 1.0}
Word element => {'again': 1.0, 'sure': 1.0, 'crack': 1.0, 'but': 1.0, 'if': 1.0, 'hand': 1.0, 'half': 1.0, 'than': 1.0, 'd': 1.0, 'however': 1.0, 'them': 1.0, 'unlike': 1.0, 'december': 1.0, 'they': 2.0, 'not': 1.0, 'because': 1.0, 'sippy': 2.0, 'll': 1.0, 'bought': 1.0, 'nested': 1.0, 'wash': 1.0, 'in': 2.0, 'most': 2.0, 'loved': 1.0, 'have': 2.0, 'cups': 3.0, 'i': 4.0, 'six': 1.0, 'more': 2.0, 'these': 1.0, 'the': 2.0, 'lids': 2.0, 'cracked': 2.0, 'may': 1.0, 'like': 1.0, '2012': 2.0, 'and': 1.0, 'always': 1.0, 'of': 2.0, '6': 1.0}
Word element => {'brand': 1.0, 'which': 1.0, 'snack': 1.0, 'bought': 1.0, 'i': 2.0, 'that': 1.0, 'child': 1.0, 'also': 2.0, 'cup': 1.0, 'use': 1.0, 'learning': 1.0, 'won': 1.0, 'on': 2.0, 'this': 1.0, 'older': 1.0, 'first': 1.0, 'durable': 1.0, 'are': 6.0, 'they': 3.0, 't': 1.0, 'great': 1.0, 'the': 2.0, 'these': 1.0, 'caps': 1.0, 'purpose': 1.0, 'to': 2.0, 'as': 1.0, 'from': 1.0, 'very': 1.0, 'when': 1.0, 'cups': 2.0, 'love': 1.0, 'for': 2.0, 'tight': 1.0, 'proof': 1.0, 'not': 2.0, 'difficult': 1.0, 'an': 1.0, 'seal': 1.0, 'but': 2.0, 'spill': 2.0, 'close': 1.0, 'well': 1.0, 'a': 2.0, 'good': 2.0, 'baby': 1.0}
Word element => {'be': 1.0, 'just': 1.0, 'ordered': 1.0, 'broken': 1.0, 'if': 1.0, 'help': 1.0, 'really': 1.0, 'this': 1.0, 'then': 1.0, 'over': 1.0, 'top': 1.0, 'improved': 1.0, 'sippy': 1.0, 'at': 1.0, 'crack': 1.0, 'three': 1.0, 'didn': 1.0, 'i': 4.0, 'about': 1.0, 'have': 3.0, 'they': 2.0, 'used': 1.0, 'are': 3.0, 'the': 7.0, 'some': 1.0, 'these': 1.0, 'might': 1.0, 't': 2.0, 'go': 1.0, 'a': 2.0, 'product': 1.0, 'where': 1.0, 'for': 1.0, 'love': 1.0, 'and': 3.0, 'tupperware': 1.0, 'lids': 5.0, 'only': 1.0, 'month': 1.0, 'useless': 1.0, 'well': 1.0, 'kinds': 1.0, 'of': 1.0, 'need': 1.0, 'simple': 1.0, 'left': 1.0, 'easy': 1.0, 'as': 1.0, 'all': 1.0, 'cups': 4.0, 'to': 3.0, 'doesn': 1.0, 'was': 1.0, 'clean': 1.0, 'so': 1.0, 'fortune': 1.0, 'however': 1.0, 'delighted': 1.0, 'because': 1.0, 'find': 1.0, 'that': 1.0, 'cost': 1.0, 'like': 1.0}
Word element => {'on': 1.0, 'stay': 1.0, 'lids': 1.0, 'of': 1.0, 'out': 1.0, 'drink': 1.0, 'purposes': 1.0, 'tight': 1.0, 'for': 2.0, 'good': 1.0, 'but': 2.0, 'closely': 1.0, 'to': 2.0, 'and': 1.0, 'very': 2.0, 'our': 1.0, 'stackable': 1.0, 'than': 1.0, 'a': 1.0, 'they': 3.0, 'bigger': 1.0, 'compact': 1.0, 'store': 1.0, 'easy': 2.0, 'read': 1.0, 'the': 2.0, 'more': 1.0, 'kids': 1.0, 'cups': 1.0, 'overall': 1.0, 'are': 4.0, 'yes': 1.0, 'smaller': 1.0, 'i': 2.0, 'bit': 1.0, 'expected': 1.0, 'should': 1.0, 'have': 1.0, 'description': 1.0}
Word element => {'quiet': 1.0, 'because': 1.0, 'feel': 1.0, 'like': 1.0, 'nuk': 1.0, 'prefer': 1.0, 'well': 1.0, 'as': 1.0, 'electric': 1.0, 's': 1.0, 'double': 1.0, 'used': 1.0, 'less': 2.0, 'in': 1.0, 'something': 1.0, 'if': 1.0, 'else': 1.0, 'wondered': 1.0, 'milk': 1.0, 'time': 1.0, 'pump': 5.0, 'glad': 1.0, 'manual': 1.0, 'cow': 1.0, 'medela': 1.0, 'efficient': 1.0, 'freestyle': 1.0, 'the': 2.0, 'more': 2.0, 'have': 1.0, 'recommend': 1.0, 'might': 1.0, 'quick': 1.0, 'it': 1.0, 'this': 3.0, 'tried': 1.0, 'i': 9.0, 'or': 1.0, 'be': 1.0, 'comfortable': 1.0, 'am': 1.0, 'and': 4.0, 'get': 1.0}
Word element => {'spending': 1.0, 'mean': 1.0, 'if': 1.0, 'this': 1.0, 'money': 2.0, 'on': 1.0, 'your': 1.0, 'face': 1.0, 'save': 1.0, 'my': 2.0, 'of': 1.0, 'shampoo': 1.0, 'its': 1.0, 'rubbery': 1.0, 'took': 2.0, 'i': 3.0, 'out': 2.0, 'to': 3.0, 'as': 2.0, 'china': 1.0, 'product': 1.0, 'for': 2.0, 'more': 2.0, 'is': 1.0, 'completely': 1.0, 'it': 9.0, 'while': 1.0, 'from': 1.0, 'looked': 1.0, 'when': 2.0, 'folded': 1.0, 'advise': 1.0, 'and': 3.0, 'thinness': 1.0, 'envelope': 1.0, 'or': 1.0, 'received': 1.0, 'the': 4.0, 'go': 1.0, 's': 1.0, 't': 1.0, 'a': 2.0, 'thicker': 1.0, 'even': 1.0, 'picture': 2.0, 'also': 1.0, 'in': 1.0, 'not': 1.0, 'sturdy': 2.0, 'stuffed': 1.0, 'thought': 1.0, 'foam': 1.0, 'resemble': 1.0, 'material': 1.0, 'something': 1.0, 'would': 1.0, 'misshapen': 1.0, 'small': 1.0, 'have': 1.0, 'due': 1.0, 'into': 1.0, 'that': 1.0, 'been': 1.0, 'was': 3.0, 'doesn': 1.0, 'keep': 1.0, 'daughter': 1.0, 'water': 1.0}
Word element => {'wonderfully': 1.0, 'my': 1.0, 'their': 1.0, 'hated': 1.0, 'works': 1.0, 'getting': 1.0, 'hair': 1.0, 'this': 1.0, 'washed': 1.0, 'was': 1.0, 'saver': 1.0, 'a': 1.0, 'girls': 1.0, 'life': 1.0}
Word element => {'below': 1.0, 'friendly': 1.0, 'visit': 1.0, 'please': 1.0, 'we': 1.0, 's': 3.0, 'carto': 1.0, 'car': 1.0, 'of': 1.0, 'the': 4.0, 'ride': 1.0, 'however': 1.0, '42': 1.0, 'positions': 1.0, 'about': 3.0, 'i': 4.0, 'old': 1.0, 'no': 1.0, 'years': 1.0, 'absolutely': 1.0, 'best': 1.0, '4': 1.0, 'booster': 1.0, 'did': 1.0, 'keep': 1.0, 'read': 1.0, 'her': 4.0, 'carseat': 5.0, 'one': 2.0, 'huge': 1.0, 'for': 6.0, 'slouching': 1.0, 'herself': 1.0, 'in': 4.0, 'blog': 1.0, 'graco': 1.0, 'excellent': 1.0, 'had': 2.0, 'she': 2.0, 'it': 7.0, 'while': 2.0, 'facing': 1.0, 'still': 1.0, 'our': 1.0, 'be': 1.0, 'at': 2.0, 'is': 5.0, 'daughter': 1.0, 'avoid': 1.0, 'that': 1.0, 'placed': 1.0, 'all': 1.0, 'an': 1.0, 'forward': 1.0, 'family': 1.0, 'perfect': 1.0, 'up': 1.0, 'months': 1.0, 'get': 1.0, 'little': 1.0, 'ulky': 1.0, 'chose': 1.0, 'and': 6.0, 'lbs': 2.0, 'my': 5.0, 'own': 1.0, 'b': 1.0, '5': 1.0, 'have': 2.0, 'unhook': 1.0, 'a': 9.0, 'small': 1.0, 'thing': 1.0, '2': 2.0, 'work': 1.0, '1': 1.0, 'big': 1.0, 'now': 1.0, 'you': 1.0, 'choice': 1.0, 'complaints': 1.0, 'needs': 1.0, 'will': 1.0, 'secure': 1.0, 'safe': 2.0, 'to': 5.0, 'pretty': 1.0, 'cannot': 1.0, 'asleep': 1.0, 'good': 1.0, 'which': 1.0, 'make': 1.0, 'anymore': 1.0, 'recommend': 1.0, '65': 2.0, 'plus': 1.0, 'this': 3.0, 'highly': 1.0, 'your': 1.0, 'mom': 1.0, 'has': 1.0, 'review': 1.0, 'hundai': 1.0, 'thorough': 1.0}
Word element => {'her': 1.0, 'enough': 1.0, 'big': 1.0, 'is': 1.0, 'daughter': 1.0, 'my': 1.0, 'that': 1.0, 'than': 1.0, 'other': 1.0, 'but': 1.0, 'i': 1.0, 'seats': 1.0, 'and': 2.0, 'convertible': 1.0, 'be': 1.0, 'still': 1.0, 'for': 3.0, 'size': 2.0, 'to': 3.0, 'normal': 1.0, 'the': 1.0, 'last': 1.0, 'may': 1.0, 'sit': 1.0, 'have': 1.0, 'a': 2.0, 'full': 1.0, 'while': 1.0, 'sedan': 1.0, 'seat': 1.0, 'adult': 1.0, 'next': 1.0, 'makes': 1.0, 'this': 2.0, 'it': 4.0, 'hard': 1.0, 'loves': 1.0, 'someone': 1.0}
Word element => {'needs': 1.0, 'occasions': 1.0, 'rare': 1.0, 's': 1.0, 'use': 1.0, 'skidmark': 1.0, 'has': 1.0, 'since': 1.0, 'cover': 1.0, 'daddy': 1.0, 'diaper': 1.0, 'exploding': 1.0, 'expressed': 1.0, 'but': 1.0, 'during': 1.0, 'comfortable': 1.0, 'returned': 1.0, 'stayed': 1.0, 'son': 2.0, 'natured': 1.0, 'hot': 1.0, 'breathable': 1.0, 'by': 1.0, 'bright': 1.0, 'harness': 1.0, 'unbuckle': 1.0, 'much': 1.0, 'place': 1.0, 'stay': 1.0, 'did': 2.0, 'head': 1.0, 'wished': 1.0, 'on': 2.0, 'amount': 1.0, 'top': 2.0, 'installed': 1.0, 'installation': 1.0, 'achieving': 1.0, 'had': 2.0, 'cool': 1.0, 'car': 2.0, 'again': 1.0, 'older': 1.0, 'want': 1.0, 'outboard': 1.0, 'fabric': 1.0, 'for': 2.0, 'barely': 2.0, 'an': 1.0, 'be': 1.0, 'difficult': 1.0, 'position': 2.0, 'didn': 1.0, '2010': 3.0, 'planning': 1.0, 'crap': 1.0, 'were': 1.0, 'full': 1.0, 'this': 3.0, 'drive': 1.0, '30': 2.0, 'i': 2.0, 'his': 2.0, 'mother': 1.0, 'ford': 1.0, 'than': 1.0, 'relatively': 1.0, 'attach': 1.0, 'purchased': 1.0, 'would': 3.0, 'either': 1.0, 'center': 2.0, 'to': 7.0, 'our': 8.0, 'think': 2.0, 'outing': 1.0, 'side': 1.0, 'good': 1.0, 'trial': 1.0, 'value': 1.0, 'she': 1.0, 'deal': 2.0, 'of': 10.0, 'the': 24.0, 'abandoned': 1.0, 'a': 16.0, 'great': 2.0, 'explorer': 2.0, 'thought': 1.0, 'it': 12.0, 'felt': 2.0, 'so': 1.0, 'securely': 1.0, 'after': 2.0, 'at': 1.0, 'is': 3.0, 'took': 1.0, 'my': 2.0, 'vehicle': 3.0, 'return': 1.0, 'certain': 1.0, 'equipped': 2.0, 'key': 2.0, 'issue': 1.0, 'leg': 1.0, 'we': 14.0, 'explorers': 1.0, 'more': 2.0, 'door': 1.0, '2002': 2.0, 'husband': 1.0, 'laundered': 1.0, 'trip': 1.0, 'and': 13.0, 'model': 1.0, 'tall': 1.0, 'sedan': 1.0, 'was': 5.0, 'no': 2.0, 'chicco': 3.0, 'fairly': 1.0, 'rest': 1.0, 'fit': 8.0, 't': 2.0, 'belt': 3.0, 'too': 1.0, 'happy': 1.0, 'rear': 1.0, 'flex': 1.0, 'facing': 1.0, 'seat': 13.0, 'in': 12.0, 'like': 1.0, 'effort': 2.0, 'amazon': 1.0, 'accommodated': 1.0, 'trouble': 1.0, 'get': 2.0, 'secure': 3.0, 'hour': 1.0, 'also': 1.0, 'with': 7.0, 'safety': 1.0, 'size': 2.0, 'latch': 3.0, 'compared': 1.0, 'mine': 1.0, 'infant': 2.0, 'reinforcing': 1.0, 'sport': 1.0, 'are': 3.0, 'not': 5.0, 'have': 2.0, 'research': 1.0, 'positions': 1.0, 'need': 1.0, 'darling': 1.0, 'two': 1.0, 'little': 2.0, 'opinion': 1.0, 'extra': 1.0, 'once': 1.0, 'room': 1.0, 'because': 2.0, 'combination': 1.0, 'that': 2.0, 'yes': 1.0, 'tried': 1.0, 'both': 2.0, 'half': 1.0, 'sweating': 1.0, 'policy': 1.0, 'actually': 1.0, 'swearing': 1.0, 'back': 1.0, 'install': 1.0, 'completely': 1.0, 'couldn': 1.0}
Word element => {'wasn': 1.0, 'carrier': 1.0, 'all': 1.0, 'protected': 2.0, 'took': 1.0, 'is': 1.0, 'seat': 2.0, 'around': 1.0, 'car': 1.0, 'gives': 1.0, 'as': 3.0, 'baby': 3.0, 'held': 1.0, 'few': 1.0, 't': 1.0, 'the': 2.0, 'great': 1.0, 'this': 1.0, 'he': 1.0, 'it': 1.0, 'in': 2.0, 'well': 2.0, 'a': 2.0, 'days': 1.0, 'was': 1.0, 'to': 2.0, 'and': 2.0, 'get': 1.0, 'before': 1.0, 'used': 1.0}
Word element => {'guess': 1.0, 'i': 1.0, 'anyways': 1.0, 'needed': 1.0, 'it': 1.0, 'year': 1.0, '12': 1.0, 'and': 1.0, 'we': 1.0, 'get': 1.0, 'our': 1.0, 'having': 1.0, 'old': 1.0, 'to': 3.0, 'happen': 1.0, 're': 1.0, 'a': 1.0, 'accommodate': 1.0, 'bigger': 1.0, 'vehicle': 1.0, 'twins': 1.0}
Word element => {'older': 1.0, 'when': 1.0, 'play': 1.0, 'and': 1.0, 'pack': 1.0, 'portable': 1.0, 'my': 1.0, 'seems': 1.0, 'newborn': 1.0, 'in': 1.0, 'slightly': 1.0, 'was': 1.0, 'from': 1.0, 'very': 2.0, 'as': 1.0, 'be': 1.0, 'toy': 1.0, 'colors': 1.0, 'center': 1.0, 'neutral': 1.0, 'bent': 1.0, 'then': 1.0, 'sturdy': 1.0, 'bassinet': 1.0, 'packaging': 1.0, 'will': 1.0, 'but': 1.0, 'looks': 1.0, 'fine': 1.0, 'for': 1.0, 'using': 1.0, 'bar': 1.0, 'a': 1.0}
Word element => {'wet': 1.0, 'from': 1.0, 'gross': 1.0, 'about': 1.0, 't': 1.0, 'this': 1.0, 'scrubber': 1.0, 'sitting': 1.0, 'don': 1.0, 'a': 1.0, 'getting': 1.0, 'it': 1.0, 'great': 1.0, 'and': 1.0, 'around': 1.0, 'job': 1.0, 'so': 1.0, 'dries': 1.0, 'quickly': 1.0, 'does': 1.0, 'i': 1.0}
Word element => {'ok': 1.0, 'are': 1.0, 'now': 1.0, 'leaking': 1.0, 'screwing': 1.0, 'somehow': 1.0, 'update': 1.0, 'i': 2.0, 'll': 1.0, 'longer': 1.0, 'with': 1.0, 'upright': 1.0, 'than': 1.0, 'table': 1.0, 'or': 3.0, 'no': 1.0, 'tipped': 1.0, 'their': 2.0, 'if': 2.0, 'being': 1.0, 'just': 3.0, 'leak': 1.0, 'they': 3.0, 'even': 2.0, 'cute': 1.0, 'stop': 1.0, 'holding': 1.0, 'review': 1.0, 'skilled': 1.0, 'miraculously': 1.0, 'bit': 1.0, 'that': 2.0, 'realize': 1.0, 'straight': 1.0, 'play': 1.0, 'and': 5.0, 'left': 1.0, 'get': 1.0, 'dropping': 1.0, 'meaning': 1.0, 'rather': 1.0, 'once': 1.0, 'spout': 1.0, 'the': 6.0, 'these': 1.0, 'unimpressive': 1.0, 'but': 2.0, '2': 1.0, 'from': 2.0, 'not': 2.0, 'making': 1.0, 'difficult': 1.0, 'shaking': 1.0, 'do': 1.0, 'lids': 1.0, 'only': 1.0, 'it': 1.0, 'he': 1.0, 'had': 1.0, 'for': 4.0, 'tight': 1.0, 'handle': 1.0, 'to': 5.0, 'cups': 1.0, 'make': 1.0, 'on': 6.0, 'pounding': 1.0, 'days': 1.0, 'start': 1.0, 'screw': 1.0, 'right': 2.0, 'when': 1.0, 'you': 1.0, 'more': 2.0, 'is': 1.0, 'side': 3.0, 're': 2.0, 'off': 1.0, 'use': 1.0, 'going': 1.0, 'could': 1.0, 'we': 4.0, 's': 1.0, 'a': 3.0, 'sipping': 1.0, 've': 1.0, 'new': 1.0, 'sippy': 2.0, 'them': 5.0, 'baby': 1.0, 'at': 1.0, 'keep': 1.0, 'little': 2.0}
Word element => {'much': 1.0, 'see': 1.0, 'can': 1.0, 'has': 1.0, 'when': 1.0, 'water': 1.0, 'in': 1.0, 'resistant': 1.0, 'leak': 2.0, 'making': 1.0, 's': 1.0, 'a': 4.0, 'not': 3.0, 'sides': 1.0, 'ring': 1.0, 'very': 1.0, 'leaked': 2.0, 'it': 4.0, 'this': 4.0, 'with': 2.0, 'how': 1.0, 'he': 2.0, 'does': 1.0, 'from': 2.0, 'part': 2.0, 'aesthetically': 1.0, 'year': 1.0, 'his': 1.0, 'i': 3.0, 'old': 1.0, 'being': 1.0, 'the': 8.0, 'my': 1.0, 'cup': 8.0, 'and': 3.0, '1': 1.0, 'have': 1.0, 'able': 1.0, 'left': 2.0, 'clear': 1.0, 'side': 2.0, 'is': 4.0, 'lying': 1.0, 'bought': 1.0, 'sippy': 3.0, 'where': 1.0, 'love': 1.0, 'for': 1.0, 'using': 2.0, 'seal': 1.0, 'training': 1.0, 'on': 2.0, 'put': 1.0, 'so': 1.0, 'messy': 1.0, 'that': 1.0, 'been': 1.0, 'proof': 1.0, 'out': 1.0, 'liquid': 1.0, 'top': 1.0, 'through': 1.0, 'played': 1.0, 'beautiful': 1.0, 'was': 2.0, 'as': 1.0, 'to': 1.0, 'fingers': 1.0, 'spout': 1.0}
Word element => {'lid': 1.0, 'convenient': 1.0, 'and': 1.0, 'hold': 1.0, 'easy': 1.0, 'it': 1.0, 'with': 1.0, 'suck': 1.0, 'is': 2.0, 'to': 2.0, 'right': 1.0, 'amount': 1.0, 'keep': 1.0, 'of': 1.0, 'liquid': 1.0, 'the': 2.0, 'released': 1.0, 'for': 1.0, 'clean': 1.0, 'baby': 1.0, 'little': 1.0, 's': 1.0}
Word element => {'toddler': 1.0, 'size': 1.0, 'right': 1.0, 'colors': 1.0, 'fun': 1.0, 'mouth': 1.0, 'just': 1.0, 'perfect': 1.0, 'for': 2.0, 'the': 3.0, 'stage': 1.0, 'next': 1.0, 'and': 1.0, 'up': 1.0, 'after': 1.0, 'soft': 1.0, 'step': 1.0, 'baby': 1.0, 'spoon': 1.0}
Word element => {'children': 1.0, 'for': 1.0, 'utensils': 1.0, 'than': 1.0, 'easier': 1.0, 'lot': 1.0, 'handle': 1.0, 'onto': 1.0, 'the': 1.0, 'my': 1.0, 'little': 1.0, 'other': 1.0, 'loved': 1.0, 'guy': 1.0, 'a': 1.0, 'using': 1.0, 'these': 1.0, 'he': 1.0, 'to': 1.0, 'was': 1.0, 'able': 1.0, 'hold': 1.0}
Word element => {'child': 1.0, 'especially': 1.0, 'dangerous': 1.0, 'be': 1.0, 'parents': 1.0, 'alert': 1.0, 'wanted': 1.0, 'still': 1.0, 'from': 1.0, 'other': 2.0, 'happy': 1.0, 'teething': 1.0, 'look': 1.0, 'will': 2.0, 'cup': 2.0, 'asked': 1.0, 'they': 3.0, 'i': 2.0, 'never': 1.0, 'coating': 1.0, 'tomy': 1.0, 'rubber': 1.0, 'use': 1.0, 'on': 2.0, 'brand': 1.0, 'old': 1.0, 'bought': 1.0, 'variety': 1.0, 'it': 2.0, 'month': 1.0, 'she': 3.0, 'with': 1.0, 'pink': 1.0, 'very': 2.0, 'and': 5.0, 'products': 1.0, 'these': 1.0, 'company': 1.0, 'my': 1.0, 'choked': 1.0, 'chewed': 1.0, 'age': 1.0, 'said': 1.0, 'in': 3.0, 'pieces': 1.0, 'contacted': 1.0, 'have': 3.0, 'the': 6.0, 'orange': 1.0, 'long': 1.0, 'second': 1.0, 'sip': 1.0, '14': 1.0, 'any': 1.0, 'to': 4.0, 'cups': 2.0, 'for': 2.0, 'hopeful': 1.0, 'lucky': 1.0, 'off': 1.0, 'am': 1.0, 'happened': 1.0, 'easily': 1.0, 'using': 2.0, 'like': 1.0, 'daughter': 1.0, 'feeling': 1.0, 'spout': 1.0, 'of': 1.0, 'did': 1.0, 'me': 1.0, 'not': 1.0, 'has': 2.0, 'so': 1.0, 'boon': 1.0, 'time': 1.0, 'been': 2.0, 'we': 1.0, 'could': 2.0, 'a': 2.0, 'send': 1.0, 'sippy': 1.0, 'something': 1.0, 'this': 2.0}
Word element => {'right': 1.0, 'but': 1.0, 'bottle': 1.0, 'pours': 1.0, 'they': 2.0, 'the': 1.0, 'these': 1.0, 'besides': 1.0, 'is': 1.0, 'with': 1.0, 'from': 1.0, 'son': 1.0, 'anything': 1.0, 'transition': 1.0, 'out': 1.0, 'them': 2.0, 'cups': 1.0, 'likes': 1.0, 'bought': 1.0, 'if': 1.0, 'problem': 1.0, 'my': 2.0, 'milk': 1.0, 'water': 1.0, 'leak': 1.0, 'like': 1.0, 'crazy': 1.0, 'to': 2.0, 'contain': 1.0, 'i': 1.0, 'try': 1.0}
Word element => {'everything': 1.0, 'eats': 1.0, 'thing': 1.0, 'have': 1.0, 'different': 1.0, 'my': 1.0, 'miserably': 1.0, 'for': 2.0, 'them': 2.0, 'styles': 1.0, 'several': 1.0, 'bought': 2.0, 'with': 1.0, 'eating': 1.0, 'of': 1.0, 'tried': 1.0, 'utensils': 1.0, 'her': 2.0, 'get': 1.0, 'and': 2.0, 'we': 2.0, 'failed': 1.0, 'she': 1.0, 'these': 1.0, 'granddaughter': 1.0, 'to': 2.0, 'now': 1.0}
Word element => {'etc': 1.0, 'shopping': 1.0, 'when': 1.0, 'trunk': 1.0, 'in': 1.0, 'throw': 1.0, 'the': 1.0, 'these': 1.0, 'two': 1.0, 'enjoying': 1.0, 'of': 1.0, 'use': 1.0, 'sturdy': 1.0, 'i': 1.0, 'my': 1.0, 'are': 1.0, 'and': 4.0, 'good': 1.0, 'quite': 1.0, 'for': 1.0, 'weight': 2.0, 'light': 2.0, 'their': 1.0, 'babies': 1.0, 'it': 5.0, 'is': 2.0, 'friends': 1.0, 'hence': 1.0, 'to': 1.0, 'brought': 1.0, 'just': 1.0}
Word element => {'her': 1.0, 'at': 1.0, 'keep': 1.0, 'sturdy': 1.0, 'big': 1.0, 'to': 2.0, 'inexpensive': 1.0, 'mimi': 1.0, 'stroller': 1.0, 'house': 1.0, 'haul': 1.0, 'a': 1.0, 'don': 1.0, 'light': 1.0, 'and': 3.0, 'papas': 1.0, 'so': 1.0, 'we': 1.0, 'have': 2.0, 'great': 1.0, 't': 1.0, 'the': 1.0, 'bulky': 1.0, 'parents': 1.0, 'one': 1.0}
Word element => {'just': 1.0, 'but': 1.0, 'me': 2.0, 'for': 1.0, 'tricky': 1.0, 'is': 1.0, 'that': 1.0, 'weight': 1.0, 'assemble': 1.0, 'may': 1.0, 'gender': 1.0, 'locking': 1.0, 'neutral': 1.0, 'light': 1.0, 'simple': 1.0, 'be': 1.0, 'to': 1.0, 'mechanism': 1.0, 'sometimes': 1.0}
Word element => {'hat': 1.0, 'a': 1.0, 'child': 1.0, 'if': 1.0, 'especially': 1.0, 'your': 1.0, 'on': 1.0, 'or': 1.0, 'move': 1.0, 'of': 2.0, 'top': 1.0, 'cover': 1.0, 'head': 1.0, 'sun': 1.0, 'protect': 1.0, 'does': 3.0, 'canopy': 3.0, 'gave': 1.0, 'why': 1.0, 'value': 1.0, 'good': 1.0, 'very': 2.0, 'son': 1.0, 'is': 5.0, 'days': 1.0, 'there': 2.0, 'disney': 1.0, 'it': 4.0, 'this': 4.0, 'with': 1.0, 'everyday': 1.0, '4': 1.0, 'i': 6.0, 'ordered': 1.0, 'wearing': 1.0, 'from': 1.0, 'bags': 1.0, 'was': 2.0, 'to': 1.0, 'stroller': 5.0, 'adjust': 1.0, 'vacation': 1.0, 'stars': 1.0, 'for': 2.0, 'one': 1.0, 'my': 4.0, 'used': 1.0, 'had': 1.0, 'what': 1.0, 'but': 1.0, 'four': 1.0, 'money': 1.0, 'strudy': 1.0, 'no': 1.0, 'about': 1.0, 'point': 2.0, 'at': 2.0, 'sons': 1.0, 'and': 5.0, 'durable': 1.0, 'break': 1.0, 'do': 1.0, 'the': 9.0, 'suitcase': 2.0, 'anything': 1.0, 'other': 1.0, 'attached': 1.0, 'world': 1.0, 'handles': 1.0, 'in': 1.0, 'did': 1.0, 'not': 5.0, 'which': 1.0, 'like': 1.0}
Word element => {'easier': 1.0, 'stroller': 1.0, 'weeks': 1.0, 'bought': 1.0, 'useful': 1.0, 'of': 1.0, 'old': 1.0, 'i': 1.0, 'cheaper': 1.0, 'a': 2.0, 'really': 1.0, 'is': 2.0, 'it': 3.0, 'with': 1.0, 'orlando': 1.0, 'the': 1.0, 'my': 1.0, 'for': 2.0, 'in': 1.0, 'price': 1.0, 'years': 1.0, 'daughter': 1.0, 'rent': 1.0, 'than': 1.0, '5': 1.0, 'couple': 1.0, 'and': 1.0}
Word element => {'rather': 1.0, 'and': 1.0, 'logo': 1.0, 'cute': 1.0, 'also': 1.0, 'awesome': 1.0, 'canopy': 2.0, 'pretty': 1.0, 'stroller': 1.0, 'use': 1.0, 'shipped': 1.0, 'little': 1.0, 'the': 1.0, 'can': 1.0, 'a': 2.0, 'for': 1.0, 'love': 1.0, 'using': 1.0, 'stuff': 1.0, 'is': 1.0, 'it': 3.0, 'this': 1.0, 'quickly': 1.0, 'two': 1.0, 'reasons': 1.0, 'as': 1.0, 'when': 1.0, 'mickey': 1.0, 'you': 2.0, 'arent': 1.0, 'to': 1.0, 'hold': 1.0}
Word element => {'far': 1.0, 'gym': 1.0, 'use': 1.0, 'take': 1.0, 'old': 1.0, 'two': 1.0, 'i': 2.0, 'with': 1.0, 'it': 2.0, 'year': 1.0, 'day': 1.0, 'to': 2.0, 'as': 1.0, 'for': 3.0, 'using': 1.0, 'something': 1.0, 'that': 1.0, 'parts': 1.0, 'my': 1.0, 't': 1.0, 'a': 2.0, 'well': 1.0, 'd': 1.0, 'price': 1.0, 'stroller': 2.0, 'will': 1.0, 'or': 1.0, 'the': 4.0, 'deal': 1.0, 'is': 2.0, 'really': 1.0, 'me': 1.0, 'couldn': 1.0, 'long': 2.0, 'periods': 1.0, '19': 1.0, 'holding': 1.0, 'up': 1.0, 'so': 1.0, 'time': 1.0, 'good': 1.0, 'paid': 1.0, 'last': 1.0, 'once': 1.0, 'imagine': 1.0, 'of': 1.0, 'rather': 1.0, 'flimsy': 1.0, 'in': 1.0}
Word element => {'be': 1.0, 'if': 1.0, 'an': 1.0, 'price': 1.0, 'mobile': 2.0, 'so': 1.0, 'deal': 1.0, 'batteries': 1.0, 'things': 1.0, 'no': 1.0, 'toys': 1.0, 'sticker': 1.0, 'for': 1.0, 'get': 1.0, 'and': 2.0, 'the': 2.0, 'great': 1.0, 'it': 1.0, 'need': 1.0, 'nice': 1.0, 'girls': 1.0, 'needed': 1.0, 'easy': 2.0, 'to': 3.0, 'switch': 2.0, 'attached': 1.0, 'makes': 1.0, 'out': 1.0, 'is': 1.0, 'not': 1.0}
Word element => {'a': 1.0, 'issued': 1.0, 'together': 1.0, 'after': 1.0, 'realized': 1.0, 'quickly': 1.0, 'at': 1.0, 'it': 3.0, 'returned': 1.0, 'i': 1.0, 'got': 1.0, 'work': 1.0, 'jammed': 1.0, 'but': 1.0, 'all': 1.0, 'least': 1.0, 'easy': 1.0, 'didn': 1.0, 'assemble': 1.0, 'was': 3.0, 'to': 1.0, 'music': 1.0, 'box': 1.0, 'refund': 1.0, 'me': 1.0, 'and': 2.0, 'the': 1.0, 't': 1.0, 'they': 1.0}
Word element => {'carseat': 1.0, 'few': 1.0, 'a': 1.0, 'i': 2.0, 'can': 2.0, 'thing': 1.0, 'after': 1.0, 'that': 1.0, 'is': 2.0, 'complain': 1.0, 'months': 1.0, 'pain': 1.0, 'great': 1.0, 'the': 3.0, 'purchase': 1.0, 'like': 1.0, 'do': 1.0, 'and': 1.0, 'not': 1.0, 'seat': 1.0, 'straps': 1.0, '8230': 2.0, 'sometimes': 1.0, 'adjusting': 1.0, 'be': 1.0, 'with': 1.0, 'only': 1.0, 'this': 2.0}
Word element => {'back': 1.0, 'from': 1.0, 'probably': 1.0, 'forward': 1.0, 'ready': 1.0, 'that': 1.0, 'in': 1.0, 'age': 1.0, 'outgrow': 1.0, 'high': 2.0, 'glad': 1.0, 'am': 2.0, 'first': 2.0, 'especially': 1.0, 'whichever': 1.0, 'height': 2.0, '50': 1.0, 'limit': 3.0, 'weight': 1.0, 'either': 1.0, 'rf': 1.0, 'outgrows': 1.0, 'he': 1.0, 'him': 2.0, 'be': 1.0, 'doesn': 2.0, 'most': 1.0, 'but': 1.0, 'will': 2.0, 'face': 1.0, 'however': 1.0, 'super': 1.0, 'since': 1.0, 'at': 1.0, 'comes': 1.0, 'is': 4.0, '4': 1.0, 'i': 6.0, 'old': 1.0, 'easy': 2.0, 'just': 2.0, 'not': 1.0, 'uncomfortable': 1.0, 'bought': 1.0, 'carseat': 1.0, 'erfing': 1.0, 'hopefully': 1.0, 'my': 3.0, 'trickier': 1.0, 'or': 1.0, 'latch': 3.0, 'and': 3.0, 'kids': 1.0, 'this': 2.0, 'after': 1.0, '19': 1.0, 'for': 2.0, 'love': 1.0, 'car': 1.0, 'absolutely': 1.0, 'great': 1.0, 'near': 1.0, 'until': 1.0, '97': 1.0, 'install': 1.0, 'go': 1.0, 'a': 5.0, 't': 2.0, 'the': 5.0, '40lb': 1.0, 'have': 1.0, 'little': 1.0, 'nowhere': 1.0, 'rear': 1.0, 'tho': 1.0, 'simple': 1.0, 'seat': 2.0, 'to': 2.0, 'all': 3.0, 'as': 2.0, 'it': 1.0, 'month': 1.0, 'seatbelt': 1.0, 'covers': 1.0, 'strap': 1.0, 'are': 1.0, 'so': 2.0, 'bit': 1.0, 'booster': 1.0, 'stiff': 1.0, 'facing': 1.0, 'still': 1.0, 'son': 1.0, 'seem': 1.0}
Word element => {'with': 1.0, 'ease': 1.0, 'girl': 1.0, 'little': 1.0, 'wrong': 1.0, 'proven': 1.0, 'please': 1.0, 'looking': 1.0, 'better': 1.0, 'definitely': 1.0, 'extra': 1.0, 'but': 3.0, 'believe': 1.0, 'money': 1.0, 'can': 1.0, 'before': 1.0, 'd': 2.0, 'very': 2.0, 'made': 2.0, 'home': 1.0, 'sturdy': 1.0, 'almost': 1.0, 'suv': 1.0, 'preassembled': 1.0, 'don': 1.0, 'seats': 1.0, 'i': 7.0, 'babys': 1.0, 'r': 1.0, 'that': 2.0, 'decision': 1.0, 'doubts': 1.0, 'into': 1.0, 'were': 1.0, 'comes': 1.0, 'at': 2.0, 'is': 2.0, 'to': 3.0, 'in': 4.0, 'seat': 5.0, 'pads': 1.0, 'sorry': 1.0, 'suggest': 1.0, 'it': 5.0, 'advertisements': 1.0, 'thought': 1.0, 'had': 1.0, 'wife': 2.0, 'seeing': 1.0, 'for': 5.0, 'seen': 1.0, 'a': 2.0, 'fit': 1.0, 't': 1.0, 'new': 1.0, 'something': 1.0, 've': 1.0, 'car': 1.0, 'us': 2.0, 'looks': 1.0, 'me': 2.0, 'my': 6.0, 'eye': 1.0, 'padding': 1.0, 'been': 2.0, 'amazon': 1.0, 'hype': 1.0, 'the': 12.0, 'person': 1.0, 'of': 1.0, 'our': 1.0, 'how': 1.0, 'safe': 1.0, 'take': 1.0, 'on': 2.0, 'afternoon': 1.0, 'make': 1.0, 'happy': 3.0, 'seemed': 1.0, 'big': 1.0, 'mistake': 1.0, 'daughter': 1.0, 'comfortably': 1.0, 'has': 1.0, 'her': 2.0, 'naps': 1.0, 'belts': 1.0, 'way': 1.0, 'this': 1.0, 'she': 1.0, 'jealous': 1.0, 'others': 1.0, 'if': 1.0, 'same': 1.0, 'and': 7.0, 'pleasing': 1.0, 'anyone': 1.0, 'mind': 1.0, 'regret': 1.0, 'makes': 2.0, 'did': 1.0, 'pinch': 1.0, 'penny': 1.0, 'talked': 1.0}
Word element => {'you': 1.0, 'thank': 1.0, 'expected': 1.0, 'i': 1.0, 'what': 1.0, 'just': 1.0}
Word element => {'friends': 1.0, 'for': 1.0, 'fine': 1.0, 'does': 1.0, 'hands': 1.0, 'expectant': 1.0, 'his': 1.0, 'with': 1.0, 'something': 1.0, 'impossible': 1.0, 'there': 1.0, 'also': 1.0, 'extra': 1.0, 'all': 1.0, 'an': 1.0, 'have': 2.0, 'told': 1.0, 'awesome': 1.0, 'play': 1.0, 'about': 1.0, 'wiggly': 1.0, 'been': 1.0, 've': 1.0, 'facing': 1.0, 'long': 1.0, 'on': 2.0, 'flippy': 1.0, 'keeper': 1.0, 'this': 7.0, 'product': 1.0, 'day': 1.0, 'grandparents': 1.0, 'kind': 1.0, 'get': 2.0, 'to': 6.0, 'was': 2.0, 'suddenly': 1.0, 'cream': 1.0, 'change': 1.0, 'so': 2.0, 'can': 1.0, 'but': 1.0, 'changed': 1.0, 'as': 2.0, 'diaper': 3.0, 'glad': 1.0, 'barely': 1.0, 'any': 1.0, 'idea': 1.0, 'plus': 1.0, 'before': 1.0, 'forget': 1.0, 'lucky': 1.0, 'off': 1.0, 'direction': 1.0, 'it': 3.0, 'rash': 1.0, 'babysitters': 1.0, 'will': 1.0, 'could': 1.0, 'a': 3.0, 's': 1.0, 't': 1.0, 'of': 3.0, 'the': 6.0, 'and': 5.0, 'baby': 4.0, 'i': 10.0, 'putting': 1.0, 'just': 2.0, 'call': 1.0, 'needed': 1.0, 'time': 1.0, 'invention': 1.0, 'mind': 1.0, 'has': 2.0, 'changing': 1.0, 'much': 1.0, 'older': 1.0, 'teen': 1.0, 'my': 4.0, 'me': 1.0, 'not': 2.0, 'find': 1.0, 'peace': 1.0, 'love': 2.0, 'he': 5.0, 'because': 1.0, 'that': 2.0, 'fall': 1.0, 'is': 5.0, 'right': 1.0, 'table': 1.0, 'in': 1.0, 'm': 2.0, 'gives': 1.0, 'supervising': 1.0, 'getting': 3.0, 'used': 2.0, 'three': 1.0, 'little': 1.0, 'peeved': 1.0, 'when': 1.0, 'what': 2.0, 'roll': 1.0, 'over': 1.0, 'trapper': 1.0, 'which': 1.0, 'good': 1.0, 'old': 1.0, 'point': 1.0, 'exactly': 1.0}
Word element => {'behavior': 1.0, 'exhibits': 1.0, 'when': 1.0, 'need': 1.0, 'know': 1.0, 'and': 5.0, 'using': 1.0, 'cannot': 1.0, 'like': 2.0, 'stands': 1.0, 'baby': 1.0, 'she': 2.0, 'it': 6.0, 'month': 1.0, 'felt': 1.0, 'even': 1.0, 'safety': 1.0, 'the': 4.0, 'wrap': 1.0, 'on': 4.0, 'not': 1.0, 'just': 2.0, 'that': 3.0, 'been': 2.0, 'you': 2.0, 'our': 1.0, 'lie': 1.0, 'to': 2.0, 'so': 2.0, 'occasion': 1.0, 'her': 2.0, 'sits': 1.0, 'is': 4.0, 'caught': 1.0, 'more': 2.0, 'flips': 1.0, 'yes': 2.0, 'off': 1.0, 'enough': 2.0, 'still': 1.0, 'every': 1.0, 'only': 1.0, 'paid': 1.0, 'amazing': 1.0, 'think': 1.0, 'flip': 1.0, 'registry': 1.0, 'expensive': 1.0, 'for': 1.0, 'actually': 1.0, 'quite': 1.0, 'old': 1.0, 'i': 7.0, 'put': 1.0, 'changing': 2.0, 'much': 2.0, 'happy': 1.0, 'one': 2.0, 'a': 2.0, 'penny': 1.0, 'incident': 1.0, 'dont': 1.0, 'this': 1.0, 'simple': 1.0, 'due': 1.0, 'with': 1.0, 'be': 1.0, 'will': 1.0, '11': 1.0, 'secure': 1.0, 'but': 1.0, 'literally': 1.0, 'in': 2.0, 'midair': 1.0, 'after': 1.0, 'makes': 1.0, 'did': 1.0, 'soem': 1.0, 'research': 1.0, 've': 2.0, 'changer': 1.0, 'great': 1.0, 'your': 2.0, 'lunged': 1.0, 'feel': 2.0, 'reviews': 1.0, 'pad': 1.0, 'day': 1.0, 'landed': 1.0, 'worth': 1.0, 'now': 2.0, 'velcro': 1.0, 'strapped': 1.0, 't': 1.0, 'belt': 1.0, 'diaper': 1.0, 'has': 1.0, 'table': 1.0, 'easier': 1.0, 'pleasant': 1.0, 'cotton': 1.0, 'don': 1.0, 'anywhere': 1.0, 'though': 1.0}
Word element => {'incredible': 1.0, 'miracle': 1.0, 'enjoy': 1.0, 'fabric': 1.0, 'pants': 1.0, 'relatively': 1.0, 'he': 2.0, 'slip': 1.0, 'simple': 1.0, 'symptom': 1.0, 'am': 1.0, 'ness': 1.0, 'seems': 1.0, 'wiggly': 1.0, 'of': 4.0, 'because': 2.0, 'issues': 1.0, 'wrist': 1.0, 'struggling': 1.0, 'lays': 1.0, 'was': 1.0, 'back': 1.0, 'over': 1.0, 'on': 2.0, 'no': 1.0, 'with': 1.0, 'quick': 1.0, 'this': 4.0, 'amazing': 1.0, 'doorstep': 1.0, 'at': 2.0, 'since': 1.0, 'for': 2.0, 'product': 3.0, 'ability': 1.0, 'comfort': 1.0, 'has': 2.0, 'settle': 1.0, 'life': 1.0, 'diaper': 2.0, 'changed': 1.0, 'changes': 1.0, 'still': 1.0, 'son': 1.0, 'is': 2.0, 'completely': 1.0, 'my': 3.0, 'makers': 1.0, 's': 1.0, 'a': 3.0, 'ago': 1.0, 'wrestled': 1.0, 'truly': 1.0, 'minky': 1.0, 'it': 3.0, 'month': 1.0, 'incredibly': 1.0, 'arrived': 1.0, 'changer': 1.0, 'to': 3.0, 'loves': 1.0, 'changing': 1.0, 'into': 2.0, 'that': 1.0, 'twist': 1.0, 'his': 5.0, 'thankful': 1.0, 'longer': 1.0, 'down': 1.0, 'rolling': 1.0, 'body': 1.0, 'while': 1.0, 'being': 1.0, 'i': 4.0, 'm': 3.0, 'holding': 1.0, 'feet': 1.0, 'looking': 1.0, 'the': 4.0, 'without': 1.0, 'so': 3.0, 'vest': 1.0, 'messy': 1.0, 'him': 1.0, 'bum': 1.0, 'and': 6.0, 'free': 1.0, 'now': 1.0, 'hates': 1.0}
Word element => {'you': 1.0, 'dangerous': 1.0, 'fight': 1.0, 'of': 1.0, 'less': 2.0, 'made': 1.0, 'diaper': 1.0, 'glad': 1.0, 'quickly': 1.0, 'lot': 2.0, 'at': 1.0, 'and': 4.0, 'over': 1.0, 'months': 1.0, 'roll': 1.0, 'changing': 2.0, 'from': 1.0, 'rolling': 1.0, 'table': 1.0, 'get': 1.0, 'easy': 1.0, 'wanted': 1.0, 'as': 3.0, 'to': 2.0, '9': 1.0, 'no': 1.0, 'about': 1.0, 'just': 1.0, 'washing': 1.0, 'wouldn': 1.0, 'remove': 1.0, 'it': 3.0, 'my': 1.0, 'daughter': 1.0, 'lay': 1.0, 'old': 1.0, 'etc': 1.0, 'i': 1.0, 'still': 1.0, 'possible': 1.0, 'reach': 1.0, 'the': 4.0, 'prevents': 1.0, 'wipes': 1.0, 'her': 2.0, 'found': 1.0, 'this': 2.0, 'doing': 1.0, 'off': 2.0, 'pad': 1.0, 'more': 2.0, 'is': 1.0, 'comfortable': 1.0, 'for': 3.0, 'same': 1.0, 'so': 1.0, 'time': 1.0, 'a': 3.0, 'we': 1.0, 't': 1.0, 's': 1.0, 'put': 1.0, 'changer': 1.0, 'm': 1.0, 'onto': 1.0}
Word element => {'myself': 1.0, 'probably': 1.0, 'top': 1.0, 'on': 1.0, 'cooperate': 1.0, 'there': 1.0, 'lay': 1.0, 'just': 2.0, 'will': 2.0, 'although': 1.0, 'free': 1.0, 'her': 1.0, 'wriggle': 1.0, 'closure': 1.0, 'open': 1.0, 'guilty': 1.0, 'works': 1.0, 'only': 1.0, 'that': 1.0, 'much': 1.0, 'changing': 1.0, 'began': 1.0, 'arms': 1.0, 'and': 4.0, 'sometimes': 1.0, 'nightmare': 1.0, 'a': 4.0, 's': 2.0, 't': 1.0, 'be': 2.0, 'daughter': 1.0, 'absolute': 1.0, 'gave': 1.0, 'often': 1.0, 'started': 1.0, 'used': 2.0, 'putting': 1.0, 'i': 3.0, 'dreading': 1.0, 'parents': 1.0, 'suggestion': 1.0, 'have': 1.0, 'must': 1.0, 'it': 7.0, 'baby': 3.0, 'she': 4.0, 'were': 1.0, 'recommend': 1.0, 'babes': 1.0, 'other': 1.0, 'an': 1.0, 'all': 1.0, 'diaper': 2.0, 'as': 1.0, 'really': 1.0, 'still': 1.0, 'every': 1.0, 'so': 1.0, 'time': 2.0, 'items': 1.0, 'or': 1.0, 'most': 2.0, 'but': 1.0, 'penny': 1.0, 'off': 1.0, 'little': 1.0, 'of': 6.0, 'the': 7.0, 'longer': 1.0, 'than': 1.0, 'should': 1.0, 'worth': 1.0, 'now': 1.0, 'both': 1.0, 'mind': 1.0, 'is': 1.0, 'at': 1.0, 'first': 1.0, 'in': 2.0, 'usual': 1.0, 'we': 4.0, 'then': 1.0, 'to': 8.0, 'became': 1.0, 'right': 1.0, 'start': 1.0, 'relaxed': 1.0, 'smiling': 1.0, 'one': 1.0, 'happy': 1.0, 'velcro': 2.0, 'during': 1.0, 'husband': 1.0, 'changes': 1.0, 'designer': 1.0, 'product': 1.0, 'cry': 1.0, 'for': 1.0, 'would': 1.0, 'add': 2.0, 'my': 4.0, 'calm': 1.0, 'learning': 1.0, 'this': 2.0, 'few': 1.0, 'snaps': 2.0, 'addition': 1.0, 'how': 2.0, 'instead': 1.0, 'when': 1.0, 'don': 1.0, 'undo': 1.0, 'has': 1.0, 'learned': 1.0}
Word element => {'night': 1.0, 'at': 1.0, 'room': 1.0, 'enough': 1.0, 'child': 1.0, 'light': 2.0, 'to': 1.0, 'painted': 1.0, 'glass': 1.0, 's': 1.0, 'well': 1.0, 'adults': 1.0, 'made': 1.0, 'just': 1.0, 'give': 1.0, 'or': 1.0, 'art': 1.0, 'a': 2.0, 'very': 1.0, 'and': 2.0, 'comforting': 1.0, 'serene': 1.0}
Word element => {'what': 1.0, 'and': 2.0, 'very': 4.0, 'up': 1.0, 'colors': 1.0, 'good': 1.0, 'sturdy': 1.0, 'carry': 1.0, 'is': 1.0, 'versatile': 1.0, 'material': 1.0, 'product': 1.0, 'recominedo': 1.0, 'to': 2.0, 'place': 1.0, 'breaking': 1.0, 'the': 2.0, 'inrenos': 1.0, 'with': 1.0, 'it': 1.0, 'makes': 1.0, 'different': 1.0, 'pockets': 1.0, 'utensils': 1.0, 'comfortable': 1.0}
Word element => {'straightened': 1.0, 'be': 1.0, 'turn': 1.0, 'in': 2.0, 'also': 1.0, 'nice': 1.0, 'and': 2.0, 'had': 1.0, 'back': 1.0, 'but': 2.0, 'work': 1.0, 'rotates': 1.0, 'functioning': 1.0, 'just': 1.0, 'not': 1.0, 'to': 4.0, 'all': 1.0, 'isn': 1.0, 'freely': 1.0, 'attached': 1.0, 'well': 1.0, 'front': 1.0, 'or': 1.0, 'at': 1.0, 'some': 1.0, 'bent': 1.0, 'which': 1.0, 'flop': 1.0, 'about': 1.0, 'on': 1.0, 'so': 1.0, 'causes': 1.0, 't': 2.0, 's': 1.0, 'mechanism': 1.0, 'essentially': 1.0, 'looks': 1.0, 'it': 2.0, 'useless': 1.0, 'i': 1.0, 'things': 1.0, 'tried': 1.0, 'hands': 2.0, 'the': 5.0, 'tightening': 1.0, 'addition': 1.0, 'down': 1.0, 'didn': 1.0, 'were': 1.0}
Word element => {'buy': 1.0, 'good': 1.0, 'nursery': 1.0, 'a': 1.0, 'for': 1.0, 'ideal': 1.0, 'quickly': 1.0, 'this': 1.0, 'product': 1.0, 'is': 2.0, 'made': 1.0, 'and': 1.0, 'very': 1.0, 'it': 2.0, 's': 2.0, 'well': 1.0, 'also': 1.0, 'child': 1.0, 'cute': 1.0, 'shipped': 1.0}
Word element => {'keeper': 1.0, 'is': 1.0, 'a': 2.0, 'that': 1.0, 'box': 1.0, 'the': 1.0, 'love': 1.0, 'it': 3.0, 'always': 1.0, 'cute': 1.0, 'good': 1.0, 'handcrafted': 1.0, 'of': 1.0, 'sign': 1.0, 'very': 1.0, 'and': 1.0, 'loved': 1.0, 'original': 1.0, 'out': 1.0}
Word element => {'very': 1.0, 'box': 1.0, 'the': 1.0, 'out': 1.0, 'of': 1.0, 'worked': 1.0, 'in': 1.0, 'perfect': 1.0, 'arrived': 1.0, 'condition': 1.0, 'goes': 1.0, 'it': 1.0, 'woodland': 1.0, 'great': 1.0, 'our': 1.0, 'directly': 1.0, 'with': 1.0, 'themed': 1.0, 'happy': 1.0, 'nursery': 1.0}
Word element => {'gift': 1.0, 'birthday': 1.0, 'give': 1.0, 'or': 2.0, 'nursery': 1.0, 'own': 1.0, 'piece': 1.0, 'great': 1.0, 'problem': 1.0, 'be': 1.0, 'out': 1.0, 'wall': 1.0, 'if': 1.0, 'shower': 1.0, 'of': 3.0, 'photo': 1.0, 'but': 1.0, 'most': 1.0, 'pieces': 1.0, 'for': 2.0, 'love': 1.0, 'stamped': 1.0, 'shouldn': 1.0, 'is': 4.0, 'it': 1.0, 'felt': 1.0, 'in': 1.0, 'hoping': 1.0, 'that': 1.0, 'makes': 1.0, 'i': 3.0, 'baby': 1.0, 'quality': 1.0, 'was': 3.0, 'doesn': 1.0, 'this': 3.0, 'what': 2.0, 'sweeter': 1.0, 'delicate': 1.0, 'owl': 1.0, 'happy': 1.0, 'translate': 1.0, 'see': 1.0, 'little': 1.0, 'mix': 1.0, 't': 2.0, 'a': 4.0, 'design': 1.0, 'irises': 1.0, 'wood': 1.0, 'some': 1.0, 'are': 3.0, 'numbers': 1.0, 'like': 1.0, 'clock': 3.0, 'easily': 1.0, 'nose': 1.0, 'and': 3.0, 'your': 1.0, 'on': 2.0, 'as': 1.0, 'to': 2.0, 'all': 1.0, 'reach': 1.0, 'the': 10.0, 'hands': 2.0, 'so': 1.0, 'bit': 1.0, 'bendable': 1.0}
Word element => {'loose': 1.0, 'metal': 1.0, 'limited': 1.0, 'are': 1.0, 'dritz': 1.0, 'use': 2.0, 'easy': 1.0, 'to': 3.0, 'far': 1.0, 'times': 1.0, 'have': 1.0, 'fabric': 1.0, 'snaps': 1.0, 'none': 1.0, 'several': 1.0, 've': 1.0, 'tried': 1.0, 'i': 1.0, 'come': 1.0, 'with': 1.0, 'success': 1.0, 'very': 1.0, 'and': 1.0, 'the': 1.0, 'these': 1.0, 'apply': 1.0, 'super': 1.0, 'so': 1.0}
Word element => {'them': 1.0, 'love': 1.0, 'strong': 1.0, 'very': 1.0, 'use': 1.0, 'to': 1.0, 'easy': 1.0, 'old': 1.0, 'an': 1.0, 'much': 1.0, 'kinds': 1.0, 'multiple': 1.0, 'gentler': 2.0, 'metal': 1.0, 'are': 2.0, 'improvement': 1.0, 'the': 4.0, 'such': 1.0, 'these': 2.0, 'snaps': 1.0, 'with': 1.0, 'is': 1.0, 'over': 1.0, 'on': 2.0, 'plastic': 1.0, 'prongs': 1.0, 'so': 2.0, 'fabric': 1.0, 'and': 2.0, 'baby': 1.0}
Word element => {'contraption': 1.0, 'going': 1.0, 'one': 1.0, 'no': 1.0, 'knowing': 1.0, 'in': 1.0, 'how': 1.0, 'out': 2.0, 'half': 1.0, 'a': 3.0, 'breeze': 1.0, 'you': 2.0, 'best': 1.0, 'to': 3.0, 'till': 1.0, 'dozen': 1.0, 'took': 1.0, 'tries': 1.0, 'this': 1.0, 'hard': 1.0, 'it': 1.0, 'can': 1.0, 'figure': 2.0, 'is': 2.0, 'little': 1.0, 'totally': 1.0, 'part': 1.0, 'use': 2.0, 'then': 1.0, 'feel': 1.0, 'secure': 1.0}
Word element => {'of': 1.0, 'many': 1.0, 'doesn': 1.0, 'but': 1.0, 'why': 1.0, 'not': 1.0, 'anyway': 1.0, 'up': 1.0, 'longer': 1.0, 'about': 1.0, 'no': 1.0, 'mine': 1.0, 'entertained': 1.0, 'him': 1.0, 'want': 1.0, 'if': 1.0, 'bag': 1.0, 'diaper': 1.0, 'in': 2.0, 'throw': 1.0, 'sure': 1.0, 'easy': 1.0, 'given': 1.0, 'lights': 1.0, 'for': 1.0, 'love': 3.0, 'young': 1.0, 'it': 6.0, 'he': 2.0, 'these': 1.0, 'receiving': 1.0, 'something': 1.0, 'new': 1.0, 'after': 1.0, 'care': 1.0, 'separate': 1.0, 'small': 1.0, 'have': 1.0, 'i': 5.0, 'older': 1.0, 'now': 1.0, 'purchase': 1.0, 'my': 3.0, 'the': 5.0, 't': 1.0, 'go': 1.0, 'might': 1.0, 'a': 2.0, 'one': 1.0, 'smartnoggin': 1.0, 'future': 1.0, 'keep': 1.0, 'at': 1.0, 'to': 9.0, 'as': 3.0, 'little': 1.0, 'baby': 2.0, 'colors': 1.0, 'hold': 2.0, 'gift': 2.0, 'everyone': 1.0, 'stare': 1.0, 'seem': 1.0, 'still': 1.0, 'am': 1.0, 'times': 1.0, 'when': 1.0, 'they': 1.0, 'has': 1.0, 'are': 1.0, 'and': 4.0, 'gotten': 1.0, 'shake': 1.0, 'learn': 1.0, '3': 1.0, 'on': 2.0, 'babies': 1.0, 'loves': 2.0, 'that': 2.0, 'more': 1.0, 'plan': 1.0, 'around': 1.0, 'is': 1.0}
Word element => {'babies': 1.0, 'new': 1.0, 'for': 1.0, '3': 1.0, 'any': 1.0, 'toy': 1.0, 'newborn': 1.0, 'old': 1.0, 'this': 1.0, 'loves': 1.0, 'well': 1.0, 'my': 1.0, 'year': 1.0, 'as': 2.0, 'son': 1.0, 'brother': 1.0, 'keeps': 1.0, 'of': 1.0, 'his': 1.0, 'both': 1.0, 'their': 1.0, 'gift': 1.0, 'attention': 1.0, 'great': 1.0, 'idea': 1.0}
Word element => {'grab': 1.0, 'he': 1.0, 'till': 1.0, 'i': 1.0, 'movement': 1.0, 'off': 1.0, 'cant': 1.0, 'and': 1.0, 'himself': 1.0, 'reacted': 1.0, 'came': 1.0, 'can': 1.0, 'wait': 1.0, 'without': 1.0, 'it': 2.0, 'to': 1.0, 'right': 1.0, 'away': 1.0, 'our': 1.0, 'batteries': 1.0, 'turns': 1.0, 'son': 1.0, 'with': 1.0}
Word element => {'fun': 1.0, 'stimulating': 1.0, 'the': 1.0, 'up': 1.0, 'and': 2.0, 'end': 1.0, 'plain': 1.0, 'this': 1.0, 'rattle': 1.0, 'beyond': 1.0, 'toy': 1.0, 'is': 2.0, 'a': 1.0, 'for': 1.0, 'babies': 1.0, 'great': 1.0, 'it': 1.0, 'light': 1.0, 'goes': 1.0, 'just': 1.0}
Word element => {'baby': 1.0, 'staple': 1.0, 'give': 1.0, 'i': 1.0, 'is': 1.0, 'for': 1.0, 'our': 1.0, 'rattle': 1.0, 'playing': 1.0, 'as': 1.0, 'son': 1.0, 'must': 1.0, 'started': 2.0, 'a': 2.0, 'babies': 1.0, 'have': 2.0, 'loves': 1.0, 'shower': 1.0, 'with': 1.0, 'this': 2.0, 'it': 2.0, '9': 1.0, 'at': 1.0, '3': 1.0, 'months': 1.0, 'and': 1.0, 'gift': 1.0, 'still': 1.0, 'to': 1.0, 'mo': 1.0, 'so': 1.0}
Word element => {'penny': 1.0, 'months': 1.0, '5': 1.0, 'mouth': 1.0, '7': 1.0, 'has': 1.0, 'he': 3.0, 'it': 5.0, 'grip': 1.0, 'this': 3.0, 'christmas': 1.0, 'excited': 1.0, 'old': 1.0, 'absolutely': 1.0, 'worth': 1.0, 'when': 2.0, 'a': 2.0, 'present': 1.0, 'gave': 1.0, 'loves': 2.0, 'now': 1.0, 'buying': 1.0, 'was': 1.0, 'comes': 1.0, 'is': 1.0, 'gets': 1.0, 'son': 1.0, 'to': 3.0, 'as': 1.0, 'constantly': 1.0, 'hand': 1.0, 'and': 4.0, 'in': 2.0, 'shove': 1.0, 'his': 2.0, 'being': 1.0, 'able': 1.0, 'the': 1.0, 'colors': 1.0, 'my': 1.0, 'may': 1.0, 'be': 1.0, 'pricey': 1.0, 'i': 1.0, 'rattle': 1.0, 'change': 1.0, 'but': 1.0, 'every': 1.0}
Word element => {'would': 1.0, 'etc': 1.0, 'recommend': 1.0, 'show': 1.0, 'a': 2.0, 'as': 2.0, 'educational': 1.0, 'tracking': 1.0, 'for': 1.0, 'e': 1.0, 'use': 1.0, 'instructions': 1.0, 'in': 1.0, 'interested': 1.0, 'the': 4.0, 'my': 1.0, 'likes': 1.0, 'toy': 1.0, 'colors': 2.0, 'i': 2.0, 'old': 1.0, 'still': 1.0, 'to': 3.0, 'give': 1.0, 'little': 1.0, 'month': 1.0, 'two': 1.0, 'when': 1.0, 'too': 1.0, 'small': 1.0, 'watching': 1.0, 'shake': 1.0, 'rattle': 3.0, 'first': 1.0, 'this': 1.0, 'it': 1.0, 'he': 2.0, 'you': 2.0, 's': 1.0, 'how': 1.0, 'grasp': 1.0, 'but': 1.0, 'guidelines': 1.0, 'change': 1.0, 'is': 1.0}
Word element => {'move': 1.0, 'and': 1.0, 'done': 1.0, 'car': 1.0, 'together': 1.0, 'look': 1.0, 'fingers': 1.0, 'waiting': 1.0, 'unless': 1.0, 'you': 3.0, 'when': 2.0, 'somewhere': 1.0, 'in': 3.0, 'don': 3.0, 'to': 4.0, 'seat': 1.0, 'are': 1.0, 'rebound': 1.0, 'kiddo': 1.0, 'the': 4.0, 'go': 1.0, 't': 3.0, 'comfy': 1.0, 'kids': 1.0, 'drive': 1.0, 'do': 1.0, 'loves': 1.0, 'into': 1.0, 'it': 5.0, 'p': 1.0, 'can': 1.0, 'great': 1.0, 'install': 2.0, 'suck': 1.0, 'your': 2.0, 'put': 1.0, 'will': 2.0, 'putting': 1.0, 'bar': 1.0, 'drink': 1.0, 'honest': 1.0, 'have': 2.0, 'online': 1.0, 'assemble': 1.0, 'fit': 1.0, 'for': 2.0, 'tips': 1.0, 'take': 1.0, 'bandaids': 1.0, 'scraped': 1.0, 'house': 1.0, 're': 1.0}
Word element => {'most': 1.0, 'matters': 1.0, 'what': 1.0, 'safer': 1.0, 'isn': 1.0, 'also': 1.0, 'grow': 1.0, 'last': 1.0, 'be': 1.0, 'built': 1.0, 'this': 1.0, 'falling': 1.0, 'have': 1.0, 'your': 2.0, 'on': 1.0, 'zones': 1.0, 'it': 6.0, 'has': 2.0, 'case': 1.0, 'loves': 1.0, 'month': 1.0, 'totally': 1.0, 'engineered': 1.0, 'over': 1.0, 'child': 2.0, 'up': 2.0, 'about': 2.0, 'as': 1.0, 'to': 5.0, 'better': 1.0, 'but': 2.0, '2': 1.0, 'we': 4.0, 'a': 3.0, 'cots': 1.0, 'an': 1.0, 'other': 1.0, 'well': 2.0, 'i': 2.0, 'old': 1.0, 'much': 1.0, 'only': 2.0, 'accident': 1.0, 'easy': 1.0, 'talk': 1.0, 'riding': 1.0, 'my': 4.0, 'there': 2.0, 'owned': 1.0, 'of': 2.0, 'the': 5.0, 'heavier': 1.0, 've': 1.0, 'breeze': 1.0, 'seat': 3.0, 'in': 2.0, 'install': 1.0, '14': 1.0, 'apart': 1.0, 'than': 1.0, 'that': 1.0, 'because': 1.0, 'is': 3.0, 'so': 2.0, 'soft': 1.0, 'wish': 1.0, 'kids': 1.0, 'more': 1.0, 'protect': 1.0, 'd': 1.0, 'mean': 1.0, 'dumped': 1.0, 'after': 1.0, 'made': 2.0, 'beaded': 1.0, 'and': 6.0, 'were': 1.0, 'known': 1.0, 'for': 1.0, 'older': 1.0, 'her': 1.0, 'daughter': 1.0, 'crumple': 1.0, 'out': 2.0, 't': 1.0, 'replacement': 1.0, 'seats': 1.0, 'milk': 2.0, 'just': 1.0, 'blotted': 1.0, 'surface': 1.0, 'off': 1.0, 'yes': 1.0, 'unlike': 1.0, 'buy': 1.0, 'others': 1.0, 'you': 1.0, 'cute': 1.0, 'boys': 1.0, 'will': 2.0, 'one': 1.0, 'bought': 1.0, 'months': 1.0, 'infant': 1.0, 'clean': 1.0, 'car': 1.0, 'carrier': 1.0, 'with': 2.0, 'every': 1.0, '18': 1.0, '24': 1.0, 'they': 1.0, 'looked': 1.0, 'gross': 1.0}
Word element => {'does': 1.0, 'is': 1.0, 'longer': 1.0, 'after': 1.0, 'play': 1.0, 'shortly': 1.0, 'on': 1.0, 'turn': 1.0, 'wish': 1.0, 'go': 1.0, 'do': 1.0, 'and': 3.0, 'that': 1.0, 'spins': 1.0, 'expected': 1.0, 'mobile': 1.0, 'have': 1.0, 'all': 2.0, 'doesn': 1.0, 'back': 1.0, 'but': 2.0, 'at': 1.0, 'special': 1.0, 'baby': 1.0, 'nothing': 1.0, 'a': 3.0, 'i': 3.0, 'minute': 1.0, 'you': 1.0, 's': 2.0, 'it': 8.0, 'plays': 1.0, 'for': 1.0, 'job': 1.0, 'or': 1.0, 'then': 1.0, 'had': 1.0, 'to': 2.0, 'asleep': 1.0, 'music': 1.0, 'if': 1.0, 'suppose': 1.0, 'time': 1.0, 'isn': 1.0, '2': 1.0, 't': 2.0}
Word element => {'an': 1.0, 'at': 1.0, 'was': 1.0, 'our': 1.0, 'picked': 1.0, 'amazing': 1.0, 'their': 2.0, 'and': 2.0, 'theme': 2.0, 'daughter': 1.0, 'for': 2.0, 'price': 1.0, 'child': 1.0, 'perfectly': 1.0, 'it': 1.0, 'jungle': 1.0, 'worked': 1.0}
Word element => {'everything': 1.0, 'catch': 1.0, 'and': 1.0, 'clean': 1.0, 'to': 1.0, 'easy': 1.0, 'for': 1.0, 'well': 1.0, 'front': 1.0, 'in': 1.0, 'fit': 1.0, 'other': 1.0, 'boy': 1.0, 'they': 2.0, 'stuff': 1.0, 'is': 1.0, 'thing': 1.0, 'used': 1.0, 'low': 1.0, 'colors': 1.0, 'baby': 1.0, 'my': 2.0, 'little': 1.0, 'sat': 2.0, 'didn': 1.0, 'just': 1.0, 'than': 1.0, 'diapers': 1.0, 'only': 1.0, 'the': 1.0, 't': 1.0, 'great': 1.0, 'right': 1.0, 'differently': 1.0, 'too': 1.0, 'cloth': 1.0, 'i': 1.0}
Word element => {'install': 1.0, 'simple': 1.0, 'little': 1.0, 'were': 1.0, 'want': 1.0, 'a': 2.0, 'animals': 1.0, 'directions': 1.0, 'for': 2.0, 'pieces': 1.0, 'in': 1.0, 'nice': 1.0, 'playroom': 1.0, 'vague': 1.0, 'my': 2.0, 'the': 2.0, 'bought': 1.0, 'son': 1.0, 'decal': 1.0, 'this': 1.0, 'it': 2.0, 'can': 1.0, 'way': 1.0, 'you': 2.0, 's': 2.0, 'i': 1.0, 'but': 1.0, 'quality': 1.0, 'to': 1.0, 'husband': 1.0, 'comes': 1.0, 'any': 1.0, 'so': 1.0, 'arrange': 1.0}
Word element => {'they': 1.0, 'happy': 1.0, 'put': 1.0, 'that': 1.0, 'space': 1.0, 'any': 1.0, 'cute': 1.0, 'so': 1.0, 'am': 1.0, 'how': 2.0, 'animals': 1.0, 'totally': 1.0, 'are': 2.0, 'the': 4.0, 'mini': 1.0, 'safari': 1.0, 'this': 1.0, 'like': 1.0, 'and': 1.0, 'look': 1.0, 'wanted': 1.0, 'i': 3.0, 'material': 1.0, 'is': 1.0, 'really': 1.0, 'good': 1.0, 'of': 1.0, 'size': 1.0, 'animal': 1.0, 'just': 1.0, 'for': 1.0}
Word element => {'decorative': 1.0, 'besides': 1.0, 'purpose': 1.0, 'little': 1.0, 'has': 1.0, 'now': 1.0, 'branches': 1.0, 'just': 1.0, 'few': 1.0, 'posted': 1.0, 'branch': 1.0, 'the': 5.0, 'compliments': 1.0, 'service': 1.0, 'who': 1.0, 'nursery': 1.0, 'more': 1.0, 'is': 2.0, 'and': 5.0, 'wall': 2.0, 'bookshelves': 1.0, 'yellow': 1.0, 'i': 2.0, 'looks': 2.0, 'it': 7.0, 'this': 1.0, 'purchased': 1.0, 'everyone': 1.0, 'sees': 1.0, 'on': 1.0, 'for': 1.0, 'missing': 1.0, 'one': 1.0, 'tree': 2.0, 'to': 1.0, 'our': 1.0, 'quality': 1.0, 'placed': 1.0, 'easy': 1.0, '34': 2.0, 'of': 3.0, 'immediately': 1.0, 'great': 3.0, 'install': 1.0, 'customer': 1.0, 'decal': 2.0, 'a': 4.0, 'we': 3.0, 'high': 1.0, 'were': 1.0, 'requested': 1.0, 'along': 1.0, 'when': 1.0, 'they': 1.0, 'shipped': 1.0, 'modified': 1.0, 'somewhat': 1.0}
Word element => {'elephant': 1.0, 'than': 2.0, 'bigger': 1.0, 'baby': 2.0, 'didn': 1.0, 'i': 1.0, 'sizes': 2.0, 'thing': 1.0, 'together': 1.0, 'why': 1.0, 'very': 1.0, 'are': 1.0, 'great': 1.0, 't': 1.0, 'the': 8.0, 'happy': 1.0, 'nursery': 1.0, 'done': 1.0, 'were': 1.0, 'that': 1.0, 'our': 1.0, 'other': 1.0, 'we': 1.0, 'is': 1.0, 'many': 1.0, 'on': 1.0, 'zebra': 1.0, 'only': 1.0, 'with': 1.0, 'received': 1.0, 'quality': 1.0, 'put': 1.0, 've': 1.0, 'wall': 1.0, 'compliments': 1.0, 'decals': 2.0, 'them': 1.0, 'was': 1.0, 'look': 1.0, 'understand': 1.0, 'of': 2.0, 'professionally': 1.0, 'when': 1.0}
Word element => {'sheet': 1.0, 'on': 1.0, 'just': 1.0, 'they': 1.0, 'when': 1.0, 'like': 1.0, 'could': 1.0, 'or': 1.0, 'all': 1.0, 'thing': 1.0, 'would': 1.0, 'the': 1.0, 'room': 1.0, 'is': 1.0, 'perfect': 1.0, 'and': 1.0, 'send': 1.0, 'cute': 1.0, 'should': 1.0, 'so': 1.0, 'i': 1.0, 'applying': 1.0, 'picture': 1.0, 'for': 1.0, 'suggest': 1.0, 'look': 1.0, 'its': 1.0, 'to': 1.0, 'since': 1.0, 'a': 2.0, 'of': 1.0, 'his': 1.0, 'what': 1.0, 'come': 1.0, 'only': 1.0, 'it': 1.0}
Word element => {'great': 1.0, 'stuck': 1.0, 're': 1.0, 'everything': 1.0, 'redo': 1.0, 'part': 1.0, 'butterflies': 1.0, 'next': 2.0, 'looking': 1.0, 'definitely': 1.0, 'day': 1.0, 'but': 3.0, 'boy': 1.0, 'very': 1.0, 's': 3.0, 'could': 1.0, 'looks': 1.0, 'my': 2.0, 'colored': 3.0, 'teal': 3.0, 'got': 1.0, 'didn': 1.0, 'space': 1.0, 'have': 2.0, 'a': 2.0, 'small': 1.0, 'probably': 1.0, 'and': 7.0, 'too': 2.0, 'it': 2.0, 'choosing': 1.0, 'duty': 1.0, 'decals': 4.0, 'little': 2.0, 'nice': 1.0, 'they': 1.0, 'are': 1.0, 'nicely': 1.0, 'overlapping': 1.0, 'heavy': 1.0, 'room': 1.0, 'these': 2.0, 'remove': 1.0, 'without': 1.0, 'enough': 1.0, 'make': 1.0, 'on': 3.0, 'for': 2.0, 'love': 1.0, 't': 1.0, 'fit': 1.0, 'sure': 1.0, 'mini': 1.0, 'that': 4.0, 'problems': 1.0, 'really': 1.0, 'girly': 1.0, 'you': 1.0, 'when': 1.0, 'wall': 4.0, 'set': 3.0, 'between': 1.0, 'large': 1.0, 'just': 1.0, 'however': 1.0, 'fault': 1.0, 'omitted': 1.0, 'i': 8.0, 'putting': 1.0, 'flowers': 1.0, 'came': 1.0, 'with': 1.0, 'animal': 1.0, 'purchased': 1.0, 'type': 1.0, 'had': 1.0, 'was': 1.0, 'baby': 1.0, 'many': 1.0, 'applying': 1.0, 'now': 1.0, 'to': 5.0, 'look': 1.0, 'is': 1.0, 'attaching': 1.0, 'whole': 1.0, 'overlap': 1.0, 'branches': 1.0, 'feminine': 1.0, 'trunk': 2.0, 'mine': 1.0, 'each': 1.0, 'other': 1.0, 'perfectly': 1.0, 'there': 1.0, 'recommend': 1.0, 'were': 1.0, 'can': 1.0, 'so': 1.0, 'spaces': 1.0, 'the': 12.0, 'of': 1.0, 'tried': 1.0, 'see': 1.0, 'in': 1.0}
Word element => {'pop': 1.0, 'make': 1.0, 'blah': 1.0, 'a': 1.0, 'tree': 1.0, 'because': 1.0, 'set': 1.0, 'another': 1.0, 'it': 1.0, 'flowers': 2.0, 'however': 1.0, 'did': 1.0, 'apply': 1.0, 'i': 2.0, 's': 1.0, 'little': 1.0, 'also': 1.0, 'in': 1.0, 'my': 1.0, 'hippo': 1.0, 'cute': 1.0, 'really': 1.0, 'bit': 1.0, 'room': 1.0, 'girl': 1.0, 'the': 3.0, 'these': 1.0, 'bought': 1.0, 'lion': 1.0, 'and': 3.0, 'decal': 1.0, 'from': 1.0, 'very': 1.0, 'loves': 1.0, 'them': 1.0, 'add': 1.0, 'she': 1.0, 'easy': 1.0, 'colorful': 1.0, 'was': 1.0, 'look': 1.0, 'to': 1.0}
Word element => {'with': 1.0, 'overall': 1.0, 'help': 1.0, 'looks': 1.0, 'it': 2.0, 'higher': 1.0, 'leaves': 1.0, 'thankfully': 1.0, 'well': 1.0, 'happy': 1.0, 'quite': 1.0, 'wall': 2.0, 'doesn': 1.0, 'have': 1.0, 'the': 7.0, 'great': 2.0, 'seem': 1.0, 're': 1.0, 'off': 1.0, 'decals': 2.0, 'are': 2.0, 'didn': 1.0, 'these': 1.0, 'lower': 1.0, 'look': 1.0, 'in': 1.0, 'very': 2.0, 'stick': 2.0, 'and': 5.0, 'trouble': 1.0, 'baby': 1.0, 'backing': 1.0, 'quality': 1.0, 'just': 1.0, 'pictured': 1.0, 'any': 1.0, 'to': 4.0, 'as': 2.0, 'our': 1.0, 'were': 1.0, 'that': 2.0, 'reposition': 1.0, 'vinyl': 1.0, 'they': 1.0, 'easy': 1.0, 'on': 1.0, 'my': 1.0, 'qualify': 1.0, 'nursery': 1.0, 'only': 1.0, 'complaint': 1.0, 'is': 1.0, 'hold': 1.0, 'branches': 2.0, 'be': 1.0, 'made': 1.0, 'peeling': 1.0, 'of': 1.0, 't': 2.0, 'we': 2.0, 's': 1.0, 'a': 1.0, 'one': 1.0}
Word element => {'did': 1.0, 'move': 1.0, 'if': 1.0, 'about': 1.0, 'purchase': 1.0, 'my': 2.0, 'i': 2.0, 'up': 2.0, 'hour': 1.0, 'follow': 1.0, 'you': 1.0, 'to': 4.0, 'was': 2.0, 'easy': 2.0, 'very': 1.0, 'shipped': 1.0, 'extremely': 1.0, 'in': 2.0, 'tube': 1.0, 'wont': 1.0, 's': 1.0, 'decal': 1.0, 'a': 2.0, 'put': 2.0, 'on': 1.0, 'is': 2.0, 'own': 1.0, 'an': 1.0, 'guidelines': 1.0, 'this': 2.0, 'it': 3.0, 'print': 1.0, 'off': 1.0, 'the': 3.0, 'great': 1.0, 'picture': 1.0, 'for': 1.0, 'leaves': 1.0, 'regret': 1.0, 'be': 1.0, 'which': 1.0, 'need': 1.0, 'helpful': 1.0, 'are': 1.0, 'they': 1.0, 'and': 1.0, 'fast': 1.0, 'edition': 1.0, 'daughter': 1.0, 'room': 1.0}
Word element => {'scissor': 1.0, 'out': 1.0, 'cut': 1.0, 'to': 1.0, 'need': 1.0, 'may': 1.0, 'stuck': 1.0, 'get': 1.0, 'sometimes': 1.0, 'you': 2.0, 'is': 1.0, 'only': 1.0, 'moving': 1.0, 'although': 1.0, 'fabric': 4.0, 'itself': 1.0, 'the': 9.0, 'these': 1.0, 'with': 1.0, 'buying': 1.0, 'just': 1.0, 'me': 1.0, 'not': 4.0, 'would': 1.0, 'got': 1.0, 'recommend': 1.0, 'beautiful': 1.0, 'animals': 2.0, 'i': 2.0, 'clear': 1.0, 'if': 2.0, 'it': 2.0, 'higher': 1.0, 'high': 1.0, 'entirely': 1.0, 'bright': 1.0, 's': 1.0, 'a': 2.0, 'very': 2.0, 'them': 1.0, 'quality': 2.0, 'and': 4.0, 'vinyl': 2.0, 'version': 1.0, 'non': 1.0, 'issue': 1.0, 'tree': 2.0, 'for': 2.0, 'leaves': 2.0, 'are': 1.0, 'of': 1.0, 'm': 1.0, 'planning': 1.0, 'on': 2.0, 'sheet': 1.0, 'so': 2.0, 'worth': 1.0, 'buy': 1.0, 'extra': 1.0, 'money': 1.0}
Word element => {'apply': 1.0, 'easy': 1.0, 'happier': 1.0, 'we': 1.0, 'these': 1.0, 'to': 1.0, 'be': 1.0, 'purchased': 1.0, 'decals': 2.0, 'for': 1.0, 'wall': 1.0, 'couldn': 1.0, 'are': 1.0, 'the': 2.0, 'playroom': 1.0, 'very': 1.0, 'and': 2.0, 'colorful': 1.0, 't': 1.0}
Word element => {'perfect': 1.0, 'is': 1.0, 'fun': 1.0, 'and': 2.0, 'small': 1.0, 'my': 1.0, '3': 1.0, 'so': 1.0, 'for': 1.0, 'year': 1.0, 'old': 1.0, 'great': 1.0, 'it': 2.0, 's': 1.0, 'loves': 1.0, 'doll': 1.0, 'this': 1.0, 'hands': 1.0, 'cute': 1.0}
Word element => {'looks': 1.0, 'will': 1.0, 'just': 1.0, 'shes': 1.0, 'collect': 1.0, 'granddaughter': 1.0, 'at': 1.0, 'for': 1.0, 'dresser': 1.0, 'and': 2.0, 'dust': 1.0, 'my': 1.0, 'bought': 1.0, 'tho': 1.0, 'six': 1.0, 'i': 1.0, 'it': 3.0, 'wouldn': 1.0, 'sit': 1.0, 'her': 1.0, 't': 1.0, 'she': 1.0, 'recommend': 1.0, 'months': 1.0, 'on': 1.0}
Word element => {'fluff': 1.0, 'stuffed': 1.0, 'soft': 1.0, 'starting': 1.0, 'generations': 1.0, 'my': 2.0, 'own': 1.0, 'throughout': 1.0, 'loved': 1.0, 'pooh': 2.0, 'has': 1.0, 'family': 1.0, 'the': 2.0, 'great': 2.0, 'can': 1.0, 'and': 2.0, 'you': 1.0, 'niece': 1.0, 'off': 1.0, 'shower': 1.0, 'with': 3.0, 'gift': 1.0, 'never': 1.0, 'wrong': 1.0, 'go': 1.0, 'winnie': 1.0}
Word element => {'but': 1.0, 'works': 1.0, 'how': 1.0, 'sure': 1.0, 'not': 1.0, 'time': 1.0, 'boy': 1.0, 'little': 1.0, 'for': 1.0, 'is': 1.0, 'darker': 1.0, 'see': 1.0, 'well': 1.0, 'a': 1.0, 'upset': 1.0, 'to': 1.0, 'teething': 1.0, 'take': 2.0, 'care': 1.0, 'actually': 1.0, 'i': 1.0, 'old': 1.0, 'tried': 1.0, 'color': 1.0, 'my': 1.0, 'have': 1.0, 'shall': 1.0, 'nice': 1.0, 'hasn': 1.0, 'in': 1.0, 'the': 2.0, 't': 1.0, '2': 1.0, 'thankfully': 1.0, 'off': 2.0, 'and': 1.0, 'we': 1.0, 'during': 1.0, 'other': 1.0, 'neither': 1.0, 'when': 1.0, 'gets': 1.0, 'kids': 1.0, 'year': 1.0, 'day': 1.0, 'it': 3.0, 'he': 1.0}
Word element => {'purchase': 1.0, 'great': 1.0, 'tie': 1.0, 'the': 1.0, 'and': 1.0, 'onesie': 1.0, 'first': 1.0, 'with': 1.0, 'on': 1.0, 'picture': 1.0, 'snap': 1.0, 'your': 1.0, 'babies': 1.0, 'for': 1.0, 'year': 1.0, 'perfect': 1.0, 'progress': 1.0, 'just': 1.0, 'put': 1.0, 'a': 2.0}
Word element => {'this': 1.0, 'with': 1.0, 'happy': 1.0, 'many': 1.0, 'for': 1.0, 'well': 1.0, 'ties': 1.0, 'to': 1.0, 'the': 1.0, 'easy': 1.0, 'purchase': 1.0, 'use': 1.0, 'cute': 1.0, 'pictures': 1.0, 'photograph': 1.0, 'received': 1.0, 'so': 1.0, 'am': 1.0, 'baby': 1.0, 'we': 1.0, 'compliments': 1.0, 've': 1.0, 'on': 1.0, 'monthly': 1.0, 'them': 1.0, 'i': 1.0, 'very': 1.0}
Word element => {'s': 1.0, 'plastic': 1.0, 'placemats': 1.0, 'recommend': 1.0, 'lot': 1.0, 'a': 1.0, 'buying': 1.0, 'paper': 1.0, 'after': 1.0, 'very': 1.0, 'planet': 1.0, 'smiling': 1.0, 'break': 1.0, 'laminated': 1.0, 'and': 3.0, 'light': 1.0, 'really': 1.0, 'is': 2.0, 'placemat': 2.0, 'ply': 1.0, 'be': 1.0, 'material': 1.0, 'with': 1.0, 'it': 1.0, 'only': 1.0, 'this': 1.0, 'love': 1.0, 'one': 1.0, 'i': 2.0, 'immediately': 1.0, 'of': 3.0, 'the': 2.0, 'destroyed': 1.0, 'same': 1.0, 'that': 1.0, 'forever': 1.0, 'bold': 1.0, 'cannot': 1.0, 'lasts': 1.0, 'also': 1.0, 'colors': 1.0, 'drawings': 1.0}
Word element => {'lost': 1.0, 'they': 1.0, 'replacement': 1.0, 'i': 2.0, 'products': 2.0, 'buy': 1.0, 'oxo': 1.0, 'love': 2.0, 'straw': 1.0, 'and': 1.0, 'our': 1.0, 'that': 1.0, 'parts': 1.0, 'sell': 1.0, 'so': 1.0, 'don': 1.0, 're': 1.0, 'great': 1.0, 'the': 2.0, 't': 1.0, 'have': 1.0, 'item': 1.0, 'to': 1.0, 'an': 1.0}
Word element => {'economy': 1.0, 'our': 1.0, 'that': 1.0, 'here': 1.0, 'bit': 1.0, 'paying': 1.0, 'not': 1.0, 'in': 1.0, 'usa': 1.0, 'made': 2.0, 'mind': 1.0, 'are': 1.0, 'as': 1.0, 'to': 1.0, 'everyone': 1.0, 'really': 1.0, 'is': 1.0, 'side': 1.0, 'gorgeous': 1.0, 'a': 3.0, 'do': 1.0, 'and': 5.0, 'plate': 2.0, 'friendly': 1.0, 'bought': 1.0, 'bowl': 2.0, 'it': 2.0, 'this': 1.0, 'all': 1.0, 'have': 1.0, 'loved': 1.0, 'set': 1.0, 'products': 1.0, 'i': 2.0, 'gift': 1.0, 'birthday': 1.0, 'present': 1.0, 'more': 1.0, 'peaceful': 1.0, 'the': 4.0, 'earth': 1.0, 'manifesto': 1.0, 'support': 2.0, 'message': 1.0, 'on': 1.0, 'has': 1.0, 'nice': 1.0}
Word element => {'to': 1.0, 'years': 1.0, 'see': 1.0, 'fantastic': 1.0, 'delivers': 1.0, 'understands': 1.0, 'company': 1.0, 'what': 1.0, 'both': 1.0, 'minimal': 1.0, 'print': 1.0, 'beautiful': 1.0, 'fast': 1.0, 'who': 1.0, 'daughter': 1.0, 'which': 1.0, 'my': 1.0, 'are': 1.0, 'bought': 1.0, 'bathrobe': 2.0, 'using': 1.0, 'parents': 2.0, 'for': 2.0, 'love': 2.0, 'come': 1.0, 'children': 1.0, 'terry': 1.0, 'this': 3.0, 'it': 3.0, 'peaceful': 1.0, 'the': 3.0, 'great': 2.0, 'i': 2.0, 'dries': 1.0, '4': 1.0, 'and': 5.0, 'outside': 1.0, 'very': 1.0, 'big': 2.0, 'want': 1.0, 'is': 5.0, 'really': 3.0, 'materials': 1.0, 'quality': 1.0, 'inside': 1.0}
Word element => {'means': 1.0, 'open': 1.0, 'u': 1.0, 'recycle': 1.0, 'distorted': 1.0, 'be': 1.0, 'll': 1.0, 'out': 1.0, 'poking': 1.0, 'brushes': 1.0, 'that': 1.0, 'into': 1.0, 'good': 1.0, 'it': 7.0, 'this': 1.0, 'wouldn': 1.0, 'dumping': 1.0, 'of': 3.0, 'head': 1.0, 'i': 6.0, 'strands': 1.0, 'buy': 1.0, 'thought': 1.0, 'bag': 1.0, 'zip': 1.0, 'see': 1.0, 'protect': 1.0, 'is': 2.0, 'instead': 1.0, 'course': 1.0, 'travelling': 1.0, 'the': 5.0, 'replace': 1.0, 'could': 1.0, 'a': 2.0, 'go': 1.0, 't': 2.0, 'oxo': 1.0, 'fit': 2.0, 'bit': 1.0, 'so': 1.0, 'brush': 3.0, 'on': 1.0, 'own': 1.0, 'want': 1.0, 'if': 1.0, 'to': 1.0, 'and': 2.0, 'up': 1.0, 'cheaper': 1.0, 'standard': 1.0, 'cool': 1.0, 'casing': 2.0, 'but': 2.0, 'can': 2.0, 'will': 1.0, 'forcefully': 1.0, 'whereby': 1.0, 'in': 1.0, 'when': 2.0, 'you': 1.0}
Word element => {'any': 1.0, 'tabletop': 1.0, 'recommend': 1.0, 'safe': 1.0, 'made': 1.0, 'to': 1.0, 'was': 2.0, 'fact': 1.0, 'in': 1.0, 'perfect': 1.0, 'really': 1.0, 'is': 2.0, 'which': 1.0, 'of': 1.0, 'tested': 1.0, 'size': 1.0, 'design': 1.0, 'safety': 1.0, 'us': 1.0, 'too': 1.0, 'color': 1.0, 'my': 1.0, 'the': 7.0, 'son': 1.0, 'bowl': 3.0, 'zebras': 1.0, 'loves': 2.0, 'got': 1.0, 'am': 1.0, 'i': 6.0, 'planet': 1.0, 'smiling': 1.0, 'and': 2.0, 'like': 2.0, 'that': 2.0, 'thought': 1.0, 'grand': 1.0, 'would': 2.0, 'who': 1.0, 'parent': 1.0, 'he': 2.0, 'this': 3.0, 'it': 2.0, 'for': 2.0, 'one': 2.0, 'love': 1.0}
Word element => {'world': 1.0, 'child': 1.0, 'heathy': 2.0, 'by': 1.0, 'and': 1.0, 'been': 1.0, 'that': 1.0, 'love': 1.0, 'for': 1.0, 'size': 1.0, 'simple': 1.0, 'other': 1.0, 'children': 2.0, 'perfect': 1.0, 'this': 1.0, 'with': 2.0, 'zebra': 1.0, 'it': 1.0, 'plates': 2.0, 'the': 9.0, 'feel': 1.0, 'great': 1.0, 'design': 1.0, 'keeps': 1.0, 'are': 3.0, 'food': 1.0, 'rim': 1.0, 'knowing': 1.0, 'off': 1.0, 'good': 2.0, 'very': 3.0, 'table': 1.0, 'on': 1.0, 'is': 3.0, 'safe': 1.0, 'many': 1.0, 'really': 2.0, 's': 1.0, 'org': 1.0, 'designs': 1.0, 'so': 2.0, 'plate': 1.0, 'top': 1.0, 'stack': 1.0, 'closet': 1.0, 'through': 1.0, 'of': 1.0, 'each': 1.0, 'our': 1.0, 'my': 1.0, 'neat': 1.0, 'i': 2.0, 'have': 2.0, 'bought': 1.0, 'years': 1.0, 'endorsed': 1.0, 'in': 2.0, 'age': 1.0, 'well': 1.0, 'usa': 1.0, 'quality': 1.0, 'they': 2.0, 'made': 1.0}
Word element => {'thank': 1.0, 'product': 1.0, 'a': 1.0, 'inspired': 1.0, 'what': 1.0, 'whale': 1.0, 'drawing': 1.0, 'apart': 1.0, 'in': 1.0, 'of': 1.0, 'there': 1.0, 'great': 1.0, 'lightweight': 1.0, 'the': 5.0, 'really': 1.0, 'is': 4.0, 'on': 1.0, 'coming': 1.0, 'this': 2.0, 'best': 2.0, 'very': 1.0, 'market': 1.0, 'and': 1.0, 'quality': 1.0, 'think': 1.0, 'i': 1.0, 'one': 1.0, 'placemat': 1.0, 'all': 1.0, 'printed': 1.0, 'sheet': 1.0, 'so': 1.0, 'no': 1.0, 'you': 1.0, 'way': 1.0}
Word element => {'all': 1.0, 'classic': 1.0, 'a': 2.0, 'text': 1.0, 'are': 1.0, 'illustrations': 1.0, 'the': 2.0, 'most': 1.0, 'him': 1.0, 'to': 1.0, 'for': 2.0, 'coloring': 1.0, 'wonderfull': 1.0, 'been': 1.0, 'inspiring': 1.0, 'so': 2.0, 'amazing': 1.0, 'brings': 1.0, 'is': 1.0, 'has': 1.0, 'time': 2.0, 'must': 1.0, 'son': 1.0, 'everywhere': 1.0, 'story': 1.0, 'i': 1.0, 'night': 2.0, 'children': 1.0, 'it': 5.0, 'this': 1.0, 'into': 1.0, 'peace': 1.0, 'his': 1.0, 'our': 1.0, 'read': 2.0, 'weeks': 1.0, 'book': 2.0, 'house': 1.0, 'each': 1.0, 'and': 3.0, 'we': 1.0, 'color': 1.0, 'my': 1.0, 'takes': 1.0}
Word element => {'need': 1.0, 'which': 1.0, 'as': 1.0, 'very': 1.0, 'pattern': 1.0, 'small': 1.0, 'to': 1.0, 'am': 1.0, 'design': 1.0, 'blanket': 2.0, 'baby': 1.0, 'both': 1.0, 'elephant': 1.0, 'every': 1.0, 'cool': 1.0, 'that': 1.0, 'a': 3.0, 'is': 2.0, 'really': 2.0, 'my': 1.0, 'peaceful': 1.0, 'the': 3.0, 'and': 3.0, 'quality': 1.0, 'wash': 1.0, 'softer': 1.0, 'i': 4.0, 'love': 2.0, 'sewing': 1.0, 'parent': 1.0, 'it': 1.0, 'children': 1.0, 'with': 2.0, 'this': 2.0, 'cotton': 1.0, 'attached': 1.0, 'gets': 1.0}
Word element => {'what': 1.0, 'sewing': 1.0, 'planet': 1.0, 'smiling': 1.0, 'and': 1.0, 'minimal': 1.0, 'company': 1.0, 'in': 1.0, 'fell': 1.0, 'baby': 1.0, 'i': 3.0, 'softest': 1.0, 'with': 1.0, 'this': 1.0, 'love': 2.0, 'great': 2.0, 'the': 6.0, 'small': 1.0, 'very': 1.0, 'blanket': 1.0, 'like': 1.0, 'quality': 1.0, 'cute': 1.0, 'repeat': 1.0, 'of': 2.0, 'is': 1.0, 'really': 1.0, 'a': 1.0, 'elephants': 1.0, 'quilting': 1.0}
Word element => {'i': 1.0, 'either': 1.0, 'no': 1.0, 'so': 1.0, 'love': 1.0, 'for': 1.0, 'message': 1.0, 'write': 1.0, 'can': 1.0, 'paper': 1.0, 'card': 1.0, 'wrapping': 1.0, 'than': 1.0, 'magical': 1.0, 'more': 1.0, 'is': 1.0, 'nyc': 1.0, 'smiling': 1.0, 'some': 1.0, 'planet': 1.0, 'and': 5.0, 'on': 2.0, 'recommend': 1.0, 'store': 1.0, 'newborn': 1.0, 'in': 2.0, 'it': 2.0, 'parent': 2.0, 'with': 1.0, 'children': 2.0, 'gift': 3.0, 'my': 2.0, 'before': 1.0, 'the': 3.0, 'wrap': 1.0, 'any': 1.0, 'to': 4.0, 'as': 2.0, 'have': 1.0, 'that': 2.0, 'box': 4.0, 'been': 1.0, 'me': 1.0, 'decorated': 1.0, 'not': 1.0, 'cannot': 1.0, 'know': 1.0, 'set': 1.0, 'every': 1.0, 'would': 1.0, 'cousin': 1.0, 'new': 1.0, 'taught': 1.0, 'one': 3.0, 'giving': 2.0, 'be': 1.0, 'wasteful': 1.0, 'their': 2.0, 'earth': 1.0, 'discovered': 1.0, 'we': 2.0, 'a': 5.0, 's': 1.0, 'directly': 2.0, 'ressources': 1.0, 'waxed': 1.0, 'this': 3.0, 'drawing': 1.0}
Word element => {'s': 1.0, 'future': 1.0, 'for': 1.0, 'again': 1.0, 'purchase': 1.0, 'too': 1.0, 'does': 1.0, 'these': 1.0, 'bottles': 1.0, 'were': 1.0, 'gift': 2.0, 'recipient': 1.0, 'them': 1.0, 'a': 1.0, 'the': 2.0, 'loves': 1.0, 'and': 1.0, 'will': 1.0, 'baby': 1.0}
Word element => {'lost': 1.0, 'would': 1.0, 'parts': 1.0, 'small': 1.0, 'as': 1.0, 'pool': 1.0, 'bath': 1.0, 'for': 3.0, 'toddler': 1.0, 'item': 1.0, 'great': 1.0, 'the': 3.0, 't': 1.0, 'be': 1.0, 'bought': 1.0, 'especially': 1.0, 'easily': 1.0, 'like': 1.0, 'little': 1.0, 'is': 1.0, 'people': 1.0, 'it': 2.0, 'this': 1.0, 'wouldn': 1.0, 'i': 1.0, 'take': 1.0, 'was': 1.0, 'to': 1.0, 'a': 1.0, 'time': 1.0, 'public': 1.0}
Word element => {'cute': 1.0, 'valves': 1.0, 'for': 2.0, 'looking': 1.0, 'easy': 1.0, 'washable': 1.0, 'machine': 1.0, 'and': 2.0, 'cup': 1.0, 'no': 2.0, 'sippy': 1.0, 'feeling': 1.0, 'removable': 1.0, 'keeps': 1.0, 'cold': 1.0, 'parts': 1.0, 'our': 1.0, 'the': 1.0, 'new': 1.0, 'go': 1.0, 'water': 1.0, 'too': 2.0, 'is': 1.0, 'it': 1.0, 'this': 1.0, 'goto': 1.0, 'grippy': 1.0, 'silicone': 1.0, 'part': 1.0, 'so': 1.0, 'ice': 1.0, 'from': 1.0, 'wet': 1.0, 'or': 1.0}
Word element => {'more': 1.0, 'little': 1.0, 'something': 1.0, 'find': 1.0, 'say': 1.0, 'would': 1.0, 'not': 1.0, 'then': 1.0, 'drop': 1.0, 'going': 1.0, 'a': 3.0, 'if': 2.0, 'so': 1.0, 'faze': 1.0, 'life': 1.0, 'son': 1.0, 'child': 1.0, 'year': 1.0, 'his': 1.0, 'afternoon': 1.0, '3': 1.0, 'my': 2.0, 'got': 1.0, 'down': 2.0, 'this': 1.0, 'bottle': 1.0, 'with': 1.0, 'piece': 1.0, 'needed': 1.0, 'top': 1.0, 'get': 1.0, 'are': 1.0, 'sturdy': 1.0, 'they': 4.0, 'have': 2.0, 'for': 1.0, 'where': 1.0, 'slide': 1.0, 'clean': 1.0, 'old': 1.0, 'well': 1.0, 'i': 5.0, 'or': 1.0, 'flew': 1.0, 'all': 1.0, 'one': 3.0, 'side': 2.0, 'really': 2.0, 'loose': 1.0, 'super': 1.0, 'themself': 1.0, 'new': 1.0, 'no': 2.0, 'whole': 1.0, 'leak': 1.0, 'cup': 3.0, 'cups': 5.0, 'replace': 1.0, 'everywhere': 1.0, 'that': 5.0, 'into': 1.0, 'parts': 1.0, 'fantastic': 1.0, 'throw': 3.0, 'and': 5.0, 'just': 1.0, 'milk': 1.0, 'now': 1.0, 'place': 1.0, 'brush': 1.0, 'of': 2.0, 'the': 8.0, 'reach': 1.0, 'these': 2.0, 'stage': 2.0, 'love': 1.0, 'he': 2.0, 'answer': 1.0, 'in': 3.0, 'is': 2.0, 'trash': 1.0, 'out': 1.0, 'throwing': 1.0, 'you': 2.0, 'when': 1.0, 'found': 2.0, 'easy': 1.0, 'know': 1.0, 'their': 1.0, 'toys': 1.0, 'anything': 1.0, 'else': 1.0, 'isn': 1.0, 'don': 1.0, 'threw': 1.0, 'fit': 1.0, 't': 2.0, 'want': 1.0, 'had': 1.0, 'favorite': 1.0, 'up': 1.0, 'sippy': 1.0, 'has': 1.0, 'them': 1.0, 'yes': 1.0, 'until': 1.0, 'who': 1.0, 'angry': 1.0, 'literally': 1.0, 'went': 1.0, 'thought': 1.0, 'it': 2.0, 'split': 1.0, 'to': 4.0, 'straight': 1.0}
Word element => {'else': 1.0, 'look': 1.0, 'so': 1.0, 'matters': 1.0, 'sippy': 1.0, 'good': 1.0, 'inexpensive': 1.0, 're': 1.0, 'side': 1.0, 'upright': 1.0, 'set': 1.0, 'have': 1.0, 'if': 1.0, 'want': 1.0, 'don': 1.0, 'bought': 1.0, 'extra': 1.0, 'with': 1.0, 'it': 2.0, 'pocket': 1.0, 'they': 3.0, 'the': 4.0, 'are': 1.0, 'no': 2.0, 'cup': 1.0, 'lid': 1.0, 'my': 1.0, 'sturdy': 1.0, 'into': 1.0, 'that': 2.0, 'something': 2.0, 'nice': 1.0, 'won': 1.0, '4': 1.0, 'i': 5.0, 'like': 1.0, 'a': 2.0, 'we': 1.0, 'hole': 1.0, 't': 2.0, 's': 1.0, 'could': 1.0, 'but': 1.0, 'just': 2.0, 'diaper': 1.0, 'leak': 2.0, 'of': 1.0, 'out': 1.0, 'little': 1.0, 'for': 2.0, 'tough': 1.0, 'and': 1.0, 'intake': 1.0, 'unless': 1.0, 'am': 1.0, 'really': 2.0, 'bummed': 1.0, 'spill': 1.0, 'was': 1.0, 'in': 2.0, 'air': 1.0, 'hoping': 1.0, 'all': 1.0, 'to': 3.0, 'find': 1.0, 'pieces': 1.0, 'throw': 1.0, 'bag': 1.0}
Word element => {'were': 1.0, 'wish': 1.0, 'only': 1.0, 'threads': 1.0, 'missing': 1.0, 'without': 1.0, 'cant': 1.0, 'as': 1.0, 'like': 1.0, 'feel': 1.0, 'packaged': 1.0, 'function': 1.0, 'so': 1.0, 'am': 1.0, 'how': 1.0, 'on': 2.0, 'they': 3.0, 'and': 1.0, 'giving': 1.0, 'i': 3.0, 'quality': 1.0, 'gifts': 1.0, 'but': 1.0, 'speak': 1.0, 'really': 1.0, 'good': 1.0, 'these': 1.0, 'the': 1.0, 'lids': 1.0, 'individually': 1.0, 'screw': 1.0}
Word element => {'their': 1.0, 'in': 1.0, 'for': 3.0, 'it': 1.0, 'this': 1.0, 'able': 1.0, 'have': 1.0, 'teether': 1.0, 'chewer': 1.0, 'the': 2.0, 'is': 2.0, 'well': 1.0, 'a': 1.0, 'them': 2.0, 'you': 2.0, 'if': 1.0, 'so': 1.0, 'easy': 1.0, 'just': 1.0, 'to': 3.0, 'size': 1.0, 'right': 1.0, 'be': 1.0, 'mouths': 1.0, 'hold': 2.0, 'get': 1.0, 'and': 2.0, 'has': 1.0, 'dimensions': 1.0}
Word element => {'functional': 1.0, 'recommended': 1.0, 'cute': 1.0, 'knee': 1.0, 'year': 1.0, 'for': 1.0, 'pads': 1.0, 'they': 2.0, 'these': 1.0, 'our': 1.0, 'highly': 1.0, 'very': 2.0, 'only': 1.0, '1': 1.0, 'are': 2.0, 'work': 1.0, 'not': 1.0, 'old': 1.0}
Word element => {'be': 1.0, 'price': 1.0, 'diaper': 1.0, 'a': 1.0, 'using': 1.0, 'am': 1.0, 'this': 1.0, 'bag': 2.0, 'is': 2.0, 'the': 3.0, 'beat': 1.0, 'it': 2.0, 'love': 1.0, 'great': 1.0, 'cant': 1.0, 'as': 1.0, 'and': 2.0, 'compartments': 1.0, 'comfortable': 1.0, 'perfect': 1.0, 'straps': 1.0, 'i': 1.0}
Word element => {'6': 1.0, 'light': 1.0, 'another': 1.0, 'so': 1.0, 'different': 1.0, 'something': 1.0, 'size': 1.0, 'was': 1.0, 'find': 1.0, 'than': 2.0, 'expected': 1.0, 'also': 1.0, 'full': 1.0, 'not': 1.0, 'be': 1.0, 'trying': 1.0, 'use': 2.0, 'horrible': 1.0, 'long': 1.0, 'stuff': 1.0, '3': 1.0, 'on': 1.0, 'saw': 1.0, 'bigger': 1.0, 'lot': 1.0, 'access': 1.0, 'ripped': 1.0, 'read': 1.0, 'kid': 1.0, 'stitching': 1.0, 'don': 1.0, 'things': 1.0, 'they': 1.0, 'reviews': 1.0, 'care': 1.0, 'are': 2.0, 'liked': 2.0, 'for': 2.0, 'it': 3.0, 'only': 1.0, 'of': 3.0, 'mon': 1.0, 'really': 1.0, 'side': 1.0, 'myself': 1.0, 'the': 13.0, 'a': 1.0, 't': 1.0, 'is': 3.0, 'more': 1.0, 'nice': 2.0, 'great': 1.0, 'money': 1.0, 'but': 1.0, 'to': 3.0, 'as': 2.0, 'all': 2.0, 'want': 1.0, 'if': 2.0, 'apart': 1.0, 'detail': 1.0, 'i': 10.0, 'pockets': 1.0, 'you': 2.0, 'when': 2.0, 'small': 1.0, 'have': 3.0, 'coming': 1.0, 'need': 1.0, 'bag': 6.0, 'take': 1.0, 'using': 1.0, 'like': 1.0, 'and': 8.0, 'now': 1.0, 'away': 1.0, 'them': 1.0, 'right': 1.0, 'one': 1.0, 'entire': 1.0, 'color': 1.0, 'ordered': 1.0, 'define': 1.0, 'length': 1.0, 'in': 1.0, 'extra': 1.0, 'person': 1.0, 'that': 1.0, 'organizing': 1.0, 'longer': 1.0, 'inside': 2.0, 'down': 1.0}
Word element => {'of': 1.0, 'kinds': 1.0, 'fit': 1.0, 'to': 1.0, 'diferent': 1.0, 'should': 1.0, 'they': 1.0, 'sizes': 1.0, 'it': 3.0, 's': 1.0, 'looks': 1.0, 'babies': 1.0, 'nice': 1.0, 'make': 1.0, 'my': 1.0, 'baby': 1.0, 'all': 1.0, 'but': 1.0, 'girl': 1.0, 'too': 1.0, 'tight': 1.0, 'in': 1.0, 'for': 1.0}
Word element => {'baby': 1.0, 'knees': 1.0, 'claims': 1.0, 's': 1.0, 'it': 1.0, 'to': 2.0, 'material': 1.0, 'product': 1.0, 'be': 1.0, 'however': 1.0, 'protecting': 1.0, 'what': 1.0, 'does': 1.0, 'liking': 1.0, 'the': 2.0, 'my': 1.0, 'while': 1.0, 'they': 1.0, 'seems': 1.0, 'crawl': 1.0, 'a': 1.0, 'thin': 1.0, 'bit': 1.0, 'for': 1.0}
Word element => {'ones': 1.0, '3': 1.0, 'for': 2.0, 'which': 1.0, 'bought': 1.0, 'new': 1.0, 'a': 2.0, 'and': 2.0, 'as': 1.0, 'very': 2.0, 'loves': 1.0, 'my': 2.0, 'i': 1.0, 'gift': 1.0, 'absolutely': 1.0, 'sister': 2.0, 'this': 1.0, 'it': 1.0, 'niece': 1.0, 'stylish': 1.0, 'little': 1.0, 'roomy': 1.0, 'is': 1.0, 'important': 1.0, 'of': 1.0, 'mom': 1.0}
Word element => {'want': 1.0, 'them': 1.0, 'doesn': 1.0, 'recommend': 1.0, 'affordable': 1.0, 'pay': 1.0, 'still': 1.0, 'there': 1.0, 'out': 1.0, 'snap': 1.0, 'good': 1.0, 'these': 1.0, 'just': 1.0, 'few': 1.0, 'cost': 1.0, 'fair': 1.0, 'other': 3.0, 'it': 1.0, 'with': 2.0, 'anyone': 1.0, 'bum': 1.0, 'don': 1.0, 'ask': 1.0, 'how': 1.0, '6': 1.0, 'and': 2.0, '5': 1.0, 'who': 1.0, 'at': 3.0, 'while': 1.0, 'months': 2.0, 'one': 2.0, 'refunded': 1.0, '4': 1.0, 'i': 4.0, 'lost': 1.0, 'believe': 1.0, 'the': 7.0, 'can': 1.0, 'but': 1.0, 'money': 2.0, '2': 1.0, '3': 1.0, 'think': 1.0, 'sympathize': 1.0, 'brands': 1.0, 'having': 1.0, 'reviewer': 1.0, 'company': 1.0, 'pregnancies': 1.0, 'any': 1.0, 'as': 2.0, 'to': 5.0, 'had': 1.0, 'we': 1.0, 's': 1.0, 't': 3.0, 'a': 2.0, 'times': 1.0, 'lose': 1.0, 'they': 2.0, 'previous': 1.0, 'diapers': 4.0, 'are': 3.0, 'phenomenal': 1.0, 'have': 1.0, 'bummis': 2.0, 'experience': 1.0, 'genius': 1.0, 'get': 1.0, 'easy': 1.0, 'product': 1.0, 'fit': 1.0, 'best': 1.0, 'made': 1.0}
Word element => {'kid': 1.0, 'next': 1.0, 'didn': 1.0, 'thinking': 1.0, 'two': 1.0, 'a': 1.0, 'bought': 1.0, 'i': 1.0, 'better': 1.0, 'pacifiers': 1.0, 'other': 1.0, 'son': 1.0, 'on': 1.0, 't': 2.0, 'pack': 1.0, 'have': 1.0, 'really': 1.0, 'loves': 1.0, 'hope': 1.0, 'good': 1.0, 'with': 1.0, 'this': 1.0, 'he': 3.0, 'it': 3.0, 'would': 1.0, 'him': 1.0, 'pacifier': 1.0, 'wasn': 1.0, 'pleased': 1.0, 'just': 1.0, 'chew': 1.0, 'but': 2.0, 'was': 1.0, 'to': 1.0, 'my': 2.0, 'awhile': 1.0, 'love': 1.0, 'liked': 1.0, 'for': 1.0}
Word element => {'be': 1.0, 'disappointing': 1.0, 'little': 1.0, 'outlet': 2.0, 'my': 1.0, 'the': 1.0, 'cute': 1.0, 'light': 1.0, 'night': 1.0, 'but': 2.0, 'fit': 1.0, 'it': 2.0, 'upside': 1.0, 'a': 2.0, 'down': 1.0, 'could': 1.0, 'for': 1.0, 'in': 1.0}
Word element => {'piece': 1.0, 'theme': 1.0, 'disney': 1.0, 'price': 1.0, 'scheme': 1.0, 'room': 1.0, 'is': 2.0, '2': 1.0, 'bought': 1.0, 'chicago': 1.0, 'in': 1.0, 'daughter': 1.0, 'for': 3.0, 'grand': 1.0, 'she': 2.0, 'loves': 1.0, 'it': 3.0, 'her': 1.0, 'works': 1.0, 'but': 1.0, 'minnie': 1.0, 'my': 1.0, 'nite': 1.0, 'a': 2.0, 'lite': 1.0, 'and': 1.0, 'fair': 1.0}
Word element => {'recommend': 1.0, 'expected': 1.0, 'here': 1.0, 'got': 1.0, 'before': 1.0, 'reasonable': 1.0, 'price': 1.0, 'out': 1.0, 'is': 2.0, 'and': 1.0, 'lite': 1.0, 'burnt': 1.0, 'section': 1.0, 'mouse': 1.0, 'great': 1.0, 'the': 2.0, 'minnie': 1.0, 'my': 1.0, 'was': 2.0, 'browsing': 1.0, 'would': 1.0, 'item': 1.0, 'it': 1.0, 'this': 3.0, 'which': 1.0, 'saw': 1.0, 'while': 1.0, 'our': 1.0, 'thought': 1.0, 'one': 1.0, 'for': 2.0, 'year': 1.0, 'night': 1.0, 'i': 4.0, 'old': 1.0, 'be': 1.0, 'gift': 1.0, 'cute': 1.0, 'a': 1.0, 'since': 1.0}
Word element => {'how': 1.0, 'wonder': 1.0, 'taste': 1.0, 'nylobird': 1.0, 'england': 1.0, 'be': 2.0, 'baby': 1.0, 'shipped': 1.0, 'been': 1.0, 'there': 1.0, 'of': 1.0, 'no': 1.0, 'some': 1.0, 'they': 1.0, 'common': 1.0, 'has': 1.0, 'more': 1.0, 'the': 2.0, 'form': 1.0, 'must': 1.0, 'from': 2.0, 'clue': 1.0, 'down': 1.0, 'nylon': 1.0, 'is': 1.0, 'it': 2.0, 'bird': 1.0, 'child': 1.0, 'that': 1.0, 'and': 1.0, 'shaved': 1.0, 'squished': 1.0, 'sort': 1.0, 'into': 1.0, 'like': 1.0, 'blanket': 1.0, 'to': 1.0, 'had': 2.0}
Word element => {'mommy': 1.0, 'happy': 3.0, 'doesn': 1.0, 'back': 1.0, 'will': 1.0, 'only': 1.0, 'first': 1.0, 'with': 1.0, 'of': 1.0, 'different': 1.0, '8': 1.0, 'have': 3.0, 'these': 2.0, 'the': 4.0, 'but': 1.0, '2': 1.0, 'is': 1.0, 'more': 1.0, 'leak': 1.0, 'replace': 1.0, 'i': 8.0, 'this': 1.0, 'found': 1.0, 'are': 1.0, 'that': 1.0, 'kinds': 1.0, 'm': 1.0, 'best': 1.0, 'very': 1.0, 'sippy': 1.0, 'at': 1.0, 'purchased': 1.0, 'after': 1.0, 'one': 1.0, 'bought': 2.0, 'went': 1.0, 'and': 1.0, 'am': 2.0, 'pleased': 1.0, 'sure': 1.0, 'eventually': 1.0, 'least': 1.0, 'cups': 4.0, 'to': 1.0, 'now': 1.0, 'valves': 1.0, 'right': 1.0, 't': 1.0, 'a': 1.0}
Word element => {'fit': 1.0, 'and': 1.0, 'now': 1.0, 'big': 1.0, 'he': 1.0, 'knows': 1.0, 'are': 1.0, 'the': 1.0, 'work': 1.0, 'so': 1.0, 's': 1.0, 'well': 2.0, 'we': 1.0, 'comfortable': 1.0, 'boy': 1.0, 'set': 1.0, 'ordered': 1.0, 'a': 1.0, 'another': 1.0, 'they': 1.0, 'our': 1.0, 'pants': 1.0, 'godson': 1.0}
Word element => {'underwear': 1.0, 'pair': 1.0, 'a': 1.0, 'like': 1.0, 'really': 1.0, 'trim': 1.0, 'regret': 1.0, 'bought': 1.0, 'will': 1.0, 'that': 1.0, 'one': 1.0, 'love': 2.0, 'only': 1.0, 'it': 1.0, 'i': 4.0, 'decision': 1.0, 'do': 1.0, 'and': 1.0, 'probably': 1.0, 'have': 1.0, 'designs': 1.0, 'fit': 1.0, 'make': 1.0, 'the': 1.0, 'more': 1.0, 'another': 1.0, 'order': 1.0, 'wish': 1.0, 'look': 1.0, 'to': 1.0, 'had': 1.0, 'they': 2.0, 'of': 1.0, 'available': 1.0}
Word element => {'the': 1.0, 'included': 1.0, 'should': 1.0, 'be': 1.0, 'product': 1.0, 'looks': 1.0, 'specifications': 1.0, 'great': 1.0, 'see': 1.0, 'but': 1.0, 'i': 1.0, 'in': 1.0, 'for': 1.0, 'posted': 1.0, 'don': 1.0, 'any': 1.0, 'this': 2.0, 't': 1.0, 'sizing': 1.0, 'information': 1.0}
Word element => {'pair': 1.0, 'than': 1.0, 'more': 1.0, 'want': 1.0, 'washing': 1.0, 'after': 1.0, 'while': 1.0, 'little': 1.0, 'worth': 1.0, 'seem': 1.0, 'so': 2.0, 'sheets': 1.0, 'shirt': 1.0, 'and': 2.0, 'back': 1.0, 'perfect': 1.0, 'in': 1.0, 'but': 2.0, 'training': 1.0, 'an': 1.0, 'night': 1.0, 'etc': 1.0, 'i': 1.0, 'old': 1.0, 'thankfully': 1.0, 'stays': 1.0, 'far': 1.0, 'through': 1.0, 'do': 1.0, 'much': 1.0, 'got': 1.0, 'overnight': 1.0, 'take': 1.0, 'pretty': 1.0, 'the': 2.0, 'pee': 1.0, 'dry': 2.0, 'to': 2.0, 'as': 1.0, 'year': 1.0, 'undies': 2.0, '3': 1.0, 'for': 1.0, 'are': 2.0, 'may': 1.0, 'my': 1.0, 'get': 1.0, 'accident': 1.0, 'one': 1.0, 'wicked': 1.0, 'up': 1.0, 'just': 1.0, '34': 2.0, 'onto': 1.0, 'a': 2.0, 'we': 1.0, 'had': 2.0, 'these': 3.0, 'some': 1.0, 'with': 1.0, 'they': 2.0, 'vinyl': 1.0, 'it': 1.0, 'she': 2.0, 'covers': 1.0, 'case': 1.0, 'that': 1.0, 'were': 1.0, 'disaster': 1.0, 'you': 1.0, 'when': 1.0, 'pricey': 1.0, 'right': 1.0, 'her': 1.0}
Word element => {'little': 1.0, 'that': 1.0, 'benefit': 1.0, 'added': 1.0, 'loves': 1.0, 'off': 1.0, 'to': 2.0, 'easy': 1.0, 'on': 1.0, 'months': 1.0, 'right': 1.0, 'boy': 1.0, 'they': 1.0, 'has': 1.0, 'waist': 1.0, 'hard': 1.0, 'he': 1.0, 'of': 1.0, 'son': 1.0, 'is': 2.0, 'get': 1.0, 'and': 3.0, 'are': 2.0, 'great': 1.0, 'these': 1.0, 'legs': 1.0, '15': 1.0, 'a': 1.0, 'small': 1.0, 'so': 1.0, 'crawls': 1.0, 'them': 1.0, 'out': 1.0, 'long': 1.0, 'his': 1.0, 'pull': 1.0, 'my': 2.0, 'pants': 1.0}
Word element => {'they': 1.0, 'find': 1.0, 'couldn': 1.0, 'adjusted': 1.0, 'be': 1.0, 'bought': 2.0, 'i': 3.0, 'when': 1.0, 'hurt': 1.0, 'it': 1.0, 'obviously': 1.0, 'so': 2.0, 'great': 2.0, 'these': 3.0, 'the': 6.0, 'adjustable': 1.0, 'metal': 1.0, 'old': 1.0, 'are': 2.0, 'my': 2.0, 'is': 3.0, 'clips': 1.0, 'with': 1.0, 'piece': 2.0, 'asset': 1.0, 'son': 1.0, 'seem': 1.0, 'on': 2.0, 'your': 1.0, 'suspenders': 3.0, 'grandson': 1.0, 't': 3.0, 'a': 3.0, 'notice': 1.0, 'have': 1.0, 'that': 4.0, 'allow': 1.0, 'draw': 1.0, 'crawling': 1.0, 'good': 1.0, 'keeping': 1.0, 'and': 3.0, 'all': 2.0, 'as': 1.0, 'to': 3.0, 'year': 1.0, 'sturdy': 1.0, 'his': 2.0, 'slightly': 1.0, 'wardrobe': 1.0, 'only': 1.0, 'come': 1.0, 'he': 1.0, 'allowed': 1.0, 'back': 2.0, 'was': 1.0, 'doesn': 2.0, 'in': 2.0, 'for': 1.0, 'where': 1.0, 'straps': 3.0, 'pants': 1.0, 'result': 1.0, 'together': 1.0, 'not': 1.0, 'rub': 1.0, 'neck': 1.0}
Word element => {'donate': 1.0, 'just': 1.0, 'probably': 1.0, 'will': 1.0, 'happy': 1.0, 'not': 1.0, 'rip': 1.0, 'due': 1.0, 'sell': 1.0, 'together': 1.0, 'back': 1.0, 'sew': 1.0, 'trying': 1.0, 'finally': 1.0, 'right': 1.0, 'cut': 1.0, 'day': 1.0, 'works': 1.0, 'much': 1.0, 'so': 1.0, 'these': 1.0, 'update': 1.0, 'out': 1.0, 'ends': 2.0, 'now': 1.0, 'attached': 1.0, 'hook': 1.0, 'then': 1.0, 'ripped': 1.0, 'very': 1.0, 'little': 1.0, 'while': 1.0, 'hard': 1.0, 'slide': 1.0, 'straps': 3.0, 'into': 1.0, 'that': 3.0, 'has': 1.0, 'easier': 1.0, 'were': 1.0, 'cleaning': 2.0, 'can': 1.0, 'but': 2.0, 'remove': 1.0, 'it': 9.0, 've': 1.0, 'in': 2.0, 'on': 2.0, '3': 1.0, '11': 1.0, 'washing': 1.0, 'how': 1.0, 'this': 2.0, 'wish': 1.0, 't': 1.0, 'a': 1.0, 's': 3.0, 'about': 2.0, 'and': 7.0, '1': 1.0, 'adjustable': 1.0, 'the': 14.0, 'get': 2.0, 'folds': 1.0, 'struggled': 1.0, 'grooves': 2.0, 'highchair': 2.0, 'for': 4.0, 'inner': 1.0, 'nearly': 1.0, 'up': 1.0, 'of': 5.0, 'owned': 1.0, 'my': 1.0, 'favorite': 1.0, 'chair': 2.0, 'i': 9.0, 'feature': 1.0, 'is': 3.0, 'one': 1.0, 'months': 1.0, 'tray': 2.0, 'like': 3.0, 'which': 2.0, 'pops': 1.0, 'off': 3.0, 'keep': 1.0, 'backrest': 1.0, 'main': 1.0, 'had': 1.0, 'what': 1.0, 'to': 7.0, 'least': 1.0, 'still': 1.0, 'difficult': 1.0, 'clean': 1.0, 'fabric': 4.0}
Word element => {'the': 2.0, 'go': 1.0, 'this': 1.0, 'with': 1.0, 'woul': 1.0, 'clean': 1.0, 'i': 1.0, 'matches': 1.0, 'cute': 1.0, 'set': 2.0, 'perfectly': 1.0, 'of': 1.0, 'rest': 1.0, 'recommend': 1.0, 'really': 2.0, 'good': 1.0, 'keep': 1.0, 'quality': 1.0, 'and': 1.0, 'easy': 1.0, 'to': 2.0}
Word element => {'time': 1.0, 'room': 1.0, 'her': 1.0, 'play': 1.0, '34': 2.0, 'during': 1.0, 'ballet': 1.0, 'and': 1.0, 'wants': 1.0, '3': 1.0, 'girl': 1.0, 'to': 1.0, 'old': 1.0, 'perfect': 1.0, 'present': 1.0, 'a': 1.0, 'herself': 1.0, 'year': 1.0, 'for': 1.0, 'birthday': 1.0, 'little': 1.0, 'dress': 1.0, 'who': 1.0}
Word element => {'words': 1.0, 'girl': 1.0, 'item': 1.0, 'her': 3.0, 'taking': 1.0, 'are': 1.0, 'hunt': 1.0, 'these': 1.0, 'the': 1.0, 't': 1.0, 'egg': 1.0, 'was': 1.0, 'granddaughter': 1.0, 'had': 1.0, 'easter': 1.0, 'wear': 1.0, 'so': 2.0, 'kept': 1.0, 'an': 1.0, 'they': 3.0, 'any': 1.0, 'to': 2.0, 'our': 1.0, 'huggalugs': 1.0, 'just': 1.0, 'darling': 1.0, 'early': 1.0, 'i': 2.0, 'bought': 1.0, 'family': 1.0, 'my': 1.0, 'them': 1.0, 'looked': 1.0, 'with': 1.0, 'wouldn': 1.0, 'cute': 2.0, 'on': 1.0, 'for': 4.0, 'lamb': 1.0, 'outfit': 1.0, 'she': 1.0, 'too': 1.0, 'and': 1.0, 'little': 2.0, 're': 1.0, 'legs': 1.0, 'weather': 1.0, 'warm': 1.0, 'in': 1.0, 'spring': 1.0, 'this': 2.0, 'hesitate': 1.0, 'recommending': 1.0}
Word element => {'her': 1.0, 'get': 1.0, 'able': 1.0, 'gets': 1.0, 'there': 1.0, 'just': 1.0, 'is': 1.0, 'ones': 1.0, 'tougher': 1.0, 'nipple': 1.0, 'care': 1.0, 'would': 1.0, 'little': 2.0, 'hopefully': 1.0, 'my': 1.0, 'wish': 1.0, 'use': 4.0, 'feel': 1.0, 'one': 1.0, 'entire': 1.0, 'well': 1.0, 'bad': 1.0, 'have': 1.0, 'the': 8.0, 'might': 1.0, 'a': 2.0, 't': 3.0, 'go': 1.0, 'doesn': 2.0, 'awesome': 1.0, 'of': 1.0, 'really': 1.0, 'to': 4.0, 'be': 2.0, 'compared': 1.0, 'later': 1.0, 'bottles': 1.0, 'star': 1.0, 'for': 1.0, 'love': 1.0, 'sitting': 1.0, 'most': 1.0, 'four': 1.0, 'mixes': 1.0, 'can': 1.0, 'older': 1.0, 'now': 1.0, 'mixed': 1.0, 'normally': 1.0, 'she': 3.0, 'it': 4.0, 'much': 1.0, 'its': 2.0, 'only': 1.0, 'collecting': 1.0, 'i': 6.0, 'used': 1.0, 'like': 2.0, 'so': 1.0, 'bottle': 3.0, 'again': 1.0, 'when': 2.0, 'm': 1.0, 'that': 1.0, 'gave': 1.0, 'convenience': 1.0, 'out': 1.0, 'too': 1.0, 'milk': 2.0, 'and': 2.0, 'about': 1.0, 'dust': 1.0, 'don': 1.0, 'carrying': 1.0, 'than': 1.0, 'because': 2.0, 'bag': 1.0}
Word element => {'either': 1.0, 'works': 1.0, 'looks': 1.0, 'this': 1.0, 'for': 2.0, 'neutral': 1.0, 'gender': 1.0, 'room': 1.0, 'baby': 1.0, 'perfect': 1.0, 'having': 1.0, 'bedding': 1.0, 'out': 1.0, 'of': 1.0, 'i': 1.0, 'or': 2.0, 'great': 1.0, 'the': 1.0, 't': 1.0, 'crib': 1.0, 'aren': 1.0, 'keep': 1.0, 'if': 1.0, 'and': 2.0, 'trying': 1.0, 'wife': 1.0, 'we': 2.0, 'my': 1.0, 're': 2.0, 'ahead': 1.0, 'a': 2.0, 'time': 1.0, 'boy': 2.0, 'girl': 2.0, 'finding': 1.0, 'so': 1.0, 'now': 1.0, 'to': 1.0}
Word element => {'little': 1.0, 'all': 1.0, 'i': 1.0, 'giraffe': 1.0, 'size': 1.0, 'has': 1.0, 'enjoy': 1.0, 'would': 1.0, 'ideal': 1.0, 'are': 1.0, 'his': 1.0, 'looks': 1.0, 'set': 2.0, 'accessories': 1.0, 'and': 1.0, 'five': 1.0, 'boo': 1.0, 'life': 1.0, 'lambs': 1.0, 'great': 1.0, 'the': 5.0, 'my': 1.0, 'ivy': 1.0, 'was': 1.0, 'wall': 1.0, 'jungle': 1.0, 'think': 1.0, 'good': 1.0, 'a': 2.0, 'on': 2.0, 'condition': 1.0, 'piece': 1.0, 'peek': 1.0, 'purchased': 1.0, 'room': 1.0, 'arrive': 1.0, 'bed': 1.0, 'for': 1.0, 'in': 1.0, 'boys': 1.0, 'soon': 1.0, 'grandson': 1.0, 'who': 1.0, 'will': 1.0, 'he': 1.0, 'it': 1.0, 'arrived': 1.0}
Word element => {'mattress': 1.0, 'on': 1.0, 'fit': 1.0, 'so': 1.0, 'crib': 1.0, 'pattern': 1.0, 'the': 3.0, 'washed': 1.0, 'color': 1.0, 'perfectly': 1.0, 'were': 1.0, 'shown': 1.0, 'beautifully': 1.0, 'just': 1.0, 'up': 1.0, 'and': 2.0, 'as': 1.0, 'cute': 1.0, 'sheet': 1.0}
Word element => {'perfect': 1.0, 'worked': 1.0, 'girl': 1.0, 'boy': 1.0, 'a': 1.0, 'work': 1.0, 'nursery': 1.0, 'baby': 1.0, 'our': 1.0, 're': 1.0, 'crib': 2.0, 'out': 1.0, 'not': 1.0, 'for': 1.0, 'love': 1.0, 'set': 2.0, 'we': 3.0, 's': 1.0, 'born': 1.0, 'gender': 1.0, 'or': 1.0, 'until': 1.0, 'is': 1.0, 'this': 2.0, 'he': 1.0, 'finding': 1.0, 'so': 1.0, 'she': 1.0, 'needed': 1.0, 'to': 1.0, 'make': 1.0, 'the': 1.0}
Word element => {'longer': 1.0, 'mobile': 1.0, 'a': 2.0, 'shop': 1.0, 'to': 1.0, 'going': 1.0, 'are': 1.0, 'minutes': 1.0, 'some': 1.0, 'anymore': 1.0, 'also': 1.0, 'for': 3.0, 'of': 2.0, 'lullaby': 1.0, 'song': 3.0, 'with': 1.0, 'only': 1.0, 'this': 1.0, 'we': 2.0, 'plays': 1.0, 'used': 1.0, '4': 1.0, '1': 1.0, 'and': 1.0, 'notes': 1.0, 'about': 2.0, 'don': 1.0, 'weeks': 1.0, 'work': 1.0, 'the': 3.0, 't': 1.0, '2': 1.0}
Word element => {'quality': 1.0, 'and': 1.0, 'one': 1.0, 'a': 1.0, 'for': 1.0, 'size': 1.0, 't': 1.0, 'great': 1.0, 'can': 1.0, 'wait': 1.0, 'perfect': 1.0, 'use': 1.0, 'to': 1.0, 'on': 1.0, 'the': 1.0, 'are': 1.0, 'my': 1.0, 'little': 1.0, 'baby': 1.0, 'new': 1.0, 'these': 1.0, 'they': 1.0}
Word element => {'month': 1.0, 'every': 1.0, 'share': 1.0, 'we': 1.0, 'too': 1.0, 'so': 1.0, 'wear': 1.0, 'to': 1.0, 'wanted': 1.0, 'a': 1.0, 'them': 1.0, 'are': 1.0, 'the': 2.0, 'quickly': 1.0, 'and': 3.0, 'up': 1.0, 'exactly': 1.0, 'tie': 1.0, 'i': 1.0, 'what': 1.0, 'you': 1.0, 'expected': 1.0, 'good': 1.0, 'needed': 1.0, 'size': 1.0, 'can': 1.0, 'peel': 1.0, 'shipped': 1.0, 'restick': 1.0, 'ties': 1.0, 'if': 1.0, 'big': 1.0, 'brother': 1.0}
Word element => {'available': 1.0, 'are': 1.0, 'carrying': 1.0, 'different': 1.0, 'well': 1.0, 'as': 2.0, 'is': 1.0, 'size': 1.0, 'this': 1.0, 'finding': 1.0, 'at': 1.0, 'like': 1.0, 'long': 1.0, 'before': 2.0, 'bag': 1.0, 'design': 1.0, 'other': 1.0, 'love': 1.0, 'one': 1.0, 'for': 1.0, 'daughter': 1.0, 't': 1.0, 'diaper': 1.0, 'the': 4.0, 'color': 1.0, 'my': 1.0, 'and': 1.0, 'searching': 1.0, 'purchased': 1.0, 'perfect': 2.0, 'option': 1.0, 'diapers': 1.0, 'been': 1.0, 'didn': 1.0, 'i': 4.0, '4': 1.0, 'had': 1.0, 'was': 1.0, 'all': 2.0, 'born': 1.0, 'absolutely': 1.0, 'bags': 1.0, 'that': 2.0}
Word element => {'stars': 1.0, '4': 1.0, 'for': 1.0, 'exterior': 1.0, 'a': 2.0, 'make': 1.0, 'think': 1.0, 'not': 1.0, 'clean': 1.0, 'in': 1.0, 'be': 1.0, 'material': 2.0, 'really': 3.0, 'makes': 1.0, 'designed': 1.0, 'suppose': 1.0, 'have': 1.0, 'plasticky': 1.0, 'saw': 1.0, 'confirmed': 1.0, 'way': 1.0, 'sent': 1.0, 'delivered': 1.0, 'thin': 1.0, 'another': 1.0, 'me': 1.0, 'my': 1.0, 's': 3.0, 'sense': 1.0, 'order': 2.0, 'to': 4.0, 'outside': 1.0, 'was': 2.0, 'doesn': 1.0, 'i': 8.0, 'but': 2.0, 'texture': 1.0, '2': 1.0, 'so': 2.0, 'can': 1.0, 'inside': 2.0, 'grey': 1.0, 'enough': 1.0, 'diaper': 1.0, 'of': 5.0, 'the': 14.0, 'placed': 1.0, 'just': 1.0, 'by': 1.0, 'light': 1.0, 'bag': 4.0, 'received': 1.0, 'quickly': 1.0, 'and': 3.0, 'love': 1.0, 'cheap': 1.0, 'out': 2.0, 'absolutely': 1.0, 'never': 1.0, 'interior': 1.0, 'adorable': 1.0, 'is': 4.0, 'at': 1.0, 'does': 1.0, 'feel': 2.0, '1': 2.0, 'nice': 1.0, 'hole': 1.0, 'complimentary': 1.0, 'didn': 1.0, 'even': 1.0, 'durable': 1.0, 'were': 1.0, 'when': 1.0, 'easily': 1.0, 'about': 1.0, 'suspicious': 1.0, 'inches': 1.0, 'stitching': 1.0, 'torn': 1.0, 'from': 1.0, 'fix': 1.0, 'side': 1.0, 'leaving': 1.0, 'satin': 1.0, 'something': 1.0, 'would': 1.0, 't': 2.0, 'fairly': 1.0, 'amazon': 1.0, 'been': 1.0, 'if': 1.0, 'come': 1.0, 'it': 8.0, 'already': 1.0, 'easy': 1.0, 'damaged': 1.0, 'first': 2.0, 'bothered': 1.0, 'cute': 1.0}
Word element => {'cost': 1.0, 'low': 1.0, 'overall': 1.0, 'travel': 1.0, 'for': 1.0, 'their': 1.0, 'open': 1.0, 'very': 2.0, 'ok': 1.0, 'stay': 1.0, 'the': 2.0, 'doesn': 1.0, 'catch': 1.0, 'nice': 1.0, 'color': 1.0, 'happy': 1.0, 'worth': 1.0, 'cheerful': 1.0, 'is': 1.0, 'with': 2.0, 'durable': 1.0, 're': 1.0, 'parent': 1.0, 'it': 1.0, 'are': 3.0, 'they': 4.0, 'but': 1.0, 'food': 1.0, 'eat': 1.0, 'so': 1.0, 'easy': 1.0, 'as': 1.0, 'to': 3.0, 'clean': 1.0, 'and': 1.0, 'well': 1.0, 'i': 2.0, 'think': 2.0, 'kids': 1.0, 'just': 1.0, 'messy': 1.0, 't': 1.0, 'we': 1.0, 'a': 1.0, 's': 1.0, 'important': 1.0, 'be': 1.0, 'that': 1.0, 'these': 1.0, 'roll': 1.0, 'up': 1.0, 'when': 1.0, 'easily': 1.0, 'do': 1.0, 'pack': 1.0}
Word element => {'even': 1.0, 'can': 1.0, 'she': 2.0, 'feeding': 1.0, 'always': 1.0, 'open': 1.0, 'use': 1.0, 'every': 1.0, 'reach': 1.0, 'and': 3.0, 'them': 1.0, 'with': 1.0, 'bibs': 1.0, 'pocket': 2.0, 'for': 1.0, 'love': 1.0, 'month': 1.0, 'into': 1.0, 'stays': 1.0, 'my': 1.0, 'ten': 1.0, 'these': 1.0, 'the': 4.0, 'i': 1.0, 'old': 1.0, 'dropped': 1.0, 'grab': 1.0, 'to': 1.0, 'catch': 1.0, 'food': 2.0}
Word element => {'get': 1.0, 'that': 1.0, 'stains': 1.0, 'didn': 1.0, 'sorts': 1.0, 'got': 1.0, 'brand': 1.0, 'this': 1.0, 'used': 1.0, 'i': 1.0, 'when': 2.0, 'by': 1.0, 'where': 1.0, 'anyone': 1.0, 'all': 1.0, 'to': 2.0, 'same': 1.0, 'need': 1.0, 'which': 1.0, 'highly': 1.0, 'would': 1.0, 'safe': 1.0, 'they': 2.0, 'slipping': 1.0, 'bib': 2.0, 'lot': 1.0, 'recommend': 1.0, 'babys': 1.0, 'food': 5.0, 'update': 1.0, 'of': 3.0, 'plus': 1.0, 'compared': 1.0, 'from': 2.0, 'my': 1.0, 'save': 1.0, 'particular': 1.0, 'getting': 1.0, 'and': 1.0, 're': 1.0, 'side': 2.0, 'design': 1.0, 'a': 2.0, 't': 2.0, 'performs': 1.0, 'much': 1.0, 'better': 1.0, 'wasted': 1.0, 'it': 2.0, 'caught': 1.0, 'more': 1.0, 'shouldn': 1.0, 'holds': 1.0, 'in': 3.0, 'bjorn': 2.0, 'dishwasher': 1.0, 'turn': 1.0, 'the': 2.0, 'prevents': 1.0, 'trap': 1.0, 'stained': 1.0, 'baby': 2.0, 'clothes': 2.0}
Word element => {'worth': 1.0, 'much': 1.0, 'europeans': 1.0, 'and': 3.0, 'growing': 1.0, 'enough': 1.0, 'your': 1.0, 'support': 1.0, 'to': 2.0, 'should': 1.0, 'further': 1.0, 't': 1.0, 'provide': 1.0, 'even': 1.0, 'cannot': 1.0, 'hold': 1.0, 'give': 1.0, 'not': 3.0, 'search': 1.0, 'but': 1.0, 'doesn': 1.0, 'full': 1.0, 'this': 4.0, 'a': 5.0, 'stuffing': 1.0, 'due': 1.0, 'beads': 1.0, 'need': 1.0, 'done': 1.0, 'just': 1.0, 'by': 1.0, 'legs': 1.0, 'pregnancy': 5.0, 'an': 1.0, 'was': 3.0, 'filled': 1.0, 'second': 2.0, 'another': 1.0, 'purchase': 1.0, 'during': 1.0, 'pillow': 6.0, 'right': 1.0, 'pregnancies': 1.0, 'is': 4.0, 'look': 1.0, 'wonderful': 1.0, 'amount': 1.0, 'after': 2.0, 'i': 4.0, 'used': 1.0, 'become': 2.0, 'like': 2.0, 'maternity': 2.0, 'so': 4.0, 'great': 1.0, 'too': 1.0, 'one': 2.0, 'thus': 2.0, 'uncomfortable': 1.0, 'lying': 1.0, 'my': 5.0, 'entire': 1.0, 'for': 5.0, 'sad': 1.0, 'with': 3.0, 'it': 5.0, 'first': 4.0, 'heavy': 1.0, 'using': 1.0, 'reason': 1.0, 'belly': 1.0, 'microbeads': 1.0, 'no': 2.0, 'end': 1.0, 'leg': 1.0, 'quite': 1.0, 'down': 1.0, 'night': 3.0, 'that': 2.0, 'because': 1.0, 'regular': 1.0, 'in': 1.0, 'stuffed': 1.0, 'had': 1.0, 'better': 1.0, 'usual': 1.0, 'misshapen': 2.0, 'wonder': 1.0, 'from': 1.0, 'am': 1.0, 'weight': 1.0, 'necessitating': 1.0, 'the': 9.0, 'of': 2.0, 'person': 1.0, 'will': 1.0, 'penny': 1.0, 'up': 1.0, 'multiple': 1.0, 'be': 1.0, 'every': 1.0, 'if': 1.0, 'shape': 1.0, 'before': 1.0}
Word element => {'girl': 1.0, 'bright': 1.0, 'happy': 1.0, 'textures': 1.0, 'it': 1.0, 'she': 1.0, 'old': 1.0, 'sounds': 1.0, 'loved': 1.0, 'this': 1.0, 'was': 1.0, 'a': 1.0, 'that': 1.0, 'is': 1.0, 'colors': 1.0, 'gift': 1.0, 'for': 1.0, 'the': 1.0, 'my': 1.0, 'niece': 1.0, '5': 1.0, 'months': 1.0}
Word element => {'away': 1.0, 'regret': 1.0, 'want': 1.0, 'name': 1.0, 'brown': 1.0, 'expected': 1.0, 'dr': 1.0, 'can': 1.0, 'past': 1.0, 'giraffe': 1.0, 'the': 5.0, 'i': 5.0, 'products': 1.0, 'did': 1.0, 'better': 1.0, 'like': 1.0, 'this': 3.0, 'it': 4.0, 'from': 2.0, 'hard': 1.0, 'buying': 1.0, 'with': 1.0, 'at': 2.0, 'trusted': 1.0, 'no': 1.0, 'give': 1.0, 'not': 2.0, 'just': 1.0, 't': 3.0, 's': 2.0, 'plastic': 1.0, 'don': 1.0, 'even': 1.0, 'didn': 1.0, 'see': 1.0, 'need': 1.0, 'all': 1.0, 'as': 1.0, 'least': 1.0, 'to': 1.0, 'pay': 1.0, 'for': 1.0, 'bottles': 1.0, 'yet': 1.0, 'other': 2.0, 'teething': 1.0, 'more': 1.0, 'is': 3.0, 'overpriced': 1.0, 'experiences': 1.0, 'wise': 1.0, 'baby': 1.0, 'quality': 1.0, 'softer': 1.0}
Word element => {'mouth': 1.0, 'her': 1.0, 'er': 1.0, 'so': 1.0, 'touch': 1.0, 'it': 2.0, 'this': 1.0, 'a': 2.0, 'time': 1.0, 'to': 1.0, 'had': 1.0, 'didn': 1.0, 'use': 1.0, 'gripping': 1.0, 'baby': 1.0, 'my': 1.0, 't': 1.0, 'the': 1.0, 'lot': 1.0, 'somewhat': 1.0, 'of': 1.0, 'in': 1.0, 'also': 1.0, 'get': 2.0, 'shape': 1.0, 'for': 1.0, 'amde': 1.0, 'difficult': 1.0}
Word element => {'again': 1.0, 'buy': 1.0, 'would': 1.0, 'i': 1.0, 'in': 1.0, 'anywhere': 1.0, 'my': 1.0, 'loves': 1.0, 'month': 1.0, 'it': 2.0, 'and': 1.0, 'very': 1.0, 'mouth': 1.0, 'fits': 1.0, 'easy': 1.0, 'old': 1.0, 'to': 1.0, 'his': 1.0, '6': 1.0, 'handle': 1.0}
Word element => {'on': 1.0, 'anyone': 1.0, 'can': 1.0, 'great': 1.0, 'by': 1.0, 'baby': 2.0, 'chew': 1.0, 'easy': 1.0, 'head': 1.0, 'to': 2.0, 'and': 1.0, 'washes': 1.0, 'for': 1.0, 'teether': 1.0, 'easily': 1.0, 'legs': 1.0, 'hold': 2.0, 'would': 1.0, 'recommend': 1.0}
Word element => {'kids': 1.0, 'them': 1.0, 'him': 1.0, 'is': 1.0, 'necklace': 1.0, 'highly': 1.0, 'broke': 1.0, 'they': 1.0, 'asd': 1.0, 'year': 1.0, 'recommend': 1.0, 'bigger': 1.0, 'smaller': 1.0, 'my': 1.0, 'these': 1.0, 'the': 2.0, 'bought': 1.0, '7': 1.0, 'pair': 1.0, 'a': 1.0, 'for': 3.0, 'love': 1.0, 'we': 2.0, 'old': 1.0, 'beads': 1.0, 'on': 2.0, 'clasp': 1.0, 'until': 1.0, 'this': 1.0, 'with': 2.0, 'he': 1.0, 'needs': 1.0, 'perfect': 1.0, 'chewed': 1.0, 'oral': 1.0, 'and': 2.0, 'oblong': 1.0}
Word element => {'wears': 1.0, 'she': 1.0, 'when': 1.0, 'compliments': 1.0, 'of': 1.0, 'tons': 1.0, 'gets': 1.0, 'daughter': 1.0, 'this': 1.0, 'is': 1.0, 'a': 1.0, 'it': 1.0, 'great': 1.0, 'stylish': 1.0, 'my': 1.0, 'and': 1.0, 'very': 1.0, 'product': 1.0, 'useful': 1.0, 'looks': 1.0}
Word element => {'looking': 1.0, 'desks': 1.0, 'books': 1.0, 'pens': 1.0, 'chewing': 1.0, 'pretty': 1.0, 'constantly': 1.0, 'thing': 1.0, 'anything': 1.0, 'durable': 1.0, 'this': 1.0, 'with': 1.0, 't': 1.0, 'great': 1.0, 'old': 1.0, 'was': 1.0, 'to': 2.0, 'very': 1.0, 'chews': 1.0, 'year': 1.0, '5': 1.0, 'licks': 1.0, 'and': 3.0, 'pencils': 1.0, 'my': 1.0, 'wasn': 1.0, 'a': 1.0, 'send': 1.0, 'even': 1.0, 'her': 1.0, 'school': 1.0, 'everything': 1.0, 'so': 1.0, 'she': 1.0}
Word element => {'to': 1.0, 'needs': 1.0, 'special': 1.0, 'my': 1.0, 'it': 2.0, 'i': 1.0, 'with': 1.0, 'is': 1.0, 'a': 1.0, 'bit': 1.0, 'nice': 1.0, 'use': 1.0, 'but': 1.0, 'daughter': 1.0, 'for': 1.0, 'wish': 1.0, 'tad': 1.0, 'was': 1.0, 'longer': 1.0}
Word element => {'child': 1.0, 'from': 1.0, 'farther': 1.0, 'closer': 1.0, 'it': 1.0, 'sit': 1.0, 'way': 1.0, 'that': 2.0, 'so': 2.0, 'his': 3.0, 'in': 2.0, 'not': 1.0, 'just': 1.0, 'adjust': 1.0, 'he': 2.0, 'wish': 1.0, 'this': 2.0, 'is': 3.0, 'tray': 2.0, 'i': 2.0, 'about': 1.0, 'whenever': 1.0, 'use': 2.0, 'infant': 1.0, 'out': 2.0, 'snack': 1.0, 'still': 1.0, 'pack': 1.0, 'have': 1.0, 'are': 2.0, 'and': 2.0, 'guy': 1.0, 'constantly': 1.0, 'switching': 1.0, 'toys': 1.0, 'the': 5.0, 'great': 1.0, 'different': 1.0, 'there': 1.0, 'adapters': 1.0, 'can': 1.0, 'anytime': 1.0, 'but': 1.0, 'was': 1.0, 'doesn': 1.0, 'quality': 1.0, 'seat': 2.0, 'our': 1.0, 'to': 2.0, 'snacks': 1.0, 'little': 1.0, 'very': 1.0, 'with': 1.0, 'convenient': 1.0, 'keep': 1.0, 'since': 1.0, 'bumbleride': 1.0, 'we': 3.0, 't': 1.0, 'a': 2.0}
Word element => {'thank': 1.0, 'it': 1.0, 'like': 1.0, 'average': 1.0, 'picture': 1.0, 'you': 1.0, 'stuff': 1.0, 'good': 2.0, 'no': 1.0, 'to': 1.0, 'complain': 1.0, 'we': 1.0, 'expectations': 1.0, 'the': 1.0, 'are': 1.0, 'meets': 1.0, 'our': 1.0, 'colors': 1.0, 'close': 1.0}
Word element => {'size': 1.0, 'price': 1.0, 'satisfied': 1.0, 'but': 1.0, 'for': 2.0, 'great': 1.0, 'i': 1.0, 'the': 2.0, 'hoped': 1.0, 'not': 1.0, 'was': 1.0, 'very': 1.0, 'and': 2.0, 'zipper': 1.0, 'as': 2.0, 'overall': 1.0, 'heavy': 1.0, 'backpack': 1.0, 'duty': 1.0}
Word element => {'recommend': 1.0, 'wouldn': 1.0, '3months': 1.0, 'son': 1.0, 'my': 1.0, 'when': 1.0, 'has': 1.0, 'isn': 1.0, 'course': 1.0, 'is': 2.0, 'of': 1.0, 'two': 1.0, 'i': 1.0, 'took': 1.0, 'newborn': 2.0, 'in': 1.0, 'weeks': 1.0, 'hat': 1.0, 'item': 2.0, 'maybe': 1.0, 'can': 1.0, 'that': 1.0, 'came': 1.0, 'take': 1.0, 'arrive': 1.0, 'it': 2.0, 'month': 1.0, 'shipped': 1.0, 'ordered': 1.0, 'from': 1.0, 'big': 1.0, 'time': 1.0, 'so': 4.0, 'however': 1.0, 'china': 1.0, '5': 1.0, 'photos': 1.0, 'about': 1.0, 'passed': 1.0, 'way': 1.0, 'for': 2.0, 'head': 1.0, 'to': 2.0, 'all': 1.0, 'we': 1.0, 'a': 2.0, 't': 2.0, 'pictures': 1.0, 'this': 3.0, 'lost': 1.0, 'too': 1.0, 'and': 1.0, 'use': 1.0, 'or': 2.0}
Word element => {'like': 1.0, 'use': 1.0, 'just': 1.0, 'wait': 1.0, 'can': 1.0, 'i': 1.0, 'to': 1.0, 'and': 2.0, 'cute': 1.0, 's': 1.0, 'well': 1.0, 'visible': 1.0, 'made': 1.0, 't': 1.0, 'the': 1.0, 'has': 1.0, 'super': 1.0, 'no': 1.0, 'advertised': 1.0, 'it': 2.0, 'with': 1.0, 'adorable': 1.0, 'problems': 1.0, 'crotchet': 1.0, 'looks': 1.0}
Word element => {'again': 1.0, 'fast': 1.0, 'so': 1.0, 'use': 1.0, 'on': 1.0, 'fell': 1.0, 'edges': 1.0, 'and': 1.0, 'washing': 1.0, 'of': 2.0, 'apart': 1.0, 'newborn': 1.0, 'to': 3.0, 'can': 1.0, 'wait': 1.0, 'a': 2.0, 'one': 1.0, 'love': 1.0, 'for': 1.0, 'this': 1.0, 'it': 5.0, 'he': 1.0, 'but': 2.0, 'mistake': 1.0, 'still': 2.0, 'cute': 2.0, 'would': 1.0, 'pictures': 1.0, 'buy': 1.0, 'i': 1.0, 'going': 1.0, 'when': 1.0, 'from': 1.0, 'shipping': 1.0, 'big': 1.0, 'very': 1.0, 'the': 2.0, 't': 1.0, 'take': 1.0, 's': 2.0, 'little': 1.0, 'store': 1.0, 'bigger': 1.0, 'made': 1.0}
Word element => {'perfect': 1.0, 'are': 1.0, 'colors': 1.0, 'got': 1.0, 'good': 1.0, 'seems': 1.0, 'work': 1.0, 'most': 1.0, 'when': 1.0, 'lower': 1.0, 'green': 1.0, 'and': 3.0, 'a': 2.0, 'front': 1.0, 'old': 2.0, 'i': 4.0, 'snug': 1.0, 'newborn': 1.0, 'goes': 2.0, 'other': 1.0, 'cute': 2.0, '10': 2.0, 'with': 2.0, 'my': 2.0, 'end': 1.0, 'spines': 1.0, 'agree': 1.0, 'so': 2.0, 'it': 3.0, 'month': 2.0, 'would': 2.0, 'rolling': 1.0, 'be': 1.0, 'him': 1.0, 'on': 5.0, 'put': 1.0, 'hat': 2.0, 'back': 3.0, 'reviews': 1.0, 'fun': 1.0, 'crochet': 1.0, 'that': 1.0, 'orange': 1.0, 'the': 5.0, 'is': 1.0, 'head': 1.0, 'running': 1.0, 'deep': 1.0, 'up': 2.0, 'before': 1.0, 'stops': 1.0, 'edge': 1.0, 'little': 1.0, 'to': 1.0, 'fit': 1.0, 'better': 1.0, 'dino': 1.0, 'length': 1.0, 'down': 2.0, 'his': 4.0, 'large': 1.0, 'just': 1.0}
Word element => {'product': 1.0, 'this': 1.0, 'recommend': 1.0, 'would': 1.0, 'was': 1.0, 'amazing': 1.0, 'bumper': 1.0, 'i': 2.0, 'it': 2.0, 'received': 1.0, 'the': 2.0, 'and': 1.0, 'package': 1.0, 'all': 1.0, 'came': 1.0, 'pieces': 1.0, 'in': 1.0, 'definitely': 1.0, 'including': 1.0}
Word element => {'will': 1.0, 'recommend': 1.0, 'good': 1.0, 'quality': 1.0, 'and': 1.0, 'nice': 1.0, '128525': 4.0, 'feel': 1.0, 'i': 4.0, '128522': 1.0, '128514': 1.0, '128077': 3.0, 'can': 1.0, 'explains': 1.0, 'what': 1.0, 'lovet': 1.0, 'so': 1.0}
Word element => {'and': 1.0, 'like': 1.0, 'okay': 1.0, 'well': 1.0, 'baby': 1.0, 'its': 2.0, 'come': 1.0, 'nice': 1.0, 'oh': 1.0, 'does': 1.0, 'i': 2.0, 'it': 2.0, 'wish': 1.0, 'would': 1.0, 'so': 1.0, 'curtains': 1.0, 'with': 1.0, 'my': 1.0, 'the': 1.0}
Word element => {'waste': 1.0, 'money': 1.0, 'don': 1.0, 'in': 1.0, 'newborn': 1.0, 'my': 1.0, 'never': 1.0, 'like': 1.0, 'could': 1.0, 'put': 1.0, 'but': 1.0, 'bee': 1.0, 'surely': 1.0, 'and': 2.0, 'by': 1.0, 'described': 1.0, 'as': 1.0, 'definitely': 1.0, 'infant': 1.0, 'or': 1.0, 'think': 1.0, 'cute': 1.0, 'ordered': 1.0, 'worth': 1.0, 'mean': 1.0, 'because': 1.0, 'not': 2.0, 'material': 1.0, 'was': 1.0, 'rough': 1.0, 'gown': 1.0, 'is': 2.0, 'that': 1.0, 'something': 1.0, 'thought': 1.0, 'ventilated': 1.0, 'threadbare': 1.0, 'it': 1.0, 'this': 1.0, 'ordering': 1.0, 't': 1.0, 'the': 2.0, '34': 4.0, 'i': 4.0, 'time': 1.0, 'your': 1.0, 'they': 1.0}
Word element => {'nice': 1.0, 'is': 1.0, 'fabric': 1.0, 'fitted': 1.0, 'a': 2.0, 'the': 2.0, 'flat': 1.0, 'i': 2.0, 'found': 1.0, 'misleading': 1.0, 'not': 1.0, 'was': 1.0, 'pictures': 1.0, 'sheet': 1.0, 'looking': 1.0, 'though': 1.0, 'for': 1.0}
Word element => {'worth': 1.0, 'the': 3.0, 'cases': 1.0, 'not': 1.0, 'was': 2.0, 'for': 2.0, 'in': 1.0, 'pillow': 1.0, 'well': 1.0, 'tinkerbell': 1.0, 'everywhere': 1.0, 'have': 1.0, 'it': 2.0, 'with': 1.0, 'this': 1.0, 'looked': 1.0, 'did': 1.0, 'richness': 1.0, 'color': 2.0, 'across': 1.0, 'i': 2.0, 'price': 1.0, 'wanting': 1.0, 'most': 1.0, 'then': 1.0, 'came': 1.0, 'and': 1.0}
Word element => {'cute': 1.0, 'star': 1.0, 'b': 1.0, 'took': 1.0, 'expensive': 1.0, 'in': 1.0, 'colors': 1.0, 'great': 1.0, 'c': 1.0, 'for': 1.0, 'one': 3.0, 'material': 1.0, '18': 1.0, 'off': 1.0, 'sheet': 1.0, 'soft': 1.0, 'otherwise': 1.0, 'my': 1.0, 'is': 1.0, 'opinion': 1.0, 'very': 2.0, 'and': 1.0, 'pillowcase': 1.0, 'just': 1.0}
Word element => {'to': 1.0, 'get': 2.0, 'because': 1.0, 'big': 1.0, 'tough': 1.0, 'enough': 1.0, 'cool': 1.0, 'kid': 1.0, 'for': 2.0, 'chair': 1.0, 'car': 2.0, 'can': 1.0, 'it': 2.0, 'yay': 1.0, 'throne': 1.0, 'sure': 1.0, 'is': 1.0, 'outta': 1.0, 'just': 1.0, 'the': 3.0, 'make': 1.0, 'your': 1.0}
Word element => {'said': 1.0, 'a': 1.0, 'with': 1.0, 'even': 1.0, 'not': 1.0, 'walks': 1.0, 'driver': 1.0, 'nuff': 1.0, 'car': 1.0, 'builds': 1.0, 'gets': 1.0, 'recardo': 1.0, 'if': 1.0, 'all': 2.0, 'have': 1.0, 'i': 1.0, 'for': 1.0, 'which': 1.0, 'devasting': 1.0, 'say': 1.0, 'to': 1.0, 'now': 1.0, 'cars': 1.0, 'we': 1.0, 'no': 1.0, 'chairs': 1.0, 'into': 1.0, 'racing': 1.0, 'crashes': 1.0, 'away': 1.0, 'and': 1.0, 'scratch': 1.0, 'the': 1.0}
Word element => {'alone': 1.0, 'just': 1.0, 'easy': 1.0, 'facing': 1.0, 'comfortable': 1.0, 'stands': 1.0, 'racing': 1.0, 'carseats': 1.0, 'this': 2.0, 'it': 4.0, 'month': 1.0, 'seats': 1.0, 'and': 4.0, 'extra': 1.0, 'rear': 1.0, 'is': 2.0, 'protection': 1.0, '7': 1.0, 'side': 1.0, 'have': 2.0, 'of': 1.0, 'forward': 1.0, 'the': 2.0, 'old': 3.0, 'awesome': 1.0, 'year': 3.0, 'recaro': 2.0, 'in': 2.0, 'our': 3.0, 'to': 1.0, 'use': 1.0, 'but': 1.0, '2': 3.0, 'most': 1.0, 'these': 1.0, 'some': 1.0, 'improvements': 1.0, 'don': 1.0, 'over': 1.0, 'one': 4.0, 'bought': 1.0, 'has': 1.0, 'half': 1.0, 't': 1.0, 's': 2.0, 'we': 5.0, 'a': 2.0, 'ago': 1.0, 'both': 1.0, 'are': 1.0, 'especially': 1.0, 'love': 3.0, 'impact': 1.0}
Word element => {'bounces': 1.0, 'held': 1.0, 'place': 1.0, 'a': 1.0, 'be': 1.0, 'allows': 1.0, 'sit': 1.0, 'them': 1.0, 'world': 1.0, 'it': 2.0, 'without': 1.0, 'and': 1.0, 'for': 1.0, 'to': 2.0, 'look': 1.0, 'seat': 1.0, 'enjoy': 1.0, 'great': 1.0, 'infants': 1.0, 'the': 1.0, 'constantly': 1.0, 'own': 1.0, 'on': 1.0, 'also': 1.0, 'having': 1.0, 'their': 1.0}
Word element => {'believe': 1.0, 'but': 1.0, 'expensive': 1.0, 'little': 1.0, 'a': 1.0, 'ever': 1.0, 'know': 1.0, 'lo': 1.0, 'my': 1.0, 'one': 1.0, 'for': 1.0, 'really': 1.0, 'is': 1.0, 'so': 1.0, 'bouncer': 1.0, 'this': 1.0, 'he': 1.0, 'it': 2.0, 'can': 1.0, 'loves': 1.0, 'perfect': 1.0, 'easy': 1.0, 'light': 1.0, 'to': 1.0, 'be': 1.0, 'clean': 1.0, 'worth': 2.0, 'that': 1.0, 'and': 2.0, 'dollar': 1.0, 'i': 1.0}
Word element => {'5': 1.0, 'd': 1.0, 'no': 1.0, 'were': 1.0, 'money': 1.0, 'if': 1.0, 'covered': 1.0, 'life': 1.0, 'pay': 1.0, 'limited': 1.0, 'awesome': 1.0, 'cloth': 1.0, 'even': 1.0, 'expensive': 1.0, 'dang': 1.0, 'just': 1.0, 'value': 1.0, 'star': 1.0, 'lot': 1.0, 'one': 1.0, 'twee': 1.0, 'any': 1.0, 'furniture': 1.0, 'excited': 1.0, 'toddler': 1.0, 'elegant': 1.0, 'simple': 1.0, 'cover': 1.0, 'useful': 1.0, 'setting': 1.0, 'outgrows': 1.0, 'when': 1.0, 'secure': 1.0, 'very': 1.0, 'off': 1.0, 'seems': 1.0, 'chairs': 1.0, 'use': 1.0, 'her': 1.0, 'squirmy': 1.0, 'clearly': 1.0, 'loves': 1.0, 'month': 1.0, '8': 1.0, 'appreciate': 1.0, 'really': 2.0, 'times': 1.0, 'car': 1.0, 'tetrised': 1.0, 'enough': 2.0, 'huzzah': 1.0, 'awkwardly': 1.0, 's': 5.0, 'friend': 1.0, 'loud': 1.0, 'you': 2.0, 'our': 1.0, 'besides': 1.0, 'without': 1.0, 'soft': 1.0, 'wire': 1.0, 'either': 1.0, 'orange': 1.0, 'its': 1.0, 'comfy': 1.0, 'stretchy': 1.0, 'place': 1.0, 'and': 12.0, 'folded': 1.0, 'rich': 1.0, 'have': 3.0, 'flat': 3.0, 'sort': 1.0, 'good': 2.0, 'accent': 1.0, 'cozy': 1.0, 've': 2.0, 'down': 1.0, 'are': 2.0, 'color': 1.0, 'actually': 2.0, 'such': 1.0, 'fabric': 2.0, 'for': 4.0, 'prints': 1.0, 'the': 17.0, 'of': 5.0, 'an': 2.0, 'other': 2.0, 'all': 1.0, 'as': 3.0, 'having': 1.0, 'object': 1.0, 'small': 1.0, 'a': 9.0, 'go': 1.0, 'little': 1.0, 'nice': 1.0, 'spot': 1.0, 'given': 1.0, 'bouncy': 3.0, 'portability': 1.0, 'bouncer': 2.0, 'ingenious': 1.0, 'reverse': 1.0, 'attractive': 1.0, 'qualities': 1.0, 'awful': 1.0, 'chair': 6.0, 'give': 1.0, 'there': 1.0, 'my': 2.0, 'looks': 1.0, 'it': 8.0, 'snug': 1.0, 'is': 4.0, 'settings': 1.0, 'more': 2.0, 'completely': 1.0, 'regular': 1.0, 'm': 1.0, 'in': 3.0, 'safe': 1.0, 'gentle': 1.0, 'pop': 1.0, 'job': 1.0, 'to': 9.0, 'pretty': 1.0, 'take': 2.0, 'wine': 1.0, 'she': 2.0, 'dragged': 1.0, 'baby': 6.0, 'unfasten': 1.0, 'this': 3.0, 'rocking': 1.0, 'into': 2.0, 'deep': 1.0, 'that': 2.0, 'footprint': 1.0, 'don': 1.0, 'stars': 1.0, 'colors': 1.0, 'fully': 1.0, 'tops': 1.0, 'red': 1.0, 'modern': 1.0, 'places': 1.0, 'everything': 1.0, 'makes': 1.0, 'restraint': 2.0, 'thanks': 1.0, 'design': 3.0, 'but': 2.0, 'so': 1.0, 'lightweight': 1.0, 'can': 2.0, 'means': 1.0, 'both': 1.0, 'house': 1.0, 'holding': 1.0, 'seen': 1.0, '4': 1.0, 'i': 5.0, 'reclined': 2.0, 'does': 1.0, 'partially': 1.0, 'or': 4.0, 'less': 2.0, 'frame': 1.0, 'gravity': 1.0, 'upright': 1.0, 'fold': 2.0, 'best': 1.0, 'much': 1.0, 'store': 1.0, 'out': 1.0, 'than': 1.0, 'vacation': 1.0, 'way': 1.0, 't': 1.0, 'along': 1.0, 'on': 1.0}
Word element => {'babybjorn': 1.0, 'bounces': 1.0, 'price': 1.0, 'less': 1.0, 'overpriced': 1.0, 'lame': 1.0, 'in': 1.0, 'bar': 1.0, '50': 1.0, 'a': 1.0, 'buy': 1.0, 'you': 2.0, 'as': 2.0, 'to': 2.0, 'attached': 1.0, 'my': 2.0, 'cause': 1.0, 'returned': 1.0, 'gets': 1.0, 'amazing': 1.0, 'of': 3.0, 'there': 1.0, 'get': 1.0, 'kind': 3.0, 'why': 1.0, 'this': 3.0, 'hard': 1.0, 'first': 1.0, 'think': 1.0, 'after': 1.0, 'boring': 2.0, 'too': 2.0, 'and': 4.0, 'do': 1.0, 'it': 5.0, 'looks': 1.0, 'are': 1.0, 'has': 1.0, 'half': 1.0, 'toy': 1.0, 'review': 1.0, 'opinion': 1.0, 'expensive': 1.0, 'actually': 3.0, 'for': 4.0, 'love': 1.0, 'than': 1.0, 'because': 1.0, 'i': 3.0, 'vibrates': 1.0, 'baby': 1.0, 'like': 1.0, 'which': 3.0, 'let': 1.0, 'no': 1.0, 'is': 7.0, 'explain': 1.0, 'me': 2.0, 'modern': 1.0, 'comfortable': 1.0, 'great': 1.0, 'the': 4.0, 'music': 1.0, 'can': 1.0, 'but': 2.0, '2': 1.0, 'fisherprice': 1.0, 'that': 1.0, 'babies': 1.0, 'one': 1.0, 'months': 1.0, 'snugabunny': 1.0, 'then': 1.0, 'need': 1.0, 'bouncer': 3.0, 'toys': 2.0}
Word element => {'travel': 1.0, 'storage': 1.0, 'flat': 1.0, 'lot': 1.0, 'grows': 1.0, 'so': 1.0, 'outgrow': 1.0, 'babies': 1.0, 'bouncers': 1.0, 'better': 1.0, 'standard': 1.0, 'been': 1.0, 'loves': 1.0, 'easily': 1.0, 'because': 1.0, 'that': 2.0, 'wow': 1.0, 'should': 1.0, 'an': 1.0, 'on': 3.0, 'your': 2.0, 'chair': 2.0, 'course': 1.0, 'rated': 1.0, 'up': 2.0, 'once': 1.0, 'says': 1.0, 'as': 1.0, 'it': 7.0, 'month': 1.0, 'fast': 1.0, 'i': 1.0, 'etc': 1.0, 'folds': 1.0, 'baby': 2.0, 'becomes': 1.0, 'old': 2.0, 'supervision': 1.0, 'have': 1.0, 'none': 1.0, 'not': 2.0, 'itself': 1.0, 'in': 4.0, 'buckle': 2.0, 'fully': 1.0, 'ships': 1.0, 'boy': 1.0, 'crawling': 1.0, 'stars': 1.0, 'shorter': 1.0, '10': 1.0, 'for': 5.0, 'worth': 1.0, 'a': 7.0, 's': 1.0, 'my': 3.0, '5': 1.0, 'time': 2.0, 'assembled': 1.0, 'of': 1.0, 'the': 5.0, 'bouncer': 1.0, 'great': 3.0, 'their': 1.0, 'quality': 1.0, 'sitting': 1.0, 'babybjorn': 1.0, 'but': 1.0, 'item': 1.0, 'tumble': 1.0, 'down': 1.0, 'kitchen': 1.0, 'rumble': 1.0, 'adjustable': 1.0, 'out': 1.0, 'back': 1.0, 'deck': 1.0, 'is': 5.0, 'at': 1.0, 'own': 1.0, 'climb': 1.0, 'dinner': 1.0, 'obviously': 1.0, 'with': 2.0, 'quick': 1.0, 'and': 2.0, 'periods': 1.0, 'buckling': 1.0, 'you': 1.0, 'push': 1.0, 'very': 2.0, 'easy': 1.0, '3': 2.0, 'older': 1.0, 'child': 3.0, 'product': 3.0, 'year': 1.0, 'lbs': 1.0, 'was': 1.0, '30': 1.0, 'this': 2.0, 'did': 1.0, 'hold': 1.0, 'her': 1.0, 'fine': 1.0, 'them': 1.0, 'has': 1.0, 'positions': 1.0, 'sit': 1.0, 'to': 2.0, 'high': 1.0, 'overall': 1.0}
Word element => {'recommend': 1.0, 'justify': 1.0, 'helps': 1.0, 'feature': 1.0, 'grows': 1.0, 'years': 1.0, 'attractive': 1.0, 'growing': 1.0, 'long': 1.0, 'though': 1.0, 'problem': 1.0, 't': 1.0, 'won': 1.0, 'd': 1.0, 'enough': 1.0, 'slouched': 1.0, 'holes': 1.0, 'slip': 1.0, 'find': 1.0, 'somehow': 1.0, 'could': 1.0, 'wonder': 2.0, 'backwards': 1.0, 'think': 1.0, 'flip': 1.0, 'cover': 1.0, 'off': 1.0, 'you': 1.0, 'mode': 1.0, 'enjoys': 1.0, 'quite': 1.0, 'prefer': 1.0, 'very': 4.0, 'they': 1.0, 'sturdy': 1.0, 'to': 7.0, 'as': 4.0, 'small': 2.0, 'slight': 1.0, 'a': 7.0, 's': 1.0, 'my': 4.0, 'have': 2.0, 'nicer': 1.0, 'lights': 1.0, 'he': 3.0, 'love': 5.0, 'fabric': 1.0, 'for': 3.0, 'actually': 1.0, 'blinking': 1.0, 'what': 1.0, 'colors': 1.0, 'about': 1.0, 'of': 3.0, 'the': 9.0, 'prints': 1.0, 'between': 1.0, 'animals': 1.0, 'well': 2.0, 'i': 10.0, 'sleeker': 1.0, 'around': 2.0, 'here': 1.0, 'force': 1.0, 'toys': 1.0, 'couple': 1.0, 'chair': 7.0, 'design': 1.0, 'all': 1.0, 'other': 1.0, 'switches': 1.0, 'and': 14.0, 'one': 2.0, 'too': 1.0, 'sitting': 2.0, 'so': 5.0, 'can': 3.0, 'durable': 1.0, 'him': 1.0, 'it': 11.0, 'month': 1.0, 'reservation': 1.0, 'simplicity': 1.0, 'baby': 3.0, 'she': 3.0, 'highly': 1.0, 'this': 6.0, 'with': 4.0, 'old': 1.0, 'looking': 1.0, 'way': 1.0, 'than': 2.0, 'does': 2.0, 'made': 2.0, 'which': 2.0, 'like': 1.0, 'should': 1.0, 'easy': 3.0, 'get': 1.0, 'tend': 1.0, 'three': 1.0, 'switch': 1.0, 'different': 1.0, 'use': 1.0, 'her': 1.0, 'babies': 1.0, 'settings': 1.0, 'do': 2.0, 'much': 3.0, 'put': 1.0, 'seat': 1.0, 'in': 3.0, 'be': 4.0, 'slides': 1.0, 'leg': 1.0, 'we': 1.0, 'take': 2.0, 'out': 6.0, 'fall': 1.0, 'young': 1.0, 'easily': 2.0, 'that': 5.0, 'loves': 1.0, 'used': 2.0, 'price': 2.0, 'toddler': 2.0, 'daughter': 2.0, '21': 1.0, 'seats': 1.0, 'just': 2.0, 'home': 1.0, 'by': 1.0, 'bouncy': 3.0, 'herself': 1.0, 'back': 1.0, 'still': 1.0, 'if': 4.0, 'is': 9.0, 'sits': 1.0, 'down': 2.0, 'simple': 1.0, 'bounce': 1.0, 'right': 1.0, 'cheesy': 2.0, 'slide': 1.0}
Word element => {'babes': 1.0, 'for': 1.0, 'have': 1.0, 'must': 1.0, 'this': 1.0, 'house': 1.0, 'area': 1.0, 'buckle': 1.0, 'any': 1.0, 'to': 4.0, 'vertical': 1.0, 'but': 1.0, 'lightweight': 1.0, 'so': 1.0, 'can': 1.0, 'back': 1.0, 'around': 1.0, 'his': 1.0, 'on': 1.0, 'very': 1.0, 'being': 1.0, 'everything': 2.0, 'while': 3.0, 'from': 1.0, 'hurting': 1.0, 'was': 2.0, 'like': 1.0, 'which': 1.0, 'up': 2.0, 'babies': 1.0, 'that': 2.0, 'been': 1.0, 'my': 1.0, 't': 2.0, 'a': 3.0, 's': 4.0, 'bouncy': 1.0, 'old': 2.0, 'across': 1.0, 'and': 1.0, 'i': 8.0, 'prop': 1.0, '4': 1.0, 'hated': 2.0, 'month': 1.0, 'it': 6.0, 'move': 1.0, 'toy': 1.0, 'love': 2.0, 'he': 5.0, 'has': 1.0, 'them': 1.0, 'baby': 1.0, 'ended': 1.0, 'laying': 1.0, 'feeling': 1.0, 'since': 1.0, 'find': 1.0, '5': 1.0, 'known': 1.0, 'before': 1.0, 'couldn': 1.0, 'horrible': 1.0, 'birth': 1.0, 'swing': 1.0, 'car': 1.0, 'miracle': 1.0, 'basically': 1.0, 'mat': 1.0, 'products': 1.0, 'other': 2.0, 'an': 1.0, 'came': 1.0, 'bjorn': 1.0, 'seat': 2.0, 'in': 1.0, 'started': 1.0, 'toys': 2.0, 'finally': 1.0, 'done': 1.0, 'sit': 1.0, 'what': 1.0, 'suffering': 1.0, 'had': 1.0, 'bar': 1.0, 'wish': 1.0, 'easy': 1.0, 'found': 1.0, 'play': 2.0, 'about': 1.0, 'reflux': 3.0, 'sooner': 1.0, 'almost': 2.0, 'upright': 1.0, 'with': 1.0, 'shower': 1.0, 'the': 6.0, 'of': 1.0, 'or': 1.0, 'bouncer': 1.0, 'months': 1.0, 'get': 1.0, 'couple': 1.0, 'able': 1.0, 'things': 1.0, 'didn': 1.0, 'buy': 1.0, 'just': 1.0, 'position': 1.0, 'strap': 1.0, 'little': 1.0}
Word element => {'mesh': 1.0, 'the': 1.0, 'recommend': 1.0, 'purchase': 1.0, 'version': 1.0, 'a': 1.0, 'overall': 1.0, 'great': 1.0, 'it': 1.0, 'is': 1.0, 'light': 1.0, 'extremely': 1.0, 'for': 1.0, 'traveling': 1.0, 'baby': 1.0, 'girl': 1.0, 'enjoy': 1.0, 'seems': 1.0, 'product': 1.0, 'to': 1.0}
Word element => {'the': 1.0, 'used': 1.0, 'on': 1.0, 'is': 1.0, 'light': 1.0, 'bouncing': 1.0, 'keep': 1.0, 'babies': 1.0, 'getting': 1.0, 'it': 5.0, 'doesn': 1.0, 'like': 1.0, 'and': 1.0, 'effort': 1.0, 't': 1.0, 'also': 1.0, 'seem': 1.0, 'take': 1.0, 'buttons': 1.0, 'still': 1.0, 'to': 3.0, 'much': 1.0}
Word element => {'lovely': 1.0, 'years': 1.0, 'useful': 1.0, 'be': 1.0, 'll': 1.0, 'quite': 1.0, 'warm': 1.0, 'soothes': 1.0, 'brand': 1.0, 'integrity': 1.0, 'keeps': 1.0, 'long': 1.0, 'baby': 2.0, 'gentle': 1.0, 'many': 1.0, 'because': 1.0, 'afraid': 1.0, 'for': 2.0, 'motion': 1.0, 'or': 1.0, 'worth': 1.0, 'but': 1.0, 'money': 1.0, 'more': 1.0, 'is': 6.0, 'second': 1.0, 'really': 2.0, 'as': 4.0, 'to': 2.0, 'rust': 1.0, 'was': 3.0, 'size': 1.0, 'designed': 1.0, 'burgundy': 1.0, 'well': 1.0, 'outdated': 1.0, 'has': 2.0, '29': 1.0, 'child': 2.0, 'unlike': 1.0, 'out': 1.0, 'balance': 1.0, 'babybjorn': 2.0, 'adjustable': 1.0, 'other': 2.0, 'bouncer': 3.0, 'so': 4.0, 'rocking': 1.0, 'been': 1.0, 'that': 4.0, 'their': 1.0, 'the': 4.0, 'last': 1.0, 'lot': 1.0, 'my': 1.0, 'mileage': 1.0, 'chairs': 1.0, 'built': 1.0, 'used': 1.0, 'two': 1.0, 'become': 1.0, 'i': 4.0, 've': 1.0, 'in': 1.0, 'description': 1.0, 'too': 1.0, 'soon': 1.0, 'and': 5.0, 'get': 2.0, 'year': 1.0, 'maximum': 1.0, 'made': 1.0, 'weight': 1.0, 'grows': 1.0, 'your': 2.0, 'recommendation': 1.0, 'thanks': 1.0, 'seen': 1.0, 'lbs': 1.0, 'soft': 1.0, 'this': 1.0, 'it': 6.0, 'until': 1.0, 'excited': 1.0, 'will': 2.0, 's': 2.0, 'a': 5.0, 'items': 1.0, 'see': 1.0, 'of': 4.0, 'color': 1.0, 'one': 1.0}
Word element => {'recoup': 1.0, 'done': 1.0, 'after': 1.0, 're': 2.0, 'able': 1.0, 'be': 1.0, 'sell': 1.0, 'should': 1.0, 'disappointing': 1.0, 'consolation': 1.0, 'use': 1.0, 'cost': 1.0, 'would': 1.0, 'unacceptable': 1.0, 'fingers': 1.0, 'hurts': 1.0, 'my': 3.0, 'little': 1.0, 'some': 1.0, 'these': 1.0, 'manipulate': 1.0, 'me': 1.0, 'difficult': 1.0, 'been': 1.0, 'into': 1.0, 'that': 5.0, 'easier': 1.0, 'review': 1.0, 'though': 1.0, 'beige': 1.0, 'problem': 1.0, 'i': 4.0, 'order': 1.0, 'through': 1.0, 'reclining': 1.0, 'different': 1.0, 'try': 1.0, 'only': 1.0, 'its': 1.0, 'do': 1.0, 'and': 2.0, 'we': 1.0, 'a': 1.0, 's': 2.0, 't': 1.0, 'functional': 1.0, 'mentions': 1.0, 'this': 3.0, 'it': 3.0, 'one': 1.0, 'anchor': 1.0, 'color': 1.0, 'positions': 1.0, 'no': 1.0, 'surprised': 1.0, 'but': 1.0, 'of': 2.0, 'using': 1.0, 'like': 1.0, 'neutral': 1.0, 'fasteners': 3.0, 'holes': 1.0, 'they': 1.0, 'expensive': 1.0, 'actually': 1.0, 'for': 3.0, 'was': 1.0, 'crotch': 1.0, 'are': 1.0, 'with': 1.0, 'piece': 1.0, 'meaty': 1.0, 'is': 3.0, 'holds': 1.0, 'baby': 1.0, 'child': 1.0, 'don': 1.0, 'as': 2.0, 'to': 6.0, 'seat': 4.0, 'any': 1.0, 'in': 2.0, 'chair': 1.0, 'really': 1.0, 'small': 1.0, 'have': 2.0, 'the': 9.0, 'hands': 1.0, 'just': 1.0, 'large': 2.0, 'by': 1.0, 'definition': 1.0}
Word element => {'separately': 1.0, 'sold': 1.0, 'wooden': 1.0, 'worth': 1.0, 'really': 1.0, 'chairs': 1.0, 'moreprice': 1.0, 'being': 1.0, 'above': 1.0, 'different': 1.0, 'array': 1.0, 'comes': 1.0, 'here': 1.0, 'animals': 1.0, 'pastels': 1.0, 'no': 1.0, 'simple': 1.0, 'sturdy': 1.0, 'transport': 1.0, 'colored': 1.0, 'brightly': 1.0, 'usual': 1.0, 'plus': 1.0, 'which': 1.0, 'most': 3.0, 'but': 3.0, 'that': 5.0, 'what': 1.0, 'sit': 1.0, 'birth': 1.0, 'technically': 1.0, 'nice': 2.0, 'big': 1.0, 'can': 6.0, 'so': 2.0, 'model': 1.0, 'time': 1.0, 'after': 1.0, 'infant': 3.0, 'from': 1.0, 'as': 2.0, 'an': 2.0, 'all': 2.0, 'his': 1.0, 'toy': 1.0, 'used': 4.0, 'practical': 1.0, 'babies': 2.0, 'more': 3.0, 'chair': 1.0, 'there': 1.0, 'a': 9.0, 's': 3.0, 't': 3.0, 'be': 4.0, 'toddler': 2.0, 'product': 1.0, 'depending': 1.0, 're': 1.0, 'where': 1.0, 'states': 1.0, 'it': 7.0, '160': 1.0, 'month': 1.0, 'this': 3.0, '0': 1.0, 'true': 1.0, 'amount': 1.0, 'on': 3.0, 'bouncer': 2.0, 'months': 2.0, 'ages': 1.0, 'and': 3.0, 'attaches': 1.0, 'description': 1.0, 'not': 4.0, 'six': 1.0, 'or': 6.0, 'several': 1.0, 'down': 2.0, 'use': 1.0, 'her': 1.0, 'stretch': 1.0, 'motif': 1.0, 'is': 7.0, 'at': 1.0, 'lot': 2.0, 'storagecons': 1.0, '24': 1.0, 'space': 1.0, 'many': 1.0, 'baby': 4.0, 'folds': 1.0, 'to': 4.0, 'pretty': 1.0, 'then': 1.0, 'take': 1.0, 'pros': 1.0, 'flat': 2.0, 'animal': 1.0, 'won': 1.0, 'up': 1.0, 'prints': 1.0, 'the': 12.0, 'longer': 1.0, 'of': 5.0, 'if': 2.0, 'able': 1.0, 'you': 2.0, 'color': 1.0, 'colorsfolds': 1.0, 'chunk': 1.0, 'with': 1.0, 'rack': 1.0, 'gear': 1.0, 'yes': 1.0, 'own': 1.0, 'until': 1.0, 'seems': 1.0, 'fan': 1.0, 'accumulate': 1.0, 'nothing': 1.0, 'seatattractive': 1.0, 'i': 2.0, 'in': 1.0, 'seat': 6.0, 'm': 1.0, 'something': 1.0, 'fabric': 1.0, 'for': 5.0, 'such': 1.0, 'said': 2.0, 'much': 1.0, 'attractive': 2.0, 'huge': 1.0, 'than': 2.0, 'stuff': 1.0, 'seats': 1.0, 'sure': 1.0, 'store': 1.0, 'market': 1.0, 'walk': 1.0, 'about': 2.0, 'design': 2.0, 'screams': 1.0}
Word element => {'expensive': 1.0, 'bar': 1.0, 'bought': 1.0, 'without': 1.0, 'buy': 1.0, 'i': 2.0, 'leave': 1.0, 'second': 1.0, 'the': 2.0, 'my': 1.0, 'so': 1.0, 'got': 1.0, 'to': 1.0, 'was': 1.0, 'could': 1.0, 'it': 1.0, 'this': 1.0, 'one': 1.0, 'for': 1.0, 'downstairs': 1.0, 'convenience': 1.0, 'nice': 1.0, 'comfy': 1.0, 'and': 1.0, 'but': 1.0, 'toy': 2.0, 'baby': 1.0, 'bored': 1.0}
Word element => {'happy': 1.0, 'be': 1.0, 'sure': 1.0, 'equipment': 1.0, 'piece': 1.0, 'are': 1.0, 'elastic': 1.0, 'really': 1.0, 'above': 1.0, 'mentioned': 1.0, 'that': 1.0, 'between': 1.0, 'done': 1.0, 'along': 1.0, 'my': 1.0, 'me': 1.0, 'make': 1.0, 'myself': 1.0, 'expect': 1.0, 'do': 1.0, 'expensive': 1.0, 'if': 1.0, 'stay': 1.0, 'stable': 1.0, 'helps': 1.0, 'themselves': 2.0, 'slide': 1.0, 'buy': 1.0, 'hand': 1.0, 'wants': 1.0, 'up': 1.0, 'picking': 1.0, 'your': 3.0, 'someone': 1.0, 'yourself': 1.0, 'want': 1.0, 'base': 1.0, 'part': 1.0, 'though': 1.0, 'touch': 1.0, 'lip': 1.0, 'comes': 1.0, 'room': 1.0, 'living': 1.0, 'sitting': 1.0, 'rom': 1.0, 'with': 3.0, 're': 2.0, 'especially': 1.0, 'version': 1.0, 'gift': 1.0, 'good': 1.0, 'which': 1.0, 'using': 1.0, 'from': 1.0, 'fun': 1.0, 'onto': 1.0, 'about': 1.0, 'not': 1.0, 'itself': 2.0, 'm': 1.0, 'in': 4.0, 'houses': 1.0, 's': 2.0, 'we': 4.0, 'a': 6.0, 'used': 2.0, 'chairs': 2.0, 'bb': 1.0, 'and': 6.0, 'friend': 1.0, 'subtle': 1.0, 'child': 2.0, 'price': 1.0, 'product': 2.0, 'bottom': 1.0, 'far': 2.0, 'smeared': 1.0, 'plusses': 1.0, 'would': 5.0, 'down': 2.0, 've': 3.0, 'others': 1.0, 'some': 1.0, 'received': 1.0, 'also': 1.0, 'upward': 1.0, 'to': 6.0, 'as': 2.0, 'given': 1.0, 'bouncy': 1.0, 'towards': 1.0, 'at': 1.0, 'is': 5.0, 'more': 1.0, 'prints': 1.0, 'of': 5.0, 'the': 15.0, 'without': 1.0, '2': 1.0, 'tasteful': 1.0, 'but': 2.0, 'or': 2.0, 'food': 1.0, 'issue': 1.0, 'guy': 2.0, 'on': 3.0, 'weight': 1.0, 'chair': 6.0, 'no': 1.0, 'limit': 1.0, 'it': 16.0, 'its': 2.0, 'was': 1.0, 'rust': 1.0, 'so': 4.0, 'function': 1.0, 'means': 1.0, 'other': 3.0, 'use': 2.0, 'tag': 1.0, 'for': 2.0, 'fabric': 1.0, 'clean': 1.0, 'i': 8.0, 'well': 1.0, 'has': 2.0, 'kitchen': 1.0, 'does': 1.0, 'than': 2.0, 'little': 4.0, 'nice': 2.0, 'ways': 1.0, 'think': 1.0, 'better': 1.0, 'great': 1.0, 'foot': 1.0, 'spring': 1.0, 'you': 4.0, 'versions': 1.0, 'curious': 1.0, 'this': 3.0, 'few': 1.0, 'rocking': 1.0, 'very': 2.0, 'stabilize': 1.0, 'himself': 1.0, 'back': 1.0, 'out': 1.0, 'inevitable': 1.0, 'forth': 1.0, 'while': 1.0, 'additionally': 1.0, 'had': 3.0, 'nicer': 1.0, 'how': 2.0, 'our': 3.0, 'aesthetically': 1.0, 'importantly': 1.0, 'red': 1.0, 'childish': 1.0, 'differentiate': 1.0, 'easy': 1.0, 'wipe': 1.0, 'when': 5.0, 'gets': 1.0, 'dropped': 1.0, 'have': 2.0}
Word element => {'quite': 1.0, 'then': 1.0, 'value': 1.0, 'of': 1.0, 'for': 1.0, 'should': 1.0, 'if': 1.0, 'you': 2.0, 'buy': 1.0, 'weight': 1.0, 'your': 2.0, 'this': 1.0, 'low': 1.0, 'before': 1.0, 'money': 1.0, 'baby': 1.0, 'because': 1.0, 'really': 1.0, 'settings': 1.0, 'want': 1.0, 'is': 2.0, 'born': 1.0, 'limit': 1.0, 'the': 2.0, 'different': 1.0}
Word element => {'sized': 1.0, 'monitor': 1.0, 'and': 1.0, 'even': 1.0, 'medium': 1.0, 'backyard': 1.0, 'this': 1.0, 'baby': 1.0, 'don': 1.0, 'apartments': 1.0, 'using': 1.0, 'for': 2.0, 'in': 1.0, 'good': 1.0, 'going': 1.0, 'but': 1.0, 'work': 1.0, 'house': 1.0, 'a': 1.0, 'plan': 1.0, 'won': 1.0, 'on': 1.0, 't': 2.0, 'the': 2.0, 'to': 1.0}
Word element => {'pocket': 1.0, 'noise': 1.0, 'even': 1.0, 'instead': 1.0, 'phone': 1.0, 'use': 1.0, 'iphone': 1.0, 'purchased': 1.0, 'and': 2.0, 'item': 1.0, 'have': 1.0, 'it': 3.0, 'with': 1.0, 'much': 1.0, 'only': 1.0, 'entire': 1.0, 'face': 1.0, 'wall': 1.0, 'vibrates': 1.0, 'baby': 3.0, 'see': 2.0, 's': 1.0, 'a': 3.0, 'was': 1.0, 'keep': 1.0, 'image': 2.0, 'enough': 1.0, 'detected': 1.0, 'clear': 2.0, 'tried': 1.0, 'app': 1.0, 'bed': 1.0, 'for': 1.0, 'camera': 2.0, 'in': 2.0, 'returned': 1.0, 'mounted': 1.0, 'began': 1.0, 'zoomed': 1.0, 'your': 2.0, 'on': 2.0, 'the': 9.0, 'not': 1.0, 'makes': 1.0, 'which': 1.0, 'audio': 2.0, 'above': 1.0, 'can': 1.0, 'but': 1.0, 'initially': 1.0, 'useful': 1.0, 'to': 4.0, 'as': 2.0, 'monitor': 3.0, 'mounting': 1.0, 'crib': 2.0, 'close': 1.0, 'better': 1.0, 'if': 2.0, 'view': 1.0, 'more': 1.0, 'is': 3.0, 'so': 2.0, 'an': 2.0, 'moves': 1.0, 'you': 1.0, 'again': 1.0, '4': 1.0, 'i': 1.0, 'becomes': 1.0}
Word element => {'attention': 1.0, 'draw': 1.0, 'an': 1.0, 'then': 1.0, 'to': 3.0, 'don': 1.0, 'discretely': 1.0, 'want': 2.0, 'if': 1.0, 'hear': 1.0, 'can': 1.0, 'for': 1.0, 'where': 1.0, 'monitors': 1.0, 'other': 1.0, 'used': 1.0, 'have': 1.0, 'these': 1.0, 'the': 9.0, 'warning': 1.0, 'out': 2.0, 'alert': 1.0, 'what': 1.0, 'pan': 1.0, 'is': 5.0, 'example': 1.0, 'features': 1.0, 'really': 1.0, 'and': 2.0, 'monitor': 4.0, 'night': 1.0, 'quality': 2.0, 'video': 1.0, 'well': 1.0, 'important': 2.0, 'of': 3.0, 'are': 2.0, 'fairly': 1.0, 'good': 2.0, 'camera': 1.0, 'in': 2.0, 'range': 1.0, 'worked': 1.0, 'light': 1.0, 'battery': 1.0, 'infrared': 1.0, 't': 1.0, 'a': 1.0, 'could': 2.0, 'you': 4.0, 'easily': 1.0, 'babysitter': 1.0, 'using': 1.0, 'audio': 1.0, 'like': 1.0, 'make': 1.0, 'was': 1.0, 'room': 1.0, 'movement': 1.0, 'move': 1.0, 'bright': 1.0, 'certainly': 1.0, 'low': 1.0, 'detect': 1.0, 'that': 1.0, 'i': 4.0, 'feature': 2.0, 'vision': 1.0, 'this': 3.0, 'there': 1.0, 'silent': 1.0}
Word element => {'price': 1.0, 'adequate': 1.0, 'an': 1.0, 'options': 1.0, 'other': 1.0, 'viewing': 1.0, 'will': 1.0, 'out': 1.0, 'there': 2.0, 'what': 1.0, 'frustrated': 1.0, 'probably': 1.0, 'then': 1.0, 'frilly': 1.0, 'expensive': 1.0, 'for': 2.0, 'enough': 1.0, 'close': 2.0, 'give': 1.0, 'not': 2.0, 'do': 1.0, 'because': 1.0, 'up': 1.0, 'set': 1.0, 'are': 4.0, 'see': 2.0, 'awake': 1.0, 'they': 1.0, 'bigger': 1.0, 'image': 1.0, 'childs': 2.0, 'decent': 2.0, 'that': 2.0, 'into': 1.0, 'if': 2.0, 'better': 1.0, 'of': 4.0, 'this': 3.0, 'it': 2.0, 'with': 3.0, 'room': 2.0, 'more': 1.0, 'is': 4.0, 'you': 7.0, 'depending': 1.0, 'video': 3.0, 'capable': 1.0, 'monitor': 5.0, 'and': 3.0, 'basic': 1.0, 'screen': 1.0, 'letting': 1.0, 'mess': 1.0, 'etc': 1.0, 'going': 1.0, 'a': 5.0, 'we': 1.0, 'have': 2.0, 'monitors': 2.0, 'to': 4.0, 'all': 1.0, 'few': 1.0, 'visually': 1.0, 'quality': 1.0, 'them': 2.0, 'place': 1.0, 'asleep': 1.0, 'playing': 1.0, 'the': 8.0, 'closer': 1.0, 'but': 2.0, 'peek': 1.0, 'can': 3.0, 'seeing': 1.0, 'be': 2.0, 'problematic': 1.0, 'your': 2.0, 'furniture': 1.0, 'put': 2.0, 'on': 2.0}
Word element => {'excelent': 1.0}
Word element => {'video': 1.0, 'buy': 1.0, 'fussing': 1.0, 'son': 1.0, 'my': 1.0, 'but': 2.0, 'back': 1.0, 'on': 3.0, 'suggest': 1.0, '12': 1.0, 'the': 3.0, 'and': 1.0, 'tried': 1.0, 'i': 6.0, 'night': 1.0, 'to': 2.0, 'turned': 1.0, 'hear': 1.0, 'first': 1.0, 'it': 5.0, 'excited': 1.0, 'this': 2.0, 'arrived': 1.0, 'ordered': 1.0, 'stay': 1.0, 'not': 2.0, 'would': 2.0, 'charge': 1.0, 'monitor': 3.0, 'very': 1.0, 'disappointed': 1.0, 'also': 1.0, 'sound': 1.0, 'let': 1.0, 'hours': 2.0, 'at': 1.0, 'for': 1.0, 'died': 1.0, 'about': 2.0, 'before': 1.0, 'anyone': 1.0, 'trying': 1.0, 'use': 1.0, 'was': 2.0, 'minutes': 1.0, 'after': 1.0, '10': 1.0, 'being': 1.0, 'is': 1.0, 'really': 1.0, 'screwing': 1.0, 'bad': 1.0, 'could': 1.0, 'when': 2.0, 'barely': 1.0}
Word element => {'one': 1.0, 'market': 1.0, 'would': 1.0, 'don': 1.0, 'frame': 1.0, 'of': 1.0, 'out': 1.0, 'moves': 1.0, 'if': 1.0, 'from': 1.0, 'in': 1.0, 'camera': 2.0, 'able': 1.0, 'be': 1.0, 'awake': 1.0, 'range': 1.0, 'son': 1.0, 'sleeping': 1.0, 'house': 1.0, 'video': 1.0, 'and': 3.0, 'monitor': 6.0, 'difference': 1.0, 'tell': 1.0, 'good': 1.0, 'has': 1.0, 'carry': 1.0, 'really': 1.0, 'around': 1.0, 'is': 2.0, 'it': 2.0, 'adjust': 2.0, 'he': 2.0, 'that': 1.0, 'so': 3.0, 'between': 1.0, 'the': 8.0, 'nice': 1.0, 'great': 1.0, 'can': 2.0, 'parents': 1.0, 'voice': 1.0, 'recommend': 1.0, 'was': 1.0, 'any': 1.0, 'noises': 1.0, 'our': 2.0, 'to': 5.0, 'previous': 1.0, 'go': 1.0, 't': 1.0, 'we': 1.0, 's': 1.0, 'a': 1.0, 'only': 1.0, 'its': 3.0, 'much': 1.0, 'better': 1.0, 'small': 1.0, 'have': 2.0, 'baby': 2.0, 'night': 1.0, 'i': 3.0, 'this': 2.0, 'vision': 1.0, 'manually': 1.0, 'you': 1.0, 'when': 1.0, 'for': 1.0, 'love': 1.0, 'actually': 1.0}
Word element => {'believe': 1.0, 'want': 1.0, 'your': 1.0, 'feel': 1.0, 'mention': 1.0, 'enough': 1.0, 'baby': 1.0, 'deal': 1.0, 'big': 1.0, 'plugged': 1.0, 'bed': 1.0, 'so': 1.0, 'can': 2.0, 'chose': 1.0, 'but': 4.0, '2': 1.0, 'talk': 1.0, 'soothe': 1.0, 'by': 1.0, 'fussy': 1.0, 'minutes': 2.0, 'trying': 1.0, 'be': 1.0, 'in': 2.0, 'm': 1.0, 'when': 1.0, 'important': 1.0, 'only': 1.0, 'through': 2.0, 'yard': 1.0, 'to': 10.0, 'all': 4.0, 'most': 2.0, 'sleep': 1.0, 'lag': 1.0, 'backyard': 1.0, 'from': 1.0, 'problem': 1.0, 'part': 1.0, 'way': 1.0, 'always': 1.0, '99': 1.0, 'he': 1.0, 'front': 1.0, 'story': 1.0, 'a': 6.0, 'have': 5.0, 'well': 1.0, 'i': 9.0, 'two': 1.0, 'almost': 1.0, 'house': 2.0, 'off': 1.0, '2500': 1.0, 'get': 1.0, 'not': 3.0, 'sq': 1.0, 'handheld': 3.0, 'hours': 1.0, 'should': 1.0, 'and': 9.0, 'speak': 1.0, 'him': 3.0, 'it': 2.0, 'this': 2.0, 'however': 1.0, 'found': 1.0, 'taken': 1.0, 'average': 1.0, 'works': 3.0, 'ish': 1.0, 'hand': 3.0, 'sometimes': 1.0, 'soothing': 1.0, 'foot': 1.0, 'great': 3.0, 'option': 1.0, 'is': 6.0, 'at': 2.0, 'product': 1.0, 'price': 5.0, 'camera': 1.0, 'video': 3.0, 'fully': 1.0, 'you': 2.0, 'night': 2.0, 'my': 1.0, 'me': 1.0, 'may': 1.0, 'hd': 1.0, 'which': 1.0, 'good': 2.0, 'last': 1.0, 'no': 1.0, 'battery': 2.0, 'about': 2.0, 'choppy': 1.0, 'with': 1.0, 'equipment': 1.0, 'life': 1.0, 'span': 1.0, 'the': 21.0, 'longer': 1.0, 'of': 4.0, 'try': 1.0, 'held': 3.0, 'charged': 1.0, 'on': 2.0, 'looking': 1.0, 'monitor': 1.0, 'picture': 1.0, 'for': 5.0, '10': 2.0, 'seconds': 1.0, 'if': 1.0, 'every': 1.0, '15': 1.0, 'that': 2.0, '20': 1.0, 'lasts': 1.0}
Word element => {'children': 1.0, 'other': 1.0, 'have': 1.0, 'if': 1.0, 'rooms': 1.0, 'between': 1.0, 'toggle': 1.0, 'second': 1.0, 'buy': 1.0, 'would': 1.0, 'you': 3.0, 'd': 1.0, 'price': 1.0, 'for': 1.0, 'quality': 1.0, 'night': 1.0, 'are': 1.0, 'while': 1.0, 'camera': 1.0, 'in': 2.0, 'not': 1.0, 'room': 1.0, 'shutting': 1.0, 'before': 1.0, 'better': 1.0, 'hours': 1.0, 'problem': 1.0, 'her': 1.0, 'were': 1.0, 'that': 2.0, 'get': 1.0, 'monitor': 1.0, 'and': 3.0, 'horrible': 1.0, 'a': 2.0, 'go': 1.0, 'we': 7.0, 'huge': 1.0, 'bought': 1.0, 'trying': 1.0, 'be': 2.0, 'wish': 1.0, 'this': 1.0, 'rocked': 1.0, 'it': 3.0, 'do': 1.0, 'only': 1.0, 'own': 1.0, 'an': 1.0, 'video': 1.0, 'our': 2.0, 'to': 6.0, 'sleep': 2.0, 'eye': 1.0, 'because': 1.0, 'having': 1.0, 'lasts': 1.0, 'think': 1.0, 'on': 2.0, 'daughter': 1.0, 'really': 1.0, 'down': 1.0, 'sooner': 1.0, 'is': 3.0, 'what': 1.0, 'had': 1.0, 'purchased': 1.0, 'can': 1.0, 'but': 1.0, '2': 1.0, 'most': 1.0, 'deal': 1.0, 'without': 1.0, 'the': 5.0, 'battery': 2.0, 'hand': 1.0, 'like': 2.0, 'device': 1.0, 'life': 1.0, 'of': 1.0, 'plug': 1.0, 'held': 1.0, 'keep': 1.0, 'who': 1.0, 'at': 2.0}
Word element => {'picture': 1.0, 'got': 1.0, 'tape': 1.0, 'on': 1.0, 'put': 1.0, 'make': 1.0, 'far': 1.0, 'was': 1.0, 'too': 1.0, 'and': 2.0, 'light': 1.0, 'had': 1.0, 'well': 2.0, 'also': 1.0, 'camera': 2.0, 'in': 1.0, 'scan': 1.0, 'pan': 1.0, 'are': 1.0, 'though': 1.0, 'speakers': 1.0, 'view': 1.0, 'the': 7.0, 'not': 1.0, 'like': 1.0, 'over': 1.0, 'up': 1.0, 'voices': 1.0, 'two': 1.0, 'i': 1.0, 'feature': 1.0, 'how': 1.0, 'works': 1.0, 'much': 1.0, 'sensitive': 1.0, 'infra': 2.0, 'room': 2.0, 'great': 2.0, 'nice': 1.0, 'entire': 1.0, 'm': 1.0, 'babies': 1.0, 'way': 1.0, 'you': 1.0, 'we': 1.0, 'a': 4.0, 's': 1.0, 'sure': 1.0, 'disembodied': 1.0, 'back': 1.0, 'little': 1.0, 'crib': 1.0, 'but': 1.0, 'can': 1.0, 'to': 1.0, 'as': 2.0, 'is': 1.0, 'around': 1.0, 'it': 1.0, 'red': 2.0, 'with': 1.0, 'this': 1.0, 'vision': 1.0, 'for': 1.0, 'lights': 2.0, 'pitch': 1.0, 'night': 3.0, 'baby': 1.0}
Word element => {'product': 1.0, 'not': 1.0, 'extra': 1.0, 'i': 2.0, 'very': 1.0, 'would': 2.0, 'display': 1.0, 'recommend': 2.0, 'a': 3.0, 'video': 1.0, 'is': 1.0, 'the': 2.0, 'are': 1.0, 'better': 1.0, 'if': 1.0, 'spending': 1.0, 'looking': 1.0, 'you': 1.0, 'one': 1.0, 'for': 1.0, 'blurry': 1.0, 'and': 1.0, 'monitor': 1.0, 'money': 1.0, 'buying': 1.0}
Word element => {'with': 1.0, 'wrong': 1.0, 'do': 1.0, 'so': 1.0, 'monitor': 1.0, 'baby': 1.0, 'this': 1.0, 'link': 1.0, 'buy': 1.0, 'internet': 1.0, 'an': 1.0, 'offered': 1.0, 'apartment': 1.0, 'size': 1.0, 'medium': 1.0, 'limited': 1.0, 'close': 1.0, 'not': 3.0, 'heard': 1.0, 'be': 3.0, 'mentioning': 1.0, 'set': 1.0, 'any': 1.0, 'consequence': 1.0, 'to': 3.0, 'pretty': 2.0, 'good': 2.0, 'went': 1.0, 'may': 1.0, 'my': 2.0, 'saw': 1.0, 'did': 1.0, 'fair': 1.0, 'driver': 1.0, 'too': 2.0, 'and': 7.0, 'plugged': 1.0, 'when': 2.0, 'on': 2.0, 'handset': 3.0, 'setting': 1.0, 'some': 1.0, 'out': 1.0, 'camera': 4.0, 'in': 2.0, 'box': 1.0, 'house': 1.0, 'both': 3.0, '60': 1.0, 'today': 1.0, 'battery': 1.0, 'careful': 1.0, 'anything': 1.0, 'without': 1.0, 'got': 1.0, 'a': 5.0, 'small': 1.0, 'immediately': 1.0, 'blocking': 1.0, 'the': 20.0, 'of': 4.0, 'screw': 2.0, 'button': 1.0, 'image': 1.0, 'as': 2.0, 'units': 3.0, 'turned': 1.0, 'fetched': 1.0, 'took': 1.0, 'far': 1.0, 'i': 8.0, 'two': 1.0, 'notice': 1.0, 'at': 1.0, 'is': 6.0, 'more': 1.0, 'door': 1.0, 'unit': 3.0, 'that': 1.0, 'because': 1.0, 'maybe': 1.0, 'larsen': 1.0, 'interfering': 1.0, 'sounds': 1.0, 'will': 1.0, 'sound': 2.0, 'goes': 1.0, 'than': 1.0, 'way': 1.0, 'but': 2.0, 'towards': 1.0, 'no': 1.0, 'press': 1.0, 'pan': 1.0, 'tilt': 1.0, 'only': 1.0, 'function': 1.0, 'they': 1.0, 'between': 1.0, 'sold': 1.0, 'office': 1.0, 'found': 1.0, 'easy': 2.0, 'overall': 2.0, 'very': 1.0, 'face': 1.0, 'install': 1.0, 'range': 2.0, 'lost': 1.0, '520': 1.0, 'claim': 1.0, 'or': 2.0, 'mean': 1.0, 'see': 1.0, 'seems': 1.0, 'tried': 1.0, 'it': 1.0, 'away': 1.0, 'signal': 1.0}
Word element => {'my': 1.0, 'daughter': 1.0, 'for': 1.0, 'another': 1.0, 'buy': 1.0, 'one': 1.0, 'i': 1.0, 'other': 1.0, 'this': 1.0, 'will': 1.0, 'baby': 1.0, 'monitor': 1.0, 'is': 1.0, 'and': 1.0, 'quality': 1.0, 'very': 1.0, 'easy': 1.0, 'superior': 1.0, 'to': 1.0, 'install': 1.0}
Word element => {'bed': 1.0, 'want': 1.0, 'but': 1.0, 'ok': 1.0, 'overall': 1.0, 'would': 1.0, 'were': 1.0, 'if': 2.0, 'check': 1.0, 'about': 1.0, 'worry': 1.0, 'newborn': 1.0, 'luckily': 1.0, 'inside': 1.0, 'blob': 1.0, 'use': 1.0, 'her': 3.0, 'need': 1.0, 'or': 4.0, 'daytime': 1.0, 'from': 3.0, 'part': 1.0, 'vague': 1.0, 'charge': 1.0, 'just': 1.0, 'however': 2.0, 'wished': 1.0, 'agraco': 1.0, 'up': 2.0, 'always': 1.0, 'to': 5.0, 'our': 1.0, 'had': 1.0, 'room': 3.0, 'so': 1.0, 'can': 3.0, 'most': 1.0, 'you': 5.0, 'when': 3.0, 'with': 5.0, 'this': 5.0, 'could': 1.0, 'a': 3.0, 's': 2.0, 'true': 1.0, 'like': 1.0, 'hold': 1.0, 'an': 1.0, 'all': 2.0, 'other': 1.0, 'my': 4.0, 'focus': 1.0, 'unit': 3.0, 'see': 1.0, 'areas': 1.0, 'because': 1.0, 'that': 5.0, 'put': 1.0, 'much': 3.0, 'do': 1.0, 'works': 1.0, 'cannot': 1.0, 'very': 1.0, 'graco': 4.0, 'sound': 1.0, 'surpasses': 1.0, 'quality': 6.0, 'love': 2.0, 'for': 4.0, 'model': 1.0, 'in': 3.0, 'of': 1.0, 'the': 27.0, 'as': 1.0, 'zoom': 1.0, 'toddler': 1.0, 'child': 3.0, 'camera': 2.0, 'video': 5.0, 'his': 1.0, 'around': 2.0, 'digital': 1.0, 'motorola': 6.0, 'through': 1.0, 'good': 1.0, 'side': 2.0, 'she': 1.0, 'baby': 2.0, 'many': 1.0, 't': 4.0, 'further': 1.0, 'and': 7.0, 'across': 2.0, 'down': 1.0, 'talk': 1.0, 'probably': 1.0, 'your': 2.0, 'on': 2.0, 'near': 1.0, 'definitely': 1.0, 'better': 1.0, 'parent': 1.0, 'house': 1.0, 'i': 10.0, 'well': 3.0, 'great': 3.0, 'carrying': 1.0, 'recharges': 1.0, 'does': 1.0, 'than': 1.0, 'not': 1.0, 'is': 10.0, 'at': 1.0, 'monitor': 9.0, 'picture': 2.0, 'fine': 1.0, 'don': 1.0, 'isn': 3.0, 'it': 3.0, 'super': 1.0, 'same': 1.0, 'darker': 1.0, 'closer': 1.0, 'away': 1.0, 'battery': 1.0, 'really': 1.0, 'have': 1.0, 'set': 1.0, 'daughter': 1.0, 'pan': 2.0, 'crib': 4.0, 'outline': 1.0}
Word element => {'more': 1.0, 'any': 1.0, 'bother': 1.0, 'don': 1.0, 'now': 1.0, 'money': 1.0, 'wasn': 1.0, 'purchased': 1.0, 'when': 2.0, 'just': 1.0, 'in': 3.0, 'itself': 1.0, 'did': 1.0, 'improved': 1.0, 'lucky': 1.0, 'quality': 1.0, 'has': 1.0, 'comfort': 1.0, 'technology': 1.0, 'out': 1.0, 'absolutely': 1.0, 'to': 9.0, 'all': 1.0, 'we': 6.0, 't': 4.0, 'going': 1.0, 'on': 2.0, 'months': 2.0, 'happy': 1.0, 'lot': 1.0, 'one': 4.0, 'video': 3.0, 'different': 1.0, 'our': 8.0, 'how': 1.0, 'brand': 1.0, 'fact': 1.0, 'old': 1.0, 'that': 2.0, 'due': 1.0, 'second': 1.0, 'broke': 1.0, 'waste': 1.0, 'is': 2.0, 'around': 2.0, 'its': 2.0, 'research': 2.0, 'few': 2.0, 'this': 4.0, 'wish': 1.0, 'monitor': 6.0, 'picture': 1.0, 'even': 1.0, 'didn': 2.0, 'found': 1.0, 'however': 1.0, 'after': 1.0, 'so': 3.0, 'he': 1.0, 'yet': 1.0, 'love': 1.0, 'far': 1.0, 'and': 5.0, 'sound': 1.0, 'first': 3.0, 'are': 3.0, 'amazing': 1.0, 'crystal': 1.0, 'a': 4.0, 'small': 1.0, 'if': 2.0, 'clear': 1.0, 'pan': 1.0, 'son': 2.0, 'middle': 1.0, 'tilt': 1.0, 'feature': 1.0, 'have': 2.0, 'lets': 1.0, 'us': 1.0, 'you': 3.0, 'night': 2.0, 'monitors': 2.0, 'able': 2.0, 'see': 2.0, 'flips': 1.0, 'way': 2.0, 'communication': 1.0, 'two': 1.0, 'nice': 1.0, 'big': 1.0, 'be': 2.0, 'it': 1.0, 'him': 2.0, 'talk': 1.0, 'enough': 2.0, 'with': 2.0, 'eye': 1.0, 'open': 1.0, 'doing': 1.0, 'the': 8.0, 'of': 1.0, 'but': 2.0, 'carry': 1.0, 'during': 1.0, 'day': 1.0, 'from': 1.0, 'room': 2.0}
Word element => {'adjust': 1.0, 'black': 1.0, 'screen': 2.0, 'time': 1.0, 'day': 1.0, 'between': 1.0, 'rising': 1.0, 'are': 1.0, 'sun': 2.0, 'dark': 1.0, 'until': 1.0, 'nice': 1.0, 'great': 1.0, 'night': 2.0, 'goes': 2.0, 'if': 1.0, 'back': 1.0, 'battery': 1.0, 'no': 1.0, 'bad': 1.0, 'up': 1.0, 'don': 1.0, 'altogether': 1.0, 'color': 1.0, 'one': 1.0, 'different': 1.0, 'daytime': 1.0, 'or': 1.0, 'version': 1.0, 'cadillac': 1.0, 'for': 1.0, 'bright': 1.0, 'went': 1.0, 'that': 1.0, 'knocks': 1.0, 'job': 2.0, 'deal': 1.0, 'the': 15.0, 'fully': 1.0, 'colors': 1.0, 'though': 1.0, 'much': 1.0, 'it': 2.0, 'scheme': 1.0, 'what': 1.0, 'even': 1.0, 'down': 1.0, 'before': 1.0, 'more': 1.0, 'is': 3.0, 'i': 3.0, 'you': 1.0, 'when': 2.0, 'and': 7.0, 'too': 1.0, 'in': 7.0, 'rains': 1.0, 'oh': 2.0, 'storms': 1.0, 'get': 1.0, 'poor': 1.0, 'satellite': 1.0, 'hope': 1.0, 'signal': 2.0, 'power': 1.0, 'does': 2.0, 'building': 1.0, 'than': 1.0, 'vision': 1.0, 'wish': 1.0, 'to': 1.0, 'our': 1.0, 'doors': 1.0, 'out': 3.0, 'be': 1.0, 'better': 1.0, 'we': 1.0, 's': 4.0, 't': 2.0, 'go': 1.0, 'might': 1.0, 'a': 5.0, 're': 1.0, 'house': 1.0, '2': 1.0, 'condo': 1.0, 'can': 2.0, 'but': 2.0, 'complex': 1.0, 'there': 2.0, 'noticed': 1.0, 'interference': 1.0, 'not': 1.0, 'kinda': 1.0}
Word element => {'half': 1.0, 'only': 1.0, 'also': 1.0, 'thumbs': 1.0, 'decent': 1.0, 'isn': 1.0, 'an': 1.0, 'quality': 2.0, 'during': 1.0, 'very': 1.0, 'day': 1.0, 'vision': 1.0, 't': 1.0, 'the': 2.0, 'more': 1.0, 'want': 1.0, 'is': 1.0, 'and': 1.0, 'horrible': 1.0, 'good': 1.0, 'recommend': 1.0, 'battery': 1.0, 'night': 1.0, 'i': 1.0, 'buying': 1.0, 'that': 1.0, 'something': 1.0, 'a': 2.0, 'little': 1.0, 'down': 1.0, 'even': 1.0, 'expensive': 1.0, 'if': 2.0, 'hour': 1.0, 'lasted': 1.0, 'you': 1.0}
Word element => {'for': 1.0, 'good': 1.0, 'very': 1.0, 'can': 1.0, 'met': 1.0, 'see': 1.0, 'effectively': 1.0, 'this': 1.0, 'it': 2.0, 'with': 1.0, 'product': 1.0, 'expectations': 1.0, 'the': 4.0, 'and': 1.0, 'during': 1.0, 'baby': 1.0, 'i': 2.0, 'night': 1.0, 'works': 1.0, 'does': 1.0, 'low': 1.0, 'even': 1.0, 'purpose': 1.0, 'had': 1.0, 'lights': 1.0, 'is': 1.0, 'fine': 1.0, 'really': 1.0}
Word element => {'very': 1.0, 'well': 1.0, 'shipping': 1.0, 'is': 1.0, 'the': 1.0, 'and': 1.0, 'product': 1.0, 'this': 1.0}
Word element => {'expectations': 1.0, 'live': 1.0, '100': 1.0, 'time': 1.0, 'your': 1.0, 'waist': 1.0, 'do': 1.0, 'linen': 1.0, 'reflections': 1.0, 'really': 1.0, 'gets': 1.0, 'white': 1.0, 'just': 2.0, 'objects': 1.0, 'broken': 2.0, 'work': 1.0, 'totally': 1.0, 'anything': 1.0, 'face': 1.0, 'unit': 1.0, 'you': 5.0, 'when': 3.0, 'it': 4.0, 'because': 1.0, 'does': 2.0, 'not': 4.0, 'contrast': 1.0, 'practically': 1.0, 'low': 1.0, 'black': 1.0, 'great': 1.0, 'modes': 1.0, 'big': 1.0, 'on': 3.0, 'make': 1.0, 'movements': 1.0, 'case': 1.0, 'closed': 1.0, 'too': 1.0, 'and': 5.0, 'light': 1.0, 'bright': 1.0, 'by': 1.0, '2': 1.0, 'leds': 3.0, 'performance': 1.0, 'sure': 1.0, 'stated': 1.0, 'i': 2.0, 'at': 1.0, 'is': 4.0, 'outside': 1.0, 'to': 2.0, 'all': 1.0, 'dark': 2.0, 'getting': 1.0, 'shades': 1.0, 'they': 1.0, 'ir': 1.0, 'are': 4.0, 'full': 2.0, 'or': 2.0, 'see': 4.0, 'off': 2.0, 'cannot': 1.0, 'like': 1.0, 'm': 1.0, 'in': 4.0, 'cases': 1.0, 'we': 1.0, 'a': 1.0, 's': 2.0, 'have': 1.0, 'simply': 1.0, 'only': 1.0, 'crystal': 1.0, 'old': 1.0, 'summer': 2.0, 'though': 1.0, 'stand': 1.0, 'room': 1.0, 'charger': 1.0, 'motorola': 2.0, 'far': 1.0, 'set': 1.0, 'has': 1.0, 'them': 1.0, 'many': 1.0, 'baby': 1.0, 'less': 1.0, 'up': 2.0, 'side': 2.0, 'still': 1.0, 'clear': 1.0, 'as': 1.0, 'crazy': 1.0, 'can': 2.0, 'so': 2.0, 'comparison': 1.0, 'head': 1.0, 'appears': 1.0, 'even': 2.0, 'monitor': 1.0, 'picture': 1.0, 'expressions': 1.0, 'dot': 1.0, 'from': 2.0, 'the': 5.0, 'of': 2.0, 'screen': 1.0, 'for': 1.0, 'else': 1.0, 'everything': 1.0}
Word element => {'being': 1.0, 'clarity': 1.0, 'cordless': 1.0, 'and': 2.0, 'waking': 1.0, 'as': 1.0, 'described': 1.0, 'awesome': 1.0, 'in': 1.0, 'love': 1.0, 'lets': 1.0, 'without': 1.0, 'it': 1.0, 'this': 1.0, 'is': 3.0, 'on': 1.0, 'control': 1.0, 'great': 2.0, 'the': 1.0, 'i': 1.0, 'just': 1.0, 'u': 1.0, 'peak': 1.0, 'them': 1.0}
Word element => {'buy': 1.0, 'gets': 1.0, 'cell': 1.0, 'or': 1.0, 'camera': 1.0, 'signal': 1.0, 'whenever': 2.0, 'six': 2.0, 'i': 1.0, 'about': 1.0, 'baby': 2.0, 'ok': 1.0, 'worked': 1.0, 'make': 1.0, 'was': 1.0, 'boy': 1.0, 'phone': 1.0, 'use': 1.0, 'got': 1.0, 'then': 1.0, 'weeks': 2.0, 'can': 1.0, 'but': 1.0, 'dont': 1.0, 'this': 1.0, 'once': 1.0, 'shower': 1.0, 'near': 1.0, 'excited': 1.0, 'with': 1.0, 'only': 2.0, 'were': 1.0, 'to': 1.0, 'our': 2.0, 'terrible': 1.0, 'monitor': 2.0, 'and': 1.0, 'pin': 1.0, 'here': 1.0, 'giving': 1.0, 'for': 3.0, 't': 1.0, 'we': 1.0, 'a': 4.0, 'broken': 1.0, 'charging': 2.0, 'm': 1.0, 'not': 1.0, 'find': 1.0, 'because': 1.0, 'review': 1.0, 'lasted': 1.0, 'is': 1.0, 'also': 1.0, 'it': 8.0, 'stopped': 1.0, 'flawed': 1.0, 'the': 3.0, 'beep': 1.0, 'shrill': 1.0}
Word element => {'for': 1.0, 'camera': 1.0, 'the': 3.0, 'is': 1.0, 'expected': 1.0, 'not': 1.0, 'i': 1.0, 'does': 1.0, 'picture': 1.0, 'as': 1.0, 'very': 1.0, 'works': 1.0, 'it': 1.0, 'price': 1.0, 'clear': 1.0, 'but': 1.0, 'job': 1.0, 'good': 1.0}
Word element => {'delivery': 1.0, 'phone': 1.0, 'ing': 1.0, 'fb': 1.0, 'or': 1.0, 'bird': 1.0, '0fast': 1.0, 'flappy': 1.0, 'if': 1.0, 'watch': 1.0, 'separate': 1.0, 'mommy': 1.0, 'setup': 1.0, 'small': 1.0, 't': 1.0, 's': 1.0, 'this': 1.0, 'is': 2.0, 'playing': 1.0, 'the': 7.0, 'great': 3.0, 'baby': 3.0, 'features': 1.0, 'almost': 1.0, 'works': 1.0, 'price': 1.0, 'both': 1.0, 'it': 3.0, 'with': 1.0, 'product': 1.0, 'for': 2.0, 'and': 4.0, 'reviewing': 1.0, 'proof': 1.0, 'many': 1.0, 'take': 1.0, 'easy': 2.0, 'our': 1.0, 'to': 2.0, 'like': 1.0, 'audio': 1.0, 'on': 5.0, 'your': 2.0, 'portable': 1.0, 'dummy': 1.0, 'anywhere': 1.0, 'eye': 1.0, 'display': 2.0, 'also': 1.0, 'turn': 1.0, 'in': 1.0, 'because': 2.0, 'you': 3.0, 'can': 2.0, 're': 1.0, 'off': 1.0, 'house': 1.0, 'an': 1.0, 'pan': 1.0, 'still': 1.0, 'keep': 1.0, 'eagle': 1.0, 'after': 1.0, 'products': 1.0, 'feature': 1.0, 'i': 1.0, 'one': 1.0, 'bought': 1.0, 'decided': 1.0}
Word element => {'well': 1.0, 'features': 1.0, 'key': 1.0, 'with': 1.0, 'overall': 1.0, 'low': 1.0, 'have': 1.0, 'they': 1.0, 'that': 2.0, 'batteries': 1.0, 'also': 1.0, 'space': 1.0, 'in': 1.0, 'anywhere': 1.0, 'essentially': 1.0, 'feet': 1.0, 'smaller': 1.0, 'so': 1.0, '520': 1.0, 'of': 1.0, 'range': 1.0, 'people': 1.0, 'works': 1.0, 'alert': 1.0, 'both': 2.0, 'looks': 1.0, 'it': 6.0, 'great': 2.0, 'maybe': 1.0, 'i': 3.0, 'old': 1.0, 'night': 3.0, 'defective': 1.0, 'believe': 1.0, 'motorola': 1.0, 'clearly': 1.0, 'mbp26': 1.0, 'how': 1.0, 'step': 1.0, 'wireless': 1.0, 'their': 1.0, 'from': 1.0, 'day': 1.0, 'why': 1.0, 'monitor': 2.0, 'and': 2.0, 'see': 1.0, 'my': 1.0, 'you': 1.0, 't': 3.0, 'a': 4.0, 's': 3.0, 'for': 2.0, 'model': 1.0, 'up': 1.0, 'don': 1.0, 'like': 1.0, 'know': 1.0, 'such': 1.0, 'some': 1.0, 'is': 1.0, 'say': 1.0, 'can': 3.0, 'work': 3.0, 'an': 2.0, 'got': 2.0, 'infrared': 1.0, 'this': 1.0, 'vision': 1.0, 'doesn': 1.0, 'was': 1.0}
Word element => {'baby': 1.0, 'switch': 1.0, 'review': 1.0, 'crappy': 1.0, 'add': 1.0, 'like': 1.0, 'other': 1.0, 'hands': 1.0, 'without': 1.0, 'said': 1.0, 'camera': 1.0, 'on': 5.0, 'beats': 1.0, 'here': 2.0, '5': 1.0, 'room': 1.0, '1am': 1.0, 'costs': 1.0, 'into': 1.0, 'highlight': 1.0, 'the': 12.0, 'of': 2.0, 'no': 3.0, 'amazon': 1.0, 'more': 1.0, 'skype3': 1.0, 'being': 1.0, 'flying': 1.0, 'stars': 1.0, 'colors': 1.0, 'and': 5.0, 'about': 1.0, 'play': 1.0, 'walk': 1.0, 'motorola': 2.0, 'own': 1.0, 'move': 1.0, 'could': 2.0, 'a': 1.0, 't': 4.0, 'go': 1.0, 'that': 6.0, 'because': 1.0, 'having': 1.0, 'than': 1.0, 'were': 1.0, 'lorex': 3.0, 'it': 2.0, 'with': 2.0, 'date': 1.0, 'this': 6.0, 'at': 1.0, 'is': 5.0, 'vision': 2.0, 'stoked': 1.0, 'display2': 1.0, 'sub': 1.0, 'junk': 1.0, '2': 1.0, 'write': 1.0, 'but': 1.0, 'so': 1.0, 'constantly': 1.0, 'can': 1.0, 'money': 1.0, 'my': 5.0, 'was': 2.0, 'high': 1.0, 'to': 3.0, 'monitor': 3.0, 'picture': 1.0, 'quality': 1.0, 'gave': 1.0, 'total': 1.0, 'par': 1.0, 'half': 1.0, 'checked': 1.0, 'temperature': 1.0, 'i': 6.0, 'daughters': 1.0, 'well': 1.0, 'size': 1.0, 'have': 2.0, 'why': 2.0, 'following': 1.0, 'would': 2.0, 'features1': 1.0, 'waste': 1.0, 'down': 1.0, 've': 1.0, 'lullabies3': 1.0, 'connect': 1.0, 'came': 1.0, 'via': 1.0, 'time': 1.0, 'doesn': 2.0, 'displayand': 1.0, 'list': 1.0, 'don': 1.0, 'your': 1.0, 'idea': 1.0, 'unless': 1.0, 'monitors': 2.0, 'things': 1.0, 'night': 2.0, 'you': 1.0, 'get': 1.0, 'reviews': 1.0, 'never': 1.0, 'out': 2.0}
Word element => {'speaker': 1.0, 'louder': 1.0, 'laughable': 1.0, 'further': 1.0, 'one': 1.0, 'about': 1.0, 'sight': 1.0, 'secure': 1.0, 'room': 2.0, 'no': 3.0, 'plain': 1.0, 's': 3.0, 'go': 2.0, 'on': 1.0, 'lcd': 1.0, 'if': 1.0, 'want': 1.0, 'hah': 1.0, 'connection': 3.0, '520': 1.0, 'ability': 1.0, 'does': 1.0, 'than': 1.0, 'the': 6.0, 'its': 2.0, '34': 14.0, 'that': 3.0, 'you': 5.0, 'manner': 1.0, 'gives': 1.0, 'i': 5.0, 'say': 1.0, 'more': 1.0, 'this': 4.0, 'are': 1.0, 'first': 1.0, 'thought': 1.0, 'it': 2.0, 'outside': 1.0, 'res': 1.0, 'your': 1.0, 'any': 1.0, 'job': 1.0, 'to': 4.0, 'do': 2.0, 'match': 1.0, 'messages': 1.0, 'see': 1.0, 'unit': 3.0, 'due': 1.0, 'screen': 3.0, 'summer': 3.0, 'would': 1.0, 'nintendo': 1.0, 'in': 4.0, 'sound': 1.0, 'will': 1.0, 'optical': 2.0, 'products': 1.0, 'camera': 2.0, 'child': 1.0, 'video': 1.0, 'but': 2.0, 'get': 3.0, 'two': 1.0, 'beneath': 1.0, 'and': 4.0, 'not': 3.0, 'directly': 1.0, 'my': 1.0, 'flat': 1.0, 'son': 1.0, 'pan': 2.0, 'with': 2.0, 'signal': 1.0, 'specs': 1.0, 'like': 1.0, 'better': 3.0, 'giant': 1.0, 'had': 1.0, 'blur': 1.0, 're': 1.0, 'ft': 1.0, 'both': 1.0, 'house': 1.0, 'watch': 1.0, 'is': 1.0, 'at': 1.0, 'total': 1.0, 'alerts': 1.0, 'ever': 1.0, 'an': 1.0, 'close': 1.0, 'original': 1.0, 'a': 7.0, 'imagine': 1.0, 'story': 1.0, 'game': 1.0, 'we': 3.0, 'then': 1.0, 'for': 1.0, 'range': 1.0, 'live': 1.0, '1850sqft': 1.0, 'after': 1.0, 'big': 1.0, 'owned': 1.0, 'give': 1.0, 'there': 1.0, 'looking': 1.0, 'reason': 1.0, 'should': 1.0, 'them': 1.0, 'decided': 1.0}
Word element => {'other': 1.0, 'rate': 1.0, 'three': 1.0, 'views': 1.0, 'different': 1.0, 'it': 2.0, 'also': 1.0, 'bulky': 1.0, 'verses': 1.0, 'easy': 2.0, 'of': 4.0, 'crib': 1.0, 'size': 1.0, 'helpful': 1.0, 'loud': 1.0, 'red': 1.0, 'with': 1.0, 'appear': 1.0, 'former': 1.0, 'around': 1.0, 'more': 1.0, 'move': 1.0, 'cried': 1.0, 'louder': 1.0, 'liked': 3.0, 'angle': 1.0, 'well': 1.0, 'first': 1.0, 'camera': 1.0, 'cry': 1.0, 'in': 1.0, 'needs': 1.0, 'its': 1.0, 'recommend': 1.0, 'was': 3.0, 'ready': 1.0, 'highly': 1.0, 'really': 2.0, 'every': 1.0, 'indicating': 1.0, 'use': 1.0, 'thought': 1.0, 'had': 1.0, 'purchased': 1.0, 'and': 6.0, 'perfectly': 1.0, 'very': 1.0, 'monitor': 6.0, 'baby': 3.0, 'night': 1.0, 'feature': 1.0, 'two': 1.0, 'i': 9.0, 'mom': 3.0, 'charge': 1.0, 'loves': 1.0, 'are': 1.0, 'helped': 1.0, 'simplicity': 1.0, 'you': 1.0, 'a': 2.0, 'we': 1.0, 'go': 1.0, 't': 1.0, 's': 1.0, 'the': 11.0, 'basically': 1.0, 'large': 1.0, 'just': 1.0, 'wish': 1.0, 'this': 5.0, 'room': 1.0, 'able': 1.0, 'small': 1.0, 'have': 1.0, 'unit': 1.0, 'see': 1.0, 'my': 4.0, 'on': 1.0, 'how': 2.0, 'adjust': 2.0, 'product': 2.0, 'lights': 2.0, 'for': 4.0, 'as': 2.0, 'any': 2.0, 'to': 5.0, 'our': 1.0, '3rd': 1.0, 'don': 1.0, 'child': 1.0, 'settings': 1.0, 'would': 3.0}
Word element => {'friend': 1.0, 'to': 1.0, 'definitely': 1.0, 'would': 1.0, 'low': 1.0, 'very': 1.0, 'it': 3.0, 'recommend': 1.0, 'good': 1.0, 'cost': 2.0, 'what': 1.0, 'x': 1.0, 'benefit': 1.0, 'i': 1.0, 'promises': 1.0, 'with': 1.0, 'delivers': 1.0, 'a': 2.0}
Word element => {'get': 1.0, 'expect': 1.0, 'suggested': 1.0, 'wouldn': 1.0, 'probably': 1.0, 'about': 1.0, 'home': 1.0, 'although': 1.0, 'though': 1.0, 'part': 1.0, 'most': 1.0, 'price': 1.0, 'video': 1.0, 'bit': 1.0, 'upstairs': 2.0, 'expected': 2.0, 'sale': 1.0, 'really': 1.0, 's': 5.0, 'a': 4.0, 't': 4.0, 'ago': 1.0, 'wasn': 2.0, 'nothing': 1.0, 'out': 1.0, 'start': 1.0, 'them': 1.0, 'quality': 3.0, 'you': 3.0, 'night': 2.0, 'm': 3.0, 'd': 4.0, 'barely': 1.0, 'buy': 1.0, 'dogs': 2.0, 'have': 2.0, 'hear': 1.0, 'just': 2.0, 'not': 4.0, 'would': 1.0, 'my': 2.0, 'neat': 1.0, 'eye': 1.0, 'down': 1.0, 'when': 3.0, 'what': 2.0, 'had': 1.0, 'works': 2.0, 'much': 1.0, 'retail': 1.0, 'i': 16.0, 'feature': 1.0, 'from': 3.0, 'housing': 1.0, 'meh': 1.0, 'hoped': 1.0, 'functionality': 1.0, 'decided': 1.0, 'bought': 1.0, 'than': 1.0, 'way': 1.0, 'years': 1.0, 'let': 1.0, 'be': 3.0, 'was': 1.0, 'rough': 1.0, 'to': 7.0, 'as': 2.0, 'write': 1.0, 'but': 5.0, 'so': 1.0, 'can': 2.0, 'with': 1.0, 'it': 12.0, 'this': 4.0, 'keep': 1.0, 'on': 3.0, 'make': 1.0, 'up': 1.0, 'motorola': 1.0, 'real': 1.0, 'top': 1.0, 'the': 11.0, 'of': 1.0, 'an': 1.0, 'other': 1.0, 'reviewers': 1.0, 'mentioned': 1.0, 'vision': 2.0, 'is': 3.0, 'say': 1.0, 'worth': 1.0, 'attempt': 1.0, 'almost': 1.0, 'impossible': 1.0, 'mean': 1.0, 'outright': 1.0, 'use': 2.0, 'see': 2.0, 'thing': 1.0, 'using': 1.0, 'good': 1.0, 'which': 2.0, 'technology': 1.0, 'for': 4.0, 'supposed': 1.0, 'sure': 1.0, 'if': 2.0, 'are': 1.0, 'bad': 1.0, 'even': 1.0, 'goggles': 1.0, 'kid': 1.0, 'ones': 1.0, 'were': 1.0, 'standard': 1.0, 'better': 1.0, 'and': 2.0, 'because': 1.0, 'that': 2.0, '20': 1.0, 'pan': 1.0}
Word element => {'me': 1.0, 'aorund': 1.0, 'no': 1.0, 'environment': 1.0, 'to': 1.0, 'does': 1.0, 'i': 2.0, 'when': 1.0, 'the': 1.0, 'support': 1.0, 'my': 1.0, 'but': 1.0, 'while': 1.0, 'hear': 2.0, 'like': 1.0, 'would': 1.0, 'not': 1.0, 'this': 1.0, 'it': 2.0, 'voice': 1.0, 'can': 1.0, 'well': 1.0, 'child': 1.0, 'voices': 1.0, 'cries': 1.0, 'there': 1.0, 'is': 1.0}
Word element => {'hard': 1.0, 'mind': 1.0, 'security': 1.0, 'honest': 1.0, 'difference': 1.0, 'splitting': 1.0, 'overall': 1.0, '4': 1.0, 'will': 1.0, 'down': 1.0, 'hands': 1.0, '5': 1.0, 'stars': 3.0, 'give': 2.0, 'passionately': 1.0, 'darkness': 1.0, 'recommend': 1.0, 'person': 1.0, 'or': 1.0, 'elderly': 1.0, 'big': 1.0, 'due': 1.0, 'peace': 1.0, 'made': 1.0, 'an': 3.0, 'figure': 2.0, 'almost': 1.0, 'if': 4.0, 'stay': 1.0, 'custom': 1.0, 'admitting': 1.0, 'than': 2.0, 'begun': 1.0, 'any': 1.0, 'assorted': 1.0, 'care': 1.0, 'already': 1.0, 'connected': 1.0, 'sound': 1.0, 'help': 1.0, 'how': 1.0, 'read': 1.0, 'measure': 1.0, 'absolute': 1.0, 'each': 1.0, 'hoping': 1.0, 'to': 19.0, 'the': 13.0, 'attention': 1.0, 'having': 1.0, 'baby': 1.0, 'disabled': 1.0, 'ease': 1.0, 'assumed': 1.0, 'up': 2.0, 'change': 1.0, 'lucy': 1.0, 'in': 6.0, 'easy': 1.0, 'could': 2.0, 'vivid': 1.0, 'a': 8.0, 'complete': 2.0, 'most': 1.0, 'you': 4.0, 'things': 1.0, 'night': 2.0, 'seen': 1.0, 'taken': 1.0, 'set': 1.0, 'given': 2.0, 'average': 2.0, 'use': 1.0, 'her': 3.0, 'wonderful': 2.0, 'ultimately': 1.0, 'of': 4.0, 'old': 1.0, 'never': 1.0, 'found': 1.0, 'have': 8.0, 'half': 1.0, 'both': 3.0, 'heavy': 1.0, 'above': 1.0, 'enough': 1.0, 'work': 1.0, 'so': 7.0, 'going': 2.0, '2': 1.0, 'happens': 1.0, 'but': 3.0, 'fail': 1.0, 'i': 16.0, 'probably': 1.0, 'strobing': 1.0, 'before': 1.0, 'motorola': 2.0, 'as': 1.0, 'cats': 2.0, 'working': 1.0, 'for': 9.0, 'combined': 1.0, 'product': 1.0, 'it': 9.0, 'be': 3.0, '3': 1.0, 'departments': 1.0, 'usage': 1.0, 'loyalty': 1.0, 'brand': 1.0, 'needs': 1.0, 'wife': 4.0, 'out': 2.0, 'hears': 1.0, 'who': 3.0, 'from': 1.0, 'while': 1.0, 'deal': 1.0, 'make': 1.0, 'she': 1.0, 'me': 6.0, 'disabilities': 1.0, 'on': 4.0, 'serious': 1.0, 'stuff': 1.0, 'different': 1.0, 'not': 7.0, 'best': 1.0, 'with': 6.0, 'picture': 1.0, 'conditions': 1.0, 'like': 1.0, 'fine': 2.0, 'separate': 1.0, 'then': 1.0, 'can': 3.0, 'is': 16.0, 'fanatical': 1.0, 'at': 3.0, 'that': 1.0, 'all': 5.0, 'surrounded': 1.0, '20': 2.0, 'since': 2.0, 'pounds': 1.0, 'now': 2.0, 'problem': 1.0, 'more': 2.0, 'health': 1.0, 'sight': 2.0, 'actually': 1.0, 'room': 2.0, 'my': 9.0, 'issues': 1.0, 'just': 4.0, 'and': 7.0, 'ethel': 1.0, 'intended': 1.0, 'lose': 1.0, 'times': 1.0, 'bright': 1.0, 'after': 1.0, 'by': 2.0, 'offers': 1.0, 'colors': 1.0, 'lasting': 1.0, '30': 1.0, 'instruction': 1.0, 'about': 1.0, 'minutes': 1.0, 'followed': 1.0, 'monitor': 1.0, 'becoming': 1.0, 'extremely': 1.0, 'this': 13.0, 'eyes': 2.0, 'sick': 1.0, 'suppose': 1.0, 'essentially': 1.0, 'am': 3.0, 'migraine': 1.0, 'trouble': 2.0, 'able': 1.0, 'get': 3.0, 'see': 1.0, 'until': 1.0, 'enjoy': 1.0, 'labs': 1.0, 'attend': 1.0, 'do': 1.0, 'hurry': 1.0, 'what': 2.0, 'honestly': 1.0, 'bed': 2.0, 'when': 1.0, 'yell': 1.0, 'lifting': 1.0, 'without': 1.0, 'works': 1.0, 'camera': 1.0, 'acceptable': 1.0, 'would': 4.0, 'life': 2.0, 'dim': 1.0, 'unable': 1.0, 'light': 1.0, 'reason': 1.0, 'next': 2.0, 'has': 1.0, 'router': 2.0, 'dead': 1.0, 'sleep': 3.0, 'loud': 1.0, 'police': 1.0, 'whatever': 1.0, 'placement': 1.0, 'etc': 1.0, 'yet': 1.0, 'save': 1.0, 'neurology': 1.0, 'wrong': 1.0, 'need': 1.0, 'also': 1.0, 'comes': 1.0, 'better': 2.0, 'come': 2.0, 'trust': 1.0, 'listening': 1.0}
Word element => {'you': 1.0, 'thank': 1.0, 'about': 1.0, 'telling': 1.0, 'highly': 1.0, 'used': 1.0, 'even': 1.0, 'ive': 1.0, 'recommend': 1.0, 'yogurt': 1.0, 'sauces': 1.0, 'lunches': 1.0, 'variety': 1.0, 'hold': 1.0, 'brush': 1.0, 'never': 1.0, 'great': 2.0, 'these': 2.0, 'the': 3.0, 'mommy': 1.0, 'problem': 2.0, 'friends': 1.0, 'bottle': 1.0, 'so': 1.0, 'kept': 1.0, 'they': 2.0, 'free': 1.0, 'off': 1.0, 'or': 2.0, 'thats': 1.0, 'with': 2.0, 'have': 1.0, 'coming': 1.0, 'daughter': 1.0, 'reusable': 1.0, 'too': 1.0, 'and': 4.0, 'had': 1.0, 'all': 1.0, 'to': 1.0, 'are': 3.0, 'top': 1.0, 'occasionally': 1.0, 'fruit': 3.0, 'pouch': 1.0, 'for': 2.0, 'product': 2.0, 'them': 3.0, 'out': 1.0, 'a': 6.0, 'dont': 1.0, 'leak': 1.0, 'nearly': 1.0, 'up': 1.0, 'of': 2.0, 'open': 1.0, 'not': 2.0, 'because': 1.0, 'totally': 1.0, 'my': 3.0, 'mess': 1.0, 'i': 2.0, 'squeezes': 1.0, 'but': 1.0, 'clean': 1.0, 'different': 1.0, 'her': 1.0, 'lol': 1.0, 'easy': 1.0}
Word element => {'mine': 1.0, 'of': 1.0, 'friend': 1.0, 'bottom': 1.0, 'from': 1.0, 'probably': 1.0, 'will': 1.0, 'don': 1.0, 'unfortunately': 1.0, 'recommended': 1.0, 'easier': 1.0, 'lot': 1.0, 'buy': 1.0, 'extra': 1.0, 'kind': 1.0, 'easy': 1.0, 'how': 1.0, 'love': 1.0, 'one': 1.0, 'them': 1.0, 'or': 1.0, 'old': 1.0, 'year': 1.0, 'worked': 1.0, 'open': 1.0, 'and': 1.0, 'squeezer': 1.0, 'on': 1.0, 'hoping': 1.0, 'to': 1.0, 'had': 1.0, 'replace': 1.0, 'some': 1.0, 'these': 1.0, 'hands': 1.0, 'the': 3.0, 'they': 4.0, 'would': 2.0, 'pouches': 1.0, 'i': 5.0, 'two': 1.0, 'are': 1.0, 'my': 1.0, 're': 1.0, 'have': 1.0, 'a': 2.0, 'we': 1.0, 't': 2.0, 'go': 2.0, 'but': 2.0, 'were': 1.0, 'busy': 1.0, 'difficult': 1.0, 'fill': 2.0, 'got': 1.0, 'didn': 1.0, 'that': 2.0, 'loves': 1.0, 'been': 1.0, 'when': 1.0, 'alright': 1.0, 'easily': 1.0, 'if': 1.0, 'it': 1.0}
Word element => {'a': 1.0, 'with': 1.0, 'have': 1.0, 'should': 1.0, 'of': 1.0, 'funnel': 1.0, 'bottom': 1.0, 'hard': 1.0, 'from': 1.0, 'to': 1.0, 'it': 1.0, 'loads': 1.0, 'load': 1.0, 'food': 1.0, 'small': 1.0, 'the': 2.0, 'come': 1.0, 'into': 1.0, 'side': 1.0, 'package': 1.0, 'instead': 1.0}
Word element => {'it': 1.0, 'old': 1.0, 'month': 1.0, '7': 1.0, 'product': 1.0, 'loved': 1.0, 'my': 1.0, 'great': 1.0, 'and': 1.0, 'shipping': 1.0, 'fast': 1.0}
Word element => {'realize': 1.0, 'just': 1.0, 'be': 1.0, 'definitely': 1.0, 'side': 1.0, 'either': 1.0, 'design': 1.0, 'pouch': 1.0, 'needs': 1.0, 'bit': 1.0, 'quite': 1.0, 'fight': 1.0, 'with': 3.0, 'six': 1.0, 'once': 1.0, 'of': 3.0, 'five': 1.0, 'works': 1.0, 'only': 1.0, 'able': 1.0, 'were': 1.0, 'well': 1.0, 'have': 1.0, 'zipper': 3.0, 'one': 1.0, 'product': 2.0, 'for': 2.0, 'recommend': 1.0, 'was': 1.0, 'yogurt': 1.0, 'applesauce': 1.0, 'else': 1.0, 'hold': 1.0, 'or': 1.0, 'good': 1.0, 'these': 1.0, 'place': 1.0, 'the': 11.0, 'great': 2.0, 'reusable': 1.0, 'and': 3.0, 'are': 2.0, 'pouches': 2.0, 'highly': 1.0, 'every': 1.0, 'way': 1.0, 'wife': 1.0, 'they': 2.0, 'double': 1.0, 'lips': 1.0, 'in': 4.0, 'a': 2.0, 'we': 2.0, 's': 1.0, 'might': 1.0, 'pour': 1.0, 'on': 1.0, 'put': 1.0, 'except': 1.0, 'whatever': 1.0, 'both': 1.0, 'there': 1.0, 'into': 1.0, 'that': 3.0, 'still': 1.0, 'son': 1.0, 'better': 1.0, 'open': 2.0, 'he': 1.0, 'it': 1.0, 'more': 1.0, 'is': 2.0, 'but': 2.0, 'work': 1.0, 'food': 1.0, 'can': 1.0, 'as': 1.0, 'our': 1.0, 'to': 4.0, 'out': 1.0, 'unable': 1.0, 'bad': 1.0, 'may': 1.0, 'fact': 1.0, 'my': 1.0, 'news': 2.0, 'i': 2.0, 'you': 2.0, 'barely': 1.0}
Word element => {'recommend': 1.0, 'away': 1.0, 'accidentally': 1.0, 'gets': 1.0, 'cringe': 1.0, 'also': 1.0, 'effective': 1.0, 'be': 1.0, 'enough': 1.0, 'cleaning': 1.0, 'while': 1.0, 'make': 1.0, 'help': 1.0, 'thrown': 1.0, 'don': 1.0, 'up': 2.0, 'i': 5.0, 'cheap': 1.0, 'like': 1.0, 'hold': 1.0, 'lunch': 1.0, 'spout': 1.0, 'bag': 3.0, '5': 1.0, 'a': 4.0, 'maneuver': 1.0, 'me': 1.0, 'my': 2.0, 'last': 1.0, 'hands': 2.0, 'of': 2.0, 'the': 5.0, 'little': 3.0, 'very': 1.0, 'their': 2.0, 'transparent': 1.0, 'big': 1.0, '1': 3.0, 'great': 1.0, 'zip': 1.0, 'found': 1.0, 'these': 3.0, 'they': 4.0, 'seal': 1.0, 'have': 3.0, 'to': 6.0, 'all': 1.0, 'our': 1.0, 'get': 1.0, 'and': 8.0, 'one': 1.0, 'happy': 1.0, 'too': 1.0, 'ease': 1.0, 'definitely': 2.0, '3': 1.0, 'strong': 1.0, 'ounces': 1.0, 'pouches': 1.0, 'angles': 1.0, 'after': 1.0, 'both': 1.0, '2yrs': 2.0, 'for': 1.0, 'love': 2.0, 'actually': 1.0, 'cost': 1.0, 't': 3.0, 'fit': 1.0, 'them': 4.0, 'eases': 1.0, 'not': 2.0, 'food': 1.0, 'so': 3.0, 'can': 2.0, 'but': 1.0, 'out': 1.0, 'couple': 1.0, 'do': 1.0, 'it': 1.0, 'themselves': 1.0, 'in': 2.0, 'funnel': 1.0, 'with': 1.0, 'pockets': 1.0, 'diaper': 1.0, 'leak': 1.0, 'kids': 1.0, 'box': 1.0, 'that': 3.0, 'durable': 1.0, 'open': 1.0, 'hard': 1.0, 'are': 2.0, 'first': 1.0, 'uses': 1.0, 'doesn': 1.0, 'won': 1.0, 'allow': 1.0, 'curious': 1.0, 'inside': 1.0, 'had': 1.0, 'no': 1.0, 'problem': 1.0, 'filling': 1.0, 'handle': 1.0, 'at': 1.0, 'is': 2.0, 'see': 1.0, 'still': 1.0, 'if': 2.0, 'there': 1.0, 'anything': 1.0, 'miss': 1.0}
Word element => {'point': 1.0, 'which': 1.0, 'reuse': 1.0, 'able': 1.0, 'be': 1.0, 'won': 1.0, 'purchase': 1.0, 'work': 1.0, 'much': 1.0, 'way': 1.0, 'are': 1.0, 'near': 1.0, 'is': 1.0, 'didn': 1.0, 'that': 1.0, 'there': 1.0, 'spread': 1.0, 'tip': 1.0, 'with': 1.0, 'hard': 1.0, 'it': 1.0, 'disappointing': 1.0, 'stuck': 1.0, 'remaining': 1.0, 'first': 1.0, 'spoon': 1.0, 'really': 1.0, 'sauce': 1.0, 'bag': 2.0, 'wanted': 1.0, 'funnel': 1.0, 'clean': 2.0, 'getting': 1.0, 'cleaning': 1.0, 'them': 3.0, 'tried': 1.0, 'very': 1.0, 'to': 7.0, 'as': 1.0, 'too': 1.0, 'and': 6.0, 'love': 1.0, 'for': 1.0, 'frosting': 1.0, 'small': 2.0, 'rinsed': 1.0, 'was': 4.0, 'unfortunately': 1.0, 're': 1.0, 'difficult': 1.0, 'just': 2.0, 't': 2.0, 'a': 7.0, 'they': 1.0, 'some': 1.0, 'these': 3.0, 'two': 1.0, 'i': 5.0, 'mess': 1.0, 'fill': 3.0, 'this': 1.0, 'tines': 1.0, 'lost': 1.0, 'about': 1.0, 'out': 3.0, 'third': 1.0, 'eacute': 1.0, 'spout': 1.0, 'of': 2.0, 'the': 5.0, 'pur': 1.0, 'e': 1.0, 'put': 1.0, 'in': 1.0, 'dishwasher': 1.0, 'wash': 1.0, 'over': 1.0}
Word element => {'child': 1.0, 'next': 1.0, 'these': 1.0, 'using': 1.0, 'be': 1.0, 'will': 1.0, 'open': 1.0, 'once': 1.0, 'brush': 1.0, 'bottle': 1.0, 'so': 1.0, 'i': 1.0, 'there': 1.0, 'available': 1.0, 'again': 1.0, 'you': 2.0, 'often': 1.0, 'food': 2.0, 'can': 2.0, 'fill': 1.0, 'significantly': 1.0, 'for': 2.0, 'expensive': 1.0, 'than': 1.0, 'go': 1.0, 'other': 1.0, 'pouches': 1.0, 'in': 1.0, 'would': 1.0, 'ren': 1.0, 'with': 1.0, 'this': 1.0, 'own': 1.0, 'jarred': 1.0, 'less': 1.0, 'the': 3.0, 'and': 2.0, 'baby': 2.0, 'them': 2.0, 'clean': 1.0, 'just': 1.0, 'not': 1.0, 'zipper': 1.0, 'sale': 1.0, 'have': 1.0, 'was': 1.0, 'take': 1.0, 'your': 2.0, 'put': 1.0, 'on': 1.0, 'to': 2.0, 'our': 2.0, 'difficult': 1.0, 'son': 1.0, 'loved': 1.0, 'use': 1.0, 'feeding': 1.0, 'himself': 1.0, 'extremely': 1.0, 'get': 1.0, 'easy': 1.0}
Word element => {'choking': 1.0, 'make': 1.0, 'so': 1.0, 'lid': 1.0, 'because': 1.0, 'is': 1.0, 'stars': 1.0, 'wish': 1.0, '5': 1.0, 'little': 1.0, 'give': 1.0, 'didn': 1.0, 'reason': 1.0, 'pouches': 1.0, 'clean': 1.0, 'fear': 1.0, 'own': 1.0, 'my': 2.0, 'are': 1.0, 'was': 1.0, 'to': 2.0, 'being': 1.0, 'able': 1.0, 'refill': 1.0, 'me': 1.0, 'and': 1.0, 'one': 1.0, 'love': 1.0, 'wouldn': 1.0, 'only': 1.0, 'it': 4.0, 'money': 1.0, 'saves': 1.0, 'i': 3.0, 'us': 1.0, 'a': 1.0, 'on': 1.0, 'ton': 1.0, 'of': 2.0, 't': 2.0, 'the': 2.0, 'these': 1.0, 'fill': 1.0, 'bigger': 1.0, 'easy': 1.0}
Word element => {'else': 1.0, 'anywhere': 1.0, 'pillow': 1.0, 'maybe': 1.0, 'lounge': 1.0, 'well': 1.0, 'a': 1.0, 'chair': 1.0, 'last': 1.0, 'for': 2.0, 'years': 1.0, 'pricey': 1.0, 'little': 1.0, 'with': 1.0, 'this': 1.0, 'it': 1.0, 'great': 1.0, 'the': 2.0, 'worth': 1.0, 'print': 1.0, 'find': 1.0, 'cost': 1.0, '2nd': 1.0, 'but': 1.0, 'will': 2.0, 'additionally': 1.0, 'cover': 1.0, 'you': 1.0, 'not': 1.0}
Word element => {'compared': 1.0, 'covers': 1.0, 'buy': 1.0, 'use': 1.0, 'pad': 1.0, 'this': 1.0, 'moved': 1.0, 'it': 1.0, 'money': 1.0, 'or': 1.0, 'inside': 1.0, 'can': 1.0, 'noisy': 1.0, 'plastic': 1.0, 'and': 1.0, 'washes': 1.0, 'bit': 1.0, 'a': 4.0, 'regular': 2.0, 'is': 1.0, 'cover': 2.0, 'ripped': 1.0, 'waterproof': 1.0, '2': 1.0, 'the': 2.0, 'after': 1.0, 'just': 1.0, 'not': 1.0, 'few': 1.0, 'to': 1.0, 'its': 1.0, 'worth': 1.0, 'u': 2.0, 'if': 1.0, 'have': 1.0}
Word element => {'double': 1.0, 'previous': 1.0, 'when': 1.0, 'back': 1.0, 'on': 1.0, 'in': 1.0, 'support': 2.0, 'canopy': 1.0, 'did': 2.0, 'the': 7.0, 'with': 1.0, 'it': 1.0, 'harness': 1.0, 'only': 2.0, 'graco': 1.0, '22': 1.0, 'snugride': 1.0, 'wanted': 1.0, 'was': 1.0, 'lot': 2.0, 'easy': 1.0, 'sex': 1.0, 'car': 1.0, 'my': 2.0, 'another': 1.0, 'but': 1.0, '2': 2.0, 'money': 2.0, 'a': 5.0, 'not': 3.0, 'to': 2.0, 'seat': 1.0, 'and': 4.0, 'of': 2.0, 'i': 3.0, 'have': 1.0, 'last': 1.0, 'fabric': 1.0, 'great': 2.0, 'spend': 1.0, 'is': 1.0, 'side': 1.0, 'durable': 1.0, 'rear': 1.0, 'wash': 1.0, 'for': 3.0, 'bar': 1.0, 'had': 3.0, 'either': 1.0, 'front': 1.0, 'use': 1.0, 'though': 1.0, 'boy': 1.0, 'adjust': 1.0, 'down': 1.0, 'this': 1.0, 'soft': 1.0, 'found': 1.0}
Word element => {'perfectly': 1.0, 'out': 1.0, 'has': 1.0, 'my': 1.0, 'in': 1.0, 'worked': 1.0, 'from': 1.0, 'seat': 3.0, 'that': 1.0, 'a': 1.0, 'really': 1.0, 'want': 1.0, 'fit': 1.0, 'didn': 1.0, 'back': 1.0, 'but': 1.0, 'car': 3.0, 'we': 1.0, 's': 2.0, 'base': 1.0, 't': 2.0, 'the': 1.0, 'disconnected': 1.0, 'larger': 1.0, 'bought': 1.0, 'one': 1.0, 'i': 1.0, 'this': 1.0, 'it': 1.0, 'first': 1.0, 'wouldn': 1.0}
Word element => {'ride': 1.0, 'snug': 1.0, 'loosen': 1.0, 'previous': 1.0, 'don': 1.0, 'straps': 1.0, 'but': 1.0, 'just': 1.0, 't': 1.0, 'the': 3.0, 'are': 1.0, 'annoying': 1.0, 'my': 1.0, 'nice': 1.0, 'tighten': 1.0, 's': 1.0, 'front': 1.0, 'well': 1.0, 'it': 2.0, 'fabric': 1.0, 'and': 2.0, 'from': 1.0, 'as': 2.0, 'design': 1.0, 'preforms': 1.0}
Word element => {'strollers': 1.0, 'double': 1.0, 'stroller': 1.0, 'sit': 1.0, 'with': 1.0, 'connect': 1.0, 'classic': 1.0, 'our': 1.0, 'another': 1.0, 'customers': 1.0, 'very': 1.0, 'as': 2.0, 'son': 1.0, 'decided': 1.0, 'broken': 1.0, 'happy': 1.0, 'my': 1.0, 'or': 1.0, 'to': 1.0, 'was': 1.0, 'nothing': 1.0, 'car': 1.0, 'and': 3.0, 'purchase': 1.0, 'similar': 1.0, 'quickly': 1.0, 'came': 1.0, 'the': 1.0, 'damaged': 1.0, 'stand': 1.0, 'seat': 1.0, 'excellent': 1.0, 'brand': 1.0, 'works': 1.0, 'used': 1.0, 'is': 1.0, 'well': 1.0, 'a': 2.0, 'fantastic': 1.0, 'other': 1.0, 'we': 1.0, 'one': 1.0, 'for': 2.0, 'graco': 2.0, 'daughter': 1.0}
Word element => {'not': 1.0, 'hard': 1.0, 'some': 1.0, 'sites': 1.0, 'other': 1.0, 'over': 1.0, 'seem': 1.0, 'doesn': 1.0, 'in': 2.0, 'lot': 1.0, 'reviews': 1.0, 'they': 1.0, 'love': 1.0, 'for': 1.0, 'wouldn': 1.0, 'last': 1.0, 'her': 1.0, 'be': 1.0, 'would': 1.0, 'car': 2.0, 'anchors': 1.0, 'latch': 1.0, 'the': 5.0, 'but': 1.0, '2': 1.0, 'tend': 1.0, 'because': 2.0, 'just': 1.0, 'daughters': 1.0, 'unclip': 1.0, 'i': 4.0, 'old': 1.0, 'bought': 1.0, 'carseat': 1.0, 'had': 1.0, 'what': 1.0, 'kids': 1.0, 'this': 5.0, 'comfortable': 1.0, '1': 1.0, 'get': 2.0, 'all': 1.0, 'sleep': 2.0, 'to': 6.0, 'seat': 5.0, 'our': 3.0, 'that': 1.0, 'younger': 1.0, 'have': 1.0, 'really': 1.0, 'lock': 1.0, 'system': 1.0, 'locks': 1.0, 'japan': 1.0, 'way': 1.0, 'moved': 2.0, 'and': 3.0, 'too': 2.0, 'daughter': 1.0, 'its': 2.0, 'only': 1.0, 'much': 1.0, 'use': 1.0, 'it': 1.0, 'seatbelt': 2.0, 'has': 1.0, 'offs': 1.0, 'which': 1.0, 'wanted': 1.0, 'need': 1.0, 'say': 1.0, 'is': 2.0, 'doesnt': 1.0, 'exactly': 1.0, 'on': 1.0, '3': 1.0, 'so': 1.0, 't': 2.0, 'we': 2.0, 'a': 2.0}
Word element => {'having': 1.0, 'not': 1.0, 'lost': 1.0, 'am': 1.0, 'last': 1.0, 'hopefully': 1.0, 'will': 1.0, 'sticker': 1.0, 'date': 1.0, 'manufacturer': 1.0, 'according': 1.0, 'received': 1.0, 'when': 1.0, 'with': 1.0, 'issue': 1.0, 'perhaps': 1.0, 'get': 1.0, 'worth': 1.0, '100': 1.0, 'graco': 1.0, 'much': 1.0, 'i': 2.0, 'fault': 1.0, 's': 2.0, 'would': 2.0, 'growing': 1.0, 'still': 1.0, 'if': 2.0, 'annoyances': 1.0, 'were': 3.0, 'these': 2.0, 'more': 1.0, 'settings': 1.0, 'its': 1.0, 'using': 3.0, 'purposes': 1.0, 'largest': 1.0, 'removing': 1.0, 'without': 1.0, 'our': 7.0, 'to': 13.0, 'crazy': 1.0, 'as': 1.0, 'consideration': 1.0, 'carrier': 1.0, 'a': 5.0, 'are': 2.0, 'britax': 4.0, 'safety': 1.0, 'quality': 1.0, 'relatively': 1.0, 'which': 2.0, 'good': 2.0, 'appears': 1.0, 'use': 2.0, 'car': 5.0, 'infant': 1.0, 'of': 2.0, 'the': 23.0, 'reports': 1.0, 'key': 1.0, 'seat': 10.0, 'in': 2.0, 'since': 2.0, '1': 1.0, 'easy': 2.0, 'consumer': 1.0, '5': 1.0, 'very': 1.0, 'ratings': 1.0, '4': 1.0, 'returned': 1.0, 'son': 3.0, 'strap': 2.0, 'difficult': 2.0, 'is': 7.0, 'install': 1.0, 'completely': 1.0, 'really': 1.0, 'annoyance': 1.0, 'old': 2.0, 'point': 1.0, 'be': 6.0, 'needed': 1.0, 'fair': 1.0, 'my': 3.0, 'me': 2.0, 'versus': 1.0, 'didn': 1.0, 'ordered': 1.0, 'minor': 2.0, 'and': 5.0, 'have': 3.0, 't': 1.0, 'fairly': 1.0, 'require': 1.0, 'likes': 1.0, 'has': 1.0, 'he': 1.0, 'adjust': 3.0, 'this': 4.0, 'already': 1.0, 'it': 8.0, 'fabric': 1.0, 'for': 5.0, 'was': 4.0, 'comfortable': 1.0, 'crotch': 2.0, 'marathon': 1.0, 'purchase': 1.0, 'biggest': 1.0, 'only': 1.0, 'quickly': 2.0, 'decided': 1.0, 'daughter': 2.0, 'who': 2.0, 'we': 6.0, 'moving': 2.0, 'from': 4.0, 'facing': 1.0, 'while': 1.0, 'rear': 1.0, 'into': 1.0, '3': 1.0, 'realize': 1.0, 'on': 4.0, 'reasonably': 1.0, 'grows': 1.0, 'year': 3.0, 'child': 2.0, 'list': 1.0, 'shoulder': 2.0, 'but': 1.0, 'so': 1.0, 'comparison': 1.0, 'can': 1.0, 'straps': 2.0, 're': 1.0, 'threaded': 1.0, 'out': 1.0, 'removal': 2.0, 'both': 2.0, 'about': 1.0, 'adjustments': 3.0, 'necessitate': 1.0, 'whereas': 1.0, 'they': 1.0, 'taken': 1.0, 'done': 1.0, 'that': 3.0, 'easily': 1.0}
Word element => {'complaints': 1.0, 'no': 1.0, 'one': 1.0, 'another': 1.0, 'buy': 1.0, 'out': 1.0, 'for': 1.0, 'age': 1.0, 'reaches': 1.0, 'now': 1.0, 'right': 1.0, 'booster': 2.0, 'converts': 1.0, 'because': 1.0, 'use': 2.0, 'can': 2.0, 'that': 1.0, 'continue': 1.0, 'only': 1.0, 'not': 1.0, 'thinks': 1.0, 'have': 1.0, 'sees': 1.0, 'who': 1.0, 'everyone': 1.0, 'support': 1.0, 'giving': 1.0, 'first': 1.0, 'with': 3.0, 'was': 3.0, 'had': 1.0, 'the': 3.0, 'asleep': 1.0, 'just': 2.0, 'flop': 1.0, 'trip': 1.0, 'easy': 1.0, 'haven': 1.0, 'directions': 1.0, '4': 1.0, 'i': 1.0, 'far': 2.0, 'took': 1.0, 'pretty': 1.0, 'old': 1.0, 'problems': 1.0, 'followed': 1.0, 'comfortable': 1.0, 'padded': 1.0, 'install': 1.0, 'nice': 1.0, 'car': 1.0, 'so': 4.0, 'grows': 1.0, 'steady': 1.0, '3': 1.0, 'hour': 1.0, 'go': 1.0, 't': 2.0, 'we': 3.0, 'a': 4.0, 's': 1.0, 'this': 4.0, 'drive': 1.0, 'and': 3.0, 'comfy': 1.0, 'as': 1.0, 'to': 4.0, 'seat': 4.0, 'any': 1.0, 'our': 4.0, 'don': 1.0, 'child': 3.0, 'head': 2.0, 'would': 1.0, 'when': 2.0, 'looks': 1.0, 'it': 7.0, 'she': 4.0, 'fell': 1.0, 'more': 1.0, 'is': 2.0, 'around': 1.0, 'holds': 1.0, 'her': 2.0}
Word element => {'new': 1.0, 'well': 1.0, 'daughter': 2.0, 'helped': 1.0, 'other': 1.0, 'move': 1.0, 'used': 1.0, 'girl': 1.0, 're': 1.0, 'especially': 1.0, 'really': 3.0, 'tell': 1.0, 'hand': 1.0, 'cushioning': 1.0, 'buy': 1.0, 'met': 1.0, 'but': 2.0, '180': 1.0, 'out': 2.0, 'until': 2.0, 'further': 1.0, 'enough': 1.0, 'replacement': 1.0, 't': 1.0, 'toys': 1.0, 'her': 4.0, 'little': 5.0, 'two': 2.0, 'nice': 1.0, 'being': 1.0, 'lay': 1.0, 'still': 2.0, 'chic': 1.0, 'booster': 2.0, 'snazzier': 1.0, 'been': 1.0, 'can': 1.0, 'is': 4.0, 'at': 1.0, 'baby': 1.0, 'recline': 1.0, 'first': 1.0, 'this': 4.0, 'oh': 1.0, 'in': 8.0, 'seat': 3.0, 've': 2.0, 'so': 3.0, 'invested': 1.0, 'bigger': 1.0, 'support': 1.0, 'again': 1.0, 'car': 1.0, 'rides': 1.0, 'some': 1.0, 'never': 1.0, 'works': 1.0, 'comfortably': 1.0, 'has': 2.0, 'totally': 1.0, 'them': 3.0, 'always': 2.0, 'i': 5.0, 'are': 2.0, 'my': 6.0, 'far': 1.0, 'only': 1.0, 'then': 1.0, 'we': 2.0, 'weight': 1.0, 'carseats': 1.0, 'the': 15.0, 'padding': 1.0, 'carseat': 2.0, 'd': 1.0, 'best': 1.0, 'milk': 1.0, 'about': 2.0, 'priced': 1.0, 'toddler': 1.0, 'compared': 1.0, 'stuck': 1.0, 'extra': 1.0, 'come': 1.0, 'pushing': 1.0, 'opinion': 1.0, 'way': 1.0, 'barely': 1.0, 'you': 1.0, 'able': 1.0, 'size': 1.0, 'requirements': 1.0, 'ever': 1.0, 's': 4.0, 'least': 1.0, 'reasonable': 1.0, 'to': 9.0, 'straight': 1.0, 'comfortable': 2.0, 'spend': 1.0, 'think': 3.0, 'froward': 1.0, 'better': 1.0, 'transitional': 1.0, 'on': 2.0, 'tried': 1.0, 'just': 4.0, 'and': 7.0, 'have': 4.0, 'happy': 1.0, 'could': 1.0, 'going': 1.0, 'complaint': 2.0, 'a': 9.0, 'since': 1.0, 'very': 2.0, 'find': 1.0, 'fit': 1.0, 'mighty': 1.0, 'than': 1.0, 'removed': 1.0, 'hides': 1.0, 'us': 2.0, 'comfy': 1.0, 'compartments': 1.0, 'that': 5.0, 'fall': 2.0, 'because': 1.0, 'favorite': 1.0, 'up': 1.0, 'when': 2.0, 'gets': 2.0, 'deserves': 1.0, 'asleep': 2.0, 'back': 2.0, 'making': 2.0, 'not': 1.0, 'reclining': 1.0, 'practically': 1.0, 'more': 2.0, 'babies': 1.0, 'into': 1.0, 'considering': 1.0, 'reclined': 1.0, 'itself': 1.0, 'should': 1.0, 'stylish': 1.0, 'purchase': 1.0, 'for': 2.0, 'younger': 1.0, 'transition': 1.0, 'from': 1.0, 'upright': 2.0, 'fabulous': 1.0, 'by': 1.0, 'infant': 1.0, 'would': 2.0, 'she': 7.0, 'make': 1.0, 'made': 2.0, 'falls': 1.0, 'it': 12.0, 'be': 2.0, 'an': 2.0, 'buckle': 3.0, 'got': 2.0, 'one': 3.0, '5': 1.0, 'stars': 1.0, 'side': 1.0, 'll': 1.0, 'with': 2.0, 'using': 1.0, 'positions': 1.0, 'thing': 1.0, 'of': 2.0, 'brands': 1.0, 'even': 1.0, 'old': 1.0, 'how': 1.0, 'graco': 2.0, 'mommies': 1.0, 'like': 1.0, 'removable': 1.0, 'does': 1.0, 'looking': 1.0, 'sent': 1.0, 'handy': 1.0, 'also': 2.0, 'need': 1.0, 'harness': 1.0, 'due': 1.0, 'recall': 2.0, 'much': 1.0, 'original': 1.0, 'was': 1.0, 'if': 1.0, 'great': 1.0, 'sticky': 1.0, 'didn': 1.0, 'necessitated': 1.0}
Word element => {'holder': 1.0, 'drink': 1.0, 'about': 1.0, 'complaining': 1.0, 'definitely': 1.0, 'he': 2.0, 'be': 1.0, 'seems': 1.0, 'your': 1.0, 'bang': 1.0, 'get': 1.0, 'buck': 1.0, 'brands': 1.0, 'other': 1.0, 'britax': 1.0, 'point': 1.0, 'comfy': 1.0, 'not': 3.0, 'loves': 1.0, 'into': 1.0, 'my': 3.0, 'at': 1.0, 'the': 7.0, 'son': 2.0, 'to': 4.0, 'seat': 2.0, 'as': 2.0, 'more': 1.0, 'is': 7.0, 'go': 1.0, 's': 1.0, 't': 1.0, 'a': 3.0, 'comfortable': 1.0, 'spend': 1.0, 'great': 1.0, 'nice': 1.0, 'which': 1.0, 'carseat': 1.0, 'for': 2.0, 'price': 2.0, 'it': 3.0, 'want': 1.0, 'converts': 1.0, 'if': 2.0, 'recaro': 1.0, 'i': 1.0, 'car': 2.0, 'seats': 1.0, 'nautilus': 1.0, 'then': 2.0, 'you': 2.0, 'again': 2.0, 'much': 2.0, 'cheaper': 1.0, 'buckle': 1.0, 'this': 3.0, 'pain': 1.0, 'bottom': 1.0, 'favorite': 1.0, 'money': 1.0, 'but': 2.0, 'can': 1.0, 'with': 1.0, 'complain': 1.0, 'and': 4.0, 'too': 1.0, 'booster': 1.0, 'line': 1.0, 'have': 2.0}
Word element => {'probably': 1.0, 'good': 1.0, 'legs': 1.0, 'where': 1.0, 'ergonomics': 1.0, 'of': 2.0, 'tighten': 1.0, 'between': 1.0, 'they': 1.0, 'straps': 1.0, 'loosen': 1.0, 'never': 1.0, 'in': 1.0, 'hard': 2.0, 'little': 1.0, 'since': 1.0, 'has': 1.0, 'facing': 2.0, 'is': 1.0, 'say': 1.0, 'not': 3.0, 'know': 1.0, 'to': 2.0, 'seat': 2.0, 'a': 1.0, 'go': 1.0, 'could': 2.0, 'daughter': 1.0, 'rear': 2.0, 'been': 1.0, 'that': 2.0, 'loves': 1.0, 'or': 1.0, 'did': 1.0, 'if': 2.0, 'i': 5.0, 'it': 7.0, 'this': 1.0, 'he': 1.0, 'get': 1.0, 'sure': 1.0, 'bought': 2.0, 'tightening': 1.0, 'the': 6.0, 'updated': 1.0, 'details': 1.0, 'strap': 1.0, 'are': 2.0, 'when': 1.0, 'you': 1.0, 'unsure': 1.0, 'please': 1.0, 'because': 2.0, 'does': 1.0, 'known': 1.0, 'before': 1.0, 'works': 2.0, 'can': 1.0, 'work': 1.0, 'but': 1.0, 'something': 1.0, 'would': 1.0, 'have': 1.0, 'else': 1.0, 'kept': 1.0, 'had': 1.0, 'too': 1.0, 'and': 1.0, 'safe': 1.0, 'pretty': 2.0, 'buckle': 1.0}
Word element => {'fans': 1.0, 'again': 1.0, 'buy': 1.0, 'early': 1.0, 'ditching': 1.0, 'loves': 1.0, 'buckling': 1.0, 'inconveniences': 1.0, 'some': 1.0, 'mind': 1.0, 'flush': 1.0, 'sticking': 1.0, 'chances': 1.0, 'rest': 1.0, 'check': 1.0, 'much': 3.0, 'moves': 1.0, 'come': 1.0, 'figure': 2.0, 'couldn': 1.0, 'fussed': 1.0, 'could': 1.0, 'twice': 1.0, 'cars': 1.0, 'putting': 1.0, 'when': 1.0, 'd': 1.0, 'head': 2.0, 'want': 1.0, 'no': 1.0, 'unbuckle': 1.0, 'service': 1.0, 'pick': 1.0, 'at': 2.0, 'flip': 1.0, 'impossible': 1.0, 'design': 1.0, 'tighten': 1.0, 'fix': 1.0, 'overall': 1.0, 'they': 1.0, 'correct': 1.0, 'tightened': 1.0, 'facing': 1.0, 'everytime': 1.0, 'folded': 1.0, 'two': 1.0, 'outie': 1.0, 'metal': 1.0, 'over': 2.0, 'fretted': 1.0, 'fold': 1.0, 'happens': 2.0, 'how': 1.0, 'turned': 1.0, 'things': 1.0, 'you': 6.0, 'well': 1.0, 'roundabout': 1.0, 'finally': 1.0, 'i': 11.0, 'pocket': 1.0, 'really': 1.0, 'storing': 1.0, 'looking': 1.0, 'combo': 1.0, 'fyi': 1.0, 'other': 4.0, 'black': 1.0, '4': 1.0, 'cup': 1.0, 'hassle': 1.0, 'though': 1.0, 'everyday': 2.0, 'difficult': 1.0, 'possible': 1.0, 'puts': 1.0, 'trips': 1.0, 'wash': 1.0, 'use': 1.0, 'know': 2.0, 're': 5.0, 'part': 1.0, 'grey': 1.0, 'off': 3.0, 'areas': 1.0, 'we': 14.0, 'bit': 1.0, 'their': 3.0, 'why': 1.0, 'very': 3.0, 'being': 1.0, 'her': 3.0, 'little': 2.0, 'holder': 1.0, 'color': 1.0, 'the': 44.0, 'doing': 1.0, 'using': 2.0, 'with': 8.0, 'models': 1.0, 'love': 1.0, 'far': 1.0, 'definitely': 1.0, 'maintains': 1.0, 'solid': 1.0, 'compared': 1.0, 'excellent': 1.0, 'nautilus': 3.0, 'if': 3.0, 'would': 3.0, 'adjustment': 1.0, 'gn': 1.0, 'year': 2.0, 'price': 1.0, 'harnesses': 1.0, 'one': 1.0, '5': 5.0, 'that': 11.0, 'because': 2.0, 'needed': 1.0, 'seats': 1.0, 'both': 3.0, 'good': 2.0, 'used': 1.0, 'move': 1.0, 'buckle': 1.0, 'an': 1.0, '22': 2.0, 'problem': 2.0, 'slide': 1.0, 'orange': 1.0, 'now': 1.0, 'car': 11.0, 'button': 1.0, 'elite': 1.0, '2': 3.0, 'end': 1.0, 'uh': 1.0, 'belt': 1.0, 'easy': 1.0, 'fit': 4.0, 't': 11.0, 'booster': 1.0, 'fairly': 1.0, 'too': 2.0, '3': 4.0, 'them': 1.0, 'field': 1.0, 'moving': 1.0, 'piece': 3.0, 'useless': 1.0, 's': 7.0, 'a': 8.0, 'big': 3.0, 'latched': 1.0, '1': 5.0, 'britax': 3.0, 'strap': 4.0, 'covers': 1.0, 'higher': 1.0, 'of': 6.0, 'old': 4.0, 'as': 3.0, 'our': 9.0, 'push': 1.0, 'drop': 1.0, 'seat': 9.0, 'in': 8.0, 'size': 1.0, 'second': 1.0, 'isn': 3.0, 'still': 2.0, 'don': 4.0, 'shoulder': 1.0, 'this': 5.0, 'month': 2.0, 'kids': 5.0, 'crouch': 2.0, 'box': 1.0, 'graco': 3.0, 'have': 7.0, 'original': 2.0, 'same': 1.0, 'surround': 1.0, 'up': 4.0, 'carpool': 1.0, 'tad': 1.0, 'smack': 1.0, 'straps': 2.0, 'events': 1.0, 'out': 8.0, 'behind': 1.0, 'constantly': 1.0, 'and': 24.0, 'just': 5.0, 'realized': 1.0, 'headrest': 2.0, 'is': 4.0, 'can': 4.0, 'so': 5.0, 'plusses': 1.0, 'down': 1.0, 've': 1.0, 'not': 1.0, 'different': 2.0, 'sizes': 1.0, 'your': 3.0, 'go': 1.0, '6': 1.0, 'important': 1.0, 'us': 1.0, 'to': 25.0, 'right': 2.0, 'long': 1.0, 'unlock': 1.0, 'on': 2.0, 'but': 6.0, 'say': 1.0, 'crotch': 1.0, 'take': 2.0, 'fat': 1.0, 'need': 2.0, 'harness': 6.0, 'handy': 1.0, 'slung': 1.0, 'storage': 1.0, 'school': 3.0, 'daughter': 2.0, 'for': 10.0, 'pieces': 1.0, 'or': 2.0, 'point': 3.0, 'pop': 2.0, 'thin': 1.0, 'time': 1.0, 'top': 1.0, 'recommend': 2.0, 'portion': 1.0, 'already': 1.0, 'those': 2.0, 'cons': 1.0, 'all': 1.0, 'way': 2.0, 'ones': 1.0, 'moments': 1.0, 'attachment': 1.0, 'bought': 2.0, 'comes': 1.0, 'short': 1.0, 'are': 4.0, 'my': 2.0, 'configured': 1.0, 'went': 1.0, 'been': 1.0, 'make': 1.0, 'substantial': 1.0, 'work': 2.0, 'wouldn': 1.0, 'more': 2.0, 'kid': 2.0, 'tall': 1.0, 'mean': 2.0, 'who': 2.0, 'under': 1.0, 'trunk': 1.0, 'then': 2.0, 'legs': 1.0, 'however': 1.0, 'able': 3.0, 'often': 1.0, 'get': 7.0, 'do': 1.0, 'snapped': 1.0, 'another': 1.0, 'think': 1.0, 'it': 16.0, 'be': 1.0, 'least': 1.0, 'around': 3.0, 'nylon': 1.0, 'will': 1.0, 'cover': 3.0, 'completely': 1.0, 'considering': 1.0, 'through': 1.0, 'into': 3.0, 'keeping': 1.0, 'hard': 3.0, 'ours': 1.0, 'properly': 2.0, 'manual': 1.0}
Word element => {'forward': 1.0, 'comfort': 1.0, 'limited': 1.0, 'my': 1.0, 'use': 1.0, 'four': 1.0, 'ease': 1.0, 'me': 1.0, 'and': 1.0, 'appeal': 1.0, 'guy': 1.0, 'aesthetic': 1.0, 'of': 1.0, 'plus': 1.0, 'give': 1.0, 'little': 1.0, 'assembly': 1.0, 'now': 1.0, 'led': 1.0, 'to': 1.0, 'this': 1.0, 'item': 1.0, 'loves': 1.0, 'stars': 1.0, 'facing': 1.0}
Word element => {'would': 1.0, 'end': 1.0, 'but': 1.0, 'strap': 1.0, 'crotch': 1.0, 'had': 1.0, 'wish': 1.0, 'back': 1.0, 'scoot': 1.0, 'needs': 1.0, 'scooted': 1.0, 'times': 1.0, 'those': 1.0, 's': 1.0, 'better': 1.0, 'think': 1.0, 'his': 2.0, 'hurts': 1.0, 'average': 1.0, '3yo': 1.0, 'insurance': 1.0, 'a': 4.0, 't': 1.0, 'it': 8.0, 'seatbelt': 4.0, 'loved': 1.0, 'owned': 2.0, 'b': 1.0, 'my': 1.0, 'before': 1.0, 'w': 1.0, 'having': 1.0, 'c': 1.0, 'safely': 1.0, 'make': 1.0, 'on': 2.0, 'and': 7.0, 'across': 1.0, 'butt': 1.0, 'do': 1.0, 'company': 1.0, 'only': 2.0, 'earth': 1.0, 'forward': 1.0, 'not': 1.0, 'to': 5.0, 'between': 1.0, 'has': 1.0, 'wreck': 1.0, 'this': 2.0, 'complains': 2.0, 'for': 3.0, 'seat': 2.0, 'in': 3.0, 'regular': 3.0, 'just': 1.0, 'why': 1.0, 'car': 3.0, 'feature': 2.0, 'the': 17.0, 'of': 1.0, 'they': 3.0, 'metal': 2.0, 'i': 5.0, 'involved': 1.0, 'attached': 1.0, 'vice': 1.0, 'now': 1.0, 'buy': 1.0, 'because': 1.0, 'that': 6.0, 'was': 1.0, 'wanted': 1.0, 'peepee': 1.0, 'pain': 1.0, 'paying': 1.0, 'lock': 4.0, 'adjust': 1.0, 'updated': 2.0, 'clip': 2.0, 'used': 2.0, 'us': 1.0, 'new': 1.0, 'still': 1.0, 'if': 1.0, 'you': 2.0, 'weight': 1.0, 'awful': 1.0, 'know': 1.0, 'rather': 1.0, 'like': 1.0, 'downside': 1.0, 'what': 1.0, 'than': 1.0, 'huge': 1.0, 'ones': 1.0, 'one': 2.0, 'color': 1.0, 'get': 1.0, 'months': 1.0, 'at': 1.0, 'nautilus': 5.0, 'yeah': 1.0, 'is': 4.0, 'takes': 1.0, 'forever': 1.0, 'sometimes': 1.0, 'install': 1.0, '34': 2.0, 'elite': 1.0, 'correctly': 1.0, 'ever': 1.0, 'other': 1.0, 'call': 1.0, 've': 3.0, 'several': 1.0, 'we': 3.0, 'difference': 1.0, 'head': 1.0, 'recommend': 1.0, 'were': 1.0, 'piece': 1.0, 'can': 1.0, 'be': 1.0, 'adjusted': 1.0, 'haven': 1.0, 'he': 2.0, 'yet': 1.0, 'come': 1.0, 'height': 1.0, 'son': 1.0}
Word element => {'anyone': 1.0, 'would': 1.0, 'i': 1.0, 'face': 1.0, 'front': 1.0, 'car': 1.0, 'recommend': 1.0, 'seat': 1.0, 'is': 1.0, 'super': 1.0, 'cute': 1.0, 'daughter': 1.0, 'and': 1.0, 'the': 1.0, 'my': 1.0, 'this': 1.0, 'loves': 1.0, 'to': 2.0, 'being': 1.0}
Word element => {'by': 1.0, 'had': 1.0, 'have': 1.0, 'aid': 1.0, 'who': 1.0, 'oh': 1.0, 'favorite': 1.0, 'best': 2.0, 'liked': 1.0, 'like': 1.0, 'you': 1.0, 'same': 2.0, 'is': 2.0, 'features': 1.0, 'her': 2.0, 'our': 2.0, 'as': 1.0, 'seat': 2.0, 'to': 3.0, 'emt': 1.0, 'granddaughter': 2.0, 'needed': 1.0, 'and': 4.0, 'replace': 1.0, 'orange': 1.0, 'the': 8.0, 'great': 1.0, 'car': 1.0, 'firemen': 1.0, 'i': 1.0, 'bought': 1.0, 'my': 3.0, 'closer': 1.0, 'kids': 1.0, 'this': 1.0, 'it': 4.0, 'farther': 1.0, 'high': 1.0, 'were': 1.0, 'came': 1.0, 'although': 1.0, 'their': 1.0, 'was': 1.0, 'hug': 1.0, 'for': 1.0, 'accident': 1.0, 'model': 1.0, 'said': 1.0, 'in': 2.0, 'could': 1.0, 's': 2.0, 'a': 2.0, 'we': 2.0, 'brand': 1.0, 'but': 1.0, 'newer': 1.0, 'name': 1.0, 'standards': 1.0, 'new': 1.0, 'moveable': 1.0, 'they': 1.0, 'added': 1.0, 'are': 2.0, 'wonderful': 1.0, 'sides': 1.0, 'of': 1.0, 'head': 2.0, 'praise': 1.0, 'after': 1.0, 'rest': 1.0, 'or': 1.0, 'part': 1.0, 'from': 1.0}
Word element => {'it': 1.0, 'loves': 1.0, 'niece': 1.0, 'my': 1.0}
Word element => {'price': 1.0, 'for': 1.0, 'great': 1.0, 'safe': 1.0, 'a': 1.0, 'though': 1.0, 'hook': 1.0, 'be': 1.0, 'would': 1.0, 'gripe': 1.0, 'believe': 1.0, 'the': 8.0, 'such': 1.0, 'ones': 1.0, 'in': 2.0, 'also': 1.0, 'secure': 1.0, 'seem': 1.0, 'this': 1.0, 'release': 1.0, 'primitive': 1.0, 'boy': 1.0, 'little': 1.0, 'i': 2.0, 'much': 1.0, 'harness': 1.0, 'only': 2.0, 'hard': 1.0, 'really': 1.0, 'is': 4.0, 'side': 1.0, 'want': 1.0, 'easier': 1.0, 'well': 1.0, 'latch': 1.0, 'quite': 1.0, 'like': 1.0, 'and': 3.0, 'made': 1.0, 'my': 2.0, 'can': 1.0, 'tighten': 2.0, 'it': 3.0, 'remove': 1.0, 'one': 1.0, 'on': 2.0, 'hooks': 1.0, 'loosen': 1.0, 'belt': 1.0, 'you': 2.0, 'when': 1.0, 'button': 1.0, 'all': 2.0, 'seat': 3.0, 'to': 3.0, 'latches': 1.0, 'as': 1.0, 'push': 1.0, 'britax': 1.0, 'are': 1.0}
Word element => {'feel': 1.0, 'after': 1.0, 'should': 1.0, 'fix': 1.0, 'then': 1.0, 'more': 1.0, 'out': 1.0, 'pull': 2.0, 'between': 1.0, 'gap': 1.0, 'down': 3.0, 'pressure': 1.0, 'as': 3.0, 'where': 2.0, 'properly': 1.0, 'tight': 1.0, 'will': 1.0, 'recaro': 1.0, 'system': 1.0, 'how': 1.0, 'complaint': 1.0, 'only': 1.0, 'unclip': 1.0, 'they': 1.0, 'towards': 1.0, 'up': 2.0, 'whole': 1.0, 'loosen': 1.0, 'undo': 1.0, 'line': 1.0, 'piece': 3.0, 'tighten': 3.0, 'together': 1.0, 's': 1.0, 'a': 6.0, 'belt': 3.0, 'fit': 1.0, 'for': 1.0, 'was': 2.0, 'again': 1.0, 'car': 2.0, 'included': 1.0, 'but': 2.0, 'readjust': 2.0, 'and': 10.0, 'like': 1.0, 'angle': 3.0, 'toyota': 1.0, 'made': 1.0, 'location': 1.0, 'puts': 1.0, 'them': 2.0, 'cab': 1.0, 'be': 2.0, 'perfect': 1.0, 'tightening': 1.0, 'proride': 1.0, 'latches': 1.0, 'this': 6.0, 'seat': 3.0, 'in': 4.0, 'husbands': 1.0, 'think': 1.0, 'area': 1.0, 'make': 1.0, 'strap': 1.0, 'position': 1.0, 'sits': 1.0, 'is': 5.0, 'at': 1.0, 'not': 1.0, 'match': 1.0, 'put': 1.0, 'do': 1.0, 'its': 2.0, 'entire': 1.0, 'my': 3.0, 'some': 1.0, 'shoulders': 1.0, 'degree': 1.0, 'doing': 1.0, 'the': 15.0, 'bought': 1.0, 'tightens': 2.0, 'try': 1.0, 'one': 2.0, 'truck': 1.0, 'almost': 1.0, 'i': 8.0, 'it': 11.0, 'super': 1.0, 'month': 1.0, 'with': 2.0, 'all': 1.0, 'other': 1.0, 'fits': 1.0, 'an': 2.0, 'very': 2.0, '2003': 1.0, '90': 1.0, 'straight': 1.0, 'pretty': 1.0, 'to': 7.0, 'readers': 1.0, 'just': 1.0, 'seats': 2.0, 'have': 5.0, 'when': 1.0, 'sit': 1.0, 'leaves': 1.0, 'found': 1.0, 'easy': 1.0, 'english': 1.0, 'instruction': 1.0, 'also': 1.0, 'convertible': 1.0, 'tundra': 1.0, 'espa': 1.0, 'hard': 1.0, 'ntilde': 1.0, 'growing': 1.0, 'ola': 1.0, '18': 1.0, 'old': 1.0, 'on': 3.0, 'noticed': 1.0, 'most': 1.0, 'back': 2.0, 'snugly': 2.0, 'enough': 1.0, 'room': 1.0, 'he': 1.0, 'access': 1.0, 'seems': 2.0, 'dislike': 1.0, 'plastic': 1.0, 'belly': 1.0, 'comfortable': 1.0, 'easily': 2.0, 'that': 2.0, 'because': 2.0, 'chest': 6.0, 'are': 1.0, 'manual': 1.0, 'normal': 1.0, 'right': 1.0, 'true': 1.0, 'clear': 1.0, 'if': 1.0, 'you': 2.0, 'child': 1.0, 'proof': 1.0}
Word element => {'3': 1.0, 'use': 1.0, 'how': 1.0, 'understand': 1.0, 'in': 1.0, 'year': 1.0, 'for': 1.0, 'toys': 1.0, 'recline': 1.0, 'position': 1.0, 'some': 1.0, 'hide': 1.0, 'confortable': 1.0, 'just': 1.0, 'didn': 1.0, 'i': 2.0, 'it': 2.0, 'nice': 1.0, 'is': 2.0, 't': 1.0, 'the': 2.0, 'color': 1.0, 'my': 1.0, '1': 1.0, 'and': 1.0, 'about': 1.0, 'baby': 1.0, 'loves': 1.0, 'look': 1.0, 'to': 2.0, 'them': 1.0}
Word element => {'nice': 1.0, 'are': 1.0, 'don': 1.0, 'they': 1.0, 'makes': 1.0, 'wonder': 1.0, 'love': 2.0, 'for': 1.0, 'too': 1.0, 'and': 1.0, 'sons': 1.0, 'the': 4.0, 'more': 1.0, 'i': 3.0, 'auto': 1.0, 't': 1.0, 'we': 1.0, 'extra': 1.0, 'model': 1.0, 'accident': 1.0, 'my': 1.0, 'had': 1.0, 'storefuture': 1.0, 'oldest': 1.0, 'after': 1.0, 'so': 1.0, 'why': 1.0, 'car': 2.0, 'to': 1.0, 'seat': 2.0, 'an': 1.0, 'secure': 1.0, 'carry': 1.0, 'in': 1.0, 'anymore': 1.0, 'replace': 1.0, 'glad': 1.0, 'this': 1.0, 'found': 1.0, 'on': 1.0, 'amazon': 1.0, 'latch': 1.0, 'it': 3.0, 'seatbelt': 1.0, 'installing': 1.0, 'plus': 1.0, 'when': 1.0, 'mivabke': 1.0, 'head': 1.0, 'flaps': 1.0}
Word element => {'great': 1.0, 'works': 1.0}
Word element => {'really': 1.0, 'pop': 1.0, 'joke': 1.0, 'cup': 1.0, 'issues': 1.0, 'those': 1.0, 'forward': 1.0, 'lean': 1.0, 'order': 1.0, 'fast': 1.0, 'keep': 1.0, 'lot': 1.0, 'close': 1.0, 'low': 1.0, 'top': 1.0, 'handle': 1.0, 'combo': 1.0, 'break': 1.0, 'stand': 1.0, 'barely': 1.0, 'toes': 2.0, 'enormous': 1.0, 'after': 1.0, 'from': 1.0, 'horribly': 1.0, 'wheels': 1.0, 'had': 1.0, 'purchased': 1.0, 'very': 1.0, 'exchanging': 1.0, 'front': 1.0, 'wanted': 1.0, 'actual': 1.0, 'our': 3.0, 'to': 6.0, 'husband': 1.0, 'gave': 1.0, 'parents': 1.0, 'way': 1.0, 'returned': 1.0, 'us': 1.0, 'felt': 1.0, 'it': 3.0, 'also': 1.0, 'rocked': 1.0, 'heavy': 1.0, 'first': 1.0, 'try': 1.0, 'only': 1.0, 'with': 1.0, 'cheap': 1.0, 'for': 1.0, 'love': 1.0, 'uncomfortable': 1.0, 'one': 1.0, 'stroller': 3.0, 'a': 3.0, 'we': 5.0, 'holder': 1.0, 'design': 1.0, 'neither': 1.0, 'i': 2.0, 'because': 1.0, 'find': 1.0, 'full': 1.0, 'this': 3.0, 'flaws': 1.0, 'in': 2.0, '5': 1.0, '7': 1.0, 'work': 1.0, 'but': 1.0, 'can': 2.0, 'the': 7.0, 'without': 1.0, 'arms': 1.0, 'm': 1.0, '34': 1.0, 'walk': 2.0, '6': 1.0, 'of': 3.0, 'too': 1.0, 'and': 5.0, 'fits': 1.0, 'another': 1.0, 'my': 1.0, 'more': 1.0, 'is': 4.0, 'extend': 1.0, 'make': 1.0, 'on': 2.0, 'constantly': 1.0, 'stubbing': 2.0}
Word element => {'need': 1.0, 'if': 1.0, 'choice': 1.0, 'at': 1.0, 'used': 1.0, 'step': 1.0, 'large': 1.0, 'for': 1.0, 'bummer': 1.0, 'super': 1.0, 'take': 1.0, 'walking': 1.0, 'while': 1.0, 'kick': 1.0, 'will': 1.0, 'also': 1.0, 'back': 1.0, 'bother': 1.0, 'shorter': 1.0, 'over': 1.0, 'rate': 1.0, 'like': 1.0, 'feel': 1.0, 'not': 1.0, 'me': 2.0, 'making': 1.0, 'close': 2.0, 'with': 1.0, 'is': 6.0, 'bar': 1.0, 'had': 1.0, 'any': 1.0, 'to': 6.0, 'seat': 1.0, 'maybe': 1.0, 'because': 3.0, 'car': 1.0, '5': 1.0, '20': 1.0, 'button': 1.0, 'click': 3.0, 'baby': 1.0, 'lots': 1.0, 'old': 1.0, 'so': 5.0, 'got': 2.0, 'connect': 3.0, 'stroller': 4.0, 'this': 4.0, 'only': 3.0, 'month': 1.0, 'it': 3.0, 'dislike': 1.0, 'small': 1.0, 'have': 5.0, 'about': 1.0, 'thing': 1.0, 'steps': 1.0, 'a': 6.0, 'too': 1.0, 'and': 4.0, 'the': 10.0, 'may': 1.0, 'another': 1.0, 'lightweight': 1.0, 'one': 2.0, 'get': 1.0, 'model': 1.0, 'of': 3.0, 'hunched': 1.0, 'fold': 1.0, 'double': 2.0, 'very': 1.0, 'someone': 1.0, '11': 1.0, 'am': 3.0, 'you': 2.0, 'manuverable': 1.0, 'has': 1.0, 'owie': 1.0, 'i': 11.0, 'feature': 1.0, 'handlebar': 1.0, 'riding': 1.0, 'push': 1.0, 'options': 1.0, 'far': 1.0, 'that': 1.0}
Word element => {'like': 1.0, 'plus': 1.0, 'be': 1.0, 'would': 2.0, 'for': 1.0, 'little': 1.0, 'a': 2.0, 'az': 1.0, 'living': 1.0, 'down': 1.0, 'when': 1.0, 'i': 2.0, 'specially': 1.0, 'and': 3.0, 'said': 1.0, 'is': 1.0, 'folded': 1.0, 'its': 1.0, 'coverage': 1.0, 'shades': 1.0, 'larger': 1.0, 'large': 1.0, 'kiddos': 1.0, 'were': 1.0, 'that': 1.0, 'awkward': 1.0, 'it': 1.0, 'this': 1.0, 'being': 1.0, 'smooth': 1.0, 'recommend': 1.0, 'easy': 1.0, 'having': 1.0, 'in': 2.0, 'wish': 1.0, 'more': 1.0, 'the': 3.0, 'thing': 1.0, 'handling': 1.0, 'sun': 1.0}
Word element => {'okay': 1.0, 'directly': 1.0, 'own': 1.0, 'up': 1.0, 'to': 1.0, 'sit': 1.0, 'able': 1.0, 'when': 1.0, 'maybe': 1.0, 'seats': 1.0, 'car': 1.0, 'the': 1.0, 'infants': 1.0, 'comfortably': 1.0, '10': 1.0, 'are': 2.0, 'they': 3.0, 'their': 2.0, 'our': 1.0, 'twin': 1.0, 'be': 1.0, 'carriage': 1.0, 'bought': 1.0, 'grandbabies': 1.0, 'figure': 1.0, 'for': 2.0, 'fit': 1.0, 'it': 1.0, 'this': 2.0, 'only': 1.0, 'on': 1.0, 'lbs': 1.0, 'and': 1.0, 'as': 1.0, '11': 1.0, 'in': 3.0, 'cannot': 1.0, 'old': 1.0, 'i': 1.0, 'them': 1.0, 'out': 1.0, 'how': 1.0, 'stroller': 2.0, 'weeks': 1.0, 'will': 2.0}
Word element => {'about': 1.0, 'are': 1.0, 'credit': 1.0, 'fiber': 1.0, 'polyester': 1.0, 'recycled': 1.0, 'up': 1.0, 'of': 1.0, 'unlike': 1.0, 'made': 1.0, 'find': 1.0, 'they': 1.0, 'site': 1.0, 'fill': 1.0, 'item': 1.0, 'the': 3.0, 'that': 2.0, 'although': 1.0, 'to': 3.0, 'giving': 1.0, 'cover': 1.0, '100': 2.0, 'front': 1.0, 'rating': 1.0, 'a': 1.0, 'm': 1.0, 'i': 2.0, 'amazon': 1.0, 'is': 4.0, 'information': 1.0, 'neutral': 1.0, 'organic': 1.0, 'filling': 1.0, 'it': 1.0, 'this': 2.0, 'cotton': 1.0, 'because': 1.0, 'not': 1.0, 'went': 1.0, 'argington': 2.0, 's': 2.0, 'web': 1.0}
Word element => {'infant': 1.0, 'toddler': 1.0, 'dishwasher': 1.0, 'the': 3.0, 'withstood': 1.0, 's': 1.0, 'durable': 1.0, 'it': 1.0, 'love': 1.0, 'they': 1.0, 'exactly': 1.0, 'set': 1.0, 'came': 1.0, 'as': 1.0, 'described': 1.0, 'and': 2.0, 're': 1.0, 'this': 1.0, 'extremely': 1.0}
Word element => {'all': 1.0, 'at': 1.0, 'be': 1.0, 'and': 1.0, 'very': 1.0, 'as': 1.0, 'gift': 1.0, 'ordered': 1.0, 'disappointed': 1.0, 'flat': 1.0, 'out': 1.0, 'arrived': 1.0, 'when': 2.0, 'ordering': 2.0, 'were': 1.0, 'thought': 2.0, 'i': 8.0, 'what': 2.0, 'just': 1.0, 'not': 2.0, 'description': 1.0, 'a': 2.0, 'read': 1.0, 'these': 1.0, 'the': 1.0, 'turned': 1.0, 'had': 1.0, 'was': 4.0, 'to': 2.0, 'according': 1.0, 'set': 1.0, 'of': 1.0, 'quilted': 1.0, 'with': 1.0, 'fitted': 1.0, 'they': 4.0, 'cradle': 1.0, 'pads': 2.0, 'but': 1.0, 'elastic': 1.0, 'received': 1.0}
Word element => {'thank': 1.0, 'purchase': 1.0, 'my': 1.0, 'happy': 1.0, 'am': 1.0, 'this': 1.0, 'much': 1.0, 'product': 1.0, 'with': 1.0, 'is': 1.0, 'a': 1.0, 'great': 1.0, 'very': 2.0, 'and': 1.0, 'better': 1.0, 'than': 1.0, 'you': 1.0, 'what': 1.0, 'i': 2.0, 'expected': 1.0}
Word element => {'adorable': 1.0, 'looked': 1.0, 'are': 1.0, 'family': 1.0, 'own': 1.0, 'they': 1.0, 'your': 1.0, 'sooner': 1.0, 'recommend': 1.0, 'them': 1.0, 'a': 2.0, 'wish': 1.0, 'for': 2.0, 'perfect': 1.0, 'i': 3.0, 'or': 1.0, 'were': 1.0, 'have': 1.0, 'great': 1.0, 'these': 2.0, 'just': 1.0, 'because': 1.0, 'we': 1.0, 'couple': 1.0, 'would': 2.0, 'missed': 1.0, '34': 2.0, 'milestones': 1.0, 'found': 1.0, 'gift': 1.0, 'definitely': 1.0}
Word element => {'bought': 1.0, 'son': 1.0, 'time': 1.0, 'greatgran': 1.0, 'long': 1.0, 'my': 1.0, 'the': 2.0, 'and': 1.0, 'fast': 1.0, 'in': 1.0, 'itthis': 1.0, 'mail': 1.0, 'it': 3.0, 'i': 2.0, 'for': 1.0, 'love': 2.0, 'one': 1.0, 'will': 1.0, 'got': 1.0, 'use': 1.0, 'a': 1.0, 'is': 1.0, 'second': 1.0, 'that': 1.0}
Word element => {'well': 1.0, 'top': 1.0, 'entertaining': 1.0, 'next': 1.0, 'action': 1.0, 'course': 1.0, 'is': 2.0, 'as': 2.0, 'and': 1.0, 'high': 1.0, 'the': 5.0, 'novel': 1.0, 'chair': 1.0, 'for': 2.0, 'pooch': 1.0, 'waits': 1.0, 'baby': 1.0, 'patiently': 1.0, 'fun': 1.0, 'double': 1.0, 'activity': 1.0, 'spinning': 1.0, 'squeaky': 1.0, 'are': 1.0, 'intriguing': 1.0, 'independent': 1.0, 'spins': 1.0}
Word element => {'workmanship': 1.0, 'in': 1.0, 'nothing': 1.0, 'looks': 1.0, 'play': 1.0, 'fulfilled': 1.0, 'the': 1.0, 'my': 1.0, 'terms': 1.0, 'alright': 1.0, 'quality': 1.0, 'and': 1.0, 'basic': 1.0, 'expectation': 1.0, 'of': 2.0, 'fantastic': 1.0, 'simple': 1.0, 'but': 1.0, 'easy': 1.0, 'toy': 1.0, 'to': 1.0}
Word element => {'quality': 1.0, 'and': 1.0, 'enjoy': 1.0, 'we': 1.0, 'it': 2.0, 'great': 1.0, 'anxiety': 1.0, 'idea': 1.0, 'baby': 1.0, 'a': 2.0, 'is': 2.0, 'photo': 1.0, 'helping': 1.0, 'book': 1.0, 'for': 2.0, 'good': 1.0, 'really': 1.0, 'soft': 1.0, 'separation': 1.0}
Word element => {'further': 1.0, 'quality': 1.0, 'look': 1.0, 'for': 1.0, 'more': 1.0, 'better': 1.0, 'pay': 1.0, 'would': 1.0, 'at': 1.0, 'shredding': 1.0, 'edges': 1.0, 'long': 1.0, 't': 1.0, 'before': 1.0, 'washing': 1.0, 'don': 1.0, 'i': 1.0, 'expect': 1.0, 'product': 1.0, 'to': 1.0, 'last': 1.0}
Word element => {'work': 1.0, 'might': 1.0, 'spill': 1.0, 'it': 2.0, 'your': 1.0, 'i': 1.0, 'first': 1.0, 'to': 1.0, 'liked': 1.0, 'cup': 2.0, 'quickly': 1.0, 'its': 1.0, 'figured': 1.0, 'but': 2.0, 'kids': 2.0, 'make': 1.0, 'the': 1.0, 'my': 1.0, 'out': 1.0, 'if': 1.0, 'how': 1.0}
Word element => {'recommend': 1.0, 'would': 1.0, 'love': 1.0, 'prevents': 1.0, 'backing': 1.0, 'proof': 1.0, 'water': 1.0, 'bibs': 3.0, 'clothes': 2.0, 'wet': 2.0, 'from': 1.0, 'means': 2.0, 'which': 2.0, 'in': 1.0, 'regular': 1.0, 'kids': 2.0, 'too': 1.0, 'them': 1.0, 'reflux': 1.0, 'my': 1.0, 'turn': 1.0, 'feed': 1.0, 'have': 2.0, 'i': 1.0, 'soaked': 1.0, 'their': 1.0, 'that': 3.0, 'our': 1.0, 'these': 2.0, 'during': 1.0, 'getting': 1.0, 'get': 2.0, 'and': 2.0, 'after': 1.0, 'a': 2.0}
Word element => {'i': 1.0, 'is': 1.0, 'love': 1.0, 'it': 3.0, 'so': 1.0, 'looks': 1.0, 'lady': 1.0, 'highly': 1.0, 'like': 1.0, 'a': 1.0, 'the': 1.0, 'knock': 1.0, 'chic': 1.0, 'bag': 1.0, 'dior': 1.0, 'off': 1.0, 'recommend': 1.0, 'of': 1.0, 'di': 1.0}
Word element => {'not': 1.0, 'but': 1.0, 'than': 1.0, 'keep': 1.0, 'bigger': 1.0, 'its': 1.0, 'really': 1.0, 'kind': 1.0, 'incomplete': 1.0, 'beautiful': 1.0, 'was': 2.0, 'of': 2.0, 'side': 1.0, 'one': 1.0, 'in': 1.0, 'out': 1.0, 'll': 2.0, 'about': 1.0, 'r': 1.0, 'information': 1.0, 'didn': 1.0, 'o': 1.0, 'became': 1.0, 'plus': 1.0, 'otherwise': 1.0, 'i': 12.0, 'found': 1.0, 'this': 1.0, 'you': 1.0, 'handbag': 2.0, '3': 1.0, 'product': 1.0, 'stars': 1.0, 'tell': 1.0, 'disappointed': 1.0, 'china': 1.0, 'read': 1.0, 'and': 4.0, '1': 1.0, 'why': 1.0, 'from': 1.0, 'thought': 1.0, 'had': 1.0, 'word': 1.0, 'to': 2.0, 'bag': 2.0, 'wait': 1.0, 'looks': 1.0, 'it': 2.0, 'month': 1.0, 'satisfied': 1.0, 'maddening': 1.0, 's': 1.0, 't': 1.0, 'a': 1.0, 'expected': 1.0, 'half': 1.0, 'receive': 1.0, 'my': 1.0, 'elegant': 1.0, 'missing': 1.0, 'item': 1.0, 'so': 1.0, 'shapely': 1.0, 'm': 2.0, '34': 4.0, 'd': 1.0, 'gave': 1.0, 'that': 1.0, 'more': 1.0, 'completely': 2.0, 'is': 2.0, 'the': 7.0, 'hanging': 1.0}
Word element => {'diaper': 1.0, 'in': 1.0, 'carry': 1.0, 'bag': 1.0, 'to': 1.0, 'her': 1.0, 'daugter': 1.0, 'for': 1.0, 'bought': 1.0}
Word element => {'value': 1.0, 'i': 1.0, 'by': 1.0, 'price': 1.0, 'baby': 1.0, 'will': 1.0, 'expecting': 1.0, 'seen': 1.0, 'the': 1.0, 'for': 2.0, 'godmother': 1.0, 'who': 1.0, 'purchased': 1.0, 'with': 1.0, 'it': 3.0, 'and': 1.0, 'items': 1.0, 'need': 1.0, 'its': 1.0, 'was': 2.0, 'filled': 1.0, 'is': 1.0, 'many': 1.0, 'a': 2.0, 'someone': 1.0, 'good': 1.0}
Word element => {'compartment': 1.0, 'up': 1.0, 'need': 1.0, 'you': 1.0, 'everything': 1.0, 'zip': 1.0, 'this': 1.0, 'a': 1.0, 'my': 1.0, 'little': 2.0, 'is': 1.0, 'add': 1.0, 'in': 1.0, 'for': 1.0, 'one': 2.0, 'has': 1.0, 'great': 1.0, 'it': 1.0}
Word element => {'baby': 1.0, 'grand': 1.0, 'gift': 1.0, 'wonderful': 1.0, 'case': 1.0, 'what': 1.0, 'all': 1.0, 'a': 2.0, 'great': 1.0, 'my': 1.0, 'made': 1.0, 'the': 1.0, 'necessities': 1.0, 'thing': 1.0, 'grooming': 1.0, 'for': 1.0, 'in': 1.0, 'one': 1.0, 'convenient': 1.0}
Word element => {'temperature': 1.0, 'right': 1.0, 'doesn': 1.0, 'work': 1.0, 'thermometer': 2.0, 'person': 1.0, 'that': 4.0, 'their': 1.0, 'the': 2.0, 'people': 1.0, 'more': 1.0, 'is': 2.0, 'one': 2.0, 'thinking': 1.0, 'i': 3.0, 'baby': 2.0, 'buying': 1.0, 'read': 1.0, 'this': 2.0, 'it': 4.0, 'product': 1.0, 'even': 1.0, 'to': 2.0, 'all': 1.0, 'about': 1.0, 'thing': 1.0, 'forehead': 2.0, 'reviews': 1.0, 'are': 1.0, 'would': 1.0, 'like': 1.0, 'head': 1.0, 'inform': 1.0, 'and': 1.0, 'slapping': 1.0, 'infact': 1.0, 'thanks': 1.0, 'am': 1.0, 'you': 1.0, 'not': 1.0, 't': 1.0, 's': 4.0, 'a': 2.0, 'water': 2.0, 'stick': 1.0, 'said': 1.0, 'in': 1.0, 'make': 1.0, 'on': 1.0, 'your': 1.0, 'sure': 1.0, 'tub': 1.0}
Word element => {'them': 1.0, 'china': 1.0, 'madr': 1.0, 'completely': 1.0, 'these': 1.0, 'wont': 1.0, 'from': 1.0, 'away': 1.0, 'cheap': 1.0, 'are': 1.0, 'plastic': 1.0, 'you': 2.0, 'stuff': 1.0, 'looking': 1.0, 'if': 1.0, 'in': 1.0, 'for': 1.0, 'stay': 1.0, 'good': 1.0, 'products': 1.0, 'like': 1.0, 'items': 1.0, 'quality': 1.0}
Word element => {'fast': 1.0, 'product': 1.0, 'kit': 1.0, 'items': 1.0, 'so': 2.0, 'good': 2.0, 'let': 1.0, 'at': 1.0, 'do': 1.0, 'prove': 1.0, 'great': 1.0, 'i': 3.0, 'will': 2.0, 'work': 1.0, 'but': 1.0, 'all': 1.0, 'you': 1.0, 'not': 1.0, 'know': 1.0, 'highly': 1.0, 'shipping': 1.0, 'very': 1.0, 'happy': 1.0, 'letter': 1.0, 'it': 1.0, 'this': 1.0, 'recommended': 2.0, 'seller': 1.0}
Word element => {'them': 1.0, 'store': 1.0, 'bag': 1.0, 'a': 1.0, 'on': 1.0, 'kit': 1.0, 'care': 1.0, 'found': 1.0, 'i': 1.0, 'price': 1.0, 'the': 3.0, 'to': 1.0, 'was': 1.0, 'could': 1.0, 'design': 1.0, 'in': 2.0, 'lowest': 1.0, 'this': 1.0, 'top': 1.0, 'of': 1.0, 'good': 1.0, 'has': 1.0, 'pretty': 1.0, 'and': 2.0, 'items': 1.0, 'color': 1.0, 'looks': 1.0, 'all': 1.0}
Word element => {}
Word element => {'is': 1.0, 'use': 1.0, 'good': 1.0, 'once': 1.0, 'to': 1.0, 'put': 1.0, 'will': 1.0, 'baby': 2.0, 'friends': 1.0, 'isn': 1.0, 'here': 2.0, 'i': 1.0, 't': 1.0, 'the': 2.0, 'my': 1.0, 'yet': 1.0, 'm': 1.0, 'it': 1.0, 'sure': 1.0}
Word element => {'them': 1.0, 'with': 1.0, 'organized': 1.0, 'their': 1.0, 'easier': 1.0, 'will': 1.0, 'they': 1.0, 'very': 1.0, 'were': 1.0, 'it': 1.0, 'happy': 1.0, 'newborn': 1.0, 'first': 1.0, 'be': 1.0, 'to': 2.0, 'everything': 1.0, 'pouch': 1.0, 'keep': 1.0, 'receive': 1.0, 'for': 1.0, 'in': 1.0, 'one': 1.0}
Word element => {'quality': 1.0, 'better': 1.0, 'never': 1.0, 'was': 2.0, 'clipper': 1.0, 'cross': 1.0, 'touch': 1.0, 'i': 1.0, 'with': 1.0, 'even': 1.0, 'used': 1.0, 'pieces': 1.0, 'apart': 1.0, 'nail': 1.0, 'my': 1.0, 'other': 2.0, 'were': 1.0, 'son': 1.0, 'ok': 1.0, 'the': 2.0, 'red': 1.0, 'fell': 1.0, 'bought': 1.0, 'one': 2.0, 'for': 1.0}
Word element => {'mom': 1.0, 'the': 1.0, 'of': 1.0, 'always': 1.0, 'clothes': 1.0, 'gift': 1.0, 'as': 1.0, 'and': 1.0, 'other': 1.0, 'bc': 1.0, 'a': 1.0, 'nobody': 1.0, 'than': 1.0, 'diapers': 1.0, 'especially': 1.0, 'thinks': 1.0, 'i': 1.0, 'give': 1.0, 'little': 1.0, 'things': 1.0, 'for': 1.0, 'this': 1.0, 'first': 1.0, 'time': 1.0}
Word element => {'items': 1.0, 'quality': 1.0, 'because': 1.0, 'time': 1.0, 'long': 1.0, 'a': 1.0, 'last': 1.0, 'would': 1.0, 'of': 2.0, 'good': 1.0, 'value': 1.0, 'for': 1.0, 'the': 3.0, 'that': 1.0, 'price': 1.0, 'i': 1.0, 'it': 1.0, 'can': 1.0, 'tell': 1.0}
Word element => {'been': 1.0, 'have': 1.0, 'rest': 1.0, 'never': 1.0, 'implements': 1.0, 'shipment': 1.0, 'during': 1.0, 'help': 1.0, 'lost': 1.0, 'is': 1.0, 'if': 1.0, 'receive': 1.0, 'or': 1.0, 'until': 1.0, 'good': 1.0, 'great': 1.0, 'the': 4.0, 'thermometers': 1.0, 'was': 1.0, 'now': 1.0, 'to': 1.0, 'time': 1.0, 'in': 2.0, 'seems': 1.0, 'very': 1.0, 'it': 2.0, 'case': 1.0, 'brought': 1.0, 'just': 1.0, 'not': 1.0, 'idk': 1.0, 'came': 1.0, 'brings': 1.0, 'packaging': 1.0, 'of': 2.0, 'kits': 1.0, 'says': 1.0, 'both': 1.0, 'spaces': 1.0, 'were': 1.0, 'that': 1.0, 'empty': 1.0}
Word element => {'rip': 1.0, 'wow': 1.0, 'button': 1.0, 'off': 2.0, 'unscrew': 1.0, 'to': 3.0, 'had': 1.0, 'you': 1.0, 'working': 2.0, 'the': 3.0, '2': 2.0, 'battery': 1.0, 'i': 1.0, 'what': 1.0, 'does': 1.0, 'day': 1.0, 'toddler': 1.0, 'get': 1.0, 'and': 1.0, 'a': 1.0, 'see': 1.0, 'use': 2.0, 'every': 1.0, 'because': 1.0, 'not': 1.0, 'after': 1.0, 'counter': 1.0, 'this': 1.0, 'stopped': 2.0, 'it': 3.0, 'turn': 1.0, 'days': 2.0, 'of': 1.0, 'on': 1.0, 'months': 1.0, 'my': 1.0, 'ago': 1.0}
Word element => {'worth': 1.0, 'definitely': 1.0, 'away': 1.0, 'he': 1.0, 'now': 1.0, 'toothbrush': 1.0, 'electric': 1.0, 'the': 1.0, 'my': 1.0, 'toddler': 1.0, 'money': 1.0, 'teeth': 1.0, 'brush': 2.0, 'his': 1.0, 'i': 1.0, 'hated': 1.0, 'to': 2.0, 'purchased': 1.0, 'loves': 1.0, 'before': 1.0, 'this': 1.0}
Word element => {'returned': 1.0, 'being': 1.0, 'is': 1.0, 'item': 1.0, 'stops': 1.0, 'again': 2.0, 'brushing': 1.0, 'to': 2.0, 'battery': 1.0, 'readjust': 1.0, 'cap': 1.0, 'get': 1.0, 'and': 2.0, 'a': 1.0, 'so': 1.0, 'could': 1.0, 'have': 1.0, 'work': 1.0, 'toddler': 1.0, 'our': 2.0, 'then': 1.0, 'similar': 1.0, 'toothbrush': 1.0, 'bought': 1.0, 'as': 1.0, 'must': 1.0, 'during': 1.0, 'we': 2.0, 'remove': 1.0, 'vibrates': 1.0, 'unfortunately': 1.0, 'randomly': 1.0, 'ones': 1.0, 'the': 2.0, 'this': 2.0, 'sonic': 1.0, 'it': 3.0, 'often': 1.0}
Word element => {'infant': 1.0, 'at': 1.0, 'order': 1.0, 'can': 1.0, 'my': 1.0, 'to': 1.0, 'product': 1.0, 'likes': 1.0, 'child': 1.0, 'day': 1.0, 'as': 1.0, 'only': 1.0, 'this': 1.0, 'more': 1.0, 'the': 2.0, 't': 1.0, 'good': 1.0, 'if': 1.0, 'problem': 1.0, 'brush': 1.0, 'summer': 1.0, 'really': 1.0, 'is': 1.0, 'use': 1.0, 'every': 1.0, 'doesn': 1.0, 'last': 1.0, 'online': 1.0, 'used': 1.0, 'long': 1.0}
Word element => {'item': 1.0, 'this': 1.0, 'brushing': 1.0, 'is': 1.0, 'granddaughter': 1.0, 'old': 1.0, 'with': 1.0, 'year': 1.0, 'two': 1.0, 'more': 1.0, 'my': 1.0}
Word element => {'busing': 1.0, 'just': 1.0, 'do': 1.0, 'it': 1.0, 'i': 1.0, 'should': 1.0, 'the': 1.0, 've': 1.0, 'read': 1.0, 'toothbrush': 1.0, 'reviews': 1.0, 'anything': 1.0, 'useless': 1.0, 'is': 1.0, 'on': 2.0, 't': 1.0, 'this': 2.0, 'doesn': 1.0, 'vibration': 1.0}
Word element => {'helps': 1.0, 'problems': 1.0, 'won': 1.0, 'them': 1.0, 'bit': 2.0, 'solve': 1.0, 'to': 1.0, 'getting': 1.0, 'but': 1.0, 'toddler': 1.0, 'trouble': 1.0, 'this': 1.0, 'it': 3.0, 'having': 1.0, 'action': 1.0, 'is': 1.0, 'are': 1.0, 't': 1.0, 'the': 1.0, 'more': 1.0, 'you': 1.0, 'fun': 1.0, 'if': 1.0, 'your': 2.0, 'makes': 1.0, 'a': 2.0, 'easier': 1.0, 'automatic': 1.0, 'brush': 1.0, 'for': 1.0}
Word element => {}
Word element => {'grade': 1.0, 'no': 1.0, 'there': 1.0, 'pet': 1.0, 'although': 1.0, 'contain': 1.0, 'that': 3.0, 'confident': 1.0, 'because': 1.0, 'why': 1.0, 'standards': 1.0, 'new': 1.0, 'are': 5.0, 'they': 2.0, 'baby': 1.0, 'them': 1.0, 'buy': 1.0, 'days': 1.0, 'instant': 1.0, 'dishwasher': 1.0, 'in': 2.0, 'dried': 1.0, 'good': 1.0, 'clean': 1.0, 'her': 1.0, 'sweep': 1.0, 'or': 1.0, 'tends': 1.0, 'cats': 1.0, 'after': 1.0, 'food': 3.0, 'elderly': 1.0, 'make': 1.0, 'bowl': 1.0, 'be': 1.0, 'silicone': 1.0, 'got': 1.0, 'every': 2.0, '34': 2.0, 'once': 1.0, 'of': 1.0, 'placemats': 1.0, 'love': 1.0, 'for': 2.0, 'manufacturing': 1.0, 'one': 1.0, 'was': 1.0, 'mats': 3.0, 'these': 3.0, 'chemicals': 1.0, 'pets': 2.0, 'we': 2.0, 'a': 1.0, 't': 3.0, 'around': 1.0, 'more': 2.0, 'to': 1.0, 'our': 2.0, 'as': 2.0, 'feel': 1.0, 'big': 1.0, 'floor': 1.0, 'couldn': 1.0, 'getting': 1.0, 'cleaning': 1.0, 'few': 1.0, 'meal': 1.0, 'tiresome': 1.0, 'mess': 1.0, 'i': 3.0, 'the': 4.0, 'possibly': 1.0, 'pleased': 1.0, 'with': 1.0, 'sold': 1.0, 'toss': 1.0, 'and': 4.0, 'bowls': 1.0, 'don': 2.0, 'harmful': 1.0, 'slip': 1.0, 'slide': 1.0, 'an': 1.0, 'rinse': 1.0}
Word element => {'a': 1.0, 'ever': 1.0, 'who': 1.0, 'greatest': 1.0, 'teenage': 1.0, 'the': 1.0, 'not': 1.0, 'was': 1.0, 'he': 1.0, 'nothing': 1.0, 'shakespeare': 1.0, 'is': 2.0, 'with': 1.0, 'hipster': 1.0, 'about': 1.0, 'it': 1.0, 'wrong': 1.0, 'playwright': 1.0, 'there': 1.0, 'you': 1.0, 'what': 1.0, 'lived': 1.0, 'people': 1.0}
Word element => {'base': 1.0, 'wood': 1.0, 'scrapes': 1.0, 'paint': 1.0, 'stable': 1.0, 'are': 1.0, 'support': 1.0, 'on': 1.0, 'snap': 1.0, 'strength': 1.0, 'of': 1.0, 'a': 1.0, 'need': 1.0, 'child': 2.0, 'if': 2.0, 'level': 2.0, 'multiple': 1.0, 'too': 1.0, 'difficult': 1.0, 'off': 1.0, 'or': 1.0, 'using': 1.0, 'for': 3.0, 'you': 1.0, 'double': 1.0, 'tracks': 2.0, 'able': 1.0, 'stack': 1.0, 'but': 2.0, 'track': 1.0, 'will': 1.0, 'be': 2.0, 'to': 2.0, 'doing': 1.0, 'building': 1.0, 'the': 6.0, 'your': 1.0, 'they': 2.0, 'lot': 1.0, 'may': 1.0, 'triple': 1.0, 'assemble': 1.0, 'very': 1.0, 'as': 1.0}
Word element => {'this': 1.0, 'opened': 1.0, 'excited': 1.0, 'nice': 1.0, 'plastic': 1.0, 'so': 1.0, 'however': 1.0, 'it': 1.0, 'she': 2.0, 'birthday': 1.0, 'when': 1.0, 'old': 1.0, 'buy': 1.0, '5': 1.0, 'within': 1.0, 'bought': 1.0, 'melissa': 1.0, 'floor': 1.0, 'my': 1.0, 'money': 1.0, '2': 1.0, 'the': 1.0, 'set': 2.0, 'of': 1.0, 'year': 1.0, 'product': 1.0, 'for': 1.0, 'minutes': 1.0, 'was': 1.0, 'granddaughter': 1.0, 'had': 1.0, 'i': 1.0, 'two': 1.0, 'foods': 1.0, 'cracks': 1.0, 'in': 1.0, 'them': 1.0, 'if': 1.0, 'they': 2.0, 'hardwood': 1.0, 'fall': 1.0, 'your': 1.0, 'on': 2.0, 'waste': 1.0, 's': 1.0, 't': 1.0, 'a': 3.0, 'will': 1.0, 'crack': 1.0, 'doug': 1.0, 'and': 2.0, 'don': 1.0}
Word element => {'outgrows': 1.0, 'up': 1.0, 'size': 1.0, 'but': 1.0, 'night': 1.0, 'the': 1.0, 'my': 1.0, 'she': 1.0, 'gown': 1.0, 'next': 1.0, 'is': 1.0, 'still': 1.0, 'adorable': 1.0, 'daughter': 1.0, 'this': 3.0, 'loves': 1.0, 'one': 1.0, 'when': 1.0, 'i': 1.0, 'definitely': 1.0, 'dress': 1.0}
Word element => {'taupe': 1.0, 'color': 1.0, 'soft': 1.0, 'it': 2.0, 'out': 1.0, 'for': 1.0, 'blanket': 1.0, 'amazing': 1.0, 'knew': 1.0, 'little': 1.0, 'a': 2.0, 'incredibly': 1.0, 'another': 1.0, 'got': 1.0, 'oldest': 1.0, 'so': 1.0, 'we': 3.0, 'and': 2.0, 'get': 1.0, 'nicely': 1.0, 'great': 1.0, 'the': 2.0, 'washes': 1.0, 'when': 1.0, 'giraffe': 1.0, 'coming': 1.0, 'second': 1.0, 'is': 2.0, 'had': 1.0, 'was': 1.0, 'to': 1.0}
Word element => {'next': 1.0, '0z': 1.0, 'looking': 1.0, 'mouth': 1.0, 'his': 2.0, 'out': 1.0, 'runs': 1.0, 'no': 1.0, 'of': 1.0, 'there': 1.0, 'and': 2.0, 'tops': 1.0, 'age': 3.0, '8': 1.0, 'formula': 1.0, 'all': 1.0, 'over': 1.0, 'new': 1.0, 'the': 3.0, 'appropriate': 1.0, 'grandson': 1.0, 'little': 1.0, 'bottle': 1.0, 'particular': 1.0, 'prefers': 1.0, 'a': 1.0, 'that': 1.0, 'our': 1.0, 'easy': 1.0, 'bottles': 2.0, 'he': 1.0, 'this': 1.0, 'it': 1.0, 'him': 1.0, 'is': 3.0, 'handle': 1.0, 'for': 2.0, 'upgrade': 1.0, 'eater': 1.0, 'fast': 1.0, 'to': 4.0, 'very': 1.0}
Word element => {'clearer': 1.0, 'product': 2.0, 'this': 1.0, 'mattress': 1.0, 'in': 1.0, 'for': 1.0, 'make': 1.0, 'the': 3.0, 'playyard': 1.0, 'two': 1.0, 'comes': 1.0, 'that': 1.0, 'there': 1.0, 'description': 1.0, 'included': 1.0, 'is': 1.0, 'with': 1.0, 'but': 1.0, 'mattresses': 1.0, 'bassinet': 1.0, 'no': 1.0, 'should': 1.0, 'sheet': 1.0}
Word element => {'be': 1.0, 'the': 1.0, 'when': 1.0, 'for': 1.0, 'washed': 1.0, 'up': 1.0, 'soft': 1.0, 'whole': 1.0, 'this': 1.0, 'it': 2.0, 'without': 1.0, 'blanket': 1.0, 'ect': 1.0, 'sleep': 1.0, 'is': 1.0, 'not': 1.0, 'back': 1.0, 'will': 1.0, 'my': 1.0, 'and': 1.0, 'son': 1.0, 'as': 1.0, 'needs': 1.0, 'body': 1.0, 'other': 1.0, 'we': 1.0, 'enough': 1.0, 'to': 2.0, 'purchased': 1.0, 'cover': 1.0, 'long': 1.0, 'his': 1.0, 'a': 1.0}
Word element => {'5': 1.0, '34': 2.0, 'least': 1.0, 'at': 1.0, 'if': 1.0, 'perfect': 1.0, 'd': 1.0, 'tastes': 1.0, 'my': 1.0, 'giraffes': 1.0, 'thick': 1.0, '1': 2.0, 'and': 3.0, 'very': 1.0, 'or': 1.0, 'quite': 1.0, 'they': 5.0, 'for': 1.0, 'love': 1.0, 'looked': 1.0, 'cute': 2.0, 'ordered': 1.0, 'wider': 1.0, 'wide': 1.0, 'were': 1.0, 'thought': 1.0, 'but': 1.0, 'i': 2.0, 'are': 2.0, 'these': 1.0, 'the': 1.0, 'be': 1.0, 'material': 1.0, 'because': 1.0, 'not': 1.0, 'is': 1.0, 'absorbent': 1.0, 'enough': 1.0}
Word element => {'on': 1.0, 'snapped': 1.0, 'older': 1.0, 'gets': 1.0, 'better': 1.0, 'fit': 1.0, 'little': 1.0, 'out': 1.0, 'hang': 1.0, 'then': 1.0, 'be': 1.0, 'untucked': 1.0, 'edges': 2.0, 'outer': 2.0, 'and': 2.0, 'tucked': 1.0, 'baby': 1.0, 'underneath': 1.0, 'my': 1.0, 'snap': 1.0, 'close': 1.0, 'a': 4.0, '34': 2.0, 'rather': 2.0, 'of': 2.0, 'layer': 2.0, 'instead': 1.0, 'use': 1.0, 'waist': 1.0, 'as': 3.0, 'to': 3.0, 'her': 1.0, 'last': 1.0, 'seems': 1.0, 'also': 1.0, 'will': 2.0, 'can': 1.0, 'she': 1.0, 'it': 5.0, 'fitted': 1.0, 'come': 2.0, 'wrap': 1.0, 'the': 10.0, 'diaper': 3.0, 'i': 4.0, 'guess': 1.0, 'long': 1.0, 'hard': 1.0, 'while': 1.0, 'properly': 1.0, 'snaps': 2.0, 'plastic': 2.0, 'how': 1.0, 'wonder': 1.0, 'easily': 1.0, 'traditional': 1.0, 'proofing': 1.0, 'when': 2.0, 'small': 1.0, 'have': 2.0, 'deteriorate': 1.0, 'so': 1.0, 'bit': 1.0, 'way': 1.0, 'into': 1.0, 'that': 1.0, 'water': 1.0, 'together': 1.0, 'explain': 1.0, 'pul': 1.0, 'is': 2.0, 'odd': 1.0, 'function': 1.0, 'they': 1.0, 'does': 2.0, 'because': 1.0, 'are': 1.0}
Word element => {'in': 1.0, 'pioneer': 1.0, 'dmdr': 1.0, 'lord': 2.0, 'best': 1.0, 'be': 1.0, 'not': 1.0, 'may': 1.0, 'balance': 1.0, 'whose': 1.0, 'person': 1.0, 'assist': 1.0, 'same': 1.0, 'at': 1.0, 'take': 1.0, 'for': 1.0, 'possible': 1.0, 'makes': 1.0, 'someone': 1.0, 'you': 1.0, 'living': 1.0, 'with': 3.0, 'therapeutically': 1.0, 'it': 2.0, 'pouch': 1.0, 'use': 1.0, 'purchased': 1.0, 'stories': 1.0, 'their': 2.0, 'that': 1.0, 'nurturing': 1.0, 'such': 1.0, 'the': 5.0, 'to': 2.0, 'dolls': 2.0, 'was': 1.0, 'hold': 1.0, 'coaching': 1.0, 'invokes': 1.0, 'emotions': 1.0, 's': 3.0, 'a': 3.0, 'reborn': 2.0, 'alzheimer': 3.0, 'one': 1.0, 'baby': 3.0, 'have': 1.0, 'item': 1.0, 'ethelle': 2.0, 'individuals': 1.0, 'doll': 3.0, 'there': 1.0, 'of': 3.0, 'are': 1.0, 'marie': 1.0, 'this': 2.0, 'pictures': 1.0, 'lassie': 1.0, 'on': 2.0, 'two': 1.0, 'becomes': 1.0, 'i': 2.0, '4': 1.0, 'page': 1.0, 'remembering': 1.0, 'time': 1.0, 'reality': 1.0, 'dialogue': 1.0, 'pulls': 1.0, 'and': 2.0}
Word element => {'features': 1.0, 'some': 1.0, 'ways': 1.0, 'those': 1.0, 'refining': 1.0, 'bill': 1.0, 'design': 1.0, 'important': 1.0, 'items': 1.0, 'since': 1.0, 'summary': 1.0, 'shoddy': 1.0, 'last': 1.0, 'longevity': 1.0, 'moist': 1.0, 'wipe': 1.0, 'often': 1.0, 'given': 1.0, 'make': 1.0, 'goes': 1.0, 'as': 1.0, 'issue': 1.0, 'will': 2.0, 'patches': 1.0, 'strips': 1.0, 'there': 1.0, 'them': 1.0, 'ingesting': 1.0, 'seems': 1.0, 'off': 2.0, 'finish': 1.0, 'though': 1.0, 'problem': 1.0, 'least': 1.0, 'gets': 1.0, 'admittedly': 1.0, 'although': 1.0, 'variety': 1.0, 'wish': 1.0, 'outstanding': 1.0, 'use': 1.0, 'supposed': 1.0, '3': 1.0, 'about': 1.0, 'cloth': 1.0, 'flaking': 1.0, 'even': 1.0, 'haven': 2.0, 'over': 1.0, 'work': 1.0, 'needs': 1.0, 'what': 1.0, 'hanging': 1.0, 'standpoint': 2.0, 'appealing': 1.0, 'need': 1.0, 'or': 1.0, 'claim': 1.0, 'warp': 1.0, 'dry': 1.0, 'not': 2.0, 'me': 1.0, 'much': 1.0, 'biggest': 1.0, 'only': 1.0, 'harness': 1.0, 'shouldn': 1.0, 'we': 5.0, 'obviously': 1.0, 'dish': 1.0, 't': 4.0, 'conscious': 1.0, 'think': 1.0, 'months': 1.0, 'except': 1.0, 'any': 1.0, 'probably': 1.0, 'drainer': 1.0, 'affixes': 1.0, 'have': 1.0, 'a': 7.0, 'small': 1.0, 'household': 1.0, 'fact': 2.0, 'from': 2.0, 's': 1.0, 'positives': 1.0, 'chair': 9.0, 'with': 4.0, 'dirty': 1.0, 'full': 1.0, 'piece': 2.0, 'overlay': 1.0, 'aesthetic': 1.0, 'minimal': 1.0, 'son': 1.0, 'coming': 1.0, 'i': 6.0, 'time': 2.0, 'worried': 1.0, 'uses': 1.0, 'colors': 1.0, 'start': 3.0, 'more': 3.0, 'is': 10.0, 'splinter': 1.0, 'of': 8.0, 'the': 19.0, 'but': 3.0, 'so': 1.0, 'can': 3.0, 'all': 1.0, 'fits': 2.0, 'an': 4.0, 'and': 8.0, 'plastic': 5.0, 'how': 1.0, 'our': 4.0, 'grow': 1.0, 'pads': 3.0, 'yet': 1.0, 'he': 1.0, 'love': 1.0, 'for': 6.0, 'to': 10.0, 'high': 4.0, 'in': 5.0, 'seat': 1.0, 'm': 1.0, 'let': 1.0, 'years': 2.0, 'experiencing': 1.0, 'really': 4.0, 'trying': 1.0, 'granted': 1.0, 'be': 4.0, 'non': 2.0, 'offered': 1.0, 'warm': 1.0, 'aren': 1.0, 'they': 2.0, 'cut': 1.0, 'soaking': 1.0, 'infant': 1.0, 'wood': 1.0, 'removed': 3.0, 'long': 1.0, 'noticed': 1.0, 'on': 4.0, 'amount': 1.0, 'down': 2.0, 'us': 1.0, 'also': 2.0, 'like': 1.0, 'become': 1.0, 'used': 1.0, 'many': 1.0, 'where': 1.0, 'especially': 1.0, 're': 1.0, 'come': 1.0, 'posts': 1.0, 'very': 1.0, 'this': 9.0, 'few': 1.0, 'large': 1.0, 'just': 2.0, 'product': 1.0, 'child': 1.0, 'products': 1.0, 'remembers': 1.0, 'stained': 1.0, 'it': 5.0, 'happening': 2.0, 'relatively': 1.0, 'easy': 1.0, 'tub': 1.0, 'clean': 1.0, 'after': 1.0, 'tray': 4.0, 'enough': 1.0, 'because': 2.0, 'flakes': 1.0, 'that': 7.0, 'easily': 3.0, 'furniture': 2.0, 'something': 1.0, 'straps': 1.0, 'worry': 1.0, 'seriously': 1.0, 'environmentally': 1.0, 'crotch': 2.0, 'white': 1.0, 'strap': 3.0, 'are': 3.0, 'cleaning': 2.0, 'soapy': 1.0, 'water': 1.0}
Word element => {'highly': 1.0, 'complaint': 1.0, 'friendly': 1.0, 'years': 1.0, 'continue': 1.0, 'sure': 1.0, 'will': 1.0, 'for': 1.0, 'product': 1.0, 'value': 1.0, 'of': 2.0, 'stages': 1.0, 'built': 1.0, 'sturdy': 1.0, 'in': 1.0, 'my': 1.0, 'extra': 1.0, 't': 1.0, 's': 2.0, 'a': 4.0, 'recommended': 1.0, 'well': 1.0, 'contour': 1.0, 'the': 9.0, 'since': 1.0, 'backrest': 1.0, 'spacious': 1.0, 'and': 8.0, 'very': 2.0, 'son': 2.0, 'think': 1.0, 'lastly': 1.0, 'make': 1.0, 'on': 1.0, 'more': 1.0, 'is': 5.0, 'one': 1.0, 'tray': 1.0, 'i': 4.0, 'touch': 1.0, 'it': 4.0, 'this': 1.0, 'add': 1.0, 'regrets': 1.0, 'new': 1.0, 'use': 1.0, 'wonderful': 1.0, 'that': 1.0, 'loves': 1.0, 'have': 1.0, 'no': 1.0, 'chair': 3.0, 'quality': 1.0, 'general': 1.0, 'look': 1.0, 'great': 1.0, 'comfortable': 2.0, 'feel': 1.0, 'different': 1.0, 'last': 1.0, 'footrest': 1.0, 'clean': 1.0, 'up': 1.0, 'snap': 1.0, 'eco': 1.0, 'am': 1.0, 'easily': 1.0, 'to': 3.0, 'as': 2.0, 'our': 1.0, 'actual': 1.0, 'seat': 2.0, 'are': 1.0, 'workmanship': 1.0, 'removed': 1.0, 'than': 1.0, 'can': 1.0, 'sitting': 1.0}
Word element => {'weeks': 1.0, 'few': 1.0, 'needing': 1.0, 'though': 1.0, 'is': 1.0, 'quality': 1.0, 'poor': 1.0, 'because': 1.0, 'made': 1.0, 'cheaply': 1.0, 'so': 1.0, 'it': 4.0, 'only': 1.0, 'often': 1.0, 'like': 1.0, 'using': 1.0, 'cheap': 1.0, 'for': 1.0, 'out': 2.0, 'to': 1.0, 'as': 1.0, 'all': 1.0, 'already': 1.0, 'falling': 2.0, 'in': 1.0, 'next': 1.0, 'that': 1.0, 'been': 1.0, 'one': 1.0, 'months': 1.0, 'on': 1.0, 'materials': 1.0, 'don': 1.0, 'a': 1.0, 'we': 2.0, 's': 1.0, 'go': 1.0, 't': 2.0, 'clearly': 1.0, 'diaper': 2.0, 'the': 5.0, 'bag': 2.0, 'and': 3.0, 'within': 1.0, 'be': 1.0, 'multiple': 1.0, 'places': 1.0, 'new': 1.0, 'would': 1.0, 'super': 2.0, 've': 1.0, 'lining': 1.0, 'many': 1.0, 'll': 1.0, 'inside': 1.0, 'ripping': 1.0, 'of': 1.0, '2': 1.0, 'shoulder': 1.0, 'straps': 1.0, 'i': 1.0, 'seams': 1.0, 'buy': 1.0, 'pulling': 1.0, 'looking': 1.0, 'strained': 1.0, 'even': 1.0, 'pockets': 1.0, 'are': 2.0, 'useful': 1.0, 'apart': 2.0, 'if': 1.0, 'this': 1.0, 'weren': 1.0}
Word element => {'crib': 1.0, 'his': 1.0, 'in': 1.0, 'spend': 1.0, 'to': 1.0, 'will': 1.0, 'bedding': 1.0, 'made': 2.0, 'different': 1.0, 'the': 1.0, 'great': 1.0, 'love': 2.0, 'this': 1.0, 'with': 1.0, 'it': 2.0, 'is': 2.0, 'pictures': 1.0, 'snoopy': 1.0, 'i': 2.0, 'set': 1.0, 'of': 1.0, 'fuzzy': 1.0, 'purchase': 1.0, 'every': 1.0, 'baby': 1.0, 'all': 1.0, 'fabric': 2.0, 'and': 1.0, 'my': 1.0, 'color': 1.0, 'from': 1.0, 'think': 1.0, 'time': 1.0, 'boy': 1.0}
Word element => {'print': 1.0, 'dragon': 1.0, 'wonderful': 1.0, 'a': 1.0, 'make': 1.0, 'would': 1.0, 'if': 1.0, 'love': 1.0, 'one': 1.0, 'i': 1.0, 'does': 1.0, 'new': 1.0, 'they': 1.0, 'our': 2.0, 'only': 1.0, 'blankets': 1.0, 'unicorn': 1.0, 'muslin': 1.0, 'celtic': 1.0, 'so': 1.0, 'with': 1.0, 'son': 1.0, 'now': 1.0}
Word element => {'land': 1.0, 'bambino': 1.0, 'use': 1.0, 'old': 1.0, 'though': 1.0, 'summer': 1.0, 'more': 1.0, 'is': 2.0, 'current': 1.0, 'for': 2.0, 'love': 1.0, 'price': 1.0, 'will': 1.0, 'unicorn': 1.0, 'are': 1.0, 'a': 2.0, 'they': 2.0, 'already': 1.0, 'these': 2.0, 'the': 1.0, 'muslin': 1.0, 'baby': 1.0, 'them': 1.0, 'softer': 1.0, 'spendy': 1.0, 'even': 1.0, 'than': 1.0, 'be': 1.0, 'constantly': 1.0, 'and': 1.0, '2': 1.0, 'blankets': 1.0, 'with': 1.0, 'swaddles': 2.0, 'first': 1.0, 'i': 4.0, '4': 1.0, 'looking': 1.0, 'days': 1.0, 'had': 1.0, 'was': 1.0, 'perfect': 1.0, 'wish': 1.0, 'this': 1.0, 'found': 1.0, 'print': 1.0, 'ordered': 1.0, 'my': 1.0, 'only': 1.0, 'pack': 1.0, 'cheaper': 1.0, 'am': 1.0, 'when': 1.0}
Word element => {'in': 1.0, 'right': 1.0, 'need': 1.0, 'course': 1.0, 'one': 1.0, 'ordering': 1.0, 'usually': 1.0, 'delivery': 1.0, 'giving': 1.0, 'within': 1.0, 'but': 1.0, 'her': 3.0, 'carseat': 2.0, 'away': 1.0, 'attached': 1.0, 'still': 1.0, 'old': 1.0, 'yr': 1.0, '5': 1.0, 'for': 3.0, 'cannot': 1.0, 'using': 2.0, 'his': 2.0, 'of': 5.0, 'has': 1.0, 'he': 1.0, 'tremendous': 1.0, 'with': 2.0, 'gift': 2.0, 'children': 1.0, 'control': 1.0, 'these': 3.0, 'great': 1.0, 'feels': 1.0, '4': 1.0, 'i': 3.0, 'caregiver': 1.0, 'have': 1.0, 'comes': 1.0, 'is': 5.0, 'and': 4.0, 'the': 11.0, 'reach': 2.0, 'get': 1.0, 'sure': 2.0, 'service': 1.0, 'lasso': 3.0, 'retrieve': 1.0, 'state': 1.0, 'child': 2.0, 'out': 2.0, 'blessing': 1.0, '40': 1.0, 'to': 3.0, 'had': 1.0, 'she': 1.0, 'it': 2.0, 'colorful': 1.0, 'little': 1.0, 'changing': 1.0, 'been': 1.0, 'unhappiness': 1.0, 'fantastic': 1.0, 'am': 1.0, 'when': 1.0, 'cup': 3.0, 'my': 2.0, 'a': 2.0, 'ago': 1.0, 'wish': 1.0, 'm': 1.0, 'both': 1.0, '34': 4.0, 'years': 2.0, 'are': 1.0, 'sippy': 2.0, 'quality': 1.0, 'time': 1.0, 'so': 1.0, 'grandchildren': 1.0}
Word element => {'buy': 1.0, 'sheet': 1.0, 'nicely': 1.0, 'fits': 1.0, 'and': 2.0, 'do': 1.0, 'don': 1.0, 'which': 1.0, 'dryer': 1.0, 'snug': 1.0, 'i': 4.0, 'but': 1.0, 'will': 1.0, 'secure': 1.0, 'once': 1.0, 'of': 2.0, 'on': 1.0, 'put': 1.0, 'washed': 1.0, 'happy': 1.0, 'nervous': 1.0, 'even': 1.0, 'the': 5.0, 't': 1.0, 'a': 2.0, 'half': 1.0, 'has': 1.0, 'well': 1.0, 'very': 2.0, 'little': 1.0, 'probably': 1.0, 'crib': 2.0, 'how': 1.0, 'usually': 1.0, 'than': 1.0, 'because': 1.0, 'breathable': 1.0, 'weather': 1.0, 'material': 2.0, 'was': 1.0, 'now': 1.0, 'had': 1.0, 'it': 3.0, 'with': 3.0, 'to': 1.0, 'our': 1.0, 'more': 2.0, 'is': 1.0, 'sheets': 2.0, 'm': 1.0, 'absolutely': 1.0, 'mattress': 2.0, 'this': 4.0, 'perfect': 1.0, 'would': 1.0, 've': 1.0, 'regular': 1.0, 'in': 1.0, 'fit': 2.0, 'for': 1.0, 'warmer': 1.0, 'still': 1.0, 'lighter': 1.0, 'about': 1.0, 'several': 1.0, 'times': 1.0}
Word element => {'peeling': 1.0, 'no': 1.0, 'washes': 1.0, 'wears': 1.0, 'heat': 1.0, 'summer': 1.0, 'this': 1.0, 'is': 2.0, 'the': 2.0, 'perfect': 1.0, 'light': 1.0, 'sheet': 1.0, 'soft': 1.0, 'it': 1.0, 'great': 2.0, 'crib': 1.0, 'for': 1.0}
Word element => {'fabric': 1.0, 'wonderfull': 1.0}
Word element => {'bag': 1.0, 'problem': 1.0, 'nice': 1.0, 'big': 1.0, 'was': 1.0, 'to': 1.0, 'us': 1.0, 'stroller': 1.0, 'with': 1.0, 'from': 1.0, 'wife': 1.0, 'my': 1.0, 'good': 1.0, 'generally': 1.0, 'in': 1.0, 'we': 1.0, 'a': 1.0, 'internet': 1.0, 'they': 1.0, 'reviews': 1.0, 'are': 2.0, 'revolution': 1.0, 'has': 1.0, 'easier': 1.0, 'some': 1.0, 'of': 1.0, 'not': 1.0, 'me': 1.0, 'too': 1.0, 'and': 5.0, 'strollers': 2.0, 'beach': 1.0, 'best': 1.0, 'for': 1.0, 'expensive': 2.0, 'bob': 1.0, 'sturdy': 1.0, 'travelled': 1.0, 'correct': 1.0, 'the': 2.0, 'find': 1.0, 'cheaper': 1.0, 'bought': 1.0, 'one': 2.0, 'summit': 1.0, 'europe': 1.0, 'seems': 1.0, 'folding': 1.0, 'this': 2.0, 'it': 2.0, 'system': 1.0, 'travel': 1.0, 'front': 1.0, 'much': 1.0, 'wheel': 2.0, 'suspension': 1.0, 'most': 1.0, 'can': 1.0, 'but': 3.0, 'four': 1.0, 'better': 1.0, 'on': 1.0, 'you': 2.0, 'when': 1.0, 'pull': 1.0, 'x3': 1.0, 'more': 1.0, 'is': 1.0}
Word element => {'of': 1.0, 'aware': 1.0, 'be': 1.0, 'crazy': 1.0, 'old': 1.0, 'i': 1.0, 'huge': 1.0, 'and': 1.0, 'its': 1.0, 'but': 1.0, 'ordered': 1.0, 'cute': 1.0, '0': 1.0, 'coat': 1.0, 'fit': 1.0, '3': 1.0, 'month': 2.0, 'this': 3.0, 'it': 1.0, 'is': 1.0, 'really': 1.0, 'looks': 1.0, 'like': 1.0, 'could': 1.0, 'a': 3.0, 'well': 1.0, '12': 1.0, 'over': 1.0}
Word element => {'for': 1.0, 'amazing': 1.0, 'inflated': 1.0, 'have': 1.0, 'grocer': 1.0, 'my': 1.0, 'recieved': 1.0, 'quickly': 1.0, 'super': 2.0, 'sided': 1.0, 'is': 1.0, 'perfect': 1.0, 'than': 1.0, 'and': 4.0, 'double': 1.0, 's': 1.0, 'dolphin': 1.0, 'balloon': 1.0, 'were': 1.0, 'looked': 1.0, 'it': 6.0, 'this': 1.0, 'cute': 1.0, 'birthday': 1.0, 'pink': 1.0, 'local': 1.0, 'party': 2.0, 'a': 1.0, 'design': 1.0, 'we': 1.0, 'the': 2.0, 'decoration': 1.0, 'to': 2.0, 'had': 1.0, 'was': 1.0, 'expected': 1.0, 'larger': 1.0, 'took': 1.0, 'counterpart': 1.0, 'i': 2.0}
Word element => {'but': 1.0, 'for': 1.0, 'expensive': 1.0, 'pretty': 1.0, 'is': 1.0, '20': 1.0, 'think': 1.0, 't': 1.0, 'these': 1.0, 'the': 1.0, 'are': 1.0, 'far': 1.0, 'was': 1.0, 'sturdier': 1.0, 'solid': 1.0, 'very': 1.0, 'like': 1.0, 'my': 1.0, 'regret': 1.0, 'dividers': 1.0, 'than': 2.0, 'wood': 1.0, 'thick': 1.0, 'rather': 1.0, 'expecting': 1.0, 'i': 3.0, 'still': 1.0, 'cute': 1.0, 'composite': 1.0, 'don': 1.0, 'about': 1.0, '8th': 1.0, 'and': 2.0, '1': 1.0, 'purchase': 1.0, 'inch': 1.0, 'feel': 1.0}
Word element => {'past': 1.0, 'in': 1.0, 'my': 1.0, 'them': 1.0, 'think': 1.0, 'don': 1.0, 'compared': 1.0, 'way': 1.0, 'mounted': 1.0, 'returned': 1.0, 'found': 1.0, 'i': 5.0, '4': 1.0, 'sharpness': 1.0, 'with': 2.0, 'lens': 1.0, 'it': 10.0, 'does': 1.0, 'mobi': 2.0, 'around': 1.0, 'difficult': 1.0, 'just': 1.0, 'this': 2.0, 'few': 1.0, 'toward': 1.0, 'worked': 1.0, 'resolution': 1.0, 'days': 2.0, 'a': 4.0, 'small': 1.0, 'have': 3.0, 'at': 1.0, 'ring': 1.0, 'separated': 1.0, 'snug': 1.0, 'able': 1.0, 'didn': 3.0, 'their': 1.0, 'customer': 1.0, 'previous': 2.0, 'use': 2.0, 'work': 1.0, 'but': 1.0, 'additional': 1.0, 'and': 7.0, 'monitor': 4.0, 'downward': 1.0, 'would': 2.0, 'bulky': 1.0, 'great': 2.0, 'of': 2.0, 'the': 14.0, 'unfortunately': 1.0, 'was': 3.0, 'somewhat': 1.0, 'short': 1.0, 'wanted': 1.0, 'adjust': 1.0, 'time': 2.0, 'so': 1.0, 'our': 2.0, 'to': 7.0, 'very': 1.0, 'twist': 1.0, 'recommend': 2.0, 'were': 1.0, 'product': 1.0, 'camera': 3.0, 'folding': 1.0, 'specific': 1.0, 'design': 1.0, 'based': 1.0, 'made': 1.0, 'only': 1.0, 'certain': 1.0, 'be': 2.0, 'extended': 1.0, 'degree': 1.0, 'overall': 1.0, 'before': 1.0, 'tip': 1.0, 'set': 2.0, 'crib': 1.0, 'for': 2.0, 'cord': 1.0, 'when': 1.0, 'that': 2.0, 'easily': 1.0, 'tried': 1.0, 'on': 2.0, 'table': 1.0, 'angle': 1.0, 'could': 2.0, 'usb': 1.0, 'port': 1.0, 'power': 1.0, 'service': 1.0, 'if': 1.0, 'forward': 1.0, 'not': 1.0, 'out': 1.0, 'or': 1.0, 'after': 1.0, 'securely': 1.0, 'dealings': 1.0, 'decent': 1.0, 'had': 1.0, 'representative': 1.0, 'fine': 1.0, 'we': 2.0, 'then': 1.0, 't': 4.0, 'fairly': 1.0, 'fit': 1.0, 'along': 1.0, 'faulty': 1.0}
Word element => {'superior': 1.0, 'reacts': 1.0, 'device': 1.0, 'before': 1.0, 'attempts': 1.0, 'takes': 1.0, 'and': 3.0, 'rechargeable': 1.0, 'camera': 2.0, 'inferior': 1.0, 'ordered': 1.0, 'be': 2.0, 'was': 2.0, 'is': 3.0, 'on': 1.0, 'included': 1.0, 'especially': 1.0, 'picture': 1.0, 'sharp': 1.0, 'i': 5.0, 'several': 1.0, 'separately': 1.0, 'battery': 1.0, 'clear': 1.0, 'touch': 1.0, 'phone': 1.0, 'monitor': 1.0, 'functionality': 1.0, 'the': 7.0, 'not': 2.0, 'product': 1.0, 'for': 2.0, 'dissapointed': 1.0, 'expected': 2.0, 'had': 1.0, 'thought': 1.0, 'it': 4.0, 'with': 1.0, 'cost': 1.0, 'would': 1.0, 'pictures': 1.0, 'to': 2.0, 'as': 2.0, 'comparable': 1.0, 'when': 2.0, 'you': 2.0, 'a': 1.0, 'discovered': 1.0, 's': 1.0, 'take': 1.0, 'an': 1.0, 'money': 1.0, 'but': 1.0, 'quality': 1.0, 'zoom': 1.0, 'average': 1.0, 'or': 1.0, 'lagging': 1.0}
Word element => {'around': 1.0, 'shopping': 1.0, 'recommend': 2.0, 'got': 1.0, 'day': 1.0, '1': 1.0, 'record': 1.0, 'sd': 1.0, 'micro': 1.0, 'monitor': 1.0, 'way': 1.0, 'when': 1.0, 'machine': 1.0, 'like': 1.0, 'noise': 2.0, 'hear': 2.0, 'do': 3.0, 'from': 1.0, 'voice': 1.0, 'has': 1.0, 'also': 1.0, 'song': 1.0, 'all': 1.0, 'an': 1.0, 'rain': 1.0, 'birds': 1.0, 'did': 1.0, 'ocean': 1.0, 'actual': 1.0, 'one': 4.0, 'lullabies': 1.0, 'then': 1.0, 'speaking': 1.0, 'as': 1.0, 'zoom': 1.0, 'closer': 1.0, 'but': 3.0, 'just': 1.0, 'light': 1.0, '8': 1.0, 'nonetheless': 1.0, 'down': 1.0, 'plays': 1.0, 'very': 4.0, 'room': 2.0, 'worry': 1.0, 'speaks': 1.0, 'below': 1.0, 'cool': 1.0, 'again': 1.0, 'wall': 1.0, 'whole': 1.0, 'really': 1.0, 'battery': 2.0, 'on': 1.0, 'think': 3.0, 'takes': 1.0, 'up': 2.0, 'over': 1.0, 'meijer': 1.0, 'deal': 1.0, 'messing': 1.0, 'off': 1.0, 'see': 1.0, 'works': 1.0, 'its': 1.0, 'right': 2.0, 'button': 1.0, 'about': 1.0, 'awesome': 1.0, 'ready': 1.0, 'love': 1.0, 'left': 1.0, 'it': 7.0, 'highly': 1.0, 'this': 3.0, 'look': 1.0, 'is': 10.0, 'vision': 1.0, 'system': 1.0, '10': 2.0, 'for': 2.0, 'cord': 1.0, 'your': 1.0, 'probably': 1.0, 'great': 1.0, 'the': 14.0, 'believe': 1.0, 'bought': 1.0, 'well': 1.0, 'i': 13.0, '4': 1.0, 'you': 5.0, 'night': 2.0, 'and': 6.0, 'only': 1.0, 'rechargeable': 1.0, 'card': 1.0, 'a': 6.0, 'small': 1.0, 'included': 1.0, 'can': 4.0, 'so': 5.0, 'chirping': 1.0, 'time': 1.0, 'in': 3.0, 'price': 1.0, 'video': 1.0, 'child': 1.0, 'camera': 1.0, 'needed': 1.0, 'that': 2.0, 'lasts': 1.0, 'turn': 1.0, 'if': 2.0, 'clear': 1.0, 'recharge': 1.0, 'high': 1.0, 'to': 5.0, 'nap': 1.0, 'not': 5.0, 'morning': 1.0, 'having': 1.0, 'does': 1.0, 'my': 2.0, 'go': 1.0, 'neat': 1.0, 'buy': 1.0, 'hrs': 1.0, 'toddlers': 1.0, 'bundle': 1.0, 'volume': 1.0, 'with': 1.0, 'manual': 1.0, 'pulling': 1.0, 'activation': 1.0, 'talk': 2.0, 'feature': 1.0, 'or': 1.0, 'need': 1.0, 'hold': 1.0, 'ceiling': 1.0, 'while': 1.0, 'good': 1.0, 'which': 1.0, 'made': 1.0, 'by': 2.0, 'bright': 1.0, 'would': 2.0, 'be': 1.0, 'out': 1.0, 'brighter': 1.0, 'hang': 1.0, 'there': 1.0, 'background': 1.0, 'are': 1.0}
Word element => {'return': 1.0, 'difficult': 1.0, 'components': 1.0, 'with': 1.0, 'cheap': 1.0, 'made': 1.0, 'poorly': 1.0, 'this': 1.0, 'was': 1.0, 'plus': 1.0, 'disappointing': 1.0, 'to': 1.0, 'product': 1.0, 'poor': 2.0, 'picture': 1.0, 'very': 2.0, 'quality': 2.0, 'and': 1.0, 'sound': 1.0, 'overall': 1.0}
Word element => {'purchasing': 1.0, 'good': 1.0, 'this': 2.0, 'anything': 1.0, 'setting': 2.0, 'highest': 2.0, 'set': 2.0, 'volume': 2.0, 'with': 1.0, 'through': 1.0, 'barely': 1.0, 'silent': 1.0, 'as': 1.0, 'surprised': 1.0, 'be': 1.0, 'their': 1.0, 'never': 1.0, 'strongly': 1.0, 'had': 1.0, 'since': 1.0, 'advise': 1.0, 'decided': 1.0, '2nd': 1.0, 'try': 1.0, 'one': 2.0, '1st': 1.0, 'defective': 2.0, 'replace': 1.0, 'second': 2.0, 'nice': 1.0, 'were': 1.0, '13i': 1.0, '01': 1.0, 'very': 1.0, 'fix': 1.0, 'yet': 1.0, 'from': 1.0, 'flaws': 1.0, 'hide': 1.0, 'wrong': 1.0, 'seller': 2.0, 'you': 1.0, 'in': 3.0, 'note': 1.0, 'owned': 1.0, 'give': 1.0, 'contact': 2.0, 'there': 1.0, 'won': 1.0, 'shouldn': 1.0, 'then': 1.0, 'process': 1.0, 'before': 1.0, 'turnaround': 1.0, 'monitoring': 1.0, 'another': 1.0, 'unusableworse': 1.0, 'even': 2.0, 'contacted': 2.0, 'have': 2.0, 'bad': 1.0, 'button': 1.0, 'right': 1.0, 'power': 2.0, 'literally': 1.0, 'hold': 2.0, 'short': 1.0, 'wanted': 1.0, 'wait': 1.0, 'down': 1.0, 'light': 2.0, 'just': 1.0, 'refuses': 1.0, 'want': 3.0, 'disappointed': 1.0, 'how': 2.0, 'received': 2.0, 't': 2.0, 'replacement': 1.0, 'out': 2.0, 'and': 9.0, 'hear': 1.0, 'green': 1.0, 'matter': 1.0, 'whole': 1.0, 'no': 1.0, 'monitor': 4.0, 'told': 1.0, 'dxr': 2.0, 'baby': 3.0, 'them': 3.0, 'cover': 1.0, 'send': 1.0, 'company': 2.0, 'red': 1.0, 'problem': 1.0, 'touch': 2.0, '10': 1.0, 'for': 9.0, 'or': 1.0, 'into': 1.0, 'that': 4.0, 'against': 1.0, 'to': 18.0, 'products': 2.0, 'product': 4.0, 'camera': 4.0, 'if': 1.0, 'turn': 2.0, 'said': 1.0, 'not': 7.0, 'my': 2.0, 'me': 4.0, 'guess': 1.0, 'system': 2.0, 'order': 2.0, 'turns': 1.0, 'after': 2.0, '9': 1.0, 'it': 3.0, 'does': 1.0, 'mobi': 5.0, 'failed': 1.0, 'plugging': 1.0, 'well': 1.0, 'outlet': 1.0, 'i': 11.0, 'mobicam': 2.0, 'update': 1.0, 'long': 1.0, 'on': 6.0, 'but': 4.0, 'work': 1.0, 'thing': 2.0, '2': 2.0, 'all': 2.0, 'an': 2.0, 'at': 1.0, 'is': 6.0, 'asks': 1.0, 'ask': 1.0, 'make': 1.0, 'sound': 1.0, 'resolve': 1.0, 'issue': 1.0, 'they': 9.0, 'will': 5.0, 'could': 1.0, 'a': 8.0, 'funny': 1.0, 's': 2.0, 'something': 1.0, 'ship': 5.0, 'what': 1.0, 'room': 1.0, 'once': 1.0, 'the': 33.0, 'of': 3.0, 'receive': 2.0, 'directly': 1.0, 'making': 1.0, 'back': 2.0, 'pay': 2.0, 'box': 2.0, 'shipping': 3.0, '250': 1.0, 'about': 1.0, '300': 1.0, 'did': 1.0, 'ear': 1.0, 'rep': 1.0, 'come': 1.0, 'dealers': 1.0, 'phone': 1.0, 'owner': 1.0, 'enough': 2.0, 'weeks': 1.0, 'would': 2.0, 'new': 1.0, 'unusable': 1.0, 'away': 1.0, 'd': 1.0}
Word element => {'ended': 1.0, 'simple': 1.0, 'response': 1.0, 'didn': 1.0, 'about': 1.0, 'before': 1.0, 'received': 1.0, 'timely': 1.0, 'problem': 1.0, 'mails': 1.0, 'amazon': 1.0, 'through': 1.0, 'back': 1.0, 'able': 1.0, 'reason': 1.0, 'not': 1.0, 'me': 1.0, 'set': 3.0, 'model': 1.0, 'obtained': 1.0, 'easy': 1.0, 'happening': 1.0, 'different': 1.0, 'sufficient': 1.0, 'good': 2.0, 'image': 1.0, 'audio': 1.0, 'manufacturer': 1.0, 'like': 1.0, 'which': 1.0, 'but': 2.0, '2': 3.0, 'without': 1.0, 'the': 13.0, 'in': 1.0, 'camera': 2.0, 'sent': 1.0, 'cameras': 1.0, 'of': 5.0, 'happened': 1.0, 'idea': 3.0, 'therefore': 1.0, 'this': 2.0, 'only': 1.0, 'buying': 1.0, 'with': 1.0, 'higher': 1.0, 'it': 2.0, 'don': 1.0, 'up': 4.0, 'child': 1.0, 'second': 1.0, 'm': 1.0, 'appealing': 1.0, 'daughter': 1.0, '4': 1.0, 'i': 9.0, 'ship': 1.0, 'what': 1.0, 'purchased': 1.0, 'worried': 1.0, 'manner': 1.0, 'having': 2.0, 'because': 1.0, 'have': 2.0, 'year': 1.0, 't': 3.0, 'going': 1.0, 'a': 10.0, 'asking': 1.0, 'and': 4.0, 'very': 3.0, 'monitor': 2.0, 'issue': 1.0, 'one': 1.0, 'sounded': 1.0, 'company': 1.0, 'my': 2.0, 'however': 1.0, 'hear': 1.0, 'stars': 1.0, 'for': 2.0, 'actually': 1.0, 'where': 1.0, 'product': 2.0, 'refund': 1.0, 'expecting': 1.0, 'was': 8.0, 'to': 6.0, 'volume': 4.0, 'returning': 1.0, 'low': 1.0, 'old': 1.0, 'point': 1.0, 'wasn': 1.0, 'e': 1.0, 'call': 1.0}
Word element => {'highly': 1.0, 'this': 1.0, 'perfect': 1.0, 'problem': 1.0, 'no': 1.0, 'about': 1.0, 'set': 1.0, 'and': 4.0, 'bedroom': 1.0, 'technologically': 1.0, 'the': 4.0, 'recommend': 1.0, 'was': 4.0, 'to': 3.0, 'not': 1.0, 'i': 4.0, 'clear': 1.0, 'have': 1.0, 'babies': 2.0, 'am': 1.0, 'needed': 1.0, 'easy': 3.0, 'still': 1.0, 'under': 1.0, 'reception': 1.0, '2': 2.0, 'most': 1.0, 'use': 1.0, 'it': 1.0, 'has': 1.0, 'a': 1.0, 'advanced': 1.0, 'split': 1.0, 'something': 1.0, 'super': 1.0, 'screen': 1.0, 'up': 1.0, 'sound': 1.0, 'item': 1.0, 'also': 1.0, 'which': 1.0, 'is': 4.0, 'exactly': 1.0, 'excellent': 1.0, 'operate': 1.0, 'what': 1.0, 'nervous': 1.0, 'person': 1.0, 'looking': 1.0, 'for': 1.0, 'picture': 2.0, 'my': 2.0, 'monitor': 1.0, 'very': 1.0, 'from': 1.0, 'far': 1.0, 'so': 1.0}
Word element => {'returning': 1.0, 'beach': 1.0, 'material': 1.0, 'not': 1.0, 'll': 1.0, 'down': 1.0, 'stand': 1.0, 'brightness': 1.0, 'at': 1.0, 'but': 1.0, 'day': 1.0, 'changing': 1.0, 'bright': 1.0, 'for': 1.0, 'appropriate': 1.0, 'is': 1.0, 'nylon': 1.0, 'looks': 1.0, 'it': 3.0, 'two': 1.0, 'i': 4.0, 'be': 2.0, 'putting': 1.0, 'wasn': 1.0, 'hold': 1.0, 'like': 3.0, 'the': 8.0, 'a': 1.0, 't': 3.0, 'due': 1.0, 'bag': 3.0, 'to': 3.0, 'its': 1.0, 'quite': 1.0, 'expecting': 1.0, 'ways': 1.0, 'won': 1.0, 'so': 1.0, 'everyday': 1.0, 'did': 1.0, 'an': 1.0, 'own': 1.0, 'on': 1.0, 'constantly': 1.0, 'size': 2.0, 'of': 1.0, 'pad': 1.0, 'up': 1.0, 'don': 1.0, 'how': 1.0, 'm': 1.0, 'my': 1.0}
Word element => {'buy': 1.0, 'would': 1.0, 'clothing': 1.0, 'onesie': 1.0, 'other': 1.0, 'a': 1.0, 'snaps': 1.0, 'snap': 1.0, 'one': 1.0, 'for': 2.0, 'type': 1.0, 'outfit': 1.0, 'little': 1.0, 'my': 1.0, 'great': 1.0, 'the': 2.0, 'again': 1.0, 'are': 1.0, 'nice': 1.0, 'unlike': 1.0, 'fitting': 1.0, 'soft': 2.0, 'price': 1.0, 'very': 1.0, 'and': 1.0, 'material': 1.0, 'cheaper': 1.0, 'easy': 1.0, 'was': 1.0, 'to': 1.0, 'some': 1.0}
Word element => {'excellent': 1.0, 'overall': 1.0, 'live': 1.0, 'yellow': 1.0, 'just': 1.0, 'was': 1.0, 'wish': 1.0, 'finishes': 1.0, 'gold': 2.0, 'for': 1.0, 'an': 1.0, 'other': 1.0, 'more': 1.0, 'end': 1.0, 'probably': 1.0, 'll': 1.0, 'you': 1.0, 'bigger': 1.0, 'with': 2.0, 'though': 1.0, 'and': 7.0, 'regular': 1.0, 'tuck': 1.0, 'rose': 1.0, 'sling': 1.0, 'or': 1.0, 'but': 2.0, 'aren': 1.0, 'over': 1.0, 'shoulder': 1.0, 'don': 1.0, 'adjust': 1.0, 'high': 1.0, 'to': 2.0, 'quickly': 1.0, 'super': 2.0, 'would': 2.0, 'easy': 2.0, 'bad': 1.0, 'plus': 1.0, 'are': 1.0, 'stroller': 1.0, 'quality': 1.0, 'me': 1.0, 'my': 3.0, 'into': 1.0, 'changing': 1.0, 'box': 1.0, 'when': 2.0, 'genius': 1.0, 'could': 1.0, 'a': 6.0, 'sides': 2.0, 's': 5.0, 't': 2.0, 'front': 1.0, 'looking': 1.0, 'bag': 10.0, 'it': 8.0, 'highly': 1.0, 'bottle': 1.0, 'this': 4.0, 'recommend': 1.0, 'full': 1.0, 'have': 1.0, 'very': 6.0, 'construction': 1.0, 'purchased': 1.0, 'be': 1.0, 'across': 1.0, 'here': 1.0, 'junk': 2.0, 'used': 1.0, 'also': 3.0, 'as': 2.0, 'diaper': 1.0, 'body': 1.0, 'is': 11.0, 'lengthen': 1.0, 'personally': 1.0, 'even': 1.0, 'cooler': 1.0, 'good': 1.0, 'made': 1.0, '34': 2.0, 'the': 15.0, 'of': 6.0, 'cross': 1.0, 'straps': 1.0, 'nicely': 1.0, 'visible': 1.0, 'wipes': 2.0, 'zipped': 1.0, 'pad': 1.0, 'can': 2.0, 'lightweight': 1.0, 'so': 4.0, 'included': 1.0, 'materials': 1.0, 'strap': 2.0, 'cram': 1.0, 'big': 2.0, 'carrying': 1.0, 'throw': 1.0, 'great': 2.0, 'i': 5.0, 'well': 1.0, 'wipe': 1.0, 'packed': 1.0, 'not': 4.0, 'dry': 1.0, 'out': 1.0, 'huge': 1.0, 'in': 2.0, 'opinion': 1.0, 'up': 1.0, 'major': 1.0, 'drawback': 2.0, 'size': 1.0, 'that': 4.0, 'easily': 1.0, 'because': 2.0, 'flexible': 1.0, 'incredible': 1.0, 'second': 1.0, 'durable': 1.0, 'closes': 1.0, 'bunch': 1.0}
Word element => {'so': 1.0, 'am': 1.0, 'because': 1.0, 'several': 1.0, 'bought': 1.0, 'have': 1.0, 'lot': 1.0, 'his': 1.0, 'swallow': 1.0, 'and': 1.0, 'prematurely': 1.0, 'born': 1.0, 'was': 1.0, 'son': 1.0, 'to': 2.0, 'as': 1.0, 'newborn': 1.0, 'therapist': 1.0, 's': 1.0, 'a': 1.0, 'hole': 1.0, 'in': 1.0, 'seems': 1.0, 'for': 1.0, 'he': 2.0, 'perfect': 1.0, 'this': 2.0, 'i': 2.0, 'speech': 1.0, 'bottles': 2.0, 'favorite': 1.0, 'down': 1.0, 'had': 1.0, 'what': 1.0, 'tip': 1.0, 'used': 1.0, 'are': 3.0, 'hands': 1.0, 'the': 7.0, 'some': 1.0, 'these': 1.0, 'feeds': 1.0, 'nipple': 1.0, 'my': 2.0, 'size': 1.0, 'nuk': 2.0, 'after': 1.0, 'birth': 1.0, 'more': 1.0, 'is': 1.0, 'easier': 1.0, 'recommended': 1.0, 'nipples': 1.0, 'opposed': 1.0, 'impressed': 1.0, 'on': 1.0, 'handle': 1.0, 'top': 1.0, 'of': 1.0, 'issues': 1.0, 'help': 1.0, 'him': 1.0}
Word element => {'no': 1.0, 'rather': 1.0, 'from': 1.0, 'drink': 1.0, 'please': 1.0, 'to': 2.0, 'doesn': 1.0, 'have': 1.0, 't': 1.0, 'spill': 1.0, 'difficult': 1.0, 'hard': 1.0, 'promised': 1.0, 'the': 1.0, 'suck': 1.0, 'is': 1.0, 'you': 1.0, 'however': 1.0, 'o': 1.0, 'giggling': 1.0, 'as': 1.0, 'straw': 1.0, 'somewhat': 1.0}
Word element => {'and': 1.0, 'study': 1.0, 'work': 1.0, 'buy': 1.0, 'that': 1.0, 'than': 1.0, 'get': 1.0, 'simpler': 1.0, 'is': 1.0, 'a': 1.0, 't': 1.0, 'bag': 1.0, 'they': 1.0, 'full': 1.0, 'it': 1.0, 'can': 1.0, 'good': 1.0, 'of': 1.0, 'plugs': 1.0, 'safety': 1.0, 'for': 1.0, 'much': 1.0, 'outlets': 1.0}
Word element => {'t': 1.0, 'shouldn': 1.0, 'she': 1.0, 'baby': 1.0, 'shipment': 1.0, 'works': 1.0, 'very': 1.0, 'places': 1.0, 'well': 1.0, 'be': 1.0, 'to': 1.0, 'much': 1.0, 'out': 1.0, 'say': 1.0, 'if': 1.0, 'should': 1.0, 'price': 1.0, 'quick': 1.0, 'not': 1.0, 'else': 1.0, 'keep': 1.0, 'good': 1.0}
Word element => {'have': 1.0, 'we': 1.0, 'proof': 1.0, 'in': 1.0, 'outlet': 1.0, 'use': 1.0, 'every': 1.0, 'house': 1.0, 'will': 1.0, 'don': 1.0, 'tamper': 1.0, 'baby': 1.0, 't': 1.0, 'the': 1.0, 'these': 1.0, 'our': 1.0, 'anymore': 1.0, 'way': 1.0, 'can': 1.0, 'no': 1.0, 'he': 1.0, 'has': 1.0, 'change': 1.0, 'is': 1.0, 'there': 1.0, 'leviton': 1.0, 'i': 1.0, 'barely': 1.0, 'hates': 1.0, 'much': 1.0, 'out': 2.0, 'them': 3.0, 'pull': 2.0, 'my': 1.0, 'because': 1.0, 'volunteered': 1.0, 'to': 3.0, 'husband': 1.0, 'so': 2.0}
Word element => {'little': 1.0, 'protect': 1.0, 'to': 1.0, 'needed': 1.0, 'one': 1.0, 'i': 1.0, 'my': 1.0, 'the': 2.0, 'holes': 1.0, 'is': 1.0, 'clear': 1.0, 'what': 1.0, 'outlet': 1.0, 'blocking': 1.0, 'electrical': 1.0, 'and': 1.0, 'very': 1.0, 'inconspicuous': 1.0, 'neat': 1.0, 'just': 1.0, 'plastic': 1.0, 'perfect': 1.0, 'for': 1.0}
Word element => {'sometimes': 1.0, 'is': 1.0, 'months': 1.0, '18': 1.0, 'little': 1.0, 'my': 1.0, 'can': 1.0, 'boy': 1.0, 'i': 1.0, 'hard': 1.0, 'it': 1.0, 'he': 1.0, 'still': 1.0, 'those': 2.0, 'now': 1.0, 'its': 1.0, 'to': 1.0, 'out': 2.0, 'even': 1.0, 'and': 1.0, 'get': 2.0, 'me': 1.0, 'love': 1.0, 'for': 1.0}
Word element => {'against': 1.0, 'safe': 1.0, 'this': 1.0, 'close': 1.0, 'very': 1.0, 'and': 1.0, 'the': 1.0, 'kid': 1.0, 'can': 1.0, 'open': 1.0, 'turn': 1.0, 'how': 1.0, 'once': 1.0, 'knows': 1.0, 'to': 1.0, 'objects': 1.0, 'easly': 1.0, 'leak': 1.0, 'cup': 1.0, 'he': 1.0}
Word element => {'them': 1.0, 'replace': 1.0, 'thanks': 1.0, 'we': 1.0, 'always': 1.0, 'are': 1.0, 'the': 1.0, 'balls': 1.0, 'great': 1.0, 'be': 1.0, 'loosing': 1.0, 'to': 2.0, 'able': 1.0}
Word element => {'budget': 1.0, 'in': 1.0, 'its': 1.0, 'if': 1.0, 'excellent': 1.0, 're': 1.0, 'been': 1.0, 'have': 2.0, 'would': 2.0, 'sure': 1.0, 'not': 1.0, 'splurge': 1.0, 'm': 1.0, 'price': 1.0, 'crib': 1.0, 'their': 1.0, '100': 1.0, 'addition': 1.0, 'great': 1.0, 'now': 1.0, 'happier': 1.0, 'time': 2.0, 'steal': 1.0, 'they': 2.0, 'immediately': 1.0, 'girls': 1.0, 'use': 1.0, 'these': 1.0, 'steep': 1.0, 'the': 4.0, 'quality': 1.0, 'them': 4.0, 'night': 1.0, 'bought': 2.0, 'be': 1.0, 'plush': 1.0, 'and': 8.0, 'couldn': 1.0, 'but': 1.0, '2': 1.0, 'blankets': 1.0, 'at': 4.0, '10months': 1.0, 'loved': 1.0, 'costco': 1.0, 'for': 2.0, 'love': 1.0, 'an': 1.0, 'will': 1.0, 'apparent': 1.0, 'worthwhile': 1.0, '14': 1.0, 'thick': 1.0, 'nap': 1.0, 'help': 1.0, 'calm': 1.0, 'to': 4.0, 'sleep': 1.0, 'are': 2.0, 'very': 1.0, 'this': 1.0, 'soft': 2.0, 'even': 1.0, 'i': 4.0, 'etc': 1.0, 'later': 1.0, 'rub': 1.0, 'ears': 1.0, 'cuddly': 1.0, 'your': 1.0, 'on': 2.0, 'make': 1.0, 't': 1.0, 'a': 2.0}
Word element => {'dull': 1.0, 'are': 1.0, 'they': 1.0, 'or': 1.0, 'used': 1.0, 'haven': 1.0, 'better': 1.0, 'light': 1.0, 'just': 1.0, 'product': 1.0, 'though': 1.0, 'wish': 1.0, 'sleeper': 1.0, 'very': 1.0, 'nice': 1.0, 'storage': 1.0, 'hassle': 1.0, 'c': 1.0, 'also': 1.0, 'daughter': 1.0, 'when': 1.0, 'far': 1.0, 'over': 1.0, 'pounds': 1.0, 'i': 2.0, 'poor': 1.0, 'nicely': 1.0, '6ft': 1.0, 'station': 1.0, 'music': 1.0, 'but': 1.0, 'change': 3.0, 'holds': 1.0, 'is': 2.0, 'play': 1.0, 'and': 2.0, 'hold': 1.0, 'like': 2.0, 'hangs': 1.0, 'however': 1.0, 'so': 1.0, 'kinda': 3.0, 'n': 1.0, 'the': 8.0, 'tight': 1.0, 'bend': 1.0, 'b': 1.0, 'my': 1.0, 'all': 1.0, 'our': 1.0, 'to': 3.0, 'overall': 1.0, 'husband': 1.0, 'doesn': 1.0, 'was': 2.0, 'rolls': 1.0, 'much': 2.0, 'pack': 1.0, 'it': 2.0, 'remove': 1.0, 'she': 3.0, 'a': 1.0, 's': 1.0, 'we': 3.0, 't': 3.0, 'might': 1.0, 'side': 1.0, '7': 1.0, '2in': 1.0, 'at': 2.0, 'birth': 1.0, 'immediately': 1.0, 'her': 3.0, 'part': 3.0, 'an': 1.0, 'won': 1.0, 'has': 1.0, 'angle': 1.0, 'roll': 1.0, 'loves': 1.0, 'changing': 2.0}
Word element => {'tables': 1.0, 'of': 1.0, 'for': 1.0, 'centerpiece': 1.0, 'a': 1.0, 'boxes': 1.0, 'used': 1.0, 'i': 1.0, 'favors': 1.0, 'box': 1.0, 'to': 2.0, 'product': 1.0, 'can': 1.0, 'use': 1.0, 'as': 2.0, 'very': 1.0, 'ok': 2.0, 'some': 1.0, 'things': 1.0, 'many': 1.0, 'is': 1.0, 't': 1.0, 'the': 4.0, 'in': 2.0, 'or': 1.0, 'but': 2.0, 'put': 2.0, 'will': 1.0, 'not': 1.0, 'close': 1.0, 'items': 1.0, 'small': 1.0, 'so': 2.0, 'you': 1.0, 's': 1.0, 'this': 1.0, 'it': 2.0, 'only': 1.0}
Word element => {'goatee': 1.0, 'seen': 1.0, 'never': 1.0, 'and': 1.0, 'store': 1.0, 'at': 1.0, 'mustaches': 1.0, 'baby': 1.0, 'see': 1.0, 'before': 1.0, 'this': 1.0, 'a': 4.0, 'bought': 1.0, 'gift': 1.0, 'for': 1.0, 'the': 2.0, 'shower': 1.0, 'i': 1.0, 'always': 1.0}
Word element => {'item': 1.0, 'novelty': 1.0, 'a': 1.0, 'charm': 1.0, 'past': 1.0, 'jessie': 1.0, 'bad': 1.0, 'like': 1.0, 'heisenberg': 2.0, 'boys': 1.0, 'hilarious': 1.0, 'worked': 1.0, 'from': 1.0, 'as': 2.0, 'and': 4.0, 'twin': 1.0, 'our': 1.0, 'works': 1.0, 'used': 1.0, 'pacifier': 2.0, 'cute': 1.0, 'goatee': 1.0, 'dressed': 1.0, 'we': 2.0, 'yes': 1.0, 'breaking': 1.0, 'halloween': 1.0, 'this': 2.0, 'it': 2.0, 'was': 1.0, 'epic': 1.0, 'great': 1.0, 'the': 2.0}
Word element => {'color': 1.0, 'in': 1.0, 'projecting': 1.0, 'yr': 1.0, 'work': 1.0, '2': 1.0, 'with': 1.0, 'well': 1.0, 'toy': 1.0, 'issue': 1.0, 'lose': 1.0, 'also': 1.0, 'battery': 1.0, 'scared': 1.0, 'gets': 1.0, 'he': 1.0, 'appear': 1.0, 'off': 1.0, 'switch': 1.0, 'ceiling': 1.0, 'little': 1.0, 'if': 1.0, 'there': 1.0, 'multi': 1.0, 'of': 2.0, 'up': 1.0, 'the': 8.0, 'not': 1.0, 'does': 1.0, 'because': 1.0, 'star': 1.0, 'flowing': 1.0, 'after': 1.0, 'comes': 1.0, 'is': 3.0, 'even': 1.0, 'leave': 1.0, 'have': 1.0, 'screw': 1.0, 'isn': 1.0, 'mark': 1.0, 'on': 1.0, 'make': 1.0, 'strong': 1.0, 'guy': 1.0, 'material': 1.0, 'hence': 2.0, 'big': 1.0, 'staring': 1.0, 'all': 2.0, 'to': 4.0, 'its': 3.0, 'quality': 1.0, 'and': 3.0, 'that': 2.0, 'into': 1.0, 'room': 1.0, 't': 1.0, 'a': 3.0, 'used': 1.0, 'static': 1.0, 'my': 2.0, 'actually': 1.0, 'lights': 1.0, 'stars': 2.0, 'just': 2.0, 'light': 1.0, 'projected': 1.0, 'otherwise': 1.0, 'i': 1.0, 'old': 1.0, 'constellation': 2.0, 'point': 1.0, 'infact': 1.0, 'kid': 1.0, 'so': 1.0, 'interest': 1.0, 'at': 1.0, 'loses': 1.0, 'it': 4.0, 'hates': 1.0}
Word element => {'as': 1.0, 'are': 1.0, 'choices': 1.0, 'brightness': 1.0, 'off': 1.0, 'light': 1.0, 'cut': 1.0, 'go': 1.0, 'remember': 1.0, 'set': 1.0, 'you': 1.0, 'that': 3.0, 'can': 1.0, 'it': 4.0, 'love': 1.0, 'super': 1.0, 'anywhere': 1.0, 'so': 2.0, 'too': 1.0, 'not': 1.0, 'and': 3.0, 'cute': 1.0, 'i': 2.0, 'timer': 1.0, 'coverage': 1.0, 'has': 1.0, 'well': 1.0, 'a': 1.0, 'don': 1.0, 'on': 1.0, 'great': 1.0, 'the': 1.0, 'bulky': 1.0, 't': 1.0, 'have': 1.0, 'to': 2.0}
Word element => {'all': 1.0, 'recommend': 1.0, 'bold': 1.0, 'also': 1.0, 'choose': 1.0, 'and': 1.0, 'get': 1.0, 'preference': 1.0, 'bright': 1.0, 'a': 1.0, 'if': 1.0, 'or': 1.0, 'fun': 1.0, 'is': 1.0, 'they': 1.0, 'has': 1.0, 'your': 1.0, 'next': 1.0, 'constellation': 1.0, 'i': 3.0, 'the': 4.0, 'are': 2.0, 'stars': 1.0, 'nightlight': 1.0, 'color': 1.0, 'my': 1.0, 'snuggle': 1.0, 'bear': 3.0, 'daughter': 1.0, 'absolutely': 1.0, 'him': 1.0, 'from': 1.0, 'changing': 1.0, 'everywhere': 1.0, 'child': 1.0, 'options': 1.0, 'always': 1.0, 'takes': 1.0, 'of': 1.0, 'to': 3.0, 'lights': 2.0, 'you': 1.0, 'one': 1.0, 'love': 2.0, 'given': 1.0, 'this': 2.0, 'with': 1.0}
Word element => {'illuminating': 1.0, 'room': 1.0, 'difference': 1.0, 'makes': 1.0, 'really': 1.0, 'clearly': 1.0, 'show': 1.0, 'bright': 1.0, 'hug': 1.0, 'just': 1.0, 'cuddly': 1.0, 'happen': 1.0, 'will': 1.0, 'batteries': 1.0, 'triple': 1.0, 'nice': 1.0, 'install': 1.0, 'not': 1.0, 'fun': 3.0, 'solution': 1.0, 'and': 6.0, 'dark': 2.0, 'compartment': 1.0, 'children': 1.0, 'kids': 1.0, 'soft': 1.0, 'this': 1.0, 'with': 2.0, 'velcro': 1.0, 'it': 4.0, 'itself': 1.0, 'in': 2.0, 'snuggle': 1.0, 'even': 1.0, 'for': 2.0, 'stars': 2.0, 'afraid': 2.0, 'is': 6.0, 'a': 8.0, 'the': 10.0, 'whole': 1.0, 'battery': 1.0, 'wonderful': 1.0, 'can': 2.0, 'once': 1.0, 'of': 4.0, 'bottom': 1.0, 'as': 2.0, 'to': 2.0, 'being': 1.0, 'at': 1.0, 'three': 1.0, 'who': 1.0, 'lot': 1.0, 'adorable': 1.0, 'ceiling': 1.0, 'very': 2.0, 'little': 1.0, 'teddy': 1.0, 'an': 2.0, 'pillow': 2.0, 'be': 2.0, 'are': 2.0, 'added': 1.0, 'bonus': 1.0, 'well': 1.0, 'comfort': 1.0, 'fastened': 1.0, 'you': 2.0, 'bear': 2.0, 'when': 1.0, 'bit': 1.0, 'so': 1.0, 'that': 1.0, 'night': 1.0, 'magic': 1.0, 'unfasten': 1.0, 'on': 2.0}
Word element => {'for': 1.0, 'yr': 1.0, 'son': 1.0, '2': 1.0, 'my': 1.0, 'surprisingly': 1.0, 'much': 1.0, 'care': 1.0, 'old': 1.0, 'be': 1.0, 'would': 1.0, 'advertised': 1.0, 'works': 1.0, 'it': 3.0, 'isn': 1.0, 'i': 1.0, 'didn': 1.0, 'thought': 1.0, 't': 2.0, 'like': 1.0, 'only': 1.0, 'as': 2.0, 'bright': 1.0}
Word element => {'with': 1.0, 'fun': 1.0, 'room': 1.0, 'his': 1.0, 'in': 1.0, 'needs': 1.0, 'at': 1.0, 'overall': 1.0, 'velcro': 1.0, 'have': 1.0, 'small': 1.0, 'due': 1.0, 'undone': 1.0, 'come': 1.0, 'seems': 2.0, 'that': 1.0, 'he': 1.0, 'flap': 1.0, 'light': 1.0, 'by': 1.0, 'covered': 1.0, 'battery': 1.0, 'far': 1.0, 'square': 1.0, 'used': 1.0, 'this': 2.0, 'out': 1.0, 'night': 1.0, 'ahead': 1.0, 'them': 1.0, 'works': 1.0, 'pack': 1.0, 'try': 1.0, 'to': 6.0, 'stuffed': 1.0, 'the': 8.0, 'these': 1.0, 't': 1.0, 'goes': 1.0, 'less': 1.0, 'my': 2.0, 'is': 2.0, 'animals': 1.0, 'skips': 1.0, 'son': 2.0, 'i': 2.0, 'it': 4.0, 'tap': 1.0, 'color': 2.0, 'decided': 1.0, 'one': 2.0, 'expensive': 1.0, 'for': 1.0, 'extra': 1.0, 'looking': 1.0, 'of': 1.0, 'always': 1.0, 'pretty': 1.0, '2': 1.0, 'change': 1.0, 'can': 1.0, 'rotates': 1.0, 'but': 2.0, 'was': 1.0, 'doesn': 1.0, 'or': 2.0, 'too': 1.0, 'and': 3.0, 'like': 1.0, 'good': 1.0, 'different': 1.0, 'colors': 2.0, 'when': 1.0, 'you': 1.0, 'choose': 1.0, 'solid': 1.0, 'display': 1.0, 'between': 1.0, 'top': 1.0, 'button': 1.0, 'respond': 1.0}
Word element => {'tested': 1.0, 'needs': 1.0, 'hassle': 1.0, 'what': 1.0, 'great': 1.0, 'it': 1.0, 'but': 1.0, 'just': 1.0, 'didn': 1.0, 'more': 1.0, 'maybe': 1.0, 't': 1.0, 'idea': 1.0, 'work': 1.0, 'not': 1.0, 'basically': 1.0, 'say': 1.0, 'be': 1.0, 'much': 1.0, 'to': 2.0}
Word element => {'review': 1.0, 'was': 1.0, 'sample': 1.0, 'so': 1.0, 'not': 1.0, 'away': 1.0, 'enough': 1.0, 'part': 1.0, 'myself': 1.0, 'adorable': 1.0, 'youngsters': 1.0, 'nightlight': 2.0, 'before': 1.0, 'this': 2.0, 'never': 1.0, 'had': 1.0, 'one': 1.0, 's': 2.0, 'in': 1.0, 'way': 1.0, 'work': 1.0, 't': 1.0, 'must': 1.0, 'doesn': 1.0, 'but': 3.0, 'time': 2.0, 'playing': 1.0, 'all': 1.0, 'handy': 1.0, 'shows': 1.0, 'admit': 1.0, 'note': 1.0, 'minutes': 1.0, 'after': 1.0, 'completely': 1.0, 'could': 1.0, 'will': 1.0, 'underneath': 1.0, 'there': 1.0, 'turn': 2.0, 'again': 1.0, 'hand': 1.0, 'across': 1.0, 'and': 10.0, 'same': 1.0, 'green': 1.0, 'provided': 1.0, 'strap': 1.0, 'undo': 1.0, 'fur': 1.0, 'leds': 1.0, 'compartment': 1.0, 'that': 7.0, 'also': 1.0, 'eleven': 1.0, 'about': 1.0, 'dark': 1.0, 'belly': 1.0, 'battery': 1.0, 'positions': 1.0, 'enjoyed': 1.0, 'absolutely': 1.0, 'understand': 1.0, 'photo': 1.0, 'out': 1.0, 'keep': 1.0, 'loop': 1.0, 'made': 1.0, 'prevent': 1.0, 'very': 2.0, 'dome': 2.0, 'routine': 1.0, 'inches': 1.0, 'are': 1.0, 'cute': 1.0, 'light': 4.0, 'bright': 2.0, 'by': 1.0, 'faux': 1.0, 'little': 1.0, 'constellation': 1.0, 'although': 1.0, 'his': 2.0, 'twenty': 1.0, 'plush': 1.0, 'square': 1.0, 'bear': 2.0, 'children': 1.0, 'happened': 1.0, 'times': 2.0, 'night': 1.0, '5v': 1.0, 'snuggle': 1.0, 'stuffed': 1.0, 'ceiling': 1.0, 'flattens': 1.0, 'a': 13.0, 'at': 2.0, 'is': 6.0, 'he': 3.0, 'plastic': 1.0, 'with': 3.0, 'like': 1.0, 'converter': 2.0, 'supposed': 1.0, '3': 1.0, 'of': 1.0, 'the': 19.0, 'testing': 1.0, 'bedtime': 1.0, 'powered': 1.0, 'dc': 3.0, 'sleep': 1.0, 'back': 1.0, 'be': 2.0, 'projects': 1.0, 'moon': 1.0, 'to': 8.0, 'body': 1.0, 'as': 3.0, 'or': 2.0, 'change': 2.0, 'aaa': 1.0, 'helpful': 1.0, 'four': 1.0, 'switch': 2.0, 'into': 1.0, 'three': 2.0, 'batteries': 2.0, 'cycle': 1.0, 'well': 2.0, 'i': 6.0, 'seen': 1.0, '4': 1.0, 'use': 2.0, 'instructions': 1.0, 'for': 7.0, '6v': 1.0, 'have': 1.0, 'him': 1.0, 'it': 4.0, 'anything': 1.0, 'projection': 1.0, 'soft': 1.0, 'works': 1.0, 'call': 1.0, 'onto': 1.0, 'stars': 3.0, 'colors': 3.0, 'hook': 1.0, 'twice': 1.0, 'unbiased': 1.0, 'watching': 1.0, 'has': 1.0, 'convertor': 1.0, 'five': 1.0, 'from': 1.0, 'access': 1.0, 'off': 3.0, 'press': 2.0, 've': 1.0, 'down': 1.0, 'once': 1.0, 'through': 1.0, 'long': 1.0, 'on': 3.0, 'amber': 1.0, 'timer': 2.0, 'blue': 1.0}
Word element => {'but': 1.0, 'a': 1.0, 'was': 1.0, 'knew': 1.0, 'pan': 1.0, 'taking': 1.0, 'reviews': 1.0, 'which': 1.0, 'in': 1.0, 'both': 1.0, 'sets': 1.0, 'it': 1.0, 'with': 1.0, 't': 1.0, 'the': 1.0, 'tried': 1.0, 'i': 3.0, 'straight': 1.0, 'two': 1.0, 'into': 1.0, 'broken': 1.0, 'previous': 1.0, 'didn': 1.0, 'risk': 1.0, 'batteries': 1.0, 'trash': 1.0, 'of': 2.0, 'other': 1.0, 'out': 1.0, 'arrived': 1.0, 'devices': 1.0, 'and': 1.0, 'went': 1.0, 'worked': 1.0, 'from': 1.0}
Word element => {'buy': 1.0, 'things': 1.0, 'amazon': 1.0, 'returning': 1.0, 'flops': 1.0, 'inside': 1.0, 'has': 1.0, 'bd': 1.0, 'his': 1.0, 'got': 1.0, 'light': 1.0, 'just': 1.0, 'heard': 1.0, 'not': 1.0, 'gift': 1.0, 'problems': 3.0, 'there': 1.0, 'now': 1.0, 'on': 1.0, 'back': 1.0, 'sewed': 1.0, 'velcro': 1.0, 'stitching': 1.0, 'worked': 1.0, 'for': 4.0, 'expect': 1.0, 'second': 1.0, 'fine': 1.0, 'came': 1.0, 'manage': 1.0, 'replacement': 1.0, 'loose': 1.0, 'third': 1.0, 'out': 1.0, 'in': 1.0, 'him': 1.0, 'be': 1.0, 'and': 6.0, 'but': 2.0, 'most': 1.0, 'this': 1.0, 'recent': 1.0, 'purchasing': 1.0, 'bought': 4.0, 'months': 1.0, 'one': 3.0, 'my': 1.0, 'another': 4.0, 'purchase': 1.0, 'tight': 1.0, 'the': 7.0, 'these': 2.0, 'great': 3.0, 'have': 2.0, '4': 1.0, 'i': 11.0, 'someone': 1.0, 'lose': 1.0, 'am': 2.0, 'three': 1.0, 'will': 2.0, 'batteries': 1.0, 'little': 1.0, 'so': 1.0, 'wait': 1.0, 'far': 1.0, 'of': 2.0, 'about': 2.0, 'thing': 1.0, 'today': 1.0, 'no': 3.0, 'first': 1.0, 'retuning': 1.0, 'it': 3.0, 'son': 2.0, 'still': 1.0, 'only': 1.0, 'works': 1.0, 'negative': 1.0, 'would': 1.0, 'around': 2.0, 'say': 1.0, 'is': 2.0, 'that': 2.0, 'fixture': 1.0, 'sometimes': 1.0, 'are': 2.0, 'we': 1.0, 'ago': 1.0, 'a': 4.0, 'any': 1.0, 'as': 1.0, 'to': 1.0, 'pop': 1.0}
Word element => {'honest': 1.0, 'an': 1.0, 'write': 1.0, 'was': 1.0, 'himself': 1.0, 'provide': 1.0, 'okay': 1.0, 'batteries': 1.0, 'don': 1.0, 'dying': 1.0, 'off': 1.0, 'timer': 1.0, 'switch': 1.0, 'there': 1.0, 'top': 1.0, 'down': 1.0, 'press': 1.0, 'easy': 1.0, 'is': 3.0, 'this': 2.0, 'forward': 1.0, 'looks': 1.0, 'it': 3.0, 'by': 1.0, 'light': 2.0, 'i': 3.0, 'night': 3.0, 'really': 1.0, 'hubby': 1.0, 'past': 1.0, 'and': 5.0, 'dreads': 1.0, 'dark': 1.0, 'now': 2.0, 'hates': 1.0, 'bill': 1.0, 'little': 3.0, 't': 1.0, 'a': 3.0, 'go': 2.0, 'try': 1.0, 'use': 2.0, 'worry': 1.0, 'room': 2.0, 'enjoyed': 1.0, 'guy': 2.0, 'on': 4.0, 'the': 6.0, 'underneath': 1.0, 'starry': 1.0, 'my': 4.0, 'turn': 2.0, 'in': 1.0, 'snuggle': 1.0, 'bedtime': 2.0, 'loves': 1.0, 'into': 2.0, 'that': 4.0, 'something': 1.0, 'he': 4.0, 'review': 1.0, 'toy': 1.0, 'well': 1.0, 'has': 2.0, 'so': 1.0, 'simply': 1.0, 'time': 1.0, 'have': 2.0, 'sleep': 2.0, 'our': 1.0, 'to': 12.0, 'all': 1.0, 'let': 1.0, 'about': 1.0, 'no': 1.0, 'turned': 1.0, 'electric': 1.0, 'you': 2.0, 'thanks': 1.0, 'guys': 1.0, 'suffered': 1.0, 'be': 1.0, 'bed': 1.0, 'one': 1.0, 'changed': 1.0, 'love': 1.0, 'lights': 1.0, 'stars': 1.0, 'constellation': 1.0}
Word element => {'them': 1.0, 'that': 1.0, 'though': 1.0, 'received': 1.0, 'pastel': 1.0, 'i': 1.0, 'high': 1.0, 'they': 1.0, 'about': 1.0, 'don': 1.0, 'colors': 1.0, 'wooden': 1.0, 'are': 2.0, 't': 1.0, 'these': 1.0, 'the': 4.0, 'disappointing': 1.0, 'quality': 1.0, 'but': 1.0, 'thing': 1.0, 'all': 1.0, 'was': 1.0, 'look': 1.0, 'nice': 1.0, 'which': 1.0, 'picture': 1.0, 'like': 1.0, 'blocks': 3.0, 'shows': 1.0, 'at': 1.0, 'painted': 1.0, 'primary': 1.0, 'only': 1.0, 'with': 1.0}
Word element => {'fast': 1.0, 'shipped': 1.0, 'product': 1.0, 'disney': 1.0, 'reccomend': 1.0, 'cute': 1.0, 'a': 1.0, 'well': 1.0, 'vibrations': 1.0, 'for': 2.0, 'price': 1.0, 'highly': 1.0, 'baby': 2.0, 'nice': 1.0, 'boy': 1.0, 'your': 1.0, 'packaged': 1.0, 'so': 1.0, 'is': 1.0, 'with': 1.0, 'this': 1.0, 'made': 1.0, 'great': 2.0, 'the': 1.0, 'too': 1.0, 'soothing': 1.0, 'do': 1.0, 'and': 4.0, 'sturdy': 1.0, 'keeps': 1.0, 'super': 1.0, 'things': 1.0, 'content': 1.0, 'to': 1.0}
Word element => {'purchase': 1.0, 'a': 1.0, 'was': 1.0, 'features': 1.0, 'the': 1.0, 'soft': 1.0, 'daughter': 1.0, 'and': 2.0, 'our': 1.0, 'snuggly': 1.0, 'i': 1.0, 'loves': 1.0, 'this': 1.0, 'bouncer': 1.0, 'great': 1.0, 'it': 1.0, 'love': 1.0, 'all': 1.0}
Word element => {'though': 1.0, 'strap': 1.0, 'narrow': 1.0, 'little': 1.0, 'looking': 1.0, 'were': 1.0, 'just': 1.0, 'and': 3.0, 'on': 1.0, 'info': 1.0, 'needs': 1.0, 'emergency': 1.0, 'what': 1.0, 'write': 1.0, 'was': 1.0, 'wanted': 1.0, 'to': 1.0, 'travel': 1.0, 'allows': 1.0, 's': 1.0, 'writing': 1.0, 'you': 1.0, 'cover': 1.0, 'tag': 1.0, 'the': 3.0, 'then': 1.0, 'back': 1.0, 'seal': 1.0, 'a': 3.0, 'thin': 1.0, 'protective': 1.0, 'we': 2.0, 'it': 2.0, 'with': 1.0, 'this': 1.0, 'for': 2.0}
Word element => {'color': 1.0, 'wondering': 1.0, 'you': 1.0, 'in': 1.0, 'justice': 1.0, 'does': 1.0, 'white': 1.0, 'out': 1.0, 'doesnt': 1.0, 'came': 1.0, 'invitations': 2.0, 'use': 1.0, 'was': 1.0, 'to': 1.0, 'printing': 1.0, 'i': 2.0, 'not': 1.0, 'because': 1.0, 'stars': 1.0, 'true': 1.0, 'package': 1.0, 'crushed': 1.0, 'four': 1.0, 'all': 1.0, 'show': 1.0, 'easy': 2.0, 'case': 1.0, 'product': 2.0, 'it': 1.0, 'sooooo': 1.0, 'this': 1.0, 'wonderful': 1.0, 'great': 1.0, 'the': 7.0, 'when': 1.0, 'gave': 1.0, 'were': 2.0, 'opened': 1.0, 'are': 1.0, 'overall': 1.0, 'picture': 2.0, 'bows': 1.0, 'do': 1.0, 'and': 4.0, 'wrinkled': 1.0, 'folded': 1.0, 'is': 1.0}
Word element => {'on': 1.0, 'compliments': 1.0, 'of': 1.0, 'tons': 1.0, 'and': 1.0, 'great': 2.0, 'got': 1.0, 'designed': 1.0, 'invitations': 2.0, 'for': 1.0, 'price': 1.0, 'i': 1.0, 'my': 2.0, 'own': 1.0, 'a': 1.0, 'using': 1.0, 'these': 1.0}
Word element => {'know': 1.0, 'i': 1.0, 'money': 1.0, 'extra': 1.0, 'worth': 1.0, 'for': 1.0, 'walmart': 1.0, 'at': 1.0, '5': 1.0, 'than': 1.0, 'higher': 1.0, 'sold': 1.0, 'much': 1.0, 'are': 1.0, 'able': 1.0, 'is': 1.0, 'the': 3.0, 'my': 1.0, 'flexible': 1.0, 'new': 1.0, 'her': 1.0, 'soft': 1.0, 'loves': 1.0, 'wonderful': 1.0, 'daughter': 1.0, 'shoes': 1.0, 'and': 1.0, 'as': 1.0, 'last': 1.0, 'she': 2.0, 'quality': 1.0, 'walks': 1.0, 'will': 2.0, 'material': 1.0, 'be': 1.0, 'to': 1.0, 'similar': 1.0, 'feel': 1.0, 'well': 1.0, 'pair': 1.0, 'a': 1.0, 'ground': 1.0, 'they': 2.0}
Word element => {'worth': 1.0, 'you': 1.0, 'really': 1.0, 'satisfied': 1.0, 'flower': 1.0, '34': 2.0, 'daughter': 1.0, 'child': 1.0, 'year': 1.0, 'old': 1.0, 'fact': 1.0, 'm': 2.0, 'in': 1.0, 'stylish': 2.0, 'most': 1.0, 'external': 1.0, 'seen': 1.0, 'cups': 1.0, 'to': 3.0, 'sippy': 1.0, 'their': 1.0, 'big': 2.0, 'great': 2.0, 'comfortable': 1.0, 'mention': 1.0, 'and': 7.0, 'alternative': 1.0, 'internal': 2.0, 'there': 2.0, 'side': 1.0, 'if': 1.0, 'clear': 1.0, 'spare': 1.0, 'all': 1.0, 'fits': 1.0, 'my': 3.0, 'looking': 1.0, 'bag': 5.0, 'need': 1.0, 'pockets': 4.0, 'with': 4.0, 'wipes': 2.0, 'diapers': 1.0, 'are': 3.0, 'challenge': 1.0, 'strap': 1.0, 'real': 1.0, 'holders': 1.0, 'through': 1.0, 'far': 2.0, 'has': 1.0, 'a': 4.0, 'go': 1.0, 'than': 2.0, 'w': 2.0, 'like': 1.0, 'as': 1.0, 'bags': 1.0, 'diaper': 2.0, 'more': 2.0, 'is': 4.0, 'been': 2.0, 'changing': 1.0, 'thrilled': 1.0, 'that': 2.0, 've': 2.0, 'calls': 1.0, 'well': 2.0, 'i': 5.0, 'two': 2.0, 'for': 8.0, 'comes': 2.0, 'room': 2.0, 'etc': 1.0, 'pad': 1.0, 'd': 1.0, 'finding': 1.0, 'insulated': 1.0, 'velcro': 1.0, 'admit': 1.0, 'twins': 1.0, 'everything': 2.0, 'on': 2.0, 'your': 1.0, 'inside': 1.0, 'outer': 1.0, 'the': 7.0, 'of': 2.0, 'credit': 1.0, 'money': 1.0, 'cards': 1.0, 'drivers': 1.0, 'license': 1.0, 'by': 1.0, 'keys': 1.0, 'hooks': 1.0, 'it': 6.0, 'also': 2.0, 'clip': 1.0, 'enough': 4.0, 'sunscreen': 1.0, 'bug': 1.0, 'spray': 1.0, 'shoulder': 2.0, 'so': 1.0, 'spaces': 1.0, 'can': 1.0, 'sturdy': 1.0, 'one': 3.0, 'held': 1.0, 'hand': 2.0, 'straps': 1.0, 'over': 1.0, 'this': 2.0, 'bottle': 1.0, 'attach': 1.0, 'not': 1.0, 'beyond': 2.0, 'adorable': 1.0}
Word element => {'after': 1.0, 'dripping': 1.0, 'still': 1.0, 'pain': 1.0, 'hang': 1.0, 'to': 4.0, 'but': 1.0, 'inside': 1.0, 'since': 1.0, 'a': 1.0, 'for': 1.0, 'wash': 1.0, 'in': 1.0, 'and': 2.0, 'dry': 2.0, 's': 1.0, 'ubbi': 1.0, 'size': 1.0, 'the': 2.0, 'great': 1.0, 'shower': 1.0, 'it': 2.0, 'i': 1.0, 'have': 2.0, 'turn': 1.0, 'clean': 2.0, 'out': 1.0, 'wet': 1.0, 'then': 1.0, 'our': 1.0}
Word element => {'3': 1.0, 'so': 1.0, 'definitely': 1.0, 'wonderfully': 1.0, 'recommend': 1.0, 'job': 1.0, 'its': 1.0, 'it': 2.0, 'love': 2.0, 'the': 1.0, 'i': 3.0, 'does': 1.0, 'design': 1.0, 'on': 1.0, 'purchased': 1.0, 'much': 1.0, 'liner': 1.0, 'have': 1.0, 'this': 1.0, 'pail': 1.0, 'and': 1.0}
Word element => {'it': 1.0, 'order': 1.0, 'just': 1.0, 'pattern': 1.0, 'really': 2.0, 'no': 1.0, 'works': 2.0, 'for': 1.0, 'love': 1.0, 'well': 2.0, 'ahead': 1.0, 'system': 1.0, 'diaper': 1.0, 'the': 4.0, 'pail': 1.0, 'that': 1.0, 'we': 1.0, 'ordered': 1.0, 'together': 1.0, 'size': 1.0, 'right': 1.0, 'complaints': 1.0, 'go': 1.0, 'and': 1.0}
Word element => {'sturdy': 1.0, 'heavy': 1.0, 'be': 1.0, 'diapers': 1.0, 'load': 1.0, 'big': 1.0, 'also': 1.0, 're': 1.0, 'perfect': 1.0, 'and': 5.0, 'whenever': 1.0, 'wear': 1.0, 'wash': 1.0, 'have': 2.0, 'do': 1.0, 'slim': 1.0, 'two': 1.0, 've': 2.0, 'new': 1.0, 'top': 1.0, 'fair': 1.0, 'simple': 1.0, 'been': 1.0, 'months': 1.0, 'on': 1.0, 'them': 1.0, 'using': 1.0, 'for': 1.0, 'still': 1.0, 'cute': 1.0, 'diaper': 1.0, 'these': 2.0, 'the': 3.0, 'look': 1.0, 'laundry': 1.0, 'brand': 1.0, 'they': 3.0, 'seen': 1.0, 'four': 1.0, 'can': 2.0, 'size': 1.0, 'we': 4.0, 'a': 3.0, 'well': 2.0, 'so': 1.0, 'bit': 1.0, 'of': 2.0, 'constructed': 1.0, 'patterns': 1.0, 'are': 2.0, 'is': 1.0, 'trash': 1.0, 'holds': 1.0, 'really': 2.0, 'elasticated': 1.0, 'ours': 1.0, 'human': 1.0, 'step': 1.0}
Word element => {'be': 1.0, 'realize': 1.0, 'that': 1.0, 'me': 1.0, 'and': 2.0, 'makes': 1.0, 'well': 1.0, 'has': 2.0, 'which': 1.0, 'smell': 1.0, 'other': 1.0, 'my': 1.0, 'the': 3.0, 'past': 1.0, 'when': 1.0, 'out': 2.0, 'is': 1.0, 'really': 1.0, 'waterproof': 2.0, 'all': 1.0, 'least': 1.0, 'this': 1.0, 'it': 8.0, 'due': 1.0, 'bag': 2.0, 'great': 1.0, 'pulled': 1.0, 'kept': 1.0, 'so': 2.0, 'might': 1.0, 'a': 3.0, 's': 1.0, 'held': 1.0, 'of': 3.0, 'there': 1.0, 'washed': 1.0, 'washing': 1.0, 'inside': 1.0, 'while': 1.0, 'in': 2.0, 'machine': 1.0, 'litre': 1.0, 'was': 1.0, 'i': 2.0, 'water': 2.0, 'line': 1.0, 'dried': 1.0, 'wore': 1.0}
Word element => {'durable': 1.0, 'is': 1.0, 'well': 1.0, 'them': 1.0, 'we': 1.0, 'all': 1.0, 'use': 1.0, 'everyday': 1.0, 'multiple': 1.0, 'have': 1.0, 'this': 1.0, 'bag': 1.0, 'washes': 1.0, 'and': 2.0, 'purchased': 1.0, 'colors': 1.0, 'love': 1.0}
Word element => {'recommend': 1.0, 'definitely': 1.0, 'would': 1.0, 'pail': 1.0, 'adorable': 1.0, 'best': 1.0, 'i': 1.0, 'fox': 1.0, 'pattern': 1.0, 'in': 1.0, 'for': 1.0, 'is': 1.0, 'my': 1.0, 'book': 1.0, 'quality': 1.0, 'and': 2.0, 'up': 1.0, 'the': 1.0, 'great': 1.0, 'it': 1.0, 'liner': 1.0, 'time': 1.0, 'has': 1.0, 'held': 1.0, 'well': 1.0, 'a': 1.0, 'long': 1.0}
Word element => {'one': 1.0, 'buy': 1.0, 'would': 1.0, 'were': 1.0, 'nuisance': 1.0, 'just': 1.0, 'and': 2.0, 'real': 1.0, 'doesn': 1.0, 'hell': 1.0, 'to': 1.0, 'any': 1.0, 'as': 1.0, 'out': 1.0, 'the': 5.0, 'diaper': 1.0, 'a': 3.0, 's': 2.0, 'we': 1.0, 't': 2.0, 'great': 1.0, 'this': 3.0, 'often': 1.0, 'expensive': 1.0, 'for': 1.0, 'very': 2.0, 'case': 1.0, 'also': 1.0, 'disappointed': 1.0, 'in': 3.0, 'not': 1.0, 'i': 5.0, 'view': 1.0, 'of': 2.0, 'if': 1.0, 'covering': 1.0, 'm': 1.0, '34': 2.0, 'it': 5.0, 'annoying': 1.0, 'don': 1.0, 'baby': 2.0, 'use': 2.0, 're': 1.0, 'house': 1.0, 'longer': 1.0, 'more': 1.0, 'completely': 1.0, 'is': 2.0, 'expected': 1.0, 'bag': 1.0, 'adequate': 1.0, 'than': 1.0, 'does': 1.0, 'part': 1.0, 'provide': 2.0, 'which': 1.0, 'window': 1.0, 'so': 1.0, 'lot': 1.0, 'flimsy': 1.0, 'keep': 1.0, 'at': 1.0, 'top': 1.0, 'you': 1.0, 'but': 2.0, 'can': 1.0, 'see': 1.0}
Word element => {'well': 1.0, 'wiggles': 1.0, 'for': 1.0, 'hard': 1.0, 'makes': 2.0, 'old': 1.0, 'months': 1.0, 'even': 1.0, 'wiggly': 1.0, 'really': 1.0, 'my': 1.0, 'plus': 1.0, 'public': 1.0, 'nurse': 1.0, 'in': 2.0, 'some': 1.0, 'the': 3.0, 'because': 2.0, 'me': 1.0, 'not': 2.0, 'just': 2.0, 'would': 1.0, 'rather': 1.0, 'of': 1.0, 'way': 1.0, 'always': 1.0, 'up': 1.0, 't': 1.0, 'a': 3.0, 'fan': 1.0, 'i': 9.0, 'more': 1.0, 'is': 2.0, 'say': 1.0, 'this': 1.0, 'she': 1.0, 'covers': 1.0, 'it': 5.0, 'that': 3.0, 'cover': 3.0, 'm': 1.0, 'use': 2.0, 'doesn': 1.0, 'neck': 1.0, 'blanket': 1.0, 'strap': 1.0, 'and': 2.0, 'get': 1.0, 'wire': 1.0, '3': 1.0, 'think': 3.0, 'your': 1.0, 'so': 3.0, 'when': 1.0, 'you': 1.0, 'work': 1.0, 'but': 1.0, 'can': 3.0, 'practice': 1.0, 'fine': 1.0, 'start': 1.0, 'look': 1.0, 'as': 1.0, 'to': 2.0, 'nursing': 1.0, 'down': 1.0, 'keep': 1.0, 'at': 2.0, 'baby': 2.0, 'need': 1.0, 'using': 1.0}
Word element => {'well': 1.0, 'color': 1.0, 'different': 1.0, 'a': 1.0, 'one': 1.0, 'have': 1.0, 'and': 1.0, 'as': 1.0, 'very': 1.0, 'it': 1.0, 'love': 1.0, 'great': 1.0, 'light': 1.0, 'the': 1.0, 'summer': 1.0, 'fabric': 1.0, 'stylish': 1.0, 'outside': 1.0, 'use': 1.0, 'for': 1.0, 'in': 2.0}
Word element => {'else': 1.0, 'revealing': 1.0, 'baby': 1.0, 'to': 1.0, 'enough': 1.0, 'without': 1.0, 'works': 1.0, 'perfectly': 1.0, 'anything': 1.0, 'on': 1.0, 'got': 1.0, 'compliments': 1.0, 'the': 3.0, 'pattern': 1.0, 'sticks': 1.0, 'see': 1.0, 'out': 1.0, 'ribbing': 1.0, 'just': 1.0}
Word element => {'would': 1.0, 'make': 1.0, 'if': 1.0, 'plastic': 1.0, 'priced': 1.0, 'little': 1.0, 'a': 3.0, 'just': 1.0, 'them': 1.0, 'think': 1.0, 'compliments': 1.0, 'beautiful': 1.0, 'bit': 1.0, 'useful': 1.0, 'incredibly': 1.0, 'are': 3.0, 'time': 1.0, 'they': 2.0, 'could': 2.0, 'in': 2.0, 'so': 1.0, 'that': 1.0, 'of': 2.0, 'two': 2.0, 'i': 6.0, 'for': 2.0, 'one': 3.0, 'patterns': 2.0, 'everyday': 1.0, 'fabric': 1.0, 'all': 1.0, 'have': 1.0, 'bag': 1.0, 'piece': 1.0, 'over': 1.0, 'on': 2.0, 'diaper': 1.0, 'these': 1.0, 'the': 4.0, 'rings': 1.0, 'different': 1.0, 'go': 1.0, 'get': 1.0, 'and': 3.0, 'home': 1.0, 'purchased': 1.0, 'use': 1.0}
Word element => {'well': 1.0, 'as': 1.0, 'it': 1.0, 'recommended': 1.0, 'the': 1.0, 'was': 1.0, 'friend': 2.0, 'using': 1.0, 'a': 1.0, 'purchased': 1.0, 'who': 1.0, 'thinks': 1.0, 'one': 1.0, 'for': 1.0, 'daughter': 1.0, 'saw': 1.0, 'wonderful': 1.0, 'this': 1.0, 'is': 1.0, 'she': 1.0}
Word element => {'stylish': 1.0, 'is': 1.0, 'does': 1.0, 'first': 1.0, 'the': 2.0, 'cover': 1.0, 'in': 1.0, 'its': 1.0, 'and': 1.0, 'up': 1.0, 'plastic': 1.0, 'loses': 1.0, 'stiffness': 1.0, 'neck': 1.0, 'month': 1.0, 'great': 1.0, 'line': 1.0, 'within': 1.0}
Word element => {'absolutely': 1.0, 'bottom': 1.0, 'flap': 1.0, 'corners': 1.0, 'light': 1.0, 'day': 1.0, 'think': 1.0, 'on': 1.0, 'feeding': 1.0, 'if': 2.0, 'they': 1.0, 'reposition': 1.0, 'having': 1.0, 'or': 1.0, 'moving': 1.0, 'see': 1.0, 'perfect': 1.0, 'this': 2.0, 'weights': 1.0, 'be': 2.0, 'and': 2.0, 'across': 1.0, 'top': 4.0, 'around': 2.0, 'clasps': 1.0, 'things': 1.0, 'some': 2.0, 'would': 1.0, 'position': 1.0, 'so': 2.0, 'i': 2.0, 'do': 1.0, 'away': 1.0, 'added': 1.0, 'are': 1.0, 'stiff': 1.0, 'has': 1.0, 'really': 1.0, 'it': 4.0, 'band': 1.0, 'baby': 2.0, 'improved': 1.0, 'that': 2.0, 'up': 2.0, 'always': 1.0, 'placed': 1.0, 'enough': 1.0, 're': 1.0, 'cover': 2.0, 'place': 1.0, 'windy': 1.0, 'the': 8.0, 's': 1.0, 'a': 3.0, 'could': 1.0, 't': 1.0, 'there': 1.0, 'lets': 1.0, 'you': 3.0, 'like': 1.0, 'hold': 2.0, 'in': 1.0, 'itself': 1.0, 'due': 1.0, 'from': 1.0, 'outside': 1.0, 'to': 5.0, 'as': 1.0, 'but': 1.0, 'work': 1.0, 'can': 1.0, 'doesn': 1.0, 'unfortunately': 1.0, 'moves': 1.0, 'at': 2.0, 'lot': 1.0, 'either': 1.0}
Word element => {'visualize': 1.0, 'easily': 1.0, 'you': 1.0, 'that': 1.0, 'design': 1.0, 'breathable': 1.0, 'nice': 1.0, 'some': 1.0, 'with': 1.0, 'purpose': 1.0, 'wish': 1.0, 'up': 1.0, 'so': 1.0, 'under': 1.0, 'gets': 1.0, 'and': 4.0, 'its': 1.0, 'do': 2.0, 'hate': 1.0, 'well': 1.0, 'but': 1.0, 'was': 1.0, 'doesn': 1.0, 'hoop': 1.0, 'will': 1.0, 'breath': 1.0, 'a': 1.0, 't': 1.0, 'the': 3.0, 'i': 5.0, 'lets': 1.0, 'there': 1.0, 'sweaty': 1.0, 'it': 4.0, 'he': 1.0, 'chop': 1.0, 'like': 1.0, 'using': 1.0, 'muslin': 1.0, 'really': 1.0, 'material': 2.0, 'perhaps': 1.0, 'attach': 1.0, 'aden': 1.0, 'anis': 1.0, 'neck': 1.0, 'blanket': 1.0, 'strap': 1.0, 'if': 1.0, 'an': 1.0, 'serves': 1.0, 'own': 1.0, 'at': 1.0, 'to': 1.0, 'all': 1.0, 'crafty': 1.0, 'would': 1.0, 'your': 2.0, 'make': 1.0}
Word element => {'own': 1.0, 'glad': 1.0, 'll': 1.0, 'this': 1.0, 'buying': 1.0, 'about': 1.0, 'adjustable': 1.0, 'strap': 1.0, 'neck': 1.0, 'fresh': 1.0, 'be': 2.0, 'him': 1.0, 'minutes': 1.0, 'baby': 1.0, 'burp': 1.0, 'if': 1.0, '10': 1.0, 'want': 1.0, 'creates': 1.0, 'little': 1.0, 'you': 3.0, 'contain': 1.0, 'does': 1.0, 'fence': 1.0, 'give': 1.0, 'me': 1.0, 'lip': 1.0, 'durable': 1.0, 'it': 5.0, 'had': 1.0, 'machine': 1.0, 'tent': 1.0, 'every': 1.0, 'shape': 1.0, 'mom': 1.0, 'on': 1.0, 'your': 2.0, '3': 1.0, 'survived': 1.0, 'sheet': 1.0, 'needs': 1.0, 'air': 1.0, 'in': 2.0, 'don': 1.0, 'washable': 1.0, 'child': 1.0, 'wash': 1.0, 'of': 2.0, 'beyond': 1.0, 'i': 2.0, 'some': 1.0, 'these': 1.0, 'without': 1.0, 'the': 7.0, 'sewn': 1.0, 'plastic': 1.0, 'how': 1.0, 'one': 2.0, 'bed': 1.0, 'before': 1.0, 'even': 1.0, 'top': 1.0, 'and': 1.0, 'curtain': 1.0, 'has': 1.0, 't': 1.0, 'might': 1.0, 's': 1.0, 'a': 3.0, 'that': 1.0, 'is': 3.0, 'holds': 1.0, 'cute': 1.0, 'after': 2.0, 'fabric': 1.0, 'to': 2.0, 'as': 1.0, 'heat': 1.0, 'just': 2.0, 'light': 1.0, 'like': 1.0, 'but': 1.0}
Word element => {'so': 1.0, 'see': 1.0, 'from': 1.0, 'out': 1.0, 'light': 1.0, 'the': 2.0, 'you': 2.0, 'weight': 1.0, 'and': 1.0, 'can': 1.0, 'love': 1.0, 'great': 1.0, 'way': 1.0, 'away': 1.0, 'print': 1.0, 'your': 1.0, 'i': 1.0, 'neck': 1.0, 'baby': 1.0, 'sets': 1.0}
Word element => {'off': 1.0, 'easy': 1.0, 'very': 1.0, 'moved': 1.0, 'and': 4.0, 'in': 2.0, 'air': 2.0, 'her': 1.0, 'wash': 1.0, 'you': 2.0, 'shrink': 1.0, 'if': 2.0, 'yard': 1.0, 'three': 1.0, 'keep': 1.0, 'future': 1.0, 'too': 2.0, 'lot': 1.0, 'space': 1.0, 'because': 1.0, 'that': 2.0, 'smother': 1.0, 'doesn': 1.0, 'was': 2.0, 'star': 1.0, 'top': 2.0, 'create': 1.0, 'curve': 2.0, 'plastic': 1.0, 'it': 12.0, 'she': 1.0, 'baby': 2.0, 'type': 1.0, 'started': 1.0, 'hot': 1.0, 'has': 1.0, 'help': 1.0, 'area': 1.0, 'thin': 1.0, 't': 2.0, 's': 1.0, 'out': 1.0, 'gave': 1.0, 'loose': 1.0, 'material': 1.0, 'i': 2.0, 'covers': 1.0, 'cheap': 1.0, 'yet': 1.0, 'neck': 2.0, 'or': 1.0, 'piece': 2.0, 'for': 2.0, 'fabric': 2.0, 'good': 1.0, 'isn': 1.0, 'at': 1.0, 'is': 3.0, 'look': 1.0, 'once': 1.0, '2': 1.0, 'but': 2.0, 'so': 2.0, 'can': 1.0, 'of': 3.0, 'the': 9.0, 'heavy': 1.0, 'length': 1.0, 'to': 3.0, 'dryer': 1.0, 'have': 2.0, 'a': 7.0, 'small': 2.0, 'will': 1.0, 'little': 1.0, 'albiet': 1.0, 'dry': 2.0, 'not': 1.0, 'kinda': 1.0, 'shape': 1.0, 'strap': 1.0, 'an': 1.0, 'okay': 1.0, 'would': 1.0, 'tight': 1.0, 'my': 1.0, 'there': 1.0, 'between': 1.0, 'your': 1.0, 'keeps': 1.0, 'moving': 1.0, 'open': 1.0, 'flow': 1.0, 'people': 1.0, 'walking': 1.0, 'by': 1.0, 'down': 1.0, 'worked': 1.0, 'great': 1.0, 'while': 1.0, 'daughter': 1.0, 'grabbing': 1.0}
Word element => {'better': 1.0, 'mind': 1.0, 'paying': 1.0, 'friend': 1.0, 'recommend': 1.0, 'would': 1.0, 'to': 1.0, 'purpose': 1.0, 'for': 2.0, 'there': 1.0, 'out': 1.0, 'works': 1.0, 'teather': 1.0, 'little': 2.0, 'fabric': 2.0, 'however': 1.0, 'cover': 1.0, 'best': 1.0, 'well': 1.0, 'a': 4.0, 'is': 2.0, 'time': 1.0, 'wrinkled': 1.0, 'product': 1.0, 'and': 2.0, 'more': 1.0, 't': 1.0, 'the': 4.0, 'easiy': 1.0, 'cheap': 1.0, 'i': 3.0, 'think': 1.0, 'wouldn': 1.0, 'it': 4.0, 'first': 1.0, 'ineashed': 1.0, 'this': 2.0}
Word element => {'udders': 1.0, 'your': 1.0, 'covers': 1.0, 'it': 1.0}
Word element => {'goes': 1.0, 'weight': 1.0, 'it': 5.0, 'when': 1.0, 'am': 4.0, 'her': 2.0, 'saved': 1.0, 'i': 11.0, 'time': 1.0, 'and': 4.0, 'not': 1.0, 'bring': 1.0, 'feel': 1.0, 'great': 1.0, '6': 1.0, 'ready': 1.0, 'awkward': 1.0, 'but': 1.0, 'work': 2.0, 'so': 3.0, 'can': 2.0, 'weeks': 1.0, 'back': 1.0, 'came': 1.0, 'to': 5.0, 'all': 1.0, 'they': 1.0, 'should': 1.0, 'their': 2.0, 'breastfeeding': 1.0, 'one': 1.0, 'smothering': 1.0, 'uncomfortable': 1.0, 'for': 2.0, 'conversation': 1.0, 'able': 3.0, 'being': 2.0, 'want': 1.0, 'mothers': 1.0, 'while': 2.0, 'said': 1.0, 'air': 1.0, 'in': 1.0, 'me': 2.0, 'my': 2.0, 'business': 1.0, 'part': 1.0, 'anywhere': 2.0, 'the': 3.0, 'about': 1.0, 'purse': 1.0, 'she': 2.0, 'baby': 1.0, 'this': 1.0, 'dont': 1.0, 'allows': 1.0, 'with': 3.0, 'hesitation': 1.0, 'be': 1.0, 'shy': 1.0, 'still': 1.0, 'lil': 1.0, 'under': 1.0, 'fold': 1.0, 'have': 3.0, 'a': 2.0, 'feeding': 1.0, 'half': 1.0, 'its': 1.0, 'personally': 1.0, 'feed': 2.0, 'even': 1.0, 'noticeable': 1.0, 'material': 1.0, 'light': 1.0, 'like': 1.0, 'opening': 1.0, 'room': 1.0, 'at': 2.0, 'is': 4.0, 'look': 1.0, 'down': 1.0, 'see': 1.0, 'ease': 1.0, 'must': 1.0, 'everyone': 1.0, 'breathing': 1.0, 'working': 1.0, 'up': 1.0, 'put': 1.0, 'take': 1.0, 'that': 1.0, 'because': 2.0, 'everywhere': 1.0, 'without': 3.0, 'fed': 1.0, 'shopping': 1.0, 'feeling': 1.0}
Word element => {'good': 1.0, 'material': 1.0, 'cloth': 1.0, 'so': 2.0, 'pictured': 1.0, 'physically': 1.0, 'own': 1.0, 'its': 1.0, 'nothing': 1.0, 'can': 2.0, 'boning': 1.0, 'absolutely': 1.0, 'cute': 1.0, 'see': 2.0, 'does': 1.0, 'while': 1.0, 'part': 1.0, 'i': 3.0, 'buy': 1.0, 'place': 1.0, 'the': 6.0, 't': 1.0, 'this': 1.0, 'it': 1.0, 'would': 1.0, 'him': 1.0, 'keep': 1.0, 'at': 1.0, 'you': 1.0, 'again': 1.0, 'cover': 2.0, 'ribbing': 1.0, 'baby': 1.0, 'nursing': 1.0, 'have': 1.0, 'in': 1.0, 'itself': 1.0, 'hold': 1.0, 'not': 1.0, 'stay': 1.0, 'top': 2.0, 'back': 1.0, 'won': 1.0, 'your': 1.0, 'put': 1.0, 'on': 1.0, 'design': 1.0, 'is': 2.0, 'and': 2.0, 'to': 2.0, 'as': 1.0}
Word element => {'again': 1.0, 'used': 1.0, 'haven': 1.0, 'frustrated': 1.0, 'latching': 1.0, 'problems': 1.0, 'needed': 1.0, 'top': 1.0, 'on': 1.0, 'make': 1.0, 'enough': 1.0, 'to': 4.0, 'baby': 2.0, 'of': 1.0, 'both': 1.0, '34': 2.0, 'nurse': 1.0, 'waste': 1.0, 'while': 1.0, 'so': 5.0, 'kept': 1.0, 'got': 2.0, 'pull': 1.0, 'pulling': 1.0, 'this': 2.0, 'it': 2.0, 'read': 1.0, 'hands': 2.0, 'the': 3.0, 'took': 1.0, 'i': 9.0, 'because': 1.0, 'free': 2.0, 'one': 1.0, 'my': 2.0, 'tight': 1.0, 'insert': 1.0, 'anyway': 1.0, 'a': 3.0, 't': 2.0, 'could': 1.0, 'in': 1.0, 'money': 1.0, 'but': 2.0, 'who': 1.0, 'at': 1.0, 'see': 2.0, 'couldn': 1.0, 'had': 2.0, 'ship': 1.0, 'what': 1.0, 'thought': 1.0, 'would': 1.0, 'here': 1.0, 'bow': 1.0, 'be': 1.0, 'way': 1.0}
Word element => {'that': 1.0, 'almost': 1.0, 'baby': 1.0, 'new': 1.0, 'a': 1.0, 'so': 1.0, 'and': 1.0, 'discretely': 1.0, 'up': 4.0, 'fresh': 1.0, 'very': 1.0, 'as': 1.0, 'have': 1.0, 'nursing': 1.0, 'bag': 1.0, 'cover': 2.0, 'dil': 1.0, 'one': 1.0, 'for': 2.0, 'wish': 1.0, 'matches': 1.0, 'to': 1.0, 'wanted': 1.0, 'had': 2.0, 'it': 1.0, 'children': 1.0, 'this': 1.0, 'easy': 1.0, 'last': 2.0, 'my': 2.0, 'bought': 2.0, 'i': 5.0, 'when': 1.0, 'stained': 1.0, 'got': 2.0, 'pretty': 2.0, 'her': 5.0, 'used': 2.0, 'diaper': 1.0, 'the': 1.0, 'these': 1.0, 'covers': 1.0, 'they': 1.0, 'makes': 1.0}
Word element => {'product': 1.0, 'awesome': 1.0}
Word element => {'fasten': 1.0, 'help': 1.0, 'little': 1.0, 'discreetly': 1.0, 'peak': 1.0, 'top': 1.0, 'wrinkles': 1.0, 'at': 2.0, 'one': 1.0, 'love': 1.0, 'your': 1.0, 'two': 1.0, 'i': 1.0, 'helps': 1.0, 'have': 1.0, 'nursing': 1.0, 'some': 1.0, 'these': 2.0, 'of': 1.0, 'while': 1.0, 'the': 4.0, 'curved': 1.0, 'allowing': 1.0, 'and': 2.0, 'get': 1.0, 'need': 1.0, 'ventilation': 1.0, 'band': 1.0, 'covers': 2.0, 'it': 2.0, 'can': 1.0, 'pretty': 1.0, 'warm': 1.0, 'under': 1.0, 'just': 1.0, 's': 1.0, 'a': 1.0, 'head': 1.0, 'you': 2.0, 'easily': 1.0, 'when': 1.0, 'up': 1.0, 'wash': 1.0, 'strap': 1.0, 'will': 1.0, 'patterns': 1.0, 'to': 2.0, 'be': 1.0, 'better': 1.0, 'ironed': 1.0}
Word element => {'works': 1.0, 'of': 2.0, 'some': 1.0, 'big': 1.0, 'other': 1.0, 'it': 1.0, 'this': 1.0, 'woman': 1.0, 'smaller': 2.0, 'a': 1.0, 'the': 2.0, 'am': 1.0, 'tried': 1.0, 'i': 2.0, 'covers': 2.0, 'out': 1.0, 'that': 1.0, 'were': 1.0, 'somewhat': 1.0, 'for': 1.0, 'perfectly': 1.0, 'and': 2.0, 'me': 1.0, 'on': 1.0, 'is': 1.0, 'side': 1.0}
Word element => {'fabric': 1.0, 'of': 1.0, 'simple': 1.0, 'its': 1.0, 'because': 1.0, 'but': 1.0, '2': 1.0, 'shoulder': 1.0, 'over': 1.0, 'blanket': 1.0, 'receiving': 1.0, 'just': 2.0, 'he': 1.0, 'him': 1.0, 'down': 1.0, 'look': 1.0, 'chemical': 1.0, 'piece': 1.0, 'with': 1.0, 'this': 1.0, 'baby': 2.0, 'about': 1.0, 'it': 7.0, 'band': 1.0, 'my': 4.0, 'using': 1.0, 'like': 1.0, 'very': 1.0, 'better': 1.0, 'open': 1.0, 'and': 5.0, 'propped': 1.0, 'could': 2.0, 'a': 4.0, 'while': 1.0, 'distorted': 1.0, 'arrived': 1.0, 'out': 1.0, 'top': 1.0, 'smell': 1.0, 'mom': 1.0, 'am': 2.0, 'when': 2.0, 'ordered': 1.0, 'luck': 1.0, 'became': 1.0, 'had': 3.0, 'to': 4.0, 'stars': 1.0, 'supposed': 1.0, 'for': 1.0, 'i': 8.0, 'tried': 1.0, 'boy': 1.0, 'so': 3.0, 'cute': 1.0, 'after': 1.0, 'washed': 2.0, 'print': 1.0, 'see': 2.0, 'according': 1.0, 'the': 4.0, 'instructions': 1.0, 'use': 1.0, 'been': 1.0, 'that': 2.0, 'is': 2.0, 'keep': 1.0, 'nursed': 1.0, 'new': 2.0, 'would': 1.0, 'give': 1.0, 'not': 1.0, 'stay': 1.0}
Word element => {'buy': 1.0, 'new': 1.0, 'like': 1.0, 'still': 1.0, 'washes': 1.0, 'of': 1.0, 'bunch': 1.0, 'already': 1.0, 'favorite': 1.0, 'her': 2.0, 'great': 1.0, 'occupied': 1.0, 'with': 2.0, 'this': 1.0, 'lovey': 1.0, 'is': 2.0, 'tabs': 1.0, 'blanket': 2.0, 'easily': 1.0, 'received': 1.0, 'for': 1.0, 'love': 1.0, 'personalized': 1.0, 'to': 2.0, 'as': 1.0, 'i': 2.0, 'was': 1.0, 'beautiful': 1.0, 's': 4.0, 'a': 5.0, 'survived': 1.0, 'gift': 1.0, 'my': 2.0, 'daughter': 2.0, 'name': 1.0, 'pack': 1.0, 'newborn': 1.0, 'in': 1.0, 'and': 4.0, 'looks': 1.0, 'it': 5.0, 'colorful': 1.0, 'she': 1.0, 'always': 1.0, 'sucking': 1.0, 'that': 1.0, 'playing': 1.0, 'the': 1.0, 'diaper': 1.0, 'mine': 1.0, 'keeps': 1.0, 'just': 1.0, 'large': 1.0, 'enough': 2.0, 'size': 1.0, 'be': 1.0, 'small': 2.0, 'but': 1.0, 'bag': 1.0}
Word element => {'though': 1.0, 'pricey': 1.0, 'in': 1.0, 'him': 1.0, 'must': 1.0, 'his': 1.0, 'year': 1.0, 'a': 2.0, 'well': 1.0, 'was': 1.0, 'to': 2.0, 'i': 1.0, 'products': 1.0, 'old': 2.0, 'when': 1.0, 'hook': 1.0, 'lovey': 1.0, 'so': 1.0, 'with': 1.0, 'both': 1.0, 'carseat': 2.0, 'is': 3.0, 'love': 1.0, 'one': 1.0, 'adorable': 1.0, 'sons': 1.0, 'and': 2.0, 'of': 1.0, 'the': 4.0, 'great': 1.0, 'my': 3.0, 'taggies': 1.0, 'attach': 1.0, '9': 1.0, 'found': 1.0, 'this': 2.0, 'soft': 1.0, '5': 1.0, 'different': 1.0, 'wants': 1.0, '3': 1.0, 'put': 1.0, 'together': 1.0, 'silky': 1.0, 'tags': 1.0, 'are': 1.0, 'sizes': 1.0, 'little': 1.0, 'textures': 1.0, 'it': 4.0, 'month': 1.0, 'loves': 1.0, 'having': 1.0}
Word element => {'product': 1.0, 'expecting': 1.0, 'than': 1.0, 'that': 1.0, 'still': 1.0, 'was': 3.0, 'surprised': 1.0, 'but': 1.0, '14x18': 1.0, 'measurements': 1.0, 'are': 1.0, 'of': 1.0, 'there': 1.0, 'know': 1.0, 'nice': 1.0, 'satin': 1.0, 'soft': 1.0, 'and': 3.0, 'very': 1.0, 'made': 2.0, 'great': 1.0, 'the': 2.0, 'bigger': 1.0, 'minky': 1.0, 'about': 1.0, 'super': 1.0, 'sensory': 1.0, 'love': 1.0, 'this': 1.0, 'it': 2.0, 'business': 1.0, 'blanket': 1.0, 'i': 5.0, 'smooth': 1.0, 'feel': 1.0, 'is': 3.0, 'side': 2.0, 'good': 1.0, 'supporting': 1.0, 'well': 1.0, 'a': 1.0, 'by': 1.0, 'mom': 1.0}
Word element => {'these': 1.0, 'of': 1.0, 'enjoy': 1.0, 'have': 1.0, 'to': 2.0, 'silky': 1.0, 'me': 1.0, 'and': 2.0, 'gift': 1.0, 'bought': 1.0, 'does': 1.0, 'or': 1.0, 'blankies': 1.0, 'friend': 1.0, 'girl': 1.0, 'made': 1.0, 'arrived': 1.0, 'well': 1.0, 'a': 4.0, 'who': 1.0, 'very': 1.0, 'as': 1.0, 'not': 1.0, 'know': 1.0, 'another': 1.0, 'baby': 2.0, 'one': 1.0, 'for': 1.0, 'yet': 1.0, 'if': 1.0, 'want': 1.0, 'is': 2.0, 'expecting': 1.0, 'makes': 1.0, 'boy': 1.0, 'this': 1.0, 'it': 1.0, 'she': 1.0, 'today': 1.0}
Word element => {'have': 1.0, 'should': 1.0, 'little': 1.0, 'moms': 1.0, 'with': 1.0, 'it': 1.0, 'one': 2.0, 'love': 1.0, 'loves': 1.0, 'colorful': 1.0, 'highly': 1.0, 'baby': 1.0, 'by': 1.0, 'lovey': 1.0, 'yellow': 1.0, 'just': 1.0, 'these': 1.0, 'the': 2.0, 'are': 1.0, 'made': 1.0, 'every': 1.0, 'purchased': 1.0, 'we': 2.0, 'quality': 1.0, 'fact': 1.0, 'materials': 1.0, 'so': 2.0, 'circles': 1.0, 'do': 1.0, 'soft': 1.0, 'recommended': 1.0, 'hand': 1.0, 'i': 1.0, 'our': 1.0, 'that': 1.0}
Word element => {'you': 1.0, 'thank': 1.0, 'quality': 1.0, 'given': 1.0, 'thought': 1.0, 'would': 1.0, 'exactly': 1.0, 'recommend': 1.0, 'to': 1.0, 'out': 1.0, 'product': 1.0, 'friends': 1.0, 'be': 2.0, 'll': 1.0, 'tag': 1.0, 'what': 1.0, 'his': 1.0, 'received': 1.0, 'new': 1.0, 'excellent': 1.0, 'description': 1.0, 'just': 1.0, 'son': 1.0, 'is': 3.0, 'month': 1.0, 'blanket': 1.0, 'highly': 1.0, 'jack': 1.0, 'baby': 2.0, 'my': 1.0, 'the': 3.0, 'giving': 1.0, 'and': 2.0, 'loves': 1.0, 'it': 3.0, 'this': 2.0, '7': 1.0, 'item': 1.0, 'absolutely': 1.0, 'gift': 1.0, 'old': 1.0, 'i': 3.0}
Word element => {'made': 1.0, 'my': 1.0, 'these': 1.0, 'for': 1.0, 'one': 1.0, 'i': 1.0, 'he': 2.0, 'of': 1.0, 'won': 1.0, 'actually': 1.0, 's': 2.0, 'mo': 1.0, 'but': 1.0, 'well': 1.0, 'a': 1.0, '13': 1.0, 'smuggler': 1.0, 'and': 1.0, 'son': 1.0, 'very': 1.0, 'loves': 1.0, 'ect': 1.0, 'ties': 1.0, 'tabs': 1.0}
Word element => {'him': 1.0, 'size': 1.0, 'next': 1.0, 'the': 1.0, 've': 1.0, 'call': 1.0, 'we': 1.0, 'as': 1.0, 'up': 1.0, '34': 2.0, 'his': 1.0, 'loves': 1.0, 'and': 1.0, 'nephew': 1.0, 'when': 1.0, 'for': 2.0, 'my': 1.0, 'still': 1.0, 'immediate': 1.0, 'purchased': 2.0, 'i': 2.0, 'old': 1.0, 'an': 1.0, 'a': 1.0, '15': 1.0, 'blanket': 1.0, 'jack': 1.0, 'baby': 1.0, 'about': 1.0, '5': 1.0, 'months': 2.0, 'he': 2.0, 'it': 2.0, 'hit': 1.0, 'tabs': 1.0, 'is': 1.0, 'was': 2.0, 'now': 2.0}
Word element => {'cover': 1.0, 'makes': 1.0, 'very': 1.0, 'and': 1.0, 'soft': 1.0, 'so': 1.0, 'top': 1.0, 'this': 1.0, 'is': 2.0, 'flower': 1.0, 'in': 1.0, 'awesome': 1.0, 'the': 3.0, 'more': 1.0, 'love': 1.0, 'it': 2.0, 's': 1.0, 'just': 1.0, 'than': 1.0, 'beautiful': 2.0, 'picture': 1.0}
Word element => {'bulky': 1.0, 'to': 1.0, 'not': 1.0, 'mattress': 1.0, 'the': 1.0, 'i': 1.0, 'it': 3.0, 'and': 2.0, 'so': 1.0, 'cute': 1.0, 'soft': 1.0, 'loved': 1.0, 'fit': 1.0, 'good': 1.0, 'is': 2.0, 'on': 1.0}
Word element => {'for': 1.0, 'makes': 1.0, 'cuteness': 1.0, 'but': 1.0, 'are': 1.0, 'most': 1.0, 'up': 1.0, 'of': 2.0, 'understand': 1.0, 'fully': 1.0, 'don': 1.0, 'i': 1.0, 'pretty': 1.0, 'cuter': 1.0, 'absolutely': 1.0, 'room': 1.0, 'person': 1.0, 'picture': 1.0, 'daughter': 1.0, 'than': 1.0, 'expensive': 1.0, 'even': 1.0, 'in': 3.0, 'perfect': 1.0, 'these': 1.0, 't': 1.0, 'the': 1.0, 'high': 1.0, 'lamps': 1.0, 'my': 1.0, 'cor': 1.0, 'lamp': 1.0, 'it': 6.0, 'this': 1.0, 's': 4.0, 'kind': 1.0, 'why': 1.0, 'adorable': 1.0, 'd': 1.0, 'so': 2.0, 'is': 2.0, 'looks': 1.0, 'owl': 1.0, 'eacute': 1.0}
Word element => {'very': 1.0, 'but': 1.0, 't': 1.0, 'fit': 2.0, 'pad': 1.0, 'pleased': 1.0, 'soft': 1.0, 'like': 1.0, 'wasn': 1.0, 'expecting': 1.0, 'so': 2.0, 'three': 1.0, 'i': 2.0, 'what': 1.0, 'sides': 1.0, 'exactly': 1.0, 'to': 1.0, 'was': 3.0, 'barrier': 1.0, 'sure': 1.0, 'this': 1.0, 'it': 3.0, 'charm': 1.0, 'going': 1.0, 'has': 1.0, 'out': 1.0, 'if': 1.0, 'properly': 1.0, 'a': 1.0, 'since': 1.0, 'we': 1.0}
Word element => {'out': 1.0, 'shimmie': 1.0, 'going': 1.0, 'if': 1.0, 'just': 1.0, 'easy': 1.0, 'to': 3.0, 'so': 1.0, 'worry': 1.0, 'item': 1.0, 'put': 1.0, 'zip': 1.0, 't': 1.0, 'have': 1.0, 'love': 1.0, 'him': 1.0, 's': 2.0, 'i': 1.0, 'he': 1.0, 'this': 2.0, 'it': 2.0, 'n': 1.0, 'my': 1.0, 'in': 1.0, 'of': 1.0, 'up': 1.0, 'about': 1.0, 'baby': 1.0, 'don': 1.0}
Word element => {'awesome': 1.0, 'probably': 1.0, 'makes': 1.0, 'green': 1.0, 'camel': 1.0, 'tan': 1.0, 'blue': 1.0, 'actually': 1.0, 'deceiving': 1.0, 'shrink': 1.0, 'comes': 1.0, 'dryer': 1.0, 'throw': 1.0, 'alternative': 1.0, 'do': 2.0, 'dry': 1.0, 'air': 1.0, 'or': 1.0, 'yellow': 1.0, 'machine': 1.0, 'pounds': 1.0, '13': 1.0, 'states': 1.0, 'tag': 1.0, 'exclusive': 1.0, 'up': 1.0, 'spandex': 1.0, 'sizing': 1.0, 'recommend': 1.0, 'range': 1.0, 'stripes': 1.0, '5': 2.0, 'versatile': 1.0, 'almost': 1.0, 'while': 2.0, 'overheating': 1.0, 'arms': 3.0, 'the': 26.0, 'not': 6.0, 'me': 1.0, 'given': 1.0, 'has': 3.0, 'them': 1.0, 'would': 2.0, 'other': 1.0, 'an': 1.0, 'fits': 1.0, 'swaddled': 2.0, 'colors': 1.0, 'snap': 1.0, 'errands': 1.0, 'daughter': 2.0, 'day': 1.0, 'since': 3.0, '82': 1.0, 'house': 1.0, 'mind': 1.0, 'how': 1.0, 'coolest': 1.0, 'being': 2.0, 'low': 1.0, '50': 1.0, 'round': 1.0, 'portable': 1.0, 'btu': 1.0, 'degrees': 1.0, 'unit': 1.0, '000': 1.0, 'as': 3.0, 'very': 1.0, '16': 1.0, 'running': 1.0, 'bleach': 2.0, 'woombie': 1.0, 'all': 3.0, 'ac': 2.0, 'snags': 1.0, 'upper': 1.0, 'every': 1.0, 'stay': 1.0, '80s': 1.0, 'she': 5.0, 'so': 3.0, 'gets': 1.0, 'broken': 1.0, 'minimal': 1.0, 'sweat': 1.0, 'without': 1.0, 'tell': 1.0, 'miracle': 1.0, '95': 1.0, 'lot': 1.0, 'hitting': 1.0, 'begin': 1.0, 'wearing': 1.0, '2': 1.0, 'know': 1.0, 'have': 4.0, 'found': 2.0, 'easy': 3.0, 'overheat': 2.0, '90s': 1.0, 'in': 12.0, 'when': 3.0, 'am': 2.0, 'you': 2.0, 'night': 2.0, 'push': 1.0, 'blankets': 1.0, 'swaddle': 10.0, 'this': 10.0, 'if': 1.0, 'great': 3.0, 'what': 1.0, 'sleeps': 1.0, 'whatsoever': 1.0, 'around': 1.0, 'can': 9.0, 'is': 16.0, 'at': 2.0, 'more': 2.0, 'soft': 1.0, 'babies': 1.0, 'finally': 1.0, 'i': 20.0, 'line': 1.0, 'well': 2.0, 'but': 6.0, 'diapers': 2.0, 'my': 7.0, 'are': 3.0, 'sides': 2.0, 't': 7.0, 'a': 8.0, 'stretch': 1.0, 'love': 2.0, 'bottom': 2.0, 'for': 3.0, 'sleep': 3.0, 'central': 1.0, 'back': 1.0, 'to': 10.0, 'get': 4.0, 'months': 1.0, 'change': 1.0, 'cotton': 1.0, 'her': 9.0, 'use': 2.0, 'wash': 2.0, 'out': 4.0, 'changing': 1.0, 'live': 1.0, 'that': 6.0, 'because': 1.0, 'been': 2.0, 'cooler': 1.0, 'chinai': 1.0, 'long': 2.0, 'on': 5.0, 'sleeve': 1.0, 'ask': 1.0, 'onesie': 2.0, 'legs': 1.0, 'then': 2.0, 'pants': 1.0, 'bibs': 1.0, 'fine': 1.0, 'like': 2.0, 'rather': 1.0, 'stroller': 1.0, 'pds': 1.0, 'year': 1.0, 'glad': 1.0, 'clothes': 2.0, 'decoration': 1.0, 'top': 3.0, 'swaddles': 1.0, 'easier': 1.0, 'needed': 1.0, 'newborn': 3.0, 'from': 1.0, 'snaps': 5.0, 'bit': 4.0, 'than': 1.0, 'head': 1.0, 'still': 3.0, 'don': 1.0, 'super': 1.0, 'warm': 1.0, 'and': 17.0, 'just': 1.0, 'best': 1.0, 'with': 3.0, 'using': 1.0, 'picture': 2.0, 'baby': 4.0, 'part': 1.0, 'difficult': 1.0, 'possible': 1.0, 'changed': 1.0, 'plastic': 1.0, 'cali': 1.0, 'they': 2.0, 'over': 3.0, 'sleeping': 1.0, 'durable': 1.0, 'wish': 1.0, 'were': 1.0, 'peace': 1.0, 'made': 3.0, 'these': 1.0, 'open': 1.0, 'think': 1.0, 'another': 1.0, 'layer': 1.0, 'feature': 1.0, 'also': 5.0, 'need': 1.0, 'couldn': 1.0, 'by': 1.0, 'pull': 2.0, 'where': 1.0, 'your': 2.0, 'will': 2.0, 'cover': 1.0, 'of': 3.0, 'even': 1.0, 'put': 3.0, 'strap': 1.0, 'through': 1.0, 'into': 1.0, 'there': 1.0, 'no': 1.0, 'velcro': 1.0, 'never': 1.0, 'iron': 1.0, 'snug': 1.0, 'doesn': 3.0, 's': 6.0, 'average': 1.0, 'expensive': 1.0, 'muslin': 1.0, '11': 1.0, 'height': 1.0, 'weight': 1.0, 'be': 1.0, 'pale': 3.0, 'it': 18.0, 'percentile': 1.0, 'size': 2.0}
Word element => {'out': 1.0, 'full': 1.0, 'incidentally': 1.0, 'snugabunny': 1.0, 'for': 1.0, 'wasn': 1.0, 'swing': 1.0, 'manually': 1.0, 'us': 1.0, 'when': 1.0, 'well': 1.0, 'own': 1.0, 'its': 1.0, 'on': 1.0, 'bought': 1.0, 'rock': 3.0, 'material': 1.0, 'just': 1.0, 'not': 1.0, 't': 3.0, 'the': 2.0, 'cheap': 1.0, 'went': 1.0, 'my': 1.0, 'and': 4.0, 'very': 2.0, 'nice': 1.0, 'what': 1.0, 'really': 1.0, 'looks': 1.0, 'so': 1.0, 'it': 8.0, 'light': 1.0, 'seeming': 1.0, 'plus': 1.0, 'baby': 1.0, 'you': 1.0, 's': 1.0, 'sent': 1.0, 'hated': 1.0, 'we': 2.0, 'but': 1.0, 'back': 1.0, 'doesn': 2.0}
Word element => {'clean': 1.0, 'assemble': 1.0, 'after': 1.0, 'up': 1.0, 'prevent': 1.0, 'seat': 1.0, 'easy': 1.0, 'inclined': 1.0, 'help': 1.0, 'arms': 1.0, 'baby': 1.0, 'loves': 1.0, 'eating': 1.0, 'this': 2.0, '24': 1.0, 'is': 2.0, 'my': 2.0, 'to': 4.0, 'an': 1.0, 'amazing': 1.0, 'great': 1.0, 'the': 2.0, 'such': 1.0, 'spitting': 1.0, 'in': 2.0, 'which': 1.0, 'nap': 1.0, 'during': 1.0, 'son': 1.0, 'day': 1.0, 'product': 1.0, 'allows': 1.0, 'things': 1.0, 'and': 1.0, 'me': 1.0, 'get': 1.0, 'done': 1.0, '7': 1.0, 'without': 1.0, 'a': 1.0}
Word element => {'couple': 1.0, 'another': 1.0, 'able': 1.0, 'months': 2.0, 's': 1.0, 'he': 1.0, 'be': 1.0, 'to': 3.0, 'assemble': 1.0, 'in': 1.0, 'for': 2.0, 'likely': 1.0, 'and': 2.0, 'will': 1.0, 'baby': 1.0, 'use': 1.0, 'four': 1.0, 'easy': 1.0, 'perfect': 1.0, 'sleep': 1.0, 'with': 1.0, 'my': 1.0, 'reflux': 1.0}
Word element => {'he': 1.0, 'think': 1.0, 'i': 1.0, 'well': 1.0, 'vibrating': 1.0, 'awesome': 1.0, 'look': 1.0, 'baby': 1.0, 'll': 1.0, 'yet': 1.0, 'together': 1.0, 'was': 1.0, 'works': 1.0, 'it': 2.0, 'like': 1.0, 'and': 2.0, 'very': 1.0, 'but': 1.0, 'easy': 1.0, 'hasnt': 1.0, 'to': 1.0, 'come': 1.0, 'put': 1.0}
Word element => {'easily': 1.0, 'have': 1.0, 'rating': 1.0, 'mishap': 1.0, 'shipment': 1.0, 'are': 1.0, 'these': 1.0, 'more': 1.0, 'be': 1.0, 'please': 1.0, 'unnecessary': 1.0, 'but': 1.0, 'removed': 1.0, 'stain': 1.0, 'kind': 1.0, 'shout': 1.0, 'using': 1.0, 'dreft': 1.0, 'spot': 1.0, 'oily': 1.0, 'corn': 2.0, 'an': 1.0, 'eaten': 1.0, 'able': 1.0, 'partially': 1.0, 'included': 1.0, 'packaged': 2.0, 'thankfully': 1.0, 'who': 1.0, 'launder': 1.0, 'find': 1.0, 'encounter': 1.0, 'back': 1.0, 'pad': 2.0, 'placed': 1.0, 'directly': 1.0, 'package': 1.0, 'after': 2.0, 'months': 1.0, 'it': 4.0, 'this': 4.0, 'was': 6.0, 'had': 1.0, 'purchased': 1.0, 'delivered': 1.0, 'son': 1.0, 'could': 1.0, 's': 1.0, 'we': 1.0, 'a': 5.0, 'law': 1.0, 'very': 1.0, 'upset': 1.0, 'new': 1.0, 'gross': 1.0, 'dog': 2.0, 'gift': 1.0, 'daughter': 2.0, 'to': 2.0, 'as': 2.0, 'our': 2.0, 'avoided': 1.0, 'been': 1.0, 'box': 1.0, 'that': 2.0, 'low': 1.0, 'were': 2.0, 'also': 1.0, 'item': 2.0, 'ever': 1.0, 'grandson': 1.0, 'long': 1.0, 'stick': 1.0, 'part': 1.0, 'so': 1.0, 'time': 1.0, 'order': 3.0, 'took': 1.0, 'about': 2.0, 'on': 5.0, '3': 1.0, 'rocker': 1.0, 'delivery': 1.0, 'and': 3.0, 'careful': 1.0, 'cardboard': 1.0, 'the': 11.0, 'for': 4.0, 'sad': 1.0, 'of': 3.0, 'my': 1.0, 'in': 3.0, 'made': 1.0, 'home': 1.0, 'disappointed': 1.0, 'how': 1.0, 'extremely': 1.0}
Word element => {'expecting': 1.0, 'for': 1.0, 'buy': 1.0, 'anyone': 1.0, 'and': 1.0, 'must': 1.0, 'godsend': 1.0, 'a': 2.0, 'is': 1.0, 'this': 1.0}
Word element => {'are': 1.0, 'things': 1.0, 'way': 1.0, 'ain': 1.0, 'then': 1.0, 'most': 1.0, 'but': 1.0, 'use': 1.0, '5': 1.0, 'upcoming': 1.0, 'second': 1.0, 'for': 1.0, 'even': 1.0, 'easier': 1.0, 'when': 1.0, 'you': 1.0, 'someone': 1.0, 'take': 1.0, 'this': 1.0, 'with': 2.0, 'he': 1.0, 'it': 1.0, 'is': 2.0, 'the': 3.0, 'bread': 1.0, 'since': 1.0, 't': 1.0, 'a': 2.0, 'n': 1.0, 'not': 1.0, '4': 1.0, 'i': 1.0, 'visiting': 1.0, 'so': 2.0, 'about': 1.0, 'thing': 1.0, 'have': 1.0, 'sliced': 1.0, 'greatest': 1.0, 'get': 2.0, 'easy': 1.0, 'to': 4.0, 'had': 2.0, 'night': 1.0, 'baby': 3.0, 'bed': 1.0, 'months': 1.0, 'one': 2.0, 'grand': 1.0, 'spend': 1.0, 'great': 2.0, 'comfortable': 1.0, 'only': 1.0, 'pack': 1.0, 'much': 1.0, 'set': 1.0, 'newest': 1.0, 'up': 1.0, 'does': 1.0, 'than': 1.0, 'play': 1.0, 'my': 2.0, 'that': 2.0, 'nephew': 1.0, 'very': 1.0, 'in': 1.0}
Word element => {'months': 1.0, '4': 1.0, 'last': 1.0, 'best': 1.0, 'of': 1.0, 'one': 1.0, 'by': 1.0, 'baby': 1.0, 'sleeps': 1.0, 'the': 1.0, 'made': 1.0, 'my': 1.0, 'is': 1.0, 'old': 1.0, 'i': 1.0, 'minute': 1.0, 'far': 1.0, 'he': 1.0, 'purchases': 1.0, 'this': 2.0, 'before': 1.0, 'still': 1.0, 'sometimes': 1.0, 'having': 1.0, 'in': 1.0, 'at': 1.0}
Word element => {'manually': 1.0, 'haven': 1.0, 'newer': 1.0, 'during': 1.0, 'possible': 1.0, 'like': 1.0, 'keep': 1.0, 'product': 2.0, 'con': 1.0, 'have': 2.0, 'than': 1.0, 'infant': 1.0, '6': 1.0, 'age': 1.0, 'also': 1.0, 'we': 2.0, 'months': 2.0, 'every': 1.0, '0': 1.0, 'rocked': 1.0, 'stayed': 1.0, 'son': 2.0, 'worker': 1.0, 'a': 6.0, 't': 2.0, 'could': 2.0, 's': 2.0, 'days': 1.0, 'stairs': 1.0, 'about': 1.0, 'play': 1.0, 'thing': 1.0, 'no': 2.0, 'all': 1.0, 'spend': 1.0, 'tried': 1.0, 'until': 1.0, 'my': 6.0, 'so': 1.0, 'after': 1.0, 'was': 4.0, 'models': 1.0, 'motor': 1.0, 'fold': 1.0, 'he': 4.0, 'rocking': 1.0, 'this': 7.0, 'n': 1.0, 'only': 2.0, 'recommended': 1.0, 'and': 10.0, 'arms': 1.0, 'old': 1.0, 'its': 1.0, 'six': 1.0, 'you': 1.0, 'night': 2.0, 'slept': 2.0, 'i': 6.0, 'in': 5.0, 'sleeper': 7.0, 'newborn': 2.0, 'swing': 3.0, 'didn': 1.0, 'three': 1.0, 'desperate': 1.0, 'hands': 1.0, 'some': 1.0, 'want': 1.0, 'soundly': 1.0, 'miracle': 1.0, 'surface': 1.0, 'weeks': 1.0, 'would': 2.0, 'dinner': 1.0, 'here': 1.0, 'incline': 1.0, 'slides': 1.0, 'be': 1.0, 'him': 2.0, 'it': 4.0, 'put': 1.0, 'washed': 1.0, 'on': 3.0, 'awake': 1.0, 'while': 2.0, 'hard': 1.0, 'bought': 2.0, 'carpeted': 1.0, 'too': 2.0, 'happy': 1.0, 'when': 1.0, 'sit': 1.0, 'stare': 1.0, 'need': 1.0, 'feature': 2.0, 'or': 1.0, 'world': 1.0, 'at': 1.0, 'is': 6.0, 'floors': 1.0, 'there': 2.0, 'are': 1.0, 'wheels': 1.0, 'easy': 1.0, 'carry': 1.0, 'ability': 1.0, 'favorite': 1.0, 'up': 1.0, 'down': 1.0, 'that': 2.0, 'easily': 1.0, 'longer': 1.0, 'the': 12.0, 'of': 2.0, 'for': 3.0, 'combined': 1.0, 'investigated': 1.0, 'contentedly': 1.0, 'with': 1.0, 'sleep': 2.0, 'back': 2.0, 'timer': 1.0, 'rock': 2.0, 'forth': 2.0, 'to': 6.0, 'bassinet': 2.0, 'superior': 1.0, 'made': 2.0, 'which': 2.0}
Word element => {'recommend': 1.0, 'overall': 1.0, 'some': 1.0, 'am': 1.0, 'somehow': 1.0, 'bored': 1.0, 'as': 1.0, 'toys': 1.0, 'arch': 1.0, 'across': 1.0, 'sound': 1.0, 'goes': 1.0, 'something': 1.0, 'mobile': 1.0, 'had': 1.0, 'effect': 1.0, 'especially': 1.0, 'where': 1.0, 'noise': 1.0, 'underneath': 1.0, 'rug': 1.0, 'play': 3.0, 'about': 1.0, 'now': 1.0, 'carpet': 1.0, 'work': 1.0, 'know': 1.0, 'fit': 1.0, 't': 2.0, 'don': 2.0, 'assume': 1.0, 'say': 1.0, 'slightly': 1.0, 'cons': 1.0, 'way': 1.0, 'out': 1.0, 'needs': 1.0, 'w': 3.0, 'any': 1.0, 'into': 2.0, 'up': 2.0, 'wakes': 1.0, 'comes': 1.0, 'laminate': 1.0, 'room': 1.0, 'shut': 1.0, 'switch': 1.0, 'has': 1.0, 'hopeful': 1.0, 'our': 1.0, 'other': 3.0, 'an': 2.0, 'all': 1.0, 'sucessful': 1.0, 'down': 1.0, 'not': 6.0, 'hang': 1.0, 'give': 1.0, 'will': 5.0, 'same': 1.0, 'month': 1.0, 'folds': 1.0, 'she': 5.0, 'me': 1.0, 'my': 1.0, 'main': 1.0, 'sleeping': 1.0, 'they': 2.0, 'have': 2.0, 'must': 1.0, 'her': 5.0, 'good': 1.0, 'which': 2.0, 'like': 3.0, 'vibration': 3.0, 'called': 1.0, 'bought': 1.0, 'attachments': 2.0, 'be': 6.0, 'would': 7.0, 'lug': 1.0, 'it': 16.0, 'thought': 1.0, 'personally': 1.0, 'instead': 1.0, 'old': 1.0, 'well': 1.0, 'i': 16.0, '4': 1.0, 'or': 1.0, 'feature': 2.0, 'm': 1.0, 'in': 5.0, 'colicky': 1.0, 'regular': 1.0, 'reason': 2.0, 'we': 1.0, 'take': 1.0, 'moving': 1.0, 'for': 4.0, 'yet': 1.0, 'love': 3.0, 'products': 1.0, 'product': 2.0, '2': 1.0, 'hardwood': 2.0, 'but': 6.0, 'swing': 2.0, 'nice': 2.0, 'little': 2.0, 'options': 1.0, 'only': 1.0, 'longer': 1.0, 'the': 15.0, 'of': 3.0, 'helps': 1.0, '5': 1.0, 'n': 2.0, 'motions': 1.0, 'perfered': 1.0, 'bringing': 1.0, 'floors': 1.0, 'at': 1.0, 'is': 6.0, 'around': 2.0, 'sleeps': 1.0, 'c': 4.0, 'see': 2.0, 'b': 4.0, 'off': 3.0, 'pack': 1.0, 'think': 2.0, 'much': 1.0, 'put': 1.0, 'on': 5.0, 'sleeper': 1.0, 'first': 1.0, 'a': 9.0, 's': 2.0, 'one': 1.0, 'try': 1.0, 'too': 1.0, 'trip': 1.0, 'and': 8.0, 'noisey': 1.0, 'to': 5.0, 'bassinet': 1.0, 'during': 1.0, 'day': 2.0, 'timer': 1.0, 'rock': 2.0, 'things': 1.0, 'starts': 1.0, 'inclined': 2.0, 'night': 2.0, 'can': 2.0, 'so': 2.0, 'naps': 1.0, 'settle': 1.0, 'pros': 1.0, 'stayed': 1.0, 'self': 2.0, 'highly': 1.0, 'weekend': 1.0, 'this': 6.0, 'rocking': 4.0, 'easily': 1.0, 'that': 6.0, 'automatically': 1.0, 'great': 1.0, 'if': 5.0, 'portablility': 1.0, 'gets': 2.0, 'unsettled': 1.0, 'stars': 1.0, 'portable': 1.0, 'start': 1.0, 'from': 2.0, 'sleep': 3.0, 'back': 1.0, 'nicely': 1.0, 'alone': 1.0, 'also': 3.0, 'us': 1.0, 'when': 2.0, 'having': 1.0, 'with': 3.0}
Word element => {'months': 1.0, '7': 1.0, 'is': 2.0, 'absolutely': 1.0, 'she': 1.0, 'same': 2.0, 'stopped': 1.0, 'it': 3.0, 'sister': 1.0, 'this': 2.0, 'loves': 1.0, 'and': 2.0, 'son': 1.0, 'as': 1.0, 'my': 2.0, 'own': 1.0, 'great': 1.0, 'the': 2.0, 'product': 1.0, 'bought': 1.0, 'old': 1.0, 'rnp': 3.0, 'i': 3.0, 'using': 1.0, 'love': 1.0, 'for': 1.0, 'one': 1.0, 'a': 2.0, 'well': 1.0, 'just': 1.0, 'not': 1.0, 'but': 1.0, 'all': 1.0}
Word element => {'six': 1.0, 'months': 2.0, 'they': 1.0, 'eden': 1.0, 'three': 1.0, 'so': 1.0, 'and': 3.0, 'a': 1.0, 'best': 1.0, 'kinley': 1.0, 'investment': 1.0, 'are': 1.0, 'the': 1.0, 'made': 1.0, 'grandmother': 1.0, 'could': 1.0, 'have': 1.0, 'does': 1.0, 'i': 1.0, 'love': 1.0, 'it': 1.0}
Word element => {'me': 1.0, 'helps': 1.0, 'after': 1.0, 'diaper': 1.0, 'attributed': 1.0, 'people': 1.0, 'some': 1.0, 'that': 1.0, 'head': 1.0, 'against': 1.0, 'prevent': 1.0, 'and': 2.0, 'cuddled': 1.0, 'snuzzler': 1.0, 'well': 1.0, 'would': 1.0, 'portable': 1.0, 'think': 1.0, 'possible': 1.0, 'her': 4.0, 'colic': 1.0, 'help': 2.0, 'issues': 1.0, 'although': 1.0, 'soundly': 2.0, 'monitor': 2.0, 'very': 1.0, 'kiddopotamus': 1.0, 'day': 1.0, 'doesn': 2.0, 'oma': 1.0, 'but': 1.0, 'crib': 1.0, 'daughter': 1.0, 'in': 4.0, 'also': 2.0, 'falls': 1.0, 'flat': 2.0, 'have': 3.0, 'sit': 1.0, 'asleep': 1.0, 'without': 1.0, 'the': 6.0, 'sleeper': 2.0, 'this': 2.0, 'yet': 1.0, 'product': 1.0, 'for': 3.0, 'sleep': 2.0, 'our': 2.0, 'any': 1.0, 'as': 3.0, 'to': 7.0, 'clipped': 1.0, 'be': 1.0, 'incline': 1.0, 'it': 3.0, 'she': 4.0, 'more': 1.0, 'sleeps': 1.0, 'is': 1.0, 'great': 1.0, 'feel': 2.0, 'use': 3.0, 'vibration': 1.0, 'sleeping': 1.0, 'like': 2.0, 'snuggled': 1.0, 'don': 2.0, 'up': 2.0, 'll': 1.0, 'movement': 1.0, 'happily': 1.0, 'levana': 1.0, 'we': 3.0, 't': 4.0, 'a': 3.0, 'while': 1.0, 'during': 1.0, 'feature': 1.0, 'i': 2.0, 'baby': 1.0, 'night': 1.0, 'family': 1.0, 'save': 1.0, 'much': 1.0}
Word element => {'else': 1.0, 'awake': 1.0, 'keep': 1.0, 'both': 1.0, 'baby': 1.0, 'no': 1.0, 'terribly': 1.0, 'vibrate': 1.0, 'fold': 1.0, 'buttons': 1.0, 'and': 1.0, 'green': 1.0, 'function': 1.0, 'which': 1.0, 'vibration': 1.0, 'using': 1.0, 'you': 1.0, 'when': 1.0, 'so': 2.0, 'however': 1.0, 'after': 1.0, 'also': 1.0, 'method': 1.0, 'in': 4.0, 'newborn': 1.0, 'up': 1.0, 'sound': 1.0, 'or': 1.0, 'his': 1.0, 'crib': 1.0, 'he': 1.0, 'this': 2.0, 'it': 2.0, 'press': 1.0, 'bassinet': 1.0, 'anyone': 1.0, 'him': 1.0, 'incline': 1.0, 'squeaky': 1.0, 'makes': 1.0, 'life': 1.0, 'because': 1.0, 'saver': 1.0, 'better': 1.0, 'awful': 1.0, 'the': 7.0, 'a': 2.0, 't': 2.0, 'my': 1.0, 'has': 2.0, 'won': 1.0, 'those': 1.0, 'me': 2.0, 'reflux': 1.0, 'feel': 1.0, 'use': 2.0, 'room': 1.0, '5': 1.0, 'weeks': 1.0, 'soothe': 1.0, 'doesn': 1.0, 'of': 3.0, 'been': 1.0, 'rocking': 1.0, 'is': 1.0, 'matter': 1.0, 'part': 1.0, 'horribly': 1.0, 'try': 1.0, 'much': 1.0, 'bother': 1.0, 'to': 4.0, 'sleep': 2.0, 'as': 2.0, 'i': 1.0, '4': 1.0, 'rattle': 1.0}
Word element => {'anyone': 1.0, 'recommend': 1.0, 'would': 1.0, 'cute': 1.0, 'is': 1.0, 'also': 1.0, 'on': 1.0, 'turn': 1.0, 'got': 1.0, 'really': 1.0, 'every': 1.0, 'day': 1.0, 'son': 1.0, 'it': 2.0, 'n': 1.0, 'with': 1.0, 'he': 2.0, 'this': 2.0, 'used': 1.0, 'down': 1.0, 'we': 2.0, 'the': 5.0, 'my': 1.0, 'rock': 1.0, 'single': 1.0, 'one': 1.0, 'for': 1.0, 'of': 2.0, 'hospital': 1.0, 'calms': 1.0, 'happy': 1.0, 'immediately': 1.0, 'some': 1.0, 'version': 2.0, 'vibration': 1.0, 'just': 1.0, 'that': 2.0, 'babies': 1.0, 'loves': 1.0, 'recommended': 1.0, 'has': 1.0, 'option': 1.0, 'i': 3.0, 'am': 1.0, 'friends': 1.0, 'so': 1.0, 'home': 1.0, 'made': 1.0, 'get': 1.0, 'sure': 1.0, 'pattern': 1.0, 'play': 1.0, 'and': 2.0, 'soon': 1.0, 'as': 2.0, 'our': 1.0, 'to': 2.0}
Word element => {'b': 1.0}
Word element => {'a': 1.0, 'sitting': 1.0, 'is': 1.0, 'mom': 1.0, 'when': 1.0, 'reach': 1.0, 'within': 1.0, 'size': 1.0, 'chair': 1.0, 'nice': 1.0, 'baby': 1.0, 'in': 1.0, 'for': 1.0, 'puts': 1.0, 'storage': 1.0, 'that': 1.0, 'great': 1.0, 'it': 1.0, 'folds': 1.0, 'up': 1.0}
Word element => {'house': 1.0, 'great': 1.0, 'and': 2.0, 'price': 1.0, 'gets': 1.0, 'around': 1.0, 'job': 1.0, 'the': 2.0, 'done': 1.0, 'super': 1.0, 'easy': 1.0, 'to': 1.0, 'move': 1.0}
Word element => {'in': 1.0, 'you': 1.0, 'if': 1.0, 'wouldn': 1.0, 'refunding': 1.0, 'situation': 1.0, 'of': 1.0, 'price': 1.0, 'are': 1.0, 'called': 1.0, 'newborn': 1.0, 'way': 1.0, 'with': 1.0, 'diagnosed': 1.0, 'what': 1.0, 'had': 1.0, 'headrest': 1.0, 'there': 1.0, 'avoid': 1.0, 'been': 1.0, 'that': 1.0, 'were': 1.0, 'told': 1.0, 'about': 1.0, 'them': 1.0, 'baby': 2.0, 'using': 1.0, 'used': 1.0, 'his': 1.0, 'only': 1.0, 'this': 3.0, 'it': 1.0, 'he': 1.0, 'hard': 1.0, 'mothers': 1.0, 'looked': 1.0, 'take': 1.0, 'many': 1.0, 'shocked': 1.0, 'weeks': 1.0, 'can': 1.0, 'money': 1.0, 'but': 3.0, 'naps': 1.0, 'back': 1.0, 'developed': 2.0, 'torticollis': 2.0, 'worth': 1.0, 'or': 1.0, 'advance': 1.0, 'n': 1.0, 'not': 1.0, 't': 1.0, 'we': 1.0, 'a': 2.0, 'see': 1.0, 'for': 4.0, 'product': 1.0, 'chance': 1.0, 'fischer': 1.0, 'be': 1.0, 'rock': 1.0, 'is': 2.0, 'coincidence': 1.0, 'believe': 1.0, 'the': 6.0, 'may': 2.0, 'my': 2.0, 'has': 1.0, 'reviewing': 1.0, 'play': 1.0, 'and': 4.0, 'bedtime': 1.0, 'after': 1.0, 'so': 1.0, 'i': 4.0, 'at': 1.0, 'negative': 1.0, 'they': 1.0, 'reviews': 1.0, '3': 1.0, 'on': 1.0, 'was': 1.0, 'all': 1.0, 'to': 2.0}
Word element => {'size': 1.0, 'larger': 2.0, 'wish': 1.0, '4mon': 1.0, 'at': 1.0, 'grow': 1.0, 'starting': 1.0, 'or': 3.0, 'round': 1.0, 'for': 1.0, 'is': 3.0, 'already': 1.0, 'keeping': 1.0, 'made': 1.0, 'out': 1.0, 'cleaning': 1.0, 'sleeping': 1.0, 'big': 1.0, 'all': 1.0, 'while': 1.0, 'baby': 2.0, 'watching': 1.0, 'great': 1.0, 'it': 2.0, 'he': 1.0, 'this': 1.0, 'was': 1.0, 'to': 2.0, 'you': 1.0, 'they': 1.0, 'next': 1.0, 'boy': 1.0, 'up': 1.0, 'and': 1.0, 'our': 1.0, 'tv': 1.0, 'a': 1.0}
Word element => {'babies': 1.0, 'all': 1.0, 'back': 1.0, 'relief': 1.0, 'is': 2.0, 'height': 1.0, 'which': 1.0, 'nice': 1.0, 's': 1.0, 'because': 1.0, 'a': 4.0, 'immediately': 1.0, 'safe': 1.0, 'with': 1.0, 'this': 1.0, 'it': 1.0, 'severe': 1.0, 'he': 3.0, 'has': 1.0, 'can': 1.0, 'must': 1.0, 'son': 1.0, 'my': 2.0, 'reflux': 2.0, 'adjusted': 1.0, 't': 1.0, 'the': 1.0, 'crib': 1.0, 'sleeper': 2.0, 'sleep': 1.0, 'acid': 2.0, 'to': 1.0, 'also': 1.0, 'in': 1.0, 'seems': 1.0, 'for': 2.0, 'comfortable': 1.0, 'and': 1.0}
Word element => {'sleeps': 1.0, 'their': 1.0, 'something': 1.0, 'next': 1.0, 'awake': 1.0, 'my': 1.0, 'bed': 1.0, 'for': 1.0, 'also': 1.0, 'needs': 1.0, 'in': 2.0, 'birth': 1.0, 'present': 1.0, 'new': 1.0, 'both': 1.0, 'his': 1.0, 'put': 1.0, 'a': 1.0, 'as': 1.0, 'do': 1.0, 'and': 2.0, 'at': 1.0, 'nephew': 1.0, 'got': 1.0, 'night': 1.0, 'i': 1.0, 'when': 1.0, 'mom': 1.0, 'hands': 1.0, 'she': 2.0, 'says': 1.0, 'with': 1.0, 'he': 2.0, 'this': 1.0, 'it': 2.0, 'great': 1.0, 'him': 1.0, 's': 2.0, 'to': 3.0}
Word element => {'loves': 1.0, 'baby': 1.0, 'my': 1.0, 'and': 1.0, 'love': 1.0, 'it': 2.0, 'best': 1.0, 'gift': 1.0, 'use': 1.0, 'perfect': 2.0, 'easy': 1.0, 'being': 1.0, 'to': 1.0, 'ever': 1.0, 'in': 1.0, 'for': 1.0, 'co': 1.0, 'sleeping': 1.0}
Word element => {'little': 1.0, 'with': 1.0, 'out': 1.0, 'try': 1.0, 'durable': 1.0, 'seem': 1.0, 'toys': 1.0, 'and': 1.0, 't': 2.0, 'get': 1.0, 'bambino': 1.0, 'be': 1.0, 'to': 3.0, 'didn': 1.0, 'but': 1.0, 'use': 1.0, 'wait': 1.0, 'can': 1.0, 'it': 2.0, 'my': 1.0, 'yet': 1.0, 'the': 1.0, 'material': 1.0}
Word element => {'all': 1.0, 'tell': 1.0, 'favorite': 1.0, 'needs': 1.0, 'and': 2.0, 'size': 1.0, 'can': 1.0, 's': 2.0, 'you': 1.0, 'the': 2.0, 'my': 4.0, 'for': 1.0, 'one': 2.0, 'i': 4.0, 'same': 1.0, 'as': 1.0, 'pink': 1.0, 'much': 1.0, 'tub': 2.0, 'girlfriends': 1.0, 'so': 1.0, 'loved': 1.0, 'bought': 1.0, 'new': 1.0, 'ever': 1.0, 'your': 1.0, 'adjust': 1.0, 'boy': 1.0, 'to': 1.0, 'was': 1.0, 'girl': 1.0, 'version': 1.0, 'about': 1.0, 'baby': 2.0, 'highly': 1.0, 'last': 1.0, 'recommend': 1.0, 'this': 1.0, 'it': 3.0}
Word element => {'concern': 1.0, 'won': 1.0, 'that': 1.0, 'need': 1.0, 'bigger': 1.0, 'twins': 1.0, 'once': 1.0, 'am': 1.0, 'pleased': 1.0, 'otherwise': 1.0, 'ok': 1.0, 'think': 1.0, 'but': 1.0, 'in': 1.0, 'i': 3.0, 'one': 1.0, 'heard': 1.0, 'anymore': 1.0, 's': 1.0, 'alarming': 1.0, 'don': 1.0, 'wanting': 1.0, 'to': 1.0, 'was': 1.0, 'not': 1.0, 'snap': 1.0, 'could': 1.0, 'insert': 2.0, 't': 2.0, 'more': 1.0, 'the': 2.0, 'little': 4.0, 'be': 2.0, 'grow': 1.0, 'tear': 1.0, 'infant': 1.0, 'them': 1.0, 'out': 1.0, 'a': 3.0, 'my': 2.0, 'pulling': 1.0, 'of': 1.0, 'with': 1.0, 'durable': 1.0, 'it': 4.0, 'and': 2.0}
Word element => {'would': 1.0, 'buy': 1.0, 'i': 1.0, 'again': 1.0, 'yes': 1.0, 'convenient': 1.0, 'there': 1.0, 'cheapest': 1.0, 'not': 1.0, 'it': 4.0, 'the': 1.0, 'great': 2.0, 'works': 1.0, 'bath': 1.0, 'little': 1.0, 'but': 1.0, 'out': 1.0, 'tub': 2.0, 'fits': 1.0, 'for': 1.0, 'in': 1.0, 's': 1.0, 'kitchen': 1.0, 'which': 1.0, 'us': 1.0, 'our': 1.0, 'sink': 1.0, 'makes': 1.0, 'very': 1.0}
Word element => {'suzy': 1.0, 'much': 1.0, 'etc': 1.0, 'ducks': 1.0, 'thanks': 1.0, 'little': 1.0, 'it': 2.0, 'arrived': 1.0, 'cute': 2.0, 'very': 3.0, 'and': 2.0, 'was': 2.0, 'so': 2.0, 'safe': 1.0, 'eary': 1.0, 'colorful': 1.0, 'with': 1.0}
Word element => {'recommend': 1.0, 'would': 1.0, 'for': 1.0, 'good': 1.0, 's': 1.0, 'far': 1.0, 'tub': 2.0, 'being': 1.0, 'the': 3.0, 'so': 1.0, 'small': 1.0, 'is': 1.0, 'he': 1.0, 'with': 1.0, 'this': 1.0, 'son': 1.0, 'from': 1.0, 'my': 1.0, 'happy': 1.0, 'm': 1.0, 'because': 1.0, 'hang': 1.0, 'purchase': 1.0, 'bathroom': 1.0, 'weeks': 1.0, 'i': 3.0, 'aside': 1.0, 'can': 1.0, '13': 1.0, 'in': 1.0, 'and': 1.0}
Word element => {'15': 1.0, 'looking': 1.0, 'does': 1.0, 'how': 1.0, 'he': 5.0, 'on': 3.0, 'put': 2.0, 'complained': 1.0, 'you': 1.0, 'when': 1.0, 'some': 1.0, 'hit': 1.0, 'toys': 1.0, 'which': 1.0, 'frog': 1.0, 'at': 3.0, 'is': 2.0, 'his': 4.0, 'around': 1.0, 'the': 6.0, 'to': 4.0, 'least': 1.0, 'loves': 2.0, 'easily': 1.0, 'that': 1.0, 'kohls': 1.0, 'four': 1.0, 'there': 1.0, 'monkey': 4.0, 'have': 3.0, 'a': 1.0, 'solved': 1.0, 'it': 3.0, 'him': 3.0, 'come': 1.0, 'only': 1.0, 'barely': 1.0, 'perfect': 1.0, 'old': 1.0, 'intend': 1.0, 'bounce': 1.0, 'jumped': 1.0, 'this': 2.0, 'highly': 1.0, 'six': 1.0, 'and': 3.0, 'my': 1.0, 'parents': 1.0, 'always': 1.0, 'for': 4.0, 'but': 1.0, 'com': 1.0, 'in': 3.0, 'turn': 1.0, 'reflection': 1.0, 'not': 1.0, 'batteries': 1.0, 'also': 1.0, 'will': 1.0, 'don': 1.0, 't': 1.0, 'likes': 1.0, 'reaching': 1.0, 'want': 1.0, 'month': 1.0, 'same': 1.0, 'many': 1.0, 'baby': 1.0, 'jumperoo': 3.0, 'so': 1.0, 'about': 2.0, 'behind': 1.0, 'need': 1.0, 'or': 1.0, 'are': 1.0, 'first': 1.0, 'above': 1.0, 'was': 1.0, 'recommend': 1.0, '30': 1.0, 'right': 1.0, 'just': 1.0, 'head': 2.0, 'sometimes': 1.0, 'whenever': 1.0, 'd': 1.0, 'price': 1.0, 'problem': 1.0, 'i': 2.0, 'one': 1.0, 'bought': 1.0, 'dot': 1.0, 'up': 2.0, 'less': 1.0, 'we': 2.0, 'then': 1.0, 'used': 1.0, 'off': 1.0, 'promo': 1.0, 'code': 1.0, 'they': 1.0}
Word element => {'another': 1.0, 'yet': 1.0, 'cause': 1.0, 'us': 1.0, 'if': 1.0, 'workout': 1.0, 'risk': 1.0, 'none': 1.0, 'find': 1.0, 'topple': 1.0, 'or': 1.0, 'unexpectedly': 1.0, 'come': 1.0, 'due': 2.0, 'break': 1.0, 'tendency': 1.0, 'any': 1.0, 'thoroughly': 1.0, 'out': 1.0, 'checked': 1.0, 'thorough': 1.0, 'engineer': 1.0, 'jointed': 1.0, 'issue': 1.0, 'safety': 1.0, 'vigorous': 1.0, 'have': 1.0, 'dangerous': 1.0, 'similar': 1.0, 'gives': 2.0, 'they': 1.0, 'easily': 1.0, 'that': 3.0, 'apart': 1.0, 'than': 1.0, 'rib': 1.0, 'opposed': 1.0, 'teether': 1.0, 'dangling': 1.0, 'movement': 1.0, 'jerky': 1.0, 'forth': 1.0, 'back': 1.0, 'toy': 1.0, 'smoother': 1.0, 'move': 1.0, 'to': 8.0, 'intentional': 1.0, 'its': 2.0, 'together': 1.0, 'looser': 1.0, 'flexible': 1.0, 's': 3.0, 'a': 9.0, 'would': 1.0, 'introduced': 1.0, 'complained': 1.0, 'fisher': 2.0, 'purchased': 2.0, 'design': 1.0, 'grandma': 1.0, 'what': 1.0, 'well': 1.0, 'i': 5.0, 'down': 1.0, 've': 1.0, 'several': 1.0, 'the': 16.0, 'plastic': 2.0, 'curved': 1.0, 'for': 7.0, 'original': 3.0, 'ever': 1.0, 'an': 1.0, 'other': 3.0, 'all': 1.0, 'rainforest': 3.0, 'second': 1.0, 'obviously': 1.0, 'reviewers': 1.0, 'thus': 1.0, 'good': 1.0, 'exercise': 1.0, 'ages': 1.0, 'and': 6.0, 'hard': 1.0, 'provides': 1.0, 'his': 1.0, 'wonderful': 1.0, 'buy': 2.0, 'toddlers': 1.0, 'at': 2.0, 'configuration': 1.0, 'is': 5.0, 'as': 4.0, 'pieces': 2.0, 'daughter': 2.0, 'popular': 1.0, 'attractive': 1.0, 'came': 1.0, 'early': 1.0, 'more': 3.0, 'babies': 1.0, 'center': 1.0, 'from': 1.0, 'wife': 1.0, 'ours': 1.0, 'years': 1.0, 'products': 1.0, 'child': 1.0, 'price': 3.0, 'somewhat': 1.0, 'entertainment': 1.0, 'vertical': 2.0, 'one': 5.0, 'rightfully': 1.0, 'wear': 1.0, 'frond': 2.0, 'it': 4.0, 'harmony': 1.0, 'this': 9.0, 'through': 1.0, 'palm': 1.0, 'supports': 1.0, 'loved': 1.0, 'fine': 1.0, 'moving': 2.0, 'we': 1.0, 'then': 1.0, 'mother': 1.0, 'jumperoos': 1.0, 'actually': 1.0, 'order': 1.0, 'adjustable': 1.0, 'triangular': 1.0, 'supporting': 2.0, 'circular': 1.0, 'base': 2.0, 'poles': 2.0, 'walking': 1.0, 'ended': 1.0, 'musical': 1.0, 'my': 5.0, 'grandson': 2.0, 'jumperoo': 3.0, 'so': 2.0, 'friends': 1.0, 'use': 1.0, 'smaller': 1.0, 'did': 1.0, 'seat': 1.0, 'in': 4.0, 'sitting': 1.0, 'their': 2.0, 'home': 1.0, 'ago': 1.0, 't': 1.0, 'replacement': 1.0, 'activity': 1.0, 'both': 2.0, 'house': 1.0, 'was': 2.0, 'didn': 1.0, 'want': 1.0, 'loose': 1.0, 'felt': 1.0, 'green': 1.0, 'same': 2.0, 'exactly': 1.0, 'model': 5.0, 'roughly': 1.0, 'first': 2.0, 'are': 5.0, 'being': 1.0, 'very': 2.0, 'less': 1.0, 'up': 3.0, 'engaging': 1.0, 'pleased': 1.0, 'construction': 1.0, 'differences': 1.0, 'allows': 1.0, 'with': 6.0, 'rigid': 1.0, 'next': 1.0, 'has': 2.0}
Word element => {'case': 1.0, 'as': 2.0, 'to': 3.0, 'place': 2.0, 'waterfall': 1.0, 'most': 1.0, 'but': 1.0, 'product': 1.0, 'for': 2.0, 'fit': 2.0, 'into': 1.0, 'primary': 1.0, 'the': 8.0, 'of': 1.0, 'on': 2.0, 'put': 1.0, 'which': 1.0, 'top': 1.0, 'especially': 2.0, 'right': 1.0, 'll': 1.0, 'snap': 2.0, 'my': 1.0, 'tight': 2.0, 'easy': 1.0, 'keep': 1.0, 'was': 3.0, 'colorful': 1.0, 's': 4.0, 'a': 7.0, 'picked': 1.0, 'eye': 1.0, 'this': 2.0, 'dont': 1.0, 'lot': 1.0, 'one': 2.0, 'toys': 1.0, 'simple': 1.0, 'really': 4.0, 'jumper': 1.0, 'and': 4.0, 'interesting': 1.0, 'think': 1.0, 'giggled': 1.0, 'little': 4.0, 'pieces': 2.0, 'reason': 1.0, 'seems': 1.0, 'it': 10.0, 'him': 1.0, 'well': 1.0, 'i': 8.0, 'putting': 1.0, 'like': 3.0, 'lion': 1.0, 'enjoy': 1.0, 'together': 1.0, 'around': 1.0, 'washing': 1.0, 'wobble': 2.0, 'he': 2.0, 'had': 1.0, 'jumps': 1.0, 'bouncer': 1.0, 'trouble': 1.0, 'seat': 2.0, 'in': 4.0, 'said': 3.0, 'there': 2.0, 'that': 3.0, 'fall': 1.0, 'because': 1.0, 'disconcerting': 1.0, 'not': 2.0, 'only': 1.0, 'issue': 1.0, 'have': 1.0, 'with': 1.0, 'is': 1.0, 'bars': 2.0, 'close': 1.0, 'being': 1.0, 'assemble': 1.0, 'particular': 1.0, 'relatively': 1.0, 'apart': 1.0, 'when': 2.0, 've': 1.0, 'weight': 1.0, 'problem': 1.0, 'though': 1.0, 'or': 1.0, 'remove': 1.0, 'anything': 1.0, 'just': 3.0, 'are': 2.0, 'first': 1.0, 'realized': 1.0}
Word element => {'to': 1.0, 'used': 1.0, 'yet': 1.0, 'my': 1.0, 's': 1.0, 'rarely': 1.0, 'niece': 1.0, 'guess': 1.0, 'kinda': 1.0, 'likes': 1.0, 'not': 1.0, 'jumps': 1.0, 'yay': 1.0, 'it': 3.0, 'even': 1.0, 'she': 2.0, 'though': 1.0, 'in': 1.0}
Word element => {'daily': 1.0, 'down': 1.0, 'easy': 1.0, 'hands': 1.0, 'the': 3.0, 'from': 1.0, 'an': 1.0, 'put': 1.0, 'more': 1.0, 'is': 2.0, 'second': 1.0, 'jump': 1.0, 'brand': 1.0, 'jumparoo': 2.0, 'still': 1.0, 'and': 4.0, 'me': 1.0, 'we': 3.0, 'other': 1.0, 'kids': 1.0, 'this': 1.0, 'much': 1.0, 'only': 1.0, 'he': 1.0, 'have': 2.0, 'exersaucer': 1.0, 'fabric': 1.0, 'clean': 1.0, 'love': 1.0, 'for': 1.0, 'using': 1.0, 'also': 1.0, 'our': 2.0, 'to': 3.0, 'it': 4.0, 'remove': 1.0, '4': 1.0, 'months': 2.0, 'took': 1.0, 'about': 1.0, 'enjoyed': 1.0, '5': 2.0, 'minutes': 1.0, '7': 1.0, 'together': 1.0, 'started': 1.0, 'at': 2.0, 'loves': 1.0}
Word element => {'comfortable': 1.0, 'his': 1.0, 'hanging': 1.0, 'from': 1.0, 'support': 1.0, 'too': 1.0, 'for': 1.0, 'there': 1.0, 'son': 1.0, 'my': 1.0, 'i': 4.0, 'out': 1.0, 'sized': 1.0, 'tend': 1.0, 'does': 1.0, 'go': 1.0, 'maybe': 1.0, 's': 4.0, 'we': 1.0, 'activities': 2.0, 'and': 5.0, 'toys': 1.0, 'legs': 1.0, 'bouncer': 1.0, 'floor': 1.0, 'items': 1.0, 'but': 2.0, 'somewhat': 1.0, 'our': 2.0, 'bars': 1.0, 'is': 2.0, 'which': 2.0, 'like': 1.0, 'deceptive': 1.0, 'making': 1.0, 'an': 1.0, 'all': 1.0, 'other': 1.0, 'by': 1.0, 'home': 1.0, 'thing': 2.0, 'necessarily': 1.0, 't': 1.0, 'farther': 1.0, 'to': 2.0, 'pretty': 2.0, 'expected': 1.0, 'box': 1.0, 'because': 4.0, 'that': 1.0, 'comes': 2.0, 'once': 1.0, 'appear': 1.0, 'reasonably': 1.0, 'themselves': 1.0, 'enamored': 1.0, 'massive': 1.0, 'of': 3.0, 'the': 9.0, 'main': 1.0, 'assembled': 1.0, 'a': 1.0, 'small': 1.0, 'have': 1.0, 'not': 3.0, 'space': 1.0, 'keep': 1.0, 'this': 2.0, 'it': 8.0, 'leave': 1.0, 'as': 2.0, 'annoying': 1.0, 'accidentally': 1.0, 'step': 1.0, 'long': 1.0, 'amount': 1.0, 'on': 2.0, 'noticed': 1.0, 'same': 1.0, 'with': 1.0, 'fisher': 3.0, 'sure': 1.0, 'price': 3.0, 'in': 3.0, 'seat': 2.0, 'm': 1.0, 'had': 1.0, 'extended': 1.0, 'beyond': 1.0, 'unexpected': 1.0, 'jumperoo': 1.0, 'so': 1.0, 'just': 1.0, 'something': 1.0, 'ensure': 1.0, 'stability': 1.0, 'while': 2.0, 'than': 1.0, 'way': 1.0, 'huge': 1.0, 'actually': 1.0, 'baby': 2.0, 'quality': 1.0, 'seems': 2.0, 'sturdy': 1.0, 'colors': 1.0, 'up': 1.0, 'takes': 1.0, 'tad': 1.0, 'noisy': 1.0, 'wouldn': 1.0}
Word element => {'nursery': 1.0, 'item': 1.0, 'refridgerator': 2.0, 'enough': 1.0, 'have': 1.0, 'fold': 1.0, 'look': 1.0, 'stores': 1.0, 'priced': 1.0, 'comparably': 1.0, 'on': 1.0, 'einstein': 1.0, 'too': 1.0, 'think': 1.0, 'also': 1.0, 'life': 1.0, 'useful': 1.0, 'pretty': 1.0, 'get': 1.0, 'device': 1.0, 'containment': 1.0, 'does': 1.0, 'likes': 1.0, 'still': 2.0, 'crawl': 1.0, 'at': 2.0, 'things': 1.0, 'sturdy': 1.0, 'third': 1.0, 'as': 4.0, 'same': 1.0, 'under': 1.0, 'had': 1.0, 'confusing': 1.0, 'big': 2.0, 'long': 2.0, 'they': 1.0, 'metal': 4.0, 'poles': 5.0, 'take': 2.0, 'shouldn': 1.0, 'base': 2.0, 'good': 1.0, 'new': 1.0, 'happily': 1.0, 'attached': 1.0, 'that': 12.0, 'because': 2.0, 'would': 1.0, 'huge': 2.0, 'for': 17.0, 'while': 1.0, 'hard': 2.0, 'high': 1.0, 'to': 18.0, 'daycare': 1.0, 'me': 3.0, 'easily': 1.0, 'looks': 1.0, 'models': 1.0, 'weighed': 1.0, 'please': 2.0, 'my': 3.0, 'are': 5.0, 'first': 2.0, 'bad': 1.0, 'try': 1.0, 'actual': 2.0, 'permanently': 1.0, 'older': 1.0, 'size': 1.0, 'attach': 3.0, 'though': 1.0, 'apartment': 2.0, 'used': 2.0, 'hit': 1.0, 'a': 19.0, 'small': 2.0, 'being': 1.0, 'expose': 1.0, 'already': 1.0, 'supports': 2.0, 'this': 10.0, 'springs': 1.0, 'babies': 1.0, 'more': 2.0, 'bedroom': 1.0, 'jumper': 8.0, 'not': 2.0, 'different': 1.0, 'floor': 1.0, 'rounded': 1.0, 'much': 1.0, 'pictures': 1.0, 'do': 1.0, 'plastic': 1.0, '8': 1.0, 'our': 1.0, 'model': 1.0, 'moved': 1.0, 'two': 1.0, 'little': 1.0, 'i': 5.0, 'impression': 1.0, 'dealing': 1.0, 'other': 3.0, 'how': 1.0, 'rainforest': 2.0, '20': 1.0, 'ones': 1.0, 'all': 1.0, 'pole': 4.0, 'wheel': 1.0, 'kitchen': 1.0, 'you': 5.0, 'second': 1.0, 'deal': 1.0, 'assembling': 1.0, 'baby': 8.0, 'many': 1.0, 'ample': 1.0, 'the': 28.0, 'was': 4.0, 'with': 5.0, 'allows': 1.0, 'buying': 2.0, 'takes': 1.0, 'sized': 1.0, 'up': 8.0, 'child': 4.0, 'them': 1.0, 'has': 5.0, 'quality': 1.0, 'beads': 1.0, 'triangle': 1.0, 'ok': 1.0, 'must': 1.0, 'hip': 1.0, 'smaller': 1.0, 'so': 4.0, 'is': 11.0, 'can': 4.0, 'hold': 1.0, 'table': 1.0, 'find': 1.0, 'before': 2.0, 'jumpers': 1.0, 'down': 1.0, 'removing': 1.0, 'dangles': 2.0, 'from': 4.0, 'frequently': 1.0, 'store': 1.0, 'connected': 2.0, 'unassemble': 2.0, 'above': 1.0, 'boxy': 1.0, 'friends': 2.0, 'fun': 2.0, 't': 2.0, 'along': 1.0, 'attachment': 1.0, 'and': 12.0, 'just': 1.0, 'awkward': 1.0, 'snap': 1.0, 'place': 1.0, 'button': 1.0, 'folds': 1.0, 'what': 1.0, 'about': 4.0, 'in': 3.0, 'together': 1.0, 'activities': 2.0, 'monkey': 1.0, 'give': 1.0, 'thing': 2.0, 'mirror': 3.0, 'disconnect': 1.0, 'push': 1.0, 'animals': 1.0, 'than': 1.0, 'bit': 1.0, 'like': 2.0, 'house': 1.0, 'see': 2.0, 'real': 1.0, 'development': 1.0, 'space': 5.0, 'most': 1.0, 'limited': 1.0, 'children': 1.0, 'm': 2.0, 'doesn': 1.0, 's': 3.0, 'maybe': 1.0, 'toys': 1.0, 'spin': 1.0, 'similar': 1.0, 'parts': 1.0, 'anything': 1.0, 'develop': 1.0, 'time': 4.0, 'hide': 1.0, 'light': 1.0, 'etc': 1.0, 'matters': 1.0, 'short': 1.0, 'three': 1.0, 'crotch': 1.0, 'it': 10.0, 'be': 2.0, '6': 2.0, 'storage': 1.0, 'update': 1.0, 'assemble': 4.0, 'months': 4.0, 'bouncer': 4.0, 'use': 1.0, 'especially': 1.0, 'if': 3.0, 'enjoyed': 1.0, '4': 1.0, 'even': 2.0, 'of': 6.0, 'old': 1.0, 'slide': 1.0, 'now': 2.0, 'he': 5.0, 'then': 5.0, 'only': 2.0, 'but': 4.0, 'amounts': 2.0, 'one': 4.0, '5': 1.0, 'minutes': 2.0, 'will': 2.0, 'waterfall': 1.0, 'bounce': 1.0}
Word element => {'fits': 1.0, 'toes': 1.0, 'little': 1.0, 'min': 1.0, '10': 1.0, 'legs': 1.0, 'than': 1.0, 'as': 1.0, 'opinion': 1.0, 'one': 1.0, 'babies': 1.0, 'have': 1.0, 'more': 1.0, 't': 2.0, 'takes': 1.0, 'of': 2.0, '15': 1.0, 'a': 3.0, 'version': 1.0, 'doesn': 1.0, 'but': 1.0, 'just': 1.0, 'space': 1.0, 'fun': 1.0, 'might': 1.0, 'lot': 2.0, 'she': 1.0, 'and': 2.0, 'folds': 1.0, 'spend': 1.0, 'like': 1.0, 'shame': 1.0, 'shouldn': 1.0, 'this': 1.0, 'it': 3.0, 'previous': 1.0, 'also': 1.0, 'in': 2.0, 'affect': 1.0, 'my': 1.0}
Word element => {'included': 1.0, 'batteries': 1.0, 'cleaned': 1.0, 'removes': 1.0, 'cover': 1.0, '360': 1.0, 'be': 1.0, 'here': 1.0, 'lot': 1.0, 'there': 1.0, 'get': 1.0, 'fisher': 1.0, 'don': 1.0, 'up': 1.0, 'lights': 1.0, 'springs': 1.0, 'are': 2.0, '3': 1.0, 'on': 1.0, 'more': 1.0, 'is': 2.0, 'protect': 1.0, 'price': 1.0, 'the': 3.0, 'jumperoo': 1.0, 'fingers': 1.0, 'covered': 1.0, 'rainforest': 1.0, 'very': 1.0, 'down': 1.0, 'range': 1.0, 'forget': 1.0, 'jumper': 1.0, 'and': 3.0, 'they': 2.0, 'has': 1.0, 'jump': 1.0, 'it': 5.0, 'to': 4.0, 'as': 1.0, 'noises': 1.0, 'this': 1.0, 'sturdy': 1.0, 'activates': 1.0, 'aaa': 1.0, 'can': 1.0, 'music': 1.0, 'mine': 1.0, 'started': 1.0, 'not': 2.0, 'just': 1.0, 'easily': 1.0, 'entertain': 1.0, 'encouraged': 1.0, 'activity': 1.0, 'friends': 1.0, 'so': 2.0, 't': 1.0, 'a': 3.0, 'going': 1.0, 'notice': 1.0, 's': 1.0}
Word element => {'not': 1.0, 'so': 1.0, 'be': 1.0, 'would': 1.0, 'thing': 1.0, 'one': 1.0, 'had': 1.0, 'i': 1.0, 'angles': 1.0, 'with': 1.0, 'make': 1.0, 'stuff': 1.0, 'there': 2.0, 'good': 1.0, 'more': 1.0, 'is': 3.0, 'if': 1.0, 'want': 1.0, 'look': 1.0, 'takes': 1.0, 'up': 2.0, 'exercise': 1.0, 'play': 1.0, 'and': 6.0, 'harness': 1.0, 'do': 1.0, 'station': 1.0, 'learning': 1.0, 'active': 1.0, 'of': 2.0, 'rather': 1.0, 'jumper': 1.0, 'bright': 1.0, 't': 1.0, 'a': 4.0, 'makes': 2.0, 'for': 2.0, 'this': 1.0, 'it': 4.0, 'colorful': 1.0, 'very': 1.0, 'the': 3.0, 'jumperoo': 1.0, 'deal': 1.0, 'well': 1.0, 'won': 1.0, 'at': 2.0, 'space': 1.0, 'change': 1.0, 'but': 1.0, 'happy': 1.0, 'you': 1.0, 'degrees': 1.0, 'anything': 1.0, 'other': 1.0, 'than': 1.0, 'large': 1.0, 'just': 2.0, 'all': 1.0, 'to': 5.0, 'as': 3.0, 'seat': 2.0, 'watch': 1.0, 'baby': 1.0, 'them': 1.0, 'learn': 1.0, 'swivels': 1.0, '360': 1.0}
Word element => {'time': 1.0, 'all': 1.0, 'the': 1.0, 'uses': 1.0, 'product': 1.0, 'baby': 1.0, 'great': 1.0}
Word element => {'teething': 1.0, 'for': 1.0, 'great': 1.0, 'which': 1.0, 'pole': 1.0, 'flexible': 1.0, 'shaped': 1.0, 'face': 1.0, 'toy': 2.0, 'my': 2.0, 'than': 1.0, 'much': 1.0, 'also': 1.0, 'drive': 1.0, 'or': 1.0, 'neck': 1.0, 'paced': 1.0, 'to': 5.0, 'other': 1.0, 'all': 1.0, 'stand': 1.0, 'down': 1.0, 'louder': 1.0, 'still': 1.0, '34': 2.0, 'both': 1.0, 'this': 3.0, 'cant': 1.0, 'months': 2.0, 'insane': 1.0, 'quality': 1.0, 's': 1.0, 'a': 5.0, 'could': 1.0, 'bug': 1.0, 'sensor': 1.0, 'when': 1.0, 'one': 4.0, 'too': 2.0, 'and': 5.0, 'jump': 1.0, 'comes': 1.0, 'have': 1.0, 'while': 2.0, 'fast': 1.0, 'i': 2.0, 'you': 1.0, 'loud': 1.0, 'it': 4.0, 'baby': 2.0, 'she': 2.0, 'elephant': 1.0, 'constant': 1.0, 'enough': 2.0, 'heavy': 1.0, 'systems': 1.0, 'the': 12.0, 'hanging': 1.0, 'without': 1.0, 'slightly': 1.0, 'has': 3.0, 'sounds': 1.0, 'started': 1.0, 'toys': 1.0, 'awful': 1.0, 'music': 3.0, 'giant': 1.0, 'better': 1.0, 'support': 1.0, 'frog': 2.0, 'seat': 2.0, 'in': 1.0, 'cheaper': 2.0, 'version': 1.0, 'lower': 1.0, 'padded': 1.0, 'just': 2.0, 'lion': 1.0, 'head': 2.0, 'padding': 1.0, 'difference': 1.0, 'because': 1.0, 'that': 2.0, 'was': 1.0, 'three': 1.0, 'is': 6.0, 'at': 1.0, 'lean': 1.0, 'her': 4.0, 'back': 1.0, 'on': 3.0, 'strong': 1.0, 'pillow': 1.0, 'bulky': 1.0, 'would': 1.0, 'there': 1.0, 'give': 1.0, 'break': 1.0, 'teether': 1.0, 'been': 1.0, 'blue': 1.0, 'using': 1.0, 'isnt': 1.0, 'string': 1.0, 'really': 1.0, 'hangs': 1.0, 'up': 1.0, 'less': 1.0, '7': 1.0, 'by': 1.0, 'pull': 1.0}
Word element => {'table': 1.0, 'in': 1.0, 'wont': 1.0, 'toy': 1.0, 'stay': 1.0, 'the': 2.0}
Word element => {'winter': 1.0, 'flannel': 1.0, 'their': 1.0, 'and': 1.0, 'type': 1.0, 'summer': 1.0, 'of': 1.0, 'or': 1.0, 'top': 1.0, 'swaddling': 2.0, 'love': 1.0, 'for': 4.0, 'perfect': 1.0, 'tossing': 1.0, 'carseat': 1.0, 'these': 1.0, 'great': 2.0, 'it': 1.0, 'makes': 1.0, 'gift': 1.0, 'a': 1.0, 'since': 1.0, 'on': 2.0, 'instructions': 1.0, 'are': 1.0, 'stroller': 1.0, 'silk': 1.0, 'size': 1.0, 'right': 1.0, 's': 1.0, 'tag': 1.0}
Word element => {'too': 1.0, 'print': 1.0, 'another': 1.0, 'nice': 1.0, 's': 1.0, 'two': 1.0, 'light': 1.0, 'cover': 1.0, 'comfortably': 1.0, 'use': 1.0, 'adorable': 1.0, 'year': 1.0, 'as': 1.0, 'during': 1.0, 'swaddle': 1.0, 'large': 1.0, 'to': 3.0, 'plan': 1.0, 'a': 2.0, 'not': 1.0, 'and': 2.0, 'do': 1.0, 'blanket': 1.0, 'but': 1.0, 'toddler': 1.0, 'buy': 1.0, 'old': 1.0, 'i': 2.0, 'one': 1.0, 'for': 1.0, 'my': 1.0, 'enough': 1.0, 'this': 1.0, 'it': 2.0, 'lightweight': 1.0, 'the': 2.0, 'great': 1.0, 'summer': 1.0, 'is': 2.0}
Word element => {'out': 1.0, 'blue': 1.0, 'pink': 1.0, 'other': 1.0, 'different': 1.0, 'is': 1.0, 'design': 1.0, 'soft': 1.0, 'cute': 1.0, 'blankets': 1.0, 'and': 1.0, 'all': 1.0, 'than': 1.0, 'easy': 1.0, 'to': 1.0, 'swaddle': 1.0, 'so': 1.0, 'i': 1.0, 'love': 1.0, 'there': 1.0, 'that': 1.0, 'the': 2.0}
Word element => {'gender': 1.0, 'pretty': 1.0, 'neutral': 1.0, 'lightweight': 1.0, 'adorable': 1.0, 'i': 2.0, 'love': 1.0, 'it': 3.0, 'thought': 1.0, 'bought': 1.0, 'and': 2.0, 'this': 1.0, 'a': 1.0, 'friend': 1.0, 'had': 1.0, 'after': 1.0, 'was': 1.0}
Word element => {'haha': 1.0, 'be': 1.0, 'isn': 1.0, 'fast': 1.0, 'so': 1.0, 'shipped': 1.0, 'they': 1.0, 'because': 1.0, 'same': 1.0, 'out': 1.0, 'haven': 1.0, 'clutch': 1.0, 'with': 1.0, 'it': 4.0, 'this': 2.0, 'that': 1.0, 'besides': 1.0, 'strap': 1.0, 'chain': 1.0, 'some': 1.0, 'i': 4.0, 'really': 2.0, 'hair': 2.0, 'long': 1.0, 'used': 1.0, 'bag': 3.0, 'suppose': 1.0, 'have': 1.0, 'is': 1.0, 'comes': 1.0, 'like': 1.0, 'and': 3.0, 'purse': 1.0, 'place': 1.0, 'the': 4.0, 'comfortable': 1.0, 'great': 1.0, 'difficult': 1.0, 'close': 1.0, 'times': 1.0, 'when': 1.0, 'pulls': 1.0, 'hangs': 1.0, 'from': 2.0, 'to': 2.0, 'as': 1.0, 'fashion': 1.0, 'your': 1.0, 'but': 2.0, 'shoulder': 1.0, 's': 1.0, 't': 2.0, 'a': 1.0, 'yet': 1.0, 'minor': 1.0, 'inconveniences': 1.0, 'my': 1.0, 'another': 1.0, 'actually': 1.0, 'ordered': 1.0}
Word element => {'washes': 1.0, 'through': 1.0, 'been': 1.0, 'has': 1.0, 'full': 1.0, 'seems': 1.0, 'couple': 1.0, 'and': 1.0, 'a': 2.0, 'the': 3.0, 'for': 1.0, 'love': 1.0, 'absolutely': 1.0, 'only': 1.0, 'it': 1.0, 'good': 1.0, 'price': 2.0, 'i': 1.0, 'nfl': 1.0, 'amazing': 1.0, 'cribbing': 1.0, 'of': 1.0, 'set': 1.0, 'really': 1.0, 'is': 1.0, 'so': 1.0, 'far': 1.0, 'quality': 1.0, 'but': 1.0}
Word element => {'8230': 1.0, 'no': 1.0, 'have': 1.0, 'he': 1.0, 'husband': 1.0, 'plus': 1.0, 'colors': 1.0, 'accent': 1.0, 'do': 1.0, 'girl': 2.0, 'straps': 1.0, 'stroller': 1.0, 'pockets': 1.0, 'appreciate': 2.0, 'really': 1.0, 'think': 1.0, 'the': 3.0, 'place': 2.0, 'huge': 1.0, 'one': 2.0, 'problem': 1.0, 'things': 2.0, 'her': 3.0, 'said': 1.0, 'in': 3.0, 'included': 1.0, 'us': 1.0, 'with': 2.0, 'baby': 3.0, 'are': 1.0, 'toting': 2.0, 'now': 1.0, 'yet': 1.0, 'my': 1.0, 'often': 1.0, 'and': 5.0, 'gotten': 1.0, 'not': 1.0, 'me': 1.0, 'searching': 1.0, 'doesn': 1.0, 'was': 1.0, 'still': 1.0, 'again': 2.0, 'traveling': 1.0, 'when': 1.0, 'am': 2.0, 'i': 10.0, 'it': 6.0, 'described': 1.0, 'around': 1.0, 'is': 2.0, '5': 1.0, 'haven': 1.0, 'hold': 2.0, 'scream': 1.0, 'love': 2.0, 'for': 2.0, 'stars': 1.0, 'pregnant': 1.0, 'but': 3.0, 'will': 4.0, 'having': 1.0, 'because': 1.0, 'heavy': 1.0, 'bag': 2.0, 'daily': 1.0, 'exactly': 2.0, 'would': 2.0, 'what': 1.0, 'd': 1.0, 'our': 1.0, 'all': 3.0, 'to': 3.0, 'as': 2.0, 'lot': 1.0, 'of': 3.0, 'imagine': 1.0, 'gave': 1.0, 'been': 1.0, 'that': 3.0, 'if': 1.0, 'come': 1.0, 'packed': 1.0, 'this': 4.0, 'perfect': 2.0, 'full': 1.0, 'be': 3.0, 'use': 1.0, 'travel': 1.0, 'bit': 1.0, 'going': 1.0, 't': 2.0, 'a': 4.0, 'we': 1.0}
Word element => {'carrying': 1.0, 'even': 1.0, 'or': 1.0, 'for': 1.0, 'scream': 1.0, 'frilly': 1.0, 'important': 1.0, 'look': 1.0, 'clean': 1.0, 'be': 1.0, 'like': 1.0, 'durable': 1.0, 'will': 1.0, 'also': 1.0, 'seems': 2.0, 'long': 1.0, 'husband': 2.0, 'doesn': 3.0, 'crazy': 1.0, 'me': 3.0, 'my': 2.0, 'purchase': 1.0, 'bag': 4.0, 'this': 2.0, 'mind': 1.0, 'with': 1.0, 'it': 12.0, 'but': 2.0, 'can': 1.0, 'nice': 2.0, 'm': 1.0, 'rather': 1.0, 'haven': 1.0, 'weight': 1.0, 'light': 1.0, 'large': 2.0, 'skip': 1.0, 'am': 1.0, 'when': 1.0, 'barely': 1.0, 'particular': 1.0, 'opens': 1.0, 'i': 4.0, 'had': 1.0, 'drives': 1.0, 'all': 1.0, 'to': 4.0, 'is': 2.0, 'comes': 1.0, 'purses': 1.0, 'feeling': 1.0, 'very': 3.0, 'bags': 1.0, 'boyish': 1.0, 'and': 3.0, 'happy': 1.0, 'zippered': 1.0, 'easy': 1.0, 'get': 1.0, 'bulky': 1.0, 'without': 2.0, 'the': 3.0, 'diaper': 2.0, 'itself': 1.0, 'have': 1.0, 'so': 1.0, 'loves': 1.0, 'that': 1.0, 'makes': 1.0, 'digging': 1.0, 't': 4.0, 'a': 2.0, 'we': 1.0, 'everything': 1.0, 'hop': 1.0, 'opening': 1.0, 'bento': 1.0}
Word element => {'definite': 1.0, 'keeper': 1.0, 'this': 1.0, 'from': 1.0, 'can': 1.0, 'long': 1.0, 'just': 1.0, 'handles': 1.0, 'stylish': 1.0, 'hang': 1.0, 'color': 1.0, 'enough': 1.0, 'grey': 1.0, 'neutral': 1.0, '180': 1.0, 'it': 2.0, 'is': 4.0, 'really': 1.0, 'happy': 1.0, 'aspect': 1.0, 'my': 3.0, 'of': 2.0, 'favorite': 1.0, 'conveniently': 1.0, 'i': 4.0, 'pockets': 1.0, 'are': 1.0, 'opens': 1.0, 'swapped': 1.0, 'beaba': 1.0, 'stroller': 1.0, 'diaper': 2.0, 'great': 1.0, 'and': 1.0, 'organized': 1.0, 'have': 1.0, 'bag': 8.0, 'take': 1.0, 'recently': 1.0, 'makes': 1.0, 'has': 1.0, 'scream': 1.0, 'for': 2.0, 'that': 3.0, 'been': 1.0, 'stockholm': 1.0, 'doesn': 1.0, 'degrees': 1.0, 'very': 2.0, 'easy': 1.0, 'lot': 1.0, 'to': 2.0, 'items': 1.0, 'everything': 1.0, 'in': 1.0, 'find': 1.0, 'having': 1.0, 'also': 2.0, 'the': 8.0, 'without': 1.0, 't': 1.0, 'a': 2.0, 'out': 1.0, 'keeping': 1.0, 'which': 2.0, 'like': 1.0}
Word element => {'most': 1.0, 'than': 1.0, 'more': 2.0, 'carry': 1.0, 'probably': 1.0, 'no': 1.0, 'pacifier': 1.0, 'keep': 1.0, 'if': 2.0, 'zippered': 1.0, 'frills': 1.0, 'dirty': 1.0, 'changing': 1.0, 'sized': 2.0, 'scream': 1.0, 'for': 5.0, 'doesn': 1.0, 'simple': 1.0, 'looking': 1.0, 'bag': 8.0, 'canvas': 1.0, 'i': 5.0, 'pad': 1.0, 'etc': 1.0, 'it': 5.0, 'needed': 2.0, 'clean': 1.0, 'again': 1.0, 'traveling': 1.0, 'colored': 1.0, 'in': 1.0, 'mine': 1.0, 'some': 1.0, 'to': 6.0, 'all': 1.0, 'grey': 2.0, 'dig': 1.0, 'degrees': 1.0, 'can': 1.0, 'so': 2.0, 'but': 2.0, '180': 1.0, 'plus': 1.0, 'are': 1.0, 'cute': 1.0, 'because': 1.0, 'that': 3.0, 'outside': 1.0, 'stains': 1.0, 'opens': 1.0, 'baby': 2.0, 'love': 1.0, 'bottom': 1.0, 'less': 1.0, 'laundry': 1.0, 'favorite': 1.0, 'inside': 1.0, 'diaper': 3.0, 'a': 9.0, 'of': 5.0, 'the': 7.0, 'fairly': 1.0, 't': 2.0, 'spare': 1.0, 'stuff': 1.0, 'on': 2.0, 'look': 1.0, 'is': 8.0, 'room': 1.0, 'comes': 1.0, 'and': 6.0, 'deceptively': 1.0, 'lighter': 1.0, 'handy': 1.0, 'storage': 1.0, 'large': 1.0, 'plain': 1.0, 'stylish': 2.0, 'think': 1.0, 'pack': 1.0, 'have': 1.0, 'you': 3.0, 'able': 1.0, 'material': 1.0, 'show': 1.0, 'side': 1.0, 'which': 1.0, 'like': 4.0, 'little': 2.0, 'nice': 1.0, 'great': 1.0, 'sturdy': 1.0, 'don': 1.0, 'cotton': 1.0, 'soft': 1.0, 'bottle': 1.0, 'few': 1.0, 'this': 2.0, 'sorts': 1.0, 'with': 3.0, 'plenty': 1.0, 'pockets': 1.0, 'travel': 1.0, 'will': 1.0, 'ordered': 1.0, 'eventually': 1.0, 'me': 1.0, 'my': 1.0, 'cream': 1.0, 'when': 1.0, 'presume': 1.0, 'washing': 1.0, 'easy': 1.0, 'pocket': 1.0, 'space': 2.0, 'functional': 1.0, 'both': 1.0, 's': 2.0, 'sides': 1.0, 'hidden': 1.0, 'perfect': 1.0, 'extras': 1.0, 'extra': 1.0, 'organization': 1.0, 'keychain': 1.0, 'toiletries': 1.0, 'meds': 1.0}
Word element => {'blanket': 1.0, 'beautifully': 1.0, 'this': 1.0, 'i': 1.0, 'matches': 1.0, 'on': 1.0, 'animals': 1.0, 'with': 1.0, 'is': 1.0, 'a': 1.0, 'the': 3.0, 'addition': 1.0, 'to': 1.0, 'crib': 1.0, 'set': 1.0, 'love': 1.0, 'great': 1.0, 'it': 2.0}
Word element => {'use': 1.0, 'color': 1.0, 'it': 2.0, 'like': 1.0, 'very': 1.0, 'think': 1.0, 'a': 2.0, 'i': 1.0, 'beautiful': 1.0, 'cannot': 1.0, 'although': 1.0, 'product': 2.0, 'he': 2.0, 'good': 1.0, 'for': 1.0, 'the': 1.0, 'my': 1.0, 'baby': 1.0}
Word element => {'some': 1.0, 'problematic': 1.0, 'is': 1.0, 'of': 1.0, 'says': 1.0, 'eaters': 1.0, 'works': 1.0, 'her': 1.0, 'used': 1.0, 'handed': 1.0, 'be': 1.0, 'patients': 1.0, 'son': 1.0, 'for': 3.0, 'had': 2.0, 'therapist': 2.0, 'out': 1.0, 'us': 1.0, 'by': 2.0, 'recommended': 1.0, 'my': 2.0, 'were': 1.0, 'our': 1.0, 'figured': 1.0, 'these': 3.0, 'spoons': 2.0, 'this': 1.0, 'only': 1.0, 'with': 1.0, 'he': 1.0, 'been': 1.0, 'feeding': 1.0, 'struggling': 1.0, 'other': 2.0, 'but': 2.0, 'can': 1.0, 'right': 2.0, 'away': 1.0}
Word element => {'isnow': 1.0, 'these': 1.0, 'with': 1.0, 'learned': 1.0, 'job': 1.0, 'he': 1.0, 'eat': 1.0, 'great': 1.0, 'love': 1.0, 'everyday': 1.0, 'i': 1.0, 'uses': 1.0, 'their': 1.0, 'and': 2.0, 'shape': 1.0, 'my': 1.0, '11mo': 1.0, 'spoons': 1.0, 'color': 1.0, 'a': 1.0, 'doing': 1.0, 'them': 1.0, 'to': 1.0}
Word element => {'own': 1.0, 'his': 1.0, 'i': 1.0, 'say': 1.0, 'less': 1.0, 'are': 2.0, 'my': 1.0, 'they': 2.0, 'mess': 1.0, 'these': 1.0, '34': 2.0, 'like': 1.0, 'and': 1.0, 'really': 1.0, 'on': 1.0, 'spoons': 1.0, 'easy': 1.0, 'them': 1.0, 'at': 1.0, 'hold': 1.0, 'use': 1.0, 'every': 1.0, 'baby': 1.0, 'feeding': 1.0, 'for': 1.0, 'to': 1.0}
Word element => {'with': 1.0, 'too': 1.0, 'of': 1.0, 'hold': 1.0, 'purchase': 1.0, 'spoon': 1.0, 'likes': 1.0, 'sticks': 1.0, 'the': 1.0, 'happy': 1.0, 'food': 1.0, 'baby': 1.0, 'promised': 1.0, 'to': 2.0, 'easy': 2.0, 'it': 1.0, 'washes': 1.0, 'like': 1.0}
Word element => {'temperature': 1.0, 'food': 1.0, 'tells': 1.0, 'bright': 1.0, 'these': 1.0, 'are': 2.0, 'the': 2.0, 'just': 1.0, 'right': 1.0, 'too': 1.0, 'vibrant': 1.0, 'i': 1.0, 'size': 1.0, 'needed': 1.0, 'and': 2.0, 'very': 1.0, 'colors': 1.0}
Word element => {'handles': 1.0, 'without': 1.0, 'even': 1.0, 'her': 1.0, 'for': 1.0, 'the': 1.0, 'more': 1.0, 'and': 2.0, 'taller': 1.0, 'is': 1.0, 'to': 2.0, 'daughter': 1.0, 'wish': 1.0, 'cup': 2.0, 'refuses': 1.0, 'month': 1.0, '16': 1.0, 'this': 1.0, 'it': 1.0, 'hold': 1.0, 'sure': 1.0, 'sippy': 1.0, 'bad': 1.0, 'old': 1.0, 'i': 2.0, 'a': 1.0, 'not': 2.0, 'would': 1.0, 'little': 1.0, 'drink': 1.0, 'from': 1.0, 'why': 1.0, 'hands': 1.0, 'easy': 1.0, 'compact': 1.0, 'she': 1.0, 'like': 1.0, 'our': 1.0, 'that': 1.0}
Word element => {'doesn': 1.0, 'straws': 1.0, 'they': 1.0, 'places': 1.0, 'little': 2.0, 'are': 1.0, 'hands': 1.0, 'the': 2.0, 'great': 1.0, 'handles': 1.0, 'also': 2.0, 'in': 4.0, 'size': 1.0, 'it': 3.0, 'with': 1.0, 'awesome': 1.0, 'parts': 1.0, 't': 1.0, 'a': 1.0, 'i': 2.0, 'and': 3.0, 'is': 2.0, 'comes': 1.0, 'pop': 2.0, 'out': 1.0, 'them': 1.0, 'clean': 2.0, 'this': 2.0, 'allows': 1.0, 'make': 1.0, 'love': 3.0, 'for': 1.0, 'fit': 1.0, 'that': 3.0, 'into': 1.0, 'cup': 3.0, 'or': 4.0, 'slim': 1.0, 'to': 4.0, 'any': 1.0, 'bag': 1.0, 'random': 1.0, 'easy': 1.0, 'backpack': 1.0, 'holder': 1.0, 'leak': 1.0, 'rubber': 1.0, 'super': 1.0, 'no': 1.0, 'smaller': 1.0, 'valves': 1.0}
Word element => {'now': 1.0, 'buying': 1.0, 'on': 1.0, 'found': 1.0, 'glad': 1.0, 'm': 2.0, 'just': 1.0, 'leaking': 1.0, 'was': 1.0, 'of': 1.0, 'gone': 1.0, 'bought': 1.0, 'one': 1.0, 'love': 1.0, 'i': 6.0, 'tried': 1.0, 'target': 1.0, 'they': 2.0, 'have': 1.0, 'more': 1.0, 'amazon': 1.0, 'horrible': 1.0, 'starting': 1.0, 'and': 4.0, 'these': 3.0, 'others': 1.0, 'were': 2.0, 'that': 1.0, 'different': 1.0, 'to': 3.0, 'all': 1.0, 'cups': 2.0, 'daughter': 1.0, 'like': 1.0, 'so': 2.0, 'many': 1.0, 'try': 1.0, 'loved': 1.0, 'it': 2.0, 'daily': 1.0, 'went': 1.0, 'my': 1.0, 'but': 1.0, 'haven': 1.0, 'when': 1.0, 'seen': 1.0, 'them': 2.0, 'at': 1.0, 'since': 1.0, 'notice': 1.0, 't': 1.0, 'we': 3.0, 'ago': 1.0, 'a': 1.0, 'over': 1.0, 'uses': 1.0, 'year': 1.0, 'are': 1.0}
Word element => {'re': 1.0, 'till': 1.0, 'wait': 1.0, 'oh': 1.0, 'has': 1.0, 'holding': 1.0, 'whatever': 1.0, 'throw': 1.0, 'decides': 1.0, 'mad': 1.0, 'gets': 1.0, 'been': 1.0, 'enough': 1.0, 'upside': 1.0, 'point': 1.0, 'realized': 1.0, 'my': 2.0, 's': 2.0, 'maybe': 2.0, 'we': 3.0, 't': 2.0, 'long': 1.0, 'noticed': 1.0, 'flow': 2.0, 'far': 1.0, 'he': 2.0, 'as': 1.0, 'cups': 3.0, 'past': 1.0, 'mainly': 1.0, 'tried': 2.0, 'transitional': 1.0, 'son': 2.0, 'slow': 2.0, 'very': 1.0, 'best': 1.0, 'this': 5.0, 'lost': 1.0, 'due': 1.0, 'have': 2.0, 'younger': 1.0, 'a': 3.0, 'small': 2.0, 'down': 1.0, 've': 3.0, 'super': 1.0, 'would': 1.0, 'for': 2.0, 'count': 1.0, 'when': 2.0, 'barely': 1.0, 'at': 1.0, 'sippy': 2.0, 'many': 1.0, 'can': 1.0, 'included': 1.0, 'so': 4.0, 'i': 7.0, 'two': 1.0, 'used': 1.0, 'suited': 1.0, 'still': 2.0, 'if': 2.0, 'hang': 1.0, 'slit': 1.0, 'but': 3.0, 'use': 1.0, 'one': 1.0, 'too': 1.0, 'ones': 1.0, 'myself': 1.0, 'slits': 1.0, 'to': 4.0, 'job': 1.0, 'these': 3.0, 'the': 4.0, 'of': 2.0, 'think': 1.0, 'put': 1.0, 'without': 1.0, 'anything': 2.0, 'kitchen': 1.0, 'drank': 1.0, 'making': 1.0, 'it': 7.0, 'was': 1.0, 'almost': 2.0, 'those': 1.0, 'impossible': 1.0, 'moved': 1.0, 'get': 1.0, 'out': 1.0, 'wasn': 1.0, 'they': 1.0, 'suck': 1.0, 'between': 1.0, 'just': 1.0, 'in': 2.0, 'that': 3.0, 'over': 1.0, 'hard': 1.0, 'be': 1.0, 'which': 1.0, 'phase': 2.0, 'good': 2.0, 'an': 1.0, '2yo': 1.0, 'even': 2.0, 'took': 1.0, 'knife': 1.0, 'existing': 1.0, 'did': 1.0, 'first': 2.0, 'are': 3.0, 'working': 1.0, 'leaky': 1.0, 'probably': 1.0, 'will': 1.0, 'leak': 1.0}
Word element => {'great': 1.0, 'anymore': 1.0, 'value': 1.0, 't': 1.0, 'these': 1.0, 'cups': 1.0, 'aren': 1.0, 'that': 1.0, 'carried': 1.0, 'store': 1.0, 'for': 1.0, 'in': 1.0}
Word element => {'sizes': 1.0, 'doesn': 1.0, 'a': 1.0, 'them': 1.0, 'i': 1.0, 'cups': 1.0, 's': 1.0, 'own': 1.0, 'one': 1.0, 'straw': 1.0, 'only': 1.0, 'and': 1.0, 'need': 1.0, 'sippy': 1.0, 'that': 3.0, 'of': 1.0, 'leak': 1.0, 'the': 1.0, 't': 1.0, 'just': 1.0, 'saying': 1.0, 'in': 1.0, 'lot': 1.0, 'bigger': 1.0}
Word element => {'cleaning': 1.0, 's': 1.0, 'of': 1.0, 'is': 1.0, 'we': 1.0, 'a': 1.0, 'and': 2.0, 'through': 1.0, 'to': 1.0, 'been': 1.0, 'too': 1.0, 'cups': 1.0, 'by': 1.0, 've': 1.0, 'far': 1.0, 'lot': 1.0, 'easy': 1.0, 'best': 1.0, 'the': 1.0, 'disassemble': 1.0, 'this': 1.0, 'it': 1.0, 'assemble': 1.0, 'one': 1.0, 'for': 1.0}
Word element => {'money': 1.0, 'worth': 1.0, 'and': 1.0, 'in': 1.0, 'dont': 1.0, 'actually': 1.0, 'they': 2.0, 'max': 1.0, 'these': 1.0, 'the': 2.0, 'make': 1.0, 'it': 1.0, 'i': 1.0, 'love': 2.0, 'straw': 1.0, 'leak': 2.0, 'up': 1.0, 'something': 1.0, 'that': 1.0, 'not': 1.0, 'if': 1.0, 'them': 1.0, 'fits': 1.0, 'to': 1.0, 'have': 1.0, '8': 1.0, 'oz': 1.0}
Word element => {'priced': 1.0, 'target': 1.0, 'us': 1.0, 'them': 1.0, 'sippy': 1.0, 'no': 1.0, 'at': 1.0, 'hard': 2.0, 'n': 1.0, 'reasonably': 1.0, 'of': 1.0, 'best': 1.0, '34': 2.0, 'really': 1.0, 'so': 1.0, 'after': 1.0, 'straw': 1.0, 'for': 1.0, 'wanted': 1.0, 'cups': 2.0, 'to': 4.0, 'these': 2.0, 'the': 3.0, 'have': 2.0, 'put': 1.0, 'back': 1.0, 'i': 3.0, 'tried': 1.0, 'are': 4.0, 'or': 1.0, 'they': 3.0, 'together': 1.0, 'unfortunately': 1.0, 'were': 1.0, 'that': 1.0, 'clean': 2.0, 'different': 1.0, 'stuck': 1.0, 'many': 1.0, 'take': 1.0, 'too': 2.0, 'and': 2.0, 'toss': 1.0, 'get': 1.0, 'kind': 1.0, 'work': 2.0, 'most': 2.0, 'can': 1.0, 'be': 1.0, 'based': 1.0, 'found': 1.0}
Word element => {'these': 1.0, 'dud': 1.0, 'what': 1.0, 'on': 1.0, 'suction': 1.0, 'amazing': 1.0, 'exerting': 1.0, 'tried': 1.0, 'experiment': 1.0, 'an': 2.0, 'drunk': 1.0, 'hadn': 1.0, 'later': 1.0, 'figure': 1.0, 'threw': 1.0, 'over': 1.0, 'only': 2.0, 'trash': 1.0, 'is': 3.0, 'i': 6.0, 'why': 1.0, 'straw': 3.0, 'swim': 1.0, 'like': 1.0, 'this': 3.0, 'perfect': 1.0, 'in': 2.0, 'not': 2.0, 'search': 2.0, 'of': 4.0, 'cup': 3.0, 'was': 1.0, 'leaking': 1.0, 'unfortunately': 1.0, 'my': 2.0, 'the': 9.0, 'leak': 1.0, 'diaper': 1.0, 'did': 1.0, 'non': 1.0, 'bag': 1.0, 'sucking': 1.0, 'thirsty': 1.0, 'parents': 1.0, 'way': 1.0, 'but': 1.0, 'can': 1.0, 'continues': 1.0, 'get': 2.0, 'class': 1.0, 'and': 2.0, 'couldn': 2.0, 'juice': 4.0, 'out': 4.0, 'that': 1.0, 'gave': 1.0, 'daughter': 1.0, 'unless': 1.0, 'am': 1.0, 'you': 1.0, 'when': 1.0, 'any': 1.0, 'as': 1.0, 'all': 2.0, 'to': 1.0, 'amount': 1.0, 'after': 1.0, 't': 3.0, 'a': 2.0, 'it': 2.0, 'she': 2.0, 'incredibly': 1.0}
Word element => {}
Word element => {'leak': 1.0, 'no': 1.0, 'useful': 1.0, 's': 1.0, 'it': 1.0}
Word element => {}
Word element => {'assemble': 1.0, 'water': 1.0, 'gets': 1.0, 'always': 1.0, 'clean': 1.0, 'insures': 1.0, 'inside': 1.0, 'and': 2.0, 'him': 1.0, 'for': 1.0, 'that': 1.0, 'our': 1.0, 'to': 5.0, 'old': 1.0, 'hold': 1.0, 'transition': 1.0, '10': 1.0, 'is': 1.0, 'happy': 1.0, 'cup': 2.0, 'time': 1.0, 'has': 1.0, 'apart': 1.0, 'perfect': 1.0, 'easy': 2.0, 'the': 2.0, 'help': 1.0, 'almost': 1.0, 'take': 1.0, 'spout': 1.0, 'month': 1.0, 'he': 1.0, 'moving': 1.0, 'this': 1.0, 'it': 1.0, 'very': 1.0, 'from': 1.0, 'meal': 1.0, 'been': 1.0, 'bottle': 1.0, 'sippy': 1.0, 'at': 1.0}
Word element => {'attempts': 1.0, '9': 1.0, 'after': 2.0, 'orders': 1.0, 'these': 3.0, 'add': 1.0, 'wants': 1.0, 'like': 2.0, 'really': 3.0, '35': 1.0, 'bottles': 3.0, '10': 1.0, 'wean': 1.0, 'other': 2.0, 'becoming': 1.0, 'don': 1.0, 'have': 4.0, 'none': 1.0, 'never': 2.0, 'some': 3.0, 'with': 7.0, '50': 1.0, 'success': 2.0, 'you': 5.0, 'upside': 1.0, 'night': 1.0, 'what': 2.0, 'when': 3.0, 'breaks': 1.0, 'thought': 1.0, 'already': 1.0, 'few': 1.0, 'bottle': 4.0, 'this': 8.0, 'highly': 1.0, 'was': 5.0, 'it': 10.0, 'be': 3.0, 'drink': 2.0, 'multiple': 1.0, 'just': 1.0, 'and': 15.0, 'tried': 1.0, 'until': 1.0, 'nursing': 4.0, 'very': 1.0, 'upset': 1.0, 'two': 1.0, 'one': 2.0, 'lot': 2.0, 'old': 2.0, 'of': 7.0, 'the': 13.0, 'no': 2.0, 'moving': 1.0, 'led': 2.0, 'write': 2.0, 'but': 4.0, 'wateri': 1.0, 'reviews': 1.0, 'paid': 1.0, 'biggest': 1.0, 'only': 2.0, 'not': 2.0, 'different': 2.0, 'little': 2.0, 'her': 4.0, 'wash': 1.0, 'use': 1.0, 'works': 1.0, 'soft': 1.0, 'ordered': 1.0, 'swivel': 1.0, 'product': 1.0, 'decided': 2.0, 'finally': 1.0, 'i': 10.0, 'months': 1.0, 'felt': 1.0, 'gave': 1.0, 'baby': 11.0, 'from': 3.0, 'wife': 2.0, 'quiet': 1.0, 'because': 3.0, 'that': 8.0, 'problems': 1.0, 'on': 3.0, 'long': 1.0, 'cup': 10.0, 'cups': 7.0, 'or': 4.0, 'accumulating': 1.0, 'so': 6.0, 'been': 1.0, 'worked': 1.0, 'as': 10.0, 'to': 18.0, 'typically': 1.0, 'for': 8.0, 'pieces': 1.0, 'years': 1.0, 'sucks': 1.0, 'our': 6.0, 'how': 1.0, 'them': 1.0, 'has': 2.0, 'sippy': 13.0, 'ok': 1.0, 'attempt': 1.0, 'actually': 2.0, 'us': 2.0, 'a': 14.0, 'would': 6.0, 'great': 1.0, 'if': 2.0, 'known': 1.0, 'can': 2.0, 'is': 8.0, 'at': 1.0, 'account': 1.0, '1': 1.0, 'since': 1.0, 'nipple': 3.0, 'closer': 1.0, 'away': 1.0, 'which': 1.0, 'good': 1.0, 'all': 1.0, 'way': 1.0, 'apart': 1.0, 'she': 11.0, 'from2': 1.0, 'valve': 2.0, 'wanted': 1.0, 'rotates': 1.0, 'each': 1.0, 'around': 1.0, 'directly': 1.0, 'in': 4.0, 'crying': 1.0, 'we': 5.0, 'middle': 1.0, 'give': 1.0, 'there': 1.0, 'soon': 1.0, 'many': 2.0, 'your': 1.0, 'any': 1.0, 'orientation': 1.0, 'recommend': 1.0, 'figured': 1.0, 'go': 1.0, 'holds': 1.0, 'horizontal': 1.0, 'll': 1.0, 'water3': 1.0, 'come': 1.0, 'my': 3.0, 'difficulty': 1.0, 'are': 3.0, 'shipping': 1.0, 'get': 3.0, 'able': 2.0, 'however': 2.0, 'know': 3.0, 'getting': 1.0, 'completely': 1.0, 'cleaned': 1.0, 'drinking': 2.0, 'clean': 1.0, 'fear': 1.0, 'ever': 2.0, 's': 2.0, 'mold': 1.0, 'also': 1.0, 'germs': 1.0, 'crevice': 1.0, 'wash4': 1.0, 'out': 2.0, 'down': 2.0, 'last': 1.0, 'dinner': 1.0, 'cried': 3.0, 'mouse': 1.0, 'failed': 1.0, 'quenching': 1.0, 'had': 4.0, 'thirst': 1.0, 'started': 1.0, 'yummy': 1.0, 'think': 1.0, 'thing': 1.0, 'free': 1.0, 'wanting': 1.0, 'far': 1.0, 'he': 1.0, 'parts': 1.0, 'similar': 1.0, 'frustrating': 1.0, 'likes': 1.0, 't': 1.0, 'replacement': 1.0, 'nurse': 1.0, 'born': 1.0, 'successful': 1.0, 'looking': 1.0}
Word element => {'baby': 1.0, 'the': 1.0, 'up': 1.0, 'even': 1.0, 'handy': 1.0, 'open': 1.0, 'day': 1.0, 'use': 1.0, 'done': 1.0, 'and': 3.0, 'travel': 1.0, 'u': 1.0, 'just': 2.0, 'because': 1.0, 'in': 2.0, 'or': 1.0, 'pop': 1.0, 'when': 3.0, 'your': 2.0, 'bag': 1.0, 'cover': 1.0, 'spoon': 1.0, 'a': 1.0, 'out': 1.0, 'covered': 1.0, 'put': 1.0, 'back': 2.0, 'ready': 1.0, 'comes': 1.0, 'its': 1.0, 'to': 1.0, 'this': 1.0, 'it': 4.0}
Word element => {'over': 1.0, 'from': 1.0, 'kept': 1.0, 'grandson': 1.0, 'fit': 1.0, 'these': 1.0, 'squeezing': 1.0, 'my': 1.0, 'the': 2.0, 'are': 1.0, 'great': 1.0, 'contents': 1.0, 'and': 2.0, 'for': 1.0, 'of': 1.0, 'keeping': 1.0, 'all': 2.0, 'different': 1.0, 'neat': 1.0, 'baby': 1.0, 'pouches': 2.0, 'clean': 1.0}
Word element => {'pouches': 1.0, 'little': 1.0, 'your': 1.0, 'if': 1.0, 've': 1.0, 'highly': 1.0, 'any': 1.0, 'recommend': 1.0, 'rarely': 1.0, 'i': 3.0, 'buying': 1.0, 'had': 1.0, 'one': 1.0, 'for': 1.0, 'we': 1.0, 'likes': 1.0, 'have': 2.0, 'must': 1.0, 'double': 1.0, 'well': 1.0, 'check': 1.0, 'a': 1.0, 'it': 1.0, 'this': 2.0, 'with': 1.0, 'attached': 1.0, 'us': 1.0, 'coming': 1.0, 'the': 2.0, 'top': 1.0, 'off': 1.0, 'trouble': 1.0, 'but': 1.0, '34': 2.0, 'always': 1.0, 'how': 1.0}
Word element => {'far': 1.0, 'plate': 1.0, 'little': 1.0, 'take': 1.0, 'we': 1.0, 'older': 1.0, 'gets': 1.0, 'she': 2.0, 'would': 1.0, 'lolmaybe': 1.0, 'not': 1.0, 'if': 1.0, 'stay': 1.0, 'might': 1.0, 'at': 1.0, 'mat': 1.0, 'large': 1.0, 'taping': 1.0, 'tape': 2.0, 'masking': 1.0, 'carry': 1.0, 'its': 1.0, 'daughter': 3.0, 'immediatelyi': 1.0, 'travel': 1.0, 'di': 1.0, 'my': 3.0, 'cookies': 1.0, 'least': 1.0, 'cause': 2.0, 'they': 3.0, 'restaurant': 1.0, 'which': 1.0, 'like': 2.0, 'easier': 1.0, 'table': 7.0, 'junk': 1.0, 'willing': 1.0, 'using': 1.0, 'tables': 1.0, 'duct': 1.0, 'have': 1.0, 'to': 6.0, 'as': 4.0, 'for': 1.0, 'fabric': 1.0, 'doesn': 1.0, 'piece': 1.0, 'recommend': 1.0, 'was': 1.0, 'depth': 1.0, 'problem': 1.0, 'lightweight': 1.0, 'so': 3.0, 'small': 1.0, 'a': 3.0, 't': 5.0, 'maybe': 1.0, 's': 2.0, 'has': 2.0, 'don': 2.0, 'use': 1.0, 'her': 3.0, 'anyway': 1.0, 'one': 1.0, 'about': 2.0, 'lift': 2.0, 'putting': 1.0, 'i': 4.0, 'there': 1.0, 'instead': 2.0, 'works': 1.0, 'only': 1.0, 'put': 1.0, 'much': 1.0, 'tabletoppers': 1.0, 'when': 1.0, 'cleanwhat': 1.0, 'what': 1.0, 'work': 2.0, 'hard': 1.0, 'from': 1.0, 'wouldn': 2.0, 'cloths': 2.0, 'these': 1.0, 'in': 1.0, 'almost': 2.0, 'own': 1.0, 'tried': 1.0, 'off': 4.0, 'figured': 1.0, 'car': 1.0, 'surfaces': 1.0, 'anyone': 1.0, 'and': 3.0, 'easy': 1.0, 'out': 2.0, 'how': 1.0, 'this': 2.0, 'think': 2.0, 'better': 2.0, 'buying': 1.0, 'with': 3.0, 'the': 4.0, 'of': 3.0, 'those': 1.0, 'toddler': 1.0, 're': 1.0, 'come': 1.0, 'all': 1.0, 'an': 1.0, 'it': 8.0, 'lug': 1.0, 'investments': 1.0, 'top': 1.0, 'back': 1.0, 'seats': 1.0, 'just': 2.0, 'on': 2.0, 'long': 1.0, 'forth': 1.0, 'stick': 2.0, 've': 1.0, 'easily': 1.0, 'fall': 1.0, 'that': 3.0, 'onto': 2.0, 'same': 1.0, 'you': 2.0, 'able': 1.0}
Word element => {'to': 1.0, 'out': 1.0, 'they': 1.0, 'when': 1.0, 'i': 1.0, 'was': 3.0, 'a': 1.0, 'eat': 1.0, 'that': 1.0, 'gift': 1.0, 'for': 2.0, 'my': 1.0, 'grandson': 1.0, 'went': 1.0, 'it': 2.0, 'great': 1.0, 'told': 1.0}
Word element => {'appreciate': 1.0, 'free': 1.0, 'bpa': 1.0, 'being': 1.0, 'products': 1.0, 'about': 1.0, 'onto': 1.0, 'instead': 1.0, 'mat': 1.0, 'or': 1.0, 'food': 1.0, 'edges': 1.0, 'all': 1.0, 'table': 1.0, 'ridge': 1.0, 'home': 1.0, 'cleanup': 1.0, 'until': 1.0, 'enclosed': 1.0, 'securely': 1.0, 'be': 1.0, 'mess': 1.0, 'peel': 1.0, 'stick': 1.0, 'on': 4.0, 'week': 1.0, 'bit': 1.0, 'grandson': 1.0, 'looking': 1.0, 'times': 1.0, 'countertop': 1.0, 'immediately': 1.0, 'up': 1.0, 'always': 1.0, 'out': 1.0, 'couple': 1.0, 'which': 1.0, 'family': 2.0, 'my': 3.0, 'tightly': 1.0, 'sliding': 1.0, 'tight': 1.0, 'wait': 1.0, 'subtly': 1.0, 'dine': 1.0, 'believe': 1.0, 't': 1.0, 'we': 3.0, 'a': 5.0, 's': 1.0, 'he': 1.0, 'plastic': 1.0, 'extremely': 1.0, 'this': 3.0, 'allows': 1.0, 'terrific': 1.0, 'and': 5.0, 'placemat': 4.0, 'but': 1.0, 'used': 1.0, 'her': 1.0, 'clean': 1.0, 'at': 1.0, 'is': 5.0, 'for': 5.0, 'closure': 1.0, 'placemats': 1.0, 'fanatical': 1.0, 'inside': 1.0, 'our': 3.0, 'to': 8.0, 'cups': 1.0, 'time': 1.0, 'new': 1.0, 'animals': 1.0, 'proceeded': 1.0, 'around': 2.0, 'his': 1.0, 'baby': 2.0, 'give': 1.0, 'not': 1.0, 'try': 1.0, 'from': 1.0, 'fun': 1.0, 'it': 1.0, 'him': 2.0, 'suction': 1.0, 'us': 1.0, 'in': 1.0, 'daughter': 1.0, 'quest': 1.0, 'keep': 2.0, 'help': 1.0, 'area': 1.0, 'i': 2.0, 'well': 3.0, 'diner': 1.0, 'conceived': 1.0, 'little': 1.0, 'adhere': 1.0, 'kitchen': 1.0, 'of': 2.0, 'the': 13.0, 'etched': 1.0, 'can': 1.0, 'so': 2.0, 'girl': 1.0, 'fully': 1.0, 'sturdy': 1.0, 'they': 1.0, 'what': 1.0, 'seal': 1.0, 'will': 2.0, 'green': 1.0, 'same': 1.0, 'tend': 1.0, 'designed': 2.0, 'restaurant': 1.0, 'tables': 1.0, 'really': 1.0, 'floor': 1.0, 'do': 1.0, 'lively': 1.0, 'color': 1.0, 'lime': 1.0, 'snap': 1.0, 'that': 2.0}
Word element => {'everything': 1.0, 'send': 1.0, 'would': 1.0, 'baby': 1.0, 'flat': 1.0, 'to': 1.0, 'them': 1.0, 'i': 1.0, 'of': 1.0, 'most': 1.0, 'few': 1.0, 'for': 1.0, 'my': 1.0, 'cup': 1.0, 'stick': 2.0, 'worked': 1.0, 'lie': 1.0, 'suction': 3.0, 'that': 1.0, 'tray': 1.0, 'is': 2.0, 'on': 2.0, 'time': 1.0, 'designed': 1.0, 'problem': 1.0, 'feet': 1.0, 'toddlers': 1.0, 'plastic': 1.0, 'a': 2.0, 'go': 1.0, 'feeding': 1.0, 'placemat': 1.0, 'babies': 1.0, 'flying': 1.0, 'get': 1.0, 'couldn': 1.0, 'and': 2.0, 'wouldn': 2.0, 'with': 1.0, 'this': 1.0, 'only': 1.0, 't': 3.0, 'surfaces': 1.0, 'the': 6.0, 'when': 1.0, 'cups': 2.0}
Word element => {'price': 1.0, 'worth': 1.0, 'but': 1.0, 'stuck': 1.0, 'fully': 1.0, 'it': 6.0, 'this': 1.0, 'durable': 1.0, 'with': 1.0, 'tops': 1.0, 'he': 1.0, 'adjust': 1.0, 'time': 2.0, 'handy': 1.0, 'meal': 1.0, 'of': 1.0, 'there': 1.0, 'always': 1.0, 'is': 2.0, 'many': 1.0, 'has': 1.0, 'won': 1.0, 'have': 2.0, 'sees': 1.0, 'been': 1.0, 'that': 2.0, 'come': 1.0, 'handfull': 1.0, 'however': 1.0, 'table': 1.0, 'and': 2.0, 'do': 1.0, 'very': 1.0, 'stick': 2.0, 'from': 1.0, 'son': 1.0, 'in': 1.0, 'playing': 1.0, 'the': 2.0, 'to': 3.0, 'a': 1.0, 't': 3.0, 'we': 1.0, 'doesn': 1.0, 'will': 1.0, 'for': 1.0, 'whole': 1.0, 'my': 1.0, 'isn': 1.0, 'start': 1.0, 'times': 1.0, 'when': 1.0}
Word element => {'family': 1.0, 'for': 1.0, 'pointless': 1.0, 'table': 1.0, 'cups': 1.0, 'suction': 1.0, 'pull': 1.0, 'this': 1.0, 'to': 1.0, 'product': 1.0, 'be': 1.0, 'our': 1.0, 'better': 1.0, 'off': 1.0, 'baby': 1.0, 'if': 1.0, 'the': 3.0, 'would': 1.0, 'was': 1.0, 'not': 1.0, 'able': 1.0}
Word element => {'stain': 1.0, 'pretty': 1.0, 'pick': 1.0, 'doesn': 2.0, 'any': 1.0, 'love': 1.0, 'try': 2.0, 'to': 2.0, 'decided': 1.0, 'my': 1.0, 'rolled': 1.0, 'daughter': 1.0, 'when': 1.0, 'dinner': 1.0, 'hardly': 1.0, 'bag': 2.0, 'and': 3.0, 'roll': 1.0, 'cleaned': 1.0, 'mat': 1.0, 'room': 2.0, 'out': 2.0, 'easily': 1.0, 'lay': 1.0, 'because': 1.0, 'started': 1.0, 'this': 1.0, 'with': 1.0, 'it': 6.0, 'took': 1.0, 'i': 2.0, 'a': 2.0, 'lot': 1.0, 'takes': 1.0, 'up': 4.0, 'of': 1.0, 'flat': 2.0, 'in': 2.0, 't': 3.0, 'the': 3.0, 'diaper': 2.0, 'give': 1.0, 'didn': 1.0}
Word element => {'though': 1.0, 'better': 1.0, 'getting': 1.0, 'way': 1.0, 'long': 1.0, 'suction': 1.0, 'buck': 1.0, 'usually': 1.0, 'off': 1.0, 'rip': 1.0, 'would': 1.0, 'not': 1.0, 'auction': 1.0, 'sometimes': 1.0, 'that': 1.0, 'ideal': 1.0, 'makes': 1.0, 'tray': 2.0, 'securely': 1.0, 'surface': 1.0, 'being': 1.0, 'goes': 1.0, 'home': 1.0, 'depends': 1.0, 'get': 1.0, 'was': 1.0, 'feeding': 2.0, 'close': 2.0, 'baby': 2.0, 'of': 1.0, 'ultimately': 1.0, 'up': 2.0, 'bag': 1.0, 'short': 1.0, 'transportation': 1.0, 'so': 1.0, 'sort': 1.0, 'or': 1.0, 'only': 1.0, 'do': 1.0, 'and': 2.0, 'bang': 1.0, 'stick': 2.0, 'this': 4.0, 'it': 7.0, 'the': 9.0, 'diaper': 1.0, 'a': 3.0, 'go': 1.0, 'throw': 1.0, 'as': 2.0, 'cups': 2.0, 'to': 5.0, 'our': 1.0, 'is': 5.0, 'herself': 1.0, 'your': 1.0, 'strong': 1.0, 'on': 5.0, 'are': 1.0, 'feedings': 1.0, 'product': 1.0, 'for': 5.0, 'great': 3.0, 'finger': 1.0, 'my': 1.0, 'tight': 1.0, 'water': 1.0, 'daughter': 1.0, 'able': 2.0, 'taking': 1.0, 'little': 1.0, 'very': 2.0, 'foods': 1.0, 'i': 1.0, 'restaurants': 1.0, 'trips': 1.0, 'gives': 1.0, 'when': 1.0, 'you': 2.0, 'can': 1.0, 'right': 1.0, 'like': 1.0, 'table': 2.0, 'downfall': 1.0, 'spoon': 1.0, 'lived': 1.0, 'then': 1.0, 'in': 2.0, 'clean': 1.0}
Word element => {'trust': 1.0, 'waste': 1.0, 'tossed': 1.0, 'itself': 1.0, 'unstick': 1.0, 'minutes': 1.0, 'about': 1.0, 'after': 1.0, 'it': 2.0, 'name': 1.0, 'you': 1.0, 'wetness': 1.0, 'pressure': 1.0, 'them': 1.0, 'have': 2.0, 'bought': 1.0, 'time': 1.0, 'plate': 2.0, 'searching': 1.0, 'bowls': 1.0, 'and': 4.0, 'me': 1.0, 'not': 2.0, 'just': 1.0, 'would': 2.0, 'allow': 1.0, 'been': 1.0, 'that': 1.0, 'i': 4.0, 'products': 1.0, 'will': 1.0, 'money': 1.0, 'work': 1.0, 'purchased': 1.0, 'product': 2.0, 'for': 1.0, 'returning': 1.0, 'were': 1.0, 'apply': 1.0, 'throw': 1.0, 'different': 1.0, 'son': 1.0, 'worked': 2.0, 'your': 1.0, '3': 1.0, 'on': 3.0, 'floor': 1.0, 'items': 2.0, 'spent': 1.0, 'his': 1.0, 'brands': 2.0, 'net': 1.0, 'purchase': 1.0, 'my': 1.0, 'the': 7.0, 'a': 1.0, 't': 1.0, 'behind': 1.0, 'here': 1.0, 'suction': 2.0, 'of': 3.0, 'bottom': 1.0, 'there': 1.0, 'nothing': 2.0, 'kinds': 1.0, 'has': 1.0, 'at': 1.0, 'this': 2.0, 'point': 1.0, 'all': 2.0, 'to': 2.0, 'cups': 2.0, 'don': 1.0, 'is': 2.0, 'enough': 1.0}
Word element => {'tabletops': 1.0, 'public': 1.0, 'infested': 1.0, 'dirty': 1.0, 'clean': 1.0, 'snacks': 1.0, 's': 1.0, 'keeps': 1.0, 'baby': 1.0, 'any': 1.0, 'much': 1.0, 'pretty': 1.0, 'to': 1.0, 'food': 1.0, 'surface': 1.0, 'items': 1.0, 'travel': 1.0, 'away': 1.0, 'and': 5.0, 'toddler': 1.0, 'from': 1.0, 'best': 1.0, 'of': 1.0, 'i': 2.0, 'one': 1.0, 'love': 1.0, 'without': 1.0, 'it': 3.0, 'this': 2.0, 'have': 1.0, 'sticks': 1.0, 'bag': 1.0, 'germ': 1.0, 'purchased': 1.0, 'never': 1.0, 'is': 2.0, 'leave': 1.0, 'table': 1.0, 'compact': 1.0, 'home': 1.0, 'in': 1.0, 'the': 2.0, 'diaper': 1.0}
Word element => {'or': 1.0, 'granite': 1.0, 'sealed': 1.0, 'tops': 1.0, 'food': 1.0, 'fast': 1.0, 'for': 1.0, 'restaurant': 1.0, 'didn': 1.0, 'this': 2.0, 'first': 1.0, 'it': 1.0, 'i': 1.0, 'tried': 1.0, 't': 1.0, 'the': 3.0, 'ability': 1.0, 'work': 1.0, 'because': 1.0, 'table': 2.0, 'to': 3.0, 'had': 1.0, 'which': 1.0, 'wood': 2.0, 'grain': 2.0, 'heavily': 1.0, 'take': 1.0, 'affected': 1.0, 'type': 1.0, 'is': 1.0, 'very': 1.0, 'stick': 1.0, 'best': 1.0}
Word element => {'better': 1.0, 'unless': 1.0, 'again': 1.0, 'this': 1.0, 'would': 1.0, 'right': 1.0, 'item': 1.0, 'food': 1.0, 'rest': 1.0, 'then': 1.0, 'up': 1.0, 'followed': 1.0, 'suction': 2.0, 'enough': 1.0, 'but': 1.0, 'and': 2.0, 'get': 1.0, 'over': 1.0, 'corner': 1.0, 'floor': 1.0, 'onto': 1.0, 'product': 2.0, 'buy': 1.0, 'i': 1.0, 'thrown': 1.0, 'old': 1.0, 'strong': 1.0, 'not': 2.0, 'to': 1.0, 'was': 3.0, 'all': 2.0, 'able': 1.0, 'is': 2.0, 'great': 1.0, 'the': 6.0, 'my': 1.0, 'year': 1.0, 'two': 1.0, 'she': 1.0, 'for': 1.0, 'one': 1.0}
Word element => {'but': 1.0, 'this': 1.0, 'i': 1.0, 'your': 1.0, 'does': 1.0, 'work': 1.0, 'would': 1.0, 'was': 1.0, 'not': 2.0, 'do': 1.0, 'no': 1.0, 'really': 1.0, 'waste': 1.0, 'money': 1.0, 'it': 2.0, 'stick': 1.0, 'to': 1.0, 'hoping': 1.0, 'is': 1.0, 'horrible': 1.0, 'anything': 1.0}
Word element => {'routine': 1.0, 'earned': 1.0, 'our': 1.0, 'item': 1.0, 'taking': 1.0, 'area': 1.0, 'cover': 1.0, 'work': 1.0, 're': 1.0, 'they': 2.0, 'instead': 1.0, 'solutions': 1.0, 'neat': 1.0, 'peel': 1.0, 'been': 1.0, 'baby': 1.0, 'eat': 1.0, 'don': 1.0, 'we': 1.0, 'car': 1.0, 'floor': 1.0, 'now': 1.0, 'my': 2.0, 'stash': 1.0, 'bulky': 1.0, 'some': 1.0, 'prefer': 1.0, 'less': 1.0, 'i': 2.0, 'and': 3.0, 'similar': 1.0, 'it': 5.0, 'its': 2.0, 'this': 5.0, 'escaping': 1.0, 'from': 1.0, 'as': 2.0, 'word': 1.0, 'to': 2.0, 'month': 1.0, 'often': 1.0, 'same': 1.0, 'maybe': 1.0, 's': 3.0, 'a': 6.0, 'way': 1.0, 'than': 1.0, 'not': 2.0, 'your': 1.0, 'trash': 1.0, 'is': 2.0, 'more': 2.0, 'there': 1.0, 'if': 1.0, 'course': 1.0, 'because': 4.0, 'that': 1.0, 'prevent': 1.0, 'far': 1.0, 'so': 1.0, 'can': 3.0, 'but': 5.0, 'rim': 1.0, 'plastic': 1.0, 'like': 1.0, 'which': 1.0, 'essential': 1.0, 'suction': 1.0, 'us': 1.0, 'also': 1.0, 'serve': 1.0, 'without': 1.0, 'plate': 1.0, 'placemats': 2.0, 'strong': 1.0, 'offer': 1.0, 'hasn': 1.0, 'only': 1.0, 'function': 1.0, 'most': 1.0, 'directly': 1.0, 'too': 2.0, 'one': 1.0, 'be': 1.0, 'disposable': 1.0, 'manage': 1.0, 'are': 2.0, 'costs': 1.0, 'into': 1.0, 'restaurant': 1.0, 'about': 1.0, 'with': 2.0, 'option': 1.0, 'great': 1.0, 'what': 1.0, 'expect': 1.0, 'obviously': 1.0, 'better': 1.0, 'twice': 1.0, 'pack': 1.0, 'definitely': 1.0, 'thing': 1.0, 'reassuring': 1.0, 't': 3.0, 'fit': 1.0, 'for': 2.0, 'obvious': 1.0, 'alternative': 1.0, 'eating': 1.0, 'stick': 1.0, 've': 1.0, 'turned': 1.0, 'seems': 1.0, 'off': 2.0, 'the': 7.0, 'of': 2.0, 'food': 1.0, 'or': 1.0, 'just': 2.0, 'reusable': 1.0, 'minimalist': 1.0, 'another': 1.0, 'in': 2.0, 'using': 1.0, 'bag': 2.0, 'price': 1.0, 'makes': 1.0, 'you': 3.0, 'things': 1.0, 'star': 1.0, 'table': 1.0, 'll': 1.0, 'easier': 2.0, 'has': 1.0, 'on': 1.0, 'update': 1.0, 'out': 2.0}
Word element => {'win': 1.0, 'handy': 1.0, 'have': 1.0, 'they': 1.0, 'store': 1.0, 'time': 1.0, 'neatly': 1.0, 'see': 1.0, 'to': 5.0, 'helpful': 1.0, 'year': 1.0, '5': 1.0, 'parents': 1.0, 'for': 2.0, 'clean': 1.0, 'her': 1.0, 'and': 5.0, 'niece': 1.0, 'got': 1.0, 'this': 1.0, 'with': 1.0, 'she': 1.0, 'it': 3.0, 'along': 1.0, 'travel': 1.0, 'placemat': 2.0, 'neat': 1.0, 'family': 1.0, 'my': 1.0, 'food': 1.0, 'easy': 1.0, 'folds': 1.0, 'a': 2.0, 'go': 1.0, 's': 1.0, 'dish': 1.0, 'hours': 1.0, 'several': 1.0, 'when': 1.0, '11': 1.0, 'times': 1.0, 'know': 1.0, 'not': 1.0, 'feed': 1.0, 'kid': 1.0, 'portable': 1.0, 'steady': 1.0, 'on': 1.0, 'in': 1.0, 'i': 2.0, 'restaurants': 1.0, 'here': 1.0, 'suction': 1.0, 'has': 1.0, 'the': 3.0, 'disks': 1.0, 'keep': 1.0, 'up': 2.0}
Word element => {'it': 1.0, 'bought': 1.0, 'hadn': 1.0, 'wish': 1.0, 'i': 2.0, 'so': 1.0, 'work': 1.0, 'didn': 1.0, 'doesn': 1.0, 't': 3.0, 'as': 2.0, 'promised': 2.0, 'tried': 1.0, 'luck': 1.0, 'suction': 1.0, 'multiple': 1.0, 'surfaces': 1.0, 'with': 1.0, 'no': 1.0}
Word element => {'inexpensive': 1.0, 'have': 1.0, 'thing': 1.0, 'll': 1.0, 'definitely': 1.0, 'strength': 1.0, 'long': 1.0, 'although': 1.0, 'stuck': 1.0, 'far': 1.0, 'they': 3.0, 'are': 1.0, 'suction': 1.0, 'will': 2.0, 'the': 4.0, 'see': 1.0, 'refold': 1.0, 'unfold': 1.0, 'depends': 1.0, 'easy': 2.0, 'it': 1.0, 'out': 1.0, 'good': 1.0, 'last': 2.0, 'clean': 2.0, 'well': 1.0, 'easier': 1.0, 'that': 1.0, 've': 1.0, 'something': 1.0, 'take': 1.0, 'those': 1.0, 'saves': 1.0, 'baby': 2.0, 's': 1.0, 'we': 2.0, 'a': 4.0, 'this': 3.0, 'convenient': 1.0, 'with': 1.0, 'how': 1.0, 'he': 2.0, 'eating': 2.0, 'use': 1.0, 'placemat': 1.0, 'is': 3.0, 'things': 1.0, 'preferrably': 1.0, 'life': 1.0, 'of': 2.0, 'always': 1.0, '34': 2.0, 'much': 1.0, 'on': 1.0, 'your': 1.0, 'make': 1.0, 'tray': 1.0, 'one': 1.0, 'main': 1.0, 'lot': 1.0, 'and': 5.0, 'wants': 1.0, 'in': 1.0, 'so': 1.0, 'boy': 1.0, 'needs': 1.0, 'question': 1.0, 'having': 1.0, 'surface': 2.0, 'eat': 2.0, 'naturally': 1.0, 'overall': 1.0, 'deep': 1.0, 'cups': 1.0, 'any': 1.0, 'our': 1.0, 'participate': 1.0, 'to': 7.0, 'as': 1.0, 'big': 1.0, 'from': 1.0, 'enough': 1.0, 'off': 1.0, 'stationary': 1.0, 'you': 1.0}
Word element => {'home': 1.0, 'clean': 1.0, 'with': 1.0, 'down': 1.0, 'wipe': 1.0, 'eating': 1.0, 'flat': 1.0, 'also': 2.0, 'only': 1.0, 'do': 1.0, 'once': 1.0, 'of': 1.0, 'it': 10.0, 'this': 1.0, 'he': 2.0, 'is': 2.0, 'suction': 2.0, 'restaurants': 1.0, 'i': 6.0, 'easily': 1.0, 'when': 2.0, 'just': 1.0, 'by': 1.0, 'out': 1.0, 'at': 1.0, 'quickly': 1.0, 'use': 2.0, 'placemat': 1.0, 'for': 1.0, 'on': 2.0, 'fold': 3.0, 'son': 2.0, 'away': 3.0, 'get': 2.0, 'surfaces': 1.0, 'and': 3.0, 'sticks': 1.0, 'compliments': 1.0, 'off': 1.0, 'we': 1.0, 'my': 3.0, 'pull': 1.0, 'are': 1.0, 'in': 3.0, 'diaper': 1.0, 'done': 1.0, 'bag': 1.0, 'to': 3.0, 'hold': 1.0, 'the': 3.0, 'place': 1.0, 'did': 1.0, 'many': 1.0, 'pretty': 1.0, 'learn': 1.0, 'can': 3.0, 'food': 2.0, 'most': 1.0, 'but': 1.0, 'so': 1.0, 'time': 1.0, 'distracted': 1.0}
Word element => {'are': 1.0, 'minutes': 1.0, 'few': 1.0, 'down': 1.0, 'unstick': 1.0, 'stay': 1.0, 'not': 1.0, 'self': 1.0, 'except': 1.0, 'strong': 1.0, 'because': 1.0, 'love': 1.0, 'for': 1.0, 'the': 3.0, 'these': 1.0, 'over': 1.0, 'do': 1.0, '1': 1.0, 'probably': 1.0, 'will': 1.0, 'also': 1.0, 'about': 1.0, 'this': 1.0, 'it': 1.0, 'he': 1.0, 'suction': 2.0, 'they': 3.0, 'can': 1.0, 'aren': 1.0, 'rip': 1.0, 'that': 1.0, 'my': 1.0, 'year': 1.0, 'old': 1.0, 'off': 1.0, 'table': 1.0, 'everything': 1.0, 'if': 1.0, 'wants': 1.0, 'disturbed': 1.0, 'cups': 3.0, 'to': 1.0, 'suctions': 1.0, 'easily': 1.0, 'start': 1.0, 'a': 1.0, 't': 1.0, 'losing': 1.0, 'once': 1.0}
Word element => {'kid': 1.0, 'disform': 1.0, 'chew': 1.0, 'does': 1.0, 'colors': 1.0, 'can': 1.0, 'plastic': 2.0, 'use': 1.0, 'loved': 2.0, 'of': 1.0, 'up': 1.0, 'leak': 1.0, 'after': 1.0, 'when': 1.0, 'idea': 1.0, 'zippy': 1.0, 'the': 7.0, 'these': 1.0, 'lip': 1.0, 'another': 1.0, 'my': 1.0, 'storage': 1.0, 'son': 1.0, 'stack': 1.0, 'while': 1.0, 'part': 1.0, 'multiple': 1.0, 'less': 1.0, 'one': 2.0, 'i': 2.0, 'they': 2.0, 'onto': 2.0, 'fun': 1.0, 'came': 1.0, 'take': 1.0, 'cabinets': 1.0, 'in': 2.0, 'cups': 3.0, 'to': 2.0, 'room': 1.0, 'much': 1.0, 'do': 1.0, 'and': 2.0, 'not': 2.0, 'have': 1.0, 'easy': 1.0, 'handles': 1.0, 'downside': 1.0, 'hold': 1.0, 'is': 2.0, 'your': 1.0, 'strong': 1.0, 'on': 2.0, 'a': 1.0, 'it': 1.0}
Word element => {'rough': 1.0, 'depends': 1.0, 'so': 1.0, 'child': 1.0, 'need': 1.0, 'last': 1.0, 'may': 1.0, 'they': 1.0, 'said': 1.0, 'little': 1.0, 'edges': 1.0, 'decide': 1.0, 'snap': 1.0, 'throughout': 1.0, 'point': 1.0, 'issue': 1.0, 'an': 1.0, 'break': 1.0, 'hinging': 1.0, 'durability': 1.0, 'star': 1.0, 'too': 1.0, 'one': 2.0, 'off': 1.0, 'took': 1.0, 'made': 1.0, 'elsewhere': 1.0, 'have': 2.0, 'who': 1.0, 'sharp': 1.0, 'those': 1.0, 'etc': 1.0, 've': 2.0, 'safety': 1.0, 'strawberries': 1.0, 'many': 1.0, 'safe': 1.0, 'plastic': 3.0, 'about': 2.0, 'like': 1.0, 'boxes': 1.0, 'years': 1.0, 'don': 2.0, 'up': 1.0, 'bulk': 1.0, 'experience': 1.0, 'things': 1.0, 'you': 6.0, 'when': 2.0, 'trying': 2.0, 'but': 3.0, 'making': 1.0, 'most': 4.0, 'lock': 2.0, 'are': 4.0, 'if': 1.0, 'still': 1.0, 'prepare': 1.0, 'bags': 2.0, 'as': 2.0, 'how': 3.0, 'our': 1.0, 'we': 7.0, 't': 2.0, 'go': 1.0, 'a': 2.0, 'of': 4.0, 'the': 13.0, 'do': 1.0, 'much': 1.0, 'sized': 1.0, 'than': 1.0, 'families': 1.0, 'm': 1.0, 'in': 4.0, 'dishwasher': 1.0, 'over': 2.0, 'reduce': 1.0, 'meals': 1.0, 'waste': 1.0, 'your': 1.0, 'bowl': 1.0, 'sandwich': 1.0, 'time': 3.0, 'and': 3.0, 'i': 3.0, 'rethink': 1.0, 'milk': 1.0, 'purchased': 1.0, 'zip': 2.0, 'leaks': 1.0, 'snacks': 1.0, 'kit': 1.0, 'china': 1.0, 'for': 4.0, 'kids': 1.0, 'this': 4.0, 'know': 1.0, 'habits': 1.0, 'found': 1.0, 'garbage': 1.0, 'start': 1.0, 'hear': 1.0, 'use': 1.0, 'cereal': 1.0, 'at': 1.0, 'look': 1.0, 'is': 5.0, 'ending': 1.0, 'ocean': 1.0, 'bpa': 1.0, 'second': 1.0, 'baggies': 1.0, 'free': 1.0, 'top': 1.0, 'rack': 1.0, 'meal': 1.0, 'wet': 1.0, 'great': 2.0, 'american': 1.0, 'typically': 1.0, 'got': 1.0, 'tops': 1.0, 'likely': 3.0, 'safer': 1.0, 'recommend': 1.0, 'sure': 1.0, 'store': 1.0, 'items': 1.0, 'alternative': 1.0, 'will': 5.0, 'not': 1.0, 'dry': 1.0, 'buy': 1.0, 'add': 1.0, 'it': 2.0, 'eat': 1.0, 'to': 5.0, 'veggies': 1.0, 'because': 2.0, 'that': 3.0, 'amount': 1.0, 'on': 3.0, 'smashed': 1.0, 'blueberries': 1.0}
Word element => {'dishwasher': 1.0, 'in': 1.0, 'really': 1.0, 'items': 1.0, 'cleans': 1.0, 'cheerios': 1.0, 'cheese': 1.0, 'mac': 1.0, 'like': 1.0, 'are': 1.0, 'foods': 2.0, 'proof': 1.0, 'the': 4.0, 'leak': 1.0, 'of': 2.0, 'easily': 1.0, 'you': 1.0, 'way': 1.0, 'want': 1.0, 'if': 1.0, 'solid': 1.0, 'snap': 1.0, 'consistency': 1.0, 'i': 2.0, 'escaped': 1.0, 'this': 3.0, 'with': 1.0, 'lids': 2.0, 'only': 1.0, 'item': 1.0, 'were': 1.0, 'for': 2.0, 'container': 1.0, 'something': 1.0, 'would': 2.0, 'that': 1.0, 'avoid': 1.0, 'effort': 1.0, 'down': 1.0, 'okay': 1.0, 'even': 1.0, 'liquid': 1.0, 'both': 1.0, 'similar': 1.0, 'and': 2.0, 'a': 1.0, 'lot': 1.0, 'make': 1.0, 'is': 1.0, 'around': 1.0, 'sure': 1.0, 'though': 1.0, 'sides': 1.0, 'sealed': 1.0, 'to': 2.0, 'all': 1.0, 'difficult': 1.0, 'still': 1.0, 'from': 1.0, 'use': 1.0}
Word element => {'replaced': 1.0, 'have': 1.0, 'out': 1.0, 'if': 1.0, 'inexpensive': 1.0, 'relatively': 1.0, 'long': 1.0, 'in': 1.0, 'efficiently': 1.0, 'clunky': 1.0, 'container': 1.0, 'too': 1.0, 'well': 1.0, 'see': 1.0, 'short': 1.0, 'simple': 1.0, 'easy': 1.0, 'that': 3.0, 'retaining': 1.0, 'but': 2.0, 'scratching': 1.0, 'turns': 1.0, 'the': 6.0, 'is': 4.0, 'side': 1.0, 'eating': 1.0, 'it': 6.0, 'downside': 1.0, 'handles': 1.0, 'a': 3.0, 'we': 1.0, 's': 1.0, 'meal': 1.0, 'large': 1.0, 'functional': 1.0, 'soft': 1.0, 'utensil': 1.0, 'of': 1.0, 'basic': 1.0, 'outside': 1.0, 'as': 2.0, 'to': 2.0, 'clean': 1.0, 'lifespan': 1.0, 'portable': 1.0, 'on': 1.0, 'over': 1.0, 'i': 1.0, 'before': 1.0, 'worry': 1.0, 'about': 1.0, 'needs': 1.0, 'term': 1.0, 'bit': 1.0, 'so': 1.0, 'time': 1.0, 'odors': 1.0, 'll': 1.0, 'plastic': 2.0, 'how': 1.0, 'does': 1.0}
Word element => {'little': 1.0, 'was': 1.0, 'spoon': 1.0, 'wish': 1.0, 'size': 1.0, 'the': 1.0, 'great': 1.0, 'works': 1.0, 'it': 3.0, 'but': 1.0, 'use': 1.0, 'just': 1.0, 'at': 1.0, 'good': 2.0, 'for': 1.0, 'my': 1.0, '20': 1.0, 'bigger': 1.0, 'home': 1.0, 'lot': 1.0, 'seals': 1.0, 'months': 1.0, 'i': 2.0, 'old': 1.0, 'son': 1.0, 'who': 1.0, 'eats': 1.0, 'a': 2.0, 'too': 1.0}
Word element => {'home': 1.0, 'has': 1.0, 'we': 1.0, 'other': 1.0, 'lunch': 1.0, 'daycare': 2.0, 'that': 1.0, 'sets': 1.0, 'bought': 1.0, 'on': 1.0, 'us': 1.0, 'when': 2.0, 'sturdy': 1.0, 'lid': 1.0, 'good': 1.0, 'so': 1.0, 'food': 1.0, 'overall': 1.0, 'for': 3.0, 'to': 1.0, 'had': 1.0, 'get': 1.0, '1': 1.0, 'and': 2.0, 'any': 1.0, 'from': 1.0, 'very': 1.0, 'wells': 1.0, 'dinner': 1.0, 'go': 1.0, 'deep': 1.0, 'have': 1.0, 'large': 1.0, 'never': 1.0, 'pretty': 1.0, 'i': 2.0, 'putting': 1.0, 'can': 1.0, 'leakage': 1.0, 'work': 1.0, 'ready': 1.0, 'but': 1.0, 'am': 1.0, 'deliberate': 1.0, '2': 1.0, 'the': 2.0}
Word element => {'with': 1.0, 'happy': 1.0, 'now': 1.0, 'right': 1.0, 'fresh': 1.0, 'very': 1.0, 'foods': 1.0, 'not': 1.0, 'whether': 1.0, 'used': 1.0, 'because': 1.0, 'star': 1.0, 'this': 1.0, 'the': 2.0, '5': 1.0, 'room': 1.0, 'up': 1.0, 'don': 2.0, 'so': 2.0, 'enough': 1.0, 're': 1.0, 'bag': 2.0, 'take': 2.0, 'them': 1.0, 'baby': 2.0, 'like': 1.0, 'know': 1.0, 'rate': 1.0, 'hold': 1.0, 'dad': 1.0, 'their': 1.0, 'didn': 1.0, 'got': 1.0, 'purchased': 1.0, 'expecting': 1.0, 'one': 1.0, 'product': 1.0, 'for': 5.0, 'rubbermaid': 1.0, 'i': 5.0, 'first': 1.0, 'of': 1.0, 'decent': 1.0, 'these': 2.0, 'but': 1.0, '2': 1.0, 'leak': 1.0, 'diaper': 2.0, 'son': 1.0, 'day': 1.0, 'are': 2.0, 'purchase': 1.0, 'my': 1.0, 'would': 1.0, 'each': 1.0, 'and': 3.0, 'law': 1.0, 'well': 2.0, 'daughter': 1.0, 'mom': 1.0, 'am': 1.0, 'when': 1.0, 'in': 2.0, 'haven': 1.0, 'made': 1.0, 'out': 1.0, 'cute': 1.0, 'they': 5.0, 'will': 2.0, 'nice': 1.0, 'as': 2.0, 'to': 4.0, 'along': 1.0, 'keep': 1.0, 'who': 1.0, 'trips': 1.0, 'yet': 1.0, 'or': 3.0, 'only': 1.0, 'much': 1.0, 'slim': 1.0, 'pack': 1.0, 'be': 1.0, 'healthy': 1.0, 'large': 1.0, 'meal': 2.0, 'we': 1.0, 't': 4.0, 'a': 3.0, 'go': 1.0, 'eat': 1.0}
Word element => {'handy': 1.0, 'are': 1.0, 'colors': 1.0, 'it': 1.0, 'of': 1.0, 'nice': 1.0, 'big': 1.0, 'm': 1.0, 'that': 1.0, 'than': 1.0, 'other': 1.0, 'problem': 1.0, 'leaking': 1.0, 'the': 5.0, 'hands': 1.0, 'very': 1.0, 'little': 1.0, 'this': 2.0, 'with': 2.0, 'spoon': 1.0, 'loved': 1.0, 'holder': 1.0, 'others': 1.0, 'fan': 1.0, 'mess': 1.0, 'i': 4.0, 'restaurants': 1.0, 'fast': 1.0, 'carry': 1.0, 'or': 1.0, 'a': 3.0, 'is': 3.0, 'want': 1.0, 'eat': 1.0, 'toddler': 1.0, 'your': 1.0, 'on': 1.0, 'put': 2.0, 'and': 5.0, 'not': 2.0, 'me': 1.0, 'only': 1.0, 'town': 1.0, 'do': 2.0, 'at': 1.0, 'who': 1.0, 'trying': 1.0, 'portions': 1.0, 'as': 2.0, 'to': 3.0, 'watch': 1.0, 'food': 1.0, 'can': 1.0, 'snacks': 1.0, 'for': 2.0, 'my': 1.0, 'anywhere': 1.0, 'daughter': 1.0, 'container': 2.0, 'them': 1.0, 'have': 3.0, 'liquids': 1.0, 'they': 1.0, 'leak': 1.0, 'said': 1.0, 'in': 1.0, 'someone': 2.0, 'you': 1.0, 'unless': 1.0}
Word element => {'tag': 1.0, 'alone': 1.0, 'let': 1.0, '1': 1.0, 'worth': 1.0, 'overall': 1.0, 'traveling': 1.0, 'carry': 1.0, 'star': 1.0, 'give': 1.0, 'didn': 1.0, 'cheap': 1.0, 'very': 1.0, 'for': 2.0, 'used': 1.0, 'tested': 1.0, '00': 2.0, 'can': 2.0, 'but': 2.0, 'most': 1.0, 'to': 4.0, 'reason': 2.0, 'pops': 1.0, 'not': 1.0, 'dry': 2.0, 'has': 1.0, 'expected': 1.0, 'places': 1.0, 'is': 4.0, 'more': 1.0, 'completely': 1.0, 'be': 1.0, 'a': 2.0, 'go': 1.0, 'travel': 1.0, 'could': 1.0, 't': 2.0, 'just': 1.0, 'on': 1.0, 'put': 1.0, 'meal': 1.0, 'lastly': 1.0, 'only': 2.0, 'first': 1.0, 'it': 11.0, 'this': 2.0, 'with': 1.0, 'when': 4.0, 'idea': 1.0, 'container': 2.0, 'open': 1.0, 'feels': 1.0, 'from': 1.0, 'part': 1.0, 'fisher': 1.0, 'get': 1.0, 'tipped': 1.0, 'than': 1.0, 'excellent': 1.0, 'was': 1.0, 'doesn': 1.0, 'price': 2.0, 'both': 1.0, 'compartment': 2.0, 'and': 3.0, 'i': 5.0, 'great': 1.0, 'of': 5.0, 'the': 12.0, 'without': 1.0, 'disappointed': 1.0, 'if': 1.0, 'comes': 1.0, 'shut': 3.0, 'flaw': 1.0, 'spoon': 1.0, 'hold': 1.0, 'liquid': 1.0, 'failed': 1.0, 'quality': 1.0, 'miserably': 1.0, 'two': 1.0, 'little': 1.0, 'bit': 1.0, 'water': 2.0, 'in': 2.0, 'because': 2.0, 'that': 1.0, 'compartments': 1.0, 'leaking': 1.0, 'side': 1.0, 'leaked': 2.0, 'snap': 1.0, 'cover': 1.0, 'out': 1.0, 'positives': 1.0, 'sides': 1.0, 'have': 1.0, 'you': 2.0, 'push': 1.0, 'down': 1.0, 'about': 1.0, '5': 1.0, 'snacks': 2.0, 'close': 1.0, 'sorely': 1.0, 'even': 1.0, 'one': 2.0, 'all': 1.0, 'other': 1.0, 'design': 1.0, 'unsnapped': 1.0, '8': 1.0, 'plastic': 1.0}
Word element => {'use': 1.0, 'daycare': 1.0, 'it': 1.0, 'fisher': 1.0, 'price': 1.0, 'old': 1.0, 'meal': 1.0, 'is': 1.0, 'on': 1.0, 'daughter': 1.0, 'for': 2.0, 'go': 1.0, '20months': 1.0, 'the': 1.0, 'my': 2.0, 'loves': 1.0, 'grandson': 1.0, 'this': 1.0}
Word element => {'will': 1.0, 'baby': 1.0, 'lovely': 1.0, 'my': 1.0, 'am': 1.0, 'i': 2.0, 'what': 1.0, 'a': 1.0, 'just': 1.0, 'want': 1.0, 'is': 1.0, 'sure': 1.0, 'it': 3.0, 'this': 1.0, 'have': 1.0, 'lid': 1.0, 'girl': 1.0, 'perfect': 1.0, 'also': 1.0, 'could': 1.0, 'like': 1.0, 'if': 1.0, 'would': 1.0, 'be': 1.0}
Word element => {'bit': 1.0, 'isn': 1.0, 'not': 1.0, 'found': 1.0, 'have': 1.0, 'need': 1.0, 'would': 1.0, 'if': 1.0, 'almost': 1.0, 'in': 2.0, 'fold': 1.0, 'will': 1.0, 'also': 1.0, 'handles': 2.0, 'by': 1.0, 'leak': 1.0, 'but': 2.0, 'and': 2.0, 'reusable': 1.0, 'needed': 1.0, 'i': 3.0, 'tried': 1.0, 'buy': 1.0, 'spout': 1.0, 'lids': 1.0, 'with': 2.0, 'carrying': 1.0, 'these': 1.0, 'some': 1.0, 'fisher': 3.0, 'holder': 1.0, 'reason': 1.0, 'make': 1.0, 'is': 1.0, 'around': 1.0, 'more': 1.0, 'a': 1.0, 'we': 3.0, 't': 3.0, 'deal': 1.0, 'flush': 1.0, 'the': 6.0, 'fit': 1.0, 'for': 1.0, 'daughter': 2.0, 'that': 1.0, 'loves': 3.0, 'off': 2.0, 'bottles': 1.0, 'cup': 3.0, 'or': 1.0, 'absolutely': 1.0, 'price': 3.0, 'my': 2.0, 'another': 1.0, 'tossed': 1.0, 'sippy': 1.0, 'started': 1.0, 'them': 3.0, 'doesn': 2.0, 'unfortunately': 1.0, 'anymore': 1.0, 'cups': 3.0, 'to': 1.0, 'brand': 1.0, 'when': 1.0, 'easily': 1.0, 'nice': 1.0, 'pulled': 1.0, 'they': 2.0, 'it': 3.0, 'she': 3.0, 'fell': 1.0, 'one': 1.0, 'bought': 1.0, 'from': 1.0, 'her': 1.0, 'chair': 1.0}
Word element => {'baby': 1.0, 'maybe': 1.0, 'not': 1.0, 'm': 1.0, 'made': 1.0, 'out': 1.0, 'drink': 1.0, 'second': 1.0, 'into': 1.0, 'who': 1.0, 'sure': 1.0, 'squished': 1.0, 'nose': 1.0, 'his': 1.0, 'of': 1.0, '6': 1.0, 'tried': 1.0, 'old': 1.0, 'i': 4.0, 'cup': 1.0, 'my': 1.0, 't': 1.0, 'the': 3.0, 'couldn': 1.0, 'and': 2.0, 'horrible': 1.0, 'time': 1.0, 'dinosaurs': 1.0, 'a': 1.0, 'for': 2.0, 'using': 2.0, 'he': 1.0, 'it': 3.0, 'this': 2.0, 'first': 1.0, 'hard': 2.0, 'month': 1.0, 'spout': 2.0, 'had': 1.0, 'was': 4.0, 'so': 2.0, 'bought': 1.0, 'short': 1.0}
Word element => {'buy': 1.0, 'not': 1.0, 'turned': 1.0, 'setting': 1.0, 'down': 1.0, 'don': 1.0, 'leaks': 1.0, 'want': 1.0, 'juice': 1.0, 'when': 1.0, 'your': 1.0, 'smallest': 1.0, 'over': 1.0, 'on': 1.0, 'floordo': 1.0, 'upside': 1.0, 'set': 1.0, 'you': 1.0, 'cup': 2.0, 'terribly': 1.0, 'this': 2.0, 'the': 1.0, 't': 1.0, 'if': 1.0, 'all': 1.0, 'clean': 1.0}
Word element => {'have': 1.0, 't': 1.0, 'refilled': 1.0, 'so': 1.0, 'size': 1.0, 'nice': 1.0, 'don': 1.0, 'a': 1.0, 'clean': 1.0, 'i': 1.0, 'large': 1.0, 'cups': 1.0, 'love': 1.0, 'are': 2.0, 'they': 3.0, 'these': 1.0, 'durable': 1.0, 'constantly': 1.0, 'very': 1.0, 'and': 1.0, 'easy': 1.0, 'be': 1.0, 'to': 2.0}
Word element => {'reviewers': 1.0, 'other': 1.0, 'to': 1.0, 'please': 1.0, 'not': 1.0, 'reselling': 1.0, 'for': 1.0, 'exactly': 1.0, 's': 2.0, 'france': 1.0, 'bag': 2.0, 'it': 2.0, 'this': 3.0, 'seller': 1.0, 'really': 1.0, 'is': 2.0, 'friend': 1.0, 'do': 1.0, 'speedy': 1.0, 'and': 2.0, 'from': 2.0, 'very': 1.0, 'bought': 2.0, 'my': 2.0, 'the': 1.0, 'listen': 1.0, 'so': 1.0, 'original': 3.0, 'which': 1.0, 'i': 1.0, 'like': 1.0, '100': 1.0, 'reasonable': 1.0, 'price': 1.0}
Word element => {'nice': 1.0, 'huge': 1.0, 'gives': 1.0, 'ok': 1.0, 'job': 1.0, 'the': 2.0, 'these': 1.0, 'blanket': 2.0, 'find': 1.0, 'i': 2.0, 'toddles': 1.0, 'and': 5.0, 'but': 1.0, 'happy': 1.0, 'my': 1.0, 'best': 1.0, 'm': 1.0, 'while': 1.0, 'super': 1.0, 've': 1.0, 'tags': 1.0, 'looking': 1.0, 'online': 1.0, 'before': 1.0, 'his': 1.0, 'for': 2.0, 'with': 2.0, 'it': 2.0, 'he': 2.0, 'found': 1.0, 'this': 1.0, 'now': 2.0, 'had': 1.0, 'was': 1.0, 'crib': 1.0, 'of': 1.0, 'smile': 1.0, 'to': 2.0, 'all': 1.0, 'is': 1.0, 'material': 1.0, 'really': 1.0, 'been': 1.0, 'that': 1.0, 'loves': 1.0, 'a': 4.0, 'we': 1.0, 'different': 1.0, 'quality': 1.0, 'baby': 2.0, 'blanky': 1.0, 'over': 1.0}
Word element => {'toddlers': 1.0, 'blankie': 1.0, 'sized': 1.0, 'appreciate': 1.0, 'must': 1.0, 'from': 1.0, 'as': 1.0, 'gifts': 1.0, 'a': 4.0, 'lovies': 1.0, 'jack': 2.0, 'baby': 3.0, 'new': 2.0, 'thoughtful': 1.0, 'for': 1.0, 'parents': 1.0, 'love': 2.0, 'lovie': 1.0, 'i': 1.0, 'unique': 1.0, 'babies': 1.0, 'textures': 1.0, 'is': 1.0, 'tabs': 1.0, 'infants': 1.0, 'such': 2.0, 'the': 1.0, 'present': 1.0, 'comfort': 1.0, 'perfectly': 1.0, 'and': 4.0, 'giving': 1.0, 'get': 1.0}
Word element => {'this': 1.0, 'buy': 1.0, 'would': 2.0, 'grows': 1.0, 'out': 1.0, 'fears': 1.0, 'husband': 1.0, 'night': 1.0, 'getting': 1.0, 'are': 1.0, 'meds': 1.0, 'reflux': 1.0, 'acid': 1.0, 'stop': 1.0, 'able': 2.0, 'it': 2.0, 'refers': 1.0, 'she': 2.0, 'how': 1.0, 'shipped': 1.0, 'they': 1.0, 'harnesss': 1.0, 'in': 1.0, 'the': 8.0, 'is': 1.0, 'more': 1.0, 'actually': 1.0, 'product': 1.0, 'pillow': 4.0, 'cover': 2.0, 'came': 1.0, 'as': 1.0, 'sleep': 2.0, 'to': 3.0, 'preference': 1.0, 'bag': 1.0, 'smaller': 1.0, 'company': 2.0, 'my': 3.0, 'but': 2.0, 'because': 1.0, 'than': 1.0, 'from': 1.0, 'charge': 1.0, 'daughter': 1.0, 'i': 3.0, 'at': 2.0, 'no': 1.0, 'recommend': 1.0, 'was': 1.0, 'has': 1.0, 'expected': 1.0, 'with': 2.0, 'only': 1.0, 'and': 5.0, 'gadly': 1.0, 'second': 1.0, 'difference': 1.0, 'use': 1.0, 'again': 1.0, 'when': 2.0, 'beans': 1.0, 'miricle': 1.0, 'been': 1.0, 'that': 1.0, 'we': 2.0, 'a': 3.0, 'could': 1.0, 's': 1.0, 'few': 1.0, 'just': 1.0, 'personal': 1.0, 'have': 1.0, 'contacted': 1.0, 'bean': 1.0, 'chair': 1.0, 'made': 1.0, 'world': 1.0, 'of': 2.0}
Word element => {'highly': 1.0, 'one': 1.0, 'have': 1.0, 'many': 1.0, 'thrilled': 1.0, 'parents': 1.0, 'sleeping': 1.0, 'with': 2.0, 'move': 1.0, 'chair': 1.0, 'bigger': 1.0, 'wiggly': 1.0, 'secure': 1.0, 'will': 1.0, 'recommended': 1.0, 'well': 1.0, 'easy': 1.0, 'sure': 1.0, 'not': 1.0, 'i': 1.0, 'great': 1.0, 'it': 5.0, 'how': 1.0, 'he': 1.0, 'as': 1.0, 'sleep': 1.0, 'to': 3.0, 'content': 1.0, 'asked': 1.0, 'more': 1.0, 'is': 4.0, 'baby': 6.0, 'a': 2.0, 'new': 1.0, 'purchase': 1.0, 'lightweight': 1.0, 'my': 1.0, 'very': 3.0, 'play': 1.0, 'and': 7.0, 'gift': 1.0, 'their': 1.0, 'playtime': 1.0, 'where': 1.0, 'for': 3.0, 'or': 2.0, 'naptime': 1.0, 'snuggle': 1.0, 'in': 5.0, 'because': 1.0, 'when': 1.0, 'beans': 1.0, 'you': 1.0, 'friends': 1.0, 'so': 2.0, 'be': 1.0, 'can': 3.0, 'sitting': 1.0, 'securely': 1.0, 'cover': 1.0, 'upright': 1.0, 'lie': 1.0, 'back': 1.0, 'manipulate': 1.0, 'safety': 1.0, 'laws': 1.0, 'was': 1.0, 'belt': 3.0, 'this': 2.0, 'soft': 2.0, 'keeps': 1.0, 'are': 2.0, 'the': 7.0, 'place': 1.0, 'm': 1.0, '34': 2.0, 'both': 1.0}
Word element => {'feels': 1.0, 'it': 1.0, 'way': 1.0, 'the': 1.0, 'i': 1.0, 'to': 1.0, 'her': 1.0, 'a': 1.0, 'baby': 1.0, 'december': 1.0, 'like': 1.0, 'and': 2.0, 'looks': 1.0, 'expecting': 1.0, 'got': 1.0, 'bean': 1.0, 'lounge': 1.0, 'this': 1.0, 'bag': 1.0, 'in': 1.0, 'for': 1.0}
Word element => {'better': 1.0, 'be': 1.0, 'seems': 1.0, 'suited': 1.0, 'over': 1.0, 'tip': 1.0, 'she': 1.0, 'might': 1.0, 'her': 1.0, 'nervous': 1.0, 'made': 1.0, 'us': 1.0, 'daughter': 1.0, 'and': 2.0, 'towards': 1.0, 'toddler': 2.0, 'more': 2.0, 'the': 1.0, 'intended': 1.0, 'item': 1.0, 'rolling': 1.0, 'other': 1.0, 'not': 1.0, 'a': 3.0, 'kept': 1.0, 'baby': 1.0, 'that': 2.0, 'our': 1.0, 'now': 1.0, 'to': 2.0, 'for': 2.0, 'one': 1.0, 'or': 1.0, 'is': 2.0, 'really': 1.0, 'side': 1.0, 'moving': 1.0, 'this': 1.0, 'it': 3.0}
Word element => {'have': 1.0, 'great': 1.0, 'is': 1.0, 'm': 1.0, 'wrote': 1.0, 'at': 1.0, 'on': 1.0, 'my': 1.0, 'went': 1.0, 'so': 1.0, 'got': 2.0, 'here': 1.0, 'when': 1.0, 'daughter': 1.0, 'bddistributers': 1.0, 'pleased': 1.0, 'not': 1.0, 'a': 2.0, 'we': 4.0, 'offer': 1.0, 'frustrated': 1.0, 'bought': 1.0, 'were': 3.0, 'and': 4.0, 'refund': 2.0, 'sure': 1.0, 'get': 1.0, 'this': 2.0, 'with': 2.0, '6': 1.0, 'it': 1.0, 'month': 1.0, 'old': 1.0, 'i': 1.0, 'wife': 1.0, 'nasty': 1.0, 'review': 1.0, 'the': 3.0, 'replace': 1.0, 'supposed': 1.0, 'for': 1.0, 'folks': 1.0, 'did': 2.0, 'but': 2.0, 'money': 1.0, 'shipping': 1.0, 'costs': 1.0, 'they': 1.0, 'our': 4.0, 'to': 3.0, 'item': 2.0, 'what': 1.0}
Word element => {'beautiful': 1.0, 'colors': 1.0, 'is': 1.0, 'use': 1.0, 'it': 1.0, 'well': 2.0, 'excited': 1.0, 'for': 1.0, 'very': 1.0, 'and': 2.0, 'are': 1.0, 'the': 2.0, 'made': 2.0, 'my': 1.0, 'baby': 1.0, 'product': 1.0, 'to': 1.0}
Word element => {'using': 1.0, 'one': 1.0, 'just': 1.0, 'suggest': 1.0, 'would': 1.0, 'aptitude': 1.0, 'crafty': 1.0, 'machine': 1.0, 'are': 1.0, 'some': 1.0, 'these': 2.0, 'it': 2.0, 'diy': 1.0, 'desire': 1.0, 'have': 2.0, 'but': 1.0, 'store': 1.0, 'fabric': 1.0, 'since': 1.0, 'at': 1.0, 'time': 1.0, 'so': 1.0, 'materials': 1.0, 'tight': 1.0, 'for': 1.0, 'little': 2.0, 'tons': 1.0, 'template': 1.0, 'shorts': 1.0, 'pants': 1.0, 're': 1.0, '3t': 1.0, 'the': 4.0, 'as': 1.0, 'to': 2.0, 'our': 1.0, 'were': 1.0, 'awesome': 1.0, 'and': 4.0, 'he': 1.0, 'perfect': 1.0, 'this': 1.0, 'of': 4.0, 'has': 2.0, 'son': 1.0, 'worked': 1.0, 'is': 2.0, '2ts': 1.0, 'really': 1.0, 'skinny': 1.0, 'trouble': 1.0, 'own': 1.0, 'an': 1.0, 'totally': 1.0, 'into': 1.0, 'probably': 1.0, 'nothing': 1.0, 'a': 4.0, 'could': 1.0, 'buying': 1.0, 'fitting': 1.0, 'invention': 1.0, 'sewing': 1.0, 'overpriced': 1.0, 'you': 3.0, 'i': 2.0, 'thrifty': 1.0, 'your': 1.0, '3': 1.0, 'make': 2.0, 'dozen': 1.0, 'if': 2.0, 'same': 1.0, 'no': 1.0, 'about': 1.0, 'thing': 1.0, '5': 1.0, 'or': 1.0, 'worth': 1.0}
Word element => {'decent': 1.0, 'of': 1.0, 'age': 1.0, 'a': 1.0, 'down': 1.0, 'they': 2.0, 'diaper': 1.0, 'are': 3.0, 'the': 2.0, 'not': 1.0, 'work': 1.0, 'wonderful': 1.0, 'considering': 1.0, 'changes': 1.0, 'still': 1.0, 'price': 1.0, 'range': 1.0, 'falling': 1.0, 'pants': 1.0, 'use': 1.0, 'easy': 1.0, 'but': 1.0}
Word element => {'with': 1.0, 'products': 1.0, 'similar': 1.0, 'without': 1.0, 'great': 1.0, 'product': 1.0, 'belt': 2.0, 'pants': 2.0, 'if': 1.0, 'there': 1.0, 'clips': 1.0, 'have': 1.0, 'the': 2.0, 'are': 1.0, 'loops': 2.0, 'for': 1.0, 'wish': 1.0}
Word element => {'better': 1.0, 'much': 1.0, 'in': 1.0, 'which': 1.0, 'goes': 1.0, 'back': 1.0, 'babies': 1.0, 'the': 1.0, 'for': 1.0, 'loops': 1.0, 'are': 1.0, 'a': 1.0, 'belt': 2.0, 'not': 1.0, 'toddlers': 1.0, 'only': 1.0, 'it': 1.0, 'this': 1.0, 'is': 1.0, 'babybeltz': 1.0, 'belts': 1.0, 'carries': 1.0, 'three': 1.0, 'actual': 1.0, 'etc': 1.0}
Word element => {'saver': 1.0, 'a': 1.0, 'be': 1.0, 'will': 1.0, 'not': 1.0, 'son': 1.0, 'hips': 1.0, 'backside': 1.0, 'or': 1.0, 'life': 1.0, 'waist': 1.0, 'has': 1.0, 'no': 1.0, 'he': 1.0, 'outgrows': 1.0, 'the': 2.0, 'these': 1.0, 'length': 1.0, 'but': 1.0}
Word element => {'even': 1.0, 'cover': 1.0, 's': 1.0, 'times': 1.0, 'most': 1.0, 'too': 1.0, 'ends': 1.0, 'his': 1.0, 'waists': 2.0, 'to': 4.0, 'our': 1.0, 'do': 1.0, 'only': 1.0, 'and': 4.0, 'neutral': 1.0, 'are': 1.0, 'handy': 1.0, 'old': 1.0, 'dapper': 3.0, 'shirts': 1.0, 'yr': 1.0, 'pants': 2.0, 'weight': 1.0, 'built': 2.0, 'find': 1.0, 'because': 1.0, 'always': 2.0, 'who': 2.0, 'for': 3.0, 'product': 1.0, 'in': 9.0, 'my': 4.0, 'reviewer': 1.0, 'bought': 1.0, 'shorts': 1.0, 'i': 4.0, 'well': 1.0, 'percentile': 2.0, 'however': 1.0, '10th': 1.0, 'notice': 1.0, 'is': 4.0, 'look': 1.0, 'stars': 1.0, 'colors': 1.0, 'son': 3.0, 'height': 1.0, 'don': 3.0, 'up': 3.0, 'work': 1.0, 'but': 3.0, '2': 1.0, 'so': 2.0, 'can': 1.0, 'with': 4.0, '95th': 1.0, 'versatility': 1.0, 'we': 2.0, 't': 4.0, 'adjustable': 1.0, 'all': 1.0, 'other': 1.0, 'of': 1.0, 'snappers': 1.0, 'the': 10.0, 'possibly': 1.0, 'there': 2.0, 'give': 1.0, 'those': 1.0, 'enough': 1.0, 'amount': 1.0, 'you': 2.0, 'thanks': 1.0, 'this': 1.0, '5': 1.0, 'nothing': 1.0, 'not': 1.0, 'forward': 1.0, 'else': 1.0, 'like': 1.0, 'using': 1.0, 'it': 2.0, 'she': 1.0, 'super': 1.0, 'stated': 1.0, 'skinny': 2.0, 'these': 3.0, 'snapper': 2.0, 'have': 1.0, 'beef': 1.0, 'clothing': 1.0, 'come': 1.0, 'selections': 1.0, 'agree': 1.0, 'great': 1.0, 'value': 1.0, 'daughter': 1.0, 'limit': 1.0, 'years': 1.0, 'ahead': 1.0, 'still': 1.0, 'if': 2.0, 'he': 1.0, 'doesn': 1.0, 'cinch': 1.0, 'newborn': 1.0}
Word element => {'expected': 1.0, 'as': 1.0, 'anymore': 1.0, 'off': 1.0, 'fell': 1.0, 'fit': 1.0, 't': 1.0, 'don': 1.0, 'they': 1.0, 'these': 1.0, 'pants': 1.0, 'belts': 1.0, 'works': 1.0, 'just': 1.0, 'perfect': 2.0, 'old': 1.0, 'boy': 1.0, 'year': 1.0, 'in': 1.0, 'are': 1.0, 'my': 1.0, '2': 1.0, 'his': 1.0}
Word element => {'again': 1.0, 'item': 1.0, 'this': 1.0, 'purchase': 1.0, 'pants': 1.0, 'his': 1.0, 'would': 1.0, 'hold': 1.0, 'the': 1.0, 'i': 1.0, 'dapper': 1.0, 'baby': 1.0, 'up': 1.0, 'and': 1.0, 'toddler': 1.0, 'adjustable': 1.0, 'great': 1.0, 'works': 1.0, 'to': 1.0, 'snapper': 1.0, 'belt': 1.0}
Word element => {'well': 1.0, 'real': 1.0, 'holding': 1.0, 'times': 1.0, 'several': 1.0, 'nice': 2.0, 'anything': 1.0, 'easy': 1.0, 'these': 2.0, 'age': 1.0, 'up': 1.0, 'don': 1.0, 'years': 1.0, 'are': 2.0, 'my': 1.0, 'very': 2.0, 'son': 1.0, 'for': 4.0, 'is': 1.0, 'that': 2.0, 'unbuckle': 1.0, 'were': 1.0, 'to': 5.0, 'skinny': 1.0, 'sizes': 2.0, 'have': 2.0, 'able': 1.0, 'training': 1.0, 'but': 1.0, 'will': 1.0, 'and': 3.0, 'tall': 1.0, 'too': 2.0, 'his': 1.0, 'smaller': 2.0, 'potty': 1.0, 'just': 1.0, 'the': 1.0, 'tad': 1.0, 'know': 1.0, 'wish': 1.0, 'group': 1.0, 'accidentally': 1.0, 'we': 1.0, 't': 1.0, 'a': 1.0, 'he': 1.0, 'come': 1.0, 'be': 1.0, 'use': 1.0, 'on': 1.0, 'put': 1.0, 'washed': 1.0}
Word element => {'in': 1.0, 'be': 1.0, 'will': 1.0, 'idea': 1.0, 'genius': 1.0, 'happy': 1.0, 'the': 2.0, 'about': 1.0, 'ask': 1.0, 'people': 1.0, 'of': 2.0, 'future': 1.0, 'three': 1.0, 'them': 1.0, 'ahead': 1.0, 'glad': 1.0, 'm': 2.0, 'training': 1.0, 'interfering': 1.0, 'feel': 1.0, 'got': 1.0, 'even': 1.0, 'getting': 1.0, 'and': 5.0, 'it': 3.0, 'he': 2.0, 'pack': 1.0, 'only': 1.0, 'buying': 1.0, 'with': 3.0, 'that': 1.0, 'adjustable': 1.0, 'these': 3.0, 'i': 7.0, 'old': 1.0, 'definitely': 1.0, 'buy': 1.0, 'my': 2.0, 'pants': 1.0, 'went': 2.0, 'just': 1.0, 'as': 1.0, 'all': 3.0, 'waist': 1.0, 'any': 1.0, 'to': 5.0, 'high': 1.0, 'low': 1.0, 'searched': 1.0, 'his': 3.0, 'year': 1.0, 's': 1.0, 't': 1.0, 'a': 3.0, 'doesn': 1.0, 'was': 1.0, 'belt': 2.0, 'hated': 1.0, 'skinny': 1.0, 'found': 1.0, 'perfect': 1.0, 'share': 1.0, 'expensive': 1.0, 'for': 3.0, 'fit': 1.0, 'enough': 1.0, 'an': 1.0, '2': 1.0, 'but': 1.0, 'friends': 1.0, 'time': 1.0, 'potty': 1.0, 'so': 2.0, 'solution': 1.0, 'gifts': 1.0, 'are': 1.0, 'searching': 1.0, 'they': 1.0, 'mommy': 1.0, 'tighten': 1.0, 'me': 1.0, 'not': 1.0, 'stay': 1.0, 'jeans': 1.0, 'up': 1.0}
Word element => {'age': 1.0, 'that': 1.0, 'at': 1.0, 'belt': 1.0, 'a': 1.0, 'unbuckle': 1.0, 't': 1.0, 'trained': 1.0, 'can': 1.0, 'works': 1.0, 'well': 1.0, 'most': 1.0, 'for': 1.0, 'toddlers': 2.0, 'especially': 1.0, 'infants': 1.0, 'and': 1.0, 'toddler': 1.0, 'potty': 1.0, 'when': 1.0, 'are': 1.0, 'being': 1.0}
Word element => {'any': 1.0, 'great': 1.0, 'mom': 1.0, 'would': 1.0, 'work': 1.0, 'young': 1.0, 'i': 2.0, 'have': 1.0, 'to': 1.0, 'purchased': 1.0, 'several': 1.0, 'my': 1.0, 'recommend': 1.0, 'of': 1.0, 'belts': 1.0, 'these': 2.0, 'they': 1.0, 'children': 1.0, 'for': 1.0, 'with': 1.0, 'son': 1.0}
Word element => {'com': 1.0, 'amazon': 1.0, 'order': 1.0, 'up': 1.0, 'sure': 1.0, 'great': 1.0, 'works': 1.0, 'love': 1.0, 'not': 2.0, 'this': 1.0, 'through': 1.0, 'product': 2.0, 'the': 3.0, 'unfortunately': 1.0, 'colors': 1.0, 'i': 2.0, 'who': 1.0, 'ordered': 2.0, 'messed': 1.0, 'but': 2.0, 'itself': 1.0}
Word element => {'side': 1.0, 'on': 1.0, 'child': 1.0, 'a': 1.0, 'who': 1.0, 'anyone': 1.0, 'these': 1.0, 'slim': 1.0, 'the': 1.0, 'are': 1.0, 'to': 2.0, 'easy': 1.0, 'use': 1.0, 'and': 1.0, 'has': 1.0, 'recommend': 1.0, 'really': 1.0, 'i': 1.0, 'work': 1.0, 'would': 1.0}
Word element => {'perfectly': 1.0, 'does': 1.0, 'loose': 1.0, 'tightens': 1.0, 'it': 3.0, 'sometimes': 1.0, 'so': 1.0, 'versatility': 1.0, 'snaps': 2.0, 'is': 1.0, 'more': 2.0, 'if': 1.0, 'wonder': 1.0, 'thrilled': 1.0, 'am': 1.0, 'months': 1.0, 'their': 1.0, 'wear': 1.0, 'are': 2.0, 'member': 1.0, 'us': 1.0, 'too': 4.0, 'small': 1.0, 'have': 3.0, 'some': 2.0, 'add': 1.0, 'these': 1.0, 'the': 4.0, 'two': 1.0, 'facebook': 1.0, 'i': 3.0, 'our': 1.0, 'all': 1.0, 'waist': 1.0, 'was': 1.0, 'now': 1.0, 'about': 1.0, 'told': 1.0, 'worth': 1.0, 'or': 1.0, 'fellow': 1.0, 'kids': 2.0, 'this': 1.0, 'we': 1.0, 'a': 2.0, 'for': 5.0, 'product': 1.0, 'who': 1.0, 'from': 1.0, 'big': 1.0, 'middle': 1.0, 'son': 1.0, 'between': 1.0, 'they': 2.0, 'drawers': 1.0, 'group': 1.0, 'help': 1.0, 'use': 1.0, 'pants': 4.0, 'tight': 1.0, 'my': 1.0, 'right': 1.0, 'of': 1.0, 'that': 3.0, 'been': 1.0, 'money': 1.0, 'work': 2.0, 'can': 2.0, 'but': 1.0, 'sitting': 1.0, 'age': 1.0, 'length': 1.0, 'in': 2.0, 'his': 1.0}
Word element => {'us': 1.0, 'waters': 1.0, 'of': 1.0, 'care': 1.0, 'he': 1.0, 'with': 1.0, 'that': 4.0, 'high': 1.0, 'were': 2.0, 'his': 3.0, 'does': 1.0, 'took': 1.0, 'falling': 1.0, 'in': 1.0, 'no': 1.0, 'about': 1.0, 'these': 1.0, 'more': 2.0, 'the': 1.0, 'was': 2.0, 'not': 2.0, 'problem': 1.0, 'worry': 1.0, 'thin': 1.0, 'so': 2.0, 'wonderful': 1.0, 'need': 1.0, 'are': 1.0, 'my': 1.0, 'snapper': 1.0, 'pant': 1.0, 'little': 1.0, 'guy': 1.0, 'too': 1.0, 'either': 1.0, 'required': 1.0, 'we': 1.0, 'different': 1.0, 'legs': 1.0, 'getting': 1.0, 'down': 1.0, 'longer': 1.0, 'bigger': 1.0, 'for': 1.0, 'fit': 1.0, 'them': 1.0, 'well': 1.0, 'came': 1.0, 'larger': 1.0, 'any': 1.0, 'to': 2.0, 'waist': 1.0, 'sizes': 1.0, 'pants': 1.0, 'dapper': 1.0}
Word element => {'this': 1.0, 'sizes': 1.0, '2t': 1.0, 'mo': 1.0, '24': 1.0, 'fitting': 1.0, 'quite': 1.0, 'your': 1.0, 'if': 1.0, 'yet': 1.0, 'or': 1.0, 'worth': 1.0, 'totally': 1.0, 'need': 1.0, 'child': 1.0, 'don': 1.0, 'only': 1.0, 'since': 1.0, 'have': 2.0, 'secure': 1.0, 'be': 1.0, 'enough': 2.0, '18': 1.0, 'average': 1.0, 'and': 2.0, 'the': 4.0, 'these': 3.0, 'won': 1.0, 'comfortably': 1.0, 'percentile': 1.0, 'fall': 1.0, 'more': 1.0, 'is': 2.0, 'under': 1.0, 'son': 1.0, 'weight': 1.0, 'pants': 2.0, 'a': 1.0, 'discovered': 2.0, 't': 4.0, 'we': 4.0, 'bought': 2.0, 'it': 3.0, 'band': 2.0, 'height': 1.0, 'before': 1.0, 'adjustable': 2.0, 'other': 1.0, '25th': 1.0, 'available': 1.0, 'help': 1.0, 'feature': 1.0, 'i': 1.0, '1': 1.0, '5yo': 1.0, 'pretty': 1.0, 'to': 1.0, 'waist': 2.0, 'our': 2.0, 'down': 1.0, 'snappers': 1.0, 'can': 1.0, 'but': 3.0, 'there': 2.0, 'are': 1.0, 'where': 1.0, 'for': 5.0, 'actually': 1.0, 'wished': 1.0, 'anymore': 1.0, 'was': 1.0, 'so': 2.0, 'versatility': 1.0, 'cinch': 2.0, 'in': 2.0, 'times': 1.0, 'when': 1.0, 'you': 1.0, 'words': 1.0, 'amount': 1.0, 'sometimes': 1.0, 'isn': 2.0}
Word element => {'gone': 1.0, 'glad': 1.0, 'truly': 1.0, 'away': 1.0, 'time': 1.0, 'out': 1.0, 'often': 1.0, 'less': 1.0, 'sees': 1.0, 'law': 1.0, 'sister': 1.0, 'assistant': 1.0, 'before': 1.0, 'rid': 1.0, 'getting': 1.0, 'on': 1.0, 'gradual': 1.0, 'was': 3.0, 'much': 1.0, 't': 1.0, 'didn': 1.0, 'crowd': 1.0, 'four': 1.0, 're': 3.0, 'every': 1.0, 'day': 2.0, 's': 1.0, 'i': 6.0, 'lifesavers': 1.0, '2': 2.0, 'but': 5.0, '18': 1.0, 'used': 2.0, 'signs': 1.0, 'orthodontia': 1.0, 'tooth': 1.0, 'two': 1.0, 'showing': 1.0, 'it': 7.0, 'younger': 2.0, 'have': 1.0, 'just': 1.0, 'think': 1.0, 'strong': 1.0, 'were': 4.0, 'claiming': 1.0, 'yes': 1.0, 'see': 1.0, 'until': 1.0, 'off': 1.0, 'age': 2.0, 'between': 2.0, 'they': 4.0, 'after': 1.0, 'allowed': 1.0, 'only': 3.0, 'by': 2.0, 'bottles': 1.0, 'focused': 1.0, 'binky': 3.0, 'or': 1.0, 'girls': 1.0, 'has': 1.0, 'completely': 1.0, 'notice': 1.0, 'is': 1.0, 'months': 1.0, 'gap': 1.0, 'we': 2.0, 'take': 1.0, 'difference': 2.0, 'obviously': 1.0, '1': 1.0, 'and': 5.0, 'top': 1.0, 'similar': 1.0, 'loved': 2.0, 'teethers': 1.0, 'mam': 4.0, 'late': 1.0, 'design': 1.0, 'exclusively': 1.0, 'my': 2.0, 'may': 2.0, 'in': 5.0, 'm': 1.0, 'bed': 1.0, 'teeth': 2.0, 'binkies': 3.0, 'who': 2.0, 'shaped': 1.0, 'keep': 1.0, 'structures': 1.0, 'of': 5.0, 'the': 10.0, 'as': 1.0, 'orthodontist': 1.0, 'point': 1.0, 'started': 1.0, 'because': 1.0, 'problems': 1.0, 'that': 3.0, 'bite': 2.0, 'while': 1.0, 'develop': 1.0, 'older': 1.0, 'past': 1.0, 'mainly': 1.0, 'orthodontic': 1.0, 'with': 1.0, 'both': 2.0, 'mind': 1.0, 'some': 1.0, 'these': 2.0, 'thrown': 1.0, 'not': 4.0, 'constantly': 1.0, 'can': 2.0, 'so': 3.0, 'any': 1.0, 'to': 3.0, 'am': 1.0, 'detrimental': 1.0, 'are': 1.0, 'dental': 1.0, 'all': 1.0, 'an': 1.0, 'other': 1.0, 'huge': 1.0, 'particular': 1.0, 'than': 1.0, 'noting': 1.0, 'differently': 1.0, 'pronounced': 1.0, 'her': 3.0, 'a': 1.0, 'love': 1.0, 'bottom': 1.0, 'took': 1.0, 'even': 1.0, 'related': 1.0, 'be': 1.0, 'nuk': 1.0, 'this': 1.0}
Word element => {'great': 1.0, 'but': 1.0, 'dark': 1.0, 'in': 1.0, 'glow': 2.0, 'not': 1.0, 'ones': 2.0, 'regular': 1.0, 'excellent': 1.0, 'product': 1.0, 'i': 1.0, 'matches': 1.0, 'like': 1.0, 'very': 1.0, 'and': 1.0, 'these': 2.0, 'pretty': 1.0, 'outfits': 1.0, 'also': 1.0, 'well': 1.0, 'are': 2.0, 'the': 4.0}
Word element => {'bag': 1.0, 'good': 2.0, 'favorite': 1.0, 'pacifiers': 1.0, 'cute': 1.0, 'quality': 1.0, 'and': 1.0, 's': 1.0, 'super': 1.0, 'case': 1.0, 'price': 1.0, 'baby': 1.0, 'little': 1.0, 'my': 2.0, 'are': 3.0, 'they': 1.0, 'come': 1.0, 'in': 1.0, 'for': 1.0, 'great': 1.0, 'these': 1.0, 'diaper': 1.0, 'a': 1.0, 'nice': 1.0}
Word element => {'dentist': 1.0, 'a': 1.0, 'am': 1.0, 'take': 1.0, 'if': 2.0, 'months': 1.0, 's': 1.0, 'btw': 1.0, 'brush': 1.0, 'i': 4.0, 'he': 2.0, 'it': 5.0, 'him': 1.0, 'loves': 1.0, 'have': 1.0, 'my': 1.0, 'let': 1.0, 'pry': 1.0, 'his': 2.0, '10': 1.0, 'leans': 1.0, 'away': 2.0, 'teeth': 1.0, 'in': 1.0, 'fingers': 1.0, 'to': 3.0, 'hold': 1.0, 'son': 1.0, 'from': 1.0}
Word element => {'10': 1.0, 'and': 2.0, 'baby': 1.0, 'my': 1.0, '2': 1.0, 'the': 2.0, 'coming': 1.0, 'when': 1.0, 'i': 1.0, 'purchased': 1.0, 'liked': 1.0, 'helping': 1.0, 'teeth': 2.0, 'with': 2.0, 'moths': 1.0, 'it': 2.0, 'he': 1.0, 'really': 1.0, 'were': 1.0, 'that': 1.0, 'besides': 1.0, 'had': 1.0, 'was': 1.0, 'brushing': 1.0, 'helped': 1.0, 'new': 1.0}
Word element => {'sight': 1.0, 'your': 1.0, 'of': 1.0, 'out': 1.0, 'have': 1.0, 'let': 1.0, 't': 1.0, 'the': 3.0, 'more': 1.0, 'my': 1.0, 'much': 1.0, 'to': 1.0, 'chews': 1.0, 'she': 1.0, 'if': 1.0, 'off': 1.0, 'loves': 1.0, 'but': 1.0, 'kid': 2.0, 'in': 1.0, 'rubber': 1.0, 'cover': 1.0, 'on': 1.0, 'is': 1.0, 'brush': 1.0, 'so': 1.0, 'going': 1.0, 'it': 1.0, 'this': 1.0, 'come': 1.0, 'don': 1.0}
Word element => {'yes': 1.0, 'brushing': 1.0, 'for': 1.0, 'good': 1.0, 'really': 1.0, 'to': 3.0, 'get': 1.0, 'it': 1.0, 'teeth': 2.0, 'baby': 1.0, 'hard': 1.0, 'use': 1.0, 'reach': 1.0, 'helps': 1.0, 'my': 1.0, 'son': 1.0, 'loves': 1.0}
Word element => {'do': 1.0, 'luckbut': 1.0, 'position': 1.0, 'key': 1.0, 'want': 1.0, 'kids': 1.0, 'your': 1.0, 'brushing': 1.0, 'with': 1.0, 'relaxed': 1.0, 'been': 1.0, 'easily': 1.0, 'dentist': 1.0, 'give': 1.0, 'there': 1.0, 'patient': 1.0, 'lying': 1.0, 'next': 1.0, 'lower': 1.0, 'soft': 1.0, 'by': 1.0, 'cover': 2.0, 'toilet': 2.0, 'lay': 2.0, 'best': 1.0, 'positions': 1.0, 'all': 2.0, 'struggling': 1.0, 'how': 1.0, 'both': 1.0, 'half': 1.0, 'regret': 1.0, 'won': 1.0, 'buy': 2.0, 'quality': 1.0, 'which': 1.0, 'good': 2.0, 'for': 1.0, 'easier': 1.0, 'once': 1.0, 'battle': 1.0, 'while': 1.0, 'bite': 1.0, 'times': 1.0, 'sit': 1.0, 'when': 1.0, 'am': 2.0, 'just': 1.0, 'found': 1.0, 'bit': 1.0, 'time': 1.0, 'can': 2.0, 'so': 4.0, 'her': 1.0, 'smaller': 1.0, 'mouth': 1.0, 'fingers': 1.0, 'may': 1.0, 'me': 1.0, 'my': 7.0, 'worth': 1.0, 'now': 2.0, 'almost': 1.0, 'his': 4.0, 'got': 3.0, 'didn': 1.0, 'lap': 1.0, '1': 1.0, 'big': 1.0, 'stool': 1.0, 'covered': 1.0, 'reflux': 1.0, 'see': 1.0, 'tried': 1.0, 'off': 2.0, 'until': 1.0, 'yr': 1.0, 'son': 4.0, 'if': 2.0, 'still': 1.0, 'more': 2.0, 'were': 1.0, 'piece': 1.0, 'on': 6.0, 'months': 1.0, 'about': 1.0, 'cleaning': 1.0, 'this': 4.0, 'few': 1.0, 'nuk': 2.0, 'and': 8.0, 'try': 1.0, 'one': 1.0, 'too': 2.0, 'cause': 1.0, 'kinds': 1.0, '21': 1.0, 'started': 2.0, 's': 8.0, 'then': 1.0, 'we': 1.0, 't': 2.0, 'seat': 2.0, 'in': 2.0, 'stuck': 1.0, 'falling': 1.0, 'version': 1.0, 'like': 3.0, 'have': 2.0, 'he': 3.0, 'those': 1.0, 'tb': 3.0, 'not': 1.0, 'old': 2.0, 'i': 13.0, 'infant': 1.0, 'are': 2.0, 'paste': 1.0, 'first': 1.0, 'plus': 1.0, 'drawback': 1.0, 'real': 1.0, 'set': 2.0, 'to': 7.0, 'body': 1.0, 'as': 1.0, 'move': 1.0, 'out': 1.0, 'switched': 1.0, 'kid': 1.0, 'a': 8.0, 'thou': 1.0, 'teeth': 6.0, 'toddler': 1.0, 'head': 3.0, 'tends': 1.0, 'over': 3.0, 'toothbrush': 2.0, 'poping': 1.0, 'hard': 1.0, 'wife': 1.0, 'glad': 1.0, 'would': 1.0, 'also': 1.0, 'w': 1.0, 'mam': 1.0, 'you': 6.0, 'everytime': 1.0, 'of': 4.0, 'the': 11.0, 'finger': 3.0, 'brush': 4.0, 'longer': 1.0, 'it': 12.0, 'him': 4.0, 'bristles': 1.0, 'way': 2.0, 'is': 7.0, 'handle': 2.0}
Word element => {'while': 1.0, 'silicon': 1.0, 'doesn': 1.0, 'a': 2.0, 'after': 1.0, 'so': 1.0, 'cut': 1.0, 'differently': 1.0, 'they': 1.0, 'are': 1.0, 't': 1.0, 'these': 1.0, 'the': 2.0, 'love': 1.0, 'spit': 1.0, 'on': 1.0, 'and': 1.0, 'cause': 1.0, 'chin': 1.0, 'rash': 1.0, 'part': 1.0, 'does': 1.0, 'bad': 1.0, 'collect': 1.0, 'look': 1.0}
Word element => {'onto': 1.0, 'ability': 1.0, 'interfered': 1.0, 'never': 1.0, 'calms': 1.0, 'takes': 1.0, 'she': 2.0, 'brand': 1.0, 'the': 2.0, 'latch': 1.0, 'loves': 1.0, 'colic': 1.0, 'to': 1.0, 'had': 1.0, 'has': 2.0, 'old': 1.0, 'breast': 1.0, 'months': 1.0, 'baby': 1.0, 'broke': 1.0, 'about': 1.0, '3': 1.0, 'we': 1.0, 'is': 2.0, 'my': 1.0, '2nd': 1.0, 'so': 1.0, 'week': 1.0, 'and': 5.0, 'paci': 2.0, 'her': 4.0, 'down': 2.0, 'since': 1.0, 'a': 1.0, 'style': 1.0, 'gave': 1.0, 'with': 1.0, 'it': 2.0, 'only': 1.0, 'this': 1.0}
Word element => {'bag': 1.0, 'ergo': 1.0, 'carrier': 1.0, 'of': 1.0, 'wubanubs': 1.0, 'our': 1.0, 'all': 1.0, 'to': 2.0, 'attached': 1.0, 'm': 1.0, 'diaper': 1.0, 'tongue': 1.0, 'just': 1.0, 'and': 3.0, 'know': 1.0, 'which': 1.0, 'in': 5.0, 'about': 1.0, 'storage': 1.0, 'hospital': 1.0, 'or': 1.0, 'these': 2.0, 'the': 5.0, 'he': 3.0, 'come': 1.0, 'one': 3.0, 'given': 1.0, 'love': 1.0, 'rejected': 1.0, 'thrusts': 1.0, 'my': 1.0, 'you': 1.0, 'box': 2.0, 'loves': 2.0, 'that': 3.0, 'were': 1.0, 'pacifiers': 2.0, 'baby': 2.0, 'them': 2.0, 'out': 2.0, 'i': 2.0, 'talking': 1.0, 'are': 2.0, 'spits': 1.0, 'mouth': 1.0, 'right': 1.0, 'but': 1.0, 'pocket': 1.0, 'they': 2.0, 'easy': 1.0, 'keep': 2.0, 'his': 1.0, 'we': 1.0, 'a': 1.0, 'little': 1.0}
Word element => {'bras': 1.0, 'buy': 1.0, 'back': 1.0, 'years': 1.0, 'always': 1.0, 'way': 1.0, 'learned': 1.0, 'pad': 1.0, 'of': 1.0, 'type': 1.0, 'cotton': 1.0, 'be': 1.0, 'it': 1.0, 'slipping': 1.0, 'or': 1.0, 'well': 1.0, 'sticking': 1.0, 'experience': 1.0, 'in': 3.0, 'hard': 1.0, 'from': 1.0, 'them': 1.0, 'keep': 1.0, 'lansinoh': 1.0, 'purposes': 1.0, 'help': 1.0, 'hygiene': 1.0, 'for': 1.0, 'now': 1.0, 'thin': 3.0, 'may': 1.0, 'my': 2.0, 'that': 2.0, 'around': 1.0, 'is': 5.0, 'many': 1.0, 'breathable': 1.0, 'brands': 1.0, 'by': 1.0, 'unclean': 1.0, 'i': 4.0, 'tried': 1.0, 'to': 2.0, 'pads': 4.0, 'different': 1.0, 'important': 1.0, 'bra': 2.0, 'recommend': 1.0, 'breastfeed': 1.0, 'place': 1.0, 'the': 5.0, 'bunching': 1.0, 'these': 1.0, 'soft': 2.0, 'this': 2.0, 'children': 1.0, 'stickers': 1.0, 'have': 2.0, 'your': 2.0, 'absorbent': 1.0, '3': 1.0, 'playtex': 1.0, 'make': 1.0, 'comfortable': 2.0, 'feel': 1.0, 'very': 1.0, 'material': 1.0, 'highly': 1.0, 'too': 2.0, 'and': 9.0, 'not': 2.0, 'me': 2.0, 'they': 3.0, 'are': 4.0, 'thick': 2.0, 'middle': 1.0, 'nursing': 1.0, 'outer': 1.0, 'far': 1.0, 'scratchy': 1.0, '2': 1.0, 'most': 1.0, 'but': 2.0, 'rim': 1.0, 'can': 1.0, 'irritate': 1.0, 'sensitive': 1.0, 'nipples': 1.0, 'if': 2.0, 'were': 1.0, 'sweaty': 1.0, 'super': 1.0, 'would': 1.0, 'try': 1.0, 'its': 1.0}
Word element => {'since': 1.0, 'almost': 1.0, 'parents': 1.0, 'using': 1.0, 'recommend': 1.0, 'she': 2.0, 'i': 1.0, 'night': 1.0, 'at': 1.0, 'helps': 1.0, 'find': 2.0, 'was': 1.0, 'to': 2.0, 'plushes': 1.0, 'without': 1.0, 'them': 3.0, 'pacifiers': 1.0, 'has': 1.0, 'they': 1.0, 'our': 2.0, 'nuk': 1.0, 'great': 1.0, 'the': 1.0, 'help': 1.0, 'would': 1.0, 'work': 1.0, 'babies': 1.0, 'all': 1.0, 'born': 1.0, 'able': 1.0, 'what': 1.0, 'know': 1.0, 'paci': 2.0, 'do': 1.0, 'and': 2.0, 'dont': 1.0, 'we': 2.0, 'it': 1.0, 'with': 1.0, 'daughter': 1.0, 'us': 1.0, 'of': 1.0, 'always': 1.0, 'be': 2.0}
Word element => {'attached': 1.0, 'when': 1.0, 'dummies': 1.0, 'way': 1.0, 'this': 1.0, 'it': 1.0, 'in': 1.0, 'weighs': 1.0, 'dummy': 1.0, 'a': 1.0, 'doesn': 1.0, 'silicone': 1.0, 'adaptor': 1.0, 'my': 1.0, 'such': 1.0, 'the': 3.0, 't': 1.0, 'feel': 1.0, 'that': 1.0, 'their': 1.0, 'down': 1.0, 'both': 1.0, 'to': 2.0, 'suck': 1.0, 'babies': 1.0, 'pity': 1.0, 'same': 1.0, 'rejected': 1.0}
Word element => {'works': 1.0, 'crib': 1.0, 'chunking': 1.0, 'keep': 1.0, 'rough': 1.0, 'not': 1.0, 'used': 2.0, 'gets': 1.0, 'pacifier': 1.0, 'use': 1.0, 'during': 1.0, 'out': 2.0, 'rungs': 1.0, 'bought': 1.0, 'spits': 1.0, 'he': 1.0, 'nap': 1.0, 'bed': 2.0, 'really': 2.0, 'son': 1.0, 'put': 1.0, 'great': 1.0, 'decision': 1.0, 'before': 1.0, 'air': 1.0, 'we': 2.0, 'then': 2.0, 'week': 1.0, 'cleaning': 1.0, 'day': 1.0, 'surface': 1.0, 'so': 3.0, 'uses': 2.0, 'time': 3.0, 'asleep': 1.0, 'good': 1.0, 'tumble': 1.0, 'expected': 1.0, 'half': 1.0, 'choking': 1.0, 'than': 1.0, 'mouth': 1.0, 'his': 3.0, 'tear': 2.0, 'a': 7.0, 'monkeys': 1.0, 'ago': 1.0, 'separate': 1.0, 'washer': 2.0, 'making': 1.0, 'all': 1.0, 'other': 1.0, 'opinion': 1.0, 'for': 3.0, 'from': 2.0, 'coupon': 1.0, 'in': 6.0, 'and': 12.0, 'monkey': 1.0, 'but': 1.0, 'of': 1.0, 'longer': 1.0, 'the': 16.0, 'began': 2.0, 'place': 1.0, 'elephant': 2.0, 'originally': 1.0, 'paci': 2.0, 'eventually': 1.0, 'ordered': 1.0, 'up': 1.0, 'over': 1.0, 'cheaper': 1.0, 'washed': 1.0, 'on': 2.0, 'reordered': 1.0, 'about': 3.0, 'told': 1.0, 'to': 8.0, 'any': 1.0, 'machine': 1.0, 'held': 1.0, 'i': 8.0, '4': 2.0, 'mark': 1.0, 'replaced': 1.0, 'months': 1.0, 'hazard': 1.0, 'through': 2.0, 'being': 1.0, 'month': 2.0, 'same': 1.0, 'just': 2.0, 'washing': 1.0, 'got': 1.0, 'dried': 2.0, 'even': 1.0, 'contacted': 1.0, 'have': 2.0, 'was': 4.0, 'fall': 1.0, 'silicone': 4.0, 'that': 4.0, 'normal': 1.0, 'these': 1.0, 'him': 1.0, 'it': 12.0, 'already': 1.0, 'need': 2.0, '15': 1.0, 'be': 1.0, 'when': 2.0, 'again': 1.0, 'like': 1.0, 'manner': 1.0, 'they': 1.0, 'my': 3.0, 'me': 1.0, 'until': 1.0, 'off': 1.0, 'company': 1.0, 'only': 3.0, 'their': 1.0, 'product': 1.0, 'price': 1.0, 'if': 1.0, 'still': 1.0, 'been': 1.0, 'amazon': 1.0, 'clip': 1.0, 'thru': 1.0, 'site': 1.0, 'them': 1.0, 'this': 3.0, 'offered': 1.0, 'had': 1.0, 'at': 2.0, 'tossed': 1.0, 'ring': 1.0, 'is': 2.0, 'last': 1.0, 'beginning': 1.0, 'damaged': 1.0, 'however': 1.0}
Word element => {'pacifiers': 1.0, 'we': 1.0, 'mam': 1.0, 'soothie': 1.0, 'her': 1.0, 'become': 1.0, 'puts': 1.0, 'much': 1.0, 'so': 1.0, 'with': 1.0, 'rubbing': 1.0, 'it': 3.0, 'sleep': 1.0, 'loves': 1.0, 'because': 1.0, 'she': 4.0, 'baby': 1.0, 'awesome': 1.0, 'plushie': 1.0, '6': 1.0, 'two': 1.0, 'since': 1.0, 'paci': 1.0, 'and': 3.0, 'more': 1.0, 'the': 3.0, 'my': 1.0, 'purchasing': 1.0, 'has': 2.0, 'use': 1.0, 'elephant': 2.0, 'weeks': 1.0, 'herself': 1.0, 'is': 1.0, 'its': 1.0, 'to': 1.0, 'was': 1.0, 'had': 1.0, 'now': 1.0, '5': 1.0, 'months': 1.0, 'old': 1.0, 'i': 1.0, 'am': 1.0}
Word element => {'much': 1.0, 'own': 1.0, 'is': 1.0, 'came': 1.0, '1yr': 1.0, 'the': 1.0, 'and': 3.0, 'up': 1.0, 'soft': 1.0, 'find': 1.0, 'cute': 1.0, 'pick': 1.0, 'nuk': 2.0, 'easier': 1.0, 'that': 1.0, 'our': 1.0, 's': 1.0, 'with': 1.0, 'it': 3.0, 'her': 2.0, 'works': 1.0, 'can': 1.0, 'well': 1.0, 'a': 1.0, 'on': 1.0, 'silicone': 1.0, 'one': 1.0, 'old': 1.0}
Word element => {'little': 1.0, 'for': 1.0, 'paws': 1.0, 'ears': 1.0, 'tug': 1.0, 'stroller': 1.0, 'us': 1.0, 'with': 1.0, 'take': 1.0, 'likes': 1.0, 'toy': 1.0, 'uses': 1.0, 'months': 1.0, 'still': 1.0, 'there': 1.0, 'stayed': 1.0, 'just': 1.0, 'started': 2.0, 'frustrate': 1.0, 'unintentionally': 1.0, 'got': 1.0, 'perfect': 1.0, 'soft': 1.0, 'this': 2.0, 'first': 1.0, 'he': 5.0, 'my': 1.0, 'pull': 1.0, 'everything': 2.0, 'grabbing': 2.0, 'super': 1.0, 'would': 4.0, 'pacifier': 2.0, 'it': 4.0, 'month': 1.0, 'have': 3.0, 'loved': 1.0, 'then': 2.0, 'curious': 1.0, 'at': 2.0, 'old': 1.0, '4': 1.0, 'i': 1.0, 'but': 1.0, 'and': 7.0, 'gotten': 1.0, 'in': 4.0, 'his': 5.0, 'before': 1.0, 'because': 1.0, 'mouth': 3.0, 'now': 1.0, 'older': 1.0, 'attached': 1.0, 'as': 2.0, 'to': 2.0, 'him': 1.0, 'grab': 1.0, 'plushie': 2.0, 'size': 1.0, 'active': 1.0, 'the': 8.0, 'hands': 2.0, 'arms': 1.0, 'onto': 1.0, 'out': 1.0, 'put': 1.0, '3': 1.0, 'think': 1.0, 'a': 1.0, 's': 2.0, 'we': 2.0, 'should': 1.0, 'sooner': 1.0}
Word element => {'easily': 1.0, 'babies': 1.0, 'is': 1.0, 'animal': 1.0, 'purchased': 1.0, 'and': 1.0, 'this': 1.0, 'loved': 1.0, 'because': 1.0, 'she': 1.0, 'can': 1.0, 'great': 1.0, 'it': 2.0, 'find': 1.0, 'my': 1.0, 'the': 1.0, 'for': 1.0, 'daughter': 1.0, 'stuffed': 1.0}
Word element => {'back': 1.0, 'ordering': 1.0, 'gets': 1.0, 'hold': 1.0, 'thing': 1.0, 'soothing': 1.0, 'more': 1.0, 'time': 1.0, 'were': 1.0, 'later': 1.0, 'week': 1.0, 'so': 1.0, 'on': 1.0, 'days': 1.0, '3': 1.0, 'naps': 1.0, 'for': 4.0, 'usually': 1.0, 'puppy': 2.0, 'get': 2.0, 'spent': 1.0, 'gave': 2.0, 'attached': 1.0, 'likely': 1.0, 'arrived': 1.0, 'be': 2.0, 'pup': 1.0, 'multiple': 1.0, 'upset': 1.0, 'little': 1.0, 'pediatrician': 1.0, 'including': 1.0, 'everything': 1.0, 'let': 1.0, 'slats': 2.0, 'through': 3.0, 'dark': 1.0, 'in': 4.0, 'put': 1.0, 'explained': 1.0, 'or': 1.0, 'glow': 1.0, 'though': 2.0, 'plushy': 1.0, 'trying': 1.0, 'researched': 1.0, 'mouth': 2.0, 't': 1.0, 'a': 9.0, 'then': 1.0, 'we': 5.0, 'might': 1.0, 'times': 1.0, 'when': 2.0, 'was': 4.0, 'able': 1.0, 'night': 3.0, 'old': 1.0, 'used': 1.0, 'suggested': 1.0, 'even': 2.0, 'got': 1.0, 'year': 3.0, 'his': 7.0, 'pacis': 1.0, 'the': 14.0, 'of': 2.0, 'him': 3.0, 'it': 10.0, 'he': 8.0, 'throughout': 2.0, 'waking': 2.0, 'sleeping': 3.0, 'like': 1.0, 'seems': 1.0, 'off': 2.0, 'tried': 1.0, 'b': 1.0, 'avent': 1.0, 'either': 1.0, 'would': 5.0, 'allow': 1.0, 'pacifier': 6.0, 'easily': 1.0, 'associate': 1.0, 'because': 1.0, 'fall': 2.0, 'asked': 1.0, 'pacifiers': 2.0, 'throwing': 1.0, 'out': 1.0, 'unreachable': 1.0, 'while': 2.0, 'couldn': 1.0, 'online': 1.0, 'find': 2.0, '1': 2.0, 'and': 12.0, 'as': 3.0, 'hoping': 1.0, 'to': 9.0, 'she': 1.0, 'many': 1.0, '5': 1.0, 'into': 1.0, 'slip': 1.0, 'crib': 1.0, 'is': 2.0, 'at': 2.0, 'am': 1.0, 'bedtime': 2.0, 'day': 1.0, 'stop': 1.0, 'finally': 1.0, 'an': 1.0, 'check': 1.0, 'reserve': 1.0, 'i': 5.0, 'predicament': 1.0, 'how': 1.0, 'our': 1.0, 'item': 1.0, 'mam': 2.0, 'us': 1.0, 'also': 2.0, 'this': 2.0, '2nd': 1.0, 'crying': 2.0, 'ones': 1.0, 'one': 2.0, 'my': 1.0, 'me': 1.0, 'use': 2.0, 'less': 1.0, 'up': 2.0, 'favorite': 1.0, 'by': 1.0, 'but': 2.0, 'work': 1.0, 'with': 2.0, 'have': 1.0, 'cute': 1.0, 'first': 2.0}
Word element => {'out': 1.0, 'easily': 1.0, 'sometimes': 1.0, 'place': 1.0, 'this': 1.0, 'he': 1.0, 'only': 1.0, 'it': 1.0, 'hold': 1.0, 'can': 1.0, 'item': 1.0, 'animal': 1.0, 'i': 3.0, 'change': 1.0, 'type': 1.0, 'would': 1.0, 'weight': 1.0, 'pacifier': 2.0, 'of': 2.0, 'connected': 1.0, 'purchased': 1.0, 'keeping': 1.0, 'plushie': 1.0, 'that': 3.0, 'the': 6.0, 'my': 1.0, 'take': 1.0, 'not': 1.0, 'did': 1.0, 'any': 1.0, 'baby': 1.0, 'on': 1.0, 'love': 2.0, 'often': 1.0, 'but': 1.0, 'trouble': 1.0, 'hoping': 1.0, 'comes': 1.0, 'wubanub': 1.0, 'had': 1.0, 'in': 2.0, 'and': 2.0, 'paci': 2.0, 'does': 1.0, 'works': 1.0, 'his': 1.0, 'mouth': 1.0}
Word element => {'pacifier': 1.0, 'over': 1.0, 'that': 1.0, 'attach': 1.0, 'soothie': 1.0, 'paci': 1.0, 'animal': 1.0, 'circular': 1.0, 'stretches': 1.0, 'but': 1.0, 'an': 1.0, 'to': 1.0, 'not': 1.0, 'at': 1.0, 'does': 1.0, 'is': 2.0, 'it': 1.0, 'this': 1.0, 'the': 3.0, 'given': 1.0, 'of': 1.0, '34': 2.0, 'there': 1.0, 'pacifiers': 1.0, 'out': 1.0, 'hospitals': 1.0, 'front': 1.0, 'a': 1.0, 'adorable': 1.0, 'ring': 1.0}
Word element => {'take': 1.0, 'give': 1.0, 'had': 1.0, 'was': 1.0, 'it': 3.0, 'he': 4.0, 'with': 2.0, 'this': 1.0, 'in': 2.0, 'also': 1.0, 'back': 1.0, 'but': 2.0, 'enough': 1.0, 'the': 2.0, 'my': 1.0, 'until': 1.0, 'old': 1.0, 'took': 1.0, 'i': 2.0, 'to': 3.0, 'paci': 2.0, 'part': 1.0, 'puppy': 2.0, 'wubbanub': 1.0, 'soothie': 1.0, 'because': 1.0, 'mouth': 1.0, 'knows': 1.0, 'son': 1.0, 'why': 1.0, 'would': 1.0, 'always': 1.0, 'out': 1.0, 'nuk': 1.0, 'his': 2.0, 'pacis': 1.0, 'searched': 1.0, 'for': 1.0, 't': 1.0, 'a': 1.0, 'use': 1.0, 'loves': 1.0, 'that': 2.0, 'won': 1.0, 'review': 1.0, 'has': 1.0, 'comes': 1.0, 'fall': 1.0, 'zero': 1.0, 'so': 1.0, 'interest': 1.0, 'put': 1.0, 'guy': 1.0, 'who': 1.0}
Word element => {'around': 1.0, 'fit': 1.0, 'ring': 1.0, 'binky': 2.0, 'more': 1.0, 'the': 1.0, 'almost': 1.0, 'anticipating': 1.0, 'and': 1.0, 'like': 1.0, 'was': 1.0, 'thought': 1.0, 'i': 3.0, 'lighter': 1.0, 'then': 1.0, 'a': 1.0, 'filled': 1.0, 'is': 1.0, 'only': 1.0, 'he': 2.0, 'with': 1.0, 'bernie': 1.0, 'any': 1.0, 'ida': 1.0, 'baby': 1.0, 'will': 1.0, 'cottonbut': 1.0, 'did': 1.0, 'how': 1.0, '34': 2.0}
Word element => {'about': 1.0, 'something': 1.0, 'do': 1.0, 'to': 1.0, 'but': 1.0, 'she': 1.0, 'mouth': 1.0, 'month': 1.0, 'need': 1.0, 'idea': 1.0, '10': 1.0, 'found': 1.0, 'one': 1.0, 'crib': 1.0, 'choking': 1.0, 'possible': 1.0, 'it': 1.0, 'nookums': 1.0, 'on': 1.0, '4': 1.0, 'old': 1.0, 'i': 2.0, 'purchased': 1.0, 'off': 3.0, 'fall': 1.0, 'could': 1.0, 'tags': 3.0, 'daughter': 1.0, 'tag': 1.0, 'hazard': 1.0, 'february': 1.0, '2014': 1.0, 'two': 1.0, 'them': 1.0, 'great': 1.0, 'these': 1.0, 'the': 3.0, 'choked': 1.0, 'my': 2.0, 'of': 4.0, '34': 2.0, 'fell': 1.0, 'falling': 1.0, 'in': 2.0, 'have': 1.0, 'babies': 1.0}
Word element => {'products': 1.0, 'great': 1.0, 'it': 1.0, 'loves': 1.0, 'for': 1.0, 'these': 1.0, 'she': 1.0, 'little': 1.0, 'and': 3.0, 'size': 1.0, 'bought': 1.0, 'guys': 1.0, 'company': 1.0, 'my': 1.0, 'are': 1.0, 'the': 1.0, 'adorable': 1.0, 'perfect': 1.0, 'niece': 1.0, 'one': 1.0, 'i': 1.0}
Word element => {'friends': 1.0, 'recommend': 1.0, 'and': 1.0, 'cute': 1.0, 'super': 1.0, 'issue': 1.0, 'an': 1.0, 'less': 1.0, 'll': 1.0, 'with': 1.0, 'unlike': 1.0, 'other': 1.0, 'sucking': 1.0, 'stops': 1.0, 'he': 2.0, 'second': 1.0, 'animal': 1.0, 'stuffed': 1.0, 'wetting': 1.0, 'properly': 1.0, 'couldn': 1.0, 'to': 2.0, 'paci': 3.0, 'plushie': 2.0, 'angle': 1.0, 'be': 2.0, 'old': 1.0, 'i': 5.0, 'without': 1.0, 'the': 6.0, 'that': 3.0, 'loves': 1.0, 'still': 1.0, 'son': 1.0, 'on': 1.0, 'washed': 1.0, 'manages': 1.0, 'once': 1.0, 'of': 2.0, 'week': 1.0, 'can': 2.0, 'but': 1.0, 'his': 2.0, 'leaves': 1.0, 'weird': 1.0, 'wubbanub': 2.0, 'my': 2.0, 'hold': 1.0, 'which': 1.0, 'like': 1.0, 'this': 2.0, 'it': 6.0, 'than': 1.0, 'flexible': 1.0, 'mouth': 1.0, '14': 1.0, 'because': 1.0, 'hopes': 1.0, 'use': 1.0, 'onto': 1.0, 'm': 1.0, 'whatever': 1.0, 'pacifier': 1.0, 'holder': 1.0, 'is': 1.0, 'fall': 1.0, 'have': 1.0, 'however': 1.0, 'soothie': 1.0, 'at': 1.0, 's': 1.0, 't': 1.0, 'we': 1.0, 'a': 1.0, 'keeping': 1.0, 'feared': 1.0, 'out': 1.0}
Word element => {'us': 1.0, 'apart': 1.0, 'her': 2.0, 'on': 3.0, 'pacifier': 3.0, 'hold': 1.0, 'couldn': 1.0, 'and': 3.0, 'off': 1.0, 'the': 4.0, 'this': 1.0, 'own': 1.0, 'my': 1.0, 'baby': 1.0, 'daughter': 1.0, 'it': 2.0, 'she': 2.0, 'month': 1.0, 'introduced': 1.0, 'as': 2.0, 'to': 2.0, 'old': 1.0, 'i': 1.0, 'just': 1.0, 'have': 1.0, 'work': 1.0, 'weakens': 1.0, 'wash': 1.0, 've': 1.0, 'should': 1.0, 'fall': 1.0, 'holds': 1.0, 'say': 1.0, 'once': 1.0, 'you': 1.0, 'stuffed': 1.0, 'had': 1.0, 'animal': 1.0, '6': 1.0, 'plastic': 1.0, 'now': 1.0, 'wring': 1.0, 'loves': 1.0, 'that': 1.0, 'rips': 1.0, 't': 1.0, 'a': 1.0, 'weaning': 1.0, 'we': 1.0, 'one': 1.0}
Word element => {'any': 1.0, 'paci': 1.0, 'find': 1.0, 'search': 1.0, 'the': 3.0, 'fits': 1.0, 'made': 1.0, 'product': 1.0, 'much': 2.0, 'love': 1.0, 'loosing': 1.0, 'was': 1.0, 'to': 2.0, 'that': 1.0, 'plushie': 1.0, 'easier': 2.0, 'with': 1.0, 'it': 2.0, 'turning': 1.0, 'quality': 1.0, 'my': 1.0, 'high': 1.0, 'her': 1.0, 'light': 1.0, 'rather': 1.0, 'pacifier': 3.0, 'attached': 1.0, 'daughter': 1.0, 'finding': 1.0, 'so': 1.0, 'kept': 1.0, 'at': 1.0, 'night': 1.0, 'than': 1.0, 'on': 1.0}
Word element => {'purpose': 1.0, 'serve': 1.0, 'not': 1.0, 'does': 1.0, 'tiny': 1.0, 'just': 1.0, 'returned': 1.0, 'were': 1.0, 'a': 1.0, 'we': 1.0, 's': 2.0, 'over': 1.0, 'control': 1.0, 'skills': 1.0, 'motor': 1.0, 'toy': 1.0, 'has': 1.0, 'therefore': 1.0, 'your': 1.0, 'connected': 1.0, 'keeps': 1.0, 'nothing': 1.0, 'is': 2.0, 'there': 1.0, 'easy': 1.0, 'pacifier': 3.0, 'would': 2.0, 'baby': 1.0, 'disconnect': 1.0, 'her': 3.0, 'holding': 1.0, 'keep': 1.0, 'onto': 2.0, 'be': 2.0, 'i': 3.0, 'old': 1.0, 'took': 1.0, 'that': 2.0, 'loves': 1.0, 'off': 1.0, 'this': 3.0, 'she': 2.0, 'month': 1.0, 'it': 6.0, 'cannot': 1.0, 'which': 1.0, 'hold': 1.0, 'hoping': 1.0, 'in': 2.0, 'expensive': 1.0, 'product': 3.0, 'for': 1.0, '5': 1.0, 'my': 1.0, 'very': 1.0, 'little': 1.0, 'animals': 1.0, 'and': 3.0, 'stuffed': 2.0, 'had': 1.0, 'thought': 1.0, 'any': 1.0, 'to': 3.0, 'all': 1.0, 'of': 1.0, '15': 1.0, 'seconds': 1.0, 'hands': 1.0, 'the': 3.0, 'puppy': 1.0, 'part': 1.0, 'from': 1.0, 'was': 1.0, 'soothe': 1.0, 'unfortunately': 1.0, 'reattached': 1.0, 'when': 1.0, 'again': 1.0, 'told': 1.0, 'no': 1.0, 'time': 1.0}
Word element => {'herself': 1.0, 'find': 1.0, 'baby': 1.0, 'again': 1.0, 'ever': 1.0, 'crib': 1.0, 'under': 1.0, 'look': 1.0, 'have': 1.0, 'so': 1.0, 'and': 2.0, 'plus': 2.0, 'of': 2.0, 'the': 4.0, 'never': 1.0, 'sewn': 1.0, 'with': 1.0, 'it': 4.0, 'this': 1.0, 'can': 1.0, 'but': 1.0, 'thankful': 1.0, 'inside': 1.0, 'daughters': 1.0, 'pacifier': 1.0, 'to': 1.0, 'paci': 3.0, 'our': 1.0, 'plushie': 1.0, 'loved': 1.0, 'we': 2.0, 'a': 6.0, 'wubbanub': 2.0, 'for': 3.0, 'bought': 1.0, 'one': 1.0, 'making': 2.0, 'cleaning': 2.0, 'fits': 1.0, 'soothie': 1.0, 'little': 1.0, 'many': 1.0, 'cumbersome': 1.0, 'm': 1.0, 'both': 1.0, 'onto': 1.0, 'absolutely': 1.0, 'at': 1.0, 'adorable': 1.0, 'types': 1.0, 'pacis': 1.0, 'is': 2.0, 'comes': 1.0, 'easy': 1.0, 'only': 1.0, 'works': 1.0, 'tiny': 1.0, 'lovey': 1.0, '3am': 1.0, 'has': 1.0, 'toy': 1.0, 'rattle': 1.0, 'unattached': 1.0, 'i': 1.0}
Word element => {'out': 1.0, 'doesn': 1.0, 'with': 1.0, 'hold': 1.0, 'able': 1.0, 'be': 1.0, 'turtle': 2.0, 'attachment': 1.0, 'll': 1.0, 'of': 1.0, 'pacifier': 1.0, 'fairly': 1.0, 'has': 1.0, 'only': 1.0, 'it': 2.0, 'older': 1.0, 'okay': 1.0, 'problem': 1.0, 'keep': 2.0, 'popping': 1.0, 'so': 3.0, 'i': 1.0, 'far': 1.0, 'loved': 1.0, 'hands': 1.0, 'the': 7.0, 'been': 1.0, 'that': 2.0, 'idea': 1.0, 'you': 1.0, 'rubber': 1.0, 'interchange': 1.0, 'depending': 1.0, 'design': 1.0, 't': 1.0, 'could': 1.0, 'pacifiers': 1.0, 'more': 1.0, 'is': 2.0, 'stiff': 1.0, 'on': 1.0, 'he': 2.0, 'how': 1.0, 'baby': 1.0, 'sitting': 1.0, 'can': 1.0, 'actually': 1.0, 'from': 1.0, 'to': 2.0, 'as': 1.0, 'staying': 1.0, 'itself': 1.0, 'in': 1.0, 'his': 2.0, 'maybe': 1.0, 'mouth': 1.0, 'gets': 1.0}
Word element => {'dragon': 1.0, 'we': 1.0, 'lot': 1.0, 'one': 1.0, 'case': 1.0, 'have': 2.0, 'actually': 1.0, 'without': 1.0, 'while': 1.0, 'been': 1.0, '5': 1.0, 'perfect': 1.0, 'as': 1.0, 'awkward': 1.0, 'more': 2.0, 'be': 2.0, 'might': 1.0, 'would': 1.0, 'doesn': 1.0, 'larger': 1.0, 'times': 1.0, 'through': 1.0, 'since': 1.0, 'has': 2.0, 'say': 1.0, 'turtle': 2.0, 'loves': 1.0, 'month': 1.0, 'favorite': 1.0, 'down': 1.0, 'car': 2.0, 'clean': 1.0, 'safety': 1.0, 'daughter': 1.0, 'got': 2.0, 'overall': 1.0, 'pop': 3.0, 'another': 2.0, 'softened': 1.0, 'my': 3.0, 'reviewer': 1.0, 'b': 1.0, 'simply': 1.0, 'wash': 1.0, 'her': 8.0, 'smaller': 1.0, 'it': 14.0, 'him': 1.0, 'mentioned': 1.0, 'pacifier': 4.0, 'never': 1.0, 'pops': 1.0, 'gone': 1.0, 'wants': 1.0, 'feel': 1.0, 'big': 1.0, 'hates': 1.0, 'bought': 2.0, 'large': 2.0, 'young': 1.0, 'that': 2.0, 'because': 2.0, 'mouth': 3.0, 'likes': 1.0, 't': 1.0, 'ago': 1.0, 'maybe': 1.0, 's': 9.0, 'absolutely': 1.0, 'out': 4.0, 'pacifiers': 1.0, 'and': 9.0, 'months': 2.0, 'get': 2.0, 'issue': 1.0, 'five': 1.0, 'for': 3.0, 'jingle': 1.0, 'now': 2.0, 'wubanub': 1.0, 'she': 11.0, 'baby': 2.0, 'old': 2.0, 'well': 1.0, 'i': 12.0, 'object': 1.0, 'a': 9.0, 'rattle': 1.0, 'interchangeable': 1.0, 'nuk': 1.0, 'few': 2.0, 'this': 4.0, 'oh': 1.0, 'with': 5.0, 'at': 1.0, 'is': 4.0, 'in': 8.0, 'seat': 1.0, 'to': 3.0, 'day': 1.0, 'if': 2.0, 'coordinated': 1.0, 'not': 2.0, 'love': 3.0, 'he': 1.0, '34': 2.0, 'plastic': 1.0, 'plush': 1.0, 'first': 1.0, 'two': 1.0, 'upset': 2.0, 'little': 3.0, 'so': 2.0, 'can': 2.0, 'but': 3.0, 'calms': 1.0, 'when': 3.0, 'year': 1.0, 'cousin': 1.0, 'even': 1.0, 'took': 1.0, 'from': 1.0, 'hard': 1.0, 'ever': 1.0, 'other': 1.0, 'also': 2.0, 'enough': 2.0, 'help': 1.0, 'washer': 1.0, 'back': 2.0, 'quite': 1.0, 'rather': 1.0, 'the': 14.0, 'of': 1.0, 'was': 2.0, 'right': 1.0, 'true': 1.0}
Word element => {'back': 1.0, 'flatter': 1.0, 'use': 1.0, 'to': 2.0, 'liked': 1.0, 'head': 1.0, 'seat': 1.0, 'keep': 1.0, 'pillow': 1.0, 'is': 1.0, 'the': 2.0, 'my': 1.0, 'it': 1.0, 'and': 1.0, 'getting': 1.0, 'good': 1.0, 'think': 1.0, 'from': 1.0, 'i': 2.0, 'in': 2.0, 'grandson': 1.0, 's': 1.0, 'car': 1.0, 'help': 1.0, 'his': 1.0}
Word element => {'practical': 1.0, 'but': 1.0, 'chaos': 1.0, 'off': 1.0, 'avoid': 1.0, 'that': 1.0, 'hazard': 1.0, 'be': 1.0, 'is': 2.0, 'head': 1.0, 'his': 3.0, 'however': 1.0, 'small': 1.0, 'kinda': 1.0, 'was': 1.0, 'its': 2.0, 'seat': 1.0, 'to': 2.0, 'when': 2.0, 'attached': 1.0, 'i': 5.0, 'old': 1.0, 'cut': 1.0, 'car': 1.0, 'so': 1.0, 'supported': 1.0, 'with': 1.0, 'use': 1.0, 'what': 1.0, 'thought': 1.0, 'and': 2.0, 'very': 1.0, 'kind': 1.0, 'price': 1.0, 'cute': 1.0, 'ended': 1.0, 'in': 2.0, 'for': 2.0, 'supposed': 1.0, 'strap': 1.0, 'pacifier': 1.0, 'of': 1.0, 'up': 1.0, 'chancy': 1.0, 'opened': 1.0, 'tho': 1.0, 'nook': 1.0, 'my': 1.0, '8': 1.0, 'it': 6.0, 'month': 1.0, 'choking': 1.0, 'does': 1.0, 'mouth': 1.0, 'the': 3.0, 'without': 1.0, 'might': 1.0, 'a': 2.0, 'think': 1.0}
Word element => {'others': 1.0, 'to': 1.0, 'most': 1.0, 'will': 1.0, 'i': 1.0, 'over': 1.0, 'bent': 1.0, 'out': 1.0, 'daughter': 1.0, 'next': 2.0, 'it': 2.0, 'with': 2.0, 'this': 2.0, 'and': 2.0, 'our': 1.0, 'better': 1.0, 'pillow': 1.0, 'bought': 1.0, 'amazing': 1.0, 'likes': 1.0, 'we': 1.0, 'recommend': 1.0, 'she': 2.0, 'sleeps': 1.0, 'works': 1.0, 'her': 2.0, 'definitely': 1.0, 'car': 1.0, 'seat': 1.0, 'so': 2.0, 'much': 1.0, 'for': 1.0, 'comfortable': 1.0}
Word element => {'satisfied': 1.0, 'm': 1.0, 'plays': 1.0, 'enjoys': 1.0, 'up': 1.0, 'of': 1.0, 'help': 1.0, 'cuz': 1.0, 'would': 1.0, 'pacifier': 1.0, 'just': 1.0, 'but': 2.0, 'work': 1.0, 'thought': 1.0, 'because': 1.0, 'mouth': 2.0, 'i': 3.0, 'this': 1.0, 'with': 2.0, 'keep': 1.0, 'so': 3.0, 'in': 1.0, 'it': 5.0, 'she': 3.0, 'her': 2.0, 't': 2.0, 'the': 1.0, '4mo': 1.0, 'yanking': 1.0, 'ended': 1.0, 'cute': 1.0, 'still': 2.0, 'out': 1.0, 'made': 1.0, 'my': 2.0, 'often': 1.0, 'for': 1.0, 'was': 1.0, 'to': 1.0, 'purpose': 1.0, 'trying': 1.0, 'dragon': 2.0, 'very': 1.0, 'wouldn': 1.0, 'got': 1.0, 'didn': 1.0, 'more': 1.0, 'is': 1.0, 'nicley': 1.0, 'play': 1.0, 'and': 2.0}
Word element => {'worth': 1.0, 'had': 1.0, 'amazonglobal': 1.0, 'pay': 1.0, 'shipping': 2.0, 'under': 1.0, 'value': 1.0, 'chillie': 1.0, 'which': 1.0, 'polar': 1.0, 'i': 2.0, 'lot': 1.0, 'at': 1.0, 'especially': 1.0, 'not': 2.0, 'it': 2.0, 'stays': 1.0, 'pacifier': 3.0, 'quite': 1.0, 'plushie': 2.0, 'pacifiers': 1.0, 'compared': 1.0, 'bought': 1.0, 'one': 1.0, 'practical': 1.0, 'slept': 1.0, 'him': 2.0, 'be': 1.0, 'for': 2.0, 'fit': 1.0, 'product': 2.0, 'onto': 1.0, 'floor': 2.0, 'and': 6.0, 'money': 1.0, 'but': 1.0, 'can': 1.0, 'most': 2.0, 'with': 3.0, 'meets': 1.0, 'more': 1.0, 'comes': 1.0, 'around': 1.0, 'is': 2.0, 'if': 1.0, 'drops': 1.0, 'pacimals': 1.0, 'my': 3.0, 'easy': 1.0, 'plushies': 1.0, 'the': 8.0, 'find': 1.0, 'mouth': 1.0, 'wabanub': 1.0, 'expectations': 1.0, 'needs': 1.0, 'separately': 1.0, 'in': 2.0, 'detached': 1.0, 'always': 2.0, 'night': 1.0, 'baby': 1.0, 'used': 1.0, 'washed': 1.0, 'carried': 1.0, 'his': 2.0, 'all': 1.0, 'paci': 1.0, 'to': 5.0, 'drop': 1.0, 'singapore': 1.0, 'bear': 1.0, 'easily': 1.0, 'when': 2.0, 'free': 1.0, 'attached': 1.0, 'a': 1.0, 's': 3.0, 'hardly': 1.0, 'we': 1.0, 'he': 1.0, 'cot': 1.0}
Word element => {'than': 1.0, 's': 2.0, 'thing': 1.0, 'washing': 1.0, 'constantly': 1.0, 're': 1.0, 'so': 1.0, 'sticky': 1.0, 'more': 1.0, 'the': 2.0, 'definitely': 1.0, '20': 1.0, 'in': 1.0, 'and': 2.0, 'lint': 1.0, 'our': 1.0, 'worth': 1.0, 'gift': 1.0, 'a': 2.0, 'annoyance': 1.0, 'material': 1.0, 'product': 1.0, 'concerned': 1.0, 'kind': 1.0, 'as': 3.0, 'son': 1.0, 'is': 3.0, 'for': 1.0, 'received': 1.0, 'we': 2.0, 'while': 1.0, 'radius': 1.0, 'far': 1.0, 'this': 1.0, 'it': 4.0, 'attracts': 1.0, 'hair': 1.0, 'foot': 1.0, 'teething': 1.0, 'piece': 1.0, 'decent': 1.0, 'every': 1.0, 'of': 3.0}
Word element => {'condition': 1.0, 'time': 1.0, 'on': 1.0, 'arrived': 1.0, 'bad': 1.0, 'happy': 1.0, 'good': 1.0, 'material': 1.0, 'plastic': 1.0, 'thicker': 1.0, 'perfect': 1.0, 'this': 2.0, 'disappointment': 1.0, 'an': 1.0, 'from': 1.0, 'very': 2.0, 'around': 1.0, 'is': 3.0, 'lining': 1.0, 'side': 1.0, 'it': 2.0, 'excited': 1.0, 'with': 2.0, 'leather': 1.0, 'quality': 2.0, 'but': 1.0, 'doesn': 1.0, 'was': 2.0, 'all': 1.0, 'to': 2.0, 'priced': 1.0, 'the': 10.0, 'diaper': 2.0, 'bag': 4.0, 'find': 1.0, 'straps': 1.0, 'first': 1.0, 'snaps': 1.0, 't': 2.0, 'a': 2.0, 'changing': 2.0, 'that': 2.0, 'came': 1.0, 'zippers': 1.0, 'in': 2.0, 'seem': 1.0, 'and': 7.0, 'me': 1.0, 'i': 1.0, 'product': 1.0, 'scream': 1.0, 'cheap': 1.0, 'rings': 1.0, 'pockets': 1.0, 'even': 1.0, 'pad': 3.0, 'of': 1.0, 'reasonably': 1.0, 'trivial': 1.0, 'isn': 1.0, 'ever': 1.0, 'purchase': 1.0, 'may': 1.0, 'owned': 1.0, 'thin': 1.0}
Word element => {'amperage': 1.0, 'right': 1.0, 'to': 2.0, 'next': 1.0, 'is': 1.0, 'needs': 1.0, 'very': 1.0, 'and': 1.0, 'pumping': 1.0, 'the': 3.0, 'be': 2.0, 'short': 1.0, 'll': 1.0, 'correct': 1.0, 'cord': 1.0, 'at': 2.0, 'but': 1.0, 'table': 1.0, 'plug': 1.0, 'least': 1.0, 'it': 1.0, 'you': 1.0, 's': 1.0, 'voltage': 1.0}
Word element => {'power': 1.0, 'replacement': 1.0, 'good': 1.0, 'was': 1.0, 'i': 1.0, 'it': 1.0, 'adapter': 1.0, 'bought': 1.0, 'this': 1.0, 'pump': 2.0, 'breast': 1.0, 'a': 2.0, 'medela': 1.0, 'for': 2.0, 'in': 1.0, 'original': 1.0, 'style': 1.0}
Word element => {'as': 1.0, 'sizes': 1.0, 'larger': 1.0, 'continue': 1.0, 'highly': 1.0, 'would': 1.0, 'that': 1.0, 'anything': 1.0, 'catch': 1.0, 'there': 1.0, 'on': 1.0, 'will': 1.0, 'put': 1.0, 'through': 1.0, 'pockets': 1.0, 'i': 1.0, 'liquids': 1.0, 'falls': 1.0, 'allow': 1.0, 'are': 1.0, 'actually': 1.0, 'material': 1.0, 'not': 1.0, 'smiles': 1.0, 'her': 1.0, 'does': 1.0, 'is': 1.0, 'great': 1.0, 'bib': 1.0, 'and': 2.0, 'grows': 1.0, 'it': 1.0, 'this': 1.0, 'she': 1.0, 'recommend': 1.0, 'easy': 1.0, 'also': 1.0, 'perfect': 1.0, 'buying': 1.0, 'soak': 1.0, 'to': 3.0, 'wipe': 1.0, 'fits': 1.0, 'clean': 1.0, 'my': 1.0, 'when': 1.0, 'daughter': 1.0}
Word element => {'too': 1.0, 'washes': 1.0, 'nicely': 1.0, 'the': 1.0, 'my': 1.0, 'be': 1.0, 'to': 1.0, 'purchased': 1.0, 'this': 1.0, 'grandson': 1.0, 'bib': 1.0, 'best': 1.0, 'very': 1.0, 'and': 1.0, 'no': 1.0, 'for': 1.0, 'messy': 1.0, 'has': 1.0, 'ever': 1.0, 'so': 1.0, 'covers': 1.0, 'completely': 1.0, 'stains': 1.0, 'on': 1.0, 'clothing': 1.0, 'soft': 1.0}
Word element => {'recommended': 1.0, 'highly': 1.0, 'in': 1.0, 'so': 1.0, 'off': 1.0, 'bibs': 1.0, 'his': 1.0, 'rip': 1.0, 'would': 1.0, 'to': 1.0, 'had': 1.0, 'wish': 1.0, 'not': 1.0, 'just': 1.0, 'being': 1.0, 'while': 1.0, 'bib': 1.0, 'looks': 1.0, 'is': 1.0, '10': 1.0, 'it': 1.0, 'he': 1.0, 'this': 2.0, 'have': 1.0, 'one': 2.0, 'love': 1.0, 'cute': 1.0, 'ordered': 1.0, 'absolutely': 1.0, 'month': 1.0, 'a': 1.0, 'old': 1.0, 'i': 1.0, 'backup': 1.0, 'plus': 1.0, 'always': 1.0, 'washed': 1.0, 'traditional': 1.0, '2': 1.0, 'the': 1.0, 'my': 1.0}
Word element => {'roll': 1.0, 'have': 1.0, 'up': 1.0, 'of': 1.0, 'length': 1.0, 'which': 1.0, 'compared': 1.0, 'month': 1.0, 'worried': 1.0, 'bit': 1.0, 'seems': 1.0, 'wash': 1.0, 'gets': 1.0, 'm': 1.0, 'old': 1.0, 'fasten': 1.0, 'i': 2.0, '15': 1.0, 'a': 1.0, 'well': 1.0, 'sleeves': 1.0, 'harder': 1.0, 'fits': 1.0, 'narrow': 1.0, 'easy': 1.0, 'still': 1.0, 'cute': 1.0, 'to': 4.0, 'that': 1.0, 'older': 1.0, 'velcro': 1.0, 'it': 2.0, 'back': 1.0, 'will': 1.0, 'become': 1.0, 'the': 4.0, 'my': 1.0, 'at': 1.0, 'as': 1.0}
Word element => {'about': 1.0, 'gift': 1.0, 'be': 2.0, 'catchings': 1.0, 'out': 1.0, 'would': 2.0, 'thefgood': 1.0, 'catch': 1.0, 'great': 1.0, 'big': 1.0, '1': 1.0, 'w': 1.0, 'purchasing': 1.0, 'made': 1.0, 'was': 1.0, 'sooner': 1.0, 'bottom': 1.0, 'relatives': 1.0, 'pockets': 1.0, 'quickly': 1.0, 'dries': 1.0, 'hang': 1.0, 'will': 1.0, 'mins': 1.0, 'go': 1.0, 'a': 2.0, 'dry': 2.0, 'knew': 1.0, 'roll': 1.0, 'up': 2.0, 'long': 1.0, 'grow': 1.0, 'to': 5.0, 'machine': 1.0, 'purchased': 1.0, 'wish': 2.0, 'this': 3.0, 'it': 6.0, 'keep': 1.0, 'at': 2.0, '5t': 1.0, 'bib': 4.0, 'ever': 1.0, 'sleeves': 1.0, 'yo': 1.0, 'room': 1.0, 'cleans': 1.0, 'the': 9.0, 'are': 1.0, 'then': 1.0, 'real': 1.0, 'my': 1.0, 'few': 1.0, 'just': 1.0, 'washing': 1.0, '2': 2.0, 'but': 1.0, 'can': 1.0, 'i': 5.0, 'for': 3.0, 'wipe': 1.0, 'them': 1.0, 'clean': 2.0, 'easy': 2.0, 'make': 1.0, '3': 1.0, 'on': 2.0, 'and': 1.0, 'house': 1.0, 'off': 3.0, 'worth': 1.0, 'or': 1.0, 'more': 1.0, 'is': 3.0, 'holds': 1.0, 'you': 1.0, 'rinse': 1.0, '10': 1.0, 'if': 1.0, 'throw': 1.0, 'in': 2.0, 'washer': 1.0, 'pocket': 1.0, 'greatest': 1.0, 'dirty': 1.0, 'easier': 1.0, 'has': 1.0, 'well': 2.0}
Word element => {'durable': 1.0, 'very': 1.0, 'made': 1.0, 'however': 1.0, 'lacking': 1.0, 'what': 1.0, 'they': 1.0, 'inconsistent': 1.0, 'the': 4.0, 'already': 1.0, 'such': 1.0, 's': 1.0, 't': 1.0, 'lavender': 1.0, 'be': 1.0, 'bow': 2.0, '4': 1.0, 'bundles': 2.0, 'how': 1.0, 'while': 1.0, 'blues': 1.0, 'most': 1.0, 'then': 1.0, 'came': 1.0, 'it': 2.0, 'month': 1.0, 'package': 1.0, 'head': 1.0, 'due': 1.0, 'individuals': 1.0, 'burgundy': 1.0, 'too': 1.0, 'and': 3.0, 'get': 1.0, 'all': 1.0, 'as': 3.0, 'to': 3.0, 'different': 1.0, 'quickly': 1.0, 'olds': 1.0, 'colors': 1.0, 'soft': 1.0, 'wrapped': 1.0, 'large': 1.0, '3': 1.0, 'with': 1.0, 'elastic': 4.0, 'isn': 1.0, 'other': 2.0, 'simply': 1.0, 'so': 2.0, 'are': 2.0, 'measurements': 1.0, 'still': 1.0, 'stars': 1.0, 'bows': 2.0, 'for': 1.0, 'tight': 1.0, 'my': 1.0, 'comes': 1.0, 'is': 2.0}
Word element => {'and': 1.0, 'rich': 1.0, 'super': 1.0, 'all': 1.0, 'soon': 1.0, 'them': 1.0, 'to': 1.0, 'still': 1.0, 'color': 1.0, 'grow': 1.0, 'girl': 1.0, 'in': 1.0, 'for': 1.0, 'match': 1.0, 'a': 4.0, 'bow': 1.0, 'the': 2.0, 'vibrant': 1.0, 'headbands': 1.0, 'are': 2.0, 'll': 1.0, 'everything': 1.0, 'is': 1.0, 'there': 1.0, 'bit': 1.0, 'large': 1.0, 'colors': 1.0, 'baby': 1.0, 'she': 1.0, 'but': 1.0, 'i': 1.0, 'into': 1.0, 'think': 1.0}
Word element => {'contact': 1.0, 'll': 1.0, 'if': 1.0, 'about': 1.0, 'see': 1.0, 'haven': 1.0, 'hurry': 1.0, 'in': 1.0, 'on': 1.0, 'i': 3.0, 'pokey': 1.0, 'overall': 1.0, 'connected': 1.0, 'were': 2.0, 'bad': 1.0, 'have': 3.0, 'side': 1.0, 'back': 1.0, 'check': 1.0, 'this': 1.0, 'thin': 1.0, 'spot': 2.0, 'nice': 2.0, 'which': 1.0, 'need': 1.0, 'some': 1.0, 'these': 1.0, 'the': 7.0, 'since': 1.0, 'very': 3.0, 'and': 2.0, 'five': 1.0, 'do': 1.0, 'only': 1.0, 'granddaughter': 1.0, 'what': 1.0, 'had': 2.0, 'so': 1.0, 'time': 1.0, 'hot': 1.0, 'has': 1.0, 'is': 4.0, 'are': 1.0, 'company': 1.0, 'my': 1.0, 'months': 1.0, 'old': 1.0, 'wears': 1.0, 'chance': 2.0, 'yet': 1.0, 'love': 1.0, 'where': 1.0, 'for': 1.0, 'bows': 3.0, 'to': 4.0, 'all': 2.0, 'weather': 1.0, 't': 1.0, 'a': 5.0, 'we': 3.0, 've': 1.0, 'because': 1.0, 'having': 1.0, 'it': 1.0, 'she': 2.0, 'not': 1.0, 'wear': 1.0, 'of': 4.0, 'them': 3.0, 'can': 1.0, 'but': 2.0, 'will': 1.0, 'problem': 1.0, 'been': 1.0, 'that': 1.0, 'headband': 1.0, 'you': 1.0, 'they': 1.0, 'double': 1.0}
Word element => {'a': 1.0, 'leave': 1.0, 'uncomfortable': 1.0, 'will': 1.0, 'of': 1.0, 'vibrant': 1.0, 'some': 1.0, 'no': 1.0, 'quickly': 1.0, 'how': 1.0, 'if': 1.0, 'mark': 1.0, 'bow': 1.0, 'horrible': 1.0, 'and': 3.0, 'the': 2.0, 'love': 1.0, 'terribly': 1.0, 'it': 1.0, 'were': 1.0, 'hair': 1.0, 'i': 1.0, 'has': 1.0, 'your': 1.0, 'arrived': 1.0, 'made': 1.0, 'them': 1.0, 'be': 1.0, 'poorly': 1.0, 'colors': 1.0, 'baby': 1.0}
Word element => {'away': 1.0, 'head': 1.0, 'baby': 1.0, 'around': 1.0, 'leave': 1.0, 'it': 1.0, 'the': 2.0, 'given': 1.0, 'that': 1.0, 'like': 1.0, 'was': 1.0, 'bow': 1.0, 'cute': 1.0, 't': 1.0, 'mark': 1.0, 'but': 1.0, 'i': 2.0, 'them': 1.0, 'a': 1.0, 'thin': 1.0, 'don': 1.0}
Word element => {'2': 1.0, 'bad': 1.0, 'look': 1.0, 't': 1.0, 'loved': 1.0, 'the': 2.0, 'assorted': 1.0, 'without': 1.0, 'it': 1.0, 'colors': 1.0, 'few': 1.0, '1': 1.0, 'of': 1.0, 'petals': 2.0, 'came': 1.0, 'out': 1.0, 'didn': 1.0, 'but': 1.0}
Word element => {'the': 1.0, 'kindergarten': 1.0, 'my': 1.0, 'is': 1.0, 'a': 1.0, 'keeps': 1.0, 'really': 2.0, 'food': 1.0, 'sons': 1.0, 'nice': 1.0, 'and': 1.0, 'it': 3.0, 'great': 1.0, 'fresh': 1.0, 'lunch': 1.0, 'fits': 1.0, 'bag': 2.0, 'in': 1.0}
Word element => {'bag': 1.0, 'book': 1.0, 'his': 1.0, 'plus': 1.0, 'happy': 1.0, 'price': 1.0, 'was': 1.0, 'a': 1.0, 'and': 1.0, 'my': 1.0, 'went': 1.0, 'it': 4.0, 'great': 1.0, 'works': 1.0, 'well': 2.0, 'with': 2.0, 'is': 1.0, 'son': 1.0}
Word element => {'playing': 1.0, 'enjoys': 1.0, 'all': 1.0, 'to': 1.0, 'would': 1.0, 'lance': 1.0, 'i': 1.0, 'my': 3.0, 'the': 3.0, 'as': 1.0, 'son': 3.0, 'pillow': 4.0, 'is': 1.0, 'for': 1.0, 'watches': 2.0, 'fun': 1.0, 'a': 1.0, 'along': 1.0, 'moms': 1.0, 'recommend': 1.0, 'show': 2.0, 'with': 2.0, 'this': 2.0, 'he': 2.0, 'always': 1.0, 'when': 1.0, 'gets': 1.0, 'his': 2.0, 'and': 1.0, 'dances': 1.0, 'favorite': 1.0, 'dj': 1.0}
Word element => {'that': 1.0, 'like': 1.0, 'anything': 1.0, 'or': 1.0, 'value': 1.0, 'educational': 1.0, 'just': 1.0, 'mean': 1.0, 'there': 1.0, 'of': 1.0, 'figured': 1.0, 'little': 1.0, 'she': 3.0, 'show': 1.0, '18': 1.0, 'would': 1.0, 'its': 1.0, 'was': 2.0, 'no': 1.0, 'at': 1.0, 'is': 2.0, 'pillow': 2.0, 'in': 1.0, 'love': 2.0, 'months': 1.0, 's': 1.0, 'niece': 1.0, 'fearful': 1.0, 'i': 3.0, 'my': 1.0, 'so': 1.0, 'right': 1.0, 'it': 1.0, 'this': 2.0, 'with': 1.0, 'first': 1.0, 'but': 1.0, 'a': 2.0}
Word element => {'yoooooo': 1.0, 'in': 1.0, 'extra': 1.0, 'worth': 1.0, 'mind': 1.0, 'nevertheless': 1.0, 'less': 1.0, '3': 2.0, 'is': 1.0, 'walgreens': 1.0, 'them': 1.0, 'saw': 1.0, 'then': 1.0, 'week': 1.0, 'about': 1.0, 'i': 3.0, 'niece': 1.0, 'all': 1.0, 'my': 2.0, 'know': 1.0, 'and': 1.0, 'at': 1.0, 'nephew': 1.0, 'of': 1.0, 'yo': 1.0, 'son': 1.0, 'for': 2.0, 'love': 1.0, 'product': 1.0, 'bought': 1.0, 'well': 1.0, 'a': 2.0, 'cousins': 1.0, 'few': 1.0, 'dollars': 2.0, 'the': 3.0, 'gabba': 4.0, 'these': 1.0, 'was': 1.0, 'children': 1.0, 'excited': 1.0}
Word element => {'song': 1.0, 'theme': 1.0, 'adores': 1.0, 'around': 1.0, 'who': 1.0, 'old': 1.0, 'to': 2.0, 'is': 1.0, '1yr': 1.0, 'for': 1.0, 'nephew': 1.0, 'brobee': 2.0, 'bought': 1.0, 'likes': 1.0, 'he': 1.0, 'this': 1.0, 'my': 1.0, 'dance': 1.0, 'yo': 1.0, 'the': 1.0, 'gabba': 2.0, 'his': 1.0, 'about': 1.0, 'height': 1.0, 'so': 1.0}
Word element => {'around': 1.0, 'tossing': 1.0, 'kick': 1.0, 'gets': 1.0, 'my': 1.0, 'on': 1.0, 'jumping': 1.0, 'is': 1.0, 'a': 2.0, 'it': 2.0, 'great': 1.0, 'gabba': 2.0, 'yo': 1.0, 'toy': 1.0, 'and': 1.0, 'any': 1.0, 'for': 1.0, 'kid': 2.0, 'who': 1.0, 'this': 1.0, 'loves': 1.0}
Word element => {'recommended': 1.0, 'fully': 1.0, 'yo': 1.0, 'son': 1.0, 'fan': 1.0, 'is': 2.0, 'my': 1.0, 'gabba': 2.0, 'the': 2.0, 'plush': 1.0, 'its': 2.0, 'amazing': 1.0, 'a': 1.0, 'an': 1.0, 'and': 1.0, 'got': 1.0, 'so': 1.0, 'way': 1.0, 'this': 1.0, 'excited': 1.0, 'exactly': 1.0, 'him': 1.0, 'pictures': 1.0, 'shown': 1.0, 'in': 1.0}
Word element => {'soft': 1.0, 'quality': 1.0, 'pretty': 2.0, 'seems': 1.0, 'decent': 1.0, 'bought': 1.0, 'my': 1.0, 'two': 1.0, 'niece': 1.0, 'for': 1.0, 'year': 1.0, 'be': 1.0, 'to': 1.0, 'old': 1.0, 'this': 1.0, 'loves': 1.0, 'she': 1.0, 'it': 1.0, 'absolutely': 1.0}
Word element => {'sitting': 1.0, 'crawling': 1.0, 'walking': 1.0, 'bumper': 1.0, 'use': 1.0, 'likes': 1.0, 'he': 2.0, 'because': 1.0, 'enjoys': 1.0, 'pillow': 1.0, 'be': 1.0, 'in': 2.0, 'body': 1.0, 'cannot': 1.0, 'of': 3.0, 'so': 1.0, 'wabbles': 1.0, 'wearing': 1.0, 'gabba': 2.0, 'yo': 1.0, 'throws': 1.0, 'it': 5.0, 'only': 1.0, 'with': 1.0, 'cute': 1.0, 'ends': 1.0, 'point': 1.0, 'are': 2.0, 'made': 2.0, 'the': 8.0, 'sewn': 1.0, 'everything': 1.0, 'same': 2.0, 'arms': 1.0, 'fabric': 1.0, 'have': 1.0, 'material': 1.0, 'really': 1.0, 'is': 1.0, 'some': 1.0, 'fashion': 1.0, 'up': 1.0, 'cheaper': 1.0, 'those': 1.0, 'problem': 1.0, 'i': 2.0, 'whole': 1.0, 'and': 1.0, 'line': 1.0, 'case': 1.0, 'that': 1.0, 'into': 1.0, 'legs': 1.0, 'as': 1.0, 'to': 1.0, 'where': 1.0, 'they': 1.0, 'a': 2.0, 's': 2.0, 'separated': 1.0, 'my': 1.0, 'son': 1.0}
Word element => {'too': 1.0, 'have': 1.0, 'you': 1.0, 'landen': 1.0, 'grandson': 1.0, 'never': 1.0, 'henry': 1.0, 'friend': 1.0, 'named': 1.0, 'call': 1.0, 'we': 1.0, 'ours': 2.0, 'new': 1.0, 'cool': 2.0, 'bought': 1.0, 'many': 1.0, 'is': 1.0, 'harry': 3.0, 'hoofs': 3.0, 'after': 1.0, 'a': 2.0, 'our': 1.0, 'that': 1.0, 'to': 1.0, 'can': 1.0, 'horse': 1.0, 'kid': 1.0, 'belongs': 1.0, 'for': 1.0, 'of': 3.0, '2': 1.0, 'the': 1.0, 'these': 1.0}
Word element => {'again': 1.0, 'using': 1.0, 'naps': 1.0, 'play': 1.0, 'as': 1.0, 'our': 1.0, 'item': 1.0, 'not': 1.0, 'raincoats': 1.0, 'food': 1.0, '18month': 1.0, 'now': 1.0, 'worth': 2.0, 'days': 2.0, 'blanket': 1.0, '5': 2.0, 'oversized': 1.0, 'bed': 1.0, 'will': 1.0, 'travel': 1.0, 'diapers': 1.0, 'plus': 1.0, '1': 3.0, 'sturdy': 1.0, 'brake': 1.0, 'might': 1.0, 'able': 1.0, 'push': 1.0, 'had': 1.0, '3': 2.0, 'up': 1.0, 'took': 1.0, 'stuffed': 1.0, 'zipped': 1.0, 'carpeted': 1.0, 'top': 1.0, 'star': 1.0, 'pay': 1.0, 'sleep': 1.0, 'pretty': 1.0, 'length': 1.0, 'to': 15.0, 'grow': 1.0, 'good': 1.0, 'pouches': 1.0, 'padding': 1.0, 'although': 2.0, 'is': 4.0, 'say': 1.0, 'size': 4.0, '16': 1.0, 'floor': 1.0, 'do': 1.0, 'trip': 1.0, 'and': 6.0, 'squished': 1.0, 'enough': 1.0, 'purchase': 1.0, 'my': 7.0, 'trick': 1.0, 'mine': 1.0, 'decided': 1.0, 'her': 1.0, 'anyway': 1.0, 'we': 1.0, 'take': 1.0, 'reviews': 1.0, 'seemed': 2.0, 'bc': 2.0, 'on': 3.0, '4': 2.0, 'i': 11.0, 'an': 1.0, 'all': 3.0, 'other': 1.0, 'suitcase': 4.0, 'a': 6.0, 's': 1.0, 'thought': 1.0, 'it': 14.0, 'price': 1.0, 'years': 1.0, 'n': 1.0, 'd': 1.0, 'taste': 1.0, 'the': 11.0, 'of': 7.0, 'reading': 1.0, '17': 1.0, 'little': 1.0, 'daughter': 3.0, 'month': 1.0, 'gave': 1.0, 'burp': 1.0, 'pricey': 1.0, 'such': 1.0, 'for': 5.0, 'likes': 1.0, 't': 1.0, 'fit': 4.0, 'after': 1.0, 'with': 4.0, 'larger': 1.0, 'course': 1.0, 'want': 1.0, 'shut': 1.0, 'work': 1.0, 'but': 2.0, 'this': 1.0, 'few': 1.0, 'wipes': 1.0, 'large': 1.0, 'placed': 1.0, 'just': 1.0, 'husband': 1.0, 'animal': 1.0, 'who': 1.0, 'peapod': 1.0, '2in': 1.0, '6ft': 1.0, 'that': 3.0, 'concerned': 1.0, 'old': 1.0, 'went': 1.0, 'inside': 2.0, 'next': 1.0, 'site': 1.0, 'tent': 2.0, 'can': 1.0, 'so': 1.0, 'see': 1.0, 'seems': 1.0, 'be': 4.0, 'clothes': 2.0, 'was': 4.0, 'ok': 1.0, 'wouldn': 1.0, 'picture': 1.0, 'pack': 2.0, 'giant': 1.0, 'one': 1.0, 'too': 1.0, 'rating': 1.0, 'happy': 2.0, 'did': 1.0, 'in': 5.0, 'shown': 1.0, 'have': 3.0, 'must': 1.0, 'quality': 1.0, 'their': 1.0, 'normal': 1.0}
Word element => {'back': 1.0, 'fold': 1.0, 'bit': 1.0, 'size': 1.0, 'looking': 1.0, 'the': 2.0, 'great': 1.0, 'at': 1.0, 'protection': 1.0, 'pool': 1.0, 'and': 3.0, 'sun': 2.0, 'or': 2.0, 'i': 2.0, 'some': 1.0, 'bug': 1.0, 'perfect': 1.0, 'this': 1.0, 'cushion': 1.0, 'was': 1.0, 'purchased': 1.0, 'had': 1.0, 'for': 2.0, 'floor': 1.0, 'a': 3.0, 'that': 1.0, 'beach': 1.0, 'tent': 2.0, 'not': 1.0, 'baby': 1.0, 'using': 1.0, 'sleeping': 1.0, 'to': 1.0, 'our': 1.0, 'outside': 1.0, 'as': 1.0, 'while': 1.0, 'traveling': 1.0, 'of': 1.0, 'camping': 1.0, 'by': 1.0, 'in': 4.0, 'itself': 1.0, 'seconds': 1.0, 'shade': 1.0, 'work': 1.0, 'but': 1.0, 'park': 1.0, 'pops': 1.0, 'up': 2.0, 'because': 1.0, 'does': 1.0, 'take': 1.0}
Word element => {'happy': 1.0, 'at': 1.0, 'problem': 1.0, 'was': 1.0, 'town': 1.0, '11': 1.0, 'son': 1.0, 'for': 5.0, 'bed': 1.0, 'in': 3.0, '10': 1.0, 'vacation': 1.0, 'slept': 1.0, 'comfortable': 1.0, 'great': 1.0, '2': 1.0, 'the': 2.0, 'very': 1.0, 'little': 1.0, 'crib': 1.0, 'break': 1.0, 'and': 3.0, 'couple': 1.0, 'old': 1.0, 'i': 1.0, 'no': 1.0, 'thing': 1.0, 'whole': 1.0, 'our': 2.0, 'all': 2.0, 'to': 4.0, 'travel': 1.0, 'up': 1.0, 'naps': 2.0, 'days': 3.0, 'down': 1.0, 'before': 2.0, 'used': 1.0, 'his': 1.0, 'it': 5.0, 'month': 1.0, 'nights': 1.0, 'got': 1.0, 'while': 1.0, 'put': 2.0, 'on': 1.0, 'we': 2.0, 'leaving': 1.0, 'trip': 1.0, 'so': 1.0, 'him': 2.0, 'bedtime': 1.0, 'get': 2.0, 'easy': 1.0, 'left': 1.0}
Word element => {'5': 1.0, '1': 1.0, 'box': 1.0, 'younger': 1.0, 'one': 1.0, 'happy': 1.0, 'material': 1.0, 'softer': 1.0, 'says': 1.0, 'something': 1.0, 'want': 1.0, 'being': 1.0, 'however': 1.0, 'purposes': 1.0, 'recall': 1.0, 'im': 1.0, 'why': 1.0, 'sheet': 1.0, 'rather': 1.0, 'overall': 1.0, 'thin': 1.0, 'affixed': 1.0, 'containable': 1.0, 'sleep': 1.0, 'making': 1.0, 'out': 1.0, 'child': 3.0, 'allowing': 1.0, 'inside': 2.0, 'zipper': 1.0, 'safety': 1.0, 'sure': 2.0, 'but': 2.0, 'play': 1.0, 'about': 1.0, 'not': 3.0, 'or': 1.0, 'use': 3.0, 'and': 8.0, 'issues': 1.0, 'travel': 1.0, 'will': 1.0, 'all': 1.0, 'crazy': 1.0, 'as': 3.0, 'to': 8.0, 'mattress': 1.0, 'dinner': 1.0, 'would': 5.0, 'breathability': 1.0, 'late': 1.0, 'if': 1.0, 'stay': 1.0, 'hard': 1.0, 'open': 1.0, 'over': 2.0, 'allowed': 1.0, 'houses': 1.0, 'has': 1.0, 'newer': 1.0, 'two': 2.0, 'well': 1.0, 'i': 4.0, 'newborn': 1.0, 'friends': 1.0, 'be': 4.0, 'age': 2.0, 'm': 1.0, 'in': 1.0, 'started': 1.0, 'undone': 1.0, 'my': 2.0, 'purchase': 1.0, 'us': 1.0, 'when': 2.0, 'things': 1.0, 'you': 1.0, 'for': 8.0, 'using': 1.0, 'they': 2.0, 'sleeping': 2.0, 'ventilation': 1.0, 'which': 3.0, 'apparently': 1.0, 'tent': 5.0, 'that': 2.0, 'even': 1.0, 'with': 3.0, 'our': 1.0, 'how': 1.0, 'highly': 1.0, 'this': 3.0, 'bed': 3.0, 'perfect': 1.0, 'it': 6.0, 'grew': 1.0, 'added': 1.0, 'a': 7.0, 's': 3.0, 'was': 2.0, 'recommend': 1.0, 'baby': 2.0, 'vents': 1.0, 'air': 1.0, 'now': 1.0, 'older': 2.0, 'did': 1.0, 'camping': 1.0, 'from': 1.0, 'feels': 1.0, 'no': 1.0, 'windows': 1.0, 'safe': 1.0, 'pack': 1.0, 'tentwith': 1.0, 'comfortable': 1.0, 'place': 1.0, 'of': 2.0, 'the': 6.0, 'europe': 1.0, 'his': 1.0, 'at': 2.0, 'is': 4.0, 'under': 1.0, 'same': 1.0, 'second': 2.0, 'number': 1.0, '2': 1.0, 'so': 1.0, 'can': 2.0, 'update': 1.0, 'on': 3.0, 'used': 1.0, 'decided': 1.0, 'get': 2.0, 'new': 2.0, 'model': 2.0, 'your': 1.0, 'flimsy': 1.0, 'surprised': 1.0, 'different': 1.0, 'put': 1.0, 'much': 1.0, 'larger': 1.0, 'there': 1.0, 'way': 2.0, 'than': 2.0, 'son': 1.0, 'first': 1.0, 'are': 3.0, 'he': 4.0, 'bottom': 2.0, 'cover': 1.0}
Word element => {'while': 1.0, 'use': 1.0, 'able': 1.0, 'be': 1.0, 'if': 1.0, 'rug': 1.0, 'pretty': 1.0, 'the': 1.0, 'than': 1.0, 'well': 1.0, 'easier': 1.0, 's': 2.0, 'a': 3.0, 'we': 1.0, 'n': 1.0, 'play': 1.0, 'and': 2.0, 'in': 1.0, 'for': 2.0, 'great': 1.0, 'comfortable': 1.0, 'you': 1.0, 'traditional': 1.0, 'traveling': 1.0, 'more': 1.0, 'is': 1.0, 'so': 2.0, 'pack': 2.0, 'much': 2.0, 'works': 1.0, 'long': 2.0, 'this': 1.0, 'soft': 1.0, 'lighter': 1.0, 'carpet': 1.0, 'or': 1.0, 'put': 1.0, 'on': 1.0, 'think': 1.0, 'then': 1.0, 'got': 1.0, 'to': 2.0, 'as': 1.0, 'my': 1.0, 'baby': 1.0, 'bigger': 1.0, 'it': 3.0, 'she': 1.0, 'size': 1.0, 'i': 1.0, 'll': 1.0}
Word element => {'safe': 1.0, 'big': 1.0, 'baby': 1.0, 'sure': 1.0, 'make': 1.0, 'just': 1.0, 'enough': 2.0, 't': 1.0, 'can': 1.0, 'kid': 1.0, 'third': 1.0, 'crawl': 1.0, 'buy': 1.0, 'life': 1.0, 'saver': 1.0, 'been': 1.0, 'not': 1.0, 'to': 6.0, 'our': 3.0, 'sleep': 3.0, 'jumping': 1.0, 'all': 1.0, 'next': 1.0, 'them': 4.0, 'clothes': 1.0, 'started': 1.0, 'never': 1.0, 'from': 2.0, 'second': 1.0, 'flights': 1.0, 'now': 1.0, 'drives': 1.0, 'thought': 1.0, 'for': 5.0, 'actually': 1.0, 'both': 2.0, 'in': 3.0, 'getting': 1.0, 'away': 1.0, 'and': 4.0, 'play': 2.0, 'duffle': 1.0, 'but': 1.0, 'tents': 2.0, 'years': 1.0, 'no': 1.0, 'beds': 2.0, 'hotels': 1.0, 'truly': 1.0, 'large': 1.0, 'have': 6.0, 'be': 1.0, 'rollover': 1.0, 'vacations': 1.0, 'room': 1.0, 'these': 3.0, 'packed': 1.0, 'are': 2.0, 'they': 2.0, 'who': 2.0, 'is': 1.0, 'at': 2.0, 'i': 2.0, 'etc': 2.0, 'kids': 2.0, 'extra': 1.0, 'a': 4.0, 'home': 2.0, 'am': 1.0, 'last': 1.0, 'transitioned': 1.0, 'fantastic': 1.0, 'when': 1.0, 'on': 2.0, 'long': 1.0, 'become': 1.0, 'used': 1.0, 'sometimes': 1.0, 'with': 1.0, 'new': 1.0, 'their': 1.0, 'pod': 1.0, 'spots': 1.0, 'out': 2.0, 'recommend': 1.0, 'were': 1.0, 'two': 2.0, 'little': 1.0, 'three': 1.0, 'into': 1.0, 'anywhere': 1.0, 'problem': 1.0, 'given': 1.0, 'we': 7.0, 'then': 1.0, 'take': 1.0, 'because': 1.0, 'everywhere': 1.0, 'the': 6.0, 'of': 2.0, 'camping': 1.0, 'larger': 1.0, 'tent': 1.0, 'her': 1.0, 'use': 1.0, 'too': 1.0, 'one': 1.0, 'my': 1.0, 'old': 1.0, 'needs': 1.0, 'nap': 1.0, 'still': 1.0, 'if': 1.0, 'using': 1.0, 'chance': 1.0, 'pea': 1.0, 'will': 1.0, 'trouble': 1.0, 'get': 1.0, 'year': 2.0, 'toddler': 1.0, 'bed': 1.0}
Word element => {'hogging': 1.0, 'no': 1.0, 'trips': 1.0, 'taking': 1.0, 'been': 1.0, 'preschooler': 1.0, 'all': 2.0, 'have': 1.0, 'we': 1.0, 'fits': 1.0, 'still': 1.0, 'old': 1.0, 'year': 1.0, 'on': 1.0, '4': 1.0, 'small': 1.0, 'she': 1.0, 's': 2.0, 'us': 1.0, 'daughter': 2.0, 'light': 1.0, 'beg': 1.0, 'a': 2.0, 'overnight': 1.0, 'loved': 1.0, 'my': 2.0, 'in': 2.0, 'novel': 1.0, 'more': 1.0, 'great': 1.0, 'the': 2.0, 'bought': 1.0, 'enough': 1.0, 'our': 1.0, 'vacation': 1.0, 'collapsible': 1.0, 'and': 2.0, 'to': 2.0, 'not': 1.0, 'sleep': 1.0, 'for': 2.0, 'bed': 2.0, 'it': 4.0, 'this': 1.0, 'with': 1.0}
Word element => {'anyone': 1.0, 'this': 1.0, 'recommend': 1.0, 'definitely': 1.0, 'would': 1.0, 'just': 1.0, 'clean': 1.0, 'easy': 1.0, 'child': 2.0, 'with': 2.0, 'not': 1.0, 'down': 1.0, 'inside': 1.0, 'bottom': 1.0, 'out': 1.0, 'roll': 1.0, 'connected': 1.0, 'sun': 1.0, 'from': 1.0, 'protection': 1.0, 'uv': 1.0, 'ventilation': 1.0, 'sides': 2.0, 'mesh': 1.0, 'also': 2.0, 'in': 1.0, 'safe': 1.0, 'take': 1.0, 'or': 1.0, 'instant': 1.0, 'lightweight': 1.0, 'the': 8.0, 'heavy': 1.0, 'bulky': 1.0, 'is': 3.0, 'that': 2.0, 'traveling': 1.0, 'you': 3.0, 'tent': 3.0, 'beach': 1.0, 'i': 3.0, 'bed': 2.0, 'for': 3.0, 'love': 3.0, 'sleep': 1.0, 'to': 5.0, 'zip': 1.0, 'useful': 1.0, 'ready': 1.0, 'proved': 1.0, 'pops': 1.0, 'play': 1.0, 'and': 6.0, 'pad': 1.0, 'peapod': 1.0, 'won': 1.0, 'easier': 1.0, 'has': 2.0, 'on': 1.0, 'your': 2.0, 'portable': 2.0, 'it': 8.0, 'both': 1.0, 'absolutely': 1.0, 'time': 1.0, 'so': 3.0, 'does': 1.0, 'than': 1.0, 't': 1.0, 'we': 1.0, 'going': 1.0, 'a': 3.0, 'much': 1.0, 'pack': 1.0, 'have': 1.0, 'can': 2.0, 'bringing': 1.0, 'right': 1.0, 'nap': 1.0, 'carry': 1.0, 'at': 1.0, 'wipe': 1.0, 'interfere': 1.0, 'kidco': 1.0, 'baby': 3.0, 'same': 1.0, 'open': 1.0, 'pool': 1.0, 'an': 1.0}
Word element => {'but': 1.0, 'traveling': 1.0, 'kid': 1.0, 'your': 1.0, 'playground': 1.0, 'bed': 1.0, 'travel': 1.0, 'as': 2.0, 'd': 1.0, 'h': 1.0, '6m': 1.0, '0': 2.0, 'l': 1.0, '3m': 1.0, 'measures': 1.0, 'use': 1.0, 'ready': 1.0, 'lb': 1.0, '3': 1.0, 'carry': 2.0, 'you': 3.0, 'bit': 1.0, 'boy': 1.0, 'my': 1.0, 'color': 1.0, '1': 2.0, 'anchor': 1.0, 'great': 3.0, 'big': 1.0, 'in': 3.0, 'air': 1.0, 'sleep': 2.0, 'x': 2.0, 'least': 1.0, 'around': 1.0, 'his': 1.0, 'got': 1.0, 'even': 2.0, 'while': 2.0, 'matter': 1.0, 'are': 1.0, 'boys': 1.0, 'present': 1.0, 'child': 2.0, 'packaged': 1.0, 'home': 1.0, 'a': 10.0, 's': 3.0, 'accommodation': 1.0, '2': 1.0, 'lightweight': 2.0, 'can': 4.0, 'at': 1.0, 'is': 5.0, 'more': 1.0, 'comes': 1.0, 'assembled': 1.0, 'aged': 1.0, 'from': 1.0, 'insect': 1.0, 'for': 6.0, 'opinion': 1.0, 'peapod': 1.0, 'pad': 1.0, 'although': 1.0, 'tent': 2.0, 'screens': 1.0, 'kidco': 1.0, 'away': 1.0, 'attached': 1.0, 'recommended': 1.0, 'and': 4.0, 'green': 1.0, 'i': 1.0, '4': 1.0, 'nice': 1.0, 'little': 1.0, 'two': 1.0, 'keep': 1.0, 'makes': 1.0, 'was': 1.0, 'he': 2.0, 'lite': 1.0, 'easily': 1.0, 'that': 5.0, 'thrilled': 1.0, 'large': 1.0, 'the': 4.0, 'of': 1.0, 'when': 1.0, 'taste': 1.0, 'to': 7.0, 'pretty': 1.0, 'suitable': 1.0, 'or': 1.0, '5': 3.0, 'inside': 1.0, 'fully': 2.0, 'with': 1.0, 'micro': 1.0, 'sleeping': 1.0, 'it': 11.0, 'already': 1.0, 'floor': 1.0, 'also': 2.0, 'bought': 1.0, 'adjusted': 1.0, 'has': 1.0, '8m': 1.0, 'zipper': 1.0, 'panels': 1.0, 'kg': 1.0, 'up': 1.0, 'mesh': 1.0, 'gift': 1.0, 'which': 1.0, 'good': 1.0, 'years': 1.0, 'circulation': 1.0, 'protection': 2.0, 'consider': 1.0, 'window': 1.0, 'be': 1.0, 'straps': 1.0, 'secured': 1.0, 'ground': 1.0, 'really': 1.0, 'uv': 1.0, 'bag': 1.0}
Word element => {'while': 1.0, 'than': 1.0, 'love': 3.0, 'daughter': 1.0, 'in': 1.0, 'my': 1.0, 'pea': 1.0, 'sleeps': 1.0, 'wonderfully': 1.0, 'pod': 1.0, 'play': 1.0, 'we': 1.0, 'travel': 1.0, 'and': 1.0, 's': 1.0, 'so': 1.0, 'much': 1.0, 'pack': 1.0, 'easier': 1.0, 'carrying': 1.0, 'a': 1.0, 'it': 2.0, 'this': 1.0, 'n': 1.0}
Word element => {'a': 1.0, 'out': 1.0, 'of': 1.0, 'hamster': 1.0, 'against': 1.0, 'son': 1.0, 'rolled': 1.0, 'my': 1.0, 'ball': 1.0, 'and': 2.0, 'need': 2.0, 'like': 2.0, 'all': 1.0, 'almost': 1.0, 'sleep': 1.0, 'you': 1.0, 'that': 1.0, 'side': 1.0, 'really': 1.0, 'bed': 2.0, 'i': 2.0, 'the': 5.0, 'to': 2.0, 'had': 1.0, 'on': 2.0, 'fell': 1.0, 'be': 1.0, 'product': 1.0, 'floor': 1.0, 'this': 1.0, 'children': 1.0, 'with': 1.0, 'it': 4.0, 'warned': 1.0, 'but': 1.0, 'placed': 1.0}
Word element => {'house': 1.0, 's': 1.0, 'grandma': 1.0, 'loves': 1.0, 'she': 1.0, 'little': 1.0, 'it': 1.0, 'this': 1.0, 'n': 1.0, 'love': 1.0, 'one': 1.0, 'for': 1.0, 'play': 1.0, 'we': 1.0, 'too': 1.0, 'so': 1.0, 'much': 1.0, 'pack': 1.0, 'to': 2.0, 'our': 1.0, 'tent': 1.0, 'easier': 1.0, 'than': 1.0, 'a': 1.0, 'haul': 1.0, 'over': 1.0}
Word element => {'give': 1.0, 'had': 1.0, 'negative': 1.0, 'nothing': 1.0, 'he': 2.0, 'it': 2.0, 'with': 1.0, 'convenient': 1.0, 'well': 2.0, 'portable': 1.0, 'my': 1.0, 'so': 2.0, 'house': 1.0, 'inside': 1.0, 'but': 1.0, 's': 1.0, 'plenty': 1.0, 'at': 2.0, 'perfect': 1.0, 'loves': 1.0, 'one': 1.0, 'stars': 1.0, 'for': 2.0, 'when': 1.0, 'and': 2.0, 'play': 1.0, 'during': 1.0, 'nap': 1.0, 'grandson': 1.0, 'toys': 1.0, 'very': 1.0, 'old': 1.0, 'i': 2.0, 'year': 1.0, 'his': 1.0, 'over': 1.0, 'playtime': 1.0, 'still': 1.0, 'bedtime': 1.0, 'there': 1.0, 'of': 1.0, 'say': 1.0, 'comes': 1.0, 'sleeps': 1.0, 'is': 1.0, '5': 1.0, 'room': 1.0, 'him': 1.0, 'grammie': 1.0, 'sleep': 1.0, 'to': 5.0, 'as': 1.0, 'grow': 1.0, 'have': 1.0}
Word element => {'solved': 1.0, 'completely': 1.0, 'folded': 1.0, 'blanket': 1.0, 'extra': 1.0, 'out': 2.0, 'thing': 1.0, 'have': 1.0, 'under': 1.0, 'month': 1.0, 'nights': 1.0, 'hopeful': 1.0, 'peapod': 2.0, 'off': 1.0, 'enough': 1.0, 'crib': 1.0, 'her': 4.0, 'but': 2.0, 'did': 1.0, 'in': 3.0, 'where': 1.0, 'fit': 1.0, 'normal': 1.0, 'reviewers': 1.0, 'to': 1.0, 'as': 1.0, 'was': 1.0, 'had': 1.0, 'it': 2.0, 'thought': 1.0, 'purchased': 1.0, 'were': 1.0, 'padding': 1.0, 'a': 4.0, 'my': 1.0, 'daughter': 1.0, 'sure': 1.0, 'she': 2.0, 'folds': 1.0, 'traveling': 1.0, 'short': 1.0, 'problem': 1.0, 'anywhere': 1.0, '4': 1.0, 'old': 1.0, 'point': 1.0, 'for': 3.0, 'claw': 1.0, 'hotel': 2.0, 'trip': 1.0, 'and': 8.0, 'about': 2.0, 'play': 1.0, 'try': 1.0, 'we': 1.0, 'then': 2.0, 'even': 1.0, 'took': 2.0, 'this': 1.0, 'with': 2.0, 'would': 1.0, 'never': 1.0, 'family': 1.0, 'staying': 1.0, 'bed': 1.0, 'time': 1.0, 'so': 1.0, 'routine': 1.0, '16': 1.0, 'much': 1.0, 'put': 1.0, '3': 1.0, 'on': 1.0, 'of': 2.0, 'the': 3.0, 'zipped': 1.0, 'up': 3.0, 'slept': 1.0, 'i': 4.0, 'fast': 1.0, 'fussing': 1.0, 'went': 1.0, 'down': 1.0, 'rinse': 1.0, 'road': 1.0, 'seconds': 1.0, 'repeat': 1.0, 'very': 1.0, 'nice': 1.0, 'pack': 1.0, 'better': 1.0, 'way': 1.0, 'than': 1.0, 'because': 1.0, 'n': 1.0, 'not': 1.0, 'right': 1.0, 'star': 1.0, 'other': 1.0, 'there': 1.0, 'really': 1.0, 'is': 1.0, 'carpet': 1.0, 'placed': 1.0, 'just': 1.0}
Word element => {'next': 1.0, 'well': 1.0, 'summer': 3.0, 'again': 1.0, 'comfortable': 1.0, 'and': 3.0, 'shoes': 1.0, 'four': 1.0, 'in': 1.0, 'year': 1.0, 'old': 1.0, 'this': 1.0, 'fit': 2.0, 'colorful': 1.0, 'loves': 1.0, 'granddaughter': 1.0, 'they': 2.0, 'my': 1.0, 'are': 1.0, 'them': 1.0, 'should': 1.0, 'her': 2.0, 'bright': 1.0}
Word element => {'while': 1.0, 'string': 1.0, 'to': 1.0, 'closure': 1.0, 'love': 1.0, 'my': 1.0, 'the': 3.0, 'claw': 1.0, 'paci': 2.0, 'clip': 1.0, 'haven': 1.0, 'and': 1.0, 'any': 1.0, 'daughter': 1.0, 'had': 1.0, 'problems': 1.0, 'play': 1.0, 'loves': 1.0, 'this': 1.0, 't': 1.0, 'on': 1.0, 'with': 2.0}
Word element => {'otherwise': 1.0, 'works': 1.0, 'is': 1.0, 'solution': 1.0, 'end': 1.0, 'on': 1.0, 'definitely': 1.0, 'through': 1.0, 'should': 1.0, 'they': 1.0, 'but': 1.0, 'tiny': 1.0, 'cute': 1.0, 'pretty': 1.0, 'clip': 1.0, 'it': 1.0, 'quick': 1.0, 'this': 1.0, 'saw': 1.0, 'loop': 1.0, 'sad': 1.0, 'received': 1.0, 'bit': 1.0, 'tie': 1.0, 'noticeable': 1.0, 'i': 3.0, 'was': 3.0, 'material': 1.0, 'cut': 1.0, 'paci': 1.0, 'and': 2.0, 'great': 1.0, 'the': 7.0, 'when': 2.0, 'tag': 3.0, 'attached': 1.0, 'right': 1.0, 'hole': 1.0, 'in': 1.0, 'a': 2.0, 'middle': 1.0, 'there': 2.0, 'of': 1.0, 'off': 1.0}
Word element => {'clothes': 1.0, 'clip': 1.0, 'hand': 1.0, 'cute': 1.0, 'to': 2.0, 'stays': 1.0, 'i': 1.0, 'is': 3.0, 'one': 2.0, 'love': 1.0, 'purchases': 1.0, 'this': 2.0, 'with': 1.0, 'it': 1.0, 'baby': 1.0, 'pacifier': 1.0, 'clipped': 1.0, 'easy': 1.0, 'use': 1.0, 'and': 1.0, 'too': 1.0, 'of': 1.0, 'favorite': 1.0, 'my': 1.0}
Word element => {'recommended': 1.0, 'time': 1.0, 'for': 3.0, 'boppy': 1.0, 'mommy': 1.0, 'gift': 2.0, 'new': 1.0, 'a': 2.0, 'every': 1.0, 'highly': 1.0, 'years': 1.0, 'baby': 2.0, 'give': 1.0, 'always': 1.0, 'i': 1.0, 'uses': 1.0, 'without': 1.0, 'it': 1.0, 'fail': 1.0, 'the': 1.0, 'favorite': 1.0, 'so': 1.0, 'is': 1.0, 'many': 1.0, 'and': 1.0}
Word element => {'color': 1.0, 'washing': 1.0, 'not': 1.0, 'actual': 1.0, 'is': 3.0, 'pattern': 1.0, 'clarify': 1.0, 'to': 1.0, '13': 1.0, 'on': 1.0, '12': 1.0, 'a': 1.0, 'of': 2.0, 'nursing': 1.0, 'slipcover': 1.0, 'construction': 1.0, 'stomach': 1.0, 'and': 2.0, 'couldn': 1.0, 'pillow': 5.0, 'boppy': 2.0, 'love': 1.0, 'for': 3.0, 't': 2.0, 'the': 9.0, 'so': 1.0, 'original': 1.0, 'owned': 1.0, 'compare': 1.0, 'never': 1.0, 'tag': 1.0, '05': 1.0, 'i': 5.0, 'removable': 2.0, 'price': 2.0, 'can': 2.0, 'works': 1.0, 'solid': 1.0, '40': 1.0, 'two': 1.0, 'half': 1.0, 'say': 1.0, 'that': 1.0, 'this': 2.0, 'excellently': 1.0}
Word element => {'others': 1.0, 'happy': 1.0, 'i': 1.0, 'leo': 1.0, 'is': 1.0, 'one': 1.0, 'her': 1.0, 'you': 1.0, 'way': 1.0, 'well': 4.0, 'go': 1.0, 'going': 1.0, 's': 2.0, 'a': 3.0, 'works': 1.0, 'part': 1.0, 'be': 1.0, 'lion': 1.0, 'it': 4.0, 'with': 4.0, 'just': 1.0, 'sister': 1.0, 'because': 1.0, 'this': 3.0, 'perfect': 2.0, 'also': 1.0, 'are': 1.0, 'my': 1.0, 'boyfriend': 1.0, 'price': 1.0, 'absolutely': 1.0, 'best': 1.0, 'and': 4.0, 'me': 1.0, 'over': 1.0, 'boppy': 2.0, 'product': 1.0, 'for': 2.0, 'reasonable': 1.0, 'ordered': 1.0, 'priced': 1.0, 'obviously': 1.0, 'which': 1.0, 'recommend': 1.0, 'was': 4.0, 'animal': 1.0, 'stuffed': 1.0, 'got': 1.0, 'named': 1.0, 'cover': 1.0, 'came': 2.0, 'the': 5.0, 'pillow': 1.0, 'of': 1.0, 'order': 2.0, 'surprise': 1.0, 'very': 2.0, 'little': 3.0, 'that': 1.0, 'all': 2.0, 'as': 5.0, 'to': 3.0, 'our': 1.0, 'made': 1.0}
Word element => {'imagine': 1.0, 'nursing': 1.0, 'cant': 1.0, 'this': 2.0, 'to': 1.0, 'product': 1.0, 'not': 1.0, 'was': 2.0, 'happy': 1.0, 'a': 1.0, 'the': 1.0, 'pillow': 1.0, 'service': 1.0, 'with': 1.0, 'without': 1.0, 'great': 1.0, 'it': 1.0, 'use': 1.0, 'easy': 1.0}
Word element => {'reccommend': 1.0, 'would': 1.0, '5': 2.0, 'definitely': 2.0, 'head': 1.0, 'lifting': 1.0, 'help': 1.0, 'to': 1.0, 'are': 1.0, 'mouse': 1.0, 'quiet': 1.0, 'there': 1.0, 'in': 1.0, 'put': 1.0, 'even': 1.0, 'her': 4.0, 'how': 1.0, 'my': 1.0, 'the': 1.0, 'using': 1.0, 'tight': 1.0, 'for': 1.0, 'gift': 1.0, 'a': 2.0, 'loves': 2.0, 'got': 1.0, 'snug': 1.0, 'i': 1.0, 'baby': 2.0, 'she': 3.0, 'as': 2.0, 'tells': 1.0, 'and': 4.0, 'me': 1.0, 'all': 2.0, 'they': 1.0, 'time': 1.0, 'much': 1.0, 'with': 1.0, 'sister': 1.0, 'this': 1.0, 'it': 3.0, 's': 1.0, 'you': 1.0}
Word element => {'new': 1.0, 'to': 1.0, 'item': 1.0, 'washing': 1.0, 'any': 1.0, 'removable': 1.0, 'cover': 1.0, 'that': 1.0, 'and': 1.0, 'for': 2.0, 'purchased': 1.0, 'i': 2.0, 'niece': 1.0, 'mother': 1.0, 'the': 3.0, 'my': 1.0, 'support': 1.0, 'is': 3.0, 'pillow': 1.0, 'time': 1.0, 'gives': 1.0, 'best': 1.0, 'nursing': 2.0, 'first': 1.0, 'it': 2.0, 'this': 2.0, 'loves': 2.0, 'who': 1.0, 'a': 1.0, 'when': 1.0, 'mom': 1.0, 'recommend': 1.0, 'she': 1.0, 'her': 1.0}
Word element => {'will': 1.0, 'gift': 2.0, 'need': 1.0, 'purchase': 1.0, 'happy': 1.0, 'am': 1.0, 'covers': 1.0, 'should': 1.0, 'included': 1.0, 'also': 1.0, '2': 1.0, 'the': 3.0, 'a': 1.0, 'throughout': 1.0, 'and': 3.0, 'have': 2.0, 'nursing': 1.0, 'last': 1.0, 'several': 1.0, 'be': 1.0, 'bought': 1.0, 'that': 1.0, 'very': 1.0, 'as': 2.0, 'year': 1.0, 'best': 1.0, 'i': 4.0, 'to': 1.0, 'say': 1.0, 'has': 1.0, 'pillows': 1.0, 'been': 1.0, 'comfort': 1.0, 'far': 1.0, 'baby': 1.0, 'price': 1.0, 'shower': 1.0, 'with': 2.0, 'this': 3.0, 'it': 1.0}
Word element => {'receiving': 1.0, 'am': 1.0, 'how': 1.0, 'softer': 1.0, 'this': 1.0, 'perfect': 1.0, 'in': 2.0, 'and': 1.0, 'but': 1.0, 'with': 2.0, 'cute': 1.0, 'excited': 1.0, 'big': 1.0, 'really': 1.0, 'it': 5.0, 'looks': 1.0, 'is': 1.0, 'arrived': 1.0, 'washable': 1.0, 'pillow': 2.0, 'be': 1.0, 'days': 1.0, 's': 1.0, 'a': 4.0, 'to': 2.0, 'toy': 1.0, 'slipcover': 1.0, 'came': 1.0, 'than': 1.0, 'gift': 1.0, 'beating': 1.0, 'two': 1.0, 'i': 3.0, 'thought': 1.0, 'that': 2.0, 'would': 1.0, 'thus': 1.0, 'bag': 1.0, 'wait': 1.0, 'fact': 1.0, 'my': 1.0, 'was': 1.0, 'expectation': 1.0, 'even': 1.0, 'better': 1.0, 'the': 3.0, 'deal': 1.0, 'fit': 1.0, 'for': 1.0, 'cannot': 1.0, 'using': 1.0, 'free': 1.0, 'start': 1.0}
Word element => {'breast': 1.0, 'feeding': 1.0, 'ur': 1.0, 'when': 1.0, 'to': 1.0, 'a': 1.0, 'have': 1.0, 'this': 1.0, 'thing': 1.0, 'was': 2.0, 'are': 1.0, 'the': 1.0, 'boppy': 1.0, 'perfect': 1.0, 'abd': 1.0, 'worked': 1.0, 'pretty': 1.0, 'these': 1.0, 'it': 1.0, 'great': 2.0}
Word element => {'add': 1.0, 'may': 1.0, 'feels': 1.0, 'is': 1.0, 'looks': 1.0, 'but': 1.0, 'use': 2.0, 'yet': 1.0, 'animal': 1.0, 'to': 2.0, 'was': 1.0, 'stuffed': 1.0, 'cover': 1.0, 'came': 1.0, 'that': 1.0, 'slip': 1.0, 'a': 2.0, 'it': 4.0, 'with': 1.0, 'i': 4.0, 'expecting': 1.0, 'after': 1.0, 'so': 1.0, 'made': 1.0, 'great': 1.0, 'the': 3.0, 'more': 2.0, 'baby': 1.0, 'toy': 1.0, 'not': 1.0, 'just': 1.0, 'get': 1.0, 'and': 3.0, 'me': 1.0, 'born': 1.0, 'have': 1.0, 'all': 1.0, 'happy': 1.0}
Word element => {'bed': 1.0, 'sinks': 1.0, 'separates': 1.0, 'baby': 1.0, 'few': 1.0, 'she': 1.0, 'sleeps': 1.0, 'my': 1.0, 'the': 2.0, 'and': 1.0, 'on': 1.0, 'uses': 1.0, 'i': 1.0, 'when': 1.0, 'in': 1.0, 'a': 1.0, 'middle': 1.0, 'after': 1.0, 'it': 2.0, 'use': 1.0, 'to': 1.0, 'keep': 1.0, 'her': 1.0, 'from': 1.0, 'rolling': 1.0}
Word element => {'use': 1.0, 'frequent': 1.0, 'from': 1.0, 'expected': 1.0, 'loosing': 1.0, 'seems': 1.0, 'though': 1.0, 'issue': 1.0, 'how': 1.0, 'hold': 1.0, 'know': 1.0, 'its': 2.0, 'only': 2.0, 'would': 1.0, 've': 1.0, 'far': 1.0, 'easy': 1.0, 'is': 2.0, 'of': 3.0, 'fine': 1.0, 'just': 1.0, 'little': 1.0, 'wash': 1.0, 'up': 1.0, 'don': 1.0, 'boppy': 1.0, 'replacement': 1.0, 'package': 1.0, 'was': 2.0, 'so': 4.0, 'however': 2.0, 'blue': 1.0, 'really': 1.0, 'but': 1.0, 'advertised': 1.0, 'covers': 1.0, 'it': 4.0, 'ordered': 1.0, 'purchasing': 1.0, 'disappointed': 1.0, 'in': 1.0, 'apart': 1.0, 'bought': 1.0, 'pillow': 5.0, 'that': 1.0, 'case': 1.0, 'be': 2.0, 'cover': 1.0, 'for': 1.0, 'firmness': 1.0, 'middle': 1.0, 'son': 1.0, 'with': 1.0, 'pink': 1.0, 'when': 2.0, 'm': 1.0, 'suppose': 1.0, 'snug': 1.0, 'coming': 1.0, 'my': 4.0, 'job': 1.0, 'the': 11.0, 'a': 5.0, 't': 3.0, 'and': 2.0, 'got': 1.0, 'wouldn': 1.0, 'didn': 1.0, 'bother': 1.0, 'does': 1.0, 'because': 1.0, 'to': 4.0, 'all': 1.0, 'machine': 1.0, 'return': 1.0, 'way': 1.0, 'clean': 2.0, 'fabric': 2.0, 'trinidad': 1.0, 'although': 2.0, 'spot': 1.0, 'great': 1.0, 'nice': 1.0, 'this': 1.0, 'soft': 1.0, 'i': 10.0, 'seams': 1.0, 'are': 1.0}
Word element => {'reasonable': 1.0, 'price': 1.0, 'very': 1.0, 'means': 1.0, 'which': 1.0, 'other': 1.0, 'recommended': 1.0, 'items': 1.0, 'wash': 1.0, 'needs': 1.0, 'much': 1.0, 'absolutely': 1.0, 'removal': 1.0, 'i': 2.0, 'said': 1.0, 'deal': 1.0, 'and': 1.0, 'bought': 1.0, 'several': 1.0, 'friend': 1.0, 'a': 3.0, 'slipcover': 1.0, 'it': 4.0, 'this': 1.0, 'loved': 1.0, 'have': 1.0, 'lot': 1.0, 'moms': 1.0, 'she': 4.0, 'thought': 1.0, 'that': 1.0, 'for': 1.0, 'given': 1.0, 'was': 3.0, 'to': 3.0, 'great': 2.0, 'the': 2.0, 'how': 1.0}
Word element => {'out': 1.0, 'pic': 1.0, 'as': 1.0, 'makes': 1.0, 'strong': 1.0, 'not': 1.0, 'sides': 1.0, 'are': 1.0, 'the': 2.0, 'this': 1.0, 'item': 1.0, 'is': 1.0, 'be': 1.0, 'to': 1.0, 'still': 1.0, 'an': 1.0, 'cool': 1.0, 'i': 1.0, 'it': 2.0, 'use': 1.0, 'even': 1.0, 'though': 1.0}
Word element => {'years': 1.0, 'solid': 1.0, 'feels': 1.0, 'and': 1.0, 'quality': 1.0, 'good': 1.0, 'i': 1.0, 'think': 1.0, 'on': 1.0, 'enough': 2.0, 'get': 1.0, 'wouldn': 1.0, 'then': 1.0, 'see': 1.0, 'body': 1.0, 'in': 1.0, 've': 1.0, 'yr': 1.0, 'show': 1.0, 'ideally': 1.0, 'from': 1.0, 'year': 1.0, 'taken': 1.0, 'this': 1.0, 'with': 1.0, 'first': 1.0, 'withstand': 1.0, 'ones': 1.0, 'the': 7.0, 'little': 1.0, 'that': 3.0, 'their': 3.0, '1': 1.0, 'of': 3.0, 'frame': 2.0, 'actual': 1.0, 'our': 1.0, 'to': 6.0, 'monthly': 1.0, 'white': 1.0, 'openings': 1.0, 'more': 1.0, 'is': 2.0, 'neat': 1.0, 'birth': 1.0, 'use': 1.0, 'pics': 1.0, 'display': 2.0, 'detail': 1.0, 'same': 2.0, 'onesie': 1.0, 'just': 2.0, 'you': 1.0, 'growth': 2.0, 'fit': 1.0, 'over': 1.0, 'looks': 1.0, 'it': 3.0, 'precious': 1.0, 'but': 2.0, 'size': 1.0, 'regardless': 1.0, 'background': 1.0, 'right': 1.0, 'face': 2.0, 'about': 1.0, 'a': 1.0, 't': 1.0, 'we': 3.0, 's': 2.0, 'could': 1.0}
Word element => {'much': 1.0, 'these': 1.0, 'the': 1.0, 'of': 2.0, 'there': 1.0, 'types': 1.0, 'my': 2.0, 'has': 1.0, 'picture': 1.0, 'excellent': 1.0, 'what': 1.0, 'it': 1.0, 'this': 3.0, 'looked': 1.0, 'with': 1.0, 'bought': 1.0, 'skirts': 1.0, 'in': 1.0, 'made': 1.0, 'options': 1.0, 'a': 4.0, 'like': 1.0, 'using': 1.0, 'value': 1.0, 'daughter': 1.0, 'i': 2.0, 'and': 2.0, 'paid': 1.0, 'for': 2.0, 'actually': 1.0, 'are': 1.0, '50': 1.0, 'cowboy': 1.0, 'that': 1.0, 'was': 1.0, 'price': 1.0, 'lots': 1.0, 'still': 1.0, 'skirt': 2.0, 'wear': 1.0, 'wedding': 1.0, 'so': 1.0, 'to': 1.0, 'denim': 1.0, 'friend': 2.0, 'jacket': 1.0, 'boots': 1.0, 'thanks': 1.0}
Word element => {'premium': 1.0, 'order': 1.0, 'ok': 1.0, 's': 1.0, 'it': 1.0, 'one': 1.0, 'i': 2.0, 'price': 1.0, 'was': 1.0, 'for': 2.0, 'a': 2.0, 'little': 1.0, 'll': 1.0, 'the': 1.0, 'more': 1.0, 'next': 1.0, 'hoping': 1.0, 'fluff': 1.0, 'but': 1.0}
Word element => {'too': 1.0, 'enjoying': 1.0, 'i': 1.0, 'here': 1.0, 'get': 1.0, 'will': 1.0, 'he': 1.0, 'only': 1.0, 'and': 1.0, 'the': 1.0, 'start': 1.0, 'my': 1.0, 'can': 1.0, 'great': 2.0, 'it': 1.0, 'so': 1.0, 'looks': 1.0, 'in': 1.0, 'sons': 1.0, 'room': 2.0, 'now': 1.0, 'price': 1.0, 'if': 1.0}
Word element => {'too': 1.0, 'to': 1.0, 'colors': 1.0, 'stair': 1.0, 'walk': 1.0, 'and': 1.0, 'learning': 1.0, 'him': 1.0, 'works': 1.0, 'btw': 1.0, 'love': 1.0, 'is': 1.0, 'very': 1.0, 'son': 1.0, 'keeps': 1.0, 'thing': 1.0, 'it': 1.0, 'he': 1.0, 'this': 1.0, 'loves': 1.0, 'my': 1.0, 'stopper': 1.0, 'the': 2.0, 'safe': 1.0, 'well': 1.0}
Word element => {'fine': 1.0, 'worry': 1.0, 'so': 1.0, 'description': 1.0, 'say': 1.0, 'work': 1.0, 'doesn': 1.0, 'though': 1.0, 'even': 1.0, 'has': 1.0, 'brakes': 2.0, 'i': 1.0, 'in': 1.0, 'level': 1.0, 'also': 1.0, 'center': 1.0, 'and': 2.0, 'exactly': 1.0, 'product': 1.0, 'was': 2.0, 'its': 1.0, 'little': 1.0, 'my': 1.0, 't': 2.0, 'the': 5.0, 'concerned': 1.0, 'run': 1.0, 'as': 1.0, 'son': 1.0, 'for': 1.0, 'came': 1.0, 'something': 1.0, 'that': 1.0, 'don': 1.0, 'about': 2.0, 'price': 1.0, 'described': 1.0, 'too': 1.0, 'it': 4.0, 'he': 1.0, 'noises': 1.0, 'around': 1.0, 'stairs': 1.0, 'loves': 1.0, 'all': 1.0, 'decent': 1.0, 'ducks': 1.0}
Word element => {'gift': 1.0, 'that': 1.0, 'loved': 1.0, 'had': 1.0, 'frame': 1.0, 'both': 1.0, 'low': 1.0, 'would': 1.0, 'and': 1.0, 'as': 1.0, 'searched': 1.0, 'high': 1.0, 'i': 2.0, 'for': 1.0, 'parents': 2.0, 'perfect': 1.0, 'great': 1.0, 'this': 2.0, 'it': 1.0, 'first': 1.0, 'they': 1.0, 'time': 1.0, 'recommend': 1.0, 'a': 1.0}
Word element => {'side': 1.0, 'one': 1.0, 'from': 1.0, 'baby': 1.0, 'flat': 1.0, 'in': 2.0, 'crib': 1.0, 'though': 1.0, 'told': 1.0, 'use': 1.0, 'and': 1.0, 'me': 1.0, 'spot': 1.0, 'to': 2.0, 'still': 1.0, 'the': 3.0, 'keeps': 1.0, 'dr': 1.0, 'leaning': 1.0, 'pillow': 1.0, 'bought': 1.0, 'worse': 1.0, 'i': 2.0, 'm': 1.0, 'my': 2.0, 'happy': 1.0, 'car': 1.0, 'it': 3.0, 'her': 1.0, 'works': 1.0, 'well': 1.0, 'making': 1.0, 'not': 1.0, 'because': 1.0, 'seat': 1.0}
Word element => {'larger': 1.0, 'a': 1.0, 'fuller': 1.0, 'into': 1.0, 'make': 1.0, 'enough': 1.0, 'not': 1.0, 'leaves': 1.0, 'smaller': 1.0, 'so': 1.0, 'it': 4.0, 'way': 1.0, 'of': 1.0, 'and': 1.0, 'any': 1.0, 'doesn': 1.0, 'more': 1.0, 't': 1.0, 'size': 1.0, 'maybe': 1.0, 'other': 1.0, 'was': 1.0, 'look': 1.0, 'could': 1.0, 'full': 1.0, 'if': 1.0, 'guess': 1.0, 'buy': 1.0, 'i': 2.0, 'tree': 1.0, 'one': 1.0}
Word element => {'don': 1.0, 'straws': 2.0, 'using': 1.0, 'she': 1.0, 'converted': 1.0, 'get': 1.0, 'worked': 1.0, 'they': 2.0, 'nipples': 1.0, 'drawback': 1.0, 'of': 1.0, '15months': 1.0, 'wonders': 1.0, 'feel': 1.0, 'convert': 2.0, 'at': 1.0, 'sippy': 1.0, 'now': 1.0, 'to': 5.0, 'guess': 1.0, 'i': 1.0, 'old': 1.0, 'month': 1.0, 'were': 1.0, '12': 1.0, 'her': 2.0, 'closest': 1.0, 'out': 1.0, 'top': 1.0, 'struggling': 1.0, 'only': 1.0, 'it': 1.0, 'with': 1.0, 'really': 1.0, 'is': 3.0, 'we': 1.0, 'cups': 1.0, 'have': 1.0, 'silicon': 1.0, 't': 1.0, 'these': 1.0, 'the': 2.0, 'so': 2.0}
Word element => {'these': 1.0, 'from': 1.0, 'problem': 1.0, 'no': 1.0, 'has': 1.0, 'love': 1.0, 'i': 1.0, 'drinking': 1.0, 'on': 1.0, 'cups': 1.0, 'cute': 1.0, 'easy': 2.0, 'to': 2.0, 'very': 1.0, 'and': 3.0, 'clean': 1.0, 'baby': 2.0, 'pattern': 1.0, 'design': 1.0, 'for': 1.0, 'hold': 1.0, 'the': 3.0}
Word element => {'you': 1.0, 'that': 1.0, 'is': 1.0, 'start': 1.0, 'could': 1.0, 'i': 1.0, 'say': 1.0, 'negative': 1.0, 'out': 1.0, 'them': 1.0, 'at': 1.0, 'hold': 1.0, 'as': 1.0, 'son': 1.0, 're': 1.0, 'my': 1.0, 'started': 1.0, 'months': 1.0, '4': 1.0, 'replace': 1.0, 'the': 2.0, 'these': 1.0, 'they': 2.0, 'leak': 2.0, 'proof': 1.0, 'get': 1.0, 'and': 2.0, 'only': 1.0, 'spouts': 1.0, 'using': 1.0, 'love': 1.0, 'for': 1.0, 'worn': 1.0, 'periodically': 1.0, 'have': 1.0, 'babies': 1.0, 'to': 4.0, 'easy': 1.0, 'learn': 1.0}
Word element => {'orange': 1.0, 'a': 2.0, 'because': 1.0, 'think': 1.0, 'seriously': 1.0, 'blue': 1.0, 'but': 1.0, 'sell': 1.0, 'to': 2.0, 'find': 1.0, 'about': 1.0, 'us': 1.0, 'cups': 1.0, 'i': 3.0, 'more': 1.0, 'the': 1.0, 'these': 1.0, 'understand': 1.0, 'thing': 1.0, 've': 1.0, 'it': 1.0, 'only': 1.0, 'do': 1.0, 'and': 2.0, 'that': 1.0, 'they': 2.0, 'boy': 2.0, 'really': 1.0, 'stuff': 1.0, 'is': 2.0, 'on': 1.0, 's': 2.0, 'trying': 1.0, 'insisted': 1.0, 'calling': 1.0, 'them': 1.0, 'cup': 2.0, 'annoying': 1.0, 're': 1.0, 'girl': 1.0}
Word element => {'good': 1.0, 'very': 1.0, 'water': 1.0, 'of': 1.0, 'even': 1.0, 'won': 1.0, 'toy': 1.0, 't': 1.0, 'a': 1.0, 'like': 1.0, 'throws': 1.0, 'also': 1.0, 'up': 1.0, 'pick': 1.0, 'would': 1.0, 'for': 1.0, 'it': 5.0, 'he': 7.0, 'with': 2.0, 'full': 1.0, 'this': 1.0, 'while': 2.0, 'from': 3.0, 'drink': 2.0, 'play': 1.0, 'and': 4.0, 'old': 2.0, 'i': 3.0, 'introduced': 1.0, 'spill': 1.0, 'was': 2.0, 'now': 1.0, 'wishes': 1.0, 'these': 1.0, 'the': 3.0, 'my': 2.0, 'cup': 5.0, 'held': 1.0, 'baby': 1.0, 'when': 2.0, 'by': 2.0, 'able': 1.0, 'to': 2.0, 'cups': 1.0, 'all': 2.0, 'months': 2.0, 'on': 1.0, 'drinks': 1.0, '5': 1.0, 'yard': 1.0, 'laying': 1.0, 'him': 2.0, 'in': 2.0, 'at': 2.0, '7': 1.0, 'can': 1.0, 'lap': 1.0, 'himself': 2.0, 'down': 1.0, 'his': 2.0, 'playmat': 1.0, 'bottle': 1.0, 'so': 1.0, 'much': 1.0, 'loves': 1.0, 'that': 1.0, 'leave': 1.0, 'around': 2.0}
Word element => {'amazing': 1.0, 'bottle': 1.0, 'change': 1.0, 'thanks': 1.0, 'but': 1.0, '5oz': 1.0, 'oredered': 1.0, 'i': 2.0, 'on': 1.0, 'a': 1.0, 'well': 1.0, 'fave': 1.0, 'loves': 1.0, 'list': 1.0, 'cups': 2.0, 'daughter': 2.0, 'and': 2.0, 'as': 1.0, 'my': 3.0, 'nipple': 1.0, 'the': 4.0, 'are': 1.0, 'them': 1.0, 'print': 1.0, 'can': 1.0, 'animal': 1.0, 'one': 1.0, 'for': 2.0, 'love': 1.0, 'her': 1.0, '10oz': 1.0, 'its': 1.0, 'to': 4.0, 'hold': 1.0, 'got': 1.0, 'top': 1.0, 'admit': 1.0, 'nuk': 2.0, 'bottles': 1.0, 'easy': 1.0, 'learner': 3.0}
Word element => {'ve': 1.0, 'not': 1.0, 'i': 2.0, 'cup': 1.0, 'leak': 1.0, 'sippy': 1.0, 'drop': 1.0, 'amazing': 1.0, 'first': 1.0, 'that': 1.0, 'others': 1.0, 'encountered': 1.0, 'seriously': 1.0, 'a': 1.0, 'need': 1.0, 'and': 1.0, 'the': 1.0, 'more': 2.0, 'great': 1.0, 'does': 1.0, 'liquid': 1.0, 'holds': 1.0, 'grip': 1.0, 'than': 1.0}
Word element => {'cups': 1.0, 'these': 1.0, 'love': 1.0}
Word element => {'very': 1.0, 'am': 1.0, 'clean': 1.0, 'also': 1.0, 'are': 1.0, 'to': 2.0, 'satisfied': 1.0, 'easy': 2.0, 'use': 1.0, 'brands': 1.0, 'valve': 1.0, 'i': 1.0, 'stays': 1.0, 'on': 1.0, 'unlike': 1.0, 'other': 1.0, 'some': 1.0, 'these': 1.0}
Word element => {'leak': 1.0, 'not': 1.0, 'will': 1.0, 'place': 1.0, 'is': 1.0, 'i': 1.0, 'cups': 2.0, 'love': 1.0, 'the': 2.0, 'in': 1.0, 'valve': 1.0, 'lid': 1.0, 'these': 2.0, 'sippy': 1.0, 'as': 2.0, 'long': 1.0, 'inside': 1.0}
Word element => {'s': 1.0, 'sippy': 1.0, 'all': 1.0, 'away': 1.0, 'threw': 1.0, 'that': 1.0, 'with': 1.0, 'so': 1.0, 'am': 1.0, 'these': 1.0, 'they': 1.0, 'happy': 1.0, 'do': 1.0, 'the': 2.0, 'not': 1.0, 'ones': 1.0, 'of': 1.0, 'leak': 1.0, 'like': 1.0, 'awesome': 1.0, 'playtex': 2.0, 'i': 2.0}
Word element => {'rough': 1.0, 'baby': 1.0, 'a': 1.0, 'have': 1.0, 'that': 1.0, 'you': 2.0, 'if': 1.0, 'leak': 1.0, 'these': 2.0, 'need': 1.0, 'only': 1.0, 'sippy': 1.0, 'super': 1.0, 'cups': 2.0, 'is': 1.0, 'son': 1.0, 'make': 1.0, 'are': 1.0, 'the': 1.0, 'my': 1.0, 'break': 1.0, 'cannot': 1.0, 'or': 1.0}
Word element => {'one': 1.0, 'found': 1.0, 'sippy': 1.0, 'use': 1.0, 'to': 1.0, 'my': 1.0, 'had': 1.0, 'until': 1.0, 'son': 1.0, 'time': 1.0, 'this': 1.0, 'loves': 1.0, 'cups': 2.0, 'these': 1.0, 'we': 2.0, 'a': 1.0, 'hard': 1.0, 'him': 1.0, 'getting': 1.0}
Word element => {'is': 1.0, 'colored': 1.0, 'able': 1.0, 'brightly': 1.0, 'and': 1.0, 'are': 1.0, 'would': 1.0, 'they': 2.0, 'breastfed': 1.0, 'a': 1.0, 'wasn': 1.0, 'better': 1.0, 'if': 1.0, 'proof': 1.0, 'sturdy': 1.0, 'use': 2.0, 'my': 1.0, 'will': 1.0, 'work': 1.0, 'seal': 2.0, 'spill': 1.0, 'when': 1.0, 'too': 1.0, 'be': 1.0, 'suck': 1.0, 'anything': 1.0, 'the': 2.0, 't': 3.0, 'these': 1.0, 'maybe': 1.0, 'can': 2.0, 'older': 1.0, 'with': 2.0, 'he': 4.0, 'them': 1.0, 'out': 2.0, 'baby': 1.0, 'perhaps': 1.0, 'kiddo': 1.0, 'removed': 1.0, 'much': 1.0, 'to': 1.0, 'comes': 1.0, 'once': 1.0, 'at': 1.0}
Word element => {'issue': 1.0, 'has': 1.0, 'else': 1.0, 'if': 1.0, 'my': 1.0, 'want': 1.0, 'child': 1.0, 'product': 2.0, 'considering': 1.0, 'low': 1.0, 'control': 1.0, 'quality': 1.0, 'permanently': 1.0, 'show': 1.0, 'would': 2.0, 've': 1.0, 'they': 3.0, 'likes': 1.0, 'smaller': 1.0, 'simply': 1.0, 'old': 1.0, 'month': 1.0, '18': 1.0, 'were': 1.0, 'throw': 1.0, 'expected': 1.0, 'box': 1.0, 'into': 1.0, 'item': 1.0, 'our': 2.0, 'all': 2.0, 'to': 6.0, 'experienced': 1.0, 'as': 1.0, 'real': 1.0, 'order': 1.0, 'ordered': 1.0, 'items': 2.0, 'online': 1.0, 'sippy': 5.0, 'up': 1.0, 'packaged': 1.0, 'a': 8.0, 'packages': 2.0, 'plethora': 1.0, 'but': 3.0, 'from': 1.0, 'success': 1.0, 'ordering': 1.0, 'children': 1.0, 'had': 1.0, 'm': 1.0, 'in': 2.0, 'single': 2.0, 'is': 5.0, 'amazon': 1.0, 'curious': 1.0, 'this': 7.0, 'for': 2.0, 'shockingly': 1.0, 'nope': 1.0, 'count': 2.0, 'sterilize': 1.0, 'two': 3.0, 'i': 3.0, 'head': 1.0, 'scratcher': 1.0, 'one': 1.0, 'ones': 1.0, 'of': 5.0, 'the': 10.0, 'baby': 2.0, 'deal': 1.0, 'cardboard': 1.0, 'these': 2.0, 'ok': 1.0, 'no': 1.0, 'big': 1.0, 'pack': 1.0, 'lids': 2.0, 'was': 2.0, 'with': 2.0, 'cups': 4.0, '4': 3.0, 'cup': 2.0, 'exposed': 1.0, 'we': 5.0, 'fine': 1.0, 'parts': 1.0, 'worse': 1.0, 'know': 2.0, 'anyone': 1.0, 'and': 5.0, 'before': 1.0, 'giving': 1.0, 'way': 1.0, 'returned': 1.0, 'make': 1.0, 'especially': 1.0, 'package': 1.0, 'each': 2.0, 'deformed': 1.0, 'both': 1.0, 'plastic': 5.0, 'bag': 4.0, 'that': 1.0, 'because': 2.0, 'result': 1.0, 'onto': 2.0, 'melted': 3.0, 'stuck': 3.0, 'lid': 1.0, 'melt': 1.0, 'even': 1.0, 'are': 3.0, 'have': 1.0, 'give': 1.0, 'there': 1.0}
Word element => {'issues': 1.0, 'no': 2.0, 'rack': 1.0, 'top': 1.0, 'using': 1.0, 'been': 1.0, 'overi': 1.0, 'left': 1.0, 'bit': 1.0, 'will': 1.0, 'there': 1.0, 'extra': 1.0, 'little': 1.0, 'liquid': 1.0, 'get': 1.0, 'over': 1.0, 'hard': 1.0, 'it': 1.0, 'mention': 1.0, 'did': 1.0, 'dropped': 1.0, 'be': 2.0, 'drain': 1.0, 'like': 1.0, 'add': 1.0, 'something': 1.0, 'come': 1.0, 'suction': 1.0, 'word': 1.0, 'new': 1.0, 'pluggy': 1.0, 'ways': 1.0, 'shake': 1.0, 'right': 2.0, 'pouring': 1.0, 'from': 1.0, 'contents': 3.0, 'keeps': 1.0, 'plug': 2.0, 'can': 1.0, 'so': 2.0, 'connect': 1.0, 'how': 2.0, '6': 1.0, 'but': 4.0, '2': 1.0, 'more': 1.0, 'these': 1.0, 'comes': 1.0, 'if': 2.0, 'broken': 1.0, 'held': 1.0, 'ones': 1.0, 'none': 1.0, 'have': 6.0, 'during': 1.0, 'portion': 1.0, 'leak': 4.0, 'laps': 1.0, 'threading': 1.0, 'were': 2.0, 'numerous': 1.0, 'in': 3.0, 'down': 3.0, 'find': 1.0, 'dishwasher': 1.0, 'around': 1.0, 'drops': 1.0, 'tear': 1.0, 'upside': 2.0, 'munchkins': 1.0, 'they': 8.0, 'out': 4.0, 'always': 1.0, 'has': 1.0, 'them': 4.0, 'up': 1.0, 'knowing': 1.0, 'water': 1.0, 'sippy': 1.0, 'started': 1.0, 'here': 2.0, 'hold': 1.0, 'puddle': 1.0, 'half': 1.0, 'twins': 1.0, 'when': 1.0, 'last': 1.0, 'am': 1.0, 'to': 5.0, 'cup': 1.0, 'cups': 4.0, 'far': 1.0, 'bottom': 2.0, 'love': 2.0, 'ness': 1.0, 'for': 3.0, 'expensive': 1.0, 'younger': 1.0, 'their': 3.0, 'problems': 1.0, 'easily': 1.0, 'that': 6.0, 'amount': 2.0, 'on': 1.0, 'remove': 1.0, 'soft': 2.0, 'kids': 1.0, 'allows': 1.0, 'with': 3.0, 'drop': 1.0, 'not': 1.0, 'year': 2.0, 'awesome': 1.0, 'old': 1.0, 'i': 9.0, 'are': 6.0, 'put': 2.0, 'extend': 1.0, 'floor': 2.0, 'a': 8.0, 't': 3.0, 'and': 13.0, 'used': 2.0, 'zoli': 1.0, 'then': 1.0, 'fine': 2.0, 'bite': 1.0, 'while': 1.0, 'now': 1.0, 'side': 1.0, 'which': 2.0, 'leaking': 1.0, 'sometimes': 1.0, 'ounces': 1.0, 'the': 25.0, 'of': 7.0, 'cons': 1.0, 'graduates': 1.0, 'milk': 1.0, 'just': 1.0, 'why': 1.0, 'off': 2.0, 'cover': 1.0, 'thicker': 1.0, 'this': 1.0, 'nuk': 2.0, 'onto': 1.0, 'straw': 1.0, 'gerber': 2.0, 'through': 1.0, 'handles': 1.0, 'leaked': 1.0, 'don': 3.0, 'only': 1.0, 'is': 4.0, 'handle': 2.0, 'spout': 2.0, 'needed': 1.0, 'way': 1.0, 'my': 1.0, 'loving': 1.0}
Word element => {'great': 1.0, 'of': 1.0, 'out': 1.0, 'though': 1.0, 'down': 1.0, 'hoping': 1.0, 've': 1.0, 'would': 1.0, 'through': 1.0, 'the': 2.0, 'others': 1.0, 'these': 2.0, 'more': 1.0, 'are': 2.0, 'kids': 2.0, 'when': 1.0, 'that': 1.0, 'suck': 1.0, 'they': 5.0, 'leak': 1.0, 'chew': 1.0, 'my': 2.0, 'purchase': 1.0, 'work': 1.0, 'aren': 1.0, 'but': 2.0, 'will': 1.0, 'spouts': 1.0, 'love': 1.0, 'for': 3.0, 'go': 1.0, 't': 2.0, 'a': 1.0, 'well': 2.0, 'hard': 2.0, 'little': 1.0, 'didn': 1.0, 'tipped': 1.0, 'up': 2.0, 'over': 1.0, 'i': 3.0, 'have': 1.0, 'however': 1.0, 'seem': 1.0, 'pay': 2.0, 'held': 2.0, 'or': 1.0, 'do': 1.0, 'much': 1.0, 'too': 1.0, 'and': 1.0, 'soon': 1.0, 'sold': 1.0, 'sippy': 1.0, 'them': 2.0, 'being': 1.0, 'now': 1.0, 'cups': 1.0, 'any': 1.0, 'as': 3.0, 'to': 3.0, 'like': 1.0, 'not': 1.0, 'higher': 1.0, 'price': 1.0}
Word element => {'in': 1.0, 'feels': 1.0, 'done': 1.0, 'have': 1.0, 'was': 1.0, 'how': 1.0, 'plastic': 1.0, 'style': 1.0, 'cheaper': 1.0, 'create': 1.0, 'by': 1.0, 'it': 1.0, 'didn': 1.0, 'i': 1.0, 'there': 1.0, 'if': 1.0, 'along': 1.0, 'come': 1.0, 'hand': 1.0, 'using': 1.0, '9': 1.0, 'keep': 1.0, '7': 1.0, 'are': 1.0, 'but': 1.0, 'shift': 1.0, 'work': 1.0, 'too': 1.0, 'and': 4.0, 'love': 2.0, 'for': 1.0, 'where': 1.0, 'what': 1.0, 'older': 1.0, 'now': 1.0, 'well': 1.0, 'still': 1.0, 'seem': 1.0, 'bad': 1.0, 'could': 1.0, 't': 1.0, 'discovered': 1.0, 'a': 2.0, 's': 3.0, 'we': 2.0, 'more': 1.0, 'say': 1.0, 'feeling': 1.0, 'water': 1.0, 'to': 4.0, 'our': 1.0, 'better': 1.0, 'their': 1.0, 'bottoms': 1.0, 'were': 1.0, 'that': 2.0, 'they': 3.0, 'bottle': 1.0, 'time': 1.0, 'these': 3.0, 'job': 1.0, 'the': 5.0, 're': 1.0, 'stand': 1.0, 'maybe': 1.0, 'standard': 1.0, 'because': 1.0, 'night': 1.0, 'them': 1.0, 'care': 1.0, 'prevent': 1.0, 'thing': 1.0, 'frequently': 1.0, 'about': 2.0, 'spills': 2.0, 'gerber': 1.0, 'bottles': 1.0, 'everywhere': 1.0, 'one': 1.0, 'bought': 1.0, 'kids': 1.0, 'this': 1.0, 'toxic': 1.0, 'on': 2.0, 'rv': 1.0}
Word element => {'other': 1.0, 'than': 1.0, 'less': 1.0, 'much': 1.0, 'i': 1.0, 'has': 1.0, 'lots': 1.0, 'so': 1.0, 'bit': 2.0, 'plastic': 1.0, 'bends': 1.0, 'keep': 1.0, 'since': 1.0, 'cup': 1.0, 'the': 4.0, 'of': 2.0, 'drop': 1.0, 'get': 1.0, 'into': 1.0, 'that': 2.0, 'is': 1.0, 'note': 1.0, 'great': 1.0, 'also': 2.0, 'tube': 1.0, 'enjoys': 1.0, 'himself': 1.0, 'just': 2.0, 'by': 1.0, 'one': 1.0, 'in': 2.0, 'had': 2.0, 'settled': 1.0, 'leak': 1.0, 'several': 1.0, 'top': 2.0, 'went': 1.0, 'him': 1.0, 'giving': 1.0, 'things': 1.0, 'tried': 2.0, 'through': 1.0, 'took': 1.0, 'got': 1.0, 'ones': 1.0, 'some': 1.0, 'these': 3.0, 'nipple': 2.0, 'and': 7.0, 'play': 1.0, 'milk': 1.0, 'formula': 1.0, 'have': 1.0, 'you': 1.0, 'when': 1.0, 'to': 3.0, 'all': 1.0, 'cups': 3.0, 'our': 4.0, 'on': 1.0, 'up': 1.0, 'over': 1.0, 'son': 4.0, 'off': 2.0, 'bite': 1.0, 'mind': 1.0, 'with': 2.0, 'from': 2.0, 'hard': 1.0, 't': 1.0, 'we': 5.0, 'a': 6.0, 'silicon': 1.0, 'teeth': 1.0, 'hand': 1.0, 'hold': 1.0, 'scraped': 1.0, 'spill': 2.0, 'started': 1.0, 'them': 4.0, 'price': 1.0, 'leading': 1.0, 'plasic': 1.0, 'every': 1.0, 'really': 1.0, 'managed': 1.0, 'are': 1.0, 'out': 1.0, 'couple': 1.0, 'proof': 1.0, 'but': 2.0, 'can': 2.0}
Word element => {'reviewers': 1.0, 'are': 1.0, 'little': 1.0, 'together': 1.0, 'water': 1.0, 'spill': 1.0, 'they': 3.0, 'mil': 1.0, 'for': 2.0, 'not': 1.0, 'those': 1.0, 'used': 2.0, 'great': 1.0, 'straw': 1.0, 'graduates': 1.0, 'ones': 2.0, 'put': 1.0, 'playtex': 2.0, 'order': 1.0, 'proof': 1.0, 'out': 1.0, 'sippy': 1.0, 'many': 1.0, 'i': 2.0, 'the': 10.0, 'say': 1.0, 'more': 1.0, 'of': 2.0, 'bottom': 1.0, 'drip': 1.0, 'too': 1.0, 'and': 2.0, 'shape': 1.0, 'away': 1.0, 'using': 1.0, 'favorites': 1.0, 'straws': 2.0, 'like': 2.0, 'gets': 1.0, 'lo': 1.0, 'gerber': 1.0, 'cup': 1.0, 'do': 1.0, 'end': 1.0, 'biting': 1.0, 'to': 1.0, 'cups': 1.0, 'our': 1.0, 'were': 3.0, 'munchkin': 1.0, 'some': 1.0, 'these': 1.0, 'hit': 1.0, 'since': 2.0, 'dind': 2.0, 'either': 1.0, 'in': 1.0, 'with': 2.0, 'o': 1.0, 'replaceable': 1.0, 'just': 1.0, 'tried': 1.0, 'shave': 1.0, 'off': 1.0, 'we': 2.0, 't': 2.0, 'a': 2.0, 'nozzle': 1.0, 'knife': 1.0, 'worn': 1.0, 'hard': 2.0, 'from': 1.0, 'than': 1.0, 'leak': 1.0, 'rubber': 1.0}
Word element => {'well': 1.0, 'holds': 1.0, 'up': 1.0, 'plus': 1.0, 'leaks': 1.0, 'is': 1.0, 'top': 1.0, 'under': 1.0, 'to': 4.0, 'easy': 2.0, 'just': 1.0, 'very': 1.0, 'replacement': 1.0, 'year': 1.0, 'for': 1.0, 'it': 1.0, 'with': 1.0, 'pop': 1.0, 'cups': 3.0, 'get': 1.0, 'and': 1.0, 'my': 1.0, 'the': 1.0, '2': 1.0, 'great': 1.0, 'also': 1.0, 'pieces': 2.0, 'wash': 1.0, 'compared': 2.0, 'other': 2.0, 'no': 1.0, 'olds': 1.0, 'sippy': 1.0, '4': 1.0, 'piece': 1.0, 'silicone': 1.0, 'out': 1.0, 'white': 1.0}
Word element => {'one': 1.0, 'after': 1.0, 'best': 1.0, 'of': 1.0, 'cup': 2.0, 'we': 1.0, 'ever': 1.0, 'right': 1.0, 'searching': 1.0, 'purchased': 1.0, 'have': 1.0, 'this': 1.0, '2': 1.0, 'is': 1.0, 'the': 2.0, 'for': 1.0, 'years': 1.0, 'most': 1.0, 'durable': 1.0}
Word element => {'sips': 1.0, '1st': 1.0, 'tommy': 1.0, '34': 2.0, 'opinion': 1.0, 'parts': 1.0, 'clean': 1.0, 'helps': 1.0, 'manageable': 1.0, 'rush': 1.0, 'when': 1.0, 'turned': 1.0, 'down': 2.0, 'upside': 2.0, 'turn': 1.0, 'learn': 1.0, 'drink': 1.0, 'so': 1.0, 'can': 1.0, 'soon': 1.0, 'and': 8.0, 'drip': 4.0, 'gave': 1.0, 'because': 1.0, 'that': 3.0, 'been': 1.0, 'drinks': 1.0, 'before': 1.0, 'pressure': 1.0, 'spout': 1.0, 'lot': 2.0, 'upgrade': 1.0, 'since': 2.0, 'is': 1.0, 'at': 1.0, 'anyway': 1.0, 'use': 2.0, 'did': 1.0, 'man': 1.0, 'hope': 1.0, 'ween': 1.0, 'not': 2.0, 'problem': 1.0, 'have': 2.0, 'anti': 3.0, 'thing': 3.0, 'begin': 2.0, 'son': 3.0, 'a': 6.0, 't': 3.0, 'to': 11.0, 'as': 3.0, 'least': 1.0, 'of': 3.0, 'the': 11.0, 'without': 1.0, 'these': 2.0, 'suck': 1.0, 'they': 1.0, 'drinking': 1.0, 'bought': 1.0, 'teaching': 1.0, 'took': 1.0, 'from': 3.0, 'fix': 1.0, 'my': 4.0, 'cups': 4.0, 'cup': 2.0, 'get': 2.0, 's': 1.0, 'giving': 1.0, 'love': 1.0, 'he': 1.0, 'our': 1.0, 'how': 1.0, 'few': 1.0, 'bottle': 1.0, 'this': 2.0, 'full': 1.0, 'thought': 1.0, 'it': 7.0, 'out': 4.0, 'nothing': 1.0, 'adult': 1.0, 'was': 2.0, 'especially': 1.0, 'sucking': 1.0, 'don': 1.0, 'isn': 2.0, 'we': 2.0, 'fine': 1.0, 'strong': 1.0, 'all': 2.0, 'an': 2.0, 'i': 6.0, 'coming': 1.0, 'well': 1.0, 'has': 1.0, 'move': 1.0, 'little': 2.0, 'white': 1.0, 'his': 1.0, 'around': 1.0, 'tried': 2.0, 'off': 1.0, 'see': 1.0, 'up': 1.0, 'sippy': 2.0, 'tippee': 1.0, 'but': 2.0, 'work': 1.0, 'in': 3.0, 'said': 1.0, 'end': 1.0, 'just': 1.0, 'damn': 1.0, 'ended': 1.0, 'being': 1.0, 'now': 1.0, 'hated': 1.0, 'are': 1.0, 'obviously': 1.0, 'stopper': 1.0, 'taken': 1.0}
Word element => {'far': 1.0, 'several': 1.0, 'been': 1.0, 'have': 1.0, 'we': 1.0, 'brands': 1.0, 'his': 1.0, 'throwing': 1.0, 'constantly': 1.0, 'is': 2.0, 'a': 1.0, 'happened': 1.0, 'best': 1.0, 'son': 1.0, 'my': 1.0, 'cups': 2.0, 'sippy': 1.0, 'through': 1.0, 'enough': 1.0, 'leak': 1.0, 'the': 2.0, 'these': 1.0, 'unless': 1.0, 'not': 1.0, 'and': 2.0, 'couple': 1.0, 'do': 1.0, 'so': 1.0, 'throws': 1.0, 'to': 1.0, 'love': 1.0, 'for': 1.0, 'time': 1.0, 'has': 1.0, 'they': 1.0, 'valve': 1.0, 'this': 1.0, 'he': 1.0, 'only': 1.0, 'it': 1.0, 'hard': 1.0, 'come': 1.0, 'out': 1.0}
Word element => {'you': 1.0, 'but': 1.0, 'can': 1.0, 'them': 1.0, 'type': 1.0, 'old': 2.0, 'year': 2.0, 'one': 1.0, 'm': 2.0, 'both': 1.0, 'minds': 1.0, 'ordering': 1.0, 'their': 1.0, 'have': 2.0, 'review': 1.0, 'won': 1.0, 'away': 1.0, 'writing': 1.0, 'and': 7.0, 'throw': 1.0, 'world': 1.0, 'clean': 1.0, 'out': 1.0, 'components': 1.0, 'help': 1.0, 'kiddie': 1.0, 'grab': 1.0, 'just': 1.0, 'i': 5.0, 'parents': 1.0, 'want': 1.0, 'many': 1.0, 'more': 1.0, 'is': 1.0, 'are': 2.0, 'kids': 1.0, 'so': 1.0, 'in': 1.0, 'choices': 1.0, 'other': 1.0, 'simple': 1.0, 'there': 3.0, 'as': 1.0, 'to': 3.0, 'cups': 1.0, 'all': 1.0, 'your': 1.0, 'some': 1.0, 'products': 1.0, 'these': 1.0, 'believe': 1.0, 'the': 3.0, 'only': 1.0, 'babysitters': 1.0, 'it': 2.0, 'three': 2.0, 'including': 1.0, 'losing': 1.0, 't': 2.0, 'a': 3.0, 's': 1.0, 'my': 1.0, 'lid': 1.0, 'fellow': 1.0, 'cup': 2.0, 'spout': 1.0, 'easy': 1.0, 'use': 2.0, 'grandparents': 1.0, 'for': 2.0, 'where': 1.0, 'assemble': 1.0}
Word element => {'than': 1.0, 'bought': 1.0, 'straps': 1.0, 'issue': 1.0, 'their': 1.0, 'cup': 2.0, 'large': 1.0, 'base': 1.0, 'other': 2.0, 'like': 1.0, 'combat': 1.0, 'stake': 1.0, 'health': 1.0, 'several': 1.0, 'holders': 2.0, 'this': 2.0, 'there': 1.0, 'in': 4.0, 'had': 1.0, 'curdle': 1.0, 'will': 1.0, 'car': 1.0, 'cleaned': 1.0, 'if': 1.0, 'the': 8.0, 'fit': 1.0, 'share': 1.0, 'that': 1.0, 'been': 1.0, 'i': 6.0, 'buy': 1.0, 'them': 1.0, 'sippy': 1.0, 'at': 2.0, 'times': 1.0, 'twins': 2.0, 'child': 1.0, 'enforce': 1.0, 'out': 1.0, 'nanny': 1.0, 'clean': 1.0, 'commute': 1.0, 'have': 4.0, 'gripe': 1.0, 'spout': 1.0, 'of': 2.0, 'stroller': 1.0, 'leak': 1.0, 'great': 1.0, '1': 1.0, 'too': 1.0, 'milk': 1.0, 'and': 5.0, 'getting': 1.0, 'through': 1.0, 'an': 1.0, 'inside': 1.0, 'as': 1.0, 'all': 1.0, 'to': 7.0, 'cups': 2.0, 'yo': 1.0, 'best': 1.0, 'are': 3.0, 'household': 1.0, 'my': 6.0, 'older': 1.0, 'attach': 2.0, 'nipple': 1.0, 'children': 1.0, 'while': 1.0, 'properly': 1.0, 'hard': 1.0, 'do': 3.0, 'only': 2.0, 'reviews': 1.0, 'they': 1.0, 'so': 2.0, 'time': 1.0, 'these': 3.0, 'valve': 1.0, 'not': 4.0, 'a': 3.0, 'back': 1.0, 'liquid': 1.0, 'tip': 1.0, 'fall': 1.0, 'say': 1.0, 'is': 3.0, 'brush': 1.0, 'most': 1.0, '2': 2.0, 'removable': 1.0}
Word element => {'be': 1.0, 'piece': 1.0, 'separate': 1.0, 'white': 1.0, 'little': 1.0, 'realize': 1.0, 'or': 1.0, 'visitors': 1.0, 'k': 1.0, 'sippy': 1.0, 'have': 2.0, 'love': 1.0, 'for': 1.0, 'ones': 1.0, 'valve': 1.0, 'these': 2.0, 'without': 1.0, 'place': 1.0, 'the': 5.0, 'in': 1.0, 'stackable': 1.0, 'used': 1.0, 'liquid': 2.0, 'they': 1.0, 'through': 1.0, 'first': 1.0, 'only': 2.0, 'babysitters': 1.0, 'it': 3.0, 'made': 1.0, 'out': 2.0, 'hard': 1.0, '9oz': 1.0, 'but': 1.0, 'wish': 1.0, 'kids': 2.0, 'by': 1.0, 'needs': 1.0, 'smaller': 1.0, 'pre': 1.0, 'happy': 1.0, 'and': 2.0, 'get': 1.0, 'that': 2.0, 'been': 1.0, 'a': 1.0, 't': 2.0, 'we': 1.0, 's': 1.0, 'still': 1.0, 'seem': 1.0, 'clicked': 1.0, 'as': 1.0, 'our': 1.0, 'to': 2.0, 'don': 2.0, 'streams': 1.0, 'when': 1.0, 'affected': 1.0, 'essentially': 1.0, 'non': 1.0, 'spills': 1.0, 'are': 1.0, 'existent': 1.0, 'problem': 1.0, 'is': 2.0}
Word element => {'now': 1.0, 'use': 1.0, 'dishwasher': 1.0, 'through': 1.0, 'running': 1.0, 'after': 1.0, 'reattach': 1.0, 'lid': 1.0, 'under': 1.0, 'stopper': 1.0, 'white': 1.0, 'holders': 1.0, 'cup': 3.0, 'wide': 1.0, 'everything': 1.0, 'into': 1.0, 'that': 1.0, 'big': 1.0, 'are': 4.0, 'some': 1.0, 'these': 2.0, 'is': 2.0, 'they': 3.0, 'thing': 1.0, 'about': 2.0, 'don': 3.0, 'sippies': 1.0, 'only': 2.0, 'hard': 1.0, 'like': 2.0, 'holder': 1.0, 'and': 3.0, 'we': 1.0, 't': 3.0, 'a': 2.0, 'so': 1.0, 'bit': 1.0, 'fit': 1.0, 'for': 1.0, 'love': 2.0, 'very': 1.0, 'little': 1.0, 'namely': 1.0, 'the': 7.0, 'hands': 1.0, 'easy': 1.0, 'i': 3.0, 'otherwise': 1.0, 'them': 2.0, 'absolutely': 1.0, 'stroller': 1.0, 'leak': 1.0, 'drop': 1.0, 'sturdy': 1.0, 'cups': 1.0, 'to': 1.0, 'it': 2.0, 'remove': 1.0, 'how': 1.0, 'plastic': 1.0}
Word element => {'you': 1.0, 'on': 1.0, 'real': 1.0, 'drinking': 1.0, 'spot': 1.0, 'to': 1.0, 'nipples': 1.0, 'soft': 1.0, 'from': 2.0, 'glass': 1.0, 'like': 2.0, 'sippy': 1.0, 'for': 1.0, 'good': 2.0, 'there': 1.0, 'stone': 1.0, 'of': 1.0, 'lot': 1.0, 'makes': 1.0, 'a': 4.0, 'not': 1.0, 'side': 1.0, 'longer': 1.0, 'really': 1.0, 'is': 2.0, 'the': 4.0, 'label': 1.0, 'smaller': 1.0, 'too': 1.0, 'where': 1.0, 'cups': 2.0, 'i': 1.0, 'can': 1.0, 'outings': 1.0, 'size': 1.0, 'plastic': 1.0, 'top': 1.0, 'bottle': 1.0, 'stepping': 1.0, 'hard': 1.0, 'it': 1.0}
Word element => {'play': 1.0, 'throws': 1.0, 'lots': 1.0, 'can': 1.0, 'of': 1.0, 'leak': 1.0, 'drink': 1.0, 'these': 1.0, 'they': 1.0, 'and': 2.0, 'only': 1.0, 'are': 1.0, 'the': 1.0, 'my': 1.0, 'will': 1.0, 'withstand': 1.0, 'never': 1.0, 'cups': 1.0, 'time': 1.0, 'son': 1.0, 'from': 1.0}
Word element => {'these': 1.0, 'further': 1.0, 'no': 1.0, 'look': 1.0, 'just': 1.0, 'break': 1.0, 'like': 1.0, 'you': 2.0, 'mention': 1.0, 'if': 1.0, 'want': 1.0, 'course': 1.0, 'deatial': 1.0, 'vs': 1.0, 'on': 1.0, 'your': 1.0, 'make': 1.0, 'set': 1.0, 'different': 2.0, 'spill': 1.0, 'toddler': 1.0, 'the': 6.0, 'leak': 1.0, 'diaper': 1.0, '4': 1.0, 'i': 1.0, 'then': 1.0, 'include': 1.0, 'shake': 1.0, 'after': 1.0, 'leakproof': 1.0, 'wasting': 2.0, 'work': 1.0, 'but': 1.0, '2': 1.0, 'can': 2.0, 'money': 2.0, 'lots': 1.0, 'colors': 1.0, 'my': 2.0, 'don': 1.0, 'up': 1.0, 'did': 1.0, 'cleaning': 1.0, 'out': 1.0, 'pattern': 1.0, 'and': 4.0, 'tired': 1.0, 'sippy': 2.0, 'ton': 1.0, 'fun': 1.0, 'plain': 1.0, 'chuck': 1.0, 't': 1.0, 'we': 1.0, 'a': 3.0, 'of': 5.0, 'messes': 1.0, 'in': 1.0, 'bag': 1.0, 'cup': 2.0, 'or': 2.0, 'truly': 1.0, 'it': 2.0, 'me': 1.0, 'minor': 1.0, 'not': 1.0, 'one': 2.0, 'are': 5.0, 'have': 1.0, 'rich': 1.0, 'cups': 3.0, 'to': 2.0, 'patterns': 1.0, 'this': 1.0, 'found': 1.0, 'wish': 1.0, 'comes': 1.0, 'is': 2.0, 'that': 2.0, 'they': 1.0, 'each': 1.0, 'drop': 1.0, 'would': 1.0}
Word element => {'seller': 1.0, 'buy': 1.0, 'i': 1.0, 'thus': 1.0, 'leakproof': 1.0, '100': 1.0, 'colors': 1.0, 'and': 1.0, 'away': 1.0, 'flying': 1.0, 'with': 1.0, 'toss': 1.0, 'test': 1.0, 'far': 1.0, 'passed': 1.0, 'great': 2.0, 'more': 1.0, '2': 1.0, 'the': 2.0, 'have': 3.0, 'they': 1.0, 'roughly': 1.0, '12': 1.0, 'when': 1.0, 'cups': 2.0, 'other': 1.0, 'altogether': 1.0, 'leaky': 1.0, 'them': 1.0, 'weeks': 1.0, 'will': 1.0, 'be': 1.0, 'had': 1.0, 'buying': 1.0}
Word element => {'by': 1.0, 'would': 2.0, 'water': 1.0, 'something': 1.0, 'over': 2.0, 'on': 1.0, 'could': 1.0, 'out': 2.0, 's': 1.0, 'pound': 1.0, 'love': 1.0, 'anything': 1.0, 'son': 1.0, 'come': 1.0, 'he': 1.0, 'it': 2.0, 'with': 2.0, 'hard': 1.0, 'these': 1.0, 'figured': 1.0, 'find': 1.0, 'not': 1.0, 'started': 1.0, 'leaking': 1.0, 'to': 1.0, 'sippy': 1.0, 'no': 1.0, 'or': 1.0, 'good': 1.0, 'my': 1.0, 'cup': 1.0, 'a': 2.0, 'we': 1.0, 'soft': 1.0, 'spout': 1.0, 'and': 3.0}
Word element => {'each': 1.0, 'of': 1.0, 'two': 1.0, 'are': 1.0, 'they': 2.0, 'price': 1.0, 'complaint': 1.0, 'very': 2.0, 'and': 2.0, 'loves': 1.0, 'cure': 1.0, 'was': 2.0, 'not': 1.0, 'my': 2.0, 'cup': 1.0, 'daughter': 1.0, 'is': 1.0, 'cheap': 1.0, 'i': 1.0, 'this': 1.0, 'only': 1.0, 'it': 1.0, 'four': 1.0, 'wish': 1.0, 'different': 1.0, 'print': 1.0}
Word element => {'issues': 1.0, 'only': 1.0, 'rack': 1.0, 'top': 1.0, 'dishwasher': 1.0, 'put': 1.0, 'also': 1.0, 'hand': 1.0, 'buy': 1.0, 'definitely': 1.0, 'will': 1.0, 'when': 1.0, 'already': 1.0, 'case': 1.0, 'in': 2.0, 'gets': 1.0, 'water': 2.0, '5': 1.0, 'most': 1.0, 'wash': 1.0, 'use': 3.0, 'washing': 1.0, 'membrane': 1.0, 'let': 1.0, 'leaking': 1.0, 'don': 1.0, 'any': 4.0, 'all': 2.0, 'to': 2.0, 'our': 1.0, 'as': 1.0, 'haven': 3.0, 'weeks': 1.0, 'now': 1.0, 'thin': 1.0, 'spray': 1.0, 'couple': 1.0, 'out': 2.0, 'soak': 1.0, 'and': 3.0, 'table': 1.0, 'a': 5.0, 't': 5.0, 'then': 2.0, 'we': 2.0, 's': 1.0, 'white': 1.0, 'purchasing': 1.0, 'dropped': 1.0, 'them': 3.0, 'etc': 1.0, 'i': 11.0, 'again': 1.0, 'couch': 1.0, 'had': 2.0, 'standing': 1.0, 'might': 1.0, 'crud': 1.0, 'these': 3.0, 'have': 5.0, 'spouts': 2.0, 'where': 1.0, 'package': 1.0, 'for': 2.0, 'yet': 1.0, 'love': 1.0, 'been': 1.0, 'that': 5.0, 'soaking': 1.0, 'from': 1.0, 'problem': 1.0, 'part': 1.0, 'bleach': 1.0, 'they': 1.0, 'there': 1.0, 'spraying': 1.0, 'mean': 1.0, 'collect': 1.0, 'lost': 1.0, 'laid': 1.0, 'am': 2.0, 'dr': 1.0, 'edges': 1.0, 'at': 2.0, 'is': 1.0, 'still': 1.0, 'sideways': 1.0, 'if': 1.0, 'every': 1.0, 'anything': 1.0, 'needs': 1.0, 'bottle': 2.0, 'be': 1.0, 'while': 1.0, 'removed': 1.0, 'tearing': 1.0, 'straw': 1.0, 'didn': 1.0, 'get': 1.0, 'of': 5.0, 'the': 8.0, 'brush': 2.0, 'on': 1.0, 'noticed': 2.0, 'bottles': 1.0, 'by': 1.0, 'just': 1.0, 'extra': 2.0, 'one': 2.0, 'used': 1.0, 'with': 1.0, 'brown': 1.0, 'said': 1.0, 'being': 1.0, 'very': 1.0, 'gentle': 1.0}
Word element => {'buy': 1.0, 'to': 2.0, 'they': 1.0, 'thinks': 1.0, 'old': 2.0, 'year': 2.0, '3': 1.0, 'my': 2.0, 'stealing': 1.0, 'issue': 1.0, 'only': 1.0, 'be': 1.0, 'it': 2.0, 'wouldn': 1.0, 'from': 1.0, 'designs': 1.0, 'hard': 2.0, 'the': 1.0, 'these': 1.0, '1': 1.0, 'great': 1.0, 'should': 1.0, 'back': 1.0, 'top': 1.0, 'so': 1.0, 'cute': 2.0, 'after': 1.0, 'am': 1.0, 're': 1.0, 'off': 1.0, 'quest': 1.0, 'that': 1.0, 'into': 1.0, 'expert': 1.0, 'them': 1.0, 'sippy': 1.0, 'safe': 1.0, 'really': 1.0, 'leaking': 1.0, 'leaks': 1.0, 'leak': 1.0, 'or': 1.0, 'cup': 2.0, 'amazon': 1.0, 'launching': 1.0, 't': 1.0, 'a': 2.0, 'bat': 1.0, 'for': 2.0, 'one': 1.0, 'i': 2.0, 'too': 1.0, 'and': 2.0, 'chewed': 1.0, 'pieces': 1.0, 'found': 1.0, 'are': 1.0, 'more': 1.0, 'is': 2.0, 'zero': 1.0, 'just': 1.0, 'three': 1.0, 'spout': 1.0, 'super': 1.0, 'guard': 1.0, 'cleaning': 1.0, 'get': 1.0, 'easy': 1.0, 'dishwasher': 1.0}
Word element => {'super': 1.0, 'also': 1.0, 're': 1.0, 'purchased': 1.0, 'have': 1.0, 'i': 1.0, 'others': 1.0, 'like': 1.0, 'stopper': 1.0, 'love': 1.0, 'ones': 2.0, 'not': 1.0, 'the': 1.0, 'gerber': 1.0, 'crack': 1.0, 'cute': 1.0, 'goes': 1.0, 'did': 1.0, 'inside': 1.0, 'they': 1.0, 'these': 2.0, 'nuk': 1.0, 'where': 1.0}
Word element => {'own': 1.0, 'their': 1.0, 'each': 1.0, 'because': 1.0, 'grils': 1.0, 'two': 1.0, 'is': 1.0, 'this': 1.0, 'gets': 1.0, 'cups': 1.0, 'for': 1.0, 'parents': 1.0, 'good': 2.0, 'set': 1.0, 'of': 1.0, 'leak': 1.0, 'dozens': 1.0, 'and': 1.0, 'we': 1.0, 'different': 1.0, 'color': 1.0, 'went': 1.0, 'through': 1.0, 'new': 1.0, 'found': 1.0, 'mechanism': 1.0, 'nuk': 1.0, 'graduates': 1.0, 'as': 1.0, 'best': 1.0, 'size': 1.0, 'so': 1.0, 'doesn': 1.0, 'great': 1.0, 'the': 1.0, 't': 1.0}
Word element => {'durable': 1.0, 'value': 1.0, 'are': 3.0, 'my': 1.0, 'they': 2.0, 'sippy': 1.0, 'bought': 1.0, 'of': 1.0, 'and': 3.0, 'packages': 1.0, 'very': 2.0, 'several': 1.0, 'cups': 1.0, 'i': 2.0, 'toddler': 1.0, 'prefers': 1.0, 'love': 1.0, 'the': 2.0, 'these': 1.0, 'ones': 1.0, 'great': 1.0, 'design': 1.0, 'easy': 1.0, 'to': 1.0, 'clean': 1.0}
Word element => {'my': 1.0, 'out': 1.0, 'rotten': 1.0, 'little': 1.0, 'have': 1.0, 'not': 1.0, 'just': 1.0, 'm': 1.0, 'carpet': 1.0, 'awhile': 1.0, 'takes': 1.0, 'it': 1.0, 'side': 1.0, 'months': 1.0, 'won': 1.0, 'upside': 1.0, 'scrub': 1.0, 'left': 1.0, 'be': 1.0, 'floor': 1.0, 'of': 3.0, '6': 1.0, 'up': 1.0, 'more': 1.0, 'these': 1.0, 'the': 3.0, 'or': 1.0, 'i': 3.0, 'but': 1.0, 'can': 1.0, 'kid': 1.0, 'love': 1.0, 'for': 1.0, 'they': 2.0, 'on': 2.0, 'your': 1.0, 'will': 2.0, 'back': 1.0, 'anymore': 1.0, 'spill': 1.0, 'crack': 1.0, 'to': 2.0, 'cups': 1.0, 'never': 1.0, 'down': 1.0, 'even': 1.0, 'couch': 1.0, 'use': 1.0, 'after': 1.0, 'hours': 1.0, 'milk': 1.0, 'and': 1.0, 't': 1.0, 'go': 1.0, 'a': 1.0, 'drop': 1.0, 'yes': 1.0, 'if': 1.0, 'excited': 1.0, 'hucks': 1.0, 'them': 1.0, 'puddles': 1.0, 'hard': 1.0, 'from': 1.0, 'high': 1.0, 'chair': 1.0, 'enough': 1.0}
Word element => {'great': 1.0}
Word element => {'recommend': 1.0, 'them': 2.0, 'ever': 1.0, 'they': 1.0, 't': 1.0, 'these': 1.0, 'the': 2.0, 'actually': 1.0, 'are': 1.0, 'cup': 1.0, 'my': 1.0, 'never': 1.0, 'puts': 1.0, 'of': 1.0, 'leak': 1.0, 'really': 1.0, 'or': 1.0, 'buy': 1.0, 'i': 1.0, 'toddler': 1.0, 'will': 1.0, 'spill': 1.0, 'and': 2.0, 'another': 1.0, 'don': 1.0, 'highly': 1.0, 'cups': 1.0, 'daughter': 1.0, 'to': 1.0, 'kind': 1.0, 'best': 1.0, 'test': 1.0}
Word element => {'reads': 1.0, 'someone': 1.0, 'just': 1.0, 'into': 1.0, 'worked': 1.0, 'brown': 2.0, 'even': 1.0, 'not': 1.0, 'looked': 1.0, 'dishwasher': 1.0, 'version': 3.0, 'like': 1.0, 'their': 1.0, 'previous': 1.0, 'design': 1.0, 'themselves': 1.0, 'could': 1.0, 'a': 3.0, 't': 2.0, 'we': 1.0, 's': 4.0, 'go': 1.0, 'my': 3.0, 'set': 3.0, 'it': 4.0, 'sets': 1.0, 'particular': 1.0, 'this': 5.0, 'had': 1.0, 'bought': 2.0, 'insulated': 2.0, 'colors': 1.0, 'updated': 1.0, 'star': 1.0, 'liquid': 1.0, '5th': 1.0, 'she': 1.0, 'camouflage': 1.0, 'inside': 1.0, 'got': 1.0, 'daughter': 1.0, 'case': 1.0, 'cup': 2.0, 'cups': 4.0, 'as': 1.0, 'high': 1.0, 'to': 3.0, 'incorrect': 1.0, 'also': 1.0, 'missing': 1.0, 'i': 2.0, 'are': 5.0, 'great': 1.0, 'of': 3.0, 'the': 13.0, 'orange': 3.0, 'ugly': 2.0, 'pattern': 1.0, 'one': 1.0, 'ones': 1.0, 'share': 1.0, 'caution': 1.0, 'were': 1.0, 'parts': 1.0, 'loves': 2.0, 'all': 1.0, 'an': 1.0, 'blue': 5.0, 'and': 11.0, 'son': 1.0, 'cannot': 1.0, 'very': 2.0, 'update': 1.0, 'flow': 1.0, 'on': 1.0, 'level': 1.0, 'generous': 1.0, 'they': 1.0, 'between': 1.0, 'but': 1.0, 'so': 2.0, 'can': 2.0, 'don': 1.0, 'spill': 1.0, 'however': 1.0, 'easy': 1.0, 'again': 1.0, 'clean': 1.0, 'result': 1.0, 'because': 3.0, 'easily': 1.0, 'you': 4.0, 'your': 1.0, 'idea': 1.0, 'interchangeable': 1.0, 'use': 1.0, 'if': 1.0, 'decide': 1.0, 'color': 1.0, 'order': 1.0, 'at': 1.0, 'is': 1.0, 'sports': 1.0, 'until': 1.0, 'see': 1.0, 'with': 1.0, 'have': 1.0, 'no': 1.0, 'how': 1.0, 'much': 1.0, 'empty': 1.0, 'heat': 1.0, 'kid': 2.0, 'has': 1.0, 'drink': 1.0, 'in': 2.0}
Word element => {'soft': 1.0, 'with': 1.0, 'problem': 1.0, 'was': 1.0, 'that': 1.0, 'in': 1.0, 'old': 1.0, 'spout': 2.0, 'month': 1.0, 'around': 1.0, 'no': 1.0, 'of': 1.0, 'cups': 1.0, 'daughter': 1.0, 'my': 3.0, 'is': 1.0, 'leaks': 1.0, 'them': 1.0, 'a': 2.0, 'bite': 1.0, 'afterward': 1.0, 'or': 2.0, 'spills': 1.0, 'holes': 1.0, 't': 1.0, 'the': 3.0, 'mess': 1.0, 'lol': 1.0, 'puddle': 1.0, 'throw': 1.0, 'milk': 1.0, 'part': 1.0, 'best': 1.0, 'without': 1.0, 'can': 2.0, '21': 1.0}
Word element => {'in': 1.0, 'again': 1.0, 'same': 1.0, 'exact': 1.0, 'exchange': 1.0, 'them': 1.0, 'sent': 1.0, 'wrong': 2.0, 'to': 1.0, 'had': 1.0, 'though': 1.0, 'ordered': 1.0, 'only': 1.0, 'these': 1.0, 'great': 1.0, 'the': 4.0, 'color': 1.0, 'form': 1.0, 'really': 1.0, 'is': 1.0, 'amazon': 1.0, 'when': 2.0, 'cups': 3.0, 'got': 2.0, 'back': 1.0, 'quality': 1.0, 'purple': 2.0, 'i': 5.0, 'green': 1.0, 'not': 2.0, 'pink': 1.0, 'did': 1.0, 'and': 3.0, 'get': 1.0}
Word element => {'good': 1.0, 'so': 1.0, 'likes': 1.0, 'cup': 1.0, 'enough': 1.0, 'through': 1.0, 'way': 1.0, 's': 2.0, 'once': 1.0, 'drink': 1.0, 'right': 1.0, 'just': 1.0, 'to': 4.0, 'an': 1.0, 'be': 1.0, 'easy': 1.0, 'use': 1.0, 'it': 2.0, 'with': 1.0, 'he': 2.0, 'first': 1.0, 'older': 1.0, 'are': 1.0, 'start': 1.0, 'cups': 1.0, 'for': 4.0, 'about': 1.0, 'baby': 1.0, 'clean': 1.0, 'nice': 1.0, 'since': 1.0, 'him': 2.0, 'angle': 1.0, '2': 1.0, 'the': 2.0, 'these': 1.0, 'deducted': 1.0, 'me': 1.0, 'and': 1.0, '1': 2.0, 'has': 1.0}
Word element => {'won': 1.0, 'milk': 1.0, 'fruit': 1.0, 'pureed': 1.0, 'spill': 3.0, 'doesn': 1.0, 'and': 2.0, 'up': 1.0, 'both': 1.0, 'my': 2.0, 'proof': 2.0, 'out': 1.0, 'bag': 1.0, 'having': 1.0, 'tear': 1.0, 'in': 3.0, 'them': 2.0, 'baby': 4.0, 'thing': 1.0, 'no': 1.0, 'babies': 1.0, 'easily': 1.0, 'because': 1.0, 'that': 3.0, 'pack': 1.0, 'much': 1.0, 'easier': 1.0, 'year': 1.0, 'almost': 1.0, 'soft': 1.0, 'without': 1.0, 'slits': 1.0, 'size': 1.0, 'replacements': 1.0, 'nice': 1.0, 'great': 1.0, 'a': 5.0, 'preferred': 1.0, 's': 2.0, 'are': 2.0, 'opens': 1.0, 'stopper': 1.0, 'clean': 1.0, 'last': 1.0, 'these': 2.0, 'difficult': 1.0, 'hold': 1.0, 'to': 4.0, 'diaper': 1.0, 'as': 2.0, 'through': 1.0, 'handles': 1.0, 'removable': 1.0, 'but': 3.0, 'old': 1.0, 'makes': 1.0, 'easy': 1.0, 'it': 5.0, 'with': 1.0, 'spouts': 4.0, 'for': 1.0, 'one': 1.0, 'handle': 1.0, 'they': 2.0, 'stays': 1.0, 'drink': 2.0, 'have': 1.0, 'when': 3.0, 'you': 1.0, 'like': 2.0, 'drinks': 3.0, 'prevent': 1.0, 'making': 1.0, 'not': 1.0, 'slit': 2.0, 'give': 1.0, 'spills': 1.0, 'drinking': 1.0, 'design': 1.0, 'except': 1.0, 'long': 1.0, 'together': 1.0, 'or': 2.0, 'closed': 1.0, 'cups': 2.0, 'cup': 2.0, 'over': 1.0, 'hard': 1.0, 'open': 1.0, 'wider': 1.0, 'the': 12.0, 'of': 1.0, 'longer': 1.0, 'buy': 1.0, 't': 2.0, 'cost': 1.0, 'new': 1.0, 'can': 2.0, 'so': 1.0, 'cereal': 1.0, 'use': 1.0, 'thicker': 2.0, 'i': 3.0, 'putting': 1.0}
Word element => {'far': 1.0, 'fading': 1.0, 'no': 2.0, 'with': 1.0, 'top': 1.0, 'in': 1.0, 'wash': 1.0, 'we': 1.0, 'own': 1.0, 'used': 1.0, 'be': 1.0, 'removable': 1.0, 'handles': 1.0, 'dishwasher': 1.0, 'could': 1.0, 'like': 1.0, 'so': 2.0, 'favorites': 1.0, 'use': 1.0, 'that': 1.0, 'our': 1.0, 'the': 3.0, 'these': 2.0, 'become': 1.0, 'difficult': 1.0, 'spill': 1.0, 'cups': 1.0, 'for': 1.0, 'have': 1.0, 'easy': 2.0, 'learner': 1.0, 'they': 1.0, 'time': 1.0, 'problems': 1.0, 'son': 1.0, 'on': 1.0, 'over': 1.0, 'are': 2.0, 'cup': 1.0, 'my': 1.0, 'its': 1.0, 'to': 3.0, 'rack': 1.0, 'clean': 1.0, 'nuktrendline': 1.0, 'and': 2.0, 'i': 1.0}
Word element => {'up': 1.0, 'give': 1.0, 'getting': 1.0, 'challenge': 1.0, 'longer': 1.0, 'size': 1.0, 'larger': 1.0, 'in': 1.0, 'come': 1.0, 'for': 1.0, 'love': 1.0, 'leak': 1.0, 'liquid': 1.0, 'top': 1.0, 'open': 1.0, 'also': 1.0, 'will': 1.0, 'next': 1.0, 'that': 2.0, 'chew': 1.0, 'start': 1.0, 'unless': 1.0, 'these': 1.0, 'children': 1.0, 'nipple': 1.0, 'are': 1.0, 'and': 2.0, 'etc': 1.0, 'i': 2.0, 'bought': 1.0, 'one': 1.0, 'your': 1.0, 'on': 2.0, 'blown': 1.0, 'cup': 2.0, 'my': 3.0, 'they': 2.0, 'drug': 1.0, 'going': 1.0, 'a': 5.0, 'cups': 1.0, 'to': 4.0, 'sippy': 2.0, 'son': 2.0, 'bottle': 1.0, 'of': 1.0, 'spout': 3.0, 'lark': 1.0, 'proof': 1.0, 'is': 2.0, 'trips': 1.0, 'at': 1.0, 'shaped': 1.0, 'but': 1.0, 'store': 1.0, 'was': 1.0, 'spill': 1.0, 'this': 1.0, 'perfect': 1.0, 'soft': 1.0, 'it': 2.0, 'from': 1.0, 'hard': 1.0, 'allow': 1.0, 'introduces': 1.0, 'concept': 1.0, 'slits': 1.0, 'the': 7.0, 'without': 1.0, 'plastic': 1.0, 'transitional': 1.0, 'like': 2.0, 'which': 1.0, 'away': 1.0, 'hates': 1.0}
Word element => {'again': 1.0, 'right': 1.0, 'after': 1.0, 'not': 1.0, 'chews': 1.0, 'month': 1.0, 'headline': 1.0, 'these': 1.0, 'the': 1.0, 'my': 1.0, 'a': 1.0, 'see': 1.0, 'of': 1.0, 'through': 1.0, 'ownership': 1.0, 'toddler': 1.0, 'will': 1.0, 'and': 1.0, 'he': 1.0, 'only': 1.0, 's': 1.0, 'months': 1.0, '12': 1.0, 'buy': 1.0}
Word element => {'i': 1.0, 'to': 1.0, 'easy': 1.0, 'well': 1.0, 'it': 2.0, 'mess': 1.0, 'drinks': 1.0, 'spill': 1.0, 'came': 1.0, 'recommended': 1.0, 'teacher': 1.0, 'clean': 1.0, 'baby': 1.0, 'by': 1.0, 'my': 1.0, 'size': 1.0, 'highly': 1.0, 'daycare': 1.0, 'recommend': 1.0, 'no': 1.0, 'good': 1.0, 'this': 1.0, 'drip': 1.0}
Word element => {'sold': 1.0, 'by': 1.0, 'made': 1.0, 'are': 2.0, 'day': 1.0, 'old': 1.0, 'year': 1.0, 'soaked': 1.0, 'that': 1.0, 'take': 1.0, 'holder': 1.0, 'cup': 1.0, 'car': 1.0, 'ways': 1.0, 'toddler': 1.0, 'have': 2.0, 'wider': 1.0, 'they': 2.0, 'has': 1.0, 'nuk': 2.0, 'like': 1.0, 'know': 1.0, '2': 1.0, 'but': 1.0, 'most': 1.0, 'advertise': 1.0, 'graco': 1.0, 'parents': 1.0, 'll': 1.0, 'pains': 1.0, 'over': 1.0, 'don': 1.0, 'no': 2.0, 'found': 1.0, 'i': 2.0, 'my': 1.0, 'kiddo': 1.0, 'the': 3.0, 'these': 1.0, 'had': 1.0, 'leaks': 1.0, 'is': 1.0, 'leaky': 1.0, 'sippy': 1.0, 'them': 1.0, 'of': 2.0, 'leak': 2.0, 'con': 1.0, 'get': 1.0, 'except': 1.0, 'only': 2.0, 'we': 2.0, 't': 1.0, 'a': 2.0, 'than': 1.0, 'average': 1.0, 'base': 1.0, 'so': 1.0, 'for': 1.0, 'fit': 1.0, 'in': 1.0, 'any': 1.0, 'seat': 1.0, 'all': 2.0, 'cups': 2.0, 'to': 2.0, 'our': 1.0}
Word element => {'drinking': 1.0, 'had': 1.0, 'year': 1.0, 'absolute': 1.0, 'often': 1.0, 'husbands': 1.0, 'on': 1.0, 'to': 6.0, 'our': 2.0, 'cups': 4.0, 'as': 1.0, 'easy': 1.0, 'get': 1.0, 'turn': 1.0, 'in': 2.0, 'dishwasher': 1.0, 'you': 2.0, 'when': 2.0, 'it': 2.0, 'they': 3.0, 'actually': 1.0, 'for': 1.0, 'like': 1.0, 'using': 1.0, 'my': 2.0, 'reasons': 1.0, 'seriously': 1.0, 'replaced': 1.0, 'leak': 3.0, 'not': 5.0, 'there': 1.0, 'give': 1.0, 'snapsin': 1.0, 'these': 4.0, 'invested': 1.0, 'are': 1.0, 'gifts': 1.0, 'friends': 1.0, 'have': 3.0, 'by': 1.0, 'all': 2.0, 'other': 2.0, 'happy': 1.0, 'one': 2.0, 'rating': 1.0, 'we': 3.0, 'small': 1.0, 'a': 4.0, 'favorite': 2.0, 'sippy': 2.0, 'baby': 1.0, 'point': 1.0, 'started': 1.0, 'fortune': 1.0, 'put': 2.0, 'do': 2.0, 'only': 1.0, 'and': 7.0, 'love': 1.0, 'far': 1.0, 'models': 1.0, 'with': 1.0, 'buying': 1.0, 'is': 1.0, 'way': 1.0, 'them': 6.0, 'always': 1.0, 'why': 1.0, 'just': 1.0, 'dummy': 1.0, 'proof': 1.0, 'hard': 1.0, 'easilyi': 1.0, 'clean': 2.0, 'great': 1.0, 'throw': 1.0, 'no': 1.0, 'ours': 1.0, 'brush': 1.0, 'of': 2.0, 'the': 1.0, 'but': 1.0, 'so': 1.0, 'can': 1.0, 'anyway': 1.0, 'use': 1.0, 'was': 1.0, 'together': 1.0, 'piece': 1.0, 'recommend': 1.0, 'shocked': 1.0, 'i': 3.0, 'truly': 2.0, 'got': 1.0, 'here': 1.0, 'saw': 1.0, 'did': 1.0, '5star': 1.0, 'their': 1.0, 'collection': 1.0, 'been': 1.0, 'almost': 1.0}
Word element => {'clean': 1.0, 'leak': 1.0, 'or': 1.0, 'spill': 1.0, 'do': 1.0, 'as': 1.0, 'very': 1.0, 'and': 1.0, 'not': 1.0, 'hold': 1.0, 'kids': 1.0, 'these': 1.0, 'love': 1.0, 'well': 1.0, 'cups': 1.0, 'handles': 1.0, 'them': 1.0, 'easy': 2.0, 'to': 2.0, 'my': 1.0, 'the': 2.0, 'make': 1.0}
Word element => {'favorite': 1.0, 'overall': 1.0, 'great': 1.0, 'these': 3.0, '2': 1.0, 'the': 4.0, 'defective': 1.0, 'bought': 1.0, 'one': 1.0, 'for': 2.0, 'i': 3.0, 'putting': 1.0, 'we': 2.0, 'spouts': 1.0, 'stop': 1.0, 'set': 1.0, 'used': 1.0, 'have': 2.0, 'they': 2.0, 'daughter': 1.0, 'with': 1.0, 'it': 3.0, 'son': 1.0, 'now': 1.0, 'our': 1.0, 'cups': 3.0, 'to': 2.0, 'in': 3.0, 'years': 1.0, 'are': 2.0, 'taking': 1.0, 'my': 3.0, 'leaks': 1.0, 'store': 1.0, 'leaking': 1.0, 'replacement': 1.0, 'out': 2.0, 'local': 1.0, 'times': 1.0, 'use': 1.0, 'keep': 1.0, 'of': 2.0, 'spout': 2.0, 'and': 1.0, 'back': 1.0, 'except': 1.0, '3': 1.0, 'make': 1.0, 'maybe': 1.0, 'so': 1.0, 'know': 1.0, 'sell': 1.0}
Word element => {'product': 1.0, 'recommend': 1.0, 'wonderful': 1.0, 'cup': 1.0, 'leak': 1.0, 'sippy': 1.0, 'a': 1.0, 'love': 1.0, 'this': 1.0, 'it': 2.0, 'cups': 1.0, 'i': 1.0, 'has': 1.0, 'your': 1.0, 'that': 1.0, 'won': 1.0, 'if': 1.0, 'toddler': 1.0, 'so': 1.0, 'throws': 1.0, 't': 1.0, 'these': 1.0, 'stopper': 1.0, 'the': 2.0, 'liquid': 1.0, 'would': 1.0}
Word element => {'purchased': 1.0, 've': 2.0, 'works': 1.0, 'way': 1.0, 'leaking': 1.0, 'times': 1.0, 'this': 1.0, 'we': 1.0, 'other': 1.0, 'cup': 1.0, 'had': 1.0, 'for': 1.0, 'a': 1.0, 'well': 1.0, 'cups': 1.0, 'minimal': 1.0, 'few': 1.0, 'beginner': 1.0, 'but': 1.0, 'than': 1.0, 'these': 1.0, 'better': 1.0, 'are': 1.0, 'i': 1.0}
Word element => {'less': 1.0, 'you': 1.0, 'saves': 1.0, 'ring': 1.0, 'don': 1.0, 'many': 1.0, 'unlike': 1.0, 'well': 1.0, 'clean': 1.0, 'are': 1.0, 'they': 2.0, 'in': 1.0, 'drowning': 1.0, 'he': 2.0, 'bottles': 2.0, 'piece': 1.0, 'with': 2.0, 'stuck': 1.0, 'have': 2.0, 'experience': 1.0, 'resembles': 1.0, 'then': 1.0, 'try': 1.0, 'for': 2.0, 'fast': 1.0, 'wasn': 1.0, 'out': 2.0, 'came': 1.0, 'but': 1.0, 'work': 1.0, 'was': 1.0, 'husband': 1.0, 'least': 1.0, 'as': 2.0, 'actual': 1.0, 'to': 4.0, 'had': 1.0, 'tried': 2.0, 'i': 1.0, 'the': 8.0, 'german': 2.0, 'easy': 1.0, 'left': 1.0, 'closely': 1.0, 'get': 1.0, 'at': 1.0, 'since': 1.0, 'philips': 3.0, 't': 2.0, 'a': 1.0, 'we': 5.0, 'classic': 1.0, 'milk': 3.0, 'and': 3.0, 'too': 1.0, 'us': 1.0, 'natural': 2.0, 'saw': 1.0, 'these': 1.0, 'some': 1.0, 'improvement': 1.0, 'more': 1.0, 'is': 2.0, 'felt': 1.0, 'cleaning': 1.0, 'did': 1.0, 'nuk': 1.0, 'avent': 1.0, 'my': 1.0, 'company': 1.0, 'bottle': 4.0, 'so': 3.0, 'one': 1.0, 'decided': 1.0, 'this': 2.0, 'baby': 1.0, 'hardest': 1.0, 'of': 1.0, 'breastfeeding': 2.0, 'initially': 1.0, 'next': 1.0, 'that': 2.0}
Word element => {'i': 2.0, 'bottles': 2.0, 'the': 4.0, 'my': 1.0, 'take': 1.0, 'not': 2.0, 'would': 1.0, 'at': 1.0, 'colors': 1.0, 'baby': 1.0, 'first': 1.0, 'he': 2.0, 'but': 1.0, 'ready': 1.0, 'takes': 1.0, 'love': 1.0, 'believe': 1.0, 'natural': 1.0, 'was': 1.0, 'now': 1.0, 'look': 1.0, 'design': 1.0, 'and': 2.0, 'cute': 1.0}
Word element => {'here': 1.0, 'ordering': 1.0, 'money': 1.0, 'don': 1.0, 'your': 1.0, 'target': 1.0, 'waste': 1.0, '12': 1.0, 'pack': 1.0, '3': 1.0, 'get': 1.0, 'that': 1.0, 'so': 1.0, 'however': 1.0, 'out': 1.0, 'at': 1.0, 'no': 1.0, 'too': 1.0, 'week': 1.0, 'it': 1.0, 'this': 2.0, 'gagging': 1.0, 'to': 1.0, 'my': 1.0, 'can': 1.0, '7': 1.0, 'confusion': 1.0, 'bottle': 1.0, 'loves': 1.0, 'or': 1.0, 'old': 1.0, 'i': 1.0, 'you': 1.0, 'point': 1.0, 'choking': 1.0, 't': 1.0, '99': 1.0, 'nipple': 1.0, 'love': 1.0, 'for': 2.0, 'bf': 1.0, 'would': 1.0, 'like': 1.0}
Word element => {'with': 1.0, 'nuk': 1.0, 'feeding': 1.0, 'track': 1.0, 'helps': 1.0, 'on': 1.0, 'markings': 1.0, 'overall': 1.0, 'shape': 1.0, 'because': 1.0, 'bite': 1.0, 'about': 1.0, 'talking': 1.0, 'both': 1.0, 'onto': 1.0, 'm': 2.0, 'i': 2.0, 'what': 1.0, 're': 1.0, 'parent': 1.0, 'new': 1.0, 'you': 4.0, 'if': 1.0, 'big': 1.0, 'issues': 1.0, 'and': 1.0, 'phillips': 1.0, 'satisfied': 1.0, 'liked': 1.0, 'ones': 1.0, 'deal': 1.0, 'the': 9.0, 'feeds': 1.0, 'nipple': 2.0, 'aventis': 2.0, 'from': 1.0, 'it': 1.0, 'disliked': 1.0, 'decided': 1.0, 'are': 1.0, 'darn': 1.0, 'helped': 1.0, 'now': 1.0, 'weeks': 1.0, 'an': 1.0, 'this': 3.0, 'how': 1.0, 'he': 1.0, 'is': 2.0, 'reducing': 1.0, 'pretty': 1.0, 'good': 1.0, 'my': 4.0, 'few': 1.0, 'in': 4.0, 'air': 1.0, 'baby': 5.0, 'much': 1.0, 'tiny': 1.0, 'measurement': 1.0, 'first': 1.0, 'beginning': 1.0, 'using': 1.0, 'know': 1.0, 'like': 1.0, 'which': 3.0, 'gas': 1.0, 'a': 4.0, 'hole': 1.0, 's': 2.0, 'we': 1.0, 'to': 3.0, 'look': 1.0, 'was': 1.0, 'where': 1.0, 'product': 2.0, 'for': 1.0, 'charm': 1.0, 'others': 1.0, 'so': 1.0, 'bottle': 2.0, 'has': 2.0, 'probably': 2.0, 'system': 1.0, 'area': 1.0, 'of': 1.0, 'meets': 1.0, 'helpful': 1.0}
Word element => {'get': 1.0, 'hard': 1.0, 'it': 2.0, 'return': 1.0, 'palate': 1.0, 'at': 1.0, 'no': 1.0, 'top': 1.0, 'hole': 1.0, 'also': 1.0, 'the': 5.0, 'these': 1.0, 'pressing': 1.0, 'this': 1.0, 'found': 1.0, 'bottle': 1.0, 'son': 2.0, 'very': 2.0, 'your': 1.0, 'on': 2.0, 'is': 3.0, 'were': 1.0, 'that': 1.0, 'strange': 1.0, 'likes': 1.0, 'be': 1.0, 'supposed': 1.0, 'but': 1.0, 'work': 1.0, 'to': 2.0, 'all': 1.0, 'any': 1.0, 'and': 1.0, 'milk': 1.0, 'different': 1.0, 'out': 1.0, 'child': 1.0, 'pacifiers': 1.0, 'bottles': 3.0, 'my': 2.0, 'may': 1.0, 'if': 1.0, 'orthodontic': 1.0, 'nuk': 1.0, 'does': 1.0, 'not': 1.0, 'cannot': 1.0, 'know': 1.0, 'you': 1.0}
Word element => {'quite': 1.0, 'milk': 1.0, 'fast': 2.0, 'from': 1.0, 'very': 1.0, 'out': 1.0, 'because': 1.0, 'choke': 1.0, 'baby': 1.0, 'upside': 1.0, 'holding': 1.0, 'nipples': 1.0, 'size': 1.0, 'month': 1.0, 'in': 1.0, 'would': 2.0, 'compliment': 1.0, 'breastfeeding': 1.0, 'down': 1.0, 'liquid': 1.0, 'both': 1.0, 'even': 1.0, 'they': 1.0, 'comes': 1.0, 'hoping': 1.0, 'bottles': 1.0, 'terms': 1.0, 'drips': 1.0, 'of': 2.0, 'these': 1.0, 'nipple': 2.0, 'the': 4.0, 'bottle': 3.0, 's': 1.0, 'and': 1.0, 'shape': 1.0, 'my': 1.0, 'rate': 1.0, 'bought': 1.0, 'flow': 1.0, 'using': 1.0, '0': 1.0}
Word element => {'actually': 1.0, 'new': 1.0, 'release': 1.0, '3': 1.0, 'did': 1.0, 'price': 1.0, 'is': 1.0, 'the': 3.0, 'and': 1.0, 'clearly': 1.0, 'air': 1.0, 'design': 1.0, 'for': 2.0, 'right': 1.0, 'nuk': 1.0, 'pretty': 1.0, 'choice': 1.0, 'hep': 1.0, 'baby': 1.0, 'bottles': 1.0, 'decent': 1.0}
Word element => {'break': 1.0, 'parts': 1.0, 'elite': 1.0, 'over': 1.0, 'actually': 1.0, 'clerk': 1.0, 'sales': 1.0, 'store': 1.0, 'box': 1.0, 'some': 1.0, 'last': 1.0, 'fewer': 2.0, 'they': 2.0, 'but': 1.0, 'older': 1.0, 'refills': 2.0, 'after': 1.0, 'hand': 1.0, 'table': 1.0, 'lever': 1.0, 'line': 1.0, 'squishy': 1.0, '2': 2.0, 'food': 1.0, 'known': 1.0, 'through': 4.0, 'first': 1.0, 'working': 1.0, 'diapers': 4.0, 'daughter': 1.0, 'got': 3.0, 'room': 3.0, 'once': 1.0, 'baby': 1.0, 'she': 1.0, 'it': 6.0, 'been': 2.0, 'that': 2.0, 'totally': 1.0, 'genie': 4.0, 'less': 1.0, 'born': 1.0, 'then': 2.0, 'we': 8.0, 'ago': 1.0, 't': 2.0, 'a': 3.0, 'go': 2.0, 'assumed': 1.0, 'almost': 1.0, 'now': 2.0, 'was': 3.0, 'incidentally': 1.0, 'drop': 1.0, 'model': 1.0, 'time': 1.0, 'new': 1.0, 'for': 2.0, 'pooping': 1.0, 'years': 1.0, 'so': 1.0, 'push': 2.0, 'you': 1.0, 'ii': 1.0, 'with': 2.0, 'this': 3.0, 'hang': 1.0, 'big': 2.0, 'great': 1.0, 'our': 3.0, 'pail': 2.0, 'to': 3.0, 'recommended': 1.0, 'and': 10.0, 'since': 1.0, 'as': 3.0, 'diaper': 6.0, 'of': 2.0, 'the': 14.0, 's': 4.0, 'refill': 1.0, 've': 1.0, 'down': 1.0, 'used': 1.0, 'pushing': 1.0, 'opening': 2.0, 'don': 1.0, 'when': 2.0, 'what': 1.0, 'needed': 1.0, 'nothing': 1.0, 'more': 1.0, 'at': 2.0, 'is': 1.0, 'completely': 1.0, 'introduced': 1.0, 'bottom': 1.0, 'solid': 1.0, 'smell': 1.0, 'noticed': 1.0, 'her': 3.0, 'started': 1.0, 'wasn': 1.0, 'holding': 1.0, 'house': 1.0, 'get': 1.0, 'moved': 1.0, 'except': 1.0, 'in': 2.0, 'still': 1.0, 'smelled': 1.0, 'contains': 1.0, 'odors': 1.0, 'from': 1.0, 'lot': 1.0, 'naptime': 1.0, 'i': 1.0, 'well': 1.0, 'putting': 1.0, 'changing': 2.0, 'put': 1.0, 'do': 1.0}
Word element => {'having': 1.0, 'frustration': 1.0, 'lid': 1.0, 'bend': 1.0, 'my': 1.0, 'heartbeat': 1.0, 'd': 1.0, 'they': 1.0, 'in': 2.0, 'holding': 1.0, 'stronger': 1.0, 'theres': 1.0, 'is': 2.0, 'also': 1.0, 'rings': 1.0, 'use': 2.0, 'size': 1.0, 'system': 1.0, 'no': 1.0, 'problems': 1.0, 'possible': 1.0, 'fast': 1.0, 'replacement': 1.0, 'out': 1.0, 'shove': 1.0, 'trying': 1.0, 'diaper': 1.0, 'super': 1.0, 'can': 2.0, 'mechanical': 1.0, 'unjam': 1.0, 'other': 1.0, 'smell': 1.0, 'them': 1.0, 'failures': 1.0, 'i': 5.0, 'matter': 1.0, 'while': 2.0, 'just': 1.0, 'elite': 3.0, 'snaps': 1.0, 'better': 2.0, 'everything': 1.0, 'shut': 1.0, 'if': 3.0, 'only': 1.0, 'much': 2.0, 'do': 2.0, 'get': 1.0, 'reach': 1.0, 'place': 1.0, 'sight': 1.0, 'the': 9.0, 'wish': 1.0, 'this': 3.0, 'with': 2.0, 'it': 2.0, 'was': 1.0, 'as': 6.0, 'to': 5.0, 'fewer': 1.0, 'and': 2.0, 'tall': 1.0, 'has': 1.0, 'prefer': 1.0, 'that': 1.0, 'vastly': 1.0, 'mechanism': 2.0, 'count': 1.0, 'number': 1.0, 'maintenance': 1.0, 'of': 3.0, 're': 2.0, 'foot': 1.0, 'what': 1.0, 'had': 1.0, 'pedal': 1.0, 'or': 1.0, 'messy': 1.0, 'gross': 2.0, 'buy': 1.0, 'collar': 1.0, 'retains': 1.0, 'times': 1.0, 'you': 4.0, 'tighter': 1.0, 'have': 2.0, 'could': 1.0, 'going': 1.0, 't': 1.0, 'a': 3.0}
Word element => {'easy': 1.0, 'holds': 1.0, 'one': 1.0, 'munchkin': 1.0, 'bought': 1.0, 'recently': 1.0, 'clamp': 1.0, 'pain': 1.0, 'threw': 1.0, 'in': 1.0, 'shove': 1.0, 'of': 2.0, 'hold': 1.0, 'at': 1.0, 'not': 2.0, 'doesent': 1.0, 'have': 1.0, 'all': 1.0, 'put': 1.0, 'but': 1.0, 'diapers': 1.0, 'pail': 1.0, '10': 1.0, 'is': 3.0, 'more': 2.0, 'the': 1.0, 'diaper': 4.0, 'maybe': 1.0, 'size': 1.0, '3': 1.0, 'dispose': 1.0, 'impressed': 1.0, 'and': 5.0, 'a': 5.0, 'it': 1.0, 'with': 1.0, 'this': 1.0, 'quick': 2.0, 'you': 1.0, 'way': 2.0, 'to': 3.0}
Word element => {'purchase': 1.0, 'that': 1.0, 'so': 1.0, 'add': 1.0, 'bags': 2.0, 'you': 1.0, 'fresh': 1.0, 'not': 1.0, 'can': 1.0, 'i': 1.0, 'cavet': 1.0, 'system': 1.0, 'selling': 1.0, 'its': 1.0, 'to': 1.0, 'design': 1.0, 'up': 1.0, 'always': 1.0, 'of': 1.0, 'trash': 1.0, 'smells': 2.0, 'great': 1.0, 'the': 5.0, 'one': 1.0, 'yet': 1.0, 'room': 1.0, 'is': 2.0, 'do': 1.0, 'have': 1.0, 'with': 1.0, 'this': 2.0, 'money': 1.0, 'about': 1.0, 'worry': 1.0, 'nasty': 1.0, 'makes': 1.0}
Word element => {'smells': 1.0, 'recommended': 1.0, 'on': 1.0, 'the': 1.0, 'contain': 1.0, 'buy': 1.0, 'i': 1.0, 'a': 1.0, 'lasts': 1.0, 'bags': 1.0, 'your': 1.0, 'perfectly': 1.0, 'couple': 1.0, 'and': 1.0, 'very': 4.0, 'one': 2.0, 'for': 1.0, 'brilliant': 1.0, 'subscription': 1.0, 'pail': 1.0, 'of': 2.0, '34': 2.0, 'weeks': 1.0, 'presents': 1.0, 'amazon': 1.0, 'is': 1.0, 'with': 1.0, 'this': 1.0, 'messy': 1.0, 'little': 1.0, 'leaves': 1.0, 'smelly': 1.0, 'contained': 1.0, 'easy': 2.0, 'keeping': 1.0, 'use': 1.0, 'rolls': 1.0, 'to': 3.0, 'assemble': 1.0, 'roll': 1.0}
Word element => {'genie': 1.0, 'diaper': 1.0, 'the': 1.0, 'them': 1.0, 'add': 1.0, 'then': 1.0, 'baggies': 1.0, 'scented': 1.0, 'use': 1.0, 'will': 2.0, 'diapers': 3.0, 'put': 1.0, 'but': 1.0, 'an': 1.0, 'after': 1.0, 'not': 2.0, 'much': 1.0, 'do': 1.0, 'and': 2.0, 'days': 1.0, 'poopy': 1.0, 'don': 1.0, 'longer': 1.0, 'two': 1.0, 'hours': 1.0, 'sit': 1.0, 'have': 1.0, 'there': 2.0, 'stink': 1.0, 'of': 1.0, 'in': 2.0, 'inner': 1.0, 'for': 1.0, 'than': 1.0, 't': 1.0, 'a': 2.0, 'just': 1.0, 'few': 1.0, '18': 1.0, 'near': 1.0, 'plastic': 1.0, '7': 1.0, 'or': 1.0, 'let': 1.0, 'fittings': 1.0, 'are': 1.0, 'claim': 1.0, 'hold': 2.0, 'three': 1.0, 'lot': 1.0, 'if': 1.0, 'you': 1.0, 'it': 2.0, 'month': 1.0, 'old': 1.0, 'to': 2.0, 'as': 1.0}
Word element => {'for': 1.0, 'way': 1.0, 'with': 1.0, 'friends': 1.0, 'this': 1.0, 'be': 1.0, 'recommending': 1.0, 'll': 1.0, 'breeze': 1.0, 'using': 1.0, 'was': 3.0, 'look': 2.0, 'tacky': 1.0, 'pedal': 1.0, 'had': 1.0, 'sure': 1.0, 'easy': 1.0, 'nursery': 1.0, 'that': 1.0, 'babies': 2.0, 'have': 1.0, 'the': 5.0, 'these': 2.0, 'diaper': 2.0, 'my': 1.0, 'may': 1.0, 'another': 1.0, 'makes': 1.0, 'pleasantly': 1.0, 'on': 1.0, 'bath': 1.0, 'worried': 1.0, 'a': 2.0, 'we': 1.0, 'genie': 2.0, 'one': 1.0, 'person': 1.0, 'i': 4.0, 'two': 1.0, 'at': 1.0, 'assembly': 1.0, 'of': 1.0, 'and': 4.0, 'master': 1.0, 'in': 3.0, 'to': 1.0, 'our': 1.0, 'as': 1.0, 'little': 1.0, 'very': 1.0, 'not': 1.0, 'modern': 1.0, 'but': 1.0, 'surprised': 1.0, 'seen': 1.0, 'when': 1.0, 'it': 1.0, 'arrived': 1.0, 'clean': 1.0, 'received': 1.0, 'how': 1.0, 'they': 1.0, 'foot': 1.0}
Word element => {'go': 1.0, 'mamas': 1.0, 'recommend': 1.0, 'scarf': 1.0, 'used': 1.0, 'have': 1.0, 'careful': 1.0, 'a': 8.0, 'warm': 2.0, 'bit': 3.0, 'neck': 2.0, 'or': 1.0, 'large': 1.0, 'stars': 1.0, 'love': 3.0, 'product': 2.0, 'opening': 1.0, 'give': 1.0, 'me': 1.0, 'not': 1.0, 'didn': 1.0, 'carry': 1.0, 'and': 3.0, 'which': 1.0, 'the': 7.0, 'of': 1.0, 'really': 1.0, 'fall': 1.0, 'that': 2.0, 'was': 1.0, 'bra': 1.0, 'as': 5.0, 'is': 5.0, 'look': 1.0, 'right': 1.0, 'light': 1.0, 'using': 1.0, 'reason': 1.0, 'in': 1.0, 'so': 1.0, 'can': 4.0, 'but': 2.0, 'trend': 1.0, 'most': 1.0, 'only': 1.0, 'end': 1.0, 'like': 2.0, 'covers': 1.0, 'this': 3.0, 'kids': 1.0, 'i': 8.0, 'otherwise': 1.0, 'be': 2.0, 'winter': 1.0, 'about': 1.0, 'it': 7.0, 'wear': 1.0, 'could': 1.0, 'will': 1.0, 'down': 3.0, 'nursing': 5.0, 'on': 3.0, 'positioning': 1.0, 'make': 1.0, 'to': 2.0, 'pretty': 1.0, 'while': 1.0, 'low': 1.0, 'things': 1.0, 'you': 2.0, 'traditional': 1.0, 'plus': 1.0, 'are': 1.0, 't': 1.0, 'fairly': 1.0, '5': 1.0, 'blanket': 1.0, 'pull': 1.0, 'top': 1.0, 'exposed': 1.0, 'tad': 1.0, 'up': 1.0, 'for': 2.0, 'fabric': 2.0, 'great': 1.0, 'feel': 1.0, 'with': 2.0, 'get': 1.0, 'feeding': 1.0, 'bulky': 1.0, 'would': 2.0, 'cut': 1.0, 'they': 1.0, 'gauzy': 1.0, 'if': 2.0, 'still': 1.0, 'now': 1.0, 'slide': 1.0, 'overall': 1.0, 'how': 1.0, 'around': 1.0, 'obvious': 1.0, 'cover': 1.0}
Word element => {'in': 1.0, 'sit': 1.0, 'can': 1.0, 'feel': 1.0, 'sturdy': 1.0, 'she': 2.0, 'and': 2.0, 'so': 1.0, 'when': 1.0, 'daughter': 1.0, 'comfortable': 1.0, 'for': 1.0, 'grand': 1.0, 'girl': 1.0, 'loves': 1.0, 'my': 1.0, 'bought': 1.0, 'comes': 1.0, 'to': 1.0, 'i': 2.0, 'visit': 1.0, 's': 1.0, 'this': 1.0, 'it': 4.0, 'call': 1.0, 'even': 1.0, 'her': 1.0, 'very': 1.0, 'big': 1.0, 'chair': 1.0, 'is': 1.0}
Word element => {'uses': 1.0, 'son': 1.0, 'my': 1.0, 'outlet': 1.0, 'placed': 1.0, 'was': 2.0, 'what': 1.0, 'had': 1.0, 'its': 1.0, 'the': 4.0, 'upside': 2.0, 'made': 1.0, 'out': 2.0, 'attachment': 1.0, 'cheaply': 1.0, 'how': 1.0, 'found': 1.0, 'this': 1.0, 'longer': 1.0, 'down': 2.0, 'direction': 1.0, 'quickly': 1.0, 'expect': 1.0, 'to': 2.0, 'as': 1.0, 'from': 1.0, 'know': 1.0, 'not': 1.0, 'i': 2.0, 'didn': 1.0, 'o': 1.0, 'so': 2.0, 'after': 1.0, 'you': 1.0, 'way': 1.0, 'show': 1.0, 'since': 1.0, 't': 1.0, 'a': 2.0, 'did': 1.0, 'have': 1.0, 'but': 1.0, 'change': 1.0, 'also': 1.0, 'light': 1.0, 'gave': 1.0, 'no': 1.0, 'about': 1.0, 'and': 2.0, 'it': 3.0, 'month': 1.0, 'useless': 1.0}
Word element => {'myself': 1.0, 'another': 1.0, 'comments': 1.0, 'made': 1.0, 'her': 1.0, 'school': 1.0, 'one': 1.0, 'for': 2.0, 'daughter': 1.0, 'but': 1.0, 'uses': 1.0, 'handbag': 1.0, 'my': 1.0, 'loved': 1.0, 'it': 3.0, 'this': 1.0, 'nice': 2.0, 'of': 2.0, 'alot': 1.0, 'skull': 1.0, 'a': 1.0, 'to': 1.0, 'its': 1.0, 'she': 2.0, 'buy': 1.0, 'i': 2.0, 'took': 1.0, 'have': 1.0, 'all': 1.0, 'likes': 1.0, 'friends': 1.0, 'rock': 1.0, 'really': 1.0, 'type': 1.0, 'and': 1.0, 'things': 1.0}
Word element => {'lot': 1.0, 'tried': 1.0, 'there': 1.0, 'her': 3.0, 'feeding': 2.0, 'sides': 2.0, 'of': 4.0, 'coming': 2.0, 'when': 2.0, 'daughter': 1.0, 'was': 1.0, 'now': 1.0, 'mouth': 3.0, 'love': 1.0, 'one': 1.0, 'went': 1.0, 'my': 1.0, 'these': 2.0, 'the': 3.0, 'great': 1.0, 'bottle': 1.0, 'so': 2.0, 'bottles': 2.0, 'milk': 2.0, 'and': 2.0, 'breastfeeding': 1.0, 'out': 3.0, 'from': 1.0, 'both': 1.0, 'best': 1.0, 'to': 2.0, 'as': 1.0, 'a': 1.0, 'we': 3.0, 'found': 1.0, 'nipples': 3.0, 'be': 1.0, 'with': 1.0, 'no': 1.0, 'normal': 1.0, 'are': 3.0, 'on': 1.0, 'preemie': 1.0, 'more': 1.0, 'level': 1.0, 'they': 1.0, 'well': 1.0, 'much': 1.0, 'better': 1.0, 'working': 1.0, 'then': 1.0}
Word element => {'pieces': 1.0, 'others': 1.0, 'use': 1.0, 'to': 1.0, 'gotta': 1.0, 'bottles': 1.0, 'love': 2.0, 'purple': 1.0, 'adorable': 1.0, 'ship': 1.0, 'fast': 1.0, 'great': 1.0, 'the': 1.0, 'my': 1.0, 'they': 1.0, 'are': 1.0, 'dr': 1.0, 'browns': 1.0, 'with': 1.0, 'only': 1.0, 'and': 1.0, 'bottle': 1.0, 'packaging': 1.0, 'tried': 1.0, 'i': 1.0, 'used': 1.0, 'both': 1.0, 'less': 1.0, 'kids': 1.0}
Word element => {'is': 1.0, 'color': 1.0, 'great': 1.0, 'the': 1.0, 'her': 1.0, 'in': 1.0, 'our': 1.0, 's': 1.0, 'them': 3.0, 'a': 1.0, 'since': 1.0, 'get': 1.0, 'and': 1.0, 'been': 1.0, 'brown': 1.0, 'purple': 1.0, 'dr': 1.0, 'born': 1.0, 'have': 1.0, 'saw': 1.0, 'we': 1.0, 'had': 1.0, 'to': 1.0, 'was': 1.0, 'for': 1.0, 'using': 1.0, 'love': 1.0, 'daughter': 1.0, 'when': 1.0, 'i': 2.0}
Word element => {'babiesrus': 1.0, 'at': 1.0, 's': 1.0, 'expensive': 1.0, 'like': 1.0, 'only': 1.0, 'just': 1.0, 'all': 1.0, 'bottles': 2.0, 'so': 1.0, 'significantly': 1.0, 'brown': 1.0, 'purple': 1.0, 'are': 3.0, 'dr': 1.0, 'great': 1.0, 'the': 1.0, 'more': 1.0, 'these': 1.0, 'pretty': 1.0, 'they': 2.0, 'amazon': 1.0, 'is': 1.0, 'on': 1.0, '18': 1.0}
Word element => {'than': 1.0, 'smaller': 1.0, 'and': 1.0, 'a': 2.0, 'beautiful': 1.0, 'i': 2.0, 'it': 3.0, 'expected': 1.0, 've': 1.0, 'little': 1.0, 'been': 1.0, 's': 3.0, 'waiting': 1.0, 'although': 1.0, 'pricey': 1.0, 'to': 1.0, 'this': 1.0, 'pillow': 1.0, 'lot': 1.0, 'purchase': 1.0, 'b': 1.0, 'c': 1.0}
Word element => {'silver': 1.0, 'being': 1.0, 'just': 1.0, 'stand': 1.0, 'better': 1.0, 'little': 1.0, 'matched': 1.0, 'out': 1.0, 'screws': 2.0, 'existing': 1.0, 'went': 1.0, 'a': 1.0, 'well': 1.0, 'do': 1.0, 'and': 1.0, 'these': 1.0, 'great': 1.0, 'the': 2.0, 'mounts': 1.0, 'regular': 1.0, 'is': 1.0, 'as': 1.0, 'very': 1.0, 'worked': 1.0, 'product': 2.0, 'wished': 1.0, 'only': 1.0, 'with': 1.0, 'this': 1.0, 'theme': 1.0, 'we': 1.0, 'already': 1.0, 'had': 1.0, 'easily': 1.0, 'thing': 1.0, 'i': 1.0, 'that': 1.0}
Word element => {'expected': 1.0, 'as': 1.0, 'if': 1.0, 'simple': 1.0, 'out': 1.0, 'around': 1.0, 'top': 1.0, 'heaping': 1.0, 'less': 2.0, 'works': 1.0, 'does': 1.0, 'it': 1.0, 'compact': 1.0, 'and': 1.0, 'a': 1.0, 'you': 1.0, 'spoonful': 1.0, 'in': 1.0, 'food': 1.0, 'great': 1.0, 'the': 1.0, 'more': 1.0, 'mess': 1.0, 'squish': 1.0, 'but': 2.0, 'put': 1.0, 'work': 1.0}
Word element => {'are': 1.0, 'makesportions': 1.0, 'buying': 1.0, 'i': 1.0, 'price': 1.0, 'item': 1.0, 'through': 1.0, 'putting': 1.0, 'after': 1.0, 'eat': 1.0, 'you': 1.0, 'easy': 1.0, 'notsomething': 1.0, 'foods': 1.0, 'taking': 1.0, 'definitely': 1.0, 'workswell': 1.0, 'and': 2.0, 'interesting': 1.0, 'like': 3.0, 'park': 1.0, 'fruits': 1.0, 'feed': 1.0, 'perfect': 1.0, 'soft': 2.0, 'this': 2.0, 'it': 5.0, 'hard': 1.0, 'think': 1.0, 'put': 1.0, 'on': 2.0, 'is': 1.0, 'an': 1.0, 'chicken': 1.0, 'tool': 1.0, 'for': 3.0, 'making': 1.0, 'baby': 2.0, 'but': 1.0, 'food': 2.0, 'can': 1.0, 'worth': 1.0, 'or': 2.0, 'something': 1.0, 'babies': 1.0, 'that': 2.0, 'to': 1.0, 'as': 1.0, 'our': 1.0, 'in': 1.0, 'cankind': 1.0, 'clean': 1.0, 'personally': 1.0, 'even': 1.0, '62': 2.0, 'picnic': 1.0, 'pasta': 1.0, 'what': 1.0, 's': 3.0, 'we': 3.0, 'a': 1.0, 'trips': 1.0, 'at': 1.0, 'the': 3.0, 'of': 1.0}
Word element => {'of': 1.0, 'enough': 1.0, 'just': 1.0, 'products': 1.0, 'i': 1.0, 'also': 1.0, 'is': 1.0, 'gauge': 1.0, 'cold': 1.0, 'say': 1.0, 'water': 1.0, 't': 1.0, 'the': 3.0, '4moms': 1.0, 'can': 1.0, 'without': 1.0, 'tub': 2.0, 'to': 1.0, 'so': 1.0, 'time': 1.0, 'good': 1.0, 'loves': 1.0, 'any': 1.0, 'about': 1.0, 'baby': 1.0, 'my': 1.0, 'things': 1.0, 'let': 1.0, 'bathtub': 1.0, 'us': 1.0, 'allows': 1.0, 'him': 1.0, 'splash': 1.0, 'temperature': 1.0, 'getting': 1.0, 'and': 2.0, 'as': 2.0, 'brilliant': 1.0, 'love': 1.0, 'for': 1.0, 'long': 1.0, 'this': 3.0, 'he': 1.0, 'bath': 1.0, 'lounge': 1.0, 'wants': 1.0}
Word element => {'space': 1.0, 'storage': 2.0, 'bathtub': 1.0, 'in': 1.0, 'side': 3.0, 'left': 1.0, 'tub': 5.0, 'beeping': 1.0, 'hovers': 1.0, 'may': 1.0, 'my': 5.0, 'have': 3.0, 'you': 3.0, 'unless': 1.0, 'countertop': 2.0, 'drain': 4.0, 'hand': 1.0, 'bathe': 1.0, 'will': 1.0, 'bit': 1.0, 'time': 1.0, 'valves': 1.0, 'so': 2.0, 'bathed': 1.0, 'pain': 1.0, 'waste': 1.0, 'fresh': 1.0, 'does': 1.0, 'dirty': 2.0, 'flowing': 1.0, 'between': 1.0, 'when': 3.0, 'seal': 1.0, 'and': 2.0, 'also': 3.0, 'plugged': 2.0, 'quite': 1.0, 'into': 1.0, 'because': 2.0, 'that': 1.0, 'flows': 1.0, 'bulky': 1.0, 'washes': 1.0, 'would': 1.0, 'position': 1.0, 'higher': 1.0, 'annoying': 1.0, 'for': 3.0, 'love': 1.0, 'great': 1.0, 'of': 5.0, 'the': 17.0, 'but': 2.0, 'bigger': 1.0, 'if': 2.0, 'stay': 1.0, 'e': 1.0, 'accommodate': 1.0, 'opposite': 1.0, 'out': 1.0, 'newborn': 1.0, 'price': 1.0, 'baby': 3.0, 'a': 6.0, 'fit': 1.0, 't': 3.0, 'offer': 1.0, 'g': 1.0, 'wish': 1.0, 'freely': 1.0, 'growing': 1.0, 'water': 8.0, 'inside': 1.0, 'from': 1.0, 'to': 3.0, 'other': 1.0, 'open': 1.0, 'temp': 2.0, 'through': 1.0, 'valve': 1.0, 'sitting': 1.0, 'noise': 1.0, 'reaches': 1.0, 'top': 2.0, 'block': 1.0, '100': 2.0, '99': 1.0, 'or': 1.0, 'is': 3.0, 'him': 1.0, 'it': 5.0, '9': 1.0, 'doesn': 1.0, 'was': 1.0, 'sink': 1.0, 'with': 1.0, 'on': 4.0, 'long': 1.0, 'noticed': 1.0, 'don': 2.0, 'i': 4.0, 'well': 1.0, 'there': 1.0, 'always': 1.0, 'tons': 1.0}
Word element => {'plastic': 1.0, 'gone': 1.0, 'had': 1.0, 'babies': 1.0, 'much': 1.0, 'just': 2.0, 'control': 1.0, 'head': 1.0, 'good': 1.0, 'with': 2.0, 'little': 2.0, 'the': 2.0, 'my': 1.0, 'is': 2.0, 'might': 1.0, 'a': 5.0, 'slips': 1.0, 'of': 1.0, 'there': 1.0, 'big': 1.0, 'one': 2.0, 'for': 2.0, 'love': 1.0, 'fan': 1.0, 'i': 7.0, 'basic': 1.0, 'would': 1.0, 'though': 1.0, 'not': 1.0, 'wish': 1.0, 'this': 2.0, 'wanted': 1.0, 'dramatic': 1.0, 'tub': 4.0, 'towel': 1.0, 'honestly': 1.0, 'also': 1.0, 'but': 2.0, 'put': 1.0, 'm': 1.0, 'too': 1.0, 'and': 1.0, 'in': 2.0, 'slides': 1.0, 'be': 2.0, 'incline': 1.0, 'as': 2.0, 'to': 2.0, 'all': 1.0, 'have': 1.0, 'so': 1.0, 'still': 1.0, 'kiddos': 1.0, 'mat': 1.0, 'down': 1.0, 'okay': 1.0, 'even': 1.0, 'grippy': 1.0, 'over': 1.0, 'basin': 2.0, 'expected': 1.0, 'has': 1.0, 'pretty': 1.0, 'which': 1.0}
Word element => {'enjoyable': 1.0, 'very': 1.0, 'experience': 1.0, 'my': 1.0, 'it': 1.0, 'cold': 1.0, 'in': 1.0, 'make': 1.0, 'love': 1.0, 'the': 3.0, 'great': 1.0, 'can': 1.0, 'sure': 1.0, 'i': 1.0, 'or': 1.0, 'bath': 1.0, 'thermometer': 1.0, 'use': 1.0, 'easy': 1.0, 'to': 1.0, 'product': 1.0, 'made': 1.0, 'tub': 1.0, 'sons': 1.0, 'and': 1.0, 'hot': 1.0, 'so': 1.0, 'you': 1.0, 'water': 1.0, 'too': 1.0, 'is': 1.0, 'not': 1.0}
Word element => {'temperature': 1.0, 'at': 1.0, 'recommendable': 1.0, 'water': 1.0, 'of': 1.0, 'just': 1.0, 's': 1.0, 'it': 1.0, 'great': 1.0, 'highly': 1.0, 'and': 1.0, 'for': 1.0, 'they': 1.0, 'correct': 1.0, 'the': 3.0, 'are': 1.0, 'amount': 1.0, 'adequate': 1.0, 'babies': 1.0, 'comfortable': 1.0, 'get': 1.0}
Word element => {'thermometer': 1.0, 'had': 1.0, 'original': 1.0, 'have': 2.0, 'here': 1.0, 'back': 1.0, 'no': 2.0, 'we': 3.0, 'loves': 1.0, 'aches': 1.0, 've': 1.0, 'in': 2.0, 'kitchen': 1.0, 'tub': 2.0, 'sink': 1.0, 'regular': 1.0, 'issues': 1.0, 'version': 1.0, 'baths': 1.0, 'my': 1.0, 'the': 4.0, 'with': 1.0, 'this': 1.0, 'it': 2.0, 'used': 1.0, 'his': 1.0, 'works': 1.0, 'charm': 1.0, 'son': 1.0, 'as': 2.0, 'and': 2.0, 'like': 1.0, 'well': 1.0, 'a': 1.0}
Word element => {'water': 1.0, 'adults': 1.0, 'the': 2.0, 'shower': 1.0, 'my': 1.0, 'temperature': 1.0, 'perfectly': 1.0, 'in': 2.0, 'year': 1.0, 'not': 1.0, 'fits': 1.0, 'bath': 1.0, 'use': 2.0, 'easy': 1.0, 'when': 1.0, 'stays': 1.0, 'way': 1.0, 'enjoys': 1.0, 'to': 1.0, 'right': 1.0, 'place': 1.0, 'old': 1.0, '3': 1.0, 'own': 1.0, 'regulating': 1.0, 'his': 1.0}
Word element => {'easily': 1.0, 'faucet': 1.0, 'and': 1.0, 'bath': 1.0, 'well': 1.0, 's': 1.0, 'normal': 1.0, 'at': 1.0, 'really': 1.0, 'has': 1.0, 'for': 1.0, 'works': 1.0, 'it': 1.0, 'great': 1.0, 'finding': 1.0, 'my': 1.0, 'the': 1.0, 'fit': 1.0, 'this': 1.0, 'temperature': 1.0, 'been': 1.0, 'baby': 1.0, 'exact': 1.0}
Word element => {'attention': 1.0, 'your': 1.0, 'get': 1.0, 'my': 1.0, 'running': 1.0, 'pretty': 1.0, 'it': 1.0, 'this': 1.0, 'only': 1.0, 'likely': 1.0, 'loud': 1.0, 'will': 1.0, 'need': 1.0, 'would': 1.0, 'display': 1.0, 't': 2.0, 'the': 4.0, 'red': 1.0, 'is': 4.0, 'one': 1.0, 'parents': 1.0, 'of': 1.0, '34': 2.0, 'clearly': 1.0, 'you': 3.0, 'that': 4.0, 'school': 1.0, 'beep': 1.0, 'isn': 1.0, 'tell': 1.0, 'luxury': 1.0, 'products': 1.0, 'handy': 1.0, 'old': 1.0, 'but': 2.0, 'most': 1.0, 'those': 1.0, 'heard': 1.0, 'complaint': 1.0, 'enough': 1.0, 'to': 2.0, 'water': 2.0, 'quote': 1.0, 'too': 1.0, 'hot': 1.0, 'be': 1.0, 'don': 1.0, 'over': 1.0, 'flashing': 1.0, 'warn': 1.0, 'still': 1.0}
Word element => {'recommend': 1.0, 'highly': 1.0, 'right': 1.0, 'ever': 1.0, 'thing': 1.0, 'best': 1.0, 'bought': 1.0, 'displays': 1.0, 'the': 1.0, 'my': 1.0, 'temperature': 1.0, 'this': 1.0, 'said': 1.0, 'for': 2.0, 'daughter': 1.0, 'in': 1.0, 'law': 1.0, 'it': 1.0, 's': 1.0, 'baby': 1.0, 'she': 1.0}
Word element => {'item': 1.0, 'on': 1.0, 'time': 1.0, 'long': 1.0, 'least': 1.0, 'for': 1.0, 'yet': 1.0, 'the': 2.0, 'company': 1.0, 'internet': 1.0, '3': 1.0, 'of': 1.0, 'searching': 1.0, 'me': 1.0, '1': 1.0, 'as': 1.0, 'reimbursed': 1.0, 'wanted': 1.0, 'just': 1.0, 'not': 1.0, 'spent': 1.0, 'at': 1.0, 'a': 2.0, 'is': 2.0, 'it': 1.0, 'advertised': 1.0, 'only': 1.0, 'this': 2.0, 'i': 2.0, 'pack': 1.0, 'all': 1.0, 'but': 2.0, 'three': 1.0, 'received': 1.0}
Word element => {'wash': 1.0, 'hand': 1.0, 'easy': 1.0, 'they': 1.0, 'weight': 1.0, 'light': 1.0, 'food': 1.0, 'sturdy': 1.0, 'wet': 1.0, 'her': 1.0, 'dog': 1.0, 'mix': 1.0, 'my': 1.0, 'are': 1.0, 'actually': 1.0, 'i': 2.0, 'this': 1.0, 'with': 1.0, 'to': 2.0, 'its': 2.0, 'the': 1.0, 'kibble': 1.0, 'great': 1.0, 'although': 1.0, 'that': 1.0, 's': 1.0, 'you': 1.0, 'and': 1.0, 'get': 1.0, '8': 1.0, 'like': 1.0, 'bought': 1.0, 'material': 1.0}
Word element => {'needs': 1.0, 'their': 1.0, 'find': 1.0, 'concern': 1.0, 'have': 1.0, 'm': 1.0, 'long': 1.0, 'that': 1.0, 'stick': 1.0, 'compared': 1.0, 'other': 1.0, 'with': 1.0, 'themself': 1.0, 'feed': 1.0, 'lo': 1.0, 'may': 1.0, 'my': 1.0, 'far': 1.0, 'spoon': 5.0, 'might': 1.0, 'a': 4.0, 'much': 1.0, 'is': 2.0, 'really': 1.0, 'utensils': 1.0, 'i': 5.0, 'afraid': 1.0, 'for': 2.0, 'big': 1.0, 'great': 1.0, 'plates': 1.0, 'the': 6.0, 'line': 1.0, 'entire': 1.0, 'others': 2.0, 'these': 1.0, 'products': 1.0, 'some': 1.0, 'of': 2.0, 'are': 1.0, 'matching': 1.0, 'this': 2.0, 'it': 1.0, 'too': 2.0, 'and': 5.0, 'bowls': 1.0, 'still': 1.0, 'wanted': 1.0, 'little': 1.0, 'wider': 1.0, 'not': 3.0, 'just': 1.0, 'head': 1.0, 'deep': 1.0, 'different': 1.0, 'our': 1.0, 'to': 4.0, 'as': 4.0, 'spoons': 2.0, 'think': 1.0, 'they': 2.0, 'like': 3.0, 'hold': 1.0, 'soup': 1.0, 'same': 1.0, 'amount': 1.0, 'but': 1.0, 'most': 1.0, 'food': 1.0, 'in': 2.0, 'will': 1.0, 'seems': 1.0, 'always': 1.0, 'way': 1.0, 'choke': 1.0, 'be': 2.0, 'easier': 1.0}
Word element => {'future': 1.0, 'your': 1.0, 'works': 1.0, 'and': 3.0, 'similar': 1.0, 'here': 2.0, 'are': 5.0, 'eats': 1.0, 'fork': 1.0, 'than': 1.0, 'recycled': 1.0, 'love': 1.0, 'most': 1.0, 'but': 1.0, 'work': 1.0, 'green': 1.0, 'month': 1.0, 'it': 1.0, 'another': 1.0, 'only': 1.0, 'company': 4.0, 'goods': 1.0, 'looks': 1.0, 'my': 1.0, 'things': 2.0, 'some': 1.0, 'these': 1.0, 'have': 1.0, 'came': 1.0, 'because': 3.0, 'that': 3.0, 'will': 1.0, 'in': 6.0, 'anywhere': 1.0, 're': 1.0, 'card': 1.0, 'small': 1.0, 'a': 3.0, 't': 1.0, 'for': 6.0, 'china': 1.0, 'them': 2.0, 'baby': 1.0, 'also': 2.0, 'us': 2.0, 'list': 1.0, 'the': 5.0, 'called': 1.0, 'bought': 1.0, 'believe': 1.0, 'doesn': 1.0, 'better': 1.0, 'america': 1.0, 'wrapper': 1.0, 'from': 4.0, 'junk': 1.0, 'looked': 1.0, 'with': 1.0, 'other': 2.0, 'main': 1.0, 'like': 1.0, 'great': 1.0, 'our': 2.0, 'to': 2.0, 'as': 2.0, '5': 1.0, 'old': 2.0, 'they': 3.0, 'distributer': 1.0, 'metal': 1.0, 'ones': 1.0, 'really': 1.0, 'more': 2.0, 'is': 1.0, 'worked': 1.0, 'made': 2.0, 'which': 2.0, 'good': 1.0, 'plastic': 1.0, '8': 1.0, 'bigger': 1.0, 'stay': 1.0, 'not': 1.0, 'search': 1.0, 'near': 1.0, 'on': 1.0, 'topic': 1.0, 'just': 1.0, 'i': 4.0, 'well': 1.0, 'or': 1.0, 'id': 1.0, 'year': 1.0, 'thank': 1.0, 'spoon': 1.0, 'keeping': 1.0, 'thing': 1.0, 'much': 1.0, 'utensils': 1.0, 'buy': 1.0}
Word element => {'divide': 1.0, 'serve': 1.0, 'simple': 1.0, 'love': 1.0, 'using': 1.0, 'loves': 1.0, '2yo': 1.0, 'fun': 1.0, 'how': 2.0, 'toddler': 1.0, 'my': 1.0, 'ago': 1.0, 'long': 1.0, 'makes': 1.0, 'these': 1.0, 'wish': 1.0, 'found': 1.0, 'i': 3.0, 'in': 1.0, 'key': 1.0, 'a': 1.0, 'look': 1.0, 'to': 2.0, 'food': 2.0, 'everything': 1.0, 'd': 1.0, 'eat': 1.0, 'organized': 1.0, 'getting': 1.0, 'and': 4.0, 'looks': 1.0, 'is': 2.0, 'tray': 1.0, 'it': 2.0, 'this': 1.0}
Word element => {'bonus': 1.0, 'is': 1.0, 'which': 1.0, 'safe': 1.0, 'huge': 1.0, 'and': 1.0, 'out': 1.0, 'i': 1.0, 'dishwasher': 1.0, 'slosh': 1.0, 'sections': 1.0, 'a': 1.0, 'doesn': 1.0, 'love': 1.0, 'the': 1.0, 'are': 1.0, 'food': 1.0, 'how': 1.0, 'deep': 1.0, 't': 1.0, 'micro': 1.0, 'so': 1.0}
Word element => {'forks': 1.0, 'and': 1.0, 'matching': 1.0, 'also': 1.0, 'them': 1.0, 'great': 1.0, 'got': 2.0, 'size': 1.0, 'plates': 1.0, 'for': 1.0, 'toddlers': 1.0, 'dishwasher': 1.0, 'good': 1.0, 'the': 1.0, 'portioned': 1.0, 'safe': 1.0, 'spoons': 1.0, 'glad': 1.0, 'i': 1.0}
Word element => {'so': 1.0, 'just': 1.0, 'size': 1.0, 'right': 1.0, 'course': 1.0, 'recycled': 1.0, 'they': 2.0, 'great': 1.0, 'these': 1.0, 'the': 2.0, 'are': 2.0, 'my': 1.0, 'made': 1.0, 'i': 1.0, 'plates': 1.0, 'love': 1.0, 'for': 2.0, 'and': 2.0, 'replay': 1.0, 'very': 1.0, 'environment': 1.0, 'sturdy': 1.0, 'of': 1.0, 'well': 1.0, 'kids': 1.0, 'too': 1.0}
Word element => {'they': 1.0, 'even': 1.0, 'dinners': 1.0, 'are': 2.0, 'starch': 1.0, 'and': 2.0, 'durable': 1.0, 'fruits': 1.0, 'or': 1.0, 'veggies': 1.0, 'great': 2.0, '1': 3.0, 'devote': 1.0, 'handy': 1.0, 'healthy': 1.0, 'eating': 1.0, 'me': 1.0, 'helps': 1.0, 'less': 1.0, '2': 1.0, 'can': 1.0, 'food': 2.0, 'rounded': 1.0, 'if': 1.0, 'eat': 1.0, 'touching': 1.0, 'dinnertime': 1.0, 'another': 1.0, 'well': 1.0, 'space': 2.0, 'at': 1.0, 'pretty': 1.0, 'safe': 1.0, 'meal': 1.0, 'large': 1.0, 'to': 5.0, 'find': 1.0, 'because': 1.0, 'than': 1.0, 'for': 3.0, 'one': 2.0, 'so': 2.0, 'divided': 1.0, 'plate': 4.0, 'do': 1.0, 'kids': 1.0, 'separates': 1.0, 'this': 5.0, 'with': 3.0, 'nights': 1.0, 'it': 2.0, 'provides': 1.0, 'dishes': 1.0, '4': 2.0, 'i': 3.0, 'need': 3.0, 'that': 1.0, 'takeout': 1.0, 'something': 1.0, 'a': 3.0, 's': 1.0, 'you': 1.0, 'the': 3.0, 'deal': 1.0, 'movie': 1.0, 'these': 1.0, 'decent': 1.0, 'definitely': 1.0, 'looking': 1.0, 'dishwasher': 1.0, 'from': 1.0, 'solution': 1.0, 'protein': 1.0, 'more': 1.0, 'is': 1.0, 'reduces': 1.0, 'also': 2.0, 'number': 1.0, 'of': 2.0}
Word element => {'safe': 1.0, 'my': 2.0, 'utensils': 1.0, 'use': 1.0, 'still': 1.0, 'color': 1.0, 'one': 1.0, 'love': 1.0, 'she': 1.0, 'girls': 1.0, 'to': 2.0, 'least': 1.0, 'little': 2.0, 'washer': 1.0, 'that': 1.0, 'the': 4.0, 'learning': 1.0, 'these': 1.0, 'bpa': 1.0, 'compartments': 1.0, 'free': 1.0, 'they': 1.0, 'against': 1.0, 'help': 1.0, 'sides': 1.0, 'get': 1.0, 'do': 1.0, 'sold': 1.0, 'and': 1.0, 'can': 1.0, 'food': 1.0, 'on': 1.0, 'different': 1.0, 'her': 1.0, 'spoon': 1.0, 'or': 1.0, 'push': 1.0, 'are': 2.0, 'fork': 1.0, 'always': 1.0, 'is': 1.0, 'want': 1.0, 'perfect': 1.0, 'with': 1.0, 'pink': 1.0, 'since': 1.0, 'at': 1.0, 'two': 1.0, 'dish': 1.0}
Word element => {'toddler': 1.0, 'is': 1.0, 'old': 1.0, 'and': 1.0, 'yellow': 1.0, 'perfect': 1.0, 'disappointed': 1.0, 'orange': 2.0, 'color': 1.0, 'they': 2.0, '2': 1.0, 'these': 1.0, 'not': 1.0, 'are': 3.0, 'very': 1.0, 'year': 1.0, 'for': 1.0, 's': 1.0, 'who': 1.0, 'favorite': 1.0, 'solid': 1.0, 'bowls': 1.0, 'size': 1.0, 'a': 1.0}
Word element => {'her': 1.0, 'on': 1.0, 'to': 3.0, 'deep': 1.0, 'bowls': 1.0, 'perfect': 1.0, 'keeping': 1.0, 'use': 1.0, 'snacks': 1.0, 'or': 1.0, 'my': 1.0, 'hold': 1.0, 'love': 1.0, 'for': 2.0, 'daughter': 1.0, 'the': 1.0, 'these': 1.0, 'meals': 1.0, 'food': 2.0, 'and': 1.0, 'as': 1.0, 'allow': 1.0, 'spoon': 1.0, '2yo': 1.0, 'easily': 1.0, 'sides': 1.0, 'are': 1.0, 'leverage': 1.0}
Word element => {'manage': 1.0, 'toddlers': 1.0, 'for': 1.0, 'easy': 1.0, 'portion': 1.0, 'with': 1.0, 'size': 1.0, 'several': 1.0, 'wear': 1.0, 'food': 1.0, 'service': 2.0, 're': 1.0, 'my': 1.0, 'holds': 1.0, 'more': 1.0, 'comes': 2.0, 'to': 2.0, 'as': 1.0, 'day': 2.0, 'home': 1.0, 'use': 1.0, 'through': 1.0, 'control': 1.0, 'an': 1.0, 'preschoolers': 1.0, 'provider': 1.0, 'doesn': 1.0, 'childcare': 1.0, 'the': 4.0, 'place': 1.0, 'cycle': 1.0, 'i': 1.0, '36': 1.0, 'dishwasher': 1.0, 'in': 3.0, 'each': 1.0, 'settings': 1.0, 'times': 1.0, 'it': 3.0, 'up': 1.0, 'of': 2.0, 'tons': 1.0, 'drying': 1.0, 'play': 1.0, 'and': 3.0, 'fun': 1.0, 'help': 1.0, 'colors': 1.0, 'which': 1.0, 'make': 1.0, 'enjoyable': 1.0, 't': 1.0, 'a': 1.0, 's': 1.0, 'heat': 1.0, 'just': 1.0, 'stain': 1.0, 'right': 1.0}
Word element => {'these': 1.0, 'buying': 1.0, 'back': 1.0, 'be': 1.0, 'since': 1.0, 'past': 1.0, 'new': 1.0, 'his': 1.0, 'complained': 1.0, 'son': 1.0, 'previously': 1.0, 'my': 3.0, 't': 3.0, 'we': 2.0, 's': 1.0, 'wasn': 1.0, 'out': 2.0, 'it': 6.0, 'remove': 1.0, 'knew': 1.0, 'some': 1.0, 'installed': 2.0, 'does': 1.0, 'and': 5.0, 'another': 1.0, 'extra': 1.0, 'obnoxious': 1.0, 'bought': 1.0, 'our': 4.0, 'as': 5.0, 'to': 4.0, 'i': 4.0, 'well': 2.0, 'for': 2.0, 'looking': 1.0, 'using': 1.0, 'like': 2.0, 'work': 1.0, 'of': 5.0, 'the': 8.0, 'all': 1.0, 'other': 2.0, 'carrier': 1.0, 'cool': 1.0, 'car': 3.0, 'from': 1.0, 'loyal': 1.0, 'get': 1.0, 'is': 4.0, 'almost': 1.0, 'now': 1.0, 'year': 1.0, 'child': 1.0, 'olds': 1.0, 'head': 4.0, 'was': 1.0, 'doesn': 2.0, 'month': 1.0, 'totally': 1.0, 'that': 2.0, 'been': 1.0, 'being': 1.0, 'bauer': 1.0, 'pushed': 1.0, 'by': 1.0, 'were': 1.0, 'piece': 1.0, 'this': 1.0, 'ready': 1.0, 'kids': 1.0, 'drawback': 1.0, 'pain': 1.0, 'wonderful': 1.0, 'have': 1.0, 'a': 6.0, 'small': 1.0, 'side': 1.0, 'wings': 1.0, 'eddie': 1.0, 'has': 1.0, 'them': 3.0, 'butt': 1.0, 'do': 2.0, 'company': 2.0, 'only': 1.0, 'push': 1.0, 'though': 2.0, 'soon': 1.0, 'convertible': 1.0, 'there': 1.0, 'll': 1.0, 'pillow': 1.0, 'about': 1.0, 'behind': 1.0, '4': 1.0, 'booster': 1.0, 'cup': 1.0, 'their': 1.0, 'one': 3.0, 'lot': 1.0, 'second': 3.0, 'durable': 1.0, 'up': 1.0, 'takes': 1.0, 'washing': 1.0, 'seat': 3.0, 'in': 2.0, 'cover': 1.0, 'going': 2.0, 'complaint': 1.0, 'reviewed': 1.0, 'holder': 1.0, 'forward': 2.0, 'not': 1.0, 'stay': 1.0, 'ours': 1.0}
Word element => {'i': 1.0, 'size': 1.0, 'storage': 1.0, 'just': 1.0, 'what': 1.0, 'you': 1.0, 'need': 1.0, 'for': 1.0, 'bassinet': 1.0, 'good': 1.0, 'has': 1.0, 'thanks': 1.0, 'lil': 1.0, 'a': 1.0, 'princess': 1.0, 'average': 1.0, 'also': 1.0, 'it': 1.0, 'love': 1.0, 'great': 1.0}
Word element => {}
Word element => {'time': 1.0, 'estimated': 1.0, '8': 1.0, 'my': 1.0, 'son': 1.0, 'for': 2.0, 'a': 1.0, 'party': 1.0, 'fit': 1.0, 'before': 1.0, 'month': 1.0, 'him': 1.0, 'the': 1.0, 'great': 1.0, 'way': 1.0, 'got': 1.0, 'so': 1.0, 'old': 1.0, 'i': 1.0, 'and': 1.0, 'this': 1.0, 'it': 3.0, 'looked': 1.0, 'cute': 1.0, 'arrived': 1.0}
Word element => {'little': 1.0, 'cotton': 1.0, 'on': 1.0, 'months': 1.0, '5': 1.0, 'when': 1.0, 'wearing': 1.0, 'they': 1.0, 'these': 1.0, 'fit': 1.0, 'loved': 1.0, 'love': 1.0, 'for': 1.0, 'using': 2.0, 'them': 1.0, 'i': 2.0, 'old': 1.0, 'still': 1.0, 'my': 2.0, 'newborn': 1.0, 'perfect': 1.0, 'doll': 1.0, 'she': 1.0, 'was': 1.0, 'at': 1.0, 'about': 1.0, '3': 2.0, 'weeks': 1.0, 'and': 1.0, 'is': 1.0}
Word element => {'expected': 1.0, 'just': 1.0, '11': 1.0, 'mo': 1.0, 'her': 1.0, 'will': 1.0, 's': 1.0, 'maybe': 1.0, 'keeping': 1.0, 'come': 1.0, 'bigger': 1.0, 'damp': 1.0, 'still': 1.0, 'low': 1.0, 'lining': 1.0, 'made': 1.0, 'am': 1.0, 'what': 1.0, 'when': 3.0, 'very': 1.0, 'from': 1.0, 'had': 1.0, 'leaks': 1.0, 'lbs': 1.0, 'was': 2.0, 'came': 1.0, 'on': 1.0, 'long': 2.0, 'so': 7.0, 'cottonbabies': 1.0, 'bought': 1.0, 'one': 1.0, 'polyester': 1.0, 've': 1.0, 'down': 1.0, 'inside': 1.0, '0': 1.0, 'couple': 1.0, 'out': 3.0, 'and': 7.0, 'bumgenius': 2.0, 'bulkier': 1.0, 'fine': 1.0, 'take': 1.0, '6': 1.0, 'the': 8.0, 'of': 3.0, '4': 2.0, 'i': 11.0, 'about': 1.0, 'elemental': 1.0, 'dryer': 1.0, 'have': 1.0, 'a': 5.0, 'm': 2.0, 'weeks': 1.0, 'crotch': 1.0, 'freetime': 1.0, 'website': 1.0, 'my': 3.0, 'them': 4.0, 'she': 2.0, 'baby': 1.0, 'problem': 1.0, 'cotton': 2.0, 'only': 1.0, 'better': 1.0, 'squirmy': 1.0, 'with': 4.0, 'is': 5.0, 'fan': 1.0, 'thinner': 1.0, 'they': 6.0, 'no': 1.0, 'that': 3.0, 'problems': 1.0, 'makes': 2.0, 'however': 1.0, 'lined': 1.0, 'it': 5.0, 'disappointed': 1.0, 'sewn': 1.0, 'shifts': 1.0, 'drying': 1.0, 'diaper': 3.0, 'to': 4.0, 'changes': 1.0, 'comes': 1.0, 'these': 1.0, 'work': 1.0, 'but': 1.0, 'harder': 1.0, 'get': 1.0, 'everything': 1.0, 'up': 1.0, 'for': 2.0, 'fit': 2.0, 'tried': 1.0, 'seems': 1.0, 'slightly': 2.0, 'after': 1.0, 'excited': 2.0, 'wider': 1.0, 'absorbent': 1.0, 'huge': 1.0, 'than': 1.0, 'all': 1.0, 'other': 1.0, 'somehow': 1.0, 'diapers': 3.0, 'are': 3.0, 'plus': 1.0, 'not': 2.0, 'dry': 2.0, 'now': 2.0, 'air': 1.0, 'even': 1.0, 'took': 1.0}
Word element => {'her': 1.0, 'of': 1.0, 'this': 1.0, 'everything': 1.0, 'about': 1.0, 'natural': 1.0, 'grand': 1.0, 'for': 1.0, 'diaper': 1.0, 'daughter': 1.0, 'is': 3.0, '34': 1.0, 'my': 1.0, 'the': 2.0, 'earth': 1.0, 'mother': 1.0, 'and': 1.0, 'type': 2.0, 'perfect': 1.0, 'all': 1.0}
Word element => {'i': 1.0, 'baby': 1.0, 'love': 1.0, 'for': 1.0, 'ride': 1.0, 'smooth': 1.0, 'very': 1.0, 'strollers': 1.0, 'stroller': 1.0, 'easy': 1.0, 'truly': 1.0, 'to': 2.0, 'high': 1.0, 'light': 1.0, 'suspension': 1.0, 'other': 1.0, 'it': 1.0, 'this': 1.0, 'priced': 1.0, 'can': 1.0, 'the': 3.0, 'great': 1.0, 'in': 1.0, 'quinny': 1.0, 'like': 1.0, 'market': 1.0, 'and': 3.0, 'britax': 1.0, 'compare': 1.0, 'weight': 1.0, 'a': 1.0, 'maneuver': 1.0}
Word element => {'re': 1.0, 'they': 1.0, 'go': 1.0, 'you': 1.0, '2': 1.0, 'strongly': 1.0, 'higher': 1.0, 'has': 1.0, 'looking': 1.0, 'recommend': 1.0, 'your': 1.0, 'if': 1.0, 'long': 1.0, 'on': 1.0, 'percentile': 1.0, 'since': 1.0, 'as': 3.0, 'am': 1.0, 'to': 7.0, 'all': 1.0, 'features': 1.0, 'measured': 1.0, '37': 1.0, 'than': 1.0, 'room': 2.0, 'almost': 1.0, 'now': 2.0, 'limit': 1.0, 's': 4.0, 'we': 4.0, 'a': 3.0, 't': 1.0, 'have': 1.0, 'evenflo': 1.0, 'my': 1.0, 'saw': 1.0, 'rf': 1.0, 'which': 2.0, 'version': 1.0, 'seat': 3.0, 'in': 4.0, 'decided': 1.0, 'least': 1.0, 'seem': 1.0, 'test': 1.0, 'symphony': 1.0, 'facing': 1.0, 'old': 1.0, 'infant': 1.0, 'face': 1.0, 'install': 1.0, 'big': 1.0, 'month': 1.0, 'longer': 1.0, 'the': 8.0, 'of': 2.0, 'at': 2.0, 'is': 6.0, 'his': 1.0, 'around': 1.0, 'that': 2.0, 'fall': 1.0, 'really': 2.0, 'get': 1.0, 'easy': 1.0, 'recommended': 1.0, 'and': 6.0, 'liked': 1.0, '10': 1.0, 'for': 2.0, 'this': 3.0, 'up': 1.0, 'takes': 1.0, 'less': 2.0, 'when': 2.0, 'store': 1.0, 'was': 2.0, 'baby': 2.0, 'did': 1.0, 'getting': 1.0, 'i': 4.0, 'our': 1.0, 'how': 2.0, 'much': 2.0, 'limits': 2.0, 'one': 1.0, 'rear': 2.0, 'try': 1.0, 'only': 1.0, 'front': 1.0, 'trend': 1.0, 'back': 1.0, 'older': 1.0, '3': 1.0, '34': 2.0, 'temp': 1.0, 'worried': 2.0, 'with': 3.0, 'head': 1.0, 'wings': 1.0, 'taller': 1.0, 'be': 2.0, 'it': 10.0, 'him': 1.0, 'out': 3.0, 'but': 2.0, 'so': 2.0, 'can': 2.0, 'love': 1.0, 'he': 2.0, 'far': 1.0, 'not': 2.0, 'within': 1.0, 'problem': 1.0, 'until': 1.0, 'seems': 1.0, 'very': 1.0, 'comfy': 1.0, 'wait': 1.0, 'would': 1.0, 'summer': 1.0, 'hot': 1.0, 'control': 1.0, 'down': 1.0, 'lower': 2.0, 'son': 1.0, 'height': 2.0}
Word element => {'say': 1.0, 'a': 1.0, 'at': 1.0, 'also': 1.0, 'looks': 1.0, 'wash': 1.0, 'to': 2.0, 'this': 1.0, 'set': 1.0, 'is': 1.0, 'more': 1.0, 'the': 1.0, 'great': 3.0, 'baby': 1.0, 'no': 1.0, 'good': 1.0, 'need': 1.0, 'and': 1.0, 'quality': 1.0, 'price': 1.0, 'soft': 1.0, 'for': 1.0, 'easy': 1.0}
Word element => {'loved': 1.0, 'she': 2.0, 'just': 1.0, 'because': 1.0, 'step': 1.0, 'baby': 1.0, 'that': 1.0, 'is': 1.0, 'room': 1.0, 'daughter': 1.0, 'my': 1.0, 'the': 1.0, 'bought': 1.0, 'gift': 1.0, 'and': 1.0, 's': 2.0, 'this': 1.0, 'it': 2.0, 'to': 1.0, 'wanted': 1.0, 'was': 1.0, 'father': 1.0, 'what': 1.0, 'her': 2.0, 'for': 2.0, 'mine': 1.0}
Word element => {}
Word element => {'those': 1.0, 'for': 1.0, 'worth': 1.0, 'money': 1.0, 'it': 1.0, 'cute': 1.0, 'really': 1.0, 'bumper': 1.0, 'bedskirt': 1.0, 'the': 3.0, 'are': 2.0, 'cheap': 1.0, 'sheets': 1.0, 'etc': 1.0, 'pretty': 1.0, 'was': 1.0, 'quilt': 1.0, 'just': 1.0, 'but': 1.0, 'quality': 1.0, 'and': 2.0}
Word element => {'for': 1.0, 'any': 1.0, 'isn': 1.0, 'also': 1.0, 'very': 1.0, 'really': 2.0, 'is': 2.0, 'which': 1.0, 'it': 2.0, 'with': 2.0, 'end': 1.0, 'high': 1.0, 'thick': 1.0, 'expecting': 1.0, 'so': 1.0, 'thin': 2.0, 'wasn': 1.0, 't': 2.0, 'the': 4.0, 'i': 2.0, 'cheaper': 1.0, 'there': 1.0, 'set': 2.0, 'a': 2.0, 'mostly': 1.0, 'pillow': 1.0, 'material': 1.0, 'quilt': 1.0, 'comes': 1.0, 'its': 1.0, 'wanted': 1.0, 'and': 2.0, 'bib': 1.0, 'crib': 1.0, 'use': 1.0, 'got': 1.0, 'bumper': 1.0, 'we': 1.0}
Word element => {'much': 1.0, 'so': 1.0, 'thanks': 1.0, 'friends': 1.0, 'refer': 1.0, 'more': 1.0, 'purchases': 1.0, 'defiantly': 1.0, 'gifts': 1.0, 'will': 1.0, 'escaping': 1.0, 'has': 1.0, 'she': 2.0, 'could': 1.0, 'easily': 1.0, 'how': 1.0, 'seat': 1.0, 'car': 1.0, 'out': 2.0, 'and': 1.0, 'scared': 1.0, 'get': 2.0, 'getting': 1.0, 'bee': 1.0, 'of': 2.0, 'always': 1.0, 'daughter': 2.0, 'starting': 1.0, 'my': 2.0, 'no': 1.0, 'safe': 1.0, 'than': 1.0, 'belt': 1.0, 'as': 1.0, 'protects': 1.0, 'luck': 1.0, 'her': 1.0, 'what': 1.0, 'that': 1.0, 'really': 1.0, 'is': 1.0, 'better': 1.0, 'i': 2.0, 'now': 1.0, 'was': 2.0, 'to': 2.0}
Word element => {'i': 1.0, 'the': 1.0, 'it': 1.0, 'recommend': 1.0, 'of': 1.0, 'around': 1.0, 'get': 1.0, 'right': 1.0, 'to': 1.0, 'this': 1.0, 'out': 1.0, 'would': 1.0, 'not': 2.0, 'work': 1.0, 'bat': 1.0, 'for': 1.0, 'our': 1.0, 'did': 1.0, 'how': 1.0, 'child': 1.0, 'she': 1.0, 'figured': 1.0}
Word element => {'on': 1.0, 'put': 1.0, 'after': 1.0, 'it': 2.0, 'to': 1.0, 'figured': 1.0, 'i': 2.0, 'but': 1.0, 'thought': 1.0, 'opening': 1.0, 'this': 1.0, 'might': 1.0, 'stop': 1.0, 'buckle': 1.0, 'daughter': 2.0, 'my': 2.0, 'out': 1.0, 'from': 1.0, 'soon': 1.0, 'open': 1.0, 'how': 1.0, 'her': 1.0, 'up': 2.0}
Word element => {'else': 1.0, 'anything': 1.0, 'have': 1.0, 'i': 1.0, 'and': 1.0, 'ok': 1.0, 'stays': 1.0, 'top': 2.0, 'place': 1.0, 'the': 5.0, 'wrap': 1.0, 'a': 1.0, 'of': 3.0, 'just': 1.0, 'not': 2.0, 'opening': 1.0, 'wha': 1.0, 'right': 1.0, 'with': 2.0, 'found': 1.0, 'this': 1.0, 'it': 5.0, 'is': 4.0, 'material': 1.0, 'product': 2.0, 'be': 2.0, 'does': 2.0, 'strip': 1.0, 'time': 1.0, 'do': 1.0, 'designed': 1.0, 'nothing': 1.0, 'buckle': 2.0, 'in': 2.0, 'like': 1.0, 'cannot': 1.0, 'figured': 1.0, 'car': 1.0, 'straps': 1.0, 'help': 1.0, 'keep': 1.0, 'strapped': 1.0, 'over': 2.0, 'child': 1.0, 'securely': 1.0, 'seat': 1.0, 'to': 3.0, 'as': 2.0, 'unsnapped': 1.0, 'now': 1.0, 'attached': 1.0, 'my': 1.0, 'may': 1.0, 'guard': 2.0, 'something': 1.0, 'fancy': 1.0, 'that': 1.0, 'but': 1.0}
Word element => {'use': 1.0, 'please': 1.0, 'to': 1.0, 'or': 1.0, 'cause': 1.0, 'could': 1.0, 'injury': 1.0, 's': 1.0, 'death': 1.0, 'child': 2.0, 'of': 1.0, 'on': 1.0, 'is': 1.0, 'used': 1.0, 'any': 1.0, 'tested': 1.0, 'do': 1.0, 'and': 1.0, 'be': 1.0, 'product': 2.0, 'your': 2.0, 'ever': 1.0, 'interfere': 1.0, 'never': 1.0, 'should': 1.0, 'car': 1.0, 'severe': 1.0, 'with': 1.0, 'this': 3.0, 'it': 1.0, 'seat': 2.0, 'not': 2.0, 'crash': 1.0, 'will': 1.0, 'the': 1.0, 'proper': 1.0, 'function': 1.0}
Word element => {'never': 1.0, 'day': 1.0, 'them': 1.0, 'one': 1.0, 'home': 2.0, 'touched': 1.0, 'have': 1.0, 'did': 1.0, 'he': 1.0, 'safety': 1.0, 'then': 1.0, 'taught': 1.0, 'just': 2.0, 'tested': 1.0, 'kid': 2.0, 'they': 5.0, 'companys': 1.0, 'of': 1.0, 'her': 1.0, 'different': 1.0, 'sell': 1.0, 'is': 1.0, 'said': 2.0, 'called': 2.0, 'after': 2.0, 'time': 1.0, 'so': 1.0, 'i': 4.0, 'big': 1.0, 'all': 1.0, 'as': 1.0, 'to': 2.0, 'be': 1.0, 'stay': 1.0, 'not': 2.0, 'carseat': 3.0, 'with': 2.0, 'it': 4.0, 'staying': 1.0, 'first': 1.0, 'for': 3.0, 'was': 2.0, 'warrant': 1.0, 'girlfriend': 2.0, 'glad': 1.0, 'use': 2.0, 'the': 4.0, 'going': 1.0, 'a': 3.0, 't': 1.0, 'this': 2.0, 'carseats': 1.0, 'couple': 1.0, 'wasn': 1.0, 'also': 1.0, 'void': 1.0, 'unbuckle': 1.0, 'if': 2.0, 'would': 3.0, 'something': 2.0, 'again': 1.0, 'happened': 1.0, 'and': 4.0, 'sold': 1.0, 'checked': 1.0, 'my': 1.0}
Word element => {'baby': 1.0, 'next': 1.0, 'again': 1.0, 'purchase': 1.0, 'need': 1.0, 'and': 2.0, 'it': 1.0, 'with': 1.0, 'service': 1.0, 'will': 1.0, 'work': 1.0, 'was': 1.0, 'fast': 1.0, 'love': 1.0, 'for': 2.0, 'i': 3.0, 'minute': 1.0, 'the': 2.0, 'them': 1.0, 'made': 1.0, 'she': 1.0, 'last': 1.0, 'my': 1.0, 'happy': 1.0, 'designs': 1.0, 'when': 1.0, 'kids': 1.0}
Word element => {'definately': 1.0, 'would': 1.0, 'designed': 1.0, 'can': 1.0, 'you': 3.0, 'making': 1.0, 'in': 1.0, 'detail': 1.0, 'took': 1.0, 'that': 2.0, 'were': 1.0, 'from': 2.0, 'very': 2.0, 'is': 3.0, 'it': 1.0, 'felt': 1.0, 'be': 1.0, 'here': 1.0, 'thank': 2.0, 'right': 1.0, 'this': 5.0, 'with': 1.0, 'much': 1.0, 'its': 1.0, 'recommend': 1.0, 'was': 1.0, 'product': 2.0, 'on': 1.0, 'such': 1.0, 'without': 1.0, 'the': 3.0, 'a': 2.0, 'we': 5.0, 'researched': 1.0, 'seller': 2.0, 'issue': 1.0, 'and': 4.0, 'similar': 1.0, 'amazon': 1.0, 'wonderful': 1.0, 'use': 1.0, 'items': 2.0, 'so': 2.0, 'packaged': 1.0, 'buy': 2.0, 'everyday': 1.0, 'homemade': 1.0, 'item': 1.0, 'also': 1.0, 'to': 4.0, 'all': 2.0, 'any': 1.0, 'received': 1.0, 'great': 3.0, 'communication': 1.0, 'customer': 1.0, 'tell': 1.0, 'quickly': 1.0, 'safe': 1.0, 'service': 1.0, 'shipped': 1.0, 'choose': 1.0, 'having': 1.0, 'safely': 1.0}
Word element => {'neck': 1.0, 'with': 1.0, 'i': 1.0, 'small': 1.0, 'harder': 1.0, 'the': 1.0, 'my': 1.0, 'like': 1.0, 'piece': 1.0, 'breast': 1.0, 'to': 2.0, 'quicker': 1.0, 'bottles': 1.0, 'easy': 1.0, 'misplace': 1.0, 'use': 1.0, 'part': 1.0, 'made': 1.0, 'fits': 1.0, 'clean': 1.0, 'price': 1.0, 'excellent': 1.0, 'pump': 1.0, 'assembly': 1.0, 'hygeia': 1.0, 'one': 1.0, 'for': 1.0}
Word element => {'that': 1.0, 'either': 1.0, 'easily': 1.0, 'drain': 1.0, 'to': 1.0, 'much': 1.0, 'say': 1.0, 'just': 1.0, 'not': 1.0, 'but': 1.0, 'work': 1.0, 'about': 1.0, 's': 2.0, 'a': 1.0, 'well': 1.0, 'plus': 1.0, 'there': 1.0, 'big': 1.0, 'as': 3.0, 'they': 2.0, 'valve': 1.0, 'membrane': 1.0, 'traditional': 1.0, 'these': 1.0, 'the': 2.0, 't': 1.0, 'can': 1.0, 'get': 1.0, 'lost': 1.0, 'down': 1.0}
Word element => {'5': 1.0, 'fall': 1.0, 'about': 1.0, 'down': 1.0, 'warm': 1.0, 'keeping': 1.0, 'only': 1.0, 'it': 1.0, 'for': 2.0, 'months': 1.0, 'starting': 1.0, 'thermos': 1.0, 'is': 2.0, 'great': 1.0, 'the': 2.0, 'are': 1.0, 'that': 1.0, 'characters': 1.0, 'had': 1.0, 'to': 1.0, 'food': 1.0, 'wear': 1.0, '1': 1.0, 'away': 1.0, 'i': 1.0, 'have': 1.0}
Word element => {'own': 1.0, 'her': 1.0, 'starts': 1.0, 'she': 1.0, 'allison': 1.0, 'give': 1.0, 'wonderful': 1.0, 'be': 1.0, 'to': 1.0, 'was': 1.0, 'granddaughter': 1.0, 'who': 1.0, 'gift': 1.0, 'ordered': 1.0, 'for': 1.0, 'in': 1.0, 'great': 1.0, 'my': 1.0, 'baby': 1.0, 'book': 1.0, 'will': 1.0, 'it': 1.0, 'this': 2.0, 'i': 1.0, 'born': 1.0, 'september': 1.0, 'is': 1.0, 'a': 2.0, 'very': 1.0, 'and': 1.0, 'when': 1.0, 'comprehensive': 1.0, 'family': 1.0, 'memory': 1.0, 'album': 1.0}
Word element => {'they': 1.0, 'condition': 1.0, 'months': 1.0, 'three': 1.0, 'for': 1.0, 'great': 1.0, 'the': 1.0, 'happy': 1.0, 'my': 1.0, 'and': 2.0, 'pillow': 1.0, 'very': 1.0, 'son': 1.0, 'buzz': 1.0, 'lightyear': 1.0, 'pal': 1.0, 'four': 1.0, 'have': 1.0, 'loves': 1.0, 'we': 2.0, 'are': 1.0, 'sleeps': 1.0, 'both': 2.0, 'purchase': 1.0, 'cuddle': 1.0, 'every': 1.0, 'night': 1.0, 'in': 1.0, 've': 1.0, 'with': 2.0, 'this': 2.0, 'he': 1.0, 'still': 1.0, 'absolutely': 1.0, 'them': 2.0, 'had': 1.0}
Word element => {'amount': 1.0, 'decent': 1.0, 'of': 2.0, 'tons': 1.0, 'has': 1.0, 'liked': 1.0, 'really': 1.0, 'disappointing': 1.0, 'very': 1.0, 'space': 1.0, 'at': 1.0, 'nylon': 1.0, 'from': 1.0, 'pulling': 1.0, 'also': 1.0, 'way': 1.0, 'open': 1.0, 'the': 8.0, 'months': 1.0, 'been': 1.0, 've': 1.0, 'within': 1.0, 'gift': 1.0, '3': 1.0, 'registered': 1.0, 'bag': 3.0, 'month': 1.0, 'it': 5.0, 'this': 1.0, 'were': 1.0, 'given': 1.0, 'teeth': 1.0, 'using': 1.0, 'for': 3.0, 'babyshower': 1.0, 'maybe': 1.0, 'opening': 1.0, 'zipper': 2.0, 'inside': 2.0, 'zip': 2.0, 'top': 1.0, 'back': 1.0, 'can': 2.0, 'but': 1.0, 'all': 1.0, 'as': 2.0, 't': 3.0, 'we': 3.0, 'a': 4.0, 'started': 2.0, 'skipping': 1.0, 'and': 2.0, 'certain': 1.0, 'up': 1.0, 'pockets': 1.0, 'wouldn': 1.0, 'got': 1.0, 'zipped': 1.0, 'large': 1.0, 'passed': 1.0, 'happened': 1.0, 'again': 1.0, 'away': 1.0, 'now': 1.0, 'otherwise': 1.0, 'i': 2.0, 'non': 1.0, 'point': 1.0, 'so': 1.0}
Word element => {'so': 1.0, 'fast': 1.0, 'sucks': 1.0, 'anyways': 1.0, 'still': 1.0, 'much': 1.0, 'like': 1.0, 'after': 1.0, 'that': 2.0, 'buy': 1.0, 't': 2.0, 'this': 1.0, 'don': 1.0, 'using': 1.0, 'it': 5.0, 'baby': 1.0, 'broke': 2.0, 'my': 1.0, 'but': 1.0, 'didn': 1.0, 'just': 1.0, 'twice': 1.0}
Word element => {'tummy': 1.0, 'whenever': 1.0, 'holds': 1.0, 'months': 1.0, 'makes': 2.0, 'old': 2.0, 'always': 1.0, 'has': 1.0, 'favorite': 1.0, 'consistent': 1.0, 'crazy': 1.0, 'yellow': 1.0, 'his': 2.0, 'many': 1.0, 'toys': 1.0, 'sounds': 1.0, 'seems': 1.0, 'i': 3.0, 'is': 3.0, 'at': 2.0, 'now': 1.0, 'attention': 1.0, 'of': 2.0, 'the': 8.0, 't': 2.0, 'a': 2.0, 'what': 1.0, 'when': 1.0, 'beeps': 1.0, 'all': 2.0, 'to': 4.0, 'but': 4.0, 'young': 1.0, 'that': 2.0, 'more': 1.0, 'babies': 1.0, 'lots': 1.0, 'during': 1.0, 'touch': 1.0, 'different': 1.0, '5': 1.0, 'out': 1.0, 'my': 1.0, 'brought': 1.0, 'like': 1.0, 'he': 5.0, 'first': 1.0, 'month': 1.0, 'home': 1.0, 'we': 1.0, 'then': 1.0, '3': 1.0, 'wasn': 1.0, 'differently': 1.0, 'longest': 1.0, 'songs': 1.0, 'with': 3.0, 'both': 1.0, 'words': 1.0, 'and': 4.0, 'about': 1.0, 'play': 2.0, 'animal': 1.0, 'stares': 1.0, '4': 1.0, 'melodies': 1.0, 'monkey': 2.0, 'there': 1.0, 'course': 1.0, 'flashing': 1.0, 'light': 1.0, 'little': 2.0, 'dancing': 1.0, 'isn': 1.0, 'enough': 1.0, 'himself': 1.0, 'reaches': 1.0, 'time': 3.0, 'one': 1.0, 'try': 1.0, 'wheel': 1.0, 'spin': 1.0, 'smiles': 1.0, 'or': 1.0, 'especially': 1.0, 'lever': 1.0, 'recommend': 1.0, 'noises': 1.0, 'together': 1.0, 'thought': 1.0, 'it': 3.0, 'him': 1.0, 'toy': 3.0, 'move': 1.0, 'for': 2.0, 'really': 1.0, 'this': 3.0, 'highly': 1.0, 'long': 1.0}
Word element => {'previous': 1.0, 'lower': 1.0, 'inches': 1.0, '4': 1.0, 'than': 1.0, 'nearly': 1.0, 'run': 1.0, 'ready': 1.0, 'put': 1.0, 'soon': 1.0, 'since': 1.0, 'as': 3.0, 'sat': 1.0, 'walker': 2.0, 'too': 1.0, 'daughter': 1.0, 'in': 1.0, 'this': 3.0, 'high': 1.0, 'my': 1.0, 'the': 2.0, 'for': 2.0, 'one': 2.0, 'was': 2.0, 'to': 2.0, 'her': 3.0, 'even': 1.0, 'i': 2.0, 'touch': 1.0, 'bought': 1.0, 'floor': 1.0, 'she': 1.0}
Word element => {'just': 1.0, 'well': 1.0, 'overall': 1.0, 'nice': 1.0, 'grateful': 1.0, 'am': 1.0, 'that': 1.0, 'so': 1.0, 'falling': 1.0, 'lamp': 1.0, 'prevented': 1.0, 'front': 2.0, 'giraffe': 1.0, 'i': 1.0, 'two': 1.0, 'however': 1.0, 'taller': 1.0, 'snacks': 1.0, 'for': 2.0, 'lights': 1.0, 'n': 1.0, '1st': 1.0, 'giant': 1.0, 'safety': 1.0, 'floor': 1.0, 'hardwood': 1.0, 'from': 1.0, 'rug': 1.0, 'area': 1.0, 'setting': 1.0, 'too': 1.0, 'and': 5.0, 'the': 9.0, 'she': 1.0, 'it': 3.0, 'with': 1.0, 'short': 2.0, 'form': 1.0, 'be': 1.0, 'very': 4.0, 'activity': 1.0, 'daughter': 2.0, 'walking': 1.0, 'square': 1.0, 'tray': 1.0, 'bought': 1.0, 'months': 1.0, 'over': 1.0, 'my': 1.0, 'lip': 1.0, '8': 1.0, 'constructed': 1.0, 'our': 1.0, 'to': 2.0, 'old': 1.0, 'this': 1.0, 'found': 1.0, 'still': 1.0, 'walker': 5.0, 'is': 3.0, 'around': 1.0, 'put': 1.0, 'on': 4.0, 'make': 1.0, 'was': 2.0, 'bent': 1.0, 'knees': 1.0, 'sounds': 1.0, 'also': 2.0, 'we': 3.0, 'a': 4.0, 's': 2.0, 'much': 1.0, 'its': 1.0, 'wheel': 1.0, 'tiny': 1.0, 'are': 1.0, 'highest': 1.0, 'small': 1.0, 'plastic': 1.0, 'base': 1.0, 'of': 3.0, 'low': 1.0, 'making': 1.0, 'there': 1.0, 'impossible': 1.0, 'thin': 1.0}
Word element => {'those': 1.0, 'cheaper': 1.0, 'have': 1.0, 'which': 1.0, 'would': 1.0, '00': 2.0, '30': 1.0, 'for': 1.0, 'one': 1.0, 'exact': 1.0, 'sells': 1.0, 'like': 1.0, 'didn': 1.0, 'been': 1.0, 'wheels': 2.0, 'rear': 1.0, '15': 1.0, 'front': 1.0, 'and': 1.0, 'do': 1.0, 'think': 1.0, 'was': 1.0, 'they': 1.0, 'makes': 1.0, 'rotate': 2.0, 'reason': 1.0, 'picture': 1.0, 'i': 2.0, 'you': 1.0, 't': 2.0, 'ones': 1.0, 'the': 4.0, 'but': 1.0, 'knew': 1.0, 'walmart': 1.0, 'don': 1.0, 'purchased': 1.0, 'this': 2.0, 'it': 1.0}
Word element => {'you': 1.0, 'it': 1.0, 'like': 1.0, 'toys': 1.0, 'enjoy': 1.0, 'giraffe': 1.0, 'granddaughter': 1.0, 'my': 1.0, 'the': 3.0, 'being': 1.0, 'thank': 1.0, 'in': 1.0, 'all': 1.0, 'she': 2.0, 'on': 1.0, 'with': 1.0, 'time': 1.0, 'play': 1.0}
Word element => {'better': 1.0, 'invested': 1.0, 'have': 1.0, 'home': 1.0, 'if': 1.0, 'backwords': 1.0, 'forward': 1.0, 'does': 1.0, 'well': 2.0, 'doesnt': 1.0, 'often': 1.0, 'my': 1.0, 'another': 1.0, 'side': 2.0, 'bare': 2.0, 'carpet': 1.0, 'move': 2.0, 'it': 2.0, 'like': 2.0, 'walker': 1.0, 'addon': 1.0, 'up': 1.0, 'himself': 1.0, 'thing': 2.0, 'lift': 1.0, 'grabbing': 1.0, 'always': 1.0, 'so': 1.0, 'floor': 2.0, 'items': 1.0, 'said': 1.0, 'turn': 1.0, 'in': 2.0, 'feet': 1.0, 'old': 1.0, 'i': 5.0, 'think': 1.0, 'on': 4.0, 'his': 1.0, 'of': 1.0, 'more': 1.0, 'around': 2.0, 'is': 5.0, 'really': 1.0, 'one': 1.0, 'months': 2.0, 'tray': 1.0, 't': 1.0, 'a': 9.0, 'push': 1.0, 'are': 1.0, 'the': 10.0, 'great': 3.0, 'nice': 1.0, 'would': 1.0, 'something': 1.0, 'works': 1.0, 'only': 1.0, 'its': 3.0, 'doesn': 1.0, 'was': 2.0, 'bar': 2.0, 'had': 1.0, 'all': 1.0, 'our': 1.0, 'to': 3.0, 'touching': 1.0, 'little': 4.0, 'dont': 1.0, 'perfect': 1.0, 'this': 1.0, '6': 1.0, 'he': 4.0, 'looking': 1.0, 'grandson': 1.0, 'wheels': 1.0, 'value': 1.0, 'where': 1.0, 'product': 1.0, 'for': 4.0, 'but': 2.0, 'money': 2.0, 'at': 2.0, 'future': 1.0, 'by': 1.0, 'just': 1.0, 'few': 1.0, 'use': 1.0, 'those': 1.0, 'cherios': 1.0, 'will': 1.0, 'be': 1.0, 'moved': 1.0, 'and': 2.0, 'enjoying': 1.0, 'that': 4.0, 'loves': 1.0}
Word element => {'giraffes': 1.0, 'rail': 1.0, 'also': 1.0, 'larger': 1.0, '3': 1.0, 'shortest': 1.0, 'with': 1.0, 'find': 1.0, 'get': 1.0, 'me': 1.0, 'now': 1.0, 'loves': 1.0, 'babies': 1.0, '7': 1.0, 'the': 3.0, 'still': 2.0, 'awhile': 1.0, 'daughter': 1.0, 'and': 2.0, 'too': 1.0, 'people': 2.0, 'many': 1.0, 'settings': 1.0, 'began': 1.0, 'like': 1.0, 'using': 2.0, 'for': 2.0, 'at': 2.0, 'two': 1.0, 'walker': 2.0, 'including': 1.0, 'months': 2.0, 'it': 4.0, 'she': 3.0, 'my': 1.0, 'may': 1.0, 'from': 1.0, 's': 2.0, 'go': 1.0, 'small': 1.0, 'so': 1.0, 'but': 1.0, 'setting': 1.0, 'others': 1.0, 'this': 2.0, 'perfect': 1.0, 'in': 1.0, 'toy': 1.0, 'has': 1.0, 'taller': 1.0, 'll': 1.0, 'be': 1.0}
Word element => {'ridges': 1.0, 'use': 1.0, 'could': 2.0, 'go': 1.0, 'a': 3.0, 'average': 1.0, 'is': 2.0, 'his': 2.0, 'around': 2.0, 'lil': 1.0, 'once': 1.0, 'ago': 1.0, 'cost': 1.0, 'would': 2.0, 'walker': 3.0, 'first': 1.0, 'as': 3.0, 'wish': 1.0, 'this': 2.0, 'but': 1.0, 'for': 3.0, 'of': 6.0, 'the': 6.0, 'kiddo': 1.0, 'excited': 1.0, 'in': 3.0, 'also': 1.0, 'on': 3.0, 'your': 2.0, 'put': 1.0, 'months': 1.0, 'money': 1.0, 'adjusted': 1.0, 'bought': 1.0, 'definetly': 1.0, 'has': 1.0, 'poor': 1.0, 'was': 1.0, 'recommend': 1.0, 'construction': 1.0, 'thought': 1.0, 'it': 9.0, 'height': 1.0, 'son': 2.0, 'to': 4.0, 'high': 1.0, 'another': 1.0, 'starts': 1.0, 'couple': 1.0, 'coming': 1.0, 'i': 7.0, 'well': 1.0, 'feet': 3.0, 'second': 1.0, 'sandles': 1.0, 'beware': 1.0, 'walking': 1.0, 'cusion': 1.0, 'with': 1.0, 'or': 1.0, 'nics': 1.0, 'notch': 1.0, 'hurts': 1.0, 'moving': 1.0, 'up': 1.0, 'bottom': 2.0, 'sharp': 1.0, 'several': 2.0, 'gotten': 1.0, 'no': 1.0, 'top': 1.0, 'from': 1.0, 'very': 1.0, 'being': 1.0, 'bare': 1.0, 'want': 1.0, 'have': 3.0, 'running': 1.0, 'more': 1.0, 'husband': 1.0, 'toward': 1.0, 'my': 4.0, 'me': 1.0, 'not': 1.0, 'all': 1.0, 'other': 1.0, 'children': 1.0, 'been': 1.0, 'that': 1.0, 'hurt': 1.0, 'times': 1.0, 'so': 1.0, 'and': 7.0, 'anyone': 1.0, 'doesnt': 1.0, 'some': 1.0, 'great': 1.0, 'sort': 1.0}
Word element => {'accustomed': 1.0, 'one': 1.0, 'like': 1.0, 'jumper': 1.0, 'he': 2.0, 'backward': 1.0, 'only': 1.0, 'forward': 1.0, 'himself': 1.0, 'able': 1.0, 'yet': 1.0, 'although': 1.0, 'pleased': 1.0, 'old': 1.0, 'my': 1.0, 'wheels': 1.0, 'disable': 1.0, 'way': 1.0, 'between': 1.0, 'an': 1.0, 'nice': 2.0, 'be': 2.0, 'off': 1.0, '9': 1.0, 'final': 1.0, '7': 2.0, '0': 1.0, 'this': 1.0, 'with': 2.0, 'month': 1.0, 'it': 3.0, 'is': 4.0, 'second': 1.0, 'a': 5.0, 'propel': 1.0, 'gizmos': 1.0, 'bottom': 1.0, 'of': 1.0, 'daycare': 1.0, 'was': 1.0, 'i': 1.0, 'eccentric': 1.0, 'thinks': 1.0, 'operated': 1.0, 'not': 1.0, 'camp': 1.0, 'from': 1.0, 'am': 1.0, 'ground': 2.0, 'above': 1.0, 'walker': 2.0, 'so': 1.0, 'because': 1.0, 'find': 1.0, 'the': 13.0, 'good': 2.0, 'option': 1.0, 'at': 2.0, '34': 4.0, 'price': 1.0, 'height': 1.0, 'storage': 1.0, 'battery': 2.0, 'no': 1.0, 'about': 2.0, 'position': 2.0, 'basic': 1.0, 'would': 3.0, 'include': 1.0, 'given': 1.0, '5': 2.0, 'stars': 1.0, '3': 1.0, 'but': 1.0, 'options': 1.0, 'in': 1.0, 'anti': 1.0, 'have': 3.0, 'flat': 1.0, 'temporarily': 1.0, 'and': 3.0, 'tough': 1.0, 'raising': 2.0, 'description': 1.0, 'to': 7.0, 'seat': 2.0}
Word element => {'too': 1.0, 'height': 1.0, 'large': 1.0, 'nice': 2.0, 'and': 2.0, 'tray': 1.0, 'walker': 1.0, 'loves': 2.0, 'this': 1.0, 'the': 2.0, 'toys': 1.0, 'she': 1.0, 'baby': 1.0, 'off': 1.0, 'it': 1.0, 'can': 1.0, 'snap': 1.0, 'or': 1.0, 'is': 1.0, 'on': 1.0}
Word element => {'on': 1.0, 'chewing': 1.0, 'is': 1.0, 'since': 1.0, 'out': 1.0, 'at': 1.0, 'floor': 1.0, 'old': 1.0, 'feet': 1.0, 'she': 4.0, 'teething': 1.0, 'came': 1.0, 'month': 1.0, 'to': 2.0, 'granddaughter': 1.0, '6': 1.0, 'my': 2.0, 'for': 1.0, 'quick': 1.0, 'first': 1.0, 'it': 2.0, 'this': 1.0, 'saturday': 1.0, 'loved': 2.0, 'figured': 1.0, 'the': 2.0, 't': 1.0, 'ordered': 1.0, 'but': 1.0, 'house': 1.0, 'her': 1.0, 'giraffes': 1.0, 'didn': 1.0, 'seem': 1.0, 'and': 2.0, 'reach': 1.0}
Word element => {'bin': 1.0, 'random': 1.0, 'had': 1.0, 'apart': 1.0, 'play': 1.0, 'away': 1.0, 'throw': 1.0, 'having': 1.0, 'ended': 1.0, 'child': 1.0, 'plan': 1.0, 'but': 1.0, 'now': 1.0, 'life': 1.0, 'some': 1.0, 'given': 1.0, 'keeping': 1.0, 'hold': 1.0, 'grow': 1.0, 'going': 1.0, 'your': 1.0, 'threw': 1.0, 'last': 1.0, 'doesn': 2.0, 'top': 2.0, 'as': 4.0, 'space': 1.0, 'activity': 1.0, 'stationary': 1.0, 'walkers': 1.0, '2nd': 1.0, 'lot': 1.0, 'overall': 1.0, 'toys': 1.0, 'themselves': 1.0, 'toy': 1.0, 'used': 2.0, 'falling': 1.0, 'or': 1.0, 'edges': 1.0, 'those': 2.0, 'sharp': 1.0, 'have': 2.0, 'mounted': 1.0, 'they': 1.0, 'down': 1.0, 'stick': 1.0, 'rip': 1.0, 'time': 1.0, 'so': 5.0, 'though': 1.0, 'fell': 1.0, 'outgrow': 1.0, 'chew': 2.0, 'said': 2.0, 'window': 1.0, 'fine': 1.0, 'we': 5.0, 'small': 1.0, 'a': 6.0, 't': 3.0, 's': 2.0, 'update': 1.0, 'on': 5.0, 'week': 1.0, 'centers': 1.0, 'just': 2.0, 'months': 2.0, 'cheap': 1.0, 'like': 2.0, 'use': 1.0, 'has': 1.0, 'them': 1.0, 'adjustable': 1.0, 'place': 1.0, 'careful': 1.0, 'fast': 1.0, 'i': 3.0, 'friend': 3.0, 'and': 6.0, 'my': 3.0, 'husband': 1.0, 'to': 9.0, 'in': 5.0, 'seat': 2.0, 'all': 1.0, 'tray': 1.0, 'after': 2.0, 'before': 1.0, 'snaps': 1.0, 'outgrew': 1.0, 'the': 16.0, 'of': 6.0, 'are': 2.0, 'first': 1.0, 'this': 3.0, 'thought': 1.0, 'him': 2.0, 'it': 13.0, 'baby': 1.0, 'folds': 1.0, 'she': 2.0, 'mine': 1.0, 'for': 6.0, 'gave': 1.0, 'later': 1.0, 'very': 6.0, 'nice': 1.0, 'little': 5.0, 'ripped': 1.0, 'height': 2.0, 'son': 3.0, 'be': 2.0, 'yesterday': 1.0, 'shy': 1.0, 'is': 7.0, 'around': 1.0, 'although': 1.0, 'quickly': 1.0, 'short': 1.0, 'there': 1.0, 'isn': 1.0, 'put': 1.0, 'much': 1.0, 'do': 2.0, 'variation': 1.0, 'alternative': 1.0, 'could': 1.0, 'will': 1.0, 'us': 1.0, 'also': 2.0, 'attachment': 1.0, 'wise': 1.0, 'he': 2.0, '8': 1.0, 'plastic': 4.0, 'our': 4.0, 'how': 1.0, 'even': 2.0, 'pieces': 1.0, 'daughter': 1.0, 'got': 1.0, 'big': 2.0, 'enough': 1.0, 'off': 3.0, 'filed': 1.0, 'properly': 1.0, 'their': 1.0, 'fill': 1.0, 'out': 1.0, 'folded': 1.0, 'seperately': 1.0, 'when': 1.0, 'that': 2.0, 'easily': 1.0, 'takes': 1.0, 'up': 4.0, 'over': 1.0, 'receiving': 1.0, '5': 2.0, 'blanket': 1.0, 'with': 1.0, 'itself': 1.0, 'not': 2.0, 'flopping': 1.0, 'giraffes': 5.0, 'was': 3.0, 'chokable': 1.0, 'if': 1.0, 'bigger': 1.0, 'able': 1.0, 'where': 1.0, 'girl': 1.0, 'depending': 1.0}
Word element => {'his': 1.0, 'giving': 1.0, 'food': 1.0, 'chair': 1.0, 'a': 1.0, 'as': 1.0, 'and': 1.0, 'is': 1.0, 'l': 1.0, 'doubles': 1.0, 'my': 1.0, 'he': 1.0, 'this': 1.0, 'grandson': 1.0, 'play': 1.0, 'for': 2.0, 'in': 1.0, 'him': 1.0, 'great': 1.0, 'can': 1.0, 'it': 2.0}
Word element => {'immediately': 1.0, 'be': 1.0, 'should': 1.0, 'away': 1.0, 'throw': 1.0, 'of': 2.0, 'to': 1.0, 'his': 1.0, 'did': 1.0, 'problem': 2.0, 'pretty': 1.0, 'biggest': 1.0, 'my': 2.0, 'pull': 2.0, 'and': 3.0, 'significant': 1.0, 'fixed': 1.0, 'he': 2.0, 'this': 3.0, 'with': 1.0, 'by': 2.0, 'giraffe': 1.0, 'out': 2.0, 'walker': 1.0, 'own': 1.0, 'rod': 1.0, 'was': 3.0, 'had': 2.0, 'the': 6.0, 'hanging': 1.0, 'so': 1.0, 'time': 1.0, 'son': 2.0, 'however': 1.0, 'literally': 1.0, 'them': 1.0, 'wore': 1.0, 'which': 1.0, 'threads': 1.0, 'i': 2.0, 'on': 1.0, 'think': 1.0, 'off': 2.0, 'we': 2.0, 'a': 1.0, 'that': 1.0, 'severe': 1.0, 'fantastic': 1.0, 'you': 1.0, 'because': 1.0, 'choking': 2.0, 'can': 2.0, 'then': 1.0, 'it': 4.0, 'remove': 1.0, 'holding': 1.0, 'toys': 1.0, 'done': 1.0, 'beads': 2.0, 'slide': 1.0, 'is': 2.0, 'say': 1.0, 'hazard': 2.0}
Word element => {'up': 1.0, 'or': 1.0, 'dip': 2.0, 'down': 1.0, 'going': 1.0, 'walmart': 2.0, 'shorty': 1.0, 'for': 1.0, 'lowest': 1.0, 'isnt': 1.0, 'when': 1.0, 'bear': 3.0, 'so': 2.0, 'from': 4.0, 'while': 1.0, 'to': 7.0, 'bads': 1.0, 'baby': 3.0, 'enough': 1.0, 'have': 1.0, 'home': 4.0, 'one': 4.0, 'lot': 1.0, 'since': 1.0, 'we': 5.0, 'a': 6.0, 'spends': 1.0, 'loves': 1.0, 'been': 2.0, 'easily': 1.0, 'that': 2.0, 'her': 1.0, 'different': 1.0, 'but': 1.0, 'man': 1.0, 'not': 1.0, 'months': 3.0, 'get': 1.0, 'and': 8.0, 'grandmas': 3.0, 'little': 1.0, 'went': 1.0, 'wanted': 1.0, 'portable': 1.0, 'just': 1.0, 'stuff': 1.0, 'on': 1.0, 'my': 3.0, 'working': 1.0, 'are': 1.0, 'cart': 1.0, 'at': 4.0, 'is': 1.0, 'his': 2.0, 'around': 1.0, 'work': 1.0, 'over': 1.0, 'time': 1.0, 'walker': 5.0, 'he': 5.0, '6': 1.0, 'got': 1.0, 'couldnt': 2.0, '90': 1.0, 'reach': 2.0, 'of': 1.0, 'the': 7.0, 'floor': 1.0, 'mom': 1.0, 'online': 1.0, 'setting': 1.0, 'either': 1.0, 'had': 2.0, 'hes': 2.0, 'percentile': 1.0, 'them': 1.0, 'has': 1.0, 'in': 4.0, 'couple': 1.0, 'offer': 1.0, 'i': 2.0, '4': 1.0, 'trend': 1.0, 'walkers': 1.0, 'suggested': 1.0, 'house': 2.0, 'both': 1.0, 'this': 2.0, 'perfect': 1.0, 'was': 1.0, 'him': 1.0, 'it': 3.0, '75': 1.0, '9': 1.0, 'still': 1.0, 'same': 1.0, 'under': 1.0, 'buy': 2.0, 'prevents': 1.0, 'carts': 1.0, 'also': 1.0, 'even': 1.0, 'base': 1.0}
Word element => {'he': 1.0, 'everywhere': 1.0, 'goes': 1.0, 'grandson': 1.0, 'higher': 1.0, 'enjoys': 1.0, 'i': 2.0, 'it': 3.0, 'like': 1.0, 'my': 1.0, 'the': 1.0, 'a': 1.0, 'lot': 1.0, 'just': 1.0, 'in': 1.0, 'wish': 1.0, 'walker': 1.0, 'was': 1.0, 'little': 1.0}
Word element => {'be': 1.0, 'running': 1.0, 'are': 1.0, 'girls': 1.0, 'when': 1.0, 'my': 2.0, 'use': 1.0, 'great': 1.0, 'besides': 1.0, 'up': 1.0, 'sit': 1.0, 'learning': 1.0, 'old': 2.0, '9': 1.0, 'period': 1.0, 'walker': 2.0, 'so': 1.0, 'know': 1.0, 'not': 1.0, 'just': 1.0, 'this': 2.0, 'kids': 1.0, 'walking': 1.0, 'action': 1.0, 'transiting': 1.0, 'apart': 1.0, 'want': 1.0, 'get': 1.0, 'and': 2.0, 'who': 2.0, 'learn': 1.0, 'the': 3.0, 'we': 1.0, 's': 5.0, 'a': 3.0, 't': 1.0, 'around': 1.0, 'is': 2.0, 'more': 1.0, 'record': 1.0, 'i': 2.0, 'straight': 1.0, 'months': 1.0, 'one': 1.0, 'outside': 1.0, 'to': 5.0, 'for': 5.0, 'product': 1.0, 'crawling': 1.0, 'between': 1.0, 'they': 1.0, '2': 1.0, 'can': 2.0, 'person': 1.0, 'put': 1.0, 'his': 1.0, 'it': 4.0, 'month': 2.0, 'said': 1.0, 'in': 1.0, 'of': 1.0, 'imagine': 1.0, 'that': 3.0, 'wants': 1.0, 'son': 1.0, 'possible': 1.0, 'he': 3.0, 'how': 2.0, 'walk': 3.0, '6': 2.0}
Word element => {'you': 1.0, 'that': 1.0, 'buy': 1.0, 'a': 1.0, 's': 1.0, 'months': 1.0, 'three': 1.0, 'i': 1.0, 'love': 1.0, 'great': 1.0, 'it': 2.0, 'recommend': 1.0, 'loves': 1.0, 'this': 1.0, 'product': 1.0, 'my': 1.0, 'will': 1.0, 'baby': 1.0, 'only': 1.0, 'highly': 1.0, 'and': 1.0, 'his': 1.0}
Word element => {'this': 1.0, 'for': 1.0, 'bumpers': 1.0, 'of': 1.0, 'bottom': 1.0, 'little': 1.0, 'expectations': 1.0, 'on': 3.0, 'loves': 1.0, 'walker': 2.0, 'fast': 1.0, 'stoppers': 1.0, 'although': 1.0, 'rubber': 1.0, 'niece': 1.0, 'said': 1.0, 'to': 2.0, 'as': 1.0, 'hard': 1.0, 'from': 1.0, 'getting': 1.0, 'made': 1.0, 'the': 4.0, 'my': 2.0, 'her': 2.0, 'walk': 1.0, 'carpet': 1.0, 'they': 1.0, 'helped': 1.0, 'when': 2.0, 'a': 1.0, 'going': 1.0, 'and': 2.0, 'too': 1.0, 'met': 1.0, 'exactly': 1.0, 'floors': 1.0, 'wood': 1.0, 'keep': 1.0, 'it': 5.0, 'she': 1.0, 'was': 3.0, 'recommend': 1.0, 'just': 1.0, 'started': 1.0, 'overall': 1.0, 'definitely': 1.0, 'i': 1.0}
Word element => {'got': 1.0, 'use': 1.0, '5': 1.0, 'great': 1.0, 'own': 1.0, 'on': 1.0, 'just': 1.0, 'will': 1.0, '4': 1.0, 'i': 1.0, 'ever': 1.0, 'baby': 1.0, 'm': 1.0, 'best': 1.0, 'his': 2.0, 'for': 2.0, 'using': 1.0, 'it': 4.0, 'walk': 1.0, 'he': 5.0, 'its': 1.0, 'was': 1.0, 'seat': 1.0, 'to': 2.0, 'been': 2.0, 'toy': 3.0, 'has': 2.0, 'soon': 1.0, 'and': 3.0, 'sure': 1.0, 'get': 1.0, 'son': 1.0, 'is': 5.0, 'this': 1.0, '30': 1.0, 'purchase': 1.0, 'absolute': 1.0, 'my': 1.0, 'the': 6.0, 'about': 1.0, 'thing': 1.0, 'able': 1.0, 'months': 3.0, 'over': 1.0, 'walker': 2.0, 'kinda': 1.0, 'short': 1.0, 'leaning': 1.0, 'favorite': 1.0, '8': 1.0, 'speed': 1.0, 'demon': 1.0, 'outgrow': 1.0, 'in': 1.0, 'did': 1.0, 'pretty': 1.0, 'we': 1.0, 's': 1.0, 'a': 3.0, 'go': 1.0, 'phase': 1.0, 'deep': 1.0, 'through': 1.0, 'of': 4.0, 'sides': 1.0, 'never': 1.0, 'anyways': 1.0, 'but': 2.0, 'out': 2.0}
Word element => {'back': 1.0, 'make': 1.0, 'self': 1.0, 'tray': 1.0, 'place': 1.0, 'great': 1.0, 'makes': 1.0, 'thing': 1.0, 'really': 1.0, '7': 1.0, 'touch': 1.0, 'for': 3.0, 'tall': 1.0, 'works': 1.0, 'anything': 1.0, 'short': 1.0, 'very': 2.0, 'being': 1.0, 'with': 1.0, 'a': 4.0, 's': 1.0, 'could': 2.0, 'bar': 1.0, 'play': 2.0, 'and': 6.0, 'hardwood': 1.0, 'but': 2.0, 'inside': 1.0, 'if': 1.0, 'still': 2.0, 'actually': 1.0, 'out': 4.0, 'couple': 1.0, 'wasn': 1.0, 'mouth': 1.0, 'feedings': 2.0, 'to': 6.0, 'in': 1.0, 'seat': 1.0, 'giraffe': 1.0, 'pop': 1.0, 'by': 1.0, 'hard': 1.0, 'this': 2.0, 'loved': 1.0, 'watch': 1.0, 'through': 1.0, 'our': 1.0, 'how': 1.0, 'we': 6.0, 'leg': 1.0, 'fine': 1.0, 'floors': 1.0, 'at': 1.0, 'bead': 1.0, 'is': 2.0, 'thankfully': 1.0, 'completely': 1.0, 'around': 2.0, 'started': 1.0, 'she': 9.0, 'baby': 1.0, '6': 1.0, 'pulling': 1.0, 'ground': 1.0, 'definitely': 1.0, 'my': 1.0, 'of': 3.0, 'the': 10.0, 'orange': 1.0, 'well': 2.0, 'feet': 1.0, 'broke': 2.0, 're': 1.0, 'can': 1.0, 'so': 3.0, 'zooms': 1.0, 'until': 1.0, 'climb': 2.0, 'off': 4.0, 'gnawing': 1.0, 'too': 3.0, 'one': 2.0, 'on': 4.0, 'little': 3.0, 'didn': 2.0, 'giraffes': 1.0, 'was': 3.0, 't': 3.0, 'fit': 1.0, 'rest': 1.0, 'belt': 1.0, 'problems': 1.0, 'that': 1.0, 'using': 1.0, 'as': 1.0, 'body': 1.0, 'months': 3.0, 'get': 1.0, 'sit': 1.0, 'when': 2.0, 'promptly': 1.0, 'times': 1.0, 'hurt': 1.0, 'want': 1.0, 'old': 2.0, 'tries': 1.0, 'them': 1.0, 'has': 1.0, 'figured': 1.0, 'now': 2.0, 'frame': 1.0, 'pieces': 1.0, 'down': 1.0, 'turned': 1.0, 'it': 10.0, '9': 1.0, 'already': 1.0, 'much': 2.0, 'put': 1.0, 'floor': 1.0, 'her': 5.0, 'smaller': 1.0, 'use': 2.0, 'holes': 1.0, 'they': 1.0, 'should': 1.0, 'be': 1.0, 'closely': 1.0, 'big': 1.0, 'any': 1.0, 'probably': 1.0, 'whole': 1.0, 'have': 2.0}
Word element => {'delivered': 1.0, 'stores': 1.0, 'this': 1.0, 'longer': 1.0, 'no': 1.0, 'so': 2.0, 'daughter': 1.0, 'mr': 1.0, 'they': 1.0, 'feet': 1.0, 'adjustable': 1.0, 'grandchild': 1.0, 'does': 1.0, 'find': 1.0, 'because': 1.0, 'not': 2.0, 'the': 2.0, 'reach': 1.0, 'setting': 1.0, 'i': 4.0, 'much': 1.0, 'granddaughter': 1.0, 'was': 1.0, 'yes': 1.0, 'previously': 1.0, 'returned': 1.0, 'and': 3.0, 'too': 1.0, 'had': 5.0, 'purchased': 3.0, 'at': 1.0, '3': 1.0, 'online': 1.0, 'floor': 1.0, 'walkers': 1.0, 'high': 1.0, 'were': 1.0, 'as': 2.0, 'any': 1.0, 'to': 1.0, 'least': 1.0, 'all': 1.0, 'in': 3.0, 'law': 1.0, 'height': 1.0, 'them': 1.0, 'baby': 1.0, 'absolutely': 1.0, 'years': 1.0, 'my': 1.0, 'another': 1.0, 'but': 1.0, 'lowest': 1.0, 'even': 1.0, 'still': 1.0, 's': 1.0, 'ago': 1.0, 'could': 2.0, 'a': 1.0, 'brand': 1.0, 'trend': 1.0, 'love': 1.0, 'for': 1.0, 'given': 1.0, 'she': 1.0, 'it': 5.0}
Word element => {'buy': 1.0, 'on': 1.0, 'enthralled': 1.0, 'baby': 1.0, 'my': 1.0, 'the': 2.0, 'together': 1.0, 'now': 1.0, 'was': 2.0, 'to': 2.0, 'easy': 1.0, 'put': 1.0, 'but': 1.0, 'super': 1.0, 'spring': 1.0, 'covers': 1.0, 'has': 1.0, 'toys': 1.0, 'with': 1.0, 'it': 1.0, 'moved': 1.0, 'actual': 1.0, 'rattles': 1.0, 'awesome': 1.0}
Word element => {'need': 1.0, 'else': 1.0, 'still': 1.0, 'them': 2.0, 'throw': 1.0, 'yet': 1.0, 'more': 1.0, 'gotten': 1.0, 'not': 2.0, 'have': 1.0, 'i': 1.0, 'on': 1.0, '3': 2.0, '5': 2.0, 'about': 1.0, 'lucky': 1.0, 'after': 1.0, 'new': 1.0, 'with': 2.0, 'it': 5.0, 'a': 1.0, 'charges': 3.0, 'than': 1.0, 'usually': 1.0, 'for': 4.0, 'product': 1.0, 'remote': 1.0, 'set': 1.0, 'of': 1.0, 'this': 1.0, 'full': 1.0, 'are': 1.0, 'will': 1.0, 'batteries': 6.0, 'brand': 1.0, 'the': 4.0, 'replace': 2.0, 'do': 1.0, 'only': 3.0, 'works': 1.0, 'charge': 1.0, 'unfortunately': 1.0, 'minutes': 2.0, 'charged': 1.0, 'away': 1.0, 'now': 1.0, 'to': 3.0, 'in': 1.0, 'needs': 1.0, 'get': 2.0, '2': 2.0, 'work': 2.0, 'but': 1.0, 'when': 1.0, 'again': 1.0, 'you': 5.0, '6': 1.0, 'aa': 1.0, 'everything': 1.0, 'if': 1.0, 'another': 1.0, 'may': 2.0, 'order': 1.0, 'charger': 1.0, 'per': 1.0}
Word element => {'it': 2.0, 'ride': 2.0, 'in': 1.0, 'fantastic': 1.0, 'couldn': 1.0, 't': 1.0, 'some': 1.0, 'of': 2.0, 'be': 1.0, 'even': 1.0, 'all': 1.0, 'hit': 1.0, 'neighborhood': 1.0, 'a': 1.0, 'adults': 1.0, 'more': 1.0, 'the': 3.0, 'kids': 1.0}
Word element => {'better': 1.0, 'was': 1.0, 'price': 1.0, 'great': 1.0, 'a': 2.0, 'for': 1.0, 'everywhere': 1.0, 'decent': 1.0, 'and': 1.0, 'quality': 1.0, 'find': 1.0, 'the': 1.0, 'two': 1.0, 'fine': 1.0, 'to': 1.0, 'pack': 2.0, 'i': 1.0, 'n': 1.0, 'play': 1.0, 'even': 1.0, 'fits': 1.0, 'just': 1.0, 'searched': 1.0}
Word element => {'fur': 1.0, 'now': 1.0, 'some': 1.0, 'kids': 1.0, 'likely': 1.0, 'most': 1.0, 'right': 1.0, 'll': 2.0, 'product': 1.0, 'great': 1.0, 'each': 1.0, 'go': 1.0, 'bit': 1.0, 'brands': 1.0, '1': 2.0, 'size': 3.0, 'litttle': 1.0, 'newborn': 2.0, 'run': 1.0, 'seem': 1.0, 'stars': 1.0, 'five': 1.0, 'only': 1.0, 'little': 2.0, 'tail': 1.0, 's': 1.0, 'is': 3.0, 'have': 3.0, 'give': 1.0, 'huggies': 1.0, 'brand': 1.0, 'other': 1.0, 'all': 1.0, 'an': 1.0, 'work': 2.0, 'puppy': 1.0, 'bought': 1.0, 'money': 1.0, 'name': 1.0, 'your': 1.0, 'get': 1.0, 'because': 1.0, 'that': 1.0, 'up': 1.0, '79': 1.0, '5': 1.0, 'better': 2.0, 'think': 1.0, '6': 1.0, 'their': 1.0, 'lost': 1.0, 'this': 1.0, 'no': 1.0, 'doggy': 2.0, 'expensive': 2.0, 'for': 11.0, 'actually': 1.0, 'sometimes': 1.0, 'm': 1.0, 'in': 2.0, 'through': 1.0, 'stickiness': 1.0, 'babies': 1.0, 'more': 1.0, 'tabs': 2.0, 'to': 10.0, 'house': 1.0, 'come': 1.0, 're': 3.0, 'hole': 1.0, 'didn': 2.0, 'got': 1.0, 'sneak': 1.0, 'went': 1.0, 'but': 3.0, 'so': 1.0, 'can': 1.0, 'pee': 1.0, 'basically': 1.0, 'small': 1.0, 'a': 5.0, 'allows': 1.0, 'with': 2.0, 'them': 5.0, 'baby': 2.0, 'be': 1.0, 'disposable': 1.0, 'do': 2.0, '16': 1.0, 'leaked': 1.0, 'don': 1.0, 'like': 8.0, 'reason': 1.0, 'using': 2.0, 'poodle': 3.0, 'really': 1.0, 'well': 1.0, 'i': 19.0, 'anyway': 2.0, 'use': 3.0, 'chihuahua': 3.0, 'cut': 1.0, 'they': 8.0, 'soiled': 1.0, 'just': 5.0, 'not': 1.0, 'bigger': 1.0, 'stay': 1.0, 'my': 7.0, 'me': 1.0, 'dollars': 1.0, 'worthless': 1.0, 'had': 1.0, '12': 1.0, 'on': 2.0, 'which': 1.0, 'incontinent': 1.0, 'good': 1.0, 'going': 1.0, 'finally': 1.0, 'nearly': 1.0, 'decided': 1.0, 'try': 1.0, 'walmart': 1.0, 'effective': 1.0, 'these': 4.0, 'luck': 1.0, 'how': 1.0, 'velcro': 1.0, 'take': 2.0, 'during': 1.0, 'day': 2.0, 'dogs': 1.0, 'something': 1.0, 'buy': 1.0, 'pampers': 1.0, 'when': 2.0, 'out': 1.0, 'potty': 1.0, 'keep': 1.0, 'you': 1.0, 'bucks': 1.0, 'same': 1.0, 'apart': 1.0, 'off': 2.0, 'tried': 1.0, 'until': 1.0, 'wear': 1.0, 'it': 4.0, 'gets': 1.0, 'or': 3.0, 'leave': 1.0, 'as': 2.0, 'diaper': 3.0, 'falls': 1.0, 'from': 1.0, 'tear': 1.0, 'poo': 1.0, 'diapers': 4.0, 'are': 1.0, 'plus': 2.0, 'fit': 1.0, 't': 3.0, 'cost': 1.0, 'were': 2.0, 'and': 13.0, '50': 1.0, 'the': 9.0, 'of': 2.0}
Word element => {'seat': 1.0, 'cosi': 1.0, 'with': 1.0, 'perfectly': 1.0, 'works': 1.0, 'them': 1.0, 'the': 1.0, 'find': 1.0, 'finally': 1.0, 'i': 2.0, 'infant': 1.0, 'maxi': 1.0, 'looked': 1.0, 'these': 1.0, 'for': 1.0, 'adapter': 1.0, 'excited': 1.0, 'and': 1.0, 'car': 1.0, 'everywhere': 1.0, 'm': 1.0, 'super': 1.0, 'to': 1.0}
Word element => {'creepy': 1.0, 'iron': 1.0, 'but': 1.0, 'back': 1.0, 'put': 1.0, 'quality': 1.0, 'a': 1.0, 'by': 1.0, 'would': 1.0, 'of': 2.0, 'one': 1.0, 'i': 2.0, 'pretty': 1.0, 'kind': 1.0, 'very': 2.0, 'get': 1.0, 'and': 2.0, 'control': 1.0, 'these': 1.0, 'the': 3.0, 'are': 1.0, 'however': 1.0, 'drops': 1.0, 'liners': 1.0, 'that': 1.0, 'able': 1.0, 'baskets': 1.0, 'basket': 2.0, 'this': 1.0, 'it': 5.0, 'person': 1.0, 'blood': 1.0, 'on': 1.0, 'to': 1.0, 'had': 1.0, 'was': 3.0, 'wash': 1.0, 'in': 2.0, 'disappointed': 1.0}
Word element => {'feel': 1.0, 'dollars': 1.0, 'eighty': 1.0, 'easy': 1.0, 'room': 1.0, 'their': 1.0, 'take': 1.0, 'going': 1.0, 'isn': 1.0, 'that': 1.0, 'item': 1.0, 'recommend': 1.0, 'would': 1.0, 'gotten': 1.0, 'has': 3.0, 'three': 1.0, 'lot': 2.0, 'anyone': 1.0, 'and': 9.0, 'size': 1.0, 'perfect': 1.0, 'this': 8.0, 's': 1.0, 'tiny': 1.0, 'a': 6.0, 'up': 1.0, 'storage': 1.0, 'worth': 1.0, 'now': 1.0, 'selling': 1.0, 'assembly': 1.0, 'huge': 1.0, 'bought': 1.0, 'did': 1.0, 'through': 1.0, 'purchased': 1.0, 'oven': 4.0, 'paid': 1.0, 'only': 1.0, 'purchase': 2.0, 'my': 4.0, 'time': 1.0, 'sheet': 1.0, 'they': 1.0, 'not': 4.0, 'under': 1.0, 'super': 1.0, 'really': 1.0, 'bigger': 1.0, 'sideways': 1.0, 'still': 2.0, 'every': 1.0, 'at': 2.0, 'is': 2.0, 'been': 1.0, 'amazon': 1.0, 'use': 1.0, 'living': 1.0, 'old': 2.0, 'well': 1.0, 'i': 8.0, 'cookie': 1.0, 'whistles': 1.0, 'weren': 1.0, 'with': 3.0, 'looking': 1.0, 'christmas': 1.0, 'it': 6.0, 'last': 1.0, 'year': 4.0, 'for': 6.0, 't': 2.0, 'along': 1.0, 'fit': 2.0, 'when': 2.0, 'daughter': 2.0, '2': 1.0, 'food': 1.0, 'but': 2.0, 'made': 1.0, 'get': 1.0, 'tea': 1.0, 'morning': 1.0, 'melissa': 1.0, 'items': 1.0, 'pizza': 1.0, 'all': 2.0, 'doors': 1.0, 'pretty': 1.0, 'to': 2.0, 'least': 1.0, 'holding': 1.0, 'both': 1.0, 'in': 1.0, 'two': 1.0, 'little': 2.0, 'doug': 1.0, 'top': 1.0, 'shelf': 2.0, 'over': 1.0, 'hard': 1.0, 'daily': 1.0, 'open': 2.0, 'the': 11.0, 'of': 2.0, 'accessories': 1.0, 'plays': 1.0, 'later': 1.0, 'being': 1.0, 'you': 1.0, 'complaints': 1.0, 'have': 1.0, 'kitchen': 2.0, 'does': 1.0, 'down': 1.0, 'like': 2.0, 'fridge': 2.0, 'normal': 1.0, 'was': 1.0, 'opens': 1.0, 'are': 1.0, 'first': 1.0, 'bells': 1.0, 'though': 1.0, 'better': 1.0, 'think': 2.0}
Word element => {'detail': 1.0, 'mirror': 1.0, 'side': 1.0, 'the': 1.0, 'sleep': 1.0, 'love': 1.0, 'without': 1.0, 'it': 2.0, 'truck': 1.0, 'really': 1.0, 'touch': 1.0, 'looks': 1.0, 'toy': 1.0, 'a': 1.0, 'folded': 1.0, 'for': 1.0, 'in': 1.0, 'wont': 1.0, 'half': 1.0, 'like': 1.0, 'and': 2.0}
Word element => {'below': 1.0, 'space': 1.0, 'out': 1.0, 'quite': 1.0, 'hasn': 1.0, 'swing': 1.0, 'you': 1.0, 'enjoys': 2.0, 'he': 3.0, 'going': 1.0, 'to': 1.0, 'crawl': 1.0, 'months': 1.0, 'old': 1.0, '17': 1.0, 'also': 1.0, 'really': 1.0, 'is': 1.0, 'son': 1.0, 'and': 1.0, 'up': 1.0, 'my': 1.0, 'figured': 1.0, 't': 1.0, 'the': 5.0, 'landing': 1.0, 'go': 1.0, 'slide': 3.0, 'down': 2.0, 'climbing': 1.0, 'before': 1.0}
Word element => {'us': 1.0, 'open': 1.0, 'guy': 1.0, 'little': 1.0, 'for': 2.0, 'isn': 1.0, 'strip': 1.0, 'standard': 1.0, 'covered': 1.0, 'easy': 1.0, 'plug': 1.0, 'different': 1.0, 'right': 1.0, 'item': 1.0, 'i': 1.0, 'my': 1.0, 'just': 2.0, 'plugs': 1.0, 'a': 1.0, 'black': 1.0, 'supposed': 1.0, 'moved': 1.0, 'only': 1.0, 'it': 4.0, 'our': 2.0, 'that': 2.0, 'power': 2.0, 'is': 2.0, 'and': 1.0, 'do': 1.0, 'works': 1.0, 'what': 1.0, 'does': 1.0, 's': 1.0, 'to': 3.0, 'adapter': 1.0, 'don': 1.0, 'the': 2.0, 'ones': 1.0, 't': 2.0, 'enough': 1.0, 'complaint': 1.0, 'fit': 2.0, 'boxy': 1.0, 'but': 2.0}
Word element => {'sit': 1.0, 'loves': 1.0, 'son': 1.0, 'suspost': 1.0, 'what': 1.0, 'my': 1.0, 'smaller': 1.0, 'looks': 1.0, 'its': 3.0, 'to': 2.0, 'be': 1.0, 'size': 1.0, 'right': 1.0, 'once': 1.0, 'at': 1.0, 'together': 1.0, 'love': 1.0, 'first': 1.0, 'it': 3.0, 'then': 2.0, 'i': 1.0, 'awesome': 1.0, 'in': 1.0, 'perfect': 1.0, 'but': 1.0, 'put': 1.0, 'and': 1.0, 'up': 1.0, 'sits': 1.0}
Word element => {'him': 1.0, 'also': 1.0, 'walking': 1.0, 'and': 2.0, 'in': 1.0, 'awesome': 1.0, 'its': 2.0, 'baby': 1.0, 'likes': 1.0, 'helping': 1.0, 'be': 1.0, 'to': 1.0, 'all': 1.0, 'there': 1.0, 'standing': 1.0, 'my': 1.0, 'the': 2.0, 'time': 1.0}
Word element => {'star': 1.0, 'supported': 1.0, 'time': 2.0, 'out': 1.0, 'blanket': 1.0, '5': 1.0, 'since': 1.0, 'keep': 1.0, 'be': 1.0, 'for': 3.0, 'actually': 1.0, 'ventilator': 1.0, 'anyone': 1.0, 'and': 7.0, 'lot': 1.0, 'too': 1.0, 'periods': 1.0, 'life': 1.0, 'by': 1.0, 'jammin': 1.0, 'we': 2.0, 'through': 1.0, 'our': 1.0, 'to': 2.0, 'as': 1.0, 'toy': 3.0, 'has': 4.0, 'little': 2.0, 'that': 1.0, 'best': 1.0, 'at': 1.0, 'is': 5.0, 'more': 1.0, 'comes': 1.0, 'much': 1.0, 'put': 1.0, 'guy': 1.0, 'but': 1.0, 'so': 2.0, 'can': 1.0, 'with': 2.0, 'him': 3.0, 'it': 2.0, 'tap': 1.0, 'far': 1.0, 'he': 5.0, 'walk': 1.0, 'tracheostomy': 1.0, 'first': 1.0, 'this': 4.0, 'perfect': 1.0, 'months': 2.0, 'mobile': 1.0, 'vent': 1.0, 'of': 3.0, 'doing': 1.0, 'the': 7.0, 'great': 2.0, 'all': 1.0, 'ever': 1.0, 'seat': 1.0, 'in': 2.0, 'age': 1.0, 'offer': 1.0, 'a': 8.0, 'small': 1.0, 'his': 2.0, 'toes': 1.0, 'when': 1.0, 'still': 1.0, 'keyboard': 1.0, 'on': 4.0, 'long': 1.0, 'being': 1.0, 'will': 2.0, 'pose': 1.0, 'some': 1.0, 'challenges': 1.0, 'full': 1.0, 'recommend': 1.0, 'baby': 1.0, 'becomes': 1.0, 'i': 2.0, 'fact': 1.0, 'interested': 1.0, 'track': 1.0, 'back': 1.0, 'rock': 1.0, 'been': 2.0, 'forth': 1.0, 'own': 1.0, 'swivels': 1.0, 'like': 1.0, '360': 1.0, 'even': 1.0, 'really': 1.0, 'songs': 1.0, 's': 1.0, 'ha': 1.0}
Word element => {'best': 1.0, 'what': 2.0, 'expected': 1.0, 'the': 3.0, 'is': 3.0, 'now': 1.0, 'about': 1.0, 'price': 1.0, 'i': 2.0, 'for': 1.0, 'one': 2.0, 'doubled': 1.0, 'of': 1.0, 'since': 1.0, 'probably': 1.0, 'and': 2.0, 'use': 1.0, 'purchased': 1.0, 'it': 3.0, 'first': 2.0, 'still': 1.0, 'half': 1.0, 'plastic': 1.0, 'have': 1.0}
Word element => {'red': 1.0, 'crafted': 1.0, 'if': 1.0, 'good': 1.0, 'inside': 1.0, 'sit': 1.0, 'little': 1.0, 'considering': 2.0, 'on': 1.0, 'suggest': 1.0, 'pops': 1.0, 'but': 2.0, 'thing': 1.0, 'surprise': 1.0, '2': 1.0, 'off': 1.0, 'lid': 1.0, 'single': 1.0, 'daughter': 1.0, 'back': 2.0, 'storage': 1.0, 'under': 2.0, 'far': 1.0, 'fold': 3.0, 'all': 1.0, 'you': 4.0, 'unless': 1.0, 'sure': 1.0, 'well': 1.0, 'i': 4.0, 'not': 2.0, 'hanging': 1.0, 'half': 1.0, 'has': 4.0, 'trunk': 4.0, 'and': 7.0, 'why': 1.0, 'bards': 1.0, 'with': 1.0, 'mechanism': 2.0, 's': 3.0, 'it': 13.0, 'available': 1.0, 'folding': 3.0, 'this': 2.0, 'for': 3.0, 'fit': 1.0, 'out': 1.0, 'enjoyed': 1.0, 'space': 1.0, 'tricycle': 1.0, 'birthday': 1.0, 'tassels': 1.0, 'up': 3.0, 'times': 1.0, 'hours': 1.0, 'assure': 1.0, 'fell': 1.0, 'though': 1.0, 'riding': 1.0, 'received': 1.0, 'plastic': 1.0, 'my': 2.0, 'would': 4.0, 'ribbon': 2.0, 'tight': 1.0, 'want': 1.0, 'durable': 1.0, 'second': 1.0, 'the': 14.0, 'of': 4.0, '3': 1.0, 'countless': 1.0, 'her': 1.0, 'does': 1.0, 'make': 1.0, 'keeps': 1.0, 'probably': 1.0, 'your': 1.0, 'strong': 1.0, 'girl': 1.0, 'moments': 1.0, 'a': 5.0, 'small': 1.0, 'have': 1.0, 'enough': 1.0, 'seat': 1.0, 'm': 1.0, 'in': 3.0, 'closet': 1.0, 'portion': 1.0, 'parents': 1.0, 'or': 1.0, 'try': 1.0, 'held': 1.0, 'flyer': 2.0, 'while': 1.0, 'from': 2.0, 'radio': 2.0, 'concern': 1.0, 'some': 2.0, 'so': 1.0, 'spaces': 1.0, 'can': 1.0, 'handle': 2.0, 'is': 2.0, 'around': 1.0, 'very': 3.0, 'no': 2.0, 'about': 1.0, 'looking': 1.0, 'including': 1.0, 'worries': 1.0, 'trike': 5.0, 'breaking': 2.0, 'to': 6.0, 'high': 3.0, 'needed': 1.0, 'toughest': 1.0, 'wheels': 1.0, 'quality': 3.0, 'dragging': 1.0, 'pink': 2.0, 'metal': 1.0, 'sturdy': 1.0, 'are': 2.0, 'easily': 1.0, 'that': 1.0, 'through': 1.0, 'popped': 2.0, 'roughest': 1.0, 'toddler': 1.0, 'by': 1.0}
Word element => {'way': 1.0, 'newborn': 1.0, 'a': 1.0, 'fit': 1.0, 'newborns': 1.0, 'beautiful': 1.0, 'for': 2.0, 'too': 1.0, 'daughter': 1.0, 't': 1.0, 'purchased': 1.0, 'i': 2.0, 'old': 1.0, 'recommend': 1.0, 'of': 1.0, 'kind': 1.0, 'big': 2.0, 'is': 1.0, 'wouldn': 1.0, 'it': 5.0, 'month': 1.0, 'my': 1.0, 'three': 1.0, 'and': 1.0, 'was': 1.0, 'not': 1.0, 'but': 1.0, 'will': 1.0}
Word element => {'be': 1.0, 'overall': 1.0, 'buy': 1.0, 'great': 1.0, 'clean': 1.0, 'steel': 1.0, 'stainless': 1.0, 'how': 1.0, 'ack': 1.0, 'in': 1.0, 'spaghetti': 1.0, 'put': 1.0, 'way': 1.0, 'tipped': 1.0, 'container': 2.0, 'compartments': 1.0, 'too': 1.0, 'and': 7.0, 'toddler': 1.0, 'will': 1.0, 't': 1.0, 'a': 2.0, 'mix': 1.0, 'plate': 1.0, 'so': 1.0, 'flat': 1.0, 'small': 1.0, 'sideways': 1.0, 'child': 1.0, 'not': 1.0, 'cute': 1.0, 'sized': 1.0, 'is': 2.0, 'just': 1.0, 'lunches': 1.0, 'keep': 1.0, 'at': 1.0, 'cannot': 1.0, 'love': 1.0, 'for': 4.0, 'snacks': 1.0, 'or': 1.0, 'absorb': 1.0, 'older': 1.0, 'perfect': 2.0, 'this': 2.0, 'hard': 1.0, 'my': 2.0, 'careful': 1.0, 'tad': 1.0, 'the': 7.0, 'but': 1.0, 'food': 1.0, '2': 1.0, 'doesn': 1.0, 'was': 1.0, 'kiddos': 1.0, '18': 1.0, 'old': 1.0, 'i': 2.0, 'draw': 1.0, 'it': 2.0, 'month': 1.0, 'backs': 1.0, 'smells': 1.0, 'when': 1.0, 'you': 1.0, 'tilt': 1.0, 'to': 2.0, 'all': 1.0, 'making': 1.0, 'separate': 1.0, 'are': 1.0, 'easy': 1.0, 'toast': 1.0, 'learned': 1.0}
Word element => {'choose': 1.0, 'let': 1.0, 'on': 1.0, 'variety': 1.0, 'a': 1.0, 'can': 1.0, 't': 1.0, 'this': 1.0, 'he': 2.0, 'going': 1.0, 'picky': 1.0, 'my': 1.0, 'like': 1.0, 'know': 1.0, 'and': 1.0, 'plate': 2.0, 'for': 1.0, 'love': 1.0, 'to': 2.0, 'put': 1.0, 'doesn': 1.0, 'toddler': 1.0, 'an': 1.0, 'touch': 1.0, 'i': 2.0, 'him': 1.0, 'never': 1.0, 's': 1.0, 'his': 2.0, 'what': 1.0, 'so': 1.0, 'food': 1.0, 'eat': 1.0}
Word element => {'problem': 1.0, 'fix': 1.0, 'individual': 1.0, 'just': 1.0, 'awesome': 1.0, 'said': 1.0, 'that': 1.0, 'wish': 1.0, 'again': 1.0, 'make': 1.0, 'being': 1.0, 'very': 1.0, 'quickly': 1.0, 'maintain': 1.0, 'bought': 1.0, 'selling': 1.0, 'platter': 1.0, 'side': 1.0, 'started': 1.0, 'they': 2.0, 'between': 1.0, 'saw': 1.0, 'pops': 1.0, 'container': 1.0, 'fridge': 1.0, 'shaped': 1.0, 'warps': 1.0, 'washed': 1.0, 'better': 1.0, 'think': 1.0, 'rigid': 1.0, 'wanted': 1.0, 'but': 2.0, 'doesn': 1.0, 'was': 3.0, 'is': 2.0, 'really': 2.0, 'out': 1.0, 'w': 2.0, 'does': 1.0, 'and': 2.0, 'plate': 3.0, 'so': 3.0, 'this': 2.0, 'it': 7.0, 'go': 1.0, 'a': 5.0, 'the': 11.0, 'wrap': 1.0, 'purchased': 1.0, 'when': 1.0, 'what': 1.0, 'to': 2.0, 'little': 1.0, 'two': 1.0, 'lid': 7.0, 'or': 1.0, 'in': 1.0, 'throw': 1.0, 'then': 2.0, 'take': 1.0, 'i': 12.0, 'well': 1.0, 'plastic': 1.0, 'luck': 1.0, 'disappointed': 1.0, 'how': 1.0, 'its': 1.0, 'do': 1.0, 'one': 1.0, 'try': 1.0, 'flat': 2.0, 'shape': 1.0, 'even': 1.0, 'if': 2.0, 'buy': 1.0, 'hand': 1.0, 'first': 1.0, 'drying': 1.0, 'heavy': 1.0, 'on': 2.0, 'noticed': 1.0, 'excited': 1.0, 'after': 1.0, 'not': 2.0, 'dry': 1.0, 'rack': 1.0, 'week': 1.0, 'overnight': 1.0, 'upright': 1.0, 'let': 1.0, 'no': 3.0, 'matter': 2.0, 'properly': 1.0, 'work': 1.0, 'hard': 1.0, 'could': 1.0, 'will': 1.0, 't': 1.0, 'fit': 1.0, 'for': 1.0, 'you': 3.0, 'push': 1.0, 'down': 1.0, 'corner': 1.0, 'other': 1.0, 'carefully': 1.0, 'up': 1.0, 'until': 1.0, 'tried': 1.0, 'placing': 1.0, 'pan': 1.0}
Word element => {'recommended': 1.0, 'hand': 1.0, 'wash': 1.0, 'so': 1.0, 'have': 1.0, 'highly': 1.0, 'only': 1.0, 'excellent': 1.0, 'we': 2.0, 'my': 1.0, 'daughter': 1.0, 'who': 1.0, 'is': 1.0, '2': 1.0, 'plate': 1.0, 'it': 2.0, 'one': 1.0, 'uses': 1.0, 'everyday': 1.0}
Word element => {'isn': 1.0, 'so': 1.0, 'pull': 1.0, 'have': 1.0, 'little': 1.0, 'a': 1.0, 'noted': 1.0, 'in': 1.0, 'seems': 1.0, 'also': 1.0, 'reviewer': 1.0, 'seated': 1.0, 'weight': 1.0, 'firmly': 1.0, 'off': 1.0, 'angle': 2.0, 'because': 1.0, 'not': 1.0, 'at': 2.0, 'wall': 1.0, 'it': 2.0, 'this': 1.0, 'hang': 1.0, 'other': 1.0, 'either': 1.0, 'use': 1.0, 't': 1.0, 'the': 5.0, 'make': 1.0, 'light': 1.0, 'do': 1.0, 'night': 1.0, 'i': 1.0, 'even': 1.0, 'does': 1.0, 'dangerous': 1.0, 'an': 2.0, 'adapter': 1.0, 'to': 1.0, 'socket': 3.0, 'from': 1.0, 'as': 1.0}
Word element => {'easy': 1.0, 'makes': 1.0, 'portable': 1.0, 'how': 1.0, 'being': 1.0, 'for': 1.0, 'love': 1.0, 'stars': 1.0, 'blue': 1.0, 'amber': 1.0, 'green': 1.0, 'and': 2.0, 'machine': 1.0, 'switch': 1.0, 'super': 1.0, 've': 1.0, 'to': 3.0, 'sleep': 1.0, 'infant': 1.0, 'summers': 1.0, 'have': 1.0, 'with': 2.0, 'this': 3.0, 'it': 3.0, 'room': 1.0, 'changed': 1.0, 'projection': 1.0, 'hold': 1.0, 'haven': 1.0, 'without': 1.0, 'the': 2.0, 'is': 4.0, 'more': 1.0, 'a': 2.0, 't': 1.0, 'awesome': 1.0, 'through': 1.0, 'neither': 1.0, 'i': 3.0, 'homedics': 1.0, 'thing': 1.0, 'gone': 1.0, 'sound': 1.0, 'up': 1.0, 'lasted': 1.0, 'you': 1.0, 'than': 1.0, 'projected': 1.0, 'light': 1.0, 'few': 1.0, 'months': 2.0, 'batteries': 1.0, 'amazing': 1.0, 'every': 1.0, 'travel': 1.0, 'use': 1.0, 'night': 1.0, 'them': 1.0, 'or': 1.0, 'yet': 1.0, 'from': 1.0, 'later': 1.0, 'music': 1.0, '2': 1.0, 'can': 1.0}
Word element => {'soothing': 1.0, 'very': 1.0, 'is': 1.0, 'and': 1.0, 'moon': 1.0, 'asleep': 2.0, 'has': 1.0, 'who': 1.0, 'trouble': 1.0, 'it': 1.0, 'falls': 1.0, '3mnth': 1.0, 'for': 1.0, 'also': 1.0, 'falling': 1.0, 'her': 2.0, 'turn': 1.0, 'light': 1.0, 'my': 1.0, 'music': 1.0, 'own': 2.0, 'the': 4.0, 'staring': 1.0, 'bought': 1.0, 'on': 3.0, 'slowly': 1.0, 'i': 1.0, 'old': 1.0, 'minute': 1.0, 'she': 1.0, 'loves': 1.0, 'at': 1.0}
Word element => {'a': 1.0, 'crib': 1.0, 'her': 1.0, 'was': 1.0, 'she': 1.0, 'every': 1.0, 'as': 1.0, 'crying': 1.0, 'from': 1.0, 'niece': 1.0, 'kept': 1.0, 'it': 1.0, 'nice': 1.0, 'which': 1.0, 'outlet': 1.0, 'if': 1.0, 'are': 1.0, 'family': 1.0, 'we': 1.0, 'newborn': 1.0, 'in': 3.0, 'for': 1.0, 'babies': 2.0, 'there': 1.0, 'of': 1.0, 'is': 2.0, 'really': 1.0, 'no': 1.0, 'useful': 1.0, 'room': 1.0, 'matter': 1.0, 'and': 2.0, 'like': 1.0, 'the': 2.0, '2': 2.0, 'these': 1.0, 'time': 1.0, 'they': 2.0, 'them': 1.0, 'can': 1.0, 'bought': 1.0, 'be': 1.0, 'an': 1.0, 'put': 2.0, 'my': 1.0, 'portable': 1.0, 'anywhere': 1.0}
Word element => {'go': 1.0, 'on': 1.0, 'home': 1.0, 'shapes': 1.0, 'at': 2.0, 'looking': 1.0, 'lullaby': 1.0, 'our': 1.0, 'that': 2.0, 'the': 3.0, 'my': 1.0, 'light': 1.0, 'beat': 1.0, 'star': 1.0, 'i': 2.0, 'cube': 1.0, 'love': 2.0, 'one': 1.0, 'has': 1.0, 'it': 1.0, 'he': 1.0, 'a': 1.0, 'heart': 1.0, 'and': 1.0, 'setting': 1.0, 'projections': 1.0, 'little': 1.0, 'or': 1.0, 'loves': 2.0, 'perfect': 1.0, 'also': 1.0}
Word element => {'bit': 1.0, 'of': 1.0, 'good': 1.0, 'a': 1.0, 'for': 1.0, 'stays': 1.0, 'colors': 1.0, 'stars': 1.0, 'baby': 1.0, 'to': 2.0, 'travel': 1.0, 'time': 1.0, 'on': 1.0, 'with': 2.0, 'easy': 1.0, 'use': 1.0, 'bright': 1.0, 'play': 1.0, 'great': 2.0, 'can': 1.0, 'it': 1.0}
Word element => {'handy': 1.0, 'easily': 1.0, 'bag': 1.0, 'in': 1.0, 'easy': 1.0, 'gift': 1.0, 'cool': 1.0, 'a': 2.0, 'diaper': 1.0, 'the': 3.0, 'such': 1.0, 'they': 2.0, 'not': 1.0, 'carry': 1.0, 'at': 1.0, 'washed': 1.0, 'of': 1.0, 'think': 2.0, 'really': 1.0, 'is': 4.0, 'people': 1.0, 'baby': 1.0, 'to': 1.0, 'comes': 1.0, 'and': 2.0, 'shower': 1.0, 'this': 1.0, 'it': 2.0, 'coolest': 1.0, 'one': 1.0, 'gifts': 1.0, 'then': 1.0, 'got': 1.0}
Word element => {'addition': 1.0, 'nice': 1.0, 'car': 1.0, 'changes': 1.0, 'your': 1.0, 'mom': 1.0, 'places': 1.0, 'smaller': 2.0, 'about': 2.0, 'thing': 1.0, 'whole': 1.0, 'wall': 1.0, 'like': 1.0, 'is': 2.0, 'around': 1.0, 'design': 1.0, 'take': 2.0, 'bulkier': 1.0, 'point': 1.0, 'noticed': 1.0, 'on': 5.0, 'stuff': 1.0, 'make': 1.0, 'disappointed': 1.0, 'a': 6.0, 'cake': 1.0, 'can': 2.0, 'but': 1.0, 'was': 2.0, 'mats': 1.0, 'recommend': 1.0, 'would': 3.0, 'not': 3.0, 'does': 1.0, 'mainly': 1.0, 'public': 1.0, 'it': 7.0, 'first': 1.0, 'down': 1.0, 'fit': 1.0, 'for': 3.0, 'struggled': 1.0, 'mat': 2.0, 'one': 3.0, 'waterproof': 1.0, 'bought': 1.0, 'against': 1.0, 'pretty': 1.0, 'to': 3.0, 'put': 1.0, 'changing': 4.0, 'tend': 1.0, 'into': 1.0, 'handed': 2.0, 'and': 7.0, 'up': 2.0, 'this': 5.0, 'icing': 1.0, 'surface': 1.0, 'using': 1.0, 'unroll': 1.0, 'looking': 1.0, 'bag': 4.0, 'as': 2.0, 'diaper': 3.0, 'because': 2.0, 'that': 2.0, 'easily': 1.0, 'what': 1.0, 'roll': 2.0, 'when': 1.0, 'you': 1.0, 'in': 3.0, 'my': 2.0, 'with': 1.0, 'quick': 1.0, 'sometimes': 2.0, 'after': 1.0, 'back': 1.0, 'awhile': 1.0, 'bigger': 1.0, 'if': 1.0, 'still': 1.0, 'off': 1.0, 'especially': 1.0, 're': 1.0, 'slippery': 1.0, 'i': 9.0, 'putting': 1.0, 'she': 1.0, 'baby': 1.0, 'slide': 1.0, 'end': 1.0, 'table': 2.0, 'star': 1.0, 'right': 1.0, 'the': 8.0, 'of': 1.0, 'good': 1.0, 'time': 1.0, 'worried': 1.0, 'germy': 1.0}
Word element => {'a': 1.0, 'wall': 1.0, 'the': 2.0, 'on': 1.0, 'it': 1.0, 'stick': 1.0, 'to': 3.0, 'difficult': 1.0, 'use': 1.0, 'ass': 1.0, 'individually': 1.0, 'awkward': 1.0, 'i': 1.0, 'in': 1.0, 'had': 1.0, 'pin': 1.0, 'super': 1.0, 'take': 1.0, 'and': 1.0, 'each': 1.0, 'letter': 1.0}
Word element => {'bought': 1.0, 'niece': 1.0, 'themed': 1.0, 'year': 1.0, 'for': 2.0, 'in': 1.0, '5': 1.0, 'hello': 1.0, 'loved': 1.0, 'perfectly': 1.0, 'and': 2.0, 'my': 1.0, 'kitty': 1.0, 'i': 1.0, 'old': 1.0, 'she': 2.0, 'absolutely': 1.0, 'christmas': 1.0, 'this': 2.0, 'it': 1.0, 'has': 1.0, 'a': 1.0, 'bedroom': 1.0, 'fits': 1.0}
Word element => {'were': 1.0, 'put': 1.0, 'not': 1.0, 'would': 1.0, 'clear': 1.0, 'if': 1.0, 'even': 1.0, 'i': 1.0, 'directions': 1.0, 'away': 1.0, 'up': 1.0, 'very': 2.0, 'must': 1.0, 'be': 1.0, 'in': 1.0, 'a': 1.0, 'house': 1.0, 'small': 1.0, 'the': 1.0, 'doll': 1.0, 'threw': 1.0, 'photo': 1.0}
Word element => {'chair': 1.0, 'attached': 1.0, 'little': 1.0, 'comfortable': 1.0, 'that': 2.0, 'nice': 1.0, 'old': 1.0, 'to': 3.0, 'son': 1.0, 'very': 1.0, 'get': 1.0, 'and': 1.0, '6': 1.0, 'month': 1.0, 'the': 2.0, 'great': 1.0, 'highchair': 1.0, 'hard': 1.0, 'only': 1.0, 'it': 3.0, 'this': 1.0, 'in': 1.0, 'easy': 1.0, 'out': 1.0, 'clean': 1.0, 'tray': 1.0, 'is': 5.0, 'looks': 1.0, 'my': 1.0, 'downside': 1.0}
Word element => {'youll': 1.0, 'or': 1.0, 'of': 1.0, 'body': 2.0, 'also': 1.0, 'far': 1.0, 'chair': 2.0, 'legs': 1.0, 'it': 2.0, 'with': 1.0, 'stick': 1.0, 'hard': 1.0, 'form': 1.0, 'unfortunately': 1.0, 'out': 1.0, 'high': 1.0, 'stylish': 1.0, 'the': 6.0, 'quite': 2.0, 'scratch': 1.0, 'until': 1.0, 'many': 1.0, 'tray': 1.0, 'convertible': 1.0, 'use': 1.0, 'so': 1.0, 'food': 1.0, 'you': 1.0, 'toes': 1.0, 'its': 1.0, 'as': 1.0, 'to': 1.0, 'common': 1.0, 'very': 2.0, 'awful': 1.0, 'if': 1.0, 'indentions': 1.0, 'fashion': 1.0, 'on': 1.0, 'stubbing': 1.0, 'leaves': 1.0, 'dries': 1.0, 'foam': 2.0, 'painful': 1.0, 'statements': 1.0, 'dont': 1.0, 'get': 1.0, 'scrub': 1.0, 'and': 2.0, 'too': 1.0}
Word element => {'resend': 1.0, 'way': 1.0, 'us': 1.0, 'work': 1.0, 'did': 1.0, 'feels': 1.0, 'kinda': 1.0, 'material': 1.0, 'stain': 1.0, 'will': 1.0, 'item': 1.0, 'disappointed': 1.0, 'how': 1.0, 'blue': 1.0, 'light': 1.0, 'sauces': 1.0, 'bubblegum': 1.0, 'got': 1.0, 'we': 1.0, 'something': 1.0, 'down': 1.0, 'out': 2.0, 'taking': 1.0, 'you': 3.0, 'meals': 1.0, 'before': 1.0, 'like': 2.0, 'those': 1.0, 'for': 4.0, 'an': 1.0, 'as': 2.0, 'surprised': 1.0, 'your': 1.0, 'pose': 1.0, 'based': 1.0, 'which': 1.0, 'surfaces': 1.0, 'flat': 1.0, 'does': 1.0, 'onto': 2.0, 'snap': 1.0, 'pipe': 1.0, 's': 1.0, 'there': 1.0, 'shape': 1.0, 'due': 1.0, 'food': 3.0, 'keeping': 1.0, 'with': 1.0, 'each': 1.0, 'feeding': 3.0, 'in': 3.0, 'want': 1.0, 'loosened': 1.0, 're': 1.0, 'come': 1.0, 'move': 1.0, 'slide': 1.0, 'lightly': 1.0, 'unfortunately': 1.0, 'deal': 1.0, 'curved': 1.0, 'big': 1.0, 'little': 1.0, 'nice': 1.0, 'seemed': 1.0, 'no': 1.0, 'bar': 3.0, 'crotch': 3.0, 'snapping': 1.0, 'was': 7.0, 'doesn': 1.0, 'when': 3.0, 'am': 3.0, 'barely': 1.0, 'floor': 1.0, 'much': 2.0, 'its': 2.0, 'harness': 1.0, 'same': 1.0, 'loose': 3.0, 'about': 1.0, 'merely': 1.0, 'on': 5.0, 'noticed': 1.0, 'leftover': 1.0, 'usage': 1.0, 'the': 16.0, 'of': 2.0, 'chair': 4.0, 'balance': 1.0, 'cute': 1.0, 'i': 8.0, 'modern': 1.0, 'not': 4.0, 'getting': 1.0, 'crocs': 1.0, 'lay': 2.0, 'himself': 1.0, 'and': 5.0, 'stained': 1.0, 'it': 11.0, 'this': 3.0, 'only': 1.0, 'sleek': 1.0, 'underneath': 1.0, 'design': 2.0, 'so': 3.0, 'time': 2.0, 'easily': 1.0, 'that': 6.0, 'because': 2.0, 'having': 2.0, 'annoyance': 1.0, 'just': 2.0, 'screwed': 1.0, 'by': 1.0, 'large': 1.0, 'thing': 1.0, '2': 1.0, 'but': 2.0, 'most': 1.0, 'back': 2.0, 'would': 1.0, 'weeks': 1.0, 'really': 2.0, 'please': 1.0, 'don': 1.0, 'becoming': 1.0, 'note': 1.0, 'tomato': 1.0, 'a': 6.0, 't': 2.0, 'one': 1.0, 'unless': 1.0, 'excited': 1.0, 'after': 3.0, 'tray': 6.0, 'importantly': 1.0, 'who': 1.0, 'at': 1.0, 'is': 1.0, 'around': 1.0, 'risk': 1.0, 'off': 3.0, 'pry': 1.0, 'another': 2.0, 'trying': 1.0, 'against': 1.0, 'high': 1.0, 'to': 8.0, 'love': 1.0, 'he': 1.0, 'screw': 1.0, '3x': 1.0, 'surface': 1.0, 'day': 1.0, 'arrived': 1.0, 'hassle': 1.0, 'old': 1.0, 'fact': 1.0, 'looks': 1.0, 'may': 2.0, 'my': 1.0, 'returning': 1.0, 'however': 2.0, 'easy': 1.0, 'safety': 1.0, 'even': 1.0, 'prepare': 1.0, 'every': 1.0, 'if': 1.0, 'concern': 1.0, 'worn': 1.0, 'year': 1.0, 'child': 2.0, 'help': 1.0}
Word element => {'you': 1.0, 'function': 1.0, 'if': 1.0, 'buy': 1.0, 'not': 1.0, 'lot': 1.0, 'trips': 1.0, 'little': 1.0, 'floor': 1.0, 'them': 1.0, 'out': 1.0, 'quite': 1.0, 'we': 1.0, 'are': 3.0, 'the': 4.0, 'why': 1.0, 'that': 1.0, 'joke': 1.0, 'do': 1.0, 'splayed': 1.0, 'and': 3.0, 'cool': 1.0, 'keeping': 1.0, 'super': 1.0, 'also': 1.0, 'is': 3.0, 'tray': 1.0, 'looks': 1.0, 'it': 2.0, 'straps': 1.0, 'a': 3.0, 'guy': 1.0, 'remove': 1.0, 'on': 3.0, 'pain': 1.0, 'to': 2.0, 'my': 1.0, 'push': 1.0, 'important': 1.0, 'legs': 1.0}
Word element => {'to': 1.0, 'stabilityfast': 1.0, 'great': 1.0, 'foots': 1.0, 'cleaning': 1.0, 'hard': 1.0, 'product': 1.0, 'excelent': 1.0}
Word element => {'skip': 1.0, 'say': 1.0, 'd': 1.0, 'now': 1.0, 'models': 1.0, 'year': 1.0, 'future': 1.0, 'through': 1.0, 'designers': 1.0, 'understand': 1.0, 'teds': 1.0, 'phil': 1.0, 'couple': 1.0, 'padding': 1.0, 'secure': 1.0, 're': 1.0, 'attempt': 1.0, 'getting': 1.0, 'contacted': 1.0, 'back': 1.0, 'design': 1.0, 'look': 1.0, 'overcome': 1.0, 'combination': 1.0, 'on': 2.0, 'harnessing': 1.0, 'combined': 1.0, 'me': 1.0, 'harnessed': 1.0, 'managing': 1.0, 'fighting': 1.0, 'bolts': 1.0, 'you': 2.0, 'when': 1.0, 'point': 1.0, 'their': 1.0, 'parents': 1.0, 'appease': 1.0, 'or': 1.0, 'nooks': 2.0, 'seem': 1.0, 'children': 1.0, 'food': 1.0, 'thing': 1.0, 'hard': 1.0, 'cranberry': 1.0, 'really': 6.0, 'cranes': 1.0, 'minimalist': 1.0, 'trying': 2.0, 'about': 2.0, 'like': 4.0, 'here': 2.0, 'improve': 1.0, 'non': 2.0, 'in': 4.0, 'seat': 8.0, 'baby': 1.0, 'very': 3.0, 'being': 1.0, 'wobbly': 3.0, 'later': 1.0, 'these': 1.0, 'screams': 1.0, 'would': 2.0, 'that': 7.0, 'because': 1.0, 'large': 3.0, 'by': 3.0, 'least': 1.0, 'around': 1.0, 'at': 2.0, 'house': 1.0, 'functional': 1.0, 'strong': 1.0, 'toys': 1.0, 'used': 2.0, 'setting': 1.0, 'was': 8.0, 'overrun': 1.0, 'has': 3.0, 'next': 1.0, 'them': 1.0, 'sticks': 2.0, 'today': 1.0, 'hold': 1.0, 'want': 2.0, 'didn': 3.0, 'previously': 1.0, 'goes': 1.0, 'make': 3.0, 'chair': 9.0, 'fortune': 1.0, 'became': 1.0, 'are': 5.0, 'room': 1.0, 'my': 6.0, 'post': 1.0, '5': 1.0, 'one': 3.0, 'try': 3.0, 'just': 2.0, 'and': 15.0, 'doesn': 2.0, 's': 5.0, 'cranies': 1.0, 'a': 17.0, 'imagine': 1.0, 't': 7.0, 'maybe': 1.0, 'without': 2.0, 'poppy': 2.0, 'the': 29.0, 'older': 1.0, 'weight': 1.0, 'too': 1.0, '3': 2.0, 'pair': 1.0, 'for': 10.0, 'tray': 8.0, 'comes': 1.0, 'bought': 2.0, 'third': 1.0, 'flair': 2.0, 'going': 1.0, '2': 2.0, 'leave': 2.0, 'i': 23.0, 'two': 1.0, 'little': 2.0, 'child': 8.0, 'over': 1.0, 'years': 3.0, 'loud': 1.0, 'horrible': 1.0, 'height': 1.0, 'any': 2.0, 'your': 1.0, 'potentially': 1.0, 'what': 2.0, 'had': 2.0, 'boon': 3.0, 'percentile': 1.0, 'it': 17.0, 'be': 6.0, 'so': 5.0, 'is': 3.0, 'can': 2.0, 'than': 1.0, 'bit': 1.0, 'easy': 1.0, 'have': 1.0, 'found': 1.0, 'something': 1.0, 'red': 2.0, 'straps': 4.0, 'great': 1.0, '1': 2.0, 'nice': 4.0, 'big': 1.0, 'this': 6.0, 'kids': 2.0, 'held': 1.0, '90th': 1.0, 'get': 3.0, 'trapped': 1.0, 'cleaning': 1.0, 'toddler': 2.0, 'material': 1.0, 'tricky': 1.0, 'dining': 1.0, 'seems': 1.0, 'see': 1.0, 'clean': 1.0, 'removal': 2.0, 'again': 1.0, 'support': 1.0, 'piece': 1.0, '4': 2.0, 'use': 1.0, 'new': 3.0, 'liked': 2.0, 'could': 2.0, 'will': 4.0, 'spend': 1.0, 'think': 3.0, 'durability': 1.0, 'off': 2.0, 'fatal': 2.0, 'up': 2.0, 'whole': 1.0, 'as': 3.0, 'less': 1.0, 'high': 5.0, 'length': 1.0, 'thin': 1.0, 'metal': 2.0, 'they': 3.0, 'some': 1.0, 'folding': 1.0, 'decorative': 2.0, 'chairs': 1.0, 'flaws': 1.0, 'with': 3.0, 'super': 1.0, 'don': 1.0, 'shoulder': 2.0, 'several': 1.0, 'last': 2.0, 'down': 1.0, 'of': 5.0, 'even': 1.0, 'thought': 2.0, 'possible': 1.0, 'difficult': 3.0, 've': 1.0, 'while': 1.0, 'not': 5.0, 'actually': 1.0, 'read': 1.0, 'manual': 1.0, 'sure': 1.0, 'to': 21.0, 'right': 2.0, 'pressing': 1.0, 'plastic': 1.0, 'easily': 1.0, 'looks': 2.0, 'notch': 1.0, 'bottom': 2.0, 'but': 5.0, 'there': 1.0, 'only': 1.0, 'remove': 1.0, 'how': 2.0, 'do': 1.0, 'day': 2.0, 'out': 1.0, 'wriggly': 3.0, 'also': 1.0, 'need': 1.0, 'harness': 3.0, 'way': 2.0, 'all': 2.0, 'call': 1.0, 'come': 1.0, 'from': 2.0, 'decoration': 1.0, 'did': 3.0, 'time': 1.0, 'top': 1.0, 'more': 2.0}
Word element => {'money': 1.0, 'worth': 1.0, 'everyone': 1.0, 'recommend': 1.0, 'would': 1.0, 'don': 1.0, 'they': 1.0, 'house': 1.0, 'grandma': 1.0, 't': 1.0, 'along': 2.0, 'having': 1.0, 'bring': 2.0, 'convenient': 1.0, 'barely': 1.0, 'basically': 1.0, 'home': 2.0, 'break': 1.0, 'beach': 1.0, 'inlaws': 1.0, 'travel': 2.0, 'way': 1.0, 'absolutely': 1.0, 'out': 1.0, 'broom': 1.0, 'takes': 1.0, 'up': 2.0, 'back': 1.0, 'two': 1.0, 'off': 1.0, 'use': 2.0, 'not': 1.0, 'be': 1.0, 'items': 1.0, 'lean': 1.0, 'mentioned': 1.0, 'above': 1.0, 'wanted': 1.0, 'wish': 1.0, 'this': 3.0, 'holders': 2.0, 'asked': 1.0, 'at': 1.0, 'is': 6.0, 'unmerciful': 1.0, 'cup': 2.0, 'down': 3.0, '8': 1.0, 'broken': 2.0, 'sisters': 1.0, 'legs': 2.0, 'months': 1.0, 'one': 3.0, 'after': 1.0, 'tray': 2.0, 'those': 1.0, 'and': 7.0, 'that': 3.0, 'how': 2.0, 'our': 1.0, 'as': 1.0, 'chair': 5.0, 'gift': 1.0, 'removing': 1.0, 'phil': 1.0, 'was': 3.0, 'closet': 1.0, 'seat': 2.0, 'in': 4.0, 'his': 1.0, 'nasty': 1.0, 'dishwasher': 1.0, 'aside': 1.0, 'had': 3.0, 'love': 2.0, 'art': 1.0, 'son': 1.0, 'from': 4.0, 'poppy': 1.0, 'take': 1.0, 'we': 4.0, 'a': 3.0, 's': 4.0, 'since': 1.0, 'law': 1.0, 'main': 1.0, 'new': 1.0, 'hand': 1.0, 'something': 1.0, 'often': 1.0, 'super': 2.0, 'ted': 1.0, 'old': 2.0, 'well': 1.0, 'i': 8.0, 'it': 11.0, 'needed': 1.0, 'reasons': 1.0, 'me': 2.0, 'my': 5.0, 'to': 9.0, 'high': 4.0, 'the': 13.0, 'of': 6.0, 'room': 1.0, 'these': 1.0, 'for': 5.0, 'such': 1.0, 'some': 1.0, 'you': 1.0, 'things': 1.0, 'nooks': 1.0, 'can': 2.0, 'so': 1.0, 'worry': 1.0, 'say': 1.0, 'comfortable': 1.0, 'easy': 3.0, 'car': 1.0, 'clean': 2.0, 'all': 1.0, 'an': 1.0, 'size': 1.0, 'downright': 1.0, 'improvement': 1.0, 'on': 1.0, 'any': 1.0, 'your': 1.0, 'even': 1.0, 'cloth': 1.0, 'sooner': 1.0, 'covered': 1.0, 'past': 1.0, 'food': 1.0, 'us': 1.0, 'received': 1.0, 'also': 2.0, 'about': 2.0, 'let': 1.0, 'years': 1.0, 'no': 1.0, 'with': 3.0, 'extra': 1.0, 'mother': 1.0, 'days': 1.0, 'safe': 1.0, 'just': 2.0, 'seats': 1.0, 'why': 1.0, 'do': 1.0, 'have': 2.0, 'crannies': 1.0, 'plus': 1.0, 'when': 2.0, 'grandpa': 1.0, 'child': 1.0, 'their': 3.0}
Word element => {'dining': 1.0, 'height': 2.0, 'no': 1.0, 'week': 1.0, 'after': 1.0, 'fine': 1.0, 'just': 1.0, 'well': 1.0, 'terribly': 1.0, 'up': 1.0, 'don': 1.0, 'tripping': 1.0, 'standard': 1.0, 'find': 1.0, 'i': 1.0, 'or': 1.0, 'take': 1.0, 'table': 1.0, 'using': 1.0, 'washer': 1.0, 'in': 2.0, 'apart': 1.0, 'itstraps': 1.0, 'an': 1.0, 'friend': 1.0, 'on': 1.0, 'put': 1.0, 'washed': 1.0, '34': 1.0, 'of': 1.0, 'lightweight': 1.0, 'clean': 1.0, 'cleaning': 1.0, 'out': 1.0, 'be': 2.0, 'holds': 1.0, 'comes': 1.0, 'around': 1.0, 'our': 1.0, 'to': 5.0, 'seat': 1.0, 'tray': 3.0, 'pros': 1.0, 'and': 4.0, 'however': 1.0, 'move': 1.0, 'stopped': 1.0, 'it': 2.0, 'remove': 1.0, 'adjustment': 1.0, 'chair': 1.0, 'easy': 2.0, 'but': 1.0, 'work': 1.0, 'can': 2.0, 'we': 1.0, 't': 1.0, 'a': 1.0, 's': 1.0, 'cons': 1.0, 'straps': 2.0, 'way': 1.0, 'scooted': 1.0, 'love': 1.0, 'for': 3.0, '1': 1.0, 'comfortable': 1.0, 'super': 1.0, 'dinner': 1.0, 'deep': 1.0, 'house': 2.0, 'legs': 1.0, 'baby': 2.0, 'this': 1.0, '30': 1.0, '20': 1.0, 'lbs': 1.0, 'easily': 1.0, 'wide': 1.0, 'need': 1.0, 'without': 1.0, 'myself': 1.0, 'the': 3.0, 'place': 1.0}
Word element => {'so': 1.0, 'ride': 1.0, 's': 1.0, 'a': 1.0, 'wheel': 1.0, 'the': 3.0, 'terrain': 1.0, 'adjustable': 1.0, 'swivels': 1.0, 'it': 3.0, 'front': 1.0, 'use': 1.0, 'smooth': 1.0, 'glad': 1.0, 'stroller': 1.0, 'is': 1.0, 'awesome': 1.0, 'features': 1.0, 'love': 1.0, 'for': 3.0, 'one': 1.0, 'that': 2.0, 'totally': 1.0, 'everyday': 1.0, 'your': 1.0, 'i': 2.0, 'buying': 1.0, 'rock': 1.0, 'my': 1.0, 'son': 1.0, 'little': 1.0, 'very': 2.0, 'found': 1.0, 'this': 3.0, 'jeep': 1.0, 'in': 1.0, 'handles': 1.0, 'name': 1.0, 'lives': 1.0, 'up': 1.0, 'easy': 1.0, 'sure': 1.0, 'are': 1.0, 'to': 3.0, 'sleep': 1.0, 'all': 1.0, 'seat': 1.0, 'effortlessly': 1.0, 'worth': 1.0}
Word element => {'to': 1.0, 'you': 1.0, 'bob': 1.0, 'smooth': 1.0, 'suspension': 1.0, 'weight': 1.0, 'light': 1.0, 'run': 1.0, 'sidewalk': 1.0, 'everyday': 1.0, 'runner': 1.0, 'stroller': 3.0, 'perfect': 1.0, 'just': 2.0, 'a': 4.0, 'better': 1.0, 'if': 1.0, 'jogging': 1.0, 'makes': 1.0, 'your': 1.0, 'trail': 1.0, 'easy': 1.0, 'recommend': 1.0, 'money': 1.0, 'don': 1.0, 'highly': 1.0, 'and': 2.0, 'this': 2.0, 'it': 2.0, 't': 1.0, 'the': 2.0, 'great': 2.0, 'ride': 2.0, 'i': 3.0, 'pay': 1.0, 'or': 2.0, 'am': 1.0, 'awesome': 1.0, 'love': 1.0, 'for': 4.0, 'want': 1.0, 'is': 2.0, 'as': 1.0, 'son': 1.0, 'my': 1.0, 'runs': 1.0}
Word element => {'changr': 1.0, 'things': 1.0, 'few': 1.0, 'just': 1.0, 'rest': 1.0, 'use': 1.0, 'son': 1.0, 'my': 1.0, 'out': 1.0, 'far': 1.0, 'so': 1.0, 'up': 1.0, 'have': 2.0, 'a': 3.0, 'well': 1.0, 'it': 6.0, 'matter': 1.0, 'hard': 1.0, 'put': 1.0, 'but': 2.0, 'an': 3.0, 'not': 2.0, 'would': 2.0, 'pick': 1.0, 'holder': 1.0, 'kick': 1.0, 'together': 1.0, 'was': 1.0, 'as': 1.0, 'to': 4.0, 'i': 4.0, 'is': 3.0, 'been': 1.0, 'bigger': 1.0, 'easy': 2.0, 'its': 1.0, 'dose': 1.0, 'bar': 1.0, 'thought': 1.0, 'than': 1.0, 'speaker': 1.0, 'reach': 1.0, 'the': 6.0, 'place': 1.0, 'love': 1.0, 'for': 5.0, 'driffent': 1.0, 'keys': 1.0, 'great': 1.0, 'big': 1.0, 'solf': 1.0, 'supper': 1.0, 'handlea': 1.0, 'heights': 1.0, 'foot': 1.0, 'enough': 1.0, 'off': 1.0, 'cup': 1.0, 'this': 1.0, 'kids': 1.0, 'us': 1.0, 'them': 1.0}
Word element => {'myself': 1.0, 'by': 1.0, 'it': 1.0, 'assemble': 1.0, 'rolls': 1.0, 'i': 1.0, 'over': 1.0, 'anything': 1.0, 'again': 1.0, 'buy': 1.0, 'easiest': 1.0, 'that': 1.0, 'tried': 1.0, 'easy': 1.0, 'stroller': 1.0, 'would': 1.0, 've': 1.0, 'to': 2.0, 'did': 1.0, 'push': 1.0}
Word element => {'adjustment': 1.0, 'no': 1.0, 'as': 3.0, 'happy': 1.0, 'kid': 1.0, 'peace': 1.0, 'nature': 1.0, 'blank': 1.0, 'point': 1.0, 'pointed': 1.0, 'shoulda': 1.0, 'overall': 1.0, 'they': 1.0, 'ears': 1.0, 'blow': 1.0, 'want': 1.0, 'you': 1.0, 'yeah': 1.0, 'yard': 1.0, 'quiet': 2.0, 'by': 1.0, 'happened': 1.0, 'needs': 1.0, 'mp3': 1.0, 'bunch': 1.0, 'couldn': 1.0, 'uses': 1.0, 'quality': 1.0, 'seemed': 1.0, 'limits': 1.0, 'small': 1.0, 'type': 1.0, 'similar': 1.0, 'other': 1.0, 'there': 1.0, 'have': 2.0, 'pattern': 1.0, 'bet': 2.0, 'stem': 2.0, 'seems': 2.0, 'she': 2.0, 'clam': 1.0, 'probably': 1.0, 'the': 28.0, 'hear': 1.0, 'chuck': 1.0, 'directly': 1.0, 'into': 4.0, 'been': 1.0, 'comparing': 1.0, 'that': 3.0, 'plastic': 1.0, 'spokes': 1.0, 'on': 2.0, 'primitive': 1.0, 'long': 2.0, 'thick': 1.0, 'out': 2.0, 'during': 1.0, 'valve': 2.0, 'price': 1.0, 'such': 1.0, '10': 1.0, 'for': 1.0, 'compared': 2.0, 'smaller': 1.0, 'her': 1.0, 'somewhat': 1.0, 'surface': 2.0, 'sheesh': 1.0, 'even': 1.0, 'old': 1.0, 'of': 5.0, 'stored': 1.0, 'daughter': 1.0, 'volume': 1.0, 'sound': 2.0, 'didn': 1.0, 'front': 1.0, 'what': 1.0, 'when': 1.0, 'treadplate': 2.0, 'fingers': 1.0, 'mind': 1.0, 'spartan': 1.0, 'centerline': 1.0, 'child': 1.0, 'head': 1.0, 'toddler': 1.0, 'but': 2.0, 'outward': 1.0, 'rough': 1.0, 'way': 1.0, '20': 1.0, 'all': 3.0, 'right': 2.0, 'to': 16.0, 'high': 1.0, 'my': 5.0, 'me': 2.0, 'hardly': 1.0, 'could': 1.0, 'will': 2.0, 't': 5.0, 'belt': 1.0, 'spare': 1.0, 'a': 12.0, 'unnecessary': 1.0, 'more': 2.0, 'at': 5.0, 'outdoors': 1.0, 'hikes': 1.0, 'people': 1.0, 'handle': 1.0, 'this': 5.0, 'unit': 2.0, '1': 1.0, 'big': 1.0, 'best': 1.0, 'dirt': 1.0, 'engineering': 1.0, 'actually': 1.0, 'opinion': 1.0, 'go': 1.0, 'batteries': 1.0, 'able': 1.0, 'get': 2.0, 'easy': 1.0, 'bit': 2.0, 'year': 1.0, 'terrain': 1.0, 'stroller': 5.0, 'onto': 2.0, 'our': 3.0, 'not': 6.0, 'strollers': 1.0, 'wrong': 2.0, 'bicycle': 1.0, 'same': 1.0, 'absorbers': 1.0, 'wheels': 1.0, 'air': 1.0, 'now': 2.0, 'tire': 1.0, 'rub': 1.0, 'i': 8.0, 'feet': 3.0, 'angled': 1.0, 'mechanism': 1.0, 'did': 1.0, 'keep': 2.0, 'like': 4.0, 'graco': 2.0, '6': 1.0, 'strong': 1.0, 'would': 1.0, 'fastaction': 1.0, 'definitely': 1.0, 'anyway': 1.0, 'has': 2.0, 'much': 1.0, 'strap': 1.0, 'put': 1.0, 'imagine': 1.0, 'wheel': 1.0, 'its': 2.0, 'adult': 1.0, 'an': 1.0, 'jacket': 1.0, 'harness': 2.0, 'up': 2.0, 'over': 1.0, 'your': 1.0, 'many': 1.0, 'where': 1.0, 'museum': 1.0, 'might': 1.0, 'continues': 1.0, 'down': 2.0, 'months': 1.0, 'storage': 1.0, 'sling': 1.0, 'quite': 2.0, 'addition': 1.0, 'here': 1.0, 'underneath': 2.0, 'whatever': 3.0, 'just': 3.0, 'and': 6.0, 'system': 1.0, 'do': 1.0, 'walking': 3.0, 'from': 1.0, 'own': 1.0, 'it': 4.0, 'molded': 1.0, 'be': 3.0, 'speaker': 2.0, 'yet': 2.0, 'bad': 1.0, 'we': 3.0, 'only': 1.0, 'then': 1.0, 'gimmick': 1.0, 'don': 2.0, 'still': 1.0, 'wanting': 1.0, 'in': 6.0, 'tours': 1.0, 'gets': 1.0, 's': 3.0, 'tired': 1.0, 'rest': 1.0, 'safety': 1.0, 'so': 2.0, 'is': 8.0, 'can': 1.0, 'pump': 1.0, 'getting': 1.0, 'thinking': 1.0, 'those': 1.0, 'dirty': 1.0, 'push': 1.0, 'seat': 3.0, 'drop': 1.0, 'blanket': 1.0, 'one': 2.0, 'got': 1.0, '5': 1.0, 'or': 2.0, 'supplies': 1.0, 'required': 1.0, 'find': 1.0, 'very': 1.0, '3': 1.0, 'moving': 1.0, 'useless': 1.0, '4': 1.0, 'adjustable': 1.0, 'factory': 1.0, 'luxury': 1.0, 'something': 1.0, 'else': 1.0, 'muddy': 1.0, 'shock': 1.0, 'single': 1.0, 'wrist': 1.0, 'instead': 1.0, 'permanently': 1.0, 'itself': 1.0, 'should': 1.0, 'going': 1.0, '2': 1.0, 'attached': 1.0, 'with': 3.0, 'using': 1.0, 'baby': 2.0, 'jogging': 2.0, 'maybe': 2.0, 'without': 1.0, 'smart': 1.0, 'music': 2.0, 'parades': 1.0, 'secure': 1.0, 'responsible': 1.0}
Word element => {'minor': 1.0, 'an': 1.0, 'tightening': 1.0, 'of': 1.0, 'can': 1.0, 'seat': 1.0, 'annoyance': 1.0, 'be': 1.0, 'to': 2.0, 'in': 2.0, 'seems': 1.0, 'jogger': 1.0, 'very': 1.0, 'get': 1.0, 'and': 1.0, 'that': 3.0, 'strap': 2.0, 'handy': 1.0, 'holds': 1.0, 'well': 1.0, 'a': 2.0, 'car': 1.0, 'breeze': 1.0, 'is': 4.0, 'on': 1.0, 'only': 2.0, 'this': 2.0, 'way': 1.0, 'built': 1.0, 'complaint': 1.0, 'warning': 1.0, 'the': 6.0, 'push': 1.0, 'label': 1.0}
Word element => {'also': 1.0, 'fold': 1.0, 'compliments': 1.0, 'nothing': 1.0, 'thing': 1.0, 'than': 1.0, 'position': 1.0, 'bend': 1.0, 'other': 1.0, 'anything': 1.0, 'static': 1.0, 'some': 1.0, 'there': 1.0, 'best': 1.0, 'enjoy': 1.0, 'phone': 1.0, 'plug': 1.0, 'you': 2.0, 'into': 2.0, 'that': 3.0, 'aux': 1.0, 'not': 1.0, 'did': 1.0, 'regular': 1.0, 'really': 1.0, 'our': 1.0, 'to': 6.0, 'tried': 1.0, 'cable': 1.0, 'is': 5.0, 'jog': 2.0, 'stroller': 3.0, 'back': 1.0, 'but': 1.0, 'music': 2.0, 'work': 1.0, 'felt': 1.0, 'it': 3.0, 'with': 3.0, 'bike': 1.0, 'first': 1.0, 'perfect': 1.0, 'this': 2.0, 'well': 1.0, 'do': 1.0, 'store': 1.0, 'was': 1.0, 'beast': 1.0, 'a': 4.0, 'we': 1.0, 'then': 2.0, 'forth': 1.0, 'need': 1.0, 'out': 1.0, 'and': 4.0, 'too': 1.0, 'bonus': 1.0, 'using': 1.0, 'like': 1.0, 'trying': 1.0, 'went': 1.0, 'ride': 1.0, 'easy': 1.0, 'get': 1.0, 'folds': 1.0, 'stars': 1.0, 'for': 1.0, 'the': 4.0, 'until': 1.0, 'great': 2.0, 'simply': 1.0, 'time': 1.0, 'your': 2.0, 'isnt': 1.0, 'jogging': 1.0, 'plays': 1.0, 'why': 1.0, 'i': 4.0, '4': 1.0}
Word element => {'roads': 1.0, 'gravel': 1.0, 'where': 1.0, 'no': 1.0, 'out': 1.0, 'we': 1.0, 'which': 1.0, 'stay': 1.0, 'of': 1.0, 'up': 1.0, 'set': 1.0, 'home': 1.0, 'easy': 1.0, 'because': 1.0, 'just': 1.0, 'ride': 1.0, 'only': 1.0, 'it': 3.0, 'for': 1.0, 'love': 1.0, 'smooth': 1.0, 'part': 1.0, 'bad': 1.0, 'guess': 1.0, 'i': 1.0, 'my': 1.0, 'fine': 1.0, 'is': 2.0, 'stroller': 1.0, 'doesn': 1.0, 'middle': 1.0, 'a': 1.0, 'great': 1.0, 'the': 2.0, 't': 1.0, 'fit': 1.0, 'in': 2.0, 'live': 1.0, 'trunk': 1.0, 's': 1.0}
Word element => {'in': 1.0, 'simple': 1.0, 'to': 1.0, 'easy': 1.0, 'dime': 1.0, 'put': 1.0, 'together': 1.0, 'folding': 1.0, 'very': 1.0, 'and': 1.0, 'a': 1.0, 'unfolding': 1.0, 'is': 1.0, 'turns': 1.0}
Word element => {'wanted': 1.0, 'originally': 1.0, 'bob': 1.0, 'going': 1.0, 'asap': 1.0, 'will': 1.0, 'at': 1.0, 'h': 1.0, 's': 1.0, 'use': 1.0, 'again': 1.0, 'run': 1.0, 'started': 2.0, 'noticed': 1.0, 'jostled': 1.0, 'fri': 1.0, 'halt': 1.0, 'was': 2.0, 'quality': 1.0, 'wheels': 1.0, 'recommend': 3.0, 'together': 1.0, 'wouldn': 2.0, 'break': 1.0, 'up': 1.0, 'that': 2.0, 'been': 1.0, 'in': 2.0, 'soon': 2.0, 'took': 1.0, 'jogging': 1.0, 'did': 1.0, 'uncontrollably': 1.0, 'to': 5.0, 'so': 2.0, 'walk': 2.0, 'rear': 1.0, 'one': 1.0, 'for': 2.0, 'supposed': 1.0, 'guess': 1.0, 'actually': 1.0, '5yo': 1.0, 'since': 1.0, '1': 1.0, 'great': 1.0, 'a': 4.0, 'then': 2.0, 'we': 1.0, 't': 3.0, 'jog': 1.0, 'around': 1.0, 'i': 12.0, 'daughter': 3.0, 'got': 2.0, 'wobbled': 1.0, 'of': 1.0, 'the': 4.0, 'my': 3.0, 'went': 1.0, 'cried': 1.0, '30': 1.0, 'this': 3.0, 'returning': 1.0, 'brisk': 1.0, 'found': 1.0, 'during': 1.0, 'within': 1.0, 'yesterday': 1.0, 'be': 2.0, 'and': 3.0, 'anyone': 1.0, 'don': 1.0, 'frames': 1.0, 'call': 1.0, 'with': 3.0, 'abrupt': 1.0, 'it': 8.0, 'bent': 1.0, 'morning': 1.0, 'seconds': 1.0, 'home': 1.0, 'front': 1.0, 'wheel': 1.0, 'company': 1.0, 'only': 1.0, 'came': 1.0, 'all': 2.0, 'an': 1.0, 'while': 1.0, 'center': 1.0, 'from': 1.0, 'being': 1.0, 'if': 1.0, 'shaking': 1.0, 'what': 2.0, 'warm': 1.0, 'had': 1.0, 'good': 1.0, 'safe': 1.0, 'have': 1.0, 'running': 1.0, 'stroller': 2.0, 'called': 1.0, 'out': 1.0, 'they': 2.0, 'daily': 1.0, 'work': 1.0, 'mon': 1.0, 'heavy': 1.0, 'as': 5.0, 'injured': 1.0, 'either': 1.0, 'would': 1.0, 'not': 1.0, 'who': 1.0, 'wants': 1.0}
Word element => {'would': 1.0, 'over': 1.0, 'no': 1.0, 'smooth': 1.0, 'keep': 1.0, 'that': 1.0, 'shocks': 1.0, 'again': 1.0, 'wind': 1.0, 'you': 1.0, 's': 1.0, 'child': 1.0, 'protect': 1.0, 'to': 1.0, 'comes': 1.0, 'ride': 2.0, 'so': 1.0, 'my': 2.0, 'the': 4.0, 'definitely': 2.0, 'from': 1.0, 'year': 1.0, 'stroller': 3.0, 'perfect': 1.0, 'face': 1.0, 'far': 1.0, 'matter': 1.0, 'and': 3.0, '1': 1.0, 'what': 1.0, 'down': 1.0, 'does': 1.0, 'buy': 1.0, 'old': 1.0, 'i': 3.0, 'for': 1.0, 'love': 3.0, 'looked': 1.0, 'this': 3.0, 'it': 1.0, 'a': 1.0, 'is': 1.0, 'while': 1.0, 'how': 1.0, 'canopy': 1.0}
Word element => {'issues': 1.0, 'any': 1.0, 'haven': 1.0, 'mp3': 1.0, 'tires': 1.0, 'or': 1.0, 'your': 1.0, 'i': 1.0, 'for': 1.0, 'playback': 1.0, 'in': 1.0, 'speaker': 1.0, 'strong': 1.0, 'and': 2.0, 'tire': 1.0, 'phone': 1.0, 'too': 1.0, 'hear': 1.0, 'put': 1.0, 't': 1.0, 'the': 2.0, 'sturdy': 1.0, 'some': 1.0, 'player': 1.0, 'is': 1.0, 'quiet': 1.0, 'had': 1.0, 'to': 1.0, '34': 2.0, 'slime': 1.0}
Word element => {'use': 1.0, 'each': 1.0, 'collapse': 1.0, 'needed': 1.0, 'challenging': 1.0, 'but': 1.0, 't': 1.0, 'isn': 1.0, 'so': 1.0, 'this': 1.0, 'order': 1.0, 'working': 1.0, 'be': 2.0, 'gravel': 1.0, 'i': 9.0, 'new': 2.0, 'would': 3.0, 'purchase': 1.0, 'company': 1.0, 'biggest': 1.0, 'have': 2.0, 'fix': 1.0, 'while': 1.0, '200': 1.0, 'money': 1.0, 'more': 2.0, 'is': 2.0, 'spend': 1.0, 'emails': 1.0, 'comfortable': 1.0, 'to': 5.0, 'tube': 1.0, 'a': 10.0, 'walks': 1.0, 'we': 1.0, 'arrived': 1.0, 'or': 1.0, 'if': 1.0, 'service': 2.0, 'tire': 5.0, 'wish': 1.0, 'expect': 1.0, 'customer': 2.0, 'told': 1.0, 'gone': 2.0, 'several': 1.0, 'about': 1.0, 'and': 6.0, 'my': 5.0, 'me': 3.0, 'itself': 1.0, 'not': 3.0, 'in': 3.0, 'm': 1.0, 'when': 2.0, 'again': 1.0, 'informed': 1.0, 'big': 1.0, 'basically': 1.0, 'they': 1.0, 'with': 1.0, 'it': 7.0, 'month': 1.0, 'on': 3.0, 'update': 1.0, 'agreed': 1.0, 'was': 2.0, 'deal': 1.0, 'many': 1.0, 'unfortunately': 1.0, 'warranty': 1.0, 'seemed': 1.0, 'store': 1.0, 'star': 1.0, 'carrier': 1.0, 'due': 1.0, 'poor': 1.0, 'after': 2.0, 'both': 1.0, 'holding': 1.0, 'than': 1.0, 'cover': 1.0, 'send': 1.0, 'front': 1.0, 'instead': 1.0, 'the': 9.0, 'of': 1.0, 'rating': 1.0, 'one': 1.0, 'rear': 1.0, 'purchased': 1.0, 'selant': 1.0, 'has': 1.0, 'flat': 3.0, 'returned': 1.0, 'son': 2.0, 'fold': 1.0, 'he': 1.0, 'disappointed': 1.0, 'stroller': 6.0, 'item': 1.0, 'how': 1.0, 'garage': 1.0, 'attached': 1.0, 'infant': 1.0, 'complaint': 1.0, 'collapses': 1.0, 'very': 1.0, 'initial': 1.0, 'cannot': 1.0}
Word element => {'this': 1.0, 'high': 1.0, 'a': 1.0, 'is': 2.0, 'you': 1.0, 'adorable': 1.0, 'love': 1.0, 'it': 1.0, 'can': 1.0, 'use': 1.0, 'easily': 1.0, 'over': 2.0, 'off': 1.0, 'bib': 2.0, 'quality': 1.0, 'and': 2.0, 'wipes': 1.0}
Word element => {'time': 1.0, 'on': 1.0, 'and': 1.0, 'perfect': 1.0}
Word element => {'wipe': 1.0, 'easy': 1.0, 'changes': 1.0, 'for': 1.0, 'is': 2.0, 'around': 1.0, 'by': 1.0, 'clean': 1.0, 'fabric': 1.0, 'her': 1.0, 'change': 1.0, 'seats': 1.0, 'padding': 1.0, 'pronto': 2.0, 'pattern': 1.0, 'and': 3.0, 'hop': 2.0, 'bulky': 1.0, 'the': 9.0, 'diaper': 1.0, 'of': 3.0, 'up': 2.0, 'takes': 1.0, 'hatchback': 1.0, 'while': 1.0, 'there': 1.0, 'instead': 1.0, 'house': 1.0, 'pad': 1.0, 'i': 4.0, 'one': 1.0, 'bought': 1.0, 'cute': 1.0, 'station': 1.0, 'car': 1.0, 'another': 1.0, 'fact': 1.0, 'my': 2.0, 'smaller': 1.0, 'put': 2.0, 'back': 1.0, 'it': 3.0, 'this': 2.0, 'quick': 1.0, 'with': 1.0, 'lacks': 1.0, 'are': 1.0, 'probably': 1.0, 'skip': 2.0, 'mat': 1.0, 'to': 3.0, 'rolls': 1.0, 'bag': 1.0, 'in': 4.0, 've': 1.0, 'somewhere': 1.0, 'less': 1.0, 'folded': 1.0, 'when': 1.0, 'we': 1.0, 's': 1.0, 'going': 1.0, 'keep': 1.0, 'space': 1.0, 'changing': 2.0, 'been': 1.0, 'using': 1.0, 'much': 1.0, 'primarily': 1.0, 'll': 1.0, 'down': 2.0}
Word element => {'wiggly': 1.0, 'more': 1.0, 'there': 1.0, 'up': 1.0, 'folds': 1.0, 'huge': 1.0, 'as': 1.0, 'hand': 1.0, 'one': 1.0, 'and': 2.0, 'perfectly': 1.0, 'older': 1.0, 'with': 1.0, 'it': 2.0, 's': 1.0, 'no': 1.0, 'is': 2.0, 'padding': 1.0, 'but': 1.0, 'perfect': 1.0, 'to': 1.0, 'be': 1.0, 'my': 1.0, 'baby': 1.0, 'going': 1.0, 'gets': 1.0}
Word element => {'regret': 1.0, 'not': 1.0, 'will': 1.0, 'one': 1.0, 'several': 1.0, 'purchased': 1.0, 'station': 1.0, 'top': 1.0, 'swaddler': 1.0, 'shade': 1.0, 'occur': 1.0, 'changing': 1.0, 'that': 1.0, 'accidents': 1.0, 'from': 1.0, 'as': 1.0, 'any': 1.0, 'to': 2.0, 'seat': 1.0, 'perfectly': 1.0, 'mat': 1.0, 'out': 1.0, 'diaper': 1.0, 'stroller': 2.0, 'changed': 1.0, 'purchase': 1.0, 'my': 3.0, 'fits': 1.0, 'often': 1.0, 'girl': 1.0, 'kind': 1.0, 'your': 2.0, 'on': 1.0, 'change': 1.0, 'protect': 1.0, 'm': 1.0, 'over': 1.0, 'up': 2.0, 'this': 4.0, 'muslin': 1.0, 'of': 4.0, 'shower': 2.0, 'know': 1.0, 'if': 2.0, 'even': 1.0, 'these': 3.0, 'the': 7.0, 'for': 1.0, 'mats': 1.0, 'doesn': 1.0, 's': 1.0, 'we': 1.0, 'go': 2.0, 't': 1.0, 'a': 4.0, 'new': 1.0, 'it': 4.0, 'she': 2.0, 'baby': 2.0, 'gifts': 1.0, 'are': 2.0, 'discreet': 1.0, 'fold': 1.0, 'wants': 2.0, 'gift': 2.0, 'print': 1.0, 'mom': 1.0, 'so': 1.0, 'have': 5.0, 'must': 1.0, 'small': 1.0, 'pull': 1.0, 'essentials': 1.0, 'own': 2.0, 'leaving': 1.0, 'plenty': 1.0, 'room': 1.0, 'other': 1.0, 'in': 3.0, 'bag': 2.0, 'toss': 1.0, 'and': 7.0, 'little': 2.0, 'very': 1.0, 'trendy': 1.0, 'chic': 1.0, 'wipes': 1.0, 'clean': 1.0, 'quickly': 1.0, 'you': 3.0, 'when': 1.0, 'easily': 1.0, 'is': 1.0, 'fabulous': 1.0, 'i': 3.0}
Word element => {'walkers': 1.0, 'would': 1.0, 'kinda': 1.0, 'cute': 1.0, 'look': 1.0, 'cheap': 1.0, 'worked': 1.0, 'foam': 1.0, 'hammer': 1.0, 'ladies': 1.0, 'knock': 1.0, 'with': 1.0, 'wish': 1.0, 'this': 2.0, 'its': 1.0, 'only': 1.0, 'hard': 1.0, 'way': 1.0, 'and': 2.0, 'get': 1.0, 'in': 2.0, 'toys': 1.0, 'nubs': 1.0, 'make': 2.0, 'place': 1.0, 'hanging': 1.0, 'playing': 1.0, 'the': 5.0, 'my': 1.0, 'her': 1.0, 'used': 1.0, '8': 1.0, 'likes': 1.0, 'but': 1.0, 'can': 2.0, 'it': 4.0, 'she': 1.0, 'month': 1.0, 'enjoys': 1.0, 'doesnt': 1.0, 'old': 1.0, 'i': 1.0, 'walker': 2.0, 'problem': 1.0, 'around': 2.0, 'is': 1.0, 'little': 1.0, 'white': 1.0, 'made': 1.0, 'happen': 1.0, 'still': 1.0, 'under': 1.0, 'all': 1.0, 'grandaughter': 1.0, 'to': 4.0, 'they': 2.0, 'push': 2.0, 'are': 1.0, 'up': 1.0, 'smaller': 1.0, 'so': 1.0, 'small': 1.0, 'we': 1.0, 'a': 1.0}
Word element => {'for': 1.0, 'believe': 1.0, 'scammed': 1.0, 'been': 1.0, 'feel': 1.0, 'second': 2.0, 'line': 1.0, 'dangerous': 1.0, 'goes': 1.0, 'off': 2.0, 'some': 1.0, 'into': 2.0, 'mouth': 2.0, 'fingers': 1.0, 'trying': 1.0, 'where': 1.0, 'stage': 1.0, 'outside': 2.0, 'hands6': 1.0, 'fitting': 1.0, 'barely': 1.0, 'paid': 1.0, 'only': 1.0, 'can': 1.0, 'so': 4.0, 'shrink': 1.0, '5': 1.0, 'these': 1.0, 'comes': 1.0, 'once': 1.0, 'cartoon': 1.0, 'word': 1.0, 'clearly': 1.0, 'but': 1.0, 'vary': 1.0, 'description': 2.0, 'or': 2.0, 'product': 4.0, 'picture': 2.0, 'white': 1.0, 'plain': 1.0, 'half': 1.0, 'colors': 1.0, 'bottom': 1.0, 'he': 1.0, 'solid': 1.0, 'describing': 1.0, 'few': 1.0, 'faster': 1.0, 'just': 2.0, 'with': 1.0, 'cartoons': 1.0, 'have': 1.0, 'all': 1.0, 'batches': 1.0, 'on': 3.0, 'extremely': 1.0, 'batch': 1.0, 'also': 1.0, 'received': 2.0, 'am': 1.0, 'know': 2.0, 'like': 6.0, 'hand': 1.0, 'seams': 1.0, 'that': 4.0, 'them': 1.0, 'next': 1.0, 'stock': 1.0, 'came': 3.0, 'sew': 2.0, 'and': 6.0, 'inside': 3.0, 'ordered': 2.0, 'thread': 3.0, 'is': 2.0, 'at': 2.0, 'look': 1.0, 'patterns': 2.0, 'showing': 1.0, 'stated': 1.0, 'nice': 1.0, 'washed': 1.0, '1': 1.0, 'set': 1.0, 'there': 1.0, '4': 1.0, 'expect': 1.0, 'rougher': 1.0, 'no': 2.0, 'up': 1.0, 'expose': 1.0, 'tiny': 1.0, 'a': 2.0, 's': 6.0, 'likes': 1.0, 't': 2.0, 'when': 1.0, 'what': 3.0, 'tags': 2.0, 'nothing': 2.0, 'out': 2.0, 'which': 2.0, 'made': 3.0, 'disappointed': 1.0, 'more': 1.0, 'mittens': 6.0, '2': 3.0, 'of': 13.0, 'the': 35.0, 'basically': 1.0, 'material': 2.0, 'irritating': 1.0, 'in': 3.0, 'put': 1.0, 'much': 3.0, 'pictures': 1.0, 'they': 5.0, 'i': 15.0, 'well': 1.0, 've': 3.0, 'each': 1.0, 'during': 3.0, 'may': 1.0, 'looks': 2.0, 'my': 7.0, 'hated': 1.0, 'cute': 2.0, 'are': 10.0, 'first': 4.0, 'skin': 1.0, 'actually': 2.0, 'order': 3.0, 'differently': 1.0, 'completely': 1.0, 'sometimes': 1.0, 'couldn': 1.0, 'way': 1.0, 'pieces': 1.0, 'instead': 1.0, 'cloth': 1.0, 'together': 1.0, 'order3': 1.0, 'shape': 1.0, 'ones': 2.0, 'try': 1.0, 'one': 1.0, 'if': 2.0, 'pairs': 2.0, 'hole2': 1.0, 'mitten': 1.0, 'hold': 1.0, 'literally': 1.0, 'use': 1.0, 'sets': 1.0, 'it': 11.0, 'already': 2.0, 'baby': 5.0, 'compare': 1.0, 'thumb': 1.0, 'was': 2.0, 'could': 1.0, 'sticking': 1.0, 'compared': 1.0, 'now': 1.0, 'rub': 1.0, 'different': 1.0, 'from': 3.0, 'feels': 1.0, 'to': 6.0, 'against': 1.0, 'tear': 1.0, 'his': 5.0, 'back': 2.0, 'making': 1.0, 'red4': 1.0}
Word element => {'bed': 1.0, 'of': 1.0, 'roll': 1.0, 'one': 1.0, 'i': 1.0, 'out': 1.0, 'wont': 1.0, 'think': 1.0, 'my': 1.0, 'the': 1.0, 'now': 1.0, 'is': 1.0, 'to': 1.0, 'easy': 1.0, 'use': 1.0, 'bar': 1.0, 'and': 1.0, 'purpose': 1.0, 'serves': 1.0, 'little': 1.0, 'its': 1.0}
Word element => {'side': 1.0, 'on': 1.0, 'candy': 1.0, 'expectations': 1.0, 'cute': 1.0, 'theme': 1.0, 'monster': 1.0, 'super': 1.0, 's': 1.0, 'of': 1.0, 'met': 1.0, 'for': 1.0, 'fast': 1.0, 'had': 1.0, 'shipping': 1.0, 'product': 1.0, 'my': 1.0, 'small': 1.0, 'the': 1.0, 'great': 1.0, 'it': 1.0, 'a': 1.0, 'party': 1.0, 'bag': 1.0, 'an': 1.0, 'inside': 1.0, 'but': 1.0, 'extra': 1.0}
Word element => {'mth': 1.0, 'my': 1.0, 'for': 1.0, 'it': 2.0, '10': 1.0, 'is': 1.0, 'granddaughter': 1.0, 'would': 1.0, 'old': 1.0, 'right': 1.0, 'adorable': 1.0, 'be': 1.0, 'thanks': 1.0, 'bigger': 1.0, 'problem': 1.0, 'thought': 1.0, 'just': 1.0, 'but': 1.0, 'no': 1.0}
Word element => {'recommend': 1.0, 'would': 1.0, 'three': 1.0, 'year': 1.0, 'for': 1.0, 'son': 1.0, 'and': 1.0, 'very': 1.0, 'loves': 1.0, 'doll': 1.0, 'this': 1.0, 'must': 1.0, 'cute': 1.0, 'old': 1.0, 'be': 1.0, 'my': 2.0, 'the': 1.0, 'cuddly': 1.0, 'mustache': 1.0}
Word element => {'a': 1.0, 'and': 2.0, 'they': 1.0, 'expected': 1.0, 'not': 1.0, 'i': 3.0, 'what': 1.0, 'are': 1.0, 'yet': 1.0, 'things': 1.0, 'washed': 1.0, 'were': 1.0, 'this': 2.0, 'defective': 1.0, 'the': 1.0, 't': 1.0, 'frogs': 1.0, 'head': 1.0, 'product': 1.0, 'fell': 1.0, 'off': 1.0, 'zero': 1.0, 'hadn': 1.0, 'them': 1.0, 'give': 1.0}
Word element => {'all': 1.0, 'them': 1.0, 'buy': 1.0, 'wont': 1.0, 'that': 1.0, 'once': 1.0, 'and': 1.0, 'werent': 1.0, 'washed': 1.0, 'expensive': 1.0, 'used': 1.0, 'stars': 1.0, 'they': 1.0, 'just': 1.0, 'total': 1.0, 'fell': 1.0, 'cute': 1.0, 'really': 2.0, 'again': 1.0, 'are': 1.0, 'these': 1.0, 'the': 1.0, 'theyre': 1.0, 'but': 2.0, 'thats': 1.0, 'off': 1.0, 'was': 1.0, 'one': 1.0, 'garbage': 1.0, 'after': 1.0, 'wearing': 1.0, 'disappointed': 1.0}
Word element => {'feeding': 1.0, 'for': 1.0, 'breast': 1.0, 'and': 1.0, 'use': 1.0, 'easy': 1.0, 'same': 1.0, 'this': 1.0, 'sling': 1.0, 'to': 1.0, 'although': 1.0, 'the': 1.0, 'less': 1.0, 'then': 1.0, 'great': 1.0, 'it': 1.0, 'expensive': 1.0, 's': 1.0, 'counterparts': 1.0, 'purpose': 1.0, 'serves': 1.0}
Word element => {'i': 1.0, 'didn': 1.0, 'but': 1.0, 'like': 1.0, 'it': 1.0, 'is': 1.0, 'work': 1.0, 'not': 1.0, 'doesn': 1.0, 'a': 2.0, 'pay': 2.0, 'for': 1.0, 't': 2.0, 'this': 1.0, 'that': 1.0, 'you': 2.0, 'what': 1.0, '100': 2.0, 'get': 1.0, 'sling': 2.0}
Word element => {'ok': 1.0, 'a': 1.0, 'not': 1.0, 'money': 1.0, 'it': 1.0, 'is': 3.0, 'too': 1.0, 'though': 1.0, 'for': 2.0, 'the': 1.0, 'small': 1.0, 'my': 1.0, 'quality': 1.0, 'and': 1.0, 'one': 1.0, 'mine': 1.0, 'britax': 1.0, 'big': 1.0, 'agile': 1.0, 'stroller': 1.0}
Word element => {'offten': 1.0, 'great': 1.0, 'the': 2.0, 'through': 1.0, 'i': 1.0, 'replacing': 1.0, 'only': 1.0, 'on': 2.0, 'put': 1.0, 'back': 1.0, 'time': 1.0, 'more': 1.0, 'around': 1.0, 'is': 1.0, 'left': 1.0, 'them': 2.0, 'moist': 1.0, 'found': 1.0, 'this': 2.0, '30': 1.0, 'going': 1.0, 'a': 2.0, 'since': 1.0, 'bacteria': 2.0, 'you': 1.0, 'wipes': 4.0, 'prevent': 1.0, 'can': 1.0, 'was': 1.0, 'better': 1.0, 'because': 1.0, 'tend': 1.0, 'to': 3.0, 'grow': 1.0, 'heavily': 1.0, 'cut': 1.0, 'filled': 1.0, 'that': 1.0, 'helped': 1.0, 'are': 1.0, 'in': 1.0, 'warmed': 1.0, 'and': 2.0, 'sit': 1.0, 'rash': 1.0, 'warmer': 1.0, 'use': 1.0, 'of': 1.0}
Word element => {'your': 1.0, 'use': 1.0, 'just': 1.0, 'licensed': 1.0, 'not': 1.0, 'ok': 1.0, 'normal': 1.0, 'said': 1.0, 'pediatrician': 1.0, 'spoke': 1.0, 'recently': 1.0, 'they': 1.0, 'baby': 1.0, 'at': 1.0, 'who': 2.0, 'wipes': 1.0, 'discoloration': 1.0, 'this': 1.0, 'it': 2.0, 'risk': 1.0, 'only': 1.0, 'boy': 1.0, 'time': 1.0, 'so': 1.0, 'experience': 1.0, 'after': 1.0, 'purchased': 1.0, 'had': 2.0, 'to': 3.0, 'great': 1.0, 'the': 2.0, 'for': 1.0, 'sharing': 1.0, 'i': 6.0, 'long': 1.0, 'and': 2.0, 'physician': 1.0, 'my': 3.0, 'one': 2.0, 'color': 1.0, 'note': 1.0, 'own': 3.0, 'ago': 1.0, 'a': 7.0, 'thing': 1.0, 'nephew': 1.0, 'that': 3.0, 'personal': 1.0, 'really': 1.0, 'is': 1.0, 'but': 1.0, 'can': 1.0, 'change': 1.0, 'tell': 1.0, 'am': 2.0, 'you': 1.0, 'gets': 1.0, 'while': 1.0, 'will': 1.0, 'start': 1.0, 'dark': 1.0, 'was': 2.0, 'yellow': 1.0, 'almost': 1.0, 'of': 1.0, 'rustic': 1.0}
Word element => {'ok': 1.0, 'warmness': 1.0, 'lose': 1.0, 'they': 1.0, 'out': 1.0, 'take': 1.0, 'i': 1.0, 'warms': 1.0, 'them': 1.0, 'minute': 1.0, 'you': 1.0, 'works': 1.0, 'it': 1.0, 'warmer': 1.0, 'but': 2.0, 'the': 4.0, 'small': 1.0, 'like': 1.0, 'and': 1.0, 'wipes': 1.0}
Word element => {'either': 1.0, 'at': 1.0, 'hours': 1.0, 'a': 1.0, 'would': 1.0, 'thought': 1.0, 'babies': 1.0, 'all': 1.0, 'warmers': 1.0, 'in': 1.0, 'mention': 1.0, 'least': 1.0, 'plug': 1.0, 'does': 1.0, 'even': 1.0, 'day': 1.0, 'very': 1.0, 'warm': 2.0, 'time': 1.0, 'for': 4.0, 'doesn': 1.0, 'an': 1.0, 'hour': 1.0, 'care': 1.0, 'couple': 1.0, 'and': 1.0, 'outlets': 1.0, 'to': 1.0, 'description': 1.0, 'not': 2.0, 'wipes': 1.0, 'stay': 2.0, 'i': 2.0, 'product': 1.0, 'bought': 1.0, 'enough': 1.0, 'it': 1.0, 'this': 3.0, 'the': 2.0, 't': 2.0, 'of': 1.0, 'there': 1.0, 'little': 1.0, 'aren': 1.0}
Word element => {'haha': 1.0, 'same': 1.0, 'toy': 1.0, 'as': 2.0, 'and': 1.0, 'like': 1.0, 'good': 1.0, 'has': 1.0, 'is': 2.0, 'the': 3.0, 'more': 1.0, '65292': 2.0, '11inch': 1.0, '12290': 9.0, 'cute': 1.0, 'so': 2.0, 'movie': 1.0, 'will': 1.0, 'but': 1.0, 'it': 2.0, '65311': 3.0, 'biger': 1.0, 'better': 1.0, 'i': 1.0}
Word element => {'times': 1.0, 'three': 1.0, 'bought': 1.0, 'would': 1.0, 'price': 1.0, '34': 2.0, 'some': 1.0, 'happier': 1.0, 'schedule': 1.0, 'their': 1.0, 'not': 1.0, 'right': 1.0, 'goes': 1.0, 'year': 1.0, 'preschool': 1.0, 'i': 1.0, 'thinking': 1.0, 'work': 1.0, 'much': 1.0, 'only': 1.0, 'dawn': 1.0, 'if': 1.0, 'fewer': 1.0, 'and': 3.0, 'get': 3.0, 'of': 2.0, 'before': 1.0, 'does': 1.0, 'this': 2.0, 'with': 1.0, 'quick': 1.0, 'has': 1.0, 'it': 2.0, 'she': 3.0, 'time': 2.0, 'so': 2.0, 'great': 1.0, 'my': 3.0, 'for': 1.0, '3': 1.0, 'sleep': 1.0, 'to': 7.0, 'was': 1.0, 'now': 1.0, 'the': 4.0, 'asleep': 1.0, 'have': 3.0, 'rolls': 1.0, 'old': 1.0, 'started': 1.0, 'night': 1.0, 'in': 1.0, 'back': 1.0, 'check': 1.0, 'see': 1.0, 'been': 2.0, 'that': 2.0, 'we': 1.0, 'a': 2.0, 'bunny': 1.0, 'is': 2.0, 'middle': 1.0, 'still': 1.0, 'sense': 1.0, 'waking': 1.0, 'daughter': 1.0, 'interruptions': 1.0, 'up': 3.0, 'over': 1.0}
Word element => {'gotten': 1.0, 'had': 1.0, 'daughter': 1.0, 'when': 1.0, 'am': 1.0, 'woken': 1.0, 'at': 2.0, 'weekends': 1.0, 'now': 1.0, 'our': 1.0, 'to': 2.0, 'on': 1.0, 'i': 2.0, 'can': 1.0, 'enough': 1.0, 'get': 1.0, 'and': 3.0, 'she': 1.0, 'we': 2.0, 'go': 1.0, 'bunny': 2.0, 't': 3.0, 'the': 3.0, 'product': 1.0, 'wink': 1.0, 'wish': 1.0, 'this': 2.0, '30': 1.0, 'bed': 1.0, 'does': 1.0, 'her': 2.0, 'sooner': 1.0, 'down': 1.0, 'anymore': 1.0, 'recommend': 1.0, 'doesn': 1.0, 'leave': 1.0, 'is': 1.0, '5': 1.0, 'room': 1.0, 'goes': 1.0, 'rise': 1.0, 'until': 1.0, 'loves': 1.0, 'sun': 1.0, 'don': 1.0, 'up': 1.0, 'watch': 1.0, 'moon': 1.0, 'just': 1.0}
Word element => {'down': 1.0, 'directions': 1.0, 'read': 1.0, 'to': 2.0, 'once': 1.0, 'earlier': 2.0, 'waking': 1.0, 'features': 1.0, 'year': 1.0, 'day': 1.0, 'stay': 1.0, 'not': 1.0, 'would': 1.0, 'was': 1.0, 'thing': 1.0, 'have': 2.0, 'before': 1.0, 'even': 1.0, 'this': 2.0, 'in': 2.0, 'is': 1.0, 'worked': 1.0, 'bed': 1.0, 'life': 1.0, '3': 1.0, 'who': 1.0, 'since': 1.0, 'saver': 1.0, 'old': 1.0, 'i': 1.0, 'it': 3.0, 'willful': 1.0, 'am': 1.0, '5am': 1.0, 'bought': 1.0, 'week': 1.0, 'but': 1.0, 'and': 1.0, '1': 1.0, 'like': 1.0, 'charm': 1.0, 'confusing': 1.0, 'made': 1.0, 'bedtime': 1.0, 'get': 1.0, 'easy': 1.0, 'up': 1.0, 'don': 1.0, 'the': 3.0, 'believe': 1.0, 'a': 4.0, 't': 1.0, 'ago': 1.0, 's': 1.0}
Word element => {'interruption': 1.0, 'requires': 1.0, 'implementation': 1.0, 'inadvertently': 1.0, 'mess': 1.0, 'nice': 1.0, 'obnoxiously': 1.0, 'cons': 2.0, 'below': 1.0, 'programming': 1.0, 'actually': 1.0, 'easy': 2.0, 'intuitive': 1.0, 'designs': 1.0, 'cute': 1.0, 'bug': 1.0, 'obvious': 1.0, 'appropriate': 1.0, 'serving': 1.0, 'train': 1.0, 'pros': 1.0, 'without': 1.0, 'job': 1.0, 'short': 1.0, 'so': 1.0, 'no': 1.0, 'reminding': 1.0, 'weeks': 1.0, 'through': 1.0, 'coming': 1.0, '3yr': 1.0, 'issue': 2.0, 'had': 2.0, 'use': 1.0, 'backupin': 1.0, 'but': 3.0, 'minor': 1.0, 'cords': 1.0, 'nightstand': 1.0, 'falls': 1.0, 'way': 1.0, 'all': 1.0, 'whether': 1.0, 'reset': 1.0, 'outage': 1.0, 'experiences': 1.0, 'run': 1.0, 'believe': 1.0, 'i': 4.0, 'primary': 1.0, 'lost': 1.0, 'c': 1.0, 'settings': 3.0, 'keep': 1.0, 'current': 1.0, 'intended': 1.0, 'battery': 5.0, 'features': 1.0, 'selector': 1.0, 'opinion': 1.0, 'wakeup': 1.0, 'setting': 4.0, 'involves': 1.0, 'routine': 2.0, 'daily': 1.0, 'additionally': 1.0, 'switchother': 1.0, 'options': 5.0, 'only': 1.0, 'menu': 4.0, 'yanks': 1.0, 'also': 1.0, 'yellow': 4.0, 'weekdays': 1.0, 'animation': 1.0, 'digital': 2.0, 'window': 2.0, 'nullifies': 1.0, 'smaller': 1.0, 'timer': 3.0, 'day': 1.0, 'interchangeable': 1.0, 'not': 4.0, 'or': 6.0, 'moon': 3.0, 'longer': 1.0, 'does': 2.0, 'variety': 1.0, 'if': 2.0, 'face': 3.0, 'backlit': 2.0, 'up': 8.0, 'must': 1.0, 'change': 3.0, 'intensity': 1.0, 'large': 1.0, 'plates': 1.0, 'opportunity': 1.0, 'an': 2.0, 'counts': 1.0, 'the': 54.0, 'old': 1.0, 'of': 21.0, 'one': 4.0, '3': 1.0, 'too': 1.0, 'hereafter': 1.0, 'either': 1.0, 'routines': 3.0, 'dimmer': 1.0, 'what': 1.0, 'thing': 1.0, 'this': 11.0, 'starting': 1.0, 'weekend': 1.0, 'trainer': 1.0, 'to': 22.0, 'length': 1.0, 'for': 14.0, 'when': 4.0, 'bed': 6.0, 'in': 14.0, 'indicates': 1.0, 'night': 5.0, 'you': 6.0, 'starts': 1.0, 'things': 1.0, 'preferences': 1.0, 'them': 1.0, 'clock': 22.0, 'has': 2.0, 'perhaps': 1.0, 'weekends': 1.0, 'sleep': 7.0, 'most': 2.0, 'back': 4.0, 'constantly': 1.0, 'and': 20.0, 'getting': 1.0, 'indicating': 2.0, 'bunny': 1.0, 'changing': 1.0, 'much': 3.0, 'that': 10.0, 'case': 1.0, 'including': 1.0, 'daytime': 1.0, 'etc': 1.0, '34': 14.0, 'still': 2.0, 'don': 2.0, 'reconnected': 1.0, 'blue': 5.0, 'changes': 2.0, 'under': 1.0, '2': 2.0, 'going': 1.0, 'backup': 2.0, 'alarm': 2.0, 's': 5.0, 'a': 24.0, 't': 2.0, 'physical': 1.0, 'referred': 1.0, 'never': 1.0, 'some': 3.0, 'time': 12.0, 'indicators': 2.0, 'develop': 1.0, 'display': 3.0, 'month': 1.0, 'kids': 4.0, 'means': 3.0, 'will': 3.0, 'with': 4.0, 'using': 2.0, 'power': 6.0, 'light': 6.0, 're': 2.0, 'know': 1.0, 'reading': 1.0, 'gives': 1.0, 'operating': 1.0, 'importantly': 2.0, 'at': 1.0, 'soothing': 1.0, 'around': 2.0, 'music': 2.0, 'as': 3.0, 'turn': 1.0, 'is': 20.0, 'can': 3.0, 'levels': 1.0, 'countdown': 2.0, 'set': 4.0, 'overnight': 1.0, 'understand': 1.0, 'review': 1.0, 'mommy': 1.0, 'single': 1.0, 'inconvenience': 1.0, 'includes': 1.0, 'however': 2.0, 'naptimes': 1.0, 'improvement': 1.0, 'whenever': 2.0, 'from': 2.0, 'over': 1.0, 'sleeping': 8.0, 'wake': 3.0, 'than': 1.0, 'settling': 1.0, 'enough': 1.0, 'down': 3.0, 'interface': 1.0, 'there': 5.0, 'goes': 1.0, 'button': 3.0, 'on': 5.0, 'keeping': 1.0, 'edge': 1.0, 'brightness': 1.0, 'lot': 1.0, 'buttons': 1.0, 'user': 1.0, 'while': 2.0, 'waking': 2.0, 'configurable': 1.0, 'middle': 1.0, 'we': 1.0, 'rises': 1.0, 'versus': 1.0, 'until': 1.0, 'see': 2.0, 'other': 1.0, 'interact': 1.0, 'be': 2.0, 'it': 7.0, 'own': 2.0, 'chime': 1.0, 'respectively': 1.0, 'sound': 1.0, 'manual': 1.0, 'image': 3.0, 'helps': 2.0, 'plays': 1.0, 'slow': 1.0, 'find': 2.0, 'very': 1.0, 'benefit': 1.0, 'featuresthis': 1.0, 'officially': 1.0, 'out': 1.0, 'during': 1.0, 'backlight': 3.0, 'note': 2.0, 'crude': 1.0, 'reinforcing': 1.0, 'about': 4.0, 'are': 3.0, 'my': 5.0, 'myriad': 1.0, 'every': 2.0, 'play': 1.0, 'almost': 1.0, 'off': 3.0, 'bright': 3.0, 'after': 1.0, 'by': 1.0, 'unintuitive': 1.0, 'sets': 1.0, 'read': 2.0, 'compounding': 1.0, 'help': 1.0, 'nighttime': 1.0, '4': 1.0, 'order': 1.0, 'resulting': 1.0, 'personalizing': 1.0, 'your': 3.0, 'functionality': 1.0, 'faceplate': 1.0, 'event': 2.0, 'option': 1.0, 'times': 1.0, 'sun': 3.0, 'clockphysical': 1.0, 'him': 1.0, 'switches': 2.0, 'horribly': 1.0, 'two': 1.0, 'operations': 1.0, 'select': 1.0, 'gs': 2.0, 'go': 2.0, 'its': 1.0, 'press': 1.0, 'lullabye': 1.0, 'staying': 1.0, 'regardless': 1.0, 'have': 3.0, 'elevator': 1.0, 'child': 1.0, 'weekday': 1.0}
Word element => {'awful': 2.0, 'pretty': 1.0, 'really': 1.0, 'is': 2.0, 'price': 1.0, 'didn': 1.0, '21': 1.0, 'for': 2.0, 'working': 1.0, 'and': 2.0, 'up': 1.0, 'our': 1.0, 'bought': 1.0, 'we': 2.0, 'then': 1.0, 't': 1.0, '2': 1.0, 'the': 2.0, 'old': 1.0, 'tried': 1.0, 'year': 1.0, 'worked': 1.0, 'day': 1.0, 'just': 1.0, 'work': 1.0, 'but': 1.0, 'it': 5.0, 'first': 1.0, 'this': 1.0, 'stopped': 1.0, 'resetting': 1.0}
Word element => {'more': 1.0, 'whole': 1.0, 'their': 1.0, 'ok': 2.0, 'know': 1.0, 'let': 1.0, 'can': 1.0, 'a': 1.0, 'getting': 1.0, 'bunny': 5.0, 'ago': 1.0, 't': 2.0, 'go': 1.0, 's': 4.0, 'when': 2.0, 'times': 2.0, 'them': 2.0, 'clock': 2.0, 'was': 1.0, 'yellow': 1.0, 'to': 7.0, 'sun': 2.0, 'disappear': 1.0, 'moon': 1.0, 'son': 1.0, 'shy': 1.0, 'use': 1.0, 'wakes': 1.0, 'even': 2.0, 'just': 2.0, 'don': 1.0, 'sound': 1.0, 'up': 10.0, 'actually': 1.0, 'for': 1.0, 'product': 1.0, 'alarm': 2.0, 've': 1.0, '6': 1.0, 'how': 1.0, 'come': 4.0, 'few': 1.0, 'this': 3.0, 'wakeup': 4.0, 'those': 1.0, 'if': 1.0, 'e': 1.0, 'stay': 1.0, 'my': 1.0, 'me': 1.0, 'not': 2.0, 'nap': 1.0, 'i': 4.0, 'wake': 5.0, 'the': 9.0, 'of': 1.0, 'daddy': 1.0, 'set': 1.0, 'morning': 1.0, 'months': 2.0, 'get': 2.0, 'time': 4.0, 'doesn': 1.0, 'setting': 1.0, 'and': 7.0, '3': 1.0, 'on': 4.0, 'understood': 1.0, 'concept': 1.0, 'we': 3.0, 'then': 1.0, 'away': 1.0, 'now': 2.0, 'exclaim': 1.0, 'before': 2.0, 'once': 1.0, 'room': 1.0, 'at': 1.0, 'is': 3.0, 'right': 1.0, 'll': 3.0, 'introduced': 1.0, 'either': 1.0, 'sleep': 2.0, 'back': 1.0, 'need': 1.0, 'or': 2.0, 'love': 3.0, 'he': 6.0, 'yet': 1.0, 'in': 3.0, 'family': 1.0, 'bed': 1.0, 'tell': 1.0, 'relax': 1.0, 'sleeping': 1.0, 'they': 2.0, '34': 2.0, 'mommy': 1.0, 'own': 1.0, 'until': 1.0, 'tried': 1.0, 'there': 1.0, 'blue': 1.0, 'been': 1.0, 'that': 2.0, 'his': 1.0, 'it': 5.0, 'him': 1.0, 'came': 1.0, 'really': 1.0}
Word element => {'over': 2.0, 'and': 2.0, 'verified': 1.0, 'i': 1.0, 'clock': 2.0, 'we': 2.0, 'reset': 1.0, 'times': 1.0, 'many': 1.0, 'returned': 1.0, 'it': 1.0, 'never': 1.0, 'am': 1.0, 'turned': 1.0, 'pm': 1.0, 'color': 1.0, 'no': 1.0, 'at': 1.0, 'the': 3.0, 'matter': 1.0, 'right': 1.0, 'time': 1.0, 'how': 1.0}
Word element => {'lot': 1.0, 'a': 1.0, 'd': 1.0, 'expect': 1.0, '40': 1.0, 'at': 1.0, 'would': 1.0, 'very': 2.0, 'as': 2.0, 'rate': 1.0, 'reviews': 1.0, 'and': 2.0, 'clever': 1.0, 'more': 1.0, 'the': 1.0, 'nearly': 1.0, 'fedious': 1.0, 'many': 1.0, 'up': 1.0, 'of': 1.0, 'set': 1.0, 'be': 1.0, 'product': 2.0, 'to': 1.0, 'not': 1.0, 'i': 2.0, 'awesome': 1.0, 'thought': 1.0, 'favouably': 1.0, 'looked': 1.0, 'this': 2.0, 'it': 1.0}
Word element => {'s': 1.0, 'this': 1.0, 'clock': 1.0, 'using': 1.0, 'we': 1.0, 'stopped': 1.0, 'after': 1.0, 'night': 1.0, 'child': 1.0, 'it': 1.0, 'getting': 1.0, 'up': 1.0, 'started': 1.0, 'my': 1.0, 'the': 2.0, 'in': 1.0, 'middle': 1.0, 'perfect': 1.0, 'immediately': 1.0, 'of': 1.0}
Word element => {'tonight': 1.0, 'out': 1.0, 'love': 1.0, 'it': 3.0, 'and': 1.0, 'up': 1.0, 'set': 1.0, 'trying': 1.0, 'bunny': 1.0, 'you': 1.0, 'difficult': 1.0, 'just': 1.0, 'sleep': 1.0, 't': 1.0, 'the': 2.0, 'wasn': 1.0, 'start': 1.0, 'i': 1.0, 'press': 1.0, 'a': 1.0, 'button': 1.0, 'gs': 1.0, 'too': 1.0, 'going': 1.0, 'to': 2.0, 'routine': 1.0}
Word element => {'you': 1.0, 'also': 1.0, 'to': 1.0, 'was': 1.0, 'product': 1.0, 'days': 1.0, '4': 1.0, 'easy': 1.0, 'invention': 1.0, 'last': 1.0, '00': 1.0, 'very': 1.0, 'son': 1.0, 'is': 1.0, 'my': 1.0, 'great': 2.0, 'the': 3.0, 'watching': 1.0, 'moon': 2.0, 'set': 2.0, 'for': 2.0, 'love': 1.0, 'slept': 1.0, 'until': 1.0, 'loves': 1.0, 'sleep': 2.0, 'i': 1.0, 'and': 1.0, 'then': 1.0, 'it': 2.0, 'he': 1.0, 'thank': 1.0, 'time': 1.0, 'has': 1.0, 'knows': 1.0, 'kid': 1.0, '7': 1.0}
Word element => {'important': 1.0, 'more': 1.0, 'are': 1.0, 'great': 1.0, 's': 2.0, 'process': 1.0, 'getting': 1.0, 'bunny': 2.0, 'we': 6.0, 'a': 3.0, 'he': 2.0, 'liked': 2.0, 'options': 1.0, 'bought': 1.0, 'decided': 1.0, 'extend': 1.0, 'and': 3.0, 'caved': 1.0, 'features': 2.0, 'his': 1.0, 'really': 1.0, 'earlier': 1.0, 'nothing': 1.0, 'up': 6.0, 'wake': 3.0, 'than': 2.0, 'started': 1.0, 'my': 1.0, 'tried': 1.0, 'of': 1.0, 'the': 8.0, 'but': 1.0, 'son': 3.0, 'still': 1.0, 'difficult': 1.0, 'time': 1.0, 'so': 3.0, 'it': 7.0, 'vs': 1.0, 'was': 1.0, 'had': 1.0, 'when': 1.0, 'what': 1.0, 'how': 1.0, 'our': 2.0, 'most': 1.0, 'sleep': 2.0, 'turned': 1.0, 'having': 1.0, 'worked': 1.0, 'morning': 1.0, 'also': 1.0, 'us': 1.0, 'normal': 1.0, 'night': 1.0, 'things': 1.0, 'push': 1.0, 'going': 1.0, 'finally': 1.0, 'this': 2.0, 'few': 1.0, 'visual': 1.0, 'get': 1.0, 'sleeping': 1.0, 'since': 1.0, 'one': 1.0, 'lot': 1.0, 'is': 2.0, 'to': 9.0, 'pretty': 1.0, 'that': 2.0, 'because': 1.0, 'young': 1.0, 'took': 2.0, 'very': 1.0, 'clock': 1.0, 'has': 1.0, 'now': 1.0, 'on': 2.0, 'waits': 1.0, 'for': 1.0, 'before': 1.0, 'wakes': 1.0, 'cons': 1.0, 'some': 1.0, 'set': 2.0, 'initially': 1.0, 'different': 1.0, 'while': 1.0, 'with': 1.0, 'all': 2.0, 'other': 2.0, '2': 1.0, 'thing': 2.0, 'no': 1.0, 'well': 1.0, 'i': 1.0, 'in': 1.0, 'm': 1.0, '34': 2.0, 'keen': 1.0, 'awake': 1.0, 'button': 1.0, 'wanted': 1.0, 'start': 1.0, 'each': 1.0}
Word element => {'very': 1.0, 'returning': 1.0, 'gave': 1.0, 'finally': 1.0, 'happen': 1.0, 'cycle': 1.0, 'disappointed': 1.0, 'wake': 1.0, 'both': 1.0, 'but': 1.0, 'instructions': 2.0, 'sounds': 1.0, 'it': 1.0, 'stink': 1.0, 'this': 1.0, 'product': 1.0, 'still': 1.0, 'up': 1.0, 'of': 1.0, 'concept': 1.0, 'read': 1.0, 'great': 1.0, 'the': 4.0, 'to': 1.0, 'husband': 1.0, 'several': 1.0, 'i': 1.0, 'my': 1.0, 're': 1.0, 'times': 1.0, 'could': 1.0, 'not': 1.0, 'and': 3.0, 'get': 1.0}
Word element => {'week': 1.0, 'after': 1.0, 'dark': 1.0, 'completely': 1.0, 'slept': 1.0, 'bright': 1.0, 'was': 1.0, 'may': 1.0, 'kids': 1.0, 'birds': 1.0, 'noise': 1.0, 'actually': 1.0, 'awake': 1.0, 'picture': 2.0, 'from': 1.0, 'just': 1.0, 'wake': 2.0, 'for': 3.0, 'be': 1.0, 'wakes': 1.0, 'until': 2.0, 'great': 1.0, 'school': 1.0, 'daughter': 2.0, 'wonderful': 1.0, 'old': 1.0, 'year': 1.0, 'example': 2.0, 'older': 1.0, '3': 1.0, 'on': 2.0, 'make': 2.0, 'our': 2.0, 'to': 7.0, 'as': 3.0, 'in': 3.0, 'tweeting': 1.0, 'said': 1.0, 'take': 1.0, '7': 2.0, 'up': 4.0, 'don': 1.0, 'room': 3.0, 'once': 1.0, 'like': 1.0, 'her': 2.0, 'does': 1.0, 'it': 11.0, 'she': 4.0, 'have': 1.0, 'reviewers': 1.0, 'first': 1.0, 'are': 1.0, 'reading': 1.0, 'careful': 1.0, 'of': 3.0, 'the': 8.0, 'weekend': 2.0, 'get': 2.0, 'sure': 1.0, 'and': 5.0, 'about': 1.0, 'play': 2.0, 't': 3.0, 'bunny': 3.0, 'a': 7.0, 's': 1.0, 'weekday': 1.0, 'out': 1.0, 'adjusted': 1.0, 'instructions': 1.0, 'consistency': 1.0, 'you': 4.0, 'double': 1.0, 'sleeping': 1.0, 'they': 1.0, 'accidentally': 1.0, 'checking': 1.0, 'quietly': 2.0, 'regular': 1.0, 'won': 1.0, 'has': 2.0, 'routine': 1.0, 'basis': 1.0, 'at': 2.0, 'is': 1.0, 'settings': 3.0, 'alarm': 2.0, 'need': 1.0, 'or': 3.0, 'let': 1.0, 'doesn': 1.0, 'nap': 2.0, 'turn': 1.0, 'if': 2.0, 'still': 1.0, 'knows': 1.0, 'set': 4.0, 'time': 5.0, 'little': 1.0, 'options': 1.0, 'lot': 1.0, 'ones': 1.0, 'try': 1.0, 'with': 1.0, 'so': 1.0, 'can': 3.0, 'mode': 1.0, 'but': 2.0, 'audible': 1.0, 'switch': 1.0, 'there': 1.0, 'that': 2.0, 'patient': 1.0, 'come': 1.0, 're': 1.0, '12hour': 1.0, '24': 1.0, 'hour': 1.0, '30pm': 1.0, 'switches': 1.0, '19': 1.0, '30am': 1.0, '30': 1.0, 'other': 1.0, 'an': 3.0}
Word element => {'this': 1.0, 'when': 1.0, 'need': 1.0, 'night': 1.0, 'not': 1.0, 'do': 1.0, 'works': 1.0, 'great': 1.0, 'little': 1.0, 'my': 1.0, 'but': 1.0, 'you': 1.0, 'kids': 1.0, 'room': 1.0, 'is': 1.0, 'using': 1.0, 'a': 2.0, 'too': 1.0, 'light': 1.0, 'bright': 1.0, 'for': 1.0}
Word element => {'of': 1.0, 'bunch': 1.0, 'a': 1.0, 'saved': 1.0, 'store': 1.0, 'instead': 1.0, 'all': 1.0, 'our': 1.0, 'glad': 1.0, 'money': 1.0, 'great': 1.0, 'it': 1.0, 'met': 1.0, 'ordered': 1.0, 'was': 1.0, 'expectations': 1.0, 'we': 2.0, 'in': 1.0, 'online': 1.0}
Word element => {'walmart': 1.0, 'cheaper': 1.0, 'at': 2.0, 'sponge': 1.0, 'loofa': 2.0, 'looking': 1.0, 'found': 1.0, 'coz': 1.0, 'have': 1.0, 'it': 2.0, 'better': 3.0, 'price': 1.0, 'baby': 1.0, 'than': 1.0, 'use': 1.0, 'quality': 1.0, 'scrub': 1.0, 'but': 1.0, 'of': 1.0, '3stars': 1.0, 'to': 2.0, 'purpose': 1.0, 'rate': 1.0, 'serves': 1.0, 'regular': 1.0, 'the': 3.0, 'washcloth': 2.0, 'using': 1.0, 'unlike': 1.0, 'getting': 1.0, 'me': 1.0, 'and': 2.0, 'lathers': 1.0, 'a': 2.0, 'well': 1.0, 'when': 1.0, 'i': 2.0}
Word element => {'all': 1.0, 'for': 1.0, 'problems': 1.0, 'needed': 1.0, 'stroller': 1.0, 'fits': 1.0, 'the': 2.0, 'adaptor': 1.0, 'my': 2.0, 'zee': 1.0, 'bought': 1.0, 'graco': 1.0, 'snugride': 1.0, 'just': 1.0, 'seat': 1.0, 'at': 1.0, 'two': 1.0, 'no': 1.0, 'with': 1.0, 'it': 2.0, 'and': 1.0, 'perfectly': 1.0, 'well': 1.0, 'on': 1.0, 'car': 1.0, '30': 1.0}
Word element => {'replace': 1.0, 'cheap': 1.0, 'are': 1.0, 'still': 1.0, 'times': 1.0, 'fallen': 1.0, 'love': 1.0, 'now': 1.0, 'when': 1.0, 'break': 1.0, '11': 1.0, 'before': 1.0, 'her': 1.0, 'use': 1.0, 'from': 1.0, 'as': 1.0, 'pretty': 1.0, 'to': 5.0, 'giving': 1.0, 'here': 1.0, 'and': 3.0, 'work': 1.0, 'but': 1.0, 'pumps': 1.0, 'couple': 1.0, 'sadly': 1.0, 'about': 1.0, 'has': 1.0, 'them': 2.0, 'a': 5.0, 't': 2.0, 'purchased': 1.0, 'had': 3.0, 'r': 2.0, 'breast': 1.0, 'because': 1.0, 'month': 1.0, 'baby': 1.0, 'she': 4.0, 'it': 1.0, 'highly': 1.0, 'bottle': 2.0, 'so': 2.0, 'medela': 2.0, 'breastfed': 2.0, 'at': 2.0, 'since': 1.0, '13': 1.0, 'was': 3.0, 'store': 2.0, 'some': 1.0, 'these': 4.0, 'half': 1.0, 'exclusively': 1.0, 'avent': 2.0, 'my': 2.0, 'starts': 1.0, '99': 2.0, 'born': 1.0, 'babies': 3.0, 'returned': 1.0, 'avoid': 1.0, 'daughter': 1.0, 'fees': 1.0, 'also': 3.0, 'us': 2.0, 'well': 1.0, 'i': 5.0, 'disapprove': 1.0, 'for': 2.0, 'using': 1.0, 'refused': 1.0, 'bottles': 4.0, 'being': 2.0, 'fed': 1.0, 'increased': 1.0, 'surprisingly': 1.0, 'in': 1.0, 'would': 2.0, 'nipples': 1.0, 'only': 1.0, 'we': 3.0, 'take': 1.0, 'even': 1.0, 'ordered': 1.0, 'didn': 2.0, 'though': 1.0, 'available': 1.0, 'sturdy': 1.0, 'they': 5.0, 'recommend': 1.0, 'were': 3.0, 'ebf': 1.0, 'made': 1.0, 'cheaper': 1.0, 'sale': 2.0, 'have': 2.0, 'buy': 1.0, '79': 1.0, 'ones': 1.0, 'one': 2.0, 'get': 1.0, 'tried': 1.0, 'off': 1.0, 'noticed': 1.0, 'on': 1.0, 'top': 1.0, 'the': 4.0, 'of': 1.0, 'their': 1.0, 'price': 2.0, 'plastic': 1.0, '8': 1.0, 'actually': 1.0, 'order': 1.0, 'online': 1.0, 'real': 1.0, 'paying': 1.0, 'shipping': 1.0}
Word element => {'bad': 1.0, 'be': 1.0, 'would': 1.0, 'production': 1.0, 'bottle': 1.0, 'this': 1.0, 'seems': 1.0, 'it': 1.0, 'add': 1.0, 'easy': 2.0, 'of': 4.0, 'clearly': 1.0, 'glass': 1.0, 'other': 1.0, 'scoops': 1.0, 'markings': 1.0, '4': 1.0, 'powdered': 1.0, 'only': 1.0, 'with': 2.0, 'too': 1.0, 'and': 1.0, 'ounce': 1.0, 'shape': 1.0, 'large': 2.0, 'room': 1.0, 'formula': 3.0, '8': 3.0, 'for': 2.0, 'bottles': 1.0, 'yet': 1.0, 'dishwasher': 1.0, 'in': 1.0, 'enough': 2.0, 'make': 1.0, 'to': 4.0, 'are': 1.0, 'water': 1.0, 'ounces': 2.0, 'liquid': 1.0, 'no': 1.0, 'really': 2.0, 'comes': 1.0, 'is': 2.0, 'measure': 1.0, 'the': 2.0, 'big': 1.0, 'fluid': 1.0, 'from': 1.0, 'baby': 1.0, 'which': 1.0, 'hold': 1.0, '34': 2.0, 'onto': 1.0, 'printed': 1.0, 'still': 1.0, 'out': 2.0, 'clean': 1.0}
Word element => {'send': 1.0, 'why': 1.0, 'but': 1.0, 'holes': 1.0, 'did': 1.0, 'wall': 1.0, 'the': 1.0, 'on': 1.0, 'this': 1.0, 'secure': 1.0, 'enough': 1.0, 'every': 1.0, 'use': 1.0, 'given': 1.0, 'forward': 1.0, 'looked': 1.0, 'he': 2.0, 'suction': 4.0, 'one': 3.0, 'bought': 1.0, '4': 1.0, 'i': 2.0, 'wanted': 1.0, 'own': 1.0, 'if': 1.0, 'bathroom': 1.0, 'my': 2.0, 'cup': 1.0, 'son': 1.0, 'very': 1.0, 'immediately': 1.0, 'soon': 1.0, 'and': 1.0, 'only': 1.0, 'works': 1.0, 'great': 1.0, 'needed': 1.0, 'time': 1.0, 'it': 6.0, 'felt': 1.0, 'is': 1.0, 'using': 1.0, 'like': 1.0, 'with': 2.0, 'convenient': 1.0, 'clean': 1.0, 'would': 1.0, 'have': 2.0, 'cups': 3.0, 'to': 5.0, 'as': 2.0, 'least': 1.0, 'all': 1.0, '5': 1.0, 'for': 1.0, 'stars': 1.0, 'came': 2.0, 'at': 1.0, 'flimsy': 1.0, 'just': 2.0, 'not': 1.0}
Word element => {'deal': 1.0, 'good': 1.0, 'can': 1.0, 'portable': 1.0, 'in': 1.0, 'stuck': 1.0, 'the': 3.0, 'for': 1.0, 'use': 1.0, 'easy': 2.0, 'slow': 1.0, 'to': 4.0, 'china': 1.0, 'we': 1.0, 'simple': 1.0, 'empty': 1.0, 'is': 1.0, 'door': 1.0, 'mfg': 1.0, 'so': 2.0, 'it': 2.0, 'shower': 1.0, 'he': 1.0, 'grandbaby': 1.0, 'ships': 1.0, 'easily': 1.0, 'delivery': 1.0, 'get': 1.0, 'and': 1.0, 'from': 1.0, 'very': 1.0, 'clean': 1.0}
Word element => {'height': 1.0, 'the': 1.0, 'at': 1.0, 'hung': 1.0, 'be': 1.0, 'emptied': 1.0, 'easily': 1.0, 'this': 1.0, 'and': 1.0, 'like': 1.0, 'constructed': 1.0, 'is': 2.0, 'for': 1.0, 'well': 1.0, 'training': 1.0, 'perfect': 1.0, 'just': 1.0, 'desired': 1.0, 'can': 1.0, 'it': 1.0, 'daddy': 1.0}
Word element => {'thank': 1.0, 'pillow': 2.0, 'was': 2.0, 'to': 1.0, 'you': 1.0, 'sent': 1.0, 'i': 2.0, 'baby': 1.0, 'little': 1.0, 'of': 1.0, 'that': 1.0, 'new': 1.0, 'mother': 1.0, 'the': 5.0, 'on': 1.0, 'over': 1.0, 'it': 2.0, 'loved': 1.0, 'elephant': 1.0, 'a': 2.0, 'newborn': 1.0, 'ecstatic': 1.0, 'perfect': 1.0, 'gift': 1.0, 'for': 1.0}
Word element => {'ok': 1.0, 'of': 1.0, 'where': 1.0, 'she': 1.0, 'now': 1.0, 'trapped': 1.0, 'been': 1.0, 'has': 1.0, 'hair': 2.0, 'her': 1.0, 'only': 1.0, 'it': 1.0, 'dent': 1.0, 'bold': 1.0, 'in': 2.0, 'thing': 1.0, 'all': 2.0, 'have': 1.0, 'other': 1.0, 'can': 1.0, 'is': 5.0, 'pillow': 3.0, 'than': 2.0, 'a': 2.0, 'will': 1.0, 'but': 1.0, 'blue': 1.0, 't': 1.0, 'the': 8.0, 'my': 1.0, 'color': 1.0, 'grow': 1.0, 'girl': 2.0, 'received': 1.0, 'night': 1.0, 'i': 4.0, 'one': 1.0, 'baby': 2.0, 'chose': 1.0, 'matter': 1.0, 'hate': 1.0, 'and': 3.0, 'that': 2.0, 'sleep': 1.0, 'good': 1.0}
Word element => {'old': 1.0, '3': 1.0, 'now': 1.0, 'is': 1.0, 'my': 1.0, 'earlier': 1.0, 'ordered': 1.0, 'it': 3.0, 'months': 1.0, 's': 1.0, 'i': 2.0, 'baby': 1.0, 'its': 1.0, 'serves': 1.0, 'purpose': 1.0, 'cute': 1.0, 'and': 1.0, 'just': 1.0, 'wish': 1.0, 'had': 1.0}
Word element => {'other': 1.0, 'buy': 1.0, 'bigger': 1.0, 'ones': 1.0, 'not': 1.0, 'old': 1.0, '1': 1.0, 'for': 3.0, 'older': 1.0, 'small': 1.0, 'babies': 2.0, 'very': 1.0, 'like': 1.0, 'pillow': 1.0, 'is': 1.0, '2': 1.0, 'it': 1.0, 'month': 1.0}
Word element => {'second': 1.0, 'i': 1.0, 'old': 1.0, 'baby': 2.0, 'then': 1.0, 'loved': 1.0, 'size': 1.0, 'got': 1.0, 'even': 1.0, 'works': 1.0, 'his': 1.0, 'just': 1.0, 'perfectly': 1.0, 'for': 4.0, 'this': 1.0, 'prevents': 1.0, 'the': 2.0, 'a': 3.0, 't': 1.0, 'my': 1.0, 'one': 1.0, 'ten': 1.0, 'flat': 1.0, 'head': 1.0, 'changing': 1.0, 'table': 1.0, 'right': 1.0, 'takes': 1.0, 'from': 1.0, 'while': 1.0, 'to': 1.0, 'is': 1.0, 'comes': 1.0, 'beat': 1.0, 'elephant': 1.0, 'month': 1.0, 'it': 4.0, 'arrive': 1.0, 'can': 1.0, 'but': 1.0, 'too': 1.0, 'and': 1.0, 'abroad': 1.0, 'bargain': 1.0, 'again': 1.0, 'you': 1.0, 'cute': 1.0, 'design': 1.0}
Word element => {'one': 1.0, 'order': 1.0, 'planning': 1.0, 'month': 1.0, 'it': 1.0, 'more': 1.0, 'my': 1.0, 'baby': 1.0, 's': 2.0, 'to': 1.0, 'old': 1.0, 'head': 1.0, 'exactly': 1.0, 'fits': 1.0, 'in': 1.0, 'now': 1.0, '2': 1.0, 'is': 1.0, 'pillow': 1.0, 'loved': 1.0, 'this': 1.0, 'he': 1.0, 'really': 1.0}
Word element => {'son': 1.0, 'is': 1.0, 'this': 1.0, 'yr': 2.0, 'last': 1.0, 'love': 1.0, 'my': 2.0, 'the': 1.0, 'a': 1.0, 'and': 1.0, 'glasses': 1.0, 'i': 3.0, 'when': 1.0, 'got': 1.0, 'pear': 1.0, 'pink': 1.0, 'daughter': 1.0, 'in': 1.0, 'had': 1.0}
Word element => {'fit': 1.0, 'that': 1.0, 'desk': 1.0, 'also': 1.0, 'freezer': 1.0, 'use': 2.0, 'them': 3.0, 'we': 2.0, 'everything': 2.0, 'yes': 1.0, 'garage': 1.0, 'they': 1.0, 'are': 1.0, 'the': 4.0, 'purse': 1.0, 'great': 1.0, 'could': 1.0, 'for': 2.0, 'in': 3.0}
Word element => {'m': 1.0, 'comfortable': 1.0, 'fan': 1.0, 'felt': 1.0, 'in': 1.0, 'also': 1.0, 'hot': 1.0, 'brutally': 1.0, 'some': 1.0, 'at': 1.0, 'was': 2.0, 'under': 1.0, 'little': 1.0, 'sneakers': 1.0, 'my': 1.0, 'end': 1.0, 'the': 3.0, 'sprinkled': 1.0, 'a': 3.0, 'put': 1.0, 'i': 3.0, 'trying': 1.0, 'still': 1.0, 'and': 3.0, 'time': 1.0, 'dry': 1.0, 'boobs': 1.0, 'of': 1.0, 'very': 1.0, 'day': 2.0, 'even': 1.0, 'nice': 1.0, 'though': 1.0, 'this': 1.0, 'first': 1.0, 'it': 1.0}
Word element => {'great': 1.0, 'buy': 1.0, 'always': 1.0, 'yellow': 1.0, 'that': 1.0, 'light': 1.0, 'according': 1.0, 'has': 2.0, 'your': 1.0, 'on': 1.0, 'is': 2.0, 'summer': 1.0, 'very': 3.0, 'pink': 2.0, 'and': 2.0, 'during': 1.0, 'canister': 1.0, 'saves': 1.0, 'soothing': 1.0, 'the': 7.0, 'skin': 1.0, 'lady': 2.0, 'this': 2.0, 'faint': 1.0, 'pleasant': 1.0, 'don': 1.0, 'in': 2.0, 'a': 1.0, 't': 1.0, 's': 2.0, 'i': 2.0, 'products': 1.0, 'it': 4.0, 'normally': 1.0, 'care': 1.0, 'product': 1.0, 'calamine': 1.0, 'for': 1.0, 'one': 3.0, 'scented': 1.0, 'fresh': 1.0, 'ingredients': 1.0, 'but': 1.0, 'smelling': 1.0, 'does': 2.0, 'me': 1.0, 'not': 1.0, 'have': 1.0, 'scent': 1.0, 'clean': 1.0, 'talc': 1.0, 'to': 1.0}
Word element => {'a': 1.0, 'buy': 1.0, 'i': 1.0, 'that': 1.0, 'can': 1.0, 'we': 1.0, 'finally': 1.0, 'cup': 1.0, 'of': 1.0, 'really': 1.0, 'think': 1.0, 'off': 1.0, 'loves': 1.0, 'found': 1.0, 'son': 1.0, 'take': 2.0, 'piece': 1.0, 'great': 1.0, 't': 1.0, 'the': 1.0, 'one': 2.0, 'straw': 1.0, 'and': 2.0, 'he': 1.0, 'this': 2.0, 'with': 1.0, 'only': 1.0, 'clean': 1.0, 'out': 1.0, 'was': 1.0, 'to': 1.0}
Word element => {'gerber': 1.0, 'have': 2.0, 'considering': 1.0, 'especially': 1.0, 'time': 1.0, 'lasted': 2.0, 'that': 2.0, 'it': 1.0, 'months': 1.0, 'playtex': 1.0, 'on': 1.0, 'tosses': 1.0, 'at': 1.0, 'just': 4.0, 'not': 1.0, 'but': 1.0, 's': 1.0, 'a': 2.0, 'them': 2.0, 'owning': 1.0, 'loved': 1.0, '4': 1.0, 'two': 2.0, 'i': 3.0, 'old': 1.0, 'short': 1.0, 'wanted': 1.0, 'sad': 1.0, 'for': 1.0, 'love': 1.0, 'to': 3.0, 'cups': 3.0, 'less': 1.0, 'year': 1.0, 'son': 1.0, 'day': 1.0, 'design': 1.0, 'such': 1.0, 'these': 3.0, 'the': 4.0, 'and': 2.0, 'my': 1.0, 'throw': 1.0, 'standard': 1.0, 'than': 1.0, 'cracked': 1.0, 'from': 1.0, 'hard': 1.0, 'of': 2.0, 'over': 2.0, 'up': 1.0, 'really': 2.0, 'they': 2.0, 'years': 1.0, 'both': 1.0, 'amount': 1.0, 'after': 2.0, 'ended': 1.0, 'liked': 2.0, 'broken': 1.0, 'same': 1.0, 'he': 1.0, 'plastic': 1.0, 'table': 1.0}
Word element => {'enter': 1.0, 'rock': 1.0, 'dust': 1.0, 'moving': 1.0, 'shooting': 1.0, 'seen': 1.0, 'astronomers': 2.0, 'neal': 1.0, 'american': 1.0, 'man': 2.0, 'became': 2.0, 'russian': 1.0, 'distant': 1.0, '2011': 1.0, '39': 1.0, 'flew': 1.0, 'longest': 1.0, 'hubble': 1.0, 'shuttle': 2.0, 'fast': 1.0, 'things': 1.0, 'other': 1.0, 'people': 1.0, 'transport': 1.0, 'were': 1.0, 'shuttles': 1.0, 'worlds': 1.0, 'group': 2.0, 'famous': 1.0, 'moons': 1.0, '21': 1.0, 'circle': 1.0, 'thin': 1.0, 'six': 1.0, 'meteorites': 1.0, 'neptune': 1.0, 'second': 1.0, 'small': 1.0, 'smaller': 1.0, 'had': 1.0, 'constellation': 1.0, 'once': 1.0, 'conditions': 1.0, 'landed': 1.0, 'curiosity': 1.0, 'atmosphere': 1.0, 'vehicle': 1.0, '2012': 1.0, 'august': 1.0, 'all': 3.0, 'rocks': 1.0, 'an': 2.0, 'they': 4.0, 'gives': 1.0, 'outermost': 1.0, 'words': 2.0, 'name': 1.0, 'uranus': 2.0, 'orbits': 1.0, 'saturn': 4.0, 'armstrong': 1.0, 'moon': 5.0, 'identify': 1.0, 'item': 1.0, 'how': 1.0, 'our': 1.0, '1984': 1.0, 'which': 2.0, 'made': 3.0, 'send': 1.0, 'times': 1.0, 'few': 1.0, 'this': 4.0, 'ways': 1.0, 'very': 7.0, 'why': 1.0, 'member': 1.0, 'looking': 2.0, 'lacking': 1.0, '1': 1.0, 'there': 1.0, 'children': 1.0, 'expect': 1.0, 'space': 9.0, 'most': 2.0, 'launched': 1.0, 'mode': 6.0, 'about': 1.0, 'information': 3.0, 'closest': 3.0, 'bizarre': 1.0, 'relate': 1.0, 'understand': 1.0, 'been': 2.0, 'what': 2.0, 'observatory': 1.0, 'when': 4.0, 'fastest': 2.0, 'red': 2.0, 'explanatory': 1.0, 'be': 3.0, 'it': 10.0, 'smallest': 2.0, 'us': 1.0, 'also': 2.0, 'poorly': 1.0, 'will': 1.0, 'could': 1.0, 'through': 1.0, 'into': 3.0, 'three': 1.0, 'because': 6.0, 'young': 1.0, 'of': 21.0, 'pluto': 1.0, 'the': 70.0, 'use': 4.0, 'images': 1.0, 'toy': 1.0, 'used': 2.0, 'has': 12.0, 'machine': 1.0, 'right': 1.0, 'to': 16.0, 'quiz': 4.0, 'discovery': 4.0, 'basic': 1.0, 'that': 10.0, 'contain': 1.0, 'pieces': 1.0, 'for': 4.0, 'such': 2.0, 'didn': 2.0, 'with': 2.0, 'picture': 4.0, 'called': 1.0, 'you': 6.0, 'night': 1.0, 'mercury': 5.0, 'tablet': 3.0, 'exploration': 4.0, 'but': 3.0, 'modes': 1.0, 'similar': 3.0, 'just': 1.0, 'and': 13.0, 'much': 1.0, 'a': 12.0, 'added': 1.0, 't': 6.0, 'along': 1.0, 'catch': 1.0, 'lines': 2.0, 'statements': 1.0, 'by': 1.0, 'after': 1.0, 'gagarin': 1.0, 'phrase': 2.0, 'more': 1.0, 'look': 1.0, 'at': 5.0, 'giant': 1.0, 'useful': 1.0, 'statement': 3.0, 'sentences': 1.0, 'telescopes': 3.0, 'think': 2.0, 'example': 2.0, 'i': 7.0, 'forming': 1.0, 'rings': 3.0, 'planets': 5.0, 'tells': 1.0, 'planet': 12.0, '1969': 1.0, 'some': 5.0, 'see': 2.0, 'couldn': 1.0, 'brief': 1.0, 'on': 8.0, 'hottest': 1.0, 'first': 3.0, 'disappointing': 1.0, 'yuri': 1.0, '1961': 1.0, 'have': 6.0, 'hot': 3.0, 'found': 1.0, 'care': 1.0, 'sounds': 1.0, 'like': 3.0, 'craters': 3.0, 'are': 10.0, 'my': 1.0, 'fire': 1.0, 'looks': 3.0, 'dark': 1.0, 'below': 1.0, 'if': 2.0, 'buttons': 1.0, 'would': 4.0, 'closely': 1.0, 'note': 1.0, 'helped': 1.0, 'position': 1.0, 'sky': 2.0, 'in': 7.0, 'solar': 4.0, 'inserted': 1.0, 'depicted': 1.0, 'only': 3.0, 'shape': 1.0, 'incomprehensible': 1.0, 'trave': 1.0, 'far': 2.0, 'child': 2.0, 'is': 21.0, 'can': 2.0, 'now': 1.0, 'standard': 1.0, 'transcript': 1.0, '1000': 1.0, 'strike': 1.0, 'not': 1.0, 'basins': 3.0, 'two': 3.0, 'here': 2.0, 'orbit': 2.0, 'number': 1.0, 'examples': 1.0, 'stars': 6.0, 'biggest': 1.0, 'button': 1.0, 'observe': 1.0, 'says': 2.0, 'something': 1.0, 'outer': 1.0, 'from': 4.0, '2': 2.0, 'center': 1.0, 'earth': 12.0, 'serving': 1.0, 'icy': 1.0, 'mention': 2.0, 'mars': 6.0, 'gases': 3.0, 'should': 1.0, 'solid': 2.0, 'venus': 1.0, 'sun': 2.0, 'walk': 1.0, 'too': 1.0, '3': 1.0, 's': 3.0, 'don': 2.0, 'its': 1.0, 'worth': 1.0, '4': 1.0, 'was': 1.0, 'rocky': 1.0, 'edge': 1.0, 'hard': 1.0, 'galaxies': 1.0, 'insert': 1.0, 'one': 3.0, '5': 1.0, 'telescopethe': 1.0, 'do': 1.0, 'system': 5.0, 'jupiter': 3.0, 'quizzes': 1.0, 'largest': 3.0, 'no': 2.0, 'seasons': 2.0, 'surface': 3.0, 'under': 1.0, 'star': 1.0, 'many': 2.0, 'where': 1.0, 'life': 2.0, 'as': 2.0, 'satellite': 1.0, 'each': 1.0, 'least': 1.0, 'around': 1.0, 'robotic': 1.0, '6th': 1.0}
Word element => {'what': 1.0, 'would': 1.0, 'not': 1.0, 'though': 1.0, 'design': 1.0, 'plastic': 1.0, 'the': 2.0, 'i': 1.0, 'screen': 1.0, 'image': 1.0, 'of': 1.0, 'be': 1.0, 'product': 1.0, 'misleading': 1.0, 'nothing': 1.0, 'happens': 1.0, 'is': 2.0, 'on': 1.0, 'it': 2.0}
Word element => {'of': 1.0, 'addition': 1.0, 'grand': 1.0, 'daughter': 1.0, 'gift': 1.0, 'my': 1.0, 'shirt': 1.0, 'the': 2.0, 'little': 2.0, 'baby': 1.0, 'shower': 1.0, 'it': 1.0, 'for': 2.0, 'love': 1.0, 'be': 2.0, 'to': 2.0, 'a': 2.0, 'at': 1.0, 'her': 2.0, 'soon': 1.0, 'brother': 2.0, 's': 1.0, 'trying': 1.0, 'will': 1.0, 'prepare': 1.0}
Word element => {'purchasing': 1.0, 'quality': 1.0, 'better': 1.0, 'out': 1.0, 'shirts': 1.0, 'recommend': 1.0, 'cheaper': 1.0, 'are': 1.0, 'there': 2.0, 'do': 1.0, 'done': 1.0, 'and': 1.0, 'like': 1.0, 'look': 1.0, 'price': 1.0, 'cute': 1.0, 'worth': 1.0, 'definitely': 1.0, 'screenprinting': 1.0, 'shirt': 1.0, 'washing': 1.0, 'not': 2.0, 'at': 1.0, 'would': 1.0, 'imagine': 1.0, 'the': 3.0, '99': 1.0, 't': 1.0, 'looks': 1.0, 'is': 3.0, '24': 1.0, 'design': 1.0, 'after': 1.0, 'however': 1.0, 'what': 1.0, 'faded': 1.0, 'printing': 1.0, 'i': 2.0, 'item': 1.0, 'cheaply': 1.0, 'can': 1.0, 'with': 1.0, 'this': 2.0, 'it': 1.0}
Word element => {'decent': 1.0, 'too': 1.0, 'a': 1.0, 'it': 2.0, 'i': 1.0, 'took': 1.0, 'very': 1.0, 'shipping': 1.0, 'quality': 1.0, 'but': 2.0, 'tshirt': 1.0, 'after': 1.0, 'shirt': 1.0, 'the': 1.0, 'arrived': 1.0, 'expensive': 1.0, 'long': 1.0, 'hassle': 1.0, 'cute': 1.0, 'needed': 1.0, 'little': 1.0, 'didnt': 1.0, 'want': 1.0, 'go': 1.0, 'to': 1.0, 'through': 1.0, 'of': 1.0, 'returning': 1.0, 'for': 1.0}
Word element => {'tear': 1.0, 'survives': 1.0, 'its': 1.0, 'more': 1.0, 'typical': 1.0, 'like': 1.0, 'a': 2.0, 'necessities': 1.0, 's': 2.0, 't': 1.0, 'accurately': 1.0, 'not': 2.0, 'search': 1.0, 'enough': 1.0, 'has': 2.0, 'fashionable': 1.0, 'appealing': 1.0, 'baby': 1.0, 'tan': 1.0, 'represented': 1.0, 'after': 1.0, 'there': 1.0, 'saw': 1.0, 'well': 1.0, 'i': 7.0, 'before': 1.0, 'much': 1.0, 'storksak': 1.0, 'to': 1.0, 'line': 1.0, 'how': 1.0, 'picking': 1.0, 'duties': 1.0, 'for': 3.0, 'love': 1.0, 'using': 1.0, 'reason': 1.0, 'bag': 5.0, 'looking': 1.0, 'tell': 1.0, 'this': 3.0, 'ended': 1.0, 'perfect': 3.0, 'full': 1.0, 'intend': 1.0, 'wear': 1.0, 'it': 5.0, 'looked': 1.0, 'when': 1.0, 'what': 1.0, 'of': 2.0, 'person': 1.0, 'the': 6.0, 'as': 5.0, 'bags': 1.0, 'diaper': 4.0, 'and': 6.0, 'find': 1.0, 'stores': 1.0, 'my': 2.0, 'in': 5.0, 'brown': 1.0, 'can': 1.0, 'so': 1.0, 'attractive': 1.0, 'about': 2.0, 'check': 1.0, 'out': 1.0, 'think': 1.0, 'long': 1.0, 'on': 2.0, 'one': 1.0, 'actually': 1.0, 'color': 1.0, 'some': 1.0, 'room': 1.0, 'these': 1.0, 'picture': 1.0, 'beautiful': 1.0, 'mom': 1.0, 'name': 1.0, 'online': 1.0, 'your': 1.0, 'feel': 1.0, 'great': 1.0, 'stone': 1.0, 'that': 2.0, 'everywhere': 1.0, 'combination': 1.0, 'is': 3.0, 'look': 1.0, 'winter': 1.0, 'would': 2.0, 'summer': 1.0, 'fully': 1.0, 'yes': 1.0, 'you': 2.0, 'things': 1.0, 'also': 1.0, 'all': 2.0, 'luggage': 1.0, 'carry': 1.0, 'serves': 1.0}
Word element => {'her': 1.0, 'matches': 1.0, 'design': 1.0, 'monkey': 1.0, 'the': 1.0, 'so': 1.0, 's': 1.0, 'got': 1.0, 'new': 1.0, 'friend': 1.0, 'a': 4.0, 'soft': 2.0, 'meaning': 1.0, 'for': 1.0, 'i': 1.0, 'whole': 1.0, 'it': 2.0, 'this': 1.0, 'loves': 1.0, 'blanket': 1.0, 'gives': 1.0, 'as': 1.0, 'perfectly': 1.0, 'and': 2.0, 'theme': 1.0, 'gift': 1.0, 'who': 1.0, 'is': 1.0, 'having': 1.0, 'baby': 1.0, 'she': 1.0, 'that': 1.0}
Word element => {'and': 1.0, 've': 1.0, 'a': 1.0, 'mobile': 1.0, 'an': 1.0, 'weeks': 1.0, 'turkeys': 1.0, 'with': 1.0, 'tune': 1.0, 'it': 3.0, 'funky': 1.0, 'are': 1.0, 'but': 2.0, '2': 1.0, 'is': 1.0, 'trick': 1.0, 'does': 1.0, 'i': 3.0, 'think': 1.0, 'this': 1.0, 'wish': 1.0, '5': 1.0, 'little': 1.0, 'that': 1.0, 'been': 1.0, 'lasted': 1.0, 'issue': 1.0, 'longer': 1.0, 'perfectly': 1.0, 'blue': 1.0, 'looking': 1.0, 'kinda': 1.0, 'so': 1.0, 'matches': 1.0, 'any': 1.0, 'to': 1.0, 'bed': 1.0, 'like': 1.0, 'using': 1.0, 'love': 1.0, 'for': 1.0, 'set': 1.0, 'no': 1.0, 'peacocks': 1.0, 'the': 4.0, 'deal': 1.0, 'easy': 1.0, 'big': 1.0, '1': 1.0, 'install': 1.0}
Word element => {'skyscrapers': 1.0, 'deco': 1.0, 'most': 1.0, 'depicted': 1.0, 'art': 1.0, 'one': 1.0, 'of': 3.0, 'print': 1.0, 'absolutely': 1.0, 'not': 1.0, 'york': 1.0, 'an': 1.0, 'is': 3.0, 'it': 1.0, 'this': 1.0, 'beautiful': 2.0, 'while': 1.0, 'empire': 1.0, 'state': 1.0, 'the': 3.0, 'building': 2.0, 'image': 1.0, 'that': 1.0, 'chrysler': 1.0, 'new': 1.0, 's': 1.0, 'city': 1.0}
Word element => {'been': 1.0, 'have': 1.0, 'tool': 1.0, 'preferable': 1.0, 'how': 1.0, 'no': 1.0, 'enough': 1.0, 'fixture': 1.0, 'grippy': 1.0, 'clamp': 1.0, 'matter': 1.0, 'permanent': 1.0, 'just': 1.0, 'not': 1.0, 'would': 2.0, 'is': 1.0, 'on': 1.0, 'i': 1.0, 'turned': 1.0, 'the': 3.0, 'more': 1.0, 'knob': 1.0, 'with': 1.0, 'hard': 1.0, 'it': 1.0, 'twist': 1.0, 'bar': 1.0, 'a': 2.0}
Word element => {'got': 1.0, 'where': 1.0, 'asking': 1.0, 'everyone': 1.0, 'on': 1.0, 'compliments': 1.0, 'constantly': 1.0, 'am': 1.0, 'through': 1.0, 's': 1.0, 'can': 1.0, 'i': 3.0, 'light': 1.0, 'that': 2.0, 'weight': 1.0, 'a': 1.0, 'is': 2.0, 'blanket': 1.0, 'like': 1.0, 'wind': 1.0, 'it': 5.0, 'with': 1.0, 'this': 1.0, 'but': 1.0, 'great': 1.0, 't': 1.0, 'the': 1.0, 'material': 1.0, 'made': 1.0, 'out': 1.0, 'of': 1.0, 'and': 1.0, 'getting': 1.0, 'get': 1.0}
Word element => {'well': 1.0, 'washes': 1.0, 'most': 1.0, 'be': 1.0, 'we': 1.0, 'weeks': 1.0, 'baby': 1.0, 'couldn': 1.0, 'and': 2.0, 'soft': 1.0, 'absolutely': 1.0, 't': 1.0, 'the': 2.0, 'happier': 1.0, 'to': 1.0, 'now': 1.0, 'is': 2.0, 'side': 1.0, 'enough': 1.0, 'loves': 1.0, 'with': 1.0, 'it': 3.0, 'skin': 1.0, 'this': 1.0, 'blanket': 1.0, 'against': 1.0, 'her': 2.0, 'even': 1.0, 'importantly': 1.0, 'adorable': 1.0, 'big': 1.0, 'swaddle': 1.0, 'at': 1.0, '8': 1.0}
Word element => {'carriage': 1.0, 'or': 1.0, 'home': 1.0, 'either': 1.0, 'these': 1.0, 'recommend': 1.0, 'highly': 1.0, 'would': 1.0, 'wonderfully': 1.0, 'so': 1.0, 'softness': 1.0, '3': 1.0, 'reverse': 1.0, 'with': 1.0, 'this': 1.0, 'granddaughter': 1.0, 'originally': 1.0, 'hot': 1.0, 'bought': 2.0, 'have': 1.0, 'because': 1.0, 'then': 1.0, 'of': 2.0, 'cute': 1.0, 'more': 1.0, 'the': 4.0, 'my': 2.0, 'design': 1.0, 'for': 2.0, 'us': 1.0, 'daughter': 1.0, 'stays': 1.0, 'that': 1.0, 'loves': 1.0, 'i': 3.0, 'can': 2.0, 'if': 1.0, 'since': 1.0, 'keep': 1.0, 'at': 1.0, 'fabric': 1.0, 'her': 1.0, 'house': 1.0, 'also': 1.0, 'wash': 1.0, 'them': 1.0, 'baby': 1.0, 'kind': 1.0, 'like': 1.0, 'minky': 1.0, 'too': 1.0, 'and': 3.0, 'when': 1.0, 'easily': 1.0, 'you': 1.0, 'they': 1.0}
Word element => {'them': 1.0, 'happened': 1.0, 'thing': 1.0, 'same': 1.0, 'the': 1.0, 'people': 1.0, 'other': 1.0, 'noticed': 1.0, 'shipped': 1.0, 'not': 1.0, 'was': 2.0, 'to': 2.0, 'what': 1.0, 'came': 1.0, 'bunny': 1.0, 'monkey': 1.0, 'pink': 1.0, 'very': 1.0, 'a': 2.0, 'blue': 1.0, 'blanket': 2.0, 'ordered': 1.0, 'i': 3.0, 'too': 1.0, 'when': 1.0, 'and': 1.0, 'do': 1.0, 'me': 1.0, 'it': 2.0, 'saying': 1.0, 'disappointed': 1.0, 'in': 1.0, 'recommend': 1.0}
Word element => {'time': 1.0, 'no': 1.0, 's': 1.0, 'monkey': 1.0, 'my': 1.0, 'will': 1.0, 'imagine': 1.0, 'warm': 1.0, 'blanket': 2.0, 'matching': 1.0, 'and': 1.0, 'son': 1.0, 'very': 1.0, 'as': 1.0, 'i': 1.0, 'touch': 1.0, 'purpose': 1.0, 'to': 1.0, 'in': 1.0, 'cannot': 1.0, 'be': 2.0, 'soft': 1.0, 'the': 3.0, 'is': 3.0, 'favorite': 1.0, 'challenge': 1.0, 'for': 1.0, 'that': 2.0, 'with': 1.0, 'blankie': 1.0, 'only': 1.0, 'this': 2.0, 'it': 2.0, 'used': 1.0, 'a': 1.0, 'small': 1.0, 'swaddle': 1.0, 'too': 1.0}
Word element => {'in': 1.0, 'baby': 1.0, 'nice': 1.0, 'when': 1.0, 'daughter': 1.0, 'm': 1.0, 'after': 1.0, 'so': 1.0, 'but': 2.0, 'ordered': 1.0, 'do': 1.0, 'be': 1.0, 'cuddle': 1.0, 'is': 2.0, 'till': 1.0, 'this': 1.0, 'first': 1.0, 'i': 4.0, 'wow': 1.0, 'the': 2.0, 'wasn': 1.0, 'photo': 1.0, 'washed': 1.0, 'about': 1.0, 'arrive': 1.0, 'it': 8.0, 'justice': 1.0, 'product': 1.0, 'for': 1.0, 'yet': 1.0, 'to': 3.0, 'our': 1.0, 'that': 1.0, 'blanket': 1.0, 'are': 1.0, 'doesn': 1.0, 'crazy': 1.0, 'beautiful': 2.0, 'expecting': 1.0, 'haven': 1.0, 'waiting': 1.0, 'closer': 1.0, 'date': 1.0, 'due': 1.0, 'large': 1.0, 'just': 1.0, 'from': 1.0, 'looking': 1.0, 'at': 1.0, 'going': 1.0, 't': 3.0, 'we': 1.0, 's': 1.0, 'a': 1.0}
Word element => {'gift': 1.0, 'a': 1.0, 'it': 2.0, 'gave': 1.0, 'loved': 1.0, 'this': 1.0, 'blanket': 1.0, 'is': 1.0, 'soft': 1.0, 'as': 1.0, 'very': 1.0, 'and': 3.0, 'unusual': 1.0, 'mommy': 1.0, 'sooooooo': 1.0, 'design': 1.0, 'in': 1.0, 'baby': 1.0, 'both': 1.0, 'its': 1.0}
Word element => {'product': 1.0, 'froma': 1.0, 'you': 1.0, 'disappointing': 1.0, 'it': 1.0, 'very': 1.0, 'quality': 1.0, 'better': 1.0, 'more': 1.0, 'the': 1.0, 'stiching': 1.0, 'out': 1.0, 'expect': 1.0, 'when': 1.0, 'i': 1.0, 'one': 1.0, 'isfalling': 1.0, 'for': 1.0, 'wash': 1.0, 'is': 1.0, 'hoping': 1.0, 'after': 1.0, 'was': 1.0}
Word element => {'baby': 1.0, 'effective': 1.0, 'for': 1.0, 'safe': 1.0, 'and': 2.0, 'most': 1.0, 'use': 1.0, 'every': 1.0, 'i': 1.0, 'amazing': 1.0, 'should': 1.0, 'believe': 1.0, 'an': 1.0, 'product': 1.0, 'to': 1.0, 'is': 1.0, 'of': 2.0, 'endless': 1.0, 'all': 1.0, 'nursing': 1.0, 'have': 1.0, 'supply': 1.0, 'the': 1.0, 'mother': 1.0, 'mess': 1.0, 'balm': 1.0, 'this': 2.0, 'it': 1.0, 's': 1.0, 'free': 1.0, 'easy': 1.0}
Word element => {'yay': 1.0, 'urged': 1.0, 'so': 2.0, 'havent': 1.0, 'buy': 1.0, 'i': 3.0, 'product': 1.0, 'was': 1.0, 'to': 2.0, 'nursing': 1.0, 'service': 1.0, 'is': 1.0, 'started': 1.0, 'not': 1.0, 'sure': 1.0, 'am': 1.0, 'how': 1.0, 'a': 1.0, 'well': 1.0, 'this': 2.0, 'going': 1.0, 'yet': 1.0, 'for': 1.0, 'and': 1.0, 'me': 1.0, 'work': 1.0, 'but': 1.0}
Word element => {'utilizarlo': 1.0, 'podido': 1.0, 'nunca': 1.0, 'he': 1.0, 'til': 1.0, 'uacute': 1.0, 'poco': 1.0}
Word element => {'durable': 1.0, 'more': 2.0, 'be': 1.0, 'hinge': 1.0, 'upset': 1.0, 'bit': 1.0, 'so': 2.0, 'lot': 1.0, 'could': 1.0, 't': 1.0, 'a': 2.0, 'terribly': 1.0, 'ask': 1.0, 'do': 1.0, 'use': 1.0, 'during': 1.0, 'than': 1.0, 'because': 1.0, 'like': 1.0, 'and': 2.0, 'renting': 1.0, 'with': 1.0, 'children': 1.0, 'get': 1.0, 'easy': 1.0, 'have': 2.0, 'fantastic': 1.0, 'traveling': 1.0, 'when': 1.0, 'gave': 1.0, 'i': 5.0, '4': 2.0, 'over': 1.0, 'on': 1.0, 'double': 1.0, 'they': 1.0, 'wasn': 1.0, 'shopping': 1.0, 'these': 1.0, 'the': 3.0, 'of': 4.0, 'disney': 1.0, 'are': 1.0, 'ordered': 1.0, 'bags': 1.0, 'years': 1.0, 'broke': 1.0, 'backpacks': 1.0, 'in': 1.0, 'handles': 1.0, 'world': 1.0, 'strollers': 1.0, 'them': 4.0, 'few': 1.0, 'just': 1.0, 'clip': 1.0, 'but': 1.0, '2': 1.0, 'past': 1.0, 'can': 1.0, 'one': 1.0, 'hang': 1.0, 'coats': 1.0, 'anything': 1.0, 'our': 1.0, 'to': 1.0, 'open': 1.0, 'close': 1.0, 'stars': 1.0, 'instead': 1.0, '5': 1.0}
Word element => {'at': 1.0, 'looking': 1.0, 'used': 1.0, 'getting': 1.0, 'mirror': 1.0, 'm': 1.0, 'like': 1.0, 'difficulties': 1.0, 'have': 1.0, 'had': 1.0, 'car': 1.0, 'together': 1.0, 'got': 1.0, 'loved': 1.0, 'so': 1.0, 'it': 4.0, 'he': 3.0, 'for': 2.0, 'i': 5.0, 'old': 1.0, 'one': 1.0, 'bought': 1.0, 'carseat': 1.0, 'loving': 1.0, 'his': 1.0, 'another': 1.0, 'my': 2.0, 'cup': 1.0, 'that': 1.0, 'loves': 1.0, 'other': 2.0, 'we': 1.0, 'superhero': 1.0, 'yr': 1.0, 'tightening': 1.0, 'the': 4.0, 'more': 1.0, 'this': 1.0, 'holders': 1.0, 'cape': 1.0, 'in': 1.0, 'said': 1.0, 'and': 2.0, '2': 1.0, 'can': 1.0, 'buckle': 1.0, 'would': 1.0, 've': 1.0, '3': 1.0, 'put': 1.0, 'on': 1.0, 'own': 1.0, 'husband': 1.0, 'harness': 1.0, 'much': 2.0, 'its': 1.0, 'as': 2.0, 'our': 1.0, 'to': 3.0, 'still': 1.0, 'difficult': 1.0, 'than': 1.0, 'seats': 1.0}
Word element => {'and': 1.0, 'seconds': 1.0, 'extra': 1.0, 'takes': 1.0, 'few': 1.0, 'just': 1.0, 'worth': 1.0, 'complements': 1.0, 'knowing': 1.0, 'off': 1.0, 'this': 1.0, 'he': 3.0, 'only': 1.0, 'town': 1.0, 'else': 1.0, 'it': 3.0, 'showing': 1.0, 'my': 2.0, 'is': 5.0, 'no': 1.0, 'booster': 1.0, 'in': 4.0, 'safe': 2.0, 'buckle': 1.0, 'one': 2.0, 'i': 1.0, 'has': 1.0, 'to': 2.0, 'seat': 1.0, 'know': 1.0, 'buckled': 1.0, 'are': 2.0, 'child': 1.0, 'up': 1.0, 'of': 1.0, 'other': 1.0, 'a': 1.0, 'we': 2.0, 'friends': 1.0, 'who': 1.0, 'still': 1.0, 'straps': 1.0, 'seats': 1.0, 'get': 1.0, 'tons': 1.0, 'on': 1.0, 'complaint': 1.0, 'loves': 1.0, 'that': 1.0, 'his': 1.0, 'twist': 1.0, 'the': 1.0, 'when': 2.0, 'easily': 1.0, 'trying': 1.0, 'him': 1.0}
Word element => {'factor': 1.0, 'just': 1.0, 'buy': 1.0, 'would': 1.0, 'again': 1.0, 'car': 1.0, 'thread': 1.0, 'you': 1.0, 'don': 1.0, 'find': 1.0, 'since': 1.0, 'than': 1.0, 'buckle': 1.0, 'challenging': 1.0, 'manages': 1.0, 'more': 1.0, 'under': 1.0, 'winter': 1.0, 'when': 1.0, 's': 1.0, 'maybe': 1.0, 'hasn': 1.0, 'was': 2.0, 'concerned': 1.0, 'are': 1.0, 'drawbacks': 1.0, 'install': 2.0, 'then': 1.0, 'we': 2.0, 'keeps': 1.0, 'like': 1.0, 'but': 3.0, 'superheros': 1.0, 'son': 1.0, 'for': 5.0, 'opinion': 1.0, 'years': 1.0, 'both': 1.0, 'mirror': 1.0, 'd': 1.0, 'once': 1.0, 'view': 1.0, 'pulling': 1.0, '6': 1.0, 'batman': 2.0, 'how': 1.0, 'yet': 1.0, 'he': 4.0, 'far': 1.0, 'who': 1.0, 'a': 3.0, 'small': 1.0, 'have': 2.0, 'booster': 2.0, 'of': 3.0, 'the': 16.0, 'without': 1.0, 'him': 1.0, 'it': 8.0, 'with': 2.0, 'outweighs': 1.0, 'himself': 2.0, 'very': 1.0, 'as': 3.0, 'all': 3.0, 'year': 1.0, 'his': 2.0, 'design': 1.0, 'mostly': 2.0, '5': 1.0, 'next': 1.0, 'been': 1.0, 'accidentally': 1.0, 'likely': 1.0, 'obsessed': 1.0, 'or': 1.0, 'need': 1.0, 'loves': 1.0, 'challenge': 1.0, 'arm': 1.0, 'confusing': 1.0, 'arms': 1.0, 'and': 7.0, 'old': 2.0, 'point': 1.0, 'i': 5.0, 'could': 1.0, 'will': 2.0, 'belt': 1.0, 't': 2.0, 'cape': 1.0, 'this': 3.0, 'few': 1.0, 'at': 1.0, 'is': 4.0, 'bit': 1.0, 'can': 1.0, 'so': 1.0, 'time': 1.0, 'wrapped': 1.0, 'be': 1.0, 'harness': 1.0, 'bought': 1.0, 'instructions': 2.0, 'piece': 1.0, 'were': 2.0, 'colder': 1.0, 'to': 6.0, 'high': 1.0, 'driving': 1.0, 'coolness': 2.0, 'on': 4.0, 'each': 1.0, 'go': 1.0, 'figured': 1.0, 'out': 1.0, 'off': 1.0, 'own': 1.0, 'good': 1.0, 'back': 1.0, 'really': 1.0, 'particularly': 1.0, 'glares': 1.0, 'my': 4.0, 'me': 1.0, 'connector': 1.0, 'm': 1.0, 'seat': 5.0, 'in': 3.0, 'try': 1.0, 'one': 1.0, 'rear': 1.0, 'getting': 1.0, 'move': 1.0, 'used': 1.0, 'skills': 1.0, 'velcro': 1.0}
Word element => {'must': 1.0, 's': 1.0, 'it': 1.0, 'for': 1.0, 'a': 1.0, 'go': 1.0, 'to': 1.0, 'rides': 1.0, 'excited': 1.0, 'batman': 1.0, 'have': 1.0, 'loves': 1.0, 'he': 1.0, 'his': 1.0, 'new': 1.0, 'son': 1.0, 'now': 1.0, 'is': 1.0, 'car': 2.0, 'my': 1.0, 'sea': 1.0}
Word element => {'solid': 1.0, 'are': 1.0, 'bottom': 1.0, 'openings': 1.0, 'that': 1.0, 'box': 1.0, 'holdersthe': 1.0, 'settings': 1.0, 'rest': 1.0, 'head': 1.0, '3': 1.0, 'nice': 1.0, 'padded': 1.0, 'spacious': 1.0, 'requirements': 1.0, 'seen': 1.0, 'mine': 1.0, 'never': 1.0, 'it': 2.0, 'holders': 1.0, 'this': 2.0, 'first': 1.0, 'had': 1.0, 'thought': 1.0, 'shoulder': 1.0, '2': 2.0, 'but': 2.0, 'he': 4.0, 'batman': 1.0, 'stated': 1.0, 'i': 1.0, 'bought': 1.0, 'be': 1.0, 'my': 1.0, 'loved': 1.0, 'birthday': 1.0, 'of': 1.0, 'for': 2.0, 'cup': 2.0, 'yet': 1.0, 'strapped': 1.0, 'car': 5.0, 'at': 1.0, 'sons': 1.0, 'and': 4.0, 'crotch': 1.0, 'was': 1.0, 'coolit': 1.0, 'settings2': 1.0, 'wanted': 1.0, 'all': 1.0, 'seat': 4.0, 'to': 1.0, 'sooo': 1.0, 'wasn': 1.0, 'the': 4.0, 'sized': 1.0, 'installed': 1.0, 'in': 2.0, 't': 1.0, 'go': 1.0, 'a': 1.0, 'has': 1.0, 'well': 2.0, 'ride': 1.0, 'is': 2.0, 'very': 2.0, 'made': 1.0, 'exceeds': 1.0, 'us': 1.0, 'even': 2.0, '2nd': 1.0, 'safety': 1.0}
Word element => {'seat': 1.0, 'awesome': 1.0}
Word element => {'vehicle': 1.0, 'move': 1.0, 'pretty': 1.0, 'its': 1.0, 'up': 1.0, 'don': 1.0, 'lever': 1.0, 'pull': 1.0, 'lower': 1.0, 'extend': 1.0, 'with': 1.0, 'little': 1.0, 'very': 2.0, 'had': 1.0, 'what': 1.0, 'twist': 1.0, 'his': 1.0, 'light': 1.0, 'just': 1.0, 'to': 3.0, 'seat': 2.0, 'boy': 1.0, 'when': 1.0, 'one': 1.0, 'i': 3.0, 'can': 1.0, 'talks': 1.0, 'even': 1.0, 'got': 1.0, 'he': 3.0, 'batman': 2.0, 'this': 1.0, 'holders': 1.0, 't': 1.0, 's': 3.0, 'a': 1.0, 'great': 1.0, 'feel': 1.0, 'excited': 1.0, 'padded': 1.0, 'car': 1.0, 'himself': 1.0, '34': 2.0, 'that': 1.0, 'loves': 1.0, 'let': 1.0, 'cup': 1.0, 'being': 1.0, 'the': 5.0, 'hands': 1.0, 'easy': 2.0, 'and': 4.0, 'comfy': 1.0, 'it': 1.0, 'covers': 1.0, 'cape': 1.0, 'around': 1.0, 'say': 2.0, 'is': 1.0, 'in': 2.0, 'itself': 1.0, 'straps': 1.0, 'are': 1.0}
Word element => {'recommend': 1.0, 'i': 1.0, 'old': 1.0, 'loves': 1.0, 'is': 1.0, 'a': 1.0, 'works': 1.0, 'it': 5.0, 'great': 3.0, 'carseat': 1.0, 'my': 1.0, '3': 1.0, 'years': 1.0, 'looks': 1.0}
Word element => {'us': 1.0, 'for': 1.0, 'love': 1.0, 'whereas': 1.0, 'child': 1.0, 'out': 1.0, 'he': 1.0, 'this': 1.0, 'our': 1.0, 'seat': 2.0, 'to': 4.0, 'is': 2.0, 'it': 6.0, 'looks': 1.0, 'loves': 1.0, 'into': 1.0, 'car': 2.0, 'wait': 1.0, 'absolutely': 1.0, 'toddlers': 1.0, 'bigger': 1.0, 'was': 1.0, 'recommend': 1.0, 'can': 1.0, 'but': 1.0, 'than': 1.0, 'thought': 1.0, 'what': 1.0, 'before': 1.0, 'his': 1.0, 'we': 3.0, 't': 1.0, 'go': 1.0, 'a': 1.0, 'now': 1.0, 'constant': 1.0, 'with': 2.0, 'fight': 1.0, 'anybody': 1.0, 'easy': 1.0, 'get': 1.0, 'and': 2.0, 'him': 1.0, 'would': 1.0, 'very': 2.0, 'install': 1.0, 'safe': 1.0, 'are': 1.0, 'happy': 1.0}
Word element => {'his': 1.0, 'all': 1.0, 'so': 1.0, 'do': 1.0, 'thinks': 1.0, 'it': 1.0, 'its': 2.0, 'comfortable': 1.0, 'snap': 1.0, 'friends': 1.0, 'and': 3.0, 'my': 1.0, 'of': 1.0, 'he': 1.0, 'sturdy': 1.0, 'a': 1.0, 'to': 1.0, 'cool': 1.0, 'assemble': 1.0, 'son': 1.0, 'loves': 1.0}
Word element => {'now': 1.0, 'several': 1.0, 'use': 1.0, 'able': 1.0, 'comfortable': 1.0, 'for': 3.0, 'find': 1.0, 'a': 1.0, 'pending': 1.0, 'from': 1.0, 'hard': 1.0, 'it': 4.0, 'was': 1.0, 'booster': 1.0, 'super': 1.0, 'my': 1.0, 'loves': 2.0, 'or': 1.0, 'quality': 1.0, 'but': 1.0, 'back': 1.0, 'will': 1.0, 'and': 3.0, 'comfy': 1.0, 'old': 1.0, 'still': 1.0, 'son': 1.0, 'is': 1.0, 'he': 4.0, '6': 1.0, 'up': 1.0, 'almost': 1.0, 'awesome': 1.0, 'best': 1.0, 'years': 2.0, 'cute': 1.0, 'rest': 1.0, 'built': 1.0, 'has': 1.0, 'room': 1.0, 'to': 3.0, 'grow': 1.0, 'strong': 1.0, 'your': 2.0, 'on': 2.0, 'the': 1.0, 'goes': 1.0, 'down': 1.0, 'fitting': 1.0, 'kid': 1.0, 'him': 1.0, 'be': 1.0}
Word element => {'be': 1.0, 'would': 1.0, 'cup': 1.0, 'an': 1.0, 'belt': 1.0, 'have': 1.0, 'so': 1.0, 'option': 1.0, 'booster': 1.0, 'when': 1.0, 'mom': 1.0, 'holders': 1.0, 'this': 1.0, 'with': 4.0, 'for': 3.0, 'one': 1.0, 'regular': 1.0, 'in': 2.0, 'straps': 2.0, 'sit': 1.0, 'granddaughter': 3.0, 'wants': 1.0, 'use': 1.0, 'anchored': 1.0, 'it': 3.0, 'she': 2.0, 'removed': 1.0, 'car': 5.0, 'not': 2.0, 'wrap': 1.0, 'the': 7.0, 'fun': 1.0, 'no': 1.0, 'that': 1.0, 'such': 1.0, 'hit': 1.0, 'even': 1.0, 'her': 2.0, 'around': 1.0, 'is': 3.0, 'normal': 1.0, 'blanket': 1.0, 'are': 2.0, 'duel': 1.0, 'very': 2.0, 'awesome': 1.0, 'year': 1.0, 'our': 1.0, 'to': 3.0, 'seat': 8.0, 'as': 2.0, 'comfy': 1.0, 'too': 1.0, 'and': 4.0, 'five': 1.0, 'get': 1.0, 'cap': 1.0, 'my': 2.0, 'fits': 1.0, 'handy': 1.0, 'colder': 1.0, 'makes': 1.0, 'old': 1.0, 'click': 1.0, 'problem': 1.0, 'just': 3.0, 'says': 1.0, 'mornings': 1.0, 'anywhere': 1.0, 'need': 1.0, 'we': 4.0, 'going': 1.0, 'a': 3.0, 's': 1.0}
Word element => {'everyone': 1.0, 'loves': 1.0, 'comfy': 1.0, 'super': 1.0, 's': 1.0, 'it': 2.0, 'husband': 1.0, 'my': 1.0, 'high': 1.0, 'and': 1.0, 'very': 1.0, 'quality': 1.0, 'car': 1.0, 'seat': 1.0, 'not': 1.0, 'to': 1.0, 'install': 1.0, 'for': 2.0, 'but': 1.0, 'easy': 1.0, 'me': 1.0}
Word element => {'ckk': 1.0, 'apart': 1.0, 'i': 1.0, 'sided': 1.0, 'but': 1.0, 'my': 1.0, 'own': 1.0, 'bought': 1.0, 'adhere': 1.0, 'the': 1.0, 'great': 1.0, 'is': 2.0, 'cushion': 1.0, 'it': 2.0, 'with': 1.0, 'this': 1.0, '3': 1.0, 'm': 1.0, 'two': 1.0, 'tape': 2.0, 'that': 1.0, 'to': 2.0, 'comes': 1.0, 'impossible': 1.0, 'split': 1.0}
Word element => {'disappointing': 1.0, 'them': 1.0, 'there': 1.0, 'under': 1.0, 'fingers': 1.0, 'her': 1.0, 'get': 1.0, 'easy': 1.0, 'months': 1.0, '3': 1.0, 'is': 3.0, 'while': 1.0, 'quantity': 1.0, 'black': 1.0, 'were': 1.0, 'the': 1.0, 'replace': 1.0, 'table': 1.0, 'and': 4.0, 'coffee': 1.0, 'times': 1.0, 'husband': 1.0, 'purpose': 1.0, 'had': 2.0, 'i': 1.0, 'she': 1.0, 'it': 5.0, 'this': 1.0, 'large': 1.0, 'thrilled': 1.0, 'serving': 1.0, 'in': 2.0, 've': 2.0, 'my': 1.0, 'because': 1.0, 'find': 1.0, 'of': 1.0, 'off': 1.0, 'cover': 1.0, 'protecting': 1.0, 'pull': 1.0, 'daughter': 2.0, 'our': 3.0, 'to': 5.0, 'as': 1.0, 'little': 2.0, 'very': 2.0, 'learns': 1.0, 'a': 2.0, 's': 1.0, 'we': 2.0, 'walk': 1.0, 'sticky': 1.0, 'tape': 1.0, 'not': 1.0, 'effective': 1.0, 'for': 2.0, 'about': 1.0, 'several': 1.0, 'such': 1.0, 'already': 1.0}
Word element => {'take': 1.0, 'folds': 1.0, 'plus': 1.0, 'newborn': 1.0, 'rocker': 1.0, 'son': 1.0, 'anyone': 1.0, 'putting': 1.0, 'way': 1.0, 'recommend': 1.0, 'was': 2.0, 'said': 1.0, 'in': 2.0, 'sister': 1.0, 'got': 2.0, 'that': 1.0, 'babies': 1.0, 'when': 1.0, 'one': 1.0, 'months': 1.0, 'bed': 1.0, 'for': 2.0, 'love': 1.0, 'law': 1.0, 'height': 1.0, 'almost': 1.0, 'or': 1.0, 'if': 1.0, 'same': 1.0, 'had': 1.0, 'as': 1.0, 'sleep': 4.0, 'to': 3.0, 'daughter': 1.0, 'at': 1.0, 'two': 1.0, 'i': 7.0, 'night': 2.0, 'she': 2.0, 'it': 4.0, 'with': 3.0, 'beginning': 1.0, 'first': 1.0, 'thing': 1.0, 'only': 1.0, 'its': 2.0, 'much': 1.0, 'kids': 1.0, 'this': 1.0, 'wish': 1.0, 'my': 4.0, 'woke': 1.0, 'the': 4.0, 'reach': 1.0, 'and': 3.0, 'light': 1.0, 'just': 1.0, 'don': 1.0, 'up': 1.0, 'over': 1.0, 'through': 1.0, 'rock': 1.0, 'her': 3.0, 'both': 1.0, 'back': 2.0, 'me': 1.0, 'those': 1.0, 'give': 1.0, 'so': 3.0, 'bottle': 1.0, 't': 1.0, 'go': 1.0, 'could': 1.0, 'a': 2.0, 'we': 1.0, 'would': 2.0, 'is': 1.0, 'wonderful': 1.0}
Word element => {'anyway': 1.0, 'but': 1.0, 'loud': 1.0, 'rather': 1.0, 'function': 1.0, 'when': 1.0, 'bought': 1.0, 'space': 1.0, 'he': 4.0, 'this': 1.0, 'much': 1.0, 'only': 1.0, 're': 1.0, 'my': 3.0, 'like': 2.0, 'downside': 1.0, 'packnplay': 1.0, 'having': 1.0, 'in': 2.0, 'son': 3.0, 'from': 1.0, 'day': 1.0, 'the': 2.0, 'his': 1.0, 'assuming': 1.0, 'wouldn': 1.0, 'didn': 1.0, 'crib': 1.0, 'sleep': 1.0, 'or': 1.0, 'that': 1.0, 'loves': 1.0, 'on': 1.0, 'recommendation': 1.0, 'it': 5.0, 'month': 1.0, 'friend': 1.0, 'and': 1.0, 'vibrating': 1.0, 'now': 1.0, 'doesn': 1.0, 'was': 2.0, 'every': 1.0, 'purchased': 1.0, 'night': 1.0, 'old': 1.0, 't': 3.0, 'we': 2.0, 'a': 3.0, 's': 2.0, 'by': 1.0, 'few': 1.0, 'just': 1.0, 'sleeps': 1.0, 'is': 1.0}
Word element => {'day': 1.0, 'during': 1.0, 'room': 1.0, 'spot': 1.0, 'portable': 1.0, 'a': 2.0, 'light': 1.0, 'is': 1.0, 'and': 2.0, 'little': 1.0, 'this': 1.0, 'born': 1.0, 'new': 1.0, 'whether': 1.0, 'in': 1.0, 'perfect': 1.0, 'beside': 1.0, 'cradle': 1.0, 'your': 1.0, 'or': 1.0, 'for': 1.0, 'bed': 1.0, 'at': 1.0, 'night': 1.0, 'the': 2.0, 'family': 1.0}
Word element => {'love': 1.0, 'little': 1.0, 'helping': 1.0, 'even': 1.0, 'minutes': 1.0, '5': 1.0, 'together': 1.0, 'home': 1.0, 'year': 2.0, 'his': 1.0, '3': 2.0, 'on': 2.0, 'strong': 1.0, 'have': 3.0, 'just': 1.0, 'seats': 1.0, 'bouncer': 2.0, 'wanted': 1.0, 'those': 1.0, 'not': 3.0, 'n': 2.0, 'something': 1.0, 'be': 4.0, 'down': 2.0, 'worried': 1.0, 'new': 2.0, 'tall': 1.0, 'section': 1.0, 'enough': 1.0, 'won': 1.0, 'a': 6.0, 'option': 1.0, 'would': 1.0, 'weeks': 1.0, 'will': 3.0, 'seems': 1.0, 'having': 2.0, 'of': 1.0, 'the': 5.0, 'reach': 1.0, '2': 1.0, 'old': 2.0, 'cheap': 1.0, 'for': 3.0, 'as': 2.0, 'bend': 1.0, 'i': 5.0, 'one': 2.0, 'big': 1.0, 'do': 1.0, 'much': 1.0, 'put': 3.0, 'floor': 1.0, 'to': 12.0, 'in': 6.0, 'seat': 1.0, 'our': 4.0, 'sleep': 1.0, 'c': 1.0, 'safe': 2.0, 'we': 2.0, 'take': 1.0, 'am': 1.0, 'hope': 1.0, 'entertain': 1.0, 'that': 3.0, 'easily': 1.0, 'repeat': 1.0, 'road': 1.0, 'few': 1.0, 'this': 3.0, 'sleeper': 1.0, 'rock': 1.0, 'sibling': 1.0, 'needs': 1.0, 'answer': 1.0, 'was': 1.0, 'worries': 1.0, 'him': 2.0, 'it': 4.0, 'easy': 1.0, 'while': 1.0, 'squat': 1.0, 'also': 1.0, 'us': 3.0, 'able': 1.0, 'with': 2.0, 'fits': 1.0, 'all': 1.0, 'an': 1.0, 'baby': 4.0, 'folds': 1.0, 'upcoming': 1.0, 'and': 8.0, 'trip': 1.0, 'comfortable': 1.0, 'observe': 1.0, 'worry': 1.0, 'play': 2.0, 'about': 2.0, 'at': 1.0, 'is': 3.0, 'bringing': 1.0, 't': 1.0, 'along': 1.0, 'pack': 1.0, 'frame': 1.0, 'very': 2.0, 'substantial': 1.0}
Word element => {'house': 2.0, 'different': 1.0, 'three': 1.0, 'in': 1.0, 'showers': 1.0, 'i': 1.0, 'newborns': 1.0, 'when': 1.0, 'have': 1.0, 'baby': 1.0, 'to': 2.0, 'everyone': 1.0, 'this': 1.0, 'it': 1.0, 'loves': 1.0, 'sleep': 1.0, 'great': 1.0, 'the': 1.0, 'for': 2.0, 'parents': 1.0, 'product': 1.0, 'bought': 1.0, 'travel': 1.0, 'from': 1.0}
Word element => {'removed': 1.0, 'once': 1.0, 'that': 1.0, 'what': 1.0, 'not': 1.0, 'my': 2.0, 'this': 1.0, 'makes': 1.0, 'mothers': 1.0, 'i': 1.0, 'him': 1.0, 'sure': 1.0, 'wait': 1.0, 'nephew': 1.0, 'he': 1.0, 'is': 1.0, 'enjoyed': 1.0, 'kid': 1.0, 'm': 1.0}
Word element => {'market': 1.0, 'products': 1.0, 'best': 1.0, 'probably': 1.0, 'concept': 1.0, 'cleaning': 1.0, 'giving': 1.0, 'models': 1.0, 'future': 1.0, 'able': 1.0, 'fisher': 1.0, 'hope': 1.0, 'arms': 1.0, 'out': 2.0, 'getting': 1.0, 'has': 1.0, 'daughter': 1.0, 'decision': 1.0, 'tough': 1.0, 'back': 1.0, 'reason': 1.0, 'dish': 1.0, 'literally': 1.0, 'floor': 1.0, 'do': 1.0, 'much': 1.0, 'easily': 1.0, 'that': 15.0, 'because': 2.0, 'am': 3.0, 'great': 2.0, 'if': 1.0, 'of': 8.0, 'the': 19.0, 'does': 1.0, 'longer': 1.0, 'stops': 1.0, 'opinion': 1.0, 'minutes': 1.0, 'effort': 1.0, 'bought': 1.0, 'take': 1.0, 'so': 3.0, 'but': 3.0, 'write': 1.0, '2': 1.0, 'thing': 2.0, 'always': 1.0, '1': 1.0, 'day': 1.0, 'since': 2.0, 'love': 2.0, 'stop': 2.0, 'keep': 3.0, 'like': 4.0, 'hard': 2.0, 'quite': 1.0, 'to': 9.0, 'hoping': 1.0, 'seat': 2.0, 'in': 4.0, 'seems': 1.0, 'off': 1.0, 'shocked': 1.0, 'colors': 2.0, 'remedy': 1.0, 'possible': 1.0, 'thought': 3.0, 'this': 8.0, 'rocking': 2.0, 'vibrates': 1.0, 'plus': 1.0, 'as': 4.0, 'sit': 1.0, 'more': 1.0, 'can': 2.0, 'is': 15.0, 'course': 2.0, 'notice': 1.0, 'look': 1.0, 'at': 1.0, 'not': 3.0, 'dry': 1.0, 'find': 1.0, 'why': 1.0, 'white': 2.0, 'her': 5.0, 'considering': 1.0, 'fabric': 1.0, 'for': 7.0, 'price': 1.0, 'such': 1.0, 'noticed': 1.0, 'on': 7.0, 'otherwise': 1.0, 'wood': 1.0, 'update': 2.0, 'being': 1.0, 'prevent': 1.0, 'i': 25.0, 'well': 2.0, 'expect': 1.0, 'about': 2.0, 'play': 1.0, 'today': 1.0, 'cushioned': 1.0, 'own': 1.0, 'it': 23.0, 'initial': 1.0, 'be': 2.0, 'pink': 2.0, 'easy': 1.0, 'did': 1.0, 'kind': 1.0, 'review': 1.0, 'expected': 1.0, 't': 2.0, 'likes': 1.0, 'a': 10.0, 'moisture': 1.0, 'actually': 2.0, 'color': 2.0, 'rocks': 1.0, 'an': 2.0, 'way': 1.0, 'all': 1.0, 'she': 1.0, 'bounce': 1.0, 'make': 1.0, 'too': 2.0, 'got': 1.0, 'one': 3.0, 'held': 1.0, 'soon': 1.0, 'there': 1.0, 'just': 2.0, 'and': 14.0, 'baby': 3.0, 'grey': 2.0, 'petri': 1.0, 'under': 1.0, 'would': 4.0, 've': 1.0, 'several': 1.0, 'lavender': 1.0, 'brown': 1.0, 'me': 1.0, 'dirty': 1.0, 'which': 4.0, 'again': 1.0, 'clean': 3.0, 'per': 1.0, 'rock': 2.0, 'big': 1.0, 'puddle': 1.0, 'still': 1.0, 'super': 1.0, 'toe': 1.0, 'also': 3.0, 'need': 1.0, 'feature': 1.0, 'break': 1.0, 'could': 1.0, 'what': 1.0, 'fact': 2.0, 'important': 1.0, 'swing': 1.0, 'really': 1.0, 'night': 1.0, 'you': 1.0, 'when': 1.0, 'bed': 2.0, 'live': 1.0, 'have': 4.0, 'bouncer': 2.0, 'vibrating': 1.0, 'see': 2.0, 'real': 1.0, 'now': 1.0, 'used': 1.0, 'decided': 1.0, 'growing': 1.0, 'than': 1.0, 'sending': 1.0, 'legs': 2.0, 'only': 1.0, 'beyond': 1.0, 'was': 4.0, 'reluctant': 1.0, 'from': 1.0, 'though': 2.0, 'by': 2.0, 'after': 2.0, 'doesn': 2.0, 's': 1.0, 'grows': 1.0, 'mold': 2.0, 'others': 1.0, 'couch': 1.0, 'researching': 1.0, 'first': 2.0, 'n': 1.0, 'humidity': 1.0, 'seeing': 1.0, 'had': 1.0, 'some': 1.0, 'are': 1.0, 'my': 9.0, 'issues': 1.0, 'aware': 1.0, 'they': 1.0, 'let': 1.0, 'issue': 3.0, 'watch': 1.0, 'picture': 1.0, 'with': 5.0, 'using': 1.0, 'week': 1.0, 'been': 1.0, 'went': 1.0, 'sleep': 3.0, 'water': 1.0, 'base': 1.0, 'will': 2.0, 'cover': 1.0, 'instantly': 1.0, 'instructions': 2.0, 'sure': 1.0, 'enough': 1.0, 'far': 1.0, 'depending': 1.0, 'many': 1.0, 'where': 1.0, 'level': 1.0}
Word element => {'soft': 1.0, 'so': 1.0, 'quickly': 1.0, 'shipped': 1.0, 'loved': 1.0, 'this': 2.0, 'love': 1.0, 'it': 3.0, 'great': 1.0, 'my': 1.0, 'and': 2.0, 'is': 2.0, 'for': 1.0, 'first': 1.0, 'was': 1.0, 'grandaughter': 1.0, 'we': 1.0, 'just': 1.0}
Word element => {'who': 1.0, 'soundly': 1.0, 'in': 1.0, 'be': 2.0, 'expecting': 1.0, 'so': 2.0, 'it': 2.0, 'with': 1.0, 'baby': 4.0, 'and': 4.0, 'do': 1.0, 'has': 1.0, 'vibrator': 1.0, 'i': 2.0, 'dau': 1.0, 'bought': 1.0, 'one': 2.0, 'for': 2.0, 'comfortable': 1.0, 'let': 1.0, 'yet': 1.0, 'law': 1.0, 'daughter': 1.0, 'her': 1.0, 'new': 1.0, 'is': 3.0, 'till': 1.0, 'sleeps': 1.0, 'around': 1.0, '2014': 1.0, 'the': 3.0, 'my': 2.0, 'lightweight': 1.0, 'loves': 1.0, 'easy': 1.0, 'to': 1.0, 'move': 1.0, 'room': 1.0, 'you': 2.0, 'still': 1.0, 'not': 2.0, 'know': 2.0, 'how': 1.0, 'will': 2.0, 'can': 1.0, 'work': 1.0, 'due': 1.0, 'january': 1.0}
Word element => {'thing': 1.0, 'nudge': 1.0, 'by': 1.0, 'hard': 1.0, 'version': 1.0, 'vibrating': 1.0, 'so': 1.0, 'don': 2.0, 'up': 1.0, 'get': 1.0, 'easy': 1.0, 'folds': 1.0, 'also': 1.0, 'much': 1.0, 'pretty': 1.0, 'sometimes': 1.0, 'because': 2.0, 'having': 1.0, 'you': 1.0, 'miss': 1.0, 'easily': 1.0, 'when': 1.0, 'honestly': 1.0, 'crib': 1.0, 'rough': 1.0, 'transition': 1.0, 'hours': 1.0, 'mamaroo': 1.0, 'let': 2.0, 'at': 1.0, 'day': 2.0, 'sleep': 1.0, 'to': 2.0, 'as': 3.0, '24': 1.0, 'around': 1.0, 'is': 1.0, 'would': 1.0, 'him': 3.0, 'easier': 1.0, 'well': 1.0, 'can': 1.0, 'but': 2.0, 'prefers': 1.0, 'rocking': 1.0, 'vastly': 1.0, 'old': 1.0, 'floor': 1.0, 'six': 1.0, 'magic': 1.0, 'night': 2.0, 'week': 1.0, 'on': 1.0, 'put': 2.0, 't': 2.0, 's': 3.0, 'a': 6.0, 'we': 2.0, 'during': 1.0, 'have': 2.0, 'sleeper': 1.0, 'this': 4.0, 'he': 4.0, 'n': 3.0, 'it': 7.0, 'absurdly': 1.0, 'spend': 1.0, 'love': 1.0, 'expensive': 1.0, 'his': 1.0, 'play': 3.0, 'and': 3.0, 'll': 1.0, 'perfectly': 1.0, 'the': 6.0, 'my': 1.0, 'happy': 1.0, 'wiggling': 1.0, 'in': 6.0, 'rock': 4.0, 'if': 2.0, 'otherwise': 1.0, 'i': 5.0, 'lounging': 1.0, 'himself': 1.0, 'awake': 1.0, 'bassinet': 1.0, 'travel': 1.0, 'use': 1.0, 'hopes': 1.0, 'of': 1.0, 'naps': 1.0, 'making': 1.0}
Word element => {'were': 1.0, 'they': 1.0, 'when': 1.0, 'a': 3.0, 'at': 1.0, 'babies': 1.0, 'loves': 1.0, 'off': 1.0, 'bought': 1.0, 'result': 1.0, 'provides': 1.0, 'first': 1.0, 'children': 1.0, 'sleeping': 1.0, 'and': 1.0, 'do': 1.0, 'i': 4.0, 'have': 1.0, 'the': 2.0, 'my': 2.0, 'so': 2.0, 'sleep': 1.0, 'as': 1.0, 'to': 1.0, 'had': 1.0, 'newborn': 1.0, 'in': 1.0, 'incline': 1.0, 'baby': 2.0, 'noticed': 1.0, 'while': 1.0, 'decrease': 1.0, 'also': 1.0, 'spit': 1.0, 'up': 1.0, 'it': 2.0, 'she': 2.0, 'cozy': 1.0, 'more': 1.0, 'sleeps': 1.0, 'is': 1.0, 'around': 1.0, 'soundly': 1.0, 'allows': 1.0, 'this': 2.0, 'sleeper': 1.0, 'wish': 1.0, 'significant': 1.0, 'for': 1.0, 'cocoon': 1.0, 'other': 1.0}
Word element => {'recommend': 1.0, 'highly': 2.0, 'about': 1.0, 'enough': 1.0, 't': 1.0, 'husband': 1.0, 'weeks': 1.0, 'can': 1.0, 'but': 1.0, 'first': 1.0, 'n': 1.0, 'this': 1.0, 'else': 1.0, 'my': 1.0, 'almost': 1.0, 'loves': 3.0, 'i': 2.0, 'better': 2.0, 'slept': 1.0, 'her': 3.0, 'couch': 1.0, 'rock': 1.0, 'and': 2.0, 'play': 1.0, 'few': 1.0, 'baby': 1.0, 'it': 2.0, 'she': 2.0, 'for': 1.0, 'in': 3.0, 'than': 1.0, 'having': 1.0, 'were': 1.0, 'split': 1.0, 'anywhere': 1.0, 'shifts': 1.0, 'sleeping': 1.0, 'on': 1.0, 'allowed': 1.0, 'the': 1.0, 'say': 1.0, 'sleeps': 1.0, 'more': 1.0, 'while': 1.0, 'swing': 1.0, 'three': 1.0, 'has': 1.0, 'to': 2.0, 'sleep': 2.0, 'our': 1.0, 'all': 1.0, 'of': 1.0, 'us': 1.0, 'bedroom': 1.0}
Word element => {'just': 1.0, 'pleased': 1.0, 'are': 1.0, 'overall': 1.0, 'you': 1.0, 'under': 1.0, 'stored': 1.0, 'easily': 1.0, 'easy': 1.0, 'issue': 1.0, 'use': 1.0, 'into': 1.0, 'hasn': 1.0, 'try': 1.0, 'actual': 1.0, 'one': 1.0, 'since': 1.0, 'basis': 1.0, 'weekly': 1.0, 'taken': 1.0, 'done': 1.0, 'other': 1.0, 'wait': 1.0, 'read': 1.0, 'what': 1.0, 'from': 1.0, 'washable': 1.0, 'cushion': 1.0, 'obviously': 1.0, 'test': 1.0, 'weight': 1.0, 'haven': 1.0, 'be': 2.0, 'built': 1.0, 'used': 1.0, 'this': 4.0, 'switches': 1.0, 'both': 2.0, 'and': 10.0, 'box': 1.0, 'basket': 1.0, 'who': 1.0, 'main': 1.0, 'out': 4.0, 'sleeper': 1.0, 'newborn': 1.0, 'truly': 1.0, 'daughter': 2.0, 'chance': 1.0, 'incline': 1.0, 'structure': 1.0, 'for': 3.0, 'closet': 1.0, 'in': 8.0, 'entire': 1.0, 'may': 1.0, 'my': 2.0, 'cushy': 2.0, 'fact': 1.0, 'due': 1.0, 'had': 1.0, 'now': 1.0, 'frame': 1.0, 'to': 9.0, 'sleep': 1.0, 'fold': 1.0, 'love': 1.0, 'march': 2.0, 'a': 11.0, 's': 1.0, 'soft': 1.0, 'without': 1.0, 'ordered': 1.0, 'gift': 1.0, 'is': 5.0, 'around': 1.0, 'it': 7.0, 'been': 1.0, 'rock': 2.0, 'comment': 1.0, 'easier': 1.0, 'fell': 1.0, 'touch': 1.0, 'putting': 1.0, 'well': 1.0, 'i': 7.0, 'with': 3.0, 'd': 1.0, 'n': 2.0, 'did': 1.0, 'reviews': 1.0, 'we': 4.0, 'take': 1.0, 'check': 1.0, 'runs': 1.0, 'immediately': 1.0, 'the': 17.0, 'of': 4.0, 'vibrating': 1.0, 'so': 2.0, 'can': 3.0, 'definitely': 1.0, 'how': 1.0, 'washing': 1.0, 'would': 1.0, 'but': 1.0, 'lull': 1.0, 'prevent': 1.0, 'being': 1.0, 'baby': 2.0, 'them': 2.0, 'than': 1.0, 'play': 2.0, 'driving': 1.0, 'lolthe': 1.0, 'car': 2.0, 'need': 1.0, 'feature': 2.0, 'or': 3.0, 'on': 5.0, 'fashion': 1.0, 'machine': 1.0, 'like': 2.0, 'vibration': 1.0, 'put': 1.0, 'do': 2.0, 'bed': 2.0, 'head': 1.0, 't': 3.0, 'rest': 1.0, 'will': 1.0, 'secure': 1.0, 'mold': 2.0, 'cocoon': 1.0, 'provides': 1.0, 'top': 1.0, 'danger': 1.0, 'until': 1.0, 'see': 1.0, 'off': 1.0, 'really': 1.0, 'battery': 1.0}
Word element => {'out': 1.0, 'doesnt': 1.0, 'plus': 1.0, 'daytime': 1.0, 'travel': 1.0, 'for': 1.0, 'use': 1.0, 'still': 1.0, 'naps': 1.0, 'but': 1.0, 'sleeps': 1.0, 'she': 1.0, 'baby': 1.0, 'this': 2.0, 'a': 2.0, 'saver': 1.0, 'like': 1.0, 'vibration': 1.0, 'and': 2.0, 'my': 1.0, 'that': 1.0, 'graduated': 1.0, 'hammock': 1.0, 'fro': 1.0, 'holds': 1.0, 'life': 1.0, 'the': 2.0, 'great': 1.0, 'crib': 1.0, 'we': 1.0, 'in': 1.0, 've': 1.0, 'night': 1.0, 'to': 1.0, 'time': 2.0}
Word element => {'baby': 1.0, 'expecting': 1.0, 'who': 1.0, 'would': 1.0, 'i': 1.0, 'anyone': 1.0, 'in': 1.0, 'or': 1.0, 'sleep': 1.0, 'loves': 1.0, 'recommend': 1.0, 'she': 1.0, 'to': 3.0, 'room': 2.0, 'move': 1.0, 'and': 2.0, 'little': 1.0, 'been': 1.0, 'gift': 2.0, 'new': 1.0, 'enough': 1.0, 'a': 3.0, 'have': 1.0, 'got': 1.0, 'we': 3.0, 'this': 1.0, 'it': 5.0, 'looking': 1.0, 'item': 1.0, 'can': 1.0, 'is': 3.0, 'the': 1.0, 'from': 1.0, 'as': 1.0, 'best': 1.0, 'one': 1.0, 'for': 2.0, 'given': 1.0, 'our': 1.0, 'that': 1.0, 'light': 1.0}
Word element => {'home': 1.0, 'her': 1.0, 'trips': 1.0, 'on': 1.0, 'to': 1.0, 'up': 1.0, 'folds': 1.0, '2': 1.0, 'nicely': 1.0, 'and': 1.0, 'since': 1.0, 'this': 1.0, 'it': 2.0, 'love': 1.0, 'month': 1.0, 'take': 1.0, 'we': 2.0, 'our': 1.0, 'brought': 1.0, 'sleeps': 1.0, 'every': 1.0, 'in': 1.0, 'old': 1.0, 'night': 1.0, 'has': 1.0}
Word element => {'on': 1.0, 'mama': 1.0, 'only': 1.0, 'this': 2.0, 'his': 1.0, 'etc': 1.0, 'other': 1.0, 'we': 1.0, 'get': 1.0, 'bassinet': 1.0, 'is': 1.0, 'the': 2.0, 'my': 1.0, 'have': 1.0, 'thing': 1.0, 'tried': 1.0, 'i': 1.0, 'love': 1.0, 'bed': 1.0, 'one': 1.0, 'can': 1.0, 'swing': 1.0, 'little': 1.0, 'to': 1.0, 'sleep': 1.0, 'than': 1.0, 'in': 1.0}
Word element => {'without': 1.0, 'have': 1.0, 'never': 1.0, 'will': 1.0, 'i': 1.0, 'playing': 1.0, 'another': 1.0, 'baby': 1.0, 'gear': 1.0, 'sleeping': 1.0, 'most': 1.0, 'one': 1.0, 'for': 1.0, 'my': 3.0, 'the': 1.0, 'is': 3.0, 'favorite': 1.0, 'far': 1.0, 'newborn': 1.0, 'in': 3.0, 'perfect': 1.0, 'product': 1.0, 'it': 3.0, 'this': 1.0, 'or': 1.0, 'loves': 1.0, 'recline': 1.0, 'and': 2.0, 'home': 1.0, 'she': 1.0, 'snuggly': 1.0, 'by': 1.0, 'sweet': 1.0, 'girl': 1.0}
Word element => {'out': 1.0, 'turns': 1.0, 'like': 1.0, 'would': 1.0, 'well': 1.0, 'how': 1.0, 'baby': 1.0, 'none': 1.0, 'had': 1.0, 'he': 1.0, 'of': 2.0, 'us': 1.0, 'heard': 1.0, 'loves': 1.0, 'this': 1.0, 'item': 1.0, 'before': 1.0, 'so': 1.0, 'it': 2.0, 'were': 1.0, 'unsure': 1.0}
Word element => {'during': 1.0, 'care': 1.0, 'items': 1.0, 'only': 1.0, 'period': 1.0, 'any': 1.0, 'house': 1.0, 's': 1.0, 'different': 1.0, 'be': 2.0, 'expect': 1.0, 'nicely': 1.0, 'baby': 1.0, 'folds': 1.0, 'us': 1.0, 'also': 1.0, 'safe': 1.0, 'washable': 1.0, 'machine': 1.0, 'for': 3.0, 'fabric': 1.0, 'all': 1.0, 'nap': 1.0, 'after': 1.0, 'out': 1.0, 'if': 1.0, 'still': 1.0, 'in': 2.0, 'down': 2.0, 'alright': 1.0, 'when': 3.0, 'cell': 1.0, 'with': 2.0, 'downstairs': 1.0, 'as': 3.0, 'sleep': 1.0, 'bassinet': 1.0, 'to': 10.0, 'our': 1.0, 'person': 1.0, 'of': 2.0, 'the': 6.0, 'awake': 1.0, 'easily': 2.0, 'that': 2.0, 'next': 1.0, 'has': 1.0, 'likes': 1.0, 'asleep': 1.0, 'good': 2.0, 'able': 1.0, 'induce': 1.0, 'dryer': 1.0, 'have': 3.0, 'week': 1.0, 'pick': 1.0, 'turning': 1.0, 'wonderfully': 1.0, 'five': 1.0, 'set': 1.0, '6': 1.0, 'addition': 1.0, 'a': 11.0, 'wonderful': 1.0, 'old': 1.0, 'soothes': 1.0, 'i': 1.0, 'one': 3.0, 'bought': 1.0, 'and': 10.0, 'wife': 1.0, 'while': 2.0, 'hard': 1.0, 'my': 1.0, 'him': 6.0, 'it': 9.0, 'are': 3.0, 'first': 2.0, 'few': 1.0, 'this': 4.0, 'works': 1.0, 'soft': 1.0, 'go': 1.0, 'purchases': 1.0, 'his': 1.0, 'removable': 1.0, 'enough': 1.0, 'off': 1.0, 'been': 1.0, 'rock': 2.0, 'appears': 1.0, 'whether': 1.0, 'second': 1.0, 'bed': 1.0, 'live': 1.0, 'where': 1.0, 'sleeping': 1.0, 'travel': 1.0, 'will': 2.0, 'some': 1.0, 'keep': 1.0, 'since': 1.0, 'is': 3.0, 'at': 1.0, 'nice': 1.0, 'sometimes': 1.0, 'help': 1.0, 'weeks': 1.0, 'would': 2.0, 'not': 3.0, 'however': 1.0, 'time': 1.0, 'model': 1.0, 'surface': 2.0, 'day': 1.0, 'feature': 1.0, 'or': 1.0, 'he': 3.0, 'yet': 1.0, 'vibration': 1.0, 'single': 1.0, 'very': 2.0, 'otherwise': 1.0, 'motions': 1.0, 'd': 1.0, 'battery': 1.0, 'on': 3.0, 'long': 1.0, 'depends': 1.0, 'life': 1.0, 'surfaces': 1.0, 'replace': 1.0, 'had': 2.0, 'birth': 1.0, 'we': 9.0, 'take': 2.0}
Word element => {'problem': 1.0, 'be': 1.0, 'foresee': 1.0, 'don': 1.0, 'very': 1.0, 'my': 1.0, 'condensation': 1.0, 'me': 1.0, 'not': 2.0, 'storage': 1.0, 'issues': 1.0, 'transport': 1.0, 'have': 1.0, 'flat': 1.0, 'but': 1.0, '2': 1.0, 'than': 1.0, 'in': 2.0, 'collapses': 1.0, 'reclined': 1.0, 'cuddles': 1.0, 'there': 1.0, 'laundering': 1.0, 'of': 1.0, 'humid': 1.0, 'position': 1.0, 'held': 2.0, 'motion': 1.0, 'price': 1.0, 'about': 1.0, 'baby': 1.0, 'the': 7.0, 'are': 2.0, 'many': 1.0, 'features': 1.0, 'is': 3.0, 'padding': 1.0, 'i': 5.0, 'sleeper': 1.0, 'this': 2.0, 'so': 1.0, 'noticed': 1.0, 'soothes': 1.0, 'ride': 1.0, 'tubing': 1.0, 'they': 2.0, 'securely': 1.0, 'great': 1.0, 'feel': 1.0, 'home': 1.0, 'seconds': 1.0, 'less': 1.0, 'smooth': 1.0, 'like': 3.0, 'vibration': 1.0, 'and': 4.0, 'being': 2.0, 'if': 1.0, 'same': 1.0, 't': 1.0, 'a': 2.0, 'car': 1.0, 'that': 4.0, 'rocking': 1.0, 'mimics': 1.0, 'also': 1.0, 'folds': 1.0, 'fisher': 1.0, 'easy': 2.0, 'any': 1.0, 'sleep': 1.0, 'seat': 1.0, 'as': 2.0, 'to': 2.0, 'it': 1.0, 'remove': 1.0, 'for': 3.0}
Word element => {'squeaky': 1.0, 'very': 1.0, 'got': 1.0, 'con': 1.0, 'a': 1.0, 's': 1.0, 'unisex': 1.0, 'in': 1.0, 'that': 2.0, 'buy': 1.0, 'i': 1.0, 'reflux': 1.0, 'clean': 1.0, 'soft': 1.0, 'assemble': 1.0, 'amazing': 1.0, 'babies': 1.0, 'fabric': 1.0, 'comes': 1.0, 'to': 2.0, 'easy': 1.0, 'transported': 1.0, 'is': 5.0, 'be': 1.0, 'rock': 1.0, 'play': 1.0, 'and': 5.0, 'function': 1.0, 'folds': 1.0, 'up': 1.0, 'only': 1.0, 'with': 1.0, 'it': 2.0, 'this': 1.0, 'n': 1.0, 'for': 3.0, 'vibrate': 1.0, 'price': 1.0, 'colors': 1.0, 'storage': 1.0, 'like': 1.0, 'easily': 1.0, 'great': 2.0, 'the': 4.0, 'nice': 1.0}
Word element => {'parents': 1.0, 'deprived': 1.0, 'for': 1.0, 'penny': 1.0, 'worth': 1.0, 'ones': 1.0, 'lulling': 1.0, 'useful': 1.0, 'lying': 1.0, 'has': 1.0, 'little': 1.0, 'very': 1.0, 'and': 2.0, 'sleeping': 1.0, 'like': 1.0, 'while': 1.0, 'didn': 1.0, 'easy': 1.0, 'because': 1.0, 'about': 2.0, 'old': 1.0, 'night': 1.0, 'took': 1.0, 'purchased': 1.0, 'every': 2.0, 'loves': 1.0, 't': 1.0, 'the': 1.0, 'this': 2.0, 'she': 2.0, 'it': 2.0, 'with': 1.0, 'when': 1.0, 'sleep': 2.0, 'to': 2.0, 'vibrating': 1.0, 'weeks': 1.0, 'since': 1.0, 'option': 1.0, 'flat': 1.0, 'in': 2.0, 'my': 1.0, 'put': 1.0, '3': 1.0, 'portable': 1.0, 'slept': 1.0, 'arrived': 1.0, 'daughter': 1.0, 'together': 1.0, '20': 1.0, 'was': 1.0, 'minutes': 1.0, 'i': 1.0, 'two': 1.0, 'adults': 1.0, 'plus': 1.0, 'is': 1.0}
Word element => {'sorry': 1.0, 'their': 1.0, 'difficulty': 1.0, 'having': 1.0, '2': 1.0, 'past': 1.0, 'urge': 1.0, 'using': 1.0, 'old': 1.0, '3': 1.0, 'up': 1.0, 'fold': 1.0, 'room': 2.0, 'together': 1.0, 'easy': 1.0, 'extremely': 1.0, 'or': 1.0, 'feature': 1.0, 'be': 2.0, 'incline': 1.0, 'put': 2.0, 'on': 2.0, 'give': 1.0, 'soon': 1.0, 'play': 1.0, 'as': 2.0, 'to': 6.0, 'has': 1.0, 'always': 1.0, 'car': 1.0, 'couch': 1.0, 'swing': 1.0, 'throw': 1.0, 'decision': 1.0, 'tried': 1.0, 'i': 8.0, 'pack': 1.0, 'from': 1.0, 'bassinette': 1.0, 'born': 1.0, 'it': 8.0, 'weeks': 1.0, 'would': 2.0, 'besides': 1.0, 'same': 1.0, 'super': 2.0, 'portable': 1.0, 'wanted': 1.0, 'going': 1.0, 'done': 1.0, 'was': 4.0, 'just': 2.0, 'not': 5.0, 'n': 2.0, 'daughter': 2.0, 'seat': 1.0, 'in': 2.0, 'her': 4.0, 'recently': 1.0, 'hours': 2.0, 'slight': 1.0, 'a': 3.0, 'will': 1.0, 'could': 1.0, 'since': 1.0, 'my': 3.0, 'of': 2.0, 'the': 12.0, 'reflux': 1.0, 'cradled': 1.0, 'anyone': 1.0, 'and': 10.0, 'arms': 1.0, 'best': 1.0, 'turned': 1.0, 'down': 1.0, 'with': 2.0, 'try': 2.0, 'held': 1.0, 'very': 3.0, 'nice': 1.0, 'little': 1.0, 'months': 1.0, 'get': 1.0, 'bouncy': 1.0, 'cradle': 1.0, 'naps': 1.0, 'around': 1.0, 'bjorn': 1.0, 'sleeps': 1.0, 'at': 2.0, 'is': 5.0, 'house': 1.0, 'had': 1.0, 'strapped': 1.0, 'into': 1.0, 'easily': 1.0, 'that': 1.0, 'she': 5.0, 'baby': 2.0, 'you': 2.0, 'loud': 1.0, 'night': 1.0, 'have': 1.0, 'flat': 1.0, 'unless': 1.0, 'after': 1.0, 'reading': 1.0, 'reviews': 1.0, 'this': 2.0, 'sleeper': 1.0, 'anything': 1.0, 'soft': 1.0, 'been': 1.0, 'diagnosed': 1.0, 'rock': 1.0, 'move': 1.0, 'decided': 1.0, 'made': 1.0, 'almost': 1.0, 'now': 1.0, 'getting': 1.0, 'vibrating': 1.0, '6': 1.0, 'cry': 1.0, 'for': 2.0, 'anywhere': 1.0, 'part': 1.0, 'during': 1.0, 'day': 1.0, 'material': 1.0, 'can': 1.0, 'so': 2.0, 'sleep': 3.0, 'back': 1.0}
Word element => {'cozy': 1.0, 'very': 1.0, 'had': 1.0, 'who': 1.0, 'baby': 1.0, 'helped': 1.0, 'our': 1.0, 'that': 1.0, 'than': 1.0, 'reflux': 1.0, 'clean': 1.0, 'replaced': 1.0, 'really': 1.0, 'is': 1.0, 'piece': 1.0, 'head': 1.0, 'sleeper': 1.0, 'and': 2.0, 'issue': 1.0, 'can': 1.0, 'one': 1.0, 'loved': 1.0, 'velcro': 1.0, 'with': 1.0, 'it': 4.0, 'this': 1.0, 'only': 1.0, 'the': 1.0, 't': 1.0, 'sewn': 1.0, 'down': 1.0, 'small': 1.0, 'so': 1.0, 'also': 1.0, 'wash': 2.0, 's': 1.0, 'reattach': 1.0, 'you': 1.0, 'other': 1.0, 'we': 1.0, 'just': 1.0, 'cut': 1.0, 'acid': 1.0, 'off': 1.0}
Word element => {'saved': 1.0, 'of': 1.0, 'out': 1.0, 'soon': 1.0, 'earlier': 1.0, 'd': 1.0, 'to': 1.0, 'wish': 1.0, 'but': 1.0, 'will': 1.0, 'naps': 2.0, 'his': 2.0, 'for': 1.0, 'ordered': 1.0, 'held': 1.0, 'being': 1.0, 'i': 4.0, 'god': 1.0, 'startles': 1.0, 'when': 1.0, 'sing': 1.0, 'grown': 1.0, 't': 1.0, 'all': 1.0, 'have': 1.0, 'enough': 1.0, 'feel': 1.0, 'can': 1.0, 'him': 1.0, 's': 3.0, 'be': 1.0, 'product': 1.0, 'praises': 1.0, 'a': 2.0, 'baby': 1.0, 'sleeps': 1.0, 'that': 1.0, 'lot': 1.0, 'makes': 1.0, 'this': 2.0, 'it': 4.0, 'he': 3.0, 'like': 1.0}
Word element => {'seat': 1.0, 'position': 1.0, 'multi': 1.0, 'use': 1.0, 'could': 1.0, 'vibrate': 1.0, 'when': 1.0, 'loud': 1.0, 'its': 1.0, 'on': 1.0, 'is': 1.0, 'love': 1.0, 'it': 1.0, 'lite': 1.0, 'that': 1.0, 'weight': 1.0, 'quite': 1.0, 'and': 2.0, 'compact': 1.0, 'are': 1.0, 'falls': 1.0, 'a': 1.0, 'down': 1.0}
Word element => {'the': 1.0, 'each': 1.0, 'deep': 1.0, 'so': 1.0, 's': 1.0, 'house': 1.0, 'naps': 1.0, 'wonderfully': 1.0, 'sleeps': 1.0, 'getting': 1.0, 'and': 1.0, 'very': 1.0, 'of': 1.0, 'up': 1.0, 'level': 1.0, 'in': 2.0, 'newborn': 1.0, 'i': 1.0, 'for': 1.0, 'one': 1.0, 'feel': 1.0, 'this': 1.0, 'it': 2.0, 'with': 1.0, 'her': 1.0, 'zended': 1.0, 'safe': 1.0, 'two': 1.0}
Word element => {'used': 1.0, 'never': 1.0, 'have': 1.0, 'thing': 1.0, 'plastic': 1.0, 'really': 1.0, 'is': 2.0, 'padding': 2.0, 'under': 2.0, 'place': 1.0, 'we': 2.0, 'also': 1.0, 'in': 1.0, 'more': 1.0, 'the': 3.0, 'through': 1.0, 'much': 1.0, 'reflux': 1.0, 'has': 2.0, 'vibrating': 1.0, 'and': 2.0, 'huge': 1.0, 'sleeper': 2.0, 'little': 2.0, 'been': 1.0, 'by': 1.0, 'our': 1.0, 'did': 1.0, 'pretty': 2.0, 'hard': 2.0, 'it': 3.0, 'he': 1.0, 'this': 3.0, 'one': 1.0, 'love': 1.0, 'since': 1.0, 'a': 2.0, 'help': 1.0, 'two': 1.0, 'months': 1.0, 'night': 1.0, 'i': 1.0, 'old': 1.0, 'was': 1.0, 'acid': 1.0, 'sleep': 1.0}
Word element => {'boppy': 1.0, 'use': 1.0, 'head': 2.0, 'flat': 1.0, 'for': 1.0, 'who': 1.0, 'far': 1.0, 'been': 1.0, 'has': 1.0, 'camping': 1.0, 'including': 1.0, 'support': 1.0, 'everywhere': 1.0, 'so': 1.0, 'after': 1.0, 'until': 1.0, 'best': 1.0, 'son': 1.0, 'those': 1.0, 'play': 2.0, 'i': 4.0, 'the': 4.0, 'my': 1.0, 'not': 1.0, 'know': 1.0, 'since': 1.0, 'did': 1.0, 'baby': 1.0, 'about': 1.0, 'causes': 1.0, 'have': 1.0, 'born': 1.0, 'say': 1.0, 'wish': 1.0, 'was': 1.0, 'had': 1.0, 'taken': 1.0, 'n': 2.0, 'it': 3.0, 'his': 1.0, 'product': 1.0, 'rock': 2.0, 'bought': 1.0, 'birth': 1.0}
Word element => {'keeping': 1.0, 'send': 1.0, 'boxing': 1.0, 'whole': 1.0, 'taking': 1.0, 'myself': 1.0, 'don': 1.0, 'product': 1.0, 'faulty': 1.0, 'received': 1.0, 'overall': 1.0, 'up': 2.0, 'bed': 1.0, 'room': 1.0, 'okay': 1.0, 'sleeper': 1.0, 'like': 1.0, 'reason': 1.0, 'only': 1.0, 'one': 1.0, 'over': 1.0, 'prefer': 1.0, 'just': 1.0, 'seats': 1.0, 'vibrating': 1.0, 'different': 1.0, 'have': 1.0, 'yourself': 1.0, 'floor': 1.0, 'do': 1.0, 'and': 3.0, 'insane': 1.0, 'drives': 1.0, 'has': 1.0, 'next': 2.0, 'them': 1.0, 'baby': 2.0, 'actuality': 1.0, 'overnight': 1.0, 'tighten': 1.0, 'there': 1.0, 'mean': 1.0, 'but': 3.0, 'thing': 1.0, '2': 1.0, 'advertised': 1.0, 'are': 1.0, 'having': 2.0, 'rattling': 1.0, 'a': 6.0, 't': 2.0, 'maybe': 1.0, 's': 4.0, 'reviews': 1.0, 'we': 5.0, 'go': 1.0, 'on': 3.0, 'sits': 1.0, 'at': 1.0, 'is': 4.0, 'about': 2.0, 'no': 1.0, 'item': 1.0, 'will': 1.0, 'night': 1.0, 'push': 3.0, 'you': 2.0, 'loud': 2.0, 'complaints': 1.0, 'i': 6.0, 'bother': 1.0, 'make': 1.0, 'sound': 1.0, 'buzzing': 1.0, 'my': 2.0, 'me': 1.0, 'not': 1.0, 'since': 1.0, '1': 1.0, 'doesn': 1.0, 'setting': 1.0, 'marketed': 1.0, 'took': 1.0, 'rock': 2.0, 'to': 11.0, 'in': 4.0, 'seat': 2.0, 'back': 2.0, 'sleep': 1.0, 'as': 2.0, 'because': 1.0, 'that': 4.0, 'few': 1.0, 'this': 4.0, 'rocking': 3.0, 'seem': 1.0, 'apart': 1.0, 'way': 1.0, 'when': 2.0, 'sit': 1.0, 'legs': 1.0, 'especially': 1.0, 're': 2.0, 'her': 1.0, 'use': 1.0, 'model': 1.0, 'time': 2.0, 'so': 4.0, 'trying': 1.0, 'be': 1.0, '34': 4.0, 'action': 1.0, 'collapse': 1.0, 'gentle': 1.0, 'vibrate': 1.0, 'with': 1.0, 'from': 1.0, 'while': 1.0, 'loose': 1.0, 'gave': 1.0, 'period': 1.0, 'feel': 1.0, 'any': 1.0, 'mom': 1.0, 'good': 1.0, 'which': 1.0, 'would': 1.0, 'see': 1.0, 'off': 1.0, 'own': 2.0, 'an': 1.0, 'for': 3.0, 'two': 1.0, 'little': 1.0, 'after': 1.0, 'initial': 1.0, 'it': 15.0, 'starting': 1.0, 'continue': 1.0, 'its': 1.0, 'the': 11.0, 'of': 1.0, 'buttons': 2.0, 'if': 1.0, 'want': 1.0, 'ready': 1.0}
Word element => {'early': 1.0, 'had': 1.0, 'just': 1.0, '8': 1.0, 'born': 1.0, 'good': 1.0, 'or': 1.0, 'mine': 1.0, 'for': 1.0, 'it': 3.0, 'with': 1.0, 'slept': 1.0, 'to': 3.0, 'was': 2.0, 'us': 1.0, 'when': 1.0, 'loan': 1.0, 'grandson': 2.0, '2012': 1.0, 'my': 3.0, 'about': 1.0, 'in': 3.0, 'hers': 1.0, 'going': 1.0, 'a': 1.0, 'friend': 1.0, 'truck': 1.0, 'grandbaby': 1.0, 'of': 1.0, 'fold': 1.0, 'months': 1.0, 'over': 1.0, 'is': 1.0, 'second': 1.0, 'until': 1.0, 'comfortable': 1.0, 'great': 1.0, 'the': 2.0, 'night': 1.0, 'i': 1.0, 'trips': 1.0, 'he': 1.0, 'vacation': 1.0, 'get': 1.0, 'easy': 1.0, 'and': 1.0, 'on': 2.0, 'put': 1.0, 'car': 1.0, 'so': 1.0, 'way': 1.0}
Word element => {'degree': 1.0, 'prevent': 1.0, 'becomes': 1.0, 'catch': 2.0, 'her': 1.0, 'watch': 1.0, 'feasible': 1.0, 'soon': 1.0, 'surface': 1.0, 'you': 5.0, 'future': 1.0, 'conscious': 1.0, 'days': 1.0, 'newborn': 1.0, 'weary': 1.0, 'getting': 1.0, 'blown': 1.0, 'downward': 1.0, 'heavy': 1.0, 'itself': 1.0, 'corrects': 1.0, 'sense': 1.0, 'most': 2.0, 'made': 1.0, 'fact': 1.0, 'contrary': 1.0, 'quite': 1.0, 'boys': 1.0, 'neither': 1.0, 'heredity': 1.0, 'or': 2.0, 'related': 1.0, 'than': 1.0, 'fewer': 1.0, 'hard': 1.0, 'area': 1.0, 'use': 2.0, 'especially': 1.0, 'under': 1.0, 'suggesting': 1.0, 'overly': 1.0, 'number': 1.0, 'permanent': 1.0, 'sooner': 1.0, 'caught': 1.0, 'further': 2.0, 'back': 1.0, 'stretches': 1.0, 'fyi': 1.0, 'bassinet': 1.0, 'gone': 1.0, 'children': 1.0, 'startle': 1.0, 'damage': 1.0, 'want': 1.0, 'once': 1.0, 'difficult': 1.0, 'transition': 1.0, 'develop': 1.0, 'time': 1.0, 'began': 1.0, 'immediately': 1.0, 'same': 1.0, 'product': 1.0, 'exhibiting': 1.0, 'apparent': 1.0, 'became': 1.0, 'until': 2.0, 'weeks': 1.0, 'believe': 1.0, 'several': 1.0, 'progressed': 1.0, '5': 1.0, 'one': 2.0, 'stopped': 1.0, 'up': 2.0, 'symptoms': 1.0, 'side': 1.0, 'are': 2.0, 'my': 4.0, 'there': 1.0, 'rave': 1.0, 'naps': 1.0, 'highly': 1.0, 'given': 2.0, 'five': 1.0, 'anything': 2.0, 'circumstances': 1.0, 'about': 3.0, 'signs': 1.0, 'play': 2.0, 'slight': 1.0, 'neck': 1.0, 'going': 1.0, 'recommend': 2.0, 'motion': 1.0, 'night': 1.0, 'myself': 1.0, 'brother': 1.0, 'things': 3.0, 'will': 1.0, 'secure': 1.0, 'directions': 2.0, 'more': 2.0, 'wouldn': 1.0, 'dee': 1.0, 'quickly': 1.0, 'feel': 1.0, 'over': 1.0, 'wake': 1.0, 'sleeping': 4.0, 'developing': 1.0, 'so': 7.0, 'hugs': 1.0, 'preferred': 1.0, 'away': 1.0, 'incline': 2.0, 'reflex': 1.0, 'never': 1.0, 'take': 1.0, 'reviews': 1.0, 'then': 1.0, 'any': 3.0, 'pretty': 4.0, 'right': 3.0, 'to': 18.0, 'baby': 5.0, 'me': 2.0, 'determined': 1.0, 'barely': 1.0, 'eased': 1.0, 'may': 1.0, 'facing': 1.0, 'from': 3.0, 'strains': 1.0, 'doctor': 1.0, 'negative': 1.0, 'stretch': 1.0, 'love': 2.0, 'yet': 1.0, 'us': 1.0, 'also': 2.0, 'received': 1.0, 'was': 11.0, 'those': 1.0, 'already': 1.0, 'treat': 1.0, 'exacerbated': 1.0, 'an': 2.0, 'way': 1.0, 'all': 5.0, 'at': 6.0, 's': 1.0, 'doesn': 1.0, 'm': 1.0, 'snug': 1.0, 'notice': 1.0, 'experienced': 1.0, 'as': 8.0, 'great': 1.0, 'if': 5.0, 'reviewer': 1.0, 'don': 1.0, 'still': 1.0, 'in': 12.0, 'might': 2.0, 'consistently': 1.0, 'just': 4.0, 'and': 22.0, 'using': 1.0, 'direction': 4.0, 'with': 9.0, 'heads': 2.0, 'helps': 1.0, 'results': 1.0, 'write': 1.0, 'but': 8.0, 'pains': 1.0, 'please': 1.0, 'really': 1.0, 'progress': 1.0, 'of': 9.0, 'slow': 1.0, 'well': 2.0, 'first': 5.0, 'n': 2.0, 'switch': 1.0, 'd': 1.0, 'give': 2.0, 'much': 4.0, 'review': 5.0, 'flat': 5.0, 't': 10.0, 'a': 18.0, 'worried': 1.0, 'confident': 1.0, 'siblings': 1.0, 'shape': 1.0, '2010': 1.0, 'purchased': 1.0, 'sleep': 6.0, 'condition': 1.0, 'our': 4.0, 'traumatic': 1.0, 'item': 1.0, 'rocking': 2.0, 'flattening': 1.0, 'this': 8.0, 'babies': 5.0, 'that': 12.0, 'gravity': 1.0, 'into': 1.0, 'through': 3.0, 'rock': 2.0, 'hadn': 1.0, 'diagnosed': 1.0, 'went': 2.0, 'been': 3.0, 'the': 24.0, 'experience': 2.0, 'worry': 1.0, 'after': 2.0, 'lifesaver': 1.0, 'stressful': 1.0, 'sleeper': 6.0, 'when': 2.0, 'severe': 2.0, 'left': 1.0, 'while': 2.0, 've': 3.0, 'found': 1.0, 'have': 10.0, 'full': 2.0, 'were': 2.0, 'for': 8.0, 'stars': 1.0, 'large': 1.0, 'feeling': 1.0, 'very': 2.0, 'find': 2.0, 'early': 2.0, 'since': 2.0, 'positive': 1.0, 'happy': 1.0, 'too': 1.0, 'usually': 1.0, 'refreshed': 1.0, 'used': 2.0, 'which': 1.0, 'again': 1.0, 'second': 1.0, 'comes': 1.0, 'seemed': 3.0, 'it': 32.0, 'fully': 1.0, 'be': 2.0, 'had': 5.0, 'before': 3.0, 'started': 1.0, 'couple': 1.0, 'often': 1.0, 'get': 2.0, 'noticed': 2.0, 'on': 5.0, 'birth': 2.0, 'fine': 2.0, 'wasn': 1.0, 'does': 1.0, 'longer': 1.0, 'looking': 4.0, 'easier': 1.0, 'son': 4.0, 'both': 2.0, 'information': 1.0, 'rare': 1.0, 'lot': 1.0, 'his': 4.0, 'treatments': 1.0, 'took': 1.0, 'torticollis': 4.0, 'anymore': 1.0, 'now': 2.0, 'done': 1.0, 'almost': 2.0, 'not': 2.0, 'noticeable': 1.0, 'therefore': 1.0, 'months': 1.0, 'read': 3.0, 'nothing': 1.0, 'head': 4.0, 'tort': 3.0, 'they': 3.0, 'let': 1.0, 'said': 1.0, 'some': 2.0, 'born': 4.0, 'muscles': 1.0, 'must': 1.0, 'didn': 2.0, 'zip': 2.0, 'i': 27.0, 'cause': 2.0, 'sooo': 1.0, 'another': 3.0, 'go': 1.0, 'out': 1.0, 'told': 1.0, 'good': 4.0, 'track': 2.0, 'do': 3.0, 'either': 1.0, 'watched': 1.0, 'would': 3.0, 'closely': 2.0, 'could': 1.0, 'beginning': 1.0, 'he': 12.0, 'him': 8.0, 'looked': 2.0, 'them': 1.0, 'spot': 2.0, 'everything': 1.0, 'we': 9.0, 'middle': 1.0, 'pulls': 1.0, 'predisposition': 2.0, 'changed': 1.0, 'turn': 1.0, 'can': 6.0, 'is': 4.0, 'slowly': 1.0, 'their': 2.0, 'radar': 1.0}
Word element => {'though': 2.0, 'would': 1.0, 'about': 1.0, 'are': 1.0, 'obsolete': 1.0, 'purchased': 1.0, 'kind': 1.0, 'not': 1.0, 'hall': 1.0, 'quickly': 1.0, 'bed': 1.0, 'probably': 1.0, 'your': 1.0, 'set': 1.0, 'into': 2.0, 'd': 1.0, 'vibration': 2.0, 'built': 1.0, 'be': 3.0, 'design': 2.0, 'simple': 1.0, '6': 1.0, 'don': 3.0, '5': 1.0, 'comfortable': 1.0, 'quite': 1.0, 'hot': 1.0, 'get': 2.0, 'doesn': 1.0, 'basically': 1.0, '4': 1.0, 'by': 1.0, 'fussy': 1.0, 'really': 2.0, 'there': 1.0, 'give': 1.0, 'models': 1.0, 'love': 2.0, 'bottom': 2.0, 'bar': 1.0, 'on': 1.0, 'foot': 1.0, 'else': 1.0, 'something': 1.0, 'free': 1.0, 'want': 2.0, 'more': 1.0, 'cleaned': 1.0, 'babies': 1.0, 'what': 2.0, 'good': 1.0, 'which': 1.0, 'just': 1.0, 'things': 1.0, 'able': 1.0, 'you': 3.0, '3': 1.0, 'contributor': 1.0, 'needed': 1.0, 'sleeper': 1.0, 'than': 2.0, 'how': 1.0, 'disappointed': 1.0, 'our': 4.0, 'sleep': 2.0, 'as': 1.0, 'gentle': 1.0, 'never': 1.0, 'pick': 1.0, 'earlier': 1.0, 'wish': 1.0, 'rocking': 2.0, 'this': 12.0, 'glad': 1.0, 'swing': 5.0, 'new': 1.0, 'time': 1.0, 'am': 1.0, 'product': 1.0, 'child': 1.0, 'major': 1.0, 'up': 3.0, 'spend': 1.0, 'reflux': 1.0, 'to': 9.0, 'pretty': 4.0, 'have': 6.0, 'nice': 3.0, 'little': 7.0, 'very': 4.0, 'crib': 2.0, 'costs': 1.0, 'compare': 1.0, 'off': 1.0, 'seems': 1.0, 'm': 2.0, 'in': 8.0, 'had': 4.0, 'for': 3.0, 'sound': 1.0, 'significant': 1.0, 'i': 7.0, 'equally': 1.0, 'bassinets': 1.0, 'feature': 1.0, 'or': 4.0, 'fourth': 1.0, 'typically': 2.0, 'got': 2.0, 'cloth': 2.0, 'personally': 1.0, 'even': 1.0, 'it': 15.0, 'my': 3.0, 't': 4.0, 'ago': 1.0, 'small': 1.0, 'a': 9.0, 's': 2.0, 'provide': 1.0, '1': 1.0, 'friend': 1.0, 'children': 2.0, 'all': 1.0, 'other': 3.0, 'while': 1.0, 'hard': 1.0, 'upright': 1.0, 'like': 1.0, 'of': 1.0, 'doing': 1.0, 'the': 12.0, 'device': 1.0, 'sleeping': 1.0, 'gotten': 1.0, 'and': 7.0, 'at': 1.0, 'is': 10.0, 'sleeps': 1.0, 'holds': 1.0, 'convenient': 1.0, 'with': 2.0, 'same': 1.0, 'hear': 1.0, 'often': 1.0, 'month': 1.0, 'super': 1.0, 'each': 1.0, 'bit': 2.0, 'easy': 1.0, 'every': 1.0, 'sideways': 1.0, 'if': 5.0, 'so': 3.0, 'lightweight': 1.0, 'can': 4.0, '2': 1.0, 'but': 3.0, 'use': 4.0, 'her': 10.0, 'different': 1.0, 'crying': 1.0, 'too': 1.0, 'one': 2.0, 'comes': 1.0, 'room': 1.0, 'moving': 1.0, 'we': 19.0, 'then': 1.0, 'used': 1.0, 'move': 3.0, 'that': 3.0, 'because': 5.0, 'easily': 5.0, 'result': 1.0, 'out': 1.0, 'throwing': 1.0, 'from': 1.0, 'acid': 1.0, 'next': 1.0, 'always': 1.0, 'them': 1.0, 'has': 2.0, 'rock': 1.0, 'been': 2.0, 'do': 1.0, 'put': 2.0, 'much': 2.0, 'think': 1.0, 'better': 1.0, 'folds': 1.0, 'she': 3.0, 'baby': 5.0, 'others': 1.0, 'makes': 2.0, 'did': 1.0}
Word element => {'rocker': 1.0, 'would': 1.0, 'too': 1.0, 'new': 1.0, 'enough': 1.0, 'beautiful': 1.0, 'for': 2.0, 'comfortable': 1.0, 'our': 1.0, 'and': 1.0, 'big': 1.0, 'very': 1.0, 'soft': 1.0, 'her': 1.0, 'better': 1.0, 'if': 1.0, 'granddaughter': 1.0, 'had': 1.0, 'to': 2.0, 'awhile': 1.0, 'be': 1.0, 'last': 1.0, 'nice': 1.0, 'it': 3.0, 'a': 1.0}
Word element => {'pretty': 1.0, 'kid': 1.0, 'puts': 1.0, 'with': 1.0, 'thing': 1.0, 'just': 1.0, 'setting': 1.0, 'which': 1.0, 'vibration': 1.0, 'found': 1.0, 'have': 1.0, 'of': 2.0, 'one': 1.0, 'for': 1.0, 'get': 1.0, 'were': 2.0, 'turning': 1.0, 'in': 1.0, 'else': 1.0, 'something': 1.0, 'would': 1.0, 'fussy': 1.0, 'and': 4.0, 'play': 1.0, 'swing': 1.0, 'rocking': 1.0, 'that': 1.0, 'been': 1.0, 'it': 6.0, 'not': 1.0, 'n': 1.0, 'him': 1.0, 'trying': 1.0, 'we': 6.0, 's': 1.0, 'looking': 1.0, 'child': 1.0, 'wherever': 1.0, 'sleep': 1.0, 'our': 4.0, 'to': 2.0, 'an': 1.0, 'can': 2.0, 'but': 2.0, 'foot': 1.0, 'house': 1.0, 'use': 1.0, 'automatic': 2.0, 'so': 1.0, 'friends': 1.0, 'then': 1.0, 'rock': 2.0, 'suggested': 1.0, 'the': 4.0, 'has': 2.0, 'amazing': 1.0, 'quickly': 1.0, 'incredibly': 1.0, 'on': 1.0, 'portable': 1.0, 'move': 1.0, 'are': 1.0, 'whereever': 1.0, 'course': 1.0, 'around': 1.0, 'is': 1.0}
Word element => {'recommend': 1.0, 'would': 1.0, 'travel': 1.0, 'so': 1.0, 'an': 1.0, 'can': 1.0, 'right': 1.0, 'absolutely': 1.0, 'still': 1.0, 'newborn': 1.0, 'take': 1.0, 'is': 2.0, 'everyone': 1.0, 'to': 1.0, 'now': 1.0, 'it': 2.0, 'this': 2.0, 'we': 2.0, 'lives': 1.0, 'when': 1.0, 'by': 1.0, 'handy': 1.0, 'little': 1.0, 'bed': 1.0, 'our': 2.0, 'that': 1.0, 'guy': 1.0, 'a': 1.0}
Word element => {'as': 1.0, 'buy': 1.0, 'acid': 1.0, 'reflux': 1.0, 'out': 1.0, 'when': 1.0, 'recline': 1.0, 'baby': 2.0, 'for': 1.0, 'and': 1.0, 'be': 1.0, 'item': 1.0, 'loved': 1.0, 'found': 2.0, 'we': 3.0, 'move': 1.0, 'this': 1.0, 'it': 4.0, 's': 1.0, 'perfect': 1.0, 'also': 1.0, 'so': 1.0, 'she': 2.0, 'easy': 1.0, 'essential': 1.0, 'around': 1.0, 'the': 2.0, 'gifts': 1.0, 'an': 1.0, 'house': 1.0, 'now': 1.0, 'had': 1.0, 'to': 2.0, 'was': 1.0}
Word element => {'to': 1.0, 'being': 1.0, 'older': 1.0, 'my': 1.0, 'are': 2.0, 'for': 1.0, 'flat': 1.0, 'in': 1.0, 'around': 1.0, 'weren': 1.0, 'settle': 1.0, 'amazing': 1.0, 'they': 1.0, 'the': 1.0, 't': 1.0, 'these': 1.0, 'rnp': 1.0, 'baby': 1.0, 'avoid': 1.0, 'will': 2.0, 'happily': 1.0, 'kids': 1.0, 'when': 1.0, 'head': 1.0, 'nothing': 1.0, 'do': 1.0, 'careful': 1.0, 'else': 1.0, 'we': 1.0}
Word element => {'hammock': 1.0, 'seat': 1.0, 'not': 1.0, 'every': 1.0, 'use': 1.0, 'spits': 1.0, 'needed': 1.0, 'she': 2.0, 'case': 1.0, 'again': 1.0, 'incline': 1.0, 'but': 1.0, 'an': 1.0, 'feeling': 1.0, 'mode': 1.0, 'up': 1.0, 'of': 2.0, 'bit': 2.0, 'next': 1.0, 'daughter': 1.0, 'at': 2.0, 'snug': 1.0, 'night': 1.0, 'this': 1.0, 'loves': 2.0, 'have': 1.0, 'as': 1.0, 'sleeping': 1.0, 'my': 1.0, 'we': 2.0, 'nurse': 1.0, 'often': 1.0, 'the': 3.0, 'great': 1.0, 'so': 1.0, 'now': 1.0, 'to': 2.0, 'its': 2.0, 'her': 1.0, 'close': 1.0, 'a': 2.0, 'vibration': 1.0, 'me': 1.0, 'and': 2.0, 'in': 2.0, 'also': 1.0}
Word element => {'best': 1.0, 'its': 1.0, 'nephew': 1.0, 'new': 1.0, 'i': 1.0, 'sleeper': 1.0, 'the': 1.0, 'my': 2.0, 'give': 1.0, 'loved': 1.0, 'this': 1.0, 'with': 1.0, 'son': 1.0, 'and': 1.0, 'cant': 1.0, 'it': 1.0, 'wait': 1.0, 'to': 2.0}
Word element => {'something': 1.0, 'toys': 1.0, 'bar': 1.0, 'came': 1.0, 'if': 1.0, 'across': 1.0, 'and': 1.0, 'sitting': 2.0, 'but': 1.0, 'activity': 1.0, 'people': 1.0, 'conversations': 1.0, '34': 2.0, 'd': 2.0, 'have': 3.0, 'flat': 1.0, 'couch': 1.0, 'since': 1.0, 'i': 3.0, 'slept': 1.0, 'also': 1.0, 'for': 1.0, 'reformed': 1.0, 'rattle': 1.0, 'a': 6.0, 'likes': 1.0, 't': 2.0, 'blissfully': 1.0, 'be': 2.0, 'now': 1.0, 'weeks': 1.0, 'pins': 1.0, 'all': 1.0, 'turned': 1.0, 'got': 1.0, 'wouldn': 1.0, 'panic': 1.0, 'with': 4.0, 'out': 1.0, 'newborn': 1.0, 'though': 1.0, 'during': 1.0, 'sit': 1.0, 'when': 3.0, 'you': 1.0, 'issue': 1.0, 'brief': 1.0, 'floor': 1.0, 'my': 1.0, 'company': 1.0, 'seat': 1.0, 'in': 4.0, 'it': 9.0, 'few': 1.0, 'this': 1.0, 'period': 1.0, 'from': 1.0, 'fix': 1.0, 'her': 2.0, 'months': 1.0, 'one': 1.0, 'taped': 1.0, 'classy': 1.0, 'on': 5.0, 'sleep': 1.0, 'back': 1.0, 'level': 1.0, 'little': 1.0, 'two': 1.0, 'nice': 1.0, 'easily': 1.0, 'that': 3.0, 'has': 1.0, 'puts': 1.0, 'she': 3.0, 'baby': 2.0, 'nearly': 1.0, 'up': 1.0, 'don': 1.0, 'eye': 1.0, 're': 1.0, 'or': 2.0, 'chair': 1.0, 's': 1.0, 'preferred': 1.0, 'better': 1.0, 'than': 1.0, 'bouncy': 1.0, 'the': 3.0, 'had': 2.0, 'hinge': 1.0, 'like': 1.0, 'vibration': 1.0, 'crazy': 1.0, 'was': 1.0, 'to': 6.0, 'fixed': 1.0, 'some': 2.0, 'tape': 1.0, 'not': 1.0, 'love': 1.0, 'accessories': 1.0, 'at': 3.0, 'is': 3.0, 'look': 1.0}
Word element => {'get': 1.0, 'parents': 1.0, 'nice': 1.0, 'vibrating': 1.0, 'stage': 1.0, '6': 1.0, 'slept': 1.0, 'if': 1.0, 'she': 2.0, 'it': 4.0, 'this': 2.0, 'done': 1.0, 'know': 2.0, 'must': 1.0, 'have': 1.0, 'without': 1.0, 'the': 3.0, 'new': 1.0, 'would': 1.0, 'was': 2.0, 'made': 1.0, 'what': 1.0, 'long': 1.0, 'her': 2.0, 'best': 1.0, 'don': 1.0, 'purchase': 1.0, 't': 1.0, 'we': 2.0, 'in': 2.0, 'newborn': 2.0, 'for': 3.0, 'months': 1.0, 'too': 2.0, 'gets': 1.0, 'feature': 1.0, 'i': 1.0, 'baby': 1.0, 'night': 2.0, 'but': 1.0, 'helped': 1.0, 'an': 1.0, 'sick': 1.0, 'all': 2.0, 'our': 1.0, 'sleep': 1.0, 'holds': 1.0, 'close': 1.0, 'at': 2.0, 'about': 1.0, 'no': 1.0, 'angle': 1.0, 'so': 1.0, 'worries': 1.0, 'choking': 1.0}
Word element => {'tipping': 1.0, 'over': 1.0, 'on': 1.0, 'as': 1.0, 'around': 1.0, 'other': 1.0, 'we': 1.0, 'are': 1.0, 'by': 1.0, 'go': 1.0, 'if': 1.0, 'watch': 1.0, 'without': 1.0, 'can': 2.0, 'so': 1.0, 'also': 1.0, 'pieces': 1.0, 'is': 1.0, 'awake': 1.0, 'they': 3.0, 'ever': 1.0, 'useful': 1.0, 'equipment': 1.0, 'one': 1.0, 'ones': 1.0, 'the': 3.0, 'it': 3.0, 'this': 1.0, 'have': 1.0, 'cradles': 1.0, 'baby': 1.0, 'little': 2.0, 'world': 1.0, 'them': 2.0, 'well': 1.0, 'since': 1.0, 'a': 1.0, 'most': 1.0, 'feel': 1.0, 'secure': 1.0, 'and': 1.0, 'props': 1.0, 'lean': 1.0, 'of': 2.0, 'up': 1.0, 'making': 1.0, 'just': 1.0}
Word element => {'would': 1.0, 'any': 1.0, 'due': 1.0, 'i': 3.0, 'saver': 1.0, 'a': 1.0, 'one': 2.0, 'for': 2.0, 'everyone': 1.0, 'to': 1.0, 'now': 1.0, 'had': 1.0, 'life': 1.0, 'of': 1.0, 'recommend': 1.0, 'girls': 1.0, 'is': 2.0, 'both': 1.0, 'little': 1.0, 'this': 3.0, 'my': 2.0, 'and': 1.0, 'rocker': 1.0, 'just': 1.0, 'friends': 1.0, 'bought': 1.0, 'day': 1.0, 'best': 1.0, 'who': 1.0, 's': 1.0, 'girl': 1.0}
Word element => {'parent': 1.0, 'would': 1.0, 'safe': 1.0, 'still': 1.0, 'very': 1.0, 'little': 1.0, 'have': 2.0, 'higher': 1.0, 'it': 3.0, 'used': 1.0, 'down': 1.0, 'and': 4.0, 'baby': 2.0, 'helps': 1.0, 'up': 1.0, 'don': 1.0, 'any': 1.0, 'all': 2.0, 'to': 3.0, 'had': 1.0, 'was': 1.0, 'got': 1.0, 'most': 1.0, 'the': 2.0, 'myself': 1.0, 'for': 2.0, 'one': 1.0, 'bouncers': 1.0, 'mine': 1.0, 't': 1.0, 'a': 3.0, 'friend': 1.0, 'of': 1.0, 'about': 1.0, 'rockers': 1.0, 'i': 2.0, 'bend': 1.0, 'who': 1.0, 'becuase': 2.0, 'time': 1.0, 'so': 2.0, 'handy': 1.0, 'that': 1.0, 'like': 1.0, 'reccomend': 1.0, 'holds': 1.0, 'is': 2.0, 'highly': 1.0, 'really': 1.0, 'light': 1.0, 'travels': 1.0, 'weight': 1.0, 'also': 1.0, 'on': 1.0, 'this': 1.0, 'pain': 1.0, 'back': 1.0, 'easily': 1.0, 'you': 1.0, 'way': 1.0}
Word element => {}
Word element => {'though': 1.0, 'needed': 1.0, 'while': 1.0, 'did': 1.0, 'would': 1.0, 'ours': 1.0, 'being': 1.0, 'if': 1.0, 'saver': 1.0, 'very': 1.0, 'away': 1.0, 'was': 1.0, 'had': 1.0, 'towels': 1.0, 'she': 1.0, 'it': 3.0, 'with': 4.0, 'reflux': 1.0, 'creating': 1.0, 'girl': 1.0, 'time': 1.0, 'sheet': 2.0, 'co': 1.0, 'life': 1.0, 'really': 1.0, 'afraid': 1.0, 'for': 1.0, 'tight': 1.0, 'get': 1.0, 'easy': 1.0, 'travel': 1.0, 'use': 1.0, 'and': 2.0, 'similar': 1.0, 'environment': 1.0, 'already': 1.0, 'ditched': 1.0, 'to': 3.0, 'our': 1.0, 'baby': 1.0, 'you': 2.0, 'propping': 1.0, 'work': 1.0, 'can': 1.0, 'up': 1.0, 'wonders': 1.0, 'difficult': 1.0, 'under': 1.0, '5': 1.0, 'transitioning': 1.0, 'skip': 1.0, 'crib': 2.0, 'this': 2.0, 'mattress': 1.0, 'sleeper': 1.0, 'or': 1.0, 'a': 5.0, 'we': 3.0, 'could': 1.0, 'have': 2.0, 'at': 1.0, 'months': 1.0}
Word element => {'later': 1.0, 'with': 1.0, 'enjoyed': 1.0, 'i': 2.0, 'slept': 1.0, 'complaint': 1.0, 'a': 3.0, 'that': 1.0, 'babies': 1.0, 'only': 1.0, 'it': 3.0, 'is': 2.0, 'beginning': 1.0, 'pros': 1.0, 'dealt': 1.0, '2': 1.0, 'the': 4.0, 'in': 2.0, 'have': 3.0, 'flat': 1.0, 'one': 1.0, 'my': 2.0, 'like': 1.0, 'last': 1.0, 'used': 1.0, 'both': 1.0, 'they': 2.0, 'has': 1.0, 'you': 1.0, 'use': 1.0, 'and': 3.0, 'too': 1.0, 'for': 1.0, 'where': 1.0, 'this': 1.0, 'kids': 1.0, 'if': 1.0, 'regularly': 1.0, 'however': 1.0, 'very': 1.0, 'difficult': 1.0, 'baby': 1.0, 'them': 1.0, 'cons': 1.0, 'sleep': 1.0, 'to': 3.0, 'transitioning': 1.0, 'crib': 1.0, 'lie': 1.0, 'traumatic': 1.0, 'transition': 2.0, 'had': 1.0, 'weigh': 1.0}
Word element => {'priceless': 1.0, 'them': 2.0, 'bedroom': 1.0, 'into': 1.0, 'to': 2.0, 'fussing': 1.0, 'is': 2.0, 'so': 1.0, 'twins': 1.0, 'one': 1.0, 'easy': 1.0, 'inclined': 1.0, 'a': 1.0, 'and': 1.0, 'comfy': 1.0, 'do': 1.0, 'babies': 1.0, 'would': 1.0, 'mutliples': 1.0, 'angle': 1.0, 'how': 1.0, 'know': 1.0, 'of': 2.0, 'bring': 1.0, 'if': 1.0, 'keep': 2.0, 'any': 1.0, 'don': 1.0, 'sturdy': 1.0, 'mothers': 1.0, 'night': 1.0, 'i': 1.0, 'this': 1.0, 'it': 2.0, 'without': 1.0, 'closer': 1.0, 'my': 1.0, 'portable': 1.0, 'they': 1.0, 'at': 2.0, 'things': 1.0, 'are': 1.0, 'assist': 1.0, 't': 1.0, 'these': 1.0, 'the': 2.0, 'roomy': 1.0}
Word element => {'beautiful': 1.0, 'choose': 1.0, 'glad': 1.0, 'so': 1.0, 'i': 1.0, 'cute': 1.0, 'a': 1.0, 'has': 1.0, 'for': 1.0, 'm': 1.0, 'daughter': 1.0, 'in': 1.0, 'very': 2.0, 'and': 1.0, '6': 1.0, 'cozy': 1.0, 'is': 1.0, 'product': 1.0, 'rock': 1.0, 'sleeper': 1.0, 'my': 1.0, 'months': 1.0, 's': 1.0, 'design': 1.0, 'play': 1.0, 'to': 3.0, 'loves': 1.0, 'sleep': 1.0, 'she': 1.0, 'store': 1.0, 'easy': 1.0, 'use': 1.0, 'this': 1.0, 'n': 1.0, 'it': 3.0}
Word element => {'move': 1.0, 'easier': 1.0, 'those': 1.0, 'than': 1.0, 'support': 1.0, 'ones': 1.0, 'other': 1.0, 'why': 1.0, 'removable': 1.0, 'but': 2.0, 'avoid': 1.0, 'padding': 1.0, 'use': 1.0, 'lighter': 1.0, 'under': 1.0, 'so': 1.0, 'head': 4.0, 'now': 1.0, 'thin': 1.0, 'spits': 1.0, 'blanket': 1.0, 'this': 1.0, 'soft': 2.0, 'around': 1.0, 'is': 2.0, 'more': 1.0, 'the': 3.0, 'lightweight': 1.0, 'great': 1.0, 'behind': 2.0, 'pattern': 1.0, 'and': 3.0, 'value': 1.0, 'cute': 1.0, 'one': 1.0, 'entire': 1.0, 'see': 1.0, 'syndrome': 1.0, 'out': 1.0, 'what': 1.0, 'there': 2.0, 'wash': 1.0, 'up': 1.0, 'love': 1.0, 'to': 4.0, 'as': 1.0, 'compared': 1.0, 'hard': 1.0, 'plastic': 1.0, 'cover': 1.0, 'when': 1.0, 'she': 1.0, 'flat': 1.0, 'have': 2.0, 'her': 1.0, 'fabric': 1.0, 'i': 2.0, 'putting': 1.0, 'started': 1.0, 'could': 1.0, 's': 1.0, 'we': 1.0, 'a': 2.0}
Word element => {'mind': 1.0, 'sleeping': 1.0, 'gives': 1.0, 'really': 1.0, 'very': 1.0, 'satisfied': 1.0, 'overall': 1.0, 'problem': 1.0, 'haven': 1.0, 'upstairs': 1.0, 'used': 2.0, 'us': 1.0, 'plugged': 2.0, 'not': 1.0, 'hours': 1.0, 'four': 1.0, 'life': 1.0, 'screen': 1.0, 'receiver': 1.0, 'lampshade': 1.0, 'be': 1.0, 'clipped': 1.0, 'onto': 1.0, 'room': 1.0, 'noises': 1.0, 'about': 1.0, 'whimpers': 1.0, 'any': 2.0, 'in': 5.0, 'brown': 1.0, 'tool': 1.0, 'use': 1.0, 'one': 2.0, 'crying': 2.0, 'grunts': 1.0, 'have': 3.0, 't': 2.0, 'we': 9.0, 'a': 10.0, 'go': 1.0, 'peace': 1.0, 'since': 1.0, 've': 1.0, 'down': 1.0, 'many': 1.0, 'baby': 3.0, 'night': 3.0, 'ahead': 1.0, 'set': 2.0, 'when': 4.0, 'fabulous': 1.0, 'sleeps': 2.0, 'amplified': 1.0, 'of': 4.0, 'the': 8.0, 'wasn': 1.0, 'keeping': 1.0, 'out': 2.0, 'must': 1.0, 'step': 1.0, 'coming': 1.0, 'i': 2.0, 'and': 11.0, 'interference': 1.0, 'monitor': 3.0, 'little': 2.0, 'this': 3.0, 'at': 2.0, 'is': 4.0, 'vision': 1.0, 'eyes': 1.0, 'crystal': 1.0, 'only': 1.0, 'surfaces': 1.0, 'audio': 2.0, 'like': 1.0, 'continuously': 1.0, 'd': 1.0, 'our': 2.0, 'as': 1.0, 'to': 4.0, 'entirely': 1.0, 'sure': 1.0, 'easy': 1.0, 'wrong': 1.0, 'camera': 2.0, 'video': 1.0, 'help': 2.0, 'but': 3.0, 'had': 2.0, 'was': 1.0, 's': 4.0, 'soothe': 1.0, 'thing': 1.0, 'been': 1.0, 'easily': 2.0, 'that': 1.0, 'yawns': 1.0, 'his': 3.0, 'over': 1.0, 'open': 1.0, 'even': 1.0, 'other': 2.0, 'an': 1.0, 'rising': 1.0, 'or': 1.0, 'need': 1.0, 'falling': 1.0, 'track': 1.0, 'chest': 1.0, 'he': 5.0, 'seeing': 1.0, 'while': 1.0, 'it': 10.0, 'already': 1.0, 'him': 2.0, 'before': 2.0, 'noise': 2.0, 'makes': 2.0, 'sounds': 1.0, 'point': 1.0, 'peep': 1.0, 'see': 2.0, 'seems': 2.0, 'there': 1.0, 'downstairs': 1.0, 'with': 3.0, 'pat': 1.0, 'takes': 1.0, 'normalizes': 1.0, 'gets': 1.0, 'clear': 2.0, 'still': 1.0, 're': 1.0, 'come': 1.0, 'where': 1.0, 'for': 1.0, 'clips': 1.0, 'can': 3.0, 'so': 1.0, 'totally': 1.0, 'hear': 1.0}
Word element => {'keep': 1.0, 'if': 1.0, 'was': 1.0, 'to': 1.0, 'of': 1.0, 'out': 1.0, 'continually': 1.0, 'went': 1.0, 'my': 1.0, 'it': 2.0, 'this': 1.0, 'children': 1.0, 'sq': 2.0, 'monitor': 3.0, 'horrible': 1.0, 'ft': 2.0, 'would': 2.0, 'you': 1.0, 'lose': 1.0, 'when': 1.0, 'the': 5.0, 't': 2.0, 'a': 2.0, 'see': 1.0, 'less': 1.0, 'home': 1.0, '1700': 1.0, 'range': 2.0, 'have': 1.0, 'able': 1.0, 'is': 1.0, 'on': 1.0, 'and': 3.0, '500': 1.0, 'i': 3.0, 'signal': 2.0, 'picture': 1.0, 'didn': 1.0, 'great': 1.0, 'feel': 1.0, 'comfortable': 1.0, 'using': 1.0, 'than': 1.0, 'because': 1.0, 'not': 2.0, 'be': 1.0, 'price': 1.0, 'were': 1.0, 'can': 1.0, 'but': 1.0, 'worth': 1.0}
Word element => {'vision': 1.0, 'extras': 1.0, 'concrete': 1.0, 'house': 1.0, 'my': 1.0, '2': 1.0, 'the': 1.0, 'away': 1.0, 'and': 1.0, 'lullaby': 1.0, 'up': 1.0, 'a': 1.0, 'in': 1.0, 'which': 1.0, 'way': 1.0, '30ft': 1.0, 'driveway': 1.0, 'live': 1.0, 'talk': 1.0, 'room': 1.0, 'is': 1.0, 'from': 1.0, 'range': 1.0, 'night': 1.0, 'i': 1.0, 'clear': 1.0, 'good': 2.0, 'picked': 1.0, 'it': 1.0, 'to': 1.0, 'about': 1.0}
Word element => {'sound': 1.0, 'quality': 1.0, 'little': 1.0, 'have': 1.0, 'small': 1.0, 'good': 5.0, 'has': 1.0, 'a': 2.0, 'better': 1.0, 'they': 1.0, 'but': 2.0, 'still': 2.0, 'could': 1.0, 'screen': 1.0, 'i': 1.0, 'think': 1.0}
Word element => {'when': 1.0, 'zoomed': 2.0, 'bad': 1.0, 'first': 1.0, 'in': 3.0, 'have': 1.0, 'deceiving': 1.0, 'tilt': 2.0, 'lullabies': 1.0, 'having': 1.0, 'wasn': 1.0, 'area': 1.0, 'sound': 1.0, 'actually': 1.0, 'a': 4.0, 'then': 1.0, 'we': 1.0, 't': 5.0, 'i': 1.0, 'time': 2.0, 'life': 1.0, 'play': 1.0, 'about': 1.0, 're': 1.0, 'off': 1.0, 'sizescreen': 1.0, 'cupsmonitor': 1.0, 'using': 1.0, 'be': 1.0, 'something': 1.0, 'super': 1.0, 'so': 1.0, 'strength': 1.0, 'can': 3.0, 'pointless': 1.0, 'but': 1.0, 'pros': 2.0, 'degrees': 1.0, 'it': 6.0, 'featuresdaytime': 1.0, 'suction': 1.0, 'tilteven': 1.0, 'crappy': 1.0, 'hours': 1.0, 'true': 2.0, 'was': 7.0, 'accurate': 1.0, 'run': 1.0, 'lasts': 1.0, 'while': 1.0, 'than': 1.0, 'matter': 1.0, 'lot': 2.0, 'keep': 1.0, 'since': 1.0, 'didn': 1.0, 'qualityfpsnot': 1.0, 'on': 3.0, 'rechargeable': 1.0, 'feature': 2.0, 'or': 1.0, '4': 1.0, 'daytime': 1.0, 'enough': 1.0, 'temperaturerangecons': 1.0, 'date': 1.0, 'though': 1.0, 'batteries': 1.0, 'also': 2.0, 'qualitynight': 1.0, 'doesn': 1.0, 'lots': 1.0, '5': 2.0, 'video': 1.0, 'camera': 2.0, 'mounted': 1.0, 'of': 4.0, 'the': 10.0, 'clipping': 1.0, 'this': 5.0, 'displays': 1.0, 'baby': 1.0, 'quality': 4.0, 'you': 5.0, 'night': 1.0, 'picture': 2.0, 'monitor': 3.0, 'by': 1.0, 'outweighs': 1.0, 'had': 1.0, 'to': 2.0, 'at': 1.0, 'vision': 1.0, 'is': 1.0, 'signal': 1.0, 'like': 1.0, 'displayed': 1.0, 'quantity': 1.0, 'liked': 1.0, 'for': 1.0, 'use': 1.0, 'zoom': 1.0, 'as': 1.0, 'horrible': 2.0, 'blurry': 1.0, 'fps': 1.0, 'battery': 1.0, 'really': 2.0, 'has': 1.0, 'higher': 1.0, 'temperature': 1.0, 'clearcamera': 1.0, 'pan': 3.0, 'features': 1.0, 'if': 1.0, 'isn': 2.0, 'which': 1.0, 'good': 2.0}
Word element => {'low': 1.0, 'add': 1.0, 'additional': 1.0, 'with': 1.0, 'what': 1.0, 'hearing': 1.0, 'aware': 1.0, 'great': 1.0, 'option': 1.0, 'lower': 1.0, 'relatively': 1.0, 'than': 1.0, 'way': 1.0, 'dollars': 2.0, '200': 1.0, 'afford': 1.0, 'overall': 1.0, 'time': 1.0, 'behind': 1.0, 'seconds': 1.0, '2': 1.0, 'delay': 1.0, 'visual': 1.0, 'there': 1.0, 'again': 1.0, 'poorly': 1.0, 'going': 1.0, 'done': 1.0, 'wasted': 2.0, 'scratchy': 1.0, 'pricedcons': 1.0, 'niceadditional': 1.0, 'just': 2.0, 'stuff': 1.0, 'back': 1.0, 'multiple': 1.0, 'clip': 1.0, 'reasonably': 1.0, 'coldlove': 1.0, 'sounds': 1.0, 'hot': 1.0, 'scary': 1.0, 'alert': 1.0, 'all': 1.0, 'an': 1.0, 'temperature': 1.0, 'childtells': 1.0, 'your': 1.0, 'through': 1.0, 'screen': 1.0, 'nice': 2.0, 'move': 1.0, 'false': 2.0, 'but': 2.0, 'night': 1.0, 'you': 9.0, 'talk': 1.0, 'advertising': 2.0, 'does': 3.0, 'irked': 1.0, 'they': 1.0, 'doesn': 1.0, '60': 1.0, 'was': 3.0, 'because': 1.0, 'that': 4.0, 'mind': 1.0, 'over': 2.0, 'in': 6.0, 'light': 1.0, 'using': 1.0, 'like': 1.0, 'spending': 1.0, 'splits': 1.0, 'baby': 4.0, 'be': 1.0, 'granted': 1.0, 'fatal': 1.0, 'cost': 2.0, 't': 3.0, 'a': 13.0, 's': 4.0, 'go': 2.0, 'basically': 2.0, 'without': 1.0, 'say': 2.0, 'music': 1.0, 'around': 2.0, 'different': 1.0, 'good': 1.0, 'not': 2.0, 'and': 9.0, 'picture': 2.0, 'monitor': 2.0, 'being': 1.0, 'cannot': 1.0, 'very': 4.0, 'area': 1.0, 'gets': 2.0, '250': 1.0, 'after': 1.0, 'it': 15.0, 'this': 5.0, 'for': 8.0, 'where': 1.0, 'stars': 1.0, 'too': 1.0, 'one': 2.0, 'better': 1.0, 'definitely': 1.0, 'types': 1.0, 'example': 1.0, 'me': 2.0, 'my': 2.0, 'faults': 1.0, 'only': 2.0, 'biggest': 1.0, 'would': 1.0, 'loads': 1.0, 'really': 2.0, 'much': 1.0, 'do': 1.0, 'disappointment': 1.0, 'flaw': 2.0, 'to': 6.0, 'horrible': 1.0, 'zoom': 1.0, 'as': 1.0, 'colormultiple': 1.0, 'is': 10.0, 'look': 1.0, 'room': 3.0, 'attaches': 1.0, 'previous': 1.0, 'rooms': 1.0, 'real': 1.0, 'given': 1.0, 'set': 2.0, 'will': 1.0, 'cameras': 3.0, 'dollar': 1.0, 'see': 3.0, 'everything': 2.0, 'moving': 1.0, 'can': 7.0, 'so': 4.0, 'i': 4.0, '4': 1.0, 'plus': 1.0, 'working': 2.0, 'pan': 3.0, 'crib': 2.0, 'older': 1.0, 'stationary': 1.0, 'climbing': 1.0, 'out': 1.0, 'wasn': 1.0, 'the': 15.0, 'of': 5.0, 'feature': 2.0, 'or': 2.0, 'let': 1.0, 'camera': 4.0, 'year': 1.0, 'toddler': 1.0, 'on': 4.0, 'realize': 1.0, 'bed': 1.0, 'another': 1.0, '100': 1.0, 'up': 2.0, 'less': 1.0, 'have': 2.0, 'pros': 2.0, 'cons': 1.0, 'if': 3.0, 'clear': 1.0}
Word element => {'again': 1.0, 'probably': 1.0, 'its': 1.0, 'need': 1.0, 'done': 1.0, 'ok': 1.0, 'making': 1.0, 'enough': 1.0, 'buy': 1.0, 'definitely': 1.0, 'amazing': 1.0, 'hear': 1.0, 'able': 1.0, 'with': 2.0, 'room': 1.0, 'laptop': 1.0, 'everything': 1.0, 'if': 1.0, 'of': 1.0, 'performance': 1.0, 'sure': 1.0, 'kind': 1.0, 've': 1.0, 'would': 2.0, 'skype': 1.0, 'for': 1.0, 'love': 1.0, 'fix': 1.0, 'will': 1.0, 'light': 1.0, 'is': 1.0, 'more': 1.0, 'had': 1.0, 'was': 1.0, 'far': 1.0, 'back': 1.0, 'so': 1.0, 'between': 1.0, 'didn': 1.0, 'got': 1.0, 'happy': 1.0, 'useless': 1.0, 'it': 4.0, 'annoying': 1.0, 'good': 1.0, 'last': 1.0, 'retailer': 1.0, 'died': 1.0, 'satisfied': 1.0, 'broken': 1.0, 'the': 7.0, 'adjustment': 1.0, 'on': 3.0, 'take': 1.0, 'isn': 1.0, 'button': 1.0, 'leave': 1.0, 'have': 2.0, 'been': 2.0, 'little': 1.0, 'very': 2.0, 'all': 2.0, 'to': 4.0, 'our': 1.0, 'typically': 1.0, 'pleased': 1.0, 'after': 1.0, 'sometimes': 1.0, 'feature': 1.0, 'adding': 1.0, 'but': 4.0, 'can': 2.0, 'decide': 1.0, 'has': 1.0, 'angle': 1.0, 'quality': 1.0, 'baby': 2.0, 'night': 2.0, 'this': 2.0, 'uniden': 1.0, 'vision': 3.0, 'and': 2.0, 'in': 2.0, 'camera': 3.0, 'regular': 1.0, 'which': 1.0, 'him': 1.0, 'be': 3.0, 'could': 1.0, 'we': 7.0, 't': 3.0, 'a': 3.0, 'minor': 1.0, 'or': 1.0}
Word element => {'last': 1.0, 'time': 1.0, 'in': 1.0, 'just': 1.0, 'hit': 1.0, 'regrets': 1.0, 'overall': 1.0, 'devices': 1.0, 'ready': 1.0, 'most': 1.0, 'be': 1.0, 'issue': 1.0, 'from': 1.0, 'are': 1.0, 'still': 1.0, 'if': 1.0, 're': 1.0, 'like': 1.0, 's': 1.0, 'great': 1.0, 'quality': 1.0, 'when': 1.0, 'sound': 1.0, 'complaint': 1.0, 'real': 1.0, 'only': 1.0, 'my': 1.0, 'trips': 1.0, 'save': 1.0, 'or': 1.0, 'remotely': 3.0, 'son': 1.0, 'network': 2.0, 'our': 1.0, 'could': 1.0, 'one': 1.0, 'talk': 1.0, 'size': 1.0, 'covered': 1.0, 'security': 1.0, 'thing': 1.0, 'no': 2.0, 'battery': 1.0, 'for': 4.0, 'system': 1.0, 'actually': 1.0, 'spend': 1.0, 'seems': 1.0, 'see': 1.0, 'until': 2.0, 'you': 3.0, 'experience': 1.0, 'grade': 1.0, 'after': 2.0, 'monitoring': 2.0, 'automation': 1.0, 'any': 1.0, 'viewing': 3.0, 'online': 1.0, 'unit': 1.0, 'standard': 1.0, 'better': 1.0, 'imagine': 1.0, 'a': 4.0, 't': 2.0, 'then': 1.0, 'we': 2.0, 'would': 2.0, 'away': 1.0, 'permanently': 1.0, 'again': 1.0, 'accessibility': 1.0, 'app': 1.0, 'consumer': 1.0, 'screen': 1.0, 'mobile': 1.0, 'to': 8.0, 'lacks': 1.0, 'as': 2.0, 'outside': 1.0, 'match': 1.0, 'but': 4.0, 'barely': 1.0, 'perfect': 1.0, 'this': 5.0, 'found': 1.0, 'more': 1.0, 'connection': 1.0, 'plan': 1.0, 'music': 1.0, 'around': 1.0, 'of': 3.0, 'the': 17.0, 'have': 3.0, 'home': 1.0, 'by': 2.0, 'light': 2.0, 'isn': 1.0, 'comparing': 1.0, 'it': 6.0, 'available': 1.0, 'waiting': 1.0, 'researching': 1.0, 'months': 1.0, 'get': 1.0, 'two': 1.0, 'realize': 1.0, 'on': 4.0, 'best': 1.0, 'monitor': 2.0, 'market': 2.0, 'hundreds': 1.0, 'lack': 1.0, 'room': 1.0, 'and': 8.0, 'about': 1.0, 'play': 1.0, 'some': 1.0, 'never': 1.0, 'spent': 1.0, 'didn': 1.0, 'semi': 1.0, 'being': 1.0, 'mounting': 1.0, 'year': 2.0, 'watcher': 1.0, 'camera': 3.0, 'that': 3.0, 'runs': 1.0, 'i': 5.0, 'well': 1.0, 'can': 1.0, 'so': 1.0, 'now': 2.0, 'taking': 1.0, 'lullabies': 1.0, 'older': 1.0, 'buy': 1.0, 'playing': 1.0, 'all': 1.0, 'an': 3.0, 'ipad': 1.0, 'additional': 1.0, 'use': 2.0, 'house': 1.0, 'nap': 1.0, 'nursery': 2.0, 'us': 1.0, 'also': 1.0, 'with': 1.0, 'piece': 1.0, 'tape': 1.0, 'visible': 1.0, 'wired': 1.0, 'indicator': 1.0, 'is': 5.0, 'at': 1.0, 'love': 1.0, 'far': 1.0, 'odd': 1.0, 'primary': 1.0, 'does': 1.0, 'not': 2.0, 'offered': 1.0, 'had': 1.0, 'way': 1.0}
Word element => {'their': 1.0, 'after': 1.0, 'unplugged': 1.0, 'auto': 1.0, 'i': 1.0, 'power': 2.0, 'servers': 1.0, 'and': 3.0, 'monitor': 1.0, 'off': 2.0, 'till': 1.0, 'like': 2.0, 'know': 1.0, 'only': 3.0, 'works': 1.0, 'ie': 1.0, 'much': 2.0, 'it': 2.0, 'dim': 1.0, 'looks': 1.0, 'not': 3.0, 'sound': 2.0, 'insure': 1.0, 'intercom': 1.0, 'minutes': 1.0, 'yellow': 1.0, 'was': 1.0, 'can': 3.0, 'but': 1.0, 'app': 1.0, 'don': 1.0, 'exit': 1.0, 'no': 2.0, 'battery': 1.0, 'cam': 1.0, 'security': 1.0, 'some': 1.0, 'if': 1.0, 'turn': 1.0, 't': 2.0, 'a': 2.0, 'save': 1.0, 'cons': 1.0, 'appear': 1.0, '5': 2.0, 'menu': 1.0, 'what': 1.0, 'internet': 1.0, 'ship': 1.0, 'settings': 1.0, 'screen': 2.0, 'super': 1.0, 'for': 2.0, 'the': 6.0, 'brightness': 1.0, 'is': 2.0, 'at': 1.0, 'camera': 3.0, 'product': 1.0, 'video': 2.0, 'has': 2.0, 'useless': 2.0, '3': 1.0, 'hour': 1.0, 'level': 1.0, 'life': 1.0, 'cant': 1.0, 'sleep': 1.0, 'to': 2.0, 'digit': 1.0, 'baby': 2.0, 'you': 3.0, 'night': 1.0, 'bright': 1.0, 'blue': 1.0, '2': 1.0, 'leds': 2.0, 'that': 1.0, 'illuminate': 1.0, 'all': 1.0, 'an': 1.0, 'does': 1.0, 'ip': 1.0, 'sending': 1.0, 'work': 1.0, 'unidens': 1.0, 'ur': 1.0, 'first': 1.0, 'with': 2.0, '6': 1.0, 'numeric': 1.0, 'select': 1.0, 'pin': 1.0, 'poor': 1.0, 'or': 1.0, 'indicatoretcetcso': 1.0, 'udw10003': 1.0, 'flag': 1.0, 'happier': 1.0}
Word element => {'staff': 1.0, 'leaving': 1.0, 'up': 1.0, 'that': 1.0, 'for': 1.0, 'effect': 1.0, 'side': 1.0, 'positive': 1.0, 'ability': 1.0, 're': 1.0, 'off': 1.0, 'or': 1.0, 'mostly': 1.0, 'rip': 1.0, 'edge': 2.0, 'it': 11.0, 'with': 5.0, 'this': 1.0, 'he': 1.0, 'mess': 2.0, 'i': 1.0, 'another': 1.0, 'my': 1.0, 'couple': 1.0, 'do': 1.0, 'minimal': 1.0, 'son': 1.0, 'longer': 1.0, 'minimizes': 1.0, 'no': 1.0, 'of': 1.0, 's': 2.0, 'a': 4.0, 'is': 2.0, 'plan': 1.0, 'table': 1.0, 'using': 1.0, 'and': 2.0, 'play': 2.0, 'design': 1.0, 'grab': 1.0, 'be': 2.0, 'to': 7.0, 'away': 1.0, 'now': 1.0, 'just': 1.0, 'by': 1.0, 'on': 1.0, 'eats': 1.0, 'deal': 1.0, 'wrap': 1.0, 'the': 9.0, 'without': 1.0, 'kid': 3.0, 'contained': 1.0, 'thought': 1.0, 'times': 1.0, 'when': 1.0, 'you': 3.0, 'wait': 1.0, 'farthest': 1.0, 'need': 1.0, 'distracted': 1.0, 'game': 1.0, 'wrestling': 1.0, 'applying': 1.0, 'while': 1.0, 'from': 1.0, 'closest': 1.0, 'thrown': 1.0, 'want': 1.0, 'surface': 1.0, 'start': 1.0, 'took': 1.0, 'then': 2.0, 'sides': 1.0}
Word element => {'well': 1.0, 'busy': 1.0, 'keeps': 1.0, 'him': 2.0, 'soft': 1.0, 'for': 1.0, 'which': 1.0, 'occupied': 1.0, 'online': 1.0, 'things': 1.0, 'really': 1.0, 'apparently': 1.0, 'it': 2.0, 'with': 1.0, 'he': 2.0, 'this': 2.0, 'into': 1.0, 'loves': 3.0, 'item': 1.0, 'bumped': 1.0, 'boy': 1.0, 'tags': 1.0, 'baby': 1.0, 'i': 3.0, 'thought': 1.0, 'to': 1.0, 'its': 1.0, 'was': 1.0, 'as': 1.0, 'son': 1.0, 'adorable': 1.0, 'my': 2.0, 'went': 1.0, 'and': 4.0, 'comforting': 1.0, 'so': 1.0, 'bought': 1.0}
Word element => {'size': 1.0, 'wish': 1.0, 'more': 1.0, 'the': 2.0, 'we': 2.0, 'one': 1.0, 'taggies': 1.0, 'have': 2.0, 'other': 1.0, 'this': 1.0, 'others': 1.0, 'is': 1.0, 'was': 1.0, 'not': 1.0, 'and': 1.0, 'as': 2.0, 'clear': 1.0, 'thick': 1.0}
Word element => {'sheets': 1.0, 'sensitive': 1.0, 'has': 1.0, 'any': 1.0, 'have': 1.0, 'bad': 1.0, 'rubs': 1.0, 'on': 3.0, 'that': 1.0, 'most': 1.0, 'other': 1.0, 'design': 1.0, 'later': 1.0, 'soft': 1.0, 'marks': 2.0, 'sheet': 1.0, 'always': 1.0, 'of': 1.0, 'like': 2.0, 'son': 1.0, 'very': 2.0, 'and': 1.0, 'buy': 1.0, 'i': 3.0, 'when': 1.0, 'my': 1.0, 'his': 3.0, 'face': 3.0, 'skin': 1.0, 'he': 1.0, 'it': 2.0, 'will': 1.0, 'but': 1.0, 'doesn': 1.0, 'more': 1.0, 't': 1.0, 'left': 1.0, 'is': 1.0, 'leave': 1.0}
Word element => {'back': 1.0, 'be': 1.0, 'ripped': 1.0, 'will': 1.0, 'other': 1.0, 'since': 1.0, 'one': 1.0, 'second': 1.0, 'need': 1.0, 'no': 1.0, 'several': 1.0, 'after': 2.0, 'sewn': 1.0, 'shrunk': 1.0, 'get': 1.0, 'have': 1.0, 'you': 1.0, 'even': 1.0, 'does': 1.0, 'want': 1.0, 'he': 3.0, 'mattress': 1.0, 'this': 1.0, 'traces': 1.0, 'with': 1.0, 'isn': 1.0, 'only': 1.0, 'do': 1.0, 'much': 1.0, 'hasn': 1.0, 'old': 1.0, 'i': 3.0, 'had': 1.0, 'drives': 1.0, 'where': 1.0, 'love': 2.0, 'finger': 1.0, 'a': 2.0, 't': 4.0, 'but': 1.0, '2': 1.0, 'the': 2.0, 'loves': 1.0, 'or': 1.0, 'me': 1.0, 'perfectly': 1.0, 'purchase': 1.0, 'fact': 1.0, 'fits': 2.0, 'tight': 1.0, 'my': 1.0, 'bed': 1.0, '52x28x6': 1.0, 'seam': 1.0, 'boy': 1.0, 'sheet': 3.0, 'so': 2.0, '5': 1.0, 'in': 2.0, 'don': 1.0, 'wash': 1.0, 'struggle': 1.0, 'his': 3.0, 'year': 1.0, 'to': 6.0, 'it': 8.0, 'remove': 1.0, '3': 1.0, 'matchbox': 1.0, 'on': 2.0, 'doesn': 1.0, 'lays': 1.0, 'together': 1.0, 'corner': 1.0, 'roads': 1.0, 'still': 1.0, 'washes': 2.0, 'cars': 1.0, 'and': 5.0, 'too': 1.0}
Word element => {'sturdy': 1.0, 'it': 1.0, 'trip': 1.0, 'this': 1.0, 'bad': 1.0, 'is': 2.0, 'made': 1.0, 'the': 1.0, 'perfect': 1.0, 'very': 2.0, 'and': 2.0, 'well': 1.0, 'also': 1.0, 'large': 1.0, 'roomy': 1.0, 'weekend': 1.0, 'for': 1.0}
Word element => {'definitely': 1.0, 'worth': 1.0, 'cute': 1.0, 'design': 1.0, 'which': 1.0, 'what': 1.0, 'from': 1.0, 'kind': 1.0, 'as': 1.0, 'lot': 1.0, 'material': 1.0, 'be': 1.0, 'should': 1.0, 'money': 1.0, 'baby': 1.0, 'spent': 1.0, 'oversized': 1.0, 'made': 1.0, 'towel': 1.0, 'an': 1.0, 'a': 3.0, 'or': 1.0, 'is': 2.0, 'said': 1.0, 'that': 1.0, 'comforter': 1.0, 'clear': 1.0, 'i': 3.0, 'buy': 1.0, 'while': 2.0, 'blanket': 2.0, 'style': 1.0, 'did': 1.0, 'this': 1.0, 'it': 3.0, 'pictured': 1.0, 'was': 1.0, 'to': 1.0, 'had': 1.0, 'in': 2.0, 'more': 1.0, 'the': 4.0, 'my': 1.0, 'of': 2.0, 'mind': 1.0, 'not': 1.0, 'description': 1.0}
Word element => {'of': 1.0, 'we': 1.0, 'and': 1.0, 'girl': 1.0, 'year': 1.0, 'big': 1.0, 'a': 1.0, 'on': 1.0, 'feels': 1.0, 'arrived': 1.0, 'one': 1.0, 'for': 1.0, 'love': 1.0, 'when': 1.0, 'with': 1.0, 'it': 1.0, 'this': 2.0, 'fell': 1.0, 'now': 1.0, 'timing': 1.0, 'granddaughter': 1.0, 'was': 1.0, 'my': 1.0, 'such': 1.0, 'the': 3.0, 'are': 1.0, 'porch': 1.0, 'grandparents': 1.0, 'she': 1.0, 'like': 1.0, 'box': 1.0, 'before': 1.0, 'her': 1.0, 'even': 1.0, 'in': 1.0, 'perfect': 1.0, 'opened': 1.0}
Word element => {'stroller': 1.0, 'to': 1.0, 'states': 1.0, 'prohibit': 1.0, 'if': 1.0, 'manufacturers': 1.0, 'out': 1.0, 'child': 1.0, 'restraint': 1.0, 'all': 1.0, 'applicable': 1.0, 'totally': 1.0, 'bumpers': 1.0, 'car': 3.0, '46': 1.0, 'cover': 1.0, 'that': 1.0, 'interesting': 1.0, 'safety': 1.0, 'for': 1.0, 'you': 2.0, 'illegal': 1.0, 'fmvss': 3.0, 'in': 3.0, 'saying': 2.0, '34': 2.0, 'of': 3.0, 'tested': 1.0, 'like': 1.0, 'a': 1.0, 'not': 2.0, 'does': 1.0, 'feel': 1.0, 'use': 3.0, '213': 3.0, 'product': 2.0, 'must': 1.0, 'kind': 1.0, 'this': 1.0, 'it': 5.0, 'meets': 2.0, 'leave': 1.0, 'is': 2.0, 'standard': 1.0, 'such': 1.0, 'the': 5.0}
Word element => {'being': 1.0, 'daughter': 1.0, 'my': 1.0, 'then': 1.0, 'used': 1.0, 'carseat': 1.0, 'be': 1.0, 'onto': 1.0, 'button': 1.0, 'at': 1.0, 'some': 1.0, 'sewing': 1.0, 'good': 1.0, 'stay': 1.0, 'lot': 1.0, 'a': 1.0, 'of': 3.0, 'there': 1.0, 'theory': 1.0, 'in': 1.0, 'options': 1.0, 's': 2.0, 'wouldn': 1.0, 'velcro': 1.0, 'it': 3.0, 'currently': 1.0, 't': 1.0, 'the': 2.0, 'herself': 1.0, 'type': 1.0, 'is': 2.0, 'strong': 1.0, 'not': 3.0, 'just': 1.0, 'thought': 1.0, 'enough': 1.0, 'to': 2.0, 'but': 1.0, 'put': 1.0, 'fasten': 1.0, 'i': 1.0, 'all': 1.0, 'able': 1.0, 'have': 1.0}
Word element => {'carefully': 1.0, 'very': 1.0, 'info': 1.0, 'picture': 2.0, 'i': 2.0, 'getting': 1.0, 'read': 1.0, 'least': 1.0, 'by': 1.0, 'will': 1.0, 'good': 1.0, 'the': 3.0, 'next': 1.0, 'like': 1.0, 'sized': 1.0, 'looked': 1.0, 'it': 1.0, 'misleading': 1.0, 'product': 1.0, 'was': 1.0, 'to': 1.0, '3': 1.0, 'say': 1.0, 'different': 1.0, 'purchase': 1.0, 'is': 2.0, 'containers': 1.0}
Word element => {'from': 1.0, 'different': 1.0, 'is': 1.0, 'oz': 1.0, '5': 1.0, 'this': 3.0, 'why': 1.0, 'week': 1.0, 'an': 1.0, 'little': 1.0, 'ahead': 1.0, 'to': 2.0, 'had': 2.0, 'i': 6.0, 'beaba': 2.0, 'during': 1.0, 'extra': 2.0, 'and': 2.0, 'the': 5.0, '2': 2.0, 'a': 1.0, 't': 1.0, 'my': 1.0, 'fit': 1.0, 'love': 1.0, 'for': 1.0, 'one': 1.0, 'time': 1.0, 'easier': 1.0, 'has': 1.0, 'already': 1.0, 'servings': 1.0, 'life': 1.0, 'earlier': 1.0, 'of': 1.0, 'container': 3.0, 'thawing': 1.0, 'flower': 1.0, 'portions': 2.0, 'don': 1.0, 'frozen': 2.0, 'in': 1.0, 'have': 1.0, 'small': 1.0, 'flat': 1.0, 'got': 2.0, 'silicone': 1.0, 'because': 1.0, 'not': 1.0, 'side': 1.0, 'make': 2.0, 'bummed': 1.0, 'freezer': 1.0, 'sure': 1.0}
Word element => {'feeding': 1.0, 'next': 1.0, 'his': 1.0, 'take': 1.0, 'beaba': 1.0, 'the': 1.0, 'outings': 1.0, 's': 1.0, 'you': 1.0, 'completely': 1.0, 'of': 1.0, 'it': 1.0, 'with': 2.0, 'on': 1.0, 'taking': 1.0, 'and': 2.0, 'defrosting': 1.0, 'defrosted': 1.0, 'sling': 1.0, 'for': 1.0, 'in': 1.0, 'perfect': 1.0, 'just': 1.0, 'by': 1.0, 'cooker': 1.0, 'going': 1.0, 'pop': 1.0, 'i': 1.0, 'a': 1.0, 'baby': 1.0, 'if': 1.0, 'frozen': 1.0, 'few': 1.0, 'cubes': 1.0, 'food': 1.0, 'out': 1.0, 'made': 1.0}
Word element => {'3': 1.0, 'for': 1.0, '1': 1.0, 'a': 1.0, 'year': 1.0, 'as': 1.0, 'likely': 1.0, 'cup': 2.0, 'my': 1.0, 'daughter': 1.0, 'less': 1.0, 'sturdy': 1.0, 'starter': 1.0, 'works': 1.0, 'it': 2.0, 'this': 1.0, 'great': 1.0, '2': 1.0, 'is': 1.0, 'old': 1.0, 'so': 1.0, 'she': 1.0, 'spill': 1.0, 'will': 1.0}
Word element => {'glass': 1.0, 'spills': 1.0, 'use': 1.0, 'to': 1.0, 'old': 1.0, 'good': 1.0, 'for': 1.0, 'from': 1.0, 'as': 1.0, 'gives': 1.0, 'year': 1.0, 'without': 1.0, 'size': 1.0, 'perfect': 1.0, 'easy': 1.0, 'a': 2.0, 'rubber': 1.0, 'cup': 1.0, 'my': 1.0, 'regular': 1.0, 'many': 1.0, 'is': 2.0, 'the': 3.0, '2': 1.0, 'it': 2.0, 'this': 1.0, 'grip': 1.0, 'there': 1.0, 'something': 1.0, 'that': 1.0, 'about': 1.0, 'and': 1.0, 'shape': 1.0, 'makes': 1.0}
Word element => {'think': 1.0, 'only': 1.0, 'or': 1.0, 'i': 1.0, 'one': 1.0, 'all': 1.0, 's': 1.0, 'cups': 1.0, 'cup': 1.0, 'he': 2.0, 'twice': 1.0, 'time': 1.0, 'is': 1.0, 'dropped': 2.0, 'once': 1.0, 'exactly': 1.0, 'kid': 1.0, 'what': 1.0, 'the': 1.0, 'my': 1.0, 'needed': 1.0, 'this': 2.0, 'other': 1.0}
Word element => {'new': 1.0, 'still': 1.0, 'through': 1.0, 'floor': 1.0, 'onto': 1.0, 'chair': 1.0, 'high': 1.0, 'off': 1.0, 'trips': 1.0, 'several': 1.0, 'made': 1.0, 'has': 1.0, 'plastic': 1.0, 'thick': 1.0, 'drinking': 1.0, 'easy': 1.0, 'hard': 1.0, 'on': 1.0, 'with': 2.0, 'piece': 1.0, 'as': 2.0, 'to': 4.0, 'practice': 2.0, 'months': 1.0, 'decided': 1.0, 'one': 3.0, '4': 1.0, 'i': 2.0, 'for': 2.0, 'oxo': 1.0, 'makes': 1.0, 'old': 1.0, 'find': 1.0, 'are': 1.0, 'my': 1.0, 'yet': 1.0, 'cup': 2.0, 'daughter': 1.0, 'needed': 1.0, 'looks': 1.0, 'it': 4.0, 'she': 3.0, 'so': 1.0, 'small': 1.0, 'little': 1.0, 'feeding': 1.0, 'this': 2.0, 'grip': 1.0, 'good': 1.0, 'her': 2.0, 'set': 1.0, 'a': 1.0, 'go': 1.0, 's': 3.0, 'and': 6.0, 'dishwasher': 1.0, 'surprisingly': 1.0, 'age': 1.0, 'able': 1.0, 'wider': 1.0, 'using': 1.0, '17': 1.0, 'which': 1.0, 'hold': 1.0, 'hand': 1.0, 'the': 4.0, 'can': 1.0, 'rim': 1.0}
Word element => {'solid': 1.0, 'hands': 1.0, 'slippery': 1.0, 'onto': 1.0, 'hold': 1.0, 'enables': 1.0, 'grips': 1.0, 'tilt': 1.0, 'little': 1.0, 'didn': 1.0, 'practice': 1.0, 'to': 3.0, 'other': 1.0, 'the': 2.0, 't': 1.0, 'with': 2.0, 'this': 1.0, 'cup': 1.0, 'my': 1.0, 'i': 1.0, 'tried': 1.0, 'are': 3.0, 'they': 4.0, 'too': 1.0, 'less': 1.0, 'cups': 2.0, 'spill': 1.0, 'but': 1.0, 'work': 1.0, 'them': 2.0, 'child': 1.0, 'out': 1.0, 'like': 1.0, 'shorter': 1.0, 'so': 1.0, 'easier': 1.0, 'one': 1.0, 'given': 1.0, 'for': 1.0}
Word element => {'3': 1.0, 'said': 1.0, 'grip': 1.0, 'easy': 1.0, 'cool': 1.0, 'job': 1.0, 'or': 1.0, 'him': 2.0, 'stop': 2.0, 'either': 1.0, 'that': 1.0, 'frankly': 1.0, 'time': 1.0, 'stylings': 1.0, 'spills': 2.0, 'point': 1.0, 's': 4.0, 'sick': 1.0, 'but': 2.0, 'his': 2.0, 'of': 2.0, 'cup': 4.0, 'my': 2.0, 'year': 1.0, 'son': 1.0, 'blame': 1.0, 'juice': 2.0, 'using': 1.0, 'a': 1.0, 'to': 2.0, 'do': 1.0, 'giving': 2.0, 'getting': 1.0, 'and': 2.0, 'hate': 1.0, 'old': 1.0, 'i': 5.0, 'm': 1.0, 'when': 1.0, 'like': 4.0, '90': 1.0, 'come': 1.0, 'this': 3.0, 'it': 5.0, 'the': 3.0, 'mess': 1.0}
Word element => {'on': 1.0, 'money': 1.0, 'for': 1.0, 'wish': 1.0, 'useless': 1.0, 'lid': 1.0, 't': 1.0, 'the': 1.0, 'i': 1.0, 'spills': 1.0, 'so': 1.0, 'harder': 1.0, 'never': 1.0, 'would': 1.0, 'completely': 1.0, 'of': 1.0, 'with': 1.0, 'come': 1.0, 'it': 2.0, 'looked': 1.0, 'a': 1.0, 'didn': 1.0, 'little': 1.0, 'and': 1.0, 'spent': 1.0}
Word element => {'less': 1.0, 'or': 1.0, 'spills': 1.0, 'dishwasher': 1.0, 'in': 1.0, 'washed': 1.0, 'at': 1.0, 'slip': 1.0, 'not': 1.0, 'its': 1.0, 'makes': 2.0, 'does': 1.0, 'what': 1.0, 'that': 1.0, 'cup': 2.0, 'holding': 1.0, 'shape': 1.0, 'and': 1.0, 'well': 1.0, 'a': 2.0, 'is': 2.0, 'it': 1.0, 'this': 1.0, 'more': 1.0, 'great': 2.0, 'the': 2.0, 'plastic': 1.0, 'silicon': 1.0, 'strip': 1.0, 'so': 2.0, 'for': 1.0, 'those': 1.0, 'tiny': 1.0, 'lot': 1.0, 'least': 1.0, 'easy': 1.0, 'hands': 1.0}
Word element => {'choice': 1.0, 'cups': 1.0, 'buy': 1.0, 'money': 1.0, 'it': 1.0, 'def': 1.0, 'is': 1.0, 'good': 1.0, 'some': 1.0, 'sturdy': 1.0, 'cup': 1.0, 'and': 1.0, 'more': 1.0, 'the': 2.0, 'my': 1.0, 'easy': 1.0, 'loves': 1.0, '3yr': 1.0, 'worth': 1.0, 'will': 1.0, 'clean': 1.0, 'to': 1.0, 'old': 1.0}
Word element => {'against': 1.0, 'which': 1.0, 'has': 1.0, 'liquid': 1.0, 'top': 1.0, 'enough': 1.0, 'just': 1.0, 'holds': 1.0, 'really': 1.0, 'is': 1.0, 'great': 1.0, 'the': 1.0, 'company': 1.0, 'my': 1.0, 'cup': 1.0, 'liked': 1.0, 'for': 1.0, 'extra': 1.0, 'helps': 1.0, 'grandaughter': 1.0, 'dishes': 1.0, 'an': 1.0, 'of': 1.0, 'set': 2.0, 'have': 1.0, 'to': 1.0, 'wanted': 1.0, 'and': 1.0, 'i': 3.0, 'lipped': 1.0, 'so': 1.0, 'bought': 1.0, 'a': 2.0, 'spillage': 1.0, 'by': 1.0, 'same': 1.0, 'this': 1.0, 'it': 2.0}
Word element => {'up': 1.0, 'thumbs': 1.0, 'little': 1.0, 'in': 1.0, 'when': 1.0, 'durable': 1.0, 'ones': 1.0, 'these': 1.0, '2': 1.0, 'the': 1.0, 'now': 1.0, 'cups': 1.0, 'to': 2.0, 'small': 1.0, 'are': 1.0, 'my': 3.0, 'perfect': 1.0, 'grip': 1.0, 'bought': 1.0, '3': 1.0, 'we': 1.0, 'they': 1.0, 'slipping': 1.0, 'son': 2.0, 'for': 1.0, 'love': 1.0, 'opinion': 1.0, 'big': 1.0, 'from': 1.0, 'more': 1.0, 'is': 2.0, 'plastic': 1.0, 'he': 1.0, 'of': 1.0, '8': 1.0, 'likes': 1.0, 'too': 2.0, 'and': 1.0, 'get': 1.0, 'likely': 1.0, 'oz': 2.0, 'spilt': 1.0, 'help': 1.0, 'keep': 1.0, 'ands': 1.0, '4': 2.0, 'i': 2.0, 'was': 1.0, 'recommend': 1.0, 'like': 1.0, 'them': 2.0}
Word element => {'loves': 1.0, 'my': 1.0, 'as': 1.0, 'microwave': 1.0, 'hold': 1.0, 'wish': 2.0, 'in': 1.0, 'toddler': 1.0, 'but': 2.0, 'use': 1.0, 'couple': 1.0, 'which': 1.0, 'nice': 1.0, 'well': 1.0, 'a': 2.0, 'i': 3.0, 's': 1.0, 'it': 4.0, 'great': 1.0, 'more': 1.0, 'the': 1.0, 'ounces': 1.0, 'its': 1.0, 'again': 1.0, 'could': 2.0, 'glass': 1.0, 'dishwasher': 1.0, 'friendly': 1.0, 'is': 1.0}
Word element => {'diningyou': 1.0, 'relaxed': 1.0, 'the': 1.0, 'felt': 1.0, 'broken': 1.0, 'must': 1.0, 'dish': 1.0, 'with': 1.0, 'throw': 1.0, 'is': 1.0, 'product': 1.0, 'meal': 1.0, 'satisfied': 1.0, 'timenot': 1.0, 'very': 2.0, 's': 1.0, 'lightbaby': 1.0, 'suitable': 1.0, 'for': 1.0, 'have': 1.0, 'this': 1.0, 'snack': 1.0}
Word element => {'still': 1.0, 'sit': 1.0, 'child': 1.0, 'that': 2.0, 'bottom': 1.0, 'doesn': 1.0, 'a': 1.0, 'skid': 1.0, 'very': 1.0, 's': 1.0, 'well': 1.0, 'for': 2.0, 'no': 1.0, 'has': 1.0, 't': 1.0, 'this': 1.0, 'grandson': 1.0, 'my': 1.0, 'the': 2.0, 'great': 1.0, 'works': 2.0, 'plate': 1.0}
Word element => {'set': 1.0, 'cute': 1.0, 'hand': 1.0, 'good': 1.0, 'sturdy': 1.0, 'cup': 1.0, 'silverware': 1.0, 'a': 1.0, 'looking': 1.0, 'plastic': 1.0, 'but': 1.0, 'and': 1.0, 'ware': 1.0, 'very': 1.0, 'really': 1.0, 'is': 2.0, 'small': 1.0, 'the': 1.0, 'great': 1.0, 'could': 1.0, 'friendly': 1.0, 'be': 1.0, 'bit': 1.0, 'larger': 1.0}
Word element => {'learned': 1.0, 'lesson': 1.0, 'good': 1.0, 'bought': 1.0, 'few': 1.0, 'just': 1.0, 'instead': 1.0, 'should': 1.0, 'ones': 2.0, 'many': 1.0, 'other': 1.0, 'the': 3.0, 'hadn': 1.0, 'wish': 1.0, 'couple': 1.0, 'he': 2.0, 'wasted': 1.0, 'it': 1.0, 'only': 1.0, 'him': 2.0, 'learning': 1.0, 'others': 1.0, 'these': 1.0, 'more': 1.0, 'they': 1.0, 'so': 3.0, 'can': 1.0, 'but': 1.0, 'food': 3.0, 'eat': 1.0, 'to': 3.0, 'a': 2.0, 't': 4.0, 's': 1.0, 'cheaper': 2.0, 'don': 1.0, 'up': 2.0, 'frustrate': 1.0, 'find': 1.0, 'use': 2.0, 'utensils': 2.0, 'i': 3.0, 'actually': 2.0, 'for': 2.0, 'that': 2.0, 'pick': 2.0, 'let': 1.0, 'or': 3.0, 'too': 1.0, 'and': 2.0, 'small': 1.0, 'have': 3.0, 'flat': 1.0, 'dull': 1.0, 'doesn': 1.0, 'hard': 2.0, 'while': 1.0, 'stick': 1.0, 'stay': 1.0, 'stuff': 1.0, 'make': 1.0, 'on': 2.0, 'waste': 1.0, 'of': 3.0, 'utensil': 1.0, 'toddlers': 1.0, 'total': 1.0, 'drop': 1.0, 'cost': 1.0}
Word element => {'highly': 1.0, 'very': 1.0, 'recommend': 1.0, 'etc': 1.0, 'durable': 1.0, '3': 1.0, 'pre': 1.0, 'made': 1.0, 'child': 1.0, 'up': 1.0, '34': 2.0, 'age': 1.0, 'baby': 1.0, 'me': 1.0, 'away': 1.0, 'certainly': 1.0, 'but': 1.0, '2': 1.0, 'the': 3.0, 'year': 1.0, 'from': 2.0, '5': 1.0, 'also': 2.0, 'seems': 1.0, 'and': 2.0, 'teens': 1.0, 'when': 1.0, 'this': 3.0, 'perfect': 2.0, 'kids': 1.0, 'any': 1.0, 'to': 2.0, 'old': 1.0, 'be': 2.0, 'set': 2.0, 'used': 2.0, 'well': 1.0, 'for': 1.0, 'that': 1.0, 'could': 2.0, 'a': 1.0, 's': 1.0, 'are': 1.0, 'cutlery': 1.0, 'extremely': 1.0, 'is': 1.0, 'by': 2.0, 'just': 1.0, 'probably': 1.0, 'transitioning': 1.0, 'size': 1.0, 'pretty': 1.0}
Word element => {'needed': 1.0, 'what': 1.0, 'just': 1.0, 'supervision': 1.0, 'with': 1.0, 'if': 1.0, 'hurt': 1.0, 'sharp': 1.0, 'two': 1.0, 'bought': 1.0, 'of': 1.0, 'really': 1.0, '5': 1.0, 'knife': 2.0, 'yo': 1.0, 'couldn': 1.0, 'and': 1.0, 'these': 1.0, 'the': 2.0, 'find': 1.0, '3': 1.0, 'is': 2.0, 'locally': 1.0, 'included': 1.0, 'wanted': 1.0, 'to': 1.0, 'our': 1.0, 'any': 1.0, 'enough': 1.0, 'cutlery': 1.0, 'used': 1.0, 'sets': 2.0, 'no': 1.0, 'several': 1.0, 'kids': 1.0, 'them': 1.0, 'quality': 1.0, 'weeks': 1.0, 'her': 1.0, 'good': 1.0, 'complaints': 1.0, 'can': 1.0, 'size': 1.0, 'so': 1.0, 'appropriate': 1.0, 'she': 2.0, 'a': 2.0, 't': 2.0, 'we': 3.0, 's': 1.0, 'that': 2.0, 'been': 1.0, 'which': 1.0, 'using': 2.0, 'for': 1.0, 'far': 1.0, 'real': 1.0, 'practice': 1.0, 'isn': 1.0}
Word element => {'schooler': 1.0, 'pre': 1.0, 'an': 1.0, 'for': 1.0, 'perfect': 1.0, 'they': 1.0, 'these': 1.0, 'older': 1.0, 'are': 2.0, 'the': 1.0, 'toddler': 1.0, 'almost': 1.0, 'good': 1.0, 'adult': 1.0, 'quality': 1.0, 'and': 1.0, 'sized': 1.0, 'knife': 1.0, 'actually': 1.0, 'works': 1.0, 'so': 1.0}
Word element => {'nice': 1.0, 'very': 1.0, 'otherwise': 1.0, 'having': 1.0, 'colors': 1.0, 'my': 1.0, 'own': 1.0, 'more': 1.0, 'for': 1.0, 'like': 1.0, 'could': 1.0, 'they': 1.0, 'their': 1.0, 'grandchildren': 1.0, 'got': 1.0, 'all': 1.0, 'but': 1.0, 'spoon': 1.0, 'bowl': 1.0, 'be': 1.0, 'a': 2.0, 'three': 1.0, 'little': 1.0, 'set': 1.0, 'of': 1.0, 'shape': 1.0}
Word element => {'more': 1.0, 'buy': 1.0, 'will': 1.0, 'and': 1.0, 'it': 1.0, 'etc': 1.0, 'perfect': 2.0, 'so': 1.0, 'size': 1.0, 'glad': 1.0, 'spoons': 1.0, 'grip': 1.0, 'i': 1.0, 'im': 1.0, 'a': 1.0, 'fan': 1.0, 'of': 1.0, 'oxo': 1.0, 'bowls': 1.0, 'bought': 1.0, 'plates': 1.0}
Word element => {'nice': 1.0, 'color': 1.0, 'across': 1.0, 't': 1.0, 'table': 1.0, 'and': 1.0, 'the': 1.0, 'small': 1.0, 'size': 2.0, 'non': 1.0, 'good': 2.0, 'toddlers': 1.0, 'bowl': 1.0, 'great': 1.0, 'slip': 2.0, 'it': 1.0, 's': 1.0, 'doesn': 1.0, 'a': 1.0, 'children': 1.0, 'for': 1.0}
Word element => {'you': 1.0, 'much': 2.0, 'very': 2.0, 'our': 1.0, 'it': 1.0, 'love': 1.0, 'cake': 1.0, 'great': 1.0, 'girl': 1.0, 'thank': 1.0, 'look': 1.0, 'smashes': 1.0, 'when': 1.0, 'her': 1.0, 'baby': 1.0, 'will': 1.0, 'she': 1.0, 'birthday': 1.0}
Word element => {'day': 1.0, 'big': 1.0, 'when': 1.0, 'her': 2.0, 'wear': 1.0, 'comes': 1.0, 'to': 2.0, 'granddaughter': 1.0, 'was': 1.0, 'august': 1.0, 'on': 1.0, 'for': 1.0, 'in': 2.0, 'birthday': 1.0, 'she': 1.0, 'doll': 1.0, 'my': 1.0, 'be': 1.0, 'bought': 1.0, 'first': 1.0, 'thrilled': 1.0, 'with': 1.0, 'this': 2.0, 'it': 2.0, 'a': 1.0, 'will': 1.0, 'precious': 1.0}
Word element => {'mold': 1.0, 'to': 1.0, 'dry': 1.0, 'let': 1.0, 'make': 1.0, 't': 1.0, 'little': 1.0, 'a': 1.0, 'take': 1.0, 'while': 1.0, 'melts': 1.0, 'as': 1.0, 'use': 1.0, 'chew': 1.0, 'cubes': 1.0, 'between': 1.0, 'after': 1.0, 'so': 2.0, 'ice': 1.0, 'you': 2.0, 'avoid': 1.0, 'doesn': 1.0, 'inside': 1.0, 'put': 1.0, 'water': 2.0, 'i': 1.0, 'whole': 1.0, 'loves': 1.0, 'away': 1.0, 'and': 3.0, 'baby': 1.0, 'fully': 1.0, 'pour': 1.0, 'she': 1.0, 'my': 1.0, 'can': 1.0, 'this': 1.0, 'it': 7.0, 'sure': 1.0, 'hold': 1.0, 'everywhere': 1.0, 'on': 2.0, 'onto': 1.0, 'suck': 1.0, 'does': 1.0, 'leak': 1.0, 'out': 1.0}
Word element => {'foogo': 1.0, 'prefer': 1.0, 'how': 1.0, 'almost': 1.0, 'out': 1.0, 'old': 1.0, '16': 1.0, 'again': 1.0, 'happened': 1.0, 'thing': 1.0, 'same': 1.0, 'and': 2.0, 'open': 2.0, 'from': 1.0, 'figured': 1.0, 'straw': 1.0, 'insulation': 1.0, 'one': 1.0, 'liked': 1.0, 'layered': 1.0, 'top': 3.0, 'learning': 1.0, 'on': 3.0, 'off': 1.0, 'snap': 2.0, 'stainless': 1.0, 'seems': 1.0, 'in': 2.0, 'instantly': 1.0, 'cup': 1.0, 'get': 1.0, 'shot': 1.0, 'really': 1.0, 'tabs': 1.0, 'spout': 1.0, 'steel': 1.0, 'toddlers': 1.0, 'willing': 1.0, 'month': 1.0, 'it': 3.0, 'with': 1.0, 'great': 1.0, 'the': 5.0, 'was': 1.0, 'for': 2.0, 'inner': 1.0, 'reality': 1.0, 'so': 1.0, 'that': 2.0, 'double': 1.0, 'drink': 1.0, 'give': 1.0, 'can': 1.0, 'but': 1.0, 'broke': 1.0, 'my': 1.0, 'convert': 1.0, 'another': 1.0, 'thermos': 1.0, 'fall': 1.0, 'theory': 1.0, 'to': 6.0, 'cups': 1.0, 'two': 1.0, 'i': 3.0, 'much': 2.0}
Word element => {'bowl': 1.0, 'a': 1.0, 'instead': 1.0, 'heated': 1.0, 'his': 1.0, 'like': 1.0, 'particularly': 1.0, 'bag': 1.0, 'throw': 1.0, 'and': 1.0, 'of': 1.0, 'up': 1.0, 'load': 1.0, 'for': 1.0, 'toddler': 1.0, 'diaper': 1.0, 'the': 3.0, 'fruit': 1.0, 'afternoon': 1.0, 's': 1.0, 'foods': 1.0, 'actually': 1.0, 'in': 2.0, 'perfect': 1.0, 'yogurt': 1.0, 'plastic': 1.0, 'serving': 1.0, 'size': 1.0, 'morning': 1.0, 'melamine': 1.0, 'is': 1.0, 'on': 1.0, 'my': 1.0, 'cup': 1.0, 'with': 1.0, 'it': 2.0, 'this': 2.0, 'anything': 1.0, 'snack': 1.0, 'oatmeal': 1.0, 'lid': 1.0, 'or': 2.0, 'stays': 1.0, 'i': 2.0, 'if': 1.0}
Word element => {'pasta': 1.0, 'play': 1.0, 't': 1.0, 'likes': 1.0, 'my': 1.0, 'and': 1.0, 'son': 1.0, 'very': 1.0, 'need': 1.0, 'hot': 1.0, 'to': 3.0, 'easy': 1.0, 'with': 1.0, 'it': 2.0, 'clean': 1.0, 'too': 1.0, 'i': 1.0, 'or': 1.0, 'worry': 1.0, 'don': 1.0, 'about': 1.0, 'using': 1.0, 'for': 1.0, 'soup': 1.0}
Word element => {'product': 1.0, 'happy': 1.0, 'very': 1.0, 'find': 1.0, 'difficult': 1.0, 'silverware': 1.0, 'your': 1.0, 'own': 1.0, 'bring': 1.0, 'paper': 1.0, 'adult': 1.0, 'plates': 1.0, 'for': 1.0, 'serving': 1.0, 'lid': 1.0, 'a': 1.0, 'to': 2.0, 'the': 2.0, 'is': 1.0, 'on': 1.0, 'no': 1.0, 'at': 2.0, 'an': 1.0, 'potluck': 1.0, 'home': 1.0, 'container': 1.0, 'when': 1.0, 'snap': 1.0, 'done': 1.0, 'and': 1.0, 'take': 1.0, 'with': 1.0, 'first': 1.0, 'this': 2.0, 'it': 1.0, 'perfect': 1.0, 'wash': 1.0}
Word element => {'expect': 1.0, 'you': 1.0, 'future': 1.0, 'wish': 1.0, 'in': 1.0, 'satisfactoryoften': 1.0, 'thrive': 1.0, 'fine': 1.0, 'and': 1.0, 'availability': 1.0, 'want': 1.0, 'a': 1.0, 'the': 2.0, 'long': 1.0, 'use': 1.0, 'but': 1.0, 'is': 2.0, 'with': 1.0, 'happy': 1.0, 'stainless': 1.0, 'steel': 1.0, 'to': 2.0, 'product': 1.0}
Word element => {'to': 1.0, 'not': 1.0, 'older': 1.0, 'my': 1.0, 'clean': 1.0, 'because': 1.0, 'this': 1.0, 'son': 1.0, 'is': 3.0, 'a': 2.0, 'does': 1.0, 'bottle': 1.0, 'leak': 1.0, 'cup': 2.0, 'we': 1.0, 'easy': 1.0, 'use': 1.0, 'great': 1.0, 'it': 2.0, 'and': 1.0, 'as': 1.0, 'sippy': 1.0}
Word element => {'amazon': 1.0, 'on': 1.0, 'affordable': 1.0, 've': 1.0, 'after': 2.0, 'cup': 1.0, 'dropped': 1.0, 'just': 1.0, 'has': 1.0, 'move': 1.0, 'got': 1.0, 'this': 1.0, 'it': 4.0, 'how': 1.0, 'he': 2.0, 'little': 1.0, 'boy': 1.0, 'bottle': 2.0, 'playground': 1.0, 'sippy': 1.0, 'at': 1.0, 'gift': 1.0, 'to': 2.0, 'our': 1.0, 'as': 1.0, 'day': 1.0, 'kit': 1.0, 'love': 1.0, 'using': 1.0, 'believe': 1.0, 'the': 5.0, 'great': 1.0, 'is': 2.0, 'more': 1.0, 'been': 1.0, 'loves': 1.0, 'starting': 1.0, 'and': 3.0, 'too': 1.0, 'handles': 1.0, 'shower': 1.0, 'once': 1.0, 'steel': 1.0, 'work': 1.0, 'can': 1.0, 'than': 1.0, 'we': 3.0, 'a': 2.0, 't': 1.0, 's': 1.0, 'saved': 1.0, 'i': 1.0}
Word element => {'sides': 1.0, 'both': 1.0, 'on': 1.0, 'print': 1.0, 'i': 1.0, 'plus': 1.0, 'also': 1.0, 'blanket': 1.0, 'reasons': 1.0, 'so': 1.0, 'love': 1.0, 'for': 2.0, 'many': 1.0, 'is': 3.0, 'product': 1.0, 'only': 1.0, 'it': 1.0, 'this': 1.0, 'a': 2.0, 'different': 1.0, 'canopy': 1.0, 'great': 3.0, 'the': 3.0, 'my': 1.0, 'car': 1.0, 'not': 1.0, 'seat': 1.0, 'protecting': 1.0, 'baby': 1.0, 'as': 1.0, 'from': 1.0, 'sun': 1.0, 'but': 1.0}
Word element => {'enjoy': 1.0, 'stroller': 1.0, 'seat': 1.0, 'car': 1.0, 'my': 1.0, 'with': 1.0, 'cute': 1.0, 'it': 2.0, 'absolutely': 1.0, 'love': 1.0, 'daughters': 1.0, 'i': 1.0, 'matches': 1.0, 'cover': 1.0, 's': 1.0, 'super': 1.0, 'this': 1.0, 'closely': 1.0}
Word element => {'baby': 1.0, 'long': 1.0, 'carseat': 1.0, 'was': 2.0, 'had': 1.0, 'for': 3.0, 'cover': 1.0, 'we': 1.0, 'it': 1.0, 'the': 4.0, 'lightweight': 1.0, 'great': 1.0, 'canopy': 1.0, 'perfect': 1.0, 'walks': 1.0, 'but': 1.0, 'just': 1.0, 'colder': 1.0, 'fleece': 1.0, 'going': 1.0, 'when': 2.0, 'too': 1.0, 'hot': 1.0, 'summer': 1.0, 'off': 1.0, 'sun': 1.0, 'worked': 1.0, 'keeping': 1.0}
Word element => {'more': 1.0, 'bulky': 1.0, 's': 1.0, 'feel': 1.0, 'i': 2.0, 'it': 2.0, 'very': 1.0, 'like': 2.0, 'other': 1.0, 'this': 1.0, 'though': 1.0, 'diaper': 1.0, 'is': 1.0, 'absorbent': 1.0, 'to': 1.0, 'diapers': 1.0, 'than': 1.0, 'easy': 1.0, 'use': 1.0}
Word element => {'diapers': 1.0, 'selling': 1.0, 'be': 1.0, 'they': 1.0, 'realize': 1.0, 'quality': 1.0, 'exchange': 1.0, 'worth': 1.0, 'not': 2.0, 'bled': 1.0, 'black': 1.0, 'fabric': 1.0, 'just': 1.0, 'wet': 1.0, 'if': 1.0, 'in': 1.0, 'inky': 1.0, 'back': 1.0, 'ish': 1.0, 'ink': 1.0, 'some': 2.0, 'diaper': 3.0, 'next': 1.0, 'been': 1.0, 'that': 1.0, 'is': 1.0, 'and': 2.0, 'time': 1.0, 'hey': 1.0, 'hassle': 1.0, 'amazon': 1.0, 'easy': 1.0, 'quickly': 1.0, 'well': 1.0, 'lot': 1.0, 'at': 1.0, 'since': 1.0, 'washes': 1.0, 'as': 1.0, 'to': 3.0, 'husband': 1.0, 'kawaii': 1.0, 'patches': 1.0, 'old': 1.0, 'purple': 1.0, 'i': 2.0, 'first': 1.0, 'heavy': 1.0, 'the': 9.0, 'dries': 1.0, 'wetter': 1.0, 'bummer': 1.0, 'stuff': 1.0, 'on': 2.0, 'rec': 1.0, 'print': 2.0, 'cute': 1.0, 'gift': 1.0, 'fit': 1.0, 'for': 3.0, '16': 1.0, 'only': 1.0, 'works': 1.0, 'his': 1.0, 'may': 1.0, 'my': 3.0, 'inexpensive': 1.0, 'fluffy': 1.0, 'was': 1.0, 'cow': 1.0, 'but': 1.0, 'had': 3.0, 'excellent': 1.0, 'onto': 1.0, 'd': 1.0, 'account': 1.0, 'flawed': 1.0, 'month': 1.0, 'it': 2.0, 'soft': 1.0, 'this': 1.0, 'he': 1.0, 'we': 1.0, 'a': 2.0, 's': 1.0, 'overnight': 1.0, 'like': 1.0, 'order': 1.0, 'absorbant': 1.0, 'card': 1.0}
Word element => {'at': 1.0, 'not': 1.0, 'disposable': 1.0, 'with': 1.0, 'had': 1.0, 'and': 3.0, 'bad': 1.0, 'probably': 1.0, 'diapers': 1.0, 'all': 1.0, 'to': 1.0, 'was': 1.0, 'good': 1.0, 'really': 1.0, 'is': 2.0, 'tried': 1.0, 'it': 3.0, 'this': 1.0, 'the': 2.0, 'a': 4.0, 't': 1.0, 'get': 1.0, 'easy': 1.0, 'fits': 1.0, 'than': 2.0, 'put': 1.0, 'on': 1.0, 'won': 1.0, 'happen': 1.0, 'others': 1.0, 'love': 1.0, 'for': 2.0, 'fit': 1.0, 'but': 1.0, 'work': 1.0, 'most': 1.0, 'other': 1.0, 'so': 2.0, 'after': 1.0, 'have': 1.0, 'small': 1.0, 'newborn': 1.0, 'overnight': 1.0, 'used': 1.0, 'that': 1.0, 'microfiber': 1.0, 'i': 3.0, 'two': 1.0, 'better': 1.0, 'hours': 1.0, 'of': 1.0, 'larger': 1.0, 'there': 1.0, 'diaper': 1.0, 'leak': 1.0, 'inserts': 1.0, 'inhale': 1.0, '11': 1.0}
Word element => {'came': 1.0, 'room': 1.0, 'my': 1.0, 'job': 1.0, 'good': 1.0, 'out': 1.0, 'review': 1.0, 'to': 1.0, 'enough': 1.0, 'set': 1.0, 'arts': 1.0, 'online': 1.0, 'lovely': 1.0, 'hamper': 1.0, 'product': 1.0, 'bought': 1.0, 'same': 1.0, 'found': 1.0, 'buy': 1.0, 'i': 1.0, 'im': 1.0, 'great': 1.0, 'currently': 1.0, 'the': 2.0, 'also': 1.0, 'company': 1.0, 'leave': 1.0, 'really': 1.0, 'this': 1.0, 'with': 1.0, 'giggledots': 1.0, 'wall': 1.0, 'designs': 1.0, 'sons': 1.0, 'matching': 1.0, 'impressed': 1.0, 'and': 1.0}
Word element => {'hands': 1.0, 'yanked': 1.0, 'once': 1.0, 'anymore': 1.0, 'doesn': 1.0, 'but': 1.0, 'not': 1.0, 'and': 1.0, 'do': 1.0, 'getting': 1.0, 'of': 2.0, 'lil': 1.0, 'spin': 1.0, 'spills': 1.0, 'habit': 1.0, 'nothing': 2.0, 'my': 2.0, 't': 1.0, 'the': 1.0, 'that': 1.0, 'awesome': 1.0, 'had': 1.0, 'before': 1.0, 'stuck': 1.0, 'stinker': 1.0, 'is': 1.0, 'from': 1.0, 'son': 1.0, 'he': 2.0, 'it': 2.0, 'this': 1.0, 'cereal': 1.0, 'out': 2.0, 'a': 1.0, 'underneath': 1.0, 'so': 1.0, 'fell': 1.0, 'product': 1.0, 'bowl': 1.0, 'would': 1.0}
Word element => {'could': 1.0, 'itself': 1.0, 'however': 1.0, 'even': 1.0, 'instead': 1.0, 'loved': 1.0, 'go': 1.0, 'ready': 1.0, 'top': 1.0, 'sectioning': 1.0, 'd': 1.0, 'wet': 1.0, 'done': 1.0, 'move': 1.0, 'without': 1.0, 'anything': 1.0, 'open': 1.0, 'once': 1.0, 'tons': 1.0, 'public': 1.0, 'rare': 1.0, 'diapering': 1.0, 'm': 2.0, 'in': 11.0, 'when': 2.0, 'rolled': 1.0, '8230': 1.0, 'had': 1.0, 'counter': 1.0, '9': 1.0, 'it': 2.0, 'have': 2.0, 'keep': 2.0, 'space': 1.0, 'three': 1.0, 'need': 1.0, 'or': 2.0, 'on': 2.0, 'see': 1.0, 'grovia': 1.0, 'then': 1.0, 'order': 1.0, 'bathrooms': 1.0, 'out': 2.0, 'find': 2.0, 'having': 4.0, 'spent': 1.0, 'spread': 1.0, 'some': 1.0, 'back': 1.0, 'sections': 1.0, 'pull': 1.0, 'looking': 1.0, 'bag': 6.0, 'wanted': 1.0, 'that': 3.0, 'replace': 1.0, 'case': 2.0, 'much': 1.0, 'put': 2.0, 'changing': 1.0, 'to': 13.0, 's': 1.0, 'necessities': 1.0, 'a': 5.0, 'i': 10.0, 'two': 2.0, 'organizer': 1.0, 'one': 4.0, 'of': 8.0, 'the': 13.0, 'way': 2.0, 'reach': 2.0, 'place': 1.0, 'bags': 1.0, 'diaper': 3.0, 'kind': 1.0, 'insert': 2.0, 'can': 1.0, 'so': 2.0, 'and': 7.0, 'places': 1.0, 'everything': 2.0, 'within': 1.0, 'things': 2.0, 'able': 1.0, 'individual': 1.0, 'separate': 1.0, 't': 1.0, 'fit': 1.0, 'for': 3.0, 'bill': 1.0, 'completely': 1.0, 'sits': 1.0, 'is': 2.0, 'there': 2.0, 'flap': 1.0, 'shells': 1.0, 'between': 1.0, 'wipes': 1.0, 'inserts': 1.0, 'clean': 1.0, 'this': 2.0, 'few': 2.0, 'just': 2.0, 'be': 1.0, 'disposable': 1.0, 'hated': 1.0, 'are': 1.0, 'diapers': 2.0, 'if': 1.0, 'section': 3.0, 'pad': 1.0, 'organized': 2.0, 'another': 3.0, 'other': 1.0, 'all': 1.0, 'fits': 1.0, 'items': 1.0, 'chucks': 1.0, 'isn': 1.0, 'comfortably': 1.0, 'which': 1.0, 'wall': 1.0, 'up': 1.0, 'change': 1.0, 'was': 1.0, 'clothes': 1.0, 'spending': 1.0, 'many': 1.0, 'baby': 1.0}
Word element => {'just': 1.0, 'place': 1.0, 'my': 1.0, 'for': 2.0, 'was': 2.0, 'i': 1.0, 'bag': 1.0, 'looking': 1.0, 'what': 1.0, 'that': 1.0, 'exactly': 1.0, 'is': 1.0, 'this': 2.0, 'it': 4.0, 'out': 1.0, 'of': 1.0, 'has': 2.0, 'great': 1.0, 'diaper': 1.0, 'control': 1.0, 'getting': 1.0, 'and': 1.0, 'orgnazed': 1.0, 'so': 1.0, 'everything': 1.0, 's': 2.0}
Word element => {'daughter': 1.0, 'same': 1.0, 'purchasing': 1.0, 'looking': 1.0, 'problem': 1.0, 'permanent': 1.0, 'issue': 1.0, 'year': 1.0, 'forward': 1.0, 'breakers': 1.0, 'are': 1.0, 'not': 1.0, 'me': 1.0, 'those': 1.0, 'or': 1.0, 'get': 1.0, 'towel': 2.0, 'jam': 1.0, 'need': 1.0, 'do': 1.0, 'rear': 1.0, '2': 1.0, 'sit': 1.0, 'straps': 1.0, 'of': 2.0, 'take': 1.0, 'have': 1.0, '3': 1.0, 'using': 1.0, 'actually': 1.0, 'for': 4.0, 'and': 4.0, '1': 1.0, 'butt': 1.0, 'old': 2.0, 'condition': 1.0, 'about': 2.0, 'm': 1.0, 'years': 1.0, 'color': 1.0, 'months': 1.0, 'bought': 1.0, 'deal': 1.0, 'the': 6.0, 'my': 2.0, 'kids': 1.0, 'pain': 1.0, 'this': 2.0, '6': 1.0, 'extremely': 1.0, 'he': 1.0, 'month': 1.0, 'remove': 1.0, 'it': 2.0, 'begin': 1.0, 'under': 1.0, 'rolled': 1.0, 'facing': 2.0, 'still': 1.0, 'son': 1.0, 'you': 2.0, 'am': 1.0, 'when': 2.0, 'since': 1.0, 'at': 3.0, 'i': 2.0, 'two': 2.0, 'was': 1.0, 'him': 1.0, '9': 1.0, 'just': 1.0, 'because': 1.0, 'time': 1.0, 'has': 1.0, 'lasted': 1.0, 'to': 5.0, 'seat': 3.0, 'all': 2.0, 'that': 1.0, 'in': 3.0, 'up': 1.0, 'wash': 1.0, 'different': 1.0, 'good': 1.0, 'complaints': 1.0, 'really': 1.0, 'level': 1.0, 'is': 2.0, 'neither': 1.0, 'off': 1.0, 'cover': 1.0, 'a': 5.0}
Word element => {'very': 1.0, 'seat': 1.0, 'stylish': 1.0, 'great': 1.0}
Word element => {'far': 1.0, 'sufficient': 1.0, 'been': 1.0, 'commuting': 1.0, 'use': 1.0, 'chrome': 1.0, 'switched': 1.0, 'we': 1.0, 'skip': 1.0, 'brands': 1.0, 'compared': 1.0, 'from': 1.0, 'feels': 1.0, 'strap': 1.0, 'are': 1.0, 'outside': 1.0, 'on': 1.0, 'holder': 1.0, 'water': 1.0, 'had': 1.0, 'gender': 1.0, 'carabiners': 1.0, 'bottle': 1.0, 'this': 1.0, 'perfect': 1.0, 'it': 8.0, 'stuff': 1.0, 'aren': 1.0, 'work': 2.0, 'but': 3.0, 'can': 2.0, 'so': 3.0, 'my': 2.0, 'or': 2.0, 'either': 1.0, 'both': 1.0, 'functional': 1.0, 'manly': 1.0, '34': 8.0, 'overly': 1.0, 'like': 1.0, 'have': 1.0, 'zipper': 1.0, 'top': 2.0, 'carry': 1.0, 'user': 1.0, 'aesthetic': 1.0, 'of': 3.0, 'the': 11.0, 'hop': 1.0, 'without': 1.0, 't': 1.0, 'a': 7.0, 's': 7.0, 'red': 1.0, 'way': 1.0, 'for': 4.0, 'and': 6.0, 'get': 1.0, 'sure': 1.0, 'match': 1.0, 'canvas': 1.0, 'not': 4.0, 'what': 1.0, 'when': 1.0, 'girly': 2.0, 'things': 1.0, 'you': 1.0, 'that': 3.0, 'easily': 1.0, 'where': 1.0, 'girl': 1.0, 'grey': 1.0, 'enough': 1.0, 'i': 5.0, 'well': 1.0, 'black': 2.0, 'plan': 1.0, 'is': 1.0, 'friends': 1.0, 'pacifier': 1.0, 'plain': 1.0, 'babies': 1.0, 'husband': 1.0, 'as': 2.0, 'bag': 3.0, 'functionality': 1.0, 'wish': 1.0, 'dispenser': 1.0, 'to': 4.0, 'pretty': 1.0, 'baby': 2.0, 'many': 1.0, 'got': 1.0, 'partner': 1.0, 'having': 1.0, 'confuse': 1.0, 'm': 1.0, 'in': 3.0, 'front': 2.0, 'carrier': 1.0, 'sling': 1.0, 'pocket': 2.0, 'here': 1.0, 'with': 1.0, 'pockets': 1.0, 'oh': 1.0, 'other': 2.0, 'no': 1.0, 'darn': 2.0, 'about': 1.0, 'one': 1.0, 'right': 1.0, 'll': 1.0, 'clean': 1.0, 'wipes': 2.0, 'stroller': 1.0, 'how': 1.0, 'flimsy': 1.0, 'your': 1.0, 'feel': 1.0, 'big': 1.0, 'built': 1.0, 'disposable': 2.0, 'whatevs': 1.0}
Word element => {'there': 1.0, 'so': 1.0, 'our': 1.0, 'hsnd': 1.0, 'the': 1.0, 'braslet': 1.0, 'with': 1.0, 'sits': 1.0, 'is': 1.0, 'really': 1.0, 'sturdy': 1.0, 'happy': 1.0, 'nice': 1.0, 'just': 1.0, 'but': 1.0, 'baby': 1.0, 'tighht': 1.0, 'it': 3.0, 'not': 1.0, 'was': 1.0, 'too': 1.0, 'fgor': 1.0}
Word element => {'rash': 1.0, 'wipes': 1.0, 'gave': 1.0, 'i': 1.0, 'one': 1.0, '100': 1.0, 'and': 1.0, 'do': 1.0, 'are': 1.0, 'my': 1.0, 'how': 1.0, 'her': 1.0, 'it': 1.0, 'cotton': 2.0, 'everything': 1.0, 'the': 1.0, 'these': 2.0, 'know': 1.0, 'not': 1.0, 'because': 1.0, 'little': 1.0, 'is': 1.0, 'alergic': 1.0, 'to': 1.0, 'but': 1.0}
Word element => {'you': 1.0, 'thank': 1.0, 'invitations': 1.0, 'send': 1.0, 'cards': 1.0, 'to': 2.0, 'friends': 1.0, 'and': 2.0, 'since': 1.0, 'the': 1.0, 'my': 1.0, 's': 1.0, 'grandson': 1.0, 'party': 1.0, 'family': 1.0, 'theme': 1.0, 'he': 1.0, 'so': 1.0, 'was': 2.0, 'ironman': 1.0, 'excited': 1.0}
Word element => {'hammock': 1.0, 'one': 1.0, 'provide': 1.0, 'if': 1.0, 'be': 1.0, 'would': 1.0, 'well': 1.0, 'great': 1.0, 'it': 2.0, 'sleep': 1.0, 'is': 1.0, 'a': 1.0, 'they': 2.0, 'cloth': 1.0, 'very': 2.0, 'and': 1.0, 'for': 1.0, 'more': 1.0, 'small': 1.0, 'nice': 1.0, 'babies': 1.0}
Word element => {'in': 1.0, 'go': 1.0, 'any': 1.0, 'by': 1.0, 'can': 1.0, 'if': 1.0, 'know': 1.0, 'not': 1.0, 'do': 1.0, 'a': 1.0, 'to': 2.0, 'store': 1.0, 'easy': 1.0, 'cute': 1.0, 'so': 1.0, 'is': 1.0, 'on': 1.0, 'makes': 1.0, 'box': 2.0, 'smaller': 1.0, 'you': 1.0, 'i': 2.0, 'buy': 1.0, 'tip': 1.0, 'tips': 1.0, 'q': 2.0, 'it': 2.0, 'this': 2.0, 'what': 1.0, 'trips': 1.0, 'then': 1.0, 'more': 1.0, 'the': 1.0, 'are': 1.0, 'carry': 1.0, 'at': 1.0}
Word element => {'my': 1.0, 'addition': 1.0, 'to': 1.0, 'be': 1.0, 'this': 1.0, 'is': 1.0, 'just': 1.0, 'great': 1.0, 'love': 1.0, 'it': 1.0, 'goodies': 1.0, 'stinking': 1.0, 'cute': 1.0, 'travel': 1.0, 'any': 1.0, 'a': 1.0, 'mickey': 1.0, 'fan': 1.0, 'will': 2.0}
Word element => {'best': 1.0, 'girl': 1.0, 'bought': 1.0, 'additional': 1.0, 'enough': 1.0, 'seem': 1.0, 'didn': 1.0, 'diaper': 1.0, 'heavy': 1.0, 'grow': 1.0, 'had': 1.0, 'ok': 1.0, 'time': 1.0, 'son': 1.0, 'old': 1.0, 'absolutely': 1.0, '34': 2.0, 'now': 2.0, 'weird': 1.0, 'etc': 1.0, 'i': 7.0, 'each': 1.0, 'm': 1.0, 'in': 1.0, 'this': 1.0, 'they': 3.0, 'leggings': 1.0, 'were': 1.0, 'into': 3.0, 'leaks': 1.0, 'inserts': 1.0, 'ones': 1.0, 'absorbency': 1.0, 'daughter': 1.0, 'several': 1.0, 'about': 1.0, 'ease': 1.0, 'and': 8.0, 'will': 1.0, 'also': 1.0, 'but': 3.0, 'pockets': 1.0, 'have': 4.0, 'different': 1.0, 'use': 1.0, 'her': 2.0, 'first': 1.0, 'diapers': 2.0, 'are': 4.0, 'sewn': 1.0, 'room': 2.0, 'these': 5.0, 't': 1.0, 'fit': 3.0, 'my': 4.0, 'favorite': 1.0, 'll': 1.0, 'he': 1.0, 'love': 1.0, 'fold': 1.0, 'still': 2.0, 'the': 8.0, 'of': 2.0, 'thirsties': 1.0, 'we': 2.0, 'small': 1.0, 'a': 1.0, 'an': 1.0, 'other': 1.0, '2': 1.0, 'wraps': 1.0, 'g': 1.0, 'that': 1.0, 'because': 4.0, 'having': 1.0, 'be': 2.0, 'helpful': 1.0, 'when': 1.0, 'colors': 1.0, 'start': 1.0, 'to': 5.0, 'dump': 1.0, 'wetter': 1.0, 'thinking': 1.0, 'sizing': 2.0, 'solids': 1.0, 'just': 1.0, 'night': 1.0, 'able': 1.0, 'types': 1.0, 'flip': 1.0, 'overall': 1.0, 'insert': 2.0, 'toilet': 1.0, 'at': 2.0, 'is': 2.0, 'for': 2.0, '10': 1.0, 'like': 2.0, 'baby': 1.0, 'she': 3.0, 'did': 1.0, 'alva': 1.0, 'not': 1.0, 'them': 1.0, 'great': 1.0, 'tried': 1.0, 'until': 1.0, 'lbs': 1.0, 'was': 2.0, 'thought': 1.0, 'states': 1.0, '9': 1.0, 'little': 1.0, 'so': 1.0, 'jammies': 1.0, 'onseies': 1.0, 'would': 1.0, 'weeks': 1.0, 'bulky': 1.0, 'properly': 1.0, 'put': 1.0, 'on': 1.0, 'year': 1.0}
Word element => {'with': 1.0, 'car': 1.0, 'them': 1.0, 'making': 1.0, 'have': 1.0, 'others': 1.0, 'several': 1.0, 'than': 1.0, 'my': 1.0, 'smaller': 1.0, 'were': 1.0, 'bonus': 1.0, 'and': 3.0, 'nephew': 1.0, 'blankets': 1.0, 'highly': 1.0, 'very': 1.0, 'as': 1.0, 'infant': 2.0, 'useful': 1.0, 'an': 2.0, 'slightly': 1.0, 'they': 1.0, 'cleaned': 1.0, 'are': 3.0, 'great': 1.0, 'these': 2.0, 'the': 2.0, 'easily': 1.0, 'in': 1.0, 'muslin': 1.0, 'perfect': 1.0, 'carriage': 1.0, 'friendly': 1.0, 'material': 1.0, 'for': 2.0, 'swaddling': 1.0, 'i': 2.0, 'use': 1.0, 'purchased': 1.0, 'added': 1.0, 'recommend': 1.0}
Word element => {'buy': 1.0, 'all': 1.0, 'the': 2.0, 'something': 1.0, 'look': 1.0, 'this': 1.0, 't': 1.0, 'doll': 3.0, 'i': 1.0, 'like': 2.0, 'if': 1.0, 'actually': 1.0, 'someone': 1.0, 'else': 1.0, 'at': 1.0, 'sat': 1.0, 'on': 1.0, 'don': 1.0}
Word element => {'problems': 1.0, 'washes': 1.0, 'up': 1.0, 'soft': 1.0, 'washer': 1.0, 'infant': 1.0, 'surface': 1.0, 'for': 2.0, 'and': 2.0, 'perfectly': 1.0, 'doll': 1.0, 'an': 1.0, 'a': 1.0, 'is': 2.0, 'quick': 1.0, 'it': 3.0, 'this': 1.0, 'with': 1.0, 'perfect': 1.0, 'wash': 1.0, 'cleaning': 1.0, 'no': 1.0, 'survives': 1.0, 'the': 1.0}
Word element => {'a': 1.0, 'product': 1.0, 'to': 1.0, 'would': 1.0, 'cute': 1.0, 'are': 1.0, 'too': 2.0, 'recommend': 1.0, 'she': 1.0, 'our': 1.0, 'this': 2.0, 'it': 2.0, 'can': 1.0, 'love': 1.0, 'for': 3.0, 's': 1.0, 'blanket': 1.0, 'buy': 1.0, 'i': 1.0, 'absoletely': 1.0, 'soft': 1.0, 'not': 2.0, 'very': 1.0, 'big': 1.0, 'girl': 2.0, 'smal': 1.0, 'so': 1.0, 'use': 1.0, 'awhile': 1.0, 'the': 1.0, 'baby': 2.0, 'colors': 1.0}
Word element => {'car': 1.0, 'attached': 1.0, 'gets': 1.0, 'seams': 1.0, 'bit': 1.0, 'tiny': 1.0, 'a': 1.0, 'cover': 1.0, 'tear': 1.0, 'cart': 1.0, 'shopping': 1.0, 'has': 1.0, 'made': 1.0, 'on': 1.0, 'guy': 1.0, 'good': 1.0, 'textures': 1.0, 'sure': 1.0, 'cute': 1.0, 'little': 2.0, 'washer': 1.0, 'super': 1.0, 'started': 1.0, 'just': 1.0, 'not': 1.0, 'fine': 1.0, 'really': 1.0, 'is': 1.0, 'plane': 1.0, 'only': 1.0, 'it': 7.0, 'this': 1.0, 'used': 1.0, 'before': 1.0, 'great': 1.0, 'the': 6.0, 'but': 1.0, 'quality': 1.0, 'i': 2.0, 'about': 1.0, 'colors': 1.0, 'tossed': 1.0, 'in': 2.0, 'and': 1.0, 'giving': 1.0, 'to': 3.0}
Word element => {'purchase': 1.0, 'this': 1.0, 'with': 1.0, 'happy': 1.0, 'stuff': 1.0, 'cute': 1.0, 'teething': 1.0, 'of': 1.0, 'very': 2.0, 'and': 2.0, 'unusual': 1.0, 'lots': 1.0, 'chew': 1.0, 'easy': 1.0, 'toy': 1.0, 'to': 2.0, 'hold': 1.0}
Word element => {'born': 1.0, 'she': 1.0, 'will': 1.0, 'when': 1.0, 'bear': 1.0, 'little': 1.0, 'new': 1.0, 'her': 1.0, 'soft': 1.0, 'bought': 1.0, 'gift': 1.0, 'love': 1.0, 'for': 4.0, 'great': 1.0, 'baby': 2.0, 'my': 2.0, 'gender': 1.0, 'is': 3.0, 'so': 1.0, 'he': 1.0, 'christmas': 1.0, 'sister': 1.0, 'first': 1.0, 'it': 2.0, 'this': 1.0, 'in': 1.0, 'perfect': 1.0, 'very': 1.0, 'and': 1.0, 'law': 1.0, 'unknown': 1.0, 'a': 2.0}
Word element => {'out': 1.0, 'of': 1.0, 'hair': 1.0, 'child': 1.0, 'for': 1.0, 'especially': 1.0, 'all': 1.0, 'removable': 1.0, 'doll': 1.0, 'this': 1.0, 'outfit': 1.0, 'buy': 1.0, 'easily': 1.0, 'a': 2.0, 'falls': 1.0, 'the': 3.0, 'is': 1.0, 'at': 1.0, 'was': 1.0, 'not': 2.0, 'very': 1.0, 'disappointing': 1.0}
Word element => {'cuddly': 1.0, 'soft': 1.0, 'car': 1.0, 'the': 1.0, 'in': 1.0, 'they': 1.0, 'when': 1.0, 'bedtime': 1.0, 'safe': 1.0, 'at': 1.0, 'her': 3.0, 'for': 2.0, 'month': 1.0, 'my': 1.0, '15': 1.0, 'granddaughter': 1.0, 'to': 1.0, 'much': 1.0, 'loves': 1.0, 'old': 1.0, 'i': 1.0, 's': 1.0, 'sent': 1.0, 'enjoys': 1.0, 'birthday': 1.0, 'she': 2.0, 'and': 5.0, 'ride': 1.0, 'so': 1.0, 'takes': 1.0, 'everywhere': 1.0, 'it': 4.0, 'this': 1.0, 'with': 1.0, 'especially': 1.0}
Word element => {'a': 1.0, 'care': 1.0, 'take': 1.0, 'us': 1.0, 'will': 1.0, 'she': 1.0, 'that': 1.0, 'and': 1.0, 'only': 1.0, 'granddaughter': 1.0, 'is': 1.0, 'boo': 2.0, 'let': 1.0, 'my': 1.0, 'the': 1.0, 'of': 1.0, 'really': 1.0, 'loves': 1.0, 'way': 1.0, 'it': 1.0, 'these': 1.0}
Word element => {'again': 1.0, 'has': 2.0, 'he': 4.0, 'it': 1.0, 'mama': 1.0, 'minor': 1.0, 'and': 1.0, 'get': 2.0, 'colors': 1.0, 'out': 2.0, 'white': 1.0, 'them': 1.0, 'for': 1.0, 'love': 1.0, 'these': 1.0, 'the': 2.0, 'year': 1.0, 'would': 1.0, 'boo': 6.0, 'cubes': 1.0, 'purchase': 1.0, 'my': 1.0, 'one': 2.0, 'color': 1.0, '3': 1.0, 'that': 1.0, 'loves': 2.0, 'or': 1.0, 'good': 1.0, 'makes': 1.0, 'old': 1.0, 'buy': 1.0, 'its': 1.0, 'him': 1.0, 'feel': 1.0, 'better': 1.0, 'if': 1.0, 'pick': 1.0, 'any': 1.0, 'to': 3.0, 'all': 1.0, 'which': 1.0, 'wants': 1.0, 'gets': 1.0, 'of': 1.0, 'daddy': 1.0, 'usually': 1.0, 'even': 1.0, 'we': 1.0, 'a': 1.0}
Word element => {'items': 1.0, 'with': 1.0, 'head': 1.0, 'top': 1.0, 'other': 1.0, 'anything': 1.0, 'personal': 1.0, 'really': 1.0, 'graphics': 1.0, 'in': 1.0, 'add': 1.0, 'piggy': 1.0, 'that': 1.0, 'room': 1.0, '5': 1.0, 'inches': 1.0, 'very': 2.0, 'to': 1.0, 'as': 1.0, 'coordinate': 1.0, 'only': 1.0, 'it': 3.0, 'this': 2.0, 'is': 2.0, 'i': 5.0, 'pig': 2.0, 'guess': 1.0, 'part': 1.0, 'small': 3.0, 'banks': 1.0, 'however': 1.0, 'don': 1.0, 'missed': 1.0, 'allow': 1.0, 'would': 1.0, 'the': 7.0, 'of': 4.0, 'mentioned': 1.0, 'being': 1.0, 'for': 2.0, 'product': 1.0, 'bow': 1.0, 'be': 2.0, 'three': 1.0, 'name': 1.0, 'medium': 1.0, 'definitely': 1.0, 'just': 1.0, 'large': 1.0, 'sizes': 1.0, 'size': 1.0, 'touch': 1.0, 'design': 1.0, 'amount': 1.0, 'cute': 1.0, 'else': 1.0, 'gift': 2.0, 'had': 1.0, 'intended': 1.0, 'think': 2.0, 'on': 4.0, 'like': 1.0, 'hand': 1.0, 'description': 1.0, 'and': 2.0, 'writing': 1.0, 's': 1.0, 't': 1.0, 'a': 4.0, 'will': 2.0, 'but': 1.0}
Word element => {'a': 1.0, 'like': 1.0, 'looked': 1.0, 'ourselves': 1.0, 'bank': 1.0, 'was': 1.0, 'at': 1.0, 'granddaughter': 1.0, 'the': 1.0, 'gave': 1.0, 'it': 3.0, 'our': 1.0, 'for': 1.0, 'toy': 1.0, 'liked': 1.0, 'to': 1.0, 'first': 1.0, 'her': 1.0, 'she': 1.0, 'birthday': 1.0}
Word element => {'cute': 1.0, 'in': 1.0, 'this': 1.0, 'have': 1.0, 'read': 1.0, 'better': 1.0, 'pretty': 1.0, 'maybe': 1.0, 'size': 1.0, 'but': 2.0, 'i': 1.0, 'hey': 1.0, 'is': 1.0, 'the': 1.0, 'my': 1.0, 'a': 2.0, 'create': 1.0, 'piggy': 1.0, 'for': 1.0, 'daughter': 1.0, 'small': 1.0, 'bank': 1.0, 'its': 1.0, 'to': 1.0, 'life': 1.0, 'should': 1.0, 'savings': 1.0}
Word element => {'quite': 1.0, 'see': 1.0, 'stolen': 1.0, 'replace': 1.0, 'bear': 1.0, 'new': 1.0, 'around': 1.0, 'to': 3.0, 'now': 1.0, 'good': 1.0, 'her': 1.0, 'both': 1.0, 'was': 1.0, 'daycare': 1.0, 'actually': 1.0, 'for': 2.0, 'expensive': 1.0, 'one': 1.0, 'bought': 1.0, 'so': 2.0, 'after': 1.0, 'arrival': 1.0, 'this': 1.0, 'first': 1.0, 'have': 1.0, 'i': 4.0, 'pink': 1.0, 'let': 1.0, 'at': 3.0, 'deal': 1.0, 'the': 4.0, 'my': 3.0, 'son': 2.0, '1yo': 1.0, 'while': 1.0, 'set': 4.0, 'of': 1.0, 'not': 1.0, 'kinda': 1.0, 'awaiting': 1.0, 'p': 1.0, 'but': 2.0, 'swap': 1.0, 'daughter': 1.0, 'hers': 1.0, 'out': 1.0, 'them': 1.0, 'it': 4.0, 'she': 2.0, 'home': 1.0, 'loves': 1.0, 'try': 1.0, 'much': 1.0, 'their': 1.0, 'had': 1.0, 'thought': 1.0, 'has': 1.0, 's': 2.0, 'a': 4.0, 'and': 1.0, 'blue': 2.0, 'looking': 1.0}
Word element => {'learning': 1.0, 'money': 1.0, 'about': 1.0, 'begin': 1.0, 'she': 1.0, 'because': 1.0, 'old': 1.0, 'bank': 1.0, 'saving': 1.0, 'is': 2.0, 'good': 1.0, 'way': 1.0, 'yrs': 1.0, 'of': 1.0, 'this': 1.0, 'a': 2.0, 'party': 1.0, '4': 1.0, 'her': 1.0, 'to': 1.0, 'was': 1.0, 'success': 1.0, 'partly': 1.0, 'the': 1.0}
Word element => {'again': 1.0, 'buy': 1.0, 'bank': 1.0, 'a': 1.0, 'purchase': 1.0, 'needs': 1.0, 'who': 1.0, 'anyone': 1.0, 'to': 2.0, 'this': 1.0, 'i': 2.0, 'is': 1.0, 'it': 2.0, 'love': 1.0, 'recommend': 1.0, 'so': 1.0, 'made': 1.0, 'cute': 1.0, 'and': 1.0, 'well': 1.0, 'would': 2.0}
Word element => {'the': 1.0, 'so': 1.0, 'for': 1.0, 'team': 1.0, 'super': 1.0, 'did': 1.0, 'cute': 1.0, 'his': 1.0, 'everyone': 1.0, 'gift': 1.0, 'coach': 1.0, 'on': 1.0, 'having': 1.0, 'idea': 1.0, 'was': 1.0, 'first': 1.0, 'baby': 1.0, 'and': 2.0, 'this': 1.0, 'loved': 1.0, 'we': 1.0}
Word element => {'there': 1.0, 'sit': 1.0, 'only': 1.0, 'own': 1.0, 'in': 2.0, 'next': 1.0, 'from': 1.0, 'very': 1.0, 'outfit': 1.0, 'is': 1.0, 'with': 1.0, 'christmas': 1.0, 'along': 1.0, 'santa': 1.0, 'so': 2.0, 'the': 2.0, 'my': 1.0, 'happy': 1.0, 'for': 1.0, 'daughter': 1.0, 'bear': 4.0, 'bed': 1.0, 'describes': 1.0, 'wanted': 2.0, 'sleep': 1.0, 'as': 1.0, 'to': 2.0, 'cinderella': 1.0, 'was': 2.0, 'i': 2.0, 'purchased': 1.0, 'bring': 1.0, 'blue': 1.0, 'she': 2.0, 'slightly': 1.0, 'her': 4.0, 'bab': 1.0, 'cradle': 1.0, 'disappointed': 1.0, 'also': 1.0, 'can': 1.0, 'but': 2.0, 'firm': 1.0, 'and': 2.0, 'princess': 2.0, 'not': 2.0, 'super': 1.0, 'this': 3.0, 'soft': 1.0, 'title': 1.0, 'have': 1.0, 'does': 1.0, 'flexible': 1.0, 'legs': 1.0, 'a': 2.0, 'could': 1.0}
Word element => {'happy': 1.0, 'quality': 1.0, 'great': 1.0, 'it': 1.0, 'but': 1.0, 'foot': 1.0, 'on': 1.0, 'stamped': 1.0, 'designer': 1.0, 'isn': 2.0, 'mainly': 1.0, 'slightly': 1.0, 'changed': 1.0, 'style': 1.0, 'love': 1.0, 'for': 1.0, 'opted': 1.0, 'face': 1.0, 'born': 1.0, 'have': 1.0, 'thing': 1.0, 'were': 1.0, 'that': 2.0, 'children': 1.0, 'first': 1.0, 'over': 1.0, 'child': 2.0, 'out': 1.0, 'third': 2.0, 'be': 1.0, 'my': 3.0, 'other': 1.0, 's': 2.0, 't': 2.0, 'a': 7.0, 'we': 5.0, 'surprise': 1.0, 'green': 1.0, 'and': 3.0, 'like': 1.0, 'when': 1.0, 'bear': 4.0, 'name': 1.0, 'daughter': 1.0, 'i': 4.0, 'm': 1.0, 'years': 1.0, 'both': 1.0, 'because': 1.0, 'would': 1.0, 'overall': 1.0, 'husband': 1.0, 'as': 1.0, 'our': 1.0, 'to': 2.0, 'was': 1.0, 'neutral': 1.0, 'now': 1.0, 'the': 10.0, 'purchased': 1.0, 'of': 2.0, 'once': 1.0, 'full': 1.0, 'this': 2.0, 'found': 1.0, 'gender': 3.0, 'still': 1.0, 'son': 1.0, 'pink': 1.0, 'has': 2.0, 'blue': 1.0, 'color': 2.0, 'planning': 1.0, 'bought': 1.0, 'one': 2.0, 'are': 1.0, 'want': 1.0, 'so': 1.0}
Word element => {'already': 1.0, 'you': 1.0, 'my': 1.0, 'of': 1.0, 'balls': 1.0, 'have': 1.0, 'all': 1.0, 'on': 1.0, 'daughters': 1.0, 'i': 1.0, 'check': 1.0, 'or': 1.0, 'into': 1.0, 'not': 1.0, 'would': 1.0, 'did': 1.0, 'make': 1.0, 'fit': 1.0, 'the': 1.0, 'these': 1.0, 'they': 1.0, 'to': 1.0, 'toys': 2.0, 'sure': 1.0, 'work': 1.0, 'will': 1.0, 'for': 1.0}
Word element => {'s': 1.0, 'it': 1.0, '10': 1.0, 'good': 1.0, 'balls': 1.0, 'the': 1.0, 'all': 1.0, 'lost': 1.0, 'i': 1.0, 'given': 1.0, 'was': 1.0, 'from': 1.0, 'a': 2.0, 'new': 1.0, 'friend': 1.0, 'used': 1.0, 'ballapalloza': 1.0, 'had': 1.0, 'as': 1.0, 'and': 2.0, 'she': 1.0}
Word element => {'do': 1.0, 'but': 1.0, 'them': 1.0, '5': 1.0, 'you': 1.0, 'what': 1.0, 'paying': 1.0, 'happier': 1.0, 'and': 1.0, 'the': 2.0, 'are': 1.0, 'balls': 1.0, 'can': 1.0, 'replacements': 1.0, 'exact': 1.0, 'i': 1.0, 'd': 1.0, 'for': 2.0, 'ballapaloseallthedamnballoza': 1.0, 'be': 1.0}
Word element => {'ballapalooza': 2.0, 'with': 1.0, 'love': 1.0, 'can': 1.0, 'balls': 1.0, 'of': 1.0, 'that': 1.0, 'set': 1.0, 'one': 1.0, 'had': 1.0, 'extra': 1.0, 'order': 1.0, 'two': 1.0, 'sets': 1.0, 'because': 1.0, 'dogs': 1.0, 'our': 1.0, 'to': 1.0, 'destroyed': 1.0, 'the': 4.0}
Word element => {'breathable': 1.0, 'durability': 1.0, 'same': 1.0, 'all': 1.0, 'ellevill': 1.0, 'girasol': 1.0, 'storchenwiege': 1.0, 'would': 1.0, 'these': 1.0, 'us': 1.0, 'obtained': 1.0, 'reasonably': 1.0, 'over': 1.0, 'choose': 1.0, 'made': 1.0, 'basic': 2.0, 'likely': 1.0, 'am': 1.0, 'deciding': 1.0, 'boba': 2.0, 'boy': 1.0, 'enough': 2.0, 'tight': 3.0, 'don': 1.0, 'isn': 1.0, 'bounce': 1.0, 'intend': 1.0, 'some': 1.0, 'very': 2.0, 'ways': 1.0, 'll': 2.0, 'on': 3.0, 'carry': 1.0, 'feel': 4.0, 'does': 1.0, 'than': 2.0, 'hard': 2.0, 'liked': 2.0, 'wrapped': 2.0, 'grippy': 2.0, 'keep': 1.0, 'book': 1.0, 'but': 3.0, 'left': 1.0, 'legs': 1.0, 'much': 2.0, 'far': 1.0, 'medium': 1.0, 'love': 2.0, 'how': 1.0, 'mail': 1.0, 'soft': 2.0, 'this': 8.0, 'be': 5.0, 'it': 9.0, 'thought': 1.0, 'he': 5.0, 'him': 2.0, 'already': 1.0, 'without': 1.0, 'didymos': 1.0, 'bamboo': 1.0, 'smaller': 1.0, 'use': 1.0, 'so': 6.0, 'like': 4.0, 'waist': 1.0, 'favorites': 1.0, 'two': 1.0, 'won': 2.0, '30lbs': 1.0, 'weave': 1.0, 'as': 5.0, 'heavy': 1.0, 'chicago': 1.0, 'hoppediz': 2.0, 'had': 2.0, 'can': 1.0, 'is': 8.0, 'at': 1.0, 'handle': 1.0, 'to': 13.0, 'pretty': 1.0, 'one': 3.0, 'too': 2.0, 'for': 3.0, 'fabric': 6.0, 'baby': 1.0, 'play': 1.0, 'about': 2.0, 'just': 2.0, 'and': 24.0, 'around': 5.0, 'lot': 1.0, 'his': 1.0, 'more': 3.0, 'fringe': 2.0, 'coming': 1.0, 'i': 29.0, 'found': 1.0, 'have': 8.0, 'need': 2.0, 'also': 2.0, 'me': 1.0, 'professional': 1.0, 'wrap': 10.0, 'the': 20.0, 'woven': 6.0, 'look': 2.0, 'stretchy': 4.0, 'shrink': 1.0, 'little': 1.0, 'wrapping': 4.0, 'my': 6.0, 'are': 1.0, 'bad': 1.0, 'things': 2.0, 'that': 3.0, 'because': 2.0, 'carriers': 1.0, 'pre': 1.0, '6': 1.0, 'employ': 1.0, 'personally': 1.0, 'safer': 1.0, 't': 7.0, 'a': 13.0, 'extensively': 1.0, 'doesn': 2.0, 'm': 1.0, 's': 2.0, 'size': 2.0, 'compare': 1.0, 'totally': 1.0, 'them': 1.0, 'sometimes': 1.0, 'cross': 1.0, 'hand': 1.0, 'front': 2.0, 'fact': 1.0, 'of': 6.0, 'even': 2.0, 'old': 2.0, 'different': 2.0, 'not': 1.0, 'other': 2.0, 'an': 2.0, 'get': 2.0, 'wraps': 7.0, 'however': 1.0, 'differently': 1.0, 'habits': 1.0, 'double': 1.0, 'with': 5.0, 'using': 1.0, 'extra': 1.0, 'another': 1.0, 'stretched': 1.0, 'back': 2.0, 'twice': 2.0, 'researched': 1.0, 'third': 1.0, 'supported': 1.0, 'time': 2.0, 'color': 1.0, 'wide': 1.0, 'die': 1.0, 'stirrups': 1.0, 'core': 1.0, 'didn': 1.0, 'eventually': 1.0, 'in': 5.0, 'dangle': 1.0, 'really': 3.0, 'better': 2.0, 'bought': 2.0, 'months': 1.0, 'felt': 1.0, 'cards': 1.0, 'xl': 1.0, 'came': 1.0, 'will': 1.0, 'could': 2.0, 'brand': 1.0, 'guy': 1.0, 'was': 2.0, 'wish': 1.0, 'figure': 1.0, 'until': 1.0, 'toddler': 1.0, 'easier': 1.0, 'needed': 1.0, 'stronger': 1.0, 'repeatedly': 1.0, 'strength': 2.0, 'out': 2.0, 'dvd': 1.0, 'tie': 1.0, 'many': 1.0, 'where': 1.0, 'gets': 1.0, 'big': 2.0, 'ellaroo': 2.0, 'bumper': 1.0, 'by': 1.0, 'washing': 1.0, 'up': 1.0, 'close': 1.0, 'methods': 1.0, 'has': 1.0, 'instructional': 1.0, 'crossed': 1.0, 'information': 1.0, 'literature': 1.0, 'almost': 1.0, 'sticker': 1.0, 'reviews': 1.0, 'before': 1.0, 'they': 2.0, 'overall': 1.0}
Word element => {'easily': 1.0, 'oz': 1.0, '2': 1.0, 'than': 1.0, 'or': 1.0, 'hold': 1.0, 'not': 1.0, 'did': 1.0, 'so': 1.0, 'were': 1.0, 'more': 1.0, 'small': 1.0, 'stiff': 1.0, 'clean': 1.0, 'hard': 1.0, 'well': 1.0, 'rigid': 1.0, 'much': 1.0, 'to': 1.0, 'they': 2.0, 'fill': 2.0, 'very': 2.0, 'and': 2.0}
Word element => {'on': 1.0, 'have': 1.0, 'pouches': 1.0, 'buy': 1.0, 'just': 1.0, 'rather': 2.0, 'd': 1.0, 'theory': 1.0, 'in': 1.0, 'great': 1.0, 'breaks': 1.0, 'style': 1.0, 'also': 1.0, 'loc': 1.0, 'are': 1.0, 'fairly': 1.0, 'zip': 1.0, 'tiny': 1.0, 'really': 1.0, 'is': 1.0, 'now': 1.0, 'to': 3.0, 'was': 1.0, 'idea': 1.0, 'easily': 1.0, 'am': 1.0, 'when': 2.0, 'daughter': 1.0, 'old': 1.0, 'hand': 1.0, 'like': 2.0, 'option': 1.0, 'hassle': 1.0, 'use': 2.0, 'some': 1.0, 'these': 2.0, 's': 1.0, 'a': 2.0, 't': 2.0, 'microwaved': 1.0, 'the': 3.0, 'closure': 1.0, 'for': 4.0, 'applesauce': 1.0, 'mess': 1.0, 'i': 4.0, 'etc': 1.0, 'hungry': 1.0, 'my': 1.0, 're': 1.0, 'with': 1.0, 'quick': 1.0, 'daily': 1.0, 'eating': 1.0, '12': 1.0, 'didn': 1.0, 'them': 1.0, 'clean': 1.0, 'or': 1.0, 'she': 2.0, 'month': 1.0, 'purees': 1.0, 'but': 1.0, 'can': 1.0, 'mostly': 1.0, 'opening': 2.0, 'than': 1.0, 'because': 2.0, 'difficult': 1.0, 'they': 3.0, 'be': 1.0, 'frozen': 1.0, 'and': 1.0, 'very': 1.0, 'needs': 1.0, 'so': 1.0}
Word element => {'one': 1.0, 'claim': 1.0, 'of': 1.0, 'amount': 1.0, 'hold': 2.0, 'they': 2.0, 'clean': 1.0, 'fill': 1.0, 'not': 2.0, 'difficult': 1.0, 'particularly': 1.0, 'like': 1.0, 'do': 1.0, 'and': 1.0, 'reusable': 2.0, 'broke': 1.0, 'at': 1.0, 'pouches': 2.0, 'i': 1.0, 'open': 1.0, 'to': 3.0, 'three': 1.0, 'but': 1.0, 'zipper': 1.0, 'with': 1.0, 'hard': 1.0, 'it': 2.0, 'first': 1.0, 'only': 1.0, 'problem': 1.0, 'main': 1.0, 'that': 2.0, 'is': 1.0, 'on': 1.0, 'these': 1.0, 'the': 2.0, 'all': 2.0, 'use': 1.0, 'food': 1.0, 'so': 1.0, 'after': 1.0, 'word': 1.0, 's': 1.0, 'are': 1.0, 'actually': 1.0, 'a': 1.0}
Word element => {'care': 1.0, 'much': 1.0, 'don': 1.0, 'it': 2.0, 'sometimes': 1.0, 's': 1.0, 'but': 2.0, 'use': 2.0, 'too': 1.0, 'lazy': 1.0, 'for': 2.0, 'in': 1.0, 'to': 1.0, 'bag': 1.0, 'bad': 1.0, 'i': 1.0, 'not': 2.0, 't': 1.0, 'the': 1.0, 'cleaning': 1.0, 'is': 1.0, 'very': 1.0, 'good': 1.0, 'quite': 1.0, 'convenient': 1.0, 'a': 1.0, 'manner': 1.0}
Word element => {'opinion': 1.0, 'product': 1.0, 'designed': 1.0, 'work': 1.0, 'and': 1.0, 'too': 1.0, 'way': 1.0, 'spoon': 1.0, 'bowl': 1.0, 'in': 2.0, 'sauce': 1.0, 'her': 1.0, 'have': 1.0, 'would': 1.0, 'toddler': 1.0, 'my': 2.0, 'than': 1.0, 'made': 2.0, 'm': 1.0, 'messy': 1.0, 'very': 2.0, 'at': 1.0, 'not': 2.0, 'they': 1.0, 'well': 2.0, 'apple': 1.0, 'other': 1.0, 'that': 2.0, 'so': 2.0, 'agree': 1.0, 'sure': 1.0, 'get': 1.0, 'throw': 2.0, 'mess': 1.0, 'i': 6.0, 'was': 1.0, 'with': 2.0, 'buying': 1.0, 'all': 1.0, 'as': 1.0, 'to': 3.0, 'had': 2.0, 'excited': 1.0, 'instead': 1.0, 'given': 1.0, 'usable': 1.0, 'pouches': 3.0, 'do': 1.0, 'try': 1.0, 'much': 3.0, 'these': 3.0, 're': 1.0, 'it': 4.0, 'useless': 1.0, 'a': 3.0, 'could': 1.0, 'hardly': 1.0, 'proof': 1.0, 'lock': 1.0, 'leak': 1.0, 'of': 2.0, 'more': 1.0, 'is': 1.0, 'completely': 1.0, 'them': 3.0, 'open': 1.0, 'from': 1.0, 'even': 1.0, 'away': 3.0, 'fill': 1.0, 'the': 2.0, 'without': 1.0, 'one': 1.0, 'hold': 1.0, 'using': 1.0, 'reviewers': 1.0, 'are': 2.0, 'zip': 1.0, 'never': 1.0, 'opened': 1.0, 'just': 3.0, 'also': 1.0, 'tore': 1.0, 'side': 1.0, 'filling': 1.0, 'leaving': 1.0, 'definitely': 1.0, 'ever': 1.0}
Word element => {'pouchesnext': 1.0, 'squeezees': 1.0, 'tryingez': 1.0, 'be': 1.0, 'will': 1.0, 'refillable': 1.0, 'chinai': 1.0, 'in': 1.0, 'made': 1.0, 'with': 1.0, 'issue': 1.0, 'clean': 1.0, 'still': 1.0, 'bottom': 1.0, 'topsgusset': 1.0, 'maybe': 1.0, 'not': 1.0, 'shows': 1.0, 'side': 1.0, 'its': 1.0, 'much': 1.0, 'nearly': 1.0, 'pouchesyummi': 1.0, 't': 1.0, 'a': 1.0, 'reusable': 1.0, 'pros': 2.0, 'the': 2.0, 'these': 1.0, 'feel': 1.0, '1': 1.0, 'few': 1.0, 'oz': 1.0, 'something': 1.0, 'following': 1.0, 'for': 2.0, 'hold': 1.0, 'using': 1.0, 'squeezestandard': 1.0, 'i': 2.0, 'old': 1.0, 'through': 1.0, 'purchased': 1.0, 'set': 1.0, 'pouches': 1.0, 'ounces': 1.0, 'after': 1.0, 'so': 1.0, 'small': 1.0, 'yummi': 2.0, 'fill': 1.0, 'weeks': 1.0, 'pouch': 2.0, 'cleandoesn': 1.0, 'you': 1.0, 'cons': 1.0, 'way': 1.0, 'food': 1.0, '2': 1.0, 'but': 1.0, 'can': 1.0, 'size': 1.0, '5': 1.0, 'opening': 1.0, '6': 1.0, 'how': 2.0, 'found': 1.0, 'full': 1.0, 'see': 2.0, 'cleanfeeding': 1.0, 'all': 1.0, 'as': 2.0, 'to': 4.0, 'of': 1.0, 'spout': 1.0, '3': 1.0, 'on': 1.0, 'switch': 1.0, 'topflexible': 1.0, 'year': 1.0, 'easy': 1.0, 'outcons': 1.0, 'and': 4.0, 'too': 1.0, 'caps': 1.0, 'hard': 2.0}
Word element => {'open': 1.0, 'to': 3.0, 'had': 1.0, 'its': 1.0, 'these': 1.0, 'great': 2.0, 'the': 4.0, 'baby': 1.0, 'pouches': 1.0, 'for': 1.0, 'fill': 1.0, 'kind': 2.0, 'sure': 1.0, 'bottoms': 1.0, 'were': 1.0, 'that': 1.0, 'easier': 1.0, 'own': 1.0, 'my': 1.0, 're': 2.0, 'it': 2.0, 'annoying': 1.0, 'make': 2.0, 'of': 2.0, 'i': 1.0, 'time': 1.0, 'they': 2.0, 'motivation': 1.0, 'be': 2.0, 'll': 1.0, 'a': 1.0, 'since': 2.0, 'pain': 1.0, 'butt': 1.0, 'and': 1.0, 'stiff': 1.0, 'in': 1.0, 'useable': 1.0, 'work': 1.0, 'food': 1.0, 'can': 1.0, 'but': 2.0, 'clean': 1.0, 'stiffness': 1.0, 'completely': 1.0, 'is': 1.0, 'understood': 1.0, 'overall': 1.0}
Word element => {'away': 1.0, 'is': 1.0, 'herself': 1.0, '14': 1.0, 'oatmeal': 1.0, 'in': 1.0, 'for': 1.0, 'versions': 1.0, 'yet': 1.0, 'easier': 1.0, 'these': 1.0, 'the': 2.0, 'old': 1.0, 'our': 1.0, 'to': 5.0, 'was': 1.0, 'yogurt': 1.0, 'easy': 1.0, 'use': 2.0, 'since': 1.0, 'we': 1.0, 'might': 1.0, 'a': 1.0, 'and': 2.0, 'quick': 1.0, 'us': 1.0, 'morning': 1.0, 'there': 1.0, 'it': 1.0, 'month': 1.0, 'spoon': 1.0, 'feed': 1.0, 'be': 1.0, 'funnel': 1.0, 'clean': 1.0, 'load': 1.0, 'if': 1.0, 'not': 1.0, 'unable': 1.0, 'bad': 1.0, 'though': 1.0, 'definitely': 1.0, 'are': 1.0, 'fairly': 1.0, 'helped': 1.0, 'save': 1.0, 'money': 1.0, 'on': 1.0, 'throw': 1.0}
Word element => {'from': 1.0, 'go': 1.0, 'growth': 1.0, 'bacteria': 1.0, 'bag': 1.0, 'difficult': 1.0, 'stand': 1.0, 'when': 1.0, 'gusseted': 1.0, 'they': 3.0, '5': 1.0, 'out': 3.0, 'prefer': 1.0, 'after': 2.0, 'squooshi': 3.0, 'try': 1.0, 'food': 2.0, '2': 1.0, 'animal': 2.0, 'found': 1.0, 'ready': 1.0, 'kids': 1.0, 'could': 1.0, 'imagine': 1.0, 'a': 2.0, 'the': 10.0, 'these': 1.0, 'getting': 2.0, 'fairly': 2.0, 't': 4.0, 'along': 1.0, 'stops': 1.0, 'reusable': 1.0, 'stuck': 1.0, 'bought': 1.0, 'be': 1.0, 'open': 1.0, 'fridge': 3.0, 'job': 1.0, 'to': 7.0, 'personally': 1.0, 'zip': 1.0, 'clean': 2.0, 'very': 2.0, 'wanted': 1.0, 'done': 1.0, 'about': 1.0, 'no': 1.0, 'as': 2.0, 'smoothies': 1.0, 'i': 8.0, 'have': 3.0, 'you': 1.0, 'able': 1.0, 'kiddos': 1.0, 'if': 1.0, 'rinse': 1.0, 'an': 1.0, 'quickly': 2.0, 'use': 2.0, 'get': 1.0, 'performance': 1.0, 'in': 4.0, 'air': 1.0, 'we': 1.0, 'excess': 1.0, 'corners': 1.0, 'just': 1.0, 'bring': 1.0, 'having': 1.0, 'don': 3.0, 'isn': 1.0, 'pouches': 3.0, 'issue': 1.0, 'for': 1.0, 'my': 3.0, 'me': 1.0, 'also': 1.0, 'boring': 1.0, 'can': 1.0, 'comparison': 1.0, 'so': 1.0, 'bottom': 2.0, 'far': 1.0, 'bang': 1.0, 'and': 5.0, 'washed': 1.0, 'there': 1.0, 'them': 6.0, 'has': 1.0, 'been': 1.0, 'into': 1.0, 'issues': 1.0, 'with': 1.0, 'both': 1.0, 'dry': 1.0, 'shake': 1.0, 'favorite': 1.0, 'up': 2.0, 'water': 1.0, 'pop': 1.0, 'are': 4.0, 'cute': 1.0, 'lock': 1.0}
Word element => {'bottle': 1.0, 'helps': 1.0, 'baby': 1.0, 'found': 1.0, 'i': 1.0, 'hardest': 1.0, 'bag': 1.0, 'meets': 1.0, 'mouthpiece': 1.0, 'where': 1.0, 'pain': 1.0, 'a': 2.0, 'is': 2.0, 'cleaning': 2.0, 'inside': 1.0, 'but': 2.0, 'especially': 1.0, 'fit': 1.0, 'have': 1.0, 'you': 1.0, 'cleaner': 1.0, 'does': 1.0, 'the': 6.0, 'using': 1.0, 'for': 1.0, 'which': 1.0, '5oz': 1.0, 'some': 1.0, 'ok': 1.0, 'overall': 1.0, 'to': 1.0, 'be': 1.0, 'expand': 1.0, 'bottom': 1.0, 'hard': 1.0, 'can': 1.0, 'priceit': 1.0, 'times': 1.0, 'also': 1.0, 'filling': 1.0}
Word element => {'to': 1.0, 'had': 1.0, 'and': 1.0, 'failed': 1.0, 'closure': 1.0, 's': 1.0, 'bag': 2.0, 'of': 1.0, 'one': 1.0, 'can': 1.0, 'it': 2.0, 'tossed': 1.0, 'transparent': 1.0, 'fact': 1.0, 'is': 1.0, 'volume': 1.0, 'that': 1.0, 'the': 4.0, 'unfortunately': 1.0, 'like': 1.0, 'contain': 1.0, 'i': 2.0, 'think': 1.0, 'or': 1.0, 'uses': 1.0, 'should': 1.0, 'be': 2.0, 'less': 1.0, 'increased': 1.0, 'than': 1.0, '5': 1.0, 'after': 1.0, 'so': 1.0}
Word element => {'over': 1.0, 'bust': 1.0, 'won': 1.0, 'that': 1.0, 'ensure': 1.0, 'worth': 1.0, 'think': 1.0, 'open': 2.0, 'be': 1.0, 'm': 1.0, 'us': 1.0, 'kids': 1.0, 'would': 1.0, 'out': 1.0, 'them': 1.0, 'figure': 1.0, 'really': 2.0, 'time': 1.0, 'took': 1.0, 'i': 4.0, 'one': 1.0, 'for': 3.0, 'love': 1.0, 'wanted': 1.0, 'spill': 1.0, 'was': 1.0, 'reusable': 1.0, 'and': 3.0, 'me': 1.0, 'it': 3.0, 'have': 2.0, 'to': 4.0, 'all': 2.0, 'chose': 1.0, 'pouches': 1.0, 'at': 1.0, 'which': 2.0, 'crucial': 1.0, 'glad': 1.0, 'haven': 1.0, 'some': 2.0, 'these': 1.0, 's': 1.0, 'a': 1.0, 't': 2.0, 'the': 2.0, 'zip': 1.0, 'are': 1.0, 'leaked': 1.0, 'easy': 1.0, 'pouch': 1.0, 'use': 1.0, 'my': 1.0, 'they': 2.0, 'double': 1.0, 'hard': 1.0, 'while': 1.0, 'part': 1.0, 'food': 1.0, 'but': 1.0, 'work': 1.0, 'can': 1.0}
Word element => {'ordering': 1.0, 'quickly': 1.0, 'very': 1.0, 'receive': 1.0, 'affordable': 1.0, 'super': 1.0, 'easy': 1.0, 'a': 3.0, 'convenient': 1.0, 'own': 1.0, 'clean': 1.0, 'personally': 1.0, 'they': 1.0, 'showers': 1.0, 'use': 2.0, 'recommend': 1.0, 'store': 1.0, 'it': 3.0, 'this': 2.0, 'sister': 1.0, 'product': 2.0, 'love': 2.0, 'too': 1.0, 'moms': 1.0, 'and': 5.0, 'purse': 1.0, 'navy': 1.0, 'food': 1.0, 'work': 1.0, 'after': 1.0, 'pouches': 2.0, 'i': 5.0, 'gift': 1.0, 'as': 1.0, 'to': 4.0, 'baby': 1.0, 'current': 1.0, 'is': 2.0, 'need': 1.0, 'snack': 1.0, 'anyone': 1.0, 'giving': 1.0, 'healthy': 1.0, 'inexpensive': 1.0, 'lot': 1.0, 'at': 1.0, 'who': 1.0, 'easily': 1.0, 'my': 4.0, 'fits': 1.0, 'in': 3.0, 'how': 1.0, 'while': 1.0, 'that': 1.0, 'pilot': 1.0, 'the': 1.0, 'these': 2.0, 'uses': 1.0, 'flight': 1.0, 'are': 2.0}
Word element => {'recommend': 1.0, 'this': 1.0, 't': 1.0, 'don': 1.0, 's': 1.0, 'it': 1.0, 'i': 1.0, 'one': 1.0, 'product': 1.0, 'to': 2.0, 'the': 1.0, 'so': 1.0, 'ziplock': 1.0, 'type': 1.0, 'open': 1.0, 'seal': 1.0, 'hard': 2.0, 'off': 1.0, 'clean': 1.0, 'broke': 1.0, 'useless': 1.0, 'on': 1.0}
Word element => {'baby': 1.0, 'hazard': 1.0, 'not': 1.0, 'as': 1.0, 'walls': 1.0, 'they': 1.0, 'home': 1.0, 'at': 1.0, 'taped': 1.0, 'in': 1.0, 'a': 1.0, 'since': 1.0, 'when': 1.0, 'us': 2.0, 'so': 1.0, 'plugged': 1.0, 'are': 1.0, 'kit': 1.0, 'monitor': 1.0, 'our': 1.0, 'take': 1.0, 'cords': 1.0, 'is': 1.0, 'we': 2.0, 'this': 1.0, 'with': 1.0, 'it': 1.0, 'be': 1.0, 'travel': 1.0, 'allows': 1.0, 'to': 4.0, 'keep': 1.0, 'always': 1.0, 'of': 1.0, 'all': 1.0, 'great': 1.0, 'the': 3.0}
Word element => {'you': 1.0, 'photo': 1.0, 'thank': 1.0, 'in': 1.0, 'looked': 1.0, 'seems': 1.0, 'pretty': 2.0, 'the': 1.0, 'made': 1.0, 'too': 1.0, 'cheaply': 1.0, 'will': 1.0, 'give': 1.0, 'it': 2.0, 'a': 1.0, 'bad': 1.0, 'try': 1.0}
Word element => {'own': 1.0, 'carry': 1.0, 'boy': 1.0, 'little': 1.0, 'stuck': 1.0, 'getting': 1.0, 'some': 1.0, 'about': 1.0, 'm': 1.0, 'i': 1.0, 'big': 1.0, 'handle': 1.0, 'face': 1.0, 'able': 1.0, 'was': 2.0, 'towels': 1.0, 'he': 2.0, 'soft': 2.0, 'this': 1.0, 'it': 6.0, 'to': 2.0, 'seat': 1.0, 'of': 2.0, 'up': 1.0, 'isn': 1.0, 'right': 2.0, 'car': 1.0, 'blanket': 3.0, 'body': 1.0, 'like': 1.0, 'covering': 1.0, 'hooded': 1.0, 'head': 2.0, 'part': 1.0, 'while': 1.0, 'his': 5.0, 'unstuff': 1.0, 'use': 1.0, 'for': 3.0, 'one': 1.0, 'in': 3.0, 'my': 2.0, 'happy': 1.0, 'but': 1.0, 'monkey': 3.0, 'small': 1.0, 'without': 1.0, 'the': 5.0, 'enough': 1.0, 're': 1.0, 'house': 1.0, 'son': 2.0, 'is': 2.0, 'really': 3.0, 'too': 2.0, 'and': 5.0, 'assistance': 1.0, 'that': 2.0, 'thought': 1.0, 't': 1.0, 's': 4.0, 'a': 3.0, 'put': 1.0, 'stuff': 1.0, 'on': 2.0, 'worried': 1.0, 'just': 2.0, 'wrapped': 1.0}
Word element => {'around': 1.0, 'carrying': 1.0, 'kids': 1.0, 'and': 1.0, 's': 1.0, 'love': 1.0, 'one': 1.0, 'biggest': 1.0, 'my': 1.0, 'the': 3.0, 'little': 1.0, 'cuddly': 1.0, 'cute': 1.0, 'otherwise': 1.0, 'convenient': 1.0, 'a': 1.0, 'is': 3.0, 'however': 1.0, 'that': 1.0, 'irritating': 1.0, 'blankie': 1.0, 'it': 2.0, 'this': 1.0, 'problem': 1.0, 'in': 1.0, 'area': 1.0, 'fold': 1.0, 'of': 2.0, 'blanket': 1.0, 'kind': 1.0}
Word element => {'dry': 1.0, 'good': 1.0, 'give': 1.0, 'enough': 1.0, 'long': 1.0, 'toddler': 1.0, 'from': 1.0, 'nicely': 1.0, 'washes': 1.0, 'also': 1.0, 'person': 1.0, 'every': 1.0, 'buddy': 1.0, 'or': 1.0, 'colored': 1.0, 'pillow': 1.0, 'along': 1.0, 'carry': 1.0, 'little': 1.0, 'cute': 3.0, 'soft': 1.0, 'pictures': 1.0, 'this': 1.0, 'was': 1.0, 'squeals': 1.0, 'bit': 1.0, 'so': 5.0, 'can': 1.0, 'smiles': 1.0, 'daughter': 1.0, 'traveling': 1.0, 'when': 2.0, 'and': 4.0, 'unit': 1.0, 'vividly': 1.0, 'couldn': 1.0, 'folds': 1.0, 'get': 2.0, 'favorite': 1.0, 'far': 2.0, 'of': 2.0, 'turned': 1.0, 'offers': 1.0, 'wash': 1.0, 'up': 2.0, 'critter': 1.0, 'owl': 1.0, 'is': 2.0, 'adorable': 1.0, 'motifs': 1.0, 'skip': 1.0, 'my': 1.0, 'hop': 1.0, 'as': 2.0, 'to': 3.0, 'all': 2.0, 'mail': 1.0, 'away': 2.0, 'delight': 1.0, 'itself': 1.0, 'in': 4.0, 'it': 8.0, 'she': 3.0, 'wait': 1.0, 'a': 2.0, 's': 2.0, 't': 1.0, 'we': 2.0, 'could': 1.0, 'the': 5.0, 'wrap': 1.0, 'unfolded': 1.0, 'love': 1.0, 'how': 1.0, 'into': 1.0, 'make': 1.0}
Word element => {'animal': 1.0, 'different': 1.0, 'second': 1.0, 'need': 1.0, 'by': 1.0, 'carry': 1.0, 'one': 2.0, 'for': 1.0, 'little': 2.0, 'going': 1.0, 'we': 1.0, 'a': 5.0, 'right': 1.0, 'face': 1.0, 'their': 1.0, 'with': 1.0, 'lay': 1.0, 'they': 1.0, 'against': 1.0, 'so': 1.0, 'backpack': 1.0, 'kind': 1.0, 'non': 1.0, 'yo': 1.0, 'was': 1.0, 'to': 5.0, 'inside': 2.0, 'handle': 1.0, 'scratching': 1.0, 'car': 1.0, 'himself': 2.0, 'i': 2.0, 'way': 1.0, 'it': 8.0, 'perfect': 1.0, 'soft': 1.0, 'this': 2.0, 'he': 2.0, 'velcro': 1.0, 'even': 1.0, 'got': 1.0, 'its': 1.0, 'try': 1.0, 'loves': 1.0, 'in': 1.0, 'turn': 1.0, 'often': 1.0, 'my': 1.0, 'keep': 1.0, 'thing': 1.0, 'head': 1.0, 'are': 1.0, 'blanket': 1.0, 'like': 1.0, 'which': 1.0, 'bc': 1.0, 'when': 3.0, 'folded': 2.0, 'around': 1.0, 'holds': 1.0, 'plan': 1.0, 'is': 2.0, 'out': 1.0, 'finds': 1.0, 'and': 1.0, 'scratch': 1.0, 'restuff': 1.0, 'nicest': 1.0, 'up': 2.0, '2': 1.0, 'but': 1.0, 'can': 2.0, 'the': 5.0, 'without': 1.0, 'think': 1.0, 'on': 2.0, 'likes': 1.0, 'has': 2.0, 'super': 1.0}
Word element => {'will': 1.0, 'at': 1.0, 'blankets': 1.0, 'pillow': 1.0, 'a': 1.0, 'use': 1.0, 'can': 1.0, 'of': 1.0, 'up': 1.0, 'when': 1.0, 'to': 1.0, 'easy': 1.0, 'so': 1.0, 'folded': 1.0, 'is': 3.0, 'as': 1.0, 'son': 1.0, 'throw': 1.0, 'sleep': 2.0, 'loves': 1.0, 'with': 1.0, 'only': 1.0, 'he': 2.0, 'it': 5.0, 'blanket': 1.0, 'car': 1.0, 'monkey': 1.0, 'my': 1.0, 'the': 2.0, 'overs': 1.0, 'in': 1.0, 'one': 1.0, 'for': 1.0, 'road': 1.0, 'trips': 1.0, 'his': 1.0, 'daycare': 2.0, 'and': 2.0, 'soft': 1.0}
Word element => {'quite': 1.0, 'isn': 1.0, 'since': 1.0, 'out': 1.0, 'house': 2.0, 'in': 2.0, 'him': 2.0, 'it': 3.0, 'he': 3.0, 'only': 1.0, 'old': 1.0, 'the': 6.0, 'playing': 1.0, 'handle': 1.0, 'year': 1.0, 'travel': 1.0, 'zip': 1.0, 'blanket': 2.0, 'pretend': 1.0, 'carry': 1.0, 'really': 1.0, 'new': 1.0, 'level': 1.0, 'is': 4.0, 'around': 2.0, 'favorite': 1.0, 'road': 1.0, 'of': 1.0, 'yet': 1.0, 'or': 1.0, 'that': 3.0, 'loves': 1.0, '4': 1.0, 'taking': 1.0, 'car': 1.0, 'himself': 1.0, 'downside': 1.0, 'trip': 1.0, 'our': 1.0, 'to': 4.0, 'for': 3.0, 'grandparents': 1.0, 'perfect': 1.0, 'this': 2.0, 'soft': 1.0, 'and': 2.0, 'so': 1.0, 'monkey': 1.0, 'can': 1.0, 'by': 1.0, 't': 1.0, 'a': 2.0, 'we': 1.0, 'have': 1.0, 'constantly': 1.0}
Word element => {'looked': 1.0, 'bit': 1.0, 'stuffed': 1.0, 'something': 1.0, 'pocket': 1.0, 'up': 1.0, 'railing': 1.0, 'fold': 1.0, 'still': 1.0, 'wants': 1.0, 'tried': 1.0, 'things': 1.0, 'other': 1.0, 'mushed': 1.0, 'daughter': 1.0, 'until': 1.0, 'bring': 1.0, 'great': 1.0, 'top': 1.0, 'handle': 1.0, 'like': 1.0, 'hold': 2.0, 'version': 1.0, 'to': 4.0, 'as': 2.0, 'year': 1.0, 'almost': 1.0, 'into': 1.0, 'loves': 1.0, 'blanket': 3.0, 'about': 2.0, 'of': 1.0, 'another': 1.0, 'my': 2.0, 'or': 1.0, 'yet': 1.0, 'love': 1.0, 'for': 2.0, 'bed': 1.0, 'the': 8.0, 'see': 1.0, 'along': 1.0, 'did': 1.0, 'stairs': 1.0, 'go': 1.0, 'a': 3.0, 'we': 2.0, 'goes': 1.0, 'carry': 1.0, 'nap': 1.0, 'since': 1.0, 'three': 2.0, 'got': 1.0, 'this': 1.0, 'again': 1.0, 'easily': 2.0, 'when': 1.0, 'two': 1.0, 'i': 6.0, 'old': 1.0, 'point': 1.0, 'easy': 1.0, 'sure': 1.0, 'was': 2.0, 'now': 1.0, 'not': 3.0, 'worried': 1.0, 'just': 2.0, 'however': 1.0, 'it': 9.0, 'she': 2.0, 'has': 1.0, 'on': 1.0, 'put': 1.0, 'down': 3.0, 'long': 1.0, 'her': 1.0, 'receiving': 1.0, 'too': 1.0, 'and': 5.0, 'ladybug': 3.0, 'have': 1.0, 'around': 1.0, 'is': 1.0, 'in': 2.0}
Word element => {'there': 1.0, 'bottle': 1.0, 'between': 1.0, 've': 1.0, 'good': 1.0, 'will': 1.0, 'rings': 1.0, 'pink': 1.0, 'part': 1.0, 'stick': 1.0, 'caps': 2.0, 'from': 1.0, 'decided': 1.0, 'received': 1.0, 'input': 1.0, 'bulky': 1.0, 'nicely': 1.0, 'center': 1.0, 'as': 1.0, 'to': 2.0, 'other': 2.0, 'found': 1.0, 'this': 2.0, 'it': 2.0, 'units': 1.0, 'unit': 1.0, 'we': 1.0, 'a': 2.0, 'actually': 1.0, 'fit': 2.0, 'for': 6.0, 'seemed': 1.0, 'baby': 1.0, 'designed': 1.0, 'thanks': 1.0, 'am': 1.0, 'not': 1.0, 'give': 1.0, 'little': 1.0, 'most': 1.0, 'but': 2.0, 'i': 3.0, 'try': 1.0, 'either': 1.0, 'that': 2.0, 'reviewers': 1.0, 'are': 2.0, 'made': 1.0, 'bottles': 4.0, 'or': 1.0, 'and': 3.0, 'green': 1.0, 'too': 2.0, 'tall': 1.0, 'using': 1.0, 'hold': 1.0, 'my': 1.0, 'was': 1.0, 'unfortunately': 1.0, 'remain': 1.0, 'sodastream': 3.0, 'counters': 1.0, '34': 4.0, 'sticks': 2.0, 'on': 1.0, 'the': 11.0, 'orange': 1.0}
Word element => {'now': 1.0, 'sink': 1.0, 'under': 1.0, 'sitting': 1.0, 'originally': 1.0, 'bold': 1.0, 'are': 1.0, 'wore': 1.0, 'colors': 1.0, 'seeing': 1.0, 'drying': 1.0, 'the': 2.0, 'my': 2.0, 'while': 1.0, 'at': 1.0, 'of': 3.0, 'job': 1.0, 'clunky': 1.0, 'a': 1.0, 'does': 1.0, 'it': 6.0, 'counter': 1.0, 'i': 1.0, 'but': 2.0, 'sick': 1.0, 'on': 2.0, 'loved': 1.0, 'got': 1.0, 'looking': 1.0, 's': 2.0, 'after': 1.0, 'kinda': 1.0, 'me': 1.0, 'and': 2.0}
Word element => {'problems': 1.0, 'anyone': 1.0, 'to': 1.0, 'cleaning': 1.0, 'no': 1.0, 'recommend': 1.0, 'would': 1.0, 'perfect': 1.0, 'i': 1.0, 'is': 1.0, 'a': 1.0, 'size': 1.0, 'very': 1.0, 'and': 1.0, 'cute': 1.0, 'love': 1.0, 'it': 2.0, 'works': 1.0, 'well': 1.0}
Word element => {'still': 1.0, 'feeling': 1.0, 'have': 1.0, 'this': 1.0, 'different': 1.0, 'new': 1.0, 'going': 1.0, 'a': 2.0, 'love': 1.0, 'product': 1.0, 'returned': 1.0, 'immediately': 1.0, 'already': 1.0, 'packaged': 1.0, 'assume': 1.0, 'only': 1.0, 'but': 1.0, 'can': 1.0, 'experience': 1.0, 'package': 2.0, 'noticed': 1.0, 'excited': 1.0, 'it': 2.0, 'was': 7.0, 'sent': 2.0, 'from': 1.0, 'received': 1.0, 'ordered': 2.0, 'drying': 4.0, 'disappointed': 1.0, 'beaba': 1.0, 'opened': 1.0, 'broken': 3.0, 'am': 1.0, 'when': 1.0, 'to': 3.0, 'actual': 1.0, 'website': 1.0, 'the': 12.0, 'damaged': 1.0, 'box': 1.0, 'that': 2.0, 'however': 1.0, 'prongs': 1.0, 'upset': 1.0, 'very': 2.0, 'rack': 5.0, 'and': 3.0, 'one': 2.0, 'amazon': 1.0, 'aimlessly': 1.0, 'packaging': 1.0, 'once': 1.0, 'of': 2.0, 'completely': 1.0, 'bottle': 1.0, 'smaller': 1.0, 'i': 10.0, 'purple': 1.0, 'quickly': 1.0, 'floating': 1.0, 'bottom': 1.0, 'inside': 1.0, 'on': 2.0, 'off': 1.0, 'since': 1.0, 'came': 1.0, 'in': 2.0, 'me': 2.0, 'not': 1.0}
Word element => {'gift': 1.0, 'of': 1.0, 'part': 1.0, 'snack': 1.0, 'great': 1.0, 'friends': 1.0, 'so': 1.0, 'since': 1.0, 'mostly': 1.0, 'do': 1.0, 'they': 2.0, 'run': 1.0, 'weekends': 1.0, 'stroller': 1.0, 'dishwasher': 1.0, 'in': 2.0, 'are': 1.0, 'eats': 1.0, 'buy': 1.0, 'jogging': 1.0, 'her': 1.0, 'take': 1.0, 'week': 1.0, 'just': 1.0, 'few': 1.0, 'use': 2.0, 'will': 1.0, 'nothing': 1.0, 'herself': 1.0, 'wash': 1.0, 'errands': 2.0, 'mom': 1.0, 'running': 1.0, 'went': 1.0, 'eat': 1.0, 'out': 2.0, 'baby': 1.0, 'them': 4.0, 'holder': 1.0, 'design': 1.0, 'for': 2.0, 'snacks': 2.0, 'cup': 1.0, 'or': 1.0, 'pay': 1.0, 'still': 1.0, 'holding': 1.0, 'cute': 1.0, 'all': 1.0, 'as': 1.0, 'cups': 1.0, 'to': 3.0, 'spill': 1.0, 'was': 1.0, 'now': 1.0, 'old': 1.0, 'i': 7.0, 'fine': 1.0, 'start': 1.0, 'such': 1.0, 'these': 2.0, 'the': 6.0, 'a': 4.0, 'we': 2.0, 't': 1.0, 'times': 1.0, 'when': 4.0, 'daughter': 1.0, '6': 1.0, 'about': 1.0, 'bought': 1.0, 'months': 1.0, 'uses': 1.0, 'is': 1.0, 'really': 1.0, 'on': 1.0, 'think': 1.0, '3': 1.0, 'and': 4.0, 'new': 1.0, 'would': 1.0, 'didn': 1.0, 'even': 1.0, 'attention': 1.0, 'she': 5.0, 'it': 1.0, 'often': 1.0, 'my': 2.0, 'fact': 1.0, 'loves': 1.0, 'that': 2.0, 'but': 1.0, 'can': 1.0, 'hand': 1.0, 'know': 1.0, 'hold': 1.0}
Word element => {'than': 1.0, 'size': 1.0, 'though': 1.0, 'out': 2.0, 'throwing': 1.0, 'base': 1.0, 'market': 1.0, 'reasonably': 1.0, 'from': 1.0, 'gets': 1.0, 'joins': 1.0, 'plastic': 1.0, 'light': 1.0, '3': 1.0, 'guest': 1.0, 'i': 2.0, 'luck': 1.0, 'real': 2.0, 'through': 1.0, 'level': 1.0, 'mid': 1.0, 'it': 4.0, 'covers': 5.0, 'call': 2.0, 'over': 3.0, 'nearly': 1.0, 'don': 2.0, '7': 1.0, 'up': 1.0, 'snap': 2.0, 'spending': 1.0, 'top': 2.0, 'which': 1.0, 'good': 1.0, 'cover': 1.0, 'lid': 5.0, 'find': 3.0, 'to': 10.0, 'all': 1.0, 'impossible': 1.0, 'you': 4.0, 'when': 1.0, 'look': 1.0, 'is': 3.0, 'at': 1.0, 'costly': 1.0, 'useful': 1.0, 'are': 2.0, 'product': 2.0, 'for': 2.0, 'kids': 1.0, 'time': 1.0, 'lose': 1.0, 'and': 5.0, 'mossworld': 2.0, 'or': 1.0, 'need': 1.0, 'get': 2.0, 'lids': 2.0, 'end': 2.0, 'do': 1.0, 'paid': 1.0, 'company': 2.0, 'only': 1.0, 'amazing': 1.0, 'pieces': 1.0, 'school': 1.0, 'great': 1.0, 'they': 4.0, 'trap': 1.0, 'not': 1.0, 'by': 1.0, 'but': 3.0, 'so': 5.0, 'can': 3.0, 'money': 1.0, 'as': 2.0, 'addictively': 1.0, 'anymore': 1.0, 'ok': 2.0, 'take': 1.0, 'then': 2.0, 'we': 1.0, 'vendor': 1.0, 't': 4.0, 'a': 5.0, 'them': 4.0, 'replace': 1.0, 'place': 2.0, 'expect': 1.0, 'sorts': 1.0, 'the': 15.0, 'of': 4.0, 'places': 1.0, 'sell': 1.0, 'their': 2.0, 'just': 2.0, 'join': 1.0, 'stuff': 1.0, 'on': 1.0, 'if': 1.0, 'see': 1.0, 'really': 1.0, 'sale': 1.0, 'have': 3.0, 'actual': 1.0, 'lot': 1.0, 'one': 2.0, '18': 1.0, 'schools': 1.0, 'amazon': 1.0, 'finally': 1.0, 'something': 1.0, 'ship': 1.0, 'toddlers': 1.0, 'buy': 2.0, 'some': 1.0, 'different': 1.0, 'purporting': 1.0, 'in': 1.0, 'be': 1.0, 'because': 1.0, 'that': 2.0, 'keep': 1.0, 'did': 1.0, 'makes': 1.0, 'facebook': 1.0, 'this': 1.0, 'page': 1.0}
Word element => {'that': 1.0, 'cup': 1.0, 'a': 1.0, 'have': 1.0, 'of': 1.0, 'rather': 1.0, 'i': 3.0, 'old': 1.0, 'out': 3.0, 'and': 3.0, 'in': 1.0, 'gets': 1.0, 'cups': 1.0, 'to': 2.0, 'though': 1.0, 'get': 1.0, 'easy': 2.0, 'hands': 1.0, 'the': 3.0, 'these': 1.0, 'shakes': 1.0, 'better': 1.0, 'eat': 1.0, 'if': 1.0, 'keep': 1.0, 'little': 1.0, 'than': 1.0, 'because': 1.0, 'just': 1.0, 'are': 2.0, 'much': 1.0, 'lids': 1.0, 'it': 2.0, 'competition': 1.0, 'month': 1.0, 'soft': 1.0, 'will': 1.0, 'an': 1.0, 'my': 1.0, 'eye': 1.0, '15': 1.0, 'bored': 1.0, 'upside': 1.0, 'down': 1.0, 'her': 1.0, 'for': 1.0, 'snacks': 1.0, 'but': 1.0, 'can': 1.0, 'is': 1.0, 'say': 1.0, 'fall': 1.0, 'make': 1.0, 'on': 1.0, 'd': 1.0}
Word element => {'but': 1.0, 'cover': 1.0, 'came': 1.0, 'them': 1.0, 'both': 1.0, 'a': 2.0, 'pack': 1.0, 'decided': 1.0, 'each': 1.0, 'trap': 1.0, 'snack': 2.0, 'only': 1.0, 'with': 1.0, 'this': 1.0, 'loved': 1.0, 'course': 1.0, 'is': 2.0, 'there': 1.0, 'of': 2.0, 'design': 1.0, 'in': 1.0, 'one': 1.0, 'for': 2.0, 'that': 1.0, 'my': 1.0, 'dollar': 1.0, 'and': 3.0, 'i': 3.0, 'save': 1.0, 'found': 1.0, 'bpa': 1.0, 'free': 1.0, '2': 1.0, 'the': 2.0, 'these': 1.0, 'alas': 1.0, 'neighborhood': 1.0, 'store': 1.0, 'to': 1.0, 'selling': 1.0, 'wish': 1.0, 'go': 1.0, '5': 1.0}
Word element => {'not': 1.0, 'messes': 1.0, 'sure': 1.0, 'prevent': 1.0, 'little': 1.0, 'perfect': 1.0, 'they': 2.0, 'price': 1.0, 'on': 1.0, 'well': 1.0, 'a': 1.0, 'market': 1.0, 'and': 3.0, 're': 1.0, 'my': 1.0, 'are': 3.0, 'to': 1.0, 'fingers': 1.0, 'now': 1.0, 'for': 3.0, 'brand': 1.0, 'down': 1.0, 'used': 1.0, 'the': 3.0, 'these': 1.0, 'this': 1.0, 'have': 1.0, 'snack': 1.0, 'worth': 1.0, 'ordered': 1.0, 'i': 2.0, 'that': 1.0, 'son': 1.0, 'best': 1.0, 'last': 1.0, 'mention': 1.0, 'hands': 1.0, 'daughter': 1.0, 'cups': 1.0}
Word element => {'my': 1.0, 'money': 1.0, 'pictured': 1.0, 'were': 1.0, 'want': 1.0, 'a': 1.0, 'with': 1.0, 'arrive': 1.0, 'back': 1.0, 'opened': 1.0, 'did': 1.0, 'box': 1.0, 'as': 1.0, 'very': 1.0, 'and': 2.0, 'they': 2.0, 'i': 2.0, 'musty': 1.0, 'not': 2.0, 'lid': 1.0, 'this': 1.0, 'smelled': 1.0}
Word element => {'of': 1.0, 'ordering': 1.0, 'be': 1.0, 'trim': 1.0, 'cloth': 1.0, 'burp': 1.0, 'as': 1.0, 'those': 1.0, 'use': 1.0, 'has': 1.0, 'outgrown': 1.0, 'lbs': 1.0, 'ultra': 1.0, '16': 1.0, 'ended': 1.0, 'though': 1.0, 'great': 2.0, '2': 1.0, 'about': 1.0, 'bulky': 1.0, 'these': 1.0, 'ordered': 1.0, 'll': 1.0, 'lb': 1.0, 'still': 1.0, 'son': 1.0, 'more': 1.0, 'is': 3.0, 'really': 1.0, '5': 2.0, 'bumpkins': 2.0, 'month': 1.0, 'so': 1.0, 'smaller': 1.0, 'my': 2.0, 'osocozy': 2.0, 'absorbency': 1.0, 'working': 1.0, 'old': 2.0, 'are': 2.0, 's': 1.0, 'a': 2.0, 'size': 5.0, 'right': 1.0, 'and': 7.0, 'the': 8.0, 'prefolds': 1.0, 'reach': 1.0, 'lot': 1.0, 'both': 1.0, 'up': 1.0, '3': 2.0, 'on': 1.0, 'i': 4.0, '4': 1.0, 'months': 1.0, 'than': 1.0, 'because': 1.0, '14': 1.0, 'now': 3.0, 'out': 1.0, 'update': 1.0, 'fit': 1.0, 'for': 1.0, 'first': 1.0, '6': 1.0, 'he': 1.0}
Word element => {'ages': 1.0, 'a': 1.0, 'will': 1.0, 'theme': 1.0, 'put': 1.0, 'an': 1.0, 'turquoise': 1.0, 'up': 1.0, 'feet': 2.0, 'came': 1.0, 'piece': 1.0, 'with': 1.0, 'become': 1.0, 'i': 3.0, 'my': 3.0, 'along': 1.0, 'to': 2.0, 'use': 2.0, 'gray': 1.0, 'sturdy': 1.0, 'is': 3.0, 'it': 2.0, 'looks': 1.0, 'anything': 1.0, 'chair': 1.0, 'and': 3.0, 'get': 1.0, 'nursing': 1.0, 'since': 1.0, 'elephants': 1.0, 'beautiful': 1.0, 'ottoman': 2.0, 'height': 1.0, 'this': 3.0, 'perfect': 1.0, 'in': 1.0, 'cannot': 1.0, 'for': 2.0, 'love': 1.0, 'bought': 1.0, 'one': 1.0, 'stays': 1.0, 'of': 1.0, 'rather': 1.0, 'than': 1.0, 'without': 1.0, 'the': 2.0, 'place': 1.0, 'ugly': 1.0, '300': 1.0, 'that': 1.0, 'later': 1.0}
Word element => {'use': 1.0, 'to': 1.0, 'was': 1.0, 'i': 1.0, 'decorating': 1.0, 'again': 1.0, 'kids': 1.0, 'kinda': 1.0, 'fun': 1.0, 'of': 1.0, 'more': 1.0, 'the': 1.0, 'a': 1.0, 'lot': 1.0, 'items': 1.0, 'and': 1.0, 'love': 1.0, 'great': 1.0, 'wish': 1.0, 'look': 1.0, 'in': 1.0, 'room': 1.0, 'having': 2.0}
Word element => {'in': 1.0, 'too': 1.0, 'plus': 1.0, 'baby': 1.0, 'it': 2.0, 's': 1.0, 'seem': 1.0, 'filled': 2.0, 'bean': 1.0, 'bag': 1.0, 'but': 1.0, 'didn': 1.0, 'a': 1.0, 'that': 1.0, 'sinking': 1.0, 't': 1.0, 'the': 1.0, 'far': 1.0, 'prevent': 1.0, 'was': 1.0, 'to': 3.0, 'be': 2.0, 'enough': 1.0, 'has': 1.0, 'firmer': 1.0, 'from': 1.0}
Word element => {'can': 1.0, 'if': 1.0, 'days': 1.0, 'for': 1.0, 'think': 1.0, 'after': 1.0, 'my': 1.0, 'may': 1.0, 'few': 1.0, 'just': 1.0, 'together': 1.0, 'look': 1.0, 'thought': 1.0, 'what': 1.0, 'vibrant': 1.0, 'pictures': 1.0, 'neon': 1.0, 'better': 1.0, 'return': 1.0, 'way': 1.0, 'you': 1.0, 'a': 4.0, 'item': 1.0, 'also': 1.0, 'nice': 1.0, 'good': 2.0, 'surprised': 1.0, 'purchasing': 1.0, 'shade': 4.0, 'quality': 1.0, 'almost': 1.0, 'sturdy': 1.0, 'disappointing': 1.0, 'heavy': 1.0, 'the': 12.0, 'in': 2.0, 'itself': 1.0, 'received': 1.0, 'expected': 1.0, 'bit': 1.0, 'much': 1.0, 'husband': 1.0, 'shape': 2.0, 'out': 1.0, 'along': 1.0, 'is': 4.0, 'throw': 1.0, 'lamp': 3.0, 'than': 2.0, 'with': 1.0, 'which': 1.0, 'coordinating': 1.0, 'about': 1.0, 'today': 1.0, 'pillows': 1.0, 'i': 4.0, 'and': 4.0, 'green': 1.0, 'portray': 1.0, 'however': 1.0, 'frame': 1.0, 'was': 1.0, 'bent': 1.0, 'expect': 1.0, 'of': 1.0, 'me': 1.0, 'not': 2.0, 'round': 1.0, 'fix': 1.0, 'from': 1.0, 'brighter': 1.0, 'colors': 3.0, 'are': 2.0}
Word element => {'years': 1.0, 'the': 1.0, 'gifts': 1.0, 'few': 1.0, 'baby': 1.0, 'i': 1.0, 'such': 1.0, 'these': 1.0, 'bought': 1.0, 'last': 1.0, 'over': 1.0, 'almost': 1.0, 'give': 1.0, 'a': 2.0, 'as': 1.0, 'dozen': 1.0, 'of': 1.0, 'wonderful': 1.0, 'have': 1.0, 'sshlumpies': 1.0, 'toy': 1.0, 'to': 1.0}
Word element => {'immediately': 1.0, 'returning': 1.0, 'its': 1.0, 'frame': 1.0, 'same': 1.0, 'few': 1.0, 'not': 1.0, 'difficult': 1.0, 'bassinet': 1.0, 'are': 2.0, 'to': 2.0, 'as': 1.0, 'very': 2.0, 'zippers': 1.0, 'feel': 1.0, 'it': 1.0, 'cheap': 2.0, 'the': 4.0, 'more': 1.0, 'is': 2.0, 'rattles': 1.0, 'size': 1.0, 'so': 1.0, 'close': 1.0, 'no': 1.0, 'assembly': 1.0, 'handle': 1.0, 'bother': 1.0, 'text': 1.0, 'way': 1.0, 'would': 1.0, 'pages': 1.0, 'they': 2.0, 'last': 1.0, 'than': 1.0, 't': 1.0, 'a': 1.0, 'months': 1.0, 'instructions': 1.0, '30': 1.0, 'of': 1.0, 'that': 1.0, 'primary': 1.0, 'drawings': 1.0, 'didn': 1.0, 'even': 1.0, 'write': 1.0, 'loose': 1.0, 'out': 1.0}
Word element => {'didn': 1.0, 'but': 1.0, 'bag': 2.0, 'a': 1.0, 'stuff': 1.0, 'started': 1.0, 'diaper': 1.0, 'great': 1.0, 't': 2.0, 'the': 1.0, 'ago': 1.0, 'two': 2.0, 'months': 1.0, 'don': 1.0, 'about': 1.0, 'item': 1.0, 'we': 1.0, 'along': 1.0, 'have': 3.0, 'and': 3.0, 'be': 1.0, 'bought': 1.0, 'i': 3.0, 'one': 1.0, 'tearing': 1.0, 'would': 1.0, 'sides': 1.0, 'survive': 1.0, 'if': 1.0, 'with': 1.0, 'this': 3.0, 'it': 1.0, 'children': 1.0, 'so': 1.0, 'am': 1.0, 'much': 1.0, 'thinking': 1.0, 'you': 1.0}
Word element => {'isn': 1.0, 'but': 1.0, 'job': 1.0, 'amazing': 1.0, 'bag': 1.0, 'columbia': 1.0, 'closest': 1.0, 'price': 1.0, 'this': 1.0, 'it': 2.0, 'that': 1.0, 'does': 1.0, 'reasonable': 1.0, 'could': 1.0, 'for': 1.0, 'a': 2.0, 'perfect': 1.0, 'i': 2.0, 't': 1.0, 'great': 1.0, 'diaper': 1.0, 'the': 2.0, 'find': 1.0, 'was': 2.0, 'had': 1.0, 'to': 1.0, 's': 1.0, 'okay': 1.0, 'and': 1.0}
Word element => {'picture': 1.0, 'than': 1.0, 'little': 1.0, 'is': 1.0, 'it': 1.0, 'the': 2.0, 'diaper': 1.0, 'a': 2.0, 'bag': 1.0, 'smaller': 1.0, 'many': 1.0, 'material': 1.0, 'has': 1.0, 'good': 1.0, 'colors': 1.0, 'only': 1.0, 'pockets': 1.0, 'and': 1.0}
Word element => {'required': 1.0, 'is': 1.0, 'washing': 1.0, 'not': 1.0, 'work': 1.0, 'our': 1.0, 'little': 1.0, 'clean': 1.0, 'for': 1.0, 'in': 1.0, 'cups': 1.0, 'well': 1.0, 'leak': 1.0, 'no': 1.0, 'do': 1.0, 'and': 1.0, 'wonderfully': 1.0, 'are': 1.0, 'ones': 1.0, 'these': 1.0, 'the': 1.0, 'they': 2.0, 'tolerated': 1.0, 'dishwasher': 1.0, 'easily': 1.0, 'hand': 1.0}
Word element => {'too': 1.0, 'promptly': 1.0, 'very': 1.0, 'for': 1.0, 'little': 1.0, 'size': 1.0, 'a': 1.0, 'arrived': 1.0, 'them': 1.0, 'are': 1.0, 'my': 1.0, 'these': 1.0, 'they': 1.0, 'expected': 1.0, '18': 1.0, 'perfect': 1.0, 'just': 1.0, 'what': 1.0, 'hands': 1.0, 'goes': 1.0, 'i': 1.0, 'old': 1.0, 'grandson': 1.0, 'month': 1.0, 'carries': 1.0, 'everywhere': 1.0, 'he': 1.0}
Word element => {'laugh': 1.0, 'month': 1.0, '5': 1.0, 'with': 1.0, 'grandson': 1.0, 'play': 1.0, 'old': 1.0, 'to': 1.0, 'infants': 1.0, 'they': 3.0, 'bold': 1.0, 'not': 1.0, 'done': 1.0, 'my': 1.0, 'make': 1.0, 'are': 2.0, 'small': 1.0, 'colors': 1.0, 'bright': 1.0, 'too': 1.0, 'in': 1.0, 'for': 1.0}
Word element => {'am': 1.0, 'off': 1.0, 'ripped': 1.0, 'feeling': 1.0, 'purchase': 1.0, 'made': 1.0, 'have': 1.0, 'not': 1.0, 'very': 1.0, 'for': 1.0, 'listed': 1.0, 'the': 1.0, 'details': 2.0, 'product': 2.0, 'it': 1.0, 'misleading': 1.0, 'only': 1.0, 'this': 2.0, 'amazon': 1.0, 'is': 1.0, 'if': 1.0, 'your': 1.0, 'clear': 1.0, 'i': 2.0, 'returning': 1.0, 'were': 1.0, 'that': 1.0, 'you': 1.0, 'would': 2.0, 'receive': 1.0, '1': 1.0, 'item': 1.0, 'donut': 1.0}
Word element => {'washable': 1.0, 'very': 1.0, 'cushioned': 1.0, 'encased': 1.0, 'is': 1.0, 'small': 1.0, 'old': 1.0, 'soft': 1.0, 'immediately': 1.0, 'perfect': 1.0, 'machine': 1.0, 'to': 1.0, 'was': 1.0, 'granddaughter': 1.0, 'colors': 1.0, 'constructed': 1.0, 'month': 1.0, 'it': 2.0, 'our': 1.0, 'attracted': 1.0, 'the': 2.0, 'infants': 1.0, 'hands': 1.0, 'chime': 2.0, 's': 2.0, 'and': 5.0, 'shape': 1.0, 'well': 3.0, 'bright': 1.0, 'a': 1.0, 'for': 1.0, 'size': 1.0, 'toddlers': 1.0}
Word element => {'got': 1.0, 'happy': 1.0, 'family': 1.0, 'promptly': 1.0, 'arrived': 1.0, 'toy': 1.0, 'enjoyed': 1.0, 'it': 4.0, 'i': 2.0, 'hitwith': 1.0, 'understand': 1.0, 'was': 1.0, 'a': 2.0, 'present': 1.0, 'made': 1.0, 'the': 3.0, 'parents': 1.0, 'and': 2.0, 'thebaby': 1.0, 'really': 1.0}
Word element => {'for': 1.0, 'set': 1.0, '29': 1.0, 'mart': 1.0, '99': 1.0, 'the': 2.0, 'in': 1.0, 'came': 1.0, 'after': 1.0, 'good': 1.0, 'or': 2.0, 'tearing': 1.0, 'shrinking': 1.0, 'is': 1.0, 'same': 1.0, 'ripping': 1.0, 'well': 1.0, 'offering': 1.0, 'when': 1.0, 'washes': 1.0, 'product': 1.0, 'my': 1.0, 'complaint': 1.0, 'that': 1.0, 'mail': 1.0, 'only': 1.0, 'it': 2.0, 'wall': 1.0, 'way': 1.0, 'was': 2.0, 'dried': 1.0, 'priced': 1.0, 'over': 1.0, 'no': 1.0, 'two': 1.0, 'days': 1.0}
Word element => {'for': 1.0, 'which': 1.0, 'heavy': 1.0, 'isn': 1.0, 'comforter': 1.0, 'bed': 1.0, 't': 1.0, 'this': 1.0, 'bedding': 1.0, 'him': 1.0, 'great': 1.0, 'love': 1.0, 'it': 1.0, 'very': 2.0, 's': 1.0, 'cute': 1.0, 'is': 2.0, 'on': 1.0, 'son': 1.0, 'the': 1.0, 'my': 1.0}
Word element => {'an': 1.0, 'had': 1.0, 'never': 1.0, 'them': 2.0, 'old': 1.0, 'like': 1.0, 'nice': 1.0, 'loves': 1.0, 'almost': 1.0, 'set': 1.0, 'soft': 1.0, 'cute': 1.0, 'everything': 1.0, 'a': 1.0, 'has': 1.0, 'they': 1.0, 'with': 1.0, 'it': 1.0, 'this': 1.0, 'issue': 1.0, 'and': 2.0, 'comfy': 1.0, 'is': 2.0, 'looks': 1.0, '2': 1.0, 'such': 1.0, 'the': 1.0, 'my': 1.0, 'picture': 1.0, 'year': 1.0, 'must': 1.0, 'be': 1.0, 'just': 1.0, 'because': 1.0}
Word element => {'bedding': 1.0, 'boy': 1.0, 'new': 1.0, 'loves': 1.0, 'sleep': 1.0, 'his': 2.0, 'hot': 1.0, 'gets': 1.0, 'naturally': 1.0, 'who': 1.0, 'big': 1.0, 'son': 2.0, 'my': 2.0, 'the': 3.0, 'are': 1.0, 'soft': 1.0, 'how': 1.0, 'comforter': 2.0, 'i': 1.0, 'and': 1.0, 'for': 1.0, 'stunned': 1.0, 'pretty': 1.0, 'to': 1.0, 'was': 1.0, 'feel': 1.0, 'particular': 1.0, 'sheets': 1.0, 's': 1.0, 'set': 1.0, 'is': 1.0, 'thin': 1.0, 'but': 1.0, 'in': 2.0, 'perfect': 1.0, 'this': 1.0, 'it': 1.0}
Word element => {'soft': 1.0, 'blanket': 1.0, 'nice': 1.0, 'and': 1.0, 'quality': 1.0, 'great': 1.0, 'for': 1.0, 'a': 1.0, 'my': 1.0, 'perfect': 1.0, 'monsters': 1.0, 'his': 1.0, 'inc': 1.0, '2yr': 1.0, 'fit': 1.0, 'this': 1.0, 'old': 1.0, 'room': 1.0, 'son': 1.0, 'is': 1.0, 'obsessed': 1.0, 'with': 1.0, 'was': 1.0}
Word element => {'great': 1.0, 'shipping': 1.0, 'plus': 1.0, '15': 1.0, 'worth': 1.0, 'comforter': 1.0, 'taggies': 1.0, 'cute': 1.0, 'very': 1.0, 'stickers': 2.0, 'it': 1.0, 'with': 2.0, 'dollars': 1.0, 'only': 1.0, 'peel': 1.0, 'stick': 3.0, 'looked': 1.0, 'did': 1.0, 'getting': 1.0, 'decor': 1.0, 'regret': 1.0, 'the': 3.0, 'just': 1.0, 'said': 1.0, 'one': 1.0, 'for': 1.0, 'i': 5.0, 'bad': 1.0, 'them': 3.0, 'since': 1.0, 'there': 1.0, 'up': 3.0, 'was': 1.0, 'as': 3.0, 'to': 3.0, 'now': 1.0, 'review': 3.0, 'well': 1.0, 'scotch': 1.0, 'wall': 2.0, 'are': 2.0, 'staying': 1.0, 'right': 1.0, 'work': 1.0, 'but': 2.0, 'these': 1.0, 'some': 2.0, 'tape': 1.0, 'hold': 1.0, 'like': 1.0, 'were': 1.0, 'they': 4.0, 'bearly': 1.0, 'got': 1.0, 'even': 1.0, 'sticking': 1.0, 'and': 1.0, 'soon': 1.0, 'not': 2.0, 'those': 1.0, 'put': 2.0, 'on': 1.0}
Word element => {'well': 1.0, 'similar': 1.0, 'order': 1.0, 'would': 1.0, 'perfect': 1.0, 'future': 1.0, 'price': 2.0, '2': 1.0, 'worth': 1.0, 'olds': 1.0, 'in': 1.0, 'for': 1.0, 'year': 1.0, 'crib': 1.0, 'stores': 1.0, 'good': 1.0, 'the': 1.0, 'retail': 1.0, 'my': 1.0, 'compartive': 1.0, 'product': 1.0, 'to': 1.0}
Word element => {'product': 1.0, 'asking': 1.0, 'her': 2.0, 'she': 1.0, 'thanks': 1.0, 'kept': 1.0, 'so': 1.0, 'too': 1.0, 'new': 1.0, 'i': 1.0, 'and': 1.0, 'me': 1.0, 'was': 1.0, 'to': 1.0, 'lay': 1.0, 'excited': 1.0, 'it': 1.0, 'with': 1.0, 'in': 1.0, 'awesome': 1.0, 'love': 1.0, 'for': 1.0, 'bed': 1.0, 'the': 1.0}
Word element => {'local': 1.0, 'than': 1.0, 'cheaper': 1.0, '50': 1.0, 'got': 1.0, 'case': 1.0, 'plush': 1.0, 'quality': 1.0, 'very': 1.0, 'perfectly': 1.0, 'test': 1.0, 'beds': 1.0, 'feel': 1.0, 'nice': 1.0, 'mattress': 1.0, 'this': 2.0, 'it': 3.0, 'stores': 1.0, 'with': 1.0, 'set': 3.0, 'on': 1.0, 'washed': 1.0, 'the': 2.0, 'toddler': 1.0, 'sheets': 1.0, 'can': 1.0, 'my': 1.0, 'fits': 1.0, 'for': 2.0, 'daughter': 1.0, 'size': 1.0, 'crib': 1.0, 'pillow': 1.0, 'comforter': 1.0, 'is': 1.0, 'and': 4.0, 'soon': 1.0, 'came': 1.0, 'plus': 1.0, 'issues': 1.0, 'in': 1.0, 'as': 2.0, 'to': 1.0, 'had': 1.0, 'was': 1.0, 'fabric': 1.0, 'strength': 1.0, 'no': 1.0, 't': 1.0, 'we': 1.0, 'go': 1.0, 'wrong': 1.0}
Word element => {'ever': 1.0, 'greatest': 1.0, 'i': 1.0, 'pillow': 1.0, 'bought': 1.0, 'gift': 1.0, 'birthday': 1.0, 'she': 1.0, 'a': 1.0, 'as': 1.0, 'my': 1.0, 't': 1.0, 'the': 2.0, 'it': 2.0, 'given': 1.0, 'for': 1.0, 'yet': 1.0, 'love': 1.0, 'mimi': 1.0, 'but': 1.0, 's': 1.0, 'm': 1.0, 'too': 1.0, 'going': 1.0, 'granddaughter': 1.0, 'to': 1.0, 'got': 1.0, 'doc': 1.0, 'haven': 1.0, 'mcstuffins': 1.0}
Word element => {'design': 1.0, 'coordinating': 1.0, 'nice': 1.0, 'but': 1.0, 'feature': 1.0, 'bright': 2.0, 'well': 1.0, 'it': 2.0, 'with': 1.0, 'fitted': 1.0, 'loved': 1.0, 'had': 1.0, 'normal': 1.0, 'character': 1.0, 'value': 1.0, 'daughter': 1.0, 'tv': 1.0, 'that': 1.0, 'gave': 1.0, 'lovely': 2.0, 'my': 1.0, 'quality': 1.0, 'and': 3.0, 'favourite': 1.0, 'colours': 1.0, 'a': 3.0, 'bedding': 1.0, 'out': 1.0, 'good': 2.0, 'her': 1.0, 'clamouring': 1.0, 'try': 1.0, 'doc': 1.0, 'characters': 2.0, 'set': 1.0, 'sets': 1.0, 'the': 3.0, 'these': 1.0, 'pieces': 1.0, 'have': 1.0, 'flat': 1.0, 'fit': 1.0, 'overall': 1.0, 'appearance': 1.0, 'bed': 1.0, 'our': 1.0, 'to': 1.0, 'all': 2.0, 'as': 1.0, 'is': 1.0, 'sheets': 1.0, 'did': 1.0, 'mcstuffins': 1.0, 'not': 1.0}
Word element => {'with': 1.0, 'came': 1.0, 'have': 1.0, 'would': 1.0, 'any': 1.0, 'child': 1.0, 'price': 1.0, 'daughters': 1.0, 'bedroom': 1.0, 'great': 1.0, 'it': 2.0, 'love': 1.0, 'more': 1.0, 'my': 1.0, 'the': 1.0, 'perfect': 2.0, 'all': 1.0, 'colors': 1.0, 'though': 1.0, 'wish': 1.0, 'for': 2.0, 'in': 1.0}
Word element => {'time': 1.0, 'her': 1.0, 'it': 1.0, 'during': 1.0, 'need': 1.0, 'and': 1.0, 'school': 1.0, 'toddler': 1.0, 'i': 1.0, 's': 1.0, 'purchased': 1.0, 'day': 1.0, 'just': 1.0, 'nap': 1.0, 'this': 1.0, 'for': 2.0, 'daughter': 1.0, 'class': 1.0, 'she': 1.0, 'the': 1.0, 'my': 1.0, 'started': 1.0}
Word element => {'sure': 1.0, 'would': 1.0, 'too': 1.0, 'recommend': 1.0, 'really': 1.0, 'for': 1.0, 'lovely': 1.0, 'nice': 2.0, 'and': 1.0, 'set': 1.0, 'beautiful': 1.0, 'soft': 1.0, 'to': 1.0, 'are': 1.0, 'the': 2.0, 'colors': 1.0, 'touch': 1.0, 'sheets': 1.0}
Word element => {'loving': 1.0, 'princess': 1.0, 'young': 1.0, 'any': 1.0, 'and': 1.0, 'accurate': 1.0, 'product': 1.0, 'the': 1.0, 'toddler': 2.0, 'price': 1.0, 'loves': 1.0, 'for': 1.0, 'daughter': 1.0, 'perfect': 1.0, 'fits': 1.0, 'of': 1.0, 'bed': 1.0, 'is': 1.0, 'description': 1.0, 'great': 1.0, 'it': 1.0, 'perfectly': 1.0}
Word element => {'purchase': 1.0, 'highly': 1.0, 'bedroom': 1.0, 'princess': 1.0, 'new': 1.0, 'daughters': 1.0, 'my': 1.0, 'great': 1.0, 'it': 2.0, 's': 1.0, 'so': 1.0, 'to': 1.0, 'amazing': 1.0, 'soft': 1.0, 'colorful': 1.0, 'this': 1.0, 'is': 1.0, 'in': 1.0, 'look': 1.0, 'recommend': 1.0, 'going': 1.0}
Word element => {'purchase': 1.0, 'our': 1.0, 'very': 1.0, 'happy': 1.0, 'toddler': 1.0, 'davincci': 1.0, 'the': 1.0, 'my': 1.0, 'daughter': 1.0, 'thrilled': 1.0, 'princess': 1.0, 'bed': 2.0, 'her': 1.0, 'great': 1.0, 'absolutely': 1.0, 'it': 1.0, 'is': 1.0, 'with': 3.0, 'pairs': 1.0}
Word element => {'it': 1.0, 'loved': 1.0, 'granddaughter': 1.0}
Word element => {'too': 1.0, 'eye': 1.0, 'to': 1.0, 'and': 1.0, 'the': 1.0, 'my': 1.0, 'was': 1.0, 'granddaughter': 1.0, 'is': 1.0, 'likes': 1.0, 'soft': 1.0, 'this': 1.0, 'bed': 1.0, 'affordable': 1.0, 'it': 2.0, 'appealing': 1.0, 'fun': 1.0, 'set': 1.0, 'comfortable': 1.0}
Word element => {'enjoy': 1.0, 'now': 1.0, 'get': 1.0, 'still': 1.0, 'again': 1.0, 'would': 1.0, 'bright': 2.0, 'pretty': 1.0, 'using': 1.0, 'has': 1.0, 'loved': 1.0, 'picture': 1.0, 'doll': 1.0, 'lalaloopsy': 1.0, 'thought': 1.0, 'had': 1.0, 'this': 1.0, 'colors': 1.0, 'call': 1.0, 'or': 1.0, 'room': 2.0, 'in': 3.0, 'on': 2.0, 'buy': 1.0, 'lay': 1.0, 'living': 1.0, 'only': 1.0, 'crafts': 1.0, 'deal': 1.0, 'the': 8.0, 'home': 1.0, 'made': 1.0, 'out': 2.0, 'we': 1.0, 'a': 6.0, 'been': 1.0, 'tv': 1.0, 'that': 2.0, 'colored': 1.0, 'pickles': 2.0, 'comforter': 3.0, 'were': 1.0, 'set': 5.0, 'around': 1.0, 'is': 3.0, 'really': 1.0, 'included': 1.0, 'crown': 1.0, 'for': 1.0, 'stars': 1.0, 'love': 2.0, 'fit': 1.0, 'watching': 1.0, 'i': 5.0, 'sheet': 4.0, 'time': 1.0, 'so': 4.0, 'thing': 1.0, 'with': 2.0, 'pillowcase': 1.0, 'all': 1.0, 'to': 1.0, 'toddler': 1.0, 'was': 4.0, 'daycare': 2.0, 'her': 4.0, 'not': 1.0, 'does': 1.0, 'because': 2.0, 'by': 1.0, 'just': 1.0, 'may': 1.0, 'company': 1.0, 'my': 1.0, 'great': 4.0, 'twin': 2.0, 'mistake': 1.0, 'bed': 2.0, 'worked': 2.0, 'it': 10.0, 'she': 4.0, 'but': 2.0, 'can': 3.0, 'use': 2.0, 'at': 3.0, 'too': 1.0, 'and': 4.0}
Word element => {'price': 1.0, 'at': 1.0, 'complaints': 1.0, 'no': 1.0, 't': 1.0, 'have': 1.0, 'i': 1.0, 'is': 1.0, 'bedding': 1.0, 'be': 1.0, 'exactly': 1.0, 'beat': 1.0, 'can': 1.0, 'pictured': 1.0, 'quality': 1.0, 'as': 1.0, 'and': 3.0, 'the': 2.0, 'my': 1.0, 'toddler': 1.0, 'all': 1.0, 'perfect': 1.0, 'for': 1.0}
Word element => {'tho': 1.0, 'bottles': 1.0, 'dr': 1.0, 'better': 1.0, 'especially': 1.0, 'didn': 1.0, 'common': 1.0, 'brown': 1.0, 'much': 1.0, 'love': 1.0, 'for': 1.0, 'in': 1.0, 'something': 1.0, 'the': 1.0, 't': 1.0, 'now': 1.0, 'it': 2.0, 'only': 1.0, 'and': 1.0, 'lasted': 1.0, 'price': 1.0, 'broke': 1.0, 'expect': 1.0, 'two': 1.0, 'but': 1.0, 'weeks': 1.0, 'half': 1.0, 'i': 1.0, 'buy': 1.0}
Word element => {'this': 1.0, 'recommend': 1.0, 'do': 1.0, 'twists': 1.0, 'you': 1.0, 'brush': 1.0, 'the': 2.0, 'falls': 1.0, 'one': 1.0, 'i': 1.0, 'when': 1.0, 'use': 1.0, 'point': 1.0, 'it': 2.0, 'not': 1.0, 'together': 1.0, 'at': 1.0, 'apart': 1.0, 'where': 1.0}
Word element => {'use': 1.0, 'able': 1.0, 'been': 1.0, 'haven': 1.0, 'to': 2.0, 'impossible': 1.0, 'nearly': 1.0, 'is': 1.0, 'stars': 1.0, '3': 1.0, 'into': 1.0, 'falling': 1.0, 'find': 1.0, 't': 1.0, 'nipple': 1.0, 'the': 3.0, 'could': 1.0, 'we': 2.0, 'get': 1.0, 'and': 2.0, 'a': 3.0, 'sink': 1.0, 'that': 2.0, 'so': 1.0, 'inner': 1.0, 'sponge': 1.0, 'suction': 1.0, 'of': 1.0, 'has': 1.0, 'brushes': 1.0, 'cup': 1.0, 'brush': 1.0, 'for': 1.0, 'one': 1.0, 'better': 1.0, 'out': 1.0, 'clean': 1.0, 'by': 1.0, 'only': 1.0, 'it': 1.0, 's': 1.0, 'because': 1.0, 'not': 1.0, 'obnoxious': 1.0}
Word element => {'annoying': 1.0, 'process': 1.0, 'begin': 1.0, 'bottles': 1.0, 'brown': 1.0, 'i': 1.0, 'makes': 1.0, 'time': 1.0, 'next': 1.0, 'scrubber': 1.0, 'coming': 1.0, 'apart': 1.0, 'constantly': 1.0, 'from': 1.0, 'very': 1.0, 'more': 1.0, 'knob': 1.0, 'the': 4.0, 'would': 1.0, 'just': 2.0, 'purchase': 1.0, 'is': 1.0, 'regular': 1.0, 'brush': 2.0, 'this': 1.0, 'with': 1.0, 'it': 1.0, 'way': 1.0, 's': 1.0, 'inconvenient': 1.0, 'to': 2.0, 'clean': 1.0, 'dr': 1.0}
Word element => {'money': 1.0, 'of': 1.0, 'waste': 1.0, 'not': 1.0, 'recommend': 1.0, 'so': 1.0, 'theirs': 1.0, 'other': 1.0, 'and': 2.0, 'have': 1.0, 'all': 1.0, 'at': 1.0, 'ones': 1.0, 'the': 1.0, 't': 2.0, 'soft': 3.0, 'triplets': 1.0, 'was': 2.0, 'said': 1.0, 'bought': 3.0, 'isn': 1.0, 'bc': 2.0, 'a': 2.0, 'got': 1.0, 'wouldn': 1.0, 'this': 3.0, 'it': 3.0, 'taggies': 1.0, '9': 1.0, 'month': 1.0, 'blanket': 2.0, 'one': 1.0, 'for': 1.0, 'very': 1.0, 'year': 1.0, 'daughter': 1.0, 'happy': 1.0, 'my': 1.0, 'i': 7.0, 'old': 1.0, 'wish': 1.0, 'different': 1.0}
Word element => {'colors': 1.0, 'price': 1.0, 'good': 2.0, 'chic': 1.0, 'pretty': 1.0, 'nice': 1.0, 'pic': 1.0, 'like': 1.0, 'quality': 1.0, 'and': 2.0, 'daugther': 1.0, 'are': 1.0, 'my': 2.0, 'the': 3.0, 'room': 1.0, 'a': 1.0, 'love': 1.0, 'it': 1.0, 'look': 1.0, 'gives': 1.0}
Word element => {'light': 1.0, 'is': 1.0, 'set': 2.0, 'little': 1.0, 'crib': 1.0, 'youth': 1.0, 'looking': 1.0, 'match': 1.0, 'and': 3.0, 'it': 1.0, 'train': 1.0, 'house': 1.0, 'polyester': 1.0, 'thomas': 1.0, 'a': 2.0, 'bright': 1.0, 'weight': 1.0, 'home': 1.0, 'bed': 1.0, 'girls': 1.0, 'has': 1.0, 'they': 1.0, 'the': 7.0, 'great': 2.0, 'my': 1.0, 'months': 1.0, 'blues': 1.0, 'color': 1.0, 'as': 1.0, 'our': 1.0, 'that': 1.0, 'although': 1.0, 'grandaughters': 1.0, 'since': 1.0, 'at': 2.0, 'her': 1.0, 'cousin': 1.0, 'would': 1.0, 'have': 1.0, 'same': 2.0, 'purchased': 1.0, 'grandma': 1.0, 'scheme': 1.0, 'room': 1.0, 'with': 1.0, 'for': 3.0, 'share': 1.0, 'fit': 1.0, 'summer': 1.0, 'bill': 1.0, 'colors': 1.0, 'this': 1.0, 'perfect': 1.0, 'decor': 1.0}
Word element => {'sleep': 1.0, 'to': 1.0, 'her': 2.0, 'got': 1.0, 'own': 1.0, 'my': 1.0, 'very': 1.0, 'and': 1.0, 'in': 1.0, 'daughter': 1.0, 'it': 1.0, 'love': 1.0, 'is': 1.0, 'this': 1.0, 'bed': 2.0, 'pleased': 1.0, 'set': 1.0, 'i': 1.0, 'beautiful': 1.0}
Word element => {'perfect': 1.0, 'love': 1.0, 'has': 1.0, 'daughter': 1.0, 'my': 1.0, 'that': 1.0, 'besides': 1.0, 'started': 1.0, 'just': 2.0, 'fact': 1.0, 'option': 1.0, 'an': 1.0, 'wasn': 1.0, 'expensive': 1.0, 'would': 1.0, 'wanted': 1.0, 'to': 2.0, 'normal': 1.0, 'was': 2.0, 'case': 1.0, 'pillow': 1.0, 'second': 1.0, 'is': 2.0, 'price': 1.0, 'colors': 1.0, 'soft': 1.0, 'adorable': 1.0, 'set': 2.0, 'you': 1.0, 'i': 1.0, 'whole': 1.0, 't': 1.0, 'more': 1.0, 'the': 2.0, 'me': 1.0, 'and': 1.0, 'so': 2.0, 'everything': 1.0, 'lot': 1.0, 'size': 1.0, 'seriously': 1.0, 'good': 1.0, 'think': 1.0, 'arielle': 1.0, 'it': 2.0, 'bright': 1.0, 'a': 2.0}
Word element => {'soon': 1.0, 'plan': 1.0, 'cute': 1.0, 'fast': 1.0, 'shipping': 1.0, 'on': 2.0, 'perfectly': 1.0, 'great': 1.0, 'buying': 1.0, 'toddler': 1.0, 'and': 1.0, 'very': 1.0, 'quality': 1.0, 'more': 1.0, 'the': 2.0, 'sheets': 1.0, 'fit': 1.0, 'bed': 1.0}
Word element => {'nicely': 1.0, 'up': 1.0, 'wash': 1.0, 'and': 3.0, 'gotten': 1.0, 'very': 1.0, 'from': 1.0, 'holding': 1.0, 'sometimes': 1.0, 's': 1.0, 'it': 4.0, 'durable': 1.0, 'soft': 1.0, 'this': 1.0, 'i': 2.0, 'weekly': 1.0, 'my': 2.0, 'color': 1.0, 'online': 1.0, 'reasonable': 1.0, 'before': 1.0, 'does': 1.0, 'daughter': 1.0, 'price': 1.0, 'loves': 1.0, 'bed': 1.0, 'was': 2.0, 'to': 1.0, 'pretty': 1.0, 'everything': 1.0, 'if': 1.0, 'set': 1.0, 'fading': 1.0, 'the': 1.0, 'needed': 1.0, 'finding': 1.0, 'youngest': 1.0, 'has': 1.0, 'marker': 1.0, 'right': 1.0, 'washed': 1.0, 'on': 1.0, 'out': 1.0, 'not': 1.0, 'be': 1.0, 'fabric': 1.0, 'more': 1.0, 'is': 1.0, 'seem': 1.0, 'still': 1.0}
Word element => {'and': 1.0, 'fun': 1.0, 'for': 2.0, 'scanning': 1.0, 'is': 1.0, 'one': 1.0, 'this': 1.0, 'baby': 1.0, 'recommend': 1.0, 'a': 1.0, 'contact': 1.0, 'the': 1.0, 'pre': 1.0, 'thermo': 1.0, 'so': 1.0, 'under': 1.0, 'armpit': 1.0, 'pediatrician': 1.0, 'to': 1.0, 'just': 1.0, 'use': 1.0, 's': 1.0}
Word element => {'month': 1.0, 'long': 1.0, 'just': 1.0, 'affordable': 1.0, 'about': 1.0, 'price': 1.0, 'i': 1.0, 'visit': 1.0, 'regularly': 1.0, 'who': 1.0, 'professionals': 1.0, 'care': 1.0, 'hopefully': 1.0, 'health': 1.0, 'well': 1.0, 'use': 1.0, 'every': 1.0, 'the': 1.0, 'lightweight': 1.0, '1': 1.0, 'and': 2.0, 'of': 1.0, 'to': 2.0, 'household': 1.0, 'simple': 1.0, 'utilize': 1.0, 's': 2.0, 'without': 1.0, 'having': 1.0, 'or': 1.0, 'one': 1.0, 'this': 1.0, 'it': 2.0, 'with': 1.0, 'children': 1.0, 'last': 1.0, 'home': 2.0, 'easy': 2.0, 'may': 1.0, 'patients': 1.0, 'as': 2.0, 'from': 1.0, 'benefit': 1.0, 'carry': 1.0, 'at': 1.0}
Word element => {'parents': 1.0, 'all': 1.0, 'backlight': 1.0, 'lcd': 1.0, 'non': 1.0, 'nice': 1.0, 'thermometer': 1.0, 'isn': 1.0, 'to': 1.0, 'contact': 1.0, 'a': 1.0, 'blue': 1.0, 'is': 1.0, 'with': 1.0, 'this': 2.0, 'infants': 1.0, 'the': 2.0, 't': 1.0, 'though': 1.0, 'in': 1.0, 'like': 1.0, 'picture': 1.0, 'i': 1.0, 'would': 1.0, 'definitely': 1.0, 'compact': 1.0, 'recommend': 1.0}
Word element => {'fussy': 1.0, 'asleep': 1.0, 'he': 1.0, 'baby': 1.0, 'this': 1.0, 'is': 3.0, 'a': 1.0, 'or': 1.0, 'when': 1.0, 'does': 1.0, 'not': 1.0, 'great': 1.0, 'that': 1.0, 'accurate': 1.0, 'and': 1.0, 'the': 1.0, 'bother': 1.0, 'thermometer': 1.0}
Word element => {'patient': 1.0, 'humid': 1.0, 'would': 2.0, 've': 1.0, 'accurate': 1.0, 'precise': 1.0, 'on': 2.0, 'given': 1.0, 't': 1.0, 'degrees': 1.0, 'sweating': 1.0, 'bit': 1.0, 'country': 1.0, 'than': 1.0, 'does': 1.0, 'that': 4.0, 'because': 1.0, 'say': 1.0, 'acceptable': 1.0, 'ideal': 1.0, 'developing': 1.0, 'don': 1.0, 'values': 1.0, 'environment': 1.0, 'better': 1.0, 'think': 1.0, 'standard': 1.0, 'definitely': 1.0, 'taken': 2.0, 'with': 1.0, 'digital': 1.0, 'not': 3.0, 'give': 1.0, 'me': 1.0, '2': 1.0, 'can': 1.0, 'its': 1.0, 'much': 1.0, 'to': 4.0, 'any': 1.0, 'are': 2.0, 'working': 1.0, 'though': 1.0, 'within': 1.0, 'be': 1.0, '0': 2.0, 'conditions': 1.0, 'this': 1.0, 'up': 1.0, '7': 1.0, 'more': 2.0, 'readings': 4.0, 'in': 4.0, 'patients': 1.0, 'compared': 1.0, 'which': 1.0, 'is': 2.0, 'celsius': 2.0, 'at': 1.0, 'time': 2.0, 'main': 1.0, 'lot': 1.0, 'correct': 1.0, 'angles': 1.0, 'if': 1.0, 'tips': 1.0, 'how': 1.0, 'extremely': 1.0, 'get': 2.0, 'it': 2.0, 'greatly': 1.0, 'anyone': 1.0, 'and': 1.0, 'reason': 1.0, 'just': 1.0, 'why': 1.0, 'wanted': 1.0, 'short': 1.0, 'product': 1.0, 'thermometer': 1.0, 'was': 1.0, 'difference': 1.0, 'take': 2.0, 's': 1.0, 'temperatures': 2.0, 'i': 7.0, 'fast': 1.0, 'appreciated': 1.0, 'have': 2.0, 'the': 6.0, 'of': 3.0, 'a': 6.0, 'government': 1.0, 'hospital': 1.0, 'sadly': 1.0, 'half': 1.0, 'confidence': 1.0, 'correctness': 1.0}
Word element => {'promo': 2.0, 'eye': 1.0, 'my': 1.0, 'for': 1.0, 'bought': 1.0, 'one': 1.0, 'fast': 1.0, 'shipping': 1.0, 'delivery': 1.0, 'caught': 1.0, 'nicer': 1.0, 'sister': 1.0, 'it': 2.0, 'the': 1.0, 'got': 1.0, 'twins': 1.0, 'prime': 1.0, 'free': 1.0, 'be': 1.0, 'here': 1.0, 'would': 1.0, 'new': 1.0, 'i': 1.0, 'in': 1.0, 'about': 1.0, 'any': 1.0, '3': 1.0, 'days': 1.0, 'proud': 1.0, 'was': 1.0, 'father': 1.0, 'of': 1.0, 'lvn': 1.0, 'but': 1.0, 'reads': 1.0, 'their': 1.0, 'so': 1.0, 'bottle': 1.0, 'temps': 1.0, 'soon': 1.0, 'and': 3.0, 'too': 1.0, 'rn': 1.0, 'design': 1.0, 'saw': 1.0, 'wife': 1.0, 'likes': 1.0, 'quantity': 1.0}
Word element => {'a': 1.0, 'child': 1.0, 'disturbing': 1.0, 'without': 1.0, 's': 1.0, 'take': 1.0, 'the': 2.0, 'sick': 1.0, 'i': 1.0, 'accurate': 1.0, 'sleep': 1.0, 'fever': 1.0, 'but': 1.0, 'very': 1.0, 'like': 1.0, 'not': 1.0, 'idea': 1.0, 'able': 1.0, 'being': 1.0, 'to': 1.0}
Word element => {'accurate': 1.0, 'feel': 1.0, 'higher': 1.0, 'ears': 1.0, 'behind': 1.0, 'because': 1.0, 'vs': 1.0, 'it': 3.0, 'temperature': 1.0, 's': 1.0, 'reading': 1.0, 'reads': 1.0, 'get': 1.0, 'different': 1.0, 'temple': 1.0, 'i': 4.0, 'when': 1.0, 'use': 3.0, 'at': 1.0, 'more': 1.0, 'the': 1.0, 'my': 2.0}
Word element => {'made': 1.0, 'under': 1.0, 'hidden': 1.0, 'can': 1.0, 'fairly': 1.0, 'strap': 1.0, 'bra': 1.0, 'adjuster': 1.0, 'of': 1.0, 'will': 1.0, 'an': 2.0, 'because': 1.0, 'easily': 1.0, 'headband': 1.0, 'lovely': 1.0, 'adjustable': 2.0, 'the': 2.0, 'be': 2.0, 'bought': 2.0, 'they': 1.0, 'my': 2.0, 'i': 3.0, 'old': 1.0, 'this': 1.0, 'which': 1.0, 'daughter': 2.0, 'and': 3.0, 'too': 1.0, 'for': 2.0, 'not': 1.0, 'photos': 1.0, 'is': 2.0, 'it': 4.0, 'looks': 1.0, 'sliding': 1.0, 'able': 1.0, 'have': 1.0, 'as': 1.0, 'to': 1.0, 'wonderful': 1.0, 'use': 1.0, 'infant': 2.0, 'well': 1.0, 'hair': 1.0, 'has': 2.0, 'girls': 1.0, 'or': 1.0, 'almost': 1.0, 'who': 1.0, 'on': 2.0, '3': 1.0, 'just': 1.0, 'large': 1.0, 'yrs': 1.0, 'a': 1.0, 's': 1.0, 'others': 1.0, 'that': 1.0, 'were': 2.0, 'head': 1.0, 'same': 1.0, 'kind': 1.0}
Word element => {'longer': 1.0, 'she': 1.0, 'wear': 1.0, 'so': 1.0, 'adjustable': 1.0, 'that': 1.0, 'i': 1.0, 'beautiful': 1.0, 'daughters': 1.0, 'baptism': 1.0, 'band': 1.0, 'this': 1.0, 'is': 2.0, 'can': 1.0, 'love': 1.0, 'for': 1.0, 'the': 1.0, 'my': 1.0, 'very': 1.0, 'and': 1.0}
Word element => {'granddaughter': 1.0, 'on': 1.0, 'our': 1.0, 'lovely': 1.0, 'looked': 1.0}
Word element => {'set': 1.0, 'good': 1.0, 'of': 1.0, 'room': 1.0, 'this': 1.0, 'everything': 1.0, 'niece': 1.0, 'i': 1.0, 'was': 2.0, 'expected': 1.0, 'shows': 1.0, 'as': 1.0, 'quality': 1.0, 'very': 2.0, 'and': 1.0, 'the': 2.0, 'my': 1.0, 's': 1.0, 'well': 2.0, 'in': 1.0}
Word element => {'recommend': 1.0, 'again': 1.0, 'buy': 1.0, 'thin': 1.0, 's': 1.0, 'it': 3.0, 'or': 1.0, 'i': 2.0, 't': 1.0, 'this': 1.0, 'would': 1.0, 'we': 1.0, 'wouldn': 1.0, 'heavier': 1.0, 'made': 1.0, 'thought': 1.0, 'use': 1.0, 'very': 1.0, 'and': 1.0, 'for': 1.0, 'winter': 1.0}
Word element => {'home': 1.0, 'from': 1.0, 's': 1.0, 'take': 1.0, 'trips': 1.0, 'grandma': 1.0, 'things': 1.0, 'rocking': 1.0, 'house': 1.0, 'to': 2.0, 'product': 1.0, 'music': 1.0, 'only': 1.0, 'is': 1.0, 'type': 1.0, 'away': 1.0, 'and': 1.0, 'great': 2.0, 'so': 1.0, 'of': 1.0, 'or': 1.0, 'those': 1.0, 'other': 1.0, 'than': 1.0, 'that': 1.0, 'missing': 1.0, 'for': 1.0}
Word element => {'anywhere': 1.0, 'about': 1.0, 'just': 1.0, 'in': 1.0, 'a': 2.0, 'convenient': 1.0, 'position': 1.0, 'along': 1.0, 'angled': 1.0, 'up': 1.0, 'this': 2.0, 'has': 3.0, 'house': 1.0, 'better': 1.0, 'move': 1.0, 'much': 1.0, 'granddaughter': 1.0, 'to': 3.0, 'sleep': 1.0, 'or': 2.0, 'friends': 1.0, 'bit': 1.0, 'so': 2.0, 'been': 1.0, 'she': 1.0, 'bigger': 1.0, 'fisher': 1.0, 'easy': 1.0, 'seems': 1.0, 'spit': 1.0, 'reducing': 1.0, 'the': 3.0, 'fits': 1.0, 'my': 1.0, 'clean': 1.0, 'mesh': 1.0, 'price': 1.0, 'help': 1.0, 'sides': 1.0, 'helped': 1.0, 'are': 1.0, 'wonderful': 2.0, 'huge': 1.0, 'one': 1.0, 'reflux': 1.0, 'comfortable': 1.0, 'than': 1.0, 'and': 5.0, 'similar': 1.0, 'sitters': 1.0, 'product': 2.0, 'more': 1.0, 'around': 1.0, 'take': 1.0}
Word element => {'made': 1.0, 'easier': 1.0, 'that': 1.0, 'extra': 1.0, 'just': 1.0, 'and': 1.0, 'get': 1.0, 'probably': 1.0, 'do': 1.0, 'i': 2.0, 'better': 1.0, 'if': 1.0, 'could': 1.0, 'easily': 1.0, 'very': 1.0, 'when': 2.0, 'one': 1.0, 'for': 1.0, 'young': 1.0, 'use': 2.0, 'to': 4.0, 'baby': 1.0, 'impossible': 1.0, 'nice': 1.0, 'is': 4.0, 'it': 1.0, 'this': 2.0, 'naps': 1.0, 'over': 1.0, 'collapse': 1.0, 're': 1.0, 'at': 1.0, 'd': 1.0, 'however': 1.0, 'else': 1.0, 'thing': 1.0, 'pay': 1.0, 'or': 1.0, 'someone': 1.0, 'you': 1.0, 's': 1.0, 'home': 1.0}
Word element => {'at': 1.0, 'seem': 1.0, 'work': 1.0, 'doesn': 1.0, 'in': 2.0, 'so': 1.0, 'well': 2.0, 'fold': 1.0, 'is': 2.0, 'my': 1.0, 't': 1.0, 'the': 3.0, 'sleeps': 1.0, 'described': 1.0, 'son': 1.0, 'as': 1.0, 'lock': 1.0, 'exactly': 1.0, 'to': 2.0, 'with': 1.0, 'only': 1.0, 'it': 3.0, 'issue': 1.0, 'i': 1.0, 'all': 1.0, 'have': 1.0, 'unlock': 1.0, 'part': 1.0, 'legs': 1.0}
Word element => {'bassinet': 1.0, 'basic': 1.0, 'alternative': 1.0, 'an': 1.0, 'looking': 1.0, 'anyone': 1.0, 'highly': 1.0, 'important': 1.0, 'which': 1.0, 'easy': 1.0, 'very': 1.0, 'up': 1.0, 'throws': 1.0, 'reflux': 1.0, 'for': 4.0, 'you': 1.0, 'lbs': 1.0, 'five': 1.0, 'perfect': 1.0, 'this': 4.0, 'clean': 1.0, 'shoulders': 1.0, 'her': 2.0, 'what': 1.0, 'used': 1.0, 'head': 1.0, 'recommend': 1.0, 'was': 3.0, 'it': 2.0, 'she': 5.0, 'needed': 1.0, 'result': 1.0, 'affordable': 1.0, 'nicu': 2.0, 'my': 2.0, 'early': 1.0, 'does': 1.0, 'because': 1.0, 'me': 1.0, 'not': 1.0, 'to': 4.0, 'as': 1.0, 'and': 5.0, 'i': 1.0, 'two': 1.0, 'elevated': 1.0, 'born': 1.0, 'months': 2.0, 'at': 1.0, 'lot': 1.0, 'three': 2.0, 'daughter': 2.0, 'in': 3.0, 'while': 1.0, 'he': 1.0, 'how': 1.0, 'the': 2.0, 'place': 1.0, 'also': 1.0, 'slept': 1.0, 'that': 3.0, 'spent': 1.0, 'awesome': 1.0, 'a': 4.0, 's': 2.0, 'point': 1.0, 'bed': 3.0, 'is': 4.0, 'night': 1.0, 'elevate': 1.0, 'has': 2.0, 'works': 1.0, 'only': 1.0, 'harness': 1.0, 'keeps': 1.0, 'under': 1.0}
Word element => {'nursing': 1.0, 'nightly': 1.0, 'wakes': 1.0, 'session': 1.0, 'great': 1.0, 'can': 1.0, 'him': 2.0, 'sleeps': 1.0, 'it': 1.0, 'he': 2.0, 'for': 2.0, 'bed': 1.0, 'product': 1.0, 'in': 1.0, 'beside': 1.0, 'newborn': 1.0, 'my': 2.0, 'i': 1.0, 'where': 1.0, 'when': 1.0, 'easily': 1.0, 'hear': 1.0, 'and': 1.0, 'see': 1.0, 'a': 1.0}
Word element => {'whistles': 1.0, 'bells': 1.0, 'no': 1.0, 'bassinet': 1.0, 'or': 1.0, 'crib': 1.0, 'of': 1.0, 'your': 1.0, 'safe': 1.0, 'provide': 1.0, 'what': 1.0, 'bottom': 1.0, 'needs': 1.0, 'so': 1.0, 'guess': 1.0, 'baby': 1.0, 'fasten': 1.0, 'section': 1.0, 'attached': 1.0, 'little': 1.0, 'with': 1.0, 'come': 1.0, 'have': 1.0, 'like': 1.0, 'do': 1.0, 'living': 1.0, 'into': 1.0, 'that': 4.0, 'basic': 1.0, 'something': 1.0, 'pricey': 1.0, 'breathe': 1.0, 'in': 4.0, 'line': 1.0, 'daughter': 2.0, 'you': 1.0, 'when': 1.0, 'where': 1.0, 'for': 5.0, 'looking': 1.0, 'but': 1.0, 'can': 2.0, 'i': 4.0, 'sleepers': 1.0, 'room': 1.0, 'chose': 1.0, 'description': 1.0, 'and': 2.0, 'anything': 1.0, 'other': 1.0, 'sleeper': 1.0, 'soft': 1.0, 'this': 1.0, 'collapse': 1.0, 'my': 2.0, 'place': 1.0, 'stimulating': 1.0, 'the': 7.0, 'doesn': 1.0, 'was': 1.0, 'does': 2.0, 'because': 2.0, 'just': 1.0, 'outside': 1.0, 'to': 5.0, 'sleep': 2.0, 'easy': 1.0, 'it': 10.0, 'she': 1.0, 'tidy': 1.0, 'storage': 1.0, 'here': 1.0, 'engage': 1.0, 'incline': 1.0, 'cold': 1.0, 'toy': 1.0, 'easier': 1.0, 'has': 2.0, 'could': 1.0, 't': 2.0, 's': 5.0, 'a': 4.0, 'understand': 1.0, '34': 2.0, 'infant': 1.0, 'why': 2.0, 'child': 2.0, 'wash': 1.0, 'over': 1.0, 'don': 1.0, 'playtime': 1.0}
Word element => {'either': 1.0, 'much': 1.0, 'up': 1.0, 'take': 1.0, 'doesnt': 1.0, 'to': 1.0, 'an': 1.0, 'our': 1.0, 'pretty': 1.0, 'space': 2.0, 'sleeping': 1.0, 'for': 1.0, 'newborn': 1.0, 'seems': 1.0, 'in': 1.0, 'fits': 1.0, 'needed': 1.0, 'extra': 1.0, 'we': 1.0, 'down': 1.0, 'sleep': 1.0, 'stairs': 1.0, 'it': 2.0, 'he': 1.0, 'this': 1.0, 'bill': 1.0, 'the': 1.0, 'and': 1.0, 'happy': 1.0}
Word element => {'though': 1.0, 'product': 1.0, 'so': 1.0, 'to': 1.0, 'had': 1.0, 'cling': 1.0, 'wish': 1.0, 'daughter': 1.0, 'elastic': 1.0, 'it': 2.0, 'would': 1.0, 'a': 2.0, 'overall': 1.0, 'chair': 1.0, 'the': 2.0, 'cart': 1.0, 'little': 1.0, 'loves': 1.0, 'good': 1.0, 'or': 1.0, 'high': 1.0, 'better': 1.0, 'our': 1.0, 'tags': 1.0}
Word element => {'padded': 1.0, 'nicely': 1.0, 'constructed': 1.0, 'well': 1.0, 'shopping': 1.0, 'or': 1.0, 'easy': 1.0, 'use': 1.0, 'is': 3.0, 'glad': 1.0, 'my': 1.0, 'while': 1.0, 'am': 1.0, 'eating': 1.0, 'this': 1.0, 'it': 2.0, 'i': 2.0, 'busy': 1.0, 'granddaughter': 1.0, 'to': 1.0, 'and': 3.0, 'bought': 1.0, 'plush': 1.0, 'soft': 1.0, 'her': 1.0, 'are': 1.0, 'keeps': 1.0, 'for': 1.0, 'comfortable': 1.0, 'we': 1.0}
Word element => {'plush': 1.0, 'is': 1.0, 'material': 1.0, 'easily': 1.0, 'come': 1.0, 'buckles': 1.0, 'great': 1.0, 'and': 2.0, 'seat': 2.0, 'cover': 1.0, 'handy': 1.0, 'fits': 1.0, 'washable': 1.0, 'in': 2.0, 'built': 1.0, 'restaurant': 1.0, 'high': 1.0, 'chairs': 1.0, 'grocery': 1.0, 'carts': 1.0}
Word element => {'replace': 1.0, 'getting': 1.0, 'about': 1.0, 'definitely': 1.0, 'would': 1.0, 'cute': 1.0, 'ordered': 1.0, 'to': 1.0, 'our': 2.0, 'have': 1.0, 'problem': 1.0, 'which': 1.0, 'way': 1.0, 'for': 1.0, 'bought': 1.0, 'some': 1.0, 'these': 1.0, 's': 2.0, 'we': 2.0, 't': 3.0, 'scratch': 1.0, 'of': 2.0, 'm': 1.0, 'price': 1.0, 'baby': 1.0, 'up': 2.0, 'don': 1.0, 'thinking': 1.0, 'i': 3.0, 'touch': 1.0, 'and': 5.0, 'very': 2.0, 'son': 3.0, 'am': 1.0, 'the': 5.0, 'place': 1.0, 're': 3.0, 'my': 2.0, 'ones': 2.0, 'bunch': 1.0, 'pink': 1.0, 'with': 2.0, 'happy': 1.0, 'velcro': 1.0, 'it': 1.0, 'covers': 2.0, 'they': 7.0, 'strap': 2.0, 'are': 1.0, 'better': 1.0, 'soft': 1.0, 'is': 2.0, 'course': 1.0, 'strong': 1.0, 'recommend': 1.0, 'doesn': 2.0, 'but': 1.0, 'so': 2.0, 'her': 1.0, 'down': 1.0, 'stay': 1.0, 'in': 1.0, 'half': 1.0, 'well': 1.0, 'slide': 1.0}
Word element => {'are': 1.0, 'cheeks': 1.0, 's': 1.0, 'my': 1.0, 'always': 1.0, 'lower': 1.0, 'as': 1.0, 'hit': 1.0, 'were': 1.0, 'it': 2.0, 'tags': 2.0, '5': 1.0, 'a': 1.0, 'bit': 1.0, 'positioned': 2.0, 'the': 4.0, 'covers': 2.0, 'made': 1.0, 'or': 2.0, 'i': 1.0, '4': 1.0, 'properly': 1.0, 'if': 1.0, 'whenever': 1.0, 'baby': 1.0, 'perhaps': 1.0, 'd': 1.0, 'give': 1.0, 'but': 1.0, 'stars': 1.0, 'longer': 1.0, 'is': 1.0}
Word element => {'bothersome': 1.0, 'aren': 1.0, 'they': 1.0, 'so': 1.0, 'however': 1.0, 'old': 1.0, 'face': 1.0, 's': 1.0, 'newborn': 1.0, 'now': 1.0, 'to': 1.0, 'is': 2.0, 'strong': 1.0, '3': 1.0, 'soft': 1.0, 'cute': 1.0, 'that': 2.0, 'secure': 1.0, 'quality': 1.0, 'and': 1.0, 'with': 1.0, 'velcro': 1.0, 'only': 1.0, 'up': 1.0, 'son': 1.0, 'stick': 1.0, 'them': 1.0, 'bright': 1.0, 'a': 1.0, 'my': 2.0, 't': 1.0, 'great': 1.0, 'the': 1.0, 'months': 1.0, 'qualm': 1.0, 'taggies': 1.0, 'almost': 1.0, 'into': 1.0}
Word element => {'carrier': 1.0, 's': 1.0, 'head': 1.0, 'nothing': 1.0, 'soft': 1.0, 'not': 1.0, 'bear': 1.0, 'found': 1.0, 'i': 1.0, 'strap': 1.0, 'teddy': 1.0, 'covers': 1.0, 'my': 2.0, 'are': 2.0, 'to': 1.0, 'husband': 1.0, 'fuller': 1.0, 'face': 1.0, 'do': 1.0, 'and': 4.0, 'in': 1.0, 'flat': 1.0, 'softer': 1.0, 'son': 1.0, 'very': 2.0, 'that': 1.0, 'were': 1.0, 'much': 1.0, 'better': 1.0, 'they': 1.0, 'the': 3.0, 'these': 1.0, 'support': 1.0, 'on': 1.0, 'babies': 1.0}
Word element => {'son': 1.0, 'had': 1.0, 'when': 1.0, 'about': 1.0, 'washable': 1.0, 'off': 1.0, 'on': 1.0, 'take': 1.0, 'easy': 1.0, 'chest': 1.0, 'straps': 1.0, 'protection': 1.0, 'more': 1.0, 'give': 1.0, '2': 1.0, 'knew': 1.0, 'these': 1.0, 'the': 4.0, 'ones': 1.0, 'car': 2.0, 's': 1.0, 'daughter': 2.0, 'in': 2.0, 'them': 2.0, 'using': 1.0, 'love': 1.0, 'my': 2.0, 'they': 4.0, 'was': 2.0, 'against': 1.0, 'so': 2.0, 'wish': 1.0, 'soft': 1.0, 'cute': 1.0, 'and': 5.0, 'comfy': 1.0, 'stage': 1.0, 'i': 3.0, 'digging': 1.0, 'old': 1.0, 'covers': 1.0, 'she': 2.0, 'weeks': 1.0, 'forward': 1.0, 'since': 1.0, 'keep': 1.0, 'shoulders': 1.0, 'her': 2.0, 'while': 1.0, '34': 2.0, 'are': 4.0, 'strap': 1.0, 'helped': 1.0, 'britax': 1.0, 'head': 1.0, 've': 2.0, 'flopping': 1.0, 'longer': 1.0, 'than': 1.0, 'into': 1.0, 'been': 1.0, 'that': 1.0, 'seat': 2.0, 'to': 2.0, 'our': 2.0, 'come': 1.0, 'with': 1.0}
Word element => {'thing': 1.0, 'good': 1.0, 'be': 1.0, 'must': 1.0, 'enjoyable': 1.0, 'are': 1.0, 'more': 1.0, 'these': 1.0, 'who': 1.0, 'says': 1.0, 'gold': 1.0, 'daughter': 1.0, 'for': 1.0, 'in': 2.0, 'got': 1.0, 'we': 1.0, 'they': 1.0, 'makes': 1.0, 'absolutely': 1.0, 'worth': 1.0, 'weight': 1.0, 'our': 1.0, 'their': 1.0, 'that': 1.0, 'anything': 1.0, 'traveling': 1.0, 'a': 2.0, 'car': 1.0, 'seat': 1.0}
Word element => {'dryer': 1.0, 'well': 1.0, 'they': 1.0, 'really': 1.0, 'through': 1.0, 'those': 1.0, 'go': 1.0, 'covers': 1.0, 'perfect': 1.0, 'size': 1.0, 'for': 1.0, 'babies': 1.0, 'like': 1.0, 'and': 2.0, 'as': 2.0, 'washer': 1.0, 'soft': 1.0, 'cute': 1.0}
Word element => {'love': 1.0, 'm': 1.0, 'and': 1.0, 'extremely': 1.0, 'brand': 1.0, 'have': 1.0, 'tags': 1.0, 'loves': 1.0, 'he': 1.0, 'this': 1.0, 'with': 1.0, 'having': 1.0, 'from': 1.0, 'why': 1.0, 'happy': 1.0, 'my': 1.0, 'the': 4.0, 'carseat': 1.0, 'his': 1.0, 'other': 1.0, 'runs': 1.0, 'bought': 1.0, 'to': 1.0, 'now': 1.0, 'was': 1.0, 'comes': 1.0, 'that': 2.0, 'a': 1.0, 'colors': 1.0, 'baby': 1.0, 'same': 1.0, 'few': 1.0, 'neck': 1.0, 'covers': 1.0, 'marks': 1.0, 'small': 1.0, 'so': 1.0, 's': 1.0, 'products': 1.0, 'touch': 1.0, 'i': 3.0}
Word element => {'doesn': 1.0, 'a': 1.0, 'out': 1.0, 'space': 1.0, 'from': 1.0, 'being': 1.0, 'to': 2.0, 'it': 1.0, 'with': 1.0, 'is': 1.0, 'plays': 1.0, 'room': 2.0, 'fussy': 1.0, 'move': 1.0, 'sleeps': 1.0, 'baby': 1.0, 'and': 2.0, 'the': 1.0, 't': 1.0, 'take': 1.0, 'up': 1.0, 'of': 1.0, 'lot': 1.0, 'easy': 1.0}
Word element => {'that': 1.0, 'babies': 1.0, 'for': 1.0, 'it': 1.0, 'i': 1.0, 'cute': 1.0, 'recommend': 1.0, 'keeps': 1.0, 'would': 1.0, 'granddaughter': 1.0, 'music': 2.0, 'the': 1.0, 'my': 1.0, 'entertained': 1.0, 'we': 1.0, 'like': 1.0, 'very': 1.0, 'as': 1.0, 'travel': 1.0}
Word element => {'price': 1.0, 'mirror': 1.0, 'her': 1.0, 'old': 1.0, 'to': 2.0, 'music': 1.0, 'month': 1.0, 'worth': 1.0, 'gift': 1.0, 'bought': 1.0, 'a': 1.0, 'niece': 1.0, 'as': 1.0, 'like': 1.0, 'and': 1.0, 'in': 1.0, 'having': 1.0, 'listening': 1.0, 'this': 1.0, 'my': 1.0, '2': 1.0, 'the': 3.0, 'is': 1.0, 'looks': 1.0, 'she': 1.0, 'looking': 1.0, 'fun': 1.0, 'at': 1.0}
Word element => {'while': 1.0, 'child': 1.0, 'or': 1.0, 'need': 1.0, 'other': 1.0, 'bag': 1.0, 'basket': 1.0, 'there': 1.0, 'place': 1.0, 'room': 1.0, 'tightly': 1.0, 'water': 1.0, 'after': 1.0, 'help': 1.0, 'which': 1.0, 'like': 1.0, 'hold': 2.0, 'be': 1.0, 'for': 4.0, 'stars': 1.0, 'time': 1.0, 'break': 1.0, 'and': 5.0, 'wheel': 1.0, 'try': 1.0, 'down': 1.0, 'may': 1.0, 'my': 2.0, 'maneuver': 1.0, 'you': 3.0, 'push': 1.0, 'quite': 1.0, 'underneath': 1.0, 'mostly': 1.0, 'challenge': 2.0, 'wait': 1.0, 'short': 1.0, 'putting': 1.0, 'i': 7.0, 'needed': 1.0, 'is': 1.0, 'handle': 1.0, 'bit': 4.0, 'easy': 1.0, 'get': 1.0, 'adjustment': 1.0, 'helps': 1.0, 'myself': 1.0, 'gave': 1.0, 'plenty': 1.0, 'with': 3.0, 'few': 1.0, 'bottle': 1.0, 'this': 1.0, 'release': 1.0, 'him': 1.0, 'it': 10.0, 'husband': 2.0, 'was': 6.0, 'had': 3.0, 'also': 3.0, 'seems': 1.0, 'in': 3.0, 'turn': 1.0, 'together': 2.0, 'lever': 1.0, 'small': 1.0, 'slight': 1.0, 'a': 10.0, 't': 1.0, 'front': 2.0, 'use': 1.0, 'the': 9.0, 'of': 4.0, 'really': 1.0, 'jogging': 2.0, 'extra': 1.0, 'items': 1.0, 'getting': 1.0, 'did': 1.0, 'do': 1.0, 'put': 1.0, 'couldn': 1.0, 'out': 2.0, 'although': 1.0, 'are': 1.0, 'first': 1.0, 'would': 1.0, 'diaper': 1.0, 'as': 1.0, 'awkward': 1.0, 'run': 2.0, 'little': 2.0, 'about': 1.0, 'height': 1.0, 'your': 2.0, 'surprised': 1.0, 'to': 8.0, 'high': 1.0, 'someone': 1.0, 'when': 1.0, 'because': 1.0, 'that': 2.0, 'concerned': 2.0, 'easily': 1.0, 'finally': 1.0, 'pleasantly': 1.0, 'by': 1.0, 'corners': 1.0, 'stroller': 2.0, 'how': 1.0, '34': 2.0, 'plastic': 1.0, 'holders': 1.0, 'through': 1.0, 'hard': 1.0, 'over': 1.0, 'snow': 1.0, '4': 1.0, 'cup': 1.0, 'running': 1.0, 'have': 1.0}
Word element => {'you': 1.0, 'so': 1.0, 'being': 1.0, 'excellent': 1.0, 'service': 1.0, 'my': 2.0, 'maclaren': 1.0, 'thank': 1.0, 'in': 1.0, 'wife': 1.0, 'and': 1.0, 'baby': 1.0, 'good': 1.0, 'pricing': 1.0, 'enjoys': 2.0, 'pushing': 1.0, 'it': 2.0}
Word element => {'kids': 1.0, 'or': 1.0, 'toddlers': 1.0, 'not': 1.0, 'but': 1.0, 'babies': 1.0, 'ok': 1.0, 'apart': 1.0, 'it': 1.0, 'about': 1.0, 'lasted': 1.0, '3': 1.0, 'days': 1.0, 'come': 1.0, 'might': 1.0, 'before': 1.0, 'splinter': 1.0, 'for': 1.0, 'starting': 1.0, 'be': 1.0, 'to': 1.0, 'and': 1.0}
Word element => {'safe': 1.0, 'but': 1.0, 'like': 1.0, 'teething': 1.0, 'recommend': 1.0, 'not': 2.0, 'would': 1.0, 'used': 1.0, 'times': 1.0, 'gave': 1.0, 'son': 1.0, '2': 1.0, 'for': 2.0, 'wanted': 1.0, 'to': 2.0, 'husband': 1.0, 'and': 3.0, 'me': 1.0, 'i': 2.0, 'old': 1.0, 'splintered': 1.0, 'my': 2.0, 'peeled': 1.0, 'christmas': 1.0, 'this': 1.0, 'it': 4.0, 'only': 1.0, 'he': 1.0, 's': 2.0, 'months': 1.0, 'babies': 1.0, '8': 1.0, 'already': 1.0}
Word element => {'it': 1.0, 'loves': 1.0, 'old': 1.0, 'month': 1.0, '18': 1.0, 'cute': 1.0}
Word element => {'soft': 1.0, 'pretty': 1.0, 'is': 1.0, 'it': 1.0, 'material': 1.0, 'prime': 1.0, 'too': 1.0, 'eligible': 1.0, 'little': 1.0, 'the': 1.0, 'my': 1.0, 'similar': 1.0, 'and': 1.0, 'only': 1.0, 'bag': 2.0, 'for': 3.0, 'good': 1.0, 'nephew': 1.0, 'that': 1.0, 's': 1.0}
Word element => {'recommend': 1.0, 'would': 1.0, 'personally': 1.0, 'important': 1.0, 'most': 1.0, 'safe': 1.0, 'line': 1.0, 'bottom': 1.0, 'belts': 1.0, 'unlatch': 1.0, 'order': 1.0, 'hard': 1.0, 'button': 1.0, 'release': 1.0, 'has': 1.0, 'them': 1.0, 'obviously': 1.0, 'your': 1.0, 'on': 1.0, 'large': 2.0, 'more': 2.0, 'there': 1.0, 'pain': 1.0, 'carseats': 1.0, 'a': 3.0, 's': 2.0, 'use': 1.0, 'found': 1.0, 'easy': 1.0, 'sure': 3.0, 'get': 2.0, 'unbuckle': 1.0, 'depends': 1.0, 'think': 1.0, 'part': 2.0, 'before': 1.0, 'wasn': 1.0, 'newborn': 1.0, 'testing': 1.0, 'decided': 1.0, 'sisters': 1.0, 'until': 1.0, 'tried': 1.0, 'i': 9.0, 'raved': 1.0, 'graco': 1.0, 'baby': 2.0, 'about': 1.0, 'their': 1.0, 'my': 3.0, 'figured': 1.0, 'removed': 1.0, 'this': 1.0, 'tightening': 1.0, 'after': 1.0, 'beneficial': 1.0, 'not': 2.0, 'had': 2.0, 'to': 10.0, 'as': 1.0, 't': 2.0, 'fit': 1.0, 'don': 1.0, 'up': 1.0, 'and': 3.0, 'tough': 1.0, 'do': 1.0, 'like': 1.0, 'very': 3.0, 'cannot': 1.0, 'but': 4.0, 'headrest': 1.0, 'newest': 1.0, 'can': 2.0, 'it': 9.0, 'although': 2.0, 'carseat': 1.0, 'be': 5.0, 'adjusted': 1.0, 'will': 2.0, 'also': 1.0, 'head': 1.0, 'grcco': 1.0, 'falling': 1.0, 'down': 1.0, 'which': 1.0, 'side': 1.0, 'one': 1.0, 'lot': 1.0, 'is': 4.0, 'at': 1.0, 'out': 2.0, 'nothing': 1.0, 'make': 1.0, 'help': 1.0, 'support': 1.0, 'that': 2.0, 'because': 1.0, 'usually': 1.0, 'the': 9.0, 'of': 2.0, 'necessary': 1.0, 'structure': 1.0, 'in': 3.0, 'm': 2.0, 'they': 2.0, 'older': 1.0, 'difficult': 1.0, 'strap': 1.0, 'are': 1.0, 'pushed': 1.0, 'by': 1.0, '35': 1.0, 'pull': 1.0, 'times': 1.0, 'was': 2.0, 'lbs': 1.0, 'time': 1.0, 'child': 1.0, 'product': 1.0, 'toddler': 1.0}
Word element => {'everything': 1.0, 'fits': 1.0, 'just': 1.0, 'i': 1.0, 'them': 1.0, 'see': 1.0, 'to': 1.0, 'the': 1.0, 'room': 1.0, 'hope': 1.0, 'both': 1.0, 'will': 1.0, 'wear': 1.0, 't': 1.0, 'in': 2.0, 'they': 1.0, 'delivery': 1.0, 'it': 2.0, 'can': 1.0, 'wait': 1.0}
Word element => {'here': 1.0, 'monitor': 1.0, 'baby': 1.0, 'motorola': 1.0, 'brasil': 2.0, 'the': 1.0, 'isn': 1.0, 'doesn': 2.0, 'it': 1.0, 'work': 1.0, 'this': 1.0, 'item': 1.0, 't': 3.0, 'exist': 1.0, 'who': 1.0, 'in': 2.0, 'fix': 2.0}
Word element => {'use': 1.0, 'must': 1.0, 'not': 1.0, 'does': 1.0, 'wirescamera': 1.0, 'into': 1.0, 'if': 1.0, 'hazard': 1.0, 'came': 1.0, 'crib': 1.0, 'nothing': 1.0, 'nails': 1.0, 'or': 1.0, 'knocks': 1.0, 'onto': 1.0, 'has': 1.0, 'a': 2.0, 'backcamera': 1.0, 'screws': 1.0, 'baby': 2.0, 'used': 1.0, 'controls': 1.0, '270': 1.0, 'nightvisioncan': 1.0, 'audio': 1.0, 'degreestimer': 1.0, 'sliding': 1.0, 'us': 1.0, 'charge': 2.0, 'when': 1.0, 'left': 1.0, 'pros': 1.0, 'this': 1.0, 'slots': 1.0, 'with': 3.0, 'it': 2.0, 'item': 1.0, 'right': 1.0, 'but': 1.0, '2': 3.0, 'can': 1.0, 'rotate': 1.0, 'at': 1.0, 'down': 1.0, 'bottom': 1.0, 'through': 1.0, 'charged': 1.0, 'purchased': 1.0, 'r': 1.0, 'be': 2.0, 'to': 4.0, 'ithas': 1.0, 'talk': 1.0, 'in': 1.0, 'camera': 1.0, 'turn': 1.0, 'off': 1.0, 'after': 1.0, 'auto': 1.0, '4': 1.0, 'hoursmonitor': 1.0, 'about': 2.0, 'no': 1.0, 'battery': 2.0, 'plugged': 1.0, 'and': 1.0, 'up': 1.0, 'hr': 1.0, 'for': 1.0, 'kit': 1.0, 'cons': 1.0, 'poses': 1.0, 'mounting': 1.0}
Word element => {'high': 1.0, 'material': 1.0, 'colors': 1.0, 'are': 1.0, 'the': 1.0, 'hospital': 1.0, 'quality': 1.0, 'and': 1.0, 'very': 1.0, 'perfect': 1.0, 'i': 1.0, 'nice': 1.0, 'reception': 1.0, 'swaddle': 1.0, 'born': 1.0, 'used': 1.0, 'its': 1.0, 'in': 2.0, 'for': 1.0, 'new': 1.0}
Word element => {'special': 1.0, 'that': 1.0, 'outfits': 1.0, 'cozy': 1.0, 'baby': 1.0, 'any': 1.0, 'recommend': 1.0, 'would': 1.0, 'gushed': 1.0, 'almost': 1.0, 'over': 1.0, 'guy': 1.0, 'quiet': 1.0, 'though': 1.0, 'and': 1.0, 'newborn': 1.0, 'his': 1.0, 'mane': 1.0, 'male': 1.0, 'the': 2.0, 'words': 1.0, 'outfit': 1.0, 'is': 2.0, 'teacher': 1.0, 'hat': 1.0, 'gift': 2.0, 'cute': 1.0, 'print': 1.0, 'of': 1.0, 'swaddler': 1.0, 'a': 4.0, 'just': 1.0, 'hysterical': 1.0, 'beyond': 1.0, 'i': 2.0, 'cocoon': 1.0, 'gave': 1.0, 'he': 1.0, 'zebra': 1.0, 'this': 2.0, 'it': 1.0, 'son': 1.0, 'as': 2.0, 'to': 1.0, 'for': 2.0}
Word element => {'ugly': 1.0, 'than': 1.0, 'eyes': 1.0, 'appealing': 1.0, 'traditional': 1.0, 'the': 2.0, 'more': 1.0, 'area': 1.0, 'kitchen': 1.0, 'for': 3.0, 'search': 1.0, 'in': 1.0, 'hallways': 1.0, 'i': 1.0, 'night': 2.0, 'to': 1.0, 'was': 2.0, 'my': 1.0, 'looking': 1.0, 'something': 1.0, 'that': 1.0, 'plant': 1.0, 'and': 1.0, 'energy': 1.0, 'is': 1.0, 'light': 1.0, 'efficient': 1.0, 'little': 1.0, 'this': 1.0, 'plesent': 1.0, 'lighting': 1.0, 'far': 1.0}
Word element => {'with': 1.0, 'happy': 1.0, 'the': 1.0, 'more': 1.0, 'product': 1.0, 'be': 1.0, 'two': 1.0, 'inserts': 1.0, 'had': 1.0, 'diaper': 1.0, 'i': 1.0, 'diapers': 1.0, 'love': 1.0, 'great': 1.0, 'quality': 1.0, 'cloth': 1.0, 'each': 2.0, 't': 1.0, 'item': 1.0, 'couldn': 1.0, 'was': 1.0, 'individually': 1.0, 'wrapped': 1.0}
Word element => {'for': 1.0, 'working': 1.0, 'they': 1.0, 'us': 1.0, 'less': 1.0, 'are': 2.0, 'desirable': 1.0, 'china': 1.0, 've': 1.0, 'than': 1.0, 'diapers': 1.0, 'but': 1.0, 'heard': 1.0, 'guess': 1.0, 'tried': 1.0, 'i': 2.0, 'things': 1.0, 'some': 1.0, 'have': 1.0, 'great': 1.0, 't': 1.0, 'these': 1.0, 'fantastic': 1.0, 'about': 1.0, 'don': 1.0, 'out': 1.0, 'made': 1.0, 'them': 2.0, 'knock': 1.0, 'until': 1.0, 'you': 1.0}
Word element => {'customer': 1.0, 'amazon': 1.0, 'seller': 1.0, 'feedback': 1.0, 'left': 1.0, 'an': 1.0, 'seems': 1.0, 'this': 1.0, 'part': 1.0, 'from': 2.0, 'separate': 1.0, 'of': 1.0, 'one': 1.0, 'laminate': 1.0, 'website': 1.0, 'the': 8.0, 'news': 1.0, 'i': 2.0, 'again': 1.0, 'buy': 1.0, 'would': 1.0, 'wash': 1.0, 'colors': 1.0, 'replaced': 1.0, 'start': 1.0, 'isn': 1.0, 'toddler': 1.0, 'but': 1.0, '2': 1.0, 'more': 2.0, 'these': 2.0, 'diaper': 2.0, 'started': 1.0, 'baby': 1.0, 'potty': 1.0, 'stash': 1.0, 'loved': 1.0, 'update': 1.0, 'out': 1.0, 'responded': 1.0, 'and': 2.0, 'immediately': 1.0, 'quite': 1.0, 'different': 1.0, 'fabric': 2.0, 'good': 2.0, 'my': 2.0, 'bough': 1.0, 'fill': 1.0, 'felt': 1.0, 'it': 1.0, 'needed': 2.0, 'service': 1.0, 'trained': 1.0, 'alva': 2.0, 'are': 1.0, 'has': 1.0, 'well': 2.0, 'anomaly': 1.0, 'addition': 1.0, 's': 1.0, 't': 2.0, 'a': 1.0, 'we': 2.0, 'diapers': 3.0, 'didn': 1.0, 'if': 1.0, 'want': 1.0, 'like': 1.0, 'absorbency': 1.0, '18': 1.0, 'bucks': 1.0, 'on': 3.0, 'as': 2.0, 'to': 4.0, 'our': 1.0, 'favorite': 1.0, 'just': 1.0, 'for': 2.0, 'fit': 1.0, 'great': 3.0, '1': 1.0, 'spend': 1.0, 'nice': 1.0}
Word element => {'find': 1.0, 'diapering': 1.0, 'utilities': 1.0, 'saves': 1.0, 'will': 1.0, 'also': 1.0, 'be': 1.0, 'twice': 1.0, 'shell': 1.0, 'use': 1.0, 'of': 1.0, 'with': 1.0, 'come': 1.0, 'it': 2.0, 'pieces': 1.0, 'have': 1.0, 'needs': 1.0, 'time': 1.0, 'so': 1.0, 'little': 1.0, 'very': 1.0, 'from': 1.0, 'start': 1.0, 'washed': 1.0, 'make': 1.0, 'on': 2.0, 'easy': 1.0, 'bigger': 1.0, 'these': 4.0, 'the': 6.0, 'newborn': 1.0, 'wash': 1.0, 't': 2.0, 'a': 5.0, 'well': 2.0, 'money': 2.0, 'most': 1.0, 'but': 1.0, 'change': 1.0, 'can': 2.0, 'work': 3.0, 'squirmy': 1.0, 'absorbency2': 1.0, 'are': 8.0, 'for': 5.0, 'which': 2.0, 'using': 1.0, 'pound': 1.0, 'one': 1.0, 'and': 3.0, 'each': 2.0, 'harder': 1.0, 'value': 1.0, 'before': 1.0, 'hundreds': 1.0, '20': 1.0, 'large': 1.0, 'best': 1.0, 'price': 1.0, 'baby': 3.0, 'didn': 1.0, 'diapers': 3.0, 'wouldn': 1.0, 'extremely': 1.0, 'liners': 2.0, 'pretty': 1.0, 'beginning': 1.0, 'pros': 1.0, 'snaps': 1.0, 'if': 3.0, 'great': 2.0, 'spend': 1.0, 'big': 1.0, 'to': 5.0, 'as': 1.0, 'two': 2.0, 'i': 1.0, 'cloth': 3.0, 'pocket': 1.0, 'they': 6.0, 'tightest': 1.0, 'save': 1.0, 'shellcons': 1.0, 'my': 1.0, 'am': 1.0, 'you': 5.0, 'looking': 1.0, 'thing': 1.0, 'no': 1.0, 'wants': 1.0}
Word element => {'liners': 1.0, 'well': 1.0, 'diapers': 1.0, 'sleeping': 1.0, 'wake': 1.0, 'not': 1.0, 'fine': 1.0, 'be': 1.0, 'would': 1.0, 'sure': 1.0, 'm': 2.0, 'through': 1.0, 'if': 1.0, 'just': 1.0, 'wet': 1.0, 'usually': 1.0, 'covers': 1.0, 'it': 1.0, 'she': 1.0, 'handle': 1.0, 'although': 1.0, 'long': 1.0, 'known': 1.0, 'at': 2.0, 'hours': 1.0, 'little': 1.0, 'very': 1.0, 'excellent': 1.0, 'colors': 1.0, 'wash': 1.0, 'up': 2.0, 'don': 3.0, 'lesser': 1.0, 'brand': 1.0, 'keeping': 1.0, 'wakes': 1.0, 'use': 2.0, 'overnight': 1.0, 'her': 2.0, 'good': 1.0, 'really': 1.0, 'dry': 2.0, 'they': 1.0, 'these': 1.0, 'such': 1.0, 'the': 3.0, 'pee': 1.0, 'we': 4.0, 't': 3.0, 'a': 2.0, 'change': 2.0, 'but': 2.0, 'cute': 1.0, 'designs': 1.0, 'about': 1.0, 'frequently': 1.0, 'changed': 1.0, 'diaper': 3.0, 'leak': 1.0, 'much': 2.0, 'however': 1.0, 'i': 3.0, 'disposables': 1.0, 'to': 3.0, 'as': 2.0, 'our': 1.0, 'that': 1.0, 'is': 1.0, 'sleeps': 1.0, '7': 1.0, 'baby': 2.0, 'them': 2.0, 'night': 2.0, 'buns': 1.0, 'and': 4.0, 'too': 1.0, 'product': 1.0, 'for': 1.0, 'this': 1.0}
Word element => {'better': 1.0, 'mean': 1.0, 'doesn': 1.0, 'expensive': 1.0, 'more': 1.0, 're': 2.0, 'others': 1.0, 'cheaper': 1.0, 'tush': 1.0, 'her': 1.0, 'comfy': 1.0, 'soft': 1.0, 'between': 1.0, 'd': 1.0, 'im': 1.0, 'so': 2.0, 'time': 1.0, 'rashy': 1.0, 'like': 1.0, 'and': 6.0, 'starting': 1.0, 'easy': 1.0, 'sold': 1.0, 'get': 1.0, 'super': 1.0, 'month': 2.0, 'precious': 1.0, '3': 1.0, 'on': 3.0, 'make': 1.0, 'my': 2.0, 'with': 1.0, 'home': 1.0, 'haven': 1.0, 'olds': 1.0, 'at': 1.0, 'bigger': 1.0, 'stay': 1.0, 'was': 1.0, 'leaking': 1.0, 'quicker': 1.0, 'to': 5.0, 'your': 1.0, 'any': 1.0, 'finally': 1.0, 'all': 1.0, 'other': 2.0, 'making': 1.0, 'much': 1.0, 'bum': 1.0, 'pocket': 1.0, 'quite': 1.0, 'mommy': 1.0, 'figured': 1.0, 't': 4.0, 'a': 4.0, 'we': 1.0, 'diaper': 1.0, 'thirsties': 1.0, 'leak': 1.0, 'cloth': 2.0, 'i': 8.0, 'waste': 1.0, 'don': 2.0, 'for': 4.0, 've': 2.0, 'little': 3.0, 'been': 3.0, 'disposable': 1.0, 'while': 1.0, 'later': 1.0, 'slide': 1.0, 'but': 2.0, 'had': 3.0, 'wanting': 1.0, 'wasnt': 1.0, 'awhile': 1.0, 'bought': 1.0, 'try': 1.0, 'ones': 2.0, 'one': 2.0, 'few': 1.0, 'just': 2.0, 'switch': 2.0, 'different': 1.0, 'right': 1.0, 'easier': 1.0, 'the': 10.0, 'of': 1.0, 'using': 2.0, 'including': 1.0, 'outer': 1.0, 'tried': 1.0, 'until': 1.0, 'kinds': 1.0, 'alvas': 2.0, 'them': 1.0, 'almost': 1.0, 'alva': 1.0, 'diapers': 4.0, 'are': 3.0, 'size': 2.0, 'able': 1.0, 'you': 1.0, 'have': 1.0, 'buy': 1.0, 'they': 4.0, 'also': 1.0, 'soo': 1.0, 'inner': 1.0, 'than': 2.0, 'problems': 1.0, 'because': 2.0, 'inserts': 1.0, 'in': 1.0}
Word element => {'second': 1.0, 'desirable': 1.0, 'is': 1.0, 'which': 1.0, 'etsy': 1.0, 'ordered': 1.0, 'fabric': 1.0, 'have': 1.0, 'in': 1.0, 'also': 1.0, 'we': 1.0, 'skin': 1.0, 's': 1.0, 'option': 1.0, 'but': 1.0, 'work': 1.0, 'for': 1.0, 'i': 1.0, 'cloth': 1.0, 'from': 1.0, 'very': 2.0, 'handmade': 1.0, 'and': 1.0, 'good': 2.0, 'set': 1.0, 'leak': 1.0, 'they': 3.0, 'used': 1.0, 'new': 1.0, 'are': 3.0, 'my': 1.0, 'diaperer': 1.0, 'a': 2.0, 'well': 1.0, 'don': 1.0, 'properly': 1.0, 'more': 1.0, 'these': 2.0, 'the': 2.0, 't': 1.0, 'daughter': 1.0, 'when': 1.0, 'easy': 1.0, 'on': 1.0}
Word element => {'diaper': 1.0, 'the': 2.0, '2': 1.0, 'on': 1.0, '20': 1.0, 'spend': 1.0, 'i': 4.0, 't': 1.0, 'a': 1.0, 'don': 1.0, 'years': 1.0, 'them': 1.0, 'baby': 1.0, 'an': 1.0, 'diapers': 1.0, 'to': 2.0, 'care': 1.0, 'blowouts': 1.0, 'used': 1.0, 'for': 2.0, 'expensive': 1.0, 'company': 1.0, 'my': 2.0, 'need': 1.0, 'friends': 1.0, 'anyone': 1.0, 'be': 1.0, 'american': 2.0, 'more': 2.0, 'say': 1.0, 'brands': 1.0, 'than': 1.0, 'from': 1.0, 'do': 1.0, 'and': 1.0, 'not': 1.0, 'using': 1.0, 'know': 1.0, 'or': 1.0, 'have': 2.0, 'alva': 1.0, 'good': 1.0, 'last': 1.0, 'with': 1.0, 'no': 1.0, 'had': 1.0, 'what': 1.0, 'leaks': 1.0}
Word element => {'and': 1.0, 'alvas': 1.0, 'because': 1.0, 'are': 1.0, 'were': 1.0, 'that': 1.0, 'heard': 1.0, 'delaminating': 1.0, 'i': 1.0, 'issues': 2.0, 'we': 3.0, 'the': 1.0, 'leary': 1.0, 'had': 2.0, 'was': 1.0, 'have': 1.0, 'thing': 1.0, 'having': 1.0, 'no': 1.0, 'some': 1.0, 'but': 1.0, 'several': 1.0, 'into': 1.0, 'months': 1.0, 'this': 1.0, 'cd': 1.0}
Word element => {'ever': 1.0, 'leaking': 1.0, 'after': 1.0, 'snap': 1.0, 'medium': 1.0, 'need': 1.0, 've': 1.0, 'would': 1.0, 'he': 2.0, 'months': 1.0, '9': 1.0, 'is': 1.0, 'my': 1.0, '20lbs': 1.0, 'since': 2.0, 'correct': 1.0, 'sure': 1.0, 'make': 1.0, 'size': 2.0, 'nothing': 1.0, 'overnight': 1.0, 'those': 1.0, 'use': 1.0, 'mostly': 1.0, 'been': 1.0, 'that': 1.0, 'banana': 1.0, 'charlie': 1.0, 'pricey': 1.0, 'assumed': 1.0, 'quite': 1.0, 'also': 1.0, 'them': 1.0, 'order': 2.0, 'an': 1.0, 'but': 3.0, 'diapers': 4.0, 'i': 9.0, 'cloth': 1.0, 'better': 1.0, 'recently': 1.0, 'has': 1.0, 'you': 1.0, 'complained': 1.0, 'inserts': 2.0, 'small': 1.0, 'have': 5.0, 'rise': 1.0, 'fb': 1.0, 'made': 1.0, 'these': 2.0, 'group': 1.0, 'same': 1.0, 'if': 1.0, 'pretty': 1.0, 'many': 1.0, 'people': 1.0, 'are': 3.0, 'darn': 1.0, 'no': 1.0, 'about': 3.0, 'in': 1.0, 'a': 2.0, 'hemp': 1.0, 'see': 1.0, 'needs': 1.0, 'boy': 1.0, 'co': 1.0, 'anan': 1.0, 'personally': 1.0, 'good': 2.0, 'op': 1.0, 'alvas': 2.0, 'fit': 1.0, 'love': 1.0, 'for': 2.0, 'and': 3.0, 'realized': 1.0, 'problems': 1.0, 'brand': 1.0, 'the': 5.0, 'basically': 1.0, 'complain': 1.0, 'with': 1.0, 'few': 1.0, 'just': 2.0, 'as': 1.0, 'to': 2.0, '17': 1.0, 'which': 1.0, 'like': 1.0}
Word element => {'back': 1.0, 'my': 1.0, 'receive': 1.0, 'diapers': 1.0, 'you': 1.0, 'each': 1.0, 'received': 1.0, 'money': 1.0, 'but': 2.0, '2': 1.0, 'the': 2.0, 'states': 1.0, 'clearly': 1.0, 'diaper': 1.0, 'not': 2.0, 'total': 1.0, 'thought': 1.0, 'forever': 1.0, 'were': 1.0, 'this': 2.0, 'buy': 1.0, 'took': 1.0, 'usually': 1.0, 'only': 1.0, 'do': 2.0, 'get': 2.0, 'description': 1.0, 'and': 1.0, 'alva': 1.0, 'are': 1.0, 'things': 1.0, 'should': 1.0, 'here': 1.0, 'leave': 1.0, 'product': 2.0, 'for': 3.0, 'will': 1.0, 'missing': 1.0, 'i': 5.0, '4': 1.0, 'wonderful': 1.0, 'them': 1.0, 'from': 1.0, 'liners': 1.0, 'seller': 1.0, 'reviews': 1.0, 'they': 1.0, 'to': 2.0, 'half': 1.0, 'hope': 1.0}
Word element => {'clean': 1.0, 'use': 1.0, 'amazing': 1.0, 'quickly': 1.0, 'changed': 1.0, 'him': 1.0, 'easy': 2.0, 'get': 1.0, 'pees': 1.0, 'eye': 1.0, 'an': 1.0, 'have': 3.0, 'thing': 1.0, 'price': 2.0, 'because': 1.0, 'them': 1.0, 'started': 2.0, 'other': 1.0, 'making': 1.0, 'just': 1.0, 'bought': 1.0, 'are': 3.0, 'my': 2.0, 'stash': 1.0, 'otherwise': 1.0, 'i': 5.0, 'cloth': 1.0, 'the': 4.0, 'these': 3.0, 'can': 1.0, '2': 1.0, 'days': 1.0, 't': 1.0, 'ago': 1.0, 'a': 2.0, 'diapers': 1.0, 'to': 6.0, 'and': 5.0, 'beat': 1.0, 'transition': 1.0, 'with': 1.0, 'only': 1.0, 'ordered': 1.0, '35': 1.0, 'noticed': 1.0, 'more': 1.0, 'is': 3.0, 'that': 1.0, 'reviews': 1.0, 'they': 3.0, 'for': 1.0, 'supposed': 1.0, 'love': 1.0, 'fit': 1.0, 'he': 1.0, '6': 1.0, '40': 1.0, 'on': 1.0, 'guy': 1.0, 'little': 2.0, 'you': 1.0, 'when': 1.0, 'lbs': 1.0, '11': 1.0, 'big': 1.0, 'leg': 1.0, 'opening': 1.0, 'keep': 1.0}
Word element => {'with': 1.0, 'start': 1.0, 'put': 1.0, 'be': 2.0, 'just': 1.0, 'weekends': 1.0, 'son': 2.0, 'at': 2.0, 'two': 1.0, 'disposables': 2.0, 'for': 1.0, 'looking': 1.0, 'using': 1.0, 'liked': 1.0, 'being': 1.0, 'our': 2.0, 'how': 1.0, 'see': 1.0, 'about': 1.0, 'but': 3.0, 'save': 1.0, 'my': 1.0, 'often': 2.0, 'in': 4.0, 'weeks': 1.0, 'now': 1.0, 'pees': 1.0, 'night': 2.0, 'even': 1.0, 'cloth': 2.0, 'and': 2.0, 'too': 2.0, 'into': 1.0, 'been': 2.0, 'babies': 1.0, 'due': 1.0, 'think': 1.0, 'pack': 1.0, 'only': 1.0, 'have': 2.0, 'him': 1.0, 'it': 2.0, 'this': 1.0, 'pooped': 1.0, 'we': 6.0, 's': 1.0, 'a': 1.0, 'daycare': 1.0, 'was': 1.0, 'on': 1.0, 'long': 1.0, 'pee': 1.0, 'run': 1.0, 'priced': 1.0, 'reasonably': 1.0, 'doing': 1.0, 'the': 3.0, 'of': 1.0, 'money': 1.0, 'bought': 1.0, 'so': 2.0, 'he': 2.0, 'far': 1.0, 'through': 2.0, 'they': 3.0, 'to': 6.0, 'pretty': 2.0, 'bulkier': 1.0, 'fair': 1.0, 'good': 2.0, 'exploring': 1.0, 'clean': 1.0, 'than': 1.0, 'does': 1.0, 'double': 1.0, 'brands': 1.0, 'alva': 1.0, 'not': 1.0, 'diapers': 2.0, 'are': 3.0, 'bad': 1.0, 'compare': 1.0, 'during': 1.0, 'though': 2.0, 'day': 1.0, 'pad': 1.0, 'quite': 2.0, 'his': 1.0, 'overnight': 1.0, 'them': 5.0, 'has': 1.0, 'i': 2.0, 'well': 1.0, 'couple': 1.0, 'times': 1.0, 'rinse': 1.0, 'will': 1.0, 'other': 1.0, 'these': 1.0}
Word element => {'china': 1.0, '2': 1.0, 'almost': 1.0, 'another': 1.0, '24th': 1.0, 'thin': 1.0, 'them': 1.0, 'started': 1.0, 'came': 1.0, 'glad': 1.0, 'from': 1.0, 'bumpkins': 1.0, 'leak': 1.0, 'best': 2.0, 'blueberry': 1.0, 'come': 1.0, 'where': 1.0, 'different': 1.0, 'diapersafari': 1.0, 'like': 4.0, 'using': 2.0, 'pocket': 1.0, 'they': 3.0, 'between': 1.0, 'have': 2.0, 'our': 1.0, 'fit': 3.0, 'rest': 1.0, 'these': 7.0, 'already': 1.0, 'and': 8.0, 'tall': 1.0, 'horrible': 1.0, 'use': 1.0, 'thinner': 1.0, 'want': 1.0, 'if': 1.0, 'baby': 1.0, 'many': 1.0, 'bumgenius': 1.0, 'to': 5.0, 'pretty': 1.0, 'type': 1.0, '6': 2.0, 'so': 3.0, 'purchase': 1.0, 'my': 1.0, 'wanted': 1.0, 'be': 1.0, 'try': 1.0, 'one': 1.0, 'brands': 3.0, 'does': 1.0, 'alva': 1.0, 'hero': 1.0, 'not': 3.0, 'are': 5.0, 'diapers': 3.0, 'aio': 1.0, 'work': 1.0, 'but': 1.0, 'directly': 1.0, 'most': 1.0, 'stuck': 1.0, 'with': 1.0, 'took': 1.0, 'cloth': 2.0, 'i': 8.0, 'disposables': 1.0, 'more': 3.0, 'feel': 1.0, 'silly': 1.0, 'note': 2.0, 'the': 8.0, 'of': 2.0, 'doing': 1.0, 'you': 1.0, 'because': 1.0, 'that': 3.0, 'easily': 1.0, '20': 1.0, 'yet': 1.0, 'absorbent': 1.0, 'much': 1.0, 'put': 1.0, 'prefect': 1.0, 'on': 1.0, 'easy': 1.0, 'tried': 1.0, 'off': 1.0, 'inserts': 1.0, 'go': 1.0, 'take': 1.0, 'we': 1.0, 'a': 2.0, 'm': 1.0, 'in': 2.0, 'easiest': 1.0, 'son': 2.0, 'should': 1.0, 'is': 1.0, 'at': 1.0, 'would': 1.0, 'weeks': 1.0, 'also': 1.0, 'when': 1.0, 'pampers': 1.0, 'huggies': 2.0, 'all': 1.0, 'other': 1.0, 'months': 1.0, '64': 1.0, 'percentile': 2.0}
Word element => {'summer': 1.0, 'tshirt': 1.0, 'sheets': 1.0, 'setting': 1.0, 'delicate': 1.0, 'them': 1.0, 'detergent': 1.0, 'us': 1.0, 'morning': 1.0, 'on': 4.0, 'alva': 1.0, 'time': 2.0, 'free': 1.0, 'express': 1.0, 'whole': 1.0, 'about': 1.0, 'no': 2.0, 'should': 1.0, 'think': 1.0, 'better': 1.0, 'enough': 4.0, 're': 2.0, 'their': 1.0, 'lucky': 1.0, 'cost': 1.0, 've': 1.0, 'order': 1.0, 'through': 1.0, 'bottom': 1.0, 'far': 1.0, 'a': 5.0, 'we': 2.0, 'could': 1.0, 'cute': 2.0, 'are': 2.0, 'diapers': 2.0, 'took': 1.0, 'even': 1.0, 'ecos': 1.0, 'week': 1.0, 'but': 2.0, 'deals': 1.0, 'throw': 1.0, 'great': 1.0, 'the': 10.0, 'and': 6.0, 'months': 1.0, 'get': 1.0, 'find': 1.0, 'ordered': 1.0, 'shipping': 1.0, 'to': 3.0, 'pads': 1.0, 'our': 2.0, 'from': 1.0, 'amazon': 1.0, 'i': 6.0, 'last': 1.0, 'cheaper': 1.0, 'laundry': 1.0, 'up': 2.0, 'use': 1.0, 'wash': 1.0, 'many': 1.0, 'baby': 4.0, 'absorbent': 1.0, 'way': 1.0, 'outfit': 1.0, 'it': 1.0, 'can': 1.0, 'so': 1.0, 'clips': 1.0, 'these': 4.0, 'comes': 1.0, 'sleeps': 1.0, 'in': 4.0, 'probably': 1.0, 'best': 1.0, 'as': 2.0, 'diaper': 4.0, 'china': 1.0, 'for': 3.0, 'price': 1.0, 'snuza': 1.0, 'night': 3.0, 'you': 2.0, 'dryer': 2.0, 'have': 2.0, 'avoid': 1.0, 'put': 1.0, 'do': 1.0, 'like': 1.0, 'which': 1.0, 'my': 1.0, 'may': 1.0, 'website': 1.0, 'me': 1.0, 'disposable': 2.0, 'just': 1.0, 'ended': 1.0, 'if': 1.0, 'damp': 1.0, 'with': 2.0, 'that': 1.0, 'problems': 1.0, 'throughout': 1.0, 'day': 1.0, 'double': 1.0, 'though': 2.0, 'problem': 1.0, 'makes': 1.0, 'wears': 1.0, 'at': 1.0, 'mine': 1.0}
Word element => {'recommend': 1.0, 'definitely': 1.0, 'cd': 1.0, 'new': 1.0, 'when': 1.0, 'i': 1.0, 'buy': 1.0, 'to': 2.0, 'child': 1.0, 'price': 1.0, 'are': 1.0, 'and': 3.0, 'love': 1.0, 'absolutely': 1.0, 'more': 1.0, 'the': 1.0, 'great': 1.0, 'these': 2.0, 'our': 1.0, 'we': 3.0, 'have': 1.0, 'they': 1.0, 'next': 1.0, 'is': 1.0, 'diapers': 1.0, 'work': 1.0, 'plan': 1.0, 'well': 1.0}
Word element => {'worth': 1.0, 'product': 1.0, 'nice': 1.0, 'son': 1.0, 'my': 1.0, 'soft': 1.0, 'so': 1.0, 'money': 1.0, 'colors': 1.0, 'of': 1.0, 'cost': 1.0, 'comes': 1.0, 'reduce': 1.0, 'a': 1.0, 'is': 2.0, 'the': 1.0, 'diaper': 3.0, 'with': 1.0, 'it': 3.0, 'this': 3.0, 'have': 3.0, 'good': 1.0, 'been': 2.0, 'reuse': 1.0, 'we': 2.0, 'love': 1.0, 'for': 3.0, 'one': 1.0, 'i': 1.0, 'and': 4.0, 'you': 1.0, 'multiple': 1.0, 'kids': 1.0, 'spent': 1.0, 'two': 1.0, 'can': 1.0, 'looking': 1.0, 'spending': 1.0, 'will': 1.0, 'diapers': 1.0, 'definitely': 1.0}
Word element => {'lbs': 1.0, '10': 1.0, '9': 1.0, 'was': 1.0, 'she': 1.0, 'start': 1.0, 'however': 1.0, 'snugly': 1.0, 'tiny': 1.0, 'under': 1.0, 'have': 1.0, 'also': 1.0, 'more': 1.0, 'is': 1.0, 'and': 3.0, 'of': 1.0, 'with': 2.0, 'thin': 1.0, 'now': 1.0, 'they': 5.0, 'less': 1.0, 'my': 1.0, 'are': 3.0, 'until': 1.0, 'great': 1.0, 'these': 3.0, 'the': 1.0, 'i': 6.0, 'equal': 1.0, 'before': 1.0, 'percentile': 1.0, 'well': 1.0, 't': 1.0, 'a': 2.0, 'about': 2.0, 'dozen': 1.0, 'ended': 1.0, 've': 2.0, 'in': 2.0, '5th': 1.0, '8': 1.0, 'held': 1.0, 'been': 1.0, 'using': 2.0, 'fit': 1.0, 'expensive': 2.0, 'for': 1.0, 'quality': 1.0, 'baby': 2.0, 'them': 1.0, 'didn': 1.0, 'diapers': 2.0, '2': 1.0, 'but': 1.0, 'just': 1.0, 'brands': 1.0, 'than': 1.0, 'because': 1.0, 'to': 2.0, 'grow': 1.0, 'comparable': 1.0, 'as': 2.0, 'her': 1.0, 'good': 1.0, 'invested': 1.0, 'months': 1.0, 'bought': 1.0, 'other': 1.0, 'compare': 1.0, 'up': 2.0, 'cheaper': 1.0}
Word element => {'purchase': 1.0, 'my': 1.0, 'primary': 1.0, 'is': 1.0, 'which': 1.0, 'chamomile': 1.0, 'the': 3.0, 'feels': 2.0, 'gently': 1.0, 'over': 1.0, 'warmer': 1.0, 'and': 3.0, 'five': 1.0, 'dual': 1.0, 'on': 1.0, 'your': 1.0, 'makes': 1.0, 'i': 2.0, 'it': 5.0, 's': 2.0, 'relaxing': 1.0, 'extremely': 1.0, 'comfortable': 1.0, 'flipping': 1.0, 'reasons': 1.0, 'cool': 1.0, 'one': 2.0, 'given': 1.0, 'stars': 2.0, 'for': 3.0, 'product': 1.0, 'giving': 1.0, 'be': 1.0, 'sidedness': 1.0, 'four': 1.0, 'lavender': 1.0, 'smell': 1.0, 'not': 1.0, 'this': 1.0, 'eyes': 1.0, 'perfect': 1.0, 'side': 1.0, 'because': 1.0, 'than': 1.0, 'wanted': 1.0, 'to': 1.0, 'was': 1.0, 'would': 1.0, 'you': 1.0, 'am': 1.0, 'when': 1.0, 'easily': 1.0, 'have': 1.0, 'fading': 1.0, 'of': 2.0}
Word element => {'day': 1.0, 'twice': 1.0, 'sometimes': 1.0, 'everyday': 1.0, 'it': 1.0, 'use': 1.0, 'years': 1.0, 'once': 1.0, 'at': 1.0, 'two': 1.0, 'sorry': 1.0, 'is': 1.0, 'natralia': 1.0, 'cream': 1.0, '20': 1.0, 'review': 1.0, 'out': 1.0, 'i': 1.0, 'ureacin': 2.0, 'under': 1.0, 'am': 1.0, 'check': 1.0, 'a': 2.0, 'using': 1.0, 'far': 1.0, 'my': 1.0, 'superior': 1.0, 'still': 1.0, 'product': 1.0, 'be': 1.0, 'after': 1.0, 'almost': 1.0, 'least': 1.0, 'may': 1.0, 'will': 1.0}
Word element => {'scarring': 1.0, 'dermatologist': 1.0, 'this': 1.0, 'procedures': 1.0, 'alternative': 1.0, 'is': 1.0, 'offers': 1.0, 'the': 1.0, 'that': 2.0, 'know': 1.0, 'only': 1.0, 'of': 2.0, 'its': 1.0, 'to': 1.0, 'an': 1.0, 'product': 1.0, 'kind': 1.0, 'i': 1.0}
Word element => {'grandparent': 1.0, 'or': 1.0, 'more': 1.0, 'might': 1.0, 'makes': 1.0, 'thing': 1.0, 'only': 1.0, 'afford': 1.0, 'if': 2.0, 'have': 1.0, 'pricey': 1.0, 'isn': 1.0, 'love': 1.0, 'for': 5.0, 'kit': 1.0, 'survival': 1.0, 'a': 6.0, 's': 7.0, 't': 2.0, 'pilling': 1.0, 'finishing': 2.0, 'ok': 2.0, 'much': 1.0, 'budget': 1.0, 'them': 1.0, 'improved': 1.0, 'take': 1.0, 'play': 1.0, 'and': 4.0, 'plush': 1.0, 'quality': 2.0, 'description': 1.0, 'luxurious': 1.0, 'except': 1.0, 'just': 2.0, 'home': 1.0, 'by': 1.0, 'not': 1.0, 'n': 1.0, 'want': 1.0, 'is': 6.0, 'in': 1.0, 'angels': 1.0, 'aren': 1.0, 'process': 1.0, 'great': 1.0, 'sight': 1.0, 'can': 3.0, 'so': 1.0, 'kaboodle': 1.0, 'beyond': 1.0, 'everything': 1.0, 'visit': 1.0, 'when': 1.0, 'your': 1.0, 'idea': 1.0, 'candidate': 1.0, 'parents': 1.0, 'suspect': 1.0, 'one': 2.0, 'fiber': 1.0, 'nice': 1.0, 'little': 1.0, 'will': 1.0, 'with': 1.0, 'it': 11.0, 'heart': 1.0, 'warming': 1.0, 'to': 3.0, 'most': 1.0, 'sleep': 1.0, 'gift': 1.0, 'good': 1.0, 'daily': 1.0, 'daycare': 1.0, 'product': 2.0, 'child': 1.0, 'price': 1.0, 'that': 2.0, 'seams': 1.0, 'rate': 1.0, 'threads': 1.0, 'expected': 1.0, 'i': 2.0, 'well': 1.0, 'breathe': 1.0, 'able': 1.0, 'plump': 1.0, 'filled': 1.0, 'says': 1.0, 'toddlers': 1.0, 'awakening': 1.0, 'sweaty': 1.0, 'headed': 1.0, 'overall': 1.0, 'be': 2.0, 'doting': 1.0, 'come': 1.0, 'especially': 1.0, 'pillow': 1.0, 'll': 1.0, 'children': 1.0, 'trimming': 1.0, 'whole': 1.0, 'my': 1.0, 'the': 11.0, 'of': 1.0, 'luxury': 2.0, 'update': 1.0, 'item': 1.0, 'how': 1.0, 'launders': 1.0, 'this': 3.0, 'cute': 1.0}
Word element => {'daycare': 1.0, 'for': 1.0, 'sleep': 1.0, 'plain': 1.0, 'soft': 1.0, 'and': 4.0, 'pretty': 1.0, 'great': 1.0, 'nicely': 1.0, 'such': 1.0, 'the': 2.0, 'cover': 1.0, 'pillow': 1.0, 'plush': 1.0, 'is': 3.0, 'really': 1.0, 'it': 2.0, 'nicer': 1.0, 'this': 1.0, 'fits': 1.0, 'than': 1.0, 'just': 1.0, 'cute': 1.0, 'mat': 2.0, 'so': 1.0, 'a': 2.0, 'idea': 1.0, 'k': 1.0, 'preschool': 1.0, 'much': 1.0}
Word element => {'ft': 1.0, '3': 1.0, 'sized': 1.0, 'wide': 1.0, 'pictures': 1.0, 'tell': 1.0, 'smaller': 1.0, 'indeed': 1.0, 'obvious': 1.0, 'wasn': 1.0, 'wrong': 1.0, '95': 1.0, 'x': 2.0, 'square': 1.0, '21': 1.0, 'description': 1.0, 'current': 1.0, 'from': 1.0, 'p': 1.0, 'about': 1.0, 'darn': 1.0, 'if': 1.0, 'still': 1.0, 'than': 1.0, 'way': 1.0, 'items': 1.0, 'get': 1.0, 'off': 1.0, 'mat': 2.0, 'big': 1.0, '44': 1.0, 'definitely': 1.0, 're': 1.0, 'really': 1.0, 'blanket': 3.0, 'any': 1.0, 'in': 1.0, 'unattended': 1.0, 'measures': 2.0, 'other': 1.0, 'an': 1.0, 'pillow': 4.0, 'but': 2.0, 'bag': 2.0, 'short': 1.0, 'cute': 3.0, 'the': 11.0, 'they': 1.0, 'sleeping': 2.0, 'neck': 1.0, 'like': 3.0, 'rather': 1.0, 't': 1.0, 'rest': 1.0, 'separate': 1.0, 'seen': 1.0, 'bucks': 1.0, 'you': 3.0, 'am': 1.0, 've': 1.0, 'would': 1.0, 'we': 1.0, 's': 12.0, 'a': 9.0, 'bottom': 1.0, 'there': 3.0, 'comforter': 1.0, 'set': 1.0, 'velvet': 1.0, 'sure': 1.0, 'very': 2.0, 'and': 12.0, 'similar': 2.0, 'additionally': 1.0, 'hard': 1.0, 'open': 1.0, 'designer': 1.0, '12': 1.0, 'shaped': 1.0, 'thick': 1.0, 'product': 1.0, 'toddler': 2.0, 'has': 2.0, 'at': 1.0, 'is': 5.0, 'with': 4.0, 'convenient': 1.0, 'sets': 1.0, 'it': 11.0, 'this': 2.0, 'hesitate': 1.0, 'designed': 3.0, 'nice': 1.0, 'little': 1.0, 'two': 1.0, 'feet': 1.0, 'well': 3.0, 'i': 2.0, 'roll': 1.0, 'carrying': 1.0, 'to': 5.0, 'that': 3.0, 'or': 1.0, 'suitable': 1.0, 'strap': 1.0, 'for': 3.0, 'baby': 1.0, 'appears': 1.0, 'could': 1.0, 'travel': 1.0, 'which': 1.0, 'side': 1.0, 'caveat': 1.0, 'made': 1.0, 'durable': 1.0, 'enough': 1.0, '145': 2.0, '40': 1.0, 'padding': 1.0, 'be': 1.0, 'comfortable': 1.0, 'velcro': 1.0, 'kid': 1.0, 'tabs': 1.0, 'near': 1.0, 'fluffy': 1.0, 'on': 2.0, 'making': 1.0, 'back': 2.0, 'whole': 1.0, 'texture': 1.0, 'thing': 2.0, 'nowhere': 1.0, 'less': 1.0, 'up': 2.0, 'so': 1.0, 'can': 2.0, 'included': 1.0, 'giraffe': 1.0, 'just': 1.0, 'even': 1.0, 'emptor': 1.0, 'makes': 1.0, 'not': 1.0, 'how': 1.0, 'safe': 1.0, 'pass': 1.0, 'newborns': 1.0, 'also': 2.0, 'vaguely': 1.0, 'value': 1.0, 'some': 1.0, 'never': 1.0, 'as': 2.0, 'leave': 1.0}
Word element => {'recommended': 1.0, 'summer': 1.0, 'disappointment': 1.0, 'minutes': 1.0, 'for': 1.0, 'signal': 1.0, 'power': 1.0, 'camera': 1.0, 'connect': 1.0, 'need': 1.0, 'out': 1.0, 'of': 2.0, '34': 2.0, 'big': 1.0, 'range': 1.0, 'best': 1.0, 'disconnect': 1.0, 'would': 1.0, 'not': 2.0, 'baby': 2.0, 'few': 2.0, 'be': 1.0, 'product': 1.0, 'bought': 1.0, 'thinking': 1.0, 'terrible': 1.0, 'i': 2.0, 'back': 1.0, 'work': 1.0, 'but': 1.0, 'does': 1.0, 'even': 1.0, 'a': 2.0, 'to': 2.0, 'meters': 1.0, 'this': 1.0, 'it': 2.0, 'with': 1.0, 'and': 1.0, 'monitor': 2.0, 'away': 1.0, 'the': 4.0, 'warning': 1.0}
Word element => {'star': 1.0, 'lost': 1.0, 'not': 1.0, 'real': 1.0, 'cam2': 1.0, 'customer': 1.0, 'enters': 1.0, 'move': 1.0, 'on': 2.0, 'but': 2.0, 'mode': 1.0, 'sound': 1.0, 'accidentally': 1.0, 'otherwise': 1.0, 'i': 3.0, 'here': 1.0, 'around': 1.0, 'is': 5.0, 'up': 1.0, 'carefully': 1.0, 'picture': 1.0, 'got': 1.0, 'even': 1.0, 'camera': 1.0, 'screen': 3.0, 'dead': 2.0, 'come': 1.0, 're': 1.0, 'enough': 1.0, 'good': 2.0, 'resetting': 1.0, 'very': 1.0, 'single': 1.0, 'worked': 2.0, 'to': 5.0, 'great': 1.0, 'moving': 1.0, 'wouldn': 1.0, 'ok': 1.0, 'it': 8.0, 'as': 2.0, 'annoying': 1.0, 'with': 2.0, 'want': 1.0, 'end': 1.0, 'its': 1.0, 'touch': 2.0, 'though': 1.0, 'call': 1.0, 'you': 5.0, 'when': 1.0, 'and': 6.0, 'edges': 1.0, 'have': 2.0, 'hold': 1.0, 'by': 1.0, 'few': 1.0, 'after': 2.0, 'a': 3.0, 't': 1.0, 'could': 1.0, 'sync': 1.0, 'months': 1.0, 'an': 1.0, 'channels': 1.0, 'out': 1.0, 'synching': 1.0, 'the': 8.0, 'of': 2.0, 'back': 1.0, 'or': 1.0, 'pulling': 1.0, 'off': 1.0, 'cameras': 1.0, 'batteries': 1.0, 'into': 1.0, 'cam1': 2.0, 'original': 1.0, 'was': 1.0, 'about': 1.0, 'wondered': 1.0, 'bunch': 1.0, 'sure': 1.0, 'clear': 1.0, 'if': 1.0, 'service': 1.0, 'still': 1.0, 'can': 2.0, 'so': 2.0, 'channel': 1.0, 'baby': 1.0, 'others': 1.0, 'working': 1.0, 'are': 1.0, 'range': 1.0, 'live': 1.0, 'oddness': 1.0, 'odd': 1.0, 'panning': 1.0, 'ui': 1.0}
Word element => {'of': 1.0, 'out': 1.0, 'stains': 1.0, 'is': 1.0, 'it': 1.0, 'fits': 1.0, 'white': 1.0, 'nice': 1.0, 'and': 2.0, 'bib': 1.0, 'pretty': 1.0, 'come': 1.0, 'girl': 1.0, 'olds': 1.0, 'washable': 1.0, 'year': 1.0, 'for': 1.0, 'birthdayhope': 1.0, 'one': 1.0, 'a': 1.0}
Word element => {'stock': 1.0, 'out': 1.0, 'they': 1.0, 'able': 1.0, 'be': 2.0, 'want': 1.0, 'longer': 1.0, '3': 1.0, 'put': 1.0, 'already': 1.0, 'really': 1.0, 'not': 1.0, 'box': 1.0, 'that': 1.0, 'new': 1.0, 'get': 1.0, 'return': 1.0, 'can': 2.0, 'manufacturer': 1.0, 'according': 1.0, 'have': 2.0, 'bolts': 1.0, 'bolt': 1.0, 'almost': 1.0, 'parts': 2.0, 'pieces': 1.0, 'in': 2.0, 'damaged': 1.0, 'it': 3.0, 'this': 1.0, 'the': 6.0, 'assembled': 2.0, 'and': 6.0, 'her': 1.0, 'took': 1.0, 'i': 2.0, 'all': 1.0, 'to': 7.0, 'was': 2.0, 'purchased': 2.0, 'since': 1.0, 'option': 1.0, 'who': 1.0, 'haven': 1.0, 'few': 3.0, 'lives': 1.0, 's': 1.0, 't': 1.0, 'discovered': 1.0, 'we': 3.0, 'a': 4.0, 'crib': 4.0, 'assemble': 1.0, 'for': 3.0, 'months': 1.0, 'one': 2.0, 'missing': 1.0, 'together': 1.0, 'daughter': 1.0, 'hours': 1.0, 'side': 1.0, 'is': 3.0, 'of': 2.0, 'no': 1.0, 'cam': 2.0, 'january': 1.0, 'drawer': 3.0, 'an': 2.0, 'away': 1.0, 'weeks': 1.0, 'insert': 1.0, 'screw': 1.0, 'maybe': 1.0, 'later': 1.0, 'underneath': 1.0, 'may': 1.0, 'required': 1.0, 'still': 1.0, 'how': 1.0, 'received': 1.0}
Word element => {'nice': 1.0, 'front': 1.0, 'few': 1.0, 'scratches': 1.0, 'there': 1.0, 'of': 2.0, 'up': 1.0, 'otherise': 1.0, 'and': 2.0, 'i': 2.0, 'it': 2.0, 'nicks': 1.0, 'this': 1.0, 'come': 1.0, 'with': 1.0, 'love': 1.0, 'one': 1.0, 'the': 3.0, 'a': 1.0, 't': 1.0, 'some': 1.0, 'sturdy': 1.0, 'really': 1.0, 'is': 2.0, 'tabs': 1.0, 'look': 1.0, 'doesn': 1.0, 'was': 2.0, 'to': 2.0, 'tacky': 1.0, 'crib': 1.0, 'very': 1.0, 'little': 1.0, 'together': 1.0, 'pieces': 1.0, 'in': 1.0, 'but': 1.0, 'can': 1.0, 'barely': 1.0, 'tell': 1.0, 'thing': 1.0, 'on': 1.0, 'put': 1.0, 'think': 1.0, 'easy': 1.0, 'kind': 1.0, 'that': 2.0, 'cover': 1.0, 'gold': 1.0, 'screws': 1.0, 'are': 1.0}
Word element => {}
Word element => {'good': 1.0, 'box': 1.0, 'in': 2.0, 'be': 1.0, 'for': 1.0, 'crib': 1.0, 'waiting': 1.0, 'together': 1.0, 'not': 1.0, 'to': 1.0, 'was': 1.0, 'baby': 1.0, 'put': 1.0, 'will': 1.0, 'parts': 1.0, 'opened': 1.0, 'closer': 1.0, 'the': 1.0, 'and': 2.0, 'get': 1.0, 'delivery': 1.0, 'of': 1.0, 'condition': 1.0, 'on': 1.0, 'time': 1.0, 'hopefully': 1.0, 'have': 1.0, 'all': 1.0}
Word element => {'loves': 1.0, 'her': 1.0, 'highly': 1.0, 'another': 1.0, 'purchased': 1.0, 'much': 1.0, 'mother': 1.0, 'my': 1.0, 're': 1.0, 'microbeads': 1.0, 'i': 2.0, '50': 1.0, 'so': 1.0, 'maternity': 1.0, 'pillow': 2.0, 'on': 1.0, '80': 1.0, 'and': 3.0, 'one': 1.0, 'mine': 1.0, 'liked': 1.0, 'for': 3.0, 'm': 1.0, 'recommend': 1.0, 'she': 1.0, 'moms': 1.0, 'in': 1.0, 'perfect': 1.0, 'a': 2.0, 'just': 1.0, 'not': 1.0, 'is': 1.0, 'side': 1.0, 'treat': 1.0, 'sleeper': 1.0, 'it': 1.0, 'this': 2.0, 'nursing': 1.0, 'have': 1.0, 'you': 2.0, 'never': 1.0, 'if': 1.0, 'slept': 1.0}
Word element => {'years': 1.0, 'her': 1.0, 'grow': 1.0, 'in': 1.0, 'as': 2.0, 'and': 2.0, 'cozy': 1.0, 'will': 1.0, 'but': 1.0, 'cute': 1.0, 'appreciate': 1.0, 'super': 1.0, 's': 1.0, 'blanket': 3.0, 'stay': 1.0, 'nursery': 1.0, 'with': 1.0, 'only': 1.0, 'it': 1.0, 'this': 3.0, 'many': 1.0, 'is': 3.0, 'not': 1.0, 'i': 1.0, 'got': 1.0, 'well': 1.0, 'a': 2.0, 'for': 2.0, 'style': 1.0, 'daughter': 1.0, 'my': 1.0, 'that': 2.0}
Word element => {'every': 1.0, 'gets': 1.0, 'come': 1.0, 'to': 1.0, 'have': 1.0, 'big': 1.0, 'soo': 1.0, 'in': 3.0, 'body': 1.0, 'print': 1.0, 'the': 7.0, 'my': 1.0, 'more': 1.0, 'is': 2.0, 'summer': 1.0, 'on': 1.0, 'wash': 1.0, 'over': 2.0, 'daughters': 1.0, 'other': 1.0, 'i': 2.0, 'blanket': 2.0, 'and': 5.0, 'also': 2.0, 'will': 3.0, '2': 1.0, 'but': 1.0, 'for': 2.0, 'love': 2.0, 'here': 1.0, 'be': 1.0, 'winter': 1.0, 'ordering': 1.0, 'am': 1.0, 'thick': 1.0, 'distorted': 1.0, 'she': 1.0, 'it': 3.0, 'wit': 1.0, 'with': 2.0, 'size': 1.0, 'right': 2.0, 'not': 2.0, 'heat': 1.0, 'just': 1.0, 'perfect': 1.0, 'this': 3.0, 'soft': 1.0, 'keep': 1.0, 'years': 1.0, 'temp': 2.0, 'out': 1.0, 'heating': 1.0, 'keeps': 2.0, 'softer': 1.0, 'baby': 1.0, 'warm': 1.0, 'fabric': 1.0, 'her': 2.0, 'does': 1.0}
Word element => {'girls': 1.0, 'my': 1.0, 'mix': 1.0, 'ease': 1.0, 'and': 1.0, 'are': 1.0, 'used': 1.0, 'pretty': 2.0, 've': 1.0, 'we': 1.0, 'quality': 1.0, 'sign': 1.0, 'is': 1.0, 'now': 1.0, 'with': 3.0, 'these': 1.0, 'great': 1.0, 'the': 2.0, 'cute': 1.0, 'super': 2.0, 'colors': 1.0, 'about': 1.0, 'months': 1.0, 'functional': 2.0, 'little': 1.0, 'for': 1.0, '6': 1.0, 'of': 1.0, 'wardrobe': 1.0, 'regularly': 1.0, 'wear': 1.0}
Word element => {'work': 1.0, 'will': 1.0, 'abroad': 1.0, 'with': 1.0, 'it': 1.0, 'sure': 1.0, 'outlets': 1.0, 'and': 2.0, 'unless': 1.0, 'in': 1.0, 'install': 1.0, 'usa': 1.0, 'them': 2.0, 'the': 1.0, 'are': 1.0, 'have': 1.0, 'tried': 1.0, 'i': 2.0, 'your': 1.0, 'they': 1.0, 'has': 1.0, 'recommend': 1.0, 'been': 1.0, 'impossible': 1.0, 'would': 1.0, 'not': 1.0, 'to': 1.0, 'buying': 1.0, 'you': 1.0}
Word element => {'be': 1.0, 'was': 1.0, 'back': 2.0, 'shape': 1.0, 'outlet': 1.0, 'sent': 1.0, 'you': 1.0, 'up': 1.0, 'of': 1.0, 'money': 1.0, 'don': 1.0, 'covers': 1.0, 'show': 1.0, 'may': 1.0, 'never': 1.0, 'pictures': 1.0, 'meant': 1.0, 'type': 1.0, 'is': 1.0, 'it': 1.0, 'this': 1.0, 'with': 1.0, 't': 1.0, 'the': 3.0, 'given': 1.0, 'for': 1.0, 'careful': 1.0, 'so': 1.0, 'my': 1.0, 'end': 1.0, 'wrong': 1.0, 'although': 1.0, 'i': 2.0}
Word element => {'kiddos': 1.0, 'future': 1.0, 'forward': 1.0, 'than': 1.0, 'start': 1.0, 'just': 1.0, 'carseat': 1.0, 'contact': 1.0, 'eye': 1.0, 'safe': 1.0, 'purchase': 1.0, 'my': 1.0, 'when': 1.0, 'through': 2.0, 'system': 2.0, 'up': 1.0, 'so': 1.0, 'many': 1.0, 'folds': 1.0, 'to': 5.0, 'as': 1.0, 'now': 2.0, 'maintain': 1.0, 'drink': 1.0, 'with': 3.0, 'this': 4.0, 'wish': 1.0, 'have': 3.0, 'combined': 1.0, 'for': 5.0, 'using': 4.0, 'like': 1.0, 'hold': 1.0, 'accessory': 1.0, 'little': 1.0, 'very': 1.0, 'been': 1.0, 'easily': 1.0, 'that': 2.0, 'on': 1.0, 'make': 1.0, 'miles': 1.0, 'months': 1.0, 'i': 6.0, 've': 1.0, 'drop': 1.0, 'we': 4.0, 't': 2.0, 'a': 4.0, 'man': 1.0, 'our': 4.0, 'stroller': 5.0, 'look': 1.0, 'at': 1.0, 'is': 2.0, 'say': 1.0, 'more': 2.0, 'the': 8.0, 'and': 6.0, 'happy': 2.0, 'height': 1.0, 'canopy': 1.0, 'travels': 1.0, 'love': 2.0, 'he': 1.0, 'b': 1.0, 'seems': 1.0, 'travel': 2.0, 'will': 1.0, 'it': 3.0, 'also': 1.0, 'us': 1.0, 'all': 2.0, 'other': 1.0, 'users': 1.0, '4': 1.0, 'cup': 1.0, 'basket': 1.0, 'lower': 1.0, 'doesn': 1.0, 'put': 1.0, 'much': 1.0, 'find': 2.0, 'need': 2.0, 'didn': 1.0, 'money': 1.0, 'but': 1.0, 'while': 1.0, 'are': 2.0, 'splurge': 1.0, 'still': 1.0, 'place': 1.0, 'keys': 1.0, 'alone': 1.0, 'downside': 1.0, 'adequately': 1.0, 'right': 2.0, 'll': 1.0, 'room': 1.0, 'once': 1.0, 'm': 1.0, 'in': 1.0}
Word element => {'filled': 1.0, 'number': 1.0, 'ridiculous': 1.0, 'took': 1.0, 'a': 3.0, 'of': 1.0, 'rather': 1.0, 'would': 1.0, '19': 1.0, 'this': 1.0, 'grocery': 1.0, 'walk': 2.0, 'everyday': 1.0, 'which': 1.0, 'i': 3.0, 'spacious': 1.0, 'bags': 2.0, 'use': 1.0, 'stroller': 1.0, 'but': 1.0, 'back': 1.0, 'on': 2.0, 'unnatural': 1.0, 'over': 1.0, 'is': 2.0, 'side': 1.0, 'my': 3.0, 'yet': 1.0, 'feel': 1.0, 'comfortable': 2.0, 'to': 3.0, 'hook': 1.0, 'reasonable': 1.0, 'size': 1.0, 'and': 5.0, 'it': 5.0, 'month': 1.0, 'she': 1.0, 'remains': 1.0, 'an': 1.0, 'solid': 1.0, 'at': 1.0, 'having': 1.0, 'in': 1.0, 'bumpy': 1.0, 'collapses': 1.0, 'daughter': 1.0, 'attached': 1.0, 'heavy': 1.0, 'hanging': 1.0, 'the': 2.0, 'old': 1.0, 'tested': 1.0, 'point': 1.0, 'tip': 1.0}
Word element => {'choice': 1.0, 'our': 1.0, 'do': 1.0, 'i': 1.0, 'not': 1.0, 'very': 1.0, 'a': 1.0, 'otherwise': 1.0, 'light': 1.0, 'sturdy': 1.0, 'positioned': 1.0, 's': 1.0, 'piece': 1.0, 'the': 1.0, 'is': 1.0, 'conveniently': 1.0, 'but': 2.0, 'love': 1.0, 'it': 1.0, 'basket': 1.0}
Word element => {'on': 1.0, 'compliments': 1.0, 'have': 1.0, 'i': 1.0, 'pictures': 1.0, 'than': 1.0, 'and': 3.0, 'very': 1.0, 'open': 1.0, 'hand': 1.0, 'to': 1.0, 'easy': 1.0, 'close': 1.0, 'blue': 1.0, 'purchase': 1.0, 'attractive': 1.0, 'it': 1.0, 'this': 1.0, 'with': 2.0, 'many': 1.0, 'is': 1.0, 'maneuver': 1.0, 'so': 1.0, 'one': 1.0, 'the': 2.0, 'more': 1.0, 'happy': 1.0, 'color': 1.0, 'in': 1.0, 'received': 1.0, 'much': 1.0, 'person': 1.0}
Word element => {'born': 1.0, 'times': 1.0, 'baby': 1.0, 'few': 1.0, 'love': 1.0, 'it': 2.0, 'using': 1.0, 'installation': 1.0, 'light': 1.0, 'b': 1.0, 'weight': 1.0, 'and': 1.0, 'my': 2.0, 'was': 1.0, 'after': 1.0, 'carseat': 1.0, 'fit': 1.0, 'britax': 1.0, 'just': 1.0, 'easy': 1.0, 'safe': 1.0}
Word element => {'open': 1.0, 'easy': 1.0, 'use': 1.0, 'lot': 1.0, 'it': 2.0, 'i': 1.0, 'next': 1.0, 'is': 3.0, 'close': 1.0, 'a': 2.0, 'my': 1.0, 'the': 1.0, 'good': 1.0, 'to': 1.0, 'product': 1.0, 'like': 1.0, 'and': 4.0, 'lightweight': 1.0, 'baby': 2.0, 'again': 1.0, 'comfortable': 1.0, 'for': 2.0}
Word element => {'conditions': 1.0, 'muddy': 1.0, 'assemble': 1.0, 'fabric': 1.0, 'use': 1.0, 'easy': 1.0, 'and': 1.0, 'outside': 1.0, 'very': 1.0, 'folded': 1.0, 'is': 1.0, 'it': 1.0, 'of': 1.0, 'good': 1.0, 'touches': 1.0, 'to': 1.0, 'was': 1.0, 'not': 1.0, 'ground': 1.0, 'when': 1.0, 'which': 1.0, 'in': 1.0, 'lightweight': 1.0, 'the': 1.0, 'snow': 1.0}
Word element => {'anyhow': 1.0, 'll': 1.0, 'running': 1.0, 'compact': 1.0, 'stroller': 1.0, 'strides': 1.0, 'full': 1.0, 'take': 1.0, 'awkward': 1.0, 'but': 1.0, 'can': 2.0, 'behind': 1.0, 'or': 1.0, 'feet': 1.0, 'walk': 1.0, 'moderately': 1.0, '6': 1.0, 'use': 1.0, 'actually': 1.0, 'for': 2.0, 'one': 1.0, 'heavy': 1.0, 'bulky': 1.0, 'the': 4.0, 'and': 5.0, 'too': 1.0, 'be': 4.0, 'as': 1.0, 'to': 4.0, 'was': 1.0, 'daily': 1.0, 'with': 3.0, 'it': 4.0, 'clear': 1.0, 'bob': 2.0, 'that': 1.0, 'maneuver': 1.0, 'b': 2.0, 'my': 1.0, 'then': 1.0, 'became': 1.0, 'wife': 1.0, 'collapses': 1.0, 'single': 1.0, 'plan': 1.0, 'is': 2.0, 'over': 1.0, 'up': 1.0, 't': 1.0, 'going': 1.0, 'we': 1.0, 'a': 2.0, 'get': 1.0, 'folds': 1.0, 'easy': 2.0, 'remember': 1.0, 'went': 1.0, 'move': 1.0, 'hand': 1.0, 'if': 2.0, 'agile': 2.0, 'nothing': 1.0, 'when': 2.0, 'you': 4.0, 'folded': 1.0, 'easily': 1.0, 'complicated': 1.0, 'in': 1.0, 'super': 1.0, 'light': 1.0, 'on': 1.0, 'carried': 1.0, 'are': 1.0}
Word element => {'other': 1.0, 'thoughts': 1.0, 'designed': 1.0, 'or': 1.0, 'neutral': 1.0, 'gender': 1.0, 'plum': 1.0, 'are': 1.0, 'picture': 1.0, 'what': 1.0, 'happy': 1.0, 'quite': 1.0, 'isn': 1.0, 'peacock': 1.0, 've': 1.0, 'comment': 2.0, 'heard': 1.0, 'not': 1.0, 'dirt': 1.0, 'girls': 1.0, 'review': 1.0, 'cleaning': 1.0, 't': 1.0, 'a': 1.0, 'could': 2.0, 'shows': 1.0, 'thanks': 1.0, 'you': 3.0, 'easily': 1.0, 'hoping': 1.0, 'any': 1.0, 'to': 2.0, 'was': 1.0, 'everyone': 1.0, 'of': 2.0, 'up': 1.0, 'some': 1.0, 'appreciate': 1.0, 'really': 1.0, 'more': 1.0, 'is': 3.0, 'it': 5.0, 'suggests': 1.0, 'with': 2.0, 'sure': 1.0, 'for': 2.0, 'where': 1.0, 'functionality': 1.0, 'm': 1.0, 'and': 3.0, 'too': 1.0, 'write': 1.0, 'post': 1.0, 'light': 1.0, 'question': 1.0, 'my': 1.0, 're': 1.0, 'but': 2.0, 'i': 5.0, 'seems': 1.0, 'also': 1.0, 'that': 2.0, 'granite': 1.0, 'curious': 1.0, 'about': 1.0, 'help': 1.0, 'colors': 2.0, 'the': 5.0, 'so': 1.0, 'your': 1.0, 'on': 3.0, 'constantly': 1.0}
Word element => {'matching': 1.0, 'had': 1.0, 'wish': 1.0, 'black': 1.0, 'with': 1.0, 'car': 2.0, 'safe': 1.0, 'also': 1.0, 'it': 3.0, 'excited': 1.0, 'is': 2.0, 'depending': 1.0, 'was': 1.0, 'seat': 2.0, 'to': 5.0, 'its': 1.0, 'expected': 1.0, 'they': 2.0, 'i': 1.0, 'loved': 1.0, 'use': 2.0, 'go': 1.0, 'we': 1.0, 'a': 2.0, 'b': 1.0, 'my': 1.0, 'computer': 1.0, 'which': 1.0, 'in': 3.0, 'the': 2.0, 'tad': 1.0, 'true': 1.0, 'settings': 1.0, 'super': 1.0, 'easy': 1.0, 'on': 1.0, 'your': 1.0, 'put': 2.0, 'together': 1.0, 'and': 2.0, 'person': 1.0, 'darker': 1.0, 'ease': 1.0, 'everything': 1.0, 'ride': 1.0, 'so': 1.0, 'although': 1.0, 'claim': 1.0, 'about': 1.0, 'of': 1.0, 'im': 1.0, 'bought': 1.0, 'color': 3.0, 'one': 1.0, 'when': 1.0, 'gets': 1.0, 'little': 1.0, 'be': 1.0, 'here': 1.0, 'october': 1.0}
Word element => {'bill': 1.0, 'the': 1.0, 'fit': 1.0, 'we': 2.0, 'very': 1.0, 'perfectly': 1.0, 'and': 3.0, 'looking': 1.0, 'is': 1.0, 'turns': 1.0, 'on': 1.0, 'built': 1.0, 'for': 2.0, 'could': 1.0, 'a': 2.0, 'well': 1.0, 'light': 1.0, 'take': 1.0, 'shopping': 1.0, 'were': 1.0, 'stroller': 1.0, 'us': 1.0, 'dime': 1.0, 'lighter': 1.0, 'with': 1.0, 'duty': 1.0, 'this': 1.0}
Word element => {'recommend': 1.0, 'mom': 1.0, 'would': 1.0, 'do': 1.0, 'it': 1.0, 'can': 1.0, 'love': 1.0, 'handed': 1.0, 'this': 1.0, 'lightweight': 1.0, 'so': 1.0, 'any': 1.0, 'and': 1.0, 'all': 1.0, 'stroller': 1.0, 'easy': 1.0, 'to': 2.0, 'open': 1.0, 'practically': 1.0, 'close': 1.0, 'one': 1.0, 'i': 1.0}
Word element => {'got': 1.0, 'm': 1.0, 'there': 1.0, 'comfortable': 1.0, 'seems': 1.0, 'in': 1.0, 'kid': 1.0, 'much': 1.0, 'my': 1.0, 'the': 1.0, 'it': 2.0, 'love': 1.0, 'glad': 1.0, 'color': 1.0, 'was': 1.0, 'darker': 1.0, 'i': 4.0, 'than': 1.0, 'thought': 1.0, 'but': 1.0, 'hubby': 1.0, 'very': 1.0, 'and': 2.0}
Word element => {'happy': 1.0, 'shock': 1.0, 'other': 1.0, 'stroller': 1.0, 'am': 2.0, 'product': 1.0, 'canopy': 1.0, 'velcro': 1.0, 'dark': 1.0, 'overall': 1.0, 'very': 2.0, 'monitor': 2.0, 'as': 1.0, 'to': 3.0, 'cerulean': 1.0, 'a': 4.0, 't': 1.0, 'manual': 1.0, 'it': 5.0, 'darker': 1.0, 'blue': 2.0, 'much': 1.0, 'purchase': 1.0, 'executed': 1.0, 'only': 1.0, 'more': 1.0, 'place': 2.0, 'b': 1.0, 'color': 2.0, 'my': 2.0, 'entire': 1.0, 'would': 1.0, 'lining': 1.0, 'upon': 2.0, 'design': 1.0, 'know': 1.0, 'computer': 1.0, 'intuitive': 1.0, 'but': 1.0, 'with': 4.0, 'inspection': 1.0, 'peacock': 1.0, 'well': 1.0, 'i': 7.0, 'was': 2.0, 'effortlessly': 1.0, 'minutes': 1.0, 'nonetheless': 1.0, 'on': 1.0, 'glides': 1.0, 'expecting': 1.0, 'every': 1.0, 'the': 15.0, 'of': 1.0, 'clearly': 1.0, 'teal': 1.0, 'connect': 1.0, 'describe': 1.0, 'sturdy': 1.0, 'appears': 1.0, 'which': 1.0, 'based': 1.0, 'out': 1.0, 'photo': 1.0, 'and': 6.0, 'different': 1.0, 'for': 1.0, 'fabric': 1.0, 'box': 1.0, 'needed': 2.0, 'attach': 2.0, 'quality': 1.0, 'wheels': 1.0, 'locked': 1.0, 'seat': 2.0, 'in': 2.0, 'simple': 1.0, 'need': 1.0, 'no': 1.0, 'use': 1.0, 'tools': 1.0, 'bright': 1.0, 'by': 1.0, 'pleased': 1.0, 'less': 1.0, 'up': 1.0, 'than': 2.0, 'assembly': 1.0, 'position': 1.0, 'materials': 1.0, 'strips': 1.0, 'britax': 1.0, 'are': 1.0, 'car': 2.0, 'click': 1.0, 'adapters': 1.0, 'safe': 1.0, 'not': 1.0, 'took': 1.0, 'five': 1.0, 'included': 1.0, 'so': 2.0, 'vibrant': 1.0, 'didn': 1.0, 'is': 4.0, 'refer': 1.0}
Word element => {'its': 1.0, 'features': 1.0, 'sturdier': 1.0, 'buying': 1.0, 'money': 1.0, 'saves': 1.0, 'consider': 1.0, 'without': 1.0, 'top': 1.0, 'all': 1.0, 'other': 1.0, 'middle': 1.0, 'trunk': 1.0, 'space': 2.0, 'great4': 1.0, 'day': 1.0, 'chairs': 1.0, 'folded': 1.0, 'folding': 1.0, 'park': 1.0, 'were': 2.0, 'there': 2.0, 'including': 1.0, 'bag': 1.0, 'great': 1.0, 'option': 1.0, 'throw': 1.0, 'useful': 1.0, 'considering': 1.0, 'more': 1.0, 'agile': 1.0, 'underneath': 1.0, 'basket': 2.0, 'also': 2.0, 'lift': 1.0, 'being': 1.0, 'than': 1.0, 'way': 2.0, 'huge': 2.0, 'least': 1.0, 'have': 1.0, 'frame2': 1.0, 'can': 2.0, 'so': 1.0, 'clips': 1.0, 'no': 2.0, 'into': 1.0, 'correctly': 1.0, 'much': 2.0, 'put': 4.0, 'sure': 1.0, 's': 1.0, 'a': 13.0, 't': 1.0, 'second': 1.0, 'and': 9.0, 'happy': 1.0, 'held': 1.0, 'actual': 1.0, 'to': 6.0, 'in': 5.0, 'seat': 7.0, 'as': 1.0, 'if': 1.0, 'still': 3.0, 'every': 1.0, 'strolling': 1.0, 'use': 2.0, 'travel': 2.0, 'part': 1.0, 'big': 1.0, 'type': 1.0, 'things': 2.0, 'you': 5.0, 'able': 3.0, 'recovering': 1.0, 'mom': 1.0, 'alone': 1.0, 'isn': 1.0, 'we': 4.0, 'difference': 2.0, 'fine': 1.0, 'many': 1.0, 'baby': 2.0, 'completely': 1.0, 'comes': 1.0, 'get': 1.0, 'snapped': 1.0, 'months': 2.0, 'me': 1.0, 'reasons': 1.0, 'entire': 1.0, 'are': 1.0, 'first': 1.0, 'from': 1.0, 'snaps': 1.0, 'third': 1.0, 'out': 2.0, 'release': 1.0, 'lifting': 1.0, 'child': 1.0, 'extra': 1.0, 'birth': 1.0, 'stroller': 8.0, 'how': 1.0, 'here': 1.0, 'i': 5.0, 'putting': 2.0, 'enough': 1.0, 'b': 1.0, 'off': 4.0, 'snap': 3.0, 'system': 2.0, 'make': 1.0, 'lighter': 1.0, 'go': 3.0, 'figured': 1.0, 'connected': 2.0, 'on': 4.0, 'pound': 2.0, 'fold': 1.0, 'love': 2.0, 'for': 6.0, 'early': 2.0, 'when': 3.0, 'what': 1.0, 'makes': 1.0, 'did': 1.0, 'instead': 1.0, 'even': 1.0, 'took': 3.0, 'used': 1.0, 'now': 2.0, 'frame': 2.0, 'carseat': 3.0, 'with': 3.0, 'quick': 2.0, 'velcro': 1.0, 'this': 6.0, 'few': 1.0, 'just': 2.0, 'hardest': 1.0, 'was': 3.0, 'taking': 2.0, 'at': 1.0, 'is': 8.0, 'handle': 1.0, 'directly': 1.0, 'back': 2.0, 'that': 2.0, 'problems': 1.0, 'because': 6.0, 'it': 5.0, 'keyring': 1.0, 'made': 2.0, 'connection': 1.0, 'car3': 1.0, 'but': 2.0, 'over': 1.0, 'work': 1.0, 'better': 1.0, 'process': 1.0, 'two': 1.0, 'little': 2.0, '10mins': 1.0, '1': 1.0, 'since': 2.0, 'or': 3.0, 'takes': 1.0, 'up': 2.0, 'less': 2.0, 'awesome': 1.0, 'about': 1.0, 'same': 1.0, 'uses': 1.0, 'time': 1.0, 'the': 40.0, 'of': 8.0, 'longer': 2.0}
Word element => {'weight': 1.0, '55lb': 1.0, 'kiddos': 1.0, 'smaller': 1.0, '5': 1.0, '6': 1.0, 'now': 1.0, 'ride': 1.0, 'those': 1.0, 'hundreds': 1.0, 'several': 1.0, 'saved': 1.0, 'comfortably': 1.0, 'might': 1.0, 'ago': 1.0, 'six': 1.0, 'they': 1.0, 'sooner': 1.0, 'bought': 1.0, 'would': 1.0, 'myself': 1.0, 'wish': 2.0, 'zoo': 1.0, 'while': 1.0, 'hours': 1.0, 'over': 3.0, 'could': 1.0, 'even': 2.0, 'get': 1.0, 'is': 4.0, 'comes': 1.0, 'design': 1.0, 'never': 1.0, 'light': 1.0, 'just': 2.0, 'we': 3.0, 'absolutly': 1.0, 'situation': 1.0, 'but': 1.0, 'most': 1.0, 'you': 2.0, 'when': 3.0, 'color': 3.0, 'easy': 1.0, 'bit': 1.0, 'can': 2.0, 'so': 2.0, 'owned': 1.0, 'my': 5.0, 'brand': 1.0, 'old': 3.0, 'do': 2.0, 'only': 1.0, 'and': 7.0, 'under': 1.0, 'green': 1.0, 'probably': 1.0, 'works': 1.0, 'slightly': 1.0, 'am': 1.0, 'strollers': 2.0, 'how': 3.0, 'stroller': 6.0, 'two': 4.0, 'style': 1.0, 'this': 5.0, 'perfect': 1.0, 'kids': 1.0, 'it': 6.0, 'stopped': 1.0, 'others': 1.0, 'she': 3.0, 'about': 2.0, 'busy': 1.0, 'to': 4.0, 'have': 7.0, 'of': 4.0, 'the': 8.0, 'counting': 1.0, 'for': 3.0, 'hoarder': 1.0, 'every': 3.0, 'somewhere': 1.0, 'occasion': 1.0, 'first': 2.0, '8': 1.0, 'up': 1.0, 'favorite': 1.0, 'walked': 1.0, 'mind': 1.0, 'fold': 1.0, 'love': 5.0, 'far': 1.0, 'by': 1.0, 'bright': 1.0, 'limit': 1.0, 'years': 1.0, 'let': 1.0, 'grandpa': 1.0, 'year': 3.0, 'which': 1.0, 'wanted': 1.0, 'has': 1.0, 'into': 1.0, 'worked': 1.0, 'pick': 1.0, 'wonderfully': 1.0, 'on': 2.0, 'rough': 1.0, 'playground': 1.0, 'used': 1.0, 'areas': 1.0, 'was': 1.0, 'in': 2.0, 'a': 4.0, 'manuver': 1.0, 'imagine': 1.0, 'mall': 1.0, 'i': 15.0, 'well': 1.0, 'slept': 2.0, 'all': 3.0, 'dream': 1.0, 'ever': 1.0, 'day': 1.0, 'very': 1.0, 'had': 3.0, 'curled': 1.0}
Word element => {'also': 1.0, 'light': 1.0, 'which': 1.0, 'design': 1.0, 'the': 1.0, 'foldable': 1.0, 'stroller': 1.0, 'easy': 2.0, 'lite': 1.0, 'smart': 1.0, 'choice': 1.0, 'sure': 1.0, 'and': 1.0, 'like': 2.0, 'iti': 1.0, 'i': 1.0, 'am': 1.0, 'its': 2.0, 'will': 1.0, 'weight': 1.0, 'you': 1.0}
Word element => {'makes': 1.0, 'there': 1.0, 'never': 1.0, 'but': 1.0, 'can': 1.0, 'bag': 1.0, 'space': 1.0, 'still': 1.0, 'storage': 1.0, 'also': 1.0, 'list': 1.0, 'they': 1.0, 'section': 1.0, 'c': 1.0, 'carry': 1.0, 'because': 1.0, 'than': 1.0, 'having': 1.0, 'coz': 1.0, 'it': 2.0, 'this': 2.0, 'so': 1.0, 'below': 1.0, 'after': 1.0, 'lightweight': 1.0, 'my': 2.0, 'baby': 2.0, 'different': 1.0, 'before': 1.0, 'especially': 1.0, 'make': 1.0, 'diaper': 1.0, 'stroller': 4.0, 'those': 1.0, 'not': 1.0, 'was': 2.0, 'much': 1.0, 'only': 1.0, 'its': 1.0, 'seat': 1.0, 'to': 1.0, 'bulky': 1.0, 'without': 1.0, 'the': 4.0, 'born': 1.0, 'small': 1.0, 'have': 1.0, 'cannot': 1.0, 'u': 2.0, 'which': 3.0, 'snack': 1.0, 'life': 1.0, 'light': 1.0, 'amazing': 1.0, 'live': 1.0, 'weight': 1.0, 'two': 1.0, 'i': 4.0, 'organizer': 1.0, 'a': 2.0, 'could': 1.0, 's': 1.0, 'and': 3.0, 'comfortable': 1.0, 'problem': 1.0, 'is': 2.0, 'bought': 2.0, 'tray': 1.0, 'buy': 1.0, 'extra': 1.0, 'easier': 1.0, 'wud': 1.0, 'love': 1.0, 'fit': 1.0, 'costlier': 1.0, 'for': 1.0, 'actually': 1.0}
Word element => {'think': 1.0, 'reclinesamazing': 1.0, 'my': 2.0, 'pocketlove': 1.0, 'back': 1.0, 'stroller': 2.0, 'how': 1.0, 'i': 2.0, 'it': 1.0, 'this': 2.0, 'comfortable': 2.0, 'love': 3.0, 'for': 1.0, 'tray': 1.0, 'easy': 1.0, 'the': 6.0, 'adjustable': 1.0, 'too': 1.0, 'and': 1.0, 'heavylove': 1.0, 'lovecons': 1.0, 'of': 1.0, 'bottom': 1.0, 'iteasy': 1.0, 'much': 1.0, 'opennot': 1.0, 'colorsuper': 1.0, 'canopylove': 1.0, 'in': 1.0, 'bigstearing': 1.0, 'smooth': 1.0, 'kidlove': 1.0, 'second': 1.0, 'easiness': 1.0, 'to': 2.0, 'as': 2.0, 'seat': 1.0, 'not': 2.0, 'sizeeasy': 1.0, 'is': 3.0, 'strapslove': 1.0, 'fold': 1.0, 'storage': 1.0, 'changing': 1.0, 'that': 1.0, 'or': 1.0, 'you': 1.0, 'would': 1.0}
Word element => {'steers': 1.0, 'easily': 1.0, 'this': 1.0, 'car': 1.0, 'a': 1.0, 'it': 1.0, 'great': 1.0, 'is': 1.0, 'with': 1.0, 'smoothly': 1.0, 'to': 1.0, 'stroller': 1.0, 'use': 1.0, 'unfolds': 1.0, 'britax': 1.0, 'very': 1.0, 'and': 2.0, 'folds': 1.0, 'seats': 1.0}
Word element => {'see': 1.0, 'road': 1.0, 'cross': 1.0, 'if': 1.0, 'sell': 1.0, 'strollers': 1.0, 'stroller': 1.0, 'cars': 1.0, 'other': 1.0, 'to': 1.0, 'had': 1.0, 'in': 2.0, 'it': 2.0, 'you': 2.0, 'way': 1.0, 'green': 1.0, 'i': 2.0, 'can': 1.0, 'everybody': 1.0, 'compared': 1.0, 't': 1.0, 'the': 3.0, 'and': 2.0, 'best': 1.0, 'as': 1.0, 'really': 1.0, 'every': 1.0, 'all': 1.0, 'likes': 1.0, 'stores': 1.0, 'rocks': 1.0, 'color': 2.0, 'ever': 1.0, 'they': 1.0, 'don': 1.0}
Word element => {'be': 1.0, 'would': 1.0, 'photo': 1.0, 'one': 1.0, 'that': 1.0, 'for': 1.0, 'if': 1.0, 'home': 1.0, 'option': 1.0, 'at': 1.0, 'look': 1.0, 'working': 1.0, 'order': 1.0, 'service': 1.0, 'amazon': 1.0, 'on': 1.0, 'very': 1.0, 'year': 1.0, 'is': 1.0, 'faces': 1.0, 'push': 1.0, 's': 4.0, 'fabric': 2.0, 'prime': 1.0, 'have': 2.0, 'not': 2.0, 'was': 1.0, 'had': 1.0, 'outside': 1.0, 'to': 4.0, 'wanted': 1.0, 'you': 2.0, 'folded': 2.0, 'when': 1.0, 'i': 3.0, 'old': 1.0, 'it': 3.0, 'this': 1.0, 'with': 1.0, 'choose': 1.0, 'and': 4.0, 'ball': 1.0, 'comment': 1.0, 'like': 1.0, 'but': 1.0, 'sit': 1.0, 'return': 2.0, 'stroller': 3.0, 'practical': 1.0, '9': 1.0, 'kid': 1.0, 'soccer': 1.0, 'reclines': 1.0, 'kiwi': 1.0, 'the': 3.0, 'in': 1.0, 'also': 2.0, 'well': 1.0, 'trunk': 1.0, 'of': 2.0, 'car': 1.0, 'feels': 1.0, 'nice': 3.0, 'easy': 1.0, 'such': 1.0, 'add': 1.0}
Word element => {'greenish': 1.0, 'darker': 1.0, 'colored': 1.0, 'teal': 1.0, 'picture': 1.0, 'show': 1.0, 'they': 1.0, 'why': 1.0, 'there': 1.0, 'but': 1.0, 'real': 1.0, 'of': 1.0, 'bothers': 1.0, 'no': 1.0, 'about': 1.0, 'thing': 1.0, 'only': 1.0, 'problem': 1.0, 'be': 1.0, 'color': 2.0, 'hang': 1.0, 'count': 1.0, 'misrepresentation': 1.0, 'the': 10.0, 'great': 1.0, 'don': 2.0, 'toy': 1.0, 'almost': 1.0, 'or': 1.0, 'small': 1.0, 'so': 2.0, 'is': 6.0, 'couldnt': 1.0, 'diaper': 1.0, 'stroller': 1.0, 'on': 2.0, 'put': 1.0, 'will': 1.0, 'cons': 1.0, 'compartment': 1.0, 'in': 2.0, 'general': 1.0, 'underneath': 1.0, 'bag': 1.0, 'handle': 1.0, 'young': 1.0, 'we': 2.0, 't': 2.0, 's': 2.0, 'a': 2.0, 'see': 1.0, 'i': 1.0, 'two': 1.0, 'storage': 1.0, 'under': 1.0, 'me': 1.0, 'not': 1.0, 'reason': 1.0, 'never': 1.0, 'and': 1.0, 'too': 1.0, 'upright': 1.0, 'useless': 1.0, 'it': 6.0, 'she': 1.0, 'enough': 1.0, 'seat': 1.0, 'to': 1.0, 'mind': 2.0, 'll': 1.0, 'if': 1.0, 'that': 2.0}
Word element => {'we': 1.0, 'will': 1.0, 'although': 1.0, 'just': 1.0, 'which': 1.0, 'or': 1.0, 'sleep': 1.0, 'off': 2.0, 'love': 1.0, 'one': 1.0, 'walking': 1.0, 'when': 1.0, 'too': 1.0, 'press': 1.0, 'light': 1.0, 'is': 2.0, 'the': 2.0, 'color': 1.0, 'my': 2.0, 'like': 1.0, 'son': 1.0, 'big': 1.0, 'very': 2.0, 'and': 3.0, 'quick': 1.0, 'he': 1.0, 'with': 1.0, 'it': 5.0, 'jog': 1.0, 'i': 1.0, 'lot': 1.0, 'easy': 1.0, 'to': 1.0, 'wheel': 1.0, 'mini': 1.0, 'a': 2.0, 'maneuver': 1.0, 'around': 1.0, 'fit': 1.0, 'in': 2.0, 'shop': 1.0, 'trunk': 1.0, 'of': 1.0, 'cooper': 1.0}
Word element => {'happy': 1.0, 'makes': 1.0, 'one': 1.0, 'me': 1.0, 'and': 1.0, 'to': 2.0, 'box': 1.0, 'when': 1.0, 'step': 1.0, 'i': 1.0, 'smells': 1.0, 'the': 2.0, 'although': 1.0, 'overall': 1.0, 'opened': 1.0, 'good': 1.0, 's': 2.0, 'it': 3.0, 'a': 2.0, 'days': 1.0, 'little': 1.0, 'few': 1.0, 'bit': 1.0, 'but': 1.0, 'easy': 1.0, 'after': 1.0, 'smell': 1.0, 'is': 1.0, 'fold': 1.0, 'up': 1.0, 'set': 1.0, 'gone': 1.0, 'very': 2.0}
Word element => {'boys': 1.0, 'easy': 1.0, 'confortable': 1.0, 'this': 1.0, 'item': 1.0, 'transport': 1.0, 'to': 1.0, 'product': 1.0, 'is': 1.0, 'and': 4.0, 'excellent': 1.0, 'places': 1.0, 'usable': 1.0, 'every': 1.0, 'because': 1.0, 'by': 1.0, 'girls': 1.0}
Word element => {'cram': 1.0, 'hard': 1.0, 'of': 1.0, 'storage': 1.0, 'up': 1.0, 'sometimes': 1.0, 'holding': 1.0, 'complaint': 1.0, 'stuff': 1.0, 'your': 1.0, 'put': 1.0, 'holder': 1.0, 'or': 1.0, 'cup': 1.0, 'not': 1.0, 'buggy': 1.0, 'getting': 1.0, 'bar': 1.0, 'suggest': 1.0, 'handy': 1.0, 'that': 1.0, 'changing': 1.0, 'there': 3.0, 'public': 1.0, 'diono': 1.0, 'in': 2.0, 're': 1.0, 'so': 3.0, 'buddy': 1.0, 'well': 1.0, 'unfolding': 1.0, 'britax': 1.0, 'kind': 1.0, 'area': 1.0, 'easy': 1.0, 'last': 1.0, 'with': 1.0, 'this': 2.0, 'it': 5.0, 'folding': 1.0, 'is': 6.0, 'single': 1.0, 'change': 1.0, 'curved': 1.0, 'place': 1.0, 'the': 7.0, 'stroller': 3.0, 'diaper': 1.0, 'phone': 1.0, 'wonderful': 1.0, 'we': 1.0, 'a': 1.0, 's': 4.0, 'canopy': 1.0, 'only': 1.0, 'maneuvers': 1.0, 'works': 1.0, 'used': 1.0, 'car': 1.0, 'great': 1.0, 'nice': 1.0, 'and': 2.0, 'large': 1.0, 've': 2.0, 'almost': 1.0, 'really': 1.0, 'every': 1.0, 'day': 1.0, 'where': 1.0, 'for': 1.0, 'etc': 1.0, 'organizer': 1.0, 'i': 4.0, '4': 1.0, 'fuss': 1.0, 'months': 1.0, 'table': 1.0, 'like': 1.0, 'far': 1.0, 'reclining': 1.0, 'no': 2.0, 'several': 1.0, 'when': 1.0, 'times': 1.0, 'as': 1.0, 'seat': 2.0, 'to': 3.0, 'underneath': 1.0, 'my': 2.0, 'daughter': 1.0}
Word element => {'him': 2.0, 'see': 1.0, 'a': 4.0, 'was': 1.0, 'umbrella': 1.0, 'maneuver': 1.0, 'my': 1.0, 'small': 1.0, 'after': 1.0, 'that': 2.0, 'around': 1.0, 'sturdy': 1.0, 'through': 2.0, 'then': 1.0, 'godson': 1.0, 'this': 1.0, 'flap': 1.0, 'he': 2.0, 'it': 1.0, 'stroller': 2.0, 'choose': 1.0, 'having': 1.0, 'adjusts': 1.0, 'hold': 1.0, 'clunk': 1.0, 'i': 3.0, 'one': 1.0, 'for': 1.0, 'love': 1.0, 'type': 1.0, 'in': 1.0, 'said': 1.0, 'and': 5.0, 'me': 2.0, 'still': 1.0, '55': 1.0, 'big': 1.0, 'to': 1.0, 'outside': 1.0, 'seller': 1.0, 'lbs': 1.0, 'easily': 1.0, 'when': 1.0, 'saw': 1.0, 'the': 2.0, 'climbed': 1.0, 'immediately': 1.0, 'canopy': 1.0, 'but': 1.0, 'can': 1.0}
Word element => {'or': 1.0, 'grocery': 1.0, 'paper': 1.0, 'room': 1.0, 'with': 1.0, 'fills': 1.0, 'definitely': 1.0, 'hatchback': 1.0, 'mazda': 1.0, 'have': 1.0, 'car': 1.0, 'smaller': 1.0, '3': 1.0, 'your': 1.0, 'of': 2.0, 'up': 1.0, 'take': 1.0, 'aware': 1.0, 'be': 1.0, 'down': 1.0, 'space': 1.0, 'maybe': 1.0, 'sized': 1.0, 'trunk': 3.0, 'light': 1.0, 'most': 2.0, '2': 2.0, 'the': 3.0, 'any': 1.0, 'to': 2.0, 'were': 1.0, 'awesome': 1.0, 'it': 7.0, 'wouldn': 1.0, 'in': 2.0, 'use': 1.0, 'knew': 1.0, 'already': 1.0, 'perfect': 1.0, 'found': 1.0, 'folded': 1.0, 'when': 2.0, 'everyday': 1.0, 'single': 1.0, 'd': 1.0, 'out': 1.0, 'shopping': 1.0, 'and': 3.0, 'double': 2.0, 'had': 1.0, 'excellent': 1.0, 'next': 1.0, 'that': 1.0, 'basket': 1.0, 'agile': 1.0, 'size': 1.0, 'area': 1.0, 'get': 1.0, 'easy': 1.0, 'b': 1.0, 'maneuver': 1.0, 't': 1.0, 'we': 5.0, 's': 1.0, 'a': 3.0, 'big': 1.0, 'expecting': 1.0, 'was': 1.0, 'sunshades': 1.0, 'bags': 2.0, 'while': 1.0, 'i': 1.0, 'though': 1.0, 'call': 1.0, 'reasonable': 1.0, 'diaper': 1.0, 'stroller': 1.0, 'will': 2.0, 'for': 3.0, 'fit': 1.0}
Word element => {'comparable': 1.0, 'city': 1.0, 'easy': 1.0, 'quite': 1.0, 'of': 1.0, 'closing': 1.0, 'and': 1.0, 'be': 1.0, 'yet': 1.0, 'my': 1.0, 'out': 1.0, 'used': 1.0, 'the': 3.0, 't': 3.0, 'mini': 1.0, 'since': 1.0, 'as': 4.0, 'exceeded': 1.0, 'i': 2.0, 'it': 3.0, 'opening': 1.0, 'wonderful': 1.0, 'can': 1.0, 'twins': 1.0, 'expectations': 1.0, 'aren': 2.0, 'born': 1.0, 'but': 2.0, 'haven': 1.0, 'far': 1.0, 'tell': 1.0, 'going': 1.0, 'its': 1.0, 'to': 1.0}
Word element => {'double': 1.0, 'single': 1.0, 'well': 1.0, 'him': 1.0, 'next': 1.0, 'year': 1.0, 'two': 1.0, 'and': 2.0, 'to': 1.0, 'had': 1.0, 'we': 1.0, 'in': 1.0, 'bassinetonly': 1.0, 'genus': 1.0, 'on': 2.0, 'thought': 1.0, 'that': 2.0, 'bassinet': 2.0, 'of': 1.0, 'britax': 2.0, 'works': 1.0, 'what': 1.0, 'does': 1.0, 'one': 2.0, 'old': 1.0, 'i': 2.0, 'not': 2.0, 'the': 6.0, 'my': 2.0, 'bought': 1.0, 'it': 1.0, 'can': 1.0, 'so': 1.0, 'stroller': 2.0, 'put': 1.0, 'fit': 1.0, 'new': 1.0, 'born': 1.0}
Word element => {'fold': 1.0, 'it': 1.0, 'love': 1.0, 'my': 1.0, 'for': 1.0, 'son': 1.0, 'feels': 1.0, 'light': 2.0, 'a': 1.0, 'weight': 1.0, 'that': 1.0, 'and': 3.0, 'easy': 2.0, 'to': 2.0, 'used': 1.0, 'manage': 1.0, 'single': 1.0, 'i': 2.0, 'one': 1.0, 'have': 1.0}
Word element => {'through': 1.0, 'does': 1.0, 'everyday': 1.0, 'like': 1.0, 'size': 1.0, 'prefer': 1.0, 'this': 4.0, 'full': 1.0, 's': 3.0, 'going': 1.0, '5': 1.0, 'price': 1.0, 'give': 1.0, 'not': 1.0, 'didn': 1.0, 'got': 1.0, 'worth': 1.0, 'frame': 1.0, 'was': 1.0, 'in': 2.0, 'm': 2.0, 'seat': 1.0, 'to': 4.0, 'all': 1.0, 'problems': 1.0, 'easily': 1.0, 'that': 2.0, 'because': 2.0, 'find': 1.0, 'system': 1.0, 'color': 1.0, 'happy': 1.0, 'too': 1.0, 'one': 1.0, 'months': 1.0, 'very': 3.0, 'doorways': 1.0, 'single': 1.0, 'stars': 1.0, 'a': 1.0, 'maneuverability': 1.0, 'for': 1.0, 'purchase': 1.0, 'only': 1.0, 'do': 1.0, 'totally': 1.0, 'month': 1.0, 'with': 4.0, 'teal': 1.0, 'i': 9.0, 'fan': 1.0, 'feature': 1.0, 'you': 1.0, 'metal': 1.0, 'old': 1.0, 'the': 8.0, 'of': 1.0, 'pully': 1.0, 'difficult': 1.0, 'son': 1.0, 'stroller': 3.0, 'how': 1.0, 'far': 1.0, 'love': 3.0, 'fold': 1.0, 'he': 1.0, 'easy': 4.0, 'compact': 1.0, 'my': 3.0, 'graco': 1.0, 'don': 2.0, 'pleased': 1.0, 'up': 2.0, 'overall': 1.0, 'slide': 1.0, 'hard': 1.0, 'be': 1.0, 'and': 3.0, 'so': 1.0, 'can': 1.0, 'but': 1.0, 'sitting': 2.0, 'handed': 1.0, 'is': 3.0, 'at': 1.0, 'no': 1.0, 'sunshades': 1.0, '13': 1.0, 'down': 1.0, 'fit': 1.0, 't': 4.0, 'fairly': 1.0, 'them': 3.0, 'baby': 1.0, 'back': 1.0, 'these': 1.0, 'seats': 1.0, 'when': 1.0, 'sit': 2.0, 'huge': 1.0, 'way': 1.0, '90': 1.0, 'folded': 1.0, 'friends': 1.0, 'degrees': 1.0, 'tell': 1.0, 'enjoy': 1.0, 'if': 1.0, 'seems': 2.0, 'recline': 2.0, 'it': 8.0, '9': 1.0}
Word element => {'looks': 1.0, 'great': 1.0, 'light': 1.0, 'normal': 1.0, 'though': 1.0, 'pocket': 1.0, 'mini': 1.0, 'city': 1.0, 'between': 1.0, 'did': 2.0, 'savings': 1.0, 'like': 2.0, 'functions': 1.0, 'heavy': 1.0, 'put': 1.0, 'immensely': 1.0, 'been': 1.0, 'that': 1.0, 'has': 2.0, 'one': 1.0, 'happy': 1.0, 'am': 1.0, 'when': 2.0, 'you': 3.0, 'i': 1.0, '4': 2.0, 'so': 1.0, 'shade': 1.0, 'it': 7.0, 'this': 6.0, 'kids': 2.0, 'with': 1.0, 'fence': 1.0, 'not': 1.0, 'gate': 1.0, '34': 2.0, 'functional': 1.0, 'both': 1.0, 'people': 1.0, 'helpful': 1.0, 'first': 1.0, 'are': 2.0, 'double': 1.0, '1': 1.0, 'and': 13.0, 'were': 1.0, 'pretty': 1.0, 'to': 7.0, 'the': 6.0, 'of': 1.0, 'there': 1.0, 'fold': 1.0, 'views': 1.0, 'about': 2.0, '3': 1.0, 'on': 2.0, 'strong': 1.0, 'we': 7.0, 'a': 6.0, 'sides': 1.0, 's': 1.0, 'purchased': 1.0, 'excellent': 1.0, 'had': 1.0, 'use': 4.0, 'our': 3.0, 'stroller': 4.0, 'whether': 1.0, 'through': 2.0, 'over': 2.0, 'however': 1.0, 'easy': 3.0, 'get': 2.0, 'debated': 1.0, 'needed': 1.0, 'debating': 1.0, '2': 1.0, 'some': 2.0, 'point': 1.0, 'now': 2.0, 'almost': 1.0, 'year': 2.0, 'sturdy': 1.0, 'hood': 1.0, 'day': 2.0, 'doors': 1.0, 'travel': 1.0, 'will': 2.0, 'size': 1.0, 'tired': 1.0, 'feature': 1.0, 'or': 1.0, 'need': 1.0, 'fit': 1.0, 'rest': 1.0, 'out': 1.0, 'still': 2.0, 'every': 1.0, 'if': 3.0, 'have': 2.0, 'must': 1.0, 'airport': 1.0, 're': 2.0, 'especially': 1.0, 'old': 1.0, 'run': 1.0, 'at': 1.0, 'is': 5.0, 'comes': 1.0, 'way': 1.0, 'good': 1.0, 'which': 1.0, 'all': 1.0, 'ever': 1.0, 'an': 1.0, 'sun': 2.0, 'important': 1.0, 'also': 2.0, 'us': 1.0, 'down': 1.0, 've': 1.0, 'for': 1.0}
Word element => {'design': 1.0, 'doors': 1.0, 'most': 1.0, 'can': 1.0, 'love': 1.0, 'fit': 1.0, 'through': 1.0, 'and': 1.0, 'it': 2.0, 'only': 1.0, 'you': 1.0, 'the': 1.0, 'light': 1.0, 'how': 1.0, 'open': 1.0, 'thing': 1.0, 'weight': 1.0, 'would': 1.0, 'not': 1.0, 'i': 1.0, 'change': 1.0, 'is': 1.0, 'a': 1.0, 'good': 1.0}
Word element => {'its': 1.0, 'cannot': 1.0, 'slots': 1.0, 'adaptor': 1.0, 'appears': 1.0, 'stroller4': 1.0, 'specifically': 1.0, 'd': 1.0, 'both': 1.0, 'want': 1.0, 'adapter': 1.0, 'don': 1.0, 'doesn': 2.0, 'wide': 1.0, 'aren': 1.0, 'around': 1.0, 'tray': 5.0, 'unless': 1.0, 'couldn': 1.0, 'installed': 3.0, 'be': 1.0, 'has': 1.0, 'return': 1.0, 'were': 1.0, 'bathrooms': 1.0, 'public': 1.0, 'understandable': 1.0, 'into': 1.0, 'generally': 1.0, 'left': 1.0, 'ie': 1.0, 'will': 1.0, 'could': 1.0, 'doors': 1.0, 'standard': 1.0, 'stands': 1.0, 'blue': 1.0, 'dealbreakers': 1.0, 'more': 1.0, 'color': 1.0, '5': 1.0, 'kids': 2.0, 'hands': 1.0, 'two': 2.0, 'black': 1.0, 'perfectly': 1.0, 'maybe': 2.0, 'narrower': 1.0, 's': 1.0, 'but': 4.0, 'videos': 1.0, 'like': 1.0, 'hand': 1.0, 'one': 1.0, 'won': 1.0, 'bsafe': 2.0, 'necessarily': 1.0, 'if': 4.0, 'still': 1.0, 'turn': 1.0, 'strollers': 1.0, 't': 6.0, 'fairly': 1.0, 'slight': 1.0, 'mall': 1.0, 'maneuverability': 1.0, 'a': 5.0, 'we': 11.0, 'us': 2.0, 'come': 1.0, 'shades': 1.0, 'love': 2.0, 'for': 9.0, 'would': 1.0, 'stroller1': 1.0, 'easily': 1.0, 'that': 2.0, 'or': 1.0, 'faith': 1.0, 'on': 6.0, 'among': 1.0, 'put': 1.0, '3': 2.0, 'without': 1.0, 'trays': 1.0, 'myself': 1.0, 'maneuverable': 1.0, '4': 1.0, 'stores': 1.0, 'with': 7.0, 'my': 2.0, 'seems': 1.0, 'b': 4.0, 'child': 2.0, 'storesnow': 1.0, 'toddler': 1.0, 'work': 4.0, 'most': 3.0, 'so': 5.0, 'can': 2.0, 'our': 1.0, 'stroller': 12.0, 'locally': 1.0, 'at': 1.0, 'is': 2.0, 'the': 47.0, 'of': 9.0, 'i': 3.0, 'single': 6.0, 'gotchas': 1.0, 'newborn': 1.0, 'lifting': 1.0, 'out': 2.0, 'seat': 1.0, 'in': 6.0, 'have': 6.0, 'safe': 1.0, 'born': 1.0, 'and': 10.0, 'online': 1.0, 'probably': 2.0, 'any': 1.0, 'to': 5.0, 'as': 3.0, 'carried': 1.0, 'purchased': 3.0, 'had': 1.0, 'loved': 1.0, 'strollers6': 1.0, 'this': 2.0, 'maneuver': 1.0, 'right': 2.0, 'upper': 1.0, '30': 1.0, 'are': 3.0, 'britax': 6.0, 'first': 1.0, 'it': 12.0, 'double': 6.0, 'not': 3.0, 'part': 1.0, 'carseat': 5.0, 'sea': 1.0, 'here': 1.0, 'you': 4.0, 'push': 1.0, 'things': 1.0, 'about': 1.0, 'whole': 1.0, '2': 3.0, 'thing': 1.0, 'since': 1.0, '1': 2.0, 'easy': 2.0, 'unfortunately': 1.0, 'folds': 1.0, 'get': 3.0, 'none': 1.0, 'some': 1.0, 'collapse': 1.0, 'through': 1.0, 'show': 1.0, 'handles': 1.0, 'away': 1.0, 'annoyance': 1.0, 'seats': 3.0, 'just': 1.0, 'using': 1.0, 'light': 1.0, 'limit': 1.0, 'press': 1.0, 'button': 1.0, 'agile': 3.0, 'important': 1.0, 'made': 1.0, 'which': 1.0, 'side': 4.0, 'pull': 1.0, 'down': 2.0, 'was': 2.0, 'lbs': 1.0, 'purchase': 1.0, 'straining': 1.0, 'trunk': 1.0, 'version': 1.0, 'factor': 1.0, 'all': 1.0, 'fits': 1.0, 'other': 3.0, 'ease': 1.0, 'anyway': 1.0, 'use': 2.0, 'way': 1.0, 'than': 3.0, 'huge': 1.0, 'canopy': 2.0, 'green': 1.0, 'same': 1.0}
Word element => {'to': 1.0, 'love': 1.0, 'it': 2.0, 'easily': 1.0, 'manouver': 1.0, 'and': 1.0, 'folds': 1.0, 'this': 1.0, 'easy': 1.0, 'stroller': 1.0, 'is': 1.0, 'we': 1.0, 'everything': 1.0, 'i': 1.0, 'was': 1.0, 'yet': 1.0, 'light': 1.0, 'looking': 1.0, 'for': 1.0, 's': 1.0, 'sterdy': 1.0}
Word element => {'get': 1.0, 'wants': 1.0, 'who': 1.0, 'organizer': 1.0, 'reccomend': 1.0, 'no': 1.0, 'have': 1.0, 'over': 1.0, 'had': 1.0, 'go': 2.0, 'ready': 1.0, 'were': 1.0, 'on': 1.0, 'put': 1.0, 'minutes': 1.0, 'about': 2.0, 'purchase': 1.0, 'only': 1.0, 'simple': 1.0, 'was': 1.0, 'assembly': 1.0, 'rear': 1.0, 'front': 1.0, 'mama': 1.0, 'from': 1.0, 'my': 1.0, 'least': 1.0, 'to': 8.0, 'fits': 3.0, 'all': 2.0, 'doors': 1.0, 'any': 3.0, 'carrier': 1.0, 'britax': 2.0, 'are': 1.0, 'extremely': 1.0, 'safe': 1.0, 'once': 1.0, 'the': 16.0, 'of': 5.0, 'is': 2.0, 'handle': 1.0, 'at': 1.0, 'since': 1.0, 'day': 1.0, 'brother': 1.0, 'love': 1.0, '10': 1.0, 'for': 4.0, 'infant': 1.0, 'total': 1.0, 'month': 2.0, 'it': 10.0, 'anything': 1.0, 'without': 4.0, 'remove': 1.0, 'saver': 2.0, 'been': 2.0, 'into': 1.0, 'basket': 1.0, 'life': 2.0, 'large': 1.0, 'trunk': 2.0, 'our': 4.0, 'stroller': 7.0, 'a': 4.0, 'then': 1.0, 'we': 6.0, 't': 1.0, 's': 1.0, 'out': 1.0, 'absolutely': 1.0, 'i': 4.0, 'using': 1.0, 'which': 3.0, 'use': 1.0, 'purchased': 2.0, 'old': 1.0, 'adapter': 1.0, 'his': 1.0, 'seat': 1.0, 'in': 3.0, 've': 2.0, 'newborn': 1.0, 'highly': 1.0, 'this': 2.0, 'with': 2.0, 'perfectly': 1.0, 'and': 8.0, '18': 1.0, 'canopies': 1.0, 'easy': 1.0, 'folds': 1.0, 'through': 1.0, 'both': 1.0, 'house': 2.0, 'that': 1.0, 'problems': 1.0, 'easily': 1.0, 'hassle': 1.0, 'vw': 1.0, 'am': 1.0, 'complaints': 1.0, 'able': 1.0, 'push': 1.0, 'you': 1.0, 'passat': 1.0, 'took': 1.0, 'even': 1.0, 'single': 1.0, 'initial': 1.0, 'very': 2.0, 'couldn': 1.0, 'having': 1.0, 'some': 1.0, 'previous': 1.0, 'wheels': 2.0, 'also': 1.0, 'us': 1.0, 'received': 1.0, 'lift': 1.0, 'help': 1.0, 'great': 2.0, 'beneath': 1.0, 'nice': 1.0, 'b': 1.0, 'access': 1.0, 'areas': 1.0, 'seats': 1.0, 'included': 1.0, 'lightweight': 1.0, 'so': 1.0, 'can': 1.0, 'has': 1.0, 'them': 1.0}
Word element => {'car': 1.0, 'britax': 1.0, 'compatible': 1.0, 'seperately': 1.0, 'sold': 1.0, 'are': 1.0, 'because': 1.0, 'is': 2.0, 'stars': 1.0, 'two': 1.0, 'year': 1.0, 'accessories': 1.0, 'five': 1.0, 'and': 3.0, 'our': 2.0, 'works': 1.0, 'for': 1.0, 'love': 1.0, 'seats': 1.0, 'month': 1.0, 'stroller': 1.0, 'four': 1.0, 'didn': 1.0, 'give': 1.0, 'with': 1.0, 'only': 2.0, 'it': 2.0, 'this': 1.0, 'a': 1.0, 'half': 1.0, 'i': 2.0, 'old': 2.0, 'great': 1.0, 't': 1.0, 'the': 2.0, 'reason': 1.0}
Word element => {'100': 1.0, 'or': 1.0, 'purchase': 1.0, 'about': 1.0, 'thinking': 1.0, 'still': 1.0, 'should': 2.0, 'feel': 1.0, 'but': 1.0, 'be': 1.0, 'taller': 1.0, 'there': 1.0, 'perfectly': 1.0, 'down': 1.0, 'who': 1.0, 'agile': 1.0, 'very': 1.0, 'little': 2.0, 'as': 2.0, 'to': 4.0, 'roomy': 1.0, 'have': 2.0, 'breaker': 1.0, 'basket': 3.0, 'bit': 1.0, 'however': 2.0, 'between': 1.0, 'double': 1.0, 'small': 1.0, 'a': 8.0, 'going': 1.0, 'joovy': 2.0, 'kids': 1.0, 'for': 2.0, 'fit': 1.0, 'tray': 1.0, 'when': 4.0, 'back': 2.0, 'stroller': 1.0, 'this': 2.0, 'scooter': 1.0, 'offer': 1.0, 'tend': 1.0, 'was': 2.0, 'deal': 1.0, 'unfortunately': 1.0, 'x2': 1.0, 'not': 3.0, 'at': 1.0, 'is': 3.0, 'more': 2.0, 'b': 1.0, 'me': 1.0, 'my': 4.0, 'height': 1.0, 'canopy': 1.0, 'did': 2.0, 'return': 1.0, 'seemed': 1.0, '1': 1.0, 'which': 1.0, 'and': 3.0, 'trip': 1.0, '3': 3.0, 'over': 2.0, 'pack': 1.0, 'happy': 1.0, 'one': 1.0, 'ones': 1.0, 'on': 2.0, 'long': 1.0, 'so': 1.0, 'larger': 1.0, 'am': 1.0, 'deciding': 1.0, 'laid': 1.0, 'm': 1.0, 'seat': 2.0, 'in': 4.0, 'handy': 1.0, 'old': 3.0, 'all': 1.0, 'an': 2.0, 'year': 3.0, 'his': 2.0, 'placed': 1.0, 'youngest': 1.0, 'test': 1.0, 'out': 2.0, 'i': 8.0, 'well': 1.0, 'feet': 1.0, 'bottom': 1.0, 'he': 1.0, 'it': 6.0, 'him': 1.0, 'huge': 1.0, 'way': 1.0, 'whether': 1.0, 'head': 2.0, 'room': 1.0, 'comes': 1.0, 'bulged': 1.0, 'are': 1.0, 'the': 8.0, 'of': 1.0, 'mesh': 1.0, 'piece': 1.0, 'located': 1.0, 'right': 1.0, 'loved': 1.0, 'above': 1.0, 'now': 1.0, 'almost': 2.0, 'upright': 1.0, 'position': 1.0, 'both': 1.0}
Word element => {'such': 1.0, 'owning': 1.0, 'month': 1.0, 'a': 2.0, 'within': 1.0, 'this': 1.0, 'it': 4.0, 'broke': 1.0, 'about': 2.0, 'but': 1.0, 'stroller': 1.0, 'rave': 1.0, 'love': 1.0, 'handle': 1.0, 'disappointment': 1.0, 'many': 1.0, 'that': 1.0, 'when': 1.0, 'i': 1.0, 'of': 1.0, 'completely': 1.0, 'so': 1.0, 'to': 2.0, 'comes': 1.0, 'what': 1.0, 'down': 1.0, 'things': 1.0, 'no': 1.0, 'and': 1.0, 'matter': 1.0, 'snapped': 1.0, 'off': 1.0}
Word element => {'price': 1.0, 'stoller': 1.0, 'for': 1.0, 'doors': 1.0, 'most': 1.0, 'thru': 1.0, 'to': 1.0, 'unfold': 1.0, 'adjustable': 1.0, 'fold': 1.0, 'and': 1.0, 'lightweight': 1.0, 'great': 1.0, 'love': 1.0, 'the': 2.0, 'handle': 1.0, 'especially': 1.0, 'easy': 1.0, 'fits': 1.0}
Word element => {'down': 1.0, 'up': 1.0, 'much': 1.0, 'tandum': 1.0, 'a': 1.0, 'debating': 1.0, 'on': 2.0, 'seat': 1.0, 'car': 1.0, 'month': 2.0, '23': 1.0, 'for': 1.0, 'but': 1.0, 'stroller': 2.0, 'easy': 1.0, 'fits': 1.0, 'nicely': 1.0, 'the': 1.0, '2': 1.0, 'is': 2.0, 'versus': 1.0, 'and': 5.0, 'like': 1.0, 'my': 1.0, 'doorways': 1.0, 'bought': 1.0, 'was': 1.0, 'to': 1.0, 'through': 1.0, 'old': 2.0, 'i': 3.0, 'folds': 1.0, 'so': 3.0, 'smooth': 1.0, 'with': 1.0, 'it': 2.0, 'this': 3.0, 'steer': 1.0, 'also': 1.0, 'easier': 1.0, 'that': 1.0}
Word element => {'for': 1.0, 'was': 1.0, 'looking': 1.0, 'what': 1.0, 'are': 1.0, 'covers': 1.0, 'strong': 1.0, 'i': 1.0, 'very': 1.0}
Word element => {'worn': 1.0, 'never': 1.0, 'late': 1.0, 'too': 1.0, 'back': 1.0, 'beautiful': 1.0, 'i': 3.0, 'dress': 1.0, 'it': 4.0, 'red': 2.0, 'a': 1.0, 'is': 2.0, 'on': 1.0, '34': 2.0, 'what': 1.0, 'even': 1.0, 'send': 1.0, 'as': 1.0, 'burgandy': 1.0, 'sold': 1.0, 'just': 1.0, 'not': 1.0, 'was': 1.0, 'which': 1.0, 'posted': 1.0, 'needed': 1.0, 'facebook': 1.0, 'should': 1.0}
Word element => {'again': 1.0, 'shop': 1.0, 'this': 1.0, 'from': 1.0, 'cute': 1.0, 'price': 1.0, 'all': 1.0, '4': 1.0, 'super': 1.0, 'do': 1.0, 'randomly': 1.0, 'buy': 1.0, 'i': 1.0, 'cheap': 1.0, 'know': 1.0, 'they': 1.0, 'the': 2.0, 'such': 1.0, 'were': 1.0, 'choose': 1.0, 'erasers': 1.0, 'is': 1.0, 'good': 1.0, 'love': 1.0, 'for': 1.0, 'but': 2.0, 'quality': 1.0, 'will': 1.0}
Word element => {'again': 1.0, 'purchase': 1.0, 't': 1.0, 'wouldn': 1.0, 'liked': 1.0, 'my': 1.0, 'bad': 1.0, 'because': 1.0, 'lasted': 1.0, 'few': 1.0, 'boys': 1.0, 'a': 1.0, 'days': 1.0, 'and': 1.0, 'really': 1.0, 'then': 1.0, 'went': 1.0, 'it': 2.0, 'for': 1.0, 'dead': 1.0, 'too': 1.0}
Word element => {'spills': 1.0, 'in': 1.0, 'powder': 1.0, 'them': 1.0, 'putting': 1.0, 'i': 1.0, 'like': 1.0, 'held': 1.0, 'formula': 1.0, 'have': 1.0, 'thing': 1.0, 'that': 1.0, 'without': 1.0, 'effort': 1.0, 'opening': 1.0, 'bottles': 1.0, 'good': 1.0, 'up': 1.0, 'of': 1.0, 'any': 1.0, 'don': 1.0, 'about': 1.0, 'is': 2.0, 't': 1.0, 'the': 2.0, 'so': 1.0, 'small': 1.0, 'only': 1.0, 'it': 1.0, 'smore': 1.0, 'an': 1.0}
Word element => {'like': 1.0, 'baby': 1.0, 'damage': 1.0, 'there': 1.0, 'this': 1.0, 'too': 1.0, 'no': 1.0, 'good': 1.0, 'was': 1.0, 'accidentally': 1.0, 'fell': 1.0, 'i': 1.0, 'ground': 1.0, 'is': 2.0, 'on': 1.0, 'the': 2.0, 'but': 1.0, 'today': 1.0}
Word element => {'be': 1.0, 'wedge': 1.0, 'light': 1.0, 'enough': 1.0, 'i': 1.0, 'thought': 1.0, 'pushed': 1.0, 'it': 1.0, 'would': 2.0, 'force': 1.0, 'stop': 1.0, 'the': 2.0, 'window': 1.0, 'from': 1.0, 'going': 1.0, 'with': 1.0, 'up': 2.0}
Word element => {'emergency': 1.0, 'case': 1.0, 'adult': 1.0, 'not': 1.0, 'did': 1.0, 'want': 1.0, 'is': 2.0, 'for': 1.0, 'these': 1.0, 'strong': 1.0, '3': 1.0, 'a': 1.0, 'we': 2.0, 'came': 1.0, 'installed': 1.0, 'this': 1.0, 'it': 1.0, 'item': 1.0, 'opening': 1.0, 'condo': 1.0, 'can': 1.0, 'easy': 1.0, 'yr': 1.0, 'purchased': 1.0, 'quickly': 1.0, 'of': 1.0, 'once': 1.0, 'our': 1.0, 'to': 3.0, 'as': 2.0, 'described': 1.0, 'by': 1.0, 'and': 2.0, 'old': 1.0, 'child': 1.0, 'have': 1.0, 'very': 1.0, 'access': 1.0, 'easily': 1.0, 'they': 1.0, 'install': 1.0, 'grand': 1.0, 'seemed': 1.0, 'stood': 1.0, 'in': 2.0, 'the': 1.0, 'place': 1.0, 'window': 1.0, 'be': 1.0, 'removed': 1.0, 'an': 1.0}
Word element => {'added': 1.0, 'for': 1.0, 'cost': 1.0, 'low': 1.0, 'too': 1.0, 'actually': 1.0, 'these': 1.0, 'they': 1.0, 'would': 1.0, 'work': 1.0, 'reserved': 1.0, 'security': 1.0, 'solution': 1.0, 'easy': 1.0, 'little': 1.0, 'off': 1.0, 'a': 1.0, 'i': 1.0, 'do': 1.0, 'and': 1.0, 'very': 1.0, 'is': 1.0, 'simple': 1.0, 'was': 1.0, 'to': 2.0, 'install': 1.0, 'remove': 1.0, 'like': 1.0, 'wedge': 1.0, 'it': 3.0, 'velcro': 1.0}
Word element => {'else': 1.0, 'for': 2.0, 'looking': 2.0, 're': 2.0, 'if': 2.0, 'angel': 1.0, 'dear': 1.0, 'go': 2.0, 'cuddly': 1.0, 'as': 1.0, 'used': 1.0, 'be': 1.0, 'i': 1.0, 'title': 1.0, 'details': 1.0, 'paid': 1.0, 'a': 6.0, 'have': 1.0, 'not': 2.0, 'to': 2.0, 'was': 1.0, 'the': 2.0, 'should': 1.0, 'and': 1.0, 'fooled': 1.0, 'definitely': 1.0, 'blanky': 3.0, 'blanket': 2.0, 'but': 1.0, 'with': 1.0, 'it': 1.0, 'you': 2.0, 'tiny': 1.0, 'attention': 1.0, 's': 1.0, 'silky': 1.0, 'where': 1.0, 'too': 2.0}
Word element => {'great': 1.0, '19': 1.0, 'weeks': 1.0, 'happen': 1.0, 'doesn': 1.0, 'but': 1.0, 'off': 1.0, 'pop': 1.0, 'ground': 1.0, 'occasion': 1.0, 'bed': 1.0, 'works': 1.0, 'do': 1.0, 'and': 3.0, 'shopped': 1.0, 'favorite': 1.0, 'sure': 1.0, 'this': 4.0, 'month': 1.0, 'slam': 1.0, 'it': 3.0, 'one': 1.0, 'two': 1.0, 'i': 1.0, 'night': 1.0, 'been': 1.0, 'through': 1.0, 'day': 1.0, 'still': 1.0, 'son': 2.0, 'target': 1.0, 'to': 1.0, 'all': 1.0, 'thing': 2.0, 'often': 1.0, 'my': 3.0, 'is': 3.0, 'use': 1.0, 'really': 1.0, 'every': 2.0, 'maybe': 1.0, 'brands': 1.0, 'need': 1.0, 'wal': 1.0, 've': 1.0, 'in': 3.0, 'at': 2.0, 'assembly': 1.0, 'mart': 1.0, '34': 2.0, 'rubber': 1.0, 'leak': 1.0, 'he': 1.0, 'gasket': 2.0, 'snuggly': 1.0, 'the': 5.0, 'place': 2.0, 'you': 2.0, 'when': 1.0, 'on': 2.0, 'make': 1.0, 'put': 1.0, 'will': 2.0, 'together': 1.0, 'if': 1.0, 'not': 1.0, 't': 1.0, 'might': 1.0, 's': 2.0, 'we': 1.0}
Word element => {'in': 1.0, 'leaving': 1.0, 'them': 2.0, 'way': 1.0, 'very': 1.0, 'up': 1.0, 'nice': 1.0, 'they': 2.0, 'holes': 1.0, 'these': 1.0, 'the': 3.0, 'are': 1.0, 'but': 1.0, 'plastic': 1.0, 'blankets': 1.0, 'causing': 1.0, 'packaged': 1.0, 'multiple': 1.0, 'that': 1.0, 'blanket': 1.0, 'tags': 1.0, 'on': 1.0, 'end': 1.0, 'have': 2.0, 'fabric': 1.0, 'to': 1.0, 'rip': 1.0}
Word element => {'is': 1.0, 'which': 1.0, 'daughter': 1.0, 'well': 1.0, 'allow': 1.0, 'as': 1.0, 'very': 1.0, 'cloth': 1.0, 'after': 1.0, 'was': 1.0, 'my': 1.0, 'work': 1.0, 'diapers': 1.0, 'great': 1.0, 'the': 1.0, 'these': 1.0, 'they': 2.0, 'for': 2.0, 'love': 1.0, '13': 1.0, 'sizes': 1.0, 'she': 2.0, 'lbs': 1.0, 'over': 1.0, 'different': 1.0, 'grows': 1.0, 'with': 1.0, 'snaps': 1.0}
Word element => {'month': 1.0, 'needed': 1.0, 'for': 1.0, 'which': 1.0, 'adjustable': 1.0, 'what': 2.0, 'i': 2.0, 'very': 1.0, 'expected': 1.0, 'is': 1.0, 'description': 1.0, 'will': 1.0, 'my': 1.0, 'more': 1.0, 'old': 1.0, 'be': 1.0, '7': 1.0, 'buying': 1.0, 'just': 1.0, 'fits': 1.0}
Word element => {'well': 1.0, 't': 1.0, 'don': 1.0, 'definitely': 1.0, 'cheaper': 1.0, 'of': 1.0, 'some': 1.0, 'alva': 1.0, 'diapers': 1.0, 'as': 1.0, 'up': 1.0, 'and': 1.0, 'are': 1.0, 'the': 3.0, 'tried': 1.0, 'is': 1.0, 'reasonable': 1.0, 'best': 1.0, 'we': 1.0, 'hold': 1.0, 've': 1.0, 'brands': 1.0, 'price': 1.0}
Word element => {'babyland': 1.0, 'of': 1.0, 'will': 1.0, 'than': 1.0, 'better': 1.0, 'money': 1.0, 'little': 1.0, 'a': 2.0, 'spend': 1.0, 'definitely': 1.0, 'through': 1.0, 'again': 1.0, 'leeks': 1.0, 'my': 1.0, 'is': 3.0, 'so': 1.0, 'now': 1.0, 'was': 1.0, 'and': 1.0, 'diaper': 1.0, 'more': 1.0, 'the': 3.0, 'pee': 1.0, 'this': 3.0, 'it': 1.0, 'ths': 1.0, 'never': 1.0, 'would': 1.0, 'sides': 1.0, 'him': 1.0, 'son': 1.0, 'why': 1.0, '11': 1.0, 'on': 1.0, 'months': 1.0, 'buy': 1.0, 'cheap': 1.0, 'i': 2.0, 'old': 1.0, 'brand': 2.0, 'loose': 1.0, 'too': 1.0, 'for': 1.0, 'know': 1.0, 'just': 1.0}
Word element => {'disappears': 1.0, 'case': 1.0, 'all': 1.0, 'them': 1.0, 'keep': 1.0, 'backups': 1.0, 'favorite': 1.0, 'has': 1.0, 'of': 1.0, '34': 2.0, 'need': 1.0, 'little': 1.0, 'she': 1.0, 'that': 1.0, 'our': 1.0, 'one': 1.0, 'for': 1.0, 'girl': 1.0, 'several': 1.0, 'we': 3.0, 'warn': 1.0, 'exactly': 1.0, 'what': 1.0, 'her': 1.0, 'blanky': 1.0, 'to': 1.0, 'wanted': 1.0, 'now': 1.0, 'in': 2.0, 'rotate': 1.0, 'order': 1.0}
Word element => {'cords': 1.0, 'never': 1.0, 'certainly': 1.0, 'wasn': 1.0, 'there': 2.0, 'used': 1.0, 'had': 1.0, 'more': 1.0, 'is': 1.0, 'shortener': 2.0, 'cord': 4.0, 'few': 1.0, 'passed': 1.0, 'has': 1.0, 'be': 1.0, 'window': 1.0, 'so': 1.0, 'like': 1.0, 'would': 1.0, 'something': 1.0, 'to': 2.0, 'didn': 1.0, 'the': 7.0, 'use': 2.0, 'middle': 2.0, 'return': 2.0, 'in': 4.0, 'also': 2.0, 'months': 1.0, 'one': 6.0, 'bottom': 1.0, 'this': 3.0, 'it': 3.0, 'crawl': 1.0, 'with': 1.0, 'outlets': 2.0, 'every': 1.0, 'really': 1.0, 'check': 1.0, 'needed': 2.0, 'top': 1.0, 'joke': 1.0, 'should': 1.0, 'was': 1.0, 'doesn': 1.0, 'house': 2.0, 'have': 2.0, 'screw': 3.0, 'only': 2.0, 'works': 1.0, 'room': 2.0, 'before': 2.0, 'think': 1.0, 'on': 4.0, 'between': 1.0, 'twins': 2.0, 'for': 4.0, 'where': 1.0, 'that': 4.0, 'plugs': 1.0, 'and': 8.0, 'description': 1.0, 'lamp': 1.0, 'standard': 1.0, 'because': 2.0, 'a': 3.0, 'we': 2.0, 't': 5.0, 'go': 1.0, 'two': 2.0, 'stated': 1.0, 'i': 5.0, 'ordered': 2.0, 'outlet': 2.0, 'shortened': 1.0, 'my': 4.0, 'work': 1.0, 'can': 3.0, 'inches': 1.0, 'single': 2.0, 'access': 1.0, 'now': 1.0, 'started': 1.0, 'them': 5.0}
Word element => {'freedom': 1.0, 'price': 1.0, 'a': 1.0, 'pay': 1.0, 'but': 1.0, 'an': 1.0, 'is': 3.0, 'pretty': 1.0, 'if': 1.0, 'brand': 3.0, 'set': 3.0, 'this': 4.0, 'hard': 1.0, 'sellers': 1.0, 'with': 1.0, 'it': 1.0, 'i': 3.0, 'packaging': 1.0, 'medella': 4.0, 'products': 1.0, 'for': 1.0, 'love': 1.0, 'hands': 1.0, 'the': 2.0, 'great': 1.0, 'worth': 1.0, 'my': 1.0, 'and': 3.0, 'style': 2.0, 'glad': 2.0, 'pump': 2.0, 'free': 3.0, 'site': 1.0, 'they': 1.0, 'was': 3.0, 'as': 2.0, 'actual': 1.0, 'to': 4.0, 'selling': 1.0, 'able': 1.0, 'pricey': 1.0, 'were': 2.0, 'your': 1.0, 'on': 1.0, 'find': 3.0, 'because': 1.0, 'other': 1.0, 'off': 1.0, 'seemingly': 1.0, 'true': 1.0, 'works': 1.0, 'you': 1.0, 'are': 1.0, 'willing': 1.0}
Word element => {'easy': 1.0, 'toddler': 1.0, 'quality': 1.0, 'for': 2.0, 'though': 1.0, 'gift': 1.0, 'be': 1.0, 'material': 1.0, 'bought': 1.0, 'xmas': 1.0, 'the': 1.0, 'great': 1.0, 'a': 3.0, 'as': 1.0, 'and': 2.0, 'of': 1.0, 'set': 2.0, 'it': 1.0, 'this': 1.0, 'grandson': 1.0, 'use': 1.0, 'loved': 1.0, 'my': 2.0, 'i': 1.0, 'to': 1.0, 'granddaughter': 1.0, 'grandmother': 1.0, 'even': 1.0, 'her': 1.0, 'is': 2.0, 'little': 1.0, 'should': 1.0, 'twisted': 1.0}
Word element => {'sun': 1.0, 'afternoon': 1.0, 'full': 1.0, 'so': 1.0, 'breathable': 1.0, 'all': 1.0, 'isn': 1.0, 'is': 2.0, 'side': 1.0, 'trick': 1.0, 't': 1.0, 'the': 2.0, 'use': 2.0, 'baby': 1.0, 'new': 2.0, 'for': 1.0, 'cannot': 1.0, 'in': 2.0, 'could': 1.0, 'to': 1.0, 'stroller': 1.0, 'shade': 2.0, 'definitely': 1.0, 'it': 1.0, 'only': 1.0, 'this': 2.0, 'bought': 1.0, 'living': 1.0, 'i': 2.0, 'running': 1.0, 'my': 1.0, 'arizona': 1.0, 'down': 1.0, 'does': 1.0, 'we': 1.0, 'needed': 1.0, 'something': 1.0, 'that': 3.0, 'our': 1.0}
Word element => {'but': 1.0, 'head': 1.0, 'his': 1.0, 'its': 1.0, 'to': 1.0, 'likes': 1.0, 'how': 1.0, 'space': 1.0, 'find': 1.0, 'center': 1.0, 'soft': 1.0, 'blankey': 1.0, 'especially': 1.0, 'should': 1.0, 'so': 1.0, 'this': 1.0, 'it': 4.0, 'rest': 1.0, 'baby': 2.0, 'been': 1.0, 'my': 2.0, 'great': 1.0, 'the': 2.0, 'and': 1.0, 'awesome': 1.0, 'is': 2.0, 'on': 2.0, 'i': 2.0, 'loves': 1.0, 'think': 1.0, 'one': 1.0, 'mqueen': 1.0, 'car': 1.0, 'corner': 1.0, 'up': 1.0, 'takes': 1.0, 'of': 1.0, 'not': 1.0}
Word element => {'and': 1.0, 'with': 1.0, 'play': 1.0, 't': 1.0, 'i': 3.0, 'think': 1.0, 's': 1.0, 'use': 1.0, 'just': 1.0, 'to': 1.0, 'adorable': 1.0, 'him': 1.0, 'wait': 1.0, 'can': 1.0, 'it': 4.0, 'love': 1.0, 'new': 1.0, 'for': 2.0, 'my': 1.0, 'porn': 1.0}
Word element => {'got': 1.0, 'with': 1.0, 'up': 1.0, 'which': 1.0, 'decide': 1.0, 'couldn': 1.0, 'll': 1.0, 'you': 1.0, 'lo': 1.0, 'item': 1.0, 'beautiful': 1.0, 'recommend': 1.0, 'really': 1.0, 'comfortable': 1.0, 'just': 2.0, 'because': 1.0, 'stroller': 3.0, 'ready': 1.0, 'car': 2.0, 'well': 2.0, 'niece': 2.0, 'purple': 1.0, 'i': 5.0, 'gift': 1.0, 'color': 2.0, 'bought': 1.0, 'son': 2.0, 'get': 2.0, 'your': 1.0, '3': 1.0, 'orange': 1.0, 'at': 1.0, 'seasons': 1.0, 'super': 1.0, 'they': 1.0, 'them': 1.0, 'rid': 1.0, 'time': 1.0, 'so': 1.0, 'end': 1.0, 'much': 1.0, 'can': 1.0, 'a': 2.0, 's': 3.0, 't': 2.0, 'of': 1.0, 'are': 1.0, 'britax': 1.0, 'it': 4.0, 'to': 1.0, 'seat': 2.0, 'as': 3.0, 'all': 2.0, 'loves': 1.0, 'green': 1.0, 'and': 8.0, 'too': 1.0, 'love': 2.0, 'for': 4.0, 'fit': 1.0, 'marathon': 1.0, 'my': 5.0, 'b': 1.0, 'this': 1.0, 'soft': 1.0, 'perfect': 1.0}
Word element => {'another': 1.0, 'had': 1.0, 'if': 1.0, 'buy': 1.0, 'however': 1.0, 'area': 1.0, 'storage': 1.0, 'lockable': 1.0, '2': 1.0, 'holding': 1.0, 'bag': 1.0, 'son': 2.0, 'my': 2.0, 'large': 1.0, 'just': 1.0, 'a': 5.0, 's': 2.0, 'on': 2.0, 'feel': 1.0, 'your': 1.0, 'out': 1.0, 'cheaply': 1.0, 'carseat': 2.0, 'for': 1.0, 'love': 2.0, 'not': 3.0, 'to': 4.0, 'because': 2.0, 'great': 1.0, 'diaper': 1.0, 'cracked': 1.0, 'turns': 1.0, 'place': 2.0, '6': 1.0, 'disappointed': 1.0, 'stroller': 2.0, 'our': 1.0, 'how': 1.0, 'plastic': 1.0, 'longer': 1.0, 'the': 13.0, 'of': 6.0, 'has': 4.0, 'is': 4.0, 'really': 1.0, 'holders': 1.0, 'material': 1.0, 'and': 9.0, 'corners': 1.0, 'but': 2.0, 'chose': 1.0, 'already': 1.0, 'it': 5.0, 'this': 4.0, 'smooth': 1.0, 'with': 2.0, 'system': 1.0, 'will': 1.0, 'travel': 1.0, 'old': 1.0, 'back': 1.0, 'trend': 2.0, 'well': 1.0, 'i': 9.0, 'two': 1.0, 'again': 1.0, 'car': 3.0, 'baby': 4.0, 'products': 1.0, 'product': 1.0, 'price': 1.0, 'their': 1.0, 'snapping': 1.0, 'was': 1.0, 'made': 1.0, 'side': 1.0, 'which': 1.0, 'like': 2.0, 'am': 1.0, 'happened': 1.0, 'sure': 1.0, 'accident': 1.0, 'since': 1.0, 'lasted': 1.0, 'lot': 1.0, 'never': 2.0, 'seat': 3.0, 'in': 7.0, 'an': 1.0, 'or': 1.0, 'dropped': 1.0, 'difficult': 1.0, 'strap': 1.0, 'buckle': 1.0, 'needs': 1.0, 'drink': 1.0, 'be': 1.0, 'brand': 1.0, 'aligned': 1.0, 'puzzle': 1.0, 'suited': 1.0, 'used': 1.0, 'got': 1.0, 'pieces': 1.0, 'reviews': 1.0, 'then': 1.0, 'months': 1.0, 'tons': 1.0, 'snapped': 1.0, 'opposed': 1.0, 'slippery': 1.0, 'grown': 1.0, 'feels': 1.0, 'would': 2.0, 'soft': 1.0, 'sweat': 1.0, 'much': 1.0, 'put': 1.0, 'do': 1.0, 'went': 1.0, 'spiffy': 1.0, 'ride': 1.0}
Word element => {'point': 1.0, 'at': 1.0, 'their': 1.0, 'started': 1.0, 'already': 1.0, 'had': 2.0, 'other': 1.0, 'yet': 1.0, 'or': 1.0, 'squeaker': 1.0, 'home': 1.0, 'very': 1.0, 'little': 1.0, 'while': 1.0, 'from': 2.0, 'find': 1.0, 'my': 1.0, 'often': 1.0, 'happy': 1.0, 'quite': 1.0, 'have': 1.0, 'but': 1.0, 'use': 1.0, 'didn': 1.0, 'certain': 1.0, 'chair': 2.0, 'lock': 1.0, 'show': 1.0, 'side': 1.0, 'daily': 1.0, 'where': 1.0, 'love': 1.0, 'actually': 1.0, 'multiple': 1.0, 'd': 1.0, 'm': 2.0, 'years': 1.0, 'price': 1.0, 'nurse': 1.0, 'age': 1.0, 'in': 3.0, 'position': 1.0, 've': 2.0, 'great': 1.0, 'used': 1.0, 'with': 1.0, 'first': 1.0, 'grinding': 1.0, 'allows': 1.0, 'this': 3.0, 'able': 1.0, 'sit': 1.0, 'lever': 1.0, 'glider': 2.0, 'hunched': 1.0, 'still': 2.0, 'holding': 1.0, 't': 1.0, 'a': 3.0, 'to': 3.0, 'working': 2.0, 'through': 1.0, 'one': 2.0, 'daycare': 1.0, 'beautiful': 1.0, 'being': 1.0, 'feature': 1.0, 'i': 9.0, 'no': 1.0, 'gone': 1.0, 'think': 1.0, 'on': 1.0, '3': 2.0, 'back': 1.0, 'and': 3.0, 'perfectly': 1.0, 'myself': 1.0, 'the': 4.0, 'without': 1.0, 'up': 2.0, 'over': 1.0, 'just': 1.0, 'hope': 1.0, 'is': 3.0, 'holds': 1.0, '5': 1.0, 'it': 2.0, 'month': 1.0, 'gliders': 2.0, 'update': 1.0, 'has': 2.0, 'that': 3.0, 'been': 1.0, 'you': 1.0, 'times': 1.0}
Word element => {'shermag': 1.0, 'better': 1.0, 'with': 1.0, 'is': 2.0, 'cushion': 1.0, 'foot': 1.0, 'not': 1.0, 'base': 1.0, 'really': 1.0, 'rester': 1.0, 'short': 1.0, 'are': 1.0, 'the': 3.0, 'correct': 1.0, 'seats': 1.0, 'and': 1.0, 'height': 1.0}
Word element => {'later': 1.0, 'a': 1.0, 'at': 1.0, 'update': 1.0, 'within': 1.0, 'here': 1.0, 'can': 1.0, 'glider': 1.0, 'really': 2.0, 'loves': 1.0, 'good': 1.0, 'wrong': 1.0, 'go': 1.0, 'wife': 1.0, 'for': 1.0, 'in': 1.0, 'date': 1.0, 'arrives': 1.0, 'my': 1.0, '2': 1.0, 't': 1.0, 'great': 1.0, 'the': 2.0, 'and': 2.0, 'weeks': 1.0, 'quality': 1.0, 'will': 2.0, 'price': 1.0, 'baby': 1.0, 'it': 1.0, 'come': 1.0, 'handy': 1.0, 'when': 1.0}
Word element => {'comfortable': 1.0, 'smoothly': 1.0, 'on': 1.0, 'openings': 1.0, 'use': 1.0, 'purchase': 1.0, 'pocket': 1.0, 'like': 1.0, 'better': 1.0, 'much': 1.0, 'be': 1.0, 'glides': 1.0, 'it': 5.0, 'isn': 1.0, 't': 1.0, 'the': 6.0, 'to': 2.0, 'as': 2.0, 'very': 1.0, 'than': 1.0, 'most': 1.0, 'but': 2.0, 'padding': 1.0, 'plump': 1.0, 'of': 1.0, 'picture': 1.0, 'shows': 1.0, 'paying': 1.0, 'i': 3.0, 'almost': 1.0, 'arm': 1.0, 'wraps': 1.0, 'where': 1.0, 'is': 2.0, 'around': 1.0, 'and': 2.0, 'under': 1.0, 'difficult': 1.0, 'overall': 1.0, 'full': 1.0, 'liked': 1.0, 'would': 1.0, 'have': 1.0, 'been': 1.0, 'disappointed': 1.0, '34': 2.0, 'arms': 1.0, 'price': 1.0, '399': 1.0}
Word element => {'top': 1.0, 'pillow': 1.0, 'more': 2.0, 'about': 1.0, 'has': 1.0, 'hers': 2.0, 'she': 1.0, 'commented': 1.0, 'was': 2.0, 'issue': 1.0, 'an': 2.0, 'cancelling': 1.0, 'but': 3.0, 'option': 1.0, 'give': 1.0, 'my': 3.0, 'me': 1.0, 'sat': 2.0, 'getting': 1.0, 'they': 1.0, 'receive': 1.0, 'before': 1.0, 'spent': 1.0, 'could': 1.0, 'a': 3.0, 's': 3.0, 'when': 3.0, 't': 3.0, 'further': 1.0, 'did': 1.0, 'emails': 1.0, 'friend': 1.0, '1': 1.0, 'comfortable': 3.0, 'can': 2.0, 'so': 1.0, 'time': 1.0, 'order': 1.0, 'even': 1.0, 'took': 1.0, 'ottoman': 3.0, 'chair': 3.0, 'and': 4.0, 'first': 1.0, 'are': 1.0, 'not': 1.0, 'itself': 1.0, 'in': 4.0, 'have': 1.0, 'had': 1.0, 'kept': 1.0, 'start': 1.0, 'to': 3.0, 'how': 1.0, 'item': 1.0, 'you': 2.0, 'delaying': 1.0, 'complaints': 1.0, 'this': 3.0, 'glider': 2.0, 'it': 7.0, 'arrive': 1.0, 'i': 12.0, 'really': 2.0, 'look': 1.0, 'is': 3.0, 'of': 3.0, 'the': 12.0, 'longer': 1.0, 'than': 2.0, 'deciding': 1.0, 'does': 1.0, 'expected': 1.0, 'put': 1.0, 'much': 2.0, 'expect': 1.0, 'liked': 1.0, 'wish': 1.0, 'investigating': 1.0, 'possible': 1.0, 'complaint': 1.0, 'finally': 1.0, '3': 1.0, 'one': 2.0, 'want': 1.0, 'picture': 1.0, 'dirt': 1.0, 'over': 1.0, 'retrospect': 1.0, 'if': 1.0, 'certainly': 1.0, 'd': 1.0, 'realized': 1.0, 'didn': 2.0, 'ordered': 1.0, 'on': 3.0, 'realize': 1.0, 'that': 2.0, 'came': 1.0, 'with': 2.0, 'darker': 1.0, 'fabric': 1.0, 'clean': 1.0, 'thing': 1.0, '2': 1.0, 'terrible': 1.0, 'show': 1.0, 'options': 1.0, 'biggest': 1.0, 'would': 1.0, 'several': 1.0, 'inches': 1.0, 'lower': 1.0, 'which': 3.0, 'see': 1.0, 'granted': 1.0, 'be': 1.0}
Word element => {'needs': 1.0, 'satisfied': 1.0, 'perfect': 1.0, 'be': 1.0, 'more': 1.0, 'my': 1.0, 'very': 1.0, 'and': 2.0, 'bought': 1.0, 'our': 2.0, 'i': 1.0, 'it': 1.0, 't': 1.0, 'this': 1.0, 'wife': 1.0, 'for': 2.0, 'couldn': 1.0, 'nursery': 1.0}
Word element => {'future': 1.0, 'replace': 1.0, 'want': 1.0, 'if': 1.0, 'next': 1.0, 'on': 1.0, 'sit': 1.0, 'stores': 1.0, 'will': 1.0, 'thick': 1.0, 'are': 1.0, 'very': 1.0, 'little': 1.0, 'it': 8.0, 'looked': 1.0, 'only': 1.0, 'am': 1.0, 'toes': 1.0, '5': 1.0, 'this': 1.0, 'wish': 1.0, 'than': 1.0, 'photo': 1.0, 'of': 1.0, 'deal': 1.0, 'the': 7.0, 'good': 2.0, 'not': 1.0, 'me': 2.0, '4': 1.0, 'i': 5.0, 'touch': 1.0, 'say': 1.0, 'is': 3.0, 'in': 2.0, 'said': 1.0, 'go': 1.0, 'a': 3.0, 'chair': 2.0, 'comfortable': 1.0, 'nice': 1.0, 'would': 1.0, 'was': 2.0, 'time': 1.0, 'bit': 1.0, 'and': 2.0, 'too': 1.0, 'high': 2.0, 'my': 1.0, 'for': 2.0, 'but': 4.0, 'can': 1.0, 'floor': 1.0, 'ottoman': 1.0, 'viewers': 1.0, 'some': 1.0, 'lower': 1.0, 'they': 1.0, 'makes': 1.0, 'thought': 1.0, 'better': 1.0, 'to': 2.0, 'as': 2.0, 'all': 1.0, 'pads': 1.0}
Word element => {'some': 1.0, 'get': 1.0, 'glad': 1.0, 'might': 1.0, 'thin': 1.0, 'quite': 1.0, 'floor': 1.0, 'covers': 1.0, 'most': 1.0, 'support': 1.0, 'additional': 1.0, 'likely': 1.0, 'll': 2.0, 'tips': 1.0, 'want': 3.0, 'what': 1.0, 'exactly': 1.0, 'you': 4.0, 'motion': 1.0, 'gliding': 1.0, 'pads': 1.0, 'hard': 1.0, 'extremely': 1.0, 't': 1.0, 'isn': 1.0, 'find': 1.0, 'feeling': 1.0, 'rickety': 1.0, 'own': 1.0, 'risk': 2.0, 'end': 2.0, 'number': 1.0, 'at': 1.0, 'is': 5.0, 'surprise': 1.0, 'all': 1.0, 'lumbar': 1.0, 'and': 4.0, 'reps': 1.0, 'item': 1.0, 'with': 2.0, 'this': 4.0, 'quality': 2.0, 'rewarded': 1.0, 'skeptical': 1.0, 'hole': 1.0, 'suspicious': 1.0, 'was': 6.0, 'minutes': 1.0, 'low': 1.0, 'box': 1.0, 'bit': 2.0, 'company': 1.0, 'simply': 1.0, 'admit': 1.0, 'complain': 1.0, 'driver': 1.0, 'plushest': 1.0, 'did': 1.0, 'should': 1.0, 'product': 3.0, 'price': 2.0, 'about': 4.0, '13': 1.0, 'no': 4.0, 'snags': 1.0, 'took': 3.0, 'need': 1.0, 'ottoman': 1.0, 'of': 5.0, 'the': 16.0, 'impact': 1.0, 'assembled': 1.0, 'wrap': 1.0, 'to': 3.0, 'job': 1.0, 'feared': 1.0, 'out': 1.0, 'a': 7.0, 'small': 1.0, 'fine': 4.0, 'reviews': 1.0, 'by': 1.0, 'assembly': 1.0, 'arrives': 1.0, 'seat': 1.0, 'm': 2.0, 'in': 1.0, 'fully': 1.0, 'sorted': 1.0, 'it': 3.0, 'annoying': 1.0, 'protectors': 1.0, 'chair': 2.0, 'written': 1.0, 'pleasant': 1.0, 'there': 5.0, 'went': 1.0, 'were': 2.0, 'together': 1.0, 'misaligned': 1.0, 'say': 1.0, 'seriously': 1.0, 'felt': 1.0, 'total': 1.0, 'super': 1.0, 'unwarranted': 1.0, 'simple': 1.0, 'are': 5.0, 'i': 10.0, 'well': 1.0, 'happy': 1.0, 'one': 1.0, 'remove': 1.0, 'slightly': 1.0, 'but': 2.0, 'muscle': 1.0, 'okay': 1.0, 'screws': 1.0, 'solo': 1.0, 'certainly': 1.0, 'covering': 1.0, 'if': 1.0, 'remember': 1.0, 'concerned': 1.0, 'that': 3.0, 'fears': 1.0, '20': 1.0, 'plastic': 1.0, 'correctly': 1.0, 'my': 2.0, 'me': 1.0, 'surprises': 1.0, 'solid': 1.0, 'your': 1.0, 'squeaks': 1.0}
Word element => {'get': 1.0, 'finally': 1.0, 'do': 1.0, 'if': 1.0, 'even': 1.0, 'and': 1.0, 'quality': 1.0, 'concerned': 1.0, 'take': 1.0, 'won': 2.0, 'replacement': 2.0, 'hopefully': 2.0, 'another': 2.0, 'have': 1.0, 'initiated': 1.0, 'broken': 1.0, 'arrived': 1.0, 'broke': 1.0, 'about': 2.0, 'bearings': 1.0, 'week': 1.0, 'process': 1.0, 'but': 2.0, 'weeks': 2.0, 'initiating': 1.0, 't': 2.0, 'a': 2.0, 'the': 5.0, 'replace': 1.0, 'less': 1.0, 'am': 3.0, 'again': 1.0, 'when': 1.0, 'in': 1.0, 'than': 1.0, 'one': 1.0, 'comfortable': 1.0, 'i': 6.0, 'took': 1.0, 'glider': 2.0, 'it': 6.0, 'functional': 1.0, 'this': 2.0, 'ordered': 1.0, 'christmas': 1.0, 'very': 3.0, 'of': 2.0, '6': 2.0, 'ball': 1.0, 'wrong': 1.0, 'me': 3.0, 'time': 1.0, 'they': 3.0, 'completely': 1.0, 'around': 1.0, 'is': 1.0, 'really': 1.0, 'were': 1.0, 'that': 2.0, 'last': 1.0, 'good': 1.0, 'telling': 1.0, 'new': 1.0, 'would': 1.0, 'to': 1.0, 'afraid': 1.0, 'for': 2.0, 'actually': 1.0, 'receive': 2.0, 'base': 3.0, 'after': 1.0, 'long': 1.0, 'claim': 1.0, 'sending': 1.0, 'did': 1.0}
Word element => {'happy': 1.0, 'fabric': 1.0, 'around': 1.0, 'good': 3.0, 'purchase': 1.0, 'sturdy': 1.0, 'no': 1.0, 'gliders': 1.0, 'the': 2.0, 'more': 1.0, 'squishy': 1.0, 'easy': 1.0, 'quality': 2.0, 'and': 1.0, 'among': 1.0, 'very': 2.0, 'importantly': 1.0, 'with': 1.0, 'noises': 1.0, 'this': 1.0, 'price': 1.0, 'beautiful': 1.0, 'to': 1.0, 'comparable': 1.0, 'assemble': 1.0, 'looking': 1.0, 'size': 1.0}
Word element => {'perfect': 1.0, 'construction': 1.0, 'is': 2.0, 'knew': 1.0, 'sleep': 1.0, 'baby': 1.0, 'to': 2.0, 'used': 1.0, 'time': 1.0, 'like': 1.0, 'lounger': 1.0, 'a': 3.0, 'for': 2.0, 'wife': 2.0, 'year': 1.0, 'right': 1.0, 'looking': 1.0, 'and': 2.0, 'apprehensive': 1.0, 'been': 1.0, 'have': 1.0, 'it': 1.0, 'first': 1.0, 'this': 1.0, 'i': 1.0, 'when': 1.0, 'choice': 1.0, 'my': 2.0, 'made': 2.0, 'great': 1.0, 'the': 5.0, 'over': 1.0, 'we': 4.0, 'purchase': 1.0, 'that': 1.0, 'were': 1.0, 'bit': 1.0, 'quality': 1.0, 'put': 1.0, 'but': 1.0}
Word element => {'no': 1.0, 'hope': 1.0, 'glue': 1.0, 'someone': 1.0, 'like': 1.0, 'looked': 1.0, 'fix': 1.0, 'handy': 1.0, 'husband': 1.0, 'thankfully': 1.0, 'repair': 1.0, 'back': 1.0, 'heavy': 1.0, 'whole': 1.0, 'cover': 1.0, 'send': 1.0, 'broken': 2.0, 'lever': 2.0, 'lastly': 1.0, '4': 1.0, 'late': 1.0, 'before': 1.0, 'here': 1.0, 'make': 1.0, 'going': 1.0, 'think': 1.0, 'wholly': 1.0, 'shipping': 1.0, 'about': 2.0, 'talk': 1.0, 'suppose': 1.0, 'aren': 1.0, 'we': 1.0, 'know': 1.0, 'he': 1.0, 'bottom': 2.0, 'nursing': 2.0, 'secondly': 1.0, 'almose': 1.0, 'use': 1.0, 'time': 2.0, 'so': 2.0, 'comfortably': 1.0, 'came': 2.0, 'realized': 1.0, 'didn': 1.0, 'eventually': 1.0, 'nurse': 2.0, 'after': 2.0, 'arm': 1.0, 'postpartum': 1.0, 'hurt': 1.0, 'able': 1.0, 'you': 2.0, 'causing': 1.0, 'and': 5.0, 'enough': 1.0, 'but': 2.0, 'lap': 1.0, 'did': 1.0, 'for': 4.0, 'was': 9.0, 'had': 1.0, 'high': 1.0, 'to': 15.0, 'in': 1.0, 'seat': 3.0, 'work': 2.0, 'hard': 1.0, 'from': 1.0, 'what': 1.0, 'when': 1.0, 'sit': 1.0, 'birth': 1.0, 'arrive': 1.0, 'get': 1.0, 'comfy': 2.0, 'chair': 2.0, 'notice': 1.0, 'is': 6.0, 'sad': 1.0, 'add': 1.0, 'pillow': 3.0, 'long': 1.0, 'on': 5.0, '3': 3.0, 'your': 2.0, 'tiny': 1.0, 'a': 5.0, 'lay': 1.0, 'woman': 1.0, 'well': 1.0, 'i': 6.0, 'little': 1.0, 'two': 1.0, 'does': 1.0, 'not': 5.0, 'my': 5.0, 'reasons': 1.0, 'me': 1.0, 'much': 2.0, 'offer': 1.0, 'away': 1.0, 'have': 1.0, 'took': 1.0, 'feed': 1.0, 'every': 2.0, 'hours': 3.0, 'which': 1.0, 'could': 1.0, 'means': 1.0, 'gave': 1.0, 'first': 3.0, 'are': 1.0, 'tried': 1.0, 'off': 1.0, 'until': 1.0, 'baby': 3.0, 'full': 1.0, 'few': 1.0, 'this': 3.0, 'one': 2.0, 'too': 2.0, 'lot': 2.0, 'cow': 1.0, 'the': 12.0, 'of': 2.0, '2': 2.0, 'thing': 2.0, 'relief': 1.0, 'up': 2.0, 'nursed': 1.0, 'bed': 1.0, 'because': 2.0, 'that': 5.0, 'problems': 1.0, 'or': 1.0, 'ottoman': 1.0, 'with': 2.0, 'low': 1.0, 'carpet': 1.0, 'kept': 1.0, 'would': 1.0, 'weeks': 2.0, 'sliding': 1.0, 't': 2.0, 'rest': 1.0, 'further': 2.0, 'it': 10.0, 'glider': 1.0}
Word element => {'not': 1.0, 'also': 1.0, 'being': 1.0, 'while': 1.0, 'super': 1.0, 'and': 3.0, 'years': 1.0, 'this': 1.0, 'have': 1.0, 'diapering': 1.0, 'been': 1.0, 'its': 1.0, '4': 1.0, 'cloth': 1.0, 'i': 1.0, 'for': 1.0, 'one': 1.0, 'of': 1.0, 'is': 2.0, 'really': 1.0, 'absorbant': 1.0, 'my': 1.0, 'bulky': 1.0, 'the': 1.0, 'trim': 1.0, 'far': 1.0, 'favorites': 1.0, 'so': 1.0, 'too': 1.0, 'kids': 1.0, 'bamboo': 1.0, 'soft': 1.0}
Word element => {'in': 1.0, 'being': 1.0, 'not': 1.0, 'when': 1.0, 'sink': 1.0, 'under': 1.0, 'fits': 1.0, 'easy': 1.0, 'is': 1.0, 'used': 1.0, 'down': 1.0, 'take': 1.0, 'time': 1.0, 'looking': 1.0, 'super': 1.0, 'at': 1.0, 'its': 1.0, 'was': 1.0, 'to': 1.0, 'my': 1.0, 'the': 5.0, 'exceeded': 1.0, 'hammock': 1.0, 'i': 1.0, 'bath': 2.0, 'expectations': 1.0, 'well': 1.0, 'a': 1.0, 'for': 1.0, 'using': 1.0, 'product': 1.0, 'travel': 1.0, 'and': 2.0, 'set': 1.0, 'up': 2.0, 'ended': 1.0, 'first': 1.0, 'with': 1.0, 'it': 1.0, 'all': 1.0}
Word element => {'knowing': 1.0, 'less': 1.0, 'bath': 1.0, 'his': 1.0, 'loves': 1.0, 'water': 1.0, 'much': 1.0, 'warm': 2.0, 'the': 1.0, 'submersed': 1.0, 'in': 3.0, 'cold': 1.0, 'actually': 1.0, 'so': 1.0, 'now': 1.0, 'was': 1.0, 'because': 1.0, 'baby': 3.0, 'baths': 1.0, 'stressful': 1.0, 'always': 1.0, 'hated': 1.0, 'those': 1.0, 'right': 1.0, 'happy': 1.0, 'my': 1.0, 'own': 1.0, 'makes': 1.0, 'your': 1.0, 'it': 2.0, 'he': 3.0, 'this': 1.0, 'hammock': 1.0, 'tub': 1.0, 'tubs': 1.0, 'fits': 1.0, 'and': 3.0, 'is': 2.0}
Word element => {'bather': 1.0, 'they': 2.0, 'when': 1.0, 'babies': 1.0, 'this': 1.0, 'it': 1.0, 'in': 1.0, 'anyone': 1.0, 'edge': 1.0, 'slice': 1.0, 'sharp': 1.0, 'how': 1.0, 'their': 1.0, 'realize': 1.0, 'recommend': 1.0, 'last': 1.0, 'do': 2.0, 'and': 2.0, 'foot': 1.0, 'month': 1.0, 'for': 1.0, 'product': 1.0, 'buying': 1.0, 'was': 1.0, 'to': 1.0, 'a': 1.0, 'my': 1.0, 'because': 1.0, 'not': 2.0, 'just': 1.0, 'night': 1.0, 'i': 3.0, 'baby': 1.0, 'feet': 1.0, 'can': 1.0, 'plastic': 1.0, 'sliced': 1.0, 'used': 1.0, 'his': 1.0, 'on': 1.0, 'piece': 1.0, 'the': 4.0, 'sewn': 1.0, 'kick': 1.0, 'hammock': 1.0, 'did': 1.0}
Word element => {'newborns': 1.0, 'tiny': 1.0, 'recommend': 1.0, 'would': 1.0, 'i': 1.0, 'on': 1.0, 'heel': 1.0, 'and': 1.0, 'so': 1.0, 'bit': 1.0, 'or': 1.0, 'soon': 1.0, 'kicking': 1.0, 'grey': 1.0, 'cut': 1.0, 'month': 1.0, 'the': 2.0, 'started': 1.0, 'for': 2.0, 'got': 1.0, 'loved': 1.0, 'we': 1.0, 'our': 1.0, 'as': 2.0, 'son': 1.0, 'a': 1.0, 'longer': 1.0, 'his': 2.0, 'plastic': 1.0, 'feet': 1.0, 'only': 1.0, 'first': 1.0, 'this': 2.0, 'he': 1.0}
Word element => {'diapers': 1.0, 'changing': 1.0, 'our': 1.0, 'grandbaby': 1.0, 'need': 1.0, 'which': 1.0, 'needed': 1.0, 'what': 1.0, 'you': 1.0, 'exactly': 1.0, 'comes': 1.0, 'to': 1.0, 'is': 1.0, 'with': 1.0, 'this': 1.0, 'i': 2.0, 'visit': 1.0, 'for': 2.0, 'love': 1.0, 'the': 2.0, 'stand': 1.0, 'when': 1.0, 'compartments': 1.0, 'hold': 1.0, 'everything': 1.0}
Word element => {'return': 1.0, 'pay': 1.0, 'usi': 1.0, 'be': 1.0, 'won': 1.0, 'we': 2.0, 'seat': 1.0, 'of': 1.0, 'alters': 1.0, 'that': 1.0, 'and': 1.0, 'slits': 1.0, 'through': 1.0, 'them': 1.0, 'order': 1.0, 'for': 2.0, 'safety': 1.0, 'too': 1.0, 'to': 3.0, 'side': 1.0, 'is': 2.0, 'infant': 1.0, 'pushes': 1.0, 'big': 1.0, 'will': 1.0, 'an': 1.0, 'but': 1.0, 'g': 1.0, 'at': 1.0, 'safe': 1.0, 'straps': 1.0, 'sounded': 1.0, 'like': 1.0, 'come': 1.0, 'it': 5.0, 'this': 1.0, 'carseat': 1.0, 'in': 1.0, 'also': 1.0, 'guess': 1.0, 'i': 2.0, 'mesh': 1.0, 'don': 1.0, 'feel': 1.0, 'great': 1.0, 't': 2.0, 'the': 6.0}
Word element => {'for': 1.0, 'in': 1.0, 'hast': 1.0, 'what': 1.0, 'and': 2.0, 'daughter': 1.0, 'described': 1.0, 'as': 1.0, 'just': 2.0, 'was': 3.0, 'it': 1.0, 'this': 1.0, 'my': 1.0, 'is': 1.0, 'room': 1.0, 'looking': 1.0, 'item': 1.0, '7': 1.0, 'months': 1.0, 'plenty': 1.0, 'i': 1.0, 'old': 1.0, 'still': 1.0, 'of': 1.0}
Word element => {'needed': 1.0, 'what': 1.0, 'we': 1.0, 'exactly': 1.0, 'is': 1.0, 'this': 1.0}
Word element => {'the': 1.0, 'old': 1.0, 'month': 1.0, 'for': 1.0, 'beach': 1.0, 'my': 1.0, 'great': 1.0, 'was': 1.0, 'at': 1.0, '2': 1.0, 'this': 1.0}
Word element => {}
Word element => {'are': 1.0, 'also': 1.0, 'in': 1.0, 'moves': 1.0, 'child': 1.0, 'your': 1.0, 'they': 1.0, 'crib': 1.0, 'beds': 1.0, 'patterns': 1.0, 'make': 1.0, 'great': 1.0, 'the': 2.0, 'match': 1.0, 'adults': 1.0, 'all': 1.0, 'easy': 1.0, 'super': 1.0, 'and': 2.0, 'up': 2.0, 'love': 1.0, 'for': 1.0, 'evolution': 1.0, 'mix': 1.0, 'so': 1.0, 'cute': 1.0, 'soft': 1.0, 's': 1.0, 'way': 1.0, 'it': 1.0, 'to': 1.0, 'an': 1.0, 'sets': 1.0, 'queen': 2.0, 'when': 1.0}
Word element => {'love': 1.0, 'thoughts': 1.0, 'exchange': 1.0, 'receive': 1.0, 'heading': 1.0, 'up': 1.0, 'warming': 1.0, 'plan': 1.0, 'going': 1.0, 'some': 1.0, 'toss': 1.0, 'number': 1.0, 'properly': 1.0, 'protect': 1.0, 'chest': 1.0, 'far': 1.0, 'straps': 1.0, 'makes': 1.0, 'children': 1.0, 'best': 1.0, 'want': 3.0, 'in': 13.0, 'seat': 4.0, 'i': 19.0, 'well': 3.0, 'huge': 1.0, 'than': 1.0, 'us': 1.0, 'also': 1.0, 'testing': 1.0, 'strollers': 2.0, 'am': 1.0, 'was': 5.0, 'of': 5.0, 'the': 31.0, 'done': 1.0, 'lyric': 1.0, 'tested': 1.0, 'installation': 1.0, 'keep': 1.0, 'given': 1.0, 'or': 1.0, 'feature': 1.0, 'ecstatic': 1.0, 'them': 2.0, 'car': 5.0, 'their': 2.0, 'review': 1.0, 'graco': 4.0, 'snowsuits': 2.0, 'excited': 2.0, 'me': 2.0, 'my': 9.0, 'not': 3.0, 'side': 1.0, 'works': 1.0, 'important': 1.0, 'goal': 1.0, 'one': 2.0, 'did': 3.0, 'time': 1.0, 'new': 2.0, 'thing': 4.0, 'about': 4.0, 'baby': 7.0, 'becomes': 1.0, 'nowadays': 1.0, 'impacted': 1.0, 'will': 6.0, 'kids': 2.0, 'means': 1.0, 'adding': 1.0, 'yes': 1.0, 'exceeds': 1.0, 'has': 4.0, 'anyway': 1.0, 'put': 1.0, 'standards': 1.0, 'lose': 1.0, 'child': 3.0, 'mine': 1.0, 'infant': 2.0, 'for': 6.0, 'have': 6.0, 'really': 3.0, 'ride': 1.0, 'weather': 2.0, 'born': 1.0, 'due': 1.0, 'biggest': 1.0, 'only': 1.0, 'been': 3.0, 'that': 9.0, 'easily': 1.0, 'because': 1.0, 'thought': 2.0, 'lug': 2.0, 'those': 1.0, 'already': 1.0, 'carseat': 8.0, 'down': 1.0, 'several': 1.0, 'light': 1.0, 'easy': 2.0, 'buying': 1.0, 'date': 1.0, 'to': 13.0, 'cold': 2.0, 'set': 1.0, 'money': 1.0, 'snow': 3.0, 'but': 3.0, 'it': 24.0, 'be': 3.0, 'stays': 2.0, 'ensure': 1.0, 'expire': 2.0, 'asked': 1.0, 'more': 1.0, 'accidents': 1.0, 'comes': 1.0, 'worry': 1.0, 'a': 13.0, 'small': 1.0, 'snug': 1.0, 's': 3.0, 'we': 3.0, 'connect': 3.0, 'pulled': 1.0, 'ignoring': 1.0, 'this': 4.0, 'on': 7.0, 'you': 8.0, 'blankets': 2.0, 'honestly': 1.0, 'when': 5.0, 'safety': 4.0, 'suit': 1.0, 'latch': 1.0, 'base': 1.0, 'from': 1.0, 'dial': 1.0, 'what': 1.0, 'front': 1.0, 'so': 6.0, 'is': 15.0, 'can': 2.0, 'headrest': 1.0, 'make': 1.0, 'involved': 1.0, 'help': 2.0, 'sure': 1.0, 'click': 3.0, 'snugride': 1.0, 'market': 1.0, 'level': 1.0, 'another': 3.0, '35': 1.0, 'extra': 2.0, 'too': 2.0, 'adjusted': 1.0, 'weight': 1.0, 'they': 2.0, 'let': 1.0, 'face': 1.0, 'as': 4.0, 'heavy': 3.0, 'parents': 1.0, 'saving': 1.0, 'around': 2.0, 'lot': 3.0, 'his': 1.0, 'heavier': 1.0, 'add': 1.0, 'into': 2.0, 'say': 1.0, 'lightest': 1.0, 'before': 3.0, 'gets': 1.0, 'coats': 1.0, 'using': 1.0, 'with': 7.0, 'other': 1.0, 'all': 2.0, 'out': 5.0, 'if': 1.0, 'great': 1.0, 'do': 4.0, 'system': 1.0, 'pop': 1.0, 'step': 1.0, 'longer': 1.0, 'looking': 1.0, 'does': 2.0, 'meets': 1.0, 'your': 5.0, 'where': 1.0, 'come': 1.0, 'live': 1.0, 'know': 4.0, 'michigan': 1.0, 'being': 1.0, 'removeable': 1.0, 'january': 1.0, 'taking': 1.0, 'easier': 1.0, 'son': 1.0, 'boot': 1.0, 'since': 2.0, 'most': 1.0, 'still': 1.0, 'don': 2.0, 't': 2.0, 'he': 1.0, 'and': 12.0, 'just': 3.0, 'warm': 1.0, 'months': 1.0, 'read': 1.0, 'correct': 1.0, 'start': 1.0}
Word element => {'satisfied': 1.0, 'otherwise': 1.0, 'bit': 1.0, 'a': 2.0, 'nuisance': 1.0, 'so': 1.0, 'canopy': 1.0, 'on': 1.0, 'stuck': 1.0, 'of': 1.0, 'always': 1.0, 'up': 1.0, 'move': 1.0, 'not': 1.0, 'handle': 1.0, 'getting': 1.0, 'and': 2.0, 'very': 2.0, 'install': 1.0, 'easy': 2.0, 'quality': 1.0, 'stroller': 1.0, 'good': 1.0, 's': 3.0, 'down': 1.0, 'works': 1.0, 'only': 1.0, 'it': 3.0, 'with': 1.0, 'pros': 1.0, 'is': 2.0, 'lightweight': 1.0, 'great': 1.0, 'the': 3.0, 'graco': 1.0, 'to': 2.0, 'frame': 1.0, 'complaint': 1.0, 'i': 1.0, 'have': 1.0}
Word element => {'on': 1.0, 'time': 1.0, 'alone': 1.0, '34': 2.0, 'til': 1.0, 'shop': 1.0, 'wait': 1.0, 'or': 1.0, 'works': 1.0, 'only': 2.0, 'car': 1.0, 'other': 1.0, 'care': 1.0, 'most': 1.0, 'but': 2.0, 'weight': 1.0, 'made': 1.0, 'seats': 1.0, 'light': 1.0, 'more': 1.0, '4th': 2.0, 'so': 4.0, 'tiny': 1.0, 'a': 5.0, 'be': 1.0, 'claims': 1.0, 'one': 2.0, 'what': 1.0, '2': 1.0, 'thing': 1.0, 'no': 1.0, 'usual': 1.0, 'buy': 1.0, 'pulling': 1.0, 'child': 1.0, 'less': 1.0, 'up': 2.0, 'well': 1.0, 'i': 2.0, 'have': 2.0, 'and': 3.0, 'looks': 1.0, 'my': 3.0, 'bit': 2.0, 'hmmmmm': 1.0, 'because': 2.0, 's': 1.0, 'maybe': 1.0, 'does': 1.0, 'seat': 1.0, 'pretty': 1.0, 'to': 5.0, '35': 1.0, 'switch': 1.0, 'with': 2.0, 'this': 3.0, 'pain': 1.0, 'him': 1.0, 'thought': 1.0, 'it': 8.0, 'lighter': 1.0, 'd': 1.0, 'onto': 1.0, 'from': 1.0, 'while': 1.0, 'graco': 2.0, 'classic': 1.0, 'ride': 1.0, 'inside': 1.0, 'tho': 1.0, 'specifically': 1.0, 'for': 3.0, 'fit': 1.0, 'click': 2.0, 'frame': 1.0, 'connect': 2.0, '3': 1.0, 'taking': 1.0, 'the': 6.0, 'unlike': 1.0, 'grocery': 1.0, 'store': 2.0, 'instance': 1.0, 'not': 1.0, 'stroller': 1.0, 'shopping': 3.0, 'weighs': 1.0, 'cart': 3.0, 'is': 3.0, 'snug': 1.0, 'yeah': 1.0, 'carry': 1.0, 'if': 1.0, 'upside': 1.0, 'you': 6.0, 'put': 2.0, 'your': 1.0, 'there': 1.0, 'choices1': 1.0, 'room': 1.0, 'groceries': 1.0, 'attached': 1.0, 'into': 3.0, 'three': 1.0, 'then': 2.0, 'take': 1.0, 'behind': 1.0, 'wake': 1.0, 'baby': 2.0, 'carrier': 1.0}
Word element => {'recommend': 1.0, 'as': 1.0, 'delivered': 1.0, 'of': 1.0, 'theme': 1.0, 'desired': 1.0, 'can': 1.0, 'the': 5.0, 'my': 1.0, 'evaluate': 1.0, 'announce': 1.0, 'differently': 1.0, 'have': 1.0, 'puzzle': 1.0, 'it': 2.0, 'this': 2.0, 'product': 3.0, 'and': 1.0, 'interessente': 1.0, 'chose': 1.0, 'is': 1.0, 'i': 3.0, 'to': 1.0, 'was': 2.0, 'format': 1.0, 'in': 1.0, 'for': 1.0, 'country': 1.0, 'not': 2.0, 'because': 1.0, 'but': 1.0}
Word element => {'price': 1.0, 'in': 1.0, 'is': 1.0, 'made': 1.0, 'my': 1.0, 's': 1.0, 'it': 1.0, 'the': 1.0, 't': 1.0, 'just': 1.0, 'but': 1.0, 'who': 1.0, 'cardboard': 1.0, 'loves': 1.0, 'think': 1.0, 'son': 1.0, 'for': 1.0, 'pvz': 1.0, 'fun': 1.0, 'won': 1.0, 'that': 1.0, 'of': 1.0, 'and': 1.0, 'reflected': 1.0, 'last': 1.0, 'too': 1.0, 'long': 1.0, 'i': 1.0}
Word element => {'memory': 1.0, 'did': 1.0, 'about': 2.0, 'thinking': 1.0, 'sitting': 1.0, 'next': 1.0, 'funny': 1.0, 'ok': 1.0, 'had': 1.0, 'realized': 1.0, 'once': 1.0, 'really': 1.0, 'spit': 1.0, 'somehow': 1.0, 'he': 1.0, 'caused': 1.0, 'now': 1.0, 'figure': 1.0, 'split': 1.0, 'mess': 1.0, 'saved': 1.0, 'splash': 1.0, 'after': 1.0, 'his': 1.0, 'routine': 1.0, 'typical': 1.0, 'with': 1.0, 'nursing': 1.0, 'all': 2.0, 'other': 3.0, 'no': 1.0, 'let': 1.0, 'they': 1.0, 'discovered': 1.0, 'flaw': 1.0, 'design': 1.0, 'there': 1.0, 'over': 2.0, 'provides': 1.0, 'still': 1.0, 'wain': 1.0, 'collect': 1.0, 'won': 1.0, 'regular': 1.0, 'becomes': 1.0, 'second': 1.0, 'demand': 1.0, 'slows': 1.0, 'production': 1.0, 'as': 2.0, 'happened': 1.0, 'anticipate': 1.0, 'also': 1.0, 'less': 1.0, 'change': 1.0, 'up': 2.0, 'onto': 1.0, 'start': 1.0, 'going': 1.0, 'daytime': 1.0, 'able': 1.0, 'night': 1.0, 'side': 2.0, 'which': 1.0, 'down': 2.0, 'storage': 1.0, 'son': 2.0, 'amount': 1.0, 'on': 6.0, 'ground': 1.0, 'leaned': 1.0, 'think': 3.0, 'comfortable': 3.0, '1': 1.0, 'little': 1.0, 'see': 1.0, 'a': 7.0, 'in': 3.0, 'use': 3.0, 'hassle': 1.0, 'and': 8.0, 'nursed': 1.0, 'quick': 1.0, 'oz': 2.0, 'while': 1.0, 'later': 2.0, 'from': 1.0, 'get': 1.0, 'collecting': 1.0, 'pump': 2.0, 'bra': 2.0, 'pocket': 1.0, 'what': 3.0, 'when': 3.0, 'fantastic': 1.0, 'was': 9.0, 'avoided': 1.0, 'finished': 1.0, 'out': 6.0, 'collected': 1.0, 'feedings': 1.0, 'to': 12.0, 'valuable': 1.0, 'box': 1.0, 'expected': 2.0, 'comfortably': 1.0, 'more': 2.0, 'at': 2.0, 'is': 7.0, 'of': 6.0, 'the': 19.0, 'saving': 1.0, 'without': 1.0, 'me': 2.0, 'my': 12.0, 'fact': 1.0, 'save': 1.0, 'milk': 13.0, 'just': 2.0, 'diapers': 1.0, 'are': 1.0, 'first': 2.0, 'saver': 6.0, 'i': 32.0, 'know': 1.0, 'however': 2.0, 'easy': 1.0, 'found': 1.0, 'laying': 1.0, 'perfect': 1.0, 'larger': 1.0, 'feel': 1.0, 'mom': 1.0, 'explain': 1.0, 'than': 2.0, 'breast': 1.0, 'easily': 1.0, 'that': 11.0, 'thrilled': 2.0, 'because': 3.0, 'forgot': 1.0, 'having': 1.0, 'but': 4.0, 'so': 2.0, 'can': 3.0, 'those': 1.0, 'inside': 1.0, 't': 2.0, 'fit': 1.0, 'product': 3.0, '10': 1.0, 'for': 4.0, 'drippy': 1.0, 'talk': 1.0, 'non': 1.0, 'feeding': 3.0, 'day': 2.0, 'etc': 1.0, 'short': 2.0, 'have': 1.0, 'breastfeeding': 1.0, 'pumping': 1.0, 'extra': 2.0, 'be': 3.0, 'thought': 2.0, 'it': 12.0, 'him': 5.0, 'couch': 1.0, 'again': 2.0, 'clean': 1.0, 'put': 1.0, 'do': 3.0, 'too': 2.0, 'one': 3.0, 'try': 2.0, 'want': 1.0, 'using': 2.0, 'this': 4.0, 'bottle': 2.0, 'could': 1.0, 'will': 2.0, 'feed': 1.0, 'took': 2.0, 'even': 1.0, 'min': 1.0, 'pull': 1.0, 'am': 3.0, 'innovative': 1.0, 'main': 1.0, 'regularly': 1.0, 'during': 1.0, 'drawaback': 1.0, 'overall': 2.0, 'nurse': 1.0}
Word element => {'used': 1.0, 'run': 1.0, 'home': 1.0, 'still': 1.0, 'oppinion': 1.0, 'my': 2.0, 'high': 1.0, 'the': 5.0, 'i': 1.0, 'at': 1.0, 'bigger': 1.0, 'designed': 1.0, 'smaller': 1.0, 'time': 1.0, 'shells': 2.0, 'price': 1.0, 'feeding': 1.0, 'in': 1.0, 'one': 1.0, 'use': 1.0, 'breast': 1.0, 'cheaper': 1.0, 'over': 1.0, 'work': 1.0, 'but': 1.0, 'than': 1.0, 'what': 1.0, 'thought': 1.0, 'that': 1.0, 'she': 1.0, 'it': 2.0, 'works': 2.0, 'only': 1.0, 'is': 4.0, 'knowing': 1.0, 'need': 1.0, 'collect': 1.0, 'you': 1.0, 'way': 1.0, 'while': 2.0, 'wife': 1.0, 'a': 2.0, 'milk': 1.0, 'and': 4.0, 'phillips': 2.0, 'comfort': 2.0, 'on': 1.0, 'brest': 1.0, 'are': 1.0, 'same': 1.0, 'to': 1.0, 'as': 1.0, 'all': 1.0, 'good': 1.0, 'for': 1.0, 'product': 1.0}
Word element => {'her': 1.0, 'forward': 1.0, 'to': 1.0, 'complements': 1.0, 'this': 1.0, 'loves': 1.0, 'necklace': 1.0, 'telling': 1.0, 'looking': 1.0, 'can': 1.0, 'love': 1.0, 'for': 2.0, 'getting': 1.0, 'gotten': 1.0, 'and': 1.0, 'several': 1.0, 'my': 1.0, 'people': 1.0, 'daughter': 1.0, 'where': 1.0, 'they': 1.0, 'more': 1.0, 'these': 1.0, 'i': 3.0, 'buy': 1.0, 'their': 1.0, 'have': 1.0, 'babies': 1.0, 'am': 1.0}
Word element => {'pinch': 1.0, 'a': 1.0, 'in': 1.0, 'it': 2.0, 'great': 1.0, 'can': 1.0, 'is': 1.0, 'something': 1.0, 'that': 1.0, 'you': 1.0, 'moms': 1.0, 'natural': 1.0, 'nice': 1.0, 'smooth': 1.0, 'pleasant': 1.0, 'taste': 1.0, 'soft': 1.0, 'wood': 1.0, 'would': 1.0, 'reccomend': 1.0, 'to': 1.0, 'be': 1.0, 'have': 1.0, 'all': 1.0, 'teether': 1.0, 'worn': 1.0, 'as': 1.0, 'so': 1.0}
Word element => {'little': 1.0, 'needs': 1.0, 'continue': 1.0, 'will': 2.0, 'part': 1.0, 'best': 1.0, 'quite': 1.0, 'out': 1.0, 'time': 2.0, 'occupy': 1.0, 'can': 1.0, 'so': 1.0, 'loves': 1.0, 'which': 1.0, 'repeatedly': 1.0, 'day': 1.0, 'hours': 1.0, '24': 1.0, 'silhouette': 1.0, 'or': 1.0, 'toothmarks': 1.0, 'large': 1.0, 'great': 2.0, 'size': 1.0, 'especially': 2.0, 'his': 1.0, 'finish': 1.0, 'very': 2.0, 'too': 2.0, 'happy': 1.0, 'makes': 1.0, 'barin': 1.0, 'small': 1.0, 'a': 8.0, 'pot': 1.0, 'pendant': 6.0, 'in': 1.0, 'bird': 2.0, 'across': 1.0, 'and': 5.0, 'chew': 1.0, 'teether': 2.0, 'holds': 1.0, 'chewing': 1.0, 'nurses': 1.0, 'rubber': 1.0, 'pretty': 1.0, 'to': 5.0, 'annoying': 1.0, 'as': 1.0, 'lovely': 1.0, 'wooden': 3.0, 'plastic': 1.0, 'was': 1.0, 'snapping': 1.0, 'filled': 1.0, 'boiling': 1.0, 'been': 1.0, 'he': 3.0, 'jewelry': 1.0, 'i': 11.0, 'because': 1.0, 'that': 2.0, 'silicone': 2.0, 'instead': 1.0, 'even': 2.0, 'not': 3.0, 'while': 2.0, 'wood': 2.0, 'really': 2.0, 'from': 1.0, 'after': 1.0, 'conventional': 1.0, 'fluid': 1.0, 'decided': 2.0, 'bra': 1.0, 'selling': 1.0, 'son': 4.0, 'came': 1.0, 'teething': 2.0, 'is': 6.0, 'look': 2.0, 'me': 2.0, 'my': 5.0, 'pacifier': 1.0, 'nursing': 1.0, 'soffee': 1.0, 'stylish': 1.0, 'toys': 5.0, 'remond': 1.0, 'loved': 1.0, 'we': 1.0, 'then': 1.0, 'highly': 1.0, 'few': 1.0, 'this': 4.0, 'curious': 1.0, 'for': 2.0, 't': 1.0, 'famous': 1.0, 'water': 1.0, 'wear': 2.0, 'it': 10.0, 'him': 2.0, 's': 1.0, 'giving': 1.0, 'alder': 1.0, 'they': 2.0, 'edges': 1.0, 'treated': 1.0, 'smooth': 1.0, 'with': 3.0, 'anything': 1.0, 'gotten': 1.0, 'no': 3.0, 'about': 2.0, 'noticed': 1.0, 'on': 5.0, 'fillers': 1.0, 'cute': 1.0, 'are': 3.0, 'working': 1.0, 'hated': 1.0, 'lacquer': 1.0, 'recommend': 2.0, 'minutes': 1.0, 'disinfecting': 1.0, 'beads': 1.0, 'their': 1.0, 'longer': 1.0, 'the': 11.0, 'of': 4.0, '2': 1.0, 'before': 1.0, 'always': 2.0, 'has': 1.0, 'solution': 1.0, 'them': 1.0, 'baby': 1.0, 'compliments': 1.0, 'giraffe': 1.0, 'just': 1.0, 'you': 1.0, 'am': 1.0, 'would': 2.0, 'get': 2.0, 'disinfect': 1.0, 'any': 1.0, 'mom': 1.0, 'have': 2.0, 'doesn': 1.0, 'everyone': 1.0, 'seller': 1.0, 'now': 1.0, 'seemed': 1.0, 'like': 3.0, 'an': 1.0, 'ideal': 1.0}
Word element => {'my': 1.0, 'better': 1.0, 'regular': 1.0, 'too': 1.0, 'jewelry': 1.0, 'cute': 1.0, 's': 1.0, 'chewing': 1.0, 'and': 1.0, 'infant': 1.0, 'than': 1.0, 'while': 1.0, 'everyday': 1.0, 'i': 1.0, 'to': 1.0, 'on': 2.0, 'loves': 1.0, 'this': 1.0, 'm': 1.0, 'holding': 1.0, 'it': 1.0, 'teeth': 1.0, 'him': 2.0}
Word element => {'though': 1.0, 'babies': 1.0, 'might': 1.0, 'other': 1.0, 'some': 1.0, 'doesnt': 1.0, 'son': 1.0, 'on': 1.0, 'with': 1.0, 'instead': 1.0, 'traditional': 1.0, 'like': 2.0, 'teether': 1.0, 'wasted': 1.0, 'it': 2.0, 'money': 1.0, 'went': 1.0, 'a': 1.0}
Word element => {'wear': 1.0, 'be': 1.0, 'to': 2.0, 'useful': 1.0, 'necklaces': 1.0, 'nursing': 1.0, 'and': 3.0, 've': 1.0, 'other': 1.0, 'loves': 1.0, 'necklace': 1.0, 'this': 2.0, 'it': 2.0, 'found': 1.0, 'i': 3.0, 'love': 2.0, 'one': 1.0, 'bulky': 1.0, 'but': 1.0, 'is': 1.0, 'big': 1.0, 'son': 1.0, 'sophisticated': 1.0, 'my': 1.0}
Word element => {'wood': 1.0, 'lap': 1.0, 'in': 1.0, 'he': 2.0, 'this': 2.0, 'it': 2.0, 'baby': 1.0, 'don': 1.0, 'about': 1.0, 'just': 1.0, 'necklaces': 1.0, 'parts': 1.0, 'is': 2.0, 'really': 1.0, 'on': 2.0, 'or': 3.0, 'loves': 2.0, 'i': 4.0, 'bought': 1.0, 'my': 3.0, 'chewing': 1.0, 'when': 1.0, 'finish': 1.0, 'and': 2.0, 'raw': 1.0, 'do': 1.0, 'to': 2.0, 'brushing': 1.0, 'wear': 1.0, 'because': 2.0, 'playing': 1.0, 'the': 1.0, 'oil': 1.0, 'small': 1.0, 'have': 1.0, 'worry': 1.0, 'being': 1.0, 'safe': 1.0, 'some': 1.0, 't': 1.0, 'we': 1.0, 'love': 1.0, 'necklace': 1.0, 'olive': 1.0, 'sitting': 1.0, 'but': 1.0, 'something': 1.0, 'would': 1.0, 'recommend': 1.0, 'nurse': 1.0, 'occasionally': 1.0}
Word element => {'who': 1.0, 'especially': 1.0, 'ones': 1.0, 'those': 2.0, 'problems': 1.0, 'off': 1.0, 'also': 1.0, 'have': 1.0, 'small': 1.0, 'had': 2.0, 'issues': 1.0, 'teething': 1.0, 'fine': 1.0, 'everything': 1.0, 'wear': 1.0, 'heal': 1.0, 'would': 1.0, 'letting': 1.0, 'recommend': 1.0, 'scraped': 1.0, 'was': 1.0, 'minutes': 1.0, 'for': 3.0, 'rash': 2.0, 'slight': 1.0, 'cause': 1.0, 'cord': 1.0, 'nothing': 1.0, 'couple': 2.0, 'wasn': 1.0, 'splinters': 1.0, 'little': 2.0, 'were': 1.0, 'more': 3.0, 'playing': 1.0, 'the': 6.0, 'my': 2.0, 'ergo': 1.0, 'polished': 1.0, 'no': 2.0, 'beveled': 1.0, 'goes': 1.0, 'smooth': 1.0, 'shiny': 1.0, 'major': 1.0, 'with': 3.0, 'it': 4.0, 'he': 1.0, 'picture': 1.0, 'boiling': 1.0, 'or': 2.0, 'quite': 1.0, 'that': 1.0, 'loves': 1.0, 'and': 4.0, 'definitely': 1.0, 'days': 1.0, 'shown': 1.0, 'in': 2.0, 'pendant': 1.0, 'after': 1.0, 'holding': 1.0, 'them': 1.0, 'baby': 2.0, 'diaper': 1.0, 'chewing': 1.0, 'on': 1.0, 'through': 1.0, 'whether': 1.0, 'hole': 1.0, 'a': 5.0, 't': 1.0, 's': 1.0, 'i': 3.0, '34': 2.0, 'm': 2.0, 'few': 1.0, 'just': 1.0, 'trying': 1.0, 'him': 1.0, 'any': 1.0, 'as': 2.0, 'to': 1.0, 'but': 3.0, 'change': 1.0, 'edges': 1.0, 'his': 1.0, 'did': 1.0}
Word element => {'teether': 1.0, 'was': 1.0, 'when': 1.0, 'surprised': 1.0, 'were': 1.0, 'story': 1.0, 'like': 1.0, 'they': 2.0, 'me': 1.0, 'tell': 1.0, 'so': 1.0, 'people': 1.0, 'suddenly': 1.0, 'old': 1.0, 'two': 1.0, 'i': 6.0, 'pick': 1.0, 'likes': 2.0, 'far': 1.0, 'then': 1.0, 'feel': 1.0, '9': 1.0, '34': 2.0, 'm': 1.0, 'attached': 1.0, 'wearing': 1.0, 'but': 1.0, 'put': 1.0, 'on': 2.0, 'forget': 1.0, 'this': 1.0, 'found': 1.0, 'said': 1.0, 'pendant': 1.0, 'in': 1.0, 've': 1.0, 'my': 3.0, 'pull': 1.0, 'baby': 1.0, 'morning': 1.0, 'that': 2.0, 'up': 1.0, 'asking': 1.0, 'and': 3.0, 'the': 6.0, 'basically': 1.0, 'at': 1.0, 'neck': 1.0, 'wait': 1.0, 'much': 1.0, 'month': 1.0, 'it': 4.0, 'she': 3.0, 'a': 2.0, 's': 2.0, 'necklace': 2.0, 'okay': 1.0, 'just': 2.0, 'for': 1.0, 'actually': 1.0, 'string': 1.0, 'had': 1.0, 'to': 1.0, 'as': 2.0, 'bird': 2.0}
Word element => {'ordered': 1.0, 'is': 1.0, 'chance': 1.0, 'gotten': 1.0, 'get': 1.0, 'or': 1.0, '35': 1.0, 'minimum': 1.0, 'had': 1.0, 'order': 2.0, 'amazon': 1.0, 'do': 1.0, 'only': 1.0, 'but': 2.0, 'did': 1.0, 'off': 1.0, 'different': 1.0, 'good': 1.0, 'frustrated': 1.0, 'it': 5.0, 'cord': 1.0, 'for': 1.0, 'where': 1.0, 'the': 6.0, 'and': 4.0, 'drilled': 1.0, 'in': 2.0, 'pendant': 1.0, 'i': 7.0, 'wood': 2.0, 'mouth': 1.0, 'received': 1.0, 'bummed': 1.0, 'on': 2.0, 'give': 2.0, 'not': 4.0, 'was': 7.0, 'chipped': 1.0, 'another': 2.0, 'company': 1.0, 'my': 1.0, 'shipping': 1.0, 'pay': 1.0, 'son': 1.0, 'splintering': 1.0, 'replacement': 2.0, 'to': 6.0, 'as': 3.0, 'any': 1.0, 'cute': 1.0, 'amount': 1.0, 'his': 1.0, 'of': 2.0, 'instead': 1.0, 'there': 1.0, 'chewing': 1.0, 'super': 2.0, 'new': 1.0, 'nose': 1.0, 'would': 3.0, 'prime': 1.0, 'coming': 1.0, 'contacted': 1.0, 'have': 5.0, 'one': 2.0, 'resulted': 1.0, 'return': 2.0, 'hole': 1.0, 'a': 6.0, 'told': 1.0, 'that': 1.0, 'option': 2.0}
Word element => {'teether': 1.0, 'going': 1.0, 'recommend': 1.0, 'i': 1.0, 'shape': 1.0, 'just': 1.0, 'angles': 1.0, 'for': 1.0, 'most': 1.0, 'another': 1.0, 'money': 1.0, '9': 1.0, 'of': 2.0, 'a': 5.0, 'wood': 1.0, 'string': 1.0, 'doesn': 1.0, 'really': 1.0, 'is': 1.0, 'waste': 1.0, 'piece': 1.0, 'on': 1.0, 'with': 1.0, 'it': 1.0, 'this': 1.0, 't': 1.0, 'wavy': 1.0, 'look': 1.0, 'rough': 1.0, 'like': 1.0, 'bird': 1.0, 'big': 1.0, 'from': 1.0}
Word element => {'a': 1.0, 'it': 1.0, 'and': 1.0, 'he': 1.0, 'has': 1.0, 'play': 1.0, 'loves': 1.0, 'this': 1.0, 'saved': 1.0, 'chew': 1.0, 'occasions': 1.0, 'me': 1.0, 'my': 1.0, 'several': 1.0, 'from': 1.0, 'on': 2.0, 'shaving': 1.0, 'off': 1.0, 'to': 1.0, 'head': 1.0}
Word element => {'company': 1.0, 'same': 1.0, 'necklace': 1.0, 'wooden': 1.0, 'chew': 1.0, 'to': 1.0, 'didn': 1.0, 'my': 1.0, 'thick': 1.0, 'daughter': 1.0, 'too': 1.0, 'much': 1.0, 'bit': 1.0, 'a': 1.0, 'and': 3.0, 'like': 2.0, 'of': 1.0, 'that': 1.0, 'love': 1.0, 'this': 1.0, 'it': 3.0, 't': 1.0, 'the': 4.0, 'item': 1.0, 'on': 1.0, 'clips': 1.0, 'i': 2.0, 'as': 2.0, 'from': 2.0, 'wood': 2.0, 'is': 1.0, 'really': 1.0, 'want': 1.0, 'onto': 1.0, 'bird': 1.0, 'made': 1.0, 'wherever': 1.0, 'child': 1.0, 'however': 1.0, 'ie': 1.0, 's': 2.0, 'jacket': 1.0, 'quality': 1.0, 'stroller': 1.0}
Word element => {'are': 1.0, 'they': 1.0, 'know': 1.0, 'don': 1.0, 'or': 1.0, 'girls': 1.0, 'and': 1.0, 'what': 1.0, 'both': 1.0, 'use': 1.0, 'to': 1.0, 'fabric': 1.0, 'set': 1.0, 'of': 1.0, 'decor': 1.0, 'sheet': 1.0, 'cheap': 1.0, 'a': 2.0, 'want': 1.0, 'is': 2.0, 'but': 1.0, 'quality': 1.0, 'it': 3.0, 't': 1.0, 'the': 2.0, 'great': 1.0, 'having': 1.0, 'seems': 1.0, 'pretty': 1.0, 'neutral': 1.0, 'gender': 1.0, 'cute': 1.0, 'theme': 1.0, 'for': 2.0, 'those': 2.0, 'boys': 1.0, 'who': 2.0}
Word element => {'to': 1.0, 'gift': 1.0, 'baby': 1.0, 'give': 1.0, 'perfect': 1.0, 'it': 1.0, 'were': 1.0, 'this': 1.0, 's': 1.0, 'swaddle': 1.0, 'babies': 1.0, 'blanket': 1.0, 'was': 1.0, 'mine': 1.0, 'when': 1.0, 'a': 1.0, 'favorite': 1.0, 'girls': 1.0, 'of': 1.0, 'the': 1.0, 'my': 1.0}
Word element => {'blankie': 1.0, 'swaddled': 1.0, 'these': 1.0, 'up': 1.0, 'll': 1.0, 'cute': 1.0, 'robust': 1.0, 'is': 1.0, 'more': 1.0, 'aden': 1.0, 'little': 1.0, 'angel': 1.0, 'her': 3.0, 'get': 1.0, 'end': 1.0, 'do': 1.0, 'bigger': 1.0, 'since': 3.0, 'pulled': 1.0, 'swaddle': 4.0, 'bit': 1.0, 'so': 2.0, 'second': 1.0, 'super': 1.0, 'would': 1.0, 'another': 1.0, 'my': 1.0, 'daughter': 1.0, 'seems': 1.0, 'slept': 1.0, 'absolutely': 1.0, 'buying': 1.0, 'with': 2.0, 'this': 4.0, 'she': 4.0, 'it': 3.0, '2': 1.0, 'the': 2.0, 'have': 1.0, 'worn': 1.0, 'almost': 1.0, 'blanket': 2.0, 'loves': 1.0, 'box': 1.0, 'probably': 1.0, 'nothing': 1.0, 'like': 1.0, 'two': 1.0, 'i': 4.0, 'night': 1.0, 'old': 1.0, 'every': 2.0, 'wants': 1.0, 'was': 1.0, 'to': 2.0, 'too': 1.0, 'pattern': 1.0, 'and': 3.0, 'starting': 1.0, 'dear': 1.0, 'out': 1.0, 'of': 2.0, 'bought': 1.0, 'one': 1.0, 'anais': 1.0, 'because': 1.0, 'a': 2.0, 's': 2.0}
Word element => {'hope': 1.0, 'three': 1.0, 'adore': 1.0, 'us': 1.0, 'improvement': 1.0, 'array': 1.0, 'keeps': 1.0, 'mom': 1.0, 'mommy': 1.0, '34': 2.0, 'just': 2.0, 'expanding': 1.0, 'see': 2.0, 'really': 1.0, 'could': 1.0, 'soon': 1.0, 'there': 1.0, 'wish': 1.0, 'abstract': 1.0, 'prefer': 1.0, 'criticism': 1.0, 'over': 1.0, 'functionality': 1.0, 'find': 1.0, 'subtle': 1.0, 'constructive': 1.0, '1': 1.0, 'wonderful': 1.0, 'number': 1.0, 'm': 1.0, 'in': 1.0, 'recommend': 1.0, 'do': 2.0, 'loves': 1.0, 'malleable': 1.0, 'brilliantly': 1.0, 'soft': 1.0, 'solid': 1.0, 'yet': 1.0, 'newborn': 1.0, 'customer': 1.0, 'quality': 1.0, 'highly': 1.0, 'this': 8.0, 'manufacturer': 1.0, 'hand': 1.0, 'which': 1.0, 'same': 1.0, 'than': 1.0, 'apart': 1.0, 'style': 1.0, 'gives': 1.0, 'past': 1.0, 'but': 1.0, 'addition': 1.0, 'from': 2.0, 'compared': 1.0, 'swaddler': 1.0, 'settle': 1.0, 'time': 1.0, 'can': 1.0, 'so': 5.0, 'design': 1.0, 'we': 2.0, 't': 2.0, 'a': 5.0, 's': 2.0, 'third': 1.0, 'out': 1.0, 'product': 1.0, 'child': 1.0, 'kid': 1.0, 'impressed': 2.0, 'on': 1.0, 'taking': 1.0, '3': 1.0, 'and': 11.0, 'now': 2.0, 'attract': 1.0, 'away': 1.0, 'selection': 1.0, 'was': 2.0, 'to': 8.0, 'our': 4.0, 'an': 1.0, 'ever': 1.0, 'all': 2.0, 'as': 2.0, 'wanted': 1.0, 'brand': 2.0, 'however': 1.0, 'found': 1.0, 'branch': 1.0, 'of': 4.0, 'the': 9.0, 'more': 8.0, 'patterns': 3.0, 'is': 8.0, 'submit': 1.0, 'wise': 1.0, 'weren': 1.0, 'plenty': 1.0, 'allows': 1.0, 'with': 2.0, 'after': 1.0, 'wider': 1.0, 'excited': 1.0, 'rewraps': 1.0, 'frustrating': 1.0, 'have': 2.0, 'i': 13.0, 'well': 1.0, 'tad': 1.0, 'favorite': 1.0, 'whose': 1.0, 'turned': 1.0, 'down': 1.0, 'thing': 1.0, 'because': 1.0, 'that': 8.0, 'it': 5.0, 'sets': 1.0, 'swaddled': 2.0, 'for': 3.0, 'squirming': 1.0, 'me': 1.0, 'my': 2.0, 'got': 1.0, 'typically': 1.0, 'daughter': 2.0, 'sophisticated': 1.0, 'months': 1.0, 'pattern': 1.0, 'lot': 1.0, 'ones': 1.0, 'one': 3.0, 'free': 1.0, 'stronger': 1.0, 'material': 1.0, 'only': 1.0, 'tailored': 1.0, 'wiggle': 1.0, 'right': 1.0, 'her': 1.0, 'chance': 1.0, 'am': 2.0, 'relax': 1.0, 'immediately': 1.0, 'base': 1.0, 'instead': 1.0, 'still': 1.0, 'course': 1.0, 'others': 2.0, 'she': 2.0, 'many': 1.0, 'themed': 1.0, 'some': 2.0, 'when': 1.0, 'what': 1.0, 'delightful': 1.0, 'traction': 1.0, 'lovely': 1.0, 'growing': 2.0}
Word element => {'print': 1.0, 'large': 1.0, 'in': 1.0, 'every': 1.0, 'use': 1.0, 'i': 2.0, 'for': 1.0, 'one': 1.0, 'them': 1.0, 'blankets': 1.0, 'and': 1.0, 'of': 1.0, 'up': 1.0, 'my': 1.0, 'are': 1.0, 'everything': 1.0, 'favorite': 1.0, 'hold': 1.0, 'these': 1.0, 'lightweight': 1.0, 'great': 1.0, 'through': 1.0, 'tons': 1.0, 'washing': 1.0, 'have': 1.0}
Word element => {'prints': 1.0, 'more': 1.0, 'be': 1.0, 'definitely': 1.0, 'with': 1.0, 'issue': 1.0, 'previously': 1.0, 'smells': 1.0, 'no': 1.0, 'so': 1.0, 'inside': 1.0, 'chemically': 1.0, 'bag': 1.0, 'was': 3.0, 'as': 1.0, 'to': 1.0, 'although': 1.0, 'packaged': 1.0, 'isn': 1.0, 'box': 1.0, 'that': 1.0, 'did': 1.0, 'pretty': 1.0, 'an': 1.0, 'finally': 1.0, 'other': 2.0, 'out': 1.0, 'deciding': 1.0, 'swaddling': 1.0, 'soft': 1.0, 'in': 4.0, 'will': 1.0, 'also': 1.0, 'muslin': 1.0, 'of': 2.0, 'there': 2.0, 'i': 7.0, 'brand': 2.0, 'glad': 1.0, 'purchasing': 1.0, 'result': 1.0, 'haven': 1.0, 'reviews': 1.0, 'are': 1.0, 'the': 5.0, 'had': 1.0, 'ship': 1.0, 'dear': 2.0, 'washed': 1.0, 'on': 2.0, 'm': 1.0, 'both': 1.0, 'used': 1.0, 'before': 1.0, 'popular': 1.0, 'it': 6.0, 'first': 1.0, 'a': 2.0, 't': 2.0, 's': 1.0, 'read': 2.0, 'angel': 2.0, 'very': 3.0, 'ikat': 1.0, 'blankets': 1.0, 'but': 1.0, 'quality': 1.0, 'print': 1.0, 'by': 1.0, 'just': 1.0, 'impressions': 1.0, 'plastic': 2.0, 'received': 1.0, 'different': 1.0, 'good': 1.0, 'or': 1.0, 'yet': 1.0, 'manufacturer': 1.0, 'like': 2.0}
Word element => {'parent': 1.0, 'child': 1.0, 'every': 1.0, 'helpful': 1.0, 'purposes': 1.0, 'nursing': 1.0, 'what': 1.0, 'about': 1.0, 'almost': 1.0, 'pop': 1.0, 'costs': 1.0, 'satisfied': 1.0, 'very': 1.0, 'flow': 1.0, 'will': 1.0, 'orthodontic': 1.0, 'upside': 1.0, 'held': 1.0, 'floor': 1.0, 'drops': 1.0, 'survived': 1.0, 'has': 1.0, 'sturdy': 1.0, 'expected': 1.0, 'proof': 1.0, 'spill': 1.0, 'minor': 1.0, 'most': 1.0, 'different': 1.0, 'not': 4.0, 'enough': 1.0, 'sometimes': 1.0, 'freaking': 1.0, 'pinch': 1.0, 'teaching': 1.0, 'do': 2.0, 'between': 1.0, 'release': 1.0, 'once': 1.0, 'continue': 1.0, 'mistake': 1.0, 'down': 1.0, 'last': 1.0, 'went': 1.0, 'those': 1.0, 'impossible': 1.0, 'success': 1.0, 'bucks': 2.0, 'you': 1.0, 'lots': 1.0, 'picked': 2.0, 'getting': 1.0, 'under': 1.0, 'overall': 1.0, 'issue': 1.0, 'let': 1.0, 'they': 2.0, 'owl': 1.0, 'an': 2.0, 'other': 2.0, 'this': 3.0, 'store': 2.0, 'task': 1.0, 'bullseye': 1.0, 'ahem': 1.0, 'on': 3.0, 'think': 1.0, 'open': 2.0, 'hard': 1.0, 'special': 1.0, 'keep': 1.0, 'round': 1.0, 'builds': 1.0, 'like': 1.0, 'didn': 2.0, 'but': 5.0, 'bottle': 1.0, 'days': 1.0, 'soft': 2.0, 'toddler': 1.0, 'such': 1.0, 'price': 2.0, 'elmo': 2.0, 'actively': 1.0, 'straw': 11.0, 'sucks': 1.0, 'onto': 2.0, 'focused': 1.0, 'or': 3.0, 'totally': 1.0, 'them': 2.0, 'baby': 6.0, 'sippy': 3.0, 'up': 4.0, 'valve': 2.0, 'plenty': 1.0, 'with': 4.0, 'especially': 1.0, 'use': 1.0, 'never': 1.0, 'gentle': 1.0, 'some': 1.0, 'determined': 1.0, 'slightly': 1.0, 'me': 2.0, 'drink': 3.0, 'than': 3.0, 'going': 1.0, 'end': 1.0, 'apart': 1.0, 'all': 2.0, 'way': 1.0, 'because': 1.0, 'that': 8.0, 'making': 1.0, 'easily': 1.0, 'couple': 1.0, 'work': 1.0, 'left': 1.0, 'inconvenience': 1.0, 'able': 1.0, 'get': 1.0, 'wood': 1.0, 'months': 1.0, 'trouble': 1.0, 'had': 5.0, 'additionally': 1.0, 'now': 3.0, 'air': 1.0, 'tools': 1.0, 'while': 1.0, 'from': 4.0, 'the': 29.0, 'year': 3.0, 'various': 1.0, 'found': 1.0, 'have': 7.0, 'staying': 1.0, 'nearly': 1.0, 'decided': 1.0, 'used': 1.0, 'home': 1.0, 't': 7.0, 'we': 4.0, 'a': 9.0, 'cup': 5.0, 'cups': 8.0, 'one': 4.0, '74': 1.0, 'luxury': 1.0, 'longer': 1.0, 'removable': 1.0, 'any': 2.0, 'pretty': 2.0, 'when': 4.0, 'weaned': 2.0, 'so': 3.0, 'd': 1.0, 'something': 1.0, 'buy': 1.0, 'three': 3.0, 'back': 1.0, 'breastfed': 1.0, 'at': 5.0, 'can': 1.0, 'is': 9.0, 'week': 1.0, 'ago': 1.0, 'two': 2.0, 'little': 3.0, 'more': 2.0, 'pros': 1.0, 'releases': 2.0, 'mouth': 2.0, 'put': 2.0, 'his': 2.0, 'it': 14.0, 'be': 2.0, 'lips': 1.0, 'which': 2.0, 'for': 5.0, 'guess': 1.0, 'version': 1.0, 'isn': 2.0, 'super': 1.0, 'don': 2.0, 'pay': 1.0, 'far': 1.0, 'unlike': 2.0, 'in': 4.0, 'temperature': 1.0, 'less': 1.0, 'whole': 1.0, 'as': 2.0, 'shape': 1.0, 'm': 2.0, 's': 10.0, 'doesn': 1.0, 'suck': 1.0, 'ditch': 1.0, 'where': 1.0, 'day': 1.0, 'reassembles': 1.0, 'brands': 1.0, 'old': 2.0, 'of': 9.0, 'even': 2.0, 'liquid': 2.0, 'prefer': 2.0, 'better': 1.0, 'against': 1.0, 'comes': 2.0, 'my': 8.0, 'are': 3.0, 'room': 1.0, 'cleaning': 2.0, 'i': 23.0, 'simple': 1.0, 'no': 3.0, 'completely': 1.0, 'nooks': 1.0, 'over': 1.0, 'brushes': 1.0, 'needed': 1.0, 'table': 1.0, 'if': 2.0, 'mentioned': 1.0, 'handles': 2.0, 'cons': 1.0, 'holds': 1.0, 'did': 1.0, 'top': 3.0, 'unscrew': 2.0, 'time': 1.0, 'allow': 1.0, 'drinking': 2.0, 'spills': 1.0, 'pushed': 1.0, 'to': 17.0, 'right': 1.0, 'cold': 1.0, 'within': 1.0, 'milk': 2.0, 'and': 15.0, 'just': 3.0, 'need': 3.0, 'sitting': 1.0, 'conditioning': 1.0, 'degrees': 1.0, 'him': 2.0, 'he': 7.0, 'pressure': 4.0, 'out': 4.0, 'then': 1.0, 'minute': 1.0, 'only': 2.0, 'unscrewing': 1.0, 'breastfeeding': 1.0, 'lid': 1.0, 'give': 1.0, 'times': 1.0, 'unscrewed': 1.0}
Word element => {'this': 1.0, 'rare': 1.0, 'which': 1.0, 'carry': 1.0, 'front': 1.0, 'low': 1.0, 'be': 1.0, 'would': 2.0, 'ergo': 1.0, 'tried': 1.0, 'perfectly': 1.0, 'size': 1.0, 'with': 1.0, 'pleased': 1.0, 'very': 2.0, 'that': 1.0, 'am': 2.0, 'months': 1.0, 'fell': 1.0, 'it': 3.0, 'he': 1.0, '9': 1.0, 'at': 3.0, 'his': 2.0, '14': 1.0, 'does': 1.0, 'for': 3.0, 'structured': 1.0, 'sling': 1.0, 'in': 2.0, 'age': 1.0, 'quality': 1.0, 'baby': 4.0, 'big': 1.0, 'really': 2.0, 'i': 5.0, 'babyktan': 1.0, 'have': 1.0, 'but': 2.0, 'work': 1.0, 'kg': 1.0, 'us': 1.0, 'fits': 1.0, 'my': 3.0, 'happy': 1.0, 'currently': 1.0, 'asleep': 1.0, 'the': 5.0, 'just': 1.0, 'not': 2.0, 'friends': 1.0, 'supported': 1.0, 'so': 2.0, 'recommend': 1.0, 'was': 2.0, 'our': 1.0, 'any': 1.0, 'as': 2.0, 'to': 2.0, 'definitely': 1.0, 'looking': 1.0, 'other': 1.0, 'a': 1.0, 'we': 2.0, 'options': 1.0, 'fabric': 1.0, 'good': 1.0, 'carriers': 1.0, 'got': 1.0, 'back': 2.0, 'carrier': 2.0, 'yesterday': 1.0, 'is': 4.0, 'more': 2.0, 'say': 1.0, 'too': 1.0, 'and': 2.0}
Word element => {'position': 1.0, 'right': 1.0, 'in': 1.0, 'puts': 1.0, 'end': 1.0, 'rear': 1.0, 'towel': 1.0, 'hand': 1.0, 'up': 1.0, 'under': 1.0, 'rolled': 1.0, 'the': 2.0, 'buy': 1.0, 'also': 1.0, 'months': 1.0, 'uses': 1.0, 'guy': 1.0, 'about': 1.0, 'daughter': 1.0, 'us': 1.0, 'and': 5.0, 'husband': 1.0, 'infant': 1.0, 'week': 1.0, 'this': 2.0, 'it': 2.0, 'with': 1.0, 'carrier': 2.0, '10': 1.0, 'is': 2.0, 'well': 1.0, 'least': 1.0, 'at': 1.0, 'bigger': 1.0, 'two': 1.0, 'i': 3.0, 'just': 1.0, 'use': 1.0, 'fantastic': 1.0, 'times': 1.0, 'her': 3.0, 'five': 1.0, '5': 1.0, 'm': 1.0, 'both': 1.0, '34': 2.0, 'he': 1.0, '6': 1.0, 'of': 1.0, 'really': 1.0, 'plenty': 1.0, '2': 1.0, 'adjustment': 1.0, 'a': 4.0, 's': 1.0, 't': 1.0, 'my': 2.0, 'fits': 1.0, 'very': 1.0, 'comfortable': 1.0, 'didn': 1.0}
Word element => {'it': 1.0, 'iphone': 1.0, 'however': 1.0, 'so': 1.0, 'pocket': 1.0, 'roomy': 1.0, 'about': 1.0, 'baby': 2.0, 'bjorn': 1.0, 'not': 1.0, 'and': 3.0, 'long': 1.0, 'hurting': 1.0, 'this': 1.0, 'with': 2.0, 'shoulders': 2.0, 'tiny': 1.0, 'do': 1.0, 'only': 1.0, 'but': 1.0, 'can': 1.0, 'advertised': 1.0, 'carrier': 1.0, 'is': 4.0, 'you': 1.0, 'are': 1.0, 'taking': 1.0, 'great': 1.0, 'the': 3.0, 'walks': 1.0, 'a': 3.0, 't': 1.0, 'if': 1.0, 'looking': 1.0, 'to': 1.0, 'was': 1.0, 'neck': 2.0, 'or': 1.0, 'etc': 1.0, 'i': 3.0, 'have': 1.0, 'also': 1.0, 'reason': 1.0, 'my': 2.0, 'your': 1.0, 'put': 1.0, 'on': 1.0, 'walk': 1.0, 'that': 3.0, 'lo': 1.0, 'breaking': 1.0, 'didn': 1.0, 'worry': 1.0, '5': 1.0, 'fit': 1.0, 'stars': 1.0, '34': 2.0}
Word element => {'difficult': 1.0, 'not': 1.0, 'they': 1.0, 'little': 1.0, 'take': 1.0, 'do': 1.0, 'buckles': 1.0, 'safety': 1.0, 'use': 1.0, 'front': 1.0, 'a': 2.0, 'straps': 1.0, 'find': 1.0, 'cross': 1.0, 'varied': 1.0, 'i': 3.0, 'old': 1.0, 'one': 1.0, 'for': 4.0, 'love': 1.0, 'comfortable': 1.0, 'after': 1.0, 'that': 1.0, 'year': 1.0, 'without': 1.0, 'the': 7.0, 'but': 1.0, 'can': 1.0, '2': 1.0, 'to': 6.0, 'loved': 1.0, 'carrier': 2.0, 'this': 1.0, 'children': 1.0, 'adjusting': 1.0, 'with': 1.0, 'my': 3.0, 'also': 1.0, 'stood': 1.0, 'in': 2.0, 'out': 1.0, 'newborn': 1.0, 'needs': 1.0, 'versatility': 1.0, 'carry': 3.0, 'ability': 1.0, 'of': 1.0, 'sizes': 1.0, 'have': 1.0, 'used': 1.0, 'best': 1.0, 'both': 1.0, 'infant': 1.0, 'insert': 1.0, 'strap': 1.0, 'are': 2.0, 'and': 2.0, 'researching': 1.0, 'easy': 1.0}
Word element => {'newborns': 1.0, 'recommend': 1.0, 'product': 1.0, 'till': 1.0, 'is': 3.0, 'wait': 2.0, 'feminine': 1.0, 't': 3.0, 'going': 1.0, 'girl': 1.0, 'wide': 1.0, 'too': 3.0, 'and': 3.0, 'would': 1.0, 'out': 1.0, 'them': 1.0, 'quality': 1.0, 'anymore': 1.0, 'doesn': 1.0, 'on': 2.0, 'put': 2.0, 'found': 1.0, 'overall': 1.0, 'insert': 2.0, 'for': 4.0, 'used': 1.0, 'meantime': 1.0, 'i': 7.0, '4': 2.0, '14lbs': 1.0, 'my': 1.0, 'baby': 1.0, 'splits': 2.0, 'she': 4.0, 'allows': 1.0, 'with': 1.0, 'almost': 1.0, 'now': 2.0, '2': 1.0, 'but': 3.0, 'so': 1.0, 'can': 1.0, 'infant': 2.0, 'said': 1.0, 'excellent': 1.0, 'about': 2.0, 'will': 1.0, 'also': 1.0, 'back': 1.0, 'carrier': 1.0, 'that': 1.0, 'position': 1.0, 'loves': 1.0, '1': 1.0, 'great': 4.0, 've': 2.0, 'down': 1.0, 'before': 1.0, 'continue': 1.0, 'its': 1.0, 'which': 1.0, 'like': 1.0, 'in': 4.0, 'm': 1.0, 'longer': 2.0, 'the': 2.0, 'wrap': 1.0, 'want': 2.0, 'outward': 1.0, 'works': 1.0, 'without': 1.0, 'moby': 1.0, 'between': 1.0, 'they': 1.0, 'dangle': 1.0, 'durable': 1.0, 'to': 5.0, 'straight': 1.0, 'versus': 1.0, 's': 1.0, 'sides': 1.0, 'when': 1.0, 'again': 1.0, 'legs': 3.0, 'months': 2.0, 'get': 1.0, 'sure': 1.0, 'little': 1.0, 'a': 3.0, 'small': 1.0, 'don': 1.0, 'her': 4.0, 'use': 1.0, 'solei': 1.0, 'this': 1.0, 'highly': 1.0, 'hubby': 1.0, 'cute': 1.0, 'it': 2.0, 'wear': 1.0, 'using': 2.0, 'looking': 1.0}
Word element => {'would': 1.0, 'allow': 1.0, 've': 1.0, 'that': 2.0, 'whisperer': 1.0, 'loves': 1.0, 'different': 1.0, 'her': 1.0, 'find': 1.0, 'isn': 1.0, 'baby': 2.0, 'she': 1.0, 'moby': 1.0, 'wrap': 1.0, 'asleep': 1.0, 'hands': 1.0, 'a': 5.0, 't': 1.0, 'carrier': 2.0, 'back': 1.0, 'needed': 1.0, 'beco': 4.0, 'have': 2.0, 'on': 4.0, 'been': 2.0, 'forth': 1.0, 'settled': 1.0, 'read': 1.0, 'i': 11.0, 'particularly': 1.0, 'boba': 1.0, 'so': 2.0, '4th': 1.0, 'after': 2.0, 'order': 1.0, 'was': 2.0, 'minutes': 1.0, 'to': 4.0, 'our': 1.0, 'little': 1.0, 'darling': 1.0, 'video': 2.0, 'review': 2.0, 'ergo': 1.0, 'and': 7.0, 'recommended': 1.0, 'love': 1.0, 'went': 1.0, 'happy': 1.0, 'me': 1.0, 'my': 2.0, 'it': 5.0, 'already': 1.0, 'wear': 1.0, 'day': 1.0, 'definitely': 1.0, 'or': 1.0, 'what': 1.0, 'when': 1.0, 'in': 3.0, 'm': 1.0, 'watched': 1.0, 'out': 1.0, 'about': 1.0, 'going': 2.0, 'done': 1.0, 'finally': 1.0, 'by': 1.0, 'chiropractor': 1.0, 'used': 1.0, 'quest': 1.0, 'got': 1.0, 'mail': 1.0, 'realized': 1.0, 'infant': 1.0, 'insert': 1.0, 'until': 1.0, 'arrived': 1.0, 'but': 1.0, 'rolled': 1.0, 'up': 1.0, 'blanket': 1.0, 'sweet': 1.0, 'fell': 1.0, 'during': 1.0, 'within': 1.0, '10': 1.0, 'being': 1.0, 'the': 8.0, 'of': 1.0, 'get': 1.0, 'able': 1.0, 'things': 1.0, 'around': 1.0, 'is': 1.0, 'both': 1.0, 'house': 1.0, 'using': 1.0}
Word element => {'gets': 1.0, 'he': 2.0, 'like': 1.0, 'as': 1.0, 'will': 1.0, 'hope': 1.0, 's': 1.0, 'doesn': 1.0, 'i': 1.0, 'comfortable': 1.0, 'but': 1.0, 'more': 1.0, 'older': 1.0, 'yet': 1.0, 'my': 1.0, 'son': 1.0, 't': 1.0, 'it': 3.0, 'love': 1.0}
Word element => {'ergonomic': 1.0, 'anything': 1.0, 'those': 1.0, 'don': 1.0, 'shoulder': 1.0, 'your': 2.0, 'help': 1.0, 'boba': 1.0, 'purse': 2.0, 'also': 1.0, 'd': 1.0, 'through': 1.0, 'things': 2.0, 'you': 1.0, 'closed': 1.0, 't': 2.0, 'be': 1.0, 'toy': 1.0, 'are': 1.0, 'would': 2.0, 'thing': 1.0, 'function': 1.0, 'only': 1.0, 'son': 1.0, '19': 1.0, 'minutes': 1.0, 'asleep': 1.0, 'falls': 1.0, 'almost': 1.0, 'strap': 1.0, 'loops': 1.0, 'loves': 2.0, 'old': 2.0, 'week': 1.0, 'seven': 1.0, 'say': 1.0, 'comfortable': 1.0, 'back': 1.0, 'most': 1.0, 's': 1.0, 'keys': 1.0, 'again': 1.0, 'car': 1.0, 'or': 1.0, 'phone': 1.0, 'cell': 1.0, 'over': 1.0, 'pacifiers': 1.0, 'just': 3.0, 'by': 1.0, 'that': 4.0, 'been': 1.0, 'recommend': 1.0, 'were': 2.0, 'daughter': 2.0, 'keep': 1.0, 'loop': 1.0, 'did': 2.0, 'getting': 1.0, 'within': 1.0, 'though': 1.0, 'issues': 1.0, 'wrap': 1.0, 'needs': 1.0, 'time': 2.0, 'moby': 3.0, 'how': 1.0, 'to': 9.0, 'purchased': 1.0, 'best': 1.0, 'years': 1.0, 'beco': 1.0, 'have': 5.0, 'it': 11.0, 'month': 1.0, 'super': 1.0, 'felt': 2.0, 'highly': 1.0, 'this': 5.0, 'great': 2.0, 'improve': 1.0, 'flaws': 1.0, 'perfect': 1.0, 'before': 2.0, 'five': 1.0, 'rings': 1.0, 'needed': 1.0, 'looking': 1.0, 'using': 1.0, 'like': 3.0, 'actual': 1.0, 'one': 2.0, 'delivers': 1.0, 'last': 1.0, 'different': 1.0, 'i': 15.0, 'tried': 1.0, 'closer': 1.0, 'types': 2.0, 'the': 20.0, 'of': 6.0, 'anyone': 1.0, 'and': 10.0, 'similar': 2.0, 'even': 2.0, 'took': 1.0, 'then': 2.0, 'many': 1.0, 'safe': 1.0, 'meet': 1.0, 'is': 3.0, 'for': 3.0, 'far': 1.0, 'love': 5.0, 'my': 7.0, 'me': 1.0, 'however': 1.0, 'easy': 2.0, 'get': 2.0, 'on': 7.0, 'much': 1.0, 'do': 2.0, 'put': 2.0, 'weren': 1.0, 'with': 4.0, 'was': 1.0, 'adjusted': 1.0, 'carry': 1.0, 'slipping': 1.0, 'could': 3.0, 'situated': 1.0, 'small': 1.0, 'a': 3.0, 'use': 2.0, 'carriers': 3.0, 'infant': 1.0, 'overall': 1.0, 'insert': 1.0, 'bigger': 1.0, 'if': 1.0, 'enjoy': 1.0, 'still': 1.0, 'takes': 1.0, 'less': 1.0, 'half': 1.0, 'had': 2.0, 'waistband': 1.0, 'sit': 1.0, 'has': 1.0, 'them': 1.0, 'always': 2.0, 'so': 1.0, 'can': 1.0, 'something': 1.0, 'straps': 2.0, 'cross': 1.0, 'they': 2.0, 'carrier': 7.0, 'pocket': 1.0, 'neck': 1.0, 'ever': 1.0, 'all': 1.0, 'other': 2.0, 'some': 1.0, 'shoulders': 2.0, 'never': 1.0, 'awesome': 1.0, 'size': 1.0}
Word element => {'you': 1.0, 'by': 1.0, 'baby': 1.0, 'yourself': 1.0, 'are': 1.0, 'the': 1.0, 'when': 1.0, 'i': 2.0, 'it': 2.0, 'like': 1.0, 'this': 1.0, 'carrier': 1.0, 'put': 1.0, 'but': 1.0, 'was': 2.0, 'in': 1.0, 'wish': 1.0, 'easier': 1.0, 'to': 1.0}
Word element => {'with': 1.0, 'do': 1.0, 'one': 1.0, 'hang': 1.0, 'get': 1.0, 'loops': 1.0, 'safety': 2.0, 'buckles': 1.0, 'or': 1.0, 'ergo': 1.0, 'over': 1.0, 'up': 1.0, 'carrier': 1.0, 'this': 1.0, 'pick': 1.0, 'me': 1.0, 'straps': 1.0, 'cross': 1.0, 'ability': 1.0, 'in': 1.0, 'keep': 1.0, 'actually': 1.0, 'for': 2.0, 'love': 2.0, 'nice': 2.0, 'iphone': 1.0, 'need': 1.0, 'wider': 1.0, 'have': 3.0, 'my': 3.0, 'the': 9.0, 'becos': 1.0, 'soleil': 1.0, 'otherwise': 1.0, 'two': 1.0, 'i': 7.0, 'makes': 1.0, 'old': 1.0, 'used': 1.0, 'hood': 1.0, 'plenty': 1.0, 'carriers': 2.0, 'including': 1.0, 'so': 1.0, 'once': 1.0, 'of': 2.0, 'and': 2.0, 'it': 3.0, 'almost': 1.0, 'year': 1.0, 'hand': 1.0, 'like': 1.0, 'pocket': 2.0, 'into': 1.0, 'that': 3.0, 'other': 2.0, 'chest': 1.0, 'strap': 1.0, 'is': 3.0, 'fixed': 1.0, 'seat': 1.0, 'to': 3.0, 'make': 1.0, 'on': 1.0, 'a': 2.0, 'runner': 1.0, 'can': 1.0, 'removable': 1.0, 'but': 1.0, 'boba': 1.0, 'also': 2.0, 'having': 1.0, 'run': 1.0, 'prefer': 1.0, 'post': 1.0, 'you': 2.0, 'seen': 1.0, 'when': 1.0, 'office': 1.0}
Word element => {'10': 1.0, 'site': 1.0, 'insert': 2.0, 'infant': 2.0, 'both': 1.0, 'dollars': 1.0, 'pack': 1.0, 'ordered': 2.0, 'because': 1.0, 'though': 1.0, 'came': 1.0, 'known': 1.0, 'have': 2.0, 'goodies': 1.0, 'of': 1.0, 'with': 3.0, 'it': 6.0, 'others': 1.0, 'would': 3.0, 'wish': 1.0, 'this': 1.0, 'pictures': 1.0, 'that': 4.0, 'thought': 1.0, 'mention': 1.0, 'today': 1.0, 'good': 1.0, 'be': 1.0, 'saved': 1.0, 'i': 8.0, 'mine': 1.0, 'yet': 1.0, 'received': 1.0, 'store': 1.0, 'doesn': 1.0, 'just': 2.0, 'not': 1.0, 'accessory': 1.0, 'bonus': 1.0, 'know': 1.0, 'and': 5.0, 'haven': 1.0, 'myself': 1.0, 'the': 8.0, 't': 3.0, 'a': 2.0, 'front': 1.0, 'hood': 3.0, 'hind': 1.0, 'comes': 2.0, 'say': 1.0, 'isn': 1.0, 'extra': 1.0, 'shown': 1.0, 'in': 2.0, 'also': 1.0, 'so': 1.0, 'did': 1.0, 'used': 1.0, 'clip': 1.0, 'carry': 1.0, 'wanted': 1.0, 'anywhere': 1.0, 'bag': 1.0, 'you': 1.0, 'but': 1.0, 'can': 1.0, 'to': 3.0, 'all': 1.0, 'sorts': 1.0}
Word element => {'winner': 1.0, 'chest': 1.0, 'back': 1.0, 'carry': 1.0, 'ability': 1.0, 'straps': 1.0, 'cross': 1.0, 'criss': 1.0, 'pictures': 1.0, 'would': 1.0, 'bright': 1.0, 'not': 1.0, 'disappointed': 2.0, 'am': 1.0, 'it': 3.0, 'with': 2.0, 'absolutely': 1.0, 'print': 1.0, 'love': 2.0, 'in': 3.0, 'beco': 2.0, 'color': 1.0, 'one': 1.0, 'great': 1.0, 'more': 1.0, 'is': 5.0, 'to': 1.0, 'all': 1.0, 'yellow': 2.0, 'soleil': 3.0, 'better': 1.0, 'like': 2.0, 'and': 2.0, 'charlie': 1.0, 'thing': 1.0, 'purse': 1.0, 'though': 1.0, 'awesome': 1.0, 'that': 3.0, 'show': 1.0, 'strap': 2.0, 'mustard': 1.0, 'so': 1.0, 'quite': 1.0, 'but': 1.0, 'adding': 1.0, 'i': 2.0, 'otherwise': 1.0, 'a': 3.0, 's': 1.0, 'make': 1.0, 'boba': 1.0, 'without': 1.0, 'the': 10.0, '3g': 1.0, 'has': 2.0, 'handy': 1.0}
Word element => {'great': 1.0, 'every': 1.0, 'then': 1.0, 'other': 1.0, 'but': 1.0, 'these': 2.0, 'don': 1.0, 'would': 1.0, 'arms': 1.0, 'thick': 1.0, 'love': 1.0, 'little': 1.0, 'very': 2.0, 'they': 2.0, 'good': 1.0, 'thats': 1.0, 'buying': 1.0, 'was': 1.0, 'yes': 1.0, 'mittens': 3.0, 'i': 4.0, 'about': 2.0, 'that': 3.0, 'has': 1.0, 'won': 1.0, 'your': 1.0, 'on': 2.0, 'ends': 1.0, 'smooth': 1.0, 'lie': 1.0, 'are': 5.0, 'iffy': 1.0, 'the': 3.0, 'soft': 1.0, 'this': 2.0, 'hard': 1.0, 'find': 1.0, 'because': 2.0, 'you': 2.0, 'get': 2.0, 'and': 1.0, 'to': 2.0, 'all': 1.0, 'in': 1.0, 'bands': 2.0, 'set': 1.0, 'colors': 1.0, 'plus': 1.0, 'of': 1.0, 't': 2.0, 'a': 2.0, 'say': 1.0, 'fall': 1.0, 'keep': 1.0, 'if': 1.0, 'eye': 1.0, 'baby': 1.0, 'them': 1.0, 'have': 2.0, 'small': 1.0, 'so': 1.0}
Word element => {'recommend': 1.0, 'definitely': 1.0, 'they': 1.0, 'and': 1.0, 'wrapped': 1.0, 'only': 1.0, 'each': 2.0, 'would': 1.0, 'warn': 1.0, 'few': 1.0, 'the': 1.0, 's': 1.0, 'you': 1.0, 'duplicate': 1.0, 're': 2.0, 'that': 1.0, 'were': 1.0, 'all': 1.0, 'individually': 1.0, 'thing': 1.0, 'i': 1.0, 'lovely': 1.0, 'about': 2.0, 'colors': 1.0, 'wanting': 1.0, 'one': 1.0, 'if': 1.0, 'there': 1.0, 'of': 1.0, 'a': 1.0, 'pair': 1.0, 'is': 1.0}
Word element => {'constantly': 1.0, 'not': 1.0, 'i': 1.0, 'the': 1.0, 'same': 1.0, 'bunch': 1.0, 'them': 1.0, 'a': 1.0, 'these': 1.0, 'matching': 1.0, 'have': 1.0, 'm': 1.0, 'nice': 1.0, 'to': 1.0, 'of': 1.0, 'stay': 1.0, 'on': 1.0, 'mitts': 2.0, 'it': 1.0, 'actually': 1.0, 's': 1.0, 'so': 2.0}
Word element => {'room': 1.0, 'plenty': 1.0, 's': 1.0, 'of': 1.0, 'there': 1.0, 'them': 1.0, 'elastic': 1.0, 'week': 1.0, 'after': 1.0, 'on': 2.0, 'rub': 1.0, 'about': 1.0, 'baby': 1.0, 'my': 1.0, 'keeps': 1.0, 'are': 1.0, 'falls': 1.0, 'mittens': 1.0, 'gerber': 1.0, 'for': 2.0, 'likes': 1.0, 'must': 1.0, 'a': 2.0, 't': 1.0, 'the': 2.0, 'these': 1.0, 'his': 2.0, 'stay': 1.0, 'who': 1.0, 'face': 1.0, 'wouldn': 1.0, 'he': 2.0, 'to': 1.0, 'asleep': 1.0, 'has': 1.0, 'when': 1.0, 'massive': 1.0, 'hands': 2.0, 'and': 2.0}
Word element => {'outfits': 1.0, 'different': 1.0, 'with': 1.0, 'and': 1.0, 'washed': 1.0, 'be': 1.0, 'can': 1.0, 'they': 2.0, 'so': 1.0, 'coordinate': 1.0, 'white': 1.0, 'keep': 1.0, 'no': 1.0, 'is': 1.0, 'his': 1.0, 'face': 1.0, 'their': 1.0, 'which': 1.0, 'mittens': 1.0, 'i': 1.0, 'serve': 1.0, 'purpose': 1.0, 'to': 1.0, 'newborn': 1.0, 'my': 1.0, 'these': 2.0, 'scratch': 1.0, 'the': 1.0, 'are': 1.0, 'son': 1.0, 'from': 1.0, 'easily': 1.0, 'like': 1.0, 'scratching': 1.0, 'fact': 1.0}
Word element => {'inches': 1.0, 'indication': 1.0, 'group': 1.0, 'appropriate': 1.0, 'they': 4.0, 'the': 1.0, 'are': 3.0, 'how': 1.0, 'should': 1.0, 'nice': 1.0, 'way': 1.0, 'in': 1.0, 'for': 1.0, 'but': 1.0, 'of': 1.0, 'some': 1.0, 'age': 1.0, 'big': 2.0, 'put': 1.0, 'too': 1.0, 'or': 1.0, 'mittens': 1.0, 'newborns': 1.0}
Word element => {'just': 1.0, 'product': 1.0, 'of': 1.0, 'wipe': 1.0, 'purpose': 1.0, 'defeating': 1.0, 'off': 2.0, 'right': 1.0, 'the': 2.0, 't': 1.0, 'his': 3.0, 'better': 1.0, 'move': 1.0, 'over': 2.0, 'junk': 2.0, 'putting': 1.0, 'i': 1.0, 'your': 2.0, 'put': 1.0, 'doesn': 1.0, 'a': 2.0, 'useless': 1.0, 'unless': 1.0, 'and': 1.0, 'son': 1.0, 'as': 2.0, 'soon': 1.0, 'moves': 1.0, 'legs': 1.0, 'falls': 1.0, 'little': 1.0, 'bit': 1.0, 'this': 1.0, 'he': 1.0, 'it': 1.0}
Word element => {'absorbent': 1.0, 'are': 2.0, 'great': 1.0, 'often': 1.0, 'uses': 1.0, 'i': 1.0, 'colors': 1.0, 'bought': 1.0, 'and': 1.0, 'friends': 1.0, 'grandson': 1.0, 'loved': 1.0, 'they': 1.0, 'these': 1.0, 'daughter': 1.0, 'for': 1.0, 'she': 1.0, 'a': 1.0, 'them': 2.0, 'her': 1.0}
Word element => {'donate': 1.0, 'may': 1.0, 'them': 2.0, 'returned': 1.0, 'and': 1.0, 'wear': 1.0, 'of': 1.0, 'i': 1.0, 'one': 1.0, 'beautiful': 1.0, 'get': 1.0, 'booties': 1.0, 'however': 1.0, 'haven': 1.0, 'they': 1.0, 'are': 1.0, 'small': 1.0, 'my': 1.0, 'day': 1.0, 'didn': 1.0, 'daughter': 1.0, 't': 2.0}
Word element => {'to': 1.0, 'recommend': 1.0, 'the': 1.0, 'already': 1.0, 'would': 1.0, 'wall': 1.0, 'was': 1.0, 'i': 2.0, 'owl': 1.0, 'everyone': 1.0, 'decal': 1.0, 'loved': 1.0, 'this': 1.0, 'fit': 1.0, 'on': 1.0, 'with': 1.0, 'it': 2.0, 'perfectly': 1.0, 'set': 1.0, 'what': 1.0}
Word element => {'definitely': 1.0, 'would': 1.0, 'comes': 1.0, 'perfect': 1.0, 'also': 1.0, 'my': 2.0, 'color': 1.0, 'owl': 1.0, 'amazon': 1.0, 'perfectly': 1.0, 'recommend': 1.0, 'daycare': 1.0, 'i': 2.0, 'wall': 2.0, 'these': 2.0, 'the': 1.0, 'on': 1.0, 'with': 2.0, 'it': 2.0, 'has': 1.0, 'they': 2.0, 'decals': 2.0, 'stick': 1.0, 'an': 1.0, 'quality': 1.0, 'purchased': 2.0, 'to': 4.0, 'tree': 2.0, 't': 1.0, 'decal': 2.0, 'go': 1.0, 'a': 3.0, 'went': 1.0, 'bright': 1.0, 'give': 1.0, 'aren': 1.0, 'pop': 1.0, 'and': 2.0, 'too': 1.0, 'when': 1.0, 'of': 2.0, 'obnoxiously': 1.0, 'are': 1.0, 'thick': 1.0, 'material': 1.0, 'be': 1.0, 'which': 1.0, 'theme': 1.0, 'yet': 1.0, 'tends': 1.0, 'finicky': 1.0}
Word element => {'lot': 1.0, 'be': 1.0, 'will': 1.0, 'on': 1.0, 'and': 2.0, 'i': 2.0, 'color': 1.0, 'coach': 1.0, 'another': 1.0, 'my': 3.0, 'things': 1.0, 'having': 1.0, 'because': 2.0, 'not': 1.0, 'neutral': 1.0, 'don': 1.0, 'storage': 1.0, 'money': 1.0, 'used': 1.0, 'beige': 1.0, 'husband': 1.0, 'have': 1.0, 'to': 1.0, 'all': 1.0, 'this': 1.0, 'it': 5.0, 'bag': 2.0, 'plan': 1.0, 'is': 4.0, 'want': 1.0, 'afraid': 1.0, 'love': 1.0, 'for': 1.0, 'great': 1.0, 'the': 1.0, 'diaper': 1.0, 'storing': 1.0, 'pink': 1.0, 'very': 1.0, 'use': 1.0, 'there': 1.0, 'boy': 1.0, 'so': 2.0, 'much': 1.0, 'in': 1.0, 'good': 1.0, 'baby': 3.0, 'quality': 1.0, 'worth': 1.0, 'especially': 1.0, 'a': 3.0, 't': 1.0, 's': 1.0, 'we': 1.0}
Word element => {'for': 1.0, 'it': 1.0, 'beat': 1.0, 'can': 1.0, 'really': 1.0, 'not': 1.0, 'a': 1.0, 'you': 1.0, 'ghibli': 1.0, 'and': 1.0, 'the': 1.0, 'made': 1.0, 't': 1.0, 'item': 1.0, 'but': 1.0, 'super': 1.0, 'price': 1.0, 'cute': 1.0, 'soft': 1.0}
Word element => {'plush': 1.0, 'but': 1.0, 'thin': 1.0, 'is': 1.0, 'bottom': 1.0, 'on': 1.0, 'has': 1.0, 'not': 1.0, 'tootoo': 1.0, 'quality': 1.0, 'house': 1.0, 'really': 1.0, 'slip': 1.0, 'second': 1.0, 'poor': 1.0, 'be': 2.0, 'bought': 1.0, 'as': 1.0, 'to': 2.0, 'grips': 1.0, 'turned': 1.0, 'out': 1.0, 'arrived': 1.0, 'or': 1.0, 'i': 3.0, 'pictured': 1.0, 'it': 3.0, 'this': 1.0, 'wouldn': 1.0, 'the': 2.0, 'figured': 1.0, 'my': 4.0, 'for': 3.0, 'purchasing': 1.0, 'nursery': 1.0, 'ended': 1.0, 'if': 1.0, 'loves': 1.0, 'that': 2.0, 'little': 1.0, 'upset': 1.0, 'exceeded': 1.0, 'expectations': 1.0, 'up': 1.0, 'best': 1.0, 'price': 1.0, '34': 2.0, 'anti': 1.0, 'have': 1.0, 'who': 1.0, 'at': 1.0, 'mom': 1.0, 't': 1.0, 'a': 1.0, 's': 2.0, 'niece': 1.0, 'vibrantly': 1.0, 'colored': 1.0}
Word element => {'likely': 1.0, 'doesn': 1.0, 'through': 1.0, 'slip': 1.0, 'unless': 1.0, 'product': 1.0, 'liking': 1.0, 'anyone': 1.0, 'use': 1.0, 'sure': 1.0, 'easy': 1.0, 'not': 2.0, 'were': 2.0, 'they': 1.0, 'caused': 1.0, 'well': 1.0, 'half': 1.0, 'but': 1.0, 'can': 1.0, 'work': 1.0, 'perhaps': 1.0, 'didn': 1.0, 'others': 1.0, 'types': 1.0, 'and': 5.0, 'perfectly': 1.0, 'since': 1.0, 'three': 1.0, 'at': 1.0, 'no': 3.0, 'i': 1.0, 'two': 2.0, 'baby': 3.0, 'that': 1.0, 'factory': 1.0, 'imagine': 1.0, 'discomfort': 2.0, 'other': 1.0, 'worked': 1.0, 'are': 1.0, 'the': 6.0, 'removes': 1.0, 'this': 3.0, 'thrilled': 1.0, 'first': 1.0, 'with': 3.0, 'it': 6.0, 'come': 1.0, 'new': 1.0, 'nose': 1.0, 'had': 2.0, 'time': 3.0, 'cleaner': 1.0, 'used': 1.0, 'there': 1.0, 'immediately': 1.0, 'as': 2.0, 'all': 1.0, 'our': 2.0, 'to': 6.0, 'cups': 1.0, 'us': 2.0, 'more': 1.0, 'is': 1.0, 'pressure': 1.0, 'defect': 1.0, 'clean': 1.0, 'on': 1.0, 't': 3.0, 'we': 2.0, 'a': 2.0, 'one': 2.0, 'using': 1.0, 'cleanable': 1.0, 'reaction': 1.0, 'seem': 1.0, 'still': 1.0, 'after': 1.0, 'than': 1.0}
Word element => {'last': 1.0, 'illness': 1.0, 'wished': 1.0, 'not': 1.0, 'just': 1.0, 'well': 1.0, 'sooner': 1.0, 'second': 1.0, 'this': 1.0, 'it': 2.0, 'long': 1.0, 'works': 1.0, 'can': 1.0, 'i': 2.0, 'as': 1.0, 'very': 1.0, 'and': 1.0, 'knew': 1.0, 'was': 1.0, 'for': 1.0, 'my': 1.0, 'made': 1.0, 'the': 1.0, 'about': 1.0, 'baby': 1.0, 'purchased': 1.0, 'already': 1.0, 'tell': 1.0}
Word element => {'sucker': 1.0, 'little': 1.0, 'great': 1.0}
Word element => {'purchasing': 1.0, 'item': 1.0, 'will': 1.0, 'sucker': 1.0, 'gifts': 1.0, 'are': 1.0, 'lol': 1.0, 'suckers': 1.0, 'ball': 1.0, 'then': 1.0, 'be': 1.0, 'suction': 1.0, 'more': 1.0, 'mind': 1.0, 'seem': 1.0, 'charm': 1.0, 'everytime': 1.0, 'its': 1.0, 'works': 1.0, 'detailed': 1.0, 'in': 1.0, 'getting': 1.0, 'about': 1.0, 'worry': 1.0, 'you': 2.0, 'so': 2.0, 'straw': 1.0, 'don': 1.0, 'up': 1.0, 'how': 1.0, 'doesn': 1.0, 'was': 1.0, 'now': 1.0, 'future': 1.0, 'at': 3.0, 'and': 1.0, 'baby': 2.0, 'ewwww': 1.0, 'thinking': 1.0, 'i': 4.0, 'old': 1.0, 'snot': 3.0, 'those': 1.0, 'not': 1.0, 'first': 1.0, 'come': 1.0, 'cause': 1.0, 'runny': 1.0, 'either': 1.0, 'sorry': 1.0, 'had': 1.0, 'purchased': 1.0, 'for': 1.0, 'product': 2.0, 'the': 7.0, 'my': 2.0, 'nose': 2.0, '2': 1.0, 'but': 1.0, 'back': 1.0, 'congestion': 1.0, 'it': 5.0, 'precious': 1.0, 'month': 1.0, 'amazing': 2.0, 'has': 1.0, 'your': 2.0, 'worst': 1.0, 'designed': 1.0, 'gross': 2.0, 'sucking': 1.0, 'because': 1.0, 'mouth': 2.0, 'out': 1.0, 'shower': 1.0, 'of': 1.0, 'this': 3.0, 'kids': 1.0, 'that': 1.0, 'have': 2.0, 'as': 1.0, 'to': 2.0, 'all': 2.0, 'a': 1.0, 't': 2.0, 's': 3.0, 'way': 2.0, 'like': 1.0, 'using': 1.0, 'cannot': 1.0}
Word element => {'do': 1.0, 'will': 1.0, 'friends': 1.0, 'harm': 1.0, 'didn': 1.0, 'parent': 1.0, 'process': 1.0, 'so': 1.0, 'can': 1.0, 'but': 1.0, 'sterilization': 1.0, 'used': 2.0, 'continue': 1.0, 'class': 1.0, 'too': 1.0, 'great': 1.0, 'nice': 1.0, 'you': 2.0, 'times': 1.0, 'am': 1.0, 'houses': 1.0, 'aspirator': 1.0, 'before': 1.0, 'materials': 1.0, 't': 1.0, 'go': 1.0, 'of': 3.0, 'the': 13.0, 'was': 2.0, 'recommend': 1.0, 'i': 10.0, 'sucker': 2.0, 'carry': 1.0, 'makes': 1.0, 'quality': 2.0, 'obviously': 1.0, 'opened': 2.0, 'box': 1.0, 'nasal': 1.0, 'that': 3.0, 'case': 2.0, 'are': 3.0, 'first': 5.0, 'really': 2.0, 'pieces': 2.0, 'see': 1.0, 'plastic': 1.0, 'how': 1.0, 'thing': 1.0, 'as': 5.0, 'feel': 1.0, 'any': 1.0, 'sterilized': 2.0, 'different': 1.0, 'made': 1.0, 'good': 1.0, 'is': 2.0, 'at': 3.0, 'in': 3.0, 'fact': 1.0, 'have': 2.0, 'a': 6.0, 'small': 1.0, 'it': 7.0, 'already': 2.0, 'such': 1.0, 'few': 2.0, 'uses': 1.0, 'worried': 1.0, 'by': 1.0, 'between': 1.0, 'suck': 1.0, 'product': 1.0, 'looks': 2.0, 'my': 1.0, 'nose': 1.0, 'being': 1.0, 'still': 1.0, 'if': 1.0, 'tentative': 1.0, 'would': 2.0, 'sucking': 3.0, 'all': 2.0, 'other': 1.0, 'male': 1.0, 'hard': 2.0, 'to': 3.0, 'pretty': 1.0, 'easy': 1.0, 'gauge': 1.0, 'resistance': 1.0, 'sense': 1.0, 'when': 3.0, 'results': 1.0, 'works': 1.0, 'far': 1.0, 'treat': 1.0, 'amazed': 1.0, 'noticed': 1.0, 'amount': 1.0, 'mucus': 1.0, 'and': 4.0, 'recommended': 1.0}
Word element => {'better': 1.0, 'can': 1.0, 'she': 1.0, 'well': 1.0, 'nose': 1.0, 'm': 1.0, 'that': 1.0, 'than': 1.0, 'other': 1.0, 'great': 1.0, 'works': 1.0, 'nasal': 1.0, 'able': 1.0, 'have': 1.0, 'baby': 1.0, 'about': 1.0, 'aspirator': 1.0, 'sometimes': 1.0, 'told': 1.0, 'but': 1.0, 'dizzy': 1.0, 'suck': 1.0, 'friends': 1.0, 'get': 1.0, 'me': 1.0, 'and': 2.0, 'my': 3.0, 's': 1.0, 'you': 1.0, 'to': 2.0, 'really': 1.0, 'it': 1.0, 'this': 1.0, 'hard': 1.0, 'clear': 1.0, 'i': 2.0, 'lose': 1.0, 'so': 1.0, 'breath': 2.0}
Word element => {'review': 1.0, 'will': 1.0, 'wonderful': 1.0, 'are': 1.0, 'at': 1.0, 'cozy': 1.0, 'aspirator': 1.0, 'best': 1.0, 's': 1.0, 'on': 1.0, 'months': 1.0, 'feel': 1.0, 'purchased': 1.0, 'much': 1.0, 'write': 1.0, 'her': 1.0, 'having': 1.0, 'people': 1.0, 'is': 3.0, 'not': 1.0, 'was': 1.0, 'after': 2.0, 'daughter': 1.0, 'for': 1.0, 'market': 1.0, 'and': 2.0, 'another': 1.0, 'baby': 3.0, 'my': 1.0, 'born': 1.0, 'due': 1.0, 'the': 4.0, 'more': 1.0, 'confident': 1.0, '6': 1.0, 'it': 2.0, 'first': 1.0, 'research': 1.0, 'this': 1.0, 'i': 2.0}
Word element => {'easy': 1.0, 'simple': 1.0, 's': 1.0, 'my': 1.0, 'clearing': 1.0, 'effective': 1.0, 'found': 1.0, 'bit': 1.0, 'little': 1.0, 'aside': 1.0, 'times': 1.0, 'handful': 1.0, 'a': 1.0, 'in': 1.0, 've': 1.0, 'aspirator': 1.0, '3': 1.0, 'soft': 1.0, 'attachments': 1.0, 'the': 1.0, 'great': 1.0, 'be': 2.0, 'product': 1.0, 'to': 2.0, 'passages': 1.0, 'would': 1.0, 'it': 1.0, 'this': 3.0, 'however': 1.0, 'from': 1.0, 'very': 2.0, 'easily': 1.0, 'i': 3.0, 'and': 2.0, 'break': 1.0, '1': 1.0, 'of': 2.0, 'daughter': 1.0, 'when': 1.0, 'm': 1.0, 'already': 1.0, 'used': 1.0, 'nasal': 2.0, 'down': 1.0, 'cleaning': 1.0, 'out': 1.0}
Word element => {'safe': 1.0, 'your': 1.0, 's': 1.0, 'way': 1.0, 'best': 1.0, 'it': 1.0, 'clean': 1.0, 'cleaning': 1.0, 'when': 1.0, 'thin': 1.0, 'a': 2.0, 'and': 2.0, 'little': 1.0, 'nose': 1.0, 'replaceable': 1.0, 'baby': 1.0, 'broke': 1.0, 'just': 2.0, 'but': 1.0, 'is': 1.0, 'the': 3.0, 'more': 1.0, 'fantastic': 1.0, 'works': 1.0, 'of': 1.0, '3': 1.0, 'effective': 1.0, 'one': 1.0, 'tips': 1.0, 'tip': 1.0, 'bit': 1.0, 'had': 1.0, 'to': 2.0, 'be': 1.0, 'gentile': 1.0}
Word element => {'very': 1.0, 'mold': 1.0, 'hold': 1.0, 'aspirators': 1.0, 'i': 3.0, 'clean': 2.0, 'emails': 1.0, 'and': 2.0, 'every': 1.0, 'use': 1.0, 'so': 2.0, 'to': 3.0, 'through': 1.0, 'cozy': 1.0, 'aspirator': 2.0, 'recommend': 1.0, 'easy': 2.0, 'read': 1.0, 'nasal': 3.0, 'have': 1.0, 'regular': 1.0, 'is': 2.0, 'the': 2.0, 'love': 1.0, 'can': 1.0, 'parent': 1.0, 'this': 1.0, 'with': 1.0, 'it': 2.0, 'that': 1.0, 'you': 1.0, 'see': 1.0, 'baby': 1.0, 'about': 1.0, 'how': 1.0}
Word element => {'use': 1.0, 'takes': 1.0, 'best': 1.0, 'getting': 1.0, 'out': 1.0, 'found': 1.0, 'object': 1.0, 'works': 1.0, 'her': 1.0, 'even': 1.0, 'they': 1.0, 'again': 1.0, 'you': 1.0, 'be': 1.0, 'to': 2.0, 'grand': 1.0, 'my': 1.0, 'start': 1.0, 'a': 2.0, 'for': 1.0, 'using': 1.0, 'early': 1.0, 'snotty': 1.0, 'while': 1.0, 'gadget': 1.0, 'behind': 1.0, 't': 1.0, 'great': 1.0, 'only': 1.0, 'wouldn': 1.0, 'it': 2.0, 'this': 2.0, 'second': 1.0, 'is': 1.0, 'on': 1.0, 'took': 1.0, 'i': 2.0, 'imagine': 1.0, 'if': 1.0}
Word element => {'bedtime': 1.0, 'time': 1.0, 'nap': 1.0, 'before': 1.0, 'for': 1.0, 'especially': 1.0, 'thank': 1.0, 'they': 1.0, 'minutes': 1.0, '1st': 1.0, 'boogers': 1.0, 'few': 1.0, 'just': 2.0, 'syringes': 1.0, 'sick': 1.0, 'will': 3.0, 'or': 1.0, 'luck': 1.0, 'used': 1.0, 'had': 1.0, 'to': 2.0, 'won': 1.0, 'if': 1.0, 'that': 1.0, 'you': 4.0, 'feedings': 1.0, 'are': 1.0, 'the': 3.0, 'of': 1.0, 'great': 1.0, 'snot': 1.0, 'big': 1.0, 'trust': 1.0, 'your': 1.0, 'and': 5.0, 'not': 1.0, 'me': 1.0, 'chasing': 1.0, 'bulb': 1.0, 'seriously': 1.0, 'have': 3.0, 'lodge': 1.0, 'thing': 1.0, 'saline': 1.0, 'in': 1.0, 'try': 1.0, 'use': 1.0, 'this': 2.0, 'is': 1.0, 'last': 1.0, 'wait': 1.0, 'need': 1.0, 'i': 1.0, 'child': 1.0, 'instant': 1.0, 'ever': 1.0, 'buy': 1.0, 'relief': 1.0, 't': 1.0, 'a': 2.0, 'little': 1.0}
Word element => {'better': 1.0, 'help': 1.0, 'nose': 1.0, 'didn': 1.0, 't': 1.0, 'the': 1.0, 'aspirators': 1.0, 'my': 1.0, 'right': 1.0, 'bulb': 1.0, 'frustrated': 1.0, 'was': 1.0, 'by': 1.0, 'baby': 1.0, 'i': 1.0, 'much': 1.0, 'cleared': 1.0, 's': 1.0, 'quickly': 1.0, 'away': 1.0, 'and': 1.0, 'this': 1.0, 'he': 1.0, 'could': 1.0, 'that': 1.0, 'breathe': 1.0}
Word element => {'isn': 1.0, 'better': 1.0, 'but': 3.0, 'my': 2.0, 'it': 5.0, 'with': 1.0, 'he': 2.0, 'the': 2.0, 'traditional': 1.0, 'wasn': 1.0, 'i': 2.0, 'on': 1.0, 'expectations': 1.0, 'maybe': 1.0, 'worked': 1.0, 'son': 1.0, 'then': 1.0, 'good': 1.0, 'expecting': 1.0, 'was': 1.0, 'electronic': 1.0, 'comes': 2.0, 'based': 1.0, 't': 2.0, 'a': 1.0, 'reviews': 1.0, 'too': 1.0, 'and': 2.0, 'happening': 1.0, 'also': 1.0, 'in': 1.0, 'ones': 1.0, 'liked': 1.0, 'btw': 1.0, 'high': 1.0, 'were': 1.0, 'tweezer': 1.0, 'travel': 1.0, 'that': 2.0, 'case': 1.0, 'hates': 2.0, 'them': 1.0, 'as': 2.0, 'all': 1.0, 'alot': 1.0, 'pick': 1.0, 'nose': 1.0, 'would': 1.0, 'rather': 1.0, 'his': 1.0}
Word element => {'bad': 1.0, 'little': 1.0, 'relief': 1.0, 'product': 1.0, 'this': 1.0, 'recommend': 1.0, 'highly': 1.0, 'its': 1.0, 'needs': 1.0, 'time': 1.0, 'use': 1.0, 'to': 4.0, 'user': 1.0, 'which': 2.0, 'frequently': 1.0, 'products': 1.0, 'i': 4.0, 'used': 1.0, 'nasal': 1.0, 'couple': 1.0, 'get': 1.0, 'and': 2.0, 'with': 3.0, 'congestion': 1.0, 'it': 2.0, 'keeps': 1.0, 'have': 1.0, 'small': 1.0, 'everything': 1.0, 'who': 1.0, 'a': 4.0, 'cold': 1.0, 'colds': 1.0, 'give': 1.0, 'not': 1.0, 'snot': 1.0, 'are': 2.0, 'grandmother': 1.0, 'of': 2.0, 'anyone': 1.0, 'be': 1.0, 'm': 1.0, 'unhygienic': 1.0, 'major': 1.0, 'friendly': 1.0, 'free': 1.0, 'the': 4.0, 'would': 1.0, 'cozy': 1.0, 'baby': 1.0, 'sucker': 2.0, 'comes': 1.0, 'grandchildren': 1.0, 'together': 1.0, 'can': 1.0, 'one': 1.0, 'sterilize': 1.0, 'put': 1.0, 'needed': 1.0, 'back': 1.0, 'also': 1.0, 'will': 1.0, 'ready': 1.0, 'that': 1.0, 'next': 1.0, 'case': 2.0, 'into': 1.0}
Word element => {'bother': 1.0, 'tweezers': 1.0, 'case': 1.0, 'multiple': 1.0, 'filter': 1.0, 'kind': 1.0, 'rest': 1.0, 'don': 1.0, 'any': 1.0, 'in': 1.0, 'of': 1.0, 'pale': 1.0, 'suctions': 1.0, 'and': 2.0, 'other': 1.0, 'with': 1.0, 'this': 3.0, 'two': 1.0, 'need': 1.0, 'comparison': 1.0, 'better': 1.0, 'aspirators': 1.0, 't': 1.0, 'great': 1.0, 'the': 2.0, 'buy': 1.0, 'tried': 1.0, 'i': 1.0, 'nasal': 1.0, 'does': 1.0, 'to': 1.0, 'easier': 1.0, 'they': 1.0, 'has': 2.0, 'one': 3.0, 'tips': 2.0, 'carrying': 1.0, 'not': 1.0}
Word element => {'you': 1.0, 'thank': 1.0, 'recommended': 1.0, 'comfortable': 1.0, 'more': 1.0, 'life': 1.0, 'dry': 1.0, 'so': 1.0, 'stuffy': 1.0, 'morning': 1.0, 'up': 1.0, 'saver': 1.0, 'are': 2.0, 'doesn': 1.0, 'baby': 3.0, 'make': 2.0, 'let': 1.0, 'purchase': 1.0, 'my': 2.0, 'i': 4.0, 'highly': 1.0, 'every': 1.0, 'really': 2.0, 'red': 1.0, 'control': 1.0, 'the': 4.0, '2': 1.0, 'it': 2.0, 'will': 1.0, 'item': 1.0, 'bulb': 1.0, 'kit': 1.0, 'actually': 1.0, 'love': 2.0, 'boogies': 1.0, 'boogy': 1.0, 'extras': 1.0, 'fluctuating': 1.0, 't': 1.0, 'a': 3.0, 'climate': 1.0, 'better': 1.0, 'wakes': 1.0, 'use': 1.0, 'me': 1.0, 'and': 4.0, 'w': 1.0, 'than': 1.0, 'help': 1.0, '10x': 1.0, 'easy': 1.0, 'syringe': 1.0, 'this': 2.0, 'soft': 1.0, 'cozy': 1.0, 'nose': 1.0, 'irritated': 1.0, 'like': 1.0, 'that': 1.0, 'suction': 1.0, 'to': 4.0, 'her': 2.0, 'clean': 1.0, 'living': 1.0, 'tips': 1.0, 'tweezers': 2.0, 'best': 2.0, 'due': 2.0, 'in': 1.0}
Word element => {'planning': 1.0, 'bought': 1.0, 'nose': 1.0, 's': 1.0, 'a': 9.0, 'gunk': 2.0, 'poor': 1.0, 'get': 2.0, 'baby': 2.0, 'lots': 1.0, 'in': 3.0, 'place': 1.0, 'reach': 1.0, 'live': 1.0, 'use': 1.0, 'much': 1.0, 'works': 2.0, 'very': 1.0, 'after': 2.0, 'thing': 2.0, 'dry': 1.0, 'description': 1.0, 'recommended': 1.0, 'and': 2.0, 'feelings': 1.0, 'the': 13.0, 'of': 7.0, 'reading': 1.0, 'using': 1.0, 'bonus': 1.0, 'i': 5.0, 'year': 1.0, 'product': 1.0, 'till': 1.0, 'truly': 2.0, 'it': 3.0, 'same': 2.0, 'was': 2.0, 'now': 1.0, 'free': 1.0, 'had': 3.0, 'daily': 1.0, 'meaning': 1.0, 'nasal': 1.0, 'that': 2.0, 'because': 1.0, 'when': 1.0, 'again': 1.0, 'tweezers': 1.0, 'you': 2.0, 'times': 1.0, 'graco': 1.0, 'squeamish': 1.0, 'aspirator': 1.0, 'ordering': 1.0, 'highly': 1.0, 'this': 3.0, 'instead': 1.0, 'seeing': 1.0, 'good': 1.0, 'we': 1.0, 'died': 1.0, 'reviews': 2.0, 'they': 1.0, 'broad': 1.0, 'tip': 1.0, 'on': 1.0, 'nostril': 1.0, 'used': 1.0, 'fits': 1.0, 'crusty': 1.0, 'stuff': 1.0, 'just': 2.0, 'true': 1.0, 'right': 1.0, 'adjust': 1.0, 'suction': 1.0, 'lot': 1.0, 'out': 2.0, 'couple': 1.0, 'quickly': 1.0, 'has': 1.0, 'always': 1.0, 'are': 1.0, 'plus': 1.0, 'with': 2.0, 'been': 2.0, 'wiggly': 1.0, 'pretty': 1.0, 'to': 2.0, 'buy': 1.0, 'come': 1.0, 'can': 2.0, 'so': 1.0, 'nice': 1.0, 'have': 1.0, 'those': 1.0, 'but': 3.0, 'tissue': 1.0}
Word element => {'the': 1.0, 'on': 1.0, 'aspirator': 1.0, 'market': 1.0, 'best': 1.0}
Word element => {'worth': 1.0, 'versus': 1.0, 'less': 1.0, 'lot': 1.0, 'well': 1.0, 'a': 1.0, 'in': 1.0, 'using': 1.0, 'for': 1.0, 'goes': 1.0, 'soft': 1.0, 'fussy': 1.0, 'tip': 1.0, 'babies': 1.0, 'nose': 1.0, 'is': 2.0, 'iritate': 1.0, 'product': 1.0, 'it': 2.0, 'this': 2.0, 'great': 1.0, 'the': 5.0, 't': 1.0, 'bulb': 1.0, 'nostril': 1.0, 's': 1.0, 'so': 1.0, 'doesn': 1.0, 'price': 1.0, 'baby': 2.0, 'that': 1.0, 'our': 1.0, 'was': 2.0}
Word element => {'them': 1.0, 'commenting': 1.0, 'on': 1.0, 'is': 1.0, 'everyone': 1.0, 'love': 1.0, 'which': 1.0, 'application': 1.0, 'little': 1.0, 'and': 1.0, 'as': 2.0, 'i': 2.0, 'well': 1.0, 'also': 1.0, 'visibility': 1.0, 'got': 1.0, 'man': 1.0, 'easy': 1.0, 'caleb': 1.0}
Word element => {'anymore': 1.0, 'problem': 1.0, 'that': 1.0, 'and': 1.0, 'seats': 1.0, '2yr': 1.0, 'old': 1.0, 'i': 2.0, 'perfect': 1.0, 'a': 2.0, 'covers': 2.0, 'are': 1.0, 'fingerprints': 1.0, 'my': 1.0, 'seat': 2.0, 'he': 1.0, 'of': 2.0, 'have': 2.0, 't': 1.0, 'the': 1.0, 'these': 2.0, 'to': 1.0, 'had': 1.0, 'lot': 1.0, 'won': 1.0, 'on': 1.0, 'back': 1.0, 'thanks': 1.0}
Word element => {'protects': 1.0, 'covered': 1.0, 'compartments': 1.0, 'are': 1.0, 'helpful': 1.0, 'mats': 1.0, 'would': 1.0, 'kick': 1.0, 'want': 1.0, 'you': 1.0, 'way': 1.0, 'little': 1.0, 'shaped': 1.0, 'custom': 1.0, 'be': 2.0, 'now': 1.0, 'to': 2.0, 'head': 1.0, 'could': 2.0, 'back': 2.0, 'inside': 1.0, 'but': 1.0, 'than': 1.0, 'seat': 2.0, 'just': 1.0, 'straps': 1.0, 'job': 1.0, 'storage': 1.0, 'rest': 1.0, 'bythe': 1.0, 'since': 1.0, 'a': 1.0, 'the': 6.0, 'down': 1.0, 'does': 1.0, 'completely': 2.0, 'automobile': 1.0, 'if': 1.0, 'better': 1.0, 'rectangular': 1.0, 'attaching': 1.0, 'pockets': 1.0, 'cloth': 1.0, 'headrest': 1.0, 'in': 1.0, 'also': 2.0, 'get': 1.0}
Word element => {'accord': 1.0, 'crosstour': 1.0, 'honda': 1.0, '2012': 1.0, 'fusion': 1.0, 'ford': 1.0, 'better': 1.0, '2010': 1.0, 'my': 2.0, 'around': 1.0, 'reviews': 1.0, 'on': 2.0, 'with': 1.0, 'this': 1.0, 'elastic': 1.0, 'however': 1.0, 'popular': 1.0, 'of': 1.0, 'based': 1.0, 'bottom': 1.0, 'go': 1.0, 'to': 1.0, 'brand': 1.0, 'i': 1.0, 'the': 4.0, 'seats': 1.0, 'competitor': 1.0, 'strap': 2.0, 'that': 1.0, 'decided': 1.0, 'must': 1.0, 'fits': 2.0, 'loop': 1.0, 'seat': 1.0, 'just': 1.0}
Word element => {'bigger': 1.0, 'bit': 1.0, 'a': 1.0, 'it': 2.0, 'stretch': 1.0, 'very': 1.0, 'i': 1.0, 'tight': 1.0, 'fit': 2.0, 'on': 1.0, 'could': 1.0, 'had': 1.0, 'make': 1.0, 'my': 1.0, 'chrysler': 1.0, 'really': 1.0, '200': 1.0, 'be': 1.0, 'to': 2.0}
Word element => {'happy': 1.0, 'kickers': 1.0, 'for': 1.0, 'durable': 1.0, 'look': 1.0, 'i': 1.0, 'have': 1.0, 'they': 1.0, 'these': 2.0, 'used': 1.0, 'poor': 1.0, 'several': 1.0, 'very': 1.0, 'pullers': 1.0, 'like': 1.0, 'quality': 1.0, 'and': 2.0, 'of': 1.0, 'more': 1.0, 'are': 1.0, 'the': 1.0, 'was': 1.0}
Word element => {'using': 1.0, 'recommend': 1.0, 'as': 1.0, 'within': 1.0, 'delivered': 1.0, 'gonna': 1.0, 'member': 1.0, 'are': 1.0, 'kids': 1.0, 'how': 1.0, 'there': 1.0, 'keep': 1.0, 'around': 1.0, 'prime': 1.0, 'seats': 1.0, 'matter': 1.0, 'and': 1.0, 'so': 1.0, 'order': 1.0, 'was': 1.0, 'comes': 1.0, 'to': 3.0, 'useful': 1.0, 'be': 1.0, 'product': 2.0, 'times': 2.0, 'chair': 1.0, 'tighten': 1.0, 'your': 2.0, 'kick': 1.0, 'quit': 1.0, 'that': 1.0, 'many': 1.0, 'is': 1.0, 'well': 1.0, 'wrap': 1.0, 'clean': 1.0, 'two': 1.0, 'no': 1.0, 'neat': 1.0, 'the': 2.0, 'will': 1.0, 'advantage': 1.0, 'with': 1.0, 'this': 1.0, 'it': 6.0}
Word element => {'good': 1.0, 'far': 1.0, 'so': 2.0, 'on': 1.0, 'make': 1.0, 'fit': 2.0, 'working': 1.0, 'but': 1.0, 'elastic': 1.0, 'didn': 1.0, 'mats': 1.0, 'they': 1.0, 'max': 1.0, 'fine': 1.0, 'stretch': 1.0, 'are': 1.0, 't': 1.0, 'currently': 1.0, 'the': 2.0, 'my': 1.0, 'rav4': 1.0, 'seats': 1.0, 'well': 1.0, 's': 1.0, 'i': 1.0, 'had': 1.0, 'to': 3.0, 'it': 2.0}
Word element => {}
Word element => {'solution': 1.0, 'right': 1.0, 'be': 1.0, 'bands': 1.0, 'issues': 1.0, 'i': 1.0, 'some': 1.0, 'seat': 1.0, 'seem': 1.0, 'way': 1.0, 'other': 1.0, 'mats': 2.0, 'are': 1.0, 'these': 1.0, 'the': 5.0, 'far': 1.0, 'working': 1.0, 'protective': 1.0, 'elastic': 1.0, 'but': 1.0, 'so': 1.0, 'with': 1.0, 'perfectly': 1.0, 'and': 1.0, 'they': 1.0, 'attached': 1.0, 'had': 1.0, 'to': 2.0, 'of': 1.0, 'bottom': 1.0}
Word element => {'recommend': 1.0, 'would': 1.0, 'covers': 1.0, 'excellent': 1.0, 'fit': 1.0, 'product': 1.0, 'matches': 1.0, 'thus': 1.0, 'leather': 1.0, 'and': 1.0, 'seats': 1.0, 'back': 1.0, 'over': 1.0, 'black': 2.0, 'my': 1.0, 'far': 1.0, '2014': 1.0, 'mdx': 1.0, 'perfectly': 1.0}
Word element => {'great': 1.0, 'fits': 1.0, 'quality': 1.0, 'good': 1.0}
Word element => {'would': 1.0, 'feet': 1.0, 'i': 2.0, 'product': 2.0, 'cheap': 1.0, 'than': 1.0, 'material': 1.0, 'stronger': 1.0, 'better': 1.0, 'and': 4.0, 'made': 1.0, 'clean': 1.0, 'this': 2.0, 'replaced': 1.0, 'look': 1.0, 'improved': 1.0, 'wipe': 1.0, 'older': 1.0, 'now': 1.0, 'version': 1.0, 'manufacturer': 1.0, 'has': 1.0, 'they': 1.0, 'boy': 1.0, 'definitely': 1.0, 'liked': 1.0, 'its': 2.0, 'much': 1.0, 'it': 3.0, 'looks': 1.0, 'is': 1.0, 'of': 1.0, 'that': 1.0, 'recommend': 1.0, 'doesn': 1.0, 'off': 1.0, 'stays': 1.0, 'in': 1.0, 'the': 3.0, 'place': 1.0, 'active': 1.0, 'my': 1.0, 'to': 1.0, 'seat': 1.0, 'easy': 1.0, 'protected': 1.0, 'from': 1.0, 'little': 1.0, 't': 1.0, 's': 1.0}
Word element => {'we': 1.0, 'love': 1.0, 'great': 1.0, 'completely': 1.0, 'milan': 1.0, 'them': 1.0, 'a': 1.0, 'mercury': 1.0, 'super': 1.0, 'easy': 1.0, 'installation': 1.0, 'back': 1.0, 'they': 2.0, 'are': 1.0, 'my': 1.0, 'the': 2.0, 'cover': 1.0, 'in': 1.0, 'value': 1.0, 'of': 1.0, 'and': 2.0, 'seats': 1.0}
Word element => {'pack': 1.0, '2': 1.0, 'there': 1.0, 'especially': 1.0, 'excellent': 1.0, 'great': 1.0, 'love': 1.0, 'value': 1.0, 'sturdy': 1.0, 'these': 1.0, 'purchase': 1.0, 'hubby': 1.0, 'one': 3.0, 'in': 1.0, 'for': 2.0, 'are': 1.0, 'my': 2.0, 'car': 2.0, 's': 1.0, 'since': 1.0, 'and': 1.0, 'very': 1.0}
Word element => {'without': 1.0, 'and': 1.0, 'cars': 1.0, 'both': 1.0, 'fit': 1.0, 'fast': 1.0, 'very': 1.0, 'problems': 1.0, 'wish': 1.0, 'had': 1.0, 'any': 1.0, 'price': 1.0, 'latch': 1.0, 'good': 1.0, 'the': 2.0, 'expand': 1.0, 'sooner': 1.0, 'is': 1.0, 'secure': 1.0, 'i': 2.0, 'straps': 1.0, 'ordered': 1.0, 'arrived': 1.0, 'them': 1.0}
Word element => {'them': 1.0, 'wipe': 1.0, 'durable': 1.0, 'seem': 1.0, 'week': 1.0, 'about': 1.0, 'installed': 1.0, 'down': 1.0, 'perfectly': 1.0, 'bottom': 1.0, 'lexus': 1.0, 'wide': 1.0, 'for': 1.0, 'fit': 2.0, 'have': 1.0, 'small': 1.0, 'd': 1.0, 'and': 4.0, 'too': 1.0, 'easily': 1.0, 'when': 1.0, 'i': 6.0, 'clear': 1.0, 'suv': 1.0, 'but': 2.0, 'elastic': 1.0, 'that': 1.0, 'unboxed': 1.0, 'rx': 1.0, 'kick': 1.0, 'previously': 1.0, 'a': 2.0, 'front': 1.0, 'recommend': 1.0, 'mats': 2.0, 'these': 1.0, 'the': 5.0, 'they': 3.0, 'eventually': 1.0, 'first': 1.0, 'be': 1.0, 'seats': 1.0, 'base': 1.0, 'ripped': 1.0, '350': 1.0, 'are': 1.0, 'at': 1.0, 'straps': 1.0, 'stretch': 1.0, 'to': 1.0, 'thought': 1.0, 'had': 2.0, 'plastic': 1.0, 'covers': 1.0, 'buckle': 1.0, 'would': 2.0, 've': 1.0, 'along': 1.0}
Word element => {'loosely': 1.0, 'dangle': 1.0, 'mat': 1.0, 'so': 1.0, 'section': 1.0, 'lower': 1.0, 'attachments': 1.0, 'solution': 1.0, 'mats': 1.0, 'a': 1.0, 'ford': 1.0, 'of': 1.0, 'bottom': 1.0, 't': 2.0, 'universal': 1.0, 'the': 5.0, 'with': 2.0, 'on': 1.0, 'seats': 1.0, 'work': 1.0, 'our': 1.0, 'didn': 2.0, 'edge': 1.0, '2013': 1.0, 'hang': 1.0, 'attach': 1.0, 'we': 1.0, 'drawbacks': 1.0, 'improvised': 1.0, 'comes': 1.0, 'to': 1.0}
Word element => {'fit': 1.0, 'your': 1.0, 'make': 1.0, 'mazda': 2.0, 'honda': 2.0, 'seats': 2.0, 'block': 1.0, 'and': 1.0, 'do': 1.0, '6': 2.0, 'odyssey': 2.0, 'the': 4.0, 'these': 2.0, 'i': 3.0, 'snug': 1.0, 'bit': 1.0, 'protectors': 1.0, 'sedan': 1.0, 'back': 2.0, 'but': 1.0, 'work': 1.0, 'car': 1.0, 'both': 1.0, 'better': 1.0, 'they': 2.0, 'not': 1.0, 'in': 3.0, 'installed': 1.0, 'than': 1.0, 'installing': 1.0, 'a': 3.0, 's': 1.0, 'protector': 1.0, 'would': 1.0, 'using': 1.0, 'cannot': 1.0, 'like': 1.0, 'still': 1.0, 'fine': 1.0, 'note': 1.0, 'am': 1.0, 'you': 1.0, 'when': 1.0, 'get': 1.0, 'sure': 1.0, 'seat': 2.0, 'as': 2.0, 'any': 1.0, 'airbags': 1.0}
Word element => {'anyone': 1.0, 'great': 1.0, 'pocket': 1.0, 'them': 1.0, 'again': 1.0, 'when': 3.0, 'us': 1.0, 'taken': 1.0, 'i': 1.0, 'always': 1.0, 'and': 3.0, 'these': 3.0, 'the': 5.0, 'kids': 2.0, 'wish': 1.0, 'children': 1.0, 'beating': 1.0, 'product': 1.0, 'for': 3.0, 'riding': 1.0, 'with': 2.0, 'stores': 1.0, 'had': 1.0, 'purchased': 2.0, 'suv': 1.0, 'mother': 1.0, 'then': 1.0, 'just': 1.0, 'not': 1.0, 'easy': 1.0, 'new': 1.0, 'make': 1.0, 'discovered': 1.0, 'a': 3.0, 'we': 1.0, 'bought': 1.0, 'seat': 1.0, 'as': 2.0, 'our': 2.0, 'my': 1.0, 'vehicle': 1.0, 'seats': 1.0, 'must': 1.0, 'have': 2.0, 'she': 2.0, 'covers': 1.0, 'slide': 1.0, 'right': 1.0, 'over': 1.0, 'helps': 1.0, 'headrest': 1.0, 'in': 2.0, 'installation': 1.0, 'are': 1.0, 'needed': 1.0, 'back': 2.0}
Word element => {'priced': 1.0, 'and': 1.0, 'though': 1.0, 'seats': 1.0, 'looking': 1.0, 'are': 1.0, 'if': 1.0, 'see': 1.0, 'you': 2.0, 'barely': 1.0, 'top': 1.0, 'just': 1.0, 'corners': 1.0, 'the': 7.0, 'these': 1.0, '6': 1.0, 'reasonably': 1.0, 'of': 1.0, 'bottom': 1.0, 'at': 2.0, 'so': 1.0, 'front': 1.0, 'use': 1.0, 'far': 1.0, 'have': 1.0, 'were': 1.0, 'that': 1.0, 'a': 3.0, 'well': 1.0, 'they': 1.0, 'good': 2.0, 'price': 1.0, 'about': 1.0, 'held': 1.0, 'after': 1.0, 'sometimes': 1.0, 'months': 1.0, 'up': 1.0, 'over': 1.0, 'on': 1.0, 'flop': 1.0, 'holds': 1.0, 'is': 1.0, 'it': 3.0, 'looks': 1.0, 'not': 1.0, 'problem': 1.0, 'product': 1.0, 'fit': 1.0, 'for': 1.0, 'protecting': 1.0, 'can': 1.0, 'but': 1.0, 'sloppy': 1.0, 'elastic': 1.0, 'little': 1.0, 'also': 1.0, 'tight': 1.0, 'my': 1.0, 'car': 1.0, 'part': 1.0, 'seat': 2.0, 'to': 1.0}
Word element => {'bottom': 1.0, 'around': 1.0, 'fit': 1.0, 'not': 1.0, 'want': 1.0, 'a': 1.0, 'matts': 1.0, 'kick': 1.0, 'anything': 1.0, 'with': 1.0, 'we': 1.0, 'simple': 1.0, 'if': 1.0, 'didn': 1.0, 'suv': 1.0, 'the': 1.0, 't': 1.0, 'great': 1.0, 'are': 1.0, 'fancy': 1.0, 'theses': 1.0, 'you': 1.0, 'large': 1.0, 'have': 1.0, 'wide': 1.0, 'seats': 1.0, 'they': 1.0, 'may': 1.0}
Word element => {'happy': 1.0, 'clean': 2.0, 'out': 1.0, 'of': 4.0, 'keep': 1.0, 'easy': 2.0, 'mats': 2.0, 'love': 1.0, 'for': 2.0, 'a': 2.0, 'also': 1.0, 'in': 2.0, 'were': 1.0, 'my': 3.0, 'great': 1.0, 'install': 1.0, 'like': 1.0, 'back': 1.0, 'car': 1.0, 'value': 1.0, 'kick': 1.0, 'so': 2.0, 'everyone': 1.0, 'clear': 1.0, 'when': 1.0, 'solution': 1.0, 'looked': 1.0, 'blend': 1.0, 'children': 1.0, 'first': 1.0, 'seats': 1.0, 'come': 1.0, 'answer': 1.0, 'to': 3.0, 'all': 1.0, 'pack': 1.0, 'they': 3.0, 'are': 2.0, 'right': 1.0, 'looking': 1.0, 'the': 4.0, 'without': 1.0, 'place': 1.0, 'and': 1.0, 'money': 1.0, 'i': 3.0, 'two': 1.0, 'is': 1.0}
Word element => {'review': 1.0, 'keep': 1.0, 'ones': 1.0, 'wet': 1.0, 'one': 1.0, 'wipes': 1.0, 'clean': 1.0, 'wiped': 1.0, 'seat': 1.0, 'kicking': 1.0, 'son': 1.0, 'purchase': 1.0, 'my': 2.0, 'from': 1.0, 'dirt': 1.0, 'saw': 1.0, 'ever': 1.0, 'day': 1.0, 'first': 1.0, 'thankful': 1.0, 'secure': 1.0, 'are': 1.0, 'am': 1.0, 'easily': 2.0, 'then': 1.0, 'got': 3.0, 'of': 4.0, 'immediately': 1.0, 'up': 1.0, 'waste': 1.0, 'ended': 1.0, 'it': 2.0, 'because': 2.0, 'is': 1.0, 'so': 2.0, 'time': 1.0, 'they': 1.0, 'the': 8.0, 'these': 3.0, 'money': 1.0, '2': 1.0, 'i': 10.0, 'old': 1.0, 'within': 1.0, 'putting': 1.0, 'snug': 1.0, 'have': 2.0, 'pack': 1.0, 'for': 2.0, 'was': 1.0, 'mats': 1.0, 'with': 1.0, 'buying': 1.0, 'on': 1.0, 'think': 1.0, '3': 1.0, 'resisted': 1.0, 'and': 3.0, '1': 1.0, 'year': 1.0, 'kick': 1.0, 'longest': 1.0, 'back': 2.0, 'a': 4.0, 'front': 1.0, 'originally': 1.0, 'ordered': 1.0, 'in': 2.0, 'new': 1.0, 'each': 1.0, 'best': 1.0, 'both': 2.0, 'marks': 1.0, 'driver': 1.0, 'car': 3.0, 'passenger': 1.0, 'seats': 1.0, 'attached': 1.0}
Word element => {'fannina': 1.0, 'feet': 1.0, 'their': 1.0, 'even': 1.0, 'or': 1.0, 'scuffing': 1.0, 'by': 1.0, 'about': 1.0, 'worry': 1.0, 'have': 1.0, 'don': 1.0, 'stretch': 1.0, 'scraping': 1.0, 'top': 1.0, 'around': 1.0, 'able': 1.0, 'now': 1.0, 'at': 2.0, 'adjustable': 1.0, 'straps': 1.0, 'that': 2.0, 'i': 6.0, 'cheap': 1.0, 'and': 2.0, 'do': 1.0, 'like': 3.0, 'snap': 1.0, 'elastic': 1.0, 'leather': 3.0, 'my': 4.0, 'seats': 3.0, 'bought': 2.0, 'ruining': 1.0, 'strap': 1.0, 'are': 1.0, 'kick': 2.0, 't': 1.0, 'go': 2.0, 'was': 1.0, 'mats': 2.0, 'on': 2.0, 'bottom': 1.0, 'of': 2.0, 'to': 5.0, 'seat': 3.0, 'not': 2.0, 'it': 1.0, 'in': 2.0, 'also': 1.0, 'the': 10.0, 'place': 1.0, 'part': 1.0, 'them': 1.0, 'black': 1.0, 'they': 1.0, 'look': 2.0, 'thank': 1.0, 'did': 1.0, 'ruin': 1.0, 'car': 1.0, 'boys': 1.0, 'you': 1.0}
Word element => {'purchase': 1.0, 'will': 1.0, 'also': 1.0, 'but': 1.0, 'only': 1.0, 'it': 1.0, 'with': 3.0, 'before': 1.0, 'installed': 1.0, 'their': 2.0, 'disappointed': 1.0, 'in': 1.0, 'one': 1.0, 'i': 4.0, 'even': 1.0, 'got': 1.0, 'kick': 2.0, 'originally': 1.0, 'received': 1.0, 'products': 1.0, 'providing': 1.0, 'these': 3.0, 'the': 2.0, 'mat': 1.0, 'july': 1.0, 'service': 1.0, 'ripped': 1.0, 'very': 1.0, 'best': 1.0, 'and': 8.0, 'not': 1.0, 'me': 3.0, 'away': 1.0, 'mats': 2.0, 'was': 1.0, 'freddie': 4.0, 'definitely': 1.0, 'sent': 1.0, 'sebbie': 4.0, 'replacements': 3.0, 'again': 1.0, 'you': 1.0, 'seen': 1.0, 'are': 2.0, 'quality': 3.0, 'them': 1.0, 'high': 2.0, 'love': 1.0, 'for': 1.0, 'actually': 1.0, 'product': 1.0, 'customer': 1.0, 'is': 1.0, 'contacted': 1.0, 'have': 1.0, 'right': 1.0, 'thank': 1.0}
Word element => {'on': 1.0, 'mark': 1.0, 'a': 1.0, 'afraid': 1.0, 'am': 1.0, 'i': 2.0, 'pathfinder': 1.0, 'leather': 1.0, 'unhooked': 1.0, 'my': 1.0, 'keep': 1.0, 'the': 8.0, 'good': 1.0, 'off': 1.0, 'little': 1.0, 'of': 2.0, 'bottom': 2.0, 'will': 1.0, 'back': 1.0, 'shoes': 1.0, 'to': 2.0, 'barely': 1.0, 'only': 1.0, 'thing': 1.0, 'because': 1.0, 'seat': 3.0, 'not': 1.0, 'leave': 1.0, 'is': 2.0, 'strap': 2.0, 'works': 1.0, 'long': 1.0, 'make': 1.0, 'around': 1.0, 'enough': 1.0, 'fit': 1.0, 'buckle': 1.0, 'in': 1.0}
Word element => {'expected': 1.0, 'than': 1.0, 'sooner': 1.0, 'arrived': 1.0, 'they': 1.0, 'qualify': 1.0, 'ordered': 1.0, 'looking': 1.0, 'wonderful': 1.0, 'little': 1.0, 'just': 1.0, 'by': 1.0, 'travels': 1.0, 'would': 1.0, 'new': 1.0, 'and': 2.0, 'like': 1.0, 'vehicle': 1.0, 'fronts': 1.0, 'kicking': 1.0, 'who': 1.0, 'absolutely': 1.0, 'or': 1.0, 'worth': 1.0, 'paperback': 1.0, 'for': 4.0, 'to': 1.0, 'seat': 2.0, 'of': 2.0, 'plus': 1.0, 'feet': 1.0, 'keeping': 1.0, 'every': 1.0, 'the': 3.0, 'these': 2.0, 'backs': 1.0, 'young': 1.0, '35': 1.0, 'a': 1.0, 's': 1.0, 'two': 1.0, 'i': 2.0, 'your': 1.0, 'free': 2.0, 'recommend': 1.0, 'anyone': 1.0, 'in': 1.0, 'with': 2.0, 'children': 1.0, 'car': 1.0, 'seats': 1.0, 'back': 1.0, 'unmarked': 1.0, 'an': 1.0, 'penny': 1.0, 'spent': 1.0, 'qualified': 1.0, 'shipping': 2.0, 'order': 1.0, 'so': 1.0}
Word element => {'recommended': 1.0, 'highly': 1.0, 'clean': 1.0, 'so': 1.0, 'super': 1.0, 'something': 1.0, 'perfect': 1.0, 'in': 1.0, 'are': 1.0, 'attach': 1.0, 'simple': 1.0, 'we': 1.0, 'of': 1.0, 'time': 1.0, 'has': 1.0, 'one': 1.0, 'whole': 1.0, 'i': 2.0, 'it': 1.0, 'durable': 1.0, 'this': 2.0, 'car': 3.0, 'back': 1.0, 'toddler': 1.0, 'easy': 2.0, 'last': 1.0, 'new': 1.0, 'his': 1.0, 'a': 2.0, 'sitting': 1.0, 'my': 4.0, 'closer': 1.0, 'the': 3.0, 'and': 5.0, 'product': 1.0, 'bought': 1.0, 'seat': 2.0, 'just': 1.0, 'than': 1.0, 'bit': 1.0, 'feet': 1.0, 'refuse': 1.0, 'was': 2.0, 'wanted': 1.0, 'to': 4.0, 'leave': 1.0}
Word element => {'dirty': 1.0, 'these': 1.0, 'kid': 1.0, 'work': 1.0, 'from': 1.0, 'backs': 1.0, 'to': 1.0, 'getting': 1.0, 'prevent': 1.0, 'my': 2.0, 'really': 1.0, 'seat': 1.0}
Word element => {'if': 1.0, 'off': 1.0, 'take': 1.0, 'install': 1.0, 'easy': 1.0, 'covered': 1.0, 'product': 1.0, 'be': 1.0, 'to': 2.0, 'the': 2.0, 'with': 1.0, 'is': 1.0, 'covers': 1.0, 'fit': 1.0, 'good': 1.0, 'happy': 1.0, 'overall': 1.0, 'nice': 1.0, 'tight': 1.0, 'what': 1.0, 'very': 2.0, 'and': 2.0, 'need': 2.0}
Word element => {'amazon': 1.0, 'via': 1.0, 'from': 1.0, 'purchasing': 1.0, 'you': 1.0, 'thank': 1.0, 'little': 1.0, 'even': 1.0, 'recommend': 1.0, 'was': 1.0, 'sebbie': 1.0, 'there': 1.0, 'easy': 1.0, 'would': 2.0, 'kick': 3.0, 'and': 2.0, 'seats': 3.0, 'highly': 1.0, 'amazing': 1.0, 'car': 1.0, 'in': 1.0, 'i': 5.0, 'card': 1.0, 'pkg': 1.0, 'are': 1.0, 'the': 6.0, 'more': 1.0, 's': 2.0, 'a': 3.0, 'rating': 1.0, '5star': 1.0, 'gave': 1.0, 'that': 2.0, 'were': 1.0, 'they': 2.0, 'mat': 2.0, 'grandkids': 1.0, 'leave': 1.0, 'have': 1.0, 'because': 1.0, 'of': 3.0, 'freddie': 1.0, 'marks': 1.0, 'clean': 1.0, 'but': 1.0, 'scuff': 1.0, 'back': 1.0, 'will': 1.0, 'no': 1.0, 'with': 1.0, 'loved': 1.0, 'purchase': 1.0, 'my': 1.0, 'be': 1.0, 'for': 1.0, 'love': 1.0, 'seat': 1.0, 'to': 1.0, 'put': 1.0, 'on': 1.0, 'how': 1.0, 'received': 1.0, 'lot': 1.0, '2in': 1.0}
Word element => {'over': 1.0, 'stitching': 1.0, 'break': 1.0, 'doesn': 1.0, 'it': 1.0, 'limit': 1.0, 'stretched': 1.0, 'get': 1.0, 'took': 1.0, 'were': 1.0, 'if': 1.0, '34': 1.0, 'd': 2.0, 'seats': 1.0, 'subaru': 1.0, 'tugging': 1.0, 'wife': 1.0, 'have': 2.0, 'time': 1.0, 'bit': 1.0, 'perfect': 1.0, 'doing': 1.0, 'some': 1.0, 'these': 1.0, 'won': 1.0, 'i': 2.0, '4': 1.0, 'about': 1.0, 'oversized': 1.0, 'thing': 1.0, 'wider': 2.0, 'one': 1.0, 'effective': 1.0, 'stop': 1.0, 'back': 1.0, '2': 1.0, 'four': 1.0, 'but': 1.0, 'elastic': 2.0, '3': 1.0, 'pretty': 1.0, 'cost': 1.0, 'yr': 1.0, 'hyundai': 1.0, 'old': 1.0, 'son': 1.0, 'around': 1.0, 'say': 1.0, 'is': 2.0, 'protectors': 2.0, 'kicking': 1.0, 'hopefully': 1.0, 'my': 2.0, 'neither': 1.0, 're': 1.0, 'extremely': 1.0, 'he': 1.0, 'just': 2.0, 'tribeca': 1.0, 'because': 1.0, 'the': 9.0, 'tad': 1.0, 'good': 1.0, 'strap': 2.0, 'are': 2.0, 'and': 5.0, 'only': 1.0, 'do': 1.0, 'drives': 1.0, 'what': 1.0, 'they': 4.0, 'stars': 1.0, 'supposed': 1.0, 'be': 3.0, 'seat': 2.0, 'to': 3.0, 'genesis': 1.0, 't': 2.0, 'could': 2.0, 'a': 4.0, 'at': 2.0, 'longer': 1.0, 'bottom': 2.0}
Word element => {'thanks': 1.0, 'bother': 1.0, 'wants': 1.0, 'bit': 1.0, 'much': 1.0, 'me': 1.0, 'and': 1.0, 'couple': 1.0, '3': 1.0, 'of': 1.0, 'a': 2.0, 'them': 1.0, 'for': 1.0, 'had': 1.0, 'it': 1.0, 'he': 1.0, 'only': 1.0, 'as': 2.0, 'doesn': 1.0, 'weeks': 1.0, 'but': 1.0, 'far': 1.0, 've': 2.0, 'y': 1.0, 'i': 1.0, 'they': 1.0, 'o': 1.0, 'been': 1.0, 't': 1.0, 'great': 1.0, 'can': 1.0, 'so': 1.0, 'kick': 1.0, 'my': 1.0}
Word element => {'muddy': 1.0, 'fine': 1.0, 'up': 1.0, 'are': 1.0, 'weeks': 1.0, 'them': 1.0, 'used': 1.0, 'bought': 1.0, 'fold': 1.0, 'does': 1.0, 'enough': 1.0, 'well': 1.0, 'had': 1.0, 'purpose': 1.0, 'a': 3.0, 'we': 2.0, 'back': 1.0, 'top': 2.0, 'for': 1.0, 'fit': 1.0, 'the': 8.0, 'holding': 1.0, 'drooping': 1.0, 'these': 1.0, 'two': 1.0, 'i': 1.0, 'mat': 1.0, 'that': 1.0, 'initially': 1.0, 'kick': 1.0, 'would': 1.0, 'concerned': 1.0, 'how': 1.0, 'no': 1.0, 'about': 1.0, '3': 1.0, 'on': 3.0, 'they': 2.0, 'to': 1.0, 'seat': 3.0, 'of': 1.0, 'down': 1.0, 'especially': 1.0, 'bottom': 1.0, 'not': 1.0, 'stay': 1.0, '2': 1.0, 'but': 1.0, 'an': 1.0, 'footprints': 1.0, 'elastic': 1.0, 'secure': 1.0, 'rigid': 1.0, 'it': 2.0, 'ensures': 1.0, 'at': 1.0, 'flimsy': 1.0, 'different': 1.0, 'fabric': 1.0, 'have': 2.0, 'and': 4.0, 'corners': 1.0, 'kept': 1.0, 'which': 2.0, 'defeated': 1.0, 'was': 2.0, 'mats': 1.0, 'belt': 1.0, 'more': 1.0, 'is': 1.0}
Word element => {'anyone': 1.0, 'them': 1.0, 'would': 1.0, 'children': 1.0, 'durable': 1.0, 'i': 2.0, 'and': 1.0, 'very': 1.0, 'am': 1.0, 'with': 2.0, 'these': 1.0, 'they': 2.0, 'are': 2.0, 'satisfied': 1.0, 'easy': 1.0, 'to': 2.0, 'recommend': 1.0, 'attach': 1.0}
Word element => {'solution': 1.0, 'better': 1.0, 'a': 1.0, 'for': 1.0, 'an': 2.0, 'elastic': 1.0, 'but': 2.0, 'back': 1.0, 'there': 1.0, 'sore': 1.0, 'cx7': 1.0, 'over': 1.0, 'also': 1.0, 'in': 2.0, 'mazda': 1.0, 'looking': 1.0, 'is': 1.0, '2010': 1.0, 'these': 1.0, 'snug': 1.0, 'i': 1.0, 'mats': 1.0, 'do': 1.0, 'and': 1.0, 'my': 1.0, 'eye': 1.0, 'are': 1.0, 'keeps': 1.0, 'the': 5.0, 'job': 1.0, 'off': 1.0, 'seat': 1.0, 'as': 1.0, 'that': 1.0, 'goes': 1.0, 'seats': 2.0, 'hangs': 1.0, 'out': 1.0, 'plain': 1.0, 'far': 1.0, 'of': 2.0, 'view': 1.0, 'front': 1.0, 'not': 1.0, 'kinda': 1.0, 'so': 1.0, 'band': 1.0, 'it': 1.0, 'mud': 1.0, 'am': 1.0, 'still': 1.0}
Word element => {'ability': 1.0, 'clean': 1.0, 'their': 1.0, 'update': 1.0, 'will': 1.0, 'snowy': 1.0, 'rainy': 1.0, 'during': 1.0, 'not': 1.0, 'weather': 1.0, 'appreciate': 1.0, 'dirt': 1.0, 'black': 1.0, 'see': 1.0, 'do': 1.0, 'and': 2.0, 'show': 1.0, 'the': 2.0, 'it': 1.0, 'with': 1.0, 'product': 1.0, 'attachment': 1.0, 'is': 2.0, 'review': 2.0, 'won': 1.0, 'on': 1.0, 'that': 2.0, 'quite': 1.0, 'to': 1.0, 'seat': 1.0, 'as': 2.0, 'quality': 1.0, 'strength': 1.0, 'stated': 1.0, 'i': 4.0, 'kick': 1.0, 'odessey': 1.0, 'bad': 1.0, 'mat': 1.0, 'straps': 1.0, 'feel': 1.0, 'driver': 1.0, 'passenger': 1.0, 'or': 2.0, 'let': 1.0, 'in': 1.0, 'purchase': 1.0, 'my': 1.0, 'van': 1.0, 'am': 1.0, 'how': 1.0, 'pleased': 1.0, 'a': 1.0, 't': 1.0, 's': 1.0, 'they': 1.0, 'like': 1.0, 'hold': 1.0, 'up': 1.0}
Word element => {'next': 1.0, 'these': 1.0, 'slade': 1.0, 'definitely': 1.0, 'will': 1.0, 'things': 1.0, 'are': 1.0, 'minor': 1.0, 'those': 1.0, 'the': 6.0, 'more': 1.0, 'you': 1.0, 'bottom': 1.0, 'of': 2.0, 'upholstery': 1.0, 'at': 1.0, 'wouldn': 1.0, 'buying': 1.0, 'with': 1.0, 'based': 1.0, 'this': 1.0, 'back': 1.0, 'exception': 1.0, 'but': 1.0, 'coverage': 1.0, 'which': 1.0, 'entire': 1.0, 'great': 1.0, 'nice': 1.0, 'much': 2.0, '09': 1.0, 'covers': 1.0, 'them': 1.0, 't': 2.0, 'escalade': 1.0, 'pretty': 1.0, 'want': 1.0, 'seat': 1.0, 'our': 2.0, 'to': 5.0, 'went': 1.0, 'for': 2.0, 'product': 1.0, 'be': 2.0, 'on': 1.0, 'reviews': 1.0, 'so': 1.0, 'don': 1.0, 'speakers': 1.0, 'colors': 1.0, 'have': 1.0, 'compare': 1.0, 'would': 1.0, 'block': 1.0, 'and': 1.0, 'straight': 1.0, 'match': 1.0}
Word element => {'easily': 1.0, 'wipes': 1.0, 'as': 1.0, 'prefer': 1.0, 'clean': 1.0, 'them': 1.0, 'breaking': 1.0, 'up': 1.0, 'ended': 1.0, 'and': 1.0, 'version': 1.0, 'a': 1.0, 'kept': 1.0, 'previous': 1.0, 'which': 1.0, 'had': 2.0, 'also': 1.0, 'in': 2.0, 'daughter': 1.0, 'than': 1.0, 'better': 1.0, 'find': 1.0, 'my': 1.0, 'more': 1.0, 'the': 2.0, 'clear': 1.0, 'pockets': 2.0, 'putting': 1.0, 'i': 3.0, 'this': 1.0, 'it': 2.0, 'just': 1.0, 'because': 1.0, 'her': 1.0, 'plastic': 1.0, 'feet': 1.0}
Word element => {'recommend': 1.0, 'car': 1.0, 'to': 1.0, 'you': 1.0, 'your': 1.0, 'i': 2.0, 'had': 1.0, 'want': 1.0, 'a': 1.0, 'investment': 1.0, 'is': 1.0, 'prote': 1.0, 'products': 1.0, 'highly': 1.0, 'similar': 1.0, 'and': 1.0, 'it': 1.0, 'great': 1.0, 't': 1.0, 'have': 1.0, 'this': 1.0, 'if': 1.0}
Word element => {'another': 1.0, 'hangs': 1.0, 'daughters': 1.0, 'see': 1.0, 'covers': 1.0, 'it': 2.0, 'this': 1.0, 'feet': 1.0, 'fabric': 1.0, 'rav4': 1.0, 'front': 1.0, 'use': 1.0, 'from': 1.0, 'passenger': 1.0, 'love': 1.0, 'product': 1.0, 'be': 1.0, 'wipe': 1.0, 'behind': 1.0, 'the': 4.0, 'we': 2.0, 't': 1.0, 'of': 1.0, 'seat': 2.0, 'to': 3.0, 'our': 2.0, 'well': 2.0, '2013': 1.0, 'too': 1.0, 'and': 1.0, 'seems': 1.0, 'toyota': 1.0, 'like': 1.0, 'would': 2.0, 'easy': 1.0, 'needed': 2.0, 'strap': 1.0, 'bottom': 1.0, 'down': 1.0, 'if': 2.0, 'you': 3.0, 'on': 1.0, 'can': 2.0, 'but': 1.0, 'that': 1.0, 'avoid': 1.0, 'really': 1.0, 'i': 1.0, 'order': 1.0}
Word element => {'thanks': 1.0, 'us': 1.0, 'mat': 1.0, 'kick': 1.0, 'after': 1.0, 'just': 1.0, 'odyssey': 1.0, 'fine': 1.0, '14': 1.0, 'they': 1.0, 'seats': 1.0, 'and': 1.0, 'the': 2.0, 'are': 1.0, 'fit': 1.0, 'of': 2.0, 'good': 1.0, 'job': 1.0, 'for': 1.0, 'mats': 1.0, 'use': 1.0, 'doing': 1.0, '3': 1.0, 'weeks': 1.0, 'right': 1.0, 'looking': 1.0, 'our': 1.0, 'their': 1.0, 'definitely': 1.0}
Word element => {'an': 1.0, 'made': 1.0, 'was': 1.0, 'if': 1.0, 'edge': 1.0, 'better': 1.0, 'their': 1.0, 'however': 1.0, 'off': 1.0, 'bigger': 1.0, 'keep': 1.0, 'part': 1.0, 'good': 1.0, 'idea': 1.0, 'car': 1.0, 'kids': 1.0, 'this': 2.0, 'bottom': 1.0, 'of': 4.0, 'the': 14.0, 'these': 1.0, 'barley': 1.0, 'and': 3.0, 'size': 1.0, 'probably': 1.0, 'get': 2.0, 'chevy': 1.0, 'for': 1.0, 'fit': 2.0, 'is': 2.0, 'around': 2.0, 'sit': 1.0, 'just': 3.0, 'not': 1.0, 'suv': 2.0, 'they': 3.0, 'well': 1.0, 'a': 3.0, 'would': 2.0, 'can': 1.0, 'most': 1.0, 'work': 2.0, 'top': 1.0, 'back': 3.0, 'i': 2.0, 'or': 2.0, 'sedan': 1.0, 'feet': 2.0, 'loose': 1.0, 'really': 2.0, 'in': 1.0, 'also': 1.0, 'headrest': 1.0, 'have': 2.0, 'traverse': 1.0, 'flat': 1.0, 'bit': 1.0, 'smaller': 1.0, 'pull': 1.0, 'strap': 2.0, 'possible': 1.0, 'hooked': 1.0, 'had': 1.0, 'all': 1.0, 'seat': 4.0, 'as': 2.0, 'to': 2.0, 'it': 4.0, 'my': 2.0, 'tight': 1.0, 'does': 2.0, 'on': 3.0}
Word element => {'seller': 1.0, 'long': 1.0, 'especially': 1.0, 'shoes': 1.0, 'car': 1.0, 'the': 1.0, 'my': 1.0, 'in': 1.0, 'kids': 1.0, 'on': 1.0, 'idea': 1.0, 'reliable': 1.0, 'will': 1.0, 'super': 1.0, 'protect': 1.0, 'seats': 1.0, 'journeys': 1.0, 'and': 1.0, 'from': 1.0, 'mucky': 1.0, 'those': 1.0, 'for': 1.0, 'lazy': 1.0, 'people': 1.0}
Word element => {'purchase': 1.0, 'jetta': 1.0, 'great': 1.0, 'vw': 1.0, 'this': 1.0, 'fit': 1.0, 'i': 1.0, 'our': 1.0, 'they': 1.0, 'these': 1.0, 'with': 2.0, 'super': 1.0, 'them': 1.0, 'fast': 1.0, 'very': 2.0, 'and': 1.0, 'got': 1.0, 'am': 1.0, 'happy': 1.0, 'impressed': 1.0}
Word element => {'book': 1.0, 'original': 1.0, 'realize': 1.0, 'even': 1.0, 'didn': 1.0, 'who': 1.0, 'pointed': 1.0, 'are': 1.0, 'they': 2.0, 'look': 1.0, 'itself': 1.0, 'in': 2.0, 'not': 1.0, 'stay': 1.0, 'onto': 1.0, 'like': 1.0, 'hold': 1.0, 'that': 1.0, 'i': 3.0, 'have': 1.0, 'sister': 1.0, 'because': 1.0, 'to': 2.0, 'seat': 3.0, 'immediately': 1.0, 'up': 1.0, 'of': 2.0, 'obsessed': 1.0, 'is': 2.0, 'these': 2.0, 'he': 1.0, 'it': 1.0, 'bought': 1.0, 'we': 1.0, 't': 2.0, 'a': 4.0, 'old': 1.0, 'brand': 1.0, 'part': 1.0, 'while': 1.0, 'car': 1.0, 'new': 1.0, 'on': 2.0, 'put': 1.0, 'and': 4.0, 'place': 1.0, 'the': 5.0, 'reach': 1.0, 'with': 2.0, 'leather': 1.0, 'vehicle': 1.0, 'my': 3.0, 'seats': 1.0, 'walking': 1.0, 'easily': 1.0, 'am': 1.0, 'when': 1.0, 'back': 1.0, 'scraping': 1.0, 'year': 1.0, 'his': 1.0, 'down': 1.0, 'out': 1.0, 'feet': 1.0, '2': 1.0, 'can': 1.0, 'driver': 1.0, 'husband': 1.0, 'them': 1.0, 'kicking': 1.0, 'wipe': 1.0, 'were': 1.0, 'driving': 2.0}
Word element => {'price': 1.0, 'well': 1.0, 'odyssey': 1.0, 'our': 1.0, 'for': 1.0, 'in': 1.0, 'mats': 1.0, 'were': 1.0, 'easy': 1.0, 'to': 1.0, 'install': 1.0, 'cover': 1.0, 'quality': 1.0, 'and': 1.0, 'honda': 1.0, 'the': 1.0, 'good': 1.0, 'seat': 1.0, 'front': 1.0, 'backs': 1.0}
Word element => {'yukon': 1.0, 'seats': 1.0, 'nice': 1.0, 'of': 1.0, 'big': 1.0, 'sturdy': 1.0, 'cover': 1.0, 'that': 1.0, 'is': 1.0, 'wipe': 1.0, 'my': 1.0, 'the': 1.0, 'are': 1.0, 'enough': 1.0, 'fabric': 1.0, 'these': 1.0, 'easy': 1.0, 'to': 2.0, 'mats': 1.0}
Word element => {'you': 1.0, 'thank': 1.0, 'kids': 1.0, 'unhappy': 1.0, 'or': 1.0, 'bored': 1.0, 'abuse': 1.0, 'lot': 1.0, 'in': 1.0, 'be': 1.0, 'but': 1.0, 'how': 1.0, 'dirt': 1.0, 'from': 2.0, 'car': 1.0, 'great': 1.0, 'take': 1.0, 'service': 1.0, 'able': 1.0, 'winter': 1.0, 'months': 1.0, 'bought': 1.0, 'product': 1.0, 'high': 1.0, 'fast': 1.0, 'during': 1.0, 'a': 1.0, 't': 1.0, 'we': 2.0, 'precipitation': 1.0, 'seats': 1.0, 'and': 3.0, 'customer': 1.0, 'protect': 1.0, 'to': 5.0, 'give': 1.0, 'peace': 1.0, 'long': 1.0, 'of': 2.0, 'don': 1.0, 'put': 1.0, 'on': 1.0, 'resist': 1.0, 'have': 1.0, 'children': 1.0, 'leather': 1.0, 'mind': 1.0, 'with': 1.0, 'so': 1.0, 'cannot': 1.0, 'say': 1.0, 'mats': 1.0, 'would': 1.0, 'quality': 1.0, 'them': 2.0, 'kicking': 1.0, 'the': 1.0, 'playing': 1.0, 'they': 1.0, 'seem': 1.0}
Word element => {'price': 1.0, 'great': 1.0, 'a': 1.0, 'perfect': 1.0, 'was': 1.0, 'and': 2.0, 'there': 1.0, 'out': 1.0, 'dirt': 1.0, 'they': 1.0, 'this': 1.0, 'fit': 1.0, 'the': 1.0, 'honda': 1.0, 'my': 1.0, 'odyssey': 1.0, '2010': 1.0, 'to': 1.0, 'well': 1.0, 'of': 1.0, 'keep': 1.0, 'really': 1.0, 'needed': 1.0}
Word element => {'fast': 1.0, 'free': 1.0, 'away': 1.0, 'right': 1.0, 'pick': 1.0, 'ups': 1.0, 'label': 1.0, 'sent': 1.0, 'they': 1.0, 'sebbie': 1.0, 'freddie': 1.0, 'returns': 1.0, 'top': 1.0, 'that': 1.0, 'had': 1.0, 'if': 1.0, 'ours': 1.0, 'gone': 1.0, 'including': 1.0, 'on': 2.0, 'for': 1.0, 'fit': 2.0, 'around': 2.0, 'long': 1.0, 'are': 1.0, 'strap': 3.0, 'easy': 2.0, 'headrests': 2.0, 'adjustable': 2.0, 'the': 9.0, 'with': 2.0, 'elastic': 1.0, 'up': 1.0, 'don': 1.0, 'front': 1.0, 'didn': 1.0, 'though': 1.0, 'have': 3.0, 'my': 1.0, 'enough': 1.0, 'off': 1.0, '2005': 1.0, 'types': 1.0, 'and': 4.0, 'seats': 3.0, 'in': 1.0, 'also': 1.0, 'expedition': 1.0, 'material': 1.0, '100': 1.0, 'adjust': 1.0, 'because': 1.0, 'kick': 2.0, 'exactly': 1.0, 'super': 1.0, 'would': 2.0, 'wanted': 1.0, 'ford': 1.0, 'wipe': 1.0, 'refund': 1.0, 'doesn': 1.0, 'mats': 2.0, 'was': 1.0, 'a': 1.0, 'could': 1.0, 'we': 1.0, 't': 3.0, 'go': 1.0, 'return': 1.0, 'way': 1.0, 'seemed': 1.0, 'all': 2.0, 'to': 3.0, 'as': 1.0, 'i': 1.0, 'bottom': 1.0, 'of': 1.0}
Word element => {'term': 1.0, 'hold': 1.0, 'will': 1.0, 'how': 1.0, 'speak': 1.0, 'can': 1.0, 'week': 1.0, 'wouldn': 1.0, 'pockets': 1.0, 'didn': 1.0, 'nonsense': 1.0, 'by': 1.0, 'her': 3.0, 'is': 1.0, 'around': 1.0, 'just': 2.0, 'seats': 3.0, 'loops': 1.0, 'front': 1.0, 'would': 1.0, 've': 1.0, 'one': 1.0, 'year': 1.0, 'almost': 1.0, 'had': 1.0, 'kick': 2.0, '3': 1.0, 'think': 1.0, 'my': 6.0, 'vehicle': 1.0, 'a': 3.0, 's': 1.0, 'since': 2.0, 'back': 2.0, 'top': 1.0, 'star': 1.0, 'work': 2.0, 'but': 2.0, 'was': 2.0, 'effective': 1.0, 'for': 2.0, 'old': 1.0, 'well': 1.0, 'feet': 1.0, 'putting': 1.0, 'i': 10.0, 'little': 1.0, 'very': 1.0, 'no': 1.0, 'some': 1.0, 'these': 3.0, 'up': 1.0, 'affordable': 1.0, 'worried': 1.0, 'new': 1.0, 'wide': 1.0, 'anyone': 1.0, 'and': 4.0, 'any': 2.0, 'seat': 1.0, 'to': 2.0, 'great': 2.0, 'long': 1.0, 'on': 3.0, 'near': 1.0, 'hunt': 1.0, 'decided': 1.0, 'kiddo': 1.0, 'have': 2.0, 'leave': 1.0, 'handles': 1.0, 'exactly': 1.0, 'they': 3.0, 'cover': 1.0, 'off': 1.0, 'those': 1.0, 'fine': 1.0, 'bottom': 1.0, 'about': 2.0, 'minivan': 1.0, 'or': 1.0, 'what': 1.0, 'wanted': 1.0, 'want': 2.0, 'anything': 1.0, 'enticing': 1.0, 'don': 1.0, 'drawing': 1.0, 'perfect': 1.0, 'odyssey': 1.0, 'of': 3.0, 'the': 5.0, 'attention': 1.0, 'alone': 1.0, 'mats': 4.0, 'has': 1.0, 'solution': 1.0, 'novelty': 1.0, 'while': 1.0, 'only': 2.0, 'took': 1.0, 'that': 4.0, 'because': 1.0, 'are': 1.0, 't': 4.0, 'fit': 1.0, 'fairly': 1.0, 'thin': 1.0}
Word element => {'price': 1.0, 'or': 1.0, 'inch': 2.0, 'an': 1.0, 'matt': 1.0, 'wish': 1.0, '2': 1.0, 'but': 1.0, 'on': 2.0, 'uncomfortable': 1.0, 'of': 2.0, 'between': 1.0, 'passenger': 1.0, 'at': 1.0, 'minivan': 1.0, 'another': 1.0, 'my': 1.0, 'toyota': 1.0, 'in': 3.0, 'strap': 2.0, 'get': 1.0, 'groove': 1.0, 'and': 3.0, 'lower': 1.0, 'give': 1.0, 'not': 2.0, 'good': 2.0, 'that': 2.0, 'into': 1.0, 'sit': 1.0, 'study': 1.0, 'was': 3.0, 'all': 2.0, 'our': 1.0, 'seat': 3.0, 'to': 4.0, 'had': 2.0, 'hard': 1.0, 'only': 1.0, 'band': 1.0, 'it': 3.0, 'the': 15.0, 'for': 1.0, 'product': 2.0, 'around': 1.0, 'is': 2.0, 'back': 1.0, 'top': 1.0, 'sienna': 1.0, 'barely': 1.0, 'i': 2.0, 'fasten': 1.0, 'adjust': 1.0, 'so': 1.0, 'mat': 1.0, 'still': 2.0, 'came': 1.0, 'longer': 1.0, 'complaint': 1.0, 'bottom': 5.0, 'down': 1.0, 'does': 1.0, 'able': 1.0, 'clip': 1.0, 'elastic': 1.0, 'a': 1.0, 'go': 1.0}
Word element => {'in': 1.0, 'these': 1.0, 'so': 1.0, 'nicely': 1.0, 'blend': 1.0, 'seats': 2.0, 'not': 1.0, 'your': 1.0, 'said': 1.0, 'black': 1.0, 'are': 1.0, 'my': 1.0, 'more': 1.0, 'inexpensive': 1.0, 'great': 1.0, 'way': 1.0, 'can': 1.0, 'much': 1.0, 'be': 1.0, 'to': 1.0, 'protect': 1.0}
Word element => {'reach': 1.0, 'grandchildren': 1.0, 'children': 1.0, 'would': 1.0, 'shoes': 1.0, 'with': 1.0, 'muddy': 1.0, 'to': 2.0, 'can': 1.0, 'works': 1.0, 'great': 1.0, 'back': 2.0, 'protect': 1.0, 'the': 4.0, 'dirty': 1.0, 'growing': 1.0, 'recommend': 1.0, 'seat': 2.0, 'of': 2.0, 'who': 1.0, 'anyone': 1.0, 'passenger': 2.0, 'from': 1.0}
Word element => {'ve': 1.0, 'protection': 1.0, 'with': 1.0, 'm': 1.0, 'easy': 1.0, 'they': 3.0, 'the': 1.0, 'these': 1.0, 'on': 1.0, 'protect': 1.0, 'find': 1.0, 'black': 1.0, 'kick': 1.0, 'exactly': 1.0, 'to': 3.0, 'was': 2.0, 'provided': 1.0, 'amazon': 1.0, 'i': 3.0, 'were': 2.0, 'what': 1.0, 'feet': 1.0, 'looking': 1.0, 'mats': 1.0, 'for': 1.0, 'my': 1.0, 'happy': 2.0, 'leather': 1.0, 'install': 1.0, 'seats': 1.0, 'very': 1.0, 'from': 1.0, 'little': 1.0}
Word element => {'buy': 1.0, 'would': 1.0, 'being': 1.0, 'chair': 1.0, 'into': 1.0, 'due': 1.0, 'short': 2.0, 'is': 1.0, 'really': 1.0, 'push': 1.0, 'strap': 2.0, 'the': 7.0, '2011': 1.0, 'own': 1.0, 'it': 3.0, 'hard': 2.0, 'seats': 1.0, 'take': 1.0, 'very': 1.0, 'x5': 1.0, 'was': 1.0, 'had': 1.0, 'attached': 1.0, 'now': 1.0, 'get': 1.0, 'too': 2.0, 'and': 1.0, 'front': 2.0, 'them': 2.0, 'bmw': 1.0, 'car': 2.0, 'button': 1.0, 'i': 1.0, 'pull': 1.0, 'a': 2.0, 'we': 1.0, 'could': 1.0, 'click': 1.0, 'can': 1.0, 'at': 1.0, 'bottom': 1.0, 'of': 1.0, 'to': 4.0, 'our': 1.0, 'seat': 2.0, 'because': 1.0, 'not': 2.0, 'again': 1.0, 'when': 1.0, 'barely': 1.0, 'you': 3.0, 'in': 2.0, 'feel': 1.0, 'your': 1.0, 'back': 1.0}
Word element => {'that': 1.0, 'needed': 1.0, 'so': 1.0, 'buckle': 1.0, 'fit': 1.0, 'did': 1.0, 'extra': 1.0, 'was': 1.0, 'not': 2.0, 'explorer': 1.0, 'words': 1.0, 'the': 1.0, 'bottom': 1.0, 'on': 1.0, 'these': 1.0, 'our': 1.0, 'good': 1.0, 'ford': 1.0, 'seats': 1.0}
Word element => {'value': 1.0, 'good': 1.0, 'have': 1.0, 'then': 1.0, 'for': 1.0, 'find': 1.0, 'can': 1.0, 'you': 1.0, 'coupon': 1.0, 'if': 1.0, 'but': 1.0, 'high': 1.0, 'well': 1.0, 'seat': 1.0, 'seats': 1.0, 'nice': 1.0, 'they': 1.0, 'the': 1.0, 'sport': 1.0, 'these': 3.0, 'our': 1.0, 'and': 1.0, 'bmw': 1.0, 'are': 1.0, 'fit': 1.0, 'x3': 1.0, 'price': 1.0, 'with': 1.0, 'really': 2.0, 'is': 1.0, 'to': 1.0, 'normal': 1.0, '2013': 1.0, 'little': 1.0, 'protectors': 1.0, 'bit': 1.0}
Word element => {'seats': 1.0, 'their': 1.0, 'on': 1.0, 'is': 1.0, 'them': 1.0, 'mats': 2.0, 'breeze': 1.0, 'protect': 1.0, 'would': 1.0, 'durable': 1.0, 'very': 1.0, 'and': 1.0, 'are': 1.0, 'great': 1.0, 'these': 2.0, 'i': 1.0, 'recommend': 1.0, 'of': 1.0, 'was': 1.0, 'to': 2.0, 'anyone': 1.0, 'who': 1.0, 'trying': 1.0, 'put': 1.0, 'back': 1.0}
Word element => {'ugly': 1.0, 'do': 1.0, 'nothing': 1.0, 'back': 1.0, 'the': 1.0, 'i': 2.0, 'can': 1.0, 'it': 3.0, 'about': 1.0, 's': 1.0, 'couldnt': 1.0, 'get': 1.0, 'to': 1.0, 'and': 1.0, 'hanging': 1.0, 'work': 1.0, 'so': 1.0, 'but': 1.0, 'just': 1.0, 'in': 1.0}
Word element => {'great': 1.0, 'worked': 1.0, 'they': 1.0, 'these': 1.0, 'grandchildren': 1.0, 'young': 1.0, 'i': 2.0, 'leather': 1.0, 'seats': 1.0, 'had': 1.0, 'just': 1.0, 'bought': 2.0, 'a': 1.0, 'new': 1.0, 'car': 1.0, '2': 1.0, 'with': 2.0, 'so': 1.0}
Word element => {'thanks': 1.0, 'definitely': 1.0, 'product': 1.0, 'pretty': 1.0, 'trick': 1.0, 'very': 1.0, 'been': 1.0, 'for': 2.0, 'do': 1.0, 'searching': 1.0, 'transaction': 1.0, 'exactly': 1.0, 'had': 1.0, 'to': 1.0, 'what': 1.0, 'beyond': 1.0, 'i': 1.0, 'perfect': 1.0, 'well': 1.0, 'a': 2.0, 'my': 1.0, 'great': 1.0, 'the': 3.0, 'these': 1.0, 'basic': 1.0, 'are': 3.0, 'full': 1.0, 'they': 2.0, 'protect': 1.0, 'mat': 1.0, 'above': 1.0, 'but': 1.0, 'back': 1.0, 'of': 1.0, 'seats': 1.0, 'finally': 1.0, 'packaged': 1.0}
Word element => {'guys': 1.0, 'other': 1.0, 'buy': 1.0, 'thanks': 1.0, 'will': 1.0, 'for': 1.0, 'awesome': 1.0, 'cars': 1.0, 'our': 2.0, 'way': 1.0, 'great': 1.0, 'to': 1.0, 'protect': 1.0, 'suv': 1.0, 'price': 1.0, 'and': 1.0, 'quality': 1.0, 'good': 1.0}
Word element => {'only': 1.0, 'seats': 2.0, 'slight': 1.0, 'my': 3.0, 'cause': 1.0, 'feet': 1.0, 'mud': 1.0, 'fat': 1.0, 'upset': 1.0, 'little': 3.0, 'from': 1.0, 'big': 2.0, 'great': 2.0, 'these': 1.0, 'ones': 1.0, 'price': 1.0, 'it': 2.0, 'band': 1.0, 'a': 6.0, 'keep': 1.0, 'really': 1.0, 'is': 1.0, 'leather': 1.0, 'elastic': 1.0, 'work': 1.0, 'but': 1.0, 'useful': 1.0, 'for': 3.0, 'product': 1.0, 'mats': 1.0, 'was': 1.0, 'real': 1.0, 'negative': 1.0, 'that': 1.0, 'just': 1.0, 'difficult': 1.0, 'not': 1.0, 'so': 1.0, 'get': 1.0, 'any': 1.0, 'to': 3.0, 'all': 1.0, 'way': 1.0, 'down': 1.0, 'off': 1.0, 'enough': 1.0, 'the': 3.0, 'deal': 1.0}
Word element => {'one': 1.0, 'per': 1.0, 'order': 1.0, 'to': 1.0, 'need': 1.0, 'only': 1.0, 'you': 1.0, 'car': 2.0, 'top': 1.0, 'how': 1.0, 'being': 1.0, 'things': 1.0, 'not': 1.0, 'does': 1.0, 'picture': 1.0, 'good': 1.0, 'held': 2.0, 'latch': 1.0, 'odyssey': 1.0, 'protector': 1.0, 'explain': 1.0, 'is': 3.0, 'expect': 1.0, 'second': 1.0, 'it': 1.0, 'this': 1.0, 'up': 2.0, 'metal': 1.0, 'seats': 2.0, 'stuff': 1.0, 'on': 1.0, 'support': 1.0, 'set': 2.0, 'honda': 1.0, 'my': 1.0, 'the': 6.0, 'two': 1.0, 'i': 2.0, 'would': 1.0, 'that': 3.0, 'large': 1.0, 'by': 1.0, 'm': 1.0, 'headrest': 1.0, 'also': 1.0, 'in': 1.0, 'ordering': 1.0, 'a': 2.0, 'of': 1.0, 'pair': 1.0, 'at': 1.0, 'keep': 1.0, 'mind': 1.0, 'fit': 1.0, 'for': 1.0}
Word element => {'love': 1.0, 'needed': 1.0, 'we': 2.0, 'them': 1.0, 'loop': 1.0, 'it': 2.0, 'durable': 1.0, 'belt': 2.0, 'a': 1.0, 'like': 1.0, 'do': 1.0, 'and': 2.0, 'not': 1.0, 'lower': 1.0, 'seats': 1.0, 'attachment': 1.0, 'material': 1.0, 'bad': 1.0, 'suitable': 1.0, 'car': 1.0, 'wire': 1.0, 'look': 1.0, 'to': 2.0, 'through': 1.0, 'the': 1.0, 'on': 1.0, 'is': 1.0, 'side': 1.0, 'put': 1.0, 'but': 1.0}
Word element => {'great': 1.0, 'works': 1.0}
Word element => {'car': 1.0, 'my': 1.0, 'be': 1.0, 'll': 1.0, 'i': 1.0, 'too': 1.0, 'right': 1.0, 'is': 1.0, 'another': 1.0, 'price': 1.0, 'so': 1.0, 'entire': 1.0, 'they': 2.0, 'cover': 1.0, 'that': 1.0, 'large': 1.0, 'these': 1.0, 'great': 1.0, 'the': 4.0, 'are': 2.0, 'for': 1.0, 'purchasing': 1.0, 'mats': 1.0, 'them': 1.0, 'seat': 1.0, 'keep': 1.0, 'back': 1.0, 'elastic': 1.0, 'set': 1.0, 'of': 1.0, 'bottom': 1.0, 'and': 1.0, 'belted': 1.0, 'top': 1.0, 'husbands': 1.0, 'in': 1.0, 'place': 1.0}
Word element => {'clean': 1.0, 'from': 1.0, 'kickmats': 1.0, 'i': 1.0, 'old': 1.0, 'to': 1.0, 'that': 1.0, 'than': 1.0, 'easy': 1.0, 'purchase': 1.0, 'r': 1.0, 'bought': 1.0, 'better': 1.0, 'the': 3.0, 'great': 1.0, 'babies': 1.0, 'back': 1.0, 'front': 1.0, 'is': 1.0, 'and': 1.0, 'install': 1.0, 'seats': 1.0, 'keeps': 1.0, 'of': 1.0}
Word element => {'purchase': 1.0, 'seats': 1.0, 'little': 1.0, 'a': 2.0, 'was': 2.0, 'just': 1.0, 'seat': 1.0, 'truck': 1.0, 'large': 1.0, 'bottom': 1.0, 'of': 2.0, 'worked': 1.0, 'cleaning': 1.0, 'my': 1.0, 'seated': 1.0, 'for': 3.0, 'than': 1.0, 'wish': 1.0, 'the': 5.0, 'these': 1.0, 'great': 2.0, 'material': 1.0, 'longer': 1.0, 'is': 2.0, 'perfect': 1.0, 'it': 1.0, 'only': 1.0, 'our': 1.0, 'that': 3.0, 'bigger': 1.0, 'easy': 1.0, 'strap': 1.0, 'back': 1.0, 'elastic': 1.0, 'other': 1.0, 'along': 1.0, 'goes': 1.0}
Word element => {'seat': 1.0, 'hit': 1.0, 'still': 1.0, 'feet': 1.0, 'or': 1.0, 'weather': 1.0, 'kids': 1.0, 'by': 1.0, 'far': 1.0, 'protective': 1.0, 'this': 1.0, 'have': 1.0, 'fit': 1.0, 'the': 7.0, 'side': 1.0, 'is': 1.0, 'covers': 2.0, 'a': 1.0, 'crack': 1.0, 'one': 1.0, 'had': 2.0, 'in': 2.0, 'curl': 1.0, 'other': 1.0, 'we': 2.0, 'best': 2.0, 'several': 1.0, 'subaru': 1.0, 'cold': 1.0, 'outback': 1.0, 'and': 2.0, 'either': 1.0}
Word element => {'feet': 1.0, 'old': 1.0, 'updated': 1.0, 'product': 2.0, 'much': 1.0, 'year': 1.0, 'very': 1.0, 'and': 2.0, 'up': 1.0, 'to': 1.0, 'was': 1.0, 'durable': 1.0, 'older': 1.0, 'my': 1.0, 'however': 1.0, 'update': 1.0, '2013': 1.0, 'august': 1.0, 's': 1.0, 'tougher': 1.0, 'should': 1.0, 'not': 1.0, 'stand': 1.0, 'current': 1.0, 'is': 1.0, 'well': 1.0, '3': 1.0}
Word element => {'were': 1.0, 'made': 2.0, 'like': 1.0, 'knew': 1.0, 'never': 1.0, 'get': 1.0, 'and': 3.0, 'me': 1.0, 'seats': 1.0, 'kicked': 1.0, 'her': 1.0, 'car': 3.0, 'back': 3.0, 'that': 1.0, 'niece': 1.0, 'i': 3.0, 'love': 3.0, 'for': 2.0, 'was': 1.0, 'mats': 1.0, 'them': 5.0, 'the': 4.0, 'my': 3.0, 'something': 1.0, 'new': 2.0, 'cousin': 1.0, 'does': 1.0, 'because': 1.0, 'just': 1.0, 'earlier': 1.0, 'of': 2.0, 'well': 1.0, 'has': 1.0, 'got': 1.0, 'month': 1.0, 'she': 3.0, 'it': 1.0, 'looked': 2.0, 'this': 3.0, 'they': 1.0, 'dirty': 1.0, 'ever': 1.0, 'grandson': 1.0, 'so': 2.0, 'after': 1.0, 'said': 1.0, 'a': 2.0, 'go': 1.0, 'about': 2.0, 'told': 2.0, 'thing': 1.0, 'seat': 1.0, 'to': 2.0, 'had': 1.0, 'same': 1.0, 'being': 1.0, 'kick': 1.0}
Word element => {'waiting': 1.0, 'am': 1.0, 'i': 1.0, 'long': 1.0, 'too': 1.0, 'taking': 1.0, 'is': 1.0, 'process': 1.0, 'return': 1.0, 'however': 1.0, 'very': 1.0, 'seemed': 1.0, 'my': 1.0, 'the': 5.0, 'in': 1.0, 'light': 1.0, 'seats': 1.0, 'refund': 1.0, 'and': 2.0, 'maybe': 1.0, 'other': 1.0, 'fit': 2.0, 'around': 1.0, 'good': 1.0, 'did': 1.0, 'x5': 2.0, 'not': 2.0, 'material': 1.0, 'was': 1.0, 'still': 1.0, 'straps': 1.0, 'quality': 1.0, 'but': 1.0, 'bottom': 1.0, 'durable': 1.0, 'it': 1.0, 'may': 1.0, 'itself': 1.0, 'suvs': 1.0}
Word element => {'recommend': 1.0, 'highly': 1.0, 'it': 3.0, 'protection': 1.0, 'love': 1.0, 'mats': 1.0, 'them': 1.0, 'a': 1.0, 'and': 2.0, 'seats': 1.0, 'back': 1.0, 'nice': 1.0, 'my': 1.0, 'nicely': 1.0, 'the': 1.0, 'just': 1.0, 'received': 1.0, 'against': 1.0, 'shoes': 1.0, 'i': 3.0, 'embraces': 1.0, 'kick': 1.0, 'would': 1.0, 'gives': 1.0, 'muddy': 1.0}
Word element => {'purchase': 1.0, 'i': 5.0, 'whole': 1.0, 'to': 4.0, 'it': 1.0, 'weren': 1.0, 'this': 1.0, 'at': 1.0, 'clean': 1.0, 'them': 1.0, 'seats': 2.0, 'installed': 1.0, 'so': 2.0, 'after': 1.0, 'had': 1.0, 'thought': 1.0, 'far': 1.0, 'they': 3.0, 'these': 1.0, 'the': 6.0, 'first': 1.0, 'nicely': 1.0, 'have': 1.0, 'was': 2.0, 'mats': 1.0, 'wonders': 1.0, 'keeping': 1.0, 'in': 1.0, 'm': 1.0, 'of': 1.0, 'worked': 1.0, 'back': 2.0, 'with': 1.0, 'elastic': 1.0, 'stretch': 1.0, 't': 1.0, 'going': 2.0, 'could': 1.0, 'slide': 1.0, 'covered': 1.0, 'down': 1.0, 'fit': 2.0, 'afraid': 1.0, 'rip': 1.0, 'did': 1.0, 'really': 1.0, 'max': 1.0, 'happy': 1.0}
Word element => {'product': 1.0, 'service': 1.0, 'and': 1.0, 'great': 1.0}
Word element => {'to': 1.0, 'look': 1.0, 'great': 1.0, 'perfectly': 1.0, 'match': 1.0, 'we': 1.0, 'easy': 1.0, 'suv': 1.0, 'clean': 1.0, 'end': 1.0, 'and': 2.0, 'too': 1.0, 'put': 1.0, 'into': 1.0, 'new': 1.0, 'these': 1.0, 'our': 1.0, 'they': 1.0, 'high': 1.0}
Word element => {'of': 1.0, 'damage': 1.0, 'car': 1.0, 'to': 2.0, 'going': 1.0, 'are': 1.0, 'save': 1.0, 'grandkids': 1.0, 'active': 1.0, '4': 1.0, 'have': 1.0, 'know': 1.0, 'from': 1.0, 'very': 2.0, 'perfectly': 1.0, 'and': 2.0, 'after': 1.0, 'quickly': 1.0, 'front': 1.0, 'a': 1.0, 'kick': 2.0, 'got': 1.0, 'back': 1.0, 'will': 1.0, 'my': 2.0, 'received': 1.0, 'fit': 1.0, 'new': 1.0, 'ordering': 1.0, 'mats': 2.0, 'love': 1.0, 'it': 1.0, 'i': 5.0, 'the': 2.0, 'these': 1.0, 'interior': 1.0, '2015': 1.0, 'outback': 1.0, 'has': 1.0, 'seats': 1.0, 'light': 1.0, 'them': 1.0, 'ivory': 1.0}
Word element => {'install': 1.0, 'to': 1.0, 'easy': 1.0, 'very': 1.0, 'job': 1.0, 'done': 1.0, 'gotten': 1.0, 'kick': 1.0, 'bit': 1.0, 'so': 1.0, 'for': 2.0, 'mats': 1.0, 'a': 1.0, 'thin': 1.0, 'of': 2.0, 'sets': 1.0, 'both': 1.0, 'our': 1.0, 'cars': 1.0, 'they': 2.0, 'bought': 1.0, 'theses': 1.0, 'but': 1.0, 'far': 1.0, 'i': 1.0, 'are': 1.0, 'my': 1.0, 'the': 1.0, '2': 1.0, 'liking': 1.0, 'have': 1.0}
Word element => {'get': 1.0, 'kids': 1.0, 'you': 1.0, 'if': 1.0, 'market': 1.0, 'hi': 1.0, 'the': 1.0, 'like': 1.0, 'it': 2.0, 'i': 2.0, 'known': 1.0, 'was': 2.0, 'would': 1.0, 'before': 1.0, 'this': 1.0, 'have': 2.0, 'on': 1.0}
Word element => {'and': 1.0, 'better': 1.0, 'defective': 1.0, 'great': 2.0, 'much': 1.0, 'product': 2.0, 'old': 1.0, 'work': 1.0, 'ones': 1.0, 'was': 2.0, 'sent': 1.0, 'a': 1.0, 'new': 2.0, 'made': 1.0, 'are': 1.0, 'the': 2.0, 'because': 1.0, 'i': 1.0, 'one': 1.0}
Word element => {'reach': 1.0, 'can': 1.0, 'kick': 1.0, 'to': 2.0, 'who': 1.0, 'back': 1.0, 'toddler': 1.0, 'car': 1.0, 'the': 2.0, 'high': 1.0, 'my': 1.0, 'love': 1.0, 'a': 1.0, 'protect': 1.0, 'have': 1.0, 'rambunctious': 1.0, 'wish': 1.0, 'that': 1.0, 'something': 1.0, 'i': 2.0, 'protects': 1.0, 'there': 1.0, 'is': 1.0, 'headrest': 1.0, 'this': 1.0, 'only': 1.0, 'he': 1.0}
Word element => {'of': 1.0, 'no': 1.0, 'works': 1.0, 'snap': 1.0, 'did': 1.0, 'limit': 1.0, 'as': 1.0, 'very': 1.0, 'break': 1.0, 'and': 1.0, 'back': 1.0, 'but': 1.0, 'work': 1.0, 'designed': 1.0, 'they': 1.0, 'little': 1.0, '2013': 1.0, 'for': 1.0, 'feet': 1.0, '4runner': 1.0, 'over': 1.0, 'stretched': 1.0, 'my': 2.0, 'these': 1.0, 'great': 1.0, 'the': 4.0, 'flexible': 1.0, 'bought': 1.0, 'was': 1.0, 'to': 2.0, 'install': 1.0, 'easy': 1.0, 'strap': 1.0, 'that': 1.0, 'goes': 1.0, 'hitting': 1.0, 'not': 1.0, 'seat': 2.0}
Word element => {'purpose': 1.0, 'its': 1.0, 'to': 1.0, 'liked': 1.0, 'product': 1.0, 'be': 2.0, 'have': 1.0, 'maybe': 1.0, 'would': 2.0, 'job': 1.0, 'negative': 1.0, 'i': 1.0, 'does': 1.0, 's': 1.0, 'little': 2.0, 'bigger': 1.0, 'and': 1.0, 'this': 1.0, 'it': 3.0, 'only': 1.0, 'a': 2.0, 'thicker': 1.0, 'that': 1.0, 'serves': 1.0, 'my': 1.0, 'remark': 1.0}
Word element => {'treasure': 1.0, 'of': 1.0, 'kick': 1.0, 'every': 1.0, 'with': 1.0, 'value': 1.0, 'car': 1.0, 'feel': 1.0, 'especially': 1.0, 'suv': 3.0, 'depreciate': 1.0, 'cars': 1.0, 'have': 2.0, 'honest': 1.0, 'sedan': 2.0, 'good': 2.0, 'was': 1.0, 'the': 4.0, 'ok': 1.0, 'so': 3.0, 'it': 2.0, 'more': 1.0, 'is': 1.0, 'asked': 1.0, 'your': 2.0, 'guy': 1.0, 'perfect': 1.0, 'tight': 1.0, 'one': 1.0, 'review': 1.0, 'them': 1.0, 'i': 1.0, 'buy': 1.0, 'here': 1.0, 'product': 1.0, 'for': 1.0, 'fit': 2.0, 'should': 1.0, 'and': 4.0, 'seats': 1.0, 'are': 1.0, 'overall': 1.0, 'bulkier': 1.0, 'its': 3.0, 'works': 1.0, '2': 1.0, 'but': 1.0, 'we': 1.0, 'a': 6.0, 'could': 1.0, 'size': 1.0, 'far': 1.0, 'hold': 1.0, 'little': 2.0, 'in': 4.0, 'kicks': 1.0, 'they': 1.0, 'when': 1.0, 'you': 2.0}
Word element => {'keeping': 1.0, 'job': 1.0, 'good': 1.0, 'car': 2.0, 'are': 1.0, 'defect': 1.0, 'be': 1.0, 'this': 1.0, 'attach': 1.0, 'new': 1.0, 'around': 1.0, 'at': 1.0, 'no': 1.0, 'straps': 1.0, 'all': 1.0, 'do': 1.0, 'and': 1.0, 'me': 1.0, 'get': 1.0, 'would': 1.0, 'kick': 1.0, 'themselves': 1.0, 'place': 1.0, 'seat': 1.0, 'difficult': 1.0, 'little': 1.0, 'great': 1.0, 'these': 1.0, 'the': 4.0, 'my': 4.0, 'a': 3.0, 'for': 1.0, 'mats': 2.0, 'clean': 1.0, 'them': 2.0, 'way': 1.0, 'seats': 1.0, 'but': 1.0, 'secure': 1.0, '34': 2.0, 'of': 4.0, 'bottom': 2.0, 'there': 1.0, 'to': 3.0, 'was': 1.0}
Word element => {'would': 1.0, 'pleased': 1.0, 'm': 1.0, 'on': 1.0, 'them': 1.0, 'and': 1.0, 'getting': 1.0, 'no': 1.0, 'pretty': 1.0, 'our': 1.0, 'be': 1.0, 'had': 1.0, 'to': 1.0, 'these': 2.0, 'the': 3.0, 'again': 1.0, 'are': 1.0, 'simple': 1.0, 'mats': 1.0, 'straps': 1.0, 'good': 1.0, 'snugly': 1.0, 'trouble': 1.0, 'but': 2.0, 'quality': 1.0, 'seats': 1.0, 'very': 2.0, 'construction': 1.0, 'fit': 1.0, 'seems': 1.0, 'in': 1.0, 'mazda': 1.0, '5': 1.0, 'buy': 1.0, 'i': 2.0}
Word element => {'easy': 1.0, 'surprisingly': 1.0, 'it': 2.0, 'mats': 1.0, 'was': 1.0, 'recommend': 1.0, 'able': 1.0, 'fabric': 2.0, 'have': 2.0, 'driver': 1.0, 'car': 1.0, 'definitely': 1.0, 'now': 1.0, 'had': 1.0, 'is': 1.0, 'permanent': 1.0, 'with': 1.0, '100': 1.0, 'shoes': 1.0, 'he': 1.0, 'this': 1.0, 'toddlers': 1.0, 'damage': 1.0, 'kick': 1.0, 'his': 1.0, 'are': 1.0, 'covered': 1.0, 'forward': 1.0, 'back': 1.0, 'will': 1.0, 'brand': 1.0, 'we': 2.0, 'a': 1.0, 'son': 1.0, 'facing': 1.0, 'seats': 2.0, 'and': 2.0, 'reach': 1.0, 'the': 5.0, 'of': 2.0, 'besides': 1.0, 'new': 1.0, 'would': 2.0, 'my': 1.0, 'often': 1.0, 'both': 1.0, 'whatever': 1.0, 'install': 1.0, 'smear': 1.0, 'on': 1.0, 'oldest': 1.0, 'prevent': 1.0, 'all': 1.0, 'to': 3.0, 'seat': 1.0, 'any': 1.0, 'two': 1.0, 'i': 1.0}
Word element => {'suv': 1.0, 'highlander': 1.0, 'toyota': 1.0, 'have': 1.0, 'btw': 1.0, 'ordered': 1.0, 'happy': 1.0, 'her': 1.0, 'higher': 1.0, 'mat': 1.0, 'just': 1.0, 'part': 1.0, 'of': 3.0, 'kicking': 1.0, 'tighten': 1.0, 'were': 2.0, 'that': 2.0, 'old': 2.0, 'i': 8.0, 'kick': 1.0, 'year': 2.0, '5': 1.0, 'and': 4.0, 'perfectly': 2.0, 'my': 2.0, 'seats': 4.0, 'raised': 1.0, 'bought': 2.0, 'the': 8.0, 'these': 3.0, 'they': 3.0, 'leather': 1.0, 'with': 1.0, 'because': 1.0, 'tends': 1.0, 'a': 2.0, 'well': 1.0, 'since': 1.0, 'new': 1.0, 'top': 2.0, 'back': 1.0, 'car': 1.0, 'time': 1.0, 'so': 2.0, 'found': 1.0, 'online': 1.0, 'protect': 1.0, 'both': 1.0, 'really': 1.0, 'put': 1.0, 'on': 2.0, 'easy': 1.0, 'strap': 1.0, 'seat': 1.0, 'all': 1.0, 'to': 2.0, 'for': 1.0, 'fit': 2.0, 'love': 1.0, 'am': 1.0, 'you': 1.0, '2': 2.0, 'work': 1.0, 'can': 1.0}
Word element => {'time': 1.0, 'condition': 1.0, 'on': 1.0, 'arrived': 1.0, 'because': 1.0, 'buddy': 1.0, 'of': 2.0, 'simply': 1.0, 'item': 2.0, 'stars': 1.0, '5': 1.0, 'great': 1.0, 'the': 3.0, 'happy': 1.0, 'joy': 1.0, 'this': 1.0, 'it': 1.0, 'became': 1.0, 'i': 2.0, 'very': 1.0, 'sleeping': 1.0, 'from': 1.0, 'recipient': 1.0, 'squeals': 1.0, 'was': 1.0, 'by': 1.0, 'gave': 1.0, 'mom': 1.0, 'told': 1.0, 'that': 1.0, 'his': 1.0, 'instant': 1.0}
Word element => {'great': 1.0, 'works': 1.0, 'it': 1.0, 'pump': 1.0, 'shipping': 1.0, 'part': 1.0, 'was': 2.0, 'for': 1.0, 'fast': 1.0, 'bought': 1.0, 'my': 1.0, 'replacement': 1.0, 'the': 1.0, 'a': 1.0, 'product': 2.0, 'this': 1.0, 'and': 2.0, 'as': 2.0, 'described': 1.0}
Word element => {'slickness': 1.0, 'bottle': 3.0, 'reducing': 1.0, 'the': 3.0, 'are': 1.0, 'these': 1.0, 'they': 1.0, 'protectors': 1.0, 'a': 1.0, 'of': 1.0, 'really': 1.0, 'nice': 2.0, 'provide': 1.0, 'grip': 1.0, 'to': 1.0}
Word element => {'mom': 1.0, 'pumping': 1.0, 'is': 1.0, 'spare': 1.0, 'fresh': 1.0, 'great': 1.0, 'nice': 1.0, 'for': 4.0, 'my': 1.0, 'filter': 1.0, 'can': 1.0, 'only': 1.0, 'remove': 1.0, 'wasted': 1.0, 'it': 3.0, 'wouldn': 1.0, 'and': 1.0, 'get': 1.0, 'me': 1.0, 'hate': 1.0, 'parts': 2.0, 'that': 2.0, 'falangea': 1.0, 't': 2.0, 's': 2.0, 'a': 3.0, 'go': 1.0, 'complaint': 1.0, 'inside': 1.0, 'the': 2.0, 'deal': 1.0, 'hands': 1.0, 'bra': 1.0, 'free': 1.0, 'tubing': 1.0, 'they': 1.0, 'i': 2.0, 'working': 1.0, 'order': 1.0, 'you': 1.0, 'again': 1.0, 'are': 1.0, 'just': 1.0, 'reason': 1.0, 'stuck': 1.0, 'to': 2.0, 'all': 1.0, 'together': 1.0, 'no': 1.0, 'good': 1.0}
Word element => {'too': 1.0, 'problem': 1.0, 'fro': 1.0, 'you': 1.0, 'pumping': 2.0, 'around': 1.0, 'completely': 1.0, 'more': 1.0, 'rubbed': 1.0, 'also': 1.0, 'time': 1.0, 'lifesaver': 1.0, 'came': 1.0, 'while': 1.0, 'from': 2.0, 'cracking': 1.0, 'pumped': 1.0, 'flanges': 4.0, 'related': 1.0, 'with': 2.0, 'rubbing': 1.0, 'very': 1.0, 'fact': 1.0, 'my': 3.0, 'often': 1.0, 'suffering': 2.0, 'standard': 1.0, 'usual': 1.0, 'they': 2.0, 'whole': 2.0, 'x': 1.0, 'about': 2.0, 'two': 1.0, 'at': 1.0, 'since': 1.0, 'were': 1.0, 'that': 3.0, 'hygeia': 1.0, 'was': 3.0, 'against': 1.0, 'to': 5.0, 'all': 1.0, 'as': 1.0, 'pain': 3.0, 'breastfeed': 1.0, 'lactation': 1.0, 'until': 1.0, 'suggested': 1.0, 'i': 9.0, 'coming': 1.0, 'diagram': 1.0, 'have': 3.0, 'nipple': 1.0, 'of': 3.0, 'the': 12.0, 'hospital': 1.0, 'perhaps': 1.0, 'ordered': 1.0, 'didn': 1.0, 'once': 1.0, 'these': 3.0, 'starting': 1.0, 'thought': 1.0, 'it': 1.0, 'nipples': 3.0, 'only': 1.0, 'took': 1.0, 'sides': 1.0, 'session': 1.0, 'determine': 1.0, 'large': 1.0, 'pump': 1.0, 'heal': 1.0, 'stop': 1.0, 'so': 1.0, 'can': 1.0, 'but': 1.0, 'a': 2.0, 'know': 1.0, 'sooner': 1.0, 'believe': 1.0, 'bought': 1.0, 'way': 1.0, 'huge': 1.0, '3': 1.0, 'if': 1.0, 'pairs': 1.0, 'are': 2.0, 'useful': 1.0, 'site': 1.0, 'them': 2.0, 'don': 1.0, 'wash': 1.0, 'proper': 1.0, 'this': 1.0, 'highly': 1.0, 'and': 3.0, 'recommended': 1.0, 'consultant': 1.0, 'check': 1.0, 'out': 1.0, 'for': 1.0, 't': 3.0, 'fit': 1.0, 'help': 1.0, 'information': 1.0}
Word element => {'comfortable': 1.0, 'edges': 1.0, 'rounded': 1.0, 'i': 1.0, 'medela': 2.0, 'flanges': 2.0, 'with': 1.0, 'and': 1.0, 'pumps': 1.0, 'more': 1.0, 'find': 1.0, 'are': 1.0, 'the': 3.0, 'compatible': 1.0, 'duckbill': 1.0, 'even': 1.0, 'of': 1.0, 'hygeia': 1.0, 'valves': 1.0}
Word element => {'played': 1.0, 'was': 1.0, 'baby': 1.0, 'the': 1.0, 'hearing': 1.0, 'what': 1.0, 'i': 1.0, 'in': 1.0, 'enjoyed': 1.0, 'being': 1.0, 'to': 2.0, 'comfortale': 1.0, 'easy': 1.0, 'use': 1.0, 'very': 1.0, 'and': 1.0, 'wear': 1.0, 'mostly': 1.0, 'on': 1.0, 'listening': 1.0}
Word element => {'as': 1.0, 'website': 1.0, 'bellybuds': 1.0, 'you': 1.0, 'better': 1.0, 'all': 1.0, 'prime': 1.0, 'highly': 1.0, 'baby': 1.0, 'for': 1.0, 'recommend': 1.0, 'played': 1.0, 'eligible': 1.0, 'being': 1.0, 'sounds': 1.0, 'out': 1.0, 'apple': 1.0, 'an': 1.0, 'product': 2.0, 'similar': 1.0, 'and': 2.0, 'was': 1.0, 'to': 1.0, 'comes': 1.0, 'value': 1.0, 'can': 1.0, 'package': 1.0, 'so': 1.0, 'packaged': 1.0, 'mom': 1.0, 'perfect': 1.0, 'also': 2.0, 'splitter': 1.0, 'with': 1.0, 'well': 1.0, 'check': 1.0, 'a': 1.0, 'headphone': 1.0, 'that': 1.0, 'enjoy': 1.0, 'great': 1.0, 'the': 2.0}
Word element => {'clothes': 1.0, 'noted': 1.0, 'be': 1.0, 'can': 1.0, 'volume': 1.0, 'the': 5.0, 'is': 2.0, 'not': 1.0, 'quality': 1.0, 'very': 1.0, 'materials': 1.0, 'cable': 1.0, 'under': 1.0, 'control': 1.0, 'so': 1.0, 'short': 1.0, 'of': 1.0, 'good': 1.0, 'too': 1.0}
Word element => {'buy': 1.0, 'bonding': 1.0, 'name': 1.0, 'rang': 1.0, 'car': 1.0, 'speakers': 1.0, 'much': 1.0, 'are': 1.0, 'ears': 1.0, 'gizmos': 1.0, 'blasting': 1.0, 'born': 1.0, 'respond': 1.0, 'too': 1.0, 'and': 1.0, 'know': 1.0, 'll': 1.0, 'so': 1.0, 'electronic': 1.0, 're': 1.0, 'enough': 1.0, 'research': 1.0, 'it': 1.0, 'loud': 2.0, 'amount': 1.0, 'substantial': 1.0, 'has': 1.0, 'fad': 1.0, 'cause': 1.0, 'they': 3.0, 'voice': 2.0, 'parents': 1.0, 'actually': 1.0, 'for': 2.0, 'don': 2.0, 'baby': 2.0, 'all': 1.0, 'to': 2.0, 'revealing': 1.0, 'please': 2.0, 'already': 1.0, 'these': 2.0, 'the': 3.0, 'speaking': 1.0, 'your': 8.0, 'make': 1.0, 'one': 2.0, 'deaf': 1.0, 'cool': 1.0, 'someone': 1.0, 'when': 1.0, 'you': 1.0, 'a': 1.0, 't': 2.0, 's': 1.0, 'seem': 1.0, 'plenty': 1.0, 'there': 1.0, 'imagine': 1.0, 'of': 3.0, 'into': 1.0, 'that': 3.0, 'been': 1.0, 'little': 2.0, 'loose': 1.0, 'hearing': 1.0, 'from': 1.0, 'kind': 1.0, 'devices': 1.0, 'in': 3.0, 'this': 1.0, 'theory': 1.0, 'can': 1.0, 'but': 1.0, 'truth': 1.0, 'till': 1.0, 'is': 2.0, '34': 2.0, 'natural': 1.0}
Word element => {'to': 2.0, 'want': 2.0, 'without': 1.0, 'can': 1.0, 'need': 1.0, 'baby': 1.0, 'don': 2.0, 'best': 1.0, 'you': 5.0, 'for': 1.0, 'whatever': 1.0, 'one': 1.0, 'i': 1.0, 'it': 1.0, 'purchases': 1.0, 'belly': 1.0, 'far': 2.0, 'by': 1.0, 'adhesives': 1.0, 'are': 1.0, 'made': 1.0, 'of': 1.0, 't': 2.0, 'the': 3.0, 'these': 1.0, 'having': 1.0, 'buds': 1.0, 've': 1.0, 'play': 1.0, 'during': 1.0, 'pregnancy': 1.0, 'hear': 1.0, 'maternity': 1.0, 'so': 1.0, 'wear': 1.0, 'if': 2.0, 'my': 1.0, 'pants': 1.0}
Word element => {'couldn': 1.0, 'happier': 1.0, 'so': 1.0, 'them': 2.0, 'i': 2.0, 'glad': 1.0, 'girl': 1.0, 't': 1.0, 'loves': 1.0, 'my': 1.0, 'the': 1.0, 'be': 1.0, 'purchased': 1.0, 'music': 1.0, 'little': 1.0, 'every': 1.0, 'she': 1.0, 'use': 1.0, 'moves': 1.0, 'around': 1.0, 'time': 1.0}
Word element => {'something': 1.0, 'prefer': 1.0, 'a': 1.0, 'well': 1.0, 'insert': 1.0, 'are': 1.0, 'my': 1.0, 'down': 1.0, 'them': 2.0, 'when': 2.0, 'i': 3.0, 'especially': 1.0, 'inserts': 1.0, 'folded': 1.0, 'bulky': 1.0, 'trimmer': 1.0, 'also': 1.0, 'shape': 1.0, 'as': 1.0, 'very': 2.0, 'they': 2.0, 'dry': 1.0, 'line': 1.0, 'have': 1.0, 'to': 1.0, 'into': 1.0, 'with': 1.0, 'lot': 1.0, 'stretch': 1.0, 'hands': 1.0, 'but': 1.0, 'an': 1.0, 'work': 1.0}
Word element => {'theme': 1.0, 'my': 1.0, 'd': 1.0, 'for': 1.0, 'be': 1.0, 'nice': 1.0, 'blanket': 1.0, 'love': 1.0, 'minnie': 1.0, 'mouse': 1.0, 'i': 1.0, 'im': 1.0, 'a': 1.0, 'and': 1.0, 'will': 1.0, 'baby': 1.0, 'this': 1.0, 'adopting': 1.0, 'girl': 1.0, 'so': 1.0}
Word element => {'returned': 1.0, 'on': 1.0, 'not': 1.0, 'resting': 1.0, 'hang': 1.0, 'characters': 1.0, 'sesame': 1.0, 'somewhere': 1.0, 'street': 1.0, 'which': 1.0, 'all': 1.0, 'but': 1.0, 'is': 1.0, 'of': 1.0, 'torn': 1.0, 'the': 3.0, 'item': 1.0, 'wrapping': 1.0, 'a': 1.0, 'and': 1.0, 'with': 1.0, 'it': 3.0, 'cute': 1.0, 'hook': 1.0, 'floor': 1.0, 'allows': 1.0, 'missing': 1.0, 'one': 1.0, 'was': 3.0, 'to': 1.0}
Word element => {'to': 1.0, 'claim': 1.0, 'all': 1.0, 'but': 1.0, 'styled': 1.0, 'newer': 1.0, 'fit': 1.0, 'does': 1.0, 'i': 1.0, 'disappointed': 1.0, 'accommodate': 1.0, 'because': 1.0, 'it': 1.0, 'were': 1.0, 'some': 1.0, 'bottles': 3.0, 'there': 1.0, 'that': 1.0, 'was': 1.0, 'would': 1.0, 'not': 2.0}
Word element => {'now': 1.0, 'one': 1.0, 'had': 1.0, 'already': 1.0, 'hood': 1.0, 'secure': 1.0, 'perfectly': 1.0, 'and': 2.0, 'necessary': 1.0, 'worked': 1.0, 'has': 1.0, 'why': 1.0, 'infant': 1.0, 'my': 1.0, 'so': 1.0, 'smaller': 1.0, 'this': 2.0, 'piece': 1.0, 'with': 1.0, 'for': 1.0, 'insert': 1.0, 'two': 1.0, 'i': 2.0, 'us': 1.0, 'daughter': 1.0, 'm': 1.0, 'when': 2.0, 'you': 1.0, 'nsert': 1.0, 'baby': 1.0, 'have': 3.0, 'falls': 1.0, 'very': 1.0, 'little': 1.0, 'the': 6.0, 'asleep': 1.0, 'pads': 1.0, 'to': 1.0, 'is': 4.0, 'comes': 1.0, 'drool': 1.0, 'after': 1.0, 'few': 1.0, 'minutes': 1.0, 'because': 1.0, 'maybe': 1.0, 'in': 1.0, 'carrier': 2.0, 'a': 2.0, 'we': 2.0, 'not': 2.0, 'used': 1.0, 'she': 2.0, 'since': 1.0, 'bigger': 1.0, 'sure': 1.0}
Word element => {'you': 1.0, 'weight': 1.0, 'when': 1.0, 'phone': 1.0, 'cup': 1.0, 'my': 1.0, 'store': 1.0, 'place': 1.0, 'love': 1.0, 'down': 1.0, 'used': 1.0, 'pocket': 1.0, 'to': 2.0, 'revolution': 1.0, 'use': 1.0, 'bob': 1.0, 'sturdy': 1.0, 'out': 1.0, 'product': 1.0, 'be': 1.0, 'bought': 1.0, 'holders': 1.0, 'doesn': 1.0, 'stroller': 1.0, 'we': 1.0, 'me': 1.0, 'and': 1.0, 'it': 1.0, 'this': 1.0, 'with': 1.0, 'durable': 1.0, 'a': 1.0, 'middle': 1.0, 'very': 1.0, 'as': 1.0, 'gives': 1.0, 'great': 1.0, 't': 1.0, 'the': 1.0}
Word element => {'bars': 1.0, 'across': 1.0, 'straps': 1.0, 'single': 1.0, 'handle': 1.0, 'for': 2.0, 'the': 2.0, 'universal': 1.0, 'was': 1.0, 'indicated': 1.0, 'not': 1.0, 'description': 1.0, 'reach': 1.0, 'do': 1.0, 'and': 2.0, 'quality': 1.0, 'nice': 1.0, 'velcro': 1.0, 'it': 1.0, 'city': 1.0, 'double': 2.0, 'however': 1.0, 'gt': 1.0, 'strollers': 1.0, 'i': 1.0, 'purchased': 1.0, 'my': 1.0, 'mini': 1.0, 'baby': 1.0, 'seems': 1.0, 'jogger': 1.0, '2013': 1.0}
Word element => {'not': 1.0, 'just': 1.0, 'will': 1.0, 'keep': 1.0, 'mind': 1.0, 'straps': 1.0, 'return': 1.0, 'gonna': 1.0, 'was': 1.0, 'so': 1.0, 'part': 1.0, 'shade': 1.0, 'cuz': 1.0, 'suv': 1.0, 'britax': 1.0, 'car': 6.0, 'the': 4.0, 'to': 1.0, 'as': 3.0, 'seat': 4.0, 'self': 1.0, 'good': 1.0, 'it': 6.0, 'covers': 1.0, 'tight': 1.0, 'my': 2.0, 'fits': 1.0, 'a': 1.0, 'well': 1.0, 'lifted': 1.0, 'is': 4.0, 'use': 1.0, 'front': 1.0, 'amazon': 1.0, 'rear': 1.0, 'convertible': 2.0, 'product': 1.0, 'u': 2.0, 'this': 2.0, 'perfect': 1.0, 'advocate70': 1.0, 'only': 2.0, 'its': 2.0, 'perfectly': 1.0, 'tge': 1.0, 'blocks': 1.0, 'carseat': 1.0, 'i': 2.0, 'other': 1.0, 'they': 1.0, 'material': 1.0, 'didnt': 1.0, 'change': 1.0, 'but': 1.0, '2': 1.0, 'work': 1.0, 'tying': 1.0, 'on': 4.0, '3': 1.0, 'put': 2.0, 'tried': 1.0, 'problem': 1.0, 'that': 1.0, 'view': 1.0, 'of': 3.0, 'once': 1.0, 'top': 2.0, 'one': 1.0, 'selling': 1.0, 'entire': 1.0}
Word element => {'round': 1.0, 'using': 1.0, 'keep': 1.0, 'will': 1.0, 'summer': 1.0, 'light': 1.0, 'he': 1.0, 'this': 1.0, 'it': 7.0, '34': 2.0, 'peace': 1.0, 'take': 1.0, 'protects': 1.0, 'from': 1.0, 'have': 1.0, 'must': 1.0, 'too': 1.0, 'and': 2.0, 'nap': 1.0, 'stroller': 1.0, 'shade': 1.0, 'back': 1.0, 'fold': 1.0, 'wants': 1.0, 'year': 1.0, 'sturdy': 1.0, 'sun': 1.0, 'privacy': 1.0, 'quite': 1.0, 'him': 1.0, 'for': 1.0, 'love': 1.0, 'yet': 1.0, 'to': 1.0, 'our': 1.0, 'stretches': 1.0, 'baby': 1.0, 'on': 1.0, 'the': 2.0, 'far': 1.0, 'if': 1.0, 'a': 2.0, 'we': 2.0, 'go': 1.0, 's': 1.0, 'need': 1.0, 'but': 2.0, 'can': 1.0, 'indoors': 1.0, 'when': 2.0, 'gives': 1.0, 'you': 2.0, 'easily': 1.0, 'is': 1.0, 'flexible': 1.0}
Word element => {'love': 1.0, 'we': 1.0, 'of': 1.0, 'lot': 1.0, 'pitch': 1.0, 'the': 2.0, 'great': 2.0, 'works': 2.0, 'features': 1.0, 'is': 2.0, 'room': 1.0, 'vision': 1.0, 'night': 1.0, 'amazing': 1.0, 'when': 1.0, 'our': 1.0, 'little': 1.0, 'sleeps': 1.0, 'and': 1.0, 'it': 2.0, 'this': 1.0, 'in': 1.0, 'perfect': 1.0, 'camera': 1.0, 'also': 1.0, 'has': 1.0, 'black': 1.0, 'a': 1.0}
Word element => {'size': 1.0, 'right': 1.0, 'just': 1.0, 'was': 1.0, 'the': 2.0, 'member': 1.0, 'is': 1.0, 'family': 1.0, 'said': 1.0, 'i': 1.0, 'it': 4.0, 'bought': 1.0, 'bag': 1.0, 'loved': 1.0, 'diaper': 1.0, 'for': 2.0, 'baby': 1.0, 'she': 2.0, 'a': 1.0, 'using': 1.0}
Word element => {'stars': 1.0, '5': 1.0, 'product': 1.0, 'this': 1.0, 'some': 1.0, 'two': 1.0, 'several': 1.0, 'price': 1.0, 'diapers': 1.0, 'bottles': 1.0, 'bag': 1.0, 'other': 1.0, 'pad': 1.0, 'have': 1.0, 'and': 1.0, 'nice': 1.0, 'items': 1.0, 'small': 1.0, 'changing': 1.0, 'not': 1.0, 'would': 1.0, 'included': 1.0, 'holds': 1.0, 'or': 1.0, 'i': 1.0, 'for': 1.0, 'given': 1.0}
Word element => {'keeps': 1.0, 'bag': 1.0, 'cute': 1.0, 'and': 1.0, 'very': 1.0, 'a': 1.0, 'the': 2.0, 'ripped': 1.0, 'front': 1.0, 'it': 3.0, 'cold': 1.0, 's': 1.0, 'pocket': 1.0, 'milk': 1.0, 'was': 1.0, 'i': 1.0, 'when': 1.0, 'got': 1.0, 'but': 1.0}
Word element => {'got': 1.0, 'glad': 1.0, 'happy': 1.0, 'very': 1.0, 'im': 1.0, 'i': 2.0, 'it': 3.0, 'love': 1.0, 'everything': 1.0, 'its': 1.0, 'has': 1.0, 'for': 1.0, 'perfect': 1.0, 'just': 1.0, 'enough': 1.0, 'space': 1.0}
Word element => {'well': 1.0, 'my': 1.0, 'and': 1.0, 'pockets': 1.0, 'of': 1.0, 'keep': 1.0, 'flap': 1.0, 'stay': 1.0, 'lots': 1.0, 'is': 1.0, 'bottles': 1.0, 'closed': 1.0, 'bag': 1.0, 'the': 2.0, 't': 1.0, 'things': 1.0, 'functional': 1.0, 'doesn': 1.0, 'complaint': 1.0, 'for': 1.0, 'shut': 1.0, 'only': 1.0, 'with': 1.0, 'velcro': 1.0, 'to': 1.0}
Word element => {'fixed': 1.0, 'but': 1.0, 'useful': 1.0, 'it': 2.0, 'very': 2.0, 'me': 1.0, 'and': 2.0, 'for': 1.0, 'parcode': 1.0, 'item': 1.0, 'saw': 1.0, 'nice': 1.0, 'a': 1.0, 'in': 1.0, 'somewhere': 1.0, 'looks': 1.0, 'is': 1.0, 'second': 1.0, 'hand': 1.0, 'because': 1.0, 'i': 1.0, 'dirty': 1.0, 'the': 1.0, 'card': 1.0}
Word element => {}
Word element => {'clean': 1.0, 'fabric': 1.0, 'great': 1.0, 'is': 2.0, 'i': 1.0, 'would': 1.0, 'and': 2.0, 'pockets': 1.0, 'a': 1.0, 'lot': 1.0, 'to': 2.0, 'organizing': 1.0, 'anyone': 1.0, 'easy': 1.0, 'holds': 1.0, 'recommend': 1.0, 'has': 1.0, 'durable': 1.0, 'for': 1.0, 'which': 1.0}
Word element => {'hold': 1.0, 'to': 1.0, 'arms': 1.0, 'be': 1.0, 'i': 1.0, 'old': 1.0, 'size': 1.0, 'right': 1.0, 'the': 2.0, 'my': 1.0, 'is': 1.0, 'doll': 1.0, 'it': 1.0, 'first': 1.0, 'this': 1.0, 'will': 1.0, 'little': 2.0, 'and': 1.0, 'soft': 1.0, 'cute': 1.0, 'simple': 1.0, 'perfect': 1.0, 'just': 1.0, 'dolly': 1.0, 'year': 1.0, 'daughter': 1.0, 'love': 1.0, 'for': 2.0, 'one': 1.0, 'grand': 1.0}
Word element => {'well': 1.0, 'holding': 1.0, 'up': 1.0, 'and': 1.0, 'is': 2.0, 'my': 1.0, 'granddaughter': 1.0, 'doll': 1.0, 'loves': 1.0, 'gave': 1.0, 'it': 3.0, 'we': 1.0, 'soft': 1.0, 'her': 2.0, 'for': 2.0, 'to': 1.0, 'first': 1.0, 'christmas': 1.0}
Word element => {'is': 1.0, 'quality': 1.0, 'otherwise': 1.0, 'description': 1.0, 'great': 1.0, 'the': 2.0, 'in': 2.0, 'maybe': 1.0, 'find': 1.0, 'my': 1.0, 'out': 1.0, 'sad': 1.0, 'girl': 1.0, 'had': 1.0, 'to': 2.0, 'was': 1.0, 'i': 2.0, 'a': 1.0, 'since': 1.0, 'and': 1.0, 'little': 1.0, 'likes': 1.0, 'sleep': 1.0, 'this': 1.0, 'it': 2.0, 'with': 1.0, 'overlooked': 1.0, 'rattle': 1.0, 'that': 1.0}
Word element => {'expect': 1.0, 'don': 1.0, 'own': 1.0, 'while': 1.0, 'good': 1.0, 'stays': 2.0, 'an': 1.0, 'have': 1.0, 'bells': 1.0, 'downstairs': 2.0, 'one': 2.0, 'for': 2.0, 'without': 1.0, 'this': 1.0, 'it': 2.0, 'basic': 1.0, 'potty': 3.0, 'prince': 1.0, 'just': 3.0, 'especially': 1.0, 'anything': 1.0, 'upstairs': 2.0, 'lionheart': 1.0, 'other': 1.0, 'we': 2.0, 'standard': 1.0, 'a': 2.0, 'and': 3.0, 'whistles': 1.0, 'of': 1.0, 'what': 1.0, 'works': 1.0, 'expensive': 1.0, 't': 1.0, 'the': 3.0, 'more': 2.0, 'ones': 1.0, 'is': 2.0, 'fine': 1.0, 'backup': 1.0}
Word element => {'very': 1.0, 'portable': 1.0, 'cup': 1.0, 'light': 1.0, 'take': 1.0, 'easily': 1.0, 'aims': 1.0, 'accurate': 1.0, 'than': 1.0, 'clean': 1.0, 'out': 1.0, 'newly': 1.0, 'for': 1.0, 'effective': 1.0, 'can': 1.0, 'toilet': 1.0, 'continent': 2.0, 'starter': 1.0, 'the': 3.0, 'less': 1.0, 'a': 1.0, 'really': 1.0, 'is': 3.0, 'it': 2.0, 'this': 1.0, 'good': 1.0, 'quite': 1.0, 'helps': 1.0, 'about': 1.0, 'to': 1.0, 'become': 1.0, 'and': 4.0, 'urine': 1.0, 'blocker': 1.0, 'you': 2.0, 'dodge': 1.0}
Word element => {'add': 1.0, 'edited': 1.0, 'enough': 1.0, 'doesn': 1.0, 'bowl': 1.0, 'issue': 1.0, 'see': 1.0, 'as': 1.0, 'same': 1.0, 'bjorn': 1.0, 'plain': 1.0, 'edit': 1.0, 'training': 1.0, 'again': 1.0, 'clean': 1.0, 'size': 2.0, 'actually': 2.0, 'color': 1.0, 'chic': 1.0, 'however': 1.0, 'easy': 1.0, 'know': 1.0, 'have': 3.0, 'just': 1.0, 'or': 1.0, 'manner': 1.0, 'snap': 2.0, 'should': 1.0, 'be': 3.0, 'back': 1.0, 'stay': 1.0, 'bigger': 1.0, 'e': 1.0, 'trained': 1.0, 'daughter': 1.0, 'securely': 1.0, 'after': 1.0, 'praise': 1.0, 'needs': 1.0, 'ends': 1.0, 'use': 1.0, 'would': 1.0, 'new': 1.0, 'compact': 2.0, 'lord': 1.0, 'about': 1.0, 'converted': 1.0, 'no': 1.0, 'thing': 1.0, 'all': 2.0, 'characters': 1.0, 'do': 2.0, 'cartoon': 1.0, 'design': 1.0, 'knows': 1.0, 'partially': 1.0, '25': 1.0, 'hoyden': 1.0, 'has': 1.0, 'toy': 1.0, 'simple': 1.0, 'splash': 1.0, 'the': 17.0, 'pee': 1.0, 'inner': 2.0, 'potty': 9.0, 'can': 1.0, 'lightweight': 1.0, 'so': 2.0, 'i': 9.0, 's': 4.0, 'tiny': 1.0, 'a': 7.0, 'bowling': 1.0, 'fit': 1.0, 't': 4.0, 'this': 4.0, 'baby': 1.0, 'she': 2.0, 'are': 2.0, 'dainty': 1.0, 'who': 1.0, 'definite': 1.0, 'don': 2.0, '7': 1.0, 'up': 1.0, 'over': 1.0, 'there': 2.0, 'that': 9.0, 'not': 3.0, 'best': 1.0, 'explore': 1.0, 'sits': 1.0, 'is': 5.0, 'sturdier': 1.0, 'pros': 1.0, 'really': 2.0, 'appreciate': 1.0, 'but': 4.0, 'parent': 1.0, 'better': 1.0, 'think': 1.0, 'process': 1.0, 'toddler': 3.0, 'and': 9.0, 'it': 7.0, 'starting': 1.0, 'things': 1.0, 'you': 1.0, 'lbs': 1.0, '2014': 1.0, 'when': 3.0, 'what': 2.0, 'to': 6.0, 'on': 3.0, 'ready': 1.0, 'guard': 1.0, 'cons': 1.0, 'toilet': 1.0, 'yet': 1.0, 'cup': 1.0, 'recommend': 1.0, 'pourty': 1.0, 'now': 1.0, 'one': 2.0, 'may': 1.0, 'undone': 1.0, 'my': 4.0, 'me': 1.0, 'entire': 1.0, 'light': 1.0, 'for': 8.0, '32': 1.0, 'inches': 1.0, 'good': 1.0, 'which': 1.0, 'like': 1.0, 'we': 1.0, 'then': 1.0, 'makes': 1.0, 'white': 1.0, 'part': 4.0, 'waste': 1.0, 'goes': 1.0, 'in': 4.0, 'come': 1.0, 'slightly': 1.0, 'could': 1.0, 'wheeeeeee': 1.0, 'feel': 1.0}
Word element => {'is': 2.0, 'not': 1.0, 'seat': 1.0, 'boys': 1.0, 'soft': 2.0, 'are': 1.0, 'they': 1.0, 'now': 1.0, 'plastic': 1.0, 'toilet': 1.0, 'on': 1.0, 'for': 1.0, 'one': 2.0, 'does': 1.0, 'i': 1.0, 'small': 1.0, 'pee': 1.0, 'the': 6.0, 'and': 3.0, 'little': 2.0, 'work': 1.0, 'but': 1.0, 'job': 1.0, 'cup': 1.0, 'a': 1.0, 'amazing': 1.0, 'came': 1.0, 'hard': 1.0, 'this': 1.0, 'first': 1.0, 'it': 2.0, 'with': 1.0, 'have': 1.0, 'broken': 1.0, 'would': 1.0, 'rather': 1.0, 'bought': 1.0, 'pod': 1.0, 'use': 1.0, 'deluxe': 1.0, 'we': 1.0}
Word element => {'by': 1.0, 't': 1.0, 'helpful': 1.0, 'might': 1.0, 'another': 1.0, 'looking': 1.0, 'those': 1.0, 'on': 1.0, 'overall': 1.0, 'but': 2.0, 'adjust': 1.0, 'help': 1.0, 'could': 1.0, 'theoretically': 1.0, 'place': 2.0, 'from': 1.0, 'ideal': 1.0, 'really': 1.0, 'mobile': 1.0, 'although': 1.0, 'se': 1.0, '34': 2.0, 'does': 1.0, 'diaper': 1.0, 'his': 1.0, 'just': 1.0, 'done': 1.0, 'going': 2.0, 'go': 1.0, 'pottypod': 3.0, 'tool': 2.0, 'use': 1.0, 'prince': 1.0, 'this': 2.0, 'per': 1.0, 'in': 3.0, 'said': 1.0, 'them': 1.0, 'next': 1.0, 'may': 2.0, 'onto': 1.0, 'bathroom': 1.0, 'for': 5.0, 'works': 1.0, 'do': 1.0, 'itself': 1.0, 'not': 5.0, 'reading': 1.0, 'product': 1.0, 'child': 2.0, 'up': 1.0, 'review': 1.0, 'well': 2.0, 'have': 1.0, 'a': 4.0, 'object': 1.0, 'small': 1.0, 'higher': 1.0, 'design': 1.0, 'signals': 1.0, 'ground': 1.0, 'with': 1.0, 'seem': 1.0, 'children': 1.0, 'lionheart': 1.0, 'first': 2.0, 'are': 3.0, 'useful': 1.0, 'iffy': 1.0, 'you': 4.0, 'miss': 1.0, 'work': 1.0, 'points': 1.0, 'training': 2.0, 'or': 2.0, 'potty': 2.0, 'can': 2.0, 'so': 2.0, 'needs': 1.0, 'is': 6.0, 'at': 1.0, 'won': 1.0, 'who': 1.0, 'shaped': 1.0, 'recommended': 1.0, 'and': 7.0, 'one': 1.0, 'too': 1.0, 'idea': 1.0, 'probably': 3.0, 'mind': 1.0, 'people': 1.0, 'our': 2.0, 'good': 1.0, 'made': 2.0, 'we': 2.0, 'study': 1.0, 'what': 1.0, 'sit': 1.0, 'found': 1.0, 'know': 2.0, 'easy': 1.0, 'moved': 2.0, 'get': 2.0, 'clean': 1.0, 'there': 2.0, 'hit': 1.0, 'instead': 1.0, 'container': 1.0, 'be': 5.0, 'it': 8.0, 'already': 1.0, 'him': 2.0, 'removed': 1.0, 'cleaned': 1.0, 'after': 1.0, 'son': 1.0, 'enjoy': 1.0, 'if': 3.0, 'still': 1.0, 'liked': 1.0, 'that': 5.0, 'because': 1.0, 'having': 1.0, 'was': 4.0, 'job': 1.0, 'to': 10.0, 'high': 2.0, 'off': 1.0, 'toilet': 3.0, 'handy': 1.0, 'used': 1.0, 'the': 10.0, 'of': 2.0, 'before': 1.0, 'yet': 1.0, 'he': 4.0, 'ready': 1.0, 'us': 1.0}
Word element => {'crossed': 1.0, 'fingers': 1.0, 'trained': 1.0, 'not': 1.0, 'portion': 1.0, 'tray': 1.0, 'dumpable': 1.0, 'parts': 1.0, 'there': 1.0, 'easier': 1.0, 'would': 1.0, 'huge': 1.0, 'apart': 1.0, 'comes': 1.0, 'all': 1.0, 'white': 1.0, 'like': 1.0, 'isn': 1.0, 'don': 1.0, 'sink': 1.0, 'even': 2.0, 'rinse': 2.0, 'gunk': 1.0, 'into': 1.0, 'cup': 1.0, 'design': 1.0, 'uncomfortable': 1.0, 'might': 1.0, 'wonder': 1.0, 'work': 1.0, 'hope': 1.0, 'toilet': 3.0, 'outer': 2.0, 'off': 1.0, 'enough': 1.0, 're': 2.0, 'to': 9.0, 'our': 2.0, 'older': 1.0, 'taking': 1.0, 'bathroom': 1.0, 'my': 1.0, 'trapped': 1.0, 'we': 6.0, 't': 6.0, 'could': 1.0, 's': 2.0, 'colored': 1.0, 'since': 1.0, 'keep': 1.0, 'opted': 1.0, 'a': 6.0, 'small': 3.0, 'have': 4.0, 'everything': 1.0, 'want': 2.0, 'section': 2.0, 'if': 6.0, 'easy': 2.0, 'bit': 1.0, 'familiar': 1.0, 'be': 3.0, 'her': 2.0, 'long': 1.0, 'on': 5.0, 'your': 2.0, 'too': 1.0, 'happy': 1.0, 'one': 2.0, 'it': 6.0, 'deal': 1.0, 'she': 2.0, 'works': 1.0, 'with': 3.0, 'this': 3.0, '19': 1.0, 'before': 1.0, 'toss': 1.0, 'lo': 3.0, 'casually': 1.0, 'also': 1.0, 'compact': 1.0, 'i': 3.0, 'using': 1.0, 'and': 12.0, 'trip': 1.0, 'yet': 1.0, 'for': 3.0, 'style': 2.0, 'empty': 1.0, 'past': 1.0, 'aren': 1.0, 'but': 3.0, 'didn': 1.0, 'been': 1.0, 'that': 5.0, 'tub': 1.0, 'pushing': 1.0, 'potty': 2.0, 'can': 1.0, 'so': 2.0, 'training': 3.0, 'great': 2.0, 'doesn': 1.0, 'was': 1.0, 'is': 8.0, 'look': 1.0, 'couple': 1.0, 'awful': 1.0, 'very': 1.0, 'think': 1.0, 'definitely': 1.0, 'necessary': 1.0, 'the': 16.0, 'of': 1.0, 'you': 2.0, 'seat': 1.0, 'in': 4.0, 'car': 1.0, 'were': 1.0, 'piece': 1.0, 'park': 1.0, '2': 1.0, 'thing': 3.0, 'whereas': 1.0, 'only': 4.0, 'whatever': 1.0, 'd': 1.0, 'both': 1.0, 'part': 2.0, 'thick': 1.0, 'bad': 1.0, 'when': 1.0, 'sit': 2.0, 'alone': 1.0, 'won': 1.0, 'about': 1.0, 'darn': 1.0, 'hiney': 1.0, 'or': 2.0, 'need': 1.0, 'between': 1.0, 'large': 1.0, 'help': 1.0, 'months': 2.0, 'get': 2.0, 'up': 1.0, 'down': 1.0, 'mess': 1.0, 'something': 1.0}
Word element => {'ideal': 1.0, 'as': 1.0, 'being': 1.0, 'very': 1.0, 'little': 1.0, 'collection': 1.0, 'like': 1.0, 'just': 1.0, 'few': 1.0, 'this': 3.0, 'much': 1.0, 'to': 3.0, 'good': 1.0, 'her': 2.0, 'different': 1.0, 'be': 1.0, 'would': 1.0, 'guard': 1.0, 'necessary': 1.0, 'fisher': 1.0, 'found': 1.0, 'easy': 1.0, 'beginning': 1.0, 'things': 1.0, 'no': 2.0, 'who': 1.0, 'past': 1.0, 'but': 1.0, 'sitting': 1.0, 't': 2.0, 'a': 7.0, 's': 2.0, 'losing': 1.0, 'perhaps': 1.0, 'about': 1.0, 'thefisher': 1.0, 'of': 2.0, 'the': 5.0, 'pee': 1.0, 'without': 1.0, 'my': 2.0, 'splash': 1.0, 'at': 1.0, 'is': 3.0, 'have': 3.0, 'stages': 1.0, 'training': 4.0, 'i': 7.0, 'potty': 8.0, 'seat': 1.0, 'in': 2.0, 'try': 1.0, 'one': 2.0, 'for': 6.0, 'she': 1.0, 'older': 1.0, 'major': 1.0, 'children': 1.0, 'used': 1.0, 'don': 2.0, 'd': 1.0, 'it': 3.0, 'thought': 1.0, 'stepstool': 1.0, 'toddler': 1.0, 'price': 2.0, 'potties': 1.0, 'pull': 1.0, 'daughter': 1.0, 'out': 1.0, 'moulded': 1.0, 'there': 1.0, 'herself': 1.0, 'container': 1.0, 'drawback': 1.0, 'pink': 2.0, 'when': 1.0, 'hurt': 1.0, 'girls': 1.0, 'has': 2.0, 'easier': 1.0, 'not': 1.0, 'princess': 1.0, 'that': 1.0, 'because': 1.0, 'time': 2.0, 'wide': 1.0, 'base': 1.0, 'on': 3.0, 'hard': 1.0, 'down': 1.0, 'balance': 1.0, 'princessand': 1.0, 'frills': 1.0, 'recommend': 1.0, 'using': 1.0, 'blocker': 1.0, 'looking': 1.0, 'see': 1.0, 'pottypod': 1.0}
Word element => {'girl': 1.0, 'cheap': 1.0, 'cut': 1.0, 'move': 1.0, 'certainly': 1.0, 'little': 2.0, 'very': 2.0, 'easy': 3.0, 'get': 2.0, 'bottom': 1.0, 'inside': 1.0, 'no': 2.0, 'lift': 2.0, 'slip': 1.0, 'low': 1.0, 'on': 3.0, 'bowl': 3.0, 'potty': 3.0, 'can': 1.0, 'so': 2.0, 'cup': 2.0, 'house': 1.0, 'hurt': 1.0, 'size': 1.0, 'or': 4.0, 'need': 1.0, 's': 1.0, 'ground': 1.0, 'pros': 1.0, 'toddler': 1.0, 'child': 1.0, 'car': 1.0, 'clean': 2.0, 'nothing': 1.0, 'out': 2.0, 'surface': 3.0, 'this': 3.0, 'onto': 1.0, 'with': 1.0, 'smooth': 2.0, 'made': 1.0, 'herself': 1.0, 'around': 3.0, 'all': 1.0, 'to': 8.0, 'vertical': 1.0, 'in': 2.0, 'seat': 1.0, 'as': 1.0, 'take': 1.0, 'non': 1.0, 'just': 1.0, 'supervision': 1.0, 'back': 1.0, 'complete': 1.0, 'china': 1.0, 'for': 3.0, 'actually': 1.0, 'fit': 1.0, 'not': 3.0, 'him': 1.0, 'it': 3.0, 'higher': 1.0, 'aimed': 1.0, 'urine': 1.0, 'click': 1.0, 'is': 4.0, 'at': 1.0, 'will': 2.0, 'simple': 1.0, 'splash': 1.0, 'my': 1.0, 'baby': 1.0, 'i': 1.0, 'boy': 2.0, 'would': 3.0, 'toddlers': 1.0, 'buy': 1.0, 'does': 1.0, 'starter': 1.0, 'lock': 1.0, 'really': 1.0, 'easily': 1.0, 'that': 1.0, 'been': 1.0, 'have': 1.0, 'a': 10.0, 'small': 1.0, 'corners': 1.0, 'tempted': 1.0, 'cons': 1.0, 'toilet': 1.0, 'carry': 1.0, 'empty': 1.0, 'the': 8.0, 'convert': 1.0, 'of': 1.0, 'children': 1.0, 'full': 2.0, 'recommend': 1.0}
Word element => {'on': 1.0, 'use': 1.0, 'there': 1.0, 'if': 1.0, 'be': 2.0, 'regular': 1.0, 'detached': 1.0, 'itself': 1.0, 'toilet': 2.0, 'one': 3.0, 'new': 1.0, 'buy': 1.0, 'and': 1.0, 'soon': 1.0, 'll': 2.0, 'not': 1.0, 'm': 1.0, 'daughter': 2.0, 'i': 5.0, 'recommend': 1.0, 'used': 2.0, 'fits': 1.0, 'my': 2.0, 'is': 3.0, 'more': 1.0, 'pod': 2.0, 'until': 1.0, 'feel': 1.0, 'she': 1.0, 'it': 5.0, 'eating': 1.0, 'this': 1.0, 'stool': 2.0, 'outgrew': 1.0, 'choose': 1.0, 'than': 1.0, 'supposed': 1.0, 'product': 1.0, 'for': 2.0, 'the': 6.0, 'remind': 1.0, 'which': 2.0, 'frequently': 1.0, 'kid': 2.0, 'of': 1.0, 'need': 1.0, 'beb': 2.0, 'eacute': 2.0, 'easy': 1.0, 'sure': 1.0, 'to': 4.0, 'as': 5.0, 'very': 1.0, 'do': 1.0, 'likes': 1.0, 'can': 2.0, 'but': 1.0, 'still': 1.0, 'uses': 1.0, 'time': 1.0, 'potty': 2.0, 'though': 1.0, 'a': 6.0, 's': 1.0, 'good': 1.0, 'clean': 1.0, 'next': 1.0, 'that': 3.0}
Word element => {'stay': 1.0, 'can': 1.0, 'so': 1.0, 'completly': 1.0, 'everyone': 1.0, 'to': 1.0, 'found': 1.0, 'i': 1.0, 'or': 1.0, 'focused': 1.0, 'are': 1.0, 'consentrating': 1.0, 'a': 2.0, 'distraction': 1.0, 'training': 1.0, 'on': 1.0, 'is': 3.0, 'falling': 1.0, 'having': 1.0, 'though': 1.0, 'potty': 1.0, 'they': 1.0, 'your': 1.0, 'for': 1.0, 'one': 1.0, 'great': 2.0, 'the': 1.0, 'be': 1.0, 'tool': 1.0, 'this': 2.0, 'task': 1.0, 'at': 1.0, 'hand': 1.0, 'unsteady': 1.0, 'enough': 1.0, 'sturdy': 1.0, 'complex': 1.0, 'feel': 1.0, 'little': 1.0, 'very': 1.0, 'as': 1.0}
Word element => {'healthier': 1.0, 'sturdy': 1.0, 'be': 1.0, 'star': 1.0, '5': 1.0, 'good': 1.0, '1': 2.0, 'stars': 1.0, 'for': 2.0, 'catcher': 1.0, 'urine': 1.0, 'appreciate': 1.0, 'gets': 1.0, 'with': 1.0, 'this': 1.0, 'unit': 2.0, 'he': 1.0, 'hidden': 1.0, 'use': 1.0, 'in': 2.0, 'not': 2.0, 'because': 1.0, 'when': 1.0, 'easily': 1.0, 'convenience': 1.0, 'never': 1.0, 'training': 1.0, 'p': 1.0, 'but': 1.0, 'stored': 1.0, 'and': 2.0, 'get': 1.0, 'it': 2.0, 'colorful': 2.0, 'its': 2.0, '4': 1.0, 'i': 4.0, 'may': 1.0, 'my': 1.0, 'little': 1.0, 'compact': 2.0, 'ones': 1.0, 'the': 2.0, 'attention': 1.0, 'toddlers': 1.0, 'since': 1.0, 's': 1.0, 'a': 2.0, 'minus': 1.0, 'have': 1.0, 'as': 1.0, 'all': 3.0, 'so': 1.0, 'potty': 1.0, 'boy': 1.0, 'has': 1.0, 'aiming': 1.0, 'issues': 1.0, 'like': 1.0, 'which': 1.0, 'think': 1.0, 'men': 1.0, 'hang': 1.0, 'of': 1.0, 'anyhow': 1.0}
Word element => {'care': 1.0, 'using': 1.0, 'still': 1.0, 'll': 1.0, 'preferable': 1.0, 'would': 1.0, 'securing': 1.0, 'method': 1.0, 'some': 1.0, 'otherwise': 1.0, 'become': 1.0, 'he': 2.0, 'enough': 1.0, 'not': 1.0, 'that': 3.0, 'product': 1.0, 'for': 1.0, 'nice': 1.0, 'big': 1.0, 'comfortable': 1.0, 'toilet': 2.0, 'the': 2.0, 'of': 2.0, 'top': 1.0, 'on': 2.0, 'fits': 1.0, 'while': 2.0, 'perhaps': 1.0, 'wouldn': 1.0, 'this': 2.0, 'practicing': 1.0, 'come': 1.0, 'it': 6.0, 'with': 3.0, 'sit': 1.0, 'parents': 1.0, 'one': 2.0, 'they': 1.0, 'trained': 1.0, 'have': 1.0, 'grandson': 1.0, 'boy': 1.0, 'bit': 3.0, 'so': 2.0, 'potty': 1.0, 'fall': 1.0, 'around': 1.0, 'more': 2.0, 'is': 1.0, 'just': 2.0, 'concerned': 1.0, 'nicely': 1.0, 'first': 1.0, 'beginning': 1.0, 'his': 3.0, 'ready': 1.0, 'might': 1.0, 'a': 5.0, 'go': 1.0, 't': 2.0, 'we': 4.0, 'get': 1.0, 'dislodge': 1.0, 'and': 3.0, 'seat': 2.0, 'our': 1.0, 'to': 11.0, 'if': 1.0, 'being': 1.0, 'start': 1.0, 'insure': 1.0, 'when': 1.0, 'were': 2.0, 'visit': 1.0, 'did': 1.0, 'wiggle': 1.0, 'try': 2.0, 'out': 1.0, 'doesn': 1.0, 'was': 1.0, 'unfortunately': 1.0, 'no': 1.0, 'but': 1.0, 'exception': 1.0, 'success': 1.0, 'secure': 1.0, 'item': 1.0, 'seems': 2.0, 'be': 5.0, 'cart': 1.0, 'quite': 2.0, 'very': 1.0, 'satisfactory': 1.0, 'little': 1.0}
Word element => {'it': 1.0, 'highly': 1.0, 'easy': 1.0, 'durable': 1.0, 'task': 1.0, 'on': 1.0, 'take': 1.0, 'special': 1.0, 'or': 1.0, 'gift': 2.0, 'shower': 1.0, 'ready': 1.0, 'his': 2.0, 'grandson': 1.0, 'in': 1.0, 'size': 1.0, 'toilet': 1.0, 'can': 1.0, 'pottypod': 1.0, 'toddler': 2.0, 'training': 1.0, 'needs': 1.0, 'potty': 1.0, 'and': 2.0, 'for': 5.0, 'large': 1.0, 'life': 1.0, 'is': 2.0, 'a': 7.0, 'my': 1.0, 'the': 5.0, 'jasper': 1.0, 'comfortable': 2.0, 'great': 1.0, 'confidence': 1.0, 'grocery': 1.0, 'plastic': 1.0, 'he': 1.0, 'perfect': 1.0, 'this': 2.0, 'quick': 1.0, 'new': 1.0, 'experience': 1.0, 'i': 2.0, 'recommend': 2.0, 'challenge': 1.0, 'bag': 1.0, 'to': 3.0, 'as': 1.0, 'giving': 1.0, 'be': 1.0, 'him': 1.0, 'putting': 1.0, 'liner': 1.0, 'makes': 1.0, 'intimidating': 1.0, 'clean': 2.0, 'up': 1.0, 'baby': 1.0}
Word element => {'overall': 1.0, 'trainer': 1.0, 'potty': 2.0, 'cleanable': 1.0, 'easily': 1.0, 'drops': 1.0, 'compartment': 1.0, 'cleaning': 1.0, 'easy': 1.0, 'pieces': 1.0, 'basic': 1.0, 'main': 1.0, 'future': 1.0, 'sons': 1.0, 'edges': 1.0, 'trainers': 1.0, 'waste': 1.0, 'expect': 1.0, 'i': 1.0, 'and': 4.0, 'green': 1.0, 'in': 1.0, 'seems': 1.0, 'daughter': 2.0, 'other': 1.0, 'thing': 2.0, 'got': 1.0, 'smooth': 1.0, 'now': 1.0, 'neutral': 1.0, 'which': 2.0, 'the': 5.0, 'be': 3.0, 'it': 3.0, 'with': 2.0, 'we': 2.0, 't': 1.0, 'a': 5.0, 's': 3.0, 'color': 1.0, 'is': 2.0, 'pretty': 1.0, 'many': 1.0, 'good': 2.0, 'must': 1.0, 'have': 1.0, 'small': 1.0, 'enough': 2.0, 'where': 1.0, 'for': 3.0, 'comfortable': 1.0, 'to': 2.0, 'as': 3.0, 'our': 1.0, 'pleased': 1.0, 'squat': 1.0, 'on': 1.0, 'reviewers': 1.0, 'rounded': 1.0, 'mentioned': 1.0, 'there': 1.0, 'removable': 2.0, 'but': 1.0, 'can': 2.0, 'aren': 1.0}
Word element => {'choices': 1.0, 'say': 1.0, 're': 1.0, 'younger': 1.0, 'go': 1.0, 'while': 1.0, 'holding': 1.0, 'work': 1.0, 'works': 1.0, 'ages': 1.0, 'spectrum': 1.0, 'perfect': 1.0, 'be': 1.0, 'going': 2.0, 'toilet': 1.0, 'real': 1.0, 'supportive': 1.0, 'higher': 1.0, 'them': 1.0, 'has': 1.0, 'chair': 2.0, 'wouldn': 1.0, 'wearing': 1.0, 'they': 3.0, 'dirty': 1.0, 'means': 1.0, 'choice': 1.0, 'you': 2.0, 'arises': 1.0, 'best': 1.0, 'd': 1.0, 'diapers': 1.0, 'are': 2.0, 'well': 2.0, 'i': 5.0, 'two': 1.0, 'get': 1.0, 'do': 2.0, 'much': 1.0, 'and': 6.0, 'older': 2.0, 'accustomed': 1.0, 'capable': 1.0, 'partner': 1.0, 'don': 1.0, 'hold': 1.0, 'this': 5.0, 'easily': 1.0, 'that': 6.0, 'more': 2.0, 'babies': 3.0, 'to': 8.0, 'our': 1.0, 'as': 2.0, 'in': 2.0, 'said': 1.0, 'an': 2.0, 'all': 1.0, 'other': 3.0, 'which': 2.0, 'good': 1.0, 'entire': 1.0, 'my': 1.0, 'better': 1.0, 'types': 1.0, 'back': 1.0, 'limited': 1.0, 'like': 2.0, 'rather': 1.0, 'pottypod': 1.0, 'occasionally': 1.0, 'agreement': 1.0, 'uses': 1.0, 'child': 1.0, 'potties': 2.0, 'toddler': 3.0, 'really': 1.0, 'actually': 2.0, 'one': 2.0, 'it': 6.0, 'fairly': 1.0, 't': 3.0, 's': 4.0, 'we': 1.0, 'for': 9.0, 'such': 1.0, 'of': 5.0, 'the': 8.0, 'great': 2.0, 'what': 1.0, 'when': 3.0, 'goal': 1.0, 'knowing': 1.0, 'change': 1.0, 'babybjorn': 1.0, 'but': 1.0, 'frequently': 1.0, 'compared': 2.0, 'potty': 4.0, 'use': 4.0, 'smaller': 1.0, 'possible': 1.0, 'opportunity': 1.0, 'need': 2.0, 'would': 2.0, 'a': 7.0, 'small': 1.0, 'have': 1.0, 'doesn': 1.0, 'is': 6.0, 'look': 1.0, 'portable': 2.0, 'than': 2.0, 'baby': 2.0, 'many': 1.0, 'sturdier': 1.0, 'models': 1.0, 'allows': 1.0, 'with': 2.0, 'out': 1.0, 'there': 3.0, 'not': 3.0, 'toddlers': 1.0, 'something': 2.0, 'buy': 1.0, 'size': 1.0, 'physical': 1.0, 'buying': 1.0, 'ability': 1.0, 'if': 1.0, 'certainly': 1.0, 'bigger': 1.0}
Word element => {'practice': 1.0, 'might': 1.0, 'sit': 1.0, 'awkward': 1.0, 'on': 1.0, 'expecting': 1.0, 'is': 2.0, 'improve': 1.0, 'and': 1.0, 'are': 1.0, 'a': 3.0, 'little': 1.0, 'give': 1.0, 'i': 3.0, 'completely': 1.0, 'prince': 1.0, 'cushy': 1.0, 'so': 1.0, 'lionheart': 1.0, 'for': 1.0, 'yet': 1.0, 'the': 1.0, 't': 2.0, 'down': 1.0, 'her': 1.0, 'what': 1.0, 'used': 1.0, 'haven': 1.0, 'plastic': 1.0, 'can': 1.0, 'accurate': 1.0, 'that': 3.0, 'review': 1.0, 'to': 1.0, 'was': 3.0, 'but': 1.0, 'surprised': 1.0, 'with': 1.0, 'this': 1.0, 'it': 2.0, 'hard': 1.0, 'we': 1.0, 'boosters': 1.0}
Word element => {'it': 1.0, 'love': 1.0, 'will': 1.0, 'baby': 1.0, 'fan': 1.0, 'car': 1.0, 'a': 1.0, 'are': 1.0, 'the': 2.0, 'is': 1.0, 'different': 1.0, 'ones': 1.0, 'you': 2.0, 'cars': 1.0, 'bouncer': 1.0, 'from': 1.0, 'if': 1.0, 'regular': 1.0, 'especially': 1.0}
Word element => {'remind': 1.0, 'to': 1.0, 'home': 1.0, 'statement': 1.0, 'makes': 1.0, 'myself': 1.0, 'this': 1.0, 'others': 1.0, 'is': 2.0, 'a': 1.0, 'that': 3.0, 'verse': 1.0, 'in': 1.0, 'something': 1.0, 'helps': 1.0, 'my': 2.0, 'and': 2.0, 'spiritual': 1.0, 'practice': 1.0}
Word element => {'worth': 1.0, 'well': 1.0, 'time': 1.0, 'your': 1.0, 'take': 1.0, 'just': 1.0, 'min': 1.0, '30': 1.0, 'about': 1.0, 'on': 2.0, 'painted': 1.0, 'to': 4.0, 'think': 1.0, 'love': 1.0, 'stick': 1.0, 'took': 1.0, 'i': 2.0, 'beautiful': 1.0, 'so': 1.0, 'have': 1.0, 'the': 1.0, 'wall': 1.0, 'you': 1.0, 'rub': 1.0, 'is': 2.0, 'people': 1.0, 'really': 1.0, 'it': 6.0, 'this': 1.0, 'hard': 1.0, 'do': 1.0, 'get': 2.0, 'probably': 1.0}
Word element => {'to': 2.0, 'him': 1.0, 'enough': 1.0, 'spacious': 1.0, 's': 1.0, 'day': 1.0, 'in': 1.0, 'naps': 1.0, 'washed': 1.0, 'a': 3.0, 'can': 1.0, 'old': 1.0, 'use': 1.0, 'every': 1.0, 'purchased': 1.0, 'has': 2.0, 'for': 3.0, 'incline': 1.0, 'insert': 1.0, '2': 1.0, 'come': 1.0, 'he': 1.0, 'it': 4.0, 'this': 2.0, 'we': 1.0, 'nice': 2.0, 'be': 1.0, 'plush': 1.0, 'our': 1.0, 'that': 1.0, 'smaller': 1.0, 'removed': 1.0, 'helps': 1.0, 'months': 1.0, 'support': 1.0, 'month': 1.0, 'infant': 1.0, 'and': 3.0}
Word element => {'travel': 1.0, 'easy': 1.0, 'folds': 1.0, 'vibrator': 1.0, 'floor': 1.0, 'stick': 1.0, 'bottom': 1.0, 'grippers': 1.0, 'in': 1.0, 'storage': 1.0, 'still': 1.0, 'mo': 1.0, '6': 1.0, 'he': 1.0, 'out': 1.0, 'legs': 1.0, 'sturdy': 1.0, 'his': 1.0, 'stretch': 1.0, 'baby': 1.0, 'fits': 1.0, 'my': 1.0, 'bed': 1.0, 'wall': 1.0, 'good': 1.0, 'fabric': 1.0, 'since': 1.0, 'cushion': 1.0, 'return': 1.0, 'instead': 1.0, 'loved': 1.0, 'one': 3.0, 'i': 5.0, 'a': 4.0, 's': 3.0, 'could': 1.0, 'had': 1.0, 'all': 1.0, 'to': 7.0, 'deciding': 1.0, 'everyone': 1.0, 'now': 1.0, 'on': 2.0, 'the': 7.0, 'remove': 1.0, 'it': 10.0, 'allows': 1.0, 'this': 5.0, 'competitor': 1.0, 'like': 1.0, 'version': 1.0, 'up': 1.0, 'wash': 1.0, 'so': 2.0, 'between': 1.0, 'of': 1.0, 'important': 1.0, 'is': 3.0, 'more': 1.0, 'say': 1.0, 'me': 1.0, 'when': 1.0, 'btw': 1.0, 'other': 1.0, 'better': 1.0, 'removable': 1.0, 'but': 1.0, 'can': 1.0, 'got': 1.0, 'even': 1.0, 'very': 2.0, 'little': 1.0, 'slender': 1.0, 'has': 1.0, 'recommended': 1.0, 'easier': 1.0, 'love': 1.0, 'for': 1.0, 'product': 1.0, 'fit': 1.0}
Word element => {'child': 1.0, 'but': 1.0, 'soft': 1.0, 'cute': 1.0, 'plastic': 1.0, 'semi': 1.0, 'side': 1.0, 'like': 1.0, 'thin': 1.0, 'a': 1.0, 'durable': 1.0, 'for': 2.0, 'printed': 1.0, 'protection': 1.0, 'coated': 1.0, 'seem': 1.0, 'on': 1.0, 'material': 1.0, 'not': 1.0, 'the': 2.0, 'adults': 1.0, 'view': 1.0, 'as': 1.0, 'to': 2.0, 'colorful': 1.0}
Word element => {'stores': 1.0, 'in': 1.0, 'to': 1.0, 'gift': 1.0, 'this': 2.0, 'is': 2.0, 'a': 2.0, 'cute': 1.0, 'very': 2.0, 'bib': 2.0, 'and': 1.0, 'great': 1.0, 'hard': 1.0, 'will': 1.0, 'baby': 1.0, 'the': 1.0, 'find': 1.0, 'shower': 1.0, 'make': 1.0}
Word element => {'though': 1.0, 'will': 1.0, 'daughter': 1.0, 'happy': 1.0, 'my': 1.0, 'for': 1.0, 'otherwise': 1.0, 'else': 1.0, 'after': 1.0, 'reviews': 1.0, 'better': 1.0, 'might': 1.0, 'read': 1.0, 'is': 1.0, 'a': 1.0, 'made': 1.0, 'have': 2.0, 'the': 1.0, 't': 1.0, 'with': 1.0, 'looked': 1.0, 'it': 5.0, 'until': 1.0, 'think': 2.0, 'i': 6.0, 'not': 1.0, 'would': 1.0, 'exactly': 1.0, 'bought': 1.0, 'be': 2.0, 'what': 1.0, 'something': 1.0, 'thought': 1.0, 'little': 1.0, 'been': 1.0, 'didn': 1.0, 'could': 1.0, 'like': 1.0, 'any': 1.0, 'of': 1.0}
Word element => {'regret': 1.0, 'than': 1.0, 'other': 1.0, 'while': 1.0, 'son': 1.0, 'my': 1.0, 'rest': 1.0, 'has': 1.0, 'complaint': 1.0, 'can': 1.0, 'real': 1.0, 'ask': 1.0, 'mall': 1.0, 'at': 2.0, 'shopping': 1.0, 'and': 2.0, 'hawaii': 1.0, 'itself': 1.0, 'in': 1.0, 'else': 1.0, 'sleeping': 1.0, 'know': 1.0, 'not': 1.0, 'baby': 1.0, 'when': 1.0, 'you': 3.0, 'it': 4.0, 'buying': 1.0, 'with': 2.0, 'the': 5.0, 'asked': 1.0, 'say': 1.0, 'is': 2.0, 'more': 1.0, 'if': 3.0, 'what': 2.0, 'are': 1.0, 'all': 1.0, 'as': 1.0, 'to': 4.0, 'double': 1.0, 'searching': 1.0, 'one': 2.0, 'for': 4.0, 'love': 1.0, 'i': 7.0, 'your': 1.0, 'wish': 1.0, 'pictures': 1.0, 'this': 3.0, 'perfect': 2.0, 'stroller': 4.0, 'will': 2.0, 'thing': 1.0, 'express': 1.0, 'that': 3.0, 'ate': 1.0, 'pricey': 1.0, 'he': 1.0, 'how': 1.0, 'thousand': 1.0, 'brand': 1.0, 'only': 1.0, 'its': 1.0, 'dollars': 1.0, 'do': 1.0, 'much': 1.0, 'a': 1.0, 'go': 2.0, 's': 3.0, 't': 3.0, 'we': 1.0, 'don': 2.0, 'lives': 1.0, 'foot': 1.0, 're': 1.0, 'compare': 1.0, 'othe': 1.0, 'wherever': 1.0, 'people': 2.0, 'take': 1.0}
Word element => {'babiesrus': 1.0, 'at': 1.0, '4': 1.0, 'on': 1.0, 'bottle': 1.0, 'baby': 1.0, 'its': 3.0, 'to': 1.0, 'product': 1.0, 'a': 1.0, '15': 1.0, 'stuff': 1.0, 'buy': 1.0, 'my': 1.0, 'find': 1.0, 'for': 1.0, 'love': 1.0, 'hard': 1.0, 'this': 1.0, 'it': 2.0, 'considering': 1.0, 'but': 1.0, 'babies': 1.0, 'do': 1.0, 'toyrus': 1.0, 'sells': 1.0, 'like': 2.0, 'not': 1.0, 'here': 2.0}
Word element => {'buy': 1.0, 'that': 1.0, 'together': 1.0, 'great': 1.0, 'it': 2.0, 'little': 1.0, 'son': 1.0, 'other': 1.0, 'loves': 1.0, 'than': 1.0, 'but': 1.0, 'while': 1.0, 'my': 1.0, 'the': 1.0, 's': 1.0, 'took': 1.0, 'a': 2.0, 'bed': 1.0, 'to': 1.0, 'put': 1.0}
Word element => {'dualie': 1.0, 'had': 1.0, 'unfortunately': 1.0, 'remove': 1.0, 'return': 1.0, 'way': 1.0, 'straps': 4.0, 'stroller': 2.0, 'your': 1.0, 'on': 1.0, 'put': 1.0, 'a': 2.0, 'completely': 1.0, 'is': 2.0, 'really': 1.0, 'problem': 1.0, 'if': 3.0, 'are': 1.0, 'where': 2.0, 'actually': 1.0, 'the': 8.0, 'sewn': 1.0, 'holes': 1.0, 'i': 3.0, 'liked': 1.0, 'comfortable': 1.0, 'would': 1.0, 'have': 4.0, 'only': 2.0, 'its': 1.0, 'all': 1.0, 'to': 5.0, 'this': 3.0, 'soft': 1.0, 'very': 1.0, 'open': 1.0, 'and': 1.0, 'you': 5.0, 'in': 1.0, 'cant': 2.0, 'use': 3.0, 'pad': 1.0, 'particular': 1.0, 'through': 1.0, 'liner': 1.0, 'makes': 1.0, 'at': 1.0, 'because': 1.0, 'not': 1.0, 'bob': 1.0, 'that': 2.0, 'into': 2.0, 'arent': 1.0, 'slide': 1.0, 'get': 1.0, 'sure': 1.0, 'sense': 1.0}
Word element => {'need': 1.0, 'we': 1.0, 'but': 1.0, 'black': 1.0, 'came': 1.0, 'in': 2.0, 'wish': 1.0, 'keeps': 1.0, 'our': 1.0, 'do': 1.0, 'and': 1.0, 'described': 1.0, 'just': 2.0, 'to': 1.0, 'was': 1.0, 'fingers': 1.0, 'product': 1.0, 'year': 1.0, 'as': 1.0, 'from': 1.0, 'what': 1.0, 'does': 1.0, 'his': 1.0, 'little': 1.0, '2': 1.0, 'the': 1.0, 'fan': 1.0, 'putting': 1.0, 'old': 1.0, 'i': 1.0, 'this': 1.0, 'it': 2.0}
Word element => {'otherwise': 1.0, 'as': 1.0, 'done': 1.0, 'handles': 1.0, 'pushing': 1.0, 'loves': 1.0, 'maneuver': 1.0, 'when': 2.0, 'am': 2.0, 'again': 1.0, 'barely': 1.0, 'that': 1.0, 'easily': 1.0, 'flip': 1.0, 'kickstand': 1.0, 'but': 1.0, 'pram': 1.0, 'is': 6.0, 'little': 1.0, 'customer': 2.0, 'wheels': 2.0, 'them': 1.0, 'has': 3.0, 'they': 2.0, 'husband': 2.0, 'beautiful': 1.0, 'adjustable': 1.0, 'other': 1.0, 'great': 1.0, 'for': 2.0, 'love': 2.0, 'and': 8.0, 'my': 2.0, 'me': 2.0, 'not': 1.0, 'stroller': 6.0, 'sent': 1.0, 'new': 2.0, 'would': 1.0, 'convenient': 1.0, 'with': 2.0, 'emailed': 1.0, 'a': 5.0, 'we': 1.0, 'can': 1.0, 'lightweight': 1.0, 'so': 1.0, 'it': 6.0, 'this': 3.0, 'in': 5.0, '105lbs': 1.0, 'service': 2.0, 'turn': 1.0, 'baby': 1.0, 'leash': 1.0, 'folds': 1.0, 'easy': 1.0, 'diff': 1.0, 'nicely': 1.0, '2hands': 1.0, 'suv': 1.0, 'up': 2.0, '7': 1.0, 'lubed': 1.0, 'i': 5.0, '5': 1.0, '3': 1.0, 'update': 1.0, 'on': 1.0, 'are': 2.0, 'bad': 1.0, 'have': 1.0, 'only': 1.0, 'much': 1.0, 'squeak': 1.0, 'used': 2.0, 'get': 1.0, 'months': 1.0, 'groan': 1.0, 'one': 1.0, 'resisting': 1.0, 'be': 2.0, 'asleep': 1.0, 'made': 1.0, 'the': 9.0, 'of': 1.0, 'able': 1.0, 'something': 1.0, 'buy': 1.0, 'hand': 1.0, 'while': 1.0, 'holding': 1.0, 'heartbeati': 1.0, 'dog': 1.0, 'frame': 1.0, 'now': 1.0, 'even': 1.0, 'struggle': 1.0, 'keep': 1.0, 'to': 5.0, 'straight': 1.0, 'hope': 1.0}
Word element => {'week': 1.0, 'has': 1.0, 'shade': 1.0, 'of': 1.0, 'on': 1.0, 'dot': 1.0, 'amazing': 1.0, 'entertaining': 1.0, 'dots': 1.0, 'though': 1.0, 'about': 1.0, 'thing': 1.0, 'very': 1.0, 'three': 1.0, 'since': 1.0, 'main': 1.0, 'space': 1.0, 'storage': 1.0, 'from': 1.0, 'upright': 1.0, 'have': 1.0, 'converted': 1.0, 'in': 1.0, 'seems': 1.0, 'all': 1.0, 'to': 2.0, 'was': 1.0, 'had': 1.0, 'the': 12.0, 'great': 1.0, 'bliss': 1.0, 'bassinet': 2.0, 'daughter': 1.0, 'value': 1.0, 'stroller': 2.0, 'so': 1.0, 'my': 1.0, 'underneath': 1.0, 'lightweight': 1.0, 'purchase': 1.0, 'it': 3.0, 'convenient': 2.0, 'with': 1.0, 'fantastic': 1.0, 'recently': 1.0, 'good': 1.0, 'five': 1.0, 'comfy': 1.0, 'pattern': 1.0, 'and': 2.0, 'one': 1.0, 'months': 1.0, 've': 1.0, 'super': 1.0, 'carry': 1.0, 'enough': 1.0, 'is': 2.0, 'around': 1.0, 'been': 1.0, 'that': 1.0, 'i': 1.0, 'but': 1.0, 'can': 1.0, 'up': 1.0, 'inside': 1.0, 'down': 1.0, 'few': 1.0, 'steps': 1.0, 'a': 3.0, 'we': 2.0, 'city': 1.0}
Word element => {'dissapointed': 1.0, 'very': 1.0, 'be': 1.0, 'better': 1.0, 'definitely': 1.0, 'should': 1.0, 'price': 1.0, 'issues': 1.0, 'are': 1.0, 'am': 1.0, 'today': 1.0, 'feel': 1.0, 'would': 1.0, 'into': 1.0, 'wasn': 1.0, 'right': 1.0, 'attracted': 1.0, 'came': 1.0, 'car': 2.0, 'seems': 1.0, 'option': 1.0, 'main': 1.0, 'since': 1.0, 'away': 1.0, 'weird': 1.0, 'and': 3.0, 'unstablity': 1.0, 'bliss': 2.0, 'in': 1.0, 'seat': 3.0, 'stroller': 2.0, 'our': 1.0, 'hoping': 1.0, 'to': 3.0, 'that': 5.0, 'because': 1.0, 'they': 1.0, 'maclaren': 1.0, 'both': 1.0, 'best': 1.0, 'by': 1.0, 'poorly': 1.0, 'passed': 1.0, 'just': 1.0, 'graco': 1.0, 'when': 2.0, 'someone': 1.0, 'lot': 1.0, 'too': 1.0, 'actual': 1.0, 'happy': 1.0, 'adapter': 2.0, 'features': 1.0, 'was': 2.0, 'unfortunately': 1.0, 'ordered': 1.0, 'secure': 1.0, 'extremely': 1.0, 'well': 1.0, 'i': 9.0, 'worlds': 1.0, 'pram': 1.0, 'more': 1.0, 'is': 1.0, 'were': 1.0, 'it': 6.0, 'thought': 1.0, 'type': 1.0, 'had': 1.0, 'contours': 1.0, 'me': 1.0, 'my': 2.0, 'company': 1.0, 't': 1.0, 'a': 3.0, 'figured': 1.0, 'go': 1.0, 'of': 2.0, 'the': 12.0, 'using': 1.0, 'strap': 1.0, 'called': 1.0, 'but': 1.0, 'did': 1.0, 'absolutely': 1.0, 'nothing': 1.0, 'about': 1.0, 'noticed': 1.0, 'on': 1.0, 'resolve': 1.0, 'make': 1.0, 'snap': 1.0, 'started': 1.0, 'use': 2.0, 'instead': 1.0, 'able': 1.0, 'everytime': 1.0, 'do': 1.0, 'its': 1.0, 'have': 1.0, 'problem': 1.0, 'same': 1.0, 'for': 2.0, 'this': 1.0, 'squeaking': 1.0, 'wheels': 1.0, 'noise': 1.0, 'stable': 1.0, '5': 1.0, 'made': 2.0, 'after': 1.0, 'months': 1.0, 'finally': 1.0}
Word element => {'helps': 1.0, 'hope': 1.0, 'matters': 1.0, 'loves': 2.0, 'advice': 1.0, 'go': 1.0, 'just': 1.0, 'or': 1.0, 'consumer': 1.0, 'born': 1.0, 'featured': 1.0, 'explorer': 1.0, 'also': 1.0, 'happier': 1.0, 'more': 2.0, 'spare': 1.0, 'be': 2.0, 'll': 2.0, 'boot': 1.0, 'with': 4.0, 'jp': 1.0, 'car': 2.0, 'only': 1.0, 'line': 1.0, 'set': 1.0, 're': 1.0, 'ford': 1.0, 'remove': 1.0, 'here': 1.0, 'her': 1.0, 'had': 1.0, 'full': 1.0, 'heart': 1.0, 'really': 3.0, 'sleeping': 1.0, 'strollers': 2.0, 'them': 2.0, 'have': 4.0, '2011': 1.0, 'all': 2.0, 'fits': 1.0, 'space': 1.0, 'contours': 1.0, 'different': 1.0, 'pliko': 3.0, 'though': 2.0, 'see': 1.0, 'a': 13.0, 'might': 1.0, 'as': 3.0, 'to': 6.0, 'our': 2.0, 'p3': 2.0, 'on': 1.0, 'better': 1.0, 'think': 3.0, 'your': 1.0, 'bmw': 1.0, 'two': 1.0, 'little': 5.0, 'from': 1.0, 'fine': 1.0, 'we': 4.0, 'reviews': 1.0, 'between': 1.0, 'that': 3.0, 'cabrio': 1.0, 'because': 3.0, 'moon': 1.0, 'saturn': 1.0, 'does': 1.0, 'baby': 2.0, 'dad': 1.0, 'like': 1.0, 'and': 8.0, 'not': 1.0, 'the': 12.0, 'of': 2.0, 'there': 1.0, 'new': 1.0, 'uses': 1.0, 'hello': 1.0, 'very': 4.0, 'being': 1.0, 'lot': 1.0, 'actual': 1.0, 'one': 4.0, 'for': 3.0, 'but': 2.0, 'write': 1.0, 'wife': 2.0, 'pram': 2.0, 'expert': 1.0, 'this': 3.0, 'it': 9.0, 'my': 6.0, 'me': 2.0, 'looks': 3.0, 'bottom': 1.0, 'far': 1.0, 'who': 1.0, 'peg': 1.0, 'perego': 1.0, 'things': 1.0, 'you': 9.0, 'breaks': 1.0, 'when': 5.0, 'folded': 1.0, 'fantastic': 1.0, 'can': 2.0, 'comparison': 1.0, 'both': 4.0, 'price': 1.0, 'in': 1.0, 'bit': 3.0, 'easy': 1.0, 'get': 4.0, 'enough': 1.0, 'is': 12.0, 'handle': 1.0, 'coming': 1.0, 'i': 3.0, 'well': 3.0, 'which': 1.0, 'good': 2.0, 'side': 1.0, 'made': 2.0, 'up': 1.0, 'less': 1.0, 'by': 1.0, 'home': 2.0, 'than': 1.0, 'wake': 1.0, 'particular': 1.0, 'comfortable': 1.0, 'design': 1.0, 'important': 1.0, 'bliss': 4.0, 'daughter': 2.0, 'even': 2.0, 'practical': 2.0, 'upsides': 2.0, 'toughest': 1.0, 'fair': 1.0, 'back': 1.0, 'most': 1.0, 'pay': 1.0, 'bigger': 1.0, 'if': 2.0, 'still': 1.0, 'sport': 1.0, 'are': 2.0}
Word element => {'using': 1.0, 'going': 1.0, 'grows': 1.0, 'child': 1.0, 'only': 1.0, '40': 1.0, 'birth': 1.0, 'from': 1.0, 'very': 2.0, 's': 1.0, 'set': 1.0, 'on': 1.0, 'breeze': 1.0, 'frame': 1.0, 'aluminum': 1.0, 'out': 1.0, 'compactly': 1.0, 'storage': 1.0, 'easy': 4.0, 'reclining': 1.0, 'position': 1.0, 'makes': 1.0, 'restraint': 1.0, 'point': 1.0, 'features': 1.0, 'grip': 1.0, 'was': 1.0, 'lbs': 1.0, '5': 3.0, 'down': 1.0, 'pushing': 1.0, 'height': 2.0, 'lift': 1.0, 'compact': 1.0, 'also': 1.0, 'uneven': 2.0, 'wheels': 3.0, 'miss': 1.0, 'front': 2.0, 'safety': 2.0, 'size': 3.0, 'folds': 2.0, 'many': 1.0, 'anysize': 1.0, 'holds': 2.0, 'infant': 2.0, 'car': 3.0, 'maneuver': 1.0, 'right': 1.0, 'your': 5.0, 'any': 2.0, 'as': 2.0, 'attach': 1.0, 'solo': 1.0, 'just': 3.0, 'by': 1.0, 'to': 9.0, 'bassinet': 2.0, 'suitable': 1.0, 'need': 1.0, 'or': 4.0, 'facing': 2.0, 'you': 5.0, 'lock': 2.0, 'are': 1.0, 'bliss': 1.0, 'add': 1.0, 'buy': 1.0, 'extra': 2.0, 'contours': 1.0, 'style': 1.0, 'weights': 1.0, 'not': 1.0, 'forward': 1.0, 'insert': 1.0, 'boot': 1.0, '1': 1.0, 'foot': 1.0, 'great': 1.0, 'basket': 1.0, 'ample': 1.0, 'padded': 1.0, 'downside': 1.0, 'adapter': 1.0, 'its': 3.0, 'seat': 6.0, 'in': 2.0, 'fingertips': 1.0, 'for': 5.0, 'muff': 1.0, 'convert': 1.0, 'of': 5.0, 'the': 9.0, 'parent': 3.0, 'access': 1.0, 'tried': 1.0, 'off': 1.0, 'this': 2.0, 'it': 12.0, 'adjustable': 2.0, 'surfaces': 2.0, 'cups': 1.0, 'cup': 2.0, '4': 2.0, 'a': 6.0, 'whether': 1.0, 'rear': 1.0, 'want': 2.0, 'handle': 2.0, 'at': 3.0, 'look': 2.0, 'is': 3.0, 'more': 1.0, 'comes': 1.0, 'versatile': 1.0, 'i': 4.0, 'well': 2.0, 'comfort': 3.0, 'has': 2.0, 'different': 2.0, 'love': 2.0, 'accessories': 1.0, 'models': 1.0, 'with': 4.0, 'drinks': 2.0, 'like': 1.0, '20': 3.0, 'that': 2.0, 'pounds': 2.0, 'stuck': 1.0, 'assembly': 1.0, 'particular': 1.0, 'includes': 1.0, 'brand': 1.0, 'so': 2.0, 'can': 3.0, 'over': 1.0, 'work': 1.0, 'without': 1.0, 'choose': 1.0, 'worked': 1.0, 'having': 1.0, 'when': 1.0, 'what': 1.0, 'and': 11.0, 'likely': 1.0, 'double': 1.0, 'check': 1.0, 'stroller': 8.0, 'how': 1.0, 'really': 2.0, 'course': 1.0, 'enjoy': 1.0, 'convertible': 1.0, 'carrycot': 1.0, 'we': 1.0, 'then': 1.0, 'take': 1.0, 'expandable': 2.0, 'use': 2.0, 'all': 2.0, 'fits': 1.0, 'combo': 1.0, 'an': 2.0, 'system': 2.0, 'holder': 2.0}
Word element => {}
Word element => {'cute': 1.0, 's': 1.0, 'we': 1.0, 'easily': 1.0, 'vehicles': 1.0, 'near': 1.0, 'doesn': 1.0, 'seat': 2.0, 'new': 1.0, 'her': 2.0, 'take': 1.0, 'light': 1.0, 'it': 3.0, 'think': 1.0, 'loves': 1.0, 'the': 1.0, 't': 1.0, 'daughter': 1.0, 'my': 1.0, 'booster': 1.0, 'as': 2.0, 'and': 1.0, 'old': 1.0, 'wipe': 1.0, 'to': 2.0, 'much': 1.0, 'room': 1.0, 'really': 1.0, 'is': 1.0, 'easy': 1.0, 'move': 1.0, 'different': 1.0}
Word element => {'protected': 1.0, 'is': 1.0, 'same': 1.0, 'manage': 1.0, 'very': 2.0, 'all': 1.0, 'perfect': 1.0, 'this': 1.0, 'car': 1.0, 'would': 1.0, 'at': 2.0, 'safe': 1.0, 'she': 1.0, 'easy': 2.0, 'be': 1.0, 'while': 1.0, 'being': 1.0, 'was': 2.0, 'granddaughter': 1.0, 'to': 2.0, 'cars': 1.0, 'cluncky': 1.0, 'that': 1.0, 'not': 1.0, 'seat': 1.0, 'of': 1.0, 'for': 2.0, 'time': 1.0, 'shopping': 1.0, 'i': 1.0, 'my': 1.0, 'lightweight': 1.0, 'the': 2.0, 'well': 1.0, 'a': 1.0, 'maneuver': 1.0, 'into': 1.0, 'and': 1.0, 'out': 1.0}
Word element => {'otherwise': 1.0, 'will': 1.0, 'this': 1.0, 'between': 1.0, 'easy': 1.0, 'size': 1.0, 'in': 1.0, 'well': 1.0, 'works': 1.0, 'trips': 1.0, 'it': 2.0, 'daily': 1.0, 'after': 1.0, 'that': 3.0, 'something': 2.0, 'look': 1.0, 'isn': 1.0, 'needed': 1.0, 'elsewhere': 1.0, 'to': 2.0, 'seat': 2.0, 'not': 1.0, 'and': 3.0, 'leave': 1.0, 'spare': 1.0, 'is': 1.0, 'cars': 1.0, 'required': 1.0, 'work': 1.0, 'most': 1.0, 'sturdy': 1.0, 'travel': 1.0, 'use': 1.0, 'car': 3.0, 'purpose': 1.0, 'activities': 1.0, 'easily': 1.0, 'you': 2.0, 'the': 1.0, 'might': 1.0, 'a': 2.0, 'could': 1.0, 'we': 1.0, 's': 1.0, 't': 1.0, 'of': 1.0, 'move': 1.0, 'however': 1.0, 'certainly': 1.0, 'seats': 1.0, 'school': 1.0, 'comfortable': 1.0, 'padded': 1.0, 'lengthy': 1.0, 'enough': 1.0, 'especially': 1.0, 'want': 1.0, 'if': 1.0, 'need': 1.0, 'for': 4.0, 'cheap': 1.0, 'smaller': 1.0}
Word element => {'would': 1.0, 'far': 1.0, 'so': 1.0, 'i': 1.0, 'issues': 1.0, 'my': 1.0, 'picked': 1.0, 'any': 1.0, 'and': 2.0, 'daughter': 1.0, 'recommend': 1.0, 'seat': 1.0, 'functional': 1.0, 'this': 1.0, 'loves': 1.0, 'without': 1.0, 'it': 2.0, 's': 1.0, 'comfortable': 1.0}
Word element => {'just': 1.0, 'gets': 1.0, 'makes': 1.0, 'protects': 1.0, 'before': 1.0, 'towel': 3.0, 'been': 1.0, 'some': 1.0, 'there': 1.0, 'left': 1.0, 'strapping': 1.0, 'after': 1.0, 'unbuckle': 1.0, 'marked': 1.0, 'started': 1.0, 'cushion': 1.0, 'have': 1.0, 'marks': 1.0, 'leave': 1.0, 'may': 1.0, 'they': 1.0, 'move': 1.0, 'you': 2.0, 'on': 3.0, 'size': 2.0, 'dirty': 1.0, 'full': 2.0, 'ofthe': 1.0, 'replace': 1.0, 'case': 1.0, 'booster': 1.0, 'space': 2.0, 'a': 11.0, 'we': 8.0, 'transitioned': 1.0, 't': 1.0, 'require': 1.0, 'of': 4.0, 'the': 13.0, 'really': 1.0, 'attractive': 1.0, 'in': 1.0, 'seat': 3.0, 'how': 1.0, 'our': 8.0, 'high': 3.0, 'to': 10.0, 'place': 1.0, 'pads': 1.0, 'didn': 1.0, 'daughter': 1.0, 'got': 2.0, 'feeding': 1.0, 'still': 1.0, 'newborn': 1.0, 'chair': 8.0, 'couple': 1.0, 'extra': 1.0, 'reclining': 1.0, 'liked': 1.0, 'for': 7.0, 'type': 1.0, 'had': 1.0, 'years': 4.0, 'it': 9.0, 'under': 2.0, 'often': 1.0, 'month': 1.0, 'slightly': 1.0, 'remove': 1.0, 'first': 5.0, '3': 1.0, 'older': 3.0, 'with': 3.0, 'and': 10.0, 'recently': 1.0, 'similar': 2.0, 'version': 1.0, 'old': 1.0, 'fact': 1.0, 'price': 1.0, 'toddler': 1.0, 'cushions': 1.0, 'offer': 1.0, 'an': 1.0, 'wash': 1.0, 'use': 1.0, 'her': 1.0, 'clean': 3.0, 'when': 2.0, 'so': 1.0, 'wanted': 1.0, 'get': 2.0, 'fisher': 1.0, 'bit': 1.0, 'easy': 1.0, 'something': 1.0, 'time': 1.0, 'model': 2.0, 'new': 1.0, 'this': 4.0, 'cushier': 1.0, 'would': 1.0, 'design': 2.0, 'she': 1.0, 'baby': 1.0, 'is': 3.0, 'more': 1.0, 'install': 1.0, 'comfortable': 1.0, 'over': 1.0, 'takes': 1.0, 'up': 1.0, 'less': 1.0, 'than': 2.0, 'also': 3.0, 'own': 2.0, 'seems': 1.0, 'solution': 1.0, 'them': 1.0, 'has': 3.0, 'table': 1.0, 'easier': 2.0, 'that': 5.0, 'advantages': 1.0, 'lot': 2.0, 'one': 2.0, 'specifically': 1.0, 'very': 1.0, 'infant': 1.0, 'was': 2.0, 'tip': 1.0, 'chairs': 2.0, 'i': 1.0, 'these': 1.0, 'types': 1.0, 'depending': 1.0}
Word element => {'neutral': 1.0, 'gender': 1.0, 'the': 1.0, 'nicely': 1.0, 'up': 1.0, 'washes': 1.0, 'and': 1.0, 'color': 1.0, 'easily': 1.0, 'pad': 1.0, 'awesome': 1.0, 'rarely': 1.0, 'go': 1.0, 'product': 1.0, 'but': 1.0, 'with': 1.0, 'removes': 1.0, 'fisher': 1.0, 'you': 1.0, 'love': 1.0, 'can': 1.0, 'wrong': 1.0, 'price': 1.0}
Word element => {'they': 1.0, 'houses': 1.0, 'grandparents': 1.0, 'or': 1.0, 'friends': 1.0, 'bring': 1.0, 'also': 1.0, 'but': 1.0, 'for': 1.0, 'll': 1.0, 'favorite': 1.0, 'like': 1.0, 'which': 1.0, 'head': 1.0, 'afterwards': 1.0, 'over': 1.0, 'don': 1.0, 'whatsoever': 1.0, 'a': 1.0, 'as': 1.0, 'any': 1.0, 'tied': 1.0, 'seem': 1.0, 'clean': 1.0, 'am': 1.0, 'last': 1.0, 'use': 2.0, 'instructions': 1.0, 'way': 1.0, 'assemble': 1.0, 't': 1.0, 'beat': 1.0, 'though': 1.0, 'basic': 1.0, 'issues': 1.0, 'the': 4.0, 'of': 2.0, 'easy': 3.0, 'toys': 1.0, 'done': 1.0, 'far': 1.0, 'fan': 1.0, 'i': 4.0, 'may': 1.0, 'my': 2.0, 'only': 1.0, 'company': 1.0, 'are': 1.0, 'home': 1.0, 'by': 1.0, 'just': 2.0, 'perhaps': 1.0, 'cushion': 1.0, 'best': 1.0, 'd': 1.0, 'child': 1.0, 'price': 1.0, 'products': 2.0, 'equipped': 1.0, 'branding': 1.0, 'be': 2.0, 'and': 3.0, 'all': 1.0, 'other': 1.0, 'kitchen': 1.0, 'fisher': 1.0, 'paraphernalia': 1.0, 'comes': 1.0, 'from': 2.0, 'with': 2.0, 'this': 3.0, 'where': 1.0, 'come': 1.0, 'companies': 1.0, 'see': 1.0, 'off': 1.0, 'their': 1.0, 'disney': 1.0, 'spacesaver': 1.0, 'to': 8.0, 'high': 1.0, 'chair': 2.0, 'no': 1.0, 'exception': 1.0, 'was': 1.0, 'minutes': 1.0, 'you': 3.0, 'able': 1.0, 'put': 1.0, 'it': 5.0, 'together': 1.0, 'in': 1.0, 'forever': 1.0, 'looking': 1.0, 'is': 3.0, 'at': 1.0, 'did': 1.0, 'double': 1.0, 'check': 1.0, 'inevitable': 1.0, 'easily': 1.0, 'that': 2.0, 'had': 1.0, 'correctly': 1.0, 'without': 2.0, 'works': 1.0, 'expect': 1.0, 'can': 1.0, 'so': 1.0, 'cleaned': 1.0, 'plain': 1.0, 'great': 1.0, 'not': 2.0}
Word element => {'overall': 1.0, 'off': 1.0, 'on': 1.0, 'get': 1.0, 'clean': 1.0, 'to': 1.0, 's': 1.0, 'around': 1.0, 'of': 1.0, 'up': 1.0, 'really': 2.0, 'tray': 1.0, 'easy': 1.0, 'table': 1.0, 'lot': 1.0, 'a': 2.0, 'don': 1.0, 'doesnt': 1.0, 'take': 1.0, 'that': 1.0, 'it': 1.0, 'this': 1.0, 'buy': 1.0, 'i': 2.0, 'much': 1.0, 'room': 1.0, 'great': 1.0, 't': 1.0, 'the': 2.0, 'love': 1.0, 'yet': 1.0, 'use': 1.0, 'but': 1.0}
Word element => {'washer': 1.0, 'in': 1.0, 'throw': 1.0, 'easily': 1.0, 'cmoes': 1.0, 'cover': 1.0, 'the': 1.0, 'easy': 2.0, 'to': 3.0, 'install': 1.0, 'really': 2.0, 'has': 1.0, 'well': 1.0, 'off': 1.0, 'held': 1.0, 'clean': 1.0, 'up': 1.0, 'very': 1.0, 'and': 1.0}
Word element => {'defect': 1.0, 'due': 1.0, '2': 1.0, 'd': 1.0, 'i': 2.0, 'a': 2.0, 's': 1.0, 'we': 1.0, 'realizing': 1.0, 't': 1.0, 'attach': 1.0, 'trouble': 1.0, 'make': 1.0, 'on': 1.0, 'your': 1.0, 'high': 1.0, 'to': 9.0, 'shoving': 1.0, 'side': 1.0, 'tray': 1.0, 'potentially': 1.0, 'factory': 1.0, 'much': 1.0, 'install': 1.0, '1': 1.0, 'and': 2.0, 'manufacturing': 1.0, 'one': 2.0, 'too': 1.0, 'but': 1.0, 'can': 1.0, 'was': 2.0, 'doesn': 1.0, 'had': 2.0, 'chair': 3.0, 'star': 1.0, 'easier': 1.0, 'backwards': 1.0, 'although': 1.0, 'into': 1.0, 'of': 1.0, 'the': 12.0, 'place': 2.0, 'without': 1.0, 'first': 1.0, 'greco': 1.0, 'not': 1.0, 'wrong': 1.0, 'needing': 1.0, 'familiar': 1.0, 'bit': 1.0, 'easy': 1.0, 'easily': 1.0, 'that': 1.0, 'because': 1.0, 'under': 1.0, 'seem': 1.0, 'assemble': 1.0, 'than': 2.0, 'way': 1.0, 'it': 9.0, 'precious': 1.0, 'with': 3.0, 'latches': 1.0, 'this': 3.0, 'just': 1.0, 'you': 2.0, 'push': 1.0, 'been': 1.0, 'subtract': 1.0, 'down': 1.0, 'snap': 1.0, 'm': 1.0, 'seat': 1.0, 'in': 1.0, 'slide': 1.0, 'remedied': 1.0, 'snaps': 1.0, 'from': 1.0, 'hard': 1.0, 'front': 1.0, 'at': 2.0, 'is': 1.0, 'snug': 1.0, 'lets': 1.0, 'have': 1.0, 'nice': 2.0, 'little': 1.0, 'best': 1.0, 'tummy': 1.0, 'seems': 1.0, 'quite': 1.0, 'sturdy': 1.0, 'buckle': 2.0, 'even': 1.0, 'though': 1.0, 'accommodate': 1.0, 'attached': 1.0, 'be': 1.0, 'shape': 1.0, 'threaded': 1.0, 'rather': 1.0, 'like': 1.0}
Word element => {'decors': 1.0, 'modern': 1.0, 'recommend': 1.0, 'children': 1.0, 'be': 2.0, 'than': 1.0, 'will': 2.0, 'booster': 1.0, 'attractive': 1.0, 'highly': 1.0, 'doubles': 1.0, 'that': 2.0, 'last': 1.0, 'clean': 1.0, 'wipes': 1.0, 'fabric': 1.0, 'traditional': 1.0, 'easily': 1.0, 'removes': 1.0, 'down': 1.0, 'longer': 1.0, 'favorite': 1.0, 'or': 1.0, 'house': 1.0, 'grandma': 1.0, 'product': 1.0, 'for': 1.0, 'tray': 1.0, 'one': 1.0, 'have': 2.0, 'the': 8.0, 'bulky': 1.0, 'didn': 1.0, 'passed': 1.0, 'meal': 1.0, 'products': 1.0, 'restaurants': 1.0, 'i': 2.0, 'baby': 3.0, 'price': 2.0, 'best': 2.0, 'part': 1.0, 'from': 1.0, 'big': 1.0, 'room': 1.0, 'is': 5.0, 'of': 2.0, 'fisher': 2.0, 'up': 1.0, 'high': 5.0, 'grows': 1.0, 'portable': 1.0, 'spacesaver': 3.0, 'looking': 1.0, 'ever': 1.0, 'rainforest': 1.0, 'chair': 6.0, 'collection': 1.0, 'kitchen': 2.0, 'able': 1.0, 'taking': 1.0, 'fits': 1.0, 'my': 3.0, 'family': 1.0, 'space': 1.0, 'in': 2.0, 'this': 3.0, 'with': 2.0, 'it': 4.0, 'attaches': 1.0, 'all': 1.0, 'seat': 1.0, 'as': 3.0, 'our': 1.0, 'to': 5.0, 'and': 4.0, 'most': 1.0, 'can': 2.0, 'his': 1.0, 'simply': 1.0, 'friends': 1.0, 'so': 1.0, 's': 1.0, 't': 1.0, 'a': 4.0, 'we': 1.0, 'take': 1.0}
Word element => {'good': 1.0, 'of': 1.0, 'give': 1.0, 'us': 1.0, 'm': 1.0, 'so': 1.0, 'booster': 1.0, 'converts': 1.0, 'neutral': 1.0, 'gender': 1.0, 'bonus': 1.0, 'use': 1.0, 'added': 1.0, 'have': 1.0, 'to': 2.0, 'much': 1.0, 'will': 1.0, 'an': 1.0, 'complain': 1.0, 'seat': 1.0, 'not': 1.0, 'leaf': 1.0, 'is': 2.0, 'high': 1.0, 'years': 1.0, 'about': 1.0, 'a': 1.0, 'well': 1.0, 'found': 1.0, 'i': 3.0, 'sure': 1.0, 'chair': 1.0, 'this': 1.0, 'with': 1.0, 'it': 4.0, 'made': 1.0, 'the': 1.0, 'and': 1.0, 'like': 1.0, 'as': 1.0, 'design': 1.0}
Word element => {'t': 1.0, 'don': 1.0, 'height': 1.0, 'adjust': 1.0, 'traditional': 1.0, 'may': 3.0, 'have': 3.0, 'want': 2.0, 'saying': 1.0, 'as': 1.0, 'our': 1.0, 'from': 1.0, 'so': 2.0, 'can': 2.0, 'money': 1.0, 'your': 2.0, 'grows': 1.0, 'that': 6.0, 'would': 1.0, 'go': 1.0, 'small': 1.0, 'a': 8.0, 'going': 1.0, 's': 1.0, 'we': 1.0, 'chair': 14.0, 'if': 2.0, 'course': 1.0, 'there': 2.0, 'i': 3.0, 'to': 12.0, 'high': 6.0, 'do': 2.0, 'and': 4.0, 'like': 3.0, 'hold': 1.0, 'with': 1.0, 'already': 1.0, 'it': 5.0, 'this': 8.0, 'full': 2.0, 'perfect': 1.0, 'one': 1.0, 'for': 3.0, 'throw': 1.0, 'great': 3.0, 'nice': 1.0, 'are': 2.0, 'strap': 3.0, 'several': 1.0, 'about': 2.0, 'booster': 2.0, 'you': 12.0, 'things': 1.0, 'child': 2.0, 'price': 1.0, 'the': 8.0, 'of': 1.0, 'use': 1.0, 'ready': 1.0, 'only': 2.0, 'function': 1.0, 'seat': 1.0, 'in': 2.0, 'scale': 1.0, 'said': 1.0, 'car': 1.0, 're': 1.0, 'mind': 1.0, 'house': 2.0, 'grandma': 1.0, 'when': 1.0, 'what': 1.0, 'need': 3.0, 'or': 1.0, 'grandpas': 1.0, 'also': 1.0, 'travel': 1.0, 'will': 1.0, 'has': 2.0, 'chest': 1.0, 'at': 1.0, 'is': 9.0, 'pelvis': 1.0, 'something': 2.0, 'straps': 1.0, 'not': 2.0, 'traps': 1.0, 'versatile': 1.0, 'very': 1.0, 'home': 2.0, 'say': 1.0, 'conserve': 1.0, 'until': 1.0, 'see': 1.0, 'even': 2.0, 'other': 1.0, 'an': 1.0, 'extra': 1.0, 'be': 2.0, 'keep': 1.0, 'though': 1.0, 'having': 1.0}
Word element => {'couldn': 1.0, 'in': 1.0, 'nicer': 1.0, 'are': 1.0, 'colors': 1.0, 'if': 1.0, 'head': 1.0, 'easily': 1.0, 'his': 1.0, 'back': 2.0, 'doesn': 1.0, 'pros': 1.0, 'type': 1.0, 'tray': 1.0, 'is': 1.0, 'great': 1.0, 'lightweight': 1.0, 'so': 1.0, 'size': 1.0, 'baby': 3.0, 'removed': 1.0, 'easy': 2.0, 'than': 1.0, 'slams': 1.0, 'any': 1.0, 'to': 3.0, 'hit': 1.0, 'others': 1.0, 'harness': 1.0, 'backwards': 1.0, 'chair': 1.0, 'he': 1.0, 'this': 1.0, 'durable': 1.0, 'has': 1.0, 'of': 2.0, 't': 2.0, 'messier': 1.0, 'a': 1.0, 'and': 2.0, 'getting': 1.0, 'think': 1.0, 'put': 1.0, 'on': 2.0, 'clean': 1.0, 'out': 1.0, 'take': 1.0, 'placed': 1.0, 'off': 1.0, 'personcons': 1.0, 'keeps': 2.0, 'from': 2.0, 'trying': 1.0, 'bigger': 1.0, 'climb': 1.0}
Word element => {'out': 1.0, 'toys': 1.0, 'better': 1.0, 'are': 1.0, 'there': 2.0, 'and': 1.0, 'else': 1.0, 'much': 1.0, 'useful': 1.0, 'not': 1.0, 'but': 1.0, 'play': 1.0, 'to': 1.0, 'noise': 1.0, 'night': 1.0, 'or': 1.0, 'good': 1.0, 'light': 1.0, '30': 1.0, 'very': 1.0, 'a': 2.0, 'since': 1.0, 'with': 1.0, 'it': 2.0, 'this': 1.0, 'only': 1.0, 'isn': 1.0, 'price': 1.0, 'toy': 2.0, 'maker': 1.0, 'lasts': 1.0, 'minutes': 1.0, 'one': 1.0, 'for': 4.0, 'is': 1.0, 'neat': 1.0, 'little': 2.0, 't': 1.0, 'the': 2.0}
Word element => {'mood': 1.0, 'great': 1.0, 'a': 1.0, 'sure': 1.0, 'baby': 1.0, 'incredibly': 1.0, 'are': 1.0, 'of': 1.0, 'all': 1.0, 'so': 1.0, 'your': 1.0, 'has': 1.0, 'i': 1.0, 'them': 1.0, 'tote': 1.0, 'really': 1.0, 'is': 1.0, 'love': 1.0, 'n': 1.0, 'this': 1.0, 'it': 3.0, 'soothing': 2.0, 'in': 1.0, 'songs': 1.0, 'put': 2.0, 'several': 1.0, 'and': 2.0, 'me': 1.0, 'glow': 1.0, 'almost': 1.0, 'sleep': 2.0, 'to': 3.0, 'hopefully': 1.0, 'different': 1.0, 'plays': 1.0, 'that': 1.0}
Word element => {'minutes': 1.0, 'longer': 1.0, 'played': 1.0, 'her': 1.0, 'wake': 1.0, 'just': 1.0, 'not': 1.0, 'enough': 1.0, 'baby': 1.0, 'plays': 1.0, '5': 1.0, 'than': 1.0, 'wish': 1.0, 'different': 1.0, 'we': 1.0, 'up': 3.0, 'and': 3.0, 'how': 1.0, 'our': 1.0, 'dim': 1.0, 'little': 1.0, 'love': 2.0, 'this': 1.0, 'it': 3.0, 'noise': 2.0, 'check': 1.0, 'white': 2.0, 'melodies': 1.0, 'its': 1.0, 'lights': 1.0, 'to': 2.0, 'elephant': 1.0, 'use': 1.0, 'at': 1.0, 'i': 3.0, 'night': 1.0, 'on': 1.0}
Word element => {'working': 1.0, 'definitely': 1.0, 'parents': 1.0, 'us': 1.0, 'also': 1.0, 'but': 1.0, 'only': 1.0, 'helps': 1.0, 'white': 1.0, 'minutes': 1.0, '30': 1.0, 'up': 1.0, 'provides': 1.0, 'music': 1.0, 'soother': 4.0, 'just': 1.0, 'surprisingly': 1.0, 'in': 1.0, 'sized': 1.0, 'a': 9.0, 'go': 1.0, 'good': 2.0, 's': 8.0, 'glow': 1.0, 'it': 7.0, 'annoying': 1.0, 'man': 1.0, 'not': 2.0, 'for': 3.0, 'brand': 1.0, 'old': 1.0, 'type': 1.0, 'rather': 1.0, 'like': 1.0, 'about': 1.0, 'no': 1.0, 'any': 1.0, 'pretty': 1.0, 'to': 5.0, 'and': 5.0, 'n': 1.0, 'parenthood': 1.0, 'preparing': 1.0, 'what': 1.0, 'again': 1.0, 'really': 2.0, 're': 2.0, 'sooth': 1.0, 'too': 1.0, 'one': 3.0, 'happy': 1.0, 'sound': 1.0, 'help': 1.0, 'colors': 1.0, 'grateful': 1.0, 'its': 1.0, 'get': 1.0, 'size': 1.0, 'softly': 1.0, 'crib': 1.0, 'i': 1.0, 've': 1.0, 'hang': 1.0, 'there': 1.0, 'always': 1.0, 'solid': 1.0, 'an': 1.0, 'baby': 2.0, 'trusted': 1.0, 'of': 3.0, 'the': 9.0, 'reach': 1.0, 'sneaker': 1.0, 'button': 2.0, 'with': 2.0, 'that': 2.0, 'tote': 1.0, 'into': 1.0, 'glows': 1.0, 'butterfly': 1.0, 'use': 1.0, 'fisher': 2.0, 'front': 1.0, 'away': 1.0, 'from': 1.0, 'if': 1.0, 'this': 1.0, 'soft': 2.0, 'operation': 1.0, 'you': 6.0, 'push': 1.0, 'on': 1.0, 'put': 1.0, 'large': 2.0, 'god': 1.0, 'can': 2.0, 'so': 1.0, 'appropriate': 1.0, 'lights': 1.0, 'even': 2.0, 'needed': 1.0, 'newborn': 1.0, 'or': 1.0, 'product': 2.0, 'price': 2.0, 'thank': 1.0, 'year': 1.0, 'is': 4.0, 'handle': 1.0, 'at': 1.0, 'bedtime': 1.0, 'maker': 1.0, 'quality': 1.0, 'noise': 2.0, 'neon': 1.0, 'very': 1.0, 'plays': 1.0}
Word element => {'great': 1.0, 'daughter': 1.0, 'my': 1.0, 'crib': 1.0, 'in': 1.0, 'put': 1.0, 'same': 1.0, 'complete': 1.0, 'sounds': 1.0, 'cycle': 1.0, 'be': 1.0, 'to': 2.0, 'and': 3.0, 'too': 1.0, 'soothing': 1.0, 'loud': 1.0, 'it': 4.0, 'this': 1.0, 'with': 3.0, 'two': 1.0, 'i': 2.0, 'tried': 1.0, 'slowly': 1.0, 'has': 1.0, 'love': 1.0, 'we': 1.0, 'have': 2.0, 've': 1.0, 'settings': 1.0, 'is': 2.0, 'even': 1.0, 'changes': 1.0, 'louder': 1.0, 'set': 1.0, 'many': 1.0, 'pretty': 1.0, 'quiet': 1.0, 'when': 1.0, 'you': 1.0, 'but': 1.0, 'most': 1.0, 'music': 1.0, 'can': 1.0, 'the': 6.0, 'without': 1.0, 'white': 1.0, 'out': 1.0, 'noise': 1.0, 'volume': 1.0, 'or': 2.0, 'one': 1.0, 'color': 2.0, 'been': 1.0, 'changing': 1.0, 'soother': 1.0, 'light': 3.0, 'works': 1.0, 'only': 1.0, 'dims': 1.0}
Word element => {'to': 1.0, 'for': 1.0, 'lasts': 1.0, 'nice': 1.0, 'sound': 1.0, 'bought': 1.0, 'it': 2.0, 'because': 1.0, 'carry': 1.0, 'of': 1.0, 'a': 2.0, 'lot': 1.0, 'night': 1.0, 'at': 1.0, 'not': 1.0, 'sale': 1.0, 'hopefully': 1.0, 'use': 1.0, 'too': 1.0, 'her': 1.0, 'bright': 1.0}
Word element => {'20': 1.0, 'less': 1.0, 'company': 1.0, 'every': 1.0, 'expect': 1.0, 'calm': 1.0, 'its': 1.0, 'try': 1.0, 'works': 1.0, 'thing': 1.0, 'no': 1.0, 'watch': 1.0, 'listen': 1.0, 'admire': 1.0, 'definitely': 2.0, 'lay': 1.0, 'ones': 1.0, 'younger': 1.0, 'baby': 1.0, 'them': 1.0, 'along': 1.0, 'carry': 1.0, 'older': 1.0, 'development': 1.0, 'infant': 1.0, 'like': 2.0, 'which': 1.0, 'auditory': 1.0, 'children': 1.0, 'young': 1.0, 'saver': 1.0, 'are': 1.0, 'babies': 1.0, 'that': 2.0, 'pleasant': 1.0, 'and': 5.0, 'making': 1.0, 'handle': 1.0, 'one': 2.0, 'this': 3.0, 'n': 1.0, 'with': 2.0, 'little': 1.0, 'colors': 2.0, 'you': 3.0, 'to': 3.0, 'life': 1.0, 'just': 1.0, 'soother': 1.0, 'shot': 1.0, 'visual': 1.0, 'fisher': 2.0, 'easy': 1.0, 'product': 1.0, 'for': 5.0, 'lights': 1.0, 'grandparents': 1.0, 'tote': 1.0, 'design': 1.0, 'it': 8.0, 'colorful': 1.0, 'elephant': 1.0, 'comes': 1.0, 'is': 5.0, 'might': 1.0, 'go': 2.0, 'a': 9.0, 'take': 1.0, 'on': 1.0, 'mute': 1.0, 'the': 4.0, 'stimulation': 1.0, 'great': 4.0, 'would': 2.0, 'vibrant': 1.0, 'be': 2.0, 'travel': 1.0, 'alternative': 1.0, 'worth': 2.0, 'or': 2.0, 'house': 1.0, 'music': 3.0, 'but': 2.0, 'can': 3.0, 'than': 1.0, 'choose': 1.0, 'while': 1.0, 'from': 2.0, 'price': 2.0, 'fun': 1.0, 'both': 2.0, 'toy': 2.0, 'has': 1.0}
Word element => {'she': 1.0, 'while': 1.0, 'nightlight': 1.0, 'a': 1.0, 'absolutely': 1.0, 'time': 1.0, 'at': 2.0, 'my': 2.0, 'sleeping': 1.0, 'as': 1.0, 'very': 1.0, 'and': 1.0, 'uses': 1.0, 'on': 1.0, 'too': 1.0, 'daughter': 1.0, 'soothing': 1.0, 'us': 1.0, 'night': 1.0, 'i': 4.0, 'or': 1.0, 'goes': 1.0, 'always': 1.0, 'to': 1.0, 'lights': 1.0, 'bed': 1.0, 'love': 2.0, 'with': 2.0, 'this': 2.0, 'it': 4.0, 'can': 1.0, 'without': 1.0, 'like': 1.0, 'is': 2.0, 'change': 1.0, 'vacation': 1.0, 'that': 1.0, 'you': 1.0, 'peek': 1.0, 'every': 1.0, 'elephant': 1.0, 'use': 2.0, 'music': 2.0, 'the': 2.0, 'toy': 1.0, 'baby': 1.0, 'colors': 1.0}
Word element => {'off': 1.0, 'help': 1.0, 'who': 1.0, 'toy': 1.0, 'using': 1.0, 'modes': 1.0, 'about': 1.0, 'nice': 1.0, 'before': 1.0, 'you': 4.0, 'what': 1.0, 'when': 2.0, 'again': 1.0, 'am': 2.0, 'from': 2.0, 'as': 2.0, 'to': 6.0, 'by': 1.0, 'soother': 1.0, 'says': 1.0, 'this': 2.0, 'few': 1.0, 'enjoy': 1.0, 'if': 1.0, 'hopefully': 1.0, 'family': 1.0, 'my': 2.0, 'should': 1.0, 'that': 3.0, 'avoid': 1.0, 'hard': 1.0, 'work': 1.0, 'music': 4.0, 'plastic': 1.0, 'he': 2.0, 'friends': 1.0, 'can': 2.0, 'so': 1.0, 'only': 2.0, 'company': 1.0, 'accident': 1.0, 'fisher': 1.0, 'sure': 2.0, 'and': 8.0, 'quality': 1.0, 'breaking': 1.0, 'several': 1.0, 'down': 1.0, 'great': 1.0, 'made': 1.0, 'asleep': 1.0, 'traveling': 1.0, 'going': 1.0, 'take': 1.0, 'we': 2.0, 'handle': 1.0, 'is': 11.0, 'more': 1.0, 'on': 2.0, 'colors': 1.0, 'onto': 1.0, 'have': 4.0, 'a': 4.0, 'small': 1.0, 'the': 5.0, 'of': 1.0, 'room': 2.0, 'once': 1.0, 'them': 1.0, 'always': 1.0, 'counted': 1.0, 'try': 1.0, 'glow': 1.0, 'calming': 1.0, 'no': 1.0, 'nod': 1.0, 'dropped': 1.0, 'with': 1.0, 'n': 1.0, 'not': 2.0, 'lights': 2.0, 'even': 1.0, 'sleep': 1.0, 'perhaps': 1.0, 'will': 5.0, 'exception': 1.0, 'think': 1.0, 'hook': 1.0, 'almost': 1.0, 'anything': 1.0, 'problem': 1.0, 'although': 1.0, 'product': 1.0, 'zero': 1.0, 'price': 1.0, 'products': 1.0, 'child': 2.0, 'neighbors': 1.0, 'son': 1.0, 'tote': 1.0, 'three': 2.0, 'get': 1.0, 'months': 3.0, 'old': 1.0, 'was': 1.0, 'helpful': 2.0, 'in': 2.0, 'it': 7.0, 'him': 1.0, 'i': 3.0, 'wait': 1.0, 'older': 2.0, 'find': 1.0, 'comforting': 1.0, 'or': 1.0, 'falling': 1.0}
Word element => {'home': 1.0, 'addition': 1.0, 'have': 1.0, 'son': 1.0, 'daughter': 1.0, 'parents': 1.0, 'major': 1.0, 'sleep': 1.0, 'off': 1.0, 'having': 1.0, 'than': 1.0, 'my': 2.0, 'though': 1.0, 'cool': 1.0, 'very': 1.0, 'colors': 2.0, 'room': 1.0, 'different': 1.0, 'added': 1.0, 'a': 7.0, 'enough': 1.0, 'placed': 1.0, 'are': 2.0, 'there': 1.0, 'like': 1.0, 'reputation': 1.0, 'responded': 1.0, 'differently': 1.0, 'changing': 1.0, 'floor': 1.0, 'respond': 2.0, 'sure': 1.0, 'fisher': 1.0, 'but': 1.0, 'music': 2.0, 'parent': 1.0, 'exception': 1.0, 'even': 1.0, 'her': 2.0, 'as': 1.0, 'to': 9.0, 'not': 2.0, 'n': 1.0, 'him': 1.0, 'it': 3.0, 'she': 1.0, 'useless': 1.0, 'seven': 1.0, 'our': 1.0, 'item': 1.0, 'their': 1.0, 'noise': 1.0, 'popular': 1.0, 'listening': 1.0, 'month': 1.0, 'totally': 1.0, 'for': 3.0, 'little': 1.0, 'two': 1.0, 'old': 1.0, 'that': 2.0, 'young': 1.0, 'if': 1.0, 'perfect': 1.0, 'this': 1.0, 'soft': 1.0, 'challenges': 1.0, 'soothing': 1.0, 'features': 1.0, 'drift': 1.0, 'can': 1.0, 'so': 1.0, 'allows': 1.0, 'with': 1.0, 'and': 7.0, 'moved': 1.0, 'product': 1.0, 'price': 1.0, 'child': 1.0, 'loves': 1.0, 'white': 1.0, 'tote': 1.0, 'fails': 1.0, 'toys': 1.0, 'one': 2.0, 'feature': 2.0, 'or': 2.0, 'has': 2.0, 'i': 2.0, 'well': 1.0, 'solid': 1.0, 'an': 1.0, 'people': 1.0, 'peacefully': 1.0, 's': 1.0, 'glow': 1.0, 'soother': 3.0, 'calming': 1.0, 'conveniently': 1.0, 'no': 1.0, 'which': 1.0, 'made': 1.0, 'the': 11.0, 'of': 1.0, 'infants': 1.0, 'over': 1.0, 'hard': 1.0, 'plastic': 1.0, 'more': 1.0, 'granddaughter': 2.0, 'door': 1.0, 'should': 1.0, 'found': 1.0, 'withstand': 1.0, 'in': 1.0, 'm': 1.0, 'occasional': 1.0, 'welcome': 1.0, 'law': 1.0, 'drop': 1.0, 'on': 1.0, 'be': 2.0, 'is': 9.0, 'handle': 1.0, 'constructed': 1.0, 'guardian': 1.0, 'move': 1.0, 'what': 1.0, 'when': 1.0, 'infant': 1.0}
Word element => {'which': 1.0, 'get': 1.0, 'i': 2.0, 'so': 1.0, 'can': 1.0, 'minutes': 1.0, 'on': 1.0, 'changing': 1.0, 'isn': 1.0, 'my': 1.0, 'it': 2.0, 'this': 1.0, 'loves': 1.0, 'the': 1.0, 't': 1.0, 'some': 1.0, 'at': 1.0, 'to': 1.0, 'colors': 1.0, 'toy': 1.0, 'stare': 1.0, 'daughter': 1.0, 'love': 1.0, 'for': 1.0, 'her': 2.0, 'coffee': 1.0, 'favorite': 1.0, 'but': 1.0, 'will': 1.0, 'few': 1.0, 'entertain': 1.0, 'a': 1.0}
Word element => {'newborns': 1.0, 'this': 1.0, 'recommend': 1.0, 'i': 1.0, 'for': 2.0, 'bedtime': 1.0, 'children': 2.0, 'some': 2.0, 'aware': 1.0, 'be': 1.0, 'naptime': 1.0, 'dreamland': 1.0, 'little': 1.0, 'their': 1.0, 'up': 1.0, 'coax': 1.0, 'effects': 1.0, 'see': 1.0, 'find': 1.0, 'because': 1.0, 'not': 2.0, 'n': 1.0, 'with': 1.0, 'blankie': 1.0, 'tote': 1.0, 'parents': 1.0, 'best': 1.0, 'price': 1.0, 'glow': 1.0, 'of': 2.0, 'his': 2.0, 'stimulating': 1.0, 'the': 3.0, 'toddler': 1.0, 'it': 1.0, 'elephant': 2.0, 'loves': 1.0, 'that': 2.0, 'like': 1.0, 'which': 1.0, 'produces': 1.0, 'may': 1.0, 'family': 1.0, 'along': 1.0, 'compact': 1.0, 'fisher': 1.0, 'easy': 1.0, 'too': 1.0, 'and': 5.0, 'noises': 1.0, 'our': 1.0, 'to': 3.0, 'pack': 1.0, 'when': 1.0, 'months': 1.0, 'one': 1.0, 'experiment': 1.0, 'they': 1.0, 'travel': 1.0, 'just': 1.0, 'variety': 1.0, 'three': 1.0, 'adorable': 1.0, 'who': 1.0, 'cute': 1.0, 'what': 1.0, 'gaudy': 1.0, 's': 3.0, 'a': 1.0, 'sounds': 1.0, 'so': 1.0, 'in': 1.0, 'families': 1.0, 'work': 1.0, 'but': 1.0, 'music': 1.0, 'can': 1.0}
Word element => {'bed': 1.0, 'our': 1.0, 'kind': 1.0, 'be': 1.0, 'is': 1.0, 'more': 1.0, 'satisfied': 1.0, 'husband': 1.0, 'issue': 1.0, 'week': 1.0, 'anyways': 1.0, 'but': 1.0, 'an': 1.0, 'love': 1.0, 'for': 4.0, 'using': 1.0, 'crib': 1.0, 'about': 1.0, 'ordered': 1.0, 'sheets': 2.0, 'i': 4.0, 'extremely': 1.0, 'am': 1.0, 'have': 1.0, 'they': 3.0, 'others': 1.0, 'these': 2.0, 's': 2.0, 'a': 2.0, 'it': 1.0, 'month': 1.0, 'may': 1.0, 'my': 2.0, 'now': 1.0, 'on': 1.0, 'same': 1.0, '10': 1.0, 'are': 2.0, 'adorable': 1.0, 'big': 1.0, 'old': 1.0, 'warm': 1.0, 've': 1.0, 'in': 1.0, 'also': 1.0, 'held': 1.0, 'wash': 1.0, 'up': 1.0, 'the': 1.0, 'tad': 1.0, 'not': 1.0, 'than': 1.0, 'because': 1.0, 'just': 2.0, 'her': 3.0, 'soft': 1.0, 'mattress': 2.0, 'thinner': 1.0, 'been': 1.0, 'that': 1.0, 'really': 1.0, 'too': 1.0, 'and': 3.0, 'tuck': 1.0, 'them': 1.0}
Word element => {'skip': 1.0, 'say': 1.0, 'd': 1.0, 'now': 1.0, 'models': 1.0, 'year': 1.0, 'future': 1.0, 'through': 1.0, 'designers': 1.0, 'understand': 1.0, 'teds': 1.0, 'phil': 1.0, 'couple': 1.0, 'padding': 1.0, 'secure': 1.0, 're': 1.0, 'attempt': 1.0, 'getting': 1.0, 'contacted': 1.0, 'back': 1.0, 'design': 1.0, 'look': 1.0, 'overcome': 1.0, 'combination': 1.0, 'on': 2.0, 'harnessing': 1.0, 'combined': 1.0, 'me': 1.0, 'harnessed': 1.0, 'managing': 1.0, 'fighting': 1.0, 'bolts': 1.0, 'you': 2.0, 'when': 1.0, 'point': 1.0, 'their': 1.0, 'parents': 1.0, 'appease': 1.0, 'or': 1.0, 'nooks': 2.0, 'seem': 1.0, 'children': 1.0, 'food': 1.0, 'thing': 1.0, 'hard': 1.0, 'cranberry': 1.0, 'really': 6.0, 'cranes': 1.0, 'minimalist': 1.0, 'trying': 2.0, 'about': 2.0, 'like': 4.0, 'here': 2.0, 'improve': 1.0, 'non': 2.0, 'in': 4.0, 'seat': 8.0, 'baby': 1.0, 'very': 3.0, 'being': 1.0, 'wobbly': 3.0, 'later': 1.0, 'these': 1.0, 'screams': 1.0, 'would': 2.0, 'that': 7.0, 'because': 1.0, 'large': 3.0, 'by': 3.0, 'least': 1.0, 'around': 1.0, 'at': 2.0, 'house': 1.0, 'functional': 1.0, 'strong': 1.0, 'toys': 1.0, 'used': 2.0, 'setting': 1.0, 'was': 8.0, 'overrun': 1.0, 'has': 3.0, 'next': 1.0, 'them': 1.0, 'sticks': 2.0, 'today': 1.0, 'hold': 1.0, 'want': 2.0, 'didn': 3.0, 'previously': 1.0, 'goes': 1.0, 'make': 3.0, 'chair': 9.0, 'fortune': 1.0, 'became': 1.0, 'are': 5.0, 'room': 1.0, 'my': 6.0, 'post': 1.0, '5': 1.0, 'one': 3.0, 'try': 3.0, 'just': 2.0, 'and': 15.0, 'doesn': 2.0, 's': 5.0, 'cranies': 1.0, 'a': 17.0, 'imagine': 1.0, 't': 7.0, 'maybe': 1.0, 'without': 2.0, 'poppy': 2.0, 'the': 29.0, 'older': 1.0, 'weight': 1.0, 'too': 1.0, '3': 2.0, 'pair': 1.0, 'for': 10.0, 'tray': 8.0, 'comes': 1.0, 'bought': 2.0, 'third': 1.0, 'flair': 2.0, 'going': 1.0, '2': 2.0, 'leave': 2.0, 'i': 23.0, 'two': 1.0, 'little': 2.0, 'child': 8.0, 'over': 1.0, 'years': 3.0, 'loud': 1.0, 'horrible': 1.0, 'height': 1.0, 'any': 2.0, 'your': 1.0, 'potentially': 1.0, 'what': 2.0, 'had': 2.0, 'boon': 3.0, 'percentile': 1.0, 'it': 17.0, 'be': 6.0, 'so': 5.0, 'is': 3.0, 'can': 2.0, 'than': 1.0, 'bit': 1.0, 'easy': 1.0, 'have': 1.0, 'found': 1.0, 'something': 1.0, 'red': 2.0, 'straps': 4.0, 'great': 1.0, '1': 2.0, 'nice': 4.0, 'big': 1.0, 'this': 6.0, 'kids': 2.0, 'held': 1.0, '90th': 1.0, 'get': 3.0, 'trapped': 1.0, 'cleaning': 1.0, 'toddler': 2.0, 'material': 1.0, 'tricky': 1.0, 'dining': 1.0, 'seems': 1.0, 'see': 1.0, 'clean': 1.0, 'removal': 2.0, 'again': 1.0, 'support': 1.0, 'piece': 1.0, '4': 2.0, 'use': 1.0, 'new': 3.0, 'liked': 2.0, 'could': 2.0, 'will': 4.0, 'spend': 1.0, 'think': 3.0, 'durability': 1.0, 'off': 2.0, 'fatal': 2.0, 'up': 2.0, 'whole': 1.0, 'as': 3.0, 'less': 1.0, 'high': 5.0, 'length': 1.0, 'thin': 1.0, 'metal': 2.0, 'they': 3.0, 'some': 1.0, 'folding': 1.0, 'decorative': 2.0, 'chairs': 1.0, 'flaws': 1.0, 'with': 3.0, 'super': 1.0, 'don': 1.0, 'shoulder': 2.0, 'several': 1.0, 'last': 2.0, 'down': 1.0, 'of': 5.0, 'even': 1.0, 'thought': 2.0, 'possible': 1.0, 'difficult': 3.0, 've': 1.0, 'while': 1.0, 'not': 5.0, 'actually': 1.0, 'read': 1.0, 'manual': 1.0, 'sure': 1.0, 'to': 21.0, 'right': 2.0, 'pressing': 1.0, 'plastic': 1.0, 'easily': 1.0, 'looks': 2.0, 'notch': 1.0, 'bottom': 2.0, 'but': 5.0, 'there': 1.0, 'only': 1.0, 'remove': 1.0, 'how': 2.0, 'do': 1.0, 'day': 2.0, 'out': 1.0, 'wriggly': 3.0, 'also': 1.0, 'need': 1.0, 'harness': 3.0, 'way': 2.0, 'all': 2.0, 'call': 1.0, 'come': 1.0, 'from': 2.0, 'decoration': 1.0, 'did': 3.0, 'time': 1.0, 'top': 1.0, 'more': 2.0}
Word element => {'stop': 1.0, 'your': 1.0, 'whenever': 1.0, 'months': 1.0, '6': 1.0, 'great': 1.0, 'overall': 1.0, 'tea': 1.0, 'everywhere': 1.0, 'size': 1.0, 'are': 1.0, 'they': 1.0, 'these': 1.0, 'of': 1.0, 'couple': 1.0, 'i': 3.0, 'just': 1.0, 'chair': 3.0, 'high': 3.0, 'happy': 1.0, 'party': 1.0, 'my': 2.0, 'use': 1.0, 'get': 1.0, 'porch': 1.0, 'easy': 2.0, 'their': 1.0, 'recently': 1.0, 'toddler': 1.0, 'ordered': 1.0, 'it': 3.0, 'with': 1.0, 'be': 1.0, 'the': 7.0, 'and': 3.0, 'me': 1.0, 'that': 3.0, 'around': 1.0, 'is': 3.0, 'longer': 1.0, 'you': 1.0, 'traditional': 1.0, 'am': 1.0, 'so': 2.0, 'see': 2.0, 'could': 1.0, 'go': 1.0, 'we': 1.0, 'a': 3.0, 'clean': 1.0, 'from': 3.0, 'compared': 1.0, 'in': 1.0, 'dishwasher': 1.0, 'table': 1.0, 'drag': 1.0, 'like': 1.0, 'having': 1.0, 'than': 1.0, 'find': 1.0, 'does': 1.0, 'chairs': 1.0, 'used': 1.0, 'product': 2.0, 'for': 2.0, 'sitting': 1.0, 'work': 1.0, 'can': 3.0, 'as': 1.0, 'seat': 1.0, 'to': 9.0, 'grow': 1.0, 'perfect': 1.0, 'this': 2.0, 'kids': 3.0, 'years': 1.0}
Word element => {'genius': 1.0, 'them': 1.0, 'spoon': 1.0, 'we': 1.0, 'bowl': 1.0, 'loved': 1.0, 'our': 1.0, 'used': 1.0, 'the': 3.0, 'these': 1.0, 'kids': 1.0, 'with': 1.0, 'is': 2.0, 'right': 1.0, 'size': 1.0, 'tapered': 1.0, 'a': 2.0, 'convenient': 1.0, 'just': 1.0, 'sloped': 1.0, 'and': 2.0, 'shape': 1.0, 'stroke': 1.0, 'of': 1.0}
Word element => {'buying': 1.0, 'be': 1.0, 'definitely': 1.0, 'will': 1.0, 'thanks': 1.0, 'like': 1.0, 'worry': 1.0, 'things': 1.0, 'slip': 1.0, 'so': 1.0, 'food': 1.0, 'the': 3.0, 'finally': 1.0, 'floor': 1.0, 'it': 2.0, 't': 2.0, 'a': 4.0, 'doesn': 1.0, 'large': 1.0, 'feed': 1.0, 'including': 1.0, 'about': 2.0, 'baby': 1.0, 'don': 1.0, 'over': 1.0, 'bowl': 1.0, 'on': 1.0, 'i': 3.0, 'or': 1.0, 'many': 1.0, 'more': 1.0, 'fall': 1.0, 'is': 1.0, 'that': 1.0, 'there': 1.0, 'of': 1.0, 'gifts': 1.0, 'are': 2.0, 'fork': 1.0, 'fits': 1.0, 'good': 1.0, 'clean': 1.0, 'amount': 1.0, 'and': 3.0, 'easy': 1.0, 'to': 3.0, 'spoon': 1.0, 'perfect': 1.0, 'product': 1.0, 'for': 3.0, 'himself': 1.0, 'have': 1.0, 'great': 1.0, 'big': 1.0, 'size': 1.0, 'disaster': 1.0}
Word element => {'bowls': 1.0, 'other': 1.0, 'like': 1.0, 'over': 1.0, 'slide': 1.0, 'is': 1.0, 'base': 1.0, 'love': 1.0, 'one': 1.0, 'feed': 1.0, 't': 1.0, 'great': 1.0, 'the': 5.0, 'all': 2.0, 'doesn': 1.0, 'but': 1.0, 'slip': 1.0, 'no': 1.0, 'super': 1.0, 'do': 1.0, 'and': 1.0, 'get': 1.0, 'shape': 1.0, 'also': 1.0, 'makes': 1.0, 'has': 1.0, 'of': 1.0, 'it': 4.0, 'this': 1.0, 'to': 2.0, 'every': 1.0, 'table': 1.0, 'easy': 1.0, 'last': 1.0, 'bit': 1.0, 'out': 1.0, 'handed': 1.0, 'bowl': 3.0, 'unique': 1.0, 'allows': 1.0, 'you': 1.0}
Word element => {'night': 1.0, 'every': 1.0, 'bed': 1.0, 'and': 1.0, 'two': 1.0, 'takes': 1.0, 'girl': 1.0, 'now': 1.0, 'her': 3.0, 'was': 1.0, 'the': 2.0, 'these': 1.0, 'silky': 1.0, 'loves': 1.0, 'that': 1.0, 'drug': 1.0, 'born': 1.0, 'thing': 1.0, 'this': 1.0, 'hooves': 1.0, 'got': 1.0, 'daughter': 1.0, 'soothing': 1.0, 'for': 1.0, 'of': 1.0, 'lips': 1.0, 'placing': 1.0, 'to': 2.0, 'our': 1.0, 'as': 1.0, 'little': 1.0, 'very': 1.0, 'gift': 1.0, 'poor': 1.0, 'she': 2.0, 'looks': 1.0, 'second': 1.0, 'pretty': 1.0, 'ragged': 1.0, 'but': 1.0, 'we': 3.0, 'a': 2.0, 's': 1.0, 'because': 1.0, 'just': 1.0, 'he': 1.0, 'with': 2.0, 'first': 1.0, 'everywhere': 2.0, 'friends': 1.0, 'so': 1.0, 'one': 3.0, 'bought': 1.0, 'is': 1.0, 'incase': 1.0, 'should': 1.0, 'when': 1.0, 'lose': 1.0}
Word element => {'baby': 1.0, 'for': 1.0, 'them': 1.0, 'than': 1.0, 'use': 1.0, 'to': 1.0, 'be': 1.0, 'we': 1.0, 'one': 1.0, 'i': 1.0, 'love': 1.0, 'more': 1.0, 'll': 1.0, 'are': 1.0, 'gpants': 1.0, 'able': 1.0, 'particularly': 1.0, 'cute': 1.0, 'and': 2.0, 'last': 1.0, 'they': 1.0, 'these': 1.0, 'forever': 1.0}
Word element => {'on': 1.0, 'cants': 1.0, 'undies': 1.0, 'around': 1.0, 'see': 1.0, 'wonder': 1.0, 'let': 1.0, 'to': 1.0, 'adorable': 1.0, 'her': 3.0, 'pants': 1.0, 'in': 1.0, 'for': 1.0, 'where': 1.0, 'these': 1.0, 'wait': 1.0, 'great': 1.0, 'can': 1.0, 'summer': 1.0, 'i': 1.0, 'them': 1.0, 'g': 1.0, 'days': 1.0}
Word element => {'too': 1.0, 'gdiaper': 1.0, 'her': 1.0, 'at': 1.0, 'daughter': 1.0, 'does': 1.0, 'i': 3.0, 'she': 1.0, 'hope': 1.0, 'baby': 1.0, 'will': 1.0, 'like': 1.0, 'and': 2.0, 'am': 1.0, 'the': 1.0, 'shower': 1.0, 'my': 1.0, 'grandma': 1.0, 'a': 1.0, 'giving': 1.0, 'this': 1.0, 'be': 1.0, 'to': 1.0}
IOPub data rate exceeded. The notebook server will temporarily stop sending output to the client in order to avoid crashing it. To change this limit, set the config variable `--NotebookApp.iopub_data_rate_limit`. Current values: NotebookApp.iopub_data_rate_limit=1000000.0 (bytes/sec) NotebookApp.rate_limit_window=3.0 (secs)
word_count_elem_arr = full_prod_data['word_count']
def count_word_in_arr(word_to_search,sframe_to_search):
for arr_elem in sframe_to_search['word_count']:
if word_to_search in arr_elem:
print("found the word {} with count {}".format(word_to_search, arr_elem['awesome']))
print('')
#else:
# print('word count is 0')
count_word_in_arr('awesome', full_prod_data)
found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 3.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 4.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 3.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 3.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 4.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 3.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 4.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 4.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 3.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 3.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 3.0 found the word awesome with count 4.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 4.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 3.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 3.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 3.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 3.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 3.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 3.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 4.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 3.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 3.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 3.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 4.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 3.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 3.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 3.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 3.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 3.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 2.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0 found the word awesome with count 1.0
def count_word_in_arr(word_to_search,arr_elem):
if word_to_search in arr_elem:
print("found the word {} with count {}".format(word_to_search, arr_elem[word_to_search]))
return arr_elem[word_to_search]
else:
return 0
full_prod_data['awesome'] = full_prod_data['word_count'].apply(lambda x: count_word_in_arr('awesome',x) )
found the word awesome with count 1.0
full_prod_data['awesome']
dtype: float Rows: 183531 [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, ... ]
#List of rows which have the word 'awesome' present atleast once.
full_prod_data[full_prod_data['awesome'] > 0.0 ]
| name | review | rating | word_count | awesome |
|---|---|---|---|---|
| IKEA KLADD PRICKAR Bib, blue, red ... |
I like those bibs. they are very useful. easy to ... |
4.0 | {'them': 1.0, 'also': 1.0, 'awesome': 1.0, ... |
1.0 |
| Pedal Farm Tractor | I bought this for my son when he was 3 years old. ... |
5.0 | {'hills': 1.0, 'be': 1.0, 'so': 1.0, 'brake': 1.0, ... |
1.0 |
| Baby Trend Diaper Champ | I wasn't interested in getting the Diaper Genie ... |
5.0 | {'pail': 1.0, 'convenient': 1.0, 'w ... |
1.0 |
| Baby Trend Diaper Champ | I have been very happy with this pail. The ... |
4.0 | {'probably': 1.0, 'will': 1.0, 'getting': 1.0, ... |
1.0 |
| Baby Trend Diaper Champ | Ok, so the idea of the Diaper Champ is aweso ... |
1.0 | {'else': 1.0, 'something': 1.0, 'wa ... |
1.0 |
| Safety 1st Tot-Lok Starter Set ... |
I saw a few negative reviews on these locks ... |
5.0 | {'anything': 1.0, 'won': 1.0, 'system': 1.0, ... |
1.0 |
| North States Industries Superyard XT Gate ... |
I have never written a review before, but I ... |
5.0 | {'bit': 1.0, 'pups': 1.0, 'where': 1.0, 'see': ... |
1.0 |
| Thomas & Friends - 3 Piece Dinnerware Set- ... |
This dining ware set is awesome for the Thomas ... |
5.0 | {'for': 1.0, 'that': 1.0, 'awesome': 1.0, 'in': ... |
1.0 |
| Munchkin Mozart Magic Cube ... |
The Mozart magic cube is an AWESOME toy for my ... |
5.0 | {'toddlers': 1.0, 'babies': 1.0, 'class ... |
1.0 |
| Munchkin Mozart Magic Cube ... |
Our daughter got this toy for her first birthday. ... |
4.0 | {'overall': 1.0, 'resemblance': 1.0, ... |
1.0 |
#List of rows which have the word 'awesome' present more than once.
full_prod_data[full_prod_data['awesome'] > 1.0 ]
| name | review | rating | word_count | awesome |
|---|---|---|---|---|
| Evenflo Position and Lock Tall Wood Mount Gate ... |
I ordered this gate from Target Direct, and not ... |
5.0 | {'thanks': 1.0, 'price': 1.0, 'awesome': 2.0, ... |
2.0 |
| Leachco Snoogle Total Body Pillow ... |
These pillows are AWESOME. I've had one ... |
5.0 | {'well': 1.0, 'pains': 1.0, 'partum': 1.0, ... |
2.0 |
| SnugRide Infant Car Seat Adjustable Base with ... |
We bought this extra base for my husbands car (we ... |
5.0 | {'spouse': 1.0, 'baby': 1.0, 'when': 1.0, 'an': ... |
2.0 |
| Fisher-Price Booster Seat, Blue/Green/Gray ... |
I received this as a gift before my daughter was ... |
5.0 | {'most': 1.0, 'buy': 1.0, 'straps': 1.0, ... |
2.0 |
| Skip Hop Duo Diaper Bag BLACK ... |
I tried several diaper bags when my first was ... |
5.0 | {'complained': 1.0, 'husband': 1.0, 'think': ... |
2.0 |
| CitiTour Tandem Stroller - Tattersall ... |
This stroller is awesome! Where do I start?1)The ... |
5.0 | {'price': 1.0, 'full': 1.0, 'had': 1.0, '149': ... |
2.0 |
| dexbaby Womb Sounds Bear Audio Pacifier, Brown ... |
Baby Haven is not the 5 star seller they should ... |
4.0 | {'stuff': 1.0, 'child': 1.0, 'sound': 1.0, ... |
2.0 |
| Safety 1st Clear View Stove Knob Covers 5-Pack ... |
This one is by far my favorite! I have a ... |
5.0 | {'case': 1.0, 'set': 1.0, 'another': 1.0, 'kids': ... |
2.0 |
| Medela Harmony Manual Breast Pump ... |
I have two Medela pumps, this manual one and a ... |
5.0 | {'thankfully': 1.0, 'that': 1.0, 'supply': ... |
2.0 |
| Prince Lionheart Jumbo Toy Hammock ... |
This is awesome! I would have gladly paid 2 or 3 ... |
5.0 | {'high': 1.0, 'not': 1.0, 'dolls': 1.0, 'neatly': ... |
2.0 |
#List of rows which have the word 'awesome' is not present.
full_prod_data[full_prod_data['awesome'] == 0.0 ]
| name | review | rating | word_count | awesome |
|---|---|---|---|---|
| Planetwise Flannel Wipes | These flannel wipes are OK, but in my opinion ... |
3.0 | {'handles': 1.0, 'stripping': 1.0, ... |
0.0 |
| Planetwise Wipe Pouch | it came early and was not disappointed. i love ... |
5.0 | {'recommend': 1.0, 'disappointed': 1.0, ... |
0.0 |
| Annas Dream Full Quilt with 2 Shams ... |
Very soft and comfortable and warmer than it ... |
5.0 | {'quilt': 1.0, 'the': 1.0, 'than': 1.0, 'fu ... |
0.0 |
| Stop Pacifier Sucking without tears with ... |
This is a product well worth the purchase. I ... |
5.0 | {'tool': 1.0, 'clever': 1.0, 'binky': 2.0, ... |
0.0 |
| Stop Pacifier Sucking without tears with ... |
All of my kids have cried non-stop when I tried to ... |
5.0 | {'rock': 1.0, 'many': 1.0, 'headaches': 1.0, ... |
0.0 |
| Stop Pacifier Sucking without tears with ... |
When the Binky Fairy came to our house, we didn't ... |
5.0 | {'thumb': 1.0, 'or': 1.0, 'break': 1.0, 'trying': ... |
0.0 |
| A Tale of Baby's Days with Peter Rabbit ... |
Lovely book, it's bound tightly so you may no ... |
4.0 | {'for': 1.0, 'barnes': 1.0, 'at': 1.0, 'is': ... |
0.0 |
| Baby Tracker® - Daily Childcare Journal, ... |
Perfect for new parents. We were able to keep ... |
5.0 | {'right': 1.0, 'because': 1.0, 'questions': 1.0, ... |
0.0 |
| Baby Tracker® - Daily Childcare Journal, ... |
A friend of mine pinned this product on Pinte ... |
5.0 | {'like': 1.0, 'and': 1.0, 'changes': 1.0, 'the': ... |
0.0 |
| Baby Tracker® - Daily Childcare Journal, ... |
This has been an easy way for my nanny to record ... |
4.0 | {'in': 1.0, 'pages': 1.0, 'out': 1.0, 'run': 1.0, ... |
0.0 |
selected_words
['awesome', 'great', 'fantastic', 'amazing', 'love', 'horrible', 'bad', 'terrible', 'awful', 'wow', 'hate']
type(selected_words)
list
# Remove the word awesome as we have already processed above and added into the SFrame.
selected_words.remove('awesome')
# For each selected word, find the new column which find the occurence of each of that word..
for word_elem in selected_words:
print('Making new column ->'+word_elem)
full_prod_data[word_elem] = full_prod_data['word_count'].apply(lambda x: count_word_in_arr(word_elem,x))
Making new column ->great found the word great with count 1.0 found the word great with count 1.0 found the word great with count 2.0 found the word great with count 1.0 found the word great with count 1.0 found the word great with count 1.0 found the word great with count 2.0 found the word great with count 1.0 found the word great with count 1.0 found the word great with count 3.0 found the word great with count 1.0 found the word great with count 1.0 found the word great with count 1.0 found the word great with count 1.0 found the word great with count 1.0 found the word great with count 1.0 found the word great with count 1.0 found the word great with count 2.0 found the word great with count 2.0 found the word great with count 1.0 found the word great with count 1.0 Making new column ->fantastic found the word fantastic with count 1.0 found the word fantastic with count 1.0 found the word fantastic with count 1.0 Making new column ->amazing found the word amazing with count 1.0 Making new column ->love found the word love with count 1.0 found the word love with count 2.0 found the word love with count 1.0 found the word love with count 2.0 found the word love with count 1.0 found the word love with count 1.0 found the word love with count 1.0 found the word love with count 1.0 found the word love with count 1.0 found the word love with count 1.0 found the word love with count 1.0 found the word love with count 2.0 found the word love with count 1.0 found the word love with count 1.0 found the word love with count 1.0 found the word love with count 1.0 found the word love with count 1.0 found the word love with count 1.0 found the word love with count 1.0 Making new column ->horrible Making new column ->bad found the word bad with count 1.0 Making new column ->terrible Making new column ->awful Making new column ->wow Making new column ->hate
full_prod_data
| name | review | rating | word_count | awesome | great |
|---|---|---|---|---|---|
| Planetwise Flannel Wipes | These flannel wipes are OK, but in my opinion ... |
3.0 | {'handles': 1.0, 'stripping': 1.0, ... |
0.0 | 0.0 |
| Planetwise Wipe Pouch | it came early and was not disappointed. i love ... |
5.0 | {'recommend': 1.0, 'disappointed': 1.0, ... |
0.0 | 0.0 |
| Annas Dream Full Quilt with 2 Shams ... |
Very soft and comfortable and warmer than it ... |
5.0 | {'quilt': 1.0, 'the': 1.0, 'than': 1.0, 'fu ... |
0.0 | 0.0 |
| Stop Pacifier Sucking without tears with ... |
This is a product well worth the purchase. I ... |
5.0 | {'tool': 1.0, 'clever': 1.0, 'binky': 2.0, ... |
0.0 | 0.0 |
| Stop Pacifier Sucking without tears with ... |
All of my kids have cried non-stop when I tried to ... |
5.0 | {'rock': 1.0, 'many': 1.0, 'headaches': 1.0, ... |
0.0 | 1.0 |
| Stop Pacifier Sucking without tears with ... |
When the Binky Fairy came to our house, we didn't ... |
5.0 | {'thumb': 1.0, 'or': 1.0, 'break': 1.0, 'trying': ... |
0.0 | 1.0 |
| A Tale of Baby's Days with Peter Rabbit ... |
Lovely book, it's bound tightly so you may no ... |
4.0 | {'for': 1.0, 'barnes': 1.0, 'at': 1.0, 'is': ... |
0.0 | 0.0 |
| Baby Tracker® - Daily Childcare Journal, ... |
Perfect for new parents. We were able to keep ... |
5.0 | {'right': 1.0, 'because': 1.0, 'questions': 1.0, ... |
0.0 | 0.0 |
| Baby Tracker® - Daily Childcare Journal, ... |
A friend of mine pinned this product on Pinte ... |
5.0 | {'like': 1.0, 'and': 1.0, 'changes': 1.0, 'the': ... |
0.0 | 0.0 |
| Baby Tracker® - Daily Childcare Journal, ... |
This has been an easy way for my nanny to record ... |
4.0 | {'in': 1.0, 'pages': 1.0, 'out': 1.0, 'run': 1.0, ... |
0.0 | 0.0 |
| fantastic | amazing | love | horrible | bad | terrible | awful | wow | hate |
|---|---|---|---|---|---|---|---|---|
| 0.0 | 0.0 | 0.0 | 0 | 0.0 | 0 | 0 | 0 | 0 |
| 0.0 | 0.0 | 1.0 | 0 | 0.0 | 0 | 0 | 0 | 0 |
| 0.0 | 0.0 | 0.0 | 0 | 0.0 | 0 | 0 | 0 | 0 |
| 0.0 | 0.0 | 2.0 | 0 | 0.0 | 0 | 0 | 0 | 0 |
| 0.0 | 0.0 | 1.0 | 0 | 0.0 | 0 | 0 | 0 | 0 |
| 0.0 | 0.0 | 0.0 | 0 | 0.0 | 0 | 0 | 0 | 0 |
| 0.0 | 0.0 | 0.0 | 0 | 0.0 | 0 | 0 | 0 | 0 |
| 0.0 | 0.0 | 0.0 | 0 | 0.0 | 0 | 0 | 0 | 0 |
| 1.0 | 0.0 | 0.0 | 0 | 0.0 | 0 | 0 | 0 | 0 |
| 0.0 | 0.0 | 0.0 | 0 | 0.0 | 0 | 0 | 0 | 0 |
for i in selected_words:
print("The total occurences of the word {} is {}".format(i,full_prod_data[i].sum()))
The total occurences of the word great is 59536.0 The total occurences of the word fantastic is 1765.0 The total occurences of the word amazing is 2726.0 The total occurences of the word love is 43867.0 The total occurences of the word horrible is 1245 The total occurences of the word bad is 4950.0 The total occurences of the word terrible is 1282 The total occurences of the word awful is 753 The total occurences of the word wow is 461 The total occurences of the word hate is 1285